Step 0: Latent Dirichlet Allocation

LDA is used to classify text in a document to a particular topic. It builds a topic per document model and words per topic model, modeled as Dirichlet distributions.

  • Each document is modeled as a multinomial distribution of topics and each topic is modeled as a multinomial distribution of words.
  • LDA assumes that the every chunk of text we feed into it will contain words that are somehow related. Therefore choosing the right corpus of data is crucial.
  • It also assumes documents are produced from a mixture of topics. Those topics then generate words based on their probability distribution.

Step 1: Load the dataset

The dataset we'll use is a list of over one million news headlines published over a period of 15 years. We'll start by loading it from the abcnews-date-text.csv file.

In [1]:
import boto3
import pandas as pd
from sagemaker import get_execution_role

role = get_execution_role()
bucket='demo-tensorflow'
data_key = 'abcnews-date-text.csv'
data_location = 's3://{}/{}'.format(bucket, data_key)
No handlers could be found for logger "sagemaker"
In [2]:
'''
Load the dataset from the CSV and save it to 'data_text'
'''
import pandas as pd
# data = pd.read_csv('abcnews-date-text.csv', error_bad_lines=False);
data = pd.read_csv(data_location);
# We only need the Headlines text column from the data
data_text = data[:300000][['headline_text']];
data_text['index'] = data_text.index

documents = data_text
In [3]:
data['headline_text'][9]
Out[3]:
'australia is locked into war timetable opp'

Let's glance at the dataset:

In [4]:
data['headline_text'][4]
Out[4]:
'air nz strike to affect australian travellers'
In [5]:
'''
Get the total number of documents
'''
print(len(documents))
300000
In [6]:
documents[:5]
Out[6]:
headline_text index
0 aba decides against community broadcasting lic... 0
1 act fire witnesses must be aware of defamation 1
2 a g calls for infrastructure protection summit 2
3 air nz staff in aust strike for pay rise 3
4 air nz strike to affect australian travellers 4

Step 2: Data Preprocessing

We will perform the following steps:

  • Tokenization: Split the text into sentences and the sentences into words. Lowercase the words and remove punctuation.
  • Words that have fewer than 3 characters are removed.
  • All stopwords are removed.
  • Words are lemmatized - words in third person are changed to first person and verbs in past and future tenses are changed into present.
  • Words are stemmed - words are reduced to their root form.
In [7]:
!pip install gensim
DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7. More details about Python 2 support in pip, can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support
Collecting gensim
  Downloading https://files.pythonhosted.org/packages/c9/51/ad37b316482ac55357471ab5ae22bb4ca0cd018ee400cdfda5afebf6994f/gensim-3.8.3-cp27-cp27mu-manylinux1_x86_64.whl (24.2MB)
     |████████████████████████████████| 24.2MB 14.2MB/s eta 0:00:01
Requirement already satisfied: six>=1.5.0 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from gensim) (1.12.0)
Requirement already satisfied: scipy<=1.2.3 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from gensim) (1.2.1)
Collecting smart-open<1.11,>=1.8.1 (from gensim)
  Downloading https://files.pythonhosted.org/packages/62/56/f7ce76c281a8a0dd8a8f5fcfeadcde1b817f80bc85ad903f1264dbdf38ad/smart_open-1.10.1.tar.gz (92kB)
     |████████████████████████████████| 102kB 37.6MB/s ta 0:00:01
Collecting numpy<=1.16.1 (from gensim)
  Downloading https://files.pythonhosted.org/packages/e0/b5/63b79fe426433fa1cd110eb04a94ec0c6967e56e5f57c98caf455a5fb6e2/numpy-1.16.1-cp27-cp27mu-manylinux1_x86_64.whl (17.0MB)
     |████████████████████████████████| 17.0MB 55.6MB/s eta 0:00:01
Requirement already satisfied: requests in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from smart-open<1.11,>=1.8.1->gensim) (2.22.0)
Requirement already satisfied: boto3 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from smart-open<1.11,>=1.8.1->gensim) (1.15.16)
Collecting bz2file (from smart-open<1.11,>=1.8.1->gensim)
  Downloading https://files.pythonhosted.org/packages/61/39/122222b5e85cd41c391b68a99ee296584b2a2d1d233e7ee32b4532384f2d/bz2file-0.98.tar.gz
Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from requests->smart-open<1.11,>=1.8.1->gensim) (3.0.4)
Requirement already satisfied: idna<2.9,>=2.5 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from requests->smart-open<1.11,>=1.8.1->gensim) (2.8)
Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from requests->smart-open<1.11,>=1.8.1->gensim) (1.25.10)
Requirement already satisfied: certifi>=2017.4.17 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from requests->smart-open<1.11,>=1.8.1->gensim) (2019.11.28)
Requirement already satisfied: jmespath<1.0.0,>=0.7.1 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from boto3->smart-open<1.11,>=1.8.1->gensim) (0.10.0)
Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from boto3->smart-open<1.11,>=1.8.1->gensim) (0.3.0)
Requirement already satisfied: botocore<1.19.0,>=1.18.16 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from boto3->smart-open<1.11,>=1.8.1->gensim) (1.18.16)
Requirement already satisfied: futures<4.0.0,>=2.2.0; python_version == "2.7" in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from s3transfer<0.4.0,>=0.3.0->boto3->smart-open<1.11,>=1.8.1->gensim) (3.3.0)
Requirement already satisfied: python-dateutil<3.0.0,>=2.1 in /home/ec2-user/anaconda3/envs/amazonei_mxnet_p27/lib/python2.7/site-packages (from botocore<1.19.0,>=1.18.16->boto3->smart-open<1.11,>=1.8.1->gensim) (2.8.0)
Building wheels for collected packages: smart-open, bz2file
  Building wheel for smart-open (setup.py) ... done
  Created wheel for smart-open: filename=smart_open-1.10.1-cp27-none-any.whl size=76880 sha256=6357e7bb5dbae44d16f52d09c8634be84fb2f28d29448dc501045ad75796961d
  Stored in directory: /home/ec2-user/.cache/pip/wheels/b3/fb/d8/81d8a571570e2ae612a1771d5ce8dc51972f1ce60d0e1ddc4b
  Building wheel for bz2file (setup.py) ... done
  Created wheel for bz2file: filename=bz2file-0.98-cp27-none-any.whl size=6884 sha256=1b08f5d6b3d2f267b3eba433e9f251b944c3731e9bdc356efd227ec7481a0357
  Stored in directory: /home/ec2-user/.cache/pip/wheels/81/75/d6/e1317bf09bf1af5a30befc2a007869fa6e1f516b8f7c591cb9
Successfully built smart-open bz2file
Installing collected packages: bz2file, smart-open, numpy, gensim
  Found existing installation: numpy 1.16.5
    Uninstalling numpy-1.16.5:
      Successfully uninstalled numpy-1.16.5
Successfully installed bz2file-0.98 gensim-3.8.3 numpy-1.16.1 smart-open-1.10.1
WARNING: You are using pip version 19.2.3, however version 20.2.4 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
In [8]:
'''
Loading Gensim and nltk libraries
'''
# pip install gensim
import gensim
from gensim.utils import simple_preprocess
from gensim.parsing.preprocessing import STOPWORDS
from nltk.stem import WordNetLemmatizer, SnowballStemmer
from nltk.stem.porter import *
import numpy as np
np.random.seed(400)
In [9]:
import nltk
nltk.download('wordnet')
[nltk_data] Downloading package wordnet to /home/ec2-user/nltk_data...
[nltk_data]   Unzipping corpora/wordnet.zip.
Out[9]:
True

Lemmatizer Example

Before preprocessing our dataset, let's first look at an lemmatizing example. What would be the output if we lemmatized the word 'went':

In [10]:
print(WordNetLemmatizer().lemmatize('went', pos = 'v')) # past tense to present tense
go

Stemmer Example

Let's also look at a stemming example. Let's throw a number of words at the stemmer and see how it deals with each one:

In [11]:
stemmer = SnowballStemmer("english")
original_words = ['caresses', 'flies', 'dies', 'mules', 'denied','died', 'agreed', 'owned', 
           'humbled', 'sized','meeting', 'stating', 'siezing', 'itemization','sensational', 
           'traditional', 'reference', 'colonizer','plotted']
singles = [stemmer.stem(plural) for plural in original_words]

pd.DataFrame(data={'original word':original_words, 'stemmed':singles })
Out[11]:
original word stemmed
0 caresses caress
1 flies fli
2 dies die
3 mules mule
4 denied deni
5 died die
6 agreed agre
7 owned own
8 humbled humbl
9 sized size
10 meeting meet
11 stating state
12 siezing siez
13 itemization item
14 sensational sensat
15 traditional tradit
16 reference refer
17 colonizer colon
18 plotted plot
In [12]:
# Lemmatize verbs by specifying pos
lemmed = [WordNetLemmatizer().lemmatize(w, pos='v') for w in original_words] 
pd.DataFrame({'original word':original_words, 'lem':lemmed })
# print(lemmed)
Out[12]:
lem original word
0 caress caresses
1 fly flies
2 die dies
3 mules mules
4 deny denied
5 die died
6 agree agreed
7 own owned
8 humble humbled
9 size sized
10 meet meeting
11 state stating
12 siezing siezing
13 itemization itemization
14 sensational sensational
15 traditional traditional
16 reference reference
17 colonizer colonizer
18 plot plotted
In [20]:
'''
Write a function to perform the pre processing steps on the entire dataset
'''
def lemmatize_stemming(text):
    
    return stemmer.stem(WordNetLemmatizer().lemmatize(text, pos='v'))
#     return WordNetLemmatizer().lemmatize(stemmer.stem(text))

# Tokenize and lemmatize
def preprocess(text):
    
    
    result=[]
    for token in gensim.utils.simple_preprocess(text) :
        
        
        if token not in gensim.parsing.preprocessing.STOPWORDS and len(token) > 3:
            
            result.append(lemmatize_stemming(token))       
    print(result)        
    return result
In [18]:
print(len(documents))
300000
In [21]:
'''
Preview a document after preprocessing
'''
document_num = 0
doc_sample = documents[documents['index'] == document_num].values[0][0]
print("document 0 is : " , documents['headline_text'][0])
print(doc_sample[4])
print("Original document: ")
words = []
for word in doc_sample.split(' '):
    words.append(word)
print(words)
print("\n\nTokenized and lemmatized document: ")
print(preprocess(doc_sample))
('document 0 is : ', 'aba decides against community broadcasting licence')
d
Original document: 
['aba', 'decides', 'against', 'community', 'broadcasting', 'licence']


Tokenized and lemmatized document: 
[u'decid', u'communiti', u'broadcast', u'licenc']
[u'decid', u'communiti', u'broadcast', u'licenc']
In [22]:
documents
Out[22]:
headline_text index
0 aba decides against community broadcasting lic... 0
1 act fire witnesses must be aware of defamation 1
2 a g calls for infrastructure protection summit 2
3 air nz staff in aust strike for pay rise 3
4 air nz strike to affect australian travellers 4
5 ambitious olsson wins triple jump 5
6 antic delighted with record breaking barca 6
7 aussie qualifier stosur wastes four memphis match 7
8 aust addresses un security council over iraq 8
9 australia is locked into war timetable opp 9
10 australia to contribute 10 million in aid to iraq 10
11 barca take record as robson celebrates birthda... 11
12 bathhouse plans move ahead 12
13 big hopes for launceston cycling championship 13
14 big plan to boost paroo water supplies 14
15 blizzard buries united states in bills 15
16 brigadier dismisses reports troops harassed in 16
17 british combat troops arriving daily in kuwait 17
18 bryant leads lakers to double overtime win 18
19 bushfire victims urged to see centrelink 19
20 businesses should prepare for terrorist attacks 20
21 calleri avenges final defeat to eliminate massu 21
22 call for ethanol blend fuel to go ahead 22
23 carews freak goal leaves roma in ruins 23
24 cemeteries miss out on funds 24
25 code of conduct toughens organ donation regula... 25
26 commonwealth bank cuts fixed home loan rates 26
27 community urged to help homeless youth 27
28 council chief executive fails to secure position 28
29 councillor to contest wollongong as independent 29
... ... ...
299970 bore water over use could lead to prosecutions 299970
299971 bottleshop owner backs call for long neck beer... 299971
299972 bracks defends former minister over mokbel deal 299972
299973 bracks rejects one size fits all curriculum ch... 299973
299974 broken hill saves summer water 299974
299975 broughton hall audit reveals serious breaches 299975
299976 broughton hall fails key standards 299976
299977 broughton hall safe for residents govt says 299977
299978 burn off at conservation park aims to prevent 299978
299979 burns suspended for two games 299979
299980 business chamber backs industry water conserva... 299980
299981 cahill targets comeback at asian cup 299981
299982 call for new alice springs land release 299982
299983 call to recognise early settlement indigenous 299983
299984 canadian minister under fire amid afghan torture 299984
299985 cattle truck crashes near northam 299985
299986 charged afl players accept sanctions 299986
299987 charter boat operators urged to pay levy for j... 299987
299988 children reflect on anzac sacrifice at war mem... 299988
299989 chinese authorities detain environmental activist 299989
299990 chipman supports alp candidate 299990
299991 climate debate heats up 299991
299992 closer pm1 news 299992
299993 cohen wants public to have water management power 299993
299994 community technology centre at lightning ridge to 299994
299995 commuters evacuated from circular quay train 299995
299996 companies invest billions in png gas industry 299996
299997 company looks to expand basalt quarry 299997
299998 cooloola mayor flags support for super council 299998
299999 cosgrove relieved vcs staying in aust 299999

300000 rows × 2 columns

Let's now preprocess all the news headlines we have. To do that, let's use the map function from pandas to apply preprocess() to the headline_text column

Note: This may take a few minutes (it take 6 minutes on my laptop)

In [23]:
# TODO: preprocess all the headlines, saving the list of results as 'processed_docs'
processed_docs =  documents['headline_text'].map(preprocess)
[u'decid', u'communiti', u'broadcast', u'licenc']
[u'wit', u'awar', u'defam']
[u'call', u'infrastructur', u'protect', u'summit']
[u'staff', u'aust', u'strike', u'rise']
[u'strike', u'affect', u'australian', u'travel']
[u'ambiti', u'olsson', u'win', u'tripl', u'jump']
[u'antic', u'delight', u'record', u'break', u'barca']
[u'aussi', u'qualifi', u'stosur', u'wast', u'memphi', u'match']
[u'aust', u'address', u'secur', u'council', u'iraq']
[u'australia', u'lock', u'timet']
[u'australia', u'contribut', u'million', u'iraq']
[u'barca', u'record', u'robson', u'celebr', u'birthday']
[u'bathhous', u'plan', u'ahead']
[u'hop', u'launceston', u'cycl', u'championship']
[u'plan', u'boost', u'paroo', u'water', u'suppli']
[u'blizzard', u'buri', u'unit', u'state', u'bill']
[u'brigadi', u'dismiss', u'report', u'troop', u'harass']
[u'british', u'combat', u'troop', u'arriv', u'daili', u'kuwait']
[u'bryant', u'lead', u'laker', u'doubl', u'overtim']
[u'bushfir', u'victim', u'urg', u'centrelink']
[u'busi', u'prepar', u'terrorist', u'attack']
[u'calleri', u'aveng', u'final', u'defeat', u'elimin', u'massu']
[u'ethanol', u'blend', u'fuel', u'ahead']
[u'carew', u'freak', u'goal', u'leav', u'roma', u'ruin']
[u'cemeteri', u'miss', u'fund']
[u'code', u'conduct', u'toughen', u'organ', u'donat', u'regul']
[u'commonwealth', u'bank', u'cut', u'fix', u'home', u'loan', u'rat']
[u'communiti', u'urg', u'help', u'homeless', u'youth']
[u'council', u'chief', u'execut', u'fail', u'secur', u'posit']
[u'councillor', u'contest', u'wollongong', u'independ']
[u'council', u'move', u'protect', u'heritag', u'garden']
[u'council', u'welcom', u'ambul', u'levi', u'decis']
[u'council', u'welcom', u'insur', u'breakthrough']
[u'crean', u'tell', u'leadership', u'critic', u'shut']
[u'dargo', u'threat', u'expect', u'rise']
[u'death', u'toll', u'continu', u'climb', u'south', u'korean', u'subway']
[u'dem', u'hold', u'plebiscit', u'iraqi', u'conflict']
[u'dent', u'down', u'philippoussi', u'break', u'thriller']
[u'villier', u'learn', u'fate', u'march']
[u'digit', u'commonplac', u'summit']
[u'direct', u'anger', u'govt', u'soldier', u'crean', u'urg']
[u'disput', u'smithton', u'veget', u'process', u'plant']
[u'maul', u'month', u'toddler']
[u'die', u'korean', u'subway', u'passeng', u'phone', u'help']
[u'england', u'chang', u'wale', u'match']
[u'tri', u'recov', u'chemic', u'clean', u'cost']
[u'express', u'seek', u'build', u'livestock']
[u'introduc', u'nation', u'insur']
[u'firefight', u'contain', u'acid', u'spill']
[u'injur', u'head', u'highway', u'crash']
[u'freedom', u'record', u'profit', u'success']
[u'fund', u'alloc', u'domest', u'violenc', u'victim']
[u'fund', u'alloc', u'youth', u'risk']
[u'fund', u'announc', u'bridg', u'work']
[u'fund', u'cadel', u'upgrad']
[u'fund', u'help', u'restor', u'cossack']
[u'german', u'court', u'verdict', u'sept', u'accus']
[u'gilchrist', u'back', u'rest', u'polici']
[u'girl', u'injur', u'head', u'highway', u'crash']
[u'gold', u'coast', u'hear', u'bilbi', u'project']
[u'golf', u'club', u'feel', u'smoke', u'impact']
[u'govt', u'blame', u'ethanol', u'unpopular']
[u'green', u'offer', u'polic', u'station', u'altern']
[u'griffith', u'project', u'knock']
[u'group', u'meet', u'north', u'west', u'rock']
[u'hacker', u'gain', u'access', u'million', u'credit', u'card']
[u'hanson', u'grossli', u'naiv', u'issu', u'costa']
[u'hanson', u'come']
[u'harrington', u'rare', u'break']
[u'health', u'minist', u'back', u'organ', u'tissu', u'storag']
[u'heavi', u'metal', u'deposit', u'survey', u'near']
[u'injur', u'rio', u'pull', u'bueno', u'air', u'open']
[u'inquest', u'find', u'man', u'death', u'accident']
[u'investig', u'underway', u'death', u'toll', u'korean']
[u'investig', u'underway', u'elster', u'creek', u'spill']
[u'iraq', u'neighbour', u'plead', u'continu', u'inspect']
[u'iraq', u'rebuild', u'white', u'hous']
[u'irish', u'arrest', u'omagh', u'bomb']
[u'irrig', u'vote', u'river', u'manag']
[u'isra', u'forc', u'push', u'gaza', u'strip']
[u'juri', u'consid', u'verdict', u'murder', u'case']
[u'juvenil', u'offend', u'unlik', u'reoffend']
[u'kelli', u'disgust', u'alleg', u'ethanol', u'scare']
[u'kelli', u'surpris', u'ethanol', u'confid']
[u'korean', u'subway', u'miss']
[u'minut', u'hand', u'alinghi', u'lead']
[u'demand', u'forc', u'servic', u'cut']
[u'arrest', u'central', u'hijack', u'attempt']
[u'charg', u'cooma', u'murder']
[u'fin', u'aborigin', u'tent', u'embassi', u'raid']
[u'jail', u'keno', u'fraud']
[u'knife', u'hijack', u'light', u'plane']
[u'martin', u'lobbi', u'lose', u'seat']
[u'massiv', u'drug', u'crop', u'discov', u'western']
[u'mayor', u'warn', u'landfil', u'protest']
[u'meet', u'consid', u'tick', u'clearanc', u'cost']
[u'meet', u'focus', u'break', u'hill', u'water', u'woe']
[u'moder', u'lift', u'wag', u'growth']
[u'young', u'drink', u'alcohol']
[u'water', u'restrict', u'predict', u'northern']
[u'women', u'urg', u'councillor']
[u'high', u'educ', u'live']
[u'rais', u'hospit', u'concern', u'parliament']
[u'reject', u'ambul', u'levi', u'claim']
[u'mugab', u'touch', u'pari', u'summit']
[u'nation', u'galleri', u'get', u'clear']
[u'nato', u'give', u'green', u'light', u'defend', u'turkey']
[u'defend', u'aborigin', u'tent', u'embassi', u'raid']
[u'zealand', u'impos', u'visa', u'entri', u'zimbabw']
[u'effect', u'whoop', u'cough', u'vaccin']
[u'govt', u'hold', u'veget']
[u'defend', u'claim', u'run', u'race', u'campaign']
[u'pledg', u'drought', u'relief']
[u'govt', u'boost', u'nurs', u'number', u'oversea', u'intak']
[u'korean', u'seek', u'asylum', u'japanes', u'embassi']
[u'nurs', u'student', u'intak']
[u'brother', u'time', u'say', u'ganguli', u'senior']
[u'omodei', u'stay', u'polit']
[u'onesteel', u'invest', u'whyalla', u'steelwork']
[u'opposit', u'urg', u'help', u'protect', u'recherch']
[u'orient', u'begin', u'student']
[u'osullivan', u'world', u'cross', u'countri', u'doubt']
[u'pagan', u'say', u'rule', u'chang', u'necessari']
[u'pair', u'face', u'court', u'murder']
[u'patterson', u'defend', u'decis', u'attend', u'health']
[u'patterson', u'display', u'govt', u'arrog', u'crean']
[u'patterson', u'snub', u'health', u'meet', u'avoid', u'lion']
[u'peac', u'agreement', u'bring', u'respit', u'venezuela']
[u'pienaar', u'shin', u'ajax', u'frustrat', u'arsenal']
[u'plan', u'second', u'skatepark']
[u'plan', u'encourag', u'farmer', u'plantat', u'timber']
[u'nurs', u'strike', u'colleagu', u'rap']
[u'polic', u'crack', u'driver', u'safeti']
[u'polic', u'defend', u'aborigin', u'tent', u'embassi', u'raid']
[u'policewomen', u'accus', u'featur', u'feder', u'crime']
[u'probe', u'launch', u'plane', u'crash']
[u'program', u'monitor', u'forest', u'harvest', u'area']
[u'public', u'urg', u'check', u'cylind']
[u'public', u'warn', u'phone', u'scam']
[u'qanta', u'intern', u'crew', u'strike']
[u'qanta', u'plan', u'job', u'outrag', u'union']
[u'plan', u'northern', u'rout', u'sack']
[u'question', u'public', u'anger', u'grow', u'korean', u'subway']
[u'rabbit', u'control', u'program', u'trial']
[u'radioact', u'spill', u'wmcs', u'olymp']
[u'rain', u'eas', u'wheatbelt', u'water', u'woe']
[u'read', u'divis']
[u'record', u'gladston', u'ventur']
[u'refshaug', u'win', u'defam', u'court', u'case']
[u'regul', u'inspect', u'canola', u'trial']
[u'report', u'highlight', u'contain', u'termin', u'potenti']
[u'resourc', u'stock', u'boost', u'ord']
[u'restraint', u'order', u'issu', u'anti', u'discrimin']
[u'reject', u'claim', u'author', u'spurn']
[u'ricciuto', u'undergo', u'surgeri', u'injur', u'ankl']
[u'rice', u'closur', u'work']
[u'angri', u'report', u'troop', u'harass']
[u'safeti', u'review', u'begin', u'bushwalk', u'death']
[u'premier', u'call', u'action', u'river', u'murray']
[u'saudi', u'arabian', u'stand', u'trial', u'qaeda']
[u'saudi', u'arabia', u'tell', u'arab', u'iraq', u'inevit']
[u'search', u'continu', u'victim', u'south', u'korean', u'subway']
[u'second', u'resolut', u'iraq', u'expect', u'short']
[u'shire', u'offer', u'assur', u'financ']
[u'palestinian', u'kill', u'gaza', u'incurs']
[u'slow', u'recoveri', u'predict', u'aust', u'economi']
[u'smoke', u'ban', u'tabcorp', u'line']
[u'snowtown', u'murder', u'trial', u'delay']
[u'state', u'forc', u'label', u'ethanol', u'fuel']
[u'station', u'fix', u'home', u'phone', u'servic']
[u'sterrey', u'steer', u'shark']
[u'sign', u'miss', u'fisherman']
[u'stop', u'chang', u'rule', u'fan', u'tell']
[u'sugar', u'industri', u'plan', u'reveal']
[u'surg', u'sale', u'aust']
[u'swiss', u'challeng', u'look', u'futur']
[u'taipan', u'place', u'futur', u'public', u'hand']
[u'talk', u'asian', u'nuclear', u'arm', u'race', u'unhelp', u'downer']
[u'tasmanian', u'scientist', u'search', u'east', u'coast']
[u'taylor', u'deni', u'call', u'waugh', u'quit']
[u'teen', u'face', u'court', u'drug', u'charg']
[u'test', u'show', u'dioxin', u'drink', u'water', u'standard']
[u'thousand', u'rememb', u'anniversari', u'darwin']
[u'union', u'member', u'support', u'public', u'protest']
[u'continu', u'tree', u'diseas', u'studi']
[u'british', u'aircraft', u'attack', u'iraq', u'target']
[u'stock', u'fee', u'pellet', u'affect']
[u'local', u'council', u'welcom', u'singl', u'poll']
[u'victorian', u'scientist', u'honour', u'award']
[u'vowl', u'retir', u'season']
[u'wale', u'coach', u'accus', u'player', u'belittl']
[u'warn', u'hear', u'friday']
[u'webb', u'favourit', u'ladi', u'master']
[u'widn', u'abandon', u'paul']
[u'wildlif', u'sanctuari', u'plan', u'reveal']
[u'william', u'say', u'tight', u'bowl', u'warrior']
[u'wine', u'chief', u'bounc', u'sack']
[u'worksaf', u'probe', u'potato', u'harvest', u'injuri']
[u'dead', u'rebel', u'bomb', u'raid', u'philippin', u'armi']
[u'abattoir', u'sale']
[u'academ', u'upbeat', u'higher', u'educ', u'review']
[u'administr', u'appoint', u'land', u'council']
[u'declar', u'lose', u'parliamentari', u'seat']
[u'amcor', u'record', u'solid', u'profit', u'result']
[u'america', u'fourth', u'race', u'cancel']
[u'arsenal', u'pois', u'swoop', u'beckham', u'report']
[u'aust', u'drink', u'alcohol', u'smoke', u'studi']
[u'austeel', u'releas', u'soon', u'govt']
[u'australian', u'flag', u'celebr', u'birthday']
[u'hold', u'meet', u'port', u'kembla', u'job']
[u'babi', u'bad', u'burn', u'brisban', u'hous']
[u'weather', u'caus', u'iranian', u'plane', u'crash']
[u'beckham', u'lead', u'deplet', u'juve']
[u'bewar', u'standard', u'alcohol', u'drink']
[u'bilbi', u'dream', u'realiti']
[u'brisban', u'sparki', u'head', u'strike']
[u'britain', u'tell', u'nation', u'leav', u'iraq', u'kuwait']
[u'british', u'high', u'court', u'overturn', u'blair', u'asylum']
[u'british', u'magician', u'entomb', u'chees']
[u'bungl', u'leav', u'doctor', u'wait', u'practis']
[u'bushfir', u'coroni', u'inquiri', u'wind']
[u'bush', u'thank', u'nato', u'support', u'turkey']
[u'ambo', u'help', u'wake', u'fund', u'chang']
[u'canegrow', u'hope', u'late', u'summer', u'rain']
[u'capriati', u'hungri', u'dubai']
[u'celt', u'underdog', u'uefa', u'clash', u'oneil']
[u'chamber', u'vow', u'smash', u'world', u'mark']
[u'charvi', u'pay', u'penalti', u'humphrey', u'earn', u'shock']
[u'christma', u'detent', u'centr', u'claim', u'quash']
[u'claim', u'defenc', u'spend', u'prioriti', u'health']
[u'claim', u'educ', u'polici', u'caus', u'high', u'indigen']
[u'claim', u'code', u'protect', u'autopsi', u'consent']
[u'claim', u'educ', u'polici', u'caus', u'high', u'indigen']
[u'colleg', u'continu', u'work', u'experi']
[u'concern', u'probe', u'cover', u'legal']
[u'concord', u'make', u'emerg', u'land', u'canada']
[u'coroni', u'inquiri', u'expect', u'hospit', u'death']
[u'council', u'chief', u'lament', u'advertis', u'decis']
[u'council', u'general', u'manag', u'step']
[u'council', u'offer', u'vandal', u'report', u'reward']
[u'countri', u'race', u'club', u'hold', u'fear']
[u'court', u'rule', u'longford', u'compo', u'today']
[u'cristal', u'match', u'libertador', u'lose', u'streak']
[u'cuper', u'slam', u'inter', u'recoba']
[u'deportivo', u'slip', u'buoyant', u'swiss', u'minnow', u'basel']
[u'distanc', u'swimmer', u'maroney', u'call', u'quit']
[u'dixon', u'dismiss', u'qanta', u'monopoli', u'claim']
[u'downer', u'warn', u'iraq', u'action', u'begin', u'soon']
[u'drought', u'break', u'rain', u'month', u'away']
[u'drought', u'impact', u'reach']
[u'drought', u'take', u'toll', u'insect']
[u'earli', u'childhood', u'develop', u'receiv', u'research']
[u'elli', u'webb', u'place', u'ladi', u'master']
[u'employe', u'grant', u'restrain', u'order']
[u'england', u'choke', u'burger', u'king']
[u'england', u'morri']
[u'investig', u'radioact', u'spill']
[u'esso', u'respons', u'econom', u'loss']
[u'esso', u'win', u'class', u'action', u'longford']
[u'etienn', u'agre', u'tyson', u'fight']
[u'famili', u'confront', u'korean', u'presid', u'elect']
[u'fan', u'join', u'flower', u'olonga', u'anti', u'mugab', u'protest']
[u'ferguson', u'hail', u'beckham', u'unit', u'victori']
[u'fewer', u'australian', u'jail']
[u'fifa', u'boss', u'prepar', u'postpon', u'match']
[u'firefight', u'tell', u'attend', u'blaze']
[u'fish', u'clean', u'facil', u'plan', u'announc']
[u'flight', u'attend', u'action', u'wont', u'affect', u'bundaberg']
[u'forest', u'allianc', u'reject', u'hindranc', u'claim']
[u'bank', u'worker', u'plead', u'guilti', u'theft', u'charg']
[u'treasur', u'charg', u'start']
[u'forum', u'put', u'focus', u'region', u'need']
[u'nomin', u'nat', u'charter', u'tower', u'preselect']
[u'franc', u'drop', u'merceron', u'gelez', u'face', u'scot']
[u'french', u'expedit', u'site', u'heritag', u'protect']
[u'fuel', u'price', u'jump', u'newcastl']
[u'fulham', u'smash', u'west', u'brom', u'quickfir', u'trio']
[u'ganguli', u'lead', u'india', u'victori']
[u'gartner', u'win', u'wind']
[u'gippsland', u'firefight', u'remain', u'guard']
[u'govt', u'canvass', u'way', u'improv', u'child', u'develop']
[u'govt', u'work', u'coron', u'suicid', u'report']
[u'greenpeac', u'call', u'canola']
[u'green', u'dump', u'anti', u'terror', u'kit', u'howard', u'doorstep']
[u'group', u'air', u'truanci', u'concern']
[u'group', u'prais', u'outgo', u'opposit', u'agricultur']
[u'group', u'reef', u'build']
[u'hagan', u'blood', u'rooki', u'penrith']
[u'houllier', u'back', u'owen', u'break', u'rush', u'score', u'record']
[u'howard', u'step', u'critic', u'anti', u'protest']
[u'howard', u'vow', u'stay', u'iraq', u'crisi']
[u'hussein', u'say', u'iraq', u'doesnt', u'want']
[u'illeg', u'fish', u'spot', u'identifi']
[u'immigr', u'raid', u'melbourn', u'draw', u'flak']
[u'impati', u'grow', u'water', u'manag', u'plan']
[u'indi', u'meet', u'like', u'includ', u'rain', u'race', u'talk']
[u'injuri', u'threaten', u'unit', u'final']
[u'seek', u'build', u'stage', u'bypass']
[u'investig', u'underway', u'qanta', u'skid']
[u'investor', u'plan', u'ethanol', u'plant', u'lament', u'trial']
[u'iran', u'militari', u'plane', u'crash', u'kill']
[u'iran', u'plane', u'crash', u'aboard']
[u'iraqi', u'human', u'shield', u'crime']
[u'itali', u'remain', u'unchang', u'ireland', u'clash']
[u'kalgoorli', u'boulder', u'crime', u'rate', u'declin']
[u'kayak', u'rescu', u'second', u'adventur']
[u'kirwan', u'stick', u'win', u'formula', u'ireland']
[u'korean', u'book', u'date', u'seed', u'roddick']
[u'landhold', u'contribut', u'discuss']
[u'lawyer', u'allow', u'visit', u'manus', u'detent', u'centr']
[u'lawyer', u'appeal', u'man', u'sept', u'convict']
[u'lawyer', u'review', u'case', u'esso', u'appeal']
[u'lend', u'leas', u'post', u'million', u'loss']
[u'lethal', u'back', u'point', u'rule', u'chang']
[u'airport', u'tunnel', u'remain', u'close', u'accid']
[u'macarthur', u'kingfish', u'suffer', u'minor', u'damag']
[u'apologis', u'plane', u'hijack']
[u'await', u'sentenc', u'denmark', u'murder']
[u'question', u'backpack', u'death']
[u'charg', u'roxbi', u'down', u'plane', u'incid']
[u'hospit', u'stab', u'attack']
[u'lose', u'defam', u'compo']
[u'murder', u'charg', u'refus', u'bail']
[u'face', u'court', u'alleg', u'hijack']
[u'face', u'court', u'attempt', u'arm', u'robberi']
[u'whack', u'thatcher', u'get', u'month', u'jail']
[u'maroney', u'call', u'quit']
[u'medal', u'recognis', u'island', u'effort']
[u'meet', u'consid', u'glenelg', u'river', u'futur']
[u'melbourn', u'receiv', u'massiv', u'compo', u'payout']
[u'mgladbach', u'leav', u'danger', u'zone', u'home']
[u'rat', u'challeng', u'result', u'expect', u'march']
[u'miner', u'explor', u'nickel', u'deposit']
[u'molotov', u'cocktail', u'suspect', u'melb', u'hotel']
[u'anti', u'ralli', u'plan']
[u'land', u'noosa', u'nation', u'park']
[u'teacher', u'danger', u'student', u'union']
[u'detain', u'immigr', u'raid']
[u'women', u'unlik', u'join', u'men', u'master']
[u'mosley', u'readi', u'engin', u'compromis']
[u'motorist', u'avoid', u'ethanol', u'blend', u'fuel', u'labor']
[u'crab', u'busi']
[u'murray', u'meet', u'wouldnt', u'detract', u'ministeri']
[u'nat', u'seek', u'probe', u'bushfir', u'probe']
[u'boat', u'take', u'waterway']
[u'zealand', u'discov', u'kenya', u'fate', u'thursday']
[u'fund', u'discuss', u'poll']
[u'penalti', u'church', u'damag', u'monument']
[u'coalit', u'make', u'magic', u'pud', u'elect']
[u'govt', u'announc', u'communiti', u'benefit', u'grant']
[u'offer', u'roll', u'classic', u'holden']
[u'price', u'high']
[u'oldfield', u'court', u'nation']
[u'nation', u'select', u'hear', u'continu']
[u'packer', u'hand', u'licenc', u'pistol', u'investig']
[u'pakistani', u'forc', u'chief', u'kill', u'crash']
[u'palaszczuk', u'wont', u'disast', u'fund', u'promis']
[u'park', u'protect', u'high', u'conserv', u'area']
[u'peac', u'group', u'deni', u'member', u'harass', u'soldier']
[u'peopl', u'trap', u'pile']
[u'pilot', u'make', u'emerg', u'land', u'adelaid', u'airport']
[u'player', u'continu', u'zimbabw', u'protest']
[u'critic', u'protest', u'disgrac', u'crean']
[u'defend', u'critic', u'anti', u'protest']
[u'polic', u'continu', u'probe', u'human', u'remain']
[u'polic', u'second', u'cannabi', u'crop']
[u'polic', u'hope', u'gain', u'edg', u'weapon', u'user']
[u'polic', u'locat', u'miss', u'famili', u'hous']
[u'polic', u'arrest', u'drug', u'raid']
[u'polic', u'seek', u'help', u'piraci']
[u'polic', u'offic', u'fight', u'chop', u'chop', u'trade']
[u'polic', u'wont', u'rule', u'link', u'drug', u'plantat']
[u'politician', u'breed', u'public', u'anti', u'troop', u'sentiment']
[u'pollock', u'deni', u'split', u'protea', u'camp']
[u'popul', u'drift', u'forc', u'feder', u'boundari']
[u'powel', u'visit', u'asia', u'eas', u'korean']
[u'predict', u'good', u'wheatbelt', u'rain']
[u'probe', u'launch', u'fatal', u'polic', u'pursuit']
[u'protest', u'condemn', u'howard', u'critic', u'anti']
[u'protocol', u'follow', u'immigr', u'raid']
[u'public', u'warn', u'snake', u'handl', u'danger']
[u'pump', u'continu', u'richmond', u'flood']
[u'qanta', u'draw', u'flak', u'redund', u'talk']
[u'qanta', u'flag', u'cut', u'despit', u'record', u'profit']
[u'qanta', u'record', u'million', u'profit']
[u'qfvg', u'upset', u'retail', u'price']
[u'govt', u'say', u'hospit', u'schedul']
[u'nat', u'close', u'deal', u'lib', u'springborg']
[u'race', u'club', u'sneak', u'point', u'peru']
[u'rain', u'boost', u'farmer', u'confid']
[u'rain', u'forc', u'aussi', u'bowl', u'chang', u'buchanan']
[u'raid', u'target', u'newsag']
[u'road', u'fund', u'tackl', u'flood']
[u'ronaldo', u'put', u'real', u'race']
[u'ruiz', u'trick', u'guatemala', u'rout', u'nicaragua']
[u'saff', u'gaug', u'feel', u'plan', u'crown', u'land']
[u'safin', u'escud', u'rotterdam', u'comeback', u'trail']
[u'govt', u'defend', u'move', u'forc', u'fine', u'default']
[u'govt', u'appeal', u'fish', u'decis']
[u'schmeichel', u'miss', u'arsenal', u'trip']
[u'school', u'reopen', u'paint', u'fume', u'scare']
[u'scotland', u'refus', u'panic']
[u'seaman', u'injuri', u'crisi', u'arsenal']
[u'self', u'clone', u'crayfish', u'threaten', u'nativ', u'speci']
[u'socceroo', u'creep', u'world', u'rank']
[u'solar', u'car', u'turn', u'head']
[u'sport', u'task', u'forc', u'plan', u'begin']
[u'start', u'america', u'race', u'delay']
[u'stone', u'stay', u'feder', u'liber', u'presid']
[u'need', u'good', u'downpour']
[u'taipan', u'keep', u'play', u'dream', u'aliv']
[u'polic', u'question', u'injur', u'hous']
[u'taxi', u'driver', u'face', u'trial']
[u'tension', u'increas', u'fighter', u'stray']
[u'terror', u'weapon', u'pose', u'minim', u'risk', u'british', u'expert']
[u'thousand', u'visit', u'dairi', u'field', u'day']
[u'isra', u'injur', u'hama', u'rocket']
[u'shuffl', u'pack', u'defeat', u'loom']
[u'tomasson', u'give', u'milan', u'narrow', u'lokomotiv']
[u'tough', u'time', u'ahead', u'water', u'alloc']
[u'tourism', u'industri', u'protect', u'iraq']
[u'trial', u'hear', u'woman', u'deni', u'kill', u'fianc']
[u'triathlet', u'bris', u'gold', u'coast', u'bikeway']
[u'truck', u'roll', u'destroy', u'furnitur']
[u'turkey', u'stand', u'firm', u'offer']
[u'turkey', u'undecid', u'gulf', u'attack']
[u'union', u'disun', u'mccain', u'enterpris', u'agreement']
[u'secur', u'council', u'end', u'open', u'debat']
[u'invit', u'talk', u'burmes', u'militari', u'junta']
[u'launch', u'homeland', u'secur', u'readi', u'campaign']
[u'market', u'remain', u'jitteri', u'shadow']
[u'tell', u'turkey', u'time', u'run', u'offer']
[u'action', u'europ']
[u'uzbek', u'journalist', u'sentenc', u'seven', u'year', u'jail']
[u'verstappen', u'pleas', u'minardi', u'track', u'debut']
[u'govt', u'speak', u'rice', u'closur', u'claim']
[u'crew', u'battl', u'bushfir', u'marangaroo']
[u'talk', u'take', u'toll', u'ord']
[u'iraq', u'cost', u'billion', u'economist']
[u'watkin', u'jeer', u'educ', u'forum']
[u'wine', u'destin']
[u'western', u'power', u'reveal', u'power', u'suppli', u'detail']
[u'wide', u'economi', u'grow', u'stronger']
[u'wine', u'export', u'urg', u'push', u'ahead']
[u'winemak', u'consid', u'loss', u'industri']
[u'woman', u'face', u'court', u'child', u'prostitut']
[u'yacht', u'lose', u'mast', u'trawler', u'incid']
[u'zimbabw', u'bar', u'british', u'report', u'world']
[u'accc', u'timid', u'petrol', u'price', u'investig']
[u'action', u'want', u'lower', u'indigen', u'unemploy', u'rate']
[u'rule', u'scrap', u'feder', u'seat', u'hurt']
[u'shut', u'malaga', u'claim', u'goalless', u'draw']
[u'allan', u'guilti', u'cash', u'charg']
[u'allan', u'unlik', u'appeal', u'fine']
[u'air', u'hospit', u'reform', u'concern']
[u'deliv', u'health', u'concern', u'list', u'politician']
[u'andersson', u'atwal', u'miss', u'record', u'malaysia']
[u'antarct', u'rock', u'global', u'warm']
[u'confid', u'growth', u'tough', u'environ']
[u'million', u'offic']
[u'arab', u'state', u'press', u'crime', u'condemn']
[u'dead', u'club']
[u'injur', u'rhode', u'island', u'nightclub']
[u'aussi', u'dollar', u'continu', u'climb']
[u'aust', u'qaeda', u'target', u'list']
[u'australia', u'withdraw', u'bougainvill', u'peac', u'monitor']
[u'aust', u'share', u'market', u'end', u'week', u'negat', u'territori']
[u'bartlett', u'vow', u'block', u'govt', u'plan', u'nuclear']
[u'beatti', u'unawar', u'tree', u'clear', u'fund', u'hold']
[u'bedi', u'label', u'murali', u'chucker']
[u'belgian', u'polic', u'recov', u'steal', u'work']
[u'port', u'kembla', u'product', u'restart']
[u'gun', u'busi', u'premier', u'leagu']
[u'blake', u'paradorn', u'upset', u'memphi']
[u'brack', u'back', u'rule', u'dean', u'year', u'pension']
[u'british', u'govt', u'clash', u'high', u'court', u'asylum']
[u'british', u'award', u'platform', u'iraq']
[u'briton', u'stab', u'death', u'bangkok']
[u'brothel', u'owner', u'acquit', u'hire', u'underag']
[u'brothel', u'owner', u'front', u'court', u'alleg', u'hire']
[u'burma', u'sentenc', u'jail', u'fin']
[u'bushfir', u'burn', u'hectar']
[u'cairn', u'canberra', u'grab', u'win']
[u'cairn', u'injur', u'kiwi', u'nightclub', u'brawl']
[u'cairn', u'injur', u'nightclub', u'brawl', u'report']
[u'scrap', u'nation', u'plantat', u'target']
[u'candlehold', u'recal', u'risk']
[u'carr', u'hook', u'brogden', u'debat']
[u'celt', u'sink', u'stuttgart']
[u'central', u'park', u'area', u'expand']
[u'centrelink', u'offer', u'drought', u'counsel']
[u'china', u'wage', u'chemic', u'chew', u'blob']
[u'chirac', u'mugab', u'talk', u'sidelin', u'africa', u'summit']
[u'christma', u'island', u'resid', u'awar', u'detent']
[u'claim', u'inventori', u'caus', u'high', u'petrol', u'price']
[u'claim', u'live', u'sheep', u'cattl', u'export', u'threaten']
[u'claim', u'rain', u'boost', u'stock', u'price']
[u'class', u'action', u'cost', u'esso']
[u'clinton', u'cancel', u'trip', u'india']
[u'coalit', u'promis', u'scrap', u'angler']
[u'committ', u'continu', u'goulburn', u'jail', u'riot']
[u'costello', u'unhappi', u'wasnt', u'consult', u'stone']
[u'council', u'approv', u'poultri', u'farm']
[u'council', u'await', u'rain']
[u'council', u'consid', u'indigen', u'caravan', u'park', u'plan']
[u'council', u'elect', u'plan']
[u'council', u'reject', u'combin', u'field', u'day', u'stand', u'idea']
[u'council', u'chang', u'tree', u'protect']
[u'council', u'fund', u'groundwat', u'studi']
[u'counsel', u'begin', u'sum', u'warn', u'dope', u'hear']
[u'crimin', u'charg', u'pend', u'south', u'korea', u'subway', u'probe']
[u'croc', u'prove', u'good', u'bullet']
[u'date', u'bushfir', u'coroni', u'inquiri']
[u'dean', u'receiv', u'lifetim', u'parliamentari', u'pension']
[u'death', u'spell', u'record', u'marriag']
[u'demon', u'thump', u'tiger']
[u'deportivo', u'cali', u'outclass', u'sulki', u'river', u'plate']
[u'deschamp', u'chase', u'flame', u'marseill']
[u'disast', u'fund', u'allow', u'shire', u'complet']
[u'dortmund', u'readi', u'hound', u'bayern']
[u'downpour', u'close', u'tourist', u'road']
[u'drought', u'impact', u'roadwork']
[u'drought', u'predict', u'long', u'last', u'impact']
[u'educ', u'dept', u'consid', u'rural', u'concern']
[u'famili', u'court', u'reject', u'invalid', u'transsexu']
[u'farmer', u'celebr', u'good', u'rain']
[u'fear', u'patterson', u'hide', u'news', u'health', u'minist']
[u'feder', u'fund', u'seek', u'wave', u'studi']
[u'govt', u'consid', u'appeal', u'transsexu']
[u'firefight', u'battl', u'contain', u'beechford', u'blaze']
[u'fisher', u'meet', u'minist', u'court', u'rule']
[u'fish', u'group', u'seek', u'action', u'pilchard', u'import']
[u'flight', u'attend', u'action', u'like', u'affect']
[u'footi', u'great', u'get', u'indigen', u'right', u'campaign']
[u'socceroo', u'coach', u'thomson', u'die']
[u'funer', u'hold', u'cricket', u'legend']
[u'funk', u'lead', u'elkington', u'california']
[u'gebrselassi', u'plan', u'world', u'record', u'comeback']
[u'wit', u'church', u'bell', u'hand']
[u'gold', u'coast', u'get', u'tourism', u'assur']
[u'group', u'concern', u'rain', u'bring', u'wrong', u'impress']
[u'group', u'get', u'clearer', u'understand', u'farmer']
[u'guga', u'reach', u'bueno', u'air', u'quarter']
[u'health', u'servic', u'speak', u'patient', u'death']
[u'hoddl', u'murder', u'grant', u'right', u'seek', u'judici']
[u'hors', u'ride', u'enact']
[u'howard', u'repeat', u'zimbabw', u'boycott']
[u'hundr', u'triathlet', u'head', u'coff']
[u'hungarian', u'thief', u'make', u'amend', u'post']
[u'hyypia', u'hero', u'liverpool', u'bounc']
[u'iaea', u'visit', u'iran', u'assess', u'nuclear', u'program']
[u'indian', u'jail', u'smuggl', u'pakistani', u'suitcas']
[u'indian', u'player', u'retrac', u'gandhi', u'journey']
[u'indonesia', u'say', u'australia', u'travel', u'warn']
[u'industri', u'action', u'impact', u'brisban', u'school']
[u'investig', u'underway', u'pile']
[u'investig', u'probe', u'hospit', u'staff', u'complaint']
[u'jackson', u'hit', u'explos', u'british', u'interview']
[u'japanes', u'tourist', u'drown', u'gold', u'coast', u'surf']
[u'joblink', u'issu', u'statement', u'sack']
[u'keegan', u'aim', u'bring', u'arsenal', u'earth']
[u'kenya', u'award', u'point', u'kiwi']
[u'kyli', u'minogu', u'posterior', u'brit']
[u'land', u'council', u'dismiss', u'administr', u'appoint']
[u'langer', u'name', u'player', u'year']
[u'liverpool', u'lazio', u'hold', u'krakow']
[u'llewellyn', u'impress', u'patterson']
[u'longreach', u'water', u'restrict', u'remain']
[u'loos', u'cannon', u'afridi', u'pakistan']
[u'lovenkrand', u'dream', u'hampden', u'return']
[u'water', u'spark', u'boat', u'lake', u'albert']
[u'male', u'bodi', u'murder', u'schoolgirl']
[u'accus', u'sell', u'bali', u'bomb', u'chemic', u'go']
[u'appear', u'court', u'charg', u'stuttl', u'murder']
[u'charg', u'stuttl', u'murder']
[u'fail', u'overturn', u'convict', u'bell']
[u'hospit', u'receiv', u'sever', u'electr']
[u'hospit', u'stab']
[u'jail', u'fatal', u'stab', u'facto']
[u'jail', u'life', u'murder']
[u'question', u'stuttl', u'murder']
[u'face', u'court', u'fatal']
[u'agre', u'deal', u'eriksson', u'ferguson']
[u'threaten', u'melbourn', u'water', u'suppli', u'bail']
[u'highlight', u'potenti', u'river', u'salin', u'problem']
[u'mayor', u'angri', u'mural', u'vandal']
[u'mine', u'giant', u'call', u'fund', u'boost', u'nativ']
[u'montgomeri', u'enter', u'indoor', u'nation']
[u'rain', u'delay', u'tougher', u'water', u'restrict']
[u'troop', u'help', u'hunt', u'sayyaf', u'rebel']
[u'want', u'tank', u'battalion', u'rumour', u'investig']
[u'welcom', u'polic', u'station', u'announc']
[u'nardel', u'close', u'receiv', u'appoint']
[u'nauru', u'appeal', u'help', u'nation', u'airlin']
[u'battl', u'britain', u'loom', u'uefa']
[u'newcastl', u'citi', u'notch', u'win', u'stallion', u'draw', u'south']
[u'commerci', u'crab', u'restrict', u'plan']
[u'disabl', u'respit', u'servic']
[u'korea', u'duck', u'nuclear', u'talk', u'summit']
[u'korea', u'warn', u'wont', u'peac']
[u'cost', u'blowout', u'forecast', u'water', u'treatment', u'plan']
[u'coron', u'clear', u'doc', u'death', u'toddler']
[u'grazier', u'record', u'heavi', u'rainfal']
[u'opp', u'drug', u'free', u'prison', u'plan', u'ameri']
[u'nurs', u'home', u'worker', u'suspend']
[u'olonga', u'sack', u'club']
[u'million', u'ticket', u'sell', u'rugbi', u'world']
[u'otago', u'open', u'super']
[u'owner', u'hesit', u'norther', u'oversea', u'jaunt']
[u'pair', u'face', u'court', u'machet', u'attack']
[u'palestinian', u'kill', u'gaza', u'strip', u'cross', u'point']
[u'patterson', u'irrespons', u'edmond']
[u'patterson', u'childish', u'minist']
[u'patterson', u'say', u'health', u'meet', u'wast', u'time']
[u'petrol', u'price', u'rise']
[u'petrol', u'break']
[u'plan', u'includ', u'puckapuny', u'cull']
[u'plan', u'intersect', u'revamp', u'begin']
[u'accus', u'european', u'countri', u'encourag', u'saddam']
[u'defend', u'protest', u'comment']
[u'choic', u'stay', u'iraq']
[u'prais', u'costello', u'leadership', u'patienc']
[u'governor', u'general', u'urg', u'elect', u'uniti']
[u'polic', u'charg', u'stab']
[u'polic', u'continu', u'investig', u'cannabi', u'crop']
[u'polic', u'station', u'face', u'uncertainti']
[u'powel', u'call', u'uphold']
[u'push', u'like', u'seek', u'age', u'care', u'worker']
[u'push', u'extend', u'fraser', u'world', u'heritag', u'list']
[u'qanta', u'plane', u'make', u'emerg', u'land']
[u'qanta', u'say', u'info', u'prime', u'terrorist']
[u'qanta', u'urg', u'updat', u'secur', u'shadow']
[u'govt', u'reject', u'land', u'acquisit', u'claim']
[u'racv', u'surpris', u'petrol', u'ration', u'talk']
[u'rail', u'firm', u'assess', u'worker', u'need']
[u'rain', u'bring', u'stock', u'loss']
[u'rain', u'caus', u'chao', u'melbourn', u'road']
[u'rain', u'expect', u'continu']
[u'rainfal', u'like', u'clear', u'weekend']
[u'rain', u'welcom', u'relief', u'drought']
[u'rain', u'drought', u'break']
[u'rain', u'offer', u'water', u'suppli', u'boost']
[u'rejuven', u'tyson', u'cure', u'cash', u'inject']
[u'resid', u'assur']
[u'retail', u'sector', u'air', u'trade', u'hour', u'review', u'concern']
[u'romario', u'jeer', u'team', u'brawl', u'fluminens', u'hold']
[u'round', u'world', u'forget']
[u'ruddock', u'commend', u'australia', u'travel', u'control']
[u'salin', u'expert', u'water', u'catchment']
[u'lose', u'seat', u'feder', u'parliament']
[u'soldier', u'charg', u'misconduct']
[u'schumach', u'seek', u'speed', u'nois']
[u'seaman', u'ajax', u'match']
[u'search', u'better', u'life', u'pay']
[u'second', u'nightclub', u'kill']
[u'senat', u'offer', u'input', u'coast', u'issu']
[u'dead', u'rhode', u'island', u'nightclub']
[u'shire', u'say', u'plan', u'polici', u'compromis']
[u'slap', u'paedophil', u'amput']
[u'state', u'territori', u'health', u'minist', u'arriv', u'meet']
[u'steal', u'wage', u'report', u'look', u'improv', u'indigen']
[u'strike', u'expect', u'mean', u'milk', u'shortag']
[u'strike', u'disrupt', u'milk', u'suppli']
[u'studi', u'consid', u'altern', u'crop', u'sugar', u'region']
[u'studi', u'probe', u'snowi', u'motorcycl', u'crash']
[u'teacher', u'shortag', u'wors', u'report']
[u'team', u'mat', u'send', u'best', u'wish', u'warn']
[u'telstra', u'chief', u'embarrass', u'billion', u'writedown']
[u'telstra', u'punish', u'massiv', u'hong', u'kong', u'write']
[u'telstra', u'hurt', u'joint', u'ventur']
[u'thiev', u'target', u'esper', u'car']
[u'timor', u'treati', u'ratfi', u'short', u'martin']
[u'troubl', u'torino', u'pray', u'miracl']
[u'tuckey', u'lament', u'gungahlin', u'drive', u'plan', u'problem']
[u'turkey', u'delay', u'vote', u'troop']
[u'turkey', u'dig', u'heel', u'lobbi', u'support']
[u'turkey', u'forc', u'weigh', u'strategi']
[u'union', u'condemn', u'qantass', u'contract', u'labour', u'plan']
[u'ask', u'indonesia', u'improv', u'human', u'right', u'record']
[u'boost', u'troop', u'number', u'philippin']
[u'chiropractor', u'address', u'gold', u'coast', u'gather']
[u'intellig', u'analyst', u'guilti', u'spi']
[u'research', u'prepar']
[u'valencia', u'sens', u'victori', u'benitez', u'benitez']
[u'govt', u'get', u'farmer', u'drought', u'updat']
[u'victorian', u'farmer', u'hope', u'rain', u'break', u'drought']
[u'victoria', u'welcom', u'rain', u'relief']
[u'vinnicomb', u'reject', u'freeway', u'claim']
[u'waratah', u'super', u'open']
[u'impact', u'exercis', u'unknown']
[u'warn', u'decis', u'saturday']
[u'warn', u'dope', u'hear', u'underway']
[u'william', u'mclaren', u'plan', u'court']
[u'wine', u'avocado', u'drive', u'mutton', u'wool']
[u'wisla', u'hold', u'lazio', u'goal', u'thriller']
[u'woodgat', u'tell', u'stay', u'away', u'elland', u'road']
[u'worker', u'return', u'work', u'burrup']
[u'youth', u'group', u'unhappi', u'appeal', u'carer']
[u'confirm', u'dead', u'nightclub']
[u'tourist', u'attract', u'honour', u'award', u'night']
[u'adelaid', u'break', u'port', u'heart']
[u'qaeda', u'member', u'jail', u'terrorist', u'plot']
[u'arafat', u'number', u'outlin', u'propos', u'ceasefir']
[u'athen', u'risk', u'turn', u'game', u'disast']
[u'australia', u'urg', u'abandon', u'zimbabw', u'world', u'match']
[u'black', u'black', u'cap']
[u'blix', u'order', u'destruct', u'iraqi', u'missil']
[u'botch', u'oper', u'leav', u'teenag', u'brain', u'damag']
[u'brockovich', u'take', u'cancer', u'crusad', u'court']
[u'brogden', u'accus', u'carr', u'fudg', u'ambul', u'figur']
[u'brumbi', u'red', u'ballymor']
[u'cairn', u'play', u'despit', u'brawl']
[u'australian', u'human', u'right']
[u'canberra', u'capit', u'championship']
[u'capit', u'flame', u'wnbl', u'titl']
[u'captain', u'refus', u'ship', u'wheat', u'iraq']
[u'children', u'right', u'overlook', u'advoc']
[u'confid', u'win', u'lower', u'hous', u'seat']
[u'coria', u'stun', u'nalbandian', u'reach', u'argentina', u'semi']
[u'croatia', u'launch', u'membership']
[u'crusad', u'begin', u'defenc']
[u'darwin', u'polic', u'investig', u'attempt', u'assault']
[u'davi', u'webb', u'share', u'master', u'lead']
[u'death', u'toll', u'rise', u'club', u'blaze']
[u'deputi', u'say', u'iraq', u'readi', u'dialogu']
[u'despit', u'rain', u'govt', u'say', u'drought', u'isnt']
[u'donald', u'leav', u'bangladesh', u'clash']
[u'dumbledor', u'replac', u'pick', u'potter', u'film']
[u'eagl', u'docker', u'despit']
[u'faldo', u'withdraw', u'match', u'play', u'tournament']
[u'farina', u'pay', u'tribut', u'thomson']
[u'femal', u'cosmonaut', u'feet', u'grind']
[u'ferrero', u'escud', u'hobbl', u'rotterdam']
[u'ferrero', u'rotterdam', u'campaign', u'end', u'agoni']
[u'flash', u'flood', u'keep', u'busi']
[u'star', u'koen', u'lick', u'cat']
[u'fourth', u'race', u'postpon']
[u'freeman', u'split', u'husband']
[u'french', u'african', u'leader', u'support', u'iraq', u'inspect']
[u'gebrselassi', u'break', u'mile', u'indoor']
[u'gebrselassi', u'break', u'feofanova', u'reach']
[u'gurkha', u'discrimin', u'case', u'fail', u'court']
[u'hear', u'adjourn', u'prison', u'riot']
[u'pain', u'sidelin', u'golf', u'legend', u'palmer']
[u'howel', u'lead', u'california']
[u'hussain', u'gile', u'recal', u'pakistan', u'clash']
[u'iaea', u'begin', u'iran', u'nuclear', u'assess']
[u'iraq', u'wheat', u'comment', u'polit', u'vail']
[u'jackson', u'lead', u'cap', u'titl']
[u'japan', u'back', u'campaign', u'fresh', u'iraq', u'vote']
[u'johnson', u'pittman', u'excel', u'canberra']
[u'kangaroo', u'thump', u'essendon', u'hawk', u'edg', u'saint']
[u'kookaburra', u'forc', u'dutch', u'draw']
[u'labor', u'target', u'council', u'golden', u'handshak']
[u'lara', u'jump', u'warn', u'defenc']
[u'light', u'wind', u'delay', u'fourth', u'america', u'race']
[u'likud', u'parti', u'coalit', u'partner']
[u'long', u'haul', u'grazier', u'rain', u'break']
[u'massa', u'test', u'drive', u'championship', u'win', u'ferrari']
[u'metro', u'recruit', u'women', u'driver', u'posit']
[u'newcastl', u'secur', u'spot']
[u'confirm', u'iraqi', u'wheat', u'order']
[u'greec', u'lightn', u'olymp', u'work', u'control']
[u'plan', u'inquiri', u'communiti', u'servic']
[u'health', u'minist', u'call', u'meet', u'cwealth']
[u'ntini', u'star', u'bangladesh', u'fell']
[u'mayor', u'play', u'terrorist', u'attack', u'specul']
[u'cricket', u'investig', u'durban', u'nightclub', u'brawl']
[u'price', u'hike', u'weigh', u'rat', u'decis']
[u'kill', u'fuel', u'barg', u'explod']
[u'pair', u'miss', u'fuel', u'barg', u'explod']
[u'pearson', u'rout', u'aussi', u'women']
[u'petrol', u'price', u'hike', u'compar', u'rate', u'rise']
[u'polic', u'come', u'beat', u'oppn', u'claim']
[u'polic', u'investig', u'muswellbrook', u'death']
[u'polic', u'treat', u'hunter', u'valley', u'death', u'murder']
[u'powel', u'leav', u'japan', u'talk', u'china']
[u'powel', u'start', u'asian', u'tour', u'north', u'korea', u'talk']
[u'protea', u'demolish', u'bangladesh']
[u'protest', u'afloat', u'deliv', u'peac', u'messag']
[u'public', u'concern', u'environ', u'statist']
[u'take', u'gong', u'aust', u'tourism', u'award']
[u'rain', u'bring', u'relief', u'farmer']
[u'rain', u'fall', u'drought', u'ravag', u'eastern', u'state']
[u'recoba', u'hand', u'match', u'champion']
[u'result', u'aid', u'vaccin', u'trial', u'releas']
[u'robo', u'deer', u'take', u'bullet', u'justic']
[u'roddick', u'head', u'semi', u'memphi']
[u'saddam', u'ponder', u'edict', u'scrap', u'missil']
[u'note', u'esteem', u'music', u'educ', u'die']
[u'govt', u'block', u'glenelg', u'high', u'rise', u'apart']
[u'sampra', u'withdraw', u'arizona', u'replac', u'hewitt']
[u'polic', u'close', u'schoolgirl', u'killer']
[u'seaman', u'rest', u'main', u'road', u'visit']
[u'searcher', u'fear', u'dead', u'china', u'ferri', u'sink']
[u'selector', u'announc', u'warn', u'replac', u'soon']
[u'sele', u'face', u'henin', u'hardenn', u'dubai', u'final']
[u'shop', u'owner', u'trial', u'accus', u'bali', u'bomb']
[u'korea', u'subway', u'staff', u'face', u'kill', u'charg']
[u'smigun', u'take', u'nordic', u'ski', u'world', u'championship']
[u'helen', u'super', u'leagu', u'season', u'open']
[u'stormer', u'slaughter', u'shark']
[u'stuttl', u'famili', u'welcom', u'travel', u'offer']
[u'sunrac', u'head', u'gloomi', u'final']
[u'shin', u'rmit', u'entri', u'race']
[u'taipan', u'stay', u'aliv', u'cannon', u'dodg', u'bullet']
[u'relay', u'rais', u'money', u'cancer', u'council']
[u'teenag', u'stab', u'fight']
[u'toll', u'rise', u'club']
[u'turkey', u'pois', u'iraq', u'deal']
[u'kill', u'motorbik', u'collis']
[u'warn', u'final', u'phase', u'iraq', u'stand']
[u'ulster', u'milit', u'declar', u'ceasefir']
[u'author', u'confirm', u'kill', u'club']
[u'ensur', u'american', u'semi', u'final']
[u'nightclub', u'death', u'toll', u'hit']
[u'prosecutor', u'slave', u'labour', u'case', u'samoa']
[u'stock', u'rise', u'follow', u'posit', u'iraqi', u'comment']
[u'govt', u'call', u'volunt', u'state', u'clean']
[u'say', u'polic', u'take', u'beat']
[u'warn', u'appeal', u'month']
[u'weather', u'chang', u'save', u'white', u'beach', u'shack']
[u'wood', u'remain', u'hunt']
[u'worker', u'electrocut', u'piggeri', u'repair']
[u'accus', u'peopl', u'smuggler', u'face', u'darwin', u'court']
[u'struggl', u'public', u'hous', u'demand']
[u'alic', u'forum', u'discuss', u'indigen', u'educ', u'issu']
[u'alinghi', u'fume', u'cancel']
[u'tumbl', u'greec', u'river']
[u'aussi', u'arriv', u'zimbabw']
[u'barca', u'deportivo', u'real', u'shine', u'spain']
[u'bayern', u'open', u'point']
[u'bevan', u'frustrat', u'lack', u'opportun']
[u'blair', u'put', u'case', u'iraq', u'pope']
[u'bradman', u'baggi', u'green', u'expect', u'fetch']
[u'britain', u'ralli', u'support', u'resolut']
[u'brown', u'claim', u'french', u'land', u'site', u'tassi']
[u'butcher', u'defend', u'beef', u'price']
[u'call', u'peac', u'iraqi', u'resolut']
[u'cambodian', u'deni', u'polit', u'emerg']
[u'carpark', u'shoot', u'spark', u'adelaid', u'manhunt']
[u'carr', u'plan', u'anti', u'drug', u'campaign']
[u'lover', u'march', u'rome', u'sacr', u'stray']
[u'cat', u'claw', u'dog']
[u'cat', u'claw', u'dog', u'pie', u'swoop', u'blue']
[u'coalit', u'launch', u'ahead', u'elect']
[u'colombian', u'rebel', u'demand', u'rescuer']
[u'consum', u'wear', u'cost', u'trolley', u'loss']
[u'council', u'deni', u'revenu', u'rais', u'park', u'fee']
[u'court', u'find', u'guilti', u'gross', u'ingratitud']
[u'cricket', u'associ', u'say', u'warn', u'harsh']
[u'defend', u'acquisit', u'investig']
[u'darwin', u'clear', u'play', u'super', u'match']
[u'davi', u'take', u'ladi', u'master']
[u'davison', u'plunder', u'record', u'centuri']
[u'dead', u'rock', u'club', u'whos', u'fault']
[u'dem', u'block', u'govt', u'spend', u'move']
[u'differ', u'beazley', u'stay', u'backbench']
[u'downer', u'expect', u'iraq', u'edict']
[u'downer', u'push', u'urgent', u'talk', u'north', u'korea']
[u'downer', u'unmov', u'iraqi', u'wheat', u'decis']
[u'drought', u'doom', u'turn', u'flood', u'gloom']
[u'protest', u'face', u'zimbabw', u'player', u'tell']
[u'england', u'deserv', u'favourit', u'oneil']
[u'england', u'grand', u'slam', u'dream', u'aliv']
[u'england', u'punish', u'disappoint', u'pakistan']
[u'fake', u'croc', u'scare', u'flamingo']
[u'fickl', u'weather', u'hold', u'race']
[u'firefight', u'continu', u'contain', u'effort', u'near']
[u'palestinian', u'armi', u'crackdown']
[u'flower', u'play', u'australia', u'report']
[u'forens', u'team', u'struggl', u'identifi', u'club']
[u'ambassador', u'criticis', u'howard', u'remark']
[u'freeman', u'expect', u'race', u'melbourn']
[u'gatecrash', u'blame', u'violenc', u'bali', u'thank']
[u'geelong', u'fight', u'ring', u'road', u'fund']
[u'govt', u'paper', u'discuss', u'preserv', u'adelaid']
[u'gunner', u'demolish', u'citi', u'stumbl']
[u'hampshir', u'chairman', u'call', u'review', u'cricket']
[u'hampshir', u'want', u'warn']
[u'hard', u'work', u'steal', u'craftsmen', u'ident']
[u'hayden', u'focus', u'cricket', u'polit']
[u'henin', u'hardenn', u'outlast', u'sele', u'dubai', u'thriller']
[u'hill', u'star', u'tiger', u'claim', u'chariti']
[u'hockeyroo', u'save', u'best', u'till']
[u'hotel', u'associ', u'fight', u'smoke']
[u'howel', u'extend', u'lead']
[u'hussain', u'hail', u'special', u'england', u'perform']
[u'iaea', u'say', u'iraqi', u'cooper', u'improv']
[u'iraqi', u'minist', u'say', u'protest', u'prompt', u'wheat', u'decis']
[u'king', u'regain', u'spot']
[u'lion', u'roll', u'swan']
[u'charg', u'bash', u'nightclub', u'door']
[u'charg', u'ormiston', u'attack']
[u'charg', u'attempt', u'murder', u'stab']
[u'fight', u'life', u'stab']
[u'stab', u'death', u'melbourn', u'brawl']
[u'maroney', u'make', u'swim']
[u'medicar', u'offic', u'busier', u'bulk', u'bill', u'dip']
[u'mirnyi', u'slay', u'feder', u'reach', u'rotterdam', u'final']
[u'missil', u'issu', u'resolv', u'pressur']
[u'monster', u'surf', u'sweep', u'woman', u'death']
[u'magic', u'martina']
[u'natasha', u'spat', u'wont', u'destroy', u'dem']
[u'nataus']
[u'newton', u'predict', u'armageddon', u'report']
[u'resolut', u'hussein', u'day', u'downer']
[u'kill', u'violenc', u'outsid', u'karachi', u'mosqu']
[u'green', u'parti', u'hand']
[u'receiv', u'cwealth', u'literaci', u'grant']
[u'odriscol', u'captur', u'record', u'ireland', u'down', u'itali']
[u'water', u'okay']
[u'opec', u'pledg', u'flow', u'despit']
[u'patterson', u'say', u'state', u'offer']
[u'pearson', u'say', u'bureaucraci', u'fail', u'indigen', u'welfar']
[u'perth', u'tiger', u'giant', u'notch', u'win']
[u'pilot', u'die', u'ultralight', u'plung']
[u'polanski', u'get', u'best', u'director', u'cesar', u'pianist']
[u'polic', u'arrest', u'pair', u'attack', u'brick', u'bottl']
[u'polic', u'search', u'shoot']
[u'pope', u'urg', u'blair', u'avert']
[u'crash', u'defeat', u'despit', u'ronaldinho']
[u'rain', u'need', u'central', u'west']
[u'raymond', u'defend', u'memphi', u'titl']
[u'research', u'turn', u'spotlight', u'bing', u'drink']
[u'roddick', u'want', u'dent', u'crown']
[u'african', u'weapon', u'inspector', u'iraq']
[u'polic', u'investig', u'fatal', u'road', u'crash']
[u'searcher', u'retriev', u'ultralight', u'pilot', u'bodi']
[u'search', u'intensifi', u'miss', u'pilot']
[u'search', u'begin', u'miss', u'pilot']
[u'busi', u'flash', u'flood', u'north', u'west']
[u'shark', u'steal', u'glori', u'perth']
[u'sherpa', u'plan', u'world', u'highest', u'cyber', u'cafe', u'oxygen']
[u'storm', u'whip', u'coast', u'northern', u'flood', u'steadi']
[u'striker', u'rout', u'kingz']
[u'striker', u'rout', u'kingz', u'unit', u'knight']
[u'tail', u'rescu', u'struggl']
[u'tamworth', u'flood', u'cost', u'million']
[u'teacher', u'student', u'guidelin', u'need', u'modifi']
[u'teenag', u'die', u'transplant']
[u'tendulkar', u'blaze', u'centuri', u'total']
[u'territori', u'search', u'comedi', u'talent']
[u'time', u'lucki', u'canberra', u'uni', u'brisban', u'campus']
[u'tight', u'secur', u'greet', u'cricket', u'zimbabw']
[u'tourist', u'foul', u'spill', u'milk']
[u'tropfest', u'turn', u'tarpfest']
[u'turkey', u'signal', u'ahead', u'troop']
[u'tyson', u'destroy', u'etienn', u'minut']
[u'vote', u'iraq', u'soon', u'march', u'powel']
[u'spain', u'draft', u'second', u'resolut']
[u'resolut']
[u'warn', u'appeal', u'delay', u'name', u'replac']
[u'warn', u'pollock']
[u'warn', u'water', u'contamin', u'recent', u'rain']
[u'struggl', u'final']
[u'waugh', u'expect', u'play', u'final']
[u'waugh', u'lead', u'blue', u'titl']
[u'weapon', u'expert', u'denounc', u'intellig', u'iraq']
[u'yemen', u'chopper', u'crash', u'kill', u'troop']
[u'dead', u'china', u'earthquak']
[u'academ', u'consid', u'indigen', u'cultur', u'role']
[u'adelaid', u'charg', u'firearm', u'offenc']
[u'ajax', u'lose', u'grind', u'utrecht', u'defeat']
[u'ord', u'jump', u'point', u'higher']
[u'choos', u'charlestown', u'candid']
[u'amino', u'level', u'link', u'malaria', u'treatment', u'research']
[u'anti', u'french', u'joke', u'censor', u'broadcast', u'complain']
[u'welcom', u'court', u'rule', u'chairman']
[u'kill', u'faction', u'afghan', u'fight']
[u'defend', u'grain', u'freight', u'spot', u'price', u'tender']
[u'beef', u'price', u'rise']
[u'billiton', u'reveal', u'profit', u'downturn']
[u'bloke', u'peel', u'pant', u'peac']
[u'bomb', u'alert', u'delay', u'domest', u'flight', u'philippin']
[u'boulami', u'ban', u'iaaf', u'sourc']
[u'drown', u'sweep', u'storm']
[u'bradman', u'baggi', u'green', u'tour']
[u'britain', u'concern', u'report', u'iraqi', u'missil']
[u'build', u'industri', u'shake']
[u'cabinet', u'meet', u'balanc', u'budget', u'prioriti']
[u'canberra', u'step', u'tourist', u'campaign']
[u'carr', u'consid', u'clarenc', u'battl']
[u'celtic', u'trophi']
[u'chavez', u'blast', u'media', u'violenc', u'continu']
[u'civilian', u'kill', u'gunmen', u'attack', u'minibus', u'east']
[u'claim', u'diamond', u'miner', u'murder', u'congo']
[u'claim', u'evid', u'unsolv', u'doubl', u'murder']
[u'clean', u'coal', u'technolog', u'year', u'away']
[u'coastal', u'graze', u'boom', u'lift', u'properti', u'price']
[u'combin', u'approach', u'tackl', u'grasshopp']
[u'committe', u'offer', u'age', u'care', u'warn']
[u'communiti', u'bank', u'share', u'trade', u'show', u'littl', u'chang']
[u'communiti', u'clean', u'drench']
[u'communiti', u'flock', u'wast', u'transfer', u'station']
[u'confer', u'focus', u'tuna', u'fisheri']
[u'council', u'host', u'farewel']
[u'council', u'resist', u'roster', u'pressur']
[u'custom', u'hous', u'restor', u'open']
[u'water', u'level', u'critic']
[u'death', u'toll', u'hit', u'bangladesh', u'local']
[u'dent', u'roll', u'roddick', u'jude', u'titl']
[u'deploy', u'troop', u'iraq', u'cost']
[u'doubl', u'murder', u'case', u'reopen']
[u'downer', u'say', u'help', u'post', u'iraq']
[u'downpour', u'bring', u'flash', u'flood']
[u'driver', u'urg', u'care', u'road']
[u'driver', u'urg', u'watch', u'wander', u'stock']
[u'driver', u'warn', u'slow']
[u'drought', u'assist', u'continu', u'farmer', u'carr']
[u'drought', u'bushfir', u'blame', u'tourism', u'slump']
[u'earthquak', u'death', u'toll', u'rise', u'china']
[u'earthquak', u'death', u'toll', u'rise']
[u'earthquak', u'kill', u'china']
[u'earthquak', u'kill', u'injur', u'thousand']
[u'earthquak', u'rock', u'china', u'dead']
[u'earthquak', u'shake', u'north', u'west', u'china']
[u'tour', u'guid', u'train', u'north']
[u'ecstasi', u'abus', u'singapor', u'drop', u'sharpli']
[u'egyptian', u'parliament', u'extend', u'emerg', u'law']
[u'electr', u'restor', u'major', u'suburb']
[u'gerrouj', u'fail', u'crack', u'gebrselassi', u'mark']
[u'emerg', u'crew', u'repair', u'flood', u'damag', u'home']
[u'england', u'send', u'vaughan', u'scan']
[u'enrag', u'vajpaye', u'tear', u'script', u'lash']
[u'fan', u'cash', u'save', u'york']
[u'farmer', u'hope', u'rain']
[u'farmer', u'slow', u'regist', u'dam']
[u'firefight', u'continu', u'contain', u'chemic', u'spill']
[u'firefight', u'struggl', u'contain', u'bushfir']
[u'threat', u'eas', u'gippsland', u'high', u'countri']
[u'figur', u'price', u'australia', u'oldest', u'bottl']
[u'flood', u'leav', u'motorist', u'strand']
[u'follow', u'rain', u'need', u'drought', u'break']
[u'forecast', u'call', u'drought']
[u'schoolteach', u'guilti', u'promot']
[u'forum', u'offer', u'council', u'candid']
[u'dead', u'ferri', u'sink']
[u'fourth', u'race', u'postpon']
[u'franc', u'continu', u'opposit', u'resolut']
[u'franc', u'remain', u'oppos', u'resolut']
[u'franc', u'sink', u'scotland']
[u'fund', u'approv', u'crookwel', u'canberra', u'link']
[u'fund', u'improv', u'crookwel', u'canberra', u'road']
[u'futur', u'matern', u'servic', u'hang', u'balanc']
[u'gaggl', u'gees', u'home']
[u'coast', u'keep', u'busi', u'heavi', u'rainfal']
[u'girl', u'succumb', u'road', u'crash', u'injuri']
[u'good', u'rain', u'fall', u'illawarra']
[u'govt', u'deni', u'forget', u'domest', u'issu']
[u'govt', u'promis', u'build', u'industri', u'report']
[u'hampshir', u'talk', u'wasim', u'replac', u'ban']
[u'hard', u'time', u'mine', u'attract']
[u'har', u'race', u'scratch', u'agricultur', u'show']
[u'hauritz', u'replac', u'warn', u'world', u'squad']
[u'hazelton', u'plan', u'orang', u'reunion']
[u'heat', u'meet', u'expect', u'poni']
[u'histor', u'home', u'futur', u'doubt']
[u'hobart', u'women', u'health', u'centr', u'reloc']
[u'hope', u'road', u'reopen', u'today']
[u'hospit', u'clear', u'ampute', u'compo', u'case']
[u'houllier', u'play', u'monaco']
[u'household', u'clean', u'water', u'assur']
[u'hous', u'pose', u'teacher', u'retent', u'problem']
[u'form', u'waugh', u'encourag', u'play']
[u'inspector', u'iran', u'uranium', u'enrich']
[u'iraq', u'commit', u'impact', u'health', u'budget', u'say']
[u'prospect', u'look', u'better']
[u'kidman', u'pick', u'best', u'actress', u'oscar']
[u'kidman', u'score', u'bafta']
[u'klim', u'miss', u'world', u'championship']
[u'land', u'valuat', u'releas']
[u'firi', u'return']
[u'lawyer', u'concern', u'guantanamo', u'suicid', u'attempt']
[u'lead', u'music', u'ident', u'die']
[u'liverpool', u'crash', u'citi', u'sinclair', u'lift', u'west']
[u'face', u'committ', u'hear', u'arson', u'charg']
[u'face', u'court', u'peopl', u'smuggl', u'charg']
[u'face', u'court', u'attempt', u'murder', u'charg']
[u'shrug', u'gigg', u'transfer', u'talk']
[u'marin', u'emerg', u'beacon', u'polic']
[u'marin', u'research', u'team', u'hunt', u'cancer', u'cure']
[u'marron', u'fin', u'season']
[u'mayor', u'think', u'criteria', u'restrict']
[u'mayor', u'want', u'park', u'plan', u'delay']
[u'methanex', u'aust', u'consid', u'worker', u'hous']
[u'mirnyi', u'captur', u'career', u'titl']
[u'rain', u'central']
[u'rain']
[u'moya', u'down', u'coria', u'claim', u'bueno', u'air', u'open']
[u'murder', u'hear', u'begin', u'bunburi', u'court']
[u'murrayland', u'export', u'brand']
[u'nake', u'rain', u'danc', u'ahead', u'weather']
[u'autopsi', u'polici', u'introduc']
[u'book', u'explor', u'aborigin', u'cultur']
[u'newcom', u'norah', u'jone', u'show', u'springsteen', u'whos', u'boss']
[u'law', u'propos', u'territori', u'rental', u'market']
[u'locum', u'servic', u'boost', u'wheatbelt', u'health']
[u'public', u'truste', u'appoint']
[u'align', u'leader', u'iraq']
[u'norah', u'jone', u'dont', u'know', u'win', u'song', u'year']
[u'north', u'land', u'valuat', u'releas']
[u'govt', u'promis', u'polic', u'unit']
[u'nation', u'preselect', u'resolv']
[u'onetel', u'chairman', u'respons', u'court', u'tell']
[u'oversea', u'athlet', u'domin', u'coff', u'harbour', u'triathlon']
[u'oversea', u'athlet', u'prove', u'good', u'coff', u'triathlon']
[u'pacif', u'head', u'accus', u'west', u'misus', u'intellig']
[u'perth', u'forc', u'school', u'evacu']
[u'plane', u'carri', u'afghan', u'minist', u'miss']
[u'polic', u'concern', u'acid', u'theft']
[u'polic', u'confid', u'hunter', u'return', u'today']
[u'polic', u'continu', u'probe', u'suspici', u'death']
[u'polic', u'ethic', u'unit', u'overse', u'fatal', u'crash', u'probe']
[u'polic', u'investig', u'alleg', u'cross']
[u'polic', u'reopen', u'doubl', u'murder', u'case']
[u'polic', u'rail', u'victim']
[u'polic', u'offic', u'hospit', u'alleg', u'fight']
[u'polic', u'recov', u'pilot', u'bodi']
[u'polic', u'speak', u'clearanc', u'rat']
[u'polic', u'investig', u'suspici', u'hors', u'shoot']
[u'pope', u'urg', u'cathol', u'fast', u'peac']
[u'legend', u'paul', u'mccartney', u'sing', u'privat']
[u'port', u'author', u'chief', u'push', u'jetti', u'boost']
[u'pound', u'describ', u'warn', u'anti', u'dope', u'hysteria']
[u'powel', u'begin', u'talk', u'china']
[u'powel', u'say', u'iraq', u'disarm']
[u'prawn', u'trawl', u'impact', u'spotlight']
[u'probe', u'launch', u'boat', u'tragedi']
[u'protest', u'meet', u'call', u'race', u'fund', u'boost']
[u'public', u'input', u'seek', u'fall', u'upgrad', u'plan']
[u'publish', u'axel', u'springer', u'black']
[u'opposit', u'air', u'river', u'flow', u'concern']
[u'queensland', u'teacher', u'industri']
[u'racism', u'increas']
[u'radcliff', u'open', u'season', u'record']
[u'rain', u'boost', u'water', u'storag']
[u'rain', u'bring', u'minor', u'flood']
[u'rain', u'doesnt', u'help', u'water', u'storag']
[u'rain', u'fall', u'hunter']
[u'rain', u'come', u'late', u'milk', u'produc']
[u'rain', u'expect', u'affect', u'vintag']
[u'rain', u'offer', u'firefight', u'differ', u'tack']
[u'rain', u'offer', u'respit', u'communiti']
[u'rain', u'prayer', u'answer']
[u'rain', u'top', u'reservoir']
[u'ranger', u'defend', u'amoruso', u'spit']
[u'ranger', u'park', u'croc']
[u'razorback', u'stay', u'aliv', u'king']
[u'real', u'sociedad', u'stay']
[u'reed', u'boat', u'captain', u'hop', u'avoid', u'sink', u'feel']
[u'region', u'aviat', u'issu', u'cwealth', u'spotlight']
[u'region', u'go', u'drought', u'flood']
[u'research', u'look', u'engag', u'student', u'scienc']
[u'riverland', u'event', u'clash']
[u'road', u'reopen', u'today']
[u'rockhampton', u'miss']
[u'safeti', u'author', u'okay', u'qantass', u'contract']
[u'govt', u'hop', u'seiz', u'profit', u'crime']
[u'school', u'ban', u'mobil', u'phone']
[u'secur', u'tight', u'ahead', u'australia', u'zimbabw', u'match']
[u'seedorf', u'take', u'swipe', u'italian', u'media']
[u'work', u'retain', u'wall']
[u'seven', u'kill', u'avalanch', u'tajikistan']
[u'sharon', u'sign', u'settler', u'parti']
[u'shire', u'focus', u'tourism', u'attract']
[u'simoni', u'prepar', u'giro']
[u'korea', u'arrest', u'subway', u'offici', u'disast']
[u'korea', u'arrest', u'subway', u'worker', u'disast']
[u'korean', u'presid', u'make', u'outgo', u'speech']
[u'spanish', u'protest', u'prestig', u'disast']
[u'state', u'water', u'flash', u'flood']
[u'submiss', u'flow', u'region', u'tourism']
[u'region', u'plan', u'riverina', u'tourism']
[u'sudan', u'allow', u'uganda', u'troop', u'pursu', u'rebel']
[u'sudanes', u'muslim', u'teacher', u'deport', u'fiji']
[u'survey', u'highlight', u'extend', u'trade', u'hour', u'support']
[u'health', u'author', u'join', u'autopsi', u'campaign']
[u'thailand', u'drug', u'blitz', u'claim', u'year', u'victim']
[u'humbl', u'british', u'threat']
[u'thorp', u'taper', u'ahead', u'nation', u'record']
[u'goal', u'minut', u'inter']
[u'juvenil', u'charg', u'upgrad', u'post']
[u'tourist', u'drown', u'reef']
[u'town', u'green', u'draft', u'plan', u'display']
[u'trucker', u'guilti', u'caus', u'driver', u'death']
[u'tyson', u'rush', u'lewi', u'rematch']
[u'union', u'join', u'highway', u'revamp', u'push']
[u'vaughan', u'doubt', u'india', u'game']
[u'vermeulen', u'readi', u'race']
[u'govt', u'launch', u'firebreak', u'probe']
[u'polic', u'investig', u'fatal', u'stab']
[u'polic', u'killer', u'sentenc', u'life', u'jail']
[u'warn', u'appeal']
[u'warn', u'drug', u'cheat', u'boss']
[u'benefit', u'miner', u'boom']
[u'water', u'safeti', u'skill', u'workshop', u'hold', u'school']
[u'weapon', u'inspector', u'find', u'respect', u'mbeki']
[u'weather', u'condit', u'spell', u'problem', u'dri']
[u'rock', u'pakistan', u'coach']
[u'weir', u'edg', u'howel', u'play']
[u'wheat', u'board', u'confid', u'futur', u'iraq', u'trade']
[u'wigan', u'blast', u'coach', u'castleford', u'loss']
[u'wild', u'weather', u'doesnt', u'deter', u'anti', u'protest']
[u'put', u'eckstein', u'ironman', u'tabl']
[u'woman', u'die', u'crash']
[u'woolworth', u'increas', u'half', u'year', u'profit']
[u'world', u'mass', u'trial', u'aid', u'vaccin', u'disappoint']
[u'zimbabw', u'hop', u'caus', u'upset']
[u'churchman', u'take', u'aussi']
[u'million', u'sack']
[u'aid', u'organis', u'disappoint', u'vaccin', u'result']
[u'staff', u'walk']
[u'akram', u'ask', u'replac', u'warn', u'hampshir']
[u'ambo', u'meet', u'hospit', u'crew', u'concern']
[u'chairman', u'retir', u'earli']
[u'annan', u'push', u'peac', u'cyprus']
[u'atsic', u'leader', u'face', u'court', u'brawl']
[u'atsic', u'improv', u'substandard', u'hous']
[u'aussi', u'dollar', u'hold', u'gain']
[u'aussi', u'women', u'ash']
[u'australian', u'dollar', u'reach', u'year', u'high']
[u'aust', u'help', u'lobbi', u'secur', u'council', u'downer']
[u'belgium', u'hop', u'race', u'year']
[u'bevan', u'like', u'namibia']
[u'blast', u'rock', u'univers', u'cafeteria', u'china']
[u'blast', u'rock', u'beij', u'univers']
[u'boat', u'owner', u'warn', u'rough', u'sea']
[u'bombay', u'longer', u'tax', u'stone']
[u'bomb', u'blast', u'hit', u'southern', u'afghan', u'offici', u'hous']
[u'bomb', u'scare', u'spark', u'evacu']
[u'sweep', u'drain', u'recov', u'hospit']
[u'brack', u'promis', u'relief']
[u'busi', u'confid', u'bottom']
[u'busi', u'look', u'closer', u'adelaid', u'link']
[u'legisl', u'customari', u'updat']
[u'candid', u'forum', u'highlight', u'communic']
[u'canegrow', u'welcom', u'rain']
[u'cash', u'assist', u'offer', u'flood', u'victim']
[u'celtic', u'bring', u'rest', u'star', u'uefa', u'clash']
[u'central', u'land', u'valu', u'rise']
[u'chemic', u'spill', u'close', u'hume', u'highway']
[u'china', u'dismiss', u'latest', u'draft', u'resolut', u'iraq']
[u'coast', u'begin', u'delug']
[u'collin', u'class', u'sub', u'return', u'duti']
[u'columbian', u'guerrilla', u'seiz', u'american', u'pow']
[u'concern', u'grow', u'miss', u'pilot']
[u'condamin', u'river', u'flow']
[u'cotton', u'week', u'coincid', u'worst', u'season']
[u'council', u'hop', u'water', u'effort', u'flush', u'success']
[u'councillor', u'compo']
[u'council', u'offer', u'land', u'valuat', u'rate', u'rise', u'assur']
[u'council', u'audit', u'water']
[u'council', u'merg', u'job']
[u'council', u'work', u'plan', u'dept', u'harboursid']
[u'council', u'wont', u'fund', u'servic']
[u'court', u'hear', u'evid', u'arson', u'committ']
[u'court', u'hear', u'challeng', u'racial', u'discrimin']
[u'court', u'tell', u'capsicum', u'spray', u'aborigin', u'leader']
[u'crean', u'say', u'match', u'determin']
[u'crean', u'say', u'malaysia', u'comment', u'inflammatori']
[u'death', u'toll', u'china', u'quak', u'rise']
[u'defenc', u'forc', u'job', u'hold', u'union']
[u'defenc', u'upgrad', u'jeopardis', u'terror', u'navi']
[u'depress', u'teenag', u'go', u'miss', u'gambier']
[u'villier', u'refus', u'polic', u'drug', u'test']
[u'disput', u'continu', u'histor', u'home', u'futur']
[u'downer', u'condemn', u'north', u'korea', u'missil', u'launch']
[u'drought', u'assist', u'expand']
[u'drown', u'fishermen', u'name']
[u'drug', u'kill', u'seven', u'million', u'year', u'studi']
[u'dump', u'candid', u'criticis', u'labor', u'parti']
[u'east', u'timor', u'seek', u'help', u'wiranto']
[u'england', u'thorp', u'want', u'play']
[u'ethiopia', u'bekel', u'eye', u'world', u'doubl']
[u'farmer', u'confer', u'discuss', u'trade']
[u'farmer', u'seek', u'fund', u'veget', u'plan']
[u'farmer', u'welcom', u'rain', u'relief']
[u'fear', u'air', u'sugar', u'job']
[u'ferguson', u'blast', u'obeid', u'faction', u'fight']
[u'servic', u'urg', u'caution', u'resid']
[u'court', u'beckham', u'kidnap', u'plot']
[u'flood', u'close', u'school', u'road']
[u'ambassador', u'urg', u'speak', u'north', u'korea']
[u'polic', u'offic', u'testifi', u'royal']
[u'forum', u'call', u'water', u'murray']
[u'soldier', u'kill', u'helicopt', u'crash']
[u'freeman', u'cours', u'melbourn', u'meet']
[u'ganguli', u'wari', u'england', u'threat']
[u'gold', u'coast', u'continu', u'fight', u'life']
[u'gollan', u'hit', u'height']
[u'govt', u'give', u'ahead', u'brisban', u'cruis', u'ship']
[u'govt', u'push', u'rise', u'childcar', u'worker']
[u'govt', u'tight', u'lip', u'univers', u'reform']
[u'greec', u'deni', u'game', u'prepar', u'schedul']
[u'green', u'candid', u'want', u'forest', u'commit']
[u'green', u'oppos', u'west', u'coast', u'wind', u'farm']
[u'group', u'consid', u'tick', u'clearanc', u'chemic']
[u'hawk', u'hang', u'fourth', u'place']
[u'heartbreak', u'rocker', u'howi', u'epstein', u'die', u'age']
[u'hemsley', u'claim', u'stage', u'gollan', u'lead']
[u'highway', u'open', u'flash', u'flood']
[u'hodgson', u'favourit', u'superbik', u'stutter']
[u'hope', u'rain', u'boost', u'water', u'storag']
[u'hospit', u'budget', u'microscop']
[u'hous', u'valuat', u'review']
[u'howard', u'prais', u'resolut', u'iraq']
[u'hurst', u'consid', u'closest', u'rival']
[u'bangladesh', u'play', u'test', u'kenya', u'coach']
[u'injuri', u'jinx', u'hit', u'ireland', u'championship', u'hop']
[u'insur', u'woe', u'shear', u'tradit']
[u'investig', u'sydney', u'rail', u'incid']
[u'iraq', u'invit', u'deleg', u'confirm', u'cooper']
[u'irrig', u'highlight', u'need', u'stop', u'blame', u'game']
[u'isra', u'armi', u'free', u'reuter', u'cameraman']
[u'jerusalem', u'snowfal']
[u'joey', u'oppon', u'unknown']
[u'joey', u'oceania', u'play']
[u'juve', u'coach', u'lippi', u'wari', u'troubl']
[u'keller', u'agre', u'year', u'spur', u'extens']
[u'kenyan', u'author', u'seiz', u'ivori', u'tusk', u'arrest']
[u'kewel', u'rush', u'prolong', u'stay', u'leed']
[u'kiwi', u'delay', u'brawl', u'report']
[u'krige', u'quit', u'south', u'africa', u'world']
[u'lawyer', u'surpris', u'corrupt', u'alleg']
[u'lihir', u'announc', u'declin', u'year', u'profit']
[u'long', u'miss', u'season', u'start']
[u'sugar', u'price', u'lead', u'lower', u'land', u'valuat']
[u'mackay', u'get', u'forens', u'offic']
[u'magnesium', u'smelter']
[u'die', u'crash']
[u'fin', u'drug', u'steal', u'good', u'charg']
[u'face', u'court', u'polic', u'assault', u'charg']
[u'mening', u'trial', u'focus', u'infant', u'respons']
[u'michael', u'jackson', u'sue', u'documentari', u'maker']
[u'ministri', u'construct', u'poor', u'build']
[u'miss', u'pilot', u'safe']
[u'miss', u'tourist', u'safe']
[u'rain', u'forecast', u'mackay']
[u'rain', u'need', u'drought']
[u'face', u'trail', u'vietnam']
[u'mugab', u'criticis', u'british', u'brother']
[u'natur', u'disast', u'area', u'declar']
[u'natur', u'disast', u'area', u'declar', u'downpour']
[u'hour', u'medic', u'servic', u'open']
[u'power', u'corrupt', u'watchdog']
[u'surveil', u'equip', u'monitor', u'shorelin']
[u'york', u'give', u'special', u'treatment', u'royalti']
[u'korea', u'fire', u'missil', u'japan']
[u'korea', u'launch', u'missil', u'wednesday']
[u'warn', u'worri', u'confid', u'aussi']
[u'govt', u'make', u'bulli', u'pass', u'pledg']
[u'nurs', u'home', u'disput', u'closer', u'resolut']
[u'say', u'peac', u'monitor', u'leav']
[u'octopus', u'learn', u'open', u'shrimp', u'jar']
[u'olonga', u'omiss', u'polit', u'streak']
[u'olymp', u'champion', u'schumann', u'world', u'indoor']
[u'onlin', u'poll', u'school', u'hour', u'launch']
[u'opera', u'mourn', u'death', u'bariton', u'singer']
[u'blame', u'popul', u'drop', u'public', u'servic', u'cull']
[u'pilot', u'explain', u'emerg', u'land']
[u'back', u'resolut', u'iraq']
[u'elect', u'allow', u'disput', u'solv']
[u'face', u'misconduct', u'charg']
[u'pngs', u'instal', u'opposit', u'leader']
[u'polic', u'associ', u'speak', u'safeti', u'issu']
[u'polic', u'issu', u'break', u'warn']
[u'polic', u'motorcycl', u'victim']
[u'polic', u'raid', u'find', u'cannabi', u'plant']
[u'polic', u'road', u'victim']
[u'poni', u'support', u'promis', u'fight']
[u'star', u'bad', u'draw', u'bomb', u'busker']
[u'powel', u'downplay', u'north', u'korea', u'missil', u'fire']
[u'select', u'fight', u'parramatta']
[u'probe', u'clear', u'council', u'general', u'manag']
[u'public', u'better', u'tast', u'water']
[u'qanta', u'boss', u'want', u'rein', u'cost']
[u'qanta', u'cabin', u'crew', u'threaten', u'industri', u'action']
[u'qanta', u'staff', u'return', u'work']
[u'govt', u'review', u'cruis', u'termin', u'plan']
[u'question', u'land', u'deal']
[u'quoll', u'move', u'cane', u'toad', u'threat']
[u'radcliff', u'contempl', u'marathon']
[u'rain', u'boost', u'tibooburra', u'water', u'sourc']
[u'rain', u'continu', u'fall', u'wide']
[u'rain', u'damag', u'wine', u'grape']
[u'rain', u'end', u'kosciuszko', u'drama']
[u'rainforest', u'provid', u'effect', u'cancer', u'treatment']
[u'rain', u'offer', u'respit', u'need']
[u'rain', u'spark', u'water', u'restrict', u'eas']
[u'rain', u'top', u'region', u'water', u'suppli']
[u'rare', u'drug', u'seiz', u'raid']
[u'real', u'estat', u'institut', u'air', u'land', u'valuat', u'concern']
[u'recycl', u'save', u'million', u'dollar']
[u'reiq', u'welcom', u'coast', u'land', u'valuat']
[u'restaur', u'save', u'demolit']
[u'revamp', u'virus', u'spread', u'globe']
[u'clip', u'wing', u'coff', u'servic']
[u'rise', u'river', u'isol', u'resid']
[u'swear', u'south', u'korean', u'presid']
[u'royal', u'commiss', u'tell', u'polic', u'train', u'corrupt']
[u'rubin', u'roll', u'return']
[u'rudd', u'call', u'downer', u'travel', u'north', u'korea']
[u'rule', u'plant', u'crop', u'strengthen']
[u'forum', u'discuss', u'murray', u'river', u'issu']
[u'saint', u'keen', u'warn', u'lend', u'hand']
[u'saleyard', u'see', u'record', u'price', u'stock']
[u'establish', u'anti', u'theft', u'law']
[u'schoolgirl', u'mother', u'unhappi', u'coron', u'find']
[u'secur', u'council', u'end', u'privat', u'debat', u'iraq']
[u'settlement', u'reach', u'whyalla', u'airlin', u'disput']
[u'seven', u'injur', u'explos', u'beij']
[u'share', u'market', u'plung', u'global', u'uncertainti']
[u'shire', u'complain', u'western', u'power', u'servic']
[u'shire', u'associ', u'confer', u'begin']
[u'snowtown', u'murder', u'trial', u'reveal', u'chill']
[u'southcorp', u'profit']
[u'south', u'korea', u'undet', u'missil', u'launch']
[u'spur', u'fulham', u'share', u'point']
[u'kilda', u'readi', u'welcom', u'warn']
[u'strength', u'dollar', u'surpris', u'market']
[u'student', u'parliamentari', u'educ']
[u'surviv', u'motiv', u'north', u'korean', u'regim', u'downer']
[u'swain', u'miss', u'rooster', u'clash']
[u'sydney', u'water', u'storag', u'level', u'despit', u'rain']
[u'tangara', u'train', u'take', u'track', u'safeti']
[u'tap', u'reveal', u'alleg', u'milit', u'campaign', u'bush']
[u'tasmanian', u'induct', u'photographi', u'hall', u'fame']
[u'tasmania', u'busi', u'buoyant', u'nation']
[u'offic', u'offer', u'extens', u'drought']
[u'tendulkar', u'drive', u'kill', u'say']
[u'threat', u'spark', u'america', u'warn']
[u'toad', u'menac', u'threaten', u'quoll']
[u'seed', u'nieminen', u'copenhagen']
[u'torino', u'sack', u'coach', u'day', u'crowd', u'troubl']
[u'tree', u'farm', u'concern', u'air']
[u'trial', u'aim', u'help', u'indigen', u'youth']
[u'trial', u'hear', u'discuss']
[u'trucki', u'dead', u'horror', u'smash']
[u'truck', u'fatal', u'crash', u'carri', u'regist', u'post']
[u'trucki', u'kill', u'horror', u'smash']
[u'union', u'health', u'meet', u'hospit', u'reform']
[u'union', u'includ', u'matern', u'leav', u'agreement']
[u'peacekeep', u'forc', u'line', u'border', u'near', u'west', u'timor']
[u'outliv', u'iraq', u'crisi', u'diplomat']
[u'carrier', u'arriv', u'gulf']
[u'saddam', u'time']
[u'vice', u'presid', u'rail', u'work', u'hand']
[u'vaughan', u'give', u'clear']
[u'lib', u'face', u'parliament', u'poll', u'disast']
[u'wagga', u'wagga', u'teen', u'pregnanc', u'rate', u'need', u'attent']
[u'opposit', u'appoint', u'agricultur', u'spokesman']
[u'warn', u'admit', u'second', u'offenc']
[u'warn', u'count', u'cost']
[u'warn', u'seek', u'advic', u'appeal']
[u'western', u'countri', u'remain', u'divid', u'iraq']
[u'wilkinson', u'tell', u'step', u'fight']
[u'wiranto', u'charg', u'crime', u'human']
[u'woman', u'charg', u'possess', u'rare', u'drug']
[u'youhana', u'lift', u'pakistan']
[u'defend', u'popul', u'shrink', u'claim']
[u'report', u'slam', u'warn', u'vagu', u'unsatisfactori']
[u'accc', u'ask', u'court', u'seiz', u'conman', u'foster', u'passport']
[u'accid', u'victim', u'name']
[u'milan', u'eas']
[u'examin', u'warn', u'anti', u'dope', u'find']
[u'akram', u'claim', u'pakistan', u'down', u'dutch']
[u'alston', u'seiz', u'glow', u'telstra', u'report']
[u'ambo', u'crew', u'commit']
[u'conced', u'overambiti']
[u'confirm', u'loss']
[u'lose', u'investor', u'confid']
[u'aquacultur', u'council', u'speak', u'kingfish', u'claim']
[u'armi', u'small', u'meet', u'demand']
[u'art', u'boost', u'spin', u'off']
[u'asic', u'charg', u'wine', u'giant', u'bottl', u'forecast']
[u'asic', u'urg', u'caution', u'insur', u'polici']
[u'achiev', u'profit', u'increas', u'month']
[u'tell', u'inform', u'withhold']
[u'atsic', u'chief', u'hinder', u'polic', u'brawl', u'court']
[u'atsic', u'deputi', u'ruddock', u'clash', u'clark', u'court', u'cost']
[u'aussi', u'dollar', u'hit', u'high']
[u'sport', u'award', u'finalist', u'announc']
[u'aust', u'airlin', u'look', u'asian', u'market']
[u'australia', u'mark', u'year', u'diplomaci', u'vietnam']
[u'australia', u'target', u'england', u'india']
[u'beatti', u'hit', u'obscen', u'corpor', u'payout']
[u'beatti', u'vow', u'walk', u'away', u'schooli']
[u'billiton', u'nativ', u'titl', u'effort', u'recognis']
[u'black', u'instal', u'hold', u'sculli', u'insist']
[u'black', u'stick', u'brink', u'rain', u'wash']
[u'blake', u'proclaim', u'innoc', u'wife', u'murder']
[u'board', u'defend', u'pest', u'control', u'rate', u'rise']
[u'botero', u'score', u'trick', u'bolivar', u'hammer', u'penarol']
[u'hospit', u'drain', u'ordeal']
[u'brazil', u'star', u'admit', u'world', u'fluke']
[u'bryant', u'score', u'streak', u'laker', u'streak']
[u'bundaberg', u'chang']
[u'bush', u'unimpress', u'iraqi', u'weapon', u'disclosur']
[u'bush', u'will', u'assassin', u'saddam', u'report']
[u'busi', u'usual', u'threat', u'boss']
[u'butler', u'predict', u'immin', u'action', u'iraq']
[u'campus', u'park', u'caus', u'headach']
[u'canberra', u'rebuild', u'bushfir']
[u'cane', u'farmer', u'deregul', u'concern']
[u'carr', u'announc', u'person', u'terror', u'unit']
[u'wash', u'river', u'driver', u'miss']
[u'cautious', u'welcom', u'crop', u'plan']
[u'china', u'deni', u'provid', u'north', u'korea', u'missil']
[u'china', u'quak', u'aftershock', u'death', u'toll']
[u'claim', u'rise', u'fuel', u'cost', u'lead', u'higher', u'freight']
[u'coalit', u'say', u'union', u'fight', u'delay', u'train', u'black']
[u'cohen', u'latest', u'england', u'injuri', u'worri']
[u'committe', u'consid', u'stock', u'rout', u'manag']
[u'conman', u'foster', u'plan', u'return', u'soon', u'court', u'hear']
[u'consult', u'question', u'valu', u'free', u'trade']
[u'coron', u'damn', u'polic', u'handl', u'fatal', u'domest']
[u'costa', u'accus', u'avoid', u'polic', u'corrupt']
[u'council', u'hop', u'avoid', u'elect', u'cost']
[u'council', u'offer', u'chariti', u'group', u'emerg', u'shelter']
[u'council', u'oppos', u'nuclear', u'wast', u'transport']
[u'council', u'nois', u'neighbourhood', u'issu']
[u'coupl', u'rescu', u'boat', u'run', u'aground']
[u'cowboy', u'look', u'sponsor']
[u'crane', u'hit', u'powerlin', u'driver', u'die', u'massiv', u'shock']
[u'crash', u'claim', u'motorcyclist']
[u'crowd', u'shout', u'immigr', u'offici']
[u'cuthbert', u'statu']
[u'dead', u'whale', u'turn', u'visitor', u'away']
[u'declin', u'male', u'teacher', u'continu']
[u'defenc', u'forc', u'focus', u'fight', u'terror']
[u'defenc', u'review', u'call', u'rebal', u'forc']
[u'democrat', u'urg', u'action', u'smoke', u'ban']
[u'deportivo', u'thank', u'doubl', u'boost']
[u'detaine', u'children', u'attend', u'port', u'augusta', u'school']
[u'canio', u'link', u'scottish', u'return']
[u'dollar', u'hit', u'high']
[u'downer', u'call', u'china', u'mediat', u'north', u'korea', u'crisi']
[u'doyl', u'demand', u'bushfir', u'inquiri']
[u'driver', u'urg', u'care', u'flood', u'area']
[u'dutch', u'captain', u'write', u'england', u'india', u'pakistan']
[u'earli', u'finish', u'predict', u'demolit']
[u'eccleston', u'back', u'mosley', u'rule', u'battl']
[u'environ', u'centr', u'open']
[u'eros', u'chemic', u'threaten', u'reef', u'report']
[u'expert', u'challeng', u'road', u'closur', u'issu']
[u'quarter', u'finalist', u'wolv', u'watford', u'draw']
[u'farmer', u'slow', u'seek', u'drought']
[u'farm', u'accid', u'claim', u'man', u'life']
[u'father', u'daughter']
[u'destroy', u'sign', u'write', u'busi']
[u'firefight', u'continu', u'wilder', u'area', u'effort']
[u'firefight', u'wash', u'away', u'waterbomb']
[u'fisher', u'face', u'court', u'charg']
[u'flood', u'warn', u'issu', u'river']
[u'champion', u'chela', u'beat', u'mexico']
[u'whyalla', u'director', u'prais', u'crash', u'compo']
[u'freeman', u'media', u'launch', u'end', u'shambl']
[u'french', u'galthi', u'withdraw']
[u'fuel', u'price', u'doubl', u'zimbabw']
[u'fund', u'announc', u'barcoo', u'centr']
[u'fyff', u'bendigo', u'mayor']
[u'gigg', u'fire', u'unit']
[u'glori', u'steal', u'yao', u'broadway', u'debut']
[u'golf', u'famili', u'affair', u'nicklaus', u'foursom']
[u'govt', u'condemn', u'claim', u'wont', u'interven']
[u'govt', u'defend', u'rise', u'award', u'earner']
[u'gulf', u'watcher', u'warn', u'aust', u'ship', u'littl', u'defenc']
[u'gunman', u'kill', u'wound']
[u'headmast', u'prais', u'staff', u'rescu', u'effort']
[u'henman', u'encourag', u'despit', u'round', u'defeat']
[u'herbert', u'tip', u'join', u'tiger']
[u'heroin', u'death', u'declin', u'report']
[u'highway', u'clean', u'continu', u'truck', u'crash']
[u'hill', u'satisfi', u'fleet']
[u'hodg', u'chaffey', u'match']
[u'holi', u'film', u'craze', u'itali']
[u'hong', u'kong', u'protest', u'secur']
[u'hospit', u'smoke', u'affect', u'profit', u'studi']
[u'examin', u'kenya', u'shock', u'world']
[u'immigr', u'swoop', u'bag', u'fruitpick']
[u'industri', u'action', u'increas', u'brisban']
[u'inspector', u'probe', u'public', u'pool']
[u'iraqi', u'like', u'east', u'timores', u'need', u'foreign']
[u'islam', u'countri', u'weapon', u'mahathir']
[u'jag', u'boss', u'lambi', u'step']
[u'jail', u'deterr', u'drug', u'user', u'research']
[u'judg', u'assess', u'tidi', u'town', u'entri']
[u'keegan', u'fear', u'citi', u'nearer', u'euro', u'elit']
[u'kefu', u'confirm', u'japan']
[u'kenyan', u'govern', u'suspend', u'soccer', u'feder']
[u'king', u'island', u'resign', u'high', u'fuel', u'price']
[u'kuerten', u'save', u'match', u'point', u'mexico']
[u'labor', u'fear', u'defenc', u'job']
[u'logger', u'protest', u'outsid', u'parliament']
[u'loss', u'sharehold', u'million']
[u'lower', u'winegrap', u'harvest', u'price', u'posit']
[u'mahathir', u'suggest', u'muslim', u'strike', u'stop', u'iraq']
[u'hurt', u'driveway', u'ordeal']
[u'jail', u'stepfath', u'kill']
[u'miss', u'wash', u'victoria', u'river']
[u'polic', u'assault', u'charg', u'remand', u'custodi']
[u'order', u'complet', u'communiti', u'work', u'train']
[u'suffer', u'massiv', u'electr', u'shock', u'hit']
[u'market', u'fight', u'close', u'point', u'higher']
[u'maroochi', u'council', u'consid', u'help', u'cooloola']
[u'marshal', u'abreast', u'parliamentari', u'rule']
[u'marsh', u'back', u'australia']
[u'mari', u'tear', u'offici', u'miracl', u'church', u'rule']
[u'minist', u'announc', u'graze', u'leas', u'rebat', u'extens']
[u'montgomeri', u'compet', u'championship']
[u'time', u'comment', u'region', u'develop']
[u'mosley', u'side', u'minardi', u'cash']
[u'highlight', u'doctor', u'shortag', u'woe']
[u'seek', u'support']
[u'murder', u'trial', u'hear', u'phone', u'tap']
[u'northampton', u'air', u'festiv', u'shift', u'concern']
[u'coalit', u'make', u'hospit', u'promis']
[u'rail', u'spotlight']
[u'polic', u'search', u'sweep', u'bridg']
[u'push', u'higher', u'crave', u'heat']
[u'oppn', u'suggest', u'minist', u'name', u'polic', u'graft']
[u'oscar', u'winner', u'hang', u'ballot']
[u'parliamentari', u'inquiri', u'call', u'bank', u'account']
[u'parliament', u'eject', u'breastfe']
[u'perth', u'ban', u'circus', u'anim', u'act']
[u'pink', u'snapper', u'limit', u'introduc']
[u'plan', u'boundari', u'releas', u'nation', u'park']
[u'polic', u'believ', u'trap', u'wash', u'away', u'vehicl']
[u'polic', u'investig', u'sexual', u'assault', u'perth', u'woman']
[u'polic', u'probe', u'child', u'death']
[u'polic', u'probe', u'shop', u'theft']
[u'polic', u'suspect', u'murder', u'bodi']
[u'polic', u'uproot', u'crop', u'cannabi', u'plant']
[u'pressur', u'water', u'author', u'support']
[u'priest', u'put', u'washer', u'booz', u'cycl']
[u'privat', u'school', u'student']
[u'probe', u'begin', u'industri', u'death']
[u'profit', u'warn', u'brisban', u'hoteli', u'ahead']
[u'program', u'underway', u'fight', u'park', u'weed']
[u'protest', u'halt', u'departur', u'woodchip', u'shipment']
[u'introduc', u'human', u'clone']
[u'tell', u'best', u'behaviour', u'webcast']
[u'race', u'club', u'appeal', u'meet', u'ahead']
[u'race', u'club', u'stun', u'nacion', u'montevideo']
[u'rain', u'help', u'lift', u'water', u'restrict']
[u'rain', u'eas', u'water', u'restrict']
[u'rain', u'offer', u'boost', u'grazier']
[u'rain', u'pour', u'eurobodalla', u'shire']
[u'reject', u'labor', u'candid', u'consid', u'independ']
[u'renew', u'pressur', u'bushfir', u'probe']
[u'report', u'argu', u'australian', u'stake', u'missil', u'defenc']
[u'rescuer', u'head', u'melbourn', u'plane', u'crash', u'site']
[u'reynold', u'sell', u'ambul', u'levi']
[u'riot', u'polic', u'clash', u'squatter', u'argentina']
[u'river', u'forum', u'resolut', u'question']
[u'ruddock', u'seek', u'greater', u'power', u'atsic']
[u'rumsfeld', u'give', u'mix', u'view', u'iraqi', u'firepow']
[u'saddam', u'rule', u'go', u'exil']
[u'saudi', u'agre', u'host', u'plan', u'iraq']
[u'savag', u'look', u'quieter', u'time']
[u'sawmil', u'job', u'threaten', u'recent', u'bushfir']
[u'school', u'convict', u'rapist', u'turn', u'literaci']
[u'schumach', u'roar', u'test']
[u'search', u'continu', u'firefight']
[u'secret', u'break', u'allow', u'terror']
[u'shake', u'agricultur', u'dept', u'job']
[u'channel', u'withdraw', u'pat', u'coverag']
[u'snowtown', u'judg', u'ban', u'juri', u'hear', u'album']
[u'southcorp', u'deni', u'disclosur', u'breach']
[u'storm', u'toll', u'banana', u'crop']
[u'submiss', u'flow', u'chicken', u'farm', u'plan']
[u'sydney', u'inject', u'room', u'needl', u'drug', u'board']
[u'tiger', u'world', u'match', u'play', u'showdown']
[u'seed', u'fall', u'copenhagen', u'open']
[u'torino', u'game', u'home']
[u'tougher', u'water', u'restrict', u'loom']
[u'tour', u'valencia', u'stage', u'lead', u'place']
[u'townsvill', u'coal', u'seam', u'methan']
[u'trainer', u'appeal', u'follow', u'oliv', u'death']
[u'trio', u'charg', u'drug', u'relat', u'offenc']
[u'truck', u'driver', u'campaign', u'road', u'safeti']
[u'truck', u'firm', u'announc', u'profit', u'boost']
[u'media', u'world', u'savag', u'publicist']
[u'parliament', u'debat', u'iraq', u'action']
[u'union', u'air', u'tertiari', u'educ', u'concern']
[u'union', u'face', u'challeng', u'increas', u'casual']
[u'union', u'seek', u'detail']
[u'unit', u'milan', u'advanc', u'quarter']
[u'missil', u'edict', u'iraq', u'make', u'differ']
[u'acknowledg', u'pakistani', u'cooper', u'qaeda']
[u'consum', u'confid', u'lowest', u'year']
[u'resum', u'food', u'north', u'korea']
[u'bomb', u'missil', u'site', u'iraq']
[u'venter', u'ban', u'week']
[u'govt', u'outlin', u'polici', u'direct']
[u'govt', u'urg', u'forest', u'harvest']
[u'victorian', u'silk', u'face', u'court', u'accus', u'contempt']
[u'villeneuv', u'unhappi', u'reliabl']
[u'virgin', u'blue', u'safeti', u'check', u'engin']
[u'wafl', u'waiv', u'docker', u'payment']
[u'wake', u'hospit', u'heart', u'attack']
[u'warn', u'imag', u'suffer', u'gilchrist']
[u'warn', u'take', u'chin']
[u'water', u'park', u'need', u'rain']
[u'weapon', u'inspector', u'need', u'time', u'blix']
[u'resourc', u'announc', u'loss']
[u'woman', u'die', u'meningococc', u'infect']
[u'woman', u'bodi', u'tie', u'stab']
[u'zimbabw', u'flower', u'save', u'player', u'revolt', u'sourc']
[u'million', u'develop', u'plan', u'maroochydor']
[u'speed', u'limit', u'come', u'forc']
[u'abbott', u'defend', u'govt', u'posit', u'award', u'rise']
[u'aborigin', u'advoc', u'pressur', u'polic', u'inquest']
[u'actor', u'continu', u'crusad', u'iraq', u'action']
[u'maker', u'deni', u'junk', u'food', u'commerici', u'caus', u'chunki']
[u'advertis', u'industri', u'criticis', u'junk', u'food']
[u'african', u'aid', u'orphan', u'shun', u'humanitarian']
[u'patrol', u'communic', u'sit', u'iraq']
[u'ajax', u'arsenal', u'cours', u'quarter']
[u'alcohol', u'restrict', u'success', u'polic']
[u'alleg', u'flasher', u'refus', u'bail']
[u'parti', u'clear', u'oasi', u'investig']
[u'ameri', u'wont', u'declar', u'drought', u'natur', u'disast']
[u'armi', u'say', u'sack', u'offic', u'scam']
[u'atsic', u'head', u'order', u'blockad', u'hotel', u'court', u'hear']
[u'aust', u'afford', u'missil', u'defenc', u'crean']
[u'aust', u'govt', u'embarrass', u'guantanamo', u'terri', u'hick']
[u'aust', u'post', u'work', u'resolv', u'mail', u'woe']
[u'australian', u'conting', u'gulf', u'top']
[u'aust', u'transport', u'infrastructur', u'suffer', u'report']
[u'author', u'meet', u'blue', u'green', u'alga']
[u'bali', u'survivor', u'unveil', u'memori']
[u'banana', u'farmer', u'offer', u'disast', u'relief']
[u'bank', u'launch', u'initi', u'combat', u'ident', u'fraud']
[u'ban', u'warn', u'allow', u'train', u'victoria']
[u'steel', u'record', u'half', u'year', u'profit']
[u'black', u'cap', u'crush', u'bangladesh']
[u'black', u'hawk', u'crash', u'colombia', u'dead']
[u'black', u'spot', u'fund', u'improv', u'riverland', u'road']
[u'blair', u'face', u'parti', u'revolt', u'iraq', u'stanc']
[u'bligh', u'interven', u'convict', u'rapist']
[u'remain', u'condit', u'drain', u'ordeal']
[u'bridg', u'delay', u'stop', u'develop', u'council']
[u'brogden', u'promis', u'npws', u'job', u'transfer', u'maitland']
[u'brogden', u'propos', u'school', u'disciplin', u'agreement']
[u'burnley', u'fulham', u'reach', u'quarter']
[u'burrendong', u'rise', u'relic']
[u'butterfli', u'face', u'extinct', u'threat']
[u'butt', u'campaign', u'balanc', u'tourist', u'board']
[u'cairn', u'mccullum', u'fin', u'nightclub', u'incid']
[u'waiv', u'rat', u'canberra', u'resid']
[u'cape', u'associ', u'consid', u'port', u'propos']
[u'ceduna', u'resid', u'turn', u'oppos', u'kingfish', u'farm']
[u'china', u'russia', u'unit', u'peac', u'iraq', u'solut']
[u'chines', u'forc', u'sleep', u'outdoor', u'follow']
[u'civic', u'centr', u'hall', u'eventu']
[u'coke', u'spray', u'wheat', u'crop', u'yield']
[u'confus', u'ask', u'world', u'tap']
[u'coron', u'hand', u'silo', u'death', u'find']
[u'costa', u'critic', u'magistr', u'decis']
[u'council', u'ask', u'rethink', u'elector', u'chang']
[u'council', u'back', u'sister', u'citi', u'plan']
[u'council', u'question', u'alga', u'studi', u'relev']
[u'council', u'support', u'baxter', u'children', u'school']
[u'council', u'waiv', u'rat', u'bushfir', u'victim']
[u'court', u'cut', u'paedophil', u'priest', u'jail', u'term']
[u'crash', u'investig', u'fail', u'establish', u'caus']
[u'crean', u'content', u'ambassador', u'contrit', u'talk']
[u'cricket', u'associ', u'call', u'drug', u'educ']
[u'csiro', u'hail', u'increas', u'rare', u'fish', u'popul']
[u'darl', u'down', u'join', u'lobbi', u'enterpris', u'zone']
[u'develop', u'hold', u'drought', u'condit']
[u'doc', u'work', u'boost', u'dareton', u'servic']
[u'downer', u'disturb', u'north', u'korean', u'nuclear', u'reactiv']
[u'driver', u'jail', u'road', u'rage', u'death', u'unborn', u'babi']
[u'engin', u'train', u'catch']
[u'farmer', u'appeal', u'joos', u'decis']
[u'farmer', u'concern', u'dept', u'cut']
[u'farmer', u'urg', u'complet', u'applic']
[u'fear', u'chines', u'quak', u'toll', u'rise']
[u'govt', u'consid', u'missil', u'defenc', u'hill']
[u'figur', u'highlight', u'water', u'woe']
[u'firefight', u'await', u'cooler', u'weather']
[u'firefight', u'bodi', u'flash', u'flood']
[u'fish', u'boat', u'tow', u'yeppoon']
[u'flash', u'flood', u'bring', u'relief', u'north']
[u'flower', u'pledg', u'continu', u'protest']
[u'fund', u'drought', u'restrict', u'iraqi', u'refuge', u'plan']
[u'german', u'dog', u'licens', u'poop']
[u'goalless', u'draw', u'inter', u'send', u'barcelona']
[u'govt', u'advertis', u'hospit', u'tender']
[u'grader', u'work', u'overtim', u'drench']
[u'grazier', u'confid', u'fair', u'hear', u'govt']
[u'grazier', u'urg', u'chang', u'disast', u'plan']
[u'green', u'go', u'rest', u'best', u'seek', u'world', u'berth']
[u'health', u'expert', u'vaccin', u'concern']
[u'highway', u'reopen', u'fatal', u'crash']
[u'hungerford', u'sate', u'rainfal']
[u'icac', u'hand', u'oasi', u'report']
[u'iluka', u'close', u'mildura', u'oper']
[u'indigen', u'cricket', u'battl', u'alic']
[u'investig', u'underway', u'bodi']
[u'invest', u'figur', u'better', u'expect']
[u'isisford', u'confid', u'tourist', u'project']
[u'israel', u'sharon', u'oust', u'netanyahu', u'seal', u'coalit']
[u'jail', u'firefight', u'turn', u'arsonist']
[u'japan', u'warn', u'nuclear', u'reaction']
[u'fear', u'aris', u'prison', u'closur']
[u'labor', u'unveil', u'plan', u'increas', u'bulk', u'bill']
[u'land', u'clear', u'plan', u'give', u'govt']
[u'lifesav', u'consid', u'rain', u'make', u'abil']
[u'major', u'stock', u'thump']
[u'jail', u'test', u'bring', u'rape', u'convict']
[u'face', u'trial', u'hardwar', u'store', u'blaze']
[u'maritim', u'worker', u'deplor', u'flag', u'conveni']
[u'molecul', u'protect', u'radiat', u'poison']
[u'rain', u'predict', u'mackay']
[u'support', u'stranger', u'rule', u'review']
[u'moya', u'surviv', u'scare', u'reach', u'mexican', u'quarter']
[u'call', u'woodchip', u'transport', u'review']
[u'concern', u'fund', u'claim']
[u'argu', u'region', u'health', u'staff']
[u'nasa', u'engin', u'foretel', u'shuttl', u'disast']
[u'hold', u'goorjian', u'incid']
[u'nehra', u'rip', u'england']
[u'netanyahu', u'accept', u'financ', u'portfolio', u'reshuffl']
[u'netbal', u'sue', u'pregnanc']
[u'figur', u'union', u'worker', u'wage']
[u'night', u'time', u'right', u'time', u'bacher']
[u'korea', u'restart', u'yongbyon', u'reactor', u'report']
[u'missil', u'missil', u'shield', u'downer', u'tell', u'china']
[u'support', u'second', u'resolut', u'chirac']
[u'pakistan', u'say', u'confid', u'ganguli']
[u'fisheri', u'monitor', u'river', u'fish', u'kill']
[u'senior', u'corrupt', u'investig', u'resign']
[u'govt', u'nurs', u'sympathi', u'breastfe']
[u'govt', u'reject', u'popul', u'propos']
[u'speaker', u'keep', u'abreast', u'parliament', u'rule']
[u'price', u'year', u'high']
[u'parri', u'council', u'defend', u'water', u'talk', u'withdraw']
[u'petit', u'oppos', u'brothel']
[u'back', u'missil', u'defenc', u'investig']
[u'say', u'missil', u'defenc', u'worth', u'explor']
[u'polic', u'interview', u'woman', u'incid']
[u'polic', u'investig', u'cannabi']
[u'polic', u'firefight', u'kill', u'flash', u'flood']
[u'polic', u'prepar', u'case', u'stab', u'charg']
[u'polic', u'probe', u'malle', u'cannabi']
[u'polic', u'downsiz', u'miss', u'search']
[u'pont', u'kill']
[u'public', u'meet', u'discuss', u'power', u'problem']
[u'public', u'urg', u'drug', u'dealer']
[u'criticis', u'propos', u'home', u'invas']
[u'govt', u'extend', u'vehicl', u'rego', u'lawnmow']
[u'showi', u'solv', u'murder', u'year']
[u'radiat', u'emiss', u'world', u'limit', u'studi']
[u'rain', u'expect', u'inland']
[u'rapper', u'releas', u'jail']
[u'record', u'break', u'nehra', u'rout', u'england']
[u'refuge', u'support', u'rais', u'appeal', u'fund']
[u'region', u'busi', u'work', u'drought']
[u'region', u'properti', u'price', u'rise']
[u'remot', u'terrain', u'hinder', u'bodi', u'recoveri', u'effort']
[u'resid', u'seek', u'duplex', u'develop', u'moratorium']
[u'rival', u'cancel', u'time', u'constraint']
[u'road', u'fund', u'cairn', u'slipway']
[u'robredo', u'shock', u'safin', u'dubai']
[u'rough', u'sea', u'postpon', u'race']
[u'ruddock', u'visit']
[u'saddam', u'destroy', u'missil', u'downer']
[u'scallop', u'project', u'closer', u'product']
[u'scath', u'report', u'public', u'sector', u'agenc']
[u'school', u'nomin', u'student', u'offici', u'role']
[u'scott', u'sink', u'langer', u'garcia', u'fall']
[u'search', u'resum', u'miss']
[u'separatist', u'deni', u'bomb', u'philippin', u'powerlin']
[u'wind', u'firefight', u'brace']
[u'sever', u'storm', u'lash', u'victoria']
[u'shearer', u'sink', u'bayer', u'leverkusen']
[u'shire', u'support', u'cattl', u'yard', u'propos']
[u'slater', u'doubl', u'blue', u'spree']
[u'star', u'war', u'cost', u'phantom', u'menac']
[u'south', u'east', u'rainfal', u'reliev', u'water', u'restrict']
[u'state', u'agenc', u'local', u'govt', u'rat']
[u'state', u'fight', u'spot', u'final']
[u'strong', u'dollar', u'offset', u'price', u'ract', u'protest']
[u'sydney', u'king', u'castl']
[u'taiwan', u'beef', u'missil', u'defens']
[u'tamworth', u'propos', u'leve', u'industri', u'area']
[u'tanker', u'mackay', u'run', u'aground']
[u'telstra', u'announc', u'half', u'year', u'profit']
[u'telstra', u'chief', u'bank', u'compani', u'formid']
[u'telstra', u'sale', u'agenda', u'unchang', u'profit', u'slump']
[u'tonga', u'ban', u'newspap', u'subvers']
[u'toppl', u'saddam', u'help', u'bring', u'peac', u'bush']
[u'totti', u'magic', u'give', u'roma', u'shock', u'valencia']
[u'transport', u'compani', u'face', u'court', u'cyanid']
[u'truck', u'blockad', u'lead', u'traffic', u'chao']
[u'truck', u'wheel', u'crash', u'hous']
[u'launch', u'season', u'launceston', u'concert']
[u'turkey', u'close', u'border', u'iraq', u'evacu', u'embassi']
[u'turkey', u'evacu', u'embassi', u'baghdad']
[u'turkey', u'readi', u'stamp', u'troop', u'deal']
[u'tweed', u'council', u'lift', u'water', u'restrict']
[u'teenag', u'charg', u'start', u'fire']
[u'govt', u'divid', u'iraq', u'posit']
[u'union', u'oppos', u'prison', u'closur', u'plan']
[u'secur', u'council', u'hold', u'close', u'session']
[u'farmer', u'australia', u'iraq', u'wheat', u'contract']
[u'desir', u'govern', u'iraq', u'special', u'envoy']
[u'move', u'eas', u'iraq', u'opposit', u'fear']
[u'nurs', u'home', u'patient', u'question', u'fatal']
[u'govt', u'bid', u'reform', u'industri', u'relat']
[u'video', u'tape', u'columbia', u'crew']
[u'virgin', u'chase', u'allianc', u'rocki', u'gladston']
[u'health', u'minist', u'name', u'corrupt', u'inquiri']
[u'polic', u'smoke', u'work', u'inquiri', u'figur', u'tell']
[u'union', u'want', u'greater', u'role', u'safeti']
[u'road', u'warn', u'fatal', u'motorcycl', u'crash']
[u'whale', u'carcass', u'tow']
[u'william', u'mclaren', u'ahead', u'rule', u'challeng']
[u'william', u'troubl', u'car', u'aerodynam']
[u'woman', u'search', u'nudge', u'beach']
[u'wood', u'advanc', u'upset', u'match', u'play', u'event']
[u'writer', u'withdraw', u'festiv', u'uneth', u'judg']
[u'back', u'landhold', u'incent', u'idea']
[u'yemen', u'arrest', u'arm', u'hospit']
[u'young', u'push', u'refuge', u'perman', u'resid']
[u'youth', u'centr', u'feasibl', u'microscop']
[u'youth', u'charg', u'sydney', u'stab']
[u'erad', u'plan', u'worth', u'csiro']
[u'abbott', u'consid', u'award', u'pay', u'worker']
[u'albani', u'await', u'sentenc', u'child', u'porn']
[u'allianc', u'airlin', u'halt', u'brisban', u'rout']
[u'ord', u'claw', u'point']
[u'appeal', u'long', u'sentenc', u'dismiss']
[u'armstrong', u'shape', u'despit', u'person', u'problem']
[u'arthur', u'advanc', u'copenhagen', u'quarter']
[u'auckland', u'waikato', u'blue']
[u'aussi', u'bowler', u'blow', u'away', u'namibian', u'coach']
[u'aust', u'closer', u'howard']
[u'bayern', u'close', u'titl', u'kaiserslautern']
[u'steel', u'continu', u'monitor', u'job', u'despit']
[u'bicker', u'nation', u'trust', u'heat']
[u'bird', u'return', u'townsvill', u'rain']
[u'blair', u'tell', u'iraq', u'time', u'game']
[u'brawl', u'glove', u'set', u'stage', u'jone', u'ruiz']
[u'hardi', u'merger', u'sharehold']
[u'brogden', u'eas', u'compo', u'rule', u'emerg']
[u'break', u'hill', u'protest', u'nuclear', u'wast', u'plan']
[u'break', u'mast', u'shatter', u'kiwi', u'dream']
[u'bucher', u'pull', u'world', u'indoor', u'championship']
[u'build', u'owner', u'warn', u'watch', u'legionella']
[u'bushfir', u'inquiri', u'wit', u'protect']
[u'cairn', u'health', u'watch', u'dengu', u'fever', u'case']
[u'cairn', u'focus', u'imag', u'chang']
[u'state', u'work', u'prevent']
[u'carr', u'promis', u'build', u'record']
[u'carr', u'promot', u'invest', u'opportun']
[u'claim', u'hospit', u'emerg', u'staff', u'break', u'point']
[u'claim', u'room', u'improv', u'indonesian', u'stock']
[u'clavet', u'quit']
[u'coalit', u'plan', u'bomb', u'iraq', u'zone']
[u'coalit', u'slam', u'delay', u'waterfal', u'disast', u'inquiri']
[u'compani', u'push', u'gold', u'mine', u'project']
[u'coraki', u'evan', u'head', u'room', u'mobil', u'phone', u'tower']
[u'costello', u'will', u'tighten', u'execut', u'payout']
[u'councillor', u'protest', u'iraq', u'motion']
[u'council', u'reject', u'propos', u'walkway', u'design']
[u'council', u'rule', u'renam', u'cureton']
[u'council', u'welcom', u'signag', u'decis']
[u'celebr', u'class', u'run']
[u'cyclon', u'near', u'coast', u'carri', u'littl', u'danger']
[u'dali', u'graphic', u'drench', u'galleri', u'flood']
[u'davi', u'hold', u'open', u'lead']
[u'davi', u'lead', u'open']
[u'disast', u'strike', u'team']
[u'drought', u'bring', u'posit', u'oliv', u'industri']
[u'drought', u'take', u'toll', u'nurseri']
[u'eagl', u'crow', u'clash', u'semi', u'final', u'spot']
[u'ental', u'hous', u'creat', u'nation', u'trust', u'divis']
[u'environ', u'group', u'question', u'tugun', u'bypass', u'plan']
[u'eriksson', u'pledg', u'futur', u'england']
[u'timor', u'indict', u'secur', u'forc', u'militia']
[u'farmer', u'afford', u'rais', u'pay']
[u'farmer', u'reliev', u'rainfal']
[u'farm', u'famili', u'drought', u'divers']
[u'film', u'underway', u'potter', u'instal']
[u'fitzroy', u'river', u'water', u'staff', u'strike']
[u'flash', u'flood', u'east', u'gippsland']
[u'flintoff', u'claim', u'england', u'stop', u'aussi']
[u'flood', u'cut', u'road', u'hall', u'creek', u'kununurra']
[u'flower', u'blignaut', u'brighten', u'olonga', u'gloom']
[u'foreign', u'donat', u'brisban', u'base', u'senat']
[u'mayor', u'speak', u'mismanag', u'report']
[u'fraser', u'share', u'lead', u'wind', u'sweep', u'adelaid', u'cours']
[u'fuel', u'price', u'tip', u'jump']
[u'garden', u'win', u'comp', u'site']
[u'fire', u'power', u'station', u'plan', u'illawarra']
[u'geraldton', u'host', u'major', u'event', u'weekend']
[u'girl', u'braveri', u'rescu', u'recognis']
[u'gonzalez', u'war', u'kuerten', u'moya']
[u'govt', u'give', u'telstra']
[u'govt', u'urg', u'fast', u'rail', u'plan', u'research']
[u'great', u'barrier', u'reef', u'reveget', u'program', u'begin']
[u'green', u'confront', u'carr', u'radioact', u'wast', u'issu']
[u'green', u'prefer', u'potenti', u'independ']
[u'guard', u'gun', u'mission', u'pakistan']
[u'gunner', u'advantag', u'absent', u'enemi']
[u'hang', u'onthi', u'rope', u'dodgi']
[u'hawk', u'secur', u'shoot', u'croc']
[u'health', u'minist', u'defend', u'cardiac', u'clinic']
[u'hib', u'face', u'cash', u'crisi', u'split', u'loom']
[u'hiker', u'die', u'attempt', u'king', u'canyon', u'trail']
[u'histor', u'church', u'list', u'heritag', u'regist']
[u'hop', u'plaza', u'redevelop', u'spark', u'nambour']
[u'howard', u'hose', u'earli', u'elect', u'talk']
[u'hunter', u'polic', u'prepar', u'potenti', u'terror']
[u'ident', u'dismiss', u'land', u'council', u'reveal']
[u'independ', u'palestinian', u'state', u'urgent', u'sharon']
[u'indian', u'booki', u'score', u'world', u'fever']
[u'indonesian', u'polic', u'cite', u'cleric', u'bashir', u'treason']
[u'iraq', u'agre', u'principl', u'destroy', u'missil']
[u'iraq', u'say', u'missil', u'destruct', u'start', u'tomorrow']
[u'isra', u'parliament', u'rubber', u'stamp', u'cabinet']
[u'jail', u'mosqu', u'arsonist', u'lose', u'freedom']
[u'juvenil', u'face', u'court', u'polic', u'hindranc']
[u'kemp', u'urg', u'global', u'approach', u'kyoto', u'protocol']
[u'kosmina', u'say', u'sack', u'laugh', u'stock']
[u'leaney', u'set', u'tiger', u'encount']
[u'life', u'term', u'robber', u'leav', u'victim', u'dead']
[u'liverpool', u'celtic', u'battl', u'britain']
[u'london', u'marathon', u'founder', u'chris', u'brasher', u'die']
[u'mackay', u'doctor', u'number', u'question']
[u'malpa', u'piggeri', u'give', u'ahead']
[u'allow', u'appeal', u'murder', u'convict']
[u'woman', u'hospit', u'head', u'crash']
[u'crush', u'death', u'drill', u'site']
[u'dead', u'freak', u'cricket', u'train', u'accid']
[u'die', u'cross', u'king', u'canyon']
[u'mbeki', u'apologis', u'briton', u'hold', u'error']
[u'mcgrath', u'skittl', u'namibia']
[u'medellin', u'edg', u'ecuador', u'barcelona']
[u'mildura', u'council', u'reveal', u'prefer', u'candid']
[u'minist', u'ask', u'retail', u'stand', u'produc']
[u'monaco', u'gun', u'marseill']
[u'monet', u'exhibit', u'near', u'rockhampton']
[u'public', u'access', u'plan', u'albani', u'port']
[u'moseley', u'thatcher', u'share', u'adelaid', u'lead']
[u'welcom', u'settl', u'nativ', u'titl', u'case', u'away']
[u'moya', u'dump', u'mexican', u'open']
[u'murdoch', u'claim', u'industri', u'regul']
[u'nake', u'rain', u'dancer', u'protect', u'glare']
[u'natwa']
[u'navi', u'boss', u'say', u'sailor', u'pressur', u'anthrax']
[u'netanyahu', u'accept', u'financ', u'minist']
[u'newcastl', u'maritim', u'worker', u'protest', u'sydney']
[u'facil', u'livestock', u'exchang', u'plan']
[u'korea', u'reactor', u'start', u'anger', u'atom', u'watchdog']
[u'korea', u'vow', u'yield', u'pressur']
[u'problem', u'give']
[u'north', u'korea', u'test', u'long', u'rang', u'missil', u'report']
[u'coalit', u'promis', u'crop', u'moratorium']
[u'govt', u'nuclear', u'wast', u'issu']
[u'opposit', u'pledg', u'moratorium']
[u'woman', u'head', u'surgic', u'colleg']
[u'price', u'approach', u'mark']
[u'price', u'contribut', u'massiv', u'caltex', u'turnaround']
[u'spill', u'phillip', u'island']
[u'olonga', u'sidelin', u'fourth', u'game']
[u'dead', u'injur', u'collis']
[u'onlin', u'credit', u'card', u'thief', u'bar']
[u'outspoken', u'liber', u'enthron', u'archbishop']
[u'pakistan', u'seiz', u'drug', u'bomb', u'smuggl']
[u'sport', u'rule', u'hurt', u'fan', u'murdoch']
[u'peac', u'envoy', u'establish', u'brisban', u'street', u'mission']
[u'perri', u'kick', u'crow', u'round']
[u'urg', u'free', u'trade', u'talk', u'caution']
[u'pigeon', u'drop', u'fail', u'ruffl', u'schuttler', u'feather']
[u'pittman', u'eye', u'record', u'world']
[u'plan', u'salin', u'problem', u'fix']
[u'polic', u'declar', u'oper', u'vike', u'success']
[u'polic', u'reject', u'assault', u'rate', u'claim']
[u'polic', u'probe', u'sideshow', u'oper', u'murder']
[u'pont', u'say', u'develop', u'nation', u'vital', u'cricket']
[u'portland', u'centr', u'move', u'closer', u'underwat', u'display']
[u'pressur', u'govt', u'corrupt', u'inquiri']
[u'princip', u'welcom', u'detent', u'centr', u'children']
[u'prison', u'lose', u'claim', u'return', u'work']
[u'probe', u'order', u'polic', u'polit']
[u'push', u'darl', u'down', u'transport', u'boost']
[u'rail', u'museum', u'run', u'steam']
[u'rainfal', u'water', u'flow', u'barwon', u'darl', u'river']
[u'rain', u'help', u'tame', u'bushfir']
[u'real', u'madrid', u'turn', u'attent', u'domest', u'duti']
[u'reiq', u'higlight', u'coast', u'disappear', u'budget', u'hous']
[u'request', u'fruit', u'fund', u'knock']
[u'resid', u'abl', u'appeal', u'bushfir', u'relief', u'refus']
[u'resid', u'mobil', u'phone', u'tower', u'fight']
[u'resurg', u'arazi', u'send', u'kafelnikov', u'pack']
[u'rhino', u'centr', u'mulder', u'forc', u'quit']
[u'river', u'plate', u'overcom', u'nerv', u'beat', u'libertad']
[u'rossner', u'favourit', u'women', u'road', u'world']
[u'rovanpera', u'lead', u'turkey', u'solberg', u'retir']
[u'continu', u'growth', u'forest', u'log']
[u'rower', u'madagascar']
[u'erupt', u'detent', u'centr', u'school', u'issu']
[u'ruddock', u'deni', u'withhold', u'land', u'council', u'fund']
[u'rural', u'real', u'estat', u'market', u'activ']
[u'rural', u'women', u'bare', u'necess', u'rain']
[u'russia', u'signal', u'veto', u'peac', u'secur', u'council']
[u'rychart', u'feel', u'pinch', u'roger', u'join']
[u'coron', u'probe', u'freak', u'accid']
[u'introduc', u'limit', u'build', u'area']
[u'invit', u'bali', u'victim', u'claim', u'compo']
[u'schole', u'liverpool', u'showdown']
[u'pipelin', u'construct', u'continu']
[u'scallop', u'farm', u'hervey']
[u'secur', u'council', u'minnow', u'demand', u'iraq', u'consensus']
[u'serena', u'william', u'tendin']
[u'silver', u'explor', u'turn', u'attent', u'gold']
[u'limo', u'dont', u'jenni', u'block']
[u'snowtown', u'accus', u'sleep', u'victim', u'court', u'hear']
[u'solberg', u'take', u'lead', u'turkey']
[u'star', u'middl', u'east', u'event']
[u'studi', u'reveal', u'high', u'death', u'rat', u'aborigin']
[u'suncorp', u'metway', u'record', u'half', u'year', u'surg']
[u'super', u'money', u'fund', u'brisban', u'tunnel', u'plan']
[u'sydney', u'airport', u'defend', u'terror', u'charg', u'plan']
[u'sydney', u'airport', u'charg', u'airlin']
[u'get', u'good', u'rainfal']
[u'govt', u'moratorium']
[u'receiv', u'good', u'rainfal']
[u'imparja', u'match']
[u'teen', u'charg', u'high', u'speed', u'chase']
[u'teen', u'charg', u'attempt', u'murder', u'policeman']
[u'teen', u'recov', u'meningococc', u'mening']
[u'telekom', u'star', u'savoldelli', u'month']
[u'telstra', u'wont', u'sell', u'commerci', u'viabl']
[u'tenni', u'collis', u'cours']
[u'thailand', u'appoint', u'panel', u'overse', u'drug']
[u'children', u'wound', u'gaza', u'strip', u'refuge', u'camp']
[u'polic', u'stand', u'wake', u'royal']
[u'timber', u'plantat', u'open', u'walcha']
[u'tourism', u'oper', u'drum', u'busi', u'japan']
[u'tourism', u'plan', u'releas', u'wagga', u'wagga']
[u'tourist', u'oper', u'feel', u'impact', u'insur']
[u'tour', u'valencia', u'stage', u'lead']
[u'train', u'hit', u'kill', u'elder', u'driver']
[u'treasur', u'petit', u'accc', u'chair', u'wait']
[u'troop', u'give', u'fund', u'prioriti', u'costello']
[u'jail', u'life', u'elder', u'woman', u'death']
[u'jail', u'suppli', u'ectasi', u'tablet']
[u'karat', u'champ', u'jail', u'perth', u'rape']
[u'scam', u'hit', u'wide', u'busi']
[u'deliber', u'resolut', u'iraq']
[u'union', u'back', u'qanta', u'swipe', u'card', u'time']
[u'union', u'seek', u'casual', u'jail', u'employ']
[u'meet', u'end', u'deadlock', u'resolut']
[u'deni', u'ignor', u'north', u'korea', u'crisi']
[u'lower', u'terrorist', u'alert']
[u'vote', u'human', u'clone']
[u'utah', u'town', u'moab', u'shun', u'link', u'bomb']
[u'vandal', u'close', u'lookout']
[u'vanston', u'wipe', u'ombudsman', u'welfar', u'concern']
[u'govt', u'announc', u'bushfir', u'relief']
[u'water', u'restrict', u'continu', u'despit', u'eas']
[u'north', u'coast', u'batten', u'cyclon']
[u'warn', u'algal', u'bloom', u'toxic']
[u'waterfal', u'crash', u'caus', u'unknown']
[u'water', u'restrict', u'domin', u'elect', u'talk']
[u'water', u'restrict', u'north', u'coast', u'eas']
[u'webber', u'predict', u'ferarri', u'fall', u'field']
[u'western', u'get', u'mobil', u'phone', u'boost']
[u'wicklow', u'hotel', u'buy', u'handsom']
[u'wild', u'weather', u'lash', u'northern']
[u'woman', u'jail', u'fraud', u'charg']
[u'wound', u'juve', u'scrap', u'inter', u'supremaci']
[u'zimbabw', u'deliv', u'final', u'insult', u'olonga']
[u'million', u'landmin', u'destroy', u'worldwid']
[u'adelaid', u'intern', u'film', u'festiv', u'kick']
[u'airpark', u'plan', u'port', u'dougla']
[u'alinghi', u'march', u'delay', u'postpon']
[u'alinghi', u'pois', u'histor']
[u'flight', u'ground', u'tokyo', u'airport']
[u'amnesti', u'intern', u'accus', u'solomon', u'polic']
[u'angler', u'ask', u'fish', u'differ', u'type', u'catch']
[u'anglican', u'church', u'repres', u'meet']
[u'annan', u'warn', u'cyrus', u'chanc', u'restor']
[u'worker', u'attack', u'brisban']
[u'arab', u'foreign', u'minist', u'meet', u'iraqi', u'summit']
[u'arafat', u'appoint', u'week']
[u'arrow', u'boss', u'head', u'judg']
[u'arsenal', u'cole', u'rule', u'week']
[u'arthur', u'charg', u'copenhagen', u'semi']
[u'kill', u'score', u'injur', u'taiwan']
[u'aussi', u'drum', u'tourism', u'japan']
[u'aust', u'farmer', u'suffer', u'free', u'trade']
[u'blair', u'accus', u'saddam', u'play', u'mind', u'game']
[u'blix', u'confid', u'iraq', u'destroy', u'missil']
[u'blix', u'welcom', u'announc', u'iraq', u'disarm']
[u'bomb', u'victim', u'cremat', u'bali', u'ceremoni']
[u'bomb', u'victim', u'cremat', u'bali', u'ceremoni']
[u'boro', u'releas', u'boksic']
[u'boulami', u'suspend', u'iaaf', u'pend', u'arbitr']
[u'brisban', u'discuss', u'busi', u'viabil']
[u'britain', u'draft', u'controversi', u'atlant', u'solut']
[u'britain', u'oldest', u'coupl', u'celebr', u'year']
[u'bull', u'book', u'gabba', u'final']
[u'burundi', u'popul', u'risk', u'brutal', u'civil']
[u'bushfir', u'wit', u'like', u'receiv', u'extra', u'legal']
[u'bush', u'saddam', u'step', u'iraqi', u'foreign']
[u'cairn', u'spot', u'win', u'clean', u'beach', u'year', u'award']
[u'better', u'mental', u'health', u'fund']
[u'roll', u'crash', u'hous']
[u'champion', u'crusad', u'red']
[u'chang', u'support', u'bushfir', u'victim']
[u'chechen', u'rebel', u'group', u'brand', u'terrorist']
[u'chines', u'economi', u'figur', u'signal', u'boom']
[u'claim', u'zimbabw', u'opposit', u'member']
[u'clean', u'continu', u'phillip', u'island']
[u'clijster', u'continu', u'march', u'arizona']
[u'costello', u'accc', u'chair', u'nomin']
[u'crazi', u'migrat', u'unlik', u'govt', u'say']
[u'cruis', u'compani', u'ferri', u'oper']
[u'curbishley', u'name', u'manag', u'month']
[u'cyclon', u'graham', u'lose', u'intens']
[u'cyclon', u'graham', u'travel', u'north', u'east']
[u'dizzi', u'england', u'clash']
[u'english', u'pair', u'open', u'titl']
[u'entri', u'canberra', u'reach', u'record', u'level']
[u'famili', u'turn', u'recoveri', u'centr', u'help']
[u'fear', u'anti', u'terror', u'polic', u'squad', u'drain']
[u'feder', u'novak', u'dubai', u'semi']
[u'ferguson', u'label', u'beckham', u'flash']
[u'fiba', u'concern', u'olymp', u'venu', u'construct']
[u'fifa', u'consid', u'life', u'dope', u'offenc']
[u'flood', u'predict', u'cyclon', u'graham', u'cross']
[u'flower', u'streak', u'lead', u'zimbabw', u'victori']
[u'russian', u'colonel', u'face', u'trial', u'suprem']
[u'freeman', u'cap', u'emot', u'week']
[u'french', u'soccer', u'mourn', u'batteux', u'death']
[u'gigg', u'deni', u'inter']
[u'gigg', u'doubt', u'leagu', u'final']
[u'glori', u'pressur', u'shark', u'devour', u'wolv']
[u'gonzalez', u'get', u'bortolo', u'green', u'light']
[u'gonzalez', u'ride', u'italian', u'giant']
[u'govt', u'prioriti', u'room', u'famili', u'room', u'swan']
[u'consid', u'charg', u'heftier', u'fee']
[u'green', u'call', u'homosexu', u'consent']
[u'green', u'forum', u'deal', u'membership', u'iraq']
[u'green', u'growth', u'major', u'parti', u'disillusion']
[u'hobart', u'rivulet', u'clean', u'water', u'qualiti']
[u'houllier', u'expect', u'owen', u'shine', u'unit']
[u'bowl', u'faster']
[u'indigen', u'exhibit', u'open']
[u'iraq', u'begin', u'destruct', u'ban', u'missil']
[u'iraqi', u'opposit', u'oppos', u'turkey', u'agreement']
[u'iraq', u'destroy', u'missil', u'earli', u'today']
[u'iraq', u'destroy', u'missil', u'weekend']
[u'ireland', u'tripl', u'boost', u'french', u'match']
[u'italian', u'township', u'offer', u'saddam', u'asylum']
[u'ivori', u'coast', u'presid', u'address', u'death', u'squad']
[u'jayasuriya', u'reliev', u'beat', u'windi']
[u'jewist', u'group', u'unimpress', u'anim', u'right', u'campaign']
[u'joey', u'fifa', u'world']
[u'john', u'celebr', u'return']
[u'jone', u'bid', u'heavyweight', u'crown', u'ruiz']
[u'judg', u'attack', u'walkinshaw', u'run', u'arrow']
[u'kean', u'hint', u'earli', u'retir', u'report']
[u'legal', u'women', u'conceiv', u'dead', u'husband']
[u'call', u'local', u'road', u'fund', u'increas']
[u'licklit', u'surg', u'ahead', u'tucson']
[u'maier', u'surgeri', u'train', u'month']
[u'injur', u'stuart', u'accid']
[u'mehrten', u'doubt', u'auckland', u'game']
[u'mexican', u'canadian', u'leader', u'peac']
[u'mido', u'releg', u'ajax', u'reserv']
[u'taiwan', u'tourist', u'train', u'derail']
[u'nasa', u'releas', u'columbia', u'entri', u'video']
[u'nice', u'unbeaten']
[u'kill', u'road', u'accid', u'thailand']
[u'korea', u'blame', u'caus', u'nuclear', u'rift']
[u'korean', u'lawyer', u'indict', u'nuke', u'crisi']
[u'korea', u'say', u'flight', u'prepar']
[u'author', u'investig', u'japanes', u'student']
[u'ogara', u'recal', u'franc', u'clash']
[u'ogilvi', u'lead', u'adelaid', u'field']
[u'spill', u'phillip', u'threaten', u'wildlif']
[u'opposit', u'pay', u'matern', u'leav']
[u'oprah', u'black', u'woman']
[u'peac', u'summit', u'hold', u'sydney']
[u'penguin', u'treat', u'phillip', u'island', u'spill']
[u'philippin', u'sign', u'counter', u'terror', u'pact']
[u'phillip', u'clean', u'continu', u'spill']
[u'pig', u'condemn', u'bullet', u'cellar']
[u'say', u'pay', u'matern', u'leav', u'card']
[u'pope', u'send', u'peac', u'envoy']
[u'prison', u'confer', u'hold', u'canberra']
[u'premier', u'warn', u'worker', u'walk', u'street']
[u'rain', u'help', u'water', u'level', u'rise', u'sydney']
[u'record', u'number', u'student', u'enrol', u'univers']
[u'red', u'injuri', u'worri']
[u'roo', u'semi']
[u'round', u'time', u'toad', u'north', u'coast']
[u'rumsfeld', u'accus', u'media', u'mislead', u'public']
[u'russia', u'veto', u'power', u'maintain', u'world']
[u'scott', u'lonard']
[u'sculptur', u'exhibit', u'reveal', u'tasmania']
[u'sequin', u'oxford', u'street']
[u'sheffield', u'boost', u'promot', u'hop']
[u'shuttl', u'program', u'outdat', u'aeronaut', u'expert', u'say']
[u'snow', u'begin', u'fall', u'fall', u'creek']
[u'socceroo', u'london', u'base']
[u'solomon', u'child', u'fli', u'brisban']
[u'sourc', u'spill', u'unknown']
[u'south', u'asia', u'stop', u'india', u'pakistan']
[u'sris', u'deal', u'windi', u'huge', u'blow', u'victori']
[u'sydney', u'mardi', u'gras', u'parad', u'dish', u'bite']
[u'sydney', u'gear', u'mardi', u'gras']
[u'sydney', u'mardi', u'gras', u'kick']
[u'telstra', u'employe', u'fear', u'job', u'say', u'union']
[u'thorp', u'cours', u'canberra', u'freestyl']
[u'thorp', u'plan', u'swim', u'seven', u'event', u'world']
[u'liabl', u'spill', u'fin']
[u'girl', u'injur', u'bomb', u'blast']
[u'tobacco', u'farmer', u'face', u'jail', u'black', u'market', u'trade']
[u'toddler', u'wander', u'street']
[u'anwar', u'lead', u'pakistan', u'charg', u'india']
[u'iraqi', u'arriv', u'egypt', u'arab', u'summit']
[u'tour', u'valencia', u'fourth', u'stage', u'lead']
[u'troop', u'readi', u'violenc', u'kick', u'annual']
[u'major', u'polit', u'parti', u'join', u'forc', u'austria']
[u'policemen', u'kill', u'outsid', u'consul']
[u'call', u'road', u'upgrad', u'fatal', u'accid']
[u'tyson', u'blast', u'pathet', u'king']
[u'call', u'saddam', u'resign']
[u'inspect', u'generat', u'result', u'franc']
[u'inspector', u'destroy', u'iraq', u'illeg']
[u'economi', u'fight', u'recess']
[u'restat', u'willing', u'disarm', u'iraq']
[u'slap', u'terror', u'sanction', u'chechen', u'rebel']
[u'stock', u'open', u'flat']
[u'virgin', u'blue', u'water', u'aviat', u'safeti']
[u'cyclon', u'warn', u'downgrad']
[u'govt', u'consid', u'radic', u'elector', u'reform']
[u'warn', u'irreplac', u'chairman']
[u'agre', u'intern', u'anti', u'smoke', u'treati']
[u'windi', u'struggl', u'lanka']
[u'windsurf', u'die', u'port', u'phillip']
[u'woodgat', u'newcastl', u'debut', u'chelsea']
[u'zabaleta', u'hand', u'kuerten', u'semi', u'final', u'defeat']
[u'zieg', u'make', u'quick', u'recoveri', u'thigh', u'injuri']
[u'zimbabw', u'clergymen', u'ralli', u'outsid', u'polic']
[u'zimbabw', u'polic', u'arrest', u'clergymen', u'protest']
[u'kill', u'light', u'plane', u'crash', u'russia']
[u'postal', u'offic', u'sack', u'tamper', u'mail']
[u'postal', u'offic', u'sack', u'alleg', u'mail']
[u'actu', u'rule', u'troop', u'ban']
[u'alinghi', u'take', u'america']
[u'injur', u'egyptian', u'librari']
[u'welcom', u'arrest', u'alleg', u'sept', u'mastermind']
[u'qaeda', u'suspect', u'arrest', u'pakistan']
[u'back', u'heroin', u'trial', u'addict']
[u'chief', u'say', u'compani', u'fight', u'surviv']
[u'arab', u'leader', u'reject', u'idea', u'militari', u'strike', u'iraq']
[u'arthur', u'fall', u'short', u'copenhagen']
[u'asylum', u'seeker', u'support', u'centr', u'face', u'closur']
[u'kill', u'injur', u'taiwan']
[u'dead', u'russian', u'plane', u'crash']
[u'aussi', u'rock', u'legend', u'add', u'music', u'classic', u'children']
[u'aussi', u'give', u'green', u'light', u'gallipoli', u'pilgrimag']
[u'aust', u'missil', u'defenc', u'shield', u'like', u'hill']
[u'australia', u'clean', u'tonn', u'rubbish']
[u'ballack', u'doubl', u'strike', u'lead', u'bayern', u'victori']
[u'belgian', u'museeuw', u'take', u'volk']
[u'bhutan', u'aim', u'erad', u'fruit', u'problem']
[u'bichel', u'claim', u'magnific', u'seven']
[u'bichel', u'set', u'australia', u'record']
[u'brazilian', u'team', u'player', u'send']
[u'brisban', u'brothel', u'owner', u'beef', u'secur']
[u'brisban', u'parachut', u'jumper', u'surviv', u'accid']
[u'britain', u'dismiss', u'iraq', u'destruct', u'ban']
[u'brookdal', u'wast', u'redirect', u'boulder']
[u'brumbi', u'shock', u'waratah']
[u'bush', u'commit', u'form', u'democraci', u'iraq']
[u'calleri', u'beat', u'zabaleta', u'claim', u'mexican', u'titl']
[u'inquiri', u'medic', u'workforc', u'strategi']
[u'carrigan', u'claim', u'geelong', u'world', u'open']
[u'carr', u'neglect', u'need', u'rural', u'peopl', u'deputi']
[u'carr', u'pitch', u'green', u'vote', u'plan']
[u'casa', u'launch', u'onlin', u'safeti', u'confer']
[u'castro', u'arriv', u'japan', u'visit']
[u'chamber', u'miss', u'world', u'indoor', u'spot']
[u'china', u'plan', u'moon', u'explor', u'program']
[u'chines', u'fan', u'keep', u'wait', u'gazza', u'debut']
[u'chirac', u'remain', u'oppos', u'iraq']
[u'clean', u'australia', u'turn']
[u'clean', u'continu', u'spill', u'phillip']
[u'clijster', u'scottsdal', u'final']
[u'coleman', u'feel', u'heat', u'bunni', u'thrash']
[u'concern', u'rais', u'doctor', u'hotlin', u'disconnect']
[u'confus', u'surround', u'turkey', u'decis', u'troop']
[u'crean', u'prais', u'iraq', u'decis', u'destroy', u'missil']
[u'crean', u'rule', u'medicar', u'levi', u'increas']
[u'doctor', u'shopper', u'abus', u'privaci', u'say']
[u'dunde', u'partick']
[u'feder', u'novak', u'clash', u'dubai', u'final']
[u'wont', u'bring', u'troop', u'home', u'crean']
[u'femal', u'candid', u'elect', u'merit', u'quota']
[u'injur', u'bullet', u'spray', u'belgian', u'parti']
[u'formula', u'car', u'arriv', u'melbourn']
[u'formula', u'expens', u'schumach']
[u'samoud', u'missil', u'destroy']
[u'franc', u'remain', u'oppos', u'resolut', u'lead']
[u'frigo', u'hold', u'claim', u'tour', u'valencia']
[u'govt', u'critic', u'gulf', u'black', u'plan']
[u'govt', u'overhaul', u'assist', u'packag', u'famili']
[u'green', u'parti', u'membership', u'tripl']
[u'hermakono', u'win', u'award', u'africa', u'film']
[u'hotel', u'bed', u'short', u'suppli', u'hobart']
[u'india', u'put', u'fan', u'frenzi']
[u'public', u'disarm', u'trimbl']
[u'iran', u'reformist', u'accept', u'council', u'elect', u'defeat']
[u'iraq', u'continu', u'conceal', u'ban', u'weapon', u'straw']
[u'iraq', u'destroy', u'ban', u'missil']
[u'iraqi', u'opposit', u'group', u'appoint', u'leadership', u'team']
[u'iraq', u'say', u'emir', u'agent', u'seek', u'saddam']
[u'jone', u'claim', u'titl', u'box', u'histori']
[u'kenya', u'cruis', u'super', u'six']
[u'hospic', u'staff', u'patient', u'evacu']
[u'qaeda', u'figur', u'arrest', u'pakistan']
[u'kuwaiti', u'nab', u'militari', u'hotel', u'suspect']
[u'lennox', u'lewi', u'hint', u'retir']
[u'lion', u'stun', u'geelong']
[u'local', u'darwin', u'hotel', u'rob']
[u'arrest', u'mortar', u'kuwait', u'hotel', u'releas']
[u'hospitalis', u'freo', u'attack']
[u'mardi', u'gras', u'number', u'organis', u'happi']
[u'mark', u'waugh', u'guid', u'blue', u'home']
[u'mckay', u'beat', u'davi', u'open', u'titl']
[u'mexican', u'food', u'fight', u'land', u'polic', u'water']
[u'middl', u'east', u'tension', u'distract', u'voter', u'carr']
[u'coach', u'resign']
[u'monaco', u'ditch', u'doubl']
[u'rural', u'doctor', u'need', u'confer', u'tell']
[u'nake', u'rain', u'danc', u'kick', u'victoria']
[u'nation', u'council', u'drug', u'oppos', u'heroin', u'trial']
[u'play', u'off', u'decid']
[u'newcastl', u'track', u'chelsea']
[u'regul', u'forc', u'compani', u'disclos', u'golden']
[u'rural', u'doctor', u'train', u'facil', u'establish']
[u'newspap', u'cartoonist', u'spotlight']
[u'zealand', u'tip', u'march']
[u'north', u'korea', u'warn', u'horrifi', u'nuclear', u'disast']
[u'coalit', u'rule', u'green', u'deal']
[u'polic', u'confirm', u'ident', u'asian', u'women']
[u'ogilvi', u'take', u'adelaid', u'open']
[u'parti', u'plan', u'senat', u'vote', u'unaccept']
[u'oversea', u'wine', u'lover', u'crack', u'aussi', u'tinni']
[u'pakistani', u'famili', u'shock', u'qaeda', u'arrest']
[u'pakistan', u'shatter', u'india', u'defeat']
[u'palestinian', u'girl', u'stray', u'bullet']
[u'philippin', u'australia', u'sign', u'secur', u'agreement']
[u'pie', u'semi']
[u'pilot', u'condit', u'dalbi', u'crash']
[u'welcom', u'arrest', u'suspect', u'qaeda', u'mastermind']
[u'polic', u'announc', u'breakthrough', u'falcon', u'murder']
[u'polic', u'arrest', u'darwin', u'doubl', u'murder']
[u'polic', u'arrest', u'murder', u'cooma', u'coupl']
[u'polic', u'deni', u'arrest', u'zimbabw', u'opposit']
[u'polic', u'door', u'knock', u'cooma', u'doubl', u'murder']
[u'portsmouth', u'rout', u'milwal', u'clear']
[u'power', u'thrash', u'south', u'striker', u'hold', u'newcastl']
[u'prostitut', u'target', u'brisban', u'street']
[u'protest', u'march', u'embassi', u'lodg']
[u'point', u'clear', u'late', u'winner']
[u'rabindra', u'reang', u'win', u'elect', u'rabindra', u'reang']
[u'ronaldo', u'star', u'real', u'demolit']
[u'ross', u'bridg', u'recognis', u'architectur', u'monument']
[u'environ', u'minist', u'consid', u'plastic']
[u'sainz', u'retain', u'lead', u'ralli', u'turkey']
[u'scientist', u'investig', u'sourc', u'spill']
[u'scott', u'book', u'tiger', u'clash', u'lonard']
[u'sculptur', u'prais', u'defunct', u'lira', u'unveil']
[u'septemb', u'alleg', u'mastermind', u'hand']
[u'execut', u'china']
[u'slashin', u'tendulkar', u'lead', u'india', u'crush']
[u'snow', u'season', u'start', u'south', u'wale']
[u'spirit', u'move', u'final', u'content']
[u'strong', u'wind', u'caus', u'havoc', u'cairn']
[u'struggl', u'modena', u'snatch', u'draw', u'parma']
[u'studi', u'consid', u'effect', u'bushfir', u'mental']
[u'suspect', u'qaeda', u'mastermind', u'arrest', u'pakistan']
[u'sydney', u'swim', u'good', u'caus']
[u'taipan', u'high']
[u'taiwan', u'tourist', u'train', u'crash']
[u'teacher', u'govt', u'talk', u'breakdown']
[u'teacher', u'union', u'educ', u'dept', u'meet', u'negoti']
[u'tension', u'reach', u'melt', u'point', u'arab', u'leagu', u'summit']
[u'thailand', u'admit', u'polic', u'execut']
[u'thailand', u'admit', u'polic', u'execut', u'suspect']
[u'thailand', u'polic', u'claim', u'kill', u'drug']
[u'thorp', u'pace', u'record']
[u'tiger', u'redback', u'hide']
[u'troop', u'smash', u'barrier', u'japan']
[u'turkey', u'say', u'friend', u'warn', u'iraq']
[u'turkish', u'cypriot', u'leader', u'stand', u'firm']
[u'turkish', u'govt', u'call', u'urgent', u'meet', u'block']
[u'gold', u'coaster', u'lifesav', u'award']
[u'palestinian', u'kill', u'wound', u'gaza', u'strip']
[u'women', u'dead', u'unit']
[u'inspector', u'seek', u'verif', u'iraq', u'destroy']
[u'union', u'deni', u'gulf', u'black', u'claim']
[u'unit', u'kenyon', u'deni', u'eriksson', u'headhunt']
[u'disappoint', u'troop', u'deploy', u'turkey']
[u'govt', u'interrog', u'suspect', u'qaeda']
[u'victorian', u'road', u'toll', u'rise', u'overnight', u'fatal']
[u'victorian', u'urg', u'vaccin', u'earli']
[u'walker', u'commemor', u'live', u'lose', u'bali', u'bomb']
[u'protest', u'begin', u'outsid', u'embassi']
[u'wood', u'tom', u'face', u'aussi', u'expens']
[u'zimmerman', u'complet', u'parramatta', u'man', u'swim']
[u'peopl', u'charg', u'weekend', u'polic', u'oper']
[u'modifi', u'radiat', u'safeti', u'standard']
[u'bushfir', u'inquiri', u'open']
[u'adelaid', u'danc', u'troup', u'head']
[u'traffic', u'control', u'glitch', u'dent', u'japan', u'high', u'tech']
[u'ajax', u'stay', u'touch', u'feyenoord', u'victori']
[u'algeria', u'offer', u'stir', u'welcom', u'chirac']
[u'algeria', u'sign', u'friendship', u'memo', u'franc']
[u'smile', u'sainz', u'win', u'ralli', u'turkey']
[u'show', u'stanwel', u'plant', u'design']
[u'american', u'squeez', u'prime', u'qaeda', u'suspect']
[u'anti', u'discrimin', u'offic', u'open', u'alic', u'spring']
[u'aristocrat', u'ax', u'oper']
[u'atletico', u'edg', u'malaga']
[u'atsic', u'critic', u'ceremoni', u'turnout']
[u'austereo', u'report', u'profit', u'slide']
[u'aust', u'muslim', u'leader', u'welcom', u'qaeda', u'arrest']
[u'aust', u'post', u'destroy', u'fridg', u'magnet', u'labor']
[u'australia', u'recognis', u'hero', u'braveri', u'award']
[u'australia', u'oldest', u'olympian', u'die', u'age']
[u'autumn', u'bring', u'cold', u'comfort']
[u'wheat', u'year', u'expect', u'aust', u'studi']
[u'black', u'tiger', u'prawn', u'harvest', u'offer', u'industri', u'hope']
[u'border', u'tighten', u'secur', u'crackdown']
[u'boyfriend', u'custodi', u'policewoman', u'death']
[u'britain', u'announc', u'month', u'long', u'amnesti']
[u'brogden', u'pledg', u'nurs', u'carr', u'say', u'tri']
[u'bull', u'young']
[u'bumper', u'grain', u'year', u'ahead', u'farm', u'forecast']
[u'age', u'care', u'fund']
[u'camplin', u'claim', u'tripl', u'crown']
[u'canberra', u'order', u'freeway', u'path', u'alburi']
[u'carr', u'happi', u'accept', u'green', u'prefer']
[u'theft', u'spark', u'intern', u'polic', u'probe']
[u'celtic', u'ranger', u'scottish', u'hors', u'race']
[u'centuri', u'turtl']
[u'chievo', u'come', u'torino']
[u'civil', u'libertarian', u'teen', u'right', u'choic']
[u'clark', u'involv', u'sieg', u'court', u'hear']
[u'coetzer', u'win', u'acapulco']
[u'cold', u'snap', u'hit', u'gippsland']
[u'communiti', u'forum', u'consid', u'kosciuszko']
[u'communiti', u'pitch', u'help', u'environ']
[u'concern', u'air', u'nation', u'park', u'plan']
[u'concert', u'rais', u'fund', u'drought', u'woe']
[u'cooma', u'shoot', u'victim', u'name']
[u'council', u'concern', u'soil', u'pollut', u'waterway']
[u'council', u'take', u'action', u'wander', u'stock']
[u'court', u'decid', u'murder', u'appeal']
[u'crean', u'say', u'senat', u'fight', u'govt', u'legisl']
[u'crisi', u'meet', u'hold', u'dairi', u'farmer']
[u'damag', u'cost', u'cyclon', u'increas']
[u'darwin', u'charg', u'doubl', u'murder']
[u'death', u'spark', u'polic', u'driver', u'care']
[u'debt', u'blowout', u'blame', u'drought', u'global', u'weak']
[u'deficit', u'blowout', u'peg', u'dollar']
[u'democrat', u'seek', u'accc', u'probe', u'basic', u'food', u'price']
[u'discuss', u'paper', u'discuss', u'resourc']
[u'dixon', u'win', u'round', u'indi', u'debut']
[u'dragila', u'set', u'indoor', u'pole', u'vault', u'world', u'mark']
[u'duck', u'number', u'wont', u'affect', u'long', u'term', u'hunter']
[u'dudek', u'differ', u'ferguson']
[u'elect', u'campaign', u'heat', u'bega']
[u'elect', u'turn', u'free', u'zone']
[u'emerg', u'servic', u'polic', u'tour', u'north']
[u'food', u'label', u'hype', u'free']
[u'europ', u'pacif', u'nation', u'sign', u'post', u'coloni', u'pact']
[u'evapor', u'basin', u'caus', u'stink']
[u'farmer', u'urg', u'cattl', u'immunis']
[u'farm', u'expert', u'meet', u'canola', u'discuss']
[u'feder', u'answer', u'critic', u'dubai']
[u'felin', u'spat', u'put', u'peopl', u'hospit']
[u'fiji', u'detain', u'journalist', u'cover', u'treason', u'case']
[u'destroy', u'unoccupi', u'hous']
[u'aussi', u'contest', u'world', u'indoor', u'championship']
[u'focus', u'win', u'whine', u'stoddart', u'tell']
[u'folk', u'festiv', u'declar', u'winner']
[u'chief', u'minist', u'enter', u'senat']
[u'forrest', u'defend', u'decis', u'accept', u'mobil', u'phone']
[u'forum', u'consid', u'indigen', u'communiti', u'futur']
[u'bounti', u'program', u'continu', u'gippsland']
[u'franc', u'confirm', u'opposit', u'second', u'resolut']
[u'free', u'meningococc', u'vaccin', u'offer']
[u'gerrard', u'owen', u'liverpool', u'leagu']
[u'govt', u'blame', u'bargain', u'breakdown']
[u'govt', u'opposit', u'offer', u'pledg', u'teacher']
[u'govt', u'urg', u'stanc', u'internet', u'porn']
[u'greec', u'open', u'novemb', u'militia', u'trial']
[u'group', u'defend', u'broadcast', u'parliament', u'tape']
[u'group', u'fight', u'primari', u'produc', u'right']
[u'gulpilil', u'honour', u'film', u'career']
[u'gunmen', u'attack', u'afghan', u'convoy', u'injuri']
[u'hamburg', u'climb', u'fifth']
[u'hodgson', u'start', u'superbik', u'season', u'doubl', u'victori']
[u'hospit', u'site', u'creat', u'debat']
[u'injuri', u'rock', u'red']
[u'inquest', u'begin', u'tourist', u'death']
[u'inquiri', u'begin', u'ralli', u'accid']
[u'inquiri', u'begin', u'sandon', u'develop']
[u'interest', u'parti', u'urg', u'regist', u'nativ']
[u'internet', u'increas']
[u'investor', u'dump', u'ceo', u'dire', u'forecast']
[u'ipswich', u'win', u'east', u'anglian', u'derbi']
[u'iran', u'conserv', u'local', u'elect']
[u'iraq', u'resum', u'destroy', u'missil']
[u'iraq', u'threaten', u'stop', u'missil', u'destruct']
[u'irympl', u'favour', u'home', u'ambul']
[u'islamist', u'stage', u'massiv', u'anti', u'ralli', u'pakistan']
[u'isra', u'push', u'gaza', u'leav', u'dead']
[u'israel', u'grant', u'civil', u'marriag', u'licens']
[u'rise', u'nation']
[u'judg', u'quash', u'petroulia', u'fraud', u'charg']
[u'jupit', u'finalis', u'merger', u'detail']
[u'kefu', u'undergo', u'injur', u'socket']
[u'kucera', u'win', u'copenhagen']
[u'kuwait', u'join', u'saddam', u'exil']
[u'labor', u'attack', u'vanston', u'famili', u'payment']
[u'labor', u'wont', u'support', u'tighter', u'porn', u'law']
[u'learner', u'driver', u'break', u'accid']
[u'lee', u'back', u'cross', u'media', u'chang']
[u'liberti', u'victoria', u'regret', u'health', u'record', u'rule']
[u'lifesav', u'honour', u'gold', u'coast', u'ceremoni']
[u'lyon', u'keep', u'hop', u'aliv', u'victori', u'auxerr']
[u'lyon', u'titl', u'hop', u'aliv']
[u'mackay', u'sugar', u'consid', u'doubl', u'sugar', u'aust', u'share']
[u'magic', u'nedv', u'fire', u'juve', u'inter']
[u'major', u'parti', u'criticis', u'green', u'drug', u'propos']
[u'accus', u'plot', u'shoot', u'parliament']
[u'admit', u'take', u'japanes', u'rock', u'star', u'million']
[u'arrest', u'connect', u'polic', u'death']
[u'escap', u'injuri', u'semi', u'trailer', u'accid']
[u'injur', u'fall', u'sunshin', u'beach', u'cliff']
[u'man', u'ill', u'plane', u'theft', u'crash', u'judg']
[u'polic', u'guard', u'hospit', u'shoot']
[u'mckinnon', u'independ', u'murray', u'darl']
[u'memori', u'hall', u'transform', u'galleri']
[u'midwiv', u'obstetrician', u'ralli', u'newcastl']
[u'milan', u'salvag', u'home', u'draw', u'atalanta']
[u'militia', u'suspect', u'kill', u'itali', u'train', u'shoot']
[u'minist', u'encourag', u'foreign', u'invest']
[u'minor', u'flood', u'north', u'west']
[u'dead', u'nigeria', u'fight']
[u'troubl', u'nation', u'trust']
[u'address', u'anti', u'nuclear', u'ralli', u'break', u'hill']
[u'highlight', u'tourist', u'commiss', u'woe']
[u'upset', u'allianc', u'decis']
[u'mundin', u'eye', u'world', u'titl', u'shoot']
[u'nake', u'rain', u'danc', u'declar', u'success', u'despit']
[u'nation', u'lose', u'wrestl', u'veteran', u'olymp']
[u'naturopath', u'face', u'charg', u'kill', u'sick', u'babi']
[u'blix', u'report', u'show', u'need', u'continu']
[u'group', u'consid', u'water', u'shortag']
[u'immunis', u'websit', u'launch']
[u'western', u'australian', u'braveri', u'award']
[u'nrma', u'attack', u'cost', u'loss']
[u'nrma', u'chief', u'step']
[u'support', u'limit', u'heroin', u'trial']
[u'govt', u'fund', u'water', u'suppli', u'project']
[u'say', u'govt', u'reneg', u'forestri', u'plan']
[u'tourist', u'guid', u'case', u'move', u'suprem', u'court']
[u'lose', u'sheep']
[u'offic', u'link', u'commission', u'murder']
[u'oppn', u'claim', u'govt', u'carer', u'allow', u'paint', u'sniff']
[u'door', u'dali', u'thief', u'sneak', u'paint', u'away']
[u'pakistani', u'protest', u'march']
[u'pakistan', u'hand', u'qaeda', u'suspect']
[u'pakistan', u'drink', u'chanc', u'saloon']
[u'polic', u'alarm', u'underag', u'drinker']
[u'polic', u'defend', u'doubl', u'demerit', u'scheme']
[u'polic', u'defend', u'doubl', u'demerit', u'scheme']
[u'policeman', u'charg', u'multipl', u'rape']
[u'polic', u'probe', u'jail', u'drug', u'effort']
[u'polic', u'interview', u'alleg', u'murder']
[u'pope', u'say', u'avenu', u'peac', u'explor']
[u'public', u'support', u'high', u'rail', u'link']
[u'begin', u'communiti', u'alcohol', u'restrict']
[u'petrol', u'price', u'cheaper', u'survey']
[u'ramsay', u'share', u'profit', u'figur']
[u'real', u'sociedad', u'stumbl', u'real', u'madrid', u'stay']
[u'renew', u'call', u'calder', u'freeway', u'fund']
[u'report', u'urg', u'break', u'farmer', u'conserv', u'land']
[u'resid', u'gear', u'wimmera', u'machineri', u'field']
[u'senat', u'provid', u'doubl', u'dissolut', u'trigger']
[u'essay', u'baffl', u'english', u'teacher']
[u'woodburi', u'home', u'remain', u'power']
[u'south', u'sack', u'coleman']
[u'south', u'west', u'victorian', u'honour', u'braveri', u'award']
[u'spurn', u'troop', u'deal', u'hurt', u'turkish', u'stock']
[u'stun', u'sugiyama', u'win', u'match', u'titl']
[u'sugiyama', u'beat', u'stevenson', u'scottsdal']
[u'summit', u'focus', u'indigen', u'justic', u'woe']
[u'supermarket', u'encourag', u'shopper', u'abandon', u'plastic']
[u'survey', u'start', u'basslink', u'connect']
[u'tableland', u'tourism', u'oper', u'discuss', u'futur']
[u'protest', u'block', u'truck', u'log', u'site']
[u'teacher', u'union', u'issu', u'strike', u'warn']
[u'teen', u'charg', u'blaze']
[u'teen', u'win', u'flag', u'comp', u'ironman', u'championship']
[u'thiev', u'demand', u'steal', u'item', u'carri']
[u'thigh', u'injuri', u'rule', u'szabo', u'world', u'indoor']
[u'thorp', u'trim', u'world', u'championship', u'assault']
[u'toddler', u'unharm', u'steal', u'drama']
[u'total', u'sprinkler', u'enforc']
[u'tugboat', u'strand', u'ship']
[u'turkey', u'undecid', u'continu', u'platform', u'debat']
[u'candid', u'run', u'broadsound', u'shire', u'mayor']
[u'surviv', u'parachut', u'accid']
[u'unhook', u'brake', u'blame', u'taiwan', u'train', u'disast']
[u'inspector', u'destroy', u'ban', u'missil']
[u'union', u'back', u'carr', u'promis', u'extra', u'fund']
[u'unit', u'draw', u'striker']
[u'say', u'qaeda', u'shake', u'arrest']
[u'trade', u'pact', u'wont', u'hurt', u'asia', u'partnership', u'minist']
[u'unmov', u'iraq', u'missil']
[u'utah', u'kirilenko', u'tip', u'grab', u'dramat', u'victori']
[u'dept', u'tell', u'releas', u'person', u'medic', u'record']
[u'govt', u'truck', u'log', u'protest']
[u'polic', u'fear', u'safeti', u'toddler', u'steal']
[u'victori', u'take', u'arsenal', u'closer', u'championship']
[u'visit', u'australian', u'incens', u'green']
[u'vital', u'tape', u'miss', u'tanner', u'case']
[u'wagga', u'schizophrenia', u'support', u'group']
[u'polic', u'seek', u'extradit', u'perth']
[u'warn', u'issu', u'free', u'trade', u'deal', u'report']
[u'warrior', u'wield']
[u'water', u'manag', u'plan', u'long', u'finalis']
[u'weaken', u'arsenal', u'outgun', u'charlton']
[u'unbeaten', u'pont']
[u'woman', u'hospit', u'surf', u'ordeal']
[u'wood', u'pull', u'dubai', u'desert', u'classic']
[u'wood', u'win', u'world', u'matchplay', u'titl']
[u'workcov', u'investig', u'riverland', u'small', u'busi']
[u'abar', u'predict', u'econom', u'growth', u'reduct']
[u'arson', u'accus', u'warn', u'match', u'lighter']
[u'guru', u'fail', u'sell', u'america', u'muslim']
[u'dismiss', u'coach', u'travel', u'concern']
[u'investig', u'impact', u'gambl', u'game']
[u'afma', u'probe', u'lose', u'tuna', u'incid']
[u'agforc', u'question', u'temporari', u'meatwork', u'closur']
[u'alleg', u'sept', u'mastermind', u'fli', u'pakistan']
[u'allianc', u'airlin', u'decis', u'upset']
[u'ord', u'shed', u'point', u'stock', u'falter']
[u'qaeda', u'suspect', u'arrest', u'yield', u'intellig', u'feast']
[u'back', u'bulk', u'bill', u'mean', u'test']
[u'anti', u'dope', u'code', u'complianc', u'olymp']
[u'channel', u'deliv', u'half', u'year', u'profit']
[u'call', u'director', u'emul', u'chair']
[u'want', u'drug', u'dealer', u'deduct']
[u'australia', u'seek', u'question', u'qaeda', u'suspect']
[u'babi', u'green', u'turtl', u'begin', u'long', u'walk', u'freedom']
[u'haven', u'nurs', u'home', u'futur', u'doubt']
[u'beachley', u'gear', u'surf', u'season']
[u'beachley', u'prepar', u'world', u'championship', u'tour']
[u'berlin', u'brothel', u'plan', u'dog', u'life', u'better']
[u'bevan', u'put', u'test', u'ambit', u'hold']
[u'biolog', u'survey', u'begin', u'pilbara']
[u'black', u'cat', u'provid', u'lucki', u'break', u'research']
[u'bodi', u'insid', u'wheel', u'drive']
[u'bosnich', u'remain', u'limbo']
[u'injur', u'balloon', u'accid']
[u'brack', u'wont', u'meet', u'grand', u'prix', u'block']
[u'brief', u'report', u'england', u'premier', u'leagu']
[u'break', u'hill', u'water', u'safeti', u'alert', u'lift']
[u'bryant', u'streak', u'end', u'laker']
[u'build', u'industri', u'find', u'tabl']
[u'bulk', u'bill', u'direct', u'incom']
[u'bureau', u'warn', u'pressur']
[u'calcul', u'cock', u'cost', u'protea', u'dear']
[u'refuge', u'give', u'visa', u'certainti']
[u'callous', u'parent', u'jail', u'year', u'babi', u'death']
[u'derelict', u'freighter']
[u'carr', u'claim', u'credit', u'drop', u'crime']
[u'cathol', u'male', u'teacher', u'push', u'reject']
[u'claim', u'fish', u'restrict', u'lead']
[u'clark', u'defend', u'wife', u'public', u'fund', u'holiday']
[u'coalit', u'plan', u'highway', u'upgrad', u'seat']
[u'coalit', u'punctur', u'labor', u'cycleway', u'idea']
[u'comment', u'seek', u'draft', u'tourism']
[u'communiti', u'group', u'protest', u'develop']
[u'confer', u'focus', u'farm', u'futur']
[u'convict', u'rapist', u'appeal', u'adult', u'teach']
[u'crean', u'play', u'poor', u'poll', u'show']
[u'crean', u'say', u'oecd', u'report', u'true', u'indic']
[u'dairi', u'farmer', u'fight', u'plan', u'land', u'rehab', u'charg']
[u'darwin', u'look', u'limit', u'itiner', u'number']
[u'depart', u'chair', u'declin', u'payout']
[u'disappoint', u'juvenil', u'crime', u'meet']
[u'distanc', u'issu', u'canadian', u'winter', u'game']
[u'doctor', u'guilti', u'misconduct', u'prison', u'death']
[u'dollar', u'hit', u'year', u'high']
[u'dollar', u'surg', u'year', u'high']
[u'drought', u'affect', u'gambier', u'tourism']
[u'drought', u'see', u'major', u'factor', u'month', u'deficit']
[u'enqvist', u'end', u'agassi', u'win', u'streak']
[u'extra', u'work', u'dole', u'scheme', u'announc', u'wide']
[u'famili', u'cite', u'arafat', u'court', u'jewish', u'death']
[u'februari', u'offer', u'good', u'rainfal', u'central', u'west']
[u'feder', u'govt', u'announc', u'chang']
[u'feder', u'govt', u'urg', u'commit', u'drought', u'relief']
[u'fedorov', u'confirm', u'marriag', u'divorc']
[u'forlan', u'expect']
[u'candid', u'nomin', u'tamworth', u'seat']
[u'turn', u'fals', u'alarm']
[u'franc', u'turn', u'place', u'injur']
[u'fund', u'chees', u'factori']
[u'geraldton', u'host', u'sport', u'event']
[u'girl', u'film', u'boyfriend', u'bash', u'trial', u'hear']
[u'grand', u'prix', u'blockad', u'forest', u'worker']
[u'group', u'say', u'market', u'pressur', u'determin', u'retail']
[u'half', u'age', u'home', u'run', u'loss', u'report']
[u'harvest', u'work', u'plummet', u'granit', u'belt']
[u'health', u'minist', u'admit', u'health', u'hotlin', u'cost']
[u'hinz', u'level', u'continu', u'climb']
[u'homeless', u'argu', u'right', u'park', u'life']
[u'hooper', u'hint', u'chang', u'rule', u'requir']
[u'houllier', u'expect', u'bounc', u'red']
[u'human', u'shield', u'home']
[u'illawarra', u'health', u'recognis', u'alcohol', u'effort']
[u'independ', u'predict', u'state', u'elect']
[u'indigen', u'group', u'age', u'care', u'train']
[u'institut', u'defend', u'award', u'despit', u'wall', u'collaps']
[u'iraq', u'say', u'civilian', u'kill', u'coalit', u'raid']
[u'iraq', u'scrap', u'missil']
[u'japan', u'send', u'envoy', u'mideast']
[u'jone', u'week', u'decid', u'titl']
[u'judg', u'enter', u'skate', u'park', u'debat']
[u'keegan', u'write', u'defens', u'pair']
[u'kefu', u'sidelin', u'month']
[u'knife', u'unlik', u'assist', u'murder', u'investig']
[u'labor', u'condemn', u'govt', u'alarm', u'deficit']
[u'labor', u'fund', u'seachang', u'clarenc']
[u'late', u'season', u'caus', u'road', u'headach']
[u'latham', u'link', u'europ']
[u'lazaridi', u'lead', u'citi', u'villa']
[u'lower', u'rosalind', u'park', u'restor']
[u'grade', u'cyclon', u'coast']
[u'mackay', u'school', u'teacher', u'stop', u'work']
[u'magistr', u'reject', u'communiti', u'meet', u'plan']
[u'charg', u'port', u'kembla', u'assault']
[u'charg', u'stab']
[u'charg', u'stab', u'attack', u'robberi']
[u'face', u'court', u'babi', u'manslaught']
[u'face', u'court', u'arrow', u'threat']
[u'jail', u'assault', u'secur', u'offic']
[u'face', u'court', u'bodi']
[u'face', u'court', u'water']
[u'reappear', u'court', u'geraldton', u'citi', u'bowl']
[u'focus', u'clash', u'leed']
[u'casualti', u'blast', u'philippin', u'airport']
[u'materi', u'girl', u'go', u'print']
[u'mayor', u'oppos', u'itiner', u'permit', u'idea']
[u'call', u'plastic', u'levi']
[u'namoi', u'valley', u'await', u'project', u'fund', u'approv']
[u'riverland', u'work', u'dole', u'project', u'announc']
[u'ireland', u'peac', u'talk']
[u'korea', u'encount', u'downer']
[u'korean', u'jet', u'shadow', u'plane']
[u'northern', u'tableland', u'candid', u'pay', u'tribut']
[u'coalit', u'demand', u'truth', u'waterfal', u'inquiri']
[u'crime', u'wane']
[u'teacher', u'offer', u'rise']
[u'teacher', u'receiv', u'improv', u'work', u'condit']
[u'delight', u'sorri', u'south', u'africa']
[u'open', u'letter', u'call', u'tiananmen', u'squar', u'inquiri']
[u'opposit', u'pledg', u'fund', u'fight', u'weed', u'feral']
[u'pair', u'charg', u'muswellbrook', u'man', u'death']
[u'pakistan', u'disarray', u'practic', u'bust']
[u'pari', u'love', u'match', u'look', u'unlik', u'prospect']
[u'perth', u'extradit', u'sydney']
[u'petrol', u'price', u'soar', u'north', u'west', u'victoria']
[u'philippin', u'warn', u'arm', u'race', u'missil', u'shield']
[u'plan', u'dalbi', u'wambo', u'council', u'merger']
[u'deni', u'bulk', u'bill', u'mean']
[u'polic', u'detain', u'gambier', u'chase']
[u'polic', u'impound', u'fine', u'driver']
[u'polic', u'probe', u'cabooltur', u'shoot']
[u'postal', u'worker', u'threaten', u'ban', u'anti', u'terror', u'kit']
[u'propos', u'ambul', u'chang', u'caus', u'concern']
[u'prosecutor', u'wont', u'chase', u'briton', u'broom', u'bash']
[u'protest', u'threaten', u'action']
[u'govt', u'consid', u'vehicl', u'registr']
[u'rain', u'snuff', u'vic', u'longest', u'fight']
[u'rain', u'danc', u'proceed', u'communiti', u'group']
[u'redback', u'unchang', u'chappel', u'game']
[u'return', u'anti', u'terror', u'kit', u'destroy', u'safeti', u'govt']
[u'ricegrow', u'cooper', u'work', u'reduc', u'cut']
[u'rio', u'gambil', u'advanc', u'florida']
[u'riverina', u'cancer', u'centr', u'soon', u'offer', u'medicar', u'cover']
[u'riverina', u'crop', u'chanc', u'look', u'slight']
[u'riverland', u'show', u'tourism', u'attract']
[u'roadwork', u'begin', u'gympi', u'brooloo', u'road']
[u'robert', u'give', u'catch', u'arsenal']
[u'runaway', u'smash', u'home', u'car']
[u'safer', u'volunt', u'worri', u'posit']
[u'francisco', u'resign', u'cover']
[u'sharehold', u'hope', u'boss', u'walli']
[u'shopkeep', u'help', u'polic', u'battl', u'solvent', u'abus']
[u'sibl', u'electrocut', u'touch', u'powerlin']
[u'singh', u'mickelson', u'withdraw', u'doral']
[u'korea', u'arrest', u'subway', u'arson', u'suspect']
[u'smoke', u'take', u'toll', u'border', u'club']
[u'south', u'africa', u'mourn', u'world', u'elimin']
[u'steven', u'clear', u'play', u'crow']
[u'stewart', u'urg', u'rule', u'chang', u'anxious', u'wait']
[u'strand', u'ship', u'final', u'free']
[u'strong', u'tremor', u'rattl', u'quak', u'china', u'provinc']
[u'studi', u'delay', u'plan', u'golf', u'cours']
[u'suspect', u'deal', u'goldcorp']
[u'suspens', u'stomp', u'flavel', u'world']
[u'aborigin', u'communiti', u'seek', u'fund', u'land']
[u'aborigin', u'communiti', u'seek', u'land', u'transfer', u'fund']
[u'teacher', u'strike', u'continu', u'north']
[u'teen', u'charg', u'supermarket', u'stab']
[u'teen', u'recov', u'meningococc', u'mening']
[u'thirteen', u'bullet', u'kill', u'woman', u'court', u'hear']
[u'thorp', u'set', u'sight', u'world', u'record']
[u'chopper', u'crash', u'jakarta', u'pool']
[u'hurt', u'bomb', u'attack', u'southern']
[u'timor', u'treati', u'readi', u'parliament']
[u'toddler', u'death', u'shock', u'resid']
[u'tribun', u'find', u'prison', u'psychiatrist', u'guilti']
[u'trulli', u'confid', u'friday', u'test', u'prove', u'boon']
[u'abattoir', u'slice', u'worker', u'number']
[u'mildura', u'face', u'court', u'drug', u'charg']
[u'send', u'birmingham', u'sink', u'villa']
[u'union', u'air', u'electrolux', u'concern']
[u'union', u'urg', u'sharehold', u'oust', u'telstra', u'chief']
[u'continu', u'militari', u'build', u'gulf']
[u'drop', u'bomb', u'iraq', u'zone']
[u'guidelin', u'highlight', u'cancer', u'risk', u'infant']
[u'olymp', u'committe', u'seek', u'extric', u'muck']
[u'rethink', u'strategi', u'turkey', u'reject']
[u'complain', u'north', u'korean', u'jet', u'shadow']
[u'push', u'iraq', u'vote', u'week']
[u'vail', u'discuss', u'medicin', u'subsidi', u'scheme']
[u'govt', u'approv', u'wind', u'farm']
[u'victoria', u'femal', u'polic', u'chaplain', u'begin', u'work']
[u'wannon', u'head', u'bushfir', u'review']
[u'polic', u'extradit', u'murder', u'suspect']
[u'waterfal', u'commission', u'critic', u'media']
[u'water', u'restrict', u'remain', u'despit', u'downpour']
[u'water', u'treatment', u'plant', u'damag', u'lightn', u'storm']
[u'webber', u'play', u'expect', u'ahead', u'australian']
[u'webber', u'relax', u'home', u'track', u'chanc']
[u'wilkinson', u'captain', u'england']
[u'wine', u'industri', u'year', u'billion', u'litr', u'vintag']
[u'woman', u'accus', u'shoot', u'husband', u'dead']
[u'aborigin', u'liaison', u'posit', u'continu']
[u'relief', u'packag', u'give', u'rebat', u'rural']
[u'agforc', u'say', u'drought', u'affect']
[u'alinghi', u'plan', u'friend', u'venu', u'undecid']
[u'american', u'samoan', u'move', u'marriag']
[u'bomb', u'explod', u'southern', u'philippin']
[u'anti', u'discrimin', u'offic', u'open', u'alic']
[u'aquat', u'centr', u'entri', u'charg', u'announc']
[u'architect', u'look', u'forward', u'wall', u'collaps', u'find']
[u'armstrong', u'rout', u'famous']
[u'arroyo', u'say', u'philippin', u'combat', u'soldier']
[u'asham', u'dublin', u'apologis', u'head', u'butt']
[u'aspirin', u'risk', u'throat', u'cancer', u'research']
[u'aussi', u'dollar', u'continu', u'climb']
[u'australia', u'appeal', u'public', u'flog', u'saudi']
[u'australia', u'face', u'lanka', u'six']
[u'australia', u'wari', u'lankan', u'spinner']
[u'aust', u'sharemarket', u'year']
[u'autopsi', u'report', u'releas', u'german', u'tourist', u'die']
[u'bacher', u'defend', u'world', u'rain', u'polici']
[u'bali', u'travel', u'warn', u'stay', u'high']
[u'banana', u'shire', u'vote', u'uphold', u'elector', u'decis']
[u'beachley', u'gold', u'coast', u'round']
[u'bergkamp', u'extend', u'stay', u'arsenal']
[u'beti', u'striker', u'toma', u'apologis', u'drive']
[u'blair', u'ivanov', u'discuss', u'iraq', u'crisi']
[u'brisban', u'barrist', u'head', u'mine', u'council']
[u'brisban', u'small', u'hous', u'plan', u'draw', u'critic']
[u'briton', u'make', u'second', u'row', u'attempt']
[u'brogden', u'pledg', u'hospit', u'wait', u'list']
[u'brumbi', u'drop', u'wayward', u'walker']
[u'bulk', u'bill', u'depend', u'larger', u'rebat', u'crean']
[u'bushfir', u'cost', u'expect', u'govt']
[u'busselton', u'bring']
[u'cairn', u'casino', u'futur', u'look', u'brighter']
[u'task', u'forc', u'address', u'land', u'council', u'woe']
[u'campasp', u'accept', u'mildura', u'posit']
[u'cape', u'york', u'author', u'lobbi', u'plan', u'race', u'meet']
[u'carlo', u'jackal', u'aid', u'face', u'court', u'germani']
[u'carr', u'promis', u'crackdown', u'scam']
[u'carr', u'quiet', u'waterfal', u'disput']
[u'chappel', u'leav', u'coach', u'door', u'open']
[u'china', u'nation', u'congress', u'open', u'beij']
[u'chines', u'congress', u'expect', u'announc', u'leadership']
[u'claim', u'draft', u'plan', u'establish', u'iraqi', u'govt']
[u'compo', u'coal', u'miner', u'extend', u'australia']
[u'want', u'log', u'polici', u'chang']
[u'coulthard', u'say', u'rule', u'encourag', u'collus']
[u'councillor', u'criticis', u'feder', u'bushfir', u'effort']
[u'council', u'seek', u'manag', u'fund']
[u'crean', u'slam', u'govt', u'respons', u'man', u'saudi', u'punish']
[u'cyclon', u'continu', u'drift', u'coastlin']
[u'cyclon', u'intensifi', u'coast']
[u'debat', u'victorian', u'drought', u'payment', u'applic']
[u'design', u'chang', u'renmark', u'entranc', u'wall']
[u'detaine', u'smash', u'window', u'door', u'baxter']
[u'dollar', u'tip', u'strengthen', u'rat', u'stay', u'hold']
[u'domest', u'violenc', u'common', u'rural', u'area', u'studi']
[u'don', u'condemn', u'pompey', u'rare', u'defeat']
[u'downer', u'urg', u'australian', u'leav', u'iraq']
[u'educ', u'union', u'want', u'school', u'resourc']
[u'electrolux', u'deni', u'job']
[u'farmer', u'welcom', u'moratorium', u'pledg']
[u'father', u'murder', u'woman', u'plead', u'public', u'help']
[u'fear', u'grow', u'gillespi', u'injuri']
[u'fifa', u'win', u'battl', u'dope', u'agenc']
[u'figur', u'highlight', u'age', u'care', u'home', u'woe']
[u'figur', u'decemb', u'econom', u'growth', u'subdu']
[u'firm', u'plan', u'nestl', u'factori']
[u'fishermen', u'hope', u'condit', u'right', u'catch']
[u'bond', u'director', u'reli', u'appeal', u'avoid']
[u'islam', u'guerilla', u'kill', u'indian', u'kashmir']
[u'german', u'devil', u'heaven']
[u'gold', u'coast', u'welcom', u'draft', u'tour', u'oper', u'legisl']
[u'goulburn', u'council', u'air', u'water', u'suppli', u'concern']
[u'govt', u'investig', u'return', u'anti', u'terror', u'kit']
[u'grain', u'grower', u'decid', u'merger']
[u'green', u'lobbi', u'labor', u'meet', u'demand', u'prefer']
[u'guard', u'colleagu', u'prison', u'shoot']
[u'hewitt', u'lead', u'australian', u'charg', u'arizona']
[u'holder', u'deportivo', u'confid', u'king', u'comeback']
[u'home', u'builder', u'nois', u'reduct', u'measur']
[u'hook', u'want', u'warn', u'train', u'bushrang']
[u'clear', u'race', u'melbourn']
[u'human', u'shield', u'determin', u'stay', u'iraq']
[u'indigen', u'issu', u'consid', u'weir', u'work']
[u'injur', u'gillespi', u'bow', u'cricket', u'world']
[u'irish', u'athlet', u'fail', u'dope', u'test']
[u'irrig', u'angri', u'water', u'share', u'plan']
[u'islam', u'leader', u'open', u'iraq', u'summit']
[u'israel', u'arrest', u'demolish', u'hous', u'west', u'bank']
[u'isra', u'sanction', u'choke', u'palestinian', u'prosper']
[u'jackson', u'call', u'bet']
[u'keira', u'prais', u'polic', u'work']
[u'killer', u'feder', u'seek', u'fresh', u'inquiri']
[u'kucera', u'urg', u'port', u'hedland', u'hospit', u'report']
[u'labor', u'advoc', u'special', u'visa', u'timor', u'refuge']
[u'land', u'council', u'disappoint', u'settlement', u'offer']
[u'late', u'winner', u'dent', u'portsmouth', u'titl', u'hop']
[u'leader', u'reject', u'critic', u'crime', u'bid']
[u'leader', u'struggl', u'reviv', u'ireland', u'peac', u'process']
[u'lead', u'nigerian', u'opposit', u'politician', u'assassin']
[u'lifesav', u'champ', u'readi']
[u'liverpool', u'want', u'houllier', u'life']
[u'long', u'boarder', u'noosa']
[u'face', u'court', u'attempt', u'murder', u'charg']
[u'appear', u'court', u'home', u'invas', u'charg']
[u'marseill', u'come', u'battl', u'french']
[u'martin', u'push', u'timor', u'treati', u'ratif']
[u'mayor', u'question', u'elect', u'pledg', u'relev']
[u'mcenro', u'name', u'laureus', u'sport', u'academi']
[u'media', u'watchdog', u'denounc', u'violenc', u'armenian']
[u'medicar', u'levi', u'rise', u'labor', u'costello']
[u'north', u'coast', u'go', u'state', u'crime', u'trend']
[u'mix', u'year', u'ahead', u'farm', u'commod']
[u'support', u'seek', u'chamber', u'commerc']
[u'student', u'brisban', u'march', u'anti']
[u'mother', u'tell', u'court', u'child', u'drop', u'babi', u'twice']
[u'motion', u'peac', u'end', u'councillor', u'evict']
[u'call', u'second', u'karratha', u'pharmaci']
[u'deni', u'drug', u'rehab', u'centr', u'claim']
[u'seek', u'chang', u'road', u'fund', u'formula']
[u'welcom', u'snowi', u'rehab', u'project', u'chang']
[u'deep', u'space', u'facil', u'open']
[u'newli', u'discov', u'daisi', u'plant', u'garden']
[u'malic', u'complac', u'columbia', u'tragedi', u'nasa']
[u'norway', u'player', u'help', u'toppl', u'england', u'die']
[u'approv', u'golden', u'point', u'rule']
[u'govt', u'releas', u'aborigin', u'affair', u'polici']
[u'govt', u'fund', u'elect', u'promis', u'budget']
[u'parti', u'guilti', u'polit', u'pragmat']
[u'woman', u'offer', u'bush', u'crucifixion', u'peac', u'deal']
[u'opposit', u'leader', u'assassin']
[u'pair', u'face', u'fraud', u'charg']
[u'palestinian', u'isra', u'disput', u'agenda']
[u'paradorn', u'crash', u'arizona']
[u'pastoralist', u'want', u'wild', u'answer']
[u'share', u'rise', u'strong', u'half', u'year', u'profit']
[u'peac', u'tshirt', u'land', u'strife']
[u'plane', u'engin', u'alleg', u'virgin', u'safeti', u'scar']
[u'plan', u'chang', u'wont', u'hurt', u'region']
[u'deni', u'plan', u'bulk', u'bill', u'mean', u'test']
[u'deni', u'troop', u'iraq']
[u'flag', u'possibl', u'decis', u'weekend']
[u'flag', u'possibl', u'decis', u'week']
[u'label', u'public', u'flog', u'appal', u'inhuman']
[u'govt', u'minist', u'oust', u'parliament']
[u'polic', u'evid', u'clark', u'contradictori', u'lawyer']
[u'polic', u'investig', u'elder', u'man', u'death']
[u'policeman', u'guilti', u'assault']
[u'polic', u'seek', u'extradit', u'pair']
[u'polic', u'road', u'safeti', u'campaign', u'success']
[u'polic', u'question', u'miss', u'document']
[u'politician', u'wrangl', u'fish', u'hall', u'fame']
[u'pont', u'pay', u'tribut', u'hussain']
[u'possibl', u'court', u'date', u'warn']
[u'postal', u'union', u'want', u'guarante', u'mail', u'safeti']
[u'postal', u'worker', u'agre', u'process', u'anti', u'terror']
[u'pound', u'slam', u'warn', u'lenienc']
[u'powel', u'optimist', u'grant', u'resolut']
[u'prayer', u'peac', u'mark', u'start', u'lend']
[u'prison', u'guard', u'charg', u'murder', u'inmat']
[u'push', u'environment', u'law', u'pass', u'quick']
[u'urg', u'driver', u'arm', u'insid']
[u'govt', u'appeal', u'coupl', u'jail', u'sentenc']
[u'postal', u'worker', u'concern', u'anti', u'terror']
[u'rain', u'stay', u'north', u'north', u'coast']
[u'rann', u'name', u'thinker', u'resid']
[u'rat', u'hold']
[u'rat', u'hold', u'dollar', u'hit', u'high']
[u'region', u'driver', u'urg', u'care']
[u'region', u'govt', u'work', u'remov', u'scourg']
[u'reliev', u'kefu', u'escap', u'surgeri']
[u'report', u'deliv', u'blast']
[u'resid', u'help', u'reduc', u'petti', u'crime']
[u'resid', u'face', u'dirti', u'water', u'problem']
[u'ridsdal', u'plan', u'spend', u'spree']
[u'emerg', u'age', u'care', u'centr']
[u'russia', u'refus', u'rule', u'veto', u'iraq']
[u'govt', u'invest', u'film']
[u'govt', u'reject', u'critic', u'region', u'effort']
[u'sailor', u'lodg', u'complaint', u'anthrax', u'vaccin']
[u'scientist', u'count', u'hundr', u'whale', u'ross']
[u'scud', u'arizona']
[u'sculli', u'transport', u'bureaucrat']
[u'selector', u'ponder', u'gillespi', u'replac']
[u'separatist', u'group', u'deni', u'involv', u'philippin']
[u'warn', u'hiker', u'sign', u'movement']
[u'shake', u'plan', u'boat', u'licenc']
[u'ship', u'free', u'sand', u'bank']
[u'south', u'african', u'calcul', u'unforgiv', u'waugh']
[u'south', u'say', u'fear', u'attack', u'north', u'korea', u'groundless']
[u'stone', u'roll', u'thankyou', u'careflight', u'helicopt']
[u'student', u'prais', u'anti', u'ralli']
[u'student', u'ralli', u'book', u'bomb']
[u'student', u'continu', u'protest']
[u'studi', u'reveal', u'politician', u'consid', u'power', u'seek']
[u'support', u'need', u'boost', u'worker', u'number']
[u'sydney', u'student', u'turn', u'forc', u'anti', u'ralli']
[u'tabcorp', u'merg', u'jupit']
[u'harvest', u'poppi', u'trial']
[u'telstra', u'deni', u'reduc', u'servic', u'age', u'disabl']
[u'telstra', u'reduc', u'specialis', u'servic', u'age']
[u'person', u'charg', u'man', u'death']
[u'thoma', u'thrill', u'award']
[u'thousand', u'student', u'ralli', u'anti', u'protest']
[u'tide', u'turn', u'favour', u'ocean', u'protect']
[u'tiger', u'showdown', u'bid', u'fifth', u'titl']
[u'seed', u'send', u'pack', u'event']
[u'toxic', u'wast', u'unlik', u'goldfield']
[u'traffic', u'manag', u'need', u'improv', u'survey']
[u'student', u'arrest', u'burn', u'flag', u'anti']
[u'union', u'call', u'smaller', u'class', u'improv', u'learn']
[u'union', u'warn', u'council', u'volunt', u'plan']
[u'monitor', u'indonesian', u'refuge']
[u'indic', u'abandon', u'second', u'resolut']
[u'poet', u'rise', u'iraq']
[u'send', u'bomber', u'deterr', u'north', u'korea']
[u'suspend', u'flight', u'japan']
[u'utrecht', u'reach', u'dutch', u'semi']
[u'venabl', u'tell', u'unit', u'concentr', u'europ']
[u'govt', u'refus', u'fund', u'rat', u'review']
[u'govt', u'target', u'fatigu', u'driver']
[u'wagga', u'rugbi', u'leagu', u'boost']
[u'wanganeen', u'say', u'travel', u'take', u'toll']
[u'water', u'crisi', u'deepen', u'world', u'suppli']
[u'water', u'restrict', u'lift', u'snowi', u'town']
[u'water', u'restrict', u'lift', u'nimbin']
[u'water', u'restrict', u'stay', u'tumbarumba']
[u'chang', u'fortun', u'wollongong']
[u'know', u'armidal', u'doctor', u'die']
[u'condit', u'claim', u'tourist', u'head', u'smash']
[u'wilkinson', u'honour', u'captain']
[u'wolf', u'send', u'pack', u'wolfsburg']
[u'woolgrow', u'urg', u'reinvent', u'sheep']
[u'work', u'begin', u'figtre', u'anglican', u'church']
[u'wright', u'threaten', u'action', u'literaci', u'materi', u'ban']
[u'highlight', u'reef', u'concern']
[u'yemeni', u'citizen', u'charg', u'support', u'qaeda']
[u'say', u'wollongong', u'communiti', u'radio']
[u'announc', u'imag', u'rethink']
[u'power', u'profit']
[u'safeti', u'bureau', u'report', u'timor', u'crash']
[u'welcom', u'coalit', u'health', u'strategi']
[u'angri', u'indian', u'star', u'boycott']
[u'apra', u'suspend', u'board', u'superannu', u'fund']
[u'assault', u'charg', u'atsic', u'leader', u'dismiss']
[u'basebal', u'legend', u'nilsson', u'bow']
[u'aussi', u'milkman', u'turn', u'golfer', u'carmichael', u'deliv']
[u'aust', u'share', u'market', u'finish']
[u'ban', u'warn', u'return', u'bench', u'support', u'victoria']
[u'basin', u'pump', u'begin', u'week']
[u'beachley', u'rid', u'gold', u'coast', u'streak']
[u'berger', u'quit', u'team', u'director']
[u'better', u'year', u'ahead', u'cattl', u'dairi', u'farmer']
[u'turnout', u'expect', u'guitar', u'championship']
[u'blame', u'duckworth', u'tell', u'south']
[u'blix', u'confid', u'extent', u'iraqi']
[u'blue', u'horror', u'lead', u'joust', u'crusad']
[u'bring', u'aussi', u'buoyant', u'lanka']
[u'britain', u'offer', u'amend', u'resolut']
[u'british', u'conductor', u'take', u'head', u'post', u'opera']
[u'confid', u'takeov', u'deal', u'ahead']
[u'report', u'profit', u'jump']
[u'break', u'hill', u'concern', u'request']
[u'bulldog', u'confirm', u'assault', u'probe']
[u'call', u'region', u'boost', u'sustain', u'growth']
[u'candid', u'contest', u'alburi', u'seat']
[u'cargil', u'beef', u'speak', u'job', u'figur']
[u'casanova', u'come', u'beat', u'muller']
[u'cathol', u'archdioces', u'merci', u'care', u'centr']
[u'celtic', u'face', u'crunch', u'fortnight', u'trophi', u'tilt']
[u'chemic', u'compani', u'prepar', u'draft']
[u'chiesa', u'goal', u'put', u'lazio', u'uefa']
[u'child', u'detaine', u'attend', u'primari', u'school']
[u'china', u'announc', u'record', u'budget', u'deficit']
[u'claim', u'elect', u'featur', u'convict', u'crimin']
[u'claim', u'psych', u'report', u'teenag', u'arsonist', u'bias']
[u'clark', u'defenc', u'request', u'charg', u'dismiss']
[u'investig']
[u'coalit', u'plan', u'swarm', u'iraq', u'zone']
[u'coff', u'hop', u'beat', u'gold', u'coast', u'lifesav', u'event']
[u'comment', u'super', u'success', u'pointless']
[u'commonwealth', u'offer', u'fund']
[u'consult', u'hospit', u'redevelop', u'plan']
[u'killer', u'transfer', u'act', u'mentor']
[u'coron', u'drive', u'upgrad', u'continu', u'draw']
[u'corrupt', u'watchdog', u'cite', u'polic', u'miss']
[u'cosmet', u'surgeri', u'start', u'bring', u'rear']
[u'council', u'back', u'nativ', u'veget', u'clearanc']
[u'council', u'say', u'load', u'zone', u'problem', u'unavoid']
[u'council', u'fear', u'possibl', u'rail', u'link', u'closur']
[u'court', u'order', u'doctor', u'incit', u'bulk', u'bill']
[u'court', u'tell', u'snowtown', u'accus', u'angri', u'miss']
[u'crow', u'recal', u'roo', u'semi']
[u'cyclon', u'continu', u'drift', u'queensland', u'coast']
[u'cyclon', u'lose', u'intens', u'head', u'north']
[u'deadlin', u'extend', u'coastal', u'develop']
[u'defenc', u'forc', u'readi', u'action', u'iraq']
[u'dent', u'downshift', u'serv', u'scottsdal']
[u'derbi', u'pair', u'face', u'court', u'incid']
[u'develop', u'ask', u'provid', u'inform']
[u'doctor', u'group', u'question', u'medicar']
[u'donald', u'quit', u'threat', u'world', u'snub']
[u'downer', u'deni', u'bulli', u'timor', u'treati']
[u'downer', u'head', u'dili', u'sign', u'east', u'timor']
[u'drainag', u'scheme']
[u'driver', u'urg', u'heed', u'flood', u'warn']
[u'elber', u'doubl', u'send', u'bayern', u'german', u'final']
[u'palestinian', u'kill', u'gaza', u'raid']
[u'storm', u'earli', u'lead', u'dubai']
[u'emkanimblaem', u'captain', u'stay', u'despit', u'inquiri', u'cloud']
[u'expert', u'issu', u'world', u'sugar', u'price', u'warn']
[u'fair', u'trade', u'polic', u'warn', u'swindl']
[u'farmer', u'alien', u'tree', u'clear', u'agforc']
[u'farmer', u'tell', u'capitalis', u'organ', u'canola']
[u'farm', u'subsidi', u'starv', u'africa', u'annan', u'tell', u'rich']
[u'north', u'banana', u'allow']
[u'feyenoord', u'line', u'semi', u'final', u'holder', u'ajax']
[u'fiji', u'aust', u'sign', u'counter', u'terror', u'agreement']
[u'fiji', u'soldier', u'trap', u'hoodlum', u'east', u'timor']
[u'damag', u'bairnsdal', u'build']
[u'fli', u'invad', u'bush']
[u'defenc', u'secretari', u'launch', u'anti']
[u'freeman', u'wave', u'grand', u'prix', u'flag']
[u'govt', u'agre', u'seqld', u'public', u'transport']
[u'govt', u'offer', u'help', u'small', u'busi', u'affect']
[u'green', u'question', u'burrup', u'develop']
[u'hill', u'tightlip', u'anthrax', u'vaccin', u'refus']
[u'hop', u'croc', u'match', u'boost', u'townsvill', u'profil']
[u'howard', u'condemn', u'latest', u'east', u'suicid', u'bomb']
[u'howard', u'deni', u'timor', u'treati', u'blackmail']
[u'howard', u'unimpress', u'student', u'anti', u'ralli']
[u'iraq', u'destroy', u'samoud', u'missil']
[u'iraqi', u'armi', u'profession', u'rapist', u'vanston']
[u'iraq', u'barrier', u'armstrong', u'tour', u'franc']
[u'israel', u'answer', u'bomb', u'refuge', u'camp']
[u'isra', u'secur', u'cabinet', u'meet', u'suicid']
[u'israel', u'raid', u'gaza', u'strip', u'retali', u'suicid']
[u'jewel', u'dangl', u'carat', u'thiev', u'accept']
[u'juri', u'retir', u'nightclub', u'shoot', u'trial']
[u'kalgoorli', u'hous', u'estat', u'facelift']
[u'keegan', u'boost', u'citi', u'bernstein', u'quit']
[u'keelti', u'question', u'need', u'senat', u'inquiri', u'bali']
[u'letter', u'health', u'fund', u'plan', u'hike']
[u'liabil', u'insur', u'leav', u'regatta', u'limbo']
[u'lithgow', u'power', u'time']
[u'mallorca', u'join', u'recreativo', u'king', u'final']
[u'beat', u'leed', u'newcastl', u'stumbl']
[u'maradona', u'junior', u'scotland']
[u'mcbride', u'hospit', u'brain', u'haemorrhag']
[u'meet', u'focus', u'child', u'care']
[u'melbourn', u'train', u'crash', u'probe', u'continu']
[u'mentor', u'program', u'review', u'robert', u'case']
[u'ahead', u'rolleston']
[u'miner', u'union', u'meet', u'attend']
[u'miss', u'teenag', u'declar', u'dead']
[u'women', u'seek', u'work', u'antarctica']
[u'say', u'land', u'forc', u'resid', u'away']
[u'conscienc', u'vote', u'clone']
[u'upbeat', u'wildlif', u'park']
[u'visit', u'impact', u'gippsland']
[u'nation', u'park', u'media', u'campaign']
[u'nat', u'question', u'drought', u'declar', u'zone']
[u'natur', u'resourc', u'dept', u'get', u'boost', u'clear']
[u'defend', u'kiwi', u'inclus', u'eye', u'china']
[u'life', u'plan', u'nestl', u'factori']
[u'evid', u'saudi', u'financ', u'bali', u'bomber', u'polic']
[u'noffk', u'stun', u'blue']
[u'noffk', u'star', u'bull', u'rock', u'blue']
[u'nomin', u'open', u'council', u'elect']
[u'need', u'resolut', u'china']
[u'northam', u'busi', u'unsur', u'space', u'centr', u'impact']
[u'tear', u'oust', u'protea', u'say', u'pont']
[u'elect', u'ballot', u'order', u'announc']
[u'prefer', u'deal', u'underway', u'nomin']
[u'govt', u'boost', u'indigen', u'job', u'scheme']
[u'polic', u'search', u'alleg', u'kidnapp']
[u'oakey', u'teacher', u'strike', u'today']
[u'ombudsman', u'hear', u'central', u'concern']
[u'pakistan', u'face', u'world', u'flop', u'probe']
[u'parti', u'pledg', u'power', u'polic']
[u'perilya', u'confid', u'life', u'reach']
[u'philippin', u'author', u'davao', u'airport', u'bomber']
[u'pioneer', u'honour', u'anniversari', u'hinkler', u'solo']
[u'blackmail', u'timor', u'treati', u'brown']
[u'recal', u'parliament', u'debat']
[u'prais', u'bachtiar', u'bali', u'investig']
[u'polic', u'hunt', u'servic', u'station', u'bandit']
[u'polic', u'probe', u'crash', u'attempt', u'bank', u'robberi']
[u'powder', u'return', u'anti', u'terror', u'kit']
[u'probe', u'begin', u'death', u'prison']
[u'tourism', u'industri', u'await', u'cabinet']
[u'rain', u'hit', u'miss', u'western']
[u'ratepay', u'group', u'want', u'compulsori', u'vote']
[u'read', u'consolid', u'playoff', u'berth', u'wolv', u'stumbl']
[u'record', u'number', u'candid', u'run', u'poll']
[u'reed', u'boat', u'crew', u'embark', u'histor', u'voyag']
[u'resid', u'warn', u'mozzi', u'risk']
[u'retail', u'trade', u'figur', u'weaker', u'expect']
[u'revamp', u'nambour', u'birth', u'unit', u'open']
[u'volunt', u'protest', u'manag', u'plan']
[u'rio', u'ralli', u'past', u'verkerk', u'florida', u'quarter']
[u'brew', u'blue', u'ribbon', u'contractor', u'plan']
[u'condemn', u'protest', u'anzac', u'parad']
[u'rule', u'clark', u'case', u'march']
[u'saddam', u'issu', u'order', u'hide', u'weapon', u'powel']
[u'schumach', u'say', u'team', u'work', u'unfair']
[u'senat', u'pass', u'timor', u'treati']
[u'shire', u'hop', u'offer', u'leas', u'life']
[u'shire', u'look', u'share', u'health', u'resourc']
[u'space', u'giant', u'admit', u'pass', u'secret', u'china']
[u'special', u'visa', u'wont', u'help', u'timor', u'refuge']
[u'sport', u'club', u'unhappi', u'recreat', u'report']
[u'springborg', u'visit', u'ail']
[u'student', u'disciplin', u'truanci', u'anti']
[u'super', u'success', u'pointless', u'exercis']
[u'support', u'driver', u'fatigu', u'plan']
[u'suspect', u'arrest', u'solomon', u'polic', u'assassin']
[u'suspect', u'child', u'abus', u'victim', u'safe', u'victoria']
[u'takeov', u'deal', u'surpris', u'centrebet']
[u'talk', u'continu', u'stop', u'union', u'action', u'airlin']
[u'telstra', u'reject', u'claim', u'hinder', u'competit']
[u'telstra', u'domin', u'ongo', u'competit']
[u'test', u'test']
[u'councillor', u'south', u'coast', u'seat']
[u'palestinian', u'kill', u'isra', u'raid', u'gaza']
[u'tourism', u'industri', u'hop', u'japanes', u'visitor']
[u'tradit', u'owner', u'firm', u'continu', u'agreement']
[u'union', u'drop', u'industri', u'action', u'virgin', u'blue']
[u'unit', u'injuri', u'toll', u'take', u'kean', u'silvestr']
[u'upfront', u'fee', u'patient', u'minimis']
[u'homeless', u'cyclon', u'ravag']
[u'deploy', u'north', u'korea', u'shouldnt']
[u'expel', u'member', u'iraqi', u'mission']
[u'research', u'claim', u'aspirin', u'prevent', u'colon']
[u'vaughan', u'keen', u'england', u'captain']
[u'lobbi', u'govt', u'bushfir', u'support']
[u'virgin', u'safeti', u'disput', u'head']
[u'opposit', u'want', u'polic', u'station', u'list', u'public']
[u'iraq', u'immin', u'perth', u'reverend']
[u'memori', u'appropri', u'backdrop', u'protest']
[u'seal', u'long', u'term', u'suppli', u'deal', u'japan']
[u'water', u'flow', u'expect', u'reach', u'meninde']
[u'welfar', u'group', u'criticis', u'tabcorp', u'jupit', u'merger']
[u'wicket', u'tumbl', u'bull', u'rock', u'blue']
[u'woman', u'dead', u'children', u'injur', u'accid']
[u'woodchip', u'firm', u'angri', u'act', u'terror']
[u'wood', u'pleas', u'test', u'repair', u'knee']
[u'world', u'record', u'attempt', u'fail']
[u'world', u'sugar', u'price', u'tip', u'fall']
[u'youth', u'plead', u'guilti', u'loot', u'fire']
[u'zimbabw', u'fan', u'arrest', u'pakistan', u'match']
[u'aborigin', u'leadership', u'honour']
[u'coron', u'set', u'paramet', u'immigr', u'inquest']
[u'airlin', u'say', u'council', u'misunderstand', u'fund', u'letter']
[u'alianza', u'lima', u'undo', u'late', u'cobreloa', u'strike']
[u'alterc', u'leav', u'pair', u'hospit']
[u'expect', u'support', u'payment', u'scheme']
[u'amrozi', u'hand', u'prosecutor']
[u'arafat', u'nomin', u'deputi', u'palestinian', u'author']
[u'arafat', u'report', u'choos', u'prime', u'minist']
[u'paint', u'enter', u'archibald', u'prize']
[u'arson', u'squad', u'probe', u'hous', u'blaze']
[u'artist', u'withdraw', u'elect', u'campaign']
[u'roma', u'striker', u'montella', u'readi', u'quit', u'azzurri']
[u'aust', u'creat', u'ambassador', u'counter', u'terror']
[u'australia', u'charg', u'semi']
[u'barrichello', u'lead', u'qualifi']
[u'barrichello', u'upstag', u'schu']
[u'bergkamp', u'target', u'chelsea', u'clash']
[u'berri', u'barmera', u'council', u'give', u'field', u'road', u'prioriti']
[u'billiton', u'support', u'communiti', u'project']
[u'crowd', u'tip', u'folk', u'festiv']
[u'blaze', u'ravag', u'northcliff', u'hous']
[u'boca', u'junior', u'coast', u'libertador']
[u'briefcas', u'spark', u'fals', u'alarm', u'powel', u'hotel']
[u'broadband', u'internet', u'connect', u'surg']
[u'build', u'industri', u'inquiri', u'stunt', u'union']
[u'bulldoz', u'run', u'man']
[u'bull', u'slow', u'blue', u'chase']
[u'bush', u'call', u'multin', u'effort', u'north', u'korea']
[u'bushfir', u'affect', u'farmer', u'urg', u'appli']
[u'button', u'need', u'quick', u'start', u'say', u'fisichella']
[u'water', u'suppli', u'fund', u'fast', u'track']
[u'speed', u'indigen', u'negoti', u'process']
[u'cambodia', u'king', u'readi', u'abdic', u'request']
[u'candid', u'ballot', u'paper', u'posit']
[u'carr', u'plan', u'hospit', u'emerg', u'giant']
[u'carr', u'promis', u'lower', u'patient', u'wait', u'time']
[u'chievo', u'doubli', u'determin', u'master', u'milan']
[u'child', u'offenc', u'send', u'jail']
[u'claim', u'drought', u'imag', u'keep', u'tourist', u'away']
[u'claim', u'resign', u'littl', u'impact']
[u'communiti', u'doubt', u'insur', u'financi', u'viabil']
[u'communiti', u'farewel', u'young', u'shock', u'victim']
[u'coober', u'pedi', u'donat', u'opal', u'bendigo', u'race']
[u'cool', u'respons', u'give', u'antarct', u'posit']
[u'corinthian', u'fight', u'earn', u'semi', u'final', u'draw']
[u'coron', u'hand', u'bushfir', u'find']
[u'council', u'donat', u'fund', u'carniv', u'flower']
[u'council', u'seek', u'pedestrian', u'cross', u'fund']
[u'countri', u'mayor', u'associ', u'say', u'rate', u'peg']
[u'cross', u'examin', u'continu', u'burk']
[u'cub', u'bear', u'virtual', u'extinct', u'south', u'china', u'tiger']
[u'cyclon', u'erica', u'weaken', u'offshor']
[u'dean', u'charg', u'breach', u'elector', u'law']
[u'defenc', u'anchor', u'real', u'renaiss']
[u'dem', u'account', u'govt']
[u'drought', u'slash', u'farm', u'incom']
[u'dung', u'beetl', u'import', u'solut']
[u'editor', u'trial', u'akbar', u'caricatur']
[u'edward', u'address', u'issu', u'geraldton', u'meet']
[u'english', u'dismiss', u'aust', u'friend', u'plan']
[u'expo', u'focus', u'small', u'busi']
[u'dismiss', u'roo', u'friend', u'plan']
[u'famili', u'distress', u'hospit', u'wait']
[u'farmer', u'hop', u'rain']
[u'farmer', u'play', u'impact', u'rural', u'commod', u'index']
[u'farm', u'hero', u'induct', u'agricultur', u'hall']
[u'fenix', u'notch', u'libertador', u'goal']
[u'feofanova', u'miss', u'sindelfingen', u'meet']
[u'festiv', u'celebr', u'intern', u'women']
[u'commission', u'deni', u'muzzl', u'offic']
[u'firefight', u'contain', u'asphalt', u'factori', u'blaze']
[u'fischer', u'tempt', u'america']
[u'send', u'trial', u'sydney', u'gang', u'rap']
[u'year', u'compli', u'court', u'summon', u'india']
[u'flight', u'centr', u'announc', u'british', u'expans']
[u'flood', u'water', u'stall', u'cattl', u'export']
[u'forsyth', u'lead', u'dubai', u'lurk']
[u'south', u'korean', u'soldier', u'kill', u'timor', u'accid']
[u'french', u'readi', u'dublin', u'battl']
[u'fuel', u'steal', u'rise', u'polic']
[u'gambil', u'kendrick', u'advanc', u'delray', u'event']
[u'gap', u'iraq', u'kuwait', u'border', u'fenc', u'access']
[u'gilchrist', u'get', u'aust', u'blaze', u'start']
[u'set', u'sight', u'final', u'return']
[u'golfer', u'split', u'qatar', u'master']
[u'govt', u'bodi', u'order', u'compo', u'sydney', u'bushfir']
[u'govt', u'reject', u'claim', u'pacif', u'solut', u'fail']
[u'govt', u'wont', u'releas', u'prosecut', u'advic', u'build']
[u'gunnedah', u'spotlight', u'doctor', u'gather']
[u'half', u'children', u'overboard', u'allow', u'stay']
[u'hama', u'chief', u'bomb', u'maker', u'arrest']
[u'hewitt', u'scud', u'arizona']
[u'high', u'court', u'grant', u'woman', u'right', u'challeng']
[u'hop', u'motorcycl', u'safeti', u'campaign', u'curb']
[u'howard', u'play', u'compromis']
[u'human', u'shield', u'expel', u'iraq']
[u'hurrican', u'swamp', u'stormer', u'otago', u'bull']
[u'illawarra', u'green', u'launch', u'transport', u'polici']
[u'india', u'wont', u'repeat', u'kenya', u'mistak', u'ganguli']
[u'indigen', u'econom', u'forum', u'continu', u'alic']
[u'injur', u'arron', u'pull', u'world', u'indoor']
[u'insur', u'woe', u'threaten', u'poni', u'club', u'championship']
[u'high', u'mildura', u'abattoir', u'sale']
[u'intern', u'energi', u'contract', u'sign']
[u'iraq', u'engag', u'wil', u'charad', u'say', u'bush']
[u'iraq', u'unrest', u'gut', u'livestock', u'export']
[u'irympl', u'home', u'ambul', u'station']
[u'isra', u'tank', u'occupi', u'northern', u'gaza', u'strip']
[u'issu', u'overcom', u'project']
[u'japan', u'market', u'slump']
[u'jockey', u'return', u'gold', u'coast']
[u'juri', u'murder', u'trial']
[u'kahn', u'abus', u'longer', u'bayern']
[u'kaiserslautern', u'look', u'bundesliga', u'boost']
[u'kenya', u'opt', u'india']
[u'kosciuszko', u'nation', u'park', u'task', u'forc', u'keep', u'small']
[u'larg', u'hole', u'iraqi', u'kuwaiti', u'border', u'fenc']
[u'latham', u'red']
[u'lib', u'bega', u'candid', u'secur', u'spot', u'ballot']
[u'life', u'sweet', u'lolli', u'hungri', u'britain']
[u'macarthur', u'crippl', u'yacht', u'near', u'fail']
[u'appear', u'court', u'child', u'sexual', u'abus']
[u'die', u'mine', u'accid']
[u'mango', u'troppo', u'idea', u'grower']
[u'injur', u'blast']
[u'jail', u'assault', u'women']
[u'marin', u'expert', u'discuss', u'shark', u'number']
[u'market', u'hit', u'year']
[u'marseill', u'lure', u'velodrom', u'cauldron']
[u'media', u'group', u'urg', u'journalist', u'safeti', u'iraq']
[u'micronesia', u'presid', u'lose', u'nation', u'elect']
[u'minist', u'declar', u'atom', u'site', u'rehab', u'scratch']
[u'dengu', u'fever', u'case', u'confirm']
[u'tout', u'fish', u'lure', u'tourist']
[u'muscat', u'miss', u'firm', u'clash']
[u'nation', u'secur', u'issu', u'focus']
[u'nervous', u'investor', u'market', u'year']
[u'fisheri', u'protect', u'boat', u'patrol']
[u'soldier', u'kill', u'avalanch', u'indian']
[u'noffk', u'prove', u'potent']
[u'northam', u'chamber', u'commerc', u'presid']
[u'coalit', u'gambl', u'polici']
[u'health', u'deni', u'hospit', u'cut']
[u'polic', u'search', u'bodi', u'attach', u'cano']
[u'organis', u'unhappi', u'lack', u'pilot']
[u'pair', u'plead', u'guilti', u'polic', u'murder']
[u'palac', u'theatr', u'revamp']
[u'parkinson', u'gold', u'coast']
[u'plane', u'veer', u'tarmac', u'melbourn']
[u'welcom', u'laden', u'execut']
[u'polic', u'hunt', u'copper', u'wire', u'thiev']
[u'polic', u'injur', u'brawl', u'outsid', u'hotel']
[u'policeman', u'jail', u'student', u'offic', u'death']
[u'polic', u'probe', u'blaze', u'geriatr', u'home']
[u'polic', u'probe', u'suspici', u'death', u'rockhampton']
[u'polic', u'urg', u'long', u'weekend', u'road', u'safeti']
[u'postal', u'worker', u'send', u'home', u'chemic', u'scare']
[u'puppi', u'problem', u'pooch']
[u'qantaslink', u'announc', u'servic']
[u'queensland', u'split', u'clone', u'stem', u'cell']
[u'question', u'nuclear', u'test', u'site', u'clean']
[u'radcliff', u'male', u'pacemak', u'upset', u'kenyan', u'rival']
[u'raikkonen', u'put', u'mclaren', u'practic']
[u'recreativo', u'pois', u'year', u'drought']
[u'refuge', u'famili', u'await', u'lawyer', u'return']
[u'renmark', u'woman', u'charg', u'fatal', u'stab']
[u'rig', u'firm', u'fin', u'worker', u'death']
[u'riverland', u'polic', u'chief', u'step']
[u'rock', u'lobster', u'price', u'dive']
[u'row', u'competit', u'ahead']
[u'saddam', u'tell', u'bush', u'rememb', u'vietnam']
[u'sampra', u'like', u'skip', u'indian', u'well']
[u'sandalwood', u'see', u'super', u'farmer']
[u'savag', u'get', u'death', u'threat', u'dublin', u'head', u'butt']
[u'schooli', u'review', u'delay', u'frustrat', u'beatti']
[u'soorley', u'expect', u'stand', u'june']
[u'spirit', u'forc', u'final', u'kingz', u'shock', u'newcastl']
[u'student', u'injur', u'collid']
[u'sydney', u'regent', u'theatr', u'residenti', u'site']
[u'technic', u'problem', u'blame', u'algerian', u'plane', u'crash']
[u'teen', u'face', u'court', u'rape', u'charg']
[u'telstra', u'leav', u'hong', u'kong', u'lemon', u'fell']
[u'tennant', u'alic', u'teacher', u'accept']
[u'hand', u'financi', u'boost']
[u'tourism', u'push', u'aim', u'lure', u'coast', u'resid']
[u'tourism', u'retail', u'happi', u'posit', u'figur']
[u'turkish', u'militari', u'head', u'iraqi', u'border']
[u'oncologist', u'resign', u'ballarat', u'hospit']
[u'union', u'monitor', u'abattoir', u'chang']
[u'unit', u'owner', u'benefit', u'bodi', u'corpor', u'law']
[u'presid', u'say', u'iraq', u'justifi']
[u'secur', u'council', u'readi', u'debat', u'iraq', u'resolut']
[u'legal', u'accus', u'economis', u'case']
[u'polic', u'ask', u'explain', u'secret', u'file']
[u'viduka', u'warn', u'gunner']
[u'virgin', u'blue', u'conced', u'engin', u'flight', u'check']
[u'virtual', u'courtroom', u'grow', u'popular']
[u'govt', u'reject', u'hospit', u'close', u'claim']
[u'wale', u'scotland', u'wooden', u'spoon', u'chase']
[u'fear', u'forc', u'youth', u'championship']
[u'waugh', u'clark', u'lead', u'blue', u'reviv']
[u'wayn', u'dean', u'induct', u'surf', u'hall', u'fame']
[u'webber', u'make', u'fli', u'start']
[u'wenger', u'unmov', u'fergi', u'jib']
[u'westpac', u'centralis', u'offic']
[u'winni', u'mandela', u'face', u'fraud', u'charg']
[u'womadelaid', u'aim', u'kindr', u'vibe']
[u'world', u'pitch', u'suit', u'lanka', u'say', u'sangakkara']
[u'women', u'honour', u'equal', u'contribut']
[u'alic', u'darwin', u'rail', u'link', u'roll']
[u'anti', u'smoke', u'group', u'target', u'intern', u'women']
[u'anti', u'smoke', u'lobbi', u'support', u'coalit', u'tobacco']
[u'argentin', u'judg', u'indict', u'iranian', u'bomb']
[u'aust', u'charg', u'semi']
[u'australia', u'book', u'semi', u'final', u'spot']
[u'australia', u'order', u'embassi', u'home', u'iraq']
[u'gun', u'advanc', u'indian', u'well']
[u'blix', u'deliv', u'posit', u'report', u'iraq']
[u'blue', u'crush', u'crusad', u'red', u'remain', u'winless']
[u'blue', u'signal', u'intent', u'thrash', u'crusad']
[u'blue', u'meet', u'bull', u'final']
[u'bomber', u'thrash', u'dog', u'practic', u'match']
[u'bracken', u'playng', u'wait', u'game']
[u'broadband', u'crash', u'strand', u'telstra', u'surfer']
[u'broadway', u'strike', u'orchestra', u'cut']
[u'brogden', u'defend', u'industri', u'relat', u'polici']
[u'bull', u'struggl', u'declar']
[u'burma', u'claim', u'black', u'list', u'unfair']
[u'bushfir', u'appeal', u'chief', u'defend', u'alloc', u'assess']
[u'cat', u'clip', u'brumbi', u'super', u'thriller']
[u'withdraw', u'book']
[u'chile', u'decid', u'resolut', u'support']
[u'china', u'say', u'admit', u'bomb']
[u'coalit', u'crack', u'illeg', u'cigarett', u'sale']
[u'coulthard', u'win', u'aust', u'grand', u'prix']
[u'court', u'order', u'compens', u'srebrenica', u'massacr']
[u'cyclon', u'watch', u'storm', u'coast']
[u'docker', u'accus', u'port', u'rough', u'play']
[u'donald', u'announc', u'retir']
[u'downer', u'call', u'north', u'korea', u'ambassador', u'missil']
[u'duck', u'shoot', u'open', u'amid', u'protest']
[u'track', u'dubai']
[u'embassi', u'advis', u'australian', u'leav', u'israel']
[u'employ', u'welcom', u'coalit', u'polici']
[u'engin', u'work', u'bog', u'jumbo']
[u'enterpris', u'minist', u'defend', u'respons', u'question']
[u'expert', u'discuss', u'possibl', u'shark', u'extinct']
[u'extrem', u'fundrais', u'drive', u'irish', u'brother']
[u'driver', u'battl', u'pole', u'posit']
[u'fatal', u'mark', u'begin', u'long', u'weekend']
[u'fish', u'crush', u'martin', u'set', u'semi', u'clash', u'rio']
[u'kill', u'gaza', u'strip', u'fight']
[u'ganguli', u'guid', u'india', u'victori']
[u'govt', u'car', u'sell', u'minist', u'vip', u'address']
[u'group', u'lobbi', u'adopt']
[u'hama', u'secur', u'chief', u'kill', u'west', u'bank', u'attack']
[u'hantuchova', u'begin', u'defenc', u'victori']
[u'hewitt', u'scud', u'cours', u'final', u'showdown']
[u'hong', u'kong', u'angler', u'make', u'massiv', u'cannabi', u'catch']
[u'howard', u'face', u'small', u'protest', u'land']
[u'howard', u'face', u'anti', u'protest']
[u'howard', u'decid', u'troop', u'commit']
[u'human', u'right', u'court', u'order', u'srebrenica', u'massacr']
[u'hundr', u'ralli', u'peac', u'howard', u'open']
[u'indian', u'muslim', u'march', u'threat']
[u'injur', u'jayasuriya', u'doubt', u'india', u'clash']
[u'inquest', u'tourist', u'death', u'adjourn']
[u'internet', u'speed', u'record', u'break', u'say']
[u'iraq', u'destroy', u'samoud', u'missil', u'offici']
[u'iraq', u'domin', u'trip']
[u'jordan', u'deni', u'east', u'deal']
[u'king', u'cat', u'hawk', u'notch', u'play', u'win']
[u'klusen', u'despond', u'latest', u'heartbreak']
[u'labor', u'blast', u'delay', u'deport', u'iraq']
[u'labor', u'get', u'green', u'prefer', u'margin']
[u'land', u'owner', u'critic', u'cwealth', u'consult']
[u'alleg', u'imperson', u'taxi', u'driver']
[u'market', u'brace', u'pressur']
[u'mason', u'miss', u'bulldog', u'open']
[u'minardi', u'abort', u'qualifi', u'bold']
[u'muslim', u'cleric', u'sentenc', u'prison', u'incit']
[u'nauru', u'presid', u'critic', u'condit']
[u'owner', u'keen', u'reloc', u'cannon']
[u'board', u'calm', u'italian', u'polit', u'nerv']
[u'korea', u'spokesman', u'give', u'omin', u'warn']
[u'govt', u'criticis', u'elect', u'promis']
[u'polic', u'search', u'bodi', u'spot']
[u'omalley', u'trail', u'palmer', u'christchurch']
[u'minist', u'criticis', u'women', u'focus']
[u'oppn', u'say', u'bacon', u'deni', u'heritag']
[u'pampl', u'stay', u'touch']
[u'pedestrian', u'motorist', u'kill', u'road']
[u'pie', u'crow', u'decid']
[u'pie', u'season', u'final']
[u'polic', u'search', u'cano']
[u'polic', u'investig', u'fatal', u'pedestrian', u'accid']
[u'polic', u'investig', u'suspici', u'death', u'farm']
[u'pybus', u'readi', u'quit']
[u'qanta', u'train', u'strike', u'breaker', u'instead', u'staff']
[u'hockey', u'team', u'notch', u'win', u'darwin']
[u'radcliff', u'opt', u'cross', u'countri', u'defenc']
[u'red', u'remain', u'winless']
[u'red', u'remain', u'winless', u'brumbi', u'stun']
[u'rmit', u'plan', u'sell', u'bundoora', u'site']
[u'rooki', u'fail', u'spark', u'qualifi']
[u'roo', u'fine', u'tune', u'game', u'crow']
[u'call', u'action', u'gambl', u'issu']
[u'sampra', u'withdraw', u'indian', u'well']
[u'schu', u'borrow', u'barrichello', u'set', u'clinch']
[u'slater', u'fourth', u'round', u'gold', u'coast']
[u'soprano', u'star', u'gandolfini', u'sue', u'contract']
[u'south', u'america', u'host', u'soccer', u'world']
[u'stolz', u'move', u'second', u'christchurch']
[u'sunris', u'partner', u'look', u'asia', u'custom']
[u'reform', u'need', u'mine', u'explor', u'inquiri']
[u'teacher', u'threaten', u'industri', u'action', u'region']
[u'tens', u'secur', u'council', u'debat', u'continu']
[u'show', u'go', u'broadway', u'actor']
[u'trulli', u'fastest', u'practic']
[u'babyhol', u'give', u'birth', u'child']
[u'muslim', u'cleric', u'jail', u'incit', u'hostil']
[u'ulirach', u'ban', u'year', u'dope']
[u'secur', u'council', u'defer', u'iraq', u'decis']
[u'impos', u'econom', u'sanction', u'mugab', u'offici']
[u'troop', u'accus', u'enter', u'prohibit', u'zone']
[u'lib', u'tell', u'feder', u'butt']
[u'health', u'warn', u'pool', u'owner', u'amoeba']
[u'prison', u'crackdown', u'mobil', u'phone']
[u'weather', u'bureau', u'issu', u'cyclon', u'warn', u'tiwi']
[u'woman', u'critic', u'hurt', u'boonah', u'cliff', u'fall']
[u'zabel', u'secur', u'victori', u'season']
[u'zimbabwean', u'vermeulen', u'suffer', u'crack', u'skull']
[u'alinghi', u'crew', u'return', u'home', u'hero', u'welcom']
[u'ammunit', u'concern', u'hamper', u'shoot', u'rang']
[u'arson', u'attack', u'increas']
[u'aust', u'zealand', u'celebr', u'trade', u'agreement']
[u'aust', u'fail', u'reach', u'agreement', u'iraq']
[u'aust', u'iraq', u'differ', u'wont', u'affect', u'trade', u'howard']
[u'australia', u'upgrad', u'travel', u'warn', u'east']
[u'auxerr', u'lose', u'streak', u'renn']
[u'beachley', u'rid', u'high', u'gold', u'coast']
[u'black', u'cap', u'overpow', u'zimbabw']
[u'blair', u'threaten', u'quit', u'iraq']
[u'bomber', u'thrash', u'bulldog', u'practic', u'match']
[u'bomb', u'defus', u'centr', u'jeddah']
[u'british', u'proof', u'armour', u'jaguar', u'report']
[u'broadway', u'striker', u'march', u'theatr', u'stay', u'close']
[u'burn', u'properti', u'block', u'price', u'skyrocket']
[u'accid', u'southern', u'indian', u'leav', u'seven', u'dead']
[u'bushfir', u'helicopt', u'pilot', u'make', u'recoveri']
[u'bushfir', u'relief', u'fund', u'distribut', u'april']
[u'bush', u'say', u'mobil', u'weapon', u'laboratori']
[u'canberra', u'road', u'vamp']
[u'capriati', u'davenport', u'eas', u'indian', u'well', u'fourth']
[u'carlo', u'want', u'arsenal', u'madrid']
[u'carr', u'promis', u'smaller', u'class', u'labor', u'launch']
[u'cat', u'king', u'hawk', u'notch', u'play', u'win']
[u'celtic', u'take', u'firm', u'derbi']
[u'chelsea', u'forc', u'arsenal', u'draw']
[u'chilean', u'presid', u'say', u'deadlin', u'short']
[u'china', u'plan', u'massiv', u'reloc', u'scheme', u'beat']
[u'chines', u'farmer', u'suspect', u'cafe', u'bomb']
[u'coalit', u'pledg', u'fight', u'homeless']
[u'colombia', u'pena', u'take', u'fourth', u'stage', u'tour', u'murcia']
[u'come', u'festiv', u'children', u'kick']
[u'coron', u'investig', u'meningococc', u'mening']
[u'coron', u'warn', u'govt', u'clean', u'public', u'health']
[u'coulthard', u'win', u'aust', u'grand', u'prix']
[u'crean', u'say', u'lade', u'jail']
[u'crow', u'forc', u'travel', u'melbourn', u'preseason']
[u'crow', u'roll', u'roo']
[u'disappoint', u'start', u'matta']
[u'docker', u'accus', u'port', u'rough', u'play']
[u'docker', u'criticis', u'port', u'tactic']
[u'hunt']
[u'enriqu', u'week', u'coach']
[u'expert', u'say', u'aust', u'troop', u'gulf', u'novemb']
[u'fake', u'shark', u'highlight', u'extinct', u'worri']
[u'famili', u'care', u'centr', u'alight']
[u'ferrari', u'claim']
[u'fish', u'meet', u'gambil', u'florida', u'decid']
[u'franc', u'alain', u'ducass', u'name', u'world', u'best', u'cook']
[u'game', u'tasmanian', u'circus', u'festiv']
[u'german', u'leagu', u'match', u'report']
[u'glori']
[u'grand', u'prix', u'criticis', u'blatant', u'tobacco']
[u'green', u'tasmanian', u'duck', u'season']
[u'green', u'shoot', u'opposit', u'status']
[u'hagley', u'primari', u'school', u'develop']
[u'hama', u'threaten', u'target', u'isra', u'politician']
[u'henri', u'doubt', u'roma', u'clash']
[u'hewitt', u'agassi', u'draw', u'tough', u'oppon', u'indian']
[u'hewitt', u'philippoussi', u'clash', u'arizona', u'final']
[u'hewitt', u'dent', u'hop']
[u'howard', u'play', u'prospect', u'capit', u'punish']
[u'howard', u'promis', u'trade', u'deal', u'wont', u'shut']
[u'howard', u'talk', u'death', u'penalti', u'aust']
[u'humphrey', u'kick', u'ireland', u'sight', u'grand']
[u'hussain', u'call', u'separ', u'test']
[u'indonesian', u'stage', u'mass', u'prayer', u'iraq']
[u'indonesia', u'ralli', u'draw', u'peac']
[u'intern', u'crimin', u'court', u'elect', u'judg']
[u'intern', u'warrant', u'peruvian']
[u'intern', u'women', u'gather', u'end', u'violenc']
[u'intern', u'women', u'forum', u'anti']
[u'iraq', u'demand', u'sanction', u'blix', u'report']
[u'iraq', u'ambassador', u'deni', u'claim']
[u'iraq', u'archaeolog', u'treasur', u'threaten']
[u'iraq', u'say', u'use', u'fals', u'pretext', u'expel', u'envoy']
[u'iraq', u'scrap', u'missil', u'amid', u'british', u'threat']
[u'jailhous', u'dali', u'steal', u'prison', u'guard', u'report']
[u'japan', u'show', u'support']
[u'jayasuriya', u'line', u'india']
[u'jayawarden', u'form', u'slump', u'coach']
[u'jimmi', u'carter', u'oppos', u'unilater', u'attack', u'iraq']
[u'king', u'bhumibol', u'recov', u'hernia', u'oper']
[u'leopard', u'stray', u'indian', u'villag', u'injur']
[u'liverpool', u'good', u'bolton']
[u'macarthur', u'crippl', u'yacht', u'reach', u'australia']
[u'maltes', u'decid', u'join']
[u'bleed', u'death', u'shop', u'burglari']
[u'fight', u'life', u'blast', u'face']
[u'kill', u'accid', u'near', u'lismor']
[u'massiv', u'anti', u'protest', u'plan', u'indonesia']
[u'melbourn', u'hospit', u'fund', u'say']
[u'melbourn', u'hospit', u'face', u'crisi', u'say']
[u'mental', u'health', u'activist', u'lobbi', u'politician']
[u'militari', u'memorabilia', u'go', u'hammer']
[u'montoya', u'disappoint', u'second', u'place']
[u'arrest', u'expect', u'larg', u'drug', u'seizur']
[u'munich', u'clear', u'thump', u'leverkusen']
[u'nigerian', u'journalist', u'mean', u'miss', u'world', u'articl']
[u'korea', u'want', u'plane', u'crew', u'hostag']
[u'labor', u'parti', u'unveil', u'elect', u'promis']
[u'polic', u'target', u'phone', u'driver']
[u'bushfir', u'compens', u'stanhop']
[u'cyclon', u'watch', u'continu']
[u'nurs', u'union', u'ask', u'govt', u'hospit', u'attack']
[u'opposit', u'parti', u'question', u'time', u'iraqi']
[u'parti', u'govt', u'need', u'explain', u'decis']
[u'pampl', u'remain', u'content']
[u'photo', u'miss', u'shuttl', u'tile', u'newspap']
[u'accus', u'iraq', u'ambassador', u'spi']
[u'push', u'resolut', u'vote']
[u'rule', u'capit', u'punish', u'aust']
[u'polic', u'wit', u'gunshot', u'injuri']
[u'polic', u'hunt', u'clue']
[u'polit', u'parti', u'pressur', u'protect', u'public']
[u'star', u'adam', u'faith', u'die']
[u'port', u'davey', u'kent', u'group', u'marin', u'reserv', u'option']
[u'power', u'unit']
[u'prestig', u'destroy', u'showroom', u'break']
[u'cours', u'holland']
[u'qatar', u'master', u'ahead', u'despit', u'talk']
[u'real', u'extend', u'lead', u'crunch']
[u'recoba', u'doubl', u'lift', u'inter']
[u'redback', u'finish', u'season', u'style']
[u'report', u'aust', u'troop', u'iraq', u'offens', u'hill']
[u'resid', u'brace', u'possibl', u'cyclon']
[u'russia', u'say', u'british', u'resolut', u'iraq']
[u'saddam', u'hussein', u'accus', u'west', u'lie']
[u'saint', u'crush', u'widn', u'local', u'derbi']
[u'sampra', u'pull', u'tournament', u'report']
[u'sander', u'upset', u'klitschko', u'crown']
[u'saudi', u'deni', u'let', u'airfield']
[u'finish', u'season', u'style']
[u'scientist', u'protect', u'rare', u'orchid', u'lyrebird']
[u'scot', u'open', u'nation', u'account', u'wale', u'expens']
[u'search', u'miss', u'innisfail', u'resum']
[u'secur', u'guard', u'shoot', u'neck', u'popular', u'nightclub']
[u'shark', u'popul', u'rapid', u'declin', u'report']
[u'shed', u'destroy', u'cylind', u'car']
[u'samoud', u'missil', u'destroy']
[u'slipperi', u'travel', u'alarm', u'crew']
[u'spanish', u'leagu', u'report']
[u'stolz', u'runner', u'christchurch']
[u'student', u'payment', u'leap', u'year']
[u'toddler', u'shoot', u'rifl']
[u'tortur', u'bangladeshi', u'women', u'ralli', u'capit']
[u'tourist', u'coach', u'crash', u'czech', u'republ', u'dead']
[u'shop', u'storeroom', u'go', u'smoke']
[u'trade', u'practic', u'isnt', u'work', u'fel', u'say']
[u'tropic', u'fruit', u'produc', u'clear', u'irradi']
[u'turkish', u'wait', u'favour', u'troop', u'deal']
[u'border', u'observ', u'withdraw', u'iraq', u'kuwait']
[u'uni', u'reli', u'student', u'fee', u'govt', u'fund']
[u'nuclear', u'inspector', u'say', u'time', u'need']
[u'block', u'brisban', u'council', u'green', u'bridg', u'propos']
[u'militari', u'intensifi', u'search', u'qaeda', u'member']
[u'soldier', u'spot', u'saudi', u'arabia', u'airport']
[u'race', u'call']
[u'polic', u'charg', u'diamond', u'creek', u'murder']
[u'crime', u'drop', u'aid', u'technolog', u'polic']
[u'waratah', u'sink', u'shark', u'feast']
[u'wit', u'identifi', u'nightclub', u'drive', u'shooter']
[u'zimbabw', u'send', u'campbel']
[u'adult', u'child', u'melbourn', u'hous']
[u'coach', u'king', u'approach', u'windi']
[u'detaine', u'breakout']
[u'iraq', u'aust', u'angl']
[u'howardbali', u'stuff']
[u'review', u'tape', u'connolli', u'outburst']
[u'assist', u'philippin', u'terror', u'attack', u'probe']
[u'agassi', u'withdraw', u'indian', u'well']
[u'agforc', u'call', u'drought', u'relief', u'reform']
[u'agforc', u'speak', u'lack', u'applic']
[u'anderson', u'urg', u'state', u'resolv', u'accc', u'stalem']
[u'archaeologist', u'settl', u'religi', u'disput']
[u'critic', u'excus', u'danger', u'drive', u'trial']
[u'asylum', u'seeker', u'face', u'court', u'baxter', u'escap']
[u'aussi', u'surfer', u'edg', u'american', u'rival']
[u'australian', u'coal', u'export', u'chines', u'challeng']
[u'author', u'probe', u'groundwat', u'chemic', u'trace']
[u'autopsi', u'carri', u'melbourn', u'victim']
[u'babi', u'death', u'spark', u'investig']
[u'bali', u'link', u'iraq', u'say', u'bomb', u'victim']
[u'bali', u'link', u'iraq', u'say', u'bomb', u'victim', u'father']
[u'bank', u'face', u'properti', u'scam', u'accus']
[u'barri', u'sheen', u'lose', u'battl', u'cancer']
[u'promis', u'listen', u'resid']
[u'beachley', u'enjoy', u'demolit']
[u'beatl', u'lock', u'snip', u'spanish', u'hairdress']
[u'beatti', u'call', u'meet', u'bicker']
[u'beatti', u'say', u'race', u'fund', u'differ']
[u'bellami', u'behav', u'inter', u'match', u'say', u'robson']
[u'lade', u'escap', u'oper', u'taliban']
[u'blaze', u'destroy', u'prime', u'mover']
[u'bligh', u'say', u'class', u'size', u'meet', u'target']
[u'breed', u'servic', u'boost', u'beef', u'industri']
[u'british', u'minist', u'say', u'shell', u'quit']
[u'british', u'troop', u'prepar', u'iraq', u'invas']
[u'break', u'hill', u'council', u'seek', u'land']
[u'broom', u'look', u'famili', u'violenc', u'court']
[u'bunburi', u'dardanup', u'join', u'oppos', u'possibl', u'jail']
[u'burn', u'philp', u'get', u'ahead', u'goodman', u'fielder']
[u'bushfir', u'accus', u'appear', u'alleg', u'bail', u'violat']
[u'bushmast', u'vehicl', u'pass', u'test']
[u'cafl', u'appoint', u'general', u'manag']
[u'detent', u'centr', u'closur', u'consult']
[u'perman', u'venu', u'season', u'final']
[u'canoeist', u'recov', u'ocean', u'strand']
[u'carseldin', u'hope', u'play', u'final']
[u'chamber', u'unawar', u'crime', u'rise']
[u'chicago', u'win', u'best', u'film', u'screen', u'actor', u'guild']
[u'claim', u'public', u'hous', u'access', u'better']
[u'classi', u'norther', u'claim', u'australian']
[u'clijster', u'hantuchova', u'advanc', u'indian', u'well']
[u'coalit', u'pledg', u'increas', u'drought', u'transport']
[u'commonwealth', u'threaten', u'withdraw', u'forestri', u'fund']
[u'concern', u'govt', u'breach', u'forest', u'agreement']
[u'confer', u'shed', u'light', u'local', u'govt', u'financ']
[u'conga', u'ebola', u'death', u'toll', u'rise', u'govern']
[u'council', u'decid', u'wastewat', u'scheme']
[u'court', u'hear', u'damag', u'claim', u'hold']
[u'croydon', u'plan', u'water', u'pip', u'work']
[u'cyclon', u'erica', u'threaten', u'return']
[u'cyclon', u'warn', u'issu', u'darwin']
[u'danger', u'hewitt', u'down', u'scud', u'arizona']
[u'darwin', u'brace', u'wind']
[u'darwin', u'harbour', u'close', u'cyclon', u'craig', u'near']
[u'beer', u'pull', u'diamond', u'project']
[u'deloitt', u'announc', u'aust']
[u'develop', u'defend', u'newspap']
[u'ban', u'lanka', u'vermin', u'outburst']
[u'downer', u'deni', u'pressur', u'australia', u'expel']
[u'down', u'resid', u'turn', u'cotton', u'week']
[u'easter', u'shop', u'hour', u'caus', u'headach', u'festiv']
[u'electr', u'soar', u'heat']
[u'embassi', u'reveal', u'ask', u'expuls', u'diplomat']
[u'embassi', u'reveal', u'ask', u'expuls', u'iraqi']
[u'emerton', u'name', u'oceania', u'player', u'year']
[u'probe', u'henri', u'strike', u'coin']
[u'fear', u'yacht', u'lose', u'emerg', u'signal']
[u'fingleton', u'waiv', u'right', u'committ', u'hear']
[u'flinder', u'resid', u'welcom', u'rain']
[u'folk', u'festiv', u'declar', u'success']
[u'franc', u'ralli', u'support', u'iraq', u'resolut']
[u'free', u'class', u'dryland', u'farmer']
[u'furyk', u'hoch', u'leav', u'dark', u'doral']
[u'gambil', u'top', u'fish', u'delray', u'beach']
[u'attend', u'wagga', u'water', u'confer']
[u'goodman', u'fielder', u'takeov', u'edg', u'closer']
[u'govt', u'confirm', u'commit', u'aquat', u'habitat']
[u'grazier', u'busi', u'surviv', u'appli', u'help']
[u'greater', u'disclosur', u'execut', u'deal', u'meet']
[u'green', u'divid', u'prefer', u'distribut']
[u'group', u'lobbi', u'coupl']
[u'gympi', u'call', u'respit', u'care', u'servic']
[u'helicopt', u'firm', u'apologis', u'nois']
[u'hewitt', u'destroy', u'scud', u'arizona']
[u'hoch', u'tway', u'share', u'hole', u'lead', u'doral']
[u'hous', u'figur', u'highlight', u'downward', u'trend']
[u'sachin', u'say', u'wili', u'murali']
[u'immigr', u'dept', u'order', u'detent', u'centr', u'secur']
[u'india', u'look', u'secur', u'semi', u'final', u'spot']
[u'indigen', u'communiti', u'seek', u'justic']
[u'need', u'rest', u'say', u'tire', u'trescothick']
[u'investig', u'continu', u'kill', u'hous']
[u'iraqi', u'diplomat', u'probe', u'prompt', u'say', u'downer']
[u'iraq', u'wont', u'featur', u'indonesian', u'talk', u'downer', u'say']
[u'japan', u'play', u'north', u'korea', u'missil', u'launch']
[u'jayasuriya', u'percent', u'certain', u'face', u'india']
[u'jordan', u'effort', u'like', u'garden', u'farewel']
[u'kaiserslautern', u'rout']
[u'kayak', u'fight', u'odd', u'mental', u'health', u'awar']
[u'khannouchi', u'fernandez', u'kyoto', u'half', u'marathon']
[u'knight', u'rais', u'ticket', u'price']
[u'knowl', u'open', u'hospit', u'emerg', u'dept']
[u'lawyer', u'seek', u'releas', u'bakar', u'bashir']
[u'liber', u'criticis', u'atsic', u'leadership']
[u'lobster', u'industri', u'call', u'harsh', u'penalti']
[u'logger', u'work', u'reform', u'packag']
[u'turnout', u'mar', u'african', u'econom', u'summit']
[u'charg', u'cooma', u'murder']
[u'charg', u'orang', u'shoot']
[u'charg', u'polic', u'stab']
[u'charg', u'assault']
[u'charg', u'murder', u'miss']
[u'glide', u'plane', u'safeti']
[u'seek', u'overturn', u'passport']
[u'succumb', u'bash', u'injuri']
[u'massiv', u'bushfir', u'contain']
[u'medic', u'accommod', u'open']
[u'miss', u'yacht', u'locat', u'contact']
[u'dengu', u'fever', u'case', u'expect']
[u'morrison', u'overcom', u'occi', u'maiden', u'titl']
[u'mose', u'hail', u'chang', u'success']
[u'motor', u'race', u'world', u'mourn', u'sheen', u'death']
[u'murray', u'river', u'slow', u'food', u'take', u'centr', u'stage']
[u'nat', u'promis', u'conserv', u'servic']
[u'naurus', u'presid', u'die', u'washington']
[u'near', u'canberra', u'victim', u'plan']
[u'posit', u'help', u'drought', u'victim']
[u'goldman', u'sach', u'conflict', u'hear', u'tell']
[u'injuri', u'trawler']
[u'question', u'polit', u'thai']
[u'north', u'korea', u'fire', u'cruis', u'missil', u'say', u'south']
[u'govt', u'announc', u'mater', u'cancer', u'treatment', u'fund']
[u'govt', u'deni', u'park', u'addit', u'buy', u'green']
[u'premier', u'reaffirm', u'pledg', u'lower', u'class', u'size']
[u'prepar', u'cyclon', u'craig']
[u'chief', u'execut', u'wrestl', u'settl', u'disput']
[u'occi', u'gold', u'coast']
[u'dubbo', u'raaf', u'base', u'redevelop']
[u'ominami', u'win', u'nagoya', u'marathon']
[u'challeng', u'carr', u'educ']
[u'pair', u'life', u'sentenc', u'gracemer', u'murder']
[u'palestinian', u'council', u'decid', u'prime']
[u'pamphlet', u'anger', u'council', u'elect', u'candid']
[u'perman', u'breast', u'screen', u'unit', u'young']
[u'perth', u'lord', u'mayor', u'surpris', u'hammond', u'challeng']
[u'pie', u'field', u'strong', u'season', u'final']
[u'bali', u'comment', u'misunderstand', u'downer']
[u'minist', u'suspend', u'assault', u'charg']
[u'polic', u'probe', u'high', u'speed', u'crash']
[u'polic', u'stab', u'prompt', u'secur', u'review']
[u'polic', u'urg', u'safe', u'return', u'home']
[u'power', u'compani', u'fin', u'profit']
[u'primus', u'defend', u'power', u'play']
[u'properti', u'develop', u'help', u'homeless', u'green']
[u'ronaldinho', u'humbl', u'marseill']
[u'qanta', u'museum', u'name']
[u'quak', u'bare', u'rattl']
[u'quentin', u'bryce', u'choos', u'governor']
[u'race', u'club', u'await', u'compromis', u'plan', u'coverag']
[u'rainfal', u'hamper', u'farmer']
[u'rememb', u'bali', u'event', u'iraqi', u'howard']
[u'report', u'show', u'improv', u'hospit', u'health']
[u'rescu', u'beacon', u'caus', u'hour', u'wild', u'goos', u'chase']
[u'resid', u'sign', u'road', u'upgrad', u'petit']
[u'resid', u'urg', u'natur', u'cours']
[u'riverland', u'volunt', u'urg', u'speak']
[u'uefa', u'spot', u'stay', u'clear']
[u'ruddock', u'foreshadow', u'plan', u'deport', u'iranian', u'asylum']
[u'sailor', u'drive', u'charg', u'drop']
[u'polic', u'drive', u'shooter', u'surrend']
[u'sculptur', u'symposium', u'success']
[u'searcher', u'hope', u'contact', u'miss', u'yacht', u'soon']
[u'seven', u'arrest', u'famili', u'feud']
[u'share', u'market', u'falter', u'finish']
[u'sharon', u'endors', u'choic', u'palestinian']
[u'shellharbour', u'host', u'surf', u'lifesav', u'comp']
[u'shire', u'secur', u'pool', u'fund']
[u'shoot', u'victim', u'die', u'hospit']
[u'smoke', u'haze', u'southern']
[u'sociedad', u'stay', u'second', u'spain']
[u'sport', u'grant', u'award', u'west', u'group']
[u'springborg', u'attack', u'faction', u'deal', u'mayor']
[u'strand', u'american', u'rescu', u'antarctica']
[u'govt', u'pressur', u'review', u'governor', u'select']
[u'govt', u'slow', u'meander', u'legisl']
[u'tasmania', u'harvest', u'poppi']
[u'teacher', u'union', u'govt', u'head']
[u'team', u'coast', u'say', u'suspens', u'fair']
[u'teen', u'die', u'crash', u'injuri']
[u'test', u'confirm', u'remain', u'miss', u'toddler']
[u'test', u'test', u'test']
[u'trezeguet', u'target', u'juve', u'clear']
[u'tugun', u'bypass', u'announc']
[u'tugun', u'bypass', u'get', u'green', u'light']
[u'tumut', u'look', u'communiti', u'radio', u'station']
[u'reject', u'north', u'korea', u'demand', u'direct', u'talk']
[u'warplan', u'attack', u'iraqi', u'target']
[u'govt', u'ask', u'explain', u'fast', u'rail', u'cost', u'blow']
[u'govt', u'reject', u'critic']
[u'virus', u'larkham', u'home']
[u'virus', u'larkham', u'return', u'australia']
[u'wagga', u'blood', u'bank', u'offer', u'prize']
[u'govt', u'commit', u'salin', u'solut']
[u'windi', u'tour', u'squad', u'decis', u'loom']
[u'woman', u'sexual', u'assault', u'road', u'rage', u'incid']
[u'world', u'eye', u'disney', u'world']
[u'world', u'media', u'bed', u'militari']
[u'abigroup', u'hire', u'local', u'worker', u'rail', u'link', u'work']
[u'aborigin', u'lodg', u'million', u'claim', u'lose', u'wag']
[u'prefer', u'deal', u'disast', u'wait', u'happen']
[u'secur', u'green', u'prefer', u'burrinjuck']
[u'annan', u'meet', u'cyprus', u'leader', u'reunif']
[u'assur', u'offer', u'easter', u'sunday', u'trade']
[u'aussi', u'demolish', u'black', u'cap']
[u'author', u'hous', u'hous', u'fight', u'dengu']
[u'critic', u'diamond', u'shear', u'decis']
[u'babi', u'manslaught', u'trial', u'abort', u'juri']
[u'bacon', u'signal', u'parti', u'uniti', u'adopt']
[u'baildon', u'welcom', u'bypass', u'fund', u'pledg']
[u'bali', u'bomb', u'survivor', u'back', u'bali', u'iraq', u'link']
[u'bali', u'iraq', u'debat', u'deliber', u'polit', u'strategi']
[u'battl', u'loom', u'rise', u'land', u'rat']
[u'bilater', u'talk', u'forward']
[u'blewett', u'ban', u'drink', u'drive', u'charg']
[u'blix', u'defin', u'iraq', u'remain', u'disarma', u'task']
[u'brack', u'want', u'asylum', u'seeker', u'stay']
[u'breakdown', u'talk', u'rival', u'cyprus', u'leader']
[u'britain', u'lobbi', u'draft', u'resolut', u'support']
[u'broadway', u'theatr', u'engulf', u'dark']
[u'bull', u'dale', u'domest', u'final']
[u'busi', u'confid', u'record', u'biggest', u'fall']
[u'busi', u'continu', u'suffer', u'phone', u'woe']
[u'increas', u'fish', u'catch', u'monitor']
[u'manufactur', u'industri', u'council']
[u'call', u'train', u'speed', u'limit', u'lower']
[u'capriati', u'safin', u'sweat', u'indian', u'well']
[u'carlton', u'review', u'oper', u'wake', u'salari']
[u'theft', u'victoria']
[u'cathol', u'school', u'teacher', u'strike']
[u'cattl', u'export', u'ship', u'readi', u'leav']
[u'centr', u'get', u'fund', u'crime', u'prevent', u'project']
[u'cherri', u'air', u'fund', u'concern']
[u'china', u'reveal', u'execut', u'increas']
[u'claim', u'qaeda', u'suspect', u'lade']
[u'claim', u'club', u'unhappi', u'race', u'offer']
[u'claim', u'undermin', u'legitimaci', u'vote']
[u'coalit', u'pledg', u'rail', u'line', u'upgrad']
[u'communiti', u'tackl', u'social', u'woe']
[u'concern', u'australian', u'team', u'fund', u'athen']
[u'concern', u'delay', u'bushfir', u'hear']
[u'coonawarra', u'vintag']
[u'corinithian', u'qualifi', u'brazil', u'paulista', u'final']
[u'coulthard', u'encourag', u'ferrari', u'free', u'podium']
[u'council', u'back', u'park', u'restrict', u'plan']
[u'council', u'urg', u'embrac', u'park', u'issu']
[u'coupl', u'charg', u'babi', u'death']
[u'carniv', u'boost', u'port', u'lincoln']
[u'cyclon', u'craig', u'loom', u'east', u'darwin']
[u'cyclon', u'erica', u'reform', u'craig', u'impact', u'north']
[u'damag', u'weekend', u'exceed', u'million']
[u'daw', u'carseldin', u'clear', u'gabba', u'clash']
[u'delaney', u'appeal', u'resid', u'decis']
[u'denmark', u'builder', u'win', u'workmanship', u'award']
[u'dept', u'flood', u'manag']
[u'drought', u'take', u'toll', u'board', u'school']
[u'dubai', u'stage', u'world', u'swim', u'marathon', u'scrap']
[u'elector', u'commiss', u'issu', u'ballot', u'paper', u'remind']
[u'euro', u'unveil', u'tournament', u'match', u'schedul']
[u'expand', u'shop', u'option', u'impact', u'chamber']
[u'famili', u'plea', u'shoot', u'suspect', u'come']
[u'famili', u'farewel', u'motorcycl', u'race', u'legend']
[u'farmer', u'need', u'water', u'stay', u'aliv']
[u'farmer', u'blame', u'govt', u'bushfir', u'disast']
[u'feder', u'govern', u'seek', u'urgent', u'talk', u'north']
[u'fire', u'threaten', u'properti']
[u'fisheri', u'polici', u'aim', u'stop', u'exploit']
[u'fish', u'line', u'endang', u'giant', u'seabird']
[u'fleme', u'expect', u'aussi', u'attrit']
[u'forest', u'snatch', u'late', u'equalis']
[u'injur', u'balconi', u'collaps']
[u'peopl', u'rescu', u'boat', u'catch']
[u'franc', u'vow', u'vote', u'resolut']
[u'fuel', u'reduct', u'reduc', u'bushfir', u'threat']
[u'contract', u'boost', u'north', u'west', u'busi']
[u'gold', u'coast', u'surfer', u'win', u'tour', u'event']
[u'gold', u'coast', u'host', u'indi', u'year']
[u'govt', u'reach', u'dougla', u'arteri', u'compromis']
[u'govt', u'cessnock', u'job', u'strategi']
[u'green', u'prefer', u'alloc']
[u'group', u'urg', u'nomin', u'overse', u'wast', u'plant']
[u'group', u'continu', u'protest']
[u'hamackova', u'world']
[u'health', u'worker', u'rais', u'concern', u'differ']
[u'hewitt', u'get', u'aynaoui', u'reveng', u'match']
[u'hill', u'lead', u'sheen', u'tribut']
[u'histor', u'courthous', u'face', u'uncertain', u'futur']
[u'hope', u'doctor', u'remain', u'south', u'east']
[u'hope', u'peopl', u'dead', u'peanut', u'allergi']
[u'hospit', u'launch', u'transport', u'scheme']
[u'hospit', u'donat', u'surplus', u'medic', u'gear']
[u'hunter', u'winegrap', u'harvest', u'look', u'good']
[u'incent', u'lure', u'scallop', u'ranch', u'project']
[u'indonesia', u'name', u'suspect', u'envoy', u'bomb']
[u'indonesia', u'megawati', u'croon', u'love', u'song']
[u'inter', u'coach', u'cuper', u'mark', u'dangerman', u'robert']
[u'inter', u'midfield', u'zanetti', u'newcastl', u'clash']
[u'intern', u'crimin', u'court', u'inaugur']
[u'investig', u'frustrat', u'report', u'delay']
[u'iran', u'reject', u'claim', u'militari', u'nuclear']
[u'iraq', u'fail', u'declar', u'drone', u'aircraft']
[u'iraqi', u'diplomat', u'leav', u'canberra']
[u'iraq', u'scrap', u'illeg', u'missil', u'inspector']
[u'isra', u'kill', u'wound', u'hebron']
[u'japan', u'lead', u'newspap', u'vow', u'track']
[u'kafelnikov', u'surviv', u'czech', u'scare']
[u'keat', u'critic', u'relationship']
[u'kenya', u'mission', u'kill', u'critic']
[u'kenya', u'olymp', u'gold', u'medallist', u'temu', u'die']
[u'kewel', u'viduka', u'leav', u'leed', u'report']
[u'kidman', u'parent', u'oscar', u'ceremoni']
[u'kingstream', u'steel', u'plan', u'reform']
[u'domest', u'cricket', u'final']
[u'rule', u'final']
[u'demolish', u'black', u'cap']
[u'lockett', u'lynch', u'award', u'life']
[u'long', u'weekend', u'prove', u'posit', u'tourism']
[u'loom', u'iraq', u'conflict', u'hold', u'market', u'hostag']
[u'charg', u'stab', u'polic', u'secur', u'guard']
[u'evid', u'passport', u'refus']
[u'face', u'internet', u'paedophilia', u'child', u'charg']
[u'jail', u'year', u'murder', u'girlfriend']
[u'face', u'court', u'attempt', u'murder', u'charg']
[u'market', u'falter', u'share', u'drop', u'record']
[u'mark', u'target', u'shoot', u'championship']
[u'mauresmo', u'advanc', u'indian', u'well']
[u'mayor', u'air', u'concern', u'miss', u'toddler', u'case']
[u'mcguir', u'back', u'predetermin', u'preseason', u'final']
[u'meet', u'hold', u'lagoon', u'smell']
[u'hospit', u'crash']
[u'microwav', u'kill', u'breast', u'cancer', u'tumour']
[u'miss', u'teen', u'probe', u'prove', u'inconclus']
[u'highlight', u'letter', u'blunder']
[u'promis', u'fight', u'compo']
[u'want', u'constitut', u'reform', u'chang']
[u'want', u'mango', u'grower', u'levi']
[u'nation', u'bushfir', u'prevent', u'confer', u'open']
[u'nauru', u'deadlock', u'prevent', u'condol', u'motion']
[u'cyclon', u'form', u'south', u'pacif']
[u'trial', u'reduc', u'bat', u'botan', u'garden']
[u'dem', u'split', u'elect', u'ticket']
[u'govt', u'firm', u'nation', u'park', u'decis']
[u'cabinet', u'ratifi', u'land', u'deal']
[u'govern', u'reach', u'histor', u'nativ', u'titl']
[u'firm', u'seek', u'agreement', u'seismic', u'test']
[u'otway', u'burn', u'off', u'plan']
[u'park', u'plan', u'airmen', u'airwomen', u'reunion']
[u'peninsula', u'resid', u'brace', u'cyclon', u'craig']
[u'pipelin', u'approv', u'impact', u'fitzroy', u'plan']
[u'plan', u'store', u'greenhous', u'emiss', u'underground']
[u'defend', u'expuls', u'order', u'iraqi', u'diplomat']
[u'step', u'elect', u'campaign']
[u'outlin', u'case', u'iraq']
[u'polic', u'surf', u'victim']
[u'polic', u'probe', u'attack']
[u'polic', u'urg', u'parent', u'teach', u'stranger', u'danger']
[u'pont', u'issu', u'ball', u'warn', u'kiwi', u'drop']
[u'pont', u'ball', u'warn']
[u'pont', u'ball', u'warn', u'kiwi', u'drop', u'mcmillan']
[u'portman', u'profit', u'drop']
[u'poultri', u'firm', u'drop', u'build', u'plan']
[u'prison', u'decis', u'save', u'hundr', u'job']
[u'probe', u'begin', u'balconi', u'collaps']
[u'project', u'aim', u'save', u'indigen', u'stori']
[u'govt', u'offer', u'class', u'size', u'assur']
[u'push', u'crackdown', u'illeg', u'fish']
[u'queensland', u'cyclon', u'watch']
[u'question', u'rais', u'gmos']
[u'rain', u'hamper', u'goat', u'product']
[u'rain', u'help', u'dampen', u'bushfir']
[u'ratepay', u'group', u'want', u'compulsori', u'local', u'govt', u'vote']
[u'resid', u'hope', u'rain', u'heavi']
[u'romania', u'expel', u'iraqi', u'diplomat']
[u'roo', u'connolli', u'ask', u'explain', u'outburst']
[u'festiv', u'kick', u'event']
[u'govt', u'inject', u'hospit']
[u'govt', u'health', u'fund', u'alloc']
[u'sailor', u'rule', u'return', u'leagu']
[u'schu', u'hit', u'critic']
[u'senior', u'australian', u'intellig', u'offic', u'quit']
[u'sharehold', u'mix', u'feel', u'merger']
[u'share', u'price', u'tumbl', u'asia']
[u'showground', u'suggest', u'hospit', u'site']
[u'skywest', u'slash', u'staff', u'post', u'half', u'year', u'loss']
[u'smoke', u'haze', u'close', u'road']
[u'south', u'american', u'soccer', u'round']
[u'storm', u'caus', u'havoc', u'grafton']
[u'strike', u'continu', u'darken', u'broadway', u'music']
[u'studi', u'aim', u'urg', u'return', u'resid']
[u'sunderland', u'sack', u'wilkinson']
[u'beekeep', u'best', u'honey', u'season', u'near']
[u'tasmania', u'set', u'bodi', u'paint', u'world', u'record']
[u'paint', u'world', u'bodi', u'paint']
[u'tendulkar', u'best', u'form', u'ganguli']
[u'thailand', u'claim', u'product', u'world']
[u'thigh', u'strain', u'put', u'ronaldo', u'doubt', u'milan', u'match']
[u'thoma', u'traumat', u'tot', u'say', u'psychologist']
[u'season', u'good', u'visitor', u'tourist']
[u'trade', u'hour', u'plan', u'spark', u'region', u'concern']
[u'trawler', u'port', u'blaze']
[u'dengu', u'fever', u'case', u'confirm', u'north']
[u'stand', u'trial', u'steal', u'properti']
[u'inspector', u'need', u'time', u'crean']
[u'unit', u'owner', u'feel', u'ignor', u'schooli', u'debat']
[u'secur', u'council', u'hold', u'public', u'session']
[u'forc', u'satellit', u'blast', u'space']
[u'diplomat', u'resign', u'iraq', u'plan']
[u'engag', u'frantic', u'lobbi', u'resolut']
[u'releas', u'prison', u'guantanamo']
[u'govt', u'urg', u'penni', u'pinch', u'fast', u'train']
[u'volunt', u'group', u'hop', u'lower', u'liabil', u'premium']
[u'waff', u'confer', u'focus', u'climat', u'review']
[u'wall', u'slump', u'send', u'aust', u'market', u'year']
[u'fear', u'send', u'market', u'year']
[u'waugh', u'give', u'deadlin', u'test', u'decis']
[u'wilder', u'area', u'show', u'sign', u'recoveri']
[u'woman', u'hospit', u'crash']
[u'highlight', u'bird', u'concern']
[u'judg', u'swear', u'inaugur']
[u'commonwealth', u'game', u'blow', u'budget']
[u'adopt', u'regular', u'save']
[u'chief', u'say', u'umpir', u'abus', u'good', u'game']
[u'play', u'valencia', u'hold', u'ajax']
[u'american', u'jail', u'brisban', u'import']
[u'amnesti', u'call', u'polic', u'overhaul', u'afghanistan']
[u'commit', u'send', u'team', u'athen']
[u'arab', u'art', u'festiv', u'launch', u'amid', u'shadow']
[u'hop', u'boost', u'world', u'profit']
[u'survivor', u'armi', u'helicopt', u'crash']
[u'aust', u'market', u'continu', u'slide']
[u'australia', u'lead', u'anti', u'dope', u'say', u'minist']
[u'aust', u'urg', u'secur', u'council', u'face']
[u'barca', u'inter', u'block', u'newcastl']
[u'barcelona', u'eas']
[u'battl', u'intensifi', u'green', u'vote']
[u'bendigo', u'courthous', u'revamp']
[u'cattl', u'sale', u'begin']
[u'blue', u'arriv', u'brisban', u'final', u'showdown']
[u'boat', u'accid', u'claim', u'life']
[u'breakthrough', u'hospit', u'golden', u'staph']
[u'breakthrough', u'hors', u'centr', u'plan']
[u'brogden', u'claim', u'govt', u'doctor', u'hospit', u'data']
[u'bush', u'phone', u'howard', u'iraq', u'strategi']
[u'bush', u'race', u'meet', u'continu']
[u'busi', u'park', u'plan']
[u'rethink', u'adult', u'entertain', u'plan']
[u'call', u'help', u'australian', u'hold', u'cuba']
[u'extend', u'alcohol', u'restrict']
[u'candid', u'repeat', u'merger', u'opposit']
[u'capel', u'back', u'group', u'approach', u'aquif', u'concern']
[u'capello', u'slam', u'keown', u'act', u'totti', u'send']
[u'spark', u'investig']
[u'carr', u'defend', u'late', u'school', u'mail']
[u'carr', u'motlop', u'suspend']
[u'carr', u'campaign', u'capabl', u'hand', u'crean']
[u'cemeteri', u'reus', u'grave', u'crush', u'headston']
[u'chang', u'venu', u'howard', u'speech']
[u'children', u'forget', u'bushfir']
[u'christian', u'democrat', u'parti', u'field', u'illawarra']
[u'claim', u'author', u'ignor', u'warn']
[u'claim', u'timber', u'industri', u'yeadon', u'letter']
[u'claim', u'govt', u'health', u'review', u'need']
[u'coalit', u'consid', u'subsidi']
[u'coetzer', u'dethron', u'hantuchova', u'clijster', u'advanc']
[u'communiti', u'ralli', u'cattlemen']
[u'compani', u'rethink', u'practic', u'blaze']
[u'concern', u'air', u'return', u'voter', u'pack']
[u'consum', u'confid', u'world', u'market', u'slip']
[u'cooma', u'resid', u'meet', u'candid']
[u'corinthian', u'hammer', u'error', u'prone', u'strongest']
[u'coron', u'recommend', u'chang', u'blood']
[u'council', u'give', u'indoor', u'sport', u'complex']
[u'councillor', u'question', u'pathway', u'risk']
[u'coupl', u'seek', u'design', u'babi', u'save', u'termin']
[u'court', u'hear', u'drug', u'money', u'attack']
[u'court', u'reject', u'accc', u'foster']
[u'crime', u'stat', u'fall', u'categori']
[u'cyclon', u'craig', u'intensifi', u'near', u'cape', u'york']
[u'cyclon', u'bring', u'rain']
[u'darwin', u'theatr', u'lobbi', u'perman', u'base']
[u'dead', u'babi', u'twin', u'sister', u'remain', u'hospit']
[u'death', u'prompt', u'investig', u'ambul']
[u'decis', u'hold', u'defam', u'case', u'fairfax']
[u'diet', u'wont', u'leav', u'accc', u'case', u'end']
[u'downer', u'say', u'moral', u'back']
[u'drought', u'take', u'toll', u'cattl', u'industri', u'agforc']
[u'drought', u'transport', u'subsidi', u'plan']
[u'easter', u'trade', u'law', u'late', u'mayor']
[u'effort', u'underway', u'reduc', u'reef', u'pollut']
[u'ergon', u'boost', u'highfield', u'infrastructur']
[u'citizen', u'year', u'canberra']
[u'falun', u'gong', u'coupl', u'seek', u'clemenc', u'avoid']
[u'famili', u'say', u'father', u'saudi', u'arabia']
[u'farmer', u'continu', u'iraq', u'trade']
[u'feder', u'fund', u'seek', u'duke', u'highway']
[u'figur', u'fall', u'hunter', u'theft']
[u'forest', u'burn', u'control']
[u'bank', u'teller', u'settl', u'court', u'case', u'hold']
[u'great', u'lake', u'freez', u'time', u'year']
[u'green', u'demand', u'transport', u'solut']
[u'group', u'back', u'campaign', u'prevent', u'hospit', u'sale']
[u'group', u'offer', u'water', u'plan', u'advic', u'air', u'concern']
[u'group', u'offer', u'help', u'polic', u'stab']
[u'gunner', u'newcastl', u'champion', u'leagu', u'draw']
[u'hewitt', u'exact', u'reveng', u'aynaoui']
[u'hewitt', u'exact', u'reveng', u'aynaoui', u'scud', u'advanc']
[u'hope', u'reduc', u'domest', u'violenc', u'rate']
[u'hop', u'miss', u'yachtsman', u'see', u'drift', u'coast']
[u'hous', u'sector', u'remain', u'buoyant']
[u'husband', u'jail', u'attempt', u'murder']
[u'icac', u'ask', u'probe', u'subdivis', u'sewerag', u'charg']
[u'immunis', u'underway', u'vaccin', u'mishap']
[u'indigen', u'advisori', u'board', u'member', u'resign']
[u'injur', u'hodgson', u'doubt', u'world']
[u'inter', u'cancel', u'shearer', u'doubl']
[u'ipswich', u'drop', u'point', u'palac']
[u'iranian', u'asylum', u'seeker', u'frighten', u'detent']
[u'iraqi', u'communiti', u'march', u'offic']
[u'irish', u'presid', u'prais', u'noosa', u'support']
[u'rain']
[u'japanes', u'tourist', u'clip', u'wing', u'skydiv', u'mishap']
[u'johnson', u'return', u'england', u'skipper', u'scottish']
[u'judg', u'hand', u'woman', u'chair', u'fall']
[u'kewel', u'keen', u'stay', u'leed', u'manag']
[u'kivilev', u'die', u'head', u'injuri']
[u'kivilev', u'die', u'head', u'injuri', u'pari', u'nice']
[u'land', u'releas', u'agreement']
[u'landslid', u'threat', u'close', u'road']
[u'laverton', u'lament', u'lose', u'flight']
[u'societi', u'critic', u'govt', u'plan', u'bail']
[u'long', u'oncolog', u'servic', u'wait', u'near']
[u'malaysia', u'explain', u'round']
[u'accus', u'child', u'hold', u'custodi']
[u'arrest', u'bomb', u'threat', u'china']
[u'extradit', u'month', u'murder', u'inquiri']
[u'hospit', u'melbourn', u'blast']
[u'jail', u'diesel', u'theft']
[u'plead', u'guilti', u'assault', u'escap', u'jail', u'term']
[u'threaten', u'blow', u'media', u'agenc', u'china']
[u'matilda', u'waltz', u'world', u'berth']
[u'mayor', u'elect', u'slogan']
[u'mccarthi', u'get', u'sunderland', u'report']
[u'mccarthi', u'promis', u'miracl', u'sunderland']
[u'mcgradi', u'announc', u'extra', u'coast', u'offic']
[u'mcgrane', u'secur', u'green', u'countri', u'labor', u'prefer']
[u'miss', u'yacht', u'sailor', u'miss']
[u'talk', u'north', u'east', u'airlin', u'servic']
[u'worker', u'lose', u'job', u'bank']
[u'mother', u'charg', u'rape', u'daughter']
[u'motion', u'iraq', u'defeat']
[u'concern', u'candid', u'dont', u'live', u'elector']
[u'warn', u'bypass', u'protest']
[u'welcom', u'communic', u'grant']
[u'mural', u'work']
[u'resolut', u'downer']
[u'direct', u'bali', u'iraq', u'link', u'anderson']
[u'nomin', u'seek', u'nurs', u'award']
[u'north', u'tourism', u'push', u'ahead', u'europ']
[u'govt', u'name', u'polic', u'corrupt', u'inquiri']
[u'coalit', u'promis', u'rail', u'boost']
[u'competit', u'crack', u'umpir', u'abus']
[u'stand', u'read', u'recoveri', u'program']
[u'ralli', u'draw', u'capac', u'field']
[u'opposit', u'parti', u'defenc', u'analyst']
[u'otten', u'month']
[u'pakistan', u'say', u'difficult', u'support', u'iraq']
[u'parliament', u'get', u'paradis', u'updat']
[u'peac', u'walker', u'visit', u'canberra', u'memori']
[u'perren', u'win', u'honour']
[u'pirsa', u'happi', u'abalon', u'penalti']
[u'plan', u'acquir', u'land', u'portsea', u'move', u'step']
[u'polic', u'charg', u'teenag', u'brawl', u'sydney']
[u'polic', u'hold', u'properti', u'drug', u'raid']
[u'polic', u'investig', u'fatal', u'accid', u'gundagai']
[u'polic', u'charg', u'drug', u'raid']
[u'polic', u'probe', u'mildura', u'stab']
[u'polic', u'probe', u'roadsid', u'bodi']
[u'polic', u'reject', u'toddler', u'case', u'claim']
[u'potenti', u'save', u'butterfli', u'scientist']
[u'power', u'carr', u'add', u'charg', u'list']
[u'predict', u'alic', u'residenti', u'land', u'cost']
[u'prison', u'return', u'custodi']
[u'push', u'lifesav', u'clubhous', u'facil']
[u'want', u'nation', u'tail', u'dock']
[u'queensland', u'rail', u'win', u'tender']
[u'ralli', u'car', u'plan', u'fan']
[u'report', u'play', u'rabbit', u'farm', u'risk']
[u'resign', u'highlight', u'lack', u'support', u'govt']
[u'resign', u'show', u'govt', u'ignor', u'advic', u'iraq']
[u'boost', u'mildura', u'flight']
[u'riverland', u'polic', u'plan', u'baxter', u'reinforc']
[u'rocket', u'blast', u'jail', u'door', u'franc', u'escap']
[u'roma', u'grab', u'gunner', u'draw']
[u'ryan', u'want', u'earli', u'start', u'extens']
[u'sail', u'jacket', u'search', u'miss']
[u'sail', u'jacket', u'search', u'yachtsman']
[u'indigen', u'communiti', u'start', u'bush', u'tucker']
[u'school', u'staff', u'secur', u'boost', u'prove', u'cost']
[u'search', u'osama', u'lade', u'gain', u'momentum']
[u'secur', u'industri', u'call', u'nation', u'model']
[u'seminar', u'focus', u'suicid', u'prevent']
[u'serb', u'injur', u'belgrad', u'shoot', u'sourc']
[u'assault', u'brochur', u'aim', u'indigen', u'women']
[u'ratepay', u'rate', u'rise', u'cap']
[u'tafe', u'redund', u'expect']
[u'specul', u'hous', u'industri', u'head', u'soft']
[u'stem', u'cell', u'research', u'get', u'green', u'light']
[u'storm', u'coach', u'feel', u'pressur', u'perform']
[u'storm', u'wont', u'stop', u'jacaranda', u'festiv']
[u'survey', u'consid', u'high', u'risk', u'drink']
[u'task', u'forc', u'continu', u'land', u'clear', u'probe']
[u'telstra', u'spend', u'million', u'control', u'compani']
[u'threat', u'wheat', u'fungus', u'australia']
[u'tougher', u'water', u'restrict', u'possibl']
[u'tour', u'shed', u'light', u'facto', u'chang']
[u'turkey', u'falter', u'cyprus', u'reunif']
[u'turner', u'question', u'health', u'studi', u'announc']
[u'dead', u'gundagai', u'truck', u'crash']
[u'polic', u'helicopt', u'shoot', u'mexico']
[u'union', u'launch', u'rail', u'campaign']
[u'union', u'welcom', u'minist', u'visit']
[u'warn', u'reced', u'forest', u'cover', u'africa']
[u'aim', u'mother', u'bomb', u'saddam']
[u'court', u'decis', u'hick', u'astound', u'aust', u'lawyer']
[u'militari', u'helicopt', u'crash', u'state']
[u'valencia', u'hold', u'ajax', u'group', u'stalem']
[u'govt', u'pressur', u'boost', u'librari']
[u'victorian', u'parliament', u'okay', u'breastfe']
[u'video', u'trial', u'french']
[u'govt', u'pressur', u'stop', u'wast']
[u'wallabi', u'learn', u'protea', u'mistak', u'gregan']
[u'warn', u'blackmail', u'wit', u'statement']
[u'warn', u'blackmail', u'statement', u'withdraw']
[u'warn', u'shot', u'fire', u'turkish', u'anti', u'protest']
[u'senat', u'quit', u'poll']
[u'wast', u'arsenal', u'hold', u'roma']
[u'wetland', u'rehabilit', u'hit', u'snag']
[u'wife', u'murder', u'charg', u'get', u'bail']
[u'wind', u'help', u'turn', u'away']
[u'wing', u'name', u'face', u'eel']
[u'woodbridg', u'say', u'breakaway', u'group', u'fizzl']
[u'woomera', u'compound', u'close', u'month']
[u'world', u'semi', u'final', u'pitch', u'review']
[u'yacht', u'coast', u'miss']
[u'parliament', u'allow', u'breastfe', u'insid']
[u'vote', u'anti', u'languag']
[u'address', u'umpir', u'shortag']
[u'agreement', u'mine', u'nativ', u'titl', u'exist']
[u'group', u'stockpil', u'suppli', u'help', u'refuge']
[u'airlin', u'clear', u'servic', u'withdraw']
[u'attack', u'nat', u'candid', u'land', u'clear']
[u'doubt', u'benefit', u'govt', u'rural', u'insur']
[u'amaz', u'comeback', u'see', u'sixer', u'past', u'cat', u'hawk']
[u'defi', u'stock', u'market', u'retreat']
[u'tell', u'boss', u'leav', u'payout']
[u'anderson', u'appoint', u'coach', u'zealand']
[u'anderson', u'appoint', u'zealand', u'coach']
[u'earli', u'tast', u'later', u'battl']
[u'appeal', u'court', u'consid', u'arrang', u'marriag']
[u'asic', u'strike', u'deal', u'onetel', u'boss']
[u'aust', u'energi', u'forum', u'kick', u'darwin']
[u'australia', u'look', u'send', u'warn', u'messag', u'world']
[u'australia', u'unchang', u'davi', u'clash', u'sweden']
[u'quiet', u'sharehold', u'vote']
[u'back', u'council', u'build', u'regul', u'review']
[u'baptist', u'pastor', u'commit', u'stand', u'trial']
[u'birmingham', u'host', u'world', u'best', u'indoor']
[u'blair', u'commit', u'iraq', u'crisi', u'downer']
[u'blatter', u'support', u'expand', u'world']
[u'boost', u'griffith', u'dialysi', u'servic']
[u'britain', u'list', u'test', u'iraq', u'avoid']
[u'britain', u'set', u'fresh', u'demand', u'iraq', u'disarm']
[u'british', u'compromis', u'fail', u'veto', u'power']
[u'bull', u'line', u'waratah', u'wrestl']
[u'putt', u'resign', u'incorrect', u'accus']
[u'boost', u'medic', u'school', u'place']
[u'candid', u'councillor', u'threaten', u'refshaug']
[u'cattl', u'sale', u'declar', u'success']
[u'cessnock', u'forum', u'tackl', u'jobless', u'rate']
[u'chief', u'justic', u'call', u'appoint']
[u'claim', u'secur', u'vote', u'major', u'media']
[u'committe', u'hold', u'local', u'govt', u'cost', u'shift', u'hear']
[u'commonwealth', u'urg', u'reconsid', u'doctor']
[u'communiti', u'sport', u'consult', u'extend']
[u'council', u'retir']
[u'council', u'cite', u'rise', u'request', u'ridicul']
[u'councillor', u'back', u'ocean', u'outfal', u'plan']
[u'court', u'order', u'thredbo', u'disast', u'mediat']
[u'quit', u'tiger', u'vice', u'captainci']
[u'crean', u'call', u'restart', u'dump', u'site', u'search']
[u'crean', u'call', u'iraq', u'terrorist', u'link']
[u'crow', u'select', u'carey', u'collingwood', u'clash']
[u'cuckoo', u'squatter', u'get', u'evict', u'bird']
[u'cyclist', u'mourn', u'kivilev', u'death']
[u'cyclon', u'craig', u'weaken', u'tropic']
[u'danger', u'rail', u'cross', u'highlight']
[u'davi', u'squad', u'unchang', u'swiss']
[u'dead', u'shark', u'attack', u'prompt', u'campaign']
[u'rosa', u'return', u'drive', u'mclaren']
[u'delay', u'paedophil', u'case', u'frustrat', u'judg']
[u'democrat', u'dismiss', u'address', u'simper']
[u'develop', u'odd', u'council', u'gnarabup', u'beach']
[u'develop', u'maria', u'island', u'wont', u'disturb', u'nation']
[u'dollar', u'market', u'replay']
[u'dollar', u'slip', u'beneath', u'cent']
[u'drill', u'start', u'salin', u'studi']
[u'drug', u'accus', u'moroccan', u'accus', u'kenyan', u'rumour']
[u'eagl', u'face', u'demon', u'matera', u'brother']
[u'economist', u'predict', u'drop', u'total', u'employ']
[u'effort', u'underway', u'soon', u'unlock', u'natur']
[u'enron', u'execut', u'charg', u'fraud']
[u'escap', u'plane', u'forc', u'land']
[u'farmer', u'posit', u'drought', u'end']
[u'fate', u'oppos', u'striker', u'decid', u'celtic']
[u'fear', u'woomera', u'closur', u'deter', u'space', u'industri']
[u'field', u'day', u'expans', u'plan', u'shelv']
[u'firm', u'defend', u'rail', u'cut']
[u'firm', u'seek', u'desalin', u'plant', u'approv']
[u'fishermen', u'reject', u'marin', u'reserv', u'propos']
[u'council', u'consid', u'legal', u'action']
[u'chief', u'give', u'evid']
[u'franc', u'reject', u'britain', u'offer', u'iraq']
[u'french', u'respons', u'baffl', u'britain', u'howard', u'hit']
[u'deposit', u'dongara']
[u'geelong', u'mayor', u'account', u'fraud', u'earn', u'year', u'jail']
[u'gilbert', u'keen', u'finish', u'high']
[u'goodman', u'fielder', u'cave', u'takeov']
[u'govt', u'open', u'rout', u'competit']
[u'govt', u'tri', u'dismantl', u'atsic', u'robinson']
[u'welcom', u'medic', u'indemn', u'plan']
[u'hanson', u'tour', u'central', u'west']
[u'hawk', u'come', u'croc']
[u'hawk', u'swoop', u'croc']
[u'hewitt', u'advanc', u'safin', u'dismantl', u'scud']
[u'hewitt', u'fitz', u'gerald', u'camplin', u'sport', u'gong']
[u'home', u'lose', u'fire', u'rebuild']
[u'hop', u'fade', u'find', u'miss', u'yachtsman']
[u'hospit', u'emerg', u'figur', u'fuel', u'elect', u'debat']
[u'hospitalis', u'mexican', u'presid', u'refus', u'announc']
[u'howard', u'appeal', u'support', u'campaign', u'iraq']
[u'howard', u'state', u'case', u'iraq']
[u'huge', u'increas', u'peopl', u'catch', u'speed']
[u'hyster', u'communiti', u'respons', u'wast', u'plant', u'govt']
[u'india', u'say', u'malaysia', u'regret', u'raid', u'worker']
[u'inquiri', u'focus', u'region', u'bank', u'servic']
[u'investig', u'turbul', u'problem']
[u'iraq', u'deni', u'drone', u'aircraft', u'biolog', u'warfar']
[u'iraq', u'destroy', u'ban', u'missil']
[u'iraqi', u'communiti', u'want', u'reput', u'restor']
[u'iraq', u'peac', u'process', u'fall', u'apart', u'chile']
[u'japan', u'rocker', u'properti', u'manag', u'jail', u'fraud']
[u'figur', u'dont', u'match', u'strong', u'economi', u'labor']
[u'jobless', u'rate', u'fall', u'month']
[u'juvenil', u'custodi', u'doubl']
[u'kalgoorli', u'boulder', u'hous', u'market']
[u'kashmir', u'blast', u'kill']
[u'keel', u'apologis', u'court', u'onetel', u'collaps']
[u'kenya', u'snare', u'semi', u'berth']
[u'kidman', u'zellweg', u'oscar', u'cliffhang']
[u'labor', u'pledg', u'environ', u'boost']
[u'learn', u'pathway', u'trial', u'extend']
[u'local', u'farmer', u'feder', u'parliament']
[u'local', u'member', u'accus', u'cut', u'job']
[u'locust', u'increas', u'contain', u'condit']
[u'loss', u'airlin', u'wont', u'impact', u'town']
[u'love', u'concern', u'toss', u'despit', u'rain']
[u'lpga', u'tour', u'season', u'kick', u'tucson']
[u'major', u'produc', u'accus', u'boycott', u'forum']
[u'unfit', u'face', u'rape', u'trial']
[u'miss', u'polic', u'search', u'area']
[u'charg', u'grant', u'bail']
[u'stand', u'trial', u'toowoomba', u'murder']
[u'medic', u'indemn', u'plan', u'welcom']
[u'melbourn', u'comm', u'game', u'face', u'cost', u'blow']
[u'million', u'dollar', u'spend', u'protect', u'lake']
[u'minist', u'defend', u'time', u'woomera', u'closur']
[u'mobil', u'oper', u'theatr', u'visit', u'north', u'west']
[u'job', u'worker']
[u'rain', u'need', u'reduc', u'water', u'suppli', u'salin']
[u'mozzi', u'coil', u'hous', u'blaze']
[u'music', u'robot', u'predict', u'chart', u'hit']
[u'nauru', u'parliament', u'break', u'speaker', u'stalem']
[u'navi', u'wont', u'send', u'doctor', u'investig', u'home']
[u'netbal', u'award', u'damag', u'pregnanc']
[u'effort', u'curb', u'road', u'kill']
[u'guidelin', u'littl', u'impact', u'fisher']
[u'korea', u'close', u'nuclear', u'capabl', u'say']
[u'pat']
[u'coalit', u'pledg', u'specialist', u'rural', u'health', u'unit']
[u'opposit', u'accus', u'labor', u'soft', u'crime']
[u'offer', u'doesnt', u'appeas', u'coast', u'polic']
[u'accus', u'labor', u'emerg', u'dept', u'figur', u'cover']
[u'park', u'hand', u'indigen', u'communiti']
[u'patrol', u'boat', u'snub', u'confus', u'council']
[u'pelican', u'shore', u'develop', u'fault', u'councillor']
[u'philippin', u'militari', u'fight', u'rebel']
[u'pine', u'aid', u'effort', u'defenc']
[u'plan', u'decreas', u'park', u'cost', u'mere', u'public']
[u'fail', u'link', u'iraq', u'terror', u'crean']
[u'fail', u'truth', u'test', u'iraq', u'crean']
[u'state', u'case', u'iraq']
[u'polic', u'arrest', u'murder', u'seri', u'nigeria']
[u'policeman', u'guilti', u'rape']
[u'polic', u'probe', u'fatal', u'crash']
[u'pont', u'hop', u'send', u'warn', u'messag']
[u'port', u'pay', u'price', u'rough', u'docker']
[u'portsmouth', u'entrench', u'posit', u'atop', u'divis']
[u'premier', u'reject', u'overspend', u'claim']
[u'protest', u'ralli', u'give', u'iraq', u'speech']
[u'push', u'tail', u'dock', u'draw', u'critic']
[u'rain', u'help', u'break', u'illawarra', u'drought']
[u'real', u'milan', u'champion', u'lead']
[u'cross', u'seek', u'blood', u'donat']
[u'resid', u'penalis', u'stop']
[u'resid', u'unhappi', u'freeway', u'probe']
[u'rivercar', u'worker', u'help', u'boost', u'wetland']
[u'robertson', u'upbeat', u'elect', u'chanc']
[u'row', u'record', u'progress', u'slowli']
[u'russia', u'call', u'time', u'iraq']
[u'govt', u'misrepres', u'hous', u'issu', u'mcewen']
[u'scientist', u'walk', u'world', u'oldest', u'footstep']
[u'search', u'continu', u'miss', u'yachtsman']
[u'search', u'miss', u'yachtsman', u'suspend']
[u'secur', u'council', u'meet', u'iraq', u'draft']
[u'silver', u'spike', u'champ', u'begin', u'campaign']
[u'smart', u'phone', u'know', u'answer']
[u'sorenstam', u'miss', u'lpga', u'open']
[u'stomach', u'hit', u'indian', u'well', u'tournament']
[u'subject', u'teacher', u'drop', u'survey']
[u'survey', u'highlight', u'fewer', u'region', u'communic']
[u'surviv', u'rat', u'china', u'artifici', u'breed', u'panda']
[u'suspect', u'serbia', u'kill']
[u'tafe', u'want', u'local', u'worker', u'project']
[u'tasmanian', u'extradit', u'darwin']
[u'strike']
[u'tikolo', u'hail', u'kenya', u'greatest']
[u'timber', u'expans', u'promis', u'hundr', u'job']
[u'timber', u'worker', u'strike', u'better']
[u'tourist', u'train', u'north']
[u'troop', u'readi', u'cosgrov']
[u'turkey', u'fast', u'track', u'cabinet', u'vote']
[u'west', u'bank', u'battl']
[u'ullrich', u'team', u'confid', u'suspens', u'lift']
[u'unemploy', u'rate', u'fall']
[u'give', u'access', u'qlds', u'biggest', u'supercomput']
[u'team', u'resum', u'khmer', u'roug', u'talk']
[u'forc', u'command', u'arriv', u'qatar', u'base']
[u'girl', u'month', u'disappear']
[u'master', u'women', u'protest', u'go', u'court']
[u'stick', u'iraq', u'deadlin']
[u'trade', u'deficit', u'narrow', u'billion']
[u'govt', u'defend', u'season', u'effort']
[u'head', u'iraq', u'peac', u'campaign', u'worker']
[u'waugh', u'toss', u'test', u'futur']
[u'wheat', u'sharehold', u'elect', u'director']
[u'issu', u'global', u'health', u'alert', u'pneumonia']
[u'widow', u'unhappi', u'govt', u'respons']
[u'wildcat', u'lick', u'wound', u'dramat', u'loss']
[u'williamson', u'claim', u'second', u'packer', u'prize', u'ward']
[u'wind', u'farm', u'project', u'delay']
[u'woman', u'dead', u'accid']
[u'woman', u'guilti', u'receiv', u'secret']
[u'woman', u'stab', u'face']
[u'wood', u'mickelson', u'garcia', u'play', u'better', u'ball']
[u'worker', u'union', u'campaign', u'rise']
[u'world', u'artifici', u'brain', u'tissu', u'test']
[u'young', u'gun', u'jockey', u'limelight']
[u'zimbabw', u'minist', u'say', u'govt', u'amend', u'tough', u'media']
[u'civilian', u'kill', u'palestinian', u'upris']
[u'aborigin', u'legal', u'servic', u'appeal', u'court']
[u'aceh', u'live', u'timor', u'day', u'academ']
[u'resid', u'slug', u'petrol', u'price', u'hike']
[u'employe', u'agre', u'return', u'work']
[u'journalist', u'strike', u'preserv', u'credibl']
[u'airlin', u'appeal', u'court', u'rule', u'blood', u'clot']
[u'rout', u'open', u'competit', u'threshold']
[u'alic', u'spring', u'risk', u'attack']
[u'judg', u'parti', u'health', u'polici']
[u'batchelor', u'disput', u'court']
[u'antarct', u'suppli', u'ship', u'make']
[u'anti', u'dope', u'court', u'govern', u'sport']
[u'anti', u'protest', u'pelt', u'egg']
[u'kill', u'itali', u'pileup']
[u'aust', u'market', u'follow', u'global', u'rebound']
[u'australian', u'athlet', u'ask', u'lift', u'game']
[u'aust', u'free', u'trade', u'talk', u'begin']
[u'author', u'plan', u'investig', u'trefoil', u'plane']
[u'author', u'search', u'bomb', u'suspect']
[u'award', u'recognis', u'goolagong', u'cawley']
[u'bali', u'survivor', u'mccartney', u'return']
[u'bank', u'industri', u'move', u'tackl', u'fraud']
[u'bass', u'strait', u'ferri', u'turn', u'passeng']
[u'beach', u'manag', u'chang', u'expect']
[u'black', u'cap', u'chang', u'match']
[u'blake', u'stand', u'trial', u'wife', u'murder']
[u'bodi', u'leven', u'river']
[u'brack', u'launch', u'bushfir', u'probe']
[u'brigadi', u'prevent', u'attend', u'defenc', u'expo']
[u'britain', u'consid', u'crisi', u'summit']
[u'break', u'hill', u'jobless', u'rate', u'fall']
[u'brumbi', u'earn', u'bonus']
[u'bull', u'fight', u'slater']
[u'cairn', u'dengu', u'fever', u'outbreak', u'worsen']
[u'countri', u'polic', u'boost']
[u'releas', u'speed', u'statist']
[u'water', u'share', u'plan', u'review']
[u'carey', u'ricciuto', u'play', u'collingwood']
[u'cdep', u'seek', u'safeti', u'offic', u'scheme']
[u'child', u'care', u'centr', u'want', u'state', u'wide', u'rise']
[u'church', u'air', u'asylum', u'seeker', u'concern']
[u'church', u'fear', u'expel', u'iranian', u'asylum', u'seeker']
[u'claim', u'chopper', u'safeti', u'direct', u'like', u'impact']
[u'claim', u'site', u'near', u'break', u'hill', u'suitabl']
[u'clarenc', u'water', u'restrict', u'remov']
[u'clijster', u'cruis', u'indian', u'well', u'semi', u'final']
[u'climat', u'chang', u'caus', u'demis', u'mayan', u'report']
[u'resurrect', u'mandatori', u'sentenc']
[u'coff', u'look', u'forward', u'stronger', u'growth']
[u'commerci', u'fisher', u'seek', u'pariti']
[u'compani', u'cop', u'fine', u'diesel', u'spill']
[u'confer', u'hear', u'billionair', u'irrig', u'plan']
[u'copi', u'queensland', u'land', u'blow', u'domest']
[u'correct', u'centr', u'safeti', u'talk', u'continu']
[u'councillor', u'expel', u'call']
[u'council', u'loss', u'concern']
[u'court', u'reserv', u'appeal', u'decis', u'darci']
[u'court', u'say', u'backpack', u'respons', u'dive']
[u'court', u'decid', u'bail', u'case', u'accus']
[u'crow', u'gambl', u'carey']
[u'crow', u'carey', u'spare']
[u'dalbi', u'award', u'tender', u'desalin', u'plant']
[u'dead', u'woman', u'year', u'later']
[u'death', u'toll', u'rise', u'bombay', u'train', u'bomb']
[u'debat', u'rag', u'freeway', u'bypass']
[u'differ', u'resolv', u'mall', u'work']
[u'dolphin', u'hope', u'win', u'streak', u'aliv']
[u'dozen', u'arrest', u'serbian', u'kill', u'report']
[u'eagl', u'face', u'demon', u'matera', u'brother']
[u'eas', u'water', u'restrict', u'certainti']
[u'environ', u'strategi', u'introduc', u'japan']
[u'scan', u'propos', u'jail']
[u'feder', u'fund', u'black', u'spot']
[u'feder', u'fight', u'hurt', u'democrat']
[u'woman', u'choos', u'waff', u'section', u'presid']
[u'fisheri', u'dept', u'investig', u'death', u'southern']
[u'fitzroy', u'legend', u'die', u'age']
[u'franc', u'insist', u'peac', u'iraq', u'solut']
[u'fund', u'boost', u'limeston', u'coast', u'develop', u'board']
[u'project', u'burrup', u'peninsula', u'shelv']
[u'german', u'court', u'static', u'teacher']
[u'german', u'leader', u'condemn', u'logic']
[u'girl', u'hospit', u'adelaid']
[u'gold', u'coast', u'seek']
[u'gold', u'slump', u'month']
[u'govt', u'criticis', u'stall', u'superannu']
[u'govt', u'support', u'magnesium', u'smelter', u'studi']
[u'govt', u'wave', u'stick', u'golden', u'handshak']
[u'grey', u'water', u'put', u'spurt']
[u'harvey', u'norman', u'announc', u'profit', u'jump']
[u'health', u'insur', u'premium', u'rise']
[u'health', u'insur', u'year']
[u'health', u'servic', u'welcom', u'renal', u'unit', u'announc']
[u'hedc', u'continu', u'sasktel', u'effort']
[u'helicopt', u'head', u'stricken', u'bushwalk']
[u'hewitt', u'advanc', u'safin', u'dismantl', u'scud']
[u'hewitt', u'battl', u'quarter', u'final', u'berth']
[u'hollywood', u'star', u'rsvp', u'oscar']
[u'homicid', u'investig', u'launch', u'guilford', u'area']
[u'hope', u'improv', u'water', u'conserv', u'awar']
[u'hope', u'resolut', u'lifesav', u'club']
[u'howard', u'move', u'iraq', u'doubter']
[u'howard', u'defi', u'poll', u'join', u'iraq']
[u'inquiri', u'examin', u'aust', u'indon', u'relationship']
[u'interest', u'nativ', u'titl', u'parti', u'urg', u'regist']
[u'iraq', u'reject', u'british', u'propos', u'avoid']
[u'isra', u'guard', u'kill', u'armi', u'mistak']
[u'kane', u'grab', u'stroke', u'lead', u'lpga', u'season', u'open']
[u'kane', u'lead', u'lpga', u'season', u'open']
[u'khan', u'captur', u'zealand', u'falter']
[u'king', u'order', u'million', u'concert']
[u'bali', u'victim', u'buri', u'solemn', u'ceremoni']
[u'light', u'plane', u'mishap', u'caloundra']
[u'live', u'anim', u'export', u'declin']
[u'local', u'govt', u'merger', u'plan', u'hand', u'councillor']
[u'asbesto', u'level', u'armidal', u'univers']
[u'charg', u'offenc']
[u'dead', u'brawl', u'north', u'perth']
[u'die', u'restrain', u'neighbour']
[u'manhunt', u'shoot', u'adelaid']
[u'face', u'court', u'theft', u'charg']
[u'market', u'hold', u'earli', u'gain']
[u'mccarthi', u'step', u'premier', u'leagu', u'releg']
[u'medico', u'predict', u'iraqi', u'death']
[u'melbourn', u'adopt', u'malle', u'scheme']
[u'charg', u'separ', u'stab']
[u'mental', u'ill', u'educ', u'cours', u'begin']
[u'merger', u'servic', u'district']
[u'west', u'jobless', u'rate', u'fall']
[u'owner', u'look', u'worker', u'soon']
[u'minist', u'consid', u'worker', u'hous', u'shortag']
[u'monarch', u'butterfli', u'surviv', u'cold', u'winter']
[u'shopper', u'reject', u'plastic', u'survey']
[u'suburb', u'add', u'dengu', u'outbreak', u'area']
[u'iluka', u'mildura', u'worker', u'reloc', u'hamilton']
[u'want', u'pine', u'detail']
[u'mayor', u'hint', u'stand']
[u'nat', u'council', u'road', u'fund', u'concern']
[u'facil', u'aim', u'develop', u'juvenil', u'diabet']
[u'prevent', u'drug', u'approv']
[u'dead', u'injur', u'bomb', u'rip', u'bombay']
[u'korea', u'prepar', u'test', u'ballist', u'missil']
[u'north', u'west', u'jobless', u'rate', u'fall']
[u'note', u'owner', u'where', u'patriot']
[u'board', u'consid', u'storm', u'salari']
[u'govt', u'reject', u'claim', u'jail']
[u'nurs', u'temporari', u'repriev']
[u'nylex', u'face', u'hefti', u'fine', u'guilti', u'spill']
[u'dead', u'cyclon', u'hit', u'caledonia']
[u'opposit', u'second', u'regul', u'power', u'interconnector']
[u'parent', u'seek', u'school', u'answer']
[u'allow', u'breastfe']
[u'parliament', u'hous', u'consid', u'secur', u'measur']
[u'patient', u'treatment', u'cost', u'feder', u'respons']
[u'peac', u'anti', u'protest', u'stag', u'melbourn']
[u'pension', u'welfar', u'payment', u'increas']
[u'polic', u'abandon', u'road', u'pursuit']
[u'polic', u'launch', u'plan', u'target', u'drink', u'driver']
[u'polic', u'probe', u'diouf', u'spit', u'incid']
[u'polic', u'probe', u'home', u'invas']
[u'polit', u'magazin', u'close', u'chines', u'govt']
[u'port', u'kembla', u'steelwork', u'evacu']
[u'port', u'kembla', u'steelwork', u'extinguish']
[u'portrait', u'terror', u'sheikh', u'young']
[u'protest', u'target', u'centr', u'fund', u'announc']
[u'push', u'leagu', u'club', u'chang']
[u'govt', u'will', u'discuss', u'rural', u'transport']
[u'queensland', u'urg', u'toler', u'muslim']
[u'rain', u'help', u'eas', u'jobless', u'rate']
[u'refshaug', u'apologis', u'councillor']
[u'roadblock', u'parti', u'order', u'mediat']
[u'roff', u'trick', u'steer', u'crusad']
[u'rooster', u'crush', u'eel', u'season', u'open']
[u'rooster', u'eel', u'clash', u'kick', u'start', u'season']
[u'african', u'asbesto', u'compani', u'shell', u'million', u'compo']
[u'sawmil', u'oper', u'seek', u'licenc', u'compo']
[u'sawmil', u'worker', u'continu', u'campaign']
[u'school', u'high', u'tech']
[u'sculli', u'hit', u'rail']
[u'search', u'miss', u'yachtsman', u'scale']
[u'secur', u'council', u'end', u'talk', u'deadlock', u'remain']
[u'senden', u'shoot', u'american', u'trio']
[u'senden', u'shoot', u'american', u'trio']
[u'case', u'decis', u'split', u'age', u'care', u'industri']
[u'shire', u'look', u'forward', u'chang']
[u'singapor', u'warn', u'travel', u'virus', u'outbreak']
[u'slater', u'star', u'blue']
[u'soprano', u'film', u'delay', u'contract', u'disput']
[u'souri', u'outlin', u'region', u'road', u'fund']
[u'south', u'east', u'water', u'licens', u'levi']
[u'lanka', u'hop', u'zealand', u'defeat']
[u'staff', u'rail', u'station', u'mean', u'ticket', u'hike']
[u'storm', u'flood', u'sweep', u'canberra']
[u'super', u'reform', u'compromis', u'govt']
[u'sweden', u'expel', u'iraqi', u'diplomat']
[u'task', u'forc', u'probe', u'suicid', u'rate']
[u'teen', u'shoot', u'neck', u'sydney']
[u'palestinian', u'rebel', u'clash']
[u'tourism', u'council', u'call', u'weather', u'access', u'road']
[u'turkey', u'ban', u'main', u'kurdish', u'parti']
[u'dead', u'semi', u'trailer', u'car', u'collid']
[u'uefa', u'quarter', u'knife', u'edg']
[u'unemploy', u'rate', u'rise']
[u'human', u'right', u'chief', u'slam', u'guantanamo', u'black', u'hole']
[u'union', u'concern', u'qanta', u'drug', u'alcohol', u'polici']
[u'union', u'consid', u'legal', u'fight', u'outsourc']
[u'unit', u'count', u'euro', u'pressur', u'gunner']
[u'major', u'want', u'iraq', u'schroeder']
[u'unlik', u'reach', u'iraq', u'deal', u'howard']
[u'claim', u'unusu', u'activ', u'north', u'korea', u'test', u'sit']
[u'militari', u'mass', u'iraq', u'offens']
[u'plan', u'allianc']
[u'senat', u'outlaw', u'partial', u'birth', u'abort']
[u'plan', u'north', u'korea', u'sky']
[u'wallabi', u'captain', u'coff', u'ambassador']
[u'possibl', u'delay', u'rail', u'open']
[u'water', u'board', u'sign', u'infrastructur', u'spend']
[u'water', u'plan', u'scrutini']
[u'weapon', u'inspector', u'die', u'iraq', u'road', u'crash']
[u'andi', u'say', u'zimbabw', u'captain']
[u'wind', u'contribut', u'ultralight', u'crash']
[u'woman', u'die', u'crash']
[u'woman', u'front', u'court', u'stab']
[u'woomera', u'site', u'nuclear', u'dump', u'govt']
[u'worker', u'walk', u'asbesto']
[u'work', u'start', u'soon']
[u'worldcom', u'announc', u'billion', u'write']
[u'veteran', u'releas', u'hospit']
[u'aid', u'drug', u'show', u'promis', u'sign']
[u'alsac', u'amateur', u'seek', u'prolong', u'fairytal']
[u'american', u'qualifi', u'spadea', u'semi']
[u'anti', u'medic', u'group', u'meet']
[u'atapattu', u'centuri', u'put', u'lanka', u'good', u'posit']
[u'aussi', u'striker', u'sterjovski', u'give', u'lill', u'hope']
[u'barrichello', u'blame', u'han', u'melbourn', u'crash']
[u'begay', u'gain', u'share', u'lead', u'florida']
[u'blacklock', u'brillianc', u'enliven', u'waratah']
[u'blair', u'welcom', u'east', u'peac', u'roadmap']
[u'blix', u'complet', u'check', u'list', u'draft', u'iraq']
[u'blix', u'receiv', u'latest', u'report', u'list', u'iraq']
[u'blue', u'snatch', u'titl']
[u'bochum', u'stand', u'bayern', u'hors', u'race']
[u'brizuela', u'snatch', u'late', u'equalis', u'ecuador']
[u'bunni', u'bulldog', u'sweat']
[u'bunni', u'bulldog', u'sweat', u'raider', u'pillag']
[u'bush', u'delay', u'palestinian']
[u'bush', u'peac', u'roadmap', u'releas']
[u'bush', u'waiv', u'pakistan', u'sanction']
[u'cambodia', u'agre', u'trash', u'thai', u'embassi']
[u'canberra', u'polic', u'blitz', u'nightspot', u'park']
[u'carr', u'promis', u'region', u'park', u'coff']
[u'chile', u'propos', u'week', u'disarma', u'plan']
[u'china', u'presid']
[u'cipollini', u'sprint', u'season']
[u'clijster', u'overwhelm', u'martinez', u'advanc', u'final']
[u'commonwealth', u'game', u'swansong', u'freeman']
[u'crow', u'season', u'final']
[u'darwin', u'polic', u'charg', u'teenag', u'shoot']
[u'davenport', u'clijster', u'clash', u'indian', u'well', u'final']
[u'daw', u'kasper', u'strike', u'bull', u'dismiss', u'blue']
[u'defenc', u'criticis', u'late', u'asbesto', u'warn']
[u'democrat', u'releas', u'gulf', u'health']
[u'deportivo', u'turn', u'domest', u'duti', u'european']
[u'diouf', u'cop', u'spit', u'fine']
[u'dont', u'underestim', u'kenya', u'gilchrist']
[u'edilson', u'sack', u'japanes', u'club']
[u'wood', u'germani']
[u'expert', u'examin', u'bodi', u'dolphin']
[u'govt', u'collect', u'ambo', u'levi', u'medicar']
[u'flower', u'announc', u'intern', u'retir']
[u'french', u'hope', u'summit', u'assist', u'peac', u'process']
[u'ganguli', u'fight', u'australia', u'showdown']
[u'ganguli', u'want', u'lanka', u'final']
[u'gatlin', u'block', u'speed']
[u'gilchrist', u'back', u'pont', u'waugh', u'back']
[u'greenpeac', u'protest', u'clash', u'polic', u'spain']
[u'gremio', u'libertador', u'save', u'coach']
[u'group', u'campaign', u'urban', u'plan', u'platform']
[u'health', u'insur', u'clear', u'annual', u'increas']
[u'hewitt', u'indian', u'well', u'semi']
[u'hewitt']
[u'howel', u'remesi', u'qatar', u'leaderboard']
[u'hurrican', u'sweep', u'past', u'shark']
[u'india', u'stroll', u'kiwi']
[u'india', u'stroll', u'kiwi']
[u'inquiri', u'order', u'suspect', u'murder', u'escap']
[u'iranian', u'detaine', u'stage', u'hunger', u'strike']
[u'iranian', u'detaine', u'finish', u'hunger', u'strike']
[u'iraqi', u'troop', u'plant', u'northern', u'border', u'bomb']
[u'jiranek', u'readi', u'milan', u'czech']
[u'kazakh', u'vinokourov', u'dedic', u'stage', u'kivilev']
[u'kenya', u'test', u'status']
[u'king', u'elimin', u'tiger']
[u'kosciuszko', u'nation', u'park', u'road', u'open']
[u'kuerten', u'romp']
[u'lehmann', u'join', u'pitch', u'critic']
[u'local', u'council', u'poll', u'close']
[u'mallon', u'shoot', u'tucson']
[u'charg', u'break', u'enter', u'offenc']
[u'escap', u'polic', u'custodi', u'question']
[u'shire', u'drought', u'declar', u'despit', u'rain']
[u'mortlock', u'doubt', u'shoulder', u'knock']
[u'nant', u'tame', u'len', u'leader', u'sight']
[u'nasa', u'look', u'resum', u'shuttl', u'flight', u'year']
[u'drug', u'help', u'pregnanc', u'rat']
[u'zealand', u'cling', u'world', u'lifelin']
[u'govt', u'compens', u'farmer', u'protect']
[u'green', u'urg', u'ballot', u'option']
[u'oppn', u'critic', u'inact', u'train']
[u'oppn', u'question', u'treasuri', u'independ']
[u'race', u'extend', u'sportsbet', u'licenc']
[u'nurs', u'posit', u'advertis']
[u'nation', u'presid', u'elect', u'shelv']
[u'palestinian', u'immedi', u'implement']
[u'palestinian', u'cautious', u'bush', u'talk', u'roadmap']
[u'palmerston', u'council', u'consid', u'boundari', u'extens']
[u'perth', u'hill', u'see', u'high', u'risk']
[u'polic', u'search', u'glen', u'forest', u'women', u'remain']
[u'port', u'hedland', u'detaine', u'hunger', u'strike']
[u'pozzato', u'take', u'stage', u'lead', u'tirreno']
[u'season', u'give', u'crow', u'momentum', u'ricciuto']
[u'protest', u'plan', u'ralli', u'vigil', u'chanc']
[u'oppn', u'concern', u'race', u'cut']
[u'queensland', u'anlezark', u'fifth', u'birmingham']
[u'resid', u'shock', u'plane', u'crash']
[u'roff', u'trick', u'steer', u'win', u'way']
[u'roff', u'lead', u'brumbi']
[u'rooster', u'flier', u'season', u'start']
[u'lose', u'cruis', u'liner', u'stopov']
[u'road', u'toll', u'previous', u'year']
[u'shark', u'shoot', u'premiership']
[u'shark', u'shoot', u'premiership']
[u'shirvington', u'record', u'qualifi', u'time']
[u'sister', u'hospit', u'crash', u'bedroom']
[u'lanka', u'ax', u'jayawarden']
[u'storm', u'caus', u'havoc']
[u'super', u'offic', u'open', u'hobart']
[u'sydney', u'charg', u'break', u'enter']
[u'sydney', u'rooster', u'kick', u'season', u'victori']
[u'plane', u'crash', u'investig', u'month']
[u'tassi', u'north', u'west', u'mourn', u'kill', u'trefoil']
[u'teenag', u'victim', u'tasmanian', u'crash']
[u'river', u'crash', u'emelec', u'troubl', u'match']
[u'tiatto', u'slog', u'fit', u'battl']
[u'tiger', u'bite', u'dragon']
[u'tonga', u'smash', u'south', u'korea', u'world', u'play']
[u'john', u'travolta', u'headlin', u'oscar']
[u'union', u'accus', u'govt', u'finish', u'totalcar']
[u'unit', u'condemn', u'striker', u'poor', u'finish']
[u'unit', u'count', u'euro', u'pressur', u'gunner']
[u'wait', u'iraqi', u'report']
[u'stock', u'flat', u'amid', u'threat']
[u'peac', u'ralli', u'point', u'organis']
[u'odd', u'cwealth', u'forestri', u'polici']
[u'appear', u'brisban', u'court', u'fraud', u'charg']
[u'waratah', u'defeat', u'bull']
[u'warni', u'turn', u'talker']
[u'waugh', u'declar', u'windi', u'starter']
[u'waugh', u'west', u'indi']
[u'waugh', u'play']
[u'wildlif', u'offic', u'investig', u'dolphin', u'death']
[u'woman', u'charg', u'attempt', u'murder', u'burn']
[u'indian', u'policemen', u'kill', u'milit', u'attack']
[u'mercuri', u'success', u'media', u'award']
[u'aid', u'council', u'forc', u'close']
[u'labor', u'caucus', u'consid', u'inner', u'critic']
[u'plan', u'transpar', u'real', u'estat', u'industri']
[u'adelaid', u'dump', u'final']
[u'afghanistan', u'releas', u'pakistani', u'prison']
[u'anti', u'protest', u'confront']
[u'anti', u'protest', u'confront', u'howard']
[u'archaeologist', u'race', u'past']
[u'asia', u'power', u'ahead', u'japan', u'dynasti']
[u'aussi', u'doolan', u'content', u'arizona']
[u'aussi', u'shock', u'pollock', u'sack']
[u'aussi', u'slight', u'troubl', u'kenya']
[u'aussi', u'surviv', u'kenyan', u'scare']
[u'aust', u'hope', u'friend', u'assist', u'friend', u'free', u'trade']
[u'australian', u'dilemma', u'symond', u'harvey']
[u'belgium', u'refus', u'transit', u'forc', u'iraq']
[u'blix', u'consult', u'iraqi', u'invit']
[u'blue', u'wicket', u'fall']
[u'bodi', u'brisban', u'suburb']
[u'bordeau', u'end', u'lorient', u'french', u'defenc']
[u'bring', u'aussi', u'lanka']
[u'brogden', u'confid', u'upset', u'victori']
[u'bush', u'hold', u'littl', u'hope', u'peac', u'disarma']
[u'bush', u'prepar', u'american', u'iraq']
[u'carr', u'call', u'green', u'prefer']
[u'say', u'airport', u'fli', u'shaki', u'time']
[u'china', u'vote', u'presid']
[u'darwin', u'polic', u'interview', u'boy', u'threat']
[u'defenc', u'shouldnt', u'subject', u'veto', u'costello']
[u'devonish', u'take', u'gold', u'blight', u'final']
[u'dragila', u'make', u'shock', u'exit', u'birmingham']
[u'ebola', u'outbreak', u'claim', u'victim']
[u'ethnic', u'film', u'festiv', u'take', u'youth', u'direct']
[u'fergi', u'set', u'sight', u'perfect', u'finish']
[u'franc', u'say', u'day', u'away']
[u'greenpeac', u'protest', u'arrest', u'melbourn']
[u'gunner', u'face', u'champion', u'leagu', u'crisi']
[u'hansen', u'regain', u'tripl', u'jump', u'crown']
[u'heart', u'research', u'welcom', u'half', u'million', u'dollar']
[u'hewitt', u'await', u'challeng', u'semi', u'delay']
[u'hewitt', u'march', u'indian', u'well', u'final']
[u'highland', u'lose', u'cat', u'fail', u'grab', u'spot']
[u'hill', u'wont', u'comment', u'tortur', u'claim']
[u'igelstrom', u'set', u'breaststrok', u'short', u'cours', u'record']
[u'indonesian', u'tortur', u'timor']
[u'investig', u'describ', u'trefoil', u'crash', u'tragic']
[u'iraqi', u'minist', u'doubt', u'summit', u'bring', u'peac']
[u'iraq', u'issu', u'come', u'head']
[u'iraq', u'formal', u'foot']
[u'iraq', u'prepar', u'aggress']
[u'knight', u'bronco', u'open', u'account']
[u'lankan', u'charg', u'semi']
[u'late', u'helguera', u'goal', u'keep', u'real', u'spain']
[u'trick', u'set', u'kenya', u'stumbl']
[u'thank', u'pont', u'trick', u'advic']
[u'leonard', u'jump', u'second', u'amaz', u'charg']
[u'like', u'minded', u'help', u'free', u'trade', u'agreement']
[u'risk', u'killer', u'strain', u'pneumonia', u'aust']
[u'magpi', u'titl', u'race', u'robson']
[u'injur', u'campsi', u'jack']
[u'mccarthi', u'remain', u'posit', u'latest', u'setback']
[u'milan', u'lose', u'grind', u'juve']
[u'cicada', u'speci', u'discov']
[u'rat', u'rank', u'compani']
[u'decis', u'csiro', u'secur']
[u'polic', u'welcom', u'coalit', u'duti', u'polici']
[u'evalu', u'awar', u'campaign']
[u'fight', u'friend', u'deport']
[u'nurs', u'home', u'face', u'loss', u'accredit']
[u'olonga', u'like', u'treason', u'charg']
[u'olonga', u'quit', u'threat']
[u'olymp', u'adam', u'despit']
[u'ottk', u'claim', u'titl', u'mitchel']
[u'pakistan', u'arrest', u'qaeda', u'member']
[u'passeng', u'train', u'derail', u'victorian', u'border']
[u'player', u'fume', u'get', u'chop', u'qatar']
[u'player', u'fume', u'qatar', u'chop', u'decis']
[u'pollock', u'get', u'chop']
[u'port', u'elizabeth', u'experi', u'invalu', u'pont']
[u'port', u'melbourn', u'greenpeac', u'protest', u'end']
[u'season', u'give', u'crow', u'momentum', u'ricciuto']
[u'quarantin', u'say', u'tide', u'assist', u'pest', u'control']
[u'rann', u'lobbi', u'wast', u'dump', u'reject']
[u'rodriguez', u'sprint', u'pari', u'nice', u'glori']
[u'rover', u'blow', u'premiership', u'titl', u'race', u'apart']
[u'rover', u'blow', u'titl', u'race', u'wide', u'open']
[u'russian', u'restaur', u'ban', u'citizen']
[u'govt', u'offer', u'region', u'festiv', u'fund']
[u'serbian', u'polic', u'arrest', u'assassin']
[u'shearer', u'drop', u'hint', u'england', u'comeback']
[u'shiit', u'promis', u'action', u'saddam']
[u'shooter', u'adam', u'ban', u'year']
[u'shop', u'urg', u'promot', u'plastic', u'altern']
[u'sierra', u'leon', u'rebel', u'face', u'crime', u'tribun']
[u'south', u'prevail', u'score', u'blitz']
[u'spanish', u'talk', u'protest']
[u'spectat', u'gather', u'melbourn', u'osaka', u'send']
[u'stone', u'goal', u'give', u'pompey', u'wolv']
[u'storm', u'snatch', u'gasp', u'thriller']
[u'studi', u'suggest', u'upper', u'lead', u'downer']
[u'sunshin', u'coast', u'escape', u'turn']
[u'sunshin', u'coast', u'polic', u'recaptur', u'escape']
[u'super', u'mario', u'sprint', u'stage']
[u'teenag', u'kill', u'accid']
[u'thousand', u'march', u'world', u'possibl']
[u'thousand', u'respect', u'slay', u'serbian']
[u'tiger', u'dragon', u'doggi', u'raider']
[u'tonga', u'crush', u'south', u'korea', u'spain', u'tunisia']
[u'trefoil', u'island', u'crash', u'investig', u'hamper']
[u'warn', u'worldwid', u'threat', u'killer', u'pneumonia']
[u'protest', u'plan', u'surround', u'white', u'hous']
[u'peac', u'ralli', u'continu', u'weekend']
[u'viduka', u'doubl', u'strike', u'save', u'leed']
[u'polic', u'search', u'remain', u'miss', u'woman']
[u'water', u'suppli', u'summit', u'open', u'japan']
[u'week', u'long', u'search', u'miss', u'yachtsman', u'continu']
[u'wildcat', u'adelaid', u'season']
[u'aborigin', u'elder', u'assist', u'arnhem', u'manag']
[u'accid', u'hamper', u'servic']
[u'ajax', u'feyenoord', u'score', u'come', u'win']
[u'albani', u'biggest', u'jobless', u'fall']
[u'alleg', u'drug', u'dealer', u'face', u'court']
[u'art', u'group', u'welcom', u'festiv', u'boost']
[u'aussi', u'doolan', u'take', u'lpga', u'event', u'record']
[u'aussi', u'doolan', u'take', u'lpga', u'season', u'open']
[u'australian', u'human', u'shield', u'stay']
[u'australian', u'peac', u'activist', u'vow', u'stay', u'iraq']
[u'australian', u'urg', u'leav', u'iraq']
[u'australia', u'plan', u'intimid', u'lanka']
[u'bali', u'bomb', u'suspect', u'move', u'sunnier', u'spot']
[u'ballarat', u'assault', u'rise']
[u'boy', u'toy']
[u'chang', u'swan', u'hill', u'council']
[u'fine', u'illeg', u'fish']
[u'biologist', u'unsur', u'cane', u'toad', u'impact']
[u'bleed', u'head', u'liber', u'take', u'templ']
[u'blix', u'advis', u'withdraw', u'staff', u'iraq']
[u'blood', u'clot', u'test', u'speed', u'treatment']
[u'brack', u'defend', u'timelin']
[u'brisban', u'golfer', u'win', u'pambula', u'merimbula', u'event']
[u'britain', u'order', u'citizen', u'gulf']
[u'brogden', u'urg', u'voter', u'throw', u'labor']
[u'brown', u'declar', u'howard', u'bush', u'patsi']
[u'bush', u'phone', u'howard', u'iraq']
[u'busi', u'expect', u'quick', u'recoveri']
[u'cabinet', u'halt', u'march', u'iraq', u'democrat']
[u'cabinet', u'decid', u'commit', u'day']
[u'canberra', u'hospit', u'alert', u'pneumonia', u'threat']
[u'chamber', u'welcom', u'fast', u'eddi', u'news']
[u'chang', u'aplenti', u'council', u'elect']
[u'chang', u'plan', u'nasa', u'balloon']
[u'chariti', u'oper', u'admit', u'raffl', u'fraud']
[u'chest', u'ill', u'outbreak', u'reach', u'perth']
[u'citi', u'seek', u'injunct', u'stop', u'shark', u'match']
[u'coast', u'form', u'schooli', u'task', u'forc']
[u'cole', u'myer', u'announc', u'profit']
[u'communiti', u'safeti', u'spotlight']
[u'concern', u'air', u'refineri', u'emiss']
[u'connolli', u'fin', u'umpir', u'outburst']
[u'construct', u'union', u'reject', u'product', u'report']
[u'council', u'seek', u'nation', u'insur', u'scheme']
[u'council', u'want', u'reduc', u'relianc', u'plastic', u'bag']
[u'court', u'hear', u'kidnap', u'claim']
[u'crash', u'investig', u'hope', u'better', u'weather']
[u'croc', u'play', u'hop', u'live']
[u'democrat', u'ballot', u'show', u'staunch', u'opposit']
[u'democrat', u'campaign', u'western']
[u'dizzi', u'road', u'recoveri']
[u'doubl', u'murder', u'accus', u'stay', u'bar']
[u'downer', u'expect', u'week']
[u'season', u'cut', u'cream', u'product']
[u'saddam', u'resign', u'avert']
[u'export', u'benefit', u'seafood', u'handbook']
[u'farmer', u'time', u'submiss']
[u'farmer', u'group', u'offer', u'qualifi', u'support']
[u'farmer', u'protest', u'john', u'diseas', u'zone']
[u'farm', u'thinktank', u'plead', u'lifelin']
[u'fear', u'dengu', u'outbreak', u'spread']
[u'govt', u'victorian', u'applic']
[u'feofanova', u'set', u'indoor', u'pole', u'vault', u'record']
[u'ferguson', u'consid', u'give', u'youngster', u'premiership']
[u'fifa', u'allow', u'conduct', u'refere', u'radio', u'experi']
[u'team', u'watch', u'home', u'near', u'scarsdal', u'blaze']
[u'firm', u'pull', u'power', u'station', u'plan']
[u'fish', u'kill', u'link', u'rainfal']
[u'footbal', u'death', u'refer', u'coron']
[u'forest', u'audit', u'scheme']
[u'director', u'fight']
[u'ambassador', u'name', u'china', u'foreign', u'minist']
[u'forsayth', u'develop', u'busi', u'plan', u'wake', u'rail']
[u'fourth', u'stage', u'tirreno', u'adriatico', u'cancel']
[u'franc', u'decid', u'overnight', u'iraq', u'veto', u'blair']
[u'franc', u'russia', u'restat', u'veto', u'threat']
[u'germani', u'spurn', u'plea', u'iraq', u'back']
[u'gold', u'coast', u'get', u'station']
[u'govt', u'say', u'charg', u'freez', u'reckless']
[u'govt', u'upgrad', u'travel', u'alert', u'east']
[u'govt', u'warn', u'australian', u'risk', u'zone']
[u'graze', u'compani', u'settl', u'jackeroo', u'death', u'case']
[u'green', u'candid', u'highlight', u'issu']
[u'green', u'environment', u'conscienc']
[u'face', u'dental', u'woe']
[u'health', u'dept', u'play', u'dengu', u'outbreak', u'risk']
[u'hervey', u'scallop', u'hatcheri']
[u'hewitt', u'make']
[u'hobart', u'tunnel', u'viabl', u'say', u'economist']
[u'hong', u'kong', u'say', u'pneumonia']
[u'hope', u'health', u'breakthrough']
[u'hospit', u'death', u'result', u'second', u'murder', u'charg']
[u'howard', u'deni', u'role', u'free', u'trade', u'sweeten']
[u'howard', u'expect', u'iraq', u'diplomaci', u'come', u'head']
[u'howard', u'say', u'soldier', u'inquiri', u'cours']
[u'howard', u'wait', u'bush', u'summon', u'australian', u'troop']
[u'hundr', u'protest', u'loom']
[u'iceman', u'formula', u'one', u'properti']
[u'icpa', u'lobbi', u'recurr', u'fund']
[u'igelstrom', u'break', u'record']
[u'india', u'respect', u'kenya', u'srinath']
[u'injur', u'westhuizen', u'head', u'home']
[u'inquest', u'begin', u'fatal', u'shark', u'attack']
[u'inter', u'heat', u'juve', u'roma', u'flop']
[u'investig', u'continu', u'brisban', u'suspici']
[u'iraqi', u'detaine', u'nauru', u'dead']
[u'irish', u'presid', u'toast', u'pat', u'melbourn']
[u'isra', u'troop', u'enter', u'refuge', u'camp', u'kill']
[u'israel', u'lock', u'palestinian', u'area', u'festiv']
[u'israel', u'reject', u'critic', u'roadmap', u'propos', u'document']
[u'suffer', u'cronj', u'say', u'ax', u'pollock']
[u'johnson', u'win', u'hurdl', u'gold', u'jackson', u'farewel']
[u'journalist', u'urg', u'leav', u'baghdad']
[u'kirsten', u'join', u'donald', u'rhode', u'retir']
[u'knight', u'start', u'season', u'win', u'note']
[u'leonard', u'outlast', u'love', u'titl']
[u'level', u'restrict', u'come', u'forc']
[u'link', u'drug', u'crime', u'reason', u'unclear']
[u'magistr', u'quit', u'amid', u'lewd', u'alleg']
[u'major', u'parti', u'criticis', u'simplist', u'crime']
[u'charg', u'murder']
[u'face', u'court', u'murder', u'charg']
[u'face', u'drug', u'charg']
[u'jail', u'role', u'fatal', u'assault']
[u'market', u'stall', u'machin', u'rev']
[u'martyn', u'doubt', u'semi', u'final']
[u'martyn', u'struggl', u'finger', u'injuri']
[u'matera', u'hang', u'footbal', u'boot']
[u'mcgradi', u'want', u'dialogu', u'polic', u'union']
[u'mildura', u'mayor', u'lose', u'council', u'spot']
[u'plan', u'includ', u'road', u'survey']
[u'miner', u'list']
[u'mortlock', u'super', u'season']
[u'downplay', u'offic', u'breach']
[u'welcom', u'polic', u'station', u'progress']
[u'natur', u'fund', u'search', u'discard', u'origin']
[u'councillor', u'gannawarra', u'shire']
[u'cronj', u'claim', u'spark', u'protea', u'miseri']
[u'coalit', u'promis', u'southern', u'shoalhaven', u'hospit']
[u'say', u'miracl', u'avert']
[u'ogara', u'choos', u'world']
[u'pakistan', u'push', u'india', u'boycott']
[u'pasminco', u'record', u'loss']
[u'peter', u'matera', u'contempl', u'retir']
[u'plan', u'begin', u'indigen', u'job', u'scheme']
[u'expect', u'bush', u'troop', u'soon']
[u'give', u'west', u'papuan', u'second', u'refuge', u'chanc']
[u'polic', u'appeal', u'help', u'bash']
[u'polic', u'investig', u'park', u'cannabi', u'haul']
[u'polic', u'offic', u'face', u'court', u'fals', u'evid']
[u'polic', u'probe', u'fatal', u'hous', u'blaze']
[u'polic', u'probe', u'pedestrian', u'death']
[u'polic', u'seiz', u'illeg', u'porn', u'shop']
[u'polic', u'sidelin', u'detect', u'accus', u'drug', u'trade']
[u'polic', u'unruli', u'plane']
[u'polic', u'search', u'miss', u'yachtsman']
[u'polic', u'wont', u'link', u'drug', u'find']
[u'possibl', u'mysteri', u'pneumonia', u'case', u'report']
[u'potenti', u'dead', u'virus', u'spark', u'mozzi', u'warn']
[u'protest', u'ralli']
[u'push', u'medic', u'specialist']
[u'quick', u'victori', u'quagmir', u'iraq', u'analyst']
[u'race', u'cut', u'predict', u'spark', u'voter', u'backlash']
[u'race', u'meet', u'face']
[u'raider', u'prove', u'good', u'cowboy']
[u'report', u'confirm', u'danger', u'drink', u'swim']
[u'retail', u'chain', u'pay', u'thiev', u'steal', u'court', u'hear']
[u'week', u'baghdad', u'veteran']
[u'veteran', u'timor', u'inquiri']
[u'scheme', u'tackl', u'indigen', u'famili', u'violenc']
[u'sculli', u'announc', u'rail', u'commit']
[u'sculli', u'throw', u'surpris', u'parti', u'polici']
[u'secur', u'guard', u'bash', u'arm', u'hold']
[u'shearer', u'rule', u'possibl', u'england', u'return']
[u'shire', u'shelv', u'airport', u'revamp', u'plan']
[u'circuit', u'wind']
[u'silver', u'spike', u'champ', u'record']
[u'davi', u'hugh', u'dead']
[u'gaza', u'raid']
[u'skywest', u'servic']
[u'skywest', u'wont', u'rule', u'cut']
[u'socceroo', u'play', u'argentina']
[u'offer', u'voluntari', u'redund', u'shepparton']
[u'spur', u'boss', u'hoddl', u'rubbish', u'liverpool', u'diouf', u'claim']
[u'stage', u'khmer', u'roug', u'trial']
[u'statu', u'recognis', u'french', u'influenc']
[u'streak', u'insist', u'continu']
[u'struggl', u'restaurateur', u'turn', u'abalon', u'crime']
[u'stuttgart', u'hold', u'firm', u'champion', u'leagu', u'quest']
[u'super', u'power', u'accus', u'transpar']
[u'talli', u'escap', u'punch']
[u'tamworth', u'consid', u'coach', u'termin', u'limit']
[u'wetland', u'work', u'face', u'guidelin']
[u'teacher', u'welcom', u'oppn', u'disciplin', u'stanc']
[u'teen', u'jail', u'year', u'doig', u'murder']
[u'wrong', u'draw', u'talli']
[u'thoma', u'pull', u'world', u'titl']
[u'thoma', u'undergo', u'shoulder', u'surgeri']
[u'timber', u'mill', u'final', u'compo', u'offer']
[u'line', u'deni', u'biki', u'discrimin']
[u'union', u'seek', u'extra', u'payment', u'compulsori']
[u'work', u'hold', u'iraq', u'kuwait', u'buffer', u'zone']
[u'hit', u'phone', u'iraq', u'mandat']
[u'order', u'embassi', u'staff', u'east']
[u'order', u'diplomat', u'middl', u'east']
[u'valencia', u'slip', u'titl', u'pace']
[u'veget', u'plan', u'land', u'clear', u'green', u'group']
[u'govt', u'list', u'easter', u'sunday', u'trade', u'exempt']
[u'govt', u'urg', u'rethink', u'poki', u'signag']
[u'year', u'kitti']
[u'construct', u'industri']
[u'vinokurov', u'hang', u'retain', u'pari', u'nice', u'titl']
[u'virul', u'pneumonia', u'reach', u'australia']
[u'vote', u'hold', u'hardi', u'merger', u'plan']
[u'word', u'erupt', u'burrup', u'develop']
[u'cost', u'howard', u'lodg', u'lee']
[u'washington', u'take', u'metr', u'titl', u'cain']
[u'water', u'plan', u'question']
[u'waugh', u'battl', u'pont', u'name', u'deputi']
[u'wimbledon', u'ivanisev', u'tournament', u'report']
[u'woman', u'die', u'crash']
[u'women', u'nude', u'protest', u'loom']
[u'world', u'fallout', u'england', u'player']
[u'hop', u'widen', u'illeg', u'fisher']
[u'youth', u'servic', u'help', u'week', u'survey']
[u'zimbabw', u'stay', u'commonwealth', u'outer']
[u'bowden', u'group']
[u'acoss', u'urg', u'action', u'corpor', u'payout']
[u'adelaid', u'woman', u'stay', u'iraq', u'human', u'shield']
[u'audit', u'player', u'payment']
[u'age', u'care', u'fund', u'question']
[u'iraqi', u'diplomat', u'expel']
[u'anti', u'protest', u'messag', u'opera', u'hous']
[u'anti', u'protest', u'plan', u'shoot', u'parliament']
[u'arafat', u'conced', u'prime', u'minist', u'power']
[u'arsenal', u'face', u'break', u'week']
[u'athen', u'game', u'affect', u'iraq', u'crisi', u'minist']
[u'atsic', u'leader', u'critic', u'ineffici', u'report']
[u'australia', u'case', u'china', u'virus']
[u'australian', u'stock', u'ralli', u'morn', u'trade']
[u'australian', u'warn', u'leav', u'middl', u'east']
[u'bell', u'come', u'term', u'schooli', u'task', u'forc']
[u'bishop', u'say', u'lead', u'post', u'iraq', u'heal']
[u'blair', u'lose', u'iraq', u'stanc']
[u'brack', u'ban', u'feel', u'good', u'junket']
[u'brand', u'hatch', u'renam', u'curv', u'sheen']
[u'brazil', u'host', u'world']
[u'major', u'sharehold', u'support', u'merger']
[u'bush', u'phone', u'howard']
[u'bush', u'race', u'cut']
[u'busi', u'urg', u'easter', u'fair']
[u'broader', u'bushfir', u'probe']
[u'campaign', u'seek', u'fund', u'chang']
[u'cathol', u'lobbi', u'condemn', u'iraq', u'immor']
[u'champion', u'leagu', u'incom', u'cut', u'ajax', u'loss']
[u'chew', u'collar', u'viewer', u'complaint']
[u'childcar', u'centr', u'seek', u'support']
[u'china', u'call', u'secur', u'council', u'stop']
[u'chopper', u'crash', u'inquest', u'continu']
[u'claim', u'transport', u'chang', u'prove', u'cost']
[u'communiti', u'farewel']
[u'communiti', u'urg', u'toler', u'troop']
[u'concern', u'air', u'koala', u'legisl']
[u'council', u'deficit', u'studi']
[u'councillor', u'say', u'secess', u'debat']
[u'council', u'reconsid', u'draft', u'issu']
[u'council', u'continu']
[u'council', u'probe', u'plant', u'poison', u'claim']
[u'crean', u'urg', u'rethink', u'commit']
[u'crew', u'start', u'mop', u'brisban', u'spill']
[u'debat', u'erupt', u'breast', u'screen', u'access']
[u'defenc', u'union', u'tell', u'crean', u'fall', u'line']
[u'develop', u'squad', u'name', u'india', u'tour']
[u'dfat', u'upgrad', u'travel', u'warn', u'includ', u'syria']
[u'canio', u'stay', u'west']
[u'domest', u'violenc', u'victim', u'need', u'support', u'lawyer']
[u'dont', u'blame', u'troop', u'vietnam', u'vet']
[u'doubt', u'cast', u'hall', u'futur']
[u'doubt', u'cast', u'power', u'station', u'plan']
[u'drought', u'forc', u'extend', u'restrict']
[u'elect', u'rule', u'cull', u'minist']
[u'emerg', u'crew', u'attend', u'massiv', u'brisban', u'leak']
[u'emerg', u'water', u'plan', u'underway']
[u'eriksson', u'upbeat', u'futur']
[u'esso', u'fin', u'freezer', u'incid']
[u'famili', u'join', u'forest', u'search']
[u'fear', u'hold', u'miss']
[u'ferguson', u'blood', u'youth', u'deportivo']
[u'ferreira', u'turn', u'attent', u'court', u'matter']
[u'local', u'issu', u'rais', u'elect', u'forum']
[u'firefight', u'free', u'woman', u'hand']
[u'adelaid', u'darwin', u'train', u'member']
[u'fish', u'genet', u'tag']
[u'flee', u'team', u'wish', u'iraqi', u'good', u'luck']
[u'human', u'shield', u'satisfi', u'mission']
[u'free', u'trade', u'talk', u'discuss', u'medicin', u'scheme']
[u'discoveri', u'show', u'potenti']
[u'girdler', u'week']
[u'gold', u'coast', u'gear', u'lifesav', u'event']
[u'goorjian', u'wari', u'wound', u'croc']
[u'gough', u'agre', u'yorkshir', u'contract']
[u'govt', u'defend', u'legal', u'ground', u'attack', u'iraq']
[u'govt', u'urg', u'human', u'shield', u'leav', u'iraq']
[u'guid', u'offer', u'seafood', u'export', u'advic']
[u'gutless', u'howard', u'backbench', u'can', u'silenc']
[u'hall', u'declar', u'area']
[u'hat', u'nino', u'go', u'siesta']
[u'hawk', u'deal', u'blow', u'calf', u'injuri', u'holland']
[u'hayek', u'happi', u'despit', u'frida', u'loss']
[u'health', u'offici', u'continu', u'dengu', u'erad']
[u'herbert', u'kefu', u'expect', u'return', u'blue']
[u'holland', u'injuri', u'compound', u'hawthorn', u'woe']
[u'hospit', u'board', u'face', u'abolit']
[u'howard', u'commit', u'australian', u'troop']
[u'indigen', u'communiti', u'aid', u'booklet']
[u'indonesia', u'condemn', u'howard', u'decis']
[u'injur', u'knight', u'seek', u'medic', u'advic']
[u'inquest', u'hear', u'evid', u'woman', u'death']
[u'invest', u'fund', u'back', u'wine', u'merger']
[u'iraq', u'decis', u'split', u'parliament']
[u'iraqi', u'diaspora', u'fear', u'fire', u'line']
[u'iraq', u'outcom', u'send', u'messag', u'north', u'korea', u'downer']
[u'iraq', u'reject', u'exil', u'option']
[u'kenya', u'success', u'fairytal', u'say', u'tikolo']
[u'kili', u'blow', u'valencia', u'ahead', u'arsenal', u'game']
[u'knight', u'injuri', u'cloud']
[u'knopfler', u'fail', u'tyre', u'straight']
[u'labour', u'revolt', u'undermin', u'blair']
[u'larg', u'spill', u'threaten', u'brisban', u'river']
[u'lawyer', u'claim', u'forc', u'approv', u'illeg']
[u'symond', u'australia']
[u'lee', u'deem', u'iraq', u'basi']
[u'symond', u'australia', u'final']
[u'liverpool', u'drop', u'diouf', u'sutton', u'injur', u'celtic']
[u'long', u'hold', u'race', u'meet', u'prepar', u'wind']
[u'mackerel', u'tag', u'essenti', u'harvest', u'rat']
[u'malaysia', u'criticis', u'attack', u'plan']
[u'injur', u'tree', u'mishap']
[u'murder', u'charg', u'refus', u'bail']
[u'marina', u'plan', u'move', u'closer', u'realiti']
[u'market', u'maintain', u'earli', u'gain']
[u'market', u'ralli', u'prospect', u'short', u'iraq', u'conflict']
[u'mayor', u'talk', u'power']
[u'mcewen', u'cook', u'rank', u'cycl', u'elit']
[u'mcewen', u'retain', u'spot', u'cycl', u'elit']
[u'meet', u'focus', u'birdsvill', u'health', u'servic']
[u'death', u'inquest', u'find', u'today']
[u'industri', u'air', u'safeti', u'legisl', u'concern']
[u'delay', u'sober', u'shelter']
[u'mori', u'cop', u'week']
[u'evict', u'plane', u'defend', u'action']
[u'seek', u'stop', u'farm', u'bore', u'irrig']
[u'mundin', u'prim', u'titl', u'bout', u'crush']
[u'mundin', u'prove', u'strong', u'brazilian']
[u'nat', u'elector', u'boundari', u'chang', u'concern']
[u'nat', u'candid', u'want', u'polic', u'beat']
[u'nat', u'talk', u'water', u'infrastructur']
[u'nelli', u'harbour', u'talk', u'continu']
[u'nestl', u'negoti', u'union', u'redund']
[u'nomin', u'seek', u'train', u'award']
[u'govt', u'consid', u'desalin', u'plant']
[u'health', u'say', u'case', u'pneumonia', u'strain']
[u'minor', u'parti', u'urg', u'protest', u'vote']
[u'depart', u'investig', u'tear', u'mishap']
[u'nuke', u'asid', u'seoul', u'send', u'pyongyang']
[u'nurs', u'staff', u'disput', u'resolv']
[u'offici', u'concern', u'possibl', u'pneumonia']
[u'olonga', u'hop', u'tune', u'career']
[u'oppn', u'say', u'legal', u'cost']
[u'opposit', u'parti', u'block', u'senat', u'vote']
[u'palestinian', u'parliament', u'clear']
[u'parent', u'payout', u'son', u'death']
[u'parent', u'jackaroo', u'reliev', u'payout']
[u'park', u'provid', u'balanc', u'conserv']
[u'parti', u'promis', u'dear']
[u'polic', u'charg', u'oper', u'vike']
[u'polic', u'review', u'capsicum', u'spray', u'teen']
[u'polic', u'search', u'escap', u'inmat']
[u'polic', u'shop', u'raid', u'net', u'porn', u'video']
[u'powel', u'hand', u'match']
[u'probe', u'launch', u'rail', u'crash']
[u'propos', u'chemic', u'plant', u'rais', u'issu']
[u'qanta', u'temporarili', u'staff', u'level']
[u'coalit', u'want', u'budget', u'lay', u'bare', u'poll']
[u'racq', u'say', u'green', u'bridg', u'answer']
[u'rail', u'plan', u'draft', u'impact', u'studi', u'releas']
[u'rail', u'standardis', u'delay']
[u'rail', u'ticket', u'sale', u'week']
[u'ravanelli', u'offer', u'play', u'free', u'season']
[u'cross', u'run', u'darwin', u'youth', u'pilot', u'program']
[u'resid', u'question', u'disabl', u'servic']
[u'retir', u'politician', u'die']
[u'robinson', u'reject', u'effici', u'claim']
[u'rower', u'good', u'spirit', u'despit', u'poor', u'weather']
[u'saddam', u'heed', u'forc', u'howard', u'tell']
[u'saddam', u'reject', u'bush', u'ultimatum']
[u'hospit', u'alert', u'virus', u'symptom']
[u'senat', u'call', u'hick', u'assist']
[u'schroeder', u'reject', u'ultimatum', u'iraq']
[u'sculli', u'dismiss', u'liabil']
[u'senat', u'begin', u'debat', u'iraq', u'invas']
[u'serbia', u'arrest', u'warlord', u'widow', u'shoot']
[u'abus', u'probe', u'delay']
[u'shop', u'project', u'remain', u'limbo']
[u'smith', u'england', u'squad', u'scotland', u'match']
[u'snowtown', u'trial', u'continu', u'killer', u'dock']
[u'speed', u'rule', u'barcelona', u'clash']
[u'stone', u'offer', u'iraqi', u'refuge', u'assur']
[u'student', u'answer', u'bomb', u'walkout']
[u'support', u'polic', u'station']
[u'survey', u'highlight', u'tourist', u'spend', u'capac']
[u'suspend', u'sentenc', u'husband', u'stab']
[u'talli', u'cite', u'chief']
[u'tampa', u'crisi', u'peopl', u'smuggler', u'lose', u'appeal']
[u'hospit', u'brief', u'virus', u'outbreak']
[u'tasmania', u'provoc', u'murder', u'excus']
[u'team', u'peak', u'right', u'time', u'pont']
[u'teen', u'face', u'court', u'indec', u'deal', u'charg']
[u'tent', u'embassi', u'remov', u'tuckey']
[u'pressur', u'australia', u'whatmor']
[u'pretzel', u'make', u'cranki', u'french']
[u'test', u'dead', u'virus']
[u'thunderbird', u'lobbi', u'loyalti', u'rule']
[u'touch', u'footbal', u'hall', u'fame']
[u'trade', u'rid', u'higher', u'odd', u'short']
[u'trial', u'date', u'detaine', u'escap', u'charg']
[u'trucki', u'offer', u'kidney', u'grazier']
[u'tuna', u'industri', u'environment']
[u'turkey', u'readi', u'assist']
[u'turkey', u'reconsid', u'disallow', u'troop']
[u'campaign', u'push', u'fraser', u'coast']
[u'clear', u'contagion', u'symptom']
[u'bail', u'opera', u'hous', u'peac', u'graffiti']
[u'inspector', u'pull', u'baghdad']
[u'union', u'seek', u'hear', u'redund']
[u'student', u'turn', u'protest']
[u'unsecur', u'creditor', u'recov']
[u'grazier', u'beef', u'free', u'trade']
[u'troop', u'prepar', u'kuwaiti', u'desert']
[u'victorian', u'pair', u'test', u'dead', u'pneumonia', u'strain']
[u'break', u'citizen', u'target', u'oxfam']
[u'team', u'defend', u'mine', u'honour']
[u'water', u'hold', u'levi', u'draw', u'critic']
[u'weapon', u'inspector', u'pull', u'iraq']
[u'whan', u'welcom', u'green', u'prefer', u'plan']
[u'wheat', u'trade', u'iraq', u'earli', u'casualti']
[u'whitak', u'skipper', u'waratah']
[u'william', u'hop', u'repeat', u'malaysian', u'success']
[u'woman', u'home', u'pneumonia', u'test']
[u'women', u'sing', u'peac', u'parliament', u'foyer']
[u'world', u'leader', u'condemn', u'iraq', u'decis']
[u'yemeni', u'kill', u'foreign']
[u'million', u'upgrad', u'mitsubishi', u'motor']
[u'russian', u'dead', u'alcohol', u'poison']
[u'bequest', u'tasmanian', u'educ']
[u'aborigin', u'centr', u'investig', u'educ']
[u'accc', u'take', u'action', u'weight', u'loss', u'gadget']
[u'adelaid', u'clean', u'underway', u'storm']
[u'cancel', u'season', u'launch']
[u'critic', u'employ', u'intern', u'medic']
[u'american', u'coupl', u'charg', u'abduct', u'utah']
[u'andi', u'flower', u'sign', u'redback']
[u'anti', u'protest', u'unhappi', u'troop', u'commit']
[u'arafat', u'ask', u'deputi', u'assum', u'role']
[u'arsenal', u'newcastl', u'face', u'spanish', u'date']
[u'aussi', u'troop', u'campaign']
[u'australia', u'malaysia', u'oper', u'antarct']
[u'australia', u'reconsid', u'trip', u'loom']
[u'bacon', u'doesnt', u'support', u'troop', u'commit']
[u'beach', u'water', u'qualiti', u'get', u'thumb']
[u'black', u'name', u'best']
[u'black', u'name', u'best']
[u'blair', u'win', u'back', u'forc']
[u'bodi', u'discov', u'melbourn']
[u'breakthrough', u'identifi', u'mysteri', u'respiratori']
[u'brisban', u'team', u'develop', u'spinal', u'deform']
[u'bronco', u'boss', u'slam', u'hypocrit', u'jackson']
[u'bushfir', u'victim', u'get', u'advic', u'hotlin']
[u'busi', u'council', u'welcom', u'relief']
[u'fund', u'tackl', u'petrol', u'sniff']
[u'indigen', u'reunif', u'fund', u'boost']
[u'candid', u'give', u'reason', u'seat', u'decis']
[u'cannabi', u'crop', u'spark', u'polic', u'search']
[u'carr', u'brogden', u'street']
[u'china', u'free', u'sect', u'member', u'resid']
[u'chopper', u'crash', u'victim', u'die', u'hospit']
[u'clean', u'oper', u'underway', u'sever', u'storm']
[u'club', u'appli', u'race', u'date', u'rise']
[u'coast', u'doctor', u'shortag', u'highlight']
[u'concern', u'air', u'tree', u'clear', u'plan']
[u'council', u'chairman', u'surpris', u'cross', u'find']
[u'council', u'disappoint', u'health']
[u'council', u'get', u'stock', u'saleyard']
[u'council', u'resid', u'meet', u'age', u'care', u'plan']
[u'council', u'warpath', u'loom', u'conflict']
[u'council', u'tell', u'resolv', u'disput', u'intern']
[u'court', u'tell', u'evid', u'pilot', u'suffer', u'heart', u'attack']
[u'csiro', u'centr', u'gene', u'identif']
[u'deal', u'distributor', u'close', u'govt']
[u'demand', u'grow', u'field', u'day', u'sit']
[u'diver', u'search', u'river']
[u'result', u'hamper', u'foodchain', u'loss']
[u'doctor', u'monitor', u'woman', u'like', u'condit']
[u'don', u'offer', u'support', u'manag', u'awol', u'booz']
[u'don', u'warn', u'paterson', u'offer', u'support']
[u'downer', u'applaud', u'khmer', u'roug', u'tribun', u'deal']
[u'downer', u'doubt', u'start', u'tomorrow']
[u'dozen', u'dissid', u'arrest', u'cuba']
[u'drug', u'traffick', u'escap', u'death', u'penalti']
[u'dust', u'storm', u'move', u'melbourn']
[u'dust', u'storm', u'turn']
[u'earli', u'season', u'sugarcan', u'forecast', u'loom']
[u'rail', u'win', u'contract']
[u'estat', u'revamp']
[u'ethnic', u'kurd', u'fear', u'retaliatori', u'attack', u'hussein']
[u'factfil', u'forc', u'gulf']
[u'farina', u'fear', u'argentin', u'clash']
[u'farmer', u'benefit', u'steadi', u'crude', u'market']
[u'farmer', u'get', u'drought', u'fund']
[u'farmer', u'unhappi', u'decis']
[u'farmer', u'urg', u'vigil', u'diseas']
[u'fear', u'prove', u'cost', u'rural', u'industri']
[u'fergi', u'thumb', u'unit', u'youngster']
[u'firefight', u'wari', u'mornington', u'blaze']
[u'charg', u'brisban', u'teacher', u'assault']
[u'flee', u'iraqi', u'block', u'syrian', u'border']
[u'flower', u'sign', u'redback']
[u'forget', u'australia', u'sven']
[u'matilda', u'captain', u'posit', u'dope', u'test']
[u'matilda', u'captain', u'record', u'posit', u'drug', u'test']
[u'watford', u'striker', u'lose', u'plymouth']
[u'franc', u'drop', u'desailli', u'euro', u'qualifi']
[u'gallop', u'deni', u'hypocrisi', u'govt', u'motion']
[u'gembrook', u'control']
[u'gilchrist', u'applaud', u'fair', u'play']
[u'gilchrist', u'applaud', u'sport', u'walk']
[u'golden', u'time', u'ahead']
[u'govern', u'close', u'second', u'detent', u'centr']
[u'govt', u'offer', u'help', u'medic', u'indemn', u'crisi']
[u'grain', u'confer', u'defeat', u'plan']
[u'green', u'invit', u'carr', u'anti', u'protest']
[u'group', u'wont', u'accept', u'fund', u'boost', u'servic']
[u'heart', u'look', u'beat']
[u'holm', u'hop', u'seal', u'ironman', u'seri']
[u'hope', u'public', u'sway', u'poni', u'decis']
[u'hope', u'ratepay', u'green', u'levi']
[u'hundr', u'firefight', u'battl', u'martha', u'blaze']
[u'hundr', u'firefight', u'battl', u'blaze']
[u'indigen', u'heritag', u'studi', u'launch']
[u'iraqi', u'communiti', u'protest', u'violenc']
[u'iraqi', u'parliament', u'reject', u'ultimatum']
[u'iraqi', u'parliament', u'say']
[u'iraqi', u'public', u'prepar', u'worst']
[u'iraq', u'unlik', u'chemic', u'biolog', u'weapon']
[u'rule', u'pilot', u'unfair', u'dismiss', u'claim']
[u'irrig', u'seek', u'weir', u'water']
[u'isra', u'presid', u'secret', u'meet', u'palestinian']
[u'itali', u'support', u'stanc', u'iraq']
[u'ivori', u'coast', u'receiv', u'aid', u'fund']
[u'jone', u'fight', u'klitschko', u'retain', u'crown']
[u'king', u'brother', u'meet', u'redund']
[u'king', u'target', u'croc', u'turner']
[u'knight', u'lose', u'parson', u'kennedi']
[u'latif', u'get', u'pakistan', u'captain']
[u'lead', u'index', u'highlight', u'eas', u'growth', u'rate']
[u'lead', u'welcom', u'overhaul', u'sport', u'structur']
[u'leicest', u'close', u'premier', u'leagu', u'return']
[u'longreach', u'gear', u'tourism', u'season']
[u'water', u'stop', u'fish']
[u'luczak', u'get', u'chanc', u'miami']
[u'avoid', u'jail', u'assault']
[u'charg', u'illeg', u'abalon', u'haul']
[u'face', u'court', u'polic', u'death', u'threat']
[u'jail', u'sword', u'attack', u'sentenc']
[u'martin', u'question', u'clps', u'stanc', u'mandatori']
[u'martyn', u'outsid', u'chanc', u'play', u'final']
[u'melbourn', u'abandon', u'host', u'swim', u'champ']
[u'melbourn', u'abandon', u'host', u'world', u'swim']
[u'minist', u'ask', u'hospit', u'fund', u'explain']
[u'drought', u'fund', u'applic', u'wheatbelt']
[u'motel', u'blaze', u'investig']
[u'seek', u'ambul', u'levi', u'chang']
[u'urg', u'support', u'aussi', u'troop']
[u'urg', u'support', u'aust', u'troop']
[u'want', u'honour', u'titl', u'restrict']
[u'mysteri', u'ill', u'claim', u'live']
[u'mysteri', u'matilda', u'posit', u'dope', u'test']
[u'mysteri', u'pneumonia', u'claim', u'live', u'hong', u'kong']
[u'nairn', u'back', u'troop', u'commit']
[u'napl', u'get', u'royal', u'support', u'host', u'america']
[u'nasa', u'balloon', u'launch', u'flop']
[u'wast', u'dump', u'expir', u'month']
[u'chang', u'refuge', u'polici', u'iraq']
[u'crisi', u'german', u'footbal', u'despit', u'exit', u'dortmund']
[u'observ', u'contract']
[u'opera', u'hous', u'clean', u'continu']
[u'oscar', u'go', u'carpet']
[u'palm', u'beach', u'home', u'invas', u'investig']
[u'parent', u'reliev', u'manslaught', u'verdict']
[u'parliamentari', u'debat', u'iraq', u'enter']
[u'pasminco', u'reaffirm', u'desir', u'refloat']
[u'pasminco', u'upbeat', u'despit', u'loss']
[u'paysandu', u'libertador']
[u'picnic', u'race', u'face', u'uncertain', u'futur']
[u'pilot', u'die', u'light', u'aircraft', u'crash']
[u'polic', u'arrest', u'near', u'london', u'airport']
[u'polic', u'road', u'victim']
[u'polic', u'oper', u'end', u'arrest']
[u'polic', u'seiz', u'cannabi', u'plant']
[u'politician', u'warn', u'media', u'game']
[u'pont', u'warn', u'final', u'loom']
[u'predict', u'nino', u'demis', u'littl', u'impact']
[u'predict', u'gold', u'withstand', u'short']
[u'premiership', u'fergi', u'greatest', u'achiev']
[u'probe', u'chemic', u'claim']
[u'protest', u'lodg', u'stand']
[u'public', u'urg', u'avoid', u'conflict', u'anxieti']
[u'public', u'urg', u'australian', u'troop']
[u'health', u'play', u'dengu', u'concern']
[u'question', u'time', u'cancel', u'claim', u'gestapo', u'tactic']
[u'rag', u'chew', u'striker', u'year']
[u'real', u'juventus', u'seal', u'champ', u'leagu', u'quarter', u'spot']
[u'real', u'juventus', u'seal', u'quarter', u'spot']
[u'resid', u'unhappi', u'feder', u'grant', u'boost']
[u'rock', u'threaten', u'boati']
[u'saddam', u'hussein', u'feel', u'relax']
[u'safeti', u'bureau', u'releas', u'ship', u'crash', u'find']
[u'santo', u'investig', u'massiv', u'brisban']
[u'saudi', u'arabia', u'propos', u'exil', u'saddam', u'hussein']
[u'sawmil', u'worker', u'enter', u'week', u'strike']
[u'schumach', u'aim', u'return', u'podium']
[u'schumach', u'aim', u'return', u'podium', u'malaysia']
[u'seaman', u'valencia', u'decid']
[u'search', u'miss', u'scale']
[u'secur', u'concern', u'central', u'queensland', u'port']
[u'shire', u'welcom', u'sewerag', u'project', u'fund']
[u'socceroo', u'argentina', u'clash', u'call']
[u'socceroo', u'argentina', u'clash']
[u'south', u'korea', u'voic', u'support', u'iraq']
[u'stellar', u'market', u'hold', u'gain']
[u'striker', u'coach', u'soon']
[u'strong', u'cattl', u'price', u'continu']
[u'student', u'internet', u'boost']
[u'studi', u'consid', u'hunter', u'pollut']
[u'stun', u'gain', u'australian', u'market']
[u'support', u'call', u'easter', u'fair']
[u'swim', u'team', u'seek', u'safeti', u'guarante']
[u'tasmanian', u'head', u'worldwid', u'librari', u'network']
[u'terror', u'risk', u'increas']
[u'thailand', u'expel', u'iraqi', u'diplomat']
[u'thorp', u'hackett', u'prepar', u'renew', u'rivalri']
[u'arrest', u'near', u'london', u'airport', u'bomb']
[u'tiger']
[u'traffic', u'delay', u'expect', u'mildura', u'truck', u'crash']
[u'tram', u'commut', u'strand', u'glenelg', u'fault']
[u'transport', u'worker', u'cut', u'wont', u'affect', u'servic', u'govt']
[u'truck', u'decis', u'state', u'mareeba', u'mayor']
[u'turkey', u'approv', u'airspac']
[u'injur', u'helicopt', u'crash']
[u'guilti', u'forg', u'chequ']
[u'mysteri', u'respiratori', u'ill']
[u'uncertain', u'leav', u'rat', u'hold']
[u'union', u'plan', u'strike', u'protest']
[u'announc', u'final', u'deadlin', u'saddam']
[u'begin', u'propaganda', u'gulf']
[u'forc', u'iraq', u'border']
[u'start', u'tomorrow', u'deadlin']
[u'troop', u'sandstorm', u'kuwaiti', u'desert']
[u'network', u'agre', u'cooper']
[u'govt', u'reject', u'salin', u'claim']
[u'fear', u'forc', u'swim', u'trip', u'rethink']
[u'warn', u'river', u'flow']
[u'tip', u'send', u'fuel', u'price', u'higher']
[u'woman', u'pneumonia', u'scare', u'releas', u'hospit']
[u'women', u'pneumonia', u'scare', u'releas', u'hospit']
[u'woman', u'guilti', u'breach', u'anim', u'welfar']
[u'youth', u'game', u'sport', u'name']
[u'accid', u'spark', u'appeal', u'farm', u'safeti']
[u'seek', u'detail', u'warn', u'play', u'chariti']
[u'activist', u'charg', u'mandela', u'assassin']
[u'protest', u'gather', u'embassi']
[u'agreement', u'reach', u'reef', u'fleet', u'termin']
[u'raid', u'siren', u'sound', u'clear', u'baghdad']
[u'ord', u'hold', u'begin']
[u'keen', u'orang']
[u'ambassador', u'counter', u'terror', u'appoint']
[u'amend', u'suggest', u'anti', u'terror', u'law']
[u'analyst', u'specul', u'war', u'progress']
[u'anti', u'protest', u'flood', u'europ', u'citi', u'centr']
[u'anti', u'protest', u'street']
[u'area', u'reopen', u'recreat', u'haul', u'fish']
[u'arthur', u'down', u'qualifi', u'miami']
[u'head', u'mile', u'want', u'cash', u'player']
[u'auckland', u'blue', u'kefu']
[u'australia', u'get', u'green', u'light', u'extradit']
[u'australian', u'troop', u'howard']
[u'australian', u'troop', u'readi']
[u'barcelona', u'newcastl', u'european', u'adventur']
[u'bega', u'contest', u'heat']
[u'bell', u'elect', u'player', u'associ', u'presid']
[u'blair', u'frosti', u'dinner', u'chirac']
[u'britain', u'ask', u'turkey', u'airspac']
[u'bush', u'declar', u'iraq']
[u'fund', u'cull', u'wild', u'dog']
[u'cardiologist', u'gag', u'ambul', u'concern']
[u'carew', u'sink', u'arsenal']
[u'carr', u'give', u'support', u'monaro']
[u'carr', u'highlight', u'environment', u'achiev']
[u'ceremoni', u'mark', u'work', u'shop', u'complex']
[u'cheaper', u'fuel', u'result', u'iraq']
[u'coalit', u'promis', u'highway', u'upgrad']
[u'coast', u'licenc']
[u'comment', u'seek', u'retail', u'trade', u'deregul']
[u'continent', u'job', u'save', u'million']
[u'cooktown', u'turf', u'club', u'fight']
[u'council', u'seek', u'king', u'brother', u'meet']
[u'cuban', u'plane', u'land', u'hijack']
[u'deal', u'fast', u'track', u'develop']
[u'decis', u'whatmor', u'futur']
[u'dengu', u'outbreak', u'hit', u'suburb']
[u'dept', u'speak', u'land', u'clear']
[u'dfat', u'issu', u'warn', u'australian', u'remain']
[u'invest', u'million', u'review']
[u'disappoint', u'wenger', u'upbeat', u'doubl', u'chanc']
[u'doctor', u'group', u'welcom', u'obstetrician', u'subsidi', u'boost']
[u'doubt', u'cast', u'trade', u'hour', u'partial', u'deregul']
[u'downpour', u'caus', u'flood', u'damag']
[u'draw', u'roma', u'send', u'ajax']
[u'dust', u'storm', u'sydney', u'illawarra']
[u'dust', u'storm', u'toll', u'farmer']
[u'nacion', u'reviv', u'hop', u'injuri', u'time', u'winner']
[u'emerg', u'respons', u'fatal', u'crash', u'question']
[u'explos', u'rock', u'baghdad', u'jet', u'overhead']
[u'factfil', u'countri', u'offer', u'support', u'attack']
[u'factfil', u'iraq', u'militari', u'capabl']
[u'factfil', u'smart', u'bomb', u'eye', u'tool']
[u'famili', u'troop', u'attend', u'church', u'servic']
[u'farmer', u'hope', u'rain']
[u'farmer', u'meet', u'forest', u'manag']
[u'farm', u'group', u'seek', u'freight', u'subsidi', u'extens']
[u'head', u'mosley', u'cancel', u'malaysian', u'visit']
[u'firefight', u'burn', u'state', u'park']
[u'strike', u'prepar', u'land', u'battl']
[u'alic', u'resid', u'win', u'cycl', u'race']
[u'text', u'bush', u'declar', u'begin']
[u'fund', u'help', u'fast', u'track', u'bypass']
[u'fund', u'boost', u'carer', u'respit']
[u'ganguli', u'lead', u'india', u'final']
[u'alert', u'iraq', u'lob', u'scud', u'kuwait']
[u'explor', u'project', u'move', u'closer', u'realiti']
[u'gilbert', u'farewel', u'lifesav']
[u'govt', u'queri', u'payment', u'solicitor', u'mortgag', u'scheme']
[u'govt', u'reintroduc', u'asio']
[u'green', u'unveil', u'polit', u'fund']
[u'gulf', u'veteran', u'return', u'medal', u'protest']
[u'hackett', u'hop', u'duel', u'pool', u'go', u'ahead']
[u'harmoni', u'help', u'student', u'issu']
[u'helicopt', u'crash', u'inquest', u'adjourn']
[u'heritag', u'studi', u'see', u'reconcili', u'boost']
[u'highway', u'reopen', u'crash']
[u'hospit', u'clear', u'high', u'heart', u'surgeri', u'death', u'rate']
[u'howard', u'address', u'nation', u'iraq']
[u'human', u'shield', u'unconcern', u'safeti']
[u'increas', u'secur', u'parliament']
[u'increas', u'indigen', u'women', u'prison', u'report']
[u'india', u'go', u'kenya']
[u'indigen', u'compani', u'audit']
[u'investig', u'begin', u'fatal', u'helicopt', u'crash']
[u'iraq', u'condemn', u'aggress']
[u'iraq', u'deadlin', u'pass']
[u'iraq', u'declar', u'jihad']
[u'iraq', u'deni', u'fire', u'near', u'basra']
[u'iraqi', u'ambassador', u'return', u'baghdad']
[u'iraqi', u'envoy', u'say', u'attack', u'breach']
[u'iraqi', u'inform', u'ministri', u'claim', u'civilian', u'kill']
[u'iraqi', u'missil', u'kuwait', u'offici']
[u'iraqi', u'action', u'illeg', u'crean']
[u'iraq', u'warn', u'israel', u'tie']
[u'israel', u'high', u'state', u'alert', u'deadlin']
[u'jail', u'businessman', u'fin', u'wast', u'storag']
[u'killer', u'pneumonia', u'trace', u'hong', u'kong', u'hotel']
[u'king', u'game', u'away', u'grand', u'final']
[u'lack', u'action', u'death', u'custodi', u'say', u'coron']
[u'lack', u'afford', u'hous', u'result', u'poverti']
[u'land', u'seek', u'age', u'care', u'centr']
[u'laverton', u'wont', u'lose', u'servic']
[u'mackay', u'unlik', u'terrorist', u'target', u'mayor']
[u'major', u'bomb', u'raid', u'start', u'offici']
[u'major', u'parti', u'reveal', u'polici', u'cost']
[u'major', u'theft', u'australian', u'museum']
[u'malaysia', u'condemn', u'attack', u'iraq']
[u'mammal', u'collect', u'donat']
[u'convict', u'murder', u'parent']
[u'melbourn', u'osaka', u'fleet', u'gale', u'forc', u'wind']
[u'mental', u'health', u'accommod', u'servic', u'plan']
[u'militari', u'chaplain', u'wrestl', u'conscienc']
[u'million', u'seek', u'domest', u'violenc', u'scheme']
[u'minist', u'confid', u'farmer', u'wont', u'feel', u'impact']
[u'minist', u'defend', u'dept', u'youth', u'crime', u'claim']
[u'minor', u'parti', u'unsway', u'howard', u'address']
[u'missil', u'didnt', u'contain', u'chemic', u'report']
[u'molik', u'pratt', u'notch', u'miami', u'win']
[u'peopl', u'download', u'broadband']
[u'rain', u'spell', u'creek', u'river', u'flood']
[u'urg', u'resign', u'stanc']
[u'bush', u'nurs', u'centr', u'open']
[u'supplier', u'group', u'confirm']
[u'polic', u'chief', u'great', u'southern']
[u'regul', u'caravan', u'roadsid', u'stop']
[u'exhibit', u'open']
[u'nomin', u'close', u'soon', u'council', u'elect']
[u'order', u'start', u'grind', u'spokesman']
[u'parti', u'releas', u'elect', u'cost', u'today']
[u'player', u'super', u'judici', u'review']
[u'voic', u'regret', u'start']
[u'suppli', u'continu', u'say', u'opec']
[u'parent', u'complain', u'east', u'mail', u'charg']
[u'parliamentari', u'debat', u'conclud']
[u'parliament', u'continu', u'debat', u'iraqi', u'conflict']
[u'parti', u'campaign', u'demount', u'platform']
[u'phial', u'mysteri', u'substanc', u'sydney', u'airport']
[u'philippin', u'leader', u'warn', u'terrorist', u'attack']
[u'plan', u'underway', u'improv', u'local', u'iraqi', u'relat']
[u'polic', u'probe', u'tree', u'vandal']
[u'polic', u'protest', u'clash', u'turkey']
[u'polic', u'investig', u'fatal', u'gyrocopt', u'crash']
[u'portsmouth', u'march', u'thrash', u'coventri']
[u'powel', u'notifi', u'howard', u'impend']
[u'pratt', u'win', u'arthur', u'lose', u'florida', u'open']
[u'prestigi', u'scienc', u'research', u'fellowship', u'announc']
[u'priest', u'call', u'islam', u'nation', u'rise']
[u'profil', u'saddam', u'hussein']
[u'protest', u'clash', u'polic', u'anti', u'march']
[u'protest', u'stage', u'peac', u'vigil', u'pine']
[u'public', u'help', u'polic', u'drug', u'arrest']
[u'public', u'urg', u'consid', u'local', u'govt', u'posit']
[u'qbuild', u'employ', u'apprentic']
[u'raaf', u'base', u'consid', u'secur', u'boost']
[u'rain', u'threaten', u'kenya', u'india', u'clash']
[u'ranger', u'extend', u'lead', u'motherwel']
[u'report', u'iraqi', u'civilian', u'injuri']
[u'robson', u'blame', u'abysm', u'defend', u'loss']
[u'rural', u'doctor', u'welcom', u'indemn', u'support']
[u'ryle', u'dragon']
[u'saddam', u'vow', u'victori']
[u'saffi', u'anger', u'randel', u'outburst']
[u'schumach', u'deni', u'rumour']
[u'secur', u'gippsland', u'raaf', u'base', u'review']
[u'senior', u'centr', u'plan', u'move', u'ahead']
[u'sharehold', u'approv', u'hardi', u'deal']
[u'share', u'market', u'make', u'gain']
[u'shooter', u'adam', u'appeal', u'drug', u'ban']
[u'shuttl', u'flight', u'data', u'record']
[u'skill', u'farm', u'worker', u'short', u'suppli']
[u'souness', u'cole', u'patch', u'differ']
[u'southcorp', u'announc']
[u'special', u'forc', u'head', u'israel', u'scud', u'risk']
[u'state', u'funer', u'hold', u'digger']
[u'storm', u'clean', u'continu']
[u'talli', u'urg', u'maintain', u'passion']
[u'tasmanian', u'shop', u'open', u'easter', u'sunday']
[u'tasmania', u'increas', u'secur']
[u'teacher', u'talk', u'feel', u'student']
[u'teenag', u'martin', u'help', u'inter']
[u'attack', u'strike', u'baghdad', u'report']
[u'thousand', u'march']
[u'thousand', u'walk', u'sydney']
[u'tougher', u'penalti', u'anim', u'cruelti']
[u'tuckey', u'belittl', u'aborigin', u'tent', u'embassi']
[u'turner', u'turn', u'heat', u'king']
[u'lectur', u'investig', u'polit']
[u'union', u'clarifi', u'protest']
[u'union', u'newspap', u'meet', u'plan', u'cut']
[u'unit', u'coach', u'happi', u'draw']
[u'armi', u'launch', u'attack', u'afghanistan']
[u'attack', u'aim', u'iraqi', u'leadership']
[u'missil', u'aim', u'iraqi', u'meet', u'british']
[u'network', u'jump', u'start']
[u'unsur', u'head', u'roll', u'decapit', u'strike']
[u'machin', u'roll', u'arab', u'world']
[u'valencia', u'ajax', u'inter', u'complet', u'champ', u'leagu']
[u'valencia', u'ajax', u'magpi', u'gunner']
[u'artist', u'take', u'sculptur', u'award']
[u'victoria', u'medium', u'terror', u'alert']
[u'govt', u'agre', u'peel', u'demand']
[u'begin', u'white', u'hous', u'confirm']
[u'nation', u'say']
[u'word', u'open', u'schedul']
[u'word', u'open', u'schedul']
[u'waugh', u'wouldnt', u'walk']
[u'western', u'warn', u'extremist', u'attack']
[u'whyalla', u'develop', u'approv', u'rise']
[u'work', u'begin', u'age', u'care', u'centr']
[u'work', u'condit', u'caus', u'public', u'employe']
[u'world', u'final', u'ahead', u'heighten']
[u'digger', u'die', u'age']
[u'sport', u'complex', u'plan', u'boulia']
[u'civilian', u'injur', u'baghdad', u'raid', u'iraq', u'say']
[u'see', u'baghdad', u'blitz']
[u'adelaid', u'upset', u'shark', u'final', u'open']
[u'ruckus', u'player', u'polit', u'comment']
[u'alli', u'plan', u'bomb', u'mosul', u'region']
[u'walk', u'life', u'follow', u'protest', u'path']
[u'anti', u'protest', u'underway']
[u'anti', u'protest', u'turnout', u'smaller']
[u'argentinian', u'aim', u'dunde', u'semi']
[u'arsenal', u'beat', u'everton']
[u'asio', u'brief', u'crean', u'terrorist', u'risk']
[u'aussi', u'hine', u'scotland', u'squad']
[u'australian', u'troop', u'moral', u'high', u'govt']
[u'australia', u'complet', u'round', u'trade', u'treati']
[u'bomber', u'leav', u'england', u'iraq']
[u'bail', u'refus', u'alleg', u'famili', u'killer']
[u'beij', u'allow', u'small', u'anti', u'protest']
[u'blair', u'pay', u'tribut', u'brave', u'casualti']
[u'blue', u'ribbon', u'continu', u'hire', u'employ', u'contract']
[u'britain', u'say', u'iraqi', u'well']
[u'british', u'confirm', u'kill', u'chopper', u'crash']
[u'british', u'confirm', u'kill', u'helicopt', u'crash']
[u'brogden', u'defend', u'plan', u'doc']
[u'brown', u'appeal', u'peac', u'anti', u'protest']
[u'builder', u'experi', u'high', u'demand', u'hous']
[u'levi', u'fund', u'boat', u'facil', u'boost']
[u'carr', u'reject', u'public', u'avoid', u'campaign']
[u'cathol', u'bishop', u'air', u'fear']
[u'highlight', u'bushfir', u'threat', u'torch', u'steal']
[u'chamber', u'crime', u'concern']
[u'china', u'treat', u'fast', u'fair', u'coverag', u'iraq']
[u'claim', u'medic', u'indemn', u'boost', u'late']
[u'claim', u'late', u'opposit']
[u'coalit', u'forc', u'hope', u'reach', u'baghdad']
[u'coalit', u'goal', u'baghdad', u'insid', u'day']
[u'coalit', u'grip', u'tighten', u'strateg', u'port']
[u'coalit', u'troop', u'grind', u'southern', u'iraq']
[u'communiti', u'celebr', u'cultur', u'divers']
[u'communiti', u'develop', u'initi', u'discuss']
[u'virus', u'bring', u'spread', u'iraq', u'conflict']
[u'copi', u'troop', u'meet', u'littl', u'resist']
[u'coulthard', u'lead', u'malaysian', u'practis']
[u'council', u'crack', u'owner']
[u'council', u'welcom', u'second', u'airlin']
[u'coupl', u'charg', u'sell', u'home', u'ginger', u'wine']
[u'court', u'approv', u'asic', u'keel', u'settlement']
[u'darci', u'lose', u'appeal', u'child', u'offenc']
[u'debat', u'continu', u'entertain', u'venu']
[u'democrat', u'health', u'review', u'plan']
[u'deportivo', u'dare', u'dream', u'beat', u'real']
[u'deportivo', u'hop', u'spring', u'real', u'upset']
[u'develop', u'offer', u'hospit', u'demolit', u'altern']
[u'dfat', u'urg', u'australian', u'iraq', u'avoid', u'strateg']
[u'dominguez', u'recal', u'itali']
[u'dont', u'jeremi', u'warn', u'bayern']
[u'dont', u'mention', u'boss', u'demetriou']
[u'duel', u'pool', u'ahead', u'australian', u'swim']
[u'effort', u'littl', u'tern']
[u'english', u'premier', u'leagu', u'preview']
[u'expert', u'investig', u'chines', u'link', u'mysteri']
[u'farmer', u'busi', u'flood', u'relief']
[u'farmer', u'elig', u'interim', u'drought']
[u'farm', u'labour', u'shortag', u'felt', u'wide']
[u'govt', u'send', u'wheat', u'iraq']
[u'ferguson', u'deni', u'mind', u'game', u'charg']
[u'fiji', u'court', u'find', u'pair', u'guilti', u'treason']
[u'fiji', u'deputi', u'speaker', u'charg', u'speight', u'coup']
[u'fisher', u'want', u'quicker', u'action', u'slipway']
[u'forc', u'upset', u'shark', u'final', u'open']
[u'policeman', u'face', u'sentenc', u'child']
[u'forum', u'discuss', u'develop', u'issu']
[u'franc', u'recal', u'michalak', u'castaigned']
[u'french', u'straggler', u'hold', u'leadership', u'battl']
[u'french', u'sympathi', u'troop', u'death']
[u'gang', u'rapist', u'accus', u'send', u'white', u'powder']
[u'ganguli', u'defend', u'tactic']
[u'good', u'time', u'north', u'coast', u'real', u'estat']
[u'watch', u'gunner', u'crack', u'schole']
[u'grant', u'elect', u'second', u'mayor', u'term']
[u'grind', u'assault', u'reach', u'northern', u'iraq']
[u'group', u'fund', u'environ', u'festiv']
[u'hackett', u'eye', u'thorp', u'record']
[u'hazard', u'reduct', u'burn', u'plan', u'southern']
[u'hong', u'kong', u'devis', u'test', u'pneumonia']
[u'hospic', u'fund', u'resolv']
[u'hostel', u'get', u'liquor', u'licenc', u'despit', u'polic', u'fear']
[u'howard', u'thank', u'troop']
[u'howard', u'thank', u'troop', u'work', u'iraq']
[u'huge', u'explos', u'see', u'basra', u'kuwait']
[u'inquest', u'woman', u'death', u'adjourn']
[u'iraq', u'fire', u'ninth', u'missil', u'kuwait']
[u'iraq', u'throw', u'world', u'rule', u'pow']
[u'jockey', u'begin', u'council', u'spot']
[u'kournikova', u'thump', u'home', u'crowd']
[u'kuranyi', u'get', u'germani', u'european', u'qualifi']
[u'landhold', u'protest', u'veget', u'manag', u'plan']
[u'leed', u'confirm', u'venabl', u'departur']
[u'liber', u'parti', u'claim', u'green', u'anti', u'messag']
[u'lightn', u'blame', u'blackout']
[u'acquit', u'unlaw', u'wound', u'charg']
[u'jail', u'centrelink', u'fraud']
[u'plead', u'guilti', u'uluru', u'assault']
[u'marin', u'surrend', u'iraqi', u'report']
[u'mcgauran', u'back', u'australia', u'involv']
[u'death', u'investig', u'underway']
[u'leader', u'welcom', u'push', u'explor', u'boost']
[u'miner', u'promis', u'employ', u'local']
[u'minor', u'parti', u'prison', u'deni', u'basic']
[u'mix', u'feel', u'hardi', u'merger']
[u'anti', u'protest', u'melbourn']
[u'anti', u'protest', u'wollongong']
[u'detail', u'releas', u'chopper', u'crash']
[u'arrest', u'francisco', u'protest']
[u'suggest', u'landhold', u'consid', u'peel', u'scheme', u'compo']
[u'nation', u'express', u'creditor', u'face', u'huge', u'loss']
[u'navi', u'search', u'flee', u'iraqi', u'offici']
[u'kelli', u'film', u'get', u'rat']
[u'korea', u'tell', u'neighbour', u'quiet']
[u'news', u'saddam', u'whereabout']
[u'north', u'korea', u'accus', u'prepar', u'strike']
[u'parti', u'leader', u'unsur', u'impact']
[u'offic', u'say', u'iraqi', u'soldier', u'surrend']
[u'price', u'edg', u'possibl', u'longer']
[u'oneil', u'hail', u'great', u'night', u'scotland']
[u'onesteel', u'move', u'ahead', u'rail', u'contract']
[u'webb', u'lead', u'sorenstam', u'phoenix']
[u'webb', u'lead', u'sorenstam', u'phoenix', u'lpga', u'event']
[u'parliament', u'hous', u'beef', u'secur']
[u'peac', u'anti', u'protest', u'outsid', u'pine']
[u'penalti', u'boavista', u'uefa', u'semi']
[u'pentagon', u'deni', u'warplan', u'down', u'iraq']
[u'philippoussi', u'miami']
[u'pittman', u'threaten', u'freeman', u'reign']
[u'player', u'entitl', u'polit', u'statement', u'bell']
[u'thump', u'atsic']
[u'polic', u'happi', u'station', u'plan']
[u'polic', u'higher', u'secur', u'alert']
[u'polic', u'unit']
[u'polic', u'welcom', u'domest', u'violenc', u'jail', u'sentenc']
[u'powel', u'turkey', u'fli', u'right']
[u'predict', u'indemn', u'plan', u'affect', u'health', u'budget']
[u'prepar', u'longer', u'downer']
[u'protest', u'gather', u'second', u'march']
[u'public', u'prepar', u'cast', u'vote', u'poll']
[u'qantaslink', u'boost', u'rockhampton', u'gladston', u'flight']
[u'qanta', u'intern', u'flight']
[u'fruit', u'commerci', u'orchard']
[u'queen', u'send', u'best', u'wish', u'australian', u'troop']
[u'red', u'humili', u'waratah', u'frustrat']
[u'red', u'look', u'break', u'herbert']
[u'religi', u'group', u'fear', u'backlash']
[u'report', u'highlight', u'homeless', u'woe']
[u'resid', u'ralli']
[u'rooster', u'edg', u'knight']
[u'russia', u'seek', u'rule', u'legal']
[u'saddam', u'speech', u'doubl', u'offici']
[u'saddam', u'put', u'bounti', u'invad']
[u'saddam', u'son', u'compound', u'devast', u'strike']
[u'iraq']
[u'sawmil', u'lock', u'strike', u'worker']
[u'schu', u'fastest', u'qualifi', u'session']
[u'schumach', u'sizzl', u'malaysian', u'qualifi']
[u'scud', u'power', u'miami']
[u'seagul', u'hope', u'continu', u'win', u'way']
[u'sewag', u'spill', u'derwent']
[u'share', u'market', u'close', u'week', u'steadi']
[u'shevchenko', u'charg', u'result']
[u'shire', u'reach', u'agreement', u'plan']
[u'shire', u'discuss', u'aquif', u'plan']
[u'shire', u'protest', u'polic', u'plan']
[u'sixteen', u'kill', u'helicopt', u'crash', u'kuwait']
[u'smith', u'pledg', u'protea', u'passion']
[u'socceroo', u'seed', u'separ', u'oceania', u'minnow']
[u'soorley', u'ruffl', u'feather', u'flag', u'fli']
[u'south', u'australian', u'bali', u'bomb', u'victim', u'look']
[u'scrap', u'season', u'break']
[u'straw', u'offer', u'condol', u'famili', u'kill']
[u'tasmanian', u'artist', u'win', u'archibald']
[u'teenag', u'sentenc', u'canberra', u'bushfir']
[u'telstra', u'boost', u'servic', u'line']
[u'helicopt', u'iraqi', u'oper']
[u'tikolo', u'back', u'aussi', u'prevail']
[u'tweed', u'candid', u'gear', u'elect']
[u'forc', u'secur', u'equip']
[u'union', u'plan', u'anti', u'ralli']
[u'confirm', u'marin', u'dead', u'onslaught']
[u'flag', u'burn', u'protest']
[u'forc', u'iraqi', u'port']
[u'make', u'contact', u'republican', u'guard']
[u'marin', u'halt', u'iraqi']
[u'move', u'expel', u'iraqi', u'diplomat']
[u'order', u'iraqi', u'diplomat']
[u'plan', u'attack', u'nuke', u'sit', u'north', u'korea']
[u'say', u'iraq', u'sail', u'rudder']
[u'hope', u'avoid', u'attack']
[u'troop', u'meet', u'littl', u'resist', u'offic']
[u'fire', u'southern', u'iraq', u'unknown']
[u'best', u'receiv', u'barri', u'sheen', u'medal']
[u'veletta', u'sack', u'coach']
[u'venabl', u'quit', u'leed', u'report']
[u'vieira', u'blast', u'uefa', u'racist', u'attack']
[u'visitor', u'start', u'flock', u'pat', u'race', u'meet']
[u'voter', u'prepar', u'poll']
[u'fuel', u'terror', u'say', u'crean']
[u'footag', u'give', u'mean', u'realiti']
[u'popular', u'sexfor', u'search']
[u'warn', u'cancel', u'world', u'trip']
[u'warrior', u'dump', u'veletta']
[u'webb', u'second', u'phoenix']
[u'wildcat', u'crush', u'hawk']
[u'wildcat', u'upper', u'hand', u'hawk']
[u'saddam', u'resort', u'downer']
[u'workcov', u'premium', u'rise']
[u'didnt', u'saddam', u'iraq', u'tell']
[u'kill', u'chines', u'trawler', u'sink', u'lanka']
[u'walk', u'life', u'follow', u'protest', u'path']
[u'member', u'die', u'ahead', u'elect']
[u'track']
[u'anti', u'furi', u'sweep', u'indonesia']
[u'anti', u'protest', u'block', u'brisban', u'street']
[u'anti', u'protest', u'ralli', u'world']
[u'anti', u'protest', u'continu', u'australia']
[u'asio', u'brief', u'crean', u'terrorist', u'risk']
[u'australian', u'forc', u'hold', u'iraqi', u'pow']
[u'australian', u'navi', u'discov', u'mine']
[u'australian', u'destroy', u'iraqi', u'command', u'centr']
[u'australian', u'kill', u'iraqi', u'forc']
[u'baghdad', u'burn', u'intens', u'bomb', u'campaign']
[u'baghdad', u'civilian', u'tell', u'despair']
[u'blue', u'blow', u'red', u'away']
[u'bore', u'water', u'contamin', u'bayswat']
[u'british', u'bomber', u'pilot', u'awe', u'baghdad', u'ablaz']
[u'british', u'helicopt', u'collid', u'gulf', u'dead']
[u'brogden', u'carr', u'target', u'margin', u'seat']
[u'brogden', u'confid', u'elect', u'hop']
[u'brogden', u'vow', u'fight']
[u'brumbi', u'annihil', u'bull']
[u'burn', u'well', u'push', u'price']
[u'bush', u'send', u'wish', u'crash', u'victim', u'famili']
[u'bush', u'thank', u'howard', u'support']
[u'carr', u'brogden', u'warn', u'protest', u'vote']
[u'carr', u'claim', u'histor', u'victori']
[u'carr', u'claim', u'victori', u'elect']
[u'carr', u'pay', u'tribut', u'anderson']
[u'chirac', u'damn', u'illeg', u'stamp']
[u'chopper', u'collis', u'tragic', u'accid', u'ship', u'captain']
[u'church', u'want', u'conscienc', u'vote', u'adopt']
[u'rule', u'saddam', u'broadcast', u'probabl', u'genuin']
[u'citi', u'bomb', u'northern', u'iraq']
[u'citi', u'defend', u'tell', u'club']
[u'civilian', u'injuri', u'report', u'baghdad']
[u'coalit', u'tri', u'negoti', u'iraqi', u'surrend']
[u'come', u'festiv', u'wind', u'adelaid']
[u'confus', u'surround', u'mass', u'surrend', u'claim']
[u'coulthard', u'quick', u'mark', u'malaysian']
[u'arriv', u'injur', u'martyn']
[u'demonstr', u'policeman', u'yemen', u'protest']
[u'denmark', u'isol', u'plane', u'pneumonia', u'scare']
[u'doubt', u'rais', u'divis', u'surrend', u'claim']
[u'dravid', u'glove', u'despit', u'injuri']
[u'earli', u'figur', u'good', u'green']
[u'earli', u'figur', u'labor', u'cours', u'poll']
[u'earli', u'swing', u'lib', u'predict']
[u'confirm', u'south', u'africa', u'tour', u'england']
[u'entir', u'iraqi', u'divis', u'surrend', u'alli', u'forc']
[u'europ', u'oppon', u'merg', u'arm', u'forc']
[u'farmer', u'consid', u'sue', u'lose', u'iraq', u'wheat', u'sale']
[u'fear', u'chemic', u'attack', u'discoveri']
[u'kill', u'east', u'anti', u'protest']
[u'fresh', u'explos', u'rock', u'baghdad']
[u'germani', u'quit', u'nato', u'forc', u'shield', u'turkey']
[u'superstit', u'glori', u'chappel', u'tell']
[u'govt', u'build', u'daub', u'anti', u'graffiti']
[u'graham', u'hold', u'metr', u'titl']
[u'green', u'doubl', u'vote', u'poll']
[u'grind', u'forc', u'close', u'baghdad']
[u'gunfir', u'blast', u'baghdad', u'go', u'raid', u'alert']
[u'hackett', u'pleas', u'perform']
[u'hackett', u'qualifi', u'fastest', u'freestyl', u'final']
[u'hawk', u'honour', u'matthew', u'kennedi']
[u'health', u'group', u'concern', u'petrol', u'sniff']
[u'henman', u'crash', u'escud']
[u'hewitt', u'crash', u'florida']
[u'hewitt', u'suffer', u'shock', u'defeat']
[u'incat', u'claw', u'debt']
[u'indian', u'pacemen', u'concern', u'pont']
[u'indonesian', u'minist', u'cancel', u'trip']
[u'internet', u'hacker', u'wreak', u'havoc', u'protest', u'iraq']
[u'invas', u'forc', u'loom', u'basra', u'fring']
[u'iraq', u'divis', u'head', u'surrend', u'forc']
[u'iraqi', u'opposit', u'meet', u'north']
[u'iraqi', u'disput', u'british', u'victori', u'claim']
[u'iraqi', u'halt', u'advanc', u'nasiriya', u'river', u'cross']
[u'iraqi', u'ambassador', u'blast', u'chief']
[u'iraq', u'say', u'civilian', u'wound', u'bomb']
[u'iraq', u'say', u'coalit', u'forc', u'meet', u'resist']
[u'iraq', u'throw', u'world', u'rule', u'pow']
[u'iraq', u'increas', u'terror', u'threat']
[u'judg', u'consid', u'death', u'penalti', u'fiji', u'treason', u'trial']
[u'kanimbla', u'work', u'clear', u'strateg', u'waterway']
[u'kenya', u'wont', u'expel', u'iraqi', u'diplomat']
[u'labor']
[u'labor', u'blame', u'iraq', u'indon', u'terror', u'threat']
[u'labor', u'return']
[u'leader', u'cast', u'vote', u'elect']
[u'leed', u'sack', u'venabl', u'hand', u'reid', u'caretak', u'role']
[u'lib', u'hop', u'pick', u'seat']
[u'lib', u'vote', u'preselect', u'reform']
[u'loss', u'pittman', u'wake', u'freeman']
[u'lie', u'crew', u'tell', u'leav', u'iraq']
[u'major', u'parti', u'leader', u'final', u'stop']
[u'question', u'fatal', u'stab']
[u'rake', u'record', u'poki', u'payout']
[u'face', u'real', u'test']
[u'wound', u'baghdad', u'cross']
[u'mclaren', u'pace', u'free', u'practic']
[u'mental', u'health', u'group', u'govt', u'fund']
[u'molik', u'move', u'miami']
[u'missil', u'strike', u'baghdad']
[u'mortlock', u'miss', u'world']
[u'motorcyclist', u'die', u'brisban', u'crash']
[u'sensibl', u'predict', u'britain']
[u'leader', u'wrap', u'elect', u'campaign']
[u'leader', u'wrap', u'elect', u'campaign']
[u'homeless', u'youth', u'situat', u'urgent', u'report']
[u'depot', u'rocket', u'south', u'west', u'iran']
[u'orford', u'slater', u'lead', u'storm', u'crush']
[u'paton', u'take', u'aust', u'champ', u'titl']
[u'pentagon', u'list', u'goal']
[u'petria', u'break', u'minut', u'barrier', u'qualifi']
[u'philip', u'morri', u'lose', u'billion', u'verdict', u'light', u'case']
[u'pittman', u'end', u'freeman', u'reign']
[u'polic', u'search', u'river', u'murder', u'weapon']
[u'poll', u'underway', u'elect']
[u'pope', u'lament', u'didnt', u'expect']
[u'powel', u'turkey', u'fli', u'right']
[u'protest', u'ralli', u'condemn']
[u'armi', u'command', u'urg', u'support', u'troop']
[u'raider', u'tiger', u'tough', u'battl']
[u'rain', u'stop', u'baddeley', u'charg']
[u'renault', u'claim', u'surpris', u'pole']
[u'renault', u'sensat', u'pole']
[u'rocket', u'south', u'west', u'iran', u'report']
[u'rumsfeld', u'confirm', u'start', u'main', u'iraq', u'bomb']
[u'rumsfeld', u'say', u'clear', u'saddam', u'control']
[u'russia', u'boost', u'secur', u'chechnya', u'poll']
[u'russia', u'block', u'approv']
[u'saddam']
[u'strike', u'weapon', u'mass', u'destruct', u'forc']
[u'scot', u'champion', u'leagu', u'boost']
[u'second', u'marin', u'fall', u'iraqi']
[u'secur', u'crackdown', u'parliament']
[u'sele', u'withdraw', u'biscayn']
[u'serbian', u'polic', u'hold', u'assassin']
[u'shock', u'open', u'boom', u'iraq']
[u'shock', u'pound', u'baghdad', u'citi']
[u'sick', u'hewitt', u'crash', u'florida']
[u'softbal', u'qualifi', u'olymp']
[u'softbal', u'unbeaten', u'elimin', u'round']
[u'iraqi', u'forc', u'pull', u'basra']
[u'song', u'honour', u'world', u'champion', u'axeman']
[u'spanish', u'author', u'releas', u'qaeda', u'suspect']
[u'star', u'shun', u'oscar']
[u'stormer', u'stun', u'waratah']
[u'stormer', u'stun', u'waratah', u'red', u'remain', u'winless']
[u'stormer', u'stun', u'waratah', u'red', u'winless']
[u'storm', u'raider', u'unbeaten', u'cowboy']
[u'super', u'mario', u'shrug', u'stomach', u'upset', u'defend']
[u'support', u'record', u'high']
[u'tendulkar', u'australia', u'obstacl', u'warn']
[u'tendulkar', u'australia', u'world', u'obstacl']
[u'thorp', u'beat', u'hackett', u'metr', u'titl']
[u'thorp', u'power', u'metr', u'titl']
[u'thousand', u'iraqi', u'surrend']
[u'clubhous', u'madeira']
[u'tight', u'contest', u'tamworth']
[u'turkey', u'deni', u'send', u'troop']
[u'turkey', u'open', u'space']
[u'turkey', u'agre', u'overflight', u'wrangl', u'troop']
[u'turkish', u'ambassador', u'defend', u'push', u'iraq']
[u'turkish', u'troop', u'northern', u'iraq', u'paper']
[u'turkish', u'troop', u'north', u'iraq']
[u'turkish', u'troop', u'enter', u'iraq']
[u'twelfth', u'iraqi', u'missil', u'fire', u'kuwait', u'cross']
[u'tanevula', u'lift', u'highland']
[u'unifi', u'facad', u'mask', u'split']
[u'refuge', u'bodi', u'see', u'iraq', u'exodus']
[u'upgrad', u'travel', u'warn', u'need', u'govt']
[u'assault', u'divis', u'cross', u'iraq']
[u'strike', u'target', u'hardlin', u'islamist', u'group']
[u'captur', u'iraqi', u'offshor', u'termin']
[u'desper', u'turkey', u'deal']
[u'fire', u'missil', u'baghdad']
[u'airfield', u'west', u'baghdad', u'offici']
[u'icon', u'small', u'flutter', u'vital', u'iraq', u'port']
[u'iraq', u'surrend', u'talk', u'pentagon', u'claim']
[u'marin', u'iraqi', u'major', u'battl', u'basra']
[u'marin', u'captur', u'iraqi', u'offic']
[u'marin', u'secur', u'western', u'iraqi', u'flank']
[u'militari', u'truck', u'build', u'camp']
[u'special', u'forc', u'control', u'airfield', u'western', u'iraq']
[u'hope', u'earli', u'iraq', u'surrend']
[u'strike', u'milit', u'stronghold', u'iraq', u'kurd']
[u'wheat', u'farmer', u'wont', u'commonwealth']
[u'water', u'main', u'burst', u'home', u'damag']
[u'webb', u'phoenix', u'lead']
[u'welsh', u'pip', u'huegil', u'surpris', u'butterfli', u'semi']
[u'wenger', u'warn', u'everton', u'arsenal', u'backlash']
[u'team', u'investig', u'mysteri', u'ill']
[u'wildcat', u'crush', u'hawk']
[u'cameraman', u'australia', u'casualti', u'iraq']
[u'cameraman', u'kill', u'iraq', u'bomb', u'attack']
[u'agassi', u'advanc', u'miami']
[u'agenc', u'report', u'iraqi', u'displac']
[u'agenc', u'report', u'mass', u'exodus']
[u'raid', u'crank', u'baghdad']
[u'qaeda', u'hand', u'philippin', u'bomb', u'offici']
[u'anti', u'protest', u'march', u'adelaid']
[u'anti', u'protest', u'continu', u'fourth']
[u'anti', u'ralli', u'ricochet', u'world']
[u'arab', u'seeth', u'show', u'iraq', u'destruct']
[u'arm', u'bomber', u'leav', u'airbas']
[u'australia', u'celebr', u'world', u'victori']
[u'australia', u'blaze', u'start']
[u'australia', u'sweat', u'martyn', u'bichel']
[u'aust', u'troop', u'iraq', u'admir', u'alli', u'howard']
[u'backbench', u'blast', u'crean', u'backflip']
[u'baghdad', u'bomb', u'continu']
[u'baghdad', u'civilian', u'fight', u'invad']
[u'baghdad', u'river', u'search', u'amid', u'report', u'pilot']
[u'baghdad', u'militari', u'facil', u'target', u'latest']
[u'barrichello', u'start', u'head', u'safeti']
[u'barr', u'reclaim', u'hot', u'contest', u'man']
[u'bayern', u'seal', u'titl']
[u'bettini', u'win', u'milan', u'sanremo']
[u'bomb', u'thunder', u'roll', u'baghdad']
[u'jellyfish', u'blame', u'stinger', u'death']
[u'die', u'marin', u'sting', u'north']
[u'british', u'fighter', u'down', u'anti', u'missil', u'rocket']
[u'british', u'plane', u'down', u'patriot', u'missil', u'militari']
[u'british', u'plane', u'miss', u'explos', u'rock', u'baghdad']
[u'british', u'plane', u'miss', u'explos', u'rock', u'baghdad']
[u'british', u'public', u'opinion', u'fall', u'blair']
[u'brogden', u'like', u'stay', u'despit', u'elect', u'loss']
[u'brumbi', u'hammer', u'bull']
[u'capriati', u'down', u'qualifi', u'miami']
[u'carnag', u'confus', u'hit', u'kurd', u'base']
[u'cat', u'hooker', u'send', u'hurrican', u'triumph']
[u'census', u'show', u'australian', u'migrat']
[u'chechnya', u'vote', u'controversi', u'referendum']
[u'china', u'blast', u'leav', u'dead', u'trap']
[u'claim', u'crew', u'miss', u'iraq', u'come']
[u'clash', u'najaf', u'south', u'baghdad', u'iraq']
[u'coalit', u'command', u'frank', u'address', u'media']
[u'coalit', u'unwil', u'march', u'sydney']
[u'coalit', u'tri', u'negoti', u'iraqi', u'surrend']
[u'commonwealth', u'seiz', u'iraqi', u'asset', u'aust']
[u'concern', u'grow', u'turkish', u'troop', u'iraq']
[u'corinthian', u'chaotic', u'paulista', u'championship']
[u'crean', u'prais', u'carr', u'elect', u'victori']
[u'deadlin', u'loom', u'iraqi', u'diplomat', u'leav']
[u'democrat', u'talk', u'elect', u'result']
[u'despotovski', u'guid', u'glori']
[u'dozen', u'blast', u'shake', u'baghdad']
[u'dragon', u'warrior', u'bronco', u'thriller']
[u'dredg', u'storm', u'madeira', u'lead']
[u'iraqi', u'battl', u'coalit', u'qasr']
[u'eighth', u'death', u'mysteri', u'pneumonia', u'virus']
[u'england', u'ireland', u'nation', u'showdown']
[u'famili', u'unit', u'iraqi', u'civilian']
[u'fate', u'saddam', u'unknown']
[u'feyenoord', u'breath', u'ajax', u'neck', u'champion']
[u'fourteen', u'kill', u'china', u'accid']
[u'soldier', u'report', u'wound', u'central', u'iraq']
[u'french', u'leagu', u'match', u'report']
[u'govern', u'lure', u'doctor', u'suburbia']
[u'govt', u'announc', u'region', u'extens', u'program']
[u'govt', u'consid', u'freez', u'iraqi', u'asset']
[u'govt', u'deni', u'children', u'wait', u'hospit']
[u'green', u'expect', u'claim', u'upper', u'hous', u'seat']
[u'hancock', u'cautious', u'claim', u'south', u'coast']
[u'harmoni', u'grant', u'good', u'democrat']
[u'harrison', u'snatch', u'piper', u'breaststrok', u'titl']
[u'hid', u'push', u'reform', u'despit', u'setback']
[u'hill', u'deni', u'iraq', u'link', u'indonesian', u'terror']
[u'hill', u'expect', u'short', u'iraq', u'conflict']
[u'hindu', u'leader', u'satisfi', u'dig', u'babri', u'mosqu']
[u'hollywood', u'launch', u'strike']
[u'hong', u'kong', u'devis', u'test', u'pneumonia']
[u'huegil', u'shrug', u'welsh', u'challeng']
[u'freez', u'england', u'earn']
[u'india', u'threaten', u'suspens']
[u'injuri', u'report', u'strike', u'residenti', u'baghdad']
[u'iraq', u'call', u'stop', u'coalit', u'attack']
[u'iraqi', u'baath', u'parti', u'offici', u'kill', u'najaf', u'desert']
[u'iraqi', u'coalit', u'convoy', u'capit']
[u'iraqi', u'resist', u'advanc', u'basra']
[u'iraq', u'light', u'trench', u'baghdad']
[u'iraq', u'militari', u'say', u'shoot', u'cruis', u'missil']
[u'iraq', u'sabri', u'warn', u'turkey', u'move']
[u'iraq', u'suicid', u'bomb', u'kill', u'australian', u'newsman', u'report']
[u'iraq', u'report', u'saddam', u'council']
[u'iraq', u'drag', u'bush', u'tell', u'nation']
[u'iraq', u'push', u'petrol', u'price']
[u'iraq', u'delay', u'korea', u'talk']
[u'jazeera', u'say', u'dead', u'basra', u'show', u'casualti']
[u'journo', u'say', u'soldier', u'kill', u'rocket']
[u'kanimbla', u'work', u'clear', u'strateg', u'waterway']
[u'kurd', u'blame', u'qaeda', u'affili', u'journo', u'death']
[u'kurd', u'hop', u'greater', u'freedom']
[u'labor', u'blame', u'iraq', u'indon', u'terror', u'threat']
[u'labor', u'close', u'upper', u'hous', u'seat']
[u'labor', u'confid', u'claim', u'monaro']
[u'labor', u'hang', u'hope', u'win', u'south', u'coast', u'seat']
[u'labor', u'split', u'crean', u'drop', u'bring', u'troop', u'home']
[u'leader', u'offer', u'condol', u'cameraman', u'death']
[u'leisel', u'lead', u'breast', u'stroke', u'field']
[u'leisel', u'lead', u'breaststrok', u'field']
[u'lethal', u'leisel', u'set', u'record']
[u'madonna', u'sweep', u'worst', u'film', u'award']
[u'marin', u'strike', u'qasr', u'nasiriya']
[u'market', u'guru', u'front', u'workshop']
[u'martyn', u'world', u'final']
[u'martyn', u'pontin', u'capitalis', u'good', u'start']
[u'melb', u'cyclist', u'break', u'aust', u'bike', u'ride']
[u'milan', u'open', u'titl', u'race', u'defeat', u'juve']
[u'minardi', u'carri', u'messag', u'peac']
[u'raid', u'rock', u'baghdad', u'trench', u'ablaz']
[u'mysteri', u'pneumonia', u'claim', u'victim', u'canada']
[u'nation', u'ralli']
[u'nattrass', u'confid', u'maller', u'affair', u'find']
[u'battl', u'break', u'iraqi', u'port', u'town']
[u'ferri', u'credit', u'tourism', u'boost']
[u'plan', u'aim', u'conserv', u'marin', u'reserv']
[u'offici', u'warn', u'fraser', u'dingo', u'threat']
[u'shoot', u'dead', u'sudanes', u'anti', u'protest']
[u'call', u'govt', u'come', u'clean', u'terror']
[u'patriot', u'missil', u'near', u'camp', u'kuwait']
[u'menu', u'come', u'final']
[u'pilot', u'princ', u'mourn', u'helicopt', u'dead']
[u'congratul', u'carr', u'elect', u'victori']
[u'say', u'increas', u'terror', u'alert', u'unwarr']
[u'urg', u'lib', u'brogden', u'leader']
[u'politician', u'join', u'condemn']
[u'politician', u'debat', u'timor', u'asylum', u'seeker', u'issu']
[u'pont', u'martyn', u'lead', u'australia', u'massiv', u'total']
[u'power', u'begin', u'final', u'campaign', u'style']
[u'protest', u'brave', u'cool', u'weather', u'voic', u'anti']
[u'protest', u'street']
[u'qlds', u'popul', u'growth']
[u'raikkonen', u'grab', u'maiden', u'malaysia']
[u'raikkonen', u'lead', u'stand', u'maiden']
[u'raikkonen', u'win', u'malaysian', u'grand', u'prix']
[u'record', u'break', u'night', u'jone']
[u'cross', u'monitor', u'grow', u'casualti', u'list']
[u'religion', u'confer', u'aim', u'unit', u'faith']
[u'repeat', u'suicid', u'attack', u'unlik', u'expert']
[u'river', u'derwent', u'clear', u'sewag', u'problem']
[u'ruud', u'awaken', u'arsenal']
[u'saddam', u'deputi', u'promis', u'urban', u'warfar']
[u'saddam', u'hometown', u'lose', u'bomb']
[u'africa', u'white', u'presid', u'reject', u'truth', u'report']
[u'senior', u'rebel', u'leader', u'shoot', u'dead', u'indian', u'kashmir']
[u'sewag', u'spill', u'leak', u'lake', u'burley', u'griffin']
[u'shock', u'china', u'polic', u'babi', u'suitcas']
[u'sieg', u'follow', u'doubl', u'stab']
[u'soldier', u'injur', u'kuwait', u'grenad', u'attack']
[u'skaif', u'take', u'open', u'round']
[u'softbal', u'qualifi', u'olymp']
[u'sorenstam', u'claim', u'shoot', u'lead', u'phoenix']
[u'sport', u'minist', u'reject', u'jayasuriya', u'resign']
[u'storm', u'ravag', u'south', u'east']
[u'student', u'kill', u'coalit', u'attack', u'iraqi', u'offici']
[u'talk', u'continu', u'iraqi', u'leader', u'say', u'pentagon']
[u'lib', u'reject', u'parti', u'reform']
[u'tendulkar', u'vote', u'player', u'world']
[u'ten', u'thousand', u'anti', u'demonstr']
[u'texa', u'team', u'smother', u'iraq', u'fire']
[u'thoma', u'surg', u'butterfli']
[u'thoma', u'surg']
[u'thorp', u'hackett', u'claim', u'semi']
[u'thorp', u'hackett', u'cruis', u'qualifi']
[u'british', u'crew', u'miss', u'iraq']
[u'tribut', u'flow', u'australian', u'cameraman']
[u'troop', u'perform', u'say', u'howard']
[u'troop', u'prepar', u'snuff', u'iraq', u'fire']
[u'turkey', u'deni', u'iraq', u'kurd', u'agre']
[u'confirm', u'entir', u'iraqi', u'divis', u'surrend']
[u'brace', u'iraqi', u'refuge', u'exodus']
[u'strike', u'basra', u'kill', u'civilian', u'wind']
[u'assur', u'iran', u'tomahawk', u'investig']
[u'claim', u'captur', u'nasiriya', u'river', u'cross']
[u'bomb', u'qasr', u'build']
[u'marin', u'claim', u'victori', u'west', u'basra']
[u'marin', u'push', u'basra', u'baghdad']
[u'marin', u'secur', u'bridg', u'nasiriya']
[u'order', u'infantri', u'divis', u'gulf']
[u'plane', u'shoot', u'baghdad', u'sabri']
[u'presid', u'warn', u'overconfid']
[u'say', u'down', u'apach', u'crew', u'miss']
[u'scrap', u'turkey', u'deploy', u'bolster', u'southern']
[u'soldier', u'die', u'grenad', u'attack']
[u'soldier', u'die', u'grenad', u'attack']
[u'soldier', u'suspect', u'grenad', u'attack', u'comrad']
[u'open', u'northern', u'soon', u'kurdish', u'leader']
[u'venabl', u'tell', u'fear', u'leed', u'unit', u'futur']
[u'victorian', u'famili', u'protest', u'peac']
[u'memori', u'consid', u'hire', u'artist', u'iraq']
[u'know', u'turkey', u'iraq', u'coalit']
[u'wood', u'line', u'victori']
[u'wood', u'storm', u'hill', u'lead']
[u'worldwid', u'protest', u'demand', u'peac']
[u'arrest', u'jakarta', u'threaten', u'western']
[u'nomin', u'citizen', u'year', u'award']
[u'guantanamo', u'prison', u'return', u'afghanistan']
[u'hindus', u'kill', u'kashmir']
[u'abattoir', u'defend', u'pollut', u'charg']
[u'accent', u'shouldnt', u'issu', u'nat', u'candid']
[u'protect', u'diplomat', u'doubl']
[u'agforc', u'concern', u'rail', u'job']
[u'alli', u'forc', u'trap', u'saddam']
[u'perform', u'hunter']
[u'retain', u'illawarra', u'wollongong', u'keira']
[u'amphetamin', u'suppli', u'increas', u'crime', u'report']
[u'anti', u'protest', u'clamber', u'parliament', u'hous']
[u'drown', u'east', u'congo', u'boat', u'capsiz']
[u'australia', u'celebr', u'world', u'victori']
[u'australian', u'soldier', u'disabl', u'iraqi', u'missil']
[u'australia', u'best', u'come', u'buchanan']
[u'aust', u'singapor', u'model', u'futur', u'bilater']
[u'aust', u'stock', u'head', u'downward', u'wake', u'longer']
[u'baghdad', u'rock', u'huge', u'explos']
[u'basra', u'come', u'bombard']
[u'pass', u'radioact', u'dump', u'south']
[u'biospher', u'project', u'feder', u'fund']
[u'black', u'urg', u'nat', u'countri', u'labor', u'merger']
[u'bloodi', u'battl', u'rage', u'nasiriyah']
[u'bourk', u'irrig', u'small', u'alloc']
[u'brain', u'tumour', u'research', u'give', u'hope', u'patient']
[u'bridgehead', u'battl', u'kill', u'soldier']
[u'british', u'journalist', u'believ', u'kill', u'friend']
[u'british', u'report', u'believ', u'dead']
[u'bullet', u'rain', u'slum', u'navi', u'explos']
[u'busch', u'repeat', u'bristol', u'nascar', u'victori']
[u'fare', u'freez', u'recommend']
[u'bush', u'say', u'iraq', u'cours', u'warn']
[u'caley', u'upset', u'celtic', u'ranger', u'hold', u'dunfermlin']
[u'australian', u'boycott', u'oscar', u'telecast']
[u'cwealth', u'coordin', u'energi', u'resourc']
[u'action', u'ambul', u'surcharg']
[u'safe', u'harbour', u'studi']
[u'warn', u'sign', u'beach']
[u'call', u'releas', u'health', u'studi', u'gulf']
[u'review', u'region', u'airport', u'secur', u'amid']
[u'canegrow', u'harvest', u'financi', u'support']
[u'canyon', u'aliv', u'blue', u'mountain']
[u'carpentaria', u'gold', u'complet', u'purchas']
[u'carr', u'plan', u'ministeri', u'shake']
[u'casualti', u'troop', u'famili', u'edg']
[u'central', u'west', u'western', u'plain', u'candid', u'retain', u'seat']
[u'lift', u'danger', u'restrict']
[u'civic', u'recept', u'honour', u'world', u'champion']
[u'claim', u'fraser', u'dingo', u'attack', u'rise', u'dog']
[u'concern', u'air', u'water', u'plan']
[u'confer', u'consid', u'age', u'care', u'issu']
[u'council', u'consid', u'fast', u'food', u'centr']
[u'council', u'vote', u'corpor']
[u'cowboy', u'urg', u'boost', u'consist']
[u'dairi', u'merger', u'plan']
[u'dengu', u'outbreak', u'rise', u'north']
[u'dont', u'send', u'negat', u'email', u'aust', u'troop', u'govt']
[u'draper', u'ahead', u'cull', u'torbay', u'slack', u'smith', u'return']
[u'dredg', u'break', u'euro', u'tour', u'duck']
[u'elect', u'bring', u'littl', u'chang', u'local']
[u'english', u'premier', u'leagu', u'match', u'report']
[u'food', u'poison', u'stop', u'histori', u'make']
[u'explos', u'rock', u'baghdad', u'report']
[u'famili', u'pay', u'tribut', u'aust', u'cameraman']
[u'farmer', u'get', u'award', u'braveri']
[u'ferrari', u'stay', u'pressur', u'mount']
[u'festiv', u'boost', u'wine', u'region']
[u'fight', u'continu', u'nasiriyah']
[u'figur', u'highlight', u'indigen', u'dialysi', u'patient']
[u'fiji', u'hop', u'iraq', u'swift', u'foreign', u'minist']
[u'formal', u'elect', u'result', u'day', u'away']
[u'secretari', u'face', u'court']
[u'french', u'blitz', u'doom', u'brave', u'italian']
[u'fresh', u'raid', u'launch', u'baghdad']
[u'fund', u'seek', u'escap', u'exhibit']
[u'ganguli', u'blame', u'bowler']
[u'gilbert', u'end', u'career', u'win', u'note']
[u'gilbert', u'exit', u'high', u'gold', u'coast', u'championship']
[u'girl', u'die', u'motorcycl', u'accid']
[u'good', u'behaviour', u'bond', u'woman', u'facto', u'death']
[u'govt', u'ask', u'network', u'restraint']
[u'govt', u'assist', u'cameraman', u'famili', u'downer']
[u'govt', u'open', u'area', u'explor']
[u'govt', u'secur', u'poll', u'trigger']
[u'govt', u'consid', u'wast', u'site', u'option']
[u'govt', u'travel', u'advic', u'adequ', u'downer']
[u'guilti', u'plea', u'child', u'kidnap', u'melbourn']
[u'gusmao', u'visit', u'bendigo']
[u'helicopt', u'tight', u'secur', u'glamour']
[u'hid', u'senat', u'preselect', u'model', u'vote']
[u'highway', u'section', u'reopen', u'blaze']
[u'hohn', u'pay', u'tribut', u'australia', u'world', u'win']
[u'hong', u'kong', u'pneumonia', u'outbreak', u'claim', u'life']
[u'howe', u'clear', u'knee', u'injuri']
[u'human', u'remain', u'macquari', u'island']
[u'india', u'mourn', u'defeat']
[u'indian', u'mire', u'gloom', u'world', u'loss']
[u'indigen', u'peopl', u'urg', u'join', u'local', u'govt']
[u'indonesian', u'charg', u'illeg', u'fish']
[u'injur', u'thoma', u'action', u'thorp', u'hackett', u'clash']
[u'inspector', u'testifi', u'polic', u'corrupt']
[u'iraq', u'drop', u'claim', u'coalit', u'pilot', u'captur']
[u'iraq', u'fear', u'drag']
[u'iraqi', u'resist', u'baghdad', u'coalit', u'sight']
[u'iraqi', u'show', u'say', u'down', u'helicopt']
[u'iraq', u'say', u'kill', u'wound', u'past']
[u'iraq', u'show', u'footag', u'troop', u'hold', u'prison']
[u'better', u'thorp']
[u'israel', u'missil', u'mysteri', u'solv']
[u'israel', u'demolish', u'illeg', u'settlement']
[u'israel', u'tri', u'destroy', u'roadmap', u'peac']
[u'jordan', u'call', u'iraq']
[u'jordan', u'give', u'inspir', u'wizard']
[u'journalist', u'evacu', u'iraqi', u'town']
[u'june', u'start', u'date', u'tasmania', u'mainland', u'power', u'link']
[u'kidman', u'nab', u'best', u'actress', u'gong']
[u'kuwait', u'grenad', u'attack', u'suspect', u'attitud', u'problem']
[u'labor', u'newel', u'lead', u'tweed', u'poll']
[u'lester', u'concern', u'keppel', u'park', u'race', u'meet']
[u'lion', u'think', u'premiership', u'trick']
[u'liverpool', u'step', u'chase', u'champion', u'leagu', u'place']
[u'arrest', u'throw', u'paint', u'bomb']
[u'arrest', u'woman', u'alleg', u'alight']
[u'attack', u'home', u'invas']
[u'die', u'hors', u'buggi', u'mishap']
[u'tournament', u'titl', u'turn', u'sour']
[u'alight', u'visa', u'reject', u'fear']
[u'face', u'court', u'jack']
[u'gunshot', u'wind', u'polic', u'guard']
[u'matern', u'leav', u'middl', u'class', u'welfar', u'studi']
[u'mayor', u'upbeat', u'forsayth', u'busi']
[u'meet', u'hold', u'tuna', u'farm', u'plan']
[u'mine', u'giant', u'threaten', u'evict', u'famili']
[u'miss', u'woman']
[u'molik', u'set', u'clash', u'dokic']
[u'abattoir', u'hop', u'start', u'week']
[u'area', u'releas', u'explor']
[u'communiti', u'help', u'age', u'disabl']
[u'caus', u'train', u'derail']
[u'deadlin', u'medic', u'talk']
[u'rift', u'raaf', u'pilot', u'abort', u'raid']
[u'lib', u'hope', u'seat']
[u'nude', u'protest', u'hobart', u'iraq']
[u'giant', u'shut', u'main', u'nigerian', u'termin']
[u'jump', u'confid', u'slide']
[u'dead', u'injur', u'victorian', u'abattoir']
[u'say', u'govt', u'sell', u'state', u'asset']
[u'parliament', u'interrupt', u'anti', u'protest']
[u'plan', u'expand', u'hospit', u'renal', u'servic']
[u'polic', u'crack', u'drive', u'offenc']
[u'polic', u'detain', u'link', u'fatal', u'stab']
[u'polic', u'hotel', u'decis', u'question']
[u'polic', u'inspector', u'admit', u'year', u'corrupt', u'deed']
[u'polic', u'probe', u'road', u'tragedi']
[u'polic', u'question', u'suspect', u'abattoir', u'kill']
[u'polic', u'swarm', u'hous', u'stab']
[u'politician', u'spat', u'support']
[u'pont', u'hail', u'best', u'moment', u'cricket', u'life']
[u'pont', u'inspir', u'australia', u'world', u'triumph']
[u'pont', u'famili', u'thrill', u'world']
[u'postal', u'vote', u'form', u'arriv', u'late']
[u'film', u'break', u'geneva', u'convent', u'cross']
[u'present', u'consid', u'local', u'govt', u'issu']
[u'pressur', u'arsenal', u'beat', u'everton']
[u'pressur', u'arsenal', u'edg', u'everton']
[u'public', u'deni', u'access', u'parliament']
[u'public', u'transport', u'spotlight']
[u'radioact', u'wast', u'dump', u'decis', u'week', u'away']
[u'rail', u'disrupt', u'servic']
[u'requir', u'relax', u'plan']
[u'resid', u'urg', u'highlight', u'power', u'woe']
[u'revenu', u'loss', u'spark', u'smoke', u'polici', u'chang']
[u'rio', u'shock', u'ferrero']
[u'rivkin', u'face', u'court', u'insid', u'trade', u'charg']
[u'rivkin', u'plead', u'guilti', u'insid', u'trade']
[u'roma', u'homemad', u'bomb', u'explos']
[u'rooney', u'win', u'england', u'solo', u'goal']
[u'roo', u'star', u'battl', u'season', u'open']
[u'develop', u'wheat', u'suppli', u'iraq']
[u'rumsfeld', u'say', u'iraq', u'readi', u'ban', u'weapon']
[u'saddam', u'aliv', u'iraqi', u'foreign', u'minist']
[u'saddam', u'use', u'speech', u'promis', u'quick', u'victori']
[u'troop', u'safe', u'fresh', u'engag']
[u'seat', u'clarenc', u'chang', u'hand']
[u'secur', u'improv', u'need', u'terror', u'expert']
[u'seven', u'year', u'jail', u'unlicenc', u'drive', u'caus']
[u'shire', u'hold', u'water', u'concern']
[u'silicon', u'smelter', u'plan', u'drop']
[u'simpson', u'address', u'women', u'gather']
[u'slack', u'think', u'get', u'red', u'track']
[u'sombr', u'mood', u'iraq', u'cameraman']
[u'steal', u'passeng', u'sentenc']
[u'strike', u'worker', u'face', u'lockout']
[u'sugar', u'plan', u'chemic', u'plant']
[u'surf', u'lifesav', u'rais', u'hand', u'lifelin']
[u'survey', u'highlight', u'mozzi', u'breed', u'sit']
[u'suspect', u'missil', u'fall', u'eastern', u'turkey']
[u'teen', u'surgeri', u'wait', u'list']
[u'thorp', u'hackett', u'clash', u'loom']
[u'think', u'need', u'send', u'care', u'packag']
[u'thousand', u'join', u'anti', u'protest', u'asia']
[u'thwait', u'commiss', u'sewerag']
[u'ticket', u'adelaid', u'darwin', u'railway', u'journey']
[u'tiger', u'maul', u'field', u'hill', u'invit']
[u'tiger', u'face', u'judiciari']
[u'ullrich', u'itch', u'comeback']
[u'accus', u'hypocrisi', u'treatment', u'pow']
[u'accus', u'russian', u'aid', u'iraqi', u'defenc']
[u'acknowledg', u'tough', u'remain', u'confid']
[u'aim', u'figur', u'skate', u'clean', u'sweep']
[u'confirm', u'apach', u'helicopt', u'go', u'iraq']
[u'examin', u'possibl', u'iraqi', u'chemic', u'weapon', u'factori']
[u'helicopt', u'crash', u'afghanistan', u'dead']
[u'attack', u'iraq', u'make', u'dent']
[u'missil', u'kill', u'syrian', u'iraq', u'report']
[u'missil', u'misfir', u'land', u'turkey']
[u'turkey', u'discuss', u'iraqi', u'incurs']
[u'welcom', u'neighbour', u'rule']
[u'volunt', u'firefight', u'face', u'court', u'light']
[u'lib', u'spark', u'earli', u'feder', u'elect', u'specul']
[u'polic', u'charg', u'volunt', u'firefight']
[u'mute', u'oscar', u'begin', u'hollywood']
[u'warn', u'import', u'tortois', u'pose', u'threat']
[u'warn', u'outlaw', u'petrol', u'sniff', u'worsen']
[u'water', u'suppli', u'iraqi', u'sieg', u'town', u'cross']
[u'wild', u'weather', u'bring', u'stock', u'loss']
[u'woman', u'die', u'road', u'crash']
[u'worker', u'entitl', u'safe', u'pasminco']
[u'work', u'begin', u'soon', u'council']
[u'world', u'bomb', u'discov', u'german', u'town']
[u'youth', u'converg', u'quilpi']
[u'quarantin', u'singapor', u'control', u'killer']
[u'action', u'take', u'protect', u'marin', u'park']
[u'ask', u'media', u'imag', u'pow']
[u'afma', u'probe', u'tuna', u'quota', u'measur']
[u'age', u'care', u'nurs', u'consid', u'industri', u'action']
[u'agricultur', u'dept', u'alert', u'potenti', u'anim']
[u'alburi', u'poll', u'declar', u'expect', u'monday']
[u'alleg', u'fals', u'doctor', u'charg', u'rape']
[u'remind', u'elect', u'pledg', u'doctor']
[u'anti', u'discrimin', u'commission', u'issu', u'warn']
[u'argentina', u'withdraw', u'seven', u'virus', u'fear']
[u'armi', u'general', u'wont', u'deni', u'earli', u'iraq', u'invas']
[u'aust', u'graduat', u'like', u'oversea']
[u'aust', u'protect', u'pow', u'human', u'right']
[u'aust', u'navi', u'diver', u'sweep', u'mine', u'iraqi']
[u'aust', u'mark', u'year', u'free', u'trade']
[u'australia', u'aim', u'world', u'trick', u'pont']
[u'australia', u'lag', u'pay', u'matern', u'leav']
[u'aust', u'biggest', u'field']
[u'aust', u'troop', u'rotat', u'hill']
[u'aust', u'zoo', u'help', u'save', u'endang', u'asia', u'speci']
[u'bali', u'bomb', u'victim', u'miss', u'feder']
[u'bank', u'defi', u'downward', u'trend']
[u'basra', u'upris', u'fight', u'ax', u'knive']
[u'batchelor', u'bank', u'payout', u'chequ']
[u'beatti', u'urg', u'howard', u'stay']
[u'busi', u'adopt', u'wait', u'stanc', u'bank']
[u'bolton', u'make', u'spur', u'penalti']
[u'boom', u'outback']
[u'brisban', u'lord', u'mayor', u'announc', u'retir', u'date']
[u'british', u'death', u'iraq', u'rise']
[u'british', u'forc', u'mark', u'time', u'basra', u'fring']
[u'british', u'enter', u'basra']
[u'british', u'wife', u'visit', u'australia']
[u'british', u'soldier', u'kill', u'riot', u'near', u'basra']
[u'budget', u'cut', u'impact', u'israel', u'poverti', u'line']
[u'bullet', u'sign', u'rucker']
[u'burn', u'victim', u'want', u'appeal', u'money']
[u'bush', u'request', u'congress', u'iraq']
[u'busi', u'invest', u'predict', u'hold']
[u'cfmeu', u'releas', u'document', u'detail', u'royal', u'commiss']
[u'chief', u'exec', u'accus', u'sexual', u'assault']
[u'clark', u'wont', u'appli', u'legal', u'fund', u'atsic']
[u'communiti', u'face', u'water', u'dilemma']
[u'complaint', u'volker', u'case', u'dismiss']
[u'conflict', u'report', u'qasr', u'fight']
[u'coroni', u'inquiri', u'launch', u'bushfir']
[u'council', u'consid', u'tougher', u'penalti', u'unfenc']
[u'councillor', u'consid', u'urban', u'develop', u'issu']
[u'council', u'overturn', u'build', u'height', u'plan', u'law']
[u'council', u'rescu', u'rockhampton']
[u'court', u'hear', u'woman', u'receiv', u'unauthoris', u'sick']
[u'cresswel', u'plan', u'quit']
[u'cricket', u'fan', u'welcom', u'home', u'world', u'champion']
[u'croc', u'sight', u'near', u'broom']
[u'dead', u'stinger', u'like', u'increas', u'north']
[u'dizzi', u'say', u'injuri', u'progress']
[u'doubt', u'cast', u'silverdom', u'futur']
[u'drink', u'driver', u'jail', u'month']
[u'drought', u'affect', u'famili', u'slow']
[u'elka', u'eye', u'trebl', u'travi', u'teenag', u'rampag']
[u'ethanol', u'plant', u'unlik', u'boost', u'yandina', u'properti']
[u'strong', u'condemn', u'kashmir', u'massacr']
[u'explos', u'hear', u'baghdad']
[u'farmer', u'give', u'eas', u'burden', u'drought']
[u'farmer', u'warn', u'cost']
[u'fear', u'doctor', u'retir', u'compound', u'medic', u'woe']
[u'feder', u'advanc']
[u'fiji', u'treason', u'sentenc', u'time']
[u'fink', u'desert', u'race', u'king', u'defend', u'titl']
[u'crew', u'call', u'librari', u'leak']
[u'child', u'care', u'director', u'charg', u'defraud']
[u'lismor', u'mayor', u'die']
[u'fresh', u'troop', u'need', u'say', u'minist']
[u'gang', u'caus', u'polic', u'camp']
[u'giant', u'sandwich', u'serv', u'hondurass', u'hungriest']
[u'govt', u'donat', u'million', u'iraqi', u'children', u'appeal']
[u'govt', u'releas', u'maralinga', u'clean', u'report']
[u'green', u'boost', u'support', u'north', u'coast']
[u'green', u'senat', u'wickham', u'point']
[u'group', u'say', u'inadequ', u'fund', u'caus', u'hous']
[u'group', u'want', u'properti', u'wilder', u'area']
[u'group', u'welcom', u'river', u'murray', u'introduct']
[u'gulf', u'veteran', u'like', u'health', u'problem']
[u'gulf', u'veteran', u'like', u'report', u'health', u'problem']
[u'hackett', u'keen', u'sprinter']
[u'harradin', u'alleg', u'bias', u'medic', u'research', u'grant']
[u'hazard', u'reduct', u'burn', u'plan']
[u'hospit', u'face', u'staff', u'reduct']
[u'internet', u'offer', u'unparallel', u'varieti', u'iraq']
[u'iraq', u'claim', u'alli', u'troop', u'kill', u'recent']
[u'iraqi', u'commit', u'suicid', u'attack', u'armi']
[u'iraqi', u'humanitarian', u'crisi', u'loom', u'delay']
[u'iraqi', u'resist', u'soon', u'deal', u'armi', u'chief']
[u'iraqi', u'hunt', u'water', u'food', u'south']
[u'iraqi', u'wheat', u'payment', u'year', u'late', u'grain', u'grower']
[u'iraq', u'launch', u'missil', u'kuwait']
[u'irish', u'warn', u'english', u'favourit']
[u'irrig', u'river', u'alloc', u'plant']
[u'isol', u'race', u'club', u'consid', u'legal', u'action']
[u'hop', u'deal', u'help', u'expand', u'oper']
[u'jail', u'term', u'doubl', u'samurai', u'sword', u'attack', u'appeal']
[u'jone', u'take', u'earn']
[u'journalist', u'union', u'condemn', u'censorship', u'request']
[u'labor', u'minor', u'parti', u'dismiss', u'latest', u'newspol']
[u'lake', u'open', u'effluent', u'pollut']
[u'lectur', u'say', u'parad', u'pow', u'propaganda']
[u'letter', u'urg', u'heighten', u'diseas', u'awar']
[u'liber', u'leader', u'congratul', u'candid']
[u'lib', u'upbeat', u'hold', u'gosford', u'willoughbi']
[u'liquor', u'law', u'impact', u'club']
[u'local', u'govt', u'urg', u'stop', u'develop']
[u'lung', u'cancer', u'target', u'cancer', u'council']
[u'macfarlan', u'deni', u'govt', u'energi', u'polici', u'inadequ']
[u'mackay', u'coupl', u'name', u'carer']
[u'major', u'hop', u'shale']
[u'major', u'shop', u'centr', u'come', u'nowra']
[u'charg', u'fatal', u'stab']
[u'illeg', u'abalon', u'racket', u'lose', u'plane']
[u'jail', u'assault', u'wife']
[u'kill', u'industri', u'accid']
[u'sentenc', u'steal', u'bankcard', u'chequ']
[u'manslaught', u'trial', u'continu', u'today']
[u'meet', u'discuss', u'club', u'futur']
[u'monaro', u'result', u'decid']
[u'arrest', u'cannabi', u'plantat']
[u'dairi', u'farmer', u'seek']
[u'mother', u'await', u'news', u'gulf']
[u'motorcyclist', u'hospit', u'crash']
[u'air', u'elector', u'chang', u'concern']
[u'seek', u'trade', u'chang']
[u'vote', u'govt', u'stem', u'cell', u'issu']
[u'welcom', u'dump', u'clean']
[u'name', u'polic', u'urg', u'remain', u'calm']
[u'navi', u'diver', u'sweep', u'mine', u'qasr']
[u'appoint', u'board']
[u'leas', u'restaur', u'damag']
[u'plan', u'huge', u'petro', u'chemic', u'plant']
[u'zealand', u'tourist', u'murder', u'nairobi']
[u'nigerian', u'court', u'delay', u'stone', u'appeal']
[u'deal', u'turkish', u'troop', u'deploy']
[u'north', u'korea', u'strengthen', u'defenc']
[u'nyse', u'bar', u'jazeera', u'report']
[u'occi', u'fan', u'tip', u'surf', u'contest']
[u'opera', u'hous', u'protest', u'clean']
[u'overwork', u'doctor', u'flag', u'roma']
[u'parent', u'encourag', u'talk', u'children', u'iraq']
[u'petrol', u'price', u'expect', u'drop']
[u'plan', u'cart', u'water', u'capella']
[u'pleas', u'communiti', u'respons', u'mosqu', u'tour']
[u'warn', u'militari', u'difficult', u'challeng', u'ahead']
[u'pocket', u'iraqi', u'resist', u'expect', u'cosgrov']
[u'policeman', u'dead', u'station']
[u'pottharst', u'quit', u'intern', u'scene']
[u'propaganda', u'help']
[u'probe', u'launch', u'death', u'senior', u'polic']
[u'protest', u'polic', u'clash', u'outsid', u'korean']
[u'bipartisan', u'support', u'aust', u'troop']
[u'opposit', u'call', u'gold', u'coast', u'polic']
[u'polic', u'journal', u'criticis', u'racist', u'imag']
[u'race', u'meet', u'weekend', u'boost', u'break', u'hill', u'busi']
[u'cross', u'confid', u'gain', u'access', u'pow']
[u'reef', u'sewag', u'spill', u'court', u'case', u'continu']
[u'region', u'servic']
[u'remot', u'communiti', u'improv', u'access']
[u'reserv', u'bank', u'announc', u'board', u'member']
[u'rivkin', u'trial', u'abort']
[u'rooney', u'return', u'form', u'backstrok']
[u'saddam', u'appear', u'urg', u'iraqi', u'fight']
[u'saddam', u'respons', u'humanitarian', u'problem', u'hill']
[u'govt', u'examin', u'maralinga', u'report']
[u'sar', u'spread', u'franc']
[u'savill', u'name', u'nbls', u'number', u'defend']
[u'scud', u'outlast', u'enqvist', u'agassi', u'clash']
[u'scud', u'set', u'agassi', u'clash']
[u'rescu', u'prais', u'good', u'year']
[u'second', u'person', u'charg', u'glebe', u'stab', u'death']
[u'sharehold', u'vote', u'divid']
[u'shark', u'repel', u'high']
[u'shaughnessi', u'send', u'venus', u'pack']
[u'shimang', u'ban', u'high', u'tackl']
[u'shire', u'adopt', u'strateg', u'plan']
[u'shire', u'urg', u'water', u'plan', u'watchdog']
[u'singapor', u'impos', u'quarantin', u'stop', u'sar', u'spread']
[u'korea', u'seek', u'stronger', u'allianc']
[u'small', u'blast', u'rock', u'british', u'council', u'beirut']
[u'soldier', u'death', u'bring', u'british', u'toll']
[u'sptcri']
[u'sptrbi']
[u'state', u'govt', u'attack', u'spend', u'cut']
[u'storm', u'damag', u'expect']
[u'strike', u'affect', u'beer', u'suppli']
[u'support', u'pasminco', u'probe']
[u'tatt', u'say', u'women']
[u'tavern', u'bash', u'wit', u'urg', u'contact', u'polic']
[u'teacher', u'state', u'readi', u'strike']
[u'teacher', u'restart', u'industri', u'action']
[u'test', u'continu', u'patient']
[u'thorp', u'lead', u'heat']
[u'thousand', u'spend', u'sport', u'grind', u'upgrad']
[u'thousand', u'spend', u'stop', u'grapevin', u'pest']
[u'dead', u'hous', u'damag', u'afghanistan', u'flood']
[u'loud', u'blast', u'central', u'baghdad']
[u'tourist', u'cruis', u'ship', u'dock', u'darwin']
[u'unconvinc', u'authent', u'saddam', u'address']
[u'grad', u'chase', u'oversea']
[u'union', u'maintain', u'green', u'basslink', u'pylon']
[u'alli', u'withdraw', u'iraq', u'arab']
[u'break', u'nasiriya', u'resist']
[u'colonel', u'apologis', u'death', u'british']
[u'forc', u'launch', u'heavi', u'attack', u'baghdad']
[u'forc', u'tri', u'destroy', u'down', u'helicopt']
[u'marin', u'heavi', u'fight', u'nasiriya']
[u'say', u'iraqi', u'human', u'shield', u'treat', u'captur']
[u'say', u'russian', u'equip', u'iraq', u'affect']
[u'urg', u'iraq', u'abid', u'geneva', u'convent']
[u'urg', u'african', u'republ', u'leader', u'releas']
[u'govt', u'slam', u'council', u'fund', u'fight']
[u'polic', u'confirm', u'probe', u'senior', u'offic', u'death']
[u'impact', u'health', u'academ']
[u'warn', u'issu', u'iraq', u'phone', u'poll']
[u'warn', u'tough', u'water', u'restrict', u'return']
[u'expect', u'hamper', u'rice', u'trade']
[u'wild', u'fenc', u'commit', u'question']
[u'windi', u'look', u'captain', u'coach']
[u'wineri', u'contract', u'crush']
[u'woman', u'bond', u'facto', u'manslaught']
[u'work', u'start', u'major', u'townsvill', u'road']
[u'world', u'champion', u'cricket', u'arriv', u'home']
[u'world', u'cricket', u'arriv', u'home']
[u'world', u'cricket', u'receiv', u'hero', u'welcom']
[u'world', u'vision', u'expand', u'epenarra', u'project']
[u'youngster', u'target', u'obes', u'program']
[u'zabel', u'take', u'open', u'stage']
[u'raid', u'bottl', u'shop']
[u'abattoir', u'stand', u'worker']
[u'afghan', u'claim', u'mistreat', u'detent']
[u'agassi', u'stop', u'scud', u'serena', u'advanc']
[u'agreement', u'reach', u'doctor', u'number']
[u'group', u'ship', u'water', u'iraq']
[u'reach', u'iraq', u'thursday']
[u'american', u'prepar', u'death', u'white', u'hous']
[u'ancient', u'aborigin', u'remain']
[u'toll', u'increas', u'citylink']
[u'anti', u'protest', u'street', u'worldwid']
[u'arrest', u'violent', u'anti', u'ralli', u'sydney']
[u'asic', u'highlight', u'mortag', u'broke', u'standard']
[u'attorney', u'general', u'happi', u'extend', u'sentenc']
[u'aussi', u'proud', u'son', u'effort']
[u'aust', u'navi', u'diver', u'mine', u'iraqi', u'port']
[u'australian', u'face', u'year', u'jail', u'drug']
[u'australian', u'netbal', u'suffer', u'rare', u'defeat']
[u'australian', u'fear', u'lose', u'job']
[u'australian', u'wheat', u'bind', u'qasr']
[u'aust', u'suffer', u'rare', u'defeat', u'jamaica']
[u'bali', u'suspect', u'yell', u'support', u'iraq']
[u'bangladesh', u'captain', u'step']
[u'bartholomeuz', u'rule', u'blue', u'clash']
[u'billiton', u'sell', u'argentinian']
[u'blackal', u'student', u'hostel', u'close']
[u'blair', u'focus', u'post', u'iraq', u'meet']
[u'blue', u'green', u'alga', u'river']
[u'bonlac', u'announc', u'milk', u'price', u'step']
[u'british', u'forc', u'mark', u'time', u'basra', u'fring']
[u'burk', u'mcrae', u'waratah', u'red', u'lose', u'atkinson']
[u'bush', u'plagu', u'spark', u'sell', u'mozzi', u'net']
[u'bush', u'pledg', u'billion', u'east']
[u'busi', u'activ', u'fli', u'high', u'turbul', u'lie']
[u'canberra', u'skier', u'nomin', u'world', u'sport', u'award']
[u'carr', u'rejig', u'cabinet', u'fresh', u'face']
[u'cathol', u'church', u'mourn', u'loss', u'high', u'profil', u'priest']
[u'cfmeu', u'offici', u'brand', u'cole', u'report', u'witch', u'hunt']
[u'chappel', u'take', u'refuge', u'concern', u'ruddock']
[u'child', u'abus', u'report', u'shock', u'govt']
[u'china', u'pneumonia', u'toll', u'amid', u'secreci']
[u'chines', u'blast', u'toll', u'hit']
[u'citizen', u'ask', u'opinion', u'risk', u'hazard']
[u'claim', u'worri', u'north', u'coast']
[u'club', u'oper', u'face', u'fine', u'reef', u'pollut']
[u'cole', u'find', u'union', u'bash', u'labor']
[u'constabl', u'death', u'suspici', u'polic']
[u'cooma', u'cycleway', u'near', u'finish']
[u'copyright', u'chang', u'mean', u'cheaper', u'book']
[u'copyright', u'chang', u'mean', u'cheaper', u'softwar']
[u'council', u'approv', u'subdivis', u'condit']
[u'council', u'fill', u'fund', u'gap']
[u'council', u'hop', u'cuttlefish', u'studi', u'help', u'boost']
[u'council', u'unlik', u'hold', u'age', u'care', u'meet']
[u'council', u'uphold', u'lake', u'cathi', u'recommend']
[u'council', u'urg', u'fast', u'food', u'chain', u'rethink', u'traffic']
[u'countri', u'victorian', u'subsidis', u'power']
[u'coupl', u'resuscit', u'attempt', u'newborn']
[u'csiro', u'develop', u'tool', u'better', u'oyster']
[u'death', u'penalti', u'famili', u'massacr', u'saigon', u'river']
[u'desalin', u'plant', u'readi', u'month']
[u'dingo', u'warn', u'fraser', u'visitor']
[u'doctor', u'charg', u'tri', u'kill', u'patient']
[u'doctor', u'concern', u'rural', u'shortag']
[u'doctor', u'border', u'send', u'medic', u'suppli']
[u'downer', u'head', u'talk', u'leader']
[u'drought', u'cost', u'meatwork', u'job']
[u'educ', u'dept', u'deni', u'teacher']
[u'elder', u'urg', u'lock', u'door', u'bash']
[u'mickelson', u'withdraw', u'player', u'championship']
[u'elura', u'miner', u'strike']
[u'sight', u'sculptor', u'pick', u'gaudi']
[u'england', u'unchang', u'ireland']
[u'timor', u'appeal']
[u'driver', u'wear', u'han', u'devic', u'say']
[u'farmhand', u'poorest', u'pay', u'worker']
[u'farm', u'worker', u'poor', u'pay', u'studi']
[u'figur', u'highlight', u'singl', u'parent', u'famili', u'statist']
[u'crew', u'hope', u'contain', u'bushfir']
[u'arrest', u'brisban', u'anti', u'protest']
[u'french', u'radio', u'premier', u'fiji']
[u'fresh', u'wave', u'bomb', u'hit', u'iraqi']
[u'fund', u'help', u'boost', u'prospect']
[u'ganguli', u'defend', u'decis']
[u'german', u'get', u'stick', u'fold', u'sofa']
[u'gold', u'coast', u'electrician', u'strike', u'better']
[u'governor', u'continu', u'wheatbelt', u'tour']
[u'govt', u'flag', u'construct', u'sector', u'crime', u'watchdog']
[u'govt', u'set', u'asid', u'larg', u'money']
[u'govt', u'set', u'januari', u'bushfir', u'inquiri']
[u'govt', u'decid', u'troop', u'rotat']
[u'grazier', u'face', u'restock', u'problem']
[u'green', u'candid', u'discourag', u'despit', u'loss']
[u'green', u'test', u'labor', u'troop', u'stanc']
[u'gunner', u'stay', u'cours', u'doubl']
[u'hackett', u'blast', u'fina', u'world', u'championship', u'program']
[u'harri', u'potter', u'creator', u'rowl', u'give', u'birth', u'babi']
[u'hart', u'play', u'game']
[u'harvey', u'shire', u'back', u'countri', u'allianc']
[u'hawk', u'hop', u'squar', u'semi', u'final', u'seri']
[u'hawk', u'readi', u'wildcat']
[u'health', u'dept', u'seek', u'specialist', u'nurs']
[u'healthi', u'activ', u'reduc', u'drug', u'abus']
[u'henri', u'strike']
[u'henri', u'wound', u'chelsea', u'clash']
[u'high', u'school', u'student', u'begin', u'hunger', u'strike', u'iraq']
[u'highway', u'deadlock', u'break']
[u'hillgrov', u'gold', u'reopen']
[u'hop', u'craft', u'project', u'boost', u'social', u'cohes']
[u'hous', u'leav', u'coupl', u'homeless']
[u'howard', u'slam', u'annan', u'human', u'right', u'warn']
[u'howard', u'want', u'post', u'iraq']
[u'howe', u'sidelin', u'week']
[u'hundr', u'kill', u'najaf', u'battl']
[u'illeg', u'fisherman', u'detain']
[u'indigen', u'land', u'agreement', u'form']
[u'inquest', u'refuge', u'self', u'immol']
[u'iraqi', u'toll', u'near', u'najaf']
[u'iraq', u'domin', u'global', u'market']
[u'ivanisev', u'miss', u'davi', u'spain']
[u'loss', u'surpris', u'union']
[u'kravitz', u'releas', u'peac', u'anthem']
[u'lectur', u'warn', u'propaganda']
[u'legal', u'confus', u'put', u'food', u'plan', u'hold']
[u'legal', u'embryo', u'stem', u'cell', u'research', u'step', u'closer']
[u'lehmann', u'look', u'forward', u'windi', u'tour']
[u'lib', u'claim', u'south', u'coast', u'seat']
[u'life', u'prison', u'road', u'rage', u'killer']
[u'local', u'market', u'growth', u'offset', u'fall']
[u'charg', u'alleg', u'kidnap']
[u'court', u'bomb', u'hoax', u'virgin', u'flight']
[u'jail', u'import', u'ecstasi', u'child']
[u'send', u'trial', u'plane', u'bomb', u'hoax']
[u'face', u'court', u'bottl', u'attack']
[u'mcrae', u'burk', u'waratah']
[u'member', u'tell', u'club', u'woe']
[u'meningococc', u'mening', u'case', u'bendigo']
[u'mine', u'explos', u'toll', u'climb']
[u'missil', u'strike', u'kill', u'baghdad', u'market']
[u'monaro', u'final', u'count', u'begin']
[u'monash', u'retain', u'engin', u'gippsland']
[u'mooney', u'question', u'delay']
[u'peopl', u'visit', u'pat', u'race', u'meet']
[u'polic', u'head', u'gold', u'coast']
[u'motorist', u'monitor', u'ethanol', u'fuel']
[u'move', u'clean', u'crimin', u'behaviour', u'build']
[u'question', u'census']
[u'nasiriya', u'hospit', u'show', u'sign', u'militari']
[u'compani', u'take', u'blue', u'ribbon']
[u'multicultur', u'communiti', u'servic', u'offic', u'open']
[u'save', u'polic', u'time']
[u'treatment', u'breast', u'cancer', u'post', u'menopaus']
[u'northampton', u'resid', u'prais', u'reduc', u'water']
[u'north', u'korea', u'threaten', u'japan', u'satellit']
[u'odonnel', u'cop', u'match']
[u'perth', u'ralli', u'turn', u'ugli']
[u'petrol', u'blend', u'declar', u'pump']
[u'plan', u'wilder', u'area']
[u'plan', u'begin', u'outback', u'challeng']
[u'plan', u'rationalis', u'tourism', u'branch', u'win', u'support']
[u'polic', u'hunt', u'random', u'attack']
[u'polic', u'drug', u'relat', u'arrest']
[u'polic', u'outnumb', u'protest', u'anti', u'log']
[u'possibl', u'cut', u'irrig', u'alloc']
[u'public', u'liabil', u'cost', u'jeopardis', u'kart', u'grand']
[u'govt', u'suggest', u'indigen', u'council', u'reform']
[u'quarantin', u'impos', u'ontario', u'find', u'sar', u'case']
[u'question', u'rais', u'airport', u'secur']
[u'ralli', u'turn', u'nasti', u'sydney', u'perth']
[u'reef', u'reopen', u'fish']
[u'report', u'recommend', u'tougher', u'law', u'driver']
[u'report', u'armi', u'soldier', u'intimid']
[u'research', u'pull', u'chain', u'school', u'toilet']
[u'resid', u'plan', u'class', u'action', u'highway', u'nois']
[u'resid', u'learn', u'green', u'issu']
[u'opposit', u'highlight', u'ferri', u'worker', u'concern']
[u'schwab', u'pressur', u'produc', u'result']
[u'second', u'soldier', u'die', u'grenad', u'blast', u'tent']
[u'senat', u'slash', u'bush', u'cut']
[u'shire', u'warn', u'burrup', u'industri', u'project', u'speed']
[u'singapor', u'report', u'mysteri', u'pneumonia', u'death']
[u'snake', u'bite', u'put', u'hospit']
[u'soorley', u'refus', u'write', u'troop', u'spark']
[u'sorenstam', u'aim', u'histori']
[u'stab', u'victim', u'recov']
[u'student', u'ralli', u'peac', u'tasmania']
[u'sunris', u'project', u'gain', u'stage', u'approv']
[u'swimmer', u'warn', u'stinger']
[u'live', u'baghdad']
[u'thorp', u'callus', u'dead', u'heat', u'thriller']
[u'thorp', u'forc', u'settl']
[u'thousand', u'expect', u'flock', u'toowoomba']
[u'thousand', u'middl', u'east', u'protest', u'ralli']
[u'imposs', u'sheedi']
[u'tiger', u'consid', u'appeal', u'odonnel']
[u'timber', u'firm', u'branch', u'wine', u'busi']
[u'toowoomba', u'join', u'list', u'region', u'centr']
[u'toowoomba', u'join', u'list', u'region', u'centr']
[u'tougher', u'water', u'restrict', u'broadford']
[u'tribut', u'flow', u'lismor', u'mayor']
[u'turkey', u'scale', u'iraqi', u'border', u'forc']
[u'turkey', u'reserv', u'right', u'deploy', u'troop']
[u'turkey', u'seek', u'iraq', u'buffer', u'zone', u'prevent', u'terror']
[u'brit', u'kill', u'friend', u'near', u'basra']
[u'unemploy', u'level', u'rise', u'wide']
[u'union', u'leader', u'expect', u'face', u'charg']
[u'kill', u'return', u'pentagon']
[u'uralla', u'council', u'withdraw']
[u'admit', u'possibl', u'civilian', u'casualti', u'bomb']
[u'defend', u'iraq', u'battl', u'plan']
[u'destroy', u'down', u'apach', u'helicopt']
[u'public', u'back', u'bush', u'poll']
[u'vail', u'call', u'fair', u'slice', u'iraq', u'trade']
[u'doctor', u'demand', u'indemn', u'reform']
[u'govt', u'defend', u'speed', u'camera']
[u'violent', u'sydney', u'anti', u'ralli', u'declar', u'illeg']
[u'govt', u'back', u'campaign', u'relief']
[u'iraq', u'hurt', u'manufactur']
[u'memori', u'plan', u'mirani', u'shire']
[u'warn', u'receiv', u'world', u'money']
[u'women', u'urg', u'bone', u'densiti', u'test']
[u'woodchip', u'truck', u'safe', u'industri', u'offici']
[u'zambia', u'flood', u'wreck', u'crop', u'leav', u'homeless']
[u'zberg', u'take', u'sprint', u'bayarri', u'claim', u'overal', u'lead']
[u'iraqi', u'tank', u'destroy', u'south', u'basra', u'british']
[u'kill', u'south', u'korean', u'school', u'camp']
[u'abalon', u'fine', u'send', u'warn', u'poacher']
[u'academ', u'speak', u'abus', u'indonesian', u'polic']
[u'accc', u'wont', u'probe', u'surgeri', u'complaint']
[u'memori', u'honour', u'emerg', u'worker']
[u'actu', u'urg', u'senat', u'block', u'build', u'industri', u'reform']
[u'age', u'care', u'home', u'build', u'begin', u'juli']
[u'alic', u'spring', u'track', u'master', u'game']
[u'jazeera', u'seek', u'ensur', u'free', u'press']
[u'anderson', u'tabl', u'tougher', u'airport', u'secur', u'law']
[u'annan', u'urg', u'uniti', u'iraqi']
[u'anti', u'protest', u'march', u'lismor', u'street']
[u'anti', u'protest', u'warn', u'scam']
[u'anti', u'protest', u'plan', u'worri', u'princip']
[u'anti', u'protest', u'continu', u'melbourn']
[u'arab', u'nation', u'grappl', u'anti', u'protest']
[u'asic', u'investig', u'council', u'arnhem', u'land']
[u'mayor', u'poll', u'hold', u'south', u'east']
[u'aust', u'navi', u'diver', u'clear', u'iraqi', u'port', u'mine']
[u'australian', u'swim', u'championship', u'result']
[u'aust', u'soldier', u'join', u'line', u'democrat', u'propos']
[u'baghdad', u'bomb', u'market', u'carnag']
[u'baghdad', u'fresh', u'bombard']
[u'battl', u'drought', u'come', u'microscop']
[u'blast', u'rock', u'burma', u'capit', u'kill']
[u'boodnikoff', u'name', u'nbls', u'rooki']
[u'fli', u'hospit', u'assault']
[u'british', u'captiv', u'appear', u'jazeera']
[u'brundl', u'fear', u'british', u'futur']
[u'crash', u'burn', u'kyrgyzstan', u'kill']
[u'bushfir', u'committe', u'meet', u'today']
[u'centr', u'disput']
[u'delay', u'murray', u'flow', u'decis']
[u'canberra', u'consid', u'race', u'return']
[u'canberra', u'trip', u'boost', u'wastewat', u'plan', u'hop']
[u'capriati', u'move', u'miami']
[u'capriati', u'rubin', u'advanc', u'semi', u'final']
[u'carr', u'blame', u'marxist', u'protest', u'violenc']
[u'chick', u'doubt', u'port', u'clash']
[u'chick', u'rule', u'port', u'clash']
[u'chilean', u'firm', u'question', u'money', u'launder']
[u'coalit', u'bomb', u'iraqi', u'column', u'basra']
[u'cole', u'myer', u'drop', u'payout', u'board', u'sitter']
[u'communiti', u'project', u'fund', u'boost']
[u'communiti', u'spirit', u'abund', u'great', u'southern']
[u'compani', u'assess', u'viabil']
[u'crash', u'caus', u'vicroad', u'woe']
[u'concern', u'air', u'water', u'charg']
[u'hope', u'stop', u'blue', u'tier', u'log']
[u'copi', u'kewel', u'stay', u'leed']
[u'coral', u'spawn', u'impact', u'crayfish', u'catch']
[u'cork', u'hardi', u'merger', u'giant']
[u'council', u'hop', u'boost', u'power']
[u'council', u'hire', u'secur', u'guard', u'surfer']
[u'council', u'vote', u'renew', u'general', u'manag']
[u'croc', u'forc', u'decid', u'wildcat', u'grand', u'final']
[u'crow', u'squad', u'best', u'hart']
[u'trade', u'heritag', u'list', u'build']
[u'danger', u'media', u'iraq', u'downer']
[u'darwin', u'itiner', u'signific', u'social', u'problem', u'polic']
[u'rosa', u'fastest', u'barcelona', u'test']
[u'democrat', u'approv', u'tougher', u'welfar', u'penalti']
[u'dengu', u'fever', u'case', u'rise']
[u'detect', u'sergeant', u'sack']
[u'digger', u'farewel', u'brisban']
[u'dodgi', u'resum', u'chief', u'execut']
[u'save', u'shark', u'attack']
[u'doubl', u'forward', u'boost', u'ireland']
[u'drought', u'impact', u'rice', u'harvest']
[u'drought', u'inspect', u'start']
[u'drought', u'mean', u'goondiwindi', u'wont', u'host', u'waterski']
[u'drought', u'spur', u'feral', u'cull', u'talli']
[u'dubai', u'base', u'say', u'news', u'team', u'miss', u'iraq']
[u'durban', u'offici', u'boycott', u'warn', u'visit']
[u'timor', u'fee', u'asylum', u'seeker', u'gusmao']
[u'farmer', u'angri', u'grain', u'board', u'privatis', u'plan']
[u'farmer', u'urg', u'consid', u'skill', u'accept', u'chang']
[u'farmer', u'urg', u'fight', u'iraqi', u'wheat', u'market']
[u'fear', u'outstat', u'closur', u'lead', u'death']
[u'festiv', u'fenc', u'boost', u'gate', u'take']
[u'finegan', u'set', u'comeback', u'canterburi', u'clash']
[u'franc', u'help', u'chemic', u'weapon']
[u'fraser', u'keen', u'contest', u'nat', u'leadership']
[u'fraud', u'cost', u'australia', u'billion', u'annual', u'report']
[u'friend', u'hail', u'marin', u'nasiriyah']
[u'fuel', u'reduct', u'burn', u'spark', u'anger']
[u'plant', u'report', u'emiss', u'level']
[u'goldman', u'sach', u'buy', u'slice']
[u'gold', u'open']
[u'gold', u'mine', u'restart', u'hill']
[u'govt', u'push', u'welfar', u'penalti', u'senat']
[u'govt', u'risk', u'custodi', u'death', u'inmat', u'home']
[u'shortag', u'threaten', u'health', u'rural', u'doctor']
[u'grafton', u'council', u'focus', u'ethic']
[u'grafton', u'farmer', u'trial', u'water']
[u'harvey', u'shire', u'announc', u'retir']
[u'head', u'coach', u'say', u'expect', u'thorp', u'hackett']
[u'histor', u'paddleboat', u'cruis', u'month']
[u'histor', u'villag', u'gundaroo', u'techno', u'capit']
[u'hong', u'kong', u'invok', u'quarantin', u'contain', u'dead']
[u'hope', u'industri', u'park', u'offer', u'benefit']
[u'howard', u'slam', u'annan', u'human', u'right', u'warn']
[u'human', u'right', u'commiss', u'oppos', u'reform']
[u'infantri', u'divis', u'head', u'gulf']
[u'ingram', u'submiss', u'bushfir', u'probe']
[u'injur', u'kenyan', u'champ', u'miss', u'world', u'cross']
[u'intern', u'gaze', u'break', u'hill']
[u'invas', u'forc', u'turn', u'basra', u'breakout', u'report']
[u'iraqi', u'chem', u'protect', u'doesnt', u'mean', u'blix']
[u'iraqi', u'claim', u'civilian', u'death', u'baghdad']
[u'island', u'festiv', u'launch', u'zeehan']
[u'israel', u'raid', u'gaza', u'chase', u'arafat', u'bodyguard']
[u'ivori', u'coast', u'ministri', u'appoint', u'condemn']
[u'japanes', u'militari', u'alert']
[u'keel', u'order']
[u'kewel', u'stay', u'leed']
[u'wit', u'rivkin', u'admit', u'lie']
[u'kilburn', u'face', u'trial', u'babi', u'death']
[u'tribut', u'digger']
[u'fratern', u'block', u'melbourn', u'street']
[u'lawyer', u'wit', u'sling', u'insult', u'polic', u'inquiri']
[u'liquid', u'abl', u'target', u'compani', u'director']
[u'madrid', u'auction', u'hous', u'unveil', u'lose', u'goya', u'paint']
[u'charg', u'ecstasi', u'haul']
[u'hospit', u'fall']
[u'kill', u'steal', u'chase', u'polic']
[u'arm', u'robberi', u'charg', u'face', u'court']
[u'strap', u'schoolboy', u'receiv']
[u'market', u'stay', u'hold', u'pattern', u'iraq']
[u'mcewen', u'lead', u'aussi', u'belgium']
[u'melbourn', u'worker', u'urg', u'stop', u'work']
[u'member', u'split', u'cancer', u'chariti']
[u'million', u'dollar', u'splurg', u'inaugur', u'adelaid']
[u'delay', u'ship', u'iraq', u'port']
[u'minist', u'fuel', u'prejudic', u'muslim']
[u'monaro', u'readi', u'admit', u'poll', u'defeat']
[u'australian', u'troop', u'iraq', u'poll']
[u'blast', u'report', u'baghdad']
[u'blast', u'rock', u'baghdad']
[u'motorist', u'target', u'secur']
[u'moya', u'move', u'miami', u'quarter']
[u'question', u'schooli', u'task', u'forc']
[u'suggest', u'smoke', u'kid', u'aboard']
[u'nat', u'announc', u'region', u'race', u'boost']
[u'natta']
[u'nestl', u'worker', u'accept', u'redund', u'packag']
[u'bodi', u'need', u'build', u'industri', u'law']
[u'wheel', u'monaro']
[u'sar', u'case', u'suspect', u'perth']
[u'nobel', u'laureat', u'cuff', u'white', u'hous', u'protest']
[u'permit', u'student', u'protest', u'polic']
[u'nowra', u'bomaderri', u'larg', u'citi', u'report']
[u'energi', u'minist', u'dump']
[u'govt', u'reliev', u'beekeep', u'sting', u'drought']
[u'minist', u'opt', u'carr', u'cabinet']
[u'polic', u'confirm', u'springsteen', u'secur', u'threat']
[u'obeid', u'opt', u'ministeri', u'scuffl']
[u'pakistani', u'qaeda', u'suspect', u'hold', u'free', u'bail']
[u'patriot', u'stop', u'iraqi', u'missil', u'shoot', u'kuwait']
[u'pentagon', u'talk', u'republican', u'guard', u'column']
[u'piper', u'correct', u'breath', u'problem', u'claim', u'world']
[u'plane', u'board', u'crash', u'indonesia', u'papua']
[u'pneumonia', u'roll', u'stone', u'tour', u'hong', u'kong']
[u'polic', u'charg', u'driver', u'berri', u'crash']
[u'polic', u'chief', u'look', u'forward', u'great', u'southern']
[u'polic', u'crack', u'drug', u'gympi']
[u'polic', u'probe', u'possibl', u'drink', u'spike']
[u'polic', u'search', u'nightclub', u'stab']
[u'polic', u'seiz', u'cannabi', u'plant']
[u'polic', u'tactic', u'contribut', u'protest', u'violenc']
[u'powel', u'invit', u'post', u'iraq']
[u'rain', u'bring', u'relief', u'livestock', u'farmer']
[u'real', u'madrid', u'plan', u'beckham']
[u'reckless', u'high', u'price', u'crean']
[u'record', u'fall', u'thorp']
[u'region', u'council', u'poll', u'begin']
[u'report', u'outlin', u'canola', u'advantag']
[u'republican', u'guard', u'attack', u'forc', u'iraq']
[u'republican', u'guard', u'advanc', u'alli']
[u'rescu', u'indonesian', u'fishermen', u'face', u'charg', u'broom']
[u'rockhampton', u'gear', u'beef', u'expo']
[u'royal', u'commiss', u'wast', u'time', u'union']
[u'sach', u'merg']
[u'govt', u'announc', u'investig', u'uranium']
[u'school', u'kid', u'arm', u'protest', u'minist']
[u'schoolgirl', u'plan', u'anti', u'protest']
[u'scientist', u'gather', u'discuss', u'drought']
[u'shire', u'presid', u'back', u'yuryevich', u'mayor']
[u'shire', u'want', u'environment', u'assess', u'review']
[u'south', u'east', u'choos', u'studi', u'tour']
[u'swamp', u'smell', u'test', u'underway']
[u'swiss', u'refus', u'oust', u'iraqi', u'diplomat']
[u'syrian', u'religi', u'leader', u'urg', u'suicid', u'attack']
[u'govt', u'ask', u'explain', u'grain', u'elev', u'board']
[u'textil', u'firm', u'await', u'council', u'decis']
[u'thoma', u'fli', u'qualifi']
[u'thorp', u'deck', u'dead', u'heat']
[u'thorp', u'callus', u'deck', u'dead', u'heat']
[u'thumb', u'darl', u'down', u'tourism']
[u'tigana', u'leav', u'fulham', u'season']
[u'tourism', u'boom', u'doesnt', u'surpris', u'industri']
[u'town', u'support', u'worker', u'union']
[u'toyworld', u'build', u'demolish']
[u'tradit', u'owner', u'sure', u'want']
[u'target', u'geneva', u'convent', u'amnesti']
[u'dead', u'car', u'crash']
[u'miss', u'british', u'soldier', u'believ', u'dead', u'defenc']
[u'reach', u'iraq', u'agreement', u'aust', u'ambassador']
[u'armi', u'criticis', u'iraq', u'firefight', u'contract']
[u'didnt', u'mean', u'blow', u'civilian', u'howard']
[u'forc', u'parachut', u'northern', u'iraq']
[u'gather', u'evid', u'execut', u'claim']
[u'investig', u'friend', u'report']
[u'wound', u'arriv', u'spanish', u'base']
[u'wont', u'cede', u'control', u'iraq']
[u'vacc', u'question', u'petrol', u'station', u'fin']
[u'make', u'stalk', u'crime']
[u'vote', u'count', u'coff', u'harbour']
[u'caus', u'short', u'term', u'drop', u'oversea', u'tourist']
[u'water', u'restrict', u'place', u'despit', u'rain']
[u'waterway', u'open', u'brisban', u'spill']
[u'wheat', u'grower', u'urg', u'lobbi', u'cwealth']
[u'winter', u'milk', u'suppli', u'unlik']
[u'woman', u'unlik', u'mysteri', u'ill']
[u'woodward', u'confid', u'england', u'break', u'grand', u'slam']
[u'work', u'start', u'road', u'upgrad']
[u'yaraka', u'fear', u'impact', u'rail', u'gang', u'plan']
[u'payout', u'stand', u'paralys', u'motorist']
[u'dead', u'wound', u'najaf', u'fight', u'minist']
[u'aborigin', u'communiti', u'lose', u'initi', u'senior']
[u'accc', u'drop', u'industri', u'investig']
[u'adelaid', u'import', u'look', u'club']
[u'adelaid', u'notch', u'second', u'final']
[u'afghanistan', u'flood', u'kill']
[u'ship', u'creep', u'iraq', u'port']
[u'airport', u'upgrad', u'begin', u'monday']
[u'aldoga', u'get', u'feder', u'approv', u'aluminium', u'smelter']
[u'ord', u'close', u'point']
[u'howard', u'near', u'deal', u'medicar']
[u'anti', u'protest', u'disrupt', u'howard', u'dinner']
[u'reward', u'swimmer', u'pacif', u'success']
[u'atsic', u'pledg', u'help', u'stop', u'violenc']
[u'australia', u'name', u'squad']
[u'australian', u'jet', u'continu', u'bomb', u'mission']
[u'australian', u'swim', u'championship', u'result', u'friday']
[u'babi', u'bag', u'china', u'citi']
[u'ballina', u'seek', u'nat', u'deputi', u'leadership']
[u'bargain', u'bid', u'expect', u'waratah', u'land', u'auction']
[u'bargin', u'bid', u'expect', u'waratah', u'land', u'auction']
[u'basic', u'benefit', u'reinstat', u'pay', u'worker']
[u'beatti', u'highlight', u'charter', u'tower', u'anti', u'chrome']
[u'bell', u'chanc', u'increas', u'dubai']
[u'bendigo', u'bomber', u'boost', u'membership']
[u'biggest', u'attack', u'pummel', u'baghdad']
[u'bike', u'squad', u'oper', u'griffith']
[u'blewett', u'meet', u'bushrang']
[u'blix', u'see', u'post', u'monitor', u'role']
[u'boardshort', u'rais', u'fund', u'fight', u'youth']
[u'bomb', u'campaign', u'ignor', u'religi']
[u'bridg', u'improv', u'access', u'coramba', u'resid']
[u'brumbi', u'thump', u'pacesett']
[u'bulldog', u'meet', u'financi', u'woe']
[u'bunburi', u'council', u'support', u'dolphin', u'centr']
[u'burn', u'philp', u'announc', u'goodman', u'takeov']
[u'bush', u'accus', u'stifl', u'anti', u'congress', u'member']
[u'cambodia', u'cabinet', u'okay', u'khmer', u'roug', u'trial']
[u'campaign', u'turn', u'forest', u'nation', u'park']
[u'carr', u'unveil', u'look', u'cabinet']
[u'charlevill', u'open', u'galleri']
[u'childcar', u'centr', u'staff', u'centr', u'open']
[u'church', u'voic', u'caus']
[u'church', u'iraq']
[u'civilian', u'fire', u'basra']
[u'claim', u'catchment', u'plan', u'focus', u'cultur']
[u'clark', u'guilti', u'brawl', u'charg']
[u'coalit', u'death', u'toll', u'stand']
[u'confisc', u'crime', u'money', u'youth']
[u'controversi', u'mayor', u'stay', u'term']
[u'corser', u'fourth', u'fastest', u'qualifi']
[u'corser', u'fourth', u'fastest', u'phillip', u'island', u'practic']
[u'cosgrov', u'defend', u'plan', u'strategi']
[u'council', u'adopt', u'water', u'save', u'technolog']
[u'council', u'allow', u'poultri', u'develop']
[u'council', u'ask', u'tenni', u'tournament']
[u'council', u'elect', u'mayor', u'shake']
[u'council', u'church', u'fear', u'pacif', u'stabil']
[u'council', u'seek', u'extra', u'fund', u'fire', u'chang']
[u'council', u'continu', u'manag', u'leisur', u'centr']
[u'council', u'sort', u'detail', u'appoint']
[u'crash', u'spark', u'driver', u'fatigu', u'warn']
[u'creditor', u'fraction', u'fail', u'gold']
[u'develop', u'confid', u'pass', u'green', u'inquiri']
[u'dizzi', u'say', u'system', u'indi', u'tour']
[u'dizzi', u'say', u'system', u'windi', u'tour']
[u'eel', u'board']
[u'egypt', u'predict', u'dire', u'consequ']
[u'expand', u'popul', u'prompt', u'polic', u'boost']
[u'farmer', u'want', u'relax', u'rule', u'cull']
[u'fear', u'iraq', u'conflict', u'obstruct', u'olymp']
[u'feder', u'bushfir', u'inquiri', u'invit', u'public', u'submiss']
[u'govt', u'pledg', u'indigen', u'rural', u'health']
[u'evid', u'hear', u'murder', u'trial']
[u'rain', u'plagu', u'player', u'championship']
[u'forestri', u'tasmania', u'deni', u'blue', u'tier', u'problem']
[u'isra', u'pay', u'tribut', u'australia']
[u'detain', u'visa', u'breach', u'claim']
[u'free', u'tour', u'bushfir', u'impact']
[u'frigo', u'take', u'control', u'catalunya']
[u'fund', u'help', u'student', u'stay', u'school']
[u'gillespi', u'say', u'system', u'windi', u'tour']
[u'gilmor', u'elect', u'bushfir', u'inquiri']
[u'girl', u'remov', u'communiti', u'stab']
[u'gold', u'fall', u'huegil']
[u'govt', u'await', u'appeal', u'outcom', u'atsic', u'chief']
[u'group', u'want', u'local', u'decis', u'make', u'power']
[u'hackett', u'mill', u'race', u'qualifi']
[u'hackett', u'return', u'pool']
[u'heritag', u'build', u'demolish', u'park']
[u'hollywood', u'refus', u'promot']
[u'howard', u'health', u'plan', u'apartheid', u'acoss']
[u'illawarra', u'drought', u'assess']
[u'indigen', u'agreement', u'claim']
[u'indonesia', u'rare', u'pet', u'luxuri']
[u'indonesian', u'protest', u'unsway', u'mcdonald', u'defenc']
[u'iraq', u'deni', u'execut', u'british', u'soldier']
[u'iraqi', u'protect', u'suit', u'weapon', u'potenti']
[u'iraqi', u'decid', u'futur', u'want']
[u'iraqi', u'troop', u'flee', u'civilian', u'brit']
[u'iraq', u'shoot', u'drone', u'baghdad']
[u'cancel', u'beij', u'seven', u'amid', u'virus', u'fear']
[u'japanes', u'beef', u'tariff', u'cost', u'produc', u'say']
[u'japan', u'launch', u'satellit', u'amid', u'north', u'korea', u'fear']
[u'joint', u'radio', u'room']
[u'set', u'record', u'whopper', u'pumpkin']
[u'kewel', u'jump', u'venabl', u'defenc']
[u'knight', u'lose', u'tahu', u'eel', u'encount']
[u'kurd', u'close', u'citi', u'report']
[u'langmack', u'appoint', u'rabbitoh', u'coach']
[u'legal', u'group', u'want', u'specialist', u'court', u'mental']
[u'lifestyl', u'revolut', u'torr', u'strait', u'communiti']
[u'log', u'lead', u'beetl', u'speci']
[u'charg', u'karara', u'sieg']
[u'face', u'court', u'child', u'charg']
[u'remand', u'organis', u'crime', u'case']
[u'appear', u'court', u'drug', u'haul']
[u'maroochi', u'mayor', u'expect', u'charg', u'royal']
[u'mcgradi', u'deni', u'surfer', u'visit', u'media', u'stunt']
[u'mental', u'health', u'unit', u'open', u'kalgoorli']
[u'mock', u'villag', u'assist', u'polic', u'train']
[u'critic', u'network', u'chang']
[u'meet', u'discuss', u'schooli', u'submiss']
[u'help', u'establish', u'child', u'care', u'task', u'forc']
[u'murder', u'confess', u'earn', u'convict', u'killer', u'extra']
[u'mysteri', u'virus', u'torpedo', u'thorp']
[u'natwa']
[u'newcastl', u'fisher', u'welcom', u'obeid', u'decis']
[u'industri', u'bloom', u'kimberley']
[u'inquiri', u'controversi', u'mine', u'process']
[u'network', u'contract', u'riverina']
[u'theori', u'link', u'older', u'brother', u'male']
[u'virus', u'strain', u'caus', u'sar']
[u'clarifi', u'delay', u'detail', u'fals']
[u'upfront', u'bulk', u'bill', u'howard']
[u'deputi', u'liber', u'leader', u'like', u'reclaim', u'seat']
[u'say', u'port', u'spray', u'virus', u'carri', u'mozzi']
[u'offici', u'reject', u'fail', u'state']
[u'ogradi', u'head', u'swiss', u'test']
[u'giant', u'welcom', u'accc', u'backdown']
[u'spill', u'clean', u'final', u'stag']
[u'investor', u'consid', u'extend']
[u'olonga', u'fear', u'life', u'black', u'protest']
[u'olymp', u'champ', u'keen', u'race', u'thorp']
[u'pakistan', u'player', u'world', u'failur']
[u'palestinian', u'scorn', u'delay', u'peac', u'roadmap']
[u'patient', u'phone', u'assess', u'debat']
[u'perl', u'resign', u'show', u'coalit', u'fall', u'apart']
[u'petrol', u'price', u'fall', u'albani']
[u'photograph', u'boycott', u'galleri', u'lodg', u'plan']
[u'photograph', u'cite', u'conserv', u'concern']
[u'pie', u'draw', u'blood']
[u'fudg', u'post', u'iraq', u'rule', u'labor']
[u'upbeat', u'offend', u'green']
[u'polak', u'mark', u'carey']
[u'poland', u'ask', u'discret', u'troop']
[u'polic', u'seek', u'wit', u'stuart', u'highway', u'death']
[u'port', u'wrap', u'prepar', u'eagl', u'clash']
[u'premier', u'defend', u'govt']
[u'prospector', u'clear', u'gold', u'ruse']
[u'protest', u'march', u'sydney', u'despit', u'polic']
[u'protest', u'leader', u'polic', u'chanc']
[u'public', u'prepar', u'french']
[u'qanta', u'schedul', u'flight', u'cut']
[u'radic', u'group', u'name', u'moran', u'bomber']
[u'rail', u'bridg', u'close', u'safeti', u'test']
[u'ralf', u'fastest', u'barcelona', u'test']
[u'real', u'play', u'talk', u'beckham']
[u'record', u'crowd', u'flock', u'weetwood', u'handicap']
[u'record', u'fall', u'thorp']
[u'record', u'fall', u'thorp']
[u'report', u'author', u'water', u'govt']
[u'research', u'centr', u'open', u'fraser']
[u'rural', u'train', u'wag', u'compar', u'apprenticeship']
[u'saudi', u'ambassador', u'kill', u'ivori', u'coast']
[u'scandal', u'oust', u'iraq', u'hawk', u'pentagon', u'panel']
[u'scienc', u'prove', u'neanderth', u'dexter']
[u'serb', u'polic', u'slay', u'presid', u'milosev']
[u'serena', u'cruis', u'miami', u'final']
[u'serena', u'crush', u'clijster', u'reach', u'miami', u'final']
[u'shire', u'offer', u'money', u'fight', u'elector', u'reform']
[u'shire', u'presid', u'odd', u'council', u'vote']
[u'town', u'exempt', u'easter', u'sunday', u'trade']
[u'sorenstam', u'set', u'pace', u'california']
[u'south', u'border', u'option', u'silicon', u'compani']
[u'south', u'west', u'wine', u'leav']
[u'ardmona', u'count', u'cost', u'mass', u'meet']
[u'springborg', u'impati', u'nat', u'coalit']
[u'satellit', u'launch', u'arm', u'race', u'north', u'korea']
[u'stall', u'industri', u'action', u'anger', u'wide', u'teacher']
[u'supplementari', u'elect', u'need', u'council']
[u'suspect', u'djindjic', u'murder', u'kill', u'arrest']
[u'suspend', u'jail', u'term', u'croc', u'death', u'guid']
[u'swan', u'extend', u'contract']
[u'syria', u'mufti', u'call', u'martyr', u'attack']
[u'tadpol', u'prove', u'frog', u'surviv', u'drought']
[u'tamworth', u'council', u'person', u'retir', u'council']
[u'tasmanian', u'student', u'defend', u'right', u'protest']
[u'thai', u'flight', u'refus', u'diseas', u'risk', u'passeng']
[u'candid', u'adelaid', u'mayor', u'posit']
[u'state', u'chase', u'revenu']
[u'thunderstorm', u'hold', u'feder', u'costa']
[u'tourist', u'think', u'croc', u'attack', u'prank', u'court', u'tell']
[u'treasur', u'plan', u'ceas', u'busi', u'poach']
[u'truck', u'crash', u'kill', u'sheep']
[u'agre', u'free', u'billion', u'iraqi']
[u'congress', u'vote', u'holi']
[u'mistak', u'slovenia', u'partner']
[u'order', u'troop', u'iraq']
[u'say', u'market', u'blast', u'solv']
[u'toll', u'dead', u'seven', u'pow', u'miss']
[u'turkey', u'resum', u'talk', u'iraq', u'deploy']
[u'opposit', u'oppos', u'parliament', u'reform']
[u'wide', u'ambo', u'strike', u'avert']
[u'govt', u'make', u'easier', u'access', u'pastoralist']
[u'slow', u'civilian', u'sake', u'howard']
[u'waugh', u'honour', u'blue', u'best']
[u'critic', u'cwealth', u'fund', u'figur']
[u'webb', u'conced', u'defeat', u'monaro']
[u'werent', u'readi', u'chief', u'soldier']
[u'wollongong', u'popul', u'grow', u'get', u'older']
[u'work', u'group', u'assess', u'water', u'issu']
[u'year', u'charg', u'molest', u'murder']
[u'adjust', u'unconvent', u'warfar']
[u'africa', u'cross', u'countri', u'domin', u'show']
[u'jazeera', u'say', u'cameraman', u'miss', u'iraq']
[u'analyst', u'predict', u'lower', u'petrol', u'price']
[u'anti', u'protest', u'send', u'realiti', u'messag']
[u'arbitr', u'dismiss', u'bid', u'appeal', u'drug']
[u'assist', u'pour', u'cold', u'water', u'hoddl', u'strife', u'rumour']
[u'aust', u'fighter', u'jet', u'destroy', u'command']
[u'australian', u'jet', u'bomb', u'iraqi', u'target']
[u'baghdad', u'death', u'toll', u'say', u'iraq', u'bomb', u'rain']
[u'beazley', u'prais', u'complet', u'collin', u'class']
[u'bekel', u'song', u'world', u'cross', u'countri']
[u'blackshirt', u'confront', u'oppon', u'melbourn']
[u'blair', u'drop', u'claim', u'iraq', u'murder', u'soldier']
[u'blast', u'rock', u'kurdish', u'town', u'appar', u'counterattack']
[u'blix', u'leav', u'june']
[u'border', u'town', u'record', u'biggest', u'rig']
[u'brit', u'forc', u'captur', u'general', u'basra', u'clash']
[u'british', u'soldier', u'kill', u'friend']
[u'brumbi', u'smith', u'face', u'disciplinari', u'hear']
[u'buddhist', u'leader', u'tell', u'forum', u'peac', u'confus']
[u'bunker', u'buster', u'drop', u'baghdad', u'report']
[u'burglar', u'rescu', u'chimney']
[u'bush', u'prais', u'great', u'progress', u'troop']
[u'cameraman', u'bodi', u'arriv', u'adelaid']
[u'candid', u'nomin', u'outgo', u'liber', u'seat']
[u'capriati', u'hop', u'gift', u'wrap', u'tournament']
[u'capriati', u'final', u'agassi', u'costa', u'meet']
[u'caus', u'fatal', u'chopper', u'crash', u'unknown']
[u'chili', u'phillip', u'island', u'superbik']
[u'china', u'put', u'final', u'death', u'toll', u'accid']
[u'coalit', u'wartim', u'support', u'strong', u'poll']
[u'coalit', u'warplan', u'continu', u'baghdad', u'bombard']
[u'communiti', u'care', u'reform', u'welcom', u'provid']
[u'compani', u'urg', u'disclos', u'salari']
[u'correct', u'servic', u'lobbi', u'offend', u'rehab']
[u'crusad', u'hurrican', u'clash']
[u'crusad', u'highland', u'thriller']
[u'cwealth', u'examin', u'hazard']
[u'daylight', u'save', u'time', u'end', u'sunday']
[u'decis', u'delay', u'delaney']
[u'dracula', u'congress', u'sink', u'teeth', u'religi']
[u'dracula', u'afraid']
[u'ebola', u'outbreak', u'eas', u'congo']
[u'edward', u'test', u'injuri', u'crisi', u'hit', u'wale']
[u'guerrouj', u'map', u'prepar', u'plan', u'pari']
[u'england', u'soccer', u'fan', u'rampag', u'zurich']
[u'explos', u'strap', u'hijack', u'report']
[u'driver', u'aid', u'push']
[u'famili', u'glad', u'cameraman', u'bodi', u'home']
[u'father', u'death', u'rule', u'robbi', u'kean', u'ireland']
[u'firefight', u'nasiriyah']
[u'ship', u'dock', u'qasr']
[u'bomb', u'attack', u'southern', u'philippin']
[u'vet', u'answer']
[u'frigo', u'win', u'catalan', u'cycl', u'week']
[u'fungus', u'trade', u'keep', u'status', u'studi']
[u'gazza', u'eager', u'chines', u'debut']
[u'gazza', u'score', u'chines', u'debut']
[u'golden', u'bear', u'return', u'augusta']
[u'govt', u'dismiss', u'pepper', u'spray', u'threat', u'polic']
[u'govt', u'blame', u'budget', u'woe']
[u'hackett', u'simpli', u'best', u'sydney']
[u'hackett', u'welsh', u'jone', u'line', u'final', u'night']
[u'hacktivist', u'wage', u'iraq', u'onlin']
[u'hargreav', u'england']
[u'harrington', u'sing', u'rain', u'player']
[u'heal', u'william', u'lead', u'king', u'final']
[u'hodgson', u'grab', u'pole', u'phillip', u'island']
[u'howard', u'defend', u'length', u'iraq']
[u'howard', u'defend', u'length']
[u'icrc', u'worker', u'execut', u'taliban', u'central']
[u'indonesian', u'textil', u'display']
[u'iowa', u'mayor', u'lie']
[u'iran', u'dismiss', u'warn', u'propaganda']
[u'iraq', u'deni', u'disguis', u'soldier', u'civilian']
[u'iraqi', u'armi', u'pin', u'south']
[u'iraqi', u'soccer', u'leagu', u'kick', u'despit']
[u'iraq', u'sar', u'heat', u'tourism', u'industri']
[u'iraq', u'say', u'detain', u'alleg', u'spi']
[u'iraq', u'sandstorm']
[u'island', u'festiv', u'deliv', u'world', u'class', u'act']
[u'jone', u'huegil', u'pool', u'duel', u'travel', u'fear']
[u'jone', u'huegil', u'duel', u'pool']
[u'journo', u'spot', u'miss', u'italian', u'journalist']
[u'jubil', u'kurd', u'fighter', u'cross', u'northern', u'frontlin']
[u'kenya', u'bid', u'cross', u'countri', u'world']
[u'kwan', u'win', u'world', u'figur', u'skate', u'short', u'program']
[u'lewiss', u'latest', u'titl', u'defenc', u'place']
[u'lion', u'kick', u'titl', u'defenc', u'bomber']
[u'lion', u'kick', u'titl', u'defenc', u'bomber']
[u'lion', u'roar', u'port', u'carlton', u'hide']
[u'lion', u'thump', u'bomber']
[u'lion', u'unfurl', u'premiership', u'flag']
[u'mackenroth', u'reject', u'govt', u'review', u'call']
[u'marin', u'miss', u'nasiriyah', u'fight']
[u'martyn', u'doubt', u'west', u'indi', u'tour']
[u'martyn', u'miss', u'start', u'windi', u'tour']
[u'media', u'tone', u'frustrat', u'washington']
[u'melbourn', u'stag', u'peac', u'anti', u'ralli']
[u'meunier', u'lebouc', u'take', u'lead', u'webb', u'hit', u'disast']
[u'meunier', u'lebouc', u'take', u'lead', u'webb', u'hit', u'disast']
[u'middl', u'east', u'protest', u'damn', u'aggress']
[u'militari', u'offici', u'downplay', u'groundwar', u'paus']
[u'minist', u'fund', u'art', u'boost']
[u'miss', u'italian', u'journalist', u'move', u'baghdad']
[u'moment', u'vitamin', u'cancer']
[u'palestinian', u'anti']
[u'mugab', u'face', u'prospect', u'fresh', u'protest']
[u'nation', u'frustrat', u'coalit', u'delay']
[u'korea', u'condemn', u'satellit', u'launch']
[u'senior', u'cancer', u'drug', u'trial', u'studi']
[u'teacher', u'pressur', u'incom', u'minist']
[u'coron', u'prompt', u'govt', u'commiss', u'find']
[u'polic', u'search', u'miss', u'children']
[u'end', u'week']
[u'marin', u'kill', u'hurt', u'accid']
[u'paus', u'wont', u'stop', u'aust', u'troop', u'work', u'iraq']
[u'perk', u'caddi', u'spend', u'night']
[u'face', u'anti', u'protest', u'melbourn']
[u'polic', u'arrest', u'religi', u'leader', u'anti']
[u'port', u'thrash', u'west']
[u'prank', u'terror', u'close', u'bridg', u'polic']
[u'protest', u'anger', u'permit', u'denial']
[u'raider', u'maintain', u'unbeaten']
[u'robber', u'blame', u'fatal', u'kyrgyzstan', u'blaze']
[u'robinson', u'deni', u'hell', u'leav', u'leed']
[u'rocket', u'fire', u'najaf']
[u'roo', u'come', u'struggl']
[u'rumsfeld', u'tell', u'syria', u'iran', u'stay']
[u'santana', u'mobi', u'cancel', u'concert', u'sar']
[u'secur', u'council', u'renew', u'food', u'program']
[u'serb', u'polic', u'look', u'milosev', u'wife']
[u'seven', u'miner', u'kill', u'coalmin', u'collaps', u'india']
[u'sever', u'hail', u'storm', u'wreak', u'havoc', u'snowi']
[u'sport', u'posit', u'impact', u'indigen', u'report']
[u'stacker', u'hop', u'king', u'fold', u'pressur']
[u'stanley', u'prize', u'draw', u'divers', u'entri']
[u'stone', u'rock', u'india', u'earlier']
[u'string', u'suppli', u'line', u'threaten', u'baghdad', u'push']
[u'suspect', u'rebel', u'nose', u'kashmir', u'civilian']
[u'suspect', u'rebel', u'kill', u'kashmir']
[u'swan', u'spank', u'blue']
[u'syria', u'deni', u'send', u'militari', u'gear', u'iraq']
[u'syria', u'iran', u'deni', u'help', u'saddam', u'fight']
[u'doctor', u'fear', u'practic', u'rural', u'area']
[u'tasmanian', u'land', u'go', u'song']
[u'ten', u'thousand', u'stage', u'anti', u'protest', u'india']
[u'terrorist', u'pose', u'beggar', u'pose', u'threat']
[u'thanksgiv', u'servic', u'hold', u'vietnam', u'veteran']
[u'serious', u'injur', u'smash']
[u'turf', u'technolog', u'fee', u'world']
[u'turkish', u'hijack', u'arrest', u'passeng', u'free']
[u'turkish', u'hijack', u'end', u'bloodsh']
[u'injur', u'missil', u'hit', u'kuwait']
[u'kill', u'chopper', u'crash']
[u'militari', u'chief', u'deni', u'plan', u'fail']
[u'polic', u'releas', u'arrest', u'anti', u'terrorist']
[u'concern', u'detaine', u'escap', u'ivori', u'coast', u'camp']
[u'launch', u'appeal', u'billion', u'iraq']
[u'strike', u'mosul', u'nasiriyah']
[u'attack', u'militia', u'meet', u'basra']
[u'break', u'terror', u'plot']
[u'chopper', u'kill', u'elit', u'saddam', u'troop']
[u'command', u'prais', u'australian', u'troop']
[u'deni', u'baghdad', u'advanc', u'hold']
[u'forc', u'expel', u'emb', u'journalist']
[u'paper', u'miss', u'journalist', u'baghdad']
[u'plan', u'bomb', u'north', u'east', u'iraqi', u'troop', u'retreat']
[u'revis', u'bomb', u'toll']
[u'say', u'iraq', u'chemic', u'arm', u'trigger', u'line']
[u'soldier', u'najaf', u'suicid', u'bomb']
[u'warplan', u'redeploy', u'turkish', u'base']
[u'vagana', u'anasta', u'sink', u'tiger']
[u'vagana', u'anasta', u'sink', u'tiger', u'warrior', u'raider']
[u'lib', u'hope', u'presid', u'reviv', u'parti']
[u'victorian', u'liber', u'elect', u'presid']
[u'violenc', u'fractur', u'aust', u'peac', u'movement']
[u'vogt', u'see', u'iceland', u'match', u'springboard']
[u'wall', u'street', u'lose', u'grind', u'jitter']
[u'waratah', u'red', u'hoodoo', u'continu']
[u'word', u'rag', u'iraq', u'battl']
[u'waugh', u'admit', u'homesick', u'burden', u'aust']
[u'waugh', u'uncertain', u'futur']
[u'west', u'indi', u'cricket', u'resolv', u'player', u'disput']
[u'extend', u'relief', u'mozambiqu', u'june']
[u'offici', u'die', u'killer', u'respiratori', u'ill']
[u'woman', u'fin', u'declar', u'cash']
[u'world', u'championship', u'team', u'name']
[u'world', u'peac', u'forum', u'promot', u'religi', u'toler']
[u'critic', u'koala', u'conserv', u'plan']
[u'zidan', u'wont', u'captainci', u'head']
[u'zimbabw', u'opposit', u'say', u'mugab', u'parti', u'poll']
[u'kenya', u'replac', u'africa', u'sharjah']
[u'abbott', u'dismiss', u'union', u'cole', u'critic']
[u'arrest', u'australian', u'cambodian', u'crime']
[u'thunder', u'grind', u'assault', u'slow']
[u'jazeera', u'cameraman', u'releas']
[u'american', u'brace', u'longer', u'bloodier', u'fight']
[u'amnesti', u'deliv', u'iraq', u'petit', u'blair']
[u'anti', u'protest', u'drape', u'rome', u'bridg', u'black']
[u'anti', u'protest', u'hunger', u'strike', u'pakistan']
[u'armchair', u'general', u'enjoy', u'saddam', u'mania']
[u'arrest', u'english', u'fan', u'celebr', u'euro']
[u'artilleri', u'hear', u'north', u'qasr']
[u'urg', u'compani', u'test', u'bonus', u'rule']
[u'aust', u'playwright', u'enright', u'die']
[u'australian', u'hold', u'baghdad', u'road']
[u'australian', u'swim', u'move', u'calm', u'travel', u'nerv']
[u'australia', u'groom', u'trail', u'champ']
[u'aust', u'post', u'contract', u'downer']
[u'baghdad', u'brainstorm', u'insult', u'evil', u'invad']
[u'bali', u'survivor', u'return', u'footi', u'field']
[u'bargain', u'hunter', u'snap', u'island', u'home']
[u'basra', u'strike', u'hit', u'baath', u'gather']
[u'beij', u'univers', u'student', u'stage', u'anti', u'protest']
[u'bekel', u'win', u'half', u'cross', u'countri', u'doubl']
[u'blue', u'underlin', u'qualiti', u'kiwi', u'domin', u'super']
[u'drown', u'hinterland', u'properti']
[u'kill', u'accid', u'motorcross', u'event']
[u'british', u'govt', u'apologis', u'execut', u'claim']
[u'brit', u'kill', u'iraqi', u'colonel', u'snatch', u'guard']
[u'bulldog', u'outgun', u'geelong']
[u'bush', u'accus', u'iraq', u'atroc']
[u'canberra', u'woman', u'kill', u'crash']
[u'china', u'allow', u'open', u'protest', u'iraq']
[u'civilian', u'stream', u'basra', u'paus']
[u'claim', u'militia', u'order', u'iraqi', u'soldier']
[u'coalit', u'destroy', u'build', u'baath', u'parti']
[u'coalit', u'forc', u'baghdad', u'bush']
[u'coalit', u'talk', u'domin', u'nat', u'meet']
[u'costello', u'leav', u'chanc', u'deficit', u'open']
[u'crean', u'call', u'price']
[u'crow', u'thump', u'docker']
[u'cwealth', u'stand', u'accc', u'samuel']
[u'daughter', u'appeal', u'inform', u'miss', u'mother']
[u'dawn', u'bomb', u'shake', u'baghdad', u'shell', u'frontlin']
[u'death', u'toll', u'hit', u'turkish', u'factori', u'collaps']
[u'decis', u'helmet', u'come', u'closer']
[u'demon', u'hang', u'death']
[u'doctor', u'claim', u'success', u'blind', u'germ']
[u'duel', u'pool', u'loom', u'side', u'affair']
[u'earthquak', u'jolt', u'northern', u'pakistan']
[u'east', u'anglian', u'club', u'premier', u'leagu', u'play', u'off']
[u'emb', u'journalist', u'face', u'tough', u'task']
[u'england', u'pay', u'tour', u'ahead']
[u'england', u'goodwil', u'payment']
[u'eriksson', u'confid', u'england', u'step']
[u'fear', u'grip', u'killer', u'pneumonia', u'spread']
[u'feder', u'govt', u'fund', u'feral', u'control', u'scheme']
[u'fierc', u'bomb', u'raid', u'baghdad']
[u'finnish', u'cop', u'success', u'smuggl', u'fight']
[u'british', u'dead', u'arriv', u'home']
[u'case', u'killer', u'pneumonia', u'york']
[u'forc', u'reshap', u'iraq', u'track']
[u'forest', u'fire', u'blaze', u'north', u'eastern', u'china']
[u'forestri', u'protest', u'boycott', u'art', u'festiv']
[u'minist', u'want', u'troop', u'iraq']
[u'kill', u'injur', u'build', u'collaps']
[u'franc', u'scotland', u'nation', u'campaign']
[u'franc', u'shine', u'gun', u'stutter']
[u'french', u'coach', u'prais', u'scrumbas']
[u'golden', u'mask', u'festiv', u'make', u'case', u'russian']
[u'govern', u'india', u'tour', u'pakistan']
[u'govt', u'ansett', u'levi']
[u'grant', u'injur', u'bulldog', u'crow', u'demon', u'triumph']
[u'gunmen', u'threaten', u'mcdonald', u'staff']
[u'harrington', u'haa', u'lead', u'player', u'tiger', u'lurk']
[u'hodgson', u'seal', u'doubl', u'phillip', u'island']
[u'hodgson', u'take', u'race', u'phillip', u'island']
[u'hollingworth', u'prais', u'troop', u'famili', u'barbi']
[u'hollywood', u'take', u'seat', u'theatr']
[u'howard', u'hollingworth', u'meet', u'familii']
[u'human', u'shield', u'jordan', u'baghdad', u'expuls']
[u'impoverish', u'iraqi', u'scaveng', u'spoil']
[u'indian', u'polic', u'kill', u'suspect', u'milit', u'bombay']
[u'indonesian', u'believ', u'protest', u'iraq']
[u'investig', u'begin', u'fatal', u'gyrocopt', u'crash']
[u'iran', u'ambassador', u'critic', u'rumsfeld', u'strategi']
[u'iran', u'wont', u'regim', u'post', u'iraq']
[u'iraq', u'claim', u'coalit', u'plane', u'helicopt', u'shoot']
[u'iraq', u'deni', u'claim', u'atroc']
[u'iraqi', u'fisherman', u'danc', u'down', u'plane']
[u'iraqi', u'kurd', u'consolid', u'posit', u'near']
[u'iraqi', u'tactic', u'forese', u'plan']
[u'iraqi', u'show', u'saddam', u'chair', u'meet']
[u'iraq', u'kill', u'defect', u'soldier', u'dissid']
[u'iraq', u'reject', u'renew', u'food', u'resolut']
[u'iraq', u'say', u'arab', u'iraq', u'martyrdom']
[u'iraq', u'guerrilla', u'tactic', u'unexpect', u'hill']
[u'iraq', u'threaten', u'regular', u'suicid', u'attack']
[u'iraq', u'warn', u'suicid', u'attack']
[u'isra', u'troop', u'kill', u'youth', u'west', u'bank', u'wit']
[u'jagera', u'celebr', u'bora', u'restor']
[u'journalist', u'forc', u'forbid']
[u'kenya', u'down', u'australia', u'shock']
[u'killer', u'pneumonia', u'hold', u'hong', u'kong', u'sieg']
[u'kroger', u'aim', u'restor', u'lib', u'credibl']
[u'labor', u'declar', u'need', u'deficit']
[u'lewi', u'tyson', u'victor', u'fight', u'klitschko']
[u'liber', u'need', u'compass', u'doyl']
[u'ludicr', u'plan', u'threaten', u'human', u'right', u'council']
[u'kill', u'stab', u'attack', u'melbourn']
[u'mcgeechan', u'bow', u'nation', u'winner']
[u'melbourn', u'charg', u'murder']
[u'mexican', u'think', u'fight', u'bring']
[u'michael', u'jackson', u'hail', u'foolish', u'american']
[u'misfir', u'tomahawk', u'land', u'saudi', u'arabia']
[u'miss', u'children']
[u'miss', u'journalist', u'safe', u'baghdad']
[u'moon', u'ballad', u'win', u'dubai', u'world']
[u'blast', u'rock', u'baghdad', u'ministri']
[u'moya', u'stand', u'agassi', u'sixth', u'biscayn']
[u'museum', u'celebr', u'year', u'gogh']
[u'museum', u'start', u'engin', u'fremantl']
[u'nat', u'expect', u'leadership', u'tussl', u'hand']
[u'nazon', u'win', u'criterium', u'intern', u'stage']
[u'nicklaus', u'compet', u'master']
[u'charg', u'nightclub', u'brawl']
[u'evid', u'qaeda', u'link', u'forc', u'southern']
[u'excus', u'deficit', u'labor']
[u'trace', u'funni', u'fuel']
[u'nat', u'face', u'leadership', u'spill']
[u'student', u'level', u'microscop']
[u'paper', u'suspect', u'baghdad', u'base', u'journo', u'hold']
[u'cartel', u'deni', u'back']
[u'kill', u'injur', u'smash']
[u'opposit', u'call', u'troop', u'deploy', u'date']
[u'panther', u'upset', u'rooster', u'thriller']
[u'panther', u'upset', u'rooster', u'shark', u'match', u'bronco']
[u'patterson', u'encourag', u'shoot', u'elder']
[u'pentagon', u'pleas', u'emb', u'experi']
[u'perth', u'march', u'downpour', u'wettest', u'decad']
[u'pharaoh', u'stay', u'aliv', u'african', u'nation']
[u'polic', u'charg', u'woman', u'death']
[u'pope', u'fear', u'iraq', u'mean', u'religi']
[u'power', u'glori']
[u'power', u'glori']
[u'protest', u'urg', u'disrupt', u'anzac', u'servic']
[u'protest', u'renew', u'worldwid', u'public', u'fear', u'long']
[u'qualifi', u'euro', u'littl', u'clearer']
[u'road', u'train', u'roll', u'record', u'book']
[u'rumsfeld', u'accus', u'micromanag']
[u'saddam', u'lose', u'control', u'iraq', u'say', u'bush']
[u'saddam', u'near', u'prime', u'report']
[u'saddam', u'sack', u'command']
[u'africa', u'woman', u'nab', u'steal', u'babi', u'year']
[u'sailor', u'hail', u'best', u'game', u'switch']
[u'saudi', u'moran', u'bomber', u'citizen']
[u'scientist', u'track', u'impact', u'european', u'wasp']
[u'serb', u'polic', u'milosev', u'wife', u'russia']
[u'serena', u'overcom', u'slow', u'start', u'swamp', u'birthday', u'girl']
[u'sever', u'hailstorm', u'rip', u'northern']
[u'sever', u'storm', u'unroof', u'hous', u'north', u'coast']
[u'shark', u'cat', u'entertain', u'thriller']
[u'shark', u'match', u'bronco']
[u'shark', u'rock', u'spirit']
[u'shark', u'rock', u'spirit', u'power', u'glori']
[u'singapor', u'report', u'death', u'pneumonia', u'virus']
[u'korea', u'seek', u'sino', u'soviet', u'help', u'north']
[u'sprinbok', u'kenya', u'giant', u'kill', u'seven']
[u'springborg', u'take', u'bite', u'beatti']
[u'squar', u'west', u'bank', u'name', u'iraqi', u'suicid']
[u'storm', u'dump', u'rain', u'perth']
[u'suicid', u'blast', u'wound', u'israel']
[u'suicid', u'bomb', u'injur', u'israel']
[u'teacher', u'urg', u'minist', u'focus', u'aborigin']
[u'teen', u'show', u'pros', u'final', u'threesom']
[u'terrifi', u'iraq', u'famili', u'catch', u'confus', u'firefight']
[u'terror', u'grip', u'kashmir', u'villag', u'attack']
[u'thousand', u'turn', u'anti', u'protest']
[u'miss', u'western', u'iraq', u'reach', u'syria']
[u'thunderstorm', u'tear', u'southern']
[u'treatment', u'trigger', u'diabet', u'inhibit']
[u'truck', u'ram', u'soldier', u'kuwait', u'injur']
[u'turkey', u'issu', u'warn', u'iraq']
[u'injur', u'motorbik', u'accid']
[u'leav', u'kuwait', u'southern', u'iraq']
[u'union', u'help', u'abbott', u'say']
[u'sanction', u'attack', u'poll']
[u'britain', u'recruit', u'inspector', u'help']
[u'command', u'prais', u'australian', u'troop']
[u'cruis', u'missil', u'fall', u'saudi', u'arabia']
[u'death', u'toll', u'rise', u'marin']
[u'grind', u'forc', u'prepar', u'assault', u'baghdad']
[u'guilti', u'state', u'terror', u'iraqi', u'north']
[u'marin', u'fierc', u'nasiriyah', u'firefight']
[u'move', u'bolster', u'suppli', u'line', u'secur', u'iraq']
[u'offici', u'defens', u'strategi']
[u'overcom', u'sniper', u'guerrilla', u'kifl']
[u'plan', u'pound', u'suspect', u'taliban', u'hideout']
[u'reinforc', u'face', u'earlier', u'deploy']
[u'satellit', u'monitor', u'shuttl', u'mission']
[u'soldier', u'face', u'barrag', u'critic', u'turkey']
[u'soldier', u'iraq', u'ask', u'pray', u'bush']
[u'spokesman', u'lower', u'death', u'toll', u'suicid', u'attack']
[u'govt', u'consid', u'direct', u'debit', u'fin']
[u'oppn', u'critic', u'prison', u'releas', u'figur']
[u'violenc', u'ahead', u'zimbabw', u'opposit', u'deadlin']
[u'virus', u'death', u'toll', u'rise', u'world', u'wait', u'news']
[u'vote', u'begin', u'zimbabw', u'elect']
[u'plan', u'say', u'general']
[u'track', u'say', u'general']
[u'warplan', u'republican', u'guard', u'fuel', u'suppli']
[u'present', u'massiv', u'crisi', u'airlin']
[u'traumatis', u'iraqi', u'children', u'unicef']
[u'caus', u'civilian', u'crisi', u'invas', u'forc']
[u'west', u'clear', u'stomp']
[u'western', u'stage', u'beij', u'anti', u'march']
[u'wifi', u'futur', u'unclear', u'despit', u'asian', u'uptak']
[u'woodward', u'urg', u'warhors', u'mount', u'push']
[u'young', u'heart', u'seek', u'date', u'birthday']
[u'zimbabw', u'tour', u'england', u'ahead']
[u'zimbabw', u'vote', u'second', u'elect']
[u'strike', u'israel', u'budget', u'cut']
[u'year', u'custodi', u'stab', u'murder']
[u'accc', u'proceed', u'legal', u'action', u'fuel']
[u'oppn', u'introduc', u'tougher', u'sentenc', u'law']
[u'resid', u'ask', u'watch', u'water']
[u'actu', u'take', u'minimum', u'wage', u'fight']
[u'agassi', u'pressur', u'hewitt', u'world', u'number']
[u'age', u'hear', u'melbourn', u'today']
[u'offer', u'join', u'politician', u'aborigin']
[u'forc', u'imageri', u'analyst', u'gulf', u'bind']
[u'alleg', u'serial', u'killer', u'confess', u'prision']
[u'alli', u'advanc', u'iraq']
[u'art', u'centr', u'facelift']
[u'govern', u'guidelin', u'open', u'abus']
[u'atkinson', u'harrop', u'crown', u'aust', u'triathlon', u'champ']
[u'atsic', u'blame', u'indigen', u'health', u'unfair', u'robinson']
[u'aussi', u'prim', u'reclaim', u'test', u'spot']
[u'australian', u'professor', u'head', u'sar', u'team', u'hanoi']
[u'australian', u'soldier', u'charg', u'drug', u'offenc']
[u'australia', u'prepar', u'biolog', u'chemic', u'threat']
[u'weekend', u'coast', u'leagu', u'team']
[u'baildon', u'welcom', u'daylight', u'save']
[u'battl', u'basra', u'rag']
[u'beekeep', u'welcom', u'sticki', u'yield']
[u'bomb', u'residenti', u'area', u'baghdad', u'report']
[u'bridg', u'closur', u'continu', u'disrupt', u'rail', u'servic']
[u'britain', u'silent', u'conscienti', u'objector', u'claim']
[u'british', u'troop', u'chemic', u'warfar', u'equip']
[u'british', u'report', u'dead', u'northern', u'iraq']
[u'break', u'hill', u'salin', u'level', u'rise']
[u'bushfir', u'school', u'support', u'packag']
[u'cairn', u'swimmer', u'youngest', u'aussi', u'team']
[u'countri', u'doctor', u'boost']
[u'wide', u'plan', u'protect', u'koala']
[u'govt', u'waiv', u'insur', u'stamp', u'duti']
[u'wild', u'aerial', u'bait', u'nation', u'park']
[u'canada', u'record', u'fourth', u'death', u'killer', u'virus']
[u'caravan', u'park', u'win', u'tourism', u'award']
[u'chamber', u'back', u'tuna', u'farm', u'trial', u'plan']
[u'charg', u'upgrad', u'murder']
[u'children', u'court', u'demolit', u'face', u'delay']
[u'clark', u'reject', u'pressur', u'stand', u'asid']
[u'confer', u'leav', u'hotel', u'room']
[u'cook', u'backped', u'anti', u'comment']
[u'council', u'look', u'forward', u'aldoga', u'hous', u'talk']
[u'council', u'withdraw', u'residenti', u'land', u'sale']
[u'countri', u'hospit', u'surgeri', u'wait', u'list', u'rise']
[u'countri', u'hospit', u'wait', u'list', u'rise']
[u'dawkin', u'fin', u'grass']
[u'dawn', u'raid', u'pound', u'baghdad']
[u'decis', u'expect', u'delaney', u'appeal']
[u'delaney', u'allow', u'play']
[u'delaney', u'reliev', u'netbal', u'australia', u'decis']
[u'dengu', u'fever', u'case', u'increas']
[u'desert', u'grave', u'invad', u'sabri']
[u'doctor', u'say', u'sar', u'vaccin', u'long']
[u'doctor', u'better', u'treatment', u'cataract']
[u'downer', u'meet', u'offici', u'post', u'iraq']
[u'dri', u'fruit', u'grower', u'predict', u'exit', u'industri']
[u'driver', u'question', u'fatal', u'crash']
[u'educ', u'environ', u'liber']
[u'egypt', u'find', u'oldest', u'evid', u'mummif']
[u'elder', u'anti', u'activist', u'alleg', u'polic', u'assault']
[u'elura', u'worker', u'return', u'work', u'today']
[u'emerg', u'crew', u'search', u'scout']
[u'england', u'crush', u'ireland', u'seal', u'grand', u'slam']
[u'experiment', u'treatment', u'strike', u'blow']
[u'farmer', u'celebr', u'weekend', u'rain']
[u'flood', u'what']
[u'firm', u'offer', u'assur', u'plan', u'smelter']
[u'firm', u'offer', u'assur', u'plan', u'smelter']
[u'contact', u'republican', u'guard']
[u'flight', u'plan', u'consid', u'complex']
[u'saddam', u'aid', u'predict', u'rapid', u'downfal']
[u'fossil', u'offer', u'evid', u'dinosaur']
[u'fresh', u'blast', u'anti', u'aircraft', u'baghdad']
[u'friend', u'survivor', u'critic', u'soldier']
[u'frontlin', u'journalist', u'iraq', u'face', u'tough', u'time']
[u'general', u'frank', u'kuwait', u'trip']
[u'global', u'market', u'sober', u'fear', u'long', u'iraq']
[u'gold', u'work', u'start', u'later', u'year']
[u'graham', u'call', u'bush', u'decis', u'make']
[u'grant', u'season']
[u'grind', u'troop', u'close', u'baghdad']
[u'group', u'reject', u'mall', u'claim']
[u'hailstorm', u'damag', u'assess', u'tumut']
[u'hand', u'grenad', u'near', u'bosnian', u'coca', u'cola', u'plant']
[u'health', u'union', u'call', u'secur', u'upgrad']
[u'hill', u'keen', u'clear', u'privileg', u'committe']
[u'histor', u'review', u'death']
[u'hous', u'block', u'quarantin', u'sar', u'outbreak']
[u'hong', u'kong', u'hous', u'block', u'quarantin']
[u'hostel', u'hop', u'agreement', u'nurs', u'disput']
[u'huge', u'firebal', u'baghdad']
[u'illeg', u'fisherman', u'get', u'jail', u'term']
[u'indian', u'troop', u'kill', u'member', u'kashmir', u'rebel']
[u'inquest', u'begin', u'death']
[u'iraqi', u'endorsen', u'suicid', u'bomber', u'remark']
[u'iraqi', u'buy', u'anti', u'tank', u'missil', u'secret', u'report']
[u'iraqi', u'claim', u'tank', u'helicopt', u'destroy']
[u'iraqi', u'sell', u'coalit', u'food', u'british', u'soldier']
[u'iraqi', u'televis', u'bomb']
[u'iraqi', u'weapon', u'mass', u'destruct', u'hide']
[u'iraq', u'chief', u'spin', u'doctor', u'arm', u'media', u'battl']
[u'iraq', u'produc', u'laden', u'mubarak']
[u'commiss', u'ask', u'increas', u'minimum', u'wage']
[u'islam', u'jihad', u'claim', u'netanya', u'suicid', u'bomb']
[u'king', u'townsvill', u'croc', u'season']
[u'landhold', u'want', u'quick', u'resolut', u'drainag']
[u'lawyer', u'confid', u'minist', u'prevent', u'deport']
[u'liber', u'happi', u'adopt', u'petit']
[u'love', u'take', u'player', u'championship']
[u'turnout', u'mark', u'start', u'elect', u'africa']
[u'charg', u'petrol', u'station', u'robberi']
[u'charg', u'caryard', u'damag']
[u'face', u'extradit', u'hear', u'cambodian']
[u'face', u'court', u'land', u'council', u'offic', u'blaze']
[u'melbourn', u'firm', u'ban', u'spectrometr', u'export']
[u'meunier', u'lebouc', u'take', u'women', u'major', u'year']
[u'migrat', u'number', u'remain', u'static', u'govt']
[u'milosev', u'court', u'health', u'problem']
[u'milosev', u'daughter', u'say']
[u'minist', u'resign', u'put', u'heat', u'japanes']
[u'baxter', u'children', u'begin', u'school', u'today']
[u'pakistani', u'ralli', u'iraq']
[u'miss', u'nigeria', u'polit', u'ralli']
[u'arab', u'isra', u'ralli', u'support']
[u'moroccan', u'suicid', u'attack', u'anger', u'flare']
[u'motocross', u'accid', u'put', u'critic', u'condit']
[u'urg', u'minist', u'push', u'insur', u'claim']
[u'gambier', u'rais', u'cancer', u'foundat', u'fund']
[u'nat', u'leadership', u'challeng', u'heat']
[u'navi', u'look', u'suicid', u'boat']
[u'fire', u'peter', u'arnett', u'iraqi', u'interview']
[u'korea', u'issu', u'bond', u'boost', u'economi', u'defenc']
[u'anti', u'protest', u'organis', u'anzac', u'ralli']
[u'role', u'australia', u'post', u'saddam', u'downer']
[u'north', u'american', u'health', u'offici', u'worri']
[u'govt', u'grant', u'boost', u'nimbin']
[u'dentist', u'greater', u'incent']
[u'minist', u'urg', u'tourism', u'push']
[u'oppn', u'want', u'centrelink', u'chang', u'payment']
[u'author', u'win', u'fiction', u'prize', u'rugbi', u'tale']
[u'honour', u'hillari', u'year']
[u'suspend', u'loos', u'tobacco', u'sale']
[u'firm', u'consid', u'cliff', u'head', u'product']
[u'dead', u'injur', u'polish', u'match', u'violenc']
[u'pair', u'arrest', u'tavern', u'raid']
[u'palestinian', u'milit', u'send', u'suicid', u'bomber', u'iraq']
[u'pentagon', u'updat', u'offici', u'casualti', u'figur']
[u'philippoussi', u'major', u'davi', u'role', u'masur']
[u'polic', u'commission', u'welcom', u'minist']
[u'polic', u'crack', u'drink', u'drive']
[u'policeman', u'breath', u'difficulti', u'prompt']
[u'pooch', u'accus', u'tuck', u'lose', u'titl']
[u'powel', u'warn', u'syria', u'iran', u'drop', u'terror', u'support']
[u'power', u'restor', u'home']
[u'premier', u'open', u'esplanad', u'lagoon', u'develop']
[u'promina', u'float', u'despit', u'uncertainti']
[u'protest', u'stone', u'truck', u'carri', u'equip']
[u'protest', u'organis', u'deni', u'anzac', u'target']
[u'public', u'urg', u'shoot']
[u'farmer', u'drought', u'pest', u'control', u'fund']
[u'quinn', u'guest', u'nat', u'meet', u'amidst', u'coalit', u'talk']
[u'raaf', u'jet', u'bomb', u'target', u'south', u'baghdad']
[u'racq', u'hop', u'central', u'fuel', u'price', u'fall', u'soon']
[u'research', u'identifi', u'parkinson', u'treatment']
[u'resid', u'urg', u'enrol', u'elect']
[u'rocket', u'hit', u'kabul', u'peacekeep', u'complex']
[u'roof', u'tear', u'wild', u'northern', u'storm']
[u'rumour', u'uncertainti', u'rank']
[u'rumsfeld', u'defend', u'plan']
[u'confid', u'time', u'fisheri']
[u'saddam', u'promot', u'suicid', u'bomber', u'posthum']
[u'sar', u'claim', u'fourth', u'canadian', u'victim']
[u'scar', u'killer', u'virus', u'wash', u'hand', u'expert']
[u'school', u'clean', u'contract', u'criticis']
[u'scout', u'winch', u'safeti']
[u'search', u'underway', u'miss', u'tourist']
[u'senat', u'air', u'rural', u'doctor', u'shortag', u'concern']
[u'offend', u'face', u'extradit']
[u'shadow', u'uncertain', u'hang', u'ord']
[u'sign', u'time', u'grow', u'industri', u'estat']
[u'singapor', u'report', u'death', u'pneumonia', u'virus']
[u'kill', u'afghan', u'landmin', u'blast']
[u'teenag', u'charg', u'stab']
[u'srebrenica', u'massacr', u'survivor', u'return', u'buri']
[u'stoner', u'win', u'nation', u'leadership']
[u'suicid', u'bomber', u'gift', u'iraq', u'milit', u'group', u'say']
[u'suicid', u'bomber', u'head', u'iraq']
[u'support', u'eurobodalla', u'sister', u'citi', u'plan']
[u'syrian', u'arriv', u'mosul', u'fight', u'iraq']
[u'govt', u'urg', u'continu', u'dredg']
[u'tasmania', u'celebr', u'cultur', u'divers']
[u'tasmanian', u'troop', u'famili']
[u'technolog', u'project', u'fund', u'boost']
[u'tender', u'close', u'host', u'lifesav', u'championship']
[u'charg', u'high', u'tackl']
[u'troop', u'helicopt', u'crash']
[u'toughest', u'ahead']
[u'townsvill', u'host', u'wallabi', u'world', u'train']
[u'troop', u'await', u'assault', u'baghdad']
[u'truck', u'ram', u'soldier', u'kuwait']
[u'kill', u'missil', u'hit', u'farm', u'near', u'baghdad']
[u'arrest', u'brisban', u'airport', u'drug', u'seizur']
[u'claim', u'captur', u'iraqi', u'general', u'near', u'basra']
[u'commando', u'claim', u'success', u'basra', u'suburb']
[u'minist', u'condemn', u'cook', u'withdraw', u'push']
[u'union', u'protest', u'fin', u'assault', u'offici']
[u'union', u'welcom', u'childhood', u'educ', u'centr', u'reopen']
[u'conduct', u'pilbara', u'studi']
[u'truck', u'drink', u'water', u'iraq']
[u'chief', u'apologis', u'friend', u'incid']
[u'general', u'say', u'access', u'american', u'pow']
[u'marin', u'secur', u'southern', u'euphrat', u'river']
[u'marin', u'storm', u'town', u'target', u'chemic']
[u'public', u'accept', u'death', u'poll']
[u'releas', u'detail', u'massiv', u'iraqi']
[u'step', u'northern', u'bomb', u'campaign']
[u'target', u'potenti', u'terrorist', u'base']
[u'time', u'launch', u'save', u'iraqi', u'well']
[u'troop', u'strict', u'iraqi', u'suicid']
[u'warn', u'sharpen', u'syria', u'iraq', u'dilemma']
[u'plan', u'fail', u'arnett', u'tell', u'iraq']
[u'vandal', u'target', u'tingha', u'school']
[u'govt', u'urg', u'rail', u'line']
[u'govt', u'prais', u'shire', u'fight', u'elector']
[u'spark', u'north', u'coast', u'racial', u'discrimin']
[u'sar', u'forc', u'cancel', u'flight']
[u'wash', u'machin', u'spark', u'blaze']
[u'water', u'restrict', u'lift', u'south']
[u'welcom', u'hell', u'isra', u'tell', u'suicid', u'bomb']
[u'woodchip', u'green', u'assess', u'spark', u'appeal']
[u'zimbabw', u'polic', u'surround', u'mugab', u'home', u'opposit']
[u'say', u'deal', u'stave', u'bankruptci']
[u'aborigin', u'chang', u'local', u'waterway']
[u'govt', u'reap', u'windfal', u'land', u'develop']
[u'health', u'profession', u'walk']
[u'take', u'budget', u'prioriti', u'treasur']
[u'talk', u'poor', u'poll', u'result']
[u'confirm', u'stanbrok', u'sale', u'plan']
[u'expect', u'stanbrok', u'tender']
[u'anasta', u'fractur', u'sternum']
[u'ansett', u'levi', u'remain', u'cabinet']
[u'anti', u'protest', u'ban', u'canberra']
[u'ardil', u'blame', u'race', u'defeat', u'fate']
[u'armi', u'deni', u'rampant', u'drug', u'abus']
[u'master', u'organis']
[u'astro', u'help', u'rebuild', u'iraq']
[u'atsic', u'commission', u'want', u'justic', u'deal']
[u'aussi', u'king', u'coach', u'windi', u'lara', u'appoint']
[u'aust', u'shrug', u'sar']
[u'australia', u'readi', u'mysteri', u'virus', u'doctor']
[u'aust', u'foreign', u'polici', u'base', u'integr', u'case']
[u'bail', u'refus', u'baxter', u'detaine']
[u'bank', u'fail', u'boost', u'ord']
[u'bendigo', u'mayor', u'farewel', u'council']
[u'blaze', u'damag', u'nimmitabel', u'hotel']
[u'boucher', u'drop', u'protea', u'vice', u'captain']
[u'bridg', u'closur', u'spark', u'commut', u'woe']
[u'britain', u'power', u'strip', u'citizenship']
[u'britain', u'mirror', u'hire', u'fire', u'journalist']
[u'british', u'land', u'near', u'mosul', u'thwart', u'iraq', u'say']
[u'bulli', u'jail', u'murder', u'tormentor']
[u'bush', u'blame', u'saddam', u'iraqi', u'civilian', u'death']
[u'busi', u'urg', u'address', u'indigen', u'unemploy']
[u'health', u'portfolio', u'return', u'atsic']
[u'candid', u'urg', u'state', u'marina', u'develop', u'stanc']
[u'checkpoint', u'death', u'tragic']
[u'civoniceva', u'prepar', u'accept']
[u'claim', u'govt', u'want', u'increas', u'budget']
[u'club', u'confid', u'rule', u'lockout', u'plan']
[u'report', u'volker', u'case']
[u'colleg', u'welcom', u'athlet', u'track', u'fund']
[u'colombia', u'ban', u'shirt', u'lift', u'goal', u'celebr']
[u'comedi', u'steal', u'wartim', u'offic']
[u'communiti', u'input', u'seek', u'grandstand', u'name']
[u'concern', u'air', u'grape', u'grower', u'overbook']
[u'concern', u'air', u'volunt', u'firefight', u'cost']
[u'confer', u'focus', u'indigen', u'develop']
[u'cosgrov', u'disappoint']
[u'cost', u'heroin', u'addict', u'mount']
[u'council', u'chang', u'stock', u'grid', u'polici']
[u'council', u'consid', u'communiti', u'patrol']
[u'council', u'hold', u'back', u'electron', u'point', u'sale']
[u'council', u'reject', u'develop', u'hold', u'claim']
[u'council', u'seek', u'meet', u'minist', u'insur']
[u'counterfeit', u'money', u'break', u'hill']
[u'court', u'dismiss', u'appeal', u'land', u'clear']
[u'court', u'tell', u'confess', u'murder', u'inmat']
[u'cousinss', u'brownlow', u'hop', u'sink', u'week']
[u'cousin', u'scott', u'face', u'tribun']
[u'cuban', u'airlin', u'hijack', u'offici']
[u'cwealth', u'unsur', u'potenti', u'iraqi', u'refuge', u'influx']
[u'damag', u'linger', u'dose', u'ray', u'studi']
[u'death', u'toll', u'chines', u'blast', u'rise']
[u'dengu', u'fever', u'case', u'report', u'townsvill']
[u'doctor', u'urg', u'vulner', u'vaccin']
[u'dont', u'dumb', u'whale', u'valu', u'greenpeac', u'say']
[u'dont', u'kill', u'rooney', u'warn', u'england', u'player']
[u'downer', u'meet', u'powel', u'tour']
[u'downer', u'say', u'solv', u'north', u'korea', u'crisi']
[u'drought', u'stricken', u'farmer', u'explor', u'timber']
[u'east', u'timor', u'fragil', u'worker', u'return', u'gusmao']
[u'emerg', u'land', u'haze', u'report', u'qanta']
[u'england', u'insist', u'theyll', u'leav', u'turk', u'cold']
[u'environ', u'collabor', u'assist', u'sustain']
[u'export', u'slump', u'creat', u'trade', u'blow']
[u'farm', u'hand', u'legisl', u'parliament']
[u'feder', u'put', u'major', u'ahead', u'davi']
[u'firewe', u'caus', u'concern', u'bega', u'valley']
[u'fletcher', u'match', u'high', u'tackl']
[u'virus', u'contagi', u'think']
[u'fresh', u'strike', u'saddam', u'palac']
[u'fulham', u'rule', u'oleari', u'manag', u'post']
[u'fund', u'help', u'environ', u'recov', u'drought']
[u'lesbian', u'communiti', u'embrac', u'reform']
[u'germani', u'plan', u'green', u'world']
[u'goulburn', u'murray', u'water', u'urg', u'caravan', u'park']
[u'group', u'meet', u'discuss', u'wetland', u'futur']
[u'heavi', u'rain', u'doesnt', u'affect', u'water', u'suppli', u'qualiti']
[u'henri', u'latest', u'withdraw', u'duel', u'pool']
[u'histor', u'aramac', u'train', u'return', u'home']
[u'evacu', u'resid', u'virus', u'apart']
[u'hobbit', u'visionari', u'go', u'king', u'kong']
[u'hospit', u'ward', u'reopen']
[u'hostel', u'fund', u'spotlight', u'icpa', u'confer']
[u'howard', u'dodg', u'hobart', u'protest']
[u'human', u'shield', u'describ', u'sicken', u'scene']
[u'human', u'shield', u'remain', u'iraq', u'woman']
[u'improv', u'region', u'viabil', u'summit', u'agenda']
[u'independ', u'school', u'defend', u'anti', u'bulli', u'polici']
[u'indigen', u'unemploy', u'reach', u'crisi', u'welfar']
[u'indonesian', u'bomb', u'fail', u'pierc', u'pipelin']
[u'injur', u'gronkjaer', u'poulsen', u'pull', u'danish', u'squad']
[u'approv', u'beij', u'game', u'logo']
[u'iraqi', u'fighter', u'kill', u'checkpoint']
[u'iraqi', u'missil', u'fire', u'coalit', u'forc']
[u'iraq', u'report', u'fierc', u'fight', u'nasiriya']
[u'israel', u'say', u'syria', u'smuggl', u'arm', u'iraq']
[u'jabiru', u'futur', u'announc', u'today']
[u'japan', u'retract', u'korean', u'missil', u'claim']
[u'kamal', u'sack', u'bangladesh', u'coach']
[u'killer', u'threat', u'postpon', u'mayor', u'china', u'trip']
[u'kiwi', u'campaign', u'snare', u'olonga', u'club', u'team']
[u'lack', u'desir', u'hold', u'safin', u'coach', u'say']
[u'lack', u'fund', u'drought', u'scheme']
[u'lara', u'reappoint', u'west', u'indi', u'captain']
[u'lawyer', u'give', u'reunit', u'famili']
[u'leagu', u'club', u'meet', u'postpon']
[u'leaney', u'miss', u'master', u'berth']
[u'leed', u'hop', u'chairman']
[u'lib', u'claim', u'willoughbi', u'recount', u'order']
[u'lib', u'wont', u'contest', u'legisl', u'council', u'elect']
[u'lomu', u'miss', u'week', u'kidney', u'problem']
[u'love', u'take', u'player', u'championship']
[u'charg', u'bank', u'robberi']
[u'face', u'extort', u'charg', u'bail', u'renew']
[u'fin', u'explos', u'firearm']
[u'hold', u'peopl', u'hostag', u'plane', u'cuba']
[u'maralinga', u'clean', u'safe', u'possibl', u'scientif']
[u'masur', u'warn', u'sweden', u'form', u'hewitt']
[u'matthew', u'hit', u'salari', u'critic']
[u'mayor', u'confid', u'coast', u'continu', u'host']
[u'melbourn', u'osaka', u'sailor', u'rescu', u'hit']
[u'mexico', u'presid', u'secur', u'council']
[u'east', u'welcom', u'humanitarian', u'support', u'cross']
[u'millar', u'undergo', u'surgeri']
[u'miss', u'teen', u'famili', u'meet', u'polic']
[u'moora', u'consid', u'basin', u'stop', u'flood']
[u'fire', u'spark', u'lightn']
[u'reduc', u'japanes', u'beef', u'tariff']
[u'say', u'nomin', u'chair', u'hill', u'probe']
[u'urg', u'nat', u'leader', u'coalit']
[u'nauru', u'presid', u'suffer', u'heart', u'attack']
[u'navi', u'ship', u'return', u'home']
[u'say', u'controversi', u'wont', u'overshadow', u'work']
[u'saleyard', u'centr', u'open', u'friday']
[u'yorker', u'admit', u'reveng', u'kill', u'grocer']
[u'charg', u'natrass', u'maller', u'affair']
[u'doctor', u'afraid', u'darwin', u'miss', u'bulk']
[u'korea', u'fire', u'anti', u'ship', u'missil']
[u'polic', u'servic', u'scrutini']
[u'deni', u'anti', u'stanc', u'embarrass']
[u'iaea', u'check', u'nuclear', u'program', u'elbaradei']
[u'orica', u'take', u'ownership']
[u'palac', u'chairman', u'order', u'player', u'clearout']
[u'parliamentari', u'stoush', u'nambour', u'hospit']
[u'pink', u'snapper', u'shark', u'bay', u'eastern', u'gulf']
[u'plan', u'alcohol', u'summit', u'welcom']
[u'polic', u'discov', u'wimmera', u'burglari']
[u'polic', u'search', u'bushland', u'clue', u'man', u'death']
[u'powel', u'note', u'saddam', u'human', u'right', u'abus']
[u'presid', u'chile', u'central', u'bank', u'resign', u'amid']
[u'pressur', u'mount', u'council', u'water', u'conserv']
[u'public', u'manag', u'program']
[u'summit', u'postpon', u'sar', u'threat']
[u'quarantin', u'measur', u'boost', u'sar', u'fight']
[u'rail', u'line', u'get', u'major', u'revamp']
[u'ranger', u'recruit', u'turkish', u'striker', u'alpolfo']
[u'record', u'water', u'storag']
[u'resid', u'urg', u'support', u'come', u'rail', u'servic']
[u'william', u'win', u'boot']
[u'rumour', u'stanbrok', u'sale', u'attract', u'huge', u'buyer']
[u'saddam', u'deni', u'famili', u'member', u'flee', u'abroad']
[u'find', u'irrevers', u'unfit', u'screen']
[u'rural', u'confid', u'highest', u'australia', u'survey']
[u'dismiss', u'suggest', u'poor', u'moral']
[u'show', u'film', u'irrevers']
[u'schnyder', u'slide', u'continu', u'dechi', u'advanc']
[u'school', u'group', u'put', u'weight', u'fundrais', u'fight']
[u'scott', u'latest', u'player', u'face', u'tribun']
[u'senior', u'plan', u'offic', u'appoint', u'kimberley']
[u'seven', u'face', u'opal', u'squad']
[u'snake', u'bite', u'put', u'hospit']
[u'southcorp', u'lose']
[u'state', u'trial', u'reduc', u'feral', u'number']
[u'storm', u'lose', u'player', u'injuri']
[u'super', u'loss', u'pressur', u'cost', u'hous']
[u'survey', u'find', u'smaller', u'forest', u'area']
[u'swazi', u'correspond', u'play', u'safe', u'safe']
[u'teenag', u'charg', u'offenc', u'grant', u'bail']
[u'time', u'run', u'drought', u'relief', u'govt']
[u'saudi', u'minist', u'urg', u'saddam', u'quit']
[u'train', u'derail', u'inquiri', u'begin', u'today']
[u'tranquilis', u'prompt', u'shoot', u'scare']
[u'boy', u'discharg', u'hospit', u'sar', u'scare']
[u'urg', u'friend', u'trade', u'europ']
[u'food', u'program', u'face', u'massiv', u'iraq', u'oper']
[u'assur', u'turkey', u'kirkuk', u'hold']
[u'claim', u'victori', u'ansar', u'islam']
[u'stock', u'tick', u'weigh', u'sentiment']
[u'measur', u'prevent', u'checkpoint', u'shoot']
[u'warplan', u'bomb', u'iraq', u'citi', u'kirkuk']
[u'turn', u'limit', u'past', u'master', u'champion']
[u'govt', u'attack', u'upper', u'hous', u'reform', u'comment']
[u'govt', u'consid', u'drug', u'strategi']
[u'miner', u'winner', u'year']
[u'rule', u'budget', u'boost']
[u'waterfal', u'train', u'speed', u'inquiri', u'tell']
[u'weather', u'world', u'event', u'take', u'toll', u'abalon']
[u'wildcat', u'burston', u'name', u'nbls', u'improv', u'player']
[u'wildcat', u'burtson', u'name', u'nbls', u'improv', u'player']
[u'wilkinson', u'better', u'woodward']
[u'win', u'lotto', u'ticket', u'claim']
[u'woman', u'plead', u'guilti', u'murder', u'children']
[u'wood', u'confid', u'readi', u'master']
[u'world', u'event', u'pressur', u'seafood', u'sale']
[u'hit', u'major', u'hurdl', u'tariff', u'reduct']
[u'budget', u'expect']
[u'need', u'disast', u'respons', u'hospit', u'chief']
[u'oppn', u'attack', u'close', u'bushfir', u'hear']
[u'clamp', u'player', u'gambl']
[u'introduc', u'tough', u'anti', u'gambl', u'code']
[u'airport', u'custom', u'detain', u'euthanasia', u'doctor']
[u'albani', u'guilti']
[u'alleg', u'aust', u'terrorist', u'free', u'home', u'pakistan']
[u'ord', u'flat', u'retail', u'figur', u'releas']
[u'rule', u'stanbrok', u'sale']
[u'ancient', u'indigen', u'item', u'return', u'pilbara']
[u'angler', u'look', u'quick', u'restock']
[u'annual', u'coast', u'airport', u'taxi', u'pick']
[u'arab', u'street', u'rile', u'checkpoint', u'shoot']
[u'archaeolog', u'begin', u'chines', u'miner']
[u'assault', u'baghdad', u'hour', u'report']
[u'astronom', u'pinpoint', u'huge', u'cosmic', u'blast']
[u'atsic', u'leader', u'attack', u'ruddock', u'raid']
[u'australia', u'sweden', u'rekindl', u'rivalri']
[u'bass', u'strait', u'skier', u'abort', u'latest', u'attempt']
[u'bat', u'leav', u'mark', u'transport', u'oper']
[u'bid', u'flow', u'stanbrok', u'pastor', u'compani']
[u'bolivia', u'mudslid', u'kill', u'fear', u'buri', u'aliv']
[u'breakthrough', u'floodgat', u'issu']
[u'british', u'stage', u'mysteri', u'rescu', u'oper', u'iraq']
[u'bronco', u'player', u'look', u'swain']
[u'burk', u'rule', u'crusad', u'clash']
[u'bus', u'run', u'eas', u'transport', u'delay']
[u'cabinet', u'endors', u'cole', u'recommend']
[u'crackdown', u'illeg', u'dvds']
[u'govt', u'compromis', u'jetti', u'extens']
[u'patient', u'pawn', u'hospit']
[u'perman', u'duck', u'quail', u'shoot']
[u'campaign', u'begin', u'maryborough', u'elect']
[u'campbel', u'get', u'ministeri', u'posit']
[u'canadian', u'death', u'toll', u'sar', u'rise']
[u'accid', u'victim', u'charg', u'break']
[u'burn', u'speed', u'chase']
[u'carr', u'defend', u'femal', u'represent', u'cabinet']
[u'cash', u'rate', u'stand']
[u'cathol', u'parish', u'hold', u'ritual', u'apolog']
[u'street', u'close', u'weekend']
[u'central', u'baghdad', u'bombard', u'defenc', u'pound']
[u'china', u'permit', u'team', u'visit', u'guangdong']
[u'choir', u'cancel', u'china', u'tour', u'mysteri', u'fear']
[u'critic', u'volker', u'case']
[u'coalit', u'lose', u'iraqi', u'heart', u'human', u'shield']
[u'cobar', u'unrest', u'state']
[u'communiti', u'get', u'strike', u'miner']
[u'concern', u'air', u'possibl', u'bridg', u'delay']
[u'concern', u'regul', u'cost', u'tuna', u'job']
[u'confer', u'tell', u'australia', u'fear', u'outsid', u'world']
[u'council', u'help', u'childcar', u'centr']
[u'council', u'reject', u'corrupt', u'claim']
[u'counsel', u'student', u'distress']
[u'cousin', u'appeal', u'suspens']
[u'cricket', u'chat', u'give', u'iraq', u'drama', u'pitch']
[u'crime', u'squad', u'north', u'west']
[u'cultur', u'icon', u'protect', u'iraqi', u'weapon']
[u'dengu', u'fever', u'spread', u'consid', u'inevit']
[u'detain', u'journalist', u'safe', u'hill']
[u'diesel', u'spill', u'shut', u'western', u'highway']
[u'disabl', u'servicemen', u'women', u'meet', u'pension']
[u'diseas', u'put', u'question', u'mark', u'arafura', u'game']
[u'downer', u'meet', u'bush', u'washington', u'tour']
[u'cut', u'expenditur', u'world', u'fallout']
[u'elder', u'die', u'farm', u'accid']
[u'hadji', u'diouf', u'win', u'african', u'footbal', u'year']
[u'farmer', u'question', u'irrig']
[u'destroy', u'shoe', u'factori']
[u'firefight', u'look', u'unifi', u'approach']
[u'fish', u'test', u'contamin']
[u'flinder', u'port', u'review', u'plan', u'port', u'upgrad']
[u'editor', u'file', u'bias', u'suit', u'post']
[u'forum', u'address', u'skateboard', u'concern']
[u'fox', u'target', u'bait', u'program']
[u'frank', u'wont', u'rush', u'battl', u'baghdad', u'analyst']
[u'fund', u'cut', u'equestrian', u'prepar']
[u'gene', u'regul', u'okay', u'modifi', u'canola']
[u'canola', u'impact', u'govt']
[u'virus', u'control', u'mice', u'research']
[u'goldfield', u'top', u'number', u'syring', u'user']
[u'govt', u'avoid', u'issu', u'control', u'iraq', u'rudd']
[u'govt', u'restrict', u'disappoint', u'miner']
[u'govt', u'shut', u'gate', u'hors', u'trial']
[u'govt', u'urg', u'improv', u'profession', u'indemn', u'cover']
[u'graviti', u'discoveri', u'centr', u'build', u'gingin']
[u'green', u'unveil', u'pay', u'matern', u'leav', u'scheme']
[u'groundwat', u'level', u'monitor']
[u'group', u'hop', u'eas', u'winemak', u'power', u'cost']
[u'group', u'tri', u'determin', u'peninsula', u'rail', u'network']
[u'guard', u'grand', u'final', u'seri', u'goorjian']
[u'guilti', u'verdict', u'put', u'policeman', u'review']
[u'harwood', u'declar', u'aust', u'match']
[u'hawthorn', u'everitt', u'suspend', u'match']
[u'health', u'test', u'offer', u'exhaust', u'stack', u'neighbour']
[u'hear', u'child', u'cruelti', u'charg', u'continu']
[u'heavi', u'bombard', u'shake', u'baghdad']
[u'leadership', u'struggl', u'sar', u'panic']
[u'hospit', u'recruit', u'chief', u'execut']
[u'hous', u'deliber', u'polic']
[u'huge', u'cosmic', u'burst', u'delight', u'astronom']
[u'hull', u'launch', u'farm', u'safeti', u'campaign']
[u'hydro', u'deni', u'cloud', u'seed', u'dampen', u'tourism']
[u'wife', u'forc', u'mcgrath', u'home']
[u'investig', u'show', u'poor', u'answer', u'rate', u'govt']
[u'iraq', u'throw', u'forc', u'battl']
[u'iraqi', u'fire', u'najaf', u'shrine']
[u'iraq', u'say', u'beat', u'najaf', u'attack', u'give', u'bomb', u'toll']
[u'israel', u'stag', u'tulkarm', u'assault']
[u'teacher', u'train', u'boost']
[u'king', u'mull', u'windi', u'offer']
[u'kiwi', u'drop', u'mcmillan', u'lankan', u'tour']
[u'knock', u'northam', u'liquorland', u'plan']
[u'land', u'offer', u'goodwil', u'tradit', u'owner']
[u'lebouc', u'sorenstam', u'world', u'championship']
[u'lib', u'secur', u'south', u'coast', u'seat']
[u'local', u'govt', u'welcom', u'black', u'spot', u'fund']
[u'local', u'govt', u'debat', u'servic', u'fund', u'review']
[u'lockyer', u'meyer', u'confid', u'play', u'despit']
[u'accus', u'mistreat', u'hors']
[u'injur', u'arrest', u'front', u'court']
[u'moon', u'court', u'outcom']
[u'sentenc', u'year', u'syring', u'hold']
[u'mcisaac', u'join', u'red']
[u'mine', u'compani', u'address', u'worker', u'concern']
[u'miss', u'sweep', u'polic']
[u'miss', u'journalist', u'safe', u'jordan']
[u'mission', u'australia', u'lose', u'staff']
[u'molik', u'advanc', u'seed', u'dokic', u'dump', u'florida']
[u'govt', u'fund', u'urg', u'blayney', u'sealink', u'project']
[u'declin', u'right', u'stunt']
[u'make', u'indi', u'compo']
[u'mysteri', u'virus', u'worri', u'flight', u'staff']
[u'nasiriyah', u'citizen', u'afraid', u'rise', u'saddam']
[u'grade', u'union', u'team', u'darl', u'down']
[u'board', u'help', u'plan', u'bendigo', u'fair', u'overhaul']
[u'news', u'journalist', u'expel', u'iraq']
[u'news', u'unsur', u'report', u'futur', u'iraq']
[u'northern', u'radar', u'switch']
[u'selector', u'eye', u'origin', u'candid']
[u'transport', u'head', u'roll']
[u'govt', u'commit', u'alic', u'art', u'space']
[u'arrest', u'sydney', u'anti', u'ralli']
[u'pastor', u'sale', u'subject', u'scrutini', u'mayor']
[u'paul', u'moran', u'lay', u'rest', u'adelaid']
[u'peac', u'real', u'iraq']
[u'plan', u'start', u'earli', u'council', u'budget']
[u'round', u'critic']
[u'polic', u'continu', u'probe', u'servic', u'station', u'blaze']
[u'polic', u'death', u'threat', u'premedit', u'court']
[u'polic', u'issu', u'warn', u'buy', u'steal', u'properti']
[u'polic', u'seek', u'bushwalk', u'report', u'bodi']
[u'polic', u'spray', u'sydney', u'anti', u'protest']
[u'polic', u'threaten', u'mass', u'arrest', u'student', u'march']
[u'poor', u'prognosi', u'state', u'feder', u'health', u'deal']
[u'portland', u'host', u'region', u'forestri', u'invest']
[u'portug', u'upbeat', u'ahead', u'macedonia', u'clash']
[u'powel', u'carri', u'billion', u'turkey', u'back']
[u'powel', u'renew', u'push', u'turkish', u'support']
[u'rescu', u'famili', u'celebr']
[u'primari', u'produc', u'form', u'market', u'group']
[u'properti', u'portfolio', u'expect', u'attract', u'strong']
[u'qanta', u'plug', u'road', u'safeti', u'plan']
[u'qanta', u'pack', u'mask', u'guard', u'sar']
[u'predict', u'drop', u'countri', u'fuel', u'price']
[u'rail', u'brochur', u'scrap', u'townsvill', u'omiss']
[u'rail', u'tunnel', u'plan', u'state', u'agenda']
[u'rain', u'lead', u'can', u'river', u'fish', u'kill']
[u'rais', u'teenag', u'poverti', u'trap', u'acoss']
[u'recoveri', u'underway', u'bear', u'florentia']
[u'regul', u'back', u'canola', u'applic']
[u'religi', u'sect', u'leader', u'face', u'court', u'charg']
[u'renew', u'hope', u'pcyc']
[u'resid', u'push', u'better', u'recept']
[u'retail', u'say', u'confus', u'rife', u'easter', u'trade']
[u'retail', u'figur', u'remain', u'subdu']
[u'reward', u'offer', u'miss', u'geelong']
[u'riverland', u'local', u'join', u'rural', u'leadership', u'program']
[u'ruddock', u'deni', u'hand', u'atsic', u'raid']
[u'russia', u'send', u'navi', u'arabian', u'report']
[u'sar', u'fear', u'forc', u'exchang', u'student', u'china']
[u'sar', u'kill', u'china', u'offici']
[u'scheme', u'attract', u'world', u'lead', u'asthma', u'research']
[u'school', u'bar', u'return', u'rugbi', u'boy', u'sar']
[u'screen', u'measur', u'tighten', u'sar']
[u'search', u'miss', u'sydney', u'focus', u'bushland']
[u'shepparton', u'mourn', u'nephew', u'dead', u'iraq']
[u'shirvington', u'confid', u'retain', u'nation', u'titl']
[u'subdivis', u'plan', u'huge', u'man', u'valley', u'properti']
[u'sugar', u'council', u'welcom', u'greater', u'industri']
[u'tasmanian', u'famili', u'relat', u'iraq', u'meet']
[u'tasmanian', u'student', u'end', u'anti', u'hunger', u'strike']
[u'test', u'test']
[u'thousand', u'fish', u'releas', u'river']
[u'tiger', u'seek', u'leav', u'appeal', u'odonnel', u'suspens']
[u'timor', u'treati', u'come', u'forc']
[u'seed', u'dokic', u'dump', u'florida', u'clay']
[u'tough', u'measur', u'greet', u'sar', u'risk', u'visitor']
[u'train', u'disast', u'inquiri', u'examin', u'driver', u'role']
[u'pilot', u'rescu', u'plane', u'crash']
[u'mission', u'studi', u'secur', u'qasr']
[u'airport', u'quarantin', u'plane', u'sar', u'scare']
[u'defend', u'soldier', u'iraq', u'civilian', u'kill']
[u'destroy', u'republican', u'guard', u'divis', u'iraq', u'deni']
[u'forc', u'bridg', u'tigri', u'report']
[u'forc', u'secur', u'karbala', u'report']
[u'investor', u'take', u'upbeat', u'look']
[u'militari', u'begin', u'examin', u'bodi']
[u'investig', u'year', u'mortar', u'death']
[u'troop', u'attack', u'fedayeen', u'najaf']
[u'troop']
[u'turkey', u'agre', u'suppli', u'iraq', u'troop']
[u'vanguard', u'baghdad', u'militari']
[u'vanuatu', u'face', u'indonesian', u'backlash', u'papua']
[u'vieira', u'barthez', u'play', u'israel']
[u'virus', u'fear', u'put', u'mask', u'choir', u'china', u'tour']
[u'planner', u'draw', u'wagon', u'rumsfeld']
[u'wast', u'dump', u'critic', u'clutch', u'straw', u'minist']
[u'water', u'suppli', u'deal', u'move', u'closer', u'realiti']
[u'water', u'woe', u'resolv']
[u'women', u'test', u'sar']
[u'wimmera', u'applic', u'assess']
[u'wit', u'say', u'miss', u'woman', u'suspect']
[u'world', u'event', u'forc', u'lobster', u'price']
[u'digger', u'celebr', u'birthday']
[u'report', u'find', u'gun', u'homicid']
[u'jazeera', u'pull', u'plug', u'ban']
[u'jazeera', u'suspend', u'broadcast', u'iraq']
[u'ord', u'surg', u'intern', u'gain']
[u'qaeda', u'suspect', u'captur', u'north', u'west', u'pakistan']
[u'anderson', u'give', u'support', u'decis']
[u'angler', u'catch', u'fish', u'survey']
[u'anti', u'protest', u'downplay', u'small', u'turnout']
[u'armstrong', u'head', u'dauphin', u'liber', u'cast']
[u'auckland', u'chang', u'tactic', u'highland', u'summit']
[u'swim', u'stand', u'volker']
[u'australia', u'back', u'role', u'post', u'iraq']
[u'australian', u'bomber', u'strike', u'baghdad']
[u'aust', u'swim', u'stand', u'volker']
[u'aviat', u'mainten', u'train', u'centr', u'plan']
[u'bateman', u'bodi', u'identifi']
[u'blaze', u'destroy', u'popular', u'roadhous']
[u'bomb', u'rain', u'baghdad', u'airport']
[u'brown', u'condemn', u'cwealth', u'cluster', u'bomb', u'stanc']
[u'bureau', u'expect', u'increas', u'rainfal']
[u'bushfir', u'inquiri', u'take', u'public', u'submiss']
[u'bushfir', u'legisl', u'chang', u'caus', u'problem']
[u'homeland', u'secur', u'depart']
[u'victoria', u'remain', u'free', u'crop']
[u'plung', u'canal', u'woman', u'drown']
[u'chamber', u'welcom', u'illawarra', u'minist', u'appoint']
[u'child', u'tortur', u'alleg', u'detail', u'court']
[u'china', u'assist', u'north', u'korea', u'mediat', u'downer']
[u'citrus', u'grower', u'look', u'upper', u'hous', u'appoint']
[u'club', u'urg', u'join', u'liquor', u'restrict', u'trial']
[u'coalit', u'advanc', u'baghdad']
[u'coalit', u'push', u'closer', u'baghdad']
[u'coal', u'price', u'signal', u'loss']
[u'convict', u'polit', u'assassin', u'fail', u'appeal']
[u'council', u'clear', u'crow', u'wed']
[u'council', u'sacrific', u'build', u'pool']
[u'council', u'pass', u'jetti', u'restrict']
[u'council', u'tool', u'lessen', u'valuat', u'rise']
[u'court', u'hear', u'close', u'argument', u'mayor', u'stalk']
[u'court', u'overturn', u'surf', u'accid', u'compo']
[u'crean', u'accus', u'govt', u'deceit']
[u'crean', u'support', u'bushfir', u'inquiri']
[u'crean', u'turn', u'health', u'tonic', u'poll', u'malais']
[u'cricket', u'talk', u'save', u'iraq', u'human', u'shield']
[u'crossbow', u'shoot', u'shock', u'student']
[u'cruiseboat', u'affect', u'water', u'level']
[u'dairi', u'farmer', u'gain', u'bargain', u'power']
[u'dalbi', u'glide', u'easter']
[u'dechi', u'cargil', u'sarasota']
[u'defenc', u'strategist', u'warn', u'threat', u'relat']
[u'defend', u'iraq', u'sacr', u'duti', u'arab']
[u'doubt', u'cast', u'food', u'voucher', u'idea']
[u'drought', u'take', u'toll', u'lyche', u'grower']
[u'dublin', u'riot', u'polic', u'arrest', u'oppon']
[u'educ', u'chief', u'visit', u'teacher', u'secur']
[u'effenberg', u'quit', u'wolfsburg', u'immedi', u'effect']
[u'elect', u'fever', u'hit', u'maryborough']
[u'england', u'cricket', u'chief', u'spend']
[u'environ', u'minist', u'wilder']
[u'euro', u'franc', u'close', u'final', u'england']
[u'europ', u'broadcast', u'limit', u'iraq', u'report']
[u'everitt', u'miss', u'match', u'scott', u'clear']
[u'nomin', u'council', u'elect']
[u'fieri', u'springbok', u'dalton', u'retir']
[u'fifth', u'sar', u'patient', u'die', u'singapor']
[u'fight', u'intesifi', u'coalit', u'near', u'baghdad']
[u'strike', u'island', u'meet']
[u'inquiri', u'chairman', u'tour', u'burn', u'area']
[u'flood', u'mudslid', u'indonesian', u'island', u'claim']
[u'food', u'voucher', u'instead', u'cash', u'legal', u'worm']
[u'aust', u'militari', u'command', u'believ', u'saddam']
[u'forum', u'discuss', u'drainag', u'project']
[u'girl', u'isol', u'possibl', u'sar']
[u'girl', u'quarantin', u'suspect', u'sar']
[u'goldfield', u'policeman', u'charg', u'burglari']
[u'golf', u'club', u'member', u'debt', u'reduct', u'plan']
[u'govern', u'neglect', u'indigen', u'affair', u'atsic']
[u'green', u'light', u'australian', u'ralli']
[u'green', u'triangl', u'timber', u'industri', u'grow']
[u'grind', u'troop', u'alert', u'wmds']
[u'group', u'like', u'urg', u'public', u'access', u'pastor']
[u'group', u'protest', u'wast', u'plan', u'unhappi', u'batchelor']
[u'group', u'trial', u'brumbi', u'captur', u'plan']
[u'high', u'rate', u'mental', u'ill', u'drug', u'women']
[u'report', u'virus', u'case', u'death']
[u'hospit', u'deni', u'turn', u'away', u'urgent', u'patient']
[u'hotel', u'put', u'auction', u'hold']
[u'howard', u'upbeat', u'progress', u'iraq', u'oper']
[u'revis', u'slow', u'over', u'rule']
[u'indonesia', u'school', u'drug', u'user', u'offici']
[u'injur', u'tendulkar', u'dravid', u'dhaka', u'seri']
[u'insur', u'compani', u'apologis', u'handl']
[u'iran', u'khatami', u'warn', u'iraq', u'fuel', u'extrem']
[u'iraq', u'deni', u'troop', u'make', u'progress']
[u'irrig', u'cost', u'tobacco', u'grape', u'industri']
[u'israel', u'confirm', u'palestinian', u'forc']
[u'israel', u'poison', u'crop', u'bedouin', u'squatter']
[u'israel', u'releas', u'detain', u'palestinian']
[u'japanes', u'whale', u'fleet', u'return', u'home', u'catch']
[u'kalli', u'bangladesh', u'tour']
[u'king', u'crown', u'winner', u'amaz', u'comeback', u'game']
[u'king', u'draw', u'blood', u'minut', u'comeback']
[u'king', u'wildcat', u'clash', u'final']
[u'knive', u'replac', u'gun', u'weapon', u'choic', u'report']
[u'labor', u'odd', u'gallipoli', u'visit']
[u'labor', u'warn', u'aussi', u'gallipoli', u'pilgrimag']
[u'legal', u'brothel', u'healthier', u'premier']
[u'lifesav', u'oper', u'set', u'surgeri', u'benchmark']
[u'local', u'eyesor', u'demolish']
[u'local', u'disput', u'skate', u'park', u'site']
[u'water', u'prompt', u'conting', u'plan']
[u'manag', u'plan', u'lake', u'conjola']
[u'die', u'fatal', u'accid']
[u'lose', u'appeal', u'murder', u'convict']
[u'take', u'protest', u'offic']
[u'marsh', u'season', u'tumour', u'oper']
[u'mcgrath', u'return', u'caribbean', u'wife']
[u'mcgrath', u'wife', u'ill', u'recurr', u'breast']
[u'meet', u'review', u'park', u'manag', u'fire']
[u'million', u'pay', u'outback', u'properti']
[u'miner', u'enter', u'strike']
[u'missil', u'down', u'warplan', u'iraq', u'report']
[u'missil', u'hit', u'baghdad', u'market', u'kill']
[u'infect', u'dengu', u'outbreak']
[u'mose', u'phelp', u'flag', u'foreign', u'flavor']
[u'motorcyclist', u'airlift', u'adelaid']
[u'mourner', u'attend', u'state', u'funer', u'prison', u'chaplain']
[u'gambier', u'get', u'shop', u'centr', u'design']
[u'murder', u'suspect', u'lead', u'polic', u'remain']
[u'mysteri', u'virus', u'test', u'week', u'away', u'health']
[u'napl', u'home', u'pizza', u'desper', u'seek', u'pizza']
[u'nation', u'trust', u'member', u'form', u'breakaway', u'group']
[u'bill', u'problem']
[u'mayor', u'high', u'hop', u'bendigo']
[u'water', u'polic', u'improv', u'respons', u'time']
[u'cri', u'victori', u'aust', u'militari']
[u'roll', u'scam']
[u'ofarrel', u'return', u'lib', u'deputi']
[u'pacif', u'countri', u'quarantin', u'sar']
[u'peel', u'region', u'growth', u'tip', u'highest']
[u'perman', u'water', u'restrict', u'possibl']
[u'perth', u'woman', u'clear', u'sar']
[u'petrol', u'station', u'report', u'price', u'dont', u'fall']
[u'pierc', u'advanc', u'florida']
[u'open', u'railway', u'line']
[u'open', u'wilder', u'railway']
[u'polic', u'drug', u'syndic', u'arrest', u'south']
[u'polic', u'food', u'mooch', u'hitchhik', u'monkey']
[u'polic', u'seek', u'help', u'solv', u'pharmaci', u'theft']
[u'polic', u'truck', u'crash', u'victim']
[u'popul', u'stat', u'citi', u'coast']
[u'port', u'expans', u'project', u'cost', u'ratepay']
[u'port', u'approv', u'strand', u'wheat', u'shipment']
[u'portsmouth', u'leicest', u'close', u'promot']
[u'pressur', u'mount', u'miner', u'invest']
[u'privat', u'hospit', u'nurs', u'rise']
[u'qanta', u'waiv', u'sar', u'chang']
[u'nat', u'accus', u'fail', u'duti']
[u'quad', u'bike', u'rider', u'die', u'crash']
[u'rare', u'shark', u'townsvill']
[u'recov', u'track', u'augusta']
[u'cross', u'tell', u'horror']
[u'resid', u'parti', u'water', u'spill', u'darl']
[u'rockhampton', u'plead', u'guilti', u'hijack']
[u'rock', u'thrower', u'catch']
[u'rooney', u'get', u'sven', u'seal', u'approv']
[u'rooster', u'prop', u'tupou', u'break']
[u'japanes', u'intellig', u'mission', u'court']
[u'govt', u'fund', u'school', u'choir', u'trip']
[u'santini', u'mix', u'feel', u'franc', u'victori']
[u'schumach', u'eager', u'track', u'brazil']
[u'search', u'miss', u'holiday', u'maker', u'scale']
[u'second', u'stage', u'communiti', u'centr', u'work', u'complet']
[u'seven', u'trade', u'good', u'busi', u'govt']
[u'seven', u'share', u'jump', u'manag', u'chang']
[u'seventh', u'sar', u'patient', u'die', u'canada', u'report']
[u'shire', u'urg', u'govt', u'suspend', u'crop']
[u'shockwav', u'asia', u'virus', u'hit', u'tourism']
[u'sim', u'reappoint', u'coach', u'western', u'border', u'team']
[u'goal', u'corinthian', u'qualifi', u'second', u'round']
[u'palestinian', u'kill', u'isra', u'raid']
[u'skase', u'probe', u'wrap']
[u'small', u'bomb', u'look', u'like', u'ration', u'iraqi', u'kid']
[u'soldier', u'kill', u'grenad', u'attack', u'near', u'baghdad']
[u'spotlight', u'wood', u'trick', u'augusta']
[u'starr', u'soul', u'die']
[u'student', u'shoot', u'crossbow']
[u'suspect', u'milit', u'kill', u'toddler', u'parent']
[u'syria', u'backhand', u'threat', u'iraq']
[u'syria', u'say', u'practis', u'terror', u'iraq']
[u'taurima', u'season', u'doubt', u'ankl', u'injuri']
[u'teenag', u'charg', u'alleg', u'crossbow', u'attack']
[u'territori', u'launch', u'rat']
[u'toll', u'bar', u'dam']
[u'tribun', u'seek', u'evid', u'refuge', u'famili']
[u'turkey', u'open', u'border', u'troop', u'suppli']
[u'ullrich', u'wait', u'green', u'light']
[u'meet', u'north', u'korea', u'crisi']
[u'anti', u'dope', u'agenc', u'ban', u'snowboard', u'life']
[u'black', u'hawk', u'iraq']
[u'confirm', u'warplan', u'down', u'iraq']
[u'forc', u'drive', u'iraqi', u'troop', u'north']
[u'helicopt', u'shoot', u'iraq', u'seven', u'believ', u'dead']
[u'lose', u'warplan', u'chopper', u'iraq', u'fight']
[u'market', u'white', u'flag']
[u'resum', u'push', u'intern', u'assist']
[u'want', u'commission', u'fire', u'impact']
[u'health', u'talk', u'qanta', u'sar', u'scare']
[u'check', u'possibl', u'sar', u'case']
[u'wasim', u'replac', u'warn', u'hampshir']
[u'waterfal', u'inquiri', u'hear', u'high', u'regard', u'driver']
[u'water', u'restrict', u'work', u'melbourn']
[u'waterway', u'clean', u'state', u'local', u'respons']
[u'wellman', u'back', u'fletcher', u'bomber', u'return']
[u'william', u'mcgrath']
[u'wine', u'grape', u'grower', u'hope', u'good', u'harvest', u'despit']
[u'woman', u'plead', u'guilti', u'transvestit', u'murder']
[u'wood', u'eye', u'augusta', u'trick']
[u'youth', u'await', u'sentenc', u'rape']
[u'kill', u'brazil', u'crash']
[u'dead', u'conflict', u'india']
[u'republican', u'guard', u'surrend', u'forc']
[u'australian', u'sar', u'case', u'monitor']
[u'accus', u'deni', u'involv', u'rocki', u'murder']
[u'boss', u'dockland']
[u'annual', u'ralli', u'weekend']
[u'departur', u'cole', u'myer', u'board']
[u'architect', u'appoint', u'post', u'offic', u'renov']
[u'artwork', u'brighten', u'mater', u'hospit']
[u'asbesto', u'dust', u'mask', u'best', u'sar', u'germ']
[u'asbesto', u'fear', u'educ']
[u'australia', u'post', u'modest', u'total']
[u'australian', u'airport', u'alert', u'sar', u'outbreak']
[u'baghdad', u'fall', u'quick', u'hoon']
[u'bank', u'queensland', u'profit', u'surg']
[u'barrichello', u'win', u'brazil', u'like', u'win']
[u'belohvoscik', u'claim', u'day', u'pann']
[u'blue', u'lose', u'unbeaten', u'record', u'injuri', u'otago']
[u'boca', u'hold', u'colo', u'colo', u'qualifi', u'libertador']
[u'shoot', u'prompt', u'school', u'secur', u'review']
[u'breakaway', u'union', u'look', u'recruit', u'monaco']
[u'british', u'tripl', u'jumper', u'hansen', u'heel']
[u'sharehold', u'cash', u'share']
[u'bulldog', u'romp', u'victori']
[u'explos', u'russia']
[u'group', u'owner', u'consid', u'futur', u'expans']
[u'butcher', u'sharpen', u'knive', u'sausag', u'king', u'titl']
[u'mill', u'owner', u'help', u'fund', u'wast']
[u'carlton', u'long', u'break']
[u'car', u'blame', u'pollut', u'problem']
[u'chines', u'sunflow', u'firm', u'welcom', u'toowoomba']
[u'claim', u'abattoir', u'spoil', u'meat', u'market']
[u'combin', u'speed', u'light', u'camera', u'bendigo']
[u'commiss', u'rule', u'minimium', u'wage']
[u'compani', u'speak', u'timber', u'project', u'benefit']
[u'concern', u'staff', u'woe', u'put', u'youth', u'risk']
[u'consum', u'group', u'critic', u'telstra', u'price', u'hike']
[u'cost', u'incom', u'divid', u'threaten', u'rural', u'doctor', u'rdaa']
[u'council', u'urg', u'conduit', u'broadband']
[u'council', u'urg', u'protect', u'histor', u'sit']
[u'court', u'hear', u'childcar', u'centr', u'assault', u'claim']
[u'council', u'wait', u'flood', u'relief']
[u'curtain', u'close', u'outback', u'race', u'histori', u'weekend']
[u'debat', u'post', u'reconstruct']
[u'desper', u'red', u'thriller']
[u'difficult', u'warfar', u'ahead', u'baghdad']
[u'dimarco', u'lead', u'georgia']
[u'disappoint', u'respons', u'rat', u'polici', u'review']
[u'drop', u'water', u'level', u'forc', u'stage']
[u'drug', u'label', u'carri', u'price', u'detail']
[u'east', u'timores', u'campaign', u'australian', u'resid']
[u'taliban', u'kill', u'southern', u'afghanistan', u'report']
[u'england', u'face', u'probe', u'turkey', u'match', u'clash']
[u'fair', u'biggest']
[u'famili', u'speak', u'son', u'imprison']
[u'fewer', u'elder', u'patient', u'occupi', u'albani', u'hospit']
[u'flamengo', u'seven', u'match', u'winless']
[u'teacher', u'convict', u'child', u'tourism', u'case']
[u'franc', u'manag', u'maso', u'count', u'marsh']
[u'freeman', u'retain', u'titl', u'shirvo', u'go']
[u'leak', u'close', u'sydney', u'road']
[u'ghan', u'ticket', u'avail', u'general', u'public']
[u'global', u'plan', u'need', u'stem', u'cancer', u'tide']
[u'goldfield', u'politician', u'defend', u'consult']
[u'goodman', u'boss', u'depart', u'pocket']
[u'grant', u'mend', u'knee']
[u'great', u'grape', u'stomp', u'hit', u'riverland', u'tonight']
[u'hast', u'fastest', u'grow', u'coastal', u'region']
[u'report', u'hand', u'feder', u'govern']
[u'hop', u'scheme', u'fight', u'nurs', u'shortag']
[u'howard', u'posit', u'bush', u'talk']
[u'hurrican', u'defenc', u'withstand', u'desper', u'red']
[u'injuri', u'worri', u'bayern']
[u'inquiri', u'hear', u'bash', u'victim']
[u'iraqi', u'offici', u'scoff', u'invad', u'baghdad']
[u'iraqi', u'reinforc', u'head', u'baghdad', u'airport']
[u'iraqi', u'suicid', u'bomb', u'kill', u'troop', u'pregnant', u'woman']
[u'japanes', u'tour', u'seller', u'assess']
[u'john', u'wayn', u'eldest', u'die', u'cancer']
[u'jone', u'delay', u'start', u'outdoor', u'season']
[u'judg', u'order', u'extradit', u'pari', u'subway', u'bomb']
[u'juve', u'striker', u'piero', u'turin', u'derbi']
[u'kangaroo', u'ash', u'tour', u'date', u'confirm']
[u'king', u'discuss', u'windi', u'famili']
[u'kurdish', u'forc', u'bridg', u'town', u'northern']
[u'leed', u'basic', u'reid']
[u'legal', u'action', u'launch', u'manufactur', u'fake']
[u'liverpool', u'hop', u'dent', u'unit', u'trophi', u'charg']
[u'loot', u'heighten', u'iraqi', u'secur', u'vacuum', u'concern']
[u'loxton', u'deregul', u'shop', u'hour']
[u'macarthur', u'think', u'atlant', u'cross']
[u'mackay', u'get', u'emerg', u'servic', u'packag']
[u'manag', u'overhaul', u'fairfax', u'newspap']
[u'extradit', u'face', u'indec', u'deal', u'charg']
[u'murder', u'count', u'death']
[u'trap', u'crash', u'truck']
[u'marseill', u'fan', u'heart']
[u'mayor', u'urg', u'abattoir', u'drought']
[u'mayor', u'urg', u'govt', u'increas', u'minimum', u'sentenc']
[u'meat', u'processor', u'union', u'odd', u'contract']
[u'meet', u'advis', u'farmer', u'nativ', u'veget']
[u'milan', u'keeper', u'dida', u'hand', u'suspend', u'sentenc']
[u'mildura', u'recruit', u'centr', u'win', u'nation', u'contract']
[u'miss', u'list', u'threaten', u'ger', u'titl', u'drive']
[u'molik', u'myskina', u'advanc', u'florida']
[u'call', u'report', u'menangl', u'bridg', u'closur']
[u'issu', u'warn', u'propos', u'media', u'legisl']
[u'agre', u'chang', u'profession', u'indemn']
[u'nat', u'want', u'interst', u'prosecutor']
[u'naval', u'offic', u'blame', u'ship', u'collis']
[u'hous', u'lot', u'establish', u'goulburn']
[u'law', u'internet', u'websit']
[u'newspap', u'publish', u'sack']
[u'nimbin', u'lose']
[u'north', u'korea', u'blast', u'sanction', u'missil']
[u'north', u'korea', u'deflect', u'human', u'right', u'abus']
[u'stop', u'baghdad', u'rumsfeld']
[u'nurs', u'base', u'perth', u'airport', u'combat', u'sar']
[u'object', u'educ', u'prog', u'school']
[u'take', u'lead', u'thailand', u'open']
[u'refineri', u'futur', u'doubt']
[u'otago', u'inflict', u'blue', u'loss']
[u'owen', u'doubt', u'unit', u'clash', u'dead']
[u'pair', u'charg', u'cannabi', u'crop', u'face', u'court']
[u'phelp', u'serv', u'notic', u'thorp', u'freestyl']
[u'pie', u'hold', u'plucki', u'carlton']
[u'piggin', u'vow', u'fight', u'rabbitoh', u'control']
[u'pill', u'rais', u'cervic', u'cancer', u'risk', u'studi']
[u'polic', u'clamp', u'rowdi', u'behaviour']
[u'polic', u'continu', u'probe', u'bone', u'discoveri']
[u'polic', u'reviv', u'volker', u'prosecut']
[u'polic', u'union', u'snub', u'mcgradi']
[u'post', u'saddam', u'iraq', u'control', u'iraqi', u'blair']
[u'predict', u'coal', u'mine', u'loss', u'expect']
[u'privat', u'rail', u'oper', u'award', u'iron', u'transport']
[u'produc', u'face', u'face', u'advic']
[u'public', u'drunken', u'cabinet', u'agenda']
[u'liber', u'state', u'council', u'decid', u'coalit']
[u'rail', u'disast', u'survivor', u'say', u'tripl']
[u'rayo', u'look', u'turn', u'pain', u'gain', u'real', u'madrid']
[u'red', u'trail', u'half', u'time']
[u'reserv', u'governor', u'dire', u'warn', u'debt', u'implos']
[u'resid', u'urg', u'council', u'elect']
[u'review', u'worker', u'compo', u'law', u'announc']
[u'inspect', u'privat', u'land', u'bushfir', u'hazard']
[u'roger', u'crusad', u'clash']
[u'rome', u'custom', u'find', u'drug', u'manger']
[u'rossi', u'hop', u'start', u'suzuka', u'trick']
[u'rossi', u'set', u'earli', u'pace', u'suzuka']
[u'russian', u'roll', u'quarter', u'florida']
[u'russia', u'slam', u'particip']
[u'safin', u'injuri', u'upset', u'russian', u'davi', u'hop']
[u'schumach', u'wari', u'william', u'threat']
[u'second', u'karratha', u'chemist', u'appear', u'unlik']
[u'second', u'phase', u'woodchip', u'start', u'today']
[u'seven', u'team', u'clear', u'sar']
[u'seven', u'team', u'clear', u'sar']
[u'seventeen', u'fear', u'drown', u'indian', u'boat', u'capsiz']
[u'share', u'market', u'close', u'posit', u'note']
[u'shark', u'notch', u'final']
[u'shop', u'unsur', u'easter', u'sunday', u'trade', u'hour']
[u'year', u'jail', u'have', u'butcher']
[u'sky', u'turn', u'virgin', u'blue', u'alic']
[u'slack', u'bank', u'veteran', u'hurrican', u'clash']
[u'solar', u'power', u'boat', u'trip', u'hail', u'success']
[u'specul', u'mount', u'crow', u'wed', u'guest', u'list']
[u'state', u'student', u'place']
[u'suspect', u'aust', u'sar', u'case', u'drop']
[u'busi', u'concern', u'compo', u'chang']
[u'order', u'reject', u'offer']
[u'tassi', u'bagdad', u'friend', u'mail']
[u'taurima', u'pull', u'nation']
[u'teenag', u'deni', u'bail', u'alleg', u'crossbow', u'shoot']
[u'telstra', u'price', u'chang', u'aim', u'protect']
[u'tender', u'close', u'today', u'club', u'construct']
[u'strongest', u'snatch', u'gasp', u'penalti']
[u'canadian', u'children', u'sar', u'list']
[u'ticket', u'avail', u'ghan', u'inaugur', u'journey']
[u'tobin', u'accus', u'defend', u'self', u'court']
[u'soldier', u'prais', u'australian', u'fighter']
[u'tortur', u'charg', u'dismiss', u'child', u'care']
[u'transit', u'answer', u'coast', u'transport', u'need']
[u'trio', u'face', u'court', u'drug', u'raid']
[u'kill', u'suspect', u'rebel', u'attack', u'indonesia']
[u'convoy', u'expect', u'deliv', u'food', u'iraq']
[u'union', u'claim', u'metal', u'case']
[u'warn', u'threat', u'korea']
[u'claim', u'liquid', u'powder', u'chemic', u'manual']
[u'scale', u'diplomat', u'staff', u'china']
[u'senat', u'pass', u'financ', u'billion']
[u'troop', u'vial', u'chemic', u'weapon', u'manual']
[u'troop', u'second', u'site', u'vial', u'powder']
[u'walk', u'lobbi', u'urg', u'care', u'path', u'school']
[u'fear', u'rise', u'gallipoli', u'sand']
[u'water', u'corp', u'say', u'fund', u'port', u'gregori', u'suppli']
[u'waterfal', u'inquiri', u'hear', u'survivor', u'account', u'train']
[u'waterfal', u'rail', u'crash', u'probe', u'hear', u'high', u'regard']
[u'waterfal', u'train', u'rocket', u'disast', u'passeng']
[u'wesfarm', u'filthi', u'contamin', u'revel']
[u'west', u'wimmera', u'refus', u'conced', u'defeat', u'debat']
[u'crew', u'walk']
[u'woman', u'avoid', u'jail', u'term', u'spend', u'bank']
[u'woman', u'defraud', u'govern']
[u'woman', u'watch', u'sar']
[u'work', u'underway', u'elimin', u'road', u'black', u'spot']
[u'youth', u'week', u'kick', u'adelaid']
[u'iraqi', u'kill', u'baghdad', u'incurs']
[u'australian', u'sar', u'case', u'monitor']
[u'dead', u'bangladeshi', u'boat', u'accid']
[u'passeng', u'check', u'sar', u'airport']
[u'abalon', u'export', u'demand', u'fall']
[u'bushfir', u'inquiri', u'begin']
[u'adelaid', u'match', u'scrap']
[u'chief', u'defend', u'editori', u'shake']
[u'agfest', u'program', u'launch', u'tassi']
[u'worker', u'miss', u'baghdad']
[u'jazeera', u'resum', u'work', u'baghdad']
[u'anti', u'flotilla', u'protest', u'outsid', u'resid']
[u'artist', u'paint', u'prize', u'money']
[u'athlet', u'boss', u'consid', u'batman', u'charg']
[u'aussi', u'daw', u'grab', u'share', u'thailand', u'open', u'lead']
[u'aussi', u'jet', u'wind', u'role', u'gulf']
[u'australia', u'cruis', u'victori', u'south', u'african']
[u'australia', u'go', u'davi']
[u'baghdad', u'visit', u'year', u'unlik', u'blix']
[u'bern', u'wonder', u'goal', u'lead', u'waratah', u'victori']
[u'bomber', u'strong', u'dee']
[u'bomber', u'strong', u'dee', u'saint', u'hang']
[u'bomber', u'strong', u'demon']
[u'brisban', u'woman', u'die', u'hous']
[u'british', u'tornado', u'concret', u'tech', u'arsenal']
[u'british', u'troop', u'iraqi', u'morgu']
[u'british', u'troop', u'readi', u'basra', u'say', u'command']
[u'bush', u'blair', u'meet', u'ireland', u'week']
[u'bush', u'give', u'offici', u'power', u'quarantin', u'sar']
[u'californian', u'lock', u'hair', u'cut', u'spree']
[u'canada', u'start', u'crack', u'extend', u'winter']
[u'donat', u'open', u'farmer']
[u'childcar', u'centr', u'director', u'jail', u'fraud']
[u'china', u'say', u'sar', u'link', u'chlamydia', u'like']
[u'club', u'reprimand', u'spot', u'punch', u'competit']
[u'take', u'step', u'prevent', u'sar', u'spread']
[u'coalit', u'forc', u'death', u'toll', u'near']
[u'coalit', u'forc', u'launch', u'fresh', u'attack', u'baghdad']
[u'confer', u'homeless', u'start', u'brisban']
[u'confer', u'discuss', u'breastfe', u'issu']
[u'consum', u'group', u'critic', u'telstra', u'price', u'hike']
[u'cuba', u'impos', u'news', u'blackout', u'ferri', u'hijack']
[u'cuban', u'ferri', u'hostag', u'free', u'hijack', u'arrest']
[u'cycl', u'boss', u'helmet', u'compulsori']
[u'darwin', u'church', u'pack', u'jam', u'funer', u'servic']
[u'democrat', u'peac', u'ralli']
[u'doctor', u'group', u'say', u'member', u'miss', u'baghdad']
[u'electr', u'partial', u'restor', u'baghdad']
[u'elit', u'iraqi', u'guard', u'divis', u'defeat', u'marin']
[u'environment', u'group', u'commend', u'council', u'pollut']
[u'farmer', u'associ', u'explain', u'veget', u'law']
[u'fitzgerald', u'prais', u'philippoussi']
[u'dead', u'suspect', u'iraqi', u'suicid', u'blast']
[u'flinder', u'island', u'resid', u'gain', u'mobil', u'coverag']
[u'hair', u'taufel', u'add', u'umpir', u'panel']
[u'heavi', u'gunfir', u'hear', u'central', u'baghdad']
[u'helmet', u'compulsori', u'time', u'giro']
[u'hewitt', u'give', u'australia', u'lead', u'sweden']
[u'homecom', u'hop', u'exil', u'olonga']
[u'hop', u'fade', u'hundr', u'buri', u'bolivia', u'mudslid']
[u'hundr', u'iraqi', u'soldier', u'admit', u'baghdad']
[u'improv', u'brighton', u'secur', u'read']
[u'intens', u'explos', u'outskirt', u'baghdad']
[u'iraqi', u'minist', u'deni', u'presenc', u'baghdad']
[u'iraqi', u'warn', u'martyrdom', u'oper', u'baghdad']
[u'iraqi', u'forc', u'clash', u'baghdad']
[u'iraq', u'say', u'okay', u'baghdad', u'airport', u'retak']
[u'iraq', u'show', u'saddam', u'tour', u'baghdad']
[u'isra', u'opposit', u'parti', u'say', u'round', u'brutal']
[u'judg', u'concern', u'trial']
[u'katherin', u'welcom', u'stockman', u'statu']
[u'knight', u'deni', u'storm']
[u'latham', u'week']
[u'lazio', u'stam', u'month', u'thigh', u'injuri']
[u'legal', u'group', u'welcom', u'chang', u'profession']
[u'lion', u'voss', u'memor']
[u'lion', u'hold', u'port', u'bomber', u'thump', u'dee', u'saint', u'hang']
[u'lion', u'tamer', u'run', u'circus']
[u'love', u'number']
[u'malaysia', u'confirm', u'sar', u'death']
[u'arrest', u'boat', u'crash']
[u'mccartney', u'buy', u'right', u'carl', u'perkin', u'catalogu']
[u'medellin', u'ecuador', u'reach']
[u'molik', u'florida']
[u'mortar', u'rain', u'forc', u'encircl', u'baghdad']
[u'museeuw', u'hop', u'roar', u'histor', u'lion', u'flander']
[u'mustard', u'cyanid', u'say', u'euphrat', u'report']
[u'nation', u'youth', u'week', u'kick', u'tassi']
[u'neighbour', u'save', u'woman', u'apart']
[u'program', u'explicit', u'oppn']
[u'test', u'effect', u'scientist']
[u'bodi', u'retriev', u'rescu', u'mission', u'say']
[u'plan', u'cancel', u'arafura', u'game', u'sar', u'threat']
[u'polic', u'confirm', u'phone', u'hunt']
[u'govt', u'deni', u'cut', u'support', u'program']
[u'number', u'suspect', u'sar', u'case', u'fall', u'offici']
[u'accus', u'govt', u'wast', u'money']
[u'pakistan', u'rout', u'lanka', u'second', u'sharjah']
[u'pentagon', u'confirm', u'death', u'troop']
[u'pentagon', u'confirm', u'bodi', u'retriev']
[u'person', u'die', u'crash', u'coot']
[u'phelp', u'miss', u'klim', u'record']
[u'philippoussi', u'put', u'australia', u'ahead', u'sweden']
[u'pilot', u'fli', u'hospit', u'plane', u'crash']
[u'pire', u'arsenal', u'miss', u'semi']
[u'point', u'chang', u'help', u'schumach', u'coulthard']
[u'polic', u'arrest', u'involv', u'chase']
[u'polic', u'investig', u'sydney', u'nightclub', u'shoot']
[u'port', u'stanvac', u'refineri', u'closur', u'specul']
[u'possibl', u'sar', u'case', u'decid', u'stay', u'home']
[u'powel', u'fail', u'convinc', u'european', u'iraq']
[u'raaf', u'jet', u'role', u'gulf', u'wind']
[u'raider', u'bronco', u'undef']
[u'raider', u'bronco', u'undef', u'knight', u'deni', u'storm']
[u'rescu', u'soldier', u'report', u'respond']
[u'respiratori', u'confer', u'scrambl', u'discuss', u'sar']
[u'roo', u'veteran', u'king', u'mark', u'game']
[u'irwin', u'award', u'advisori', u'posit']
[u'saddam', u'loyalist', u'basra', u'want', u'surrend', u'paper']
[u'saint', u'hold', u'crow']
[u'school', u'alert', u'potenti', u'sar', u'case']
[u'health', u'group', u'defend', u'school', u'program']
[u'shangahi', u'russia', u'report', u'sar', u'case']
[u'small', u'plane', u'crash', u'near', u'boston', u'dead']
[u'spanish', u'sport', u'author', u'overturn', u'gurpegi', u'drug']
[u'speech', u'indic', u'saddam', u'aliv', u'intellig']
[u'suspect', u'sar', u'patient', u'isol', u'melbourn']
[u'sydney', u'bridg', u'remain', u'open', u'problem', u'report']
[u'tasmania', u'show', u'support', u'liabil', u'law']
[u'teenag', u'jail', u'canberra', u'arson']
[u'thoma', u'back', u'hamil', u'win', u'return']
[u'soldier', u'kill', u'airport', u'accid']
[u'toddler', u'suspect', u'suffer', u'sar']
[u'travel', u'stay', u'home', u'avoid', u'virus']
[u'turkey', u'tugay', u'slam', u'england', u'captain', u'beckham']
[u'tway', u'janzen', u'forg', u'shoot', u'lead', u'georgia']
[u'marin', u'kill', u'iraq', u'helicopt', u'crash']
[u'uday', u'bright', u'cheer', u'respons', u'disciplin', u'say']
[u'embassi', u'staff', u'leav', u'tehran', u'blast']
[u'bring', u'food', u'iraq']
[u'underground', u'facil', u'baghdad', u'airport']
[u'lose', u'author', u'attack', u'korea']
[u'play', u'role', u'iraq', u'franc']
[u'slow', u'timor', u'withdraw']
[u'blue', u'chip', u'rise', u'profit', u'warn', u'hurt', u'tech']
[u'call', u'aircraft', u'iraqi', u'airport']
[u'claim', u'renam', u'saddam', u'baghdad', u'airport']
[u'columnist', u'kill', u'iraq']
[u'forc', u'attack', u'central', u'iraqi', u'citi', u'kerbala']
[u'forc', u'seiz', u'medina', u'republican', u'guard']
[u'job', u'wors', u'expect', u'drop', u'march']
[u'marin', u'command', u'reliev', u'post', u'iraq']
[u'marin', u'dig', u'suspect', u'chemic', u'arm', u'site']
[u'interim', u'author', u'iraq']
[u'eye', u'syria', u'iran', u'blair']
[u'lead', u'post', u'iraq', u'rice']
[u'korea', u'hold', u'talk']
[u'offici', u'track', u'case', u'sar', u'virus']
[u'soldier', u'charg', u'murder', u'kuwait', u'incid']
[u'soldier', u'kill', u'suicid', u'blast', u'iraq']
[u'swimmer', u'grumbl', u'aussi', u'absenc']
[u'tank', u'command', u'shoot', u'dead', u'baghdad']
[u'tank', u'enter', u'south', u'baghdad', u'probe', u'mission']
[u'tank', u'roll', u'baghdad']
[u'tank', u'rumbl', u'baghdad']
[u'tank', u'thrust', u'baghdad']
[u'troop', u'heart', u'baghdad', u'militari', u'say']
[u'troop', u'kill', u'battl', u'baghdad', u'airport']
[u'straaten', u'turn', u'springbok']
[u'veron', u'absenc', u'hit', u'unit']
[u'voter', u'urg', u'enrol', u'elect']
[u'govt', u'help', u'sell', u'local']
[u'introduc', u'public', u'sector', u'parent', u'leav']
[u'waratah', u'score', u'gasp', u'crusad']
[u'water', u'restrict', u'chang']
[u'webber', u'surpris', u'fastest', u'brazil']
[u'white', u'power', u'near', u'baghdad', u'antidot']
[u'kurdish', u'fighter', u'kill', u'plane', u'bomb']
[u'staff', u'singapor', u'hospit', u'confin']
[u'dead', u'bangladesh', u'boat', u'accid']
[u'eye', u'stanbrok']
[u'hospit', u'review', u'disast', u'readi']
[u'reject', u'public', u'sector', u'recruit', u'critic']
[u'treasur', u'respond', u'recruit', u'cost']
[u'wineri', u'expect', u'excel', u'season']
[u'ajax', u'close', u'victori']
[u'push', u'payout']
[u'warn', u'victorian', u'doctor', u'exodus']
[u'american', u'loar', u'snatch', u'outright', u'thai', u'open', u'lead']
[u'ancestr', u'remain', u'hand']
[u'aprilia', u'enjoy', u'open']
[u'arsenal', u'hold', u'unit', u'crush', u'liverpool']
[u'ashford', u'caus', u'million', u'dollar', u'damag']
[u'attempt', u'jailbreak', u'hondura', u'claim', u'live']
[u'australia', u'home', u'rout', u'sweden']
[u'australian', u'involv', u'baghdad', u'raid']
[u'author', u'continu', u'monitor', u'sar', u'threat']
[u'baath', u'parti', u'loyalist', u'basra', u'urg', u'surrend']
[u'baghdad', u'hospit', u'stretch', u'limit', u'icrc']
[u'barrichello', u'take', u'brazil', u'pole', u'webber']
[u'beatti', u'throw', u'support', u'child', u'abus', u'case']
[u'belgium', u'revis', u'univers', u'compet']
[u'win', u'tiger', u'warrior', u'rooster']
[u'boom', u'burst', u'bring', u'stormer', u'success']
[u'britain', u'say', u'republican', u'guard', u'suffer']
[u'british', u'tank', u'penetr', u'basra']
[u'brogden', u'put', u'final', u'touch', u'bench']
[u'brumbi', u'return', u'form', u'stun', u'defeat']
[u'tough', u'smoke', u'car', u'child']
[u'champion', u'leagu', u'draw', u'fix', u'ferguson']
[u'collin', u'captur', u'metr', u'texa', u'relay']
[u'collin', u'celebr']
[u'communiti', u'cabinet', u'meet', u'tvill']
[u'construct', u'industri', u'urg', u'tyre']
[u'cyclon', u'alert', u'wind', u'north', u'coast']
[u'downer', u'say', u'australia', u'post', u'role']
[u'duel', u'offer', u'aussi', u'newcom', u'intern', u'test']
[u'eighth', u'sar', u'victim', u'report', u'canada']
[u'even', u'start', u'olymp', u'marathon']
[u'fierc', u'damag', u'busi', u'hospit', u'unit']
[u'bad', u'damag', u'perth', u'home']
[u'damag', u'bankstown', u'shop', u'centr']
[u'inquiri', u'threaten', u'bushland', u'tour']
[u'juve', u'derbi', u'torino']
[u'friend', u'hit', u'kurdish', u'convoy', u'kill']
[u'glori', u'join', u'shark', u'tabl']
[u'govt', u'open', u'solar', u'power', u'market']
[u'govt', u'work', u'medic', u'indemn', u'packag']
[u'hawk', u'tiger', u'kangaroo', u'join', u'weekend', u'winner']
[u'heal', u'hail', u'king', u'comeback']
[u'heal', u'prais', u'comeback', u'king']
[u'hondura', u'jail', u'riot', u'leav', u'dead']
[u'hundr', u'dead', u'congo', u'massacr', u'sourc']
[u'iran', u'claim', u'bodi', u'iraqi', u'morgu']
[u'iraq', u'deni', u'baghdad', u'incurs']
[u'iraqi', u'kurd', u'special', u'forc', u'close', u'kirkuk']
[u'iraqi', u'ban', u'flee', u'citi', u'attack']
[u'iraq', u'say', u'chemic', u'aliv', u'say', u'guard', u'dead']
[u'island', u'festiv', u'finish', u'today']
[u'janzen', u'enter', u'unfamiliar', u'territori', u'lead']
[u'janzen', u'shoot', u'grab', u'stroke', u'lead']
[u'johnson', u'gun', u'world', u'glori']
[u'judg', u'question', u'fair', u'moussaoui', u'case']
[u'kessler', u'claim', u'indurain']
[u'king', u'break', u'duck', u'thrash', u'wildcat', u'perth']
[u'labor', u'nomin', u'elect', u'candid']
[u'larg', u'percentag', u'worker', u'expect', u'touch']
[u'late', u'birdi', u'janzen', u'shoot', u'cushion']
[u'liber', u'come', u'bush']
[u'lord', u'mayor', u'candid', u'think', u'outsid', u'squar']
[u'lyon', u'command', u'marseill', u'slump', u'home']
[u'melbourn', u'woman', u'fifth', u'like', u'sar', u'suffer']
[u'melbourn', u'woman', u'rais', u'suspect', u'sar', u'talli']
[u'mine', u'compani', u'plan', u'tasmanian', u'explor']
[u'torch', u'aceh', u'peac', u'monitor', u'offic']
[u'molik', u'myskina', u'advanc', u'sarasota', u'open', u'final']
[u'mol', u'doubl', u'send', u'ranger', u'point', u'clear']
[u'monti', u'pass', u'land', u'irish', u'coup', u'nation']
[u'mortar', u'rain', u'baghdad', u'report']
[u'murray', u'malle', u'need', u'drought', u'assist', u'fund', u'rann']
[u'round', u'raid', u'baghdad']
[u'ancient', u'indigen', u'exhibit']
[u'nkorea', u'say', u'ignor', u'nuclear', u'rule']
[u'korea', u'leader', u'make', u'public', u'appear']
[u'canio', u'rift', u'say', u'roeder']
[u'figur', u'iraqi', u'civilian', u'death']
[u'special', u'consider', u'iraqi', u'refuge']
[u'time', u'frame', u'withdraw', u'aust', u'troop']
[u'minist', u'say', u'plan', u'summit', u'ahead']
[u'say', u'exceed', u'renew', u'energi', u'target']
[u'oppn', u'unsurpris', u'public', u'approv']
[u'parent', u'reunit', u'rescu', u'jessica', u'lynch']
[u'peac', u'activist', u'wound', u'east', u'clash']
[u'portsmouth', u'restor', u'lead', u'promot', u'race']
[u'putin', u'urg', u'action', u'nuclear', u'treati']
[u'appeal', u'sentenc', u'babi', u'death']
[u'labor', u'nomin', u'elect', u'candid']
[u'rain', u'help', u'rossi', u'retain', u'suzuka', u'pole']
[u'report', u'find', u'biggest', u'greenhous']
[u'roadmap', u'demand', u'israel']
[u'roof', u'caus', u'major', u'damag', u'home']
[u'rossi', u'start', u'finish']
[u'russia', u'claim', u'diplomat', u'injur', u'iraqi', u'bomb']
[u'russian', u'lose', u'davi', u'crown', u'argentin', u'advanc']
[u'saddam', u'call', u'iraqi', u'save', u'baghdad', u'tank']
[u'sar', u'fear', u'eas', u'singapor', u'reopen', u'school']
[u'sheikh', u'approv', u'suicid', u'attack', u'alli']
[u'socceroo', u'star', u'goal', u'rampag', u'leed']
[u'solar', u'vehicl', u'challeng', u'hot', u'contest', u'despit']
[u'sorenstam', u'retain', u'lead', u'despit', u'horror']
[u'sorenstam', u'shot', u'clear', u'angel']
[u'sprinter', u'johnson', u'gun', u'world', u'glori']
[u'street', u'walker', u'squeez', u'inner', u'sydney', u'go']
[u'stuttgart', u'second', u'gasp']
[u'substitut', u'strike', u'spark', u'real', u'comeback']
[u'suspect', u'sar', u'kid', u'home', u'tomorrow']
[u'sydney', u'traffic', u'chang', u'begin', u'today']
[u'govt', u'price', u'histor', u'build']
[u'teen', u'recruit', u'undercov', u'smoke', u'sting']
[u'tender', u'call', u'school', u'redevelop']
[u'thompson', u'win', u'free', u'person', u'best']
[u'injur', u'beirut', u'mcdonald', u'blast']
[u'ton', u'waugh', u'hayden', u'windi', u'warm']
[u'marilli', u'fire', u'zimbabw', u'past', u'kenya']
[u'toxic', u'spill', u'threaten', u'rare', u'turtl', u'speci']
[u'turkey', u'expel', u'iraqi', u'diplomat']
[u'ship', u'bind', u'iraq']
[u'ullrich', u'father']
[u'union', u'say', u'wont', u'cope', u'sar', u'outbreak']
[u'airborn', u'divis', u'launch', u'assault']
[u'iraqi', u'forc', u'fight', u'street', u'street', u'karbala']
[u'militari', u'say', u'attack', u'russian', u'convoy']
[u'plan', u'iraq', u'civilian', u'rule', u'begin']
[u'say', u'troop', u'baghdad', u'freeli']
[u'start', u'instal', u'post', u'iraq', u'administr']
[u'troop', u'kurd', u'advanc', u'mosul', u'kirkuk']
[u'warn', u'possibl', u'terror', u'strike', u'uzbekistan']
[u'govt', u'deni', u'boy', u'game', u'offic']
[u'govt', u'crackdown', u'owner', u'builder']
[u'video', u'releas', u'northbridg', u'polic', u'stab']
[u'vogt', u'relish', u'germani', u'clash', u'hampden']
[u'resid', u'prepar', u'cyclon']
[u'warrior', u'rabbitoh']
[u'budget', u'dollar', u'work', u'famili', u'reform']
[u'waugh', u'hayden', u'ton', u'windi', u'warm']
[u'webber', u'lift', u'jaguar', u'height']
[u'webber', u'lift', u'jaguar', u'height', u'brazil']
[u'wmds']
[u'woodbridg', u'arthur', u'guid', u'australia', u'semi']
[u'worldwid', u'protest', u'condemn', u'bush', u'blair', u'axi', u'evil']
[u'children', u'teacher', u'kill', u'russian', u'school']
[u'airlin', u'grow', u'despit', u'tough', u'travel', u'time']
[u'airport', u'travel', u'screen', u'sar']
[u'chief', u'hospitalis', u'lung', u'blood', u'clot']
[u'snowtown', u'juror', u'discharg']
[u'asian', u'corpor', u'target', u'north', u'incent']
[u'halt', u'trade']
[u'auiron', u'support', u'deal', u'ausmelt']
[u'australia', u'like', u'help', u'iraq', u'rebuild', u'rural']
[u'baghdad', u'face', u'grow', u'health', u'crisi']
[u'bangladesh', u'boat', u'tragedi', u'toll', u'hit']
[u'barra', u'rise', u'mcarthur', u'river']
[u'barrichello', u'brazilian', u'agoni', u'continu']
[u'beach', u'facelift']
[u'blast', u'rock', u'presidenti', u'complex', u'baghdad']
[u'blue', u'origin', u'squad']
[u'bodi', u'chemic', u'report']
[u'bomb', u'alert', u'belfast', u'bush', u'blair', u'summit']
[u'brack', u'enforc', u'perman', u'water', u'ban']
[u'brack', u'say', u'govt', u'help', u'punter', u'beat', u'bet']
[u'british', u'troop', u'basra', u'stay', u'hoon']
[u'broom', u'port', u'fund', u'continu']
[u'builder', u'insur', u'legisl', u'move']
[u'burleigh', u'bear', u'score', u'season']
[u'bush', u'blair', u'meet', u'discuss', u'post', u'iraq']
[u'busi', u'go', u'despit', u'blaze']
[u'campaign', u'launch', u'stop', u'workplac', u'bulli']
[u'celtic', u'titl', u'hunt', u'oneil']
[u'centr', u'play', u'tourist', u'number', u'concern']
[u'champion', u'independient', u'grab', u'season']
[u'claim', u'council', u'cost', u'make', u'hard', u'rat']
[u'clydesdal', u'score', u'minut', u'beat', u'young']
[u'comment', u'seek', u'central', u'transport', u'plan']
[u'communiti', u'chip', u'help', u'childcar', u'centr']
[u'communiti', u'involv', u'enhanc', u'health', u'expert']
[u'compo', u'claim', u'spark', u'public', u'liabil', u'concern']
[u'concern', u'air', u'school', u'hear', u'support']
[u'concern', u'rais', u'rental', u'shortag', u'issu']
[u'construct', u'begin', u'pilot', u'channel']
[u'controversi', u'festiv', u'sponsorship', u'discuss']
[u'councillor', u'converg', u'park', u'financi']
[u'council', u'seek', u'aviat', u'rescu', u'servic']
[u'council', u'welcom', u'york', u'park', u'seat', u'boost']
[u'crane', u'blitz', u'maiden', u'tour']
[u'defenc', u'expert', u'forecast', u'iraqi', u'capitul']
[u'deportivo', u'second', u'spain']
[u'detain', u'refuge', u'children', u'suffer', u'social', u'problem']
[u'doctor', u'protest']
[u'drcongo', u'presid', u'swear', u'head', u'uniti']
[u'drill', u'begin', u'olymp']
[u'driver', u'tell', u'rail', u'inquiri', u'wrong', u'track']
[u'driver', u'tell', u'waterfal', u'inquiri', u'track']
[u'drought', u'turn', u'lavend']
[u'east', u'timor', u'sentenc', u'crime', u'human']
[u'push', u'urg', u'produc', u'contact', u'agforc']
[u'hop', u'finalis', u'shale', u'emiss', u'report']
[u'cri', u'fowl', u'aust', u'chicken', u'import', u'law']
[u'explos', u'baghdad', u'palac', u'hold', u'forc']
[u'fate', u'chemic', u'unclear']
[u'feder', u'report', u'call', u'soccer', u'australia', u'board']
[u'firefight', u'work', u'control', u'cobar', u'fire']
[u'firefight', u'work', u'control', u'cobaw', u'fire']
[u'iraqi', u'kill', u'wound', u'hospit']
[u'nomin', u'mayor', u'spot']
[u'troop', u'kill', u'baghdad', u'attack']
[u'franc', u'russia', u'dump', u'davi']
[u'francou', u'posit', u'despit', u'season', u'end', u'injuri']
[u'friend', u'plagu', u'britain', u'iraq']
[u'fruit', u'outbreak', u'tongala']
[u'fruit', u'industri', u'expand', u'asia']
[u'explos', u'injur', u'airlift', u'brisban']
[u'goulburn', u'council', u'await', u'develop', u'sign']
[u'govern', u'recommend', u'australia', u'soccer', u'chief']
[u'govt', u'promis', u'polic', u'station', u'open']
[u'hall', u'fame', u'pleas', u'communiti', u'support']
[u'happi', u'birthday', u'astro']
[u'trick', u'fashion', u'design']
[u'histor', u'cottag', u'offer', u'privat', u'buyer']
[u'hodg', u'star', u'ball']
[u'hogg', u'gillespi', u'press', u'test', u'select']
[u'hop', u'war', u'start', u'market', u'surg']
[u'hors', u'trial', u'plea', u'govt', u'fund']
[u'howard', u'reneg', u'troop', u'brown']
[u'inter', u'titl', u'hop', u'fade']
[u'iraqi', u'greet', u'marin', u'call', u'saddam', u'death']
[u'iraq', u'say', u'hit', u'forc', u'artilleri']
[u'announc', u'world', u'refere']
[u'attempt', u'avoid', u'staff', u'walkout']
[u'irrig', u'urg', u'speak', u'rural', u'water']
[u'outlook', u'subdu']
[u'kato', u'fight', u'life', u'horror', u'crash']
[u'ministri', u'palac', u'iraqi', u'hand']
[u'king', u'welcom', u'fan', u'sydney']
[u'latrob', u'hunter', u'power', u'industri', u'biggest', u'pollut']
[u'lenton', u'lose', u'free', u'victori']
[u'liber', u'staffer', u'fin', u'take', u'labor', u'elect']
[u'live', u'fish', u'export', u'affect', u'sar']
[u'loar', u'win', u'thailand', u'open', u'stroke']
[u'magistr', u'avoid', u'potenti', u'virus', u'marri', u'coupl']
[u'hospit', u'head', u'crash']
[u'market', u'hop', u'quick']
[u'mayor', u'hope', u'king', u'ship', u'servic', u'resum']
[u'board', u'tell', u'sharehold', u'deal']
[u'oversea', u'sale', u'concern', u'premier']
[u'minist', u'small', u'busi', u'trip', u'head', u'tweed']
[u'missil', u'slam', u'baghdad', u'neighbourhood', u'eyewit']
[u'myskina', u'beat', u'molik', u'sarasota', u'open', u'crown']
[u'natwa']
[u'offic', u'offer', u'club', u'administr', u'support']
[u'pitcairn', u'island', u'charg', u'offenc']
[u'nitschk', u'criticis', u'suicid', u'internet', u'law']
[u'north', u'burleigh', u'win', u'junior', u'lifesav', u'trick']
[u'opposit', u'claim', u'bridg', u'danger', u'cover']
[u'cabinet', u'head', u'borroloola']
[u'ogradi', u'petegem', u'claim', u'tour', u'flander']
[u'blast', u'victim', u'airlift', u'hospit']
[u'oilwel', u'blast', u'victim', u'rush', u'hospit']
[u'olonga', u'cours', u'lash']
[u'opera', u'hous', u'architect', u'win', u'pritzker', u'prize']
[u'opposit', u'fighter', u'airlift', u'southern', u'iraq']
[u'pair', u'charg', u'robberi', u'violenc']
[u'palestinian', u'wit', u'refus', u'recognis', u'isra']
[u'pentagon', u'declin', u'assault', u'battl']
[u'phelp', u'lead', u'duel', u'pool']
[u'unveil', u'hospit', u'upgrad']
[u'polic', u'charg', u'year', u'chase']
[u'polic', u'catch', u'drink', u'driver']
[u'polic', u'probe', u'truck', u'theft']
[u'polic', u'stage', u'traffic', u'blitz']
[u'polic', u'traffic', u'victim']
[u'protest', u'greet', u'minist', u'colleg', u'art']
[u'point', u'clear', u'despit', u'draw', u'willem']
[u'govt', u'air', u'cancer', u'fund', u'trial', u'concern']
[u'govt', u'focus', u'public', u'drunken']
[u'quarter', u'tasmanian', u'home', u'insur', u'studi']
[u'queensland', u'dale', u'retir', u'class', u'game']
[u'raid', u'report', u'mosul', u'jazeera']
[u'rail', u'union', u'seek', u'bridg', u'safeti', u'guarante']
[u'ravensthorp', u'adopt', u'postal', u'vote', u'council', u'poll']
[u'record', u'botch', u'birth', u'payout', u'reduc']
[u'relay', u'rais', u'thousand', u'cancer', u'council']
[u'renmark', u'irrig', u'trust', u'wont', u'join']
[u'richardson', u'fractur', u'cheek']
[u'robson', u'rule', u'premiership', u'titl']
[u'rural', u'financi', u'counsellor', u'welcom', u'interim']
[u'russia', u'demand', u'action', u'convoy', u'attack']
[u'govt', u'urg', u'help', u'provid', u'region', u'servic']
[u'sangakkara', u'fashion', u'lankan', u'reveng', u'kenya']
[u'sar', u'death', u'toll', u'continu', u'rise']
[u'sarwan', u'gayl', u'australia', u'test', u'clash']
[u'stay', u'iraq', u'clean']
[u'school', u'evacu', u'leak']
[u'schwab', u'surviv', u'heart', u'scare']
[u'sele', u'capriati', u'charleston', u'tournament']
[u'shire', u'get', u'fund', u'fight', u'rabbit', u'plagu']
[u'shire', u'men', u'health', u'servic']
[u'soccer', u'australia', u'board', u'pressur', u'quit']
[u'south', u'west', u'shire', u'prepar', u'expect', u'popul']
[u'state', u'homeless', u'vanston']
[u'korea', u'say', u'talk', u'blame', u'korea']
[u'struggl', u'public', u'road', u'complet']
[u'studi', u'highlight', u'greenhous', u'contributor']
[u'studi', u'help', u'reduc', u'racism', u'indigen']
[u'super', u'race', u'tighten', u'leader', u'slip']
[u'surat', u'explos', u'toll', u'revis']
[u'survey', u'consid', u'communiti', u'servic', u'import']
[u'survey', u'show', u'differ', u'attitud', u'compo']
[u'swede', u'sorenstam', u'captur', u'lpga', u'season']
[u'tammin', u'case', u'studi', u'road', u'fund']
[u'teen', u'seek', u'council', u'compo', u'accid']
[u'injur', u'oilwel', u'blast']
[u'thorp', u'frighten', u'race', u'american', u'say']
[u'stab', u'overnight', u'brawl']
[u'treat', u'blast']
[u'possibl', u'sar', u'case', u'monitor']
[u'suspect', u'sar', u'case', u'send', u'home']
[u'tidi', u'town', u'honour', u'wyalkatchem']
[u'tight', u'secur', u'crow', u'wed']
[u'tourism', u'campaign', u'look', u'good']
[u'tourism', u'head', u'want', u'market', u'target']
[u'toyn', u'reject', u'call', u'stand']
[u'turnbul', u'sydney', u'femal', u'lord', u'mayor']
[u'marin', u'kill', u'battl', u'bridg', u'baghdad']
[u'quarantin', u'fremantl', u'show', u'sar']
[u'soldier', u'journalist', u'kill', u'rocket']
[u'agenc', u'warn', u'baghdad', u'health', u'disast']
[u'underag', u'cigarett', u'plan', u'entrap', u'retail']
[u'union', u'question', u'safeti', u'year', u'bridg']
[u'prepar', u'tender', u'plan']
[u'team', u'uncov', u'horror', u'congo', u'violenc']
[u'aim', u'baghdad', u'target']
[u'bomber', u'target', u'saddam', u'result', u'unknown']
[u'confid', u'find', u'ban', u'weapon']
[u'forc', u'attack', u'central', u'baghdad']
[u'forc', u'deep', u'insid', u'baghdad', u'palac', u'wit']
[u'forc', u'deliber', u'attack', u'convoy', u'russian']
[u'journalist', u'emb', u'troop', u'die', u'near']
[u'marin', u'cross', u'bridg', u'near', u'baghdad']
[u'marin', u'iraq', u'discard', u'chemic', u'suit']
[u'marin', u'insid', u'saddam', u'palac', u'fight']
[u'iraq', u'long', u'haul', u'iraqi', u'opposit']
[u'site', u'militari']
[u'say', u'baghdad', u'attack', u'raid', u'battl', u'ahead']
[u'say', u'iraq', u'burn', u'bridg']
[u'seiz', u'presidenti', u'palac']
[u'unit', u'attack', u'palac', u'fight', u'rag', u'heart']
[u'vasco', u'goal', u'thriller', u'brazil', u'edmundo']
[u'bushfir', u'inquiri', u'begin']
[u'govt', u'plan', u'aim', u'reduc', u'water']
[u'govt', u'urg', u'green', u'light', u'marina', u'plan']
[u'nat', u'leav', u'door', u'open', u'coalit']
[u'waterfal', u'survivor', u'tell', u'train', u'speed']
[u'water', u'wont', u'move', u'studi', u'gallop']
[u'wheelchair', u'access', u'plan', u'todd', u'mall']
[u'woman', u'hospitalis', u'perth', u'suspect', u'sar']
[u'work', u'begin', u'northern', u'marin', u'plan']
[u'protest', u'charg', u'harbour', u'action']
[u'chines', u'children', u'drink', u'soya', u'milk']
[u'impos', u'extra', u'condit', u'region']
[u'alga', u'outbreak', u'close', u'oyster', u'farm']
[u'jazeera', u'say', u'baghdad', u'offic']
[u'ord', u'close', u'lower', u'earli']
[u'welcom', u'patient', u'payout']
[u'cameraman', u'die', u'attack', u'press']
[u'attract', u'outweigh', u'racism', u'claim', u'tourism', u'group']
[u'melbourn', u'match', u'abandon']
[u'australia', u'lead', u'clare', u'higson', u'trophi', u'golf', u'tournament']
[u'australian', u'busi', u'buffet', u'global', u'event']
[u'australian', u'clock', u'billion', u'road']
[u'australia', u'surviv', u'scare', u'guyana']
[u'australia', u'larg', u'role', u'iraq']
[u'author', u'probe', u'sar', u'cockroach', u'link']
[u'baghdad', u'hospit', u'face', u'critic', u'situat']
[u'baghdad', u'rashid', u'militari', u'airfield', u'hand']
[u'bank', u'give', u'thief', u'number', u'steal', u'card']
[u'barrett', u'timmin', u'clear', u'injuri']
[u'blacklock', u'commit']
[u'botham', u'somerset']
[u'brisban', u'council', u'seek', u'creat', u'industri']
[u'british', u'trio', u'convict', u'millionair', u'cheat', u'plot']
[u'brogden', u'reveal', u'revamp', u'shadow', u'cabinet']
[u'break', u'hill', u'popul', u'shrink']
[u'budd', u'make', u'marathon', u'trip', u'london']
[u'bush', u'blair', u'resum', u'belfast', u'summit']
[u'busi', u'art', u'program', u'boost', u'career', u'young']
[u'withdraw', u'prawn', u'farm', u'licenc']
[u'cameramen', u'kill', u'attack', u'press', u'hotel']
[u'campaign', u'urg', u'graduat']
[u'champ', u'leagu', u'clash', u'bigger', u'world', u'ferguson']
[u'citi', u'plan', u'go', u'govt']
[u'civilian', u'report', u'kill', u'baghdad', u'bomb']
[u'clark', u'defend', u'right', u'shout', u'drink']
[u'coalit', u'command', u'visit', u'iraq']
[u'cobaw', u'bushfir', u'destroy']
[u'coetzer', u'ralli', u'beat', u'czech', u'chladkova']
[u'competitor', u'pull', u'nation', u'karat']
[u'glitch', u'caus', u'packer', u'summon', u'polic']
[u'concern', u'air', u'network', u'site', u'closur']
[u'confer', u'tackl', u'high', u'rat', u'indigen']
[u'construct', u'detail', u'burni', u'unit', u'know']
[u'cooma', u'bash', u'suspect', u'appear', u'court']
[u'costa', u'sack', u'exec', u'major', u'transport', u'shakeup']
[u'council', u'abandon', u'hello', u'light', u'plan']
[u'council', u'plan', u'attract', u'migrant']
[u'council', u'push', u'road', u'link']
[u'council', u'urg', u'govt', u'match', u'sand', u'remov']
[u'council', u'build', u'supervis', u'school', u'cross']
[u'court', u'challeng', u'plan', u'prison', u'transfer']
[u'court', u'order', u'noosa', u'council', u'compo', u'claim']
[u'crawley', u'get', u'warn', u'hampshir', u'captain']
[u'detect', u'stand', u'corrupt']
[u'develop', u'delay', u'offer', u'lesson']
[u'dinosaur', u'attract', u'open', u'time', u'easter']
[u'promis', u'research', u'centr', u'secur']
[u'dutch', u'outsid', u'nail', u'novak']
[u'europ', u'plan', u'launch', u'satellit', u'mishap']
[u'expert', u'probe', u'cockroach', u'sar', u'link']
[u'expert', u'seek']
[u'explos', u'baghdad', u'palac', u'hold', u'forc']
[u'famili', u'flee', u'baghdad']
[u'farmer', u'claim', u'salin', u'fund', u'shortfal']
[u'farmer', u'continu', u'resist', u'basslink', u'surveyor']
[u'fergi', u'laugh', u'beckham', u'transfer', u'talk']
[u'fergi', u'withdraw', u'claim', u'draw', u'fix']
[u'fierc', u'clash', u'insid', u'palac', u'compound']
[u'exchang', u'east', u'baghdad']
[u'flag', u'burner', u'face', u'court']
[u'petrol', u'sniffer', u'help', u'develop', u'communiti']
[u'french', u'champion', u'lyon', u'question', u'confeder']
[u'french', u'club', u'plan', u'swoop', u'wallabi', u'black']
[u'glori', u'back', u'crawford', u'report']
[u'govt', u'go', u'soft', u'nauru', u'passport', u'labor']
[u'govt', u'upgrad', u'tanzania', u'travel', u'warn']
[u'govt', u'urg', u'unsaf', u'rail', u'bridg']
[u'graphic', u'imag', u'send', u'chang', u'stanc']
[u'group', u'seek', u'council', u'elect', u'candid']
[u'hamilton', u'walker', u'ban', u'drug', u'test']
[u'harbour', u'protest', u'aim', u'brown']
[u'hawthorn', u'coach', u'stay', u'despit', u'health']
[u'highway', u'boost', u'announc', u'north', u'west']
[u'hill', u'chang', u'foot', u'role']
[u'histor', u'elect', u'fruit', u'vege', u'grower']
[u'hmas', u'emsydneyem', u'secur', u'breach', u'occur']
[u'insur', u'rule', u'threaten', u'rock', u'climb', u'compani']
[u'iraq', u'battlefield', u'chang', u'tack', u'pentagon']
[u'iraqi', u'domest', u'televis', u'baghdad']
[u'iraq', u'vow', u'surrend']
[u'itiner', u'area', u'unlik', u'work', u'darwin', u'mayor']
[u'kato', u'fight', u'life', u'suzuka', u'crash']
[u'king', u'knock', u'windi']
[u'king', u'turn', u'windi', u'coach']
[u'koeman', u'take', u'pressur', u'ajax', u'milan', u'game']
[u'leed', u'deni', u'kewel']
[u'line', u'adelaid', u'cabaret', u'festiv', u'reveal']
[u'live', u'wast', u'insid', u'baxter', u'bartlett']
[u'local', u'govt', u'get', u'fair', u'share', u'revenu', u'egan']
[u'clear', u'sar']
[u'maritim', u'museum', u'seek', u'time', u'curat']
[u'matilda', u'cours', u'world']
[u'mayo', u'make', u'late', u'break', u'open', u'basqu', u'stage']
[u'mcgrath', u'test']
[u'mcgrath', u'test']
[u'mcgrath', u'pois', u'windi', u'return']
[u'mcgrath', u'ponder', u'west', u'indi', u'return']
[u'share', u'takeov', u'offer']
[u'takeov', u'rais', u'concern', u'town']
[u'miner', u'hop', u'copper', u'gold', u'deposit']
[u'miner', u'boost', u'indigen', u'worker']
[u'mustard', u'fals', u'alarm']
[u'mustard', u'like', u'near', u'najaf']
[u'mysteri', u'virus', u'kill', u'children', u'vietnam']
[u'nat', u'endors', u'rail', u'worker', u'charter', u'tower']
[u'boat', u'launch', u'facil', u'open']
[u'catchment', u'manag', u'author']
[u'korean', u'economi', u'collaps']
[u'elect', u'dardanup']
[u'nomin', u'council', u'ward']
[u'word', u'saddam', u'fate', u'bomb']
[u'staff', u'strike']
[u'govt', u'urg', u'respond', u'deer', u'woe']
[u'aim', u'boost', u'domest', u'tourism', u'wake', u'sar']
[u'ask', u'answer', u'prison', u'transfer']
[u'odonnel', u'suspend', u'week']
[u'opposit', u'scaremong', u'ambul', u'servic']
[u'order', u'quick', u'restor', u'basra']
[u'pair', u'face', u'court', u'caravan', u'park', u'death']
[u'pair', u'court', u'high', u'speed', u'chase']
[u'pappa', u'pluck', u'rabbitoh', u'produc']
[u'penelop', u'cruz', u'sue', u'aust', u'defam']
[u'pentagon', u'report', u'personnel', u'kill']
[u'phelp', u'train', u'thorp', u'hackett']
[u'piggin', u'step', u'south', u'deal']
[u'sicken', u'saddam', u'opul']
[u'polic', u'arrest', u'peopl', u'drug', u'blitz']
[u'polic', u'concern', u'miss']
[u'polic', u'deni', u'unprepar', u'warship', u'protest']
[u'polic', u'probe', u'blue', u'ribbon', u'clue']
[u'polic', u'renew', u'appeal', u'help', u'truck']
[u'polic', u'seek', u'help', u'bodi', u'dump', u'park']
[u'polic', u'seek', u'ident', u'cyclist', u'kill']
[u'polic', u'warn', u'tourist', u'opportunist', u'crime']
[u'polit', u'obscur', u'bushfir', u'debat', u'academ']
[u'port', u'stanvac', u'refineri', u'stop', u'product']
[u'power', u'water', u'phase', u'compani', u'logo']
[u'power', u'station', u'propon', u'work', u'reduc']
[u'preliminari', u'test', u'chemic', u'agent', u'iraq', u'site']
[u'press', u'group', u'slam', u'attack', u'journalist', u'baghdad']
[u'protect', u'scarv', u'tie', u'snap', u'consum']
[u'protest', u'arrest', u'sydney', u'rout', u'gulf']
[u'report', u'say', u'tank', u'aim', u'iraq', u'media', u'hotel']
[u'continu', u'expand', u'domest', u'servic']
[u'richardson', u'track', u'quick', u'recoveri']
[u'richardson', u'undergo', u'cheekbon', u'surgeri']
[u'tinto', u'chair', u'retir', u'octob']
[u'rise', u'cost', u'forc', u'school', u'seek', u'fund']
[u'robber', u'raid', u'polic']
[u'roberto', u'carlo', u'give', u'provision', u'fifa']
[u'rocket', u'blow', u'pakistani', u'pipelin']
[u'continu', u'easter', u'sunday', u'trade']
[u'ruddock', u'investig', u'clark', u'alleg', u'shout']
[u'russia', u'confin', u'cosmonaut', u'day', u'mar']
[u'govt', u'reject', u'drought', u'packag', u'claim']
[u'saleyard', u'futur', u'remain', u'unclear']
[u'sar', u'bigger', u'econom', u'threat', u'airport']
[u'sar', u'stop', u'treat', u'china']
[u'sar', u'fear', u'forc', u'everton', u'china', u'tour']
[u'sar', u'forc', u'singapor', u'airlin', u'defer']
[u'troop', u'stop', u'russian', u'convoy', u'iraq']
[u'scientist', u'clone', u'endang', u'asian', u'banteng']
[u'secur', u'concern', u'plan', u'baxter', u'protest']
[u'seed', u'vicent', u'oust', u'moroccan', u'round']
[u'selga', u'particip', u'develop', u'streamlin']
[u'sheikh', u'help', u'rule', u'basra']
[u'korea', u'open', u'talk', u'troop']
[u'small', u'builder', u'unfair', u'blame', u'surveyor']
[u'stink', u'bomb', u'protest', u'pari', u'auction']
[u'striker', u'women', u'hockey', u'semi']
[u'studi', u'highlight', u'home', u'fact']
[u'sukur', u'open', u'blackburn', u'account', u'destroy', u'fulham']
[u'swashbuckl', u'real', u'expect', u'unit', u'attack']
[u'talli', u'disprov', u'past', u'jibe']
[u'teenag', u'die', u'fall', u'silo']
[u'teen', u'help', u'catch', u'busi', u'smoke', u'sale']
[u'journalist', u'kill', u'amid', u'battl', u'baghdad']
[u'tiger', u'deni', u'odonnel', u'suspens', u'appeal']
[u'tourism', u'busi', u'verg', u'closur']
[u'trio', u'charg', u'polic', u'drug', u'raid']
[u'ullrich', u'clear', u'comeback']
[u'union', u'warn', u'nation', u'support', u'pasminco']
[u'deni', u'deliber', u'target', u'jazeera']
[u'forc', u'enter', u'baghdad', u'north']
[u'plane', u'go', u'iraq', u'pilot', u'safe']
[u'say', u'know', u'iraqi', u'leader']
[u'target', u'sit', u'baghdad']
[u'video', u'show', u'detect', u'take', u'money', u'royal', u'commiss']
[u'vital', u'role', u'blair', u'bush']
[u'volunt', u'need', u'creat', u'south', u'island']
[u'race', u'cure', u'cancer']
[u'waterfal', u'inquiri', u'hear', u'mechan', u'problem']
[u'waterfal', u'probe', u'tell', u'train', u'prone', u'break', u'failur']
[u'beat', u'ferrari']
[u'westpac', u'say', u'metal', u'price', u'improv']
[u'wild', u'wind', u'rain', u'cyclon', u'inigo', u'near', u'coast']
[u'wood', u'absent', u'rain', u'sodden', u'augusta']
[u'yarragon', u'tourism', u'facelift']
[u'youth', u'charg', u'arm', u'robberi']
[u'zabel', u'rank']
[u'zimbabw', u'stun', u'lanka', u'enter', u'sharjah', u'final']
[u'impos', u'extra', u'condit', u'licenc']
[u'accc', u'lose', u'farrington', u'fayr', u'case', u'high', u'court']
[u'accus', u'dirti', u'trick', u'perth', u'polit']
[u'staff', u'strike', u'secur', u'concern']
[u'chief', u'minist', u'urg', u'return', u'local', u'news']
[u'legisl', u'assembl', u'closer', u'insur']
[u'adelaid', u'council', u'candid', u'urg', u'vision']
[u'involv', u'distribut', u'iraqi']
[u'age', u'care', u'nurs', u'discuss', u'woe']
[u'alic', u'spring', u'polic', u'arrest', u'suspect', u'fatal']
[u'allenbi', u'parri', u'receiv', u'treatment', u'ahead', u'master']
[u'see', u'tour', u'guid', u'spot', u'eye']
[u'angri', u'cut', u'oper', u'hour']
[u'ancelotti', u'koeman', u'look', u'bright']
[u'arthur', u'pratt', u'suffer', u'round', u'defeat']
[u'atsic', u'propos', u'show', u'way', u'tackl', u'poverti']
[u'australian', u'urg', u'holiday', u'home']
[u'bali', u'tourism', u'suffer', u'visa', u'price', u'hike']
[u'bank', u'compli', u'chang', u'bank']
[u'bank', u'tighten', u'secur', u'onlin', u'shop']
[u'beach', u'whale', u'tasti', u'treat', u'island']
[u'blair', u'warn', u'iraq']
[u'brazin', u'share', u'fall', u'profit', u'warn']
[u'brisban', u'detect', u'assist', u'attack', u'probe']
[u'brit', u'attempt', u'polic', u'loot', u'basra']
[u'break', u'hill', u'resid', u'water']
[u'build', u'figur', u'confirm', u'horsham', u'growth']
[u'build', u'industri', u'worker', u'resist', u'chang']
[u'driver', u'stabl', u'level', u'cross', u'smash']
[u'bush', u'pledg', u'middl', u'east', u'peac', u'drive']
[u'stop', u'develop', u'save', u'rock']
[u'carey', u'swan', u'showdown']
[u'finish', u'drill', u'program']
[u'chairlift', u'accid', u'victim', u'seek', u'compo', u'oper']
[u'cheer', u'loot', u'break', u'baghdad']
[u'child', u'protect', u'group', u'welcom', u'jail', u'sentenc']
[u'chile', u'forum', u'highlight', u'divis']
[u'cipollini', u'play', u'ghent', u'wevelgem', u'chanc']
[u'clark', u'accus', u'ruddock', u'unaccept', u'behaviour']
[u'claw', u'hollywood', u'cat']
[u'clijster', u'reach', u'height']
[u'coalit', u'bomb', u'kill', u'afghan', u'civilian']
[u'communiti', u'group', u'oppos', u'develop', u'bankstown']
[u'concern', u'lyon', u'hous', u'develop']
[u'concern', u'doesnt', u'fair', u'share', u'fund']
[u'concern', u'wreck', u'pose', u'environment', u'risk']
[u'confid', u'tiger', u'stalk', u'unpreced', u'master', u'tripl']
[u'congressman', u'call', u'creation', u'peac']
[u'council', u'clear', u'respons', u'nowra', u'man']
[u'creditor', u'offer', u'pasminco', u'entitl', u'assur']
[u'croad', u'season', u'debut', u'richmond']
[u'cruz', u'take', u'sarth', u'limelight']
[u'davi', u'hop', u'love', u'affair', u'augusta']
[u'bosqu', u'cautious', u'despit', u'classi']
[u'denton', u'piggin', u'peac']
[u'denton', u'give', u'south', u'board', u'thumb']
[u'develop', u'continu', u'bone', u'discoveri', u'site']
[u'drug', u'dealer', u'today']
[u'doubt', u'saddam', u'son', u'kill', u'bomb', u'raid']
[u'staff', u'strike', u'fund', u'cut']
[u'strike', u'disrupt', u'court']
[u'congo', u'massacr', u'toll', u'revis']
[u'drought', u'tight', u'grip']
[u'eastern', u'baghdad', u'control', u'offici']
[u'aynaoui', u'arazi', u'home', u'soil']
[u'eleph', u'spring', u'antelop', u'cover', u'dark']
[u'back', u'garcia', u'glori']
[u'employe', u'steal', u'gambl', u'problem']
[u'experi', u'aborigin', u'remain', u'stop', u'leader']
[u'fatal', u'crash', u'spark', u'drive', u'school', u'train', u'review']
[u'govt', u'outlin', u'post', u'iraq', u'stanc', u'labor']
[u'crew', u'continu', u'patrol', u'perimet']
[u'forum', u'discuss', u'extens', u'council', u'boundari']
[u'franc', u'britain', u'meet', u'mend', u'fenc', u'iraq']
[u'fraser', u'trial', u'delay']
[u'fraud', u'aust', u'cost', u'crime']
[u'freeman', u'relax', u'realiti', u'check', u'loss']
[u'fruit', u'concern', u'spark', u'warn']
[u'fruit', u'grower', u'disast', u'relief', u'fund']
[u'fuelwatch', u'extend']
[u'fuelwatch', u'extend']
[u'celebr', u'game', u'mileston']
[u'celebr', u'game']
[u'govt', u'liabl', u'earli', u'birth', u'escap', u'stick']
[u'group', u'interven', u'blue', u'ribbon', u'disput']
[u'harvest', u'trail', u'expans', u'welcom']
[u'higher', u'educ', u'review', u'depend', u'budget']
[u'hill', u'miss', u'shark', u'clash']
[u'hope', u'rail', u'coast', u'joint', u'tourism', u'promot']
[u'hope', u'rail', u'overhaul', u'complement', u'coal', u'freight']
[u'indonesian', u'offic', u'indict', u'atroc']
[u'indoor', u'pool', u'plan', u'shelv']
[u'injuri', u'concern', u'cook']
[u'iraq', u'develop', u'steer', u'ord']
[u'iraqi', u'celebr', u'fall', u'saddam']
[u'iraq', u'reconstruct', u'australia']
[u'knight', u'gain', u'momentum', u'player']
[u'knight', u'welcom', u'kennedi']
[u'latrob', u'valley', u'doctor', u'ban', u'practis']
[u'litig', u'threat', u'close', u'popular', u'swim', u'hole']
[u'local', u'govt', u'ask', u'clarifi', u'stand', u'legalis']
[u'local', u'hero', u'wright', u'seal', u'promot']
[u'local', u'woodchip', u'export', u'doubl', u'port', u'author']
[u'longreach', u'land', u'go', u'hammer']
[u'loot', u'continu', u'basra']
[u'manag', u'team', u'announc', u'sober', u'shelter']
[u'face', u'murder', u'charg', u'remand', u'custodi']
[u'mcgradi', u'await', u'result', u'polic', u'station', u'closur']
[u'convict', u'murder', u'member', u'bandido']
[u'minist', u'say', u'prison', u'wont', u'return']
[u'minist', u'consid', u'strategi', u'expel']
[u'monto', u'goat', u'farmer', u'award', u'bursari']
[u'monti', u'brush', u'asid', u'poor', u'form', u'eye', u'master']
[u'call', u'central', u'water', u'forum']
[u'reduc', u'homeless', u'say']
[u'hit', u'opposit', u'network', u'claim']
[u'weigh', u'option', u'expel', u'student']
[u'mum', u'petit', u'doubl', u'jeopardi']
[u'nauru', u'detent', u'camp', u'extend', u'downer']
[u'mine', u'compani', u'list']
[u'outlook', u'boost', u'master']
[u'north', u'coast', u'politician', u'elect', u'opposit']
[u'norther', u'draw', u'favour', u'rosehil']
[u'upgrad', u'bankstown', u'airport']
[u'seek', u'drought', u'assist']
[u'sar', u'case', u'recov']
[u'renam', u'charl', u'darwin', u'univers']
[u'offici', u'attend', u'post', u'iraq', u'reconstruct']
[u'ombudsman', u'head', u'wide']
[u'outback', u'game', u'cancel']
[u'pakistan', u'thrash', u'kenya', u'sharjah']
[u'patient', u'return', u'home', u'council', u'approv']
[u'player', u'assoc', u'concern', u'financ', u'investig']
[u'player', u'concentr', u'compet', u'membership']
[u'port', u'author', u'council', u'agre']
[u'profit', u'warn', u'dampen', u'wall', u'street', u'enthusiasm']
[u'program', u'curb', u'youth', u'depress', u'brisban']
[u'qanta', u'cut', u'prompt', u'ansett', u'levi']
[u'qanta', u'cut', u'impact', u'board']
[u'qanta', u'loss', u'regrett']
[u'rain', u'continu', u'tasmania']
[u'rampag', u'raul', u'help', u'real', u'sink', u'unit']
[u'rampag', u'raul', u'put', u'real', u'seat']
[u'receivership', u'whitsunday', u'resort']
[u'receiv', u'sell', u'asset']
[u'cross', u'suspend', u'baghdad', u'work']
[u'report', u'await', u'liber', u'baghdad', u'basement']
[u'resid', u'alert', u'possibl', u'water', u'crisi']
[u'resid', u'vote', u'council']
[u'resort', u'set', u'committe', u'local', u'govt', u'void']
[u'riverfront', u'masterplan', u'wont', u'slow', u'marina', u'progress']
[u'rotarian', u'converg', u'brisban', u'despit', u'sar']
[u'continu', u'salin', u'fund']
[u'russia', u'zvonareva', u'advanc', u'charleston']
[u'saddam', u'surviv', u'bomb', u'report']
[u'face', u'fertilis', u'shortag']
[u'opposit', u'seek', u'assur', u'drought', u'fund']
[u'sar', u'forc', u'singapor', u'church', u'halt', u'confess']
[u'sar', u'threat', u'see', u'mask', u'access', u'increas']
[u'schnyder', u'oust', u'rain', u'plagu', u'charleston', u'event']
[u'school', u'children', u'drought', u'area', u'coast', u'trip']
[u'score', u'wound', u'palestinian', u'school', u'attack']
[u'start', u'young', u'studi']
[u'smooth', u'tinto', u'stewardship', u'transit', u'predict']
[u'soccer', u'australia', u'board', u'discuss', u'damn', u'report']
[u'soccer', u'australia', u'board', u'discuss', u'damn', u'report']
[u'street', u'celebr', u'iraqi', u'citi']
[u'student', u'travel', u'program']
[u'studi', u'show', u'asthma', u'case', u'decreas']
[u'stuff', u'dolli', u'go', u'display']
[u'sydney', u'resid', u'urg', u'continu', u'save', u'water']
[u'govt', u'face', u'question', u'sell', u'off']
[u'tasmania', u'introduc', u'handgun', u'restrict', u'legisl']
[u'teacher', u'elect', u'highlight', u'caus']
[u'technic', u'hitch', u'delay', u'rocket', u'launch']
[u'report', u'million', u'profit']
[u'tfga', u'air', u'concern', u'killafaddi', u'saleyard']
[u'kill', u'janeiro', u'gang', u'violenc']
[u'ignor', u'call', u'drop', u'gunston', u'fight']
[u'trezeguet', u'miss', u'rest', u'season']
[u'trio', u'face', u'court', u'cannabi', u'crop']
[u'ullrich', u'rejoic', u'return', u'rank']
[u'unhcr', u'voic', u'concern', u'baghdad', u'lawless']
[u'union', u'want', u'govt', u'stop', u'refineri', u'closur']
[u'discuss', u'korean', u'crisi']
[u'iraqi', u'bind', u'wheat']
[u'urgent', u'court', u'hear', u'detaine', u'centr', u'strike']
[u'base', u'seoul', u'offici']
[u'forc', u'reloc', u'central', u'seoul']
[u'hold', u'iraqi', u'pow']
[u'kurd', u'captur', u'mountain', u'close', u'mosul']
[u'marin', u'advanc', u'unoppos', u'baghdad']
[u'plan', u'strike', u'tikrit', u'report']
[u'strike', u'eagl', u'crew', u'miss']
[u'tank', u'reach', u'central', u'baghdad']
[u'troop', u'deploy', u'philippin', u'rebel']
[u'chairlift', u'collaps', u'hard', u'prevent', u'minist']
[u'govt', u'urg', u'review', u'gippsland', u'water', u'manag']
[u'vicioso', u'snatch', u'stage', u'lead', u'basqu', u'tour']
[u'public', u'servant', u'tell', u'cooper']
[u'govt', u'award', u'wrong', u'imprison']
[u'govt', u'wont', u'forc', u'council', u'merger']
[u'road', u'budget', u'slash']
[u'royal', u'commiss', u'adjourn', u'evid']
[u'sar', u'claim', u'qanta', u'job']
[u'warship', u'protest', u'face', u'crimin', u'charg']
[u'school', u'quarantin', u'student', u'stop', u'sar']
[u'waterfal', u'rail', u'inquiri', u'hear', u'eyewit']
[u'water', u'restrict', u'cole', u'lift']
[u'water', u'remain', u'agenda', u'despit', u'board', u'dissolv']
[u'waugh', u'expect', u'windi', u'fight']
[u'western', u'rocket', u'fire', u'iraq', u'kill', u'child', u'iran']
[u'present', u'sar', u'report', u'china']
[u'wiki', u'suspend', u'match']
[u'wine', u'export', u'roll']
[u'woman', u'face', u'fraud', u'charg', u'get', u'adjourn']
[u'women', u'renmark', u'pilot', u'confer']
[u'workshop', u'dairi', u'farmer', u'collect']
[u'youth', u'centr', u'seek', u'safe', u'overnight', u'accommod']
[u'fin', u'abus', u'worker']
[u'centuri', u'chines', u'artefact']
[u'aborigin', u'leader', u'urg', u'beatti', u'meet']
[u'aborigin', u'protest', u'radioact', u'wast', u'dump']
[u'health', u'profession', u'minist', u'tabl']
[u'actu', u'campaign', u'youth']
[u'unemploy', u'trend', u'increas']
[u'adelaid', u'politician', u'say', u'friday', u'night', u'traffic']
[u'alchol', u'free', u'zone', u'widen']
[u'alleg', u'peopl', u'smuggler', u'face', u'court']
[u'amateur', u'thiev', u'damag', u'pompeii', u'fresco']
[u'amend', u'delay', u'environment', u'protect', u'law']
[u'approach', u'public', u'drunken']
[u'arazi', u'coast', u'casablanca', u'quarter', u'final']
[u'armstrong', u'retir', u'circuit', u'sarth']
[u'arnott', u'fin', u'plastic', u'biscuit']
[u'aston', u'villa', u'pull', u'china', u'trip', u'asia']
[u'aussi', u'dollar', u'drop', u'slight', u'figur', u'slide']
[u'australian', u'pilot', u'scale', u'attack', u'iraq']
[u'aust', u'join', u'post', u'iraq', u'author']
[u'bateman', u'get', u'real', u'estat', u'thumb']
[u'bishop', u'slam', u'cannabi', u'plan']
[u'blair', u'bush', u'send', u'messag', u'iraqi']
[u'blair', u'postpon', u'northern', u'ireland', u'visit']
[u'blewett', u'symond', u'kent', u'stand']
[u'bowman', u'ban', u'clear', u'golden', u'slipper']
[u'bowman', u'face', u'steward', u'enquiri']
[u'brazil', u'appeal', u'roberto', u'carlo']
[u'british', u'court', u'clear', u'design', u'babi']
[u'broadcast', u'review', u'question']
[u'burn', u'victim', u'releas', u'form', u'intens', u'care']
[u'elect', u'result', u'loom']
[u'nativ', u'titl', u'offic', u'overhaul']
[u'go', u'blood', u'doner']
[u'candid', u'meet', u'greet', u'elect', u'heat']
[u'canin', u'distemp', u'outbreak', u'deni']
[u'celtic', u'press', u'home', u'advantag', u'boavista']
[u'cheney', u'trumpet', u'dazzl', u'race', u'baghdad']
[u'church', u'vandal', u'spark', u'appeal', u'help']
[u'cipo', u'disqualifi', u'klier', u'win', u'ghent', u'wevelgem', u'race']
[u'claim', u'drainag', u'scheme', u'contract', u'break']
[u'compani', u'seek', u'polic', u'protect', u'basslink']
[u'concern', u'rais', u'tourist', u'accommod']
[u'urg', u'govt', u'stop', u'pocket', u'kangaroo']
[u'continu', u'fight', u'stop', u'humanitarian']
[u'council', u'meet', u'manag']
[u'court', u'rule', u'identifi', u'blood', u'donor']
[u'crew', u'rescu', u'boast', u'capsiz']
[u'cruz', u'azul', u'qualifi', u'libertador', u'strongest']
[u'debat', u'continu', u'hydrotherapi', u'pool']
[u'defenc', u'dept', u'respond', u'call', u'leav', u'peninsula']
[u'doubt', u'rais', u'board', u'school', u'benefit']
[u'drought', u'grip']
[u'drug', u'gun', u'money', u'seiz', u'polic', u'raid']
[u'dutch', u'star', u'furi', u'tight', u'fist', u'ger']
[u'elector', u'commission', u'consid', u'banana', u'shire']
[u'line', u'concord']
[u'england', u'white', u'month']
[u'farmer', u'await', u'decis']
[u'fear', u'telstra', u'slash', u'job']
[u'feder', u'fund', u'power', u'king', u'island', u'wind']
[u'fierc', u'battl', u'baghdad', u'mosqu']
[u'face', u'murder', u'charg', u'remand', u'custodi']
[u'jordan', u'valley', u'gunfight']
[u'goal', u'race', u'storm', u'libertador', u'second']
[u'franc', u'claim', u'edg', u'euro', u'space', u'race']
[u'fund', u'seek', u'safe', u'drive', u'centr']
[u'ganguli', u'confid', u'india', u'turn', u'face']
[u'gladston', u'harbour', u'protect', u'strategi', u'releas']
[u'govt', u'crack', u'dodgi', u'didg']
[u'govt', u'criticis', u'cut', u'support']
[u'govt', u'shut', u'door', u'age', u'care', u'hostel']
[u'govt', u'unveil', u'woden', u'redevelop']
[u'green', u'attack', u'parti', u'leader', u'parliamentari']
[u'green', u'light', u'tafe', u'facil']
[u'group', u'say', u'local', u'iraqi', u'welcom', u'regim', u'collaps']
[u'group', u'address', u'jobless', u'rate']
[u'health', u'profession', u'fight', u'rise']
[u'henman', u'withdraw', u'mont', u'carlo', u'master']
[u'suffer', u'access', u'infect', u'donor']
[u'highway', u'studi', u'includ', u'rail', u'corridor']
[u'histor', u'voyag', u'dock', u'port', u'adelaid']
[u'histori', u'point', u'pakistan', u'sharjah', u'final']
[u'hope', u'prepar', u'work', u'start', u'soon']
[u'huge', u'facelift', u'plan', u'sanctuari', u'cove']
[u'hundr', u'student', u'protest', u'melbourn']
[u'hurrican', u'super', u'impact']
[u'hydro', u'get', u'fund', u'king', u'wind', u'farm']
[u'predict', u'slowdown', u'aust', u'economi']
[u'indian', u'woman', u'age', u'world', u'oldest']
[u'indigen', u'hand', u'flood', u'mitig', u'work']
[u'indi', u'tip', u'attract', u'record', u'crowd']
[u'injur', u'fli', u'number', u'caus', u'concern']
[u'inquiri', u'consid', u'suppress', u'accus', u'name']
[u'iraqi', u'offici', u'close', u'jordanian', u'border']
[u'iraqi', u'offici', u'go', u'grind']
[u'isra', u'helicopt', u'strike', u'kill', u'hama', u'activist']
[u'jewelleri', u'drug', u'cach', u'buri', u'yard']
[u'jobless', u'rate', u'climb']
[u'kafelnikov', u'sudden', u'get', u'right', u'clay']
[u'kenyan', u'pacemak', u'radcliff', u'record', u'attempt']
[u'kimberley', u'peopl', u'wait', u'year']
[u'kirkuk', u'fall', u'kurdish', u'forc']
[u'kurdish', u'fighter', u'leav', u'kirkuk', u'governor']
[u'kurdish', u'forc', u'enter', u'kirkuk', u'report']
[u'kurdish', u'forc', u'seiz', u'town', u'near', u'kirkuk']
[u'kurdish', u'forc', u'enter', u'kirkuk']
[u'liddi', u'victim', u'trial', u'abandon']
[u'liquor', u'licens', u'law', u'wont', u'chang']
[u'loud', u'blast', u'hear', u'baghdad']
[u'lowi', u'get', u'board', u'step']
[u'charg', u'hand', u'machin', u'discoveri']
[u'face', u'court', u'murder', u'charg']
[u'marin', u'search', u'saddam']
[u'marin', u'search', u'mosqu', u'saddam']
[u'mayor', u'urg', u'beef', u'disrupt']
[u'meet', u'aim', u'tail', u'dock']
[u'face', u'court', u'half', u'million', u'ecstasi']
[u'miner', u'find', u'vermiculit', u'near', u'alic']
[u'minist', u'defend', u'drought', u'declar', u'method']
[u'miss', u'safe']
[u'shower', u'predict', u'northern']
[u'question', u'school', u'educ', u'cours']
[u'slam', u'pilbara', u'studi', u'fund']
[u'murder', u'girl', u'aliv']
[u'natwa']
[u'negus', u'blast', u'crawford', u'report']
[u'fisheri', u'plan', u'expect', u'offer', u'sustain']
[u'news', u'corp', u'loss', u'drag', u'market', u'lower']
[u'compens', u'afghan', u'bomb', u'victim', u'militari']
[u'posit', u'dope', u'test', u'world']
[u'unemploy', u'rate', u'fall']
[u'corpor', u'raider', u'scuttl', u'aust', u'worker']
[u'opium', u'drink', u'withdraw', u'shelv']
[u'pagan', u'sheedi', u'start', u'word']
[u'painkil', u'cancer', u'prevent', u'link', u'studi']
[u'painkil', u'lower', u'colon', u'cancer', u'risk', u'scientist']
[u'palmerston', u'mayor', u'fight', u'boundari', u'expans']
[u'piggeri', u'approv']
[u'urg', u'swift', u'iraqi', u'handov']
[u'guilti', u'misconduct']
[u'polic', u'lower', u'truck', u'crash', u'rate']
[u'polic', u'arrest', u'link', u'outlaw', u'biki', u'gang']
[u'polic', u'minist', u'tour', u'north', u'coast']
[u'polic', u'probe', u'pend', u'bug']
[u'polic', u'search', u'miss', u'woman']
[u'power', u'ranger', u'closer', u'scottish', u'trebl']
[u'prawn', u'trawler', u'crash']
[u'qanta', u'push', u'ahead', u'allianc']
[u'qanta', u'staff', u'cut', u'impact']
[u'unemploy', u'rate', u'climb']
[u'quarantin', u'increas', u'australian', u'port']
[u'quokka', u'killer', u'await', u'sentenc']
[u'vice', u'chancellor', u'retir']
[u'radic', u'palestinian', u'lament', u'saddam', u'fall']
[u'rail', u'crash', u'probe', u'hear', u'airborn', u'evid']
[u'rain', u'reliev', u'break', u'hill', u'water', u'suppli']
[u'real', u'madrid', u'faith', u'fall', u'love', u'ronaldo']
[u'receiv', u'examin', u'king', u'bros', u'sale', u'contract']
[u'report', u'prais', u'south', u'australian', u'econom']
[u'rescu', u'packag', u'plan', u'medicar']
[u'research', u'link', u'pregnant', u'women', u'diet', u'diseas']
[u'resid', u'fruit', u'remind']
[u'restrict', u'melbourn', u'water', u'cost', u'rise']
[u'road', u'name', u'prioriti', u'road', u'recoveri']
[u'russian', u'school', u'kill', u'children']
[u'saddam', u'birthplac', u'coalit', u'sight']
[u'sainz', u'hop', u'real', u'masterclass', u'lucki', u'omen']
[u'santo', u'brazil', u'championship']
[u'sar', u'concern', u'stop', u'gold', u'coast', u'meet']
[u'sar', u'death', u'continu', u'china']
[u'sar', u'impact', u'affect', u'fruit', u'export']
[u'school', u'student', u'close']
[u'scientist', u'euthanis', u'giant', u'calf', u'clone']
[u'scientist', u'predict', u'global', u'warm', u'delug']
[u'serena', u'advanc', u'charleston']
[u'shellfish', u'alga', u'outbreak', u'slam', u'beat']
[u'simpson', u'knight', u'shipway', u'cop']
[u'socceroo', u'tiatto', u'season']
[u'storm', u'forc', u'master', u'start', u'delay']
[u'student', u'protest', u'australia']
[u'student', u'busi', u'join', u'protest']
[u'suicid', u'bomber', u'target', u'marin']
[u'govt', u'pressur', u'strike', u'deal']
[u'tasmanian', u'unemploy', u'rise']
[u'teacher', u'clock', u'secur', u'stop']
[u'territori', u'review', u'elector', u'commiss']
[u'thai', u'blank', u'czech', u'place', u'world']
[u'tourism', u'chief', u'confid', u'coast', u'surviv', u'airlin']
[u'tourist', u'drown', u'sunshin', u'coast', u'beach']
[u'town', u'camp', u'kid', u'initi', u'screen']
[u'train', u'withdraw', u'servic']
[u'tram', u'propos', u'unveil', u'mall']
[u'travel', u'alert', u'turkey', u'lead', u'anzac']
[u'turkey', u'watch', u'kirkuk', u'situat']
[u'divid', u'north', u'korea', u'nuclear', u'stand']
[u'unemploy', u'fall', u'south', u'australia']
[u'unemploy', u'increas', u'victoria']
[u'unemploy', u'rise']
[u'avoid', u'victori', u'danc', u'fall', u'baghdad']
[u'substanti', u'forc', u'tikrit', u'area']
[u'kurdish', u'forc', u'kirkuk', u'popular', u'upris']
[u'militari', u'say', u'iraq', u'battl', u'come']
[u'tank', u'head', u'mosul', u'strike', u'report']
[u'valverd', u'win', u'photo', u'finish', u'basqu', u'tour']
[u'govt', u'urg', u'address', u'insur', u'woe']
[u'govt', u'urg', u'reconsid', u'elector', u'offic', u'fund']
[u'victoria', u'introduc', u'water', u'legisl']
[u'virgin', u'jockey', u'freedom']
[u'govt', u'ban', u'minist', u'meet', u'premier']
[u'ground', u'fli', u'doctor', u'contract', u'saudi', u'arabia']
[u'watchdog', u'savag', u'qanta', u'deal']
[u'unemploy', u'fall', u'slight']
[u'woman', u'arrest', u'assassin', u'serbian']
[u'search', u'frog', u'tasmania']
[u'abera', u'world', u'best', u'london']
[u'abl', u'seaman', u'sail']
[u'impos', u'water', u'restrict']
[u'say', u'specialist', u'troop', u'help', u'rebuild', u'post']
[u'warn', u'terror', u'attack']
[u'agre', u'doubl', u'jeopardi', u'review']
[u'airlin', u'chief', u'want', u'merger', u'ahead', u'despit']
[u'anarchi', u'mosul', u'fall']
[u'anzac', u'clash', u'sell']
[u'custom', u'warn', u'fake', u'websit']
[u'arm', u'looter', u'roam', u'baghdad', u'street']
[u'arm', u'roam', u'street', u'baghdad']
[u'arsenal', u'southampton', u'face', u'test', u'nerv']
[u'aust', u'role', u'iraq', u'captur', u'film']
[u'bayern', u'approach', u'bundelisga', u'coron']
[u'beach', u'get', u'poor', u'water', u'qualiti', u'rat']
[u'beatti', u'predict', u'inquiri', u'ryan', u'disappear']
[u'beij', u'report', u'sar', u'case']
[u'berlin', u'polic', u'storm', u'hijack']
[u'black', u'disappoint', u'sack']
[u'blade', u'manag', u'readi', u'giant', u'kill']
[u'bolivar', u'crash', u'libertador', u'puma']
[u'bolling', u'get', u'team']
[u'bowman', u'clear', u'golden', u'slipper']
[u'britain', u'begin', u'scale', u'gulf', u'forc']
[u'burnley', u'tunnel', u'leakag', u'decad']
[u'bushfir', u'area', u'reopen']
[u'hijack', u'berlin', u'bank', u'robberi']
[u'bush', u'promis', u'iraqi', u'protect', u'disord']
[u'footi', u'facil', u'boost']
[u'carlton', u'stun', u'essendon']
[u'celt', u'angri', u'date', u'vital', u'leagu', u'clash']
[u'chao', u'reign', u'baghdad']
[u'claim', u'nation', u'park', u'move', u'hurt', u'popul']
[u'collingwood', u'decid', u'fraser', u'fate', u'afternoon']
[u'commiss', u'find', u'tape', u'cost', u'thousand']
[u'committe', u'review', u'doubl', u'jeopardi']
[u'compani', u'run', u'develop', u'land']
[u'compani', u'list']
[u'concern', u'air', u'nation', u'servic', u'medal', u'delay']
[u'confid', u'cowboy', u'hope', u'rooster']
[u'council', u'help', u'struggl', u'shearer', u'museum']
[u'court', u'hear', u'appeal', u'overturn']
[u'croc', u'retain', u'stacker']
[u'cuban', u'offici', u'thwart', u'hijack', u'attempt']
[u'cuper', u'confid', u'despit', u'inter', u'lacklustr', u'display']
[u'dementia', u'respit', u'centr', u'provid', u'relief', u'home']
[u'democrat', u'urg', u'iraq', u'peacekeep', u'mission']
[u'dengu', u'effort', u'begin']
[u'deputi', u'mayor', u'resign', u'manag', u'concern']
[u'develop', u'like', u'boost', u'tram', u'patronag']
[u'baiter', u'pass', u'skill', u'youth']
[u'dougla', u'zeta', u'jone', u'landmark', u'case']
[u'driver', u'urg', u'care', u'near', u'spill']
[u'drought', u'boost', u'south', u'west', u'properti']
[u'drought', u'high', u'wool', u'price', u'cost', u'job']
[u'easter', u'trade', u'ban', u'caus', u'confus']
[u'elli', u'favour', u'perth', u'sack', u'black']
[u'england', u'face', u'uefa', u'racism', u'charg']
[u'reject', u'heater', u'rebat']
[u'evid', u'show', u'malform', u'brain', u'paint', u'addict']
[u'farmer', u'drought']
[u'farmer', u'look', u'forward', u'rain']
[u'farmer', u'welcom', u'rain']
[u'finn', u'gronholm', u'lead', u'zealand']
[u'firearm', u'charg', u'drop', u'packer']
[u'fisher', u'fear', u'long', u'wait', u'compo']
[u'offic', u'injur', u'iraq', u'suicid', u'attack']
[u'footbal', u'academi', u'seek', u'expans', u'fund']
[u'footbal', u'club', u'honour', u'bali', u'victim']
[u'frank', u'say', u'iraq', u'ruler', u'dead', u'flee']
[u'fraser', u'debut', u'geelong']
[u'royal', u'perform', u'royal', u'resort', u'titl']
[u'furnitur', u'proceed', u'help', u'creditor']
[u'gayl', u'eligibil', u'select', u'australia', u'seri']
[u'govt', u'accus', u'cover', u'aborigin', u'prison']
[u'govt', u'put', u'ethanol', u'level', u'petrol']
[u'grace', u'bros', u'shut', u'door', u'tamworth']
[u'green', u'relay']
[u'gronholm', u'domin', u'zealand']
[u'gronholm', u'earli', u'ralli', u'lead']
[u'group', u'unhappi', u'reject', u'inmat', u'centr']
[u'gunman', u'hold', u'hostag', u'berlin']
[u'heavi', u'rain', u'wreak', u'havoc', u'victoria']
[u'heritag', u'offic', u'move', u'monitor', u'burrup']
[u'high', u'court', u'grant', u'leav', u'copyright', u'appeal']
[u'high', u'noon', u'toon', u'unit']
[u'hospit', u'wont', u'charg', u'patient', u'polici', u'excess']
[u'hotlin', u'youth', u'work', u'concern']
[u'hydro', u'stop', u'cloud', u'seed', u'april']
[u'illeg', u'marron', u'fish', u'spark', u'warn']
[u'indonesian', u'skipper', u'remand', u'custodi']
[u'indonesia', u'warn', u'militari', u'solut', u'aceh']
[u'iraqi', u'associ', u'say', u'cwealth', u'harass']
[u'iraqi', u'corp', u'surrend', u'mosul']
[u'iraqi', u'relat', u'militari', u'jail']
[u'iraqi', u'negoti', u'surrend', u'mosul']
[u'iraqi', u'troop', u'abandon', u'mosul', u'kurd']
[u'isra', u'forc', u'kill', u'militari', u'islam', u'jihad', u'leader']
[u'jacob', u'put', u'windi', u'health']
[u'jail', u'cell', u'youth', u'sport', u'area']
[u'japanes', u'report', u'find', u'product', u'clone', u'cattl']
[u'jayasuriya', u'quit', u'lankan', u'captainci']
[u'juventus', u'seek', u'titl', u'tonic', u'european', u'choker']
[u'knight', u'gain', u'reveng']
[u'kurdish', u'exit', u'kirkuk', u'enter', u'mosul']
[u'land', u'go', u'block']
[u'land', u'agreement', u'allow', u'women', u'safe', u'hous']
[u'crunch', u'lyon', u'face', u'bordeaux']
[u'looter', u'shoot', u'baghdad']
[u'luxuri', u'ship', u'cancel', u'voyag', u'staff', u'fall']
[u'lyle', u'launch', u'round', u'play', u'augusta']
[u'magistr', u'spar', u'jail']
[u'mall', u'plan', u'protest', u'meet', u'mayor']
[u'man', u'condit', u'improv', u'blast']
[u'trap', u'crash']
[u'unit', u'prove']
[u'market', u'edg', u'higher', u'finish', u'week']
[u'mental', u'health', u'worker', u'fight', u'increas']
[u'minist', u'predict', u'success', u'battl']
[u'struggl', u'stay', u'aliv']
[u'pride', u'stake', u'milan', u'derbi']
[u'mosul', u'kirkuk', u'fall', u'militari']
[u'seek', u'speed', u'limit', u'explain']
[u'urg', u'stop', u'talk', u'alic']
[u'murphi', u'fastest', u'phillip', u'island', u'practic']
[u'nativ', u'titl', u'disput', u'court']
[u'late']
[u'chief', u'execut', u'appoint', u'health']
[u'nigerian', u'drummer', u'babatund', u'olatunji', u'die']
[u'ricin', u'contain', u'pari', u'station']
[u'govt', u'accus', u'cover', u'aborigin']
[u'govt', u'reject', u'council', u'stamp', u'duti', u'claim']
[u'show', u'fairfax', u'publish']
[u'oyster', u'harvest', u'lift', u'soon']
[u'palestinian', u'wound', u'isra', u'raid', u'gaza']
[u'perth', u'phone', u'line', u'week', u'storm']
[u'phone', u'cabl']
[u'pitcairn', u'island', u'face', u'massiv', u'scandal']
[u'player', u'bodi', u'unveil', u'replac']
[u'polic', u'toler', u'shop', u'centr']
[u'polic', u'consid', u'arson', u'abattoir', u'blaze']
[u'polic', u'jewelleri', u'owner']
[u'power', u'snatch', u'draw', u'adelaid']
[u'premier', u'disappoint', u'block', u'airlin', u'deal']
[u'protestor', u'ant', u'master']
[u'public', u'urg', u'druggi']
[u'putin', u'arriv', u'iraq', u'summit']
[u'qanta', u'award', u'contribut', u'bali', u'aftermath']
[u'qanta', u'fail', u'notifi', u'union', u'downsiz', u'plan']
[u'raikkonen', u'strip', u'brazilian', u'victori']
[u'rail', u'crash', u'probe', u'hear', u'driver', u'record']
[u'ranger', u'continu', u'trebl', u'chase']
[u'repair', u'underway', u'damag', u'powerlin']
[u'revolutionari', u'simul', u'expect', u'improv']
[u'richardson', u'chanc', u'frawley']
[u'rival', u'soccer', u'leagu', u'launch', u'today']
[u'robinson', u'reject', u'conflict', u'claim']
[u'roger', u'waratah']
[u'rugbi', u'chief', u'block', u'caucau', u'switch']
[u'russia', u'reassert', u'central', u'role', u'post']
[u'saddam', u'half', u'brother', u'barzan', u'kill', u'report']
[u'govt', u'wont', u'subsidis', u'servic']
[u'sar', u'biolog', u'weapon', u'expert']
[u'sar', u'expect', u'affect', u'local', u'aquacultur']
[u'sar', u'suspect', u'catch', u'hospit', u'breakout']
[u'search', u'flee', u'iraqi', u'offici']
[u'school', u'princip', u'name', u'young', u'person', u'year']
[u'shark', u'victim', u'save', u'coron']
[u'shiit', u'protest', u'storm', u'iraq', u'embassi', u'tehran']
[u'signific', u'progress', u'hous', u'agreement', u'vanston']
[u'japan', u'firework', u'factori', u'explos']
[u'slight', u'increas', u'home', u'loan']
[u'sentenc', u'year', u'jail', u'doubl', u'murder']
[u'sport', u'centr', u'get', u'liquor', u'licenc']
[u'sptnrl']
[u'summit', u'consid', u'boost', u'region', u'invest']
[u'support', u'summit', u'drought', u'break']
[u'surpris', u'tasmanian', u'frog', u'search']
[u'swan', u'face', u'tough', u'test', u'crow', u'roo']
[u'tail', u'dock', u'practic', u'continu']
[u'suspect', u'sar', u'case']
[u'tourism', u'campaign', u'push', u'west', u'sydneysid']
[u'trezeguet', u'season', u'juventus']
[u'tufnel', u'end', u'controversi', u'career']
[u'turkey', u'send', u'observ', u'iraq']
[u'unemploy', u'drop', u'break', u'hill']
[u'union', u'air', u'concern', u'indigen', u'affair', u'dept']
[u'union', u'fear', u'telstra', u'loss']
[u'union', u'want', u'king', u'bros', u'worker', u'entitl', u'secur']
[u'say', u'coalit', u'breach', u'geneva', u'convent']
[u'marin', u'kill', u'children', u'checkpoint', u'error']
[u'closer', u'elector', u'equal']
[u'waratah', u'down', u'wellington']
[u'warm', u'condit', u'expect', u'rest', u'master']
[u'water', u'conserv', u'measur', u'possibl', u'north', u'east']
[u'water', u'reform', u'spark', u'local', u'govt', u'concern']
[u'william', u'walk', u'meet']
[u'winemak', u'look', u'scandinavian', u'export']
[u'workcov', u'deficit', u'month']
[u'yanner', u'jail', u'hotel', u'worker', u'assault']
[u'youth', u'unemploy', u'concern', u'air']
[u'charg', u'illeg', u'tobacco', u'shipment', u'plot']
[u'plane', u'make', u'emerg', u'land', u'darwin']
[u'discuss', u'aborigin', u'incarcer']
[u'say', u'itiner', u'embarrass']
[u'ancient', u'cannib', u'protect']
[u'anti', u'protest', u'continu', u'zealand']
[u'australia', u'pont', u'langer', u'ton']
[u'australia', u'send', u'medic', u'suppli', u'baghdad']
[u'australia', u'take', u'healthi', u'lead', u'test']
[u'aust', u'send', u'urgent', u'medic', u'iraq']
[u'baghdad', u'archeolog', u'museum', u'loot']
[u'bali', u'tragedi', u'etch', u'nation', u'conscious', u'howard']
[u'beach', u'memori', u'bali', u'victim']
[u'beatti', u'say', u'public', u'servic', u'cope', u'cut']
[u'better', u'late', u'say', u'fisichella']
[u'bolton', u'admit', u'need', u'miracl']
[u'british', u'activist', u'shoot', u'gaza', u'strip', u'attack']
[u'british', u'forc', u'seek', u'restor', u'order', u'basra']
[u'british', u'kill', u'bankrobb', u'basra']
[u'british', u'wound', u'isra', u'tank']
[u'broom', u'cotton', u'trial', u'face', u'opposit']
[u'budd', u'hop', u'london', u'marathon', u'heal', u'nightmar']
[u'driver', u'die', u'train', u'crash']
[u'bush', u'hold', u'victori', u'declar']
[u'bush', u'warn', u'syria', u'border', u'close']
[u'canberra', u'jail', u'chequ', u'fraud']
[u'claim', u'sar', u'travel', u'fear', u'damag', u'lobster', u'export']
[u'club', u'revenu', u'raiser', u'associ']
[u'communiti', u'group', u'lobbi', u'public', u'land']
[u'cook', u'sidelin', u'hell', u'north']
[u'council', u'inquiri', u'team', u'reject', u'claim', u'report']
[u'crusad', u'annihil', u'cat', u'shark', u'edg', u'chief']
[u'cuba', u'execut', u'ferri', u'hijack']
[u'davi', u'claim', u'stage', u'cruz', u'win', u'circuit']
[u'dozen', u'wound', u'kashmir', u'explos']
[u'england', u'fight', u'racism', u'charg']
[u'issu', u'domin', u'malta', u'elect']
[u'famili', u'suffer', u'critic', u'burn', u'fridg', u'explod']
[u'field', u'wide', u'open', u'golden', u'slipper']
[u'nation', u'ask', u'forgiv', u'iraqi', u'debt']
[u'garner', u'defend', u'troop', u'civil', u'order', u'effort']
[u'german', u'court', u'order', u'brothel', u'refund']
[u'glitch', u'leav', u'telstra', u'broadband', u'consum']
[u'govt', u'urg', u'encourag', u'death', u'penalti', u'abolish']
[u'ikin', u'bronco']
[u'india', u'defenc', u'minist', u'say', u'trainer', u'deal']
[u'iraqi', u'demand', u'secur', u'baghdad']
[u'iraqi', u'respond', u'help']
[u'iraq', u'ambassador', u'conced', u'saddam']
[u'iraq', u'upbeat', u'inform', u'minist', u'websit']
[u'irish', u'eye', u'smile', u'wood', u'struggl']
[u'isra', u'critic', u'wound', u'british', u'activist']
[u'itali', u'threaten', u'world', u'boycott']
[u'journo', u'rescu', u'baghdad', u'hospit', u'dead']
[u'kurdish', u'troop', u'withdraw', u'kirkuk', u'forc']
[u'order', u'continu', u'downward', u'spiral', u'iraq']
[u'leak', u'memo', u'spark', u'specul', u'deegan', u'sack']
[u'littl', u'loco', u'motion', u'fame', u'die']
[u'live', u'fire', u'exercis', u'north', u'weekend']
[u'loot', u'continu', u'mosul']
[u'lyon', u'open', u'point', u'bordeaux']
[u'dead', u'hit', u'tree', u'sunshin', u'motorway']
[u'stab', u'death', u'western', u'sydney']
[u'marin', u'patrol', u'lawless', u'baghdad', u'secur']
[u'marin', u'patrol', u'baghdad', u'street']
[u'mayo', u'domin', u'final', u'tour', u'basqu']
[u'meat', u'eat', u'dinosaur', u'footprint', u'portug']
[u'remand', u'custodi', u'drug', u'raid']
[u'minist', u'target', u'broomrap', u'weed']
[u'mob', u'trash', u'baghdad', u'hotel']
[u'job', u'risk', u'singapor', u'airlin', u'tighten']
[u'polic', u'arriv', u'question', u'miss', u'girl']
[u'moroccan', u'partner', u'clash', u'casablanca', u'semi']
[u'say', u'border', u'patrol', u'appreci']
[u'museeuw', u'ride', u'hell']
[u'fli', u'home', u'australia', u'drink', u'drive']
[u'aussi', u'sar', u'cloud']
[u'victori', u'ralli', u'wall', u'street', u'return']
[u'govt', u'pressur', u'prison', u'death']
[u'green', u'govt', u'notic']
[u'person', u'miss', u'boat', u'accid']
[u'perth', u'minist', u'leav', u'iraq']
[u'petroleum', u'institut', u'welcom', u'cwealth', u'ethanol']
[u'pie', u'eagl', u'port', u'rampag', u'lion', u'roo']
[u'pie', u'eagl', u'port', u'rampag', u'lion', u'roo', u'draw']
[u'pire', u'clash']
[u'playoff', u'candid', u'forest', u'wolv', u'share']
[u'polar', u'success', u'take', u'golden', u'slipper']
[u'polic', u'arrest', u'arm', u'robberi']
[u'pont', u'confid', u'earli']
[u'post', u'general', u'say', u'secur', u'improv']
[u'power', u'restor', u'home']
[u'propos', u'access', u'aust', u'easier']
[u'putin', u'welcom', u'fall', u'saddam', u'slam', u'tactic']
[u'pyongyang', u'promis', u'nuclear', u'talk', u'chang']
[u'cattl', u'council', u'leader', u'snag', u'industri', u'award']
[u'compani', u'say', u'filtrat', u'devic', u'wipe', u'sar']
[u'govt', u'investig', u'heritag', u'list', u'option']
[u'quinn', u'nomin', u'brisban', u'lord', u'mayor']
[u'ranger', u'happi', u'celtic', u'derbi', u'date']
[u'rann', u'condemn', u'mobil', u'refineri', u'closur']
[u'rann', u'hop', u'implement', u'econom', u'summit', u'propos']
[u'cross', u'demand', u'coalit', u'protect', u'iraqi', u'hospit']
[u'cross', u'mark', u'month', u'bali', u'terrorist']
[u'rescu', u'jessica', u'lynch', u'return']
[u'resid', u'frustrat', u'anarchi', u'reign', u'baghdad']
[u'reuter', u'start', u'search', u'chairman']
[u'rumsfeld', u'critic', u'repetit', u'media', u'report']
[u'russia', u'germani', u'franc', u'urg', u'post', u'role']
[u'compani', u'director', u'jail', u'defraud', u'cwealth']
[u'saddam', u'aid', u'surrend']
[u'saddam', u'aid', u'surrend', u'reward', u'offer']
[u'saddam', u'regim', u'go', u'white', u'hous']
[u'sar', u'forc', u'toronto', u'school', u'closur']
[u'shark', u'overwhelm', u'chief']
[u'singapor', u'airlin', u'forc', u'job', u'servic']
[u'singh', u'maiden', u'centuri', u'hapless']
[u'skaif', u'fastest', u'holden', u'domin']
[u'sniper', u'greet', u'forc', u'mosul']
[u'south', u'african', u'bowler', u'arrest', u'drink', u'drive']
[u'south', u'african', u'bowler', u'send', u'home', u'drink', u'drive']
[u'south', u'tast', u'victori']
[u'south', u'tast', u'victori', u'storm', u'sink']
[u'stanhop', u'reject', u'abolish', u'doubl', u'jeopardi']
[u'stanhop', u'welcom', u'cweath', u'decis', u'ethanol', u'fuel']
[u'stay', u'home', u'blade', u'plan', u'spike', u'gunner']
[u'storm', u'power', u'north', u'west']
[u'health', u'consid', u'sar', u'option']
[u'suspect', u'cole', u'attack', u'escap', u'jail']
[u'injur', u'camper', u'explos']
[u'sar', u'death', u'hong', u'kong']
[u'time', u'champion', u'pinto', u'london', u'marathon']
[u'defend', u'polic', u'handl', u'ryan', u'case']
[u'turkey', u'monitor', u'militari', u'develop', u'northern']
[u'dead', u'inner', u'mongolia', u'sar', u'spread']
[u'injur', u'quak', u'shake', u'northern', u'itali']
[u'forc', u'kill', u'looter', u'basra', u'bank']
[u'dead', u'wound', u'mosul', u'fight']
[u'urgent', u'food', u'appeal', u'ethiopia']
[u'urgent', u'need', u'medic', u'arriv', u'baghdad']
[u'deal', u'iraqi', u'list']
[u'deleg', u'meet', u'iraqi', u'opposit', u'boucher']
[u'opt', u'anti', u'china', u'resolut', u'meet']
[u'plan', u'secur', u'stop', u'loot', u'iraq']
[u'investig', u'kill', u'journalist', u'iraq']
[u'meet', u'iraqi', u'opposit']
[u'vanston', u'happi', u'hous', u'progress']
[u'veteran', u'kafelnikov', u'estoril']
[u'voss', u'seal', u'gasp', u'draw', u'lion']
[u'expens', u'afford', u'expert', u'say']
[u'weir', u'charg', u'wood', u'begin', u'stir']
[u'west', u'wag', u'start', u'player', u'exodus']
[u'william', u'advanc', u'harkleroad', u'shock', u'hantuchova']
[u'wood', u'green', u'jacket', u'sight']
[u'zeta', u'jone', u'dougla', u'photo', u'fight']
[u'dead', u'injur', u'road']
[u'hold', u'letter', u'offer', u'reward']
[u'sar', u'death']
[u'soldier', u'rescu', u'report']
[u'welcom', u'bank', u'decis', u'open', u'saturday']
[u'accrington', u'stanley', u'step', u'away', u'footbal']
[u'milan', u'derbi', u'reviv', u'titl', u'hop']
[u'anti', u'protest', u'march', u'europ']
[u'asean', u'countri', u'send', u'deleg', u'north', u'korea']
[u'atsic', u'control', u'budget', u'ruddock']
[u'lunch']
[u'aust', u'pursu', u'free', u'trade', u'deal']
[u'australian', u'mobil', u'drive', u'studi']
[u'award', u'offer', u'rural', u'industri', u'studi']
[u'baghdad', u'curfew', u'night', u'fall']
[u'bartlett', u'support', u'humanitarian', u'role', u'troop']
[u'bayern', u'home', u'leagu', u'defeat', u'year']
[u'beatti', u'say', u'public', u'entitl', u'hear', u'teenag']
[u'bellevu', u'inquiri', u'examin', u'submiss']
[u'biofuel', u'associ', u'push', u'total', u'label']
[u'brilliant', u'blue', u'bewild', u'bull']
[u'british', u'troop', u'search', u'prison']
[u'brown', u'say', u'ground', u'iraq', u'attack']
[u'bruno', u'prepar', u'comeback', u'fight', u'harrison']
[u'builder', u'pocket', u'clean']
[u'bush', u'welcom', u'saddam', u'reign']
[u'urgent', u'overhaul', u'demerit', u'point']
[u'canegrow', u'push', u'ethanol', u'petrol']
[u'cheri', u'blair', u'address', u'melbourn', u'confer']
[u'china', u'condemn', u'loot', u'baghdad', u'embassi', u'demand']
[u'crusad', u'crush', u'cat']
[u'custom', u'seiz', u'massiv', u'tobacco', u'haul']
[u'davydenko', u'down', u'mirnyi', u'final']
[u'death', u'toll', u'rise', u'road']
[u'delight', u'ferguson', u'set', u'sight', u'arsenal']
[u'deportivo', u'crush', u'barcelona', u'close', u'real']
[u'drug', u'agenc', u'warn', u'high', u'grade', u'heroin']
[u'kill', u'nigerian', u'poll']
[u'aynaoui', u'face', u'boutter', u'casablanca', u'final']
[u'write', u'master', u'titl', u'hop']
[u'govt', u'consid', u'repatri', u'iraqi']
[u'find', u'ban', u'weapon', u'import', u'poll']
[u'sar', u'death', u'hong', u'kong']
[u'frank', u'confirm', u'soldier', u'iraq']
[u'financ', u'chief', u'action', u'iraq']
[u'garner', u'defend', u'troop', u'civil', u'order', u'effort']
[u'glori', u'leav', u'late', u'newcastl', u'hold', u'spirit']
[u'govt', u'decid', u'send', u'troop', u'iraq']
[u'govt', u'grant', u'film', u'project']
[u'grant', u'help', u'teach', u'children', u'water', u'valu']
[u'gronholm', u'lead', u'peugeot', u'zealand']
[u'gronholm', u'pois', u'victori', u'zealand']
[u'gronholm', u'win', u'zealand', u'ralli']
[u'group', u'order', u'shiit', u'muslim', u'quit', u'iraq']
[u'heroic', u'red', u'stormer']
[u'human', u'chain', u'form', u'consul', u'protest']
[u'predict', u'aust', u'hous', u'bust']
[u'iraqi', u'drug', u'traffick', u'behead', u'saudi', u'arabia']
[u'iraqi', u'protest', u'forc', u'baghdad']
[u'islam', u'leader', u'tell', u'focus', u'peacekeep']
[u'israel', u'lower', u'level', u'alert', u'attack', u'iraq']
[u'israel', u'yield', u'settlement', u'peac', u'sharon']
[u'jourdain', u'win', u'career', u'cart', u'pole', u'long', u'beach']
[u'keegan', u'keep', u'faith', u'misfir', u'strike']
[u'fall', u'troop']
[u'lara', u'ganga', u'centuri', u'windi', u'reviv']
[u'lara', u'ganga', u'spark', u'windi', u'reviv']
[u'lownd', u'take', u'damp', u'supercar', u'battl']
[u'maher', u'head', u'windi']
[u'maher', u'join', u'aussi', u'test', u'squad']
[u'maher', u'join', u'aussi', u'test', u'squad', u'west', u'indi']
[u'malta', u'hungari', u'vote', u'join']
[u'break', u'speech', u'record']
[u'charg', u'melbourn', u'murder']
[u'charg', u'murder', u'neighbourhood']
[u'critic', u'condit', u'crash']
[u'question', u'bash', u'murder']
[u'surgeri', u'croc', u'attack']
[u'marin', u'exchang', u'central', u'baghdad']
[u'mcginti', u'reject', u'green', u'briberi', u'claim']
[u'monaco', u'tab', u'lyon', u'marseill', u'slip']
[u'motherwel', u'miss', u'chanc']
[u'navi', u'veteran', u'honour', u'ceremoni']
[u'zealand', u'ahead', u'lanka', u'tour']
[u'govt', u'approv', u'saturday', u'trade', u'bank']
[u'govt', u'want', u'nation', u'crossbow']
[u'olympian', u'campbel', u'richmond', u'chief']
[u'duck', u'iraq', u'order', u'quandari']
[u'organis', u'urg', u'itali', u'boycott', u'world']
[u'pair', u'stab', u'outsid']
[u'park', u'close', u'buffalo', u'test']
[u'pavlich', u'tip', u'troubl', u'tiger']
[u'peac', u'ralli', u'organis', u'palm', u'sunday']
[u'peac', u'protest', u'pressur', u'bring', u'troop']
[u'pentagon', u'updat', u'casualti', u'list']
[u'polic', u'investig', u'brisban', u'stab']
[u'portsmouth', u'leicest', u'promot', u'parti']
[u'powel', u'confid', u'find', u'wmds', u'iraq']
[u'privat', u'lynch', u'return']
[u'govt', u'close', u'anti', u'terror', u'oper']
[u'govt', u'welcom', u'environ', u'fund']
[u'lib', u'nat', u'verg', u'coalit', u'deal']
[u'raaf', u'plane', u'deliv', u'suppli', u'baghdad']
[u'raaf', u'prepar', u'flight', u'iraq']
[u'real', u'readi', u'beckham', u'million', u'dollar']
[u'relat', u'calm', u'kirkuk', u'move']
[u'rescu', u'prison', u'turn', u'guard', u'report']
[u'rock', u'throw', u'incid', u'claim', u'life', u'teenag']
[u'saddam', u'half', u'brother', u'captur', u'report']
[u'sar', u'claim', u'live']
[u'sar', u'caus', u'ground', u'cathay', u'airlin']
[u'save', u'sunderland', u'imposs', u'mick']
[u'schmeichel', u'retir', u'season']
[u'scientist', u'claim', u'sar', u'breakthrough']
[u'search', u'lose', u'scale']
[u'search', u'resum', u'miss']
[u'serena', u'sweep', u'past', u'davenport']
[u'servic', u'rememb', u'road', u'crash', u'victim']
[u'shirvo', u'set', u'australian', u'record']
[u'skaif', u'blitz', u'supercar', u'qualifi']
[u'smith', u'second', u'youngest', u'skipper']
[u'storm', u'emerg', u'crew', u'busi', u'night']
[u'stray', u'bullet', u'kill', u'young', u'girl', u'renew', u'aceh']
[u'substitut', u'lurl', u'hand', u'feyenoord', u'gasp']
[u'sydney', u'pair', u'mooloolaba']
[u'sydney', u'yacht', u'mooloolaba']
[u'symond', u'score', u'half', u'centuri', u'south', u'africa']
[u'syria', u'reject', u'accus', u'aid', u'saddam']
[u'govt', u'say', u'hous', u'issu']
[u'predict', u'renov', u'increas']
[u'teenag', u'charg', u'assault']
[u'tendon', u'strain', u'put', u'primus', u'pressur']
[u'thousand', u'march', u'peac', u'palm', u'sunday', u'ralli']
[u'tiger', u'prowl', u'record', u'titl']
[u'tiger', u'devour', u'docker', u'crow', u'demon']
[u'tokyo', u'disneyland', u'turn', u'need', u'magic']
[u'tourism', u'industri', u'bear', u'brunt', u'visitor']
[u'star', u'catch', u'hous']
[u'turkish', u'journalist', u'wound', u'mosul']
[u'foreign', u'secretari', u'diplomat', u'shuttl']
[u'agenc', u'urg', u'protect', u'iraqi', u'cultur']
[u'unesco', u'fear', u'lose', u'iraqi', u'treasur']
[u'unit', u'march', u'sunderland']
[u'unleash', u'concert', u'youth', u'week']
[u'move', u'iraq']
[u'crush', u'spain', u'close', u'world', u'place']
[u'defend', u'respons', u'iraqi', u'disord']
[u'encourag', u'polic', u'iraqi', u'capit']
[u'forc', u'enter', u'tikrit']
[u'forc', u'guard', u'baghdad', u'sit', u'cross']
[u'marin', u'kill', u'suicid', u'bomb', u'vest']
[u'navi', u'move', u'scale', u'gulf', u'presenc']
[u'offer', u'reward', u'saddam', u'captur']
[u'offer', u'reward', u'captur', u'iraqi', u'leader']
[u'recov', u'pow']
[u'tank', u'central', u'tikrit', u'report']
[u'step', u'lanka', u'peac', u'process']
[u'troop', u'head', u'tikrit']
[u'govt', u'confront', u'youth', u'alcohol', u'abus']
[u'govt', u'promis', u'improv', u'disabl', u'care']
[u'victoria', u'overhaul', u'disabl', u'report']
[u'volunt', u'fli', u'count']
[u'consum', u'enjoy', u'cheaper', u'seafood']
[u'move', u'north', u'tikrit']
[u'heighten', u'human', u'right', u'awar', u'church']
[u'warrior', u'ahead', u'bronco', u'half', u'time']
[u'warrior', u'hammer', u'bronco', u'raider', u'eagl']
[u'warrior', u'hammer', u'weak', u'bronco', u'raider']
[u'wood', u'eye', u'titl', u'maggert', u'grab', u'lead']
[u'woyecha', u'win', u'canberra', u'marathon']
[u'zimbabw', u'tour', u'england', u'get', u'green', u'light']
[u'age', u'care', u'resid', u'support', u'council', u'effort']
[u'ambul', u'volunt', u'spread', u'road', u'safeti', u'messag']
[u'arab', u'backlash', u'predict', u'howard']
[u'arm', u'order', u'shiit', u'leader', u'leav', u'iraq']
[u'arsenal', u'face', u'southampton', u'final']
[u'assur', u'auxiliari', u'safe', u'rfds', u'fundrais']
[u'australia', u'open', u'seri', u'victori']
[u'weekend', u'western', u'road']
[u'ballarat', u'retail', u'angri', u'easter', u'trade', u'law']
[u'bank', u'fall', u'pull', u'market', u'downward']
[u'bashir', u'charg', u'terror', u'plot']
[u'beef', u'afghan', u'secur', u'unhcr', u'warn']
[u'averag', u'start', u'banana', u'prawn', u'season']
[u'biographi', u'pay', u'tribut', u'anzac']
[u'blair', u'ahern', u'studi', u'statement']
[u'blair', u'anim', u'simpson', u'london', u'town']
[u'blood', u'donor', u'ban', u'sar', u'area']
[u'boutter', u'win', u'casablanca']
[u'brack', u'break', u'promis', u'freeway', u'toll']
[u'brisban', u'prop', u'answer', u'high', u'tackl', u'charg']
[u'brown', u'apologis', u'barrett', u'slap']
[u'brown', u'slap', u'fine']
[u'buck', u'night', u'prank', u'claim', u'life', u'local']
[u'builder', u'group', u'warn', u'insur', u'concern']
[u'build', u'cost', u'shelv', u'cinema']
[u'butler', u'doubt', u'iraq', u'weapon']
[u'govt', u'establish', u'aborigin', u'court']
[u'canberra', u'victim', u'receiv', u'appeal', u'money']
[u'coalit', u'control', u'iraq', u'oilfield', u'centcom']
[u'coff', u'harbour', u'town', u'lifesav']
[u'coleslaw', u'blame', u'injuri']
[u'comalco', u'offer', u'job', u'easter']
[u'compani', u'hope', u'propos', u'success']
[u'competitor', u'warn', u'shortcut', u'peak']
[u'conoco', u'chief', u'sort', u'project', u'issu']
[u'council', u'defend', u'decis', u'share']
[u'council', u'support', u'research', u'project']
[u'cowboy', u'plan', u'improv', u'handl', u'weekend']
[]
[u'crocodil', u'trap', u'weekend', u'attack']
[u'crow', u'thai', u'treat', u'mackay']
[u'csiro', u'launch', u'research', u'plan']
[u'close', u'sydney', u'breweri']
[u'davydenko', u'down', u'callieri', u'claim', u'estoril', u'open']
[u'despotovski', u'doubt', u'newcastl', u'clash']
[u'sidelin', u'week']
[u'diver', u'rais', u'shark', u'repel', u'worri']
[u'doubt', u'tasmanian', u'prospect']
[u'dragon', u'coach', u'brown', u'slap', u'barrett']
[u'fairfax', u'snap', u'publish']
[u'fall', u'tikrit', u'mark', u'transit']
[u'famili', u'tell', u'miss', u'soldier', u'safe']
[u'farmer', u'survey', u'assess', u'livestock', u'number']
[u'father', u'demand', u'answer', u'babi', u'death']
[u'favourit', u'tumbl', u'german', u'spanish', u'leagu']
[u'govt', u'give', u'rice', u'farmer', u'imag']
[u'finish', u'touch', u'appli', u'human', u'genom']
[u'fisherman', u'free', u'capsiz', u'boat']
[u'flipper', u'destin', u'busi']
[u'flood', u'keep', u'busi']
[u'project', u'latest', u'round', u'work']
[u'fraser', u'defenc', u'call', u'ryan', u'evid']
[u'fraser', u'skull', u'prompt', u'polic', u'probe']
[u'geraldton', u'chief', u'execut', u'okay', u'breakwat', u'deal']
[u'gould', u'quit', u'origin', u'post']
[u'govt', u'begin', u'nation', u'search', u'child', u'protect']
[u'govt', u'deni', u'drop', u'network', u'sit']
[u'govt', u'stop', u'loot', u'histori', u'brown']
[u'greek', u'polic', u'probe', u'fatal', u'school', u'crash']
[u'greek', u'soccer', u'challeng', u'draw', u'crowd']
[u'harcourt', u'valley', u'appl', u'season', u'look']
[u'health', u'servic', u'reject', u'surgeon', u'opposit', u'claim']
[u'henin', u'hardenn', u'snap', u'serena', u'streak']
[u'highway', u'upgrad', u'finish', u'ahead', u'schedul']
[u'holidaygo', u'urg', u'regular', u'break']
[u'hotel', u'lure', u'tourist', u'south', u'island']
[u'hous', u'mental', u'worri']
[u'hugh', u'defam', u'case', u'settl']
[u'hugh', u'plead', u'guilti', u'danger', u'drive', u'charg']
[u'hunter', u'polic', u'welcom', u'crossbow', u'plan']
[u'hydro', u'tasmania', u'dredg', u'great', u'lake']
[u'ident', u'releas', u'pow', u'iraq']
[u'illeg', u'fish', u'boat', u'scuttl', u'geraldton']
[u'illeg', u'fish', u'boat', u'sink', u'geraldton']
[u'go', u'spotlight']
[u'independ', u'direct', u'prefer', u'parti']
[u'industri', u'action', u'affect', u'cairn', u'base', u'hospit']
[u'industri', u'push', u'bracket', u'creep', u'measur']
[u'inquest', u'begin', u'suspect', u'virus', u'death']
[u'iron', u'miss', u'bell', u'beach', u'open', u'round']
[u'israel', u'back', u'sentiment', u'syria']
[u'centr', u'slash', u'trigger', u'unemploy']
[u'jone', u'wit', u'defam', u'action']
[u'labor', u'ahead', u'fall', u'baghdad', u'poll']
[u'labor', u'demand', u'budget', u'cut']
[u'lambina', u'boom', u'opal', u'mine', u'season', u'start']
[u'order', u'prioriti', u'iraq', u'chalabi']
[u'marin', u'backtrack', u'iraq', u'chemic', u'arm', u'report']
[u'matilda', u'secur', u'world', u'spot']
[u'mayor', u'plan', u'council', u'draw', u'opposit']
[u'inclus', u'elector', u'propos', u'alic']
[u'push', u'region', u'cover']
[u'seek', u'answer', u'ryan', u'disappear']
[u'munster', u'leicest', u'tripl']
[u'murder', u'trial', u'proceed', u'victim', u'aliv']
[u'murray', u'river', u'tourist', u'boon']
[u'najaf', u'sieg', u'end', u'ayatollah', u'miss']
[u'iraqi', u'govt', u'shouldnt', u'rush']
[u'project', u'expand', u'work', u'experi', u'choic', u'govt']
[u'water', u'law', u'qualiti', u'standard']
[u'wetlin', u'fish', u'advisori', u'panel']
[u'nitschk', u'anger', u'airport', u'search']
[u'north', u'korea', u'hint', u'readi', u'talk']
[u'forc', u'hand', u'count', u'poll', u'result']
[u'govt', u'challeng', u'feder', u'highway', u'plan']
[u'nurs', u'redund', u'classif']
[u'obasanjo', u'parti', u'lead', u'nigerian', u'poll']
[u'coupl', u'nicholson', u'sandler', u'manag']
[u'offic', u'extend', u'thought', u'famili', u'dead', u'girl']
[u'ogradi', u'leav', u'late', u'punctur']
[u'olympian', u'allen', u'return', u'hockeyroo', u'squad']
[u'week', u'surat', u'rag']
[u'organis', u'pleas', u'palm', u'sunday', u'peach', u'march']
[u'pair', u'charg', u'assault', u'polic', u'offic']
[u'palestinian', u'propos', u'draft', u'cabinet', u'line']
[u'floater', u'newest', u'cultur', u'icon']
[u'pie', u'lose', u'lockyer', u'grand', u'final', u'replay', u'loom']
[u'plan', u'park', u'space', u'fund', u'bus']
[u'player', u'associ', u'play', u'barrett', u'slap']
[u'see', u'merit', u'iraqi', u'feder', u'talk']
[u'polar', u'success', u'win', u'golden', u'slipper']
[u'polic', u'encourag', u'resid', u'druggi']
[u'polic', u'hold', u'kill', u'accid']
[u'polic', u'investig', u'beach', u'rail', u'deton']
[u'polic', u'investig']
[u'polic', u'seek', u'miss', u'girl', u'inform']
[u'polic', u'shoot', u'aggress', u'suspect']
[u'popul', u'boost', u'expect', u'ultima']
[u'public', u'deserv', u'speed', u'limit']
[u'qanta', u'downturn', u'impact', u'cairn', u'unknown']
[u'radcliff', u'rule', u'roost']
[u'rain', u'fall', u'west']
[u'ranger', u'stay', u'point', u'clear', u'celtic']
[u'region', u'export', u'rat', u'skyrocket']
[u'research', u'provid', u'clue', u'dead', u'stinger']
[u'richardson', u'rare']
[u'saddam', u'near', u'tikrit', u'chalabi']
[u'govt', u'help', u'school', u'fund']
[u'polic', u'prepar', u'possibl', u'baxter', u'break']
[u'sar', u'claim', u'victim', u'hong', u'kong']
[u'sar', u'disrupt', u'competit', u'plan', u'champion']
[u'saturday', u'trade', u'approv', u'prompt', u'hop']
[u'scuttl', u'boat', u'warn', u'illeg', u'fish']
[u'search', u'continu', u'miss', u'saturday']
[u'searcher', u'bodi', u'narooma', u'harbour']
[u'search', u'resum', u'miss', u'albani', u'fisherman']
[u'secur', u'fear', u'spark', u'anti', u'protest', u'baghdad']
[u'shell', u'suspect', u'chemic', u'agent', u'iraq']
[u'simul', u'road', u'accid', u'scene', u'test']
[u'face', u'court', u'langwarrin', u'murder']
[u'state', u'rail', u'hear', u'train', u'crash']
[u'straw', u'tour', u'take', u'kuwait']
[u'sydney', u'skipper', u'confid', u'brisban']
[u'sydney', u'teen', u'die', u'stab']
[u'syria', u'realis', u'realiti', u'straw']
[u'tasmanian', u'worker', u'describ', u'middl', u'east', u'concern']
[u'teenag', u'sentenc', u'burn', u'famili']
[u'telstra', u'troubl', u'reach', u'get', u'repriev']
[u'terror', u'fight', u'bring', u'nuclear', u'submarin']
[u'arrest', u'baghdad', u'firefight']
[u'tikrit', u'leader', u'offer', u'surrend']
[]
[u'toogoolawah', u'hop', u'fli', u'centr', u'fund']
[u'student', u'industri', u'scholarship']
[u'believ', u'saddam', u'offici', u'iraq']
[u'ultima', u'boost', u'land', u'sale']
[u'unicef', u'step', u'shipment']
[u'identifi', u'saddam', u'remain']
[u'forc', u'control', u'tikrit', u'presidenti', u'palac']
[u'forc', u'test', u'canist', u'chemic', u'weapon']
[u'saddam', u'frank']
[u'iraqi', u'start', u'joint', u'patrol']
[u'soldier', u'wound', u'shoot', u'near', u'baghdad']
[u'troop', u'detain', u'looter']
[u'troop', u'encount', u'fierc', u'resist', u'tikrit']
[u'warn', u'syria', u'weapon', u'iraqi', u'leader']
[u'petegem', u'win', u'hell', u'north', u'complet']
[u'govt', u'bail', u'public', u'transport']
[u'victim', u'count', u'cost', u'weekend', u'theft']
[u'virgin', u'blue', u'land', u'broom', u'budget', u'servic']
[u'virgin', u'rule', u'flight', u'kalgoorli']
[u'volunt', u'plead', u'guilti', u'light']
[u'volunt', u'count', u'threaten', u'fli', u'popul']
[u'fli', u'high', u'invest', u'economist']
[u'govt', u'support', u'saltwat', u'drain', u'trial']
[u'waratah', u'lose', u'blacklock']
[u'iraq', u'emptiv', u'strike', u'bishop']
[u'water', u'main', u'flood', u'caus', u'traffic', u'problem']
[u'waugh', u'say', u'west', u'indi', u'tough']
[u'weir', u'clinch', u'master', u'play']
[u'weir', u'make', u'major', u'breakthrough', u'master']
[u'western', u'drought', u'area', u'welcom', u'rain']
[u'come', u'white', u'right']
[u'woman', u'burn', u'unit', u'hospit']
[u'woman', u'hospit', u'attack']
[u'work', u'begin', u'rehab', u'project', u'year', u'delay']
[u'yemeni', u'polic', u'arrest', u'cole', u'suspect', u'escap']
[u'young', u'busi', u'fin', u'releas', u'offens', u'odour']
[u'young', u'peopl', u'risk', u'hostel', u'fund']
[u'yurevich', u'brothel', u'tourism', u'lure']
[u'fund', u'boost', u'shale', u'project']
[u'dog', u'rescu', u'northern', u'philippin']
[u'step', u'melandri']
[u'accommod', u'run', u'tourism', u'season', u'hot']
[u'adelaid', u'lay', u'welcom', u'refuge']
[u'afghan', u'refuge', u'return', u'famili', u'launceston']
[u'chief', u'announc', u'retir']
[u'afl', u'financi', u'probe', u'poor', u'time', u'player']
[u'worker', u'stand', u'return', u'iraq']
[u'alcohol', u'forum', u'brand', u'talkfest']
[u'alic', u'atsic', u'elect', u'legitim']
[u'alleg', u'money', u'china', u'contact']
[u'amnesti', u'push', u'tribun', u'deal', u'timor']
[u'arab', u'countri', u'stand']
[u'argentin', u'journalist', u'kill', u'near', u'baghdad']
[u'arsenal', u'focus', u'unit', u'clash']
[u'kill', u'mosul', u'shoot']
[u'aust', u'troop', u'return', u'home', u'soon']
[u'author', u'sue', u'famili', u'interview', u'payment']
[u'week', u'queensland', u'team', u'judiciari']
[u'barnett', u'accus', u'govt', u'tri', u'bribe', u'green']
[u'batman', u'aust', u'team', u'subject', u'disciplinari', u'action']
[u'bayern', u'rift', u'deepen']
[u'beazley', u'best', u'labor', u'poll']
[u'bell', u'postpon', u'poor', u'condit']
[u'better', u'late', u'say', u'fisichella']
[u'billiton', u'welcom', u'support']
[u'blair', u'push', u'iraqi', u'govern']
[u'blair', u'say', u'conflict', u'near']
[u'blair', u'seek', u'german', u'view', u'iraq', u'reconstruct']
[u'brisban', u'develop', u'interest', u'bright']
[u'bronco', u'lose', u'forward', u'gain', u'princ']
[u'budget', u'blow', u'cast', u'doubt', u'passeng', u'train']
[u'bundaberg', u'start', u'point', u'alp', u'northern', u'australia']
[u'busi', u'urg', u'prepar', u'tourism', u'season']
[u'worker', u'picket', u'sack']
[u'buyer', u'alic', u'local', u'hand']
[u'centr', u'creat', u'albani', u'job']
[u'cane', u'toad', u'get', u'custom']
[u'cantona', u'back', u'unit', u'mental', u'strength']
[u'carr', u'back', u'coff', u'lifesav']
[u'carr', u'unhappi', u'ballot', u'blunder']
[u'cheap', u'petrol', u'drive', u'wooli', u'profit']
[u'chemic', u'weapon', u'buri', u'outsid', u'baghdad', u'downer']
[u'child', u'abus', u'lawsuit', u'rock', u'cathol', u'dioces']
[u'china', u'stop', u'hong', u'kong', u'tour', u'sar']
[u'chines', u'visit', u'ahead', u'despit', u'sar', u'spread']
[u'claim', u'inveresk', u'cinema', u'plan', u'track']
[u'claim', u'invest', u'boom', u'help', u'smaller', u'miner']
[u'compani', u'report', u'grab', u'wall', u'street', u'focus']
[u'complac', u'enemi', u'waugh', u'australian']
[u'costello', u'blast', u'govt', u'toll', u'backflip']
[u'council', u'delay', u'piggeri', u'water', u'decis']
[u'council', u'give', u'blue', u'light', u'public', u'toilet', u'plan']
[u'council', u'coast', u'zone', u'polici', u'concern']
[u'council', u'highlight', u'need', u'airport', u'revamp']
[u'council', u'urg', u'compo', u'farmland']
[u'court', u'hear', u'crown', u'robber', u'member']
[u'court', u'uphold', u'masri', u'decis']
[u'plow', u'money', u'yatala', u'upgrad']
[u'level', u'rise']
[u'doctor', u'group', u'question', u'plan', u'medicar', u'rebat']
[u'dont', u'throw', u'away', u'printer', u'cartridg']
[u'drink', u'giant', u'urg', u'chang']
[u'drought', u'weigh', u'busi', u'outlook']
[u'easter', u'lock', u'detaine', u'ruddock']
[u'kill', u'kashmir', u'rebel', u'violenc']
[u'evid', u'wind', u'babi', u'inquest']
[u'faction', u'ponder', u'futur', u'nasiriyah', u'talk']
[u'farmer', u'happi', u'downpour']
[u'farmer', u'fast', u'load', u'livestock', u'freight']
[u'farmer', u'wait', u'weather', u'break']
[u'fear', u'miss', u'coast']
[u'feder', u'fund', u'allow', u'hospit', u'repair']
[u'govt', u'reject', u'drought', u'claim']
[u'govt', u'urg', u'rethink', u'student', u'immigr']
[u'figur', u'damn', u'univers', u'place']
[u'financ', u'union', u'sue', u'commonwealth', u'bank']
[u'fin', u'crank', u'easter', u'road', u'blitz']
[u'servic', u'tackl', u'fuel', u'load', u'danger']
[u'fisherman', u'bodi', u'search']
[u'fitzgibbon', u'remain', u'rooster']
[u'face', u'tribun']
[u'fortuyn', u'killer', u'sentenc', u'year']
[u'schoolboy', u'drown', u'vietnam']
[u'franc', u'say', u'pragmat', u'post']
[u'fraser', u'polic', u'station', u'open', u'busi']
[u'free', u'water', u'clubber', u'tough', u'enforc']
[u'french', u'jailbird', u'freedom']
[u'galleri', u'find', u'namatjira', u'work', u'open']
[u'game', u'ahead', u'despit', u'sar', u'govt']
[u'german', u'tech', u'compani', u'send', u'free', u'sar', u'test']
[u'global', u'factor', u'affect', u'local', u'real', u'estat', u'market']
[u'govt', u'appeal', u'like', u'masri', u'decis']
[u'govt', u'criticis', u'mitcham', u'frankston', u'toll']
[u'govt', u'forc', u'rule', u'woomera', u'dump', u'sit']
[u'govt', u'offer', u'reward', u'killer']
[u'govt', u'releas', u'damn', u'report', u'industri']
[u'govt', u'reveal', u'recycl', u'rule']
[u'govt', u'set', u'limit', u'poker', u'machin']
[u'govt', u'borrow', u'money', u'save', u'servic']
[u'greec', u'mourn', u'fatal', u'crash']
[u'green', u'upset', u'church', u'site', u'develop', u'plan']
[u'gronholm', u'lead', u'peugeot', u'zealand']
[u'group', u'assess', u'drought', u'relief', u'applic']
[u'guga', u'look', u'past', u'move', u'forward']
[u'charg', u'minist', u'drop']
[u'herron', u'sell', u'million', u'deal']
[u'hewitt', u'defam']
[u'high', u'tech', u'centr', u'shed', u'light', u'timber', u'industri']
[u'hope', u'crown', u'leas', u'report', u'finalis', u'soon']
[u'hospic', u'prepar', u'patient']
[u'hotlin', u'tell', u'polic', u'murder', u'girl', u'aliv']
[u'howard', u'meet', u'bush', u'iraq', u'talk']
[u'human', u'shield', u'homesa']
[u'hungri', u'armi', u'worm', u'invad']
[u'hunt', u'parti', u'overturn', u'kill']
[u'indonesian', u'presid', u'visit', u'moscow', u'arm', u'talk']
[u'iraqi', u'polic', u'join', u'british', u'troop', u'checkpoint']
[u'iraqi', u'protest', u'lack', u'order']
[u'iraqi', u'western', u'command', u'surrend']
[u'statement', u'show', u'progress']
[u'jackson', u'take', u'award']
[u'januari', u'fire', u'boost', u'growth', u'rate']
[u'king', u'island', u'farmer', u'ship', u'shortag']
[u'lewinski', u'relish', u'realiti', u'challeng']
[u'lloyd', u'clear', u'strike']
[u'luxuri', u'cruis', u'ship', u'visit', u'newcastl']
[u'mackay', u'koala', u'research', u'spotlight']
[u'jail', u'year', u'leav', u'partner']
[u'shoot', u'dead', u'melbourn']
[u'market', u'ralli', u'gain', u'major', u'bank']
[u'mayor', u'get', u'barrier', u'industri', u'council', u'support']
[u'mayor', u'support', u'popul', u'boost']
[u'worker', u'strike', u'continu']
[u'custom', u'need', u'bank', u'plan']
[u'air', u'concern', u'broadcast', u'condit']
[u'confid', u'iraqi', u'wheat', u'market']
[u'savag', u'danger', u'railway', u'line']
[u'welcom', u'ethanol']
[u'tip', u'economi', u'rat']
[u'nation', u'park', u'ban', u'remain']
[u'nation', u'secur', u'exempt', u'feder', u'judg']
[u'welcom', u'team', u'base', u'hunter']
[u'investor', u'portman']
[u'owner', u'live', u'music', u'venu']
[u'dead', u'sar', u'hong', u'kong']
[u'govt', u'urg', u'freshwat', u'research', u'centr']
[u'offici', u'illeg', u'fish', u'boat']
[u'hospit', u'equip', u'replac', u'govt']
[u'dead', u'hurt', u'school', u'shoot']
[u'oyster', u'industri', u'strong', u'despit', u'sar']
[u'payout', u'aristocrat', u'keep', u'secret']
[u'peacekeep', u'danger', u'aust', u'troop', u'labor']
[u'peak', u'holiday', u'season', u'loom']
[u'pedestrian', u'die', u'mudge', u'accid']
[u'pedestrian', u'die', u'truck', u'accid']
[u'plan', u'garbag', u'servic', u'chang', u'mean', u'rat']
[u'plan', u'unveil', u'democrat', u'iraq']
[u'polic', u'continu', u'probe', u'tractor', u'death']
[u'polic', u'hold', u'fear', u'miss', u'angler']
[u'polic', u'join', u'kingfish', u'probe']
[u'polic', u'accid', u'victim']
[u'polic', u'probe', u'tourist', u'stab']
[u'polic', u'seek', u'help', u'identifi', u'dog']
[u'polic', u'search', u'bali', u'link']
[u'polic', u'suspect', u'insid', u'wine', u'theft']
[u'post', u'mortem', u'shed', u'littl', u'light', u'climber', u'death']
[u'probe', u'launch', u'alcohol', u'harm']
[u'profit', u'slump', u'claim', u'game', u'chief', u'scalp']
[u'properti', u'valuer', u'reject', u'water', u'land', u'valu', u'claim']
[u'welcom', u'extra', u'famili', u'youth', u'servic', u'staff']
[u'pump', u'station', u'revamp', u'begin']
[u'qanta', u'crew', u'strike', u'cut']
[u'qanta', u'mainten', u'staff', u'walk', u'tomorrow']
[u'execut', u'lead', u'electr', u'reform']
[u'pass', u'fan']
[u'rail', u'crash', u'probe', u'hear', u'train', u'speed', u'evid']
[u'rain', u'boost', u'tibooburra', u'water', u'suppli']
[u'rate', u'rise', u'meet', u'adjourn']
[u'record', u'start', u'cattl', u'movement']
[u'recov', u'bodi', u'miss', u'fisherman']
[u'region', u'atsic', u'council', u'boss', u'reject', u'critic']
[u'russian', u'comic', u'come', u'cold']
[u'russia', u'shift', u'polici', u'north', u'korea']
[u'russia', u'urg', u'restraint', u'polici', u'syria']
[u'sabotag', u'suspect', u'mass', u'fish', u'getaway']
[u'dump', u'sit', u'suitabl', u'anti', u'nuclear', u'group']
[u'schumach', u'faith']
[u'search', u'continu', u'miss', u'angler']
[u'senat', u'attack', u'airport', u'charg', u'plan']
[u'separatist', u'down', u'quebec', u'poll']
[u'join', u'search', u'fraser', u'remain']
[u'help', u'search', u'human', u'remain']
[u'smoke', u'ban', u'affect', u'busi', u'hospit']
[u'stacker', u'pip', u'goorjian', u'coach', u'award']
[u'straw', u'arriv', u'qatar', u'kuwait']
[u'streetscap', u'parti', u'track']
[u'student', u'demand', u'outstrip', u'place']
[u'sunderland', u'promis', u'bounc', u'straight']
[u'surf', u'elit', u'line', u'bell', u'beach']
[u'swiss', u'teen', u'sign', u'test', u'sauber']
[u'syria', u'friend', u'target', u'spain']
[u'busi', u'prospect', u'improv', u'treasur']
[u'technic', u'glitch', u'spark', u'manual', u'vote', u'count']
[u'tendulkar', u'hand', u'surgeri']
[u'minut', u'storm', u'rip', u'china']
[u'ticket', u'levi', u'good']
[u'timber', u'shortfal', u'close', u'sawmil']
[u'tough', u'talk', u'syria', u'downer']
[u'tour', u'highlight', u'gene', u'technolog']
[u'train', u'driver', u'high', u'compet', u'waterfal', u'inquiri']
[u'travel', u'caus', u'freo', u'woe', u'road']
[u'union', u'demand', u'extra', u'traffic', u'polic']
[u'union', u'hop', u'clearer', u'pictur', u'entitl']
[u'union', u'angri', u'nurs', u'dismiss']
[u'union', u'warn', u'massiv', u'fight']
[u'assess', u'plunder', u'iraqi', u'nation', u'treasur']
[u'cut', u'naval', u'power', u'near', u'iraq', u'offici']
[u'hail', u'north', u'korea', u'shift', u'posit']
[u'start', u'effort', u'build', u'iraq']
[u'threaten', u'sanction', u'syria']
[u'vaughan', u'knock', u'hayden', u'rank', u'summit']
[u'warnock', u'face', u'probe', u'slat', u'poll']
[u'war', u'loom', u'tikrit', u'fall']
[u'wellman', u'week', u'disloc', u'finger']
[u'wheat', u'industri', u'alert', u'virus']
[u'white', u'power', u'beach', u'undergo', u'test']
[u'windi', u'omit', u'gayl', u'second', u'test']
[u'wnba', u'talk', u'reach', u'crisi', u'point']
[u'woman', u'heritag', u'appoint']
[u'woman', u'mistreat']
[u'woodsid', u'prowl', u'chief']
[u'young', u'peopl', u'ban', u'northbridg', u'dark']
[u'announc', u'zimbabw', u'india', u'match']
[u'achill', u'lauro', u'hijack', u'captur', u'baghdad']
[u'action', u'group', u'monitor', u'freeway', u'develop']
[u'actu', u'expos', u'train', u'scheme', u'rort']
[u'adelaid', u'polic', u'arrest', u'alleg', u'murder', u'suspect']
[u'advic', u'offer', u'artifici', u'reef', u'plan']
[u'age', u'care', u'propon', u'ask', u'consid', u'altern']
[u'wrong', u'increas', u'sentenc']
[u'rise', u'help', u'market', u'gain']
[u'share', u'surg']
[u'take', u'spam', u'fight', u'court']
[u'negoti', u'remov', u'world', u'profit']
[u'associ', u'welcom', u'delay', u'elect']
[u'hop', u'hewitt', u'disput']
[u'aussi', u'bullish', u'spend']
[u'aust', u'africa', u'consid', u'joint', u'super', u'team']
[u'aust', u'asylum', u'polici', u'attack', u'iraq']
[u'aust', u'soldier', u'charg', u'kick', u'corps']
[u'hair', u'inmat', u'warden', u'cash', u'stash']
[u'barossa', u'show', u'war']
[u'bash', u'put', u'hospit']
[u'bashir', u'face', u'trial', u'week']
[u'basketbal', u'coach', u'reward', u'effort']
[u'beatti', u'help', u'open', u'jail']
[u'beazley', u'interest', u'leadership', u'crean']
[u'blaze', u'rip', u'golf', u'club']
[u'bomb', u'blast', u'rock', u'turkish', u'eateri']
[u'brisban', u'hotel', u'rob', u'gunpoint']
[u'britain', u'germani', u'agre', u'play', u'role']
[u'break', u'foot', u'sidelin', u'roger']
[u'bureau', u'see', u'autumn']
[u'bushfir', u'cost', u'brack']
[u'bushfir', u'victim', u'face', u'face', u'advic']
[u'busi', u'usual', u'moya', u'mont', u'carlo']
[u'calder', u'freeway', u'link', u'extens', u'open']
[u'visi', u'smell', u'address']
[u'go', u'child', u'protect', u'offic']
[u'candid', u'seek', u'greater', u'child', u'birth', u'option']
[u'cantona', u'back', u'unit', u'gunner', u'post']
[u'casino', u'goer', u'octob']
[u'central', u'record', u'road', u'death']
[u'china', u'reveal', u'extent', u'sar']
[u'claim', u'shearer', u'dont', u'support', u'museum']
[u'clark', u'deni', u'rape', u'claim', u'civil', u'court', u'hear']
[u'coalit', u'accus', u'fail', u'geneva', u'duti', u'iraq']
[u'commiss', u'wont', u'rule', u'fare', u'rise']
[u'communiti', u'prepar']
[u'concern', u'air', u'job', u'strategi']
[u'threaten', u'action', u'log']
[u'construct', u'contract', u'award', u'freez', u'chip']
[u'consum', u'confid', u'boost', u'iraq', u'end']
[u'control', u'wasp', u'plagu', u'prove', u'difficult']
[u'costello', u'vow', u'action', u'report']
[u'council', u'reject', u'residenti', u'project']
[u'council', u'urg', u'address', u'infrastructur', u'need']
[u'cowboy', u'murray', u'readi', u'origin', u'rein']
[u'creditor', u'block', u'rail', u'termin']
[u'croc', u'trap', u'attack']
[u'dramat', u'launch', u'easter', u'road', u'safeti', u'campaign']
[u'driver', u'speed', u'residenti', u'street']
[u'eisteddfod', u'organis', u'prais', u'local', u'busi']
[u'elm', u'announc', u'nat', u'cook', u'candidaci']
[u'aust', u'relationship', u'strong', u'despit', u'iraq']
[u'expand', u'discuss', u'iraq', u'greec']
[u'fake', u'footag', u'put', u'aussi', u'oscar', u'storm']
[u'farmer', u'cautious', u'weather', u'predict']
[u'farmer', u'seek', u'input', u'possum', u'plan']
[u'farmer', u'shouldnt', u'hold', u'late', u'cyclon', u'season']
[u'govt', u'urg', u'protect', u'atsic', u'region', u'council']
[u'ferri', u'capsiz', u'haitian', u'miss']
[u'fifa', u'reject', u'carlo', u'appeal']
[u'film', u'festiv', u'director', u'appoint', u'posit']
[u'crew', u'search', u'leak', u'brisban', u'rail']
[u'launceston', u'teacher', u'sentenc', u'assault']
[u'hous', u'militari', u'cadet']
[u'kill', u'mosul', u'shoot', u'hospit']
[u'text', u'point', u'plan', u'iraq']
[u'leak', u'forc', u'evacu', u'build']
[u'girl', u'get', u'suspend', u'sentenc', u'stab']
[u'gould', u'stay']
[u'gould', u'stay', u'despit', u'media', u'blue']
[u'grave', u'concern', u'hold']
[u'hanson', u'campaign', u'fail', u'count', u'end']
[u'heal', u'call', u'quit']
[u'health', u'servic', u'campus', u'work', u'begin']
[u'health', u'servic', u'chief', u'reject', u'surgeri', u'chang', u'claim']
[u'hewitt', u'pull', u'barcelona']
[u'high', u'hop', u'council', u'restructur', u'plan']
[u'inquiri', u'find', u'dozen', u'potenti', u'offenc']
[u'probe', u'recommend', u'charg']
[u'hill', u'return', u'storm']
[u'impos', u'stricter', u'border', u'check', u'control', u'sar']
[u'hospit', u'industri', u'disput', u'bed']
[u'indonesian', u'fish', u'boat', u'crew', u'detain']
[u'inglewood', u'get', u'petrol', u'station', u'year']
[u'intern', u'inquiri', u'launch', u'death', u'custodi']
[u'iraqi', u'bomb', u'victim', u'fli', u'kuwait']
[u'italian', u'peacekeep', u'help', u'iraq']
[u'jackson', u'wont', u'prefer', u'successor']
[u'judg', u'exempt', u'secur', u'check']
[u'juri', u'jone', u'defam', u'case']
[u'juri', u'tell', u'jone', u'defam', u'scott']
[u'kournikova', u'take', u'drastic', u'step', u'arrest', u'free', u'fall']
[u'labor', u'demand', u'detail', u'alleg', u'timor', u'abus']
[u'blaze', u'extinguish']
[u'leader', u'fall']
[u'lebanes', u'resign']
[u'lib', u'nat', u'return', u'coalit']
[u'lion', u'lynch', u'brown', u'pie', u'clash']
[u'lion', u'pie', u'fight', u'spot']
[u'local', u'govt', u'group', u'want', u'river', u'murray', u'audit']
[u'face', u'court', u'attempt', u'murder', u'charg']
[u'face', u'trial', u'stab']
[u'mayor', u'angri', u'mall', u'protest']
[u'mayor', u'back', u'delay', u'local', u'govt', u'elect']
[u'mayor', u'group', u'highlight', u'case', u'merger']
[u'million', u'treat', u'depress', u'year']
[u'minist', u'launch', u'health', u'initi']
[u'minist', u'urg', u'stop', u'plan', u'hous']
[u'molik', u'cruis', u'budapest', u'round']
[u'talk', u'wheat', u'virus', u'discoveri']
[u'morseu', u'join', u'great']
[u'seek', u'bipartisan', u'approach', u'land', u'acquisit']
[u'nauru', u'probe', u'terrorist', u'passport', u'claim']
[u'sar', u'outbreak', u'fear', u'toronto']
[u'nitschk', u'befriend', u'idea', u'caus', u'outrag']
[u'northern', u'spirit', u'fin', u'substitut']
[u'nrac', u'member', u'meet', u'drought', u'affect', u'farmer']
[u'disput', u'tribun', u'hear', u'newcastl', u'protest']
[u'govt', u'urg', u'assess', u'futur', u'inner', u'citi', u'land']
[u'tripl', u'need', u'urgent', u'overhaul', u'oppn']
[u'oversea', u'pair', u'backmark', u'stawel', u'gift']
[u'palestinian', u'offici', u'call', u'releas', u'abba']
[u'palestinian', u'demand', u'abba', u'releas']
[u'peac', u'activist', u'return', u'iraq']
[u'polic', u'continu', u'search', u'miss']
[u'polic', u'investig', u'suspect', u'murder', u'suicid']
[u'polic', u'investig', u'death']
[u'polic', u'charg', u'cannabi', u'seiz']
[u'polic', u'probe', u'council', u'blaze']
[u'polic', u'recov', u'bodi', u'miss', u'fisherman']
[u'polic', u'search', u'gunman']
[u'polic', u'seek', u'help', u'arm', u'bandit']
[u'post', u'saddam', u'unrest', u'inevit']
[u'powel', u'insist', u'syria', u'target']
[u'price', u'fix', u'penalti', u'increas', u'moot', u'dawson']
[u'produc', u'bing', u'win', u'libel', u'payout', u'paper']
[u'protest', u'opera', u'hous', u'clean']
[u'public', u'help', u'protect', u'reef']
[u'public', u'urg', u'help', u'shooter']
[u'public', u'urg', u'leav', u'patient', u'travel', u'ambo']
[u'qatar', u'hold', u'referendum', u'constitut']
[u'radioact', u'dump', u'fight', u'deserv', u'attent']
[u'rail', u'standardis', u'project', u'defer']
[u'receiv', u'want', u'passport', u'king', u'owner']
[u'refuge', u'famili', u'fight', u'continu']
[u'region', u'oper', u'financi', u'mess']
[u'reith', u'appoint', u'london', u'bank', u'board']
[u'report', u'highlight', u'poor', u'creek', u'health']
[u'resid', u'quiz', u'shop', u'hour']
[u'roger', u'season', u'jeopardi']
[u'rspca', u'educ', u'unit', u'visit', u'balonn', u'shire']
[u'russian', u'rainmak', u'bring', u'success', u'properti', u'owner']
[u'africa', u'plan', u'payment', u'apartheid', u'victim']
[u'sar', u'claim', u'victim', u'singapor']
[u'sar', u'travel', u'ban', u'hospit']
[u'sar', u'watch', u'continu', u'franc']
[u'play', u'role', u'surrend']
[u'stakehold', u'tell', u'input', u'requir']
[u'search', u'continu', u'hard', u'evid']
[u'search', u'continu', u'human', u'remain']
[u'secur', u'alert', u'baghdad']
[u'senat', u'defend', u'strength', u'fin', u'illeg']
[u'say', u'natasha', u'ryan', u'repay', u'taxpay']
[u'shale', u'deposit', u'mine', u'year']
[u'sharon', u'pledg', u'grab', u'shoot', u'peac']
[u'dead', u'middl', u'east', u'violenc']
[u'scrutini']
[u'spam', u'can', u'law']
[u'staff', u'action', u'qanta', u'decis']
[u'statu', u'consid', u'honour', u'slay', u'policemen']
[u'stop', u'work', u'wont', u'affect', u'flight', u'qanta']
[u'store', u'take', u'steal', u'arm', u'robberi']
[u'suicid', u'bomber', u'remain', u'real', u'threat', u'iraq']
[u'summit', u'outlin', u'plan', u'iraq']
[u'syria', u'seek', u'free', u'zone', u'middl', u'east']
[u'talk', u'resolv', u'surgeon', u'disput']
[u'talk', u'continu', u'staff', u'concern', u'age', u'care']
[u'govt', u'defend', u'sale', u'tender']
[u'taxi', u'driver', u'face', u'crisi']
[u'telstra', u'wait', u'watch', u'unveil']
[u'textil', u'firm', u'face', u'collaps', u'tariff', u'withdraw']
[u'toowoomba', u'tourism', u'campaign', u'underway']
[u'townsvill', u'troop', u'head', u'timor']
[u'trade', u'hour', u'debat', u'heat']
[u'tradit', u'owner', u'continu', u'support']
[u'train', u'driver', u'friend', u'famili', u'evid', u'rail']
[u'train', u'centr', u'moot', u'kalgoorli', u'boulder']
[u'trio', u'face', u'court', u'polic', u'chase']
[u'forc', u'deni', u'shoot', u'crowd']
[u'korea', u'hold', u'talk', u'china']
[u'shut', u'pipelin', u'syria']
[u'warn', u'syria', u'chief']
[u'venus', u'consol', u'berlin', u'serena', u'pull']
[u'victori', u'iraq', u'certain', u'complet', u'bush']
[u'violent', u'protest', u'summit']
[u'violent', u'protest', u'summit', u'iraq']
[u'govt', u'get', u'saleyard', u'express']
[u'wall', u'street', u'manag', u'temper', u'ralli']
[u'waterhous', u'clear', u'resum', u'bookmak', u'month']
[u'waterhous', u'resum', u'bookmak']
[u'water', u'park', u'develop', u'stop']
[u'water', u'theme', u'easter', u'display']
[u'wheat', u'virus', u'csiro', u'laboratori', u'contain']
[u'confirm', u'virus', u'caus', u'sar']
[u'wild', u'banana', u'prawn', u'harvest', u'tonnag', u'hard', u'predict']
[u'windi', u'lose', u'jacob', u'lawson', u'second', u'test']
[u'find', u'independ', u'verifi', u'labor']
[u'workplac', u'accid', u'investig']
[u'workshop', u'focus', u'night', u'communiti', u'patrol']
[u'yakka', u'factori', u'sell', u'near']
[u'abattoir', u'oper', u'inund', u'work', u'offer']
[u'staff', u'victimis', u'report']
[u'accus', u'killer', u'boast', u'murder']
[u'aceh', u'independ', u'activist', u'trial', u'sedit']
[u'tighten', u'water', u'restrict']
[u'adhd', u'behaviour', u'expert']
[u'agforc', u'warn', u'armi', u'worm']
[u'alic', u'parliament', u'cost', u'spotlight']
[u'play', u'arsenal', u'share']
[u'play', u'arsenal', u'share']
[u'american', u'airlin', u'staff', u'cut', u'save', u'job']
[u'asian', u'leader', u'meet', u'sar']
[u'atsic', u'commission', u'issu', u'reform', u'warn']
[u'atsic', u'face', u'fund', u'shake']
[u'atsic', u'split', u'purs', u'string', u'handov']
[u'atsic', u'strip', u'fund', u'power']
[u'azerbaijan', u'soccer', u'tri', u'extric']
[u'bacon', u'reject', u'critic', u'govt', u'sale']
[u'bank', u'open', u'branch']
[u'baxter', u'centr', u'prepar', u'protest']
[u'bedtim', u'boar', u'german', u'coupl']
[u'boati', u'easter', u'warn']
[u'boati', u'urg', u'safe', u'easter']
[u'brisban', u'blood', u'stock', u'critic']
[u'break', u'hill', u'water', u'restrict']
[u'bulk', u'bill', u'death', u'throe', u'howard', u'govt']
[u'bushfir', u'recoveri', u'appeal', u'call', u'applic']
[u'cameraman', u'focus', u'defend', u'len']
[u'capell', u'win', u'grand', u'prix', u'lescaut', u'mcewen', u'crash']
[u'carlton', u'search']
[u'sale', u'drive', u'economi']
[u'chirac', u'say', u'airlift', u'wound', u'iraqi', u'europ']
[u'citi', u'coast', u'credit', u'union', u'member', u'merger']
[u'club', u'defend', u'dismiss', u'mask', u'barman']
[u'coober', u'pedi', u'seek', u'airlin', u'alic', u'link']
[u'costa', u'beat', u'mont', u'carlo', u'year']
[u'costello', u'urg', u'aggress', u'suit']
[u'council', u'bank', u'oasi', u'project', u'green', u'light']
[u'council', u'rethink', u'support', u'tourist', u'bureau']
[u'countri', u'star', u'buy', u'rocki', u'hotel']
[u'court', u'rule', u'see', u'detaine', u'releas']
[u'crean', u'avoid', u'senat', u'preselect', u'disput']
[u'crean', u'visit', u'launceston']
[u'crow', u'carey', u'ricciuto']
[u'custom', u'better', u'despit', u'bank', u'fee', u'studi']
[u'cwealth', u'reject', u'needl', u'exchang', u'restrict']
[u'deal', u'sted', u'scheme', u'divis']
[u'dental', u'closur', u'predict', u'bite', u'hard']
[u'develop', u'knock', u'court']
[u'doctor', u'group', u'highlight', u'region', u'mental', u'health']
[u'dollar', u'climb', u'heavi', u'greenback']
[u'domest', u'violenc', u'victim', u'court', u'boost']
[u'driver', u'urg', u'play', u'safe', u'road']
[u'driver', u'urg', u'care', u'easter']
[u'drought', u'proof', u'sorghum', u'microscop']
[u'drug', u'hear', u'begin', u'italian', u'doctor']
[u'eal', u'say', u'home', u'advantag', u'make', u'wallabi']
[u'earthquak', u'rock', u'north', u'west', u'china']
[u'easter', u'restrict', u'detent', u'centr']
[u'environ', u'group', u'tinto', u'action']
[u'back', u'central', u'role', u'iraq']
[u'expert', u'determin', u'iraqi', u'artefact', u'recoveri']
[u'explos', u'leav', u'crater', u'sydney', u'yard']
[u'factori', u'produc', u'toxic', u'fume']
[u'farmer', u'gain', u'collect', u'bargain', u'right']
[u'farm', u'worker', u'deport']
[u'govt', u'speak', u'detent', u'centr', u'claim']
[u'firm', u'woe', u'shouldnt', u'reflect', u'local', u'economi']
[u'confirm', u'case', u'sar', u'india']
[u'food', u'truck', u'northern', u'iraq']
[u'forc', u'hop', u'restor', u'power', u'baghdad']
[u'frank', u'inspect', u'zone', u'person']
[u'light', u'spark', u'blaze']
[u'geologist', u'doubt', u'nasa', u'warn', u'peru', u'glacier']
[u'govt', u'accus', u'tri', u'control', u'atsic']
[u'grain', u'grower', u'urg', u'watch', u'armi', u'worm']
[u'group', u'aim', u'reunit', u'steal', u'generat']
[u'group', u'look', u'mango', u'industri', u'code', u'practic']
[u'head', u'roll', u'wake', u'find']
[u'health', u'initi', u'aim', u'address', u'doctor', u'woe']
[u'health', u'minist', u'urg', u'mossi', u'precaut']
[u'hear', u'road', u'extens', u'north', u'east']
[u'hong', u'kong', u'boarder', u'school', u'easter']
[u'hotel', u'agre', u'shorter', u'trade', u'hour']
[u'howard', u'back', u'reith', u'appoint']
[u'human', u'right', u'hill', u'heart', u'golden', u'citi']
[u'icac', u'probe', u'menangl', u'bridg', u'inquiri']
[u'declar', u'mayor', u'baghdad']
[u'india', u'beat', u'bangladesh', u'triangular', u'seri']
[u'indian', u'policeman', u'kill', u'attack', u'kashmir']
[u'india', u'sar', u'case', u'confirm']
[u'indonesian', u'cleric', u'readi', u'face', u'terror', u'trial']
[u'injuri', u'put', u'healey', u'world', u'chanc', u'jeopardi']
[u'inquiri', u'probe', u'green', u'legisl', u'impact']
[u'investig', u'begin', u'elect']
[u'iraqi', u'famili', u'welcom', u'human', u'shield']
[u'iraqi', u'forc', u'kill', u'firefight', u'near', u'baghdad']
[u'iraq', u'cost', u'billion', u'pentagon']
[u'jone', u'guilti', u'defam']
[u'kitchen', u'tolkein', u'townhous', u'ring', u'price']
[u'kuwaiti', u'surgeon', u'oper']
[u'labor', u'say', u'crean', u'defenc', u'rebound']
[u'labor', u'unabl', u'bridg']
[u'lack', u'fluorid', u'child', u'tooth', u'decay']
[u'lawyer', u'admit', u'jone', u'criticis', u'scott']
[u'leak', u'paddlesteam']
[u'taxi', u'safeti', u'taxi', u'bodi']
[u'lifesav', u'comp', u'cancel', u'sar', u'threat']
[u'lion', u'grand', u'final', u'rematch']
[u'lion', u'grand', u'final', u'match']
[u'local', u'hospit', u'deliveri', u'servic', u'stop']
[u'lodg', u'accept', u'age', u'care', u'project', u'site']
[u'magpi', u'disrupt', u'lion', u'strength']
[u'die', u'gippsland', u'crash']
[u'question', u'adelaid', u'stab', u'death']
[u'sentenc', u'prostitut', u'murder']
[u'sentenc', u'attack']
[u'market', u'ahead', u'easter', u'weekend']
[u'mattiac', u'tri', u'master', u'heartach']
[u'mayor', u'back', u'toll', u'best', u'ensur', u'bypass']
[u'mccartney', u'germ']
[u'consid', u'outdoor', u'smoke', u'terrac']
[u'media', u'muzzl', u'slat', u'accc']
[u'megawati', u'seek', u'arm', u'deal', u'russian', u'visit']
[u'minist', u'rule', u'cost', u'elect']
[u'minist', u'say', u'recycl']
[u'moggi', u'stow', u'away']
[u'renew', u'build', u'insur', u'plea']
[u'nat', u'claim', u'figur', u'prove', u'long', u'hospit', u'wait']
[u'natwa']
[u'nauru', u'doesnt', u'need', u'elect', u'monitor', u'presid']
[u'nauru', u'face', u'financ', u'despit', u'chang']
[u'naurus', u'leader', u'unawar', u'terrorist', u'arrest']
[u'nigerian', u'poll', u'crisi', u'opposit', u'threaten']
[u'nigeria', u'pose', u'tough', u'challeng', u'presid']
[u'evid', u'merger', u'ratepay', u'benefit', u'councillor']
[u'plan', u'close', u'rural', u'hospit', u'pike']
[u'normal', u'life', u'pick', u'baghdad']
[u'secur', u'alarm', u'burn', u'council', u'chamber']
[u'govt', u'give', u'cancer', u'research', u'high', u'prioriti']
[u'polit', u'greener']
[u'offic', u'start', u'school', u'campaign']
[u'cabinet', u'document', u'releas', u'public']
[u'philippin', u'peacekeep', u'doctor', u'enter', u'iraq']
[u'piepoli', u'take', u'open', u'stage', u'tour', u'aragon']
[u'plan', u'boost', u'indigen', u'educ', u'role', u'model']
[u'platypus', u'develop', u'beauti']
[u'halv', u'gulf', u'deploy']
[u'polic', u'highlight', u'grow', u'theft']
[u'polic', u'launch', u'intern', u'inquiri', u'servic']
[u'polic', u'link', u'bodi', u'drug', u'haul']
[u'polic', u'promis', u'easter', u'road', u'crackdown']
[u'polic', u'seiz', u'drug', u'raid']
[u'polic', u'crack', u'easter', u'road', u'safeti']
[u'polic', u'enforc', u'easter', u'trade', u'law']
[u'polic', u'monitor', u'driver', u'freeway', u'section']
[u'port', u'skipper', u'primus', u'doubt', u'blue', u'clash']
[u'post', u'mortem', u'confirm', u'murder', u'suicid']
[u'powel', u'visit', u'syria', u'talk']
[u'powercor', u'wont', u'blackout', u'rebat']
[u'power', u'lose', u'primus', u'carlton', u'clash']
[u'premier', u'warn', u'cricket', u'club', u'smoke']
[u'properti', u'owner', u'sacr', u'sit', u'clarif']
[u'protest', u'summit']
[u'protest', u'wont', u'stop', u'store', u'closur']
[u'coalit', u'differ', u'settl', u'say', u'quinn']
[u'ramanauska', u'surgeri']
[u'rann', u'continu', u'fight', u'final', u'agreement']
[u'receiv', u'seek', u'urgent', u'talk', u'king', u'brother']
[u'cross', u'say', u'water', u'flow', u'baghdad']
[u'report', u'say', u'polic', u'protest', u'collud']
[u'retir', u'priest', u'face', u'child', u'sentenc']
[u'rise', u'pay', u'tribut']
[u'sale', u'impos', u'centuri', u'iraq', u'letter']
[u'sar', u'precaut', u'plan', u'arafura', u'game']
[u'teenag', u'road', u'crash']
[u'scientist', u'caus', u'diseas', u'kid']
[u'search', u'continu', u'coast']
[u'sedan', u'race', u'titl', u'head', u'geraldton']
[u'select', u'dilemma', u'side', u'crow', u'eagl']
[u'sharehold', u'pursu', u'claim']
[u'sheedi', u'prais', u'depart', u'jackson']
[u'sheldon', u'welcom', u'renew', u'nat', u'lib', u'coalit']
[u'sherwin', u'free', u'agent']
[u'shire', u'move', u'away', u'council', u'merger', u'idea']
[u'snowi', u'corp', u'look', u'iraq', u'work']
[u'solomon', u'polic', u'defend', u'secur', u'appoint']
[u'specialist', u'plan', u'resign', u'wait']
[u'look', u'condor', u'deposit']
[u'studi', u'consid', u'land', u'manag', u'practic']
[u'surat', u'extinguish']
[u'sydney', u'charg', u'fraud']
[u'syria', u'propos', u'free', u'zone']
[u'talk', u'focus', u'heavi', u'vehicl', u'transport', u'corridor']
[u'tasmania', u'head', u'csiro', u'marin', u'research', u'push']
[u'search', u'resum', u'sweep', u'rock']
[u'teen', u'plan', u'consider']
[u'tender', u'seek', u'mainten']
[u'test', u'white', u'powder', u'drug']
[u'tingl', u'retain', u'upper', u'hous', u'seat']
[u'tooth', u'decay', u'rise', u'aussi', u'kid']
[u'tourism', u'group', u'get', u'chairman']
[u'tourism', u'loll', u'take', u'toll', u'hotel', u'trade']
[u'travel', u'alert', u'issu', u'middl', u'east']
[u'tribun', u'reject', u'alcohol', u'milk', u'drink', u'appeal']
[u'tweed', u'shire', u'hear', u'merger']
[u'twin', u'path', u'friendship']
[u'charg', u'heroin', u'bust']
[u'children', u'dead', u'townsvill', u'stab']
[u'unmark', u'grave', u'outsid', u'kirkuk']
[u'upgrad', u'highway', u'section', u'open']
[u'admit', u'mosul', u'kill']
[u'citi', u'strike', u'blow', u'adulteri']
[u'doesnt', u'expect', u'talk', u'north', u'korea', u'crisi']
[u'forc', u'captur', u'saddam', u'half', u'brother']
[u'marin', u'deni', u'baghdad', u'governor', u'appoint']
[u'put', u'price', u'saddam', u'head']
[u'see', u'swift', u'breakthrough', u'north', u'korea']
[u'urg', u'lift', u'iraq', u'econom', u'sanction']
[u'vandal', u'relat', u'log', u'decis', u'thwait']
[u'govt', u'promis', u'drink', u'drive', u'crackdown']
[u'opposit', u'question', u'rail', u'standardis']
[u'victorian', u'urg', u'water', u'wise', u'easter']
[u'visit', u'ship', u'take', u'sar', u'precaut']
[u'visitor', u'survey', u'case', u'fund']
[u'parliament', u'move', u'relax', u'cannabi', u'law']
[u'polic', u'accus', u'excess', u'forc']
[u'water', u'leak', u'leav', u'burni', u'resid']
[u'wheat', u'virus', u'cost', u'csiro', u'year', u'research']
[u'wilcannia', u'water', u'restrict', u'lift', u'soon']
[u'wild', u'shellfish', u'extend']
[u'wineri', u'beef', u'secur']
[u'wollongong', u'hydrograph', u'offic', u'host', u'confer']
[u'wollongong', u'name', u'special', u'olymp', u'australia']
[u'woman', u'charg', u'murder', u'children']
[u'wool', u'industri', u'great', u'leader', u'die']
[u'woomera', u'detent', u'centr', u'mothbal']
[u'defend', u'collingwood', u'banner', u'censorship']
[u'rapid', u'trip', u'north', u'gladston']
[u'news', u'that', u'screen']
[u'anti', u'nuclear', u'protest', u'gather', u'near', u'dock']
[u'arsenal', u'vieira', u'week']
[u'atsic', u'leader', u'attack', u'govt', u'fund', u'decis']
[u'name', u'unchang', u'team', u'second', u'test']
[u'australia', u'name', u'unchang', u'line', u'second', u'test']
[u'australian', u'forc', u'uncov', u'iraqi', u'militari', u'hardwar']
[u'australian', u'olymp', u'boss', u'work', u'athen', u'budget']
[u'australia', u'unchang', u'second', u'test']
[u'junk', u'food', u'school', u'report', u'say']
[u'baxter', u'protest', u'begin', u'minor', u'confront']
[u'bike', u'bomb', u'kill', u'year']
[u'billionair', u'philanthropist', u'getti', u'die']
[u'bishop', u'zimbabw', u'tortur', u'cricket', u'protest']
[u'blair', u'tell', u'famili', u'iraq', u'cost']
[u'blix', u'hope', u'inspector', u'return', u'iraq']
[u'blow', u'church', u'deliv', u'missionari', u'puff']
[u'boss', u'tweak', u'rule', u'uphold', u'format']
[u'brack', u'reject', u'break', u'elect', u'promis', u'claim']
[u'brit', u'assist', u'ireland', u'kill', u'report']
[u'brumbi', u'confid', u'ahead', u'waratah', u'clash']
[u'brumbi', u'smash', u'waratah']
[u'brumbi', u'thump', u'waratah', u'crusad', u'edg', u'shark']
[u'burst', u'water', u'main', u'damag', u'home', u'melbourn', u'outer']
[u'crash', u'kill', u'injur', u'cuba']
[u'busi', u'warn', u'exodus', u'plan']
[u'calm', u'restor', u'detent', u'centr', u'protest']
[u'capriati', u'advanc', u'dokic', u'coetzer', u'tumbl']
[u'children', u'hospit', u'appeal', u'shoot']
[u'china', u'wont', u'mediat', u'north', u'korea']
[u'chines', u'leader', u'order', u'offici', u'come', u'clean']
[u'citi', u'deserv', u'uefa', u'slot', u'say', u'keegan']
[u'claim', u'hospit', u'looter', u'rap', u'patient']
[u'coalit', u'forc', u'face', u'continu', u'hostil', u'mosul']
[u'contemporari', u'open', u'adelaid']
[u'costa', u'accus', u'conceal', u'rail', u'alleg']
[u'dead', u'skydiv', u'name', u'releas']
[u'facto', u'convict', u'releas', u'babi', u'death']
[u'detaine', u'releas', u'masri', u'rule']
[u'detent', u'centr', u'face', u'protest']
[u'detent', u'centr', u'protest', u'subsid']
[u'diaz', u'matthew', u'tie', u'lead', u'vega']
[u'dont', u'catch', u'fisheri', u'warn']
[u'drug', u'scandal', u'cricket', u'getti', u'pull', u'stump']
[u'buri', u'hatchet', u'iraq']
[u'exceller', u'doncast']
[u'exum', u'name', u'lewi', u'fernandez', u'dope', u'cover']
[u'split', u'look', u'like', u'say', u'mosley']
[u'thank', u'expat', u'iraqi']
[u'fisher', u'converg', u'whyalla', u'fish', u'contest']
[u'fisichella', u'hand', u'brazil', u'trophi']
[u'fisichella', u'hand', u'brazil', u'trophi', u'imola']
[u'fittler', u'star', u'rooster', u'roll', u'bronco']
[u'flat', u'chat', u'lead', u'brisban', u'gladston']
[u'folk', u'festiv', u'tip', u'attract', u'peopl']
[u'fourteen', u'philippino', u'crucifi', u'good', u'friday']
[u'fourth', u'charg', u'heroin', u'seizur']
[u'gazza', u'vow', u'return', u'chines', u'club', u'treatment']
[u'german', u'author', u'hurt', u'store', u'explos']
[u'grund', u'hold', u'narrow', u'lead']
[u'gunner', u'appeal', u'campbel', u'card']
[u'harrigan', u'manlystorm', u'clash']
[u'hawk', u'team', u'chase', u'pigeon', u'park']
[u'hewitt', u'stand', u'firm', u'threat']
[u'hobart', u'communiti', u'organis', u'win', u'nation', u'award']
[u'hospit', u'appeal', u'rais']
[u'hundr', u'walk', u'commemor', u'christ']
[u'hurrican', u'look', u'number', u'seven']
[u'hussain', u'confirm', u'england', u'test', u'captain']
[u'hydro', u'say', u'steam', u'ahead']
[u'scapegoat', u'ferrari']
[u'injuri', u'statist', u'highlight', u'riski', u'busi']
[u'iraqi', u'claim', u'elect', u'mayor', u'governor']
[u'iraq', u'neighbour', u'demand', u'withdraw']
[u'iraq', u'neighbour', u'meet', u'riyadh']
[u'itali', u'petacchi', u'win', u'second', u'aragon', u'stage']
[u'jacobson', u'shoot', u'lead', u'algarv']
[u'kurd', u'discov', u'burial', u'grind', u'outsid', u'kirkuk']
[u'kurd', u'hand', u'baath', u'parti', u'figur', u'forc']
[u'lara', u'believ', u'windi', u'level', u'test', u'seri']
[u'lara', u'play', u'saviour', u'role']
[u'latham', u'talk', u'irish', u'giant', u'munster']
[u'leader', u'real', u'madrid', u'hop', u'humili', u'barcelona']
[u'lewi', u'fernandez', u'name', u'dope', u'cover', u'claim']
[u'lyon', u'favourit', u'cloud', u'gather', u'marseill']
[u'malaysia', u'deputi', u'appeal', u'sodomi']
[u'injur', u'petrol', u'bowser', u'accid']
[u'lucki', u'aliv', u'cling', u'bonnet']
[u'arsenal', u'face', u'titl', u'playoff']
[u'arsenal', u'face', u'titl', u'play']
[u'milan', u'unit', u'prayer', u'roman', u'conquest']
[u'miss', u'person', u'program', u'help', u'runaway']
[u'kill', u'witch', u'india']
[u'mosqu', u'faith', u'recal', u'saddam', u'visit']
[u'nation', u'librari', u'offer', u'artist', u'scholarship']
[u'navi', u'bring', u'turtl', u'spell']
[u'newcastl', u'jena', u'rule', u'fulham', u'match']
[u'condom', u'aim', u'improv', u'perform']
[u'palestinian', u'cabinet', u'announc']
[u'korea', u'nuclear', u'crisi', u'escal']
[u'korea', u'talk', u'limbo']
[u'galleri', u'safe', u'hand', u'seller']
[u'park', u'urg', u'camp', u'caution']
[u'ralli', u'driver', u'bourn', u'critic', u'condit']
[u'pacif', u'island', u'form', u'unit', u'team']
[u'parliament', u'spend', u'worthwhil', u'aagaard']
[u'peac', u'trust', u'monitor', u'zimbabw', u'abus']
[u'petrol', u'price', u'caus', u'alarm', u'racq']
[u'pittwat', u'resid', u'fight', u'oyster', u'farm']
[u'polic', u'public', u'help', u'case', u'submerg']
[u'polic', u'await', u'baxter', u'activist']
[u'polic', u'kit', u'balloon', u'baxter', u'protest']
[u'polic', u'continu', u'search', u'sweep']
[u'polic', u'investig', u'wembley', u'home', u'invas']
[u'polic', u'plan', u'easter', u'blitz', u'queensland', u'road']
[u'polic', u'road', u'toll', u'tragic']
[u'pollock', u'record', u'south', u'africa', u'seal', u'seri']
[u'power', u'return', u'baghdad', u'hospit']
[u'practic', u'reconcili', u'councillor']
[u'propos', u'subdivis', u'wont', u'affect', u'recreat']
[u'protest', u'breach', u'roadblock', u'near', u'detent', u'centr']
[u'rain', u'strong', u'wind', u'caus', u'damag']
[u'rann', u'redund', u'board']
[u'rare', u'marsupi', u'introduc', u'state']
[u'raymond', u'down', u'dokic', u'capriati', u'quarter']
[u'record', u'smash', u'brisban', u'gladston']
[u'river', u'plate', u'face', u'corinthian', u'libertador']
[u'road', u'toll', u'move', u'seven']
[u'brew', u'iraq', u'sanction']
[u'russian', u'rider', u'receiv', u'year', u'zanini']
[u'saddam', u'half', u'brother', u'question']
[u'samoan', u'teen', u'child', u'killer', u'sentenc', u'death']
[u'sampra', u'pull', u'houston', u'tournament']
[u'paulo', u'grab', u'victori', u'brazilian']
[u'sar', u'babi', u'fight', u'live']
[u'schu', u'face', u'interlago', u'crash']
[u'schumach', u'domin', u'qualifi']
[u'second', u'appeal', u'help', u'nauru']
[u'secur', u'problem', u'hamper', u'effort', u'australian']
[u'senden', u'trail', u'south', u'carolina']
[u'shop', u'reopen', u'loot', u'spree', u'baghdad']
[u'shut', u'wing', u'talli']
[u'singer', u'luther', u'vandross', u'suffer', u'stroke']
[u'nation', u'road']
[u'motorist', u'charg', u'drink', u'drive']
[u'snail', u'trail', u'human', u'activ']
[u'south', u'africa', u'confirm', u'world']
[u'sptnrl']
[u'stem', u'cell', u'provid', u'cure', u'mice']
[u'stock', u'push', u'higher']
[u'surpris', u'draw', u'nacion']
[u'syria', u'consid', u'expel', u'iraqi', u'say']
[u'syria', u'visit', u'broad', u'agenda']
[u'taiwan', u'sar', u'inform']
[u'push', u'tighter', u'lawyer', u'regul']
[u'tasmanian', u'page', u'servic', u'launch', u'servic']
[u'tasmanian', u'tourism', u'confid', u'strong', u'despit']
[u'teacher', u'union', u'awar', u'delay', u'govt']
[u'there', u'panic', u'bayern', u'say', u'hitzfeld']
[u'peopl', u'sentenc', u'death', u'loot', u'tomb']
[u'tigana', u'leav', u'fulham', u'coleman', u'take', u'charg']
[u'tommi', u'neglig', u'child', u'drown']
[u'trebl', u'ranger']
[u'turkey', u'ponder', u'peacekeep', u'role']
[u'twin', u'father', u'plead', u'warn', u'chariti']
[u'skydiv', u'accid']
[u'food', u'suppli', u'arriv', u'baghdad']
[u'unhappi', u'rio', u'take', u'month', u'ponder']
[u'union', u'campaign', u'chang', u'worker', u'compo', u'law']
[u'unit', u'goal', u'hunt', u'titl', u'race', u'head']
[u'admit', u'weapon', u'iraq']
[u'award', u'iraqi', u'util', u'contract']
[u'believ', u'senior', u'iraqi', u'syria']
[u'cultur', u'advis', u'resign', u'inact']
[u'enlist', u'weapon', u'inspector']
[u'itali', u'consult', u'abba', u'extradit']
[u'keen', u'start', u'middl', u'east', u'peac', u'talk']
[u'marin', u'pull', u'baghdad']
[u'marin', u'vacat', u'baghdad', u'day']
[u'offer', u'reward', u'baghdad', u'treasur']
[u'refus', u'sanction', u'mayor', u'governor', u'baghdad']
[u'viduka', u'leed']
[u'vietnam', u'prostitut', u'brush', u'chat', u'line']
[u'violenc', u'erupt', u'protest', u'polic', u'clash']
[u'visitor', u'urg', u'precaut']
[u'death', u'take', u'nation', u'road', u'toll']
[u'theme', u'domin', u'easter', u'messag']
[u'offer', u'tszyu', u'titl', u'deadlock']
[u'woman', u'remand', u'murder', u'charg']
[u'woomera', u'reopen', u'need', u'ruddock']
[u'work', u'begin', u'rebuild', u'basra']
[u'world', u'famous', u'diet', u'doctor', u'die', u'fall']
[u'young', u'jam', u'follow', u'jordan', u'footstep']
[u'dead', u'injur', u'jail', u'riot', u'venezuela']
[u'injur', u'ferri', u'hit', u'english', u'harbour', u'wall']
[u'target', u'iraqi', u'water', u'health', u'problem']
[u'algerian', u'author', u'kidnap', u'tourist', u'report']
[u'ali', u'tribut', u'king', u'legend', u'heal']
[u'alonso', u'untroubl', u'investig']
[u'amnesti', u'condemn', u'court', u'decis', u'hold', u'anwar']
[u'anti', u'protest', u'arrest', u'outsid', u'pentagon']
[u'arab', u'claim', u'footag', u'saddam']
[u'armstrong', u'eye', u'amstel', u'gold']
[u'armstrong', u'eye', u'world']
[u'athlet', u'offici', u'probe', u'drug', u'cover']
[u'aussi', u'target', u'lara']
[u'australian', u'team', u'medic', u'suppli', u'iraq']
[u'australia', u'pledg', u'iraq', u'appeal']
[u'aust', u'urg', u'peac', u'monitor', u'bougainvill']
[u'aust', u'woman', u'trampl', u'death', u'eleph', u'africa']
[u'author', u'take', u'gutnick', u'decis', u'unhcr']
[u'barrichello', u'lead', u'free', u'practic']
[u'baxter', u'protest', u'break', u'polic', u'roadblock']
[u'baxter', u'protest', u'prepar', u'march']
[u'baxter', u'protest', u'retreat', u'campsit']
[u'baxter', u'protest', u'number', u'ruddock']
[u'boati', u'urg', u'follow', u'rule']
[u'bodi', u'recov', u'boat', u'accid']
[u'bush', u'aid', u'play', u'post', u'econom', u'surg']
[u'butcher', u'hungri', u'success', u'motherwel']
[u'holiday', u'maker', u'local', u'tourist']
[u'cameraman', u'kill', u'west', u'bank', u'clash']
[u'canada', u'quarantin', u'sar', u'contact']
[u'canberra', u'driver', u'best', u'behaviour']
[u'cat', u'break']
[u'cat', u'break', u'hawk', u'bomber', u'point']
[u'chalabi', u'wont', u'play', u'role', u'interim', u'iraqi', u'govt']
[u'chief', u'crush', u'cat', u'hurrican', u'overcom', u'highland']
[u'children', u'hospit', u'appeal', u'rais']
[u'china', u'come', u'clean', u'sar', u'toll']
[u'china', u'vow', u'transpar', u'sar']
[u'church', u'leader', u'unit', u'easter', u'messag']
[u'claim', u'disappoint', u'failur', u'stop', u'kashmir']
[u'clangalang', u'claim', u'derbi']
[u'confer', u'examin', u'polic', u'intern']
[u'control', u'baghdad', u'command']
[u'crimin', u'charg', u'follow', u'ireland', u'collus']
[u'custom', u'standard', u'program', u'get', u'fund', u'boost']
[u'depress', u'gazza', u'flee', u'china', u'belli']
[u'detaine', u'play', u'soccer', u'protest', u'rage', u'outsid']
[u'dragon', u'dog']
[u'dragon', u'dog', u'eel', u'panther', u'record', u'win']
[u'dragon', u'event', u'week', u'bulldog']
[u'easter', u'famili', u'festiv', u'kick']
[u'easter', u'road', u'toll', u'hit']
[u'easter', u'road', u'toll', u'abysm', u'start']
[u'injuri', u'add', u'arsenal', u'problem']
[u'escap', u'injuri', u'balloon', u'crash']
[u'stadium', u'plan', u'stop', u'hooligan', u'say']
[u'endang', u'panda', u'china']
[u'expert', u'analys', u'saddam', u'broadcast']
[u'fergi', u'let', u'nauseat', u'arsenal']
[u'ferrero', u'moya', u'cours', u'spain', u'final']
[u'easter', u'road', u'fatal', u'bring', u'nation']
[u'arrest', u'sunshin', u'coast', u'chase']
[u'flat', u'chat', u'grundig', u'celebr', u'brisban', u'gladston']
[u'flat', u'chat', u'grundig', u'honour', u'brisban']
[u'folk', u'music', u'strut', u'stuff', u'canberra']
[u'food', u'mosul', u'face', u'delay']
[u'foreign', u'teacher', u'job', u'better', u'late']
[u'bangladesh', u'captain', u'mashud', u'drop', u'test']
[u'franchitti', u'season', u'doubt', u'crash']
[u'german', u'minist', u'soldier', u'blue']
[u'girl', u'kill', u'india', u'pakistan', u'shell', u'kashmir']
[u'good', u'friday', u'crash', u'good', u'samaritan']
[u'gough', u'bang', u'wasim', u'open', u'hampshir']
[u'govt', u'pledg', u'assist', u'drought']
[u'grand', u'arme', u'claim', u'doncast']
[u'group', u'slam', u'delay']
[u'guerilla', u'ambush', u'easter', u'parad', u'colombia']
[u'hawk', u'bomber', u'point', u'cat', u'break']
[u'hawk', u'sink', u'swan', u'bomber', u'beat', u'bulldog']
[u'heavi', u'rain', u'flood', u'kill', u'peopl', u'oman']
[u'henin', u'hardenn', u'davenport', u'reach', u'semi', u'amelia']
[u'hoddl', u'admit', u'euro', u'dream']
[u'hodg', u'rescu', u'australia']
[u'hong', u'kong', u'report', u'record', u'jump', u'sar', u'case']
[u'hong', u'kong', u'take', u'sar', u'broom']
[u'balloon', u'crash', u'melbourn', u'injuri']
[u'human', u'shield', u'happi', u'home']
[u'approv', u'million', u'loan', u'lanka']
[u'ipswich', u'beat', u'portsmouth', u'close', u'playoff']
[u'iraqi', u'nerv', u'offici', u'surrend', u'forc']
[u'iraq', u'friday', u'prayer', u'issu', u'warn']
[u'islam', u'forum', u'focus', u'media', u'portray']
[u'jerusalem', u'crowd', u'follow', u'path', u'christ']
[u'jockey', u'club', u'fight', u'sale', u'randwick', u'taxi', u'strip']
[u'journalist', u'detain', u'detent', u'centr', u'protest']
[u'jurass', u'park', u'creator', u'agre', u'wife', u'million']
[u'kung', u'matthew', u'share', u'lead', u'vega']
[u'lang', u'park', u'get', u'pedestrian', u'bridg']
[u'late', u'goal', u'see', u'forc', u'sink', u'spirit']
[u'lauda', u'prais', u'fifth', u'place', u'webber']
[u'malaysian', u'pair', u'appear', u'court', u'drug', u'charg']
[u'charg', u'murder', u'ship', u'stab']
[u'citi', u'cruis', u'sleepi', u'spur']
[u'citi', u'sink', u'sleepi', u'spur']
[u'marin', u'pull', u'baghdad', u'armi', u'move']
[u'mckenzi', u'lead', u'south', u'africa', u'india']
[u'meat', u'compani', u'shed', u'debt']
[u'milton', u'smash', u'speed', u'record']
[u'minist', u'alleg', u'doubl', u'bank', u'robber']
[u'molik', u'budapest', u'semi']
[u'motorcycl', u'rider', u'die', u'sand', u'dune', u'leap']
[u'moya', u'eye', u'hewitt', u'spot']
[u'moya', u'eye', u'spot']
[u'call', u'watchdog', u'evid', u'accc']
[u'mugab', u'issu', u'defiant', u'speech']
[u'nasa', u'postpon', u'infra', u'telescop', u'launch']
[u'naurus', u'phosphat', u'cash', u'near', u'minist']
[u'neighbour', u'countri', u'fear', u'iraq', u'fragment']
[u'neighbour', u'urg', u'pursu', u'anti', u'nuke', u'talk']
[u'neighbour', u'warn', u'hand', u'iraq']
[u'nigerian', u'vote', u'landmark', u'presidenti', u'poll']
[u'nigeria', u'vote', u'shadow', u'violenc']
[u'korean', u'defianc', u'put', u'talk', u'jeopardi']
[u'korea', u'suggest', u'talk', u'south']
[u'korea', u'talk', u'doubt', u'fuel', u'announc']
[u'welcom', u'summit', u'aborigin', u'death']
[u'hop', u'method', u'census']
[u'look', u'sponsor', u'oversea', u'teacher']
[u'ralli', u'driver', u'bourn', u'coma']
[u'ogilivi', u'trail', u'lead', u'south', u'carolina']
[u'dead', u'miss', u'wash', u'rock']
[u'dead', u'injur', u'crash']
[u'owen', u'take', u'algarv', u'lead', u'jacobson', u'slip', u'pace']
[u'palac', u'manag', u'franci', u'leav', u'mutal', u'consent']
[u'pantani', u'miss', u'valverd', u'win', u'stage']
[u'poland', u'seal', u'billion', u'militari', u'deal']
[u'polic', u'appal', u'road', u'toll']
[u'polic', u'arrest', u'protest', u'fresh', u'clash', u'outsid']
[u'polic', u'clamp', u'kite', u'fli', u'protest']
[u'polic', u'investig', u'fatal', u'stab', u'ship']
[u'polic', u'investig', u'stab', u'death', u'boat']
[u'polic', u'mount', u'search', u'bushwalk']
[u'pope', u'pray', u'victim', u'terror']
[u'price', u'predict', u'dragon']
[u'probe', u'begin', u'skydiv', u'death']
[u'protest', u'determin', u'incit', u'violenc', u'ruddock']
[u'public', u'abus', u'ground', u'divorc', u'court']
[u'pursuit', u'boat', u'link', u'heroin', u'haul', u'continu']
[u'qlds', u'easter', u'road', u'toll', u'revis']
[u'tourism', u'look', u'domest', u'market']
[u'cross', u'urg', u'blood', u'donat', u'easter']
[u'rescu', u'research', u'return', u'pedra', u'branca']
[u'resid', u'urg', u'involv', u'floriad']
[u'ricciuto', u'clear', u'crow']
[u'ross', u'sizzl', u'stawel', u'gift', u'heat']
[u'ruptur', u'water', u'main', u'cost', u'thousand']
[u'russia', u'star', u'year']
[u'saddam', u'financ', u'minist', u'custodi']
[u'govt', u'accus', u'block', u'request']
[u'govt', u'initi', u'sustain', u'roundtabl']
[u'govt', u'tough', u'hoon']
[u'sar', u'disastr', u'hong', u'kong', u'say', u'chief', u'exec']
[u'searcher', u'miss', u'bushwalk']
[u'second', u'death', u'road', u'easter', u'break']
[u'seven', u'kill', u'tribal', u'feud', u'pakistan']
[u'seven', u'arrest', u'protest']
[u'sheedi', u'brace', u'fast', u'pace', u'bulldog']
[u'singapor', u'death', u'toll', u'overtak', u'canada']
[u'commission', u'welcom', u'atsic', u'overhaul']
[u'film', u'industri', u'get', u'fund', u'boost']
[u'page', u'launch', u'rang', u'servic']
[u'triumph', u'german', u'english', u'lose', u'marbl']
[u'turkish', u'policewoman', u'charg', u'tortur']
[u'ullrich', u'add', u'flech', u'wallonn', u'schedul']
[u'call', u'backup', u'bougainvill']
[u'unknown', u'remain', u'digger', u'franc']
[u'airlin', u'pilot', u'carri', u'gun']
[u'british', u'forc', u'releas', u'iraqi', u'prison']
[u'forc', u'releas', u'iraqi', u'pow']
[u'forc', u'tri', u'resolv', u'power', u'disput']
[u'releas', u'iraqi', u'pow']
[u'consult', u'alli', u'north', u'korea', u'talk']
[u'field', u'member', u'forc', u'iraq']
[u'tribun', u'begin', u'judg', u'status', u'iraqi', u'pow']
[u'troop', u'iraqi', u'minist', u'custodi']
[u'unfaz', u'suppos', u'saddam', u'video']
[u'death', u'bring', u'nation', u'toll']
[u'video', u'phone', u'swipe', u'heist']
[u'vietnam', u'consid', u'close', u'land', u'border', u'china']
[u'waugh', u'target', u'lara']
[u'waugh', u'target', u'lara', u'second', u'test']
[u'webber', u'impress', u'qualifi']
[u'wildcard', u'robertson', u'elimin', u'low']
[u'woman', u'wash', u'rock', u'drown']
[u'world', u'semi', u'final', u'bonus', u'offer', u'fiji']
[u'tourist', u'dead', u'boat', u'sink', u'brazil']
[u'polic', u'baxter', u'protest']
[u'dead', u'week', u'unseason', u'rain', u'oman']
[u'arrest', u'basra', u'bank', u'robberi']
[u'year', u'warsaw', u'ghetto', u'upris']
[u'oppn', u'critic', u'school', u'condom', u'option']
[u'train', u'stop', u'short', u'basra']
[u'critic', u'medicar', u'reform', u'packag']
[u'american', u'airlin', u'deal', u'jeopardi']
[u'american', u'pow', u'return', u'home']
[u'aussi', u'torment', u'champion', u'surrey']
[u'australia', u'build', u'lead']
[u'australia', u'determin', u'stop', u'illeg', u'drug']
[u'author', u'claim', u'result', u'drug', u'oper']
[u'baghdad', u'condit', u'appal']
[u'baghdad', u'cat', u'hungri', u'food']
[u'baxter', u'protest', u'face', u'polic']
[u'baxter', u'protest', u'move', u'port', u'augusta', u'jail']
[u'beckham', u'gigg', u'go', u'ferguson']
[u'blue', u'hold', u'edg', u'hurrican', u'super']
[u'blue', u'hurrican', u'close', u'semi', u'final', u'spot']
[u'blue', u'hurrican', u'close', u'super', u'semi']
[u'bush', u'mourn', u'loss', u'life', u'iraq']
[u'call', u'better', u'infrastructur']
[u'canada', u'sar', u'toll', u'rise']
[u'carer', u'need', u'guid', u'pup']
[u'chanderpaul', u'australia']
[u'chanderpaul', u'injuri', u'australia']
[u'chase', u'continu', u'boat', u'link', u'heroin', u'haul']
[u'china', u'tip', u'signific', u'rais', u'sar', u'toll']
[u'china', u'urg', u'student', u'travel', u'sar', u'precaut']
[u'cink', u'cours', u'year', u'drought']
[u'colombian', u'rider', u'fail', u'blood', u'test', u'amstel', u'gold']
[u'conserv', u'degre', u'wont', u'repriev']
[u'coria', u'stop', u'moya', u'reveng', u'ferrero']
[u'crew', u'hold', u'dare', u'drug', u'raid']
[u'crow', u'clip', u'eagl']
[u'crow', u'clip', u'eagl', u'port', u'docker', u'triumph']
[u'death', u'toll', u'rise', u'israel', u'raid', u'west', u'bank', u'gaza']
[u'dementieva', u'upset', u'henin', u'hardenn', u'amelia', u'island']
[u'democrat', u'accus', u'baxter', u'polic', u'overkil']
[u'democrat', u'labor', u'support', u'asylum', u'seeker']
[u'democrat', u'support', u'welcom', u'home', u'parad', u'troop']
[u'demonstr', u'polic', u'agre', u'baxter', u'protest']
[u'dokic', u'want', u'play', u'australia', u'report']
[u'dortmund', u'beat', u'bayern', u'chang']
[u'downer', u'doubt', u'north', u'korea', u'nuclear', u'claim']
[u'downer', u'expect', u'coalit', u'victori', u'declar', u'soon']
[u'easter', u'celebr', u'paus', u'reflect', u'iraq']
[u'easter', u'road', u'toll', u'revis']
[u'easter', u'sunday', u'servic', u'begin', u'victoria']
[u'patten', u'say', u'north', u'korea', u'danger', u'world']
[u'falkirk', u'titl', u'promot', u'parti', u'hold']
[u'govt', u'polic', u'baxter']
[u'convoy', u'reach', u'baghdad']
[u'fisherman', u'wash', u'rock', u'miss']
[u'palestinian', u'dead', u'isra', u'armi', u'raid']
[u'ganguli', u'confid', u'ahead', u'nation', u'final']
[u'glori', u'smash', u'newcastl']
[u'green', u'call', u'probe', u'dope', u'charg']
[u'green', u'road', u'share', u'educ']
[u'haa', u'delay', u'comeback', u'pull', u'munich', u'open']
[u'head', u'roll', u'sar', u'cover']
[u'heart', u'break', u'celtic', u'titl', u'challeng']
[u'husband', u'seek', u'marit', u'peac', u'raid', u'siren']
[u'imag', u'camera', u'focus', u'genesi', u'diseas']
[u'indian', u'coach', u'say', u'pacemen', u'hold', u'success']
[u'indian', u'wind', u'kashmir', u'tour', u'peac', u'gestur']
[u'investig', u'resum', u'boat', u'accid']
[u'ipswich', u'polic', u'search', u'miss', u'babi']
[u'iraqi', u'minist', u'hold', u'ask', u'leav']
[u'isra', u'armi', u'stag', u'jenin', u'incurs']
[u'joost', u'inspir', u'bull', u'roast', u'red']
[u'juve', u'march', u'past', u'roma', u'milan', u'stun', u'empoli']
[u'katherin', u'welcom', u'raaf', u'pilot']
[u'kato', u'lose', u'fight', u'life']
[u'knight', u'shark', u'eagl', u'edg', u'storm']
[u'kung', u'hold', u'sorenstam', u'lpga', u'tour']
[u'leader', u'real', u'hold', u'draw', u'battl', u'barca']
[u'legal', u'sleep', u'defenc', u'odd', u'medic', u'evid']
[u'lehmann', u'pont', u'australia', u'control']
[u'lehmann', u'delight', u'test']
[u'lehmann', u'delight', u'maiden', u'test', u'centuri']
[u'leicest', u'premier', u'leagu']
[u'lill', u'hold', u'lyon', u'bordeaux', u'close', u'leader']
[u'littl', u'hope', u'pair', u'sweep']
[u'look', u'holiday', u'urg', u'church']
[u'mayweath', u'retain', u'lightweight', u'crown']
[u'meat', u'hook', u'artist', u'leav', u'shop', u'crowd', u'hang']
[u'megson', u'demand', u'cash', u'ensur', u'baggi', u'bounc']
[u'mentor', u'nicklaus', u'pay', u'tribut', u'weir']
[u'molik', u'set', u'final', u'date', u'serna']
[u'steal', u'iraqi', u'treasur', u'reappear']
[u'nation', u'easter', u'road', u'toll', u'climb']
[u'nation', u'easter', u'road', u'toll', u'rise']
[u'nation', u'road', u'toll', u'hit']
[u'palestinian', u'row', u'arafat']
[u'nigeria', u'anxious', u'wait', u'presid', u'poll', u'result']
[u'fast', u'track', u'asian', u'nurs', u'student']
[u'push', u'seatbelt', u'chang']
[u'palestinian', u'attend', u'slay', u'cameraman', u'funer']
[u'petacchi', u'claim', u'stage', u'tour', u'aragon']
[u'pet', u'dump', u'amid', u'sar', u'uncertainti', u'hong', u'kong']
[u'polic', u'brace', u'baxter', u'protest']
[u'polic', u'miss', u'babi']
[u'polic', u'investig', u'girl', u'abduct']
[u'polic', u'investig', u'stab', u'incid']
[u'polic', u'nannup', u'famili', u'wash', u'rock']
[u'polic', u'raid', u'civil', u'servant', u'disservic']
[u'polic', u'recov', u'bodi', u'oven', u'river']
[u'polic', u'report', u'west', u'ham', u'cole', u'brevett']
[u'polic', u'urg', u'motorist', u'restrain', u'kid']
[u'poll', u'close', u'nigerian', u'elect']
[u'pont', u'lehmann', u'pulveris', u'windi']
[u'pont', u'lehmann', u'ton', u'australia', u'control']
[u'pope', u'easter', u'messag', u'call', u'cultur']
[u'power', u'snatch', u'gasp', u'draw']
[u'pow', u'home', u'hero', u'welcom']
[u'protest', u'begin', u'latest', u'trek', u'baxter']
[u'protest', u'hail', u'effort', u'success']
[u'protest', u'hail', u'success', u'demonstr']
[u'protest', u'stage', u'concert', u'racism']
[u'maintain', u'titl', u'momentum']
[u'church', u'leader', u'urg', u'deeper', u'focus']
[u'kill', u'speedway', u'accid']
[u'rain', u'forc', u'postpon', u'india', u'south', u'africa']
[u'ranger', u'battl', u'final', u'place']
[u'cross', u'say', u'civil', u'administr', u'baghdad']
[u'reid', u'let', u'smith', u'sorri', u'leed']
[u'repent', u'lie', u'public', u'archbishop', u'tell', u'govt']
[u'rescu', u'effort', u'continu', u'save', u'florida', u'beach']
[u'retail', u'unsur', u'easter', u'sunday', u'trade']
[u'return', u'inspector', u'iraq', u'realist']
[u'ricoh', u'stop', u'make', u'film', u'load', u'camera']
[u'rockhampton', u'accid', u'lift', u'easter', u'death', u'toll']
[u'rower', u'begin', u'record', u'attempt']
[u'ruddock', u'defend', u'stanc', u'atsic', u'fund', u'review']
[u'ruddock', u'offer', u'compo', u'baxter', u'cost']
[u'saddam', u'go', u'shiit', u'muslim', u'free', u'worship']
[u'saddam', u'photo', u'seiz', u'jordan', u'border']
[u'sar', u'continu', u'spread', u'asia']
[u'schumach', u'claim', u'imola']
[u'schumach', u'race', u'despit', u'mother', u'death']
[u'schumach', u'take', u'emot']
[u'seafood', u'price', u'bless', u'local', u'easter']
[u'search', u'continu', u'miss']
[u'search', u'resum', u'miss', u'brother']
[u'search', u'resum', u'famili', u'wash', u'rock']
[u'seven', u'dead', u'palestinian', u'isra', u'armi', u'clash']
[u'seven', u'arrest', u'protest']
[u'dead', u'nigerian', u'poll', u'attack', u'monitor']
[u'slater', u'rid', u'high', u'bell', u'beach']
[u'smooth', u'sail', u'gladston']
[u'spanish', u'opera', u'star', u'sing', u'petersburg', u'gala']
[u'special', u'forc', u'brave', u'sea', u'captur', u'drug', u'boat']
[u'swat', u'team', u'enter', u'baxter', u'protest', u'camp']
[u'swede', u'jacobson', u'portug']
[u'sword', u'leav', u'open', u'beazley', u'return', u'labor']
[u'sydney', u'beach', u'face', u'pollut', u'rain']
[u'teenag', u'charg', u'babi', u'abduct']
[u'kill', u'road', u'hour']
[u'palestinian', u'kill', u'gaza', u'raid']
[u'titl', u'race', u'wire', u'unit', u'arsenal']
[u'earli', u'specul', u'dwyer', u'replac']
[u'chines', u'offici', u'sack', u'sar', u'cover']
[u'town', u'throw', u'easter', u'bunni']
[u'wallabi', u'warn', u'lift', u'game']
[u'train', u'basra', u'restart', u'suppli']
[u'tuffey', u'jayawarden', u'share', u'honour', u'kiwi', u'tour']
[u'see', u'higher', u'tech', u'militari', u'firepow', u'paper']
[u'unit', u'arsenal', u'head', u'wire', u'hammer', u'face']
[u'armi', u'ignor', u'alert', u'museum', u'loot', u'risk', u'report']
[u'armi', u'charg', u'baghdad']
[u'expect', u'retain', u'militari', u'base', u'iraq']
[u'consult', u'alli', u'north', u'korea', u'talk']
[u'maintain', u'militari', u'base', u'iraq']
[u'want', u'phase', u'sanction', u'report']
[u'easter', u'road', u'toll', u'rise']
[u'easter', u'road', u'toll', u'rise']
[u'call', u'school', u'care', u'reform']
[u'vigil', u'saddam', u'home', u'town', u'tikrit']
[u'wainaina', u'biktagirova', u'nagano', u'olymp', u'memori']
[u'miss', u'person', u'search', u'resum', u'light']
[u'warn', u'death', u'mushroom']
[u'seek', u'duke', u'highway', u'work']
[u'quarantin', u'singapor', u'sar', u'scare']
[u'townsvill', u'cultur', u'centr', u'plan']
[u'anger', u'manag', u'rage', u'cinema']
[u'anim', u'relat', u'crash', u'rise']
[u'dead', u'lao', u'attack']
[u'machin', u'steal', u'geraldton', u'nightclub']
[u'aussi', u'snare', u'lara', u'wicket', u'short', u'centuri']
[u'australia', u'want', u'dokic', u'olymp']
[u'light', u'deni', u'south', u'africa', u'victori']
[u'baxter', u'phone', u'restor', u'visit', u'resum']
[u'boati', u'caus', u'concern', u'coastal', u'patrol']
[u'bodi', u'soldier', u'buri', u'iraq']
[u'braddon', u'flat', u'damag']
[u'bulk', u'bill', u'doctor']
[u'bulldog', u'alvey', u'face', u'knee', u'reconstruct']
[u'bulldog', u'injuri', u'crisi']
[u'bush', u'see', u'posit', u'sign', u'syrian', u'cooper']
[u'busi', u'asian', u'trade', u'advic']
[u'polic', u'sand', u'dun']
[u'canadian', u'tycoon', u'eye', u'selfridg']
[u'canberra', u'folk', u'festiv', u'draw', u'crowd']
[u'candid', u'suffer', u'brochur', u'setback']
[u'chelsea', u'host', u'everton', u'fight', u'champion', u'leagu']
[u'china', u'introduc', u'hour', u'sar', u'test']
[u'chines', u'media', u'slam', u'sar', u'cover']
[u'chines', u'role', u'give', u'bush', u'confid', u'north', u'korea']
[u'concern', u'air', u'river', u'murray']
[u'concern', u'impact', u'law']
[u'consult', u'seek', u'pool', u'direct']
[u'cooper', u'reduc', u'tennant', u'creek', u'antisoci', u'woe']
[u'coral', u'bleach', u'microscop']
[u'coron', u'get', u'interim', u'report', u'boat', u'death']
[u'cosgrov', u'wont', u'timelin', u'troop', u'return']
[u'councillor', u'unhappi', u'speed', u'plan']
[u'council', u'reject', u'coast', u'high', u'rise', u'claim']
[u'council', u'road', u'drainag', u'fund']
[u'crash', u'investig', u'examin', u'scene', u'semitrail']
[u'crew', u'appear', u'court', u'huge', u'heroin', u'haul']
[u'crowd', u'flock', u'bless', u'fleet']
[u'crowd', u'flock', u'sport', u'aircraft', u'gather']
[u'custom', u'search', u'north', u'korean', u'ship', u'drug']
[u'darwin', u'high', u'win', u'educ', u'award']
[u'democrat', u'oppos', u'boost', u'detent', u'law']
[u'deportivo', u'sociedad', u'close', u'real']
[u'dinosaur', u'exhibit', u'track']
[u'doubl', u'bhupathi', u'mirnyi']
[u'drought', u'research', u'centr', u'moot']
[u'dunde', u'super', u'caley']
[u'easter', u'festiv', u'wrap', u'roma']
[u'easter', u'visitor', u'scrambl', u'giant', u'display']
[u'general', u'head', u'iraq', u'opec', u'deleg']
[u'explos', u'north', u'korea', u'missil', u'test', u'site', u'report']
[u'fatal', u'free', u'weekend', u'tamworth', u'region', u'road']
[u'fear', u'sar', u'gain', u'foothold', u'china']
[u'feyenoord', u'challeng', u'european']
[u'finland', u'tackl', u'spill', u'baltic']
[u'food', u'convoy', u'arriv', u'baghdad']
[u'kill', u'isra', u'raid', u'gaza', u'camp']
[u'forest', u'hill', u'restaur', u'bring', u'control']
[u'french', u'minist', u'insist', u'veil', u'photo']
[u'gene', u'therapi', u'offer', u'diabet', u'hope']
[u'good', u'rain', u'boost', u'north', u'farmer']
[u'govt', u'dismiss', u'galleri', u'budget', u'critic']
[u'govt', u'divid', u'million', u'baxter', u'polic']
[u'hill', u'cosgrov', u'leav', u'visit', u'troop']
[u'hill', u'shatter', u'thiev', u'target', u'jersey']
[u'hous', u'evacu', u'dealership', u'blaze']
[u'humanitarian', u'crisi', u'emerg', u'iraq', u'jordan', u'border']
[u'immigr', u'boat', u'bind', u'australia', u'report']
[u'increas', u'persecut', u'alleg', u'vietnam']
[u'interim', u'leader', u'tour', u'baghdad']
[u'interim', u'leader', u'tour', u'baghdad', u'hospit']
[u'iraqi', u'democraci', u'year', u'senat']
[u'iraqi', u'observ', u'sombr', u'easter', u'food', u'arriv']
[u'jacobson', u'eagl', u'secur', u'algarv']
[u'japanes', u'insur', u'giant', u'stake', u'chines', u'insur']
[u'john', u'conced', u'form', u'better']
[u'kopassus', u'troop', u'jail', u'papua', u'leader', u'murder']
[u'korean', u'unit', u'aggress', u'north']
[u'kyrgyzstan', u'landslid', u'kill']
[u'laker', u'cruis', u'iverson', u'playoff']
[u'landslid', u'kill', u'peopl', u'southern', u'kyrgyzstan']
[u'lara', u'fall', u'short']
[u'lara', u'fall', u'short', u'centuri']
[u'larg', u'crowd', u'converg', u'oakbank', u'easter', u'carniv']
[u'late', u'assault', u'put']
[u'latham', u'hope', u'red', u'return']
[u'love', u'beat', u'austin', u'agon', u'playoff', u'fifth']
[u'die', u'cliff', u'fall']
[u'die', u'truck', u'crash']
[u'hospit', u'incid']
[u'face', u'court', u'drug', u'charg']
[u'mayor', u'unconcern', u'announc']
[u'mayor', u'unhappi', u'rival', u'bid', u'lifesav', u'event']
[u'mayor', u'urg', u'rocki', u'ryan', u'affair']
[u'mcgrath', u'leav', u'caribbean', u'tour']
[u'mcgrath', u'return', u'test']
[u'member', u'desert', u'hawthorn']
[u'rescu', u'yacht', u'hit', u'rock']
[u'molik', u'down', u'budapest', u'final']
[u'monaco', u'dislodg', u'lyon', u'strasbourg']
[u'mother', u'want', u'race', u'say', u'griev', u'schu']
[u'motorist', u'urg', u'boost', u'driveway', u'safeti']
[u'seek', u'drought', u'bank', u'moratorium']
[u'nasa', u'shuttl', u'manag', u'resign']
[u'nation', u'road', u'toll', u'hit']
[u'nigerian', u'poll', u'mar', u'premedit', u'fraud']
[u'nigeria', u'edg', u'result', u'count', u'landmark']
[u'french', u'open', u'ferrero', u'defend', u'mont', u'carlo']
[u'author', u'hunt', u'grapevin', u'diseas']
[u'korea', u'correct', u'nuclear', u'statement']
[u'promot', u'visit', u'indigen', u'communiti']
[u'research', u'invit', u'biolog', u'divers']
[u'ralli', u'driver', u'bourn', u'coma']
[u'ralli', u'hero', u'bourn', u'coma', u'day']
[u'pakistan', u'investig', u'attack', u'militari', u'helicopt']
[u'palestinian', u'threaten', u'quit', u'report']
[u'parson', u'break', u'drought', u'knight']
[u'piepoli', u'win', u'aragon', u'tour', u'ullrich', u'skip']
[u'bestow', u'thousand', u'centenari', u'medal']
[u'meet', u'blair', u'annan']
[u'polic', u'begin', u'investig', u'climber', u'death']
[u'polic', u'claim', u'hindu', u'massacr', u'milit', u'shoot', u'dead']
[u'polic', u'defend', u'baxter', u'raid']
[u'polic', u'highlight', u'need', u'safeti', u'road']
[u'polic', u'hunt', u'woman', u'home', u'invas']
[u'polic', u'ponder', u'kingfish', u'outbreak']
[u'polic', u'unhappi', u'road', u'toll']
[u'pong', u'crew', u'face', u'extradit', u'hear']
[u'pont', u'gilchrist', u'slaughter', u'windi']
[u'post', u'mortem', u'hold', u'beach', u'bodi']
[u'potenti', u'leader', u'say', u'role', u'iraq']
[u'power', u'suppli', u'restor', u'eastern', u'baghdad']
[u'privat', u'cover', u'moot']
[u'public', u'flock', u'sunshin', u'coast', u'beach']
[u'public', u'urg', u'vigil', u'illeg']
[u'public', u'urg', u'help', u'solv', u'year', u'murder']
[u'public', u'urg', u'look', u'anim', u'drug']
[u'death', u'take', u'nation', u'road', u'toll']
[u'fatal', u'take', u'nation', u'road', u'toll']
[u'govt', u'plan', u'tough', u'abus', u'parent']
[u'road', u'toll', u'stand']
[u'raquet', u'win', u'easter', u'steepl', u'chase']
[u'real', u'confid', u'recaptur', u'form']
[u'record', u'wheat', u'harvest', u'predict']
[u'region', u'driver', u'awar', u'phone', u'risk', u'studi']
[u'revamp', u'byron', u'polic']
[u'richardson', u'fleme', u'merri', u'draw', u'tour', u'match']
[u'richmond', u'fend', u'late', u'kilda', u'charg']
[u'road', u'crackdown', u'help', u'south', u'east', u'safe']
[u'road', u'death', u'easter', u'break']
[u'ross', u'favourit', u'stawel', u'gift']
[u'ross', u'take', u'stawel', u'gift']
[u'russia', u'dementieva', u'win', u'career', u'singl']
[u'saddam', u'iraq', u'say', u'leader']
[u'saddam', u'remov', u'ancient', u'babylon', u'brick', u'brick']
[u'saddam', u'surrend']
[u'democrat', u'slam', u'ruddock', u'comment', u'baxter']
[u'safin', u'barcelona', u'clay']
[u'govt', u'explor', u'option', u'murray', u'dredg']
[u'paulo', u'coach', u'jeer', u'amid', u'streak']
[u'sar', u'vaccin', u'hard', u'expert']
[u'seal', u'prove', u'sashimi', u'love', u'houdini']
[u'search', u'continu', u'miss', u'angler']
[u'search', u'resum', u'miss']
[u'singapor', u'brace', u'largest', u'sar', u'quarantin']
[u'wicket', u'gough', u'want', u'england', u'return']
[u'soldier', u'charg', u'child', u'abduct']
[u'solitari', u'island', u'lighthous', u'build']
[u'south', u'accept', u'north', u'korean', u'talk', u'offer']
[u'space', u'station', u'crew', u'final', u'train']
[u'speedway', u'driver', u'die', u'central', u'west', u'crash']
[u'step', u'sar', u'measur', u'doctor', u'warn']
[u'studi', u'find', u'room', u'improv', u'heart']
[u'stuttgart', u'blow', u'chanc', u'close', u'bayern']
[u'subbi', u'legisl', u'chang', u'compani']
[u'sun', u'celtic', u'steal', u'march', u'play', u'off', u'begin']
[u'swimmer', u'die', u'green', u'glade', u'beach']
[u'syria', u'egypt', u'leader', u'discuss', u'iraq', u'pressur']
[u'talk', u'resum', u'palestinian', u'arafat']
[u'teen', u'die', u'motorcycl', u'crash']
[u'miss', u'brazil', u'ferri', u'disast']
[u'peak', u'yacht', u'race', u'continu', u'scale', u'height']
[u'year', u'cairo', u'turn', u'ancient', u'tomb']
[u'thuggeri', u'report', u'obasanjo', u'lead', u'poll']
[u'tourism', u'industri', u'urg', u'adopt', u'better', u'busi']
[u'trezeguet', u'rule', u'juve', u'barcelona']
[u'turkey', u'pledg', u'peacekeep', u'await', u'fund', u'detail']
[u'dead', u'busload', u'argentinian', u'soccer', u'fan']
[u'death', u'china', u'sar']
[u'demand', u'inquiri', u'iraqi', u'weapon', u'claim']
[u'untal', u'swede', u'prove', u'public', u'good']
[u'vinokourov', u'scoop', u'amstel', u'gold']
[u'vinokourov', u'win', u'amstel', u'gold', u'race']
[u'visitor', u'survey', u'highlight', u'concern']
[u'iraq', u'lend', u'extra', u'signific', u'anzac']
[u'warn', u'namesak', u'toad', u'alli', u'outclass']
[u'warrior', u'hold', u'cowboy']
[u'west', u'ham', u'cole', u'face', u'music']
[u'whatmor', u'brace', u'enorm', u'bangladesh', u'challeng']
[u'whatmor', u'name', u'bangladesh', u'coach']
[u'whatmor', u'name', u'bangladesh', u'coach']
[u'plan', u'second', u'sar', u'confer', u'june']
[u'team', u'shanghai', u'death', u'beij']
[u'william', u'prais', u'emot', u'ralf']
[u'windi', u'start', u'mammoth', u'chase']
[u'wrangl', u'erupt', u'highway', u'bypass']
[u'wynyard', u'leak', u'forc', u'evacu']
[u'ming', u'play', u'asian', u'championship', u'china']
[u'milit', u'kill', u'kashmir', u'clash']
[u'academ', u'cast', u'doubt', u'park', u'mine']
[u'govt', u'accus', u'wast', u'review', u'studi']
[u'investig', u'dockland', u'entri', u'problem']
[u'darter', u'netbal', u'honour']
[u'play', u'delay']
[u'challeng', u'intel', u'chip']
[u'race', u'like', u'schumach']
[u'argentin', u'protest', u'torch', u'car', u'evict']
[u'arm', u'bandit', u'hit', u'fruit', u'shop']
[u'art', u'road', u'govt', u'fund']
[u'asylum', u'boat', u'head', u'aust', u'shore']
[u'asylum', u'boat', u'say', u'head', u'australia']
[u'australia', u'aim', u'quick', u'run']
[u'australia', u'win', u'underwat', u'hockey', u'titl']
[u'barca', u'european', u'threat', u'juventus']
[u'bashir', u'anxious', u'face', u'trial']
[u'beckham', u'want', u'real', u'rule']
[u'berrigan', u'wait', u'charg', u'decis']
[u'easter', u'weekend', u'bendigo']
[u'serv', u'help', u'mathia', u'gold']
[u'blue', u'erupt', u'toilet', u'plan']
[u'brack', u'telstra', u'save', u'job']
[u'british', u'wife', u'prais', u'effort', u'coalit']
[u'busi', u'urg', u'build', u'north', u'east', u'asian', u'trade']
[u'parliament', u'mildura']
[u'cancel', u'loan', u'help', u'boost', u'cook', u'shire', u'water']
[u'canley', u'vale', u'club', u'hold']
[u'carl', u'lewi', u'arrest', u'suspect', u'drink', u'drive']
[u'carr', u'deni', u'anti', u'smoke', u'law', u'burn', u'club', u'profit']
[u'cathol', u'communiti', u'rememb', u'priest', u'fond']
[u'central', u'driver', u'wors']
[u'chaplain', u'send', u'consol', u'town', u'drown']
[u'chechen', u'offici', u'confirm', u'civilian', u'kill']
[u'chelsea', u'hammer', u'everton', u'champ', u'leagu', u'race']
[u'children', u'hold', u'camp', u'xray', u'admit']
[u'china', u'scrambl', u'stem', u'sar', u'tide']
[u'chines', u'nation', u'face', u'melbourn', u'court', u'heroin']
[u'probe', u'cape', u'york', u'polic', u'investig']
[u'commiss', u'dig', u'extra', u'murray', u'fund']
[u'compani', u'deni', u'telstra', u'contract', u'sweatshop']
[u'convict', u'quiz', u'cheat', u'plan', u'appeal']
[u'council', u'fast', u'track', u'develop', u'plan']
[u'council', u'oppos', u'anim', u'cruelti', u'move']
[u'council', u'probe', u'water', u'option']
[u'council', u'staff', u'rise']
[u'council', u'debat', u'plan']
[u'credit', u'card', u'replac', u'medicar', u'card', u'oppn']
[u'curs', u'treasur', u'sing', u'budget', u'blue']
[u'date', u'summit', u'public', u'drunken']
[u'democrat', u'threaten', u'block', u'threshold', u'hike']
[u'dingo', u'day', u'number']
[u'dolphin', u'death', u'probe', u'continu']
[u'downer', u'sceptic', u'north', u'korea', u'talk']
[u'drought', u'delay', u'bilbi', u'program']
[u'easter', u'boom', u'time', u'south', u'east']
[u'audit', u'warn', u'extinct', u'crisi']
[u'elect', u'delay', u'give', u'time', u'consid', u'merger']
[u'extradit', u'underway', u'alleg', u'drug', u'runner']
[u'farmer', u'give', u'wind', u'eros', u'warn']
[u'farmer', u'confid', u'good', u'rain']
[u'father', u'anger', u'ablett', u'medal']
[u'father', u'disbelief', u'ablett', u'medal']
[u'fear', u'global', u'event', u'spark', u'tourism']
[u'kill', u'attack', u'obasanjo', u'daughter']
[u'dead', u'wound', u'kashmir', u'blast']
[u'garner', u'hold', u'talk', u'kurdish', u'leader']
[u'garner', u'tour', u'iraq', u'ahead', u'mosul', u'talk']
[u'gigg', u'say', u'manchest', u'dazzl', u'real', u'star']
[u'gladiat', u'rome', u'birthday', u'suit']
[u'govern', u'urg', u'address', u'petrol', u'sniff']
[u'govt', u'fund', u'trip', u'home', u'aborigin', u'itiner']
[u'govt', u'opt', u'prosecut', u'greenpeac']
[u'greenspan', u'undergo', u'prostat', u'surgeri']
[u'hamil', u'play', u'umpir', u'collis']
[u'harbi', u'william', u'contempl', u'final', u'season']
[u'highway', u'close', u'semi', u'crash']
[u'honda', u'name', u'fukui', u'presid']
[u'hope', u'continu', u'pest', u'erad', u'scheme']
[u'hop', u'rainforest', u'skywalk', u'boost', u'tourism']
[u'know', u'say', u'centurion', u'ganga']
[u'india', u'south', u'africa', u'share', u'seri']
[u'india', u'softwar', u'industri', u'face', u'woe']
[u'injur', u'alvey', u'stay', u'bulldog']
[u'injuri', u'bulldog', u'port', u'adelaid']
[u'inquiri', u'open', u'mine', u'death']
[u'intern', u'passeng', u'sar']
[u'investig', u'begin', u'fatal', u'accid']
[u'iraqi', u'shiit', u'stage', u'anti', u'ralli']
[u'italian', u'pride', u'stake', u'juve', u'inter']
[u'japan', u'thailand', u'stretch', u'distanc']
[u'kalgoorli', u'boost', u'tie', u'longreach', u'alic']
[u'kenyan', u'domin', u'boston']
[u'call', u'patienc', u'attack', u'falter']
[u'macgil', u'celebr', u'wicket']
[u'appear', u'court', u'alleg', u'drug', u'smuggl']
[u'die', u'trap', u'forklift']
[u'die', u'arapil', u'fall']
[u'guilti', u'girl', u'death']
[u'murder', u'charg', u'remand', u'custodi']
[u'man', u'bodi', u'recov', u'climb', u'area']
[u'shoot', u'dead', u'deer', u'hunt', u'accid']
[u'face', u'court', u'charg', u'polic', u'threat']
[u'market', u'rise', u'easter', u'break']
[u'mccarthi', u'warn', u'derbi', u'disast']
[u'mckay', u'chanc', u'athen', u'row', u'squad']
[u'mclaren', u'wait', u'june', u'ferrari', u'turn', u'corner']
[u'meet', u'address', u'youth', u'crime']
[u'mental', u'assess', u'like', u'monash', u'shooter']
[u'microsoft', u'eas', u'licens', u'term', u'antitrust']
[u'million', u'strong', u'crowd', u'cheer', u'ullrich', u'win', u'return']
[u'miner', u'releas', u'oper', u'detail']
[u'mix', u'respons', u'coastal', u'plan', u'polici']
[u'accid', u'involv', u'roo', u'nrma']
[u'fear', u'dead', u'bangladesh', u'storm']
[u'south', u'coast', u'driver', u'steer', u'clear', u'troubl']
[u'seek', u'flag', u'bipartisan', u'support']
[u'want', u'highway', u'strategi', u'rethink']
[u'gambier', u'airport', u'number']
[u'look']
[u'plan', u'appeal', u'fairer']
[u'confirm', u'refuge', u'boat', u'aust', u'bind', u'downer']
[u'decis', u'speed', u'limit', u'reduct']
[u'driver', u'risk', u'lose', u'doubl', u'point', u'week']
[u'death', u'take', u'easter', u'road', u'toll']
[u'govt', u'urg', u'guarante', u'servic']
[u'govt', u'address', u'youth', u'custodi']
[u'send', u'landmin', u'clearanc', u'expert', u'iraq']
[u'reduct', u'stop', u'price', u'slide', u'expert']
[u'olymp', u'champion', u'hire', u'east', u'german', u'drug']
[u'pakistan', u'say', u'chemic', u'inspect', u'routin']
[u'passeng', u'scrambl', u'histor', u'adelaid']
[u'penalti', u'hear', u'begin', u'fatal', u'burn']
[u'announc', u'futur', u'soon']
[u'polic', u'continu', u'home', u'invas', u'probe']
[u'polic', u'crackdown', u'help', u'region', u'road', u'safe']
[u'polic', u'happi', u'boati', u'easter', u'behaviour']
[u'polic', u'happi', u'easter', u'driver']
[u'polic', u'happi', u'easter', u'driver']
[u'polic', u'investig', u'brisban', u'tripl', u'murder']
[u'polic', u'prais', u'easter', u'driver']
[u'polic', u'prais', u'easter', u'driver']
[u'polic', u'probe', u'ashford', u'brawl']
[u'polic', u'remain', u'miss', u'british', u'tourist']
[u'polic', u'seek', u'help', u'catch', u'roadhous', u'arm', u'bandit']
[u'polic', u'probe', u'rooney', u'spit', u'claim']
[u'pong', u'crew', u'extradit']
[u'popular', u'road', u'reopen', u'amidst', u'uproar']
[u'professor', u'trap', u'easter', u'pile', u'book']
[u'push', u'commonwealth', u'rail', u'plan']
[u'rain', u'bring', u'sorghum', u'fungal', u'diseas']
[u'rain', u'trap', u'holiday', u'hiker', u'hinchinbrook']
[u'record', u'slow', u'sail', u'peak', u'race']
[u'resid', u'report', u'shock', u'time']
[u'resid', u'protest', u'abattoir', u'plan']
[u'resort', u'owner', u'air', u'fear', u'plan', u'pastor']
[u'reward', u'offer', u'murder', u'mysteri']
[u'richardson', u'mend', u'cheekbon', u'fractur']
[u'robson', u'set', u'euro', u'target', u'newcastl']
[u'roddick', u'cruis', u'houston', u'event']
[u'roeder', u'collaps', u'west']
[u'rough', u'sea', u'delay', u'search', u'lose', u'fisherman']
[u'rower', u'keep', u'record', u'hop', u'afloat']
[u'row', u'championship', u'lake', u'barrington']
[u'branch', u'face', u'anzac', u'fund', u'shortfal']
[u'ruddock', u'assur', u'safeti', u'boat', u'peopl']
[u'saddam', u'chief', u'tri', u'arrang', u'meet']
[u'saddam', u'iraq', u'opposit', u'leader']
[u'sar', u'outbreak', u'risk', u'declin', u'doctor']
[u'scientist', u'claim', u'malaria', u'treatment', u'breakthrough']
[u'searcher', u'miss', u'man', u'bodi']
[u'sheffield', u'unit', u'wolv', u'head', u'play', u'off']
[u'shiit', u'march', u'karbala']
[u'shire', u'fear', u'bumpi', u'fund', u'road', u'ahead']
[u'arrest', u'graffiti', u'attack']
[u'player', u'face', u'judiciari']
[u'snake', u'bite', u'put', u'girl', u'hospit']
[u'snowi', u'easter', u'tourism', u'boom']
[u'soorley', u'urg', u'stick', u'crean']
[u'steeplechas', u'draw', u'crowd']
[u'stem', u'cell', u'scientist', u'threaten', u'tooth', u'fairi']
[u'storm', u'sink', u'ferri', u'bangladesh', u'kill']
[u'studi', u'confirm', u'valu', u'sunscreen']
[u'suharto', u'half', u'brother', u'jail', u'corrupt']
[u'super', u'fund', u'shortfal', u'cost', u'ratepay']
[u'surgeon', u'check', u'greenspan', u'prostat']
[u'surgeri', u'rule', u'raul', u'unit', u'clash']
[u'surrey', u'stake', u'england', u'claim']
[u'survey', u'reveal', u'lead', u'foot', u'driver']
[u'sydney', u'face', u'water', u'restrict', u'despit', u'rain']
[u'doctor', u'reform', u'wont', u'save', u'bulk', u'bill']
[u'tasmanian', u'tourism', u'boost', u'strong', u'easter', u'period']
[u'think', u'tank', u'island', u'sale']
[u'thousand', u'attend', u'aussi', u'rule', u'carniv']
[u'chines', u'north', u'korean', u'offici', u'meet', u'ahead']
[u'trap', u'resid', u'unhurt', u'unit']
[u'troop', u'deserv', u'welcom']
[u'briton', u'arrest', u'thailand']
[u'union', u'air', u'bakeri', u'closur', u'concern']
[u'offer', u'pilbara', u'cours']
[u'confid', u'find', u'iraqi', u'leader']
[u'korea', u'prepar', u'nuclear', u'talk']
[u'promis', u'investig', u'danger', u'cluster', u'bomb']
[u'see', u'post', u'threat', u'terrorist', u'group']
[u'valencia', u'coach', u'slam', u'player', u'ahead', u'inter', u'clash']
[u'vettori', u'bond', u'strike', u'ahead', u'lanka', u'test', u'seri']
[u'visitor', u'urg', u'extinguish', u'fire', u'proper']
[u'wast', u'firm', u'plan', u'leeton', u'compost', u'ventur']
[u'waterhous', u'clear', u'race']
[u'weed', u'spark', u'concern']
[u'western', u'tourism', u'push']
[u'wheat', u'farmer', u'consid', u'record', u'harvest', u'potenti']
[u'wide', u'driver', u'fair', u'behav']
[u'woman', u'save', u'hunter', u'hous']
[u'woman', u'drown', u'consid', u'suspici']
[u'wooli', u'director', u'leav', u'board']
[u'wooli', u'share', u'drop', u'resign']
[u'woorabinda', u'school', u'probe', u'continu']
[u'face', u'tribun']
[u'zimbabw', u'mugab', u'hint', u'retir']
[u'announc', u'contract', u'domest', u'schedul']
[u'airlin', u'face', u'long', u'term', u'plan', u'hurdl']
[u'alleg', u'drug', u'smuggler', u'arriv', u'melbourn']
[u'alleg', u'rape', u'victim', u'lose', u'faith', u'polic']
[u'angri', u'fan', u'halt', u'atalanta', u'train', u'session']
[u'asian', u'marathon', u'postpon', u'sar']
[u'asian', u'minist', u'crisi', u'talk', u'sar']
[u'asylum', u'boat', u'indonesia', u'respons', u'govt']
[u'australian', u'cyclist', u'evan', u'week']
[u'australian', u'economi', u'wood']
[u'australian', u'race', u'museum', u'open', u'melbourn']
[u'author', u'fear', u'miss', u'taiwanes', u'fishermen']
[u'basic', u'approach', u'appli', u'rebuild', u'iraq']
[u'bangladesh', u'bide', u'time', u'south', u'africa']
[u'bashir', u'trial', u'begin', u'polic', u'arrest', u'alleg']
[u'beat', u'lanka', u'greatest', u'challeng', u'fleme']
[u'beatti', u'say', u'assist']
[u'beatti', u'urg', u'labor', u'quit', u'charact', u'assassin']
[u'beazley', u'leadership', u'comment', u'clumsi', u'crean']
[u'beazley', u'stand', u'leadership', u'comment']
[u'berrigan', u'escap', u'punish']
[u'berrigan', u'escap', u'punish', u'despit', u'guilti', u'plea']
[u'bhoy', u'look', u'play', u'like', u'uefa']
[u'offer', u'hamilton']
[u'boati', u'prepar', u'ramp', u'activ']
[u'brack', u'reject', u'feder', u'health', u'care', u'offer']
[u'brazil', u'year', u'diego', u'squad']
[u'breakaway', u'union', u'back', u'hewitt', u'fight']
[u'brennan', u'nomin', u'rise', u'star', u'award']
[u'brisban', u'hous', u'remain', u'guard', u'bodi']
[u'british', u'deni', u'saddam', u'payrol']
[u'hardi', u'plead', u'guilti', u'charg']
[u'brown', u'hope', u'blacklock', u'return']
[u'buck', u'playoff', u'seri', u'net']
[u'burglari', u'arson', u'link', u'polic']
[u'bypass', u'speed', u'restrict', u'lift']
[u'campaign', u'kick', u'nauru', u'elect']
[u'candid', u'air', u'meal', u'wheel', u'concern']
[u'citizen', u'reward', u'communiti', u'medal']
[u'clarif']
[u'club', u'work', u'address', u'underag', u'drink']
[u'colleg', u'board', u'focus', u'servic']
[u'concern', u'rais', u'park', u'parliamentari']
[u'cost', u'live', u'rise']
[u'council', u'adopt', u'flood', u'plan']
[u'councillor', u'suggest', u'flag', u'competit']
[u'council', u'poki', u'stand', u'immor', u'say', u'anti', u'gambl']
[u'council', u'reject', u'fli', u'agreement']
[u'council', u'reject', u'speed', u'recommend']
[u'council', u'feder', u'govt', u'baxter', u'protest']
[u'court', u'reject', u'killer', u'appeal']
[u'crean', u'overreact', u'beazley']
[u'cwealth', u'urg', u'come', u'clean', u'drug', u'bust']
[u'cypriot', u'begin', u'cross', u'divid', u'line']
[u'dinosaur', u'centr', u'reopen', u'avert', u'industri', u'damag']
[u'docker', u'fin', u'breach', u'player', u'rule']
[u'doctor', u'meet', u'discuss', u'shortag']
[u'downer', u'clam', u'turkey', u'terror', u'threat']
[u'downer', u'tightlip', u'anzac', u'terror', u'threat']
[u'driver', u'tag', u'toll', u'road']
[u'drug', u'launch', u'winter', u'appeal']
[u'endang', u'speci', u'need', u'protect', u'govt']
[u'environ', u'stress']
[u'essendon', u'seek', u'clarif', u'runner']
[u'essendon', u'salari', u'investig']
[u'fan', u'offenc', u'creed', u'brand', u'rock']
[u'faster', u'sound', u'parachut', u'jump', u'delay']
[u'fiji', u'skipper', u'seven']
[u'film', u'industri', u'stalwart', u'pass', u'away']
[u'face', u'court', u'drug', u'charg']
[u'task', u'forc', u'test', u'poison', u'bait']
[u'gene', u'discoveri', u'explain', u'cancer', u'racism']
[u'gladston', u'seek', u'fund']
[u'gold', u'coast', u'properti', u'sector']
[u'govt', u'call', u'view', u'stromlo']
[u'govt', u'crisi', u'fund']
[u'gungahlin', u'resid', u'telco', u'fight', u'govt']
[u'hammer', u'thrower', u'deni', u'order', u'ban', u'drug']
[u'honda', u'mourn', u'heartbreak', u'loss', u'kato']
[u'hoon', u'say', u'saddam', u'like', u'iraq']
[u'hospit', u'gear', u'sar', u'threat']
[u'hous', u'trust', u'consid', u'sell', u'home']
[u'iemma', u'say', u'health', u'packag', u'doesnt']
[u'implant', u'fight', u'acid', u'reflux', u'approv']
[u'indigen', u'leader', u'meet', u'homeless']
[u'indonesian', u'skipper', u'appear', u'court']
[u'inflat', u'push', u'reserv', u'target']
[u'insur', u'cloud', u'hang', u'anzac', u'activ']
[u'inter', u'scrape', u'semi', u'away', u'goal', u'rule']
[u'italian', u'delight', u'juve', u'inter', u'reach']
[u'kennedi', u'expect', u'return', u'tiger', u'clash']
[u'labor', u'say', u'parti', u'game']
[u'lafarm', u'benefit', u'train', u'subsidi']
[u'landfil', u'strict', u'licens', u'condit']
[u'leadership', u'barney', u'caus', u'elect', u'disast']
[u'lib', u'highlight', u'rise', u'public', u'hous', u'transfer']
[u'lib', u'wont', u'endors', u'yuryevich']
[u'live', u'murray', u'decis', u'delay']
[u'malaysian', u'remand', u'lorn', u'drug', u'haul']
[u'await', u'sentenc', u'teen', u'death']
[u'die', u'forklift', u'mishap']
[u'face', u'wollongong', u'court', u'murder', u'charg']
[u'readi', u'biggest', u'challeng', u'kean']
[u'mayor', u'defend', u'poki', u'shutdown', u'limit']
[u'meet', u'discuss', u'king', u'brother', u'worker']
[u'memori', u'moot', u'rememb', u'drown', u'victim']
[u'mendi', u'claim', u'liverpool', u'keen', u'sign']
[u'miner', u'sand', u'plan', u'move', u'ahead']
[u'mine', u'death', u'shake', u'west', u'coast', u'communiti']
[u'morley', u'timmin', u'doubt', u'rooster', u'dragon']
[u'moul', u'call']
[u'rise', u'state', u'hand', u'say', u'brumbi']
[u'speak', u'forc', u'council', u'merger']
[u'musharraf', u'call', u'role', u'post', u'saddam', u'iraq']
[u'olymp', u'champion', u'mcdyess', u'undergo', u'surgeri']
[u'caledonia', u'dengu', u'outbreak', u'claim', u'live']
[u'news', u'corp', u'bank', u'boost', u'ord']
[u'charg', u'rooney', u'spit', u'claim']
[u'rain', u'relief', u'farmer']
[u'govt', u'urg', u'council', u'merger', u'guarante']
[u'wors', u'health', u'deal', u'govt']
[u'govt', u'consid', u'itiner', u'servic']
[u'opposit', u'twin', u'social', u'studi']
[u'pagan', u'expect', u'hostil', u'recept']
[u'pakistan', u'appoint', u'raja', u'board', u'chief']
[u'paradorn', u'slip', u'heavi', u'barcelona', u'defeat']
[u'parent', u'slay', u'sibl', u'return', u'home']
[u'past', u'champion', u'irwin', u'kite', u'watson', u'open']
[u'perth', u'spill', u'clean']
[u'plane', u'respons', u'tremor']
[u'rule', u'earli', u'elect']
[u'unveil', u'health', u'fund', u'plan', u'today']
[u'polic', u'arrest', u'bashir', u'alleg', u'replac']
[u'polic', u'minist', u'offer', u'assur', u'alcohol', u'woe']
[u'polic', u'minist', u'speak', u'roam', u'youth']
[u'polic', u'climb', u'victim']
[u'polic', u'promis', u'crackdown', u'unruli', u'youth']
[u'polic', u'union', u'target', u'gun']
[u'probe', u'continu', u'skydiv', u'death']
[u'profit', u'surg', u'ebay']
[u'public', u'ask', u'judg', u'abattoir', u'plan']
[u'rare', u'quoll', u'spot', u'excit', u'ranger']
[u'ratepay', u'urg', u'understand', u'rise', u'cost']
[u'real', u'madrid', u'raul', u'month']
[u'relat', u'indonesia', u'fine', u'govt']
[u'reservoir', u'generat', u'object']
[u'resid', u'seek', u'talk', u'high', u'rise', u'plan']
[u'roo', u'suggest', u'doubl', u'header']
[u'russia', u'say', u'korean', u'standoff', u'step', u'disast']
[u'safin', u'struggl', u'spanish', u'qualifi']
[u'govt', u'servic', u'effort']
[u'lifesav', u'face', u'fund', u'crisi']
[u'sar', u'forc', u'servic']
[u'sar', u'forc', u'arafura', u'game', u'cancel']
[u'sar', u'forc', u'china', u'rural', u'tour']
[u'sar', u'impact', u'start', u'affect', u'fruit', u'grower']
[u'sar', u'threat', u'close', u'beij', u'school']
[u'scienc', u'mark', u'anniversari', u'breakthrough']
[u'search', u'continu', u'miss', u'miner']
[u'second', u'suspect', u'sar', u'case', u'adelaid']
[u'self', u'indulg', u'beazley', u'destabilis', u'parti', u'crean']
[u'serbia', u'lift', u'state', u'emerg', u'djindjic']
[u'shark', u'bite', u'unregist', u'player', u'fine']
[u'sheldon', u'get', u'art', u'tourism', u'portfolio']
[u'shire', u'plan', u'industri', u'estat']
[u'singapor', u'clamp', u'sar']
[u'singapor', u'introduc', u'sar', u'measur']
[u'skull', u'confirm', u'miss', u'tourist']
[u'smith', u'face', u'uncertain', u'futur']
[u'spanish', u'deputi', u'join', u'quixot', u'readathon']
[u'lanka', u'recal', u'veteran', u'kalu', u'kiwi', u'test']
[u'state', u'reject', u'health', u'fund', u'offer']
[u'storm', u'kill', u'northeast', u'india', u'injur']
[u'street', u'kid', u'issu', u'easili', u'solv', u'work']
[u'studi', u'consid', u'artifici', u'surf', u'reef']
[u'studi', u'warn', u'power', u'quak', u'francisco']
[u'subtl', u'symptom', u'hinder', u'dengu', u'contain']
[u'support', u'call']
[u'support', u'salari', u'structur']
[u'appear', u'court', u'heroin', u'seizur']
[u'tillakaratn', u'retir', u'dayer']
[u'toowoomba', u'host', u'red', u'match']
[u'seed', u'agassi', u'overpow', u'krajan', u'houston']
[u'tourism', u'industri', u'prepar', u'convent', u'downturn']
[u'tourist', u'influx', u'boost', u'break', u'hill']
[u'tourist', u'influx', u'offer', u'spin', u'off']
[u'travel', u'snap', u'final', u'concord', u'ticket']
[u'trilater', u'nuclear', u'talk', u'begin', u'beij', u'today']
[u'truck', u'movement', u'restrict', u'esplanad']
[u'back', u'remov', u'sportsground', u'nigger', u'sign']
[u'canadian', u'expert', u'team', u'fight', u'sar']
[u'conserv', u'lash', u'state', u'dept']
[u'continu', u'weapon', u'inspect']
[u'govt', u'urg', u'revamp', u'rail', u'line']
[u'rise', u'despit', u'spend', u'cut']
[u'video', u'footag', u'campbel', u'appeal']
[u'viduka', u'doubl', u'rescu', u'leed']
[u'govt', u'buy', u'oldest', u'shaft']
[u'govt', u'issu', u'cash', u'public', u'servant', u'idea']
[u'govt', u'promis', u'power', u'woe']
[u'waratah', u'deni', u'blacklock', u'leagu', u'rumour']
[u'waratah', u'prepar', u'releas', u'blacklock']
[u'warn', u'consid', u'return']
[u'snub', u'health', u'fund', u'deal']
[u'watson', u'recoveri', u'track']
[u'west', u'indi', u'coach', u'defend', u'bowler']
[u'welcom', u'tulli', u'gumboot']
[u'warn', u'travel', u'stay', u'away', u'beij']
[u'widen', u'sar', u'travel', u'warn']
[u'wind', u'power', u'prove', u'blow']
[u'woman', u'jail', u'facto', u'manslaught']
[u'worker', u'compo', u'insur', u'cost', u'threaten']
[u'young', u'women', u'alert', u'tuggeranong', u'polic']
[u'clear', u'tribun']
[u'year', u'lpga', u'return']
[u'board', u'appoint', u'process', u'overhaul']
[u'absent', u'mind', u'bank', u'robber', u'overpow', u'lose']
[u'treasur', u'admit', u'larg', u'cash', u'surplus']
[u'airlin', u'focus', u'japanes', u'market']
[u'alic', u'get', u'school', u'attend', u'offic']
[u'leadership', u'bloodi', u'mess']
[u'write', u'letter', u'reassur', u'sharehold']
[u'andretti', u'crash', u'return', u'indianapoli', u'motor']
[u'anti', u'graft', u'priest', u'suspect', u'scam']
[u'anti', u'protest', u'urg', u'disrupt', u'anzac']
[u'profit', u'reason']
[u'vow', u'better', u'profit']
[u'asylum', u'seeker', u'interview', u'agre', u'return']
[u'audit', u'highlight', u'western', u'victoria', u'environment']
[u'australia', u'gear']
[u'avellino', u'clear', u'club', u'season']
[u'bakeri', u'close', u'door']
[u'bartlett', u'question', u'iraq', u'north', u'korea', u'link']
[u'battl', u'cod', u'fiercest', u'world', u'barassi']
[u'beij', u'quarantin', u'hospit']
[u'bell', u'beach', u'surf', u'competit', u'move']
[u'crowd', u'expect', u'anzac']
[u'blow', u'branch']
[u'bomber', u'clash', u'test', u'confid', u'malthous']
[u'bomber', u'lead', u'pie', u'final', u'term']
[u'bomb', u'suspect', u'fli', u'bali']
[u'british', u'press', u'hail', u'real', u'star']
[u'brumbi', u'hous', u'pain', u'examin']
[u'brumbi', u'pain', u'examin']
[u'canberra', u'famili', u'sue', u'govt', u'manag']
[u'cancel', u'arafura', u'sport', u'press', u'competit']
[u'cart', u'race', u'restor', u'road', u'america', u'andretti']
[u'chanc', u'applaud', u'farmer', u'strategi']
[u'cliff', u'death', u'probe', u'begin']
[u'club', u'lament', u'race', u'loss']
[u'communiti', u'address', u'antisoci', u'behaviour']
[u'consum', u'remind', u'anzac', u'closur']
[u'coron', u'critic', u'detent', u'centr', u'care']
[u'council', u'doesnt', u'elector', u'abolish']
[u'council', u'rule', u'rate', u'rise', u'cover', u'super']
[u'council', u'seek', u'consult', u'immigr']
[u'council', u'rule', u'subdivis']
[u'council', u'consid', u'budget', u'plan']
[u'court', u'convict', u'year', u'woman', u'attack']
[u'court', u'deni', u'appeal', u'seal', u'rock', u'compo']
[u'court', u'order', u'govt', u'million', u'compo']
[u'crawford', u'choos', u'boomer']
[u'cruis', u'ship', u'crew', u'give', u'sar', u'clear']
[u'csiro', u'seek', u'approv', u'import', u'sar']
[u'cwealth', u'say', u'favour', u'iraq', u'contract']
[u'denman', u'face', u'court', u'assault', u'charg']
[u'dickson', u'estim']
[u'disappoint', u'bakeri', u'closur', u'decis']
[u'dnrm', u'urg', u'rethink', u'plan']
[u'doctor', u'remedi', u'urban', u'shortag']
[u'dongara', u'seek', u'boost', u'doctor', u'number']
[u'appeal', u'harsher', u'espionag', u'sentenc']
[u'dragon', u'injuri', u'cloud', u'rooster', u'clash']
[u'earn', u'creat', u'upbeat', u'nasdaq', u'mood']
[u'economist', u'doubt', u'rate', u'rise']
[u'embassi', u'ask', u'anzac', u'pilgrim', u'check']
[u'environment', u'campaign', u'plead', u'guilti', u'properti']
[u'defend', u'hardi', u'decis']
[u'order', u'target', u'club', u'clean', u'site']
[u'essendon', u'want', u'runner', u'rule', u'overhaul']
[u'fear', u'armi', u'worm', u'threaten', u'winter', u'crop']
[u'feder', u'approach', u'health', u'underhand', u'edmond']
[u'feder', u'court', u'halt', u'texa', u'execut']
[u'feder', u'govt', u'rail', u'line', u'support']
[u'ferguson', u'defiant', u'beckham', u'real', u'thriller']
[u'fewer', u'student', u'graduat', u'mine', u'cours']
[u'fish', u'farm', u'plan', u'exmouth']
[u'flight', u'decis', u'wont', u'affect', u'gold', u'coast']
[u'freight', u'compani', u'pleas', u'bridg', u'reopen']
[u'freight', u'request', u'compo', u'bridg', u'closur']
[u'fruit', u'outbreak', u'prove', u'cost']
[u'gallipoli', u'secur', u'boost', u'ahead', u'commemor']
[u'gallop', u'dismiss', u'critic', u'northbridg', u'curfew']
[u'garner', u'talk', u'baghdad', u'leader', u'soldier']
[u'goldfield', u'aborigin', u'urg', u'medicar', u'card']
[u'govt', u'consid', u'renam', u'nigger', u'stand']
[u'govt', u'place', u'toll', u'bridg']
[u'cast', u'doubt', u'effort', u'bulk', u'bill']
[u'greenspan', u'say', u'term']
[u'mishap', u'spark', u'polic', u'warn']
[u'hamilton', u'chang', u'hand']
[u'harri', u'substitut', u'dawn', u'bugl']
[u'heat', u'exchang', u'fraser', u'murder', u'trial']
[u'high', u'demand', u'wheatbelt', u'health', u'worker']
[u'hospit', u'begin', u'sar', u'plan']
[u'hospit', u'termin', u'despit', u'feder']
[u'injuri', u'time', u'winner', u'tomasson', u'set', u'milan']
[u'iverson', u'help', u'philadelphia', u'lead']
[u'japanes', u'prosecutor', u'demand', u'death', u'leader']
[u'juri', u'deliv', u'verdict', u'winni', u'mandela']
[u'kean', u'rue', u'real', u'lesson']
[u'korean', u'veteran', u'reunit', u'anzac']
[u'labor', u'leadership', u'resolv', u'rudd']
[u'labor', u'standoff', u'continu']
[u'labor', u'beazley', u'poll']
[u'lake', u'barrington', u'host', u'row', u'titl']
[u'loss', u'drive', u'nrma', u'price']
[u'mackay', u'teenag', u'fight', u'life', u'crash']
[u'malthous', u'want', u'clarif', u'runner']
[u'charg', u'death', u'teenag']
[u'face', u'charg', u'get', u'bail']
[u'jail', u'onlin', u'credit', u'card', u'fraud']
[u'market', u'bare', u'budg', u'work', u'week', u'end']
[u'maryborough', u'campaign', u'draw']
[u'mayor', u'defend', u'farm', u'biodivers', u'audit']
[u'mayor', u'fear', u'marin', u'farm']
[u'mayor', u'wont', u'specul', u'job']
[u'medal', u'recognis', u'resid', u'effort']
[u'melbourn', u'face', u'water', u'restrict']
[u'memori', u'turn', u'tent', u'embassi', u'away', u'anzac']
[u'remand', u'alleg', u'drug', u'smuggl']
[u'middl', u'east', u'road', u'step', u'closer']
[u'world', u'ticket', u'sale', u'august']
[u'moscow', u'host', u'septemb', u'athlet', u'meet']
[u'oyster', u'harvest', u'ban', u'lift']
[u'nativ', u'titl', u'claim', u'cover', u'pastor', u'station']
[u'korea', u'warn', u'moment']
[u'consult', u'health', u'fund', u'crean']
[u'lethal', u'landmin', u'stoke', u'humanitarian', u'fear']
[u'threat', u'dingo', u'wildlif', u'servic']
[u'premier', u'call', u'fresh', u'approach']
[u'nurs', u'discuss', u'phase', u'industri', u'action']
[u'oppos', u'iceland', u'enter', u'whale', u'bodi']
[u'oarsom', u'foursom', u'member', u'lose', u'row', u'champ']
[u'occhi', u'dismiss', u'slater']
[u'price', u'slump']
[u'olymp', u'champ', u'meet', u'world', u'finest', u'penn', u'relay']
[u'organis', u'fear', u'sar', u'impact', u'magic', u'million']
[u'pacif', u'island', u'rugbi', u'allianc', u'meet']
[u'peninsula', u'crash', u'kill']
[u'perilya', u'await', u'insur', u'decis']
[u'perth', u'releas', u'thai', u'prison']
[u'defend', u'health', u'fund', u'plan']
[u'concern', u'asylum', u'seeker', u'boat']
[u'polic', u'criticis', u'failur', u'miss']
[u'polic', u'bodi', u'believ', u'angler']
[u'polic', u'hunt', u'clue', u'surround', u'tripl', u'murder']
[u'policeman', u'charg', u'assault', u'wife']
[u'polic', u'seek', u'wit', u'fatal', u'accid']
[u'polic', u'urg', u'protest', u'respect', u'anzac']
[u'pong', u'crew', u'court', u'appear']
[u'port', u'releas', u'communiti', u'survey', u'result']
[u'pressur', u'take', u'toll', u'manag']
[u'probe', u'continu', u'lake', u'sewag', u'spill']
[u'psychologist', u'surpris', u'detail', u'clark', u'case']
[u'push', u'navi', u'ship', u'wagga']
[u'close', u'cattleyard']
[u'question', u'rais', u'tender', u'process', u'ental']
[u'quokka', u'killer', u'sentenc', u'work', u'anim', u'hospit']
[u'raaf', u'conting', u'leav', u'iraq']
[u'raaf', u'farewel', u'personnel', u'bind', u'baghdad']
[u'ralli', u'protest', u'store', u'closur']
[u'red', u'lift', u'game', u'aust', u'squad', u'slack']
[u'report', u'highlight', u'glenelg', u'shire', u'wellb']
[u'ronaldo', u'trick', u'sink', u'unit']
[u'erupt']
[u'urg', u'anti', u'protest']
[u'russian', u'spacecraft', u'prepar', u'mission']
[u'farmer', u'angri', u'leas', u'chang']
[u'sar', u'impact', u'provid', u'north', u'busi', u'benefit']
[u'sar', u'suspect', u'remain', u'hospit']
[u'search', u'go', u'miss', u'miner']
[u'search', u'clue', u'tripl', u'murder']
[u'sheed', u'welcom', u'player', u'payment', u'investig']
[u'ship', u'lay', u'fibr', u'optic', u'cabl', u'visit', u'burni']
[u'skaif', u'team', u'risk', u'dump']
[u'resid', u'heed', u'dengu', u'warn']
[u'strom', u'renew', u'bypass', u'call']
[u'stuart', u'extend', u'contract']
[u'student', u'time', u'school', u'blaze']
[u'suicid', u'blast', u'rock', u'israel', u'train', u'station']
[u'support', u'control', u'burn', u'plan']
[u'swan', u'chanc', u'collingwood', u'anzac', u'debut']
[u'talk', u'begin', u'hospit', u'servic']
[u'tasmania', u'consid', u'increas', u'school', u'leav']
[u'teenag', u'jail', u'assault']
[u'tent', u'citi', u'highlight', u'accommod', u'woe']
[u'tent', u'embassi', u'member', u'threaten']
[u'thousand', u'expect', u'turn', u'anzac']
[u'thunderbird', u'coach', u'livid', u'avellino', u'affair']
[u'tiger', u'deal', u'blow', u'blumfield', u'injuri']
[u'time', u'run', u'farmer', u'contest', u'nomin']
[u'toddler', u'twin', u'scribbl', u'rampag']
[u'toll', u'rise', u'indian', u'cyclon']
[u'toronto', u'grappl', u'sar']
[u'tourist', u'cliff', u'fall', u'investig']
[u'townsvill', u'firm', u'help', u'rebuild', u'iraq']
[u'tripl', u'murder', u'victim', u'werent', u'shoot', u'polic']
[u'tweed', u'council', u'approv', u'resort']
[u'homemad', u'bomb', u'explod', u'jakarta']
[u'union', u'concern', u'king', u'bros', u'worker']
[u'play', u'sar', u'concern']
[u'unit', u'expect', u'charg', u'bring', u'fin']
[u'upset', u'nation', u'row', u'championship']
[u'captur', u'iraqi', u'brass']
[u'hostil', u'crisi', u'korea']
[u'lpga', u'veteran', u'reveal', u'cancer', u'battl']
[u'marin', u'begin', u'patrol', u'iraq', u'iran', u'border']
[u'readi', u'declar', u'victori', u'iraq']
[u'say', u'iraqi', u'leader', u'custodi']
[u'warn', u'iran', u'meddl', u'iraq']
[u'question', u'cultur', u'heritag', u'impost']
[u'govt', u'move', u'polic', u'sar']
[u'govt', u'nation', u'park', u'boundari']
[u'petrol', u'price', u'attack', u'accc']
[u'hero', u'guest', u'honour', u'anzac', u'ceremoni']
[u'warrant', u'issu', u'bank', u'robberi', u'suspect']
[u'vet', u'littl', u'commemor']
[u'water', u'pipelin', u'consid']
[u'water', u'polic', u'confirm', u'ident', u'dead', u'fisherman']
[u'western', u'gear', u'sar']
[u'west', u'brook', u'save', u'releg']
[u'winni', u'mandela', u'guilti', u'fraud', u'theft']
[u'worker', u'hous', u'idea', u'microscop']
[u'write', u'wall', u'graffiti', u'vandal']
[u'adam', u'put', u'protea', u'strong', u'posit']
[u'agassi', u'cruis', u'quarter']
[u'airlin', u'face', u'compo', u'claim', u'arafura', u'game']
[u'alleg', u'victim', u'die', u'hospit']
[u'american', u'airlin', u'resign', u'post']
[u'ancient', u'languag', u'spread', u'plough']
[u'anglican', u'priest', u'deliv', u'anzac', u'messag']
[u'anti', u'banner', u'confisc', u'adelaid', u'march']
[u'anzac', u'dawn', u'servic', u'draw', u'record', u'crowd']
[u'anzac', u'activ', u'underway']
[u'anzac', u'crowd', u'number', u'rise']
[u'anzac', u'servic', u'rememb', u'gallipoli', u'veteran']
[u'anzac', u'support', u'encourag', u'defenc', u'forc']
[u'anzac', u'servic', u'live', u'albani']
[u'anzac', u'rememb', u'geraldton', u'servic']
[u'arm', u'hijack', u'seiz', u'german', u'carri']
[u'arm', u'hijack', u'german', u'polic']
[u'arsenal', u'campbel', u'lose', u'appeal']
[u'weather', u'doesnt', u'stop', u'anzac', u'servic']
[u'banner', u'owner', u'claim', u'protest']
[u'chief', u'attack', u'media', u'coverag']
[u'bear', u'hope', u'continu', u'win', u'way']
[u'beef', u'expo', u'open']
[u'central', u'crowd', u'anzac']
[u'crowd', u'anzac', u'dawn', u'servic']
[u'crowd', u'honour', u'anzac', u'tradit']
[u'blair', u'prais', u'discoveri', u'urg', u'cooper']
[u'blokey', u'polic', u'cultur', u'stymi', u'whistleblow', u'report']
[u'board', u'eager', u'await', u'decis']
[u'bottl', u'grang', u'go', u'record', u'price']
[u'brack', u'back', u'crean']
[u'bridg', u'collaps', u'popular', u'drive']
[u'british', u'troop', u'offer', u'deplet', u'uranium', u'test']
[u'break', u'hill', u'turn', u'anzac', u'servic']
[u'bronco', u'escap', u'eel', u'dragon', u'roll', u'rooster']
[u'brumbi', u'defend', u'fund', u'alloc']
[u'bush', u'say', u'iraq', u'occup', u'year']
[u'elect', u'candid']
[u'campaign', u'lobbi', u'boat', u'ramp', u'fund']
[u'canberra', u'appeal', u'fund', u'boost']
[u'carr', u'urg', u'prais', u'troop', u'iraq']
[u'celtic', u'porto', u'reach', u'uefa', u'final']
[u'child', u'death', u'bring', u'toll']
[u'china', u'record', u'sar', u'death']
[u'columbia', u'crew', u'mission']
[u'commerci', u'properti', u'face', u'rate', u'rise']
[u'commission', u'vow', u'tripl', u'murder', u'probe']
[u'communiti', u'turn', u'honour', u'anzac', u'tradit']
[u'communiti', u'turn', u'rememb', u'anzac']
[u'consum', u'remind', u'anzac', u'trade']
[u'costello', u'prais', u'tenac', u'anzac', u'gallipoli']
[u'council', u'consid', u'heritag', u'precinct']
[u'councillor', u'consid', u'futur', u'elect', u'delay']
[u'countri', u'victorian', u'afford', u'rat', u'rise']
[u'coupl', u'lead', u'applebi', u'houston', u'round']
[u'croc', u'cruis', u'cabl', u'beach']
[u'cypriot', u'storm', u'barrier']
[u'dawn', u'servic', u'begin', u'gallipoli']
[u'bruijn', u'world']
[u'dixi', u'chick', u'pose', u'nude']
[u'dragon', u'roll', u'rooster']
[u'driver', u'remind', u'care', u'come', u'home']
[u'electr', u'break', u'townsvill', u'airport']
[u'farmer', u'wait', u'rain']
[u'north', u'honour', u'anzac', u'tradit']
[u'fel', u'join', u'call', u'mental', u'health', u'fund']
[u'find', u'king', u'brother', u'probe', u'delay']
[u'damag', u'launceston', u'general']
[u'firm', u'urg', u'consid', u'iraq', u'opportun']
[u'prison', u'repatri', u'intern']
[u'fisherman', u'boat', u'seiz']
[u'injur', u'head', u'crash']
[u'fleme', u'centuri', u'put']
[u'fruit', u'vege', u'price', u'rise']
[u'fund', u'seek', u'offic', u'work']
[u'glori', u'closer', u'grand', u'final', u'berth']
[u'green', u'uranium', u'test', u'return']
[u'group', u'seek', u'taxi', u'secur', u'boost']
[u'gulf', u'troop', u'celebr', u'anzac']
[u'hermannsburg', u'policeman', u'name']
[u'highland', u'hammer', u'brumbi']
[u'high', u'secur', u'greet', u'australian', u'gallipoli']
[u'hill', u'prais', u'gulf', u'troop', u'anzac', u'speech']
[u'hird', u'best', u'bomber']
[u'holi', u'smoke', u'cambodian', u'monk', u'kick', u'habit']
[u'hundr', u'attend', u'anzac', u'dawn', u'servic']
[u'hundr', u'attend', u'anzac', u'servic']
[u'hundr', u'digger', u'attend', u'darwin', u'dawn', u'servic']
[u'hunter', u'health', u'lodg', u'polyclin']
[u'imperson', u'particip', u'march', u'veteran']
[u'indigen', u'danc', u'featur', u'gulf', u'anzac', u'ceremoni']
[u'injur', u'bali', u'footbal', u'return']
[u'inter', u'fear', u'deja', u'killjoy', u'lazio', u'head', u'north']
[u'investig', u'continu', u'brisban', u'tripl', u'murder']
[u'investig', u'attend', u'accid', u'site']
[u'iraq', u'boost', u'ceremoni', u'number']
[u'iron', u'defend', u'titl']
[u'island', u'perform', u'aeroplan', u'danc', u'anzac']
[u'japan', u'jobless', u'rate', u'rise', u'percent', u'march']
[u'kalgoorli', u'boulder', u'stop', u'rememb', u'anzac']
[u'kashmir', u'blast', u'kill']
[u'labor', u'unresolv', u'crean', u'await', u'beazley']
[u'larg', u'crowd', u'draw', u'hobart', u'anzac', u'servic']
[u'late', u'lockyer', u'see', u'bronco', u'edg', u'eel']
[u'lewi', u'fight', u'johnson']
[u'mackay', u'honour', u'anzac', u'legaci']
[u'malaria', u'kill', u'african', u'children', u'alarm', u'rate']
[u'charg', u'blue', u'mtns', u'bodi', u'part']
[u'mcgrath', u'return', u'vice', u'chancellor']
[u'melbourn', u'dawn', u'servic', u'draw']
[u'millmerran', u'council', u'open', u'civic', u'build']
[u'miner', u'appeal', u'worker', u'compo', u'decis']
[u'minist', u'outlin', u'sar', u'conting', u'plan']
[u'molik', u'comfort', u'clay']
[u'molik', u'comfort', u'clay', u'ahead']
[u'montgomeri', u'rat', u'chanc']
[u'murder', u'accus', u'refus', u'bail']
[u'nauru', u'hop', u'proceed', u'honolulu', u'properti']
[u'navi', u'help', u'boost', u'anzac', u'servic']
[u'caledonia', u'pay', u'tribut', u'anzac']
[u'korean', u'nuke', u'admiss', u'batter', u'region', u'market']
[u'north', u'korea', u'admit', u'possess', u'nuke', u'report']
[u'polic', u'concern', u'number', u'road', u'injuri']
[u'korea', u'offer', u'bold', u'plan', u'nuclear', u'crisi']
[u'marin', u'polic', u'respons', u'boat']
[u'opec', u'cut', u'product', u'buoy', u'price']
[u'overdu', u'rafter', u'turn', u'safe']
[u'peac', u'messag', u'flow', u'anzac', u'dawn', u'servic']
[u'peopl', u'flock', u'dawn', u'servic']
[u'perth', u'street', u'line', u'anzac', u'wisher']
[u'philippin', u'confirm', u'sar', u'death']
[u'pie', u'bomber', u'clash', u'season', u'baromet', u'sheedi']
[u'pilgrim', u'honour', u'gallipoli', u'sacrific']
[u'honour', u'anzac', u'sacrific']
[u'polic', u'identifi', u'remain']
[u'polic', u'injur', u'fatal', u'high', u'speed', u'chase']
[u'polic', u'investig', u'melbourn', u'theft']
[u'polic', u'seiz', u'steal', u'penfold', u'wine']
[u'public', u'urg', u'fli', u'toler']
[u'queensland', u'honour', u'anzac', u'award']
[u'ranger', u'gun', u'uefa', u'finalist', u'celtic']
[u'rann', u'label', u'leadership', u'woe', u'silli']
[u'real', u'madrid', u'look', u'reignit', u'home', u'fire']
[u'record', u'crowd', u'townsvill', u'servic']
[u'record', u'crowd', u'attend', u'darwin', u'dawn', u'servic']
[u'record', u'crowd', u'greet', u'anzac', u'march']
[u'repair', u'rail', u'servic', u'track']
[u'research', u'stake', u'fresh', u'claim', u'earli', u'human']
[u'mourn', u'sale', u'barrack']
[u'rudolph', u'hit', u'protea']
[u'rule', u'parti', u'offici', u'kill', u'kashmir']
[u'govt', u'child', u'care', u'effort']
[u'sar', u'claim', u'victim', u'china']
[u'sar', u'crisi', u'caus', u'widespread', u'panic', u'beij']
[u'sar', u'death', u'rate', u'rise']
[u'sar', u'impact', u'heavili', u'econom', u'growth', u'world']
[u'school', u'stay', u'shut', u'sole', u'pupil', u'stay', u'home']
[u'search', u'underway', u'miss', u'forth', u'river', u'rafter']
[u'second', u'airlin', u'talk', u'gladston', u'postpon']
[u'second', u'beij', u'hospit', u'seal']
[u'servic', u'honour', u'indigen', u'servicemen', u'women']
[u'sewag', u'spill', u'impact', u'minim', u'council']
[u'sinead', u'oconnor', u'retir', u'music']
[u'singapor', u'ratchet', u'tough', u'sar', u'measur']
[u'smoke', u'sight', u'spark', u'servic', u'call']
[u'south', u'east', u'rememb', u'anzac']
[u'sign', u'miss', u'miner']
[u'store', u'closur', u'oppon', u'plan']
[u'stoudemir', u'name', u'rooki', u'year']
[u'strand', u'boat', u'peopl', u'sight', u'australia']
[u'strong', u'turnout', u'anzac', u'servic']
[u'suspect', u'sar', u'patient', u'continu', u'improv']
[u'swan', u'demon']
[u'swan', u'demon', u'bomber', u'pound', u'pie']
[u'swim', u'lake', u'futur', u'debat']
[u'sydney', u'come', u'aliv', u'anzac', u'march']
[u'tareq', u'aziz', u'custodi', u'report']
[u'teen', u'deliv', u'lone', u'pine', u'anzac', u'read']
[u'telstra', u'reject', u'critic', u'halt']
[u'telstra', u'reject', u'redund', u'claim']
[u'tent', u'embassi', u'member', u'arrest', u'enter', u'memori']
[u'tent', u'embassi', u'threaten']
[u'thousand', u'attend', u'sydney', u'dawn', u'servic']
[u'thousand', u'expect', u'honour', u'anzac', u'sacrific']
[u'thousand', u'flock', u'melbourn', u'dawn', u'servic']
[u'thousand', u'gather', u'gallipoli']
[u'thousand', u'honour', u'anzac', u'memori', u'perth']
[u'thousand', u'honour', u'anzac', u'memori']
[u'thousand', u'honour', u'anzac', u'tradit']
[u'thousand', u'line', u'melbourn', u'street', u'honour', u'anzac']
[u'thousand', u'line', u'street', u'homag', u'anzac']
[u'thousand', u'line', u'sydney', u'street', u'anzac', u'parad']
[u'thousand', u'rememb', u'anzac', u'hero']
[u'kill', u'injur', u'kashmir', u'blast']
[u'thunderbird', u'notch', u'star', u'recruit']
[u'timberwolv', u'edg', u'laker', u'overtim']
[u'townsvill', u'airport', u'contain']
[u'townsvill', u'troop', u'play', u'iraq', u'effort']
[u'troop', u'iraq', u'join', u'anzac', u'parad']
[u'dead', u'injur', u'accid']
[u'extend', u'iraqi', u'food', u'program']
[u'hop', u'feder', u'fund']
[u'unit', u'requiem', u'lose', u'champion', u'leagu', u'dream']
[u'claim', u'iraqi', u'bigwig', u'captur']
[u'militari', u'confirm', u'tareq', u'aziz', u'custodi']
[u'reject', u'sar', u'toronto']
[u'soldier', u'question', u'iraqi', u'steal', u'cash']
[u'teacher', u'shoot', u'student']
[u'tightlip', u'north', u'korea', u'talk']
[u'veteran', u'urg', u'youngster', u'join', u'defenc', u'forc']
[u'victorian', u'expect', u'larg', u'anzac', u'involv']
[u'villawood', u'death', u'highlight', u'peopl', u'smuggl', u'peril']
[u'govt', u'seek', u'age', u'care', u'fund', u'flexibl']
[u'veteran', u'imperson', u'increas', u'lobbi']
[u'waugh', u'aim', u'caribbean', u'clean', u'sweep']
[u'western', u'ecolog', u'spotlight']
[u'wildlif', u'offic', u'forc', u'shoot', u'croc']
[u'winni', u'mandela', u'guilti', u'fraud', u'theft']
[u'winni', u'mandela', u'sentenc', u'jail']
[u'work', u'ban', u'taronga']
[u'worker', u'pride', u'rail', u'project']
[u'work', u'start', u'soon', u'resort', u'project']
[u'work', u'start', u'soon', u'resort', u'project']
[u'wrink', u'rocker', u'climb', u'british', u'rich', u'list']
[u'digger', u'lead', u'brisban', u'anzac', u'parad']
[u'strike', u'fail', u'deter', u'crowd']
[u'resid', u'face', u'rate', u'hike']
[u'agassi', u'eye', u'number', u'spot']
[u'american', u'airlin', u'avert', u'bankruptci', u'union', u'deal']
[u'andretti', u'indi', u'gordon', u'doubl']
[u'applebi', u'hunt']
[u'armstrong', u'eye', u'lieg']
[u'asian', u'health', u'minist', u'meet', u'sar', u'crisi', u'talk']
[u'astarloa', u'step', u'shadow', u'flech']
[u'confirm', u'kill', u'baghdad', u'blast']
[u'attack', u'arm', u'dump', u'baghdad']
[u'aust', u'watch', u'brief', u'world', u'hatch', u'sar']
[u'australian', u'row', u'championship', u'wind']
[u'beckham', u'stay', u'unit', u'say']
[u'beckham', u'stay', u'unit', u'say', u'father']
[u'beef', u'australia']
[u'black', u'hawk', u'forc', u'land', u'uluru']
[u'blast', u'man', u'flight', u'shuttl']
[u'blue', u'port', u'triumph', u'tiger', u'chase', u'hawk']
[u'blue', u'roll', u'roo', u'port', u'clip', u'crow']
[u'blue', u'sink', u'shark']
[u'british', u'enjoy', u'simpl', u'life', u'canari', u'open']
[u'call', u'global', u'effort', u'battl', u'malaria']
[u'cambodia', u'monk', u'anti', u'smoke', u'seat']
[u'canada', u'reel', u'latest', u'sar', u'death', u'panic']
[u'carlton', u'bounc', u'roo']
[u'charlton', u'heston', u'step', u'presid']
[u'chernobyl', u'file', u'reveal', u'reactor', u'leak']
[u'coach', u'sanchez', u'banish', u'touchlin', u'puma']
[u'coalit', u'elect', u'poll']
[u'collingwood', u'face', u'long']
[u'concern', u'attempt', u'control', u'iraqi']
[u'copi', u'darter', u'fail', u'dream', u'debut']
[u'crow', u'look', u'turn', u'tabl', u'port']
[u'dalton', u'head', u'team', u'america']
[u'darter', u'fail', u'dream', u'debut']
[u'disappoint', u'right', u'vote', u'delay']
[u'dont', u'write', u'celtic', u'final', u'defiant', u'oneil']
[u'dravid', u'play', u'scotland']
[u'drug', u'bigmat', u'rider']
[u'edmond', u'relish', u'warratah', u'boy']
[u'england', u'sanderson', u'australia', u'tour']
[u'eriksson', u'meet', u'manag', u'club', u'countri']
[u'factori', u'burn', u'gold', u'coast']
[u'ferrari', u'race', u'spain']
[u'ferrero', u'hammer', u'french', u'open', u'warn']
[u'sar', u'death', u'case', u'beij']
[u'fleme', u'hit', u'doubl', u'centuri']
[u'blast', u'lebanon', u'camp']
[u'frenchman', u'oust', u'blake', u'reach', u'semi', u'final']
[u'gate', u'close', u'adelaid', u'drive', u'theatr']
[u'global', u'sar', u'control', u'measur']
[u'global', u'sar', u'toll', u'continu', u'rise']
[u'govt', u'tackl', u'dental', u'wait', u'list']
[u'govt', u'quiet', u'slaveri', u'alleg']
[u'graham', u'leav', u'shark', u'wigan']
[u'gregan', u'say', u'loss', u'otago', u'disappoint']
[u'gustafson', u'grab', u'shoot', u'lpga', u'lead']
[u'hammer', u'wont', u'whimper', u'brook']
[u'helmet', u'rule', u'step', u'closer']
[u'herbert', u'make', u'french', u'connect']
[u'honda', u'announc', u'probe', u'kato', u'death']
[u'impress', u'start', u'thunderbird']
[u'indian', u'troop', u'kill', u'islam', u'rebel', u'follow', u'radio']
[u'inquiri', u'court', u'breach', u'confid']
[u'iraqi', u'cleric', u'push', u'muslim', u'rule']
[u'iraqi', u'opposit', u'group', u'gather', u'histor', u'meet']
[u'iraqi', u'refuge', u'repatri', u'underway']
[u'chief', u'pugh', u'die']
[u'israel', u'play', u'remain', u'euro', u'home']
[u'john', u'report', u'knight', u'tame', u'tiger']
[u'knight', u'tame', u'tiger']
[u'kournikova', u'turn', u'german', u'open', u'wild', u'card']
[u'laconi', u'snatch', u'superbik', u'pole', u'japan']
[u'lara', u'aim', u'posit', u'finish']
[u'lobster', u'fisherman', u'optimist', u'futur']
[u'charg', u'townsvill', u'shoot']
[u'custodi', u'adelaid', u'sieg']
[u'custodi', u'domest', u'seig']
[u'marco', u'pull', u'brazil', u'squad', u'friend']
[u'mcgradi', u'inspir', u'magic', u'dalla', u'close', u'semi', u'final']
[u'molik', u'form', u'ahead']
[u'molik', u'form', u'ahead']
[u'montgomeri', u'plan', u'maintain', u'speed', u'coach']
[u'nasa', u'plan', u'space', u'shuttl', u'crew']
[u'nation', u'road', u'toll', u'rise']
[u'fund', u'includ', u'budget']
[u'headston', u'erect', u'australian', u'artist']
[u'plan', u'ship', u'iraqi', u'brass', u'guantanamo']
[u'nightclub', u'warn', u'overcrowd']
[u'polici', u'breast', u'screen', u'wont', u'chang']
[u'take', u'men', u'netbal', u'championship']
[u'marathon', u'rais', u'money', u'sick', u'kid']
[u'oak', u'glori']
[u'kill', u'injur', u'palmerston', u'accid']
[u'sar', u'alert', u'aust']
[u'overmar', u'dutch', u'squad', u'portug', u'game']
[u'pagan', u'go', u'club']
[u'pari', u'germain', u'sack', u'chairman', u'club', u'owner']
[u'parti', u'leader', u'maryborough', u'elect']
[u'philippin', u'confirm', u'death', u'sar']
[u'phoenix', u'dous', u'firebird', u'flame']
[u'phoenix', u'rise']
[u'pilot', u'kill', u'ultralight', u'crash']
[u'pilot', u'blame', u'spill', u'coffe', u'cockpit', u'nuditi']
[u'plan', u'ferri', u'athlet', u'game', u'aliv']
[u'plumber', u'want', u'antarctica']
[u'polic', u'queanbeyan', u'accid', u'wit']
[u'polic', u'resourc', u'tackl', u'domest', u'violenc']
[u'poll', u'open', u'maryborough']
[u'poll', u'open', u'pngs', u'southern', u'highland']
[u'powel', u'plan', u'middl', u'east', u'tour']
[u'polic', u'help', u'tripl']
[u'raider', u'prove', u'doubter', u'wrong']
[u'rann', u'label', u'leadership', u'woe', u'silli']
[u'red', u'lead', u'cat', u'half', u'time']
[u'red', u'overcom', u'cat']
[u'refresh', u'clijster', u'open', u'belgium']
[u'rivett', u'hammer', u'home', u'challeng', u'dream']
[u'rossi', u'provision', u'pole', u'bayliss', u'fourth']
[u'rossi', u'provision', u'pole', u'bayliss', u'fourth']
[u'rudolph', u'dippenaar', u'slam', u'centuri', u'hapless']
[u'rudolph', u'dippenaar', u'steer', u'protea', u'victori']
[u'saddam', u'destroy', u'wmds']
[u'govt', u'review', u'parol', u'board', u'releas', u'order']
[u'govt', u'review', u'parol', u'board', u'recommend']
[u'schumach', u'brother', u'attend', u'mother', u'funer']
[u'scottish', u'paper', u'lavish', u'tribut', u'triumphant']
[u'senior', u'iraqi', u'captiv', u'face', u'interrog']
[u'siev', u'peopl', u'smuggler', u'deport', u'indonesia']
[u'specialist', u'demand', u'unreason']
[u'studi', u'expect', u'sar', u'death', u'rate', u'higher']
[u'taiwan', u'stop', u'issu', u'visa', u'sar']
[u'tamil', u'tiger', u'talk', u'suspens', u'temporari']
[u'taronga', u'staff', u'return', u'work', u'disput']
[u'tasmanian', u'militari', u'barrack', u'go', u'cheap', u'auction']
[u'tiger', u'storm', u'home', u'clip', u'hawk']
[u'fleme', u'richardson', u'defi', u'lanka']
[u'soldier', u'kill', u'afghan', u'clash']
[u'bid', u'berth', u'rugbi', u'world']
[u'civilian', u'head', u'armi', u'resign']
[u'crack', u'blood', u'diamond']
[u'deni', u'plan', u'east', u'timor']
[u'team', u'chemistri', u'improv', u'capriati']
[u'hard', u'look', u'north', u'korea', u'nuclear', u'claim']
[u'victoria', u'investig', u'confidenti']
[u'vieira', u'doubt', u'arsenal', u'titl']
[u'slam', u'victoria', u'confidenti']
[u'webber', u'thrive', u'comparison']
[u'weekend']
[u'york', u'peninsula', u'marina', u'open', u'today']
[u'zidan', u'back', u'marseill', u'america']
[u'zimbabw', u'opposit', u'claim', u'arrest', u'raid']
[u'taiwanes', u'sar', u'case', u'report']
[u'agassi', u'grab', u'hewitt', u'spot']
[u'agassi', u'take', u'spot']
[u'anger', u'baghdad', u'explos']
[u'applebi', u'coupl', u'grab', u'houston', u'lead']
[u'applebi', u'coupl', u'lead', u'calcavecchia']
[u'argentin', u'candid', u'express', u'support', u'nuclear']
[u'asia', u'health', u'chief', u'travel', u'sar', u'check']
[u'australia', u'import', u'sar', u'sampl']
[u'aust', u'team', u'vie', u'iraqi', u'reconstruct', u'contract']
[u'barcelona', u'xavi', u'rest', u'season']
[u'bayern', u'seal', u'german', u'titl', u'game', u'leav']
[u'beachley', u'rid', u'high', u'fiji']
[u'beazley', u'challeng', u'crean']
[u'beij', u'continu', u'effort', u'curb', u'sar', u'crisi']
[u'blast', u'jakarta', u'airport', u'wound', u'polic']
[u'bolton', u'hammer', u'arsenal', u'titl', u'hop']
[u'bradford', u'clinch', u'challeng', u'thriller']
[u'brisban', u'polic', u'urg', u'caution', u'fatal', u'accid']
[u'broad', u'brush', u'quarantin', u'student', u'travel']
[u'buck', u'draw', u'level', u'net']
[u'chines', u'health', u'minist', u'sack', u'sar', u'purg']
[u'colonel', u'light', u'statu', u'restor']
[u'communiti', u'brace', u'medicar', u'chang']
[u'cook', u'return', u'week', u'cyst', u'problem']
[u'costello', u'quiet', u'leadership', u'specul']
[u'count', u'resum', u'maryborough', u'elect']
[u'danger', u'area', u'declar', u'burton', u'overnight']
[u'boer', u'chase', u'firm', u'return']
[u'diver', u'drown', u'mornington', u'peninsula']
[u'driver', u'licenc', u'short', u'time', u'fatal']
[u'extradit', u'order', u'egyptian', u'peopl', u'smuggler']
[u'finegan', u'get', u'brumbi']
[u'finegan', u'receiv', u'brumbi']
[u'forc', u'brisban', u'chariti', u'seek', u'benefactor']
[u'scare', u'darwin', u'hospit']
[u'kill', u'rebel', u'raid', u'kashmir', u'radio', u'station']
[u'refus', u'bail', u'record', u'ecstasi', u'seizur']
[u'flower', u'mix', u'emot', u'england', u'tour']
[u'garner', u'ask', u'iraqi', u'play', u'role', u'govt']
[u'gigg', u'say', u'place']
[u'govt', u'urg', u'deplet', u'uranium', u'weapon']
[u'gulf', u'bind', u'rumsfeld', u'review', u'militari']
[u'heart', u'verg', u'europ']
[u'creditor', u'face', u'cent', u'dollar', u'payout']
[u'shock', u'commiss', u'revel']
[u'hill', u'cosgrov', u'visit', u'baghdad']
[u'holder', u'slovakia', u'struggl', u'serv']
[u'hull', u'bite', u'shark', u'hooker', u'treister']
[u'hussain', u'outlin', u'test', u'ambit']
[u'independ', u'lead', u'maryborough', u'elect']
[u'iraqi', u'protest', u'baghdad', u'blast']
[u'iraqi', u'protest', u'presenc', u'baghdad', u'blast']
[u'challeng', u'beazley']
[u'jakarta', u'airport', u'bomb', u'blast', u'injur']
[u'jakarta', u'bomb', u'link', u'trial']
[u'japanes', u'firm', u'break', u'space', u'barrier']
[u'jayawardena', u'steer', u'lanka', u'troubl']
[u'kato', u'inspir', u'gibernau', u'pole', u'africa']
[u'kato', u'inspir', u'gibernau', u'pole', u'africa']
[u'kiwi', u'domin', u'super']
[u'kiwi', u'domin', u'super']
[u'labor', u'plead', u'parti', u'uniti']
[u'lake', u'barrington', u'host', u'final', u'row']
[u'minut', u'ciss', u'put', u'auxerr', u'final']
[u'defend', u'brighton', u'barrack', u'sale']
[u'link', u'saddam', u'qaeda', u'report']
[u'lion', u'dog']
[u'lion', u'dog', u'saint', u'crush', u'cat']
[u'lion', u'dog', u'saint', u'eagl', u'triumph']
[u'lion', u'tabl', u'geelong', u'crash', u'defeat']
[u'lobbi', u'group', u'call', u'rat', u'scrap']
[u'malaysia', u'minist', u'propos', u'unkind', u'press']
[u'charg', u'internet', u'diamond', u'scam']
[u'kill', u'gembrook', u'accid']
[u'maryborough', u'elect', u'hors', u'race']
[u'mask', u'produc', u'warn', u'market']
[u'massiv', u'ecstasi', u'haul', u'seiz', u'sydney']
[u'mav', u'push', u'blazer', u'brink', u'elimin']
[u'mcgrath', u'return', u'windi', u'practic', u'match']
[u'mcleish', u'look', u'champion', u'leagu']
[u'lee', u'form', u'parti']
[u'meg', u'parti', u'threat', u'democrat']
[u'charg', u'ecstasi', u'haul', u'refus', u'bail']
[u'mideast', u'road', u'releas', u'week']
[u'milan', u'titl', u'hop', u'end', u'plucki', u'roma']
[u'molonglo', u'reach', u'toxic', u'environ']
[u'montgomeri', u'make', u'triumphant', u'return', u'track']
[u'sar', u'death', u'expert', u'warn', u'higher']
[u'motogp', u'rider', u'safeti', u'forum', u'organis']
[u'rat', u'flaw']
[u'pal', u'trev']
[u'place', u'brinkmanship', u'nuke', u'talk', u'south', u'korea']
[u'doctor', u'group', u'voic', u'support', u'medicar']
[u'polic', u'disappoint', u'road', u'fatal']
[u'osasuna', u'dampen', u'atletico', u'centenari', u'celebr']
[u'pakistan', u'await', u'evid', u'match', u'fix']
[u'panther', u'shock', u'warrior', u'eagl', u'roll', u'rabbitoh']
[u'pedrosa', u'win', u'race']
[u'poggiali', u'clinch', u'honour', u'africa']
[u'polic', u'assault', u'increas', u'oppn']
[u'polic', u'injur', u'kempton', u'footbal', u'scuffl']
[u'polic', u'forc', u'patrol', u'road']
[u'polic', u'probe', u'gold', u'coast']
[u'pope', u'ask', u'castro', u'clemenc', u'dissid']
[u'pope', u'move', u'cappuccino', u'friar', u'sainthood', u'path']
[u'port', u'win', u'local', u'derbi']
[u'protea', u'crush', u'bangladesh']
[u'graafschap']
[u'quiet', u'start', u'highland', u'elect']
[u'real', u'benefit', u'beckham', u'toshack']
[u'hodgson', u'storm', u'sugo', u'doubl']
[u'red', u'assess', u'tune', u'injuri']
[u'reid', u'lament', u'leed', u'laps']
[u'rhode', u'centuri', u'win', u'bonus', u'battl']
[u'riot', u'break', u'belfast']
[u'roddick', u'advanc', u'final', u'men', u'clay', u'court']
[u'rowl', u'richer', u'queen']
[u'appal', u'wreath', u'vandal']
[u'safin', u'sight', u'month', u'titl', u'drought']
[u'saint', u'crush', u'cat', u'eagl', u'docker']
[u'retain', u'euro', u'heavyweight', u'titl']
[u'polic', u'investig']
[u'sar', u'bring', u'australia', u'studi']
[u'sar', u'epidem', u'critic', u'crossroad']
[u'sar', u'mask', u'lead', u'communiti', u'paranoia', u'taskforc']
[u'serco', u'driver', u'hold', u'meet']
[u'serna', u'down', u'pratt', u'spanish', u'hop', u'aliv']
[u'shark', u'edg', u'adelaid', u'power', u'stay', u'aliv']
[u'shoaib', u'face', u'intern', u'wilder', u'chief']
[u'shop', u'ask', u'truant', u'cop']
[u'shot', u'fire', u'south', u'west', u'sydney']
[u'sniffer', u'dog', u'trail', u'cancer', u'prostat']
[u'soldier', u'patrol', u'count', u'begin', u'poll']
[u'spanish', u'teenag', u'make', u'mark']
[u'sport', u'role', u'model', u'tour', u'help', u'young', u'indigen']
[u'suspect', u'nuclear', u'relat', u'shipment', u'nkorea']
[u'suspici', u'chemic', u'iraq']
[u'sweden', u'itali', u'share', u'honour']
[u'taiwan', u'ban', u'visitor', u'sar']
[u'telstra', u'broadband', u'access', u'gungahlin']
[u'toney', u'toppl', u'jirov', u'claim', u'crusierweight']
[u'toon', u'boss', u'robson', u'reliev', u'sunderland']
[u'civilian', u'kill', u'burundi', u'rebel', u'ambush']
[u'women', u'injur', u'firework', u'accid']
[u'union', u'tell', u'govt', u'clean']
[u'offer', u'help', u'china', u'fight', u'sar']
[u'soldier', u'kill', u'tank', u'accid']
[u'victoria', u'win', u'king']
[u'govt', u'reject', u'union', u'critic']
[u'webb', u'grab', u'lead', u'rain', u'disrupt', u'lpga']
[u'webb', u'lead', u'lpga', u'event']
[u'wesser', u'trick', u'panther', u'stun', u'warrior']
[u'aagard', u'hit', u'medicar', u'reform']
[u'accus', u'illeg', u'fisherman', u'confirm']
[u'aceh', u'separatist', u'jakarta', u'blast', u'polic']
[u'appeal', u'public', u'info', u'heroin', u'bust']
[u'probe', u'jakarta', u'blast', u'bali', u'trial', u'link']
[u'agassi', u'ralli', u'beat', u'roddick']
[u'forc', u'base', u'brew']
[u'airlin', u'consid', u'withdraw', u'canberra']
[u'alic', u'gear', u'parliament']
[u'warn', u'govt', u'medic', u'insur']
[u'amnesti', u'renew', u'opposit', u'aust', u'asylum', u'polici']
[u'sar', u'death', u'canada']
[u'anzac', u'wreath', u'vandal', u'outrag']
[u'argentin', u'voter', u'poll']
[u'arsenal', u'henri', u'name', u'player', u'year']
[u'australian', u'athlet', u'ban', u'leav']
[u'australia', u'william', u'sister', u'throw']
[u'bear', u'score', u'trick', u'magpi']
[u'blue', u'star', u'spark', u'fiji', u'kiwi', u'feud']
[u'bourn', u'take', u'life', u'support']
[u'die', u'backyard', u'pool', u'mishap']
[u'brack', u'claim', u'success', u'class', u'size']
[u'brack', u'rule', u'limit', u'class', u'size']
[u'breaker', u'prove', u'good', u'west']
[u'centr', u'manag', u'confid', u'staff', u'number']
[u'campaign', u'aim', u'boost', u'tweed', u'coolangatta', u'tourism']
[u'canberra', u'get', u'tick', u'recoveri']
[u'capit', u'work', u'project', u'spark', u'rate', u'rise']
[u'children', u'mummifi', u'corps', u'poland', u'flat']
[u'clark', u'accus', u'claim', u'investig', u'offic']
[u'clijster', u'refus', u'commit', u'quarter']
[u'costa', u'flag', u'overhaul', u'rail']
[u'council', u'consid', u'energi', u'save', u'plan']
[u'council', u'urg', u'seek', u'govt', u'fund', u'green', u'project']
[u'count', u'delay', u'elect']
[u'coupl', u'break', u'titl', u'drought']
[u'coupl', u'edg', u'applebi', u'emot', u'houston']
[u'court', u'postpon', u'trial', u'masood', u'alleg', u'killer']
[u'crean', u'vow', u'fight', u'medicar', u'reform']
[u'crime', u'prevent', u'scheme', u'fund']
[u'debat', u'continu', u'fluorid', u'water']
[u'downer', u'dedic', u'bali', u'garden', u'blast', u'victim']
[u'effluent', u'program', u'extens', u'delay', u'total', u'water', u'ban']
[u'emerg', u'communic', u'prioriti', u'govt']
[u'england', u'open', u'knight', u'call']
[u'england', u'ferri', u'win', u'maiden', u'titl', u'playoff']
[u'timor', u'gradual', u'resum', u'control', u'border']
[u'extent', u'drug', u'recal', u'reveal']
[u'famili', u'court', u'vow', u'ethnic']
[u'treatment', u'roeder', u'disgrac', u'fergi']
[u'fiji', u'complain', u'zealand', u'pressur', u'rugbi', u'star']
[u'film', u'make', u'aim', u'boost', u'youth', u'confid']
[u'firm', u'await', u'iron', u'approv']
[u'fisheri', u'servic', u'remov', u'iilleg', u'cray', u'pot']
[u'kill', u'injur', u'spanish', u'crash']
[u'florentia', u'viola', u'promot']
[u'fli', u'communiti', u'mourn', u'pilot', u'death']
[u'argentin', u'presid', u'make', u'poll', u'second', u'round']
[u'frank', u'arab', u'leader', u'discuss', u'troop', u'presenc']
[u'garner', u'lead', u'baghdad', u'post', u'talk']
[u'distribut', u'deal', u'cabinet']
[u'good', u'rain', u'central', u'victoria']
[u'govt', u'move', u'simplifi', u'evid', u'court']
[u'govt', u'commit', u'medicar']
[u'group', u'highlight', u'region', u'health', u'woe']
[u'green', u'sweep', u'martiniqu']
[u'green', u'seek', u'calm', u'fund', u'boost']
[u'group', u'bowl', u'world', u'record']
[u'group', u'focus', u'kimberley', u'busi', u'vision']
[u'control', u'shambl']
[u'hammer', u'dedic', u'stricken', u'coach']
[u'hammer', u'thrower', u'deni', u'order', u'drug']
[u'hawk', u'draw', u'board']
[u'health', u'servic', u'staff', u'accommod', u'boost']
[u'heart', u'diseas', u'cut', u'aust', u'live', u'short']
[u'henri', u'name', u'player', u'year']
[u'high', u'rainfal', u'unusu', u'autumn']
[u'indigen', u'group', u'win', u'coastal', u'manag', u'award']
[u'indigen', u'youth', u'offer', u'build', u'traineeship']
[u'injur', u'journalist', u'sue', u'thredbo']
[u'internacion', u'lead', u'brazil', u'help', u'tribun']
[u'iraqi', u'opposit', u'group', u'gather', u'spain']
[u'iraqi', u'powerbrok', u'gather', u'decid', u'futur']
[u'iraqi', u'regim', u'chang', u'offer', u'hope', u'farmer']
[u'ivori', u'coast', u'rebel', u'chief', u'kill', u'ambush']
[u'jail', u'term', u'send', u'messag', u'potenti', u'fraudster']
[u'job', u'boost', u'eurobodalla']
[u'john', u'cop', u'plea']
[u'john', u'face', u'stint', u'sidelin']
[u'john', u'answer', u'head', u'slam', u'charg']
[u'john', u'face', u'head', u'slam', u'charg']
[u'juventus', u'close', u'titl', u'inter', u'hold']
[u'kennelli', u'chase', u'beachley', u'crown']
[u'laker', u'level', u'seri', u'wolv']
[u'land', u'clear', u'tarnish', u'australia', u'imag', u'truss']
[u'leadership', u'stoush', u'news', u'crean']
[u'life', u'imit', u'belgium']
[u'maher', u'lift', u'australia', u'univers']
[u'maher', u'lift', u'australia', u'strong', u'total']
[u'die', u'road', u'tragedi']
[u'mayor', u'honour', u'artist', u'contribut']
[u'mcgee', u'set', u'sight', u'glori']
[u'medicar', u'packag', u'offer', u'mix', u'doctor', u'group']
[u'melbourn', u'hospit', u'studi', u'inherit', u'stroke']
[u'melbourn', u'studi', u'stroke', u'prevent']
[u'north', u'coast', u'record', u'fatal', u'free', u'easter']
[u'miss', u'sar', u'drug', u'resurfac']
[u'seek', u'greater', u'parent', u'liabil']
[u'murder', u'trio', u'sister', u'ask', u'public', u'help']
[u'mutant', u'mice', u'bring', u'hope', u'deaf']
[u'player', u'dont', u'deserv', u'live', u'atletico', u'presid']
[u'navi', u'hold', u'inquiri', u'westralia', u'tragedi']
[u'crew', u'enter']
[u'polit', u'parti', u'bear', u'frustrat']
[u'program', u'help', u'respons', u'domest', u'violenc']
[u'support', u'group', u'asbesto', u'suffer']
[u'tourism', u'attract', u'open']
[u'korea', u'offer', u'scrap', u'nuclear', u'program', u'report']
[u'korea', u'reject', u'south', u'clarifi', u'arm']
[u'nolan', u'widow', u'win', u'disput']
[u'sign', u'heighten', u'peopl', u'smuggl', u'downer']
[u'govt', u'accus', u'ignor', u'rail', u'safeti', u'warn']
[u'govt', u'criticis', u'packer', u'interact', u'gambl']
[u'govt', u'pledg', u'perilya', u'help']
[u'health', u'minist', u'oppos', u'medicar', u'reform']
[u'holiday', u'road', u'toll', u'hit']
[u'launch', u'islam', u'teach']
[u'woman', u'blow']
[u'ralli', u'driver', u'bourn', u'take', u'life', u'support']
[u'lanka', u'test', u'head', u'draw']
[u'pacif', u'island', u'seek', u'coach']
[u'paint', u'worth', u'million', u'steal', u'british']
[u'beat', u'waugh', u'lpga', u'play']
[u'patient', u'pick', u'medicar', u'chang']
[u'peac', u'group', u'wont', u'protest', u'warship', u'visit']
[u'peopl', u'smuggl', u'confer', u'consid', u'impact']
[u'perpignan', u'join', u'toulous', u'french', u'euro']
[u'face', u'fight', u'medicar', u'plan']
[u'promis', u'fairer', u'medicar']
[u'polic', u'drown', u'victim']
[u'polic', u'sar', u'drug', u'thiev', u'steal', u'wrong', u'contain']
[u'polic', u'dead', u'driver']
[u'pompey', u'swagger', u'premiership']
[u'port', u'author', u'probe', u'truck', u'mishap']
[u'post', u'talk', u'begin', u'baghdad']
[u'propos', u'outlin', u'nation', u'power', u'grid', u'upgrad']
[u'push', u'dental', u'fund', u'boost']
[u'qanta', u'time']
[u'coalit', u'focus', u'mackay']
[u'queensland', u'equip', u'deal', u'sar']
[u'raider', u'receiv', u'airplay']
[u'rain', u'boost', u'south', u'coast', u'pastur']
[u'rain', u'like', u'boost', u'hinz']
[u'real', u'madrid', u'extend', u'lead', u'challeng', u'stumbl']
[u'tape', u'delay', u'airport', u'plan']
[u'ronaldinho', u'doubl', u'put', u'french', u'final']
[u'roo', u'focus', u'carey', u'factor']
[u'roo', u'confront', u'carey']
[u'rumsfeld', u'liken', u'iraq', u'liber', u'pari']
[u'runway', u'debat', u'take']
[u'rural', u'india', u'embrac', u'technolog']
[u'safin', u'injuri', u'curs', u'hand', u'titl', u'moya']
[u'govt', u'warn', u'superannu', u'blowout']
[u'sar', u'affect', u'tourism', u'book']
[u'sar', u'indigen', u'fear', u'air']
[u'sar', u'iraq', u'see', u'tourism', u'industri', u'declin']
[u'sar', u'past', u'peak', u'nation']
[u'sar', u'vaccin', u'year', u'away', u'heath', u'offici']
[u'sharemarket', u'follow', u'wall', u'street']
[u'shire', u'elig', u'subsidis', u'drought', u'loan']
[u'shopper', u'strip', u'london', u'store', u'bare']
[u'singapor', u'employ', u'stringent', u'measur', u'control']
[u'korea', u'pressur', u'north', u'nuclear']
[u'stafford', u'answer', u'charg']
[u'storm', u'surg', u'wall', u'move', u'closer', u'realiti']
[u'sugar', u'grower', u'environment', u'practic']
[u'suicid', u'prevent', u'help', u'migrant']
[u'surpris', u'sheep', u'research', u'find', u'prematur', u'birth']
[u'health', u'minist', u'reject', u'medicar', u'packag']
[u'taxi', u'driver', u'want', u'safeti', u'asap']
[u'teen', u'apologis', u'crossbow', u'attack']
[u'teen', u'milit', u'kill', u'jenin', u'shoot']
[u'teen', u'face', u'court', u'trip']
[u'thirteenth', u'iraqi', u'fugit', u'custodi']
[u'serious', u'injur', u'crash']
[u'thwait', u'defend', u'water', u'rat', u'polici']
[u'tiger', u'umpir', u'interchang']
[u'gold', u'miner', u'announc', u'quarter', u'profit']
[u'tourism', u'boom', u'warwick']
[u'tourist', u'offic', u'share', u'feasibl']
[u'toxic', u'bloom', u'river', u'warn', u'remain']
[u'tragic', u'long', u'weekend', u'south', u'east', u'road']
[u'monitor', u'sar', u'brisban']
[u'lead', u'hunt', u'weapon', u'say', u'iaea', u'chief']
[u'command', u'play', u'possibl', u'weapon']
[u'secur', u'rugbi', u'world', u'berth']
[u'govt', u'clarifi', u'drought', u'stanc']
[u'polic', u'seek', u'gather', u'figur', u'drink', u'spike']
[u'scientist', u'analys', u'sar', u'sampl']
[u'vietnam', u'say', u'contain', u'sar']
[u'bring', u'sar', u'prevent', u'rule']
[u'wallabi', u'keen', u'play', u'pacif', u'island']
[u'minist', u'make', u'apolog', u'tough', u'sar', u'stanc']
[u'warn', u'hospit', u'wait', u'list']
[u'watch', u'continu', u'sar', u'airport']
[u'water', u'author', u'await', u'fluorid', u'decis']
[u'waterfal', u'inquiri', u'hear', u'crash', u'unusu']
[u'waugh', u'lose', u'georgia', u'playoff']
[u'weak', u'project', u'slow']
[u'week', u'extent', u'drug', u'recal', u'know']
[u'wenger', u'refus', u'conced', u'defeat']
[u'western', u'get', u'drench']
[u'develop', u'vaccin', u'european', u'bird']
[u'help', u'avon', u'environment', u'woe']
[u'xstrata', u'execut', u'outlin', u'oper']
[u'yank', u'grab', u'rugbi', u'world', u'berth']
[u'yarrabah', u'get', u'domest', u'violenc', u'week', u'fund']
[u'threaten', u'legal', u'action', u'anim']
[u'kill', u'kashmir', u'clash']
[u'sting', u'hornet', u'lead', u'seri']
[u'academ', u'warn', u'sudden', u'halt', u'medic']
[u'alburi', u'face', u'murder', u'trial']
[u'ord', u'surg', u'finish', u'higher']
[u'alonso', u'pull', u'power']
[u'doubt', u'overhaul', u'benefit', u'indigen']
[u'antic', u'stick', u'barca']
[u'anti', u'woodchip', u'protest', u'block', u'entranc']
[u'applebi', u'climb', u'rank', u'houston', u'near', u'miss']
[u'asean', u'china', u'sar', u'research', u'fund']
[u'asian', u'leader', u'pledg', u'uniti', u'sar', u'battl']
[u'ask', u'explain']
[u'aussi', u'cyclist', u'doubt', u'world', u'champ']
[u'aust', u'deleg', u'tri', u'secur', u'rebuild', u'work']
[u'australia', u'help', u'poor', u'countri', u'studi']
[u'aust', u'soldier', u'involv', u'iraqi', u'gunfight']
[u'begin', u'spotti', u'mackerel', u'commerci', u'net']
[u'bayern', u'target', u'deportivo', u'makaay']
[u'beij', u'sar', u'toll', u'rise']
[u'boati', u'urg', u'steer', u'clear', u'pipe', u'lay']
[u'boost', u'indigen', u'tourism']
[u'brack', u'back', u'fluorid', u'move']
[u'brack', u'support', u'plan', u'attract', u'femal', u'polic']
[u'brack', u'consid', u'road', u'open', u'concern']
[u'bulldog', u'boss', u'mortim', u'shock', u'massiv', u'fine']
[u'bulldog', u'fin', u'mortim', u'comment']
[u'campaign', u'highlight', u'rock', u'fish', u'danger']
[u'carey', u'expect', u'rough', u'recept']
[u'carpent', u'union', u'pressur', u'cleaner']
[u'carr', u'reject', u'medicar', u'chang']
[u'celtic', u'pair', u'miss', u'scotland', u'austrian', u'friend']
[u'china', u'sar', u'focus', u'asian', u'leader']
[u'chines', u'sar', u'victim', u'name', u'revolutionari', u'martyr']
[u'chines', u'villag', u'torch', u'plan', u'sar', u'quarantin']
[u'claim', u'fluorid', u'introduct', u'accept']
[u'coca', u'cola', u'neverfail']
[u'collingwood', u'confus', u'wakelin', u'suspens']
[u'collingwood', u'disappoint', u'wakelin', u'suspens']
[u'communiti', u'aim', u'enterpris', u'project', u'go']
[u'complet', u'draw', u'rugbi', u'world']
[u'compulsori', u'test', u'sar', u'suspect']
[u'contempt', u'action', u'consid', u'mooney']
[u'corretja', u'dupui', u'valencia']
[u'cost', u'shift', u'probe', u'question']
[u'council', u'reject', u'airstrip', u'plan']
[u'council', u'appli', u'higher', u'rate', u'exempt']
[u'council', u'cost', u'shift', u'concern']
[u'council', u'tri', u'balanc', u'heritag', u'health']
[u'court', u'rule', u'beach', u'impass']
[u'crean', u'queri', u'time', u'medicin', u'recal']
[u'croatian', u'crime', u'suspect', u'bobetko', u'dead']
[u'crown', u'casino', u'robber', u'get', u'year', u'jail']
[u'desailli', u'clinch', u'french', u'record', u'spanish']
[u'doctor', u'group', u'happi', u'overal', u'medicar', u'reform']
[u'dragon', u'kogarah', u'return']
[u'east', u'asia', u'embrac', u'econom', u'regionalis']
[u'economist', u'warn', u'short', u'term', u'pain', u'beef']
[u'edberg', u'becker', u'renew', u'rivalri']
[u'effenberg', u'reveal', u'autobiographi']
[u'engin', u'support', u'navi', u'westralia', u'find']
[u'probe', u'perilya', u'blast']
[u'farmer', u'run', u'time', u'plant', u'canola']
[u'farmer', u'urg', u'consid', u'iraq', u'opportun']
[u'father', u'iwestraliai', u'victim', u'look', u'forward']
[u'favourit', u'look', u'consolid', u'round']
[u'porto', u'mourinho', u'run', u'rule', u'celtic']
[u'fear', u'dengu', u'fever', u'virus', u'chang']
[u'feder', u'overhaul', u'benefit', u'medic', u'school']
[u'ferdinand', u'injuri', u'scare', u'clear']
[u'fitz', u'gerald', u'take', u'welsh', u'squash', u'open']
[u'player', u'tribun']
[u'kill', u'helicopt', u'crash', u'india']
[u'nat', u'member', u'keppel']
[u'french', u'armi', u'caledonia', u'dengu', u'fight']
[u'gallop', u'call', u'stabil', u'labor', u'rank']
[u'gallop', u'say', u'govt', u'tri', u'dismantl', u'medicar']
[u'gigg', u'point', u'arsenal', u'crack']
[u'goldfield', u'indigen', u'mediat', u'begin']
[u'govt', u'hint', u'tariff', u'windback', u'textil', u'industri']
[u'govt', u'hop', u'resolv', u'tourism', u'slump']
[u'govt', u'starv', u'region', u'fund']
[u'govt', u'crack', u'shonki', u'drug', u'maker']
[u'group', u'give', u'mix', u'respons', u'medicar', u'overhaul']
[u'group', u'seek', u'poki', u'licens', u'review']
[u'health', u'dept', u'move', u'allay', u'health', u'insur']
[u'heart', u'manag', u'levein', u'sign', u'contract']
[u'heart', u'studi', u'reflect', u'tasmanian']
[u'henri', u'look', u'everton', u'rooney', u'save', u'arsenal']
[u'howard', u'blast', u'absurd', u'medicar', u'claim']
[u'imposs', u'tell', u'extent', u'wheat', u'virus', u'csiro']
[u'indonesia', u'block', u'boat']
[u'industri', u'react', u'angrili', u'herbal', u'product', u'advic']
[u'internet', u'rival', u'unit', u'fight', u'spam']
[u'isra', u'forc', u'kill', u'milit', u'gaza', u'west', u'bank']
[u'wont', u'play', u'black', u'caucau']
[u'creation', u'chang', u'hunter']
[u'john', u'cop', u'plea']
[u'john', u'cop', u'week']
[u'kidnap', u'accus', u'deni', u'bail']
[u'know', u'truck', u'fault', u'firefight', u'live', u'risk']
[u'laker', u'miss', u'rest', u'postseason']
[u'lawsuit', u'drop', u'aid', u'drug', u'price']
[u'leed', u'winger', u'wilcox', u'back', u'reid']
[u'pull', u'stump']
[u'lifelong', u'chariti', u'patron', u'honour', u'melbourn']
[u'ling', u'ban', u'match']
[u'local', u'elect', u'ballot', u'slow', u'return']
[u'long', u'await', u'hillari', u'clinton', u'memoir', u'releas']
[u'appear', u'british', u'backpack', u'murder']
[u'jail', u'unit', u'blaze']
[u'man', u'peni', u'south', u'african', u'attack']
[u'unit', u'unload', u'barthez']
[u'mayor', u'air', u'hous', u'concern']
[u'mclaren', u'confirm', u'jaguar', u'wurz']
[u'medicar', u'packag', u'discrimin', u'corbel']
[u'miln', u'ling', u'suspend']
[u'predict', u'half', u'year', u'profit']
[u'mine', u'expo', u'get', u'underway']
[u'miss', u'woman', u'safe']
[u'moon', u'mission', u'launch', u'india', u'space', u'career']
[u'mortim', u'rule', u'appeal']
[u'talk', u'medicar', u'overhaul']
[u'murder', u'committ', u'hear', u'continu']
[u'murphi', u'go', u'vet', u'knife']
[u'survey', u'find', u'drought', u'hurt', u'agribusi']
[u'speaker', u'parliament']
[u'korea', u'admit', u'nuke', u'china']
[u'date', u'aust', u'troop', u'homecom']
[u'staff', u'reduct', u'glengallan', u'piggeri']
[u'parliament', u'begin', u'alic', u'sit']
[u'parliament', u'begin', u'histor', u'sit']
[u'nurs', u'vote', u'propos', u'rise']
[u'nurs', u'vote', u'rise', u'offer']
[u'health', u'ministri', u'report', u'sar', u'case']
[u'tri', u'trace', u'product', u'shelv']
[u'olymp', u'bronz', u'medallist', u'samson', u'kitur', u'die']
[u'driver', u'charg', u'road', u'blitz']
[u'palestinian', u'milit', u'reject', u'abba', u'disarm']
[u'palestinian', u'parliament', u'meet', u'approv']
[u'palestinian', u'parliament', u'vote', u'cabinet']
[u'panda', u'digest', u'process', u'spark', u'bright', u'idea']
[u'director', u'deni', u'knowledg', u'wrongdo']
[u'face', u'lawsuit', u'life', u'long', u'drug', u'reaction']
[u'promis', u'compli', u'recal']
[u'paradorn', u'cruis', u'munich', u'clay']
[u'pearl', u'book', u'alleg', u'pakistani', u'involv']
[u'pentagon', u'updat', u'casualti', u'list', u'iraq']
[u'polic', u'prais', u'woman', u'effort', u'help', u'burn']
[u'polic', u'search', u'underway', u'newcastl', u'death']
[u'polic', u'appli', u'pair', u'extradit']
[u'polit', u'erupt', u'volker']
[u'portug', u'kick', u'euro', u'ticket', u'sale']
[u'press', u'group', u'slam', u'tongan', u'govt', u'censorship']
[u'professor', u'defend', u'tgas', u'action']
[u'project', u'creat', u'south', u'east', u'job']
[u'protest', u'greet', u'warship']
[u'qanta', u'push', u'ahead', u'allianc', u'plan']
[u'govt', u'finalis', u'cane', u'industri', u'overhaul']
[u'govt', u'urg', u'restor', u'tourism', u'fund']
[u'parliament', u'hear', u'volker', u'claim']
[u'scientist', u'work', u'drought', u'resist', u'rice']
[u'radio', u'cab', u'manag', u'unhappi', u'concern', u'air', u'media']
[u'rail', u'crash', u'probe', u'hear', u'track']
[u'rain', u'predict', u'improv', u'drought']
[u'rego', u'hike', u'driver']
[u'rigour', u'need', u'medic', u'label']
[u'ryan', u'evid', u'fraser', u'trial']
[u'sahhaf', u'unsuccess', u'tri', u'surrend', u'offici']
[u'lower', u'hous', u'pass', u'embryo', u'research']
[u'parliament', u'pass', u'embryo', u'research']
[u'sar', u'take', u'toll', u'tourism', u'industri']
[u'schett', u'desper', u'lose', u'continu']
[u'schumach', u'thank', u'fan', u'condol']
[u'scotland', u'ax', u'team']
[u'serb', u'leader', u'charg', u'murder']
[u'sheringham', u'ask', u'stay', u'spur']
[u'korea', u'announc', u'probabl', u'sar', u'case']
[u'small', u'court', u'construct', u'union']
[u'smelter', u'upgrad', u'help', u'boost', u'product']
[u'success', u'claim', u'weed', u'fight']
[u'student', u'sar', u'infect', u'countri', u'close']
[u'survey', u'find', u'cigarett', u'sell', u'underag', u'smoker']
[u'survey', u'highlight', u'littl', u'support', u'trade', u'hour']
[u'suspect', u'anthrax', u'death', u'brazil']
[u'swimmer', u'warn', u'stinger', u'danger']
[u'tarpeena', u'revamp', u'begin']
[u'thousand', u'award', u'unfair', u'sack']
[u'thousand', u'march', u'support', u'cfmeu', u'secretari']
[u'lead', u'recoveri', u'steal', u'paint']
[u'tongan', u'slam', u'world', u'schedul']
[u'tourist', u'die', u'road', u'crash']
[u'trinidad', u'sprint', u'star', u'boldon', u'freeman', u'confirm']
[u'turnbul', u'reassur', u'nrma', u'member', u'fee', u'rise']
[u'uefa', u'scrap', u'golden', u'goal']
[u'welcom', u'medic', u'student', u'place']
[u'confirm', u'fatal', u'iraq', u'protest', u'shoot']
[u'say', u'hold', u'iraqi', u'minist']
[u'seek', u'support', u'hydrogen', u'fuel']
[u'threaten', u'belgium', u'plan', u'crime']
[u'boost', u'baghdad', u'forc', u'improv', u'secur']
[u'troop', u'iraq', u'crowd', u'dead', u'jazeera']
[u'troop', u'leav', u'saudi', u'arabia']
[u'vail', u'lead', u'trade', u'deleg', u'iraq']
[u'wallabi', u'favourit', u'world', u'woodward']
[u'polic', u'offic', u'deni', u'pay']
[u'waratah', u'lose', u'elsom']
[u'water', u'committe', u'take', u'evid', u'port', u'lincoln']
[u'western', u'stock', u'number']
[u'prais', u'asean', u'china', u'sar', u'uniti']
[u'workplac', u'safeti', u'spotlight']
[u'work', u'start', u'bemax', u'plant', u'septemb']
[u'world', u'venu', u'impress', u'scotland', u'manag']
[u'month', u'overcom', u'sar', u'downturn', u'qanta']
[u'countri', u'risk', u'satellit', u'debri']
[u'aborigin', u'landcar', u'group', u'await', u'fund']
[u'account', u'order', u'leed', u'sell']
[u'acon', u'withdraw', u'vitamin']
[u'govt', u'slash', u'servic', u'prior', u'budget', u'oppn']
[u'qanta', u'deal', u'grant', u'week', u'extens']
[u'alleg', u'paedophil', u'dutroux', u'order', u'trial']
[u'aqi', u'clear', u'suspect', u'sar', u'case']
[u'armadal', u'rapist', u'give', u'longer', u'usual', u'sentenc']
[u'asio', u'chief', u'play', u'polic', u'bug', u'enquiri']
[u'aussi', u'dollar', u'hit', u'year', u'high']
[u'bashir', u'tell', u'terror', u'trial', u'judg']
[u'beckham', u'say', u'arsenal', u'defenc']
[u'bosnich', u'appeal']
[u'brauer', u'assur', u'custom', u'product', u'dont', u'contain']
[u'british', u'scientist', u'search', u'elus', u'dark', u'matter']
[u'bush', u'announc', u'major', u'iraq', u'fight']
[u'cancellara', u'take', u'earli', u'lead', u'tour', u'romandi']
[u'celtic', u'recov', u'uefa', u'final']
[u'chamber', u'get', u'nod', u'apra']
[u'chapman', u'water', u'reservoir', u'roof']
[u'chelsea', u'share', u'stamford', u'bridg', u'fulham']
[u'china', u'rush', u'hospit', u'construct', u'sar', u'spread']
[u'colombian', u'court', u'order', u'lift', u'state']
[u'communiti', u'protest', u'roadwork', u'handl']
[u'concern', u'flare', u'raaf', u'loss']
[u'concern', u'air', u'dental', u'servic']
[u'construct', u'union', u'secretari', u'await', u'decis']
[u'contractor', u'face', u'barrack', u'decis']
[u'coron', u'reject', u'apolog', u'westralia']
[u'council', u'consid', u'drop', u'green', u'levi']
[u'council', u'rate', u'better', u'expect', u'shire']
[u'council', u'time', u'caravan', u'park', u'decis']
[u'council', u'vote', u'differenti', u'rat']
[u'direct', u'flight', u'antarct', u'improv', u'access']
[u'doctor', u'provid', u'inform', u'extend', u'visa']
[u'downturn', u'tourist', u'number', u'cost', u'industri']
[u'drink', u'spike', u'victim', u'urg', u'join', u'survey']
[u'drought', u'claim', u'victim', u'piggeri', u'close']
[u'drought', u'put', u'rice', u'worker', u'work']
[u'investig', u'brereton', u'bug', u'claim']
[u'dublin', u'confirm', u'european', u'final', u'venu']
[u'eccleston', u'lash']
[u'eccleston', u'slam', u'team']
[u'plead', u'guilti', u'warship', u'protest']
[u'environment', u'group', u'seek', u'altern']
[u'esper', u'angler', u'safe']
[u'europ', u'club', u'want', u'world', u'profit']
[u'hero', u'shrewsburi', u'tumbl', u'leagu']
[u'famili', u'friend', u'farewel', u'accid', u'victim']
[u'farina', u'pleas', u'despit', u'olyroo', u'loss']
[u'father', u'murder', u'trio', u'appeal', u'public']
[u'feder', u'warm', u'easi', u'munich']
[u'firearm', u'caus', u'loss', u'heritag']
[u'bali', u'trial', u'date']
[u'probabl', u'sar', u'death', u'africa']
[u'fittler', u'rule', u'return', u'blue']
[u'forum', u'focus', u'land', u'right']
[u'foster', u'carer', u'name', u'mother', u'year']
[u'bounti', u'trial', u'success', u'spur', u'grant', u'council']
[u'wife', u'home', u'breast', u'cancer', u'surgeri']
[u'gonzalez', u'galdeano', u'ban', u'tour']
[u'govt', u'give', u'bushfir', u'recoveri']
[u'govt', u'oppn', u'agre', u'drug', u'regul', u'need']
[u'grazier', u'spin', u'wool', u'market', u'fall']
[u'green', u'bank', u'launch', u'fund', u'environment', u'sound']
[u'greenpeac', u'activist', u'maximum', u'penalti']
[u'head', u'roll']
[u'hewitt', u'pull', u'italian', u'open']
[u'hewitt', u'play', u'world', u'team', u'australia']
[u'hill', u'clear', u'injuri']
[u'indonesian', u'polic', u'arrest', u'boat', u'peopl', u'bind']
[u'inquiri', u'clear']
[u'inquiri', u'hear', u'sailor', u'forc', u'ship']
[u'iraqi', u'border', u'closur', u'urg', u'catch', u'loot']
[u'wont', u'undermin', u'peac', u'process', u'adam']
[u'ironman', u'champion', u'retir']
[u'italian', u'satellit', u'make', u'pacif', u'splash']
[u'iverson', u'bryant', u'jermain', u'oneal', u'name', u'olymp', u'team']
[u'jackson', u'keen', u'play', u'jone']
[u'labor', u'court', u'wanker', u'napthin']
[u'labor', u'plan', u'medicar', u'rescu', u'packag']
[u'laker', u'rout', u'wolv', u'control', u'seri']
[u'hop', u'repeat', u'asian', u'event']
[u'legal', u'action', u'possibl', u'smith', u'beach']
[u'leicest', u'dump', u'kafer']
[u'lewi', u'charg', u'drunken', u'drive']
[u'lille', u'hit', u'richard', u'jibe']
[u'live', u'murray', u'forum', u'irrig']
[u'guilti', u'mistreat']
[u'murder', u'charg', u'face', u'court']
[u'say', u'travel', u'pill', u'affect', u'like', u'overdos']
[u'market', u'steadi', u'despit', u'bank', u'loss']
[u'mccartney', u'hop']
[u'medicar', u'review', u'prompt', u'health', u'care', u'inquiri']
[u'melbourn', u'host', u'sar', u'meet']
[u'menangl', u'bridg', u'rebuild', u'rail', u'overhaul']
[u'unhealthi', u'compar', u'women', u'studi']
[u'merckx', u'turn', u'armstrong']
[u'mexico', u'desper', u'breed', u'panda']
[u'miner', u'get', u'support', u'fight', u'insur', u'decis']
[u'minist', u'announc', u'sweep', u'chang', u'rail']
[u'consult', u'seek', u'tourism', u'crisi', u'plan']
[u'problem', u'windi', u'mcgrath', u'return']
[u'time', u'seek', u'consid', u'water', u'plan']
[u'moya', u'eye', u'second', u'grand', u'slam', u'titl']
[u'defend', u'effort', u'reduc', u'class', u'size']
[u'nation', u'grain', u'industri', u'threat', u'wheat', u'virus']
[u'natur', u'founder', u'accus', u'scare', u'tactic']
[u'nauru', u'economi', u'troubl']
[u'burundi', u'presid', u'promis', u'peac']
[u'newcastl', u'prop', u'perri', u'guilti']
[u'newli', u'elect', u'swear']
[u'shoot', u'falluja', u'dead']
[u'parol', u'period', u'convict', u'murder', u'reduc']
[u'public', u'transport', u'price', u'review', u'brumbi']
[u'opposit', u'slam', u'state', u'rail', u'appoint']
[u'korea', u'wrap', u'talk']
[u'highest', u'job', u'growth', u'australia']
[u'offici', u'wave', u'plan', u'month']
[u'site', u'meet', u'discuss', u'wind', u'farm', u'plan']
[u'opsm', u'takeov', u'sight']
[u'opsm', u'share', u'surg', u'wake', u'takeov']
[u'palestinian', u'swear']
[u'admit', u'procedur', u'problem']
[u'boss', u'meet']
[u'expect', u'suspens', u'lift', u'director']
[u'sack', u'employe', u'product', u'recal']
[u'staff', u'receiv', u'assur']
[u'suspens', u'hit', u'owner']
[u'paper', u'publish', u'letter', u'saddam']
[u'parent', u'urg', u'avoid', u'smack']
[u'parreira', u'maiden', u'brazil']
[u'pest', u'look', u'stay']
[u'pollut', u'affect', u'male', u'fertil', u'studi']
[u'popular', u'comeback', u'boom', u'boom', u'peopl']
[u'power', u'plan', u'question']
[u'primus', u'montgomeri', u'doubt', u'tiger', u'clash']
[u'probe', u'aim', u'rais', u'financi', u'advic', u'standard']
[u'protest', u'plead', u'guilti', u'anti', u'protest']
[u'recal', u'spark', u'calm']
[u'recal', u'spark', u'health', u'food', u'store', u'concern']
[u'recov', u'moya', u'eye', u'second', u'grand', u'slam', u'titl']
[u'red', u'demot', u'kefu', u'bench']
[u'tape', u'hinder', u'firefight', u'effort', u'report']
[u'resourc', u'project', u'nomin', u'environ', u'award']
[u'issu', u'airport', u'warn']
[u'seek', u'lower', u'tax']
[u'rice', u'worker', u'lose', u'job']
[u'rivkin', u'guilti', u'insid', u'trade']
[u'roeder', u'intens', u'care', u'return']
[u'break', u'woomera', u'game']
[u'rumsfeld', u'land', u'iraq', u'amid', u'tight', u'secur']
[u'ryan', u'break', u'murder', u'trial']
[u'saddam', u'letter', u'urg', u'iraqi', u'upris']
[u'safin', u'wear', u'squillari', u'valencia']
[u'sahaf', u'urg', u'surrend']
[u'sar', u'fear', u'boost', u'diseas', u'prevent', u'sale', u'figur']
[u'sar', u'impact', u'cattl', u'export']
[u'sar', u'quarantin', u'time', u'catch', u'read']
[u'scheme', u'aim', u'foster', u'cabonn', u'growth']
[u'second', u'falluja', u'shoot', u'toll', u'rise']
[u'secur', u'confer', u'predict', u'terror', u'attack']
[u'shire', u'address', u'skate', u'park', u'woe']
[u'snowtown', u'killer', u'finish', u'give', u'evid']
[u'solo', u'rower', u'face', u'ocean', u'peril']
[u'south', u'africa', u'launch', u'host', u'soccer', u'world']
[u'stafford', u'clear', u'strike', u'charg']
[u'stafford', u'escap']
[u'stanbrok', u'loss', u'affect', u'sale']
[u'storm', u'hill', u'clear', u'injuri']
[u'sydney', u'hospit', u'fudg', u'figur', u'minist']
[u'talli', u'wage', u'talk', u'wrong', u'bronco', u'boss']
[u'bird', u'await', u'answer', u'avellino']
[u'aviv', u'suicid', u'bomb', u'joint', u'effort']
[u'telstra', u'confirm', u'tassi', u'loss']
[u'telstra', u'sharehold', u'receiv', u'dividend', u'today']
[u'tendulkar', u'face', u'month', u'break', u'hand', u'surgeri']
[u'textil', u'union', u'claim', u'geelong', u'lockout']
[u'recal', u'product']
[u'win', u'prais', u'recal']
[u'thai', u'jail', u'laugh', u'matter']
[u'thiev', u'target', u'teacher', u'home']
[u'timber', u'firm', u'worker', u'face', u'uncertain', u'futur']
[u'tissu', u'engin', u'grow', u'peni']
[u'earli', u'judg', u'sar', u'impact', u'china', u'trade']
[u'club', u'share', u'world', u'profit']
[u'tourism', u'group', u'welcom', u'road', u'upgrad']
[u'tribut', u'flood', u'bourn']
[u'tribut', u'flow', u'ralli', u'driver', u'bourn']
[u'tribut', u'flow', u'possum', u'bourn']
[u'tribut', u'flow', u'ralli', u'driver', u'bourn']
[u'court', u'drug', u'firearm', u'charg']
[u'uncertainti', u'surround', u'complementari']
[u'union', u'begin', u'action', u'geelong', u'textil', u'factori']
[u'uni', u'research', u'fund']
[u'expand', u'health', u'screen', u'return', u'troop']
[u'troop', u'defend', u'falluja', u'shoot']
[u'vander', u'kuyp', u'return', u'form']
[u'venus', u'readi', u'turn', u'tabl']
[u'farmer', u'concern', u'fall', u'wool', u'price']
[u'wale', u'defend', u'cost', u'code', u'conduct', u'probe']
[u'wallabi', u'boss', u'eye']
[u'water', u'restrict', u'lift', u'varley']
[u'wimbledon', u'tradit', u'bow']
[u'wind', u'farm', u'plan', u'spark', u'protest']
[u'wineri', u'urg', u'follow', u'export', u'lead']
[u'wineri', u'withdraw', u'trademark', u'applic']
[u'wnbl', u'opal', u'secur', u'sponsorship', u'deal']
[u'wool', u'price', u'batter']
[u'remain', u'trap', u'bingol', u'earthquak']
[u'dead', u'evacu', u'argentin', u'flood']
[u'african', u'dead', u'crash']
[u'continu', u'hunt', u'indonesian', u'terrorist']
[u'forc', u'flare', u'wash', u'stradbrok']
[u'say', u'medicar', u'reform', u'requir', u'doctor', u'spend']
[u'ambul', u'reform', u'region']
[u'shed', u'staff', u'stanwel']
[u'share', u'hold']
[u'split', u'mark', u'fresh', u'start']
[u'split', u'help', u'intern', u'busi']
[u'anderson', u'urg', u'accc', u'approv', u'qanta', u'deal']
[u'anthrax', u'genom', u'show', u'chang', u'dead']
[u'atsic', u'call', u'suspens', u'abus', u'judg']
[u'augenthal', u'nuremberg', u'trial']
[u'aussi', u'dollar', u'hit', u'year', u'high', u'morn', u'trade']
[u'australia', u'mint', u'coin', u'mark', u'rugbi', u'world']
[u'australia', u'biggest', u'wind', u'farm', u'get', u'ahead']
[u'avellino', u'swift', u'clash']
[u'baildon', u'play', u'rate', u'rise', u'fear']
[u'beatti', u'defend', u'tabl', u'abus', u'report']
[u'benalla', u'flood', u'protect', u'prove', u'cost']
[u'berkov', u'miss', u'main', u'road', u'final']
[u'bertoletti', u'take', u'stage', u'lead', u'tour', u'romandi']
[u'black', u'cap', u'step', u'pressur', u'lankan']
[u'blue', u'trio', u'chanc', u'play']
[u'boat', u'rush', u'ship', u'founder', u'reef']
[u'box', u'communiti', u'claim', u'sport', u'unfair', u'attack']
[u'breakthrough', u'crown', u'land', u'disput', u'talk', u'saff']
[u'brereton', u'claim', u'damag']
[u'bridg', u'replac', u'fast', u'track']
[u'britain', u'reopen', u'iraq', u'mission']
[u'british', u'call', u'polic', u'wife', u'wont', u'cook', u'dinner']
[u'brothel', u'share', u'doubl', u'float', u'price']
[u'brumbi', u'lose', u'giffen']
[u'buri', u'fenc', u'open', u'border', u'dingo']
[u'associ', u'seek', u'meet', u'king', u'bros', u'woe']
[u'bush', u'hail', u'pakistan', u'arrest', u'qaeda', u'leader']
[u'centr', u'closur', u'spark', u'anger']
[u'better', u'feral', u'control']
[u'continu', u'chopper', u'support']
[u'second', u'airlin', u'boost', u'alic', u'tourism']
[u'sensibl', u'order', u'debat']
[u'canada', u'host', u'sar', u'summit', u'death', u'report']
[u'candid', u'question', u'elect']
[u'canegrow', u'group', u'say', u'legisl', u'littl']
[u'cash', u'strap', u'hib', u'sidelin', u'cost', u'skipper']
[u'cattl', u'winner', u'announc']
[u'cemeteri', u'repair', u'near', u'finish']
[u'respond', u'bushfir', u'probe', u'critic']
[u'childhood', u'pneumonia', u'vaccin', u'protect', u'adult']
[u'church', u'report', u'spark', u'debat']
[u'clean', u'clear', u'pound', u'warn']
[u'cloud', u'hang', u'crisi', u'shelter']
[u'commonwealth', u'fund', u'biotech', u'project']
[u'communic', u'problem', u'delay', u'garbag', u'collect']
[u'cost', u'rule', u'postal', u'vote']
[u'council', u'confid', u'meet', u'entitl']
[u'council', u'general', u'manag', u'get', u'golden']
[u'court', u'resolv', u'nurs', u'disput']
[u'crean', u'call', u'action', u'murray', u'mouth']
[u'crunch', u'time', u'aussi', u'super', u'team']
[u'cut', u'possibl', u'break', u'hill', u'servic']
[u'deficit', u'highlight', u'geraldton', u'budget']
[u'doctor', u'dismiss', u'carr', u'medicar', u'reform', u'plan']
[u'edenhop', u'move', u'closer', u'realis', u'communiti', u'bank']
[u'elephantin', u'beauti', u'weigh', u'conserv']
[u'emerg', u'spark', u'beacon', u'support']
[u'england', u'declin', u'turkey', u'ticket']
[u'england', u'pitch', u'invad', u'life']
[u'explos', u'reserv', u'secur', u'question']
[u'farmer', u'urg', u'work', u'safe']
[u'fear', u'sar', u'impact', u'seafood', u'export', u'overst']
[u'figur', u'highlight', u'fall', u'local', u'own', u'build']
[u'footbal', u'coach', u'sack', u'bali', u'aftermath']
[u'presid', u'case', u'carr']
[u'children', u'unhurt', u'melbourn', u'window']
[u'face', u'court', u'berri', u'theft']
[u'fowler', u'emot', u'anfi', u'return']
[u'galdeano', u'highlight', u'asthma', u'drug']
[u'gene', u'fault', u'link', u'auto', u'immun', u'diseas', u'risk']
[u'govt', u'ask', u'delay', u'servic', u'price', u'rise']
[u'govt', u'consid', u'aceh', u'state', u'emerg']
[u'govt', u'outlin', u'post', u'deploy']
[u'greec', u'rush', u'earthquak', u'turkey']
[u'grenad', u'injur', u'seven', u'soldier', u'falluja']
[u'groundbreak', u'surgeri', u'save', u'koala']
[u'group', u'consid', u'perman', u'mamographi', u'unit']
[u'hawk', u'ring', u'chang']
[u'herron', u'sigma', u'merger', u'complet']
[u'high', u'hop', u'budget']
[u'hollingworth', u'answer', u'church', u'report']
[u'hollywood', u'touch', u'melbourn', u'brothel', u'list']
[u'hong', u'kong', u'investig', u'sar', u'relaps']
[u'improp', u'practic', u'alleg', u'level']
[u'inquest', u'hear', u'faulti', u'fuel', u'hose', u'caus', u'ship']
[u'inquiri', u'hear', u'iwestraliai', u'repair', u'evid']
[u'insur', u'cast', u'doubt', u'obstetr', u'servic']
[u'attack', u'share', u'world', u'profit']
[u'island', u'communiti', u'highlight', u'food', u'suppli', u'concern']
[u'israel', u'polic', u'hunt', u'fail', u'british', u'suicid']
[u'trick', u'hundr']
[u'jewish', u'fit', u'guru', u'shape', u'york', u'nun']
[u'kill', u'prompt', u'tighten', u'bail', u'law']
[u'king', u'advanc', u'blazer', u'avoid', u'elimin']
[u'knight', u'await', u'answer', u'perri', u'appeal']
[u'knight', u'consid', u'appeal', u'perri']
[u'korea', u'choi', u'open', u'defenc', u'crown']
[u'labor', u'frontbench', u'urg', u'parti', u'think']
[u'latham', u'rule', u'gridiron', u'switch']
[u'lifeguard', u'issu', u'beach', u'safeti', u'warn']
[u'list', u'recal', u'product', u'finalis']
[u'lowi', u'demand', u'like', u'green', u'light', u'nogarotto']
[u'yang', u'power', u'record', u'near', u'loss']
[u'magistr', u'regret', u'verbal', u'abus', u'accus']
[u'magpi', u'focus', u'davi', u'factor']
[u'malthous', u'target', u'white']
[u'face', u'court', u'indec', u'act', u'charg']
[u'injur', u'trampl']
[u'plead', u'guilti', u'plan', u'embassi', u'bomb']
[u'face', u'court', u'cannabi', u'charg']
[u'manufactur', u'industri', u'grow']
[u'market', u'steadi', u'bank', u'claw']
[u'march', u'end', u'plea', u'protect', u'youth', u'job']
[u'mcisaac', u'look', u'aust', u'select']
[u'mcleod', u'doubt', u'roo', u'clash']
[u'mear', u'sister', u'slug', u'sydney']
[u'medicar', u'chang', u'boost', u'doctor', u'access', u'stoner']
[u'meet', u'fail', u'resolv', u'surgeon', u'disput']
[u'minist', u'defend', u'sardi']
[u'mobil', u'poll', u'local', u'govt', u'elect']
[u'montgomeri', u'target', u'renew', u'record']
[u'mosaic', u'effort', u'come']
[u'air', u'payrol', u'concern']
[u'air', u'prosecut', u'concern']
[u'say', u'threat', u'didnt', u'chang', u'log', u'stanc']
[u'nardel', u'coal', u'corpor', u'go', u'liquid']
[u'navi', u'rescu', u'adrift', u'indonesian']
[u'palestinian', u'cabinet', u'meet', u'domin', u'raid']
[u'throw', u'perri', u'appeal']
[u'rail', u'network', u'unsaf', u'opposit']
[u'busi', u'confid', u'increas']
[u'govt', u'conceal', u'debt', u'report']
[u'team', u'break']
[u'olonga', u'prais', u'hero', u'hussain', u'report']
[u'outspoken', u'zimbabwean', u'mayor', u'suspend']
[u'firefight', u'battl', u'china', u'blaze']
[u'pagan', u'join', u'call', u'chang', u'report']
[u'boss', u'like', u'step', u'union']
[u'resign']
[u'step']
[u'futur', u'uncertain']
[u'talk', u'union', u'compani', u'futur']
[u'pasminco', u'improv', u'product']
[u'plant', u'destroy', u'contain', u'wheat', u'virus']
[u'airlin', u'foreign', u'oper']
[u'polic', u'appeal', u'driver', u'come']
[u'polic', u'investig', u'assault', u'sailor']
[u'polic', u'probe', u'blaze']
[u'polic', u'probe', u'motorcyclist', u'death']
[u'polic', u'question', u'seig']
[u'polic', u'raid', u'uncov', u'steal', u'properti']
[u'polic', u'investig', u'darwin', u'alleg', u'assault']
[u'pompey', u'deal', u'nigerian']
[u'potenti', u'buyer', u'unperturb', u'stanbrok', u'loss']
[u'rafiqu', u'quartet', u'restrain', u'africa', u'talli']
[u'rail', u'bridg', u'work', u'cost']
[u'rain', u'help', u'avoid', u'mous', u'plagu']
[u'randolph', u'shin', u'portland', u'stave', u'elimin']
[u'rescu', u'chopper', u'servic', u'question', u'crash', u'report']
[u'rescuer', u'search', u'rubbl', u'turkey', u'quak']
[u'road', u'closur', u'spark', u'busi', u'concern']
[u'road', u'fail', u'offer', u'clear', u'peac', u'path']
[u'rise', u'immelman', u'open', u'debut', u'june']
[u'royal', u'commiss', u'examin', u'detect', u'land', u'deal']
[u'rumsfeld', u'karzai', u'focus', u'reconstruct']
[u'russia', u'beat', u'friend', u'win', u'franc', u'spain']
[u'russia', u'beat', u'win', u'franc', u'spain', u'germani']
[u'ryan', u'end', u'evid', u'backpack', u'murder', u'trial']
[u'ryan', u'end', u'evid', u'murder', u'trial', u'claim']
[u'samba', u'capit', u'get', u'guggenheim', u'offshoot']
[u'sar', u'forc', u'singapor', u'airlin', u'flight']
[u'sar', u'total', u'trade', u'disast', u'austrad']
[u'sar', u'scare', u'forc', u'asian', u'doctor', u'hobart']
[u'save', u'medicar', u'allianc', u'oppos', u'propos', u'chang']
[u'schumach', u'want', u'win', u'debut', u'ferrari']
[u'servic', u'youngest', u'murder', u'trio']
[u'seven', u'kill', u'injur', u'bangladesh', u'storm']
[u'abus', u'report', u'criticis', u'hollingworth']
[u'shanghai', u'eas', u'sar', u'quarantin', u'tourist']
[u'shire', u'hop', u'sympathet', u'hear', u'insur']
[u'dead', u'wound', u'philippin', u'attack']
[u'small', u'boat', u'trophi']
[u'softwood', u'mill', u'industri', u'remain', u'viabl']
[u'crime', u'bendigo']
[u'sorenstam', u'histor', u'effort']
[u'south', u'east', u'gear', u'pin', u'enduro']
[u'state', u'forest', u'defend', u'pine', u'plant', u'boost']
[u'statist', u'indic', u'crime', u'declin']
[u'suspect', u'sar', u'case']
[u'teenag', u'french', u'break']
[u'tendulkar', u'month']
[u'test', u'shortcut', u'lead', u'unnecessari', u'abort', u'studi']
[u'timber', u'firm', u'upfront', u'job']
[u'trader', u'jail', u'sell', u'bali', u'blast', u'chemic']
[u'palestinian', u'kill', u'isra', u'gaza']
[u'union', u'prais', u'action', u'address', u'teacher', u'hous']
[u'union', u'play', u'bigger', u'role', u'pilbara']
[u'compani', u'test', u'anthrax', u'antidot']
[u'usoc', u'welcom', u'decis', u'action', u'drug', u'test']
[u'post', u'administr']
[u'nistelrooy', u'rest', u'dutch']
[u'govt', u'call', u'chief', u'justic']
[u'call', u'ministeri', u'sack']
[u'wagga', u'rail', u'bridg', u'replac']
[u'wallabi', u'great', u'horan', u'soldier', u'saracen']
[u'webck', u'workload', u'warn']
[u'einstein', u'newton', u'autist']
[u'west', u'indi', u'finalis', u'test', u'team']
[u'staff', u'walk', u'gambier']
[u'wool', u'price', u'drop', u'blame', u'drought', u'world', u'instabl']
[u'abattoir', u'piggeri', u'feder', u'fund']
[u'economi', u'strong', u'outlook', u'waver']
[u'actu', u'seek', u'rise', u'medicar', u'chang']
[u'servic', u'issu', u'spotlight', u'wagga']
[u'alfi', u'talk', u'remot', u'area', u'student']
[u'anderson', u'defend', u'absenc']
[u'anderson', u'thank', u'tvill', u'defenc', u'forc', u'staff']
[u'earli', u'tast', u'battl', u'come']
[u'gold', u'probe', u'permit', u'seek', u'charter', u'tower']
[u'anthropologist', u'get', u'board']
[u'anti', u'discrimin', u'presid', u'face', u'abus', u'power']
[u'anti', u'nuke', u'campaign', u'seek', u'assur', u'jabiluka']
[u'atsb', u'releas', u'ship', u'death', u'report']
[u'australia', u'resum', u'strong', u'posit']
[u'award', u'win', u'cunnamulla', u'face', u'decept', u'conduct']
[u'bakeri', u'owner', u'fin', u'rat', u'faec', u'bread']
[u'bashir', u'edgi', u'women', u'separatist']
[u'bear', u'hop', u'straight', u'win']
[u'beatti', u'urg', u'public', u'voic', u'opinion']
[u'berlin', u'polic', u'disappoint', u'anarchist', u'violenc']
[u'blair', u'surviv', u'backlash', u'local', u'region', u'poll']
[u'blaze', u'destroy', u'ulong', u'club']
[u'blue', u'secur', u'super', u'spot']
[u'bonus', u'point', u'world']
[u'braveheart', u'want', u'resign']
[u'britain', u'vote', u'local', u'region', u'poll']
[u'brothel', u'share', u'continu', u'steadi', u'climb']
[u'seminar', u'highlight', u'law']
[u'bulldog', u'snap', u'lose', u'streak', u'rooster', u'thrash', u'eel']
[u'californian', u'citi', u'name', u'smoggiest']
[u'import', u'follow', u'firework']
[u'canberra', u'host', u'talk', u'tini', u'tech']
[u'capitalist', u'annual', u'pilgrimag', u'buffet', u'sermon']
[u'carey', u'come', u'trump']
[u'carey', u'confront', u'roo']
[u'carleton', u'order', u'cost']
[u'castro', u'defend', u'clampdown']
[u'await', u'hear', u'result']
[u'chile', u'costa', u'rica', u'unbeaten', u'streak']
[u'chines', u'submarin', u'accid', u'kill', u'report']
[u'church', u'keep', u'quiet', u'priest', u'transfer']
[u'claim', u'drought', u'polici', u'date']
[u'claim', u'industri', u'action', u'wont', u'stop', u'news', u'servic']
[u'claim', u'media', u'coverag', u'inflam', u'meekatharra', u'woe']
[u'columbia', u'entri', u'doom']
[u'connelli', u'defend', u'struggl', u'docker']
[u'coron', u'tell', u'caus', u'navi', u'death']
[u'councillor', u'consid', u'rate', u'rise']
[u'council', u'survey', u'highlight', u'insur', u'find']
[u'council', u'fight', u'wooli', u'petrol', u'station', u'plan']
[u'council', u'seek', u'feder', u'help', u'ensur', u'servic']
[u'council', u'urg', u'differ', u'site', u'mart']
[u'court', u'clear', u'build', u'union', u'chief']
[u'court', u'clear', u'union', u'chief']
[u'crean', u'call', u'coral']
[u'crown', u'sum', u'case', u'fraser', u'trial']
[u'crow', u'carey', u'triumph', u'roo']
[u'cycl', u'championship', u'hold']
[u'defenc', u'chief', u'win', u'diplomat', u'post']
[u'demetriou', u'eye', u'afl']
[u'doctor', u'get', u'week', u'work']
[u'doubt', u'cast', u'noongar', u'genealog', u'plan']
[u'downer', u'visit', u'iraq']
[u'wire', u'monaco', u'lyon', u'close']
[u'drug', u'result', u'satisfactori', u'thai']
[u'english', u'premier', u'leagu', u'race', u'hot']
[u'experiment', u'salin', u'awar', u'program', u'launch']
[u'fall', u'star', u'leverkusen', u'lock', u'surviv', u'battl']
[u'farmer', u'group', u'air', u'dairi', u'concern']
[u'farm', u'worker', u'get', u'life', u'sentenc', u'stab', u'murder']
[u'ladi', u'clear', u'throat', u'juve', u'wrap']
[u'feder', u'fund', u'mirani', u'memori']
[u'ferguson', u'blow', u'away', u'power', u'edward']
[u'fear', u'dead', u'china', u'flood']
[u'firefight', u'derbi', u'blaze', u'suspici']
[u'forc', u'stay', u'aliv']
[u'black', u'wari', u'wallabi']
[u'charg', u'store', u'theft', u'remand', u'custodi']
[u'fourteen', u'kill', u'truck', u'accid', u'southern']
[u'fraser', u'juri', u'ask', u'believ']
[u'text', u'bush', u'declar', u'major', u'fight', u'iraq']
[u'tanker', u'crash', u'close', u'bruce', u'hway']
[u'gene', u'provid', u'shrink', u'proof', u'wool']
[u'ger', u'throw', u'titl', u'away', u'mcleish']
[u'tell', u'resist', u'pressur', u'resign']
[u'pizzonia', u'time', u'montoya', u'tell', u'jaguar']
[u'gold', u'probe', u'permit', u'seek', u'charter', u'tower']
[u'govt', u'appoint', u'hreoc', u'chief']
[u'govt', u'generos', u'help', u'pocket', u'arafura', u'game']
[u'govt', u'send', u'troop', u'iraq']
[u'govt', u'deadlock', u'health', u'fund']
[u'grain', u'giant', u'talk']
[u'group', u'sure', u'council', u'park', u'site']
[u'henri', u'name', u'writer', u'player', u'year']
[u'high', u'hop', u'onshor', u'field']
[u'human', u'shield', u'speak', u'ralli']
[u'hunter', u'economi', u'power']
[u'imam', u'peac', u'prayer', u'tens', u'falluja']
[u'india', u'announc', u'gestur', u'hope', u'pakistan']
[u'japanes', u'rooki', u'grab', u'share', u'lead']
[u'journalist', u'danger', u'spot', u'reveal']
[u'kiwi', u'book', u'tuneup', u'friend']
[u'krivtsov', u'win', u'stage', u'bertoletti', u'protect', u'overal']
[u'laker', u'beat', u'wolv', u'close', u'seri']
[u'lara', u'defend', u'toss', u'decis']
[u'lawyer', u'welcom', u'releas', u'report']
[u'luxuri', u'charter', u'boat', u'sink', u'coast']
[u'magistr', u'reluct', u'jail', u'fishermen']
[u'mallorca', u'hinder', u'undef', u'real', u'madrid', u'half']
[u'face', u'court', u'home', u'invas']
[u'face', u'drug', u'charg']
[u'market', u'lose', u'grind', u'bank', u'resourc', u'slip']
[u'martyn', u'windi', u'seri']
[u'martyn', u'rule', u'windi', u'dayer']
[u'mayor', u'confid', u'stanwel', u'spin', u'off']
[u'mayor', u'kill', u'sicili', u'shoot']
[u'mayor', u'seek', u'mine', u'assur']
[u'meet', u'hear', u'mix', u'respons', u'timber', u'plan']
[u'melbourn', u'club', u'host', u'british', u'open', u'qualifi']
[u'melbourn', u'golf', u'club', u'host', u'british', u'open', u'qualifi']
[u'melbourn', u'world', u'match', u'seal']
[u'mexican', u'kill', u'link', u'organ', u'suppli', u'racket']
[u'mexican', u'rooki', u'italian', u'surpris', u'share', u'lpga', u'lead']
[u'minist', u'air', u'youth', u'shelter', u'support', u'concern']
[u'molik', u'cautious', u'dokic', u'return']
[u'montgomeri', u'target', u'record']
[u'job', u'wagga', u'wagga']
[u'support', u'seek', u'festiv']
[u'injur', u'vietnam', u'blast']
[u'mother', u'child', u'flee', u'burn', u'hous']
[u'push', u'rail', u'cross', u'overpass']
[u'nation', u'demand', u'answer', u'shelv', u'rail', u'project']
[u'navi', u'ship', u'head', u'albani']
[u'neverfail', u'board', u'urg', u'reject', u'coke', u'takeov']
[u'nevill', u'month']
[u'ferrari', u'make', u'slow', u'start']
[u'korea', u'offici', u'aboard', u'pong', u'downer']
[u'concern', u'spark', u'border', u'closur']
[u'oppon', u'medicar', u'reform', u'meet']
[u'opposit', u'accus', u'carr', u'govt', u'threat']
[u'panel', u'review', u'submiss']
[u'recal', u'cost', u'mayn', u'million']
[u'parreira', u'winless', u'brazil', u'hold', u'mexico']
[u'patient', u'return', u'cunderdin', u'hospit']
[u'perman', u'doctor', u'wagin']
[u'interven', u'health', u'fund', u'minist']
[u'polic', u'chief', u'sack', u'quak', u'spark', u'riot']
[u'polic', u'chief', u'sack', u'turkish', u'quak', u'citi']
[u'polic', u'happi', u'race', u'crowd', u'behaviour']
[u'polic', u'seek', u'help']
[u'polic', u'seiz', u'drug', u'worth', u'perth']
[u'power', u'station', u'contract', u'worker', u'consid']
[u'prepar', u'underway', u'final', u'kart', u'race']
[u'pressur', u'pizzonia', u'injur', u'jaguar', u'mechan']
[u'hart', u'excav', u'rais', u'chariti', u'fund']
[u'promina', u'float', u'close', u'retail', u'investor']
[u'protest', u'target', u'sharehold']
[u'call', u'job', u'child', u'protect']
[u'psychiatr', u'evid', u'hear', u'stab', u'trial']
[u'puplick', u'quit', u'amid', u'abus', u'power']
[u'rafiqu', u'star', u'ball', u'bangladesh']
[u'rebellin', u'upset', u'zabel', u'henning', u'tower', u'race']
[u'record', u'crowd', u'flock', u'agfest']
[u'report', u'deni', u'public', u'complaint', u'amid', u'wood', u'chip']
[u'report', u'find', u'hollingworth', u'show']
[u'river', u'battl', u'snatch', u'victori']
[u'rural', u'advisori', u'council', u'member', u'drought', u'impact']
[u'saddam', u'doppelgang', u'seek', u'stage']
[u'saleyard', u'agreement', u'promis', u'good', u'return']
[u'sar', u'virus', u'mutat', u'research']
[u'indigen', u'communiti', u'water', u'suppli']
[u'schuettler', u'roll', u'munich']
[u'search', u'continu', u'miss']
[u'second', u'alcohol', u'knock', u'servic', u'station']
[u'second', u'puckapuny', u'kangaroo', u'cull', u'rais']
[u'shoot', u'death', u'spark', u'move', u'toughen', u'bail', u'law']
[u'sicili', u'shoot', u'spark', u'fear']
[u'song', u'sampl', u'iraqi', u'inform', u'minist']
[u'southern', u'cross', u'replica', u'stay']
[u'state', u'launch', u'hotlin', u'school', u'secur']
[u'state', u'reject', u'health', u'fund', u'deal']
[u'steam', u'train', u'plan', u'face', u'hurdl']
[u'studi', u'help', u'determin', u'quak', u'probabl']
[u'surgic', u'mask', u'best', u'sar', u'guard', u'studi']
[u'tassi', u'engin', u'contract']
[u'bird', u'sink', u'swift']
[u'teenag', u'argentinian', u'heiress', u'kidnap']
[u'teenag', u'gang', u'face', u'court', u'crime', u'spree']
[u'tenant', u'danger', u'lose', u'accommod']
[u'thousand', u'attend', u'gaza', u'raid', u'victim', u'funer']
[u'thousand', u'fewer', u'spot', u'figur']
[u'dead', u'sydney', u'pile']
[u'tiger', u'prove', u'point']
[u'town', u'face', u'harsher', u'water', u'restrict']
[u'trade', u'narrow']
[u'trader', u'seek', u'support', u'surveil', u'camera']
[u'uefa', u'fin', u'england', u'racist', u'fan']
[u'union', u'want', u'council', u'staff']
[u'union', u'welcom', u'equal', u'textil', u'outwork']
[u'unit', u'turn', u'screw', u'gunner']
[u'detain', u'regim', u'leader']
[u'prevail', u'iraq', u'bush']
[u'warn', u'israel', u'watch', u'civilian']
[u'vecci', u'seek', u'region', u'infrastructur', u'boost']
[u'venus', u'warsaw', u'quarter', u'final', u'hantuchova']
[u'polic', u'racism', u'signific', u'problem', u'report']
[u'vict', u'govt', u'approv', u'bairnsdal', u'nurs', u'home']
[u'vogt', u'vow', u'fight']
[u'map', u'industri', u'pollut']
[u'polic', u'seiz', u'huge', u'illeg', u'abalon', u'haul']
[u'water', u'polic', u'escort', u'torpedo', u'boat', u'crew']
[u'west', u'face', u'chelsea', u'desper', u'derbi']
[u'dock', u'major', u'rice', u'shipment', u'iraq']
[u'wildcat', u'releas', u'black']
[u'world', u'director', u'play', u'payment']
[u'young', u'gun', u'nadal', u'gasquet', u'ancic', u'queen', u'club']
[u'kashmiri', u'kill', u'grenad', u'miss', u'target']
[u'submarin', u'dead', u'china', u'worst', u'naval', u'accid']
[u'act', u'bicci', u'raaf']
[u'star', u'game', u'win', u'leagu', u'world', u'seri']
[u'play', u'fail', u'split', u'bidder']
[u'argentina', u'flood', u'kill', u'evacu']
[u'asian', u'like', u'british', u'curri', u'hous']
[u'aussi', u'clean', u'sweep', u'super', u'action']
[u'aust', u'polocross', u'final']
[u'baghdad', u'polic', u'chief', u'step', u'asid', u'younger']
[u'black', u'unsur', u'futur']
[u'blair', u'say', u'comfort']
[u'bridal', u'waltz', u'polic', u'chase', u'thief']
[u'british', u'cameraman', u'kill', u'isra', u'crossfir']
[u'british', u'town', u'welcom', u'dare', u'gooder']
[u'broadband', u'technolog', u'polit', u'agenda']
[u'china', u'agre', u'team', u'visit', u'taiwan']
[u'china', u'hail', u'dead', u'crew', u'loyal', u'protector']
[u'china', u'tightlip', u'disast', u'caus']
[u'church', u'leader', u'rebuild', u'iraq']
[u'colin', u'powel', u'go', u'syria', u'listen']
[u'burn', u'giant', u'tree', u'damag']
[u'crusad', u'clinch', u'semi', u'spot']
[u'danger', u'wheat', u'virus', u'toowoomba']
[u'democrat', u'drink', u'drive', u'amend']
[u'dufaux', u'claim', u'yellow', u'jersey', u'tour', u'romandi']
[u'duval', u'keep', u'perspect', u'despit', u'struggl']
[u'eagl', u'banish', u'demon', u'hawthorn', u'say', u'goodby', u'blue']
[u'england', u'puzzl', u'world', u'championship']
[u'penguin', u'boss', u'save', u'vener', u'publish']
[u'team', u'persuad', u'traction', u'control']
[u'fail', u'iranian', u'asylum', u'seeker', u'march', u'order']
[u'farmer', u'battl', u'plagu', u'armi', u'worm']
[u'father', u'exoner', u'polic', u'teen', u'chase', u'death']
[u'father', u'teenag', u'kill', u'high', u'speed', u'chase']
[u'ferguson', u'nistelrooy', u'month', u'award']
[u'day', u'play', u'second', u'sris', u'kiwi', u'test', u'call']
[u'arrest', u'aviv', u'attack']
[u'flawless', u'ferrero', u'valencia', u'semi']
[u'flower', u'enthusiast', u'disappoint', u'crowd', u'number']
[u'foreign', u'worker', u'hostag', u'free', u'nigeria']
[u'treat', u'truck', u'collis']
[u'freeman', u'mexican', u'challeng']
[u'govt', u'support', u'governor', u'general', u'slip']
[u'govt', u'provid', u'support']
[u'gunner', u'pledg', u'fight', u'death']
[u'haa', u'doubt', u'hamburg', u'comeback', u'plan', u'unclear']
[u'hawk', u'blue', u'swan', u'port', u'eagl']
[u'health', u'fund', u'plan', u'lack', u'doctor', u'input', u'minist']
[u'helmet', u'mandatori', u'cycl', u'profession']
[u'henri', u'win', u'second', u'player', u'year', u'award']
[u'home', u'brand', u'paracetamol', u'pull', u'woolworth']
[u'hop', u'fade', u'student', u'trap', u'rubbl']
[u'howard', u'deni', u'tri', u'protect', u'governor', u'general']
[u'howard', u'enjoy', u'bush', u'hospit']
[u'indigen', u'communiti', u'suscept', u'heart']
[u'inter', u'vieira', u'valencia', u'fin', u'uefa']
[u'investig', u'probe', u'african', u'crash']
[u'iraqi', u'uncov', u'gulf', u'mass', u'grave']
[u'iraq', u'stabilis', u'forc', u'deploy', u'month']
[u'irish', u'elect', u'postpon', u'boost', u'unionist', u'ahern']
[u'isra', u'armi', u'regret', u'kill', u'journalist']
[u'jaguar', u'pizzonia', u'hope']
[u'japanes', u'premier', u'european', u'tour']
[u'kenya', u'propos', u'tough', u'anti', u'terror']
[u'killer', u'flood', u'worst', u'centuri']
[u'koubek', u'spoil', u'schuettler', u'homecom']
[u'charg', u'southsid', u'stab']
[u'market', u'close', u'trade', u'oversea']
[u'medic', u'confer', u'number', u'affect', u'sar']
[u'medic', u'bioterror', u'respons', u'professor']
[u'monti', u'stalk', u'omalley', u'itali']
[u'say', u'govt', u'touch', u'aust', u'health']
[u'murder', u'victim', u'dump', u'park']
[u'ferrari', u'perform', u'qualifi']
[u'ferrari', u'qualifi']
[u'law', u'threaten', u'canada', u'trade']
[u'nigerian', u'radio', u'station', u'fals', u'sar']
[u'nigerian', u'return', u'poll']
[u'marriag', u'catch', u'aid', u'grant']
[u'ogilvi', u'trail', u'verplank', u'orlean']
[u'ministri', u'post', u'split', u'iraqi']
[u'dead', u'injur', u'wilcannia', u'truck', u'accid']
[u'pakistani', u'polic', u'alert', u'threat']
[u'pakistan', u'inform', u'visit', u'india']
[u'recal', u'widen', u'prescript', u'drug']
[u'scandal', u'extend', u'prescript', u'drug']
[u'parker', u'miss', u'tiger', u'clash']
[u'landslid', u'toll', u'rise']
[u'polic', u'appeal', u'wit', u'tripl', u'fatal']
[u'polic', u'clash', u'protest', u'quak', u'respons']
[u'polic', u'probe', u'wed', u'parti', u'link', u'bash']
[u'portug', u'host', u'america']
[u'powel', u'press', u'lebanon', u'crush', u'hezbollah']
[u'powel', u'push', u'lebanon', u'road', u'support']
[u'qanta', u'attend', u'like', u'leav', u'hospit', u'today']
[u'qanta', u'crew', u'member', u'undergo', u'sar', u'test']
[u'qanta', u'flight', u'attend', u'await', u'sar', u'test', u'result']
[u'qanta', u'flight', u'attend', u'suspect', u'sar']
[u'research', u'develop', u'drought', u'econom', u'model']
[u'rock', u'climber', u'cut', u'save']
[u'roo', u'deni', u'carey', u'affect', u'caus']
[u'sar', u'death', u'toll', u'climb', u'virus', u'mutat']
[u'second', u'ceas', u'pact', u'shore', u'ivori', u'coast', u'peac']
[u'shania', u'twain', u'land', u'deal', u'worri', u'zealand', u'hiker']
[u'skaif', u'go', u'shootout']
[u'soccer', u'aust', u'delay', u'board', u'decis']
[u'soccer', u'aust', u'determin', u'futur']
[u'storm', u'leav', u'knight', u'thunderstruck', u'panther']
[u'struggl', u'pizzonia', u'keep', u'spirit']
[u'premier', u'call', u'resign']
[u'tassi', u'welfar', u'call', u'nation', u'strategi']
[u'teenag', u'girl', u'die', u'crash', u'polic', u'pursuit']
[u'kill', u'injur', u'vietnam', u'blast']
[u'deni', u'folic', u'acid', u'pill', u'unsaf']
[u'say', u'folic', u'acid', u'pill', u'market', u'safe']
[u'tiger', u'return', u'rejuven', u'germani']
[u'travel', u'ask', u'help', u'sar', u'safe']
[u'true', u'glow', u'shin', u'queensland', u'guinea']
[u'turkey', u'quak', u'toll', u'reach']
[u'kill', u'injur', u'landslid']
[u'want', u'iraqi', u'custodi']
[u'arrest', u'aviv', u'bomb']
[u'ulihrach', u'cop', u'year', u'dope']
[u'unbeaten', u'freita', u'risk', u'crown', u'barrio']
[u'venus', u'stag', u'stun', u'fightback']
[u'verplank', u'take', u'clubhous', u'lead']
[u'waugh', u'make', u'histori', u'aussi', u'riot']
[u'waugh', u'impress', u'centuri', u'barbado']
[u'waugh', u'slam', u'pitch', u'record', u'break', u'knock']
[u'wheat', u'virus', u'pose', u'danger', u'crop', u'agforc']
[u'younger', u'mear', u'win', u'gold']
[u'aussi', u'quarantin', u'sar', u'hysteria']
[u'billion', u'worth', u'trade', u'tabl']
[u'ralli', u'nepal', u'king']
[u'aussi', u'quarantin', u'india', u'report']
[u'aborigin', u'look', u'discourag', u'uluru', u'climber']
[u'accid', u'victim', u'die', u'catch']
[u'leadership', u'stay', u'crean', u'beazley']
[u'review', u'health', u'rebat', u'bulk', u'bill', u'boost']
[u'member', u'saddam', u'circl', u'captur']
[u'anti', u'bush', u'play', u'withdraw', u'director', u'attack']
[u'argentin', u'flood', u'death', u'toll', u'continu', u'rise']
[u'dead', u'landslid']
[u'windi', u'test']
[u'aussi', u'sar', u'watch', u'indian', u'hospit']
[u'aussi', u'travel', u'releas', u'sar', u'quarantin']
[u'aust', u'command', u'forc', u'follow']
[u'australia', u'stage', u'reloc', u'women', u'world']
[u'aust', u'stockpil', u'smallpox', u'vaccin']
[u'ballestero', u'disqualifi', u'gonzalez', u'take', u'italian']
[u'beatti', u'back', u'recoup', u'cost', u'ryan']
[u'beij', u'school', u'remain', u'close']
[u'bennett', u'tip', u'hegarti', u'sing']
[u'best', u'swap', u'booz', u'gambl', u'report']
[u'blood', u'run', u'time', u'napl', u'miracl']
[u'brave', u'investor', u'head', u'afghanistan']
[u'break', u'mean', u'curtain', u'latham']
[u'bronco', u'squash', u'terribl', u'tiger', u'dragon', u'beat', u'shark']
[u'build', u'collaps', u'cairo', u'buri', u'resid']
[u'bush', u'offer', u'help', u'quak', u'death', u'toll', u'rise']
[u'mobil', u'phone', u'commerc', u'industri']
[u'call', u'resign', u'grow']
[u'celtic', u'ranger', u'nerv', u'test']
[u'charlton', u'ruud', u'awaken', u'hammer', u'hang']
[u'chemic', u'tanker', u'dock', u'crew', u'fall']
[u'china', u'report', u'sar', u'case', u'death']
[u'claim', u'aust', u'health', u'unprepar', u'terrorist']
[u'consum', u'warn', u'home', u'brand', u'painkil']
[u'costello', u'krall']
[u'costello', u'rule', u'cut', u'ahead', u'budget']
[u'costello', u'say', u'leadership', u'riddl', u'reveal']
[u'crew', u'retriev', u'cours', u'capsul']
[u'cycl', u'tour', u'boost', u'local', u'economi']
[u'daughter', u'defend', u'governor', u'general']
[u'hoya', u'issu', u'warn', u'mosley']
[u'democrat', u'push', u'resign']
[u'democrat', u'push', u'veteran', u'need', u'ahead', u'budget']
[u'announc', u'iraq', u'stabilis', u'forc']
[u'evergreen', u'agassi', u'aim', u'conquer', u'rome']
[u'exet', u'releg', u'footbal', u'leagu']
[u'fashion', u'week', u'kick', u'sydney']
[u'fear', u'nuclear', u'test', u'caus', u'genet']
[u'feder', u'face', u'fli', u'finn', u'munich', u'final']
[u'fergi', u'hail', u'dutch', u'maestro']
[u'ferrero', u'rochus', u'provid', u'appetis', u'final']
[u'fifa', u'agre', u'principl', u'team', u'world']
[u'ford', u'skaif', u'slip']
[u'iraqi', u'deputi', u'loos', u'truth', u'bush']
[u'free', u'medic', u'clinic', u'open', u'basra']
[u'funni', u'cide', u'win', u'kentucki', u'derbi']
[u'gayl', u'glad']
[u'germani', u'foil', u'nuke', u'deton', u'export', u'iran', u'report']
[u'girl', u'surviv', u'hour', u'ordeal', u'rubbl']
[u'glori', u'thrash', u'power']
[u'green', u'block', u'propos']
[u'guevera', u'upstag', u'freeman', u'world', u'record']
[u'hard', u'ceasefir', u'crumbl', u'ivori', u'coast']
[u'health', u'minist', u'warn', u'medicar', u'lie']
[u'howard', u'bush', u'discuss', u'billion', u'free', u'trade']
[u'howard', u'bush', u'talk', u'wrap', u'texa']
[u'howard', u'worthi', u'gallon', u'bush']
[u'tough', u'world', u'boycott']
[u'india', u'lift', u'sar', u'quarantin', u'aust', u'travel']
[u'india', u'quarantin', u'sar', u'hysteria', u'aust']
[u'iraqi', u'stage', u'rare', u'ralli']
[u'iraq', u'stabilis', u'plan', u'wont', u'divid', u'greec']
[u'israel', u'halt', u'dismantl', u'rogu', u'outpost']
[u'crew', u'touchdown']
[u'juve', u'edg', u'closer', u'titl', u'draw', u'lazio']
[u'juve', u'wari', u'celebr', u'soon']
[u'kerri', u'mear', u'claim', u'nation', u'sprint', u'titl']
[u'kestrel', u'roll', u'sandpip']
[u'labor', u'target', u'predatori', u'busi']
[u'lara', u'sarwan', u'stand', u'aust', u'victori']
[u'lebanon', u'arrest', u'alleg', u'fast', u'food', u'bomb']
[u'lion', u'roar', u'louder', u'cat', u'saint', u'sink', u'bulldog']
[u'lyon', u'regain', u'summit']
[u'rob', u'fiji', u'hotel', u'room']
[u'maralinga', u'student', u'welcom', u'school']
[u'mclaren', u'offer', u'wurz', u'jaguar']
[u'montgomeri', u'stun', u'duel']
[u'natasha', u'ryan', u'await', u'polic', u'decis']
[u'natur', u'rock', u'format', u'affect', u'bushfir']
[u'nauruan', u'sport', u'hero', u'elect', u'parliament']
[u'nauru', u'incumb', u'return', u'presidenti', u'elect']
[u'nigeria', u'strike', u'hostag', u'head', u'shore']
[u'govt', u'defend', u'state', u'school', u'safeti']
[u'older', u'mear', u'claim', u'nation', u'sprint', u'titl']
[u'toppl', u'mountain']
[u'pakistan', u'reciproc', u'india', u'diplomat', u'gestur']
[u'perez', u'sanchez', u'take', u'lead', u'tour', u'romandi']
[u'welcom', u'east', u'road']
[u'polic', u'await', u'autopsi', u'suspici', u'death']
[u'pope', u'arriv', u'spain', u'creat', u'saint']
[u'pope', u'urg', u'spanish', u'youth', u'nurtur', u'peac']
[u'powel', u'rule', u'attack', u'syria']
[u'presid', u'send', u'condol', u'submarin']
[u'pressur', u'mount', u'hollingworth', u'resign']
[u'protea', u'pois', u'rout']
[u'psychologist', u'standbi', u'counsel', u'return', u'troop']
[u'real', u'thrash', u'mallorca']
[u'cross', u'renew', u'access', u'iraq', u'pow']
[u'refuge', u'influx', u'exacerb', u'uganda', u'cholera', u'outbreak']
[u'report', u'face', u'jail', u'undercov', u'sar', u'coverag']
[u'rescu', u'oper', u'quak', u'toll', u'hit']
[u'rescu', u'team', u'locat', u'crew']
[u'ruud', u'awaken', u'charlton', u'canio', u'give', u'hammer']
[u'sar', u'impact', u'aquacultur', u'industri']
[u'sar', u'virus', u'lifespan', u'detect']
[u'schu', u'put', u'ferrari', u'pole']
[u'worker', u'cash', u'fuel', u'starv', u'motorist']
[u'shark', u'dampen', u'spirit']
[u'slow', u'steadi', u'windi', u'batsmen']
[u'slushi', u'outfield', u'delay', u'start', u'second', u'sris', u'test']
[u'south', u'africa', u'eas', u'dhaka', u'seri']
[u'space', u'junk', u'light']
[u'space', u'station', u'trio', u'land', u'safe', u'kazakh', u'desert']
[u'stuttgart', u'near', u'champion', u'leagu', u'away']
[u'surf', u'life', u'save', u'south', u'australia', u'face', u'closur']
[u'swiss', u'german', u'post', u'hockey', u'win', u'finland', u'romp']
[u'taliban', u'leader', u'vow', u'continu', u'anti', u'jihad']
[u'tamil', u'leader', u'seek', u'gun', u'self', u'defenc']
[u'teenag', u'kill', u'singl', u'vehicl', u'accid']
[u'dismiss', u'folat', u'cover', u'claim']
[u'process', u'review']
[u'kill', u'japanes']
[u'player', u'blow', u'didgeridoo', u'festiv']
[u'envoy', u'brief', u'israel', u'powel', u'syria', u'talk']
[u'forum', u'develop', u'action', u'plan', u'spam', u'control']
[u'pip', u'aust', u'women', u'world', u'host', u'offici']
[u'venus', u'angri', u'gentl', u'touch']
[u'venus', u'battl', u'doubter']
[u'verplank', u'maintain', u'shoot', u'lead', u'orlean']
[u'restaur', u'close', u'door', u'potenti', u'sar']
[u'windi', u'struggl', u'avoid', u'follow']
[u'younger', u'struggl', u'kick', u'junk', u'food', u'habit']
[u'zvonareva', u'martinez', u'granado', u'gun']
[u'turn', u'brisban', u'labour', u'march']
[u'year', u'round', u'trip', u'bring', u'rock', u'sampl']
[u'aborigin', u'remain', u'return', u'coorong', u'tribe']
[u'accus', u'snowtown', u'killer', u'court', u'outburst']
[u'investig', u'mele']
[u'investig', u'mele']
[u'african', u'leader', u'meet', u'zimbabw', u'crisi']
[u'algeria', u'contact', u'kidnapp', u'tourist']
[u'alonso', u'give', u'spanish', u'fan', u'celebr']
[u'share', u'lose']
[u'anderson', u'deflect', u'blame', u'shark', u'winless']
[u'anderson', u'support', u'properti', u'right', u'pledg']
[u'anglican', u'head', u'concern', u'church', u'reput']
[u'earthquak', u'rock', u'north', u'west', u'china']
[u'archer', u'escap', u'mele', u'investig', u'continu']
[u'asic', u'want', u'guilti', u'elliott', u'ban']
[u'aviat', u'inquiri', u'fli', u'riverina']
[u'barrett', u'clear', u'break', u'ankl']
[u'bayer', u'leverkusen', u'claw', u'safeti']
[u'beatti', u'support', u'natasha', u'ryan', u'charg']
[u'beazley', u'push', u'terror', u'ministri']
[u'beij', u'close', u'access', u'reservoir']
[u'wave', u'creat', u'harbour', u'entri', u'danger']
[u'billion', u'eras', u'valu']
[u'black', u'face', u'test', u'examin', u'extent', u'facial']
[u'bomber', u'struggl', u'lift', u'tiger', u'clash']
[u'brawl', u'leav', u'tribun', u'work']
[u'brighton', u'releg', u'stoke', u'surviv', u'drop']
[u'british', u'claim', u'place', u'trolley', u'skill']
[u'bronco', u'boss', u'say', u'problem']
[u'bronz', u'aussi', u'longer']
[u'budget', u'crucial', u'time', u'crean', u'beazley']
[u'build', u'figur', u'reveal', u'prefer', u'unit']
[u'bundaberg', u'develop', u'plan', u'stall']
[u'state', u'consid']
[u'maroney', u'tell', u'driver']
[u'call', u'extra', u'disabl', u'fund', u'budget']
[u'cannabi', u'ralli', u'go']
[u'carr', u'deni', u'push', u'puplick']
[u'cash', u'strap', u'solomon', u'struggl', u'afford']
[u'champion', u'angler', u'bag', u'barra']
[u'china', u'report', u'sar', u'death']
[u'chines', u'submarin', u'suffoc', u'report']
[u'claim', u'hollingworth', u'damag', u'offic']
[u'claim', u'wine', u'profit', u'slump', u'disast']
[u'concern', u'air', u'bequeath', u'hous']
[u'concern', u'air', u'wander', u'cattl']
[u'condobolin', u'die', u'crash']
[u'mistak', u'stripper', u'fondl', u'hen', u'parti']
[u'copi', u'barrett', u'clear', u'break', u'ankl']
[u'coron', u'hear', u'evid', u'shoot', u'death']
[u'council', u'join', u'nation', u'aviat', u'probe']
[u'defenc', u'chief', u'attend', u'dawn', u'servic']
[u'depor', u'close', u'real']
[u'doctor', u'sue', u'tell', u'result']
[u'dragon', u'prove', u'good', u'shark']
[u'draw', u'put', u'ranger', u'titl', u'hop', u'jeopardi']
[u'drysdal', u'paint', u'sell', u'million']
[u'earthquak', u'rattl', u'china', u'dead']
[u'east', u'asian', u'state', u'fail', u'children']
[u'elect', u'count', u'nauru', u'enter', u'final', u'stage']
[u'elura', u'plan', u'promis', u'profit']
[u'escarp', u'group', u'defend', u'delay', u'manag', u'plan']
[u'factori', u'caus', u'damag']
[u'famili', u'influenc', u'import', u'stop', u'obes']
[u'feder', u'triumph', u'munich']
[u'ferrero', u'win', u'valencia', u'open']
[u'feyenoord', u'heat', u'ajax']
[u'firman', u'repay', u'jordan', u'faith', u'point', u'spain']
[u'flesch', u'make', u'breakthrough', u'orlean']
[u'taliban', u'leader', u'issu', u'holi', u'warn']
[u'bait', u'help', u'bilbi', u'popul']
[u'freeman', u'play', u'catch', u'event']
[u'freo', u'bomber', u'relief']
[u'talk', u'futur', u'costello']
[u'good', u'result', u'albani', u'elect']
[u'gough', u'beazley', u'labor', u'leader']
[u'govt', u'concern', u'attack', u'transit', u'offic']
[u'govt', u'give', u'asthma', u'program', u'school']
[u'govt', u'senat', u'say', u'touch']
[u'govt', u'stay', u'nigger', u'brown', u'controversi']
[u'gronberg', u'surg', u'italian', u'open', u'victori']
[u'group', u'promis', u'fight', u'stop', u'develop', u'plan']
[u'hamilton', u'take', u'tour', u'romandi']
[u'health', u'minist', u'meet', u'midwiv']
[u'health', u'unit', u'face', u'sar', u'challeng']
[u'hollingworth', u'refus', u'step']
[u'home', u'hostag', u'plead', u'guilti']
[u'hospit', u'fund', u'paediatr', u'ward']
[u'howard', u'visit', u'troop', u'qatar']
[u'hundr', u'march', u'labour']
[u'industri', u'accid', u'trap']
[u'ingram', u'urg', u'bush', u'burn']
[u'injur', u'venus', u'conced', u'defeat']
[u'iraqi', u'mass', u'grave']
[u'isra', u'palestinian', u'meet']
[u'leader', u'charg', u'bali', u'bomb']
[u'advertis', u'slump']
[u'provid', u'busi']
[u'johnson', u'target', u'montgomeri']
[u'killer', u'tornado', u'pummel', u'midwest']
[u'lack', u'fund', u'crippl', u'canberra', u'school']
[u'volunt', u'lifesav', u'season']
[u'legal', u'breakthrough', u'gulf', u'syndrom']
[u'legal', u'breakthrough', u'gulf', u'syndrom']
[u'letter', u'confirm', u'specialist', u'return', u'work']
[u'lion', u'better', u'scott']
[u'local', u'govt', u'group', u'happi', u'voter', u'turnout']
[u'lord', u'mayor', u'call', u'resign']
[u'macgil', u'say', u'patienc', u'victori']
[u'magpi', u'fluster', u'form', u'slump']
[u'manag', u'flop', u'america', u'disast']
[u'die', u'truck', u'crash']
[u'plead', u'guilti', u'child', u'porn', u'charg']
[u'face', u'court', u'stab']
[u'titl', u'arsenal', u'lose', u'leed']
[u'mauresmo', u'beat', u'injur', u'venus', u'warsaw']
[u'maverick', u'piston', u'advanc', u'quarter']
[u'mayor', u'defend', u'councillor', u'conting']
[u'mayor', u'push', u'rail', u'link', u'solut']
[u'mcewen', u'tip', u'cabinet', u'promot']
[u'merredin', u'shire', u'presid', u'lose', u'council', u'spot']
[u'mexican', u'confess', u'lure', u'women', u'death']
[u'mobil', u'poll', u'prove', u'posit']
[u'underway', u'turkish', u'quak']
[u'product', u'add', u'ban', u'list']
[u'motorcyclist', u'slide', u'truck', u'sydney']
[u'say', u'seat']
[u'urg', u'farm', u'group', u'maintain', u'voic']
[u'museum', u'unit', u'tackl', u'crime', u'centuri']
[u'mutant', u'trounc', u'offic', u'competitor']
[u'nauru', u'parliament', u'elect', u'presid']
[u'navi', u'abandon', u'inquest', u'hear']
[u'averag']
[u'mayor', u'kalgoorli', u'boulder']
[u'news', u'gain', u'offset', u'loss']
[u'shire', u'presid', u'broom']
[u'need', u'bush', u'hick', u'habib']
[u'north', u'gear', u'labour']
[u'request', u'hick', u'hill']
[u'inquiri', u'focus', u'home', u'warranti', u'insur']
[u'america', u'campaign', u'crippl', u'begin']
[u'opposit', u'disput', u'budget', u'surplus', u'forecast']
[u'orica', u'post', u'million', u'half', u'year', u'loss']
[u'orica', u'price', u'ralli', u'despit', u'loss']
[u'pair', u'face', u'court', u'bash', u'death']
[u'palestinian', u'shoot', u'cameraman', u'isra']
[u'parkland', u'project', u'finish', u'decemb']
[u'perth', u'student', u'check', u'sar']
[u'take', u'vote', u'confid', u'livestock']
[u'pizzonia', u'stay', u'jaguar']
[u'plan', u'track', u'horsham', u'cabinet', u'visit']
[u'meet', u'chief']
[u'polic', u'appeal', u'help', u'pizza', u'driver', u'theft']
[u'polic', u'investig', u'fatal', u'border', u'crash']
[u'polic', u'investig', u'perth']
[u'polic', u'seiz', u'properti', u'drug', u'raid']
[u'polic', u'road', u'pursuit']
[u'polocross', u'group', u'meet', u'warwick']
[u'poor', u'indigen', u'hous', u'surpris', u'atsic']
[u'primus', u'port', u'crow', u'lose', u'smart']
[u'public', u'get', u'lake', u'boga', u'warn']
[u'coalit', u'promis', u'beef', u'scholarship']
[u'prepar', u'strike']
[u'raider', u'sign', u'tongu']
[u'rain', u'stop', u'final', u'race', u'meet']
[u'red', u'lose', u'latham', u'tune']
[u'renew', u'optim', u'grain', u'grower']
[u'report', u'french', u'divis', u'match']
[u'report', u'german', u'match']
[u'research', u'consortium', u'develop', u'sar', u'test']
[u'richard', u'enter', u'record', u'book']
[u'right', u'case', u'nation', u'implic']
[u'tinto', u'plan', u'close', u'diamond']
[u'riot', u'erupt', u'china', u'locat', u'sar', u'centr']
[u'river', u'irrig', u'continu', u'pump']
[u'rush', u'drought', u'applic']
[u'cyclist', u'die', u'collis', u'truck']
[u'safeti', u'probe', u'launch', u'boat', u'mishap']
[u'sar', u'blame', u'drop', u'tourism']
[u'sar', u'blame', u'fall', u'advertis', u'tourism', u'job']
[u'sar', u'forc', u'suspend', u'fish']
[u'sar', u'impact', u'abalon', u'industri']
[u'sar', u'quarantin', u'reaction']
[u'schumach', u'guid', u'ferrari', u'spain']
[u'search', u'continu', u'scramjet', u'engin']
[u'swap', u'navi', u'scheme', u'unlik', u'includ', u'region']
[u'second', u'king', u'bros', u'creditor', u'meet', u'hold']
[u'slump', u'tourism', u'industri', u'predict']
[u'snail', u'hunt', u'end', u'drown', u'tragedi']
[u'snapper', u'farm', u'unabl', u'sourc', u'fingerl']
[u'soccer', u'australia', u'face', u'hurdl', u'host', u'women']
[u'special', u'forc', u'command']
[u'speech', u'pathologist', u'improv', u'servic']
[u'spur', u'duncan', u'name']
[u'stockhors', u'championship', u'begin', u'darl', u'down']
[u'storm', u'thrash', u'injur', u'knight']
[u'strike', u'moot', u'amidst', u'labour', u'backdrop']
[u'support', u'manjimup', u'chang']
[u'suspect', u'sar', u'patient', u'remain', u'darwin', u'hospit']
[u'swimmer', u'offici', u'share', u'idea', u'nation']
[u'swimmer', u'urg', u'care', u'rough', u'condit']
[u'teacher', u'auction', u'warn', u'vocal', u'problem']
[u'theophan', u'appeal', u'begin', u'melbourn']
[u'theophan', u'appeal', u'sentenc']
[u'spanish', u'grand', u'prix', u'team', u'team']
[u'thousand', u'gather', u'brisban', u'labour', u'march']
[u'tiger', u'employ', u'nicknam', u'tactic']
[u'surgeon', u'converg', u'brisban']
[u'traci', u'happi', u'pole', u'london', u'cart', u'race']
[u'tropic', u'storm', u'kill', u'bangladesh']
[u'check', u'report', u'soldier', u'shoot', u'iraqi']
[u'union', u'call', u'adelaid', u'strike']
[u'union', u'hold', u'sugar', u'industri', u'talk', u'mackay']
[u'unsur', u'fall', u'student', u'number']
[u'upset', u'legisl', u'council', u'ballot']
[u'iraq', u'administr', u'visit', u'basra']
[u'releas', u'iraqi', u'pow']
[u'soldier', u'shoot', u'baghdad']
[u'veteran', u'launch', u'polit', u'parti']
[u'budget', u'boost', u'educ', u'tourism']
[u'govt', u'deni', u'conflict', u'wind', u'farm']
[u'video', u'refere', u'sack', u'round']
[u'violent', u'lyric', u'link', u'aggress', u'thought']
[u'commiss', u'hear', u'alleg', u'polic', u'assault']
[u'warship', u'promis', u'econom', u'boost']
[u'waterhous', u'battl', u'bookmak', u'licenc']
[u'webber', u'delight', u'point', u'jaguar']
[u'webb', u'second', u'lpga', u'event']
[u'work', u'begin', u'salt', u'intercept', u'scheme']
[u'zvonareva', u'claim', u'croatia', u'open']
[u'refus', u'anthrax', u'inject', u'govt']
[u'abbott', u'back']
[u'defend', u'popul', u'figur']
[u'pay', u'inform', u'person', u'bill', u'probe', u'tell']
[u'budget', u'deficit', u'treasur']
[u'activist', u'deni', u'accus', u'terrorist']
[u'scientist', u'work', u'contain', u'wheat', u'virus']
[u'adelaid', u'magistr', u'attend', u'bali', u'bomb', u'trial']
[u'adelaid', u'rugbi', u'world', u'ticket', u'snap']
[u'adelaid', u'world', u'ticket', u'snap']
[u'charg', u'mele']
[u'issu', u'record', u'fin']
[u'issu', u'record', u'fin', u'hargrav', u'suspend']
[u'african', u'leader', u'finish', u'meet', u'mugab']
[u'agassi', u'relinquish', u'spot']
[u'agreement', u'reach', u'icon', u'redund', u'payment']
[u'pacino', u'vote', u'greatest', u'film', u'star', u'poll']
[u'anim', u'vet', u'memori']
[u'architect', u'welcom', u'home', u'insur', u'inquiri']
[u'asic', u'probe', u'futur', u'trade']
[u'aussi', u'dollar', u'hit', u'year', u'high']
[u'bailey', u'doubt', u'origin']
[u'better', u'late', u'athen', u'olymp']
[u'bishop', u'urg', u'consid', u'resign']
[u'blowtorch', u'anim', u'cruelti', u'outrag', u'rspca']
[u'boat', u'harbour', u'lift', u'develop']
[u'broom', u'shire', u'follow', u'stinger', u'lead']
[u'budget', u'includ', u'warragul', u'polic', u'station', u'fund']
[u'bushfir', u'put', u'budget']
[u'busi', u'group', u'blast', u'live', u'wage', u'rise']
[u'fund', u'redirect', u'dairi', u'farmer']
[u'tourist', u'beach', u'safeti', u'educ']
[u'budget', u'address', u'region', u'economi']
[u'crash', u'leav', u'hospit']
[u'central', u'defi', u'downward', u'build', u'trend']
[u'chang', u'coast', u'tourism', u'promot']
[u'civoniceva', u'look', u'form', u'revers']
[u'claim', u'rescu', u'packag', u'wont', u'help', u'hors', u'race']
[u'coast', u'prioriti', u'light', u'camera']
[u'game', u'give', u'woomera']
[u'concern', u'safeti', u'iraqi', u'nuclear', u'materi']
[u'concern', u'air', u'marin', u'park', u'mine']
[u'concern', u'steal', u'gun', u'hold']
[u'contact', u'rule', u'microscop']
[u'cooma', u'remand', u'doubl', u'murder', u'charg']
[u'copi', u'hargrav', u'hand', u'match']
[u'council', u'delay', u'walkway', u'work']
[u'council', u'urg', u'help', u'stop', u'youth', u'dice', u'car']
[u'council', u'urg', u'rethink', u'chemic', u'drum']
[u'council', u'water', u'suppli', u'decis', u'pipelin']
[u'court', u'hear', u'hanson', u'spend', u'habit']
[u'court', u'reject', u'bunburi', u'killer', u'appeal']
[u'crean', u'talk', u'medicar', u'newcastl', u'visit']
[u'crean', u'unfaz', u'fall']
[u'crime', u'darwin', u'suburb', u'wors', u'detroit', u'resid']
[u'dementieva', u'sugiyama', u'beat', u'berlin']
[u'denni', u'tip', u'return', u'form', u'mclaren']
[u'detect', u'testifi', u'hanson']
[u'disney', u'seek', u'revers', u'winni', u'pooh', u'rule']
[u'eel', u'ring', u'chang']
[u'egypt', u'tell', u'palestinian', u'israel']
[u'engin', u'cours', u'need', u'industri', u'govt', u'support']
[u'expert', u'search', u'grave', u'legendari', u'gilgamesh']
[u'extra', u'fund', u'come', u'cost', u'academ']
[u'fear', u'tax', u'hurt', u'port', u'lincoln', u'travel']
[u'feder', u'govt', u'odd', u'wast', u'dump']
[u'firm', u'await', u'news', u'iraq', u'contract']
[u'fishermen', u'escap', u'kingfish', u'declin']
[u'fong', u'loss', u'surpris', u'shire', u'presid']
[u'apartheid', u'fighter', u'sisulu', u'die']
[u'fund', u'shortfal', u'end', u'post', u'natal', u'depress', u'servic']
[u'geraldton', u'mayor', u'welcom', u'hospit', u'fund']
[u'dump', u'confer', u'agenda']
[u'gold', u'price', u'start', u'recov', u'impact']
[u'govt', u'pressur']
[u'govt', u'pressur', u'decis']
[u'grant', u'council', u'state', u'prefer', u'age', u'care', u'centr']
[u'green', u'light', u'toowoomba', u'light', u'camera']
[u'group', u'say', u'evid', u'fuel', u'price', u'fix']
[u'hanson', u'fraud', u'hear', u'underway']
[u'hargrav', u'hand', u'match']
[u'hickss', u'father', u'accus', u'militari', u'play', u'mind']
[u'high', u'price', u'expect', u'livestock', u'drought']
[u'high', u'voter', u'turnout', u'ravensthorp']
[u'hill', u'defend', u'river', u'murray', u'legisl', u'committe']
[u'howe', u'long', u'season']
[u'human', u'skull', u'beach']
[u'india', u'sceptic', u'pakistan', u'nuclearis', u'offer']
[u'inherit', u'set', u'live']
[u'inland', u'railway', u'threat']
[u'inquest', u'hear', u'shoot', u'death', u'evid']
[u'investig', u'begin', u'miner', u'death']
[u'iraqi', u'vote', u'member', u'council']
[u'jackson', u'flag', u'video', u'report', u'review']
[u'japan', u'media', u'eas', u'protect', u'bill']
[u'japan', u'mask', u'politician', u'arriv', u'work']
[u'japan', u'takagi', u'set', u'indi', u'practic', u'pace']
[u'johnson', u'break', u'second', u'barrier']
[u'johnson', u'race', u'montgomeri']
[u'judg', u'sum', u'fraser', u'tripl', u'murder', u'trial']
[u'king', u'island', u'better', u'victoria']
[u'ring', u'premier', u'doubt']
[u'lewi', u'meet', u'klitschko', u'year']
[u'lighthous', u'plan', u'protest', u'leav']
[u'lion', u'lose', u'brown']
[u'local', u'iraqi', u'popul', u'reliev', u'hear']
[u'pay', u'worker', u'wage', u'rise']
[u'magistr', u'like', u'indigen', u'replac']
[u'maitland', u'mayor', u'case', u'go', u'court']
[u'maitland', u'mayor', u'underag', u'charg', u'dismiss']
[u'mandela', u'lead', u'mourn', u'sisulu']
[u'court', u'drug', u'charg']
[u'court', u'doubl', u'murder']
[u'market', u'drag', u'weight', u'news', u'corp']
[u'maroon', u'rooki']
[u'mayor', u'reject', u'marina', u'claim']
[u'valu', u'son', u'studi']
[u'meteor', u'tonight', u'melbourn', u'night', u'owl']
[u'minist', u'air', u'region', u'hous', u'concern']
[u'minist', u'stand', u'illawarra', u'escarp', u'comment']
[u'effort', u'need', u'conserv', u'avon', u'region']
[u'mother', u'break', u'snowtown', u'trial']
[u'unifi', u'water', u'restrict', u'code']
[u'welcom', u'home', u'warranti', u'insur', u'probe']
[u'muralitharan', u'plan', u'play']
[u'navi', u'confirm', u'fuel', u'leak', u'success']
[u'net', u'open', u'seri']
[u'cage', u'secur', u'salmon']
[u'newcastl', u'develop', u'firm', u'share', u'nsaf', u'money']
[u'plan', u'mundubbera']
[u'korea', u'deni', u'link', u'pong']
[u'regret', u'dob', u'natasha']
[u'lower', u'consent']
[u'boost', u'fund', u'senior', u'program']
[u'road', u'sign', u'multi', u'lingual']
[u'urg', u'rethink', u'mandatori', u'sentenc']
[u'olymp', u'reject', u'blame', u'cyclist', u'turn']
[u'pair', u'face', u'court', u'drug', u'charg']
[u'pakistan', u'hop', u'write', u'billion', u'debt']
[u'shut', u'onlin', u'game', u'busi']
[u'pension', u'reform', u'trigger', u'austria', u'strike']
[u'perilya', u'appeal', u'insur', u'slug']
[u'pilger', u'win', u'prize', u'uncov', u'lie']
[u'plan', u'capel', u'seat', u'elector']
[u'plan', u'afoot', u'border', u'polic', u'station']
[u'player', u'warn', u'world', u'organis', u'properti']
[u'play', u'decid', u'scottish', u'titl']
[u'polic', u'know', u'write', u'natasha', u'ryan', u'letter']
[u'polic', u'recruit', u'work', u'illawarra']
[u'polic', u'reveal', u'detail', u'bricklay', u'shoot']
[u'polic', u'specul', u'death', u'custodi', u'caus']
[u'powel', u'meet', u'sharon', u'mazen']
[u'probe', u'launch', u'ship', u'sink']
[u'public', u'submiss', u'canberra', u'water']
[u'qanta', u'strike', u'afffect', u'hobart', u'airport']
[u'govt', u'dairi', u'farmer', u'charg']
[u'name', u'cap', u'preliminari', u'origin', u'squad']
[u'premier', u'join', u'chorus']
[u'ditch', u'effort', u'latham']
[u'rebuild', u'keep', u'busi', u'busi']
[u'record', u'price', u'northern', u'malle', u'properti']
[u'red', u'hope', u'retain', u'latham']
[u'replica', u'whaleboat', u'wash', u'townsvill']
[u'research', u'monitor', u'kava', u'impact']
[u'resid', u'sceptic', u'secur', u'doctor']
[u'marsh', u'name', u'english', u'cricket', u'selector']
[u'roger', u'chanc', u'semi', u'final']
[u'rover', u'face', u'tough', u'fight', u'duff']
[u'erupt', u'park', u'plan', u'impact', u'timber']
[u'govt', u'exercis', u'power', u'wast', u'dump']
[u'govt', u'tri', u'resolv', u'licenc', u'woe']
[u'saint', u'dog', u'brawl', u'result', u'tribun', u'charg']
[u'sar', u'fear', u'spark', u'student', u'avoid', u'school']
[u'scheme', u'aim', u'boost', u'servic']
[u'rescu', u'strand', u'teacher']
[u'shale', u'product', u'meet', u'aust', u'need']
[u'shopper', u'loosen', u'purs', u'string', u'march']
[u'small', u'surplus', u'modest', u'growth', u'target', u'budget']
[u'smith', u'expect', u'lose', u'case', u'arnott']
[u'sothebi', u'auction', u'worth']
[u'spanish', u'fishermen', u'challeng', u'court', u'author']
[u'spur', u'sting', u'laker', u'game']
[u'spur', u'sting', u'laker', u'net', u'edg', u'celtic']
[u'georg', u'profit', u'jump']
[u'storm', u'bring', u'downpour', u'boulia']
[u'strike', u'mean', u'reduc', u'news', u'content']
[u'strong', u'hotel', u'sale']
[u'suicid', u'rate', u'doubl', u'post', u'bosnia']
[u'tassi', u'hous', u'afford']
[u'taxi', u'driver', u'threaten', u'action', u'sydney', u'airport']
[u'teacher', u'coach', u'swim', u'gold', u'coast']
[u'tougher', u'law', u'need', u'alcohol']
[u'tourism', u'attract', u'get', u'feder', u'fund', u'boost']
[u'townsvill', u'troop', u'timor', u'peacekeep']
[u'traci', u'win', u'streak', u'snap', u'london']
[u'turf', u'club', u'happi', u'carniv']
[u'turner', u'sell', u'half', u'stake', u'million', u'report']
[u'offer', u'drag', u'queen', u'makeov']
[u'union', u'busi', u'budget']
[u'say', u'student', u'quarantin']
[u'unreleas', u'potter', u'tale', u'field']
[u'urib', u'renew', u'swap', u'offer', u'botch', u'rescu']
[u'confirm', u'billion', u'go', u'miss', u'iraq']
[u'offici', u'meet', u'fifa', u'women']
[u'prepar', u'releas', u'guantanamo', u'prison']
[u'soldier', u'injur', u'cluster', u'bomb']
[u'tell', u'mazen', u'fight', u'terror']
[u'vegi', u'grower', u'discuss', u'moth', u'control']
[u'venus', u'rise', u'long']
[u'vettori', u'atapattu', u'surviv', u'field', u'collis']
[u'vicar', u'general', u'lament', u'debat']
[u'govt', u'consid', u'crop', u'moratorium']
[u'surplus']
[u'wait', u'list', u'prove', u'fatal', u'studi']
[u'push', u'fairer', u'elector']
[u'readi', u'major', u'health', u'emerg', u'surgeon']
[u'weari', u'birthday', u'blair']
[u'waugh', u'focus', u'caribbean', u'clean', u'sweep']
[u'waugh', u'record', u'take', u'aust']
[u'westpac', u'forc', u'accru', u'leav', u'sar', u'union']
[u'wheatbelt', u'win', u'farm', u'award']
[u'wheat', u'streak', u'virus']
[u'wheat', u'streak', u'virus', u'western']
[u'lift', u'hong', u'kong', u'warn', u'sar', u'remain']
[u'stay', u'beckham', u'saga', u'continu']
[u'stay', u'beckham', u'saga', u'go']
[u'william', u'send', u'home', u'west', u'indi']
[u'william', u'take', u'snooker', u'prize', u'thriller']
[u'wine', u'thief', u'sentenc', u'year', u'jail']
[u'woman', u'admit', u'error', u'mayor', u'hear']
[u'woman', u'dead', u'train']
[u'youth', u'worker', u'charg', u'sexual', u'assault']
[u'injur', u'raaf', u'hangar', u'collaps']
[u'abattoir', u'stock', u'number', u'remain', u'steadi']
[u'accc', u'court', u'battl', u'fals', u'advertis']
[u'aceh', u'violenc', u'flare', u'peac', u'talk', u'collaps']
[u'achill', u'problem', u'cast', u'doubt', u'england', u'campbel']
[u'advis', u'attend', u'bali', u'bomb', u'trial']
[u'jump', u'medicar', u'poll']
[u'appeal', u'medicar', u'rethink']
[u'qanta', u'fail', u'drag', u'aussi', u'market']
[u'share', u'record']
[u'analyst', u'expect', u'stay', u'rat']
[u'earli', u'tast', u'later', u'battl']
[u'archbishop', u'melbourn', u'say', u'think']
[u'arsenal', u'squad', u'strong', u'wenger']
[u'artist', u'busi', u'boost', u'advic', u'program']
[u'dead', u'indian', u'rebel', u'attack']
[u'australian', u'sentenc', u'lebanes', u'court']
[u'aust', u'relat', u'report']
[u'avellino', u'stand', u'expect', u'come', u'head']
[u'bailey', u'clear', u'injuri']
[u'bail', u'grant', u'teen', u'accus', u'stab']
[u'bakeri', u'job', u'slice', u'expect']
[u'beckham', u'pledg', u'futur']
[u'berlusconi', u'demand', u'suspens', u'graft', u'trial']
[u'bishop', u'understand', u'call', u'resign']
[u'blair', u'laud', u'howard', u'leadership']
[u'blaze', u'destroy', u'busi']
[u'charg', u'murder', u'home', u'invas']
[u'britain', u'ireland', u'push', u'ahead', u'peac']
[u'british', u'suspend', u'parti']
[u'break', u'hill', u'host', u'mine', u'confer']
[u'break', u'seal', u'caus', u'shuttl', u'disast']
[u'budget', u'offer', u'tourism', u'boost', u'ingram']
[u'budget', u'reveal', u'chang']
[u'burn', u'determin', u'exorcis', u'ghost']
[u'bush', u'budget', u'chief', u'leav', u'post', u'white', u'hous']
[u'boost', u'pension', u'rate', u'subsidi']
[u'catchment', u'board', u'decis', u'scrutini']
[u'chamber', u'commerc', u'concern', u'futur', u'rail']
[u'chef', u'offer', u'accredit', u'cater']
[u'cheney', u'confirm', u'bush', u'run', u'mate']
[u'cheney', u'sign', u'bush', u'run', u'mate']
[u'child', u'murder', u'trial', u'hear', u'accus', u'kind', u'care']
[u'claim', u'council', u'part', u'blame', u'region']
[u'clark', u'futur', u'ruddock']
[u'coalit', u'detain', u'region', u'baath', u'leader']
[u'confer', u'tell', u'govt', u'blame', u'heart', u'surgeri']
[u'cost', u'polic', u'music', u'festiv', u'review']
[u'council', u'confid', u'depart', u'store', u'viabl']
[u'council', u'reject', u'goonellabah', u'aquat', u'facil', u'plan']
[u'council', u'reject', u'revenu', u'rais', u'claim']
[u'council', u'shift', u'inlet', u'think']
[u'council', u'highlight', u'social', u'woe']
[u'council', u'refus', u'youth', u'fund', u'offer']
[u'council', u'urg', u'retain', u'fund', u'theatr', u'work']
[u'court', u'hear', u'nation', u'leader', u'misus']
[u'crean', u'ralli', u'support', u'medicar', u'fight']
[u'critic', u'money', u'budget']
[u'ticket', u'rush', u'bring', u'test', u'rugbi']
[u'defenc', u'chief', u'back', u'send', u'troop', u'home']
[u'democrat', u'call', u'govt', u'itemis', u'cost']
[u'democrat', u'criticis', u'conscienc', u'vote']
[u'dept', u'educ', u'consid', u'teacher', u'demand']
[u'detent', u'centr', u'offic', u'sack']
[u'diplomat', u'take', u'iraq', u'rebuild', u'role']
[u'doctor', u'group', u'pleas', u'insur', u'cover']
[u'dog', u'welcom', u'examin', u'umpir', u'contact']
[u'dollar', u'break', u'cent', u'barrier']
[u'duncan', u'oneal', u'bryant', u'star']
[u'unfaz', u'berlusconi', u'charg']
[u'educ', u'overhaul', u'cost', u'student', u'oppn']
[u'educ', u'spotlight', u'forum']
[u'decid', u'sar', u'screen']
[u'excav', u'extinguish', u'blaze']
[u'fallout', u'continu', u'church', u'child', u'abus', u'inquiri']
[u'fear', u'king', u'bros', u'woe', u'wider', u'impact']
[u'feder', u'govt', u'wait', u'inland', u'rail', u'plan']
[u'feder', u'govt', u'urg', u'subsidis', u'region']
[u'fed', u'decis', u'push', u'stock', u'higher']
[u'fiji', u'warn', u'work', u'disciplin', u'ahead', u'world']
[u'folk', u'talk', u'rooster', u'bulldog', u'clash']
[u'footi', u'jumper', u'steal', u'boardroom']
[u'formal', u'elect', u'result', u'loom']
[u'franc', u'help', u'want', u'iraqi', u'escap', u'captur']
[u'french', u'group', u'want', u'protect', u'strand', u'iranian']
[u'impact', u'wheat', u'virus', u'know']
[u'fund', u'seek', u'theatr', u'work']
[u'awar', u'public', u'view', u'minist']
[u'giro', u'ditalia', u'seek', u'posit', u'attent']
[u'golden', u'point', u'introduc', u'origin', u'seri']
[u'govt', u'beef', u'secur', u'dump', u'site']
[u'govt', u'commit', u'hec', u'silent', u'educ']
[u'govt', u'deliv', u'fiscal', u'respons', u'budget']
[u'govt', u'give', u'tourism', u'boost']
[u'govt', u'order', u'investig', u'death', u'custodi']
[u'green', u'group', u'welcom', u'nuclear', u'wast', u'inquiri']
[u'green', u'condemn', u'develop', u'decis']
[u'green', u'view', u'sugar', u'industri', u'impact', u'market']
[u'group', u'lodg', u'protest', u'icac', u'petrol', u'station']
[u'gulf', u'hunt', u'law', u'respect', u'elder']
[u'hall', u'echo', u'stockmen', u'memori']
[u'hangar', u'work', u'suspend', u'collaps']
[u'hanson', u'pursu', u'unholi', u'hast', u'defenc']
[u'harrington', u'seek', u'form', u'revers', u'happi', u'hunt']
[u'henin', u'hardenn', u'untroubl', u'germani']
[u'hollywood', u'star', u'help', u'iraqi', u'victim']
[u'honour', u'horticultur', u'scientist']
[u'human', u'shield', u'offer', u'insid', u'stori', u'iraq']
[u'indigen', u'make', u'histor', u'maiden', u'speech']
[u'inland', u'railway', u'track', u'anderson']
[u'insur', u'perilya']
[u'italian', u'priest', u'arrest', u'prostitut']
[u'jupit', u'play', u'sar', u'impact']
[u'kluivert', u'dismiss', u'link']
[u'knight', u'loss', u'focus', u'match']
[u'knowl', u'reject', u'nation', u'park', u'timber', u'claim']
[u'lighthous', u'platform', u'demolit', u'delay']
[u'magistr', u'attend', u'bali', u'bomb', u'trial']
[u'makeov', u'tourism', u'region']
[u'arrest', u'suspicion', u'murder', u'sister']
[u'arrest', u'prostitut', u'murder']
[u'mandela', u'pay', u'tribut', u'anti', u'apartheid', u'campaign']
[u'escap', u'jail', u'term', u'hoax', u'call']
[u'jail', u'fatal']
[u'face', u'murder', u'trial']
[u'receiv', u'premier', u'leagu', u'trophi']
[u'win', u'braveri', u'award', u'rescu']
[u'marijuana', u'cell', u'phone', u'cover', u'caus', u'buzz']
[u'marsh', u'complet', u'dark', u'england']
[u'mayor', u'outrag', u'brothel', u'tour']
[u'mayor', u'charg', u'drop']
[u'mayor', u'rise']
[u'mccafferti', u'enhanc', u'corpor', u'structur']
[u'mercuri', u'rise', u'rare', u'align']
[u'mix', u'respons', u'victorian', u'budget']
[u'polic', u'need', u'women', u'council']
[u'air', u'tour', u'guid', u'concern']
[u'murray', u'flow', u'decis', u'time']
[u'mutant', u'cold', u'virus', u'kill', u'cancer']
[u'nation', u'leader', u'reform', u'propos']
[u'nauru', u'speaker', u'quit']
[u'anglican', u'abus', u'alleg', u'surfac']
[u'harri', u'potter', u'book', u'dump']
[u'heart', u'monitor', u'clinic', u'trial']
[u'sponsorship', u'deal', u'plan', u'birdsvill', u'race']
[u'chang', u'default', u'suburban', u'speed']
[u'govt', u'hold', u'nuclear', u'wast', u'transport', u'probe']
[u'govt', u'urg', u'chang', u'mine', u'law']
[u'polic', u'probe', u'break', u'martin', u'hous']
[u'ocean', u'rower', u'shadow', u'foot', u'marlin']
[u'oleari', u'prepar', u'return', u'leed']
[u'oneil', u'celtic', u'deal', u'remain', u'unsign']
[u'kill', u'injur', u'grenad', u'attack']
[u'support', u'supermarket', u'alcohol']
[u'pacif', u'help', u'elit', u'poor']
[u'pakistan', u'say', u'seiz', u'heroin', u'worth', u'million']
[u'palestinian', u'toddler', u'die', u'gaza', u'shoot']
[u'pasminco', u'look', u'product', u'cost']
[u'patagonian', u'allianc', u'help', u'protect', u'fish']
[u'patient', u'urg', u'partner', u'organ', u'donat']
[u'disput', u'threaten', u'rugbi', u'world', u'prepar']
[u'philip', u'morri', u'decis', u'impact', u'north']
[u'photograph', u'charg', u'explos', u'jordanian']
[u'playboy', u'undergo', u'facelift']
[u'polic', u'crack', u'seatbelt', u'offenc']
[u'polic', u'hope', u'clue', u'skull']
[u'polic', u'trail', u'miss']
[u'port', u'price', u'continu', u'past']
[u'port', u'work', u'allow', u'bigger', u'cruis', u'ship', u'visit']
[u'prawn', u'fisher', u'face', u'weather', u'price', u'hurdl']
[u'pressur', u'mount', u'water', u'suppli']
[u'price', u'higuchi', u'hall', u'famer']
[u'probe', u'begin', u'site', u'death']
[u'qanta', u'plan', u'cut']
[u'anglican', u'school', u'head', u'quit', u'abus', u'report']
[u'real', u'madrid', u'nose', u'ahead', u'champion', u'leagu', u'semi']
[u'report', u'call', u'chang', u'women', u'prison']
[u'rescu', u'spark', u'safeti', u'remind']
[u'reserv', u'bank', u'keep', u'rat', u'steadi']
[u'retail', u'group', u'welcom', u'turnov', u'figur']
[u'ask', u'investig', u'heart', u'surgeri', u'wait']
[u'roo', u'say', u'bounc', u'bounc', u'protect', u'umpir']
[u'rooster', u'lift', u'media', u'player']
[u'sack', u'worker', u'claim', u'unfair', u'fire']
[u'saddam', u'take', u'bank']
[u'sailor', u'claim', u'pressur', u'appli']
[u'sar', u'death', u'rate']
[u'uni', u'struggl', u'meet', u'demand', u'vice', u'chancellor']
[u'savag', u'say', u'budget', u'respons']
[u'scientist', u'creat', u'africa', u'clone', u'anim']
[u'shire', u'oppos', u'railway', u'precinct', u'heritag', u'list']
[u'shuttl', u'crash', u'investig', u'offer', u'partial', u'answer']
[u'southern', u'tasmania', u'pay', u'fuel']
[u'lankan', u'kiwi', u'chase', u'test', u'victori']
[u'lanka', u'seek', u'roadmap', u'peac', u'tiger']
[u'steve', u'kefu', u'return', u'toutai', u'farewel']
[u'steve', u'kefu', u'return', u'toutai', u'herbert', u'farewel']
[u'strike', u'worker', u'qanta']
[u'student', u'union', u'welcom', u'engin', u'plan']
[u'suppli', u'contract', u'award', u'softwood']
[u'surgeon', u'quit', u'medic', u'indemn', u'concern']
[u'test', u'cricket', u'past', u'present', u'attend', u'reunion']
[u'testicular', u'cancer', u'rise']
[u'thief', u'hire', u'shop', u'owner', u'sentenc']
[u'tidi', u'town', u'group', u'disband']
[u'timber', u'packag', u'boost', u'timber', u'industri']
[u'seed', u'progress', u'rome']
[u'tourism', u'board', u'chang', u'boost', u'sunshin', u'coast']
[u'treat', u'obes', u'serious', u'urg', u'surgeon']
[u'tune', u'resign', u'miss', u'nation']
[u'singapor', u'sign', u'trade', u'deal']
[u'keep', u'rat', u'steadi']
[u'vaughan', u'captain', u'england', u'team']
[u'govt', u'sell', u'budget', u'defend', u'hike']
[u'prison', u'lock', u'load', u'pistol', u'cell']
[u'vieira', u'commit', u'futur', u'arsenal']
[u'western', u'desert', u'founder', u'die', u'cancer']
[u'wheat', u'virus', u'fight', u'month']
[u'wheat', u'virus']
[u'white', u'tribun']
[u'wire', u'cubicl', u'frontier']
[u'women', u'push', u'cross', u'border', u'polic']
[u'dead', u'collis']
[u'remain', u'hospit', u'hangar', u'collaps']
[u'aborigin', u'leader', u'urg', u'consid', u'posit']
[u'accus', u'face', u'court', u'prostitut', u'murder', u'charg']
[u'accus', u'murder', u'fight', u'fund']
[u'bushfir', u'delay', u'highlight', u'inquiri']
[u'move', u'allow', u'coupl', u'adopt']
[u'hop', u'secur', u'armi', u'contract']
[u'ticket', u'cost', u'spotlight']
[u'alonso', u'emerg', u'great', u'formula']
[u'obtain', u'updat', u'colston', u'health']
[u'shelv', u'plan', u'reward', u'share']
[u'analyst', u'expect', u'chang', u'jobless', u'rate']
[u'archbishop', u'report', u'increas', u'abus', u'complaint']
[u'arsenal', u'put', u'frighten', u'southampton']
[u'ashcroft', u'go', u'strong', u'clock']
[u'australia', u'prepar', u'sar', u'professor']
[u'ballestero', u'get', u'dress', u'fellow', u'pros']
[u'battl', u'milan', u'end', u'squar']
[u'beatti', u'call', u'royal', u'commiss', u'child', u'abus']
[u'beetl', u'save', u'benin', u'million']
[u'birmingham', u'offer', u'lazaridi', u'upgrad', u'deal']
[u'blair', u'hail', u'depend', u'howard']
[u'brack', u'promis', u'investig', u'prison', u'secur']
[u'bridg', u'scheme', u'month']
[u'brogden', u'urg', u'chang', u'bail', u'law', u'drive']
[u'break', u'hill', u'council', u'get', u'poor', u'recycl', u'report', u'card']
[u'budget', u'unlik', u'affect', u'polic']
[u'budget', u'set', u'spend', u'record']
[u'builder', u'union', u'stress', u'workplac', u'safeti']
[u'burk', u'call', u'compromis', u'world', u'agreement']
[u'burk', u'impress', u'world', u'drop', u'kick', u'rule']
[u'burk', u'rule', u'european', u'career']
[u'cairn', u'atsic', u'council', u'look', u'fund', u'chang']
[u'calf', u'clone', u'south', u'africa']
[u'mine', u'manag', u'plan']
[u'home', u'birth', u'support']
[u'resid', u'consult', u'pool']
[u'skull', u'return', u'tradit', u'owner']
[u'boost', u'specialist', u'medic', u'chemic']
[u'canberra', u'broadcast']
[u'cancer', u'centr', u'unveil', u'technolog']
[u'celtic', u'bind', u'scottish', u'premier', u'leagu']
[u'say', u'qanta', u'head', u'roll']
[u'cezann', u'self', u'portrait', u'sell']
[u'chang', u'get', u'french', u'open', u'wild', u'card']
[u'cheap', u'rat', u'brewarrina', u'bogan', u'shire']
[u'church', u'investig', u'alleg', u'child', u'abus', u'case']
[u'church', u'minist', u'lose', u'nois', u'appeal']
[u'claim', u'rate', u'peg', u'forc', u'focus', u'user', u'pay']
[u'clark', u'refus', u'resign']
[u'clijster', u'cruis', u'german', u'clay']
[u'communiti', u'servic', u'option', u'mele', u'offend']
[u'concern', u'air', u'tourism', u'zone']
[u'concern', u'air', u'possibl', u'clayton', u'crop']
[u'coroni', u'inquiri', u'find', u'refer']
[u'council', u'back', u'dick']
[u'council', u'consid', u'higher', u'alfesco', u'din', u'charg']
[u'council', u'draft']
[u'council', u'seek', u'rate', u'rise', u'approv']
[u'court', u'hear', u'hanson', u'argu', u'treasur', u'fund']
[u'court', u'lift', u'suppress', u'order', u'civil', u'case']
[u'cousin', u'play', u'eagl', u'wirrapunda', u'kerr', u'doubt']
[u'cross', u'border', u'polic', u'plan', u'forward']
[u'prepar', u'cut', u'student', u'intak']
[u'date', u'water', u'summit']
[u'decis', u'hanson', u'hear']
[u'demand', u'prompt', u'porto', u'sell', u'uefa', u'ticket', u'earli']
[u'despit', u'loss', u'west', u'indi', u'improv']
[u'despotovski', u'choos', u'glori', u'power']
[u'develop', u'push', u'ahead', u'mart', u'plan']
[u'doctor', u'reject', u'alleg', u'misconduct']
[u'doubt', u'cast', u'tourism', u'plan']
[u'drought', u'bear', u'nino', u'offici']
[u'drug', u'network', u'search', u'underway', u'money', u'stash']
[u'dutch', u'qualifi', u'rock', u'roddick', u'rome']
[u'elder', u'tourist', u'safe', u'night']
[u'elder', u'gain', u'respect', u'italian']
[u'eurobodalla', u'council', u'seek', u'rate', u'rise', u'approv']
[u'fee', u'budget']
[u'fewer', u'work', u'jobless', u'rate', u'fall']
[u'fiji', u'charg', u'coup']
[u'fleme', u'surpris', u'lanka', u'approach', u'draw']
[u'flower', u'back', u'brother', u'protest']
[u'forecast', u'group', u'confid', u'budget', u'surplus']
[u'ansett', u'subsidiari', u'settl', u'claim']
[u'bishop', u'defend', u'decis', u'wake', u'abus']
[u'hold', u'suspect', u'potter', u'manuscript', u'theft']
[u'fresh', u'child', u'abus', u'scandal', u'hit', u'church']
[u'deni', u'rape', u'claim']
[u'suppress', u'order', u'lift']
[u'go', u'public', u'earlier', u'tanner']
[u'giant', u'postcard', u'russia', u'love']
[u'giffen', u'brumbi']
[u'goldfield', u'await', u'budget']
[u'govt', u'maintain', u'pacif']
[u'govt', u'protect', u'long', u'servic', u'leav', u'entitl']
[u'grain', u'grower', u'urg', u'remain', u'calm', u'amidst', u'virus']
[u'green', u'govt', u'river', u'report']
[u'group', u'seek', u'equit', u'fuel', u'price']
[u'haa', u'continu', u'proud', u'famili', u'tradit']
[u'hanson', u'say', u'take', u'money']
[u'health', u'minist', u'prais', u'cancer', u'treatment', u'centr']
[u'hewson', u'join', u'chorus', u'caller', u'resign']
[u'highway', u'fund', u'summit']
[u'horan', u'retir', u'strong', u'world', u'memori']
[u'hospit', u'contractor', u'work', u'ensur', u'asbesto']
[u'hundr', u'miss', u'flood', u'argentina']
[u'hunter', u'leav', u'tassi', u'train']
[u'illeg', u'fish', u'hurt', u'local', u'fish', u'stock', u'minist']
[u'inaugur', u'wachovia', u'championship', u'begin', u'thursday']
[u'india', u'see', u'bilater', u'pakistan', u'game']
[u'india', u'want', u'pakistan', u'crack']
[u'indigen', u'paint', u'return', u'auction']
[u'indonesian', u'armi', u'readi', u'oper', u'aceh']
[u'insur', u'woe', u'cancel', u'rspca', u'launceston', u'event']
[u'seek', u'iraq', u'olymp', u'committe']
[u'iraqi', u'captur', u'leader']
[u'isra', u'troop', u'shoot', u'journalist', u'neck', u'autopsi']
[u'jail', u'lockdown', u'discoveri']
[u'jayawarden', u'appoint', u'lanka', u'vice']
[u'agenc', u'close', u'door']
[u'juri', u'retir', u'fraser', u'trial']
[u'katter', u'pledg', u'fight', u'age', u'care', u'centr']
[u'kean', u'urg', u'fergi', u'spend', u'european']
[u'labor', u'queri', u'legal', u'affair']
[u'langer', u'hesit', u'ryder', u'captain', u'candidaci']
[u'lead', u'ladi', u'sorenstam', u'compet']
[u'lend', u'boost', u'westpac', u'result']
[u'magistr', u'ignor', u'bali', u'trial', u'warn']
[u'charg', u'fatal', u'stab']
[u'mandela', u'team', u'fight', u'aid']
[u'face', u'child', u'charg']
[u'fin', u'cray', u'poach']
[u'injur', u'highway', u'truck', u'roll']
[u'market', u'drag', u'bank']
[u'mayor', u'concern', u'state', u'fund', u'report']
[u'medal', u'present', u'communiti', u'effort']
[u'merger', u'boost', u'west', u'freight', u'servic']
[u'mickel', u'elect', u'esper', u'shire', u'presid']
[u'million', u'need', u'combat', u'tourism', u'woe']
[u'miss', u'tourist']
[u'natasha', u'ryan', u'mother', u'urg', u'media', u'stay', u'away']
[u'nauru', u'head', u'constitut', u'crisi']
[u'nauru', u'search', u'speaker', u'presid']
[u'dengu', u'fever', u'spot', u'identifi']
[u'figur', u'offer', u'hope', u'homebuy']
[u'jersey', u'take', u'lead', u'semi', u'final', u'seri']
[u'weapon', u'fight', u'assault']
[u'good', u'reason', u'delay', u'murray', u'decis', u'hill']
[u'urg', u'amend', u'split']
[u'remain', u'grip', u'drought']
[u'collaps']
[u'oppn', u'call', u'budget', u'boost', u'famili']
[u'optus', u'post', u'year', u'profit']
[u'pain', u'return', u'veld']
[u'pakistan', u'deport', u'thoma', u'charg']
[u'park', u'lead', u'korean', u'conting', u'lpga']
[u'recal', u'forc', u'busi', u'council']
[u'perilya', u'await', u'insur', u'decis']
[u'pharmaci', u'guild', u'repair', u'damag']
[u'phillip', u'coach', u'cricket', u'team']
[u'comment', u'alleg']
[u'offic', u'silent', u'statement']
[u'polic', u'diver', u'call', u'search', u'miss']
[u'polic', u'interview', u'wit', u'fatal', u'smash']
[u'policeman', u'think', u'killer', u'didnt']
[u'polic', u'accid', u'victim']
[u'polic', u'probe', u'church', u'blaze']
[u'polic', u'issu', u'summon', u'ryan', u'boyfriend']
[u'pont', u'miss', u'fourth', u'test']
[u'pool', u'debat', u'continu', u'lismor']
[u'princ', u'prepar', u'prime', u'minist']
[u'prison', u'boss', u'defend', u'allow', u'murder', u'rent']
[u'prison', u'search', u'find', u'contraband']
[u'profit', u'taker', u'drive', u'aussi', u'dollar', u'lower']
[u'qanta', u'profit', u'expect', u'fall']
[u'raider', u'secur', u'major', u'sponsor']
[u'rebat', u'offer', u'encourag', u'water', u'recycl']
[u'report', u'highlight', u'kempsey', u'shire', u'recycl', u'effort']
[u'research', u'trial', u'virtual', u'exercis', u'machin']
[u'revamp', u'plan', u'traralgon', u'colleg']
[u'rooney', u'get', u'eriksson', u'vote', u'young', u'player']
[u'roo', u'say', u'bounc', u'bounc', u'protect', u'umpir']
[u'ruddock', u'respond', u'women', u'traffic', u'critic']
[u'bid', u'stop', u'radioact', u'wast', u'dump']
[u'salvo', u'want', u'judici', u'offic', u'hear', u'detent']
[u'opposit', u'issu', u'water', u'restrict', u'warn']
[u'sar', u'death', u'rate', u'increas', u'specialist']
[u'sar', u'impact', u'tasmanian', u'qanta', u'workforc']
[u'school', u'demolit', u'avert']
[u'search', u'continu', u'miss']
[u'mourn', u'volunt']
[u'volunt', u'kill']
[u'slipper', u'reject', u'hospit', u'claim']
[u'soccer', u'aust', u'chairman', u'resign']
[u'soccer', u'australia', u'chairman', u'quit']
[u'speed', u'factor', u'fatal', u'accid', u'polic']
[u'spur', u'laker', u'final']
[u'squash', u'consid', u'rank']
[u'prime', u'voluntari', u'quarantin', u'wheat', u'virus']
[u'sydney', u'council', u'odd', u'boundari', u'chang']
[u'doctor', u'encourag', u'bulk']
[u'tatu', u'film', u'clip', u'shift', u'ancient']
[u'teen', u'charg', u'bomb', u'hoax']
[u'teen', u'quiz', u'garden', u'citi']
[u'tornado', u'claim', u'victim']
[u'tough', u'process', u'abrolho', u'island', u'tourism', u'ventur']
[u'tourism', u'south', u'west', u'put', u'hand', u'manag', u'zone']
[u'townsvill', u'moot', u'possibl', u'research', u'super', u'centr']
[u'tractor', u'death', u'investig']
[u'trade', u'southcorp', u'share', u'suspend']
[u'train', u'sweeten', u'sugar', u'worker']
[u'train', u'plough', u'hungari']
[u'treasur', u'confirm', u'closur', u'pine', u'forest', u'industri']
[u'twin', u'bear', u'separ', u'womb']
[u'arrest', u'follow', u'sydney', u'shoot']
[u'unsustain', u'hunt', u'practic', u'spotlight']
[u'inquiri', u'urg', u'autonomi', u'papua']
[u'lift', u'iraq', u'sanction']
[u'test', u'potenti', u'mobil', u'weapon']
[u'compli', u'rule']
[u'vancouv', u'olymp', u'organis', u'keen', u'vote']
[u'nistelrooy', u'determin', u'goal', u'provid']
[u'court', u'lift', u'deni', u'rape', u'claim']
[u'dept', u'prevent', u'polici', u'criticis']
[u'place', u'year', u'canola']
[u'warn', u'issu', u'young', u'girl', u'attack']
[u'washington', u'wizard', u'kick', u'jordan']
[u'waugh', u'believ', u'year']
[u'wesfarm', u'share', u'compani', u'post', u'profit']
[u'west', u'indi', u'concern', u'loss']
[u'westpac', u'share', u'price', u'fall', u'profit', u'figur']
[u'wheat', u'farmer', u'caution', u'field', u'trial']
[u'white', u'fall', u'victim', u'contact', u'umpir', u'rule']
[u'woman', u'jail', u'home', u'invas']
[u'woman', u'face', u'court', u'accessori', u'murder', u'charg']
[u'zimbabw', u'tough', u'media', u'law', u'strike']
[u'european', u'need', u'host']
[u'accc', u'give', u'takeov', u'green', u'light']
[u'investig', u'westralia', u'engin', u'failur']
[u'alic', u'rock']
[u'anglican', u'clergi', u'hollingworth']
[u'armstrong', u'urg', u'consid', u'posit']
[u'atsic', u'seek', u'inclus', u'bodi']
[u'attorney', u'general', u'consid', u'rape', u'sentenc', u'appeal']
[u'augathella', u'ant']
[u'aussi', u'benefit', u'greenback', u'slide']
[u'aussi', u'place', u'event']
[u'aust', u'dumb', u'educ']
[u'australia', u'win', u'tran', u'tasman', u'trophi']
[u'aust', u'suspend', u'ammunit', u'export']
[u'bahrain', u'close', u'grand', u'prix', u'glori']
[u'bank', u'urg', u'open', u'saturday']
[u'basin', u'council', u'decid', u'delay', u'murray']
[u'batchelor', u'defend', u'overpass', u'fund']
[u'beachley', u'lead', u'surf', u'charg']
[u'beachley', u'rid', u'high', u'tahiti']
[u'bishop', u'say', u'pressur', u'consid']
[u'blue', u'overpow', u'hurrican']
[u'bodi', u'murder', u'sibl', u'releas', u'short']
[u'book', u'chart', u'asian', u'violenc', u'women']
[u'bras', u'replac', u'sar', u'mask']
[u'broadband', u'predict', u'offer', u'econom', u'boost']
[u'break', u'hill', u'jobless', u'rate', u'fall']
[u'brothel', u'announc', u'expans', u'plan']
[u'brumbi', u'face', u'nervous', u'wait']
[u'brumbi', u'bendigo', u'sell', u'budget']
[u'budget', u'fund', u'goldfield', u'water', u'suppli']
[u'budget', u'fund', u'announc', u'pilbara']
[u'budget', u'fund', u'expect', u'boost', u'port', u'export']
[u'budget', u'fund', u'help', u'boost', u'port', u'trade']
[u'bulgarian', u'put', u'celtic', u'titl', u'push', u'overdr']
[u'bulldog', u'bark', u'rooster']
[u'bushfir', u'probe', u'final', u'submiss']
[u'capricorn', u'coast', u'special', u'school']
[u'return', u'ballot', u'paper']
[u'wider', u'probe', u'manag']
[u'cancer', u'vaccin', u'year', u'away']
[u'capriati', u'reach', u'german', u'open', u'quarter']
[u'caus', u'half', u'beij', u'sar', u'case', u'unknown']
[u'defend', u'gippsland', u'manag', u'effort']
[u'support', u'need', u'better', u'relat']
[u'chamber', u'aim', u'boost', u'dalbi', u'train']
[u'chamber', u'defend', u'mayor', u'poultri', u'decis']
[u'chang', u'urg', u'forest', u'burn', u'off']
[u'chechen', u'blast', u'kill', u'wound']
[u'clark', u'expect', u'collingwood']
[u'coat', u'arm', u'theft', u'charg', u'stand']
[u'confer', u'draw', u'clone', u'regul']
[u'councillor', u'clarifi', u'recycl', u'rank']
[u'council', u'learn', u'super', u'contribut']
[u'council', u'urg', u'road']
[u'crean', u'investig', u'hour', u'gambl']
[u'crow', u'prepar', u'collingwood', u'clash']
[u'darwin', u'hospit', u'forefront', u'emerg', u'respons']
[u'demon', u'feel', u'heat', u'danih']
[u'derbi', u'gregori']
[u'develop', u'surpris', u'project', u'call']
[u'docker', u'spot', u'stake']
[u'doctor', u'group', u'say', u'health', u'budget', u'doesnt']
[u'doctor', u'warn', u'possibl', u'obstetrician', u'shortag']
[u'dokic', u'suffer', u'shock', u'loss']
[u'doyl', u'claim', u'delahunti', u'mislead', u'parliament']
[u'rebel', u'minist', u'plane']
[u'driver', u'warn', u'blanket', u'perth']
[u'drought', u'increas', u'stock', u'death']
[u'drug', u'seiz', u'separ', u'raid']
[u'duncan', u'make']
[u'dwyer', u'bank', u'brumbi']
[u'escap', u'camel', u'lump']
[u'farmer', u'urg', u'plant', u'wheat', u'crop']
[u'fergi', u'track', u'italian', u'midfield', u'kean']
[u'presid', u'say', u'maker', u'come']
[u'figur', u'highlight', u'unemploy', u'woe']
[u'finnegan', u'futur', u'remain', u'mysteri']
[u'trap', u'high', u'rise', u'lift']
[u'warn', u'defend', u'adequ']
[u'firm', u'conced', u'dairi', u'fund', u'retrospect']
[u'food', u'poison', u'spark', u'hospit', u'disast', u'plan']
[u'governor', u'die', u'britain']
[u'charg', u'steal', u'potter', u'novel']
[u'fraser', u'convict', u'serial', u'murder']
[u'gene', u'search', u'unearth', u'colon', u'cancer', u'gene']
[u'germani', u'host', u'cycl', u'championship']
[u'tell', u'rape', u'claim']
[u'vow', u'fight', u'rape', u'claim']
[u'global', u'warm', u'unlik', u'increas', u'malaria', u'risk']
[u'good', u'educ', u'budget']
[u'govt', u'finalis', u'dump', u'plan']
[u'grace', u'bros', u'urg', u'rethink', u'store', u'closur', u'plan']
[u'grafton', u'suspect', u'sourc', u'tick', u'outbreak']
[u'grazier', u'unhappi', u'leasehold', u'plan']
[u'group', u'claim', u'inmat', u'treat', u'inhuman', u'risdon']
[u'group', u'campaign', u'powerlin', u'plan']
[u'halifax', u'launch', u'bankwest', u'takeov']
[u'hill', u'push', u'murray', u'river', u'compromis', u'solut']
[u'hollingworth', u'stand', u'asid']
[u'hospit', u'put', u'disast', u'plan', u'action', u'treat']
[u'houllier', u'play', u'chelsea', u'showdown']
[u'houllier', u'rais', u'stake', u'champion', u'leagu', u'roulett']
[u'lose', u'weight', u'banana']
[u'hunter', u'health', u'reduc', u'servic']
[u'illeg', u'fish', u'threat', u'spotlight']
[u'india', u'conduct', u'missil', u'test']
[u'india', u'reject', u'suggest', u'nuclear', u'weapon']
[u'ivanisev', u'target', u'comeback']
[u'ivanisev', u'comeback', u'nottingham']
[u'agenc', u'close', u'door']
[u'jone', u'gustafson', u'lead', u'lpga', u'event']
[u'judici', u'crank', u'iraq']
[u'juri', u'trial', u'atsic', u'offici', u'fail', u'reach']
[u'kafelnikov', u'mow', u'moya']
[u'kangaroo', u'hawk']
[u'sale', u'best', u'offer']
[u'lake', u'julius', u'pump', u'begin', u'month']
[u'leader', u'meet', u'public', u'drunken']
[u'leaney', u'close', u'leader']
[u'leverkusen', u'point', u'hamburg']
[u'littl', u'chanc', u'feder', u'budget', u'fund', u'calder']
[u'liverpool', u'chase', u'manchest', u'unit']
[u'local', u'derbi', u'test', u'runner']
[u'london', u'mayor', u'compar', u'bush', u'saddam']
[u'yang', u'power', u'get', u'insur', u'payout']
[u'mackay', u'hop', u'secur', u'russian', u'trade', u'deal']
[u'magistr', u'blast', u'delay', u'forens', u'test']
[u'malthous', u'slam', u'stupid', u'umpir', u'contact', u'rule']
[u'charg', u'hospit']
[u'sentenc', u'year', u'jail', u'kill']
[u'marina', u'hous', u'plan', u'denham']
[u'market', u'steadi', u'dollar', u'hit', u'year', u'high']
[u'mayor', u'defend', u'council', u'legal', u'bill']
[u'mayor', u'welcom', u'lower', u'speed', u'limit']
[u'miner', u'water', u'champagn', u'juve', u'titl']
[u'montgomeri', u'johnson', u'grand', u'prix', u'sprint']
[u'recognit', u'seek', u'river', u'manag']
[u'staff', u'cairn', u'hospit']
[u'telstra', u'cut', u'expect']
[u'moroccan', u'charg', u'accessori', u'murder', u'sept']
[u'reject', u'claim', u'grace', u'bros', u'effort']
[u'deputi', u'mayor', u'kalgoorli', u'boulder']
[u'job', u'guarante', u'unemploy', u'worker']
[u'polic', u'search', u'arm', u'hitchhik']
[u'ogradi', u'grab', u'fifth', u'place']
[u'slick', u'tanker', u'victim', u'receiv', u'payout']
[u'dead', u'gold', u'coast', u'apart']
[u'scandal', u'claim', u'scalp']
[u'parker', u'miss', u'bulldog', u'clash']
[u'perth', u'build', u'treat', u'suspici']
[u'fli', u'polit', u'storm']
[u'cash', u'flow', u'dri']
[u'polic', u'crack', u'state', u'drug', u'syndic']
[u'polic', u'file', u'summon', u'natasha', u'ryan']
[u'polic', u'issu', u'warn', u'drug', u'raid']
[u'polic', u'drug', u'charg', u'raid']
[u'polic', u'offic', u'injur', u'wild', u'brawl']
[u'polic', u'seek', u'public', u'help', u'solv', u'smith', u'murder']
[u'polit', u'erupt', u'rate', u'rise', u'claim']
[u'pont', u'give', u'minut']
[u'pont', u'give', u'minut', u'prove', u'fit']
[u'possibl', u'sar', u'case', u'gold', u'coast']
[u'pressur', u'mount', u'crop', u'moratorium']
[u'protest', u'race', u'cut', u'plan']
[u'qanta', u'passeng', u'contact']
[u'rann', u'claim', u'despit', u'level', u'wast', u'dump']
[u'rapist', u'get', u'year', u'jail']
[u'rat', u'unlik', u'chang']
[u'assess', u'push', u'short', u'term', u'rat']
[u'real', u'champion', u'leagu', u'distract', u'cheer', u'deportivo']
[u'record', u'gladston', u'jobless', u'figur']
[u'regular', u'rule', u'south', u'african', u'tour']
[u'reid', u'name', u'perman', u'leed', u'manag']
[u'revel', u'urg', u'wari', u'gang']
[u'rooki', u'princ', u'creat', u'overtim', u'detroit']
[u'ross', u'miss', u'month', u'injuri']
[u'russia', u'consid', u'sever', u'china', u'link', u'sar']
[u'russia', u'launch', u'satellit', u'year']
[u'ryan', u'face', u'charg']
[u'ryan', u'ditch', u'swim', u'radio']
[u'sack', u'hoddl', u'sherwood', u'tell', u'spur']
[u'claim', u'nuke', u'dump', u'round']
[u'sar', u'studi', u'reveal', u'doubl', u'edg', u'sword']
[u'satellit', u'ventur', u'boost', u'competit', u'murdoch']
[u'school', u'focus', u'communiti', u'support']
[u'seven', u'sell', u'broadcast', u'centr']
[u'slingshot', u'user', u'vandal', u'spree']
[u'soccer', u'australia', u'crisi', u'deepen']
[u'sorenstam', u'share', u'lead', u'japan']
[u'stabilis', u'forc', u'iraq', u'discuss']
[u'student', u'send', u'home', u'gastro', u'scare']
[u'stuttgart', u'host', u'world', u'race', u'championship']
[u'super', u'decid', u'dig', u'deeper']
[u'face', u'nation', u'worst', u'jobless', u'rate']
[u'tasmania', u'record', u'fever', u'case']
[u'taxi', u'driver', u'want', u'clarif', u'airport', u'levi']
[u'bird', u'grand', u'final', u'replay']
[u'team', u'coast', u'ban', u'competit']
[u'temco', u'hop', u'forward']
[u'tfga', u'seek', u'input', u'sale', u'agricultur', u'asset']
[u'suspend', u'medic', u'product', u'licenc']
[u'thousand', u'flee', u'congo', u'fight']
[u'tour', u'itali', u'seek', u'posit', u'attent']
[u'lose', u'goya', u'sell']
[u'umpir', u'manag', u'stand', u'centr', u'bounc']
[u'union', u'call', u'build', u'collaps', u'probe']
[u'call', u'franc', u'russia', u'drop', u'opposit']
[u'climber', u'tell']
[u'senat', u'approv', u'nato', u'member']
[u'step', u'pressur', u'iran']
[u'approv', u'control', u'iraq']
[u'challeng', u'polici', u'food']
[u'dentist', u'fund']
[u'govt', u'defend', u'ax', u'job', u'program']
[u'virus', u'show', u'benefit', u'crop']
[u'budget', u'hold', u'surpris', u'great', u'southern']
[u'govt', u'pull', u'glove', u'nuclear', u'wast', u'dump']
[u'warm', u'welcom', u'olymp', u'gold', u'medallist']
[u'weipa', u'move', u'closer', u'local', u'govt', u'area', u'status']
[u'step', u'sar', u'travel', u'warn']
[u'wife', u'sibl', u'israel', u'bomb', u'fugit', u'remand']
[u'windi', u'recal', u'jacob', u'dillon']
[u'woman', u'get', u'bond', u'accept', u'secret', u'doc']
[u'wood', u'deni', u'fallout', u'caddi']
[u'workshop', u'focus', u'fish', u'angl']
[u'world', u'contract', u'concern', u'increas']
[u'world', u'expans', u'mistak', u'blatter']
[u'veteran', u'pass', u'away', u'sydney']
[u'yorkshir', u'sign', u'yuvraj', u'singh']
[u'peopl', u'wound', u'bomb', u'explos', u'pakistan']
[u'kill', u'injur', u'bangladesh', u'storm']
[u'actor', u'jack', u'nicholson', u'get', u'angri', u'shaq', u'foul']
[u'alleg', u'peopl', u'smuggler', u'face', u'australian', u'court']
[u'anim', u'allow', u'plan', u'emot', u'support']
[u'anti', u'abort', u'activist', u'get', u'year', u'doctor']
[u'athlet', u'heed', u'recal', u'coat']
[u'wound', u'univers', u'shoot']
[u'ballymor', u'thriller', u'farewel', u'kefu', u'style']
[u'banfield', u'join', u'club']
[u'beachley', u'lead', u'surf', u'charg']
[u'beatti', u'challeng', u'nat', u'sugar', u'reform']
[u'benazzi', u'bow', u'world', u'regret']
[u'bronco', u'sign', u'lang', u'park', u'deal']
[u'brumbi', u'snatch', u'super', u'semi', u'final', u'spot']
[u'brumbi', u'sneak', u'semi', u'final']
[u'bush', u'step', u'mideast', u'peac', u'drive', u'trade', u'pledg']
[u'call', u'govt', u'improv', u'region', u'fund']
[u'carlo', u'hand', u'match']
[u'casualti', u'fear', u'attack', u'coalit', u'patrol']
[u'china', u'urg', u'talk', u'north', u'korea', u'crisi']
[u'claim', u'women', u'obsess', u'find', u'right']
[u'clijster', u'capriati', u'french', u'open', u'match']
[u'cold', u'shower', u'kiwi', u'voluntari', u'power']
[u'concern', u'govt', u'environment', u'prioriti']
[u'coober', u'pedi', u'elder', u'criticis', u'wast', u'dump', u'decis']
[u'crusad', u'dent', u'brumbi', u'final', u'chanc']
[u'death', u'toll', u'uncertain', u'freak', u'accid']
[u'defenc', u'call', u'technolog', u'invent']
[u'eagl', u'edg', u'cat', u'saint', u'march']
[u'ferrero', u'sink', u'schuettler']
[u'firi', u'tell', u'werent', u'need', u'canberra']
[u'footbal', u'dead', u'studi', u'find']
[u'fraser', u'verdict', u'bring', u'closur', u'mayor']
[u'gibernau', u'quickest', u'qualifi']
[u'glori', u'secur', u'grand', u'final', u'berth']
[u'govt', u'approv', u'drought', u'relief']
[u'govt', u'top', u'fund', u'memori']
[u'greek', u'athlet', u'record', u'posit', u'drug', u'test']
[u'hangar', u'collaps', u'probe', u'prematur', u'govt']
[u'harrington', u'take', u'belfri', u'lead']
[u'hobart', u'readi', u'rock', u'work', u'festiv']
[u'howard', u'prais', u'gulf', u'troop']
[u'indefinit', u'jail', u'term', u'seek', u'fraser']
[u'intern', u'expert', u'discuss', u'sar', u'melbourn']
[u'johnson', u'face', u'tough', u'test']
[u'johnson', u'run', u'second', u'japan']
[u'jone', u'grab', u'lead', u'lpga', u'event']
[u'kangaroo', u'hawk']
[u'krakouer', u'lead', u'tiger']
[u'larkham', u'doubt', u'ireland', u'test']
[u'larkham', u'miss', u'ireland', u'test']
[u'lawson', u'rout', u'aussi']
[u'lawson', u'star', u'windi', u'control']
[u'magpi', u'lose', u'streak']
[u'charg', u'wilmot', u'shoot']
[u'kill', u'phone', u'booth']
[u'face', u'court', u'sydney', u'drug', u'raid']
[u'nasa', u'offer', u'launch', u'star']
[u'near', u'chines', u'sar', u'quarantin']
[u'nepales', u'govt', u'maoist', u'rebel', u'talk']
[u'net', u'crush', u'celtic']
[u'airport', u'servic', u'close']
[u'govt', u'ask', u'support', u'countri', u'show']
[u'polic', u'probe', u'suspici', u'death', u'teen']
[u'skipper', u'barker', u'back', u'portug']
[u'ogradi', u'edg', u'cook', u'fourth']
[u'oklahoma', u'clean', u'tornado', u'flood', u'south']
[u'opposit', u'slam', u'debat']
[u'panther', u'hold', u'dragon', u'knight', u'crush', u'rabbitoh']
[u'phoenix', u'swift', u'kestrel', u'notch', u'win']
[u'pie', u'thrill', u'crow']
[u'polic', u'arrest', u'worth', u'ecstasi']
[u'polic', u'shoot', u'woman', u'point', u'son', u'head']
[u'pont', u'ill', u'identifi']
[u'price', u'lead', u'championship']
[u'nat', u'meet', u'choos', u'lester', u'replac']
[u'question', u'ask', u'govt', u'nuclear', u'wast', u'plan']
[u'rann', u'vow', u'fight', u'wast', u'dump']
[u'reid', u'set', u'sight', u'keep', u'kewel']
[u'see', u'sydney', u'inund', u'truck']
[u'russian', u'visa', u'applic', u'review']
[u'ryan', u'pull', u'world', u'championship']
[u'sainz', u'take', u'charg', u'gronholm', u'hit', u'rock']
[u'polic', u'arrest', u'second', u'amphetamin', u'past']
[u'second', u'outbreak', u'wheat', u'virus', u'toowoomba']
[u'secur', u'offic', u'tell', u'expect', u'worst', u'bali']
[u'small', u'busi', u'push', u'industri']
[u'sorenstam', u'surg', u'stroke', u'lead']
[u'stoush', u'suggest', u'host', u'wast', u'dump']
[u'abalon', u'industri', u'crisi', u'wake', u'sar']
[u'prison', u'open', u'tourist']
[u'face', u'huge', u'recal']
[u'thirteen', u'dead', u'bomb', u'blast', u'southern', u'philippin']
[u'children', u'kill', u'pakistani', u'kashmir']
[u'kill', u'helicopt', u'crash', u'iraq']
[u'urg', u'lift', u'sanction', u'iraq']
[u'fear', u'dead', u'congoles', u'accid']
[u'commit', u'afghanistan', u'armitag']
[u'report', u'kill', u'iraq', u'crash']
[u'upbeat', u'iraqi', u'sanction', u'talk']
[u'polic', u'catch', u'limit']
[u'govt', u'criticis', u'road', u'fund', u'cut']
[u'govt', u'warn', u'overspend', u'hospit']
[u'polic', u'investig', u'bomb', u'incid']
[u'waratah', u'need', u'strong', u'perform', u'burk']
[u'waratah', u'play', u'wait', u'game']
[u'webber', u'sign', u'jaguar', u'deal']
[u'windi']
[u'windi', u'initi']
[u'win', u'darter', u'phoenix', u'swift', u'kestrel']
[u'woman', u'hospitalis', u'shoot', u'north', u'west']
[u'woman', u'kill', u'gold', u'coast', u'high', u'rise', u'blaze']
[u'world', u'smallest', u'seahors', u'discov']
[u'yemeni', u'get', u'death', u'kill', u'missionari']
[u'diagnos', u'meningococc', u'diseas']
[u'sayyaf', u'claim', u'dead', u'bomb', u'blast']
[u'establish', u'water']
[u'call', u'poker', u'profit', u'flow']
[u'akhtar', u'fire', u'pakistan', u'victori', u'lanka']
[u'head', u'warn', u'heighten', u'risk', u'australian']
[u'arab', u'newspap', u'resum', u'publish', u'baghdad']
[u'asian', u'compani', u'interest', u'darwin', u'busi', u'park']
[u'australia', u'control']
[u'australia', u'control', u'test']
[u'australia', u'wealth', u'imbal', u'worsen', u'vinni']
[u'beatti', u'call', u'govt', u'action', u'pay']
[u'beatti', u'urg', u'parent', u'guid', u'teen', u'attend']
[u'beatti', u'urg']
[u'bosnian', u'serb', u'offici', u'armi', u'protect']
[u'bristol', u'face', u'releg']
[u'britain', u'pull', u'amid', u'exposur', u'fear']
[u'british', u'barrist', u'cling', u'tradit']
[u'bronco', u'lead', u'lightn', u'start']
[u'bronco', u'light', u'work', u'cowboy']
[u'brumbi', u'look', u'forward', u'semi', u'final']
[u'budget', u'focus', u'health', u'educ', u'democrat']
[u'bull', u'sink', u'shark']
[u'bush', u'donat', u'fund', u'tornado', u'victim']
[u'busi', u'urg', u'retain', u'older', u'worker']
[u'medic', u'student', u'select', u'chang']
[u'call', u'resign', u'continu']
[u'call', u'fund', u'autism', u'program']
[u'capirossi', u'grab', u'spanish', u'pole']
[u'cecchinello', u'hold', u'spanish', u'repeat']
[u'claim', u'govt', u'boost', u'doctor', u'number', u'rural']
[u'clijster', u'break', u'capriati', u'jinx']
[u'wont', u'support', u'nuclear', u'wast', u'dump']
[u'congan', u'death', u'toll', u'exceed', u'airport', u'sourc']
[u'costello', u'say', u'aust', u'role', u'iraq', u'cost']
[u'crean', u'meet', u'beazley', u'week']
[u'crow', u'lose', u'carey', u'lion', u'clash']
[u'csiro', u'staff', u'demand', u'fund']
[u'darwin', u'busi', u'evacu', u'leak']
[u'delay', u'take', u'sick', u'detaine', u'hospit', u'lawyer']
[u'dem', u'announc', u'fund', u'plan', u'royal', u'commiss']
[u'detaine', u'releas', u'hospit']
[u'dortmund', u'second', u'ricken', u'doubl']
[u'driver', u'court', u'kill', u'phone']
[u'eagl', u'edg', u'cat', u'saint', u'march']
[u'egypt', u'recov', u'ancient', u'treasur']
[u'kill', u'kashmir', u'violenc']
[u'eriksson', u'readi', u'rooney']
[u'ferrero', u'follow', u'agassi', u'hamburg', u'master']
[u'francou']
[u'step', u'anti', u'abus', u'group']
[u'futur', u'hand', u'costello']
[u'gold', u'coast', u'monitor', u'sar']
[u'govt', u'urg', u'commit', u'pay', u'matern', u'leav']
[u'hoddl', u'vow', u'revers', u'spur', u'slump']
[u'horan', u'turn', u'red', u'offer']
[u'cancer', u'fear', u'unfound', u'surgeon']
[u'caus', u'breast', u'cancer', u'expert']
[u'india', u'conduct', u'second', u'test', u'missil']
[u'indonesia', u'name', u'aceh', u'rebel', u'leader', u'bomb', u'suspect']
[u'iverson', u'shin', u'philadelphia', u'beat', u'detroit']
[u'japan', u'edg', u'young', u'australian']
[u'johnson', u'turn', u'attent', u'europ']
[u'jone', u'extend', u'lead', u'lpga', u'event']
[u'juventus', u'italian', u'leagu', u'titl']
[u'kennelli', u'take', u'tahiti', u'event']
[u'kojonup', u'farmer', u'lib', u'senat', u'ticket']
[u'lara', u'keep', u'windi', u'contest']
[u'lara', u'keep', u'windi', u'touch']
[u'lara', u'waugh', u'escap', u'censur']
[u'laurinel', u'argi', u'win']
[u'learner', u'driver', u'limit']
[u'luger', u'confirm', u'perpignan']
[u'magpi', u'savour', u'miracl']
[u'appear', u'court', u'murder', u'high']
[u'arrest', u'polic', u'biggest', u'haul']
[u'arrest', u'polic', u'huge', u'haul']
[u'hospit', u'balconi', u'fall', u'perth', u'casino']
[u'injur', u'fall', u'casino', u'balconi']
[u'remand', u'custodi', u'wilmot', u'shoot']
[u'mantilla', u'face', u'feder', u'rome', u'final']
[u'face', u'sydney', u'court', u'girl', u'murder']
[u'court', u'kill', u'phone', u'booth']
[u'marsh', u'percent', u'english', u'report']
[u'mass', u'grave', u'chechnya', u'contain', u'bodi']
[u'melbourn', u'woman', u'clear', u'sar']
[u'monaco', u'marseill', u'stumbl']
[u'montgomeri', u'brush', u'chamber', u'record', u'threat']
[u'moreau', u'claim', u'yellow', u'jersey']
[u'sar', u'treatment', u'claim', u'team']
[u'question', u'hollingworth', u'crean']
[u'northern', u'spirit', u'fight', u'draw']
[u'legal', u'servic', u'push', u'equal', u'right']
[u'parliament', u'hous', u'throw', u'open', u'door']
[u'open', u'steer', u'australia', u'track']
[u'open', u'steer', u'australia', u'strong', u'posit']
[u'pakistan', u'skittl', u'zealand']
[u'palestinian', u'kill', u'isra', u'west', u'bank', u'ambush']
[u'parent', u'teen', u'away', u'gold', u'coast']
[u'pasminco', u'west', u'coast', u'council', u'winner']
[u'petacchi', u'lead', u'italian', u'doubl']
[u'contact', u'bacon', u'decis']
[u'go', u'green']
[u'polic', u'appeal', u'help', u'father', u'attack']
[u'polic', u'prepar', u'massiv', u'secur', u'oper']
[u'port', u'arthur', u'unveil', u'tourist', u'attract']
[u'portugues', u'reveng', u'match', u'call']
[u'powel', u'call', u'palestinian', u'disarm', u'milit']
[u'powel', u'meet', u'sharon', u'push', u'peac', u'plan']
[u'priest', u'massacr', u'congo', u'worker']
[u'nat', u'select', u'fisher', u'keppel', u'contest']
[u'rare', u'potoroo', u'coloni', u'southern']
[u'real', u'leav', u'door', u'open', u'championship', u'challeng']
[u'real', u'leav', u'door', u'open', u'championship']
[u'sar', u'case', u'worsen', u'asia', u'eas', u'canada']
[u'school', u'mainten', u'taskforc', u'wast', u'time']
[u'scientist', u'trawl', u'tasman', u'search']
[u'second', u'drive', u'shoot', u'sydney', u'day']
[u'shave', u'report', u'consid', u'comeback']
[u'shiit', u'leader', u'return', u'tackl', u'iraq', u'sanction']
[u'singaporean', u'nurs', u'die', u'sar', u'rais', u'death']
[u'sorenstam', u'open', u'stroke', u'lead', u'tokyo']
[u'stamp', u'coin', u'issu', u'mark', u'princ', u'william']
[u'stormer', u'season', u'high', u'note']
[u'studi', u'show', u'mother', u'volunt']
[u'support', u'jone', u'replac', u'fel', u'accc', u'chief']
[u'suspect', u'sar', u'patient', u'melbourn', u'hospit']
[u'swan', u'upset', u'lion', u'win', u'demon', u'docker']
[u'sydney', u'doctor', u'continu', u'tobin', u'work']
[u'govt', u'acknowledg', u'feder', u'help', u'abetz']
[u'taskforc', u'probe', u'school', u'mainten']
[u'push', u'voluntari', u'euthanasia']
[u'support', u'group', u'call', u'resign']
[u'teen', u'hurt', u'gatecrash', u'storm', u'adelaid', u'parti']
[u'investig', u'sar', u'australia']
[u'belfri', u'lead']
[u'tom', u'event']
[u'kill', u'northern', u'india']
[u'monitor', u'sar', u'australia']
[u'charg', u'arson', u'hous']
[u'hospit', u'sydney', u'shoot']
[u'ullrich', u'unconcern', u'tour', u'despit', u'team']
[u'unwant', u'lyle', u'set', u'sight', u'ryder', u'captainci']
[u'warn', u'catastroph', u'congo', u'fight', u'go']
[u'congress', u'committe', u'approv', u'nuclear']
[u'expert', u'tackl', u'sar']
[u'iran', u'hold', u'direct', u'talk', u'geneva', u'offici']
[u'exel', u'provid', u'tell', u'finish', u'dalla', u'edg']
[u'critic', u'time', u'educ']
[u'green', u'hop', u'scuttl', u'nuclear', u'dump', u'plan']
[u'waratah', u'fall', u'hurdl']
[u'warm', u'sorenstam']
[u'wenger', u'hop', u'regain', u'titl']
[u'wolv', u'edg', u'read', u'sheffield', u'forc', u'draw']
[u'woman', u'attack', u'outsid', u'home']
[u'women', u'shoot', u'chest', u'disturb', u'thiev']
[u'clear', u'macquari', u'ownership', u'inquiri']
[u'win', u'logi']
[u'accommod', u'shortag', u'gladston']
[u'aceh', u'ceasefir', u'close', u'collaps']
[u'agenc', u'call', u'order', u'iraq']
[u'albion', u'park', u'resid', u'talk', u'telstra', u'countri']
[u'amrozi', u'face', u'court', u'bali', u'blast']
[u'amrozi', u'front', u'court', u'bali', u'trial', u'begin']
[u'amrozi', u'appear', u'court']
[u'amrozi', u'trial', u'adjourn', u'week']
[u'angler', u'rescu', u'boat', u'ordeal']
[u'ansett', u'pilot', u'legal', u'action', u'lose', u'wag']
[u'anti', u'hoon', u'law', u'work', u'coast', u'mcgradi']
[u'suspend', u'solomon', u'island', u'bank', u'oper']
[u'arm', u'fisheri', u'boat', u'return', u'catch']
[u'armi', u'worm', u'woe']
[u'arsenal', u'pair', u'uncertain', u'final']
[u'arson', u'charg', u'drop', u'woomera', u'detaine']
[u'aussi', u'dollar', u'hit', u'year', u'high']
[u'australia', u'bowl', u'second', u'inning']
[u'australian', u'fruit', u'vege', u'singapor', u'market']
[u'award', u'rove', u'popular', u'person']
[u'bank', u'promina', u'market', u'higher']
[u'beazley', u'urg', u'loyal']
[u'better', u'rain', u'tip', u'south', u'east', u'coast']
[u'blackburn', u'secur', u'uefa', u'place']
[u'bourdai', u'win', u'german', u'zanardi', u'steal']
[u'bremer', u'land', u'basra']
[u'bridgetown', u'elector', u'plan', u'upset']
[u'british', u'flee', u'paper', u'blow', u'cover']
[u'budget', u'doesnt', u'worri', u'csiro', u'marin', u'chief']
[u'budget', u'reveal', u'higher', u'educ', u'reform']
[u'busi', u'urg', u'prepar', u'cyber', u'crime']
[u'cafl', u'develop', u'clearer', u'player', u'report', u'polici']
[u'tourism', u'oper', u'trade', u'tour']
[u'mental', u'health', u'program']
[u'canada', u'strike', u'gold', u'hockey', u'champ']
[u'carr', u'rule', u'feder', u'aspir']
[u'castronev', u'grab', u'indi', u'pole']
[u'charg', u'lay', u'schoolyard', u'fight']
[u'chelsea', u'beat', u'liverpool', u'champion', u'leagu']
[u'chelsea', u'claim', u'champion', u'leagu', u'spot']
[u'chief', u'minist', u'critic', u'propos', u'law']
[u'chook', u'stress', u'microscop']
[u'civilian', u'massacr', u'fight', u'congo', u'town']
[u'claim', u'csiro', u'ami', u'budget', u'shake']
[u'club', u'challeng', u'council', u'decis', u'tabl']
[u'concern', u'air', u'nuclear', u'wast', u'spill', u'potenti']
[u'confer', u'hear', u'cultur', u'import']
[u'consum', u'confid', u'highest', u'year', u'poll']
[u'costello', u'urg', u'hand', u'care', u'budget']
[u'council', u'approv', u'marina', u'plan']
[u'council', u'await', u'news', u'super', u'contribut']
[u'council', u'survey', u'public', u'servic']
[u'court', u'hear', u'broom', u'nativ', u'titl', u'claim']
[u'crean', u'beazley', u'face']
[u'crean', u'demand', u'caucus', u'uniti']
[u'crean', u'trade', u'blow', u'suppress', u'order']
[u'crimin', u'team', u'card', u'scam', u'polic']
[u'critic', u'prompt', u'shake', u'leadership', u'iraq']
[u'csiro', u'staff', u'evid', u'budget', u'cut']
[u'csiro', u'virus', u'research', u'target', u'cane', u'toad']
[u'dairi', u'project', u'get', u'boost']
[u'dee', u'danih']
[u'democrat', u'plan', u'debat', u'despit', u'senat']
[u'deputi', u'conven', u'ethanol', u'product', u'meet']
[u'dollar', u'hit', u'year', u'high']
[u'dozen', u'kill', u'chechnya', u'bomb', u'blast']
[u'driver', u'urg', u'buckl']
[u'drought', u'blame', u'shepherd', u'woe']
[u'drug', u'crop', u'accus', u'refus', u'bail']
[u'drug', u'test', u'save', u'bunni', u'knife']
[u'drink', u'polish', u'bishop', u'face', u'prison', u'drink', u'drive']
[u'reject', u'leav', u'farmer', u'dismay']
[u'estudiant', u'maintain', u'unbeaten', u'record']
[u'explos', u'hit', u'ireland', u'unionist', u'parti']
[u'expo', u'repeat', u'year']
[u'famili', u'surplus', u'labor']
[u'fan', u'throw', u'money', u'cruzeiro', u'cruis', u'victori']
[u'farmer', u'drought']
[u'farmer', u'seek', u'climat', u'map', u'scheme']
[u'feder', u'fund', u'drought', u'recoveri', u'work']
[u'govt', u'urg', u'road', u'fund', u'pledg']
[u'put', u'temco', u'product']
[u'fish', u'hook', u'budget', u'fund']
[u'footbal', u'scoreboard', u'lose']
[u'priest', u'jail', u'child', u'abus']
[u'right', u'group', u'lobbi']
[u'gold', u'coast', u'monitor', u'sar']
[u'goldfield', u'place', u'nuclear', u'wast', u'dump', u'green']
[u'govt', u'confid', u'bali', u'blast', u'trial', u'process', u'ellison']
[u'govt', u'good', u'posit', u'increas', u'employ']
[u'govt', u'pleas', u'delay', u'river', u'murray', u'decis']
[u'govt', u'reject', u'vic', u'doubl', u'scienc', u'fund']
[u'govt', u'match', u'commit', u'pipelin']
[u'govt', u'homeless', u'famili', u'studi']
[u'govt', u'creat', u'extra', u'student', u'doctor', u'place']
[u'green', u'light', u'communiti', u'garden']
[u'green', u'budget', u'fight']
[u'gronholm', u'steal', u'argentina']
[u'hayden', u'rise', u'caribbean', u'challeng']
[u'help', u'hand', u'fight', u'domest', u'violenc']
[u'henin', u'hardenn', u'win', u'belgian', u'battl']
[u'hospit', u'get', u'facil', u'boost', u'babi']
[u'hotel', u'extinguish']
[u'cool', u'casey', u'captur', u'belfri', u'titl']
[u'indian', u'fishermen', u'warn', u'cyclon', u'brew']
[u'indonesian', u'offici', u'bali', u'bomb', u'suspect']
[u'inquiri', u'announc', u'altern', u'medicin']
[u'internet', u'secur', u'spotlight']
[u'investig', u'plan', u'mechan', u'fault']
[u'iran', u'ban', u'dozen', u'websit', u'polit']
[u'iraqi', u'spi', u'infiltr', u'jazeera', u'news', u'channel']
[u'iraqi', u'tell', u'saddam', u'parti', u'dissolv']
[u'israel', u'announc', u'palestinian', u'goodwil', u'gestur']
[u'isra', u'armi', u'close', u'gaza', u'strip']
[u'israel', u'eas', u'life', u'palestinian', u'powel']
[u'evid', u'challeng', u'polic', u'royal', u'commiss']
[u'labor', u'air', u'concern', u'research', u'bodi']
[u'laker', u'level', u'score', u'spur']
[u'lyon', u'clinch', u'champion', u'leagu', u'spot']
[u'mackay', u'court', u'death']
[u'charg', u'stab']
[u'die', u'road', u'crash']
[u'die', u'traffic', u'crash']
[u'manhunt', u'underway', u'alight', u'japan']
[u'kill', u'accid']
[u'manoora', u'leav', u'gulf']
[u'mantilla', u'master', u'rome']
[u'face', u'court', u'assault', u'charg']
[u'face', u'court', u'church']
[u'maroon', u'tour', u'lang', u'park']
[u'meet', u'council', u'super', u'woe']
[u'mcewen', u'strip', u'giro']
[u'memori', u'celebr', u'victoria', u'cross', u'recipi']
[u'militari', u'museum', u'pay']
[u'mix', u'respons', u'plan', u'nuclear', u'wast', u'dump', u'site']
[u'moreau', u'win', u'way', u'dunkirk', u'day']
[u'murray', u'promis', u'field', u'best', u'avail', u'citi']
[u'nation', u'park', u'cull', u'underway']
[u'neil', u'fisher', u'choos', u'nat', u'keppel', u'candid']
[u'nativ', u'titl', u'applic', u'lodg']
[u'york', u'time', u'expos', u'fraud', u'report']
[u'victorian', u'side', u'domin']
[u'age', u'care', u'nurs', u'mount', u'rise', u'campaign']
[u'nurs', u'special', u'highlight', u'woe']
[u'offici', u'bali', u'bomb', u'suspect', u'guilti']
[u'ohara', u'receiv', u'countri']
[u'vessel', u'sink', u'coast', u'india']
[u'peac', u'monitor', u'leav', u'aceh', u'loom']
[u'petrol', u'sniff', u'health', u'care', u'time', u'bomb', u'nurs']
[u'philippin', u'polic', u'arrest', u'bomb']
[u'tanner', u'move', u'lift', u'suppress']
[u'polic', u'continu', u'investig', u'dri', u'cannabi']
[u'polic', u'hunt', u'arm', u'bandit']
[u'polic', u'probe', u'fuel', u'depot', u'attack']
[u'possibl', u'sar', u'suffer', u'remain', u'hospit']
[u'powel', u'urg', u'isra', u'palestinian']
[u'power', u'station', u'mainten', u'worker', u'strike']
[u'promina', u'share', u'begin', u'trade', u'today']
[u'promina', u'share', u'jump', u'float']
[u'govt', u'urg', u'maintain', u'grant', u'pressur']
[u'queen', u'tell', u'decis', u'step']
[u'railway', u'oper', u'fundrais', u'drive']
[u'rain', u'take', u'area', u'drought', u'list']
[u'ranger', u'scotland']
[u'real', u'sociedad', u'jump', u'second', u'place']
[u'research', u'bumper', u'whale', u'breed', u'season']
[u'resid', u'rebuild', u'blaze']
[u'rooney', u'remov', u'english', u'squad']
[u'rosi', u'jone', u'break', u'drought']
[u'rossi', u'reign', u'spain', u'bayliss']
[u'ryan', u'lobbi', u'state', u'drought']
[u'govt', u'reject', u'school', u'closur', u'claim']
[u'sar', u'prospect', u'remain', u'grim', u'chines', u'premier']
[u'shed', u'transform', u'public']
[u'shire', u'presid', u'elect']
[u'paul', u'rock', u'rome']
[u'korea', u'urg', u'bush', u'sign', u'nuclear', u'peac', u'pledg']
[u'smec', u'worker', u'help', u'rebuild', u'iraq']
[u'sniffer', u'dog', u'patrol', u'parliament', u'hous']
[u'social', u'conflict', u'fear', u'unfound', u'mosqu', u'propon']
[u'solomon', u'island', u'bank', u'close', u'protest']
[u'southcorp', u'chief', u'blame', u'trade', u'condit', u'slump']
[u'southcorp', u'share', u'plung', u'earn', u'forecast']
[u'spirit', u'forc', u'draw']
[u'studi', u'consid', u'bushfir', u'long', u'term', u'health']
[u'survey', u'consid', u'recal', u'impact']
[u'talk', u'plan', u'council', u'super', u'woe']
[u'teacher', u'welcom', u'pledg', u'tape']
[u'teenag', u'appear', u'court', u'murder']
[u'teen', u'stand', u'trial', u'kill', u'train']
[u'thousand', u'flock', u'mayb', u'burrandowan', u'race']
[u'thousand', u'quarantin', u'china', u'sar']
[u'time', u'frame', u'chang', u'murray', u'flow', u'decis']
[u'tom', u'triumph', u'north', u'carolina']
[u'german', u'literatur', u'prize', u'award', u'alexand']
[u'minist', u'resign', u'iraq', u'conflict']
[u'tougher', u'control', u'moot', u'alcohol', u'outlet']
[u'treason', u'trial', u'resum', u'zimbabw']
[u'troop', u'head', u'iraq', u'peacekeep']
[u'truss', u'defend', u'drought', u'fund', u'decis']
[u'probabl', u'sar', u'case', u'report', u'australia']
[u'peopl', u'hospit', u'home', u'invas']
[u'attack', u'secur', u'guard']
[u'look', u'egypt', u'peac', u'plan', u'support']
[u'reorganis', u'iraqi', u'oper', u'face']
[u'wind', u'hunt', u'report']
[u'warn', u'plant', u'wheat', u'plot']
[u'govt', u'minist', u'head', u'horsham']
[u'govt', u'salin', u'fund']
[u'warn', u'end', u'job', u'scheme', u'wider', u'impact']
[u'warn', u'issu', u'petrol', u'sniff', u'cost']
[u'weighti', u'challeng', u'face', u'wellington', u'resid']
[u'west', u'releg']
[u'whale', u'breed', u'season', u'predict']
[u'windi', u'begin', u'chase']
[u'windi', u'stage', u'fightback']
[u'winton', u'forum', u'health', u'spotlight']
[u'woman', u'injur', u'tamworth', u'attack']
[u'zimbabw', u'opposit', u'leader', u'treason', u'trial', u'resum']
[u'dead', u'dozen', u'hurt', u'saudi', u'blast']
[u'condemn', u'mcgrath', u'bust']
[u'condemn', u'field', u'antic']
[u'accc', u'wont', u'oppos', u'plan', u'takeov']
[u'accus', u'driver', u'get', u'bail']
[u'properti', u'market', u'flatten']
[u'agre', u'contact', u'rule', u'chang']
[u'keen', u'bounc']
[u'aid', u'biggest', u'human', u'tragedi', u'dean']
[u'airlin', u'make', u'concess', u'push', u'ahead']
[u'ord', u'rise', u'ahead', u'budget']
[u'ambul', u'servic', u'add', u'strain']
[u'anniversari', u'sink', u'centaur']
[u'art', u'expenditur', u'maintain']
[u'athen', u'olymp', u'game', u'ticket', u'sale']
[u'dead', u'riyadh', u'explos']
[u'atsic', u'split']
[u'australia', u'hop', u'quick', u'wicket']
[u'australian', u'dead', u'saudi', u'bomb', u'qaeda']
[u'australian', u'invinc', u'toshack', u'dead']
[u'australian', u'kill', u'saudi', u'bomb', u'blast']
[u'australian', u'testifi', u'bali', u'bomb', u'trial']
[u'austria', u'farewel', u'formula']
[u'backbench', u'fair']
[u'beatti', u'tabl', u'lengthi', u'critiqu']
[u'blast', u'rock', u'mildura', u'hous']
[u'blue', u'selector', u'origin', u'challeng']
[u'brother', u'fail', u'court', u'compani']
[u'brother', u'order', u'face', u'court', u'group', u'woe']
[u'budget', u'point']
[u'budget', u'surplus', u'prioriti', u'costello']
[u'budget', u'profound', u'differ', u'state', u'brack']
[u'build', u'evacu', u'partial', u'collaps']
[u'budget', u'boost', u'research', u'centr']
[u'cann', u'come', u'aliv', u'film', u'festiv', u'start']
[u'cathol', u'school', u'close', u'door']
[u'caucau', u'lomu', u'super', u'semi', u'final']
[u'claim', u'cours', u'chang', u'dump', u'oper']
[u'clean', u'begin', u'flood', u'sydney']
[u'colin', u'powel', u'arriv', u'saudi', u'follow', u'bomb']
[u'communiti', u'urg', u'join', u'basslink', u'monitor', u'group']
[u'concern', u'air', u'bypass', u'plan']
[u'condobolin', u'rlpb', u'applic']
[u'conserv', u'group', u'budget', u'fail']
[u'costello', u'reveal', u'billion', u'surplus', u'cut']
[u'council', u'approv', u'board', u'kennel']
[u'councillor', u'reject', u'rise', u'idea']
[u'council', u'tell', u'reserv', u'best', u'site', u'age', u'care', u'centr']
[u'court', u'hear', u'determin', u'nativ', u'titl', u'continu']
[u'court', u'hear', u'jihad', u'suburb']
[u'court', u'start', u'hear', u'nativ', u'titl', u'case']
[u'csiro', u'get', u'boost']
[u'death', u'toll', u'chechnya', u'blast', u'rise']
[u'defenc', u'get', u'boost']
[u'defo', u'line', u'leav', u'hammer']
[u'defo', u'hand', u'west', u'transfer', u'request']
[u'canio', u'blast', u'hammer', u'board']
[u'doctor', u'group', u'hop', u'budget']
[u'dozen', u'wound', u'riyadh', u'blast']
[u'dutch', u'doctor', u'get', u'visa']
[u'dwyer', u'step', u'waratah', u'coach']
[u'educ', u'reform', u'centrepiec', u'budget']
[u'fear', u'research', u'centr', u'forc', u'merger']
[u'feder', u'govt', u'urg', u'focus', u'essenti']
[u'fina', u'consid', u'hackett', u'propos']
[u'fisher', u'export', u'flight', u'detail']
[u'flinder', u'repair', u'continu', u'summer', u'bushfir']
[u'florida', u'claim', u'wife', u'tri', u'kill']
[u'fund', u'boost', u'relationship', u'counsel', u'servic']
[u'fund', u'steadi']
[u'germani', u'track', u'world']
[u'govt', u'accus', u'polit', u'vendetta', u'stop']
[u'govt', u'vaccin', u'worker', u'fever', u'union']
[u'govt', u'fight', u'health']
[u'govt', u'unveil', u'rural', u'relief', u'packag']
[u'grainco', u'merger', u'consid']
[u'green', u'want', u'region', u'focus', u'transport', u'probe']
[u'green', u'swear', u'thursday']
[u'group', u'surpris', u'home', u'ownership', u'figur']
[u'group', u'slam', u'ruddock', u'respons', u'child', u'detaine']
[u'gunner', u'head', u'chanc', u'saloon']
[u'hacker', u'caus', u'major', u'damag', u'confer', u'hear']
[u'hackett', u'complain', u'fina', u'schedul']
[u'harrison', u'torren', u'join', u'stone', u'sidelin']
[u'health', u'group', u'budget', u'littl', u'address']
[u'health', u'servic', u'suspend', u'surgeri']
[u'heavi', u'rain', u'caus', u'chao', u'sydney']
[u'hendrix', u'bass', u'player', u'die']
[u'higher', u'educ', u'shake']
[u'hong', u'kong', u'doctor', u'die', u'sar']
[u'hope', u'feder', u'budget', u'fund']
[u'horsham', u'councillor', u'tour', u'region']
[u'hous', u'boom']
[u'howard', u'welcom', u'home', u'raaf', u'troop']
[u'banger', u'winner', u'whatmor']
[u'india', u'name', u'ambassador', u'pakistan']
[u'inmat', u'insid', u'evacu']
[u'intern', u'atsic', u'chief', u'resign']
[u'isra', u'prepar', u'talk', u'leader']
[u'jackson', u'return', u'surgeri', u'game']
[u'jenkin', u'boot', u'quit', u'intern', u'stage']
[u'agenc', u'feel', u'fund', u'cut']
[u'johnson', u'say', u'respect', u'rival']
[u'kookaburra', u'team', u'challeng']
[u'kookaburra', u'squad', u'finalis']
[u'labor', u'urg', u'approv', u'medicar', u'chang']
[u'lester', u'welcom', u'candid']
[u'limit', u'spend', u'budget', u'wagga']
[u'lobster', u'tail', u'clip', u'practic', u'review']
[u'macquari', u'bank', u'share', u'jump', u'profit', u'result']
[u'face', u'assault', u'abduct', u'charg']
[u'marsh', u'upbeat', u'worcestershir']
[u'martinez', u'upset', u'dokic', u'rome', u'master']
[u'meatwork', u'face', u'uncertain', u'futur']
[u'meet', u'offer', u'advic', u'drought', u'victim']
[u'michael', u'jackson', u'sue', u'record', u'label', u'million']
[u'miwatj', u'health', u'clinic', u'disput', u'public', u'domain']
[u'mix', u'reaction', u'budget', u'univers', u'reform']
[u'mix', u'respons', u'beatti', u'schooli', u'comment']
[u'montoya', u'speed', u'cost', u'licenc']
[u'answer', u'want', u'pipelin', u'fund']
[u'call', u'court', u'revamp']
[u'mayor', u'return', u'margin']
[u'mother', u'await', u'bali', u'bomb', u'trial', u'outcom']
[u'moy', u'name', u'manag', u'year']
[u'air', u'nuclear', u'wast', u'transport', u'concern']
[u'back', u'crean', u'threat', u'action']
[u'speak', u'nuclear', u'wast', u'dump']
[u'multi', u'nation', u'approach', u'tackl', u'crime']
[u'murali', u'leav', u'spin']
[u'murder', u'trial', u'enter', u'second']
[u'music', u'help', u'bolster', u'school', u'attend']
[u'nanni', u'charg', u'toddler', u'rap']
[u'net', u'sweep', u'celtic']
[u'campaign', u'erad', u'polio']
[u'law', u'introduc', u'follow', u'scandal']
[u'mayor', u'push', u'greater', u'uniti']
[u'club', u'endors', u'current']
[u'govt', u'outback', u'challeng']
[u'number', u'home', u'loan', u'continu', u'rise']
[u'nurs', u'honour', u'award']
[u'time', u'await', u'fallout', u'journalist', u'lie']
[u'ombudsman', u'report', u'increas', u'complaint']
[u'overnight', u'stab', u'possibl', u'bash']
[u'rule', u'royal', u'commiss', u'child', u'sexual']
[u'polic', u'commiss', u'reveal', u'secret', u'record']
[u'polic', u'probe', u'babi', u'death']
[u'polit', u'put', u'foreshor', u'opposit']
[u'power', u'station', u'worker', u'return', u'work']
[u'prison', u'wing', u'evacu', u'pipe', u'burst']
[u'public', u'access', u'fish', u'boat', u'item']
[u'public', u'nois', u'review']
[u'qanta', u'allianc', u'approv']
[u'reshuffl', u'see', u'mcewen']
[u'resid', u'super', u'anger']
[u'resid', u'flee', u'kill', u'fight', u'bunia']
[u'rfds', u'hire', u'extra', u'pilot', u'amidst', u'disput']
[u'road', u'congress', u'includ', u'outback', u'highway', u'talk']
[u'artist', u'work', u'york']
[u'sale', u'defenc', u'build', u'abandon']
[u'sandra', u'bullock', u'gain', u'restrain', u'order']
[u'sarwan', u'relish', u'test', u'best']
[u'paedophil', u'regist']
[u'senat', u'block', u'budget', u'element']
[u'sepeng', u'drop', u'south', u'africa', u'world', u'team']
[u'seventh', u'suprem', u'court', u'judg', u'need', u'urgent', u'hodgman']
[u'sever', u'weather', u'warn', u'illawarra']
[u'shock', u'loss', u'race', u'restrucutur']
[u'shock', u'result', u'local', u'govt', u'elect']
[u'sixer', u'tyron', u'hill', u'sidelin', u'calf', u'tear']
[u'slack', u'get', u'vote', u'confid', u'red', u'manag']
[u'smith', u'wield']
[u'springbok', u'captain', u'player']
[u'srichaphan', u'struggl', u'clay', u'continu']
[u'stakeknif', u'deni', u'british', u'mole']
[u'straeuli', u'narrow', u'springbok', u'captain', u'choic']
[u'strike', u'action', u'franc', u'close', u'school']
[u'student', u'face', u'court', u'onlin', u'piraci', u'charg']
[u'sugar', u'industri', u'hop', u'budget', u'sweeten']
[u'suicid', u'bomber', u'blame', u'saudi', u'attack']
[u'taiwan', u'hard', u'sar', u'outbreak']
[u'talk', u'continu', u'wallabi', u'world', u'bonus', u'payment']
[u'tamworth', u'target', u'store', u'welcom', u'news']
[u'million', u'govt']
[u'teacher', u'threaten', u'walk', u'disput']
[u'telstra', u'sale']
[u'territori', u'woman', u'hospitalis', u'buffalo', u'attack']
[u'time', u'resign', u'labor']
[u'townsvill', u'hop', u'budget', u'boost']
[u'tree', u'plant', u'program', u'restor', u'endang']
[u'tribut', u'pay', u'australian', u'ralli', u'champion']
[u'truck', u'lobbi', u'air', u'budget', u'doubt']
[u'tuckey', u'hop', u'extend', u'fund']
[u'umpir', u'wear', u'brighter', u'colour']
[u'uncompromis', u'inter', u'seek', u'dispel', u'death']
[u'underground', u'wineri', u'readvertis', u'sale']
[u'union', u'resolv', u'ukrainian', u'ship', u'disput']
[u'unit', u'state', u'play', u'davi', u'bratislava']
[u'captur', u'iraq', u'germ']
[u'hint', u'qaeda', u'involv', u'saudi', u'bomb']
[u'vice', u'chancellor', u'hope', u'reform', u'step', u'right']
[u'vic', u'judiciari', u'access', u'judici', u'colleg']
[u'villa', u'pair', u'give', u'free', u'transfer']
[u'watson', u'stick', u'tiger']
[u'webber', u'number', u'walker']
[u'webber', u'say', u'pizzonia', u'poor', u'form', u'frustrat']
[u'welcom', u'home', u'ceremoni', u'begin', u'week']
[u'west', u'refus', u'defo', u'transfer', u'request']
[u'whitnal', u'knee', u'injuri']
[u'woman', u'child', u'aliv', u'fatal', u'hous', u'blaze']
[u'woman', u'plead', u'guilti', u'nulla', u'nulla', u'death']
[u'women', u'medic', u'scholarship']
[u'miss', u'tourist', u'aliv', u'algeria']
[u'kill', u'chines', u'explos']
[u'aceh', u'rebel', u'surrend', u'indonesia']
[u'action', u'group', u'say', u'depart', u'store', u'decis']
[u'plead', u'guilti', u'offenc']
[u'boss', u'signal', u'salari', u'crackdown']
[u'injuri', u'lowest', u'level', u'year']
[u'agforc', u'question', u'budget', u'drought', u'fund']
[u'ord', u'drop', u'cent']
[u'alonso', u'face', u'difficult', u'race', u'austria', u'renault']
[u'ambo', u'concern', u'grow', u'number', u'taxi', u'rid']
[u'amnesti', u'call', u'releas', u'children']
[u'credit', u'rat', u'downgrad']
[u'atsic', u'commission', u'say', u'petrol', u'help']
[u'atsic', u'deputi', u'label', u'commission', u'ratbag']
[u'atsic', u'overhaul', u'poor', u'perform', u'anderson']
[u'atsic', u'split', u'label', u'backward', u'step']
[u'australia', u'test', u'championship']
[u'bayer', u'sack', u'coach', u'horster']
[u'brack', u'reject', u'govt', u'freeway', u'offer']
[u'british', u'entrepreneur', u'open', u'inflat', u'church']
[u'brown', u'suffer', u'fresh', u'injuri', u'problem']
[u'budget', u'benefit', u'hunter']
[u'budget', u'benefit', u'south', u'east']
[u'budget', u'boost', u'expect', u'campus']
[u'budget', u'doesnt', u'fund', u'nuclear', u'dump', u'govt']
[u'budget', u'drive', u'aussi', u'dollar']
[u'budget', u'merg', u'screensound']
[u'budget', u'mild', u'posit', u'aussi', u'dollar', u'dealer']
[u'budget', u'offer', u'airport', u'secur', u'boost']
[u'budget', u'prove', u'costello', u'lead', u'abbott']
[u'budget', u'benefit', u'gippsland', u'mcgauran']
[u'budget', u'access', u'govt']
[u'bulldoz', u'unearth', u'mass', u'grave', u'iraq']
[u'bushfir', u'recoveri', u'drop']
[u'bushfir', u'risk', u'assess']
[u'busi', u'leader', u'welcom', u'budget']
[u'region', u'theatr', u'boost']
[u'canberra', u'fire', u'cost', u'wednesday']
[u'census', u'find', u'frog', u'melbourn']
[u'centaur', u'survivor', u'attend', u'caloundra', u'ceremoni']
[u'china', u'death', u'toll']
[u'chines', u'court', u'sentenc', u'death', u'fraud']
[u'claim', u'univers', u'budget', u'winner']
[u'cobb', u'welcom', u'budget', u'initi']
[u'comedian', u'chong', u'admit', u'marijuana', u'equip', u'sale']
[u'committe', u'consid', u'petrol', u'free', u'zone']
[u'concern', u'school', u'hide', u'perform']
[u'conflict', u'report', u'saudi', u'bomb', u'toll']
[u'congress', u'tell', u'indigen', u'mental', u'health']
[u'consum', u'sentiment', u'survey', u'show', u'rise']
[u'costello', u'call', u'brack', u'abandon', u'freeway', u'toll']
[u'costello', u'criticis', u'irrespons', u'senat']
[u'costello', u'hint', u'temporari', u'replac', u'fel']
[u'council', u'restructur', u'consider']
[u'council', u'appeal', u'compo', u'payout']
[u'cpsu', u'call', u'state', u'boycott', u'tertiari', u'chang']
[u'crean', u'want', u'best', u'world', u'costello']
[u'crew', u'chemic', u'spill', u'feder']
[u'csiro', u'staff', u'concern', u'despit', u'fund', u'boost']
[u'curtin', u'vice', u'chancellor', u'criticis', u'tertiari', u'chang']
[u'dairi', u'farmer', u'share', u'strategi']
[u'defend', u'relianc', u'promot', u'levi']
[u'debat', u'budget', u'drought', u'packag']
[u'democrat', u'urg', u'govt', u'match', u'reef', u'fund']
[u'doctor', u'complain', u'heroin', u'death', u'villawood']
[u'doctor', u'group', u'hop', u'budget', u'benefit']
[u'dublin', u'fin', u'savag', u'headbutt']
[u'emerg', u'effort', u'focus', u'central']
[u'expert', u'advic', u'seek', u'port', u'dredg']
[u'fair', u'process', u'urg', u'choos', u'region', u'par']
[u'farmer', u'critic', u'budget', u'benefit']
[u'farmer', u'expect', u'budget', u'focus', u'ethanol']
[u'farmer', u'urg', u'lodg', u'drought', u'applic']
[u'fear', u'budget', u'widen', u'wealth', u'divid']
[u'feder', u'budget', u'fund', u'sturt', u'highway', u'work']
[u'boost', u'individu', u'subject', u'unlik']
[u'fewer', u'resid', u'take', u'home', u'loan']
[u'gulf', u'troop', u'home', u'tomorrow']
[u'flood', u'warn', u'south', u'coast']
[u'foley', u'swear', u'parliament']
[u'footi', u'club', u'review']
[u'fourteen', u'dead', u'chechnya', u'suicid', u'blast']
[u'french', u'cop', u'launch', u'szabo', u'drug', u'probe']
[u'friend', u'give', u'evid', u'murder', u'trial']
[u'good', u'budget']
[u'goondiwindi', u'lose', u'campervan', u'ralli']
[u'govt', u'criticis', u'french', u'embassi', u'upgrad']
[u'govt', u'deliv', u'balanc', u'budget']
[u'govt', u'vow', u'saudi', u'bomber', u'bring', u'justic']
[u'govt', u'compromis', u'hec', u'reform', u'nelson']
[u'griev', u'famili', u'say', u'goodby', u'murder', u'trio']
[u'grim', u'predict', u'central', u'eyr', u'peninsula']
[u'group', u'welcom', u'expand', u'drug', u'treatment', u'scheme']
[u'hawker', u'talk', u'feder', u'budget']
[u'health', u'dept', u'employ', u'mediat', u'health', u'clinic']
[u'health', u'worker', u'protest', u'medicar', u'chang']
[u'high', u'tech', u'farm', u'busi', u'make', u'list']
[u'home', u'owner', u'find', u'loan', u'confus']
[u'hooper', u'harbhajan', u'cover', u'lancashir']
[u'hop', u'resolut', u'crown', u'leas', u'woe']
[u'houllier', u'doubl', u'french', u'swoop']
[u'inquest', u'fail', u'explain', u'elder', u'woman', u'death']
[u'iran', u'condemn', u'saudi', u'bomb', u'attack']
[u'ireland', u'friend', u'vital', u'prepar', u'farina']
[u'irrig', u'face', u'water', u'entitl', u'suspens']
[u'isra', u'soldier', u'report', u'kill', u'palestinian']
[u'ivanisev', u'miss', u'french', u'open']
[u'shevchenko', u'milan', u'edg', u'derbi', u'battl']
[u'kimberley', u'land', u'clear', u'investig']
[u'king', u'brother', u'fail', u'court', u'hear']
[u'knight', u'player', u'join', u'citi', u'countri', u'clash']
[u'labor', u'urg', u'pass', u'medicar', u'chang']
[u'lara', u'savour', u'finest', u'cricket', u'moment']
[u'lewandowski', u'case', u'throw', u'court', u'tell']
[u'lock', u'wool', u'worker', u'target', u'elder']
[u'die', u'stab', u'attack']
[u'jail', u'break', u'enter', u'attack']
[u'jail', u'polic', u'assault']
[u'sentenc', u'shop', u'centr', u'stab']
[u'injur', u'train', u'collid', u'rome']
[u'martin', u'critic', u'budget', u'higher', u'educ']
[u'matern', u'leav', u'agenda', u'senat']
[u'mav', u'beat', u'king', u'pivot', u'fifth', u'game']
[u'mayor', u'clarifi', u'fund', u'prioriti']
[u'mcewen', u'bounc', u'giro', u'triumph']
[u'meet', u'address', u'court', u'custodi', u'facil']
[u'menem', u'quit', u'argentina', u'presidenti', u'race', u'report']
[u'mix', u'budget', u'respons', u'central']
[u'mix', u'reaction', u'feder', u'budget']
[u'mix', u'respons', u'feder', u'budget']
[u'mix', u'respons', u'feder', u'budget', u'educ', u'focus']
[u'dead', u'congo', u'leader', u'hold', u'crisi', u'talk']
[u'talk', u'budget', u'posit', u'sunshin', u'coast']
[u'stromlo', u'observatori', u'get', u'fund', u'rebuild']
[u'mysteri', u'walker', u'quit', u'rabbitoh']
[u'post', u'profit', u'despit', u'downturn']
[u'wont', u'deni', u'possibl', u'takeov']
[u'natwa']
[u'negoti', u'begin', u'patterson', u'properti']
[u'chang', u'salari', u'club', u'boss']
[u'govt', u'slam', u'budget', u'fund', u'nurs']
[u'govt', u'urg', u'decid', u'region']
[u'leaf', u'karratha', u'book', u'martin']
[u'research', u'give', u'budget', u'boost']
[u'seiz', u'vanston', u'remark']
[u'oyster', u'research', u'scheme', u'plan', u'marin', u'centr']
[u'part', u'sydney', u'declar', u'natur', u'disast', u'area']
[u'peac', u'monitor', u'leav', u'indonesia', u'aceh', u'loom']
[u'petit', u'launch', u'oppos', u'nuclear', u'wast', u'transport']
[u'pie', u'player', u'help', u'smith', u'famili', u'kick', u'goal']
[u'player', u'fin', u'antic', u'sacramento']
[u'claim', u'iraq', u'campaign', u'astonish', u'speedi']
[u'criticis', u'public', u'attack', u'meet']
[u'defend', u'evid', u'church', u'inquiri']
[u'sell', u'budget']
[u'polic', u'call', u'high', u'school', u'knife', u'report']
[u'polic', u'probe', u'crash']
[u'politician', u'good', u'budget']
[u'politician', u'upbeat', u'budget', u'benefit']
[u'prison', u'guard', u'appeal', u'order', u'stop', u'see', u'inmat']
[u'probe', u'claim', u'primari', u'school', u'student', u'attack']
[u'produc', u'urg', u'attend', u'meet']
[u'sign', u'coach', u'halilhodz']
[u'govt', u'reject', u'alcohol', u'claim']
[u'premier', u'accus', u'politicis', u'controversi']
[u'rabbitoh', u'lose', u'chris', u'walker']
[u'race', u'industri', u'mourn', u'danehil', u'death']
[u'rape', u'accus', u'claim', u'tortur', u'cambodian', u'polic']
[u'allen', u'win', u'sportsmanship', u'award']
[u'report', u'blast', u'govt', u'sale']
[u'resid', u'question', u'urban', u'plan', u'decis']
[u'rich', u'nation', u'share', u'fight', u'aid']
[u'rogu', u'badger', u'run', u'riot', u'injur']
[u'ronaldo', u'optimist', u'face', u'juventus']
[u'rusedski', u'suffer', u'injuri', u'blow']
[u'rusti', u'hewitt', u'struggl', u'second', u'round']
[u'sarina', u'council', u'monitor', u'water', u'woe']
[u'sarwan', u'mcgrath', u'buri', u'hatchet']
[u'saudi', u'bomber', u'qaeda', u'cell', u'report']
[u'saviour', u'sandal', u'spark', u'controversi', u'denmark']
[u'school', u'custodi', u'alleg', u'arm', u'stand']
[u'sculptor', u'remodel', u'australian', u'galleri']
[u'serena', u'sele', u'sweat', u'win', u'rome']
[u'delug', u'call', u'flash', u'flood']
[u'shevchenko', u'strike', u'send', u'milan', u'champion']
[u'shock', u'parl', u'food', u'plight']
[u'singh', u'back', u'away', u'sorenstam', u'comment']
[u'korean', u'presid', u'hold', u'talk']
[u'small', u'budget', u'alloc', u'roadwork']
[u'socceroo', u'confirm', u'ireland', u'clash']
[u'soorley', u'step', u'year', u'reign']
[u'sorenstam', u'cool', u'amid', u'controversi']
[u'sorenstam', u'cool', u'controversi']
[u'spider', u'boy', u'member', u'charg', u'bomb', u'attack']
[u'spur', u'hold', u'laker', u'seri', u'lead']
[u'lanka', u'tast', u'success', u'atapattu', u'gambl', u'click']
[u'state', u'govt', u'join', u'attack', u'noxious', u'weed']
[u'student', u'ralli', u'chang', u'tertiari']
[u'suspect', u'sar', u'patient', u'sydney', u'hospit']
[u'taiwan', u'report', u'sar', u'death']
[u'farmer', u'lobbi', u'board', u'sale']
[u'govt', u'pool', u'resourc', u'unemploy']
[u'govt', u'call', u'age', u'care', u'overhaul']
[u'treasur', u'disappoint', u'health', u'educ']
[u'cut', u'better', u'howard']
[u'kill', u'isra', u'raid', u'gaza', u'strip']
[u'throw', u'unwelcom', u'spotlight']
[u'sydney', u'road', u'overnight']
[u'captur', u'senior', u'iraqi', u'figur', u'report']
[u'lead', u'fight']
[u'take', u'role', u'case', u'termin', u'woman']
[u'govt', u'target', u'scheme']
[u'villag', u'roadshow', u'shed', u'british', u'cinema', u'chain']
[u'volunt', u'lose', u'rule', u'chang']
[u'close', u'indigen', u'camp']
[u'artist', u'describ', u'edgi', u'gulf', u'experi']
[u'resourc', u'sector', u'steadi']
[u'westralia', u'inquest', u'hear', u'cover']
[u'cautious', u'china', u'claim', u'sar', u'control']
[u'wrong', u'hose', u'lead', u'fatal', u'emwestraliaem']
[u'zidan', u'stand', u'juve', u'success']
[u'australian', u'swim', u'meet']
[u'academ', u'back', u'region', u'parliament', u'plan']
[u'accc', u'take', u'salmon', u'produc', u'court']
[u'aceh', u'rebel', u'will', u'hold', u'talk', u'save', u'peac']
[u'school', u'cleaner', u'stage', u'walk']
[u'adelaid', u'club', u'chang']
[u'administr', u'take', u'oath', u'offic']
[u'eye', u'saudi', u'bomb', u'probe', u'role']
[u'defend', u'fli', u'northern', u'patient', u'brisban']
[u'chairman', u'acknowledg', u'sharehold', u'anger']
[u'south', u'oppon', u'think', u'kefu']
[u'anti', u'woodchip', u'protest', u'face', u'court']
[u'build', u'telescop', u'despit', u'light']
[u'athen', u'olymp', u'game', u'ticket', u'sale']
[u'aussi', u'ordeal', u'loom', u'banger', u'coach', u'whatmor']
[u'australia', u'choos', u'hard', u'court', u'davi']
[u'australia', u'choos', u'hard', u'court', u'davi']
[u'australian', u'warn', u'sar', u'scam']
[u'temper', u'hewitt', u'lash', u'umpir']
[u'bakeri', u'close', u'door']
[u'year', u'predict', u'coal', u'export']
[u'secur', u'review', u'wake', u'wheat', u'virus']
[u'blue', u'crusad', u'favourit', u'super', u'final']
[u'bomber', u'unhappi', u'membership', u'number']
[u'braithwait', u'featur', u'aramac', u'concert']
[u'britain', u'june', u'euro', u'announc']
[u'budget', u'rais', u'concern', u'ethanol', u'project']
[u'bulk', u'bill', u'focus', u'crean', u'budget', u'repli']
[u'bush', u'hold', u'talk', u'north', u'korean', u'impass']
[u'allow', u'mccartney', u'honour', u'bali']
[u'relianc', u'dairi', u'industri']
[u'cancer', u'council', u'form', u'allianc', u'offer', u'support']
[u'cann', u'cruz', u'control', u'carefre', u'start']
[u'cann', u'prepar', u'enter', u'matrix']
[u'canola', u'industri', u'face', u'diseas', u'threat']
[u'casa', u'investig', u'abort', u'land', u'qanta']
[u'cathol', u'priest', u'deni', u'child', u'claim']
[u'celtic', u'scotland', u'dunde']
[u'charcoalit', u'finalis', u'fund']
[u'china', u'death', u'toll', u'rise']
[u'china', u'threaten', u'execut', u'sar', u'violat']
[u'clijster', u'capriati', u'rome', u'master']
[u'coal', u'industri', u'face', u'plan', u'develop', u'challeng']
[u'cole', u'myer', u'post', u'higher', u'sale']
[u'communiti', u'farewel', u'sydney']
[u'concern', u'air', u'condit', u'bridg']
[u'concern', u'air', u'delay', u'telstra', u'repair']
[u'cook', u'report', u'contain', u'unfair', u'deal', u'claim']
[u'coron', u'consid', u'gambl', u'youngest', u'victim']
[u'costello', u'challeng', u'crean', u'cut']
[u'council', u'air', u'cyclon', u'shelter', u'worri']
[u'council', u'consid', u'postal', u'vote']
[u'council', u'keep', u'wast', u'option', u'open']
[u'council', u'consid', u'region', u'author', u'plan']
[u'council', u'drop', u'price']
[u'council', u'deficit']
[u'council', u'super', u'decis']
[u'court', u'consid', u'bail', u'request', u'alleg']
[u'court', u'order', u'atsic', u'elect']
[u'court', u'rule', u'unfit', u'shelv']
[u'crean', u'bulk', u'target']
[u'crown', u'leas', u'plan', u'shroud', u'secreci']
[u'share', u'sink', u'year']
[u'cyclist', u'rais', u'fund', u'fight', u'youth', u'suicid']
[u'democrat', u'readi', u'talk', u'medicar']
[u'dem', u'demand', u'negoti', u'higher', u'educ']
[u'detroit', u'edg', u'philadelphia', u'seri', u'lead']
[u'doctor', u'question', u'budget', u'health', u'initi']
[u'dollar', u'subdu', u'market', u'nervous']
[u'doubt', u'cast', u'local', u'govern', u'reform']
[u'downer', u'talk', u'north', u'korea', u'illicit', u'trade']
[u'downpour', u'continu', u'south', u'coast']
[u'downpour', u'near', u'longreach']
[u'draft', u'council', u'budget', u'display']
[u'eagl', u'docker', u'chang', u'weekend', u'clash']
[u'educ', u'reform', u'meet', u'senat', u'opposit']
[u'emerg', u'land', u'ambul']
[u'criticis', u'auditor', u'general']
[u'european', u'chang', u'ryder', u'qualifi', u'format']
[u'feder', u'polic', u'seiz', u'record', u'haul']
[u'feder', u'grand', u'slam', u'fitzgerald']
[u'govt', u'support', u'need', u'mine']
[u'ferrari', u'amend', u'austria']
[u'fewer', u'polic', u'guard', u'bali', u'bomb', u'trial']
[u'aussi', u'troop', u'return', u'gulf']
[u'fitzgerald', u'defend', u'hewitt', u'outburst']
[u'flintoff', u'doubt', u'zimbabw', u'test']
[u'flood', u'prove', u'cost', u'council']
[u'polic', u'inspector', u'testifi', u'murder', u'trial']
[u'fourteen', u'year', u'charg', u'alleg', u'knife']
[u'journalist', u'sue', u'vaccin', u'manufactur']
[u'fraser', u'psychopath', u'hear', u'tell']
[u'fund', u'allow', u'arm', u'custom', u'fish', u'patrol']
[u'gannawarra', u'council', u'learn', u'super', u'share']
[u'trade', u'launch']
[u'genocid', u'court', u'jail', u'rwandan', u'minist']
[u'geolog', u'bodi', u'get', u'fund']
[u'goat', u'shepherd', u'airport', u'grass']
[u'good', u'train', u'derail']
[u'govt', u'confirm', u'saudi', u'request', u'bomb']
[u'govt', u'examin', u'claim', u'embryon', u'medicin']
[u'govt', u'talk', u'merger', u'film', u'bodi']
[u'goward', u'surpris', u'pay', u'matern', u'leav', u'budget']
[u'grand', u'resid', u'face']
[u'grasshopp', u'infest', u'north']
[u'green', u'grant', u'grab']
[u'hamilton', u'crash', u'report', u'enter', u'final', u'stag']
[u'hervey', u'sunday', u'trade']
[u'home', u'lend', u'boost', u'bank', u'profit']
[u'hop', u'sweet', u'deal', u'boost', u'sugar', u'industri']
[u'hotel', u'get', u'day', u'suspens', u'defer']
[u'howard', u'back', u'mcgrath', u'outburst']
[u'howard', u'beatti', u'brawl', u'report']
[u'hunt', u'burrow', u'crayfish']
[u'icac', u'clear', u'alburi', u'councillor']
[u'indian', u'train', u'accid', u'toll', u'reach']
[u'injur', u'bond', u'return', u'home']
[u'injur', u'bond', u'return', u'home', u'zealand']
[u'principl', u'support', u'tourism', u'develop']
[u'iron', u'knock', u'tahiti']
[u'irrig', u'rais', u'concern', u'river', u'health', u'report']
[u'juve', u'deserv', u'real', u'boss', u'bosqu']
[u'juve', u'deserv', u'say', u'real', u'boss', u'bosqu']
[u'kirchner', u'claim', u'victori', u'argentinian']
[u'labor', u'pledg', u'boost', u'bulk', u'bill']
[u'labor', u'pledg', u'major', u'medicar', u'reform']
[u'lion', u'nathan', u'brew', u'profit', u'sharehold']
[u'lion', u'adelaid', u'clash']
[u'lion', u'endur', u'scrutini']
[u'lion', u'investig', u'train', u'techniqu']
[u'lion', u'oxygen', u'endur', u'scrutini']
[u'local', u'govt', u'group', u'consid', u'budget', u'fallout']
[u'mallacoota', u'lose', u'phone', u'power']
[u'face', u'court', u'murder', u'charg']
[u'face', u'court', u'arm', u'robberi', u'charg']
[u'face', u'court', u'metal', u'attack']
[u'mayor', u'reel', u'green']
[u'mcgauran', u'dismiss', u'budget', u'concern', u'wast', u'dump']
[u'mcgrath', u'wont', u'happen']
[u'melbourn', u'tight', u'lip', u'lyon', u'probe']
[u'mix', u'respons', u'propos', u'fish']
[u'mix', u'view', u'sorenstam', u'challeng']
[u'clarifi', u'penalti', u'rat', u'stanc']
[u'bodi', u'indian', u'train', u'accid']
[u'fund', u'southern', u'cross']
[u'fund', u'seek', u'highway', u'duplic']
[u'air', u'road', u'speed', u'concern']
[u'disput', u'drought', u'claim']
[u'reject', u'council', u'rise', u'plan']
[u'seek', u'drought']
[u'nativ', u'titl', u'convoy', u'inspect', u'sit']
[u'nauru', u'report', u'respons', u'condemn', u'author']
[u'anti', u'corrupt', u'bodi', u'toughest', u'aust']
[u'powerlin', u'plan', u'lower', u'south', u'east']
[u'femal', u'face', u'council']
[u'noosa', u'mayor', u'reject', u'idea', u'charg', u'visitor']
[u'norwegian', u'internet', u'piip', u'offer', u'realiti']
[u'govt', u'wont', u'race', u'insur']
[u'south', u'coast', u'forest', u'indigen', u'coordin']
[u'time', u'editor', u'meet', u'angri', u'staff', u'scandal']
[u'unveil', u'budget', u'surplus']
[u'obstetrician', u'join', u'insur', u'chang']
[u'ombudsman', u'examin', u'church', u'abus', u'claim']
[u'oppn', u'question', u'govt', u'commit', u'defenc']
[u'parl', u'food', u'liquid', u'begin', u'probe']
[u'pentagon', u'research', u'nuclear', u'bunker', u'buster', u'rumsfeld']
[u'petacchi', u'beat', u'cipollini', u'giro', u'sprint']
[u'policeman', u'save', u'trucker', u'life']
[u'polic', u'seek', u'wit', u'fatal', u'cyclist', u'crash']
[u'polic', u'station', u'plan', u'move', u'ahead']
[u'polic', u'form', u'famili', u'mediat', u'team']
[u'price', u'hike', u'creat', u'elitist', u'court']
[u'public', u'propos', u'council', u'budget']
[u'putin', u'offer', u'amnesti', u'chechen', u'rebel']
[u'qanta', u'defend', u'decis', u'divert', u'plane']
[u'polic', u'finish', u'volker', u'investig']
[u'queen', u'invit', u'ivanisev', u'krajicek']
[u'rain', u'give', u'winter', u'crop', u'kick']
[u'resourc', u'weaker', u'market']
[u'rfds', u'celebr', u'year']
[u'road', u'delay', u'spark', u'anger']
[u'room', u'communiti', u'bank', u'sharehold']
[u'erupt', u'race', u'industri', u'chang']
[u'emerg', u'servic', u'review', u'recommend', u'chang']
[u'salvo', u'target', u'homeless', u'trend']
[u'saudi', u'arabia', u'criticis', u'inact']
[u'schumach', u'warn', u'mclaren', u'threat']
[u'seafood', u'group', u'back', u'spanish', u'mackerel', u'reform']
[u'second', u'exot', u'diseas', u'scare', u'csiro', u'research']
[u'monitor', u'forster', u'tuncurri', u'flood', u'potenti']
[u'warn', u'possibl', u'flood', u'central', u'coast']
[u'swear']
[u'skull', u'probe', u'underway', u'bunburi']
[u'solo', u'rower', u'push', u'ocean', u'attempt']
[u'south', u'america', u'confirm', u'world', u'qualifi', u'format']
[u'southampton', u'beatti', u'emul', u'hero', u'stoke']
[u'springbok', u'montgomeri', u'face', u'lengthi']
[u'state', u'lose', u'control', u'democrat']
[u'store', u'withdraw', u'jesus', u'mari', u'thong', u'outcri']
[u'struggl', u'docker', u'hop', u'crowd']
[u'super', u'shock', u'warrnambool', u'council']
[u'sydney', u'begin']
[u'taint', u'blood', u'prompt', u'inquiri', u'demand']
[u'offic', u'probe', u'lyon', u'share']
[u'taylor', u'quit', u'aston', u'villa', u'manag']
[u'taylor', u'quit', u'villa', u'manag']
[u'terror', u'plot', u'foil', u'lebanon', u'armi']
[u'thorni', u'field', u'face', u'wood', u'germani']
[u'kill', u'gaza', u'incurs']
[u'policeman', u'die', u'tibet', u'climb']
[u'tourism', u'deleg', u'head', u'north', u'west']
[u'tryon', u'give', u'second', u'chanc', u'tiger']
[u'ullrich', u'steer', u'clear', u'coast']
[u'qasr', u'hand', u'iraqi']
[u'union', u'electrolux', u'talk', u'freez']
[u'urg', u'boost', u'student', u'fee']
[u'wont', u'rais', u'fee']
[u'put', u'focus', u'baghdad', u'secur']
[u'upgrad', u'plan', u'dairi', u'research', u'centr']
[u'push', u'vote', u'iraq']
[u'vail', u'reject', u'doubl', u'standard', u'gmos']
[u'vanston', u'admit', u'penni', u'pinch']
[u'vaughan', u'warm', u'anderson', u'press', u'test', u'case']
[u'govt', u'rethink', u'rail', u'decis']
[u'govt', u'unhappi', u'fund', u'post', u'bushfir']
[u'viduka', u'link', u'spur']
[u'virgin', u'blue', u'line', u'soar']
[u'volunt', u'standbi', u'rain', u'fall']
[u'water', u'flow', u'lake', u'illawarra', u'entranc']
[u'waugh', u'lara', u'face', u'contrast', u'futur']
[u'westralia', u'sailor', u'tell', u'inquiri', u'hear']
[u'wrong', u'busi', u'wrong', u'place', u'wrong', u'time']
[u'zhao', u'peopl', u'archibald', u'pick']
[u'coach', u'make', u'pitch', u'jordan']
[u'aceh', u'rebel', u'threaten', u'boycott', u'talk']
[u'acid', u'spill', u'contain', u'near', u'geelong']
[u'begin', u'aerial', u'seed', u'program']
[u'govt', u'survey', u'bushfir', u'victim']
[u'public', u'admin', u'commission', u'retir']
[u'administr', u'iraq', u'baathist']
[u'age', u'cipo', u'ponder', u'giro', u'slump']
[u'airport', u'return', u'normal', u'emerg']
[u'ord', u'finish', u'week']
[u'coalit', u'tri', u'save', u'medicar']
[u'altern', u'hous', u'moot', u'asylum', u'seeker']
[u'anti', u'abort', u'group', u'welcom', u'graphic', u'video']
[u'ardil', u'quit', u'race', u'coach']
[u'soccer', u'boss', u'ponder', u'women', u'world']
[u'avoid', u'indonesia', u'govt', u'remind', u'travel']
[u'bandi', u'fail', u'recov', u'ankl', u'injuri']
[u'bayern', u'deni', u'kahn']
[u'beazley', u'leadership', u'stanc', u'unchang']
[u'beazley', u'wont', u'challeng', u'crean']
[u'esprit', u'take']
[u'berri', u'break', u'movi']
[u'birdi', u'sluman', u'round', u'lead', u'texa']
[u'blacklock', u'return', u'leagu']
[u'nomin', u'brave', u'effort']
[u'break', u'hill', u'count', u'outback', u'challeng']
[u'budget', u'fund', u'road']
[u'budget', u'stop', u'worker', u'make', u'unfair', u'dismiss']
[u'busi', u'await', u'bushfir', u'fund', u'news']
[u'carr', u'continu', u'north', u'coast', u'tour']
[u'caution', u'urg', u'murray', u'river', u'flow']
[u'consid', u'esper', u'oper']
[u'receiv', u'point', u'revamp']
[u'china', u'suspend', u'adopt', u'program', u'sar', u'fear']
[u'citi', u'countri', u'decid', u'origin', u'squad', u'murray']
[u'cityrail', u'seek', u'train', u'ticket', u'price', u'hike']
[u'citi', u'origin', u'impetus']
[u'citi', u'win', u'origin', u'warm']
[u'coalit', u'earmark', u'child', u'health']
[u'commission', u'lose', u'legal', u'battl', u'justic', u'dept']
[u'commonwealth', u'take', u'murray', u'issu', u'serious']
[u'concern', u'rais', u'futur', u'fibr', u'optic', u'cabl']
[u'controversi', u'hitler', u'drama', u'debut']
[u'coulthard', u'lead', u'austrian', u'practic']
[u'council', u'offer', u'deficit', u'assur']
[u'council', u'urg', u'lower', u'tax']
[u'council', u'want', u'extend', u'moratorium']
[u'crean', u'deni', u'deal', u'deficit']
[u'crean', u'deni', u'deal', u'deficit', u'say', u'safe']
[u'crowd', u'gather', u'mataranka', u'festiv']
[u'crusad', u'cruis', u'final']
[u'cwealth', u'readi', u'talk']
[u'deaf', u'student', u'award', u'music', u'degre']
[u'delay', u'check', u'wheat', u'virus']
[u'stan', u'die']
[u'doctor', u'strike', u'regist', u'misconduct']
[u'downi', u'react', u'angrili', u'inquest']
[u'econom', u'data', u'grim', u'news', u'germani']
[u'educ', u'chang', u'wont', u'harm', u'student']
[u'elder', u'urg', u'talk', u'itiner']
[u'electr', u'firm', u'fin', u'apprentic', u'work']
[u'emerg', u'servic', u'review', u'spark', u'concern']
[u'england', u'fret', u'cadddick', u'flintoff']
[u'epilepsi', u'drug', u'show', u'reduc', u'crave', u'alcohol']
[u'erekat', u'quit', u'palestinian', u'cabinet']
[u'ethanol', u'refineri', u'near']
[u'explod', u'light', u'spark', u'newsag', u'blaze']
[u'falvelon', u'defier', u'scratch']
[u'fan', u'grauman', u'chines', u'theatr', u'matrix', u'sequel']
[u'farmer', u'group', u'air', u'concern']
[u'farm', u'safeti', u'campaign', u'target', u'children']
[u'detail', u'school', u'board', u'probe']
[u'financi', u'woe', u'lyon', u'wool', u'broker']
[u'fiorentina', u'reclaim']
[u'crew', u'battl', u'floodwat']
[u'firm', u'guilti', u'safeti', u'failur']
[u'hors', u'trainer', u'freedman', u'induct', u'hall']
[u'practic', u'review']
[u'delay', u'flight', u'melbourn', u'airport']
[u'lift', u'western', u'victoria']
[u'rwandan', u'minist', u'releas']
[u'white', u'hous', u'intern', u'admit', u'kennedi', u'affair']
[u'formula', u'better', u'china', u'austria', u'lauda']
[u'franc', u'alleg', u'smear', u'campaign', u'media']
[u'french', u'star', u'stay', u'seaman']
[u'fulham', u'coleman', u'youngest', u'premiership', u'manag']
[u'fund', u'rais', u'rfds']
[u'german', u'citi', u'tri', u'beat', u'recess', u'blue']
[u'giteau', u'injuri', u'blow', u'brumbi']
[u'gooch', u'action']
[u'govt', u'hand', u'manag', u'reserv', u'aapa']
[u'green', u'readi', u'open']
[u'green', u'tribut', u'labor', u'murray', u'pledg']
[u'group', u'meet', u'radiat', u'treatment', u'crisi']
[u'health', u'expert', u'question', u'china', u'execut', u'threat']
[u'hefti', u'reward', u'offer', u'bank', u'heist']
[u'hodgson', u'lead', u'domin', u'ducati', u'home', u'itali']
[u'hop', u'gilgandra', u'industri']
[u'hors', u'race', u'steward', u'probe', u'lion', u'train', u'regim']
[u'warn', u'loss', u'sar']
[u'immigr', u'raid', u'conduct', u'canberra']
[u'indigen', u'scheme', u'balanc', u'environ', u'economi']
[u'indonesia', u'swoop', u'rebel', u'bind', u'peac', u'talk']
[u'indonesia', u'talk', u'peac', u'prepar', u'aceh']
[u'injuri', u'bomber', u'belt', u'hawk']
[u'injuri', u'bomber', u'thrash', u'hawk']
[u'iraqi', u'situat', u'desper']
[u'ireland', u'ask', u'athlet', u'stay', u'away']
[u'jakovich', u'forc', u'irregular', u'heartbeat']
[u'japanes', u'busi', u'daili', u'chief', u'quit', u'scandal']
[u'concern', u'air', u'contract', u'lose']
[u'job', u'program', u'chop', u'block']
[u'jordan', u'sign', u'hungarian', u'test', u'driver', u'baumgartn']
[u'juri', u'continu', u'deliber', u'businessman', u'case']
[u'kiwi', u'ref', u'strike', u'assault']
[u'labor', u'talk', u'medicar', u'packag']
[u'labor', u'entic', u'doctor', u'medicar', u'mcmullan']
[u'latif', u'go', u'easi', u'akhtar']
[u'lawyer', u'warn', u'school', u'abort', u'video']
[u'leed', u'dump', u'coach', u'pair']
[u'liverpool', u'championship', u'challeng', u'owen']
[u'live', u'arrang', u'detaine', u'discuss']
[u'luxuri', u'liner', u'extend', u'exmouth', u'stay']
[u'manufactur', u'industri', u'boost']
[u'mauresmo', u'capriati', u'clash']
[u'medicar', u'packag', u'address', u'declin', u'bulk']
[u'meet', u'discuss', u'bega', u'budget']
[u'melbourn', u'shrug', u'shroud']
[u'mildura', u'super']
[u'minist', u'get', u'parl', u'food']
[u'minist', u'hear', u'hand', u'plight', u'drought']
[u'heavi', u'rain', u'coast']
[u'wheat', u'virus', u'tamworth']
[u'surpris', u'highway', u'fund']
[u'urg', u'consult', u'water', u'restrict']
[u'murder', u'trial', u'hear', u'stress', u'claim']
[u'murray', u'river', u'featur', u'crean', u'budget', u'repli']
[u'nashvill', u'matriarch', u'june', u'carter', u'cash', u'dead']
[u'nat', u'welcom', u'rail', u'review']
[u'nauru', u'depress', u'surpris', u'ruddock']
[u'navi', u'ship', u'name', u'garden', u'citi']
[u'suburb', u'add', u'dengu', u'spot']
[u'guarante', u'williamstown', u'shipyard']
[u'orthopaed', u'surgeon', u'dubbo']
[u'file', u'bankruptci']
[u'opposit', u'greeni', u'join', u'forc', u'food']
[u'teacher', u'nasa', u'space', u'camp']
[u'orang', u'council', u'probe', u'fuel', u'price']
[u'pair', u'arrest']
[u'parthenium', u'weed', u'outbreak', u'narrabri', u'shire']
[u'passiv', u'smoke', u'innoc', u'say', u'controversi']
[u'perec', u'comeback', u'delay']
[u'plan', u'greater', u'indigen', u'voic', u'rainforest']
[u'polic', u'wit']
[u'polic', u'fight', u'high', u'tech', u'fraudster']
[u'polic', u'charg', u'drug', u'oper']
[u'polic', u'probe', u'broom', u'drink', u'spike']
[u'porto', u'mourinho', u'homework', u'uefa']
[u'posit', u'coal', u'growth', u'forecast', u'illawarra']
[u'public', u'ballot', u'trade', u'hour', u'carniv', u'holiday']
[u'public', u'hous', u'wait', u'list']
[u'public', u'urg', u'help', u'save', u'endang', u'parrot']
[u'freez', u'land', u'clear', u'permit']
[u'race', u'industri', u'woe', u'continu']
[u'rain', u'close', u'western', u'road']
[u'rat', u'rise', u'lismor', u'council', u'budget']
[u'refuge', u'famili', u'face', u'tribun', u'visa', u'extens']
[u'resid', u'warn', u'water', u'restrict']
[u'resort', u'face', u'fine', u'sewag', u'spill']
[u'rixon', u'expect', u'slater', u'round']
[u'rocca', u'join', u'club', u'jakovich']
[u'romanian', u'szabo', u'retir', u'drug', u'investig']
[u'ruddock', u'tour', u'indigen', u'communiti']
[u'rural', u'doctor', u'unimpress', u'labor', u'medicar', u'plan']
[u'russia', u'launch', u'satellit', u'june']
[u'sampra', u'verg', u'bow']
[u'sampra', u'pull', u'french', u'open', u'wimbledon']
[u'sar', u'rule', u'caus', u'sailor', u'death']
[u'schedul', u'meet', u'spirit', u'newcastl', u'game']
[u'outlaw', u'eat', u'dog', u'cat']
[u'schelotto', u'star', u'boca', u'paysandus', u'libertador']
[u'seaman', u'hand', u'final', u'captainci']
[u'readi', u'flood', u'emerg']
[u'sevill', u'host', u'golf', u'world']
[u'shark', u'interpret', u'centr', u'plan', u'move', u'ahead']
[u'sheffield', u'unit', u'come', u'playoff']
[u'slater', u'beat', u'burrow', u'tahiti', u'final']
[u'slovak', u'vote', u'join', u'enlarg']
[u'solomon', u'warlord', u'take', u'missionari', u'hostag']
[u'soorley', u'appoint', u'land', u'agenc', u'board']
[u'south', u'africa', u'coach', u'slam', u'english', u'premiership']
[u'spur', u'beat', u'nation', u'champion', u'laker']
[u'stanbrok', u'sale', u'spark', u'bidder', u'allianc']
[u'stay', u'home', u'attitud', u'hit', u'tourism']
[u'storm', u'prove', u'minor', u'problem', u'perth']
[u'storm', u'take', u'toll', u'surat']
[u'student', u'put', u'virgin', u'hammer']
[u'summit', u'meet', u'revers', u'indian', u'spin', u'slide']
[u'compani', u'get', u'fund', u'custom', u'need', u'project']
[u'debat', u'moratorium']
[u'tassi', u'compani', u'china', u'despit', u'sar']
[u'taylor', u'hit', u'villa', u'boss']
[u'team', u'order', u'ban']
[u'test', u'star', u'chanderpaul', u'seri']
[u'thailand', u'scorn', u'travel', u'warn']
[u'ticket', u'price', u'decis', u'regul']
[u'tiger', u'german', u'love', u'affair']
[u'tough', u'time', u'ahead', u'predict', u'cattl', u'industri']
[u'tragedi', u'strike', u'mountain', u'adventur']
[u'tszyu', u'weigh', u'fight', u'spink', u'report']
[u'turtl', u'shell', u'save']
[u'japan', u'world', u'tune']
[u'give', u'grind', u'iraq', u'sanction', u'draft']
[u'hand', u'qasr', u'iraqi']
[u'report', u'rais', u'threat', u'deflat']
[u'warn', u'issu', u'jacuzzi', u'regul']
[u'water', u'manag', u'plan']
[u'wood', u'overshadow', u'german', u'open']
[u'work', u'start', u'research']
[u'open', u'vermeulen', u'flay', u'sussex']
[u'german', u'crash', u'franc']
[u'kill', u'casablanca', u'blast', u'offici']
[u'kill', u'casablanca', u'bomb', u'attack', u'offici']
[u'aid', u'defect', u'pong', u'drug', u'case', u'report']
[u'allenbi', u'stay', u'touch']
[u'artwork', u'limelight', u'mental', u'ill']
[u'australian', u'sailor', u'arriv', u'home', u'gulf']
[u'australian', u'sailor', u'dock', u'home', u'port']
[u'bali', u'survivor', u'defend', u'cross']
[u'bali', u'survivor', u'gather', u'barbequ']
[u'barrett', u'doubt', u'origin']
[u'barrichello', u'lead', u'austrian', u'free', u'practic']
[u'becker', u'hop', u'sampra', u'time']
[u'billup', u'lead', u'piston', u'confer', u'final']
[u'blue', u'final']
[u'bok', u'suffer', u'blow', u'ahead', u'test']
[u'brandenburg', u'bratwurst', u'menu']
[u'bronco', u'wont', u'welcom', u'walker']
[u'bruce', u'sign', u'deal', u'birmingham']
[u'brumbi', u'down', u'blue', u'final']
[u'brumbi', u'prepar', u'battl', u'blue']
[u'bumbl', u'stowaway', u'fall', u'short', u'american', u'dream']
[u'burni', u'mayor', u'rue', u'flight', u'cutback']
[u'bush', u'make', u'second', u'term', u'offici']
[u'cipollini', u'talk', u'retir', u'petacchi', u'win']
[u'corrobore', u'highlight', u'festiv']
[u'crow', u'head', u'lion']
[u'csiro', u'urg', u'vigil', u'rust', u'fungus', u'escap']
[u'curfew', u'backfir', u'home', u'research']
[u'cwealth', u'affirm', u'support', u'bali', u'victim']
[u'danc', u'compani', u'take', u'swan', u'lake', u'hybrid', u'tour']
[u'democrat', u'hold', u'firm', u'face', u'earli', u'poll']
[u'disney', u'begin', u'rent', u'self', u'destruct', u'dvds']
[u'dizzi', u'rest', u'lawson', u'injur', u'dayer']
[u'dog', u'hang', u'narrow', u'victori']
[u'eagl', u'notch', u'trot']
[u'einstein', u'write', u'publish', u'onlin']
[u'england', u'uncap', u'player', u'zimbabw']
[u'final', u'cover']
[u'deleg', u'gather', u'gold', u'coast', u'confer']
[u'ferrari', u'irvin', u'warn', u'alonso']
[u'firefight', u'clean', u'recycl', u'depot', u'blaze']
[u'forens', u'studi', u'centr', u'open']
[u'rmit', u'student', u'expel', u'cheat']
[u'rise', u'nasdaq', u'fall', u'aussi', u'stay']
[u'countri', u'plan', u'ralli', u'econom', u'weak']
[u'german', u'tourist', u'kill', u'crash']
[u'germani', u'undecid', u'iraq', u'draft', u'resolut']
[u'germani', u'iraq']
[u'gillespi', u'rest', u'windi', u'dayer']
[u'golden', u'start', u'aussi', u'cyclist']
[u'govt', u'updat', u'websit', u'latest', u'sar', u'info']
[u'green', u'thank', u'farmer', u'fire', u'clear']
[u'green', u'oppos', u'submarin', u'visit']
[u'harrington', u'hold', u'shoot', u'buffer']
[u'hawthorn', u'nightmar', u'continu']
[u'hostag', u'algeria', u'ransom', u'rescu', u'report']
[u'boss', u'die']
[u'indigen', u'crisi', u'address', u'health', u'group', u'say']
[u'injur', u'davenport', u'pull', u'madrid']
[u'iraqi', u'claim', u'tortur', u'coalit']
[u'decis', u'boost', u'nurs', u'number']
[u'jakarta', u'say', u'aceh', u'peac', u'talk', u'despit', u'threat']
[u'japan', u'expect', u'aceh', u'peac', u'talk', u'ahead']
[u'kenya', u'warn', u'terror', u'threat', u'british']
[u'knife', u'garden', u'stake', u'robberi', u'attempt']
[u'labor', u'unit', u'latham', u'say']
[u'liber', u'candid', u'shadow', u'labor']
[u'lion', u'chairman', u'seek', u'apolog']
[u'lion', u'chairman', u'seek', u'apolog']
[u'lion', u'crow', u'tiger', u'edg', u'dee']
[u'lynch', u'stun', u'crow', u'tiger', u'edg', u'dee']
[u'maggi', u'monkey', u'mighti', u'tipster']
[u'hospit', u'glebe', u'shoot']
[u'rescu', u'flood', u'drain']
[u'rescu', u'stormwat', u'drain']
[u'melbourn', u'make', u'track', u'climax', u'game']
[u'navi', u'tow', u'illeg', u'fish', u'boat', u'darwin']
[u'newcastl', u'play', u'bayern', u'season', u'friend']
[u'lib', u'meet', u'dissect', u'defeat']
[u'teacher', u'reject', u'offer']
[u'palestinian', u'minist', u'quit', u'talk', u'israel']
[u'palestinian', u'accept', u'erekat', u'resign']
[u'panther', u'roll', u'raider', u'cowboy', u'tame', u'tiger']
[u'panther', u'upset', u'raider', u'continu', u'win', u'streak']
[u'peac', u'talk', u'begin', u'aceh', u'rebel', u'releas']
[u'phelp', u'claim', u'crown', u'swim', u'meet']
[u'pire', u'look', u'stay', u'arsenal']
[u'polic', u'discov', u'burn', u'bodi']
[u'polic', u'investig', u'death', u'sydney']
[u'polic', u'outstand', u'warrant']
[u'polic', u'seek', u'child', u'offenc']
[u'port', u'readi', u'roo']
[u'port', u'steamrol', u'kangaroo']
[u'prison', u'survey', u'highlight', u'abus', u'factor']
[u'cross', u'disappoint', u'bali', u'critic']
[u'releg', u'beckon', u'leverkusen']
[u'rival', u'congo', u'rebel', u'sign', u'truce', u'slaughter']
[u'rocca', u'hop', u'celebr', u'match']
[u'govt', u'ax', u'late', u'night', u'bus']
[u'sar', u'blame', u'wool', u'price']
[u'saudi', u'arabia', u'defend', u'anti', u'terror', u'effort', u'admit']
[u'schumach', u'put', u'ferrari', u'charg']
[u'scientist', u'discov', u'whale', u'shark', u'like']
[u'scud', u'bow', u'argentinean', u'domin']
[u'secur', u'guard', u'hospit', u'auburn', u'robberi']
[u'serena', u'clijster', u'coast', u'rome', u'semi']
[u'servic', u'fund', u'anti', u'terror', u'magnet', u'oppn']
[u'slovakia', u'fear', u'invalid', u'poll']
[u'spain', u'file', u'suit', u'prestig', u'disast']
[u'spam', u'bring', u'cook', u'island', u'system']
[u'springtim', u'neptun', u'mean', u'bright', u'cloud']
[u'state', u'funer', u'hold', u'african', u'anti']
[u'sydney', u'downpour', u'expect']
[u'sydney', u'team', u'outclass', u'oppon']
[u'taiwanes', u'travel', u'japan', u'test', u'posit']
[u'taiwan', u'health', u'minist', u'offer', u'resign']
[u'tasdanc', u'find', u'treasur', u'fund']
[u'telstra', u'infrastructur', u'worker', u'receiv', u'rise']
[u'terrorist', u'attack', u'strengthen', u'resolv', u'downer']
[u'texan', u'stun', u'children', u'send', u'prison']
[u'thousand', u'final', u'respect', u'sisulu']
[u'tiger', u'prepar', u'tough', u'test']
[u'transport', u'group', u'debat', u'hobart', u'truck', u'speed', u'limit']
[u'uefa', u'place', u'beckon', u'behav', u'citi']
[u'forc', u'captur', u'baath', u'parti', u'chairman']
[u'journalist', u'order', u'leav', u'zimbabw']
[u'offer', u'cash', u'iraqi', u'identifi', u'baath']
[u'plan', u'interview', u'percent', u'visa']
[u'valley', u'need', u'licens', u'freedom']
[u'confer', u'focus', u'union', u'branch']
[u'waugh', u'defend', u'team', u'behaviour']
[u'wenger', u'look', u'style']
[u'west', u'releas', u'canio', u'bowyer']
[u'west', u'edg', u'amid', u'spike', u'qaeda', u'terror', u'chatter']
[u'consid', u'take', u'singapor', u'sar', u'list']
[u'wife', u'brother', u'accus', u'british', u'suicid', u'bomber']
[u'wild', u'storm', u'black', u'perth', u'home']
[u'woman', u'fatal', u'heart', u'attack', u'bungl', u'polic', u'raid']
[u'wood', u'defend', u'govt', u'bushfir', u'respons']
[u'aceh', u'peac', u'talk', u'fail']
[u'fair', u'trade', u'warn', u'sar', u'scam']
[u'govt', u'stand', u'firm', u'plan', u'group', u'nomin']
[u'adelaid', u'forc', u'power', u'draw']
[u'adelaid', u'prepar', u'mock', u'terror', u'attack']
[u'agforc', u'hop', u'drought', u'applic', u'go', u'fast']
[u'faction', u'trade', u'blame', u'trade', u'blow']
[u'state', u'confer', u'erupt', u'violenc']
[u'qaeda', u'threaten', u'stun', u'blow', u'israel']
[u'warn', u'loom', u'medic', u'indemn', u'crisi']
[u'promis', u'sharehold', u'debt']
[u'anlezark', u'oregon', u'grand', u'prix']
[u'annan', u'call', u'sustain', u'campaign']
[u'anzelark', u'oregon', u'grand', u'prix']
[u'arafat', u'blame', u'latest', u'suicid', u'attack']
[u'armi', u'reserv', u'expect', u'counter', u'terror']
[u'aussi', u'edg', u'windi']
[u'australia', u'consid', u'missil', u'defenc', u'hill']
[u'australian', u'kill', u'solomon', u'island']
[u'bartlett', u'say', u'govt', u'planet']
[u'beij', u'doctor', u'report', u'sar', u'case']
[u'bevan', u'take', u'triathlon']
[u'bishop', u'want', u'appli', u'church', u'england']
[u'britain', u'condemn', u'horrif', u'morocco', u'bomb', u'blast']
[u'bronco', u'edg', u'storm', u'break']
[u'bronco', u'farewel', u'qeii', u'style']
[u'bronco', u'farewel', u'qeii', u'style', u'man', u'golden']
[u'carr', u'rid', u'wave', u'popular']
[u'children', u'health', u'deterior', u'iraq', u'unicef']
[u'china', u'record', u'sar', u'death']
[u'cleric', u'staff', u'dress', u'code', u'battl']
[u'cnbc', u'arabiya', u'econom', u'channel', u'broadcast']
[u'coria', u'calleri', u'contest', u'hamburg', u'final']
[u'death', u'toll', u'rise', u'morocco', u'suicid', u'blast']
[u'delug', u'kill', u'china']
[u'disappoint', u'webber', u'blame', u'villeneuv']
[u'dun', u'admit', u'break', u'team', u'mat', u'nose', u'report']
[u'cuban', u'receiv', u'life', u'sentenc', u'attempt']
[u'garcia', u'shock', u'posit', u'drug', u'test']
[u'garzelli', u'take', u'overal', u'giro', u'lead']
[u'germani', u'foil', u'alleg', u'chemic', u'smuggl', u'plan', u'press']
[u'gilmor', u'take', u'medal', u'sydney']
[u'glori', u'sink', u'shark']
[u'govt', u'chang', u'special', u'need', u'teach']
[u'govt', u'deni', u'line', u'drive', u'fee']
[u'green', u'beatti', u'warship']
[u'gunner', u'celebr', u'triumph']
[u'half', u'qaeda', u'leader', u'captur', u'kill', u'hunt']
[u'harrington', u'maintain', u'lead', u'germani']
[u'hartson', u'uefa', u'final']
[u'hodgson', u'take', u'monza', u'superpol']
[u'illeg', u'immigr', u'transport', u'refriger']
[u'sorri', u'amrozi', u'say', u'bali', u'bomb']
[u'indonesia', u'give', u'aceh', u'rebel', u'deadlin']
[u'inter', u'milan', u'lazio', u'champion', u'leagu']
[u'investig', u'drug', u'cover', u'alleg']
[u'iraqi', u'lodg', u'crime', u'lawsuit']
[u'israel', u'accus', u'arafat', u'latest', u'suicid', u'attack']
[u'kiribati', u'join', u'olymp', u'movement']
[u'labor', u'renew', u'push', u'exclud', u'trade', u'talk']
[u'latif', u'limelight', u'pakistan', u'contain', u'lanka']
[u'launceston', u'give', u'reunit', u'refuge', u'welcom', u'home']
[u'firm', u'lobbi', u'malpractic', u'threshold']
[u'leed', u'robinson', u'face', u'uncertain', u'futur']
[u'lonard', u'allenbi', u'strike', u'distanc']
[u'arrest', u'alic', u'assault']
[u'surgeri', u'buttock', u'stab']
[u'mauresmo', u'stun', u'serena']
[u'maverick', u'beat', u'king', u'texa', u'showdown']
[u'mclaren', u'claim', u'credit', u'tyre', u'develop', u'work']
[u'medal', u'award', u'troop', u'arriv', u'home']
[u'east', u'talk', u'resum', u'sharon', u'trip']
[u'minchin', u'hose', u'talk', u'earli', u'poll']
[u'mini', u'tornado', u'hit', u'bendigo']
[u'monet', u'main', u'featur', u'exhibit', u'launceston', u'galleri']
[u'moroccan', u'polic', u'arrest', u'islamist', u'attack']
[u'moroccan', u'polic', u'arrest', u'attack']
[u'morocco', u'arrest', u'islamist', u'bomb', u'kill']
[u'morocco', u'bomber', u'link', u'intern', u'terror']
[u'morrison', u'origin', u'hop', u'seem', u'shatter']
[u'morrison', u'origin', u'hop']
[u'motherwel', u'condemn', u'spot']
[u'nepal', u'honour', u'hillari', u'citizenship']
[u'korean', u'offici', u'doubt', u'defect', u'stori']
[u'govt', u'polic', u'communic']
[u'nswru', u'investig', u'season', u'incid']
[u'oppn', u'demand', u'govt', u'come', u'clean', u'threat']
[u'question', u'marin', u'research', u'fund']
[u'concern', u'csiro', u'crossin']
[u'paniyiri', u'festiv', u'showcas', u'brisban', u'greek']
[u'parlow', u'high', u'crush', u'england']
[u'patrick', u'hold', u'virgin', u'blue', u'float']
[u'pay', u'nurs']
[u'philippin', u'report', u'rebel', u'kill', u'anti', u'terror']
[u'phoenix', u'kestrel', u'bird', u'edg', u'firebird']
[u'polic', u'appeal', u'doctor', u'help', u'captur']
[u'polic', u'charg', u'string', u'hold']
[u'polic', u'alleg', u'thief', u'sydney']
[u'polic', u'suspect', u'worst', u'miss']
[u'power', u'surg', u'victim', u'urg', u'contact', u'aurora']
[u'privat', u'ceremoni', u'welcom', u'home']
[u'probe', u'uncov', u'liar', u'hous']
[u'queanbeyan', u'look', u'expand', u'horizon']
[u'rain', u'frustrat', u'zimbabw', u'despit', u'sussex', u'light']
[u'result', u'declar', u'elect']
[u'govt', u'criticis', u'health', u'review', u'releas']
[u'sar', u'put', u'pressur', u'taiwan']
[u'scheme', u'target', u'smoke', u'school']
[u'schumach', u'secur', u'austrian', u'pole']
[u'second', u'jewish', u'settler', u'die', u'hebron', u'suicid']
[u'soldier', u'stand', u'timor', u'assault', u'alleg']
[u'soorley', u'fulfil', u'offici', u'duti', u'brisban']
[u'space', u'shuttl', u'like']
[u'starv', u'victorian', u'hunger', u'strike']
[u'suicid', u'bomber', u'kill', u'sharon', u'abba', u'meet']
[u'swan', u'continu', u'good', u'form', u'blue', u'edg', u'dog']
[u'swan', u'continu', u'win', u'form']
[u'swan', u'freo', u'continu', u'good', u'form', u'blue', u'edg', u'dog']
[u'sydney', u'polic', u'search', u'miss', u'girl']
[u'tasmanian', u'urg', u'buoy', u'hour', u'chariti', u'swimmer']
[u'thoma', u'crucifi', u'dumb', u'saint']
[u'thousand', u'march', u'rememb', u'sisulu']
[u'iraqi', u'regim', u'offici', u'surrend', u'mass', u'grave']
[u'saddam', u'offici', u'surrend', u'forc']
[u'team', u'boss', u'doubt', u'calendar', u'expand']
[u'tourism', u'slump', u'produc', u'hotel', u'bargain']
[u'transit', u'offic', u'request', u'capsicum', u'spray']
[u'ullrich', u'head', u'tour', u'bianchi']
[u'offici', u'warn', u'need', u'order', u'iraq']
[u'journalist', u'deport', u'zimbabw', u'vow', u'carri']
[u'vandal', u'attack', u'leav', u'clean', u'crew', u'fume']
[u'violenc', u'mar', u'east', u'peac', u'talk']
[u'fire', u'line', u'nuclear', u'dump', u'green']
[u'iraq', u'reduc', u'terror', u'threat', u'hill']
[u'wasp', u'ideal', u'final']
[u'youngster', u'claim', u'overal', u'sprint', u'crown', u'despit']
[u'hurt', u'kashmiri', u'explos']
[u'aborigin', u'children', u'suscept', u'lung', u'diseas']
[u'accus', u'illeg', u'fisher', u'face', u'court']
[u'club', u'dark', u'salari']
[u'airlin', u'urg', u'rethink', u'flight', u'cut']
[u'alic', u'resid', u'win', u'squash', u'event']
[u'alleg', u'white', u'extremist', u'treason', u'trial']
[u'alleg', u'white', u'extremist', u'treason', u'trial']
[u'allenbi', u'singh', u'win', u'texa']
[u'presid', u'play', u'confer', u'brawl']
[u'select', u'keppel', u'candid']
[u'amnesti', u'call', u'intern', u'arm', u'trade', u'treati']
[u'amrozi', u'trial', u'adjourn']
[u'batch', u'seiz', u'polic', u'raid']
[u'apra', u'eye']
[u'aussi', u'demand', u'car', u'stay', u'strong']
[u'aussi', u'dollar', u'notch', u'year', u'high']
[u'australia', u'domin', u'sydney']
[u'australian', u'rescu', u'himalayan', u'mountain']
[u'australian', u'team', u'help', u'recov', u'steal', u'iraq']
[u'australia', u'suffer', u'shock', u'team', u'defeat']
[u'award', u'recognis', u'pilbara']
[u'bali', u'victim', u'father', u'leav', u'indonesia']
[u'bank', u'battl', u'credit', u'card', u'reform', u'court']
[u'battl', u'ballestero', u'continu']
[u'bear', u'lose', u'captain', u'sidelin']
[u'bendigo', u'tornado', u'clean', u'continu']
[u'bodi', u'recov', u'chines', u'coal']
[u'brumbi', u'test', u'cap', u'nucifora']
[u'bumpi', u'road', u'pool', u'plan', u'kennedi']
[u'bushfir', u'victim', u'help', u'appli']
[u'bush', u'spokesman', u'fleischer', u'resign']
[u'dump', u'remain', u'open']
[u'cambodia', u'sacr', u'cow', u'predict', u'peac', u'drought']
[u'campaign', u'begin', u'inspector', u'car']
[u'canberran', u'stay', u'home', u'fear', u'burglari', u'survey']
[u'canegrow', u'consid', u'option']
[u'cathol', u'educ', u'offic', u'welcom', u'move', u'chang']
[u'chang', u'nat', u'port', u'macquari']
[u'china', u'vow', u'help', u'trap', u'australian', u'climber']
[u'cipo', u'edg', u'mcewen', u'equal', u'giro', u'record']
[u'clijster', u'fight', u'rome', u'master']
[u'confer', u'put', u'terror', u'spotlight']
[u'conscript', u'propos', u'terror', u'fight']
[u'convict', u'murder', u'admit', u'kill', u'mother']
[u'convict', u'peopl', u'smuggler', u'jail', u'illeg']
[u'coria', u'eas', u'master', u'seri']
[u'council', u'announc', u'cash', u'deficit']
[u'council', u'consid', u'shop', u'develop', u'plan']
[u'council', u'face', u'rat', u'loss']
[u'council', u'late', u'night', u'transport', u'report']
[u'council', u'rethink', u'hospit', u'purchas']
[u'council', u'spend', u'water', u'suppli', u'work']
[u'council', u'vote', u'land', u'custodian', u'statement']
[u'crean', u'focus', u'issu', u'leadership']
[u'cruzeiro', u'stay', u'brazil', u'festiv', u'draw']
[u'cycl', u'path', u'link', u'consider']
[u'david', u'carradin', u'get', u'tarantino', u'touch']
[u'disgrac', u'time', u'report', u'book', u'movi', u'talk']
[u'disus', u'land', u'give', u'local', u'council']
[u'doctor', u'group', u'welcom', u'insur', u'effort']
[u'dollar', u'market', u'close', u'weaker']
[u'doubt', u'rais', u'slow', u'burn', u'plan']
[u'assess', u'wheat', u'virus', u'spread']
[u'dragon', u'fin', u'brown', u'outburst']
[u'draw', u'justic', u'complex']
[u'driver', u'kill', u'crash']
[u'easter', u'influx', u'help', u'defi', u'tourism', u'slump']
[u'educ', u'grant', u'avail', u'peopl']
[u'elder', u'push', u'protest']
[u'energi', u'leader', u'urg', u'sell', u'hydrogen', u'power']
[u'fair', u'trade', u'advisori', u'committe', u'establish']
[u'farmer', u'keen', u'join', u'land', u'clear', u'talk']
[u'feder', u'polic', u'ongo', u'asian', u'role']
[u'ferrari', u'amaz', u'schumach', u'recoveri']
[u'investig', u'ferrari', u'fuel', u'problem']
[u'set', u'rail', u'restor', u'project']
[u'fish', u'sustain', u'agreement', u'spotlight']
[u'free', u'concert', u'thank', u'volunt']
[u'fund', u'protect', u'terrorist', u'threat']
[u'fund', u'need', u'communiti']
[u'close', u'william', u'sister', u'clijster']
[u'gasnier', u'origin', u'open']
[u'german', u'hard', u'harrington']
[u'giteau', u'miss', u'test', u'match']
[u'gold', u'coast', u'sar', u'suspect', u'releas']
[u'gould', u'narrow', u'origin', u'squad']
[u'govt', u'work', u'plan', u'resolv', u'medic', u'indemn']
[u'grain', u'research', u'futur', u'clearer']
[u'green', u'unhappi', u'award', u'sponsorship', u'deal']
[u'guidelin', u'child', u'protect', u'alleg']
[u'hope', u'centr', u'spark', u'volunt']
[u'horsham', u'ratepay', u'face', u'rate', u'rise']
[u'hungri', u'aussi', u'number']
[u'hungri', u'ferret', u'caus', u'commut', u'chao']
[u'hydrogen', u'hail', u'fuel', u'futur']
[u'india', u'pakistan', u'play', u'champion', u'trophi', u'event']
[u'indonesia', u'launch', u'rocket', u'attack', u'aceh']
[u'indonesian', u'troop', u'mobilis', u'aceh']
[u'indonesian', u'troop', u'pour', u'aceh', u'offens']
[u'institut', u'win', u'contract', u'develop', u'vietnam', u'financ']
[u'dismiss', u'pilot', u'unfair', u'dismiss', u'claim']
[u'italian', u'diplomat', u'dob', u'tattl', u'tale', u'kiwi']
[u'jackson', u'unhappi', u'awol', u'shaq']
[u'judg', u'begin', u'sum', u'folbigg', u'trial']
[u'kidd', u'grab', u'gasp', u'net']
[u'land', u'missionari', u'murder', u'church']
[u'lehmann', u'calf', u'strain']
[u'makelel', u'reveal', u'unit', u'link']
[u'charg', u'ambul', u'incid']
[u'charg', u'attempt', u'murder']
[u'mayor', u'reject', u'rat', u'plan']
[u'mayor', u'save', u'money', u'stop']
[u'mcdonald', u'clear', u'foot', u'fractur']
[u'mcdonald', u'not', u'injuri']
[u'mcgrath', u'finish', u'week', u'high']
[u'mcveigh', u'answer', u'strike', u'charg']
[u'media', u'back', u'wife', u'miss', u'cameraman']
[u'meet', u'consid', u'snowi', u'rehab']
[u'millar', u'bounc', u'tour', u'picardi']
[u'worker', u'face', u'uncertain', u'futur']
[u'minist', u'clear', u'interfer', u'volker', u'case']
[u'mix', u'injuri', u'news', u'lion']
[u'monaco', u'doubl', u'grab', u'limelight']
[u'car', u'steal', u'tasmania', u'state']
[u'murali', u'catch', u'pakistan', u'spin', u'trap']
[u'murder', u'trial', u'enter', u'second', u'week']
[u'navratilova', u'triumph', u'rome', u'year']
[u'copyright', u'law', u'protect', u'aborigin']
[u'owner', u'renam', u'histor', u'mason', u'club', u'build']
[u'dept', u'govern']
[u'recruit', u'revel', u'port']
[u'wast', u'facil']
[u'threat', u'expat', u'despit', u'behead', u'solomon']
[u'threat', u'expat', u'solomon', u'polic']
[u'nowra', u'tafe', u'teacher', u'reject', u'offer']
[u'crack', u'refere']
[u'age', u'care', u'nurs', u'seek', u'equiti']
[u'review', u'vagu', u'school', u'disciplin', u'rule']
[u'chief', u'minist', u'tell', u'court', u'afraid']
[u'nurs', u'suffer', u'high', u'level', u'abus', u'studi']
[u'struggl', u'lankan', u'spin']
[u'offic', u'await', u'recoveri', u'fellow', u'climber', u'bodi']
[u'oppn', u'alleg', u'cover', u'hospit', u'death']
[u'oppn', u'demand', u'answer', u'sydney', u'sewag', u'overflow']
[u'parent', u'urg', u'supervis', u'children', u'breakfast']
[u'rise', u'northam', u'councillor']
[u'pelican', u'run', u'amok', u'melb', u'highway']
[u'perth', u'muso', u'win', u'morrison', u'music', u'scholarship']
[u'pillag', u'plunder', u'captur', u'adelaid']
[u'polic', u'continu', u'manhunt', u'shoot']
[u'polic', u'crack', u'road', u'offenc']
[u'polic', u'hear', u'drink', u'spike', u'report']
[u'polic', u'look', u'crash']
[u'polic', u'probe', u'motel', u'vandal', u'report']
[u'polic', u'seek', u'help', u'hunt', u'arsonist']
[u'polic', u'identifi', u'goat', u'track', u'bodi']
[u'politician', u'tribut', u'soorley']
[u'pont', u'mcgrath', u'inspir', u'australian', u'victori']
[u'poppi', u'grower', u'tell', u'price', u'safeguard']
[u'prosecutor', u'outlin', u'case', u'amrozi']
[u'public', u'urg', u'vote', u'holiday']
[u'push', u'parliament', u'goldfield']
[u'govt', u'urg', u'consid', u'victiorian', u'insur']
[u'govt', u'urg', u'consid', u'victorian', u'insur']
[u'qlds', u'chief', u'magistr', u'face', u'suprem', u'court']
[u'raider', u'sign', u'woolford']
[u'rain', u'truck', u'water', u'suppli']
[u'ranger', u'heart', u'scare']
[u'real', u'sociedad', u'spain', u'real', u'madrid', u'second']
[u'hodgson', u'take', u'monza', u'superbik']
[u'reserv', u'plan', u'specif', u'threat', u'hill']
[u'rooney', u'murphi', u'pull', u'england', u'squad']
[u'rooster', u'knight', u'sydney']
[u'rooster', u'sign', u'walker']
[u'erupt', u'rfsa', u'pay', u'offic']
[u'ruddock', u'arriv', u'launceston', u'protest']
[u'russian', u'cyclist', u'face', u'drug', u'charg', u'sydney']
[u'russian', u'cyclist', u'face', u'court', u'world', u'drug']
[u'salin', u'studi']
[u'sar', u'blame', u'wool', u'price', u'slump']
[u'seaman', u'agonis', u'highburi', u'futur']
[u'seatbelt', u'campaign', u'target', u'region']
[u'seminar', u'focus', u'suicid', u'prevent']
[u'senat', u'predict', u'hard', u'time', u'tourism', u'sector']
[u'senat', u'rais', u'question', u'radio', u'station', u'fund']
[u'senat', u'say', u'telstra', u'prepar', u'job']
[u'shire', u'welcom', u'govt', u'vcat', u'decis']
[u'singh', u'pull', u'coloni']
[u'south', u'africa', u'turmoil', u'ahead', u'england', u'clash']
[u'south', u'korea', u'japan', u'harden', u'stand', u'north', u'korea']
[u'statist', u'highlight', u'secur', u'concern']
[u'storm', u'black', u'thousand']
[u'studi', u'rethink', u'testosteron', u'women']
[u'suicid', u'bomber', u'wound', u'gaza']
[u'suicid', u'bomb', u'prompt', u'widespread', u'condemn']
[u'sunwat', u'water', u'meter', u'read', u'result']
[u'support', u'seek', u'airstrip', u'upgrad']
[u'survey', u'highlight', u'crime', u'woe']
[u'surviv', u'fund', u'launch', u'ail', u'oper']
[u'suspici', u'histor', u'railway', u'station']
[u'swain', u'clear', u'injuri']
[u'swiss', u'reject', u'nuclear', u'power', u'freez']
[u'sydney', u'shoot', u'prompt', u'polic', u'warn']
[u'govt', u'urg', u'resolv', u'lift']
[u'hotel', u'unconcern', u'slump']
[u'tasmanian', u'urg', u'protest', u'possibl']
[u'tasmania', u'anti', u'terror', u'unit']
[u'teacher', u'reject', u'rise', u'offer']
[u'temper', u'erupt', u'labor', u'confer']
[u'thousand', u'tip', u'sign', u'anti', u'nuclear', u'petit']
[u'tiatto', u'hit', u'comeback', u'trail']
[u'toddler', u'die', u'road', u'crash']
[u'toddler', u'kill', u'traffic', u'crash']
[u'tongan', u'activist', u'call', u'fiscal', u'transpar']
[u'tourist', u'resort', u'face', u'pollut', u'sentenc', u'today']
[u'train', u'year', u'counter', u'terror', u'brigad']
[u'treason', u'trial', u'start', u'africa']
[u'treasuri', u'consult', u'fraud', u'charg']
[u'trial', u'hear', u'amrozi', u'player', u'bali', u'plot']
[u'troop', u'pour', u'aceh', u'offens', u'begin']
[u'treat', u'chemic', u'spill', u'fyshwick']
[u'ullrich', u'pantani', u'wait', u'tour', u'wildcard', u'decis']
[u'democrat', u'blast', u'bush', u'campaign', u'terror']
[u'hammer', u'japan', u'world', u'tune']
[u'victori', u'claim', u'belgium', u'elect']
[u'concern', u'commonwealth', u'reneg', u'fund']
[u'govt', u'blast', u'green', u'anti', u'nuclear']
[u'walker', u'sign', u'rooster']
[u'wasim', u'bid', u'farewel', u'intern', u'stage']
[u'water', u'restrict', u'like', u'melbourn', u'june']
[u'weak', u'greenback', u'push', u'aussi', u'higher']
[u'weed', u'control', u'spark', u'temporari', u'park', u'closur']
[u'wiki', u'fight', u'charg']
[u'woman', u'kill', u'central', u'accid']
[u'writer', u'head', u'head', u'festiv']
[u'yeppoon', u'lose', u'sunday', u'trade']
[u'youth', u'worker', u'tackl', u'antisoci', u'woe']
[u'miner', u'fear', u'dead', u'coalmin', u'accid']
[u'british', u'voter', u'vote', u'euro', u'poll']
[u'miner', u'fear', u'dead', u'china']
[u'tell', u'player', u'wait', u'rise']
[u'aceh', u'unlik', u'hurt', u'tie', u'hill']
[u'govt', u'take', u'credit', u'rise', u'employ', u'rate']
[u'action', u'call', u'save', u'river']
[u'activist', u'protest', u'militari', u'action', u'aceh']
[u'readi', u'network', u'base']
[u'club', u'advic', u'surviv']
[u'spread', u'middl', u'east']
[u'australian', u'advis', u'leav', u'aceh']
[u'alleg', u'crime', u'syndic', u'face', u'court']
[u'ancelotti', u'call', u'reserv', u'final']
[u'arafura', u'game', u'reschedul']
[u'arm', u'bandit', u'lock', u'pair', u'room']
[u'artist', u'tri', u'world', u'longest', u'batik', u'paint']
[u'aussi', u'protea']
[u'aussi', u'protea', u'world', u'champ', u'warm']
[u'aussi', u'stock', u'market', u'close', u'weaker']
[u'aust', u'handl', u'sar', u'victim', u'criticis', u'report']
[u'australia', u'drop', u'singapor', u'sar', u'travel']
[u'australian', u'fan', u'wait', u'extra', u'world', u'ticket']
[u'australia', u'imag', u'sulli', u'sportsmen', u'behav']
[u'aust', u'vietnam', u'confer', u'sar']
[u'babi', u'talk', u'baffl', u'pilot']
[u'brink', u'spadea', u'set', u'sight', u'high']
[u'banker', u'fight', u'footpath', u'fee']
[u'barri', u'hand', u'england']
[u'behrend', u'stun', u'rio', u'pull', u'germani', u'level']
[u'bergkamp', u'pois', u'sign', u'gunner', u'contract']
[u'steel', u'fin', u'sick', u'worker']
[u'bomb', u'explos', u'kill', u'turkish', u'cafe']
[u'expel', u'braid', u'like', u'beckham']
[u'brack', u'claim', u'attack', u'public', u'liabil', u'chang']
[u'brack', u'plan', u'parad', u'troop']
[u'bush', u'expect', u'bumpi', u'road', u'east', u'peac']
[u'calendar', u'girl', u'film', u'delight', u'audienc', u'cann']
[u'driver', u'fatigu', u'campaign']
[u'council', u'merger', u'detail']
[u'traffic', u'inspector', u'road']
[u'capsicum', u'spray', u'offic', u'need', u'retrain']
[u'casablanca', u'suicid', u'bomber', u'identifi']
[u'finish', u'albani', u'upgrad', u'feasibl', u'studi']
[u'celtic', u'honour', u'lisbon', u'lion']
[u'central', u'consid', u'sunday', u'trade']
[u'channel', u'group', u'move', u'ahead', u'plan']
[u'china', u'fin', u'ban', u'athlet', u'xinhua']
[u'cipollini', u'pantani', u'tour', u'franc']
[u'cipollini', u'break', u'record', u'giro', u'stage', u'win']
[u'civil', u'liberti', u'group', u'slam', u'insur', u'reform']
[u'claim', u'civilian', u'kill', u'aceh', u'offens']
[u'claim', u'anglican', u'offici', u'abus', u'boy']
[u'clear', u'prove', u'cost', u'northern', u'timber']
[u'cole', u'myer', u'australia', u'biggest', u'onlin', u'grocer']
[u'command', u'back', u'readi', u'respons', u'decis']
[u'commonwealth', u'bank', u'worker']
[u'compani', u'take', u'thorpedo', u'court']
[u'condit', u'place', u'approv', u'runway']
[u'coron', u'find', u'improp', u'care', u'caus', u'babi', u'death']
[u'council', u'consid', u'pool', u'futur']
[u'crayfish', u'regul', u'shake']
[u'crean', u'downplay', u'poll']
[u'crown', u'outlin', u'case', u'fingleton']
[u'post', u'profit']
[u'dirti', u'water', u'affect', u'water', u'suppli']
[u'disast', u'spark', u'mix', u'feel']
[u'doctor', u'seek', u'insur', u'assur']
[u'document', u'seiz', u'priest', u'investig']
[u'doubt', u'cast', u'holiday', u'chang']
[u'doubt', u'cast', u'medic', u'scholarship']
[u'downer', u'fear', u'substanti', u'aceh', u'death', u'toll']
[u'review', u'child', u'porn', u'sentenc']
[u'dragon', u'fin', u'touch', u'judg', u'jibe']
[u'dragon', u'reel', u'injuri', u'end', u'barrett', u'season']
[u'draper', u'get', u'french', u'open', u'wildcard']
[u'face', u'charg', u'cannabi', u'crop']
[u'embryo', u'research', u'reach', u'parliament']
[u'emerg', u'fund', u'tornado', u'victim']
[u'employe', u'ax', u'drought', u'claim', u'meatwork']
[u'engin', u'student', u'honour']
[u'english', u'player', u'union', u'plan', u'drug']
[u'explos', u'reserv', u'alarm', u'sound']
[u'famili', u'slay', u'missionari', u'return', u'home']
[u'farrier', u'face', u'court', u'charg', u'injur', u'hors']
[u'ferri', u'termin', u'upgrad', u'plan']
[u'fight', u'save', u'danc', u'bear', u'reach', u'melbourn']
[u'finley', u'late', u'basket', u'seal', u'maverick', u'fightback']
[u'signific', u'snow', u'fall', u'snowi']
[u'rebel', u'kill', u'aceh', u'fight']
[u'flintoff', u'doubt', u'test']
[u'england', u'skipper', u'robson', u'join', u'villa', u'race']
[u'find', u'solut', u'water', u'shortag']
[u'franc', u'lose', u'real', u'madrid', u'confeder']
[u'fund', u'beef', u'industri', u'research']
[u'gebrselassi', u'track', u'london', u'meet']
[u'german', u'unknown', u'stun', u'rio']
[u'golden', u'point', u'confirm', u'golden', u'blunder']
[u'govt', u'agenc', u'face', u'penalti', u'overdu']
[u'green', u'believ', u'record']
[u'hackett', u'cairn', u'grand', u'prix']
[u'henin', u'hardenn', u'aim', u'high', u'pari']
[u'hewitt', u'fear', u'pari', u'clay']
[u'hewitt', u'name', u'seed', u'french', u'open']
[u'hird', u'clear', u'blood', u'clot', u'scare']
[u'histor', u'hous', u'shop']
[u'hope', u'injur', u'knight', u'shark']
[u'hope', u'rain', u'continu']
[u'hop', u'goulburn', u'valley', u'iraqi', u'reunit']
[u'howard', u'laud', u'timor', u'progress']
[u'fin', u'bangladesh', u'captain', u'mahmud']
[u'insur', u'reform', u'packag', u'greet', u'mix']
[u'isra', u'forc', u'withdraw', u'northern', u'gaza', u'town']
[u'japan', u'north', u'korea', u'fund', u'channel']
[u'juri', u'hunter', u'valley', u'death', u'case', u'retir']
[u'midfield', u'costinha', u'includ', u'porto', u'squad']
[u'kidman', u'find', u'dogvill', u'worth', u'shout']
[u'knowl', u'tenterfield', u'visit', u'reveal']
[u'kournikova', u'plan', u'doubl', u'wimbledon', u'warm']
[u'latham', u'back', u'munster']
[u'latham', u'pois', u'stay', u'red', u'report']
[u'secur', u'surpris', u'polic']
[u'legal', u'issu', u'slow', u'abus', u'investig', u'archbishop']
[u'liverpool', u'chase', u'kewel', u'report']
[u'mahathir', u'say', u'welcom']
[u'maier', u'eberhart', u'battl', u'year']
[u'makel', u'deni', u'unit']
[u'choic', u'seaman']
[u'malik', u'take', u'pakistan', u'challeng', u'total']
[u'manchest', u'citi', u'chairman']
[u'face', u'trial', u'meat', u'cleaver', u'attack']
[u'leav', u'pantless', u'robberi']
[u'plead', u'guilti', u'neglig', u'drive']
[u'plead', u'guilti', u'rap', u'teen']
[u'unit', u'keep', u'wait', u'ronaldinho']
[u'march', u'take', u'tiger', u'deputi']
[u'mcveigh', u'clear', u'barnard', u'corn', u'suspend']
[u'mcveigh', u'clear', u'barnard', u'suspend']
[u'mickelberg', u'frame', u'case', u'throw', u'court']
[u'microsoft', u'global', u'product', u'support', u'centr']
[u'archaeolog', u'dig', u'moot', u'toowoomba']
[u'call', u'rail', u'standardis', u'project']
[u'illeg', u'fish', u'boat', u'detain']
[u'money', u'canberra', u'bushfir', u'victim']
[u'terrorist', u'attack', u'immin', u'report']
[u'claim', u'resolv', u'taskforc']
[u'mother', u'trial', u'assault']
[u'water', u'issu']
[u'repeat', u'call', u'build', u'insur']
[u'napster', u'rise', u'ash']
[u'nepales', u'runner', u'domin', u'everest', u'marathon']
[u'book', u'improv', u'indigen', u'literaci', u'rat']
[u'custom', u'offic', u'open', u'broom']
[u'insur', u'law', u'introduc']
[u'literari', u'program', u'launch', u'central', u'aust']
[u'tiwi', u'websit', u'launch']
[u'lament', u'stronger', u'aussi', u'dollar']
[u'nickel', u'price', u'predict', u'rise']
[u'speaker', u'action', u'wind', u'farm', u'question']
[u'npws', u'reject', u'drought', u'park', u'claim']
[u'get', u'winter', u'snow']
[u'govt', u'urg', u'boost', u'region', u'tourism', u'spend']
[u'plan', u'parol', u'account', u'measur']
[u'trial', u'medicin', u'marijuana']
[u'owner', u'face', u'insur', u'rise']
[u'korea', u'warn', u'south', u'horrif', u'disast']
[u'lamb', u'export', u'rise']
[u'odavi', u'return', u'horror', u'face', u'injuri']
[u'offic', u'seek', u'damag', u'fall', u'child', u'care']
[u'olim', u'hotel', u'manag']
[u'dead', u'turkish', u'explos']
[u'outrag', u'reef', u'pollut', u'fine']
[u'pacer', u'miller', u'undergo', u'right', u'ankl', u'surgeri']
[u'staff', u'receiv', u'redund', u'payout']
[u'pilot', u'criticis', u'runaway', u'plane', u'incid']
[u'pipelin', u'offer', u'water', u'suppli']
[u'polic', u'look', u'woomera', u'claim']
[u'polic', u'look', u'woomera', u'mismanag', u'claim']
[u'poppi', u'grower', u'stronger', u'aussi', u'dollar']
[u'port', u'hedland', u'detent', u'centr', u'worker']
[u'port', u'hedland', u'indigen', u'servic', u'review']
[u'preschool', u'revamp', u'fund']
[u'press', u'watchdog', u'urg', u'philippin', u'protect']
[u'govt', u'air', u'illeg', u'fish', u'concern']
[u'govt', u'sign', u'disast', u'fund']
[u'raaf', u'base', u'heritag', u'recognit']
[u'rain', u'boost', u'farmer', u'effort']
[u'rain', u'bring', u'good']
[u'rainfal', u'respit', u'part', u'south', u'east']
[u'rebel', u'civilian', u'kill', u'aceh', u'fight']
[u'record', u'temperatur', u'central']
[u'cross', u'logo', u'steal']
[u'right', u'life', u'case', u'court']
[u'riverland', u'miss', u'downpour']
[u'roddick', u'surviv', u'second', u'scare']
[u'rooster', u'coach', u'stuart', u'prais', u'walker']
[u'erupt', u'marina', u'develop', u'applic']
[u'ruddock', u'rule', u'judici', u'probe']
[u'safin', u'french', u'open']
[u'schumach', u'prais', u'crew']
[u'seafood', u'export', u'urg', u'help']
[u'searson', u'buck', u'win', u'busi', u'award', u'excel']
[u'self', u'harm', u'ongo', u'problem', u'detent', u'centr']
[u'council', u'consid', u'merger']
[u'sinclair', u'pledg', u'futur', u'west']
[u'sing', u'generat', u'get', u'voic']
[u'small', u'busi', u'face', u'tough', u'time']
[u'socceroo', u'oceania', u'world', u'qualifi', u'date']
[u'solo', u'explor', u'arriv', u'north', u'pole']
[u'farmer', u'rain']
[u'special', u'forc', u'task', u'group', u'arriv', u'sydney']
[u'lankan', u'flood', u'toll', u'hit']
[u'georg', u'take', u'bank', u'honour']
[u'stress', u'fractur', u'sidelin', u'zealand', u'paceman', u'bond']
[u'student', u'heckl', u'costello', u'hike', u'plan']
[u'superstiti', u'milan', u'wear', u'white', u'final']
[u'swiss', u'foreign', u'minist', u'cross', u'korean', u'border']
[u'tafe', u'teacher', u'welcom', u'polit', u'support']
[u'taiwanes', u'health', u'worker', u'quit', u'sar', u'toll', u'rise']
[u'govt', u'surpris', u'level', u'nurs', u'abus']
[u'tatu', u'tip', u'eurovis', u'song', u'contest']
[u'teen', u'get', u'communiti', u'order', u'assault', u'theft']
[u'terror', u'forum', u'brisban', u'focus', u'busi']
[u'thorp', u'battl']
[u'tourist', u'number', u'record', u'largest', u'month', u'drop']
[u'treasuri', u'head', u'warn', u'labour', u'forc', u'dwindl']
[u'mission', u'east', u'timor', u'extend', u'year']
[u'chopper', u'crash', u'iraq', u'dead']
[u'policeman', u'bodi', u'recov', u'tibet']
[u'resort', u'receiv', u'substanti', u'snowfal']
[u'virgin', u'blue', u'consid', u'goldfield', u'servic']
[u'volunt', u'seek', u'help']
[u'wallabi', u'restor', u'reput', u'poor', u'super']
[u'wander', u'croc', u'spark', u'secur', u'boost']
[u'waratah', u'face', u'tribun', u'nightclub', u'brawl']
[u'water', u'restrict', u'begin', u'juli']
[u'water', u'scheme', u'upgrad', u'hold']
[u'westfield', u'trump', u'centro', u'takeov']
[u'wiki', u'smith', u'clear', u'judiciari', u'hear']
[u'wilder', u'societi', u'want', u'tall', u'tree', u'protect']
[u'wit', u'begin', u'testimoni', u'bashir', u'trial']
[u'woomera', u'claim', u'demand', u'inquiri', u'oppn']
[u'woomera', u'sicken', u'report']
[u'abattoir', u'reopen']
[u'abbott', u'commit', u'meet', u'strike', u'worker']
[u'mazen', u'postpon', u'tour', u'tank', u'roll']
[u'chip', u'bradman']
[u'aceh', u'attack', u'continu', u'report', u'dead']
[u'appal', u'woomera', u'alleg']
[u'consid', u'right']
[u'govt', u'push', u'park', u'parliamentari', u'zone']
[u'clear', u'mccartney', u'tribut', u'bali', u'dead']
[u'agist', u'cattl', u'move', u'south', u'west']
[u'akhtar', u'accus', u'ball', u'tamper']
[u'alburi', u'council', u'eye', u'hume', u'shire']
[u'ord', u'edg', u'mix']
[u'archbishop', u'encourag', u'victim', u'come', u'forward']
[u'armstrong', u'take', u'honour', u'laureus', u'award']
[u'attempt', u'kill', u'shop', u'owner', u'land', u'robber']
[u'australia', u'hauritz', u'dayer']
[u'australian', u'urg', u'leav', u'saudi', u'arabia']
[u'bank', u'urg', u'compass', u'tornado', u'victim']
[u'barrett', u'miss', u'rest', u'season']
[u'bayern', u'scandal', u'share', u'bundesliga', u'spotlight']
[u'bidder', u'high', u'perform', u'role']
[u'blacklock', u'rejoin', u'dragon']
[u'bodi', u'burn']
[u'bristol', u'lose', u'gibson', u'leicest']
[u'hardi', u'fin', u'wast', u'spill']
[u'bugger', u'ban', u'parliament']
[u'bush', u'appeal', u'crackdown', u'terrorist']
[u'bushfir', u'victim', u'receiv', u'bonus', u'donat']
[u'cabbi', u'offer', u'expert', u'advic', u'brazil', u'economi']
[u'altern', u'court', u'option']
[u'canberra', u'employ', u'base', u'rise']
[u'cane', u'farmer', u'urg', u'pressur', u'polli']
[u'cannabi', u'plan', u'merit', u'patterson']
[u'use', u'share', u'offer', u'fund']
[u'claim', u'furnitur', u'worker', u'like', u'entitl']
[u'clark', u'reject', u'call', u'resign']
[u'clear', u'decis', u'pend', u'thousand', u'hectar']
[u'comeback', u'queen', u'capriati', u'gatecrash', u'mood']
[u'concern', u'air', u'water', u'restrict']
[u'consult', u'list', u'save']
[u'corn', u'suspend', u'rough', u'play']
[u'costa', u'trumpet', u'public', u'transport', u'chang']
[u'council', u'consid', u'lake', u'regrowth', u'strategi']
[u'councillor', u'vote', u'extend', u'trade', u'hour']
[u'council', u'reject', u'merger', u'plan']
[u'council', u'rental', u'probe', u'spark', u'recommend']
[u'council', u'submit', u'boundari', u'chang', u'plan']
[u'council', u'discuss', u'possibl', u'merger']
[u'court', u'hear', u'close', u'submiss', u'patient', u'feed']
[u'crean', u'back', u'medicin', u'marijuana', u'trial']
[u'crean', u'privat', u'health', u'rebat', u'form']
[u'cruis', u'ship', u'visit', u'boost', u'broom', u'tourism']
[u'cuban', u'give', u'life', u'sentenc', u'hijack', u'plane']
[u'cultur', u'gene', u'play', u'role', u'alzheim']
[u'dive', u'industri', u'urg', u'follow', u'procedur']
[u'dollar', u'link', u'euro', u'fortun']
[u'downer', u'urg', u'mugab', u'stand']
[u'encourag', u'improv', u'product', u'boost']
[u'decid', u'charg', u'crick', u'suicid']
[u'drought', u'slash', u'wheat', u'profit']
[u'elder', u'predict', u'decim', u'heritag']
[u'england', u'start', u'strength', u'south', u'africa']
[u'farmer', u'disput', u'end', u'tractor', u'joust']
[u'fear', u'loom', u'record', u'water', u'alloc']
[u'feder', u'fund', u'tiger', u'prawn', u'industri']
[u'feder', u'prim', u'parisian', u'challeng']
[u'fibr', u'optic', u'project', u'cost', u'taxpay', u'oppn']
[u'folbigg', u'juri', u'continu', u'deliber']
[u'reuter', u'vietnam', u'die']
[u'face', u'drug', u'charg']
[u'fish', u'boat', u'seiz', u'coast']
[u'fuelwatch', u'extend']
[u'fuelwatch', u'plan', u'spark', u'opposit']
[u'fund', u'help', u'boost', u'northern']
[u'funer', u'hold', u'legendari', u'disc', u'jockey']
[u'futur', u'industri', u'provid']
[u'gallop', u'rule', u'medic', u'cannabi', u'trial']
[u'gaza', u'strip', u'closur', u'hamper', u'work']
[u'ghandi', u'daughter', u'tour', u'coff']
[u'gippsland', u'doctor', u'elect', u'presid']
[u'gippsland', u'victoria', u'presid']
[u'gold', u'price', u'predict', u'continu', u'climb']
[u'gold', u'sector', u'strength', u'help', u'gympi', u'gold', u'plan']
[u'govt', u'accus', u'politicis', u'parad']
[u'govt', u'confid', u'juli', u'buyback']
[u'govt', u'hit', u'babi', u'bonus']
[u'govt', u'issu', u'singapor', u'travel', u'warn']
[u'govt', u'decid', u'buyback']
[u'govt', u'acceler', u'court', u'case']
[u'govt', u'close', u'child', u'porn', u'loophol']
[u'hard', u'time', u'lake', u'eppalock']
[u'heatwav', u'claim', u'live', u'pakistan']
[u'hewitt', u'give', u'australia']
[u'highway', u'upgrad']
[u'hijack', u'ship', u'dock', u'liberia']
[u'hitzfeld', u'cautious', u'bayern', u'futur']
[u'spot', u'light', u'combat', u'crime']
[u'hous', u'blaze', u'caus', u'sale', u'disrupt']
[u'hundr', u'miss', u'lankan', u'flood']
[u'identif', u'plane', u'wreckag', u'time']
[u'injur', u'flintoff', u'rule', u'test']
[u'injuri', u'offer', u'opportun', u'wallabi']
[u'insur', u'reform']
[u'insur', u'woe', u'spark', u'concern', u'doctor', u'futur']
[u'invinc', u'back', u'bradman']
[u'iraq', u'inspector', u'search', u'miss', u'nuke']
[u'irish', u'anger', u'nation']
[u'itali', u'simoni', u'take', u'overal', u'lead']
[u'john', u'blast', u'origin', u'boss', u'gould']
[u'kalgoorli', u'boulder', u'host', u'touch', u'event']
[u'kelli', u'welcom', u'ethanol', u'trial']
[u'kewel', u'snub', u'report']
[u'kidman', u'feet', u'cann']
[u'labor', u'recruit', u'indigen', u'coast', u'guard']
[u'land', u'valuer', u'consid', u'stanbrok', u'sale', u'spin', u'off']
[u'lapuent', u'leav', u'mexico', u'america', u'leagu', u'flop']
[u'minut', u'goal', u'give', u'river', u'lead']
[u'live', u'broadcast', u'atop', u'everest']
[u'lyon', u'celebr', u'retain', u'ligu', u'titl']
[u'diseas', u'canada']
[u'magistr', u'testifi', u'fingleton', u'trial']
[u'malik', u'make', u'pakistan', u'solid']
[u'abduct', u'shoot', u'sydney']
[u'await', u'sentenc', u'charg']
[u'charg', u'sit', u'milk', u'crate']
[u'charg', u'sydney', u'shoot']
[u'charg', u'assault', u'polic', u'offic']
[u'mandela', u'score', u'beckham', u'support', u'world']
[u'martin', u'hand', u'net', u'seri', u'lead']
[u'martyn', u'hop', u'bat', u'week']
[u'maverick', u'protest', u'decis']
[u'meekatharra', u'teacher', u'list', u'demand']
[u'meet', u'endors', u'paw', u'paus']
[u'milan', u'riot', u'roma', u'italian']
[u'milosev', u'trial', u'year']
[u'minist', u'launch', u'counsel', u'servic']
[u'mix', u'respons', u'insur', u'chang']
[u'mix', u'respons', u'rezon', u'reject']
[u'fish', u'boat', u'seiz']
[u'irrig', u'water', u'seek']
[u'moroccan', u'report', u'plan', u'saudi', u'suicid', u'plane']
[u'mother', u'convict', u'murder', u'children']
[u'motorcyclist', u'attack', u'bike', u'identif', u'scheme']
[u'mourner', u'farewel', u'stan']
[u'moya', u'ferrero', u'lead', u'spanish', u'assault']
[u'mugab', u'oppon', u'threaten', u'chao', u'lord']
[u'murraylink', u'project', u'regul', u'status']
[u'navratilova', u'back', u'sorenstam']
[u'net', u'lead']
[u'approach', u'chemo', u'boost', u'surviv', u'chanc']
[u'newcastl', u'sign', u'bowyer', u'report']
[u'schooli', u'board', u'discuss', u'issu']
[u'start', u'iraq', u'footbal']
[u'technolog', u'mine', u'safer']
[u'govt', u'trial', u'cannabi', u'medic']
[u'lower', u'hous', u'pass', u'consent']
[u'polic', u'appeal', u'termin', u'payout']
[u'push', u'power']
[u'budget', u'boost', u'child', u'protect']
[u'criticis', u'insur', u'cost']
[u'wont', u'politicis', u'state', u'plan', u'martin']
[u'odavi', u'await', u'news', u'injuri']
[u'oliv', u'plant', u'plan', u'ahead']
[u'oneil', u'slam', u'australia', u'poor', u'defens', u'record']
[u'opposit', u'budget', u'mirror', u'govt', u'spend']
[u'packer', u'australia', u'richest']
[u'parent', u'warn', u'underag', u'bodi', u'pierc']
[u'pari', u'join', u'race', u'summer', u'olymp']
[u'patterson', u'medic', u'marijuana', u'plan']
[u'peri', u'enter', u'polit']
[u'peri', u'eye', u'futur', u'polit']
[u'perpetu', u'share', u'slide']
[u'plan', u'moot', u'indigen', u'radio', u'station']
[u'polic', u'break', u'newcastl', u'heroin', u'ring']
[u'polic', u'charg', u'woman', u'daughter', u'tattoo']
[u'polic', u'crack', u'high', u'rise', u'crime']
[u'polic', u'issu', u'warn', u'drink', u'spike']
[u'polic', u'drug', u'charg']
[u'polic', u'italian', u'shark']
[u'pong', u'oper', u'pyongyang', u'defector', u'say']
[u'port', u'author', u'chief', u'step']
[u'port', u'hedland', u'staff', u'worker', u'say']
[u'port', u'appeal', u'corn', u'suspens']
[u'portug', u'reap', u'euro', u'bonanza']
[u'propos', u'gold', u'coast', u'curfew', u'stir', u'debat']
[u'prosecutor', u'sum', u'murder', u'trial']
[u'protest', u'misunderstand', u'reform', u'nelson']
[u'public', u'urg', u'help', u'salvo', u'appeal']
[u'push', u'bush', u'busi', u'break']
[u'govt', u'consid', u'accid', u'measur']
[u'tourism', u'take', u'biggest', u'blow', u'year']
[u'rain', u'come', u'right', u'time', u'farmer']
[u'rain', u'help', u'eas', u'water', u'crisi']
[u'rain', u'spark', u'eas', u'water', u'restrict']
[u'rann', u'upbeat', u'anti', u'terror', u'technolog']
[u'rebel', u'fight', u'see', u'kill', u'congo']
[u'ronaldo', u'win', u'world', u'sport', u'award']
[u'serial', u'killer', u'name', u'court']
[u'assault', u'juri', u'hear', u'record']
[u'shepherd', u'woolskin', u'properti', u'auction']
[u'shoaib', u'hand', u'match', u'tamper']
[u'simoni', u'take', u'giro', u'lead', u'aversen', u'win', u'stage']
[u'singapor', u'launch', u'sar', u'channel']
[u'hero', u'milton', u'honour']
[u'sledg', u'aussi', u'dislik', u'cricket', u'world']
[u'sorenstam', u'get', u'crash', u'cours', u'celebr']
[u'bunker', u'make', u'heritag', u'list']
[u'state', u'recept', u'return', u'troop', u'brack']
[u'sugar', u'industri', u'back', u'ethanol', u'trial']
[u'super', u'mark', u'australian', u'squad']
[u'suspect', u'bali', u'mastermind', u'formal', u'charg']
[u'tann', u'appeal', u'dope']
[u'govt', u'increas', u'prison', u'fund']
[u'team', u'battl', u'wash', u'game']
[u'swimmer', u'ban', u'drug', u'offenc']
[u'tire', u'beckham', u'long', u'feet']
[u'tornado', u'clean', u'week']
[u'tower', u'share', u'plung']
[u'train', u'servic', u'review']
[u'tune', u'miss', u'world']
[u'get', u'shoalhaven', u'campus', u'head']
[u'union', u'hop', u'boost', u'educ', u'budget']
[u'step', u'rural', u'health', u'train']
[u'analys', u'alleg', u'qaeda', u'tape']
[u'delay', u'iraqi', u'nation', u'confer']
[u'sanction', u'plan', u'think']
[u'troop', u'accident', u'kill', u'afghan', u'soldier']
[u'govt', u'rule', u'medicin', u'marijuana']
[u'victoria', u'host', u'oceania', u'basketbal', u'championship']
[u'victoria', u'host', u'oceania', u'basketbal', u'titl']
[u'villa', u'oleari']
[u'wage', u'cost', u'index', u'show', u'pay', u'check']
[u'govt', u'reject', u'farmbi', u'fund', u'attack']
[u'govt', u'step', u'campaign', u'sell']
[u'pair', u'jail', u'neglect']
[u'watson', u'hint', u'long', u'stay', u'tasmanian', u'tiger']
[u'white', u'contepomi', u'leav', u'bristol']
[u'white', u'contepomi', u'quit', u'bristol']
[u'adopt', u'landmark', u'anti', u'tobacco', u'treati']
[u'extend', u'sar', u'travel', u'warn', u'cover', u'taiwan']
[u'wildcat', u'laker', u'coach']
[u'william', u'armstrong', u'honour', u'laureus']
[u'yacht', u'death', u'prevent', u'coron']
[u'yalgoo', u'desalin', u'plant']
[u'yurvaj', u'follow', u'tendulkar', u'trail', u'yorkshir']
[u'report', u'kill', u'chines', u'blast']
[u'abattoir', u'fund', u'unresolv']
[u'clear', u'hypox', u'train']
[u'safeti', u'risk', u'townsvill']
[u'alcoa', u'signal', u'expans', u'plan']
[u'algeria', u'rescu', u'continu', u'toll', u'hit']
[u'algeria', u'rescu', u'continu', u'death', u'toll', u'grow']
[u'anglican', u'clergi', u'meet', u'abus', u'report']
[u'anglican', u'reverend', u'independ', u'inquiri']
[u'anti', u'campaign', u'welcom', u'moratorium', u'support']
[u'agre', u'develop', u'studi', u'opportun']
[u'appeal', u'launch', u'tornado', u'victim']
[u'appeal', u'board', u'rubbish', u'corn', u'appeal']
[u'archbishop', u'agre', u'disagre']
[u'argentina', u'chile', u'showdown']
[u'armstrong', u'slam', u'cipo', u'tour', u'snub']
[u'aspinal', u'happi', u'meet']
[u'assur', u'offer', u'nativ', u'titl', u'claim']
[u'kill', u'algerian', u'quak']
[u'rule', u'charter', u'compani', u'applaud']
[u'atsic', u'call', u'hold', u'mine', u'australia']
[u'atsic', u'central', u'zone', u'welcom', u'split']
[u'australia', u'take', u'lead', u'west', u'indi']
[u'jen', u'doubl', u'profit']
[u'babi', u'boomer', u'free', u'health', u'sick']
[u'sack', u'schwab']
[u'bali', u'memori', u'plan', u'cooge']
[u'ballestero', u'fin', u'reprimand', u'tour']
[u'bank', u'push', u'ord', u'higher']
[u'blair', u'legal', u'advis', u'doubt', u'iraq', u'plan', u'legal']
[u'blast', u'rock', u'istanbul', u'restaur', u'report']
[u'boat', u'promis', u'kind', u'craft']
[u'brazil', u'face', u'blank', u'weekend', u'club', u'walk']
[u'brazilian', u'consid', u'paulo', u'olymp']
[u'bronco', u'berrigan', u'brother']
[u'bronco', u'berrigan', u'brother']
[u'broom', u'properti', u'price', u'high']
[u'budget', u'jeckyl', u'hyde', u'affair', u'putt', u'say']
[u'bulldog', u'sign', u'sherwin', u'long', u'term', u'deal']
[u'crash', u'spark', u'deeper', u'polic', u'probe']
[u'cathol', u'dioces', u'hop', u'program', u'chang']
[u'celtic', u'coach', u'obrien', u'contract', u'extens']
[u'chelsea', u'agre', u'deal', u'sunderland', u'goalkeep', u'macho']
[u'china', u'record', u'fewer', u'sar', u'infect']
[u'cipollini', u'tour', u'team', u'presid']
[u'cipollini', u'pull', u'giro']
[u'cobb', u'speak', u'drought', u'applic']
[u'commission', u'welcom', u'atsic', u'chang']
[u'communiti', u'await', u'water', u'restrict', u'impact']
[u'costa', u'make', u'rail', u'guard', u'scapegoat', u'union']
[u'council', u'aim', u'entertain', u'centr']
[u'council', u'approv', u'multi', u'million', u'dollar', u'rural']
[u'council', u'hop', u'boost']
[u'council', u'launch', u'roma', u'busi', u'plan']
[u'councillor', u'boost', u'allow']
[u'council', u'monitor', u'land', u'right', u'chang']
[u'court', u'fin', u'builder', u'hous', u'collaps']
[u'court', u'hear', u'magistr', u'associ', u'belliger']
[u'court', u'reject', u'council', u'build', u'demolit']
[u'court', u'decid', u'right', u'dementia']
[u'cwealth', u'loan', u'pay', u'student']
[u'damag', u'seal', u'caus', u'pitstop', u'ferrari']
[u'defenc', u'question', u'murder', u'alleg']
[u'deflat', u'minor', u'risk', u'greenspan']
[u'deivid', u'give', u'cruzeiro', u'stoppag', u'loom']
[u'diego', u'metr', u'chip', u'earn', u'santo', u'libertador', u'draw']
[u'disgrac', u'pharmacist', u'deni', u'registr']
[u'doctor', u'deni', u'alleg']
[u'drought', u'take', u'toll', u'river', u'system']
[u'duncan', u'lift', u'spur', u'antonio', u'seri']
[u'dunn', u'reject', u'blackburn', u'deal']
[u'england', u'boy', u'barbarian', u'match']
[u'euthanasia', u'advoc', u'await']
[u'sorenstam', u'lpga', u'tour']
[u'explos', u'rock', u'yale', u'univers']
[u'famili', u'welcom', u'troop', u'home']
[u'farmer', u'group', u'angri', u'cut']
[u'farmer', u'urg', u'shield', u'rise']
[u'say', u'qaeda', u'attack', u'aim']
[u'feder', u'govt', u'commit', u'central', u'aust', u'ruddock']
[u'feder', u'govt', u'help', u'fund', u'studi', u'poultri', u'plan']
[u'govt', u'reassess', u'applic']
[u'fifth', u'potter', u'book', u'bestsel']
[u'fight', u'continu', u'stop', u'gold']
[u'fisher', u'blockad', u'threat']
[u'fleme', u'take', u'academi', u'coach', u'role']
[u'food', u'forum', u'wrap', u'today']
[u'chief', u'receiv', u'payout']
[u'forum', u'discuss', u'shop', u'levi']
[u'fuel', u'price', u'tip', u'stabilis']
[u'fulli', u'set', u'sight', u'miss', u'titl']
[u'fund', u'help', u'nimbin', u'doctor']
[u'glove', u'parliament']
[u'gould', u'urg', u'blue', u'passion', u'maroon']
[u'govern', u'loggerhead', u'land', u'develop']
[u'govt', u'reissu', u'general', u'travel', u'warn']
[u'govt', u'rule', u'inquiri', u'lockridg', u'camp']
[u'govt', u'reveal', u'plan', u'reef', u'protect']
[u'gympi', u'launch', u'macadamia', u'power', u'plan']
[u'haa', u'pull', u'french', u'open']
[u'health', u'winner', u'budget']
[u'health', u'boost', u'road', u'expens']
[u'health', u'insur', u'agenc', u'tell', u'hard', u'time', u'ahead']
[u'health', u'insur', u'industri', u'profit', u'plung']
[u'heavi', u'delay', u'sydney', u'airport', u'secur', u'breach']
[u'hewitt', u'agassi', u'face', u'fearsom', u'opposit', u'pari']
[u'hewitt', u'french', u'open', u'costa']
[u'hill', u'deni', u'request', u'local', u'base']
[u'hockeyroo', u'coach', u'bell', u'ring', u'chang']
[u'hoggard', u'pass', u'zimbabw', u'test']
[u'hope', u'chang', u'bolster', u'charter', u'boat']
[u'hospit', u'adopt', u'coron', u'recommend']
[u'howard', u'welcom', u'home', u'aviat', u'regiment']
[u'countri', u'mous', u'town', u'mous']
[u'revamp', u'world', u'test', u'championship']
[u'indian', u'strike', u'crippl', u'financi', u'sector']
[u'indonesian', u'court', u'acquit', u'general', u'crime']
[u'indonesian', u'polic', u'arrest', u'member']
[u'inkjet', u'forgeri', u'grow', u'peril', u'banknot', u'printer']
[u'iraq', u'readi', u'resum', u'sale', u'sanction']
[u'iraq', u'resolut', u'mean', u'franc']
[u'isra', u'minist', u'call', u'arafat', u'evict']
[u'jail', u'serial', u'rapist', u'sentenc', u'year']
[u'jakarta', u'send', u'troop', u'aceh']
[u'johansson', u'give', u'qualifi', u'back', u'team', u'world']
[u'johansson', u'slam', u'platini', u'plan', u'shake', u'european']
[u'jone', u'disappoint', u'wallabi', u'behaviour']
[u'judg', u'rule', u'amrozi', u'trial']
[u'kiwi', u'shape', u'final', u'super', u'battl']
[u'lack', u'cancel', u'etsa', u'talk']
[u'lack', u'end', u'power', u'talk']
[u'land', u'clear', u'compo', u'joint', u'fund']
[u'welcom', u'possibil', u'shire', u'council', u'amalgam']
[u'carb', u'diet', u'quicker', u'effect', u'studi']
[u'mackay', u'sugar', u'drop', u'sugar', u'australia']
[u'drown', u'polic', u'pursuit']
[u'jail', u'year', u'flatmat', u'murder']
[u'jail', u'kill', u'parent']
[u'face', u'court', u'stab']
[u'math', u'institut', u'invest', u'local', u'knowledg']
[u'mcewen', u'win', u'giro', u'stage', u'cipollini', u'crash']
[u'mediat', u'meet', u'hold', u'anaesthetist', u'issu']
[u'warn', u'go', u'trial']
[u'minist', u'countri', u'tackl', u'afghan', u'drug']
[u'mobil', u'captain', u'plead', u'guilti', u'yarra', u'pollut']
[u'montgomeri', u'pull', u'prefontain', u'meet']
[u'call', u'princ', u'highway', u'fund']
[u'moroccan', u'author', u'releas', u'detail', u'bomb']
[u'moroccan', u'journalist', u'jail', u'insult', u'king']
[u'motorhom', u'club', u'give', u'reason', u'ralli']
[u'mourhit', u'suspend', u'report']
[u'back', u'migrant', u'boost', u'scheme']
[u'want', u'insur', u'fund', u'pass', u'barley', u'grower']
[u'weigh', u'council', u'merger', u'plan']
[u'murder', u'convict', u'rais', u'child', u'protect', u'question']
[u'film', u'chronicl', u'canberra', u'histori']
[u'zealand', u'test', u'nerv', u'young', u'pakistan']
[u'day', u'weather', u'crucial']
[u'charg', u'hancock', u'inquest']
[u'evid', u'bet', u'sting']
[u'evid', u'bet', u'sting']
[u'injuri', u'report', u'yale', u'blast']
[u'condom', u'compani']
[u'promis', u'iraqi', u'refuge']
[u'defend', u'quash', u'bail']
[u'oneil', u'slam', u'uefa', u'heartbreak']
[u'claim', u'budget', u'fail', u'busi', u'sector']
[u'appoint', u'administr']
[u'parker', u'docker']
[u'philippoussi', u'roddick', u'play', u'wimbledon']
[u'visit', u'asia', u'juli']
[u'parliament', u'mourn', u'loss', u'governor']
[u'polic', u'investig', u'hotel', u'licens', u'death']
[u'polic', u'launch', u'probe', u'death']
[u'polic', u'identifi', u'bodi', u'adelaid', u'river']
[u'port', u'name', u'corn', u'despit', u'suspens']
[u'porto', u'take', u'uefa', u'silver', u'goal', u'thriller']
[u'power', u'boost', u'plan', u'town']
[u'properti', u'valu', u'rise', u'albani']
[u'public', u'prosecutor', u'knock', u'child', u'abus', u'case']
[u'qanta', u'flight', u'schedul', u'secur']
[u'farmer', u'meet', u'govt', u'tree', u'clear', u'deal']
[u'charg', u'ecstasi', u'traffic']
[u'rabobank', u'amp', u'rural', u'lend']
[u'rebel', u'armi', u'clash', u'aceh']
[u'receiv', u'appoint', u'nurs', u'home']
[u'record', u'fine', u'smelli', u'breach']
[u'remot', u'area', u'power', u'spotlight']
[u'report', u'recommend', u'boost', u'safeti', u'measur']
[u'resid', u'happi', u'consult']
[u'spread', u'wing']
[u'rich', u'man', u'fortun', u'fall', u'ibrwi']
[u'road', u'health']
[u'roddick', u'waltz', u'austria', u'costa', u'fall']
[u'ruddock', u'open', u'anti', u'petrol', u'sniff', u'idea']
[u'russian', u'colonel', u'soldier', u'kill', u'chechnya']
[u'church', u'reject', u'drag', u'feet', u'child', u'abus']
[u'african', u'resurfac', u'kidnap', u'ordeal']
[u'govt', u'reject', u'power', u'interconnector', u'decis']
[u'search', u'fail', u'miss', u'woman']
[u'senat', u'want', u'hold', u'irrig', u'scheme']
[u'servic', u'seek', u'clarif', u'singl', u'parent']
[u'iraqi', u'kill', u'firefight', u'troop']
[u'shepherd', u'woolskin', u'staff', u'hop', u'job']
[u'solomon', u'polic', u'arrest', u'australian', u'murder']
[u'sorenstam', u'like', u'cash', u'coloni']
[u'student', u'onlin', u'paper']
[u'student', u'want', u'finish', u'degre', u'churchil', u'campus']
[u'studi', u'consid', u'viticultur', u'potenti']
[u'sunday', u'trade', u'issu', u'settl', u'mayor']
[u'suspect', u'admit', u'bali', u'bomb', u'report']
[u'sydney', u'port', u'handl', u'record', u'number', u'contain']
[u'taiwan', u'face', u'worsen', u'sar', u'outbreak']
[u'talli', u'back', u'brown', u'slap', u'incid']
[u'govt', u'monitor', u'canadian', u'cattl', u'symptom']
[u'green', u'support', u'medicin', u'cannabi']
[u'mine', u'standard', u'scrutini']
[u'critic', u'drug', u'clinic', u'closur']
[u'telstra', u'instal', u'cabl', u'thredbo']
[u'terror', u'concern', u'overst', u'downer']
[u'town', u'hop', u'leas', u'life']
[u'troop', u'deploy', u'success']
[u'truss', u'urg', u'tour', u'reject', u'area']
[u'tuqiri', u'consid', u'home']
[u'tuqiri', u'consid', u'queensland', u'return']
[u'turner', u'get', u'support', u'consent', u'stanc']
[u'umpir', u'act', u'mcgrath', u'clash', u'speed']
[u'pois', u'lift', u'iraq', u'sanction']
[u'court', u'overturn', u'huge', u'tobacco']
[u'end', u'free', u'trade', u'hop']
[u'boost', u'australian', u'militari', u'presenc']
[u'media', u'blitz', u'anger', u'castro']
[u'reassur', u'beef', u'eater']
[u'vinni', u'need', u'rais', u'fund']
[u'govt', u'reject', u'ambit', u'claim', u'alleg']
[u'waqar', u'seal', u'warwickshir', u'switch']
[u'welcom', u'expect', u'campus', u'head']
[u'west', u'tamworth', u'school', u'facil', u'spotlight']
[u'william', u'prais', u'sheedi', u'port', u'essendon', u'clash']
[u'william', u'struggl', u'speed']
[u'woman', u'critic', u'injur', u'crash']
[u'woman', u'stab', u'throat', u'kilda']
[u'wool', u'worker', u'protest', u'condit']
[u'world', u'leader', u'send', u'quak', u'algeria']
[u'wurz', u'give', u'mclaren', u'franc']
[u'year', u'conquer', u'everest']
[u'abbott', u'interven', u'disput']
[u'activist', u'return', u'home', u'indonesian', u'arrest']
[u'follow', u'lead', u'human', u'traffic']
[u'investig', u'continu', u'emerg', u'land', u'probe']
[u'algerian', u'quak', u'toll', u'pass']
[u'alleg', u'siev', u'peopl', u'smuggler', u'arrest', u'sweden']
[u'ancelotti', u'chanc', u'prove', u'point', u'juventus']
[u'angler', u'warn', u'algal', u'bloom', u'threat']
[u'anglican', u'church', u'offer', u'compens', u'abus']
[u'answer', u'seek', u'chief', u'execut', u'departur']
[u'anti', u'terror', u'gather', u'declar', u'success']
[u'aristocrat', u'halt', u'trade']
[u'artist', u'director', u'promis']
[u'atlas', u'group', u'begin', u'capit', u'rais']
[u'auckland', u'tip', u'leav', u'canterburi', u'feel', u'blue']
[u'auditor', u'review', u'bali', u'appeal']
[u'aussi', u'content', u'clark', u'lead', u'wentworth']
[u'beckham', u'injuri', u'overshadow', u'england']
[u'water', u'manag', u'plan', u'unveil']
[u'black', u'cap', u'pakistan', u'final']
[u'blair', u'hail', u'iraqi', u'sanction', u'vote']
[u'blaze', u'tear', u'restaur']
[u'bligh', u'outlin', u'case', u'student', u'place']
[u'brazil', u'soccer', u'strike', u'call']
[u'breach', u'place', u'qanta', u'secur', u'spotlight']
[u'bronco', u'crush', u'bulldog', u'raider', u'roll', u'warrior']
[u'brumbi', u'open', u'miner', u'spring', u'centr']
[u'budget', u'deliv', u'promis', u'academ']
[u'bush', u'declar', u'victori', u'cut']
[u'calder', u'fund', u'fight', u'progress']
[u'chang', u'flight', u'servic']
[u'camera', u'orbit', u'mar', u'snap', u'photo', u'earth']
[u'canada', u'investig', u'sar', u'case']
[u'canberra', u'elect', u'surgeri', u'wait', u'list', u'hit']
[u'canegrow', u'welcom', u'barrier', u'reef', u'pollut', u'review']
[u'cannib', u'alleg', u'bodi']
[u'crash', u'kill', u'west']
[u'cavali', u'pick', u'draft', u'lotteri']
[u'upgrad', u'western', u'deposit']
[u'celtic', u'leap', u'uefa', u'heartbreak', u'tough']
[u'chamber', u'highlight', u'esper', u'busi', u'woe']
[u'chang', u'afoot', u'plan', u'polici']
[u'church', u'employe', u'warn', u'rais', u'suspicion']
[u'claim', u'financi', u'incent', u'need', u'veget']
[u'claim', u'qsia', u'futur', u'despit', u'ballot']
[u'concern', u'air', u'townsvill', u'dengu', u'sit']
[u'concili', u'footbal', u'racial', u'complaint']
[u'confer', u'determin', u'extent', u'wheat', u'virus']
[u'confid', u'chamber', u'readi', u'success']
[u'contract', u'sign', u'defenc']
[u'corbel', u'seek', u'chang', u'nurs', u'work', u'practic']
[u'cosgrov', u'tell', u'student', u'fear', u'terror']
[u'council', u'give', u'store']
[u'council', u'urg', u'think', u'care', u'court', u'case']
[u'cpsu', u'presid', u'die', u'age']
[u'crash', u'leav', u'critic', u'state']
[u'crew', u'contain', u'sydney', u'factori']
[u'crow', u'massi']
[u'custom', u'seiz', u'children', u'snake']
[u'deputi', u'mayor', u'disagre', u'mayor', u'decis']
[u'deschamp', u'slam', u'gallardo', u'lyon', u'close']
[u'disabl', u'group', u'critic', u'ceo', u'rise']
[u'downer', u'applaud', u'lift', u'iraqi', u'sanction']
[u'downer', u'tour', u'iraq']
[u'downturn', u'banana', u'prawn', u'season']
[u'industri', u'unrest', u'soon']
[u'driver', u'jail', u'road', u'rage', u'incid']
[u'elder', u'aliv', u'algerian', u'earthquak']
[u'elder', u'rescu', u'algerian', u'rubbl']
[u'england', u'control', u'lord']
[u'estrada', u'insist', u'face', u'corrupt', u'charg']
[u'execut', u'payout', u'hurt', u'line', u'studi']
[u'famili', u'accus', u'ask', u'case', u'drop']
[u'fear', u'air', u'murray', u'river', u'environment', u'flow']
[u'govt', u'urg', u'releas', u'wheat', u'virus', u'plan']
[u'fingleton', u'break', u'court']
[u'fingleton', u'deni', u'threaten', u'colleagu']
[u'flitcroft', u'commit', u'blackburn']
[u'forc', u'weekend', u'transgressor']
[u'baptist', u'minist', u'jail', u'offenc']
[u'frank', u'announc', u'retir']
[u'freeman', u'oversea', u'sydney']
[u'free', u'tertiari', u'educ', u'math', u'student']
[u'fund', u'cattl', u'scheme']
[u'say', u'hell', u'consid', u'posit']
[u'take', u'weekend', u'consid', u'futur']
[u'take', u'weekend', u'decid', u'futur']
[u'gippsland', u'bushfir', u'victim', u'urg', u'seek']
[u'goldfield', u'industri', u'seek', u'fair', u'tourism']
[u'govt', u'seek', u'assur', u'bali', u'alloc']
[u'govt', u'address', u'doctor', u'insur', u'concern']
[u'govt', u'counter', u'terror', u'divis']
[u'govt', u'widen', u'medic', u'indemn', u'packag']
[u'greenpeac', u'want', u'tuna', u'fish', u'regul', u'toughen']
[u'handl', u'bali', u'appeal', u'fund', u'review']
[u'health', u'staff', u'prepar', u'hospit']
[u'heatwav', u'death', u'toll', u'rise', u'india']
[u'hewitt', u'break', u'moya', u'jinx', u'aussi', u'tumbl']
[u'hewitt', u'hand', u'french', u'open', u'mission', u'imposs']
[u'high', u'unlik', u'import', u'cow', u'chief']
[u'hill', u'reject', u'homeland', u'secur', u'offic']
[u'hollywood', u'legend', u'bid', u'cann', u'glori']
[u'hope', u'survivor', u'fade', u'quak', u'tear', u'algeria']
[u'hospit', u'bank', u'move', u'rais', u'concern']
[u'hotel', u'give', u'safeti', u'upgrad', u'deadlin']
[u'hull', u'higher', u'educ', u'stanc']
[u'human', u'tragedi', u'worri', u'tobacco', u'farmer']
[u'hume', u'council', u'ban', u'pork', u'function']
[u'hume', u'council', u'barrel', u'pork']
[u'immigr', u'dept', u'accus', u'overreact']
[u'india', u'launch', u'commonwealth', u'game']
[u'indigen', u'hous', u'improv', u'architectur', u'professor']
[u'injur', u'foley', u'irish', u'tour']
[u'park', u'airport', u'plan']
[u'investor', u'confid', u'boost', u'share', u'price']
[u'irrig', u'scheme', u'overhaul', u'finish', u'budget']
[u'isra', u'armi', u'dynamit', u'home', u'suicid', u'bomber']
[u'isra', u'woman', u'hurt', u'gaza', u'bomb', u'attack']
[u'israel', u'seiz', u'arm', u'boat', u'lebanon']
[u'januari', u'earmark', u'start', u'ethanol', u'plant', u'work']
[u'jone', u'domin', u'cairn', u'swim', u'meet']
[u'judg', u'criticis', u'jarmyn', u'lawyer']
[u'judg', u'say', u'rape', u'claim', u'imposs', u'prove']
[u'kidd', u'lead', u'net', u'surg', u'final']
[u'kidd', u'put', u'punchless', u'piston', u'brink', u'elimin']
[u'koizumi', u'bush', u'hold', u'talk', u'north', u'korea']
[u'krajicek', u'kournikova', u'french', u'open']
[u'kucera', u'speak', u'cwealth', u'health', u'agreement']
[u'labor', u'demand', u'govt', u'probe', u'airport', u'secur', u'breach']
[u'land', u'council', u'defend', u'mine', u'negoti', u'role']
[u'lara', u'plea', u'windi', u'stop', u'australia']
[u'larg', u'croc', u'remov', u'darwin', u'harbour']
[u'surviv', u'fight', u'atalanta', u'reggina']
[u'latham', u'sign', u'red']
[u'latham', u'return', u'ballymor']
[u'leverkusen', u'fight', u'surviv', u'amid', u'accus']
[u'life', u'expect', u'decid', u'jail', u'sentenc']
[u'livestock', u'transport', u'protest', u'diesel', u'excis']
[u'malthous', u'back', u'lethal', u'draft', u'chang']
[u'malthous', u'call', u'draft', u'chang']
[u'get', u'life', u'polic', u'offic', u'murder']
[u'guilti', u'death', u'threat', u'senior', u'polic']
[u'jail', u'poki', u'spend', u'spree']
[u'jail', u'beat', u'year']
[u'market', u'end', u'week', u'strong']
[u'mccartney', u'get', u'russian', u'diploma']
[u'miner', u'plan', u'lake', u'grace', u'gold', u'drill']
[u'minist', u'agre', u'impos', u'plastic', u'code']
[u'minist', u'hear', u'road', u'fund', u'concern']
[u'money', u'issu', u'insist', u'oleari']
[u'montgomeri', u'expect', u'return', u'time', u'trial']
[u'montgomeri', u'pull', u'track', u'meet']
[u'moscow', u'race', u'summer', u'olymp']
[u'urg', u'highway', u'bypass', u'fatal', u'crash']
[u'want', u'rage', u'cage', u'move']
[u'murdoch', u'say', u'satellit', u'deal', u'boost']
[u'nathan', u'grey', u'sign', u'waratah']
[u'nation', u'water', u'industri', u'flaw', u'csiro', u'expert']
[u'netbal', u'sink', u'south', u'african']
[u'newcastl', u'second', u'feder', u'court', u'magistr']
[u'code', u'practic', u'launch', u'tuna', u'fishermen']
[u'walcha', u'council']
[u'travel', u'warn', u'issu', u'african', u'countri']
[u'nolan', u'kelli', u'paint', u'alic']
[u'govt', u'examin', u'human', u'traffic', u'industri']
[u'nswru', u'set', u'dun', u'punch', u'hear', u'date']
[u'opal', u'boomer', u'cancel', u'china', u'tour']
[u'oppn', u'call', u'knowl', u'head', u'meningococc']
[u'oppn', u'say', u'budget', u'alloc', u'cruel', u'hoax']
[u'meet', u'alleg', u'taliban', u'fighter', u'father']
[u'orang', u'belli', u'parrot', u'prove', u'elus']
[u'organis', u'tell', u'greek', u'hurri', u'ticket']
[u'oyster', u'breakthrough', u'promis', u'farmer', u'benefit']
[u'suspend', u'health', u'council']
[u'pari', u'love', u'match', u'cancel']
[u'plant', u'upgrad', u'aim', u'reduc', u'smell']
[u'plaqu', u'commemor', u'broom', u'bomb']
[u'criticis', u'payout', u'boss']
[u'rule', u'townsvill', u'militari', u'base']
[u'support', u'medicin', u'cannabi', u'trial']
[u'polic', u'hunt', u'pair', u'abduct']
[u'polic', u'plan', u'attend', u'crick', u'memori']
[u'polic', u'search', u'suspect', u'coupl', u'ambush']
[u'polic', u'seek', u'help', u'miss', u'teen']
[u'polic', u'probe', u'chase', u'death']
[u'polic', u'rethink', u'miss', u'woman', u'case']
[u'polic', u'urg', u'parent', u'report', u'assault']
[u'polic', u'road', u'crash', u'victim']
[u'port', u'sink', u'bomber']
[u'port', u'submit', u'write', u'complaint', u'corn']
[u'powel', u'remain', u'defiant', u'exist', u'wmds']
[u'protest', u'imped', u'work']
[u'rann', u'foreshadow', u'fund', u'boost', u'art']
[u'rape', u'claim', u'drop']
[u'real', u'sociedad', u'look', u'lucki', u'malaga']
[u'red', u'sign', u'latham']
[u'remot', u'student', u'gain', u'access', u'digit', u'school']
[u'resid', u'await', u'emiss', u'report']
[u'plan', u'break', u'hill', u'adelaid', u'boost']
[u'rise', u'star', u'jam', u'sign', u'lucrat', u'sponsorship', u'deal']
[u'rockhampton', u'doctor', u'face', u'retrial', u'assault']
[u'roddick', u'roll', u'austria']
[u'rossi', u'join', u'safeti', u'commiss']
[u'rubin', u'eas', u'madrid', u'open', u'semi', u'final']
[u'samudra', u'trial', u'begin', u'june']
[u'scheme', u'distanc', u'educ', u'focus']
[u'schumach', u'honour', u'itali']
[u'second', u'person', u'face', u'drug', u'charg']
[u'sensat', u'second', u'test', u'farewel', u'adelaid', u'pair']
[u'seve', u'pull', u'championship']
[u'slaveri', u'probe', u'welcom', u'welfar', u'group']
[u'sherpa', u'make', u'record', u'everest', u'ascent']
[u'shire', u'want', u'concess', u'water', u'plan', u'go', u'ahead']
[u'simoni', u'win', u'zoncolan', u'extend', u'giro', u'lead']
[u'soldier', u'face', u'drug', u'raid']
[u'sorenstam', u'impress', u'coloni']
[u'sorenstam', u'impress', u'event']
[u'strike', u'affect', u'council', u'outdoor', u'servic']
[u'studi', u'consid', u'hunter', u'river', u'sustain']
[u'stuppl', u'surpris', u'round', u'leader', u'corn']
[u'swan', u'river', u'face', u'worst', u'fish', u'kill', u'phenomenon']
[u'budget', u'criticis', u'underspend']
[u'teacher', u'honour', u'effort']
[u'teen', u'supervis', u'order', u'act']
[u'ten', u'thousand', u'acehnes', u'flee', u'home']
[u'townsvill', u'gear', u'greek', u'fest']
[u'content', u'rule', u'stay', u'free', u'trade', u'talk']
[u'dead', u'tear', u'apart', u'melbourn']
[u'impos', u'sanction', u'china']
[u'vagana', u'remain', u'bulldog']
[u'doctor', u'accept', u'medic', u'indemn', u'packag']
[u'firm', u'iraq', u'rebuild']
[u'warn', u'chop', u'land', u'clear']
[u'waugh', u'win', u'waratah', u'award']
[u'wheat', u'virus', u'confirm', u'numer', u'sit']
[u'wheat', u'virus', u'outsid', u'plant', u'breed', u'program']
[u'lift', u'sar', u'alert', u'research', u'claim']
[u'wine', u'group', u'unhappi', u'cancel', u'etsa', u'talk']
[u'woodsid', u'aid', u'green', u'project']
[u'workcov', u'appeal', u'firework', u'licenc', u'applic']
[u'strata', u'chief', u'appeal', u'sharehold']
[u'yass', u'jail', u'child', u'manslaught']
[u'youth', u'scrambl', u'giant', u'fight']
[u'coach', u'angri', u'protest', u'invad', u'lord', u'outfield']
[u'democraci', u'activist', u'jail', u'burma']
[u'russian', u'troop', u'kill', u'chechen', u'rebel', u'attack']
[u'welcom', u'decis']
[u'actew', u'chief', u'retir']
[u'power', u'bill', u'rise', u'industri', u'deregul']
[u'adelaid', u'festiv', u'await', u'major', u'sponsor']
[u'afghan', u'stage', u'anti', u'protest', u'kabul']
[u'plan', u'museum', u'melbourn']
[u'age', u'care', u'home', u'sale', u'forc', u'resid']
[u'escap', u'prosecut', u'flaw', u'bill']
[u'algerian', u'quak', u'toll', u'tip', u'reach']
[u'ambros', u'take', u'provision', u'pole']
[u'annan', u'announc', u'special', u'repres', u'iraq']
[u'aussi', u'prepar', u'crunch', u'match']
[u'aust', u'back', u'indonesia', u'aceh', u'assault']
[u'aust', u'wait', u'ponder', u'futur']
[u'bali', u'fundrais', u'walk', u'near', u'final']
[u'beckham', u'week']
[u'bilbao', u'midfield', u'gurpegi', u'win', u'drug', u'appeal']
[u'blue', u'secur', u'super', u'titl']
[u'kill', u'cairn', u'railway', u'cross', u'crash']
[u'brazil', u'prepar', u'join', u'small', u'space', u'club']
[u'bronco', u'shut', u'dog', u'raider', u'roll', u'warrior']
[u'bronco', u'shut', u'bulldog', u'raider', u'roll', u'warrior']
[u'brown', u'urg', u'govt', u'plastic', u'levi']
[u'bruce', u'bid', u'bring', u'dunn', u'andrew']
[u'butcher', u'put', u'zimbabw', u'foot']
[u'tallest', u'flower', u'smell', u'sour']
[u'trauma', u'care', u'fund', u'region']
[u'canada', u'report', u'sar', u'death']
[u'canberra', u'veal', u'pull', u'deal']
[u'castro', u'announc', u'fourth', u'televis', u'station', u'cuba']
[u'castronev', u'favorit', u'spoiler', u'lurk']
[u'celtic', u'boss', u'stand', u'critic', u'uefa', u'refere']
[u'champion', u'leagu', u'fever', u'grip', u'itali']
[u'chile', u'meet', u'czech', u'team', u'final']
[u'china', u'report', u'dozen', u'sar', u'case']
[u'clark', u'retain', u'wentworth', u'lead']
[u'clean', u'aust', u'put', u'shop', u'onus', u'retail']
[u'compani', u'director', u'jail', u'dishonest', u'behaviour']
[u'confid', u'boon', u'hous', u'boom']
[u'consum', u'affair', u'probe', u'launceston', u'cinema']
[u'crean', u'say', u'rudd', u'avoid', u'leadership', u'talk']
[u'critic', u'upset', u'gun', u'gambl', u'school']
[u'darwin', u'welcom', u'home', u'timor', u'troop']
[u'dividend', u'cut', u'spur', u'share', u'gain']
[u'drug', u'death', u'probe', u'spread', u'interst']
[u'eastwood', u'hint', u'retir']
[u'economi', u'slow', u'japan', u'space', u'program']
[u'eriksson', u'defend', u'player', u'mandela']
[u'everton', u'yobo', u'deal']
[u'ferdinand', u'injuri', u'give', u'england', u'scare']
[u'govt', u'mishandl', u'pipelin', u'sale', u'treasur']
[u'hurt', u'spanish', u'post', u'offic', u'blast']
[u'french', u'minist', u'meet', u'arafat', u'despit']
[u'french', u'flight', u'downsiz', u'club']
[u'challeng', u'church', u'find']
[u'girl', u'age', u'climb', u'mount', u'everest']
[u'govt', u'accus', u'put', u'afghan', u'risk']
[u'health', u'school', u'design', u'websit', u'boost', u'profil']
[u'heatwav', u'kill', u'southern', u'india']
[u'helicopt', u'servic', u'region']
[u'hoggard', u'leav', u'zimbabw', u'face', u'uphil', u'battl']
[u'hop', u'altern', u'health', u'plan', u'rebuild']
[u'iraqi', u'elect', u'council', u'strife', u'tear', u'kirkuk']
[u'isra', u'troop', u'kill', u'palestinian', u'near', u'gaza', u'israel']
[u'isra', u'troop', u'raid', u'tulkarem', u'west', u'bank']
[u'jenolan', u'cave', u'access', u'road', u'close']
[u'kimmorley', u'lead', u'shark', u'home', u'gasp', u'penalti']
[u'kinnear', u'leav', u'luton']
[u'lib', u'mayor', u'candid', u'pledg', u'hour', u'secur']
[u'lion', u'look', u'princ', u'park', u'blue']
[u'lion', u'smash', u'carlton']
[u'matthew', u'kane', u'share', u'lead']
[u'mcewen', u'quit', u'giro']
[u'mcnarn', u'take', u'command', u'middl', u'east', u'forc']
[u'memori', u'plan', u'cpsu', u'chief', u'reynold']
[u'militari', u'investig', u'report', u'civilian']
[u'minist', u'disgust', u'school', u'robberi']
[u'minist', u'cleaner']
[u'minist', u'resign', u'rock', u'indian', u'govt']
[u'nelson', u'defend', u'fund', u'level', u'elit', u'privat']
[u'newcastl', u'agre', u'year', u'deal', u'bowyer']
[u'newman', u'continu', u'secur', u'patrol', u'push']
[u'plagiar', u'scandal', u'hit', u'time']
[u'kill', u'ugandan', u'rebel', u'attack']
[u'korea', u'deni', u'blackmail', u'nuke', u'crisi']
[u'govt', u'reject', u'claim', u'need', u'meet']
[u'oppn', u'rais', u'prospect']
[u'polic', u'seiz', u'million', u'cannabi', u'hous']
[u'child', u'porn', u'charg']
[u'rebuild', u'iraq', u'administr']
[u'palestinian', u'welcom', u'sharon', u'accept']
[u'paramed', u'station', u'build', u'sorel']
[u'patterson', u'open', u'remot', u'kintor', u'health', u'clinic']
[u'perth', u'council', u'oppos', u'deregul', u'trade']
[u'petacchi', u'pummel', u'peloton', u'claim', u'stage']
[u'philippin', u'say', u'rebel', u'kill', u'past', u'week']
[u'polic', u'appeal', u'inform', u'teen', u'abduct']
[u'polic', u'investig', u'cairn', u'murder', u'suicid']
[u'port', u'bash', u'bomber']
[u'rain', u'reliev', u'drought', u'govt']
[u'rampag', u'lion', u'smash', u'carlton']
[u'cross', u'offici', u'greec', u'guilti']
[u'restor', u'order', u'downer', u'urg', u'iraq', u'administr']
[u'roddick', u'face', u'davydenko', u'austrian', u'final']
[u'rooney', u'join', u'england', u'squad']
[u'rossi', u'take', u'provision', u'pole']
[u'rubin', u'race', u'madrid', u'final']
[u'rugbi', u'leagu', u'mourn', u'kangaroo', u'mcmahon']
[u'russian', u'lesbian', u'tip', u'eurovis']
[u'give', u'film', u'industri', u'high', u'prioriti']
[u'saint', u'perform', u'malthous']
[u'salvat', u'armi', u'come', u'knock']
[u'sar', u'slug', u'asian', u'industri']
[u'score', u'join', u'stage', u'bali', u'fundrais', u'walk']
[u'search', u'resum', u'miss', u'coolum', u'woman']
[u'shoot', u'russian', u'elect', u'offic', u'kill']
[u'siena', u'edg', u'closer', u'seri']
[u'sorenstam', u'miss', u'coloni']
[u'sorenstam', u'miss', u'texa']
[u'sorenstam', u'person', u'quest', u'prove', u'emot', u'test']
[u'nix', u'falkirk', u'promot']
[u'spur', u'stun', u'maverick']
[u'state', u'reluct', u'follow', u'lead', u'recycl']
[u'strasbourg', u'sign', u'coach', u'kombouar']
[u'super', u'final', u'help', u'decid', u'spot', u'mitchel']
[u'survey', u'ask', u'canberran', u'rebuild']
[u'govt', u'urg', u'land', u'clear']
[u'timor', u'manag', u'head', u'iraq']
[u'tour', u'director', u'give', u'cipollini', u'glimmer', u'hope']
[u'tripl', u'treat', u'mill', u'cairn']
[u'arrest', u'perth', u'chase']
[u'dead', u'separ', u'accid']
[u'accept', u'bianchi', u'registr']
[u'uday', u'lion', u'releas', u'africa']
[u'fortifi', u'hous', u'parliament']
[u'ullrich', u'tour', u'franc', u'approv']
[u'unit', u'end', u'season', u'style']
[u'warn', u'aceh', u'humanitarian', u'crisi']
[u'congress', u'pass', u'cut']
[u'deni', u'uday', u'negoti', u'surrend']
[u'japan', u'unit', u'north', u'korea', u'nuke']
[u'stevedor', u'firm', u'assum', u'control', u'iraqi', u'port']
[u'troop', u'strike', u'gold', u'iraq']
[u'warn', u'truck', u'bomb', u'threat']
[u'veal', u'turn', u'wnba']
[u'venezuela', u'govern', u'foe', u'agre', u'referendum', u'pact']
[u'volunt', u'help', u'fenc', u'ravag', u'farm']
[u'voss', u'clear', u'play']
[u'wallabi', u'edmond', u'relish', u'catalan', u'challeng']
[u'watchdog', u'say', u'media', u'curb', u'aceh', u'journalist']
[u'weapon', u'inspector', u'enter', u'iraq']
[u'widow', u'alleg', u'cover', u'wife', u'death']
[u'woman', u'suffer', u'epilept', u'seizur', u'inmigr']
[u'aceh', u'offens', u'month', u'analyst']
[u'destroy', u'illeg', u'firework']
[u'adelaid', u'test', u'terrorist', u'attack', u'respons']
[u'alcohol', u'link', u'fisherman', u'drown']
[u'algeria', u'quak', u'toll', u'surpass']
[u'defend', u'hike', u'doctor', u'salari']
[u'ambros', u'take', u'supercar']
[u'anderson', u'deliv', u'star', u'debut']
[u'anger', u'erupt', u'quak', u'respons']
[u'asia', u'afford', u'aceh', u'independ', u'downer']
[u'asic', u'exoner', u'insid', u'trade']
[u'asic', u'gather', u'team', u'probe']
[u'atalanta', u'reggina', u'releg', u'play']
[u'aussi', u'roger', u'take', u'tour', u'belgium', u'lead']
[u'aussi', u'captur', u'seri']
[u'australia', u'captur', u'seri']
[u'australia', u'complet', u'clean', u'sweep']
[u'battl', u'bunni', u'sink', u'panther', u'extend', u'streak']
[u'footag', u'dead', u'troop']
[u'benefactor', u'save', u'student', u'virgin', u'auction']
[u'bilater', u'talk', u'north', u'korea', u'tell']
[u'bombay', u'airport', u'hostag', u'taker', u'surrend']
[u'bournemouth', u'playoff', u'final', u'return']
[u'serious', u'injur', u'attack']
[u'britain', u'germani', u'open', u'saudi', u'embassi']
[u'buckingham', u'palac', u'comment', u'resign']
[u'build', u'industri', u'welcom', u'certif', u'chang']
[u'butcher', u'star', u'england', u'overwhelm', u'zimbabw']
[u'canadian', u'farm', u'quarantin', u'scare']
[u'chile', u'claim', u'world', u'team']
[u'china', u'record', u'sar', u'death']
[u'china', u'sar', u'hop']
[u'crowd', u'control', u'identifi', u'major', u'problem', u'mock']
[u'darwinit', u'join', u'sorri', u'heal', u'walk']
[u'democrat', u'reunion', u'asylum', u'seeker']
[u'doctor', u'wage', u'increas', u'leech', u'hospit', u'fund']
[u'dragila', u'edg', u'russian', u'rival']
[u'drug', u'council', u'back', u'cannabi', u'trial']
[u'educ', u'plan', u'rais', u'cost', u'barrier', u'labor']
[u'explos', u'rock', u'north', u'aceh', u'town']
[u'deni', u'beckham', u'deal']
[u'famili', u'moot', u'replac', u'queen', u'birthday']
[u'farina', u'elia', u'claim', u'strasbourg', u'titl']
[u'fava', u'tip', u'wallabi', u'bolter']
[u'festiv', u'success', u'prove', u'aust', u'literari', u'hunger']
[u'firefight', u'prais', u'instinct', u'hero']
[u'fisherman', u'miss', u'accid']
[u'arrest', u'trespass', u'incid']
[u'flotilla', u'take', u'anti', u'nuclear', u'protest']
[u'victorian', u'governor', u'mcgarvi', u'die', u'age']
[u'freeman', u'run', u'disappoint', u'fifth']
[u'fruit', u'vege', u'beat', u'heart', u'diseas']
[u'fund', u'boost', u'alic', u'katherin', u'art', u'festiv']
[u'right', u'decis', u'beatti']
[u'quit']
[u'resign', u'deep', u'regret']
[u'gibernau', u'upstag', u'rossi', u'man']
[u'govt', u'reduc', u'prison', u'overcrowd']
[u'govt', u'consid', u'doubl', u'dissolut']
[u'hayden']
[u'hec', u'mean', u'test', u'step', u'right', u'direct', u'union']
[u'helicopt', u'rescu', u'ormeau', u'accid']
[u'hockeyroo', u'kiwi', u'olymp', u'race']
[u'hollingworth', u'resign']
[u'hostag', u'hold', u'bombay', u'airport', u'guard', u'shoot']
[u'hundr', u'tip', u'mark', u'nation', u'sorri']
[u'immelman', u'take', u'shoot', u'wentworth', u'lead']
[u'indemn', u'law', u'thing', u'wors']
[u'indonesia', u'tighten', u'grip', u'aceh']
[u'investig', u'underway', u'hobart', u'chapel', u'blaze']
[u'iraqi', u'worker', u'wag']
[u'iraq', u'ramp', u'product']
[u'isra', u'cabinet', u'approv', u'peac', u'blueprint']
[u'isra', u'cabinet', u'discuss', u'sharon', u'peac', u'plan']
[u'isra', u'raid', u'refuge', u'camp', u'sharon', u'back', u'peac']
[u'john', u'move', u'eas', u'perceiv', u'rift', u'gould']
[u'kangaroo', u'upset', u'swan', u'hawthorn', u'crash', u'adelaid']
[u'kidd', u'star', u'net', u'march', u'final']
[u'kimmorley', u'upstag', u'john']
[u'lament', u'lyon', u'crown', u'champion']
[u'dog', u'bite', u'flasher']
[u'gasp', u'penalti', u'sink', u'eel', u'cowboy', u'edg']
[u'leverkusen', u'safe', u'stuttgart', u'champion', u'leagu']
[u'loxton', u'irrig', u'upgrad', u'save']
[u'injur', u'storey', u'fall']
[u'serious', u'injur', u'warwick', u'accid']
[u'matthew', u'pull', u'ahead', u'kane']
[u'mccartney', u'rock', u'squar']
[u'metcard', u'problem', u'soon', u'resolv', u'govt']
[u'milic', u'fire', u'olymp', u'grand', u'final']
[u'mill', u'fire', u'cairn']
[u'minor', u'fire', u'damag', u'school']
[u'modest', u'return', u'brace', u'tough', u'year']
[u'morocco', u'arrest', u'casablanca', u'blast']
[u'motherwel', u'celebr', u'releg', u'repriev', u'style']
[u'netbal', u'complet', u'clean', u'sweep']
[u'appoint', u'week']
[u'presid', u'support', u'fail', u'save', u'race']
[u'sar', u'case', u'setback', u'toronto']
[u'bottomless', u'pocket', u'govt', u'warn']
[u'plan', u'withdraw', u'bangladesh', u'test', u'status']
[u'reason', u'howard', u'sack', u'rudd']
[u'unveil', u'budget', u'initi']
[u'hop', u'wont', u'link', u'trade', u'polit']
[u'offici', u'weigh', u'option', u'wheat', u'virus']
[u'palestinian', u'kill', u'gaza', u'border']
[u'panel', u'examin', u'aceh', u'civilian', u'death']
[u'peac', u'road', u'trap', u'hama', u'leader']
[u'perri', u'charg', u'clear', u'texa']
[u'philippin', u'ferri', u'collis', u'kill', u'miss']
[u'pie', u'sink', u'saint', u'eagl', u'toppl', u'tiger']
[u'quiet', u'bow', u'pressur']
[u'polic', u'assoc', u'downplay', u'budget', u'woe']
[u'policeman', u'bodi', u'return', u'home', u'mountain']
[u'politician', u'church', u'leader', u'react', u'resign']
[u'project', u'aim', u'save', u'world', u'rarest', u'tortois']
[u'real', u'madrid', u'pace', u'deportivo', u'lose']
[u'rescu', u'effort', u'continu', u'algeria']
[u'retir', u'teacher', u'recal']
[u'roddick', u'triumph', u'austria']
[u'rossi', u'pole', u'french']
[u'rubin', u'reign', u'spain']
[u'rudd', u'deni', u'ignit', u'leadership', u'tension']
[u'anglican', u'assur', u'church', u'concern', u'abus']
[u'salvo', u'target', u'appeal']
[u'search', u'miss', u'resum']
[u'abus', u'concern', u'voic', u'congreg']
[u'sieg', u'end', u'melbourn', u'north', u'west']
[u'simoni', u'steal', u'time', u'garzelli']
[u'south', u'korea', u'hold', u'nkorea', u'polici', u'talk']
[u'lanka', u'focus', u'health', u'flood', u'reced']
[u'stoner', u'start']
[u'susi', u'power', u'half', u'marathon', u'histori']
[u'sydney', u'firefight', u'discov', u'massiv', u'cannabi', u'crop']
[u'sydney', u'squad', u'target', u'handgun']
[u'tiwi', u'youngster', u'learn', u'bush', u'tucker', u'skill']
[u'toulous', u'claim', u'european', u'crown']
[u'trade', u'hour', u'competit', u'small', u'grocer']
[u'turk', u'belli', u'danc', u'flop', u'eurovis']
[u'polic', u'hunt', u'qaeda', u'train', u'suicid', u'bomber']
[u'unbeaten', u'australia', u'motiv', u'pont']
[u'unit', u'state', u'host', u'women', u'world', u'report']
[u'restor', u'loot', u'iraqi', u'museum']
[u'venezualan', u'demonstr', u'turn', u'violent']
[u'woman', u'kill', u'crash', u'western', u'sydney']
[u'boost', u'plan', u'port', u'hedland']
[u'abbott', u'condemn', u'redund', u'test', u'case']
[u'blitz', u'court', u'bonanza', u'offic']
[u'burn', u'off', u'reduc', u'bushfir', u'fuel', u'load']
[u'adelaid', u'archbishop', u'open', u'abus', u'inquiri']
[u'adelaid', u'tent', u'highlight', u'steal', u'generat']
[u'agoni', u'andretti', u'indi', u'swansong']
[u'agreement', u'aim', u'boost', u'mental', u'health', u'servic']
[u'airport', u'secur', u'check', u'drop']
[u'ajax', u'dutch', u'titl', u'race', u'go']
[u'black', u'cap']
[u'amnesti', u'accus', u'indonesian', u'armi', u'abus']
[u'amrozi', u'come', u'face', u'face', u'victim']
[u'angler', u'recov', u'boat', u'ordeal']
[u'anti', u'group', u'want', u'tighter', u'rule']
[u'argentina', u'presid', u'swear']
[u'argentinian', u'presid', u'make', u'fight', u'poverti']
[u'aristocrat', u'delay', u'market', u'announc']
[u'asic', u'confront', u'share', u'buy', u'scheme']
[u'injur', u'japan', u'earthquak']
[u'aussi', u'roger', u'win', u'tour', u'belgium']
[u'aussi', u'win', u'prestigi', u'cann', u'prize']
[u'australian', u'urg', u'acknowledg', u'indigen']
[u'australia', u'record', u'match', u'streak']
[u'author', u'defend', u'quota', u'deduct', u'bluefin', u'tuna']
[u'avellino', u'futur', u'remain', u'doubt']
[u'award', u'export', u'spotlight']
[u'bacon', u'speak', u'plan']
[u'bali', u'suspect', u'appear', u'bashir', u'trial']
[u'barbarian', u'outclass', u'inexperienc', u'england']
[u'bear', u'form', u'wynnum']
[u'bird', u'attack', u'german', u'woman', u'recal', u'hitchcock']
[u'blend', u'youth', u'experi', u'netbal', u'world']
[u'book', u'detail', u'effort', u'chang', u'judici']
[u'braveheart', u'take', u'posit', u'controversi']
[u'braveheart', u'welcom', u'appeal', u'tougher', u'sentenc']
[u'brazil', u'ferran', u'win', u'indianapoli']
[u'british', u'navi', u'investig', u'collis']
[u'brit', u'disband', u'basra', u'council']
[u'bruton', u'leav', u'cannon', u'king']
[u'builder', u'meet', u'insur', u'woe']
[u'medicar', u'fund', u'boost']
[u'call', u'unit', u'poverti']
[u'campaign', u'aim', u'boost', u'age', u'care', u'nurs']
[u'campaign', u'aim', u'boost', u'disabl', u'tourist', u'number']
[u'canada', u'report', u'sar', u'death']
[u'cancer', u'detect', u'unit', u'unveil']
[u'canegrow', u'unhappi', u'decis']
[u'crash', u'death', u'spark', u'tribal', u'reveng']
[u'cardiff', u'reach', u'divis', u'extra', u'time', u'goal']
[u'cashier', u'say', u'tourist', u'fell', u'grind', u'blast']
[u'china', u'execut', u'brother', u'hell']
[u'china', u'arriv', u'russia']
[u'china', u'presid', u'begin', u'oversea', u'tour']
[u'coff', u'harbour', u'lose', u'lifesav']
[u'collaps', u'hangar', u'remain', u'dismantl']
[u'commiss', u'rule', u'redund']
[u'concern', u'air', u'loom', u'water']
[u'convoy', u'leav', u'aceh', u'collect', u'food', u'suppli']
[u'council', u'fast', u'track', u'tanneri', u'sale']
[u'councillor', u'budget']
[u'council', u'want', u'water', u'safeti', u'camera', u'answer']
[u'cowboy', u'coach', u'prais', u'sheppard', u'game']
[u'cowboy', u'man', u'coach', u'prais', u'half', u'back', u'game']
[u'crean', u'ask']
[u'croc', u'skipper', u'aussi']
[u'cunderdin', u'school', u'revamp', u'open']
[u'dairi', u'farmer', u'reappli', u'extens']
[u'debat', u'erupt', u'theatr', u'fund']
[u'decis', u'rivkin', u'expect', u'thursday']
[u'democrat', u'push', u'govt', u'reconcili']
[u'design', u'rule', u'delay', u'hous', u'construct', u'builder']
[u'differ', u'factor', u'lead', u'lower', u'prawn', u'catch']
[u'dixon', u'book', u'strike']
[u'breeder', u'fight', u'right', u'dock', u'tail']
[u'drought', u'fail', u'dampen', u'bush', u'generos']
[u'effort', u'boost', u'palliat', u'care']
[u'embattl', u'hawk', u'keep', u'profil']
[u'energi', u'centr', u'spring', u'life']
[u'everest', u'record', u'break']
[u'fairfax', u'sign', u'deal']
[u'fear', u'air', u'forest', u'mine', u'plan']
[u'firefight', u'escap', u'truck', u'rollov', u'uninjur']
[u'fischer', u'tightlip', u'specul']
[u'send', u'flamengo', u'crash', u'brazil']
[u'foreign', u'nation', u'face', u'court', u'drug', u'charg']
[u'senat', u'speak', u'rivkin']
[u'teacher', u'jail', u'child', u'offenc']
[u'foxi', u'schlager', u'win', u'rare', u'tabl', u'tenni', u'gold']
[u'fund', u'shortag', u'claim', u'abc', u'digit', u'channel']
[u'gallen', u'cop', u'week', u'suspens']
[u'gallen', u'face', u'long', u'stint', u'sidelin']
[u'garrido', u'win', u'wentworth', u'play']
[u'govt', u'empow', u'communiti', u'fight', u'petrol', u'sniff']
[u'govt', u'welcom', u'lift', u'iraq', u'sanction']
[u'grape', u'harvest', u'look', u'good']
[u'grewcock', u'punch', u'cost', u'england', u'place']
[u'health', u'school', u'tackl', u'diabet', u'indigen']
[u'hill', u'accept', u'respons']
[u'hodgman', u'back', u'resign']
[u'hollingworth', u'resign', u'unexpect']
[u'hope', u'lose', u'algerian', u'quak', u'survivor']
[u'horticultur', u'cane', u'sector', u'miss', u'drought', u'relief']
[u'howard', u'address', u'parliament', u'resign']
[u'howard', u'defend', u'decis']
[u'hundr', u'gather', u'mark', u'sorri']
[u'hunter', u'rain', u'wont', u'break', u'record']
[u'indonesia', u'step', u'aceh', u'campaign', u'rebel']
[u'infect', u'grain', u'unlik', u'destroy']
[u'inkster', u'captur', u'career', u'lpga', u'titl']
[u'inquiri', u'team', u'tour', u'bushfir', u'area']
[u'inquiri', u'studi', u'impact', u'labour', u'hire']
[u'investa', u'takeov', u'properti', u'trust']
[u'iranian', u'refuge', u'support', u'protest']
[u'hear', u'state', u'wage', u'case']
[u'king', u'brother', u'expect', u'hear']
[u'kiwirrkarra', u'kill', u'rollov']
[u'labor', u'suggest', u'advertis']
[u'land', u'agreement', u'consid', u'reconcili', u'advanc']
[u'larkham', u'compet', u'french', u'open']
[u'lead', u'french', u'open', u'men', u'titl', u'contend']
[u'lib', u'focus', u'central', u'victoria']
[u'lomu', u'leav', u'fit', u'doubt']
[u'macfarlan', u'unhappi', u'ethanol', u'project', u'stanc']
[u'face', u'court', u'melbourn', u'sieg']
[u'get', u'year', u'jail', u'assault']
[u'face', u'court', u'attempt', u'arm', u'robberi', u'charg']
[u'face', u'court', u'stab', u'charg']
[u'face', u'polic', u'assault', u'charg']
[u'mass', u'test', u'murder', u'investig']
[u'matriarch', u'redgrav', u'theatr', u'clan', u'die', u'age']
[u'matthew', u'say', u'limit', u'interchang', u'worth', u'debat']
[u'matthew', u'give', u'saint', u'altern', u'jumper']
[u'mcdonald', u'mcmanus', u'charg', u'wrestl']
[u'meet', u'focus', u'patient', u'health', u'safeti']
[u'meet', u'address', u'concern']
[u'memori', u'honour', u'rugbi', u'player']
[u'call', u'femal']
[u'motorcycl', u'crash', u'put', u'hospit']
[u'motorcyclist', u'die', u'near', u'pambula']
[u'mourner', u'farewel', u'solomon', u'missionari']
[u'back', u'council', u'hospit', u'decis']
[u'oppos', u'plan', u'wipe', u'donut', u'council']
[u'nation', u'surf', u'lifesav', u'titl', u'leav', u'gold', u'coast']
[u'appoint', u'week']
[u'week', u'bacon']
[u'korea', u'threaten', u'south', u'disast']
[u'opinion', u'divid', u'murder', u'case', u'test']
[u'outback', u'challeng', u'prove', u'lucrat']
[u'paradorn', u'slide', u'french', u'open']
[u'parliament', u'debat', u'censur']
[u'patterson', u'talk', u'indigen', u'health', u'spend']
[u'pell', u'urg', u'clear', u'separ', u'church', u'state']
[u'perri', u'score', u'easi']
[u'person', u'stab', u'possibl', u'retribut', u'fatal']
[u'philippin', u'presid', u'annoy', u'ferri', u'collis']
[u'pioneer', u'settlement', u'open', u'hour']
[u'plane', u'crash', u'turkey', u'kill']
[u'plan', u'cheaper', u'rural', u'health', u'educ', u'post']
[u'accept', u'resign']
[u'accept', u'hollingworth', u'resign']
[u'polic', u'civilian', u'staff', u'strike', u'resourc']
[u'polic', u'happi', u'driver', u'oper']
[u'polic', u'hunt', u'escap', u'prison']
[u'polic', u'hunt', u'attack']
[u'polic', u'injur', u'alburi', u'brawl']
[u'polic', u'investig', u'fatal', u'cabramatta', u'crash']
[u'polic', u'murder', u'hunt', u'includ', u'mass', u'test']
[u'polic', u'probe', u'kowanyama', u'fatal', u'stab']
[u'port', u'collingwood', u'clash', u'colour']
[u'port', u'hedland', u'resid', u'swim']
[u'prevent', u'council', u'tackl', u'crime']
[u'prison', u'leav', u'civil', u'right', u'govt']
[u'troop', u'disarm', u'iraq']
[u'public', u'urg', u'minimis', u'dengu', u'risk']
[u'push', u'boost', u'indigen', u'defenc', u'cadet', u'number']
[u'coalit', u'hop', u'pick', u'coast', u'seat']
[u'quak', u'victim', u'surviv', u'day', u'rubbl', u'radio']
[u'qualifi', u'support', u'alcoa', u'expans']
[u'ranger', u'scottish', u'titl']
[u'rhode', u'blame', u'lack', u'confid', u'bulldog', u'loss']
[u'roadwork', u'concern', u'surround', u'wind', u'farm', u'plan']
[u'roff', u'latham', u'share', u'super', u'player', u'award']
[u'ronaldinho', u'reveal', u'passion', u'unit']
[u'consid', u'medicin', u'cannabi']
[u'secur', u'barrier', u'erect', u'parliament']
[u'serena', u'confid', u'ahead', u'french', u'defenc']
[u'shire', u'resid', u'prepar', u'case', u'merger']
[u'sid', u'foundat', u'director', u'pass', u'away']
[u'simoni', u'widen', u'giro', u'lead', u'gonzalez', u'win', u'stage']
[u'sociedad', u'malaga']
[u'sorenstam', u'perform', u'show', u'extent', u'gender']
[u'reject', u'greenpeac', u'shale', u'claim']
[u'spur', u'brink', u'final']
[u'staff', u'shortag', u'endang', u'age', u'resid', u'survey']
[u'state', u'poll', u'moral', u'booster', u'schroeder']
[u'steadi', u'start', u'australian', u'market']
[u'hope', u'lifesav', u'event', u'gold', u'coast']
[u'steal', u'generat', u'benefit', u'organis']
[u'storm', u'leav', u'damag']
[u'suicid', u'messag', u'highlight', u'visa', u'problem']
[u'support', u'nation', u'wage', u'campaign', u'timber']
[u'sydney', u'motorist', u'undet', u'toll', u'survey']
[u'teacher', u'welcom', u'plan', u'investig', u'truanci']
[u'tender', u'call', u'highway', u'upgrad']
[u'terror', u'exercis', u'find', u'panic', u'biggest', u'concern']
[u'thai', u'prison', u'enjoy', u'honeymoon', u'hut']
[u'tibetan', u'envoy', u'beij']
[u'tongan', u'newspap', u'declar', u'victori', u'king']
[u'tornado', u'victim', u'suffer', u'stress']
[u'tourism', u'industri', u'futur', u'spotlight']
[u'trainer', u'lose', u'hors', u'contamin', u'fee']
[u'tree', u'clear', u'compo']
[u'tribut', u'flow', u'mcgarvi']
[u'trio', u'rap', u'indigen', u'cultur']
[u'truck', u'salvag', u'oper', u'block', u'road']
[u'turkey', u'offer', u'host', u'middl', u'east', u'peac', u'summit']
[u'ukrain', u'order', u'probe', u'crash', u'plane', u'turkey']
[u'ullrich', u'race', u'tour', u'team', u'bianchi']
[u'unconfirm', u'sight', u'miss', u'teen']
[u'union', u'oppos', u'shop', u'hour', u'deregul']
[u'command', u'say', u'saddam', u'arrest']
[u'plan', u'middl', u'east', u'summit']
[u'soldier', u'kill', u'iraq', u'ambush']
[u'soldier', u'kill', u'iraq', u'blast']
[u'tell', u'iran', u'hand', u'qaeda', u'suspect', u'report']
[u'sant', u'exploit', u'eleph', u'scoop', u'cann', u'pool']
[u'govt', u'request', u'audit', u'correct', u'centr']
[u'polic', u'face', u'drug', u'charg']
[u'polic', u'search', u'abductor']
[u'violent', u'game', u'microscop']
[u'wallabi', u'newcom']
[u'pastoralist', u'demand', u'compo', u'land', u'clear']
[u'west', u'indi', u'end', u'australia', u'streak']
[u'wheat', u'virus', u'erad', u'consider']
[u'didnt', u'bureaucrat', u'cross', u'road', u'farmer', u'ask']
[u'wife', u'tell', u'rivkin', u'anger', u'guilti', u'find']
[u'wildcard', u'open', u'aussi', u'assault', u'french', u'open']
[u'william', u'win', u'wheeler']
[u'windi', u'stop', u'aussi', u'streak']
[u'wit', u'evid', u'amrozi']
[u'woman', u'centr', u'immigr', u'raid', u'vow']
[u'woman', u'miss', u'despit', u'search']
[u'women', u'french', u'open', u'seed']
[u'terror', u'kit', u'return', u'govt', u'committe', u'tell']
[u'mental', u'health', u'boost', u'welcom']
[u'abattoir', u'weather', u'tight', u'condit']
[u'chief', u'defend', u'digit', u'ax']
[u'aborigin', u'media', u'group', u'welcom', u'film', u'offic']
[u'accc', u'review', u'cole', u'shell', u'allianc']
[u'accid', u'spark', u'road', u'upgrad', u'call']
[u'wont', u'investig', u'game', u'throw', u'claim']
[u'agassi', u'revel', u'frustrat', u'pretend']
[u'cite', u'hezbollah', u'risk', u'push', u'wider', u'power']
[u'alarm', u'fish', u'kill', u'swan', u'river']
[u'alic', u'spring', u'consult', u'tradit', u'owner']
[u'alleg', u'bomber', u'leav', u'bali', u'bashir', u'trial']
[u'ord', u'close', u'lower']
[u'all', u'woman', u'drop', u'babi']
[u'exec', u'call', u'consult', u'curfew']
[u'say', u'investor', u'announc', u'wont', u'affect', u'staff']
[u'analyst', u'blame', u'govt', u'digit', u'demis']
[u'applic', u'second', u'wagga', u'brothel']
[u'aussi', u'dollar', u'hit', u'height']
[u'australian', u'coach', u'leav', u'french', u'club', u'brive']
[u'australia', u'qaeda', u'target', u'expert']
[u'beatti', u'prais', u'feder', u'govt', u'environ', u'effort']
[u'blackout', u'caus', u'investig']
[u'boost', u'plan', u'central', u'tourism']
[u'kill', u'middl', u'east', u'clash', u'wit']
[u'brack', u'critic', u'opposit', u'baseless']
[u'brack', u'support', u'choos']
[u'brazilian', u'coach', u'resign', u'paysandu', u'goia']
[u'british', u'backpack', u'murder', u'committ', u'continu']
[u'broader', u'approach', u'need', u'tackl', u'road', u'woe', u'chamber']
[u'break', u'hill', u'posit', u'zinc', u'demand']
[u'brown', u'resign', u'philadelphia', u'coach']
[u'plan', u'elimin']
[u'canada', u'sar', u'list']
[u'carrey', u'rule', u'almighti', u'offic']
[u'champion', u'leagu', u'final', u'dream', u'come', u'true']
[u'children', u'critic', u'injur', u'hous']
[u'china', u'arrest', u'terror']
[u'clean', u'continu', u'japan', u'quak']
[u'clean', u'toxic', u'spill']
[u'cockbain', u'captain', u'australia']
[u'cole', u'myer', u'join', u'fuel', u'busi']
[u'compani', u'back', u'improv', u'age', u'care', u'nurs']
[u'corbel', u'tight', u'lip', u'garden', u'citi', u'plan']
[u'corrupt', u'judg', u'jail', u'life', u'china']
[u'councillor', u'lament', u'lifesav', u'event', u'loss']
[u'council', u'lose', u'plan', u'scrap', u'divis']
[u'council', u'reject', u'rate', u'claim']
[u'council', u'rethink', u'cultur', u'precinct', u'cost']
[u'council', u'promis', u'fight', u'hors', u'race']
[u'council', u'host', u'sawmil', u'meet']
[u'countri', u'publican', u'face', u'murder', u'committ', u'hear']
[u'court', u'hear', u'bail', u'caus', u'fatal', u'accid']
[u'cwealth', u'urg', u'tie', u'indonesia', u'militari']
[u'dixon', u'suspend', u'crucial', u'kilda', u'clash']
[u'databas', u'major', u'defici', u'review']
[u'dollar', u'economist']
[u'downer', u'ask', u'tamil', u'rejoin', u'peac', u'talk']
[u'dramat', u'rise', u'femal', u'lung', u'cancer', u'victim']
[u'drug', u'squad', u'investig', u'continu', u'polic']
[u'earthquak', u'hit', u'indonesia']
[u'elev', u'marsh', u'tassi', u'fit', u'reward']
[u'energex', u'make', u'deal', u'cleaner', u'fuel']
[u'recommend', u'clear']
[u'publish', u'constitut', u'draft']
[u'extra', u'fund', u'juvenil', u'bail', u'scheme']
[u'farmer', u'urg', u'quick', u'lodg', u'drought', u'applic']
[u'feder', u'polic', u'probe', u'woomera', u'claim']
[u'feder', u'express', u'derail', u'round']
[u'fierc', u'clash', u'report', u'aceh']
[u'budget', u'lift', u'boost', u'control', u'burn']
[u'champion', u'pierc', u'crumbl', u'dust']
[u'housem', u'evict', u'corretja']
[u'foster', u'carer', u'seek', u'western']
[u'futur', u'raymond', u'terrac', u'court', u'review']
[u'gallop', u'urg', u'feder', u'labor', u'focus', u'health']
[u'consent', u'pass']
[u'gippsland', u'dairi', u'farmer', u'lose', u'cow', u'toxic']
[u'govt', u'criticis', u'plan', u'excis']
[u'govt', u'criticis', u'age', u'care', u'prioriti']
[u'govt', u'support', u'tail', u'dock']
[u'grant', u'festiv', u'darwin', u'choir']
[u'greek', u'lawyer', u'accus', u'blair', u'straw', u'crime']
[u'green', u'group', u'welcom', u'shark', u'protect', u'review']
[u'group', u'lobbi', u'indian', u'ocean', u'drive', u'work']
[u'hawthorn', u'dixon', u'face', u'strike', u'charg']
[u'hewitt', u'clijster', u'costa', u'surviv']
[u'hewitt', u'clijster', u'open', u'match']
[u'hewitt', u'enter', u'french', u'open', u'fray']
[u'highway', u'campaign', u'head', u'canberra']
[u'hollingworth', u'explain', u'decis', u'tomorrow']
[u'home', u'favourit', u'mauresmo', u'jump', u'open', u'hurdl']
[u'honey', u'launder', u'get', u'bonnet', u'keeper']
[u'howard', u'request', u'green', u'juli']
[u'icpa', u'welcom', u'postag', u'chang']
[u'india', u'pakistan', u'resum', u'hockey', u'rivalri']
[u'injur', u'petacchi', u'beat', u'pain', u'giro', u'stage']
[u'inquiri', u'chief', u'criticis', u'rail', u'author']
[u'instant', u'planet', u'wait', u'million', u'year']
[u'pass', u'rise', u'worker']
[u'irrig', u'face', u'uncertainti']
[u'irrig', u'action', u'water', u'share', u'plan']
[u'japanes', u'firm', u'continu', u'green', u'support']
[u'juri', u'consid', u'fingleton', u'verdict']
[u'king', u'brother', u'face', u'court', u'firm', u'collaps']
[u'knowl', u'deni', u'meningococc', u'diseas', u'cover']
[u'day', u'green', u'group']
[u'lobster', u'fishermen', u'reject', u'user', u'plan']
[u'long', u'reconcili', u'huggin']
[u'lovelorn', u'brit', u'road']
[u'macdougal', u'ban', u'train']
[u'mackenroth', u'predict', u'increas', u'worth']
[u'major', u'counter', u'terror', u'exercis', u'begin', u'sydney']
[u'jail', u'tourist', u'rape']
[u'mayn', u'sue', u'million']
[u'mcdougal', u'face', u'train', u'contract', u'talk']
[u'mcmanus', u'macdonald', u'fin']
[u'mcmanus', u'mcdonald', u'fin']
[u'meet', u'discuss', u'central', u'water', u'issu']
[u'middl', u'east', u'peac', u'meet', u'postpon']
[u'miner', u'reject', u'pollut', u'claim']
[u'minist', u'deni', u'request', u'hick', u'meet']
[u'minist', u'plasma', u'cost', u'telstra']
[u'miss', u'woman', u'search', u'focus', u'mountainsid']
[u'mock', u'terror', u'activ', u'stag', u'canberra']
[u'morocco', u'bomb', u'suspect', u'charg', u'casablanca']
[u'mountain', u'home', u'everest', u'rescu']
[u'nativ', u'titl', u'claim', u'unit', u'noongar']
[u'netbal', u'australia', u'rule', u'avellino']
[u'netbal', u'upset', u'avellino', u'rule']
[u'centr', u'offer', u'youth', u'cooler', u'sport', u'venu']
[u'newmont', u'gold', u'dig', u'eyr', u'peninsula']
[u'proof', u'link', u'north', u'korea', u'heroin', u'haul']
[u'recollect', u'mishandl', u'claim']
[u'review', u'protect', u'grey', u'nurs', u'shark']
[u'oppn', u'fear', u'budget', u'packag']
[u'scrap', u'rego', u'levi', u'budget']
[u'creditor', u'fund', u'administr']
[u'oppn', u'question', u'telstra', u'ceo', u'claus']
[u'pakistan', u'provinc', u'decid', u'sharia']
[u'pakistan', u'say', u'rule', u'constant']
[u'palaszczuk', u'push', u'nation', u'tail', u'dock']
[u'paradorn', u'piti', u'pari']
[u'philippoussi', u'win', u'larkham', u'pratt']
[u'say', u'hick', u'charg']
[u'cellar', u'cost']
[u'unawar', u'claim', u'appoint']
[u'consid', u'refuge', u'law']
[u'sedit', u'charg', u'resurfac']
[u'polak', u'receiv', u'rise', u'star']
[u'polic', u'associ', u'welcom', u'recruit', u'fund']
[u'polic', u'civilian', u'staff', u'strike', u'spread']
[u'polic', u'lead', u'tweed', u'murder']
[u'polic', u'happi', u'mock', u'terror', u'respons']
[u'polic', u'offic', u'remand', u'drug', u'traffic']
[u'polic', u'probe', u'chlorin', u'bomb', u'attack']
[u'polic', u'sampl', u'murder', u'case']
[u'polic', u'sampl', u'help', u'solv']
[u'privat', u'fund', u'seek', u'jetti', u'plan']
[u'profit', u'warn', u'hit', u'aristocrat', u'share']
[u'properti', u'group', u'dismiss', u'market', u'crash', u'fear']
[u'public', u'urg', u'remain', u'water', u'vigil']
[u'qanta', u'close', u'launceston', u'retail', u'outlet']
[u'question', u'nick', u'whitlam', u'dishonesti', u'convict']
[u'dub', u'homeless', u'state']
[u'governor', u'make', u'townsvill', u'trip']
[u'govt', u'expand', u'hardwood', u'scheme']
[u'qlds', u'boss', u'vow', u'tackl', u'medic', u'indemn']
[u'quak', u'hit', u'asia', u'dead']
[u'rare', u'leopard', u'spot', u'china']
[u'refurbish', u'meatwork', u'reopen']
[u'report', u'warn', u'dementia', u'epidem']
[u'repriev', u'possibl', u'bush', u'race', u'club']
[u'face', u'bushfir']
[u'road', u'summit', u'week', u'jordan', u'report']
[u'runaway', u'swine', u'shoot', u'attend', u'care']
[u'russia', u'china', u'warn', u'north', u'korea', u'nuclear', u'weapon']
[u'russia', u'finish', u'build', u'iranian', u'nuclear', u'power']
[u'ryan', u'defend', u'perform']
[u'saddam', u'insid', u'iraq', u'time']
[u'farmer', u'cheaper', u'electr']
[u'safeti', u'concern', u'close', u'road', u'cave']
[u'govt', u'reject', u'theatr', u'claim']
[u'saint', u'capuano', u'march', u'order']
[u'saint', u'sack', u'capuano']
[u'court', u'drug', u'charg']
[u'sawmil', u'want', u'stockpil', u'releas']
[u'scheme', u'aim', u'job', u'boost']
[u'scottish', u'investig', u'sutton', u'outburst']
[u'scud', u'come', u'agassi', u'serena']
[u'self', u'represent', u'review', u'high', u'court']
[u'serena', u'costa', u'pressur', u'pari']
[u'serena', u'fail', u'meet', u'lofti', u'goal']
[u'shear', u'outback', u'plan', u'spend', u'boost']
[u'shop', u'centr', u'plan', u'agenda']
[u'slack', u'comfort', u'heenan', u'progress']
[u'save', u'strand', u'tourist']
[u'sole', u'crew', u'survivor', u'face', u'waterfal', u'inquiri']
[u'sole', u'crew', u'survivor', u'evid', u'train', u'crash']
[u'solicitor', u'win', u'misconduct', u'appeal']
[u'solomon', u'lawyer', u'warn', u'threat']
[u'spain', u'repatri', u'crash', u'victim']
[u'stamp', u'duti', u'chang', u'shocker', u'say', u'opposit']
[u'strike', u'expect', u'crippl', u'flight', u'schedul']
[u'stronger', u'dollar', u'signal', u'gold', u'concern']
[u'strong', u'age', u'care', u'plan']
[u'suicid', u'bomb', u'unjustifi', u'say', u'lead', u'muslim']
[u'taiwan', u'sar', u'outbreak', u'show', u'sign', u'slow']
[u'talk', u'restart', u'northlak', u'develop']
[u'tassi', u'lobbi', u'meander']
[u'territori', u'question', u'age', u'care', u'place']
[u'thai', u'king', u'receiv', u'rain', u'make', u'patent']
[u'thomson', u'say', u'tour', u'lack', u'excit']
[u'thrill', u'panoho', u'surpris', u'select']
[u'miner', u'job', u'limbo']
[u'tszyu', u'tackl', u'weight', u'divis']
[u'tuqiri', u'dual', u'intern']
[u'union', u'clash', u'abbott', u'vendetta']
[u'unit', u'state', u'rush', u'readi', u'women', u'world']
[u'euthanasia', u'advoc', u'attend', u'crick', u'memori']
[u'soldier', u'kill', u'iraq', u'guerrilla', u'attack']
[u'valu', u'hobart', u'build', u'approv']
[u'meet', u'plan', u'zone', u'chang']
[u'busi', u'confid', u'take', u'batter', u'survey']
[u'virus', u'concern', u'cancel', u'trial', u'wheat', u'plant']
[u'virus', u'concern', u'halt', u'trial', u'wheat', u'plant']
[u'govt', u'urg', u'allow', u'ludlow']
[u'wale', u'wyatt', u'australia', u'tour']
[u'watch', u'tougher', u'play', u'sidelin', u'warn']
[u'water', u'board', u'consid', u'levi', u'refus']
[u'weekend', u'exercis', u'good', u'heart']
[u'wheat', u'virus', u'farm']
[u'whitlam', u'begin', u'appeal']
[u'wolv', u'final', u'reach', u'premier', u'leagu']
[u'woman', u'court', u'fatal', u'accid']
[u'writer', u'pick', u'cloudstreet', u'best', u'aussi', u'novel']
[u'zombi', u'owner', u'prepar', u'address', u'public']
[u'money', u'troubl', u'wont', u'impact', u'athlet']
[u'abattoir', u'make', u'goat', u'process', u'request']
[u'ask', u'investig', u'coverag']
[u'probe', u'bias', u'claim']
[u'scrap', u'morocco', u'tour']
[u'govt', u'tabl', u'plan', u'rule']
[u'help', u'bushfir', u'recoveri', u'work']
[u'introduc', u'tort', u'reform', u'packag']
[u'aftershock', u'creat', u'panic', u'algeria']
[u'agreement', u'boost', u'indigen', u'opportun']
[u'jazeera', u'chief', u'sack', u'follow', u'claim']
[u'alleg', u'bali', u'bomber', u'unawar', u'activ', u'court']
[u'alleg', u'mastermind', u'saudi', u'attack', u'report']
[u'alleg', u'peopl', u'smuggler', u'appear', u'court']
[u'italian', u'final', u'serv', u'tactic', u'masterclass']
[u'ord', u'pick', u'oversea', u'market', u'ralli']
[u'alston', u'accus', u'anti', u'slant']
[u'alston', u'attempt', u'intimid', u'labor', u'say']
[u'amnesti', u'criticis', u'australia', u'human', u'right', u'record']
[u'share', u'drop', u'record']
[u'ancelotti', u'hit', u'critic']
[u'anderson', u'accus', u'commit', u'transport']
[u'anula', u'armi', u'exercis', u'polic']
[u'asbesto', u'wont', u'delay', u'hall', u'work']
[u'asio', u'probe', u'immigr', u'background']
[u'asprilla', u'chilean', u'gunshot', u'controversi']
[u'atapattu', u'stay', u'captain', u'windi', u'dayer']
[u'atsb', u'probe', u'fatal', u'train', u'crash']
[u'australia', u'vow', u'unpreced', u'olymp', u'drug', u'test']
[u'bali', u'bomb', u'suspect', u'admit', u'close', u'tie', u'lade']
[u'bali', u'bomb', u'suspect', u'arriv', u'testifi', u'bashir']
[u'bali', u'wit', u'describ', u'horrif', u'scene']
[u'beatti', u'accus', u'hypocrisi', u'darci', u'case']
[u'beatti', u'refus', u'smear', u'campaign']
[u'ride', u'minnelli', u'perform', u'iraq', u'benefit']
[u'take', u'union', u'stop', u'work', u'meet']
[u'chang', u'afoot', u'surfer', u'paradis']
[u'effort', u'address', u'bendigo', u'tornado', u'impact']
[u'bishop', u'anglican', u'church', u'split']
[u'blackburn', u'reject', u'birmingham', u'dunn']
[u'blair', u'visit', u'iraq', u'thank', u'british', u'troop']
[u'blake', u'killer', u'brazil', u'sentenc']
[u'stepfath']
[u'brisban', u'council', u'close', u'bakeri']
[u'bushfir', u'affect', u'busi', u'extra', u'fund']
[u'bushfir', u'affect', u'busi', u'fund']
[u'busi', u'survey', u'highlight', u'posit', u'growth']
[u'help', u'save', u'schooli']
[u'region', u'appoint']
[u'canberran', u'urg', u'think', u'hard', u'bushfir']
[u'carr', u'sceptic', u'alleg']
[u'chamber', u'confid', u'sustain', u'defenc', u'spend']
[u'chines', u'provinc', u'ban', u'anim', u'trade', u'sar']
[u'claim', u'diabet', u'type', u'reach', u'epidem']
[u'clark', u'leav', u'yorkshir', u'rejoin', u'western', u'australia']
[u'cole', u'myer', u'deal', u'over', u'ambiti', u'wooli', u'chief']
[u'colour', u'concern', u'delay', u'orang', u'export']
[u'committ', u'proceed', u'adjourn', u'stuttl', u'case']
[u'compani', u'dark', u'blackout', u'caus']
[u'condobolin', u'eventu']
[u'coron', u'recommend', u'gambl', u'measur']
[u'council', u'seek', u'inform']
[u'court', u'hear', u'multipl', u'weapon', u'murder']
[u'crean', u'push', u'elector', u'reform']
[u'crew', u'work', u'clean', u'fish', u'kill', u'perth']
[u'crown', u'leas', u'committe', u'hop', u'finalis', u'report']
[u'crow', u'hop', u'return', u'injur', u'player']
[u'darwin', u'test', u'venu', u'receiv', u'bless']
[u'defenc', u'leav', u'budget', u'think']
[u'democrat', u'want', u'child', u'abus', u'inquiri']
[u'depart', u'plan', u'reloc', u'asylum', u'seeker']
[u'dept', u'deal', u'traffic', u'issu', u'offici']
[u'diabet', u'risk', u'diseas', u'professor']
[u'disabl', u'skier', u'cross', u'bass', u'strait']
[u'disori', u'hunter', u'properti']
[u'test', u'finish', u'murder', u'investig']
[u'dokic', u'consid', u'return', u'australian', u'nation']
[u'downer', u'urg', u'iran', u'tackl', u'qaeda', u'member']
[u'seek', u'time', u'prepar', u'heroin', u'haul', u'charg']
[u'drought', u'affect', u'hors', u'donat']
[u'eastman', u'win', u'right', u'judici', u'inquiri']
[u'england', u'coach', u'woodward', u'unveil', u'wilkinson', u'cover']
[u'english', u'trio', u'suspend', u'drug']
[u'errat', u'venus', u'charg', u'second', u'round']
[u'fear', u'heritag', u'list', u'derail', u'develop']
[u'govt', u'make', u'age', u'care', u'alloc']
[u'ferguson', u'set', u'year', u'deadlin', u'champion']
[u'fieri', u'debat', u'visa', u'bribe', u'claim']
[u'fingleton', u'trial', u'end', u'hang', u'juri']
[u'champion', u'chang', u'bid', u'emot', u'farewel']
[u'champ', u'sele', u'exit', u'french', u'open']
[u'forum', u'discuss', u'chamber', u'futur']
[u'arrest', u'raid', u'link', u'motorcycl']
[u'finalist', u'champion', u'leagu', u'star', u'team']
[u'pipelin', u'worker', u'return', u'south', u'east']
[u'geldof', u'criticis', u'pathet', u'ethiopia']
[u'goondiwindi', u'bear', u'player', u'rugbi', u'world']
[u'govt', u'begin', u'phase', u'hydro', u'tasmania', u'dividend']
[u'govt', u'consid', u'separ', u'fish', u'law']
[u'govt', u'give', u'green', u'light', u'xstrata']
[u'govt', u'introduc', u'medicar']
[u'govt', u'warn', u'travel', u'yemen']
[u'graincorp', u'post', u'diminish', u'profit']
[u'group', u'hop', u'publish', u'mental', u'health', u'book']
[u'group', u'lobbi', u'walkway', u'reopen']
[u'group', u'sue', u'cult', u'claim']
[u'henderson', u'ireland', u'australia', u'tour']
[u'henman', u'long', u'green', u'grass', u'home']
[u'high', u'dust', u'read', u'spark', u'action']
[u'high', u'jobless', u'rate', u'spark', u'creation']
[u'hollingworth', u'apologis', u'nation']
[u'hollingworth', u'tell', u'nation', u'mistak']
[u'hous', u'program', u'unveil', u'cape', u'communiti']
[u'dementia', u'link', u'wont', u'chang', u'tgas', u'advic']
[u'human', u'icebreak', u'rescu', u'north', u'pole']
[u'illawarra', u'hous', u'price', u'fall']
[u'incat', u'chief', u'say', u'pentagon', u'interest', u'cat']
[u'indigen', u'voic', u'seek', u'address', u'justic', u'woe']
[u'inquiri', u'tell', u'waterfal', u'train', u'driver']
[u'iran', u'accus', u'terror', u'doubl', u'standard']
[u'iraq', u'destroy', u'weapon']
[u'ironman', u'champ', u'back', u'event']
[u'isra', u'minnow', u'ramat', u'book', u'uefa', u'berth']
[u'itali', u'grip', u'soccer', u'mania']
[u'jordan', u'host', u'middl', u'east', u'peac', u'summit']
[u'juventus', u'love', u'loath']
[u'kalgoorli', u'see', u'race', u'relat', u'leader']
[u'krige', u'captain', u'springbok', u'world']
[u'labor', u'air', u'levi', u'concern']
[u'labor', u'want', u'packag', u'industri']
[u'institut', u'recommend', u'coupl', u'adopt', u'right']
[u'lectur', u'want', u'region', u'medic', u'school']
[u'lippi', u'keep', u'milan', u'guess']
[u'lippi', u'juve', u'ralli']
[u'malthous', u'suicid', u'warn', u'boss']
[u'face', u'robberi', u'charg', u'get', u'condit', u'bail']
[u'stand', u'trial', u'doubl', u'murder']
[u'mar', u'explor', u'robot', u'launch', u'postpon']
[u'mass', u'grave', u'unearth', u'basra']
[u'mav', u'beat', u'spur', u'climb', u'seri']
[u'mcguir', u'angri', u'port', u'blow']
[u'mean', u'test', u'univers', u'plan', u'spark', u'govt']
[u'approv', u'rais', u'forest', u'question']
[u'minist', u'unfaz', u'airport', u'claim']
[u'mobil', u'guilti', u'yarra', u'petrol', u'spill']
[u'mourner', u'farewel', u'union', u'presid']
[u'moya', u'philippoussi', u'clash']
[u'highlight', u'burn', u'concern']
[u'goal', u'boost', u'hockey', u'facil']
[u'want', u'industri', u'rethink', u'minor', u'crime']
[u'nation', u'galleri', u'director', u'front', u'estim']
[u'newli', u'davenport', u'get', u'prioriti', u'straight']
[u'rail', u'station', u'welcom', u'visitor']
[u'boss', u'gallop', u'rule', u'gold', u'coast', u'outfit']
[u'honour', u'socceroo', u'coach', u'thomson']
[u'govt', u'investig', u'fake', u'degre']
[u'properti', u'market', u'strong', u'despit', u'slow', u'price']
[u'budget', u'appal', u'tourism', u'oppn']
[u'govt', u'deni', u'superannu', u'dodg']
[u'olympian', u'face', u'dope', u'test', u'blitz']
[u'fifth', u'aust', u'popul', u'bear', u'oversea']
[u'kill', u'wound', u'colombian', u'bomb', u'blast']
[u'call', u'independ', u'scrutini', u'year', u'budget']
[u'pakistan', u'includ', u'shoaib', u'drop', u'razzaq', u'england']
[u'palestinian', u'meet', u'sharon', u'tomorrow']
[u'parliament', u'chang', u'tenanc', u'databas', u'law']
[u'parol', u'board', u'reject', u'murder', u'deport']
[u'perliya', u'fin', u'blast', u'equip']
[u'applaud', u'middl', u'east', u'peac', u'progress']
[u'defend', u'night', u'hotel']
[u'stay', u'clear', u'aceh', u'conflict']
[u'polic', u'wit', u'attack']
[u'polic', u'chief', u'stand', u'readi', u'investig']
[u'polic', u'arrest', u'riverland', u'raid']
[u'polic', u'renew', u'plea', u'help', u'miss', u'woman']
[u'polic', u'tri', u'identifi', u'bodi', u'necropoli']
[u'polic', u'urg', u'driver', u'follow', u'speed', u'limit']
[u'power', u'quak', u'aftershock', u'algeria']
[u'premier', u'confid', u'magnesium', u'project']
[u'public', u'cooper', u'seek', u'croc']
[u'tenant', u'union', u'prais', u'databas', u'law']
[u'queen', u'accept', u'hollingworth', u'resign']
[u'racv', u'welcom', u'cheaper', u'fuel', u'plan']
[u'ratepay', u'face', u'rate', u'rise']
[u'ratepay', u'face', u'rate', u'rise']
[u'renault', u'abandon', u'radic', u'engin']
[u'research', u'develop', u'resist', u'plastic']
[u'review', u'consid', u'oyster', u'waterway', u'relationship']
[u'road', u'reopen', u'fatal', u'crash']
[u'ronaldinho', u'ronaldo', u'rivaldo']
[u'rule', u'spark', u'spate', u'migrat', u'appeal']
[u'russian', u'citi', u'award', u'unit', u'festiv', u'babi']
[u'rwandan', u'support', u'propos', u'constitut']
[u'elect', u'presid']
[u'govt', u'boost', u'murray', u'fund']
[u'govt', u'scrap', u'crime', u'prosecut', u'limit']
[u'samuel', u'appoint', u'act', u'accc', u'chief']
[u'schumach', u'readi', u'roll', u'monaco']
[u'seagul', u'look', u'secur', u'lead']
[u'fund', u'mean', u'fundrais', u'repriev']
[u'smith', u'turn', u'dump', u'klusen']
[u'stockland', u'bid', u'diversifi']
[u'steal', u'cylind', u'contain', u'mustard']
[u'summit', u'discuss', u'water', u'issu']
[u'summit', u'highlight', u'network', u'opportun']
[u'survey', u'predict', u'good', u'darl', u'down', u'busi', u'growth']
[u'swim', u'spot', u'water', u'test']
[u'tafe', u'chang', u'spark', u'concern']
[u'tamworth', u'council', u'move', u'ahead', u'takeov']
[u'tanner', u'rule', u'challeng', u'crean']
[u'fall', u'line', u'state', u'wipe']
[u'tasmanian', u'join', u'danish', u'royal', u'famili']
[u'teenag', u'forc', u'perform', u'court', u'tell']
[u'telstra', u'valu', u'overst', u'senat', u'committe']
[u'thailand', u'singl', u'unmarri', u'women', u'contest']
[u'euro', u'stadium', u'portug']
[u'fear', u'dead', u'everest', u'crash']
[u'timber', u'coup', u'face', u'audit']
[u'reopen', u'week', u'shutdown']
[u'tourism', u'growth', u'come', u'industri', u'partnership']
[u'tour', u'romandi', u'rider', u'perez', u'fail', u'drug', u'test']
[u'tower', u'post', u'half', u'year', u'loss']
[u'dead', u'everest', u'helicopt', u'crash']
[u'soldier', u'gulf', u'syndrom']
[u'uncertainti', u'kerang', u'year', u'festiv']
[u'underdog', u'capriati', u'readi', u'bite']
[u'union', u'air', u'pine', u'secur', u'concern']
[u'union', u'group', u'open', u'bundaberg', u'offic']
[u'union', u'threaten', u'electrolux', u'industri', u'woe']
[u'visi', u'cop', u'fine', u'releas', u'odour']
[u'voluntari', u'euthanasia', u'support', u'group', u'launch']
[u'warrnambool', u'await', u'whale', u'migrat']
[u'water', u'trade', u'logic', u'minist']
[u'gain', u'greater', u'warn', u'power']
[u'wilkinson', u'vote', u'english', u'player', u'year']
[u'wit', u'grant', u'immun', u'waterfal', u'inquiri']
[u'work', u'continu', u'site', u'despit', u'safeti', u'concern']
[u'xstrata', u'make', u'offer', u'sharehold']
[u'yarrowlumla', u'oppos', u'amalgam', u'plan']
[u'yorta', u'yorta', u'peopl', u'upset', u'river', u'cross']
[u'fund', u'safe', u'despit', u'critic', u'alston']
[u'show', u'labor', u'bias', u'downer']
[u'mazen', u'confid', u'hama', u'ceasefir']
[u'health', u'warn', u'whoop', u'cough', u'threat']
[u'alcohol', u'restrict', u'crime', u'rate']
[u'alic', u'welcom', u'parliament', u'sit', u'plan']
[u'ord', u'make', u'small', u'gain', u'lend', u'leas', u'plung']
[u'qaeda', u'sight', u'aust']
[u'speak', u'surgeon', u'issu']
[u'amnesti', u'claim', u'world', u'danger', u'place']
[u'anglicar', u'feel', u'pinch', u'scandal']
[u'angri', u'chilavert', u'quit', u'paraguay', u'nation']
[u'anxious', u'henin', u'hardenn', u'progress', u'round']
[u'aquacultur', u'expans', u'spotlight']
[u'armi', u'chief', u'begin', u'talk', u'china']
[u'armi', u'chief', u'meet', u'chines', u'militari']
[u'armi', u'help', u'indigen', u'hous', u'scheme']
[u'arrest', u'warrant', u'issu', u'woman', u'face', u'fraud', u'charg']
[u'artist', u'fin', u'child', u'porn', u'pictur']
[u'attend', u'recov', u'flight', u'attack']
[u'auditor', u'general', u'dismiss', u'nepean', u'hospit', u'concern']
[u'australia', u'brace', u'sar', u'fallout']
[u'australia', u'doesnt', u'need', u'govt']
[u'australia', u'win', u'touch', u'footbal', u'world']
[u'bail', u'refus', u'connect', u'polic', u'inquiri']
[u'bangladesh', u'play', u'test', u'odi']
[u'barbarian', u'power', u'past', u'scotland']
[u'bashir', u'lawyer', u'happi', u'bomb', u'suspect', u'testimoni']
[u'beatti', u'say', u'document', u'prove', u'time', u'action']
[u'night', u'tourism', u'award', u'winner']
[u'hezbollah', u'go', u'parliament']
[u'bishop', u'want', u'continu', u'focus', u'child', u'abus']
[u'blair', u'address', u'troop', u'basra']
[u'boca', u'restor', u'argentin', u'pride', u'libertador']
[u'brogden', u'say', u'heffernan', u'lobbi', u'consent']
[u'brogden', u'pressur', u'child', u'claim']
[u'bronco', u'sign', u'myer', u'carlaw', u'parker']
[u'bronco', u'sell', u'lang', u'park', u'return']
[u'busi', u'face', u'zero', u'toler', u'smoke', u'polici']
[u'busi', u'welcom', u'bushfir', u'grant']
[u'busi', u'back', u'budget', u'debt']
[u'button', u'call', u'time', u'villeneuv', u'feud']
[u'better', u'monitor', u'contract']
[u'budget', u'strateg', u'rural', u'approach']
[u'capuano', u'sack', u'prompt', u'club', u'chang', u'rethink']
[u'carr', u'announc', u'coal', u'expans']
[u'catchment', u'strategi', u'repli', u'avail', u'soon']
[u'cattl', u'station', u'train', u'indigen', u'resid']
[u'church', u'tri', u'stop', u'deport', u'asylum', u'seeker']
[u'claim', u'target', u'wmds', u'bureaucrat', u'reason']
[u'committe', u'tell', u'minist', u'slow', u'report', u'print']
[u'compani', u'director', u'face', u'charg', u'royal']
[u'complac', u'blame', u'aid', u'surg']
[u'complet', u'wheat', u'virus', u'erad', u'unlik']
[u'compulsori', u'insur', u'rise']
[u'concern', u'air', u'chemic', u'impact', u'dung', u'beetl']
[u'condit', u'report', u'seek', u'highway', u'section']
[u'confer', u'discuss', u'nativ', u'titl', u'issu']
[u'connolli', u'hit', u'pagan', u'jibe']
[u'coria', u'second', u'round', u'kafelnikov', u'oust']
[u'costello', u'defend', u'budget', u'telstra', u'valu']
[u'costello', u'concern', u'hollingworth']
[u'costello', u'accc', u'appoint']
[u'council', u'concern', u'increas', u'infect']
[u'council', u'cross', u'talk', u'break']
[u'councillor', u'concern', u'develop', u'decis']
[u'council', u'ralli', u'support', u'rate', u'chang']
[u'council', u'want', u'coast', u'team', u'upgrad', u'carrara']
[u'court', u'grant', u'injunct', u'iranian']
[u'court', u'hear', u'woman', u'injur', u'children']
[u'court', u'rule', u'guardian', u'stop', u'feed', u'patient']
[u'crew', u'contain', u'road', u'tanker', u'spill']
[u'crop', u'diseas', u'spark', u'quarantin', u'restrict']
[u'cruzeiro', u'flamengo', u'reach', u'copa', u'brasil', u'final']
[u'czech', u'defenc', u'minist', u'resign', u'plan', u'cut']
[u'darwin', u'court', u'grant', u'bail', u'hell', u'angel']
[u'niro', u'receiv', u'lifetim', u'achiev', u'award']
[u'dismiss', u'hewitt', u'peril', u'newcomb']
[u'doctor', u'criticis', u'delay', u'crick', u'charg', u'decis']
[u'dollar', u'fall', u'record', u'month', u'deficit']
[u'dont', u'write', u'hewitt', u'newcomb']
[u'driver', u'enjoy', u'lower', u'fuel', u'price']
[u'ducat', u'sell', u'milk', u'brand']
[u'european', u'ryder', u'captainci', u'plot', u'thicken']
[u'everest', u'celebr', u'near', u'peak']
[u'export', u'slump', u'caus', u'record', u'month', u'trade', u'deficit']
[u'falkirk', u'appeal', u'promot', u'rule']
[u'farmer', u'fin', u'sheep', u'mistreat']
[u'govt', u'ask', u'help', u'homeless', u'jobless', u'fight']
[u'fli', u'irishmen', u'touch', u'broom']
[u'foley', u'say', u'budget', u'deliv', u'surplus']
[u'freeman', u'run', u'rationalis', u'defeat']
[u'freez', u'tenur', u'electrolux']
[u'fuel', u'reduct', u'scheme', u'begin']
[u'fund', u'boost', u'gambl', u'treatment']
[u'fund', u'hamilton', u'swim']
[u'fund', u'seek', u'break', u'hill', u'anniversari']
[u'fund', u'help', u'tackl', u'gambl', u'woe']
[u'gallop', u'back', u'video', u'refere']
[u'bill', u'rise']
[u'group', u'hop', u'law', u'prove', u'posit']
[u'glori', u'inspir', u'shark', u'attack']
[u'govt', u'defeat', u'ruddock', u'censur', u'motion']
[u'greenback', u'ride', u'domin', u'trade']
[u'grewcock', u'tour', u'england', u'plan']
[u'group', u'want', u'minist', u'secess', u'plan']
[u'gungahlin', u'drive', u'design', u'unveil']
[u'handsom', u'viril', u'studi']
[u'hawk', u'let', u'schwab', u'vandenberg']
[u'hoggard', u'doubt', u'england', u'second', u'test']
[u'hollingworth', u'hound', u'offic', u'brother', u'say']
[u'hope', u'kick', u'centenari', u'celebr']
[u'incom', u'accc', u'chief', u'want', u'good', u'rural', u'relationship']
[u'india', u'ban', u'jadeja', u'get', u'ahead', u'play']
[u'investig', u'question', u'ship', u'skipper']
[u'iranian', u'urg', u'stand', u'firm', u'pressur']
[u'iraq', u'weapon', u'evid', u'emerg', u'downer']
[u'irrig', u'face', u'lower', u'river', u'water', u'entitl']
[u'juve', u'best', u'lippi']
[u'kenya', u'suspend', u'pamela', u'chepchumba', u'posit']
[u'kenyon', u'win', u'golf', u'open', u'surfer']
[u'laidlaw', u'attack', u'lewi', u'resign', u'comment']
[u'lend', u'leas', u'share', u'dive', u'write']
[u'lib', u'govt', u'land', u'clear']
[u'local', u'builder', u'win', u'turtl', u'centr', u'contract']
[u'love', u'bring', u'joey']
[u'macdougal', u'sign', u'leav', u'knight']
[u'macdougal', u'sign', u'contract']
[u'mackay', u'sugar', u'mothbal', u'pleystow']
[u'diseas', u'like', u'infect', u'cattl']
[u'maldini', u'lead', u'record', u'breaker', u'emul']
[u'arrest', u'flight', u'stab']
[u'kill', u'castl', u'hill']
[u'assault', u'charg', u'order', u'break', u'hill']
[u'mav', u'ralli', u'overcom', u'spur', u'game']
[u'mayor', u'roll', u'rat']
[u'mcguir', u'hose', u'port', u'feud', u'jackson']
[u'mcguir', u'urg', u'hose', u'port', u'feud']
[u'meaa', u'condemn', u'alston', u'intimid']
[u'milan', u'bask', u'triumph', u'turin', u'fall', u'silent']
[u'milan', u'shootout', u'land', u'sixth', u'european', u'crown']
[u'milan', u'win', u'italian', u'battl', u'champion', u'leagu', u'final']
[u'mix', u'respons', u'crean', u'year', u'term', u'propos']
[u'monti', u'campbel', u'look', u'lift', u'wale']
[u'mother', u'tractor', u'get', u'littl']
[u'move', u'afoot', u'restor', u'giant', u'vintag', u'tractor']
[u'await', u'airport', u'masterplan']
[u'confid', u'albani', u'host', u'region', u'parliament']
[u'make', u'maiden', u'speech']
[u'urg', u'adopt', u'coupl']
[u'want', u'build', u'inspect', u'law', u'chang']
[u'polic', u'join', u'year', u'murder', u'mysteri', u'probe']
[u'murray', u'fund', u'proper']
[u'nelson', u'reject', u'mean', u'test', u'fee']
[u'health', u'servic', u'south', u'west', u'shire']
[u'high', u'commission', u'name', u'fiji']
[u'protocol', u'canola', u'machineri', u'clean']
[u'strategi', u'propos', u'inland', u'fisheri']
[u'weigh', u'facil', u'cattl', u'export']
[u'korea', u'warn', u'nuclear', u'retali']
[u'problem', u'fill', u'vacanc', u'race', u'chief']
[u'govt', u'propos', u'council']
[u'pass', u'food', u'moritorium', u'legisl']
[u'murder', u'rate', u'highest', u'countri', u'statist']
[u'celebr', u'everest', u'anniversari']
[u'oppn', u'support', u'hezbollah']
[u'pakistan', u'follow', u'aussi', u'exampl', u'imran', u'khan']
[u'pakistan', u'seek', u'cricket', u'seri', u'india']
[u'palestinian', u'kill', u'isra', u'incurs']
[u'perth', u'doctor', u'devast', u'birth']
[u'peruvian', u'polic', u'arrest', u'protest', u'defi', u'state']
[u'petacchi', u'win', u'sixth', u'stage', u'giro']
[u'plane', u'disappear', u'mysteri']
[u'polic', u'boost', u'arsenal', u'long', u'weekend']
[u'polic', u'chief', u'happi', u'terror', u'exercis']
[u'polic', u'happi', u'voluntari', u'test']
[u'polic', u'investig', u'woman', u'death', u'continu']
[u'polic', u'plea', u'help', u'miss', u'teen']
[u'polic', u'probe', u'cherbourg', u'death']
[u'polic', u'target', u'castl', u'hill', u'problem']
[u'power', u'duck', u'magpi', u'jib']
[u'power', u'problem', u'report', u'tomorrow']
[u'princip', u'welcom', u'court', u'row', u'decis']
[u'probe', u'clear', u'policeman', u'wrongdo']
[u'project', u'manag', u'appoint', u'marina', u'plan']
[u'properti', u'crime', u'steep', u'declin', u'statist']
[u'govt', u'wait', u'gladston', u'infrastructur']
[u'oppn', u'keep', u'heat', u'beatti']
[u'research', u'centr', u'expect', u'boost', u'nativ', u'flower']
[u'research', u'consid', u'asbesto', u'grass', u'impact']
[u'research', u'shed', u'light', u'lobster', u'behaviour']
[u'rivkin', u'get', u'weekend', u'jail', u'fine']
[u'rivkin', u'appeal', u'convict', u'sentenc']
[u'road', u'reopen', u'weekend', u'closur']
[u'roddick', u'struggl', u'live', u'american', u'dream']
[u'roux', u'give', u'year', u'fail', u'dope', u'test']
[u'ruggeri', u'hop', u'independient', u'lead', u'nation']
[u'archbishop', u'apologis', u'abus', u'victim']
[u'santo', u'capitalis', u'blunder', u'reach', u'libertador']
[u'savoy', u'hotel', u'close', u'door']
[u'schett', u'defeat', u'fernandez', u'meet', u'serena']
[u'scientist', u'discov', u'compact', u'galaxi']
[u'search', u'skipper', u'sink', u'trawler']
[u'serena', u'search', u'perfect', u'form']
[u'serial', u'killer', u'appeal', u'convict']
[u'share', u'split', u'fear', u'deal']
[u'sheedi', u'await', u'return', u'bomber']
[u'shire', u'problem', u'level', u'wast']
[u'shootout', u'hand', u'milan', u'sixth', u'european', u'crown']
[u'solar', u'eclips', u'sweep', u'northern', u'latitud']
[u'sport', u'shooter', u'condemn', u'tighter', u'control', u'law']
[u'sport', u'shooter', u'doubt', u'gun', u'buyback', u'impact']
[u'studi', u'find', u'law', u'surround', u'genet', u'materi', u'need']
[u'studi', u'link', u'chlorin', u'asthma', u'epidem']
[u'sugar', u'pool', u'price', u'predict', u'product']
[u'survey', u'result', u'help', u'boost', u'busi', u'support']
[u'kill', u'aceh', u'say', u'militari']
[u'terror', u'expert', u'surpris', u'qaeda']
[u'test', u'probe', u'mind', u'psychopath']
[u'train', u'demand', u'expect', u'lift', u'work', u'end']
[u'train', u'guard', u'confid', u'driver', u'abil', u'inquiri']
[u'trawler', u'skipper', u'miss', u'collis', u'bulk']
[u'truck', u'crash', u'close', u'highway']
[u'indigen', u'land']
[u'union', u'suggest', u'work', u'option']
[u'plan', u'extend', u'stay', u'iraq', u'report']
[u'virgin', u'blue', u'boost', u'coff', u'tourism']
[u'voluntari', u'administr', u'impact', u'miner', u'unknown']
[u'charg', u'rent', u'privat', u'licenc', u'plat']
[u'waterfal', u'train', u'driver', u'compet', u'guard']
[u'watt', u'hop', u'unifi', u'council']
[u'know', u'quirindi', u'resid', u'die']
[u'wollongong', u'celebr', u'reconcili', u'week']
[u'wooden', u'object', u'flight', u'attack']
[u'wood', u'cours', u'open', u'tune']
[u'woomera', u'seek', u'telescop', u'planetarium', u'fund']
[u'world', u'bank', u'repres', u'enter', u'iraq']
[u'write', u'wall', u'graffiti', u'artist']
[u'archer', u'hunt', u'bear']
[u'injur', u'brisban', u'road', u'crash']
[u'accus', u'murder', u'seek', u'fund', u'defenc']
[u'build', u'protect', u'stall']
[u'agforc', u'miss', u'tree', u'clear', u'respons', u'deadlin']
[u'agricultur', u'expert', u'consid', u'wheat', u'virus']
[u'scare', u'spark', u'alburi', u'airport', u'assur']
[u'alcohol', u'restrict', u'find', u'soon']
[u'alleg', u'hijack', u'face', u'court']
[u'lend', u'leas', u'continu', u'slide']
[u'annan', u'deepli', u'concern', u'aceh', u'fight']
[u'answer', u'seek', u'rail', u'servic', u'job']
[u'anti', u'dope', u'campaign', u'threaten', u'cash', u'crisi']
[u'applic', u'lodg', u'oper']
[u'arthur', u'hanley', u'molik', u'progress', u'pari']
[u'arthur', u'seat', u'chairlift', u'owner', u'escap', u'prosecut']
[u'aussi', u'look', u'life']
[u'avellino', u'take', u'tbird', u'court']
[u'ballack', u'aim', u'wipe', u'tripl', u'miseri']
[u'beckham', u'bid', u'restor', u'england', u'imag']
[u'beekeep', u'abuzz', u'food', u'crop']
[u'beekeep', u'lament', u'impact', u'export']
[u'bendigo', u'tornado', u'appeal', u'extend']
[u'hope', u'celebr', u'birthday']
[u'bomber', u'hird', u'injur']
[u'bomber', u'welcom', u'star', u'trio']
[u'bomb', u'kill', u'north', u'spain', u'blame']
[u'boundari', u'commiss', u'meet', u'shire', u'divis']
[u'brazil', u'deni', u'choreographi', u'censorship']
[u'briton', u'jeffri', u'die', u'isl', u'crash']
[u'bronco', u'sign', u'forward', u'trio']
[u'buckley', u'play', u'port', u'clash', u'hype']
[u'buckley', u'play', u'match', u'talk']
[u'budget', u'prepar', u'raini', u'day', u'treasur']
[u'bulldog', u'futur', u'secur']
[u'bunburi', u'silo', u'hotel', u'grain', u'landmark']
[u'bush', u'embark', u'european', u'mission']
[u'fairer', u'feder', u'fund', u'distribut']
[u'inquiri', u'submiss']
[u'secur', u'airport', u'upgrad']
[u'canada', u'tripl', u'sar', u'case']
[u'warn', u'hoax', u'mail']
[u'champion', u'leagu', u'final', u'deserv', u'better']
[u'chariti', u'ride', u'rais', u'cancer', u'fund']
[u'chilean', u'scientist', u'claim', u'dinosaur', u'discoveri']
[u'china', u'jail', u'internet', u'activist']
[u'china', u'jump', u'sar', u'sourc']
[u'church', u'agre', u'independ', u'abus', u'inquiri']
[u'club', u'contribut', u'thousand', u'communiti', u'group']
[u'coalit', u'split', u'tree', u'clear', u'legisl']
[u'communiti', u'group', u'welcom', u'insur', u'reviv']
[u'concern', u'air', u'quarantin', u'inspect', u'chang']
[u'council', u'contribut', u'histori', u'project']
[u'council', u'get', u'wast', u'water', u'scheme', u'fund']
[u'council', u'reject', u'fund']
[u'council', u'rule', u'land', u'fee', u'month']
[u'council', u'consid', u'crime', u'prevent']
[u'council', u'seek']
[u'council', u'seek', u'super', u'fund', u'probe']
[u'council', u'urg', u'index', u'rat', u'charg', u'inflat']
[u'council', u'want', u'dingo', u'fenc', u'repair']
[u'council', u'win', u'support', u'cheaper', u'flight', u'push']
[u'crew', u'member', u'ordeal']
[u'cwealth', u'respons', u'region', u'airport']
[u'darwin', u'eisteddfod', u'bang']
[u'dean', u'attack', u'govt', u'intoler']
[u'death', u'toll', u'rise', u'india', u'heatwav']
[u'debat', u'erupt', u'radiotherapi', u'unit', u'budget', u'fund']
[u'defunct', u'green', u'group', u'reject', u'financi', u'claim']
[u'democrat', u'demand', u'govt', u'taxi', u'industri']
[u'dfat', u'urg', u'australian', u'avoid', u'travel']
[u'diamond', u'shine', u'bright', u'kimberley', u'economi']
[u'dixon', u'relax', u'accc', u'chief']
[u'dokic', u'suffer', u'disappoint', u'loss']
[u'dollar', u'steadi', u'volatil', u'market']
[u'domest', u'water', u'user', u'face', u'bigger']
[u'dunde', u'readi', u'crash', u'ranger', u'trebl', u'parti']
[u'editor', u'lead', u'italian', u'paper', u'resign']
[u'engin', u'student', u'consid', u'option']
[u'famili', u'hope', u'settl', u'cliff', u'collaps', u'case']
[u'famili', u'staff', u'impos', u'work', u'ban']
[u'farmer', u'landcar', u'effort']
[u'feder', u'court', u'grant', u'asylum', u'seeker', u'interim']
[u'ferrero', u'flash', u'clister', u'win', u'comfort']
[u'engin', u'demand', u'meet', u'resist']
[u'find', u'ban', u'weapon', u'prioriti', u'blair', u'say']
[u'arrest', u'alleg', u'assault']
[u'fluminens', u'sign', u'romario']
[u'employe', u'jail', u'steal']
[u'serb', u'polic', u'chief', u'face', u'human', u'right', u'charg']
[u'french', u'final', u'salvag', u'season']
[u'french', u'fire', u'clement']
[u'friendship', u'asid', u'henman', u'outlast', u'martin']
[u'fund', u'disabl', u'awar', u'train']
[u'fund', u'address', u'problem', u'gambl']
[u'game', u'secur', u'chief', u'reveal', u'qaeda', u'evid']
[u'option', u'consider']
[u'gough', u'happi', u'squad']
[u'govt', u'tighten', u'secur', u'bangkok', u'embassi']
[u'hawthorn', u'hop', u'form', u'slump']
[u'heavi', u'sea', u'hamper', u'search', u'trawler', u'skipper']
[u'hewitt', u'australian', u'stand']
[u'high', u'court', u'consid', u'elector', u'reform']
[u'histor', u'canberra', u'cinema', u'close', u'door']
[u'howard', u'confid', u'wmds']
[u'howard', u'say', u'alston', u'right', u'question']
[u'howel', u'take', u'memori', u'lead', u'tiger', u'start']
[u'indian', u'restaur', u'fin', u'mouldi', u'food']
[u'indonesian', u'militari', u'clash', u'aceh', u'rebel']
[u'irrig', u'lament', u'water', u'restrict']
[u'israel', u'promis', u'freer', u'movement', u'palestinian']
[u'jaguar', u'face', u'year', u'toil', u'purnel']
[u'journalist', u'convict', u'enter', u'aborigin', u'land']
[u'kelli', u'heat', u'side', u'chanc', u'cairn']
[u'kelli', u'meet', u'council', u'merger', u'concern']
[u'kookaburra', u'edg', u'india', u'hockeyroo', u'athen']
[u'kuerten', u'eye', u'restor', u'claycourt', u'kingdom']
[u'lang', u'park', u'readi', u'bronco', u'return']
[u'lara', u'pay', u'tribut', u'chief', u'tormentor', u'bichel']
[u'larkham', u'switch', u'fullback', u'report']
[u'larsson', u'deni', u'spanish', u'tie']
[u'wagga', u'bakeri']
[u'leader', u'groundwork', u'middl', u'east', u'summit']
[u'declar', u'bevan', u'mcgrath']
[u'declar', u'dayer']
[u'lewi', u'look', u'johnson', u'slam', u'tyson', u'king']
[u'lobbi', u'group', u'applaud', u'propos', u'research', u'merger']
[u'london', u'bronco', u'sack', u'peter', u'posit', u'drug']
[u'luca', u'height', u'owner', u'reactor', u'safe', u'despit']
[u'question', u'perth', u'abduct', u'attempt']
[u'charg', u'hijack']
[u'fin', u'unlicens', u'deal']
[u'guilti', u'danger', u'drive']
[u'injur', u'tower', u'fall']
[u'jail', u'year', u'crime']
[u'jail', u'dispos', u'bodi']
[u'kill', u'rollov']
[u'kill', u'crash']
[u'mareeba', u'famili', u'compet', u'water', u'prize']
[u'market', u'trial', u'close', u'main', u'carnarvon', u'street']
[u'maverick', u'replay', u'abandon', u'clash']
[u'mayor', u'want', u'shire', u'bodi', u'stay', u'lgaq']
[u'mcewen', u'defend', u'murray']
[u'mclaren', u'season']
[u'michael', u'lion']
[u'milan', u'doubl', u'success']
[u'mix', u'respons', u'murray', u'commit']
[u'mourner', u'respect', u'kangaroo', u'mcmahon']
[u'expect', u'budget', u'health', u'boost']
[u'ownership', u'debat', u'sight']
[u'push', u'rail', u'line', u'remain', u'open']
[u'hop', u'resolv', u'health', u'clinic', u'disput']
[u'nepal', u'prime', u'minist', u'resign']
[u'home', u'seek', u'dutch', u'replica', u'ship']
[u'ferri', u'servic', u'move', u'closer', u'realiti']
[u'plan', u'sell', u'polic', u'station', u'site']
[u'govt', u'call', u'nation', u'fund', u'tackl']
[u'stick', u'elect', u'schedul', u'martin']
[u'offici', u'investig', u'workplac', u'death']
[u'ohern', u'fire', u'welsh', u'open', u'lead']
[u'opposit', u'question', u'travel', u'warn']
[u'origin', u'place', u'grab', u'david', u'morrow', u'round']
[u'palestinian', u'bomber', u'die', u'attempt', u'enter', u'israel']
[u'palm', u'council', u'face', u'uncertain', u'futur']
[u'panel', u'appoint', u'work', u'hour', u'inquiri']
[u'passeng', u'termin', u'secur', u'scare']
[u'passeng', u'return', u'qanta', u'termin']
[u'peri', u'kneebon', u'postpon', u'polit', u'debut']
[u'pike', u'hop', u'ambul', u'station', u'uncertainti']
[u'prais', u'crew', u'scare']
[u'consid', u'request', u'marin', u'base']
[u'polic', u'investig', u'gold', u'coast', u'shoot', u'incid']
[u'polic', u'charg', u'coast', u'drug', u'raid']
[u'polic', u'probe', u'gladston', u'hous']
[u'polic', u'seek', u'help', u'hunt', u'hotel', u'vandal']
[u'polic', u'taskforc', u'probe', u'anglican', u'church', u'abus']
[u'port', u'adelaid', u'down', u'collingwood']
[u'port', u'lincoln', u'develop', u'high']
[u'portman', u'look', u'koolyaknob', u'expans']
[u'eindhoven', u'dutch', u'leagu', u'titl']
[u'qanta', u'tight', u'lip', u'sydney', u'termin', u'secur']
[u'win', u'butt', u'award']
[u'raider', u'edg', u'shark']
[u'rail', u'advoc', u'deputi']
[u'ratepay', u'face', u'rate', u'rise']
[u'clay', u'stir', u'regret', u'sampra']
[u'reflect', u'capriati', u'put', u'victori', u'perspect']
[u'republican', u'consid', u'plan', u'attack']
[u'retail', u'trade', u'overcom', u'april', u'obstacl']
[u'rivkin', u'share', u'trade', u'halt']
[u'rivkin', u'compani', u'chairman']
[u'rover', u'amoruso']
[u'rumsfeld', u'deni', u'invad', u'iraq', u'fals', u'pretext']
[u'ambo', u'blame', u'govt', u'health', u'fund', u'increas']
[u'saddam', u'remov', u'defin', u'moment']
[u'samudra', u'face', u'death', u'bali', u'bomb']
[u'take', u'step', u'save', u'murray']
[u'schumach', u'lead', u'monaco']
[u'search', u'miss', u'skipper', u'scale']
[u'secur', u'breach', u'caus', u'evacu', u'qanta']
[u'secur', u'staff', u'walk', u'guard', u'attack']
[u'seed', u'movement', u'quarantin', u'restrict', u'lift']
[u'shark', u'injuri', u'crisi']
[u'shevchenko', u'award', u'ukrain', u'sport', u'honour']
[u'shire', u'group', u'debat', u'insur', u'premium', u'impact']
[u'simoni', u'giro', u'victori', u'sight']
[u'slowcoach', u'costa', u'take', u'distanc']
[u'sorenstam', u'return', u'lpga', u'defend', u'titl']
[u'stonefruit', u'grower', u'await', u'news']
[u'super', u'leagu', u'trio', u'deduct', u'point', u'salari']
[u'survey', u'show', u'fish', u'econom', u'boost']
[u'suspend', u'sentenc', u'investig']
[u'sydney', u'polic', u'seiz', u'ecstasi', u'tablet']
[u'hospit', u'provid', u'tech', u'ventil']
[u'atalanta', u'hang', u'draw']
[u'terror', u'put', u'heat', u'refuge', u'survey']
[u'thailand', u'hit', u'australian', u'travel', u'warn']
[u'thoma', u'train', u'latest']
[u'kill', u'grozni', u'blast', u'polic']
[u'tribut', u'flow', u'governor']
[u'tyson', u'rape', u'outrag']
[u'uefa', u'stand', u'firm', u'firm', u'premiership', u'flit']
[u'accus', u'rewrit', u'iraq', u'intellig']
[u'union', u'welcom', u'budget', u'teacher', u'hous', u'fund']
[u'ambassador', u'deni', u'plan', u'local', u'troop', u'base']
[u'issu', u'travel', u'warn', u'gaza', u'kidnap', u'fear']
[u'reinforc', u'iraq', u'forc']
[u'trade', u'agreement', u'critic', u'vail', u'warn']
[u'venus', u'struggl', u'round']
[u'voller', u'prepar', u'german', u'match', u'year']
[u'wallabi', u'focus', u'ireland', u'test']
[u'shire', u'probe', u'eros', u'woe']
[u'waterhous', u'attempt', u'stop', u'inquiri']
[u'welcom', u'home', u'navi', u'diver']
[u'webb', u'rule', u'men', u'titl', u'challeng']
[u'weekend', u'mark', u'shipwreck', u'anniversari']
[u'fight', u'save', u'monaco', u'princ', u'albert']
[u'spanish', u'leader', u'real', u'sociedad']
[u'women', u'give', u'birth', u'later', u'life', u'studi']
[u'woolworth', u'admit', u'alcohol', u'price', u'fix']
[u'work', u'begin', u'colleg']
[u'kill', u'injur', u'kashmir', u'shoot', u'out', u'blast']
[u'milan', u'target', u'beckham', u'report']
[u'adelaid', u'polic', u'investig', u'tripl', u'road', u'fatal']
[u'consid', u'talli', u'room', u'overhaul']
[u'agassi', u'advanc', u'serena', u'smash', u'schett']
[u'franc', u'concord', u'make', u'final', u'york', u'land']
[u'passeng', u'bodi', u'search']
[u'alic', u'spring', u'clinic', u'criticis', u'polici']
[u'armi', u'camp', u'sale', u'anger', u'brighton', u'resid']
[u'armi', u'rebel', u'clash', u'philippin', u'dead']
[u'attempt', u'murder', u'charg', u'lay', u'road', u'crash']
[u'australian', u'veteran', u'fowler', u'sparkl']
[u'australia', u'send', u'weapon', u'expert', u'iraq']
[u'bartlett', u'call', u'stronger', u'rhetor', u'troop']
[u'beazley', u'back', u'presenc', u'asia']
[u'bennett', u'close', u'decis', u'origin', u'squad']
[u'bennett', u'close', u'decis', u'squad']
[u'boston', u'archdioces', u'unveil', u'anti', u'abus', u'plan']
[u'brisban', u'virus', u'outbreak', u'contain', u'health']
[u'britain', u'begin', u'repatri', u'iraqi']
[u'bronco', u'lose', u'swain', u'lang', u'park', u'return']
[u'bulldog', u'roo']
[u'burmes', u'leader', u'arrest', u'report']
[u'bush', u'poland', u'ahead', u'europ', u'summmit']
[u'bush', u'push', u'intern', u'search', u'agreement']
[u'campbel', u'organis', u'pitch', u'record']
[u'cancer', u'council', u'seek', u'deglamouris', u'smoke']
[u'casablanca', u'blast', u'reserv', u'charg']
[u'chemic', u'agent', u'prison', u'transfer']
[u'chemic', u'spill', u'clean']
[u'church', u'call', u'return', u'detain', u'australian']
[u'clark', u'get', u'explain', u'ireland', u'trip']
[u'clijster', u'capriati', u'romp', u'fourth', u'round']
[u'confer', u'review', u'autism', u'research']
[u'countri', u'footbal', u'come', u'polit', u'spotlight']
[u'custom', u'raid', u'uncov', u'spider', u'haul']
[u'dead', u'woman', u'coolum']
[u'democrat', u'seek', u'assur', u'forc', u'aust']
[u'derail', u'close', u'tran', u'australian', u'railway', u'line']
[u'egyptian', u'accus', u'plan', u'cambodia', u'terror']
[u'engin', u'confer', u'discuss', u'project']
[u'summit', u'open', u'saint', u'petersburg']
[u'euthanasia', u'issu', u'affect', u'young', u'youth', u'defenc']
[u'giant', u'tri', u'kill', u'say', u'minardi', u'boss']
[u'fair', u'cambodian', u'elect', u'garner', u'reeker']
[u'fall', u'premium', u'compo', u'chang', u'unneed']
[u'fatal', u'accid', u'follow', u'canberra', u'polic', u'chase']
[u'ferdinand', u'england', u'game']
[u'arrest', u'saudi', u'bomb', u'report']
[u'injur', u'bomb', u'explod', u'pakistani']
[u'wound', u'bomb', u'explos', u'pakistani']
[u'crisi', u'domin', u'republican', u'talk']
[u'govt', u'accus', u'drag', u'feet', u'feder', u'squar']
[u'green', u'hop', u'return', u'win', u'way']
[u'hama', u'stand', u'attack', u'despit', u'road', u'progress']
[u'health', u'offici', u'urg', u'season', u'approach']
[u'hill', u'defend', u'iraq']
[u'hind', u'guid', u'windi', u'victori']
[u'hindu', u'pilgrim', u'holi', u'solar', u'eclips']
[u'hodgson', u'pace', u'ahead', u'record', u'quest']
[u'howard', u'put', u'retir', u'talk', u'hold']
[u'indigen', u'health', u'care', u'appal']
[u'iran', u'attack', u'claim', u'idl', u'specul', u'bush']
[u'iraqi', u'child', u'kill', u'militari', u'road', u'accid']
[u'isra', u'palestinian', u'prepar', u'peac', u'summit']
[u'italian', u'journalist', u'strike', u'editor', u'resign']
[u'jakarta', u'send', u'thousand', u'student', u'aceh']
[u'labor', u'win', u'londonderri', u'elect']
[u'laidley', u'slam', u'saint', u'capuano', u'sack']
[u'lang', u'park', u'count', u'kickoff']
[u'leak', u'contain', u'spark', u'wharv', u'emerg']
[u'launch', u'state', u'elect', u'plan']
[u'lion', u'annihil', u'demon', u'roo', u'docker']
[u'lion', u'dee', u'swan', u'roo', u'docker']
[u'local', u'favourit', u'mauresmo']
[u'local', u'govern', u'debat', u'merit', u'public', u'precinct']
[u'lomu', u'undergo', u'kidney', u'dialysi', u'treatment']
[u'test', u'negat', u'canadian']
[u'melbourn', u'face', u'sydney', u'fraud', u'charg']
[u'men', u'draw', u'injuri']
[u'moya', u'move', u'closer', u'parisian', u'repeat']
[u'say', u'indigen', u'credit', u'constitut', u'overdu']
[u'nepal', u'step', u'bolster', u'king']
[u'nitschk', u'unveil', u'suicid', u'machin']
[u'govt', u'question', u'feder', u'firefight', u'commit']
[u'govt', u'warn', u'sar', u'complac']
[u'labor', u'lib', u'hold', u'plan', u'meet']
[u'smoke', u'law', u'start', u'cancer', u'council']
[u'panamanian', u'pageant', u'mania']
[u'peru', u'lift', u'state', u'emerg', u'strike', u'subsid']
[u'pngs', u'independ', u'newspap', u'close']
[u'polic', u'investig', u'tourist', u'death']
[u'polic', u'rule', u'hmas', u'sydney', u'archiv', u'inquiri']
[u'polic', u'investig', u'paedophil', u'network', u'claim']
[u'poor', u'countri', u'campaign', u'trade', u'concess']
[u'port', u'crush', u'collingwood']
[u'poulter', u'edg', u'ahead', u'wale']
[u'qanta', u'name', u'flight', u'centr', u'breach']
[u'radio', u'tower', u'pose', u'health', u'risk', u'govt']
[u'raider', u'sink', u'shark']
[u'recept', u'thank', u'bush', u'firefight']
[u'record', u'entri', u'sept', u'memori', u'design']
[u'report', u'show', u'adequ', u'govt']
[u'report', u'warn', u'garbag', u'collaps']
[u'risdon', u'prison', u'open', u'behaviour', u'problem', u'divis']
[u'roo', u'bind', u'docker', u'damag', u'blue']
[u'rotarian', u'flock', u'brisban', u'confer']
[u'church', u'offici', u'apologis', u'child', u'abus']
[u'safeti', u'focus', u'flight', u'say', u'civil']
[u'polic', u'search', u'driver', u'involv']
[u'mine', u'despit', u'royalti', u'increas', u'foley']
[u'speed', u'amnesti', u'end', u'tonight']
[u'senat', u'complet', u'pacif', u'fact', u'find', u'mission']
[u'shame', u'campaign', u'uncov', u'burglari', u'ring']
[u'shark', u'battl', u'injuri', u'crisi']
[u'shark', u'battl', u'injuri', u'crisi', u'ahead', u'grand']
[u'sharp', u'rise', u'algerian', u'quak', u'death', u'toll']
[u'simoni', u'extend', u'giro', u'lead', u'stage']
[u'sorenstam', u'star', u'return', u'lpga', u'tour']
[u'spur', u'dalla', u'reach', u'final']
[u'spur', u'dalla', u'reach', u'final']
[u'streisand', u'sue', u'coast', u'surveyor', u'hous', u'snap']
[u'strong', u'quak', u'jolt', u'eastern', u'indonesian', u'citi']
[u'sugiyama', u'hustl', u'roland', u'garro', u'fourth', u'round']
[u'swift', u'phoenix', u'win']
[u'sydney', u'polic', u'search', u'carjack']
[u'symptomless', u'sar', u'china', u'report']
[u'teenag', u'charg', u'stab']
[u'terrorist', u'attack', u'strateg', u'failur']
[u'tiger', u'clumsi', u'dog']
[u'tiger', u'clumsi', u'dog', u'eel', u'panther']
[u'torrenti', u'rain', u'kill', u'moldova']
[u'trawler', u'skipper', u'miss', u'carrier', u'near']
[u'trespass', u'convict', u'blow', u'journal', u'newspap']
[u'investig', u'abus', u'pictur']
[u'approv', u'congo', u'peacekeep', u'forc']
[u'sack', u'british', u'worker', u'messag']
[u'accus', u'north', u'korea', u'threaten', u'asia', u'secur']
[u'call', u'unifi', u'assault', u'terror']
[u'court', u'rule', u'iran', u'guilti', u'troop', u'blast', u'death']
[u'decri', u'belarus', u'media', u'crackdown']
[u'erron', u'releas', u'suspect', u'iraqi']
[u'lower', u'terror', u'threat', u'level']
[u'stock', u'continu', u'rise']
[u'team', u'monitor', u'road', u'journey', u'powel']
[u'uncov', u'baath', u'sleeper', u'cell', u'polic']
[u'unveil', u'billion', u'defenc', u'plan', u'korean', u'peninsula']
[u'urg', u'restraint', u'aceh']
[u'warn', u'expect', u'increas', u'hurrican', u'damag']
[u'woman', u'die', u'scuba', u'dive', u'port', u'dougla']
[u'vintag', u'rfds', u'fundrais', u'start']
[u'warden', u'bust', u'jail', u'bootlegg']
[u'station', u'play', u'role', u'mar', u'mission']
[u'remov', u'singapor', u'sar', u'list']
[u'wickham', u'plant', u'work', u'begin', u'soon', u'compani']
[u'women', u'remov', u'pant', u'swazi', u'king']
[u'woolworth', u'club', u'admit', u'price', u'fix', u'breach']
[u'zimbabw', u'policeman', u'forego', u'interpol', u'titl']
[u'zone', u'grace', u'period']
[u'fine', u'polic', u'remind', u'driver']
[u'abbott', u'say', u'cwealth', u'consid', u'doubl']
[u'mazen', u'await', u'milit', u'truce', u'respons']
[u'aceh', u'rebel', u'kill', u'indonesian', u'soldier', u'villag', u'chief']
[u'actor', u'fear', u'free', u'trade', u'cultur', u'threat']
[u'seek', u'stanwel', u'partner', u'cost', u'blow']
[u'anti', u'crusad', u'year']
[u'gain', u'increas', u'airport', u'secur', u'power']
[u'armi', u'consid', u'direct', u'recruit']
[u'baabaa', u'round', u'miser', u'season', u'wale']
[u'bacon', u'begin', u'comput', u'communiti', u'group', u'program']
[u'ballack', u'inspir', u'bayern', u'domest', u'doubl']
[u'bangladesh', u'heatwav', u'toll', u'rise']
[u'barca', u'million', u'pound', u'beckham', u'press']
[u'shrug', u'monaco', u'court', u'seizur', u'order']
[u'blair', u'pin', u'credibl', u'iraq', u'weapon', u'hunt']
[u'budget', u'problem', u'hamper', u'youth', u'liaison', u'polic']
[u'bullimor', u'rescu', u'inspir', u'compos']
[u'burma', u'junta', u'mount', u'major', u'crackdown']
[u'burmes', u'junta', u'arrest']
[u'bush', u'face', u'critic', u'russia']
[u'bush', u'russia', u'tricentenni', u'putin', u'meet']
[u'button', u'monaco', u'doubt', u'crash']
[u'camplin', u'name', u'snow', u'best']
[u'capriati', u'undaunt', u'lose', u'streak']
[u'carr', u'ask', u'cwealth', u'check', u'region', u'airport']
[u'champion', u'costa', u'win', u'marathon', u'match']
[u'china', u'close', u'gate', u'yangtz']
[u'church', u'agre', u'child', u'abus', u'inquiri']
[u'claim', u'educ', u'reform', u'indigen']
[u'clijster', u'answer', u'belgium']
[u'coalit', u'say', u'plan', u'shoot', u'land', u'iraq']
[u'compulsori', u'aggress', u'train', u'nurs']
[u'coron', u'investig', u'plane', u'fatal']
[u'cost', u'alic', u'parliament', u'sit', u'unknown']
[u'crow', u'cat', u'bomber', u'saint']
[u'castella', u'land', u'bidder', u'slow', u'block']
[u'doubl', u'milan']
[u'dozen', u'hurt', u'nepali', u'press', u'uniti', u'govern']
[u'zhivago', u'see', u'centr', u'cinema', u'tenur']
[u'egypt', u'flight', u'clear', u'bomb', u'scare']
[u'egyptair', u'flight', u'land', u'safe', u'bomb', u'scare']
[u'nab', u'atlanta', u'olymp', u'blast', u'suspect']
[u'govt', u'dismiss', u'carr', u'region', u'airport', u'fear']
[u'ferrero', u'crush', u'henman', u'challeng']
[u'fli', u'safeti', u'assur', u'need', u'tourism', u'council']
[u'franc', u'bid', u'adieu', u'concord']
[u'french', u'loan', u'algeria', u'earthquak', u'relief']
[u'german', u'techno', u'fan', u'move']
[u'glasson', u'vote', u'chief']
[u'glori', u'face', u'player', u'exodus']
[u'govt', u'allow', u'question', u'alston']
[u'govt', u'plan', u'aborigin', u'medicar', u'rebat', u'extens']
[u'govt', u'fund', u'aborigin', u'employ', u'project']
[u'hangar', u'collaps', u'investig', u'begin']
[u'hewitt', u'bow', u'women', u'seed', u'triumph']
[u'hill', u'criticis', u'secur', u'council']
[u'hockeyroo', u'clean', u'sweep']
[u'hodgson', u'take', u'german', u'superbik', u'pole']
[u'home', u'ownership', u'program', u'aid', u'self', u'empower']
[u'hospit', u'upgrad', u'secur', u'measur']
[u'increas', u'secur', u'paralys', u'industri', u'qanta']
[u'india', u'play', u'kookaburra', u'nation', u'final']
[u'iraq', u'journalist', u'protest', u'mass', u'sack']
[u'iraq', u'tension', u'underscor', u'meet']
[u'israel', u'eas', u'west', u'bank', u'gaza', u'closur']
[u'itali', u'intercept', u'spate', u'refuge', u'boat']
[u'jeanson', u'win', u'montreal', u'world', u'race']
[u'jone', u'fight', u'holyfield', u'octob', u'promot']
[u'knight', u'spoil', u'lang', u'park', u'parti']
[u'knight', u'spoil', u'lang', u'park', u'parti', u'rooster', u'cowboy']
[u'labor', u'continu', u'fight', u'cross', u'media', u'chang']
[u'labor', u'increas', u'major', u'londonderri']
[u'lang', u'park', u'makeov', u'declar', u'success']
[u'lang', u'park', u'welcom', u'fan', u'reopen', u'match']
[u'leader', u'protest', u'converg', u'evian', u'summit']
[u'leagu', u'lang', u'bronco', u'lead', u'half', u'time']
[u'leed', u'want', u'kewel', u'stay']
[u'light', u'fall', u'season', u'near']
[u'lombardi', u'win', u'stage', u'simoni', u'wait', u'victori']
[u'lomu', u'need', u'kidney', u'transplant']
[u'tanker', u'driver', u'charg', u'accid']
[u'madrid', u'setback', u'spanish', u'titl', u'race']
[u'charg', u'servic', u'station', u'hold']
[u'dead', u'lie', u'gold', u'coast', u'road']
[u'rainfal', u'show', u'unusu', u'pattern', u'meteorologist']
[u'mbeki', u'call', u'good', u'fund', u'promis']
[u'melbourn', u'head', u'stricter', u'water', u'control']
[u'head', u'maintain', u'xstrata', u'opposit']
[u'moder', u'quak', u'jolt', u'iran', u'casualti']
[u'modest', u'davenport', u'final']
[u'montoya', u'win', u'william', u'monaco']
[u'juic', u'fail', u'tickl', u'govt', u'tastebud']
[u'moseley', u'storm', u'content']
[u'door', u'polici', u'fail', u'mayor', u'constitu']
[u'vic', u'lead', u'ladder']
[u'univers', u'win', u'major', u'grant', u'fund']
[u'bumper', u'sticker', u'drive', u'scoresbi', u'messag', u'home']
[u'panther', u'punish', u'warrior', u'eel', u'rout', u'rabbitoh']
[u'penalti', u'stiff', u'world', u'pitch', u'invad']
[u'peopl', u'hospitalis', u'polic', u'chase']
[u'perri', u'remain', u'cours', u'second', u'straight']
[u'peru', u'return', u'calm']
[u'philippin', u'continu', u'offens', u'muslim']
[u'pilot', u'dead', u'accid']
[u'piston', u'coach']
[u'plenti', u'woomera', u'sale']
[u'reveal', u'futur', u'lib', u'convent']
[u'polic', u'charg', u'port', u'hedland', u'pair', u'wil', u'murder']
[u'polic', u'investig', u'longford']
[u'polic', u'investig', u'possibl', u'mass', u'drink', u'spike']
[u'polic', u'trade', u'gunfir', u'arm', u'stand']
[u'polit', u'offici', u'arrest', u'casablanca', u'blast']
[u'posit', u'russia', u'iran', u'close', u'putin']
[u'post', u'mortem', u'hold', u'tourist', u'death']
[u'preambl', u'aborigin', u'worri', u'ruddock']
[u'protest', u'block', u'road', u'near', u'summit']
[u'govt', u'hint', u'blue', u'card', u'chang']
[u'call', u'crimin', u'check', u'hospit']
[u'ranger', u'complet', u'scottish', u'trebl']
[u'remand', u'prison', u'dead', u'custodi']
[u'republican', u'movement', u'see', u'surg', u'membership']
[u'resid', u'contamin']
[u'robredo', u'roll', u'hewitt']
[u'robredo', u'roll', u'hewitt', u'costa', u'win', u'marathon']
[u'royal', u'park', u'woodland', u'project', u'begin', u'today']
[u'russia', u'iraq', u'differ']
[u'samuel', u'slat', u'supermarket', u'competit', u'review']
[u'recruit', u'direct', u'public']
[u'synod', u'debat', u'abus', u'probe', u'plan']
[u'seafood', u'council', u'critic', u'jetti', u'levi']
[u'secur', u'rais', u'ahead', u'protest']
[u'serena', u'battl', u'sugiyama']
[u'seventh', u'hong', u'kong', u'medic', u'die', u'sar']
[u'korea', u'fire', u'warn', u'shot', u'north', u'korean', u'fish']
[u'sorenstam', u'reaffirm', u'lpga', u'domin']
[u'student', u'reform', u'protest', u'parliament']
[u'coast', u'polic', u'recov', u'bodi', u'woman']
[u'set', u'most', u'pioneer', u'career']
[u'kyi', u'arrest', u'highlight', u'reconcili', u'urgenc']
[u'sweden', u'reject', u'action', u'stockholm', u'base']
[u'affect', u'smoke', u'depend', u'research']
[u'bird', u'strong', u'oriol']
[u'tear', u'anti', u'protest', u'ramp']
[u'tenant', u'remov', u'soil', u'contamin']
[u'time', u'lucki', u'glori', u'grand', u'final']
[u'tiger', u'shock', u'bulldog']
[u'toronto', u'report', u'sar', u'case']
[u'tougher', u'water', u'restrict', u'loom']
[u'toulous', u'stay', u'path', u'doubl']
[u'travel', u'slump', u'bottom', u'star', u'allianc']
[u'late', u'goal', u'auxerr', u'french']
[u'uniform', u'standard', u'assault', u'support']
[u'attack', u'franc', u'secur', u'confer']
[u'open', u'idea', u'north', u'korea', u'crisi']
[u'nistelrooy', u'want', u'kluivert', u'unit']
[u'venus', u'reach', u'fourth', u'round']
[u'wasp', u'thrash', u'gloucest', u'english', u'leagu', u'titl']
[u'william', u'say', u'privaci', u'factor', u'airlin', u'secur']
[u'william', u'silent', u'sydney', u'unit', u'claim']
[u'winter', u'onset', u'herald', u'whale', u'watch', u'season']
[u'women', u'charg', u'polic', u'assault']
[u'woomera', u'auction', u'rais']
[u'activ', u'destroy', u'aborigin', u'sit', u'research']
[u'aborigin', u'census', u'chang', u'accuraci']
[u'academ', u'add', u'weight', u'rehabilit', u'push']
[u'aceh', u'rebel', u'abduct', u'local', u'offici']
[u'ponder', u'expans', u'plan']
[u'agassi', u'moya', u'roll', u'join', u'newcom', u'verkerk']
[u'ord', u'follow', u'strong', u'wall', u'lead']
[u'ansett', u'levi', u'fund', u'secur', u'upgrad', u'labor']
[u'applic', u'lodg', u'buronga', u'supermarket']
[u'vote', u'takeov']
[u'asian', u'firm', u'piggeri']
[u'drown', u'pakistan', u'picnic', u'tragedi']
[u'aussi', u'hope', u'evan', u'tour', u'franc']
[u'australia', u'beat', u'india', u'pakistan', u'crash', u'field']
[u'australia', u'call', u'releas', u'burmes', u'opposit']
[u'australian', u'spender']
[u'aust', u'support', u'review', u'defenc', u'strategi']
[u'award', u'delight', u'fish', u'chip', u'shop', u'owner']
[u'bacon', u'rule', u'bladel', u'governorship']
[u'beachgoer', u'urg', u'track', u'turtl']
[u'beekeep', u'industri', u'abuzz', u'licenc']
[u'blair', u'hint', u'secret', u'file', u'iraq', u'weapon']
[u'blast', u'mastermind', u'face', u'court', u'bali']
[u'blue', u'timmin', u'pivot', u'bailey', u'bench']
[u'blue', u'timmin', u'pivot', u'bolter', u'bailey']
[u'boca', u'fightback', u'draw', u'river']
[u'bodi', u'think', u'miss', u'woman']
[u'bolter', u'bailey', u'shock', u'select']
[u'boundari', u'issu', u'scrutini']
[u'bridg', u'name', u'honour', u'pioneer', u'famili']
[u'briton', u'hodgson', u'foil', u'world', u'record']
[u'build', u'industri', u'soften', u'flat', u'hardest']
[u'burn', u'off', u'reduc', u'fuel']
[u'bush', u'chirac', u'hold', u'meet', u'iraq']
[u'busi', u'plan', u'adelaid', u'darwin', u'rail', u'link', u'revis']
[u'busi', u'sport', u'weekend', u'local', u'club']
[u'chang', u'bushfir', u'manag']
[u'releas', u'mangrov', u'dieback', u'report']
[u'calm', u'return', u'riot']
[u'canadian', u'sar', u'toll', u'rise']
[u'canberra', u'play', u'relay', u'role', u'mar', u'mission']
[u'cape', u'york', u'communiti', u'hous', u'revamp']
[u'carrol', u'expect', u'escap', u'suspens']
[u'cavali', u'sila', u'coach']
[u'chamber', u'defend', u'road', u'upgrad']
[u'chariti', u'launch', u'slum', u'theme', u'park']
[u'children', u'injuri', u'sydney']
[u'hold', u'land', u'studi']
[u'compo', u'report', u'find', u'fraud', u'level']
[u'confer', u'focus', u'feral', u'woe']
[u'congo', u'militia', u'claim', u'kill', u'near', u'bunia']
[u'congreg', u'gather', u'mark', u'queen', u'coron']
[u'council', u'approv', u'block', u'size', u'reduct']
[u'council', u'wooden', u'bridg']
[u'council', u'case', u'share', u'art', u'grant']
[u'court', u'hear', u'council', u'handl', u'petrol', u'station']
[u'cowboy', u'ladder', u'georg', u'defeat']
[u'deadlin', u'pass', u'defenc', u'land']
[u'defenc', u'dept', u'eye', u'action', u'climb', u'death']
[u'dept', u'pledg', u'treatment', u'birkenhead', u'complex']
[u'dfat', u'hold', u'inquiri', u'iraqi', u'document', u'leak']
[u'displac', u'resid', u'angri', u'toxic', u'soil']
[u'request', u'trade', u'halt']
[u'doctor', u'hope', u'lomu', u'kidney', u'search']
[u'doctor', u'work', u'long', u'presid']
[u'downer', u'say', u'iraq', u'intellig']
[u'east', u'gippsland', u'sawmil', u'worker', u'sack']
[u'emot', u'plea', u'win', u'chaplainci', u'fund']
[u'england', u'footbal', u'chief', u'play', u'hotel', u'brawl']
[u'european', u'space', u'mission', u'blast', u'mar']
[u'experiment', u'drug', u'offer', u'colon', u'cancer', u'patient']
[u'player', u'waugh', u'retir']
[u'express', u'seek', u'defenc', u'land']
[u'north', u'council', u'win', u'green', u'award']
[u'govt', u'dismiss', u'carr', u'region', u'airport', u'fear']
[u'fight', u'fergi', u'doesnt', u'rule']
[u'fist', u'film', u'launch']
[u'fitzgibbon', u'celebr', u'blue']
[u'flamengo', u'brazil', u'liedson', u'score']
[u'footbal', u'club', u'welcom', u'region', u'probe']
[u'frankston', u'get', u'life', u'mother', u'murder']
[u'fremantl', u'prison', u'descend', u'honour']
[u'cann', u'kilda', u'cracker', u'winner']
[u'fund', u'alloc', u'hospit']
[u'fund', u'hospit', u'children', u'unit']
[u'fund', u'help', u'bridg', u'transport', u'problem']
[u'gallop', u'call', u'support', u'nyoongah', u'camp', u'closur']
[u'gebrselassi', u'beat', u'return', u'track']
[u'giro', u'victori', u'dream', u'come', u'true', u'simoni']
[u'glori', u'face', u'player', u'exodus']
[u'govt', u'extend', u'reef', u'protect', u'zone']
[u'govt', u'releas', u'reef', u'protect', u'plan']
[u'grain', u'harvest', u'predict', u'question']
[u'green', u'win', u'chase', u'johnson', u'time']
[u'green', u'hold', u'plan', u'law', u'balanc']
[u'hegarti', u'replac', u'injur', u'robbi']
[u'hegarti', u'replac', u'odavi', u'kennedi', u'doubt']
[u'hegarti', u'replac', u'odavi', u'timmin', u'edg', u'anasta']
[u'hird', u'clear', u'ratten', u'sidelin', u'break']
[u'hodg', u'hard', u'blue', u'handl', u'mile']
[u'hoon', u'footbal', u'grind']
[u'hospit', u'reach', u'settlement', u'disabl', u'case']
[u'ponder', u'world', u'game']
[u'indonesia', u'claim', u'rebel', u'kill', u'battl']
[u'indonesia', u'summon', u'envoy', u'sweden', u'base', u'aceh']
[u'inland', u'rail', u'chief', u'challeng', u'deputi']
[u'inquiri', u'find', u'fault', u'nepal', u'tragedi']
[u'inquiri', u'look', u'church', u'child', u'abus', u'claim']
[u'iraq', u'weapon', u'mass', u'destruct']
[u'japanes', u'photograph', u'jail', u'fatal', u'souvenir']
[u'jonah', u'lomu', u'rugbi', u'icon']
[u'kennedi', u'injuri', u'cloud']
[u'king', u'answer', u'charg']
[u'librari', u'claim', u'earliest', u'cook', u'portrait']
[u'littl', u'show', u'wiradjuri', u'heritag', u'report']
[u'llewellyn', u'indemn', u'pledg', u'write']
[u'lobbi', u'group', u'slam', u'reef', u'protect', u'plan']
[u'lobster', u'fisher', u'urg', u'seek', u'vote', u'plan']
[u'mackay', u'prepar', u'tourism', u'boost']
[u'dead', u'hour', u'sieg']
[u'manufactur', u'sector', u'slow']
[u'maori', u'look', u'racial', u'select']
[u'maroon', u'shaki', u'start']
[u'martinez', u'clijster']
[u'mayn', u'share', u'higher', u'posit', u'news']
[u'mayor', u'back', u'airport', u'secur', u'review']
[u'mayor', u'seek', u'drought']
[u'mccartney', u'wind', u'world', u'tour', u'beatl', u'hit']
[u'minist', u'defend', u'airport', u'search', u'power']
[u'montgomeri', u'put', u'extra', u'work', u'open']
[u'montoya', u'win', u'william', u'monaco']
[u'music', u'messag', u'arnhem', u'land', u'school']
[u'muslim', u'rebel', u'start', u'ceasefir', u'philippin']
[u'head', u'criticis', u'region', u'train', u'scheme']
[u'jail', u'recruit', u'staff']
[u'newman', u'hold', u'gordon', u'dover', u'victori']
[u'newman', u'hold', u'gordon', u'victori', u'dover']
[u'taskforc', u'help', u'protect', u'vulner', u'consum']
[u'korea', u'say', u'reprocess', u'near']
[u'chang', u'spain']
[u'clear', u'proof', u'nuclear', u'weapon', u'south', u'korea']
[u'oppn', u'alleg', u'polic', u'fund', u'shortfal']
[u'pacif', u'send', u'mix', u'weather', u'signal', u'forecast']
[u'parliament', u'debat', u'prostat', u'fund']
[u'parliament', u'honour', u'queen', u'coron', u'anniversari']
[u'parri', u'council', u'meet', u'kelli', u'futur']
[u'pasminco', u'ask', u'break']
[u'patrol', u'address', u'drunken', u'homeless']
[u'perec', u'train', u'hamper', u'sciatica']
[u'perri', u'hold', u'second', u'success', u'victori']
[u'pilot', u'unscath', u'emerg', u'land']
[u'reject', u'region', u'airport', u'secur', u'boost']
[u'polic', u'defend', u'hunter', u'sieg', u'handl']
[u'polic', u'issu', u'safeti', u'remind', u'teen', u'driver']
[u'polic', u'memori', u'unveil']
[u'polic', u'ultralight', u'crash', u'victim']
[u'polic', u'negoti', u'call', u'resolv', u'disput']
[u'polic', u'probe', u'alleg', u'leak', u'workplac']
[u'polic', u'probe', u'arm', u'hold']
[u'polic', u'releas', u'liken', u'flash', u'suspect']
[u'polic', u'seek', u'help', u'hunt', u'bandit']
[u'polic', u'seek', u'detail']
[u'polic', u'thwart', u'nudist', u'picnic', u'london']
[u'polic', u'unhappi', u'teen', u'behaviour']
[u'polic', u'wait', u'interview', u'ship', u'crew']
[u'poll', u'put', u'pressur', u'crean']
[u'poulter', u'pace', u'catch']
[u'premier', u'cabinet', u'head', u'jindabyn']
[u'python', u'quot', u'spark', u'media', u'stoush']
[u'govt', u'reconsid', u'sugar', u'law']
[u'remain', u'sar', u'watch']
[u'oppn', u'want', u'budget', u'rein', u'balloon']
[u'question', u'polic', u'access', u'babi', u'record']
[u'ranger', u'need', u'reinforc', u'say', u'mcleish']
[u'ratten', u'sidelin', u'break']
[u'fisher', u'angri', u'reef', u'green', u'zone', u'plan']
[u'record', u'crowd', u'ferri']
[u'cross', u'help', u'deliv', u'messag', u'iraq']
[u'regim', u'chang', u'agenda', u'north', u'korea']
[u'region', u'airport', u'like', u'casualti', u'secur']
[u'research', u'target', u'super', u'vaccin']
[u'robbi', u'rule']
[u'robbi', u'rule', u'timmin', u'edg', u'anasta']
[u'samudra', u'trial', u'adjourn']
[u'saudi', u'shoot', u'possibl', u'link', u'riyadh', u'bomb']
[u'wast', u'dump', u'stoush', u'heat']
[u'seagul', u'ladder', u'south', u'logan']
[u'senat', u'claim', u'region', u'airport', u'safe']
[u'shire', u'talk', u'council', u'merger', u'minist']
[u'skaif', u'name', u'owner', u'holden', u'race', u'team']
[u'sorenstam', u'return', u'triumph', u'lpga', u'tour']
[u'spin', u'doctor', u'rush', u'cure', u'indian', u'cricket']
[u'sptafl']
[u'steal', u'good', u'identifi']
[u'stop', u'work', u'meet', u'impact', u'illawarra']
[u'strike', u'crippl', u'industri', u'bosch', u'manag']
[u'student', u'formul', u'fee', u'battl', u'plan']
[u'submiss', u'flow', u'bushfir', u'probe']
[u'detain', u'anti', u'govt', u'clash']
[u'injur', u'kill', u'crackdown']
[u'take', u'rangoon', u'aust', u'demand', u'releas']
[u'takeov', u'wont', u'affect', u'rolleston', u'project', u'xstrata']
[u'talk', u'equit', u'council', u'rat']
[u'tascoss', u'welcom', u'accc', u'consum', u'protect']
[u'forestri', u'bodi', u'complaint', u'uphold']
[u'govt', u'urg', u'look', u'possibl']
[u'task', u'forc', u'form', u'water', u'model']
[u'tassi', u'cadet', u'win', u'award']
[u'teen', u'die', u'soccer', u'match']
[u'teen', u'injur', u'tweed', u'blast']
[u'thug', u'cost', u'england', u'euro', u'place', u'sven']
[u'transport', u'dept', u'focus', u'contract']
[u'trial', u'alleg', u'bali', u'bomb', u'mastermind', u'open']
[u'trio', u'face', u'court', u'brawl']
[u'trucki', u'die', u'road', u'crash']
[u'tsvangirai', u'arrest', u'harar']
[u'tsvangirai', u'releas', u'protest', u'arrest']
[u'chief', u'reject', u'fund', u'bonus', u'union']
[u'union', u'lament', u'merger', u'plan', u'scrap']
[u'resum', u'month', u'food', u'ration', u'iraq']
[u'scrap', u'iraq', u'confer']
[u'militari', u'seek', u'busi', u'support']
[u'loosen', u'media', u'ownership', u'rein']
[u'utrecht', u'thrash', u'feyenoord', u'lift', u'dutch']
[u'venus', u'capriati', u'mull', u'shock', u'defeat']
[u'vice', u'chancellor', u'reject', u'plan', u'educ', u'chang']
[u'victoria', u'offer', u'reward', u'murder']
[u'villeneuv', u'cost', u'kimi', u'victori', u'denni']
[u'violent', u'anti', u'protest', u'swiss', u'citi']
[u'warn', u'issu', u'storm', u'bear', u'taiwan']
[u'warn', u'shot', u'fire', u'korean', u'confront']
[u'welsh', u'valley', u'time', u'forget', u'emerg', u'dark']
[u'west', u'indi', u'blast', u'wicket']
[u'wheat', u'virus', u'quarantin', u'program', u'cancel']
[u'caution', u'china', u'sar', u'case', u'declin']
[u'workshop', u'focus', u'improv', u'town']
[u'work', u'start', u'leonora', u'desalin', u'plant']
[u'yarrowlumla', u'fight', u'job', u'servic']
[u'yoko', u'refus', u'chang', u'lennon', u'mccartney', u'order']
[u'zimbabw', u'alert', u'activist', u'gear', u'protest']
[u'suspend', u'wagin', u'radio', u'licenc']
[u'aborigin', u'communiti', u'boost', u'literaci', u'level']
[u'totalcar', u'worker', u'job', u'limbo']
[u'raid', u'home', u'capit']
[u'agforc', u'cautious', u'growth', u'outlook']
[u'agenc', u'accus', u'promis', u'hunger']
[u'airport', u'secur', u'boost', u'expens', u'council']
[u'albani', u'host', u'diabet', u'trial']
[u'ord', u'drag', u'blue', u'chip']
[u'halt', u'trade']
[u'amoruso', u'admit', u'ranger', u'sojourn']
[u'anonym', u'donor', u'answer', u'swan', u'fund']
[u'control', u'scheme', u'win', u'green', u'award']
[u'anti', u'terror', u'head', u'prais', u'effort', u'track']
[u'appeal', u'bridgetown', u'south', u'west']
[u'ardil', u'coach', u'tokyo', u'verdi']
[u'armi', u'crash', u'inquiri', u'inconclus']
[u'asean', u'brainstorm', u'tactic', u'deal', u'terror']
[u'august', u'date', u'desalin', u'plant', u'work']
[u'aussi', u'ogilvi', u'qualifi', u'open']
[u'australia', u'work', u'exercis']
[u'australia', u'hard', u'stop', u'world', u'eal']
[u'award', u'recognis', u'nurs', u'effort']
[u'bali', u'offici', u'ask', u'lift', u'travel', u'warn']
[u'basslink', u'electr', u'doubt', u'cost', u'overrun']
[u'basslink', u'project', u'blow', u'million']
[u'bayern', u'lose', u'hope', u'makaay']
[u'beckham', u'kidnap', u'trial', u'throw', u'court']
[u'beckham', u'plea', u'england', u'hooligan']
[u'beekeep', u'beecroft', u'peninsula', u'repriev']
[u'belgian', u'minist', u'campaign', u'francorchamp']
[u'bell', u'renew', u'call', u'age', u'care', u'facil']
[u'reward', u'offer', u'clue', u'bendigo', u'murder']
[u'boomer', u'play', u'czech', u'republ']
[u'brazin', u'bid', u'privat']
[u'build', u'approv', u'rise']
[u'burma', u'junta', u'say', u'safe']
[u'burrup', u'peninsula', u'get', u'scale', u'methanol', u'plant']
[u'bush', u'arriv', u'egypt', u'peac', u'talk']
[u'bush', u'launch', u'mideast', u'peac', u'mission']
[u'bush', u'mubarak', u'begin', u'summit', u'talk']
[u'cafe', u'owner', u'rebuild', u'blaze']
[u'carrol', u'clear', u'battl', u'blue']
[u'cavali', u'confirm', u'sila', u'coach']
[u'church', u'dioces', u'reject', u'femal', u'priest']
[u'cipollini', u'definit', u'tour', u'franc']
[u'citizenship', u'philippin', u'fugit']
[u'coat', u'arm', u'theft', u'trial', u'place']
[u'committe', u'recommend', u'freehold', u'packag']
[u'commonwealth', u'game', u'boss', u'deni', u'power']
[u'compani', u'criticis', u'tardi', u'recal']
[u'complementari', u'healthcar', u'council', u'reject', u'backyard']
[u'concern', u'air', u'feder', u'budget', u'respons']
[u'costello', u'happi', u'commit', u'deputi', u'role']
[u'costello', u'aspir']
[u'council', u'hear', u'commerci', u'develop', u'plan']
[u'councillor', u'sport', u'centr', u'master', u'plan']
[u'council', u'set', u'asid', u'green', u'fund']
[u'court', u'hear', u'submiss', u'elliott', u'penalti']
[u'cowboy', u'pair', u'origin']
[u'cricket', u'commemor', u'cronj', u'death']
[u'crock', u'england', u'face', u'serb', u'test']
[u'cwealth', u'warn', u'cost', u'wast', u'dump', u'fight']
[u'cycl', u'world', u'rank']
[u'dairi', u'farmer', u'milk', u'farm', u'gate']
[u'dairi', u'farmer', u'protest', u'factori', u'plan']
[u'david', u'jone', u'chairman', u'fall', u'sword']
[u'daylight', u'rape', u'victim', u'claim', u'wit', u'ignor']
[u'dead', u'control', u'devic', u'fail', u'safe', u'waterfal']
[u'debt', u'hit', u'deficit', u'peg']
[u'delay', u'water', u'plan', u'review']
[u'democrat', u'criticis', u'ruddock', u'method']
[u'detent', u'troop', u'persian', u'gulf']
[u'chairman', u'foodchain', u'store']
[u'doctor', u'agre', u'medic', u'indemn', u'cover']
[u'dont', u'lose', u'snooz', u'portug', u'activist']
[u'driver', u'prais', u'long', u'weekend', u'effort']
[u'drought', u'deadlin', u'approach']
[u'guerrouj', u'join', u'freeman', u'gateshead', u'meet']
[u'elliott', u'submiss', u'continu', u'tomorrow']
[u'festiv', u'delv', u'realm', u'hope', u'fear']
[u'fingleton', u'deni', u'accept', u'critic']
[u'formula', u'young', u'lion', u'claw']
[u'dead', u'injur', u'colombia', u'blast', u'armi']
[u'franc', u'zidan', u'confeder']
[u'frenchman', u'arrest', u'suicid', u'attack']
[u'french', u'open', u'quot']
[u'funer', u'honour', u'polic', u'mountain']
[u'leader', u'unit', u'stand', u'iraq']
[u'game', u'boss', u'deni', u'power', u'rein']
[u'glori', u'fan', u'brave', u'rain', u'applaud', u'player']
[u'govt', u'accus', u'dalli', u'sydney', u'rail', u'link']
[u'govt', u'fund', u'help', u'bridg', u'road', u'woe']
[u'grace', u'bros', u'close', u'bathurst', u'store']
[u'grain', u'committe', u'report', u'defend']
[u'group', u'consid', u'shark', u'protect', u'scheme']
[u'group', u'highlight', u'high', u'alcohol', u'content', u'sale']
[u'gunner', u'target', u'emerton', u'kewel', u'report']
[u'defend', u'bailey', u'choic']
[u'defend', u'bailey', u'select']
[u'hall', u'fame', u'coach', u'larri', u'brown', u'spark', u'piston']
[u'hansen', u'delv', u'deep', u'reserv', u'lose', u'star']
[u'harrigan', u'control', u'origin']
[u'highway', u'plan', u'oppon']
[u'hop', u'rise', u'treatment', u'diseas']
[u'howard', u'stay']
[u'howard', u'stay', u'costello', u'vow', u'support']
[u'hussain', u'save', u'career', u'say', u'harmison']
[u'indemn', u'cost', u'chase', u'doctor', u'babi']
[u'indigen', u'protest', u'plan', u'roadwork']
[u'indonesian', u'soldier', u'trial', u'aceh', u'beat']
[u'indoor', u'site', u'seek', u'equestrian', u'event']
[u'industri', u'accept', u'wheat', u'streak', u'virus']
[u'insur', u'withdraw', u'liabil', u'cover', u'landcar']
[u'rat', u'expect', u'remain', u'unchang']
[u'iron', u'blow', u'lopez', u'away', u'fiji', u'final']
[u'iron', u'good', u'powel', u'fiji']
[u'jacklin', u'appoint', u'rest', u'world', u'captain']
[u'jadeja', u'return', u'cricket', u'bang']
[u'kennedi', u'confid', u'origin', u'fit']
[u'kidney', u'diseas', u'rat', u'highlight', u'need']
[u'king', u'beat', u'charg']
[u'kiwi', u'wright', u'plot', u'black', u'cap', u'downfal']
[u'kuerten', u'samba', u'rhythm']
[u'labor', u'leadership', u'spill', u'grow', u'like']
[u'launceston', u'council', u'approv', u'cinema', u'complex']
[u'liber', u'welcom', u'howard', u'decis', u'stay']
[u'light', u'plane', u'crash', u'near', u'byron']
[u'mackenroth', u'pledg', u'surplus', u'springborg', u'doubt']
[u'major', u'upgrad', u'higgin', u'shop', u'centr']
[u'citi', u'celebr', u'return', u'europ']
[u'fight', u'life', u'machet', u'attack']
[u'injur', u'fall']
[u'face', u'court', u'bash', u'murder']
[u'mccartney', u'honour', u'bali', u'dead']
[u'mclaren', u'boss', u'expect', u'tough', u'time', u'canada']
[u'medic', u'research', u'tout', u'bigger']
[u'meet', u'push', u'fast', u'train', u'fine', u'tune']
[u'melbourn', u'rat', u'rise']
[u'minist', u'offer', u'ferri', u'assur']
[u'mix', u'respons', u'draft', u'reef', u'plan']
[u'moratorium', u'seek', u'murray', u'darl', u'irrig', u'work']
[u'effort', u'seek', u'youth', u'region', u'area']
[u'reef', u'plan', u'concern']
[u'navi', u'rescu', u'injur', u'rower']
[u'stage', u'season', u'game', u'china']
[u'face', u'name', u'aussi', u'swim', u'team']
[u'hope', u'neglect', u'hors']
[u'medic', u'centr', u'open']
[u'nickel', u'deposit', u'drill', u'start']
[u'nicki', u'butt', u'quiz', u'nightclub', u'assault', u'claim']
[u'kidd', u'star', u'guard', u'face', u'final']
[u'word', u'shelv', u'retir', u'plan']
[u'govt', u'consid', u'lesbian', u'reform']
[u'paton', u'world', u'team']
[u'pedestrian', u'kill', u'tasmania', u'north', u'west']
[u'perri', u'eye', u'chicago', u'confid']
[u'perth', u'airport', u'taxi', u'doubl']
[u'perth', u'guilti', u'babi', u'shake', u'case']
[u'picasso', u'work', u'lose', u'subway']
[u'plan', u'protect', u'geraldton', u'foreshor']
[u'polic', u'enjoy', u'long', u'weekend', u'relat', u'calm']
[u'polic', u'issu', u'warn', u'licens']
[u'polic', u'memori', u'unveil']
[u'polic', u'water', u'cannon', u'cool', u'protest']
[u'politician', u'urg', u'interven', u'doctor', u'woe']
[u'prosecutor', u'hand', u'mukhla', u'indict']
[u'protest', u'voic', u'concern', u'burmes', u'opposit']
[u'budget', u'deficit', u'better', u'expect']
[u'race', u'club', u'move', u'race', u'meet']
[u'rann', u'reject', u'wast', u'dump', u'threat']
[u'riverina', u'council', u'join', u'shire', u'associ']
[u'rivkin', u'make', u'ditch', u'appeal', u'avoid', u'jail']
[u'rockhampton', u'consid', u'solut']
[u'rocki', u'ride', u'charter', u'boat', u'oper']
[u'rolleston', u'mine', u'leas', u'grant']
[u'meat', u'readi', u'export']
[u'ruddock', u'discret', u'timores', u'refuge']
[u'sack', u'sawmil', u'worker', u'seek', u'compo']
[u'govt', u'respond', u'develop', u'concern']
[u'govt', u'welcom', u'road', u'safeti', u'law']
[u'independ', u'support', u'murray', u'levi', u'plan']
[u'second', u'stone', u'appeal', u'begin', u'nigeria']
[u'senior', u'member', u'releas', u'prison']
[u'shark', u'mother', u'hit', u'hole']
[u'shire', u'speak', u'boundari', u'concern']
[u'visitor', u'help', u'cancer', u'treatment']
[u'simoni', u'challeng', u'armstrong', u'ride', u'giro']
[u'slide', u'scale', u'fin', u'rich', u'govt']
[u'smelter', u'project', u'port', u'piri', u'review']
[u'social', u'snapshot', u'show', u'young', u'popul']
[u'sorenstam', u'prime', u'major', u'form']
[u'specul', u'mount', u'ferri', u'servic']
[u'sptnrl']
[u'spur', u'look', u'jump', u'rusti', u'net', u'final']
[u'korea', u'fire', u'warn', u'shot']
[u'straeuli', u'say', u'springbok', u'better', u'home']
[u'strike', u'action', u'threaten', u'offer']
[u'student', u'geographi', u'skill', u'pay']
[u'studi', u'focus', u'communic', u'technolog']
[u'summit', u'address', u'indigen', u'issu']
[u'survey', u'highlight', u'skill', u'shortag']
[u'swan', u'boost', u'anonym', u'donat']
[u'swan', u'deni', u'player', u'cut']
[u'swan', u'seek', u'futur', u'fund']
[u'sydney', u'wharv', u'shut', u'union', u'leader']
[u'tariff', u'cut', u'mean', u'loss', u'textil', u'council']
[u'east', u'coast', u'record', u'autumn', u'fall']
[u'tasmania', u'examin', u'bioherbicid', u'option']
[u'textil', u'worker', u'protest', u'plan', u'tariff', u'cut']
[u'thousand', u'attend', u'funer', u'special', u'chief']
[u'tongan', u'king', u'launch', u'curb', u'court']
[u'toowoomba', u'bakeri', u'close', u'door']
[u'tough', u'sexual', u'offenc', u'law', u'introduc']
[u'tuna', u'manag', u'plan', u'move', u'closer']
[u'turinui', u'doubt', u'ireland', u'clash']
[u'injur', u'istanbul', u'bomb', u'attack']
[u'kill', u'ultra', u'light', u'crash']
[u'ullrich', u'test', u'tour', u'form', u'home', u'event']
[u'envoy', u'visit', u'burma']
[u'union', u'caution', u'sale']
[u'congress', u'examin', u'iraq', u'weapon', u'intellig']
[u'soldier', u'kill', u'iraqi', u'checkpoint']
[u'lib', u'question', u'speed', u'camera', u'revenu']
[u'opposit', u'air', u'speed', u'camera', u'revenu', u'concern']
[u'viduka', u'stay', u'claim', u'leed', u'supremo']
[u'visit', u'academ', u'voic', u'terror', u'view']
[u'governor', u'address', u'western', u'wise', u'network']
[u'govt', u'pursu', u'close', u'aborigin', u'camp']
[u'watt', u'athen', u'comeback']
[u'worker', u'shun', u'union']
[u'weaken', u'irish', u'remain', u'confid', u'aussi']
[u'wesfarm', u'lumley', u'insur', u'group']
[u'whale', u'watch', u'season']
[u'windi', u'batsmen', u'hand', u'rat', u'boost']
[u'woodward', u'confid', u'ahead', u'tour']
[u'work', u'begin', u'health', u'clinic']
[u'workshop', u'focus', u'youth', u'scheme']
[u'zimbabwean', u'squad', u'polit', u'vet', u'claim']
[u'injur', u'pari', u'explos']
[u'kill', u'spanish', u'train', u'collis']
[u'aborigin', u'outstat', u'neglect', u'say']
[u'accid', u'inquiri', u'urg', u'safeti', u'review']
[u'accus', u'testifi', u'amrozi', u'trial']
[u'centuri', u'everyday', u'eye']
[u'suprem', u'court', u'give', u'firework', u'thumb']
[u'agassi', u'moya', u'serena', u'storm', u'semi']
[u'age', u'care', u'centr', u'face', u'uncertainti']
[u'forc', u'receiv', u'bomb']
[u'alston', u'busi', u'leader', u'vouch', u'elliott']
[u'american', u'martin', u'nab', u'european', u'literari', u'prize']
[u'amnesti', u'seek', u'honesti', u'tiananmen', u'figur']
[u'jesus', u'say', u'peopl', u'boofhead']
[u'anthoni', u'welcom', u'leadership', u'decis']
[u'dead', u'amman', u'tanker']
[u'injur', u'pari', u'blast']
[u'atsic', u'chief', u'label', u'mainstream', u'media', u'arrog']
[u'atsic', u'discuss', u'paper', u'close', u'complet']
[u'aussi', u'replac', u'mcgeechan', u'scottish']
[u'aussi', u'dollar', u'soar', u'european', u'trade']
[u'australian', u'command', u'honour', u'iraq', u'servic']
[u'australian', u'doctor', u'trial', u'vaccin']
[u'australian', u'mine', u'sector', u'go', u'onlin']
[u'baildon', u'unhappi', u'budget']
[u'banana', u'industri', u'meet', u'cairn']
[u'banana', u'industri', u'meet', u'townsvill']
[u'bank', u'drag', u'aussi', u'market']
[u'bash', u'victim', u'face', u'lawsuit', u'crash']
[u'baxter', u'detaine', u'strike']
[u'biscuit', u'maker', u'tempt', u'settlement']
[u'blix', u'brief', u'latest', u'inspect', u'result']
[u'brisban', u'citi', u'council', u'present', u'nonsens', u'budget']
[u'brother', u'take', u'stand', u'amrozi', u'trial']
[u'brown', u'say', u'costello', u'better', u'leader', u'howard']
[u'buckley', u'call', u'return', u'state', u'origin']
[u'budget', u'bypass', u'crown', u'thorn', u'fund']
[u'budget', u'deliv', u'sport', u'boost']
[u'budget', u'offer', u'health', u'boost']
[u'budget', u'offer', u'surpris']
[u'bulldog', u'norton', u'travel', u'north']
[u'bureau', u'warn', u'wild', u'weather', u'adelaid']
[u'bush', u'arab', u'leader', u'agre', u'peac', u'move']
[u'bush', u'jordan', u'peac', u'summit']
[u'bush', u'meet', u'leader', u'ahead', u'summit']
[u'bush', u'meet', u'mideast', u'leader', u'discuss', u'peac', u'roadmap']
[u'bush', u'prepar', u'meet', u'middl', u'east', u'leader']
[u'bush', u'vers', u'pick', u'rail', u'rhythm']
[u'rate', u'freez', u'help', u'drought', u'stricken']
[u'campaign', u'urg', u'basslink', u'plan', u'scrap']
[u'campaign', u'address', u'stormwat']
[u'campaign', u'educ', u'public', u'dengu', u'risk']
[u'carr', u'reform', u'threat', u'anger', u'council']
[u'case', u'keep', u'virus', u'locat', u'secret']
[u'ceremoni', u'honour', u'medal', u'recipi']
[u'cherri', u'ventur', u'declar', u'danger']
[u'chirac', u'put', u'australia', u'trip']
[u'claim', u'wine', u'industri', u'tough']
[u'clark', u'call', u'unit', u'fight', u'nativ', u'titl']
[u'committe', u'manag', u'jurien', u'jetti']
[u'compani', u'announc']
[u'concern', u'air', u'vote', u'count']
[u'concern', u'delay', u'polyclin', u'decis']
[u'concern', u'rais', u'basslink', u'power', u'cost']
[u'council', u'hear', u'defenc', u'land', u'concern']
[u'council', u'probe', u'altern', u'energi', u'technolog']
[u'council', u'seek', u'airport', u'studi']
[u'council', u'want', u'fifth', u'warrnambool', u'primari', u'school']
[u'countri', u'fail', u'kyoto', u'agreement']
[u'crow', u'nurs', u'injur', u'player', u'health']
[u'csiro', u'begin', u'replant', u'virus', u'scare']
[u'csiro', u'deni', u'sell', u'ship', u'dirt', u'cheap']
[u'democrat', u'court', u'nativ', u'titl', u'process']
[u'devonport', u'make', u'bass', u'strait', u'ferri']
[u'doctor', u'group', u'merg']
[u'dominican', u'republ', u'clinch', u'miss', u'univers']
[u'dont', u'judg', u'costello', u'smirk', u'brother', u'say']
[u'doubt', u'cast', u'work', u'hour', u'review']
[u'downer', u'say', u'solomon', u'possibl']
[u'driver', u'educ', u'school', u'face', u'uncertain', u'futur']
[u'dunkin', u'give', u'month', u'rmit', u'cash', u'woe']
[u'england', u'itali', u'form', u'ahead', u'euro']
[u'timor', u'welcom', u'perman', u'resid', u'move']
[u'fall', u'park', u'hospit']
[u'farm', u'famili', u'number', u'declin']
[u'fatal', u'gunshot', u'dungog', u'sieg', u'self', u'inflict']
[u'femal', u'scorer', u'histori', u'lord']
[u'firm', u'consolid', u'servic']
[u'forb', u'councillor', u'local', u'govt', u'role']
[u'freeman', u'expect', u'toll']
[u'end', u'pledg', u'rebuild', u'iraq']
[u'expect', u'increas', u'slight']
[u'tell', u'beazley']
[u'govt', u'resist', u'call', u'iraq', u'intellig', u'probe']
[u'greenspan', u'play', u'deflat', u'talk']
[u'green', u'govt', u'lie', u'council', u'amalgam']
[u'group', u'budget', u'blue']
[u'growth', u'target', u'despit', u'drought']
[u'harri', u'delv', u'thoma', u'wale', u'squad']
[u'health', u'winner', u'budget']
[u'health', u'servic', u'urg', u'review', u'anaesthetist']
[u'hobart', u'mayor', u'call', u'realist', u'approach', u'ferri']
[u'hope', u'special', u'dictionari']
[u'hospit', u'store', u'brain', u'permiss']
[u'hoteli', u'ponder', u'futur']
[u'howard', u'defend', u'cellar']
[u'howard', u'face', u'student', u'grill']
[u'hussain', u'seek', u'cast', u'second', u'zimbabw', u'test']
[u'atheist', u'pastor', u'declar']
[u'incom', u'shire', u'presid', u'say', u'state', u'relationship']
[u'india', u'get', u'relief', u'dead', u'heatwav']
[u'indigen', u'corpor', u'lament', u'water', u'woe']
[u'indonesia', u'close', u'aceh', u'water', u'foreign', u'ship']
[u'insur', u'problem', u'stop', u'sid', u'program']
[u'rat', u'remain', u'hold']
[u'investor', u'bank', u'announc']
[u'jindabyn', u'cabinet', u'meet', u'prove', u'posit']
[u'johnson', u'wait', u'test', u'chanc']
[u'judg', u'consid', u'elliott', u'penalti']
[u'juri', u'expect', u'consid', u'fingleton', u'verdict', u'today']
[u'kennedi', u'tip', u'overcom', u'hamstr', u'injuri']
[u'kewel', u'commit', u'leed']
[u'king', u'brother', u'face', u'court', u'fraud', u'charg']
[u'kiwi', u'build', u'cruis', u'missil']
[u'labor', u'propos', u'workplac', u'relat', u'chang']
[u'assess', u'rural', u'road', u'complaint']
[u'liber', u'threaten', u'quit', u'nyungar', u'camp']
[u'lightn', u'blame', u'refineri']
[u'lioness', u'serena', u'savag', u'mauresmo']
[u'lose', u'bike', u'rider', u'cool']
[u'lucki', u'save', u'unit']
[u'main', u'point', u'peac', u'roadmap']
[u'face', u'charg', u'court']
[u'jail', u'bash', u'cell']
[u'east', u'timores', u'leav', u'limbo', u'bishop']
[u'mayor', u'happi', u'carr', u'meet']
[u'melbourn', u'shoot', u'plan', u'attack', u'polic']
[u'middl', u'east', u'summit', u'start', u'jordan']
[u'minist', u'meet', u'vice', u'chancellor', u'feder']
[u'mix', u'respons', u'state', u'budget']
[u'mori', u'cap', u'fine', u'week', u'player', u'player', u'award']
[u'mundin', u'titl', u'fight', u'ahead']
[u'mundin', u'second', u'chanc', u'world', u'belt']
[u'nat', u'agricultur', u'school']
[u'natwa']
[u'navi', u'near', u'rower']
[u'set', u'season', u'game', u'pari', u'barcelona']
[u'judg', u'timor', u'justic', u'boost']
[u'lord', u'mayor', u'bring', u'brisban', u'budget']
[u'resort', u'announc', u'mackay', u'region']
[u'stand', u'lift', u'crowd', u'capac', u'adelaid', u'oval']
[u'tourism', u'strategi', u'focus', u'bunya', u'countri']
[u'korea', u'link', u'south', u'korea', u'drug', u'haul']
[u'evid', u'drink', u'spike', u'bathurst', u'parti']
[u'govt', u'decid', u'rail', u'line', u'upgrad']
[u'oppn', u'propos', u'litter', u'collect', u'punish']
[u'need', u'extra', u'hospit', u'say', u'minist']
[u'close', u'high', u'commiss', u'typhoid', u'scare']
[u'omnimedia', u'expect', u'stewart', u'face', u'crimin', u'charg']
[u'onlin', u'boost', u'mine', u'sector']
[u'parliament', u'welcom', u'iraq', u'command', u'home']
[u'pasminco', u'meet', u'govt', u'discuss', u'assist']
[u'disput', u'halt', u'beer', u'product']
[u'petrol', u'station', u'undergo', u'random', u'check']
[u'pistol', u'club', u'fire', u'handgun', u'polici']
[u'plan', u'west', u'servic']
[u'say', u'chanc', u'costello', u'rift']
[u'polic', u'hunt', u'melbourn', u'gunman']
[u'policeman', u'plead', u'guilti', u'assault', u'charg']
[u'policeman', u'surpris', u'rape', u'sentenc', u'appeal', u'dismiss']
[u'polic', u'suspici', u'crack', u'lynn', u'window']
[u'polic', u'probe', u'alic', u'assault']
[u'polic', u'raid', u'link', u'iranian', u'group']
[u'possibl', u'court', u'link', u'melbourn', u'shoot']
[u'possibl', u'flight', u'spark', u'secur', u'probe']
[u'public', u'urg', u'wool', u'special']
[u'chief', u'magistr', u'convict']
[u'chief', u'magistr', u'jail', u'plan', u'appeal']
[u'race', u'club', u'reappli', u'meet', u'melbourn']
[u'rail', u'crash', u'train', u'guard', u'defend', u'poor', u'recal']
[u'rann', u'seek', u'support', u'final', u'outsid', u'melbourn']
[u'region', u'suggest', u'joint', u'fund', u'airport', u'secur']
[u'report', u'prepar', u'ultralight', u'fatal']
[u'report', u'highlight', u'fall', u'popul']
[u'research', u'link', u'mole', u'melanoma', u'risk']
[u'restaurateur', u'plead', u'guilti', u'sell', u'taint', u'pork']
[u'restrict', u'lift', u'canberra', u'csiro']
[u'retail', u'employ', u'drop', u'melbourn']
[u'rise', u'name', u'garden', u'citi']
[u'rotari', u'award', u'honour', u'unesco', u'head']
[u'rowl', u'go', u'onlin', u'potter', u'launch']
[u'govt', u'reject', u'develop', u'hold', u'claim']
[u'govt', u'ministeri', u'offic']
[u'opposit', u'attack', u'budget']
[u'sculli', u'talk', u'road', u'tamworth']
[u'slug', u'enlist', u'barnacl', u'fight']
[u'secker', u'back', u'leadership']
[u'senat', u'oppos', u'nation', u'water', u'right', u'trade']
[u'shire', u'oppos', u'boundari', u'chang']
[u'shire', u'drainag', u'channel', u'concern']
[u'shirvington', u'finish', u'fifth', u'montgomeri']
[u'south', u'african', u'montgomeri', u'ban', u'shove']
[u'stone', u'case', u'adjourn', u'nigeria']
[u'strike', u'worker', u'agre', u'meet', u'union']
[u'studi', u'focus', u'galaxi', u'origin']
[u'supercomput', u'help', u'preserv', u'water']
[u'support', u'claim', u'inquiri', u'grow']
[u'swiss', u'polic', u'protest', u'arrest']
[u'talk', u'focus', u'tackl', u'wheat', u'virus']
[u'tamil', u'tiger', u'reject', u'lanka', u'compromis']
[u'senat', u'reject', u'airport', u'secur', u'claim']
[u'taxpay', u'foot', u'cabl']
[u'thoma', u'return', u'home', u'charg']
[u'senior', u'communist', u'parti', u'member', u'guilti']
[u'train', u'guard', u'tell', u'waterfal', u'inquest', u'didnt']
[u'turinui', u'clear', u'play', u'ireland', u'hero', u'ogara', u'absent']
[u'turin', u'warm', u'winter', u'game']
[u'turtl', u'join', u'grazier', u'record', u'discoveri']
[u'convict', u'sleeper', u'cell', u'trial']
[u'parliament', u'probe', u'iraq', u'claim']
[u'uncertainti', u'green', u'project']
[u'uniform', u'legisl', u'urg', u'smoke', u'ban']
[u'inspector', u'rout', u'iraq', u'investig']
[u'unit', u'hint', u'beckham', u'head', u'barcelona']
[u'warn', u'burma', u'kyi', u'detent']
[u'pilot', u'dementia', u'diagnosi', u'program']
[u'vaniti', u'save', u'politician', u'kidnap']
[u'verkerk', u'serv', u'dutch', u'treat', u'pari']
[u'wont', u'chang', u'poll', u'stanc']
[u'offer', u'assist', u'timores', u'asylum', u'seeker']
[u'govt', u'consid', u'dairi', u'inquiri', u'idea']
[u'wast', u'dump', u'heat']
[u'water', u'reform', u'need', u'state', u'support', u'say', u'anderson']
[u'weighbridg', u'worker', u'protest', u'shift', u'arrang']
[u'govt', u'approach', u'seek', u'oyster', u'industri']
[u'windi', u'aim', u'maintain', u'win', u'form']
[u'woman', u'accus', u'seri', u'attack']
[u'wood', u'readi', u'titl', u'defenc', u'olympia', u'field']
[u'youth', u'refug', u'move', u'robin', u'hill', u'site']
[u'zabel', u'pip', u'ogradi', u'tour', u'germani', u'stage']
[u'zimbabw', u'polic', u'tear', u'demonstr']
[u'accordian', u'crime', u'threat', u'legal', u'digniti']
[u'set', u'green', u'prioriti']
[u'encourag', u'transport', u'altern']
[u'action', u'bus', u'road', u'negoti']
[u'action', u'need', u'take', u'murray', u'say', u'expert']
[u'activist', u'sentenc', u'jail']
[u'airport', u'secur', u'inquiri', u'launch']
[u'leadership', u'challeng', u'intensifi']
[u'alston', u'want', u'year', u'news', u'audit']
[u'trade', u'suspens', u'extend']
[u'ancient', u'craft', u'show', u'latest', u'exhibit']
[u'antarct', u'treati', u'rule', u'environment']
[u'anti', u'like', u'increas', u'crime', u'shooter']
[u'appeal', u'fail', u'accus', u'murder']
[u'atsic', u'pencil', u'elect', u'date']
[u'audit', u'unearth', u'offens', u'public', u'group']
[u'australia', u'william', u'coach', u'scotland']
[u'launch', u'casual', u'load', u'test', u'case']
[u'beatti', u'welcom', u'fund', u'overtur', u'sugar']
[u'beazley', u'backer', u'quit', u'labor', u'post']
[u'heroin', u'haul', u'melbourn']
[u'blair', u'defend', u'iraq', u'intellig']
[u'blue', u'emerg', u'origin', u'squad']
[u'bodi', u'think', u'miss']
[u'boomer', u'czech', u'republ']
[u'bronco', u'risk', u'fine', u'drop']
[u'burk', u'aim', u'leadership']
[u'driver', u'accept', u'rise']
[u'bush', u'promis', u'troop']
[u'button', u'get', u'canada', u'ahead']
[u'cape', u'york', u'fund', u'probe']
[u'fast', u'rail', u'line', u'duplic']
[u'lower', u'highway', u'speed', u'limit']
[u'mooloolah', u'river', u'mouth', u'dredg']
[u'rethink', u'famili', u'welfar', u'polici']
[u'canberra', u'keep', u'watch', u'water', u'usag']
[u'caution', u'urg', u'road', u'field']
[u'chepchumba', u'contest', u'posit', u'drug', u'test']
[u'clark', u'realist', u'open', u'hop']
[u'classroom', u'need', u'improv']
[u'clean', u'continu', u'adelaid', u'storm']
[u'concern', u'villag', u'yangtz', u'river', u'dike']
[u'concern', u'rais', u'law', u'jail', u'fingleton']
[u'coria', u'meet', u'verkerk', u'costa', u'face', u'ferrero']
[u'costa', u'prove', u'french', u'titl', u'fluke']
[u'councillor', u'hear', u'result', u'valuer', u'studi']
[u'council', u'stormwat', u'campaign']
[u'crean', u'tell', u'beazley', u'backer', u'quit']
[u'crew', u'rescu', u'burn', u'boat']
[u'deni', u'beer', u'shortag', u'threat']
[u'cyclist', u'die', u'beerwah', u'crash']
[u'davi', u'love', u'cours', u'brother', u'law']
[u'detect', u'charg', u'corrupt']
[u'doctor', u'sign', u'hour', u'servic']
[u'dollar', u'drop', u'slight', u'overnight', u'high']
[u'dollar', u'hit', u'year', u'high']
[u'dont', u'dope', u'slop', u'skier', u'warn']
[u'doyl', u'seiz', u'child', u'protect', u'servic', u'report']
[u'drought', u'impact']
[u'tune', u'put', u'ahead', u'open']
[u'fairfax', u'closer', u'media', u'acquisit']
[u'fan', u'heap', u'scorn', u'sosa', u'cork']
[u'farmer', u'feel', u'stronger', u'aussi', u'dollar']
[u'feder', u'govt', u'reject', u'drought', u'criteria', u'claim']
[u'feder', u'govt', u'releas', u'tourism', u'strategi']
[u'feder', u'govt', u'urg', u'resolv', u'reef', u'issu']
[u'femal', u'suicid', u'bomber', u'kill', u'near', u'chechnya']
[u'ferrero', u'join', u'great', u'fourth', u'consecut', u'semi']
[u'fingleton', u'lodg', u'appeal']
[u'fingleton', u'lawyer', u'prepar', u'appeal']
[u'virgin', u'flight', u'land', u'alic']
[u'flight', u'deal', u'spark', u'region', u'travel']
[u'forestri', u'weighbridg', u'worker', u'return', u'work']
[u'franc', u'squad', u'announc', u'argentina', u'zealand']
[u'french', u'leav', u'search', u'home', u'champion']
[u'futur', u'huge', u'rail', u'project', u'remain', u'uncertain']
[u'general', u'acquit', u'indonesian', u'trial']
[u'georg', u'town', u'mayor', u'want', u'park', u'plan']
[u'giant', u'wild', u'thing', u'compet', u'sydney', u'hobart']
[u'good', u'budget', u'lifelin']
[u'govt', u'offer', u'cashback', u'scheme', u'water', u'effici']
[u'govt', u'spend', u'review', u'opposit']
[u'govt', u'consid', u'defenc', u'helicopt', u'facil']
[u'govt', u'unveil', u'truck', u'safeti', u'plan']
[u'govt', u'warn', u'rat', u'deter', u'invest']
[u'green', u'group', u'fear', u'kill', u'burnett', u'river']
[u'greenpeac', u'attack', u'environ', u'polici']
[u'green', u'shock', u'tarkin', u'log', u'announc']
[u'group', u'offer', u'qualifi', u'support', u'nation', u'park']
[u'guard', u'spotlight', u'prison', u'relationship']
[u'hannib', u'vote', u'greatest', u'movi', u'villain']
[u'hardlin', u'unconvinc', u'aqaba', u'summit']
[u'harri', u'uphold', u'govern', u'bodi']
[u'hellish', u'injuri', u'put', u'haa', u'hall']
[u'hillari', u'tell', u'lewinski', u'scandal']
[u'hold', u'defend', u'posit', u'minist']
[u'holland', u'return', u'premiership', u'sign']
[u'hors', u'festiv', u'await', u'fund', u'decis']
[u'howard', u'talk', u'solomon', u'crisi']
[u'hunter', u'rejoin']
[u'hussain', u'play', u'hop', u'lord', u'repeat']
[u'indian', u'pray', u'reliev', u'rain']
[u'indigen', u'communiti', u'consid', u'commerci', u'orchard']
[u'indonesia', u'warn', u'foreign', u'aceh', u'travel']
[u'iraq', u'director']
[u'israel', u'plan', u'settlement', u'remov', u'report']
[u'jadda', u'centr', u'demolit', u'spotlight']
[u'japan', u'accus', u'build', u'militari', u'power']
[u'junior', u'polic', u'recruit', u'elit', u'command', u'post']
[u'landcar', u'coordin', u'face', u'cloudi', u'futur']
[u'landhold', u'expect', u'plead', u'guilti', u'clear']
[u'lead', u'test', u'adelaid']
[u'lomu', u'need', u'kidney', u'transplant']
[u'lowik', u'beat', u'heat', u'treatment', u'german', u'second']
[u'magnesit', u'explor', u'plan', u'ahead']
[u'major', u'parti', u'launch', u'environment', u'polici']
[u'arrest', u'melbourn', u'airport']
[u'jail', u'hijack']
[u'market', u'lift', u'dollar', u'soar', u'year', u'high']
[u'maroon', u'give', u'medic', u'clear', u'origin', u'open']
[u'martha', u'stewart', u'quit', u'chairman']
[u'mayor', u'air', u'merger', u'concern']
[u'mayor', u'back', u'fuel', u'ethanol', u'blend']
[u'mayor', u'highlight', u'need', u'rodeo', u'facil', u'work']
[u'mayor', u'urg', u'tree', u'clear', u'resumpt']
[u'claim', u'polic', u'tortur', u'support']
[u'militari', u'look', u'mimic', u'dragonfli']
[u'montgomeri', u'hurt', u'springbok', u'hop']
[u'fund', u'seek', u'drug', u'rehab', u'centr']
[u'storm', u'predict', u'adelaid', u'clean']
[u'time', u'applic']
[u'want', u'water', u'emerg', u'declar']
[u'murder', u'charg', u'timores', u'militia']
[u'nativ', u'titl', u'confer', u'draw']
[u'concern', u'air']
[u'news', u'good', u'tanneri', u'unsecur', u'creditor']
[u'technolog', u'reduc', u'emiss']
[u'wetland', u'launch', u'world', u'environ']
[u'nurs', u'home', u'shut', u'poor', u'condit']
[u'offici', u'learn', u'fingleton', u'case', u'expert']
[u'king', u'brother', u'bail', u'court', u'cell']
[u'opposit', u'question', u'human', u'right']
[u'origin', u'hope', u'jilt', u'anasta']
[u'icon', u'want']
[u'pakistani', u'provinc', u'introduc', u'islam']
[u'parti', u'reach', u'deal', u'trade', u'hour']
[u'patterson', u'confid', u'retain', u'ministri']
[u'peri', u'consid', u'senat', u'seat']
[u'phone', u'assist', u'disast', u'survivor']
[u'phone', u'power', u'corrupt', u'watchdog', u'delay']
[u'plan', u'whale', u'sanctuari', u'south', u'pacif']
[u'plan', u'shut', u'open', u'sewer']
[u'plot', u'kill', u'gutnick', u'uncov']
[u'polic', u'bodi', u'believ', u'trawler', u'skipper']
[u'polic', u'soldier', u'kill', u'train', u'centr']
[u'polic', u'probe', u'construct', u'site', u'death']
[u'policewoman', u'report', u'second', u'attack']
[u'polit', u'pressur', u'crank', u'chang', u'afl']
[u'pont', u'concern', u'busi', u'schedul', u'lead', u'short']
[u'potter', u'valu', u'go', u'roof']
[u'prais', u'local', u'storm', u'prepared']
[u'probe', u'continu', u'indigen', u'remain']
[u'quarantin', u'staff', u'increas', u'devonport']
[u'quarri', u'garden', u'plan', u'near', u'readi']
[u'rape', u'trial', u'dead', u'come']
[u'rape', u'trial', u'close', u'shoot']
[u'receiv', u'appoint', u'region', u'newspap']
[u'recoveri', u'program', u'cancer', u'patient']
[u'region', u'mobil', u'phone', u'boost']
[u'report', u'crime', u'hotlin']
[u'report', u'give', u'thumb', u'crime', u'line']
[u'report', u'highlight', u'redgum', u'woe']
[u'rescu', u'british', u'rower', u'fremantl']
[u'rescuer', u'miss', u'angler']
[u'research', u'solv', u'gender', u'birth', u'weight', u'puzzl']
[u'riverland', u'invent', u'mimic', u'wetland', u'condit']
[u'roddick', u'guid', u'agassi', u'coach']
[u'make', u'tougher', u'novic', u'driver']
[u'charg', u'drug', u'offenc']
[u'sar', u'outbreak', u'peak', u'china']
[u'sar', u'virus', u'anim']
[u'sculli', u'conced', u'road', u'need', u'upgrad']
[u'shallow', u'goal', u'leav', u'japan', u'australia', u'match']
[u'shark', u'collect']
[u'sheedi', u'call', u'state', u'origin', u'return']
[u'sheedi', u'unfaz', u'locat', u'final']
[u'cattl', u'entri']
[u'sign', u'hous', u'sector', u'eas']
[u'snow', u'rais', u'hop', u'good', u'start', u'season']
[u'soccer', u'australia', u'announc', u'competit', u'model']
[u'sorenstam', u'draw', u'experi', u'ladi', u'major']
[u'spaniard', u'come', u'test', u'roland']
[u'speaker', u'stop', u'question', u'reconcili']
[u'special', u'olymp', u'flame', u'athen', u'acropoli']
[u'springborg', u'appeal', u'voter', u'budget', u'repli']
[u'springborg', u'ask', u'correct', u'parliamentari', u'claim']
[u'springborg', u'attack', u'labor', u'budget', u'repli']
[u'stamp', u'mass', u'destruct', u'prompt', u'complaint']
[u'kilda', u'detain', u'alleg', u'flight', u'threat']
[u'student', u'stand', u'trial', u'river', u'death']
[u'support', u'driver', u'school', u'continu']
[u'support', u'western', u'nuclear', u'wast', u'transport']
[u'surpris', u'govt', u'respons', u'bushfir', u'inquiri']
[u'swan', u'leav', u'financi', u'turmoil', u'field']
[u'tafe', u'aim', u'boost', u'dalbi', u'train']
[u'talk', u'begin', u'sydney', u'hobart', u'ferri']
[u'tasmanian', u'newest', u'fighter', u'graduat']
[u'territorian', u'urg', u'plant', u'tree']
[u'terror', u'summit', u'deleg', u'tour', u'darwin', u'hospit']
[u'test', u'algal', u'bloom', u'previous', u'fish', u'kill']
[u'tight', u'turn', u'save', u'london', u'black', u'cab']
[u'tornado', u'appeal', u'go', u'target']
[u'train', u'guard', u'tell', u'inquiri']
[u'trio', u'face', u'court', u'theft', u'charg']
[u'trust', u'demand', u'land', u'clear', u'law']
[u'face', u'court', u'heroin', u'haul']
[u'german', u'shoot', u'aceh', u'dead']
[u'uncertain', u'futur', u'talwood', u'race']
[u'envoy', u'bar']
[u'get', u'feder', u'fund', u'assur']
[u'union', u'warn', u'beer', u'shortag']
[u'explor', u'fail', u'pacif', u'reed', u'boat']
[u'verkerk', u'put', u'parti', u'life']
[u'govt', u'wont', u'commit', u'pool', u'complex', u'fund']
[u'victorian', u'probe', u'waterway', u'pollut']
[u'vietnam', u'gang', u'boss', u'sentenc', u'death', u'murder']
[u'volunt', u'give', u'environ', u'award']
[u'back', u'plastic']
[u'environ', u'dept', u'ask', u'probe', u'asbesto']
[u'govt', u'releas', u'report', u'power', u'woe']
[u'wallabi', u'perform', u'jone']
[u'want', u'iraqi', u'militia', u'leader', u'captur']
[u'polic', u'crack', u'burglari']
[u'weather', u'bureau', u'warn', u'sever', u'storm']
[u'wilson', u'consid', u'formula', u'option']
[u'wine', u'fund', u'manag', u'offer', u'reassur']
[u'winner', u'loser', u'rat']
[u'woman', u'injur', u'snatch']
[u'woman', u'treat', u'fall']
[u'yachti', u'prepar', u'mooloolaba', u'event']
[u'yahoo', u'name', u'exec', u'intern', u'chief']
[u'land', u'sale', u'open', u'sport', u'facil']
[u'year', u'aliv', u'day']
[u'abattoir', u'worker', u'redund']
[u'abbott', u'talk', u'textil', u'industri', u'chang']
[u'chairman', u'surpris', u'alston', u'concern']
[u'fear', u'local', u'tourism', u'lose', u'tourism', u'reform']
[u'agent', u'throw', u'spanner', u'golden', u'screw', u'work']
[u'aircrew', u'welcom', u'home', u'iraq']
[u'black', u'macdonald', u'england', u'test']
[u'arafat', u'blast', u'middl', u'east', u'peac', u'summit', u'result']
[u'arm', u'forc', u'need', u'solomon', u'goff']
[u'armstrong', u'warm', u'record', u'attempt']
[u'arthur', u'hanley', u'crash']
[u'atsic', u'council', u'oppos', u'asset', u'transfer']
[u'aussi', u'trio', u'steal', u'spotlight', u'delawar']
[u'australia', u'irish', u'disput', u'replac', u'law']
[u'australian', u'veteran', u'fowler', u'sparkl']
[u'author', u'close', u'cartier', u'island']
[u'barcaldin', u'host', u'citi', u'countri', u'clash']
[u'barca', u'reveal', u'talk', u'beckham']
[u'beatti', u'look', u'forward', u'stabil']
[u'beazley', u'announc', u'leadership']
[u'beazley', u'rule', u'second', u'challeng']
[u'bendigo', u'region', u'rape', u'report', u'rise']
[u'bird', u'prey', u'down', u'fighter']
[u'bribi', u'manag', u'plan']
[u'brit', u'stop', u'albani', u'wheel', u'adventur']
[u'brother', u'say', u'chief', u'magistr', u'wont', u'appli']
[u'bulldog', u'roll', u'rooster']
[u'cambodian', u'step', u'start', u'cricket', u'season']
[u'canberra', u'school', u'suspend', u'senior', u'class']
[u'caniggia', u'quit', u'ranger']
[u'caravan', u'park', u'evacu', u'wild', u'weather']
[u'carey', u'doubt', u'crow', u'matera', u'west', u'coast']
[u'carey', u'doubt', u'crow', u'matera', u'eagl']
[u'china', u'arrest', u'falun', u'gong', u'member', u'sar', u'rumour']
[u'chines', u'paper', u'demand', u'open', u'govt', u'sar', u'cover']
[u'communic', u'union', u'head', u'reject', u'poll']
[u'confer', u'tell', u'devic', u'sydney', u'airport']
[u'defend', u'farm', u'gate', u'milk', u'price']
[u'corbel', u'accus', u'wast', u'money']
[u'coria', u'escap', u'hit']
[u'coron', u'find', u'child', u'drown', u'accid']
[u'council', u'rethink', u'shire', u'confer', u'attend']
[u'council', u'remov', u'tree', u'tribut']
[u'council', u'unhappi', u'septic', u'tank', u'sludg', u'rise']
[u'court', u'rule', u'expuls', u'stand']
[u'crean', u'beazley', u'face', u'leadership']
[u'crean', u'set', u'date', u'showdown']
[u'crean', u'leadership', u'better', u'beazley', u'brown']
[u'crow', u'carey', u'matera', u'west', u'coast']
[u'customari', u'vital', u'indigen', u'peopl']
[u'dali', u'river', u'art', u'festiv', u'draw', u'throng']
[u'darwin', u'properti', u'price', u'strengthen']
[u'deep', u'ocean', u'outfal', u'like', u'finish', u'earli']
[u'dekker', u'pull', u'tour', u'franc']
[u'democrat', u'critic', u'transport', u'propos']
[u'disast', u'poll', u'prove', u'lead', u'beazley', u'say']
[u'diversif', u'illawarra', u'agricultur']
[u'doctor', u'group', u'welcom', u'medic', u'school', u'plan']
[u'driver', u'warn', u'long', u'weekend', u'crackdown']
[u'drug', u'scheme', u'seek', u'govt', u'help']
[u'duncan', u'domin', u'spur', u'beat', u'net', u'open']
[u'dutch', u'court', u'acquit', u'terrorist', u'charg']
[u'dwyer', u'guid', u'kookaburra', u'victori']
[u'fingleton', u'black', u'friday', u'appeal']
[u'jail', u'record', u'heroin', u'haul']
[u'french', u'forc', u'arriv', u'congo']
[u'french', u'open', u'boast', u'belgian', u'final']
[u'fund', u'cut', u'project', u'hold', u'mayor']
[u'gallop', u'stay', u'leadership', u'debat']
[u'galthi', u'bid', u'crown', u'farewel', u'maiden', u'titl']
[u'gamez', u'take', u'lead', u'kemper', u'open']
[u'gilchrist', u'admit', u'burnout', u'concern']
[u'gould', u'disappoint', u'blue', u'attitud']
[u'govern', u'fail', u'agre', u'sugar', u'industri', u'reform']
[u'govt', u'deni', u'game', u'licenc', u'extens', u'talk']
[u'govt', u'hand', u'histor', u'site', u'privat', u'develop']
[u'govt', u'urg', u'fund', u'airport', u'secur', u'upgrad']
[u'owner', u'urg', u'compli', u'random', u'check']
[u'round', u'origin', u'critic']
[u'hama', u'break', u'truce', u'talk']
[u'hama', u'milit', u'kill', u'west', u'bank', u'firefight']
[u'hauritz', u'clark', u'chief', u'minist']
[u'health', u'dept', u'warn', u'hepat']
[u'hegarti', u'long', u'haul']
[u'henin', u'hardenn', u'book', u'final', u'date', u'clijster']
[u'hepat', u'case', u'rise', u'latest', u'case', u'confirm']
[u'high', u'hop', u'gold', u'coast', u'medic', u'school']
[u'high', u'wind', u'blow', u'farmer', u'woe']
[u'tech', u'scanner', u'turn', u'vodka', u'weapon']
[u'hous', u'task', u'forc', u'back', u'share', u'equiti', u'costello']
[u'howard', u'call', u'chang', u'school', u'hour']
[u'irrig', u'groundwat', u'chang', u'concern']
[u'italian', u'reveng', u'home', u'soil']
[u'kennedi', u'hand', u'fit', u'deadlin']
[u'kennedi', u'hand', u'origin', u'fit', u'deadlin']
[u'laker', u'star', u'bryant', u'need', u'offseason', u'shoulder']
[u'mark', u'anniversari', u'kennedi', u'slay']
[u'lehmann', u'feel', u'test', u'pressur', u'clark']
[u'liber', u'presid', u'focus', u'state', u'loss']
[u'livingston', u'presum', u'say', u'brazilian', u'boss']
[u'lobbi', u'group', u'heat', u'debat', u'live', u'music', u'venu']
[u'long', u'grasser', u'wont', u'council', u'fight']
[u'magistr', u'dismiss', u'fraud', u'case']
[u'major', u'search', u'underway', u'miss', u'father']
[u'admit', u'drug', u'possess', u'walk', u'free']
[u'charg', u'imperson', u'polic', u'offic']
[u'jail', u'year', u'butterbon', u'station']
[u'jail', u'servic', u'station', u'arm', u'robberi']
[u'treat', u'prison', u'attack']
[u'marathon', u'entic', u'bonus', u'money', u'york', u'race']
[u'market', u'ralli', u'dollar', u'soar']
[u'mark', u'waugh', u'play', u'blue']
[u'launch', u'plan', u'revamp', u'schedul']
[u'mayor', u'welcom', u'takeov']
[u'mccartney', u'bid', u'farewel', u'footbal']
[u'mccartney', u'end', u'career', u'win', u'note']
[u'mccartney', u'return', u'footi', u'field']
[u'memori', u'fail', u'king', u'brother', u'court', u'appear']
[u'sharehold', u'xstrata']
[u'sharehold', u'meet', u'xstrata', u'vote']
[u'minist', u'rule', u'hunter', u'fisheri']
[u'smoker', u'accept', u'studi']
[u'state', u'feder', u'resourc', u'manag', u'cooper']
[u'mortar', u'round', u'fire', u'jewish', u'settlement', u'gaza']
[u'mukhla', u'trial', u'date']
[u'get', u'overdraft', u'boyzon', u'undi']
[u'murphi', u'step', u'odriscol', u'shoe', u'australia']
[u'nativ', u'titl', u'process', u'prove', u'posit', u'neat']
[u'nat', u'push', u'emerg', u'water', u'cart', u'fund']
[u'newcastl', u'increas', u'offer', u'aussi']
[u'ngeni', u'aim', u'world', u'championship', u'place']
[u'children', u'chechnya', u'explos']
[u'rematch', u'tyson', u'lewi']
[u'review', u'milk', u'base', u'alcohol', u'drink']
[u'offic', u'investig', u'risdon', u'jail', u'drug', u'ring']
[u'opposit', u'leader', u'pay', u'tribut', u'minist']
[u'overnight', u'gale', u'forc', u'wind', u'crew', u'busi']
[u'look', u'close', u'sorenstam']
[u'paper', u'consid', u'wilder', u'area', u'develop']
[u'plane', u'miss']
[u'plan', u'focus', u'murchison', u'develop']
[u'advic', u'labor']
[u'unsur', u'pay', u'matern', u'leav']
[u'polic', u'arrest', u'team', u'manag', u'italian', u'dope', u'probe']
[u'polic', u'issu', u'trespass', u'warn']
[u'polic', u'issu', u'warn', u'biker', u'gang']
[u'polic', u'soldier', u'accid', u'victim']
[u'polic', u'probe', u'road', u'crash', u'caus']
[u'polic', u'crack', u'driver']
[u'polic', u'exhum', u'grave', u'investig', u'child', u'death']
[u'power', u'station', u'work', u'power', u'ahead']
[u'problem', u'mount', u'world', u'test', u'championship']
[u'presid', u'hit', u'ref', u'mafia']
[u'public', u'urg', u'prepar', u'weekend', u'weather']
[u'racq', u'back', u'call', u'region', u'fuel', u'price', u'probe']
[u'rag', u'monti', u'blast', u'snapper']
[u'ranatunga', u'humil', u'cricket', u'board', u'elect']
[u'chief', u'reject', u'rat', u'hike', u'slow', u'hous', u'boom']
[u'rebel', u'advanc', u'liberian', u'capit']
[u'report', u'highlight', u'need', u'green', u'boost']
[u'research', u'centr', u'support', u'stanwel', u'project']
[u'reserv', u'bank', u'slash', u'outlook', u'growth']
[u'reserv', u'leav', u'door', u'open', u'rat']
[u'retail', u'welcom', u'longer', u'trade', u'hour']
[u'review', u'magnesium', u'plan', u'gain', u'support']
[u'offer', u'qualifi', u'support', u'secur', u'boost']
[u'river', u'clean', u'dolphin', u'return']
[u'rivkin', u'appeal', u'fail', u'jail', u'term', u'start', u'today']
[u'rockhampton', u'statist', u'chang', u'consid']
[u'roll', u'stone', u'gather', u'front', u'lingeri']
[u'romario', u'sign', u'fluminens', u'flamengo']
[u'rossi', u'biaggi', u'face', u'rivalri', u'italian']
[u'erupt', u'road', u'fund']
[u'ruddock', u'spotlight', u'busi', u'migrant']
[u'govt', u'look', u'forward', u'fish', u'resolut']
[u'santana', u'donat', u'concert', u'proceed', u'africa', u'aid']
[u'sawtel', u'plan', u'spark', u'develop', u'concern']
[u'schoolboy', u'appeal', u'expuls', u'decis']
[u'seagul', u'clash', u'comet', u'home']
[u'scallop', u'ranch', u'plan']
[u'shire', u'seek', u'fish', u'kill', u'solut']
[u'shire', u'govt', u'odd', u'hostel', u'plan']
[u'shire', u'welcom', u'plan', u'methanol', u'plant']
[u'silent', u'stake', u'hous', u'plan', u'go']
[u'skier', u'warn', u'hut', u'destroy']
[u'sob', u'serena', u'accus', u'henin', u'lie']
[u'soccer', u'australia', u'meet', u'cancel']
[u'farmer', u'loos', u'drought', u'assist', u'fund']
[u'farmer', u'lose', u'drought', u'assist', u'fund']
[u'sorenstam', u'seek', u'lpga', u'championship', u'victori']
[u'south', u'african', u'look', u'seven', u'histori']
[u'special', u'skill', u'need', u'antarct', u'research', u'ship']
[u'split', u'sugar', u'exagger', u'beatti']
[u'sptnrl']
[u'stamp', u'public', u'finland']
[u'stewart', u'mcgrath', u'rescu', u'falter', u'england']
[u'storm', u'black', u'south', u'east', u'area']
[u'suncorp', u'dismiss', u'lang', u'park', u'fine']
[u'govt', u'accus', u'revenu', u'rais']
[u'health', u'dept', u'warn', u'hepat']
[u'welcom', u'extra', u'medic', u'place']
[u'thai', u'student', u'kill', u'friend', u'wound']
[u'thinker', u'give', u'factori']
[u'thwait', u'want', u'region', u'water', u'restrict']
[u'tighter', u'control', u'need', u'age', u'care', u'nurs']
[u'toddler', u'remain', u'exhum', u'polic', u'probe']
[u'breakaway', u'mood']
[u'tougher', u'water', u'restrict', u'expect']
[u'tourism', u'chief', u'welcom', u'feder', u'govt', u'strategi']
[u'tszyu', u'fight', u'mitchel', u'moscow']
[u'surviv', u'dead', u'plane', u'crash']
[u'plan', u'european', u'seri']
[u'cambodia', u'khmer', u'roug', u'leader']
[u'envoy', u'burma']
[u'union', u'cancel', u'driver', u'industri', u'action']
[u'union', u'suspend', u'health', u'worker', u'wage', u'push']
[u'unit', u'holder', u'unhappi', u'wine', u'fund', u'move']
[u'critic', u'detent']
[u'request', u'info', u'news', u'satellit', u'deal']
[u'troop', u'north', u'korean', u'fire', u'rang']
[u'come', u'good', u'germani']
[u'govt', u'welcom', u'basslink']
[u'vogt', u'voller', u'bitter', u'showdown']
[u'wallabi', u'take', u'irish', u'light']
[u'waratah', u'burk', u'samoa', u'clash']
[u'veteran', u'unhappi', u'recept', u'withdraw']
[u'tourism', u'centr', u'name', u'award', u'winner']
[u'waugh', u'prepar', u'play', u'bangladesh']
[u'upper', u'hous', u'approv', u'nyungah', u'camp', u'closur']
[u'weather', u'leav', u'destruct', u'trail', u'gippsland']
[u'wont', u'ronaldinho', u'leav', u'tell', u'unit']
[u'wheat', u'virus', u'task', u'forc', u'prepar', u'meet']
[u'wild', u'weather', u'creat', u'havoc', u'victoria']
[u'wind', u'caus', u'chao', u'snowi', u'mountain']
[u'wind', u'caus', u'widespread', u'blackout']
[u'wind', u'wreak', u'havoc', u'snowi']
[u'strike', u'affect', u'news', u'bulletin']
[u'winter', u'boost', u'tourist', u'number']
[u'injur', u'plane', u'crash', u'hollywood', u'build']
[u'kill', u'overturn', u'river']
[u'afghan', u'polic', u'blame', u'bomb', u'taxi', u'kabul', u'blast']
[u'alleg', u'illeg', u'indonesian', u'fish', u'boat', u'tow']
[u'keep', u'busi', u'aerial', u'search']
[u'kill', u'injur', u'crash']
[u'australia', u'india', u'final', u'replay']
[u'ayer', u'blame', u'injuri', u'crow', u'slump']
[u'barca', u'close', u'beckham', u'announc', u'report']
[u'beazley', u'lobbi', u'secur', u'leadership']
[u'beetl', u'come']
[u'belgian', u'doubl', u'replac', u'william', u'sister']
[u'berger', u'sign', u'premiership', u'boy', u'portsmouth']
[u'bodi', u'homebush', u'hous']
[u'boss', u'guid', u'privat', u'steer', u'stradbrok', u'victori']
[u'british', u'soldier', u'hold', u'iraq', u'child', u'porn', u'probe']
[u'crash', u'kill', u'turkey']
[u'canberra', u'deni', u'bail', u'magistr', u'court']
[u'capirossi', u'take', u'provision', u'italian', u'pole', u'stoner']
[u'chile', u'sign', u'free', u'trade', u'deal']
[u'colbert', u'season']
[u'colbert', u'season', u'gasper', u'doubt']
[u'comedi', u'life', u'east', u'germani', u'name']
[u'controversi', u'teen', u'flick', u'ban', u'australia']
[u'controversi', u'world', u'moreno', u'quit']
[u'crean', u'make', u'light', u'leadership', u'woe']
[u'dismiss', u'pilot', u'claim', u'union', u'unwil', u'help']
[u'dust', u'diseas', u'compens', u'level']
[u'wood', u'head', u'head', u'open']
[u'england', u'second', u'string', u'meet', u'maori']
[u'favourit', u'march']
[u'ferrero', u'face', u'verkerk', u'french', u'final']
[u'messag', u'send', u'mar', u'probe']
[u'fish', u'group', u'concern', u'colli', u'river', u'fish']
[u'fish', u'pest', u'threaten', u'frog', u'popul']
[u'french', u'soldier', u'arriv', u'quell', u'drcongo', u'violenc']
[u'frustrat', u'meligeni', u'announc', u'retir']
[u'fungus', u'deep', u'myrtl', u'log']
[u'galatasaray', u'home', u'hell', u'rebuild']
[u'gallop', u'stand', u'northbridg', u'curfew']
[u'green', u'grab', u'share', u'british', u'master', u'lead']
[u'green', u'group', u'support', u'beatti', u'tree', u'clear']
[u'gregan', u'fear', u'ahead', u'ireland', u'clash']
[u'grind', u'station', u'send', u'command', u'mar', u'probe']
[u'gunfir', u'sound', u'east', u'congo', u'town', u'bunia']
[u'hagan', u'enter', u'queensland', u'camp']
[u'peri', u'tell', u'kid']
[u'hawk', u'snap', u'lose', u'streak']
[u'health', u'author', u'confid', u'contain']
[u'hear', u'postpon', u'tsvangirai', u'treason', u'charg']
[u'hill', u'say', u'iraq']
[u'home', u'equiti', u'plan', u'incom', u'earner']
[u'hospit', u'award', u'need', u'reform']
[u'howard', u'prais', u'recent', u'middl', u'east', u'peac', u'talk']
[u'hundr', u'dead', u'week', u'congo', u'fight']
[u'indian', u'heatwav', u'claim', u'victim']
[u'indian', u'youngster', u'train', u'australian', u'academi']
[u'iran', u'nuclear', u'program', u'caus', u'world', u'alarm', u'say']
[u'johnson', u'lewi', u'fight']
[u'judg', u'decid', u'jackson', u'suit', u'week']
[u'krayzelburg', u'withdraw', u'world', u'team']
[u'lankan', u'appoint', u'australian', u'dyson', u'coach']
[u'lawyer', u'live', u'street', u'highlight', u'homeless']
[u'len', u'uefa', u'spot', u'fair', u'play']
[u'lib', u'tackl', u'fall', u'membership']
[u'local', u'govern', u'respond', u'increas', u'drive']
[u'london', u'traffic', u'experi', u'cut', u'congest']
[u'melbourn', u'pakistan', u'detent']
[u'die', u'shootout', u'near', u'heathrow', u'airport']
[u'maori', u'tough', u'england', u'say', u'woodward']
[u'maroon', u'play', u'game']
[u'maroon', u'play', u'game', u'talli']
[u'mccartney', u'emot', u'farewel', u'footi']
[u'miss', u'toddler', u'reunit', u'parent']
[u'union']
[u'snow', u'need', u'kick', u'tassi', u'season']
[u'motorist', u'warn', u'difficult', u'snowi', u'road']
[u'wellington', u'road', u'close', u'snow']
[u'murder', u'man', u'famili', u'plead', u'inform']
[u'nation', u'parti', u'look', u'contest', u'outer']
[u'like', u'european', u'team']
[u'win', u'right', u'olymp']
[u'expert', u'warn', u'rapid', u'spread', u'bugbear', u'virus']
[u'net', u'level', u'final']
[u'claim', u'surfac', u'troop']
[u'ngeni', u'prepar', u'lose', u'place', u'kenyan', u'team']
[u'drug', u'french', u'cycl', u'hop', u'bodi']
[u'nolan', u'widow', u'say', u'permiss', u'collect']
[u'north', u'river', u'continu', u'flood']
[u'fisheri', u'patrol', u'grey', u'nurs', u'protect', u'zone']
[u'museum', u'host', u'memori', u'exhibit']
[u'panther', u'cowboy', u'raider', u'thump', u'eel']
[u'panther', u'cowboy', u'raider', u'thump', u'eel']
[u'patriot', u'brothel', u'offer', u'free', u'servic', u'iraq']
[u'peacekeep', u'warn', u'dead', u'kabul', u'blast']
[u'polic', u'seek', u'clue', u'kill', u'plane', u'crash']
[u'polic', u'seek', u'lead', u'nunawad']
[u'polish', u'vote', u'referendum']
[u'poultri', u'scratch', u'canberra', u'weekend']
[u'press', u'group', u'protest', u'block', u'websit']
[u'support', u'beazley', u'leadership']
[u'quaranta', u'quickest', u'zabel', u'pollack', u'miss', u'sprint']
[u'rail', u'line', u'upgrad', u'long', u'delay']
[u'raymond', u'bryan', u'french', u'open', u'mix', u'doubl']
[u'real', u'estat', u'institut', u'back', u'task', u'forc', u'find']
[u'real', u'madrid', u'manchest', u'unit']
[u'rescu', u'mission', u'coordin', u'missionari', u'group']
[u'rivkin', u'spend', u'weekend', u'bar']
[u'rivkin', u'spend', u'weekend', u'jail']
[u'road', u'safeti', u'council', u'develop', u'safeti', u'strategi']
[u'rugbi', u'world', u'mourn', u'wallabi', u'captain', u'win']
[u'rusti', u'wallabi', u'tackl', u'irish']
[u'sabbatini', u'take', u'lead', u'maryland']
[u'saddam', u'finish', u'great', u'awaken', u'iraqi', u'newspap']
[u'saint', u'shock', u'lion', u'swan', u'defus', u'bomber']
[u'search', u'resum', u'dawn']
[u'serena', u'lie', u'jibe']
[u'crew', u'hop', u'quiet', u'weekend', u'flood']
[u'kill', u'afghan', u'explos']
[u'shuttl', u'wing', u'crack', u'test', u'columbia', u'crash', u'probe']
[u'sinclair', u'rule', u'slovakia', u'clash']
[u'kill', u'injur', u'blast', u'afghan']
[u'wicket', u'johnson', u'spark', u'zimbabw', u'rout']
[u'snow', u'blanket', u'resort']
[u'sorenstam', u'charg', u'shoot', u'lead', u'delawar']
[u'sosa', u'suspend', u'game', u'cork']
[u'spain', u'knockout', u'blow']
[u'korea', u'japan', u'peac', u'nuclear']
[u'strong', u'wind', u'snowi', u'crew', u'busi']
[u'swan', u'claim', u'loyalti', u'crean']
[u'taiwan', u'confirm', u'sar', u'case']
[u'team', u'manag', u'resign', u'amid', u'ongo', u'dope']
[u'teen', u'critic', u'condit', u'train', u'fall']
[u'thousand', u'expect', u'darwin', u'greek', u'festiv']
[u'thousand', u'palestinian', u'continu', u'attack']
[u'bundesliga', u'scorer', u'christiansen', u'join', u'hanov']
[u'traci', u'age', u'care', u'facil', u'door', u'open']
[u'tsvangirai', u'arrest', u'charg', u'treason']
[u'dead', u'injur', u'plane', u'crash', u'hollywood']
[u'envoy', u'secur', u'aung', u'releas']
[u'inspector', u'arriv', u'baghdad']
[u'anglican', u'church', u'elect', u'bishop']
[u'expand', u'visa', u'blacklist', u'burmes', u'leader']
[u'free', u'trade', u'agreement', u'secur', u'aust', u'econom']
[u'free', u'trade', u'deal', u'crucial', u'australian', u'econom']
[u'report', u'admit', u'reliabl', u'inform', u'iraq']
[u'unemploy', u'hit', u'year', u'high']
[u'welcom', u'possibl', u'ronaldinho', u'sign', u'report']
[u'vogt', u'striker', u'crucial', u'euro']
[u'wallabi', u'irish', u'challeng']
[u'warrior', u'shut', u'shark']
[u'warrior', u'sink', u'shark']
[u'water', u'trade', u'protect', u'water', u'user', u'kemp']
[u'welsh', u'rugbi', u'crisi', u'deepen', u'supremo', u'resign']
[u'west', u'manag', u'roeder', u'return', u'tumour']
[u'wimbledon', u'receiv']
[u'student', u'miss', u'boat', u'capsiz', u'china']
[u'bodi', u'hollywood', u'plane', u'crash']
[u'aborigin', u'communiti', u'doctor', u'underpay', u'nacho', u'say']
[u'adventur', u'continu', u'chariti', u'ride']
[u'agassi', u'bar', u'hewitt', u'entri', u'queen', u'winner', u'club']
[u'agenc', u'battl', u'odd', u'help', u'liberia']
[u'qaeda', u'afghan', u'suicid', u'bomb', u'author']
[u'alston', u'urg', u'respond', u'critic']
[u'ambros', u'take', u'round']
[u'australia', u'annihil', u'japan']
[u'system', u'plan', u'merger', u'lockhe']
[u'beazley', u'accus', u'crean', u'withhold', u'poll', u'result']
[u'beckham', u'gong', u'queen', u'birthday', u'list', u'report']
[u'clijster', u'generous', u'defeat']
[u'birthday', u'celebr', u'adelaid', u'festiv', u'theatr']
[u'blair', u'deni', u'intellig', u'report', u'exagger']
[u'bryan', u'twin', u'record', u'french', u'open']
[u'busi', u'ban', u'offer', u'scan']
[u'interchang', u'renov', u'year']
[u'cecchinello', u'celebr', u'hometown']
[u'chang', u'traci', u'age', u'care']
[u'want', u'examin', u'fingleton', u'letter', u'beatti']
[u'coff', u'resid', u'want', u'rethink', u'pacif']
[u'communiti', u'voic', u'concern', u'tree', u'lop']
[u'congoles', u'civilian', u'flee', u'home', u'violenc']
[u'construct', u'begin', u'world', u'longest', u'bridg']
[u'costello', u'howard', u'commend']
[u'crean', u'angri', u'destabilis', u'effort']
[u'crean', u'confid', u'ahead', u'leadership', u'vote']
[u'deport', u'refuge', u'lead', u'civil']
[u'eagl', u'pinch', u'draw']
[u'eagl', u'pinch', u'draw', u'cat', u'crush', u'blue']
[u'fieri', u'phoenix', u'sydney']
[u'fight', u'rag', u'liberia']
[u'fink', u'desert', u'race', u'attract', u'strong', u'field']
[u'destroy', u'convent', u'shed']
[u'flood', u'disrupt', u'launceston', u'road']
[u'forc', u'financi', u'crisi']
[u'policeman', u'arrest', u'darwin']
[u'galthi', u'win', u'french', u'titl']
[u'german', u'leader', u'condemn', u'kabul', u'suicid', u'attack']
[u'govt', u'zimbabw']
[u'green', u'settl', u'open']
[u'green', u'trail', u'owen', u'british', u'master']
[u'happi', u'henin', u'discov', u'court']
[u'heavi', u'gunfir', u'erupt', u'near', u'mauritania', u'presid']
[u'henin', u'give', u'belgium', u'grand', u'slam']
[u'henin', u'hardenn', u'win', u'women', u'french', u'open']
[u'hickss', u'father', u'start', u'cage', u'protest']
[u'hickss', u'father', u'protest', u'howard']
[u'hill', u'stick', u'storm']
[u'howard', u'prais', u'costello', u'priceless', u'asset']
[u'howard', u'unveil', u'plan', u'tame', u'senat']
[u'hundr', u'wwii', u'shell', u'malaysia']
[u'hunt', u'taxi', u'driver', u'stab']
[u'hussain', u'show', u'zimbabw', u'merci']
[u'india', u'exact', u'reveng', u'kookaburra']
[u'indonesia', u'plan', u'close', u'aceh', u'foreign']
[u'iraqi', u'trailer', u'report']
[u'israel', u'cordon', u'west', u'bank']
[u'italian', u'consum', u'groceri', u'store', u'leech']
[u'jewelleri', u'store', u'go', u'flame']
[u'johnson', u'win', u'sevill']
[u'kangaroo', u'island', u'hous', u'gut']
[u'kennedi', u'come', u'train']
[u'jong', u'seek', u'putin', u'help', u'nuclear', u'crisi']
[u'kiplagat', u'win', u'york', u'mini']
[u'late', u'win', u'ireland', u'ukrain', u'iceland']
[u'legal', u'option', u'exhaust', u'teen', u'flick']
[u'liber', u'faction', u'weaken', u'parti', u'chipman']
[u'liber', u'vote', u'plastic', u'bag']
[u'lib', u'chang', u'school', u'hour']
[u'lifelin', u'bookfest', u'boast', u'million']
[u'lucki', u'expect', u'bush', u'soon']
[u'lyon', u'wont', u'support', u'beazley', u'leadership']
[u'major', u'baghdad', u'treasur', u'recov', u'offici']
[u'mangalor', u'damag']
[u'kill', u'pile']
[u'mass', u'grave', u'discov', u'south', u'baghdad']
[u'mast', u'call', u'feder', u'fund', u'waterway']
[u'motorist', u'recov', u'suffer', u'heart', u'attack']
[u'movi', u'goer', u'evacu', u'barrack']
[u'navi', u'rescu', u'iraqi', u'fishermen']
[u'absurd', u'jone']
[u'polic', u'forc', u'consid', u'northbridg']
[u'zealand', u'retain', u'world', u'seven', u'crown']
[u'zealand', u'play', u'test', u'india']
[u'night', u'polit', u'caus', u'bangladesh', u'world']
[u'money', u'player', u'slam']
[u'sign', u'father', u'miss', u'gulf']
[u'govt', u'hold', u'alcohol', u'summit']
[u'monitor', u'australian', u'bank']
[u'olymp', u'media', u'villag', u'plan', u'scrap']
[u'demand', u'inquiri', u'iraqi', u'claim']
[u'pacemen', u'shape', u'lankan', u'windi']
[u'palestinian', u'faction', u'hold', u'talk']
[u'palestinian', u'hardlin', u'unit', u'roadmap']
[u'palestinian', u'attack', u'erez', u'checkpoint', u'near', u'gaza', u'citi']
[u'pie', u'lose', u'buckley']
[u'planet', u'welcom', u'liber', u'plastic']
[u'avoid', u'hickss', u'father', u'protest']
[u'poggiali', u'extend', u'championship', u'lead']
[u'poland', u'enter', u'second', u'referendum']
[u'polic', u'clair', u'prevent', u'teen', u'rap']
[u'polic', u'plead', u'safe', u'drive', u'long', u'weekend']
[u'polic', u'investig', u'shot', u'fire', u'chase']
[u'poll', u'domin', u'leadership', u'debat']
[u'pope', u'support', u'futur', u'poland']
[u'port', u'power', u'docker']
[u'qatar', u'sign', u'grand', u'prix', u'deal']
[u'fishermen', u'support', u'call', u'indonesian', u'fish']
[u'tough', u'oppon', u'beatti']
[u'quinn', u'confid', u'elect']
[u'rabbitoh', u'snap', u'lose', u'streak']
[u'rain', u'forc', u'potomac', u'postpon']
[u'rann', u'upbeat', u'footi', u'final', u'battl']
[u'republican', u'debat', u'ignit']
[u'residenti', u'develop', u'increas', u'airport']
[u'resid', u'journalist', u'catch', u'congoles', u'crossfir']
[u'resid', u'oppos', u'kippax', u'librari', u'site']
[u'rivkin', u'leav', u'hospit', u'collaps']
[u'rivkin', u'remain', u'hospit']
[u'roger', u'trail', u'foursom', u'germani']
[u'rossi', u'wrap', u'italian', u'trebl']
[u'rugbi', u'hooligan', u'attend', u'scotland', u'game']
[u'saddam', u'secret', u'lab', u'weapon', u'report']
[u'saddam', u'daughter', u'plan', u'seek', u'asylum']
[u'sand', u'cart', u'begin', u'beach']
[u'scientist', u'name', u'queensland', u'year']
[u'scot', u'pakistan', u'fright', u'tour', u'open']
[u'eagl', u'edg', u'tiger']
[u'search', u'fail']
[u'search', u'resum', u'father', u'miss', u'gulf']
[u'secur', u'tighten', u'folbigg', u'death', u'threat']
[u'senior', u'citizen', u'target', u'audienc', u'health']
[u'serv', u'machin', u'verkerk', u'sting', u'mosquito']
[u'servic', u'station', u'attend', u'go', u'miss']
[u'siena', u'sampdoria', u'lecc', u'ancona']
[u'sluggish', u'south', u'africa', u'edg', u'brave', u'scot']
[u'sorrenstam', u'lead', u'rain', u'halt', u'lpga', u'championship']
[u'sourc', u'islam', u'arrest', u'incit', u'mauritania', u'coup']
[u'south', u'american', u'footbal', u'ban', u'attack']
[u'spain', u'crash', u'greec', u'berti', u'defi', u'rudi']
[u'spain', u'mancebo', u'win', u'classiqu', u'alp', u'race']
[u'stadium', u'organis', u'prepar', u'state', u'origin']
[u'stem', u'cell', u'spur', u'therapi', u'hop']
[u'stoner', u'grab', u'pole', u'italian']
[u'studi', u'highlight', u'benefit', u'team', u'sport']
[u'suharto', u'celebr', u'birthday']
[u'survey', u'shed', u'light', u'local', u'polic', u'forc']
[u'taiwan', u'confirm', u'probabl', u'sar', u'case']
[u'teenag', u'hurt', u'motorcycl', u'accid']
[u'televis', u'black', u'spot']
[u'kill', u'road', u'long', u'weekend']
[u'scorer', u'christiansen', u'leav', u'bochum', u'hannov']
[u'kill', u'claremont', u'accid']
[u'envoy', u'slim', u'chanc', u'meet', u'aung']
[u'unit', u'confirm', u'beckham', u'transfer', u'talk']
[u'work', u'gain', u'kyi', u'releas']
[u'colleg', u'prank', u'jail']
[u'peacekeep', u'kill', u'kosovo', u'chopper', u'crash']
[u'vinokourov', u'connect', u'telekom']
[u'wada', u'recommend', u'urin', u'test']
[u'wallabi', u'better', u'jone']
[u'woman', u'die', u'road', u'accid', u'injuri']
[u'woman', u'die', u'melbourn', u'crash']
[u'tasmanian', u'award', u'queen', u'birthday', u'honour']
[u'abattoir', u'mothbal', u'come', u'surpris']
[u'aborigin', u'marin', u'near', u'histor', u'voyag']
[u'academ', u'honour', u'queen', u'birthday', u'list']
[u'consid', u'cull', u'wild', u'hors']
[u'adventur', u'pull', u'plug', u'reed', u'boat', u'cross']
[u'focus', u'remot', u'enrol']
[u'agassi', u'approach', u'match']
[u'alleg', u'brawler', u'grant', u'bail']
[u'system', u'fulli', u'england']
[u'aussi', u'roger', u'win', u'sixth', u'stage', u'tour']
[u'australian', u'design', u'win', u'toni']
[u'australian', u'die', u'heatstrok', u'india']
[u'australia', u'wari', u'wale', u'jone']
[u'author', u'search', u'father']
[u'baghdad', u'treasur', u'uncov', u'secret', u'vault']
[u'ballot', u'domin', u'leadership', u'challeng']
[u'banger', u'pledg', u'world', u'critic']
[u'barber', u'top', u'rank', u'year', u'away']
[u'barca', u'afford', u'beckham', u'claim', u'presidenti']
[u'bayern', u'readi', u'spend', u'million', u'euro', u'makaay']
[u'bear', u'score', u'close', u'ipswich']
[u'beatti', u'accus', u'politicis', u'court']
[u'boca', u'lead', u'argentina', u'bilardo', u'estudiant', u'draw']
[u'boral', u'invest', u'lime', u'busi']
[u'brack', u'reject', u'interst', u'final']
[u'britain', u'readi', u'ditch', u'pound']
[u'burrow', u'win', u'fink', u'buggi', u'class']
[u'businessmen', u'birdwatch', u'receiv', u'honour']
[u'busi', u'challeng', u'nation', u'rise']
[u'calda', u'colombian', u'titl', u'year', u'wait']
[u'chang', u'protect', u'fuel', u'whistl', u'blower']
[u'privat', u'industri', u'recognis', u'tourism']
[u'reef', u'rezon', u'fisher', u'compo']
[u'road', u'better', u'flood', u'proof']
[u'camembert', u'lose', u'pride', u'place', u'french', u'tabl']
[u'canada', u'report', u'sar', u'death']
[u'carr', u'back', u'joint', u'sit', u'parliament']
[u'central', u'queensland', u'recognis', u'honour']
[u'claim', u'contradict', u'child', u'abus', u'royal']
[u'claim', u'scallop', u'ranch', u'impact', u'exagger']
[u'clijster', u'consol', u'doubl']
[u'commiss', u'host', u'industri', u'develop', u'meet']
[u'communiti', u'patrol', u'prove', u'posit']
[u'compani', u'hope', u'methanol', u'plant', u'ahead']
[u'council', u'consid', u'futur', u'confer', u'attend']
[u'council', u'rethink', u'aquat', u'centr', u'plan']
[u'cowboy', u'lose', u'penrith', u'golden', u'point', u'rule']
[u'crean', u'back', u'constitut', u'chang', u'senat']
[u'crean', u'welcom', u'senat', u'plan']
[u'crowd', u'flock', u'hard', u'swallow', u'asthma', u'cure']
[u'deadlock', u'land', u'conserv', u'issu']
[u'detaine', u'accus', u'govt', u'inhuman']
[u'detent', u'centr', u'youth', u'perform', u'school']
[u'diarrhoea', u'case', u'increas', u'iraqi', u'children']
[u'educ', u'effort', u'earn', u'queen', u'birthday', u'honour']
[u'england', u'hussain', u'armchair', u'captainci', u'role']
[u'england', u'crush', u'seri', u'rais', u'ugli', u'question']
[u'evid', u'emerg', u'propos', u'base', u'sydney']
[u'explos', u'shake', u'mauritania', u'capit']
[u'feder', u'seed', u'hall', u'tournament']
[u'ferrero', u'crown', u'king', u'franc']
[u'ferrero', u'take', u'french', u'open']
[u'ferrero', u'take', u'french', u'open', u'final']
[u'finnan', u'unveil', u'liverpool', u'player']
[u'flag', u'burn', u'youth', u'escap', u'punish']
[u'coach', u'say', u'bangladesh', u'deserv', u'mock']
[u'french', u'troop', u'arriv', u'uganda', u'peacekeep']
[u'french', u'troop', u'evacu', u'liberia', u'foreign']
[u'fresh', u'fight', u'break', u'mauritania']
[u'german', u'unearth', u'roman', u'cathedr']
[u'gold', u'coast', u'runaway']
[u'griffith', u'take', u'fink', u'desert', u'race']
[u'group', u'highlight', u'invest', u'impedi']
[u'guevara', u'pressur', u'freeman']
[u'hawk', u'back', u'beazley', u'swan', u'tightlip']
[u'health', u'chief', u'consid', u'challeng']
[u'health', u'dept', u'consid', u'remot', u'servic']
[u'hewitt', u'split', u'coach']
[u'hong', u'kong', u'journalist', u'slam', u'chill', u'secur', u'law']
[u'honour', u'victorian', u'polic']
[u'honour', u'list', u'recognis', u'southern', u'queensland']
[u'hop', u'fade', u'meet']
[u'hop', u'sugar', u'preserv']
[u'illawarra', u'resid', u'honour']
[u'immigr', u'hold', u'hous', u'boon']
[u'indigen', u'congress', u'celebr', u'year']
[u'industri', u'welcom', u'tweed', u'town', u'centr', u'plan']
[u'inquiri', u'hear', u'servic', u'boost']
[u'irish', u'adventur', u'touch', u'darwin']
[u'israel', u'dismantl', u'illeg', u'outpost', u'report']
[u'wasnt', u'good', u'admit', u'verkerk']
[u'market', u'show', u'improv']
[u'kenya', u'osoro', u'return', u'marathon', u'success']
[u'labor', u'rival', u'continu', u'number', u'crunch']
[u'land', u'council', u'land', u'sell', u'debt']
[u'lankan', u'seri', u'eas', u'pressur', u'skipper']
[u'launceston', u'driver', u'runner', u'fink', u'desert', u'race']
[u'lewi', u'honour', u'birthday', u'list']
[u'lewi', u'honour', u'queen', u'birthday', u'list']
[u'lib', u'convent', u'vote', u'outlaw', u'water', u'specul']
[u'lib', u'hear', u'plan', u'region', u'boost']
[u'livermor', u'crean']
[u'local', u'govt', u'wind', u'farm', u'plan']
[u'local', u'recognis', u'queen', u'birthday', u'honour', u'list']
[u'long', u'weekend', u'doesnt', u'deter', u'sport', u'fan']
[u'loyalist', u'forc', u'report', u'mauritania', u'upris']
[u'arrest', u'wheeli', u'explos']
[u'die', u'road', u'crash']
[u'face', u'court', u'murder', u'charg']
[u'mauritania', u'leader', u'fate', u'unsur', u'coup']
[u'mayor', u'hope', u'woe']
[u'mayor', u'think', u'merger', u'unlik']
[u'mazen', u'determin', u'resum', u'contact', u'milit']
[u'rubbish', u'call', u'interst', u'final']
[u'receiv', u'bulk', u'honour']
[u'militia', u'clash', u'claim', u'live', u'congo']
[u'minist', u'play', u'wheat', u'virus', u'warn']
[u'minor', u'parti', u'dismiss', u'power', u'grab', u'senat', u'plan']
[u'miss', u'safe']
[u'mount', u'gambier', u'get', u'queen', u'birthday', u'honour']
[u'want', u'fair', u'compo', u'fisher']
[u'want', u'meet', u'sandbar', u'concern']
[u'mugab', u'stand', u'firm', u'rule']
[u'nake', u'throng', u'photograph', u'set', u'crowd', u'record']
[u'natwa']
[u'law', u'wouldnt', u'alter', u'tampa', u'situat', u'ruddock']
[u'museum', u'egyptian', u'treasur']
[u'korea', u'admit', u'nuclear', u'drive']
[u'govt', u'urg', u'protect', u'wheat', u'sale', u'iraq']
[u'ident', u'award', u'queen', u'birthday', u'honour']
[u'north', u'coaster', u'recognis', u'honour', u'list']
[u'nurs', u'train', u'fund']
[u'owen', u'wipe', u'portugues', u'nightmar', u'british']
[u'palestinian', u'group', u'defi', u'kill', u'isra']
[u'parker', u'spur', u'antonio', u'game']
[u'pecharroman', u'win', u'beloki', u'impress', u'euskal']
[u'philippin', u'polic', u'arrest', u'terrorist', u'player']
[u'pie', u'romp']
[u'plan', u'aim', u'streamlin', u'tourism', u'applic', u'process']
[u'poland', u'closer', u'join']
[u'poland', u'vote', u'join']
[u'polic', u'cadet', u'kill', u'pakistan', u'attack']
[u'polic', u'crack', u'holiday', u'road', u'safeti']
[u'polic', u'investig', u'beach', u'accid']
[u'polic', u'investig', u'disappear', u'attend']
[u'polic', u'maintain', u'road', u'safeti', u'blitz']
[u'polic', u'monitor', u'return', u'holiday', u'maker']
[u'polic', u'drink', u'driver']
[u'polic', u'probe', u'fatal', u'road', u'crash']
[u'polic', u'urg', u'safe', u'return', u'home']
[u'polic', u'warn', u'blowhol', u'fisher', u'care']
[u'polici', u'popular', u'decid', u'leader', u'crean']
[u'pollut', u'spread', u'cresco', u'fertilis', u'plant']
[u'pope', u'urg', u'famili', u'valu', u'path']
[u'powel', u'stand', u'trailer', u'claim']
[u'power', u'quak', u'felt', u'taiwan']
[u'govt', u'quiz', u'agenc', u'nurs']
[u'return', u'home', u'saudi', u'prison']
[u'queen', u'birthday', u'honour', u'educ', u'effort']
[u'queen', u'birthday', u'honour', u'gold', u'coast']
[u'queen', u'birthday', u'honour', u'announc']
[u'queen', u'birthday', u'honour']
[u'queen', u'birthday', u'honour', u'local']
[u'queen', u'birthday', u'honour', u'west', u'resid']
[u'queen', u'birthday', u'honour', u'riverina']
[u'queen', u'birthday', u'honour', u'south', u'west', u'local']
[u'queen', u'birthday', u'honour', u'list', u'announc']
[u'queensland', u'horseman', u'win', u'tamworth', u'event']
[u'race', u'spectat', u'urg', u'drive', u'home', u'safe']
[u'refuge', u'advoc', u'admit', u'mislead', u'email']
[u'refuge', u'close', u'obtain', u'perman', u'resid']
[u'rescu', u'british', u'rower', u'arriv', u'perth']
[u'resid', u'queen', u'birthday', u'honour']
[u'resid', u'powerlin', u'protest', u'beatti']
[u'rivkin', u'expect', u'jail', u'friday']
[u'rocket', u'take', u'rock', u'roll', u'water', u'space']
[u'rossi', u'lead', u'italian', u'podium', u'sweep']
[u'heat', u'rail', u'concern']
[u'sabbatini', u'keep', u'lead', u'rain', u'round']
[u'sabbatini', u'maintain', u'lead', u'rain', u'delay']
[u'santo', u'catch', u'leader', u'cruzeiro', u'brazil']
[u'silverton', u'resid', u'amaz', u'queen', u'birthday', u'honour']
[u'skinstad', u'call', u'join', u'springbok']
[u'season', u'good', u'start']
[u'soldier', u'jail', u'aceh', u'villag', u'beat']
[u'solomon', u'island', u'debt', u'reach']
[u'sorenstam', u'hold', u'stroke', u'lead', u'lpga']
[u'sorenstam', u'land', u'fifth', u'major', u'playoff']
[u'sorenstam', u'win', u'lpga', u'championship', u'fifth', u'major']
[u'spain', u'determin', u'bounc', u'shock', u'defeat']
[u'spain', u'mayo', u'tame', u'armstrong', u'dauphin']
[u'speed', u'fin', u'reduc', u'road', u'toll', u'say']
[u'sport', u'star', u'honour', u'queen', u'birthday']
[u'lanka', u'clinch', u'seri', u'chandana', u'spoil', u'lara']
[u'studi', u'find', u'diabet', u'link', u'potato']
[u'studi', u'show', u'cancer', u'link', u'cadmium']
[u'studi', u'consid', u'north', u'west', u'develop']
[u'survivor', u'crew', u'scout', u'pacif', u'island']
[u'tampa', u'crisi', u'prompt', u'maritim', u'chang']
[u'task', u'forc', u'finalis', u'water', u'restrict', u'report']
[u'town', u'herald', u'exampl', u'ban']
[u'judiciari']
[u'toowoomba', u'hospic', u'open', u'door']
[u'trial', u'alleg', u'bali', u'mastermind', u'continu']
[u'tribal', u'warrior', u'dock', u'sydney']
[u'tsvangirai', u'treason', u'trial', u'continu']
[u'expect', u'adopt', u'euro']
[u'promis', u'greater', u'care', u'weapon', u'intellig']
[u'envoy', u'endeavour', u'meet']
[u'envoy', u'leav', u'burma', u'earli']
[u'envoy', u'lobbi', u'junta', u'chief', u'releas']
[u'envoy', u'stay', u'burma']
[u'union', u'say', u'negoti', u'track']
[u'union', u'warn', u'leadership', u'tussl', u'turn', u'voter']
[u'mar', u'launch', u'delay']
[u'monkeypox', u'western', u'hemispher']
[u'prepar', u'help', u'argentina', u'powel']
[u'verkerk', u'leav', u'wonder', u'real', u'worth']
[u'opposit', u'reject', u'road', u'toll', u'claim']
[u'transport', u'overhaul']
[u'viticultur', u'effort', u'reward', u'queen', u'birthday']
[u'voss', u'rule', u'week']
[u'govt', u'pressur', u'chang', u'forest', u'plan']
[u'wallabi', u'stick', u'experiment', u'team']
[u'wallabi', u'smith', u'test', u'seri']
[u'waugh', u'sober', u'collect', u'birthday', u'honour']
[u'western', u'queensland', u'honour']
[u'wheat', u'farmer', u'urg', u'plough']
[u'wilson', u'port', u'saint', u'clash']
[u'woman', u'alleg', u'bedroom']
[u'world', u'impress', u'aust', u'respons', u'bali', u'bomb']
[u'young', u'produc']
[u'open', u'batsman', u'vermuelen', u'send', u'home', u'disgrac']
[u'levi', u'plan', u'age', u'care', u'bed']
[u'abar', u'say', u'drought', u'govt', u'sure']
[u'olympian', u'settl', u'damag', u'defam']
[u'review', u'rockhampton', u'district', u'boundari']
[u'milan', u'sign', u'cafu']
[u'alleg', u'fraud', u'uncov', u'aborigin', u'council']
[u'amc', u'rocki', u'plant', u'save', u'stakehold']
[u'ansett', u'levi', u'go', u'sooner', u'oppn']
[u'anthrax', u'probe', u'lead', u'maryland', u'pond']
[u'anti', u'social', u'behaviour', u'fare', u'evas']
[u'atsic', u'consid', u'legal', u'action', u'fund']
[u'australia', u'wide', u'wale', u'flatley']
[u'australian', u'actor', u'die', u'hollywood']
[u'australian', u'advis', u'avoid', u'mauritania']
[u'australian', u'evacu', u'liberia']
[u'babi', u'bonus', u'unfair', u'democrat']
[u'bacon', u'tightlip', u'bass', u'strait', u'ferri']
[u'bakeri', u'owner', u'appeal', u'fine']
[u'bank', u'defi', u'wall', u'street']
[u'barossa', u'valley', u'fast', u'food', u'outlet', u'anger', u'resid']
[u'beckham', u'hint', u'transfer']
[u'blair', u'defend', u'britain', u'euro', u'stanc']
[u'blue', u'prepar', u'best', u'gould']
[u'boat', u'plan', u'public', u'comment']
[u'brack', u'upset', u'wont', u'help', u'thank', u'troop']
[u'burk', u'comeback', u'hold', u'fail', u'fit', u'test']
[u'burk', u'push', u'retain', u'seat', u'lower', u'hous']
[u'busi', u'usual', u'bok', u'scot']
[u'call', u'pool', u'fenc', u'inspect']
[u'upgrad', u'kalgoorli', u'region', u'hospit']
[u'carmodi', u'remind', u'busi']
[u'central', u'aust', u'state', u'meet', u'justic']
[u'chief', u'justic', u'take', u'administr', u'tasmania']
[u'china', u'lead', u'world', u'newspap', u'sale', u'report']
[u'china', u'gorg', u'close', u'requir', u'level']
[u'clark', u'welcom', u'settlement']
[u'come', u'kyli', u'tell', u'brit']
[u'commission', u'downplay', u'katherin', u'crime', u'rise']
[u'communiti', u'urg', u'discuss', u'chang', u'elector']
[u'communiti', u'consult', u'histor', u'valu', u'tree']
[u'communiti', u'meet', u'discuss', u'refineri', u'health', u'concern']
[u'communiti', u'consult', u'road', u'closur']
[u'concern', u'rais', u'taxi', u'secur', u'camera']
[u'confid', u'start', u'schuettler', u'hall']
[u'consum', u'confid', u'fall', u'survey']
[u'continu', u'dredg', u'need', u'helen']
[u'coron', u'rule', u'leski', u'probe']
[u'council', u'consid', u'retir', u'villag', u'project']
[u'council', u'ditch', u'hour', u'secur', u'patrol', u'plan']
[u'council', u'unhappi', u'sunwat', u'water', u'restrict']
[u'crean', u'disappoint', u'hawk', u'stanc']
[u'crime', u'spree', u'finish', u'year', u'jail', u'sentenc']
[u'danih', u'say', u'demon', u'biggest', u'challeng', u'career']
[u'evid', u'link', u'year', u'rape', u'case']
[u'dog', u'bomb', u'sniffer']
[u'donat', u'climb', u'bendigo', u'tornado', u'victim']
[u'downer', u'concern', u'sydney', u'qaeda', u'link']
[u'apologis', u'fals', u'murder', u'charg']
[u'dragon', u'drop', u'riddel', u'girdler']
[u'driver', u'heed', u'polic', u'road', u'warn']
[u'driver', u'ignor', u'drink', u'drive', u'warn']
[u'tourism', u'attract', u'open', u'soon', u'break', u'hill']
[u'elect', u'surgeri', u'get', u'chop', u'wangaratta', u'hospit']
[u'elia', u'charg', u'sydney', u'shoot']
[u'engin', u'begin', u'flood', u'investig']
[u'england', u'itali', u'action', u'marathon', u'season', u'near']
[u'etchel', u'winner', u'look', u'bigger', u'challeng']
[u'euro', u'countdown', u'clock', u'unveil']
[u'expert', u'fish', u'inland', u'water', u'solut']
[u'farmer', u'urg', u'ignor', u'wheat', u'virus', u'report']
[u'ferri', u'cop', u'match']
[u'ferri', u'plead', u'guilti', u'danger', u'throw', u'charg']
[u'fevola', u'mckay', u'tribun']
[u'figur', u'improv', u'drought', u'affect', u'area']
[u'finnan', u'agre', u'liverpool', u'deal']
[u'flower', u'bloom', u'pakistan']
[u'ford', u'show', u'funni']
[u'forest', u'plan', u'delay', u'blame']
[u'balmain', u'star', u'elia', u'charg', u'sydney']
[u'gundagai', u'woman', u'die', u'india']
[u'command', u'seek', u'amnesti']
[u'qanta', u'worker', u'deni', u'qaeda', u'link']
[u'state', u'parliamentarian', u'receiv', u'state']
[u'forward', u'england', u'victori', u'zealand']
[u'arrest', u'thailand', u'embassi', u'bomb', u'plot']
[u'soldier', u'wound', u'iraq']
[u'frontbench', u'beazley', u'tomorrow']
[u'fund', u'commit', u'court', u'hous', u'upgrad']
[u'gambl', u'counsellor', u'prais', u'remov']
[u'german', u'tightrop', u'artist', u'spectacular', u'rhine']
[u'goldfield', u'crash', u'victim', u'name']
[u'gould', u'dismiss', u'home', u'grind', u'advantag']
[u'govern', u'thank', u'back', u'project']
[u'govt', u'concern', u'drug', u'dealer', u'claim', u'benefit']
[u'govt', u'criticis', u'slow', u'repons', u'transport']
[u'govt', u'scrap', u'ansett', u'levi']
[u'govt', u'spend', u'extend', u'mabthera', u'list']
[u'govt', u'spend', u'radar', u'technolog']
[u'goward', u'encourag', u'matern', u'allow', u'propos']
[u'great', u'barrier', u'reef', u'zone', u'consult', u'begin']
[u'green', u'urg', u'extra', u'assist', u'disadvantag']
[u'hama', u'leader', u'surviv', u'missil', u'strike', u'report']
[u'hama', u'vow', u'increas', u'attack', u'assassin']
[u'hama', u'vow', u'step', u'attack', u'assassin']
[u'hammer', u'boost', u'jam']
[]
[u'victim', u'award']
[u'home', u'loan', u'slight', u'declin']
[u'hunter', u'coal', u'export', u'asian']
[u'walk', u'home', u'dont', u'wimbledon', u'goran']
[u'increas', u'water', u'charg', u'possibl']
[u'inspir', u'john', u'wait', u'origin']
[u'interpret', u'access', u'hospit']
[u'investig', u'begin', u'truck']
[u'investig', u'continu', u'motorcycl', u'crash']
[u'iraqi', u'stall', u'sell', u'video', u'tortur']
[u'accid', u'prompt', u'call', u'tighter']
[u'jobless', u'rate', u'winter']
[u'john', u'fire', u'origin']
[u'kelpi', u'prove', u'record', u'sale']
[u'kempsey', u'council', u'discuss', u'draft', u'financi', u'plan']
[u'kidnapp', u'report', u'releas', u'staff', u'georgia']
[u'kid', u'club', u'attribut', u'reduc', u'crime']
[u'kiwi', u'pair', u'test', u'debut', u'england']
[u'kournikova', u'injuri', u'blow']
[u'labor', u'tear', u'apart', u'say', u'senat']
[u'lake', u'macquari', u'council', u'bring', u'budget']
[u'lewi', u'book', u'showdown', u'contend', u'klitschko']
[u'local', u'farmer', u'spark', u'pelletis', u'plant', u'idea']
[u'luton', u'investig', u'wimbledon', u'merger']
[u'fin', u'indec', u'act']
[u'face', u'court', u'ride', u'accid']
[u'serv', u'jail', u'time', u'throw', u'knife']
[u'market', u'send', u'wool', u'price', u'spin']
[u'mcgradi', u'disappoint', u'parent', u'hoon']
[u'menzi', u'readi', u'blue', u'kennedi']
[u'milan', u'berlusconi', u'back', u'away', u'beckham']
[u'minist', u'confid', u'green', u'paper', u'wont', u'affect']
[u'minist', u'put', u'famili', u'coff', u'visit']
[u'mobil', u'phone', u'coverag', u'improv']
[u'money', u'concern', u'hold', u'maralinga', u'handov']
[u'drink', u'driver', u'fatal', u'polic']
[u'morley', u'dupain', u'work', u'donat', u'canberra', u'galleri']
[u'motorbik', u'stunt', u'land', u'hospit']
[u'motorist', u'urg', u'headlight']
[u'ask', u'govt', u'address', u'sandbar', u'issu']
[u'partner', u'kill', u'accid']
[u'mysteri', u'distress', u'flare', u'spark', u'search']
[u'final', u'star', u'chase', u'olymp', u'gold']
[u'net', u'face', u'matchup', u'final']
[u'attract', u'hope', u'draw', u'visitor', u'qanta']
[u'coral', u'reef']
[u'featur', u'appl', u'grape', u'festiv']
[u'initi', u'help', u'council', u'maintain', u'local']
[u'jersey', u'home', u'hockey', u'silverwar']
[u'speed', u'camera', u'target', u'school']
[u'outpost', u'dismantl', u'israel']
[u'korea', u'nuclear', u'talk', u'good', u'say', u'downer']
[u'appoint', u'commission', u'rank']
[u'farmer', u'worri', u'prop', u'ail', u'aust']
[u'palestinian', u'shoot', u'outsid', u'jewish', u'settlement', u'armi']
[u'panther', u'rooster', u'breach', u'notic']
[u'parri', u'councillor', u'deni', u'agreement', u'merg']
[u'passeng', u'tax', u'better', u'safeti']
[u'petit', u'sway', u'doubl', u'jeopardi', u'argument']
[u'phillip', u'begin', u'redback']
[u'physic', u'trainer', u'dump', u'indian', u'cricket', u'team']
[u'pilbara', u'region', u'focus', u'intern']
[u'play', u'off', u'world', u'team']
[u'govt', u'propos', u'major', u'chang']
[u'polic', u'investig', u'serial', u'indec', u'expos']
[u'polic', u'look', u'knife', u'attack']
[u'public', u'reason', u'drug', u'refus']
[u'push', u'nurs', u'educ', u'chang']
[u'govt', u'urg', u'heed', u'doubl', u'jeopardi', u'petit']
[u'queen', u'birthday', u'honour', u'recognis', u'central']
[u'railway', u'line', u'caus', u'access', u'problem']
[u'ranger', u'portugues', u'star']
[u'region', u'growth', u'hop', u'rest', u'book']
[u'region', u'need', u'input', u'budget']
[u'road', u'upgrad', u'wyndham']
[u'netbal', u'world']
[u'busi', u'group', u'fight', u'wage', u'increas']
[u'growth', u'slow']
[u'school', u'student', u'return', u'suspens']
[u'scientist', u'releas', u'treatment', u'injur', u'race']
[u'scotland', u'lambert', u'quit', u'plan', u'hold']
[u'seagul', u'hope', u'bounc', u'ipswich']
[u'seven', u'soldier', u'dead', u'injur', u'aceh', u'violenc']
[u'simpson', u'daniel', u'strengthen', u'england']
[u'korea', u'reiter', u'nuclear', u'weapon', u'stanc']
[u'solar', u'cycl', u'challeng', u'light']
[u'sosa', u'basebal', u'appeal', u'begin', u'tuesday']
[u'lanka', u'presid', u'warn', u'accept']
[u'stoianov', u'pip', u'mcgee', u'dauphin', u'liber', u'stage']
[u'strike', u'grip', u'franc']
[u'stromlo', u'forest', u'receiv', u'memori', u'park']
[u'studi', u'find', u'fish', u'threat', u'seabird', u'food']
[u'surveil', u'camera', u'target', u'roma', u'spot']
[u'tamworth', u'attack', u'rob']
[u'look', u'adopt', u'anti', u'hoon', u'law']
[u'taxi', u'driver', u'speak', u'stab']
[u'teacher', u'leav', u'meekatharra', u'secur', u'concern']
[u'telstra', u'say', u'job']
[u'kashmir', u'violenc']
[u'think', u'tank', u'call', u'save', u'solomon']
[u'thornberri', u'challeng', u'green']
[u'road', u'long', u'weekend']
[u'time', u'tell', u'bush', u'say', u'iraq', u'weapon']
[u'tougher', u'check', u'airport', u'staff']
[u'tough', u'fight', u'duff', u'georgian', u'clash']
[u'tourism', u'industri', u'encourag', u'confer']
[u'tsvangirai', u'custodi', u'juli']
[u'tugger', u'give', u'joey', u'boy', u'advic']
[u'ullrich', u'happi', u'tour', u'warm']
[u'envoy', u'press', u'kyi', u'releas']
[u'envoy', u'push', u'kyi', u'releas']
[u'envoy', u'meet']
[u'univers', u'athlet', u'bind', u'coff']
[u'venus', u'play', u'itali']
[u'govt', u'say', u'tourism', u'campaign', u'success']
[u'virgin', u'allianc', u'streamlin', u'travel']
[u'voss', u'headland', u'surgeri']
[u'voter', u'beazley']
[u'voter', u'push', u'crean', u'beazley']
[u'waterfal', u'inquiri', u'hear', u'failur', u'implement']
[u'water', u'health', u'rise', u'colli', u'river']
[u'wheat', u'export', u'iraq', u'threat', u'vail']
[u'wild', u'brawl', u'gunnedah', u'polic', u'issu', u'summon']
[u'wildlif', u'servic', u'intak', u'expect', u'assist', u'region']
[u'woman', u'accus', u'smuggl', u'drug', u'prison']
[u'wood', u'clear', u'favourit', u'open']
[u'young', u'sapphir', u'shine', u'russia']
[u'zimbabw', u'chang', u'squad', u'seri']
[u'zone', u'chang', u'forc', u'commerci', u'fisher']
[u'worker', u'kidnap', u'peru']
[u'accc', u'wont', u'block', u'coke', u'neverfail']
[u'urg', u'investig', u'uranium']
[u'adelaid', u'sitter', u'caus', u'traffic', u'chao']
[u'boss', u'critcis', u'lion', u'dockland', u'complaint']
[u'boss', u'criticis', u'lion', u'dockland']
[u'play', u'pace', u'doubl', u'jeopardi', u'chang']
[u'say', u'loss', u'hurt', u'hotel']
[u'alleg', u'paedophil', u'appear', u'court']
[u'readi', u'origin', u'lang', u'park']
[u'consid', u'high', u'north', u'west', u'hous', u'cost']
[u'say', u'talk', u'stanwel', u'project']
[u'amrozi', u'pick', u'target', u'samudra']
[u'appeal', u'court', u'judg', u'step', u'fingleton', u'appeal']
[u'appeal', u'judg', u'stand', u'fingleton', u'case']
[u'asic', u'concern', u'capit', u'rais', u'approach']
[u'atsic', u'member', u'resign', u'govt', u'decis']
[u'australasian', u'tour', u'gaug', u'wale', u'progress', u'hansen']
[u'austral', u'rais', u'offer', u'bristil', u'share']
[u'batman', u'compet', u'world', u'athlet', u'championship']
[u'bennett', u'set', u'scene', u'origin', u'thriller']
[u'bennett', u'set', u'stage', u'origin', u'thriller']
[u'bennett', u'stay', u'gould', u'controversi']
[u'bennett', u'stay', u'controversi']
[u'turnout', u'quarri', u'reserv', u'meet']
[u'blix', u'hit', u'pentagon', u'bastard']
[u'blue', u'ahead', u'half', u'time']
[u'blue', u'point', u'lead', u'half', u'time', u'origin']
[u'bomber', u'welcom', u'pair', u'kangaroo', u'match']
[u'book', u'take', u'imparti', u'look', u'reef', u'catchment']
[u'border', u'communiti', u'seek', u'polic', u'station']
[u'brack', u'spend', u'anti', u'terror', u'prepar']
[u'bull', u'faith']
[u'feder', u'hemp', u'industri', u'fund']
[u'canberra', u'bushfir', u'inquiri', u'begin', u'monday']
[u'cancer', u'death', u'past', u'year']
[u'cargo', u'ship', u'deliv', u'food', u'frog', u'sound', u'space']
[u'carlton', u'pair', u'clear', u'tribun']
[u'cauldron', u'start', u'boil', u'origin', u'countdown']
[u'celtic', u'issu', u'green', u'white', u'light']
[u'civil', u'libertarian', u'question', u'privaci', u'law']
[u'civil', u'liberti', u'watchdog', u'rap', u'rooster']
[u'concern', u'air', u'indigen', u'council', u'financ']
[u'concern', u'rais', u'bali', u'child', u'trade']
[u'cosgrov', u'unsur', u'peacekeep', u'solomon']
[u'council', u'air', u'fund', u'concern']
[u'council', u'consid', u'form', u'aquat', u'centr', u'compani']
[u'council', u'get', u'foreshor', u'develop', u'plan']
[u'councillor', u'want', u'rethink', u'sand', u'dune', u'fenc']
[u'crean', u'stand', u'machin', u'latham']
[u'crow', u'lobbi', u'fixtur']
[u'davenport', u'play', u'eastbourn']
[u'develop', u'releas', u'apart', u'complex', u'plan']
[u'doc', u'smack', u'coerciv', u'medic', u'school', u'scheme']
[u'doubt', u'cast', u'polic', u'station', u'fund']
[u'downer', u'rule', u'sanction', u'burma']
[u'driver', u'warn', u'chang', u'surfer']
[u'drought', u'affect', u'farmer']
[u'dun', u'tuiavii', u'fin', u'brawl']
[u'egypt', u'ban', u'matrix', u'reload']
[u'confid', u'overcom', u'tiger', u'factor']
[u'emerg', u'dept', u'experi', u'long', u'weekend', u'woe']
[u'extrem', u'alert', u'add', u'need', u'alarm']
[u'farmer', u'question', u'abar', u'drought', u'report']
[u'farmer', u'seek', u'bushfir', u'coron', u'inquest']
[u'hunt', u'michael', u'jackson', u'bandit']
[u'feder', u'moral', u'boost', u'kafelnikov', u'dent']
[u'fiji', u'judg', u'rule', u'coup', u'accus', u'face', u'court']
[u'filmmak', u'will', u'censor', u'smoke']
[u'blood', u'john', u'domin', u'origin']
[u'blood', u'john', u'spoil', u'qlds', u'parti']
[u'fisher', u'protest', u'marin', u'park', u'zone', u'chang']
[u'fisher', u'want', u'holloway', u'meet', u'compo', u'decis']
[u'jail', u'medicar', u'fraud']
[u'foster', u'consid', u'strateg', u'option']
[u'foster', u'share', u'rise', u'stock', u'statement']
[u'gambl', u'counsellor', u'welcom', u'remov']
[u'gene', u'regul', u'canola', u'decis']
[u'good', u'thing', u'horizon', u'cattl', u'industri', u'report']
[u'govt', u'give', u'medic', u'research']
[u'govt', u'move', u'asio', u'deal']
[u'green', u'atsic', u'know', u'nyoongah', u'camp', u'closur']
[u'group', u'advoc', u'film', u'rat', u'smoke']
[u'group', u'gather', u'discuss', u'water', u'suppli']
[u'group', u'unveil', u'crash', u'memori']
[u'hama', u'leader', u'vow', u'earthquak', u'attack']
[u'hamilton', u'island', u'takeov', u'battl', u'continu']
[u'hantuchova', u'duck', u'clash']
[u'harrington', u'readi', u'lead', u'european', u'assault']
[u'headmast', u'suspend', u'year', u'say', u'sorri']
[u'high', u'cost', u'budget', u'initi']
[u'histori', u'help', u'bushfir', u'planner']
[u'hong', u'kong', u'alert', u'anthrax', u'death']
[u'hope', u'flight', u'boost', u'increas', u'visitor', u'number']
[u'hop', u'curfew', u'trial', u'address', u'street', u'crime']
[u'howard', u'say', u'iraq', u'weapon']
[u'hushovd', u'win', u'dauphin', u'stage', u'ahead', u'cook']
[u'stay', u'auxerr', u'say', u'ciss']
[u'imclon', u'founder', u'jail', u'year']
[u'mickey', u'mous', u'lewi', u'klitschko']
[u'impress', u'laport', u'tell', u'french', u'world', u'hope']
[u'indian', u'hockey', u'team', u'return', u'rous', u'welcom']
[u'indigen', u'leader', u'curb']
[u'industri', u'area', u'broadband', u'internet', u'servic']
[u'injuri', u'lion', u'turn', u'rooki', u'weller']
[u'islam', u'group', u'say', u'concern', u'grow', u'youth']
[u'islam', u'movement', u'deni', u'link', u'qaeda']
[u'israel', u'vow', u'continu', u'target', u'militia', u'leader']
[u'jam', u'nightmar', u'claim', u'goalkeep', u'legend']
[u'john', u'confid', u'timmin', u'deliv']
[u'jone', u'tight', u'lip', u'england']
[u'journalist', u'tell', u'tshirt', u'asean', u'forum']
[u'kasper', u'break', u'hick', u'hand']
[u'kazakhstan', u'prime', u'minist', u'resign']
[u'kidnapp', u'releas', u'hostag', u'peru']
[u'king', u'brother', u'unabl', u'answer', u'question']
[u'klitschko', u'breakfast', u'readi', u'lewi']
[u'knight', u'coach', u'happi', u'line', u'georg']
[u'labor', u'back', u'plan', u'intercept', u'north', u'korean', u'ship']
[u'latham', u'attack', u'beazley', u'support']
[u'leisur', u'centr', u'face', u'fund', u'shortfal']
[u'liberian', u'rebel', u'pull', u'central', u'monrovia']
[u'long', u'term', u'market', u'rat', u'year']
[u'love', u'draw', u'comfort', u'famili', u'latest', u'tragedi']
[u'macklin', u'expect', u'crean', u'cruis', u'victori']
[u'accus', u'flight', u'offenc', u'remov', u'court']
[u'await', u'sentenc', u'door', u'assault']
[u'court', u'scare']
[u'charg', u'possess', u'knife', u'flight']
[u'fin', u'drive', u'partner', u'bonnet']
[u'lose', u'appeal', u'murder', u'convict']
[u'question', u'perth', u'death']
[u'sentenc', u'life', u'jail', u'murder']
[u'readi', u'sell', u'beckham', u'snub', u'barca', u'deal']
[u'market', u'climb', u'gain', u'bank', u'news', u'corp']
[u'maroon', u'bennett']
[u'mass', u'grave', u'report', u'aceh']
[u'mayor', u'air', u'local', u'govt', u'reform', u'concern']
[u'mayor', u'highlight', u'develop', u'propos', u'consult']
[u'mckenzi', u'protea', u'squad', u'england']
[u'media', u'tycoon', u'lash', u'western', u'media', u'iraq']
[u'meet', u'reject', u'boundari', u'chang']
[u'meet', u'focus', u'water', u'restrict']
[u'crisi', u'meet', u'discuss', u'work', u'hour']
[u'minist', u'back', u'call', u'year', u'term']
[u'mobil', u'phone', u'face', u'pool', u'chang', u'room']
[u'good', u'news', u'tourism', u'industri']
[u'hydrotherapi', u'pool', u'talk', u'plan']
[u'question', u'state', u'meatwork']
[u'push', u'greater', u'homeswest', u'staff', u'power']
[u'nefert', u'buri', u'valley', u'king']
[u'net', u'side', u'refere', u'test']
[u'coach', u'elli', u'predict', u'wildcat', u'birth']
[u'zealand', u'gambl', u'team', u'meet', u'english']
[u'north', u'west', u'resid', u'urg', u'mozzi', u'awar']
[u'continu', u'investig', u'hepat', u'outbreak']
[u'hepat', u'probe', u'continu']
[u'offici', u'investig', u'vessel', u'intercept']
[u'spill', u'investig']
[u'pizza', u'hold', u'xenophobia']
[u'opec', u'keep', u'output', u'steadi']
[u'oppn', u'say', u'rivkin', u'avoid', u'jail']
[u'parent', u'question', u'answer', u'mass', u'suspens']
[u'parliament', u'reject', u'rat', u'reform']
[u'partick', u'sign', u'perth', u'pair']
[u'petrol', u'spill', u'clean']
[u'plane', u'hit', u'powerlin', u'near', u'gunnedah']
[u'play', u'underway', u'lang', u'park', u'origin']
[u'poki', u'king', u'criticis', u'remov']
[u'polic', u'wit', u'melbourn', u'murder']
[u'polic', u'claim', u'thai', u'suspect', u'plan', u'attack']
[u'polic', u'urg', u'public', u'tell', u'donkey']
[u'port', u'lobbi', u'darwin', u'match', u'plan']
[u'priest', u'lose', u'titl', u'attempt', u'consecr']
[u'fin', u'fan', u'violenc']
[u'govt', u'consid', u'indigen', u'govern', u'chang']
[u'racism', u'consid', u'barrier', u'polit']
[u'cross', u'say', u'bodi', u'remov', u'aceh']
[u'reid', u'luczak', u'queen']
[u'reservoir', u'killer', u'see', u'attack']
[u'resid', u'doubt', u'emiss', u'assur']
[u'retail', u'fume', u'lose', u'easter', u'busi']
[u'deal', u'boost', u'countri', u'servic']
[u'romario', u'aim', u'thousand', u'goal', u'mileston']
[u'ross', u'river', u'virus', u'caus', u'goldfield', u'concern']
[u'rumsfeld', u'call', u'unit', u'europ']
[u'rural', u'research', u'merger', u'scrap']
[u'scammer', u'prowl']
[u'schumach', u'retir', u'manag']
[u'serbia', u'secret', u'polic', u'chief', u'face', u'crime']
[u'sharon', u'vow', u'continu', u'target', u'hama', u'leader']
[u'shire', u'air', u'power', u'complaint', u'concern']
[u'shire', u'plan', u'east', u'kimberley', u'rate', u'rise']
[u'kill', u'train', u'collid', u'germani']
[u'skier', u'hiker', u'urg', u'check', u'hut', u'stand']
[u'skywest', u'defend', u'flight', u'reliabl']
[u'smith', u'declar', u'support', u'beazley']
[u'smith', u'join', u'swan', u'back', u'beazley']
[u'solomon', u'rebel', u'hostag', u'report']
[u'solo', u'rower', u'head', u'land']
[u'sosa', u'await', u'appeal', u'decis', u'cork']
[u'springer', u'seem', u'head', u'senat', u'contest']
[u'state', u'rail', u'say', u'psych', u'test', u'rigor']
[u'strike', u'result', u'riot', u'outsid', u'french', u'parliament']
[u'student', u'court', u'smoke', u'suspens']
[u'student', u'rais', u'cours', u'cost', u'concern']
[u'studi', u'find', u'educ', u'farmer', u'earn', u'money']
[u'studi', u'gaug', u'youth', u'elect', u'particip']
[u'support', u'seek', u'obourk', u'exhibit', u'centr']
[u'survey', u'highlight', u'farmer', u'uncertainti']
[u'survey', u'highlight', u'grow', u'busi', u'confid']
[u'govt', u'offer', u'taxi', u'secur', u'camera', u'reassur']
[u'tassi', u'fishermen', u'bemoan', u'lazi', u'lobster']
[u'team', u'zealand', u'waddel', u'turn', u'rugbi']
[u'thai', u'suspect', u'plan', u'attack', u'month', u'polic']
[u'tonga', u'court', u'tell', u'govt', u'allow', u'paper']
[u'treatment', u'scheme', u'aim', u'mental']
[u'tsvangirai', u'court', u'anti', u'govern', u'protest']
[u'tszyu', u'injur', u'train', u'world', u'titl', u'bout']
[u'stand', u'trial', u'ecstasi', u'bust']
[u'doctor', u'warn', u'sexual', u'health', u'crisi']
[u'announc', u'blix', u'replac']
[u'uncap', u'heenan', u'line', u'debut', u'say', u'jone']
[u'uncertainti', u'general', u'secur', u'irrig']
[u'union', u'boss', u'say', u'lose', u'seat', u'crean', u'win']
[u'univers', u'highlight', u'fund', u'woe']
[u'arrest', u'iraqi', u'suspect']
[u'stock', u'lift', u'wall']
[u'vcat', u'decid', u'residenti', u'develop']
[u'vettori', u'replac', u'macgil', u'nottinghamshir']
[u'govt', u'urg', u'connect']
[u'opposit', u'question', u'need', u'water', u'price', u'rise']
[u'voter', u'clear', u'polici', u'direct', u'crean']
[u'govt', u'voic', u'traffic', u'concern']
[u'join', u'phone', u'pool']
[u'warrnambool', u'ratepay', u'face', u'rat', u'rise']
[u'waugh', u'smith', u'face', u'wale']
[u'west', u'indi', u'rest', u'dillon', u'taylor']
[u'woman', u'maul', u'croc']
[u'woodford', u'appoint', u'team']
[u'woodward', u'name', u'unchang', u'line', u'black']
[u'vandal', u'damag', u'nation', u'park']
[u'abbott', u'defend', u'casual', u'work']
[u'aborigin', u'violenc', u'crisi', u'point', u'dodson']
[u'accc', u'claim', u'qanta', u'merger', u'decis']
[u'accus', u'murder', u'lose', u'famili', u'estat']
[u'drop', u'reconstruct', u'levi']
[u'unemploy', u'trend', u'increas']
[u'wont', u'budg', u'asio']
[u'wont', u'budg', u'asio']
[u'airport', u'plan', u'puzzl', u'council']
[u'airspac', u'group', u'back', u'safeti', u'concern']
[u'propos', u'mothbal', u'stanwel', u'plant']
[u'demerg', u'track']
[u'ralli', u'boost']
[u'amrozi', u'detail', u'involv', u'multipl', u'indonesian']
[u'push', u'releas', u'downer']
[u'asio', u'unlik', u'minor', u'parti', u'back']
[u'palestinian', u'kill', u'gaza', u'missil']
[u'atsic', u'review', u'focus', u'role', u'chang']
[u'australian', u'command', u'warn', u'iraq', u'unsaf']
[u'australian', u'inland', u'push', u'water', u'wise', u'messag']
[u'australian', u'satellit', u'launch']
[u'australian', u'help', u'choos', u'bali', u'amrozi']
[u'bangkok', u'plot', u'model', u'bali', u'blast', u'thai', u'govt']
[u'bankwest', u'takeov', u'give', u'thumb']
[u'beatti', u'refus', u'leadership', u'prefer']
[u'beazley', u'lash', u'latham']
[u'beckham', u'choos', u'real', u'barca', u'roberto']
[u'bendigo', u'council', u'consid', u'rate', u'rise']
[u'blame', u'injuri', u'lang', u'park']
[u'broadband', u'complaint', u'rise']
[u'buckley', u'bevi', u'star', u'return', u'injuri']
[u'burk', u'elect', u'leadership']
[u'butler', u'darwin', u'urg', u'closer', u'asian', u'tie']
[u'live', u'murray', u'probe']
[u'call', u'fast', u'track', u'bairnsdal', u'connect']
[u'canberra', u'resid', u'vision', u'transport']
[u'cash', u'incent', u'aim', u'boost', u'western', u'polic']
[u'charg', u'lay', u'sieg']
[u'chinatown', u'heritag', u'talk', u'continu']
[u'tap', u'inspector', u'help', u'iraq', u'weapon']
[u'citi', u'rail', u'crime', u'rat', u'rise']
[u'claim', u'coal', u'excav', u'littl', u'water', u'flow']
[u'claim', u'govt', u'help', u'tourism', u'develop']
[u'competit', u'lower', u'fuel', u'price', u'ract']
[u'congress', u'odd', u'weapon', u'intellig', u'inquiri']
[u'corbel', u'unveil', u'futur', u'vision', u'canberra']
[u'council', u'criticis', u'govt', u'nativ', u'titl', u'stanc']
[u'council', u'pay', u'levi', u'protest']
[u'council', u'predict', u'water', u'woe']
[u'council', u'consid', u'merger', u'possibl']
[u'council', u'combin', u'effort', u'secur', u'fund']
[u'court', u'back', u'decis', u'expel', u'student']
[u'crean', u'look', u'honour', u'colleagu']
[u'darwin', u'mayor', u'unsur', u'phone', u'ban']
[u'dawson', u'mehrten', u'england', u'clash']
[u'deadlin', u'hydrotherapi', u'pool', u'talk']
[u'dechi', u'distract', u'scream', u'queen', u'sharapova']
[u'dept', u'immigr', u'detain', u'illeg', u'worker']
[u'dippenaar', u'replac', u'injur', u'mckenzi']
[u'dockland', u'surfac', u'safe', u'boss']
[u'drought', u'good', u'cattl']
[u'earthquak', u'felt', u'tuggeranong']
[u'educ', u'dept', u'deni', u'neglect', u'remot', u'school']
[u'aussi', u'compet', u'open']
[u'guerrouj', u'dragila', u'czech', u'form', u'ostrava']
[u'emot', u'armstrong', u'take', u'control', u'time', u'trial']
[u'english', u'cricket', u'put', u'faith', u'vision']
[u'escap', u'spark', u'jail', u'secur', u'review']
[u'expert', u'surpris', u'secur', u'laps']
[u'fairbairn', u'avenu', u'receiv', u'upgrad']
[u'farmer', u'drought', u'applic', u'help']
[u'figur', u'highlight', u'high', u'prostat', u'cancer', u'rat']
[u'gold', u'worker', u'final', u'entitl']
[u'mayor', u'succumb', u'cancer']
[u'offic', u'manag', u'face', u'steal', u'charg']
[u'franc', u'claim', u'arrest', u'qaeda', u'leader']
[u'freeman', u'pull', u'french', u'athlet', u'meet']
[u'gallop', u'wont', u'beazley']
[u'gazza', u'certain', u'come', u'china', u'press']
[u'glen', u'inn', u'council', u'push', u'ahead', u'boundari']
[u'govt', u'urg', u'provid', u'greater', u'incent']
[u'graffiti', u'attack', u'polic', u'station']
[u'grain', u'research', u'stay', u'loxton']
[u'group', u'speak', u'inlet', u'concern']
[u'hamilton', u'ownership', u'struggl', u'heat']
[u'happi', u'owen', u'spain', u'drain', u'continu']
[u'auction', u'draw', u'limit', u'respons']
[u'head', u'roll', u'beatti']
[u'health', u'research', u'institut', u'get', u'boost']
[u'health', u'servic', u'breast', u'cancer', u'screen']
[u'hemp', u'claim', u'court', u'rule', u'enhanc', u'disrespect']
[u'hewitt', u'agassi', u'reward', u'queen']
[u'hewitt', u'reid', u'face', u'tough', u'competit']
[u'histori', u'open']
[u'hroc', u'urg', u'job', u'scheme']
[u'inquiri', u'aim', u'combat', u'report', u'crime']
[u'insur', u'council', u'elect', u'presid']
[u'iranian', u'protest', u'muslim', u'cleric']
[u'iraq', u'daili', u'retract', u'gang', u'rape', u'alleg']
[u'isra', u'armi', u'order', u'wipe', u'hama']
[u'libya', u'south', u'africa', u'say']
[u'king', u'restructur', u'busi', u'tie']
[u'kiwi', u'keen', u'return', u'karachi']
[u'knowledg', u'boost', u'teacher', u'tech', u'learn']
[u'labor', u'support', u'north', u'korea', u'cargo', u'intercept', u'propos']
[u'lang', u'park', u'surfac', u'scrutini']
[u'lead', u'contend', u'olympia', u'field']
[u'lockyer', u'catchment', u'centr', u'face', u'uncertain', u'futur']
[u'manag', u'defend', u'lang', u'park', u'surfac']
[u'die', u'crash', u'power', u'pole']
[u'fin', u'fish', u'sacr', u'site']
[u'face', u'steal', u'charg']
[u'mass', u'grave', u'mongolia']
[u'mckenzi', u'name', u'waratah', u'coach']
[u'medicar', u'servic', u'drop']
[u'meekatharra', u'alcohol', u'restrict', u'begin', u'soon']
[u'meet', u'discuss', u'mine', u'industri', u'condit']
[u'melbourn', u'jail', u'murder', u'brother']
[u'melbourn', u'white', u'suffer', u'setback', u'shin', u'injuri']
[u'merger', u'boundari', u'talk', u'agenda']
[u'middl', u'east', u'violenc', u'throw', u'peac', u'turmoil']
[u'miller', u'take', u'second', u'mile', u'franklin', u'prize']
[u'minist', u'clarifi', u'water', u'restrict']
[u'minist', u'outlin', u'detent', u'centr', u'work']
[u'miss', u'turner', u'work']
[u'monkeypox', u'toll', u'rise', u'offici']
[u'montpelli', u'swoop', u'kiwi']
[u'feder', u'support', u'seek', u'samag', u'project']
[u'indonesian', u'soldier', u'guilti', u'bash']
[u'cast', u'doubt', u'parliament', u'see', u'crime', u'petit']
[u'footbal', u'join', u'countri', u'team']
[u'multin', u'team', u'overse', u'bougainvill', u'power']
[u'murray', u'fall', u'abnorm', u'level']
[u'nation', u'galleri', u'victoria', u'open', u'decemb']
[u'nation', u'teenag', u'jobless', u'rate', u'fall']
[u'natta']
[u'net', u'edg', u'spur', u'level', u'final']
[u'rout', u'horizon']
[u'wetland', u'centr']
[u'eal', u'heenan', u'wallabi', u'debut']
[u'medic', u'school', u'time', u'frame', u'discuss']
[u'govt', u'target', u'abalon', u'black', u'market']
[u'opposit', u'propos', u'free', u'train', u'travel']
[u'unemploy', u'rise']
[u'time', u'pulitz', u'review']
[u'offici', u'harrington', u'bore', u'jibe']
[u'parishion', u'demand', u'return', u'atheist', u'pastor']
[u'patterson', u'delay', u'health', u'care', u'pact']
[u'phone', u'consid', u'self', u'help', u'grant']
[u'express', u'horror', u'east', u'attack']
[u'niec', u'presid', u'case', u'involv']
[u'tour', u'gladston', u'industri', u'sit']
[u'polic', u'associ', u'consid', u'offic', u'incent']
[u'polic', u'investig', u'crash']
[u'polic', u'rescu', u'strand', u'boati']
[u'powel', u'unawar', u'blix', u'smear', u'campaign']
[u'prosecut', u'director', u'lifetim', u'tenur', u'anomali']
[u'public', u'hear', u'examin', u'territori', u'crime']
[u'push', u'region', u'counti', u'council']
[u'qanta', u'suspend', u'flight', u'rome']
[u'unemploy', u'decreas']
[u'question', u'rais', u'geraldton', u'port', u'work']
[u'ranger', u'boss', u'shatter', u'dream', u'say', u'caniggia']
[u'cross', u'defend', u'bali', u'appeal']
[u'region', u'salin', u'level', u'scrutini']
[u'relat', u'servicemen', u'commemor', u'tragedi']
[u'relax', u'schumach', u'readi', u'race', u'canada']
[u'remiss', u'aust', u'detaine', u'saudi', u'arabia']
[u'report', u'highlight', u'project', u'concern']
[u'road', u'water', u'woe', u'consider']
[u'processor', u'get', u'russia', u'export', u'approv']
[u'rumsa', u'water', u'fail', u'dope', u'test']
[u'rumsfeld', u'patch', u'european', u'tie']
[u'ryle', u'dragon']
[u'safari', u'includ', u'west']
[u'safeti', u'bodi', u'investig', u'highway', u'land', u'strip']
[u'govt', u'leav', u'door', u'open', u'water', u'exempt']
[u'samoa', u'storm', u'home', u'upset', u'waratah']
[u'sand', u'kaolin', u'move', u'closer', u'realiti']
[u'sar', u'origin', u'mysteri']
[u'schooli', u'polic', u'spotlight']
[u'schuettler', u'titl', u'hop', u'end', u'hall']
[u'schwab', u'prais', u'hawthorn', u'rooki', u'brown']
[u'scream', u'queen', u'sharapova', u'warn', u'silenc', u'scream']
[u'search', u'continu', u'miss', u'teen']
[u'shadow', u'minist', u'call', u'strategi', u'tackl']
[u'shire', u'talk', u'merger', u'possibl']
[u'sister', u'face', u'vietnam', u'drug', u'trial']
[u'sister', u'jail', u'vietnam', u'drug', u'charg']
[u'southern', u'cross', u'consid', u'legal', u'action']
[u'southern', u'cross', u'consid', u'sue']
[u'state', u'help', u'stop', u'indigen', u'violenc', u'ruddock']
[u'rat', u'doubl', u'year', u'report']
[u'storm', u'take', u'toll', u'beach', u'eros']
[u'strike', u'disrupt', u'manufactur', u'sector', u'victoria']
[u'student', u'compet', u'select', u'school', u'seat']
[u'suspect', u'bali', u'mastermind', u'confront', u'victim']
[u'talli', u'free', u'play', u'despit', u'high', u'shoot', u'club', u'team']
[u'tamil', u'tiger', u'reject', u'peac', u'talk', u'offer']
[u'jobless', u'rate']
[u'territori', u'unemploy', u'worsen']
[u'boca', u'beat', u'america', u'libertador']
[u'tongan', u'paper', u'sale', u'month']
[u'toowoomba', u'hous', u'market', u'move', u'ahead']
[u'toyota', u'build', u'develop', u'centr', u'australia']
[u'toyota', u'invest', u'victoria']
[u'train', u'derail', u'truck', u'crash']
[u'report', u'kill', u'isra', u'missil', u'gaza']
[u'unemploy', u'fall']
[u'unemploy', u'fall', u'percent']
[u'unemploy', u'improv']
[u'unemploy', u'rate', u'drop']
[u'union', u'welcom', u'univers', u'nurs', u'cours']
[u'unit', u'accus', u'beck', u'betray', u'fan']
[u'ambassador', u'defend', u'attend', u'liber']
[u'militari', u'raid', u'iraqi', u'guerrilla', u'camp']
[u'open', u'cours', u'hole', u'hole']
[u'accus', u'withhold', u'inform']
[u'govt', u'evalu', u'freeway', u'bid']
[u'manufactur', u'strike', u'hit', u'hundr']
[u'victim', u'famili', u'like', u'tell', u'releas']
[u'victoria', u'trial', u'home', u'detent']
[u'unemploy', u'rate', u'remain', u'steadi']
[u'violenc', u'control', u'health', u'group']
[u'consid', u'appoint', u'time', u'children']
[u'wallabi', u'warn', u'improv', u'wale']
[u'water', u'crisi', u'meet', u'agenda']
[u'west', u'indi', u'prevent', u'lankan', u'sweep']
[u'prais', u'china', u'respons', u'sar']
[u'winemak', u'predict', u'industri', u'shake']
[u'woman', u'claim', u'cultur', u'dictat', u'role', u'arson']
[u'woman', u'jail', u'run', u'parent']
[u'woodward', u'prepar', u'wallabi', u'mind', u'game']
[u'workshop', u'focus', u'youth', u'crime']
[u'world', u'oldest', u'chocol', u'display']
[u'youni', u'lead', u'improv', u'pakistan', u'victori']
[u'arrest', u'puerto', u'rico', u'anti', u'drug', u'oper']
[u'accc', u'defend', u'block', u'power', u'station', u'sale']
[u'milan', u'play', u'beckham', u'totti', u'stam']
[u'defend', u'scrap', u'bushfir', u'levi']
[u'advisori', u'council', u'consid', u'remot', u'children']
[u'albanes', u'desert', u'crean']
[u'alleg', u'murder', u'grant', u'bail']
[u'agre', u'restructur', u'stanwel', u'project']
[u'prepar', u'suspend', u'stanwel', u'oper']
[u'anderson', u'open', u'nat', u'confer']
[u'armstrong', u'keep', u'dauphin', u'liber', u'lead']
[u'arteta', u'deni', u'seek', u'ranger', u'clearout']
[u'face', u'legal', u'action', u'player', u'payment']
[u'target', u'work', u'expens', u'claim']
[u'aussi', u'rumford', u'lead', u'franc']
[u'aussi', u'take', u'bangladesh', u'light', u'buchanan']
[u'australia', u'broaden', u'thai', u'travel', u'warn']
[u'australia', u'maintain', u'bougainvill', u'presenc']
[u'australia', u'open', u'busi', u'campaign', u'kick', u'soon']
[u'bacon', u'say', u'beazley', u'challeng', u'ridicul']
[u'banger', u'squad', u'australia', u'tour']
[u'barrichello', u'happi', u'ferrari']
[u'bateman', u'host', u'indigen', u'fish', u'meet']
[u'bear', u'look', u'consolid', u'dolphin']
[u'beatti', u'urg', u'labor', u'restraint']
[u'beazley', u'silent', u'happen', u'lose']
[u'boost', u'northern', u'radiat', u'therapist']
[u'borden', u'water', u'restrict', u'lift']
[u'break', u'hill', u'jobless', u'rate', u'fall']
[u'bryant', u'releas', u'hospit', u'shoulder']
[u'buckley', u'face', u'final', u'fit', u'test']
[u'button', u'clear', u'race', u'canadian', u'grand', u'prix']
[u'govt', u'clarifi', u'river', u'detail']
[u'cameron', u'reject', u'drought', u'claim']
[u'canadian', u'forgiv', u'wife', u'hire', u'hitman']
[u'canegrow', u'unhappi', u'restructur', u'delay']
[u'case', u'toowoomba', u'commerci', u'flight']
[u'celtic', u'boyd', u'call', u'quit']
[u'child', u'abus', u'confer', u'begin', u'today']
[u'chines', u'crewmen', u'grant', u'bail', u'trawler', u'skipper']
[u'clark', u'win', u'right', u'appeal', u'rape', u'alleg']
[u'coke', u'increas', u'neverfail']
[u'comedian', u'water', u'scar', u'shark']
[u'communiti', u'farewel', u'bendigo', u'liber']
[u'complet', u'date', u'seek', u'escarp', u'plan']
[u'concord', u'bind', u'museum']
[u'corrupt', u'bangladeshi', u'grant', u'refuge']
[u'council', u'await', u'word', u'kiss', u'point']
[u'council', u'clear', u'livestock', u'centr', u'tender']
[u'councillor', u'plan', u'offic']
[u'council', u'say', u'street', u'children', u'common', u'problem']
[u'council', u'lose', u'indoor', u'sport', u'centr', u'fund']
[u'council', u'welcom', u'fund', u'histor', u'ross', u'bridg']
[u'court', u'tell', u'serial', u'killer', u'outsid']
[u'dairi', u'farmer', u'consid', u'way', u'save', u'industri']
[u'suppli', u'get', u'lower']
[u'david', u'leagu', u'leader', u'real', u'sociedad']
[u'davi', u'fear', u'tour', u'humili', u'wale']
[u'death', u'penalti', u'debat', u'wast', u'time', u'say', u'mcginti']
[u'diplomat', u'demand', u'detain', u'report', u'lao']
[u'dont', u'come', u'beck', u'beckham', u'flop']
[u'dubbo', u'youth', u'treat', u'suspect', u'sar']
[u'educ', u'dept', u'strengthen', u'polici', u'suspens']
[u'guerrouj', u'beat', u'tilt']
[u'empir', u'rubber', u'staff', u'return', u'work']
[u'england', u'secur', u'fear', u'uefa', u'probe', u'turkey', u'crowd']
[u'explos', u'italian', u'passeng']
[u'feder', u'govt', u'network', u'plan']
[u'feder', u'fight', u'hall']
[u'ferrari', u'hope', u'speed', u'massa', u'return']
[u'fish', u'industri', u'predict', u'sar', u'bounc']
[u'fraser', u'get', u'life', u'sentenc', u'murder']
[u'german', u'scientist', u'licoric', u'combat', u'sar']
[u'giant', u'tower', u'energi', u'deal', u'take', u'shape']
[u'govt', u'criticis', u'address', u'religi']
[u'govt', u'depart', u'consid', u'onslow', u'youth', u'woe']
[u'gregan', u'warn', u'wallabi', u'underestim', u'welsh']
[u'group', u'say', u'accommod', u'need', u'elder']
[u'group', u'say', u'speed', u'trailer', u'work']
[u'health', u'review', u'chief', u'offer', u'servic', u'assur']
[u'herbert', u'world', u'chanc', u'boost']
[u'high', u'court', u'rule', u'favour', u'gulf', u'syndrom']
[u'high', u'hop', u'continu', u'aquacultur', u'growth']
[u'highway', u'plan', u'oppon', u'want', u'nois', u'studi']
[u'hobart', u'midwint', u'festiv', u'begin', u'tonight']
[u'hodg', u'consid', u'court', u'action', u'lang', u'park', u'injuri']
[u'hodg', u'rule', u'legal', u'action', u'origin', u'injuri']
[u'hundr', u'report', u'kill', u'latest', u'liberian']
[u'inquest', u'fatal', u'polic', u'shoot', u'wrap']
[u'inspir', u'watson', u'turn', u'clock']
[u'iran', u'leader', u'slam', u'meddl']
[u'iraqi', u'export', u'soon', u'announc']
[u'israel', u'target', u'hama', u'founder']
[u'ivanisev', u'injuri', u'throw', u'doubt', u'nottingham']
[u'john', u'farewel', u'state', u'funer']
[u'johnson', u'richmond']
[u'judici', u'offic', u'work']
[u'klitschko', u'upset', u'lewi']
[u'knight', u'laugh', u'thriller']
[u'knight', u'origin', u'clear', u'face', u'dragon']
[u'knight', u'slay', u'dragon']
[u'lacklustr', u'start', u'put', u'wood', u'foot']
[u'landhold', u'face', u'clear', u'charg']
[u'leaney', u'fourth', u'quigley', u'grab', u'open', u'lead']
[u'lewi', u'franci', u'hungri', u'success']
[u'lobster', u'group', u'call', u'cooper', u'fisher']
[u'long', u'term', u'market', u'rat', u'slide']
[u'magistr', u'dismiss', u'hotel', u'charg']
[u'convict', u'abalon', u'theft']
[u'get', u'year', u'lyneham', u'rape']
[u'face', u'court', u'drug', u'charg']
[u'mayor', u'say', u'immigr', u'ignor', u'communiti', u'concern']
[u'mayor', u'unhappi', u'flight', u'chang']
[u'men', u'health', u'forum', u'highlight', u'disast', u'relat', u'blue']
[u'worker', u'lock', u'wollongong']
[u'minist', u'deni', u'conceal', u'hepat', u'report']
[u'minist', u'impress', u'break', u'hill', u'busi']
[u'mix', u'emot', u'devil', u'stanley', u'victori']
[u'join', u'beazley', u'camp']
[u'mundin', u'air', u'crime', u'petit', u'worri']
[u'murder', u'victim', u'famili', u'seek', u'apolog']
[u'murray', u'gill', u'fish', u'end', u'today']
[u'nato', u'approv', u'major', u'defenc', u'chang']
[u'report', u'predict', u'tassi', u'catastroph']
[u'applic', u'expand', u'aquif', u'demand']
[u'sar', u'case', u'china', u'hong', u'kong']
[u'urg', u'review', u'insur']
[u'govt', u'defend', u'millennium', u'train']
[u'oppn', u'roast', u'govt', u'millennium', u'train']
[u'govt', u'say', u'stop', u'tourism', u'negat']
[u'minist', u'urg', u'interven', u'health']
[u'ombudsman', u'rule', u'probe']
[u'dead', u'cambodian', u'polic', u'open']
[u'opinion', u'poll', u'support', u'beazley', u'labor']
[u'opposit', u'call', u'inquiri']
[u'disput', u'wont', u'lead', u'world', u'boycott', u'gregan']
[u'pedestrian', u'hospit', u'cross', u'accid']
[u'pie', u'visit', u'remot', u'communiti']
[u'pioneer', u'journalist', u'david', u'brinkley', u'die']
[u'pipelin', u'ablaz', u'iraq', u'bomb', u'report']
[u'talk', u'gladston', u'futur']
[u'warn', u'expatri', u'israel']
[u'polic', u'compo', u'case', u'adjourn']
[u'policeman', u'leav', u'town', u'death', u'threat']
[u'polic', u'probe', u'cape', u'york', u'death']
[u'polic', u'raid', u'hell', u'angel', u'clubhous']
[u'polic', u'warn', u'sheep', u'theft']
[u'polic', u'withdraw', u'murder', u'charg']
[u'polic', u'wit', u'give', u'evid', u'murder', u'hear']
[u'polli', u'push', u'branch', u'rail', u'line', u'upgrad']
[u'portug', u'cours', u'euro', u'govern']
[u'luck', u'french', u'fisherman']
[u'power', u'welcom', u'experi']
[u'premier', u'sign', u'biotech', u'allianc']
[u'prime', u'air', u'concern', u'local', u'news']
[u'probe', u'launch', u'near', u'land', u'highway']
[u'project', u'establish', u'aborigin', u'languag']
[u'prosecutor', u'criticis', u'length', u'murder', u'trial']
[u'protest', u'shoot', u'dead', u'polic', u'cambodia']
[u'protest', u'continu', u'iranian', u'cleric', u'leader']
[u'protocol', u'announc']
[u'puma', u'local', u'knowledg', u'french', u'test', u'battl']
[u'govt', u'help', u'pipedream', u'hallam']
[u'shadow', u'cabinet', u'head', u'roma']
[u'quigley', u'watson', u'open', u'lead', u'leaney', u'trail']
[u'raikkonen', u'own', u'crash', u'mclaren']
[u'ramanauska', u'rush', u'bomber']
[u'randel', u'break', u'rugbi']
[u'rare', u'turtl', u'live', u'fossil']
[u'real', u'defeat', u'crown', u'sociedad', u'champion']
[u'real', u'readi', u'barg', u'barca', u'asid', u'beckham']
[u'recreat', u'centr', u'warn', u'mobil', u'phone']
[u'light', u'camera', u'deter', u'speedster']
[u'renew', u'call', u'health', u'strategi']
[u'research', u'institut', u'air', u'fund', u'concern']
[u'resid', u'feedback', u'council', u'plan']
[u'resid', u'honour', u'medal']
[u'rivkin', u'delay', u'jail', u'medic', u'certif']
[u'robson', u'plan', u'career', u'newcastl']
[u'roo', u'deal', u'bomber', u'final', u'hop', u'massiv', u'blow']
[u'roo', u'defus', u'bomber']
[u'rumsa', u'suspect', u'conspiraci', u'drug', u'charg']
[u'rumsfeld', u'warn', u'belgium', u'drop', u'crime', u'charg']
[u'govt', u'defend', u'time', u'magnesium', u'review']
[u'riverland', u'host', u'wetland', u'forum']
[u'urg', u'regul', u'river', u'flow']
[u'schumach', u'walk', u'away', u'want', u'todt']
[u'scot', u'springbok', u'keen', u'deliv', u'better', u'game']
[u'seach', u'continu', u'miss']
[u'serbian', u'polic', u'arrest', u'alleg', u'crimin']
[u'sevilla', u'tour', u'franc']
[u'sharapova', u'hand', u'wildcard']
[u'sharehold', u'warn', u'apathi']
[u'share', u'market', u'hit', u'month', u'high']
[u'shark', u'lose', u'chairman']
[u'sheldon', u'want', u'tougher', u'stanc', u'nightclub', u'drug']
[u'shire', u'plan', u'school', u'build']
[u'soccer', u'australia', u'board', u'crisi', u'head', u'court']
[u'sonar', u'gear', u'search', u'miss', u'pair']
[u'sorenstam', u'seek', u'straight', u'lpga', u'giant']
[u'spur', u'net', u'paint', u'pretti', u'final']
[u'state', u'territori', u'reject', u'govt', u'vocat']
[u'stockport', u'target', u'gascoign', u'report']
[u'stock', u'transport', u'seek', u'diesel', u'rebat']
[u'support', u'campus', u'medic', u'school']
[u'support', u'network', u'help', u'prevent', u'suicid']
[u'tafe', u'interim', u'manag']
[u'taxi', u'driver', u'talk', u'safeti', u'concern', u'minist']
[u'troubl', u'ahead', u'cash', u'farmer']
[u'coach', u'argentina', u'ramacciotti']
[u'thai', u'polic', u'arrest', u'carri', u'radioact']
[u'thoma', u'wale', u'debut', u'australia']
[u'tiger', u'johnson', u'blue', u'clash']
[u'timbercorp', u'reject', u'tough', u'time', u'predict']
[u'trawler', u'collis', u'inquest', u'hear', u'contradictori']
[u'troop', u'hundr', u'villag', u'rebel']
[u'troubl', u'cast', u'doubt', u'nigeria', u'world']
[u'tsvangirai', u'bail', u'rule', u'delay']
[u'islam', u'jihad', u'member', u'kill', u'sourc']
[u'union', u'fight', u'resid']
[u'union', u'say', u'health', u'clinic', u'worker', u'stress']
[u'build', u'hospit', u'educ', u'complex']
[u'ambassador', u'hop', u'anti', u'american']
[u'lay', u'blame', u'violenc', u'hama']
[u'peacekeep', u'exempt', u'prosecut']
[u'place', u'terror', u'inspector', u'foreign', u'seaport']
[u'troop', u'iraqi', u'kill', u'raid', u'terror']
[u'vcat', u'uphold', u'reject', u'tabletop', u'danc', u'venu']
[u'govt', u'consid', u'reticul', u'option']
[u'polic', u'evalu', u'tanner', u'claim']
[u'wag', u'case', u'lodg', u'age', u'care', u'nurs', u'rise']
[u'wale', u'think', u'beat', u'wallabi', u'coach']
[u'minist', u'warn', u'feder', u'health', u'packag', u'cost']
[u'pass', u'race', u'wager']
[u'water', u'corp', u'consid', u'drill']
[u'wealthi', u'rank', u'swell', u'australia']
[u'weather', u'internet', u'servic', u'launch', u'boati']
[u'wenger', u'houllier', u'hand', u'obe']
[u'whitlam', u'criticis', u'hawk', u'public', u'back']
[u'wife', u'murder', u'missionari', u'reject', u'assault']
[u'woman', u'crush', u'death', u'children']
[u'escap', u'nambour', u'high', u'school', u'danc']
[u'aborigin', u'tent', u'embassi', u'resid', u'rebuild']
[u'provid', u'offic', u'solomon', u'secur']
[u'amaq', u'demand', u'releas', u'report']
[u'armstrong', u'keep', u'dauphin', u'lead', u'despit', u'fall']
[u'austrian', u'chancellor', u'reject', u'idea', u'presid']
[u'barley', u'export', u'monopoli', u'continu']
[u'barrichello', u'fastest', u'canada', u'qualifi']
[u'beazley', u'confid', u'showdown', u'near']
[u'beckham', u'honour']
[u'bickley', u'join', u'club']
[u'blair', u'reshuffl', u'privi', u'appeal', u'process']
[u'british', u'court', u'uphold', u'gulf', u'syndrom', u'claim']
[u'bush', u'dismiss', u'call', u'middl', u'east', u'peacekeep']
[u'busi', u'price', u'declin']
[u'chepkemei', u'keen', u'world', u'champ']
[u'chines', u'crewman', u'grant', u'bail', u'trawler', u'skipper']
[u'chines', u'crewmen', u'charg', u'skipper', u'death']
[u'claim', u'screen', u'refuge', u'advoc', u'wast']
[u'coag', u'debat', u'health', u'care', u'agreement']
[u'coalit', u'complac', u'labor', u'woe', u'anderson']
[u'cold', u'snap', u'hit', u'perth']
[u'comalco', u'sign', u'massiv', u'alumina', u'contract', u'norsk']
[u'consum', u'confid', u'drop', u'spark', u'wall', u'street', u'sell']
[u'court', u'consid', u'fingleton', u'appeal']
[u'czech', u'vote', u'favour', u'join']
[u'duncan', u'delight', u'spur', u'seiz', u'lead']
[u'england', u'kick', u'histor', u'black']
[u'england', u'turn', u'macedonia', u'ticket']
[u'faction', u'battl', u'loom', u'lib']
[u'farmer', u'feder', u'support', u'murray', u'irrig']
[u'defend', u'civil', u'liberti', u'breach', u'sept']
[u'flood', u'leav', u'bangladeshi', u'homeless']
[u'flood', u'leav', u'homeless', u'india']
[u'charg', u'blackburn', u'bank', u'robberi']
[u'fresh', u'fight', u'aceh', u'forc', u'flee']
[u'gaddafi', u'move', u'privatis', u'libya', u'industri']
[u'goorjian', u'slam', u'salari', u'cut']
[u'govt', u'admit', u'millennium', u'train', u'advertis', u'bungl']
[u'green', u'defend', u'senat', u'record', u'block', u'bill']
[u'gregan', u'deliv', u'wale', u'warn']
[u'gunmen', u'assassin', u'tamil', u'politician']
[u'health', u'stand', u'hamper', u'polici', u'consum']
[u'heavi', u'snow', u'greet', u'resort']
[u'hewitt', u'relinquish', u'spot']
[u'hillari', u'boat', u'harbour', u'shop', u'destroy']
[u'hunger', u'strike', u'moroccan', u'journalist', u'near', u'death']
[u'imam', u'dismiss', u'rome', u'support', u'anti']
[u'immigr', u'backlog', u'clog', u'feder', u'court']
[u'indian', u'coupl', u'plung', u'airi', u'engag']
[u'iran', u'rock', u'anti', u'govern', u'protest']
[u'irrig', u'restrict', u'announc', u'murray', u'river']
[u'isra', u'palestinian', u'resum', u'secur', u'talk']
[u'israel', u'palestinian', u'await', u'diplomat', u'team']
[u'israel', u'target', u'weapon', u'warehous', u'attack']
[u'kevin', u'sorcer', u'summon', u'nessi']
[u'latest', u'isra', u'missil', u'strike', u'kill', u'injur']
[u'latham', u'soften', u'stanc', u'beazley', u'rooster']
[u'lawyer', u'access', u'hanger', u'collaps']
[u'leaney', u'loom', u'open']
[u'charg', u'ormond', u'murder']
[u'charg', u'murder', u'hotel', u'attack']
[u'die', u'fall', u'roof']
[u'hospitalis', u'geelong', u'assault']
[u'kill', u'griffith', u'accid']
[u'sentenc', u'polic', u'assault']
[u'mediat', u'call', u'resolv', u'west', u'bellambi']
[u'minardi', u'fight', u'surviv']
[u'iraqi', u'kill', u'militari', u'crackdown']
[u'join', u'beazley', u'camp']
[u'mosquito', u'hope', u'knock', u'cocki', u'rugbi', u'perch']
[u'nat', u'ethanol', u'blend', u'fuel']
[u'nat', u'simplifi', u'polici', u'stoner']
[u'nat', u'ethanol', u'blend', u'fuel', u'mandatori']
[u'constitut', u'aim', u'streamlin', u'european', u'union']
[u'nat', u'approv', u'corner', u'contest']
[u'give', u'principl', u'support', u'aust']
[u'polic', u'continu', u'search', u'bodi', u'fisherman']
[u'polic', u'investig', u'shepparton', u'assault']
[u'polic', u'raid', u'king', u'cross', u'busi']
[u'polic', u'search', u'suspect', u'supermarket', u'break']
[u'polic', u'search', u'western', u'cape', u'york', u'father']
[u'polic', u'investig', u'aborigin', u'tent', u'embassi']
[u'port', u'slam', u'saint', u'blue', u'docker', u'swan', u'triumph']
[u'public', u'memori', u'plan', u'peck']
[u'rat', u'expect', u'rise', u'percent']
[u'roger', u'moor', u'knight', u'chariti', u'work']
[u'rossi', u'snatch', u'provision', u'pole']
[u'royal', u'darwin', u'open', u'depart']
[u'ruddock', u'consid', u'toughen', u'visa', u'review', u'procedur']
[u'rumford', u'retain', u'lead']
[u'farmer', u'support', u'govt', u'water', u'alloc', u'plan']
[u'sailor', u'score', u'twice', u'wallabi', u'whack', u'welsh']
[u'sampra', u'say', u'play', u'french', u'open']
[u'scream', u'queen', u'sharapova', u'shriek', u'semi', u'final']
[u'shark', u'stop', u'valiant', u'tiger', u'eel', u'storm']
[u'sharon', u'offer', u'hama', u'ceasefir', u'deal', u'palestinian']
[u'soccer', u'stakehold', u'avoid', u'court']
[u'sorel', u'council', u'ask', u'rethink', u'oyster', u'leas']
[u'lanka', u'navi', u'sink', u'rebel', u'ship', u'fear', u'dead']
[u'stanhop', u'call', u'perman', u'resid', u'status']
[u'super', u'star', u'virgo', u'dock', u'darwin']
[u'sutherland', u'hospit', u'train', u'propos', u'run', u'rail']
[u'swift', u'strong', u'firebird']
[u'taiwan', u'report', u'sar', u'case', u'death']
[u'teacher', u'feder', u'vote', u'favour', u'strike']
[u'teacher', u'plan', u'industri', u'action', u'disput']
[u'teacher', u'vote', u'stop', u'work', u'negoti']
[u'teenag', u'kill', u'beaconsfield', u'accid']
[u'terrorist', u'attack', u'plan', u'apec', u'summit', u'thai']
[u'thousand', u'gather', u'buri', u'hama', u'leader']
[u'throw', u'bottl', u'break', u'tram', u'driver', u'nose']
[u'tidi', u'town', u'fund', u'withdraw']
[u'seed', u'feder', u'confirm', u'favourit', u'status']
[u'day', u'repair', u'damag', u'iraqi', u'pipelin']
[u'korea', u'ceremoni', u'relink', u'railway']
[u'diplomat', u'aim', u'quell', u'middl', u'east', u'violenc']
[u'troop', u'attack', u'iraqi', u'resist']
[u'troop', u'expect', u'iraqi', u'resist']
[u'vail', u'throw', u'support', u'ethanol']
[u'veteran', u'astronaut', u'lead', u'columbia', u'disast', u'task']
[u'vigilant', u'clear', u'street', u'iranian', u'student']
[u'virgin', u'blue', u'plan', u'intern', u'flight']
[u'wallabi', u'battl', u'past', u'wale']
[u'water', u'qualiti', u'concern', u'town', u'heavi', u'rain']
[u'lift', u'sar', u'warn', u'chines', u'provinc']
[u'lift', u'travel', u'warn', u'part', u'china']
[u'windi', u'lose', u'lawson']
[u'women', u'like', u'suffer', u'post', u'traumat', u'stress']
[u'world', u'disput', u'agenda']
[u'take', u'shoot', u'lead', u'ohio']
[u'kill', u'saudi', u'polic', u'clash', u'terror']
[u'aborigin', u'tent', u'embassi', u'futur', u'decid']
[u'wineri', u'record', u'product']
[u'albacet', u'real', u'zaragoza', u'promot', u'spanish']
[u'argentina', u'edg', u'franc']
[u'armstrong', u'strengthen', u'grip', u'dauphin']
[u'asago', u'end', u'sharapova', u'edgbaston']
[u'warn', u'compani', u'director', u'blitz']
[u'aussi', u'tesk', u'share', u'lead', u'sorenstam', u'rosal']
[u'aust', u'employ', u'criticis', u'resist', u'timor']
[u'australia', u'drop', u'flatley', u'disciplinari', u'reason']
[u'bayu', u'undan', u'project', u'get', u'final', u'approv']
[u'beckham', u'home', u'mull', u'futur']
[u'beck', u'stam']
[u'serv', u'roddick', u'roll', u'agassi']
[u'boomer', u'begin', u'olymp', u'build']
[u'boondal', u'charg', u'murder', u'hotel', u'death']
[u'brack', u'leav', u'drum', u'biotech', u'invest']
[u'british', u'solo', u'pacif', u'rower', u'rescu', u'japan']
[u'bulldog', u'good', u'eagl', u'rooster']
[u'burmes', u'govt', u'readi', u'releas']
[u'bush', u'concern', u'treatment', u'iranian']
[u'chemic', u'leak', u'fear', u'eyr', u'accid']
[u'crean', u'call', u'uniti', u'leadership', u'decid']
[u'crean', u'confid', u'victori', u'leadership', u'ballot']
[u'crown', u'casino', u'secur', u'staff', u'strike']
[u'cuba', u'honour', u'guevara', u'today']
[u'aim', u'world', u'record', u'babi', u'boom']
[u'darwin', u'leav', u'promot', u'tourism']
[u'democrat', u'urg', u'stand', u'firm', u'asio']
[u'diana', u'death', u'inquiri', u'open', u'report']
[u'eagl', u'destroy', u'lion', u'gabba']
[u'eagl', u'destroy', u'lion', u'gabba', u'hawk', u'crow']
[u'eccleston', u'buy', u'minardi', u'team']
[u'emerson', u'call', u'uniti', u'labor', u'leadership']
[u'famili', u'institut', u'want', u'debat', u'adopt', u'law']
[u'farmer', u'threaten', u'boycott', u'murray', u'levi']
[u'ford', u'celebr', u'birthday']
[u'sentenc', u'death', u'beij', u'taxi', u'driver']
[u'franc', u'fire', u'broadsid', u'polici']
[u'franc', u'prepar', u'life', u'zidan']
[u'franc', u'slam', u'rumsfeld', u'centr', u'vision', u'world']
[u'french', u'troop', u'congo']
[u'frustrat', u'feder', u'dig', u'deep', u'reach', u'final']
[u'general', u'say', u'saddam']
[u'girl', u'burn', u'parti', u'stabl', u'condit']
[u'govt', u'continu', u'anti', u'cannabi', u'campaign']
[u'govt', u'want', u'mobil', u'jam', u'devic', u'jail']
[u'green', u'question', u'crimin', u'check', u'refuge']
[u'hodgson', u'snatch', u'british', u'superbik', u'pole']
[u'hors', u'cull', u'support', u'environment', u'group']
[u'huxley', u'shin', u'queensland', u'samoa']
[u'indonesia', u'say', u'rebel', u'kill', u'aceh']
[u'intern', u'protocol', u'tighten', u'trade']
[u'investig', u'underway', u'nambour', u'school']
[u'investig', u'underway', u'death', u'fishermen']
[u'iranian', u'traffic', u'protest', u'democraci']
[u'iraqi', u'forc', u'chief', u'arrest', u'troop']
[u'isra', u'palestinian', u'offici', u'plan']
[u'isra', u'palestinian', u'talk', u'despit', u'violenc']
[u'jone', u'drop', u'flatley', u'england', u'match']
[u'koen', u'kick', u'springbok', u'victori']
[u'komornikov', u'break', u'breast', u'stroke']
[u'labor', u'lose', u'elect', u'beazley', u'smith']
[u'leaney', u'open', u'contend']
[u'lebanon', u'station', u'rocket', u'attack']
[u'liberian', u'rebel', u'rule', u'truce', u'presid']
[u'critic', u'abar', u'drought', u'comment']
[u'nat', u'broaden', u'appeal', u'confer', u'tell']
[u'york', u'venu', u'champion', u'leagu', u'final', u'repeat']
[u'stab', u'melbourn', u'birthday', u'parti']
[u'ireland', u'polic', u'defus', u'huge', u'bomb']
[u'decis', u'sunday', u'trade']
[u'norsk', u'hydro', u'alumina', u'deal', u'mean', u'job', u'comalco']
[u'opposit', u'call', u'reduct', u'stamp', u'duti']
[u'obyrn', u'pledg', u'support', u'crean', u'leadership']
[u'ottk', u'outpoint', u'stari', u'retain', u'titl']
[u'palestinian', u'isra', u'salvag', u'peac', u'plan']
[u'polic', u'miss', u'fishermen', u'boat']
[u'polic', u'teenag', u'kill', u'sydney', u'parti']
[u'polic', u'scan', u'seab', u'miss', u'father']
[u'pomp', u'queen', u'offici', u'birthday']
[u'powel', u'push', u'burma', u'north', u'korea', u'asean', u'forum']
[u'powel', u'urg', u'cycl', u'violenc']
[u'bloodstock', u'critic', u'level', u'cross']
[u'raider', u'take', u'bronco', u'light']
[u'ralf', u'claim', u'canadian', u'pole']
[u'road', u'camera', u'need', u'reduc', u'collis']
[u'rossi', u'put', u'heat', u'titl', u'rival']
[u'ruddock', u'reject', u'automat', u'stay', u'kosovar']
[u'rumford', u'close', u'omer', u'titl']
[u'sailor', u'silenc', u'critic', u'amaz']
[u'santo', u'get', u'green', u'light', u'timor', u'pipelin']
[u'sar', u'impact', u'tourism', u'commiss']
[u'search', u'underway', u'miss', u'kiama', u'fishermen']
[u'setback', u'liberian', u'ceasefir', u'plan']
[u'snow', u'fall', u'winter', u'festiv']
[u'sorri', u'hardest', u'word', u'ombudsman', u'tell', u'council']
[u'suarez', u'beat', u'sprem', u'vienna', u'final']
[u'sutherland', u'hospit', u'train', u'station', u'unlik', u'mayor']
[u'taffi', u'kasper', u'hand', u'england', u'scare']
[u'tassi', u'scottish', u'dancer', u'join', u'intern', u'fling']
[u'teenag', u'hospit', u'parti']
[u'tullamarin', u'booz', u'blitz', u'bag']
[u'arrest', u'ep', u'multipl', u'stab']
[u'injur', u'parti', u'explos']
[u'armi', u'raid', u'north', u'iraq', u'leav', u'dozen', u'dead']
[u'iraqi', u'arm', u'ignor', u'report']
[u'commit', u'middl', u'east', u'peac', u'plan']
[u'criticis', u'iran', u'student', u'arrest']
[u'militari', u'compound', u'iraq', u'attack', u'sourc']
[u'monitor', u'reviv', u'middl', u'east', u'peac', u'plan']
[u'mount', u'secur', u'sweep', u'iraqi', u'town']
[u'wale', u'chanc', u'slip', u'say', u'captain', u'william']
[u'wallabi', u'look', u'ahead', u'england', u'clash']
[u'warehous', u'circuss', u'futur', u'doubt']
[u'west', u'beach', u'damag', u'yacht', u'ship', u'contain']
[u'woman', u'kill', u'ferntre', u'gulli', u'crash']
[u'women', u'kill', u'port', u'augusta', u'crash']
[u'woodward', u'warn', u'england', u'better']
[u'year', u'stabl', u'parti', u'stab']
[u'kill', u'solomon', u'boat', u'attack']
[u'young', u'women', u'bing', u'drink', u'research', u'show']
[u'aborigin', u'affair', u'pioneer', u'die']
[u'aborigin', u'male', u'die', u'year', u'white', u'male']
[u'accc', u'welcom', u'launceston', u'airport', u'report']
[u'aceh', u'refuge', u'face', u'food', u'water', u'shortag']
[u'bushfir', u'inquest', u'start', u'septemb']
[u'aerial', u'survey', u'determin', u'wild', u'woe']
[u'player', u'small', u'increas']
[u'alleg', u'murder', u'high', u'blood', u'alcohol', u'level']
[u'anderson', u'fin', u'abus', u'refere']
[u'anti', u'smoke', u'treati', u'get', u'breath', u'life']
[u'aquacultur', u'fisheri', u'product', u'abar']
[u'argentina', u'continu', u'press', u'falkland', u'claim']
[u'armstrong', u'fire', u'warn', u'dauphin', u'liber']
[u'asean', u'foreign', u'minist', u'kyi', u'releas']
[u'asean', u'voic', u'concern', u'detent']
[u'assist', u'seek', u'polic', u'priest', u'bash']
[u'atlas', u'group', u'float', u'share']
[u'aussi', u'rumford', u'hold', u'maiden', u'tour', u'titl']
[u'aust', u'money', u'help', u'separatist', u'indonesia', u'say']
[u'aust', u'analyst', u'iraq', u'inquiri']
[u'aust', u'consid', u'initi', u'global', u'search']
[u'australian', u'survivor', u'night', u'bali', u'attack']
[u'bank', u'secur', u'adelaid', u'festiv', u'name', u'right']
[u'bennett', u'back', u'debut', u'blue', u'unchang']
[u'blue', u'confid', u'overcom', u'injuri']
[u'blue', u'unchang', u'bennett', u'name', u'debut', u'ahead']
[u'blue', u'unchang', u'origin']
[u'boost', u'valu', u'tamworth', u'rateabl', u'land']
[u'brabham', u'share', u'glori', u'bentley', u'boy', u'return']
[u'brilliant', u'dravid', u'save', u'scot']
[u'british', u'rower', u'chalk', u'solo', u'success']
[u'burgess', u'serv', u'term', u'chief']
[u'cabinet', u'hear', u'drainag', u'scheme', u'fund', u'option']
[u'check', u'industri', u'green', u'fee']
[u'lower', u'wool', u'levi']
[u'marin', u'park', u'plan', u'fish']
[u'mine', u'hall', u'fame', u'nomin']
[u'canadian', u'victori', u'take', u'schumach']
[u'carr', u'hand', u'match']
[u'casino', u'guard', u'work']
[u'casual', u'nurs', u'boost', u'hour', u'offer']
[u'chines', u'support', u'north', u'korea']
[u'chopper', u'difficulti', u'hamper', u'bodi', u'retriev']
[u'civil', u'libertarian', u'urg', u'block', u'asio']
[u'cole', u'tourism', u'associ', u'hop', u'free']
[u'collingwood', u'player', u'tour', u'indigen', u'communiti']
[u'comalco', u'sign', u'intern', u'deal']
[u'councillor', u'hear', u'public', u'drunken', u'concern']
[u'council', u'oppos', u'releas', u'canola']
[u'council', u'accus', u'govt', u'stack', u'cape', u'york']
[u'council', u'seek', u'meet']
[u'council', u'decid', u'resort', u'size']
[u'court', u'approv', u'takeov']
[u'crean', u'call', u'uniti', u'leadership', u'vote']
[u'crean', u'call', u'beazley', u'backer', u'support']
[u'crean', u'surviv', u'smith', u'resign']
[u'crean', u'reshuffl', u'frontbench', u'leadership']
[u'crean', u'win', u'smith', u'quit']
[u'croc', u'lure', u'signtragardh']
[u'croc', u'sign', u'rooki', u'tragardh']
[u'crown', u'secur', u'guard', u'walk']
[u'csiro', u'tag', u'fish', u'ocean', u'explor']
[u'dairi', u'farmer', u'face', u'tax', u'time']
[u'darwin', u'businessman', u'sue', u'govt']
[u'dee', u'remain', u'upbeat']
[u'democrat', u'seek', u'reef', u'protect']
[u'democrat', u'wont', u'support', u'sale', u'telstra']
[u'disput', u'hospit', u'action', u'public', u'holiday']
[u'doctor', u'back', u'gambier', u'surgeon']
[u'dubbo', u'youth', u'test', u'negat', u'sar', u'doctor']
[u'elmig', u'win', u'kanton', u'aargau', u'cycl', u'race']
[u'england', u'beat', u'black', u'world', u'woodward']
[u'farmer', u'armyworm']
[u'father', u'face', u'court', u'son', u'stab']
[u'feder', u'parliament', u'pay', u'tribut', u'wentworth']
[u'feder', u'win', u'hall', u'ideal', u'wimbledon', u'warm']
[u'govt', u'consid', u'water', u'save', u'idea']
[u'govt', u'explor', u'water', u'save', u'option']
[u'fiji', u'name', u'veteran', u'captain', u'australian', u'tour']
[u'firefight', u'jail', u'bushfir', u'arson']
[u'firefight', u'rais', u'chang', u'traffic', u'concern']
[u'firm', u'wind', u'farm', u'project']
[u'fish', u'death', u'prompt', u'coron', u'report']
[u'flatley', u'dump', u'option', u'jone']
[u'flatley', u'say', u'test', u'ax', u'fair']
[u'flood', u'displac', u'peopl', u'india']
[u'delay', u'adelaid', u'flight']
[u'fundrais', u'appeal', u'honour', u'crash', u'pilot']
[u'fund', u'help', u'address', u'domest', u'violenc', u'woe']
[u'sydney', u'properti', u'price', u'hike', u'predict']
[u'water', u'test', u'place']
[u'furyk', u'claim', u'open', u'leaney', u'second']
[u'furyk', u'hold', u'leaney', u'open', u'titl']
[u'furyk', u'win', u'leaney', u'seal', u'second']
[u'gaddafi', u'junior', u'hop', u'impress', u'perugia']
[u'prepar', u'need', u'pension']
[u'gerrard', u'close', u'anfield', u'deal']
[u'girl', u'save', u'brother', u'smithton', u'hous']
[u'global', u'warm', u'faster', u'think', u'scientist']
[u'golf', u'club', u'council', u'meet']
[u'greenpeac', u'urg', u'govt', u'sign', u'treati']
[u'group', u'share', u'fish', u'research', u'fund']
[u'group', u'urg', u'share', u'art', u'fund']
[u'hodgson', u'extend', u'superbik', u'lead']
[u'holden', u'begin', u'shift', u'elizabeth', u'plant']
[u'hoon', u'sting', u'anger', u'civil', u'liberti', u'resid']
[u'hope', u'decis', u'port', u'piri', u'project']
[u'horticultur', u'wastewat', u'recycl', u'scheme', u'launch']
[u'increas', u'wild', u'woe', u'blame', u'drought', u'fire']
[u'indigen', u'diseas', u'prevent', u'highlight']
[u'injur', u'marshal', u'black', u'william', u'clear']
[u'inquiri', u'bushfir', u'underway']
[u'inquiri', u'iraqi', u'intellig', u'need', u'wilki', u'say']
[u'intellig', u'group', u'confirm', u'iraqi', u'weapon']
[u'iran', u'say', u'dialogu', u'current', u'imposs']
[u'isra', u'armi', u'arrest', u'palestinian', u'cameramen']
[u'israel', u'stage', u'partial', u'gaza', u'pullback']
[u'wont', u'target', u'tour', u'ullrich']
[u'jail', u'man', u'convict', u'review']
[u'knight', u'injuri', u'end', u'newton', u'season']
[u'labor', u'leadership', u'vote', u'underway']
[u'laporta', u'barca', u'presid', u'beckham']
[u'latif', u'call', u'fan', u'behav']
[u'lawyer', u'say', u'oshan', u'deserv', u'substanti', u'payout']
[u'leaney', u'draw', u'comfort', u'best', u'major', u'show']
[u'littl', u'rain', u'predict', u'central', u'victoria']
[u'loot', u'work', u'steal', u'baghdad', u'exhibit']
[u'maitland', u'mayor', u'free', u'rape', u'charg']
[u'charg', u'palm', u'tree', u'fire']
[u'dead', u'footbal', u'match']
[u'die', u'lack', u'hospit', u'treatment', u'lawyer']
[u'burglari', u'assault', u'charg', u'get', u'hold', u'sentenc']
[u'walk', u'slowest', u'marathon', u'loch', u'ness']
[u'market', u'record', u'slight', u'rise', u'despit', u'wall', u'loss']
[u'maroochi', u'mayor', u'stalk', u'court', u'find']
[u'martin', u'repeat', u'nation', u'energi', u'polici']
[u'martin', u'push', u'nation', u'energi', u'polici']
[u'massiv', u'bomb', u'overshadow', u'crunch', u'irish', u'vote']
[u'mayor', u'wont', u'rule', u'merger']
[u'melburnian', u'watch', u'butt']
[u'charg', u'arm', u'robberi']
[u'million', u'spend', u'promot', u'game']
[u'miner', u'kill', u'china']
[u'mine', u'compani', u'confid', u'support']
[u'minist', u'tour', u'break', u'hill']
[u'miss', u'spinster', u'crown', u'thailand']
[u'mol', u'seal', u'ranger', u'deal']
[u'montgomeri', u'chamber', u'fresh', u'showdown']
[u'moora', u'look', u'oversea', u'investor']
[u'peacekeep', u'deploy', u'congo']
[u'check', u'murray', u'system']
[u'mukhla', u'face', u'bali', u'court']
[u'mysteri', u'race', u'yacht', u'sight', u'coff']
[u'nation', u'confer', u'bring', u'focus']
[u'nat', u'boost', u'elector', u'chanc', u'better']
[u'admir', u'sail', u'champion']
[u'life', u'brewarinna', u'pharmaci']
[u'north', u'west', u'jobless', u'figur', u'fall']
[u'tourism', u'group', u'predict', u'delay', u'recoveri']
[u'presum', u'dead', u'whale', u'rescu', u'attempt']
[u'call', u'tighter', u'bail', u'control']
[u'seek', u'senat', u'inquiri', u'intellig']
[u'pair', u'charg', u'trawl', u'death', u'bail', u'review']
[u'pakistani', u'drug', u'traffick', u'execut', u'saudi', u'arabia']
[u'palestinian', u'milit', u'consid', u'ceasefir']
[u'perri', u'answer', u'charg']
[u'perri', u'miss', u'origin']
[u'plan', u'report', u'dredg', u'oper']
[u'polic', u'continu', u'probe', u'bone']
[u'polic', u'minist', u'demand', u'explan', u'detain']
[u'polic', u'probe', u'fatal', u'crash']
[u'polic', u'search', u'driver']
[u'polic', u'search', u'speed', u'camera', u'attack']
[u'polic', u'seek', u'public', u'help', u'miss']
[u'polic', u'search', u'driver', u'parti']
[u'polic', u'crash', u'victim']
[u'polic', u'review', u'gulf', u'search', u'father']
[u'porto', u'crown', u'spectacular', u'season', u'portugues']
[u'princip', u'back', u'idea', u'crossbow', u'braveri', u'award']
[u'probe', u'launch', u'fisher', u'death']
[u'protest', u'continu', u'tehran']
[u'qanta', u'increas', u'flight']
[u'rain', u'stop', u'water', u'cart', u'plan']
[u'rain', u'ruin', u'lanka', u'tour', u'match']
[u'ralf', u'schumach', u'deni', u'give', u'michael', u'easi', u'ride']
[u'real', u'spanish', u'titl', u'race', u'wire']
[u'cross', u'desper', u'blood', u'donat']
[u'resid', u'ferri', u'cost', u'concern']
[u'resid', u'ralli', u'rescu', u'polic', u'station']
[u'roddick', u'king', u'queen']
[u'rooster', u'narrowli', u'defeat', u'cowboy']
[u'erupt', u'communiti', u'justic', u'group']
[u'consum', u'confid', u'declin', u'survey']
[u'sapphir', u'lose', u'czech', u'republ']
[u'scholarship', u'focus', u'natur', u'resourc', u'manag']
[u'seagul', u'bear', u'score', u'weekend', u'win']
[u'sewerag', u'seminar', u'curb', u'site', u'risk']
[u'shirvo', u'finish', u'fourth', u'franc']
[u'shirvo', u'fourth', u'franc']
[u'smith', u'answer', u'assault', u'charg']
[u'specul', u'surround', u'freeman', u'futur']
[u'spur', u'claim', u'crown']
[u'staff', u'crisi', u'patient', u'doctor', u'warn']
[u'state', u'rail', u'fail', u'safeti', u'flaw', u'waterfal']
[u'streak', u'return', u'spark', u'zimbabw', u'victori']
[u'student', u'busi', u'skill']
[u'suprem', u'court', u'decid', u'fijian', u'govt']
[u'survivor', u'testifi', u'amrozi', u'trial']
[u'assassin', u'plot', u'rumour', u'offici']
[u'sydney', u'face', u'murder', u'retrial', u'court']
[u'teacher', u'plan', u'industri', u'action']
[u'teacher', u'stop', u'work', u'rise', u'strategi']
[u'tesk', u'win', u'playoff', u'giant', u'eagl']
[u'timbercorp', u'reject', u'bluegum', u'claim']
[u'time', u'right', u'telstra', u'sale']
[u'tough', u'month', u'ahead', u'injuri', u'lion', u'matthew']
[u'tradit', u'work', u'complement', u'namatjira', u'show']
[u'transmiss', u'fault', u'disrupt', u'phone', u'line']
[u'trezeguet', u'stay', u'insist', u'moggi']
[u'troubl', u'totalcar', u'discuss', u'cabinet']
[u'truck', u'roll', u'camel', u'cross']
[u'hospit', u'motorcycl', u'crash']
[u'plead', u'guilti', u'abalon', u'charg']
[u'unveil', u'machin', u'generat', u'power']
[u'call', u'iran', u'allow', u'stricter', u'nuclear']
[u'union', u'seek', u'rail', u'project', u'critic']
[u'union', u'welcom', u'holden', u'hour', u'product']
[u'unit', u'state', u'domin', u'ireland', u'world', u'tune']
[u'tourist', u'card', u'lure', u'visitor']
[u'water', u'restrict', u'expect', u'impact']
[u'wine', u'industri', u'confid', u'grape', u'woe']
[u'wineri', u'market', u'push']
[u'woodbridg', u'near', u'doubl', u'record', u'hall']
[u'worker', u'consid', u'boost', u'work', u'ban']
[u'yarrowlumla', u'resid', u'prefer', u'small', u'communiti']
[u'zimbabwean', u'law', u'worker', u'strike']
[u'zimbabw', u'hang', u'convict', u'murder']
[u'million', u'spend', u'promot', u'alpin', u'resort']
[u'buri', u'russian', u'blast']
[u'million', u'lie', u'unclaim']
[u'aborigin', u'scheme', u'mask', u'true', u'jobless', u'rate']
[u'accus', u'tell', u'friend', u'hitman', u'plot', u'court', u'hear']
[u'assembl', u'unlik', u'rat', u'plan', u'dunda']
[u'rat', u'unlik', u'chang']
[u'administr', u'probe', u'waikeri', u'produc']
[u'present', u'plan', u'play', u'darwin']
[u'airlin', u'negoti', u'passeng', u'termin']
[u'alburi', u'council', u'hold', u'boundari', u'meet']
[u'alcohol', u'consider']
[u'black', u'dump', u'entir']
[u'alleg', u'drug', u'traffick', u'grant', u'bail']
[u'ord', u'hit', u'month', u'high']
[u'amrozi', u'call', u'testifi', u'bashir', u'trial']
[u'argentinian', u'lawyer', u'swear', u'chief', u'prosecutor']
[u'arsenal', u'unit', u'champion', u'leagu']
[u'asean', u'stop', u'short', u'demand', u'releas']
[u'atapattu', u'slam', u'half', u'centuri', u'tour', u'game']
[u'atsic', u'brewarrina', u'organis']
[u'aussi', u'domin', u'english']
[u'aust', u'talk', u'nauru', u'pacif', u'solut']
[u'australia', u'thailand', u'sign', u'agreement', u'tackl']
[u'bali', u'fund', u'alloc', u'kick', u'teeth', u'survivor']
[u'bali', u'survivor', u'criticis', u'appeal', u'handl']
[u'bali', u'terror', u'warn', u'specul', u'say']
[u'bali', u'victim', u'surpris', u'warn', u'revel']
[u'bayview', u'haven', u'charg', u'arm', u'robberi']
[u'beazley', u'challeng', u'show', u'lack', u'judgment', u'howard']
[u'beckham', u'real', u'report']
[u'bentley', u'revel', u'man', u'decid', u'futur']
[u'blacktown', u'council', u'back', u'develop']
[u'board', u'hous', u'owner', u'afford']
[u'bowen', u'make', u'origin']
[u'brown', u'slam', u'labor', u'support', u'asio']
[u'bullet', u'sign', u'veteran', u'ree']
[u'burnett', u'farmer', u'interim', u'drought']
[u'calder', u'work', u'near', u'finish']
[u'barossa', u'road', u'upgrad']
[u'focus', u'youth', u'problem']
[u'mayor', u'allow']
[u'rescu', u'vehicl', u'train', u'staff']
[u'school', u'base', u'hepat', u'educ']
[u'cancellara', u'pip', u'mcgee', u'tour', u'switzerland', u'open']
[u'carnarvon', u'home', u'revamp']
[u'carr', u'admit', u'train', u'budget', u'blowout']
[u'carr', u'hand', u'match']
[u'consid', u'pager', u'altern']
[u'charg', u'expect', u'polic', u'jail', u'oper']
[u'china', u'execut', u'includ', u'kill']
[u'china', u'man', u'space', u'flight', u'ahead']
[u'communiti', u'comment', u'seek', u'speedway', u'plan']
[u'communiti', u'group', u'urg', u'chang', u'asio']
[u'compromis', u'reach', u'water', u'levi']
[u'concern', u'air', u'indigen', u'legal', u'represent']
[u'congoles', u'militiamen', u'kill', u'french', u'troop']
[u'blast', u'tarkin', u'log', u'plan']
[u'corrupt', u'alleg', u'resolv']
[u'costa', u'address', u'newcastl', u'busi', u'club']
[u'council', u'merger', u'talk', u'agenda']
[u'council', u'refus', u'demolit', u'approv', u'wellington']
[u'council', u'consid', u'merger', u'altern']
[u'court', u'tell', u'bashir', u'visit', u'muslim', u'rebel']
[u'crean', u'prove', u'leadership', u'strength']
[u'crean', u'ralli', u'campaign', u'hard']
[u'crow', u'sign', u'ricciuto', u'hart']
[u'dairi', u'open', u'propos', u'avoid', u'crisi']
[u'deadlin', u'near', u'entri']
[u'deegan', u'appal', u'handl', u'bali', u'advic']
[u'demon', u'stand', u'neitz']
[u'deputi', u'premier', u'avoid', u'pulp', u'claim']
[u'doctor', u'group', u'welcom', u'indemn', u'packag']
[u'doctor', u'urg', u'govt', u'subsidis', u'vaccin']
[u'doubt', u'hang', u'prime', u'news', u'tamworth']
[u'downer', u'talk', u'timores', u'secur']
[u'downer', u'warn', u'public', u'oppn']
[u'downer', u'warn', u'bali', u'attract', u'target']
[u'educ', u'union', u'critic', u'govt']
[u'elliott', u'slam', u'schifcofsk', u'snub']
[u'nino', u'weaken']
[u'england', u'name', u'squad', u'wallabi', u'clash']
[u'expo', u'antisoci', u'behaviour', u'begin', u'haast', u'bluff']
[u'farmer', u'duck', u'problem']
[u'porto', u'agre', u'capucho', u'ranger']
[u'feder', u'parliament', u'hear', u'ararat', u'overpass', u'plea']
[u'ferrari', u'presid', u'hail', u'schumach']
[u'finger', u'surgeri', u'recommend', u'injur', u'harbhajan']
[u'alic', u'darwin', u'train', u'januari']
[u'intern', u'crime', u'prosecutor', u'swear']
[u'fisheri', u'minist', u'seek', u'harmoni', u'approach']
[u'fletcher', u'blue']
[u'fletcher', u'thrill', u'blue']
[u'australian', u'open', u'champ', u'johansson']
[u'jessica', u'lynch', u'lure', u'book', u'movi', u'deal']
[u'minist', u'weapon', u'claim']
[u'forum', u'focus', u'advocaci', u'servic']
[u'fund', u'alloc', u'famous', u'indigen', u'artist']
[u'furyk', u'look', u'futur', u'confid']
[u'garbo', u'return', u'work', u'talk', u'continu']
[u'girl', u'rescu', u'brother', u'housefir']
[u'govt', u'consid', u'veteran', u'entitl']
[u'govt', u'urg', u'explain', u'bali', u'intellig', u'report']
[u'grainco', u'graincorp', u'merg']
[u'green', u'concern', u'air', u'sand', u'plan']
[u'green', u'skip', u'metr', u'championship']
[u'haa', u'pull', u'wimbledon']
[u'heal', u'olymp', u'comeback', u'trail']
[u'hewitt', u'face', u'earli', u'wimbledon', u'barrag']
[u'heynck', u'tip', u'schalk']
[u'high', u'hop', u'tilt', u'train', u'commut', u'servic']
[u'hizbollah', u'fire', u'isra', u'warplan', u'wit']
[u'hundr', u'iraqi', u'detain', u'raid']
[u'deserv', u'punish', u'casino', u'scuffl', u'neitz']
[u'india', u'wast', u'dump', u'grind']
[u'indian', u'breed', u'beetl', u'egg', u'bodi']
[u'industri', u'group', u'call', u'reserv']
[u'promis', u'deliv', u'beckham', u'say', u'laporta']
[u'intern', u'shock', u'level', u'reef', u'protect']
[u'fail', u'resolv', u'work', u'condit']
[u'irrig', u'discuss', u'water', u'alloc', u'cut']
[u'irrig', u'water', u'theft', u'charg', u'dismiss']
[u'japan', u'threaten', u'withdraw', u'whale', u'bodi']
[u'kewel', u'set', u'arsenal', u'talk']
[u'klug', u'elect', u'flinder', u'mayor']
[u'labor', u'back', u'asio', u'power']
[u'labor', u'reshuffl', u'agenda', u'leadership', u'ballot']
[u'launceston', u'mayor', u'quiet', u'manag', u'decis']
[u'propos', u'automat', u'parol']
[u'leed', u'confirm', u'kewel', u'talk', u'arsenal']
[u'legisl', u'approv', u'replac', u'medic']
[u'legisl', u'assembl', u'committe', u'queri', u'budget']
[u'lifelin', u'theatr']
[u'lowi', u'meet', u'juli']
[u'court', u'kidnap', u'assault', u'charg']
[u'jail', u'assault']
[u'surviv', u'garbag', u'truck', u'crush']
[u'face', u'court', u'cabbi', u'attack']
[u'manufactur', u'survey', u'highlight', u'futur', u'confid']
[u'marathon', u'arthur']
[u'maroochi', u'mayor', u'hop', u'court', u'verdict', u'restor']
[u'mclaren', u'coulthard', u'notic', u'perform']
[u'mcleod', u'hospit', u'knee', u'surgeri']
[u'medibank', u'privat', u'stay', u'govt', u'hand']
[u'millmerran', u'choos', u'hardwood', u'trial']
[u'offer', u'xstrata', u'chanc', u'diversifi', u'mayor', u'say']
[u'missil', u'defenc', u'shield', u'agenda', u'aust', u'talk']
[u'miss', u'businessman', u'warn', u'diamond', u'deal']
[u'polic', u'consid', u'western', u'post']
[u'muckert', u'fight', u'charg']
[u'child', u'tortur', u'case', u'say', u'mean']
[u'nairn', u'air', u'concern']
[u'neitz', u'expect', u'fine', u'casino', u'scuffl']
[u'neitz', u'casino', u'secur', u'scuffl']
[u'irish', u'protest', u'leader', u'trimbl', u'win', u'parti', u'vote']
[u'specialist', u'disput']
[u'major', u'worri', u'upbeat', u'tiger']
[u'sign', u'perec', u'french', u'head', u'coach']
[u'surpris', u'bing', u'drink', u'studi']
[u'govt', u'delay', u'water', u'share', u'plan']
[u'govt', u'minist', u'converg', u'break', u'hill']
[u'educ', u'posit']
[u'hawaiian', u'team', u'shin', u'outrigg', u'comp']
[u'trafford', u'stage', u'england', u'euro', u'qualifi']
[u'olymp', u'champion', u'cameroon', u'begin']
[u'parti', u'heavyweight', u'undermin', u'burk']
[u'patern', u'test', u'rock', u'lobster']
[u'pilot', u'follow', u'procedur', u'report', u'find']
[u'urg', u'public', u'welcom', u'home', u'troop']
[u'polic', u'hunt', u'video', u'store', u'arm', u'bandit']
[u'polic', u'pleas', u'safeti', u'messag', u'get']
[u'polic', u'releas', u'name', u'dead', u'fishermen']
[u'polic', u'review', u'search', u'father']
[u'polic', u'think', u'skeleton', u'mysteri', u'solv']
[u'polic', u'tell', u'victim']
[u'potter', u'book', u'fall', u'truck']
[u'privat', u'famili', u'funer', u'billi', u'wentworth']
[u'profish', u'happi', u'move', u'stop', u'illeg', u'fish']
[u'public', u'get', u'water', u'restrict', u'remind']
[u'public', u'meet', u'consid', u'samag', u'concern']
[u'purvi', u'appeal', u'stalk', u'fine']
[u'push', u'inquiri', u'iraqi', u'weapon', u'intellig']
[u'honey', u'firm', u'sign', u'sweet', u'deal', u'argentina']
[u'rail', u'bypass', u'meet', u'agenda']
[u'rain', u'delay', u'water', u'restrictionsfor']
[u'cross', u'call', u'blood', u'donat']
[u'reef', u'zone', u'chang', u'explain']
[u'report', u'highlight', u'asylum', u'seeker', u'uncertainti']
[u'retir', u'opt', u'spend', u'save']
[u'rioli', u'match']
[u'erupt', u'veteran', u'pension']
[u'ruddock', u'accus', u'mislead', u'parliament']
[u'ruddock', u'deni', u'mislead', u'parliament']
[u'rustu', u'pledg', u'eventu', u'return', u'barca', u'go']
[u'sailor', u'free', u'return', u'china']
[u'sapphir', u'beat', u'czech', u'republ', u'time']
[u'schalken', u'srichaphan', u'open', u'victori']
[u'school', u'associ', u'urg', u'improv', u'teacher', u'screen']
[u'scientist', u'consid', u'global', u'warm', u'rethink']
[u'senat', u'inquiri', u'probe', u'republ', u'option']
[u'senat', u'vote', u'island', u'excis', u'propos']
[u'sniper', u'kill', u'soldier', u'baghdad']
[u'softwood', u'boost', u'bombala', u'job']
[u'speed', u'limit', u'question', u'wagga', u'wagga']
[u'spur', u'point', u'titl']
[u'lanka', u'draw', u'rain', u'match', u'windi']
[u'lankan', u'lose', u'stay', u'australia']
[u'stab', u'instant', u'reaction', u'court', u'hear']
[u'staff', u'shortag', u'threaten', u'cancer', u'patient']
[u'statist', u'popul', u'shift']
[u'support', u'affect', u'suicid', u'examin']
[u'survey', u'highlight', u'wool', u'salin', u'woe']
[u'freedom', u'asean', u'agenda']
[u'talk', u'focus', u'wetland', u'plan']
[u'govt', u'seek', u'hobart', u'auckland', u'flight']
[u'minist', u'discuss', u'pulp', u'timber', u'boss']
[u'terror', u'attack', u'western', u'citi', u'matter', u'time']
[u'thousand', u'mourner', u'tribut', u'peck']
[u'ticket', u'sale', u'slow', u'confeder']
[u'toddler', u'score', u'million', u'dollar', u'basketbal', u'deal']
[u'tongan', u'train', u'gold', u'coast']
[u'totalcar', u'industri', u'shut']
[u'tough', u'parol', u'law', u'offend']
[u'truck', u'driver', u'guilti', u'kill']
[u'union', u'boost', u'group', u'home', u'campaign']
[u'senat', u'question', u'intellig']
[u'brief', u'govt', u'missil', u'defenc', u'cooper']
[u'govt', u'reject', u'rail', u'standardis']
[u'preschool']
[u'video', u'urg', u'indigen', u'youth', u'quit', u'smoke']
[u'volunt', u'need', u'protect', u'shark']
[u'wale', u'great', u'self', u'belief', u'llewellyn']
[u'watkin', u'dobson', u'agre', u'polic', u'train', u'improv']
[u'wool', u'grower', u'face', u'salin', u'woe']
[u'whale', u'sanctuari', u'propos', u'expect', u'fail']
[u'lift', u'taiwan', u'travel', u'warn']
[u'wild', u'concern', u'blame', u'inadequ', u'control']
[u'windi', u'uncap', u'taylor', u'lanka', u'test']
[u'woman', u'appear', u'court', u'miss', u'father']
[u'women', u'children', u'escap', u'tell', u'kidnap', u'ordeal']
[u'wright', u'miss', u'season', u'start', u'freak']
[u'xstrata', u'forc', u'coal', u'product']
[u'farewel', u'pioneer', u'monkey']
[u'dead', u'pakistan', u'heatwav']
[u'sugar', u'plant', u'job', u'factori', u'close']
[u'bodi', u'exhum', u'bosnian', u'mass', u'grave']
[u'academ', u'speak', u'gross', u'case']
[u'pass', u'year']
[u'adelaid', u'firefight', u'prais', u'quick', u'action']
[u'alleg', u'peopl', u'smuggler', u'charg', u'drop']
[u'conced', u'small', u'investor', u'ignor', u'capit']
[u'angler', u'fin', u'crayfish']
[u'asean', u'forum', u'urg', u'unit', u'terror']
[u'atom', u'survivor', u'group', u'call', u'chang']
[u'atsic', u'crisi', u'point', u'panel', u'find']
[u'aust', u'whale', u'sancturi', u'fail', u'gain', u'support']
[u'australia', u'cambodia', u'work']
[u'bacon', u'unawar', u'hobart', u'airport']
[u'bali', u'victim', u'father', u'call', u'inquiri', u'warn']
[u'bargain', u'milk', u'price']
[u'beckham', u'bid', u'unit', u'alex', u'farewel']
[u'beckham', u'confirm', u'real', u'deal']
[u'berlusconi', u'court', u'defend', u'corrupt', u'charg']
[u'campaign', u'lure', u'skier']
[u'blair', u'insist', u'saddam', u'threat', u'justifi']
[u'boati', u'warn', u'check', u'craft']
[u'brack', u'tour', u'californian', u'water', u'plant']
[u'british', u'court', u'uphold', u'freez', u'expat', u'pension']
[u'brogden', u'youth', u'crime', u'petit']
[u'budget', u'cut', u'kill', u'aust', u'danc', u'theatr', u'oppn']
[u'busi', u'ask', u'consid', u'levi', u'plan']
[u'carlisl', u'inspir', u'zimbabw', u'narrow', u'victori']
[u'carr', u'defend', u'educ', u'cut']
[u'cathol', u'brother', u'face', u'trial', u'alleg']
[u'cathol', u'school', u'teacher', u'join', u'stop', u'work']
[u'child', u'rapist', u'releas', u'brisban']
[u'choisir', u'time', u'aust', u'winner', u'royal', u'ascot']
[u'choisir', u'open', u'door', u'australian', u'hors']
[u'frontbench', u'confirm', u'shadow', u'ministri']
[u'club', u'silent', u'saint', u'turn', u'sinner']
[u'coast', u'unit', u'valu', u'rise']
[u'coast', u'watch', u'group', u'disband']
[u'collector', u'urg', u'boost', u'secur']
[u'command', u'thank', u'public', u'support']
[u'complaint', u'bogus', u'traffic', u'fin', u'rais']
[u'concern', u'rais', u'lack', u'nurs', u'home', u'place']
[u'consum', u'confid', u'hit', u'year', u'high']
[u'corowa', u'brawl', u'polic']
[u'costello', u'say', u'thought', u'quit']
[u'council', u'approv', u'medic', u'facil', u'plan']
[u'council', u'proud', u'achiev']
[u'council', u'offer', u'age', u'care', u'centr', u'support']
[u'council', u'pressur', u'public', u'reserv']
[u'council', u'consid', u'beach', u'develop', u'report']
[u'court', u'hear', u'murder', u'knife', u'fingerprint', u'free']
[u'crash', u'report', u'find', u'inconclus', u'rfds', u'chief']
[u'curfew', u'west', u'bank', u'town', u'isra', u'girl', u'kill']
[u'david', u'beckham', u'superstar']
[u'dead', u'man', u'devic', u'fail', u'waterfal', u'inquiri']
[u'dead', u'worker', u'children', u'owe', u'duti', u'care', u'high', u'court']
[u'debat', u'rag', u'vote', u'valu']
[u'demon', u'fine', u'neitz', u'casino', u'scuffl']
[u'desert', u'scorpion', u'round', u'hundr', u'iraqi']
[u'disabl', u'veteran', u'stage', u'pension', u'protest']
[u'disappoint', u'wild', u'bait', u'fund', u'decis']
[u'dokic', u'myskina', u'eastbourn']
[u'dollar', u'surg']
[u'downer', u'defend', u'bali', u'travel', u'warn']
[u'downer', u'remain', u'defiant', u'bali', u'intellig']
[u'drug', u'incid', u'spark', u'hospit', u'secur', u'review']
[u'boost', u'hound', u'wild', u'dog']
[u'dubbo', u'petit', u'present', u'coalit']
[u'elder', u'fight', u'attempt', u'demolish', u'build']
[u'emerg', u'sprint', u'star', u'gatlin', u'ambit']
[u'esca', u'pea', u'caus', u'traffic', u'chao']
[u'everest', u'climb', u'record', u'holder', u'accus', u'cheat']
[u'fair', u'trade', u'issu', u'door', u'door', u'sale', u'warn']
[u'fear', u'takeov', u'cost', u'grape', u'grow', u'romanc']
[u'feder', u'commission', u'criticis', u'racist', u'incid']
[u'felix', u'fast', u'track', u'sprint', u'success']
[u'filipino', u'polic', u'arrest', u'alleg', u'bomb', u'suspect']
[u'find', u'iraqi', u'wmds', u'urgent']
[u'firefight', u'welcom', u'safeti', u'initi']
[u'fitzgibbon', u'confid', u'recoveri', u'second', u'origin']
[u'gallop', u'pull', u'robert', u'line', u'curfew', u'comment']
[u'crop', u'studi', u'question', u'rais']
[u'good', u'econom', u'time', u'kambalda']
[u'gough', u'anderson', u'stop', u'pakistan']
[u'govt', u'deceiv', u'student', u'degre', u'cost', u'say']
[u'govt', u'defend', u'doctor', u'bond', u'plan']
[u'govt', u'labor', u'trade', u'blow', u'weapon', u'inquiri']
[u'govt', u'move', u'toughen', u'mandatori', u'detent', u'power']
[u'govt', u'plan', u'adelaid', u'entertain', u'centr', u'precinct']
[u'govt', u'bushfir', u'packag', u'farmer']
[u'govt', u'urg', u'explain', u'bali', u'intellig', u'report']
[u'grey', u'face', u'tough', u'initi']
[u'group', u'reject', u'takeov', u'claim']
[u'health', u'clinic', u'back', u'cheap', u'liquor', u'remov', u'plan']
[u'hewitt', u'defam']
[u'hollingworth', u'move', u'govt', u'hous']
[u'hopoat', u'fin', u'play', u'rugbi', u'union', u'match']
[u'hopoat', u'fin', u'rugbi', u'union', u'appear']
[u'hous', u'plan', u'chang', u'disadvantag', u'elder']
[u'huge', u'demand', u'crocodil', u'farm']
[u'hundr', u'homeless', u'timor', u'flood']
[u'india', u'brace', u'flood']
[u'indigen', u'fisher', u'demand', u'chang', u'fisheri']
[u'indigen', u'land', u'deal', u'near', u'complet']
[u'inquiri', u'probe', u'intellig']
[u'intellig', u'offic', u'reject', u'wilki', u'bali', u'claim']
[u'irrig', u'gather', u'berri']
[u'japan', u'surf', u'world', u'championship', u'postpon']
[u'leader', u'financ', u'philippin', u'bomb', u'court', u'hear']
[u'juri', u'find', u'employe', u'guilti', u'theft']
[u'juri', u'consid', u'verdict', u'wife', u'stab', u'case']
[u'klitschko', u'appli', u'mind', u'bodi', u'sport']
[u'labor', u'keep', u'pressur', u'intellig']
[u'lamb', u'worth', u'steal']
[u'lantana', u'number', u'weed', u'list']
[u'latif', u'pleas', u'pakistan', u'attitud']
[u'leak', u'letter', u'prove', u'govt', u'effici', u'review']
[u'legisl', u'aim', u'pressur', u'public']
[u'liberian', u'rebel', u'accus', u'govt', u'troop', u'break']
[u'lion', u'slam', u'mccs', u'attitud', u'final', u'fixtur']
[u'local', u'govt', u'group', u'welcom', u'water', u'plan', u'delay']
[u'locum', u'bring', u'surgeon', u'talk', u'fail']
[u'magistr', u'apologis', u'famili', u'dismiss']
[u'charg', u'take', u'photo', u'rivkin', u'jail']
[u'die', u'daughter', u'condit', u'hous']
[u'fin', u'vessel', u'sink']
[u'jail', u'polic', u'attack']
[u'kidnap', u'charg', u'remand', u'custodi']
[u'sentenc', u'knife', u'scare', u'flight']
[u'melbourn', u'gene', u'centr', u'focus', u'diseas', u'research']
[u'millennium', u'manufactur', u'carr']
[u'million', u'dollar', u'fraudster', u'avoid', u'jail']
[u'project', u'get', u'ahead', u'year', u'fight']
[u'countri', u'peopl', u'take', u'ambul', u'membership']
[u'rescu', u'offic', u'train']
[u'muckert', u'suspend', u'danger', u'throw']
[u'nasa', u'delay', u'mar', u'rover', u'launch']
[u'neitz', u'address', u'team', u'train']
[u'neitz', u'expect', u'fine', u'casino', u'scuffl']
[u'mayor', u'aim', u'boost', u'servic']
[u'potter', u'book', u'prompt', u'look', u'film', u'ahead']
[u'korea', u'vow', u'increas', u'atom', u'forc']
[u'word', u'rock', u'lobster', u'season', u'plan']
[u'open', u'scrap', u'short', u'jail', u'term']
[u'move', u'allow', u'mobil', u'tower', u'nation', u'park']
[u'parliament', u'approv', u'moratorium']
[u'commission', u'welcom', u'atsic', u'discuss', u'paper']
[u'minist', u'reject', u'rush', u'legisl', u'claim']
[u'politician', u'polic', u'interview']
[u'lawyer', u'sentenc', u'year', u'kidnap', u'plot']
[u'opposit', u'defend', u'push', u'weapon', u'inquiri']
[u'outback', u'challeng', u'lucrat', u'break', u'hill']
[u'group', u'back', u'educ', u'restructur']
[]
[u'paperlinx', u'major', u'european', u'acquisit']
[u'parent', u'concern', u'reduc', u'bowl', u'particip']
[u'farmer', u'face', u'water', u'shortag', u'woe']
[u'plaintiff', u'landmark', u'abort', u'case', u'want']
[u'polic', u'commission', u'concern', u'high', u'speed']
[u'polic', u'confirm', u'investig', u'son']
[u'polic', u'investig', u'brawl', u'yarrabah']
[u'poor', u'water', u'pressur', u'colli']
[u'powel', u'criticis', u'burma', u'detain']
[u'foster', u'carer', u'audit']
[u'queensland', u'student', u'head', u'bali', u'bomb', u'trial']
[u'question', u'time', u'cancel', u'welcom', u'home', u'parad']
[u'rail', u'project', u'integr', u'manganes', u'plan']
[u'railway', u'unlik', u'sink', u'road', u'transport']
[u'read', u'skill', u'turn', u'dairi', u'cattl', u'cash']
[u'real', u'galaxi', u'expand']
[u'record', u'budget', u'wangaratta']
[u'research', u'surplus', u'embryo', u'step', u'closer']
[u'resid', u'refuge', u'concern']
[u'resid', u'urg', u'offer', u'feedback', u'wast']
[u'resid', u'want', u'bypass', u'rout', u'announc']
[u'ricegrow', u'unhappi', u'delay', u'water', u'share']
[u'riot', u'motorcycl', u'death']
[u'rivkin', u'undergo', u'brain', u'surgeri']
[u'rowl', u'kill', u'potter', u'charact']
[u'rural', u'doctor', u'indemn', u'concern']
[u'rusedski', u'aynaoui', u'eas', u'nottingham']
[u'govt', u'announc', u'tune', u'live', u'music']
[u'treasuri', u'overspend', u'say', u'opposit']
[u'school', u'hail', u'student', u'retent', u'leader']
[u'second', u'suspect', u'arrest', u'missionari', u'murder']
[u'senior', u'drink', u'meet', u'polic', u'inquiri']
[u'marriag', u'court', u'decis', u'stand', u'canadian']
[u'share', u'market', u'end', u'win', u'streak']
[u'simpson', u'await', u'news', u'kidney', u'injuri']
[u'south', u'hedland', u'crime', u'address', u'gallop']
[u'street', u'revitalis']
[u'studi', u'consid', u'drought', u'centr', u'viabil']
[u'sunday', u'trade', u'law', u'illeg']
[u'support', u'heritag', u'trust', u'job']
[u'suspend', u'sentenc', u'abalon', u'offenc']
[u'synchrotron', u'project', u'lack', u'busi', u'plan']
[u'talau', u'leav', u'bulldog', u'helen']
[u'task', u'forc', u'probe', u'school', u'safeti']
[u'tassi', u'elector', u'focus', u'voter', u'studi']
[u'teacher', u'threaten', u'strike', u'staff', u'concern']
[u'aussi', u'charg', u'drug', u'offenc', u'vietnam']
[u'tour', u'oper', u'reject', u'croc', u'claim']
[u'trader', u'group', u'welcom', u'plaza', u'expans']
[u'treatment', u'sleep', u'disord', u'offer']
[u'trial', u'alleg', u'real', u'leader', u'begin', u'dublin']
[u'trio', u'face', u'kidnap', u'charg']
[u'troop', u'welcom', u'home', u'sydney']
[u'truce', u'talk', u'fail', u'isra', u'girl', u'shoot', u'dead']
[u'charg', u'cocain', u'smuggl', u'oper']
[u'charg', u'recruit', u'women', u'industri']
[u'soldier', u'kill', u'grenad', u'attack', u'wit']
[u'union', u'concern', u'coal', u'product']
[u'union', u'say', u'quick', u'sugar', u'concern']
[u'unit', u'confirm', u'beckham', u'transfer', u'real', u'madrid']
[u'urg', u'expand', u'secur', u'forc', u'afghanistan']
[u'watchdog', u'debat', u'iran', u'nuclear', u'failur']
[u'doctor', u'favour', u'clone', u'research']
[u'envoy', u'meet', u'palestinian', u'leader']
[u'troop', u'open', u'iraqi', u'protest', u'kill']
[u'verkerk', u'fall', u'earth', u'ordina', u'open']
[u'govt', u'open', u'resourc', u'centr', u'children']
[u'vinokourov', u'win', u'stage', u'swiss', u'tour']
[u'wage', u'increas', u'block', u'labor', u'council']
[u'govt', u'air', u'wind', u'farm', u'concern']
[u'govt', u'break', u'bropho', u'nativ', u'titl', u'negoti']
[u'govt', u'consid', u'curfew']
[u'polic', u'minist', u'forc', u'curfew', u'backdown']
[u'waterfal', u'crash', u'spark', u'rail', u'safeti', u'upgrad']
[u'research', u'season', u'sar', u'theori']
[u'wickham', u'plant', u'project', u'get', u'underway']
[u'share', u'dive', u'profit', u'warn']
[u'woman', u'set', u'protest', u'pari']
[u'woman', u'rape', u'catch', u'mobil', u'phone', u'camera']
[u'woman', u'face', u'court', u'miss', u'pair', u'probe']
[u'world', u'communiti', u'isol', u'korea', u'hoon']
[u'zimbabw', u'allow', u'privat', u'import', u'eas']
[u'rebel', u'soldier', u'kill', u'aceh', u'militari']
[u'work', u'day', u'lose', u'march', u'strike']
[u'rat', u'overhaul', u'collaps']
[u'airfield', u'sale']
[u'albani', u'feel', u'colder', u'morn']
[u'ord', u'make', u'moder', u'gain']
[u'amnesti', u'critic', u'british', u'asylum', u'seeker', u'plan']
[u'amrozi', u'tell', u'tortur', u'threat', u'bashir', u'trial']
[u'amrozi', u'testifi', u'bashir']
[u'annan', u'disapprov', u'indian', u'troop', u'iraq', u'report']
[u'asean', u'ask', u'help', u'solomon', u'island']
[u'asio', u'admit', u'bali', u'intellig']
[u'kill', u'suicid', u'attack']
[u'warn', u'crackdown', u'work', u'relat', u'claim']
[u'atsic', u'deep', u'problem', u'say']
[u'australian', u'control', u'confeder', u'match']
[u'australian', u'care', u'environ']
[u'australia', u'urg', u'impos', u'sanction', u'burma']
[u'bali', u'intellig', u'inquiri']
[u'barca', u'talk', u'forc', u'beckham', u'ferdinand']
[u'beatti', u'back', u'arnison']
[u'beckham', u'warm', u'life', u'spain']
[u'beckham', u'warm', u'spanish', u'futur']
[u'belgian', u'reach', u'ordina', u'open', u'quarter', u'final']
[u'berrigan', u'vow', u'lift', u'game']
[u'berrigan', u'vow', u'lift', u'game', u'origin']
[u'brother', u'enter', u'buddhist', u'templ']
[u'plan', u'afoot', u'guyra', u'age', u'care']
[u'brazilian', u'presid', u'plan', u'type', u'trade', u'bloc']
[u'britain', u'design', u'babi', u'bear', u'report']
[u'brothel', u'approv', u'disappoint', u'gladston']
[u'buick', u'champ', u'envious', u'tiger', u'slump']
[u'burma', u'give', u'word', u'releas']
[u'bush', u'administr', u'play', u'intellig']
[u'support', u'countri', u'race', u'petit']
[u'campaign', u'aim', u'reduc', u'arson']
[u'capriati', u'rubin', u'eastbourn']
[u'carr', u'challeng', u'crime', u'petit']
[u'carr', u'give', u'green', u'light', u'lake', u'cowal', u'gold']
[u'chamber', u'back', u'council', u'busi', u'support']
[u'children', u'indefinit', u'detent', u'illeg', u'court', u'rule']
[u'china', u'back', u'pakistan', u'asean', u'forum', u'membership']
[u'clear', u'law', u'report', u'undergo', u'independ', u'review']
[u'clock', u'tick', u'game']
[u'treasur', u'call', u'leadership', u'chang']
[u'uncov', u'alleg', u'global', u'paedophil', u'ring']
[u'cold', u'suffer', u'urg', u'spread', u'germ']
[u'collis', u'sink', u'chines', u'ferri', u'yangtz']
[u'committe', u'ahead', u'inquiri']
[u'commonwealth', u'game', u'countdown', u'begin']
[u'congo', u'rebel', u'govern', u'talk', u'burundi']
[u'contract', u'sign', u'antarct', u'plan']
[u'costa', u'promis', u'action', u'rail', u'review']
[u'council', u'divis', u'remain']
[u'council', u'doesnt', u'need', u'merger', u'effici', u'mayor']
[u'council', u'consid', u'merger', u'opportun']
[u'council', u'seek', u'govt', u'support', u'address', u'water', u'woe']
[u'council', u'fear', u'river', u'murray', u'bill']
[u'council', u'talk', u'budget']
[u'court', u'jail', u'hobart', u'assault']
[u'crean', u'scrutini', u'poki', u'deal', u'comment']
[u'croc', u'hunter', u'drive', u'adelaid', u'darwin', u'ghan', u'promot']
[u'curfew', u'enforc', u'riot']
[u'cwealth', u'game', u'organis', u'hope', u'freeman']
[u'date', u'north', u'south', u'rail', u'cross']
[u'davenport', u'knock', u'eastbourn']
[u'wont', u'rule', u'cut']
[u'decis', u'merger', u'see', u'wise']
[u'doctor', u'group', u'sceptic']
[u'drop', u'darwin', u'pitch', u'break', u'grind']
[u'drop', u'pitch', u'break', u'grind', u'darwin']
[u'eagl', u'hope', u'resolut', u'final', u'debat']
[u'eccleston', u'roast', u'silverston']
[u'electr', u'propos', u'result', u'higher', u'bill']
[u'evolutionari', u'research', u'drill', u'explain', u'life']
[u'expert', u'consid', u'australia', u'futur', u'health', u'need']
[u'flintoff', u'take', u'cool', u'approach', u'fit']
[u'free', u'transport', u'offer', u'welcom', u'home', u'troop']
[u'frighten', u'teacher', u'consid', u'industri', u'action']
[u'water', u'probe']
[u'game', u'venu', u'schedul', u'opposit']
[u'garrett', u'undecid', u'polit', u'futur']
[u'gatecrash', u'spark', u'polic', u'warn']
[u'gold', u'coast', u'contribut', u'wombat', u'research']
[u'govern', u'univers', u'fund']
[u'govt', u'appeal', u'rule', u'child', u'detent']
[u'govt', u'appeal', u'rule', u'children']
[u'govt', u'urg', u'establish', u'aerial', u'firefight']
[u'greenpeac', u'present', u'dead', u'porpois', u'whale']
[u'green', u'rais', u'fund', u'fenc', u'tent', u'embassi']
[u'group', u'warn', u'govt', u'poki', u'legisl']
[u'harri', u'potter', u'book', u'break', u'internet', u'sale']
[u'harvey', u'norman', u'defi', u'govt', u'illeg', u'sunday']
[u'health', u'concern', u'allen', u'polit']
[u'health', u'minist', u'quiz', u'specialist']
[u'health', u'review', u'launch', u'sour', u'fund', u'critic']
[u'health', u'review', u'releas']
[u'heavi', u'secur', u'tehran', u'protest', u'lose', u'momentum']
[u'high', u'price', u'hurt', u'coastal', u'home', u'buyer']
[u'hop', u'board', u'boost', u'communic']
[u'horgan', u'ireland', u'debut', u'samoa']
[u'howard', u'crean', u'tribut', u'mccartney']
[u'ill', u'cancel', u'hospit', u'elect', u'surgeri']
[u'indonesia', u'vow', u'crush', u'rebel', u'aceh']
[u'inquiri', u'probe', u'ruddock', u'alleg', u'visa', u'donat']
[u'iraqi', u'export', u'start', u'sunday', u'offici']
[u'irish', u'bring', u'earth', u'south', u'african']
[u'isra', u'evacu', u'settlement', u'outpost', u'radio']
[u'issac', u'store', u'rob', u'knife', u'weild']
[u'job', u'miner', u'sand', u'plant', u'close']
[u'jone', u'call', u'better', u'educ', u'program']
[u'jone', u'look', u'forward', u'birth', u'child']
[u'klitschko', u'say', u'lewi', u'fight', u'perfect', u'time']
[u'knife', u'wield', u'ponder', u'travel', u'option']
[u'krajicek', u'call']
[u'labor', u'keep', u'heat', u'downer']
[u'labor', u'manipul', u'bali', u'advic']
[u'lara', u'tillakaratn', u'prepar', u'face']
[u'man', u'bentley', u'plan']
[u'lilac', u'hill', u'season', u'open', u'stay']
[u'local', u'govt', u'chief', u'say', u'amalgam', u'necess']
[u'love', u'sick', u'doctor', u'admit', u'spark', u'bomb', u'alert']
[u'macdonald', u'overcom', u'head', u'injuri']
[u'mahathir', u'accus', u'european', u'warmong']
[u'fin', u'spit', u'woman', u'footbal']
[u'defend', u'danger', u'drive', u'charg']
[u'face', u'tough', u'season', u'open']
[u'factor', u'heir', u'captur', u'mexico']
[u'mayor', u'reject', u'resign', u'claim']
[u'media', u'power', u'overst', u'murdoch', u'tell', u'hear']
[u'mine', u'industri', u'seek', u'fast', u'nativ', u'titl', u'resolut']
[u'miso', u'soup', u'reduc', u'breast', u'cancer', u'risk', u'research']
[u'mix', u'fortun', u'farmer']
[u'monsoon', u'rain', u'claim', u'live', u'east', u'timor']
[u'montgomeri', u'green', u'pressur']
[u'ross', u'river', u'virus', u'case', u'report']
[u'morrison', u'win', u'heat', u'japan']
[u'job', u'safe', u'moment']
[u'air', u'educ', u'servic', u'concern']
[u'musharraf', u'warn', u'militari', u'imbal', u'india']
[u'consid', u'follow', u'suit', u'home', u'loan', u'rat']
[u'natqld']
[u'face', u'challeng', u'athlet', u'veteran']
[u'life', u'plan', u'wollongong', u'site']
[u'news', u'miss', u'prime', u'websit']
[u'zealand', u'outsid', u'head', u'oxford']
[u'zealand', u'wale', u'chanc', u'amend']
[u'korea', u'accus', u'asean', u'forum', u'interfer']
[u'nrma', u'board', u'downsiz']
[u'debat', u'short', u'sentenc', u'issu']
[u'govt', u'urg', u'provid', u'ward', u'fund']
[u'lower', u'hous', u'pass', u'stem', u'cell', u'research']
[u'avoid', u'probe', u'reach']
[u'adult', u'need', u'drug', u'cope']
[u'opal', u'squad', u'announc', u'european', u'tour']
[u'oppn', u'critic', u'dental', u'wait', u'list']
[u'opposit', u'claim', u'cwealth', u'game', u'venu']
[u'origin']
[u'origin', u'seri', u'sell']
[u'oxley', u'highway', u'option', u'drop']
[u'packag', u'address', u'crime', u'unemploy']
[u'pack', u'shed', u'plan', u'spark', u'resid', u'concern']
[u'parkinson', u'burrow', u'round', u'japan']
[u'perth', u'hospit', u'nurs', u'say', u'union']
[u'disagre', u'review', u'authorship', u'concern']
[u'accus', u'mislead', u'parliament']
[u'legisl', u'joint', u'custodi']
[u'say', u'troop', u'remain', u'east', u'timor', u'year']
[u'polic', u'deni', u'neitz', u'give', u'special', u'treatment']
[u'polic', u'cliff', u'fall', u'victim']
[u'polic', u'probe', u'fatal', u'highway', u'crash']
[u'polic', u'death', u'murder', u'suicid']
[u'polic', u'target', u'anti', u'social', u'behaviour', u'southbank']
[u'polic', u'tenur', u'concern', u'rais']
[u'polic', u'check', u'home', u'secur']
[u'polic', u'investig', u'suspect', u'morphett', u'vale']
[u'print', u'email', u'lose', u'slice', u'histori', u'scientist']
[u'privat', u'jail', u'plan', u'expans']
[u'protest', u'rugbi', u'exhibit', u'snub']
[u'public', u'input', u'seek', u'year', u'celebr']
[u'public', u'urg', u'comment', u'koala', u'protect', u'plan']
[u'puma', u'chang', u'second', u'french', u'test']
[u'quinn', u'slam', u'govt', u'child', u'protect', u'failur']
[u'ranger', u'urg', u'peopl', u'steal', u'croc', u'sign']
[u'rate', u'rise', u'see', u'inevit']
[u'record', u'crowd', u'shape', u'marathon']
[u'reduc', u'financ', u'book', u'spend']
[u'reef', u'rezon', u'plan', u'spark', u'boat', u'safeti', u'fear']
[u'rudd', u'call', u'sanction', u'burma']
[u'ruddock', u'urg', u'cash', u'visa', u'inquiri']
[u'rudd', u'unsur', u'portfolio', u'chang', u'reshuffl']
[u'rusedski', u'hit', u'form']
[u'health', u'transform', u'review']
[u'scan', u'give', u'sharp', u'clear']
[u'scheme', u'help', u'erad', u'fruit']
[u'scott', u'plan', u'play', u'side', u'atlant']
[u'secur', u'guard', u'charg', u'fals', u'report']
[u'secur', u'guard', u'treat', u'shock', u'scare']
[u'shire', u'presid', u'unhappi', u'drought', u'gather']
[u'shire', u'unhappi', u'wind', u'farm', u'delay']
[u'sprint', u'rival', u'montgomeri', u'green', u'word']
[u'stewart', u'brundl', u'eccleston']
[u'studi', u'find', u'polic', u'beat', u'help', u'lower', u'crime', u'rate']
[u'studi', u'highlight', u'tourism', u'limit']
[u'suicid', u'bomber', u'kill', u'israel']
[u'suicid', u'bomber', u'wound', u'israel', u'polic']
[u'support', u'wide', u'youth', u'curfew']
[u'kyi', u'birthday', u'mark', u'protest']
[u'tafe', u'apprenticeship', u'applic', u'rise']
[u'tafe', u'consid', u'campus']
[u'govt', u'tabl', u'dilut', u'adopt']
[u'teen', u'kill', u'hunt', u'accid']
[u'teen', u'face', u'trial', u'man', u'death']
[u'tesk', u'consid', u'invit', u'men', u'tournament']
[u'person', u'charg', u'slaveri']
[u'soldier', u'kill', u'iraq', u'attack', u'jazeera']
[u'time', u'run', u'wind', u'farm', u'plan']
[u'tucker', u'shrug', u'govt', u'move', u'prosecut']
[u'tuckey', u'refer', u'embassi', u'fenc', u'erect', u'polic']
[u'hospitalis', u'northbridg', u'accid']
[u'typhoon', u'approach', u'southern', u'japan']
[u'concern', u'media', u'arrest', u'blasphemi']
[u'chief', u'continu', u'lobbi', u'fund']
[u'union', u'electrolux', u'ballot', u'suck']
[u'congress', u'begin', u'hear']
[u'shuttl', u'launch', u'like', u'earli', u'nasa']
[u'support', u'plan', u'afghan', u'regim', u'inadequ', u'report']
[u'chief', u'chair', u'sunraysia']
[u'govt', u'applaud', u'agreement', u'oper']
[u'water', u'catchment', u'plan', u'underway']
[u'waterfal', u'inquiri', u'hear', u'major', u'safeti', u'concern']
[u'webb', u'chase', u'year']
[u'welfar', u'agenc', u'clash', u'senat', u'poverti']
[u'confid', u'profit', u'offset', u'upgrad']
[u'woman', u'admit', u'attack', u'rival', u'gang', u'member', u'partner']
[u'woman', u'claim', u'polic', u'knowledg', u'child', u'abus']
[u'woodchip', u'concern', u'spark', u'protest']
[u'wool', u'scour', u'plant', u'closur', u'cost', u'job']
[u'work', u'wind', u'farm', u'power', u'ahead']
[u'accid', u'woman', u'remain', u'critic']
[u'law', u'smoke', u'restaur', u'licens']
[u'advoc', u'appal', u'ruddock', u'refuge', u'comment']
[u'alston', u'urg', u'north', u'west', u'victorian']
[u'warship', u'head', u'townsvill']
[u'asio', u'fail', u'bali', u'attack', u'crean']
[u'australia', u'unchang', u'bangladesh', u'seri']
[u'author', u'say', u'potter', u'angri', u'teen', u'love']
[u'baird', u'streak', u'clear', u'westchest']
[u'bangladesh', u'retain', u'mahmud', u'skipper']
[u'barrett', u'grab', u'lead', u'webb', u'tesk', u'close']
[u'beatti', u'announc', u'marin', u'research', u'centr']
[u'beatti', u'take', u'advantag', u'bundi', u'cane', u'harvest']
[u'beckham', u'deni', u'initi', u'real']
[u'beckham', u'look', u'forward', u'real', u'challeng']
[u'bega', u'celebr', u'refuge']
[u'blue', u'give', u'origin', u'clear']
[u'boomer', u'prepar', u'face', u'czech']
[u'britain', u'face', u'tough', u'test', u'european']
[u'british', u'grand', u'prix', u'surviv', u'say', u'william']
[u'brit', u'target', u'world', u'ticket', u'sale', u'blitz']
[u'bropho', u'charg', u'child', u'offenc']
[u'bulli', u'woman', u'receiv', u'damag', u'payout']
[u'bushfir', u'public', u'hear', u'hold', u'juli']
[u'cairn', u'rate', u'rise', u'surpris']
[u'delay', u'water', u'meter', u'read']
[u'inquiri', u'prison', u'offic']
[u'subdivis', u'rethink']
[u'releas', u'detain', u'children']
[u'wagga', u'wagga', u'tafe']
[u'bomb', u'explod', u'near', u'chechen', u'govt', u'build']
[u'delay', u'elura', u'control']
[u'celebr', u'entertain', u'troop', u'gulf']
[u'celebr', u'hairdress', u'jail', u'assault']
[u'central', u'drill', u'start']
[u'china', u'arrest', u'pair', u'kidnap']
[u'citi', u'girl', u'line', u'meet', u'beaut', u'bloke']
[u'claim', u'peacekeep', u'plan', u'fuel', u'solomon', u'violenc']
[u'claim', u'samag', u'review', u'need', u'govt', u'support']
[u'coach', u'graham', u'leav', u'montgomeri']
[u'colombia', u'seek', u'goal', u'drought']
[u'communiti', u'come', u'search', u'angler']
[u'error', u'incorrect', u'cancer', u'treatment']
[u'costa', u'expect', u'deliv', u'rail', u'statement']
[u'council', u'hand', u'airport']
[u'council', u'deliv', u'budget', u'amidst', u'ratepay', u'concern']
[u'council', u'form', u'plan', u'jetti', u'develop']
[u'court', u'order', u'retrial', u'convict', u'rapist']
[u'court', u'rule', u'encourag', u'smuggl', u'ruddock']
[u'crime', u'studi', u'show', u'famili', u'kill', u'common']
[u'debus', u'mundin', u'meet', u'dubbo']
[u'defenc', u'dept', u'defend', u'bali', u'threat', u'assess']
[u'diamond', u'firm', u'return', u'lucrat', u'sale']
[u'doctor', u'await', u'insur', u'detail']
[u'downtown', u'tokyo', u'come', u'halt', u'beckham']
[u'dragon', u'releas', u'england', u'bind', u'pongia']
[u'driver', u'urg', u'wari', u'anim', u'danger']
[u'drought', u'blame', u'drop', u'southcorp', u'grape', u'harvest']
[u'dead', u'plung', u'indonesian', u'river']
[u'england', u'strong', u'hockeyroo']
[u'environ', u'group', u'wait', u'cockatoo', u'report']
[u'errol', u'flynn', u'memorabilia', u'go']
[u'esso', u'court', u'order', u'open', u'door', u'legal', u'onslaught']
[u'esso', u'order', u'damag', u'longford']
[u'adopt', u'draft', u'constitut']
[u'match', u'billion', u'aid', u'pledg']
[u'expect', u'rate', u'fall', u'help', u'build']
[u'farmer', u'urg', u'tackl', u'cereal', u'diseas', u'earli']
[u'father', u'bali', u'victim', u'vow', u'help', u'detaine']
[u'feder', u'fund', u'help', u'boost', u'rfds']
[u'feder', u'govt', u'reject', u'rainforest', u'claim']
[u'feral', u'deer', u'group', u'seek', u'feedback']
[u'fisherman', u'bodi', u'wash', u'rock']
[u'fisherman', u'sweep', u'rock', u'victoria']
[u'argentin', u'leader', u'bodi', u'exhum']
[u'hart', u'exec', u'charg', u'insid', u'trade']
[u'nurs', u'say', u'violenc', u'need', u'address']
[u'freeman', u'deni', u'retir', u'report']
[u'french', u'fear', u'puma', u'whitewash', u'world', u'rehears']
[u'french', u'lower', u'hous', u'pass', u'pension', u'articl']
[u'fund', u'alloc', u'visitor', u'centr']
[u'fund', u'treat', u'carbon', u'dioxid', u'emiss']
[u'furyk', u'continu', u'good', u'form', u'westchest']
[u'giant', u'spider', u'prick', u'shark']
[u'gippsland', u'share', u'fish', u'fund']
[u'good', u'rain', u'help', u'avert', u'water', u'restrict']
[u'govt', u'offer', u'senat', u'improv', u'cross', u'media']
[u'govt', u'reject', u'union', u'call', u'open', u'trade', u'talk']
[u'grafton', u'hous', u'develop', u'approv']
[u'great', u'alpin', u'promot', u'target', u'oversea']
[u'great', u'white', u'shark', u'trap', u'tuna', u'farm']
[u'gregan', u'giffen', u'approv', u'dockland', u'england', u'clash']
[u'guti', u'readi', u'leav', u'real', u'beckham', u'sign']
[u'hama', u'arm', u'wing', u'claim', u'latest', u'attack']
[u'hampshir', u'zimbabw']
[u'helicopt', u'crash', u'west', u'sydney']
[u'help', u'avail', u'worker']
[u'hewitt', u'hype', u'titl', u'defenc']
[u'high', u'secur', u'greet', u'warship']
[u'hong', u'kong', u'ignor', u'advic', u'propos', u'secur']
[u'hotel', u'seek', u'compo', u'condit']
[u'hous', u'construct', u'declin', u'expect']
[u'hunter', u'economi', u'predict', u'slow', u'year']
[u'indefinit', u'jail', u'answer', u'women', u'group']
[u'indigen', u'cultur', u'festiv', u'begin', u'laura']
[u'indonesian', u'say', u'civilian', u'kill', u'aceh']
[u'insur', u'bill', u'drive', u'doctor', u'away', u'say']
[u'rate', u'fall', u'boost', u'home', u'afford']
[u'iranian', u'women', u'die', u'set', u'alight']
[u'john', u'wari', u'bowen']
[u'kennedi', u'share', u'gleneagl', u'lead']
[u'labor', u'releas', u'breakdown', u'bulk', u'bill']
[u'lead', u'member', u'british', u'garag', u'jail']
[u'lewi', u'heaviest', u'titl', u'fight']
[u'magistr', u'dismiss', u'court', u'bias', u'claim']
[u'magistr', u'fin', u'drink', u'drive']
[u'magistr', u'hop', u'send', u'support', u'husband']
[u'avoid', u'bite']
[u'consid', u'legal', u'option', u'murder', u'charg']
[u'convict', u'threaten', u'islam', u'leader']
[u'guilti', u'neglig', u'sydney', u'fish', u'kill']
[u'jail', u'chequ', u'fraud']
[u'kill', u'geelong', u'accid']
[u'appeal', u'convict', u'polic', u'threat']
[u'face', u'court', u'rape', u'charg']
[u'maroon', u'dismiss', u'lockyer', u'injuri', u'concern']
[u'mauresmo', u'withdraw', u'wimbledon']
[u'meet', u'welcom', u'atsic', u'review', u'find']
[u'militari', u'action', u'iran', u'option', u'offici']
[u'millennium', u'train', u'undergo', u'extra', u'test']
[u'montgomeri', u'green', u'clash', u'pari']
[u'montgomeri', u'lead', u'gatlin']
[u'montgomeri', u'sprint', u'semi', u'final']
[u'air', u'merger', u'consult', u'concern']
[u'consid', u'kimberley', u'water', u'plan']
[u'gambier', u'health', u'intensifi']
[u'nairn', u'happi', u'wharf', u'progress']
[u'netbal', u'australia', u'world', u'champ']
[u'handbook', u'help', u'migrant', u'understand', u'right']
[u'chief', u'call', u'cricket', u'uniti']
[u'newscorp', u'drag', u'ord']
[u'year', u'firm', u'clash', u'restor']
[u'nextgen', u'go', u'receivership']
[u'region', u'facilit', u'coastcar', u'group']
[u'govt', u'stand', u'cancer', u'treatment', u'pledg']
[u'atsic', u'commission', u'chair', u'committe']
[u'figur', u'highest', u'assault', u'statist']
[u'nurs', u'feder', u'launch', u'anti', u'aggress']
[u'nurs', u'push', u'secur', u'walkway', u'gove']
[u'offici', u'face', u'critic', u'foster', u'care']
[u'season', u'recruit', u'pay', u'cowboy']
[u'kill', u'injur', u'lao', u'bomb', u'blast']
[u'orang', u'endur', u'tougher', u'water', u'restrict']
[u'outrag', u'plan', u'fight', u'child', u'detent', u'rule']
[u'panther', u'pummel', u'knight']
[u'perth', u'prepar', u'welcom', u'home', u'troop']
[u'plan', u'aim', u'shield', u'crop', u'impact']
[u'plan', u'bruxner', u'highway', u'bypass']
[u'plan', u'council']
[u'plan', u'power', u'user', u'extend', u'blackout', u'compo']
[u'polic', u'alleg', u'teen', u'clock', u'zone']
[u'polic', u'defend', u'tenur', u'agreement']
[u'polic', u'establish', u'special', u'team', u'south', u'west']
[u'polic', u'probe', u'sheep', u'theft']
[u'polic', u'remov', u'tent', u'embassi', u'fenc', u'arrest']
[u'polic', u'seek', u'help', u'nightclub', u'attack']
[u'polic', u'seiz', u'wwii', u'combat', u'vehicl']
[u'polic', u'crack', u'theft']
[u'port', u'brisban', u'get', u'technolog']
[u'port', u'better', u'william']
[u'powel', u'ask', u'sharon', u'mazen', u'peac', u'effort']
[u'powel', u'israel', u'peac', u'rescu']
[u'prison', u'remain', u'larg', u'petri', u'escap']
[u'pristin', u'water', u'consid', u'reform']
[u'probe', u'begin', u'fatal', u'chopper', u'crash']
[u'say', u'report', u'unfound']
[u'govt', u'defend', u'indigen', u'alcohol', u'plan']
[u'real', u'concentr', u'titl', u'race']
[u'real', u'hunt', u'ronaldinho']
[u'refuge', u'famili', u'win', u'appeal', u'temporari', u'visa']
[u'refuge', u'group', u'branch', u'campaign']
[u'report', u'highlight', u'risk', u'day', u'bali']
[u'resid', u'want', u'govt', u'hear', u'sustain', u'plan']
[u'reward', u'push', u'junk', u'food', u'school', u'menu']
[u'robinson', u'receiv', u'explain', u'letter']
[u'ruddock', u'confirm', u'attend', u'visa', u'inquiri']
[u'ruddock', u'prepar', u'fight', u'child', u'detent', u'rule']
[u'ruddock', u'slam', u'decis', u'allow', u'refuge', u'famili']
[u'damag', u'develop']
[u'stall', u'upper', u'hous']
[u'sapphir', u'sink', u'franc']
[u'scheme', u'aim', u'reduc', u'domest', u'violenc']
[u'school', u'oper', u'offer', u'inadequ']
[u'scientist', u'race', u'licens', u'stem', u'cell', u'research']
[u'scott', u'renew', u'love', u'affair', u'gleneagl']
[u'tour', u'prove', u'anim', u'peopl']
[u'sharehold', u'reject', u'factori', u'stock', u'exchang', u'list']
[u'sindelar', u'set', u'earli', u'pace', u'westchest']
[u'speed', u'warn', u'england', u'pitch', u'invas']
[u'strong', u'wind', u'hamper', u'japan', u'surf', u'world', u'champ']
[u'super', u'sub', u'turkey', u'state']
[u'support', u'young', u'offend']
[u'sydney', u'helicopt', u'crash', u'kill']
[u'sydney', u'arrest', u'weapon', u'cach']
[u'talk', u'discuss', u'make', u'wind', u'turbin', u'blade']
[u'taxi', u'licenc', u'plate', u'unlik']
[u'tevez', u'doubl', u'help', u'boca', u'steam', u'libertador']
[u'texa', u'sleep', u'lawyer', u'inmat', u'get', u'life', u'sentenc']
[u'theophan', u'convict', u'quash', u'appeal']
[u'thought', u'seek', u'boost', u'advocaci', u'servic']
[u'thousand', u'cheer', u'troop', u'perth']
[u'tight', u'secur', u'greet', u'leader', u'ahead']
[u'toyota', u'slam', u'brake', u'closur', u'rumour']
[u'travel', u'advic', u'warn', u'beij', u'sar', u'threat']
[u'tribun', u'sarwari', u'visa', u'decis', u'today']
[u'tribun', u'mediat', u'mine', u'area', u'claim']
[u'truck', u'driver', u'jail', u'fatal', u'accid']
[u'union', u'anger', u'nigerian', u'fuel', u'hike']
[u'down', u'southern', u'hous', u'market']
[u'lose', u'patienc', u'burma']
[u'navi', u'ship', u'dock', u'garden', u'island']
[u'open', u'announc', u'million', u'prize']
[u'pilot', u'avoid', u'court', u'martial', u'canadian', u'death']
[u'senat', u'panel', u'vote', u'overturn', u'media', u'ownership']
[u'vietnames', u'detaine', u'die', u'hospit']
[u'virus', u'spark', u'restrict', u'wheat', u'trial']
[u'wallabi', u'complet', u'final']
[u'opposit', u'air', u'timber', u'concern']
[u'warn', u'drug', u'resist', u'strain', u'increas']
[u'warn', u'come', u'bali', u'blast']
[u'waterhous', u'win', u'licenc', u'battl']
[u'waterhous', u'win', u'licenc', u'renew', u'battl']
[u'water', u'woe', u'continu', u'break', u'hill']
[u'webster', u'move', u'japan']
[u'west', u'australian', u'editor', u'resign']
[u'william', u'sister', u'face', u'belgian', u'challeng']
[u'wimbledon']
[u'wimbledon', u'women']
[u'wind', u'postpon', u'japan', u'surf', u'heat']
[u'winegrow', u'quiz', u'water', u'restrict']
[u'work', u'begin', u'highway', u'revamp']
[u'workplac', u'death', u'investig']
[u'world', u'payment', u'disput', u'go', u'court']
[u'xstrata', u'roll', u'rolleston', u'coal', u'project']
[u'zimbabw', u'opposit', u'leader', u'free', u'bail']
[u'fear', u'dead', u'nigeria', u'pipe', u'explos']
[u'member', u'hambali', u'command', u'arrest']
[u'fear', u'dead', u'asylum', u'seeker', u'boat', u'tragedi']
[u'aborigin', u'communiti', u'embrac', u'circl', u'sentenc']
[u'adelaid', u'face', u'soccer', u'oblivion']
[u'affirm', u'action', u'appeal', u'good', u'littl']
[u'age', u'drop', u'excit', u'chines', u'archaeologist']
[u'call', u'govt', u'obstetr']
[u'anaesthetist', u'shortag', u'jeopardis', u'elect', u'surgeri']
[u'anderson', u'blitz', u'pakistan']
[u'anger', u'emiss', u'fee', u'hike']
[u'anti', u'smoke', u'lobbi', u'applaud', u'move']
[u'asylum', u'seeker', u'prefer', u'europ']
[u'atapattu', u'expos', u'windi', u'attack']
[u'injur', u'chechen', u'blast', u'report']
[u'aust', u'policewoman', u'head', u'timor', u'forc']
[u'aust', u'prepar', u'antarct', u'tourism', u'control', u'plan']
[u'autism', u'confer', u'highlight', u'famili', u'difficulti']
[u'awol', u'gazza', u'hand', u'gansu', u'deadlin']
[u'azuigou', u'mudslid', u'kill']
[u'bail', u'tsvangirai', u'undet', u'treason', u'charg']
[u'baird', u'lead', u'goosen', u'york', u'tesk']
[u'balkan', u'state', u'join', u'reform']
[u'basebal', u'stadium', u'deliber']
[u'bash', u'put', u'hallett', u'cove', u'hospit']
[u'brisban', u'compani', u'break', u'grind', u'racehors', u'test']
[u'byrd', u'say', u'lewi', u'dodg']
[u'canada', u'report', u'sar', u'death']
[u'canadian', u'softwar', u'engin', u'arrest', u'murder']
[u'carlisl', u'triangular', u'seri']
[u'carter', u'lead', u'zealand', u'rout', u'wale']
[u'casar', u'hold', u'aussi', u'sprinter', u'claim', u'stage']
[u'celtic', u'champion', u'leagu', u'qualifi', u'trek']
[u'charg', u'lay', u'toilet', u'camera']
[u'child', u'protect', u'group', u'lobbi', u'foster', u'care']
[u'china', u'close', u'dedic', u'sar', u'hospit']
[u'chirac', u'urg', u'british', u'action', u'miss', u'cameraman']
[u'colombia', u'track', u'ut', u'save', u'kiwi', u'blush']
[u'compens', u'payout', u'util', u'design', u'fraud']
[u'conflict', u'report', u'chechnya', u'bomb', u'blast']
[u'confus', u'resumpt', u'iraq', u'export']
[u'cooge', u'peac', u'camper', u'rais', u'iraq', u'fund']
[u'costa', u'join', u'grow', u'wimbledon', u'sick', u'list']
[u'court', u'reserv', u'decis', u'contempt', u'charg']
[u'dane', u'kjeldsen', u'lead', u'tricki', u'gleneagl', u'cours']
[u'democrat', u'meet', u'rebuild', u'parti']
[u'detain', u'iranian', u'student', u'whereabout', u'unknown']
[u'detain', u'children', u'nation', u'disgrac', u'refuge']
[u'dippenaar', u'seal', u'south', u'africa']
[u'dubbo', u'emerg', u'team', u'rule', u'local', u'sar', u'case']
[u'england', u'zealand', u'lanka', u'receiv', u'world']
[u'england', u'outplay', u'wallabi']
[u'fanfar', u'greet', u'potter', u'book']
[u'forb', u'put', u'jennif', u'aniston']
[u'french', u'govern', u'ramp', u'tour', u'dope', u'test']
[u'fund', u'boost', u'prevent', u'health', u'care']
[u'furious', u'laport', u'threaten', u'world', u'ax']
[u'gascoign', u'awol', u'give', u'ultimatum', u'chines', u'club']
[u'gazza', u'hand', u'gansu', u'deadlin']
[u'ghostbust', u'spend', u'haunt', u'even', u'melbourn']
[u'goosen', u'trim', u'baird', u'lead', u'york']
[u'govou', u'fire', u'franc', u'semi']
[u'govt', u'await', u'kalgoorli', u'desalin', u'plan', u'studi']
[u'grace', u'bros', u'shut', u'countri', u'door', u'tomorrow']
[u'gregan', u'defend', u'bore', u'england']
[u'gunfir', u'kill', u'melbourn']
[u'hama', u'deni', u'powel', u'enemi', u'peac', u'charg']
[u'hegarti', u'miss', u'maroon', u'train']
[u'henin', u'hardenn', u'meet', u'clijster', u'dutch', u'final']
[u'histor', u'mass', u'grave', u'uncov', u'cook', u'island']
[u'hobart', u'ralli', u'call', u'refuge', u'visa', u'overhaul']
[u'hodgson', u'readi', u'ducati', u'parti', u'misano']
[u'hunt', u'saddam', u'intensifi', u'captiv']
[u'icrc', u'meet', u'detain', u'burmes', u'opposit', u'member']
[u'illeg', u'immigr', u'drown', u'boat', u'capsiz']
[u'indian', u'court', u'summon', u'author', u'soap', u'opera', u'libel']
[u'inform', u'talk', u'eas', u'agricultur', u'block']
[u'injuri', u'kill', u'wound', u'hama', u'assassin']
[u'intern', u'inquiri', u'compromis', u'public']
[u'investig', u'need', u'cancer', u'treatment', u'error']
[u'iraq', u'road', u'domin', u'talk']
[u'islam', u'council', u'welcom', u'mosqu', u'threat', u'convict']
[u'italian', u'offer', u'cash', u'leav', u'volcano', u'danger', u'zone']
[u'japan', u'impos', u'econom', u'sanction', u'north', u'korea']
[u'jennif', u'aniston', u'top', u'celebr', u'power', u'poll']
[u'kidnap', u'observ', u'unharm']
[u'kosciuszko', u'brumbi', u'cull', u'ineffect', u'wilder', u'group']
[u'kuwait', u'honour', u'general', u'frank']
[u'launceston', u'polic', u'hunt', u'attack']
[u'luster', u'buster', u'bounti', u'hunter', u'hold', u'mexico']
[u'charg', u'violent', u'attack', u'schoolgirl']
[u'masai', u'warrior', u'kill', u'lion', u'payback']
[u'massiv', u'manhunt', u'gun', u'hotel']
[u'mecca', u'raid', u'net', u'women', u'link', u'qaeda', u'suspect']
[u'melbourn', u'gunman', u'larg']
[u'gun', u'know', u'underworld', u'figur']
[u'montgomeri', u'eas', u'final']
[u'motorcyclist', u'die', u'road', u'accid']
[u'biotech', u'asthma', u'drug', u'get', u'approv']
[u'minist', u'quiet', u'corrupt', u'cop', u'investig']
[u'polic', u'leak', u'info', u'crimin', u'deputi']
[u'tackl', u'properti', u'crime', u'highest', u'nation']
[u'elton', u'john', u'auction']
[u'civilian', u'kill', u'aceh', u'human', u'right']
[u'ballot', u'save', u'jordan', u'candid', u'vote']
[u'pagan', u'revel', u'celebr', u'solstic', u'stoneheng']
[u'pakistan', u'arrest', u'italian', u'hold', u'nuclear']
[u'rise', u'avert', u'ambo', u'industri', u'action']
[u'polic', u'investig', u'fatal', u'elder', u'death']
[u'polic', u'investig', u'secur', u'firm', u'break']
[u'polic', u'overse', u'broom', u'darwin', u'biki', u'ride']
[u'potter', u'fever', u'bewitch', u'australia']
[u'powel', u'call', u'mazen', u'gaza']
[u'priest', u'criticis', u'clergyman', u'appoint']
[u'princ', u'william', u'get', u'door']
[u'puma', u'seal', u'histor', u'test']
[u'polic', u'close', u'kingaroy', u'heist', u'suspect']
[u'rann', u'lobbi', u'submarin', u'facil']
[u'cross', u'issu', u'urgent', u'group', u'blood']
[u'refuge', u'group', u'want', u'woomera', u'children', u'releas']
[u'rescu', u'crew', u'tanker', u'hit', u'hous']
[u'resid', u'evacu', u'tanker', u'crash']
[u'rice', u'follow', u'powel', u'road', u'tour']
[u'robberi', u'tip', u'alleg', u'tortur', u'motiv']
[u'router', u'crash', u'unplug', u'swedish', u'internet', u'user']
[u'rubin', u'surviv', u'match', u'point', u'beat', u'capriati']
[u'runaway', u'train', u'leav', u'trail', u'destruct']
[u'rusedski', u'reach', u'nottingham', u'final']
[u'fish', u'industri', u'support', u'high', u'court', u'challeng']
[u'lib', u'democrat', u'band', u'live', u'music']
[u'win', u'battl', u'state']
[u'schalken', u'cours', u'dutch', u'doubl']
[u'scout', u'master', u'arrest', u'child', u'offenc', u'charg']
[u'scoutmast', u'charg', u'child', u'offenc']
[u'eagl', u'ahead', u'shark', u'half', u'time']
[u'eagl', u'slam', u'shark', u'eel', u'dragon']
[u'senat', u'criticis', u'tent', u'embassi', u'fenc', u'remov']
[u'murder', u'scandal', u'base', u'lie', u'court', u'tell']
[u'shark', u'trap', u'tuna', u'farm', u'win', u'repriev']
[u'singl', u'vehicl', u'fatal', u'sydney']
[u'state', u'emerg', u'fire', u'rage', u'southern']
[u'state', u'side', u'prepar', u'fremantl', u'clash']
[u'studi', u'link', u'foster', u'care', u'paint', u'sniff']
[u'swift', u'consolid', u'spot']
[u'telstra', u'rank', u'sack', u'technician']
[u'terror', u'alert', u'close', u'embassi', u'kenya']
[u'tesk', u'clear', u'york']
[u'ferri', u'mainland', u'tasmania', u'rout']
[u'ticket', u'sale', u'euro', u'oversubscrib']
[u'timber', u'industri', u'notic', u'water', u'safeti', u'issu']
[u'wrestler', u'gather', u'world', u'championship']
[u'tsvangirai', u'bail', u'treason', u'charg']
[u'underworld', u'figur', u'slay', u'execut', u'style']
[u'consid', u'suspici']
[u'embassi', u'threat', u'wrong', u'kenya']
[u'media', u'ownership', u'tussl', u'mirror', u'aust', u'debat']
[u'promot', u'food', u'answer', u'world', u'hunger']
[u'raid', u'target', u'iraq', u'fedayeen']
[u'victim', u'group', u'blame', u'youth', u'crime', u'rate']
[u'wallabi', u'break']
[u'wallabi', u'improv', u'world', u'jone']
[u'want', u'rich', u'space', u'tourist', u'bolster', u'fund']
[u'watchdog', u'crack', u'money', u'launder']
[u'welfar', u'group', u'rent', u'subsidi']
[u'william', u'beat', u'montgomeri', u'crown']
[u'wimbledon', u'ultim', u'prize', u'clijster']
[u'windi', u'eager', u'chang', u'ail', u'imag']
[u'detain', u'kenya', u'anti', u'terror', u'swoop']
[u'dead', u'explos', u'somali', u'warlord', u'palac']
[u'save', u'capsiz', u'refuge', u'boat']
[u'abort', u'ship', u'deni', u'entri', u'polish', u'port']
[u'adelaid', u'hous', u'claim', u'live']
[u'adelaid', u'host', u'intern', u'biotech', u'confer']
[u'afghan', u'court', u'journalist', u'blasphemi']
[u'afghanistan', u'flood', u'kill']
[u'agassi', u'hewitt', u'wimbledon', u'battl']
[u'armi', u'reservist', u'honour', u'brisban']
[u'aussi', u'pitcher', u'lloyd', u'york']
[u'aussi', u'sprinter', u'choisir', u'take', u'royal', u'ascot']
[u'australia', u'greet', u'winter', u'solstic']
[u'australia', u'lead', u'antarct', u'tourism', u'investig']
[u'flight', u'attend', u'miss', u'sydney']
[u'barrier', u'reef', u'booti', u'go', u'cancer', u'drug']
[u'billi', u'pigeon', u'wing', u'home', u'style']
[u'box', u'champ', u'tyson', u'charg', u'hotel', u'brawl']
[u'branson', u'ditch', u'concord']
[u'brazil', u'hunt', u'head', u'home']
[u'brisban', u'ralli', u'mark', u'world', u'refuge']
[u'bunia', u'countdown', u'weapon']
[u'bushfir', u'victim', u'seek', u'greater', u'rebuild', u'support']
[u'captur', u'aid', u'say', u'saddam', u'son', u'aliv']
[u'casagrand', u'lead', u'mcgee', u'fade', u'switzerland']
[u'chines', u'babi', u'pregnant', u'twin']
[u'copi', u'lewi', u'surviv', u'bloodi', u'battl', u'world']
[u'tri', u'escap', u'burn', u'home']
[u'defeat', u'teach', u'lesson', u'say', u'australia', u'jone']
[u'delic', u'rescu', u'shark', u'trap', u'tuna', u'farm']
[u'deportivo', u'makaay', u'get', u'spanish', u'centuri']
[u'ding', u'dong', u'dell', u'cow']
[u'drug', u'compani', u'investig', u'killer']
[u'injur', u'driver', u'plough', u'german', u'street']
[u'summit', u'protest', u'rampag', u'greek', u'citi']
[u'expert', u'cast', u'doubt', u'iraq', u'weapon', u'trailer', u'claim']
[u'explos', u'damag', u'iraq', u'pipelin']
[u'fear', u'grow', u'miss', u'melbourn', u'girl']
[u'firefight', u'work', u'save', u'observatori', u'bush']
[u'fish', u'net', u'blame', u'mauritania', u'dolphin', u'death']
[u'focus', u'atsic', u'work', u'leadership', u'ridgeway']
[u'bond', u'corp', u'director', u'custodi', u'perth']
[u'governor', u'name']
[u'light', u'plane', u'crash']
[u'fourth', u'person', u'detain', u'backpack', u'attack']
[u'franc', u'arrest', u'exil', u'iranian', u'opposit', u'member']
[u'gaddafi', u'junior', u'sign', u'year', u'deal']
[u'design', u'distinguish', u'gallop']
[u'govt', u'accept', u'recommend', u'esten', u'report']
[u'govt', u'call', u'communiti', u'unemploy', u'solut']
[u'govt', u'hail', u'bond', u'director', u'extradit']
[u'govt', u'incent', u'plan', u'flaw', u'presid']
[u'govt', u'denial', u'effect', u'media', u'law']
[u'green', u'cruis', u'speedi', u'washington', u'win']
[u'hama', u'vow', u'vengeanc', u'leader', u'death']
[u'harvey', u'norman', u'face', u'sunday', u'trade', u'fin']
[u'hind', u'lara', u'boost', u'windi', u'repli']
[u'hong', u'kong', u'hour', u'away', u'sar', u'clearanc']
[u'indigen', u'leader', u'back', u'foster', u'care', u'royal']
[u'indonesian', u'offens', u'kill', u'rebel']
[u'injur', u'henin', u'hop', u'wimbledon']
[u'injuri', u'time', u'penalti', u'put', u'cameroon', u'semi']
[u'inmat', u'consum', u'alcohol', u'work', u'duti']
[u'interlop', u'arrest', u'princ', u'africa', u'bash']
[u'investig', u'continu', u'kill']
[u'iran', u'readi', u'cooper', u'iaea', u'nuclear', u'chief']
[u'iraq', u'begin', u'sell']
[u'irish', u'enthusiast', u'say', u'swap', u'warbeat', u'danc']
[u'israel', u'kill', u'hama', u'offici', u'push']
[u'kenyan', u'polic', u'probe', u'embassi', u'threat', u'dozen']
[u'intellig', u'bodi', u'iraq', u'inquiri']
[u'kjeldsen', u'build', u'gleneagl', u'lead']
[u'labor', u'call', u'immedi', u'releas', u'child']
[u'laila', u'talk', u'tough', u'extend', u'unbeaten']
[u'larg', u'miss', u'post', u'offic', u'break']
[u'latham', u'promis', u'independ', u'speaker', u'labor', u'win']
[u'societi', u'question', u'bail', u'chang']
[u'lewi', u'franci', u'raquil', u'euro', u'speed']
[u'lewi', u'surviv', u'bloodi', u'battl', u'world', u'titl']
[u'list', u'england', u'defeat', u'australia']
[u'media', u'overhaul', u'good', u'small', u'proprietor', u'alston']
[u'medic', u'indemn', u'subsidi', u'begin', u'tomorrow']
[u'melbourn', u'girl', u'disappear', u'prank']
[u'militia', u'group', u'give', u'hour', u'leav', u'bunia']
[u'napier', u'concern', u'dentist']
[u'bulb', u'restor', u'eiffel', u'tower', u'sparkl']
[u'home', u'stamp', u'duti', u'reign', u'latham']
[u'govt', u'scrap', u'rainwat', u'tank', u'subsidi']
[u'govt', u'target', u'smuggler']
[u'polic', u'appeal', u'help', u'track', u'miss']
[u'nuclear', u'watchdog', u'head', u'welcom', u'iranian', u'cooper']
[u'ogara', u'inspir', u'ireland', u'test', u'samoan']
[u'explos', u'death', u'toll', u'rise', u'signific']
[u'outback', u'search', u'miss', u'teenag', u'hiker']
[u'palestinian', u'accus', u'israel', u'assassin']
[u'palestinian', u'need', u'chang', u'road', u'annan']
[u'parti', u'negoti', u'jabiluka', u'water', u'manag', u'option']
[u'petrol', u'compani', u'tri', u'seal', u'pipelin']
[u'petrol', u'looter', u'burn', u'aliv', u'pipelin', u'explos']
[u'philippin', u'bishop', u'reliev', u'harass']
[u'phoenix', u'down', u'thunderbird', u'firebird']
[u'announc']
[u'expect']
[u'polic', u'appeal', u'help', u'suspici', u'cowra', u'death']
[u'polic', u'confirm', u'ident', u'murder', u'melbourn']
[u'polic', u'confirm', u'murder', u'melbourn', u'man', u'ident']
[u'polic', u'identifi', u'plane', u'crash', u'victim']
[u'polic', u'investig', u'child', u'alleg']
[u'polish', u'protest', u'block', u'dutch', u'abort', u'ship']
[u'pope', u'urg', u'reconcili', u'bosnia', u'visit']
[u'port', u'arthur', u'killer', u'bryant', u'treat', u'hospit']
[u'post', u'saddam', u'media', u'enjoy', u'limit', u'freedom']
[u'pottermania', u'break', u'record', u'worldwid']
[u'preced', u'prevent', u'ruddock', u'front', u'visa', u'inquiri']
[u'protestor', u'govt', u'free', u'children']
[u'defenc', u'reservist', u'honour', u'brisban', u'march']
[u'rain', u'forc', u'suspens', u'play']
[u'rebellin', u'lead', u'tour', u'newcom', u'gerolstein']
[u'refuge', u'ralli', u'hail', u'famili', u'court', u'rule']
[u'repair', u'delay', u'iraq', u'export']
[u'resid', u'push', u'bypass', u'safeti', u'audit']
[u'roger', u'fourth', u'rout']
[u'rubin', u'set', u'sight', u'wimbledon', u'titl']
[u'ruddock', u'await', u'brief', u'famili', u'court', u'refuge', u'rule']
[u'rudd', u'pursu', u'govt', u'bali', u'warn', u'omiss']
[u'rusedski', u'bounc', u'injuri', u'titl']
[u'saddam', u'fedayeen', u'plan', u'comeback', u'newspap', u'report']
[u'opposit', u'investig', u'alleg', u'art', u'fund']
[u'seneg', u'ferri', u'disast', u'victim', u'bigger']
[u'skipper', u'warn', u'stay', u'away', u'migrat', u'whale']
[u'korea', u'endors', u'food', u'budget', u'north']
[u'special', u'olymp', u'launch', u'dublin']
[u'specul', u'underworld', u'murder', u'unhelp', u'polic']
[u'kilda', u'girl', u'miss', u'rout', u'class']
[u'summer', u'deadlin', u'superfast', u'ferri']
[u'tesk', u'stretch', u'rochest', u'lead']
[u'thorp', u'edg', u'hackett', u'sydney']
[u'thousand', u'ralli', u'mandatori', u'detent']
[u'thousand', u'ralli', u'mark', u'world', u'refuge']
[u'charg', u'kingaroy', u'heist', u'breakthrough']
[u'charg', u'attempt', u'murder']
[u'trap', u'shark', u'aliv', u'happi', u'say', u'fisheri']
[u'tribal', u'theme', u'princ', u'william', u'birthday', u'bash']
[u'kill', u'explos', u'somali', u'warlord', u'compound']
[u'tyson', u'arrest', u'york', u'hotel', u'brawl']
[u'unauthent', u'video', u'warn', u'qaeda', u'attack']
[u'militari', u'observ', u'releas', u'congo']
[u'troop', u'raid', u'baghdad', u'theatr', u'seiz']
[u'govt', u'continu', u'fare', u'evas', u'crackdown']
[u'villag', u'flee', u'rampag', u'eleph', u'kill']
[u'wallabi', u'improv', u'world', u'jone']
[u'warrior', u'tiger', u'dog', u'point']
[u'play', u'histor', u'middl', u'east', u'peac', u'king']
[u'wenger', u'eas', u'pain', u'arsenal', u'departur', u'seaman']
[u'quiz', u'cost', u'blowout', u'project']
[u'world', u'superbik', u'leader', u'hodgson', u'pole']
[u'young', u'coupl', u'road', u'crash', u'north']
[u'youth', u'leav', u'elder', u'woman', u'strand', u'home']
[u'kill', u'train', u'derail', u'india']
[u'boost', u'health', u'clinic']
[u'abar', u'forecast', u'drop', u'commod', u'export']
[u'abbott', u'turn', u'claim', u'labor']
[u'absenc', u'blow', u'men', u'titl', u'race', u'wide', u'open']
[u'actew', u'plan', u'water', u'treatment', u'plant']
[u'adelaid', u'compani', u'win', u'black', u'hawk', u'refit', u'project']
[u'allianc', u'cost', u'govt']
[u'call', u'broadband', u'competit', u'inquiri']
[u'call', u'doctor', u'blood']
[u'cut', u'job']
[u'analysi', u'warn', u'farm', u'slump']
[u'asean', u'tell', u'north', u'korea', u'nuclear', u'ambit']
[u'aussi', u'fresh', u'look', u'dead', u'nazi', u'plane']
[u'australian', u'round', u'action']
[u'bali', u'survivor', u'confront', u'alleg', u'mastermind']
[u'bangladeshi', u'team', u'arriv', u'brisban']
[u'barca', u'finish', u'season', u'high', u'claim', u'uefa']
[u'barcaldin', u'pin', u'hop', u'leagu', u'match']
[u'beat', u'boca', u'victim', u'fixtur', u'congest']
[u'belarus', u'writer', u'vasil', u'bykov', u'die']
[u'best', u'hit', u'beckham', u'transfer', u'report']
[u'blue', u'strive', u'perfect']
[u'bombala', u'council', u'urg', u'rethink', u'merger']
[u'boost', u'north', u'coast', u'agenc']
[u'bowl', u'club', u'face', u'financi', u'woe']
[u'busi', u'look', u'relief', u'budget']
[u'mackay', u'consid', u'research']
[u'capriati', u'count', u'fight', u'spirit']
[u'compon', u'factori', u'worker', u'face', u'lockout']
[u'childer', u'mark', u'year']
[u'chines', u'trade', u'opportun', u'spotlight']
[u'offici', u'discuss', u'leadership', u'issu']
[u'colombia', u'outsmart', u'japan', u'reach', u'conf', u'semi']
[u'communiti', u'group', u'attempt', u'address', u'long', u'term']
[u'compli', u'dole']
[u'expert', u'discuss', u'spam', u'concern']
[u'confid', u'serena', u'readi', u'buri', u'pari', u'nightmar']
[u'council', u'demand', u'greater', u'consult', u'baxter']
[u'council', u'hop', u'resolv', u'age', u'care', u'plan', u'issu']
[u'council', u'prepar', u'deliv', u'budget']
[u'council', u'ask', u'plastic', u'shop', u'bag']
[u'council', u'count', u'cost', u'sand', u'drift']
[u'cowboy', u'protest', u'convers', u'controversi']
[u'crash', u'victim', u'rescu', u'volunt']
[u'danger', u'know', u'unknown', u'threaten', u'hewitt']
[u'danih', u'pledg', u'demon', u'turnaround']
[u'debat', u'erupt', u'council', u'boundari']
[u'diver', u'urg', u'help', u'save', u'grey', u'nurs', u'shark']
[u'drink', u'driver', u'record', u'high', u'level', u'studi']
[u'drought', u'lower', u'grape', u'harvest']
[u'drug', u'giant', u'inject', u'cash', u'biotech', u'sector']
[u'chinchilla']
[u'edinburgh', u'unit', u'starter', u'say', u'hib', u'boss']
[u'await', u'tuna', u'farm', u'applic']
[u'expert', u'highlight', u'river', u'murray', u'water', u'flow', u'concern']
[u'fear', u'austoft', u'closur', u'cost', u'job']
[u'fear', u'ferri', u'choke', u'tasmania']
[u'fifth', u'charg', u'backpack', u'attack']
[u'crow', u'expect', u'carlton', u'clash']
[u'injur', u'wagga', u'road', u'crash']
[u'fix', u'bendora', u'water', u'problem', u'cost']
[u'parol', u'offic', u'reject', u'comment']
[u'franc', u'stroll', u'past', u'white']
[u'fraser', u'visitor', u'warn', u'dingo', u'danger']
[u'garcia', u'wood', u'threaten', u'rain', u'mar', u'event']
[u'explos', u'victim', u'payout']
[u'support', u'unwelcom', u'anglican', u'archbishop']
[u'global', u'group', u'shrink', u'draft']
[u'oppon', u'street']
[u'govt', u'hop', u'restrict', u'reduc', u'bushfir']
[u'govt', u'offer', u'packag', u'reviv', u'deaf', u'centr']
[u'greek', u'forc', u'seiz', u'explos', u'cach']
[u'green', u'pull', u'white', u'win', u'doubl']
[u'group', u'seek', u'stop', u'develop']
[u'hama', u'kill', u'muddi', u'peac', u'talk']
[u'har', u'race', u'club', u'plan', u'surviv']
[u'harradin', u'seek', u'media', u'merger']
[u'harri', u'potter', u'latest', u'fastest', u'seller', u'smith']
[u'harvey', u'norman', u'face', u'sunday', u'trade', u'charg']
[u'heal', u'valuabl', u'boomer', u'goorjian']
[u'help', u'urg', u'dairi', u'farmer', u'tough']
[u'hera', u'lose', u'pecharroman', u'win', u'tour']
[u'hill', u'face', u'injuri']
[u'home', u'town', u'prais', u'wait']
[u'hong', u'kong', u'win', u'sar', u'battl']
[u'hors', u'trainer', u'ban', u'cannabi', u'offenc']
[u'hundr', u'gather', u'support', u'falun', u'dafa']
[u'indian', u'make', u'histor', u'trip', u'china']
[u'indian', u'visit', u'china', u'thaw', u'relat']
[u'injur', u'green', u'withdraw', u'final']
[u'injuri', u'toll', u'davenport']
[u'inquiri', u'call', u'rigor', u'vote', u'check']
[u'iron', u'strong', u'aussi', u'surfer']
[u'jobless', u'rate', u'fall', u'eden', u'monaro']
[u'jordan', u'telecom', u'send', u'internet', u'iraq']
[u'judg', u'refus', u'oat', u'bail']
[u'kalgoorli', u'host', u'road', u'confer']
[u'kay', u'win', u'playoff', u'claim', u'titl']
[u'critic', u'earli', u'return', u'potter', u'winner']
[u'knight', u'prop', u'accus', u'nightclub', u'incid']
[u'landslid', u'derail', u'train', u'india']
[u'ditch', u'save', u'tent', u'embassi', u'build']
[u'launch', u'second', u'mar', u'probe', u'postpon', u'nasa']
[u'lewi', u'ponder', u'option', u'fight', u'fan', u'relish', u'fresh']
[u'lifelin', u'countri', u'race', u'club']
[u'lion', u'crossroad', u'say', u'matthew']
[u'local', u'issu', u'rais', u'mount', u'morgan']
[u'lomu', u'set', u'comeback', u'date']
[u'major', u'jump', u'rank']
[u'deni', u'bail', u'backpack', u'tortur', u'charg']
[u'die', u'collis', u'near', u'beaconsfield']
[u'hospit', u'roll', u'cliff']
[u'face', u'court', u'robberi', u'charg']
[u'mayor', u'air', u'water', u'develop', u'hop']
[u'menzi', u'add', u'blue', u'origin', u'squad']
[u'midwiv', u'plan', u'involv', u'wide', u'consult']
[u'militari', u'asia']
[u'industri', u'consid', u'plane', u'plan']
[u'minist', u'blame', u'cwealth', u'school', u'fund']
[u'mix', u'respons', u'alcohol', u'plan']
[u'monday', u'order', u'play', u'wimbledon']
[u'express', u'histor', u'ental']
[u'morn', u'pill', u'easier', u'access']
[u'urg', u'campaign', u'jetti']
[u'campaign', u'nathan']
[u'station', u'airwav']
[u'away', u'militari', u'pension']
[u'vocal', u'polit']
[u'parliament', u'debat', u'nation', u'park']
[u'legisl', u'ownership', u'seab']
[u'oat', u'face', u'embezzl', u'charg']
[u'timber', u'run']
[u'dead', u'injur', u'french', u'plane', u'crash']
[u'opal', u'kiwi']
[u'origin', u'humour']
[u'panel', u'beat', u'blaze', u'consid', u'suspici']
[u'petit', u'want', u'youth', u'crime', u'address']
[u'piquet', u'dream', u'follow', u'father']
[u'player', u'threaten', u'grand', u'slam', u'boycott']
[u'player', u'threaten', u'grand', u'slam', u'boycott']
[u'allow', u'spi', u'face', u'inquiri']
[u'polic', u'interview', u'fifth', u'backpack', u'attack']
[u'policeman', u'face', u'fresh', u'drug', u'traffic', u'charg']
[u'polic', u'plane', u'crash', u'victim']
[u'polic', u'probe', u'coast', u'bank', u'robberi']
[u'polic', u'probe', u'fatal', u'road', u'crash']
[u'polic', u'probe', u'hous', u'blaze']
[u'polic', u'quarantin', u'sar', u'scare']
[u'polic', u'seek', u'detail', u'bodi', u'cowra']
[u'polic', u'seek', u'help', u'miss']
[u'polic', u'seek', u'desert', u'bolter']
[u'polic', u'studi', u'video', u'moran', u'killer', u'clue']
[u'polit', u'game', u'reform', u'push']
[u'poll', u'result', u'show', u'jamaican', u'toss']
[u'port', u'need', u'cope', u'ferri']
[u'powel', u'propos', u'mideast', u'free', u'trade', u'link']
[u'powerlin', u'chang', u'reduc', u'bushfir', u'risk']
[u'probe', u'urg', u'asbesto', u'lade', u'machineri']
[u'promin', u'citizen', u'offer', u'cross', u'support']
[u'prostat', u'cancer', u'treatment', u'show', u'promis']
[u'coalit', u'odd', u'feder', u'govt']
[u'offer', u'research', u'dividend', u'taxpay']
[u'rat', u'slug', u'nambucca']
[u'relic', u'reveal', u'ancient', u'tibetan', u'histori']
[u'resourc', u'market', u'modest', u'boost']
[u'revel', u'urg', u'care', u'firework']
[u'reward', u'offer', u'help', u'solv', u'doubl', u'slay']
[u'ricegrow', u'face', u'water', u'alloc']
[u'rijkaard', u'offer', u'barca', u'coach']
[u'rivkin', u'surgeri', u'postpon']
[u'road', u'part', u'reopen', u'semi', u'crash']
[u'roddick', u'readi', u'roll', u'wimbledon']
[u'roger', u'share', u'rout', u'fifth', u'place']
[u'romario', u'hit', u'trick', u'guarani', u'finish']
[u'ronaldinho', u'real', u'bind', u'say']
[u'ronaldo', u'show', u'world', u'best']
[u'ruddock', u'ask', u'revers', u'deport', u'decis']
[u'russian', u'independ', u'channel', u'pull']
[u'govt', u'challeng', u'art', u'fund', u'critic']
[u'sapphir', u'french', u'tour']
[u'sar', u'kill', u'canada']
[u'schalken', u'confid', u'dutch', u'triumph']
[u'scientist', u'discov', u'gene', u'halt', u'ovarian']
[u'scooter', u'safeti', u'worri', u'spark', u'meet']
[u'seafood', u'industri', u'discuss', u'reef', u'rezon', u'plan']
[u'second', u'face', u'court', u'tortur', u'charg']
[u'shark', u'settl', u'farm', u'life']
[u'shire', u'look']
[u'shoaib', u'pass', u'attitud', u'test']
[u'shut', u'perron', u'tell', u'dissent']
[u'sixer', u'pull', u'philippin', u'tournament']
[u'slim', u'okay', u'manag']
[u'snow', u'northern', u'tableland']
[u'solomon', u'seek', u'militari', u'muscl', u'oust', u'warlord']
[u'spain', u'xaus', u'superbik', u'doubl']
[u'speed', u'camera', u'steal', u'perth', u'suburb']
[u'state', u'rail', u'warn', u'waterfal', u'disast']
[u'stem', u'cell', u'centr', u'strike', u'research', u'deal']
[u'struggl', u'green', u'withdraw', u'final']
[u'studi', u'pharmaceut', u'industri', u'launch']
[u'studi', u'focus', u'western', u'road', u'kill']
[u'sydney', u'develop', u'plan', u'unveil']
[u'taiwan', u'report', u'sar', u'infect', u'death']
[u'teacher', u'consid', u'meekatharra', u'move']
[u'tesk', u'win', u'second', u'titl']
[u'court', u'backpack', u'tortur']
[u'tidi', u'town', u'fund', u'incent', u'offer', u'govt']
[u'earli', u'judg', u'break', u'demetriou']
[u'tougher', u'water', u'restrict', u'loom', u'central', u'victoria']
[u'trio', u'charg', u'armour', u'robberi']
[u'trio', u'face', u'judiciari']
[u'tyson', u'adversari', u'plead', u'innoc']
[u'union', u'target', u'gladston', u'worker', u'right']
[u'uranium', u'risk', u'troop', u'hill']
[u'offici', u'talk', u'strike', u'saddam']
[u'vfba', u'rais', u'emerg', u'servic', u'concern']
[u'wait', u'list', u'shorter']
[u'govt', u'play', u'hous', u'blame', u'game']
[u'polic', u'tell', u'staff', u'shortfal']
[u'washington', u'overcom', u'tragedi', u'nation']
[u'washout', u'halt', u'windi', u'repli']
[u'welfar', u'group', u'offer', u'lifelin', u'central', u'australia']
[u'westralia', u'inquest', u'resum', u'perth']
[u'wharf', u'accid', u'give', u'onlook', u'scare']
[u'whatmor', u'upbeat', u'bangladesh', u'team', u'arriv']
[u'white', u'winter', u'wonderland', u'batlow']
[u'drop', u'hong', u'kong', u'sar', u'affect', u'list']
[u'wine', u'glut', u'alert', u'bank', u'grape', u'grower', u'debt']
[u'wit', u'tell', u'bali', u'victim', u'agoni']
[u'work', u'begin', u'wickham', u'point', u'plant']
[u'work', u'power', u'plant', u'finish']
[u'world', u'tallest', u'residenti', u'build', u'take', u'shape']
[u'young', u'identifi', u'suicid', u'risk']
[u'youth', u'blase', u'parti', u'drug', u'danger']
[u'monitor', u'babi', u'wombat', u'progress']
[u'manhol', u'fall']
[u'abigroup', u'fin', u'fatal', u'explos']
[u'accus', u'thief', u'allow', u'return', u'home', u'africa']
[u'health', u'minist', u'weigh', u'drug', u'trial']
[u'tabl', u'indemn', u'doctor']
[u'actu', u'launch', u'test', u'case', u'busi', u'cautious']
[u'adelaid', u'cancel', u'philippin', u'tour']
[u'give', u'final', u'schedul', u'fight']
[u'age', u'care', u'complex', u'setback']
[u'airlin', u'industri', u'reliev', u'sar', u'advisori']
[u'ord', u'follow', u'wall', u'street', u'lower']
[u'hit', u'donat', u'claim']
[u'look', u'increas', u'migrant', u'region', u'area']
[u'amalgam', u'legisl', u'debat', u'parliament']
[u'say', u'write', u'spell', u'project', u'demis']
[u'share', u'increas', u'trade', u'resum']
[u'share', u'strip']
[u'angler', u'hop', u'chang', u'draft', u'reef', u'rezon']
[u'angri', u'resid', u'disrupt', u'council', u'meet']
[u'asio', u'stall']
[u'asio', u'steal', u'right', u'ogorman']
[u'aust', u'pledg', u'support', u'bougainvill']
[u'bacon', u'deni', u'report', u'adopt', u'stanc']
[u'ballarat', u'teenag', u'turn', u'unharm']
[u'barca', u'releas', u'boer', u'hold', u'cocu']
[u'beij', u'halt', u'sarss', u'spread']
[u'biosecur', u'centr', u'establish', u'brisban']
[u'blix', u'question', u'action']
[u'blue', u'wari', u'half', u'lockyer']
[u'punch', u'tie', u'court', u'tell']
[u'breez', u'clijster', u'lleyton', u'loss', u'cloud']
[u'budget', u'club', u'reel']
[u'buoyant', u'argentina', u'arriv', u'south', u'africa']
[u'bush', u'urg', u'congress', u'pass', u'bioshield', u'fund']
[u'busi', u'slam', u'nsws', u'payrol', u'drive']
[u'cambodia', u'king', u'rule', u'vote', u'birth']
[u'cameroon', u'colombian', u'clash']
[u'cash', u'steal', u'bordertown', u'motel']
[u'chang', u'afoot', u'commerci', u'crab']
[u'charg', u'lay', u'probe']
[u'church', u'split', u'moot', u'issu']
[u'issu', u'report', u'case']
[u'committe', u'investig', u'joint', u'custodi']
[u'communiti', u'work', u'stop', u'petrol', u'sniff']
[u'concern', u'gambier', u'orthopaed', u'servic']
[u'confid', u'roddick', u'prim', u'rusedski', u'test']
[u'controversi', u'hospit', u'chief', u'resign']
[u'council', u'budget', u'hand']
[u'council', u'challeng', u'land', u'preserv']
[u'council', u'consid', u'appeal', u'neglig', u'case']
[u'council', u'ignor', u'wagga', u'park', u'object']
[u'council', u'look', u'salin', u'solut']
[u'councillor', u'suggest', u'citi', u'drink', u'zone']
[u'council', u'put', u'stop', u'basin', u'pollut']
[u'council', u'seek', u'land', u'releas']
[u'council', u'consid', u'motion', u'staff']
[u'council', u'finalis', u'boundari', u'plan']
[u'coupl', u'scottish', u'open', u'debut']
[u'coupl', u'failur', u'diagnos']
[u'court', u'give', u'green', u'light', u'fast', u'food', u'develop']
[u'cross', u'industri', u'clean']
[u'davenport', u'struggl', u'victori', u'aussi', u'stosur']
[u'debat', u'rag', u'youth', u'refug', u'locat']
[u'delay', u'angl', u'rule']
[u'doctor', u'urg', u'prescrib', u'exercis']
[u'egon', u'schiel', u'paint', u'sell', u'record', u'million']
[u'environment', u'bodi', u'probe', u'machineri', u'asbesto']
[u'deni', u'worsen', u'africa', u'famin']
[u'expel', u'student', u'turn', u'crime', u'report']
[u'expert', u'rout', u'help', u'trap', u'shark']
[u'face', u'snowtown', u'suspect', u'unveil']
[u'farmer', u'enjoy', u'mix', u'rainfal', u'fortun']
[u'fear', u'skin', u'cancer', u'warn', u'get']
[u'feder', u'overcom', u'round', u'jitter']
[u'firefight', u'want', u'inquiri', u'train', u'accid']
[u'flimsi', u'evid', u'justifi', u'blix']
[u'charg', u'mombasa', u'bomb']
[u'fund', u'help', u'endang', u'speci']
[u'garcia', u'confid', u'harrison', u'tournament']
[u'bishop', u'divid', u'anglican', u'church']
[u'govt', u'clear', u'power', u'station', u'bid']
[u'govt', u'deni', u'troop', u'dock']
[u'govt', u'fight', u'child', u'detent', u'rule']
[u'govt', u'order', u'inquiri', u'custodi', u'rule']
[u'govt', u'announc', u'telstra', u'sell', u'approv']
[u'govt', u'turn', u'heat', u'bolkus']
[u'green', u'eye', u'monster', u'flex', u'hulk', u'muscl']
[u'griffith', u'look', u'youth', u'leader']
[u'group', u'wont', u'mall', u'fight']
[u'handgun', u'start', u'week']
[u'hantuchova', u'sweep', u'second', u'round']
[u'harrison', u'move', u'waratah']
[u'harvey']
[u'hear', u'charg', u'taxi', u'driver', u'bash']
[u'hewitt', u'famili', u'hurt', u'game']
[u'hewitt', u'famili', u'hurt', u'game', u'wimbledon']
[u'hop', u'hospit', u'overcom', u'gastro', u'woe', u'soon']
[u'hospit', u'school', u'road', u'receiv', u'budget', u'bump']
[u'hospit', u'school', u'road', u'reciev', u'budget', u'bump']
[u'hous', u'plan', u'stall', u'govt', u'say', u'council']
[u'indian', u'coupl', u'world', u'record', u'wed']
[u'industri', u'concern', u'impact', u'wine']
[u'indi', u'futur', u'secur', u'mackenroth']
[u'inquest', u'asthma', u'death', u'begin', u'today']
[u'iraqi', u'deleg', u'offer', u'focal', u'point']
[u'iraqi', u'nation', u'front', u'court', u'peopl', u'smuggl']
[u'isra', u'armi', u'swoop', u'hama']
[u'isra', u'raid', u'sabotag', u'ceas']
[u'italian', u'polic', u'arrest', u'alleg', u'qaeda', u'backer']
[u'jackson', u'disappoint', u'final', u'decis']
[u'threat', u'despit', u'arrest', u'offici']
[u'jolli', u'roger', u'brink', u'victori']
[u'junk', u'email', u'get', u'smarter']
[u'karratha', u'sport', u'administr', u'centr']
[u'kay', u'close', u'world']
[u'kazakh', u'yakovlev', u'take', u'swiss', u'seventh', u'stage']
[u'king', u'island', u'concern', u'impact', u'ferri']
[u'kirtley', u'england', u'squad', u'johnson', u'return']
[u'labor', u'hint', u'shake', u'educ', u'fund']
[u'lawyer', u'strike', u'role', u'mortgag', u'lend']
[u'leighton', u'amcor', u'sign', u'contract']
[u'letter', u'surfac', u'miss', u'teen', u'case']
[u'link', u'alzheim', u'drug', u'rule']
[u'lion', u'disappoint', u'final', u'decis']
[u'lockyer', u'clear', u'maroon']
[u'lowest', u'wool', u'clip', u'expect', u'year']
[u'malaysia', u'nepal', u'dubai', u'benefit', u'expertis']
[u'mancebo', u'flecha', u'spearhead', u'ibanesto', u'tour']
[u'charg']
[u'jail', u'polic', u'assault']
[u'mar', u'express', u'lose', u'communic', u'beagl']
[u'mayor', u'talk', u'townsvill', u'budget']
[u'mcewen', u'clarifi', u'murray', u'levi', u'claim']
[u'medic', u'indemn', u'packag', u'doesnt']
[u'melbourn', u'build', u'evacu', u'scare']
[u'melbourn', u'firm', u'win', u'fighter', u'contract']
[u'migrant', u'plan', u'aim', u'boost', u'region', u'growth']
[u'mildura', u'trial', u'weather', u'servic']
[u'industri', u'downplay', u'export', u'earn', u'predict']
[u'studi', u'highlight', u'merger', u'altern']
[u'ministeri', u'forum', u'rais', u'road', u'feral', u'anim']
[u'western', u'silo', u'close']
[u'mother', u'tell', u'battl', u'save', u'asthmat']
[u'mount', u'morgan', u'forum', u'hear', u'local', u'concern']
[u'kentish', u'council', u'know', u'soon']
[u'mclaren', u'race', u'silverston']
[u'newsradio', u'focus', u'real', u'issu']
[u'check', u'place', u'westralia', u'inquest', u'tell']
[u'alcohol', u'restrict', u'plan']
[u'uranium', u'risk', u'aust', u'troop']
[u'budget', u'deliv', u'promis', u'egan']
[u'stager', u'coetzer', u'stumbl', u'second', u'round']
[u'claim', u'uni', u'increas', u'fee', u'follow', u'govt']
[u'oppn', u'attack', u'greedi', u'stamp', u'duti', u'grab']
[u'pacif', u'polic', u'forc', u'send', u'solomon']
[u'pakistan', u'leav', u'england', u'question', u'answer']
[u'pantani', u'upbeat', u'futur', u'despit', u'admiss']
[u'parent', u'daughter', u'meningococc']
[u'pension', u'rise']
[u'perilya', u'commit', u'break', u'hill', u'explor']
[u'pilot', u'stand', u'near', u'highway', u'land']
[u'parliament', u'consid', u'aid', u'crisi', u'law']
[u'polic', u'underag', u'drink', u'concern']
[u'polic', u'appeal', u'help', u'yallourn', u'murder']
[u'polic', u'review', u'search', u'miss', u'father']
[u'polit', u'erupt', u'drought']
[u'port', u'prepar', u'tough', u'match', u'sydney']
[u'portsmouth', u'teddi']
[u'public', u'urg', u'consid', u'legal', u'drug', u'danger']
[u'question', u'rais', u'sandon', u'approv']
[u'radiat', u'sick', u'report', u'iraq']
[u'rain', u'lucia', u'test', u'head', u'draw']
[u'rain', u'prove', u'patchi', u'landhold']
[u'ranger', u'defend', u'amoruso', u'blackburn']
[u'real', u'dump', u'coach', u'bosqu']
[u'region', u'bulk', u'bill', u'freefal', u'figur']
[u'rijkaard', u'give', u'make', u'barcelona', u'great']
[u'roddick', u'instal', u'favourit', u'men', u'titl']
[u'rusedski', u'battl', u'server']
[u'saddam', u'aid', u'flee', u'belarus', u'report']
[u'safeti', u'tip', u'omit', u'report', u'waterfal']
[u'schumach', u'expect', u'titl', u'battl']
[u'scud', u'lead', u'aussi', u'charg']
[u'seafood', u'council', u'wont', u'help', u'fund', u'fisher', u'legal']
[u'self', u'immol', u'burn', u'kill', u'iranian', u'protest']
[u'senat', u'begin', u'media', u'ownership', u'law', u'debat']
[u'senat', u'reject', u'super']
[u'senat', u'walk', u'fine', u'line', u'media']
[u'shark', u'end', u'mous', u'game', u'tuna']
[u'small', u'busi', u'tell', u'look', u'past', u'bank']
[u'smoke', u'stop', u'train', u'head', u'newcastl']
[u'solomon', u'sure', u'intervent', u'forc']
[u'speed', u'limit', u'mistak', u'spark', u'safeti', u'concern']
[u'srichaphan', u'reveng', u'hrbati']
[u'state', u'govern', u'warn', u'jail', u'year', u'old']
[u'student', u'draw', u'energi', u'plan']
[u'sudan', u'greec', u'clash', u'explos', u'haul']
[u'sugar', u'industri', u'push', u'case', u'free', u'trade']
[u'swansea', u'get', u'multi', u'purpos', u'centr']
[u'swan', u'welcom', u'increas', u'crean', u'newspol', u'rat']
[u'taiwan', u'await', u'sar', u'warn']
[u'teacher', u'await', u'budget', u'outcom']
[u'team', u'seek', u'medal', u'pari']
[u'telstra', u'worker', u'short', u'chang', u'union']
[u'tetanus', u'expert', u'hop', u'erad', u'diseas']
[u'cruis', u'ship', u'sail', u'australia', u'sea']
[u'thirsti', u'forest', u'like', u'affect', u'murray', u'darl']
[u'thousand', u'evacu', u'melbourn', u'high', u'rise']
[u'tourist', u'bodi', u'consid', u'region', u'zone', u'submiss']
[u'tourist', u'jail', u'fabric', u'thai', u'gang', u'rape']
[u'trade', u'hour', u'agenda']
[u'trio', u'court', u'arm', u'robberi']
[u'tuesday', u'order', u'play', u'wimbledon']
[u'turkey', u'dump', u'brazil', u'conf']
[u'turnaround', u'snowi', u'tourism', u'book']
[u'tweed', u'undergo', u'weed', u'spray']
[u'attack', u'crossbow', u'scissor', u'report']
[u'arrest', u'gawler', u'west', u'carjack']
[u'face', u'court', u'backpack', u'tortur']
[u'underworld', u'urg', u'break', u'silenc', u'execut']
[u'union', u'happi', u'longford', u'payout']
[u'union', u'step', u'campaign', u'chang', u'compo']
[u'court', u'uphold', u'internet', u'porn', u'filter']
[u'firefight', u'continu', u'battl', u'arizona', u'blaze']
[u'forc', u'clash', u'syrian', u'border', u'guard']
[u'forc', u'iraqi', u'kill']
[u'join', u'combat', u'global', u'warm']
[u'journalist', u'surrend', u'indonesian', u'militari']
[u'play', u'hunger', u'card', u'europ', u'debat']
[u'probe', u'iraq', u'syria', u'border', u'attack']
[u'troop', u'injur', u'ident']
[u'bushfir', u'assist', u'mail']
[u'warn', u'persuad', u'turban', u'surgeri']
[u'welfar', u'agenc', u'pick', u'bulk', u'bill']
[u'wellington', u'back', u'lomu', u'return', u'report']
[u'westralia', u'disast', u'million']
[u'white', u'show', u'world', u'potenti', u'problem']
[u'wimbledon', u'result']
[u'wine', u'group', u'question', u'bank', u'advic']
[u'wollongong', u'bishop', u'join', u'protest', u'appoint']
[u'woman', u'fin', u'servant', u'theft']
[u'women', u'jail', u'work', u'theft']
[u'world', u'count', u'maso']
[u'wrong', u'accus', u'leav', u'expos', u'ogorman']
[u'yass', u'need', u'water', u'sourc', u'say', u'council']
[u'youngster', u'test', u'sorenstam', u'win']
[u'road', u'fund', u'opposit']
[u'rat', u'slug', u'armidal', u'dumaresq']
[u'wit', u'evid', u'bould', u'inquest']
[u'kidnap', u'ugandan', u'schoolgirl']
[u'recognis', u'archbishop', u'media', u'award']
[u'aborigin', u'activist', u'appear', u'court', u'charg']
[u'govern', u'pass', u'budget']
[u'union', u'urg', u'reject', u'medicar', u'overhaul']
[u'ponder', u'draft', u'chang']
[u'drink', u'websit', u'launch', u'wine', u'inform']
[u'airport', u'search', u'power', u'extend']
[u'black', u'stick', u'sparkl', u'back', u'franc']
[u'american', u'iran', u'poll']
[u'amphetamin', u'rife', u'coast', u'drug', u'council']
[u'approv', u'karratha', u'hous', u'cost', u'studi']
[u'highlight', u'industri', u'histori']
[u'work', u'fetch', u'million', u'auction']
[u'asic', u'examin', u'disclosur']
[u'audit', u'give', u'thumb']
[u'aussi', u'baccanello', u'face', u'karlov']
[u'aust', u'lead', u'solomon', u'forc']
[u'barb', u'throw', u'polit', u'donat']
[u'need', u'luck', u'podium', u'button']
[u'basturk', u'predict', u'welcom', u'hell', u'england']
[u'bennett', u'predict', u'origin', u'dampen']
[u'launch', u'free', u'famili', u'baxter']
[u'hit', u'teenag', u'futur', u'women']
[u'blue', u'command', u'origin']
[u'blue', u'seal', u'command', u'origin']
[u'blue', u'seal', u'origin', u'seri', u'command']
[u'boater', u'warn', u'fine', u'increas']
[u'bould', u'inquest', u'hear', u'multipl', u'phone', u'fault']
[u'break', u'enter', u'rise', u'gunnedah']
[u'bremer', u'blame', u'baathist', u'iraq', u'sabotag']
[u'bridg', u'restor', u'wont', u'white', u'ant']
[u'britain', u'say', u'smack', u'parent']
[u'brit', u'iraq', u'attack', u'unprovok']
[u'budget', u'deliv', u'kiama', u'bypass']
[u'budget', u'deliv', u'increas', u'health', u'spend']
[u'budget', u'deliv', u'mix']
[u'budget', u'fail', u'deliv', u'north', u'stoner']
[u'driver', u'turn', u'music', u'produc']
[u'busi', u'urg', u'join', u'tourism', u'bodi']
[u'busi', u'hard', u'budget', u'chamber', u'say']
[u'buyer', u'seek', u'fail']
[u'improv', u'barossa', u'road']
[u'cane', u'farmer', u'report', u'push', u'support']
[u'chamber', u'welcom', u'retail', u'trade', u'hour', u'decis']
[u'children', u'poison', u'north', u'china']
[u'church', u'synod', u'wait', u'appoint', u'bishop']
[u'clark', u'follow', u'robinson', u'exampl']
[u'clash', u'break', u'liberian', u'capit']
[u'cole', u'appoint', u'director']
[u'committe', u'unabl', u'stop', u'land', u'clear']
[u'communiti', u'target', u'youth', u'crime']
[u'concern', u'air', u'home', u'owner', u'scheme']
[u'concern', u'air', u'western', u'sheep', u'industri']
[u'council', u'confid', u'park', u'wont', u'harm', u'waterway']
[u'council', u'consid', u'heritag', u'tourism', u'boost']
[u'council', u'declar', u'water', u'drink']
[u'council', u'consult', u'public', u'age', u'care', u'site']
[u'court', u'urg', u'ahead', u'mukhla', u'trial']
[u'demand', u'show', u'mental', u'health', u'phone', u'line']
[u'democrat', u'releas', u'detent', u'famili']
[u'demon', u'aim', u'troubl']
[u'dfat', u'issu', u'china', u'travel', u'warn']
[u'dog', u'destroy', u'maul', u'woman']
[u'doubt', u'rais', u'languag', u'research']
[u'drink', u'kid', u'send', u'wrong', u'messag']
[u'eal', u'salut', u'england']
[u'econom', u'valu', u'ecosystem']
[u'economi', u'surg', u'stronger', u'market']
[u'educ', u'posit', u'negat']
[u'shortag', u'send', u'price']
[u'electrolux', u'manag', u'cold']
[u'employ', u'blame', u'union', u'uncertain', u'futur']
[u'europ', u'reject', u'famin', u'claim', u'disput']
[u'montoya', u'ban', u'drive']
[u'farmer', u'deer', u'loos']
[u'farmer', u'lament', u'drought', u'conflict']
[u'farm', u'coupl', u'get', u'bank', u'payout']
[u'fatigu', u'trucki', u'long', u'wheel']
[u'fear', u'hold', u'wool', u'qualiti']
[u'feofanova', u'beat', u'dragila', u'fail', u'world', u'record']
[u'fish', u'boat', u'salvag', u'run', u'aground']
[u'fisichella', u'firman', u'ford', u'ralli']
[u'flood', u'displac', u'peopl', u'india']
[u'case', u'rise', u'southern']
[u'forc', u'soccer', u'fan', u'season']
[u'minist', u'charg', u'child', u'offenc']
[u'leak', u'spark', u'evacu']
[u'gilchrist', u'sportsmanship', u'earn', u'corpor', u'role']
[u'gippsland', u'jobless', u'rate', u'fall', u'slight']
[u'fail', u'save', u'road', u'offend']
[u'good', u'lock', u'want']
[u'govt', u'doubl', u'spend', u'canberra', u'prison']
[u'govt', u'prais', u'conduct', u'budget', u'hear']
[u'govt', u'question', u'toyn', u'legal', u'work']
[u'govt', u'reviv', u'beaudesert', u'rail', u'histori']
[u'govt', u'warn', u'educ', u'reform', u'inquiri']
[u'group', u'highlight', u'doctor', u'shortag', u'concern']
[u'greed', u'gambl', u'motiv', u'crime', u'report']
[u'greedi', u'bacteria', u'save', u'ancient', u'fresco']
[u'group', u'seek', u'fail', u'invest', u'scheme', u'compo']
[u'guilti', u'plea', u'refresh', u'stab', u'case']
[u'hama', u'gunmen', u'kill', u'isra', u'barrack', u'raid']
[u'henin', u'hardenn', u'stand', u'tall', u'despit', u'injuri']
[u'high', u'tech', u'anklet', u'help', u'solv', u'poki', u'addict']
[u'hospit', u'reject', u'surgeon', u'group', u'claim']
[u'hospit', u'railway', u'reciev', u'budget', u'boost']
[u'hous', u'shortag', u'govt', u'agenda']
[u'hit', u'lille', u'attack']
[u'illawarra', u'properti', u'price']
[u'indigen', u'tip', u'creat', u'oversea']
[u'insur', u'council', u'seek', u'releas', u'flood', u'data']
[u'insur', u'slug', u'lake', u'tour', u'oper']
[u'investig', u'continu', u'fatal', u'launceston']
[u'invinc', u'doug', u'ring', u'dead']
[u'iran', u'support', u'maintain', u'franc', u'hunger', u'strike']
[u'iraqi', u'civilian', u'kill', u'soldier', u'resid']
[u'japan', u'freez', u'protest', u'kyi', u'detent']
[u'judg', u'hail', u'laymen', u'work', u'wast', u'case']
[u'karzai', u'order', u'blasphem', u'journalist', u'free']
[u'kellogg', u'announc', u'cut']
[u'knife', u'scare', u'forc', u'qanta', u'plane', u'turnaround']
[u'laport', u'ring', u'chang', u'french', u'team', u'play']
[u'lara', u'happi', u'handl', u'muralitharan']
[u'leaney', u'rise', u'favourit', u'french', u'open']
[u'lib', u'want', u'line', u'boost']
[u'lion', u'readi', u'maul', u'tiger']
[u'lowi', u'reappoint', u'reserv', u'bank']
[u'abus', u'judg', u'sentenc']
[u'market', u'hold', u'rat', u'decis']
[u'mattiac', u'readi', u'hero', u'welcom', u'southwind']
[u'mayor', u'offer', u'migrant', u'plan', u'support']
[u'mayor', u'seek', u'merger', u'detail']
[u'media', u'divers', u'vital', u'democraci', u'harradin']
[u'meet', u'avert', u'hospit', u'industri', u'strife']
[u'meet', u'consid', u'kingdon', u'estat', u'support']
[u'meet', u'gaug', u'midwiferi', u'scheme', u'support']
[u'mice', u'sens', u'earthquak', u'research']
[u'mickelson', u'contempl', u'differ', u'approach']
[u'minimum', u'rat', u'rise', u'beaudesert']
[u'minist', u'foreshadow', u'water', u'price', u'rise']
[u'mix', u'respons', u'budget']
[u'fund', u'silver', u'citi', u'highway']
[u'whale', u'spot', u'tasmania']
[u'motor', u'registri', u'close', u'door']
[u'consid', u'seek', u'water', u'board', u'probe']
[u'oppos', u'weaken', u'imparja', u'hold']
[u'mullah', u'omar', u'organis', u'council', u'resist']
[u'mysteri', u'surround', u'british', u'death', u'iraq']
[u'nake', u'disappoint', u'spark', u'watchdog', u'critic']
[u'nation', u'accus', u'sell', u'telstra']
[u'nelson', u'say', u'need', u'educ', u'inquiri']
[u'explor', u'opportun', u'near', u'gympi']
[u'health', u'famili', u'servic', u'cooktown']
[u'magna', u'roll', u'product', u'line']
[u'mayor', u'rule', u'parti', u'polit', u'elect']
[u'vice', u'chancellor', u'ponder', u'challeng']
[u'conspiraci', u'bank', u'sale']
[u'nolan', u'paint', u'donat', u'galleri']
[u'introduc', u'law', u'kill', u'unborn']
[u'opposit', u'question', u'alic', u'sit', u'cost']
[u'celebr', u'year', u'self', u'govern']
[u'decriminalis', u'prostitut']
[u'ocean', u'releas', u'excess', u'water']
[u'offer', u'flood', u'tortur', u'backpack']
[u'offici', u'tightlip', u'knife', u'scare']
[u'pair', u'arrest', u'home', u'attack']
[u'parti', u'reach', u'agreement', u'asio']
[u'payment', u'entic', u'north', u'korea', u'histor', u'summit', u'council']
[u'perth', u'tourism', u'face', u'tough', u'competit']
[u'perus', u'cabinet', u'offici', u'quit']
[u'play', u'underway', u'origin']
[u'polic', u'conduct', u'winter', u'search', u'autumn', u'glori']
[u'polic', u'drug', u'power', u'beef']
[u'polic', u'investig', u'attack', u'sydney']
[u'polic', u'offic', u'recov', u'sydney', u'crash']
[u'polic', u'monitor', u'coffin', u'cheater']
[u'polic', u'treat', u'miss', u'angler', u'murder']
[u'port', u'author', u'hop', u'proceed']
[u'probe', u'launch', u'fatal', u'crash']
[u'fear', u'tafe', u'loss']
[u'public', u'meet', u'discuss', u'caravan', u'park', u'futur']
[u'stifl', u'west', u'economi']
[u'rain', u'threaten', u'origin']
[u'real', u'clean', u'beckham']
[u'real', u'line', u'fergi', u'deputi', u'queiroz', u'coach']
[u'rebat', u'water', u'save', u'devic']
[u'rehab', u'program', u'disarray']
[u'revitalis', u'crow', u'wari', u'blue']
[u'ricketson', u'battl', u'ahead', u'origin']
[u'robinson', u'quit', u'atsic', u'post']
[u'continu', u'water', u'author', u'elect']
[u'rudderless', u'kelm', u'unveil', u'tour', u'franc', u'team']
[u'salvo', u'launch', u'winter', u'blanket', u'drive']
[u'school', u'close', u'crime', u'figur', u'funer']
[u'scud', u'fire']
[u'second', u'bank', u'branch', u'edenhop']
[u'secur', u'light', u'plan', u'queen', u'park']
[u'senat', u'approv', u'power', u'asio']
[u'senat', u'back', u'harradin', u'media']
[u'senat', u'committe', u'releas', u'find']
[u'offend', u'suspect', u'attack']
[u'shark', u'incid', u'spark', u'aquacultur', u'concern']
[u'shiit', u'group', u'condemn', u'brit', u'kill']
[u'shower', u'forecast', u'origin']
[u'shuttl', u'disast', u'blame', u'wing', u'damag']
[u'small', u'rat', u'rise', u'gladston']
[u'south', u'africa', u'readi', u'reward', u'public', u'smith']
[u'south', u'east', u'school', u'share', u'budget', u'fund']
[u'kilda', u'return', u'injuri']
[u'studi', u'reveal', u'worri']
[u'support', u'medic', u'indemn', u'insur', u'boost']
[u'surgeon', u'shortag', u'identifi', u'region']
[u'suspect', u'sar', u'case', u'releas']
[u'sydney', u'greener', u'brisban', u'audit']
[u'tasmania', u'adopt', u'debat', u'heat']
[u'tassi', u'woolgrow', u'benefit', u'shortag']
[u'teen', u'help', u'steal', u'court', u'tell']
[u'telstra', u'back', u'upgrad', u'plan']
[u'telstra', u'sell', u'cost', u'bush', u'labor']
[u'thwait', u'expect', u'disput']
[u'thwait', u'announc', u'central', u'victorian', u'project']
[u'toronto', u'filmfest', u'open', u'cann', u'winner']
[u'tribun', u'clear', u'swan', u'rooki']
[u'troop', u'iraq', u'rise']
[u'turner', u'remain', u'croc']
[u'embassi', u'kenya', u'open', u'terrorist']
[u'face', u'daunt', u'task', u'build', u'iraqi', u'economi']
[u'order', u'revamp', u'nuclear', u'secur']
[u'vencil', u'ban', u'year', u'posit', u'test']
[u'violenc', u'aborigin', u'communiti', u'tackl']
[u'virgin', u'flight', u'boost', u'northern', u'tourism']
[u'voss', u'possibl', u'lion', u'return']
[u'polic', u'deni', u'fail', u'remot', u'nurs']
[u'wenger', u'rule', u'real', u'report']
[u'whiteley', u'say', u'adopt', u'undervalu']
[u'wimbledon', u'second', u'result']
[u'wimbledon', u'programm']
[u'windi', u'uncap', u'bowler', u'edward', u'second']
[u'winter', u'bring', u'good', u'coastal', u'rain']
[u'drown', u'sierra', u'leon', u'boat', u'capsiz']
[u'fear', u'dead', u'indian', u'accid']
[u'account', u'evid', u'king', u'bros', u'inquiri']
[u'actew', u'signal', u'water', u'infrastructur']
[u'govt', u'thump', u'gazump']
[u'govt', u'bring', u'rental', u'bond', u'loan']
[u'action', u'perform', u'studi']
[u'adelaid', u'driver', u'hold', u'stop', u'work', u'meet']
[u'ord', u'plung', u'rat']
[u'alston', u'say', u'senat', u'dagger', u'media', u'ownership']
[u'anderson', u'confid', u'nat', u'support']
[u'anderson', u'wont', u'rule', u'run', u'atsic', u'deputi']
[u'mass', u'grave', u'uncov', u'bosnia']
[u'step', u'stone', u'lindsay']
[u'arafat', u'expect', u'middl', u'east', u'ceas']
[u'asago', u'shock', u'hantuchova', u'marathon', u'encount']
[u'asbesto', u'spark', u'wesley', u'mission']
[u'asio', u'pass', u'senat']
[u'asylum', u'hous', u'site', u'rais', u'concern']
[u'athlet', u'chief', u'iron', u'dope', u'confus']
[u'auditor', u'general', u'say', u'need', u'improv']
[u'aust', u'discuss', u'solomon', u'forc']
[u'baccanello', u'fine', u'form', u'despit', u'loss']
[u'backpack', u'leav', u'hospit', u'soon', u'leav']
[u'visa', u'claim', u'evid', u'ruddock', u'tell', u'labor']
[u'baden', u'take', u'final', u'stage', u'vinokurov', u'win', u'tour']
[u'bashir', u'chief', u'wit', u'tell']
[u'navi', u'ship', u'head', u'townsvill']
[u'blair', u'communic', u'chief', u'deni', u'mislead']
[u'bothwel', u'reserv', u'worth']
[u'bouncer', u'court', u'nightclub']
[u'boycott', u'threat', u'prize', u'money']
[u'britain', u'lift', u'nairobi', u'flight']
[u'brogden', u'attack', u'carr']
[u'brogden', u'outlin', u'stamp', u'duti', u'cut', u'budget', u'repli']
[u'builder', u'urg', u'join', u'insur', u'fight']
[u'bush', u'kid', u'leader', u'alter', u'food']
[u'bush', u'servic', u'safe', u'telstra']
[u'employ', u'consider', u'refuge', u'visa']
[u'legisl', u'protect', u'bush']
[u'canberra', u'properti', u'price', u'rise', u'sharpli']
[u'cancer', u'patient', u'fight', u'transport', u'subsidi']
[u'cancer', u'patient', u'transport', u'subsidi', u'spotlight']
[u'firm', u'threaten', u'offshor']
[u'carpent', u'welcom', u'nelson', u'educ', u'plan']
[u'chanc', u'local', u'firm', u'tender', u'base', u'contract']
[u'china', u'admit', u'drug', u'problem']
[u'china', u'crack', u'massiv', u'counterfeit', u'ring']
[u'choi', u'hop', u'home', u'korea']
[u'clijster', u'ruthless', u'razzano']
[u'coetzer', u'promis', u'year']
[u'cole', u'credit', u'rat', u'downgrad']
[u'colombian', u'urg', u'step', u'terror', u'fight']
[u'confer', u'put', u'heart', u'diseas', u'spotlight']
[u'cook', u'review', u'draft', u'report', u'releas', u'soon']
[u'coron', u'name', u'road', u'crash', u'victim']
[u'council', u'consid', u'alcohol']
[u'council', u'hop', u'better', u'town', u'camp', u'control']
[u'council', u'help', u'timor', u'sister', u'citi']
[u'court', u'appeal', u'deliv', u'fingleton', u'decis']
[u'court', u'order', u'longford', u'disast', u'court', u'cost']
[u'czech', u'polic', u'stop', u'illeg', u'immigr', u'border']
[u'dalbi', u'punter', u'farewel', u'event']
[u'decis', u'reserv', u'jail', u'offend']
[u'dokic', u'bar', u'olymp']
[u'educ', u'divid', u'nation', u'school', u'plan']
[u'energi', u'panel', u'interview', u'stakehold', u'darwin']
[u'farm', u'reform', u'renew', u'negoti']
[u'reach', u'landmark', u'deal', u'farm', u'polici']
[u'european', u'journalist', u'face', u'trial', u'lao']
[u'export', u'gain', u'rate', u'costello']
[u'fairfax', u'sign', u'deal', u'hutchison']
[u'fardon', u'case', u'test', u'danger', u'prison']
[u'farmer', u'vote', u'plan', u'constitut', u'chang']
[u'tone', u'tobacco']
[u'fiji', u'coup', u'conspir', u'plead', u'lenienc']
[u'file', u'trader', u'face', u'prosecut']
[u'fingleton', u'convict', u'uphold', u'sentenc', u'halv']
[u'flatley', u'herbert', u'keen', u'impress', u'red']
[u'christian', u'minist', u'face', u'charg']
[u'minist', u'refus', u'bail', u'charg']
[u'fund', u'cannabi', u'health', u'research']
[u'gather', u'discuss', u'enforc', u'reef', u'protect']
[u'golf', u'club', u'sell', u'resort']
[u'go', u'wind', u'bean', u'lover', u'breath', u'easi']
[u'goosen', u'confirm', u'french', u'tournament']
[u'govt', u'ban', u'bulk', u'bill', u'term', u'oppn', u'say']
[u'govt', u'extend', u'detent', u'teen', u'asio']
[u'govt', u'push', u'uniform', u'school']
[u'grace', u'venus', u'coast', u'round']
[u'guggenheim', u'plan', u'ban', u'brazil']
[u'gunner', u'tell', u'ferguson', u'hand', u'vieira']
[u'haas', u'telstra', u'stanc']
[u'heart', u'failur', u'case', u'tip', u'rise']
[u'henderson', u'highlight', u'leak', u'minut']
[u'herbert', u'flatley', u'keen', u'impress', u'red']
[u'herbert', u'red', u'fiji', u'clash']
[u'hold', u'firm', u'media', u'law', u'cherri', u'tell', u'senat']
[u'home', u'ownership', u'move', u'reach']
[u'immigr', u'see', u'tourism', u'plus']
[u'india', u'reject', u'road', u'peac']
[u'investig', u'believ', u'dead', u'blaze', u'accident']
[u'iranian', u'investig', u'protest', u'arrest']
[u'iraqi', u'scientist', u'hand', u'nuke', u'part']
[u'iraq', u'intellig', u'perplex', u'incomplet']
[u'iron', u'geelong', u'robberi']
[u'israel', u'launch', u'fresh', u'gaza', u'strike']
[u'jail', u'give', u'extra', u'time', u'offenc']
[u'vacanc', u'high', u'despit', u'slight', u'fall']
[u'johnson', u'win', u'switzerland']
[u'karlov', u'down', u'aussi', u'second', u'round']
[u'kemp', u'reject', u'tent', u'embassi', u'heritag', u'applic']
[u'kennedi', u'fight', u'high', u'tackl', u'charg']
[u'king', u'bros', u'account', u'recal', u'nightmar', u'statement']
[u'kiwi', u'face', u'aussi', u'junior', u'world']
[u'knife', u'plane', u'insid', u'anderson']
[u'leaney', u'swing', u'caddi']
[u'local', u'appoint', u'heritag', u'build', u'societi', u'board']
[u'manag', u'revamp', u'mildura', u'council']
[u'die', u'workplac', u'accid']
[u'plead', u'guilti', u'child', u'charg']
[u'refus', u'bail', u'stab', u'case']
[u'marathon', u'process', u'gold', u'coast', u'race', u'entri']
[u'marsh', u'look', u'streak', u'form']
[u'martin', u'knock', u'kuerten']
[u'mattiac', u'head', u'field', u'jude', u'classic']
[u'mayor', u'defend', u'interst', u'oversea', u'trip']
[u'media', u'debat', u'continu', u'despit', u'amend']
[u'megawati', u'will', u'extend', u'aceh', u'fight']
[u'biolog', u'clock']
[u'middl', u'east', u'truce', u'draft', u'milit', u'group', u'fatah']
[u'disagre', u'size', u'lake', u'insur', u'slug']
[u'ncoss', u'unhappi', u'budget', u'region', u'mental', u'health']
[u'nelson', u'play', u'catch', u'educ', u'standard']
[u'hospit', u'open', u'door']
[u'solar', u'heater', u'expect', u'save', u'money']
[u'nike', u'sign', u'deed', u'ethic']
[u'blame', u'bennett']
[u'govt', u'push', u'chang', u'crime', u'law']
[u'north', u'coast', u'flood', u'caus', u'school', u'evacu']
[u'health', u'issu', u'enceph', u'warn']
[u'oldest', u'veteran', u'turn']
[u'person', u'trash', u'anoth', u'treasur', u'lifelin']
[u'opal', u'camp', u'dream', u'olymp', u'success']
[u'palestinian', u'teen', u'kill', u'isra', u'near', u'west', u'bank']
[u'parent', u'recov', u'children', u'highway']
[u'parliament', u'get', u'telstra', u'sale']
[u'peruvian', u'presid', u'lift', u'state', u'emerg']
[u'pilchard', u'stock', u'rise']
[u'pipelin', u'attack', u'wont', u'affect', u'iraq', u'export']
[u'pirat', u'forc', u'fish', u'boat', u'aust', u'water']
[u'bull', u'owner', u'warn', u'regul']
[u'polic', u'concern', u'miss']
[u'polic', u'associ', u'happi', u'number']
[u'polic', u'present', u'evid', u'tortur', u'case']
[u'polic', u'search', u'sydney', u'truck', u'hijack']
[u'polit', u'erupt', u'timber', u'fund']
[u'port', u'kennedi', u'foreshor', u'project', u'track']
[u'power', u'boost', u'east', u'kimberley']
[u'probe', u'launch', u'industri', u'accid']
[u'probe', u'order', u'teacher', u'convict']
[u'push', u'boost', u'region', u'migrant', u'number']
[u'govt', u'oppn', u'unit', u'telstra', u'sale']
[u'quartermain', u'give', u'support', u'clark']
[u'queiroz', u'get', u'real']
[u'rat', u'slug', u'maroochi', u'ratepay']
[u'real', u'madrid', u'presid', u'show', u'ruthless', u'streak']
[u'rebel', u'fight', u'close', u'liberian', u'capit']
[u'cross', u'offer', u'long', u'term', u'help', u'bali', u'victim']
[u'region', u'mobil', u'coverag', u'concern', u'brown']
[u'repent', u'rusedski', u'slump', u'slam']
[u'report', u'highlight', u'cane', u'support', u'dispar']
[u'report', u'highlight', u'concern', u'indigen', u'health']
[u'resid', u'disagre', u'beach', u'eros', u'plan']
[u'reveal', u'perfect', u'cuppa']
[u'robinson', u'seek', u'sourc', u'leak']
[u'roddick', u'wimbledon', u'favourit']
[u'medic', u'indemn', u'cover', u'consult']
[u'rspca', u'blast', u'defenc', u'dept', u'cull', u'plan']
[u'ruddock', u'appli', u'hold', u'detent', u'rule']
[u'rusedski', u'fin', u'outburst']
[u'nat', u'rebel', u'telstra']
[u'schultz', u'reject', u'sale', u'telstra']
[u'schumach', u'quit', u'faster', u'rival', u'emerg']
[u'search', u'anger', u'trigger', u'soldier', u'death', u'resid']
[u'senat', u'accept', u'final', u'asio', u'chang']
[u'prepar', u'flood']
[u'train', u'boost']
[u'seven', u'dead', u'iran', u'hercul', u'crash']
[u'attack', u'victim', u'give', u'polic', u'vital', u'evid']
[u'shire', u'highlight', u'infrastructur', u'need']
[u'simsmet', u'get', u'clear', u'asbesto', u'scare']
[u'smith', u'lead', u'south', u'africa', u'seri']
[u'soak', u'rain', u'welcom', u'southern', u'inland']
[u'solomon', u'nation']
[u'solomon', u'businessman', u'warn', u'violenc']
[u'solomon', u'polic', u'welcom', u'foreign', u'forc']
[u'state', u'like', u'oppos', u'educ', u'plan']
[u'stat', u'tough', u'sentenc', u'high', u'crime']
[u'suspens', u'rule', u'kennedi', u'origin', u'test']
[u'suspens', u'rule', u'kennedi', u'origin']
[u'syria', u'protest', u'iraq', u'border', u'incid']
[u'tap', u'steal', u'detect', u'cabinet', u'commiss']
[u'polic', u'resolv', u'disput', u'sack', u'sergeant']
[u'seek', u'young', u'mum', u'school']
[u'teacher', u'fight', u'standardis', u'studi']
[u'telstra', u'aim', u'allay', u'privatis', u'fear']
[u'telstra', u'sale', u'depend', u'market', u'howard']
[u'tenant', u'fairer', u'deal', u'blacklist', u'databas']
[u'dead', u'jordan', u'bridg', u'collaps']
[u'thatcher', u'husband', u'die']
[u'thousand', u'flee', u'monrovia', u'fight', u'finish']
[u'throsbi', u'child', u'custodi', u'probe']
[u'tick', u'treatment', u'sit', u'close']
[u'tier', u'seat', u'plan', u'entertain', u'centr']
[u'ralli', u'team', u'field', u'lesser', u'driver']
[u'torment', u'pantani', u'make', u'heartfelt', u'plea', u'privaci']
[u'tortur', u'backpack', u'famili', u'thank', u'support']
[u'motorist', u'kill', u'plane', u'land', u'highway']
[u'unamend', u'media', u'return', u'senat']
[u'underworld', u'figur', u'funer', u'monday']
[u'union', u'upset', u'lack', u'timber', u'compo', u'talk']
[u'unlik', u'fish', u'kill', u'report', u'overst']
[u'solomon', u'task', u'downer']
[u'anti', u'dope', u'agenc', u'ban', u'swimmer']
[u'award', u'blair', u'gold', u'medal', u'iraq', u'support']
[u'mend', u'fenc', u'white', u'hous']
[u'cut', u'rat', u'year']
[u'rat', u'worri', u'sign']
[u'slash', u'rat']
[u'fuel', u'spill', u'clean', u'underway']
[u'govt', u'scrap', u'tender', u'polici']
[u'introduc', u'youth', u'curfew']
[u'wall', u'dip', u'announc']
[u'warn', u'issu', u'autumn', u'royal', u'vine', u'plant']
[u'water', u'board', u'chief', u'welcom', u'probe']
[u'wimbledon', u'fourth', u'program']
[u'wimbledon', u'result']
[u'woman', u'court', u'stepfath', u'death']
[u'salt', u'reduct', u'scheme', u'murray']
[u'arrest', u'iran', u'protest', u'report']
[u'cyclist', u'disrupt', u'melbourn', u'traffic']
[u'accc', u'offer', u'lenienc', u'cartel', u'turncoat']
[u'accus', u'killer', u'attend', u'victim', u'funer']
[u'doctor', u'consid', u'insur', u'offer']
[u'start']
[u'consid', u'shipyard', u'futur', u'contract', u'lose']
[u'aerial', u'goat', u'cull', u'get']
[u'agassi', u'set', u'aynaoui', u'showdown']
[u'group', u'call', u'interst', u'prison', u'recal']
[u'aircraft', u'cabin', u'pressur', u'blame', u'studi']
[u'alic', u'spring', u'host', u'beani', u'bash']
[u'alleg', u'sexism', u'bulli', u'anger', u'femal']
[u'ord', u'recov', u'slide']
[u'ambros', u'fastest', u'practic']
[u'american', u'blake', u'disappoint']
[u'anderson', u'seek', u'atsic', u'deputi', u'posit']
[u'anim', u'nurseri', u'lose', u'battl', u'rezon']
[u'antibodi', u'lead', u'vaccin', u'studi']
[u'appeal', u'court', u'overturn', u'java', u'rule']
[u'austoft', u'fallout', u'continu']
[u'bacon', u'challeng', u'ferri', u'cost']
[u'baddeley', u'cours']
[u'bail', u'refus', u'assault', u'charg']
[u'bali', u'victim', u'happi', u'cross', u'donat', u'plan']
[u'bear', u'road', u'young', u'gun', u'clash']
[u'beckham', u'present', u'real', u'media', u'event']
[u'progress', u'gaza', u'talk']
[u'blair', u'putin', u'buri', u'iraq', u'hatchet']
[u'bomber', u'crush', u'cat']
[u'bomber', u'watson', u'debut']
[u'border', u'suspect', u'prove', u'pigeon', u'chest']
[u'bowen', u'snap', u'crab', u'farm', u'propos']
[u'break', u'hill', u'film', u'scout', u'consid', u'success']
[u'bronco', u'roll', u'rooster']
[u'bulldog', u'upbeat', u'trade', u'posit']
[u'highway', u'upgrad', u'urgenc']
[u'camel', u'farmer', u'fear', u'livestock']
[u'cameroon', u'play', u'final', u'despit', u'foe', u'death']
[u'canberra', u'raaf', u'base', u'prepar', u'downgrad']
[u'castaway', u'yachtsman', u'rescu', u'coast']
[u'cavali', u'secur', u'pick', u'jam']
[u'chamber', u'look', u'form', u'oslo']
[u'chang', u'afoot', u'alcohol', u'sale']
[u'chang', u'galor', u'springbok', u'puma', u'prepar']
[u'china', u'throw', u'open', u'door', u'aussi', u'meat', u'produc']
[u'church', u'chariti', u'suffer', u'hollingworth', u'fallout']
[u'class', u'action', u'prepar', u'sluic', u'gate', u'fail']
[u'clock', u'count', u'palm', u'council']
[u'commerci', u'concern', u'fish', u'zone']
[u'committe', u'investig', u'crime', u'commiss']
[u'concern', u'air', u'wild', u'fish', u'stock']
[u'concern', u'voic', u'dairi', u'crisi']
[u'coroni', u'inquest', u'doubl', u'slay', u'begin']
[u'costello', u'put', u'faith', u'chariti']
[u'council', u'air', u'servic', u'delay', u'fear']
[u'council', u'appoint', u'act', u'mayor']
[u'council', u'approv', u'cost', u'hous', u'plan']
[u'council', u'claim', u'support', u'boundari', u'chang']
[u'council', u'consid', u'instal', u'act', u'general', u'manag']
[u'council', u'move', u'closer', u'food', u'precinct', u'plan']
[u'council', u'put', u'bite', u'danger', u'dog']
[u'council', u'seek', u'water', u'qualiti', u'assur']
[u'cowboy', u'look', u'shut', u'steven', u'beatti']
[u'crow', u'sign', u'goodwin']
[u'dairi', u'farmer', u'threaten', u'supplier', u'chang']
[u'dokic', u'confid', u'ahead', u'sharapova', u'match']
[u'driver', u'urg', u'obey', u'road', u'rule']
[u'drought', u'declar', u'extend']
[u'dust', u'factor', u'ringer', u'accid', u'polic']
[u'educ', u'dept', u'prefer', u'princip']
[u'educ', u'offic', u'speak', u'behaviour', u'issu']
[u'egan', u'reject', u'impost', u'claim']
[u'england', u'fail', u'worri', u'vaughan']
[u'accus', u'nuditi', u'cover', u'plan']
[u'propos', u'reform', u'farm', u'subsidi', u'criticis']
[u'expert', u'say', u'farm', u'overhaul', u'eas', u'price']
[u'expert', u'examin', u'skeleton']
[u'faction', u'agre', u'ceas', u'hama']
[u'fast', u'furious', u'respons', u'donkey', u'driver']
[u'fear', u'medic', u'indemn', u'woe', u'hamper', u'region']
[u'festiv', u'tip', u'boost', u'warrnambool', u'tourism']
[u'fight', u'intensifi', u'liberia']
[u'fingleton', u'give', u'resign', u'deadlin']
[u'fingleton', u'like', u'resign']
[u'fingleton', u'miss', u'resign', u'deadlin']
[u'fish', u'group', u'vow', u'continu', u'gill', u'court']
[u'flood', u'kill', u'affect', u'million', u'chines']
[u'flower', u'perform', u'stun', u'england']
[u'staffer', u'order', u'cost', u'harrison']
[u'senat', u'thurmond', u'die', u'age']
[u'wool', u'chief', u'defend', u'spend']
[u'kill', u'isra', u'armi', u'raid']
[u'fuel', u'wholesal', u'deni', u'fraud', u'record', u'fine']
[u'fund', u'wastewat', u'scheme', u'busi', u'plan']
[u'fund', u'target', u'road', u'safeti']
[u'pipelin', u'contract', u'tender']
[u'govt', u'announc', u'apra', u'team']
[u'govt', u'thwart', u'fish', u'escap']
[u'govt', u'urg', u'extend', u'rat', u'crown', u'leas', u'deadlin']
[u'grant', u'aim', u'help', u'attract', u'nurs']
[u'green', u'accus', u'govt', u'secreci']
[u'gulf', u'ship', u'go', u'fisherman']
[u'gungahlin', u'record', u'land', u'sale', u'collaps']
[u'hall', u'face', u'demolit']
[u'harri', u'potter', u'surviv', u'adolesc', u'rowl']
[u'heart', u'foundat', u'welcom', u'pill', u'trial']
[u'heavi', u'storm', u'batter', u'gold', u'coast', u'flood']
[u'henin', u'hardenn', u'play', u'molik', u'round']
[u'henman', u'steal', u'centr', u'stage']
[u'hid', u'reshuffl', u'shadow', u'cabinet']
[u'highway', u'group', u'meet', u'deputi']
[u'histor', u'cattl', u'drive', u'enact', u'plan']
[u'hous', u'assembl', u'pass', u'adopt', u'law']
[u'hull', u'oppos', u'telstra', u'sale']
[u'hunter', u'valley', u'teen', u'charg', u'sexual', u'assault']
[u'call', u'love']
[u'ikin', u'carlaw', u'rooster', u'clash']
[u'indefinit', u'jail', u'test']
[u'independ', u'arbit', u'tackl', u'disput']
[u'independ', u'push', u'cane', u'toad', u'fenc']
[u'indonesian', u'militari', u'arrest', u'journalist', u'aceh']
[u'industri', u'accid', u'investig']
[u'inquiri', u'recommend', u'dairi', u'deregul', u'audit']
[u'insur', u'cost', u'claim', u'tourism', u'railway']
[u'isra', u'soldier', u'kill', u'gaza', u'raid']
[u'itali', u'drop', u'terror', u'charg', u'pakistani']
[u'japanes', u'apologis', u'gang', u'rape', u'comment']
[u'jardin', u'tour', u'sell']
[u'jone', u'forc', u'apologis', u'defam', u'decis']
[u'judg', u'prepar', u'offend', u'jail']
[u'katherin', u'airport', u'viabl', u'mayor']
[u'kenya', u'chepchumba', u'give', u'year', u'dope']
[u'tell', u'cluck', u'india']
[u'king', u'confid', u'romp', u'itali']
[u'kucera', u'lose', u'health', u'stephen', u'lose', u'hous']
[u'labor', u'refer', u'visa', u'scandal', u'polic']
[u'leav', u'labor', u'unhappi', u'drug', u'search', u'legisl']
[u'liberian', u'rebel', u'declar', u'immedi', u'ceas']
[u'lion', u'welcom', u'voss']
[u'magic', u'heart', u'pill', u'year', u'doctor']
[u'charg', u'yallourn', u'north', u'murder']
[u'lose', u'appeal', u'publish', u'holocaust', u'denial']
[u'child', u'charg', u'expect', u'reappli']
[u'mayor', u'defend', u'council', u'mordek', u'inconsist']
[u'mayor', u'want', u'inflat', u'rule', u'rate', u'rise']
[u'mcguir', u'set', u'sight', u'swan']
[u'mckenzi', u'resign', u'wallabi', u'selector']
[u'meat', u'export', u'china', u'bonanza', u'produc', u'tell']
[u'mildura', u'expect', u'busi', u'winter', u'tourism']
[u'mobil', u'phone', u'user', u'slap', u'fine']
[u'montgomeri', u'determin', u'lower', u'world', u'record']
[u'doctor', u'leav', u'toowoomba']
[u'fund', u'need', u'water', u'suppli']
[u'illeg', u'wood', u'cut', u'goldfield']
[u'mourner', u'attend', u'funer', u'underworld', u'figur']
[u'concern', u'possibl', u'freight', u'rate', u'hike']
[u'nalbandian', u'bustl']
[u'nasa', u'solar', u'plane', u'crash', u'hawaii']
[u'mclaren', u'fail', u'crash', u'test']
[u'partnership', u'expect', u'boost', u'region', u'fund']
[u'vice', u'presid', u'dairi', u'group']
[u'need', u'cash', u'visa', u'inquiri', u'howard']
[u'north', u'sydney', u'bash', u'victim', u'die']
[u'club', u'plan', u'poki', u'fight']
[u'olymp', u'athlet', u'exempt']
[u'opera', u'return', u'rome', u'bath', u'caracalla']
[u'paul', u'grey', u'heenan', u'ax', u'wallabi', u'squad']
[u'report', u'disturb', u'say', u'oppn']
[u'pierc', u'happi']
[u'pirat', u'interfer', u'research', u'mission']
[u'player', u'distract', u'disput', u'jone']
[u'look', u'custom', u'claim']
[u'consid', u'join', u'solomon', u'forc']
[u'polic', u'assoc', u'hop', u'review', u'boost', u'polic', u'number']
[u'polic', u'count', u'cost', u'steal', u'sheep']
[u'polic', u'alleg', u'assault', u'despic']
[u'polic', u'quiz', u'children', u'underworld', u'slay']
[u'polic', u'continu', u'drug', u'crackdown']
[u'pretend', u'announc', u'shadow', u'iraq', u'govern']
[u'privaci', u'commission', u'support', u'better', u'sampl']
[u'protest', u'continu', u'mooloolaba', u'harbour', u'woe']
[u'public', u'urg', u'wari', u'blue', u'green', u'alga', u'danger']
[u'punter', u'prepar', u'cold', u'race', u'meet']
[u'push', u'communiti', u'input', u'campus', u'oper']
[u'cast', u'doubt', u'fish', u'blueprint']
[u'nat', u'issu', u'telstra', u'sale', u'support', u'warn']
[u'question', u'rais', u'telstra', u'sale', u'servic', u'claim']
[u'record', u'fin', u'compani', u'evas']
[u'research', u'pill', u'heart', u'attack', u'risk']
[u'resid', u'clean', u'glenelg', u'flood']
[u'resid', u'access', u'nois', u'studi']
[u'erupt', u'reef', u'tourism']
[u'ruddock', u'defend', u'detaine', u'hous', u'consult']
[u'govt', u'accus', u'cover']
[u'govt', u'probe', u'coastal', u'concern']
[u'defend', u'exclus', u'internet', u'right']
[u'drop', u'rego', u'sticker']
[u'saudi', u'bomb', u'mastermind', u'surrend', u'report']
[u'school', u'close', u'underworld', u'funer']
[u'scientist', u'whale', u'discoveri']
[u'senat', u'remov', u'anti', u'terror', u'fenc']
[u'serena', u'subdu', u'fighter', u'callen']
[u'shop', u'owner', u'blame', u'archaic', u'law', u'fine']
[u'shire', u'hear', u'wind', u'farm', u'detail']
[u'snowtown', u'trial', u'show', u'serial', u'killer', u'poem']
[u'sport', u'academi', u'plan', u'ballarat']
[u'statut', u'limit', u'remain', u'court', u'rule']
[u'straw', u'deni', u'weapon', u'intellig', u'exagger']
[u'support', u'govt', u'timber', u'fund', u'stanc']
[u'swan', u'hop', u'power', u'port']
[u'sydney', u'clear', u'murder', u'charg']
[u'tfga', u'chief', u'confid', u'constitut']
[u'gun', u'round']
[u'dead', u'arrest', u'west', u'bank', u'violenc']
[u'injur', u'blast']
[u'thursday', u'wimbledon', u'result']
[u'tissu', u'construct', u'team', u'grow']
[u'tradesman', u'cool', u'nerv', u'gold', u'australia']
[u'troop', u'solomon', u'month']
[u'turkey', u'seiz', u'citi', u'dwell', u'sheep', u'istanbul']
[u'soldier', u'kidnap', u'iraq', u'report']
[u'ullrich', u'casero', u'lead', u'bianchi', u'tour']
[u'critic', u'threaten', u'stabil']
[u'union', u'fight', u'entitl']
[u'univers', u'tell', u'wont', u'wors']
[u'unpreced', u'surgeri', u'separ', u'adult', u'twin']
[u'court', u'dismiss', u'appeal', u'moussaoui', u'access']
[u'court', u'rule', u'texa']
[u'soldier', u'kill', u'south', u'baghdad']
[u'troop', u'comb', u'iraq', u'miss', u'comrad']
[u'dairi', u'farmer', u'elect', u'nation', u'group']
[u'wallabi', u'dump', u'paul', u'grey']
[u'wall', u'street', u'upbeat']
[u'waterfal', u'inquiri', u'hear', u'foot', u'pedal', u'flaw']
[u'water', u'fund', u'boost', u'drought', u'area']
[u'westralia', u'inquiri', u'hear', u'vital', u'document', u'mislay']
[u'wholesal', u'deni', u'fraud', u'record', u'fine']
[u'wild', u'weather', u'damag', u'shop', u'perth']
[u'wiser', u'mundin', u'prepar', u'world', u'titl', u'fight']
[u'woman', u'guilti', u'tortur', u'child']
[u'woman', u'kill', u'husband', u'unfit', u'trial']
[u'million', u'river', u'clean']
[u'arrest', u'anti', u'terror', u'raid', u'offici']
[u'accc', u'warn', u'drug', u'compani', u'promot']
[u'apologis', u'threaten', u'detent', u'worker']
[u'doctor', u'examin', u'govt', u'medic', u'indemn', u'offer']
[u'blame', u'auction', u'process', u'land', u'sale']
[u'polic', u'investig', u'bash', u'accid']
[u'afghan', u'minist', u'call', u'better', u'condit']
[u'armi', u'punish', u'drug', u'user', u'cosgrov']
[u'aspinal', u'call', u'vigil', u'elimin', u'abus']
[u'aussi', u'gate', u'choos', u'help', u'mcewen', u'lotto']
[u'aussi', u'gatecrash', u'centenari', u'tour']
[u'bangladesh', u'flood', u'kill', u'maroon']
[u'bangladesh', u'gain', u'upper', u'hand']
[u'bangladesh', u'place', u'queensland']
[u'bayliss', u'disappoint', u'grid', u'posit']
[u'british', u'govt', u'odd', u'iraq', u'intellig']
[u'bewar', u'wound', u'franc', u'thorn', u'warn', u'black']
[u'blatter', u'world', u'qualifi', u'battl']
[u'brisban', u'anglican', u'reflect', u'difficult', u'year']
[u'burma', u'free', u'envoy']
[u'cameroon', u'unsung', u'hero']
[u'cameroon', u'play', u'final']
[u'china', u'ban', u'tourist', u'part', u'great', u'wall']
[u'china', u'offer', u'post', u'sar', u'fee', u'stimul', u'tourism']
[u'china', u'open', u'world', u'longest', u'steel', u'arch', u'bridg']
[u'cipo', u'tour', u'hop', u'dash', u'good', u'appeal']
[u'citi', u'manag', u'keegan', u'lead', u'tribut']
[u'clemenc', u'encourag', u'kurd', u'arm']
[u'cosgrov', u'welcom', u'compens', u'scheme']
[u'deni', u'mishandl', u'murder', u'suicid', u'threat']
[u'cwealth', u'address', u'indigen', u'immunis']
[u'ullrich', u'pull', u'nation']
[u'darwin', u'polic', u'forc', u'stop', u'supercar']
[u'davenport', u'coast', u'past', u'black']
[u'dee', u'destroy', u'saint']
[u'dee', u'destroy', u'saint', u'port', u'sink', u'swan']
[u'dragon', u'eagl', u'storm', u'blow', u'away', u'tiger']
[u'nino', u'meteorologist']
[u'fall', u'star', u'allow', u'unherald', u'lpga', u'light', u'shine']
[u'offer', u'rusedski', u'fine', u'report']
[u'farina', u'elia', u'stun', u'rubin']
[u'farmer', u'open', u'museum', u'preserv', u'fowl', u'past']
[u'fassa', u'petacchi', u'basso', u'gonzalez', u'tour']
[u'fitzgibbon', u'origin']
[u'wicket', u'debut', u'edward', u'wreck', u'lanka']
[u'flood', u'continu', u'glenelg']
[u'lockout', u'tuesday']
[u'french', u'foreign', u'minist', u'call', u'liberian', u'multi']
[u'friend', u'turn', u'effervesc', u'clijster']
[u'futur', u'world', u'peac', u'depend', u'bush']
[u'glamorgan', u'maher']
[u'great', u'dane', u'pace', u'french', u'open']
[u'hid', u'leav', u'lib', u'leadership', u'question', u'open']
[u'huston', u'join', u'johnson', u'halfway', u'lead', u'memphi']
[u'fisherman', u'rescu', u'coast']
[u'iran', u'negoti', u'extradit', u'senior', u'qaeda']
[u'italian', u'trio', u'hand', u'ban']
[u'judg', u'prowl', u'dirti', u'delhi', u'street', u'court']
[u'karlov', u'happi', u'defeat']
[u'king', u'name', u'indian', u'physic', u'trainer']
[u'landslid', u'kill', u'china']
[u'larg', u'wave', u'warn', u'north', u'coast']
[u'liberian', u'urg', u'interven']
[u'lion', u'extend', u'lead', u'tiger']
[u'lion', u'tame', u'tiger', u'pie', u'bash', u'bulldog']
[u'mandela', u'hint', u'refus', u'meet', u'bush']
[u'mandela', u'snub', u'bush', u'iraq', u'protest']
[u'hospitalis', u'home', u'invas', u'spear']
[u'marijuana', u'doesnt', u'perman', u'harm', u'brain', u'studi']
[u'mediat', u'suspend', u'liberia', u'peac', u'talk']
[u'mix', u'reaction', u'flood', u'fund']
[u'schumi', u'chican', u'rais', u'nuerburgr']
[u'forest', u'face', u'final', u'vote']
[u'vow', u'implement', u'anti', u'corrupt']
[u'polic', u'prepar', u'motorcycl', u'club', u'arriv']
[u'olymp', u'committe', u'win', u'appeal', u'prize', u'money']
[u'pakistan', u'hire', u'australian', u'coach', u'foster']
[u'pani', u'fastest', u'european', u'practic']
[u'paradorn', u'set', u'roddick', u'clash']
[u'peopl', u'smuggler', u'jail', u'netherland']
[u'pittman', u'hold', u'oslo']
[u'solomon', u'ratifi', u'border', u'treati']
[u'polic', u'investig', u'bicycl', u'accid']
[u'polic', u'york', u'burglar', u'stick', u'chimney']
[u'polic', u'ponder', u'adelaid', u'stab']
[u'polic', u'raid', u'townsvill', u'barrack', u'search', u'drug']
[u'polic', u'rescu', u'adrift', u'north', u'coast']
[u'polic', u'seek', u'attempt', u'abduct']
[u'port', u'power', u'swan']
[u'introduc', u'fit', u'industri', u'code', u'practic']
[u'raikkonen', u'put', u'pressur', u'schumach']
[u'rainman', u'feder', u'chew', u'fish', u'reach', u'fourth', u'round']
[u'rebel', u'kill', u'kashmir', u'polic']
[u'resid', u'angri', u'plan']
[u'rivkin', u'undergo', u'surgeri', u'today']
[u'road', u'extend', u'syria', u'lebanon', u'envoy']
[u'roddick', u'venus', u'breez']
[u'ronaldinho', u'edg', u'closer', u'unit', u'agent']
[u'rusti', u'black', u'edg', u'franc']
[u'rwanda', u'outlaw', u'race', u'base', u'polit', u'parti']
[u'govt', u'offer', u'emerg', u'grant', u'flood', u'victim']
[u'sar', u'upsurg', u'milder', u'impact']
[u'schuettler', u'go', u'mental']
[u'schwarzenegg', u'ponder', u'polit', u'career']
[u'scrappi', u'sandpip', u'brave', u'loss', u'oriol']
[u'scud', u'molik', u'gear']
[u'sculptor', u'edward', u'win', u'poimena', u'award']
[u'second', u'mar', u'rover', u'readi', u'florida', u'launch']
[u'seoul', u'second', u'round', u'wash']
[u'shark', u'edg', u'cowboy']
[u'shoaib', u'get', u'clear', u'skip', u'bangladesh', u'seri']
[u'simoni', u'miss', u'italian', u'championship']
[u'skaif', u'secur', u'pole']
[u'skier', u'maier', u'lead', u'tour', u'franc']
[u'south', u'pacif', u'game', u'fiji']
[u'speed', u'blitz', u'catch', u'tasmania']
[u'staff', u'shortag', u'mean', u'weekend', u'birth', u'forb']
[u'stem', u'cell', u'inject', u'paralys', u'rat', u'help']
[u'nurs', u'blast', u'govt', u'fund', u'increas']
[u'teenag', u'refus', u'bail', u'charg']
[u'telstra', u'deni', u'thousand', u'job', u'slash']
[u'kill', u'rebel', u'storm', u'armi', u'camp', u'kashmir']
[u'thousand', u'liberian', u'urg', u'intervent']
[u'thousand', u'korean', u'riot', u'polic', u'dispers']
[u'thousand', u'sign', u'anti', u'telemarket', u'list']
[u'fijian', u'life', u'coup', u'role']
[u'miss', u'soldier', u'dead', u'iraq']
[u'welcom', u'agre', u'isra', u'withdraw']
[u'send', u'team', u'assess', u'iraq', u'stabil']
[u'soldier', u'kill', u'hurt', u'baghdad', u'attack']
[u'soldier', u'kill', u'wound', u'grenad', u'attack']
[u'south', u'korea', u'agre', u'mission', u'swap', u'troop', u'withdraw']
[u'vacc', u'welcom', u'petrol', u'excis', u'evas', u'fine']
[u'vaughan', u'undergo', u'scan']
[u'polic', u'investig', u'partial', u'burn', u'bodi']
[u'wimbledon', u'result']
[u'wimbledon', u'programm']
[u'march', u'european', u'parad']
[u'abus', u'strategi', u'work', u'stay', u'vigil', u'aspinal']
[u'accc', u'head', u'fel', u'finish']
[u'actcoss', u'welcom', u'prison', u'plan']
[u'agassi', u'move', u'scud', u'rang', u'russian', u'revolut']
[u'ambros', u'make']
[u'anderson', u'deni', u'cost', u'seat']
[u'anthoni', u'order', u'inquiri', u'claim']
[u'arthriti', u'medicin', u'list']
[u'australian', u'west', u'win', u'dutch', u'grand', u'prix']
[u'balconi', u'collaps', u'kill', u'chicago']
[u'banger', u'roll', u'queensland', u'academi']
[u'barca', u'confirm', u'viduka']
[u'belgian', u'feel', u'chipper', u'record']
[u'blair', u'longer', u'trust', u'quit', u'poll']
[u'bolt', u'come', u'saddl', u'season']
[u'british', u'mountain', u'biker', u'sweep', u'world', u'downhil']
[u'brumbi', u'toppl', u'tonga']
[u'builder', u'group', u'deni', u'price', u'hike']
[u'burma', u'accus', u'west', u'stir', u'unrest']
[u'bush', u'gift', u'list', u'unwrap']
[u'calzagh', u'defend', u'super', u'middleweight', u'crown']
[u'cameroon', u'doctor', u'deni', u'dope', u'foe', u'death']
[u'capriati', u'race', u'duck', u'controversi']
[u'choi', u'slip', u'lead', u'korean', u'lead', u'seoul', u'charg']
[u'collat', u'wimbledon', u'result']
[u'crow', u'crush', u'blue']
[u'crow', u'leap', u'ladder', u'roo', u'slip']
[u'darwin', u'urg', u'support', u'indigen', u'music']
[u'deal', u'financi', u'futur', u'close', u'mclaren', u'boss']
[u'dem', u'warn', u'govt', u'telstra', u'senat', u'bulli']
[u'diseas', u'claim', u'live', u'indian', u'flood']
[u'downer', u'talk', u'safeti', u'solomon', u'intervent']
[u'dutch', u'abort', u'boat', u'cruis', u'polish', u'women']
[u'england', u'upbeat', u'vaughan']
[u'equal', u'custodi', u'law', u'lower', u'divorc', u'anthoni']
[u'farina', u'blast', u'fifa', u'backflip']
[u'farina', u'blast', u'fifa', u'world', u'backflip']
[u'ferrero', u'stay', u'cours', u'style']
[u'fifa', u'chang', u'mind', u'oceania', u'auto', u'qualif']
[u'destroy', u'build', u'aspley', u'drive']
[u'hous', u'finish', u'canberra', u'bushfir', u'rebuild']
[u'flatley', u'knock', u'fiji', u'roll', u'red']
[u'black', u'captain', u'say', u'haka', u'overus']
[u'face', u'court', u'follow', u'raid', u'armi', u'base']
[u'franc', u'cameroon', u'readi', u'emot', u'homag']
[u'french', u'yearn', u'badger', u'glori', u'day']
[u'fresh', u'clash', u'erupt', u'north', u'afghan', u'faction']
[u'gibernau', u'win', u'rain', u'drench', u'dutch', u'grand', u'prix', u'motogp']
[u'global', u'summit', u'women', u'kick', u'morocco']
[u'govt', u'laud', u'crime', u'solv', u'technolog']
[u'govt', u'reject', u'flood', u'compens']
[u'hawk', u'docker']
[u'hawk', u'docker', u'eagl', u'edg', u'roo']
[u'henin', u'good', u'molik']
[u'hodgman', u'pledg', u'loyalti', u'hid']
[u'lunch', u'date', u'birth', u'tour']
[u'say', u'sharapova', u'dump']
[u'iranian', u'protest', u'detent', u'activist']
[u'islam', u'jihad', u'accept', u'truce', u'prevent', u'civil']
[u'isra', u'palestinian', u'secur', u'offici', u'hold']
[u'journalist', u'hold', u'lao', u'face', u'death', u'penalti']
[u'kestrel', u'convinc', u'darter', u'phoenix']
[u'knifeman', u'rob', u'melbourn', u'servo']
[u'late', u'koen', u'penalti', u'rescu', u'springbok', u'puma']
[u'battl', u'commenc', u'tour']
[u'liberia', u'say', u'talk', u'intervent', u'forc']
[u'liberia', u'welcom', u'support']
[u'lucio', u'say', u'roma', u'deal']
[u'cut', u'mine', u'accid']
[u'face', u'court', u'wentworthvill', u'hous']
[u'maynard', u'jackson', u'funer', u'hold', u'clinton', u'pay', u'tribut']
[u'mccartney', u'consid', u'cuba', u'concert', u'report']
[u'molotov', u'cocktail', u'damag', u'alic', u'spring', u'shop']
[u'mother', u'claim', u'live', u'offer', u'rent']
[u'surpris', u'nation', u'parti', u'support', u'telstra']
[u'nalbandian', u'aim', u'wreck', u'henman', u'dream']
[u'nasa', u'hop', u'weather', u'hold', u'mar', u'launch']
[u'ngos', u'protect', u'gang', u'disband', u'offici']
[u'fair', u'play', u'fifa', u'oceania', u'turn']
[u'call', u'school', u'damag', u'list']
[u'rescu', u'worker', u'warn', u'wave', u'caus']
[u'set', u'sight', u'renew', u'energi', u'target']
[u'obyrn', u'fear', u'telstra', u'forget', u'region']
[u'omalley', u'pois', u'strike', u'franc']
[u'call', u'glenelg', u'flood', u'compens']
[u'panther', u'bulldog', u'knight', u'warrior']
[u'parent', u'citizen', u'educ']
[u'polic', u'attack', u'knife', u'parti']
[u'polic', u'diver', u'search', u'miss', u'fisherman']
[u'polic', u'investig', u'soccer', u'grind', u'death']
[u'polic', u'investig', u'south', u'yarra', u'stab']
[u'polic', u'forc', u'night', u'curfew']
[u'transport', u'investig', u'waterford', u'derail']
[u'queensland', u'bowl', u'bangladesh']
[u'raikkonen', u'swoop', u'pole']
[u'rice', u'invit', u'mazen', u'visit', u'washington']
[u'rice', u'talk', u'palestinian', u'isra', u'latest']
[u'rogg', u'criticis', u'lewi', u'work', u'arbeit']
[u'rural', u'group', u'worri', u'nino', u'caus']
[u'govt', u'urg', u'subsidis', u'immobilis']
[u'wind', u'open', u'speed', u'limit']
[u'schwab', u'say', u'soccer', u'australia', u'part', u'blame']
[u'scud', u'aussi', u'stand', u'wimbledon']
[u'sehwag', u'centuri', u'light', u'leicestershir']
[u'soccer', u'boss', u'slam', u'devast', u'world', u'turn']
[u'soorley', u'deni', u'brisban', u'flood', u'cover']
[u'spain', u'extradit', u'alleg', u'crimin', u'mexico']
[u'stanford', u'seiz', u'lpga', u'lead']
[u'state', u'doctor', u'threaten', u'strike', u'indemn']
[u'suncoast', u'jazz', u'festiv', u'get', u'solid', u'turnout']
[u'suspect', u'muslim', u'separatist', u'kill', u'soldier']
[u'sydney', u'council', u'complain', u'lose', u'fin']
[u'sydney', u'dioces', u'withdraw', u'appoint']
[u'tanner', u'call', u'medicar', u'dental']
[u'tariff', u'cut', u'slash', u'job', u'govt']
[u'seed', u'serena', u'blast', u'past', u'granvill']
[u'tour', u'franc', u'stage', u'stage']
[u'tour', u'franc', u'team', u'team']
[u'trescothick', u'solanki', u'overpow', u'protea']
[u'troop', u'polic', u'prepar', u'solomon', u'island']
[u'truce', u'follow', u'isra', u'palestinian', u'pullback', u'deal']
[u'turkey', u'beat', u'colombia', u'place']
[u'goal', u'etoo', u'dedic', u'spanish']
[u'miss', u'soldier', u'dead', u'iraq']
[u'ullrich', u'beat', u'armstrong', u'spanish', u'legend', u'indurain']
[u'call', u'quick', u'multin', u'forc', u'liberia']
[u'unherald', u'swedish', u'rooki', u'seiz', u'stroke']
[u'troop', u'detain', u'saddam', u'loyalist']
[u'govt', u'defend', u'hospit', u'manag']
[u'teenag', u'elig', u'meningococc', u'vaccin']
[u'farmer', u'worri', u'mcginti', u'health', u'stint']
[u'wander', u'fish', u'boat', u'spoil', u'probe', u'lift']
[u'wimbledon', u'seven', u'programm']
[u'windi', u'control', u'lanka']
[u'wreck', u'centaur', u'navi']
[u'accc', u'work', u'fel']
[u'accc', u'tackl', u'supermarket', u'grog', u'trade']
[u'consum', u'choos', u'electr', u'provid']
[u'obstetrician', u'weigh', u'work', u'futur']
[u'actu', u'want', u'famili', u'friend', u'workplac']
[u'say', u'fund', u'chang', u'fair']
[u'scale', u'salari', u'concess']
[u'aqsa', u'claim', u'shoot', u'reject', u'mideast', u'truce']
[u'ord', u'finish', u'year', u'lower']
[u'alston', u'offer', u'telstra', u'sale', u'assur']
[u'alston', u'open', u'radio', u'station']
[u'back', u'arthriti', u'drug', u'subsidi']
[u'say', u'medic', u'indemn', u'insur', u'crisi', u'fare']
[u'armi', u'major', u'kill', u'indian', u'kashmir']
[u'solomon', u'fund', u'rudd', u'urg']
[u'aust', u'troop', u'leav']
[u'beani', u'festiv', u'phenomenon']
[u'deal', u'pipelin']
[u'blix', u'step', u'post']
[u'bodi', u'redfern']
[u'brack', u'tempt', u'pull', u'plug', u'world', u'plan']
[u'bradman', u'baggi', u'green', u'fetch', u'record', u'price']
[u'brain', u'scan', u'clear', u'flatley', u'nation', u'seri']
[u'bushfir', u'probe', u'hold', u'public', u'hear']
[u'servic', u'run']
[u'truce', u'word']
[u'boost', u'region', u'stat']
[u'campbel', u'clear', u'parliamentari', u'panel']
[u'cane', u'toad', u'threaten', u'quoll', u'gulf', u'island']
[u'carr', u'defend', u'prison', u'handl', u'polit', u'assassin']
[u'char', u'angel', u'toppl', u'hulk']
[u'china', u'maintain', u'enceph', u'outbreak', u'small', u'scale']
[u'china', u'sign', u'bilater', u'trade', u'agreement']
[u'choi', u'win', u'seoul', u'playoff']
[u'claim', u'palestinian', u'ceasefir', u'offer', u'trap']
[u'colombian', u'armi', u'claim', u'cocain', u'bust', u'worth']
[u'connex', u'confid', u'train', u'network', u'takeov', u'success']
[u'conserv', u'probe', u'spark', u'compo']
[u'coron', u'report', u'footbal', u'death']
[u'coron', u'report', u'toddler', u'tragedi']
[u'council', u'negoti', u'agreement']
[u'council', u'step', u'nightclub', u'campaign']
[u'cover', u'downer', u'tell', u'solomon']
[u'cowboy', u'lose', u'mcwilliam', u'week']
[u'celebr', u'doohan']
[u'debat', u'continu', u'propos', u'weekend', u'net']
[u'diseas', u'threaten', u'wine', u'industri']
[u'doctor', u'shortag', u'fear', u'indemn', u'law']
[u'track', u'go', u'high', u'tech']
[u'down', u'continu']
[u'ask', u'consid', u'charg', u'babi', u'death']
[u'driver', u'fear', u'backlash', u'waterfal', u'inquiri', u'hear']
[u'dysart', u'death', u'suspici', u'polic']
[u'eadi', u'mcgee', u'spearhead', u'world', u'charg']
[u'elliott', u'ban', u'fin']
[u'elliott', u'slam', u'unfair', u'sentenc']
[u'enceph', u'kill', u'china']
[u'european', u'ferrari', u'point', u'todt']
[u'farmer', u'welcom', u'need', u'rain']
[u'train', u'profil', u'join', u'sydney', u'hunt']
[u'govt', u'boost', u'region', u'partnership']
[u'fel', u'blast', u'surgeon', u'close', u'shop']
[u'fertil', u'plant', u'worker', u'strike', u'cut']
[u'fiji', u'star', u'serevi', u'clear', u'ballymor', u'clash']
[u'crop', u'year', u'clermont', u'grower']
[u'dope', u'test', u'european', u'tour']
[u'forest', u'parliament']
[u'kill', u'algerian', u'unrest', u'mass', u'grave']
[u'free', u'papua', u'rebel', u'surrend', u'indonesia']
[u'fund', u'competit', u'shelv', u'research']
[u'german', u'cabinet', u'approv', u'cut', u'reviv', u'growth']
[u'good', u'rain', u'southern']
[u'govt', u'accus', u'speed', u'cut', u'revenu']
[u'govt', u'give', u'deadlin', u'solv', u'indemn', u'crisi']
[u'hail', u'cost']
[u'hama', u'islam', u'jihad', u'announc', u'mideast', u'ceasefir']
[u'help', u'worker', u'sharehold', u'busi']
[u'henri', u'golden', u'goal', u'take', u'franc', u'emot']
[u'homosexu', u'priest', u'issu', u'deepli', u'divis', u'anglican']
[u'hump', u'camel', u'dairi']
[u'hydroelectr', u'plant', u'power', u'year']
[u'indigen', u'immunis', u'educ', u'program', u'launch']
[u'indonesian', u'polic', u'airplan', u'boat']
[u'indonesian', u'soldier', u'face', u'aceh', u'rape', u'charg']
[u'hous', u'fraud', u'alleg']
[u'inquiri', u'look', u'balanc', u'conserv']
[u'insur', u'fear', u'stop', u'doctor', u'treat']
[u'internet', u'rise']
[u'investig', u'find', u'caus', u'plane', u'engin', u'shut']
[u'agre', u'delay', u'china', u'game']
[u'israel', u'start', u'withdraw', u'fatah', u'join', u'truce']
[u'jail', u'chief', u'magistr', u'resign']
[u'kalli', u'centuri', u'set', u'south', u'africa', u'victori']
[u'katharin', u'hepburn', u'die']
[u'kiwi', u'beat', u'young', u'aussi']
[u'labor', u'blast', u'closur', u'nation', u'agenc']
[u'labor', u'enlist', u'figur', u'telstra', u'fight']
[u'laidley', u'face', u'fine', u'umpir', u'critic']
[u'lawyer', u'screenplay', u'headlin', u'film', u'festiv']
[u'lightn', u'lose', u'mahoney', u'injuri']
[u'liverpool', u'join', u'race', u'kewel', u'report']
[u'local', u'govt', u'reform', u'includ', u'forc', u'redund']
[u'lockout', u'end', u'ballarat', u'part', u'plant']
[u'manag', u'chang', u'breast', u'screen', u'group']
[u'meet', u'consid', u'poki']
[u'mideast', u'shoot', u'mar', u'truce']
[u'minist', u'rule', u'driver', u'train', u'surveil']
[u'moran', u'funer', u'hold', u'today']
[u'woe', u'electrolux', u'disput']
[u'mountain', u'crash', u'kill', u'colombia']
[u'surpris', u'water', u'fund', u'elig']
[u'nasa', u'delay', u'mar', u'rover', u'launch']
[u'natasha', u'ryan', u'side', u'offic', u'ignor']
[u'artwork', u'reconcili', u'place']
[u'hand', u'control', u'caus', u'concern', u'shooter']
[u'medic', u'clinic', u'open']
[u'nightmar', u'race', u'mileston']
[u'action', u'resourc']
[u'teach', u'staff', u'work', u'close', u'school']
[u'word', u'fingleton', u'lawyer']
[u'retain', u'mandatori', u'life', u'murder', u'sentenc']
[u'obstetr', u'servic', u'limit', u'midnight']
[u'omalley', u'gold', u'break', u'drought', u'franc']
[u'opposit', u'claim', u'govt', u'blame', u'obstetr']
[u'outback', u'highway', u'fund', u'unavail', u'anderson']
[u'tune', u'guitar', u'band', u'set', u'record']
[u'pacif', u'nation', u'hammer', u'solomon', u'plan']
[u'passeng', u'face', u'taxi', u'fare', u'increas']
[u'perilya', u'plead', u'huge', u'insur', u'rise']
[u'phelp', u'smash', u'record']
[u'pilbara', u'polic', u'happi', u'commission', u'tenur']
[u'plan', u'bodi', u'take', u'minist', u'role']
[u'plan', u'afoot', u'bowral', u'cathol', u'school']
[u'plan', u'anglican', u'school']
[u'plan', u'anglican', u'school']
[u'polic', u'captur', u'alleg', u'bali', u'deputi']
[u'polic', u'continu', u'investig', u'bodi']
[u'polic', u'continu', u'probe', u'fatal', u'crash']
[u'polic', u'patrol', u'begin', u'wake', u'sydney', u'attack']
[u'polic', u'probe', u'fatal', u'crash']
[u'polic', u'probe', u'umbrella', u'injuri', u'junior', u'soccer', u'match']
[u'polic', u'resum', u'hunt', u'miss']
[u'polic', u'target', u'sexual', u'slaveri', u'perth']
[u'port', u'press', u'lion', u'premiership', u'favourit']
[u'privat', u'hospit', u'admiss']
[u'probe', u'launch', u'dune', u'destruct']
[u'prosecutor', u'amrozi']
[u'putin', u'play', u'host', u'film', u'star', u'visit', u'moscow']
[u'crow', u'chook', u'museum']
[u'ralf', u'lead', u'william']
[u'ralf', u'schumach', u'lead', u'william']
[u'inforc', u'need', u'iraq', u'congressmen']
[u'repair', u'broom', u'water', u'suppli']
[u'airlin', u'depart']
[u'river', u'plate', u'crown', u'argentin', u'champion']
[u'road', u'fund', u'agenda', u'congress']
[u'rooster', u'sign', u'fittler']
[u'rous', u'dedic', u'french', u'titl', u'dead', u'team', u'mate']
[u'ryan', u'readi', u'boomer', u'debut']
[u'govt', u'defend', u'handl', u'glenelg', u'flood']
[u'atkinson', u'step', u'asid']
[u'step', u'asid', u'pend', u'corrupt', u'probe']
[u'scud', u'face', u'agassi']
[u'secur', u'hotlin', u'log', u'call']
[u'senter', u'beatti', u'charg']
[u'shark', u'bite', u'hapless', u'cowboy']
[u'sharp', u'futur', u'doubt']
[u'sharp', u'part', u'shoot', u'eagl']
[u'sharp', u'quit', u'eagl']
[u'sidebottom', u'continu', u'despit', u'fin']
[u'simpler', u'return', u'trial', u'townsvill']
[u'slay', u'underworld', u'figur', u'buri', u'melbourn']
[u'ratepay', u'face', u'rat', u'rise', u'cabooltur']
[u'ratepay', u'face', u'septic', u'tank', u'fin']
[u'rain', u'spell', u'drought']
[u'stanford', u'captur', u'lpga', u'crown']
[u'straw', u'iran', u'talk', u'tough', u'nuke']
[u'student', u'hear', u'drug', u'danger']
[u'sugar', u'grower', u'urg', u'diversifi']
[u'support', u'mall', u'polic']
[u'polic', u'chase', u'rise']
[u'tassi', u'polic', u'demand', u'mainland', u'wag']
[u'cut', u'come', u'forc', u'ansett', u'levi', u'take', u'flight']
[u'taylor', u'urg', u'intervent']
[u'teach', u'teen', u'defens', u'drive', u'polic']
[u'teen', u'die', u'crash']
[u'telstra', u'work', u'fix', u'fault']
[u'text', u'hama', u'islam', u'jihad', u'truce', u'statement']
[u'tom', u'hold', u'price', u'grab', u'titl']
[u'train', u'servic', u'track', u'derail']
[u'transit', u'team', u'replac', u'peac', u'monitor']
[u'truck', u'driver', u'escap', u'crash', u'lake', u'church']
[u'turnaround', u'month', u'trade', u'perform']
[u'health', u'council', u'great', u'southern']
[u'union', u'voic', u'concern', u'mine', u'accid']
[u'solomon', u'forc']
[u'urib', u'unveil', u'plan', u'colombia', u'civil']
[u'launch', u'fresh', u'iraq', u'crackdown']
[u'senat', u'leader', u'support']
[u'vanuatu', u'test', u'water', u'scuba', u'post', u'offic']
[u'victoria', u'critic', u'sign', u'health', u'care']
[u'lead', u'biotech', u'role', u'say', u'premier']
[u'volunt', u'aliv', u'vigil', u'british']
[u'wallabi', u'worri', u'disput']
[u'wimbledon', u'plot', u'thicken', u'second', u'week', u'loom']
[u'windi', u'romp', u'test', u'seri', u'lanka']
[u'windsor', u'challeng', u'telstra', u'claim']
[u'work', u'disput']
[u'worker', u'rise']
[u'world', u'star', u'gazer', u'gather', u'sydney']
[u'catallini', u'reject', u'italian', u'offer']
[u'job', u'hold', u'abattoir', u'shut']
[u'indemn', u'concern', u'creat', u'obstetr', u'confus']
[u'medic', u'crisi', u'avert']
[u'albani', u'councillor', u'jack', u'tape']
[u'analyst', u'stay', u'rat']
[u'anderson', u'encourag', u'outback', u'highway', u'propon']
[u'anderson', u'eye', u'ethanol', u'grant']
[u'develop', u'particl', u'power', u'mar', u'mission']
[u'announc', u'junior', u'develop', u'plan']
[u'artist', u'endeavour', u'win', u'pool', u'territorian']
[u'associ', u'welcom', u'exempt', u'donat']
[u'asylum', u'seeker', u'intercept']
[u'attack', u'erod', u'public', u'support', u'iraq', u'invas']
[u'audit', u'give', u'defenc', u'report', u'card']
[u'australia', u'doubl', u'solomon']
[u'australian', u'sound', u'recordist', u'injur', u'iraq']
[u'avellino', u'netbal', u'australia']
[u'injuri', u'threaten', u'express']
[u'bakhtiyari', u'famili', u'remain', u'separ']
[u'bali', u'suspect', u'contact']
[u'barn', u'swear', u'coron']
[u'barn', u'swear', u'coron']
[u'beckham', u'arriv', u'madrid', u'seal', u'real']
[u'black', u'cap', u'coach', u'aberhart', u'quit']
[u'bomb', u'mosqu', u'wound', u'southern', u'afghanistan']
[u'bosnich', u'appeal', u'hear', u'date']
[u'brown', u'johnson', u'lion']
[u'buck', u'manag', u'take', u'jordan']
[u'budget', u'accom', u'crisi', u'law', u'rais', u'standard']
[u'bumper', u'prawn', u'year', u'tip', u'exmouth', u'gulf']
[u'burnett', u'land', u'develop', u'win', u'environ', u'court']
[u'cancer', u'remiss', u'say', u'boycott']
[u'your', u'dead', u'brazilian', u'tell']
[u'capriati', u'cruis', u'quarter', u'final']
[u'label', u'greenhous', u'emiss', u'level']
[u'chopper', u'loss', u'wont', u'endang', u'surf', u'rescu', u'slsq']
[u'chopper', u'owner', u'warn', u'rotor', u'blade', u'fault']
[u'citi', u'meet', u'countri', u'townsvill']
[u'clijster', u'mow', u'sugiyama']
[u'coastwatch', u'intercept', u'illeg', u'fish', u'boat']
[u'collector', u'arrest', u'bullet', u'parcel', u'explod']
[u'communiti', u'council', u'amalgam', u'stronger', u'voic']
[u'complain', u'bark', u'wrong', u'tree']
[u'conneri', u'clinch', u'worst', u'accent']
[u'convict', u'murder', u'enter', u'societi']
[u'corrupt', u'lawless', u'put', u'pacif', u'nation']
[u'cost', u'relief', u'motor', u'neuron', u'drug', u'hit', u'list']
[u'cotton', u'downturn', u'central', u'highland', u'economi']
[u'cowboy', u'fanci', u'chanc', u'player', u'bid']
[u'croyden', u'get', u'rail', u'station']
[u'miss', u'gulf']
[u'dead', u'walk', u'hunt', u'brazil']
[u'demonstr', u'caus', u'havoc', u'nigeria', u'fuel']
[u'dinner', u'focus', u'davenport']
[u'disgrac', u'rumsa', u'test']
[u'docker', u'lose', u'simmond', u'match']
[u'dog', u'cat', u'poison', u'break', u'hill']
[u'dollar', u'hit', u'year', u'high']
[u'drink', u'spike', u'test', u'launch', u'today']
[u'bigger', u'fee', u'cover', u'insur', u'hike']
[u'eager', u'serena', u'power', u'quarter']
[u'england', u'sweat', u'skipper', u'vaughan']
[u'recommend', u'scrap', u'barrow', u'island', u'plant']
[u'fail', u'coal', u'creditor', u'bank', u'task']
[u'farmer', u'group', u'say', u'buyback', u'sacrific']
[u'farmer', u'welcom', u'parliamentari', u'inquiri', u'water']
[u'team', u'name']
[u'firefight', u'protest', u'win', u'govt', u'meet']
[u'fisherman', u'fin', u'unders', u'lobster']
[u'fishermen', u'push', u'dredg', u'mooloolah']
[u'flexibl', u'attract', u'dentist', u'carter']
[u'footbal', u'styne', u'name', u'victorian', u'year']
[u'exec', u'face', u'court']
[u'execut', u'face', u'court']
[u'iraqi', u'kill', u'injur', u'fallujah']
[u'hunt', u'poll', u'blair', u'pressur']
[u'franklin', u'lesson', u'appli', u'log', u'debat']
[u'french', u'explor', u'main', u'base']
[u'fruit', u'grower', u'afford', u'rise']
[u'fund', u'secur', u'upgrad', u'ansett', u'levi', u'oppn']
[u'gascoign', u'owe', u'money', u'gansu', u'agent']
[u'gasnier', u'heart', u'dragon']
[u'gaza', u'highway', u'templ', u'flashpoint', u'reopen']
[u'david', u'mclaren']
[u'gija', u'peopl', u'offer', u'reserv']
[u'govt', u'defend', u'hike', u'fee', u'fin']
[u'govt', u'order', u'mobil', u'jam', u'studi']
[u'govt', u'continu', u'fund', u'polic', u'strategi']
[u'great', u'lake', u'face', u'rat', u'hike']
[u'hagan', u'interest', u'maroon']
[u'hard', u'time', u'ahead', u'bush', u'icon']
[u'heavi', u'rain', u'devast', u'southern', u'china']
[u'henin', u'hardenn', u'make', u'william', u'sister', u'favourit']
[u'henman', u'surviv', u'reach']
[u'hutchison', u'name', u'legend', u'list']
[u'immigr', u'offic', u'charg', u'visa', u'fraud']
[u'independ', u'dope', u'observ', u'tour']
[u'indigen', u'traine', u'build', u'papunya', u'pride']
[u'indonesia', u'honour', u'keelti', u'bali', u'investig']
[u'indonesian', u'reform', u'investor', u'confid']
[u'insur', u'forc', u'doctor', u'abandon']
[u'israel', u'freez', u'bias', u'report']
[u'kewel', u'agent', u'lash', u'leed']
[u'land', u'valuer', u'start', u'work', u'ban', u'resourc']
[u'exil', u'label', u'journalist', u'sentenc', u'legal', u'comedi']
[u'lao', u'court', u'sentenc', u'journalist', u'year']
[u'lara', u'take', u'hayden', u'bat', u'crown']
[u'chanc', u'oppos', u'east', u'point', u'develop']
[u'launceston', u'train', u'camera', u'inner', u'citi', u'secur']
[u'laura', u'go', u'save', u'histor', u'race']
[u'leav', u'hewitt', u'philippoussi']
[u'leblanc', u'stay']
[u'lion', u'chairman', u'say', u'club', u'punish', u'success']
[u'lion', u'chairman', u'say', u'club', u'pay', u'success']
[u'lion', u'loser', u'swan', u'boss', u'say']
[u'love', u'fare', u'fiji', u'rugbi', u'player', u'happi']
[u'appeal', u'sentenc', u'cricket', u'attack']
[u'arrest', u'hit', u'woman']
[u'charg', u'polic', u'assault']
[u'face', u'court', u'virgin', u'scare']
[u'injur', u'home', u'invas']
[u'manufactur', u'sector', u'neutral']
[u'buy', u'nrma', u'health']
[u'mcgradi', u'expect', u'action', u'ryan', u'case', u'laps']
[u'meet', u'discuss', u'impact', u'take', u'water']
[u'mildura', u'council', u'cut', u'job', u'save', u'near']
[u'money', u'motiv', u'transvestit', u'murder', u'court', u'hear']
[u'crossbow']
[u'murder', u'victim', u'sister', u'seek', u'protect']
[u'murray', u'add', u'threaten', u'speci', u'list']
[u'najaf', u'governor', u'arrest', u'kidnap', u'corrupt']
[u'nasa', u'releas', u'email', u'doom', u'shuttl', u'crew']
[u'propos', u'sydney', u'airport', u'fee', u'regul']
[u'firefight', u'tackl', u'danger', u'chemic']
[u'neighbour', u'organis', u'kidney', u'donat']
[u'newcastl', u'coach', u'eye', u'bennett', u'origin']
[u'immigr', u'visa', u'come', u'effect']
[u'regul', u'protect', u'harbour', u'penguin']
[u'south', u'wale', u'race', u'rumbl']
[u'speed', u'camera', u'pose', u'run', u'risk']
[u'watchdog', u'demand', u'fair']
[u'nightclub', u'angri', u'propos', u'trade', u'hour']
[u'korea', u'threaten', u'merciless', u'respons']
[u'celebr', u'year', u'self', u'govt']
[u'offic', u'step', u'posit', u'fiji']
[u'offici', u'corrupt', u'sentenc', u'suspend']
[u'olymp', u'stadium', u'host', u'women', u'cricket', u'match']
[u'opinion', u'golf', u'dope', u'test', u'farc']
[u'oppon', u'food', u'irradi', u'plant', u'seek', u'court']
[u'opposit', u'pursu', u'govt', u'resign']
[u'pair', u'plead', u'guilti', u'tobacco', u'excis', u'fraud']
[u'parent', u'bedsid', u'injur', u'correspond']
[u'patterson', u'put', u'indemn', u'blame', u'state', u'feet']
[u'phone', u'jam', u'need', u'prevent', u'crime', u'minist']
[u'target', u'amnesti', u'protest']
[u'polic', u'concern', u'drink', u'drive', u'figur']
[u'polic', u'hope', u'jewelleri', u'identifi', u'murder', u'victim']
[u'polic', u'releas', u'gangland', u'murder', u'detail']
[u'polic', u'burn', u'bodi', u'miss', u'gippsland']
[u'pope', u'name', u'archbishop', u'boston']
[u'popp', u'call', u'tune', u'book', u'scud', u'clash']
[u'port', u'hedland', u'child', u'abus', u'charg']
[u'portsmouth', u'boss', u'open', u'arm', u'teddi']
[u'price', u'return', u'tiger']
[u'program', u'launch', u'combat', u'unfair', u'retail', u'practic']
[u'look', u'chief', u'magistr']
[u'quick', u'step', u'lose', u'pole']
[u'rain', u'renew', u'hope', u'riverina', u'rice', u'crop']
[u'rebel', u'cabonn', u'ratepay', u'want', u'join', u'orang']
[u'refineri', u'pursu', u'reduc', u'dust', u'emiss']
[u'renison', u'bell', u'creditor', u'meet', u'administr']
[u'renmark', u'grower', u'help', u'manag']
[u'right', u'group', u'critic', u'timor', u'polic']
[u'rock', u'shed', u'light', u'aborigin', u'cultur']
[u'rocket', u'roddick', u'send', u'paradorn', u'pack']
[u'ruddock', u'claim', u'region', u'support', u'asylum', u'polici']
[u'farmer', u'band', u'electr']
[u'santo', u'summon', u'brisban', u'spill']
[u'water', u'restrict', u'begin', u'today']
[u'scant', u'regard', u'small', u'window']
[u'scientist', u'hope', u'crown', u'thorn', u'feast', u'wind']
[u'scud', u'revel', u'agassi', u'upset']
[u'second', u'mar', u'launch', u'delay']
[u'sharapova', u'defeat', u'complet', u'russian']
[u'share', u'market', u'recov', u'earli', u'loss']
[u'sharon', u'mazen', u'discuss', u'secur']
[u'shia', u'fatwa', u'oppos', u'iraq', u'constitut', u'council', u'plan']
[u'shoot', u'rais', u'buyback', u'question', u'doctor']
[u'simoni', u'lead', u'saeco', u'team']
[u'six', u'catallini', u'reject', u'italian', u'offer']
[u'soldier', u'plead', u'guilti', u'danger', u'drug']
[u'speed', u'limit', u'reduct', u'bandaid', u'measur', u'council']
[u'splatomet', u'drive', u'insect', u'count']
[u'star', u'coast', u'jockey', u'cop', u'suspens']
[u'state', u'fee', u'hike', u'harder', u'region', u'victoria']
[u'studi', u'chart', u'impact', u'brain', u'food']
[u'styne', u'name', u'victorian', u'year']
[u'super', u'fund', u'expect', u'remain']
[u'swan', u'pleas', u'reduc', u'concess']
[u'tableland', u'farmer', u'drought', u'relief']
[u'handgun', u'pass', u'buyback', u'begin']
[u'terror', u'cours', u'spread', u'wing']
[u'tesk', u'consid', u'men', u'match']
[u'test', u'tube', u'babi', u'risk', u'genet']
[u'eye', u'kimberley', u'croc', u'count']
[u'trio', u'question', u'theft', u'speed']
[u'truck', u'driver', u'criticis', u'diesel', u'price', u'hike']
[u'tweed', u'leagu', u'meet', u'attack']
[u'union', u'gear', u'industri', u'campaign']
[u'unpreced', u'action', u'secur', u'public', u'servant']
[u'grape', u'import', u'squeez', u'local', u'product']
[u'hand', u'detain', u'syrian', u'border', u'guard']
[u'troop', u'injur', u'baghdad', u'explos']
[u'venus', u'aveng', u'zvonareva', u'defeat']
[u'grant', u'parent', u'return', u'workforc']
[u'victim', u'sister', u'anger', u'murder', u'parol', u'chanc']
[u'govt', u'avert', u'rural', u'doctor', u'stopwork']
[u'water', u'worri', u'lose', u'project', u'job', u'coolgardi']
[u'weather', u'lift', u'balloon', u'aloft', u'mildura']
[u'west', u'bank', u'shoot', u'mar', u'truce']
[u'william', u'titl', u'challeng', u'gather', u'speed']
[u'wimbledon', u'programm']
[u'wimmera', u'find', u'good', u'look']
[u'woodward', u'extend', u'england', u'contract']
[u'worker', u'help', u'skill', u'bundaberg']
[u'concern', u'discard', u'fish', u'net']
[u'yoong', u'demand', u'overdu', u'wag', u'minardi']
[u'zimbabw', u'unchang', u'england', u'clash']
[u'kill', u'indian', u'rail', u'accid']
[u'abbott', u'want', u'investig', u'sutton']
[u'accc', u'approv', u'cole', u'myer', u'shell', u'deal']
[u'aceh', u'conflict', u'spread', u'citi', u'militari']
[u'acoss', u'claim', u'network', u'unreli']
[u'surgeri', u'postpon', u'insur', u'disput']
[u'hour', u'servic', u'get', u'thumb']
[u'age', u'care', u'centr', u'offici', u'open', u'door']
[u'hard', u'lesson', u'danger', u'pick', u'hitchhik']
[u'alcohol', u'restrict', u'begin', u'meekatharra']
[u'black', u'mehrten', u'return', u'injuri']
[u'call', u'alcohol']
[u'confid', u'indemn', u'crisi', u'resolv']
[u'welcom', u'result', u'dairi', u'studi']
[u'armi', u'unveil', u'reserv', u'respons', u'forc']
[u'artifici', u'heart', u'offer', u'transplant', u'altern']
[u'pleas', u'africa', u'agreement']
[u'atsic', u'order', u'robinson', u'leak', u'probe']
[u'atsi', u'take', u'fund', u'control']
[u'aussi', u'dollar', u'reach', u'year', u'high']
[u'australia', u'help', u'indonesia', u'protect', u'fisheri']
[u'australian', u'face', u'death', u'penalti', u'vietnam']
[u'reject', u'isra', u'charg', u'demonis', u'jewish']
[u'booklet', u'highlight', u'grape', u'advic']
[u'brisban', u'petrol', u'station', u'switch', u'sulphur']
[u'british', u'head', u'iraq', u'peac', u'keep', u'forc']
[u'broadway', u'dim', u'light', u'farewel', u'hepburn']
[u'builder', u'welcom', u'chang', u'plan']
[u'bush', u'cut', u'militari', u'countri']
[u'bush', u'reiter', u'commit', u'stabilis', u'iraq']
[u'busi', u'concern', u'plastic', u'plant', u'decis']
[u'boost', u'indigen', u'polit', u'involv']
[u'car', u'reliv', u'redex', u'trial']
[u'cathol', u'school', u'teacher', u'protest']
[u'chain', u'fraud', u'alert', u'polic']
[u'challeng', u'dairi', u'deal', u'near', u'complet']
[u'chang', u'afoot', u'educ', u'district']
[u'charg', u'bomb', u'hoax', u'suspect', u'dismiss']
[u'christian', u'school', u'move', u'harri', u'potter']
[u'citi', u'hill', u'plan', u'spark', u'chamber', u'concern']
[u'comic', u'actor', u'buddi', u'hackett', u'die']
[u'compens', u'claim', u'lead', u'closur']
[u'council', u'consid', u'deer', u'cull']
[u'council', u'defend', u'develop']
[u'council', u'hop', u'resolut', u'abattoir', u'plan']
[u'councillor', u'highlight', u'road', u'scheme', u'concern']
[u'councillor', u'unhappi', u'stall', u'council']
[u'council', u'consid', u'merger', u'applic']
[u'council', u'focus', u'issu', u'court', u'case']
[u'court', u'tell', u'admit', u'stab', u'wife']
[u'cracker', u'night', u'go', u'bang']
[u'dairi', u'farmer', u'face', u'uncertainti', u'suppli', u'chang']
[u'datson', u'tour', u'europ', u'opal']
[u'deep', u'probe', u'go', u'miss']
[u'defenc', u'personnel', u'long', u'east', u'timor', u'stint']
[u'luca', u'leav', u'chelsea', u'home']
[u'dictionari', u'say', u'american', u'get', u'phatter']
[u'dollar', u'rise', u'rate', u'decis']
[u'drought', u'affect', u'farmer', u'urg', u'appli', u'fund']
[u'econom', u'data', u'support', u'rate', u'decis']
[u'educ', u'shake', u'welcom']
[u'england', u'consolid', u'world', u'rugbi', u'rank']
[u'euro', u'footbal', u'boss', u'warn', u'england', u'turkey']
[u'exchang', u'rate', u'help', u'plastic', u'plant', u'hold']
[u'farmer', u'group', u'back', u'call', u'rat']
[u'fertilis', u'worker', u'strike', u'redund']
[u'drama', u'minor', u'incid', u'qanta', u'say']
[u'beckham', u'sign', u'real', u'deal']
[u'detect', u'plead', u'guilti', u'theft']
[u'yugoslav', u'colonel', u'face', u'crime', u'tribun']
[u'french', u'summer', u'festiv', u'threat']
[u'frustrat', u'egan', u'look', u'reviv']
[u'giant', u'squid', u'steal', u'spotlight', u'museum']
[u'gold', u'miner', u'play', u'impact', u'shed', u'plan']
[u'govt', u'back', u'drug', u'money']
[u'govt', u'consid', u'barrow', u'project']
[u'govt', u'deni', u'second', u'boat', u'sight']
[u'govt', u'releas', u'asylum', u'seeker', u'figur']
[u'govt', u'silent', u'asylum', u'seeker']
[u'grant', u'fund', u'cancer', u'diabet', u'research']
[u'grosjean', u'intimid', u'henman', u'hysteria']
[u'group', u'urg', u'venezuelan', u'presid', u'halt', u'media']
[u'resid', u'stage', u'mass', u'ralli']
[u'hobart', u'woman', u'prepar', u'releas', u'son', u'killer']
[u'hope', u'health', u'centr', u'spin', u'off']
[u'horizon', u'flight', u'decis']
[u'howard', u'warn', u'pacif', u'state', u'risk']
[u'hudson', u'eye', u'second', u'hockey', u'gold']
[u'icon', u'fish', u'join', u'threaten', u'speci', u'list']
[u'india', u'pakistan', u'cricket', u'truce']
[u'indigen', u'aquacultur', u'project', u'believ']
[u'indigen', u'health', u'receiv', u'fund', u'boost']
[u'indonesian', u'terrorist', u'extrem']
[u'indonesian', u'crew', u'miss', u'aceh']
[u'iraq', u'glisten', u'gold']
[u'initi', u'aim', u'boost', u'remot', u'teacher', u'shortag']
[u'rat', u'remain', u'hold']
[u'investig', u'begin', u'qanta']
[u'iraqi', u'resid', u'reveng']
[u'irrig', u'suffer', u'water', u'right']
[u'israel', u'begin', u'bethlehem', u'withdrawl']
[u'job', u'council', u'shakeup']
[u'white', u'maltster', u'plan', u'adelaid']
[u'judg', u'ramp', u'child', u'scam', u'sentenc']
[u'knight', u'aim', u'talent', u'junior']
[u'latham', u'vow', u'wont', u'tone']
[u'leed', u'rule', u'sell', u'viduka', u'barca']
[u'levi', u'scrap', u'help', u'boost', u'great', u'southern']
[u'life', u'player', u'spectat']
[u'life', u'ban', u'brawl', u'player', u'famili']
[u'lloyd', u'doubt', u'kilda']
[u'magistr', u'ask', u'adjourn', u'robinson', u'hear']
[u'malaysia', u'open', u'centr', u'combat', u'terror', u'drop']
[u'face', u'sentenc', u'burglari']
[u'hospitalis', u'home', u'invas']
[u'hospit', u'incid']
[u'man', u'sight', u'damag', u'woomera', u'unrest', u'court', u'tell']
[u'mareeba', u'council', u'aim', u'balanc', u'budget']
[u'matern', u'group', u'call', u'midwiv', u'countri']
[u'mayor', u'seek', u'beatti', u'canal', u'develop', u'meet']
[u'mcleod', u'keen', u'kane', u'match']
[u'medic', u'crisi', u'continu', u'anaesthetist', u'refus']
[u'minist', u'confid', u'immigr']
[u'mix', u'respons', u'wind', u'farm', u'plan']
[u'mock', u'disast', u'emerg', u'servic', u'test']
[u'fund', u'need', u'stop', u'drug', u'cheat', u'rogg']
[u'radiat', u'therapist', u'resign', u'workload']
[u'rain', u'help', u'swan', u'hill', u'farmer']
[u'peopl', u'arrest', u'nigeria', u'riot']
[u'nat', u'rumbl', u'spread', u'telstra', u'sale']
[u'armi', u'reserv', u'respons', u'forc', u'launch']
[u'plan', u'noosa', u'river', u'manag']
[u'nhulunbuy', u'choos', u'termit', u'studi']
[u'korea', u'develop', u'warhead', u'report']
[u'return', u'fame', u'coolangatta', u'gold']
[u'govt', u'rescu', u'council', u'insur', u'plight']
[u'laud', u'drop', u'young', u'peopl', u'face', u'court']
[u'parliament', u'okay', u'embryo', u'research']
[u'redraw', u'elector', u'boundari']
[u'teacher', u'review', u'child', u'abus', u'definit']
[u'nurs', u'flee', u'bidyadanga', u'safeti', u'fear']
[u'oceania', u'lead', u'player', u'say', u'asia']
[u'omalley', u'name', u'boston', u'archbishop']
[u'opposit', u'brand', u'common', u'grind', u'propaganda']
[u'outback', u'highway', u'backer', u'confid', u'fund']
[u'palestinian', u'arrest', u'gunman', u'west', u'bank', u'shoot']
[u'palestinian', u'secur', u'forc', u'control']
[u'patrick', u'corp', u'consid', u'tasrail', u'stake']
[u'increas', u'posit', u'spin']
[u'pest', u'control', u'standard', u'like', u'final', u'tick']
[u'philippoussi', u'set', u'sight', u'wimbledon', u'semi', u'final']
[u'planet', u'want', u'peopl', u'fin', u'cigarett']
[u'plan', u'moot', u'emerg', u'servic', u'nerv', u'centr']
[u'plan', u'begin', u'communiti', u'bank']
[u'polic', u'oper', u'hing', u'local', u'area', u'command']
[u'polic', u'probe', u'teen', u'shoot']
[u'polic', u'search', u'bodi', u'case']
[u'polic', u'investig', u'style', u'shoot']
[u'poverti', u'hear', u'head', u'wollongong']
[u'profession', u'wrestler', u'wife', u'charg', u'steroid']
[u'push', u'continu', u'driver', u'educ', u'fund']
[u'girl', u'rescu', u'larapinta', u'trail']
[u'push', u'crossbow', u'licenc']
[u'question', u'ask', u'chelsea', u'sale']
[u'rain', u'good', u'sign', u'irrig', u'season']
[u'rain', u'good', u'news', u'farmer']
[u'rain', u'wash', u'away', u'vaughan', u'inning', u'match']
[u'ralli', u'austoft', u'worker', u'seek', u'answer']
[u'rat', u'hit', u'market', u'boost', u'dollar']
[u'rat', u'hold', u'straight', u'month']
[u'recreat', u'centr', u'move', u'ahead']
[u'cross', u'issu', u'blood']
[u'region', u'fund', u'money', u'commit', u'brumbi']
[u'report', u'highlight', u'danger', u'highway', u'section']
[u'rethink', u'need', u'drug', u'control', u'expert', u'say']
[u'robinson', u'committ', u'hear', u'adjourn']
[u'roma', u'host', u'ralli', u'particip']
[u'royal', u'adelaid', u'get', u'burn', u'unit']
[u'rudd', u'ask', u'downer', u'north', u'korea', u'weapon', u'report']
[u'ruddock', u'defend', u'border', u'patrol']
[u'ruddock', u'defend', u'expens', u'parent', u'visa']
[u'santo', u'face', u'court', u'spill']
[u'opposit', u'concern', u'hospit', u'board']
[u'schalken', u'miss', u'quarter', u'final', u'injuri']
[u'second', u'face', u'court', u'visa', u'scam']
[u'sharon', u'meet', u'mazen', u'jerusalem']
[u'smith', u'rule', u'south', u'africa', u'clash']
[u'solomon', u'intervent', u'region', u'solut', u'mckinnon']
[u'solut', u'seek', u'rail', u'line', u'dilemma']
[u'state', u'agre', u'nation', u'paedophil', u'regist']
[u'station', u'owner', u'welcom', u'move', u'asid', u'land']
[u'sutton', u'apologis', u'picket', u'line', u'behaviour']
[u'talk', u'begin', u'rebuild', u'histor', u'church']
[u'tax', u'time', u'ahead', u'club', u'industri']
[u'teacher', u'stop', u'work', u'tafe', u'chang']
[u'thousand', u'protest', u'law']
[u'tire', u'william', u'sister', u'crash', u'doubl']
[u'toowoomba', u'boxer', u'look', u'comeback']
[u'women', u'wimbledon', u'semi']
[u'women', u'face', u'wimbledon', u'semi', u'final']
[u'toxic', u'chemic', u'dont', u'pose', u'health', u'risk']
[u'truck', u'industri', u'air', u'safeti', u'concern']
[u'understrength', u'boomer', u'prepar', u'czech', u'clash']
[u'track', u'star', u'upstag', u'nigerian', u'flier']
[u'troop', u'target', u'baghdad']
[u'vivendi', u'seek', u'depth', u'talk', u'dispos']
[u'pastoralist', u'break', u'assist', u'drought']
[u'warn', u'shortag', u'worsen']
[u'wheat', u'board', u'reduc', u'crop', u'forecast']
[u'wimbledon', u'programm']
[u'winemak', u'invest', u'vineyard']
[u'woman', u'face', u'court', u'robberi']
[u'women', u'chanc', u'femal', u'doctor']
[u'world', u'event', u'toll', u'rock', u'lobster', u'trade']
[u'youth', u'worker', u'spread', u'word', u'condom']
[u'aborigin', u'group', u'nativ', u'titl']
[u'consid', u'water', u'usag', u'strategi']
[u'activist', u'delay', u'decis', u'screen', u'ban', u'film']
[u'adelaid', u'prepar', u'commut', u'chao']
[u'agforc', u'want', u'rat']
[u'aqsa', u'leader', u'report', u'shoot', u'dead']
[u'aqsa', u'martyr', u'denounc', u'truce', u'kill']
[u'alic', u'host', u'communiti', u'cabinet', u'meet']
[u'boost', u'reconcili', u'effort']
[u'american', u'jazz', u'flautist', u'herbi', u'mann', u'die']
[u'amnesti', u'call', u'inquiri', u'kenyan', u'rape', u'claim']
[u'amnesti', u'tackl', u'sudan', u'press', u'censorship']
[u'amwu', u'threaten', u'strike', u'wag', u'condit']
[u'asia', u'warn', u'aid', u'catastroph']
[u'asylum', u'seeker', u'migrat', u'zone']
[u'australian', u'share', u'ride', u'wall', u'gain']
[u'australia', u'urg', u'chang', u'nation', u'secur']
[u'babi', u'wollongong', u'take']
[u'bacon', u'announc', u'tassi', u'ferri']
[u'beckham', u'wear', u'real']
[u'belbin', u'lead', u'irrig', u'trust']
[u'berlusconi', u'nazi', u'jibe', u'spark', u'uproar']
[u'boat', u'reach', u'migrat', u'zone']
[u'bodi', u'parramatta', u'shop', u'centr']
[u'bolkus', u'mistak', u'crean']
[u'booklet', u'aim', u'clear', u'merger', u'confus']
[u'boomer', u'czech', u'seri']
[u'boomer', u'thump', u'czech', u'republ']
[u'brack', u'take', u'batter', u'freeway', u'backflip', u'poll']
[u'bush', u'hang', u'trivial', u'telstra', u'poll']
[u'bush', u'lay', u'iraqi', u'resist']
[u'bush', u'mull', u'troop', u'option', u'liberia']
[u'review']
[u'bypass', u'aim', u'reduc', u'sand', u'woe']
[u'govt', u'drought']
[u'canberra', u'hous', u'price', u'boil']
[u'develop', u'spotlight']
[u'child', u'protect', u'group', u'royal', u'commiss']
[u'children', u'risk', u'break', u'hill', u'bait', u'spree']
[u'clean', u'chief', u'oppos', u'quarri', u'plan']
[u'communic', u'play', u'role', u'life', u'save']
[u'concern', u'air', u'candid', u'statement']
[u'concern', u'air', u'leagu', u'club', u'rescu', u'deal']
[u'council', u'financ', u'state', u'scrutini']
[u'council', u'audit', u'goal', u'post', u'safeti']
[u'crean', u'quash', u'latham', u'polici', u'plan']
[u'csiro', u'mine', u'technolog', u'expect', u'save', u'million']
[u'cullen', u'quit', u'black', u'join', u'munster']
[u'custom', u'process', u'indonesian', u'fisher']
[u'darwin', u'armi', u'chief', u'consid', u'random', u'drug', u'test']
[u'death', u'knell', u'rock', u'roll', u'hall']
[u'debt', u'suicid', u'factor']
[u'demand', u'rise', u'public', u'health', u'servic']
[u'dental', u'clinic', u'address', u'rise', u'demand']
[u'director', u'defend', u'irv', u'freedom', u'speech']
[u'doctor', u'surgeri', u'concern']
[u'doctor', u'group', u'worri', u'medic', u'indemn']
[u'doctor', u'seek', u'mammographi', u'assur']
[u'dollar', u'break', u'cent', u'mark']
[u'jump', u'posit', u'data']
[u'drought', u'devast', u'think']
[u'earli', u'morn', u'wrestl', u'melbourn']
[u'worker', u'maintain', u'industri', u'action']
[u'empir', u'rubber', u'worker', u'threaten', u'industri']
[u'pass', u'label', u'law']
[u'europ', u'closer', u'lift', u'food']
[u'finnish', u'polic', u'europ', u'biggest', u'rohypnol', u'haul']
[u'dead', u'shoot', u'missouri', u'report']
[u'french', u'join', u'solomon', u'forc']
[u'french', u'sensit', u'grind', u'solomon']
[u'fund', u'boost', u'intens', u'care', u'servic']
[u'geraldton', u'get', u'beach', u'develop', u'fund']
[u'govt', u'say', u'second', u'boat']
[u'govt', u'wast', u'time', u'reloc', u'asylum', u'seeker']
[u'gregan', u'consid', u'futur', u'world']
[u'groundbreak', u'surgeri', u'save', u'woman', u'sight']
[u'group', u'seek', u'open', u'independ', u'dutson', u'down', u'studi']
[u'hat', u'bruderhof', u'communiti']
[u'head', u'ivori', u'coast', u'televis', u'suspend']
[u'health', u'group', u'want', u'fight', u'alcohol']
[u'heenan', u'replac', u'smith', u'wallabi', u'squad']
[u'prosecut', u'fund', u'establish']
[u'industri', u'group', u'highlight', u'premium', u'wine']
[u'investig', u'review', u'flight', u'data', u'qanta']
[u'irrig', u'hear', u'water', u'restrict']
[u'israel', u'agre', u'releas', u'polit', u'prison']
[u'israel', u'close', u'gaza', u'highway', u'attack']
[u'israel', u'leav', u'bethlehem', u'free', u'prison']
[u'jew', u'want', u'holocaust', u'film', u'ban', u'festiv']
[u'jockey', u'face', u'court', u'child', u'charg']
[u'juri', u'consid', u'verdict', u'murder', u'trial']
[u'kalgoorli', u'move', u'better', u'race', u'relat']
[u'kindergarten', u'get', u'fund', u'snub']
[u'king', u'bros', u'expect', u'liquid']
[u'knowl', u'reject', u'panic', u'land', u'clear', u'claim']
[u'leagu', u'player', u'face', u'judiciari', u'brawl']
[u'liberti', u'victoria', u'slam', u'child', u'offend', u'nation']
[u'lifelin', u'har', u'race']
[u'liquid', u'cooper', u'agre', u'deal']
[u'lotteri', u'scam', u'hit']
[u'yang', u'power', u'station', u'sell']
[u'charg', u'meat', u'cleaver', u'attack']
[u'charg', u'hold']
[u'charg', u'peopl', u'smuggl']
[u'fin', u'pesticid', u'spill']
[u'fin', u'sydney', u'pesticid', u'spill']
[u'grant', u'bail', u'incid']
[u'hold', u'flight', u'threat', u'claim']
[u'lose', u'appeal', u'murder', u'wife', u'lover']
[u'plead', u'guilti', u'flight', u'drama']
[u'receiv', u'suspend', u'sentenc', u'money', u'scam']
[u'marin', u'kill', u'clear', u'minefield', u'iraq']
[u'melbourn', u'polic', u'warn', u'serial', u'offend']
[u'rain', u'women', u'semi', u'final', u'parad']
[u'mercuri', u'suspend', u'week']
[u'drama', u'hero', u'work']
[u'mother', u'criticis', u'rule', u'son', u'death']
[u'nigerian', u'quiz', u'bodi']
[u'norther', u'favourit', u'hors', u'year']
[u'want', u'special', u'census', u'consider']
[u'obstetr', u'servic', u'continu']
[u'oscar', u'organis', u'crack', u'dirti', u'award']
[u'pair', u'face', u'judiciari', u'brawl']
[u'permit', u'suggest', u'protect', u'midden']
[u'philippoussi', u'henman', u'lose', u'set', u'wimbledon']
[u'player', u'farewel', u'team', u'mate']
[u'polic', u'investig', u'electrocut', u'railway', u'station']
[u'polic', u'investig', u'miss', u'berrima', u'prison', u'fund']
[u'polic', u'movi', u'screen']
[u'polic', u'open', u'nigerian', u'demonstr']
[u'pollut', u'water', u'flood', u'inner', u'sydney', u'build']
[u'port', u'hop', u'cash', u'cruis', u'ship', u'benefit']
[u'power', u'demand', u'rise', u'temperatur', u'drop']
[u'profession', u'bring', u'organis', u'schooli']
[u'public', u'urg', u'watch', u'cane', u'toad']
[u'purnululu', u'list', u'natur', u'wonder']
[u'qanta', u'investig', u'plane', u'evacu']
[u'lobbi', u'chang']
[u'breakthrough', u'bronchiol', u'research']
[u'govt', u'confirm', u'lang', u'park', u'problem']
[u'qlds', u'radiat', u'therapist', u'continu', u'work']
[u'queanbeyan', u'pool', u'plan', u'hold']
[u'rain', u'winner', u'wimbledon']
[u'rain', u'halt', u'philippoussiss', u'challeng']
[u'rain', u'winner', u'wimbledon']
[u'regul', u'telstra', u'sale']
[u'resid', u'reject', u'takeov', u'plan']
[u'restrict', u'tiger', u'prawn', u'season', u'north']
[u'rock', u'lobster', u'industri', u'tear', u'state', u'boundari']
[u'rooster', u'review', u'video', u'lang', u'park', u'injuri']
[u'brew', u'radiat', u'therapi', u'delay']
[u'govt', u'silent', u'bolkus', u'raffl', u'ticket', u'queri']
[u'schwarzenegg', u'take', u'troop', u'gulf']
[u'scientist', u'creat', u'genet', u'male']
[u'shire', u'seek', u'feder', u'drought']
[u'small', u'investor', u'encourag', u'involv']
[u'soldier', u'prepar', u'head', u'home', u'timor', u'stint']
[u'solomon', u'polic', u'chief', u'hope', u'peac']
[u'solomon', u'villag', u'burn', u'report']
[u'solo', u'rower', u'take', u'atlant', u'san', u'vodka']
[u'springbok', u'sign', u'world', u'agreement']
[u'state', u'rail', u'chief', u'admit', u'tangara', u'safeti', u'lack']
[u'boom', u'leav', u'hous', u'price']
[u'stockyard', u'face', u'product', u'shift']
[u'strict', u'control', u'deer', u'cull', u'plan']
[u'studi', u'consid', u'hunter', u'industri']
[u'surgeri', u'cancel', u'insur', u'fear']
[u'tafe', u'staff', u'protest', u'rise']
[u'buy', u'ferri', u'devonport', u'rout']
[u'bard', u'aust', u'film', u'join', u'curriculum']
[u'dead', u'factori', u'shoot']
[u'thumb', u'townsvill']
[u'toronto', u'pleas', u'cautious', u'sar', u'decis']
[u'tough', u'test', u'drought', u'fund']
[u'tourism', u'professor', u'warn', u'dollar', u'danger']
[u'trio', u'charg', u'home', u'invas']
[u'iraqi', u'kill', u'soldier', u'wound']
[u'remand', u'steroid', u'smuggl']
[u'student', u'develop', u'drink', u'spike', u'test']
[u'blame', u'mosqu', u'blast', u'bomb', u'class']
[u'soldier', u'injur', u'iraq', u'attack']
[u'deport', u'accus', u'nazi', u'guard']
[u'vancouv', u'host', u'winter', u'olymp']
[u'search', u'come', u'blank']
[u'manufactur', u'worker', u'tool']
[u'take', u'home', u'style']
[u'govt', u'welcom', u'alumina', u'refineri', u'upgrad']
[u'nation', u'park', u'make', u'world', u'heritag', u'list']
[u'purnululu', u'park', u'win', u'world', u'heritag', u'list']
[u'waterfal', u'derail', u'risk', u'neglig', u'inquiri', u'tell']
[u'water', u'restrict', u'loom', u'irrig']
[u'westfield', u'death', u'suspici', u'relat']
[u'wimbledon', u'programm']
[u'wire']
[u'woman', u'choos', u'nude', u'photo', u'teach']
[u'wooli', u'look', u'open', u'riverland', u'fuel', u'outlet']
[u'abalon', u'industri', u'pick', u'sar']
[u'academi', u'build', u'lead', u'bangladesh']
[u'accc', u'ask', u'consid', u'possibl', u'coke', u'berri', u'takeov']
[u'forc', u'personnel', u'welcom', u'home', u'gulf']
[u'airport', u'land', u'restrict', u'question']
[u'albani', u'look', u'cruis', u'ship', u'benefit']
[u'alic', u'cricket', u'make', u'chief', u'minist']
[u'jazeera', u'broadcast', u'saddam', u'tape']
[u'alleg', u'home', u'burglar', u'deni', u'bail']
[u'director']
[u'explain', u'stanwel', u'failur']
[u'tri', u'appeas', u'sharehold']
[u'anderson', u'say', u'telstra', u'sale', u'oppon', u'exagger']
[u'custom', u'warn', u'internet', u'scam']
[u'armstrong', u'start', u'tour', u'team', u'jersey']
[u'armi', u'move', u'improv', u'train']
[u'aussi', u'dollar', u'spike', u'employ', u'figur']
[u'aussi', u'escap', u'death', u'penalti', u'thailand']
[u'australia', u'kiwi', u'confirm', u'indian', u'tour', u'date']
[u'australia', u'launch', u'fiji', u'school', u'program']
[u'australian', u'pair', u'await', u'sentenc', u'drug', u'traffic']
[u'australian', u'tour', u'overal', u'stand']
[u'backbench', u'pull', u'line', u'telstra']
[u'banger', u'chase', u'target', u'brisban']
[u'bank', u'news', u'corp', u'market']
[u'bank', u'warn', u'ghost', u'site', u'scam']
[u'clear', u'race', u'court']
[u'probe', u'report', u'dossier', u'alleg']
[u'beach', u'camel', u'rid', u'hump']
[u'beatti', u'criticis', u'tuckey', u'indigen', u'comment']
[u'beatti', u'parti', u'wast', u'money']
[u'belgian', u'accept', u'second', u'best', u'grace']
[u'blast', u'rock', u'pakistani', u'mosqu']
[u'blix', u'head', u'commiss', u'weapon', u'mass']
[u'bowman', u'rejoin', u'cowboy']
[u'bracewel', u'name', u'zealand', u'cricket', u'coach']
[u'britain', u'call', u'fair', u'trial', u'guantanamo']
[u'bronco', u'take', u'dragon', u'light']
[u'burk', u'sign', u'waratah']
[u'bush', u'say', u'terror', u'suspect', u'tri']
[u'enterpris', u'zone', u'support']
[u'canberran', u'roger', u'prim', u'histor', u'yellow', u'jersey']
[u'carr', u'seek', u'bypass', u'commonwealth', u'censor']
[u'celtic', u'oneil', u'escap', u'uefa', u'punish']
[u'chamber', u'tip', u'revitalis', u'region', u'cbds']
[u'chelsea', u'seal', u'goalkeep', u'sign']
[u'chelsea', u'swoop', u'juventus', u'david', u'sala']
[u'childcar', u'worker', u'appli', u'airc', u'rise']
[u'chilean', u'general', u'apologis', u'grave', u'raid']
[u'christma', u'prepar', u'arriv']
[u'club', u'hear', u'game', u'rise', u'concern']
[u'coalit', u'push', u'scrap', u'atsic']
[u'comedi', u'challeng', u'indigen', u'percept']
[u'committe', u'tour', u'christma', u'facil']
[u'concern', u'rais', u'hick', u'fair', u'trial']
[u'council', u'approv', u'truck', u'trial']
[u'council', u'dive', u'pool', u'locat', u'debat']
[u'council', u'want', u'residenti', u'plan', u'fund']
[u'council', u'tri', u'feder', u'drought']
[u'court', u'hear', u'argument', u'flight', u'disturb']
[u'court', u'tell', u'driver', u'seven', u'time', u'limit']
[u'cowra', u'await', u'verdict', u'facto', u'death']
[u'darwin', u'host', u'wallabi', u'world', u'camp']
[u'decis', u'pend', u'landfil', u'plan']
[u'delay', u'iraq', u'deleg']
[u'democrat', u'negat', u'gear', u'review']
[u'depart', u'disturb', u'abus', u'teacher']
[u'depress', u'henman', u'vow']
[u'develop', u'heritag', u'remind']
[u'director', u'defend', u'ban', u'film']
[u'divers', u'discourag', u'illeg', u'arriv', u'ruddock']
[u'djemba', u'complet']
[u'dont', u'say', u'schumach']
[u'doubt', u'rais', u'age', u'care', u'home']
[u'dragon', u'buck', u'bronco']
[u'drought', u'tree', u'clear', u'deal', u'threaten', u'farmer', u'tell']
[u'order', u'forc', u'smelter', u'clean']
[u'european', u'target', u'viduka']
[u'export', u'surviv', u'dollar', u'hike', u'austrad']
[u'farmer', u'question', u'garrett', u'murray', u'call']
[u'farmer', u'feel', u'fuel', u'price', u'rise', u'impact']
[u'farmer', u'urg', u'state', u'wide', u'milk', u'strike']
[u'feder', u'help', u'seek', u'wind', u'farm', u'plan']
[u'unfaz', u'roddick', u'serv']
[u'fitzgerald', u'comeback']
[u'time', u'winner', u'armstrong', u'hop']
[u'bond', u'director', u'refus', u'bail']
[u'face', u'court', u'amphetamin']
[u'french', u'polic', u'impound', u'car']
[u'fuelwatch', u'petit', u'go', u'council']
[u'gansu', u'want', u'gazza']
[u'georg', u'town', u'aim', u'weather', u'ferri', u'disappoint']
[u'govt', u'admit', u'declin', u'barrier', u'reef', u'condit']
[u'govt', u'motiv', u'question', u'asylum', u'seeker']
[u'govt', u'question', u'support', u'alumina', u'refineri']
[u'graham', u'world', u'championship']
[u'greek', u'firefight', u'alert', u'firebal']
[u'green', u'unhappi', u'drug', u'search', u'law']
[u'grosjean', u'shatter', u'henman', u'dream']
[u'group', u'hop', u'sway', u'tree', u'clear', u'support']
[u'group', u'meet', u'hospit', u'concern']
[u'grower', u'reject', u'water', u'restrict', u'manag', u'plan']
[u'hewitt', u'slide', u'rank']
[u'hick', u'face', u'trial']
[u'hick', u'face', u'trial']
[u'hill', u'suffer', u'injuri', u'setback']
[u'hoogi', u'head', u'dutch', u'world', u'charg']
[u'horticultur', u'studi', u'consid', u'season', u'worker']
[u'hospit', u'rule', u'closur']
[u'hospit', u'spend', u'spotlight']
[u'roddick', u'power', u'past', u'bjorkman']
[u'hutchinson', u'fail', u'break', u'boardman', u'record']
[u'injur', u'venus', u'battl', u'past', u'clijster']
[u'israel', u'arrest', u'palestinian']
[u'israel', u'releas', u'palestinian', u'secur', u'offici']
[u'jewish', u'group', u'criticis', u'film', u'festiv', u'court']
[u'johnson', u'face', u'tough', u'test', u'pari']
[u'kalli', u'steer', u'south', u'africa', u'victori', u'vaughan']
[u'kemp', u'highlight', u'reef', u'pressur']
[u'labor', u'health', u'polici', u'criticis']
[u'laidley', u'cop', u'fine', u'umpir']
[u'step', u'unknown']
[u'centr', u'concern', u'credit', u'offer']
[u'lawyer', u'face', u'sentenc', u'steal', u'charg']
[u'liber', u'urg', u'cross', u'floor', u'telstra']
[u'liberian', u'activist', u'ralli', u'taylor']
[u'liberti', u'major', u'stake', u'shop', u'channel']
[u'lloyd', u'boot', u'bomber', u'victori']
[u'local', u'govt', u'concern', u'air', u'road', u'crash']
[u'malik', u'join', u'gloucestershir']
[u'charg', u'assault', u'taliban', u'fighter']
[u'charg', u'stalk', u'offenc']
[u'convict', u'abus', u'sister']
[u'face', u'court', u'peopl', u'smuggl']
[u'respons', u'end', u'carnel', u'career', u'retir']
[u'extradit', u'sydney', u'bomb', u'threat']
[u'face', u'court', u'murder', u'charg']
[u'masterpiec', u'museum', u'visit', u'british']
[u'mckay', u'build', u'lead', u'webb', u'hit', u'horror', u'round']
[u'mckay', u'lead', u'women', u'open']
[u'meet', u'call', u'answer', u'salin', u'scheme', u'question']
[u'melbourn', u'lobbi', u'park', u'screen']
[u'work', u'plan', u'lawrenc', u'hargrav', u'drive']
[u'mortim', u'devast', u'vagana', u'dump', u'bulldog']
[u'mourner', u'gather', u'lyon', u'respect']
[u'give', u'support', u'yang', u'sale']
[u'question', u'chang', u'polic', u'power']
[u'vote', u'embryo', u'legisl']
[u'near', u'drought']
[u'build', u'law', u'boon', u'environ']
[u'start', u'ullrich']
[u'guarante', u'local', u'educ', u'offic']
[u'norther', u'name', u'hors', u'year']
[u'consid', u'player', u'draft']
[u'pass', u'parol', u'legisl']
[u'dead', u'injur', u'assassin', u'attempt']
[u'oscar', u'boss', u'best', u'foreign', u'film', u'entri']
[u'oshan', u'blast', u'constitut']
[u'palestinian', u'arrest', u'settlement', u'rocket']
[u'palestinian', u'arrest', u'rocket', u'attack']
[u'parliament', u'okay', u'japanes', u'deploy', u'iraq']
[u'passport', u'secur', u'beef']
[u'perec', u'give', u'hope', u'world', u'comeback']
[u'welcom', u'nativ', u'titl', u'decis']
[u'philippoussi', u'feder', u'untouch']
[u'philippoussi', u'power', u'wimbledon', u'final']
[u'player', u'face', u'wait', u'judiciari', u'appear']
[u'player', u'face', u'wait', u'tweed', u'brawl', u'judiciari']
[u'player', u'keep', u'close', u'lang', u'park', u'surfac']
[u'accus', u'neglect', u'issu']
[u'reject', u'drought', u'assist', u'overhaul']
[u'visit', u'korea', u'japan', u'philippin']
[u'project', u'look', u'sourc', u'custom']
[u'poki', u'revenu', u'needi']
[u'policeman', u'theft', u'charg', u'refus', u'bail']
[u'polic', u'warn', u'expect', u'traffic', u'problem']
[u'popp', u'rue', u'scud', u'accuraci']
[u'posh', u'fear', u'beckham', u'moonshot', u'dream']
[u'premier', u'major', u'issu', u'coag']
[u'punter', u'prepar', u'darwin', u'carniv']
[u'race', u'cut', u'studi', u'expect', u'deliv', u'surpris']
[u'rainwat', u'tank', u'rebat', u'consider']
[u'reef', u'pollut', u'case', u'adjourn']
[u'restrict', u'person', u'injuri']
[u'roddick', u'tell', u'retir', u'player', u'stop', u'make']
[u'roger', u'mcgee', u'head', u'aussi', u'race', u'yellow']
[u'roger', u'prim', u'histor', u'yellow', u'jersey']
[u'saint', u'bomber', u'desper']
[u'speaker', u'fail', u'stop', u'civil', u'action']
[u'schumach', u'collid', u'webber']
[u'scud', u'fire', u'semi']
[u'scud', u'readi', u'semi', u'final', u'showdown']
[u'second', u'ballarat', u'factori', u'lock', u'employe']
[u'serena', u'blast', u'away', u'henin', u'feud']
[u'sheahan', u'sampl', u'posit', u'salbutamol']
[u'shortland', u'esplanad', u'access', u'long']
[u'simoni', u'readi', u'challeng', u'glori']
[u'solomon', u'island', u'request', u'australia', u'help']
[u'southlink', u'bus', u'serco', u'tuesday']
[u'spiderman', u'thief', u'jail', u'year']
[u'sptnrl']
[u'stone', u'second', u'divorc']
[u'strong', u'sydney', u'devonport', u'ferri']
[u'sugar', u'industri', u'sign', u'agreement']
[u'surri', u'hill', u'emerg']
[u'sydney', u'leak', u'forc', u'mass', u'evacu']
[u'telstra', u'worker', u'attack']
[u'tender', u'call', u'work']
[u'sky', u'limit', u'beckham', u'say']
[u'thousand', u'tip', u'enjoy']
[u'tough', u'year', u'ahead', u'export']
[u'tourist', u'flock', u'grampian', u'despit', u'cold']
[u'townsvill', u'host', u'intern', u'leagu']
[u'treasur', u'worri', u'latham', u'crean', u'say']
[u'trio', u'break', u'cours', u'record', u'european', u'open']
[u'triumph', u'tragedi', u'tour']
[u'tuckey', u'deni', u'atsic', u'comment', u'racist']
[u'tweed', u'council', u'approv', u'hill', u'climb', u'develop']
[u'twin', u'solar', u'search', u'uncov', u'possibl', u'match']
[u'conced', u'evid', u'bomb', u'make', u'class', u'caus']
[u'forc', u'attack', u'iraq']
[u'vcat', u'delay', u'announc', u'holocaust', u'film']
[u'govt', u'back', u'yang', u'power', u'station', u'sale']
[u'govt', u'consid', u'weir', u'upgrad']
[u'voluntari', u'recal', u'babi', u'panadol']
[u'premier', u'rule', u'ningaloo', u'develop']
[u'waugh', u'appear', u'indian', u'film', u'manag']
[u'brace', u'hacker', u'contest']
[u'wharf', u'develop', u'schedul']
[u'whitak', u'clear', u'play', u'springbok']
[u'wild', u'dog', u'threaten', u'motorist', u'meal', u'nation']
[u'wimbledon', u'result']
[u'wimbledon', u'order', u'play']
[u'winegrow', u'speak', u'market', u'demand', u'claim']
[u'woman', u'guilti', u'uncl', u'manslaught']
[u'woman', u'gall', u'world', u'record', u'claim']
[u'wood', u'equal', u'cours', u'record', u'western', u'open']
[u'wyndham', u'ambul', u'servic', u'save']
[u'iraqi', u'polic', u'recruit', u'kill', u'wound']
[u'review', u'park']
[u'jazeera', u'broadcast', u'saddam', u'tape']
[u'tour', u'rider', u'start', u'dope', u'test']
[u'alp', u'femal', u'frontbench', u'awar', u'pressur']
[u'assault', u'telstra', u'worker', u'reluct', u'legal']
[u'australian', u'arrest', u'vietnames', u'drug', u'traffic']
[u'australian', u'jail', u'escap', u'thai', u'death', u'penalti']
[u'australian', u'name', u'solomon', u'deputi', u'polic']
[u'bahrain', u'adjourn', u'journalist', u'trial']
[u'bangladesh', u'take', u'tour', u'match']
[u'bartlett', u'say', u'christma', u'readi', u'asylum']
[u'beatti', u'celebr', u'fifth', u'anniversari', u'premier']
[u'berlusconi', u'deni', u'apologis', u'nazi', u'comment']
[u'bhupathi', u'get', u'reveng', u'estrang', u'indian', u'express']
[u'bianchi', u'prove', u'surpris', u'tour', u'say', u'ullrich']
[u'bodi', u'fall', u'repatri']
[u'boomer', u'clinch', u'czech', u'clean', u'sweep']
[u'boycott', u'threat', u'damag', u'tenni', u'slam', u'organis']
[u'bring', u'sunshin', u'face', u'team', u'boss']
[u'britain', u'express', u'reserv', u'militari']
[u'bush', u'remind', u'terror']
[u'afford', u'hous']
[u'cameroon', u'fan', u'tribut', u'fall']
[u'carr', u'defend', u'visit']
[u'cash', u'hail', u'anim', u'philippoussi']
[u'christma', u'prepar', u'asylum', u'seeker', u'say']
[u'claim', u'uni', u'provid', u'substandard', u'postgrad', u'cours']
[u'clark', u'price', u'control', u'ireland']
[u'concern', u'hick', u'face', u'trial']
[u'convict', u'murder', u'attack', u'jail', u'clean']
[u'crean', u'pledg', u'scrap', u'fee']
[u'crean', u'promis', u'relief', u'hec', u'repay']
[u'death', u'toll', u'hit', u'pakistan', u'mosqu', u'attack']
[u'death', u'toll', u'pakistan', u'mosqu', u'attack', u'rise']
[u'death', u'toll', u'rise', u'moscow', u'suicid', u'blast']
[u'death', u'toll', u'rise', u'pakistan', u'mosqu', u'attack']
[u'democrat', u'fight', u'quarantin', u'station']
[u'demon', u'drink', u'gazza']
[u'docker', u'lion', u'thriller']
[u'bond', u'girl', u'ordain', u'anglican', u'minist']
[u'feud', u'tick', u'timebomb', u'say', u'minardi', u'chief']
[u'factori', u'resid', u'kill']
[u'feder', u'domin', u'roddick']
[u'ireland', u'rugbi', u'captain', u'wood']
[u'report', u'dead', u'iraqi', u'polic', u'station', u'blast']
[u'world', u'best', u'pari']
[u'freddi', u'celebr', u'game', u'style']
[u'freddi', u'celebr', u'game', u'style']
[u'govern', u'commend', u'oper', u'improv']
[u'govt', u'attack', u'labor', u'higher', u'educ', u'polici']
[u'grafton', u'welcom', u'servic', u'return']
[u'graham', u'world']
[u'hawk', u'thump', u'bulldog']
[u'hick', u'face', u'militari', u'court', u'cuba']
[u'bow', u'pressur', u'anti', u'subvers']
[u'indigen', u'leader', u'outrag', u'minist', u'comment']
[u'injur', u'venus', u'feel', u'better', u'final']
[u'iraq', u'soccer', u'team', u'arrang', u'australian', u'tour']
[u'japanes', u'emperor', u'identifi', u'fish']
[u'jindi', u'blue', u'daddi', u'aussi', u'chees']
[u'johnson', u'fifth', u'pari']
[u'lacklustr', u'wood', u'cling', u'western', u'open', u'lead']
[u'liberia', u'taylor', u'say', u'quit', u'forc']
[u'magpi', u'roll', u'roo', u'crow', u'tame', u'tiger']
[u'mckay', u'shot', u'clear', u'despit', u'tripl', u'bogey', u'finish']
[u'medic', u'check', u'question', u'begin', u'christma']
[u'meet', u'decid', u'australia', u'role', u'north', u'korea']
[u'millar', u'tip', u'aussi', u'prologu', u'glori']
[u'mine', u'council', u'welcom', u'propos', u'csiro', u'chang']
[u'mosqu', u'attack', u'spark', u'unrest', u'pakistan']
[u'murali', u'play', u'english', u'counti', u'cricket', u'report']
[u'navratilova', u'record', u'attempt', u'aliv']
[u'norway', u'royal', u'famili', u'await', u'birth']
[u'trial', u'princip', u'scheme']
[u'palestinian', u'offic', u'injur', u'milit', u'arrest']
[u'pantani', u'leav', u'clinic', u'return', u'home']
[u'panther', u'cowboy', u'score', u'win']
[u'philippoussi', u'look', u'fairytal', u'end']
[u'ask', u'consid', u'health', u'educ']
[u'polic', u'appeal', u'mother', u'abandon', u'babi']
[u'polic', u'continu', u'search', u'mother', u'dump', u'babi']
[u'polic', u'probe', u'discoveri', u'woman', u'bodi']
[u'polic', u'search', u'ident', u'dump']
[u'premier', u'break', u'product']
[u'protest', u'demonstr', u'iranian', u'asylum', u'seeker']
[u'protest', u'expect', u'countri', u'labor', u'confer']
[u'push', u'resid', u'conserv', u'water']
[u'putin', u'set', u'chechnya', u'presidenti', u'elect']
[u'say', u'farmer']
[u'ralf', u'pole', u'william']
[u'rann', u'announc', u'review', u'secret', u'probe']
[u'report', u'find', u'longer', u'hour', u'fewer', u'holiday']
[u'resid', u'form', u'tarana', u'nation', u'park']
[u'ronaldinho', u'join', u'real', u'madrid', u'report']
[u'run', u'time', u'armstrong', u'prologu']
[u'russian', u'billionair', u'plan', u'chelsea', u'shop', u'spree']
[u'sar', u'contain', u'worldwid']
[u'search', u'miss', u'toddler']
[u'solomon', u'warlord', u'report', u'sign', u'ceas']
[u'soul', u'barri', u'white', u'die']
[u'southern', u'african', u'head', u'meet', u'discuss', u'epidem']
[u'specul', u'space', u'tourist']
[u'lanka', u'crash', u'kill']
[u'stanhop', u'warn', u'tougher', u'water', u'restrict']
[u'suicid', u'bomber', u'target', u'moscow', u'rock', u'concert']
[u'talk', u'address', u'global', u'intercept']
[u'thank', u'aussi', u'say', u'lara']
[u'kill', u'overnight', u'road']
[u'tini', u'minardi', u'stun', u'gun', u'franc']
[u'tremor', u'felt', u'canberra']
[u'trezeguet', u'percent', u'certain', u'sign', u'juve']
[u'turk', u'escap', u'fine', u'euro', u'troubl']
[u'highway', u'collis']
[u'edg', u'helmet']
[u'ultralight', u'crash', u'kill']
[u'market', u'week', u'lower']
[u'vietnames', u'oper', u'immigr']
[u'volcan', u'erupt', u'take', u'toll', u'ecuador', u'health']
[u'warm', u'welcom', u'expect', u'crean', u'perth']
[u'wasp', u'mckenzi', u'ban', u'week']
[u'webber', u'dont', u'blame', u'schumi', u'smash']
[u'william', u'bring', u'kansa', u'comet', u'crash', u'earth']
[u'wimbledon', u'result']
[u'wimbledon', u'programm']
[u'wood', u'disgrac', u'fund', u'cut', u'scout']
[u'wood', u'control', u'tesk', u'struggl']
[u'chines', u'coal', u'explos']
[u'line', u'live', u'world', u'coverag']
[u'accc', u'defend', u'safeway', u'case']
[u'resid', u'warn', u'lotteri', u'scam']
[u'welcom', u'child', u'obes', u'studi']
[u'anderson', u'keen', u'broaden', u'region']
[u'anderson', u'keen', u'broaden', u'telco', u'debat']
[u'armstrong', u'worri', u'disappoint', u'tour', u'start']
[u'arson', u'suspect', u'melbourn', u'fire']
[u'asian', u'cricket', u'boss', u'overse', u'afghan', u'game']
[u'aussi', u'water', u'polo', u'team', u'beat']
[u'bash', u'die', u'ident', u'unknown']
[u'blair', u'step', u'pressur']
[u'british', u'journalist', u'kill', u'baghdad']
[u'bryant', u'attack', u'treatment', u'caus', u'concern']
[u'bulldog', u'romp', u'record', u'knight']
[u'carr', u'consid', u'stamp', u'duti']
[u'chopper', u'crash', u'brazilian', u'field', u'kill']
[u'claim', u'collaps', u'posit', u'effect']
[u'climber', u'die', u'sunshin', u'coast', u'accid']
[u'condit', u'attach', u'palestinian', u'prison']
[u'confer', u'aim', u'agenda', u'women', u'worldwid']
[u'coron', u'brief', u'prepar']
[u'coulthard', u'warn', u'dead', u'danger']
[u'crean', u'promis', u'reduc', u'univers', u'cost']
[u'crean', u'say', u'dont', u'migrant', u'improv', u'polici']
[u'diabet', u'forum', u'look', u'treatment', u'research']
[u'ehiogu', u'miss', u'start', u'middlesbrough', u'season']
[u'england', u'recal', u'thorp', u'atherton']
[u'england', u'releas']
[u'estonian', u'domin', u'sport', u'wife', u'carri']
[u'everton', u'say', u'rooney', u'go']
[u'experi', u'scud', u'edg']
[u'expert', u'say', u'gene', u'combin', u'lead', u'addict']
[u'expert', u'cast', u'doubt', u'drug', u'free', u'tour']
[u'feder', u'govt', u'deni', u'consid', u'environment', u'levi']
[u'freez', u'wait', u'boat', u'capsiz']
[u'priest', u'reject', u'bishop', u'post']
[u'geelong', u'stun', u'port', u'win', u'swan', u'melbourn']
[u'gibb', u'lead', u'protea', u'zimbabw']
[u'govt', u'consid', u'cut', u'hec', u'fee']
[u'govt', u'push', u'mobil', u'phone', u'scrambl', u'devic']
[u'govt', u'slam', u'plan', u'block', u'nuclear', u'wast', u'dump']
[u'guid', u'dog', u'launch', u'technolog']
[u'high', u'risk', u'group', u'urg', u'inject']
[u'hundr', u'bodi', u'iraqi', u'mass', u'grave']
[u'intern', u'communiti', u'condemn', u'moscow', u'suicid']
[u'interview', u'christma']
[u'israel', u'agre', u'releas', u'palestinian', u'prison']
[u'labor', u'plan', u'educ', u'govt']
[u'latham', u'blame', u'govt', u'rate', u'freez']
[u'latham', u'stick', u'crean', u'negat', u'gear']
[u'firm', u'examin', u'possibl', u'legal', u'challeng']
[u'lawyer', u'look', u'legal', u'challeng', u'final']
[u'lunk', u'lead', u'women', u'open', u'round']
[u'major', u'parti', u'dismiss', u'propos', u'green']
[u'kill', u'injur', u'stab']
[u'mcgee', u'lead', u'australian', u'charg']
[u'mcgee', u'win', u'tour', u'franc', u'prologu']
[u'memorabilia', u'auction', u'rais', u'million', u'chariti']
[u'messag', u'seek', u'kindr', u'spirit', u'univers']
[u'minor', u'earthquak', u'canberra']
[u'miss', u'toddler', u'night', u'paddock']
[u'monsoon', u'rain', u'flood', u'china', u'india', u'bangladesh']
[u'injur', u'turkish', u'explos']
[u'moscow', u'blast', u'blame', u'chechen', u'rebel']
[u'moscow', u'suicid', u'bomb', u'condemn', u'intern']
[u'nasa', u'call', u'launch', u'mar', u'probe', u'fourth', u'time']
[u'nasa', u'call', u'mar', u'probe', u'launch', u'fourth', u'time']
[u'law', u'stop', u'nuclear', u'wast', u'dump']
[u'miss', u'canyon']
[u'ningaloo', u'decis']
[u'let', u'cook', u'yellow', u'mcgee']
[u'nude', u'protest', u'crowd', u'warm', u'fermin']
[u'olymp', u'chief', u'suggest', u'wimbledon', u'possibl']
[u'outrag', u'bryant', u'take', u'jail']
[u'past', u'controversi', u'pressur', u'venus', u'play']
[u'photo', u'prison', u'aborigin', u'target']
[u'polic', u'continu', u'plea', u'abandon', u'babi', u'mother']
[u'polic', u'probe', u'tripl', u'fatal', u'north', u'coast']
[u'announc', u'grow', u'concern', u'properti', u'right']
[u'price', u'look', u'cash', u'shoot', u'lead']
[u'putin', u'cancel', u'trip', u'moscow', u'suicid', u'blast']
[u'reserv', u'forc', u'parad', u'sydney']
[u'robinson', u'support', u'woman', u'atsic', u'deputi']
[u'roeder', u'charg', u'hammer']
[u'ruddock', u'kick', u'naidoc', u'week', u'torr', u'strait']
[u'ruddock', u'urg', u'reveal', u'christma', u'cost']
[u'scud', u'relax', u'feder', u'fret']
[u'search', u'continu', u'miss', u'canyon', u'blue']
[u'search', u'continu', u'miss', u'toddler']
[u'serena', u'retain', u'wimbledon', u'titl']
[u'serena', u'william', u'retain', u'wimbledon', u'titl']
[u'shock', u'follow', u'turkey', u'explos']
[u'skipper', u'oliv', u'dump', u'black', u'squad']
[u'solomon', u'warlord', u'releas', u'hostag']
[u'somali', u'lord', u'agre', u'govt']
[u'state', u'skimp', u'educ', u'govt']
[u'streak', u'frustrat', u'zimbabw', u'exit', u'triangular']
[u'survey', u'aim', u'address', u'childhood', u'obes']
[u'suspect', u'asylum', u'seeker', u'undergo', u'interview']
[u'sydney', u'parad', u'honour', u'reserv']
[u'tanzania', u'marwa', u'win', u'gold', u'coast', u'marathon']
[u'tasmanian', u'adopt', u'servic', u'shut']
[u'teenag', u'face', u'court', u'rap']
[u'telstra', u'trust', u'fund', u'bush', u'moot']
[u'tendulkar', u'fulli', u'hand', u'surgeri']
[u'kill', u'north', u'coast', u'collis']
[u'tiger', u'take', u'shoot', u'lead', u'western', u'open']
[u'toddler', u'maul', u'famili']
[u'tour', u'franc', u'cycl', u'brief']
[u'train', u'derail', u'southern', u'india']
[u'turkey', u'take', u'task', u'arrest', u'iraq']
[u'twin', u'surgeri', u'enter', u'crucial', u'stage']
[u'forc', u'condemn', u'iraq', u'attack']
[u'iraqi', u'polic', u'recruit', u'kill', u'bomb']
[u'releas', u'seiz', u'turkish', u'troop']
[u'vieira', u'stay', u'arsenal']
[u'premier', u'curfew', u'criticis', u'confer']
[u'whatmor', u'expect', u'darwin', u'pitch', u'play', u'slow']
[u'white', u'collar', u'union', u'split', u'nigerian', u'strike']
[u'wilson', u'kebab', u'day', u'rebound', u'cancer']
[u'wimbledon', u'result']
[u'wimbledon', u'programm']
[u'woodbridg', u'bow', u'mix', u'doubl']
[u'woodbridg', u'equal', u'record', u'eighth', u'wimbledon']
[u'zimbabwean', u'hungri', u'mugab', u'get', u'rise']
[u'upgrad', u'bendigo', u'stadium']
[u'access', u'foreshadow', u'cut']
[u'adelaid', u'strike', u'finish', u'today']
[u'adler', u'face', u'court', u'charg']
[u'adler', u'plan', u'vigor', u'defenc', u'crimin', u'charg']
[u'airlin', u'consid', u'reduc', u'fare']
[u'ord', u'edg', u'slight', u'higher']
[u'come', u'clean', u'gear', u'polici']
[u'stand', u'school', u'leav', u'plan']
[u'anderson', u'honour', u'robinson', u'endors']
[u'angler', u'cop', u'stiff', u'fine', u'illeg', u'fish']
[u'appeal', u'urg', u'greater', u'industri', u'zone', u'truck', u'access']
[u'aussi', u'colour', u'high', u'tour']
[u'aussi', u'soccer', u'star']
[u'australian', u'die', u'iraq', u'blast']
[u'australia', u'address', u'climat', u'chang', u'issu']
[u'babi', u'joshua', u'face', u'adopt']
[u'bali', u'accus', u'threaten', u'polic', u'wit']
[u'bandit', u'tri', u'walk', u'cash', u'regist']
[u'bangladesh', u'cricket', u'team', u'arriv', u'darwin']
[u'barb', u'wire', u'tattoo', u'clue', u'unknown', u'dead']
[u'dodg', u'second', u'attempt', u'impound', u'car']
[u'bass', u'highway', u'undergo', u'improv']
[u'defend', u'journalist', u'iraq', u'report']
[u'beatti', u'inspect', u'plan', u'canal', u'site']
[u'name', u'escap', u'hack', u'contest']
[u'weekend', u'footi', u'fever']
[u'blair', u'clear', u'misrepres', u'iraq', u'evid']
[u'boca', u'celebr', u'stadium', u'rout']
[u'bomber', u'test', u'crow', u'defenc']
[u'break', u'collarbon', u'end', u'hamilton', u'hope']
[u'broom', u'nurs', u'student', u'graduat']
[u'bulldog', u'hawkin', u'comment']
[u'bulldog', u'pair', u'blue']
[u'burk', u'say', u'need', u'econom', u'boost']
[u'cabl', u'woe', u'central', u'west', u'phone']
[u'racial', u'uniti', u'overcom', u'child', u'woe']
[u'stop', u'busi', u'sell', u'oversea']
[u'canberra', u'host', u'diabet', u'symposium']
[u'canberra', u'host', u'aust', u'award']
[u'industri', u'face', u'work', u'ban']
[u'part', u'worker', u'threaten', u'strike']
[u'carr', u'super', u'council', u'shock', u'local', u'council']
[u'car', u'leav', u'visit']
[u'chick', u'undergo', u'shoulder', u'surgeri']
[u'clijster', u'sugiyama', u'speak', u'languag', u'victori']
[u'call', u'investig', u'polic', u'target']
[u'conjoin', u'twin', u'surgeri', u'second']
[u'cooma', u'host', u'bushfir', u'hear']
[u'coron', u'call', u'compulsori', u'life', u'jacket']
[u'coron', u'report', u'fatal', u'ultralight', u'crash']
[u'corsica', u'reject', u'autonomi', u'vote']
[u'council', u'concern', u'elector', u'plan']
[u'council', u'happi', u'resum', u'servic']
[u'court', u'dismiss', u'pacemak', u'appeal']
[u'court', u'document', u'releas', u'carr', u'say']
[u'crean', u'tackl', u'tafe', u'shortag']
[u'dairi', u'farmer', u'urg', u'unit']
[u'damag', u'limit', u'game', u'mclaren']
[u'deregul', u'tip', u'littl', u'impact']
[u'desper', u'british', u'tenni', u'offici', u'turn', u'mcenro']
[u'doctor', u'happi', u'start', u'surgeri', u'separ']
[u'driver', u'fatal', u'head']
[u'echo', u'sampra', u'feder', u'triumph']
[u'eel', u'sign', u'canning', u'muckert']
[u'england', u'surviv', u'zimbabw', u'scare']
[u'extend', u'school', u'hour', u'great', u'pay', u'carr']
[u'fear', u'air', u'river', u'health']
[u'feder', u'defus', u'scud', u'wimbledon', u'titl']
[u'feder', u'pay', u'tribut', u'late', u'coach']
[u'feder', u'rise', u'rank', u'hewitt', u'slip']
[u'ferrari', u'pledg', u'fight', u'regain', u'titl', u'lead']
[u'firefight', u'fear', u'futur', u'safeti', u'offic']
[u'fisk', u'miss', u'adelaid', u'festiv', u'idea']
[u'dead', u'china', u'blow', u'dike', u'fight', u'flood']
[u'forum', u'consid', u'ethanol', u'benefit']
[u'gallop', u'draw', u'critic', u'curfew']
[u'garnett', u'sign', u'chief']
[u'clergi', u'sin', u'newcastl', u'bishop']
[u'girl', u'hospit', u'tractor', u'accid']
[u'golf', u'cours', u'sale', u'plan', u'fall']
[u'grand', u'final', u'blue', u'local', u'footbal', u'side']
[u'greek', u'singer', u'hit', u'wrong', u'note', u'divid', u'cyprus']
[u'green', u'jersey', u'consol', u'grumbl', u'mcewen']
[u'green', u'welcom', u'power', u'plant', u'deal']
[u'group', u'prais', u'water', u'effici', u'move']
[u'hama', u'say', u'prison', u'releas']
[u'hannay', u'origin', u'debut']
[u'campaign', u'target', u'teenag']
[u'hope', u'rail', u'line', u'reopen']
[u'hous', u'arson', u'attack', u'fail']
[u'howard', u'stand', u'intellig']
[u'howard', u'stand', u'comment']
[u'india', u'retain', u'win', u'squad', u'champion', u'trophi']
[u'industri', u'relat', u'spotlight']
[u'inquest', u'find', u'solut', u'decad', u'mysteri']
[u'insur', u'decis', u'delay', u'frustrat', u'miner']
[u'iran', u'bring', u'israel', u'missil', u'rang']
[u'iran', u'test', u'long', u'rang', u'missil']
[u'iraq', u'hide', u'weapon', u'scientist']
[u'begin', u'gretley', u'disast', u'hear']
[u'januari', u'cronj', u'nation', u'bok']
[u'jewish', u'bodi', u'lose', u'irv', u'film']
[u'rise']
[u'keke', u'sign', u'solomon', u'ceasefir']
[u'knight', u'loss', u'canterburi']
[u'labor', u'warn', u'western', u'power', u'break']
[u'laker', u'superstar', u'bryant', u'charg', u'sexual', u'assault']
[u'landhold', u'threaten', u'action', u'properti', u'right']
[u'lawyer', u'suggest', u'alcohol', u'tip']
[u'leed', u'hold', u'super', u'leagu', u'lead']
[u'lewi', u'gain', u'world', u'championship', u'mark']
[u'licens', u'urg', u'monitor', u'hotel', u'curfew', u'trial']
[u'live', u'cattl', u'export', u'asia', u'boom']
[u'liverpool', u'swoop', u'havr', u'pair']
[u'lobster', u'industri', u'boost', u'oversea', u'promot']
[u'magistr', u'industri', u'drug', u'determin']
[u'magpi', u'steer', u'clear', u'jumper']
[u'arrest', u'chainsaw', u'chequ']
[u'deni', u'bail', u'airport', u'hoax', u'charg']
[u'face', u'committ', u'decept', u'charg']
[u'face', u'hoax', u'charg']
[u'marathon', u'biggest', u'best']
[u'maroon', u'rooki', u'anasta', u'blue']
[u'maroon', u'rooki']
[u'maroon', u'rooki', u'anasta', u'blue']
[u'matthew', u'wari', u'form', u'hawk']
[u'mcgee', u'retain', u'yellow', u'petacchi', u'claim', u'crash', u'mar']
[u'media', u'access', u'limit', u'law']
[u'student', u'reject', u'immor', u'bond', u'plan']
[u'meet', u'help', u'revitalis']
[u'mengin', u'earn', u'tour', u'polka', u'jersey']
[u'mergea', u'leav', u'aussi', u'second', u'best', u'boy', u'final']
[u'millar', u'lash', u'team', u'prologu', u'problem']
[u'mine', u'manag', u'welcom', u'industri', u'promot']
[u'mob', u'gridlock', u'nigerian', u'capit']
[u'monaro', u'school', u'win', u'rock', u'eisteddfod']
[u'monopoli', u'ekka', u'state', u'fair', u'end']
[u'fund', u'mental', u'health', u'program']
[u'want', u'young', u'afghani', u'refuge', u'deport']
[u'welcom', u'power', u'station', u'sale', u'benefit']
[u'mysteri', u'boe', u'resurfac', u'disappear']
[u'naidoc', u'festiv', u'look', u'futur']
[u'navratilova', u'tie', u'record', u'titl']
[u'earli', u'begin', u'bushfir', u'plan']
[u'home', u'plan', u'western', u'desert', u'resid']
[u'public', u'hous', u'broom']
[u'anglican', u'leader', u'priest', u'decis']
[u'opposit', u'question', u'fisheri', u'fee']
[u'top', u'econom', u'growth', u'forecast']
[u'nurs', u'continu']
[u'overtim', u'affect', u'perform', u'polic']
[u'palestinian', u'arrest', u'suspect', u'suicid', u'bomber']
[u'pamplona', u'street', u'bull']
[u'papuan', u'shoot', u'separatist', u'ceremoni']
[u'petacchi', u'emerg', u'sprint', u'king']
[u'philippoussi', u'vow']
[u'pilot', u'surviv', u'crash']
[u'seek', u'advic', u'indigen', u'domest', u'violenc']
[u'polic', u'appeal', u'inform', u'ballina', u'fatal']
[u'polic', u'captur', u'shin', u'path', u'leader']
[u'polic', u'detect', u'foul', u'play', u'british', u'diver']
[u'polic', u'dismantl', u'drug']
[u'policemen', u'bushfir', u'honour']
[u'polic', u'offic', u'hospit', u'casino', u'bash']
[u'polic', u'probe', u'beach', u'bodi']
[u'polic', u'probe', u'bodi']
[u'polic', u'probe', u'pedestrian', u'death']
[u'polic', u'seek', u'inform', u'supermarket', u'brawl']
[u'port', u'adelaid', u'magistr', u'polic', u'investig']
[u'price', u'rise', u'occas', u'grab', u'biggest', u'career']
[u'push', u'emphasi', u'green', u'issu']
[u'ralf', u'lead', u'william']
[u'rate', u'rise', u'worth', u'pain', u'mayor']
[u'rauhihi', u'send', u'messag', u'selector']
[u'resid', u'voic', u'rate', u'rise', u'concern']
[u'review', u'canberra', u'servic']
[u'search']
[u'roo', u'rock', u'trip', u'west']
[u'ring', u'phone', u'servic']
[u'rugbi', u'player', u'drop', u'legal', u'challeng']
[u'santo', u'bounc', u'libertador', u'defeat']
[u'vow', u'continu', u'dump', u'fight']
[u'schus', u'warn', u'ferrari']
[u'seven', u'tribun']
[u'sheedi', u'say', u'competit', u'wide', u'open']
[u'shire', u'consid', u'mine', u'option']
[u'wont', u'tour', u'detent', u'centr']
[u'small', u'turnout', u'king', u'bros', u'creditor', u'meet']
[u'soldier', u'kill', u'sporad', u'attack', u'iraq']
[u'solomon', u'mark', u'year', u'independ']
[u'solomon', u'villag', u'receiv', u'financi']
[u'south', u'east', u'lose', u'footi', u'final']
[u'speed', u'camera', u'attack']
[u'substanc', u'abus', u'confer', u'agenda']
[u'support', u'port', u'kembla', u'contain', u'termin']
[u'sustain', u'spotlight', u'confer']
[u'target', u'photo', u'hark', u'day']
[u'rise']
[u'job', u'growth', u'tip', u'remain', u'static']
[u'taxpay', u'return', u'bond', u'medic', u'student']
[u'taylor', u'accept', u'asylum', u'offer']
[u'tear', u'feder', u'slay', u'demon', u'self', u'doubt']
[u'teen', u'gang', u'rape', u'charg', u'bail']
[u'teen', u'rescu', u'mountain']
[u'teen', u'stand', u'trial', u'crossbow', u'attack']
[u'toddler', u'die', u'driveway', u'mishap']
[u'tourism', u'number', u'reach', u'high', u'tasmania']
[u'tourism', u'plan', u'afoot', u'jail']
[u'tourism', u'plan', u'seek', u'financi']
[u'trio', u'charg', u'break', u'raid']
[u'trio', u'head', u'women', u'open', u'playoff']
[u'tuna', u'billfish', u'menu', u'fisheri', u'forum']
[u'join', u'effort', u'stamp', u'ident', u'fraud']
[u'union', u'highlight', u'transport', u'dispar']
[u'militari', u'expert', u'arriv', u'monrovia']
[u'soldier', u'die', u'latest', u'iraq', u'attack']
[u'soldier', u'shoot', u'baghdad']
[u'vicent', u'suffer', u'congression', u'defeat']
[u'vice', u'regal', u'visit', u'christma']
[u'govt', u'keep', u'cost', u'swim', u'wrap']
[u'vieira', u'arsenal', u'deal']
[u'vincentia', u'develop', u'talk', u'plan']
[u'governor', u'urg', u'compass', u'refuge']
[u'polic', u'inquiri', u'extend']
[u'weapon', u'heat']
[u'whitlam', u'offer', u'handprint', u'reconcili']
[u'fuss', u'target', u'polic']
[u'wimbledon', u'result']
[u'woman', u'critic', u'crash']
[u'wood', u'coast', u'shoot', u'western', u'open']
[u'work', u'relationship', u'give', u'thumb', u'darwin']
[u'youth', u'seek', u'entertain']
[u'grant', u'crop', u'centr']
[u'aborigin', u'leader', u'boycott', u'polic', u'ceremoni']
[u'mazen', u'cancel', u'plan', u'peac', u'meet']
[u'age', u'black', u'hawk']
[u'alleg', u'murder', u'face', u'court', u'today']
[u'amrad', u'resign']
[u'anderson', u'deni', u'secret', u'plan', u'telstra', u'fund']
[u'angliss', u'hospit', u'coronari', u'unit']
[u'kill', u'major', u'hutu', u'rebel', u'attack']
[u'aussi', u'domin', u'tour', u'franc']
[u'aust', u'doctor', u'join', u'global', u'diabet', u'trial']
[u'australian', u'dollar', u'drop', u'nasdaq', u'reach', u'high']
[u'australian', u'growth', u'creditor', u'meet', u'plan']
[u'australia', u'host', u'talk', u'north', u'korean', u'weapon', u'sale']
[u'baker', u'cop', u'match']
[u'bank', u'chang', u'confidenti', u'deed', u'claus']
[u'bartlett', u'urg', u'releas', u'detain', u'children']
[u'bat', u'blame', u'darwin', u'blackout']
[u'battl', u'line', u'draw', u'wast', u'dump']
[u'berri', u'offer', u'grower', u'assur', u'amidst', u'merger', u'talk']
[u'bever', u'hillbilli', u'ebsen', u'die']
[u'bold', u'beloki', u'ignit', u'armstrong', u'feud']
[u'boost', u'plan', u'glen', u'inn', u'jail']
[u'break', u'hill', u'isa', u'lead', u'zinc']
[u'brother', u'rescu', u'boat', u'drama']
[u'bubbl', u'feder', u'welcom', u'home']
[u'bulldog', u'lose', u'hugh', u'bronco', u'clash']
[u'bullet', u'sign', u'boomer', u'black']
[u'bus', u'run', u'disput', u'linger']
[u'bush', u'arriv', u'seneg', u'begin', u'africa', u'tour']
[u'bush', u'bemoan', u'racial', u'tyranni']
[u'bushfir', u'parliamentari', u'probe', u'begin', u'today']
[u'bushfir', u'probe', u'head', u'nowra']
[u'bush', u'commit', u'forc', u'liberia']
[u'busi', u'confid', u'surg', u'rat', u'specul']
[u'busi', u'industri', u'law', u'remind']
[u'busi', u'get', u'synchrotron', u'plan']
[u'die', u'court', u'rule']
[u'speed', u'trucki']
[u'carefre', u'canari', u'knock', u'perch']
[u'carr', u'consid', u'stagger', u'work', u'hour']
[u'chamber', u'offer', u'shire', u'chang', u'reason']
[u'christma', u'island', u'condit', u'divid', u'committe']
[u'say', u'saddam', u'tape', u'probabl', u'authent']
[u'columbia', u'smoke']
[u'comalco', u'suppli', u'gladston', u'refineri']
[u'commerci', u'strategi', u'plan', u'bendigo']
[u'communiti', u'mourn', u'loss', u'footi', u'legend']
[u'communiti', u'want', u'minist', u'stop', u'phone', u'tower']
[u'concern', u'air', u'john', u'diseas', u'spread']
[u'conflict', u'report', u'rais', u'manslaught', u'case']
[u'conserv', u'trust', u'air', u'develop', u'fear']
[u'content', u'rule', u'respons', u'prime', u'job']
[u'cook', u'lead', u'aussi', u'domin', u'tour']
[u'cooki', u'come', u'boil', u'aussi', u'monopolis', u'tour']
[u'cool', u'head', u'cook', u'leav', u'kamikaz']
[u'council', u'approv', u'high', u'rise', u'develop']
[u'council', u'chang', u'mind', u'age', u'care', u'talk']
[u'council', u'end', u'wrangl', u'offic', u'site']
[u'council', u'offer', u'qualifi', u'back', u'singl', u'water']
[u'court', u'reject', u'stay', u'child', u'detaine', u'rule']
[u'crean', u'target', u'brain', u'drain']
[u'dixon', u'bulldog', u'pair', u'plead', u'guilti', u'wrestl']
[u'await', u'report', u'magistr', u'conduct']
[u'dragon', u'pair', u'mull', u'judiciari', u'plea']
[u'drought', u'affect', u'canola', u'crop']
[u'educ', u'help', u'heal', u'social', u'woe']
[u'eel', u'sign', u'widder']
[u'feder', u'govt', u'rule', u'environ', u'levi']
[u'govt', u'extend', u'blood', u'donat']
[u'fight', u'continu', u'return', u'aborigin', u'remain']
[u'final', u'nasa', u'send', u'mar', u'rover']
[u'crippl', u'communiti', u'radio', u'station']
[u'fisheri', u'director', u'reject', u'fee', u'attack']
[u'foe', u'death', u'heart', u'problem', u'drug', u'state']
[u'fourth', u'suspect', u'surrend']
[u'fourth', u'suspect', u'arrest', u'embassi', u'bomb', u'plot']
[u'fund', u'boost', u'youth', u'patrol']
[u'gallop', u'fight', u'nuclear', u'wast', u'dump']
[u'captain', u'origin', u'bronco']
[u'gimelstob', u'fight', u'morrison', u'hall', u'fame']
[u'golf', u'club', u'option', u'investig']
[u'gough', u'fit', u'test', u'recal', u'say', u'fletcher']
[u'govt', u'challeng', u'sugar', u'subsidi']
[u'govt', u'doubl', u'dip', u'home']
[u'govt', u'fight', u'busi']
[u'govt', u'highlight', u'improv', u'indigen', u'health']
[u'govt', u'close', u'lodg', u'help', u'elder']
[u'govt', u'establish', u'aviat', u'train', u'centr']
[u'group', u'highlight', u'busi', u'growth', u'impedi']
[u'grower', u'hope', u'squeez', u'solidar', u'merger']
[u'harrigan', u'refere', u'origin']
[u'harri', u'potter', u'hous', u'sale']
[u'health', u'worker', u'austrian', u'train', u'mission']
[u'help', u'seek', u'dairi', u'farmer']
[u'hewitt', u'triumph']
[u'hick', u'admit', u'train', u'qaeda', u'howard']
[u'hick', u'militari', u'defenc', u'team']
[u'hobart', u'waterfront', u'star', u'hotel', u'open', u'year']
[u'horan', u'hall', u'fame', u'glori']
[u'howard', u'play', u'polit', u'freeway', u'brack']
[u'hutchison', u'say', u'tower', u'build']
[u'hutchison', u'tell', u'pull', u'mobil', u'tower']
[u'smell', u'fishi', u'rusik']
[u'imprison', u'detect', u'releas', u'bail']
[u'indigen', u'cultur', u'celebr']
[u'indonesian', u'trio', u'guilti', u'illeg', u'fish']
[u'injur', u'hamilton', u'ignor', u'pain', u'finish', u'tour', u'stage']
[u'inspector', u'probe', u'anim', u'welfar']
[u'insur', u'disput', u'put', u'home', u'birth', u'doubt']
[u'iranian', u'twin', u'die', u'marathon', u'surgeri']
[u'iraq', u'command', u'step']
[u'israel', u'milit', u'truce', u'worthless']
[u'octopus', u'blob']
[u'jewish', u'group', u'appeal', u'film', u'rule']
[u'judg', u'approv', u'worldcom', u'settlement']
[u'judg', u'reject', u'guilti', u'plea']
[u'juri', u'find', u'husband', u'guilti', u'hairdryer', u'murder']
[u'kayak', u'baggaley', u'remain', u'world', u'number']
[u'kewel', u'delay', u'liverpool']
[u'kewel', u'emerton', u'sign', u'deal']
[u'sue', u'alleg', u'chicken', u'abus']
[u'king', u'roger', u'save', u'tenni', u'world', u'swiss', u'press']
[u'labor', u'tip', u'higher', u'fee', u'spread']
[u'leagu', u'player', u'cop', u'year', u'handl']
[u'love', u'tender', u'tooth']
[u'magic', u'armstrong', u'charg', u'assault']
[u'magpi', u'mourn', u'time', u'great']
[u'magpi', u'mourn', u'rise']
[u'avoid', u'jail', u'drug', u'sale']
[u'face', u'court', u'drug', u'charg']
[u'share', u'surg', u'takeov', u'talk']
[u'marathon', u'organis', u'look', u'bigger', u'thing']
[u'marvel', u'unveil', u'mutant']
[u'mason', u'open', u'tiwi', u'age', u'care', u'facil']
[u'mccaski', u'forg', u'militari', u'promot', u'court', u'hear']
[u'mcewen', u'green', u'jersey', u'add', u'aussi', u'success', u'stori']
[u'mcgauran', u'call', u'wast', u'bluff']
[u'medic', u'student', u'fight', u'rural', u'servic']
[u'merger', u'late', u'opposit']
[u'mine', u'magnat', u'win', u'famili', u'feud']
[u'mistak', u'see', u'pill', u'return', u'shelv']
[u'mitchel', u'give', u'back', u'captain', u'thorn']
[u'moreton', u'fish', u'farm', u'riski', u'springborg']
[u'air', u'concern', u'armi', u'base']
[u'naidoc', u'boycott', u'threat', u'creat', u'divis', u'say']
[u'nativ', u'titl', u'tribun', u'allow', u'diamond']
[u'nat', u'committe', u'reject', u'telstra', u'trust']
[u'netbal', u'readi', u'world', u'championship']
[u'antarct', u'leader', u'choos']
[u'ferri', u'result', u'quarantin', u'servic']
[u'mclaren', u'unlik', u'silverston']
[u'news', u'resourc', u'gain', u'offset', u'bank', u'fall']
[u'chief', u'iraq', u'pledg', u'defeat', u'enemi']
[u'nigerian', u'union', u'fuel', u'strike']
[u'bunni']
[u'simpl', u'solut', u'alcohol', u'abus', u'patterson']
[u'govt', u'offer', u'explor', u'pledg']
[u'extend', u'trial', u'electron', u'health', u'record']
[u'palestinian', u'releas', u'report', u'suicid', u'bomber']
[u'patient', u'transfer', u'link', u'nurs', u'shortag']
[u'plane', u'crash', u'probe', u'continu']
[u'keep', u'dossier', u'arm', u'length']
[u'policeman', u'grant', u'bail', u'drug', u'charg']
[u'polic', u'clear', u'road', u'race']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'seek', u'urgent', u'health', u'dept', u'meet']
[u'polic', u'trial', u'unlik', u'adopt']
[u'polic', u'union', u'reject', u'search', u'claim']
[u'popular', u'show', u'face', u'industri', u'action']
[u'port', u'wear', u'black', u'white', u'strip']
[u'posit', u'aspect', u'cultur']
[u'premier', u'leagu', u'chelsea', u'ban', u'bosnich']
[u'probe', u'begin', u'unit', u'blaze']
[u'prosecutor', u'mull', u'bryant', u'charg']
[u'push', u'region', u'hub']
[u'govt', u'prais', u'respons', u'polic', u'target']
[u'qualifi', u'lunk', u'win', u'women', u'open', u'playoff']
[u'report', u'clear', u'showground', u'health', u'concern']
[u'resid', u'vote', u'develop', u'plan']
[u'resid', u'voic', u'ambul', u'levi', u'grip']
[u'ax', u'canberra', u'melbourn', u'servic']
[u'rspca', u'continu', u'monitor', u'live', u'export', u'industri']
[u'rspca', u'concern', u'live', u'stock', u'export']
[u'continu', u'fight', u'nuclear', u'dump']
[u'safeti', u'probe', u'launch', u'post', u'hole', u'digger']
[u'scientist', u'unveil', u'genet', u'test', u'techniqu']
[u'sheep', u'price', u'expect', u'remain', u'high']
[u'shire', u'speak', u'sentenc']
[u'shop', u'centr', u'agenda']
[u'simeoni', u'armstrong', u'court']
[u'simon', u'stand', u'protea', u'skipper', u'smith']
[u'singapor', u'iran', u'mourn', u'twin', u'death']
[u'tour', u'christma', u'island']
[u'small', u'plane', u'crash', u'coast']
[u'solomon', u'adjourn', u'intervent', u'forc', u'debat']
[u'closur', u'plan', u'peach']
[u'springbok', u'heart', u'match']
[u'stosur', u'return', u'wimbledon']
[u'student', u'filmmak', u'strut', u'stuff', u'festiv']
[u'student', u'crash', u'univers', u'senat', u'meet']
[u'studi', u'consid', u'crop', u'water', u'salin']
[u'studi', u'consid', u'illawarra', u'escarp', u'flora', u'fauna']
[u'studi', u'say', u'snore', u'kid', u'hyperact']
[u'sudan', u'defenc', u'chief', u'plane', u'crash', u'victim']
[u'sudan', u'defenc', u'chief', u'victim', u'plane']
[u'survey', u'say', u'confid', u'wan']
[u'sydney', u'reject', u'greiner', u'role']
[u'govt', u'urg', u'seek', u'invest']
[u'tasmania', u'maintain', u'cabl', u'competit']
[u'teacher', u'threaten', u'nation', u'strike']
[u'ten', u'thousand', u'follow', u'burial']
[u'terrorist', u'access', u'toxic', u'agent', u'limit']
[u'thorp', u'eye', u'glori', u'spain']
[u'injur', u'centrelink', u'offic']
[u'tour', u'organis', u'plead', u'guilti', u'stage']
[u'twin', u'battl', u'circul', u'problem']
[u'twin', u'marathon', u'surgeri']
[u'twin', u'oper', u'enter']
[u'dead', u'blast', u'outsid', u'aviv']
[u'probe', u'reject', u'report', u'defend', u'campbel']
[u'ask', u'rich', u'countri', u'doubl']
[u'back', u'hike', u'secret', u'vote']
[u'union', u'scoff', u'longer', u'school', u'hour', u'nonsens']
[u'urg', u'iran', u'allow', u'tougher', u'nuclear', u'inspect']
[u'admit', u'error', u'uranium', u'claim', u'report']
[u'polic', u'claim', u'kill', u'spree', u'foil']
[u'nat', u'cautious', u'telstra', u'sale', u'fund']
[u'visitor', u'number', u'south', u'west']
[u'plot', u'emptiv', u'strike', u'wast', u'dump']
[u'water', u'restrict', u'impact', u'grower']
[u'waugh', u'lille', u'track', u'india']
[u'william', u'adler', u'lose', u'penalti', u'appeal']
[u'windi', u'western', u'power']
[u'wine', u'industri', u'urg', u'plant', u'vine']
[u'woolworth', u'readi', u'petrol', u'competit']
[u'worker', u'threaten', u'strike', u'entitl']
[u'zola', u'pay', u'emot', u'farewel', u'chelsea']
[u'abattoir', u'revamp', u'boost', u'number']
[u'aborigin', u'health', u'servic', u'notch', u'year']
[u'actor', u'strike', u'better', u'work', u'contract']
[u'africa', u'drive', u'agenda', u'scientist', u'say']
[u'agreement', u'boost', u'chanc', u'project']
[u'question', u'health', u'program']
[u'analyst', u'view', u'dollar', u'slump', u'correct']
[u'anderson', u'blame', u'competit', u'airlin', u'cut']
[u'anderson', u'unhappi', u'decis']
[u'penni', u'save', u'rais']
[u'arkansa', u'lawyer', u'charg', u'mail', u'dead', u'snake']
[u'art', u'deleg', u'push', u'fund']
[u'aust', u'japan', u'sign', u'fresh', u'trade', u'deal']
[u'australia', u'field', u'best', u'squad', u'year', u'jone']
[u'australia', u'name', u'fourth', u'best', u'place', u'live']
[u'australian', u'injur', u'bull']
[u'aust', u'coast', u'love', u'affair', u'endur']
[u'author', u'concern', u'tangl', u'humpback']
[u'bali', u'bomb', u'go', u'script']
[u'refus', u'reveal', u'iraq', u'sourc']
[u'beatti', u'defend', u'hous', u'afford', u'claim']
[u'beatti', u'tip', u'bluewat', u'announc']
[u'beckham', u'real', u'green', u'light', u'hong', u'kong']
[u'bergkamp', u'agent', u'ridicul', u'arsenal', u'contract']
[u'berlusconi', u'express', u'regret', u'nazi', u'jibe']
[u'river', u'book', u'stori', u'hope', u'author']
[u'blair', u'declar', u'right']
[u'blaze', u'tear', u'roma', u'hous']
[u'bodi', u'believ', u'miss', u'fisherman']
[u'boost', u'fight', u'domest', u'violenc', u'child']
[u'bush', u'mbeki', u'mind', u'zimbabw']
[u'bush', u'mbeki', u'discuss', u'zimbabw', u'issu']
[u'bush', u'visit', u'slave', u'fort']
[u'strike', u'parti', u'talk']
[u'collect', u'chang']
[u'canada', u'allow', u'marriag']
[u'carraz', u'shock', u'blake', u'draper']
[u'carr', u'reject', u'arm', u'bandit', u'charg']
[u'centr', u'use', u'naidoc', u'week', u'self']
[u'charg', u'downgrad', u'backyard', u'bodi', u'case']
[u'chelsea', u'coach', u'ranieri', u'toler', u'interfer']
[u'children', u'health', u'scheme', u'farewel', u'pie', u'piper']
[u'children', u'struggl', u'vision', u'care']
[u'choisir', u'stick', u'hoov', u'aussi']
[u'church', u'outlin', u'guidelin', u'child', u'abus']
[u'club', u'fear', u'impact', u'poki', u'law']
[u'club', u'hold', u'crisi', u'meet', u'poki', u'rise']
[u'coal', u'mine', u'unsecur', u'creditor', u'second', u'offer']
[u'communiti', u'urg', u'battl', u'inhal', u'abus']
[u'concern', u'air', u'bushfir', u'submiss', u'snub']
[u'concern', u'air', u'cancer', u'treatment', u'delay']
[u'concern', u'air', u'educ', u'train', u'offic']
[u'confer', u'focus', u'healthi', u'river']
[u'consum', u'warn', u'product']
[u'coron', u'clear', u'telstra', u'boy', u'death']
[u'councillor', u'admit', u'inappropri', u'behaviour']
[u'court', u'back', u'sentenc', u'challeng']
[u'court', u'hear', u'accus', u'imperson', u'militari', u'perk']
[u'crean', u'question', u'credibl', u'iraq']
[u'dairi', u'plant', u'year', u'away']
[u'danger', u'prison', u'stand']
[u'democrat', u'lobbi', u'genet', u'privaci']
[u'deplet', u'rabobank', u'surviv', u'team', u'time', u'trial']
[u'depot', u'futur', u'secur', u'transport']
[u'diamond', u'explor', u'promis', u'benefit']
[u'doctor', u'recruit', u'thousand', u'diabet', u'trial']
[u'dollar', u'slump', u'bring', u'rat', u'specul']
[u'door', u'open', u'anti', u'nuke', u'mission', u'downer']
[u'downer', u'loos', u'lip', u'north', u'korea']
[u'doyl', u'oppos', u'transsexu', u'join', u'polic']
[u'employ', u'regard', u'stagger', u'hour', u'impract']
[u'win', u'mount', u'stromlo', u'contract']
[u'eriksson', u'deni', u'chelski']
[u'famili', u'worker', u'consid', u'intensifi', u'campaign']
[u'fatah', u'reject', u'mazen', u'resign']
[u'feder', u'opposit', u'consid', u'age', u'care', u'woe']
[u'film', u'promis', u'econom', u'boost', u'snowi']
[u'firefight', u'contain', u'industri', u'blaze']
[u'firm', u'offer', u'reason', u'walkway', u'closur']
[u'fish', u'hatcheri', u'plan', u'goondiwindi']
[u'fish', u'sight', u'scholarship', u'smarten', u'speci']
[u'fitzroy', u'council', u'hand', u'budget']
[u'flood', u'victim', u'want', u'compens', u'faulti', u'gate']
[u'foreign', u'student', u'detain', u'miss', u'class', u'union']
[u'armi', u'lieuten', u'sentenc', u'forgeri']
[u'red', u'coach', u'connolli', u'take', u'bath']
[u'german', u'buyer', u'find', u'surpris', u'bonus']
[u'goldfield', u'tourism', u'imag', u'consider']
[u'good', u'rain', u'farmer']
[u'gould', u'wari', u'wound', u'maroon']
[u'govt', u'delay', u'cancel', u'flight']
[u'govt', u'ignor', u'advic', u'duck', u'season', u'trust']
[u'govt', u'tripl', u'uni', u'deregul', u'fund']
[u'grower', u'littl', u'incent', u'plant', u'grape']
[u'guid', u'manag', u'leas', u'agricultur', u'land']
[u'hama', u'insist', u'commit', u'truce']
[u'hama', u'prepar', u'disarm', u'spokesman']
[u'harbhajan', u'put', u'surgeri', u'physio', u'work']
[u'heritag', u'offic', u'decid', u'theatr', u'futur']
[u'hick', u'face', u'indefinit', u'detent', u'council', u'warn']
[u'implic', u'wider', u'charg', u'owen']
[u'hill', u'get', u'greater', u'river', u'murray', u'power']
[u'hockey', u'say', u'tire', u'tourism']
[u'hop', u'knight', u'cowboy', u'clash', u'mackay']
[u'howard', u'want', u'china', u'input', u'north', u'korea']
[u'hundr', u'fear', u'dead', u'bangladesh', u'ferri', u'capsiz']
[u'readi', u'william', u'sister', u'sharapova']
[u'india', u'congress', u'consid', u'coalit', u'oust']
[u'iran', u'defend', u'wrestl', u'world', u'titl', u'york']
[u'iraq', u'justifi', u'maintain']
[u'kewel', u'confirm', u'red']
[u'lanc', u'prais', u'tough', u'tyler']
[u'lao', u'free', u'western', u'journalist']
[u'liberian', u'forc', u'block', u'mission']
[u'life', u'leav', u'coastal', u'properti', u'boom']
[u'litter', u'hotlin', u'horsham']
[u'long', u'term', u'leas', u'educ', u'facil']
[u'major', u'bank', u'weaken']
[u'awaken', u'year', u'coma']
[u'charg', u'centrelink', u'attack']
[u'rescu', u'gorg', u'fall']
[u'wield', u'sydney', u'airport']
[u'mcewen', u'lash', u'haselbach', u'crash']
[u'mcgee', u'lose', u'yellow', u'jersey']
[u'mcgee', u'sacrific', u'yellow', u'focus', u'turn', u'cook']
[u'mcgee', u'sacrific', u'yellow', u'jersey']
[u'meet', u'strathfieldsay', u'properti', u'takeov']
[u'meet', u'focus', u'tourism', u'chang']
[u'militari', u'intercept', u'role', u'long']
[u'minist', u'agre', u'consist', u'class']
[u'mirrar', u'peopl', u'jabiluka', u'victori']
[u'mix', u'news', u'uni', u'overhaul']
[u'mother', u'access', u'children', u'alleg', u'kill']
[u'highlight', u'teen', u'pregnanc', u'rat']
[u'outrag', u'ambul', u'levi', u'impact']
[u'telstra', u'sale', u'concern']
[u'nadal', u'oust', u'aynaoui', u'swedish', u'open']
[u'nation', u'park', u'servic', u'watch', u'work']
[u'nazon', u'take', u'yellow', u'reveng', u'franc']
[u'neverfail', u'takeov', u'seal']
[u'alleg', u'saddam', u'tape', u'broadcast']
[u'montgomeri', u'miss', u'rome', u'race']
[u'malaria', u'vaccin', u'trial', u'africa']
[u'news', u'good', u'shepherd', u'unsecur', u'creditor']
[u'fund', u'model', u'wont', u'work', u'vice', u'chancellor']
[u'nikkei', u'hop', u'ralli']
[u'sight', u'disput']
[u'north', u'west', u'nurs', u'consid', u'strike']
[u'offici', u'attack', u'govt', u'lack', u'generos']
[u'outsourc', u'spark', u'loss', u'fear']
[u'pakistan', u'captain', u'latif', u'reprimand', u'booki']
[u'pakistan', u'host', u'indian']
[u'palestinian', u'kill', u'west', u'bank']
[u'park', u'plan', u'hit', u'snag', u'upper', u'hous']
[u'piraci', u'forc', u'fish', u'boat', u'shore']
[u'plan', u'bushfir', u'wood']
[u'plan', u'interdict', u'secur', u'risk', u'brereton']
[u'accus', u'snub', u'liber']
[u'see', u'valu', u'inject', u'room']
[u'tour', u'trailer', u'factori']
[u'polic', u'boost', u'cross', u'border', u'relat']
[u'polic', u'confid', u'transsexu', u'offic']
[u'polic', u'school', u'scheme', u'work', u'commission']
[u'polic', u'capsicum', u'spray', u'centrelink', u'branch']
[u'post', u'mortem', u'unabl', u'clarifi', u'foul', u'play', u'theori']
[u'prais', u'pilot', u'effort']
[u'prais', u'region', u'race', u'plan']
[u'probe', u'begin', u'histor', u'home', u'blaze']
[u'produc', u'talk', u'actor', u'strike']
[u'progress', u'effort', u'attract', u'medic', u'specialist']
[u'public', u'help', u'seek', u'miss', u'woman', u'case']
[u'public', u'hous', u'revamp', u'geraldton']
[u'push', u'continu', u'altern', u'fuel']
[u'push', u'rail', u'standardis', u'track']
[u'qualifi', u'make', u'feder', u'fight', u'swiss', u'open']
[u'real', u'madrid', u'agre', u'sign', u'argentina', u'defend', u'milito']
[u'tape', u'harm', u'health', u'care']
[u'refresh', u'upbeat', u'mood', u'loch', u'lomond']
[u'relax', u'marijuana', u'law', u'mistak', u'judg']
[u'research', u'stoneheng', u'depict', u'femal', u'genitalia']
[u'retir', u'policeman', u'fight', u'corrupt', u'claim']
[u'rich', u'order', u'repay']
[u'rise', u'popul', u'predict']
[u'river', u'burst', u'kill', u'leav', u'million', u'homeless']
[u'riverland', u'repres', u'flow', u'confer']
[u'ruddock', u'urg', u'appeal', u'court', u'rule']
[u'rural', u'research', u'sign', u'american', u'deal']
[u'govt', u'vow', u'high', u'court', u'action', u'wast', u'dump']
[u'saint', u'ponder', u'baker', u'kick', u'appeal']
[u'school', u'money', u'stay', u'govern', u'sector']
[u'search', u'continu', u'miss']
[u'seoul', u'say', u'north', u'korea', u'test']
[u'sheep', u'number', u'fall']
[u'sheep', u'shortag', u'loom']
[u'shoaib', u'face', u'court', u'lash', u'team', u'mat']
[u'shock', u'bryant', u'assault', u'claim']
[u'dead', u'mississippi', u'shoot']
[u'soccer', u'australia', u'slam', u'blatter', u'bastardri']
[u'socceroo', u'neill', u'seal', u'blackburn', u'deal']
[u'solomon', u'need', u'intervent', u'forc']
[u'solomon', u'urg', u'forc']
[u'campaign', u'road', u'speed', u'reduct']
[u'say', u'rivkin', u'return', u'work']
[u'south', u'africa', u'spinner', u'boje', u'break', u'shin', u'bone']
[u'studi', u'consid', u'darl', u'down', u'food', u'wine', u'tourism']
[u'studi', u'boost', u'beach', u'manag', u'effort']
[u'suharto', u'court', u'fight', u'year', u'sentenc']
[u'support', u'plan', u'male', u'sexual', u'abus', u'victim']
[u'tamworth', u'consid', u'super', u'council', u'idea']
[u'tasmanian', u'injur', u'bull']
[u'teacher', u'join', u'nation', u'strike']
[u'tennant', u'creek', u'showcas', u'cultur']
[u'thai', u'life', u'expect', u'drop', u'aid', u'take', u'toll']
[u'thorp', u'cross', u'unchart', u'water']
[u'tourism', u'industri', u'look', u'better', u'time']
[u'tourism', u'zone', u'plan', u'draw', u'opposit']
[u'tourist', u'hospit', u'vehicl', u'rollov']
[u'train', u'exercis', u'help', u'tricki', u'rescu', u'pilot']
[u'twin', u'mourn', u'surgeri', u'fail']
[u'offici', u'claim', u'meet', u'report']
[u'union', u'intensifi', u'age', u'care', u'industri', u'action']
[u'captur', u'iraqi', u'offici']
[u'claim', u'iraq', u'untest', u'untru']
[u'increas', u'defenc', u'budget']
[u'reject', u'claim', u'sudan', u'plane', u'crash', u'fault']
[u'troop', u'seiz', u'cach', u'near', u'baghdad']
[u'valuat', u'rise', u'impact', u'rat']
[u'vaughan', u'come', u'good', u'protea']
[u'writer', u'nomin', u'romanc', u'award']
[u'govt', u'welcom', u'perth', u'foreshor', u'plan']
[u'wallabi', u'squad', u'best', u'year', u'jone']
[u'week', u'celebr', u'indigen', u'heritag']
[u'whale', u'entangl', u'cray', u'line']
[u'wild', u'bounti', u'consider']
[u'wine', u'industri', u'barossa']
[u'zimbabw', u'situat', u'agenda', u'bush', u'land']
[u'accident', u'dope', u'leav', u'face']
[u'launch', u'digit', u'card']
[u'actor', u'industri', u'drama', u'stay']
[u'reconsid', u'heroin', u'inject', u'room']
[u'toughen', u'vehicl', u'licenc']
[u'unemploy', u'drop', u'slight']
[u'african', u'union', u'ponder', u'peacekeep']
[u'airport', u'work', u'servic', u'resum']
[u'alcohol', u'restrict', u'decis', u'today']
[u'antiqu', u'textil', u'inspir', u'modern', u'fashion']
[u'anti', u'regim', u'protest', u'iran']
[u'armstrong', u'get', u'emot', u'team', u'time', u'trial']
[u'aust', u'architect', u'olymp', u'contract']
[u'babi', u'bronco', u'face', u'tough', u'test']
[u'baker', u'appeal']
[u'bangladesh', u'bowl', u'team']
[u'barca', u'ronaldinho', u'close', u'quaresma']
[u'beatti', u'canal', u'develop', u'approv']
[u'bendigo', u'fuel', u'price', u'rise']
[u'search', u'sizzl', u'artwork']
[u'anti', u'nuclear', u'protest', u'plan']
[u'black', u'widow', u'spider', u'improv', u'life']
[u'blast', u'near', u'moscow', u'restaur', u'kill', u'secur', u'expert']
[u'blue', u'continu', u'origin', u'prepar', u'forster']
[u'bomb', u'kill', u'children', u'philippin', u'game', u'stall']
[u'jump', u'move', u'train']
[u'brisban', u'firm', u'get', u'approv', u'test']
[u'brumbi', u'announc', u'gippsland', u'initi']
[u'budget', u'offer', u'mix', u'fortun', u'ratepay']
[u'crash', u'kill', u'hong', u'kong']
[u'bush', u'admit', u'secur', u'problem', u'iraq']
[u'bushfir', u'probe', u'hear', u'cooma', u'submiss']
[u'bush', u'outlin', u'common', u'sens', u'aid', u'strategi']
[u'busi', u'warn', u'letter', u'scam']
[u'byron', u'council', u'get', u'rat', u'rise', u'approv']
[u'import']
[u'coast', u'cruis', u'ship', u'termin']
[u'countri', u'tourism', u'boost']
[u'inject', u'room', u'trial', u'extend']
[u'camel', u'trekker', u'peel', u'orang']
[u'canada', u'legal', u'marijuana']
[u'candl', u'reconcili', u'captur', u'film']
[u'cane', u'wast', u'cattl', u'fee', u'earn', u'prize']
[u'care', u'elder', u'state', u'health', u'board']
[u'carr', u'launch', u'scheme', u'risk', u'youth']
[u'carr', u'take', u'icac', u'recommend', u'serious']
[u'censur', u'motion', u'pass', u'holloway']
[u'central', u'polic', u'join', u'protest']
[u'chang', u'afoot', u'snapper', u'closur']
[u'charlton', u'bank', u'rais', u'fund']
[u'chees', u'toast', u'welsh', u'truck', u'blaze']
[u'china', u'flood', u'toll', u'doubl', u'offici', u'report']
[u'club', u'rethink', u'communiti', u'support']
[u'communiti', u'loser', u'poki', u'plan']
[u'concern', u'propos', u'child', u'killer', u'legisl']
[u'condom', u'avail', u'school', u'say', u'doctor']
[u'cook', u'look', u'green', u'aussi']
[u'council', u'consid', u'restructur', u'option']
[u'council', u'hop', u'share', u'rescu', u'fund']
[u'crash', u'spark', u'polic', u'road', u'safeti', u'remind']
[u'crean', u'press', u'flesh', u'bundaberg']
[u'croatian', u'vukovar', u'suspect', u'plead', u'guilti']
[u'croker', u'mission', u'reunion', u'darwin']
[u'crow', u'hird', u'lloyd', u'danger']
[u'dan', u'jone', u'montgomeri']
[u'debat', u'heat', u'radioact', u'dump', u'plan']
[u'docker', u'dump', u'croad']
[u'dollar', u'slump', u'global', u'profit', u'take']
[u'dont', u'send', u'iraqi', u'refuge']
[u'duck', u'fair', u'game', u'tasmania']
[u'east', u'eden', u'hit', u'purpl', u'patch']
[u'confid', u'recaptur', u'mida', u'touch']
[u'emerton', u'sign', u'blackburn']
[u'employ', u'drop', u'spark', u'rat', u'talk']
[u'expert', u'home', u'hospit', u'virus']
[u'farmer', u'share', u'drought']
[u'fashion', u'design', u'show', u'ancient', u'fabric', u'nation']
[u'arrest', u'saddam']
[u'festiv', u'pull', u'irv', u'film']
[u'figur', u'salt', u'wound', u'farmer']
[u'inquiri', u'hear', u'evid', u'mismanag']
[u'food', u'voucher', u'avail', u'struggl', u'farmer']
[u'fund', u'boost', u'univers', u'campus']
[u'fire', u'power', u'station', u'plan', u'southern']
[u'gallop', u'tell', u'barnett']
[u'govt', u'clear', u'eavesdrop', u'claim']
[u'govt', u'oppos', u'death', u'penalti', u'hick']
[u'govt', u'step', u'iraq', u'claim', u'rudd']
[u'graham', u'clear', u'world', u'championship']
[u'green', u'get', u'wake']
[u'green', u'brisban', u'inject', u'room']
[u'har', u'race', u'accid', u'investig']
[u'health', u'board', u'chief', u'defend', u'peppertre', u'lodg', u'closur']
[u'hid', u'take', u'offenc', u'bore', u'comment']
[u'hobart', u'vibrant', u'bore', u'mayor']
[u'hope', u'cours', u'bolster', u'indigen', u'student']
[u'hope', u'fossil', u'excav', u'rare', u'speci']
[u'hotel', u'manag', u'admit', u'camera', u'ladi', u'toilet']
[u'howard', u'mislead', u'aust', u'iraq', u'rudd']
[u'huge', u'increas', u'region', u'migrat', u'visa']
[u'humpback', u'surf', u'miss', u'whale']
[u'icac', u'recommend', u'fraud', u'charg']
[u'indigen', u'station', u'worker', u'skill', u'upgrad']
[u'industri', u'action', u'moot', u'jail']
[u'injur', u'hamilton', u'mere', u'satisfi', u'tour', u'ride']
[u'iraq', u'case', u'stand', u'africa', u'link']
[u'jobless', u'rate', u'increas']
[u'network', u'hand', u'emerg', u'fund']
[u'jone', u'criticis', u'tinker', u'test', u'team']
[u'jone']
[u'kanimbla', u'home', u'duti']
[u'age', u'care', u'facil', u'open', u'say', u'shadow', u'minist']
[u'park', u'protest', u'escap', u'caution']
[u'kewel', u'complet', u'liverpool']
[u'latham', u'dump', u'nation', u'open']
[u'leed', u'boss', u'accus', u'kewel', u'hold', u'club', u'ransom']
[u'lefti', u'monti', u'exud', u'confid', u'loch', u'lomond']
[u'mallon', u'look', u'lpga', u'win']
[u'mallon', u'look', u'lpga', u'win', u'canadian', u'soil']
[u'arrest', u'samurai', u'sword', u'stand']
[u'arrest', u'wollongong', u'murder']
[u'charg', u'attempt', u'murder', u'arson']
[u'maroon', u'look', u'amend']
[u'marsh', u'hit', u'english', u'pitch']
[u'matilda', u'contest', u'nation', u'tournament']
[u'mcdonald', u'get', u'clear']
[u'medic', u'student', u'group', u'reject', u'plan']
[u'mine', u'pressur', u'rise', u'dollar', u'economist']
[u'minist', u'tip', u'swing', u'away']
[u'model', u'train', u'driver', u'charg', u'drink', u'drive']
[u'modest', u'environment', u'flow', u'predict', u'murray']
[u'bali', u'suspect', u'face', u'trial']
[u'highlight', u'drought', u'impact', u'wimmera']
[u'nato', u'share', u'respons', u'iraq', u'frank']
[u'servic', u'link', u'south', u'east', u'tamworth']
[u'trial', u'accus', u'cocain', u'import']
[u'nick', u'whitlam', u'win', u'appeal']
[u'korea', u'warn', u'dark', u'cloud', u'gather']
[u'north', u'korea', u'desper', u'state', u'ambassador']
[u'north', u'korea', u'prepar']
[u'novak', u'gaudio', u'overshadow', u'feder']
[u'govt', u'consid', u'council', u'clean', u'fund']
[u'jobless', u'rate', u'slight']
[u'record', u'slight', u'unemploy', u'rise']
[u'bangladesh', u'game', u'begin', u'marrara']
[u'nurs', u'tell', u'return', u'indigen', u'communiti']
[u'obrien', u'look', u'strike', u'deal', u'labor', u'right']
[u'offici', u'find', u'iraqi']
[u'deliveri', u'turn', u'delug']
[u'withhold', u'iraq', u'info']
[u'osama', u'inspir', u'bali', u'bomb']
[u'learn', u'bungl', u'asda']
[u'pedestrian', u'accid', u'put', u'woman', u'hospit']
[u'perri', u'head', u'field', u'milwauke', u'open']
[u'perth', u'strike', u'like', u'continu']
[u'perth', u'warn', u'get', u'dull']
[u'phelp', u'aim', u'upstag', u'thorp']
[u'pimpl', u'contain', u'miner', u'sit']
[u'pirat', u'sale', u'billion', u'industri']
[u'pluto', u'spring', u'gassi', u'surpris']
[u'polic', u'believ', u'recent', u'break', u'relat']
[u'polic', u'call', u'break', u'picket']
[u'polic', u'offic', u'push', u'pay', u'overtim']
[u'prison', u'worker', u'consid', u'industri', u'action']
[u'push', u'abolish', u'state', u'govern']
[u'health', u'respond', u'methadon', u'clinic', u'concern']
[u'risk', u'lose', u'lucrat', u'tuna', u'fleet']
[u'quarri', u'caus', u'concern', u'resid']
[u'raaf', u'blackhawk', u'make', u'emerg', u'land']
[u'ralf', u'schumach', u'set', u'pace']
[u'rapist', u'hold', u'indefinit']
[u'rate', u'increas', u'unjustifi', u'oppn']
[u'region', u'growth', u'impedi']
[u'renison', u'bell', u'give', u'longer', u'balanc', u'book']
[u'rescuer', u'lose', u'tangl', u'whale']
[u'research', u'gene', u'cancer', u'fight']
[u'research', u'show', u'increas', u'pakistan']
[u'resid', u'dental', u'woe', u'bite', u'hard']
[u'resourc', u'sector', u'lift']
[u'offer', u'mildura', u'assur']
[u'rise', u'dollar', u'spark', u'grim', u'predict', u'farm']
[u'rossi', u'throw', u'futur', u'question']
[u'continu', u'phillip', u'breakaway', u'plan']
[u'rower', u'eye', u'world', u'championship']
[u'erupt', u'kewel', u'move', u'liverpool']
[u'runaway', u'tanker', u'prove', u'cost', u'compani']
[u'russian', u'expert', u'kill', u'defus', u'bomb']
[u'anglican', u'church', u'begin', u'abus', u'inquiri']
[u'saint', u'challeng', u'baker', u'suspens']
[u'sar', u'suspect', u'wodonga', u'hospit']
[u'abus', u'report', u'tabl', u'parliament']
[u'secur', u'pact', u'start', u'militari', u'train']
[u'separ', u'guatemalan', u'twin', u'suffer', u'setback']
[u'sight', u'humpback', u'miss', u'whale']
[u'slovak', u'turn', u'husarova', u'hantuchova']
[u'slow', u'respons', u'drought']
[u'social', u'unrest', u'gag', u'french', u'actor']
[u'solomon', u'vote', u'intervent']
[u'solomon', u'villag', u'attack', u'report']
[u'speed', u'limit', u'reduct', u'consider']
[u'springbok', u'chang']
[u'state', u'demand', u'school', u'fund', u'model']
[u'state', u'cooper', u'school', u'curriculum']
[u'strict', u'criteria', u'elector', u'boundari', u'chang']
[u'strike', u'driver', u'defi', u'order']
[u'support', u'mount', u'shire', u'merger']
[u'sydney', u'airport', u'job']
[u'taiwan', u'sino', u'trigger', u'ambassador']
[u'talk', u'resum', u'nuclear', u'weapon', u'trade']
[u'talli', u'back', u'team', u'select']
[u'jobless', u'rate']
[u'teen', u'charg', u'attempt', u'murder', u'babi']
[u'texa', u'execut', u'shoot', u'wife', u'babi', u'divorc']
[u'thai', u'vow', u'weed', u'corrupt', u'cop']
[u'soldier', u'kill', u'iraq']
[u'player', u'split', u'british', u'open', u'lead', u'cours']
[u'tough', u'crow', u'cinderella']
[u'tourism', u'boom', u'slow', u'bacon']
[u'trade', u'boost', u'eyr', u'peninsula']
[u'tyson', u'reveal', u'pain', u'documentari']
[u'ministri', u'name', u'possibl', u'sourc']
[u'toddler', u'kill', u'cafe', u'gunfight']
[u'ulihrach', u'clear', u'drug', u'charg']
[u'unemploy', u'rate', u'rise']
[u'unemploy', u'rise']
[u'expect', u'small', u'fund', u'chang']
[u'union', u'call', u'centrelink', u'secur', u'guard']
[u'fund', u'infrastructur', u'palestinian', u'area']
[u'postal', u'deliv', u'yellow', u'pena']
[u'credibl', u'iraq', u'powel']
[u'propos', u'nation', u'crime', u'report', u'servic']
[u'unemploy', u'rate', u'remain', u'steadi']
[u'viduka', u'sale', u'leed', u'chief']
[u'face', u'possibl', u'power', u'blackout']
[u'wagga', u'polic', u'station', u'identifi', u'high', u'prioriti']
[u'govt', u'urg', u'expand', u'wild', u'bounti', u'trial']
[u'jobless', u'rate', u'improv']
[u'jobless', u'rate', u'improv']
[u'plagu', u'salin']
[u'woman', u'court', u'cattl', u'duf', u'charg']
[u'woodward', u'name', u'squad', u'england', u'warm']
[u'workplac', u'flexibl', u'way']
[u'sar', u'impact', u'consid', u'mild', u'temporari']
[u'academi', u'honour', u'muralitharan']
[u'adler', u'stand', u'trial', u'charg']
[u'legend', u'hafey', u'hospit', u'collaps']
[u'anglican', u'investig', u'allow', u'victim', u'eas']
[u'annan', u'plead', u'arm', u'african', u'conflict']
[u'reject', u'call', u'rewrit', u'origin', u'record', u'book']
[u'arm', u'polic', u'confront', u'solomon', u'milit']
[u'armstrong', u'back', u'hockey', u'tourism', u'claim']
[u'defi', u'wall', u'street', u'finish', u'steadi']
[u'attack', u'stab', u'seven', u'moroccan', u'camp']
[u'australian', u'tour', u'overal', u'stand']
[u'award', u'honour', u'polic', u'citizen']
[u'call', u'greater', u'protect', u'worker']
[u'bacon', u'make', u'plea', u'behalf', u'teenag', u'face']
[u'bangladesh', u'fight', u'quick', u'wicket']
[u'bangladesh', u'make', u'slow', u'start', u'darwin']
[u'bangladesh', u'struggl', u'run', u'darwin']
[u'prolong', u'career', u'warn']
[u'basebal', u'player', u'fin', u'club', u'sausag']
[u'beef', u'dairi', u'produc', u'aggriev', u'trade', u'snub']
[u'behead', u'accus', u'killer', u'parent', u'japanes', u'minist']
[u'bichel', u'defend', u'bangladesh', u'test', u'seri']
[u'blair', u'visit', u'east', u'asia', u'week']
[u'blake', u'take', u'lead', u'milwauke', u'open']
[u'blue', u'mountain', u'bushwalk', u'rescu']
[u'blue', u'ribbon', u'picket', u'remain']
[u'blue', u'unchang', u'squad', u'perth', u'trip']
[u'bombala', u'council', u'oppos', u'merger']
[u'bomber', u'face', u'crucial', u'match', u'crow']
[u'bomber', u'recal', u'watson', u'crow', u'clash']
[u'brazil', u'presid', u'call', u'intern', u'secur']
[u'britain', u'hold', u'talk', u'guantanamo', u'suspect']
[u'brogden', u'public', u'feel', u'inject', u'room']
[u'break', u'hill', u'jobless', u'rate', u'drop']
[u'bulldog', u'open', u'lead', u'babi', u'bronco']
[u'bulldog', u'thrash', u'babi', u'bronco']
[u'bush', u'accus', u'mugab', u'govern']
[u'bush', u'arriv', u'uganda', u'whirlwind', u'visit']
[u'bushfir', u'inquiri', u'hear', u'critic', u'park']
[u'bush', u'tour', u'turn', u'focus', u'aid']
[u'bush', u'vow', u'push', u'ahead', u'iraq']
[u'buyer', u'show']
[u'coordin', u'rugbi', u'leagu', u'insur']
[u'cancer', u'centr', u'take', u'extra', u'staff', u'address']
[u'carr', u'govt', u'warn', u'judg', u'accus', u'jone']
[u'worker', u'strike']
[u'caution', u'air', u'train', u'fund', u'offer']
[u'choisir', u'finish', u'second', u'juli']
[u'approv', u'iraq', u'uranium', u'claim', u'bush']
[u'claim', u'divert', u'aid', u'fund', u'anthrax']
[u'cochran', u'succumb', u'ankl', u'injuri']
[u'communiti', u'bank', u'plan', u'move', u'ahead']
[u'concern', u'air', u'rise', u'vehicl', u'search', u'fee']
[u'concret', u'crush', u'save', u'council', u'money']
[u'connolli', u'support', u'crackdown', u'swear']
[u'coongi', u'lake', u'nation', u'park']
[u'council', u'appoint', u'general', u'manag']
[u'council', u'rate', u'rise']
[u'court', u'hear', u'slaveri', u'charg']
[u'crean', u'target', u'health', u'north', u'tour']
[u'crew', u'attempt', u'rescu', u'strand', u'walker']
[u'crime', u'look', u'possibl', u'evid', u'bryant', u'case']
[u'crisi', u'meet', u'hold', u'film', u'job']
[u'crow', u'crush', u'bomber']
[u'crow', u'crush', u'bomber', u'lose', u'carey']
[u'cwealth', u'push', u'disabl', u'educ']
[u'danish', u'forc', u'iraq', u'arm', u'snow', u'shovel']
[u'death', u'toll', u'china', u'flood', u'continu', u'rise']
[u'debat', u'erupt', u'primari', u'industri', u'fund']
[u'delta', u'goodrem', u'diagnos', u'cancer']
[u'diana', u'fund', u'freez', u'suit', u'threat']
[u'disabl', u'servic', u'manag', u'sentenc', u'fals']
[u'doctor', u'offer', u'bulk', u'bill', u'drought', u'victim']
[u'doctor', u'bank', u'blood', u'clot', u'drug']
[u'doctor', u'use', u'store', u'drill', u'brain', u'surgeri']
[u'driver', u'urg', u'honk', u'basslink', u'green', u'ban']
[u'educ', u'cours', u'consid', u'indigen', u'student']
[u'hold', u'clubhous', u'lead', u'scottish', u'open']
[u'famili', u'bakeri']
[u'feder', u'final', u'crack', u'swiss', u'open', u'quarter', u'final']
[u'homebuy', u'cold', u'latham']
[u'fishermen', u'offer', u'qualifi', u'support', u'tuna']
[u'fletcher', u'pass', u'fit', u'test']
[u'arrest', u'slaveri', u'raid']
[u'charg', u'relat', u'slaveri']
[u'french', u'polynesia', u'second', u'senat']
[u'fund', u'announc', u'bushfir', u'recoveri']
[u'fund', u'allow', u'indigen', u'cultur', u'research']
[u'launch', u'stabl', u'trust']
[u'geraldton', u'host', u'astronomi', u'gather']
[u'goosen', u'woosnam', u'scottish', u'open']
[u'govt', u'wont', u'chang', u'mobil', u'phone', u'jam', u'law']
[u'urg', u'help', u'drought', u'victim']
[u'grave', u'fear', u'race', u'bush']
[u'hafey', u'stabl', u'condit', u'collaps']
[u'harri', u'potter', u'fan', u'magic', u'set', u'hous', u'ablaz']
[u'health', u'servic', u'defend', u'lodg', u'closur']
[u'health', u'servic', u'offer', u'peppertre', u'lodg', u'assur']
[u'home', u'loan', u'approv', u'rise']
[u'hospit', u'plan', u'boost', u'cancer', u'treatment', u'staff']
[u'howard', u'meet', u'palestinian', u'deleg']
[u'howard', u'remain', u'defiant', u'iraq', u'intellig']
[u'hundr', u'greet', u'ship', u'australia']
[u'improv', u'servic', u'schedul', u'horizon']
[u'indonesia', u'arrest', u'suspect']
[u'indonesian', u'troop', u'kill', u'aceh', u'rebel']
[u'industri', u'action', u'affect', u'maker']
[u'iraq', u'intellig', u'failur', u'extraordinari', u'democrat']
[u'iraqi', u'swimmer', u'archer', u'enter', u'intern']
[u'iraq', u'verg', u'govern']
[u'rule', u'strike', u'threat']
[u'jackson', u'say', u'swear']
[u'jackson', u'say', u'swear']
[u'bomb', u'attack', u'foil', u'indonesian', u'polic']
[u'centr', u'offer', u'woman', u'work', u'brothel']
[u'jobless', u'rate', u'rise', u'albani', u'drop', u'bunburi']
[u'john', u'say', u'biggest', u'factor', u'decis', u'futur']
[u'john', u'say', u'biggest', u'factor', u'decis', u'futur']
[u'kewel', u'deliv', u'part', u'shoot', u'leed']
[u'kimberley', u'mammal', u'survey', u'long', u'time', u'come']
[u'lewi', u'say', u'john', u'origin', u'greatest']
[u'lifelin', u'riverland', u'peach', u'grower']
[u'lion', u'hawk', u'chase', u'vital', u'point']
[u'lion', u'lose', u'mcdonald', u'hawk', u'clash']
[u'mailman', u'win', u'naidoc', u'honour']
[u'manag', u'plan', u'moot', u'riverland', u'wine', u'industri']
[u'centr', u'sieg', u'receiv', u'psychiatr']
[u'charg', u'samurai', u'sword', u'stand']
[u'face', u'charg', u'whale', u'swim']
[u'kill', u'injur', u'accid']
[u'face', u'court', u'murder', u'charg']
[u'mayor', u'push', u'case', u'contain', u'termin']
[u'west', u'jobless', u'rate', u'rise']
[u'mine', u'compani', u'order', u'work', u'hour']
[u'mine', u'compani', u'say', u'expans', u'critic']
[u'minist', u'defend', u'communiti', u'amidst', u'nurs', u'wrangl']
[u'minist', u'urg', u'meet', u'highway', u'talk']
[u'miss', u'metr', u'python', u'flush']
[u'mix', u'latest', u'jobless', u'figur']
[u'mobil', u'phone', u'mosquito']
[u'burrup', u'work', u'underway']
[u'monitor', u'bluefin', u'tuna', u'fisheri']
[u'mourner', u'rememb', u'rise', u'melbourn']
[u'mourner', u'rememb', u'collingwood', u'great']
[u'rebat', u'move']
[u'nasa', u'find', u'oldest', u'planet']
[u'nazi', u'prosecutor', u'shawcross', u'die', u'age']
[u'neverfail', u'board', u'back', u'coke', u'takeov']
[u'newcastl', u'enrol', u'hec', u'spot']
[u'research', u'spanner', u'crab', u'industri']
[u'govt', u'offer', u'perliya', u'assur']
[u'train', u'driver', u'clear', u'misconduct']
[u'ntini', u'spell', u'crush', u'zimbabw']
[u'nuclear', u'dump', u'debat', u'continu']
[u'obrien', u'quit', u'leav', u'preselect']
[u'offer', u'spark', u'austoft', u'walkout']
[u'offici', u'kill', u'china', u'flood']
[u'pakistan', u'bomb', u'blast', u'kill']
[u'palestinian', u'demonstr', u'demand', u'releas']
[u'park', u'remain', u'hospit', u'site', u'possibl']
[u'peac', u'head', u'indian', u'capit']
[u'perth', u'strike', u'continu']
[u'plan', u'chang', u'tip', u'coastal', u'develop']
[u'plan', u'rail', u'passeng', u'servic', u'track']
[u'expect', u'hick', u'releas', u'guilti']
[u'say', u'korea', u'resort']
[u'poem', u'author', u'appear', u'snowtown', u'trial']
[u'polic', u'miss', u'concern']
[u'polic', u'probe', u'cane', u'train', u'accid']
[u'polic', u'seek', u'summon', u'alleg', u'picket', u'violenc']
[u'polic', u'probe', u'fatal', u'hous']
[u'powel', u'deni', u'intellig', u'fals']
[u'public', u'input', u'seek', u'alcohol', u'summit']
[u'public', u'input', u'seek', u'merger', u'debat']
[u'publish', u'scrap', u'mutant', u'superhero', u'diana']
[u'push', u'gold', u'coast', u'drug', u'inject', u'room']
[u'minist', u'seek', u'revers', u'japanes', u'beef']
[u'offend', u'give', u'suspend', u'sentenc']
[u'lead', u'nation', u'school', u'worker', u'screen']
[u'raaf', u'investig', u'blackhawk', u'crash']
[u'rain', u'offer', u'water', u'cart', u'repriev']
[u'reduc', u'rate', u'dollar', u'tatiara']
[u'region', u'urg', u'draft', u'industri']
[u'releas', u'whale', u'safe']
[u'rembrandt', u'sell', u'year', u'hide']
[u'report', u'claim', u'region', u'busi', u'potenti']
[u'report', u'warn', u'need', u'control']
[u'rescu', u'crew', u'work', u'free', u'person', u'trap', u'bus']
[u'rescu', u'worker', u'free', u'trap', u'bus']
[u'rescu', u'work', u'free', u'trap', u'bus']
[u'resid', u'outrag', u'rate', u'rise']
[u'resid', u'want', u'bush', u'nurs', u'build', u'retain']
[u'ronaldinho', u'wait', u'deal', u'join']
[u'ruddock', u'call', u'stop', u'student', u'deport']
[u'ruddock', u'dark', u'girl', u'plight']
[u'salin', u'woe', u'cost']
[u'school', u'secur', u'guard', u'stab']
[u'search', u'suspend', u'victim', u'bangladesh', u'ferri']
[u'sharon', u'visit', u'month', u'offici']
[u'shorter', u'queue', u'central']
[u'simpson', u'desert', u'bloom', u'rain']
[u'centuri', u'mosqu', u'open', u'granada']
[u'smith', u'court', u'case', u'adjourn']
[u'snapback', u'beef', u'tariff', u'agenda', u'minist', u'japan']
[u'solomon', u'pois', u'allow', u'intervent']
[u'soorley', u'receiv', u'opposit', u'move']
[u'sorenstam', u'withdraw', u'bowi', u'lead', u'canadian', u'open']
[u'sptafl']
[u'studi', u'find', u'pirat', u'music', u'increas']
[u'swim', u'trainer', u'issu', u'caus', u'wave']
[u'cut', u'enrol', u'hec', u'place']
[u'senat', u'preselect', u'threat', u'split', u'labor']
[u'teen', u'coma', u'respond']
[u'test', u'cricket', u'honour', u'sydney']
[u'timmin', u'close', u'deal', u'dragon']
[u'rocker', u'converg', u'central', u'australia']
[u'tourism', u'group', u'welcom', u'rugbi', u'world', u'spin', u'off']
[u'compani', u'launch', u'librarian', u'action', u'figur']
[u'troop', u'iraq', u'year', u'frank']
[u'tuna', u'farm', u'plan']
[u'kill', u'injur', u'karachi', u'blast']
[u'union', u'say', u'polic', u'offic', u'fear', u'sue']
[u'tank', u'fire', u'time']
[u'vaughan', u'eye', u'test', u'captainci']
[u'govt', u'promis', u'inquest', u'train', u'accid']
[u'water', u'author', u'reject', u'committe', u'review', u'warn']
[u'west', u'look', u'repeat', u'success']
[u'woman', u'clear', u'have', u'sar']
[u'woman', u'face', u'court', u'solicit', u'murder', u'charg']
[u'women', u'ask', u'leav', u'courtroom']
[u'wooli', u'safeway', u'admit', u'sell', u'product']
[u'worker', u'face', u'uncertain', u'futur']
[u'kill', u'burundi', u'rebel', u'assault', u'offici']
[u'abduct', u'accus', u'plan', u'offenc', u'court', u'hear']
[u'aborigin', u'communiti', u'call', u'action', u'amen']
[u'separ', u'iranian', u'conjoin', u'twin']
[u'anzac', u'compulsori', u'public', u'school']
[u'arafat', u'sidelin', u'progress', u'middl']
[u'armstrong', u'take', u'easi', u'ahead', u'alp']
[u'aussi', u'stun', u'petacchi', u'power']
[u'bangladesh', u'darwin']
[u'beatti', u'call', u'probe', u'labor']
[u'berlin', u'gear', u'techno', u'sound', u'annual', u'love']
[u'blair', u'face', u'fresh', u'dodgi', u'dossier', u'claim']
[u'blair', u'open', u'confer', u'urg', u'social', u'justic']
[u'blake', u'cling', u'shoot', u'lead', u'milwauke']
[u'bush', u'popular', u'slip', u'amid', u'casualti', u'iraq']
[u'bush', u'talk', u'tough', u'terror', u'taylor']
[u'carey', u'clear', u'injuri']
[u'childcar', u'need', u'fund', u'inject', u'confer', u'tell']
[u'chilean', u'expert', u'blob', u'sperm', u'whale']
[u'china', u'take', u'experi', u'talent', u'barcelona']
[u'chines', u'polic', u'arrest', u'traffic', u'women']
[u'choisir', u'sell', u'coolmor', u'stud']
[u'boss', u'take', u'blame', u'fals', u'intellig']
[u'claim', u'crop', u'contamin', u'happen', u'aust']
[u'claim', u'govt', u'chang', u'toughen', u'enrol']
[u'conjoin', u'twin', u'doctor', u'discourag', u'similar']
[u'coughlin', u'sink', u'inki']
[u'coulthard', u'chang', u'eccleston']
[u'daniel', u'lead', u'lpga', u'canadian', u'open']
[u'death', u'toll', u'bangladesh', u'ferri', u'disast']
[u'donor', u'urg', u'direct', u'chariti', u'diana']
[u'dung', u'throw', u'challeng', u'apart']
[u'eagl', u'annihil', u'blue']
[u'eagl', u'annihil', u'blue', u'swan', u'thump', u'saint']
[u'kill', u'injur', u'kashmir', u'violenc']
[u'cruis', u'loch']
[u'emerton', u'prais', u'boss', u'souness']
[u'enceph', u'kill', u'children', u'india']
[u'england', u'loss', u'wallabi', u'macqueen']
[u'enron', u'file', u'bankruptci', u'plan']
[u'enron', u'plan', u'split', u'compani', u'emerg']
[u'failur', u'reveal', u'iraq', u'intellig', u'unusu']
[u'fan', u'price', u'beckham', u'real', u'madrid']
[u'feder', u'walk', u'swiss', u'semi']
[u'polic', u'commission', u'whitrod', u'die']
[u'weapon', u'chief', u'call', u'howard', u'resign']
[u'face', u'court', u'sydney', u'businessman']
[u'franc', u'carraz', u'reach', u'rhode', u'island', u'semi']
[u'geelong', u'surviv', u'catfight', u'dockland']
[u'geelong', u'surviv', u'dockland', u'catfight']
[u'govt', u'consid', u'stop', u'polic']
[u'hepburn', u'flip', u'travolta', u'dislik', u'meryl', u'streep']
[u'drug', u'financi', u'invest', u'research']
[u'india', u'pakistan', u'reopen', u'rout', u'border']
[u'indigen', u'leader', u'mcguiness', u'die']
[u'indonesian', u'polic', u'arrest', u'explos', u'bust']
[u'indonesian', u'troop', u'kill', u'rebel', u'aceh']
[u'iraqi', u'govern', u'council', u'hold', u'meet']
[u'islam', u'leader', u'condemn', u'suicid', u'bomb']
[u'italian', u'minist', u'resign', u'german', u'slur']
[u'italian', u'region', u'order', u'maiz', u'field', u'destroy']
[u'italian', u'promis', u'alpin', u'charg']
[u'team', u'hoogi']
[u'sami', u'sensat', u'wicket']
[u'japan', u'concern', u'eas', u'canada', u'beef']
[u'korea', u'agre', u'appropri', u'talk', u'nuclear']
[u'lapentti', u'overcom', u'nadal', u'swedish', u'marathon']
[u'latest', u'product', u'recal', u'publish', u'newspap']
[u'leicest', u'sign', u'ferdinand']
[u'liberia', u'high', u'bush', u'agenda']
[u'malthous', u'warn', u'rise', u'memori']
[u'die', u'hospit', u'collis']
[u'die', u'north', u'crash']
[u'shoot', u'birthday', u'parti', u'die']
[u'maori', u'leader', u'debat', u'beach', u'seab', u'ownership']
[u'maroon', u'rais', u'game', u'norton']
[u'mass', u'flood', u'affect', u'million', u'china']
[u'mayo', u'relish', u'tour', u'match', u'armstrong']
[u'media', u'group', u'reuter', u'sue', u'main', u'rival', u'patent']
[u'melbourn', u'wait', u'swim', u'verdict']
[u'mickelson', u'reject', u'critic', u'power', u'strategi']
[u'minardi', u'withdraw', u'threat', u'british', u'grand', u'prix']
[u'minor', u'convict', u'wipe', u'year']
[u'risk', u'starvat', u'liberia']
[u'mind', u'wmds', u'here', u'pistol']
[u'doubt', u'silverston', u'futur']
[u'feder', u'state', u'school', u'standard', u'unfair', u'govt']
[u'polic', u'launch', u'court', u'action', u'cfmeu', u'head']
[u'ombudsman', u'review', u'child', u'abus', u'claim']
[u'oppn', u'call', u'inquiri', u'slave', u'trade']
[u'panther', u'pull', u'point', u'clear']
[u'parliamentari', u'allow', u'increas', u'question']
[u'peru', u'fear', u'shin', u'path', u'return']
[u'petacchi', u'make', u'tour', u'breakaway', u'agoni']
[u'pie', u'strong', u'docker']
[u'pirat', u'simon', u'suspend', u'hit', u'sausag', u'mascot']
[u'pittman', u'hurtl', u'metr']
[u'polic', u'investig', u'alleg', u'stab', u'sydney']
[u'price', u'eye', u'british', u'open', u'spot']
[u'protea', u'score']
[u'protest', u'celebr', u'ireland', u'parad']
[u'real', u'confirm', u'geremi', u'chelsea', u'deal']
[u'real', u'madrid', u'offer', u'best', u'ronaldinho']
[u'resid', u'bushfir', u'avert']
[u'revel', u'turn', u'darwin', u'bass', u'grass']
[u'rossi', u'bayliss', u'donington']
[u'ruddock', u'urg', u'interven', u'salvador', u'girl']
[u'russian', u'polic', u'accus', u'tri', u'suppress']
[u'nat', u'oppos', u'telstra', u'sale']
[u'speaker', u'will', u'fund', u'constitut']
[u'sheahan', u'cop', u'year', u'dope']
[u'shuttl', u'treat', u'test', u'vehicl', u'panel']
[u'spanish', u'pool', u'fiesta', u'spark', u'countdown']
[u'sptnrl']
[u'state', u'prais', u'polic', u'commission']
[u'stop', u'blame', u'cwealth', u'state', u'burden', u'humphri']
[u'storm', u'conquer', u'cowboy']
[u'stormi', u'weather', u'wreak', u'havoc']
[u'swan', u'thump', u'saint']
[u'tasmania', u'experi', u'hotel', u'downturn']
[u'thorp', u'readi', u'england', u'recal', u'report']
[u'tiger', u'booki', u'darl']
[u'tour', u'miseri', u'australian', u'rider']
[u'tribut', u'flow', u'polic', u'commission']
[u'nation', u'form', u'guid']
[u'turkey', u'england', u'cooper', u'ahead', u'euro']
[u'host', u'springer', u'step', u'closer', u'senat']
[u'kill', u'hit', u'tree']
[u'injur', u'explos', u'manufactur']
[u'town', u'biggest', u'wast', u'produc']
[u'union', u'urgent', u'meet', u'log', u'plan']
[u'unit', u'church', u'vote', u'minist']
[u'bushwalk', u'north']
[u'intellig', u'confirm', u'north', u'korean', u'nuclear']
[u'scale', u'troop', u'falluja']
[u'soldier', u'wound', u'attack', u'iraqi', u'prison']
[u'stock', u'higher']
[u'compani', u'defend', u'sack', u'factori', u'worker']
[u'blame', u'union', u'manufactur', u'declin']
[u'vietnam', u'polic', u'bust', u'heroin', u'haul', u'rout', u'taiwan']
[u'virgin', u'blue', u'cours', u'provid']
[u'volleybal', u'level', u'china', u'test', u'seri']
[u'govt', u'okay', u'mine', u'expans', u'project']
[u'warn', u'issu', u'region', u'qualiti']
[u'warrior', u'hold', u'eagl']
[u'congo', u'govern', u'rebel', u'leader']
[u'beat', u'wallabi', u'bok']
[u'wild', u'wind', u'gust', u'whip', u'melbourn']
[u'woman', u'dead', u'daughter', u'critic', u'smash']
[u'bodi', u'recov', u'ferri', u'disast', u'state']
[u'sudanes', u'troop', u'rebel', u'kill', u'attack']
[u'kill', u'fall', u'river', u'indian', u'kashmir']
[u'russian', u'soldier', u'kill', u'chechnya', u'ambush']
[u'abdul', u'razzaq', u'skip', u'seri', u'bangladesh']
[u'indigen', u'employ', u'centr']
[u'adelaid', u'citi', u'shroud', u'heavi']
[u'american', u'keeper', u'howard', u'agre', u'join']
[u'releas', u'plan', u'rebuild', u'mount', u'stromlo']
[u'anwar', u'ibrahim', u'seek', u'bail', u'surgeri']
[u'armstrong', u'gear', u'crucial', u'lalp', u'dhuez', u'test']
[u'attend', u'anti', u'log', u'ralli']
[u'arrest', u'canadian', u'photograph', u'die', u'tehran']
[u'asian', u'cricket', u'council', u'offici', u'visit', u'kabul']
[u'aussi', u'spanish', u'king', u'admir']
[u'australia', u'beat', u'world', u'open']
[u'babi', u'thatcher', u'return', u'belgian']
[u'virenqu', u'claim', u'blood', u'alp']
[u'banger', u'grab', u'moral', u'boost']
[u'barca', u'cool', u'galla', u'deal']
[u'becker', u'tobin', u'durr', u'induct', u'tenni', u'hall', u'fame']
[u'belgium', u'scrap', u'controversi', u'crime']
[u'biaggi', u'stun', u'rossi', u'british', u'pole']
[u'bogus', u'journalist', u'arrest', u'vietnam']
[u'bok', u'hold', u'upset', u'victori']
[u'british', u'minist', u'back', u'iraq', u'niger', u'intellig']
[u'crash', u'kill', u'egypt']
[u'bush', u'keep', u'liberian', u'wait', u'troop', u'decis']
[u'bush', u'vow', u'stop', u'terrorist', u'africa', u'base']
[u'canadian', u'beef', u'stall', u'japan']
[u'carr', u'vow', u'home', u'renov', u'tape']
[u'child', u'group', u'welcom', u'abus', u'case', u'review']
[u'stop', u'iraq', u'nuclear', u'mention', u'earlier', u'speech']
[u'cook', u'roast', u'soft', u'petacchi']
[u'crowd', u'turnout', u'behav', u'bass', u'concert']
[u'custom', u'seiz', u'ecstasi', u'tablet', u'perth']
[u'dali', u'pull', u'scottish', u'open']
[u'daniel', u'inkster', u'tie', u'canadian', u'open', u'lead']
[u'death', u'toll', u'mount', u'sink', u'bangladesh']
[u'delay', u'hinder', u'garbag', u'electr', u'convers']
[u'democrat', u'question', u'hick', u'repatri', u'effort']
[u'diana', u'estat', u'threaten', u'legal', u'battl', u'report']
[u'doctor', u'hope', u'drug', u'trial', u'improv', u'blood', u'clot']
[u'dozen', u'miss', u'slide', u'china']
[u'duff', u'chelsea', u'bind', u'report']
[u'england', u'steamrol', u'south', u'africa']
[u'explos', u'militari', u'arsenal', u'russia', u'east']
[u'farmer', u'prawn', u'industri', u'reform']
[u'feder', u'march', u'swiss', u'final']
[u'pledg', u'increas', u'univers', u'teach']
[u'film', u'product', u'compani', u'win', u'small', u'busi']
[u'flintoff', u'allround', u'rat']
[u'british', u'cabinet', u'minist', u'urg', u'blair', u'quit']
[u'dope', u'offend', u'open', u'barca', u'world']
[u'fresh', u'violenc', u'congo', u'bunia', u'militia']
[u'georg', u'best', u'arrest', u'english', u'hotel']
[u'ginepri', u'melzer', u'final', u'newport']
[u'govt', u'doubl', u'indigen', u'employ', u'centr']
[u'harri', u'retain', u'super', u'lightweight', u'titl']
[u'homebuy', u'caution', u'vendor', u'financ', u'contract']
[u'hong', u'kong', u'crisi', u'fuel', u'anti', u'china', u'feel', u'taiwan']
[u'howard', u'head', u'asia']
[u'howard', u'start', u'asian', u'tour', u'amid', u'iraq', u'intellig']
[u'indian', u'underag', u'girl', u'traffic']
[u'indigen', u'centr', u'trebl']
[u'indonesian', u'travel', u'warn', u'upgrad', u'oppn']
[u'indonesia', u'deport', u'german', u'suspect', u'qaeda']
[u'indonesia', u'tri', u'minimis', u'aceh', u'right', u'abus']
[u'industri', u'action', u'affect', u'patient', u'care', u'mayn']
[u'iranian', u'twin', u'buri', u'grave']
[u'iraq', u'govern', u'council', u'hold', u'meet']
[u'iraqi', u'govern', u'council', u'meet', u'inaugur', u'session']
[u'israel', u'threaten', u'measur', u'arafat']
[u'japan', u'beat', u'mexico', u'qualifi', u'women']
[u'joey', u'doubt', u'ravag', u'blue']
[u'joey', u'join', u'blue', u'brisban']
[u'kuwaiti', u'emir', u'appoint']
[u'labor', u'pledg', u'addit', u'lectur']
[u'lion', u'edg', u'hawk']
[u'loan', u'scheme', u'give', u'record', u'number', u'farmer']
[u'hospit', u'stab', u'adelaid']
[u'melbourn', u'hand', u'world', u'swim', u'champ']
[u'melbourn', u'win', u'swim']
[u'melb', u'win', u'host', u'intern', u'brain', u'map']
[u'step', u'particip', u'sexual', u'assault']
[u'million', u'evacu', u'indian', u'flood']
[u'nation', u'diabet', u'week', u'focus', u'earli', u'detect']
[u'navi', u'launch', u'ronald', u'reagan', u'aircraft', u'carrier']
[u'nelson', u'reject', u'labor', u'tertiari', u'plan']
[u'council', u'declar', u'fall', u'saddam', u'nation']
[u'nieto', u'edg', u'poggiali', u'british']
[u'korea', u'pose', u'greater', u'threat', u'iraq', u'clinton']
[u'chanc', u'reach', u'tour', u'say', u'petacchi']
[u'guarante', u'north', u'korea', u'intellig', u'accuraci', u'hill']
[u'club', u'fight', u'poki', u'hike']
[u'direct', u'increas', u'poki', u'hospit']
[u'ombudsman', u'probe', u'polic', u'power']
[u'oppn', u'criticis', u'illeg', u'handgun', u'cultur']
[u'polic', u'launch', u'investig', u'parti']
[u'polic', u'seiz', u'drug', u'worth', u'warehous', u'raid']
[u'omalley', u'storm', u'loch', u'lomond', u'content']
[u'dead', u'injur', u'crash', u'inland']
[u'plant', u'run', u'month', u'sigma']
[u'perri', u'shoot', u'lead', u'milwauke']
[u'peruvian', u'troop', u'hunt', u'suspect', u'shin', u'path']
[u'phelp', u'prove', u'world', u'stage']
[u'bureaucrat', u'blame', u'intellig', u'error']
[u'talk', u'counter', u'terror', u'philippin']
[u'polic', u'tri', u'identifi', u'victim']
[u'power', u'roo', u'demon']
[u'pressur', u'port', u'regain', u'spot']
[u'protest', u'gather', u'log']
[u'parliament', u'interven', u'post']
[u'raider', u'roll', u'dragon']
[u'raver', u'groov', u'berlin', u'love', u'parad']
[u'rebel', u'launch', u'attack', u'burundi', u'capit']
[u'reid', u'say', u'leed', u'readi', u'spend']
[u'relianc', u'junk', u'food', u'blame', u'rise', u'obes']
[u'resid', u'report', u'strong', u'explos', u'flashpoint']
[u'roger', u'impress', u'alpin', u'debut']
[u'rotavirus', u'infect', u'children']
[u'rumsfeld', u'predict', u'violent', u'summer', u'troop']
[u'russian', u'sniffer', u'kill', u'alleg', u'contract']
[u'govt', u'unsur', u'effect', u'water', u'restrict']
[u'nat', u'launch', u'region', u'voter']
[u'oppn', u'concern', u'alleg', u'surround']
[u'injur', u'accid']
[u'singapor', u'take', u'plung', u'allow', u'bunge', u'jump']
[u'small', u'scale', u'fight', u'take', u'place', u'lao', u'militari']
[u'smith', u'tell', u'south', u'africa', u'rememb', u'hurt']
[u'south', u'africa', u'record', u'upset', u'australia']
[u'spanish', u'young', u'win', u'race']
[u'sptafl']
[u'support', u'drop', u'bush', u'perform', u'iraq', u'poll']
[u'swimmer', u'celebr', u'melbourn']
[u'teddi', u'bear', u'fetch', u'euro', u'auction']
[u'tiger', u'bite', u'shark']
[u'time', u'armstrong', u'warn', u'tour', u'rival']
[u'tinnitus', u'research', u'studi', u'impact', u'attent']
[u'tuqiri', u'hand', u'yellow', u'card']
[u'dead', u'british', u'crash']
[u'palestinian', u'injur', u'captur', u'isra']
[u'underwat', u'flinder', u'island', u'electr', u'grid']
[u'unionist', u'critic', u'opp', u'support', u'govt']
[u'unit', u'ronaldinho', u'report']
[u'unit', u'church', u'presid', u'hit', u'iraq']
[u'launch', u'iraq', u'crackdown', u'ahead', u'date']
[u'warn', u'north', u'korean', u'missil', u'aim', u'japan']
[u'govt', u'call', u'urgent', u'meet', u'resolv']
[u'investig', u'probe', u'caus', u'mandurah', u'hous']
[u'wallabi', u'good', u'jone']
[u'ward', u'closur', u'wont', u'affect', u'care', u'children', u'hospit']
[u'waugh', u'arriv', u'darwin']
[u'waugh', u'upbeat', u'darwin', u'test', u'debut']
[u'world', u'lead', u'stargaz', u'gather', u'sydney']
[u'zabaleta', u'battl', u'beat', u'moya']
[u'job', u'lose', u'brand', u'sellout']
[u'aborigin', u'activist', u'rape', u'charg']
[u'acoss', u'call', u'fund', u'boost', u'famili']
[u'africa', u'link', u'remov', u'bush', u'speech']
[u'airport', u'staff', u'threaten', u'world', u'action']
[u'alleg', u'qaeda', u'group', u'claim', u'iraq', u'attack', u'report']
[u'ford', u'deal', u'fall']
[u'share', u'plung', u'ford', u'deal', u'fall']
[u'american', u'victim', u'run', u'bull']
[u'set', u'price', u'latest', u'share', u'offer']
[u'meet', u'plan', u'basslink', u'issu']
[u'anti', u'nuclear', u'protest', u'head', u'silverton']
[u'anwar', u'ibrahim', u'bail', u'hear', u'postpon']
[u'armstrong', u'tour', u'rival', u'attack']
[u'armstrong', u'take', u'yellow', u'mayo', u'attack']
[u'arson', u'blame', u'grafton', u'fire']
[u'attack', u'liberian', u'armi', u'alert']
[u'aussi', u'continu', u'netbal', u'world', u'charg']
[u'aussi', u'edg', u'robot', u'soccer', u'world']
[u'aust', u'want', u'expat', u'solomon', u'job']
[u'awol', u'swim', u'coach', u'sutton', u'ax']
[u'batistuta', u'think', u'retir']
[u'beatti', u'rule', u'inject', u'room', u'trial']
[u'best', u'booz', u'report']
[u'band', u'legend', u'benni', u'carter', u'dead']
[u'crowd', u'turn', u'oppos', u'hospit', u'park', u'plan']
[u'blast', u'baghdad', u'kill', u'iraqi', u'wound']
[u'blast', u'rock', u'indonesian', u'parliament']
[u'bodi', u'collinsval', u'hous']
[u'bollywood', u'film', u'break', u'barrier']
[u'injur', u'attack']
[u'british', u'inquiri', u'find', u'fault', u'serial', u'killer']
[u'bryant', u'assert', u'innoc', u'alleg', u'assault']
[u'bulldog', u'darci', u'reject', u'headhunt', u'charg']
[u'burundi', u'unrest', u'claim']
[u'bodi', u'examin', u'season', u'transport']
[u'bushfir', u'inquiri', u'head', u'canberra']
[u'bushfir', u'inquiri', u'hear', u'communic', u'problem']
[u'cabbi', u'frustrat', u'violenc']
[u'build', u'apprentic', u'boost']
[u'local', u'manag', u'kakadu']
[u'cambodian', u'trash', u'christian', u'church', u'offici']
[u'campbel', u'undergo', u'surgeri', u'today']
[u'canegrow', u'welcom', u'question', u'sugar']
[u'church', u'translat', u'bibl', u'indigen', u'languag']
[u'cloth', u'seiz', u'local', u'market']
[u'club', u'poki', u'fear']
[u'club', u'protest', u'poki']
[u'coach', u'rivalri', u'overr', u'matthew']
[u'communiti', u'input', u'seek', u'forest', u'plan']
[u'concern', u'air', u'legal', u'fund']
[u'council', u'call', u'transpar', u'travel']
[u'councillor', u'leadership', u'deleg']
[u'council', u'agre', u'merger']
[u'council', u'seek', u'rapid', u'scheme', u'detail']
[u'council', u'seek', u'rainforest', u'protect']
[u'council', u'meet', u'boundari', u'option']
[u'council', u'meet', u'batchelor', u'rail', u'bypass']
[u'court', u'uphold', u'rule', u'custodi', u'death']
[u'cowra', u'face', u'water', u'restrict']
[u'crean', u'oppos', u'telstra', u'sale']
[u'crow', u'content', u'improv', u'safeti', u'measur']
[u'daniel', u'edg', u'inkster', u'canadian', u'open']
[u'deleg', u'swamp', u'darwin', u'ecolog', u'confer']
[u'delight', u'cook', u'keep', u'tour', u'green', u'jersey']
[u'hold', u'nerv', u'clinch', u'shoot', u'victori']
[u'call', u'report', u'port', u'kembla', u'copper']
[u'water', u'fall']
[u'extra', u'fund', u'provid', u'matur', u'worker']
[u'famili', u'angri', u'remov', u'luna', u'park', u'memori']
[u'farmer', u'consid', u'dust', u'storm', u'impact']
[u'farmer', u'consid', u'salin', u'woe']
[u'farmer', u'case', u'drought', u'fund']
[u'fear', u'hold', u'indigen', u'heritag', u'sit']
[u'feral', u'cat', u'bombard', u'bait']
[u'caus', u'damag', u'bowl', u'club']
[u'firefight', u'contain', u'blaze', u'yacht', u'club']
[u'firefight', u'remov', u'overheat', u'contain']
[u'fitzgerald', u'confid', u'ahead', u'swiss', u'clash']
[u'kill', u'injur', u'blast', u'rip']
[u'freo', u'confid', u'farmer', u'fit']
[u'gallop', u'defend', u'water', u'consult']
[u'project', u'delay', u'avoid']
[u'gerrard', u'sale', u'liverpool']
[u'gilchrist', u'concern', u'team', u'perform', u'slip']
[u'ginepri', u'win', u'career', u'titl', u'rhode', u'island']
[u'gladston', u'build', u'industri', u'reput']
[u'goorjian', u'face', u'tough', u'select', u'task', u'gosford']
[u'gough', u'verg', u'test', u'recal']
[u'govt', u'staff', u'central', u'iraq', u'disput']
[u'govt', u'warn', u'nurs', u'home', u'face', u'fund', u'crisi']
[u'grenad', u'attack', u'ethiopian', u'hotal', u'injur', u'report']
[u'group', u'seek', u'retail', u'talk', u'council']
[u'guid', u'cater']
[u'haas', u'consid', u'defenc', u'train', u'idea']
[u'health', u'industri', u'urg', u'lift', u'game']
[u'creditor', u'receiv', u'payment']
[u'hmas', u'newcastl', u'leav', u'gulf']
[u'hospit', u'anaesthetist', u'troubl', u'continu']
[u'howard', u'brush', u'fraser', u'critic']
[u'india', u'decid', u'troop', u'iraq', u'offer']
[u'indigen', u'leader', u'unhappi', u'council', u'decis']
[u'inquiri', u'tell', u'bushfir', u'shouldnt']
[u'internet', u'provid', u'challeng', u'telstra', u'deal']
[u'iran', u'examin', u'canadian', u'photograph', u'death']
[u'iran', u'make', u'giant', u'report']
[u'iraqi', u'council', u'rake', u'arab', u'media', u'coal']
[u'iraq', u'take', u'step', u'self', u'rule']
[u'deal', u'go', u'driver']
[u'irrig', u'save', u'wine', u'industri', u'summer']
[u'isinbayeva', u'set', u'vault', u'record', u'chamber', u'win']
[u'israel', u'question', u'alleg', u'irish', u'bombmak']
[u'john', u'join', u'blue', u'brisban']
[u'kingaroy', u'flight', u'servic', u'plan']
[u'king', u'dive', u'sautin', u'take', u'open', u'honour', u'silver']
[u'labor', u'vow', u'nurs', u'place']
[u'legisl', u'aim', u'safer', u'mine', u'industri']
[u'charg', u'fatal', u'sydney', u'shoot']
[u'die', u'attempt', u'jump', u'train']
[u'face', u'court', u'arm', u'robberi', u'charg']
[u'face', u'court', u'petrol', u'station', u'robberi']
[u'refus', u'bail', u'student', u'kill']
[u'technolog', u'track', u'wind', u'farm', u'sit']
[u'matthew', u'confid', u'dockland', u'surfac', u'problem']
[u'mayor', u'support', u'flinder', u'power', u'plan']
[u'million', u'risk', u'diabet', u'epidem']
[u'miss', u'lucki', u'aliv', u'polic']
[u'miss', u'girl', u'movement', u'baffl', u'polic']
[u'blast', u'rock', u'tamworth']
[u'continu', u'push', u'water', u'restrict', u'method']
[u'murphi', u'pyman', u'ohern', u'open', u'qualifi', u'loch']
[u'music', u'festiv', u'end', u'high', u'note']
[u'nat', u'welcom', u'famili', u'maker']
[u'nelson', u'slam', u'labor', u'educ', u'overhaul']
[u'member', u'appoint', u'heritag', u'council']
[u'hard', u'evid', u'korea', u'claim']
[u'northern', u'centr', u'begin', u'oper']
[u'taker', u'fingleton']
[u'boss', u'investig', u'extra', u'raider', u'claim']
[u'teacher', u'file', u'applic', u'increas']
[u'polic', u'club', u'communiti', u'spirit']
[u'korea', u'build', u'nuke', u'offici']
[u'oversea', u'investor', u'moora']
[u'palaszczuk', u'talk', u'trade', u'asia']
[u'palaszczuk', u'visit', u'asia', u'trade', u'talk']
[u'palestinian', u'milit', u'threaten', u'violenc', u'disarm']
[u'passeng', u'escap', u'injuri', u'plane', u'crash']
[u'perri', u'edg', u'allan', u'milwauke']
[u'perth', u'hospit', u'disput', u'go', u'commiss']
[u'pharmaci', u'chain', u'bid', u'stanbrok', u'prize']
[u'pine', u'secur', u'inquiri', u'continu']
[u'pine', u'worker', u'stand', u'resolv', u'union']
[u'arroyo', u'announc', u'anti', u'terror', u'pact']
[u'say', u'diplomaci', u'solv', u'korean', u'impass']
[u'talk', u'terror', u'manila']
[u'japan', u'drop', u'beef', u'tariff']
[u'polic', u'hunt', u'syring', u'bandit']
[u'polic', u'minist', u'open', u'idea', u'stop', u'shoot']
[u'polic', u'releas', u'liken', u'murder', u'probe']
[u'polic', u'releas', u'pictur', u'brazen', u'bank', u'bandit']
[u'popular', u'menopaus', u'herb', u'cancer', u'risk', u'studi']
[u'potenti', u'tourism', u'surg', u'daunt', u'tassi', u'chef']
[u'power', u'earthquak', u'rock', u'eastern', u'turkey']
[u'protest', u'worker', u'meet', u'manag']
[u'protest', u'greet', u'chirac', u'bastill']
[u'public', u'input', u'seek', u'draft', u'transport', u'plan']
[u'push', u'closer', u'univers', u'busi', u'link']
[u'push', u'extend', u'eastern', u'down']
[u'ratepay', u'await', u'council', u'budget']
[u'reardon', u'face', u'match']
[u'recycl', u'centr', u'prove', u'profit']
[u'renew', u'optim', u'lift', u'market']
[u'rescu', u'hors', u'home']
[u'research', u'seek', u'teen', u'depress', u'therapi']
[u'council', u'deal', u'mean', u'cheaper', u'sydney', u'flight']
[u'roger', u'say', u'white', u'help', u'virenqu']
[u'rossi', u'hit']
[u'rower', u'strike', u'gold', u'switzerland']
[u'rudd', u'demand', u'answer', u'iraq', u'claim']
[u'oppn', u'push', u'inquiri']
[u'shark', u'test']
[u'sheedi', u'slam', u'player', u'lack', u'disciplin']
[u'shopkeep', u'sweep', u'knife', u'wielder', u'premis']
[u'shop', u'trade', u'hour', u'decis', u'today']
[u'sigma', u'sue', u'product', u'recal']
[u'sign', u'time', u'hollywood', u'turn']
[u'singapor', u'look', u'pakistan', u'india', u'cricket']
[u'south', u'west', u'beat', u'peel', u'titl']
[u'stackhous', u'arrest', u'misdemeanor', u'assault', u'charg']
[u'strike', u'halt', u'mitsubishi', u'assembl', u'plant']
[u'sumo', u'grand', u'champion', u'keep', u'imag']
[u'swede', u'triumph', u'video', u'game', u'world']
[u'talk', u'continu', u'compon', u'disput']
[u'talk', u'mend', u'arafat', u'abba', u'rift', u'fail', u'offici']
[u'forest', u'bodi', u'consid', u'legal', u'action']
[u'marcher', u'save', u'primev', u'forest']
[u'scientist', u'snail', u'trail']
[u'teen', u'leader', u'attend', u'forum']
[u'telstra', u'share', u'month', u'high']
[u'kill', u'oodnadatta', u'merci', u'dash']
[u'tough', u'time', u'ahead', u'tiger', u'hutchison']
[u'tribut', u'founder', u'poppi', u'industri']
[u'children', u'adult', u'kenya', u'minibus', u'crash']
[u'highway', u'tragedi']
[u'serious', u'injur', u'central', u'accid']
[u'third', u'britain', u'say', u'blair', u'mislead']
[u'ugandan', u'soldier', u'rescu', u'kidnap', u'children']
[u'israel', u'bali', u'blast', u'amrozi']
[u'soldier', u'kill', u'hurt', u'iraq', u'attack']
[u'attack', u'aid', u'stanc']
[u'warn', u'dead', u'summer', u'iraq']
[u'govt', u'question', u'bushfir', u'fund']
[u'polic', u'investig', u'slaveri']
[u'victorian', u'cricket', u'mourn', u'john', u'schole']
[u'video', u'review', u'clear', u'bulldog', u'power']
[u'vietnam', u'execut', u'corpor', u'fraud']
[u'volunt', u'firefight', u'campaign', u'continu']
[u'wallabi', u'standard', u'gregan']
[u'stay', u'free', u'report']
[u'wast', u'dump', u'overshadow', u'issu']
[u'webber', u'perjuri', u'trial', u'begin', u'week']
[u'sven', u'chelsea']
[u'west', u'coast', u'mayor', u'urg', u'care', u'plan']
[u'western', u'elder', u'win', u'honour']
[u'west', u'score', u'british']
[u'wimbledon', u'champion', u'feder', u'fell', u'novak']
[u'wind', u'farm', u'duti', u'stay']
[u'put', u'bear', u'second', u'ladder']
[u'woman', u'hospit', u'crash']
[u'workcov', u'highlight', u'tractor', u'danger']
[u'zabaleta', u'win', u'swedish', u'open', u'year', u'titl']
[u'abbott', u'talk', u'nation', u'worker', u'compo', u'scheme']
[u'act', u'visit', u'central']
[u'adelaid', u'strike', u'drag', u'union']
[u'agforc', u'launch', u'environment', u'friend', u'tractor']
[u'aid', u'confer', u'focus', u'afford', u'drug', u'access']
[u'airport', u'aim', u'boost', u'intern', u'flight']
[u'aqsa', u'claim', u'respons', u'aviv', u'knife']
[u'imron', u'trial', u'start', u'monday']
[u'consid', u'rule', u'ministeri', u'advis']
[u'ambo', u'counsel', u'horror', u'smash']
[u'ambush', u'soldier', u'kill', u'iraqi', u'armi']
[u'arazi', u'slump', u'defeat']
[u'armstrong', u'titl', u'hop', u'boost', u'beloki', u'suffer']
[u'atsic', u'lobbi', u'decis', u'tuckey']
[u'aussi', u'extend', u'rank', u'lead']
[u'aussi', u'line', u'british', u'open']
[u'australia', u'lift', u'banger', u'gilchrist']
[u'australian', u'face', u'tough', u'challeng', u'gilchrist']
[u'australian', u'forc', u'halt', u'combat', u'task', u'iraq']
[u'australia', u'risk', u'nuclear', u'strike']
[u'aviat', u'brief', u'militari', u'exercis']
[u'bank', u'resourc', u'edg', u'market', u'higher']
[u'beatti', u'reluct', u'join', u'nation', u'compo', u'scheme']
[u'beckham', u'argentinian', u'world', u'nemesi']
[u'bendigo', u'miss', u'cycl', u'tour']
[u'bennett', u'dismiss', u'walk', u'talk']
[u'bethlehem', u'bomb', u'threat', u'defus']
[u'council', u'see']
[u'billionair', u'target', u'aston', u'villa', u'report']
[u'blue', u'whitewash', u'wont', u'hurt', u'origin', u'gould']
[u'brazil', u'bounc', u'say', u'scolari']
[u'build', u'taskforc', u'launch', u'employ']
[u'bulldog', u'keen', u'avoid', u'wooden', u'spoon']
[u'bureau', u'say', u'rain', u'need', u'despit', u'heavi', u'fall']
[u'bush', u'annan', u'hold', u'talk', u'iraq', u'conflict']
[u'bushfir', u'inquiri', u'hear', u'uriarra', u'devast']
[u'busi', u'time', u'health', u'advic', u'line']
[u'caldow', u'accept', u'england']
[u'camperdown', u'safeway', u'probe']
[u'grassland', u'plan', u'consult']
[u'reduc', u'levi']
[u'caltex', u'announc']
[u'disput', u'worsen', u'fail', u'talk']
[u'chang', u'moot', u'region', u'health']
[u'como', u'hous', u'caus', u'damag']
[u'compani', u'express', u'stanbrok']
[u'conargo', u'council', u'chamber']
[u'concern', u'air', u'fish', u'black', u'market']
[u'convent', u'centr', u'need', u'refurbish']
[u'cork', u'get', u'suspend', u'hodg', u'cheat', u'claim']
[u'coron', u'investig', u'schole', u'death']
[u'coron', u'probe', u'wheelchair', u'train', u'death']
[u'councillor', u'critic', u'water', u'save', u'incent']
[u'court', u'clear', u'vitamin', u'class', u'action']
[u'court', u'tell', u'murder', u'babi', u'tortur']
[u'cowboy', u'retain', u'sheppard']
[u'crow', u'cautious', u'carey', u'injuri']
[u'cruz', u'continu', u'battl', u'resid']
[u'csiro', u'issu', u'marin', u'pest', u'list']
[u'curios', u'kill', u'sniffer', u'rusik', u'die', u'line']
[u'dairi', u'farmer', u'face', u'uncertain', u'futur']
[u'deject', u'simoni', u'readi', u'quit', u'tour']
[u'disput', u'halt', u'north', u'west', u'shelf', u'work']
[u'destroy', u'attack']
[u'doubt', u'cast', u'drag', u'strip', u'plan', u'take']
[u'drought', u'take', u'toll', u'golf', u'cours']
[u'duffi', u'resid', u'claim', u'inadequ', u'warn', u'give']
[u'dutson', u'down', u'dump', u'step', u'closer']
[u'dyson', u'want', u'lankan', u'toppl', u'aussi']
[u'postpon', u'worker', u'meet']
[u'educ', u'compani', u'look', u'list']
[u'face', u'hungrier', u'usual', u'tiger']
[u'everton', u'admit', u'mcmanaman']
[u'expert', u'highlight', u'shipwreck', u'concern']
[u'expert', u'focus', u'shark']
[u'farmer', u'begin', u'restor', u'damag', u'fenc']
[u'farmer', u'urg', u'protect', u'stock']
[u'aviat', u'regiment', u'facil', u'expect']
[u'afghan', u'polic', u'kill', u'taliban', u'raid']
[u'flatul', u'cattl', u'loss']
[u'fletcher', u'tribun', u'appear']
[u'forest', u'protect', u'plan', u'consult']
[u'headmast', u'lose', u'appeal']
[u'fossil', u'puzzl']
[u'injur', u'great', u'divid', u'helicopt', u'crash']
[u'threat', u'cost', u'sheep', u'industri']
[u'fund', u'boost', u'flood', u'mitig', u'plan']
[u'fund', u'boost', u'shoalhaven', u'green', u'project']
[u'fund', u'seek', u'intern', u'cycl', u'athlet']
[u'garden', u'histori', u'bring', u'life', u'film']
[u'girl', u'run', u'franc', u'marin']
[u'golden', u'point', u'debat', u'wast', u'time', u'bennett']
[u'govt', u'ask', u'break', u'hill', u'movi']
[u'govt', u'busi', u'worker', u'compens', u'push']
[u'govt', u'consid', u'hospit', u'insur', u'offer']
[u'govt', u'promis', u'readi', u'gang', u'rape']
[u'govt', u'refus', u'interven', u'polic', u'industri']
[u'govt', u'shrug', u'nuclear', u'threat']
[u'govt', u'decid', u'fate', u'british', u'murder']
[u'plan', u'aim', u'collar', u'wild', u'dog']
[u'green', u'highlight', u'indigen', u'concern']
[u'group', u'unit', u'push', u'asbesto', u'health', u'facil']
[u'gulf', u'mexico', u'cyclon', u'whip', u'surf']
[u'gypsi', u'jazz', u'swing']
[u'hanson', u'support', u'gather', u'outsid', u'court']
[u'hawk', u'lose', u'holland']
[u'hewitt', u'fade', u'master', u'content']
[u'hobart', u'council', u'back', u'schoolgirl', u'plea', u'stay']
[u'hospit', u'ward', u'track', u'gastro', u'outbreak']
[u'howard', u'complet', u'manchest', u'unit']
[u'howard', u'land', u'japan']
[u'howard', u'say', u'escap', u'setback']
[u'illeg', u'fish', u'review', u'hold', u'public', u'meet']
[u'health', u'forc', u'akram', u'quit', u'hampshir']
[u'indigen', u'cultur', u'undervalu', u'say', u'academ']
[u'industri', u'angri', u'forest', u'plan']
[u'islam', u'jihad', u'warn', u'israel', u'limit', u'patienc']
[u'plenti', u'offer', u'citi', u'say', u'seaman']
[u'japanes', u'team', u'leav', u'quest', u'yeti']
[u'jeremi', u'littl', u'funer', u'hold', u'sydney', u'today']
[u'network', u'send', u'escort', u'agenc']
[u'john', u'origin']
[u'john', u'play', u'origin', u'final']
[u'joubert', u'jaco', u'black', u'test']
[u'kindergarten', u'need', u'oversight', u'union']
[u'koperberg', u'deni', u'politicis']
[u'kournikova', u'august', u'agent']
[u'langer', u'chang', u'tune', u'ryder', u'captainci']
[u'lashko', u'mine', u'gold', u'australia']
[u'lawyer', u'forest', u'battl']
[u'lectur', u'take', u'ride', u'life', u'record']
[u'local', u'govt', u'minist', u'water', u'reform', u'plan']
[u'local', u'mayor', u'join', u'landcar', u'review']
[u'celebr', u'birthday']
[u'die', u'north', u'west', u'blaze']
[u'manila', u'court', u'hand', u'marco', u'million', u'govt']
[u'hospit', u'bash']
[u'matilda', u'world', u'squad']
[u'mayor', u'confid']
[u'birthday', u'celebr', u'unveil']
[u'meet', u'outlin', u'tenanc', u'legisl']
[u'accus', u'servo', u'hold', u'refus', u'bail']
[u'mickelson', u'play', u'open', u'hop']
[u'millar', u'pay', u'tactic', u'error']
[u'miller', u'red', u'sign', u'spree']
[u'miller', u'take', u'red', u'coach']
[u'administr', u'meet', u'potenti', u'investor']
[u'minist', u'want', u'stabil', u'return', u'seafood']
[u'miss', u'woman', u'bodi']
[u'mother', u'accus', u'tri', u'kill', u'children', u'bail']
[u'urg', u'polic', u'communiti', u'partnership']
[u'murder', u'inquest', u'continu']
[u'survey', u'point', u'negat', u'inflat']
[u'nation', u'museum', u'tell', u'spice']
[u'netbal', u'thrash', u'trinidad', u'tobago']
[u'zealand', u'increas', u'solomon']
[u'protest', u'stand', u'trial']
[u'opposit', u'seek', u'parliament', u'recal']
[u'manur', u'letter', u'campaign', u'rais', u'stink']
[u'send', u'solomon', u'forc']
[u'philippin', u'investig', u'escap']
[u'philippin', u'offer', u'reward', u'escape']
[u'phone', u'compani', u'introduc', u'limit', u'free', u'call']
[u'pilot', u'escap', u'bankstown', u'crash']
[u'pirat', u'home', u'say']
[u'plan', u'meet', u'darwin']
[u'explain', u'fraud', u'charg', u'hanson']
[u'reject', u'north', u'korean', u'nuclear', u'threat']
[u'polic', u'concern', u'miss', u'teen']
[u'polic', u'hunt', u'runaway', u'girl', u'marin']
[u'polic', u'manslaught', u'charg', u'human']
[u'polic', u'angler', u'victim']
[u'polic', u'predict', u'road', u'rage', u'threat', u'rise']
[u'polic', u'sink', u'victim']
[u'popp', u'bubbl', u'burst', u'stuttgart']
[u'press', u'secretari', u'fleischer', u'leav', u'white', u'hous']
[u'push', u'save', u'place']
[u'budget', u'scrutinis']
[u'qualifi', u'crown', u'slip', u'montoya', u'ralf']
[u'question', u'rais', u'plan', u'process']
[u'question', u'rais', u'brothel', u'applic']
[u'rain', u'boost', u'hop', u'good', u'wheatbelt', u'season']
[u'rain', u'offer', u'mix', u'bless', u'firi']
[u'ratten', u'hang', u'boot']
[u'reardon', u'cross', u'match']
[u'rent', u'scheme', u'open', u'swiss', u'chees', u'lover']
[u'rescu', u'team', u'save', u'twinkl']
[u'rizzo', u'lead', u'gymnast', u'world']
[u'rodeo', u'charg', u'warwick', u'school', u'curriculum']
[u'ronaldinho', u'give', u'ultimatum', u'barcelona', u'spanish']
[u'rudd', u'say', u'downer', u'north', u'korea']
[u'ruston', u'stay', u'famili']
[u'scientist', u'work', u'tick', u'resist', u'cattl']
[u'seminar', u'focus', u'sport', u'safeti']
[u'seven', u'aceh', u'rebel', u'kill', u'singl', u'battl']
[u'shop', u'spree', u'earn', u'jail', u'term']
[u'slack', u'quit', u'red']
[u'slack', u'quit', u'red']
[u'solomon', u'forc', u'leav', u'week']
[u'stewart', u'slam', u'eccleston', u'vicious', u'critic']
[u'strong', u'wind', u'play', u'havoc', u'power']
[u'studi', u'identifi', u'worst', u'heart', u'risk']
[u'survey', u'highlight', u'littl', u'price', u'differ', u'store']
[u'bird', u'coach', u'rule', u'appli', u'nation']
[u'teacher', u'union', u'lodg', u'claim']
[u'teen', u'arrest', u'vandal', u'attack']
[u'telstra', u'deni', u'discount', u'break', u'competitor']
[u'telstra', u'reject', u'complaint', u'deal']
[u'terror', u'fear', u'scupper', u'atlant', u'row']
[u'tourism', u'industri', u'show', u'sign', u'recoveri']
[u'tower', u'vandal', u'disrupt', u'ambul', u'radio']
[u'train', u'council', u'float', u'skill', u'passport', u'plan']
[u'travel', u'warn', u'philippin', u'unnecessari', u'downer']
[u'tribun', u'clear', u'essendon', u'pair']
[u'tuckey', u'back', u'call', u'nation', u'park', u'freez']
[u'tumour', u'starv', u'drug', u'promis']
[u'tyson', u'sue', u'psychiatrist', u'unpaid', u'bill']
[u'tyson', u'sue', u'shrink', u'therapi', u'bill']
[u'back', u'wind', u'power', u'scheme']
[u'union', u'claim', u'public', u'servant']
[u'union', u'blame', u'oodnadatta', u'tripl', u'fatal', u'budget', u'cut']
[u'unsecur', u'creditor', u'support', u'liquid']
[u'compani', u'news', u'boost', u'market']
[u'coron', u'probe', u'schole', u'death']
[u'govt', u'accus', u'ignor', u'dump', u'opposit']
[u'vinokourov', u'best', u'year', u'overshadow', u'friend', u'death']
[u'vote', u'back', u'trade', u'hour', u'deregul']
[u'hinder', u'hunter', u'burn', u'off']
[u'wilson', u'warn', u'armstrong']
[u'wind', u'farm', u'get', u'final']
[u'woman', u'die', u'crash']
[u'woman', u'court', u'solicit', u'murder', u'charg']
[u'woosnam', u'chip', u'gasp', u'open', u'place']
[u'work', u'ban', u'impos', u'hospit']
[u'worsen', u'violenc', u'leav', u'dead', u'burundi']
[u'wrangl', u'continu', u'public', u'park']
[u'revamp', u'plan', u'aust', u'inland', u'infrastructur']
[u'abbott', u'launch', u'plan', u'boost', u'worker', u'share']
[u'aborigin', u'elder', u'join', u'protest', u'propos']
[u'act', u'hop', u'project', u'go', u'ahead']
[u'actress', u'ask', u'court', u'releas', u'photo']
[u'ail', u'welsh', u'turn', u'yoga']
[u'aircrew', u'action', u'scrutini', u'studi']
[u'airlin', u'say', u'flight', u'stab', u'minor', u'incid']
[u'airlin', u'say', u'stab', u'minor', u'incid']
[u'black', u'recal', u'mauger', u'face', u'springbok']
[u'unveil', u'plan', u'kid', u'learn']
[u'speak', u'drought', u'help']
[u'welcom', u'labor', u'nurs', u'propos']
[u'armstrong', u'shrug', u'protest', u'piil', u'take']
[u'art', u'project', u'reciev', u'govt', u'grant']
[u'worker', u'jail', u'fraud']
[u'atsic', u'chairman', u'give', u'caus', u'letter']
[u'aussi', u'leav', u'tiger', u'narbonn']
[u'aussi', u'domin', u'surf', u'south', u'africa']
[u'aussi', u'roll', u'jamaica']
[u'australian', u'wwii', u'soldier', u'buri', u'berlin']
[u'aust', u'resourc', u'consumpt', u'world', u'highest']
[u'defend', u'grower', u'levi']
[u'bali', u'judg', u'hear', u'wit', u'teleconfer']
[u'barton', u'inspect', u'brazil', u'sugar', u'industri']
[u'beloki', u'surgeri']
[u'wari', u'vino', u'ambiti', u'basqu', u'lanc']
[u'fail', u'rate', u'rise']
[u'birth', u'centr', u'consid', u'futur']
[u'boyl', u'prais', u'freeman', u'best', u'generat']
[u'british', u'open', u'form', u'guid']
[u'british', u'schoolgirl', u'safe', u'sound', u'polic']
[u'brogden', u'call', u'child', u'curfew']
[u'buena', u'vista', u'social', u'club', u'musician', u'return', u'home']
[u'bureau', u'predict', u'rainfal', u'australia', u'farmer']
[u'bush', u'court', u'unfair', u'say', u'magistr']
[u'bush', u'face', u'bigger', u'issu', u'telstra', u'anderson']
[u'bushfir', u'inquiri', u'highlight', u'communic', u'concern']
[u'cabbi', u'dont', u'want', u'passeng', u'slug', u'safeti']
[u'cambodia', u'arrest', u'aust', u'phone', u'racket', u'charg']
[u'cambodian', u'parti', u'evid', u'vote', u'buy']
[u'cathi', u'freeman', u'factbox']
[u'children', u'hospit', u'launch', u'onlin', u'diabet']
[u'chines', u'reserv', u'base']
[u'church', u'anger', u'croatia', u'school', u'yoga', u'plan']
[u'clark', u'explain', u'anderson']
[u'communiti', u'resourc', u'centr', u'open']
[u'communiti', u'consult', u'health', u'project']
[u'constabl', u'accus', u'colleagu', u'shoot', u'approach']
[u'cook', u'blast', u'tour', u'organis']
[u'cost', u'airport', u'work', u'take']
[u'council', u'merger', u'debat', u'continu']
[u'council', u'put', u'tandem', u'parachut', u'hold']
[u'council', u'seek', u'trade', u'hour', u'deregul']
[u'council', u'water', u'author', u'involv', u'studi']
[u'court', u'find', u'viva', u'mislead', u'consum']
[u'crowd', u'protest', u'court', u'penalti']
[u'urg', u'support', u'pay', u'matern', u'leav']
[u'dairi', u'group', u'hop', u'eas', u'trade', u'barrier']
[u'debat', u'erupt', u'nelli', u'develop']
[u'delay', u'learn', u'centr', u'work']
[u'democrat', u'deter', u'poker', u'machin', u'gambler']
[u'democrat', u'highlight', u'sugar', u'concern']
[u'design', u'contract', u'award', u'controversi', u'road']
[u'dobroskok', u'toppl', u'dive', u'king', u'sautin']
[u'downer', u'prais', u'chines', u'move', u'korea']
[u'ask', u'review', u'rivkin', u'medic', u'claim']
[u'draft', u'plan', u'strategi', u'form', u'lower', u'hunter']
[u'drink', u'drive', u'problem', u'worsen', u'popular', u'snow', u'town']
[u'drought', u'help', u'boost', u'saleyard', u'cattl', u'number']
[u'east', u'gippsland', u'head', u'south']
[u'economi', u'secur', u'japan', u'agenda']
[u'worker', u'expect', u'reject', u'offer']
[u'monitor', u'site', u'remedi']
[u'escape', u'rearrest', u'face', u'court']
[u'escap', u'highlight', u'threat', u'downer']
[u'ethanol', u'industri', u'promis', u'region', u'job', u'boost']
[u'etheridg', u'shire', u'deliv', u'budget']
[u'fan', u'descend', u'lang', u'park']
[u'farewel', u'icon', u'australian', u'sport']
[u'farmer', u'input', u'manag', u'strategi']
[u'farmer', u'group', u'show', u'dog', u'determin']
[u'farm', u'bodi', u'accus', u'backdoor']
[u'figur', u'highlight', u'reduc', u'sheep', u'lamb', u'number']
[u'flintoff', u'england', u'gilchrist', u'boycott']
[u'formula', u'come', u'india', u'say', u'eccleston']
[u'recov', u'helicopt', u'crash']
[u'freeman', u'lose', u'hunger']
[u'freeman', u'quit', u'desir', u'dri']
[u'french', u'demonstr', u'stop', u'tour', u'franc']
[u'gold', u'coast', u'surfer', u'look', u'ride', u'wave', u'success']
[u'goldfield', u'rain', u'predict', u'increas']
[u'govt', u'consid', u'global', u'missil', u'shield']
[u'govt', u'give', u'fight', u'timber', u'industri']
[u'green', u'port', u'environ', u'concern']
[u'greenspan', u'address', u'push', u'dollar', u'higher']
[u'greenspan', u'vow', u'rat']
[u'group', u'rais', u'student', u'condom', u'avail']
[u'helicopt', u'crash', u'investig', u'expect']
[u'hope', u'ford', u'invest', u'samag', u'plan']
[u'hospit', u'plan', u'boost', u'patient', u'respons', u'time']
[u'howard', u'koizumi', u'sign', u'econom', u'agreement']
[u'howard', u'thank', u'freeman', u'contribut', u'sport']
[u'human', u'right', u'watch', u'blast', u'secur', u'iraqi', u'women']
[u'hurrican', u'caus', u'havoc', u'texa', u'coast']
[u'icac', u'investig', u'fair', u'trade', u'bribe']
[u'icac', u'investig', u'fair', u'trade', u'bribe', u'claim']
[u'health', u'forc', u'wasim', u'quit', u'hampshir']
[u'increas', u'park', u'fee', u'help', u'fund', u'perth', u'project']
[u'india', u'tough', u'australia', u'ganguli']
[u'indigen', u'demonstr', u'fear', u'allay']
[u'indigen', u'diabet', u'educ', u'campaign', u'plan']
[u'injur', u'verkerk', u'suffer', u'setback']
[u'iran', u'say', u'canadian', u'journalist', u'die', u'beat']
[u'iraq', u'crimin']
[u'iraq', u'add']
[u'irrig', u'seek', u'drought', u'fund']
[u'israel', u'grant', u'lebanes', u'militia', u'member']
[u'japanes', u'beef', u'tariff', u'decis', u'concern', u'say']
[u'prison', u'escap', u'deepli', u'alarm', u'anderson']
[u'juri', u'tell', u'hanson', u'opinion', u'asid']
[u'kato', u'death', u'overshadow', u'honda', u'seventh']
[u'katter', u'back', u'north', u'referendum']
[u'kewel', u'liverpool', u'debut', u'tonight']
[u'kidnap', u'isra', u'taxi', u'driver', u'free']
[u'king', u'sign', u'boomer', u'guard', u'smith']
[u'lachlan', u'council', u'air', u'bush', u'servic', u'frustrat']
[u'lectur', u'experi', u'down', u'set']
[u'let', u'john']
[u'let', u'john']
[u'liberian', u'rebel', u'want', u'overwhelm', u'presenc']
[u'lodg', u'urg', u'accept', u'corriedal', u'park', u'site']
[u'long', u'term', u'rat', u'surg', u'higher', u'greenspan']
[u'major', u'defenc', u'train', u'centr', u'get', u'ahead']
[u'stab', u'flight', u'sydney']
[u'maroon', u'good', u'origin']
[u'mayor', u'candid', u'seek', u'coast', u'growth', u'slowdown']
[u'mcgee', u'hunger', u'success', u'give', u'frustrat']
[u'mcgradi', u'prais', u'anti', u'hoon', u'law']
[u'minist', u'offer', u'place', u'assur']
[u'miss', u'british', u'girl', u'phone', u'famili']
[u'miss', u'teenag', u'fremantl']
[u'miss', u'teen', u'fremantl']
[u'mobil', u'reject', u'claim', u'quit', u'petrol', u'retail']
[u'moment', u'go', u'rat', u'westpac']
[u'monsoon', u'season', u'take', u'toll', u'southern', u'asia']
[u'moran', u'seek', u'bail', u'drug', u'charg']
[u'call', u'govt', u'rail', u'line']
[u'fear', u'poki', u'plan', u'gambl', u'club', u'futur']
[u'music', u'enlist', u'petrol', u'sniff', u'battl']
[u'nardel', u'unsecur', u'creditor', u'reject', u'offer']
[u'nation', u'museum', u'architect', u'defend', u'design']
[u'campaign', u'reduc', u'road', u'toll', u'screen']
[u'newstead', u'colleg', u'win', u'rock', u'eisteddfod', u'challeng']
[u'korea', u'real', u'threat']
[u'hope', u'recoup', u'fingleton', u'legal', u'cost', u'welford']
[u'noosa', u'host', u'communiti', u'cabinet']
[u'norman', u'lead', u'aussi', u'open']
[u'northam', u'resid', u'face', u'rat', u'slug']
[u'exercis', u'test', u'defenc', u'forc', u'capabl']
[u'govt', u'urg', u'come', u'clean', u'harbour', u'plan']
[u'korea', u'spark', u'arm', u'race', u'ambassador']
[u'bid', u'olymp']
[u'reject', u'leg', u'immigr']
[u'nation', u'pair', u'exclud', u'support', u'court', u'hear']
[u'opposit', u'propos', u'child', u'curfew']
[u'overtim', u'ban', u'threaten', u'product']
[u'palestinian', u'thief', u'chang', u'settler', u'tyre']
[u'philippin', u'reap', u'critic', u'allow', u'bomber']
[u'pilot', u'unfair', u'dismiss', u'appeal', u'hear']
[u'continu', u'japan', u'talk']
[u'rais', u'tariff', u'beef', u'japan', u'talk']
[u'polic', u'drug', u'hide', u'ship', u'arriv', u'sydney']
[u'polic', u'hunt', u'supermarket', u'arm', u'bandit']
[u'polic', u'investig', u'flight', u'stab']
[u'polic', u'probe', u'robinval', u'hold']
[u'polic', u'murder', u'victim', u'recent', u'arriv']
[u'pool', u'damag', u'prove', u'cost']
[u'port', u'arthur', u'visitor', u'number', u'time', u'high']
[u'port', u'hedland', u'seek', u'naval', u'base']
[u'priest', u'join', u'push', u'stop', u'deport', u'schoolgirl']
[u'produc', u'urg', u'qraa', u'loan']
[u'public', u'servant', u'travel', u'review']
[u'public', u'urg', u'address', u'safeti', u'risk']
[u'rang', u'issu', u'debat', u'wine', u'grape', u'meet']
[u'ratepay', u'face', u'emerg', u'servic', u'levi']
[u'rate', u'rise', u'plan', u'latrob', u'budget']
[u'record', u'industri', u'profit', u'suffer', u'piraci']
[u'report', u'show', u'violenc', u'muslim']
[u'resourc', u'push', u'higher']
[u'rezon', u'pave', u'shop', u'centr', u'plan']
[u'tinto', u'take', u'court']
[u'riverina', u'suicid', u'rat', u'spotlight']
[u'ruddock', u'say', u'refuge', u'doubl', u'standard']
[u'runaway', u'marin', u'arrest', u'germani', u'polic']
[u'runaway', u'girl', u'fine', u'marin', u'talk']
[u'rural', u'servic', u'face', u'compens', u'claim']
[u'court', u'support', u'dump', u'vote']
[u'samudra', u'deni', u'choos', u'bali']
[u'tome', u'coup', u'leader', u'dissolv', u'state', u'bodi', u'report']
[u'water', u'downplay', u'murray', u'salin', u'concern']
[u'school', u'tell', u'play', u'greater', u'role', u'fight']
[u'scotland', u'preliminari', u'world', u'squad']
[u'solomon', u'expect', u'allow', u'australian', u'intervent']
[u'solomon', u'forc', u'place', u'week']
[u'somali', u'return', u'home', u'life', u'save']
[u'spill', u'fuel', u'threaten', u'fragil', u'sand']
[u'springborg', u'stand', u'broadwat', u'candid']
[u'staff', u'stress', u'affect', u'health', u'servic', u'cunningham']
[u'studi', u'consid', u'castl', u'hill', u'risk']
[u'tann', u'lose', u'dope', u'appeal']
[u'opposit', u'highlight', u'nurs', u'shortag', u'concern']
[u'teenag', u'nadal', u'stuttgart', u'second', u'round']
[u'telstra', u'sale', u'wont', u'happen', u'rural', u'upgrad']
[u'dead', u'caravan']
[u'toowoomba', u'car', u'confisc', u'anti', u'hoon', u'law']
[u'transport', u'minist', u'deni', u'claim', u'rail', u'network']
[u'travel', u'bomb', u'snack', u'import']
[u'tree', u'like', u'chop']
[u'troubl', u'gold', u'secur', u'fund', u'packag']
[u'uefa', u'show', u'feminin']
[u'union', u'confid', u'mayn', u'disput', u'resolut']
[u'unit', u'close', u'ronaldinho']
[u'unit', u'church', u'consid', u'ordin']
[u'block', u'fund', u'famili', u'plan', u'agenc']
[u'move', u'check', u'north', u'korean', u'bomb', u'claim']
[u'senat', u'roll', u'media', u'rule']
[u'troop', u'target', u'baghdad', u'fallujah']
[u'troop', u'upset', u'delay', u'return', u'sergeant']
[u'governor', u'tour', u'north', u'west']
[u'virgin', u'consid', u'europ', u'australia', u'rout']
[u'wagga', u'case', u'spark', u'brothel', u'ownership', u'rule']
[u'governor', u'tour', u'aborigin', u'communiti']
[u'govt', u'put', u'commerci', u'coral', u'collector', u'notic']
[u'wallabi', u'ella', u'join', u'ireland', u'leinster', u'head', u'coach']
[u'wollongong', u'construct', u'firm', u'face', u'court', u'action']
[u'woman', u'die', u'hous']
[u'woman', u'win', u'claim', u'fee']
[u'wood', u'showdown', u'promis', u'histor', u'open']
[u'youth', u'precinct', u'plan', u'derbi']
[u'zeta', u'jonesdougla', u'heist', u'film', u'deal', u'fall']
[u'zork', u'steal', u'wine', u'expo']
[u'year', u'rule', u'tip', u'drought']
[u'aborigin', u'leader', u'confid', u'crime', u'level', u'fall']
[u'govt', u'releas', u'rebuild', u'incent', u'plan']
[u'actor', u'warn', u'strike']
[u'pledg', u'rule', u'rethink', u'malthous', u'broadsid']
[u'airlin', u'consid', u'region', u'rout']
[u'alcoa', u'emiss', u'oppon', u'leav']
[u'alston', u'expect', u'museum', u'chang', u'time']
[u'alston', u'question', u'abc', u'lack', u'respons']
[u'ambiti', u'cardiff', u'aussi', u'vidmar', u'second']
[u'anderson', u'hit', u'sterilis', u'rule']
[u'anderson', u'crackdown', u'airlin', u'contraband']
[u'annika', u'go', u'ladi', u'prepar']
[u'anti', u'terror', u'committe', u'sit', u'darwin']
[u'anti', u'terror', u'plan', u'consid']
[u'armstrong', u'stay', u'focus', u'rest']
[u'arroyo', u'order', u'polic', u'overhaul', u'inquiri']
[u'aussi', u'hope']
[u'aussi', u'prefer', u'ride', u'wave', u'passion', u'survey']
[u'aussi', u'admir', u'stand']
[u'aust', u'indonesia', u'talk', u'free', u'trade']
[u'austoft', u'talk', u'break']
[u'australia', u'hand', u'netbal', u'lesson']
[u'australia', u'name', u'bowler']
[u'australian', u'escap', u'vietnam', u'death']
[u'australia', u'regain', u'test', u'trophi']
[u'behaviour', u'tarnish', u'windi', u'tour', u'pont']
[u'bank', u'employe', u'plead', u'guilti', u'branch', u'heist']
[u'barca', u'pull', u'ronaldinho', u'bid']
[u'beckham', u'friend']
[u'behrend', u'upset', u'seed', u'moya', u'stuttgart']
[u'biloela', u'win', u'tidi', u'town', u'titl']
[u'bolivia', u'declar', u'foot', u'mouth', u'diseas', u'emerg']
[u'bolton', u'bolster', u'defenc', u'campo', u'sign']
[u'bomb', u'blast', u'wound', u'pakistan']
[u'bowi', u'highlight', u'tourism', u'chang']
[u'break', u'end', u'murder', u'suicid', u'polic']
[u'brogden', u'visit', u'bega', u'valley']
[u'burma', u'pressur', u'releas']
[u'bushfir', u'inquiri', u'wast', u'time', u'nation', u'park']
[u'vote', u'high', u'tech']
[u'timber', u'town', u'busi', u'support']
[u'captain', u'salut', u'fine', u'kanimbla', u'crew']
[u'caption', u'boost', u'access', u'show']
[u'bomb', u'blast', u'kill', u'russia', u'dagestan']
[u'carey', u'back', u'face', u'docker']
[u'plough', u'market']
[u'cattl', u'duffer', u'electron', u'steal', u'stock']
[u'chamber', u'defend', u'levi', u'consult']
[u'charter', u'compani', u'order', u'japan', u'million']
[u'chelsea', u'agre', u'duff', u'geremi', u'sign']
[u'china', u'urg', u'korea', u'renew', u'framework']
[u'chirac', u'suggest', u'tax', u'help', u'fight']
[u'chopper', u'return', u'home', u'middl', u'east', u'duti']
[u'church', u'concern', u'child', u'abus', u'blowout']
[u'chief', u'quiz', u'uranium', u'claim']
[u'claim', u'race', u'curfew']
[u'claim', u'mobil', u'help', u'illeg', u'fisher']
[u'communiti', u'consult', u'plan', u'tank', u'paddock']
[u'communiti', u'award', u'refuge', u'support']
[u'concern', u'rais', u'stormwat', u'lead', u'level']
[u'congo', u'icc', u'sight']
[u'congo', u'swear', u'vice', u'presid', u'peac', u'deal']
[u'coron', u'consid', u'blaze', u'report']
[u'council', u'budget', u'strong', u'water', u'focus']
[u'council', u'like', u'approv', u'board', u'chamber', u'merger']
[u'council', u'continu', u'back']
[u'council', u'voic', u'merger', u'opposit']
[u'countri', u'show', u'face', u'cancel']
[u'court', u'hear', u'nation', u'build', u'drop', u'member']
[u'court', u'uphold', u'rule', u'sterilis', u'bungl']
[u'crown', u'seek', u'indefinit', u'jail', u'serial', u'paedophil']
[u'bruijn', u'commit', u'question']
[u'decis', u'bryant', u'case', u'friday', u'earliest']
[u'desper', u'tiger', u'ponder', u'johnson', u'gambl']
[u'develop', u'consid', u'launceston', u'market', u'option']
[u'develop', u'continu', u'shellfish', u'test']
[u'disgrac', u'refus', u'quit']
[u'disgruntl', u'soldier', u'line']
[u'driver', u'face', u'possibl', u'loss', u'hoon', u'law']
[u'driver', u'urg', u'care']
[u'dust', u'mask', u'need', u'montserrat']
[u'estat', u'agent', u'push', u'stamp', u'duti']
[u'fear', u'rais', u'livestock', u'scheme']
[u'feder', u'govt', u'keen', u'meatwork', u'reopen']
[u'fifth', u'bowler', u'dump', u'waugh', u'lash', u'media', u'sledg']
[u'face', u'court', u'robberi']
[u'focus', u'chronic', u'ill']
[u'polic', u'commission', u'describ', u'visionari']
[u'girl', u'rescu', u'japan', u'abduct', u'suspect']
[u'fund', u'boost', u'legal', u'centr']
[u'gold', u'medallist', u'lashko', u'home', u'melbourn']
[u'gold', u'medallist', u'lashko', u'return', u'melbourn']
[u'govt', u'give', u'boost', u'teach', u'standard']
[u'govt', u'urg', u'boost', u'health', u'servic', u'fund']
[u'govt', u'tackl', u'solomon', u'illeg', u'dolphin', u'trade', u'kemp']
[u'govt', u'thank', u'asylum', u'seeker', u'spotter']
[u'train', u'scheme', u'begin', u'north', u'coast']
[u'greenspan', u'deflat', u'watch']
[u'group', u'highlight', u'outback', u'drive', u'safeti', u'effort']
[u'group', u'seek', u'wharf', u'develop', u'probe']
[u'guevara', u'wish', u'main', u'rival', u'freeman', u'luck']
[u'hong', u'kong', u'leader', u'say', u'quit']
[u'hors', u'rider', u'saddl', u'long', u'ride']
[u'hough', u'hit', u'dairi', u'deregul']
[u'immigr', u'raid', u'mudge']
[u'chelsea', u'middl', u'say', u'eriksson']
[u'brazil', u'sugar', u'make', u'wheel', u'round']
[u'investig', u'launch', u'electr', u'death']
[u'iraq', u'author', u'invit', u'mobil', u'network']
[u'itali', u'valli', u'win', u'second', u'open', u'water', u'gold']
[u'joint', u'defenc', u'exercis', u'begin']
[u'journalist', u'suspend', u'fake', u'iraq', u'report']
[u'kalgoorli', u'boulder', u'look', u'upper', u'hous', u'sit']
[u'kanimbla', u'home', u'anthrax', u'probe', u'continu']
[u'kemp', u'deni', u'govt', u'close', u'kakadu', u'tourism']
[u'kewel', u'make', u'shaki', u'start', u'red']
[u'kidman', u'cautious', u'drought', u'predict']
[u'kilt', u'kiwi', u'longstaff', u'leav']
[u'kimberley', u'indigen', u'tourism', u'take']
[u'korea', u'exchang']
[u'labor', u'say', u'disabl', u'carer', u'need', u'govt', u'help']
[u'labor', u'urg', u'clark', u'resign', u'atsic', u'sake']
[u'land', u'council', u'take', u'park']
[u'latif', u'confirm', u'captain', u'bangladesh', u'seri']
[u'light', u'tunnel', u'rail', u'plan', u'decis']
[u'lithuania', u'propos', u'month', u'rumsa']
[u'lodg', u'undecid', u'council', u'offer']
[u'logi', u'agre', u'year', u'contract', u'coach', u'west', u'indi']
[u'lyon', u'join', u'chase', u'viduka']
[u'malon', u'payton', u'join', u'laker', u'oneal', u'stay', u'pacer']
[u'charg', u'stab']
[u'grant', u'bail', u'alleg', u'polic', u'assault']
[u'mansel', u'scath', u'clark', u'caus']
[u'face', u'attempt', u'murder', u'charg']
[u'market', u'follow', u'wall']
[u'massu', u'eas']
[u'mayor', u'get', u'fast', u'train', u'pledg']
[u'mayor', u'weigh', u'develop', u'benefit']
[u'milit', u'criticis', u'mazen', u'trip', u'washington']
[u'millennium', u'train', u'face', u'continu', u'safeti', u'concern']
[u'equip', u'firm', u'go', u'bust']
[u'mine', u'disast', u'plan', u'spotlight']
[u'minist', u'defend', u'support', u'realiti', u'seri']
[u'minist', u'hear', u'har', u'race', u'concern']
[u'effort', u'bite', u'wild', u'dog']
[u'mozambiqu', u'nigeria', u'discuss', u'tome', u'intervent']
[u'nativ', u'titl', u'stakehold', u'urg', u'negoti']
[u'nat', u'launch', u'petit', u'oppos', u'poki', u'plan']
[u'nat', u'question', u'dutson', u'down', u'report']
[u'champ', u'sign', u'duncan']
[u'netbal', u'quarter', u'final', u'power', u'stop']
[u'cancer', u'research', u'lab', u'open', u'melbourn']
[u'korea', u'accept', u'multilater', u'talk', u'report']
[u'norman', u'hunt', u'british', u'open']
[u'norman', u'predict', u'tough', u'start', u'wind', u'sweep', u'open']
[u'sign', u'marin', u'abus', u'girl', u'germani', u'prosecutor']
[u'suspici', u'circumst', u'mother', u'death', u'polic']
[u'flag', u'wont', u'grace', u'lang', u'park', u'beatti']
[u'tourism', u'chief', u'resign', u'merger', u'protest']
[u'polic', u'seek', u'miss', u'queensland']
[u'urg', u'boost', u'region', u'airport', u'secur']
[u'open', u'boss', u'confid', u'illeg', u'driver']
[u'origin', u'redex', u'car', u'appear', u'bordertown']
[u'perrow', u'low', u'south', u'african', u'surf']
[u'pipelin', u'indigen', u'consult', u'continu']
[u'polic', u'await', u'psychiatr', u'test', u'result', u'follow']
[u'polic', u'charg', u'oreilli', u'murder']
[u'polic', u'highlight', u'resourc', u'shortag', u'event']
[u'polic', u'tent', u'embassi']
[u'polic', u'probe', u'machet', u'attack']
[u'post', u'situat', u'iraq', u'misread']
[u'power', u'revamp', u'winton']
[u'priest', u'prove', u'comfort', u'shadow', u'death']
[u'princip', u'back', u'curriculum', u'framework']
[u'protest', u'storm', u'gather', u'tome', u'coup']
[u'public', u'urg', u'plant', u'thiev']
[u'firefight', u'emerg', u'dash']
[u'sterilis', u'case', u'repeat']
[u'queen', u'salsa', u'cruz', u'dead']
[u'rain', u'hamper', u'rescu', u'storm', u'northern', u'india']
[u'rann', u'blast', u'opposit', u'nuclear', u'dump', u'stanc']
[u'rebel', u'kill', u'congo']
[u'reduc', u'sentenc', u'truck', u'driver', u'involv']
[u'region', u'identifi', u'parliament', u'sit']
[u'research', u'claim', u'drink', u'spike', u'drug', u'myth']
[u'rivkin', u'fit', u'jail', u'reconsid']
[u'roff', u'black', u'test', u'darwin', u'doubt', u'smith']
[u'roger', u'line', u'yellow', u'jersey']
[u'rossi', u'ducati', u'dream', u'team', u'wait']
[u'russian', u'probe', u'wind', u'venus']
[u'ryan', u'back', u'call', u'road', u'seal']
[u'saddam', u'tape', u'blast', u'bush', u'blair']
[u'safeti', u'author', u'investig', u'port', u'phillip', u'near']
[u'oliv', u'corp', u'order', u'correct', u'claim']
[u'tome', u'minist', u'difficult', u'condit', u'famili']
[u'premier', u'polic', u'commission', u'attend']
[u'savag', u'name', u'chairman']
[u'savag', u'take', u'seat', u'head', u'board']
[u'schu', u'point', u'prove', u'britain']
[u'singapor', u'crash', u'investig', u'probe', u'chopper']
[u'solid', u'samoa']
[u'solomon', u'long', u'term', u'project']
[u'solomon', u'forc', u'dolphin', u'cruelti']
[u'solomon', u'parliament', u'pass', u'forc']
[u'south', u'africa', u'delport', u'strain', u'hamstr']
[u'specul', u'merger', u'plan', u'delay', u'council', u'elect']
[u'star', u'injur', u'shoot', u'director', u'heart', u'attack']
[u'state', u'blame', u'long', u'dental', u'queue']
[u'sterilis', u'rule', u'lift', u'premium']
[u'steal', u'ambul', u'return']
[u'studi', u'snapshot', u'speed', u'camera', u'impact']
[u'survey', u'reveal', u'iraqi', u'suspicion', u'invas', u'motiv']
[u'sydney', u'await', u'kanimbla', u'arriv']
[u'tafe', u'say']
[u'teacher', u'hang']
[u'terrorist', u'make', u'money', u'pirat', u'sale', u'interpol']
[u'toler', u'stir', u'surpris', u'costello']
[u'water', u'exercis', u'danger', u'expert']
[u'golfer', u'prepar', u'north']
[u'troop', u'iraq', u'anniversari', u'alert']
[u'tuqiri', u'free', u'start', u'black']
[u'ullrich', u'readi', u'attack', u'armstrong', u'pyrene']
[u'uncertainti', u'dictat', u'approach', u'tent', u'embassi', u'raid']
[u'unit', u'church', u'vote', u'allow', u'minist']
[u'welcom', u'minist', u'assur']
[u'face', u'guerrilla', u'chief', u'admit']
[u'vandal', u'attack', u'communiti', u'project']
[u'charg', u'alleg', u'assault']
[u'virenqu', u'see', u'spot', u'ahead', u'pyrenean', u'inferno']
[u'eye', u'legal', u'chang', u'clear', u'mine', u'backlog']
[u'wast', u'dump', u'effort', u'weaken', u'opposit']
[u'water', u'restrict', u'spark', u'flood', u'inquiri']
[u'urg', u'depend']
[u'websit', u'pose', u'vigilant', u'risk']
[u'whitnal', u'season', u'end', u'pagan', u'punish']
[u'wind', u'lash', u'open', u'norman', u'reliv', u'glori', u'day']
[u'worker', u'plead', u'guilti', u'medibank', u'theft']
[u'yachtsman', u'seek', u'action', u'river', u'siltat']
[u'yate', u'confirm', u'intent', u'sell']
[u'food', u'precinct', u'plan', u'bendigo']
[u'aborigin', u'legal', u'servic', u'lose', u'fund']
[u'accc', u'samuel', u'win', u'state']
[u'accus', u'killer', u'face', u'charg']
[u'cautious', u'welcom', u'ocean', u'plan']
[u'teacher', u'busk', u'educ', u'moni']
[u'airstrip', u'upgrad', u'plan', u'dalbi']
[u'alcohol', u'woe', u'state', u'wide', u'della', u'bosca']
[u'alleg', u'afghan', u'warlord', u'british', u'court', u'tortur']
[u'alleg', u'peopl', u'smuggler', u'claim', u'mistak', u'ident']
[u'alleg', u'peopl', u'smuggler', u'face', u'perth', u'court']
[u'allen', u'servic', u'loss', u'confirm']
[u'concern', u'gladston', u'hous', u'crisi']
[u'question', u'student', u'number', u'assur']
[u'anti', u'nuclear', u'protest', u'march', u'break', u'hill']
[u'armstrong', u'face', u'import', u'time', u'trial', u'career']
[u'armstrong', u'termin', u'rival']
[u'arson', u'believ', u'shop', u'blaze']
[u'aussi', u'author', u'storm', u'bastill']
[u'aussi', u'darwin']
[u'australian', u'aim', u'final', u'keep', u'rival']
[u'australia', u'reshuffl', u'diplomat', u'post']
[u'banger', u'struggl', u'bowl', u'attack']
[u'bangladesh', u'darwin']
[u'beatti', u'hear', u'ambul', u'need']
[u'beef', u'produc', u'hope', u'japan', u'reconsid', u'tariff']
[u'biotech', u'compani', u'prove', u'healthi', u'invest']
[u'birthday', u'tribut', u'pour', u'mandela']
[u'bleak', u'chela', u'titlehold', u'send', u'pack']
[u'bodi', u'match', u'descript', u'scientist', u'polic']
[u'bok', u'black', u'rivalri', u'burn', u'bright']
[u'bronco', u'chase', u'trio', u'signatur']
[u'bryant', u'learn', u'friday', u'face', u'charg']
[u'bungendor', u'plane', u'crash', u'blame', u'wind', u'pilot', u'error']
[u'burn', u'victim', u'fli', u'sydney']
[u'bush', u'blair', u'discuss', u'camp', u'prison']
[u'feral', u'anim', u'control', u'nationwid']
[u'input', u'propos', u'manag', u'south', u'east']
[u'reform', u'tasmania', u'youth', u'justic']
[u'canberra', u'trial', u'communiti', u'firefight']
[u'champion', u'king', u'sign', u'jason', u'smith']
[u'chemic', u'spill', u'scare', u'fals', u'alarm']
[u'child', u'cyber', u'porn', u'hard', u'stop', u'chief']
[u'claim', u'land', u'shortag', u'hurt', u'rental']
[u'claim', u'church', u'member', u'decis']
[u'colleg', u'rubberi', u'condom', u'princip']
[u'commend', u'offic', u'stab', u'arrest']
[u'congo', u'rebel', u'minist', u'refus', u'oath', u'offic']
[u'question', u'east', u'survey', u'result']
[u'coria', u'crush', u'ferrer', u'quarter', u'final', u'spot']
[u'costello', u'handl', u'accc', u'appoint', u'bad']
[u'council', u'fund', u'divert', u'press', u'need']
[u'council', u'tackl', u'tree', u'pest']
[u'court', u'ask', u'ruddock', u'home', u'protest']
[u'court', u'clear', u'ruddock', u'home', u'protest']
[u'court', u'overturn', u'fine', u'bankruptci', u'decis']
[u'credit', u'card', u'skim', u'cost', u'bank', u'million']
[u'critic', u'bambi', u'hunt']
[u'vow', u'pressur', u'govt', u'telstra']
[u'darwin', u'nativ', u'titl', u'claim', u'hear', u'delv']
[u'decis', u'bryant', u'charg', u'announc', u'friday']
[u'delay', u'ferri', u'servic', u'revamp']
[u'doubt', u'minist', u'ordain']
[u'dragon', u'woe', u'mount', u'ryle', u'cop', u'season', u'end']
[u'dutch', u'polit', u'assassin', u'appeal', u'reject']
[u'marin', u'wont', u'fight', u'extradit']
[u'expert', u'predict', u'gloomier', u'econom', u'outlook']
[u'explan', u'offer', u'dental', u'surgeri', u'woe']
[u'famili', u'breach', u'lifetim']
[u'famili', u'narrowli', u'escap', u'hous', u'blaze']
[u'farmer', u'group', u'fear', u'wind']
[u'mice', u'lazi', u'like']
[u'probe', u'iraq', u'niger', u'uranium', u'claim']
[u'fergi', u'meet', u'presid', u'ronaldinho']
[u'figur', u'highlight', u'kimberley', u'tourism', u'benefit']
[u'figur', u'highlight', u'tourism', u'benefit']
[u'fiji', u'accept', u'court', u'rule']
[u'fischer', u'suggest', u'concord']
[u'fisichella', u'talk', u'sauber']
[u'fund', u'disput', u'put', u'cloud', u'job']
[u'garcia', u'let', u'mcmanaman', u'arsenal', u'secret']
[u'decis', u'unlik', u'affect', u'north', u'west']
[u'minist', u'unlik', u'ordain']
[u'genet', u'link', u'depress']
[u'gold', u'plan', u'promis', u'benefit']
[u'govt', u'appoint', u'colin', u'thatcher', u'airc']
[u'govt', u'consult', u'indigen', u'communiti']
[u'group', u'confid', u'pipelin', u'viabl']
[u'hand', u'fingleton']
[u'histori', u'smile', u'iraq', u'blair']
[u'holden', u'take', u'spot', u'practic', u'session']
[u'howard', u'play', u'korean', u'gunfir']
[u'howard', u'urg', u'state', u'babi', u'compo', u'claim']
[u'injuri', u'tiger', u'desper', u'snap', u'lose', u'streak']
[u'iran', u'complet', u'probe', u'journalist', u'death']
[u'irish', u'winger', u'duff', u'lock', u'chelsea', u'talk']
[u'irrig', u'financi', u'break']
[u'irrig', u'urg', u'seek', u'farm', u'help']
[u'islam', u'extremist', u'blame', u'dagestan', u'blast']
[u'deja', u'emmi', u'favourit', u'domin']
[u'jacobson', u'stay', u'bogey', u'free', u'sandwich']
[u'escape', u'link']
[u'journalist', u'stand', u'trial', u'time', u'aceh']
[u'kalli', u'miss', u'test']
[u'kanga', u'lose', u'point', u'coach', u'appoint']
[u'kemp', u'launch', u'region', u'marin', u'plan']
[u'korea', u'grab', u'lpga', u'lead', u'bind', u'whaley']
[u'lamb', u'price', u'expect', u'remain', u'high']
[u'land', u'hand', u'monto', u'council']
[u'larsson', u'target', u'celtic', u'triumph', u'fulham']
[u'latham', u'say', u'state', u'bulli', u'accc', u'choic']
[u'lebron', u'jam', u'join', u'experi', u'olli']
[u'liberian', u'rebel', u'closer', u'capit', u'report']
[u'lifejacket', u'trial', u'victorian', u'fisher']
[u'limeston', u'get', u'condit', u'approv']
[u'magpi', u'tame', u'tiger']
[u'sentenc', u'life', u'heroin', u'murder']
[u'market', u'close', u'week']
[u'matilda', u'confid', u'ahead', u'world']
[u'matilda', u'receiv', u'world', u'draw']
[u'meet', u'heighten', u'rail', u'gaug', u'hop']
[u'surviv', u'blue', u'mountain', u'plane', u'crash']
[u'merger', u'plan', u'creat', u'uncertainti', u'hume', u'mayor']
[u'methan', u'propos', u'nose']
[u'mildura', u'child', u'abus', u'notif', u'figur', u'caus']
[u'minist', u'consid', u'futur', u'church', u'decis']
[u'minist', u'defend', u'tafe', u'train']
[u'ministeri', u'visit', u'bolster', u'har', u'club', u'hop']
[u'miss', u'girl', u'find', u'plush']
[u'mix', u'aussi', u'tour', u'wilson', u'abandon']
[u'mobil', u'technolog', u'present', u'legal', u'challeng']
[u'monti', u'azing', u'kelli', u'earli', u'open', u'exit']
[u'fund', u'seek', u'flood', u'plan']
[u'peopl', u'smuggler', u'govt', u'sight']
[u'mosley', u'determin', u'pressur', u'silverston']
[u'natur', u'heritag', u'trust', u'fund', u'announc']
[u'nelson', u'mandela', u'celebr', u'birthday']
[u'newcastl', u'outdo', u'penrith']
[u'york', u'polic', u'jail', u'subway', u'drummer']
[u'deal', u'accc', u'samuel']
[u'lead', u'miss', u'case']
[u'norman', u'reliv', u'open', u'glori', u'day']
[u'norri', u'lead', u'master']
[u'north', u'east', u'bushfir', u'grant', u'announc']
[u'govt', u'attack', u'textil', u'industri', u'tariff']
[u'govt', u'urg', u'redraw', u'boundari']
[u'govt', u'consid', u'option', u'boost', u'worker']
[u'feral', u'anim', u'popul']
[u'nurs', u'see', u'dispos']
[u'ogradi', u'angri', u'second', u'near', u'miss']
[u'firm', u'support', u'kyoto', u'measur', u'confer', u'tell']
[u'paedophil', u'face', u'sentenc', u'stagger', u'abus']
[u'panther', u'knight']
[u'paroo', u'remain', u'untam']
[u'safe', u'trade', u'talk', u'anderson', u'assur']
[u'perec', u'decid', u'week', u'world', u'championship']
[u'phelp', u'play', u'thorp', u'rivalri']
[u'philippin', u'polic', u'enact', u'escap']
[u'philippin', u'sign', u'ceasefir', u'guerrilla', u'group']
[u'plan', u'aim', u'boost', u'wheat', u'export']
[u'plane', u'rescu', u'strand', u'tome', u'tourist']
[u'plan', u'offer', u'rice', u'grower', u'diseas', u'protect']
[u'pursu', u'talk', u'north']
[u'polic', u'babi', u'dead', u'mother', u'bind', u'gag']
[u'polic', u'probe', u'random', u'shoot']
[u'port', u'best', u'william']
[u'prime', u'coverag', u'region', u'viewer']
[u'princip', u'welcom', u'secur', u'review']
[u'promot', u'cop', u'litter', u'fine']
[u'public', u'urg', u'contain', u'termin']
[u'govt', u'fund']
[u'top', u'palliat', u'care', u'rat']
[u'raaf', u'aircraft', u'join', u'search', u'miss', u'yacht']
[u'rail', u'line', u'reopen']
[u'railway', u'consid', u'insur', u'offer']
[u'experi', u'boost', u'cowboy', u'confid']
[u'research', u'consid', u'emiss', u'impact', u'rock']
[u'research', u'focus', u'patient', u'support']
[u'resign', u'doesnt', u'surpris', u'doctor', u'group']
[u'reverend', u'rethink', u'futur', u'minist']
[u'road', u'servic', u'truce']
[u'rubin', u'run', u'rescu']
[u'rule', u'engag', u'solomon', u'forc']
[u'rural', u'men', u'health', u'urgent', u'prioriti', u'presid']
[u'russian', u'wed', u'world']
[u'rusti', u'australia', u'darwin']
[u'saff', u'back', u'recommend']
[u'govt', u'announc', u'region', u'magistr']
[u'sailor', u'urg', u'think', u'care', u'japan']
[u'samuel', u'vow', u'follow', u'fel', u'lead']
[u'sapphir', u'lose', u'brazil']
[u'scientist', u'stumbl', u'giant', u'hole']
[u'shop', u'unit', u'reef', u'rezon', u'middl', u'grind']
[u'korea', u'prais', u'convict']
[u'spaniard', u'regain', u'lead', u'admir', u'go']
[u'stage', u'solomon', u'intervent']
[u'steadi', u'growth', u'townsvill']
[u'stosur', u'join', u'molik', u'singl', u'draw']
[u'strong', u'quak', u'rock', u'north', u'taiwan']
[u'struggl', u'davi', u'rule', u'wale', u'squad']
[u'support', u'revamp', u'region', u'rebat', u'scheme']
[u'surgeri', u'postpon', u'doctor', u'seek', u'rise']
[u'suspect', u'sex', u'sourc', u'miss']
[u'suspect', u'taliban', u'attack', u'kill', u'afghan', u'soldier']
[u'teen', u'speedster', u'lose', u'licenc']
[u'stop', u'welfar', u'scam', u'vanston']
[u'toll', u'street', u'market', u'crash']
[u'actor', u'highest', u'pay', u'beresford']
[u'tough', u'time', u'ahead', u'bayern', u'say', u'beckenbau']
[u'trescowthick', u'face', u'corpor', u'charg']
[u'troop', u'leav', u'solomon', u'monday']
[u'tuqiri', u'strain', u'hamstr']
[u'kill', u'wwii', u'bomb', u'explod', u'austria']
[u'walk', u'plane', u'crash']
[u'union', u'govt', u'action', u'factori', u'lockout']
[u'uni', u'hand', u'hard', u'drive', u'piraci', u'case']
[u'hous', u'vote', u'block', u'militari', u'fund', u'indonesia']
[u'releas', u'pakistani', u'guantanamo']
[u'senat', u'fast', u'food', u'lawsuit']
[u'fight', u'aussi', u'spot']
[u'vandal', u'spark', u'limit', u'reserv', u'access']
[u'vietnam', u'presid', u'overrul', u'sydney', u'woman', u'death']
[u'get', u'smallest', u'slice', u'govt', u'radiotherapi']
[u'govt', u'claim', u'secret', u'privatis', u'agenda']
[u'lib', u'deni', u'debt', u'problem']
[u'wall', u'street', u'accentu', u'negat']
[u'premier', u'chanc', u'timber', u'worker', u'anger']
[u'war', u'faction', u'hinder', u'solomon', u'amnesti']
[u'water', u'polo', u'world', u'champ', u'australia', u'beat', u'canada']
[u'weather', u'hamper', u'hazard', u'reduct', u'attempt']
[u'weather', u'hamper', u'rescu']
[u'pgas', u'best', u'away', u'loweri', u'play']
[u'wilson', u'year', u'say', u'minardi', u'boss']
[u'wolfowitz', u'baghdad', u'mysteri', u'visit']
[u'woman', u'die', u'crash']
[u'woman', u'face', u'charg', u'jewelleri', u'theft']
[u'woodsid', u'worker', u'defi', u'rule', u'strike']
[u'woolcomb', u'firm', u'cut', u'product']
[u'workplac', u'fit', u'program', u'practic']
[u'worst', u'paedophil', u'sentenc', u'delay']
[u'look', u'chines', u'gold', u'rush', u'dedieu', u'claim']
[u'yacht', u'race', u'plan', u'highlight', u'marina', u'crowd']
[u'accept', u'samuel', u'appoint']
[u'age', u'care', u'delay', u'fund', u'jeopardi']
[u'airport', u'rail', u'passeng', u'number', u'increas']
[u'black', u'springbok', u'resum', u'hostil']
[u'anaesthesia', u'link', u'onset', u'dementia']
[u'annan', u'call', u'peac', u'iraq']
[u'anonym', u'hollywood', u'actor', u'bogus']
[u'associ', u'claim', u'nurs', u'home', u'fund', u'crisi']
[u'aust', u'franc', u'launch', u'joint', u'aid', u'fight', u'pacif']
[u'australia', u'provid', u'intellig']
[u'bat', u'share', u'open', u'lead', u'york']
[u'blair', u'sadden', u'death', u'public', u'servant']
[u'blatter', u'welcom', u'lowi', u'appoint']
[u'bodi', u'miss', u'blair', u'advis', u'polic']
[u'bryant', u'charg', u'sexual', u'assault']
[u'canada', u'plan', u'sweep', u'safeguard']
[u'plough', u'hous']
[u'church', u'send', u'letter', u'explain', u'minist']
[u'clifford', u'group', u'chief', u'face', u'trial']
[u'coria', u'tear', u'youzhni', u'apart', u'stuttgart', u'stunner']
[u'crow', u'hard', u'injuri']
[u'diplomat', u'tip', u'forc', u'leader', u'solomon']
[u'downer', u'confid', u'iraq', u'wmds', u'turn']
[u'wood', u'loom', u'love']
[u'back', u'farmer', u'choic', u'crop']
[u'europ', u'move', u'plug', u'scientif', u'brain', u'drain']
[u'europ', u'favourit', u'pastim', u'stay', u'home']
[u'fear', u'compani', u'pull', u'tasmania']
[u'caus', u'damag', u'perth', u'high', u'school']
[u'damag', u'downey', u'build']
[u'firefight', u'battl', u'sydney', u'stadium', u'blaze']
[u'flash', u'flood', u'sweep', u'venezuela', u'highway']
[u'german', u'film', u'crew', u'captur', u'offer']
[u'gough', u'give', u'england', u'test', u'recal']
[u'govt', u'rule', u'bring', u'hick', u'home']
[u'govt', u'search', u'toxic', u'wast', u'sit']
[u'make', u'attempt', u'lpga', u'titl']
[u'hawk', u'dee']
[u'hawthorn', u'final', u'hop', u'aliv']
[u'hewett', u'replac', u'injur', u'hoeft']
[u'hick', u'trial', u'hold']
[u'howard', u'turn', u'attent', u'trade']
[u'hydrogen', u'car', u'need', u'expert']
[u'indonesia', u'convict', u'soldier', u'rape', u'aceh']
[u'integr', u'commission', u'unnecessari', u'speaker']
[u'iran', u'sampl', u'enrich', u'uranium', u'diplomat']
[u'israel', u'releas', u'palestinian', u'milit']
[u'job', u'risk', u'courier', u'go']
[u'jone', u'track', u'babi', u'birth']
[u'journalist', u'resign', u'fake', u'iraq', u'report']
[u'brit', u'advis', u'iraq', u'report', u'dead']
[u'lappin', u'join', u'akermani', u'sidelin', u'essendon']
[u'lehmann', u'waugh', u'lead', u'australian', u'charg']
[u'liberian', u'rebel', u'push', u'capit', u'report']
[u'liberian', u'rebel', u'bridg']
[u'lone', u'yachtsman', u'coast']
[u'lone', u'yachtsman', u'say', u'merchant', u'ship']
[u'love', u'break', u'british', u'open']
[u'crush']
[u'dead', u'collis', u'truck']
[u'court', u'discoveri', u'largest', u'ecstaci']
[u'men', u'world', u'championship', u'prospect']
[u'microsoft', u'drive', u'wall', u'street', u'higher']
[u'miss', u'teenag']
[u'molik', u'level', u'colombia']
[u'morocco', u'pakistan', u'sign', u'accord', u'moder', u'islam']
[u'netbal', u'cruis', u'semi', u'final']
[u'privaci', u'risk', u'piraci', u'probe']
[u'north', u'korea', u'pose', u'nuclear', u'threat']
[u'firefight', u'contain', u'stadium', u'blaze']
[u'rail', u'employe', u'face', u'tougher', u'medic']
[u'industri', u'welcom', u'ocean', u'plan']
[u'pussi', u'hunt', u'cater', u'famili']
[u'polic', u'charg', u'mother', u'murder', u'week']
[u'polic', u'commission', u'tri', u'establish', u'order']
[u'polit', u'frequent', u'flier', u'perk', u'spotlight']
[u'power', u'thrash', u'eagl', u'bomber', u'beat', u'lion']
[u'princ', u'sign', u'tiger']
[u'protest', u'target', u'ruddock', u'hous']
[u'polic', u'charg', u'biki', u'raid']
[u'racist', u'taunt', u'lazio', u'chelsea', u'friend']
[u'raider', u'escap', u'tiger']
[u'realiti', u'track', u'olymp', u'dream']
[u'recruit', u'begin', u'iraqi', u'armi']
[u'repeat', u'robredo', u'volandri']
[u'roger', u'best', u'aussi']
[u'ruddock', u'protest', u'tast', u'carr']
[u'russian', u'synchronis', u'duet', u'world', u'titl']
[u'doctor', u'maintain', u'elect', u'surgeri']
[u'schumach', u'put', u'ferrari', u'practic']
[u'scientist', u'drill', u'cap']
[u'shoot', u'fire', u'polic', u'windscreen']
[u'hurt', u'indonesian', u'grenad', u'accid']
[u'soil', u'scientist', u'pleas', u'forum', u'result']
[u'solomon', u'refuge', u'hope', u'forc', u'target', u'sataan']
[u'korean', u'defenc', u'ministri', u'releas', u'report']
[u'swan', u'belt', u'blue']
[u'tasmanian', u'grower', u'fight', u'appl', u'import']
[u'thorp', u'doubt', u'swim', u'champ', u'drug', u'free']
[u'thorp', u'give', u'chanc', u'creat', u'histori']
[u'thousand', u'liberian', u'flee', u'threat', u'rebel', u'attack']
[u'protest', u'arrest', u'outsid', u'ruddock', u'hous']
[u'tourki', u'seventh', u'platform']
[u'tour', u'oper', u'inform', u'kakadu', u'access']
[u'town', u'westburi', u'join', u'rail', u'line']
[u'boy', u'hospit', u'attack']
[u'ullrich', u'blitz', u'time', u'trail']
[u'unit', u'church', u'call', u'hick', u'extradit']
[u'ask', u'cuba', u'stop', u'jam', u'broadcast']
[u'believ', u'plan', u'stop', u'iraqi', u'chao']
[u'soldier', u'kill', u'iraqi', u'town', u'fallujah']
[u'solid', u'kill', u'iraq']
[u'hold', u'guantanamo', u'trial']
[u'uranium', u'link', u'despit', u'dubious', u'report']
[u'nistelrooy', u'say', u'fan', u'ferguson']
[u'vessel', u'sight', u'rais', u'searcher', u'hop']
[u'rainfal', u'tip', u'declin']
[u'warrior', u'sink', u'shark', u'dragon', u'overcom', u'cowboy']
[u'weapon', u'expert', u'take', u'life', u'polic']
[u'weather', u'prevent', u'landslid', u'rescu']
[u'white', u'hous', u'releas', u'document', u'iraq']
[u'women', u'world', u'championship', u'prospect']
[u'kill', u'serious', u'hurt', u'highway', u'crash']
[u'million', u'displac', u'flood', u'india']
[u'age', u'care', u'sector', u'critic', u'govt', u'fund']
[u'black', u'annihil', u'springbok']
[u'silent', u'aborigin', u'issu', u'spokesman']
[u'ambros', u'aim', u'number']
[u'arafat', u'interven', u'releas', u'kidnap', u'offici']
[u'offer', u'return', u'help', u'bushfir', u'victim']
[u'atsic', u'commission', u'resign', u'abalon', u'charg']
[u'aussi', u'fairfax', u'compet', u'alaska', u'world']
[u'aussi', u'freeman', u'win', u'world', u'archeri', u'championship']
[u'aussi', u'score', u'bangladesh']
[u'australia', u'beat', u'colombia']
[u'australia', u'semi', u'thank', u'barbado']
[u'australian', u'troop', u'readi', u'solomon', u'deploy']
[u'australia', u'overcom', u'sunshin', u'girl']
[u'australia', u'face', u'netbal', u'world', u'titl']
[u'barrichello', u'snatch', u'british', u'pole']
[u'say', u'kelli', u'sourc', u'intellig']
[u'belgium', u'verg', u'elimin', u'holder', u'slovakia']
[u'bergkamp', u'sign', u'arsenal', u'deal']
[u'blair', u'arriv', u'south', u'korea']
[u'blair', u'stay', u'firm', u'say', u'scientist', u'mole']
[u'blair', u'weapon', u'expert', u'death']
[u'blair', u'urg', u'japan', u'support', u'iraq']
[u'bomb', u'offic', u'nice', u'injur']
[u'british', u'govt', u'announc', u'independ', u'inquiri']
[u'bronco', u'distanc', u'golden', u'victori']
[u'brosnan', u'bowl', u'jam', u'bond']
[u'bulldog', u'freo', u'saint', u'thriller']
[u'canadian', u'woman', u'die', u'sar']
[u'china', u'roll', u'cliff', u'peopl', u'kill']
[u'church', u'seek', u'quell', u'concern', u'minist']
[u'close', u'dementia', u'unit', u'ridicul', u'oppn', u'say']
[u'coria', u'storm', u'stuttgart', u'final']
[u'cuba', u'deni', u'jam', u'broadcast', u'iran']
[u'dem', u'slam', u'govt', u'stanc', u'hick']
[u'doctor', u'demand', u'govt', u'drop', u'levi']
[u'downer', u'defend', u'solomon', u'coordin', u'appoint']
[u'driver', u'kill', u'attack', u'vehicl', u'iraq']
[u'elect', u'strategi', u'leak', u'contriv', u'beatti', u'oppn']
[u'emus', u'overpow', u'croatia', u'place', u'final']
[u'evid', u'suggest', u'second', u'north', u'korea', u'nuclear', u'site']
[u'expert', u'debat', u'limit', u'age']
[u'fear', u'teacher', u'shortfal', u'continu']
[u'fina', u'defend', u'anti', u'dope', u'program']
[u'kill', u'woman', u'retir', u'villag']
[u'ugandan', u'dictat', u'coma', u'report']
[u'fourteen', u'kill', u'kenya', u'plane', u'crash']
[u'gardin', u'cousin', u'fine', u'worsfold']
[u'gehrig', u'spur', u'saint', u'victori', u'roo']
[u'glasswork', u'meet', u'factori', u'disput', u'continu']
[u'helm', u'claim', u'silver', u'australia']
[u'howard', u'wrap', u'asian', u'tour']
[u'indonesia', u'releas', u'leader']
[u'ingal', u'take', u'victori', u'ambros', u'penalis']
[u'iraqi', u'shepherd', u'sue', u'rumsfeld', u'frank']
[u'iraqi', u'shiit', u'stage', u'mass', u'anti', u'protest']
[u'iraqi', u'fight', u'alongsid', u'forc', u'report']
[u'israel', u'rang', u'iranian', u'missil', u'ayatollah']
[u'isra', u'palestinian', u'leader', u'meet', u'talk']
[u'jail', u'british', u'author', u'archer', u'free']
[u'japan', u'beat', u'sweden', u'join', u'world', u'group']
[u'job', u'risk', u'administr', u'appoint', u'manag']
[u'kennedi', u'boxer', u'bring', u'auction']
[u'kewel', u'await', u'result', u'scan', u'injur', u'ankl']
[u'kewel', u'injuri', u'cloud']
[u'lonard', u'loom', u'british', u'open']
[u'loweri', u'seiz', u'stroke', u'lead']
[u'mallon', u'snare', u'share', u'appl', u'lead']
[u'mason', u'win', u'bench', u'spot', u'kangaroo']
[u'minist', u'play', u'problem']
[u'reject', u'suggest', u'hick', u'return']
[u'mugab', u'threaten', u'british', u'descend', u'report']
[u'mutola', u'averbukh', u'produc', u'year', u'best', u'perform']
[u'build', u'law', u'come', u'effect']
[u'govt', u'unveil', u'spillway', u'warragamba']
[u'polic', u'probe', u'stab', u'outsid', u'parti']
[u'pacif', u'trade', u'stop', u'offici']
[u'palestinian', u'governor', u'kidnap', u'milit']
[u'pedestrian', u'condit', u'strike']
[u'photojournalist', u'serious', u'wound', u'liberia']
[u'pippen', u'return', u'chicago', u'bull', u'report']
[u'plan', u'save', u'michelangelo', u'david', u'ravag']
[u'pollock', u'strike', u'india']
[u'power', u'thrash', u'eagl', u'bomber', u'beat', u'lion']
[u'time', u'extend', u'world']
[u'rebel', u'thrust', u'heart', u'liberian', u'capit']
[u'research', u'reduc', u'redback', u'bite', u'pain']
[u'resid', u'flee', u'rebel', u'enter', u'monrovia']
[u'rhone', u'take', u'netbal']
[u'richmond', u'legend', u'barrat', u'suffer', u'heat', u'attack']
[u'ronaldinho', u'sign', u'barcelona']
[u'rule', u'australian', u'forc', u'solomon']
[u'scientif', u'research', u'microscop']
[u'scientist', u'close', u'hunt', u'tick', u'resist']
[u'search', u'sailor', u'spark', u'maritim', u'author', u'probe']
[u'spanish', u'star', u'zhivanevskaya', u'readi', u'coughlin']
[u'surg', u'number', u'australian', u'consult']
[u'thailand', u'ban', u'beef', u'import', u'canada', u'poland']
[u'thiev', u'newcastl', u'dino', u'bone']
[u'thorp', u'comfort', u'fastest', u'world', u'titl', u'defenc']
[u'truck', u'driver', u'charg', u'murder', u'fatal', u'crash']
[u'tutu', u'clinton', u'lead', u'star', u'mandela', u'birthday']
[u'soldier', u'kill', u'iraq']
[u'ullrich', u'close', u'armstrong']
[u'find', u'enrich', u'uranium', u'iran', u'report']
[u'say', u'convoy', u'attack', u'iraq']
[u'embassi', u'liberia', u'tell', u'rebel', u'halt']
[u'troop', u'detain', u'iranian', u'crew', u'iraq', u'report']
[u'vail', u'head', u'round', u'trade', u'talk']
[u'warn', u'allow', u'play', u'chariti', u'cricket']
[u'waugh', u'enter', u'test', u'histori', u'book']
[u'weapon', u'expert', u'day', u'intoler', u'famili']
[u'whale', u'free', u'shark', u'net']
[u'wizard', u'chief', u'support', u'negat', u'gear', u'review']
[u'woman', u'bash', u'home', u'invas']
[u'wood', u'face', u'foreign', u'territori', u'sandwich', u'victori']
[u'abandon', u'pet', u'face', u'bleak', u'futur']
[u'reject', u'alston', u'claim', u'bias']
[u'locomot', u'bind', u'west', u'coast']
[u'mazen', u'begin', u'flurri', u'diplomaci', u'egypt']
[u'examin', u'cost', u'water', u'bomber']
[u'actor', u'deep', u'shakespearean', u'drama']
[u'highlight', u'weed', u'woe']
[u'alleg', u'drug', u'maker', u'reappear', u'court', u'today']
[u'alston', u'complaint']
[u'alston', u'launch', u'broadband', u'network']
[u'hold', u'concern', u'tasmanian', u'bulk', u'bill']
[u'amrozi', u'verdict', u'date']
[u'anderson', u'hop', u'progress', u'tree', u'clear']
[u'armstrong', u'admit', u'battl', u'form']
[u'rid', u'wave', u'surf', u'cultur']
[u'see', u'modest', u'gain']
[u'atsic', u'rep', u'deliv', u'discuss', u'paper', u'respons']
[u'attempt', u'murder', u'charg', u'follow', u'shoot', u'spree']
[u'australia', u'sail', u'admir']
[u'avellino', u'launch', u'legal', u'action']
[u'ballina', u'traine', u'win', u'award']
[u'barcelona', u'want', u'say', u'ronaldinho']
[u'barrichello', u'claim', u'protest', u'mar', u'british']
[u'crowd', u'sheep', u'wool']
[u'weekend', u'bendigo', u'motel']
[u'biospher', u'plan', u'gain', u'support']
[u'boardwalk', u'build', u'twin', u'fall', u'gorg']
[u'break', u'hill', u'branch', u'odd', u'state', u'govt']
[u'break', u'hill', u'record', u'posit', u'tourist', u'figur']
[u'budget', u'deliv', u'kimberley', u'rat', u'rise']
[u'bushfir', u'victim', u'offer', u'leav', u'stay']
[u'campaign', u'stall', u'push']
[u'chechen', u'rebel', u'kill', u'russian', u'soldier', u'interfax']
[u'claim', u'govt', u'doesnt', u'coher', u'north', u'korea', u'polici']
[u'cobar', u'expect', u'reap', u'year']
[u'concern', u'forens', u'test', u'delay']
[u'concern', u'voic', u'geraldton', u'seagrass']
[u'coria', u'thrash', u'robredo', u'stuttgart', u'final']
[u'council', u'paus', u'death', u'mayor', u'deputi']
[u'council', u'debat', u'bequest']
[u'council', u'consid', u'merger', u'issu']
[u'council', u'talk']
[u'council', u'trial', u'landfil']
[u'countri', u'cockatoo', u'semi', u'final']
[u'court', u'hear', u'murder', u'victim', u'attack', u'sword']
[u'cousin', u'stick', u'eagl']
[u'cousin', u'take', u'stay', u'eagl']
[u'crawford', u'clear', u'injuri', u'scare']
[u'expect', u'continu', u'growth', u'hous', u'market']
[u'curti', u'jump', u'golf', u'rank']
[u'debat', u'rag', u'medic', u'centr', u'locat']
[u'democrat', u'pilbara', u'coast', u'secur', u'measur']
[u'democrat', u'deni', u'split', u'telstra']
[u'dental', u'wait', u'time', u'increas', u'area']
[u'disput', u'resolut', u'save', u'job', u'restor']
[u'doctor', u'dispos', u'instrument', u'studi']
[u'size', u'bird', u'face', u'dinosaur', u'skeleton', u'steal']
[u'foreshadow', u'budget', u'cut']
[u'driver', u'urg', u'rethink', u'road', u'safeti', u'effort']
[u'dubbo', u'back', u'treat', u'water', u'discharg']
[u'eat', u'pizza', u'cancer', u'risk', u'italian']
[u'emus', u'claim', u'basketbal', u'gold']
[u'environ', u'centr', u'get', u'global', u'reput']
[u'faldo', u'look', u'forward', u'ryder', u'select']
[u'famili', u'urg', u'quit', u'kewel', u'leed', u'chief']
[u'feder', u'polic', u'leav', u'solomon']
[u'ferguson', u'shrug', u'ronaldhino', u'snub']
[u'fish', u'industri', u'back', u'lifejacket', u'studi']
[u'local', u'enjoy', u'world', u'junior', u'basketbal']
[u'realtor', u'ban', u'year']
[u'forum', u'focus', u'sustain', u'timber', u'transport']
[u'forum', u'consid', u'drink', u'spike', u'concern']
[u'fund', u'increas', u'perth', u'burn', u'unit']
[u'fund', u'help', u'address', u'justic', u'issu']
[u'girl', u'injur', u'fall', u'thredbo', u'chairlift']
[u'golf', u'club', u'unlik', u'water', u'support']
[u'goondiwindi', u'hostel', u'close']
[u'gough', u'spur', u'critic']
[u'govt', u'expect', u'announc', u'biofuel', u'packag']
[u'govt', u'refus', u'fund', u'driver', u'rise']
[u'govt', u'relax', u'stanc', u'drug', u'reverend']
[u'group', u'reject', u'council', u'merger', u'plan']
[u'heat', u'kill', u'swelter', u'algeria', u'summer']
[u'hick', u'father', u'meet', u'lawyer']
[u'hick', u'request', u'risk', u'relat']
[u'historian', u'blast', u'govt', u'snub', u'enact']
[u'hobart', u'hospit', u'receiv', u'worth', u'equip']
[u'hoogi', u'signal', u'strong', u'challeng', u'thorp']
[u'hope', u'continu', u'servic']
[u'amin', u'critic', u'condit']
[u'imron', u'go', u'trial', u'bali', u'blast']
[u'independ', u'school', u'increas', u'fee']
[u'indigen', u'health', u'spotlight']
[u'inquiri', u'hold', u'territori', u'seat']
[u'investig', u'continu', u'alleg', u'collis']
[u'iran', u'nuclear', u'program', u'threaten', u'entir', u'world']
[u'iron', u'knock', u'south', u'africa']
[u'jeffrey', u'archer', u'free', u'jail']
[u'john', u'disappoint', u'overlook', u'knight']
[u'joint', u'custodi', u'arrang', u'question']
[u'journalist', u'depress', u'injuri', u'court', u'hear']
[u'judg', u'pledg', u'open', u'kelli', u'inquiri']
[u'kewel', u'liverpool', u'east', u'tour']
[u'laidley', u'urg', u'embrac', u'technolog']
[u'lauitiiti', u'face', u'high', u'tackl', u'charg']
[u'lawrenc', u'inquest', u'continu']
[u'leagu', u'board', u'probe', u'team', u'mate', u'punch']
[u'legal', u'argument', u'domin', u'hanson', u'fraud', u'trial']
[u'leppitsch', u'season', u'hang', u'balanc']
[u'local', u'repres', u'attend', u'farm', u'gather']
[u'lockyer', u'battl', u'ankl', u'injuri']
[u'accus', u'road', u'smash', u'murder', u'face', u'court']
[u'beat', u'rape', u'charg', u'appeal', u'call']
[u'charg', u'fatal', u'accid']
[u'escap', u'injuri', u'drive', u'shoot']
[u'face', u'court', u'arm', u'robberi', u'charg']
[u'critic', u'condit']
[u'shoot', u'dead', u'melbourn']
[u'sentenc', u'child', u'porn', u'charg']
[u'massu', u'thump', u'sluiter', u'claim', u'dutch', u'open']
[u'media', u'film', u'dolphin', u'export', u'detain']
[u'medicar', u'blame', u'tripl', u'tier', u'bill', u'process']
[u'meet', u'discuss', u'gold', u'mine', u'plan']
[u'minist', u'await', u'church', u'meet', u'decid', u'fate']
[u'minist', u'condemn', u'user', u'pay', u'health']
[u'minist', u'urg', u'power', u'age', u'care']
[u'rain', u'need', u'south', u'east', u'crop']
[u'mortar', u'shell', u'fall', u'near', u'embassi', u'monrovia']
[u'mother', u'face', u'court', u'babi', u'death']
[u'defend', u'wider', u'campaign']
[u'question', u'hospit', u'servic']
[u'push', u'water', u'restrict']
[u'murray', u'reflect', u'cowboy', u'loss']
[u'muslim', u'woman', u'fresh', u'kashmir']
[u'natwa']
[u'near', u'bomb', u'discov', u'vietnam']
[u'netbal', u'shoot', u'develop', u'plan']
[u'effort', u'tackl', u'calicivirus']
[u'evid', u'spark', u'leski', u'coroni', u'probe']
[u'gatton', u'bypass', u'section', u'promis', u'christma']
[u'nile', u'quit', u'unit', u'church']
[u'korea', u'call', u'negoti', u'hope']
[u'norfolk', u'island', u'worri', u'autonomi']
[u'northern', u'archer', u'target', u'world', u'titl']
[u'road', u'race', u'environment', u'friend']
[u'dead', u'injur', u'head', u'near', u'sussex', u'inlet']
[u'palestinian', u'kill', u'jenin']
[u'palestinian', u'look', u'break', u'peac', u'process']
[u'park', u'chief', u'expect', u'increas', u'self', u'drive']
[u'hear', u'pictur', u'domest', u'violenc']
[u'polic', u'investig', u'basketbal', u'offici', u'death']
[u'polic', u'plead', u'parti', u'organis', u'violent']
[u'polic', u'probe', u'mackay', u'shoot']
[u'polic', u'investig', u'como', u'handgun', u'theft']
[u'prime', u'news', u'servic', u'continu']
[u'privat', u'sector', u'take', u'age', u'care']
[u'protea', u'order', u'run', u'india']
[u'public', u'input', u'seek', u'aquif', u'plan']
[u'hop', u'strategi', u'boost', u'local', u'tourism']
[u'post', u'increas', u'ross', u'river', u'contract']
[u'question', u'rais', u'crop', u'quarantin']
[u'railway', u'plan', u'boost', u'iron', u'industri']
[u'rampant', u'belgian', u'semi', u'final']
[u'real', u'estat', u'industri', u'face', u'shake']
[u'rebel', u'open', u'second', u'monrovia', u'attack']
[u'region', u'area', u'bare', u'brunt']
[u'report', u'highlight', u'tough', u'region', u'year']
[u'riverland', u'volunt', u'happi']
[u'roadwork', u'fund', u'concern', u'air']
[u'robinson', u'charg', u'chang']
[u'robinson', u'face', u'fresh', u'crimin', u'charg']
[u'rockhampton', u'rainfal', u'declin']
[u'ronaldinho', u'scar']
[u'auto', u'compani', u'verg', u'industri', u'action']
[u'strike', u'threaten', u'adelaid']
[u'saddam', u'iraq', u'administr']
[u'govt', u'stamp', u'duti', u'decis', u'welcom', u'irrig']
[u'santo', u'expand', u'interest']
[u'school', u'drop', u'out', u'fine', u'thank']
[u'schooli', u'head', u'announc', u'week']
[u'school', u'park', u'blitz', u'begin']
[u'scienc', u'prove', u'organ', u'claim']
[u'scientist', u'build', u'self', u'suffici', u'space']
[u'search', u'continu', u'sourc', u'outbreak']
[u'second', u'chanc', u'candid', u'elect']
[u'secur', u'surround', u'export', u'solomon', u'dolphin']
[u'separatist', u'blame', u'bomb', u'corsica']
[u'shark', u'risk', u'humpback', u'remain']
[u'shire', u'give', u'thumb', u'merger']
[u'shire', u'push', u'fast', u'connect']
[u'silver', u'fern', u'break', u'australia', u'netbal', u'domin']
[u'silver', u'fern', u'australia', u'netbal', u'domin']
[u'silverston', u'launch', u'inquiri', u'track', u'invas']
[u'simul', u'take', u'place', u'near', u'darwin']
[u'soldier', u'kill', u'chechnya', u'grozni', u'bomb']
[u'small', u'busi', u'owner', u'work', u'longer', u'hour', u'survey']
[u'solomon', u'deploy', u'short', u'term', u'hill']
[u'solomon', u'deploy', u'underway']
[u'solomon', u'deploy', u'stretch', u'research']
[u'south', u'korea', u'claim', u'lpga', u'titl']
[u'space', u'shepherd', u'check', u'irish', u'flock']
[u'stadler', u'surpris', u'seven', u'year']
[u'straeuli', u'stand', u'firm', u'humili', u'loss']
[u'student', u'celebr', u'cultur']
[u'surgeon', u'offer', u'servic', u'time']
[u'sydney', u'airport', u'achiev', u'record', u'profit', u'surg']
[u'tassi', u'devil', u'notch']
[u'teen', u'jail', u'heroin', u'bust']
[u'test', u'star', u'cricket', u'tiwi', u'island']
[u'tiger', u'go', u'hungri']
[u'tourist', u'fli', u'adelaid', u'highway', u'crash']
[u'tourist', u'take', u'comfort', u'zone']
[u'tour', u'woe', u'continu', u'suffer', u'millar']
[u'trial', u'begin', u'internet', u'theft', u'case']
[u'tribun', u'list', u'grow']
[u'trio', u'gear', u'closest', u'tour', u'year']
[u'troop', u'north', u'queensland']
[u'tullamarin', u'report', u'passeng', u'increas']
[u'tuqiri', u'black', u'clash']
[u'unit', u'rule', u'swoop', u'duff']
[u'univers', u'appoint', u'leader']
[u'unknown', u'curti', u'find', u'life', u'chang', u'forev']
[u'send', u'special', u'forc', u'guard', u'embassi']
[u'soldier', u'iraqi', u'translat', u'kill', u'baghdad']
[u'govt', u'urg', u'revers', u'camp', u'decis']
[u'victorian', u'town', u'reward', u'cfas', u'latest', u'budget']
[u'viera', u'close', u'commit', u'arsena']
[u'virenqu', u'see', u'spot', u'cook', u'look', u'green']
[u'virenqu', u'sixth', u'king', u'mountain', u'crown']
[u'virgin', u'float', u'bring', u'intern', u'flight']
[u'volunt', u'unabl', u'handl', u'emerg', u'fesa']
[u'food', u'head', u'dubai', u'shop']
[u'lib', u'push', u'flag', u'burn']
[u'water', u'ban', u'loom', u'melbourn']
[u'waugh', u'give', u'test', u'thumb']
[u'wolfowitz', u'talk', u'iraqi', u'kurd']
[u'wooli', u'push', u'sale', u'billion']
[u'wooli', u'share', u'fall', u'despit', u'sale', u'increas']
[u'yalgoo', u'driver', u'advantag', u'cheaper', u'fuel']
[u'youth', u'council', u'gather', u'evid', u'curfew', u'challeng']
[u'kill', u'injur', u'earthquak', u'rock', u'china']
[u'arrest', u'saudi', u'terrorist', u'crackdown']
[u'kill', u'surg', u'violenc', u'indian', u'kashmir']
[u'aborigin', u'defend', u'fish', u'right']
[u'expect', u'long', u'presenc', u'solomon']
[u'airport', u'target', u'busi', u'passeng']
[u'alleg', u'murder', u'polic', u'victim', u'bodi', u'court']
[u'ancient', u'chines', u'citi', u'wall', u'collaps', u'dead']
[u'anderson', u'back', u'iraq', u'stanc']
[u'asian', u'nation', u'discuss', u'way', u'limit', u'drug', u'trade']
[u'associ', u'consid', u'legal', u'action', u'video']
[u'aussi', u'advanc', u'indianapoli']
[u'aussi', u'rest', u'ahead', u'final', u'mountain']
[u'aussi', u'smash', u'pool', u'world', u'record']
[u'aussi', u'women', u'water', u'polo', u'content']
[u'australia', u'eye', u'japan', u'beef', u'market', u'opportun']
[u'australia', u'water', u'polo', u'medal']
[u'aust', u'scientist', u'award', u'japanes', u'space', u'studi']
[u'bacon', u'say', u'crean', u'stay', u'reshuffl']
[u'bail', u'hear', u'underway', u'imprison', u'anwar']
[u'batter', u'armstrong', u'crash', u'extend', u'lead']
[u'bell', u'creditor', u'court', u'loom']
[u'brother', u'winner', u'tasmanian', u'drawcard', u'bacon']
[u'blair', u'arriv', u'hong', u'kong', u'stop', u'asia']
[u'blair', u'deni', u'authoris', u'name', u'dead', u'scientist']
[u'blair', u'regret', u'iraq']
[u'boat', u'theft', u'highlight', u'solomon', u'lawless']
[u'bowyer', u'sign', u'steal', u'bobbi']
[u'breaker', u'await', u'appeal', u'outcom']
[u'bus', u'stoni', u'point', u'frankston', u'train']
[u'busi', u'night', u'ahead', u'tribun']
[u'busi', u'time', u'mildura', u'firi']
[u'age', u'care', u'servic', u'review']
[u'credit', u'union', u'invest', u'boost']
[u'mall', u'revamp']
[u'atsic', u'commission', u'boost']
[u'canada', u'demand', u'answer', u'journalist', u'death']
[u'canadian', u'crime', u'profil', u'call', u'help', u'solv']
[u'canberra', u'properti', u'boom', u'begin', u'wane', u'develop']
[u'casa', u'head', u'step']
[u'caution', u'urg', u'free', u'trade', u'agreement']
[u'finalis', u'elura', u'sale']
[u'chamber', u'oppos', u'citi', u'hill', u'plan']
[u'cigarett', u'compani', u'comment', u'affidavit']
[u'claim', u'wind', u'farm', u'probe', u'late']
[u'coal', u'alli', u'profit', u'slump']
[u'corrupt', u'watchdog', u'examin', u'oldfield', u'issu']
[u'council', u'rais', u'brothel', u'site', u'concern']
[u'council', u'stock', u'rout', u'concern']
[u'council', u'seek', u'govt', u'help', u'water', u'woe']
[u'council', u'sign', u'biodivers', u'agreement']
[u'council', u'develop', u'reform', u'blueprint']
[u'council', u'slug', u'ratepay', u'rise']
[u'council', u'urg', u'relax', u'alfresco', u'polici']
[u'courier', u'compani', u'sue', u'defam']
[u'court', u'tell', u'bell', u'creditor', u'leav']
[u'cricket', u'share', u'skill', u'tiwi', u'island']
[u'curti', u'rocket', u'golf', u'rank']
[u'death', u'toll', u'rise', u'landslid', u'flood']
[u'defend', u'claim', u'unfit', u'plea', u'murder']
[u'doctor', u'transplant', u'lick']
[u'doctor', u'lift', u'work', u'ban', u'adelaid', u'hospit']
[u'doctor', u'offer', u'bulk', u'bill', u'patient', u'assur']
[u'doubt', u'bryant', u'olymp', u'futur']
[u'drought', u'decis', u'loom']
[u'duff', u'join', u'chelsea', u'revolut']
[u'worker', u'continu', u'strike', u'entitl']
[u'colombian', u'troop', u'polic', u'kill', u'rebel']
[u'injur', u'bomb', u'explod', u'spanish']
[u'ethanol', u'industri', u'get']
[u'extern', u'review', u'coverag', u'need', u'howard']
[u'farmer', u'like', u'discuss', u'murray', u'condit']
[u'farmer', u'receiv', u'pass', u'environment', u'perform']
[u'farmer', u'discuss', u'crop']
[u'fear', u'hotter', u'weather', u'hurt', u'rainforest', u'speci']
[u'govt', u'consid', u'ethanol', u'push']
[u'feedlot', u'object', u'send', u'govt']
[u'forc', u'evacu', u'backpack', u'hostel']
[u'fishermen', u'ask', u'haul', u'squid', u'monitor']
[u'fisher', u'hope', u'green', u'zone', u'compromis']
[u'footbal', u'assault', u'trial', u'move', u'bunburi']
[u'forest', u'industri', u'boss', u'retract', u'styx', u'valley']
[u'king', u'bros', u'penthous', u'sale']
[u'prepar', u'home']
[u'frank', u'lowi', u'media', u'confer']
[u'gbrmpa', u'reject', u'boati', u'fisher', u'claim']
[u'glass', u'worker', u'walk']
[u'green', u'lose', u'busi', u'laundromat', u'tell']
[u'govt', u'halv', u'timor', u'troop', u'break']
[u'group', u'continu', u'woodchip', u'protest']
[u'hamilton', u'gestur', u'help', u'armstrong', u'victori']
[u'harbi', u'william', u'remain', u'adelaid']
[u'hegarti', u'complet', u'kangaroo', u'train', u'session']
[u'hemingway', u'look', u'alik', u'crown']
[u'heritag', u'trail', u'promis', u'tourism', u'boost']
[u'hick', u'train', u'weapon', u'surveil']
[u'hill', u'gold', u'histor', u'site']
[u'hoogi', u'quicker', u'thorp', u'twice']
[u'horsham', u'basketbal', u'high']
[u'human', u'submarin', u'sink', u'free', u'dive', u'record']
[u'hunt', u'underway', u'melbourn', u'gunman']
[u'hill', u'kansa', u'anymor']
[u'india', u'kashmir', u'armi', u'chief', u'injur', u'brigadi', u'dead']
[u'injur', u'venus', u'pull', u'california', u'tournament']
[u'injur', u'vogel', u'head', u'home', u'australia']
[u'inquiri', u'examin', u'represent']
[u'iraqi', u'capit', u'ring', u'mobil', u'phone']
[u'isra', u'armi', u'raid', u'rafah', u'home', u'palestinian']
[u'isra', u'firm', u'give', u'green', u'light', u'tender']
[u'kalli', u'test', u'england']
[u'kangaroo', u'hegarti', u'stand']
[u'kean', u'upbeat', u'year']
[u'keke', u'welcom', u'forc', u'deploy']
[u'lauitiiti', u'miss', u'test']
[u'laundromat', u'owner', u'urg', u'greener']
[u'leagu', u'great', u'propos', u'sport', u'program']
[u'lender', u'tip', u'continu', u'hous', u'boom']
[u'leppitsch', u'sidelin', u'week']
[u'lib', u'promis', u'lift', u'bunburi', u'profil']
[u'live', u'dolphin', u'leav', u'solomon', u'mexico']
[u'loos', u'booster', u'seat', u'boy', u'death', u'coron', u'tell']
[u'lord', u'mayor', u'defend', u'reject', u'adelaid', u'oval']
[u'major', u'briton', u'unhappi', u'blair', u'poll']
[u'major', u'victorian', u'favour', u'smoke']
[u'airlift', u'hospit', u'snowfield', u'accid']
[u'face', u'trial', u'yacht', u'death']
[u'lose', u'finger', u'hatchet', u'attack']
[u'face', u'child', u'porn', u'sentenc']
[u'melbourn', u'murder', u'victim', u'know', u'polic']
[u'millennium', u'train', u'report', u'blame', u'manufactur']
[u'mobil', u'spring', u'life', u'iraq']
[u'motlop', u'receiv', u'rise', u'star']
[u'fear', u'kakadu', u'hike']
[u'fear', u'kakadu', u'hike', u'tourist']
[u'want', u'local', u'port', u'author', u'chief']
[u'napthin', u'question', u'accommod', u'respons']
[u'natqld']
[u'nat', u'consid', u'cross', u'border', u'commiss']
[u'tongu', u'cancer', u'victim']
[u'sight', u'hous', u'boom']
[u'fund', u'catchment', u'centr']
[u'oldest', u'british', u'veteran', u'die']
[u'nation', u'regist', u'parti', u'offic', u'tell']
[u'opposit', u'voic', u'rock', u'lobster', u'plan']
[u'civilian', u'kill', u'liberia', u'minist']
[u'panorama', u'galleri', u'founder', u'guth', u'die']
[u'plan', u'scrap', u'hotel', u'redevelop']
[u'float', u'pacif', u'pool']
[u'forbid', u'fruit', u'confisc']
[u'polic', u'consid', u'mistak', u'ident', u'hatchet', u'attack']
[u'polic', u'dismiss', u'school', u'complaint']
[u'polic', u'probe', u'cairn', u'stab']
[u'polic', u'dump', u'vehicl', u'link', u'shoot']
[u'polic', u'seek', u'wit', u'fatal', u'belconnen', u'fall']
[u'polic', u'investig', u'recent', u'shoot', u'spree']
[u'primus', u'clear', u'play', u'lion']
[u'profit', u'warn', u'drag', u'wall', u'street']
[u'public', u'hospit', u'doctor', u'consid', u'lift', u'work']
[u'pyrene', u'punish', u'rider', u'climb', u'toll']
[u'quak', u'shake', u'report', u'damag']
[u'qualifi', u'support', u'offer', u'marin', u'plan']
[u'question', u'hang', u'water', u'plan']
[u'rabbitoh', u'sign', u'manu']
[u'cross', u'seek', u'support', u'blaze']
[u'restor', u'lancast', u'bomber', u'return', u'memori']
[u'rethink', u'urg', u'train', u'track', u'fund']
[u'review', u'millennium', u'train', u'project', u'releas']
[u'reward', u'offer', u'murder', u'lead']
[u'report', u'boost', u'govt', u'busi']
[u'road', u'crash', u'put', u'hospit']
[u'robinson', u'threaten', u'ruddock', u'legal', u'action']
[u'role', u'play', u'patient', u'seek', u'student', u'doctor']
[u'rubber', u'plantat', u'plan', u'promis', u'medic', u'benefit']
[u'saint', u'lawrenc', u'hurt', u'smash']
[u'sampra', u'close', u'retir', u'decis', u'report']
[u'santo', u'explor', u'kimberley', u'coast']
[u'saulnier', u'advanc', u'face', u'roddick', u'indianapoli']
[u'schumach', u'titl', u'hop', u'balanc']
[u'senat', u'group', u'tell', u'rais', u'medicar', u'levi']
[u'shake', u'chemotherapi', u'treatment']
[u'sing', u'reflect', u'kangaroo']
[u'sixer', u'boss', u'predict', u'player', u'need', u'time']
[u'sixer', u'boss', u'predict', u'player', u'need', u'time']
[u'sixer', u'hop', u'cash', u'asian', u'basketbal', u'boom']
[u'slater', u'close', u'seventh', u'world', u'titl']
[u'snowtown', u'prosecut', u'continu', u'close', u'address']
[u'snyman', u'scapegoat', u'struggl', u'bok', u'pick']
[u'socceroo', u'skoko', u'sign', u'turkish', u'club']
[u'solomon', u'milit', u'warn', u'accept', u'aust', u'forc']
[u'fishi', u'beat', u'alzheim']
[u'south', u'africa', u'accept', u'draw', u'india']
[u'starri', u'eye', u'cosmonaut', u'scrap', u'space', u'wed']
[u'trace', u'miss', u'father']
[u'kilda', u'lawrenc', u'hurt', u'smash']
[u'strike', u'worker', u'meet']
[u'student', u'meningococc', u'vaccin', u'access']
[u'support', u'draft', u'marin', u'plan']
[u'support', u'propos', u'burni', u'hotel']
[u'surgeon', u'separ', u'twin', u'babi']
[u'surgeri', u'begin', u'conjoin', u'twin', u'babi']
[u'suspect', u'mediterranean', u'fruit', u'fli']
[u'swim', u'coach', u'make', u'plea', u'pool', u'complex', u'access']
[u'talk', u'guantanamo', u'prison', u'begin']
[u'task', u'forc', u'focus', u'keep', u'schooli', u'week']
[u'tasmanian', u'poppi', u'crop', u'face']
[u'tasmanian', u'resign', u'clergi', u'unlik']
[u'teacher', u'industri', u'action', u'avoid']
[u'teacher', u'stop', u'work', u'disput']
[u'tech', u'rebound', u'lift', u'wall', u'street']
[u'tehran', u'deepen', u'probe', u'canadian', u'death']
[u'test', u'star', u'visit', u'tiwi', u'island']
[u'thorp', u'hoogi', u'resum', u'rivalri']
[u'tougher', u'water', u'restrict', u'loom']
[u'tribun', u'glenorchi', u'doctor', u'career']
[u'truss', u'review', u'rat', u'drought']
[u'isra', u'wound', u'anti', u'aircraft']
[u'ullrich', u'upbeat', u'stage']
[u'union', u'snub', u'basslink', u'grind', u'plan']
[u'foreign', u'climber', u'miss', u'andes']
[u'asian', u'group', u'protest', u'racist', u'realiti']
[u'soldier', u'kill', u'iraq', u'grenad', u'attack']
[u'govt', u'buy', u'worker', u'trinket']
[u'viera', u'close', u'commit', u'arsenal']
[u'farmer', u'support', u'call', u'rural', u'telco', u'boost']
[u'walker', u'switch', u'cod', u'sign', u'man']
[u'wall', u'street', u'drag']
[u'wasim', u'face', u'court', u'whiski']
[u'water', u'hazard', u'ahead', u'golf', u'club']
[u'welsh', u'jone', u'claim', u'world', u'record']
[u'whistleblow', u'express', u'concern', u'mccabe', u'case']
[u'wilson', u'join', u'webber', u'jaguar']
[u'winter', u'storm', u'wreak', u'havoc', u'wildlif']
[u'woman', u'plan', u'leav', u'murder', u'accus', u'court', u'hear']
[u'woman', u'bodi', u'near', u'melbourn']
[u'wooli', u'creat', u'job', u'victoria']
[u'work', u'poor', u'suffer', u'medicar', u'senat']
[u'worsfold', u'assault', u'trial', u'move', u'bunburi']
[u'youth', u'jobless', u'rate', u'high', u'richmond', u'tweed']
[u'youth', u'unemploy', u'rate', u'spark', u'concern']
[u'draft', u'joint', u'water', u'plan']
[u'staff', u'return', u'work', u'hour', u'protest']
[u'chief', u'pacif', u'money', u'launder']
[u'farewel', u'senior', u'exec']
[u'agforc', u'pleas', u'state', u'confer']
[u'north', u'review', u'tennant', u'creek', u'servic']
[u'aitken', u'confirm', u'place', u'tour', u'sunraysia']
[u'albani', u'jail', u'child', u'porn']
[u'black', u'drop', u'devin', u'marshal']
[u'alleg', u'rapist', u'free', u'bail']
[u'benefit', u'thorough', u'candid', u'select']
[u'angri', u'resid', u'concern', u'council', u'budget']
[u'anthoni', u'question', u'youth', u'jobless', u'figur']
[u'armstrong', u'eye', u'finish', u'line']
[u'aussi', u'banga', u'arriv', u'cairn']
[u'australian', u'kill', u'indonesian', u'robberi']
[u'aust', u'troop', u'polic', u'conting', u'leav']
[u'barichello', u'bust', u'british', u'trophi']
[u'bassett', u'cop', u'match']
[u'baxter', u'child', u'need', u'centacar']
[u'reveal', u'tape', u'dead', u'scientist']
[u'beatti', u'meet', u'farmer', u'clarifi', u'law']
[u'bell', u'trial', u'hear', u'bond', u'chest', u'plan']
[u'blunder', u'distanc', u'shire', u'resid']
[u'confirm', u'snowfal', u'bluff', u'knoll']
[u'bonlac', u'defend', u'milk', u'decis']
[u'british', u'open', u'champ', u'curti', u'withdraw', u'hartford']
[u'brunker', u'urg', u'power', u'station', u'upgrad']
[u'bryant', u'court', u'futur', u'unclear']
[u'budget', u'road', u'fund', u'boost']
[u'burgoyn', u'ban', u'week']
[u'burma', u'free']
[u'bush', u'aid', u'take', u'blame', u'iraq', u'uranium', u'flap']
[u'busi', u'leader', u'darwin', u'convent']
[u'strike', u'like', u'talk', u'break']
[u'cadet', u'suicid', u'prompt', u'defenc', u'chang']
[u'street', u'children']
[u'canberra', u'play', u'host', u'quantum', u'atom', u'research', u'centr']
[u'carey', u'expect', u'line', u'saint']
[u'cavali', u'sign', u'newbl']
[u'china', u'earthquak', u'kill', u'destroy', u'thousand']
[u'coal', u'alli', u'begin', u'cost', u'cut', u'measur']
[u'communiti', u'bank', u'fund', u'keep', u'grow']
[u'concern', u'aris', u'femal', u'smoke', u'rat']
[u'concern', u'unlik', u'delay', u'skate', u'park']
[u'corretja', u'send', u'pack']
[u'costa', u'freez', u'outsid', u'assist', u'transport', u'dept']
[u'council', u'appoint', u'nurs', u'follow', u'walkout']
[u'council', u'approv', u'fuel', u'conveyor']
[u'council', u'deliv', u'condol', u'motion', u'deceas']
[u'council', u'scrap', u'golf', u'cours', u'propos']
[u'council', u'consid', u'strong', u'opposit']
[u'council', u'contribut', u'indoor', u'pool', u'construct']
[u'council', u'worker', u'strike', u'rise']
[u'court', u'hear', u'guilti', u'plea', u'rivkin', u'jail', u'photo', u'case']
[u'court', u'tell', u'murder', u'accus', u'phone', u'stepfath']
[u'cowboy', u'player', u'return', u'bulldog', u'match']
[u'crean', u'outlin', u'educ', u'plan']
[u'defenc', u'target', u'potenti', u'militari', u'train', u'sit']
[u'diet', u'cut', u'cholesterol', u'drug', u'studi']
[u'doyl', u'slam', u'decis']
[u'driver', u'ban', u'seven', u'time', u'limit']
[u'drought', u'impact', u'worsen', u'murray', u'river']
[u'drug', u'report', u'find', u'disturb']
[u'outlook', u'adelaid']
[u'dust', u'storm', u'envelop', u'town', u'central', u'west']
[u'dutchmen', u'refus', u'bail', u'ecstasi', u'haul']
[u'dutch', u'midfield', u'bosvelt', u'manchest', u'citi']
[u'eagl', u'sign', u'judd']
[u'econom', u'indic', u'point', u'pick']
[u'worker', u'want', u'renew', u'offer']
[u'eiffel', u'tower', u'reopen']
[u'elder', u'consid', u'make', u'bonlac', u'offer']
[u'ethanol', u'assist', u'canegrow']
[u'exchang', u'set', u'sheep', u'lamb', u'record']
[u'expert', u'give', u'thumb', u'jadda', u'centr']
[u'faira', u'concern', u'chang', u'remain']
[u'feder', u'ethanol', u'benefit', u'manildra', u'plant']
[u'ferguson', u'say', u'unit', u'invigor', u'titl']
[u'fifth', u'titl', u'easi', u'ride', u'armstrong', u'discov']
[u'fijian', u'resist', u'pressur', u'reshap', u'govt']
[u'fingleton', u'fight', u'convict', u'high', u'court']
[u'fisheri', u'offic', u'revamp', u'begin']
[u'fli', u'underp', u'caus', u'highway', u'smash']
[u'focus', u'fix', u'home', u'warranti', u'insur']
[u'smash']
[u'free', u'trade', u'talk', u'art', u'leader', u'worri']
[u'frustrat', u'voic', u'leas', u'talk']
[u'fund', u'clarenc', u'fisher']
[u'funer', u'plan', u'iranian', u'canadian', u'journalist']
[u'govt', u'review', u'shore', u'ferri', u'servic']
[u'graham', u'seek', u'world', u'championship', u'medal']
[u'greenland', u'score', u'coup', u'santa', u'claus']
[u'greenpeac', u'oppos', u'shale', u'project']
[u'gympi', u'injur', u'iraq', u'fight']
[u'hatchet', u'victim', u'long', u'road', u'recoveri']
[u'hickmott', u'leoncelli', u'retir']
[u'hickmott', u'leoncelli']
[u'hick', u'habib', u'unlik', u'face', u'death', u'penalti']
[u'alert', u'typhoon', u'sweep']
[u'hodgkin', u'patient', u'risk', u'breast', u'cancer']
[u'homebuy', u'warn', u'outstand', u'rat']
[u'hong', u'kong', u'take', u'subvers', u'peopl']
[u'hoon', u'readi', u'evid', u'judici', u'inquiri']
[u'hope', u'continu', u'tourism', u'boost']
[u'hospit', u'indemn', u'insur', u'discuss']
[u'hussain', u'bid', u'exploit', u'south', u'african', u'misfortun']
[u'icrc', u'scrutinis', u'water', u'rise']
[u'idri', u'admit', u'deton', u'bali', u'bomb']
[u'illeg', u'immigr', u'deport']
[u'inform', u'protect', u'bounti']
[u'inland', u'rail', u'help', u'reviv', u'town', u'compton']
[u'investig', u'underway', u'hmas', u'melbourn']
[u'iraqi', u'news', u'boost', u'wall']
[u'irrig', u'trust', u'commenc', u'water', u'restrict']
[u'israel', u'rule', u'releas', u'milit', u'prison']
[u'italian', u'senat', u'vote', u'boost', u'berlusconi', u'media']
[u'keke', u'releas', u'missionari', u'hostag']
[u'kemp', u'meet', u'concern', u'boat', u'group']
[u'king', u'brother', u'face', u'court']
[u'launceston', u'ratepay', u'improv']
[u'lockyer', u'test']
[u'inflat', u'renew', u'rat', u'specul']
[u'mackay', u'prepar', u'servicemen', u'confer']
[u'magistr', u'blast', u'govt', u'inadequ', u'help']
[u'malaysian', u'court', u'reserv', u'anwar', u'bail', u'appeal', u'judgment']
[u'drop', u'trouser', u'royal', u'garden', u'parti']
[u'face', u'court', u'shot', u'fire', u'polic']
[u'manslaught', u'case', u'rais', u'domest', u'violenc']
[u'mayor', u'happi', u'discuss', u'resourc', u'share']
[u'mcewen', u'chase', u'green', u'pari']
[u'medicar', u'discuss', u'forum']
[u'order', u'stay', u'ladi', u'night']
[u'minardi', u'sign', u'italian', u'bruni', u'test', u'driver']
[u'minist', u'discuss', u'timber', u'resourc']
[u'minist', u'talk', u'perth', u'water']
[u'fund', u'fight', u'graffiti']
[u'mortar', u'liberia', u'capit', u'truce', u'rumbl']
[u'motiv', u'ullrich', u'promis', u'attack']
[u'moya', u'forc', u'work', u'hard', u'croatia', u'open']
[u'say', u'local', u'polic', u'benefit', u'solomon']
[u'museveni', u'say', u'amin', u'face', u'arrest', u'uganda']
[u'nasa', u'manag', u'differ', u'shuttl', u'damag']
[u'alleg', u'saddam', u'tape', u'air']
[u'contract', u'creat', u'worker', u'uncertainti']
[u'york', u'bid', u'farewel', u'salsa', u'queen']
[u'curfew', u'rockhampton']
[u'govt', u'sack', u'warringah', u'council']
[u'teacher', u'hold', u'stop', u'work', u'meet']
[u'film', u'maker', u'name', u'finalist', u'music', u'achiev']
[u'senat', u'suggest', u'shooter', u'stop', u'nation', u'park']
[u'urg', u'provid', u'better', u'servic', u'aborigin']
[u'olymp', u'champion', u'ngeni', u'kenyan', u'trial']
[u'pacif', u'forum', u'chief', u'warm', u'pool', u'govern']
[u'phelp', u'spur', u'australian', u'doubt']
[u'pilot', u'welcom', u'casa', u'restructur']
[u'pizzonia', u'turn', u'jaguar', u'offer']
[u'player', u'fin', u'suspend', u'punch', u'team', u'mate']
[u'call', u'action', u'indigen', u'domest', u'violenc']
[u'meet', u'indigen', u'leader', u'violenc']
[u'polic', u'expect', u'solomon', u'hour']
[u'polic', u'issu', u'warn', u'fake', u'replica', u'weapon']
[u'polic', u'look', u'trip', u'mushroom']
[u'polic', u'lead', u'child', u'disappear']
[u'polic', u'probe', u'tamworth', u'crime', u'wave']
[u'polic', u'reveal', u'clue', u'underworld', u'slay']
[u'polic', u'interview', u'girl', u'suspect', u'abduct']
[u'polic', u'object', u'solomon', u'oper']
[u'port', u'come', u'major', u'mine', u'project']
[u'primus', u'clear', u'bassett', u'cop', u'match']
[u'produc', u'urg', u'boost', u'sheep', u'number']
[u'properti', u'group', u'queri', u'project', u'delay']
[u'public', u'assist', u'seek', u'cattl', u'disappear']
[u'govt', u'lodg', u'transport', u'corridor']
[u'radcliff', u'doubt', u'world', u'championship']
[u'reef', u'face', u'regular', u'bleach', u'expert']
[u'rental', u'disput', u'block', u'nurs', u'home', u'progress']
[u'rental', u'shortag', u'lead', u'price', u'hike', u'agent']
[u'report', u'highlight', u'need', u'improv', u'cooper']
[u'resid', u'ask', u'comment', u'futur', u'coast', u'plan']
[u'resid', u'face', u'develop', u'decis', u'wait']
[u'resourc', u'pool', u'logic', u'solut', u'pacif']
[u'road', u'issu', u'play', u'wooli', u'decis']
[u'roddick', u'indianapoli', u'round']
[u'roman', u'legion', u'readi', u'march', u'manchest']
[u'ross', u'miss', u'east', u'clash']
[u'russia', u'ponder', u'space', u'tourism', u'deal']
[u'saddam', u'son', u'death', u'relief', u'iraqi', u'howard']
[u'safin', u'readi', u'comeback']
[u'sawmil', u'worker', u'benefit', u'upgrad']
[u'senat', u'probe', u'hear', u'hunter', u'doctor', u'woe']
[u'small', u'town', u'benefit', u'latest', u'tourism']
[u'solomon', u'court', u'welcom', u'intervent', u'forc']
[u'solomon', u'forc', u'hide']
[u'solomon', u'return', u'honiara', u'greet']
[u'council', u'happi', u'land', u'act']
[u'sorenstam', u'defend', u'evian', u'master', u'titl']
[u'stanhop', u'fear', u'bushfir', u'grant', u'backlash']
[u'stewart', u'attack', u'silverston', u'deadlin']
[u'stewart', u'quit']
[u'stewart', u'retir', u'south', u'africa', u'test', u'seri']
[u'streeter', u'break', u'free', u'dive', u'record']
[u'strike', u'continu', u'union', u'talk', u'break']
[u'support', u'seek', u'cancer', u'patient']
[u'suspend', u'policeman', u'seek', u'court', u'trial']
[u'tafe', u'teacher', u'oppos', u'increas', u'associ']
[u'household', u'incom', u'lowest', u'australia']
[u'teacher', u'stop', u'work', u'support', u'payris']
[u'teacher', u'continu', u'pressur']
[u'test', u'cricket', u'move', u'north']
[u'thorp', u'demand']
[u'thorp', u'win', u'showdown']
[u'time', u'run', u'develop', u'blueprint']
[u'trade', u'talk', u'foreshadow', u'common', u'market', u'pacif']
[u'trawler', u'prompt', u'concern', u'giant', u'crab', u'fisheri']
[u'turf', u'club', u'happi', u'nomin']
[u'australian', u'injur', u'iraq']
[u'charg', u'ecstasi', u'bust']
[u'unit', u'kick', u'tour', u'crush']
[u'australia', u'welcom', u'saddam', u'son', u'death']
[u'freelanc', u'report', u'trial', u'aceh']
[u'say', u'near', u'perfect', u'dental', u'saddam', u'dead']
[u'say', u'dental', u'visual', u'saddam', u'dead']
[u'soldier', u'kill', u'iraq', u'attack']
[u'vandal', u'think', u'attack']
[u'govt', u'reveal', u'synchrotron', u'final', u'design']
[u'virgin', u'accus', u'qanta', u'spi']
[u'vogel', u'keen', u'bike', u'olymp']
[u'vogel', u'keen', u'bike']
[u'wallabi', u'recal', u'smith']
[u'wall', u'street', u'mix', u'open']
[u'wall', u'street', u'steadi', u'aussi', u'market']
[u'opposit', u'focus', u'wheatbelt']
[u'wast', u'upset', u'council']
[u'well', u'oscar', u'pull', u'auction']
[u'woman', u'charg', u'babi', u'murder', u'grant', u'bail']
[u'woman', u'custodi', u'melvill', u'stab']
[u'world', u'champion', u'emus', u'swamp', u'recruit']
[u'yarrowlumla', u'shire', u'studi', u'bungendor', u'growth']
[u'youth', u'leader', u'lament', u'human', u'right', u'effort']
[u'youth', u'substanc', u'abus', u'address', u'video']
[u'zabaleta', u'advanc', u'austria']
[u'advic', u'expect', u'rivkin', u'medic', u'condit']
[u'delay', u'decis']
[u'age', u'care', u'centr', u'worker', u'strike']
[u'airlin', u'air', u'spi', u'concern']
[u'albani', u'host', u'secur', u'meet']
[u'alcohol', u'target', u'drunken', u'behaviour']
[u'alcohol', u'free', u'zone', u'jindabyn', u'agenda']
[u'alumina', u'record', u'percent', u'profit', u'jump']
[u'anderson', u'futur', u'nation', u'unclear']
[u'boss', u'call', u'social', u'spend']
[u'armstrong', u'relish', u'time', u'trial']
[u'atheist', u'priest', u'regain', u'faith']
[u'athen', u'olymp', u'countri', u'compet']
[u'atsic', u'speak', u'return', u'remain']
[u'atsic', u'unhappi', u'meet', u'snub']
[u'aussi', u'hold', u'bangladesh']
[u'australia', u'seek', u'better', u'access', u'market']
[u'aust', u'sar', u'case', u'confirm']
[u'bait', u'aim', u'address', u'wild', u'problem']
[u'ballarat', u'council', u'pass', u'rat', u'rise']
[u'barminco', u'defend', u'work', u'hour']
[u'belgian', u'hop', u'rise', u'eccleston', u'meet']
[u'bewar', u'copycat', u'protest', u'head', u'warn', u'circuit']
[u'achiev', u'record', u'iron', u'product']
[u'mitsubishi', u'announc', u'plan']
[u'opal', u'lightn', u'ridg']
[u'bleak', u'futur', u'tip', u'asian', u'speci']
[u'bodi', u'saddam', u'son', u'iraqi', u'council', u'member']
[u'brack', u'open', u'revamp', u'colleg']
[u'brazilian', u'photograph', u'shoot', u'dead', u'squatter', u'camp']
[u'build', u'compani', u'scrutini']
[u'louder', u'voic', u'indigen', u'famili', u'violenc']
[u'assess', u'chariti']
[u'canadian', u'polic', u'accus', u'kill', u'iranian']
[u'cancer', u'like', u'diseas', u'threaten', u'tassi', u'devil']
[u'capriati', u'battl', u'past', u'bartoli', u'california']
[u'christma', u'want', u'fin', u'rowdi', u'behaviour']
[u'church', u'consid', u'rise', u'insur', u'cost']
[u'circus', u'get', u'karratha', u'repriev']
[u'claim', u'saddam', u'son', u'recognis', u'photo']
[u'clark', u'respond', u'caus', u'letter']
[u'command', u'highlight', u'need', u'rememb', u'battl']
[u'communiti', u'ralli', u'brisban', u'home', u'invas', u'victim']
[u'compani', u'fin', u'crippl', u'worker']
[u'coron', u'clear', u'whyalla', u'pilot']
[u'coron', u'hand', u'crash', u'find']
[u'council', u'approv', u'pack', u'shed']
[u'council', u'general', u'manag', u'move']
[u'council', u'issu', u'warn', u'fund']
[u'council', u'speak', u'merger']
[u'council', u'urg', u'super', u'review']
[u'council', u'consid', u'airport', u'futur']
[u'council', u'wont', u'provid', u'rfds', u'fund']
[u'court', u'approv', u'forfeitur', u'applic']
[u'court', u'increas', u'sentenc', u'child', u'abus']
[u'court', u'tell', u'case', u'policeman', u'strong']
[u'crawford', u'give', u'minut']
[u'croc', u'draw', u'import', u'short', u'list']
[u'defenc', u'dept', u'ask', u'explain', u'treatment']
[u'deleg', u'gather', u'barramundiprawn', u'confer']
[u'della', u'bosca', u'challeng', u'declar', u'faith', u'staunton']
[u'detent', u'boss', u'say', u'staff', u'train', u'deal']
[u'diego', u'golden', u'goal', u'put', u'brazil', u'final']
[u'dollar', u'climb', u'inflat']
[u'downer', u'hail', u'hick', u'concess']
[u'downer', u'support', u'studi', u'asylum', u'seeker']
[u'draper', u'roll', u'rusedski']
[u'electrolux', u'worker', u'vote']
[u'emhma', u'albatrossem', u'send', u'chopper', u'solomon']
[u'england', u'sign', u'world', u'player', u'agreement']
[u'europ', u'set', u'sight', u'space', u'monopoli']
[u'factori', u'forc', u'evacu']
[u'famili', u'help', u'offer', u'autism', u'support']
[u'farmer', u'govt', u'guid', u'hand']
[u'farmer', u'group', u'back', u'idea', u'state']
[u'farmer', u'welcom', u'good', u'rain']
[u'ferrero', u'advanc', u'austria', u'costa', u'slump']
[u'figueroa', u'agre', u'year', u'deal', u'birmingham']
[u'flinder', u'enact', u'ship', u'arriv', u'sydney']
[u'forc', u'bring', u'hope', u'peac', u'solomon']
[u'arsenal', u'stalwart', u'winterburn', u'retir']
[u'rail', u'chief', u'admit', u'failur']
[u'serd', u'worker', u'face', u'fraud', u'trial']
[u'fund', u'announc', u'north', u'east', u'initi']
[u'fund', u'benefit', u'communiti', u'group']
[u'futur', u'silverston', u'grand', u'prix', u'doubt']
[u'giteau', u'stay', u'brumbi']
[u'god', u'banker', u'murder', u'mafia', u'inquiri']
[u'good', u'snow', u'fall', u'hotham']
[u'govt', u'guarante', u'small', u'airlin', u'piec', u'travel']
[u'govt', u'urg', u'plan', u'evacu', u'south', u'korea']
[u'grain', u'virus', u'stay']
[u'group', u'vow', u'reveng', u'death', u'saddam', u'son']
[u'hamilton', u'take', u'glori', u'armstrong', u'retain', u'yellow']
[u'harbi', u'william', u'back', u'avellino', u'court']
[u'heroin', u'overdos', u'rise', u'illawarra']
[u'hewitt', u'seed', u'fifth', u'open']
[u'hong', u'kong', u'brace', u'typhoon', u'imbudo']
[u'hope', u'resurrect', u'crime', u'prevent', u'strategi']
[u'horizon', u'prepar', u'kempsey', u'grafton', u'servic']
[u'hospit', u'worker', u'reject', u'offer']
[u'humanitarian', u'crisi', u'deepen', u'monrovia', u'battl']
[u'amin', u'coma', u'critic']
[u'india', u'look', u'sponsor', u'follow', u'world']
[u'indigen', u'compo', u'scheme', u'prove', u'slow', u'process']
[u'indonesia', u'aceh', u'exit', u'strategi', u'think', u'tank']
[u'injur', u'worker', u'make', u'good', u'recoveri', u'brother']
[u'inkster', u'ochoa', u'share', u'lead', u'evian', u'master']
[u'inspect', u'focus', u'waterway', u'health']
[u'intern', u'eye', u'darwin', u'prawn', u'farm']
[u'iraqi', u'council', u'pick', u'minist', u'week']
[u'iraqi', u'await', u'proof', u'hussein', u'son', u'death']
[u'jackson', u'shin', u'storm', u'liberti']
[u'jobless', u'centrelink', u'minist', u'court']
[u'job', u'kodak', u'announc', u'cut']
[u'john', u'fire', u'kiwi', u'clash']
[u'joint', u'forc', u'target', u'solomon', u'crimin', u'element']
[u'jone', u'refus', u'write', u'burk']
[u'kafelnikov', u'reach', u'round', u'indianapoli']
[u'keyhol', u'prostat', u'surgeri', u'high', u'demand']
[u'king', u'bros', u'group', u'like', u'sell']
[u'labor', u'welcom', u'death', u'penalti', u'hick']
[u'charg', u'camden', u'parti']
[u'charg', u'rape', u'tortur']
[u'critic', u'injur', u'sydney', u'blast']
[u'get', u'year', u'huge', u'cocain', u'haul']
[u'give', u'suspend', u'sentenc', u'assist', u'suicid']
[u'highlight', u'airport', u'secur', u'breach']
[u'question', u'death']
[u'overcom', u'celtic', u'season', u'match']
[u'market', u'climb', u'slight']
[u'medicar', u'inquiri', u'hear', u'hospit', u'overcrowd', u'woe']
[u'medicar', u'rebat', u'small']
[u'meet', u'eas', u'race', u'restructur', u'stanc']
[u'melbourn', u'lose', u'vice', u'chancellor']
[u'industri', u'air', u'educ', u'polici', u'concern']
[u'minichiello', u'confid', u'ahead', u'test']
[u'minist', u'amus', u'road', u'joke', u'offer']
[u'minist', u'order', u'probe', u'derwent', u'river', u'sewag']
[u'minist', u'report', u'progress', u'cultur', u'trade', u'tariff']
[u'mooney', u'seek', u'townsvill', u'invest']
[u'time', u'seek', u'reef', u'rezon', u'respons']
[u'mortar', u'round', u'shatter', u'liberian', u'truce', u'plan']
[u'rough', u'armi', u'trek']
[u'mysteri', u'surround', u'west', u'wyalong', u'death']
[u'nadal', u'cruis', u'croatia', u'open', u'quarter', u'final']
[u'nebo', u'shire', u'clean', u'trick']
[u'univers', u'rural', u'health', u'murwillumbah']
[u'nigerian', u'cholera', u'outbreak', u'kill']
[u'doubt', u'bodi', u'saddam', u'son', u'iraqi', u'council']
[u'norther', u'race', u'futur', u'doubt']
[u'sale', u'orson', u'well', u'oscar']
[u'servic', u'disrupt', u'ferri', u'run', u'aground']
[u'govt', u'know', u'menangl', u'bridg', u'faulti', u'opposit']
[u'nurs', u'push', u'better', u'care', u'level']
[u'player', u'affect', u'disput', u'mitchel']
[u'build', u'threat', u'state', u'rail']
[u'oppn', u'question', u'govt', u'sewerag', u'tunnel', u'blowout']
[u'opposit', u'condemn', u'busi', u'polic', u'station', u'downgrad']
[u'opposit', u'seek', u'answer', u'replac']
[u'pair', u'jail', u'transexu', u'murder']
[u'paul', u'mccartney', u'take']
[u'peacekeep', u'liberia', u'day']
[u'pentagon', u'plan', u'rotat', u'iraq', u'troop']
[u'perec', u'pull', u'world', u'championship']
[u'piraci', u'time', u'high', u'report']
[u'pizzonia', u'need', u'time', u'stewart']
[u'polic', u'chief', u'call', u'cooper']
[u'polic', u'claim', u'teen', u'admit', u'letterbox', u'blast']
[u'polic', u'continu', u'hous', u'blaze', u'probe']
[u'polic', u'fingerprint', u'norfolk', u'island', u'tourist']
[u'polic', u'probe', u'continu', u'abduct', u'claim']
[u'polic', u'truck', u'crash', u'victim']
[u'popov', u'serv', u'warn', u'hoogenband']
[u'port', u'curti', u'health', u'studi', u'defi', u'percept']
[u'potato', u'farmer', u'chipper', u'rain']
[u'potenti', u'marin', u'park', u'identifi']
[u'prison', u'issu', u'threaten', u'ceas']
[u'prostat', u'test', u'healthi', u'read', u'mark']
[u'raaf', u'join', u'nation', u'game']
[u'rain', u'boost', u'crop', u'hop']
[u'rain', u'bring', u'relief', u'parch', u'farm']
[u'rain', u'fall', u'victoria', u'malle']
[u'red', u'hop', u'return', u'sailor', u'invest']
[u'refineri', u'closur', u'affect', u'job', u'busi']
[u'river', u'bodi', u'consid', u'suspici']
[u'road', u'safeti', u'program', u'reflect', u'concern', u'eleph']
[u'robinson', u'forgeri', u'case', u'adjourn']
[u'robinson', u'face', u'charg']
[u'rotor', u'breakthrough', u'tini', u'scienc']
[u'erupt', u'filter', u'water']
[u'royal', u'underway', u'darwin']
[u'rubber', u'playground', u'surfac', u'examin']
[u'russian', u'cabbi', u'killer', u'arrest']
[u'govt', u'prepar', u'child', u'detent', u'challeng']
[u'govt', u'seek', u'info', u'doorstep', u'babi']
[u'seminar', u'boycott', u'blow', u'medicar', u'packag', u'oppn']
[u'school', u'challeng', u'order', u'music', u'trader']
[u'scientist', u'studi', u'ocean', u'current', u'space']
[u'sexual', u'predat', u'danger', u'releas']
[u'special', u'forc', u'continu', u'hunt', u'saddam']
[u'surgeon', u'boost', u'albani', u'health', u'servic']
[u'talk', u'consid', u'traffic', u'woe', u'near', u'ferri', u'termin']
[u'tamworth', u'region', u'endur', u'storm']
[u'credit', u'rat', u'improv']
[u'doctor', u'stop', u'work', u'insur', u'concern']
[u'teacher', u'udder', u'disgrac', u'parent']
[u'thorp', u'anchor', u'gold', u'australia']
[u'thorp', u'look', u'medal']
[u'thousand', u'flock', u'free', u'singleton', u'concert']
[u'tirana', u'seal', u'upset', u'dinamo', u'tbilisi']
[u'tourist', u'number']
[u'tourist', u'fingerprint', u'norfolk', u'murder']
[u'troop', u'grind', u'honiara']
[u'troop', u'polic', u'touch', u'solomon']
[u'tweed', u'shire', u'rejoin', u'noroc']
[u'apologis', u'courier', u'compani', u'comment']
[u'typhoon', u'imbudo', u'lash', u'south', u'china', u'coast']
[u'watchdog', u'probe', u'chelsea', u'takeov']
[u'union', u'protest', u'park']
[u'uniti', u'seek', u'bypass', u'rout']
[u'evacu', u'foreign', u'liberia']
[u'rule', u'death', u'penalti', u'hick']
[u'send', u'bomb', u'afghan', u'guerrilla']
[u'stock', u'open', u'higher', u'jobless', u'claim', u'figur']
[u'face', u'itali', u'women', u'waterpolo', u'final']
[u'releas', u'photo', u'dead', u'hussein', u'son']
[u'vice', u'chancellor', u'nervous', u'number', u'plan']
[u'nat', u'consid', u'post', u'elect', u'progress']
[u'virgin', u'accus', u'qanta', u'spi']
[u'dairi', u'good', u'bind', u'china']
[u'doesnt', u'want', u'chanc', u'take', u'free', u'trade']
[u'govt', u'defend', u'rent', u'deal']
[u'opposit', u'angri', u'road', u'delay']
[u'warringah', u'administr', u'say', u'merger', u'possibl']
[u'washington', u'press', u'iran', u'qaeda', u'member']
[u'washington', u'send', u'mix', u'signal', u'iraqi', u'foreign']
[u'water', u'supplier', u'defend', u'delay', u'spend']
[u'welford', u'speak', u'magistr', u'condit']
[u'condit', u'close', u'bush', u'road']
[u'whaley', u'spotlight', u'hartford', u'curti']
[u'woman', u'face', u'charg', u'stab']
[u'woman', u'question', u'stab']
[u'young', u'femal', u'footbal', u'attempt', u'overturn']
[u'million', u'grampian', u'cultur', u'tourism', u'centr']
[u'send', u'alston', u'complaint', u'extern', u'panel']
[u'aborigin', u'skeleton', u'year']
[u'enterpris', u'bargain', u'talk', u'breakdown']
[u'vote', u'year', u'term', u'propos']
[u'bushfir', u'inquiri', u'report', u'confront']
[u'implement', u'bushfir', u'report', u'recommend']
[u'agassi', u'lead', u'entri', u'open']
[u'alic', u'wooli', u'cheapest', u'groceri']
[u'alston', u'question', u'independ', u'review']
[u'amwu', u'member', u'strike']
[u'anderson', u'lament', u'test', u'ambush']
[u'ditch', u'plan', u'thai', u'militari', u'bank', u'invest']
[u'austoft', u'worker', u'await', u'offer', u'respons']
[u'australian', u'ordeal', u'toughen', u'bangladesh', u'latif']
[u'australian', u'secur', u'offic', u'guard', u'solomon']
[u'england']
[u'banger', u'build', u'competit', u'total']
[u'bangladesh', u'suffer', u'bat', u'collaps']
[u'bayer', u'delight', u'canola', u'crop', u'approv']
[u'beatti', u'call', u'tree', u'clear', u'meet']
[u'bennett', u'tip', u'tuqiri', u'return']
[u'biaggi', u'aim', u'beat', u'rossi', u'sachsenr', u'track']
[u'revamp', u'stockman', u'hall', u'fame']
[u'bjorn', u'exorcis', u'open', u'demon']
[u'bjorn', u'lead', u'irish', u'open']
[u'bomb', u'explod', u'outsid', u'spanish', u'court']
[u'brazil', u'scientist', u'mutat', u'breast']
[u'british', u'sprinter', u'shoot', u'world', u'trial']
[u'break', u'hill', u'water', u'spark', u'review']
[u'bryant', u'buy', u'wife', u'million', u'peac', u'offer', u'report']
[u'bureau', u'predict', u'rain', u'central']
[u'bushfir', u'prevent', u'plan', u'begin']
[u'bushfir', u'probe', u'head', u'buchan', u'omeo']
[u'call', u'drunken', u'debat', u'austrian', u'parliament']
[u'cambodian', u'prepar', u'elect']
[u'cheney', u'take', u'critic']
[u'citi', u'rubbish', u'wast', u'misconcept']
[u'civilian', u'kill', u'rebel', u'launch', u'embassi', u'attack']
[u'clijster', u'overwhelm']
[u'coke', u'coal', u'demand', u'spark', u'plan']
[u'communiti', u'centr', u'fund', u'spotlight']
[u'concern', u'remain', u'cave', u'access']
[u'coria', u'storm']
[u'council', u'approv', u'rat', u'rise']
[u'council', u'plan', u'water', u'reduct']
[u'council', u'reject', u'huge', u'rat', u'rise']
[u'council', u'seek', u'support', u'walker', u'worker']
[u'council', u'want', u'delay', u'live', u'murray', u'plan']
[u'cowboy', u'prepar', u'bulldog', u'clash']
[u'crawford', u'doubt', u'perth', u'hoodoo', u'clash']
[u'crean', u'reject', u'mine', u'industri', u'concern']
[u'cuban', u'drive', u'coast', u'guard', u'send']
[u'cyclist', u'arriv', u'dubbo', u'week', u'journey']
[u'dareton', u'resid', u'criticis', u'descript']
[u'delagrang', u'disqualfi', u'irish', u'open']
[u'demetriou', u'tight', u'lip', u'futur']
[u'diplomat', u'worsen', u'journalist', u'death']
[u'disney', u'sign', u'digit', u'movi', u'download', u'servic']
[u'doctor', u'want', u'earli', u'resolut', u'indemn', u'packag']
[u'downer', u'head', u'vietnam', u'diplomat', u'mileston']
[u'draper', u'indianapoli']
[u'employe', u'continu', u'picket']
[u'elliott', u'win', u'hold', u'manag']
[u'expert', u'armstrong', u'ullrich']
[u'fallout', u'foster', u'carer', u'crisi', u'continu']
[u'fear', u'diesel', u'spill', u'affect', u'river', u'torren']
[u'govt', u'spend', u'ethanol', u'industri']
[u'govt', u'urg', u'sensibl', u'drought', u'fund']
[u'ferrero', u'join', u'coria', u'quarter', u'final']
[u'fisheri', u'minist', u'outlin', u'aquacultur', u'support']
[u'court']
[u'dictat', u'condit', u'coma']
[u'postal', u'worker', u'win', u'discrimin', u'case']
[u'fund', u'announc', u'south', u'east', u'festiv']
[u'fund', u'boost', u'continu', u'crown', u'thorn', u'fight']
[u'gaza', u'militari', u'chief', u'surviv', u'assassin', u'attempt']
[u'nesta', u'want', u'stam', u'lazio', u'tell', u'milan']
[u'canola', u'decis', u'criticis', u'prematur']
[u'canola', u'decis', u'disappoint', u'minist']
[u'oppon', u'angri', u'canola', u'approv']
[u'gold', u'coast', u'extradit', u'melbourn']
[u'gonzalez', u'error', u'mexico', u'semi', u'final', u'victori']
[u'govt', u'famili', u'bali', u'bomb', u'anniversari']
[u'greenpeac', u'slam', u'canola', u'decis']
[u'group', u'air', u'frustrat', u'petrol', u'sniff', u'death']
[u'group', u'consid', u'nativ', u'titl', u'claim', u'option']
[u'haa', u'jacobson', u'lead', u'connecticut', u'whaley']
[u'hail', u'storm', u'kill', u'flatten', u'home', u'china']
[u'hanson', u'support', u'say', u'member', u'trick']
[u'hawk', u'shrug', u'final', u'setback', u'eagl', u'ponder']
[u'health', u'agreement', u'break', u'border']
[u'heavi', u'rain', u'bring', u'north', u'east', u'flood']
[u'holden', u'boss', u'step']
[u'hop', u'structur', u'bridg', u'traffic', u'woe']
[u'howard', u'deni', u'set', u'condit', u'go']
[u'immigr', u'dept', u'confirm', u'baxter', u'detaine', u'mahza']
[u'indigen', u'footbal', u'player', u'skill']
[u'insur', u'woe', u'delay', u'surgeri']
[u'iraqi', u'sceptic', u'graphic', u'photo']
[u'israel', u'restrict', u'access', u'holi', u'site']
[u'israel', u'withdraw', u'citi', u'free', u'hundr']
[u'israel', u'withdraw', u'citi', u'free']
[u'israel', u'urg', u'bold', u'approach', u'peac', u'plan']
[u'jaguar', u'seek', u'test', u'driver', u'pizzonia', u'refus']
[u'jobsearch', u'take', u'woman', u'receptionist', u'log']
[u'jockey', u'club', u'celebr', u'choisir', u'win']
[u'kalgoorli', u'polic', u'welcom', u'crime', u'stat']
[u'kangaroo', u'crush', u'kiwi']
[u'kean', u'tell', u'celtic', u'spend', u'spend', u'spend']
[u'kewel', u'resum', u'train']
[u'kill', u'palestinian', u'child', u'mishap', u'isra', u'armi']
[u'king', u'miller', u'team', u'deal', u'pacer']
[u'langer', u'hand', u'european', u'ryder', u'captainci']
[u'lazio', u'benfica', u'isra', u'haunt', u'chelsea']
[u'break', u'cairn']
[u'leicestershir', u'cancel', u'sehwag', u'contract']
[u'liberia', u'face', u'human', u'disast', u'battl', u'rage']
[u'liverpool', u'beat', u'thailand', u'rain', u'soak', u'friend']
[u'local', u'shoo', u'port']
[u'macgil', u'grill', u'banger']
[u'charg', u'attack', u'boy']
[u'face', u'court', u'parti', u'death']
[u'marin', u'anim', u'protect', u'welcom']
[u'mayn', u'bail', u'hospit']
[u'mayor', u'defend', u'saturday', u'morn', u'park', u'fee']
[u'meet', u'address', u'illeg', u'fish']
[u'merger', u'high', u'tumut', u'agenda']
[u'minist', u'attack', u'race', u'chang', u'report']
[u'minist', u'say', u'govt', u'connect', u'polic', u'file']
[u'miser', u'leav', u'million', u'guid', u'dog']
[u'missi', u'elliott', u'justin', u'timberlak', u'nomine']
[u'rain', u'need', u'wheatbelt']
[u'motorcyclist', u'kill', u'accid']
[u'moya', u'stay', u'cours', u'fourth', u'croatia', u'titl']
[u'offer', u'raaf', u'base', u'assur']
[u'muster', u'consid', u'comeback']
[u'navi', u'frigat', u'head', u'newcastl']
[u'net', u'sign', u'jason', u'kidd']
[u'newcastl', u'hold', u'brave', u'birmingham', u'malaysia']
[u'york', u'owner', u'protest', u'smoke']
[u'clue', u'wheat', u'virus', u'spread']
[u'painter', u'plead', u'guilti']
[u'govt', u'urg', u'fast', u'track', u'crown', u'land', u'assess']
[u'mine', u'industri', u'cope', u'reduc', u'diesel']
[u'kill', u'kosovo', u'attack', u'polic']
[u'open', u'find', u'hand', u'shoot', u'death']
[u'demand', u'answer', u'mcleod', u'inquiri']
[u'educ', u'polici', u'affect', u'economi']
[u'oppn', u'call', u'govt', u'reveal', u'solomon', u'forc']
[u'question', u'govt', u'plan', u'subsidi']
[u'say', u'scrutini', u'amount', u'polit']
[u'plan', u'state', u'consid', u'unrealist']
[u'play', u'pride', u'forget', u'fatigu', u'talli']
[u'agre', u'special', u'panel', u'need', u'complaint']
[u'reflect', u'birthday', u'approach']
[u'bali', u'bomb', u'anniversari']
[u'pneumonia', u'caus', u'heart', u'attack', u'research']
[u'polic', u'continu', u'probe', u'fatal', u'crash']
[u'polic', u'solomon', u'year']
[u'polic', u'highlight', u'drug', u'crackdown']
[u'polic', u'releas', u'crash', u'victim']
[u'porsch', u'delay', u'return', u'motor', u'race']
[u'port', u'cautious', u'ahead', u'lion', u'clash']
[u'port', u'kembla', u'nuclear', u'wast', u'transport', u'unlik']
[u'posit', u'respons', u'network', u'brough']
[u'power', u'restor', u'part', u'sydney']
[u'probe', u'underway', u'generat', u'crash']
[u'push', u'lure', u'film', u'industri', u'gold', u'coast']
[u'author', u'confid', u'sar', u'tourist', u'threat']
[u'rule', u'crop', u'moratorium']
[u'rain', u'pain', u'ferrero']
[u'rain', u'bring', u'warn', u'livestock', u'owner']
[u'raymond', u'terrac', u'court', u'stay']
[u'rebel', u'target', u'embassi', u'liberia']
[u'regul', u'canola', u'approv']
[u'releas', u'canola', u'get', u'green', u'light']
[u'report', u'attack', u'legal', u'child', u'abus']
[u'resourc', u'push', u'ord', u'higher']
[u'resurg', u'robbi', u'take', u'green', u'jersey', u'contest']
[u'ronaldinho', u'barca', u'debut', u'sunday']
[u'ronaldo', u'readi', u'battl', u'ronaldinho']
[u'sarkar', u'hit', u'defiant', u'bangladesh']
[u'seagul', u'hop', u'soar']
[u'secur', u'high', u'accus', u'face', u'court', u'drug', u'charg']
[u'seed', u'rule', u'champion', u'leagu', u'battl']
[u'serena', u'lead', u'women', u'entri', u'open']
[u'shell', u'exec', u'head', u'cole', u'myer', u'fuel', u'divis']
[u'shepherd', u'woolskin', u'sale']
[u'solomon', u'chief', u'warn', u'extort', u'cultur']
[u'victorian', u'worker', u'payris']
[u'south', u'east', u'rain', u'outlook', u'improv']
[u'southern', u'council', u'face', u'fin', u'river', u'derwent']
[u'southlink', u'driver', u'strike', u'second', u'time']
[u'specul', u'smelter', u'futur']
[u'straw', u'end', u'press', u'confer', u'quiz']
[u'stricken', u'elka', u'stay', u'barcelona']
[u'studi', u'find', u'bereav', u'suffer', u'euthanasia']
[u'substat', u'explos', u'leav', u'thousand', u'power']
[u'govt', u'disappoint', u'decis']
[u'teen', u'leav', u'hospit', u'train', u'jump', u'accid']
[u'telstra', u'put', u'case', u'tower', u'remov']
[u'temp', u'visa', u'holder', u'win', u'right', u'worker']
[u'thaw', u'fridg', u'plant']
[u'thorp', u'settl', u'bronz', u'barcelona']
[u'thousand', u'expect', u'visit', u'kununurra']
[u'thousand', u'flee', u'monrovia', u'fight', u'rag']
[u'divis', u'kill', u'ambush']
[u'tiger', u'frawley']
[u'russian', u'space', u'offici', u'refus', u'visa']
[u'tough', u'condit', u'consid', u'geraldton', u'port']
[u'transadelaid', u'accept', u'respons', u'diesel']
[u'tribun', u'rule', u'victorian', u'trio', u'play']
[u'hurt', u'spanish', u'explos']
[u'union', u'call', u'govt', u'improv', u'region']
[u'uni', u'face', u'piraci', u'suit']
[u'meet', u'make', u'littl', u'progress', u'liberia']
[u'defend', u'free', u'trade', u'offer']
[u'display', u'saddam', u'son', u'bodi', u'journalist']
[u'display', u'touch', u'saddam', u'son', u'bodi', u'media']
[u'politician', u'demand', u'govt', u'releas', u'sept']
[u'allow', u'media', u'view', u'saddam', u'son', u'bodi']
[u'troop', u'storm', u'home', u'arrest', u'ambush', u'suspect']
[u'veteran', u'jone', u'grab', u'evian', u'lead']
[u'govt', u'connex', u'defend', u'rail', u'deal']
[u'govt', u'defend', u'train', u'decis']
[u'govt', u'interven', u'mccabe', u'tobacco', u'case']
[u'vic', u'pay', u'worker', u'rise']
[u'viduka', u'escap', u'ball', u'throw', u'dummi', u'spit']
[u'virgin', u'blue', u'stock', u'market', u'debut']
[u'memori', u'present', u'iraq', u'relic']
[u'waterhous', u'grant', u'interim', u'licenc']
[u'weapon', u'surrend', u'solomon', u'forc']
[u'webber', u'welcom', u'wilson', u'jaguar', u'gun', u'best']
[u'whale', u'popul', u'larger', u'think', u'research']
[u'beckham', u'tell']
[u'winter', u'wonderland', u'continu', u'mountain']
[u'woman', u'jail', u'year', u'ecstasi', u'smash']
[u'woodchip', u'reject', u'protest', u'impact']
[u'worker', u'protect', u'corpor']
[u'world', u'class', u'larkham', u'lift', u'wallabi', u'gregan']
[u'million', u'babi', u'later', u'turn']
[u'adelaid', u'road', u'rage', u'chase', u'end', u'murder']
[u'anderson', u'lament', u'test', u'ambush']
[u'anim', u'activist', u'protest', u'cull']
[u'armstrong', u'predict', u'histor', u'pace', u'tour', u'time', u'trial']
[u'arsenal', u'seaman', u'lehmann']
[u'darwin', u'festiv']
[u'atsic', u'queanbeyan', u'council', u'chair', u'resign']
[u'bangladesh', u'rout', u'aussi', u'wrap', u'seri']
[u'beatti', u'commit', u'govt', u'investig', u'foster', u'care']
[u'beatti', u'commit', u'investig', u'foster', u'care']
[u'bligh', u'act', u'appropri', u'abus', u'claim']
[u'blizzard', u'produc', u'excel', u'ski', u'condit']
[u'blond', u'angel', u'death', u'arrest']
[u'brother', u'refus', u'bail', u'alleg', u'gang', u'rape']
[u'bryant', u'wont', u'play', u'olymp', u'qualifi', u'event']
[u'build', u'industri', u'face', u'insur', u'crisi']
[u'burma', u'militari', u'regim', u'claim', u'foil']
[u'driver', u'strike', u'end']
[u'bush', u'host', u'palestinian']
[u'cambodian', u'prepar', u'general', u'elect']
[u'carey', u'crow']
[u'chelski', u'bank', u'easi', u'malaysia']
[u'clijster', u'capriati', u'reach', u'semi', u'dokic', u'oust']
[u'comment', u'seek', u'sydney', u'road', u'congest', u'plan']
[u'concern', u'feder', u'law', u'hurt', u'farmer']
[u'concern', u'young', u'asylum', u'seeker', u'uncl']
[u'darter', u'sandpip']
[u'death', u'toll', u'chines', u'build', u'collaps', u'rise']
[u'disgrac', u'journalist', u'review', u'film', u'fellow']
[u'displac', u'public', u'servant', u'earn', u'govt', u'critic']
[u'kill', u'polic', u'fire', u'india', u'assam']
[u'essendon', u'keep', u'final', u'hop', u'aliv']
[u'feder', u'pull', u'washington', u'tournament']
[u'ferrero', u'stun', u'zabaleta', u'kitzbuhel']
[u'fight', u'intensifi', u'liberia', u'report']
[u'destroy', u'histor', u'mountain']
[u'gut', u'adelaid', u'classroom']
[u'kill', u'chines', u'coal', u'flood']
[u'domin', u'music', u'industri', u'confer']
[u'negoti', u'track', u'vail']
[u'germani', u'eat', u'catfish', u'dead']
[u'crop', u'approv', u'phase', u'csiro']
[u'crop', u'approv', u'sprout', u'fanfar', u'fear']
[u'golden', u'oldi', u'lead', u'evian', u'master']
[u'govt', u'call', u'send', u'observ', u'hick', u'trial']
[u'govt', u'deport', u'young', u'asylum', u'seeker', u'iran']
[u'govt', u'clean', u'pollut', u'largest', u'lake']
[u'reign', u'evad', u'govt']
[u'hackett', u'win', u'gold', u'phelp', u'shin']
[u'hail', u'shell', u'batter', u'monrovia', u'liberia']
[u'hayden', u'pont', u'steadi', u'chase']
[u'health', u'expo', u'open', u'brisban']
[u'heavi', u'machineri', u'clean', u'adelaid', u'diesel', u'spill']
[u'heavi', u'snow', u'fall', u'resort']
[u'histor', u'agreement', u'eas', u'council', u'aborigin']
[u'hous', u'destroy']
[u'feel', u'pretti', u'good', u'elka']
[u'india', u'face', u'king', u'size', u'aid', u'problem']
[u'indigen', u'communiti', u'mourn', u'right', u'campaign']
[u'isra', u'cabinet', u'discuss', u'releas', u'palestinian']
[u'israel', u'insist', u'west', u'bank', u'secur', u'fenc', u'necess']
[u'armstrong', u'ullrich', u'closest', u'finish']
[u'jacobsen', u'move', u'shoot', u'clear', u'whaley', u'miss']
[u'korean', u'veteran', u'push', u'recognit']
[u'landmark', u'vote', u'send', u'japanes', u'troop', u'iraq']
[u'langer', u'fall', u'aussi', u'start', u'chase']
[u'lastra', u'inspir', u'tour', u'victori', u'mother']
[u'lehmann', u'post', u'centuri', u'aussi', u'control']
[u'lehmann', u'top', u'aussi', u'control']
[u'liberian', u'rebel', u'declar', u'ceas']
[u'live', u'music', u'venu', u'kilda', u'threat']
[u'liza', u'minnelli', u'husband', u'david', u'gest', u'separ']
[u'lobster', u'associ', u'happi', u'govt', u'decis']
[u'long', u'servic', u'leav', u'forum', u'plan']
[u'lynn', u'lead', u'irish', u'open']
[u'lynn', u'lead', u'campbel', u'tail', u'irish', u'open']
[u'kill', u'road', u'rage', u'incid']
[u'undergo', u'emerg', u'surgeri']
[u'matilda', u'scoreless', u'draw']
[u'mcewen', u'grab', u'green', u'jersey']
[u'mcgrath', u'gillespi', u'wrap', u'bangladesh', u'tail']
[u'miss', u'child', u'adelaid']
[u'mental', u'afflict', u'yorker']
[u'injur', u'larg', u'quak', u'jolt', u'japan']
[u'iraqi', u'paper', u'spurn', u'photo', u'saddam', u'dead']
[u'moya', u'give', u'ferrer', u'chanc', u'nadal']
[u'nake', u'chef', u'victim', u'hoax', u'email']
[u'newspap', u'editor', u'arrest', u'azerbaijan']
[u'nigeria', u'consid', u'troop', u'deploy']
[u'civilian', u'shoot', u'dead', u'indonesia', u'aceh']
[u'govt', u'reject', u'claim', u'plant', u'pose', u'risk']
[u'look', u'forward', u'drought', u'break', u'rain']
[u'polic', u'continu', u'search']
[u'adopt', u'wait', u'approach', u'rule']
[u'drop', u'routin', u'sar', u'screen']
[u'korea', u'prepar', u'conduct', u'nuclear', u'test', u'report']
[u'motorist', u'urg', u'slow', u'long', u'weekend']
[u'kill', u'wound', u'shoot']
[u'oscar', u'win', u'director', u'schlesing', u'die']
[u'palestinian', u'meet', u'sharon', u'talk']
[u'pariti', u'domin', u'labor', u'meet']
[u'rise', u'detect']
[u'philippin', u'presid', u'arroyo', u'say', u'coup', u'plot']
[u'pictur', u'saddam', u'son', u'splash', u'arab']
[u'pittman', u'rival', u'danver', u'injuri']
[u'play', u'abandon', u'england', u'south', u'africa', u'test']
[u'polic', u'appeal', u'help', u'miss', u'person']
[u'polic', u'theft', u'shock']
[u'polic', u'bodi', u'miss', u'fisherman']
[u'polic', u'clue', u'murder', u'case']
[u'polic', u'hunt', u'steal']
[u'port', u'dredg', u'impact', u'predict']
[u'port', u'grab', u'spot', u'gabba', u'thriller']
[u'public', u'urg', u'ant']
[u'qualiti', u'concern', u'mayn', u'negoti', u'hospit', u'sale']
[u'quiet', u'celebr', u'howard', u'turn']
[u'rann', u'interven', u'shoot', u'sentenc']
[u'richmond', u'come', u'home', u'strong', u'bulldog']
[u'rossi', u'take', u'provision', u'pole', u'germani']
[u'rubber', u'duck', u'spot', u'float', u'pacif']
[u'rule', u'take', u'girl', u'mix', u'team', u'bench']
[u'sapphir', u'lose', u'shine', u'latvia']
[u'score', u'injur', u'earthquak', u'rattl', u'japan']
[u'eagl', u'batter', u'bronco']
[u'william', u'dargi', u'die', u'age']
[u'solomon', u'intervent', u'forc', u'top']
[u'solomon', u'deni', u'order', u'vehicl', u'theft']
[u'solomon', u'policeman', u'beat', u'peacekeep', u'begin']
[u'solomon', u'rebel', u'leader', u'urg', u'surrend', u'arm']
[u'srichaphan', u'down', u'draper', u'indianapoli', u'quarter']
[u'stori', u'place', u'reveal', u'cape', u'york']
[u'strong', u'econom', u'data', u'send', u'wall', u'higher']
[u'struggl', u'indemn', u'scheme', u'threaten', u'builder']
[u'rain', u'eas', u'pressur', u'farmer']
[u'tension', u'korea', u'increas']
[u'thorp', u'hail', u'incred', u'phelp']
[u'dead', u'dozen', u'wound', u'attack', u'monrovia']
[u'kidnap', u'judg', u'pakistan', u'jail']
[u'soldier', u'kill', u'guard', u'iraqi', u'children']
[u'soldier', u'kill', u'iraq']
[u'lead', u'saddam', u'bodyguard']
[u'tourist', u'find', u'wwii', u'refuge', u'messag', u'bottl']
[u'brother', u'face', u'gang', u'rape', u'charg']
[u'face', u'court', u'alleg', u'assault']
[u'ullrich', u'taunt', u'armstrong', u'tour', u'time', u'test']
[u'uni', u'learn', u'corpor', u'sector', u'studi']
[u'firm', u'consid', u'buy', u'russian', u'space', u'craft']
[u'slap', u'sanction', u'north', u'korea', u'missil', u'sale']
[u'stock', u'rise', u'durabl', u'order', u'lift']
[u'resort', u'receiv', u'need', u'snow']
[u'bali', u'fund', u'distribut', u'relief', u'payment']
[u'council', u'collar']
[u'wallabi', u'bledislo', u'defeat', u'gregan']
[u'treatment', u'abus', u'victim', u'applaud']
[u'weapon', u'public', u'destroy', u'solomon']
[u'webber', u'warn', u'track', u'invad']
[u'wine', u'market', u'confer', u'kick']
[u'woman', u'sentenc', u'book', u'theft']
[u'fishermen', u'miss', u'rough', u'bangladesh']
[u'mazen', u'govern', u'arafat']
[u'aceh', u'separatist', u'root']
[u'jazeera', u'say', u'forc', u'arrest', u'employe']
[u'disappoint', u'csiro', u'scientist', u'redund']
[u'ambassador', u'releas', u'roug', u'filipino', u'soldier']
[u'anger', u'mugab', u'stay', u'control', u'zimbabw']
[u'armstrong', u'aim', u'event', u'tour']
[u'armstrong', u'close', u'victori', u'ullrich', u'crash']
[u'armstrong', u'seat', u'ullrich', u'fall']
[u'arroyo', u'expos', u'militari', u'coup', u'plot']
[u'arroyo', u'extend', u'ultimatum', u'deadlin', u'rebel']
[u'arroyo', u'give', u'militari', u'rebel', u'ultimatum']
[u'rebel', u'soldier', u'surrend', u'philippin']
[u'dead', u'flood', u'eastern', u'indian', u'state']
[u'rebel', u'soldier', u'surrend', u'ahead']
[u'aust', u'ambassador', u'catch', u'manila', u'sieg']
[u'aust', u'ambassador', u'hold', u'manila', u'mall', u'sieg', u'report']
[u'aust', u'minist', u'arriv', u'singapor', u'region']
[u'australia', u'disqualifi', u'medley', u'relay']
[u'beep', u'beep', u'youv', u'messag', u'divorc']
[u'biaggi', u'take', u'pole', u'german', u'grand', u'prix']
[u'birmingham', u'thrash', u'malaysia', u'asia']
[u'bjorn', u'regain', u'lead', u'ahead', u'irish', u'final', u'round']
[u'bligh', u'beatti', u'reject', u'resign', u'call']
[u'brisban', u'hydrant', u'shortag', u'caus', u'concern']
[u'brother', u'sister', u'kill', u'hous']
[u'bulldog', u'overpow', u'north', u'queensland']
[u'cambodian', u'poll', u'booth', u'open']
[u'cambodian', u'poll', u'close']
[u'centenari', u'tour', u'surpass', u'expect', u'leblanc']
[u'chamber', u'charg', u'british', u'trial', u'victori']
[u'charg', u'moot', u'hoaxer', u'line']
[u'chelsea', u'happi', u'play', u'champion', u'leagu', u'israel']
[u'child', u'deport', u'detain', u'father', u'tell']
[u'claim', u'petrol', u'market', u'domin', u'discount', u'supplier']
[u'cole', u'entri', u'discount', u'petrol', u'market']
[u'conserv', u'council', u'disput', u'plan']
[u'cook', u'announc', u'green', u'jersey']
[u'cop', u'steal', u'pride', u'parad']
[u'coria', u'set', u'massu', u'showdown']
[u'deni', u'intimid', u'cambodian', u'vote']
[u'crean', u'say', u'region', u'terror', u'summit', u'need']
[u'crean', u'grind', u'badgeri', u'creek', u'airport', u'plan']
[u'crean', u'badgeri', u'creek', u'airport']
[u'crocker', u'stun', u'upset', u'phelp']
[u'dargi', u'paint', u'indigen', u'advoc']
[u'death', u'marin', u'suspici', u'polic']
[u'decis', u'nigerian', u'troop', u'deploy', u'liberia']
[u'democrat', u'accus', u'govt', u'separ', u'refuge']
[u'doctor', u'deter']
[u'drought', u'caus', u'problem', u'lake', u'eucumben']
[u'drought', u'cut', u'serbia', u'electr', u'suppli']
[u'earli', u'elect', u'possibl', u'howard']
[u'earthquak', u'western', u'turkey', u'injur']
[u'educ', u'guidelin', u'success']
[u'elka', u'compet', u'hobart', u'despit', u'barca', u'collaps']
[u'emot', u'zhou', u'faint', u'relay', u'gold']
[u'famili', u'drug', u'support', u'spread', u'wing']
[u'destroy', u'local', u'bowl', u'club']
[u'soldier', u'charg', u'abus', u'iraqi', u'pow']
[u'futur', u'leader', u'nation', u'parti', u'unknown', u'vail']
[u'govt', u'ask', u'investig', u'franc', u'grave', u'claim']
[u'govt', u'deadlin', u'philippin', u'rebel', u'laps']
[u'govt', u'need', u'readdress', u'secur', u'issu', u'bartlett']
[u'guantanamo', u'detaine', u'habib', u'forget', u'wife']
[u'howard', u'say', u'decis', u'join', u'iraq', u'tough']
[u'inkster', u'clinch', u'record', u'break', u'webb']
[u'insur', u'woe', u'pharmaceut', u'ill']
[u'iran', u'open', u'tougher', u'nuclear', u'check', u'offici', u'say']
[u'jacobsen', u'maintain', u'shoot', u'lead', u'greater']
[u'japanes', u'food', u'outlet', u'readi', u'invad', u'south', u'korea']
[u'labor', u'review', u'health', u'insur', u'rebat']
[u'lehmann', u'fall', u'record', u'test', u'score']
[u'lendu', u'militia', u'massacr', u'dozen', u'congo', u'offici']
[u'liberian', u'rebel', u'push', u'bridg']
[u'liberian', u'rebel', u'push', u'bridg']
[u'local', u'nation']
[u'love', u'bring', u'maiden', u'test', u'waugh', u'declar']
[u'makaay', u'say', u'join', u'bayern']
[u'question', u'sydney', u'stab']
[u'charg', u'take', u'knife', u'nightclub']
[u'injur', u'bomb', u'explod', u'cambodian']
[u'kill', u'motorcycl', u'accid']
[u'plan', u'passion', u'merced', u'grave']
[u'midwiv', u'push', u'upper', u'hous']
[u'mother', u'learn', u'son', u'death', u'news']
[u'moya', u'face', u'volandri', u'croatia', u'open', u'final']
[u'campaign', u'spark', u'bitter']
[u'internet', u'crime', u'unit', u'track', u'paedophil']
[u'govt', u'build', u'primari', u'classroom']
[u'observ', u'cambodian', u'elect', u'smooth']
[u'soldier', u'kill', u'wound', u'baghdad']
[u'palestinian', u'press', u'hail', u'bush', u'critic', u'israel']
[u'petrol', u'station', u'staff', u'rob', u'knifepoint']
[u'philippin', u'rebel', u'demand', u'court', u'martial', u'waiver']
[u'philippin', u'rebel', u'return', u'barrack', u'end']
[u'philippin', u'delay', u'rebel', u'assault', u'talk']
[u'philippin', u'rebel', u'soldier', u'stand']
[u'phoenix', u'cement', u'spot', u'kestrel']
[u'polic', u'follow', u'fresh', u'lead', u'bodney', u'murder']
[u'polic', u'investig', u'death', u'marino']
[u'polic', u'hunt', u'thief']
[u'polic', u'search', u'road', u'rage', u'victim', u'attack']
[u'polic', u'releas', u'name', u'crash', u'victim']
[u'power', u'restor', u'east', u'brisban', u'suburb']
[u'deal', u'seal', u'london', u'base', u'socceroo']
[u'raider', u'crush', u'shark', u'tiger', u'hammer', u'knight']
[u'raid', u'estrada', u'own', u'hous', u'turn', u'munit']
[u'rail', u'servic', u'perth', u'continu', u'disrupt']
[u'record', u'break', u'smith', u'humbl', u'england']
[u'roddick', u'paradorn', u'reach', u'seed', u'showdown']
[u'rogu', u'filipino', u'soldier', u'releas', u'australian']
[u'rogu', u'soldier', u'hold', u'aussi', u'manila']
[u'rogu', u'troop', u'hold', u'manila', u'mall', u'report']
[u'roll', u'stone', u'jagger', u'celebr', u'year']
[u'rooney', u'injuri', u'scare']
[u'rooster', u'hold', u'panther']
[u'rspca', u'find', u'claim', u'tortur', u'brumbi', u'outrag']
[u'rural', u'resid', u'earn', u'rubbish', u'collect']
[u'seven', u'kill', u'monrovia', u'mortar', u'attack']
[u'shark', u'board', u'determin', u'anderson', u'futur']
[u'solomon', u'polic', u'chief', u'order', u'surrend']
[u'space', u'factori', u'plan', u'crystallis']
[u'specialist', u'concern', u'indemn', u'problem']
[u'sprint', u'tsar', u'popov', u'claim', u'doubl', u'phelp', u'upstag']
[u'sterilis', u'rule', u'tip', u'rais', u'patient', u'cost']
[u'sydney', u'beat', u'freo', u'pie', u'hammer', u'blue', u'crow', u'thrash']
[u'farmer', u'look', u'market']
[u'taylor', u'agre', u'plan', u'buffer', u'zone']
[u'teenag', u'girl', u'come', u'bench']
[u'telstra', u'deni', u'plan', u'charg']
[u'telstra', u'deni', u'plan', u'surcharg']
[u'charg', u'fatal', u'macksvill', u'shoot']
[u'peopl', u'stab', u'cabramatta', u'home']
[u'tree', u'plant', u'repair', u'damag']
[u'trust', u'sale', u'anger', u'benefactor']
[u'bomb', u'explod', u'cambodian', u'capit', u'elect']
[u'children', u'kill', u'hous']
[u'take', u'custodi', u'chase']
[u'ullrich', u'crash', u'end', u'tour', u'hop']
[u'engin', u'start', u'demolish', u'hous', u'uday']
[u'marin', u'kill', u'wound', u'grenad', u'blast']
[u'vail', u'indic', u'america', u'offer', u'lack']
[u'veteran', u'korean', u'memori']
[u'veteran', u'commemor', u'korean']
[u'wallabi', u'bledislo', u'defeat', u'gregan']
[u'waugh', u'bring', u'test', u'centuri']
[u'williamson', u'stage', u'darwin', u'festiv', u'workshop']
[u'work', u'hour', u'have', u'effect', u'aussi', u'famili']
[u'yothu', u'yindi', u'strike', u'chord', u'youth']
[u'zimbabw', u'court', u'defer', u'rule', u'treason', u'discharg']
[u'injur', u'kashmir', u'explos']
[u'aceh', u'rebel', u'kill', u'militari']
[u'evacu', u'follow', u'bondi', u'restaur']
[u'abattoir', u'begin', u'process']
[u'airlin', u'case', u'throw']
[u'airport', u'plan', u'crean', u'pressur']
[u'airport', u'upgrad', u'take']
[u'shift', u'blame', u'level', u'gambl', u'help', u'fund']
[u'approv', u'seek', u'cape', u'york', u'bodi']
[u'armstrong', u'tour', u'legend', u'fifth', u'straight']
[u'armstrong', u'make', u'histori', u'cook', u'leav', u'mcewen']
[u'armstrong', u'make']
[u'arroyo', u'downplay', u'mutini', u'damag']
[u'arroyo', u'order', u'probe', u'manila', u'mutini']
[u'athen', u'lawyer', u'file', u'suit', u'blair', u'iraq']
[u'aussi', u'domin', u'sprint', u'armstrong', u'grab', u'fifth']
[u'aust', u'china', u'start', u'fresh', u'human', u'right', u'talk']
[u'australian', u'spend', u'sport', u'relat', u'injuri']
[u'aust', u'singapor', u'trade', u'deal', u'come', u'forc']
[u'award', u'go', u'gippsland', u'plane', u'maker']
[u'bank', u'mine', u'sector', u'boost', u'ord']
[u'beatlemania', u'rememb', u'decad']
[u'beatti', u'say', u'sugar', u'law', u'month', u'away']
[u'blaze', u'damag', u'centr']
[u'hope', u'die', u'age']
[u'boost', u'child', u'care', u'servic']
[u'boost', u'univers', u'immunolog', u'microbiolog', u'unit']
[u'bosnia', u'herzegovina', u'mass', u'grave', u'excav']
[u'brack', u'launch', u'marina', u'plan']
[u'british', u'wannab', u'crown', u'world', u'karaok', u'champion']
[u'burma', u'say', u'detent', u'indefinit']
[u'burmes', u'minist', u'say', u'plan', u'releas']
[u'bushfir', u'inquiri', u'hear', u'polit', u'infight']
[u'bushfir', u'inquiri', u'report', u'releas', u'week']
[u'busi', u'weekend', u'polic']
[u'bigger', u'region', u'push']
[u'hoax', u'call', u'carri', u'fine']
[u'homeless', u'help']
[u'cambodian', u'brace', u'polit', u'conflict']
[u'campbel', u'shatter', u'bjorn', u'comeback', u'hop', u'play']
[u'bomb', u'explod', u'spanish', u'airport']
[u'cattl', u'export', u'defend', u'industri', u'safeti']
[u'cautious', u'support', u'ethanol']
[u'job']
[u'chelsea', u'win', u'asia', u'penalti', u'shoot']
[u'claim', u'british', u'govern', u'plot', u'undermin']
[u'clijster', u'capriati', u'stanford', u'showdown']
[u'clijster', u'battl', u'past', u'capriati', u'california']
[u'clijster', u'set', u'sight', u'grand', u'slam', u'victori']
[u'commut', u'strand', u'disput', u'continu']
[u'consult', u'welcom', u'hybrid', u'canola', u'news']
[u'cook', u'edg', u'mcewen', u'tour', u'green', u'jersey']
[u'cook', u'roast', u'mcewen', u'tour', u'green', u'line']
[u'coria', u'beat', u'massu', u'second', u'success', u'titl']
[u'council', u'approv', u'lime', u'kiln', u'project']
[u'council', u'cut', u'capit', u'work']
[u'council', u'give', u'mudcrab', u'farm']
[u'council', u'join', u'effort', u'boost', u'north', u'west', u'flight']
[u'councillor', u'air', u'farmer', u'associ', u'money', u'concern']
[u'council', u'leav', u'tree', u'near', u'school']
[u'court', u'rule', u'children', u'detent']
[u'cowra', u'wine', u'tast', u'begin']
[u'cambodian', u'poll']
[u'crean', u'face', u'revolt', u'airport', u'plan']
[u'custodi', u'arrang', u'spotlight']
[u'dalbi', u'instal', u'secur', u'camera']
[u'democrat', u'condemn', u'wast', u'money']
[u'deputi', u'question', u'airport', u'plan']
[u'drought', u'dollar', u'hurt', u'rural', u'sector']
[u'drought', u'take', u'toll', u'sheep', u'number']
[u'emerg', u'servic', u'monitor', u'flood', u'potenti']
[u'european', u'hostag', u'move', u'rebel', u'mali', u'report']
[u'extens', u'program', u'darwin', u'festiv']
[u'fear', u'air', u'tafe', u'servic']
[u'govt', u'speak', u'ansett', u'payment', u'concern']
[u'wound', u'grenad', u'blast', u'indian', u'kashmir']
[u'home', u'buyer', u'struggl', u'survey']
[u'focus', u'boy', u'educ']
[u'arrest', u'field', u'drug', u'oper']
[u'garrett', u'open', u'centr', u'record', u'studio']
[u'geraldton', u'host', u'coastal', u'gather']
[u'gibernau', u'edg', u'rossi', u'bayliss', u'podium']
[u'gold', u'bounc', u'british', u'titl']
[u'green', u'pleas', u'wast', u'dump', u'remov', u'effort']
[u'hackett', u'take', u'final', u'gold']
[u'hackett', u'win', u'gold', u'phelp', u'steal']
[u'hadle', u'move', u'sideway', u'zealand', u'shake']
[u'health', u'group', u'demand', u'action', u'govt']
[u'hill', u'natur', u'resourc']
[u'hodgson', u'secur', u'manufactur', u'titl', u'ducati']
[u'hope', u'banana', u'decis', u'overturn']
[u'horizon', u'begin', u'servic']
[u'hous', u'price', u'rise']
[u'hugh', u'face', u'match']
[u'imam', u'samudra', u'deserv', u'court', u'tell']
[u'indigen', u'grow', u'sothebi']
[u'indigen', u'own', u'agenc', u'look', u'local']
[u'iraq', u'council', u'want', u'son', u'bodi', u'give', u'saddam']
[u'irrig', u'score', u'court']
[u'isra', u'troop', u'wind', u'protest', u'wit']
[u'israel', u'vote', u'free', u'palestinian', u'milit']
[u'tougher', u'expect', u'admit', u'aussi']
[u'jacobsen', u'triumph', u'connecticut']
[u'jone', u'add', u'wallabi', u'squad']
[u'jone', u'betray', u'wallabi', u'coach']
[u'judg', u'delay', u'child', u'detent', u'rule']
[u'juri', u'empanel', u'murder', u'trial']
[u'katan', u'consid', u'pool', u'revamp']
[u'labor', u'call', u'carer', u'allow', u'review']
[u'landcar', u'forum', u'expect', u'spark']
[u'leak', u'document', u'keep', u'pressur', u'bligh']
[u'lethal', u'back', u'lion', u'roar']
[u'leukaemia', u'studi', u'examin', u'diseas', u'trigger']
[u'liberian', u'rebel', u'reject', u'peac', u'propos']
[u'loeb', u'hold', u'gronholm', u'tight']
[u'macgil', u'shane', u'stand', u'waugh']
[u'malaysia', u'deni', u'knowledg', u'indonesian', u'rebel']
[u'manila', u'rebel', u'claim', u'moral', u'victori']
[u'unit', u'put', u'stylish']
[u'matilda', u'scoreless', u'draw', u'japan']
[u'mcewan', u'reflect', u'tour', u'outcom']
[u'mcewen', u'reflect', u'tour', u'outcom']
[u'mcgee', u'look', u'lifetim', u'dream']
[u'meet', u'consid', u'youth', u'centr', u'plan']
[u'mexico', u'edg', u'brazil', u'gold', u'final']
[u'drought', u'applic', u'expect']
[u'shop', u'plan']
[u'motorist', u'tip', u'benefit', u'competit']
[u'moya', u'win', u'record', u'fourth', u'croatian', u'crown']
[u'moya', u'win', u'record', u'fourth', u'croation', u'crown']
[u'sound', u'engin', u'school']
[u'nation', u'task', u'forc', u'probe', u'murray', u'flow', u'impact']
[u'nation', u'trust', u'report', u'criticis']
[u'nation', u'trust', u'report', u'meet', u'opposit']
[u'nemo', u'find', u'success', u'disney', u'pixar']
[u'newcrest', u'share', u'soar', u'posit', u'gold', u'news']
[u'nixon', u'order', u'waterg', u'break', u'aid', u'say']
[u'charg', u'brawl', u'miln', u'cop']
[u'race', u'centuri', u'waugh', u'say', u'tendulkar']
[u'physician', u'appoint', u'commonwealth']
[u'step', u'search', u'dentist']
[u'nurs', u'group', u'speak', u'concern']
[u'nurs', u'warn', u'action', u'cut', u'ahead']
[u'offici', u'consid', u'solomon', u'amnesti']
[u'ogradi', u'receiv', u'special', u'tour', u'prize']
[u'opposit', u'earli', u'leader', u'cambodia', u'vote']
[u'pair', u'charg', u'shoot', u'death', u'refus', u'bail']
[u'palestinian', u'cheer', u'israel', u'remov', u'checkpoint']
[u'peter', u'garrett', u'launch', u'outback', u'music', u'studio']
[u'phelp', u'aim', u'outstrip', u'rival', u'thorp']
[u'phelp', u'aim', u'outstrip', u'thorp', u'olymp', u'horizon']
[u'philippin', u'travel', u'advic', u'revis']
[u'visit', u'cape', u'import', u'say', u'beatti']
[u'polic', u'charg', u'pair', u'aggrav', u'burglari']
[u'polic', u'investig', u'airport', u'secur', u'breach']
[u'polic', u'probe', u'servic', u'station', u'hold']
[u'polic', u'speak', u'drink', u'drive', u'arrest']
[u'port', u'kembla', u'smelter', u'close', u'partner']
[u'pressur', u'mount', u'bligh', u'child', u'abus', u'claim']
[u'prosecutor', u'seek', u'death', u'imam', u'samudra']
[u'race', u'yacht', u'rescu', u'coff']
[u'rebel', u'soldier', u'defus', u'bomb', u'build']
[u'rise', u'dollar', u'hurt', u'wine', u'export', u'economist']
[u'roddick', u'down', u'paradorn', u'indianapoli', u'titl']
[u'roddick', u'readi', u'list', u'american']
[u'ronaldinho', u'debut', u'barca', u'friend']
[u'rooney', u'month', u'ligament', u'damag']
[u'roundtabl', u'rule', u'youth', u'curfew']
[u'rspca', u'call', u'live', u'anim', u'trade']
[u'saddam', u'tri', u'kill', u'british']
[u'sar', u'surveil', u'scale']
[u'saudi', u'shootout', u'claim', u'live']
[u'schedul', u'cost', u'record', u'say', u'hackett']
[u'school', u'stay', u'open', u'teacher', u'stop', u'work']
[u'search', u'fisherman', u'brisban', u'extend']
[u'seizur', u'like', u'caus', u'fatal', u'crash', u'polic']
[u'sexual', u'abus', u'author', u'plead', u'guilti', u'underag']
[u'shark', u'hierarchi', u'discuss', u'anderson', u'outburst']
[u'shire', u'highlight', u'project', u'budget']
[u'shire', u'help', u'boost', u'transport', u'option']
[u'shire', u'open', u'recreat', u'centr']
[u'snow', u'boost', u'weekend', u'tourism']
[u'snowtown', u'juri', u'hear', u'close', u'address']
[u'solomon', u'militia', u'request', u'amnesti']
[u'solomon', u'polic', u'deputi', u'swear']
[u'specialist', u'teach', u'vacanc']
[u'sport', u'complex', u'open', u'south', u'east']
[u'kid', u'sleuth', u'number']
[u'stanhop', u'commit', u'public', u'servant']
[u'state', u'feder', u'health', u'impass']
[u'state', u'billion', u'telescop']
[u'strike', u'talk', u'bus', u'run', u'normal']
[u'string', u'mishap', u'includ', u'live', u'lose']
[u'sydney', u'doesnt', u'need', u'second', u'airport']
[u'tasmanian', u'fibr', u'appoint', u'chairman']
[u'opposit', u'seek', u'surgic', u'equip', u'probe']
[u'union', u'seek', u'chang', u'worker', u'compo']
[u'tent', u'embassi', u'protest', u'fear', u'camp']
[u'tour', u'franc', u'stage', u'winner']
[u'tourism', u'industri', u'put', u'woe']
[u'townsvill', u'pack', u'countri', u'crowd']
[u'tree', u'clear', u'deal', u'involv', u'farmer', u'talk']
[u'tweed', u'agent', u'face', u'court']
[u'ullrich', u'tour', u'limelight', u'aw', u'year']
[u'union', u'welcom', u'blair', u'athol', u'rule']
[u'ambassador', u'head', u'york']
[u'close', u'saddam']
[u'soldier', u'target', u'iraq', u'grenad', u'attack']
[u'troop', u'releas', u'jazeera', u'cameraman', u'iraq']
[u'troop', u'struggl', u'death', u'colleagu']
[u'vaughan', u'hail', u'best', u'centuri']
[u'veron', u'chelsea', u'unit', u'turn', u'press']
[u'cabinet', u'minist', u'mildura']
[u'farmer', u'grow', u'commerci']
[u'virenqu', u'see', u'spot', u'record', u'equal']
[u'govt', u'goldfield', u'tender']
[u'warn', u'groceri', u'price', u'discount']
[u'water', u'pipelin', u'ahead']
[u'waugh', u'back', u'macgil', u'challeng', u'warn']
[u'waugh', u'back', u'macgil', u'secur', u'berth']
[u'welfar', u'group', u'optimist', u'fate', u'child']
[u'wine', u'confer', u'focus', u'brand', u'build']
[u'wool', u'trader', u'remain', u'posit']
[u'world', u'swim', u'championship', u'podium', u'place']
[u'wrath', u'leav', u'dutson', u'down', u'committe']
[u'youth', u'involv', u'skate', u'park', u'plan']
[u'zambia', u'boat', u'disast', u'leav', u'peopl', u'drown']
[u'abar', u'back', u'crop', u'ahead']
[u'aborigin', u'skull', u'hand']
[u'aceh', u'rebel', u'negoti', u'trial', u'terror']
[u'acoss', u'say', u'negat', u'gear', u'scrap']
[u'teacher', u'follow', u'strike', u'lead']
[u'industri', u'feel', u'heat', u'child', u'nutrit']
[u'approv', u'father', u'chang']
[u'albani', u'reject', u'review']
[u'allenbi', u'latest', u'rank']
[u'ord', u'follow', u'flat', u'lead', u'wall']
[u'anaesthetist', u'keen', u'east', u'timor', u'train']
[u'anthropologist', u'want', u'aborigin', u'heritag']
[u'arsenal', u'wiltord', u'chase', u'lyon']
[u'aussi', u'southpaw', u'lloyd', u'join', u'royal']
[u'australia', u'target', u'golden', u'track', u'haul', u'mcgee']
[u'aust', u'team', u'return', u'short', u'cours', u'champ']
[u'bangladeshi', u'hossain', u'report', u'suspect', u'action']
[u'beckham', u'say', u'fit', u'like', u'glove', u'real', u'madrid']
[u'berkov', u'link', u'redknapp', u'reunion']
[u'bishop', u'urg', u'victim', u'contact', u'church']
[u'block', u'plan', u'return', u'competit']
[u'board', u'determin', u'anderson', u'futur']
[u'boffin', u'sight', u'telescop']
[u'brack', u'slam', u'bushfir', u'inquiri']
[u'bridal', u'magazin', u'examin', u'union']
[u'british', u'museum', u'hand', u'aborigin', u'remain']
[u'british', u'press', u'laud', u'nasser', u'shock', u'walk']
[u'brothel', u'squeez', u'wagga', u'close', u'vote']
[u'driver', u'continu', u'strike', u'threat']
[u'drop', u'speed', u'limit', u'deni']
[u'cambodian', u'opposit', u'parti', u'reject', u'poll', u'result']
[u'cambodian', u'head', u'poll']
[u'cambodian', u'poll', u'fair', u'australian', u'say']
[u'cancer', u'battl', u'good', u'tour', u'prepar', u'armstrong']
[u'canegrow', u'look', u'maryborough', u'mill', u'crush']
[u'cannib', u'back', u'armstrong', u'sixth', u'tour']
[u'carter', u'replac', u'bryant', u'olymp', u'qualifi', u'team']
[u'catchment', u'board', u'meet', u'green', u'fund']
[u'cattl', u'group', u'downplay', u'call', u'live', u'export']
[u'claim', u'nurs', u'posit', u'safe', u'restructur']
[u'charlton', u'gear', u'communiti', u'bank', u'branch']
[u'chelsea', u'specul', u'unsettl', u'player', u'lampard']
[u'china', u'sar', u'patient', u'recov']
[u'chines', u'factori', u'blast', u'kill']
[u'claim', u'opportun', u'home']
[u'clearer', u'futur', u'medic', u'clinic']
[u'clear', u'begin', u'bosnian', u'mass', u'grave', u'site']
[u'clijster', u'close', u'william', u'rank']
[u'coach', u'order', u'busi', u'real', u'star']
[u'author', u'defend', u'anglican', u'abus', u'report']
[u'committe', u'meet', u'discuss', u'barrow', u'plan']
[u'conceicao', u'inter', u'agre', u'way']
[u'concern', u'air', u'log']
[u'copper', u'plant', u'wind', u'oper']
[u'council', u'air', u'voucher', u'concern']
[u'council', u'back', u'innov', u'campus', u'master', u'plan']
[u'council', u'find', u'interim', u'build', u'surveyor']
[u'council', u'seek', u'merger', u'plan', u'feedback']
[u'court', u'expect', u'rule', u'child', u'detaine']
[u'crown', u'outlin', u'case', u'kelli', u'murder', u'trial']
[u'dairi', u'farmer', u'keen', u'maintain', u'clean', u'reput']
[u'danger', u'driver', u'suspend', u'spot']
[u'debat', u'age', u'care', u'facil', u'continu']
[u'decis', u'child', u'detaine', u'delay']
[u'defenc', u'forc', u'downplay', u'exercis', u'impact']
[u'democrat', u'concern', u'feedlot', u'plan']
[u'dental', u'nurs', u'strike', u'condit']
[u'dragon', u'captain', u'thompson', u'play', u'panther']
[u'draper', u'bounc', u'tragedi']
[u'drive', u'cours', u'hop', u'reduc', u'aborigin', u'road']
[u'echol', u'talk', u'ahead', u'mundin', u'bout']
[u'commerc', u'rise']
[u'elliott', u'make', u'chang', u'raider', u'line']
[u'help', u'pastoralist', u'manag', u'land']
[u'energi', u'group', u'air', u'wind', u'chang']
[u'environ', u'minist', u'meet', u'fishermen']
[u'ethanol', u'plant', u'remain', u'hold']
[]
[u'famili', u'hop', u'farewel', u'audienc']
[u'farmer', u'compo', u'discuss']
[u'farmer', u'urg', u'know', u'pipelin', u'right']
[u'farm', u'victim', u'grant']
[u'farm', u'sector', u'incom', u'rise']
[u'north', u'get', u'polici']
[u'fifa', u'ratifi', u'earli', u'olymp', u'kick']
[u'destroy', u'newcastl', u'offic']
[u'inquiri', u'comment', u'rais', u'temperatur']
[u'school', u'open']
[u'focus', u'chang', u'hemp', u'locat']
[u'french', u'leav', u'world', u'door', u'open', u'perec']
[u'product', u'plan', u'ahead']
[u'german', u'dump', u'track', u'cycl', u'legend', u'bartko']
[u'gold', u'boost', u'price']
[u'govt', u'blame', u'hous', u'cost', u'stamp', u'duti']
[u'govt', u'rule', u'rais', u'threat', u'level']
[u'govt', u'urg', u'probe', u'wast', u'manag', u'plant']
[u'gregan', u'answer', u'wallabi', u'critic']
[u'hamburg', u'warm', u'style', u'leagu', u'titl']
[u'hatchet', u'victim', u'think', u'attack', u'joke']
[u'health', u'servic', u'suffer', u'budget', u'blow']
[u'henin', u'hardenn', u'continu', u'hunt', u'serena']
[u'hewitt', u'make', u'return', u'wimbledon', u'loss']
[u'hick', u'deni', u'train', u'terrorist']
[u'hope', u'hail', u'entertain', u'centuri']
[u'horsham', u'consid', u'lower', u'speed']
[u'hotel', u'apolog', u'guid', u'snub']
[u'hugh', u'defend', u'knee', u'charg', u'judiciari']
[u'hurdl', u'ahead', u'marina', u'plan']
[u'hussain', u'exit', u'signal']
[u'india', u'step', u'secur', u'blast']
[u'indigen', u'artwork', u'fetch', u'record', u'price']
[u'show', u'resort', u'land']
[u'back', u'lang', u'park', u'surfac']
[u'pain', u'great', u'dane', u'badminton', u'champ']
[u'jackson', u'claim', u'wnba', u'player', u'week']
[u'japan', u'slap', u'emerg', u'tariff', u'beef', u'pork']
[u'kangaroo', u'boost', u'good', u'news', u'colbert']
[u'kenyan', u'media', u'compani', u'record', u'profit']
[u'labor', u'odd', u'branch', u'stack', u'claim']
[u'labor', u'plan', u'privat', u'health', u'rebat', u'unclear']
[u'labor', u'target', u'rife', u'branch', u'stack']
[u'labor', u'urg', u'closur', u'nauru', u'detent', u'centr']
[u'langer', u'admit', u'captainci', u'decis', u'easi']
[u'liberian', u'armi', u'launch', u'buchanan', u'counter', u'attack']
[u'lumber', u'laker', u'madsen', u'join', u'rebuild', u'wolv']
[u'macfarlan', u'appoint', u'reserv', u'chief']
[u'manag', u'plan', u'anim', u'implement']
[u'charg', u'servic', u'station', u'hold']
[u'die', u'basebal', u'attack']
[u'martyn', u'tell', u'prove', u'fit', u'game']
[u'mayor', u'blast', u'negat', u'gear', u'tourism', u'impact']
[u'mcewen', u'edg', u'cook', u'post', u'tour', u'criterium']
[u'mediat', u'seek', u'black', u'bonus']
[u'tell', u'tie', u'blind']
[u'minist', u'cast', u'barra', u'fisheri', u'report']
[u'gold', u'spark', u'chang', u'miner', u'plan']
[u'rain', u'need', u'major', u'dam']
[u'mortlock', u'sign', u'brumbi']
[u'moy', u'look', u'strengthen', u'strike', u'forc']
[u'want', u'elector', u'expand', u'riverina']
[u'muhammad', u'sami', u'rule', u'bangladesh', u'seri']
[u'mysteri', u'cream', u'roman', u'london']
[u'nasser', u'hussain', u'factfil']
[u'eye', u'asian', u'expans', u'sooner', u'later']
[u'tafe', u'centr', u'open', u'echuca']
[u'charg', u'blue', u'pie', u'brawl']
[u'charg', u'brawl', u'miln', u'cop']
[u'govt', u'urg', u'region', u'airlin']
[u'polic', u'probe', u'woman', u'death']
[u'teacher', u'strike', u'spread']
[u'dentist', u'shortag', u'address', u'meet']
[u'homebuy', u'fare', u'mortgag', u'market']
[u'spend', u'park', u'capita']
[u'older', u'australian', u'urg', u'stay', u'workforc']
[u'opera', u'intim', u'view']
[u'parent', u'urg', u'help', u'head', u'hair', u'cut']
[u'penguin', u'studi', u'put', u'track', u'technolog', u'test']
[u'pierc', u'breez', u'past', u'razzano', u'diego']
[u'pierc', u'power', u'diego', u'serena', u'pull']
[u'polic', u'believ', u'home', u'invad', u'wrong']
[u'polic', u'crash', u'victim']
[u'power', u'wild', u'wind', u'sweep', u'melbourn']
[u'project', u'aim', u'address', u'indigen', u'homeless']
[u'complaint', u'higher', u'expect']
[u'minist', u'face', u'foster', u'abus', u'claim', u'probe']
[u'qlds', u'governor', u'swear']
[u'raid', u'net', u'saddam', u'loyalist']
[u'rebat', u'rainwat', u'tank', u'finalis']
[u'cross', u'offici', u'visit']
[u'cross', u'say', u'good', u'health']
[u'report', u'back', u'tent', u'embassi', u'camp']
[u'resid', u'wake', u'cold', u'morn']
[u'restor', u'balanc']
[u'revamp', u'napster', u'launch', u'year']
[u'review', u'highlight', u'indigen', u'centr', u'occup', u'rat']
[u'rfds', u'look', u'local', u'govt', u'support']
[u'rise', u'fail', u'simultan', u'court', u'hear']
[u'ruddock', u'admit', u'voic', u'tape']
[u'ruddock', u'reject', u'bias', u'claim']
[u'rural', u'journalist', u'strike', u'disput']
[u'opposit', u'happi', u'samag', u'review']
[u'saudi', u'foreign', u'minist', u'meet', u'bush']
[u'shark', u'board', u'decid', u'anderson', u'futur']
[u'sharon', u'meet', u'rice', u'prior', u'bush', u'audienc']
[u'silverston', u'intrud', u'deni', u'bail']
[u'small', u'group', u'blame', u'increas', u'burglari']
[u'socceroo', u'murphi', u'return', u'play', u'glori']
[u'sugar', u'group', u'pledg', u'reef', u'protect']
[u'sink', u'boat', u'brisban', u'search']
[u'super', u'local', u'govt', u'council', u'certain', u'ahead']
[u'survey', u'show', u'high', u'level', u'drug', u'snow', u'field']
[u'sutton', u'get', u'extra', u'dunfermlin', u'slur']
[u'swear', u'nasser', u'lose', u'south', u'african']
[u'syphili', u'infect', u'increas', u'europ']
[u'govt', u'deni', u'play', u'role', u'bridg', u'collaps']
[u'teacher', u'continu', u'rise', u'campaign']
[u'teacher', u'fight', u'rise']
[u'teacher', u'strike', u'loom']
[u'teen', u'custodi', u'mason', u'shoot', u'death']
[u'tender', u'lodg', u'rout']
[u'thousand', u'flock', u'indigen']
[u'thunderbird', u'readi', u'start', u'avellino']
[u'musician', u'celebr', u'outback', u'studio', u'launch']
[u'tottenham', u'zieg', u'need', u'surgeri']
[u'tough', u'time', u'ahead', u'winemak']
[u'townsvill', u'port', u'trade', u'record', u'tumbl']
[u'trade', u'deficit', u'top']
[u'transport', u'push', u'increas', u'diesel', u'fuel']
[u'truss', u'critic', u'japan', u'tariff', u'decis']
[u'polic', u'arrest', u'child', u'crime', u'probe']
[u'ullrich', u'lose', u'tour', u'win', u'german', u'heart']
[u'union', u'seek', u'fate', u'kodak', u'employe']
[u'bangladeshi', u'fishermen', u'miss']
[u'ambassador', u'hear', u'farmer', u'trade']
[u'back', u'russian', u'involv', u'north', u'korea', u'talk']
[u'mourn', u'hope']
[u'put', u'pressur', u'burma']
[u'say', u'saddam', u'bodyguard', u'captur']
[u'vandal', u'target', u'high', u'school']
[u'govt', u'minist', u'converg', u'mildura']
[u'viduka', u'pois', u'quit', u'leed', u'report']
[u'visit', u'doctor', u'servic', u'doubt']
[u'doctor', u'exodus', u'creat', u'shortag', u'senat', u'hear']
[u'govt', u'lobbi', u'water', u'treatment', u'plant']
[u'light', u'plane', u'crash', u'injur']
[u'warrior', u'lose', u'jone', u'week']
[u'shire', u'creat', u'carbon', u'sink']
[u'water', u'board', u'consid', u'option', u'rainfal']
[u'waterfal', u'expert', u'disturb', u'dead', u'brake', u'issu']
[u'welfar', u'concern', u'live', u'sheep', u'export']
[u'wenger', u'put', u'youth', u'polici']
[u'wolv', u'chase', u'italian', u'midfield', u'baggio']
[u'woman', u'charg', u'pharmaci', u'hold']
[u'women', u'sue', u'hotel', u'drunken', u'crash']
[u'wood', u'fall', u'garcia', u'mickelson', u'battl']
[u'world', u'offici', u'inspect', u'lang', u'park']
[u'yothu', u'yindi', u'tour', u'school']
[u'younger', u'women', u'join', u'gather']
[u'zidan', u'stick', u'plan', u'quit']
[u'chief', u'support', u'camp', u'embassi']
[u'reject', u'costello', u'stamp', u'duti']
[u'agre', u'concili', u'backpay', u'claim']
[u'consid', u'sunday', u'night', u'game']
[u'agassi', u'advanc', u'eas']
[u'agassi', u'storm', u'round', u'washington']
[u'age', u'council', u'criticis', u'facil', u'delay']
[u'airlin', u'line', u'baghdad', u'airport']
[u'black', u'agre', u'world', u'bonus', u'deal']
[u'alleg', u'dingo', u'hybrid', u'temporari', u'repriev']
[u'altern', u'power', u'compani', u'critic', u'govt', u'inact']
[u'armstrong', u'ullrich', u'world', u'rematch']
[u'armstrong', u'rid', u'criterium']
[u'asio', u'brief', u'airlin', u'airport', u'terror', u'alert']
[u'australia', u'drop', u'fifa', u'rank']
[u'aust', u'troop', u'thank', u'servic']
[u'bali', u'bomb', u'victim', u'confront', u'bomb', u'maker']
[u'belgian', u'parliament', u'adopt', u'chang', u'crime']
[u'blackburn', u'replac', u'duff', u'irish', u'team', u'mate', u'reid']
[u'blair', u'continu', u'face', u'question', u'expert']
[u'boy', u'testimoni', u'help', u'convict', u'paedophil']
[u'broadsword', u'smith', u'impress', u'deed', u'word']
[u'burma', u'resolv', u'issu', u'octob']
[u'bushfir', u'probe', u'head', u'ballarat']
[u'call', u'govt', u'help', u'manag', u'kakadu']
[u'cambodia', u'head', u'polit', u'deadlock']
[u'catamaran', u'sale', u'boost', u'incat', u'export', u'record']
[u'champion', u'emus', u'continu', u'shine']
[u'chanc', u'get', u'crop', u'assur']
[u'child', u'welfar', u'group', u'demand', u'royal', u'commiss']
[u'china', u'catch', u'real', u'fever', u'team', u'exhibit']
[u'coach', u'want', u'graham', u'rest']
[u'coff', u'youth', u'week', u'win', u'award']
[u'concern', u'rise', u'baxter', u'hunger', u'striker']
[u'condit', u'support', u'nation', u'regist']
[u'confer', u'hear', u'food', u'child', u'health', u'concern']
[u'conserv', u'group', u'question', u'fli', u'effort']
[u'consum', u'confid', u'slide', u'hit', u'stock']
[u'council', u'committe', u'consid', u'green', u'matter']
[u'council', u'consid', u'sister', u'citi', u'plan']
[u'council', u'reject', u'gold', u'plan']
[u'council', u'seek', u'local', u'tertiari', u'cours']
[u'council', u'support', u'chang', u'turtl', u'manag']
[u'council', u'urg', u'hasten', u'plan', u'scheme']
[u'court', u'give', u'muslim', u'hous', u'prayer', u'green', u'light']
[u'court', u'overturn', u'muslim', u'centr']
[u'crean', u'sorri', u'lack', u'airport', u'consult']
[u'cricket', u'boss', u'review', u'dope', u'rule']
[u'csiro', u'fund', u'livestock', u'genom', u'research']
[u'cuddihi', u'set', u'sight', u'olymp']
[u'davenport', u'cast', u'asid', u'injuri', u'woe']
[u'demetriou', u'name', u'chief']
[u'democrat', u'fear', u'govt', u'muzzl', u'chariti']
[u'deputi', u'hear', u'telstra', u'sell', u'concern']
[u'devonport', u'lose', u'deal']
[u'disabl', u'group', u'angri', u'vanston', u'call']
[u'discrimin', u'muslim', u'rife']
[u'disput', u'aris', u'youth', u'counsel', u'fund']
[u'attack', u'spark', u'western', u'power', u'warn']
[u'dominion', u'proceed', u'mine', u'plan']
[u'dragon', u'sign', u'star', u'trio']
[u'eagl', u'take', u'toll', u'stock']
[u'easi', u'win', u'scud', u'hewitt']
[u'edward', u'holm', u'lewi', u'franci', u'select']
[u'elliott', u'get', u'driver', u'licenc']
[u'eyr', u'peninsula', u'rocki', u'tourist', u'trail']
[u'famili', u'friend', u'commemor', u'thredbo', u'landslid']
[u'fan', u'face', u'queue', u'real', u'madrid', u'ticket']
[u'final', u'whistl', u'blow', u'leisur', u'rail']
[u'fletcher', u'tri', u'hussain', u'stay', u'report']
[u'forens', u'examin', u'involv', u'glenelg', u'attack']
[u'hanson', u'support', u'testifi', u'fraud', u'trial']
[u'kill', u'french', u'forest', u'fire']
[u'russian', u'servicemen', u'kill', u'near', u'chechnya']
[u'french', u'track', u'reveng', u'aussi']
[u'gavaskar', u'slam', u'sledg', u'aussi']
[u'geelong', u'slam', u'sunday', u'night', u'footi', u'plan']
[u'german', u'hostag', u'hold', u'algerian', u'rebel', u'dead', u'report']
[u'ghan', u'ticket', u'sale', u'outstrip', u'expect']
[u'gibbon', u'speak', u'plan', u'educ', u'chang']
[u'great', u'scope', u'west', u'develop', u'haas']
[u'grenad', u'attack', u'wind', u'soldier', u'iraq']
[u'guid', u'highlight', u'univers', u'perform']
[u'harri', u'game', u'berkov', u'afford']
[u'hauritz', u'academi', u'dayer']
[u'heal', u'name', u'boomer', u'squad']
[u'health', u'servic', u'downplay', u'water', u'concern']
[u'henin', u'hardenn', u'sparkl', u'california']
[u'hewitt', u'prove', u'good', u'mamiit']
[u'home', u'build', u'pick', u'pace']
[u'home', u'invas', u'victim', u'probabl', u'tri', u'protect']
[u'hope', u'obituari', u'live', u'death', u'writer']
[u'hospit', u'undergo', u'upgrad']
[u'hossain', u'clear', u'face', u'australia']
[u'hous', u'afford', u'declin']
[u'hous', u'afford']
[u'vow', u'stay']
[u'icac', u'look', u'seal', u'road']
[u'divorc', u'troubl']
[u'indigen', u'nutrit', u'plan', u'prove', u'winner']
[u'indonesia', u'say', u'aceh', u'rebel', u'kill', u'firefight']
[u'inquiri', u'urg', u'quarri', u'plan', u'refus']
[u'insur', u'erupt', u'hospit']
[u'integr', u'defenc', u'forc', u'head', u'malaysia']
[u'investig', u'probe', u'plane', u'crash']
[u'iraqi', u'protest', u'raid', u'kill', u'civilian']
[u'iraqi', u'return', u'year', u'exil', u'saudi']
[u'ireland', u'squad', u'recal', u'captain', u'wood']
[u'japanes', u'consum', u'like', u'tariff']
[u'journalist', u'murder', u'custodi', u'iran', u'vice', u'presid']
[u'juri', u'hear', u'woman', u'didnt', u'mean', u'kill', u'partner']
[u'kalli', u'miss', u'second', u'test', u'england']
[u'knee', u'injuri', u'forc', u'ikin', u'retir']
[u'knight', u'hope']
[u'koala', u'pill']
[u'labor', u'demand', u'ruddock', u'resign', u'atsic', u'tape']
[u'labor', u'warn', u'live', u'sheep', u'export', u'clean']
[u'laker', u'bryant', u'spotlight', u'open']
[u'lehmann', u'make', u'arsenal', u'debut']
[u'liberian', u'rebel', u'declar', u'ceas']
[u'lille', u'rubbish', u'bangladesh', u'seri']
[u'deni', u'bail', u'child', u'porn', u'case']
[u'jail', u'sexual', u'abus', u'girl']
[u'plead', u'guilti', u'babi', u'manslaught', u'charg']
[u'marin', u'institut', u'chief', u'take', u'budget', u'claim']
[u'martyn', u'restart', u'intern', u'career']
[u'mcewen', u'cook']
[u'mcintosh', u'replac', u'undecid']
[u'meander', u'oppon', u'reject', u'viabil', u'propos']
[u'melbourn', u'steel', u'disput', u'drag']
[u'face', u'abalon', u'theft', u'charg']
[u'miner', u'want', u'seiz', u'golden', u'opportun']
[u'minist', u'seek', u'region', u'develop', u'fund']
[u'minist', u'examin', u'illeg', u'fish', u'decis']
[u'miss', u'teen', u'reunit', u'parent']
[u'countri', u'student', u'appli', u'medicin', u'dentistri']
[u'place', u'need', u'address', u'doctor', u'shortag']
[u'nation', u'teacher', u'strike', u'card']
[u'natur', u'reserv', u'northern', u'forest']
[u'nelson', u'claim', u'hole', u'labor', u'polici']
[u'levi', u'help', u'market', u'pork']
[u'newman', u'face', u'servic', u'ax']
[u'video', u'creat', u'empathi', u'violent', u'crimin']
[u'nightclub', u'wage', u'trade', u'hour']
[u'korean', u'nuke', u'number', u'think', u'tank']
[u'turtl', u'recoveri', u'plan']
[u'sight', u'public', u'health', u'fund', u'feud']
[u'lobbi', u'newcastl', u'wollongong', u'fund']
[u'overlap', u'nativ', u'titl', u'confus', u'claimant']
[u'patterson', u'call', u'state', u'support', u'health']
[u'pentagon', u'scrap', u'terror', u'bet', u'scheme']
[u'philippin', u'militari', u'intellig', u'chief', u'quit']
[u'philippin', u'troop', u'captur', u'sayyaf', u'rebel']
[u'phone', u'cut', u'hamper', u'fight', u'inquiri', u'tell']
[u'pilot', u'dead', u'ultralight', u'crash']
[u'dept', u'chief', u'defend', u'role', u'iraq', u'disput']
[u'polic', u'hunt', u'pair', u'steal', u'vehicl']
[u'polic', u'probe', u'mine', u'vandal']
[u'polic', u'seek', u'public', u'help', u'bodi']
[u'prosecutor', u'demand', u'jail', u'report']
[u'case', u'tafe', u'move']
[u'public', u'polici', u'input']
[u'public', u'look', u'armidal', u'plan']
[u'push', u'yeppoon', u'truck', u'bypass']
[u'push', u'telstra', u'sell']
[u'teacher', u'nation', u'strike']
[u'rann', u'order', u'inquiri', u'plea', u'bargain']
[u'decis', u'expect', u'spark', u'grower', u'anger']
[u'ruddock', u'promis', u'obey', u'famili', u'court', u'decis']
[u'ruddock', u'robinson', u'feud', u'caus', u'harm', u'odonoghu']
[u'rusedski', u'get', u'support', u'rat', u'rant']
[u'saddam', u'tape', u'vow', u'aveng', u'son']
[u'sapphir', u'russia']
[u'search', u'continu', u'miss', u'angler']
[u'serena', u'sidelin', u'open']
[u'shark', u'anderson']
[u'shark', u'expect', u'anderson']
[u'sharon', u'push', u'secur', u'barrier']
[u'sierra', u'leon', u'rebel', u'leader', u'dead']
[u'small', u'busi', u'grant', u'hurdl', u'need', u'chang']
[u'snowfal', u'strand', u'mount', u'macedon']
[u'solomon', u'intervent', u'forc', u'head', u'meet', u'militia']
[u'solomon', u'announc', u'cabinet', u'reshuffl']
[u'solomon', u'rebel', u'leader', u'surrend', u'weapon']
[u'soni', u'win', u'modchip', u'copyright', u'appeal']
[u'sorenstam', u'emot', u'drain', u'british']
[u'station', u'closur', u'spark', u'weed', u'concern']
[u'stone', u'play', u'spotlight', u'post', u'sar']
[u'strand', u'atlant', u'rower', u'call', u'help']
[u'stuart', u'monument', u'agenda', u'council']
[u'super', u'leagu', u'star', u'jail', u'street', u'brawl']
[u'superman', u'cape', u'go', u'hammer']
[u'sydney', u'jail', u'fraud']
[u'tasmania', u'await', u'decis']
[u'teacher', u'consid', u'strike']
[u'thwait', u'water', u'irrig', u'claim']
[u'town', u'name', u'broadband', u'studi']
[u'tribun', u'consid', u'pay', u'matern', u'leav']
[u'troubl', u'bowl', u'club', u'imag']
[u'tuqiri', u'sign', u'waratah']
[u'ultralight', u'crash', u'near', u'longreach']
[u'underdog', u'mundin', u'titl', u'upset']
[u'union', u'air', u'fear', u'age', u'care', u'hostel', u'standard']
[u'union', u'float', u'plan', u'boost', u'nurs', u'retent']
[u'reject', u'guid', u'claim']
[u'uni', u'good', u'mark', u'guidebook']
[u'unstabl', u'build', u'affect', u'probe']
[u'urgent', u'meet', u'seek', u'port', u'kembla', u'loss']
[u'concern', u'toll', u'ord']
[u'examin', u'latest', u'saddam', u'tape']
[u'keep', u'sept', u'report', u'secret']
[u'terror', u'warn', u'mistak', u'govt']
[u'investig', u'iraqi', u'civilian', u'death', u'claim']
[u'vandal', u'suspect', u'albani', u'blackout']
[u'vaughan', u'smith', u'sight']
[u'veron', u'advis', u'talk', u'chelsea', u'report']
[u'rain', u'help', u'say', u'water', u'board']
[u'seek', u'state', u'support', u'mccabe', u'case']
[u'ticket', u'inspector']
[u'viduka', u'need', u'club', u'say', u'agent']
[u'club', u'sunday', u'night', u'trial']
[u'agricultur', u'tip', u'lead', u'nation', u'export']
[u'wallabi', u'dump', u'burk']
[u'whyalla', u'council', u'idea']
[u'wilson', u'life', u'harder', u'webber']
[u'wilson', u'tast', u'jaguar']
[u'workcov', u'consid', u'court', u'compo', u'decis']
[u'militari', u'offic', u'face', u'rebellion', u'charg']
[u'doctor', u'hold', u'medic', u'indemn', u'concern']
[u'opposit', u'back', u'health', u'agreement']
[u'push', u'increas', u'age', u'fund']
[u'adventur', u'tourism', u'firm', u'closer', u'insur']
[u'afghan', u'landslid', u'claim']
[u'defend', u'rent', u'rise', u'slug']
[u'ambush', u'kill', u'soldier', u'wound', u'iraq']
[u'amrozi', u'look', u'forward', u'martyr', u'death']
[u'area', u'open', u'scallop', u'trawler']
[u'arroyo', u'warn', u'philippin', u'coup', u'threat']
[u'australia', u'garbag', u'generat', u'report']
[u'australia', u'threaten', u'walkout', u'trade', u'talk']
[u'avellino', u'court', u'case', u'drag']
[u'bank', u'push', u'ord', u'month', u'high']
[u'beatti', u'urg', u'listen', u'rural', u'concern']
[u'beckham', u'keen', u'play', u'footbal']
[u'biker', u'mourn', u'death', u'british', u'champion', u'hislop']
[u'black', u'cap', u'face', u'indian', u'ordeal', u'warn', u'ganguli']
[u'blair', u'admit', u'need', u'regain', u'public', u'trust']
[u'blaze', u'damag', u'railton', u'hous']
[u'blunder', u'blame', u'warn', u'confus']
[u'bok', u'drop', u'joost', u'test', u'shake']
[u'british', u'museum', u'face', u'legal', u'action', u'aborigin']
[u'bulldog', u'hugh', u'cop', u'week', u'knee']
[u'bureaucrat', u'speak', u'educ', u'plan']
[u'burton', u'name', u'commission']
[u'bush', u'reject', u'call', u'marriag']
[u'businessman', u'give', u'immigr']
[u'businessman', u'make', u'million', u'prostat', u'donat']
[u'businessman', u'deport', u'say', u'ruddock']
[u'wild', u'bounti']
[u'call', u'rat', u'movi', u'legalis']
[u'cambodian', u'elect', u'outcom', u'remain', u'balanc']
[u'canadian', u'director', u'tackl', u'pompeii', u'epic']
[u'carey', u'bassett', u'return', u'sydney', u'clash']
[u'cattl', u'council', u'take', u'japan', u'tariff', u'protest']
[u'celtic', u'champion', u'leagu', u'flyer']
[u'claim', u'local', u'govt', u'reform', u'caus', u'confus']
[u'concern', u'air', u'declin', u'tour']
[u'consult', u'appoint']
[u'consum', u'urg', u'cautious', u'hire']
[u'coron', u'call', u'vicroad', u'overhaul']
[u'council', u'fire', u'power', u'station', u'push']
[u'council', u'deliv', u'rat', u'slug']
[u'council', u'want', u'time', u'consid', u'merger']
[u'court', u'dismiss', u'porter', u'appeal']
[u'court', u'tell', u'qaeda', u'help', u'fund']
[u'cycl', u'event', u'hop', u'prove', u'profit']
[u'cyclist', u'converg', u'south', u'east', u'victoria']
[u'david', u'beckham', u'win', u'poll', u'british', u'bank', u'note']
[u'deadlin', u'loom', u'reef', u'rezon', u'submiss']
[u'deal', u'provid', u'natur', u'resourc']
[u'demetriou', u'launch', u'hunt', u'manag']
[u'domest', u'violenc', u'spotlight']
[u'downer', u'say', u'solomon', u'long']
[u'drug', u'chemic', u'seiz', u'servic', u'station', u'raid']
[u'edward', u'happi', u'meet', u'timber', u'worker', u'quota']
[u'dead', u'yemen', u'mosqu', u'shoot']
[u'elcho', u'island', u'bring', u'customari']
[u'elder', u'attend', u'order', u'meet']
[u'electrolux', u'worker', u'decid']
[u'elka', u'compet', u'hobart', u'hodg']
[u'fast', u'rail', u'link', u'group', u'consid', u'safeti', u'concern']
[u'father', u'slam', u'home', u'invas', u'killer']
[u'fear', u'air', u'crayfish', u'regul']
[u'fel', u'say', u'whistleblow', u'financi']
[u'ferguson', u'vow', u'veron', u'stay', u'manchest']
[u'probe', u'visit', u'manjimup']
[u'probe', u'urg', u'focus', u'bigger', u'pictur']
[u'iraqi', u'council', u'leader', u'name']
[u'fisherman', u'rescu', u'coast']
[u'kill', u'bombay', u'home', u'explos']
[u'flea', u'lose', u'world', u'high', u'jump', u'titl']
[u'flexibl', u'builder', u'lead', u'rise', u'approv']
[u'roehampton', u'director', u'guilti', u'insid']
[u'futur', u'power', u'shortag', u'unavoid', u'report']
[u'marriag', u'deviant', u'vatican', u'say']
[u'geoff', u'marsh', u'chairman', u'histori']
[u'grain', u'group', u'consid', u'contamin', u'issu']
[u'govt', u'blast', u'small', u'busi', u'insur', u'cost']
[u'govt', u'help', u'fund', u'nutritionist', u'posit']
[u'govt', u'reject', u'report', u'favour', u'option']
[u'group', u'look', u'hour', u'medic', u'centr']
[u'graham', u'withdraw', u'short', u'cours', u'champ']
[u'health', u'boost', u'plan', u'ballarat', u'indigen']
[u'health', u'talk', u'deadlock']
[u'hear', u'aid', u'increas', u'mening', u'risk', u'studi']
[u'heritag', u'list', u'seek', u'tambrey', u'centr']
[u'hewitt', u'serv', u'storm']
[u'hindu', u'leader', u'die', u'visit', u'mosqu', u'site']
[u'hobart', u'council', u'move', u'plastic', u'bag']
[u'hobart', u'golfer', u'take', u'biggest', u'stage']
[u'hope', u'buri', u'angel']
[u'hope', u'medic', u'director', u'stay', u'longer']
[u'hope', u'port', u'upgrad', u'benefit', u'grain', u'produc']
[u'hospit', u'orthopaed', u'woe', u'continu']
[u'hous', u'blaze', u'consid', u'suspici']
[u'hous', u'prompt', u'warn', u'parent']
[u'human', u'remain', u'miss', u'angler', u'polic']
[u'hundr', u'evacu', u'fire', u'rage', u'montana']
[u'hunter', u'temperatur', u'close', u'normal']
[u'nice', u'captain', u'warn', u'vaughan']
[u'indigen', u'violenc', u'discuss', u'confer']
[u'injur', u'mcgrath', u'knife']
[u'injur', u'norther', u'race', u'trainer']
[u'injuri', u'jinx', u'hit', u'capriati', u'clijster']
[u'inland', u'surf', u'lifesav', u'plan', u'make', u'wave']
[u'inquiri', u'consid', u'problem', u'gambl', u'woe']
[u'investig', u'begin', u'fatal', u'ultralight', u'crash']
[u'iraq', u'economi', u'year', u'recov', u'world', u'bank']
[u'israel', u'close', u'religi', u'site', u'muslim', u'tourist']
[u'johnson', u'pleas', u'build', u'pari']
[u'jone', u'turn', u'gregan', u'critic']
[u'judg', u'quash', u'steal', u'charg', u'anthoni']
[u'judg', u'prevent', u'bashir', u'attend', u'congress']
[u'june', u'spend', u'spree', u'boost', u'retail', u'figur']
[u'kean', u'readi', u'face', u'biggest', u'challeng', u'unit']
[u'kelli', u'win', u'silver', u'men', u'kilo', u'world', u'championship']
[u'klitschko', u'fight', u'lewi']
[u'landslid', u'kill', u'nepal']
[u'love', u'roll', u'histori']
[u'late', u'snowfal', u'resort']
[u'lethal', u'commit', u'lion', u'darci', u'stick']
[u'level', u'cross', u'chang', u'central', u'aust']
[u'long', u'catch', u'ralli']
[u'await', u'sentenc', u'babi', u'death']
[u'charg', u'camp', u'grind', u'vandal']
[u'die', u'crash']
[u'fin', u'indec', u'assault']
[u'skydiv', u'english', u'channel']
[u'maritim', u'colleg', u'move', u'diversifi', u'train']
[u'mayor', u'seek', u'knowl', u'quarri', u'plan', u'meet']
[u'mcloughlin', u'claim', u'tatt']
[u'merced', u'dampen', u'coulthard', u'sack', u'specul']
[u'industri', u'speak', u'work', u'hour']
[u'minist', u'offer', u'agricultur', u'dept', u'assur']
[u'mix', u'result', u'compani', u'profit', u'report']
[u'molik', u'down', u'diego']
[u'fire', u'control', u'southern', u'franc']
[u'fizzl', u'sizzl', u'affleck', u'lopez', u'film']
[u'mosley', u'leav', u'tiger', u'spain']
[u'moya', u'blame', u'rain', u'earli', u'exit', u'poland']
[u'threaten', u'quit', u'safeti']
[u'murray', u'mouth', u'dredg', u'appear', u'success']
[u'cotton', u'avail', u'plant']
[u'servic', u'assist', u'young', u'alcohol', u'abus']
[u'solomon', u'amnesti', u'enforc']
[u'charg', u'alleg', u'chain']
[u'rail', u'report', u'horrifi', u'minist']
[u'surviv', u'depend', u'gold', u'price']
[u'play', u'pakistan', u'south', u'africa', u'home']
[u'pakistan', u'flood', u'toll', u'top']
[u'patterson', u'confid', u'minist', u'meet']
[u'industri', u'put', u'fund', u'educ', u'centr']
[u'polic', u'bust', u'adelaid', u'drug', u'lab']
[u'polic', u'consid', u'schooli', u'week', u'problem']
[u'polic', u'drug', u'raid', u'uncov', u'chemic', u'stockpil']
[u'polic', u'identifi', u'possibl', u'motiv', u'brisban']
[u'polic', u'charg', u'famili', u'feud']
[u'polic', u'drug', u'charg']
[u'polic', u'oper', u'uncov', u'cannabi', u'plant']
[u'polic', u'promis', u'speed', u'crackdown']
[u'polic', u'question', u'woman', u'pedestrian', u'die']
[u'pottharst', u'gold']
[u'prepar', u'health', u'fight', u'warn']
[u'privaci', u'commission', u'investig', u'polic', u'access']
[u'public', u'input', u'seek', u'wind', u'farm', u'plan']
[u'push', u'poll', u'church', u'decis']
[u'scheme', u'gain', u'momentum']
[u'jail', u'life', u'wife', u'murder']
[u'nat', u'begin', u'elect', u'prepar']
[u'qsia', u'pleas', u'kemp', u'reef', u'meet']
[u'rail', u'plan', u'delay', u'savag']
[u'record', u'industri', u'legend', u'phillip', u'dead']
[u'region', u'await', u'decis']
[u'resourc', u'limit', u'plane', u'crash', u'probe']
[u'river', u'plan', u'pipelin']
[u'roch', u'face', u'embassi', u'bomb', u'plot', u'trial']
[u'roddick', u'set', u'rematch', u'rusedski']
[u'ronaldinho', u'spark', u'barca', u'past', u'milan']
[u'ronaldo', u'deni', u'put', u'holiday', u'pound']
[u'defend', u'road', u'closur']
[u'ruddock', u'rule', u'witch', u'hunt', u'leak', u'tape']
[u'ambul', u'reject', u'work', u'break', u'claim']
[u'safeti', u'bureau', u'wont', u'challeng', u'coron', u'whyalla']
[u'salt', u'work', u'staff', u'seek', u'rise']
[u'sapphir', u'face', u'quarter', u'final']
[u'scalefish', u'licenc', u'reduc']
[u'scan', u'forecast', u'norther', u'chang']
[u'school', u'vandal', u'spark', u'curfew', u'plan']
[u'schu', u'doldrum', u'ahead', u'home', u'race']
[u'sewerag', u'scheme', u'opposit', u'subsid']
[u'sexual', u'misconduct', u'author', u'sentenc', u'jail']
[u'shepparton', u'colleg', u'go', u'class', u'size', u'trend']
[u'shire', u'air', u'vcat', u'develop', u'concern']
[u'shire', u'think', u'chang', u'overstep', u'boundari']
[u'shoot', u'putter', u'myerscough', u'olymp', u'uphold']
[u'small', u'busi', u'bank', u'servic', u'microscop']
[u'solar', u'energi', u'perform', u'surgeri']
[u'south', u'africa', u'bring', u'adam', u'hall']
[u'spenc', u'get', u'communiti', u'council', u'respons']
[u'springborg', u'say', u'nat', u'chang']
[u'staff', u'withdraw', u'spark', u'doc', u'counsel', u'review']
[u'state', u'warn', u'sign', u'health', u'agreement', u'lose', u'fund']
[u'stone', u'acdc', u'rock', u'canadian', u'sar', u'concert']
[u'offer', u'cheap', u'treat', u'cancer', u'studi']
[u'super', u'exit', u'fee', u'come', u'senat', u'scrutini']
[u'supplier', u'blackout', u'state']
[u'union', u'meet', u'discuss', u'cut']
[u'teen', u'rob', u'polic', u'station']
[u'tenant', u'union', u'welcom', u'blacklist', u'law']
[u'theophan', u'briberi', u'sentenc', u'halv']
[u'thorp', u'freeman', u'greek', u'tourism', u'award']
[u'tiger', u'prowl', u'titl', u'defenc']
[u'toll', u'plan', u'tasrail', u'takeov']
[u'drop', u'earn', u'award', u'winemak']
[u'tough', u'terror', u'measur', u'introduc', u'port']
[u'tourist', u'drown', u'litchfield', u'nation', u'park']
[u'town', u'tidi', u'judg']
[u'townsvill', u'build', u'hous', u'boom']
[u'tuna', u'fisher', u'want', u'dredg', u'sooner']
[u'turkey', u'move', u'curb', u'militari']
[u'uluru', u'camel', u'seoul', u'opera', u'debut']
[u'ask', u'consid', u'liberia', u'resolut']
[u'union', u'warn', u'power', u'crisi']
[u'clarifi', u'terror', u'warn']
[u'economi', u'recoveri', u'sign', u'evid']
[u'north', u'korea', u'china', u'talk', u'earli', u'sept', u'report']
[u'soldier', u'attack', u'raid', u'continu']
[u'woman', u'want', u'imperson', u'miss', u'girl']
[u'vict', u'govt', u'reaffirm', u'glenrowan', u'pledg']
[u'victorian', u'hail', u'nation', u'wine', u'maker']
[u'water', u'restrict', u'effect', u'tomorrow']
[u'vodafon', u'want', u'feder', u'phone', u'tower']
[u'voic', u'tape', u'probabl', u'saddam']
[u'accus', u'costello', u'undermin', u'welfar', u'sector']
[u'wast', u'plant', u'claim', u'rubbish', u'edward']
[u'water', u'corp', u'consid', u'wastewat', u'plant']
[u'webb', u'reliev', u'familiar', u'territori']
[u'welsh', u'readi', u'race', u'hobart']
[u'wenger', u'confid', u'vieira', u'sign', u'contract']
[u'west', u'african', u'leader', u'hold', u'liberia', u'summit']
[u'woodsid', u'target', u'otway', u'basin']
[u'worker', u'stop', u'work', u'today']
[u'abus', u'children', u'like', u'suicid', u'academ']
[u'abus', u'victim', u'admit', u'relief', u'crowley', u'jail']
[u'retail', u'industri', u'give', u'plastic', u'warn']
[u'bow', u'pressur', u'final', u'host']
[u'agassi', u'rule', u'olymp', u'appear']
[u'pollut', u'breach', u'baffl', u'miner']
[u'alert', u'blunder', u'show', u'need', u'home', u'affair', u'crean']
[u'backbench', u'urg', u'philippin']
[u'alpin', u'resort', u'manag', u'submiss', u'close']
[u'alston', u'deni', u'govt', u'seek', u'appoint', u'review']
[u'anderson', u'vision', u'sydney', u'airport']
[u'anderson', u'say', u'deal', u'tree', u'clear', u'close']
[u'anderson', u'tight', u'lip', u'polit', u'futur']
[u'arbizu', u'lead', u'puma', u'world']
[u'armstrong', u'face', u'strong', u'challeng']
[u'end', u'week', u'high']
[u'aussi', u'qualifi', u'world', u'pursuit', u'challeng']
[u'australia', u'help', u'rebuild', u'solomon', u'island', u'prison']
[u'banana', u'budget', u'deliv', u'rat', u'slug']
[u'band', u'stilt', u'converg', u'flinder', u'island']
[u'bangladesh', u'eager', u'showdown']
[u'basebal', u'boost', u'gambier']
[u'beatti', u'spread', u'tree', u'clear', u'messag']
[u'beatti', u'open', u'outback']
[u'beckham', u'prepar', u'real', u'debut']
[u'bennett', u'tight', u'lip', u'shark', u'drama']
[u'breaker', u'hope', u'drought']
[u'britain', u'thoma', u'hobbl', u'pari', u'content']
[u'british', u'committe', u'say', u'iraq', u'conflict', u'hamper']
[u'bryant', u'attend', u'hear', u'rape', u'case', u'judg']
[u'bulk', u'bill', u'drop', u'lowest', u'rate', u'tasmania']
[u'burma', u'want', u'cool', u'releas']
[u'bushfir', u'probe', u'tell', u'region', u'leav', u'vulner']
[u'nation', u'bodi', u'screen', u'alcohol']
[u'feral', u'bounti']
[u'cambodia', u'king', u'stay', u'post', u'poll', u'brawl']
[u'cameroon', u'star', u'undergo', u'surgeri', u'crash']
[u'cancer', u'council', u'air', u'fear', u'feder', u'legisl']
[u'sector', u'drive', u'manufactur', u'growth']
[u'celt', u'aircraft', u'scare']
[u'champion', u'lyon', u'look', u'break', u'year', u'duck']
[u'child', u'detaine', u'case', u'adjourn']
[u'china', u'denounc', u'pentagon', u'report', u'threat', u'taiwan']
[u'chines', u'banker', u'jail', u'life', u'theft']
[u'civilis', u'outback', u'urg', u'attract', u'southern']
[u'claim', u'snowi', u'booz', u'work']
[u'claim', u'tropic', u'diseas', u'misdiagnosi', u'kill', u'dozen']
[u'cold', u'heat', u'bushfir', u'risk']
[u'colombian', u'asprilla', u'hotel', u'gunfight']
[u'confid', u'howard', u'make', u'assur', u'unit', u'debut']
[u'contract', u'plan', u'spark', u'cri', u'foul', u'play']
[u'coulthard', u'set', u'practic', u'pace', u'germani']
[u'council', u'adopt', u'mainten', u'budget']
[u'council', u'highlight', u'need', u'rate', u'rise']
[u'council', u'seek', u'lake', u'manag', u'probe']
[u'council', u'want', u'phone', u'hand', u'fund']
[u'court', u'say']
[u'court', u'rule', u'child', u'detent', u'case']
[u'crean', u'back', u'second', u'airport', u'say', u'decis']
[u'crean', u'launch', u'medicar', u'crisi', u'campaign']
[u'credit', u'union', u'merg', u'expand']
[u'critic', u'strengthen', u'gregan']
[u'project', u'highlight', u'lungfish', u'vulner']
[u'davi', u'contest', u'latrob']
[u'death', u'toll', u'pakistan', u'flood', u'rise']
[u'democrat', u'critic', u'land', u'sell']
[u'democrat', u'want', u'reef', u'fish']
[u'detent', u'children', u'hold', u'unlaw', u'judg', u'rule']
[u'devil', u'worship', u'cabbi', u'jail', u'assault']
[u'doctor', u'suspend', u'see', u'patient']
[u'dog', u'play', u'skin']
[u'dougherti', u'sleepwalk', u'share', u'scandinavian']
[u'downer', u'defend', u'solomon', u'forc', u'size']
[u'drake', u'resid', u'boost']
[u'driver', u'urg', u'alert', u'anim']
[u'dump', u'babi', u'unit', u'famili']
[u'economist', u'predict', u'rat', u'rise']
[u'energi', u'concern', u'fast', u'track', u'power', u'plant']
[u'england', u'good', u'admit', u'vaughan']
[u'environment', u'snapshot', u'show', u'mix', u'result']
[u'environ', u'benefit', u'site', u'practic']
[u'farmer', u'voic', u'agricultur', u'research', u'concern']
[u'fenukitau', u'get', u'world', u'ahead', u'hammond']
[u'ferrero', u'struggl', u'polish']
[u'fight', u'stop', u'monrovia']
[u'await', u'visa', u'applic']
[u'storm', u'forward', u'nikau', u'amput']
[u'unesco', u'director', u'fear', u'aust', u'democraci']
[u'fred', u'hollow', u'foundat', u'welcom', u'vodka', u'remov']
[u'frentzen', u'face', u'uncertain', u'futur']
[u'funer', u'home', u'anger', u'veteran']
[u'gene', u'profil', u'unnecessari', u'cancer']
[u'general', u'manag', u'leav', u'launceston', u'council']
[u'golden', u'gane', u'get', u'aussi', u'keirin', u'rival']
[u'goldfield', u'domest', u'violenc', u'rise']
[u'govern', u'alarm', u'teenag', u'spender']
[u'govern', u'help', u'council', u'damag', u'claim']
[u'govt', u'agre', u'ethanol', u'label', u'deadlin']
[u'govt', u'sign', u'jabiluka', u'clean']
[u'govt', u'analys', u'bushfir', u'inquiri', u'report']
[u'shadow', u'leader', u'sposa', u'michigan']
[u'graham', u'withdraw', u'short', u'cours', u'champ']
[u'grand', u'blanc', u'score', u'round']
[u'gresko', u'commit', u'blackburn']
[u'heavi', u'fight', u'erupt', u'liberian', u'capit']
[u'heidfeld', u'rankl', u'raikkonen']
[u'henin', u'hardenn', u'toil', u'outlast', u'dementieva']
[u'undergo', u'human', u'trial']
[u'hodgson', u'sign', u'raider']
[u'hope', u'centr', u'help', u'indigen', u'communiti']
[u'hundr', u'expect', u'mourn', u'shoot', u'victim']
[u'hunter', u'economi', u'perform']
[u'inquiri', u'open', u'death', u'british', u'weapon', u'expert']
[u'iron', u'plan', u'promis', u'boost', u'north', u'west']
[u'israel', u'demand', u'pledg', u'releas', u'palestinian']
[u'israel', u'soccer', u'stay']
[u'fund', u'announc', u'north', u'east']
[u'journalist', u'sack', u'interview', u'alleg']
[u'judg', u'admit', u'pinochet']
[u'keegan', u'hop', u'better', u'fare', u'fowler']
[u'kodak', u'shed', u'posit']
[u'leagu', u'club', u'reject', u'administr', u'claim']
[u'leed', u'stand', u'jail', u'leagu', u'star']
[u'lippi', u'blast', u'juve', u'player', u'unit', u'defeat']
[u'lithuanian', u'leader', u'cross', u'line']
[u'littl', u'brother', u'watch', u'council']
[u'yang', u'power', u'plan', u'capac', u'boost']
[u'malthous', u'laidley', u'concern', u'draft', u'structur']
[u'die', u'truck', u'incid']
[u'custodi', u'flight', u'secur', u'breach']
[u'jail', u'life', u'kill', u'partner']
[u'jail', u'sexual', u'assault', u'teen', u'girl']
[u'manjimup', u'hop', u'cash', u'truffl', u'develop']
[u'march', u'protest', u'council']
[u'martial', u'aceh', u'wont', u'remain', u'indefinit']
[u'martyn', u'wont', u'rule', u'season']
[u'mcdermott', u'insid', u'trade', u'sentenc', u'suspend']
[u'mcgrath', u'go', u'knife']
[u'mcgrath', u'undergo', u'ankl', u'surgeri']
[u'media', u'puzzl', u'tilt', u'melbourn']
[u'meet', u'consid', u'nativ', u'titl', u'claim']
[u'megawati', u'denounc', u'muslim', u'milit', u'dogma']
[u'cwealth', u'grave', u'vandalis', u'franc']
[u'nation', u'seek', u'integr', u'climat', u'chang', u'track']
[u'nat', u'dismiss', u'support', u'breakaway', u'conserv']
[u'nat', u'renew', u'call', u'water', u'support']
[u'accc', u'chief', u'say', u'wont', u'soft', u'busi']
[u'newcastl', u'highlight', u'whoop', u'cough', u'case']
[u'label', u'reveal', u'true', u'cost', u'medicin']
[u'manag', u'age', u'care', u'home']
[u'korea', u'accept', u'talk', u'format', u'seoul']
[u'korea', u'agre', u'nuclear', u'talk']
[u'govt', u'urg', u'releas', u'rail', u'crash', u'report']
[u'mobil', u'phone', u'coverag', u'phenomen', u'alston', u'say']
[u'odwyer', u'talk', u'cowboy', u'offici']
[u'compani', u'stand', u'trial', u'alleg', u'burma']
[u'older', u'travel', u'boost', u'domest', u'tourism']
[u'ombudsman', u'review', u'child', u'abus', u'case']
[u'pakistani', u'babi', u'home']
[u'palestinian', u'author', u'reject', u'isra', u'withdraw']
[u'paradorn', u'face', u'nemesi', u'henman', u'washington', u'semi']
[u'penalti', u'jack', u'water', u'restrict']
[u'peru', u'appeal', u'japan', u'reject', u'fujimori']
[u'owner', u'warn', u'bait', u'death']
[u'plan', u'public', u'liabil', u'seminar']
[u'ask', u'interven', u'hospit', u'fund']
[u'welcom', u'north', u'korea', u'respons', u'talk', u'plan']
[u'wont', u'break', u'health', u'impass']
[u'polic', u'probe', u'sniper', u'plot', u'arroyo']
[u'polic', u'search', u'miss']
[u'public', u'input', u'seek', u'wilder', u'area', u'visitor']
[u'race', u'refus', u'lift', u'lifetim', u'fine']
[u'question', u'rais', u'resourc', u'manag']
[u'radic', u'sunni', u'islam', u'rise', u'iraq']
[u'ratepay', u'council', u'question', u'opportun']
[u'rebat', u'rainwat', u'tank']
[u'redneck', u'imag', u'thing', u'past', u'nat', u'leader']
[u'refere', u'troubl', u'nice', u'viduka']
[u'republican', u'confid', u'find', u'iraqi', u'weapon']
[u'resort', u'plan', u'year', u'away']
[u'retail', u'pledg', u'halv', u'plastic']
[u'robertson', u'clarifi', u'pearc', u'meet']
[u'roddick', u'win', u'rusedski', u'rematch', u'agassi', u'charg']
[u'rooney', u'aim', u'earli', u'return']
[u'roo', u'punt', u'archer', u'lion', u'clash']
[u'rooster', u'deni', u'raider', u'death']
[u'rspca', u'consid', u'prosecut', u'hors', u'neglect']
[u'saboteur', u'blame', u'iraqi', u'pipelin', u'blast']
[u'celebr', u'live', u'art', u'festiv']
[u'saddam', u'daughter', u'arriv', u'jordan']
[u'saddam', u'urg', u'iraqi', u'await', u'return']
[u'sandfli', u'put', u'bite', u'resid']
[u'scandinavian', u'master', u'lead', u'score', u'round']
[u'scholarship', u'chilcar', u'worker']
[u'schumach', u'acus', u'mclaren', u'team', u'order']
[u'scott', u'line', u'lion', u'carey', u'name', u'crow']
[u'scud', u'join', u'hewitt']
[u'search', u'underway', u'babi', u'steal']
[u'sele', u'hop', u'return', u'time', u'open']
[u'sharemarket', u'hit', u'high', u'note']
[u'shire', u'chirpi', u'tourism', u'plan']
[u'policemen', u'injur', u'ankara', u'explos']
[u'smith', u'domin', u'england']
[u'solomon', u'forc', u'crack', u'trade']
[u'strong', u'crowd', u'expect', u'festiv']
[u'student', u'acquit', u'cricket', u'murder']
[u'support', u'group', u'outrag', u'vatican', u'marriag']
[u'sydney', u'airport', u'blueprint', u'renew', u'labor']
[u'sydney', u'airport', u'plan', u'reignit', u'restrict', u'debat']
[u'tafe', u'look', u'exchang', u'project']
[u'talk', u'resum', u'hospit', u'disput']
[u'talk', u'underway', u'resolv', u'orthopaed', u'woe']
[u'tariff', u'protest', u'fall', u'deaf', u'ear']
[u'hous', u'environment', u'friend']
[u'tasmania', u'benefit', u'electr', u'shortag']
[u'taylor', u'wont', u'troop', u'arriv', u'aid']
[u'telescop', u'focus', u'west', u'shire']
[u'telstra', u'review', u'sack', u'woman']
[u'timber', u'worker', u'fund', u'issu']
[u'tourism', u'chief', u'reject', u'rail', u'tour', u'claim']
[u'trial', u'consid', u'integr', u'crop']
[u'tuckey', u'target', u'tent', u'embassi', u'camper']
[u'tuckey', u'tour', u'illeg', u'fish', u'boat']
[u'union', u'happi', u'port', u'kembla', u'redund', u'deal']
[u'union', u'welcom', u'firefight', u'report']
[u'grand', u'prix', u'wait']
[u'growth', u'reduc', u'chanc', u'australian', u'rate']
[u'ratifi', u'trade', u'agreement', u'chile', u'singapor']
[u'seek', u'iraq', u'occup', u'death', u'toll']
[u'review', u'militari', u'forc', u'asia', u'pacif']
[u'vandal', u'target', u'jindabyn', u'school']
[u'nistelrooy', u'goal', u'light', u'unit']
[u'govt', u'offer', u'assur']
[u'webb', u'continu', u'british', u'open', u'love', u'affair']
[u'wiggin', u'beat', u'aussi', u'robert', u'track', u'pursuit', u'crown']
[u'wilson', u'make', u'steadi', u'debut']
[u'wolv', u'sign', u'seneg', u'striker', u'camara']
[u'women', u'british', u'open', u'score', u'round']
[u'work', u'start', u'demolish', u'hospit']
[u'yacht', u'damag', u'collis', u'whale']
[u'youni', u'khan', u'join', u'list', u'pakistan', u'absente']
[u'govt', u'welcom', u'plastic', u'bag', u'phase', u'plan']
[u'agassi', u'down', u'blake', u'advanc', u'washington', u'semi']
[u'seek', u'fine', u'refund', u'price', u'collus', u'claim']
[u'angler', u'watch', u'green', u'sawfish']
[u'argentina', u'dirti', u'supermarket', u'secret', u'reveal']
[u'arroyo', u'say', u'secur', u'control', u'philippin']
[u'dead', u'bomb', u'blast', u'south']
[u'atsic', u'leader', u'canvass', u'opinion', u'tent', u'embassi']
[u'aussi', u'dip', u'cent']
[u'aussi', u'pace', u'team', u'pursuit', u'final']
[u'australia', u'cruis', u'victori', u'bangladesh']
[u'australian', u'oneil', u'suffer', u'neck', u'injuri', u'race', u'crash']
[u'bird', u'recov', u'diesel', u'spill']
[u'blair', u'face', u'question', u'expert', u'death']
[u'bodi', u'saddam', u'son', u'releas', u'burial']
[u'bomber', u'final', u'hop', u'aliv']
[u'bomb', u'level', u'russian', u'militari', u'hospit']
[u'bush', u'upbeat', u'north', u'korea', u'talk']
[u'research', u'plastic', u'altern']
[u'charg', u'farmer', u'true', u'price', u'water']
[u'canberra', u'face', u'sever', u'water', u'restrict']
[u'child', u'detaine', u'face', u'wait', u'futur']
[u'claim', u'hous', u'afford', u'inquiri', u'polit']
[u'come', u'hold', u'cholesterol']
[u'conflict', u'loom', u'indian', u'templ', u'pledg']
[u'crow', u'concess', u'final']
[u'diet', u'affect', u'genet', u'express', u'studi', u'find']
[u'docker', u'continu', u'domin', u'home']
[u'documentari', u'maker', u'enact', u'histor', u'trial']
[u'dudek', u'help', u'liverpool', u'scoreless', u'draw']
[u'dutch', u'plea', u'bare', u'bottom']
[u'eel', u'withstand', u'late', u'tiger', u'onslaught']
[u'electr', u'jolt', u'give', u'chemotherapi', u'head', u'start']
[u'embattl', u'shark', u'extend', u'bronco', u'slump']
[u'emir', u'say', u'sydney', u'need', u'second', u'airport']
[u'envoy', u'arriv', u'liberia', u'talk']
[u'fear', u'power', u'blackout', u'wake', u'util', u'reform']
[u'ferrero', u'slide', u'polish', u'open']
[u'caus', u'damag', u'brisban', u'high', u'school']
[u'funer', u'hold', u'home', u'invas', u'victim']
[u'strike', u'distanc', u'michigan']
[u'affect', u'home', u'price', u'stamp', u'duti', u'bacon']
[u'heavi', u'fight', u'liberia', u'presid', u'urg']
[u'henin', u'hardenn', u'carlsbad', u'semi']
[u'hewitt', u'battl', u'semi', u'final']
[u'high', u'profil', u'offici', u'quit', u'cpsu']
[u'hobart', u'host', u'swim', u'titl']
[u'judg', u'halt', u'bryant', u'skip', u'court', u'appear']
[u'labor', u'say', u'hous', u'polici', u'help', u'build']
[u'law', u'enforc', u'control', u'technolog']
[u'liber', u'reliv', u'elect', u'disast']
[u'liberian', u'leader', u'leav', u'capit']
[u'littl', u'bear', u'surpris', u'croat', u'flasher']
[u'lizard', u'hors', u'compet', u'limelight']
[u'jail', u'year', u'firearm']
[u'shoot', u'dead', u'sydney', u'park']
[u'martyn', u'dedic', u'game']
[u'milit', u'arrest', u'arafat', u'headquart']
[u'mirror', u'hamper', u'women', u'exercis']
[u'soldier', u'iraq', u'strike']
[u'parkland', u'boost', u'adelaid', u'green', u'space']
[u'zealand', u'north', u'island', u'earthquak']
[u'nichola', u'prepar', u'play', u'london']
[u'rescu', u'capsiz', u'boat']
[u'korea', u'say', u'talk', u'nuclear', u'issu', u'take']
[u'health', u'ministri', u'ban', u'poster', u'breastfe']
[u'olymp', u'construct', u'unearth', u'classic', u'sit']
[u'origin', u'superman', u'cape', u'tight', u'fetch']
[u'oriol', u'winless', u'swift', u'kestrel', u'triumph']
[u'owner', u'face', u'charg', u'mistreat', u'brumbi']
[u'petrol', u'pump', u'display', u'ethanol', u'content']
[u'announc', u'hous', u'afford', u'inquiri']
[u'polic', u'despit', u'fanci', u'footwork']
[u'polic', u'head', u'solomon', u'weather', u'coast']
[u'polic', u'search', u'motiv', u'pharmacist', u'murder']
[u'potter', u'battl', u'pirat', u'spanish']
[u'protest', u'ralli', u'review', u'worker', u'comp', u'law']
[u'premier', u'rule', u'stamp', u'duti', u'review']
[u'ralf', u'lead', u'hockenheim', u'qualifi', u'webber', u'fourth']
[u'report', u'troop', u'odd', u'iraq']
[u'retail', u'agre', u'phase', u'plastic', u'bag']
[u'roo', u'wari', u'lion']
[u'saddam', u'daughter', u'accus', u'aid', u'betray']
[u'saddam', u'son', u'buri', u'tikrit']
[u'saddam', u'tape', u'like', u'authent']
[u'sauna', u'champion', u'turn', u'heat']
[u'schwarzenegg', u'pois', u'announc', u'polit', u'plan']
[u'flick', u'break', u'bollywood', u'formula']
[u'scott', u'shot', u'sweden']
[u'scud', u'fire', u'ace', u'kuerten']
[u'serena', u'miss', u'open']
[u'seven', u'injur', u'west', u'bank', u'protest']
[u'short', u'cours', u'record', u'tumbl', u'hobart']
[u'smith', u'hit', u'second', u'doubl', u'england', u'wilt']
[u'soldier', u'snooz', u'fridg', u'escap', u'iraq', u'heat']
[u'solomon', u'milit', u'agre', u'surrend', u'weapon']
[u'solomon', u'resid', u'turn', u'militari']
[u'storm', u'edg', u'warrior', u'eel', u'shark']
[u'storm', u'edg', u'warrior', u'thriller']
[u'sultan', u'wive', u'enjoy', u'weekend', u'away']
[u'swim', u'star', u'hobart']
[u'teacher', u'strike', u'gain', u'momentum']
[u'aussi', u'silver', u'world', u'track', u'titl']
[u'kill', u'kenyan', u'grenad', u'explos']
[u'authoris', u'peacekeep', u'liberia']
[u'jobless', u'rate', u'drop']
[u'journalist', u'sentenc', u'aceh']
[u'soldier', u'die', u'stray', u'bullet', u'wind', u'baghdad']
[u'soldier', u'kill', u'wound', u'iraq', u'ambush']
[u'soldier', u'kill', u'attack', u'north', u'baghdad']
[u'troop', u'kill', u'afghan', u'gunbattl']
[u'polic', u'appeal', u'help', u'murder', u'case']
[u'woman', u'murder', u'unit']
[u'wallabi', u'springbok', u'lock', u'break']
[u'wallabi', u'answer', u'critic', u'point']
[u'warlord', u'agre', u'talk', u'australian', u'forc']
[u'teacher', u'postpon', u'plan', u'strike']
[u'webb', u'slip', u'fourth', u'british', u'open', u'round']
[u'western', u'power', u'boss', u'say', u'govt', u'util', u'deregul']
[u'win', u'bomber', u'docker', u'lion', u'pie']
[u'woman', u'charg', u'alleg', u'assault', u'taxi', u'driver']
[u'worker', u'kill', u'pakistan', u'rocket', u'attack']
[u'kill', u'explos', u'catch', u'pakistan']
[u'afghan', u'troop', u'kill', u'anti', u'taliban', u'oper']
[u'agassi', u'roddick', u'washington']
[u'renew', u'talk', u'qanta', u'partnership']
[u'qaeda', u'tape', u'warn', u'cuba', u'prison']
[u'appoint', u'woman', u'judg', u'block', u'iraqi', u'citi']
[u'aussi', u'pursuit', u'team', u'take', u'gold', u'record', u'time']
[u'aussi', u'pursuit', u'team', u'take', u'gold', u'world', u'record', u'time']
[u'aussi', u'soldier', u'solomon', u'allow']
[u'aussi', u'women', u'ensur', u'finish']
[u'australian', u'deleg', u'wrap', u'tibet', u'tour']
[u'australia', u'race', u'victori']
[u'feng', u'shui', u'suck', u'politician', u'brain']
[u'bangladesh']
[u'bangladesh', u'cairn']
[u'beatti', u'back', u'brisban', u'resid']
[u'beckham', u'real', u'winner', u'china']
[u'beckham', u'make', u'real', u'debut']
[u'takeov', u'tasrail', u'stumbl', u'govt']
[u'bishop', u'pledg', u'church', u'support', u'child', u'abus']
[u'bodi', u'north', u'roadsid']
[u'bok', u'suspend', u'spite', u'nation', u'clash']
[u'bolivian', u'polic', u'seiz', u'cocain', u'shipment']
[u'build', u'india', u'collaps', u'blast', u'kill']
[u'bushfir', u'caus', u'havoc', u'western', u'canada']
[u'bushfir', u'rage', u'europ']
[u'bushwalk', u'uncov', u'human', u'remain', u'tent']
[u'claim', u'workcov', u'unfund', u'liabil', u'blow']
[u'custom', u'get', u'deal', u'say']
[u'custom', u'counterfeit', u'credit', u'card', u'sydney']
[u'dog', u'whip', u'south', u'dragon', u'knight', u'thriller']
[u'dynam', u'martyn', u'smash', u'australia', u'victori']
[u'east', u'timor', u'acquitt', u'bolster', u'indonesia', u'armi']
[u'miss', u'day']
[u'emir', u'boss', u'say', u'airlin', u'threat', u'qanta']
[u'england', u'begin', u'chase', u'lord']
[u'european', u'pride', u'parad', u'differ', u'fat']
[u'famili', u'lose', u'disabl', u'fund', u'labor']
[u'fear', u'disarm', u'solomon', u'milit', u'danger']
[u'feral', u'invit', u'attend', u'territori', u'ball']
[u'fewer', u'jail', u'bird', u'flee', u'nest']
[u'fight', u'continu', u'liberian', u'leader', u'meet', u'envoy']
[u'finn', u'steam', u'sauna', u'sit', u'glori']
[u'smaller', u'airlin', u'public', u'sector', u'tell']
[u'furyk', u'take', u'michigan', u'lead', u'shot']
[u'germani', u'men', u'team', u'sprint', u'crown']
[u'global', u'exploit', u'food', u'technolog', u'potenti']
[u'govt', u'deni', u'grab', u'talk']
[u'govt', u'reject', u'claim', u'trade', u'deal', u'push', u'drug']
[u'great', u'belgian', u'rival', u'clash', u'diego', u'final']
[u'hewitt', u'eas', u'final']
[u'index', u'show', u'onlin', u'grow']
[u'inform', u'hunt', u'saddam']
[u'injuri', u'put', u'heenan', u'doubt', u'nation']
[u'inzamam', u'set', u'resurrect', u'career']
[u'iraqi', u'wound', u'blast', u'baghdad', u'airport', u'road']
[u'isra', u'pianist', u'serenad', u'palestinian', u'ramallah']
[u'jone', u'fastest', u'breaststrok', u'qualifi']
[u'kefu', u'clear', u'injuri', u'doubt']
[u'kidnapp', u'kill', u'deliv', u'ransom', u'relat']
[u'lenton', u'continu', u'domin', u'hobart']
[u'liberian', u'leader', u'announc', u'exil', u'date']
[u'liberian', u'leader', u'relinquish', u'power']
[u'martin', u'begin', u'nation', u'tour', u'promot', u'invest']
[u'melbourn', u'polic', u'investig', u'women', u'death']
[u'million', u'chines', u'short', u'drink', u'water', u'amid']
[u'mobil', u'user', u'hazard', u'drink', u'driver']
[u'montoya', u'take', u'pole', u'quash', u'mclaren', u'transfer', u'rumour']
[u'deliv', u'realiti', u'check', u'mobil', u'coverag']
[u'nat', u'turn', u'attent', u'prostitut']
[u'festiv', u'celebr', u'indigen', u'cultur']
[u'korea', u'oppos', u'bolton', u'repres']
[u'educ', u'deni', u'misrepres', u'violenc']
[u'ntini', u'burst', u'leav', u'england', u'face', u'humili']
[u'palestinian', u'milit', u'group', u'end', u'ceas']
[u'pani', u'matta', u'stay', u'toyota']
[u'pilot', u'unhurt', u'plane', u'skid', u'runway']
[u'pistolesi', u'hammer', u'koukalova', u'polish', u'titl']
[u'polic', u'crackdown', u'kid', u'alleg', u'terroris']
[u'polic', u'push', u'fund', u'banish', u'bulli']
[u'polic', u'question', u'bodi']
[u'port', u'crow', u'thriller', u'saint', u'smash', u'eagl']
[u'portug', u'seek', u'help', u'battl', u'fire', u'respit']
[u'power', u'gale', u'forc', u'wind', u'whip']
[u'join', u'opposit', u'brisban', u'detent']
[u'score', u'lowest', u'crime', u'rate', u'decad']
[u'raikkonen', u'ralf', u'german']
[u'ramallah', u'spell', u'mall']
[u'record', u'tumbl', u'short', u'cours', u'meet']
[u'rescuer', u'comb', u'ruin', u'russian', u'blast']
[u'rescuer', u'search', u'ruin', u'russian', u'blast', u'kill']
[u'research', u'shoot', u'simpl', u'ovarian', u'cancer', u'check']
[u'restrict', u'worst', u'case', u'western', u'power']
[u'ronaldinho', u'claim', u'unit', u'break', u'heart']
[u'russian', u'grankovskaya', u'win', u'women', u'sprint', u'titl']
[u'rwandan', u'court', u'sentenc', u'death', u'genocid']
[u'african', u'lobbi', u'group', u'meet', u'ahead', u'aid', u'meet']
[u'score', u'kill', u'pakistan', u'explos', u'blast']
[u'scott', u'share', u'lead', u'scandinavian', u'master']
[u'scud', u'go', u'ferreira']
[u'seven', u'rebel', u'soldier', u'latest', u'casualti']
[u'sinn', u'fein', u'leader', u'warn', u'assassin']
[u'state', u'question', u'scope', u'hous', u'inquiri']
[u'state', u'reject', u'stamp', u'duti']
[u'studi', u'assess', u'educ']
[u'swiss', u'madison', u'stuttgart']
[u'tasmania', u'urg', u'implement', u'smoke']
[u'teacher', u'spotlight', u'school', u'violenc']
[u'terrorist', u'loos', u'iraq']
[u'rescu', u'boat', u'break', u'coast']
[u'toll', u'refus', u'budg', u'tranz', u'rail', u'takeov']
[u'train', u'driver', u'kill', u'england', u'train', u'smash']
[u'unit', u'mull', u'chelsea', u'offer', u'veron']
[u'compil', u'onlin', u'global', u'atlas', u'mammal']
[u'journalist', u'free', u'aceh']
[u'guard', u'latest', u'qaeda', u'threat']
[u'govt', u'downplay', u'report', u'polic', u'bulli']
[u'govt', u'review', u'reckless', u'drive', u'law']
[u'liber', u'defeat', u'discuss']
[u'lib', u'elect', u'femal', u'presid']
[u'wallabi', u'accus', u'springbok', u'premedit', u'foul']
[u'warn', u'drug', u'price', u'tripl', u'free', u'trade']
[u'watchdog', u'probe', u'plagiar', u'scandal']
[u'webb', u'strike', u'distanc', u'british', u'open']
[u'woman', u'bad', u'burn', u'petrol', u'station', u'explos']
[u'woman', u'suffer', u'horrif', u'burn', u'petrol', u'station']
[u'world', u'secur', u'plan', u'track']
[u'young', u'isra', u'woman', u'disappear', u'kidnap', u'fear']
[u'kill', u'vietnam', u'train', u'smash']
[u'miner', u'stage', u'hour', u'snap', u'strike']
[u'cut', u'spend', u'year']
[u'aborigin', u'children', u'train', u'adventur']
[u'govt', u'plan', u'stop', u'land', u'specul']
[u'actu', u'accus', u'abandon', u'famili']
[u'survey', u'paint', u'bright', u'employ', u'pictur']
[u'airport', u'number']
[u'black', u'doctor', u'clear', u'lomu', u'play']
[u'alleg', u'bali', u'bomb', u'mastermind', u'claim', u'ignor']
[u'pressur', u'worker', u'comp', u'law']
[u'subsidiari', u'consid', u'expans']
[u'american', u'wed', u'top', u'offic']
[u'anti', u'high', u'rise', u'protest', u'yeppoon']
[u'auction', u'fail', u'sell', u'bush', u'hotel']
[u'australian', u'teen', u'unsaf', u'risk']
[u'aust', u'vet', u'band', u'help', u'timores', u'student']
[u'bayern', u'need', u'makaay', u'say', u'beckenbau']
[u'beckham', u'steal', u'limelight', u'real', u'arriv', u'japan']
[u'beij', u'put', u'chines', u'stamp', u'emblem']
[u'bettini', u'upstag', u'ullrich', u'cyclass']
[u'boat', u'industri', u'get', u'reef', u'assur']
[u'bok', u'test', u'surpris', u'gregan']
[u'bok', u'test', u'goug', u'surpris', u'gregan']
[u'brisban', u'surgeon', u'perform', u'tripl', u'transplant']
[u'busi', u'expect', u'economi', u'slow']
[u'longer', u'freez', u'crop']
[u'medic', u'centr', u'inquiri', u'man', u'death']
[u'nation', u'strategi', u'fight', u'poverti']
[u'moratorium']
[u'call', u'famili', u'reunit']
[u'canada', u'battl', u'feroci', u'bushfir']
[u'cancer', u'council', u'fight', u'plan', u'law']
[u'dealership', u'win', u'busi', u'award']
[u'carey', u'goal', u'rule', u'good']
[u'cat', u'escap', u'unharm', u'teen', u'take']
[u'probe', u'station', u'secur']
[u'cheri', u'blair', u'thing']
[u'china', u'plan', u'robot', u'space', u'trip', u'year']
[u'china', u'unfurl', u'olymp', u'flag']
[u'clark', u'say', u'minist', u'sack', u'atsic', u'offici']
[u'cockbain', u'add', u'wallabi', u'squad']
[u'comic', u'chase', u'global', u'laugh']
[u'comment', u'seek', u'plan']
[u'compani', u'order', u'clean', u'wast', u'manag']
[u'concern', u'air', u'bushfir', u'probe', u'submiss']
[u'coria', u'claim', u'titl', u'trick', u'polish', u'victori']
[u'coulthard', u'hop', u'build', u'podium', u'success']
[u'council', u'explor', u'merger', u'option']
[u'council', u'sell', u'land', u'rat', u'pay']
[u'council', u'unhappi', u'develop', u'plan', u'loss']
[u'croc', u'train', u'player']
[u'cronj', u'murder', u'report']
[u'crown', u'defend', u'secur', u'arrang', u'morn']
[u'csiro', u'scientist', u'issu', u'warn', u'greenhous', u'gas']
[u'death', u'toll', u'build', u'collaps', u'india', u'mount']
[u'death', u'toll', u'indian', u'blast', u'sit']
[u'technolog', u'help', u'polic', u'solv', u'miss']
[u'door', u'open', u'thorp', u'vaughan']
[u'dubbo', u'plan', u'indigen', u'scheme']
[u'edinburgh', u'fring', u'rise', u'ash']
[u'effort', u'club', u'privat', u'hand']
[u'indonesian', u'presid', u'wahid', u'hospit']
[u'explos', u'kill', u'injur', u'north', u'afghanistan']
[u'explos', u'devast', u'remot', u'pakistani', u'villag']
[u'extent', u'primus', u'injuri', u'unclear']
[u'fantast', u'protea', u'crush', u'england']
[u'fear', u'crop', u'spark', u'legal', u'stoush']
[u'ferrari', u'suffer', u'disappoint', u'race', u'season']
[u'ferreira', u'upset', u'hewitt', u'final']
[u'servic', u'fund', u'scheme', u'anger', u'farmer']
[u'peacekeep', u'leav', u'liberia']
[u'french', u'track', u'aussi', u'lead', u'chase']
[u'french', u'midfield', u'sibierski', u'join', u'citi']
[u'fruit', u'grower', u'fear', u'irrig', u'delay', u'impact']
[u'furyk', u'hold', u'wood', u'warwick', u'hill']
[u'priest', u'elect', u'bishop', u'post']
[u'germani', u'world', u'championship', u'second', u'gold']
[u'gerrard', u'liverpool', u'lose', u'galatasaray']
[u'beckham', u'time', u'zidan']
[u'govern', u'delay', u'disabl', u'review']
[u'govt', u'announc', u'inspector', u'general']
[u'govt', u'queri', u'licenc', u'decis', u'child', u'offend']
[u'govt', u'urg', u'disabl', u'age', u'care', u'centr']
[u'hanson', u'groin', u'injuri']
[u'hatchet', u'attack', u'victim', u'expect', u'leav', u'hospit']
[u'hawk', u'embattl', u'schwab']
[u'health', u'group', u'nation', u'solut']
[u'henin', u'hardenn', u'triumph', u'battl', u'belgium']
[u'henman', u'win', u'singl', u'titl', u'washington']
[u'hick', u'urg', u'govt', u'pressur', u'washington']
[u'highway', u'crash', u'leav', u'dead']
[u'hoeness', u'criticis', u'excess', u'madrid', u'spend']
[u'hope', u'hour', u'medic', u'servic', u'eas']
[u'hope', u'homeless', u'scheme', u'boost']
[u'howard', u'deni', u'mislead', u'parliament', u'ethanol']
[u'howard', u'kick', u'northern', u'tour', u'race']
[u'hunter', u'permit', u'remind']
[u'hyundai', u'chief', u'link', u'north', u'korea', u'bribe', u'leap']
[u'ident', u'human', u'remain', u'mysteri']
[u'illeg', u'detain', u'kid', u'court', u'case', u'resum', u'tomorrow']
[u'announc', u'record', u'profit']
[u'indonesian', u'rebel', u'peac', u'negoti', u'deni', u'terror']
[u'ingram', u'predict', u'tough', u'time', u'davi']
[u'inquest', u'hear', u'evid']
[u'iran', u'refus', u'hand', u'qaeda', u'member']
[u'iron', u'mike', u'tyson', u'file', u'bankruptci']
[u'isra', u'woman', u'shoot', u'bethlehem']
[u'israel', u'prison', u'list', u'disappoint', u'palestinian']
[u'israel', u'start', u'free', u'prison', u'wednesday']
[u'johnson', u'win', u'doubl', u'finland']
[u'juve', u'gain', u'reveng', u'italian', u'super']
[u'khamenei', u'word', u'nuclear', u'inspect']
[u'labor', u'argu', u'extern', u'check', u'uni']
[u'launceston', u'council', u'win', u'smoke', u'free', u'award']
[u'institut', u'say', u'bodi', u'corpor', u'disput']
[u'bowyer', u'robson', u'tell', u'fan']
[u'delight', u'west', u'deal']
[u'magnet', u'ferri', u'servic', u'begin']
[u'charg', u'drink', u'drive', u'take']
[u'take', u'fight', u'save', u'dog', u'life', u'suprem', u'court']
[u'matthew', u'pinpoint', u'pie', u'forward']
[u'mayor', u'confid', u'miner', u'work']
[u'mayor', u'consid', u'merger', u'posit']
[u'mcewen', u'back', u'rail']
[u'meat', u'union', u'defend', u'industri', u'disput']
[u'meet', u'consid', u'council', u'merger']
[u'meet', u'debat', u'illeg', u'fish']
[u'milit', u'remain', u'arafat', u'compound']
[u'mill', u'lenton', u'dead', u'heat', u'aussi', u'record']
[u'mine', u'confer', u'launch', u'attack', u'govt']
[u'mine', u'forum', u'tip', u'posit']
[u'mine', u'safeti', u'probe', u'finalis']
[u'minist', u'jeer', u'africa', u'aid', u'meet']
[u'miss', u'safe']
[u'mix', u'respons', u'tourism', u'merger', u'plan']
[u'montgomeri', u'track', u'sweden']
[u'montoya', u'stake', u'claim', u'titl']
[u'effort', u'urg', u'control', u'weed']
[u'soldier', u'arrest', u'link', u'fail']
[u'quit', u'threat', u'remain']
[u'mundin', u'bout', u'doubt']
[u'mundin', u'echol', u'bout', u'postpon']
[u'museum', u'seek', u'accredit']
[u'mutual', u'oblig', u'way', u'acoss']
[u'bendigo', u'polic', u'station', u'site', u'choos']
[u'flag', u'break', u'hill']
[u'taxat', u'offici', u'review', u'administr']
[u'korean', u'head', u'poll']
[u'korea', u'say', u'nuclear', u'talk', u'place', u'soon']
[u'sydney', u'water', u'restrict']
[u'crack', u'spear', u'tackl']
[u'govt', u'condemn', u'attack', u'holocaust', u'exhibit']
[u'part', u'blame', u'fire', u'stanhop']
[u'rural', u'chief', u'defend', u'hazard', u'reduct', u'burn']
[u'assess', u'role', u'fire', u'stanhop']
[u'reject', u'call', u'reduc', u'stamp', u'duti']
[u'refus', u'releas', u'algerian']
[u'packer', u'plan', u'stake', u'seek']
[u'palestinian', u'kill', u'west', u'bank', u'lay']
[u'pedestrian', u'die', u'road', u'incid']
[u'peopl', u'disabl', u'carri', u'cost']
[u'perilya', u'happi', u'break', u'hill', u'perform']
[u'phelp', u'prepar', u'champ']
[u'pioneer', u'good', u'south']
[u'air', u'road', u'complet', u'concern']
[u'denial', u'ethanol', u'talk', u'inadequ', u'say', u'labor']
[u'closer', u'look', u'indigen', u'communiti']
[u'warn', u'hous', u'review', u'wont', u'slash', u'price']
[u'polic', u'arrest', u'suspect', u'continu', u'member']
[u'polic', u'begin', u'investig', u'boat', u'crash']
[u'polic', u'drop', u'charg', u'muslim', u'leader']
[u'polic', u'hope', u'lead', u'miss', u'person', u'case']
[u'polic', u'road', u'victim']
[u'polic', u'probe', u'mooloolaba', u'blaze']
[u'polic', u'reject', u'claim', u'ident', u'child', u'rapist']
[u'polic', u'seach', u'arm', u'bandit']
[u'power', u'cut', u'unlik', u'despit', u'shortag']
[u'probe', u'navi', u'doctor', u'begin']
[u'propos', u'medicar', u'chang', u'target', u'campaign']
[u'nation', u'vote', u'abolish', u'stamp', u'duti']
[u'nat', u'chang', u'child', u'abus']
[u'parti', u'unit', u'detent', u'centr']
[u'rebel', u'leav', u'monrovia', u'peac', u'forc', u'arriv']
[u'record', u'tumbl', u'swim', u'championship']
[u'reiq', u'back', u'hous', u'price', u'probe']
[u'resid', u'merger', u'concern']
[u'resid', u'urg', u'feder', u'park']
[u'result', u'plagiar', u'probe', u'public']
[u'rlpa', u'urg', u'player', u'sign', u'contract']
[u'rogu', u'thai', u'eleph', u'captur', u'kill']
[u'ronaldinho', u'boo', u'unit', u'barca']
[u'saint', u'legend', u'hang', u'boot']
[u'sapphir', u'finish', u'fifth', u'world', u'titl']
[u'savag', u'speak', u'davi', u'decis']
[u'school', u'driver', u'plead', u'guilti', u'child']
[u'scott', u'clinch', u'scandinavian', u'crown']
[u'educ', u'plan', u'draw', u'right', u'life']
[u'shopper', u'urg', u'help', u'catch', u'servic', u'station', u'bandit']
[u'singapor', u'debat', u'foreign', u'worker', u'level', u'amid']
[u'month', u'aliv', u'pakistan', u'blast']
[u'soldier', u'silenc', u'ahead', u'mutini', u'hear']
[u'sorenstam', u'secur', u'slam', u'british', u'open', u'victori']
[u'sport', u'group', u'want', u'better', u'facil']
[u'stage', u'latest', u'celebr', u'trial']
[u'state', u'stand', u'stamp', u'duti', u'hous', u'review']
[u'strong', u'earthquak', u'rock', u'southern', u'iran']
[u'sugar', u'festiv', u'prove', u'sweet', u'time']
[u'support', u'port', u'secur', u'boost']
[u'survey', u'rais', u'concern', u'indigen', u'fish']
[u'vote', u'time', u'frame', u'growth']
[u'continu', u'fall']
[u'terror', u'fear', u'spark', u'port', u'secur', u'boost']
[u'thiev', u'put', u'jeopardi']
[u'thousand', u'expect', u'flock', u'sheepvent']
[u'timber', u'worker', u'hope', u'secur', u'fund']
[u'blaze', u'explos']
[u'player', u'dont', u'like', u'rise', u'henin', u'hardenn']
[u'tour', u'franc', u'give', u'clean', u'health']
[u'tourism', u'sector', u'bounc', u'sar']
[u'tourist', u'group', u'combin', u'effort']
[u'truss', u'air', u'water', u'blueprint', u'concern']
[u'turner', u'arrest', u'report']
[u'kill', u'learjet', u'crash']
[u'univers', u'help', u'boost', u'nurs', u'number']
[u'urgent', u'bridg', u'rich', u'poor', u'divid']
[u'scholar', u'trial', u'beij']
[u'troop', u'airport', u'north', u'baghdad', u'come']
[u'vanston', u'pour', u'cold', u'water', u'babi', u'bonus']
[u'vaughan', u'read', u'lacklustr', u'england', u'riot']
[u'author', u'clear', u'death', u'volunt']
[u'court', u'hear', u'lindi', u'defenc', u'doubl', u'murder', u'trial']
[u'govt', u'local', u'govt', u'stanc']
[u'teacher', u'threaten', u'action', u'violenc']
[u'water', u'bomb', u'helicopt', u'dispatch', u'canberra']
[u'water', u'legal', u'action', u'begin']
[u'wave', u'afghan', u'refuge', u'return', u'home']
[u'welsh', u'aim', u'victori', u'hobart']
[u'whale', u'crash', u'damag', u'yacht']
[u'william', u'appeal', u'punish']
[u'woman', u'give', u'birth', u'fli', u'sahara', u'desert']
[u'woman', u'hospit', u'bike', u'crash']
[u'world', u'titl', u'win', u'china', u'zhang']
[u'youth', u'urg', u'boost', u'communiti', u'involv']
[u'year', u'sentenc', u'jail', u'manslaught']
[u'dead', u'crash', u'bolivia']
[u'italian', u'german', u'namibia', u'road']
[u'news', u'chief', u'say', u'cut', u'come']
[u'accus', u'murder', u'escap', u'violent', u'victim']
[u'forestri', u'oper', u'face', u'shake']
[u'govern', u'tell', u'seek', u'compens']
[u'govt', u'servic', u'unlik', u'face', u'legal']
[u'teacher', u'offer', u'rise']
[u'urg', u'fire']
[u'agassi', u'power', u'past', u'niemey']
[u'aid', u'campaign', u'end', u'treatment', u'boycott']
[u'airlin', u'fli', u'high', u'posit', u'profit']
[u'black', u'chang']
[u'amnesti', u'claim', u'acehnes', u'kill', u'latest']
[u'sell', u'rural', u'franchis']
[u'asic', u'move', u'invest', u'transpar']
[u'asic', u'appeal', u'whitlam', u'decis']
[u'dead', u'jakarta', u'blast']
[u'atsic', u'chair', u'hop', u'address', u'famili', u'violenc']
[u'audit', u'show', u'port', u'stephen', u'leader', u'public']
[u'aust', u'help', u'anim', u'handl', u'practic', u'waff']
[u'australian', u'offici', u'marriott', u'report']
[u'ballarat', u'cancer', u'treatment', u'servic']
[u'bangladeshi', u'reject', u'smelli', u'currenc']
[u'bank', u'stock', u'push', u'higher']
[u'bayern', u'strike', u'boost', u'makaay', u'deal']
[u'beatti', u'stump', u'tree', u'clear', u'area']
[u'beckham', u'right', u'home', u'real']
[u'offic']
[u'bergqvist', u'montgomeri', u'record', u'stockholm']
[u'billabong', u'reject', u'report', u'leadership', u'rumbl']
[u'blast', u'fifth', u'jakarta', u'bomb', u'attack']
[u'bomb', u'blast', u'rock', u'jakarta', u'hotel']
[u'border', u'expect', u'quick', u'return', u'warn']
[u'border', u'tip', u'speedi', u'return', u'warn']
[u'airlift', u'shoot', u'accid']
[u'hospit']
[u'british', u'zoo', u'anim', u'cream', u'lolli']
[u'busi', u'confid', u'year', u'high']
[u'hous', u'review', u'look', u'state', u'land']
[u'part', u'factori', u'disput', u'worsen']
[u'cathol', u'school', u'staff', u'meet', u'discuss', u'unresolv']
[u'shed', u'job', u'say', u'union']
[u'childcar', u'centr', u'plan', u'overdevelop']
[u'china', u'jail', u'democraci', u'advoc']
[u'china', u'jail', u'democrat', u'campaign']
[u'clement', u'stun', u'moya', u'montreal']
[u'costello', u'set', u'sight', u'poker', u'machin']
[u'councillor', u'discuss', u'develop', u'propos']
[u'council', u'say', u'wast', u'contractor', u'standard']
[u'court', u'tell', u'child', u'detaine', u'need', u'ongo']
[u'crow', u'prepar', u'eagl', u'clash']
[u'lectur', u'concern', u'cut']
[u'support', u'claim', u'strong', u'econom', u'potenti']
[u'danih', u'vow', u'fight']
[u'darl', u'down', u'lose', u'har', u'race']
[u'detaine', u'mother', u'deni', u'husband']
[u'dimarco', u'scott', u'close', u'presid', u'berth']
[u'downer', u'warn', u'australian', u'avoid', u'jakarta']
[u'elector', u'chang', u'hinder', u'elect', u'chanc']
[u'eyewit', u'describ', u'bomb', u'scene', u'chao']
[u'fairfax', u'cours', u'profit']
[u'fairfax', u'share', u'jump', u'follow', u'strong', u'profit']
[u'fan', u'live', u'sleep', u'like', u'beckham']
[u'farmer', u'receiv', u'special', u'bushfir', u'fund']
[u'feder', u'polic', u'investig', u'jakarta', u'blast']
[u'govt', u'seek', u'indigen', u'forest']
[u'govt', u'urg', u'increas', u'region', u'airport']
[u'ferreira', u'aim', u'master', u'montreal']
[u'abat', u'zone', u'impact', u'rural', u'resid']
[u'firefight', u'die', u'help', u'extinguish', u'hous']
[u'round', u'power', u'restrict', u'success']
[u'judiciari']
[u'foreman', u'stay', u'illman', u'quit']
[u'lion', u'coach', u'return', u'gold', u'coast']
[u'fring', u'play', u'offer']
[u'furyk', u'rise', u'career', u'high', u'world', u'rank']
[u'ginger', u'compani', u'predict', u'loss']
[u'gold', u'welsh', u'mill', u'jone', u'hobart']
[u'gough', u'retir', u'test', u'cricket']
[u'govt', u'claim', u'raaf', u'base', u'expans', u'benefit']
[u'govt', u'develop', u'adelaid', u'land']
[u'govt', u'support', u'indigen', u'initi']
[u'govt', u'tri', u'hook', u'carp', u'catcher']
[u'govt', u'wont', u'comment', u'futur']
[u'graham', u'sign', u'tiger']
[u'greiner', u'vow', u'maintain', u'tobacco', u'link', u'despit']
[u'griffith', u'win', u'rave', u'broadway', u'debut']
[u'grower', u'want', u'immigr', u'raid', u'compo']
[u'hall', u'releas', u'worcestershir', u'semi']
[u'high', u'court', u'consid', u'elector', u'reform']
[u'high', u'nutrient', u'level', u'caus', u'water', u'exceed']
[u'home', u'lose', u'fire', u'rage', u'western', u'canada']
[u'hotspot', u'focus', u'marin', u'conserv']
[u'howard', u'flag', u'defenc', u'base']
[u'hussain', u'head', u'queue', u'slice', u'humbl']
[u'hutchison', u'record', u'loss']
[u'increas', u'tourism', u'gloucest', u'area']
[u'indigen', u'fish', u'method', u'face', u'scrutini']
[u'indonesian', u'armi', u'general', u'jail', u'timor']
[u'indonesian', u'presid', u'visit', u'hotel', u'blast', u'site']
[u'injuri', u'end', u'docker', u'waterhous', u'season']
[u'inquiri', u'tell', u'govt', u'medicar', u'polici', u'hurt', u'poor']
[u'iran', u'close', u'build', u'nuclear', u'bomb', u'report']
[u'isra', u'arrest', u'barrier', u'activist', u'support']
[u'judg', u'verdict', u'today', u'detent', u'centr']
[u'juri', u'ballarat', u'curfew']
[u'kentucki', u'stream', u'flow', u'bourbon']
[u'cottag', u'resid', u'oppos', u'redevelop']
[u'kidney', u'foundat', u'declar', u'alert', u'area']
[u'koperberg', u'reject', u'blame', u'firestorm']
[u'krige', u'contempl', u'legal', u'action', u'jone']
[u'lack', u'govt', u'support', u'water', u'cart', u'appal']
[u'landcar', u'urg', u'retain', u'autonomi']
[u'landhold', u'speak', u'opposit', u'pipelin']
[u'lawyer', u'appeal', u'child', u'detent', u'rule']
[u'lewi', u'fight', u'year', u'say', u'klitschko']
[u'liberian', u'celebr', u'peacekeep', u'arriv']
[u'liberia', u'peacekeep', u'await', u'reinforc']
[u'lib', u'showground', u'propos']
[u'licoric', u'factori', u'win', u'govt', u'grant']
[u'loit', u'earn', u'clash', u'seed', u'clijster']
[u'manilla', u'council', u'press', u'ahead', u'merger', u'plan']
[u'martin', u'head', u'south', u'drum', u'invest']
[u'martyn', u'prim', u'home', u'appear']
[u'mayor', u'rais', u'airport', u'secur', u'concern']
[u'medicar', u'chang', u'boost', u'rural', u'servic']
[u'meet', u'mazen', u'sharon', u'cancel']
[u'meet', u'hold', u'look', u'live', u'murray', u'propos']
[u'melbourn', u'scientist', u'win', u'award', u'cell', u'death']
[u'melbourn', u'showground', u'redevelop']
[u'milf', u'chief', u'die', u'peac', u'talk']
[u'mine', u'safeti', u'confer', u'focus', u'prevent']
[u'record', u'fall', u'hobart']
[u'weapon', u'surrend', u'solomon']
[u'morgan', u'begin', u'contract', u'talk', u'westpac']
[u'mundin', u'support', u'echol']
[u'nat', u'region', u'elector', u'boundari', u'chang']
[u'naval', u'offic', u'tell', u'medic', u'inquiri', u'gang', u'rape']
[u'neighbour', u'kick', u'stink', u'music', u'love', u'pig']
[u'neighbour', u'kick', u'stink', u'serenad', u'pig']
[u'australian', u'kill', u'jakarta', u'blast', u'dfat']
[u'council', u'alarm', u'resourc', u'manag']
[u'govt', u'tackl', u'wild', u'problem']
[u'kidney', u'diseas', u'tripl', u'nation', u'averag']
[u'nurs', u'home', u'death', u'blame', u'natur', u'caus']
[u'leav', u'cycl', u'stage', u'year']
[u'million', u'peopl', u'pakistan', u'flood']
[u'outback', u'project', u'receiv', u'architect', u'award']
[u'palestinian', u'prison', u'free', u'wednesday']
[u'paradorn', u'montreal']
[u'parapleg', u'lose', u'year', u'compo', u'claim']
[u'parti', u'come', u'costello']
[u'persuad', u'kid', u'fish', u'get', u'harder', u'sunfish']
[u'confid', u'north', u'korea', u'wont', u'target']
[u'inspect', u'alic', u'darwin', u'railway']
[u'meet', u'cape', u'york', u'indigen', u'leader']
[u'oppos', u'marriag']
[u'plan', u'china', u'trip']
[u'play', u'talk', u'retir']
[u'say', u'indigen', u'peopl', u'give']
[u'thank', u'darwin', u'hospit', u'grant']
[u'tour', u'indigen', u'communiti']
[u'polic', u'hunt', u'nude', u'hiker']
[u'polic', u'join', u'fight', u'school', u'cheat']
[u'polic', u'prepar', u'secur', u'report', u'habib']
[u'portug', u'calam', u'declar']
[u'power', u'confid', u'primus']
[u'prawn', u'trawler', u'sink', u'coast']
[u'premium', u'increas', u'fuel', u'insur', u'profit', u'turnaround']
[u'public', u'behav', u'despit', u'vandal', u'npws']
[u'pyongyang', u'urg', u'washington', u'drop', u'hostil', u'polici']
[u'qatar', u'crown', u'princ', u'diplomat']
[u'govt', u'urg', u'provid', u'afford', u'hous']
[u'queensland', u'coal', u'miner', u'strike', u'action']
[u'race', u'ident', u'ingham', u'pass', u'away']
[u'randel', u'urg', u'black', u'retali']
[u'real', u'unstopp', u'raul']
[u'reef', u'advertis', u'program', u'hail', u'success']
[u'resign', u'forc', u'elect', u'bendigo']
[u'retail', u'urg', u'develop', u'strategi']
[u'russian', u'uncov', u'giant', u'dinosaur', u'remain']
[u'increas', u'penalti', u'aggrav', u'crime']
[u'sampl', u'ridgeway', u'extend']
[u'premier', u'slam', u'cut']
[u'schumach', u'face', u'slip', u'crown']
[u'scienc', u'award', u'help', u'fund', u'cancer', u'research']
[u'shark', u'attack', u'affect', u'tourism', u'year']
[u'shier', u'blame', u'board', u'cut']
[u'copi', u'kennedi', u'solomon', u'swim']
[u'skin', u'cancer', u'victim', u'sue', u'employ']
[u'solomon', u'forc', u'plan', u'second', u'polic', u'post']
[u'sorenstam', u'address', u'major', u'weak', u'lytham']
[u'south', u'african', u'youngster', u'pile', u'miseri']
[u'south', u'africa', u'aviat', u'author', u'deni', u'cronj']
[u'south', u'east', u'road', u'toll', u'percent']
[u'spur', u'complet', u'kanout', u'sign']
[u'stanhop', u'apologis', u'koperberg', u'comment']
[u'star', u'cross', u'space', u'wed']
[u'stem', u'cell', u'campaign', u'focus', u'research']
[u'strong', u'economi', u'steer', u'sale', u'higher']
[u'student', u'flock', u'croc', u'festiv']
[u'stuttgart', u'start', u'quick', u'szabic', u'doubl']
[u'tamworth', u'workshop', u'improv', u'road', u'safeti']
[u'tasmanian', u'bishop', u'oppos', u'priest', u'nomin']
[u'move', u'guarante', u'shellfish', u'qualiti']
[u'tassi', u'town', u'paint', u'bridg']
[u'taxi', u'driver', u'voic', u'safeti', u'concern']
[u'teacher', u'action', u'compulsori', u'test']
[u'teenag', u'clichi', u'join', u'arsenal']
[u'traffic', u'congest', u'dilemma', u'loom', u'anderson', u'say']
[u'trial', u'hold', u'pirat', u'recruit']
[u'tripl', u'transplant', u'man', u'condit', u'improv']
[u'tripl', u'transplant', u'patient', u'start', u'recoveri']
[u'begin', u'talk', u'liberia', u'peacekeep', u'forc']
[u'union', u'claim', u'work', u'poor', u'rise']
[u'union', u'worker', u'comp', u'review']
[u'union', u'seek', u'safeguard', u'casual', u'worker']
[u'unit', u'make', u'inroad', u'long']
[u'call', u'china', u'free', u'tri', u'dissid']
[u'emphat', u'renew', u'indonesia', u'secur', u'warn']
[u'market', u'sign', u'pick']
[u'offici', u'deni', u'powel', u'quit']
[u'stock', u'fall', u'slight', u'lacklustr', u'session']
[u'releas', u'million', u'palestinian', u'refuge']
[u'giant', u'panda', u'pregnant', u'twin']
[u'vanston', u'criticis', u'carer', u'allow', u'review']
[u'teacher', u'launch', u'work', u'ban', u'protest']
[u'vote', u'bishop', u'postpon']
[u'elector', u'reform', u'hing', u'high', u'court', u'appeal']
[u'wagga', u'fashion', u'victim', u'public', u'liabil']
[u'warn', u'issu', u'firefight', u'capac']
[u'water', u'auction', u'grower', u'fear', u'increas', u'cut']
[u'water', u'pipelin', u'decis', u'month', u'away', u'anderson']
[u'welsh', u'blitz', u'butterfli', u'field']
[u'welsh', u'qualifi', u'fastest', u'butterfli', u'final']
[u'wet', u'line', u'busi', u'tasmania']
[u'william', u'plan', u'team', u'order']
[u'woman', u'assault', u'wagga', u'park']
[u'woman', u'hospit', u'road', u'accid']
[u'women', u'target', u'tafe', u'mechan', u'cours']
[u'woosi', u'pull', u'father', u'death']
[u'zimbabw', u'opposit', u'trim', u'anti', u'mugab', u'stanc']
[u'dead', u'congo', u'attack']
[u'iraqi', u'arrest', u'raid']
[u'troop', u'iraqi', u'wound', u'grenad', u'attack']
[u'academ', u'question', u'call', u'free', u'univers', u'studi']
[u'court', u'reserv', u'decis', u'diplomat', u'case']
[u'govt', u'defend', u'interim', u'teacher', u'offer']
[u'afghan', u'command', u'call', u'secur', u'upgrad']
[u'chief', u'say', u'earli', u'evid', u'point']
[u'forc', u'recruit', u'train', u'time']
[u'share', u'record']
[u'anglican', u'leader', u'see', u'tough', u'time', u'ahead']
[u'arsenal', u'outclass', u'ranger', u'british', u'battl']
[u'end', u'slight']
[u'athen', u'hope', u'emerg', u'champ']
[u'athen', u'race', u'olymp']
[u'attack', u'put', u'woman', u'hospit']
[u'aussi', u'rule', u'club', u'seek', u'salari']
[u'aussi', u'complet', u'clean', u'sweep']
[u'aussi', u'victori']
[u'aust', u'miss', u'benefit', u'multin', u'studi']
[u'australia', u'donat', u'patrol', u'boat', u'indonesian', u'polic']
[u'australian', u'urg', u'stay', u'away', u'indonesia']
[u'author', u'consid', u'trawler', u'salvag']
[u'baddeley', u'win', u'invit']
[u'bait', u'target', u'wild', u'dog', u'fox']
[u'bali', u'bomb', u'suspect', u'hail', u'jakarta', u'blast']
[u'bankrupt', u'tyson', u'need', u'king', u'debt']
[u'beatti', u'bush', u'track']
[u'beatti', u'promis', u'report', u'abus', u'claim']
[u'beatti', u'clear', u'messag', u'tree', u'issu']
[u'beckham', u'score', u'goal', u'real', u'madrid']
[u'berri', u'captain', u'bushrang']
[u'crowd', u'flock', u'sheepvent']
[u'turn', u'hear', u'dali', u'river', u'plan', u'concern']
[u'biker', u'guilti', u'offenc']
[u'blair', u'spokesman', u'apologis', u'kelli', u'slur']
[u'blaze', u'spark', u'hospit', u'evacu']
[u'braham', u'say', u'report', u'vindic', u'contain']
[u'break', u'hill', u'welcom', u'govt', u'film', u'support']
[u'bushfir', u'inquiri', u'hear', u'forest', u'polici', u'concern']
[u'govt', u'accept', u'blame']
[u'water', u'profit']
[u'car', u'reveal', u'vain', u'inspir']
[u'part', u'maker', u'lift', u'profit']
[u'part', u'worker', u'lock', u'say', u'union']
[u'cessnock', u'beat', u'jobless', u'blue']
[u'chamber', u'say', u'potato', u'claim', u'half', u'bake']
[u'chelsea', u'agre', u'west', u'midfield', u'cole']
[u'china', u'ignor', u'currenc', u'complaint']
[u'coke', u'pepsi', u'india', u'deni', u'pesticid', u'soft', u'drink']
[u'committe', u'urg', u'pool']
[u'concern', u'air', u'tafe', u'cours', u'expens']
[u'coron', u'deliv', u'kirk', u'murder', u'find']
[u'council', u'consid', u'surf', u'reef', u'plan']
[u'council', u'mediat', u'plan', u'fail']
[u'council', u'reject', u'plan', u'lionis', u'thunderbolt', u'cave']
[u'council', u'urg', u'reject', u'abalon', u'plan']
[u'court', u'clear', u'australia', u'post', u'liabil']
[u'croc', u'hope', u'charg', u'import', u'soon', u'train']
[u'croc', u'hope', u'turner', u'soon']
[u'cyclist', u'succumb', u'injuri']
[u'dairi', u'industri', u'look', u'oversea', u'market']
[u'death', u'toll', u'rise', u'portug', u'fire']
[u'defenc', u'expert', u'doubt', u'aust', u'base']
[u'democrat', u'leader', u'visit']
[u'dfat', u'updat', u'indonesia', u'travel', u'warn']
[u'dial', u'dolphin', u'mobil']
[u'doctor', u'warn', u'virus', u'rise', u'babi']
[u'doubt', u'cast', u'aussi', u'world', u'perform']
[u'doubt', u'rais', u'council', u'crackdown']
[u'downer', u'warn', u'attack']
[u'appeal', u'sentenc', u'diplomat', u'death']
[u'drought', u'news', u'cotton', u'product']
[u'drug', u'council', u'highlight', u'danger']
[u'drug', u'court', u'perman']
[u'educ', u'minist', u'target', u'aborigin', u'educ']
[u'educ', u'worker', u'condit', u'improv']
[u'emerg', u'dept', u'wait', u'time', u'reduc']
[u'criticis', u'pollut', u'sentenc']
[u'episcop', u'leader', u'approv', u'bishop']
[u'plan', u'fine', u'remedi', u'microsoft', u'abus']
[u'europ', u'pollut', u'pact', u'start']
[u'factori', u'blaze', u'control']
[u'farmer', u'drought', u'fund']
[u'farmer', u'urg', u'shut', u'gate', u'crime']
[u'feder', u'court', u'order', u'asylum', u'seeker', u'releas']
[u'fijian', u'doubl', u'murder', u'trial', u'end', u'insan']
[u'destroy', u'histor', u'centuri', u'templ', u'nepal']
[u'spark', u'warn']
[u'fire', u'spark', u'winter', u'warn']
[u'fisher', u'consid', u'legal', u'option']
[u'forestri', u'inquiri', u'hold', u'close']
[u'governor', u'unveil', u'neerkol', u'memori']
[u'pakistani', u'guilti', u'money']
[u'soccer', u'player', u'jail', u'gambl']
[u'fraser', u'restrict', u'spark', u'concern']
[u'gatlin', u'gun', u'rival', u'montgomeri', u'flop']
[u'bishop', u'elect', u'say', u'lead']
[u'german', u'girl', u'plead', u'short', u'sweati', u'policeman']
[u'gillespi', u'best', u'world', u'pont', u'say']
[u'govt', u'fund', u'cape', u'york', u'financ', u'scheme']
[u'green', u'warm', u'world', u'defenc']
[u'mishap', u'put', u'hospit']
[u'heart', u'failur', u'epidem', u'caus', u'hospit', u'crisi']
[u'hewitt', u'breez', u'montreal']
[u'high', u'court', u'reserv', u'decis', u'elector', u'reform']
[u'hop', u'drought', u'move', u'posit']
[u'hospit', u'ward', u'work', u'begin', u'soon']
[u'hundr', u'reject', u'merger', u'plan']
[u'indigen', u'help', u'program', u'expand']
[u'indigen', u'leader', u'want', u'govt', u'partnership']
[u'indonesia', u'foreshadow', u'tough', u'anti', u'terror', u'measur']
[u'indonesia', u'launch', u'anti', u'terror', u'crackdown']
[u'indonesia', u'vow', u'surrend', u'terror']
[u'rat', u'stay', u'hold']
[u'intern', u'school', u'step', u'secur']
[u'islam', u'council', u'condemn', u'bomb']
[u'israel', u'begin', u'releas', u'palestinian', u'prison']
[u'israel', u'extend', u'closur', u'headquart']
[u'jakarta', u'blast', u'deton', u'mobil', u'phone']
[u'jakarta', u'blast', u'toll', u'suspect']
[u'jakarta', u'bomb', u'ingredi', u'bali', u'bomb']
[u'jakarta', u'bomb', u'fuel', u'wall', u'pessim']
[u'jakarta', u'bomb', u'link', u'aceh', u'say', u'author']
[u'claim', u'jakarta', u'blast', u'report']
[u'johnson', u'steam', u'sweden']
[u'judg', u'sentenc', u'lawbreak']
[u'juror', u'excus', u'snowtown', u'trial']
[u'keeff', u'remain', u'cowboy', u'execut', u'spot']
[u'kewel', u'open', u'liverpool', u'account']
[u'kirner', u'urg', u'femal', u'replac', u'councillor']
[u'kuznetsova', u'keep', u'momentum', u'go']
[u'land', u'shortag', u'blame', u'hous', u'woe']
[u'launceston', u'cardiolog', u'boss', u'hospit', u'seek']
[u'liberia', u'take', u'step', u'peac', u'amid', u'taylor', u'confus']
[u'life', u'sentenc', u'south', u'korean', u'subway', u'arsonist']
[u'lomu', u'train', u'wellington']
[u'cost', u'accommod', u'declin', u'address']
[u'lower', u'rate', u'rise', u'offset', u'charg']
[u'court', u'peopl', u'smuggl', u'charg']
[u'shoot', u'dead', u'outsid', u'home']
[u'undergo', u'emerg', u'surgeri', u'stab']
[u'mar', u'readi', u'best', u'view', u'year']
[u'question', u'illeg', u'tobacco']
[u'mice', u'prove', u'damag', u'farmer']
[u'minist', u'discuss', u'public', u'liabil', u'insur']
[u'minist', u'sign', u'indemn', u'plan']
[u'minist', u'discuss', u'indemn', u'premium']
[u'money', u'print', u'plant', u'worker', u'strike']
[u'montgomeri', u'plan', u'return']
[u'matur', u'sugiyama', u'hit', u'stride']
[u'busi', u'usual', u'indonesia']
[u'hold', u'nurs', u'crisi', u'meet']
[u'welcom', u'time', u'reef', u'submiss']
[u'naracoort', u'minist', u'fight', u'decis']
[u'nasa', u'plan', u'resum', u'shuttl', u'flight', u'earli']
[u'breastfe', u'support', u'program', u'launch']
[u'night', u'patrol', u'disappear']
[u'brother', u'thank', u'malawian']
[u'decis', u'assist', u'suspens', u'israel']
[u'earli', u'start', u'lobster', u'fish']
[u'sight', u'tree', u'clear', u'debat']
[u'labor', u'support', u'base', u'crean', u'say']
[u'laugh', u'court', u'edinburgh', u'comedian']
[u'north', u'coast', u'water', u'tumbl']
[u'offic', u'tell', u'polic', u'inquiri', u'impedi']
[u'oppon', u'fight', u'detent', u'rule']
[u'pain', u'find', u'health', u'servic']
[u'pakistan', u'deni', u'aid', u'iran', u'nuclear', u'weapon', u'drive']
[u'palestinian', u'prison', u'releas']
[u'parent', u'urg', u'check', u'ekka', u'showbag']
[u'pastoralist', u'face', u'incom']
[u'offer', u'teacher', u'insult', u'say', u'opposit']
[u'pentagon', u'deni', u'forc', u'stretch']
[u'philippoussi', u'withdraw', u'montreal']
[u'pilbara', u'get', u'indigen', u'support', u'servic']
[u'plantat', u'inquiri', u'hear', u'log', u'posit']
[u'plummer', u'replac', u'mcintosh']
[u'offer', u'indonesia', u'help', u'hand']
[u'vow', u'help', u'bomb', u'probe']
[u'pneumonia', u'case', u'baffl', u'armi', u'doctor']
[u'polic', u'highlight', u'alcohol', u'charg']
[u'polic', u'issu', u'warn', u'mail', u'scam']
[u'polic', u'probe', u'fatal', u'hous', u'blaze']
[u'polic', u'search', u'attack']
[u'polic', u'crack', u'alcohol', u'relat', u'crime']
[u'pont', u'prais', u'northern', u'australia', u'tour']
[u'pressur', u'govt', u'releas', u'hospit', u'wait', u'list']
[u'prison', u'offic', u'forecast', u'industri', u'action']
[u'probe', u'clear', u'bishop', u'elect']
[u'public', u'come', u'recycl', u'centr', u'rescu']
[u'public', u'get', u'drink', u'water', u'assur']
[u'qanta', u'defend', u'plan', u'drug', u'test', u'polici']
[u'qanta', u'staff', u'hold', u'stop', u'work', u'meet', u'drug']
[u'opposit', u'hop', u'aboard', u'bombay', u'express']
[u'ralf', u'shock', u'crash', u'penalti', u'william', u'appeal']
[u'real', u'leader', u'guilti', u'omagh', u'bomb']
[u'real', u'madrid', u'kick', u'storm', u'tokyo']
[u'red', u'sign', u'humphri', u'sign', u'heenan']
[u'resid', u'mine', u'wast', u'plan', u'concern']
[u'boost', u'merimbula', u'sydney', u'servic']
[u'chief', u'warn', u'loom', u'bushfir', u'threat']
[u'rival', u'granni', u'beauti', u'contest', u'court']
[u'river', u'flow', u'push', u'spark']
[u'rockhampton', u'form', u'health', u'plan']
[u'roddick', u'roll', u'maliss', u'montreal']
[u'saint', u'stand', u'lawrenc']
[u'scientist', u'breed', u'super', u'vegi']
[u'search', u'resum', u'woman', u'miss', u'huon', u'river']
[u'senior', u'retir', u'villag', u'safer', u'studi']
[u'shire', u'consid', u'merger', u'benefit']
[u'solomon', u'forc', u'signal', u'corrupt', u'crackdown']
[u'solomon', u'milit', u'warn', u'time', u'talk', u'run']
[u'sorenstam', u'thank', u'tiger', u'short', u'game', u'lift']
[u'special', u'polic', u'unit', u'baghdad', u'stop']
[u'strike', u'disrupt', u'money', u'print']
[u'sydney', u'woman', u'win', u'discrimin', u'case']
[u'hike', u'okay', u'servic', u'improv']
[u'taxi', u'driver', u'threaten', u'strike', u'safeti']
[u'teacher', u'protest', u'claim', u'progress']
[u'teen', u'recov', u'meningococc', u'bout']
[u'terror', u'fight', u'year']
[u'toddler', u'respond', u'treatment', u'meningoccoc']
[u'tradit', u'hunter', u'ship', u'pose', u'bigger', u'risk']
[u'transport', u'head', u'criticis', u'airport', u'secur']
[u'tuna', u'farm', u'trial', u'spark', u'environ', u'concern']
[u'union', u'seek', u'delay', u'qanta', u'drug', u'test', u'trial']
[u'union', u'vote', u'electrolux']
[u'bishop', u'vote', u'appoint']
[u'condemn', u'bomb', u'attack', u'jakarta']
[u'pessimist', u'iran', u'qaeda', u'prison']
[u'say', u'pneumonia', u'case', u'iraq', u'sporad']
[u'stock', u'fall', u'despit', u'record', u'servic', u'data']
[u'govt', u'back', u'water', u'enforc']
[u'govt', u'tri', u'water']
[u'medic', u'offic', u'urg', u'calm', u'meningoccoc']
[u'wallabi', u'head', u'coff', u'bledislo', u'train']
[u'wallabi', u'prepar', u'bledislo']
[u'opposit', u'blame', u'govt', u'disput']
[u'warn', u'pull', u'servic', u'earli']
[u'teacher', u'begin', u'work', u'ban']
[u'welfar', u'group', u'join', u'fund', u'protest']
[u'welsh', u'shin', u'hobart']
[u'wind', u'continu', u'canadian', u'forest', u'fire']
[u'wit', u'violenc', u'suffer', u'trauma', u'studi']
[u'worker', u'want', u'textil', u'tariff', u'freez']
[u'dead', u'injur', u'baghdad', u'embassi', u'attack']
[u'back', u'warn', u'chariti', u'match', u'decis']
[u'teacher', u'prepar', u'strike', u'action']
[u'criticis', u'govt', u'educ', u'spend', u'plan']
[u'agassi', u'beat', u'davydenko', u'montreal']
[u'worker', u'seven', u'afghan', u'kill', u'raid']
[u'albani', u'plaza', u'win', u'award']
[u'share', u'slump', u'low']
[u'amrozi', u'appeal', u'death', u'sentenc']
[u'anglican', u'head', u'confid', u'church', u'surviv']
[u'applic', u'independ', u'school']
[u'britain', u'sizzl', u'otter', u'frolic', u'snow']
[u'make', u'grind', u'despit', u'loss']
[u'asylum', u'seeker', u'tell', u'court', u'ordeal']
[u'athlet', u'give', u'world', u'champ', u'select', u'extens']
[u'atsic', u'commission', u'vow', u'fight', u'manag']
[u'attorney', u'general', u'discuss', u'money', u'launder']
[u'aust', u'lawyer', u'practis', u'nation']
[u'australian', u'victim', u'await', u'amrozi', u'sentenc']
[u'barbosa', u'win', u'tour', u'portug', u'stage']
[u'beem', u'aim', u'rediscov', u'form']
[u'crowd', u'like', u'farewel', u'shoot', u'victim']
[u'bodi', u'miss', u'woman', u'huon', u'river']
[u'boomer', u'greec']
[u'brisban', u'need', u'detent', u'centr', u'ruddock']
[u'british', u'weapon', u'expert', u'buri']
[u'bronco', u'lose', u'ikin', u'penrith', u'clash']
[u'bryant', u'make', u'court', u'appear']
[u'driver', u'skirt', u'uniform', u'beat', u'summer']
[u'busi', u'group', u'call', u'rate']
[u'businessman', u'shelv', u'unit', u'project']
[u'easter', u'trade', u'certainti']
[u'cambodian', u'polic', u'destroy', u'scaveng', u'villag']
[u'carr', u'urg', u'help', u'nardel', u'unsecur', u'creditor']
[u'cathay', u'pacif', u'blame', u'sar', u'loss']
[u'chariti', u'take', u'bigger', u'workload']
[u'charvi', u'secur', u'world', u'back']
[u'chip', u'maker', u'adopt', u'nanotechnolog']
[u'claim', u'high', u'water', u'affect', u'shoalhaven', u'river']
[u'clijster', u'move', u'step', u'closer', u'rank']
[u'cocain', u'trial', u'begin', u'perth', u'amid', u'tight', u'secur']
[u'coff', u'council', u'defend', u'wallabi', u'deal']
[u'colston', u'face', u'trial']
[u'communiti', u'bank', u'plan', u'quiz', u'public']
[u'communiti', u'warn', u'breed', u'bird', u'aggress']
[u'concern', u'contract', u'diseas']
[u'conserv', u'group', u'intensifi', u'plant', u'protest']
[u'council', u'allow', u'spotlight']
[u'council', u'staff', u'boost', u'protest']
[u'council', u'tackl', u'homeless', u'problem']
[u'council', u'crack', u'woe']
[u'court', u'reserv', u'decis', u'lappa', u'sentenc', u'appeal']
[u'crean', u'say', u'amrozi', u'deserv']
[u'dairi', u'industri', u'urg', u'consid', u'oversea']
[u'darl', u'down', u'basketbal', u'team', u'glori']
[u'darwin', u'nomin', u'futur', u'athlet', u'star']
[u'date', u'ralf', u'schumach', u'appeal']
[u'detain', u'children', u'confus', u'court', u'rule']
[u'doctor', u'clear', u'kefu', u'rejoin', u'wallabi']
[u'downer', u'question', u'baghdad', u'attack', u'motiv']
[u'driver', u'jail', u'run', u'policeman']
[u'drug', u'committe', u'decis', u'thalidomid']
[u'ebola', u'vaccin', u'success', u'monkey', u'scientist']
[u'educ', u'campaign', u'consid', u'endang', u'speci']
[u'expo', u'offer', u'student', u'career', u'advic']
[u'farmer', u'welcom', u'higher', u'milk', u'price']
[u'feral', u'bait', u'effort', u'ahead']
[u'ferrero', u'progress', u'maiden', u'aynaoui']
[u'figur', u'highlight', u'hous', u'boom']
[u'deport', u'tribun']
[u'forens', u'test', u'need', u'jakarta', u'attack']
[u'premier', u'seek', u'compo', u'govt']
[u'develop', u'lower', u'energi', u'price']
[u'gbrmpa', u'reject', u'submiss', u'extens']
[u'germani', u'squad', u'world', u'championship']
[u'good', u'weather', u'keep', u'tasmanian', u'meat', u'work', u'open']
[u'govt', u'fail', u'airport', u'secur', u'aviat', u'group']
[u'grenad', u'set', u'humve', u'ablaz', u'central', u'baghdad']
[u'group', u'end', u'campaign', u'save', u'tamworth', u'grace', u'bros']
[u'handgun', u'buyback', u'begin']
[u'health', u'servic', u'appoint', u'act']
[u'heat', u'schumach', u'rossi']
[u'hewitt', u'montreal']
[u'hick', u'say', u'evid', u'prove', u'terrorist']
[u'high', u'alert', u'amrozi', u'verdict', u'expect']
[u'high', u'court', u'impos', u'australian', u'rule', u'foreign']
[u'homeless', u'outlook', u'expect', u'worsen']
[u'honiara', u'face', u'drink', u'water', u'shortag']
[u'hors', u'death', u'spark', u'hunt', u'dog', u'safeti']
[u'howard', u'welcom', u'amrozi', u'convict']
[u'hundr', u'report', u'burn', u'meteor']
[u'hussain', u'avail', u'south', u'africa', u'test']
[u'iceland', u'resum', u'whale', u'scienc']
[u'iceland', u'resum', u'whale', u'hunt', u'month']
[u'indigen', u'fish', u'plan', u'spark', u'concern']
[u'indigen', u'protest', u'gold', u'plan']
[u'indonesian', u'polic', u'dismiss', u'jakarta', u'arrest', u'link']
[u'indonesian', u'troop', u'kill', u'suspect', u'aceh']
[u'injur', u'rubin', u'unabl', u'defend', u'titl']
[u'inquiri', u'hear', u'sexual', u'misconduct', u'charg']
[u'insulin', u'user', u'face', u'higher', u'death', u'rat']
[u'hear', u'propos', u'qanta', u'drug', u'test']
[u'hear', u'qanta', u'drug', u'test', u'disput']
[u'irrig', u'hear', u'live', u'murray', u'impact']
[u'italian', u'scientist', u'unveil', u'clone', u'hors']
[u'italian', u'woman', u'die', u'diseas']
[u'italian', u'woman', u'electrocut', u'bath', u'vietnam']
[u'jakarta', u'bomb', u'parallel', u'bali', u'attack']
[u'japan', u'monitor', u'float', u'arctic', u'ocean']
[u'jobless', u'rate', u'climb']
[u'joey', u'arsenal']
[u'judg', u'begin', u'sum', u'snowtown', u'murder', u'trial']
[u'judg', u'read', u'amrozi', u'verdict']
[u'juri', u'find', u'woman', u'guilti', u'murder']
[u'juri', u'deliber', u'whits', u'murder', u'trial']
[u'kenya', u'attack', u'suspect', u'face', u'higher', u'court']
[u'knight', u'lament', u'salari', u'claim']
[u'kutuzova', u'reach', u'round']
[u'lawrenc', u'presid']
[u'lawyer', u'seek', u'time', u'mackay', u'case']
[u'leagu', u'support', u'offer', u'support', u'player', u'famili']
[u'lib', u'leader', u'highlight', u'coast', u'issu']
[u'libya', u'readi', u'accept', u'lockerbi', u'blame']
[u'llorent', u'test', u'posit', u'tour']
[u'local', u'govt', u'chief', u'air', u'fund', u'concern']
[u'magistr', u'order', u'releas', u'suspect', u'kenyan']
[u'charg', u'break', u'home']
[u'mandarino', u'wont', u'rule', u'throsbi', u'challeng']
[u'die', u'highway', u'crash']
[u'injur', u'break']
[u'plead', u'guilti', u'possess', u'child', u'porn']
[u'marriott', u'specifi', u'target', u'downer']
[u'welcom', u'plan', u'year', u'term']
[u'mccartney', u'welcom', u'amrozi', u'sentenc']
[u'melbourn', u'art', u'festiv', u'offer', u'free', u'event']
[u'melbourn', u'reflect', u'jakarta', u'blast']
[u'microsoft', u'give', u'month', u'clear']
[u'minist', u'confid', u'hospit', u'staff', u'woe']
[u'mix', u'respons', u'resid', u'magistr', u'plan']
[u'detail', u'seek', u'water', u'plan']
[u'speak', u'claim']
[u'close', u'bendigo', u'branch']
[u'nambour', u'hospit', u'concern', u'air']
[u'approach', u'take', u'water', u'reform']
[u'charg', u'lay', u'atsic', u'deputi', u'chairman']
[u'radio', u'inform', u'servic', u'launch']
[u'zealand', u'probe', u'possibl', u'case', u'human']
[u'korea', u'slam', u'wargam']
[u'contract', u'disput', u'resolv']
[u'polic', u'hunt', u'escap', u'inmat']
[u'oldest', u'spider', u'silk']
[u'opposit', u'target', u'state', u'govern', u'perth']
[u'optus', u'help', u'parent', u'compani', u'tripl', u'profit']
[u'oxfam', u'criticis', u'govt', u'plan', u'relat', u'review']
[u'paceman', u'jone', u'make', u'long', u'await', u'comeback']
[u'pair', u'hospit', u'head', u'crash']
[u'palestinian', u'author', u'say', u'prison', u'releas', u'sham']
[u'parliamentari', u'inquiri', u'head', u'studi', u'fire']
[u'peacekeep', u'delay', u'liberia']
[u'peacekeep', u'prepar', u'deploy', u'monrovia']
[u'peter', u'safar', u'father', u'die']
[u'plan', u'law', u'develop', u'issu']
[u'predict', u'closer', u'link', u'indonesia']
[u'polic', u'focus', u'attent', u'biker']
[u'polic', u'revis', u'death', u'toll', u'jakarta', u'blast']
[u'polic', u'seiz', u'drug', u'perth', u'airport']
[u'polic', u'station', u'develop', u'applic']
[u'pont', u'hail', u'northern', u'seri', u'success']
[u'pont', u'say', u'banga', u'learn', u'test']
[u'port', u'dredg', u'spark', u'fish', u'concern']
[u'log', u'group', u'reject', u'inquiri', u'claim']
[u'public', u'turn', u'protest', u'wast', u'plan']
[u'qanta', u'drug', u'test', u'limit', u'execut', u'staff']
[u'reject', u'joh', u'compo', u'claim']
[u'quarantin', u'boost', u'cairn', u'airport']
[u'ramanauska', u'undergo', u'surgeri']
[u'report', u'highlight', u'alcohol', u'offenc']
[u'resid', u'council', u'budget']
[u'road', u'block', u'fatal', u'accid']
[u'road', u'rage', u'incid', u'leav', u'injur']
[u'continu', u'tafe', u'campus', u'netbal', u'site']
[u'rspca', u'purr', u'registr', u'plan']
[u'schwarzenegg', u'governor']
[u'work', u'farmer', u'repair']
[u'search', u'clue', u'continu', u'jakarta']
[u'secret', u'nuclear', u'meet', u'reveal']
[u'shark', u'lose', u'suspens']
[u'sheldon', u'highlight', u'ambul', u'levi', u'opposit']
[u'green', u'return', u'hobart']
[u'joh', u'compo', u'unlik', u'succeed', u'say', u'beatti']
[u'solomon', u'women', u'tell', u'spread', u'amnesti', u'messag']
[u'south', u'australian', u'lose', u'poki']
[u'spanish', u'coal', u'miner', u'save', u'collaps']
[u'spanish', u'worker', u'escap', u'railway']
[u'spenc', u'reject', u'abus', u'claim']
[u'spinner', u'hossain', u'undergo', u'test']
[u'sport', u'humbl', u'manchest', u'unit', u'friend']
[u'stronger', u'dollar', u'take', u'toll', u'job']
[u'studi', u'link', u'skip', u'breakfast', u'child', u'obes']
[u'surgeon', u'hail', u'tripl', u'organ', u'transplant', u'success']
[u'survey', u'show', u'young', u'australian', u'biggest', u'saver']
[u'survivor', u'bosnian', u'tortur', u'camp', u'hold']
[u'suspect', u'bombmak', u'blow', u'indonesia']
[u'suspect', u'bomb', u'maker', u'kill']
[u'swim', u'star', u'phelp', u'bare', u'miss', u'world', u'mark']
[u'sydney', u'acquit', u'murder', u'charg']
[u'sydney', u'water', u'disput', u'expect', u'tomorrow']
[u'sydney', u'water', u'electrician', u'strike', u'safeti', u'issu']
[u'petrol', u'price', u'cent', u'juli']
[u'union', u'tell', u'flex', u'industri', u'muscl']
[u'teacher', u'discuss', u'nation', u'stopwork', u'campaign']
[u'teacher', u'news', u'ax']
[u'teacher', u'discuss', u'wage', u'push', u'nation', u'meet']
[u'technic', u'woe', u'delay', u'rail', u'plan']
[u'tech', u'stock', u'price']
[u'teenag', u'charg', u'rape']
[u'report', u'beat', u'author', u'china']
[u'tent', u'embassi', u'accus', u'face', u'court']
[u'tiatto', u'fox', u'socceroo']
[u'town', u'fight', u'paint', u'bridg']
[u'trawler', u'salvag', u'effort', u'continu']
[u'umpir', u'chanc', u'answer', u'critic']
[u'union', u'call', u'nationwid', u'teacher', u'strike']
[u'union', u'consid', u'legal', u'action', u'stop', u'tyre', u'plant']
[u'union', u'upbeat', u'wineri', u'job']
[u'unit', u'forfeit', u'cost', u'leagu', u'spot']
[u'helicopt', u'land', u'liberian', u'capit']
[u'westhuizen', u'start', u'bok', u'chang']
[u'seek', u'task', u'forc', u'prevent', u'child']
[u'victim', u'famili', u'welcom', u'amrozi', u'convict']
[u'video', u'conferenc', u'facil', u'univers']
[u'govt', u'talk', u'emerg', u'servic', u'levi']
[u'lib', u'focus', u'great', u'southern']
[u'school', u'teacher', u'consid', u'strike', u'action']
[u'water', u'storag', u'level', u'rise', u'melbourn']
[u'wood', u'bid', u'major', u'titl', u'drought']
[u'work', u'dole', u'project', u'boost', u'environ']
[u'world', u'event', u'affect', u'tourist', u'market']
[u'young', u'irrig', u'converg', u'griffith']
[u'second', u'late', u'plane', u'refus', u'land', u'clearanc']
[u'fine', u'child', u'porn', u'imag']
[u'chief', u'address', u'staff']
[u'head', u'avoid', u'school', u'children', u'protest']
[u'aborigin', u'communiti', u'seek', u'land', u'handov']
[u'accc', u'reject', u'bank', u'eftpo', u'plan']
[u'accus', u'melbourn', u'hijack', u'stand', u'trial']
[u'drop', u'misconduct', u'charg', u'bodi', u'tell']
[u'afghan', u'take', u'fight', u'stay', u'australia', u'high']
[u'agassi', u'montreal', u'quarter']
[u'call', u'updat', u'tenant', u'databas']
[u'age', u'care', u'hostel', u'confid', u'fix', u'problem']
[u'albani', u'jobless', u'number', u'rise']
[u'algebra', u'point', u'happi', u'marriag']
[u'say', u'throsbi', u'risk', u'like', u'cunningham']
[u'upbeat', u'medicar']
[u'settl', u'class', u'action', u'suit']
[u'amrozi', u'appeal', u'month']
[u'amrozi', u'martyr']
[u'amrozi', u'sentenc', u'send', u'messag', u'terrorist', u'govt']
[u'amrozi', u'sentenc', u'spark', u'debat']
[u'angler', u'push', u'reef', u'consult']
[u'asthma', u'council', u'applaud', u'fuel']
[u'australian', u'adopt', u'renew', u'energi', u'home']
[u'bali', u'survivor', u'back', u'amrozi', u'death', u'penalti']
[u'bank', u'manag', u'charg', u'theft']
[u'benito', u'win', u'tour', u'portug', u'second', u'stage']
[u'bomb', u'explod', u'outsid', u'thai', u'courthous']
[u'bonlac', u'investor', u'vote', u'restructur']
[u'bonlac', u'explain', u'milk', u'price', u'polici']
[u'bottl', u'feed', u'risk', u'children', u'teeth', u'doctor']
[u'brisban', u'trail', u'penrith', u'doubl']
[u'british', u'worker', u'jail', u'ethiopia']
[u'british', u'famili', u'oppos', u'bali', u'death', u'sentenc']
[u'bronco', u'aim', u'finish', u'say', u'kelli']
[u'bushfir', u'probe', u'prove', u'hazard', u'reduct', u'polici']
[u'busi', u'seek', u'boost', u'street', u'appeal']
[u'butt', u'warn', u'tell', u'dope', u'bodi']
[u'buy', u'beckham', u'sport', u'decis', u'real', u'boss']
[u'canada', u'lose', u'grand', u'prix', u'season']
[u'cash', u'result', u'liven', u'say']
[u'cat', u'score', u'comprehens', u'demon']
[u'cattl', u'breeder', u'expect', u'poor', u'sale']
[u'chilean', u'pair', u'arrest', u'illeg', u'potter']
[u'claim', u'militari', u'involv', u'jakarta', u'blast']
[u'clijster', u'cruis', u'round', u'dokic', u'beat']
[u'cloke', u'clement', u'return', u'collingwood']
[u'coalit', u'govern', u'like', u'cambodia']
[u'committe', u'examin', u'sustain', u'hous']
[u'communiti', u'group', u'share', u'fund']
[u'fight', u'blue', u'mountain', u'trail', u'plan']
[u'consult', u'urg', u'indigen', u'footbal', u'plan']
[u'cooge', u'dolphin', u'heal', u'begin']
[u'council', u'act', u'committe', u'legal', u'status']
[u'council', u'defend', u'develop', u'demand']
[u'council', u'face', u'theatr', u'fund', u'shortfal']
[u'council', u'say', u'trade', u'australia', u'indonesia']
[u'council', u'seek', u'chief', u'execut']
[u'council', u'urg', u'resolv', u'intern', u'wrangl']
[u'cowboy', u'strong', u'season', u'finish']
[u'crash', u'put', u'biker', u'hospit']
[u'crean', u'accus', u'govt', u'attempt', u'muzzl']
[u'crime', u'rate', u'matter', u'percept']
[u'vow', u'continu', u'employ', u'foreign', u'crew']
[u'cuthbert', u'honour', u'statu']
[u'danish', u'queen', u'hint', u'royal', u'engag', u'report']
[u'davenport', u'clijster']
[u'death', u'sentenc', u'bring', u'mix', u'emot']
[u'defect', u'oust', u'naurus', u'presid']
[u'deleg', u'gather', u'constitut', u'convent']
[u'discrimin', u'claim', u'level', u'footi']
[u'doctor', u'dissatisfact', u'find', u'surpris']
[u'die', u'vagabond', u'best', u'friend']
[u'drought', u'grip']
[u'drought', u'tighten', u'grip']
[u'duff', u'ireland', u'squad', u'australia', u'friend']
[u'episcop', u'church', u'bless', u'union']
[u'escap', u'tiger', u'find', u'home']
[u'ettridg', u'put', u'forward', u'defenc', u'case', u'fraud', u'trial']
[u'expert', u'predict', u'posit', u'time', u'domest', u'tourism']
[u'famili', u'react', u'verdict', u'announc']
[u'farmer', u'tell', u'forget', u'weed']
[u'farmer', u'upset', u'water', u'plan', u'delay']
[u'fear', u'ramanauska', u'futur']
[u'feder', u'beat', u'robredo', u'straight', u'set']
[u'festiv', u'focus', u'indigen']
[u'fishermen', u'face', u'fin', u'pollut']
[u'fisher', u'urg', u'camp']
[u'fish', u'group', u'want', u'time', u'reef', u'submiss']
[u'flash', u'flood', u'kill', u'indian', u'resort']
[u'kill', u'road', u'hour']
[u'gambl', u'smoke', u'claim', u'see', u'smokescreen']
[u'design', u'predict', u'republ', u'debat']
[u'buyback', u'centr', u'open', u'year']
[u'hama', u'accus', u'israel', u'break', u'ceas']
[u'hear', u'natasha', u'ryan', u'boyfriend']
[u'high', u'hop', u'fast', u'rail', u'loader']
[u'home', u'lend', u'continu', u'rise']
[u'hospit', u'lose', u'weekend', u'emerg', u'orthopaed']
[u'hotel', u'secur', u'tape', u'review', u'jakarta', u'blast']
[u'howel', u'love', u'earli', u'lead', u'intern']
[u'hubbl', u'spi', u'galaxi', u'gobbl', u'littl']
[u'indian', u'separatist', u'bollywood', u'film']
[u'intern', u'soccer', u'challeng', u'begin']
[u'iraqi', u'lose', u'arm', u'limb']
[u'iraq', u'sponsor', u'televis', u'bumpi', u'ride']
[u'irrig', u'water', u'boost']
[u'island', u'angri', u'nativ', u'titl', u'decis']
[u'island', u'volunt', u'prepar', u'train']
[u'isra', u'warplan', u'bomb', u'lebanon', u'villag']
[u'jackson', u'set', u'wnba', u'record']
[u'jacquelin', u'eye', u'tour', u'victori']
[u'jakarta', u'bomber', u'link']
[u'jewish', u'settler', u'charg', u'explos']
[u'jobless', u'rate', u'rise', u'west']
[u'jobless', u'rate', u'centr']
[u'jobless', u'rate', u'margin']
[u'jone', u'readi', u'septemb', u'return']
[u'kafer', u'take', u'charg', u'saracen']
[u'kalli', u'quick', u'groov']
[u'laker', u'king', u'bring', u'curtain', u'busi']
[u'landslid', u'leav', u'homeless', u'papua', u'guinea']
[u'lawyer', u'plan', u'appeal', u'amrozi', u'sentenc']
[u'lobbi', u'group', u'discuss', u'basslink', u'concern']
[u'local', u'govt', u'urg', u'help', u'boost', u'firefight', u'number']
[u'love', u'grab', u'round', u'lead', u'intern']
[u'malaysian', u'triplet', u'away', u'mother']
[u'die', u'polic', u'pursuit']
[u'help', u'polic', u'death', u'probe']
[u'jail', u'murder', u'facto', u'antenna']
[u'plead', u'guilti', u'peopl', u'smuggl', u'charg']
[u'market', u'climb', u'recov', u'grind']
[u'matilda', u'suffer']
[u'mayor', u'offer', u'curfew', u'condit', u'support']
[u'megawati', u'urg', u'global', u'terror', u'fight']
[u'melbourn', u'money', u'maker', u'return', u'work']
[u'miner', u'awar', u'wast', u'heap', u'concern']
[u'minist', u'consid', u'singl', u'famili', u'court']
[u'montgomeri', u'high', u'class', u'field']
[u'wheat', u'virus', u'outbreak', u'expect']
[u'mother', u'say', u'death', u'penalti', u'wont', u'stop', u'terror']
[u'urg', u'fight', u'region', u'news', u'servic']
[u'murder', u'accus', u'plead', u'access', u'famili', u'money']
[u'nasa', u'watchdog', u'call', u'columbia', u'decis', u'shock']
[u'nat', u'upbeat', u'secur', u'seat']
[u'navi', u'order', u'urgent', u'submarin', u'check']
[u'beef', u'plant', u'take', u'shape']
[u'job', u'help', u'break', u'workless', u'cycl']
[u'night', u'end', u'high', u'note', u'jazz', u'festiv']
[u'fine', u'artist', u'kata', u'tjuta', u'photo']
[u'sign', u'repriev', u'europ', u'swelter', u'heatwav']
[u'farmer', u'face', u'summer']
[u'fishermen', u'hail', u'water', u'pollut', u'fin']
[u'hawk', u'mistak', u'chihuahua']
[u'road', u'racer', u'head', u'griffith']
[u'palestinian', u'gunmen', u'shoot', u'ramallah', u'street']
[u'palestinian', u'kill', u'nablus']
[u'peacekeep', u'continu', u'negoti', u'liberia']
[u'peacekeep', u'roll', u'liberian', u'capit']
[u'penrith', u'hold', u'import']
[u'petrol', u'head', u'warwick', u'meet']
[u'phelp', u'break', u'record', u'free']
[u'plan', u'put', u'sand', u'drift', u'farmer']
[u'polic', u'probe', u'embassi', u'blast', u'baghdad']
[u'polic', u'seek', u'info', u'shoot', u'death']
[u'polic', u'special', u'week', u'highlight', u'miss']
[u'politician', u'split', u'amrozi', u'death', u'penalti']
[u'pool', u'sink', u'free', u'diver', u'plan']
[u'port', u'chang', u'line', u'ahead', u'carlton', u'clash']
[u'posit', u'report', u'push', u'wall', u'higher']
[u'prais', u'year', u'council', u'elect']
[u'pretoria', u'decid', u'chang']
[u'privaci', u'group', u'warn', u'technolog', u'misus']
[u'privaci', u'law', u'updat', u'reflect', u'technolog']
[u'program', u'launch', u'encourag', u'art', u'donat']
[u'push', u'samaritan', u'boost', u'polit', u'lobbi']
[u'shut', u'ruddock', u'tell', u'beatti']
[u'rate', u'aborigin', u'women', u'prison', u'rise']
[u'real', u'leader', u'sentenc', u'year', u'jail']
[u'renov', u'warn', u'asbesto', u'danger']
[u'report', u'criticis', u'cross', u'handl', u'bali', u'appeal']
[u'research', u'centr', u'focus', u'greenhous', u'technolog']
[u'research', u'clone', u'anim', u'grow', u'quicker']
[u'resid', u'face', u'uncertain', u'road', u'ahead']
[u'road', u'death', u'spark', u'plea', u'driver', u'safeti']
[u'russian', u'militari', u'helicopt', u'shoot', u'chechnya']
[u'russian', u'mother', u'plead', u'stay', u'guantanamo']
[u'saudi', u'arabia', u'releas', u'bomb']
[u'wine', u'maker', u'win', u'best', u'year']
[u'scott', u'hart', u'doubt', u'lion', u'pie', u'clash']
[u'second', u'blast', u'follow', u'embassi', u'attack', u'baghdad']
[u'serbia', u'dismiss', u'militari', u'offici']
[u'russian', u'soldier', u'kill', u'gunfight', u'chechen']
[u'smoke', u'help', u'stamp', u'poki', u'spend']
[u'smoke', u'reduc', u'poker', u'machin', u'revenu']
[u'solomon', u'warlord', u'say', u'hostag', u'dead']
[u'south', u'korea', u'train', u'crash', u'kill', u'injur']
[u'stuart', u'withdraw', u'high', u'tackl', u'claim']
[u'support', u'mount', u'milk', u'group', u'market']
[u'swan', u'talent', u'say', u'roo']
[u'sydney', u'airport', u'criticis', u'nois', u'curfew']
[u'taylor', u'renew', u'pledg', u'step']
[u'teen', u'charg', u'break', u'home']
[u'tenni', u'tournament', u'head', u'mildura']
[u'back', u'british', u'research']
[u'thorn', u'readi', u'tough', u'springbok', u'challeng']
[u'basketbal', u'nation', u'final']
[u'tourist', u'plan', u'promis', u'shine', u'bright']
[u'union', u'air', u'concern', u'hear', u'impair', u'support']
[u'union', u'highlight', u'school', u'concern']
[u'univers', u'employ', u'indigen', u'peopl']
[u'act', u'missil', u'threat']
[u'film', u'studio', u'landmark', u'piraci', u'case']
[u'mini', u'nuke', u'push', u'dismiss', u'lunaci']
[u'restart', u'nuclear', u'test', u'powel']
[u'troop', u'kill', u'iraqi', u'tikrit']
[u'vcat', u'say', u'resort']
[u'victim', u'hop', u'testimoni', u'help', u'seal', u'bali', u'bomber']
[u'victim', u'father', u'say', u'amrozi', u'puppet']
[u'wallabi', u'track', u'say', u'mcqueen']
[u'warm', u'crucial', u'world', u'say', u'woodward']
[u'word', u'erupt', u'region', u'busi', u'report']
[u'fear', u'black', u'krige']
[u'western', u'council', u'talk', u'merger']
[u'global', u'contend', u'amateur']
[u'oust', u'women', u'amateur']
[u'wink', u'star', u'stare', u'space', u'research']
[u'wit', u'seek', u'fatal', u'crash']
[u'woman', u'head', u'roseberi']
[u'woomera', u'inmat', u'scar', u'talk']
[u'work', u'paddlesteam', u'replica', u'near']
[u'year', u'begin', u'jail', u'term', u'fraud']
[u'author', u'bushfir', u'season', u'ahead']
[u'deni', u'code', u'silenc', u'trooper', u'case']
[u'pilotless', u'aircraft', u'time']
[u'age', u'care', u'group', u'warn', u'industri', u'action']
[u'meet', u'consid', u'internet', u'photo', u'legisl']
[u'qaeda', u'fugit', u'name', u'suspect', u'jordan']
[u'amrozi', u'sign', u'appeal']
[u'armi', u'deni', u'lack', u'will', u'wit']
[u'assault', u'prison', u'staff', u'rise', u'oppn']
[u'author', u'seiz', u'missil', u'northern', u'pakistan']
[u'author', u'warn', u'outbreak']
[u'bok', u'improv', u'black', u'good']
[u'boomer', u'greec']
[u'boston', u'church', u'offer', u'million', u'abus', u'settlement']
[u'britain', u'seek', u'iraq', u'resolut', u'report']
[u'british', u'coupl', u'free', u'treatment', u'paper']
[u'brogden', u'call', u'stamp', u'duti', u'cut']
[u'bskyb', u'pay', u'premier', u'leagu', u'right']
[u'bush', u'hail', u'iraq', u'progress', u'day']
[u'screen', u'program', u'diabet']
[u'cat', u'maul', u'demon']
[u'census', u'show', u'fewer', u'iraqi']
[u'chamber', u'win', u'farcic', u'london']
[u'childhood', u'exposur', u'reduc', u'risk', u'studi']
[u'claim', u'govt', u'polici', u'damag', u'state']
[u'clijster', u'semi']
[u'cola', u'sale', u'slide', u'india']
[u'court', u'stop', u'kurnel', u'condo', u'develop']
[u'critic', u'wind', u'olymp', u'organis', u'row']
[u'darter', u'swift', u'thunderbird', u'dump', u'sandpip']
[u'davi', u'love', u'take', u'charg', u'colorado']
[u'disney', u'dali', u'film', u'prize']
[u'edward', u'face', u'fit', u'battl', u'ahead', u'world']
[u'england', u'chang', u'ahead', u'test']
[u'fitzgibbon', u'preselect', u'face']
[u'ford', u'recal', u'million', u'suv']
[u'dead', u'injur', u'colombia', u'bomb']
[u'kidnap', u'tourist', u'mali', u'desert', u'serious']
[u'soldier', u'light', u'wound', u'mortar', u'attack']
[u'wound', u'basra', u'protest']
[u'girl', u'hospit', u'strike']
[u'govt', u'doubl', u'norfolk', u'murder', u'info', u'reward']
[u'gronholm', u'finland']
[u'driver', u'kill', u'phillip', u'island']
[u'hama', u'vow', u'reveng', u'nablus', u'raid']
[u'howard', u'ralli', u'lib', u'poll', u'push']
[u'hurdl', u'champ', u'garcia', u'doubt', u'world']
[u'indigen', u'cultur', u'face', u'struggl', u'say']
[u'iraq', u'request', u'help', u'embassi', u'bomb']
[u'japan', u'reiter', u'nuclear', u'pledg', u'bomb']
[u'jakarta', u'blast', u'indonesian', u'minist']
[u'joey', u'draw', u'chelsea', u'youngster']
[u'labor', u'youth', u'want', u'decis', u'sydney', u'airport']
[u'liberian', u'rebel', u'threaten', u'fresh', u'push', u'arriv']
[u'liberian', u'rebel', u'threaten', u'attack']
[u'lion', u'beat', u'pie', u'crow', u'hawk', u'saint']
[u'lion', u'lead', u'pie', u'half', u'time']
[u'lion', u'snap', u'pie', u'streak']
[u'comeback', u'lomu']
[u'magistr', u'call', u'feder', u'terror']
[u'magpi', u'face', u'crucial', u'rematch', u'lion']
[u'malaysian', u'accus', u'rich', u'countri', u'fuel']
[u'charg', u'camperdown', u'stab']
[u'face', u'court', u'sexual', u'assault']
[u'dead', u'gin', u'main', u'street']
[u'hospit', u'ship', u'contain', u'accid']
[u'kill', u'hunt', u'trip']
[u'mar', u'robot', u'malfunct', u'nasa']
[u'mcenro', u'consid', u'polit', u'career']
[u'megawati', u'call', u'global', u'terror', u'respons']
[u'militari', u'mutini', u'derail', u'philippin', u'fight']
[u'mitchel', u'talk', u'springbok', u'attitud']
[u'mobil', u'phone', u'betray', u'yemeni', u'beggar']
[u'move', u'begin', u'reopen', u'monrovia', u'port']
[u'park', u'conduct', u'control', u'burn', u'sydney']
[u'navi', u'clear', u'collin', u'sub']
[u'navi', u'order', u'urgent', u'collin', u'check']
[u'crimin', u'charg', u'senegales', u'ferri', u'disast']
[u'north', u'korea', u'talk', u'start', u'report']
[u'author', u'warn', u'extrem', u'season', u'ahead']
[u'govt', u'pledg', u'polic', u'offic', u'welcom']
[u'indigen', u'copyright', u'propos']
[u'oceania', u'soccer', u'boss', u'consid', u'resign']
[u'oceania', u'soccer', u'boss', u'consid', u'quit']
[u'price', u'slip']
[u'year', u'famili', u'appeal', u'murder', u'info']
[u'penrith', u'maintain', u'bronco', u'home', u'pain']
[u'perth', u'real', u'estat', u'compani', u'fin', u'licenc']
[u'see', u'terror', u'threat', u'year', u'come']
[u'suggest', u'hell', u'stay', u'term']
[u'polic', u'appeal', u'help', u'sydney', u'murder', u'case']
[u'polic', u'arrest', u'woman', u'attack', u'outsid']
[u'polic', u'bank', u'heist']
[u'polic', u'search', u'steal', u'motorbik']
[u'portug', u'turn', u'help', u'foot']
[u'race', u'driver', u'kill', u'phillip', u'island']
[u'real', u'beckham', u'ring', u'circus', u'arriv', u'thailand']
[u'rebel', u'bomb', u'kill', u'colombia']
[u'rescuer', u'search', u'indian', u'resort', u'flash', u'flood']
[u'rumsfeld', u'confirm', u'iran', u'contra', u'link']
[u'russia', u'pechyonkina', u'break', u'world', u'mark']
[u'govt', u'urg', u'consum', u'bewar', u'scammer']
[u'polic', u'arrest', u'hairdress', u'bandit']
[u'start', u'nuke', u'dump', u'stall']
[u'schuettler', u'shunt', u'agassi', u'montreal', u'master']
[u'compo', u'anger', u'indigen', u'group']
[u'africa', u'back', u'aid', u'drug', u'plan']
[u'aborigin', u'centr', u'call', u'lib', u'scrap']
[u'teen', u'hospitalis', u'stab']
[u'south', u'korean', u'shoot', u'dead', u'philippin']
[u'typhoon', u'hit', u'japan', u'leav', u'dead', u'miss']
[u'govt', u'pay', u'cash', u'ireland', u'bomb', u'lawsuit']
[u'union', u'emerg', u'phone', u'review']
[u'union', u'worri', u'anti', u'discrimin', u'board']
[u'volunt', u'battl', u'timber', u'yard', u'blaze']
[u'armi', u'arrest', u'saddam', u'militia', u'member']
[u'concern', u'israel', u'west', u'bank', u'wall']
[u'venus', u'withdraw', u'toronto', u'tournament']
[u'emerg', u'hous', u'wait', u'list', u'crisi', u'point']
[u'vietnam', u'citi', u'expos', u'cheat', u'coupl']
[u'polic', u'suspect', u'station', u'arsonist', u'know']
[u'win', u'rooster', u'knight', u'shark']
[u'world', u'anglican', u'discuss', u'clergymen']
[u'young', u'australian', u'nation', u'best', u'saver', u'bank']
[u'adam', u'snare', u'protea', u'thump', u'kent']
[u'annual', u'beer', u'regatta', u'set', u'sail', u'darwin']
[u'backburn', u'continu', u'sydney']
[u'backpack', u'lose', u'north', u'mountain']
[u'basra', u'calm', u'riot']
[u'bettini', u'claim', u'world', u'lead', u'sebastian']
[u'boomer', u'lose', u'second', u'match', u'greec']
[u'die', u'gunshot', u'wind']
[u'brazil', u'student', u'issu', u'condom', u'aid', u'battl']
[u'british', u'real', u'beer', u'silli', u'name']
[u'canberra', u'busi', u'warn', u'scam']
[u'carey', u'doubt', u'crucial', u'magpi', u'clash']
[u'chelsea', u'snare', u'mutu']
[u'chines', u'foreign', u'minist', u'arriv', u'tokyo']
[u'pilot', u'arrest', u'bomb', u'shoe', u'joke']
[u'countri', u'gather', u'discuss', u'water', u'dilemma']
[u'davenport', u'dispatch', u'sugiyama', u'advanc']
[u'davi', u'love', u'colorado']
[u'death', u'toll', u'european', u'heatwav', u'hit']
[u'docker', u'roo', u'gasp', u'kick']
[u'employe', u'vote', u'pharmaceut']
[u'english', u'season', u'kick', u'mar', u'tragedi']
[u'fatah', u'accus', u'israel', u'damag', u'ceasefir']
[u'caus', u'histor', u'hotel', u'demolish']
[u'iraqi', u'interior', u'minist', u'custodi']
[u'french', u'farmer', u'draw', u'huge', u'crowd', u'ralli']
[u'french', u'girl', u'die', u'dehydr']
[u'french', u'hitchcock', u'jacqu', u'deray', u'die', u'age']
[u'fund', u'group', u'want', u'asic', u'muscl', u'fee']
[u'globo', u'name', u'younger', u'marinho', u'presid']
[u'organis', u'plan', u'tribut', u'kill', u'driver']
[u'gustafson', u'set', u'cours', u'record', u'swedish', u'open']
[u'hargreav', u'snatch', u'thrill', u'draw', u'bayern']
[u'harvard', u'reveal', u'nuremburg', u'trial', u'internet', u'plan']
[u'heatwav', u'continu', u'europ']
[u'hope', u'small', u'aircraft', u'rule', u'boost', u'flight']
[u'howard', u'promis', u'tasmania', u'special', u'attent']
[u'howard', u'welcom', u'bali', u'appeal', u'find']
[u'immigr', u'encourag', u'settl', u'outsid', u'major']
[u'islam', u'milit', u'iraq', u'plan', u'attack']
[u'jakarta', u'bomb', u'suspect', u'graduat', u'bashir']
[u'jakarta', u'intellig', u'blast']
[u'cottag', u'coalit', u'accus', u'ulterior', u'motiv']
[u'labor', u'anger', u'sydney', u'airport', u'claim']
[u'liber', u'survey', u'elector', u'telstra', u'sale']
[u'liberian', u'presid', u'farewel', u'support']
[u'liberia', u'peacekeep', u'deni', u'port', u'access']
[u'london', u'polic', u'give', u'shoot', u'kill', u'order']
[u'fatal', u'shoot', u'deer', u'hunt', u'expedit']
[u'dead', u'fish', u'trawler']
[u'mcgregor', u'nyangelo', u'citi', u'surf', u'line', u'honour']
[u'melbourn', u'record', u'coldest', u'morn', u'year']
[u'merson', u'doubl', u'sink', u'west', u'brom']
[u'monti', u'shoot', u'round', u'lead', u'denmark']
[u'murder', u'anglican', u'brother', u'solomon', u'know']
[u'museum', u'director', u'conced', u'fund', u'impact']
[u'muslim', u'cleric', u'call', u'struggl', u'continu']
[u'navi', u'intercept', u'alleg', u'iraq', u'smuggler']
[u'nepales', u'financi', u'report', u'catch', u'suspici']
[u'newman', u'miner', u'start', u'strike']
[u'nation', u'lobbi', u'group', u'aim', u'help', u'asthma']
[u'protect', u'section', u'fingleton', u'say', u'support']
[u'opposit', u'unimpress', u'crackdown']
[u'pay', u'tribut', u'vietnam', u'veteran']
[u'push', u'drought', u'grant']
[u'oleari', u'triumphant', u'villa', u'leed']
[u'dead', u'hizbollah', u'shell', u'israel']
[u'person', u'dead', u'bomb', u'explod', u'colombia']
[u'phelp', u'set', u'world', u'mark', u'medley']
[u'phoenix', u'swift', u'thunderbird', u'netbal']
[u'brush', u'infrastructur', u'protect', u'critic']
[u'reject', u'defenc', u'budget', u'blowout', u'claim']
[u'reject', u'report', u'defenc', u'budget', u'blowout']
[u'polic', u'charg', u'set', u'hous']
[u'polic', u'search', u'driver', u'involv', u'fatal']
[u'polic', u'task', u'forc', u'investig', u'illeg', u'hand', u'gun']
[u'port', u'play', u'tradit', u'magpi', u'strip']
[u'portug', u'fire', u'control']
[u'post', u'mortem', u'carri', u'unidentifi', u'bodi']
[u'protest', u'coff', u'harbour', u'bypass']
[u'protest', u'rage', u'second', u'basra']
[u'govt', u'fail', u'follow', u'anim']
[u'ranger', u'thump', u'kilmarnock', u'celtic', u'hold', u'draw']
[u'recreat', u'fish', u'worth', u'nation', u'economi']
[u'remot', u'school', u'latest', u'technolog']
[u'roddick', u'edg', u'feder']
[u'roddick', u'end', u'feder', u'charg', u'spot']
[u'roddick', u'nalbandian', u'battl', u'montreal', u'master']
[u'saddam', u'hussein', u'baghdad', u'ambul']
[u'saint', u'send', u'burk', u'winner']
[u'saint', u'send', u'burk', u'winner']
[u'river', u'ecolog', u'boost', u'fund']
[u'school', u'safer', u'teacher']
[u'speaker', u'claim', u'convent', u'snub']
[u'schwarzenegg', u'file', u'california', u'candidaci']
[u'schwarzenegg', u'barbarian', u'financ']
[u'senat', u'reform', u'referendum', u'need', u'support']
[u'ship', u'builder', u'deni', u'sack', u'worker']
[u'snowfal', u'report', u'north']
[u'solomon', u'crimin', u'punish', u'hill']
[u'south', u'african', u'celebr', u'anti', u'retrovir', u'drug']
[u'space', u'wed', u'near', u'lift']
[u'sport', u'organis', u'warn', u'water']
[u'suspici', u'fire', u'investig']
[u'taiwan', u'ship', u'attack', u'pirat']
[u'tamar', u'river', u'howard', u'itinerari', u'visit']
[u'symphoni', u'orchestra', u'gain', u'fund', u'boost']
[u'dead', u'troop', u'hunt', u'escap', u'bomber']
[u'take', u'hospit', u'ambul', u'accid']
[u'toddler', u'hospit', u'shoot', u'wind']
[u'tradit', u'owner', u'object', u'fraser', u'hors', u'remov']
[u'soldier', u'iraqi', u'wound', u'grenad', u'blast']
[u'troop', u'break', u'basra', u'riot']
[u'victim', u'jakarta', u'blast', u'die', u'hospit', u'death']
[u'victoria', u'speed', u'camera']
[u'warn', u'telephon', u'manner', u'microscop']
[u'warn', u'dentist', u'shortag', u'year']
[u'warrior', u'dragon']
[u'whoop', u'cough', u'rise', u'health', u'say']
[u'wild', u'hors', u'remov', u'fraser', u'island']
[u'william', u'sister', u'play', u'navratilova']
[u'woman', u'fli', u'hospit', u'accid']
[u'women', u'hold', u'mass', u'nurs', u'california']
[u'young', u'labor', u'promis', u'vote', u'build', u'second']
[u'vietnames', u'tourist', u'drown', u'boat', u'capsiz']
[u'wound', u'colombia', u'bomb']
[u'miss', u'chopper', u'crash', u'near', u'mumbai']
[u'academ', u'highlight', u'nativ', u'titl', u'uncertainti']
[u'action', u'fail', u'safeti', u'test']
[u'actor', u'gregori', u'hine', u'dead']
[u'alderman', u'continu', u'council', u'seat', u'chang']
[u'amrozi', u'appeal', u'death', u'penalti']
[u'angler', u'safe']
[u'anorexia', u'hit', u'younger', u'girl']
[u'arni', u'heat', u'poll', u'polit', u'race']
[u'arroyo', u'lift', u'philippin', u'state', u'rebellion']
[u'australia', u'governor', u'general', u'swear']
[u'australia', u'push', u'south', u'pacif', u'chang']
[u'bahraini', u'prison', u'stage', u'hunger', u'strike']
[u'bali', u'suspect', u'claim', u'accus', u'lie']
[u'bali', u'suspect', u'welcom', u'death', u'penalti', u'move']
[u'banker', u'demand', u'nation', u'water', u'reform']
[u'bear', u'claw', u'spot']
[u'beatti', u'slam', u'commonwealth', u'health', u'blackmail']
[u'bendigo', u'bank', u'celebr', u'profit']
[u'blaze', u'wont', u'affect', u'carter', u'holt', u'harvey', u'plant']
[u'boati', u'warn', u'secur', u'item']
[u'boomer', u'hammer', u'bulgaria']
[u'succumb', u'injuri']
[u'braveri', u'commend', u'blackwat']
[u'britain', u'record', u'fahrenheit', u'temperatur']
[u'britain', u'record', u'hottest']
[u'brit', u'warn', u'shot', u'basra']
[u'break', u'hill', u'shiver', u'record', u'cold']
[u'bulldog', u'fin', u'registr', u'breach']
[u'cain', u'head', u'cole', u'myer', u'food', u'divis']
[u'cairn', u'mackay', u'basketbal', u'leagu', u'divis']
[u'continu', u'power', u'reduct']
[u'fisher', u'compo', u'reef', u'rezon', u'plan']
[u'crash', u'put', u'girl', u'hospit']
[u'carer', u'allow', u'review', u'fact', u'life', u'vanston']
[u'clijster', u'claim', u'spot']
[u'coast', u'convent', u'screen', u'film']
[u'coff', u'resid', u'demand', u'highway', u'bypass']
[u'collis', u'alarm', u'protect', u'china', u'astronaut']
[u'comment', u'seek', u'draft', u'coastal', u'plan']
[u'communiti', u'bank', u'board', u'consid', u'dividend']
[u'concern', u'indigen', u'group', u'repres', u'council']
[u'concern', u'level', u'debat', u'constitut', u'forum']
[u'concern', u'rais', u'threaten', u'speci']
[u'consult', u'involv', u'leagu', u'club']
[u'controversi', u'beer', u'regatta']
[u'council', u'put', u'focus', u'water', u'save']
[u'council', u'urg', u'chang', u'art', u'fund', u'plan']
[u'council', u'urg', u'communiti', u'support', u'tackl', u'wild', u'dog']
[u'court', u'consid', u'sibl', u'detent']
[u'court', u'tell', u'accus', u'follow', u'bash']
[u'cricket', u'australia', u'steer', u'clear', u'warn', u'scandal']
[u'cricket', u'australia', u'warn', u'affair']
[u'cricket', u'bodi', u'keep', u'warn', u'scandal']
[u'croc', u'dump', u'turner']
[u'cross', u'border', u'scheme', u'attack', u'sniff', u'violenc']
[u'demerg', u'assur', u'boost', u'share']
[u'democrat', u'fear', u'canola', u'trial']
[u'democrat', u'seek', u'nation', u'anim', u'welfar', u'author']
[u'dept', u'clarifi', u'uluru', u'photo', u'ban']
[u'director', u'newel', u'work', u'harri', u'potter', u'magic']
[u'evid', u'panel', u'investig']
[u'docker', u'close', u'final', u'spot']
[u'dvds', u'lead', u'digit', u'technolog', u'charg']
[u'eddi', u'factor', u'overst', u'say', u'matthew']
[u'educ', u'effort', u'earn', u'award']
[u'emerg', u'worker', u'rais', u'hospit', u'fund']
[u'endors', u'threaten', u'accc', u'independ']
[u'ettridg', u'tell', u'court', u'nation', u'effect']
[u'everton', u'suffer', u'campbel', u'setback']
[u'famili', u'rememb', u'bomb', u'victim', u'birthday']
[u'farmer', u'salin', u'advic']
[u'farmer', u'hop', u'heavier', u'rain']
[u'fault', u'caus', u'hour', u'blackout']
[u'fear', u'shortag', u'bite', u'dental', u'servic']
[u'fergi', u'stay', u'cool', u'titl', u'chase']
[u'fingleton', u'start', u'communiti', u'work', u'week']
[u'fingleton', u'move', u'maximum', u'secur']
[u'fingleton', u'move', u'halfway', u'hous']
[u'fist', u'entertain', u'fring', u'festiv']
[u'frustrat', u'montgomeri', u'head', u'home']
[u'german', u'clinch', u'seri', u'kookaburra']
[u'appoint', u'humbl', u'jefferi']
[u'gear', u'pipelin', u'develop']
[u'golden', u'oldi', u'frederick', u'sprint', u'victori']
[u'golf', u'club', u'pursu', u'clubhous']
[u'golf', u'hungriest', u'finish', u'timer', u'slam']
[u'govt', u'back', u'state', u'polic', u'plan', u'welcom']
[u'green', u'centr', u'air', u'subdivis', u'concern']
[u'green', u'councillor', u'seek', u'merger', u'referendum']
[u'gurus', u'peac', u'plan', u'dont', u'wash', u'cambodia', u'king']
[u'gustafson', u'pip', u'pettersen', u'play']
[u'defeat', u'ward', u'play', u'ohio']
[u'hear', u'begin', u'privat', u'land']
[u'heatwav', u'take', u'toll', u'europ']
[u'heritag', u'trail', u'bring', u'tourism', u'dollar']
[u'hope', u'servic', u'encourag']
[u'hotel', u'license', u'shock', u'destroy']
[u'hous', u'boom', u'boost', u'bendigo', u'bank', u'profit']
[u'hunter', u'intern', u'airport', u'debat', u'reignit']
[u'indigen', u'foundat', u'get', u'fund', u'boost']
[u'indigen', u'popul', u'highlight', u'hospit']
[u'injuri', u'threaten', u'open', u'women', u'field']
[u'inquiri', u'hear', u'evid', u'scientist', u'death']
[u'inquiri', u'open', u'scientist', u'death']
[u'iraqi', u'explos', u'kill', u'soldier']
[u'isra', u'polic', u'arrest', u'utter', u'threat']
[u'israel', u'launch', u'strike', u'hezbollah', u'attack']
[u'israel', u'warn', u'hezbollah', u'attack', u'caus']
[u'jakarta', u'blast', u'survivor', u'shake', u'deter']
[u'jakarta', u'guard', u'attack']
[u'japan', u'count', u'cost', u'typhoon', u'etau', u'weaken']
[u'japan', u'probe', u'chines', u'chemic', u'weapon', u'spill']
[u'jeffer', u'say', u'sorri', u'card', u'rage']
[u'fugit', u'ghozi', u'give', u'filipino', u'troop', u'slip']
[u'kopassus', u'tie', u'counter', u'terror', u'effort', u'hill']
[u'labor', u'surviv', u'parti', u'challeng']
[u'labor', u'question', u'indonesian', u'militari', u'link']
[u'land', u'price']
[u'lawrenc', u'go', u'asylum', u'seeker']
[u'lawyer', u'criticis', u'asio', u'power']
[u'legal', u'group', u'welcom', u'acquitt', u'abus', u'partner']
[u'lennox', u'lewi', u'ponder', u'retir']
[u'liber', u'air', u'telstra', u'sale', u'opposit']
[u'liberian', u'presid', u'reluct', u'leav']
[u'lomu', u'posit', u'mute', u'return', u'action']
[u'love', u'cruis', u'victori', u'colorado']
[u'love', u'triumph', u'colorado']
[u'magistr', u'promis', u'suspend', u'jail', u'term']
[u'arrest', u'arson', u'attack']
[u'die', u'highway', u'crash']
[u'face', u'year', u'jail', u'term', u'scam']
[u'jail', u'fraud']
[u'celebr', u'howard']
[u'market', u'steadi', u'news', u'corp', u'balanc', u'bank']
[u'martin', u'win', u'finland', u'burn', u'retain', u'lead']
[u'mayor', u'ponder', u'elect', u'plan']
[u'mayor', u'unhappi', u'kelli', u'stand']
[u'hospit', u'motorcycl', u'crash']
[u'miner', u'strike', u'secur']
[u'minist', u'highlight', u'prison', u'contribut']
[u'school', u'join', u'preparatori', u'year', u'trial']
[u'air', u'school', u'test', u'concern']
[u'mundin', u'resum', u'train', u'fight', u'date']
[u'murder', u'juri', u'warn', u'gruesom', u'evid']
[u'nato', u'take', u'afghan', u'peacekeep', u'role']
[u'nat', u'consid', u'youth', u'drive', u'restrict']
[u'nat', u'seek', u'stem', u'cell', u'research']
[u'nauru', u'elect', u'fourth', u'presid', u'year']
[u'jefferi', u'swear']
[u'senat', u'plan', u'win', u'clerk', u'support']
[u'surveil', u'tool', u'field', u'test']
[u'win', u'amateur', u'championship']
[u'nixon', u'rule', u'check', u'access', u'candid']
[u'nurseryman', u'fin', u'vine']
[u'govt', u'deni', u'tie', u'solomon', u'inappropri']
[u'oconnor', u'share', u'feder', u'fund']
[u'kill', u'injur', u'plane', u'crash']
[u'oppn', u'accus', u'govt', u'museum', u'sabotag']
[u'pakistan', u'shift', u'south', u'african', u'seri', u'open']
[u'pari', u'doctor', u'claim', u'heatwav', u'kill', u'elder']
[u'parti', u'drug', u'popular']
[u'payten', u'sign', u'west']
[u'pittman', u'markov', u'triumph', u'germani']
[u'plane', u'crash', u'airport']
[u'deni', u'mislead', u'parliament', u'ethanol']
[u'sydney', u'airport', u'view']
[u'newspap', u'attack', u'link', u'keke']
[u'polic', u'hunt', u'fast', u'food', u'arm', u'bandit']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'oper', u'charg', u'young', u'driver']
[u'polic', u'seek', u'fatal', u'tractor', u'accid', u'wit']
[u'polic', u'inspect', u'strand', u'trawler']
[u'poor', u'diet', u'smoke', u'blame', u'spike', u'diseas']
[u'port', u'adelaid', u'power', u'home']
[u'port', u'greatest', u'player', u'depth', u'matthew']
[u'post', u'mortem', u'hold', u'trawler', u'bodi']
[u'poulter', u'edg', u'monti']
[u'public', u'hous', u'wait', u'list']
[u'raider', u'criticis', u'woolford', u'send']
[u'random', u'test', u'game', u'anti', u'dope', u'drive']
[u'rat', u'like']
[u'real', u'madrid', u'sneak', u'home', u'thai', u'team']
[u'reef', u'report', u'add', u'urgenc', u'tree', u'clear', u'chang']
[u'region', u'victoria', u'urg', u'road', u'death']
[u'report', u'spark', u'concern', u'public', u'transport', u'safeti']
[u'rescu', u'servic', u'consid', u'phone', u'upgrad']
[u'resid', u'ask', u'disrupt', u'meet']
[u'right', u'group', u'put', u'aceh', u'civilian', u'death', u'toll']
[u'rio', u'lose', u'final', u'meligeni']
[u'riverland', u'malle', u'enjoy', u'rain']
[u'roddick', u'win', u'montreal', u'master']
[u'rodeo', u'put', u'cowboy', u'test']
[u'brew', u'hous', u'develop', u'plan']
[u'rspca', u'seek', u'biologist', u'examin', u'welfar']
[u'safeti', u'compromis', u'miner', u'strike', u'report']
[u'govt', u'urg', u'consid', u'convent', u'idea']
[u'school', u'obes', u'program', u'bear', u'fruit']
[u'sheep', u'farmer', u'enjoy', u'good', u'time']
[u'ship', u'secur', u'risk']
[u'shoot', u'baffl', u'polic']
[u'sieg', u'effort', u'earn', u'teacher', u'braveri', u'award']
[u'resort', u'welcom', u'white', u'wonderland']
[u'sleep', u'driver', u'avoid', u'neglig', u'charg']
[u'smyth', u'await', u'roger', u'decis']
[u'solomon', u'forc', u'head', u'quiet', u'keke', u'protect']
[u'solomon', u'amnesti', u'collect', u'weapon']
[u'star', u'cross', u'lover', u'exchang', u'vow']
[u'studi', u'chart', u'teacher', u'workload']
[u'suicid', u'support', u'group', u'seek', u'hous', u'option']
[u'surveil', u'vehicl', u'trial', u'solomon', u'island']
[u'swimmer', u'kick', u'endometriosi', u'awar', u'week']
[u'taylor', u'need', u'day', u'prepar', u'exil', u'aid']
[u'teenag', u'refus', u'bail', u'murder', u'case']
[u'teen', u'face', u'murder', u'charg', u'get', u'bail']
[u'tenpin', u'bowl', u'staff', u'fight', u'better']
[u'thousand', u'watch', u'cash', u'broom']
[u'townsvill', u'await', u'aftershock', u'earthquak']
[u'typhoon', u'rake', u'japan', u'dead']
[u'basketbal', u'prepar', u'olymp', u'qualifi']
[u'soldier', u'dead', u'barrack']
[u'govt', u'urg', u'boost', u'thomson', u'river', u'flow']
[u'hospit', u'urg', u'acknowledg', u'mistak']
[u'wallabi', u'health', u'scare']
[u'warn', u'accus', u'tri', u'sell', u'stori']
[u'warn', u'face', u'fresh', u'alleg']
[u'warwick', u'turn', u'motor', u'race', u'success']
[u'water', u'restrict', u'loom', u'break', u'hill']
[u'water', u'review', u'witch', u'hunt']
[u'weekend', u'rain', u'give', u'perth', u'dam', u'gigalitr', u'boost']
[u'white', u'enjoy', u'metr', u'jone']
[u'wit', u'fail', u'identifi', u'accus', u'peopl', u'smuggler']
[u'wolv', u'determin', u'bite', u'doom', u'merchant']
[u'woolford', u'fletcher', u'charg']
[u'take', u'hospit', u'school']
[u'card', u'weed', u'australia', u'want']
[u'disabl', u'add', u'allow']
[u'ethanol', u'plan', u'move', u'ahead']
[u'academ', u'lament', u'ax']
[u'compromis']
[u'airlin', u'punctual']
[u'slash', u'tran', u'tasman', u'fare']
[u'aldermen', u'vote', u'stop', u'council', u'inform', u'leak']
[u'alfa', u'romeo', u'good', u'start', u'britain']
[u'allenbi', u'move']
[u'committe', u'probe', u'sydney', u'airport', u'option']
[u'qaeda', u'threat', u'authent']
[u'announc', u'jump', u'profit']
[u'armitag', u'defend', u'hickss', u'detent']
[u'armitag', u'rule', u'base', u'australia']
[u'arson', u'suspect', u'appear', u'court']
[u'boss', u'criticis', u'rebuild', u'campaign']
[u'asic', u'boss', u'take', u'earli', u'retir']
[u'aussi', u'athlet', u'face', u'qualifi', u'chanc']
[u'aust', u'offer', u'help', u'check', u'north', u'korea', u'weapon']
[u'australia', u'boost', u'anti', u'defenc']
[u'australian', u'doubl', u'advanc']
[u'babi', u'assault', u'earn', u'jail', u'term']
[u'banker', u'urg', u'card', u'skim', u'gear']
[u'bank', u'resourc', u'drag', u'market']
[u'barca', u'rumour', u'turn', u'puyol']
[u'bashir', u'blame', u'indonesian', u'blast']
[u'report', u'defend', u'iraq', u'stori']
[u'beauti', u'queen', u'disappear', u'vietnam']
[u'appeal', u'quarri', u'snub']
[u'boati', u'float', u'waterway', u'safeti', u'concern']
[u'boiler', u'blame', u'school', u'evacu']
[u'bowl', u'club', u'overcom', u'insur', u'woe']
[u'break', u'cast', u'doubt', u'skinstad', u'world']
[u'bullen', u'reciev', u'rise', u'star']
[u'cafl', u'club', u'discuss', u'futur', u'plan']
[u'focus', u'alcohol', u'court']
[u'call', u'commit', u'troop', u'star', u'role']
[u'boost', u'region', u'polic', u'number']
[u'campaign', u'releas', u'convict', u'killer', u'disappoint']
[u'campbel', u'injuri', u'forward', u'everton']
[u'candid', u'check', u'polic', u'file', u'breach']
[u'carr', u'back', u'airport', u'committe']
[u'charg', u'lay', u'gretley', u'coal', u'disast']
[u'children', u'weight', u'subject', u'research', u'project']
[u'china', u'coal', u'blast', u'kill']
[u'claim', u'enforc', u'need', u'brothel', u'licens']
[u'clijster', u'reach', u'summit', u'need', u'seal', u'slam']
[u'put', u'focus', u'western']
[u'coach', u'say', u'breaker', u'perform']
[u'communiti', u'forum', u'discuss', u'hydrotherapi', u'pool']
[u'communiti', u'involv', u'south', u'west', u'rock', u'plan', u'council']
[u'coppola', u'seek', u'free', u'citi']
[u'coron', u'investig', u'hospit', u'death']
[u'council', u'approv', u'tourist', u'railway', u'plan']
[u'council', u'confid', u'resid', u'support', u'takeov']
[u'council', u'park', u'fee', u'backflip']
[u'council', u'meet', u'discuss', u'road', u'fund']
[u'council', u'merger', u'remain', u'oppos']
[u'council', u'offer', u'abattoir', u'support']
[u'council', u'reject', u'hawley', u'subdivis', u'plan']
[u'council', u'earli', u'warn', u'super', u'woe']
[u'court', u'back', u'melbourn', u'food', u'poison', u'settlement']
[u'court', u'hear', u'evid', u'stockman', u'murder', u'trial']
[u'court', u'hear', u'evid', u'miss', u'girl', u'case']
[u'court', u'tell', u'sight', u'problem', u'discount', u'evid']
[u'croc', u'hunt', u'import']
[u'current', u'structur', u'stay']
[u'custom', u'chase', u'suspect', u'poacher', u'southern']
[u'dementieva', u'overpow', u'molik', u'toronto']
[u'democrat', u'want', u'restrict', u'land', u'auction', u'bring']
[u'dept', u'quiet', u'alter', u'hec', u'report', u'nelson']
[u'disabl', u'advoc', u'ralli', u'fund', u'increas']
[u'dollar', u'climb', u'rat', u'drop', u'agenda']
[u'doubl', u'suicid', u'attack', u'fractur', u'calm']
[u'drover', u'roadsid', u'mainten', u'cost']
[u'dutch', u'polic', u'nap', u'burglar']
[u'eagl', u'consid', u'crazi', u'deal']
[u'crime', u'guidelin', u'assist', u'busi']
[u'escap', u'show', u'need', u'brisban', u'detent', u'centr']
[u'timor', u'militiaman', u'jail', u'crime']
[u'farmer', u'hop', u'rain']
[u'north', u'shire', u'make', u'applic']
[u'fatah', u'offshoot', u'claim', u'shop', u'centr', u'bomb']
[u'fear', u'drought', u'ruin', u'crop']
[u'fear', u'gibson', u'passion', u'lead', u'anti', u'semit']
[u'fear', u'poki', u'kill', u'funer', u'servic']
[u'fel', u'hand', u'critic', u'book', u'launch']
[u'task', u'forc', u'back', u'rebuild', u'bush', u'suburb']
[u'winner', u'seek', u'champion', u'leagu', u'progress']
[u'fletcher', u'cop', u'week']
[u'tell', u'migrat', u'tribun', u'extort', u'forc']
[u'appear', u'migrat', u'review', u'tribun']
[u'forum', u'address', u'ulverston', u'crime']
[u'foster', u'spin', u'retail', u'game', u'arm']
[u'freeman', u'bullet']
[u'gamito', u'claim', u'sixth', u'stage']
[u'govt', u'deni', u'hick', u'plea', u'bargain', u'strike']
[u'haa', u'look', u'year']
[u'hama', u'claim', u'west', u'bank', u'suicid', u'bomb']
[u'hanson', u'trial', u'membership', u'oper', u'lawyer']
[u'happi', u'cow', u'equal', u'better', u'beef']
[u'heatwav', u'claim', u'frostbit', u'victim']
[u'hick', u'plead', u'guilti', u'report']
[u'hickss', u'father', u'unconvinc', u'deal', u'claim']
[u'hmri', u'share', u'fund']
[u'hockeyroo', u'defeat', u'china']
[u'hook', u'defend', u'hairi', u'back', u'comment']
[u'hope', u'govt', u'tougher', u'firebug', u'penalti']
[u'howard', u'warn', u'earli', u'elect', u'possibl']
[u'husband', u'attempt', u'murder', u'charg', u'refus', u'bail']
[u'immigr', u'lawyer', u'appeal', u'famili', u'court', u'rule']
[u'indigen', u'communiti', u'seek', u'fund', u'guarante']
[u'inform', u'gap', u'hamper', u'assault', u'servic']
[u'internet', u'servic', u'get', u'thumb']
[u'investig', u'examin', u'plane', u'crash', u'site']
[u'head', u'come', u'athen', u'organis']
[u'irrig', u'flush', u'grate', u'water']
[u'jamaica', u'fin', u'indec', u'star']
[u'pearc', u'decid', u'futur']
[u'jobsearch', u'match', u'arthriti', u'patient', u'armi']
[u'johnson', u'track', u'say', u'mitchel']
[u'kefu', u'confid', u'play']
[u'kopassus', u'cooper', u'limit', u'downer']
[u'korean', u'leader', u'urg', u'scam', u'victim', u'come', u'forward']
[u'lake', u'frome', u'park', u'gear', u'summer']
[u'die', u'crash']
[u'face', u'court', u'abstudi', u'fraud', u'charg']
[u'jail', u'child', u'attempt']
[u'appear', u'court', u'son', u'stab']
[u'mayor', u'say', u'lawrenc', u'hargrav', u'drive', u'repair']
[u'mcgradi', u'urg', u'boost', u'beerwah', u'polic', u'number']
[u'melbourn', u'driver']
[u'sentenc', u'jail', u'chop', u'chop', u'haul']
[u'microsoft', u'million', u'patent', u'breach']
[u'miss', u'skier']
[u'mix', u'reaction', u'anim', u'welfar']
[u'school', u'prep', u'trial']
[u'mourner', u'tribut', u'jack', u'ingham']
[u'moya', u'crash', u'cincinnati']
[u'highlight', u'child', u'disabl', u'payment', u'concern']
[u'mundin', u'mend']
[u'muswellbrook', u'back', u'super', u'council', u'plan']
[u'survey', u'reveal', u'busi', u'confid', u'rise']
[u'nato', u'take', u'secur', u'afghanistan']
[u'nelson', u'pull']
[u'newcastl', u'power', u'suppli', u'restor']
[u'kenya', u'coach', u'look', u'build', u'world']
[u'newman', u'billiton', u'worker', u'continu', u'strike']
[u'varieti', u'prove', u'resist', u'leaf', u'rust']
[u'norman', u'doubt', u'championship']
[u'govt', u'millennium', u'train', u'maker']
[u'opposit', u'meet', u'grafton']
[u'cattl', u'farmer', u'fear', u'live', u'export']
[u'oper', u'find', u'abalon', u'poach']
[u'oper', u'shorthorn', u'target', u'livestock', u'thiev']
[u'opposit', u'target', u'ethanol', u'meet']
[u'pacif', u'ring', u'widen']
[u'palestinian', u'cut', u'tour', u'short', u'suicid', u'blast']
[u'founder', u'seek', u'liquid', u'stay']
[u'parish', u'withhold', u'fund', u'priest', u'protest']
[u'power', u'trim', u'overhead']
[u'pilot', u'passeng', u'safe', u'forc', u'land']
[u'pilot', u'take', u'democrat', u'approach', u'run']
[u'plenti', u'stake', u'wood', u'compani']
[u'poki', u'deal', u'problem', u'gambl', u'minist']
[u'polic', u'south', u'east', u'arrest']
[u'polic', u'oper', u'arrest']
[u'polic', u'station', u'delay', u'caus', u'frustrat']
[u'polic', u'solv', u'caus', u'fatal', u'truck', u'crash']
[u'primus', u'doubt', u'return', u'final']
[u'prosecutor', u'seek', u'year', u'jail', u'bashir']
[u'protest', u'drive', u'home', u'anim', u'transport', u'concern']
[u'public', u'hospit', u'work', u'ban', u'continu']
[u'pyne', u'suggest', u'eas', u'fund', u'squeez']
[u'govt', u'cast', u'doubt']
[u'quak', u'give', u'north', u'good', u'shake']
[u'queensland', u'tourist', u'industri', u'fear', u'reef', u'kill']
[u'question', u'rais', u'gippsland', u'water', u'rat', u'rise']
[u'welcom', u'studi', u'sturt', u'highway', u'bypass']
[u'race', u'industri', u'farewel', u'jack', u'ingham']
[u'assess', u'back', u'hous', u'price', u'action']
[u'real', u'look', u'squad', u'fund', u'sign']
[u'report', u'recommend', u'chang', u'region', u'program']
[u'ridout', u'succeed', u'retir', u'head']
[u'vindaloo', u'barbecu', u'futur']
[u'rspca', u'rethink', u'shark', u'welfar', u'probe']
[u'russia', u'rememb', u'kursk', u'disast']
[u'govt', u'admit', u'care', u'fund', u'mistak']
[u'govt', u'appeal', u'shooter', u'suspend', u'sentenc']
[u'semi', u'trailer', u'accid', u'close']
[u'senat', u'call', u'pacif', u'communiti', u'head']
[u'senat', u'scrutinis', u'telstra', u'sale', u'plan']
[u'senat', u'suggest', u'greater', u'access', u'eas', u'kakadu']
[u'slovak', u'minnow', u'look', u'roman', u'champion']
[u'sluman', u'upbeat', u'mood', u'hill']
[u'spark', u'hunt', u'lose', u'skier']
[u'soccer', u'countri', u'region', u'success']
[u'speed', u'camera']
[u'subsidi', u'water', u'drought', u'impact', u'profit']
[u'sugar', u'worker', u'strike']
[u'suicid', u'bomber', u'hit', u'isra', u'shop', u'centr', u'polic']
[u'super', u'help', u'quak', u'predict']
[u'sydney', u'digit', u'radio', u'clear', u'hurdl']
[u'syring', u'hold', u'thief', u'jail']
[u'taiwanes', u'seiz', u'north', u'korea', u'chemic', u'shipment']
[u'tapir', u'fossil', u'discoveri']
[u'festiv', u'bring', u'artist', u'work', u'aliv']
[u'tasmanian', u'tariff', u'fight', u'canberra']
[u'taylor', u'spend', u'exil']
[u'technic', u'shunt', u'prospector', u'train']
[u'techniqu', u'discov', u'help', u'schizophren']
[u'report', u'doesnt', u'surpris', u'farmer']
[u'textil', u'worker', u'ralli', u'expect', u'tariff', u'cut']
[u'tiger', u'bite', u'johnson']
[u'toni', u'strike', u'bronco', u'deal']
[u'toowoomba', u'team', u'track', u'rail', u'competit']
[u'tourism', u'downturn', u'hit', u'jupit', u'profit']
[u'suicid', u'bomber', u'strike', u'israel']
[u'soldier', u'kill', u'south', u'korea', u'plane', u'crash']
[u'troop', u'kill', u'south', u'korea']
[u'underground', u'cabl', u'fault', u'black', u'newcastl']
[u'union', u'want', u'job', u'secur', u'sell']
[u'unit', u'bind', u'kleberson', u'grant', u'work', u'permit']
[u'unit', u'church', u'face', u'backlash']
[u'unit', u'church', u'leader', u'discuss', u'clergi']
[u'univers', u'databas', u'preserv', u'anangu', u'cultur']
[u'soldier', u'face', u'question', u'south', u'korean', u'corps']
[u'troop', u'trigger', u'happi', u'iraqi']
[u'warship', u'anchor', u'liberian', u'coast']
[u'vaughan', u'seek', u'match', u'south', u'african', u'hunger']
[u'victorian', u'domest', u'violenc', u'project', u'launch']
[u'vitamin', u'help', u'beat', u'cholesterol']
[u'waff', u'highlight', u'agricultur', u'fund', u'concern']
[u'warn', u'accus', u'warn', u'coach', u'care']
[u'watchdog', u'show', u'bias', u'labor']
[u'wentworth', u'lock', u'winner']
[u'wesfarm', u'post', u'record', u'profit']
[u'westfield', u'consid', u'garden', u'citi', u'option']
[u'wine', u'compani', u'debt', u'bigger', u'think']
[u'woman', u'die', u'labrador', u'crash']
[u'woolford', u'fletcher', u'earli', u'plea']
[u'worksaf', u'inspector', u'target', u'swan', u'hill']
[u'young', u'australian', u'reveal', u'depress', u'suicid']
[u'women', u'detain', u'brothel', u'raid']
[u'group', u'warn', u'pine', u'replant']
[u'agreement', u'reach', u'pool']
[u'flood', u'rainwat', u'tank', u'rebat']
[u'ajax', u'hold', u'celta', u'vigo', u'enjoy', u'champion', u'leagu', u'debut']
[u'alfa', u'romeo', u'celebr', u'classic']
[u'black', u'revert', u'win']
[u'predict', u'challeng', u'time', u'bank']
[u'argentina', u'move', u'annul', u'junta', u'immun']
[u'arsenal', u'sign', u'vieira', u'pire']
[u'art', u'centr', u'plan', u'move', u'ahead']
[u'atsic', u'chair', u'suspend']
[u'aussi', u'send', u'pack', u'cincinnati']
[u'aust', u'olymp', u'team', u'take', u'extra', u'precaut']
[u'aust', u'olymp', u'team', u'take', u'extra', u'precaut']
[u'australia', u'face', u'back']
[u'australia', u'fare', u'athen', u'say', u'coat']
[u'downplay', u'legal', u'action', u'threat']
[u'babi', u'succumb', u'suspect', u'meningococc']
[u'bali', u'trial', u'blame', u'anti', u'muslim', u'sentiment']
[u'beachsid', u'water', u'good', u'heavi', u'rain', u'bring', u'woe']
[u'belgian', u'court', u'jail', u'peopl', u'smuggler']
[u'birdman', u'branson', u'plung']
[u'bordertown', u'band', u'ponder', u'futur']
[u'bowen', u'enjoy', u'whale', u'watch']
[u'bruce', u'highway', u'upgrad', u'ahead', u'schedul']
[u'build', u'expert', u'design', u'coast']
[u'burrup', u'develop', u'sit', u'spotlight']
[u'bomb', u'kill', u'southern', u'afghanistan']
[u'busi', u'day', u'busi', u'english', u'titl', u'hope']
[u'cafl', u'club', u'defer', u'merger', u'decis']
[u'inform', u'debat', u'mine', u'wast', u'plan']
[u'reinstat', u'aborigin', u'health', u'fund']
[u'carr', u'reject', u'blame', u'badgeri', u'debat']
[u'ceasefir', u'palestinian', u'group']
[u'charl', u'leav', u'polit']
[u'china', u'sack', u'high', u'rank', u'polic']
[u'china', u'thwart', u'north', u'korean', u'asylum']
[u'china', u'build', u'world', u'largest', u'shipyard']
[u'chines', u'author', u'seiz', u'fake', u'olymp', u'product']
[u'christian', u'radio', u'station', u'get', u'licenc']
[u'claim', u'bypass', u'offer', u'road', u'trauma', u'benefit']
[u'clark', u'seek', u'legal', u'advic']
[u'clijster', u'deni', u'problem', u'rival', u'henin']
[u'club', u'gather', u'poki', u'plan', u'concern']
[u'communiti', u'reject', u'ordin', u'homosexu']
[u'consum', u'confid', u'dip']
[u'council', u'approv', u'rabattoir', u'plan']
[u'council', u'happi', u'servic', u'news']
[u'councillor', u'lose', u'adult', u'entertain', u'fight']
[u'councillor', u'oppos', u'heritag', u'precinct']
[u'councillor', u'leav', u'local', u'govt']
[u'council', u'feder', u'fund', u'boost']
[u'council', u'quiz', u'resid', u'perform']
[u'council', u'want', u'consult', u'prison', u'plan']
[u'cricket', u'board', u'blackmail', u'hear', u'adjourn']
[u'darwin', u'host', u'militari', u'exercis']
[u'dept', u'cut', u'benefit', u'school', u'student']
[u'drug', u'deal', u'claim', u'nauru', u'prompt', u'concern']
[u'taliban', u'kill', u'attack', u'afghan', u'troop']
[u'attempt', u'shake', u'jinx']
[u'emerg', u'declar', u'karachi', u'slick']
[u'energi', u'australia', u'probe', u'newcastl', u'black']
[u'england', u'unsettl', u'sleepless', u'smith']
[u'ethanol', u'boss', u'deni', u'special', u'treatment']
[u'farmer', u'appli', u'drought', u'fund']
[u'farmer', u'drought', u'offer']
[u'farmer', u'feder', u'drought']
[u'farmer', u'opposit', u'deregul', u'plan']
[u'foil', u'missil', u'plot']
[u'fear', u'safeti', u'miss']
[u'govt', u'consid', u'airlin', u'report', u'scheme']
[u'govt', u'launch', u'pollut', u'review']
[u'filipino', u'coup', u'leader', u'claim', u'presidenti', u'abus']
[u'film', u'piraci', u'spotlight', u'convent']
[u'fitzpatrick', u'appoint', u'commiss']
[u'fletcher', u'hook', u'boycott', u'bouncer']
[u'detent', u'continu', u'court', u'reject', u'visa']
[u'visa', u'request', u'deni']
[u'child', u'care', u'worker', u'jail', u'abus']
[u'human', u'shield', u'face', u'fin']
[u'minist', u'mediat', u'disput']
[u'wallabi', u'head']
[u'frost', u'affect', u'cane', u'expect', u'harvest', u'soon']
[u'moon', u'beam', u'athen', u'year', u'countdown']
[u'gallop', u'slam', u'inquiri', u'propos', u'term', u'refer']
[u'gibb', u'join', u'durham']
[u'gold', u'coast', u'surfer', u'gather', u'memori']
[u'govt', u'angri', u'lack', u'drought']
[u'govt', u'criticis', u'plan', u'limit', u'kopassus']
[u'govt', u'play', u'callous', u'game', u'disabl', u'fund']
[u'govt', u'tinto', u'team', u'indigen', u'health', u'scheme']
[u'grafton', u'back', u'council']
[u'grazier', u'urg', u'consid', u'camel', u'opportun']
[u'green', u'plan', u'go']
[u'gribbl', u'open', u'melbourn', u'laboratori']
[u'grime', u'apologis', u'posit', u'drug', u'test']
[u'gutnick', u'feud', u'shut', u'sydney', u'school']
[u'haka', u'start', u'long', u'uefa', u'trek']
[u'health', u'budget', u'boost', u'great', u'southern']
[u'hewitt', u'secur', u'pari', u'berth']
[u'hook', u'urg', u'warn', u'speak']
[u'hospit', u'begin', u'oper']
[u'howard', u'back', u'asio', u'threat', u'assess']
[u'hussain', u'eager', u'play']
[u'injur', u'edward', u'delay', u'pari', u'decis']
[u'inquiri', u'exoner', u'tank', u'crew']
[u'insur', u'rebat', u'threaten', u'health', u'studi']
[u'iraqi', u'clear', u'woomera', u'charg']
[u'isra', u'troop', u'demolish', u'suicid', u'bomber', u'home']
[u'japan', u'consid', u'fund', u'rice', u'plastic', u'project']
[u'job', u'line', u'telstra', u'close', u'centr']
[u'journalist', u'stand', u'dodgi', u'dossier', u'stori', u'inquiri']
[u'keke', u'surrend', u'intervent', u'forc']
[u'kemp', u'ask', u'solomon', u'releas', u'dolphin']
[u'khorkina', u'look', u'restor', u'russian', u'pride', u'world']
[u'labor', u'blame', u'ethanol', u'cut']
[u'labor', u'attack', u'lib', u'bendigo', u'effort']
[u'labor', u'warn', u'illawarra', u'badgeri']
[u'landhold', u'welcom', u'arson', u'penalti']
[u'hospit', u'secur', u'turn', u'nurs', u'away', u'oppn']
[u'legendari', u'moss', u'compet', u'adelaid']
[u'liber', u'hit', u'colleagu', u'telstra']
[u'lithuanian', u'bounc', u'boomer']
[u'rat', u'boost']
[u'charg', u'murder', u'bodi']
[u'manildra', u'boss', u'visit', u'nowra', u'plant']
[u'jail', u'burn', u'parent', u'hous']
[u'kill', u'ballarat', u'crash']
[u'sentenc', u'photograph', u'rivkin']
[u'mccartney', u'join', u'bali', u'suit']
[u'mcgradi', u'promis', u'probe', u'beerwah', u'complaint']
[u'sentenc', u'north', u'west', u'assault']
[u'million', u'dollar', u'food', u'poison', u'victim']
[u'miner', u'union', u'continu', u'safeti', u'attack']
[u'miss', u'beauti', u'queen', u'make', u'cameo', u'appear']
[u'mobil', u'phone', u'help', u'save', u'lose', u'skier']
[u'delay', u'land', u'rezon', u'decis']
[u'drought', u'avail']
[u'kingfish', u'escap']
[u'motorist', u'strike', u'lump', u'concret', u'sydney']
[u'motor', u'race', u'circuit', u'boost', u'economi']
[u'aim', u'delay', u'customari', u'amend', u'debat']
[u'attack', u'reef', u'rezon', u'plan']
[u'slam', u'govt', u'plan', u'appoint', u'green', u'committe']
[u'murder', u'victim', u'mother', u'back', u'death', u'penalti']
[u'musharraf', u'call', u'kashmir', u'ceas']
[u'nativ', u'titl', u'parti', u'urg', u'join', u'talk']
[u'natqld']
[u'firefight', u'truck', u'head', u'south', u'east']
[u'newscorp', u'gain', u'push', u'share', u'market', u'higher']
[u'news', u'limit', u'win', u'high', u'court', u'appeal']
[u'nippi', u'award', u'salmonella', u'outbreak']
[u'altern', u'fear', u'local', u'school', u'closur']
[u'beckham', u'fergi', u'ronaldo']
[u'evid', u'support', u'rail', u'threat']
[u'noriega', u'kefu', u'give', u'time']
[u'norman', u'play']
[u'evid', u'support', u'woomera', u'fraud']
[u'player', u'deserv', u'say', u'fittler']
[u'korea', u'stick', u'demand', u'aggress', u'pact']
[u'oceania', u'boss', u'step']
[u'offici', u'deni', u'allianc', u'make', u'aust', u'terror']
[u'olymp', u'organis', u'retreat', u'aust', u'secur']
[u'kill', u'injur', u'crash']
[u'opposit', u'delay', u'ethanol', u'approv']
[u'oval', u'upgrad', u'plan']
[u'major', u'issu', u'public', u'servant', u'cpsu']
[u'payment', u'fast', u'track', u'furnitur']
[u'pinochet', u'tortur', u'victim', u'receiv', u'compens']
[u'plan', u'aim', u'emerg', u'dept', u'congest']
[u'face', u'second', u'censur', u'motion', u'ethanolg']
[u'polic', u'consid', u'crime', u'commiss', u'solv', u'murder']
[u'polic', u'critic', u'crime', u'commiss', u'propos']
[u'polic', u'evid', u'station', u'hand', u'murder', u'trial']
[u'polic', u'play', u'sydney', u'rail', u'threat']
[u'polic', u'probe', u'fatal', u'accid', u'involv', u'child', u'driver']
[u'polic', u'relat', u'liber', u'strain']
[u'polic', u'tap', u'alleg', u'peopl', u'smuggler', u'phone', u'court']
[u'polic', u'think', u'involv', u'girl']
[u'power', u'plan', u'indigen', u'communiti']
[u'probe', u'begin', u'forc', u'land']
[u'govt', u'support', u'wast', u'water', u'plan']
[u'pathologist', u'shortag', u'affect', u'servic']
[u'radcliff', u'attempt', u'doubl', u'world']
[u'ramanauska', u'begin', u'cancer', u'treatment']
[u'ranger', u'hungri', u'champion', u'leagu', u'say', u'mcleish']
[u'rann', u'call', u'murray', u'crisi', u'meet']
[u'report', u'encourag', u'uriarra', u'rebuild']
[u'report', u'highlight', u'threat', u'marin', u'debri']
[u'resid', u'quiz', u'reef', u'plan']
[u'retir', u'bemoan', u'cost', u'age', u'care']
[u'presid', u'visit', u'ail', u'veteran']
[u'santoro', u'continu', u'assault']
[u'search', u'continu', u'miss', u'fisherman']
[u'search', u'continu', u'miss', u'teen']
[u'season', u'fleme']
[u'senat', u'investig', u'bolkus', u'decis']
[u'serna', u'oust', u'maleeva', u'dokic', u'advanc', u'toronto']
[u'offend', u'program', u'better', u'late']
[u'social', u'problem', u'extra', u'task', u'school']
[u'soldier', u'begin', u'live', u'fire', u'exercis']
[u'southern', u'eye', u'bowen', u'real', u'estat']
[u'south', u'sydney', u'reliev', u'litig']
[u'stirl', u'consid', u'alcohol', u'measur']
[u'student', u'angri', u'ax', u'program']
[u'support', u'wool', u'industri', u'grower', u'levi']
[u'suspend', u'driver', u'hospit', u'crash']
[u'sydney', u'charg', u'slaveri', u'crime']
[u'sydney', u'train', u'station', u'alert']
[u'miner', u'safer', u'work', u'hour']
[u'kilda', u'expect', u'warn', u'messag']
[u'teen', u'deni', u'plan', u'kiss', u'tell', u'warn']
[u'teen', u'face', u'court', u'theft', u'charg']
[u'thoroughbr', u'park', u'triall', u'synthet', u'race']
[u'face', u'court', u'missil', u'plot']
[u'tiger', u'fear', u'factor', u'lose', u'bite']
[u'soon', u'benefit', u'insur', u'reform']
[u'toronto', u'museum', u'explor', u'histori', u'contracept']
[u'townsvill', u'aim', u'ocean', u'assess', u'leader']
[u'townsvill', u'await', u'dengu', u'clear']
[u'trawler', u'scallop', u'catch']
[u'truss', u'wont', u'rule', u'futur']
[u'unit', u'complet', u'ronaldo', u'sign']
[u'britain', u'near', u'libya', u'lockerbi', u'deal']
[u'soldier', u'kill', u'blast', u'near', u'baghdad']
[u'soldier', u'kill', u'iraq', u'traffic', u'accid']
[u'vanston', u'defend', u'decis', u'disabl', u'student']
[u'smoke', u'ban', u'tabcorp', u'profit']
[u'wallabi', u'battl', u'injuri', u'concern']
[u'opposit', u'criticis', u'ambul', u'respons', u'time']
[u'polic', u'plan', u'industri', u'campaign']
[u'warn', u'forestri', u'loom']
[u'struggl', u'oper']
[u'water', u'shortag', u'toll', u'irrig']
[u'well', u'commit', u'marin', u'park', u'plan']
[u'wenger', u'impoverish', u'gunner', u'need']
[u'wheatbelt', u'farmer', u'dive', u'aquacultur']
[u'wild', u'weather', u'lash', u'victoria']
[u'coke', u'record', u'healthi', u'profit']
[u'wollongong', u'export', u'promot', u'aust', u'win', u'japan']
[u'wood', u'return', u'ireland', u'wale', u'game']
[u'injur', u'greec', u'quak']
[u'boost', u'countri', u'town', u'infrastructur']
[u'kill', u'heatwav', u'french', u'offici']
[u'dead', u'south', u'korean', u'chopper', u'crash']
[u'criticis', u'industri', u'regul']
[u'act', u'flora', u'fauna', u'make', u'comeback']
[u'hour', u'servic', u'review']
[u'semi', u'final', u'intern']
[u'albani', u'hop', u'fli', u'train', u'centr', u'plan']
[u'alston', u'reject', u'telstra', u'survey', u'result']
[u'ansel', u'achiev', u'signific', u'profit', u'turnaround']
[u'announc', u'prefer', u'secur']
[u'appoint', u'westpac', u'extend']
[u'aquacultur', u'develop', u'urg', u'commerci']
[u'arab', u'televis', u'channel', u'notic']
[u'arctic', u'face', u'meltdown', u'studi']
[u'arson', u'attack', u'rock', u'shop']
[u'artssa', u'chief', u'quit', u'contract']
[u'reject', u'union', u'claim', u'worker', u'notic']
[u'atsic', u'call', u'govt', u'account', u'polici']
[u'aust', u'macedonian', u'allow', u'return', u'greec']
[u'australian', u'swim', u'consid', u'action']
[u'australian', u'unlik', u'head', u'pacif', u'forum']
[u'author', u'shut', u'fake', u'bank', u'websit']
[u'averag', u'week', u'wage', u'top']
[u'barbosa', u'win', u'seventh', u'stage', u'tour', u'portug']
[u'suspend', u'flight', u'saudi', u'secur', u'threat']
[u'pressur', u'hutton', u'inquiri']
[u'beckham', u'sweat', u'makelel', u'open']
[u'beechwood', u'school', u'teacher', u'meet']
[u'blake', u'readi', u'roddick']
[u'bomb', u'blast', u'indian', u'claim', u'live']
[u'boomer', u'lose', u'seri', u'lithuania']
[u'bremer', u'say', u'troop', u'sit', u'duck']
[u'bronco', u'colt', u'leav', u'garden', u'citi', u'comp']
[u'feder', u'region', u'boost']
[u'firefight', u'vehicl', u'undergo', u'trial']
[u'legal', u'action', u'forc', u'council']
[u'call', u'sale']
[u'caravan', u'park', u'oper', u'land', u'rethink']
[u'crash', u'leav', u'teen', u'dead']
[u'lover', u'gear', u'marathon']
[u'celebr', u'worship', u'danger', u'studi']
[u'ceruti', u'comment', u'crisi', u'manag', u'bannan']
[u'charg', u'lay', u'terror', u'plot']
[u'chelsea', u'begin', u'easi', u'champion', u'leagu']
[u'clark', u'lash', u'labor', u'democrat', u'lack', u'support']
[u'clark', u'suspens', u'spark', u'call', u'legisl']
[u'climat', u'chang', u'see', u'save', u'reef']
[u'coalit', u'backbench', u'greater', u'ethanol']
[u'cole', u'myer', u'record', u'profit', u'jump']
[u'communiti', u'support', u'furnitur', u'worker']
[u'compens', u'deal', u'announc', u'abus', u'depend']
[u'virus', u'help', u'desk', u'line', u'run']
[u'concern', u'mount', u'propos', u'polic', u'work', u'ban']
[u'council', u'await', u'spenc', u'respons']
[u'councillor', u'highlight', u'plan']
[u'council', u'seek', u'advic', u'subdivis', u'decis']
[u'council', u'stop', u'protest', u'rail', u'issu']
[u'council', u'manag', u'retir', u'villag']
[u'cpsu', u'plan', u'action', u'educ', u'cut']
[u'darwin', u'council', u'consid', u'wider', u'market']
[u'darwin', u'council', u'criticis', u'restrict', u'meet']
[u'dfat', u'reissu', u'travel', u'warn', u'saudi', u'arabia']
[u'drought', u'blame', u'wool', u'slump']
[u'give', u'week', u'millennium', u'train', u'problem']
[u'ethanol', u'green', u'fuel', u'option', u'labor']
[u'europ', u'wait', u'winner', u'windfal', u'lotteri']
[u'failur', u'flush', u'incur', u'fine']
[u'farmer', u'storag', u'fear']
[u'farmer', u'enjoy', u'downpour']
[u'farmer', u'receiv', u'need', u'rain']
[u'feder', u'ferrero', u'exit', u'cincinnati']
[u'govt', u'urg', u'biofuel', u'industri']
[u'station', u'squeez', u'lead', u'call', u'land']
[u'kill', u'chechen', u'blast']
[u'fund', u'ramp', u'boat', u'facil']
[u'blast', u'put', u'worker', u'hospit']
[u'explor', u'consid', u'environ']
[u'genet', u'studi', u'highlight', u'plankton', u'effici']
[u'german', u'fail', u'alcohol', u'test', u'pass']
[u'gladston', u'host', u'terror', u'exercis']
[u'good', u'rain', u'predict', u'central', u'west']
[u'govt', u'accus', u'clark', u'furor', u'undermin']
[u'govt', u'provid', u'accus', u'discriminatori']
[u'govt', u'turn', u'ethanol', u'debat', u'opposit']
[u'green', u'flight', u'concern']
[u'group', u'seek', u'truss', u'live', u'murray', u'meet']
[u'gunmen', u'threaten', u'collabor', u'iraq']
[u'head', u'collis', u'snowi', u'mountain']
[u'hewitt', u'withdraw', u'cincinnati']
[u'high', u'court', u'rebuk', u'dept', u'pursu', u'masri', u'case']
[u'hous', u'compo', u'preced']
[u'howard', u'welcom', u'keke', u'surrend']
[u'hungri', u'liberian', u'storm', u'port']
[u'hunter', u'neurologist', u'choos', u'advisori', u'council']
[u'irrig', u'form', u'council']
[u'isol', u'attack', u'jeopardis', u'east', u'ceas']
[u'isra', u'soldier', u'kill', u'islam', u'jihad', u'leader']
[u'jamaica', u'announc', u'world', u'champ', u'squad']
[u'joey', u'argentina']
[u'journalist', u'tri', u'distanc', u'dodgi']
[u'judg', u'urg', u'compass', u'detain', u'iranian']
[u'keke', u'custodi', u'intervent', u'forc']
[u'kingston', u'councillor', u'seek', u'local', u'govt']
[u'labor', u'issu', u'warn', u'privatis', u'telstra']
[u'labor', u'return', u'ethanol', u'money', u'dirti']
[u'labor', u'return', u'donat', u'ethanol', u'compani']
[u'lack', u'fund', u'dent', u'local', u'film', u'product']
[u'lazio', u'feet', u'beat', u'benfica']
[u'lib', u'workshop', u'way', u'govern']
[u'libya', u'sign', u'lockerbi', u'deal']
[u'cop', u'fine', u'illeg', u'fish']
[u'die']
[u'get', u'year', u'doubl', u'murder']
[u'question', u'gunnedah', u'sieg']
[u'face', u'court', u'drug', u'make', u'charg']
[u'stand', u'trial', u'warn', u'blackmail', u'alleg']
[u'mcleish', u'optimist', u'despit', u'ranger', u'draw']
[u'meet', u'fail', u'resolv', u'woe']
[u'milit', u'urg', u'surrend', u'weapon', u'wake']
[u'miner', u'move', u'role']
[u'montreal', u'vow', u'save', u'grand', u'prix']
[u'undecid', u'futur']
[u'mysteri', u'surround', u'tasmanian', u'statu']
[u'netbal', u'player', u'shoot', u'footi', u'plan']
[u'concern', u'child', u'leukaemia', u'survivor']
[u'news', u'corp', u'post', u'record', u'profit']
[u'news', u'corp', u'share', u'drop', u'valu', u'despit', u'record']
[u'nextgen', u'collaps', u'take', u'toll', u'leighton', u'profit']
[u'nickel', u'drill', u'prove', u'posit']
[u'nigeria', u'refus', u'hand', u'taylor']
[u'kill', u'india', u'go', u'secur', u'alert']
[u'northern', u'win', u'child', u'care', u'place']
[u'north', u'council', u'warn', u'fish', u'kill', u'threat']
[u'prais', u'polic', u'rail', u'respons']
[u'polic', u'accus', u'overreact', u'rail', u'threat']
[u'public', u'servant', u'grant', u'stamp', u'duti', u'save']
[u'welcom', u'weather']
[u'olymp', u'game', u'invit', u'issu']
[u'dead', u'wound', u'protest', u'iraq']
[u'pacif', u'nation', u'expect', u'sign', u'servic']
[u'pair', u'fin', u'drug', u'charg']
[u'peacekeep', u'control', u'monrovia', u'port']
[u'pedestrian', u'succumb', u'injuri']
[u'miss', u'point', u'indigen', u'issu', u'professor']
[u'polic', u'parent', u'tackl', u'drive']
[u'polic', u'concern', u'underag', u'drive', u'incid']
[u'polic', u'diver', u'search', u'miss', u'teen']
[u'polic', u'hunt']
[u'polic', u'rule', u'rape', u'link']
[u'polic', u'search', u'refug', u'miss', u'woman']
[u'polic', u'unabl', u'explain', u'martin', u'case', u'delay']
[u'portabl', u'missil', u'immedi', u'threat', u'aust']
[u'port', u'strength']
[u'pratt', u'toronto']
[u'public', u'choos', u'prefer', u'choic', u'highway', u'upgrad']
[u'public', u'gather', u'talk', u'council', u'merger']
[u'push', u'fuel', u'ethanol']
[u'govt', u'crowd', u'emerg', u'ward']
[u'teacher', u'disput']
[u'quambatook']
[u'raider', u'suffer', u'injuri', u'blow']
[u'rain', u'close', u'birdsvill', u'track']
[u'rainfal', u'bring', u'mix', u'bless', u'break', u'hill']
[u'rain', u'need', u'dampen', u'earli', u'risk']
[u'rain', u'water', u'restrict']
[u'research', u'partnership', u'improv', u'aborigin', u'health']
[u'resid', u'urg', u'bite', u'mossi', u'number']
[u'road', u'safeti', u'strip', u'break']
[u'roger', u'play', u'spain']
[u'rossi', u'protect', u'dwindl', u'resourc']
[u'russia', u'strong', u'squad', u'world']
[u'sale', u'slump', u'send', u'men', u'magazin', u'break']
[u'samudra', u'verdict', u'month']
[u'scientist', u'powerless', u'tassi', u'devil', u'virus']
[u'season', u'john']
[u'selim', u'lose', u'court', u'limit', u'liquid']
[u'assault', u'spark', u'polic', u'remind']
[u'shire', u'combin', u'tourism', u'effort']
[u'add', u'aussi', u'world', u'champ', u'team']
[u'smith', u'famili', u'attempt', u'boost', u'sponsorship']
[u'socceroo', u'secur', u'jamaica', u'clash']
[u'stair', u'climb', u'wheelchair', u'win', u'approv']
[u'surf', u'club', u'locat', u'unresolv']
[u'survey', u'highlight', u'region', u'secur', u'concern']
[u'sydney', u'council', u'recognis', u'coupl']
[u'sydney', u'rail', u'threat', u'respons', u'appropri', u'polic']
[u'task', u'forc', u'defend', u'erad', u'scheme']
[u'teen', u'die', u'main', u'street', u'crash']
[u'telstra', u'say', u'wont', u'abandon', u'bush']
[u'tendulkar', u'issu', u'court', u'notic']
[u'thiev', u'sting', u'beehiv', u'owner', u'honey', u'shortag']
[u'thinker', u'turn', u'drove', u'idea', u'forum']
[u'timber', u'plant', u'boost', u'beaufort', u'job']
[u'pleas', u'offic', u'effort']
[u'toronto', u'win', u'clijster', u'henin', u'hardenn']
[u'tourism', u'industri', u'hop', u'intern']
[u'tourist', u'number', u'sar', u'impact', u'wan']
[u'truck', u'crash', u'leak', u'fuel', u'hunter', u'river']
[u'boost', u'cunnamulla', u'tourism']
[u'dead', u'shed']
[u'soldier', u'kill', u'iraq']
[u'suspend', u'flight', u'saudi', u'arabia']
[u'unpredict', u'championship', u'prospect']
[u'armi', u'apologis', u'shiit', u'cleric', u'clash']
[u'spend', u'spree', u'caus', u'borrow', u'worri']
[u'team', u'take', u'chanc', u'puerto', u'rico']
[u'troop', u'arriv', u'liberia']
[u'vow', u'fulfil', u'govt', u'crime', u'compens']
[u'premier', u'deni', u'breach', u'whistleblow', u'law']
[u'west', u'african', u'peacekeep', u'deploy', u'monrovia', u'port']
[u'widow', u'fascist', u'leader', u'die']
[u'continu', u'crazi', u'summer']
[u'increas', u'product', u'north']
[u'wood', u'hunt', u'major', u'open', u'hill']
[u'wood', u'hunt', u'major', u'year']
[u'veteran', u'undergo', u'surgeri']
[u'yeppoon', u'properti', u'price', u'soar']
[u'aborigin', u'urg', u'donat', u'bone', u'marrow']
[u'accus', u'chang', u'plea', u'receptionist', u'murder', u'case']
[u'post', u'budget', u'surplus']
[u'adelaid', u'shop', u'centr', u'creat', u'job']
[u'agforc', u'back', u'compulsori', u'ethanol', u'push']
[u'agreement', u'reach', u'safeti']
[u'alcohol', u'restrict', u'loom']
[u'black', u'bledislo', u'prize']
[u'allenbi', u'ace', u'hole', u'hill']
[u'qaeda', u'suspect', u'kill', u'battl']
[u'alston', u'reject', u'telstra', u'sale', u'survey', u'result']
[u'amnesti', u'call', u'nauru', u'asylum', u'seeker', u'access']
[u'anim', u'welfar', u'group', u'support', u'plastic', u'plan']
[u'apec', u'secur', u'review', u'hambali', u'arrest']
[u'armi', u'investig', u'cadet', u'cheat', u'alleg']
[u'arrest', u'jakarta', u'hotel', u'bomb']
[u'aspirin', u'increas', u'miscarriag', u'risk', u'studi']
[u'auckland', u'rain', u'trim', u'black', u'wing']
[u'aussi', u'market', u'end', u'week', u'steadi']
[u'australia', u'largest', u'diamond', u'display']
[u'author', u'consid', u'water', u'save', u'measur']
[u'bali', u'bomb', u'victim', u'say', u'govt', u'shouldnt']
[u'bangladesh', u'khale', u'mahmud', u'captain']
[u'barbosa', u'win', u'eighth', u'stage', u'tour', u'portug']
[u'beckham', u'star', u'player', u'say', u'pele']
[u'bendigo', u'mine', u'fight', u'econom', u'doubt']
[u'blood', u'shortag', u'spark', u'plea', u'donat']
[u'bodi', u'believ', u'miss', u'teen']
[u'bolton', u'jardel', u'miss', u'trafford', u'debut']
[u'bone', u'marrow', u'registri', u'concern', u'lack']
[u'boomer', u'face', u'russia', u'heal']
[u'braveri', u'award', u'suggest', u'good', u'samaritan']
[u'brisban', u'artist', u'win', u'richest', u'indigen', u'prize']
[u'break', u'hill', u'share', u'health', u'research', u'fund']
[u'broom', u'celebr', u'cultur', u'pearl', u'histori']
[u'brumbi', u'smith', u'face', u'court', u'charg']
[u'busi', u'group', u'plastic', u'levi']
[u'butcher', u'hussain', u'ton', u'england', u'control']
[u'californian', u'winemak', u'blow', u'cork']
[u'balanc', u'south', u'east', u'develop', u'plan']
[u'campbel', u'face', u'video', u'trial']
[u'canadian', u'grand', u'prix', u'cancel', u'offici']
[u'canegrow', u'welcom', u'ethanol', u'push']
[u'crash', u'leav', u'teen', u'dead']
[u'carnag', u'road', u'prompt', u'driver']
[u'chamber', u'knock', u'door', u'pari']
[u'chang', u'get', u'open', u'wild', u'card']
[u'chebii', u'hold', u'kenyan', u'hop']
[u'claim', u'atsic', u'detract', u'corp', u'work']
[u'clijster', u'stun', u'toronto']
[u'closur', u'outcri', u'overshadow', u'tenant', u'safeti']
[u'club', u'chief', u'meet', u'fear']
[u'broaden', u'foster', u'care', u'inquiri']
[u'clear', u'cambooya', u'council']
[u'colleg', u'welcom', u'educ', u'centr', u'open']
[u'committe', u'tell', u'abl', u'deal', u'chemic']
[u'communiti', u'consid', u'forest', u'manag']
[u'compani', u'need', u'iron', u'project']
[u'concern', u'rais', u'possibl', u'apec', u'attack']
[u'convict', u'polic', u'killer', u'face', u'court', u'inquiri']
[u'coria', u'cruis', u'cincinnati']
[u'councillor', u'air', u'visitor', u'centr', u'cost', u'concern']
[u'council', u'seek', u'infrastructur', u'fund']
[u'countdown', u'tripl', u'organ', u'recipi', u'homecom']
[u'countri', u'consid', u'back', u'korean', u'entri']
[u'creditor', u'circl', u'troubl', u'sydney', u'school']
[u'cricket', u'australia', u'review', u'anti', u'dope', u'polici']
[u'croc', u'announc', u'sign']
[u'crow', u'lose']
[u'curti', u'bring', u'earth']
[u'custom', u'continu', u'pursuit', u'fish', u'boat']
[u'hop', u'attract', u'younger', u'member']
[u'danc', u'butcher', u'scoop', u'advertis', u'award']
[u'danver', u'emerg', u'successor', u'gunnel']
[u'david', u'jone', u'suffer', u'quarter', u'downturn']
[u'dept', u'defend', u'murray', u'river', u'water', u'trade', u'chang']
[u'deputi', u'confid', u'water', u'reform', u'deal']
[u'share', u'fall', u'wake', u'sale', u'figur']
[u'dont', u'ditch', u'guard', u'lampard', u'tell', u'chelsea']
[u'drought', u'push', u'meat', u'price']
[u'dutch', u'flood', u'waterway', u'seawat', u'beat', u'drought']
[u'eastman', u'storm', u'court']
[u'emot', u'return', u'avellino', u'hear', u'continu']
[u'encourag', u'signal', u'economi']
[u'escarp', u'draft', u'plan', u'near', u'complet']
[u'fear', u'woe', u'wider', u'impact']
[u'govt', u'seek', u'woomera', u'nuclear', u'dump', u'licenc']
[u'council', u'respond', u'reform', u'plan']
[u'flight', u'celebr', u'fli', u'doctor', u'birthday']
[u'foot', u'mouth', u'exercis', u'declar', u'success']
[u'forestri', u'promis', u'plan', u'wont', u'hurt', u'environ']
[u'malaita', u'eagl', u'forc', u'member', u'arm']
[u'franc', u'launch', u'heatwav', u'crisi', u'plan']
[u'franc', u'put', u'condit', u'lockerbi', u'deal']
[u'project', u'near', u'start']
[u'german', u'player', u'absenc', u'cloud', u'champion', u'trophi']
[u'giant', u'killer', u'wasp', u'invad', u'state', u'depart']
[u'gold', u'coast', u'indi', u'ahead']
[u'govt', u'refus', u'bali', u'victim', u'lump', u'payment']
[u'green', u'scheme', u'get', u'longer', u'life']
[u'green', u'voic', u'port', u'expans', u'plan', u'fear']
[u'group', u'highlight', u'region', u'youth', u'suicid']
[u'hagan', u'thank', u'john', u'season', u'effort']
[u'hambali', u'arrest', u'thailand', u'report']
[u'hambali', u'captur', u'make', u'region', u'safer', u'govt']
[u'head', u'injuri', u'forc', u'britt', u'quit']
[u'health', u'crisi', u'talk', u'underway', u'today']
[u'hope', u'partnership', u'deal', u'boost', u'indigen']
[u'readi', u'wear', u'open', u'crown', u'roddick']
[u'iceland', u'begin', u'whale', u'hunt', u'year']
[u'ident', u'crash', u'victim', u'releas']
[u'india', u'plan', u'mission', u'moon']
[u'injuri', u'cost', u'lomu', u'mehrten', u'chanc']
[u'inquest', u'hear', u'miss', u'child', u'probabl', u'murder']
[u'iranian', u'famili', u'releas', u'woomera']
[u'israel', u'free', u'palestinian']
[u'isra', u'palestinian', u'hold', u'talk', u'rescu']
[u'jakovich', u'aspir', u'club']
[u'japan', u'mark', u'year', u'surrend']
[u'cut', u'uncertain', u'merger', u'review', u'continu']
[u'job', u'scheme', u'get', u'boost']
[u'judg', u'avellino', u'decis']
[u'judg', u'hanson', u'fraud', u'trial', u'week']
[u'kefu', u'bledislo', u'decid']
[u'kemp', u'agre', u'boost', u'kakadu', u'entri']
[u'kimmorley', u'replac', u'injur', u'john', u'anderson']
[u'knight', u'stun', u'warrior']
[u'knitwear', u'outlet', u'hit', u'plan', u'breach', u'claim']
[u'labor', u'open', u'nomin', u'nation', u'secretari']
[u'launceston', u'seek', u'cardiologist']
[u'liber', u'parti', u'seek', u'candid', u'bendigo', u'seat']
[u'liberian', u'search', u'food', u'famili']
[u'liberia', u'sanction', u'lift', u'offici']
[u'lightn', u'strike', u'caus', u'massiv', u'blackout']
[u'light', u'start', u'canada']
[u'lobster', u'industri', u'air', u'fear']
[u'lockyer', u'fail', u'fit', u'test']
[u'longreach', u'council', u'deliv', u'budget']
[u'magpi', u'outplay', u'crow']
[u'makelel', u'order', u'rest', u'doctor', u'agent']
[u'citi', u'score', u'fli', u'start', u'uefa']
[u'die', u'motorcycl', u'crash']
[u'die', u'suspici', u'hous']
[u'hospit', u'crossbow', u'wind']
[u'good', u'behaviour', u'bond', u'mail', u'attack']
[u'court', u'drink', u'drive', u'offenc']
[u'prey', u'elder', u'jail', u'year']
[u'marijuana', u'crop', u'uncov', u'hous']
[u'martu', u'peopl', u'hesit', u'land', u'transfer']
[u'medic', u'fail', u'suppress', u'critic', u'report']
[u'melbourn', u'teacher', u'win', u'teach', u'award']
[u'meninga', u'name', u'skipper', u'team', u'decad']
[u'meningococc', u'case', u'confirm', u'gold', u'coast']
[u'mickelberg', u'seek', u'fund', u'test', u'mint', u'swindl']
[u'microb', u'surviv', u'boil', u'water', u'breath', u'iron', u'report']
[u'million', u'power', u'canada']
[u'monti', u'suffer', u'disastr', u'start']
[u'fund', u'seek', u'fight', u'social', u'woe']
[u'fund', u'seek', u'tackl', u'alcohol', u'woe']
[u'nation', u'school', u'health', u'project']
[u'chief', u'limeston', u'coast', u'tourism']
[u'school', u'option']
[u'team', u'player', u'crocodil', u'season']
[u'york', u'offici', u'say', u'power', u'grid', u'overload']
[u'commut', u'face', u'price', u'hike']
[u'okocha', u'languag', u'skill', u'earn', u'bolton', u'captainci']
[u'pacif', u'forum', u'leader', u'sign', u'solomon', u'forc']
[u'pacif', u'island', u'forum', u'deadlock']
[u'pair', u'crash']
[u'pampl', u'lead']
[u'payphon', u'locat', u'guidelin', u'review']
[u'clear', u'host', u'bangladesh', u'test', u'karachi']
[u'person', u'die', u'light', u'plane', u'crash']
[u'go', u'despit', u'power', u'problem']
[u'phelp', u'push', u'thorp', u'greater', u'height', u'talbot']
[u'phillip', u'saint']
[u'factori', u'close', u'job', u'lose']
[u'pilot', u'practis', u'aerobat', u'fatal', u'crash']
[u'plastic', u'levi', u'win', u'public', u'support', u'brown', u'say']
[u'hail', u'hambali', u'arrest']
[u'polic', u'continu', u'snowi', u'mountain', u'drug', u'crackdown']
[u'polic', u'crack', u'underag', u'driver']
[u'policeman', u'attack', u'port', u'augusta']
[u'polic', u'woman', u'kill', u'crash']
[u'polic', u'search', u'assault']
[u'polic', u'extradit', u'suspect', u'home', u'invas', u'case']
[u'port', u'author', u'announc', u'chief', u'execut']
[u'port', u'player', u'return']
[u'portsmouth', u'throw', u'bosnich', u'lifelin']
[u'power', u'start', u'flow', u'america']
[u'price', u'dispar', u'fuel', u'plan', u'group']
[u'prison', u'suspect', u'cut', u'brisban']
[u'prison', u'industri', u'action']
[u'progress', u'footbal', u'club', u'home']
[u'qanta', u'plan', u'restructur']
[u'qanta', u'staff', u'oppos', u'random', u'drug', u'test']
[u'govt', u'ask', u'sugarcan', u'plan']
[u'govt', u'ask', u'freez', u'brumbi', u'remov']
[u'lead', u'australian', u'tourism', u'rebound']
[u'quarri', u'plan', u'spark', u'rezon', u'issu']
[u'rare', u'shrub', u'daisi', u'make', u'threaten', u'speci', u'list']
[u'reef', u'report', u'prompt', u'urgent', u'action']
[u'reef', u'tourism', u'oper', u'hop', u'nemo', u'profit']
[u'research', u'dire', u'predict', u'reef']
[u'resid', u'quiz', u'council', u'futur']
[u'resourc', u'centr', u'jerramungup']
[u'roddick', u'down', u'blake', u'cincinnati']
[u'schwarzenegg', u'beef', u'campaign', u'governor']
[u'search', u'begin', u'miss']
[u'search', u'escap', u'qaeda', u'suspect']
[u'world', u'shark', u'case', u'hit', u'staff', u'moral']
[u'second', u'plane', u'crash', u'land', u'near', u'sydney']
[u'septemb', u'trial', u'revisit', u'hijack', u'love', u'stori']
[u'korea', u'optimist', u'breakthrough']
[u'stephen', u'lead', u'investor', u'south', u'east', u'tour']
[u'strong', u'support', u'introduc', u'liquor', u'accord']
[u'strong', u'support', u'pacif', u'polic', u'train', u'program']
[u'talli', u'hop', u'lead', u'tour']
[u'tarantula', u'abandon', u'mexico', u'airport']
[u'govt', u'fox', u'pest', u'photo']
[u'govt', u'urg', u'hold', u'child', u'abus', u'inquiri']
[u'lib', u'promis', u'home', u'buyer', u'stamp', u'duti', u'relief']
[u'town', u'plan', u'lure', u'sydney', u'tourist']
[u'tesk', u'chase', u'diaz', u'sylvania']
[u'tesk', u'trail', u'ohio']
[u'titl', u'race', u'team', u'say', u'henri']
[u'townsvill', u'award', u'upgrad', u'canal']
[u'truck', u'crash', u'albani', u'highway']
[u'trucki', u'clear', u'employ', u'skin', u'cancer']
[u'plan', u'overhaul', u'afghanistan', u'oper']
[u'quiet', u'hambali', u'whereabout']
[u'varieti', u'club', u'gear', u'play', u'gear', u'handov']
[u'face', u'blackout']
[u'wallabi', u'abandon', u'tradit', u'run', u'game', u'jone']
[u'marron', u'season', u'close']
[u'teacher', u'plan', u'week', u'protest']
[u'water', u'plan', u'rais', u'indigen', u'concern']
[u'water', u'weed', u'threaten', u'environ']
[u'whan', u'offer', u'bombala', u'merger', u'assur']
[u'widespread', u'drug', u'raid', u'result', u'arrest']
[u'wind', u'farm', u'promis', u'job']
[u'women', u'concern', u'specialist', u'decis']
[u'wood', u'continu', u'major', u'problem']
[u'world', u'poll', u'name', u'isaac', u'newton', u'greatest', u'briton']
[u'soldier', u'kill', u'landslid', u'nepal']
[u'dead', u'injur', u'motorbik', u'accid']
[u'abc', u'henderson', u'die']
[u'bushfir', u'fund', u'fair', u'distribut']
[u'actor', u'sizemor', u'guilti', u'heidi', u'fleiss', u'case']
[u'ship', u'dock', u'liberian', u'capit']
[u'black', u'lead', u'wallabi', u'half', u'time']
[u'anwar', u'announc', u'retir', u'cricket']
[u'aussi', u'falter', u'micheel', u'grab', u'uspga', u'lead']
[u'australian', u'head', u'pacif', u'forum']
[u'australia', u'largest', u'diamond', u'name']
[u'australia', u'win', u'world', u'debat', u'crown']
[u'avellino', u'return', u'help', u'grind', u'darter']
[u'bettong', u'return', u'mainland']
[u'biaggi', u'claim', u'provision', u'pole', u'record']
[u'birmingham', u'boss', u'bruce', u'sign', u'year', u'contract']
[u'boomer', u'russia']
[u'bowyer', u'prim', u'face', u'leed', u'hate']
[u'brisban', u'polic', u'charg', u'murder']
[u'british', u'polic', u'charg', u'anti', u'terror', u'raid']
[u'british', u'tourist', u'kill', u'road', u'crash']
[u'budget', u'squeez', u'prompt', u'swedish', u'armi']
[u'burma', u'replac', u'dollar', u'euro', u'trade']
[u'bush', u'call', u'upgrad', u'power', u'grid']
[u'replac', u'sydney', u'canberra', u'rail', u'rout']
[u'californian', u'governor', u'game', u'get', u'underway']
[u'chechen', u'rebel', u'kill', u'russian', u'soldier']
[u'chelsea', u'invest', u'million', u'youth']
[u'china', u'jolt', u'strong', u'earthquak']
[u'convent', u'centr', u'question']
[u'cyber', u'squatter', u'lose', u'viagra', u'websit']
[u'death', u'toll', u'climb', u'itali', u'heatwav']
[u'diabet', u'rise', u'death', u'rate', u'drop']
[u'diaz', u'extend', u'lead', u'lpga', u'kroger', u'classic']
[u'england', u'rock', u'south', u'africa']
[u'fergi', u'defend', u'drop', u'barthez']
[u'feyenoord', u'fin', u'refus', u'releas', u'player']
[u'firework', u'accid', u'injur']
[u'kaiser', u'score', u'feder']
[u'frustrat', u'tiger', u'warn', u'dont', u'write']
[u'gold', u'reward', u'birmingham', u'bruce']
[u'govt', u'introduc', u'break']
[u'hama', u'protestor', u'demand', u'releas', u'prison']
[u'hambali', u'question', u'secret', u'locat']
[u'henin', u'hardenn', u'switch', u'toronto', u'light']
[u'hockeyroo', u'maintain', u'unbeaten', u'european']
[u'amin', u'die', u'saudi', u'hospit']
[u'impress', u'zurich', u'win', u'ayhan', u'dever']
[u'inquiri', u'order', u'famili', u'payment', u'wealthi']
[u'inspir', u'kirtley', u'put', u'england', u'control']
[u'iraq', u'pipelin', u'turkey']
[u'israel', u'reject', u'refuge', u'right', u'return']
[u'jakarta', u'say', u'hambali', u'tri', u'indonesia']
[u'japan', u'bomb', u'survivor', u'south', u'korea']
[u'joint', u'bodi', u'probe', u'power', u'blackout']
[u'joint', u'task', u'forc', u'determin', u'caus', u'power', u'cut']
[u'jone', u'stress', u'bledislo', u'import']
[u'kewel', u'give', u'licenc', u'roam', u'liverpool']
[u'kidman', u'pick', u'movi', u'honour']
[u'labor', u'swoop', u'health', u'insur', u'figur']
[u'lawyer', u'sue', u'oldfield', u'terror', u'websit']
[u'liber', u'betray']
[u'libya', u'accus', u'franc', u'blackmail', u'lockerbi']
[u'libya', u'own', u'lockerbi', u'bomb']
[u'liverpool', u'reveng', u'spender', u'chelsea']
[u'charg', u'murder', u'fatal', u'hous']
[u'dead', u'ballina', u'stand']
[u'fin', u'shoot', u'condor']
[u'unit', u'spirit', u'good']
[u'massiv', u'collis', u'involv', u'motorcyclist']
[u'mcleish', u'wont', u'guarante', u'ferguson', u'stay']
[u'mcrae', u'swan', u'match']
[u'mickelson', u'pampl', u'stumbl', u'wood', u'stir']
[u'microsoft', u'await', u'renew', u'worm', u'attack']
[u'accid', u'report', u'call', u'equip', u'review']
[u'missionari', u'kill', u'spi', u'rebel', u'chief']
[u'peacekeep', u'land', u'liberia', u'talk', u'stumbl']
[u'mother', u'advertis']
[u'moy', u'keen', u'jeffer', u'return', u'toffe']
[u'negoti', u'continu', u'stop', u'factori', u'lockout']
[u'nepal', u'join']
[u'wicket', u'kasprowicz', u'claim', u'season', u'best']
[u'rail', u'welcom', u'fare', u'rise']
[u'host', u'intern', u'dart', u'tournament']
[u'pacif', u'code', u'tackl', u'corrupt']
[u'pacif', u'leader', u'discuss', u'chief']
[u'pakistan', u'begin', u'spill', u'clean']
[u'palestinian', u'hail', u'deal', u'west', u'bank', u'pullout']
[u'polic', u'post', u'launch', u'solomon']
[u'pompey', u'todorov', u'rule', u'season']
[u'poor', u'visibl', u'ground', u'nigerian', u'reinforc']
[u'port', u'keen', u'snatch', u'spot']
[u'power', u'return', u'york']
[u'power', u'slowli', u'return', u'north', u'america']
[u'elect', u'hold', u'foster', u'care', u'inquiri']
[u'indigen', u'communiti', u'alcohol', u'free']
[u'ranieri', u'dismiss', u'chelsea', u'titl', u'chanc']
[u'rann', u'decri', u'govt', u'nuclear', u'dump']
[u'reef', u'plan', u'start', u'manag']
[u'roddick', u'set', u'semi', u'final', u'clash', u'mirnyi']
[u'saint', u'banish', u'blue', u'eagl', u'hold', u'cat', u'hawk']
[u'world', u'put', u'injur', u'shark']
[u'second', u'person', u'charg', u'murder', u'fatal']
[u'shark', u'extinguish', u'dragon', u'tiger', u'cowboy']
[u'skew', u'gender', u'ratio', u'leav', u'chines', u'bird']
[u'smith', u'pledg', u'loyalti', u'leed']
[u'stoner', u'break', u'bone', u'crash']
[u'talk', u'timet', u'isra', u'pullback']
[u'govt', u'dismiss', u'teach', u'union', u'claim']
[u'polic', u'offic', u'guilti', u'assault']
[u'saffron', u'grower', u'win', u'busi', u'gong']
[u'termin', u'live', u'arni']
[u'tiger', u'good', u'bronco']
[u'tradit', u'owner', u'australia', u'biggest']
[u'kill', u'horrif', u'motorcycl', u'accid']
[u'propos', u'lift', u'libya', u'sanction']
[u'ullrich', u'motiv', u'brake', u'bettini']
[u'ship', u'arriv', u'liberian', u'port']
[u'canada', u'play', u'blame', u'game', u'blackout']
[u'interrog', u'hambali']
[u'stock', u'slight', u'light', u'trade']
[u'properti', u'price', u'boom', u'continu']
[u'victorian', u'moth', u'face', u'test']
[u'villa', u'birmingham', u'fin', u'derbi', u'mele']
[u'wallabi', u'improv', u'black', u'bledislo']
[u'wallabi', u'improv', u'bledislo']
[u'rescu', u'helicopt', u'take']
[u'warn', u'accus', u'charg', u'extort']
[u'increas', u'litter', u'fin']
[u'titl', u'wenger']
[u'wenger', u'object', u'perceiv', u'target', u'campbel']
[u'wolfsburg', u'sign', u'argentin', u'teenag']
[u'hurt', u'french', u'firework', u'explos']
[u'hurt', u'spanish', u'bull', u'run', u'fiesta']
[u'iranian', u'kill', u'protest']
[u'round', u'pollock', u'put', u'england', u'pressur']
[u'accus', u'govt', u'welfar', u'doubl', u'standard']
[u'angel', u'score', u'tour', u'portug']
[u'apec', u'terror', u'risk']
[u'australia', u'young', u'scientist', u'fresh']
[u'bayern', u'triumphant', u'makaay', u'wait', u'goal']
[u'beckham', u'hide', u'spanish', u'oppon']
[u'britain', u'seek', u'libya', u'sanction']
[u'british', u'minist', u'fall', u'kelli', u'death']
[u'british', u'polic', u'arrest', u'undercov', u'report']
[u'bush', u'mandela', u'break', u'silenc']
[u'canberra', u'baghdad', u'sister', u'citi']
[u'citi', u'fight', u'lover', u'padlock', u'plagu']
[u'costello', u'warn', u'hous', u'boom', u'near']
[u'court', u'lift', u'malawi', u'brother']
[u'crean', u'pledg', u'review', u'ethanol', u'subsidi']
[u'crowd', u'get', u'rush', u'alic', u'rodeo']
[u'masri', u'reach', u'record', u'dog', u'crush', u'man', u'storm']
[u'fair', u'allianc', u'fight', u'core', u'social', u'valu']
[u'fear', u'spider', u'danger', u'research']
[u'rag', u'iraqi', u'export', u'pipelin']
[u'fish', u'set', u'final', u'clash', u'friend', u'roddick']
[u'teacher', u'replac', u'high', u'school']
[u'malaysian', u'striker', u'die', u'footbal']
[u'ugandan', u'dictat', u'amin', u'buri']
[u'fraser', u'share', u'lead', u'russian', u'open']
[u'french', u'ligu', u'round']
[u'govt', u'promot', u'australian', u'citizenship']
[u'govt', u'send', u'weapon', u'inspector', u'north', u'korea']
[u'govt', u'caus', u'lockerbi', u'libyan', u'minist']
[u'guantanamo', u'brit', u'plea', u'bargain', u'deal', u'report']
[u'hall', u'doubl', u'rock', u'england']
[u'headbutt', u'sink', u'green', u'world', u'titl']
[u'health', u'fund', u'plan', u'cost', u'minist', u'say']
[u'health', u'offici', u'look', u'reshap', u'polici']
[u'health', u'polici', u'need', u'urgent', u'care', u'polit', u'acoss']
[u'henin', u'hardenn', u'pass', u'tough', u'test', u'reach', u'final']
[u'hockeyroo', u'steal', u'draw', u'pakistan']
[u'hoddl', u'seeth', u'refere']
[u'hussey', u'score', u'career', u'best']
[u'iceland', u'resum', u'whale', u'hunt']
[u'indonesia', u'arrest', u'marriott', u'blast']
[u'jakarta', u'hotel', u'bomb', u'assembl', u'sumatra', u'report']
[u'jakarta', u'say', u'arrest', u'marriott', u'blast', u'probe']
[u'kaiser', u'void', u'strategi', u'analyst']
[u'liberian', u'leader', u'leav', u'talk', u'deal']
[u'liberian', u'talk', u'deadlock', u'rebel', u'job']
[u'lill', u'clinch']
[u'makelel', u'defi', u'real', u'answer', u'franc', u'report']
[u'makelel', u'miss', u'train', u'real']
[u'malaysian', u'polic', u'question', u'hambali', u'wife']
[u'maverick', u'jamison', u'player', u'deal']
[u'mayor', u'tip', u'babi', u'boom', u'blackout']
[u'mediat', u'threaten', u'suspend', u'liberian', u'peac', u'talk']
[u'memori', u'servic', u'hold', u'melanesian', u'missionari']
[u'micheel', u'tie', u'lead', u'woodss', u'hop', u'fade']
[u'microsoft', u'fend', u'worm', u'attack']
[u'miner', u'sight', u'china']
[u'light']
[u'mother', u'charg', u'kill', u'daughter']
[u'mother', u'court', u'charg', u'daughter', u'murder']
[u'museum', u'staff', u'warn', u'harder', u'public', u'access']
[u'nepal', u'peac', u'talk', u'resum']
[u'ahead', u'time', u'indigen', u'initi']
[u'offici', u'fair', u'certain', u'sourc', u'caus', u'blackout']
[u'dead', u'aftershock', u'rattl', u'china']
[u'pacif', u'urg', u'north', u'korea', u'nuclear', u'program']
[u'fire', u'birdi', u'suspend', u'lpga', u'jami']
[u'pakistan', u'silent', u'water', u'win', u'swiss', u'film', u'prize']
[u'perth', u'lose', u'streak']
[u'defend', u'bali', u'compens', u'decis']
[u'deni', u'special', u'favour', u'ethanol', u'compani']
[u'dismiss', u'call', u'increas', u'health', u'fund']
[u'vow', u'pass', u'secur', u'warn']
[u'polit', u'donat', u'okay', u'favour', u'crean', u'say']
[u'port', u'adelaid', u'secur', u'spot']
[u'qanta', u'hit', u'bird']
[u'govt', u'defend', u'health']
[u'ranger', u'fight', u'celtic', u'goal', u'crazi']
[u'rann', u'hypocrit', u'use', u'wast', u'dump']
[u'rann', u'call', u'genuin', u'partnership', u'health']
[u'tinto', u'stick', u'gun']
[u'rooney', u'england', u'squad']
[u'rossi', u'take', u'pole', u'czech', u'grand', u'prix']
[u'sabotag', u'depriv', u'iraqi', u'water', u'icrc']
[u'sabotag', u'halt', u'iraqi', u'export']
[u'polic', u'shock', u'callous']
[u'world', u'defend', u'shark', u'hold', u'pool']
[u'iraqi', u'kill', u'dozen', u'wound', u'baghdad', u'jail']
[u'songwrit', u'townsend', u'die']
[u'sorri', u'sunderland', u'close', u'record', u'defeat']
[u'swan', u'lion', u'bomber', u'docker', u'book', u'final']
[u'swan', u'fight', u'brisban']
[u'govt', u'refus', u'build', u'firm', u'insur']
[u'temperatur', u'drop', u'heat', u'french', u'govt']
[u'terror', u'council']
[u'kill', u'china', u'earthquak']
[u'twent', u'ensched', u'open', u'victori']
[u'court', u'order', u'girl', u'flog', u'adulteri']
[u'unit', u'arsenal', u'open', u'season', u'style']
[u'admit', u'blackout', u'begin', u'ohio']
[u'back', u'polic', u'chief', u'injur', u'iraq', u'ambush']
[u'like', u'sourc', u'blackout', u'offici']
[u'share', u'hambali', u'inform']
[u'veteran', u'arriv', u'long', u'commemor']
[u'vietnam', u'reject', u'iraqi', u'famili', u'visa', u'applic']
[u'wood', u'enjoy', u'emot', u'win', u'return']
[u'work', u'cultur', u'eat', u'away', u'live', u'actu']
[u'dead', u'miss', u'brazil', u'boat', u'capsiz']
[u'oppn', u'concern', u'train', u'link', u'suspens']
[u'focus', u'equal', u'doctor']
[u'actu', u'congress', u'discuss', u'survey', u'result']
[u'actu', u'propos', u'wont', u'creat', u'job', u'acci']
[u'actu', u'ralli', u'medicar', u'fight']
[u'urg', u'investig', u'cheap', u'power', u'scheme']
[u'adelaid', u'darwin', u'rail', u'link', u'approach', u'alic', u'spring']
[u'review', u'picioan', u'sinclair', u'clash']
[u'alleg', u'murder', u'appeal', u'gain', u'access', u'famili']
[u'arson', u'suspect', u'hous']
[u'boss', u'back', u'wallabi']
[u'athen', u'start', u'fightback', u'favour']
[u'atsic', u'appoint', u'act', u'chairman']
[u'aussi', u'fraser', u'win', u'russian', u'open']
[u'aussi', u'women', u'relay', u'team', u'suffer', u'setback']
[u'australia', u'float', u'pacif', u'union', u'idea']
[u'australia', u'ranger', u'recept']
[u'babi', u'manslaught', u'trial', u'begin']
[u'bangladesh', u'coach', u'whatmor', u'face', u'tough', u'mission']
[u'bankwest', u'sharehold', u'favour', u'takeov']
[u'bear', u'maul', u'clydesdal']
[u'beatti', u'urg', u'cairn', u'flight', u'boost']
[u'bekel', u'ader', u'doubl', u'pari']
[u'expand', u'vietnames', u'oper']
[u'time', u'cricket', u'return', u'pakistan']
[u'blaze', u'claim', u'murrind', u'hous']
[u'blue', u'green', u'alga', u'alert']
[u'bosnich', u'admit', u'cocain', u'addict']
[u'kill', u'high', u'speed', u'chase']
[u'breez', u'sniff', u'chemic', u'contamin']
[u'britain', u'pizza', u'chain', u'ban', u'smoke']
[u'build', u'industri', u'sceptic', u'region', u'hous']
[u'bulldog', u'target', u'spot']
[u'businessman', u'appeal', u'yacht']
[u'busselton', u'appear', u'court', u'drug', u'charg']
[u'butler', u'appoint', u'tasmanian', u'governor']
[u'butler', u'appoint', u'receiv', u'polit', u'back']
[u'buyer', u'nation', u'bank']
[u'greener', u'cleaner', u'fuel']
[u'canberra', u'investig', u'baghdad', u'link']
[u'catanzar', u'offer', u'poki', u'assur']
[u'chase', u'continu', u'illeg', u'fish', u'suspect']
[u'chelsea', u'million', u'instant', u'success']
[u'child', u'abus', u'inquiri', u'receiv', u'call']
[u'china', u'australia', u'hold', u'free', u'trade', u'talk']
[u'clps', u'problem', u'resolv', u'intern', u'martin']
[u'communiti', u'comment', u'seek', u'residenti', u'land']
[u'communiti', u'input', u'seek', u'power', u'line', u'locat']
[u'communiti', u'work', u'reduc', u'femal', u'jail', u'popul']
[u'concern', u'rais', u'vodka', u'jelli', u'shot']
[u'consum', u'hungri', u'lamb', u'despit', u'price', u'rise']
[u'coroni', u'inquiri', u'call', u'bushwalk']
[u'council', u'consid', u'camp', u'restrict']
[u'council', u'settl', u'estat', u'wrangl']
[u'council', u'reform', u'extens', u'assur']
[u'council', u'face', u'cash', u'shortag']
[u'council', u'urg', u'investig', u'attack']
[u'council', u'weigh', u'bridg', u'load', u'limit', u'debat']
[u'countrylink', u'seek', u'staff']
[u'court', u'hear', u'murder', u'suspect', u'pose', u'policeman']
[u'cowboy', u'revers', u'form', u'slump']
[u'crew', u'contain', u'mildura', u'shop', u'centr', u'blaze']
[u'crow', u'indebt', u'swan']
[u'darwin', u'tip', u'hous', u'disast', u'respons', u'centr']
[u'decis', u'expect', u'today', u'atsic', u'posit']
[u'develop', u'fine', u'tune', u'shark', u'plan']
[u'dutch', u'kookaburra']
[u'egypt', u'foreign', u'belli', u'dancer']
[u'kill', u'violent', u'protest', u'central', u'iran']
[u'english', u'premier', u'leagu', u'match', u'report']
[u'factori', u'blaze', u'caus', u'week', u'know']
[u'farmer', u'crop', u'survey']
[u'farmer', u'welcom', u'landcar', u'report']
[u'govt', u'cut', u'troop', u'east', u'timor']
[u'film', u'industri', u'consid', u'piraci', u'protect']
[u'destroy', u'cultur', u'centr']
[u'firefight', u'bodi', u'melbourn']
[u'fischer', u'call', u'airport', u'emerg', u'team']
[u'friend', u'ruddock']
[u'foreign', u'remand', u'cocain', u'smuggl']
[u'forest', u'industri', u'shock', u'propos', u'sell']
[u'franc', u'brace', u'violent', u'storm']
[u'german', u'beer', u'thief', u'catch', u'roll', u'barrel']
[u'break', u'trade', u'agreement']
[u'govern', u'doubl', u'jetti', u'fund']
[u'govt', u'appoint', u'chief', u'cancer', u'offic']
[u'govt', u'attack', u'disempow', u'aborigin']
[u'govt', u'support', u'need', u'secur', u'astronomi', u'project']
[u'grain', u'merger', u'plan', u'continu']
[u'green', u'criticis', u'rail', u'infrastructur']
[u'green', u'seek', u'sink', u'free', u'travel', u'retir', u'polli']
[u'group', u'back', u'countri', u'doctor', u'plan']
[u'group', u'meet', u'carr', u'illawarra', u'issu']
[u'gunfir', u'resound', u'nigerian', u'citi']
[u'hambali', u'proceed', u'wont', u'start', u'absenc']
[u'hansen', u'doubt', u'ahead', u'england', u'clash']
[u'henin', u'hardenn', u'take', u'toronto', u'titl']
[u'hib', u'edinburgh', u'derbi', u'join', u'ranger']
[u'horror', u'showdown', u'scar', u'score', u'offic']
[u'hospit', u'chief', u'back', u'cardiolog', u'servic']
[u'hospit', u'urg', u'adopt', u'cardiac', u'arrest']
[u'hous', u'price', u'rise']
[u'howard', u'begin', u'china', u'visit']
[u'howel', u'applebi', u'secur', u'final', u'presid', u'spot']
[u'iceland', u'whaler', u'lose', u'touch']
[u'indonesian', u'polic', u'papua', u'rebel', u'surrend']
[u'indonesia', u'remain', u'high', u'terror', u'alert']
[u'indonesia', u'want', u'access', u'hambali']
[u'intervent', u'forc', u'target', u'solomon', u'financ']
[u'investig', u'probe', u'qanta', u'bird', u'strike']
[u'iraqi', u'refuge', u'famili', u'sick', u'return', u'australia']
[u'israel', u'handov', u'citi', u'delay']
[u'jail', u'capac', u'spotlight']
[u'jolli', u'win', u'elect']
[u'judg', u'continu', u'summat', u'hanson', u'fraud', u'trial']
[u'kaiser', u'rule', u'parliamentari', u'return']
[u'kelli', u'offer', u'boundari', u'assur']
[u'kennett', u'welcom', u'suicid', u'report']
[u'kirtley', u'inspir', u'england', u'dramat', u'victori']
[u'landcar', u'farm', u'prove', u'posit']
[u'lesbian', u'share', u'cervic', u'cancer', u'risk', u'studi']
[u'liberian', u'faction', u'agre', u'access', u'area']
[u'liberian', u'peac', u'deal', u'immin']
[u'liberian', u'peac', u'deal', u'loom']
[u'liberian', u'rival', u'sign', u'peac', u'deal']
[u'lili', u'creek', u'diesel', u'spill', u'clear']
[u'lion', u'premiership', u'aspir', u'suffer', u'setback']
[u'local', u'domin', u'tour', u'portug']
[u'malaysia', u'detain', u'hambali', u'wife', u'indefinit']
[u'die', u'arm', u'stand']
[u'die', u'crash']
[u'face', u'murder', u'charg', u'murgon']
[u'mayor', u'highlight', u'brothel', u'opposit']
[u'mayor', u'reject', u'wind', u'farm', u'doubt']
[u'melbourn', u'lose', u'hill', u'injuri']
[u'micheel', u'captur', u'titl']
[u'micheel', u'rescu', u'career', u'major']
[u'miss', u'inmat', u'catch', u'hide', u'dumpster']
[u'miss', u'teen', u'bodi']
[u'forecast', u'strong', u'beef', u'price']
[u'monto', u'coal', u'project', u'suspend']
[u'seek', u'welfar', u'cours']
[u'motorcyclist', u'social', u'rid']
[u'nardello', u'win', u'zurich', u'world', u'bettini', u'retain', u'lead']
[u'nepales', u'rebel', u'reject', u'govt', u'plan']
[u'atsic', u'deputi', u'lead', u'default']
[u'newcastl', u'oper']
[u'croc', u'import', u'offer', u'versatil']
[u'import', u'offer', u'croc', u'versatil']
[u'york', u'go', u'work']
[u'nightclub', u'meet', u'polic', u'curfew', u'concern']
[u'northam', u'hous', u'plan', u'take']
[u'north', u'west', u'polic', u'begin', u'campaign']
[u'olymp', u'heptathlon', u'champion', u'lewi', u'confirm', u'pari']
[u'dead', u'isra', u'bomb', u'blast']
[u'hold', u'jami', u'farr', u'kroger', u'classic']
[u'pakistan', u'turn', u'terror', u'charg', u'india']
[u'patterson', u'confid', u'deal', u'close']
[u'pennant', u'fli', u'north', u'leed']
[u'perth', u'leukaemia', u'suffer', u'die']
[u'dismiss', u'beatti', u'comment', u'health', u'fund']
[u'polic', u'road', u'accid', u'concern']
[u'polic', u'search', u'miss']
[u'polic', u'continu', u'search', u'miss', u'woman']
[u'policeman', u'shoot', u'near', u'cairn']
[u'polic', u'seek', u'help', u'find', u'miss', u'peopl']
[u'port', u'defend', u'game', u'tactic']
[u'premier', u'propos', u'health', u'plan']
[u'qanta', u'launch', u'final', u'deal']
[u'opposit', u'back', u'ethanol', u'mandat']
[u'rainbow', u'lorikeet', u'exempt', u'licenc']
[u'ranieri', u'warn', u'chelsea', u'need', u'time', u'despit', u'anfield']
[u'rape', u'victim', u'back', u'indefinit', u'jail']
[u'report', u'highlight', u'safeti', u'risk']
[u'resourc', u'bank', u'stock', u'drive', u'market', u'higher']
[u'roddick', u'score', u'master', u'seri', u'doubl']
[u'rooster', u'rest', u'fittler']
[u'rossi', u'return', u'win', u'way']
[u'saddington', u'doubt', u'swan']
[u'econom', u'outlook', u'tick', u'higher']
[u'govt', u'open', u'scheme', u'fight', u'river', u'salin']
[u'samoan', u'launch', u'attack', u'rugbi', u'govern', u'bodi']
[u'sandpip', u'leav', u'netbal', u'leagu']
[u'secur', u'head', u'call', u'polit', u'meddl']
[u'sinclair', u'plead', u'guilti', u'picioan', u'clash']
[u'korea', u'fire', u'north', u'korean', u'boat']
[u'small', u'busi', u'prospect']
[u'spenc', u'await', u'council', u'evalu', u'process']
[u'staff', u'shortag', u'blame', u'rail', u'servic', u'suspens']
[u'standbi', u'support', u'program', u'seek', u'fund']
[u'state', u'rail', u'deni', u'fudg', u'crime', u'figur']
[u'steven', u'tribun']
[u'student', u'seek', u'faculti', u'meet', u'engin']
[u'sturrup', u'believ', u'golden', u'summer']
[u'success', u'pollock', u'england', u'eye', u'victori']
[u'sunfish', u'fair', u'happi', u'restrict']
[u'govt', u'urg', u'interven', u'hospit', u'cardiolog']
[u'green', u'claim', u'membership', u'boost']
[u'offic', u'target', u'rich', u'medium', u'size', u'busi']
[u'ronaldo', u'thrill', u'trafford']
[u'fin', u'drug', u'offenc']
[u'time', u'run', u'sugar', u'reform', u'govt', u'say']
[u'toopi', u'charg', u'escap', u'suspens']
[u'tourism', u'site', u'plan', u'continu']
[u'transport', u'react', u'road', u'safeti', u'rumbl']
[u'jockey', u'injur', u'race', u'fall']
[u'union', u'manag', u'meet', u'bridgeston', u'lock']
[u'union', u'sight', u'health', u'educ']
[u'union', u'discuss', u'casual', u'worker', u'right']
[u'unitab', u'share', u'drop', u'despit', u'profit', u'boom']
[u'swamp', u'puerto', u'rico', u'basketbal', u'exhibit']
[u'explor', u'possibl', u'base', u'philippin']
[u'high', u'like', u'face', u'attack', u'month']
[u'doubl', u'guard', u'iraqi', u'field']
[u'troop', u'shoot', u'cameraman', u'dead', u'iraq']
[u'valdano', u'invit', u'hoeness', u'real', u'circus']
[u'vet', u'prepar', u'battl', u'long', u'ceremoni']
[u'govt', u'hop', u'farm', u'studi']
[u'vietnam', u'hitch', u'land', u'asylum', u'seeker', u'perth']
[u'vietnam', u'veteran', u'gather', u'rememb', u'long']
[u'wait', u'fast', u'beer']
[u'walker', u'kick', u'record']
[u'polic', u'start', u'work', u'rule', u'push']
[u'warehous', u'prove', u'difficult', u'firefight']
[u'warn', u'see', u'knockabout', u'bloke', u'gilchrist']
[u'water', u'restrict', u'loom', u'level', u'rise']
[u'water', u'treatment', u'problem', u'eas']
[u'wave', u'sabotag', u'hit', u'iraq']
[u'weed', u'manag', u'review', u'launch']
[u'white', u'cliff', u'shortlist', u'telescop', u'locat']
[u'wife', u'persuad', u'washington', u'carri']
[u'winemak', u'contribut', u'fund', u'scheme']
[u'woman', u'fail', u'drink', u'drive', u'accid']
[u'woman', u'face', u'court', u'daughter', u'stab']
[u'wood', u'fire', u'world']
[u'work', u'start', u'million', u'salin', u'intercept']
[u'world', u'bank', u'deni', u'attack', u'timber', u'industri']
[u'world', u'ticket', u'sale']
[u'saddam', u'taunt', u'iraqi', u'loyalist']
[u'kill', u'latest', u'kashmir', u'fight']
[u'year', u'refus', u'bail', u'sydney', u'murder']
[u'aborigin', u'group', u'seek', u'polic', u'talk', u'theft']
[u'achill', u'injuri', u'put', u'kewel', u'doubt', u'ireland']
[u'acrobat', u'guin', u'tightrop']
[u'emerg', u'servic', u'fund', u'season']
[u'afghan', u'blast', u'kill', u'polic']
[u'agreement', u'reach', u'west', u'bank', u'pullback', u'report']
[u'vessel', u'sink', u'rout', u'liberian', u'capit']
[u'servic', u'boost', u'follow', u'beatti']
[u'alfa', u'romeo', u'rule', u'titl', u'defenc']
[u'presid', u'warn', u'overturn', u'branch']
[u'seek', u'region', u'scholarship', u'plan']
[u'angler', u'urg', u'look', u'fish', u'pest']
[u'anthrax', u'scare', u'state', u'depart']
[u'argentina', u'fiji']
[u'arson', u'rule', u'health', u'centr', u'blaze']
[u'winner', u'tshirt', u'stir', u'controversi']
[u'atsic', u'expect', u'public', u'drink', u'issu', u'emerg']
[u'aussi', u'tri', u'curb', u'behaviour', u'gilchrist']
[u'aussi', u'track', u'team', u'prim', u'result', u'athen']
[u'australia', u'readi', u'terror', u'attack', u'survey', u'say']
[u'australia', u'plan', u'intervent', u'exercis']
[u'avellino', u'wait', u'verdict']
[u'backbench', u'muzzl', u'middl', u'east', u'debat']
[u'belgian', u'search', u'supremaci']
[u'crowd', u'expect', u'flock']
[u'black', u'market', u'control', u'latham']
[u'blair', u'advis', u'question', u'iraq', u'inquiri']
[u'bombmak', u'link', u'bali', u'jakarta', u'attack', u'polic']
[u'boulder', u'dentist', u'woe', u'bite']
[u'britain', u'expect', u'submit', u'resolut', u'libya']
[u'britain', u'seek', u'libya', u'sanction']
[u'brumbi', u'continu', u'air', u'raaf', u'base', u'plan', u'doubt']
[u'burn', u'bodi', u'melbourn', u'soccer', u'club']
[u'burn', u'milk', u'powder', u'buri', u'blaze']
[u'busi', u'usual', u'atsic', u'clark', u'say']
[u'butler', u'forego', u'excel', u'titl']
[u'butterfli', u'risk', u'conserv', u'group', u'warn']
[u'cairn', u'bond', u'miss', u'india', u'tour']
[u'easier', u'replac']
[u'hazard', u'reduct', u'power']
[u'call', u'clear', u'messag', u'develop', u'plan']
[u'canegrow', u'reject', u'state', u'govern', u'claim']
[u'cart', u'consid', u'buyout', u'offer']
[u'cave', u'adventur', u'rescu', u'south', u'sydney']
[u'championship', u'leader', u'burn', u'rejoin', u'subaru']
[u'chines', u'citrus', u'crackdown', u'cost', u'aust', u'industri']
[u'chines', u'presid', u'visit', u'australia']
[u'claim', u'dairi', u'deal', u'benefit', u'tasmania']
[u'claim', u'illeg', u'quarri', u'numinbah', u'valley']
[u'club', u'say', u'game', u'loss']
[u'coalit', u'hire', u'guard', u'iraq']
[u'coastal', u'project', u'receiv']
[u'coffe', u'lover', u'warn', u'tooth', u'decay']
[u'cold', u'morn', u'south', u'east']
[u'commerci', u'fisher', u'licenc']
[u'concern', u'air', u'timber', u'import']
[u'consum', u'group', u'warn', u'fishi', u'fish', u'label']
[u'council', u'air', u'coal', u'truck', u'concern']
[u'council', u'approv', u'power', u'station', u'site', u'rezon']
[u'council', u'approv', u'subdivis']
[u'council', u'defend', u'saleyard', u'leas']
[u'council', u'forum', u'hold', u'boundari', u'chang']
[u'council', u'get', u'tough', u'houseboat', u'moor']
[u'council', u'offer', u'assur']
[u'council', u'track', u'reform', u'plan']
[u'council', u'protest', u'phone', u'tower']
[u'council', u'meet', u'discuss', u'reform']
[u'council', u'staff', u'consid', u'protest']
[u'council', u'decid', u'woodchip', u'termin']
[u'council', u'upbeat', u'connect']
[u'crow', u'prepar', u'battl', u'roo']
[u'date', u'belgium', u'grand', u'prix', u'return']
[u'defenc', u'expert', u'scath', u'bodi']
[u'villier', u'world', u'injuri']
[u'dog', u'menac', u'farmer', u'sheep']
[u'dokic', u'enjoy', u'return', u'form', u'victori']
[u'dorrigo', u'win', u'state', u'govern', u'award']
[u'soar', u'month', u'high']
[u'hop', u'illeg', u'fisher']
[u'drought', u'offer', u'mix', u'cattl', u'opportun']
[u'educ', u'workshop', u'worth', u'penni', u'organis']
[u'egypt', u'road', u'crash', u'kill']
[u'email', u'describ', u'stand', u'game', u'chicken']
[u'emerg', u'servic', u'retain', u'uniqu']
[u'engin', u'woe', u'spark', u'chopper', u'crash']
[u'approv', u'corridor', u'chang']
[u'european', u'giant', u'tune', u'euro']
[u'european', u'sahara', u'hostag', u'free']
[u'extend', u'fish', u'ban']
[u'farina', u'throw', u'support', u'bosnich']
[u'fatal', u'accid', u'investig']
[u'faulti', u'user', u'guarante', u'refund']
[u'govt', u'snub', u'highway', u'fund']
[u'aussi', u'play', u'presid']
[u'sentenc', u'death', u'casablanca', u'bomb', u'trial']
[u'freedom', u'consid', u'privat', u'ownership']
[u'freedom', u'furnitur', u'share', u'jump', u'plan']
[u'french', u'heatwav', u'claim', u'polit', u'victim']
[u'good', u'beck', u'say', u'david']
[u'gorok', u'accid', u'victim', u'releas']
[u'govt', u'urg', u'fund', u'cervic', u'cancer', u'test']
[u'graffiti', u'artist', u'paint', u'corner']
[u'green', u'stop', u'polit', u'press']
[u'help', u'quash', u'evas', u'head', u'say']
[u'haas', u'attack', u'polli', u'benefit']
[u'hanson', u'ettridg', u'trial', u'enter', u'final', u'stage']
[u'hanson', u'juri', u'lock', u'night']
[u'hewitt', u'seed', u'sixth', u'open']
[u'hockeyroo', u'stun', u'argentinian']
[u'hors', u'event', u'remain', u'tamworth']
[u'hossain', u'line', u'play', u'pakistan']
[u'handl', u'critic', u'say', u'beckham']
[u'indonesia', u'name', u'jakarta', u'bomb', u'suspect']
[u'indonesian', u'drought', u'take', u'toll', u'live', u'stock']
[u'injur', u'whale', u'spot', u'near', u'palm', u'island']
[u'inquiri', u'hold', u'past', u'handl', u'suspect']
[u'inspect', u'find', u'ravag', u'store', u'rebuild']
[u'iraq', u'dossier', u'short', u'proof']
[u'iraq', u'battlefield', u'warn', u'journo']
[u'member', u'warn', u'asian', u'attack']
[u'johnson', u'run', u'sixth', u'finland']
[u'judg', u'reserv', u'decis', u'children', u'detent']
[u'judg', u'want', u'child', u'detaine', u'contact']
[u'juri', u'retir', u'consid', u'hanson', u'ettridg', u'fraud', u'case']
[u'kane', u'look', u'athen', u'spot']
[u'keke', u'brother', u'detain', u'surrend', u'gun']
[u'reinforc', u'drink', u'spike', u'warn']
[u'kookaburra', u'face', u'india']
[u'labor', u'scrutinis', u'famili', u'benefit']
[u'landown', u'urg', u'contact', u'rural', u'servic']
[u'larg', u'dinosaur', u'fossil', u'china']
[u'liberia', u'war', u'faction', u'sign', u'peac', u'deal']
[u'lighthous', u'plan', u'spotlight']
[u'listless', u'chang', u'make', u'earli', u'exit', u'commack']
[u'lockyer', u'action']
[u'lousi', u'studi', u'show', u'cloth', u'year']
[u'acquit', u'murder', u'award', u'compo']
[u'charg', u'incid']
[u'court', u'murder', u'charg']
[u'maverick', u'jamison', u'player', u'deal']
[u'mayor', u'attempt', u'rescu', u'job']
[u'mayor', u'want', u'tougher', u'sentenc']
[u'meet', u'clear', u'waterfront']
[u'blast', u'kill', u'china']
[u'compani', u'clear', u'death']
[u'mobil', u'fin', u'slick']
[u'time', u'highway', u'petit']
[u'politician', u'oppos', u'death', u'penalti']
[u'mother', u'evid', u'babi', u'manslaught', u'trial']
[u'confid', u'iraq', u'inquiri', u'govt']
[u'rais', u'ethanol', u'concern']
[u'throw', u'weight', u'death', u'penalti']
[u'murder', u'trial', u'show', u'bloodstain', u'item']
[u'murgon', u'celebr', u'grand', u'final']
[u'fund', u'formula', u'gambl', u'help']
[u'group', u'fight', u'shire', u'merger', u'plan']
[u'newman', u'alcohol', u'restrict', u'prove', u'posit']
[u'korea', u'opt', u'attend', u'game']
[u'health', u'reform', u'state', u'sign', u'deal', u'patterson']
[u'optim', u'respons', u'properti', u'bubbl', u'confer']
[u'govt', u'admit', u'sydney', u'wharf', u'safeti', u'problem']
[u'courtit', u'happen']
[u'criticis', u'govt', u'polici', u'north', u'korea']
[u'pacif', u'whale', u'sanctuari', u'increas', u'size']
[u'perth', u'gunman', u'captur', u'fatal', u'hostag', u'drama']
[u'perth', u'gunman', u'link', u'abduct']
[u'perth', u'polic', u'hunt', u'gunman']
[u'phone', u'bill', u'fall', u'year']
[u'phone', u'exchang', u'need', u'upgrad']
[u'pirat', u'prove', u'strong', u'colleg', u'team']
[u'plane', u'make', u'emerg', u'land']
[u'polic', u'arrest', u'youth', u'footbal', u'club', u'theft']
[u'polic', u'establish', u'burn', u'bodi', u'gender']
[u'polic', u'hop', u'disput']
[u'polic', u'interview', u'sydney', u'rail', u'scare']
[u'polic', u'seek', u'miss', u'woman', u'husband']
[u'polic', u'seiz', u'drug', u'jindabyn']
[u'pollock', u'top', u'test', u'rat']
[u'port', u'final', u'prepar', u'go', u'plan', u'montgomeri']
[u'posit', u'result', u'boost', u'market']
[u'pricelin', u'blaze', u'claim', u'store']
[u'probe', u'call', u'cameraman', u'death']
[u'progress', u'port', u'contain', u'termin', u'push']
[u'public', u'back', u'council', u'independ']
[u'public', u'water', u'restrict', u'warn']
[u'qanta', u'baggag', u'handler', u'return', u'work']
[u'govt', u'ask', u'manag', u'reserv']
[u'rule', u'compens', u'corrupt', u'polic']
[u'rail', u'track', u'reach', u'alic', u'spring', u'soon']
[u'ralf', u'schumach', u'challeng', u'penalti']
[u'ratepay', u'offer', u'land', u'price', u'assur']
[u'rebuild', u'enola', u'unveil', u'washington']
[u'regist', u'recognis', u'station', u'woolscour', u'histori']
[u'reid', u'slur', u'charact', u'mill']
[u'resid', u'council', u'amalgam']
[u'resourc', u'construct', u'push', u'share', u'market', u'higher']
[u'roddick', u'readi', u'handl', u'pressur']
[u'ruddock', u'advis', u'clark', u'concentr', u'appeal']
[u'ruddock', u'meet', u'atsic', u'chief']
[u'rugbi', u'world', u'ticket', u'sale']
[u'saddam', u'deputi', u'captur', u'iraq']
[u'scheme', u'offer', u'job', u'boost']
[u'search', u'white', u'whale']
[u'season', u'sinclair', u'steven']
[u'seven', u'puma', u'turn', u'style']
[u'sewerag', u'worker', u'dirti', u'allow']
[u'sharon', u'investig', u'land', u'compens']
[u'shire', u'group', u'speak', u'merger', u'court', u'action']
[u'shire', u'meet', u'discuss', u'murray', u'river', u'cross']
[u'sinclair', u'plead', u'guilti']
[u'singl', u'desk', u'plan', u'spark', u'dairi', u'divis']
[u'sixth', u'charg', u'alic', u'death']
[u'face', u'trial', u'melbourn', u'tripl', u'murder']
[u'smith', u'vaughan', u'play', u'pollock', u'absenc']
[u'south', u'africa', u'uncap', u'player', u'world']
[u'state', u'urg', u'accept', u'health', u'plan']
[u'storm', u'hamper', u'pursuit', u'alleg', u'toothfish', u'poacher']
[u'submiss', u'critic', u'propos', u'chang', u'census']
[u'summit', u'hear', u'health', u'need', u'nation', u'bodi']
[u'swan', u'boss', u'prais', u'collingwood', u'promot', u'effort']
[u'sydney', u'hous', u'reach', u'figur']
[u'aborigin', u'group', u'ask', u'butler', u'explain', u'uniqu']
[u'telstra', u'sell', u'week']
[u'back', u'wagga', u'station']
[u'tourism', u'push', u'confer', u'market']
[u'tradit', u'owner', u'approv', u'hous', u'plan', u'work']
[u'tree', u'remov', u'spark', u'resid', u'anger']
[u'trip', u'aim', u'boost', u'indigen', u'youth', u'elder', u'tie']
[u'tuckey', u'deni', u'misus', u'posit', u'help']
[u'kill', u'highway', u'tire', u'zone']
[u'envoy', u'kill', u'baghdad', u'attack']
[u'team', u'win', u'fund', u'technolog']
[u'basketbal', u'team', u'head', u'olymp', u'qualifi']
[u'soldier', u'kill', u'iraqi', u'attack']
[u'threaten', u'iceland', u'sanction', u'whale']
[u'urg', u'liberian', u'parti', u'honour', u'peac', u'deal']
[u'govt', u'get', u'deadlin', u'hear', u'facil', u'boost']
[u'wale', u'squad', u'strength', u'england', u'test']
[u'wallabi', u'rest', u'star', u'ahead']
[u'washington', u'sniper', u'agent', u'shoot', u'probe']
[u'water', u'issu', u'agenda', u'sartor', u'visit']
[u'waugh', u'play', u'sledg', u'talk']
[u'woodward', u'pick', u'second', u'string', u'face', u'wale']
[u'kill', u'jerusalem', u'blast', u'sourc']
[u'abalon', u'plan', u'propon', u'upbeat', u'approv']
[u'accus', u'indigen', u'literaci']
[u'govt', u'slam', u'censur', u'motion']
[u'action', u'group', u'question']
[u'actu', u'prais', u'centr', u'award']
[u'agforc', u'welcom', u'drought']
[u'seek', u'phase', u'council', u'grant', u'chang']
[u'ambul', u'servic', u'address', u'centr', u'close', u'concern']
[u'america', u'dear', u'aussi']
[u'announc', u'billion', u'loss']
[u'anderson', u'reject', u'region', u'fear']
[u'anger', u'possibl', u'lewi', u'compens']
[u'annan', u'pledg', u'continu', u'work', u'iraq']
[u'ashcroft', u'defend', u'patriot']
[u'astronaut', u'open', u'uni', u'scienc', u'math', u'school']
[u'aussi', u'injur', u'bomb', u'blast', u'bad', u'hurt', u'downer']
[u'soccer', u'player', u'minimum', u'award']
[u'australia', u'condemn', u'attack', u'iraq']
[u'australian', u'injur', u'iraqi', u'blast']
[u'avellino', u'await', u'court', u'verdict']
[u'baggag', u'handler', u'strike', u'hit', u'qanta', u'flight']
[u'bakk', u'face', u'month']
[u'get', u'extend', u'hour']
[u'bashar', u'shin', u'bangladesh', u'steadi', u'start']
[u'beatti', u'back', u'year', u'health', u'fund', u'deal']
[u'blair', u'aid', u'deni', u'sex', u'iraq', u'threat']
[u'boost', u'phone', u'exchang']
[u'brisban', u'compani', u'win', u'contract', u'help', u'build']
[u'bomb', u'rock', u'jerusalem']
[u'busi', u'fin', u'stormwat', u'pollut']
[u'shock', u'tactic', u'deter', u'smoker']
[u'store', u'charter']
[u'water', u'trade', u'stop', u'live', u'murray']
[u'campbel', u'charg', u'violent', u'conduct']
[u'carl', u'lewi', u'plead', u'innoc', u'drink', u'drive', u'charg']
[u'carlton', u'sign', u'fevola', u'wait']
[u'product', u'strike', u'resolv']
[u'cattl', u'hors', u'idea']
[u'certif', u'allow', u'plane', u'export']
[u'china', u'captur', u'team', u'titl', u'world', u'gymnast']
[u'china', u'world', u'beer', u'brewer', u'survey']
[u'church', u'synod', u'consid', u'children']
[u'commonwealth', u'santo', u'report', u'result']
[u'communiti', u'effort', u'address', u'assault']
[u'communiti', u'speed', u'limit', u'plan']
[u'compani', u'await', u'ethanol', u'commit']
[u'concern', u'air', u'duti', u'care', u'chang']
[u'concern', u'rais', u'defenc', u'equip', u'plan']
[u'costello', u'promis', u'refocus', u'defenc', u'spend']
[u'council', u'consid', u'water', u'restrict']
[u'council', u'delay', u'brothel', u'develop', u'applic']
[u'councillor', u'air', u'supermarket', u'concern']
[u'council', u'meet', u'dump']
[u'council', u'offer', u'rate', u'rise', u'relief']
[u'council', u'hold', u'eros', u'meet']
[u'council', u'stop', u'park', u'cemeteri']
[u'council', u'unmov', u'age', u'care', u'land', u'offer']
[u'cricket', u'australia', u'weigh', u'warn', u'train']
[u'debat', u'extent', u'aust', u'inland', u'motion']
[u'custom', u'rescu', u'suspect', u'poacher', u'boat']
[u'cyclist', u'track', u'athen']
[u'builder', u'reject', u'indigen', u'monitor', u'attack']
[u'darwin', u'girl', u'win', u'young', u'author', u'award']
[u'davenport', u'crush', u'dokic', u'haven']
[u'diabet', u'children', u'seek', u'research', u'fund', u'boost']
[u'luca', u'win', u'valli', u'varesin']
[u'doctor', u'predict', u'medic', u'woe']
[u'drought', u'hurt', u'landcar', u'effort']
[u'drought', u'take', u'toll', u'oyster']
[u'dublin', u'hit', u'english', u'racism']
[u'ead', u'speak', u'medal', u'count']
[u'east', u'timor', u'mourn', u'loss', u'great', u'brother', u'friend']
[u'edward', u'leav', u'pari', u'decis', u'minut']
[u'factori', u'burn']
[u'faldo', u'say', u'european', u'golfer', u'lack', u'major', u'commit']
[u'farina', u'say', u'okon', u'answer', u'critic']
[u'farmer', u'drought']
[u'father', u'plead', u'guilti', u'murder', u'marihuana']
[u'say', u'human', u'remain', u'baghdad', u'bomb', u'truck']
[u'feder', u'fund', u'broom', u'port', u'expans', u'fall']
[u'feder', u'labor', u'give', u'support', u'gungahlin', u'extens']
[u'feder', u'lose', u'paper', u'perk']
[u'hear', u'ralf', u'german', u'crash', u'appeal']
[u'firefight', u'battl', u'inner', u'sydney']
[u'ravag', u'store', u'want', u'busi']
[u'fittler', u'miss', u'week']
[u'priest', u'face', u'charg']
[u'free', u'sahara', u'hostag', u'return', u'home']
[u'fund', u'allow', u'paper', u'remain', u'open']
[u'gerrard', u'tip', u'recruit', u'titl', u'tilt']
[u'girl', u'appeal', u'fund', u'diabet']
[u'govt', u'face', u'critic', u'educ']
[u'govt', u'inject', u'asia', u'pacif', u'health', u'plan']
[u'govt', u'urg', u'commit', u'majura', u'valley', u'dragway']
[u'green', u'rais', u'cardiologist', u'disput', u'parliament']
[u'growth', u'rat', u'point', u'econom', u'pick']
[u'hanson', u'ettridg', u'jail', u'year', u'fraud']
[u'hanson', u'ettridg', u'appeal']
[u'hanson', u'guilti', u'elector', u'fraud']
[u'health', u'minist', u'wont', u'mediat', u'doctor', u'contract']
[u'health', u'warn', u'factori', u'blaze', u'continu', u'sydney']
[u'heritag', u'monitor', u'defend', u'payment']
[u'hospit', u'revamp']
[u'hotel', u'waltz', u'hammer']
[u'hous', u'drive', u'wall', u'street']
[u'howard', u'pay', u'tribut', u'head', u'mission']
[u'howard', u'prais', u'pacif', u'island', u'forum', u'best']
[u'indian', u'plane', u'surround', u'fals', u'hijack', u'alert']
[u'indonesian', u'fish', u'boat', u'catch']
[u'indonesia', u'kopassus', u'chief', u'visit', u'australia']
[u'heat', u'solar', u'race']
[u'irish', u'sink', u'socceroo', u'late', u'goal']
[u'irrig', u'upgrad', u'shutdown']
[u'juri', u'continu', u'deliber', u'hanson', u'fraud']
[u'kefu', u'world', u'open']
[u'knight', u'confid', u'ahead', u'canberra', u'clash']
[u'knight', u'hop', u'repeat', u'win', u'way']
[u'labor', u'undecid', u'print', u'motion']
[u'lawson', u'face', u'work', u'bowl', u'action']
[u'leader', u'mourn', u'envoy', u'death']
[u'leed', u'botham']
[u'liber', u'feder', u'bendigo', u'seat', u'uncertainti']
[u'looma', u'communiti', u'undertak', u'diabet', u'health']
[u'makelel', u'play', u'disput', u'real']
[u'maleeva', u'scrap', u'slow', u'start']
[u'mali', u'hostag', u'arriv', u'germani']
[u'charg', u'hoax', u'rail', u'secur', u'scare']
[u'charg', u'shoot', u'death', u'woman']
[u'get', u'year', u'jail', u'term', u'drug', u'traffic']
[u'jail', u'life', u'facto', u'kill']
[u'polic', u'guard', u'hous', u'blaze']
[u'say', u'fergi', u'hungri']
[u'marathon', u'effort', u'rescu', u'cave', u'victim']
[u'mayor', u'candid', u'confid', u'support']
[u'mayor', u'succumb', u'cancer']
[u'drown', u'north']
[u'miss', u'tourist', u'safe']
[u'hardwood', u'plantat', u'plant']
[u'mother', u'voic', u'anger', u'hospit', u'bungl']
[u'motor', u'sale', u'rise', u'percent', u'juli']
[u'want', u'death', u'penalti', u'terror', u'australia']
[u'murphi', u'sign', u'year', u'deal', u'glori']
[u'murray', u'goulburn', u'announc', u'milk', u'price', u'rise']
[u'nat', u'reject', u'rail', u'delay', u'reason']
[u'drug', u'rival', u'viagra']
[u'internet', u'law', u'govt', u'crackdown', u'ecrim']
[u'spare', u'sergio', u'vieira', u'mello']
[u'northern', u'council', u'defend', u'spend']
[u'trial', u'refere', u'interchang']
[u'railway', u'decad', u'costa', u'say']
[u'okon', u'answer', u'critic', u'farina']
[u'okon', u'answer', u'critic', u'farina']
[u'dead', u'wound', u'iraqi', u'ambush']
[u'oversea', u'invest', u'knock', u'lend', u'leas']
[u'palestinian', u'call', u'hama', u'talk']
[u'park', u'rugbi', u'player', u'repres', u'canada', u'world']
[u'picioan', u'vow', u'continu', u'aggress', u'play']
[u'pittman', u'rival', u'pull', u'pari']
[u'plan', u'multi', u'million', u'dollar', u'wildlif', u'hospit']
[u'refus', u'sack', u'foolish', u'tuckey']
[u'polic', u'crack', u'number', u'plate', u'offenc']
[u'polic', u'hunt', u'teenag', u'pizza', u'bandit']
[u'polic', u'minist', u'urg', u'look', u'race', u'relat']
[u'polic', u'probe', u'home', u'bash']
[u'presland', u'unlik', u'debus']
[u'qanta', u'worker', u'order', u'ceas', u'strike', u'action']
[u'govt', u'releas', u'fund', u'school', u'scienc']
[u'opposit', u'speak', u'ethanol', u'concern']
[u'racv', u'predict', u'petrol', u'price', u'spike', u'wont']
[u'rail', u'station', u'meet', u'tip', u'attract', u'crowd']
[u'rare', u'lizard', u'face', u'threat']
[u'carpet', u'cairn', u'royal', u'visit']
[u'report', u'find', u'demand', u'canberra', u'inject', u'room']
[u'reuter', u'cameraman', u'buri', u'hebron']
[u'robber', u'hold', u'knife', u'babi', u'throat', u'polic']
[u'rocki', u'gulli', u'school', u'fail', u'improv', u'enrol']
[u'ruddock', u'effect', u'fundrais']
[u'russia', u'condemn', u'attack', u'headquart']
[u'govt', u'urg', u'address', u'lobster', u'fish']
[u'salt', u'plan', u'tip', u'boost', u'job']
[u'scheme', u'aim', u'target', u'parti', u'gatecrash']
[u'schubert', u'strike', u'right', u'note', u'kookaburra']
[u'schumach', u'determin', u'halt', u'win', u'drought']
[u'scientist', u'warn', u'antarctica', u'explod']
[u'search', u'bomb', u'survivor', u'call']
[u'selector', u'back', u'away', u'hard', u'decis', u'farr']
[u'share', u'market', u'close', u'month', u'high']
[u'sharon', u'ponder', u'respons', u'suicid', u'bomb']
[u'sheep', u'death', u'spark', u'warn', u'owner']
[u'shire', u'happi', u'local', u'govt', u'fund']
[u'shire', u'lose', u'communiti', u'facil', u'fund']
[u'side', u'disput', u'cost', u'small', u'wineri']
[u'sniffer', u'dog', u'propos', u'stamp', u'indigen', u'drug']
[u'snowi', u'hydro', u'offer', u'snow']
[u'storm', u'help', u'boost', u'citi', u'water', u'suppli']
[u'strong', u'sheep', u'updat']
[u'student', u'treat', u'meningococc', u'case']
[u'suncorp', u'restructur', u'cut', u'job']
[u'support', u'cleaner', u'ocean', u'plan']
[u'survey', u'highlight', u'disturb', u'fatigu', u'fact']
[u'swiss', u'glacier', u'melt', u'european', u'heat', u'wave']
[u'tassi', u'tiger', u'like', u'elvi']
[u'thai', u'star', u'paradorn', u'open', u'titl', u'defenc', u'victori']
[u'thalidomid', u'comeback']
[u'time', u'run', u'reef', u'pontoon', u'submiss']
[u'tower', u'trick', u'seal', u'hockeyroo', u'victori']
[u'track', u'devic', u'plan', u'white', u'whale']
[u'trade', u'confid', u'boost', u'cattl', u'price']
[u'trial', u'accus', u'killer', u'begin']
[u'trial', u'reduc', u'contracept', u'effect']
[u'troop', u'expect', u'long', u'servic', u'solomon']
[u'tuckey', u'deni', u'wrongdo', u'son', u'fine']
[u'tuckey', u'foolish', u'son', u'fine']
[u'arrest', u'high', u'speed', u'chase', u'sydney']
[u'jail', u'manag', u'murder']
[u'envoy', u'iraq', u'kill', u'bomb', u'blast']
[u'engin', u'talk', u'cours', u'futur']
[u'mourn', u'baghdad', u'attack']
[u'pull', u'baghdad', u'staff']
[u'resum', u'colombian', u'anti', u'drug', u'flight']
[u'host', u'confer', u'sustain', u'develop']
[u'weld', u'back', u'away', u'melbourn', u'boycott', u'threat']
[u'well', u'upbeat', u'deed', u'benefit']
[u'wheat', u'price', u'tip', u'stay', u'strong']
[u'whyalla', u'steelwork', u'perform', u'singl']
[u'william', u'enter', u'hall', u'fame']
[u'wine', u'fund', u'toast', u'futur', u'despit', u'loss']
[u'prepar', u'mainten', u'shutdown']
[u'woman', u'care', u'disabl', u'brother', u'lose', u'support']
[u'worker', u'sift', u'baghdad', u'wreckag']
[u'workshop', u'hold', u'virus', u'infect', u'tassi']
[u'world', u'outrag', u'headquart', u'attack']
[u'mazen', u'order', u'milit', u'arrest']
[u'teacher', u'offer', u'deal']
[u'agassi', u'roddick', u'face', u'tough', u'round']
[u'age', u'care', u'industri', u'air', u'power', u'price', u'concern']
[u'announc', u'strong', u'profit']
[u'airport', u'termin', u'closer', u'take']
[u'critic', u'psychiatr', u'patient', u'payout']
[u'ambo', u'action', u'emerg', u'concern']
[u'angri', u'smith', u'upbeat', u'fourth', u'test']
[u'argentina', u'abolish', u'junta', u'immun']
[u'galleri', u'celebr', u'fund', u'boost']
[u'associ', u'seek', u'player']
[u'astronom', u'close', u'view', u'mar']
[u'atsic', u'central', u'zone', u'contribut', u'clark']
[u'australia', u'aid', u'indonesian', u'terror', u'probe']
[u'australia', u'sign', u'busi', u'deal']
[u'australian', u'gymnast', u'claim', u'bronz']
[u'australian', u'worker', u'leav', u'baghdad']
[u'baghdad', u'blast', u'toll', u'rise']
[u'bali', u'bomb', u'mean', u'place', u'sept', u'imron']
[u'bangladesh', u'battl', u'pakistan']
[u'bear', u'breach', u'secur', u'russian', u'nuclear']
[u'beckham', u'lead', u'england', u'victori']
[u'benadryl', u'cough', u'medicin', u'recal']
[u'bhps', u'boss']
[u'blair', u'aid', u'consid', u'leak', u'sourc']
[u'kill', u'timor', u'helicopt', u'accid']
[u'bronco', u'consid', u'sign', u'walker']
[u'gemfield', u'nativ', u'titl', u'action']
[u'rail', u'report', u'measur', u'follow']
[u'call', u'uniform', u'evacu', u'procedur']
[u'product', u'strike', u'end']
[u'claim', u'council', u'focus', u'spenc', u'respons']
[u'clark', u'reimburs', u'legal', u'cost']
[u'clash', u'liberia', u'day', u'peac', u'deal', u'offici']
[u'final', u'win', u'place', u'iaaf', u'council']
[u'copmanhurst', u'back', u'council', u'polici']
[u'council', u'act', u'alleg', u'tree', u'clear', u'breach']
[u'council', u'conced', u'tree', u'mistak']
[u'council', u'prais', u'stop', u'park', u'cemeteri', u'plan']
[u'coupl', u'defend', u'aborigin', u'trespass', u'charg']
[u'crackdown', u'illeg', u'indonesian', u'fishermen', u'work']
[u'cricket', u'australia', u'reconsid', u'warn', u'decis']
[u'deputi', u'mayor', u'back', u'effort']
[u'detect', u'investig', u'babi', u'death', u'melbourn']
[u'downer', u'hold', u'terror', u'talk', u'indonesia']
[u'dragon', u'sign', u'blacklock']
[u'drought', u'blame', u'wool', u'woe']
[u'econom', u'woe', u'close', u'meatwork']
[u'elvi', u'shake', u'night', u'long']
[u'emerg', u'hous', u'need', u'rise']
[u'endang', u'bird', u'bristl', u'weapon']
[u'essendon', u'sign', u'lloyd']
[u'nation', u'candid', u'defend', u'hanson']
[u'fals', u'hero', u'convict', u'wear', u'medal']
[u'farmer', u'look', u'heaven', u'rain']
[u'firework', u'explos', u'kill', u'southern', u'china']
[u'fisher', u'marin', u'seismic', u'survey']
[u'fitzgibbon', u'final']
[u'flyhalf', u'jone', u'captain', u'wale', u'england']
[u'focus', u'reduc', u'sid', u'indigen']
[u'employe', u'movi', u'star', u'robert', u'redford']
[u'gardin', u'embley', u'return', u'injuri']
[u'gold', u'coast', u'capitalis', u'local', u'sport', u'abil']
[u'gold', u'miner', u'explor', u'west', u'gympi']
[u'green', u'say', u'readi', u'shock', u'world']
[u'hacker', u'target', u'georg', u'account']
[u'hanson', u'file', u'appeal', u'fraud', u'convict']
[u'hanson', u'move', u'women', u'prison']
[u'hanson', u'lawyer', u'expect', u'seek', u'bail']
[u'hanson', u'spend', u'night', u'jail']
[u'hantuchova', u'poor', u'continu', u'haven']
[u'harford', u'step', u'picioan']
[u'health', u'insur', u'head', u'crisi']
[u'health', u'insur', u'deni', u'polici', u'holder', u'exodus']
[u'health', u'need', u'higher', u'prioriti', u'summit', u'hear']
[u'health', u'warn', u'issu', u'inner', u'sydney']
[u'hewitt', u'aim', u'silenc', u'critic']
[u'high', u'hop', u'indi', u'crowd']
[u'high', u'price', u'pump', u'woodsid', u'profit']
[u'high', u'secur', u'isra', u'team']
[u'highway', u'group', u'want', u'clear', u'road', u'fund']
[u'hong', u'kong', u'polic', u'arrest', u'triad', u'crackdown']
[u'hook', u'defend', u'warn', u'right', u'train']
[u'hous', u'develop', u'hit', u'hurdl']
[u'howard', u'avoid', u'censur', u'tuckey', u'improprieti']
[u'howard', u'hop', u'nation', u'water', u'reform', u'plan']
[u'howard', u'reassur', u'rural', u'voter', u'telstra', u'sale']
[u'hume', u'highway', u'close', u'fatal', u'collis']
[u'ikin', u'lockyer', u'return', u'eas', u'berrigan', u'burden']
[u'indian', u'board', u'ask', u'withhold', u'world', u'money']
[u'indigen', u'parent', u'seek', u'school', u'suspens']
[u'indigen', u'student', u'enrol', u'rise']
[u'indonesian', u'travel', u'warn', u'remain']
[u'inquest', u'find', u'fuel', u'marlborough']
[u'inquiri', u'hear', u'relentless', u'grill', u'kelli']
[u'iraqi', u'leader', u'reveal', u'truck', u'bomb', u'warn']
[u'iraq', u'chemic', u'custodi']
[u'israel', u'approv', u'strike', u'hama', u'islam', u'jihad']
[u'israel', u'hunt', u'west', u'bank', u'milit']
[u'israel', u'move', u'palestinian', u'citi']
[u'kalgoorli', u'experi', u'trade', u'shortag']
[u'kelli', u'death', u'mask', u'head', u'portrait', u'exhibit']
[u'kookaburra', u'germani']
[u'kuerten', u'eas', u'past', u'beck', u'reach', u'quarter', u'final']
[u'labor', u'consid', u'chang', u'brothel']
[u'labor', u'face', u'intern', u'disharmoni', u'diesel', u'fuel']
[u'landcar', u'welcom', u'fund', u'boost']
[u'laser', u'breakthrough', u'promis', u'longer']
[u'leppitsch', u'return', u'cat']
[u'libya', u'transfer', u'lockerbi', u'compens', u'fund']
[u'lodg', u'odd', u'council', u'land']
[u'lomu', u'refus', u'world', u'dream', u'manag']
[u'lower', u'hous', u'pass', u'telstra', u'sell']
[u'lunchtim', u'tippl', u'lead', u'drivetim', u'sleep', u'studi']
[u'arrest', u'lismor', u'sydney', u'rape']
[u'charg', u'attempt', u'murder']
[u'jail', u'rosenbaum', u'race', u'riot', u'murder']
[u'market', u'slip', u'recent', u'rise']
[u'matilda', u'begin', u'world', u'prepar']
[u'mayor', u'defend', u'merger', u'plan']
[u'sign', u'director', u'year']
[u'meet', u'talk', u'shire', u'merger']
[u'meningococc', u'case', u'consid', u'unusu']
[u'men', u'draw', u'strength', u'weak']
[u'middl', u'east', u'truce', u'tatter']
[u'west', u'industri', u'develop', u'spotlight']
[u'miner', u'sign', u'world', u'heritag', u'protect', u'agreement']
[u'mine', u'firm', u'agre', u'observ', u'world', u'heritag', u'sit']
[u'minist', u'pleas', u'perilya', u'safeti']
[u'mistak', u'iraq', u'secur', u'annan']
[u'highlight', u'ambul', u'levi', u'concern']
[u'highlight', u'survey', u'opposit', u'telstra', u'sale']
[u'predict', u'hanson', u'jail', u'unlik', u'hurt']
[u'continu', u'ethanol', u'support', u'push']
[u'march', u'road', u'closur']
[u'netbal', u'hot', u'court']
[u'liberian', u'leader', u'choos']
[u'nicholson', u'search', u'move', u'interst']
[u'bird', u'avellino']
[u'north', u'west', u'carer', u'lose', u'centrelink', u'benefit']
[u'govt', u'offer', u'indigen', u'pharmaci', u'assur']
[u'offici', u'want', u'kelli', u'inquiri', u'hear']
[u'opal', u'head', u'europ']
[u'opposit', u'gag', u'speak', u'tuckey', u'matter']
[u'oxford', u'bada', u'be', u'latest', u'dictionari']
[u'pacer', u'sign', u'reggi', u'miller']
[u'seek', u'defend', u'titl', u'season']
[u'quiet', u'diplomaci', u'china']
[u'weigh', u'warn', u'debat']
[u'polic', u'follow', u'lead', u'hunt', u'robber']
[u'polic', u'investig', u'bodi', u'boot']
[u'polic', u'search', u'pair', u'threaten', u'babi']
[u'polic', u'seiz', u'alleg', u'counterfeit', u'good']
[u'polic', u'appeal', u'dismiss', u'assault', u'charg']
[u'power', u'station', u'revamp', u'track']
[u'probe', u'begin', u'derail']
[u'lincoln', u'polic', u'continu', u'investig']
[u'public', u'crime', u'fight', u'plan']
[u'pure', u'antarct', u'water', u'explos', u'drawcard']
[u'qanta', u'bank', u'drive', u'sharemarket', u'higher']
[u'qanta', u'blame', u'sar', u'profit', u'slump']
[u'qanta', u'consid', u'cost', u'carrier']
[u'govt', u'urg', u'rethink', u'fish', u'restrict']
[u'percent', u'foreign', u'own']
[u'rail', u'group', u'upset', u'council', u'insur', u'decis']
[u'rate', u'rise', u'need', u'cover', u'fund', u'shortfal']
[u'record', u'crowd', u'predict', u'swan', u'pie', u'clash']
[u'renmark', u'gear', u'retire', u'gather']
[u'repent', u'mugger', u'tell', u'victim', u'spit']
[u'resid', u'want', u'bridg', u'safeti']
[u'ratepay', u'urg', u'attend', u'water', u'meet']
[u'rise', u'sight', u'tour']
[u'rubi', u'trial', u'mine', u'begin']
[u'ruddock', u'launch', u'aborigin', u'domest', u'violenc']
[u'sack', u'doctor', u'speak']
[u'schumach', u'penalti', u'chang', u'fine']
[u'search', u'continu', u'miss']
[u'spong', u'fibr', u'optic', u'cabl', u'beat']
[u'second', u'charg', u'woman', u'death']
[u'second', u'probe', u'bass', u'strait', u'ferri', u'incid']
[u'shop', u'centr', u'urg', u'cover', u'polic', u'beat', u'cost']
[u'kill', u'aceh']
[u'snakebot', u'join', u'british', u'spook']
[u'snowdon', u'air', u'mobil', u'phone', u'telstra', u'sale', u'concern']
[u'solomon', u'forc', u'happi', u'handov']
[u'solomon', u'intervent', u'enter', u'danger', u'phase']
[u'staff', u'miss', u'baghdad']
[u'springborg', u'offer', u'broker', u'sugar', u'impass']
[u'lanka', u'spinner', u'suspend', u'crash']
[u'stinger', u'research', u'earn', u'award']
[u'storm', u'batter', u'western']
[u'sunburn', u'warn', u'studi', u'find', u'larger', u'ozon', u'hole']
[u'suncorp', u'worker', u'worri', u'secur']
[u'support', u'countri', u'victoria', u'jail', u'hanson']
[u'telstra', u'reject', u'poor', u'servic', u'claim']
[u'telstra', u'respond', u'phone', u'survey', u'find']
[u'thai', u'govt', u'step', u'secur', u'apec', u'summit']
[u'tourism', u'group', u'adopt', u'market', u'strategi']
[u'tshirt', u'spark', u'vilif', u'debat']
[u'begin', u'partial', u'evacu', u'jordan']
[u'undef', u'hockeyroo', u'face', u'netherland']
[u'blame', u'iraq', u'blast', u'foreign', u'terrorist']
[u'citizen', u'warn', u'terrorist', u'threat', u'yemen']
[u'consid', u'sanction', u'iceland']
[u'rule', u'send', u'troop', u'iraq']
[u'soldier', u'kill', u'iraq', u'accid']
[u'soldier', u'kill', u'wound', u'baghdad']
[u'view', u'iraq', u'troop', u'level', u'adequ']
[u'vaughan', u'wari', u'pollock', u'absenc']
[u'bushfir', u'fallout', u'creat', u'job']
[u'honour', u'help', u'marriott', u'bomb']
[u'warn', u'seek', u'meet', u'cricket', u'boss']
[u'watson', u'swing', u'thing']
[u'wentworth', u'council', u'consid', u'hous', u'plan']
[u'west', u'sydney', u'rail', u'link', u'plan', u'dead']
[u'whale', u'crash', u'famili', u'boat', u'trip']
[u'wildcat', u'sign', u'latim']
[u'wind', u'blade', u'factori', u'viabil', u'uncertain']
[u'women', u'draw', u'strength', u'weak']
[u'woodchip', u'boost', u'bunburi', u'economi']
[u'wood', u'withdraw', u'matchplay', u'event']
[u'wool', u'group', u'seek', u'china', u'agreement']
[u'wooli', u'caltex', u'join', u'forc']
[u'world', u'bank', u'postpon', u'iraqi', u'work']
[u'youngster', u'cole', u'elbow', u'mutu', u'chelsea']
[u'charg', u'murder', u'serbian']
[u'anim', u'hospit', u'reciev', u'public', u'backlash']
[u'address', u'drought', u'social', u'impact']
[u'abandon', u'vehicl', u'train', u'crash']
[u'aborigin', u'group', u'win', u'land', u'care', u'award']
[u'school', u'decid', u'condom', u'machin']
[u'unlik', u'appeal', u'hanson', u'sentenc']
[u'alleg', u'attack', u'appear', u'court', u'today']
[u'name', u'safeti', u'shame', u'list']
[u'anderson', u'prais', u'region', u'airlin', u'extra', u'flight']
[u'andren', u'vote', u'telstra']
[u'argentina', u'pave', u'dirti', u'trial']
[u'want', u'explan', u'warn', u'victorian']
[u'aspinal', u'reject', u'fals', u'damag', u'alleg']
[u'aussi', u'gymnast', u'celebr', u'bronz', u'success']
[u'aussi', u'place', u'nevada']
[u'australia', u'arab', u'council', u'aim', u'improv', u'trade', u'tie']
[u'australia', u'bomb', u'victim', u'land', u'transit', u'germani']
[u'australia', u'post', u'pay', u'worker', u'skin', u'cancer', u'cost']
[u'backpack', u'group', u'question', u'croc', u'captur']
[u'backpack', u'industri', u'attack', u'shame', u'list', u'tabl']
[u'barrichello', u'raikkonen', u'play', u'cool', u'german']
[u'beatti', u'highlight', u'safeti', u'failur']
[u'bell', u'back', u'origin', u'concept']
[u'daniel', u'join', u'croc']
[u'blair', u'testifi', u'iraq', u'inquiri']
[u'boat', u'blast', u'inquest', u'find', u'know', u'soon']
[u'bodi', u'miss', u'heron', u'creek']
[u'brazil', u'tropic', u'space', u'base', u'blast']
[u'brisban', u'tool', u'haul', u'seiz', u'sydney']
[u'busi', u'name', u'safeti', u'complianc']
[u'caltex', u'share', u'leap', u'supermarket', u'allianc']
[u'cancer', u'group', u'hop', u'bumper', u'daffodil']
[u'cane', u'toad', u'threat', u'spark', u'fenc']
[u'capriati', u'battl', u'semi', u'final']
[u'central', u'victoria', u'warn', u'brace']
[u'chines', u'die', u'mustard', u'exposur']
[u'chopper', u'rescu', u'servic', u'make', u'chang', u'crash']
[u'commerci', u'fishermen', u'seek', u'compens']
[u'concern', u'quota', u'aust', u'beef', u'export']
[u'confus', u'solomon', u'licenc']
[u'council', u'approv', u'rural', u'plan']
[u'council', u'offer', u'abattoir', u'close']
[u'council', u'join', u'anti', u'merger', u'list']
[u'council', u'approach', u'clean', u'work', u'ban']
[u'council', u'outlin', u'merger', u'opposit']
[u'court', u'clear', u'land']
[u'csiro', u'call', u'aerial', u'firefight', u'review']
[u'csiro', u'warn', u'fund']
[u'damir', u'pip', u'shane', u'warney']
[u'decis', u'await', u'town', u'plan', u'appeal']
[u'mello', u'buri', u'franc', u'brazil', u'wake']
[u'earli', u'start', u'consid', u'bushfir', u'danger', u'period']
[u'edward', u'retir', u'world', u'championship']
[u'edward', u'compet', u'pari', u'coach']
[u'esso', u'lament', u'picket', u'impact']
[u'european', u'citi', u'line', u'host', u'america']
[u'extra', u'fund', u'emerg', u'accommod']
[u'famili', u'asylum', u'seeker', u'move', u'port', u'hedland']
[u'father', u'tell', u'cheat', u'death']
[u'fear', u'ethanol', u'plan', u'fold']
[u'fear', u'independ', u'petrol', u'industri']
[u'fenc', u'wont', u'stop', u'spread', u'cane', u'toad', u'expert']
[u'figur', u'age', u'shoalhaven', u'popul']
[u'forc', u'coach', u'agre', u'stay']
[u'insur', u'agent', u'jail', u'theft']
[u'good', u'rainfal', u'lift', u'status']
[u'govt', u'accus', u'sit', u'hepat', u'report']
[u'govt', u'begin', u'hard', u'sell', u'telstra', u'vote']
[u'govt', u'launch', u'citizenship', u'drive']
[u'govt', u'urg', u'releas', u'south', u'coast', u'rail', u'report']
[u'grandfath', u'fin', u'drug', u'weapon']
[u'group', u'predict', u'slight', u'eas', u'doctor', u'shortag']
[u'hama', u'launch', u'rocket', u'isra', u'town']
[u'hame', u'put', u'pakistan', u'command']
[u'hanson', u'jail', u'see', u'witch', u'hunt']
[u'hanson', u'hour', u'observ']
[u'hawk', u'crush', u'blue']
[u'heartland', u'tourism', u'excel', u'servic']
[u'hospit', u'orthopaed', u'crisi', u'continu']
[u'hostel', u'fail', u'safeti', u'standard']
[u'howard', u'stand', u'hanson', u'comment']
[u'howard', u'visit', u'solomon', u'week']
[u'howard', u'weigh', u'warn', u'debat']
[u'hume', u'council', u'reject', u'merger', u'plan']
[u'icpa', u'voic', u'telstra', u'sale', u'opposit']
[u'illeg', u'arm', u'hotlin', u'solomon', u'island']
[u'import', u'keen', u'help', u'croc']
[u'injur', u'safin', u'cana', u'withdraw', u'open']
[u'investig', u'continu', u'polic', u'shoot']
[u'iranian', u'mass', u'deport', u'delay', u'court']
[u'iraq', u'intellig', u'inquiri', u'begin', u'today']
[u'irrig', u'firm', u'back', u'kosciuszko', u'cloud', u'seed', u'plan']
[u'isol', u'case', u'anthrax', u'region', u'victoria']
[u'italian', u'miner', u'plight', u'movi']
[u'jakarta', u'order', u'busi', u'tighten', u'secur']
[u'japanes', u'beef', u'tariff', u'shut', u'abattoir']
[u'network', u'provid', u'pay', u'despit', u'target']
[u'kalgoorli', u'vie', u'parliament', u'sit']
[u'kean', u'back', u'arsenal', u'vieira', u'cri', u'foul']
[u'kelli', u'predict', u'death', u'wood']
[u'kill', u'hama', u'leader', u'ugli', u'crime', u'palestinian']
[u'kirsten', u'rescu', u'south', u'african', u'inning']
[u'korea', u'march']
[u'labor', u'concern', u'pressur', u'privatis']
[u'labor', u'reconsid', u'kaiser', u'appoint', u'nat']
[u'landhold', u'urg', u'bite', u'wild', u'dog']
[u'lead', u'health', u'group', u'push', u'rise', u'alcohol']
[u'leppitsch', u'brisban']
[u'malaria', u'studi', u'win', u'fund', u'inject']
[u'malthous', u'say', u'final', u'footi', u'begin', u'earli']
[u'jail', u'suppli', u'drug']
[u'rush', u'hospit', u'hous', u'rescu']
[u'sentenc', u'year', u'prostitut', u'rape']
[u'stab', u'road', u'rage', u'attack']
[u'kean', u'emerg', u'defend']
[u'meet', u'call', u'hospit', u'cardiologist']
[u'charg', u'rape', u'fellow', u'inmat']
[u'industri', u'reject', u'poor', u'work', u'condit', u'claim']
[u'montoya', u'play', u'titl', u'prospect']
[u'hold', u'mini', u'alcohol', u'abus', u'summit']
[u'gambier', u'studi', u'drug', u'alcohol', u'servic']
[u'moot', u'plan', u'super', u'council']
[u'nat', u'think', u'educ', u'polici', u'chang', u'workabl']
[u'netbal', u'australia', u'decid', u'team']
[u'netherland', u'pakistan', u'march', u'hockey', u'final']
[u'inquiri', u'launch', u'game']
[u'islamist', u'group', u'claim', u'baghdad', u'bomb']
[u'virus', u'spread', u'faster']
[u'russian', u'soldier', u'kill', u'chechnya']
[u'north', u'korea', u'demand', u'hostil', u'polici']
[u'opposit', u'promis', u'cooper', u'water']
[u'polic', u'arrest', u'ecstasi', u'haul']
[u'nurs', u'await', u'redund', u'decis']
[u'oldfield', u'unconcern', u'case', u'preced']
[u'pakistan', u'claim', u'indian', u'kill', u'kashmir']
[u'palestinian', u'shore', u'peac', u'process']
[u'palestinian', u'flock', u'hama', u'figur', u'funer']
[u'paradorn', u'breez', u'quarter']
[u'peac', u'ralli', u'mark', u'solomon', u'amnesti']
[u'dismiss', u'wilki', u'claim', u'iraqi', u'intellig']
[u'say', u'hanson', u'sentenc', u'sever']
[u'offic', u'sex', u'iraq', u'threat']
[u'polic', u'confus', u'polic', u'chase', u'lingo', u'coron']
[u'polic', u'investig', u'bodi']
[u'polic', u'investig', u'spate', u'death', u'famili']
[u'polic', u'probe', u'fatal', u'crash']
[u'polic', u'oppos', u'bail', u'accus', u'teen', u'rapist']
[u'politician', u'criticis', u'comment', u'hanson']
[u'posti', u'union', u'threaten', u'strike', u'daylight']
[u'powel', u'urg', u'greater', u'pressur', u'middl', u'east']
[u'power', u'cost', u'rise', u'region']
[u'power', u'earthquak', u'hit']
[u'prais', u'meningococc', u'vaccin', u'effort']
[u'gain', u'feder', u'elector']
[u'nation', u'maintain', u'stanc', u'telstra', u'sale']
[u'opposit', u'back', u'safeti', u'shame', u'list']
[u'reef', u'rezon', u'submiss', u'longer', u'process']
[u'refshaug', u'tour', u'macleay', u'school']
[u'report', u'highlight', u'bridg', u'concern']
[u'resid', u'quick', u'oppos', u'speed', u'reduct', u'plan']
[u'grower', u'reject', u'water', u'restrict', u'plan']
[u'rural', u'press', u'make', u'harri', u'compani']
[u'saddam', u'arrest', u'close', u'chemic', u'ali', u'captur']
[u'sampra', u'retir', u'offici']
[u'search', u'underway', u'escap', u'killer']
[u'share', u'market', u'end', u'week', u'month', u'high']
[u'month', u'wait', u'clean', u'drink', u'water']
[u'state', u'govern', u'concern', u'assault', u'charg']
[u'steal', u'explos', u'recov']
[u'storm', u'put', u'dragon']
[u'strong', u'economi', u'help', u'fight', u'terror', u'howard']
[u'strong', u'wind', u'warn', u'south', u'west']
[u'govt', u'highlight', u'age', u'care', u'fund', u'shortfal']
[u'telstra', u'sale', u'worri', u'remot', u'famili']
[u'tendulkar', u'compil', u'centuri', u'waugh']
[u'toad', u'proof', u'fenc', u'moot']
[u'tourism', u'oper', u'frustrat', u'camp', u'closur']
[u'tran', u'tasman', u'disput', u'break', u'quak']
[u'trial', u'corp', u'execut', u'delay']
[u'arrest', u'iranian', u'argentin', u'bomb', u'attack']
[u'forc', u'kill', u'congo', u'militiaman']
[u'union', u'back', u'coal', u'termin', u'push']
[u'unusu', u'turtl', u'display', u'tasmania']
[u'ask', u'coalit', u'member', u'iraq']
[u'confirm', u'death', u'serial', u'sniper']
[u'economi', u'show', u'sign', u'recoveri']
[u'help', u'stop', u'toothfish', u'poach']
[u'soldier', u'kill', u'fight', u'iraq']
[u'secur', u'council', u'discuss', u'action']
[u'vandal', u'target', u'toowoomba', u'church']
[u'polic', u'minist', u'back', u'commission']
[u'volunt', u'work', u'pay', u'landcar', u'award']
[u'wale', u'wari', u'england']
[u'waltz', u'matilda', u'go', u'strong']
[u'waltz', u'matilda', u'year', u'jingl']
[u'take', u'dart', u'championship']
[u'record', u'rare', u'snowfal']
[u'warn', u'wife', u'stand']
[u'warn', u'withdraw', u'offici', u'train']
[u'western', u'popul', u'predict', u'chang', u'littl']
[u'help', u'china', u'prevent', u'diseas']
[u'hold', u'men', u'event']
[u'woman', u'die', u'accid']
[u'wound', u'tiger', u'bite']
[u'critic', u'victorian', u'power', u'generat']
[u'dead', u'brazilian', u'satellit', u'launch', u'explos']
[u'matern', u'servic', u'review']
[u'alleg', u'archbishop', u'frighten']
[u'annan', u'appoint', u'envoy', u'iraq']
[u'annan', u'warn', u'iraq', u'troop', u'resolut', u'unlik']
[u'want', u'explan', u'warn', u'victorian']
[u'aussi', u'annan', u'help', u'dutch', u'edg', u'hockeyroo']
[u'baghdad', u'polic', u'arrest', u'major', u'arm']
[u'bashar', u'lead', u'bangladesh', u'fight']
[u'beatti', u'predict', u'nation', u'backlash']
[u'blast', u'southern', u'pakistan', u'injur']
[u'bomber', u'thrash', u'docker']
[u'brazil', u'pay', u'homag', u'sergio', u'vieira', u'mello']
[u'brazil', u'forg', u'ahead', u'space', u'program', u'despit']
[u'britain', u'grade', u'mathematician', u'age']
[u'british', u'headmistress', u'hold', u'swindl']
[u'bronco', u'lose', u'swain', u'warrior', u'clash']
[u'bush', u'commit', u'middl', u'east', u'peac', u'effort']
[u'bush', u'freez', u'asset', u'hama', u'leader']
[u'strip', u'search', u'women', u'prison']
[u'boost', u'art', u'fund']
[u'canada', u'arrest', u'terror', u'concern']
[u'canadian', u'forc', u'flee']
[u'carter', u'target', u'world']
[u'church', u'member', u'hold', u'talk', u'minist']
[u'claim', u'backyard', u'drain', u'pool', u'law']
[u'claim', u'govt', u'overlook', u'local', u'firm']
[u'claim', u'hec', u'chang', u'push', u'enrol']
[u'council', u'fin', u'pollut', u'creek']
[u'coupl', u'sentenc', u'life', u'woman', u'murder']
[u'cowboy', u'skin', u'rabbit']
[u'davenport', u'capriati', u'battl', u'haven', u'titl']
[u'mello', u'honour', u'airport', u'ceremoni']
[u'mello', u'bodi', u'arriv', u'brazil']
[u'eel', u'club', u'record', u'shark']
[u'elder', u'mother', u'dead', u'unit']
[u'elder', u'woman', u'strike', u'accid']
[u'elector', u'bodi', u'reject', u'call', u'review', u'wake']
[u'email', u'worm', u'start', u'porn', u'newsgroup', u'expert']
[u'england', u'chase', u'strong', u'start']
[u'eritrean', u'govt', u'deni', u'journalist', u'detain']
[u'arrest', u'sydney', u'drug', u'raid']
[u'marin', u'charg', u'abduct', u'girl']
[u'form', u'guid', u'men', u'field', u'event']
[u'form', u'guid', u'men', u'track', u'event']
[u'form', u'guid', u'women', u'field', u'event']
[u'form', u'guid', u'women', u'track', u'event']
[u'franc', u'announc', u'farmer', u'drought']
[u'franc', u'hand', u'romania', u'rugbi', u'lesson']
[u'global', u'race', u'clock', u'beat', u'virus']
[u'global', u'race', u'mail', u'virus', u'make', u'progress']
[u'govt', u'accus', u'withhold', u'bulk', u'bill', u'figur']
[u'govt', u'admit', u'age', u'workforc', u'problem']
[u'govt', u'lie', u'time', u'iraq', u'wilki', u'say']
[u'govt', u'move', u'discredit', u'intellig', u'offic']
[u'govt', u'tightlip', u'cabinet', u'reshuffl', u'specul']
[u'green', u'prove', u'doubter', u'wrong']
[u'hama', u'vow', u'step', u'suicid', u'attack']
[u'hanson', u'adjust', u'prison', u'life', u'beatti']
[u'hanson', u'sentenc', u'revitalis', u'parti', u'nation', u'say']
[u'health', u'insur', u'contract', u'negoti', u'break']
[u'hewitt', u'ponder', u'footbal', u'career']
[u'hmas', u'sydney', u'welcom', u'home']
[u'hop', u'petit', u'push', u'church', u'overturn']
[u'illeg', u'fish', u'boat', u'uruguay', u'sight']
[u'indonesian', u'provinc', u'inaugur', u'spark', u'clash']
[u'inquiri', u'open', u'brazilian', u'rocket', u'explos']
[u'investig', u'focus', u'insid', u'blast']
[u'jack', u'captain', u'blood', u'dyer', u'die']
[u'kenyan', u'vice', u'presid', u'die', u'london', u'hospit']
[u'kookaburra', u'play', u'champion', u'trophi', u'final']
[u'kuerten', u'fall', u'quarter', u'final']
[u'lawyer', u'urg', u'caution', u'accept', u'compens']
[u'liabil', u'case', u'wake', u'employ']
[u'liberian', u'rebel', u'launch', u'attack']
[u'lion', u'strong', u'cat', u'gabba']
[u'local', u'debut', u'hungarian']
[u'magpi', u'beat', u'swan', u'olymp', u'stadium']
[u'magpi', u'beat', u'swan', u'lion', u'cat']
[u'malthous', u'underestim', u'swan']
[u'charg', u'attempt', u'rape', u'english', u'tourist']
[u'kill', u'injur', u'crash']
[u'meaa', u'call', u'intervent', u'newspap', u'takeov']
[u'kill', u'tear', u'aceh']
[u'govt', u'survey', u'peopl', u'fear', u'crime']
[u'oppn', u'criticis', u'crime', u'survey', u'propos']
[u'oppn', u'criticis', u'icac', u'face', u'investig']
[u'landcar', u'award', u'winner', u'announc']
[u'team', u'confid', u'ahead', u'north', u'clash']
[u'offic', u'receiv', u'funer', u'polic', u'honour']
[u'palestinian', u'author', u'condemn', u'attack']
[u'palestinian', u'help', u'mediat', u'truce']
[u'panic', u'pragu', u'croc', u'leap', u'freedom']
[u'panther', u'carv', u'tiger']
[u'panther', u'carv', u'tiger']
[u'perez', u'break', u'world', u'record', u'walk']
[u'announc', u'murray', u'rescu', u'plan']
[u'pay', u'respect', u'remark', u'macdonald']
[u'visit', u'solomon', u'island']
[u'polic', u'releas', u'sketch', u'sniper', u'suspect']
[u'polic', u'offic', u'honour', u'fatal', u'shoot']
[u'polic', u'identifi', u'shoot', u'killer', u'bodi']
[u'redund', u'rumour', u'lay', u'rest', u'polic', u'union']
[u'refuge', u'advoc', u'slam', u'latest', u'report', u'deport']
[u'refuge', u'group', u'fume', u'iranian', u'men', u'treatment']
[u'roo', u'upset', u'crow', u'adelaid']
[u'russian', u'scientist', u'help', u'build', u'latest', u'european']
[u'lib', u'elect', u'presid']
[u'sandpip', u'exit', u'style']
[u'prais', u'howard', u'murray', u'rescu', u'plan']
[u'seven', u'resort', u'issu', u'safeti', u'notic']
[u'teacher', u'accept', u'offer']
[u'teacher', u'vote', u'govt', u'latest', u'offer']
[u'team', u'support', u'ax', u'canadian']
[u'thai', u'polic', u'arrest', u'terrorist', u'suspect']
[u'thirti', u'kill', u'chines', u'traffic', u'accid']
[u'thousand', u'gather', u'melbourn', u'sneak', u'peak']
[u'thousand', u'protest', u'canada', u'plan', u'marriag']
[u'british', u'soldier', u'kill', u'iraq']
[u'tom', u'riley', u'share', u'inviat', u'lead']
[u'lifesav', u'darwin', u'fundrais', u'event']
[u'embassi', u'iraq', u'evacu', u'credibl', u'threat']
[u'resist', u'british', u'call', u'send', u'troop']
[u'resum', u'work', u'baghdad']
[u'team', u'start', u'work', u'liberia']
[u'rule', u'extern', u'incent', u'north', u'korea']
[u'stock', u'stumbl', u'intel', u'impact', u'evapor']
[u'venus', u'pull', u'open']
[u'judici', u'soft', u'say']
[u'veteran', u'funer', u'hold', u'week']
[u'toughen', u'energi', u'suppli', u'safeti', u'legisl']
[u'webber', u'pace', u'hungari']
[u'world', u'wait', u'end', u'lomu', u'monday']
[u'flee', u'canadian', u'forest']
[u'respond', u'report', u'broadcast', u'bomb', u'make']
[u'govt', u'select', u'appli', u'tuckey', u'say']
[u'amp', u'imag', u'take', u'mohl', u'say']
[u'focus', u'region', u'base', u'busi']
[u'anderson', u'disgust', u'doubl', u'send']
[u'arafat', u'ask', u'europ', u'help', u'save', u'peac', u'process']
[u'argentina', u'thump', u'canada', u'beat', u'uruguay']
[u'dead', u'iraqi', u'ethnic', u'clash']
[u'australia', u'post', u'worker', u'fight', u'discrimin']
[u'aust', u'want', u'high', u'sea', u'chase', u'court']
[u'barrichello', u'raikkonen', u'clear', u'german', u'crash']
[u'beatti', u'back', u'aspinal', u'amid', u'abus', u'claim']
[u'beatti', u'defend', u'kaiser', u'appoint']
[u'biograph', u'pay', u'tribut', u'decor', u'veteran']
[u'brazilian', u'rocket', u'explos', u'death', u'toll', u'rise']
[u'bronco', u'warrior', u'level', u'brutal', u'encount']
[u'brumbi', u'dismiss', u'improp', u'public', u'land', u'sale', u'claim']
[u'butler', u'keen']
[u'butler', u'expand', u'role', u'governor']
[u'mello', u'nomin', u'nobel', u'prize']
[u'inquiri', u'convict', u'killer', u'escap']
[u'capriati', u'claim', u'haven', u'titl']
[u'claim', u'rule', u'chang', u'sky', u'smoggier']
[u'claim', u'alleg', u'fish', u'poacher', u'conceal', u'boat']
[u'clark', u'captur', u'invit', u'lead']
[u'deplet', u'england', u'overpow', u'wale']
[u'timor', u'presid', u'attempt', u'reconcili', u'talk']
[u'fall', u'power', u'line', u'spark', u'hous']
[u'famili', u'visit', u'hanson', u'prison']
[u'food', u'poison', u'hit', u'chines', u'construct', u'site']
[u'mayor', u'prais', u'aust', u'hero']
[u'govt', u'sell', u'pension', u'home', u'welfar']
[u'health', u'minist', u'want', u'sign', u'deal', u'patterson', u'say']
[u'hockeyroo', u'dutch', u'nation', u'final']
[u'hope', u'fact', u'sheet', u'help', u'famili', u'understand']
[u'howard', u'meet', u'mayor']
[u'hunt', u'begin', u'basra', u'attack']
[u'hutton', u'inquiri', u'releas', u'classifi', u'document']
[u'illeg', u'brothel', u'warn', u'law']
[u'immigr', u'dept', u'tightlip', u'whereabout']
[u'indonesian', u'govt', u'honour', u'stone', u'presidenti']
[u'iran', u'want', u'apolog', u'diplomat', u'arrest']
[u'japanes', u'kill', u'climb', u'peak', u'pakistan']
[u'kean', u'happi', u'lament', u'sloppi', u'unit']
[u'kestrel', u'bump', u'bird', u'second', u'place']
[u'kirsten', u'put', u'protea']
[u'kluft', u'ader', u'shine', u'perez', u'take', u'golden', u'walk']
[u'kookaburra', u'storm', u'champion', u'trophi', u'final']
[u'levi', u'patient', u'hardest', u'doctor', u'fund', u'say']
[u'liberian', u'report', u'fresh', u'fight', u'thousand', u'flee']
[u'lower', u'rainfal', u'eas', u'flashflood', u'fear']
[u'charg', u'alleg', u'kidnap', u'student']
[u'charg', u'babi', u'manslaught']
[u'kill', u'injur', u'crash', u'traffic']
[u'unit', u'chelsea', u'maintain', u'perfect', u'start']
[u'mcgee', u'claim', u'stage', u'ekimov', u'win', u'tour']
[u'newcastl', u'resid', u'warn', u'toxic', u'fume']
[u'law', u'target', u'busi', u'leas', u'agreement']
[u'korean', u'media', u'involv', u'scuffl', u'game']
[u'extend', u'deadlin', u'transport', u'plan', u'submiss']
[u'capit', u'shake', u'small', u'earthquak']
[u'oldest', u'veteran', u'die']
[u'dead', u'storm', u'lash', u'east', u'coast']
[u'pakistan', u'cours', u'victori']
[u'palestinian', u'forc', u'crack', u'islam', u'milit']
[u'palestinian', u'polic', u'begin', u'tunnel', u'crackdown']
[u'palestinian', u'launch', u'rocket', u'attack', u'israel']
[u'paradorn', u'crush', u'kiefer', u'reach', u'final']
[u'polic', u'identifi', u'student', u'boot']
[u'poll', u'show', u'voter', u'turn', u'bush']
[u'port', u'tiger', u'saint', u'whip', u'dog', u'eagl', u'beat']
[u'port', u'keep', u'win', u'feel', u'tiger']
[u'qanta', u'consid', u'cost', u'airlin']
[u'raider', u'beat', u'knight', u'head']
[u'resurg', u'ranger', u'celtic', u'spot']
[u'robert', u'famili', u'thank', u'killer', u'jail', u'life']
[u'rwandan', u'leader', u'accus', u'vote', u'rig', u'attempt']
[u'scotland', u'score', u'record', u'itali']
[u'second', u'half', u'blitz', u'see', u'rooster', u'past', u'man']
[u'sergio', u'vieira', u'mello', u'fall', u'hero', u'annan']
[u'ship', u'suspect', u'dump', u'spanish', u'coast']
[u'kill', u'plane', u'crash', u'germani']
[u'sobig', u'virus', u'expect', u'attack']
[u'sommeil', u'hero', u'villain', u'citi', u'everton', u'overcom']
[u'state', u'urg', u'accept', u'generous', u'health', u'packag']
[u'stem', u'cell', u'research', u'bring', u'lung', u'diseas', u'cure', u'closer']
[u'kilda', u'good', u'bulldog']
[u'sydney', u'woman', u'kill', u'train']
[u'take', u'life', u'snail', u'pace', u'spain']
[u'thai', u'polic', u'kill', u'drug', u'traffick']
[u'charg', u'polic', u'drug']
[u'finish', u'anlezark', u'adam']
[u'tribut', u'flow', u'jack', u'captain', u'blood', u'dyer']
[u'fishermen', u'rescu']
[u'chief', u'pay', u'respect', u'envoy']
[u'resum', u'work', u'iraq']
[u'celebr', u'king', u'landmark', u'speech']
[u'comedian', u'win', u'british', u'award']
[u'paedophil', u'priest', u'kill', u'prison', u'attack']
[u'question', u'public', u'land', u'sale']
[u'virgin', u'edg', u'qanta', u'dixon']
[u'plan', u'tough', u'crack', u'hoon']
[u'warn', u'flee', u'countri']
[u'warrior', u'bronco', u'brutal', u'encount']
[u'warrior', u'bronco', u'rooster', u'raider']
[u'wealthi', u'exploit', u'matern', u'allow', u'loophol', u'oppn']
[u'webber', u'fastest', u'hungari']
[u'webb', u'fire', u'content']
[u'west', u'coast', u'good', u'melbourn']
[u'woman', u'dead', u'child', u'injur', u'crash']
[u'woman', u'sexual', u'assault', u'hobart', u'citi', u'area']
[u'expect', u'veteran', u'funer']
[u'abbott', u'defend', u'role', u'hanson', u'case']
[u'accc', u'tell', u'butt', u'pipelin', u'industri']
[u'agassi', u'roddick', u'lead', u'men', u'charg', u'open']
[u'age', u'care', u'centr', u'shut', u'door']
[u'age', u'care', u'nurs', u'vote', u'interim', u'offer']
[u'alcohol', u'abus', u'agenda']
[u'alonso', u'make', u'histori', u'hungari']
[u'anderson', u'tightlip', u'fund', u'debat', u'save']
[u'arroyo', u'releas', u'rogu', u'filipino', u'soldier']
[u'atsic', u'commission', u'urg', u'region']
[u'australian', u'help', u'build', u'hubbl', u'devic']
[u'australia', u'flanagan', u'win', u'amateur', u'titl']
[u'author', u'consid', u'water', u'conserv', u'method']
[u'bagpip', u'ruin', u'health', u'report']
[u'bail', u'forc', u'girl', u'detain', u'lock']
[u'barrier', u'reef', u'rezon', u'review']
[u'label', u'murdoch', u'capit', u'imperialist']
[u'bear', u'maul', u'seagul', u'minor', u'premiership']
[u'bekel', u'thwart', u'gebrselassi', u'metr']
[u'snowfal', u'hotham']
[u'bjelk', u'petersen', u'famili', u'express', u'sympathi']
[u'board', u'say', u'health', u'review', u'overlook', u'local', u'expertis']
[u'boundari', u'chang', u'expect', u'boost', u'nat']
[u'british', u'face', u'waterg']
[u'brown', u'criticis', u'govt', u'csiro', u'cut']
[u'buttigieg', u'retir']
[u'better', u'coordin', u'local', u'govt', u'servic']
[u'cambodian', u'polic', u'arrest', u'aust', u'heroin', u'smuggl']
[u'canberra', u'hotel', u'occup']
[u'carr', u'say', u'feder', u'fund', u'inadequ', u'save', u'murray']
[u'cattl', u'theft', u'spotlight']
[u'charvi', u'captain', u'wale', u'scotland']
[u'clairvoy', u'call', u'miss', u'chopper']
[u'clark', u'clinch', u'ohio']
[u'colombian', u'rebel', u'join', u'forc', u'govern']
[u'colston', u'succumb', u'cancer']
[u'commonwealth', u'leas', u'point', u'nepean', u'land']
[u'consult', u'prepar', u'airport', u'master', u'plan']
[u'cooma', u'council', u'seek', u'adaminabi', u'inclus']
[u'costello', u'defend', u'abbott', u'role', u'hanson', u'case']
[u'cottag', u'interim', u'heritag', u'list']
[u'council', u'probe', u'river', u'wast', u'claim']
[u'council', u'rubbish', u'disput', u'intensifi']
[u'court', u'order', u'children', u'releas', u'detent']
[u'court', u'tell', u'lighten', u'caus', u'major', u'bushfir']
[u'cricket', u'boss', u'reinforc', u'train']
[u'crime', u'explos', u'figur', u'outdat', u'polic']
[u'croc', u'hop', u'wrap', u'veal', u'deal']
[u'crow', u'need', u'bounc', u'say', u'carey']
[u'decis', u'defenc', u'land', u'public', u'hand']
[u'doctor', u'group', u'predict', u'fewer', u'region']
[u'dont', u'blame', u'iraqi', u'peopl', u'blast', u'aust', u'worker']
[u'doubl', u'mumbai', u'templ', u'bomb', u'kill']
[u'driver', u'face', u'charg', u'fatal', u'crash']
[u'drought', u'sever', u'damag', u'rural', u'south', u'wale']
[u'dutch', u'roll', u'kookaburra', u'hockey', u'final']
[u'elder', u'brumbi', u'fight', u'feder', u'court']
[u'elector', u'money', u'hanson', u'say']
[u'electr', u'crew', u'work', u'restor', u'power']
[u'england', u'world', u'favourit', u'welsh', u'coach']
[u'ettridg', u'lodg', u'fraud', u'appeal']
[u'extra', u'hanson', u'fraud', u'charg', u'drop']
[u'famili', u'institut', u'releas', u'adopt', u'report']
[u'farmer', u'group', u'put', u'case', u'crop', u'benefit']
[u'fear', u'staff', u'plan', u'hurt', u'sport', u'centr']
[u'fergi', u'promis', u'curb', u'futur', u'behaviour']
[u'basebal', u'player', u'win', u'mobil', u'phone', u'throw']
[u'chief', u'want', u'judici', u'inquiri']
[u'tri', u'caucau', u'fiji', u'beat', u'chile']
[u'fremantl', u'tribun', u'tenterhook']
[u'fund', u'address', u'heritag', u'conserv']
[u'gallop', u'reprimand', u'hall']
[u'suppli', u'continu', u'despit', u'disput']
[u'gold', u'coast', u'host', u'intern', u'basebal', u'event']
[u'govt', u'deni', u'request', u'iraq', u'troop']
[u'govt', u'murray', u'river', u'commit', u'stingi']
[u'group', u'consid', u'abrolho', u'island', u'tourism', u'plan']
[u'hagan', u'reflect', u'knight', u'loss']
[u'haitian', u'plane', u'crash', u'kill']
[u'hama', u'say', u'swoop', u'gaza', u'milit', u'doom', u'fail']
[u'hame', u'equal', u'record', u'pakistani']
[u'hanson', u'polit', u'prison', u'bishop']
[u'harsher', u'water', u'restrict', u'possibl']
[u'health', u'centr', u'rebuild', u'locat']
[u'highway', u'project', u'boost', u'visitor', u'number']
[u'high', u'wind', u'help', u'eas', u'flood', u'threat']
[u'high', u'wind', u'leav', u'town', u'dark']
[u'high', u'wind', u'toll', u'south', u'coast']
[u'holland', u'medhurst', u'face', u'tribun']
[u'holt', u'disappear', u'case', u'open']
[u'hop', u'tafe', u'manag', u'remain', u'unchang']
[u'howard', u'ask', u'probe', u'solomon', u'corrupt']
[u'howard', u'express', u'concern', u'aust', u'troop', u'safeti']
[u'howard', u'head', u'solomon']
[u'howard', u'slam', u'wilki', u'iraqi', u'weapon', u'claim']
[u'hundr', u'fear', u'kill', u'liberia', u'massacr']
[u'hundr', u'corps', u'unclaim', u'french', u'morgu']
[u'hungari', u'disast', u'ferrari', u'lauda']
[u'icac', u'begin', u'hear', u'workcov', u'corrupt']
[u'illeg', u'immigr', u'deni', u'bail', u'fatal', u'kidnap', u'case']
[u'illeg', u'indonesian', u'fishermen', u'broom', u'court']
[u'immigr', u'dept', u'forcibl', u'deport', u'iranian']
[u'impress', u'gunner', u'join', u'chelsea']
[u'iraqi', u'asylum', u'seeker', u'await', u'flight', u'home']
[u'irrig', u'group', u'water', u'offer']
[u'isra', u'arab', u'orchestra', u'perform', u'morocco']
[u'isra', u'gunship', u'attack', u'kill', u'palestinian']
[u'japan', u'brace', u'controversi', u'north', u'korea', u'ferri', u'visit']
[u'jess', u'pay', u'tribut', u'dyer']
[u'leader', u'deport', u'indonesia']
[u'johnson', u'amid', u'pari', u'track', u'farc']
[u'joint', u'state', u'oper', u'focus', u'spanner', u'crab']
[u'katsidi', u'happi', u'short', u'fight', u'earli', u'knock']
[u'lamb', u'sale', u'loxton']
[u'later', u'mango', u'season', u'predict']
[u'life', u'sentenc', u'record', u'cocain', u'haul']
[u'lion', u'deal', u'tougher', u'challeng']
[u'local', u'govt', u'support', u'seek', u'youth', u'scheme']
[u'lomu', u'mehrten', u'miss', u'black', u'world', u'squad']
[u'lutheran', u'meet', u'renmark', u'synod']
[u'malaysia', u'deport', u'suspect', u'indonesia']
[u'appear', u'court', u'charg', u'wife', u'murder']
[u'guilti', u'manslaught', u'set']
[u'market', u'pull', u'month', u'high']
[u'milit', u'ambush', u'govt', u'convoy', u'afghanistan', u'dead']
[u'montgomeri', u'look', u'readi', u'emul', u'jone']
[u'air', u'boundari', u'chang', u'concern']
[u'unawar', u'free', u'trade', u'telstra', u'claim']
[u'morgan', u'councillor']
[u'nasa', u'launch', u'telescop']
[u'nasa', u'newest', u'telescop', u'launch']
[u'nat', u'question', u'drought', u'fund']
[u'night', u'record', u'cowboy']
[u'nikolayeva', u'oldest', u'world', u'champion']
[u'declar', u'natur', u'disast', u'zone']
[u'occup', u'health', u'safeti', u'spotlight']
[u'onesteel', u'look', u'asian', u'export', u'market']
[u'opal', u'greec']
[u'paedophil', u'priest', u'kill', u'jail']
[u'paradorn', u'eas', u'past', u'blake', u'retain', u'long', u'island']
[u'partner', u'face', u'assault', u'charg']
[u'peachey', u'face', u'season', u'end', u'charg']
[u'peachey', u'defend', u'season', u'end', u'charg']
[u'pie', u'prepar', u'face', u'essendon']
[u'pioneer', u'celebr']
[u'plan', u'state', u'biggest', u'elector', u'bigger']
[u'address', u'aust', u'troop', u'solomon']
[u'polic', u'critic', u'politician', u'expect', u'rise']
[u'polic', u'search', u'miss', u'woman']
[u'poll', u'flow', u'kingston', u'water', u'consult']
[u'prosecutor', u'seek', u'mukhla', u'death', u'sentenc']
[u'protest', u'greet', u'north', u'korean', u'ferri', u'japan']
[u'cabinet', u'face', u'reshuffl', u'health', u'minist']
[u'seek', u'resolut', u'feder', u'grant', u'delay']
[u'queensland', u'welcom', u'academi']
[u'rain', u'disrupt', u'ralli', u'driver']
[u'rainfal', u'bring', u'good', u'farmer']
[u'rain', u'green', u'region']
[u'rain', u'help', u'boost', u'water', u'storag']
[u'real', u'madrid', u'coach', u'forc', u'sacrific', u'beckham']
[u'rebel', u'massacr', u'report', u'liberia']
[u'wine', u'molecul', u'extend', u'life', u'studi']
[u'renegad', u'fish', u'boat', u'dock', u'uruguay']
[u'rescuer', u'come', u'strand', u'angler']
[u'resid', u'legal', u'action', u'quarri', u'project']
[u'ruddock', u'challeng', u'famili', u'court', u'detent', u'rule']
[u'russian', u'media', u'tycoon', u'gusinski', u'arrest', u'greec']
[u'ruthless', u'west', u'sack', u'roeder']
[u'rwanda', u'vote', u'poll', u'genocid']
[u'govt', u'announc', u'million', u'homeless', u'plan']
[u'schumach', u'vow', u'fight', u'pressur', u'mount']
[u'sculli', u'defend', u'transport', u'minist']
[u'senat', u'push', u'sniffer', u'dog']
[u'continu', u'clean', u'wind', u'whip', u'melbourn']
[u'assault', u'claim', u'spark', u'polic', u'hunt']
[u'shale', u'impact', u'report', u'assess']
[u'shire', u'reject', u'merger']
[u'shire', u'tackl', u'wild', u'problem']
[u'singapor', u'stay', u'polit']
[u'kill', u'colombia', u'river', u'boat', u'blast']
[u'sobig', u'virus', u'slow', u'second', u'attempt', u'fizzl']
[u'south', u'africa', u'mind', u'game', u'victori']
[u'south', u'east', u'record', u'highest', u'student', u'suspens', u'rate']
[u'special', u'polic', u'team', u'badger', u'thiev']
[u'sport', u'instructor', u'join', u'strike']
[u'lanka', u'explor', u'option', u'ahead', u'england', u'tour']
[u'stanhop', u'prepar', u'help', u'fund', u'murray', u'river']
[u'storm', u'highlight', u'problem']
[u'storm', u'emerg', u'worker', u'busi']
[u'strike', u'action', u'loom', u'disput', u'drag']
[u'student', u'bottl', u'drop']
[u'summer', u'firi', u'seek', u'north', u'west']
[u'survey', u'highlight', u'river', u'manag']
[u'survey', u'highlight', u'teen', u'alcohol', u'consumpt']
[u'suspect', u'indonesia', u'mcdonald', u'bomber', u'surrend']
[u'line', u'profit']
[u'tasmania', u'clean', u'storm']
[u'iraqi', u'kill', u'najaf', u'blast']
[u'toowoomba', u'feel', u'insur', u'woe']
[u'tractor', u'accid', u'claim', u'farmer', u'life']
[u'turkish', u'crash', u'kill', u'injur']
[u'tweed', u'shire', u'interest', u'merger']
[u'arrest', u'ahead', u'rwanda', u'elect']
[u'iraqi', u'kill', u'blast', u'near', u'mosqu']
[u'envoy', u'bodi', u'arriv', u'geneva']
[u'union', u'pleas', u'ansett', u'entitl', u'decis']
[u'union', u'want', u'action', u'help', u'teacher', u'deal']
[u'cruis', u'victori', u'virgin', u'island']
[u'govt', u'label', u'point', u'nepean', u'leas', u'commonwealth']
[u'victim', u'warn', u'give', u'evid']
[u'victoria', u'crime', u'rate', u'drop']
[u'warn', u'chariti', u'match', u'spirit', u'cricket']
[u'warn', u'pull', u'chariti', u'match']
[u'warn', u'pull', u'chariti', u'match', u'amid', u'fresh']
[u'white', u'eye', u'sprint', u'doubl', u'metr']
[u'wild', u'weather', u'batter', u'ballarat']
[u'wild', u'weather', u'lash', u'east', u'coast']
[u'woodford', u'folk', u'festiv', u'win', u'boost']
[u'woolworth', u'report', u'best', u'profit', u'year']
[u'workplac', u'danger']
[u'york', u'park', u'crowd', u'undet', u'poor', u'weather']
[u'power']
[u'abbott', u'admit', u'creat', u'anti', u'hanson', u'fund']
[u'abbott', u'help', u'fund', u'nation', u'case', u'businessman', u'say']
[u'adelaid', u'sign', u'mcleod']
[u'condemn', u'bomb', u'report']
[u'ask', u'abbott', u'explain', u'hanson', u'role']
[u'say', u'children', u'releas', u'offer', u'hope']
[u'tell', u'senat', u'sort', u'indemn', u'lose', u'doctor']
[u'analyst', u'say', u'australia', u'send', u'troop']
[u'anelka', u'lift', u'citi']
[u'archer', u'take', u'olymp']
[u'armi', u'chief', u'promis', u'bastardis', u'crackdown']
[u'australia', u'urg', u'boost', u'defenc', u'spend']
[u'aviat', u'expert', u'consid', u'space', u'reform']
[u'post', u'half', u'year', u'profit']
[u'beat', u'drug', u'run', u'prioriti', u'senat']
[u'beatti', u'say', u'phone', u'tower', u'feder', u'issu']
[u'black', u'ampute', u'win', u'right', u'match', u'foot']
[u'boycott', u'threat', u'avert', u'spanish', u'club', u'agre']
[u'brazilian', u'emerson', u'join', u'wolv', u'atletico']
[u'bridg', u'decis', u'load', u'council', u'mind']
[u'brisban', u'polic', u'investig', u'stab', u'murder']
[u'break', u'hill', u'commerci', u'radio', u'licenc', u'sell']
[u'bulldog', u'mourn', u'ware', u'loss']
[u'burma', u'stand']
[u'bush', u'administr', u'call', u'patienc', u'iraq']
[u'busi', u'confid', u'year', u'high']
[u'busi', u'urg', u'elder', u'workforc']
[u'establish', u'alcohol', u'institut']
[u'cameron', u'retir', u'follow', u'tiger', u'hawk', u'clash']
[u'canegrow', u'hop', u'better', u'crop']
[u'carniv', u'atmospher', u'trendi', u'not', u'hill']
[u'child', u'detent', u'rule', u'preced']
[u'clark', u'soar', u'world', u'rank', u'akron']
[u'clijster', u'open', u'account', u'convinc']
[u'collin', u'win', u'world', u'titl', u'pittman']
[u'colston', u'guilti', u'historian', u'stress']
[u'compani', u'respond', u'hotel', u'worker', u'strike']
[u'system', u'blame', u'bushfir', u'respons', u'time']
[u'council', u'lament', u'cost', u'shift', u'impact']
[u'councillor', u'upset', u'vandal', u'cost']
[u'councillor', u'want', u'power', u'water', u'takeov']
[u'council', u'remind', u'submit', u'reform', u'submiss']
[u'council', u'join', u'region', u'develop', u'push']
[u'council', u'urg', u'develop', u'tree', u'regist']
[u'council', u'decid', u'mall', u'market']
[u'council', u'precinct', u'manag', u'plan']
[u'council', u'want', u'dump', u'guarante']
[u'counsel', u'avail', u'student', u'wit']
[u'court', u'approv', u'million', u'settlement']
[u'court', u'ask', u'settlement', u'ahead']
[u'court', u'back', u'land', u'council', u'claim', u'alcoota', u'station']
[u'court', u'releas', u'iranian', u'solitari', u'detent']
[u'croc', u'sign', u'veal', u'year', u'deal']
[u'custom', u'seiz', u'heroin', u'sydney', u'airport']
[u'davenport', u'storm', u'rubin', u'falter']
[u'delay', u'fast', u'rail', u'project', u'cost', u'govt']
[u'deton', u'indian', u'rail', u'track']
[u'doctor', u'make', u'nois', u'hear', u'loss']
[u'domest', u'cat', u'target', u'tasmanian', u'green']
[u'dortmund', u'benfica', u'face', u'champion', u'leagu', u'exit']
[u'drummond', u'face', u'charg', u'track', u'protest']
[u'east', u'timor', u'expect', u'tough', u'talk']
[u'emot', u'sampra', u'bid', u'final', u'farewel']
[u'escap', u'killer', u'turn']
[u'expert', u'warn', u'complac']
[u'explor', u'wilfr', u'thesig', u'dead']
[u'farmer', u'group', u'welcom', u'wheat', u'varieti']
[u'feder', u'govt', u'urg', u'drought', u'centr', u'plan']
[u'ferrari', u'flay', u'italian', u'press']
[u'fertilis', u'supplier', u'urg', u'report', u'suspici']
[u'respons', u'time', u'blame', u'woe']
[u'season', u'prepar', u'begin']
[u'firman', u'action', u'talli', u'return']
[u'firm', u'urg', u'tackl', u'rugbi', u'world', u'opportun']
[u'fish', u'boat', u'chase', u'longest', u'record']
[u'flood', u'watch', u'continu', u'northern']
[u'foster', u'suffer', u'profit', u'loss']
[u'drop', u'lawsuit', u'satirist', u'franken']
[u'gallop', u'unhappi', u'peachey', u'send']
[u'gold', u'coast', u'push', u'ahead']
[u'good', u'respons', u'accommod', u'standard']
[u'greenpeac', u'air', u'shale', u'reef', u'concern']
[u'group', u'unhappi', u'time', u'sceal', u'case']
[u'gunnedah', u'uncertainti', u'affect', u'tender']
[u'hanson', u'support', u'protest', u'prison']
[u'harbi', u'william', u'pursu', u'netbal', u'australia', u'posit']
[u'harradin', u'welcom', u'detain', u'children', u'releas']
[u'hayn', u'sack']
[u'hewitt', u'molik', u'york']
[u'holland', u'medhurst', u'tribun']
[u'human', u'right', u'group', u'claim', u'tri', u'block']
[u'huon', u'resid', u'urg', u'boil', u'water', u'flood']
[u'hussain', u'doubt', u'england', u'fifth', u'test']
[u'hydrotherapi', u'pool', u'consult', u'result', u'loom']
[u'immigr', u'dept', u'prepar', u'deport', u'iranian']
[u'india', u'blame', u'religi', u'tension', u'mumbai', u'blast']
[u'indian', u'govt', u'claim', u'islam', u'group']
[u'inexperienc', u'wale', u'seek', u'moral', u'boost']
[u'insecur', u'surround', u'water', u'secur']
[u'intern', u'campaign', u'commemor', u'eureka']
[u'iranian', u'interrog', u'charg', u'canadian']
[u'israel', u'hand', u'bodi', u'hezbollah', u'fighter']
[u'isra', u'impos', u'jenin', u'curfew']
[u'iverson', u'lead', u'victori', u'canada']
[u'ivori', u'coast', u'rebel', u'kill', u'french', u'soldier']
[u'jellyfish', u'infest', u'close', u'darwin', u'lake', u'alexand']
[u'jull', u'upbeat', u'boundari', u'chang', u'plan']
[u'junior', u'moscow', u'medal', u'tabl']
[u'kalli', u'seal', u'south', u'africa', u'seri', u'lead']
[u'kenyan', u'steeplechas', u'deni', u'shaheen']
[u'labor', u'demand', u'detail', u'abbott', u'trust', u'fund']
[u'labor', u'inject', u'fund', u'youth', u'centr']
[u'lara', u'top', u'test', u'rat']
[u'troop', u'return', u'bougainvill']
[u'lawyer', u'point', u'guard', u'psycholog', u'profil']
[u'legal', u'servic', u'question', u'charg', u'year']
[u'librari', u'defend', u'chopper']
[u'lib', u'look', u'secur', u'edmond', u'seat']
[u'lib', u'want', u'candid', u'grind', u'earli']
[u'lingiari', u'call', u'tuckey', u'sack']
[u'lobbi', u'group', u'expect', u'littl', u'chang', u'edmond']
[u'magpi', u'holland', u'suspend', u'start', u'final']
[u'fin', u'charg']
[u'sentenc', u'steal', u'properti']
[u'mayor', u'death', u'spark', u'elect']
[u'boost']
[u'miss', u'woman', u'safe']
[u'mitchel', u'consist', u'select']
[u'molik', u'clijster', u'rubin', u'falter']
[u'molik', u'open', u'kick']
[u'mortgag', u'lender', u'launch', u'borrow', u'tribun']
[u'think', u'polli', u'rise', u'fair']
[u'want', u'stop', u'alcohol', u'relat', u'crime']
[u'mumbai', u'blast', u'kill']
[u'chairman', u'highlight', u'port', u'import']
[u'restrict', u'plan', u'spanish', u'mackerel']
[u'plan', u'energi']
[u'guarante', u'warn', u'say', u'heali']
[u'warn', u'club', u'brawl', u'player']
[u'busi', u'confid', u'surg']
[u'resid', u'count', u'cost', u'storm']
[u'korean', u'arriv', u'beij', u'nuclear', u'talk']
[u'ocallaghan', u'win', u'footi', u'honour']
[u'olsson', u'champion', u'edward', u'retir']
[u'pakistan', u'look', u'home', u'seri']
[u'papua', u'clash', u'claim', u'life', u'indonesia', u'polic']
[u'patterson', u'say', u'medicar', u'packag', u'misunderstand']
[u'pigeon', u'enthusiast', u'arrest', u'year', u'wife']
[u'deni', u'role', u'hanson', u'slush', u'fund']
[u'polic', u'hunt', u'home', u'invad']
[u'polic', u'investig', u'suspici', u'death']
[u'polic', u'case', u'remand', u'driver', u'custodi']
[u'polli', u'rise', u'spark', u'word']
[u'poll', u'close', u'histor', u'rwanda', u'vote']
[u'prepar', u'work', u'begin', u'miner', u'project']
[u'prison', u'guard', u'expect', u'strike']
[u'probe', u'clear', u'septic', u'tank', u'concern']
[u'public', u'health', u'plan']
[u'publish', u'pictur', u'indigen', u'dictionari']
[u'qanta', u'review', u'properti', u'asset']
[u'govt', u'back', u'airport', u'shop', u'complex']
[u'hold', u'ransom', u'feder', u'health', u'deal']
[u'qraa', u'highlight', u'drought', u'woe']
[u'queensland', u'archer', u'take', u'olymp']
[u'rail', u'branch', u'line', u'fear', u'spark', u'truck', u'concern']
[u'rain', u'boost', u'grain', u'grower', u'harvest', u'hop']
[u'refuge', u'advoc', u'write', u'tampa', u'anniversari']
[u'relax', u'approach', u'bring', u'reward', u'collin']
[u'releas', u'child', u'detaine', u'reunit', u'mother']
[u'research', u'link', u'gene', u'dyslexia']
[u'resid', u'paintbal', u'plan']
[u'resign', u'forc', u'wiluna', u'council', u'collaps']
[u'rise', u'lake', u'boost', u'tourism', u'confid']
[u'river', u'flow', u'recommend', u'spark', u'dairi', u'fear']
[u'roeder', u'west', u'target', u'promot', u'say', u'jam']
[u'rumsfeld', u'deni', u'troop', u'need', u'iraq']
[u'rwandan', u'presid', u'claim', u'poll']
[u'rwanda', u'opposit', u'reject', u'kagam', u'landslid']
[u'sampra', u'quit', u'peac', u'heart']
[u'second', u'firm', u'consid', u'diesel', u'fuel', u'product']
[u'clean', u'storm', u'debri']
[u'crew', u'work', u'time', u'wild', u'weather', u'weekend']
[u'flood', u'call', u'help']
[u'shark', u'face', u'judiciari']
[u'shiit', u'protest', u'najaf', u'cleric', u'attack']
[u'shire', u'defend', u'merger']
[u'snell', u'lead', u'opal', u'yugoslav']
[u'snowi', u'hydro', u'urg', u'water', u'cost', u'offer']
[u'crime', u'rat', u'north', u'west']
[u'crime', u'declin', u'bendigo']
[u'south', u'africa', u'flanker', u'burger']
[u'southcorp', u'pull', u'wast', u'water', u'treatment', u'plan']
[u'spend', u'money', u'univers', u'green']
[u'state', u'territori', u'unit', u'health', u'decis', u'martin']
[u'sunderland', u'join', u'palac']
[u'survey', u'highlight', u'rural', u'confid', u'slump']
[u'suspend', u'justic', u'vow', u'command']
[u'swimmer', u'burn', u'ban', u'dope', u'test']
[u'talli', u'back', u'hall', u'decis']
[u'tamworth', u'council', u'outlin', u'merger', u'plan']
[u'tasmania', u'prepar', u'farewel', u'hero']
[u'thousand', u'expect', u'flock', u'field', u'day']
[u'thousand', u'mourn', u'slay', u'hama', u'milit']
[u'thumb', u'stromlo', u'water', u'treatment', u'plant']
[u'tourism', u'offer', u'naracoort', u'boost']
[u'triumphant', u'renault', u'final', u'flourish']
[u'french', u'soldier', u'kill', u'ivori', u'coast']
[u'year', u'tampa', u'crisi']
[u'tyson', u'sympathi', u'charg', u'bryant']
[u'abandon', u'defenc', u'postur', u'butler']
[u'encourag', u'share', u'power', u'iraq']
[u'launch', u'offens', u'taliban', u'stronghold']
[u'troop', u'captur', u'senior', u'fedayeen', u'fighter']
[u'troop', u'exercis']
[u'vaughan', u'lash', u'scar', u'england']
[u'farmer', u'push', u'restrict', u'fertilis']
[u'wagga', u'alburi', u'declar', u'natur', u'disast', u'area']
[u'wall', u'street', u'light', u'trade']
[u'premier', u'meet', u'aborigin', u'leader', u'boy']
[u'waterfal', u'probe', u'put', u'state', u'rail', u'notic']
[u'waugh', u'claim', u'welsh', u'titl']
[u'whatmor', u'set', u'bangladesh', u'goal', u'second', u'test']
[u'sign', u'deal', u'export', u'nickel', u'china']
[u'worker', u'uncov', u'human', u'bone']
[u'kill', u'religi', u'festiv', u'stamped']
[u'abbott', u'claim', u'hanson', u'slush', u'fund', u'intent']
[u'abbott', u'refus', u'fund', u'contributor']
[u'abbott', u'take', u'wrong', u'path', u'hanson', u'crean']
[u'mazen', u'condemn', u'missil', u'attack']
[u'sign', u'feder', u'health', u'deal']
[u'agassi', u'breed', u'ponder', u'farewel']
[u'agassi', u'arthur', u'chang', u'say', u'goodby']
[u'age', u'care', u'wrangl', u'continu']
[u'airport', u'oper', u'record', u'profit']
[u'alcohol', u'abus', u'stori']
[u'share', u'spark', u'takeov', u'rumour']
[u'arafat', u'accus', u'interfer']
[u'arsenal', u'bronckhorst', u'loan', u'barcelona']
[u'arsenal', u'wenger', u'readi', u'gambl', u'wiltord']
[u'report', u'small', u'drop', u'profit']
[u'dead', u'china', u'firework', u'explos']
[u'aussi', u'women', u'world']
[u'aust', u'firefight', u'send', u'battl', u'fire', u'canada']
[u'author', u'close', u'renegad', u'fish', u'vessel']
[u'avellino', u'trial', u'continu', u'friday']
[u'beckham', u'aim', u'dream', u'bernabeu', u'debut']
[u'bendigo', u'bomber', u'want', u'long', u'essendon', u'partnership']
[u'british', u'chief', u'defend', u'iraq', u'dossier']
[u'brook', u'bring', u'win', u'touch', u'west']
[u'build', u'approv', u'rise', u'townsvill']
[u'build', u'worker', u'stickler', u'crane', u'safeti']
[u'burk', u'hop', u'divis']
[u'bystand', u'kill', u'gaza', u'missil', u'strike']
[u'canada', u'look', u'inform', u'arrest']
[u'capriati', u'start', u'campaign', u'omin', u'mood']
[u'bomb', u'kill', u'region', u'russia', u'offici', u'polic']
[u'carr', u'hit', u'alcohol', u'advertis']
[u'charg', u'child', u'care', u'scrutini']
[u'chelsea', u'deportivo', u'eas', u'champion', u'leagu']
[u'clinic', u'announc', u'public', u'dental', u'servic']
[u'close', u'encount', u'mar', u'kind']
[u'comment', u'seek', u'basin', u'manag', u'plan']
[u'commiss', u'recommend', u'polic', u'charg']
[u'council', u'form', u'growth', u'plan']
[u'councillor', u'fail', u'overturn', u'hospit', u'revamp']
[u'council', u'unit', u'oppos', u'merger', u'plan']
[u'council', u'take', u'action', u'stop', u'weed', u'spread']
[u'court', u'reject', u'block', u'iranian', u'deport']
[u'court', u'rule', u'crane', u'deal', u'wont', u'affect', u'oper']
[u'cowboy', u'face', u'sheen', u'west', u'tiger']
[u'creditor', u'accept', u'deal', u'stave', u'liquid']
[u'crowd', u'pack', u'church', u'farewel', u'captain', u'blood']
[u'dokic', u'consid', u'return', u'melbourn']
[u'dravid', u'keen', u'stay', u'scotland']
[u'draw', u'rule', u'mogg', u'return']
[u'driver', u'urg', u'closer', u'safeti', u'scrutini']
[u'drought', u'take', u'toll', u'murray']
[u'drug', u'take', u'polic', u'urg', u'come', u'forward']
[u'drummond', u'withdraw', u'championship']
[u'east', u'timor', u'want', u'sept', u'border', u'talk']
[u'guerrouj', u'look', u'fourth', u'titl']
[u'fan', u'farewel', u'captain', u'blood']
[u'farm', u'famili', u'share', u'drought', u'appeal', u'fund']
[u'fast', u'track', u'otway', u'project']
[u'hunt', u'virus', u'creator']
[u'fiji', u'seek', u'help', u'coup', u'investig']
[u'firefight', u'join', u'effort']
[u'fischer', u'deni', u'role', u'anti', u'hanson', u'campaign']
[u'flanagan', u'deni', u'amateur', u'breach']
[u'vaughan', u'time', u'plead', u'coach', u'fletcher']
[u'goalkeep', u'marco', u'recal', u'brazil', u'squad']
[u'governor', u'northern', u'farewel', u'tour']
[u'govt', u'deport', u'action', u'dishonest', u'green']
[u'govt', u'hit', u'power', u'line', u'delay']
[u'govt', u'encourag', u'worker', u'retir']
[u'govt', u'rule', u'break', u'rural', u'area']
[u'govt', u'say', u'protect', u'visa', u'applic', u'number']
[u'hanson', u'nomin', u'australian', u'year']
[u'health', u'servic', u'chief', u'ask', u'explain']
[u'heatwav', u'kill', u'mari', u'antoinett', u'shadi']
[u'high', u'sea', u'chase', u'near']
[u'hoon', u'stand', u'kelli', u'inquiri']
[u'hope', u'land', u'claim', u'process', u'continu']
[u'hospit', u'urg', u'consid', u'midwif', u'train']
[u'indian', u'secur', u'pledg', u'kiwi', u'mumbai', u'blast']
[u'indigen', u'spark', u'record', u'sale']
[u'indigen', u'communiti', u'urg', u'tackl', u'alcohol']
[u'injur', u'smith', u'logan', u'miss', u'scotland', u'warm', u'game']
[u'input', u'seek', u'landcar', u'review']
[u'inquiri', u'tell', u'medic', u'student', u'oppos', u'bond', u'scheme']
[u'internet', u'scheme', u'aim', u'unit', u'communiti']
[u'iraq', u'prove', u'danger', u'major', u'combat']
[u'irish', u'chang', u'team', u'itali']
[u'israel', u'captur', u'hospitalis', u'palestinian']
[u'italian', u'coupl', u'celebr', u'year', u'marriag']
[u'bigger', u'think']
[u'report', u'say', u'downer']
[u'johnson', u'hop', u'better', u'perform']
[u'keke', u'follow', u'attack', u'solomon', u'villag']
[u'kelli', u'back', u'iraq', u'polici', u'hoon', u'tell', u'inquiri']
[u'keyhol', u'weld', u'save', u'industri', u'buck']
[u'knight', u'tahu', u'odavi', u'return', u'georg', u'clash']
[u'liberian', u'refuge', u'ship', u'adrift', u'high', u'sea']
[u'magpi', u'holland', u'suspend', u'start', u'final']
[u'face', u'court', u'drug', u'charg']
[u'markov', u'scrap', u'pari']
[u'marsh', u'train', u'franc']
[u'martin', u'luther', u'king', u'archiv', u'sale']
[u'martyn', u'kretiuk', u'retir']
[u'mayn', u'group', u'million']
[u'medic', u'student', u'oppos', u'govt', u'rural', u'doctor', u'plan']
[u'meet', u'focus', u'mine', u'suppli', u'contract']
[u'militari', u'exercis', u'showcas', u'defenc', u'capabl']
[u'export', u'benefit', u'expect', u'grow']
[u'industri', u'drug', u'hear', u'tip', u'wider']
[u'minist', u'speak', u'hospit', u'report', u'delay']
[u'minist', u'urg', u'help', u'resolv', u'doctor', u'disput']
[u'fund', u'seek', u'farmbiz']
[u'motorcycl', u'trip', u'move', u'south']
[u'question', u'port', u'author', u'appoint']
[u'clean', u'give', u'thumb', u'effluent']
[u'mysteri', u'montgomeri', u'pari', u'pull']
[u'nat', u'leader', u'highlight', u'rural', u'alcohol', u'woe']
[u'go', u'best', u'final']
[u'nepal', u'rebel', u'truce', u'abandon', u'talk']
[u'hour', u'help', u'line', u'support', u'carer']
[u'mayor', u'elect', u'hast']
[u'research', u'centr', u'help', u'basin', u'conserv']
[u'news', u'forc', u'reinstat', u'worker']
[u'korea', u'stand', u'firm', u'nation', u'talk']
[u'mistak', u'warn', u'ferrari', u'boss', u'montezemolo']
[u'solut', u'expect', u'north', u'korea', u'talk']
[u'time', u'prepar', u'samoa', u'world', u'squad']
[u'nrma', u'call', u'lower', u'blood', u'alcohol', u'limit']
[u'govt', u'wait', u'final', u'waterfal', u'report']
[u'nation', u'distanc', u'prison', u'protest']
[u'opal', u'hungari']
[u'call', u'motor', u'sport', u'facil']
[u'opposit', u'call', u'inquiri', u'soldier']
[u'pakistan', u'urg', u'india', u'politicis', u'mumbai']
[u'patterson', u'tight', u'lip', u'health', u'deal', u'talk']
[u'perth', u'airport', u'record', u'profit']
[u'polic', u'boost', u'effort', u'assault', u'case']
[u'polic', u'hold', u'fear', u'miss']
[u'polic', u'look', u'lead', u'murder', u'case']
[u'polic', u'reflect', u'fatal', u'crash', u'caus']
[u'prison', u'guard', u'warn', u'paedophil', u'kill']
[u'publish', u'ban', u'algerian', u'newspap', u'court']
[u'push', u'region', u'develop', u'home', u'ownership']
[u'opposit', u'question', u'qgap', u'alloc']
[u'polic', u'claim', u'super', u'scam', u'bust']
[u'question', u'rais', u'delay', u'death', u'rule']
[u'radio', u'recept', u'black', u'spot', u'fill']
[u'rain', u'hinder', u'water', u'qualiti', u'plan']
[u'rain', u'rais', u'farmer', u'hop']
[u'ralli', u'prepar', u'motor', u'balranald']
[u'rescu', u'chopper', u'crash', u'hong', u'kong']
[u'resign', u'spark', u'develop', u'board', u'refocus']
[u'roddick', u'reveng', u'henman', u'beat']
[u'ruddock', u'defend', u'iranian', u'girl', u'deport']
[u'rural', u'ambul', u'prefer', u'debt', u'negoti']
[u'ruthless', u'agassi', u'arthur', u'crash', u'chang']
[u'govt', u'push', u'ahead', u'power', u'interconnector', u'plan']
[u'saudi', u'reject', u'australian', u'sheep', u'shipment']
[u'scientist', u'anthrax', u'probe', u'sue', u'govt']
[u'scientist', u'investig', u'diseas', u'protect']
[u'second', u'govt', u'minist', u'quit', u'polit']
[u'team', u'clean', u'storm', u'damag']
[u'shaheen', u'claim', u'steeplechas', u'adopt', u'son', u'revel']
[u'shire', u'respond', u'defenc', u'train', u'request']
[u'shuttl', u'report', u'critic', u'nasa', u'cultur']
[u'small', u'oestrogen', u'dose', u'strengthen', u'bone', u'studi']
[u'smorgon', u'steel', u'announc', u'leap', u'profit']
[u'spaniard', u'dress', u'tomatina']
[u'hand', u'asset', u'rspca']
[u'sport', u'offic', u'join', u'strike']
[u'stock', u'rise', u'holiday', u'mood', u'pervad']
[u'student', u'march', u'govt', u'educ', u'chang']
[u'student', u'prepar', u'long', u'campaign']
[u'student', u'protest', u'higher', u'educ', u'plan']
[u'tasmania', u'urg', u'review', u'sterilis', u'polici']
[u'teddi', u'trick', u'send', u'portsmouth']
[u'teen', u'drinker', u'expos', u'violenc', u'survey']
[u'teen', u'murder', u'charg', u'custodi']
[u'televis', u'threaten', u'seri', u'start']
[u'tenni', u'classic', u'ahead']
[u'govt', u'minist']
[u'thorpedo', u'win', u'court', u'battl']
[u'tougher', u'water', u'restrict', u'loom']
[u'turban', u'zealand', u'seri']
[u'tyson', u'eye', u'fight', u'japanes', u'brawler']
[u'aim', u'beef', u'secur']
[u'union', u'forecast', u'industri', u'action', u'qanta', u'job']
[u'unit', u'state', u'edg', u'argentina']
[u'vote', u'shield', u'worker']
[u'court', u'sentenc', u'colombian', u'drug', u'lord']
[u'pastor', u'charg', u'death', u'autist']
[u'soldier', u'kill', u'iraq', u'attack']
[u'troop', u'raid', u'suspect', u'iraqi', u'subvers']
[u'vaughan', u'outburst', u'leav', u'england', u'mountain']
[u'govt', u'say', u'fast', u'train', u'track']
[u'govt', u'cater']
[u'visitor', u'begin', u'arriv', u'birdsvill', u'race']
[u'vogel', u'eye', u'train', u'return', u'horror']
[u'church', u'member', u'offer', u'sanctuari', u'asylum']
[u'woman', u'injur', u'crash', u'walk', u'help']
[u'woodward', u'call', u'reserv', u'face', u'franc']
[u'workcov', u'offer', u'law', u'assur']
[u'world', u'champion', u'young', u'test', u'postiv', u'steroid']
[u'youni', u'khan', u'make', u'avail', u'test']
[u'farewel', u'slay', u'polic', u'offic']
[u'abbott', u'understand', u'hanson', u'anger']
[u'fund', u'live', u'issu', u'alston']
[u'acoss', u'disappoint', u'health', u'backdown']
[u'defend', u'decis', u'sign', u'health', u'deal']
[u'report', u'call', u'syring', u'vend', u'machin']
[u'afghan', u'asylum', u'seeker', u'tell', u'safe', u'home']
[u'record', u'year', u'profit']
[u'secret', u'support', u'abbott', u'campaign', u'howard', u'say']
[u'push', u'aussi', u'market']
[u'arsenal', u'goal', u'differ', u'unit']
[u'aussi', u'prepar', u'shine']
[u'aust', u'collect', u'sell', u'million']
[u'australia', u'india', u'sign', u'counter', u'terror', u'agreement']
[u'aust', u'sign', u'bilater', u'counter', u'terror', u'agreement']
[u'babi', u'manslaught', u'case', u'near']
[u'beatti', u'threaten', u'walk', u'coag', u'health']
[u'beckham', u'score', u'real', u'madrid', u'home', u'debut']
[u'beckham', u'hero', u'real', u'super']
[u'blair', u'say', u'claim', u'cost']
[u'blair', u'face', u'hard', u'question', u'inquiri']
[u'brack', u'order', u'probe', u'death', u'sibl']
[u'bushwalk', u'end', u'tragedi']
[u'buyback', u'announc', u'push', u'telstra', u'share']
[u'cabooltur', u'gather', u'mourn', u'dead', u'offic']
[u'break', u'hill', u'reservoir', u'desilt']
[u'charg', u'grain', u'board']
[u'region', u'share', u'poki', u'revenu']
[u'canada', u'beat', u'brazil', u'close', u'semi', u'final']
[u'casey', u'name', u'best', u'fairest']
[u'cattl', u'price', u'rise', u'longreach']
[u'celtic', u'ranger', u'champion', u'leagu', u'partizan']
[u'civilian', u'kill', u'soldier', u'wound', u'north']
[u'clijster', u'drop', u'final', u'award']
[u'compani', u'fin', u'factori', u'death']
[u'concern', u'grow', u'saudi', u'live', u'sheep', u'cargo']
[u'confer', u'tell', u'econom', u'success', u'reliant']
[u'corrupt', u'inquiri', u'report', u'grain', u'board']
[u'council', u'case', u'merger']
[u'council', u'boost', u'museum', u'support']
[u'council', u'want', u'paint', u'town']
[u'counti', u'chief', u'blast', u'order', u'vaughan']
[u'croc', u'head', u'europ']
[u'croc', u'head', u'europ', u'season', u'work']
[u'cruis', u'sing', u'elvi', u'duet', u'japanes']
[u'cupido', u'doubt', u'collingwood', u'clash']
[u'current', u'account', u'deficit', u'balloon', u'record', u'level']
[u'darwin', u'court', u'okay', u'extradit', u'alleg', u'peopl']
[u'davenport', u'march']
[u'vinci', u'artwork', u'steal', u'scottish', u'castl']
[u'debat', u'reopen', u'super', u'council', u'plan']
[u'diver', u'search', u'dam', u'miss', u'woman']
[u'doubt', u'cast', u'futur', u'rural', u'financi']
[u'doubt', u'case', u'parliamentari', u'speaker']
[u'downer', u'counterattack', u'labor', u'defend', u'abbott']
[u'drought', u'threaten', u'export', u'quota']
[u'elector', u'commiss', u'watch', u'abbott', u'debat']
[u'empir', u'rubber', u'disput', u'end']
[u'energi', u'failur', u'hit', u'europ', u'mar', u'mission']
[u'europ', u'heatwav', u'death', u'toll', u'exceed']
[u'fall', u'demand', u'cut', u'carpentri', u'cours']
[u'fear', u'poki', u'chang', u'region', u'harder']
[u'govt', u'blame', u'cancer', u'treatment', u'delay']
[u'govt', u'mine', u'approv', u'process']
[u'govt', u'urg', u'commit', u'highway', u'fund']
[u'firework', u'industri', u'face', u'restrict']
[u'fittler', u'give', u'fit', u'deadlin']
[u'flood', u'threaten', u'tasmania', u'poppi']
[u'drug', u'squad', u'refus', u'bail']
[u'star', u'gold', u'coast']
[u'join', u'region', u'develop', u'board']
[u'worldcom', u'boss', u'charg', u'fraud']
[u'formula', u'heat']
[u'friend', u'famili', u'share', u'hope', u'memori']
[u'futur', u'look', u'bleak', u'shepherd']
[u'guyra', u'council', u'say', u'merger']
[u'hantuchova', u'let', u'tenni', u'talk']
[u'health', u'insur', u'group', u'prais', u'rebat']
[u'henson', u'shin', u'wale', u'outclass', u'romania']
[u'hill', u'confid', u'armi', u'capabl']
[u'hope', u'home', u'power', u'tonight']
[u'hope', u'talk', u'resolv', u'sheep', u'export', u'impass']
[u'india', u'bridg', u'collaps', u'kill']
[u'indonesian', u'polic', u'arrest', u'suspect', u'hotel']
[u'institut', u'consid', u'indigen', u'plan']
[u'islam', u'court', u'set', u'date', u'verdict', u'nigerian']
[u'japanes', u'get', u'death', u'sentenc', u'school']
[u'japan', u'rais', u'abduct', u'issu', u'north', u'korea', u'talk']
[u'johnson', u'hewitt', u'fail', u'pari']
[u'juri', u'consid', u'verdict', u'mother', u'slay']
[u'kemp', u'tightlip', u'nation', u'museum']
[u'labor', u'say', u'truss', u'push', u'asid', u'sugar', u'talk']
[u'land', u'clear', u'hold', u'veget', u'plan']
[u'lawyer', u'seek', u'retrial', u'trio', u'jail', u'rape']
[u'livestock', u'export', u'suspend', u'saudi', u'shipment']
[u'magistr', u'face', u'restrict', u'drink', u'drive']
[u'magistr', u'take', u'break', u'polic', u'prepar', u'file']
[u'acus', u'spear', u'stab', u'get', u'bail']
[u'get', u'death', u'penalti', u'kill', u'japanes']
[u'jail', u'bash', u'partner']
[u'order', u'stand', u'trial', u'famili', u'murder']
[u'face', u'court', u'murder', u'charg']
[u'mar', u'provid', u'close', u'encount']
[u'matilda', u'ill', u'ahead', u'china', u'clash']
[u'minardi', u'test', u'year', u'arrow']
[u'minist', u'renew', u'coast']
[u'fund', u'seek', u'doctor', u'room']
[u'mother', u'jail', u'seven', u'year', u'child', u'tortur']
[u'continu', u'benefit', u'fight']
[u'hesit', u'takeov']
[u'scam', u'email']
[u'suspect', u'share', u'raid']
[u'nasa', u'improv', u'resum', u'shuttl']
[u'nat', u'rais', u'higher', u'educ', u'fear']
[u'need', u'highlight', u'rural', u'counsel', u'servic']
[u'negoti', u'finalis', u'environ', u'centr']
[u'korea', u'talk', u'enter', u'second']
[u'bushfir', u'inquiri', u'adjourn']
[u'opposit', u'urg', u'govt', u'sign', u'health', u'deal']
[u'oldfield', u'modifi', u'terror', u'websit']
[u'dead', u'highway', u'crash']
[u'opal', u'greec']
[u'oshea', u'goal', u'keep', u'unit', u'track']
[u'patient', u'suffer', u'health', u'bureaucraci']
[u'profit']
[u'peachey', u'guilti', u'verdict', u'outrag', u'shark']
[u'petit', u'oppos', u'bermagui', u'develop']
[u'petit', u'seek', u'fish']
[u'tour', u'return', u'boston']
[u'philippoussi', u'surf', u'success']
[u'pichot', u'return', u'argentina', u'rout']
[u'pilbara', u'worker', u'pawn', u'porn', u'email', u'flash']
[u'plain', u'chocol', u'good', u'heart']
[u'plan', u'afoot', u'boulia', u'sport', u'centr']
[u'plan', u'afoot', u'indigen', u'univers']
[u'fight', u'abus', u'aborigin']
[u'polic', u'charg', u'sydney', u'heroin', u'haul']
[u'polic', u'bodi', u'million', u'fraud']
[u'polic', u'probe', u'castlemain', u'stab']
[u'polic', u'probe', u'death', u'sibl']
[u'port', u'work', u'dredg', u'green', u'concern']
[u'premier', u'demand', u'health', u'coag', u'agenda']
[u'promina', u'announc', u'profit']
[u'protest', u'seek', u'obstetrician', u'reinstat']
[u'push', u'indigen', u'lifesav', u'monument']
[u'unsway', u'backdown', u'health', u'deal']
[u'quinn', u'want', u'plan', u'urban', u'growth']
[u'race', u'victoria', u'fenc', u'sit', u'safeti']
[u'report', u'push', u'chang', u'request', u'process']
[u'report', u'reject', u'enterpris', u'zone']
[u'delay', u'plan', u'servic', u'boost']
[u'ridgeway', u'speak', u'welfar', u'issu']
[u'tinto', u'warn', u'worker', u'porno', u'email']
[u'rivroc', u'put', u'case', u'execut', u'offic']
[u'rugbi', u'boss', u'plead', u'matilda', u'rethink']
[u'ryan', u'issu', u'dutson', u'down', u'challeng']
[u'samoa', u'coach', u'voic', u'fear', u'world']
[u'windfarm', u'get', u'council', u'approv']
[u'score', u'kill', u'hindu', u'festiv', u'stamped']
[u'scud', u'advanc', u'draper', u'bow']
[u'scud', u'molik', u'advanc', u'draper', u'bow']
[u'scud', u'molik', u'advanc', u'york']
[u'sect', u'leader', u'trial', u'mutil', u'murder']
[u'seven', u'kill', u'chicago', u'workplac', u'shoot']
[u'seve', u'resist', u'player', u'pressur', u'tour']
[u'sharehold', u'group', u'reject', u'wilder', u'timber', u'plan']
[u'shark', u'challeng', u'peachey', u'suspens']
[u'spanish', u'revel', u'tomato', u'free']
[u'state', u'rail', u'accept', u'reason', u'waterfal', u'crash']
[u'state', u'accus', u'canberra', u'blackmail', u'health']
[u'stock', u'market', u'eye', u'profit', u'result']
[u'strand', u'sheep', u'ship', u'allow', u'load', u'extra', u'fee']
[u'strong', u'start', u'bangladesh', u'peshawar', u'test']
[u'studi', u'show', u'be', u'dad']
[u'success', u'indigen', u'sentenc', u'scheme']
[u'surgeon', u'rule', u'rivkin', u'detent']
[u'survey', u'reveal', u'expect', u'hospit']
[u'suspend', u'surgeon', u'prepar', u'argu', u'case']
[u'swansea', u'meet', u'focus', u'medicar', u'woe']
[u'opposit', u'urg', u'health', u'deal']
[u'tawak', u'sign', u'brumbi']
[u'teacher', u'strike', u'offer']
[u'telstra', u'profit', u'asian', u'cabl', u'ventur']
[u'kashmir', u'battl']
[u'speed', u'bust', u'adelaid', u'airport']
[u'thwait', u'throw', u'cold', u'water', u'govt', u'murray', u'plan']
[u'time', u'run', u'case', u'drought']
[u'toothfish', u'group', u'prais', u'viarsa', u'captur']
[u'field', u'assembl', u'tour', u'sunraysia']
[u'unhcr', u'grant', u'access', u'asylum', u'seeker', u'malaysia']
[u'inspector', u'type', u'nuclear', u'materi']
[u'unit', u'state', u'beat', u'mexico', u'argentina', u'collaps']
[u'attack', u'arabiya', u'threaten', u'broadcast']
[u'author', u'remov', u'command', u'monument']
[u'ignor', u'arafat', u'ceasefir']
[u'lash', u'arabiya', u'broadcast']
[u'iraq', u'armitag']
[u'rule', u'bilater', u'north', u'korea', u'talk']
[u'seal', u'drug', u'deal', u'develop', u'nation']
[u'stag', u'mar', u'parti', u'close', u'encount']
[u'compani', u'win', u'tesco', u'contract']
[u'victoria', u'seek', u'health', u'sweeten']
[u'businessman', u'help', u'bankrol', u'abbott', u'fund']
[u'offic', u'help', u'fight', u'blaze']
[u'word', u'take', u'control', u'airport', u'debat']
[u'water', u'manag', u'reform', u'flow', u'paper']
[u'hold', u'better', u'health', u'deal']
[u'websit', u'help', u'youth', u'deal', u'issu']
[u'westfield', u'profit']
[u'white', u'gun', u'sprint', u'doubl']
[u'team', u'leav', u'phoenix', u'remain', u'favourit']
[u'wood', u'target', u'final', u'tour', u'event']
[u'work', u'begin', u'pipelin', u'compressor', u'station']
[u'worker', u'vote', u'bridgeston', u'deal']
[u'zero', u'toler', u'moot', u'hunter', u'driver']
[u'kill', u'aceh', u'violenc']
[u'children', u'indian', u'bridg', u'crumbl']
[u'kill', u'accid', u'china']
[u'academ', u'call', u'plan', u'bridg', u'racial', u'divid']
[u'academ', u'see', u'posit', u'free', u'trade', u'agreement']
[u'afghan', u'soldier', u'kill', u'suspect', u'taliban', u'attack']
[u'african', u'trade', u'talk', u'open', u'ahead', u'meet']
[u'agassi', u'book', u'showdown', u'kafelnikov']
[u'age', u'care', u'nurs', u'accept', u'offer']
[u'ord', u'end', u'week', u'high', u'note']
[u'urg', u'sign', u'health', u'fund', u'deal']
[u'confirm', u'offer']
[u'make', u'solid', u'gain', u'share', u'drop']
[u'anderson', u'ecstat', u'river', u'rescu', u'plan']
[u'atsic', u'target', u'deliveri', u'indigen', u'health']
[u'australian', u'tour', u'restor', u'bangladesh', u'confid']
[u'australia', u'outlin', u'approach', u'tie']
[u'buy', u'wesfarm', u'landmark']
[u'barca', u'outdo', u'real']
[u'bayern', u'relish', u'champion', u'leagu', u'reunion', u'elber']
[u'beat', u'carlton', u'weve', u'succeed', u'laidley']
[u'beck', u'attract', u'barcelona']
[u'bennett', u'back', u'talli', u'man', u'game', u'comment']
[u'better', u'intellig', u'troop', u'need', u'iraq']
[u'bomber', u'magpi', u'pump', u'pressur', u'match']
[u'charg', u'fatal', u'stab']
[u'bronco', u'singl', u'say', u'bennett']
[u'collis', u'kill', u'injur', u'russia']
[u'freez', u'problem', u'dog', u'council']
[u'irrig', u'restrict', u'updat']
[u'call', u'hydrotherapi', u'pool', u'busi', u'plan']
[u'canada', u'put', u'heat', u'iran', u'journalist', u'death']
[u'canberra', u'pay', u'tribut', u'bomb', u'victim']
[u'champion', u'leagu', u'flop', u'leav', u'newcastl', u'lowest']
[u'chelsea', u'real', u'madrid', u'haggl', u'makelel']
[u'chelsea', u'clinch', u'makelel', u'deal']
[u'chief', u'minist', u'defend', u'sign', u'feder']
[u'children', u'hospit', u'sack', u'controversi', u'surgeon']
[u'church', u'break', u'earn', u'jail', u'sentenc']
[u'leadership', u'spotlight']
[u'club', u'har', u'brighter', u'futur']
[u'coag', u'provid', u'forum', u'water', u'issu']
[u'council', u'consid', u'flood', u'prone', u'land', u'woe']
[u'council', u'encourag', u'migrant']
[u'council', u'hop', u'surat', u'grain', u'facil']
[u'council', u'say', u'backpack', u'plan']
[u'council', u'seek', u'wast', u'water', u'support']
[u'council', u'poki', u'placement']
[u'court', u'hear', u'sentenc', u'submiss', u'folbigg', u'case']
[u'cowboy', u'upbeat']
[u'crowd', u'muster', u'countri', u'music', u'shindig']
[u'crow', u'hart', u'bassett']
[u'dairi', u'deregul', u'see', u'farmer', u'quit']
[u'darwin', u'get', u'quarantin', u'inspect', u'facil']
[u'democrat', u'gather', u'region', u'forum']
[u'diplomat', u'erupt', u'renegad', u'trawler']
[u'doubt', u'cast', u'time', u'highway', u'fund', u'talk']
[u'dragon', u'lose', u'gasnier']
[u'draw', u'set', u'ranger', u'battl']
[u'drought', u'felt', u'time', u'towong', u'shire']
[u'duck', u'shoot', u'oppon', u'hope', u'perman']
[u'falun', u'gong', u'case']
[u'farmer', u'group', u'back', u'fuel']
[u'farmer', u'want', u'long', u'term', u'water', u'protect']
[u'fault', u'discov', u'luca', u'height', u'reactor']
[u'fear', u'drought', u'tighten', u'grip']
[u'ferrero', u'struggl', u'round']
[u'fiji', u'offer', u'labour', u'parti', u'deal']
[u'strike', u'cancel']
[u'flight', u'centr', u'profit', u'climb']
[u'freeman', u'prais', u'pittman']
[u'freer', u'enter', u'voluntari', u'administr']
[u'french', u'offici', u'confirm', u'august', u'heatwav', u'kill']
[u'gallop', u'signal', u'reluct', u'approv', u'health']
[u'govern', u'meet', u'water', u'share']
[u'govern', u'resolv', u'grant', u'impass']
[u'govt', u'urg', u'creat', u'children', u'commission']
[u'grazier', u'consid', u'livestock', u'suspens', u'trade']
[u'group', u'hop', u'fast', u'resolut', u'sheep', u'trade']
[u'growth', u'return', u'shine', u'economi']
[u'gunn', u'sharehold', u'okay', u'growth', u'log']
[u'hafey', u'name', u'victoria', u'father', u'year']
[u'hama', u'milit', u'kill', u'isra', u'rocket', u'attack']
[u'hanson', u'bail', u'hear', u'begin']
[u'hanson', u'face', u'wait', u'bail']
[u'hanson', u'lawyer', u'argu', u'bail']
[u'hart', u'miss', u'port', u'showdown', u'final']
[u'henin', u'step', u'open', u'convinc']
[u'herb', u'help', u'alzheim', u'patient']
[u'hewitt', u'fight', u'past', u'open']
[u'hewitt', u'pratt', u'round']
[u'high', u'hop', u'coast', u'turnout']
[u'holder', u'milan', u'play', u'ajax', u'champion', u'leagu']
[u'hope', u'memori', u'servic', u'boost', u'reconcili']
[u'hoteli', u'lament', u'doubl', u'deal', u'alcohol', u'sale']
[u'hundr', u'mourn', u'vieira', u'mello', u'geneva']
[u'indigen', u'health', u'group', u'help', u'dental', u'servic']
[u'intern', u'forum', u'plan', u'great', u'barrier', u'reef']
[u'isra', u'armi', u'order', u'prevent', u'fire', u'rocket']
[u'israel', u'kill', u'hama', u'fighter', u'missil', u'strike']
[u'jacquelin', u'take', u'control', u'munich']
[u'juri', u'deliber', u'babi', u'manslaught', u'trial']
[u'juventus', u'keeper', u'buffon', u'win', u'uefa', u'award']
[u'leader', u'consid', u'bushfir', u'inquiri']
[u'leader', u'walk', u'coag', u'meet']
[u'lion', u'lose', u'pike', u'mcrae', u'injuri']
[u'lloyd', u'offer', u'reward', u'steal', u'vinci']
[u'convict', u'ransom', u'plot']
[u'kill', u'drive', u'shoot']
[u'match', u'report']
[u'matilda', u'china']
[u'mayor', u'use', u'cast', u'vote', u'approv', u'bailhous']
[u'west', u'corp', u'distribut', u'share']
[u'millic', u'die', u'highway', u'crash']
[u'miner', u'highlight', u'underperform', u'mine']
[u'minist', u'back', u'push', u'instal', u'syring', u'vend']
[u'minist', u'glen', u'inn', u'severn', u'merger', u'plan']
[u'missi', u'elliott', u'video', u'grab', u'award']
[u'oppos', u'irrig', u'merger', u'consensus']
[u'specul', u'earli', u'elect']
[u'nation', u'park', u'work', u'underway']
[u'naturopath', u'guilti', u'babi', u'manslaught']
[u'fish']
[u'newcastl', u'bounc', u'champion', u'leagu']
[u'patrol', u'boat', u'build']
[u'relationship', u'law', u'hail', u'best', u'world']
[u'surpris', u'store', u'royal', u'adelaid']
[u'zealand', u'high', u'alert', u'sudden', u'death']
[u'korea', u'report', u'threaten', u'nuclear', u'test']
[u'korea', u'talk', u'acrimoni']
[u'room', u'univers', u'stirl', u'say']
[u'north', u'korea', u'talk', u'reach', u'stalem']
[u'reject', u'mackenroth']
[u'consid', u'alcohol', u'summit', u'propos']
[u'govt', u'consid', u'liquor', u'trade']
[u'nation', u'dissid', u'releas', u'damag', u'tap']
[u'founder', u'want', u'recal', u'report', u'releas']
[u'worker', u'rescu', u'plan']
[u'push', u'ahead', u'chang']
[u'pie', u'fight', u'past', u'bomber']
[u'pittman', u'deal', u'knockout', u'blow']
[u'pittman', u'grab', u'gold', u'pari']
[u'pittman', u'storm', u'world', u'hurdl', u'gold']
[u'plummer', u'appoint', u'nation', u'coach']
[u'unimpress', u'coag', u'walkout']
[u'polic', u'charg', u'woman', u'steal', u'good']
[u'polic', u'probe', u'fatal', u'stab']
[u'polic', u'seek', u'help', u'find', u'coin', u'collect']
[u'polic', u'seek', u'public', u'help', u'ryde', u'woman', u'death']
[u'polic', u'haigh', u'case', u'open']
[u'polit', u'violenc', u'claim', u'live', u'peru']
[u'port', u'train', u'time', u'crow', u'clash', u'loom']
[u'power', u'franc', u'pitch', u'england']
[u'power', u'return', u'london', u'blackout']
[u'prison', u'walk', u'unlock', u'door']
[u'privat', u'invest', u'seek', u'hospit', u'revamp']
[u'probe', u'launch', u'worker', u'death']
[u'processor', u'beef', u'export', u'quota']
[u'protest', u'support', u'gather', u'outsid', u'gunn', u'meet']
[u'public', u'offer', u'meningococc', u'assur']
[u'punk', u'catfish', u'speci', u'venezuela']
[u'radic', u'chang', u'suggest', u'improv', u'student']
[u'raider', u'rare', u'dog']
[u'raider', u'roll', u'bulldog', u'grab', u'spot']
[u'rann', u'reappoint', u'atkinson', u'attorney', u'general']
[u'rann', u'sack', u'senior', u'advis']
[u'rann', u'upset', u'charg', u'advis']
[u'rann', u'welcom', u'murray', u'river', u'plan']
[u'red', u'urg', u'sailor', u'mind']
[u'reef', u'centr', u'remain', u'focus', u'review']
[u'refuge', u'ralli', u'mark', u'tampa', u'anniversari']
[u'region', u'airport', u'repres', u'seek', u'better']
[u'region', u'develop', u'offic', u'move', u'lismor']
[u'resid', u'mobil', u'phone', u'coverag', u'woe']
[u'road', u'safeti', u'drive', u'youth', u'studi']
[u'sanchez', u'go', u'win']
[u'polic', u'fear', u'fraud', u'suspect']
[u'polic', u'probe', u'govern', u'hacker', u'attack']
[u'rider', u'take', u'lead', u'safari', u'bike', u'section']
[u'settlement', u'reach', u'patient', u'get', u'chop']
[u'sexual', u'assault', u'drop', u'year']
[u'sheep', u'trade', u'suspens', u'tip', u'small', u'impact']
[u'shoaib', u'skittl', u'bangladesh']
[u'sign', u'health', u'deal', u'talk', u'howard', u'tell', u'state']
[u'south', u'east', u'deleg', u'join', u'alcohol', u'summit']
[u'springbok', u'lock', u'expel', u'race', u'alleg']
[u'state', u'rail', u'accept', u'need', u'boost', u'safeti']
[u'state', u'sign', u'water', u'health', u'agreement']
[u'stop', u'play', u'polit', u'health', u'oppn', u'say']
[u'suncorp', u'metway', u'newcrest', u'post', u'profit']
[u'surgeon', u'seek', u'sack', u'overturn']
[u'swedish', u'polic', u'help', u'romeo', u'juliet']
[u'swift', u'grand', u'finaltbird', u'aliv']
[u'tasmanian', u'archbishop', u'accus', u'ignor', u'abus']
[u'bird', u'crush', u'kestrel', u'swift', u'secur', u'final', u'berth']
[u'audit', u'reveal', u'damn', u'evid']
[u'thorp', u'await', u'england', u'decis']
[u'tourism', u'jump', u'fail', u'strengthen', u'trade', u'perform']
[u'transcript', u'shed', u'light', u'septemb', u'tragedi']
[u'truck', u'crash', u'close', u'highway']
[u'urban', u'sprawl', u'make', u'american', u'studi', u'find']
[u'warship', u'head', u'townsvill']
[u'vail', u'blame', u'drought', u'trade', u'deficit']
[u'waltz', u'matilda', u'centr', u'lobbi', u'rugbi', u'board']
[u'warn', u'issu', u'attempt', u'abduct']
[u'william', u'sister', u'target', u'year', u'domin']
[u'world', u'leader', u'condemn', u'najaf', u'bomb']
[u'reserv', u'decis', u'generic', u'drug']
[u'injur', u'minibus', u'crash']
[u'abus', u'hotlin', u'program', u'continu']
[u'milan', u'european', u'super']
[u'water', u'restrict']
[u'adelaid', u'radio', u'station']
[u'africa', u'seek', u'fresh', u'deal', u'generic', u'drug']
[u'akhtar', u'dent', u'bangladeshi', u'hop', u'second', u'test']
[u'jazeera', u'say', u'forc', u'detain', u'journalist']
[u'blast', u'coag', u'deal']
[u'amnesti', u'warn', u'bomb', u'repris']
[u'australia', u'beat', u'britain', u'world', u'row', u'titl']
[u'aust', u'help', u'asia', u'pacif', u'develop', u'water', u'program']
[u'babysitt', u'get', u'life', u'sentenc', u'chop']
[u'deal', u'mean', u'cut', u'health', u'budget', u'gallop', u'say']
[u'baxter', u'children', u'treat']
[u'blackburn', u'complet', u'ferguson', u'transfer']
[u'blair', u'advisor', u'quit']
[u'like', u'charg', u'murder', u'fatal']
[u'brazil', u'vow', u'space', u'launch', u'disast']
[u'burmes', u'work', u'constitut']
[u'capel', u'aton', u'metr', u'failur']
[u'explod', u'near', u'main', u'armi', u'base', u'iraq']
[u'cleric', u'denounc', u'saddam', u'loyalist', u'sermon']
[u'construct', u'natur', u'project', u'begin', u'soon']
[u'croker', u'injuri', u'mar', u'canberra']
[u'dead', u'blast', u'click', u'bombay', u'street', u'photograph']
[u'diana', u'dodi', u'inquest', u'announc']
[u'docker', u'derbi', u'lion', u'roar', u'spot']
[u'eagl', u'edg', u'docker', u'lion', u'control']
[u'eel', u'edg', u'lang', u'park', u'thriller']
[u'electr', u'fault', u'blame', u'hous']
[u'expert', u'question', u'safeti', u'luca', u'height', u'reactor']
[u'explos', u'delhi', u'railway', u'station']
[u'eye', u'chelsea', u'roman', u'rich']
[u'ferri', u'passeng', u'strand', u'suspect', u'packag']
[u'damag', u'brisban', u'offic', u'block', u'nightclub']
[u'disrupt', u'power', u'victoria', u'polic', u'centr']
[u'arrest', u'singapor']
[u'filipino', u'defenc', u'secretari', u'warn', u'coup']
[u'hold', u'najaf', u'blast']
[u'fulham', u'fume', u'manchest', u'bind', u'reyna']
[u'gardin', u'doubt', u'western', u'derbi']
[u'hamilton', u'season', u'break']
[u'health', u'minist', u'deni', u'plan', u'card', u'scheme']
[u'hernandez', u'make', u'puma', u'return', u'canada']
[u'horserac', u'museum']
[u'hundr', u'flee', u'faction', u'fight', u'afghanistan']
[u'hundr', u'gather', u'honour', u'world', u'veteran']
[u'hundr', u'mourn', u'death', u'veteran']
[u'declar', u'winner', u'final', u'cambodian']
[u'iaaf', u'ponder', u'rule', u'drummond', u'incid']
[u'near', u'quit', u'say', u'beckham']
[u'iran', u'declar', u'day', u'mourn', u'hakim']
[u'isra', u'armi', u'withdraw', u'northern', u'gaza']
[u'karlsson', u'power', u'munich', u'lead']
[u'kefu', u'doubt', u'world']
[u'lake', u'alexand', u'reopen', u'public']
[u'landslid', u'kill', u'china']
[u'leed', u'reject', u'inter', u'loan', u'viduka']
[u'lehmann', u'sharehold', u'urg', u'accept', u'takeov']
[u'light', u'plane', u'crash', u'boulia']
[u'lucki', u'fisherman', u'airli', u'beach']
[u'magpi', u'book', u'home', u'final']
[u'charg', u'connect', u'blaster', u'worm']
[u'injur', u'collis', u'bass', u'highway']
[u'shoot', u'dead', u'bundaberg']
[u'mcmanaman', u'citi']
[u'melbourn', u'presid', u'szondi', u'step']
[u'sign', u'tuck']
[u'mortlock', u'track', u'wallabi', u'return']
[u'moulden', u'park', u'primari', u'win', u'anzac', u'award']
[u'murray', u'river', u'rescu', u'plan', u'huge', u'challeng']
[u'mysteri', u'death', u'coincid', u'author']
[u'najaf', u'bomb', u'assassin', u'downer']
[u'najaf', u'resid', u'blame', u'blast', u'sunni', u'loyalist']
[u'nation', u'water', u'plan', u'get', u'lukewarm', u'respons']
[u'natta']
[u'dead', u'russian', u'submarin', u'sink']
[u'korea', u'expand', u'arsenal', u'fail', u'talk']
[u'firefight', u'battl', u'bush', u'blaze']
[u'govt', u'defend', u'cut', u'women', u'council']
[u'oloughlin', u'injuri', u'mar', u'swan']
[u'kill', u'accid']
[u'opal', u'outclass', u'belgium']
[u'oppon', u'blast', u'unsportsmanlik', u'roddick']
[u'opposit', u'accus', u'mugab', u'rig', u'local']
[u'pakistan', u'fight', u'kapali', u'trick']
[u'pakistan', u'iran', u'deni', u'nuclear', u'cooper']
[u'palestinian', u'gunmen', u'kill', u'jewish', u'settler', u'west', u'bank']
[u'panther', u'savag', u'eagl', u'shark', u'strike', u'sink', u'rabbitoh']
[u'paparazzi', u'anticip', u'stella', u'mccartney', u'wed']
[u'peachey', u'free', u'face', u'rabbitoh']
[u'polic', u'hunt', u'video', u'store', u'thief']
[u'polic', u'investig', u'road', u'accid', u'involv', u'toddler']
[u'polic', u'investig', u'suspici']
[u'policeman', u'injur', u'duti']
[u'polic', u'search', u'miss', u'forrestfield', u'woman']
[u'polic', u'search', u'miss', u'gembrook', u'woman']
[u'putin', u'prepar', u'post', u'iraq', u'draft', u'resolut']
[u'raider', u'secur', u'spot']
[u'recycl', u'program', u'kick', u'school']
[u'research', u'track', u'world', u'know', u'white']
[u'roddick', u'celebr', u'birthday', u'round', u'berth']
[u'rise', u'rocket', u'boston', u'lead']
[u'ruddock', u'reject', u'donat', u'claim']
[u'sauvag', u'make', u'gold']
[u'scud', u'fire', u'round']
[u'scud', u'move', u'molik']
[u'secur', u'camera', u'captur', u'theft', u'leonardo']
[u'shoaib', u'fire', u'pakistan', u'victori']
[u'injur', u'battl', u'kashmir']
[u'soccer', u'team', u'promot', u'local', u'brothel']
[u'spain', u'wont', u'seek', u'argentin', u'extradit']
[u'john', u'ambul', u'servic', u'criticis', u'health', u'dept']
[u'strong', u'wind', u'whip', u'melbourn']
[u'sunday', u'liquor', u'trade', u'debat', u'heat']
[u'super', u'sanchez', u'emul', u'mose']
[u'sydney', u'brace', u'wild', u'wind', u'forecast']
[u'sydney', u'water', u'polic', u'steal', u'yacht', u'coff']
[u'taiwan', u'kung', u'extend', u'lpga', u'lead', u'shot']
[u'choos', u'pilot', u'disabl', u'program']
[u'law', u'prais']
[u'telstra', u'servic', u'affect', u'transmiss', u'cabl']
[u'hold', u'dover', u'secur', u'alert']
[u'timber', u'compani', u'support', u'outstrip', u'wilder', u'caus']
[u'toll', u'extend', u'deadlin', u'sharehold']
[u'truck', u'industri', u'honour', u'hall', u'fame', u'inducte']
[u'dead', u'injur', u'accid']
[u'say', u'long', u'korea', u'nuke', u'crisi']
[u'soldier', u'kill', u'grenad', u'attack']
[u'stock', u'higher', u'straight', u'week']
[u'vail', u'push', u'cheap', u'medicin']
[u'vendor', u'peddl', u'design', u'watermelon', u'singl']
[u'venic', u'festiv', u'award', u'sharif', u'lifetim', u'lion']
[u'govt', u'releas', u'climat', u'chang', u'report']
[u'govt', u'nurs', u'registr']
[u'govt', u'halv', u'spend', u'plant']
[u'govt', u'spend', u'flower', u'exorbit', u'opposit']
[u'govt', u'support', u'custodi', u'decis']
[u'winteri', u'weather', u'caus', u'havoc', u'road']
[u'woman', u'charg', u'bundaberg', u'shoot']
[u'woman', u'recov', u'attempt', u'nurs', u'home']
[u'world', u'leader', u'condemn', u'najaf', u'bomb']
[u'approv', u'cheaper', u'drug', u'import', u'develop']
[u'abbott', u'deni', u'lib', u'involv', u'trust', u'fund']
[u'state', u'sign', u'health', u'fund', u'agreement']
[u'member', u'pressur', u'underag', u'brothel']
[u'amrozi', u'move', u'island', u'prison']
[u'ancient', u'stone', u'circl', u'discov', u'scotland']
[u'anderson', u'deni', u'uncertainti', u'hurt', u'parti']
[u'antarctica', u'wind', u'project', u'win', u'engin', u'award']
[u'student', u'hurt', u'clash', u'thai', u'concert']
[u'kill', u'taipei']
[u'trap', u'flood', u'indian']
[u'aussi', u'relay', u'team', u'miss', u'final']
[u'author', u'believ', u'deliber']
[u'author', u'confirm', u'dead', u'russian', u'submarin']
[u'depp', u'thing', u'past']
[u'beckham', u'continu', u'dream', u'start', u'real', u'career']
[u'bend', u'treatment', u'meningococc', u'impact']
[u'biodivers', u'month', u'kick']
[u'boy', u'arrest', u'prompt', u'sentenc', u'review']
[u'brisban', u'resid', u'prais', u'public']
[u'british', u'newspap', u'publish', u'lose', u'kelli', u'articl']
[u'british', u'port', u'return', u'normal', u'bomb', u'alert']
[u'bulgarian', u'danub', u'sink', u'lowest', u'record', u'level']
[u'canada', u'west', u'nile', u'virus', u'infect', u'rise']
[u'capsul', u'dock']
[u'cathol', u'educ', u'remodel']
[u'citi', u'surf', u'record', u'time', u'break']
[u'ask', u'abus', u'victim', u'come', u'forward']
[u'coastal', u'communiti', u'protest', u'wind', u'turbin', u'project']
[u'concern', u'lack', u'mango', u'picker', u'affect']
[u'fight', u'develop', u'plan']
[u'cow', u'kangaroo', u'share', u'similar', u'gene', u'expert']
[u'cronj', u'david', u'omit', u'springbok', u'squad']
[u'crow', u'edg', u'port', u'long', u'break']
[u'davi', u'slice', u'kung', u'lead']
[u'deport', u'appeal', u'die', u'daughter']
[u'docker', u'secur', u'home', u'final']
[u'docker', u'derbi', u'lion', u'roar']
[u'dragon', u'injuri', u'woe', u'continu']
[u'egypt', u'cast', u'doubt', u'nefert', u'mummi', u'discoveri']
[u'elder', u'kill', u'collis', u'northern']
[u'england', u'recal', u'thorp']
[u'fink', u'river', u'cross', u'upgrad']
[u'crew', u'battl', u'blaze', u'south', u'coast']
[u'destroy', u'north', u'brisban', u'school']
[u'firefight', u'win', u'battl', u'blaze']
[u'forc', u'withdraw']
[u'hicki', u'help', u'ireland', u'crush', u'itali']
[u'franc', u'edg', u'england', u'world', u'warm']
[u'germani', u'relax', u'restrict', u'arm', u'sale']
[u'govt', u'review', u'tobacco', u'advertis', u'law']
[u'hama', u'member', u'kill', u'isra', u'missil', u'attack']
[u'harri', u'guid', u'wale', u'victori', u'scot']
[u'hewitt', u'advanc', u'final']
[u'hewitt', u'revel', u'return', u'form']
[u'histor', u'forc', u'base', u'partial', u'sell']
[u'hotel', u'patron', u'evacu', u'break']
[u'hous', u'destroy']
[u'hous', u'price', u'continu', u'soar']
[u'indian', u'polic', u'arrest', u'suspect', u'bombay']
[u'indian', u'presid', u'inspir', u'mar']
[u'kewel', u'boot', u'goal', u'red']
[u'latrob', u'valley', u'power', u'worker', u'face', u'asbesto']
[u'lawyer', u'group', u'propos', u'reform', u'unit', u'nation']
[u'lawyer', u'group', u'propos', u'reform']
[u'lion', u'lock', u'spot']
[u'ljubic', u'refus', u'apologis', u'roddick']
[u'assault', u'katoomba']
[u'critic', u'injur', u'motorcycl', u'accid']
[u'die', u'stab']
[u'injur', u'crash', u'cliff']
[u'send', u'polic', u'chase']
[u'melbourn', u'legaci', u'ask', u'communiti', u'deep']
[u'mose', u'confirm', u'comeback', u'attempt']
[u'netherland', u'answer', u'vatican', u'marriag', u'manual']
[u'marin', u'park', u'plan', u'jurien']
[u'terror', u'group', u'indonesia', u'rudd']
[u'plan', u'quit', u'heatwav', u'death', u'french']
[u'call', u'member', u'stand', u'asid']
[u'target', u'drink', u'drive', u'loophol']
[u'govt', u'rep', u'begin', u'tour', u'greec']
[u'briton', u'say', u'diana', u'murder']
[u'opal', u'clean', u'sweep', u'belgium']
[u'public', u'transport', u'fare', u'increas']
[u'pakistan', u'arrest', u'taliban', u'milit', u'border']
[u'polic', u'arrest', u'steal', u'hire', u'stereo', u'equip']
[u'polic', u'search', u'clue', u'nightclub', u'shoot']
[u'polic', u'suspect', u'miss', u'foul', u'play']
[u'port', u'deni', u'crow', u'doubl', u'chanc']
[u'port', u'push', u'crow']
[u'public', u'transport', u'timet', u'chang', u'attract']
[u'puma', u'rout', u'canada', u'complet', u'sweep']
[u'give', u'mean', u'see']
[u'govt', u'crack', u'slingshot']
[u'rabbit', u'rage', u'royal']
[u'rid', u'loud', u'proud', u'harley', u'mark', u'birthday']
[u'roll', u'stone', u'offer', u'buck', u'headlin']
[u'rooster', u'knight', u'cowboy', u'hold', u'half', u'time', u'lead']
[u'rooster', u'hop', u'dent', u'dragon', u'season']
[u'russia', u'back', u'authoris', u'militari', u'forc', u'iraq']
[u'govt', u'unveil', u'plan', u'rail', u'cross']
[u'sailor', u'sign', u'red']
[u'seek', u'feder', u'help', u'save', u'health', u'review']
[u'schwab', u'retain', u'hawk', u'blue', u'thrash']
[u'scott', u'surg', u'ahead', u'event']
[u'sculli', u'call', u'car', u'fit']
[u'season', u'scott', u'cook']
[u'sheikh', u'arrest', u'pipelin', u'blast']
[u'injur', u'grenad', u'attack', u'cinema', u'iraqi']
[u'year', u'death', u'quarter', u'briton']
[u'spain', u'prime', u'minist', u'choos', u'successor']
[u'spanish', u'successor', u'choos']
[u'springbok', u'lock', u'clear', u'racism']
[u'stella', u'mccartney', u'marri', u'scotland', u'report']
[u'strong', u'perform', u'kidman', u'hopkin', u'venic']
[u'sugiyama', u'battl', u'past', u'aussi', u'pratt']
[u'sweden', u'karlsson', u'retain', u'lead']
[u'sydney', u'assault', u'jack']
[u'woman', u'die', u'age']
[u'teenag', u'girl', u'kill', u'crash']
[u'telstra', u'move', u'protect', u'market', u'share']
[u'telstra', u'servic', u'restor']
[u'thousand', u'gather', u'mourn', u'mohammad', u'baqer', u'hakim']
[u'toll', u'unlik', u'review', u'sharehold', u'offer']
[u'islam', u'milit', u'gun', u'indian', u'capit']
[u'kill', u'pacif', u'hway', u'accid']
[u'palestinian', u'kill', u'isra', u'missil', u'strike']
[u'uganda', u'reopen', u'church', u'own', u'radio', u'station']
[u'union', u'busi', u'holiday']
[u'unit', u'arsenal', u'look', u'continu', u'perfect', u'start']
[u'argentina', u'qualifi', u'olymp']
[u'pledg', u'humanitarian', u'assist']
[u'religi', u'group', u'tell', u'schwarzenegg', u'come']
[u'sprinter', u'fail', u'drug', u'test']
[u'tackl', u'china', u'currenc']
[u'govt', u'increas', u'special', u'need', u'educ']
[u'sign', u'health', u'fund', u'agreement']
[u'polic', u'arrest', u'drug', u'raid']
[u'widow', u'deni', u'sankoh', u'bodi', u'miss']
[u'wilder', u'photograph', u'boycott', u'galleri']
[u'wooli', u'claim', u'pharmaci', u'strong']
[u'abbott', u'deni', u'multipl', u'anti', u'hanson', u'fund']
[u'abbott', u'shrug', u'defam', u'threat']
[u'advoc', u'hope', u'better', u'refuge', u'condit']
[u'investig', u'fair', u'allianc']
[u'agassi', u'finish', u'kafelnikov']
[u'agassi', u'finish', u'kafelnikov', u'roddick']
[u'north', u'tennant', u'creek', u'decis']
[u'airport', u'capac', u'spotlight']
[u'servic', u'soon']
[u'servic']
[u'ord', u'hit', u'month', u'high']
[u'figur', u'brothel', u'inquiri', u'urg', u'stand', u'asid']
[u'demand', u'govt', u'way', u'insur']
[u'say', u'inexperi', u'cost', u'territori', u'extra', u'fund']
[u'seek', u'health', u'reform', u'meet']
[u'arsenal', u'ralli', u'fourth', u'lose']
[u'aussi', u'fli', u'nasa', u'trial']
[u'aussi', u'gollan', u'win', u'franc']
[u'australia', u'claim', u'second', u'row', u'gold']
[u'news', u'swan', u'oloughlin', u'rule']
[u'balanc', u'seek', u'tourism', u'develop']
[u'ballarat', u'feel', u'stage', u'water', u'restrict']
[u'bangladesh', u'mental', u'unabl', u'whatmor']
[u'barcaldin', u'budget', u'alloc', u'road', u'fund']
[u'steel', u'director', u'agre']
[u'murray', u'hit', u'chord', u'venic', u'film', u'festiv']
[u'blackburn', u'baggio']
[u'boomer', u'name', u'face', u'tall', u'black']
[u'boost', u'plan', u'ambul', u'communic']
[u'bronco', u'head', u'gold', u'coast']
[u'brother', u'face', u'attempt', u'murder', u'charg']
[u'build', u'approv', u'surpris', u'jump']
[u'burmes', u'govern', u'reject', u'democraci', u'roadmap']
[u'businessman', u'stab', u'loan', u'repay', u'court', u'tell']
[u'busi', u'weekend', u'firefight']
[u'caldecott', u'continu', u'win', u'way']
[u'alcohol', u'restrict', u'clear']
[u'longer', u'tourism', u'season']
[u'canberra', u'build', u'industri', u'flourish']
[u'canberra', u'offer', u'sydney', u'airport', u'solut']
[u'cardiologist', u'futur', u'remain', u'limbo']
[u'carr', u'expect', u'branch', u'head', u'expel']
[u'carr', u'heap', u'prais', u'rescu', u'team']
[u'carr', u'say', u'figur', u'face', u'expuls', u'parti']
[u'china', u'blame', u'polici', u'unresolv', u'korea']
[u'grower', u'seek', u'restrict', u'review']
[u'clijster', u'mauresmo', u'face', u'open', u'duel']
[u'focus', u'elect']
[u'club', u'gambl', u'campaign', u'stop', u'poki']
[u'coach', u'reflect', u'seagul', u'year']
[u'confer', u'hear', u'skin', u'save', u'method']
[u'copi', u'scud', u'crash', u'open']
[u'corn', u'jam', u'injuri']
[u'council', u'deliv', u'rat', u'rise']
[u'council', u'face', u'budget', u'shortfal']
[u'council', u'hit', u'alcohol', u'claim']
[u'councillor', u'continu', u'boundari', u'chang', u'push']
[u'countrylink', u'fare', u'rise']
[u'coupl', u'plead', u'guilti', u'fraud', u'charg']
[u'court', u'tell', u'biki', u'plant', u'bomb', u'chief']
[u'cowboy', u'set', u'record']
[u'crean', u'woo', u'jewish', u'communiti']
[u'creditor', u'decid', u'pan', u'futur']
[u'creditor', u'delay', u'liquid', u'vote']
[u'creditor', u'reject', u'rescu']
[u'crown', u'land', u'review']
[u'decis', u'viabil']
[u'doubl', u'give', u'star', u'juventus', u'perfect', u'start']
[u'downer', u'back', u'intern', u'assist', u'iraq']
[u'downer', u'call', u'releas']
[u'driver', u'face', u'court', u'alcohol', u'read']
[u'england', u'westwood', u'end', u'victori', u'drought']
[u'european', u'drought', u'help', u'australian', u'grain', u'grower']
[u'extrem', u'caution', u'urg', u'jakarta', u'bashir', u'verdict']
[u'fare', u'evas', u'behaviour', u'train', u'target']
[u'farmer', u'declar']
[u'faulti', u'tank', u'blame', u'dead', u'explos']
[u'investig', u'recent', u'iraq', u'bomb']
[u'govt', u'takeov', u'quarantin', u'servic']
[u'ferdinand', u'butt', u'england', u'squad']
[u'fiji', u'warn', u'textil', u'industri', u'reform', u'choic']
[u'chees', u'mark', u'start', u'china', u'trade', u'deal']
[u'boss', u'offer', u'creditor', u'deal', u'avoid']
[u'forum', u'focus', u'region', u'plan']
[u'formal', u'charg', u'bombay', u'bomb']
[u'gallop', u'urg', u'stop', u'forest', u'plan']
[u'german', u'edg', u'roger', u'mercx', u'race']
[u'girdler', u'expect', u'final']
[u'gold', u'bronz', u'puerto', u'rico']
[u'govt', u'fear', u'nation', u'power', u'reform', u'falter']
[u'govt', u'handl', u'medic', u'insur', u'crisi', u'fair']
[u'govt', u'urg', u'protect', u'vulner', u'koala']
[u'hama', u'deck', u'card', u'label', u'sharon', u'joker']
[u'hancock', u'lewi', u'murder', u'trial', u'juri', u'swear']
[u'hanson', u'ettridg', u'refus', u'bail']
[u'hawaii', u'brace', u'hurrican', u'jimena']
[u'heder', u'continu', u'safari', u'win', u'way']
[u'hollywood', u'mourn', u'movi', u'tough', u'bronson']
[u'hous', u'boom', u'put', u'pressur', u'incom', u'earner']
[u'howard', u'prais', u'pacif', u'forum']
[u'hrea', u'threaten', u'industri', u'action', u'hospit', u'plan']
[u'indigen', u'communiti', u'play', u'histori']
[u'industri', u'wast', u'contamin', u'sit', u'centr']
[u'industri', u'urg', u'help', u'clean', u'contamin', u'sit']
[u'injuri', u'wild', u'card', u'final']
[u'inquiri', u'consid', u'children', u'legal', u'rep', u'divorc']
[u'integr', u'hop', u'overnight', u'sydney', u'power']
[u'internet', u'connect', u'increas', u'australia']
[u'iraqi', u'gang', u'demand', u'famili', u'phone', u'negoti']
[u'iraqi', u'govern', u'council', u'name', u'cabinet']
[u'irrig', u'await', u'water', u'plan', u'detail']
[u'tri', u'attack', u'fergi', u'boot', u'incid']
[u'ivanisev', u'near', u'retir', u'report']
[u'jail', u'compens', u'claim', u'review']
[u'johnson', u'snatch', u'relay', u'gold']
[u'katherin', u'mayor', u'sure', u'polit', u'futur']
[u'kefu', u'doubt', u'world']
[u'kenya', u'lift', u'movement']
[u'knight', u'rest', u'player']
[u'knight', u'offer', u'kennedi', u'final', u'round', u'rest', u'hagan']
[u'kung', u'declar', u'winner', u'illinoi']
[u'labor', u'backbench', u'vow', u'support', u'palestinian', u'state']
[u'late', u'keep', u'ranger']
[u'order', u'return', u'solomon', u'island']
[u'libya', u'seal', u'deal', u'french', u'airlin', u'bomb']
[u'turnout', u'zimbabw', u'local', u'elect']
[u'arrest', u'iraq', u'saudi', u'border', u'najaf', u'blast']
[u'charg', u'chase']
[u'die', u'hexham', u'crash']
[u'face', u'court', u'indec', u'charg']
[u'manufactur', u'sector', u'subdu', u'august']
[u'maryborough', u'hop', u'clean', u'award']
[u'mcintosh', u'charg', u'drop']
[u'face', u'court', u'hotel', u'arm', u'robberi']
[u'miss', u'group', u'safe']
[u'monaghetti', u'voic', u'concern', u'aussi', u'track', u'team']
[u'mose', u'comeback']
[u'think', u'water', u'agreement', u'good', u'start']
[u'murder', u'man', u'wife', u'brother', u'stand', u'trial']
[u'nation', u'museum', u'consid', u'bore', u'exhibit']
[u'nat', u'seek', u'effort', u'fight', u'alcohol', u'woe']
[u'nat', u'welcom', u'water', u'move']
[u'nemesi', u'nalbandian', u'bar', u'feder', u'path', u'open']
[u'passport', u'rule', u'stop', u'ident', u'fraud']
[u'port', u'dredg', u'condit', u'loom']
[u'aborigin', u'leader', u'promis', u'land', u'fight']
[u'nrma', u'concern', u'ignit', u'breathalys']
[u'crack', u'dummi', u'auction', u'bidder']
[u'look', u'extend', u'heroin', u'inject', u'room', u'trial']
[u'meet', u'staff', u'drug', u'inject', u'room']
[u'teen', u'cours', u'childbirth', u'realiti']
[u'jail', u'yacht', u'theft']
[u'nation', u'dissid', u'promis', u'detail']
[u'organ', u'farm', u'rise', u'report']
[u'pair', u'face', u'court', u'illeg', u'fish', u'charg']
[u'pakistan', u'confid', u'sami', u'return', u'dayer']
[u'creditor', u'meet', u'decid', u'futur']
[u'parent', u'expect', u'charg', u'leav', u'infant']
[u'parent', u'express', u'support', u'tasmanian', u'archbishop']
[u'patchi', u'wale', u'prepar', u'world', u'squad']
[u'patrol', u'accompani', u'angl', u'ban']
[u'philippoussi', u'crash', u'open']
[u'pioneer', u'oust', u'ballarat', u'grand', u'final']
[u'plan', u'earli', u'intervent', u'youth', u'fund', u'boost']
[u'player', u'threaten', u'dalli', u'boycott']
[u'plan', u'doctor', u'levi']
[u'polic', u'theft', u'concern']
[u'polic', u'airw', u'join', u'search', u'miss', u'woman']
[u'polic', u'hors', u'recov', u'attack']
[u'polic', u'royal', u'commiss', u'say', u'investig']
[u'post', u'countri', u'music', u'muster', u'clean', u'begin']
[u'produc', u'drought']
[u'provision', u'liquid', u'gutnick', u'famili']
[u'public', u'ask', u'help', u'miss']
[u'public', u'comment', u'seek']
[u'doctor', u'flag', u'health', u'elect', u'issu']
[u'energi', u'minist', u'question', u'singl', u'regul']
[u'govt', u'urg', u'reconsid', u'pipelin', u'support']
[u'check', u'crimin', u'histori', u'teacher']
[u'ralli', u'militari', u'exercis']
[u'rann', u'letter', u'urg', u'health']
[u'recycl', u'scheme', u'urg', u'smoker', u'butt']
[u'rspca', u'seek', u'attend', u'rodeo']
[u'russian', u'defenc', u'minist', u'blame', u'neglig']
[u'saddam', u'deni', u'najaf', u'bomb', u'role', u'tape']
[u'safe', u'place', u'away', u'home']
[u'salin', u'trench', u'trap', u'stock']
[u'offer', u'communiti', u'health']
[u'school', u'speed', u'limit', u'flexibl']
[u'scott', u'take', u'shoot', u'lead', u'massachusett']
[u'scud', u'crash', u'open']
[u'sheedi', u'confid', u'ahead', u'docker', u'clash']
[u'shiit', u'mourn', u'cleric', u'detain']
[u'site', u'redevelop', u'lead', u'call', u'public']
[u'skin', u'store', u'futur', u'confer', u'tell']
[u'snow', u'spark', u'driver', u'safeti']
[u'socceroo', u'decim', u'injuri', u'ahead', u'jamaican']
[u'stoic', u'stewart', u'prepar', u'england', u'swansong']
[u'struggl', u'matilda', u'china', u'crisi']
[u'support', u'democrat', u'inquiri']
[u'hunger', u'strike', u'claim']
[u'tast', u'begin', u'drop']
[u'teenag', u'charg', u'school', u'blaze']
[u'tollway', u'hit', u'brack', u'popular']
[u'totti', u'rule', u'itali', u'crunch', u'euro']
[u'trade', u'deleg', u'iraq', u'hold']
[u'train', u'award', u'winner', u'announc']
[u'tribun', u'summon', u'west', u'coast', u'fullback', u'mcintosh']
[u'trio', u'face', u'trial', u'homeless', u'kill']
[u'line', u'increas', u'fare', u'anniversari']
[u'lib', u'preselect', u'nomin', u'corangamit']
[u'tyre', u'rule', u'stall', u'montoya', u'raikkonen']
[u'ullrich', u'miss', u'world', u'tour', u'crown']
[u'move', u'basra', u'staff', u'kuwait']
[u'govt', u'urg', u'reassess', u'iraq', u'budget']
[u'vanston', u'heckl', u'centrelink', u'offic', u'open']
[u'vaughan', u'yorkshir']
[u'victorian', u'premier', u'popular', u'drop']
[u'vinni', u'head', u'weight', u'melbourn']
[u'cabinet', u'consid', u'barrow', u'project']
[u'wagga', u'get', u'month', u'rainfal', u'boost']
[u'govt', u'say', u'hospit', u'servic', u'scrutinis']
[u'polic', u'street', u'gambl']
[u'waterfal', u'inquiri', u'hear', u'wind']
[u'welfar', u'group', u'welcom', u'poki', u'plan']
[u'west', u'challeng', u'skandali', u'charg']
[u'wheat', u'export', u'defend', u'purchas']
[u'widow', u'say', u'kelli', u'felt', u'betray']
[u'windsor', u'prais', u'water', u'reform', u'breakthrough']
[u'wine', u'industri', u'urg', u'boost', u'export']
[u'winter', u'rain', u'boost', u'central']
[u'woman', u'die', u'heidelberg', u'hous', u'blaze']
[u'woman', u'die', u'melbourn', u'hous']
[u'world', u'number', u'clijster']
[u'youth', u'detox', u'unit', u'need', u'health', u'worker']
[u'dead', u'flood', u'india']
[u'wound', u'baghdad', u'polic', u'station', u'blast']
[u'offic', u'kill', u'baghdad', u'attack']
[u'abbott', u'accus', u'labor', u'reviv', u'hanson']
[u'abbott', u'back', u'union', u'fund', u'probe']
[u'accus', u'carri', u'human', u'remain', u'suitcas', u'court']
[u'actor', u'launch', u'coff', u'green', u'plan']
[u'popul', u'expect']
[u'act', u'alli', u'health', u'advisor', u'appoint']
[u'consid', u'bond', u'parad', u'request']
[u'ord', u'continu', u'healthi', u'gain']
[u'announc', u'nation', u'secretari']
[u'figur', u'face', u'suspens', u'brothel', u'link']
[u'anderson', u'upbeat', u'water', u'plan']
[u'argentin', u'judg', u'order', u'militari', u'leader', u'releas']
[u'astronom', u'monitor', u'giant', u'asteroid']
[u'australia', u'ask', u'play', u'kashmir']
[u'australia', u'franc', u'team', u'beat', u'world']
[u'australian', u'economi', u'bare', u'grow']
[u'australian', u'warn', u'ahead', u'bashir', u'verdict']
[u'baghdad', u'bomb', u'kill', u'injur']
[u'bangladesh', u'confid', u'pakistan', u'seri']
[u'bashir', u'jail', u'year', u'appeal']
[u'beatti', u'want', u'union', u'fund', u'detail', u'public']
[u'beckham', u'tell', u'ronaldo', u'laugh', u'england', u'blow']
[u'plan', u'afoot', u'hospit', u'revamp']
[u'boati', u'safeti', u'remind']
[u'tackl', u'end', u'kefus', u'hop']
[u'boomer', u'seri', u'lead', u'tall', u'black']
[u'brazilian', u'women', u'world', u'vain']
[u'brazil', u'kleberson', u'rule', u'world', u'qualifi']
[u'bush', u'defend', u'cut']
[u'antagon', u'leav', u'ethanol']
[u'armidal', u'join', u'sentenc', u'scheme']
[u'canberra', u'print', u'handicap', u'radio', u'wagga', u'wagga']
[u'carr', u'back', u'elector', u'offic', u'investig', u'unit']
[u'cfmeu', u'return', u'woodsid', u'pilbara', u'plant']
[u'child', u'care', u'group', u'look', u'boss', u'ahead', u'float']
[u'chines', u'tiger', u'cub', u'fli', u'africa', u'learn', u'hunt']
[u'chook', u'farmer', u'blame', u'rule', u'busi', u'closur']
[u'cloke', u'give', u'second', u'grand', u'final', u'chanc']
[u'cole', u'write', u'chelsea', u'cast', u'star']
[u'communiti', u'receiv', u'fund', u'manag', u'salin']
[u'costello', u'optimist', u'despit', u'weak', u'econom', u'figur']
[u'council', u'back', u'administr', u'abattoir']
[u'council', u'consid', u'hous', u'crisi']
[u'councillor', u'mayor', u'critic', u'report']
[u'councillor', u'gather', u'cairn', u'lgaq', u'confer']
[u'council', u'put', u'revis', u'offer', u'staff']
[u'counter', u'terror', u'region', u'project', u'play', u'vital']
[u'court', u'secur', u'boost', u'murder', u'committ']
[u'crean', u'deflect', u'fund', u'critic', u'abbott']
[u'crean', u'welcom', u'poll', u'despit', u'approv', u'drop']
[u'dairi', u'farmer', u'consid', u'industri', u'issu']
[u'reopen', u'marron']
[u'deadlin', u'issu', u'adelaid', u'soccer', u'club']
[u'defenc', u'exercis', u'money', u'spinner', u'central']
[u'democrat', u'hospit', u'concern']
[u'demo', u'highlight', u'paradis', u'concern']
[u'doc', u'defend', u'handl', u'teenag', u'prostitut', u'case']
[u'doctor', u'face', u'hospit', u'indemn', u'agreement']
[u'dozen', u'evacu', u'kenyan', u'tourist', u'resort']
[u'earlier', u'start', u'bushfir', u'danger', u'period']
[u'elect', u'surgeri', u'wait', u'list', u'shrink']
[u'escap']
[u'everton', u'lead', u'premiership', u'transfer', u'race']
[u'expert', u'work', u'identifi', u'ill', u'strike']
[u'expo', u'highlight', u'youth', u'driver', u'issu']
[u'extra', u'help', u'bomber', u'home', u'sheedi']
[u'feder', u'aim', u'improv', u'condit', u'casual']
[u'fiji', u'help', u'player', u'disput']
[u'fittler', u'play', u'crucial', u'final', u'round']
[u'latest', u'chechen', u'violenc']
[u'newspap', u'editor', u'accept', u'court']
[u'charg', u'thailand', u'bomb', u'plot']
[u'dead', u'wound', u'latest', u'aceh', u'clash']
[u'franc', u'ring', u'chang', u'twickenham']
[u'fright', u'flick', u'domin', u'north', u'american', u'holiday']
[u'funer', u'process', u'shiit', u'cleric', u'reach', u'najaf']
[u'grin', u'friend', u'award']
[u'govern', u'sign', u'salin', u'flood', u'plan']
[u'govt', u'target', u'secret', u'union', u'fund']
[u'govt', u'wont', u'interven', u'hospit', u'decis', u'sack']
[u'green', u'threat', u'forest', u'mine']
[u'green', u'welcom', u'news', u'refuge', u'arriv']
[u'growth', u'expect', u'stall']
[u'hakim', u'funer', u'process', u'near', u'najaf']
[u'hama', u'milit', u'kill', u'israel', u'strike']
[u'heal', u'play', u'oversea', u'olymp', u'select']
[u'hewitt', u'match', u'postpon', u'capriati', u'henin']
[u'hospit', u'disput', u'envelop', u'state']
[u'howard', u'approv', u'headway', u'crean']
[u'howard', u'back', u'involv', u'iraq']
[u'increas', u'land', u'valu', u'spark', u'height', u'limit', u'plan']
[u'independ', u'katherin', u'polit', u'analyst']
[u'industri', u'relat', u'commiss', u'consid']
[u'injuri', u'scotland', u'forward', u'squad']
[u'insur', u'compani', u'come', u'accc', u'spotlight']
[u'insur', u'put', u'cloud', u'festiv']
[u'outlin', u'young', u'drug', u'probe']
[u'iran', u'delay', u'trial', u'canadian', u'journalist', u'murder']
[u'isra', u'inquiri', u'arab', u'shoot', u'label']
[u'jone', u'give', u'chanc', u'explain', u'case']
[u'judg', u'continu', u'read', u'verdict', u'bashir', u'case']
[u'juri', u'snowtown', u'trial']
[u'kelli', u'accept', u'merger', u'submiss']
[u'lack', u'support', u'lgaq', u'rural', u'divis']
[u'landhold', u'warn', u'penalti', u'pay', u'water']
[u'late', u'centuri', u'warmest', u'period', u'record']
[u'latham', u'defend', u'staff', u'brothel', u'investig']
[u'legal', u'centr', u'pressur', u'retain', u'staff']
[u'court', u'violent', u'robberi']
[u'attempt', u'rape', u'charg', u'get', u'bail']
[u'face', u'attempt', u'murder', u'charg']
[u'court', u'assault', u'senior']
[u'vow', u'fight', u'despit', u'contempt', u'convict']
[u'market', u'focus', u'aust', u'econom', u'data']
[u'melbourn', u'reveal', u'million', u'game', u'ceremoni']
[u'melbourn', u'spend', u'million', u'game']
[u'militari', u'exercis', u'wont', u'increas', u'terrorist', u'threat']
[u'equip', u'maker', u'lodg', u'plan']
[u'miner', u'say', u'deal', u'offer', u'sharehold', u'benefit']
[u'minist', u'blame', u'hanson', u'fallout', u'poll', u'slide']
[u'minist', u'watch', u'cfmeu', u'conduct']
[u'move', u'game', u'review', u'defeat']
[u'naval', u'boat', u'name', u'australian', u'citi']
[u'netbal', u'vote', u'raven', u'resurrect']
[u'blood', u'alcohol', u'limit', u'target', u'learner', u'driver']
[u'proof', u'bashir', u'head', u'judg', u'say']
[u'green', u'pray', u'chang']
[u'hous', u'price', u'increas', u'slow']
[u'jail', u'disgust', u'behaviour']
[u'nurs', u'welcom', u'hospit', u'condit', u'review']
[u'olymp', u'champion', u'szabo', u'heart', u'scare']
[u'kill', u'injur', u'gaza', u'strike']
[u'nation', u'presid', u'shock', u'hanson', u'bail']
[u'opposit', u'criticis', u'surgeri', u'time', u'prioriti']
[u'owen', u'readi', u'extend', u'career', u'liverpool']
[u'oyster', u'grower', u'want', u'dredg', u'chang']
[u'pair', u'appear', u'court', u'cocain', u'seizur']
[u'park', u'vandal', u'anger', u'councillor']
[u'patient', u'escap', u'adelaid', u'psychiatr', u'hospit']
[u'plan', u'offer', u'better', u'wetland', u'protect']
[u'player', u'threaten', u'dalli', u'boycott']
[u'demand', u'labor', u'explain', u'miss', u'union', u'fund', u'return']
[u'talk', u'postpon']
[u'polic', u'arrest', u'pair', u'cannabi']
[u'polic', u'car', u'pack', u'bomb', u'iraqi']
[u'polic', u'hunt', u'psychiatr', u'patient']
[u'polic', u'hunt', u'attempt', u'rape']
[u'polic', u'investig', u'melbourn', u'murder']
[u'polic', u'plea', u'help', u'miss']
[u'polic', u'probe', u'townsvill', u'stab']
[u'polic', u'honour', u'effort']
[u'polic', u'urg', u'govt', u'support', u'indigen', u'communiti']
[u'poor', u'support', u'put', u'bank', u'plan']
[u'port', u'cunningham', u'rule']
[u'power', u'restor', u'black', u'build']
[u'premier', u'defend', u'sunday', u'liquor', u'trade', u'decis']
[u'prison', u'payout', u'spark', u'govt', u'review']
[u'public', u'servant', u'afraid', u'frank']
[u'public', u'continu', u'access', u'weapon', u'rang']
[u'queensland', u'student', u'test']
[u'racq', u'fight', u'river', u'tunnel', u'plan']
[u'radio', u'report', u'murder', u'philippin']
[u'radio', u'station', u'owner', u'staff']
[u'rail', u'museum', u'take', u'shape']
[u'rainfal', u'outlook', u'look', u'good', u'south', u'west']
[u'rain', u'halt', u'play', u'open']
[u'record', u'price', u'predict', u'lamb']
[u'recov', u'firman', u'miss', u'monza', u'test']
[u'face', u'round', u'miss', u'itali', u'contest']
[u'redknapp', u'charg', u'misconduct', u'touchlin']
[u'light', u'camera', u'run']
[u'resid', u'servic', u'repriev']
[u'ronaldo', u'target', u'pele', u'record']
[u'rural', u'doctor', u'group', u'want', u'medicar', u'rebat', u'boost']
[u'sabco', u'closur', u'leav', u'jobless']
[u'govt', u'accept', u'letter', u'seek', u'medic', u'woe']
[u'govt', u'plan', u'chang', u'river', u'levi']
[u'saqlain', u'pressur', u'perform', u'month']
[u'sartor', u'reject', u'poor', u'mainten', u'blackout', u'caus']
[u'school', u'recognis', u'word', u'perfect', u'effort']
[u'scott', u'claim', u'maiden']
[u'scout', u'converg', u'central']
[u'secur', u'tighten', u'outsid', u'jakarta', u'court']
[u'senior', u'polic', u'offic', u'leav', u'forc']
[u'shepherd', u'like', u'liquid']
[u'shevchenko', u'doubl', u'give', u'milan', u'open', u'victori']
[u'shoulder', u'injuri', u'end', u'kefus', u'world', u'dream']
[u'open', u'sunday']
[u'silverston', u'track', u'protestor', u'free']
[u'skier', u'ask', u'support', u'lomond', u'patrol']
[u'small', u'crowd', u'trickl', u'water', u'meet']
[u'smart', u'passport', u'enhanc', u'secur']
[u'snowtown', u'juri', u'continu', u'deliber', u'tomorrow']
[u'snowtown', u'juri', u'retir']
[u'societi', u'call', u'altern', u'access', u'styx', u'valley']
[u'southcorp', u'suffer', u'loss']
[u'strike', u'forc', u'focus', u'sydney', u'shoot']
[u'suspect', u'bomb', u'hit', u'baghdad', u'polic', u'station']
[u'talk', u'focus', u'plan', u'medicar', u'chang']
[u'tampa', u'refuge', u'arriv', u'australia']
[u'tampa', u'refuge', u'arriv', u'brisban']
[u'hous', u'approv', u'month', u'high']
[u'tasmania', u'grip', u'footi', u'fever']
[u'teen', u'win', u'gympi', u'countri', u'music', u'award']
[u'tender', u'call', u'soon', u'riverway', u'plan']
[u'territori', u'busi', u'warn', u'fake', u'invoic']
[u'trumpet', u'fit', u'ahead', u'echol', u'bout']
[u'timber', u'distributor', u'blame', u'closur', u'log', u'quota']
[u'tiwi', u'island', u'host', u'final', u'forestri', u'strategi']
[u'tobacco', u'compani', u'million']
[u'town', u'seek', u'water', u'restrict', u'exempt']
[u'traffic', u'flow', u'tram', u'crash']
[u'trio', u'face', u'court', u'escap', u'charg']
[u'union', u'manag', u'meet']
[u'union', u'appeal', u'sack']
[u'troop', u'launch', u'afghan', u'offens']
[u'venic', u'honour', u'laurentii', u'lifetim']
[u'verdict', u'bashir', u'trial']
[u'virgin', u'blue', u'call', u'feder', u'aviat', u'secur']
[u'water', u'declar', u'lift']
[u'widow', u'take', u'stand', u'trial', u'gypsi', u'joker', u'biki']
[u'william', u'face', u'tough', u'choic', u'corn', u'jam']
[u'wind', u'farm', u'firm', u'experi', u'share', u'price', u'fall']
[u'drought', u'histori']
[u'present', u'face', u'complaint', u'comment']
[u'kill', u'russian', u'train', u'blast']
[u'abbott', u'play', u'costello', u'comment']
[u'aborigin', u'figur', u'eye', u'labor', u'nation', u'presid']
[u'mazen', u'prepar', u'face', u'arafat', u'declar']
[u'consid', u'zero', u'alcohol', u'limit', u'driver']
[u'agassi', u'advanc', u'quarter', u'final']
[u'agassi', u'overcom', u'dent', u'rain']
[u'airlin', u'push', u'public', u'servic', u'book']
[u'alpha', u'accid', u'kill', u'toowoomba', u'woman']
[u'bemax', u'sharehold']
[u'angwin', u'chaffey', u'match']
[u'argentina', u'final', u'squad', u'world']
[u'arsenal', u'appeal', u'campbel', u'charg', u'report']
[u'attack', u'launch', u'resourc', u'manag']
[u'aussi', u'unchang', u'davi', u'semi', u'final']
[u'aussi', u'women', u'prepar', u'summer', u'intern']
[u'aust', u'discuss', u'trade', u'asean']
[u'australia', u'close', u'embassi', u'apart', u'complex']
[u'australian', u'muslim', u'leader', u'link', u'qaeda']
[u'barmera', u'gear', u'field', u'day']
[u'bashir', u'plan', u'appeal']
[u'brack', u'offer', u'assur', u'cancer', u'concern']
[u'bulldog', u'switch', u'showground']
[u'bulloch', u'replac', u'injur', u'murray', u'scotland', u'captain']
[u'bushrang', u'white', u'win', u'captainci']
[u'hazard', u'reduct', u'rethink']
[u'tougher', u'sentenc', u'work']
[u'china', u'stand', u'firm', u'currenc', u'valuat']
[u'cipollini', u'team', u'kick', u'tour', u'spain']
[u'cold', u'recept', u'kenyan', u'athlet', u'return']
[u'commission', u'appoint', u'troubl', u'wiluna', u'council']
[u'council', u'lament', u'freight']
[u'court', u'jail', u'iileg', u'fisher']
[u'crean', u'attack', u'rudd', u'bashir', u'comment']
[u'cretin', u'comment', u'cost', u'lawyer']
[u'croc', u'sight', u'spark', u'trap', u'effort']
[u'deliveryman', u'coke', u'attack']
[u'disgrac', u'address', u'parliament']
[u'link', u'lung', u'cancer']
[u'downer', u'defend', u'spend', u'condit']
[u'dragon', u'injuri', u'crisi', u'deepen']
[u'drought', u'take', u'toll', u'farmer']
[u'sight', u'council', u'disput']
[u'england', u'lose', u'gerrard', u'sinclair']
[u'environ', u'dept', u'highlight', u'port', u'dredg', u'fear']
[u'feder', u'fund', u'freez', u'calder', u'highway']
[u'continu', u'burn', u'sydney', u'school']
[u'servic', u'begin', u'kuringai', u'chase', u'burn']
[u'firm', u'ask', u'consid', u'bush', u'invest']
[u'post', u'saddam', u'iraqi', u'cabinet', u'swear']
[u'fisheri', u'look', u'oyster', u'concern']
[u'fisher', u'seismic', u'test', u'freez']
[u'focus', u'boost', u'migrant', u'number']
[u'footwear', u'manufactur', u'struggl', u'compet']
[u'fund', u'earmark', u'multi', u'purpos']
[u'fund', u'seek', u'help', u'injur', u'rugbi', u'player']
[u'govt', u'accus', u'dump', u'refuge', u'support']
[u'govt', u'weed', u'dishonest', u'veterinarian']
[u'great', u'scott', u'join', u'world', u'elit']
[u'green', u'claim', u'victori', u'firewood', u'campaign']
[u'group', u'plant', u'idea', u'save', u'rainforest']
[u'hanson', u'ettridg', u'appeal', u'fail', u'bail', u'bid']
[u'hanson', u'support', u'hold', u'weekend', u'vigil']
[u'hart', u'celebr', u'match']
[u'hickss', u'lawyer', u'challeng', u'guantanamo', u'imprison']
[u'high', u'court', u'reject', u'compo', u'claim', u'abattoir', u'worker']
[u'high', u'turnov', u'prove', u'cost', u'mine']
[u'highway', u'crash', u'claim', u'live']
[u'hill', u'wont', u'water', u'levi', u'stanc']
[u'hospit', u'revamp', u'welcom', u'news']
[u'howard', u'cautious', u'welcom', u'bashir', u'sentenc']
[u'illawarra', u'properti', u'price', u'rise']
[u'indonesia', u'call', u'bashir', u'debat']
[u'industri', u'trend', u'increas', u'busi']
[u'injuri', u'hamper', u'coach', u'say', u'roo']
[u'rat', u'hold']
[u'iran', u'recal', u'ambassador', u'britain']
[u'iraqi', u'shiit', u'leader', u'lay', u'rest', u'holi', u'citi']
[u'irrig', u'tell', u'deal', u'live', u'murray', u'plan']
[u'israel', u'consid', u'exil', u'arafat']
[u'jone', u'give', u'defenc', u'corrupt', u'claim']
[u'kelli', u'inquiri', u'tell', u'suicid', u'like']
[u'kerri', u'launch', u'presid']
[u'kirsten', u'shelv', u'retir', u'plan']
[u'kite', u'surfer', u'kill', u'hit', u'powerlin']
[u'knight', u'await', u'player', u'clearanc', u'cowboy', u'clash']
[u'labor', u'brothel', u'landlord', u'stand', u'asid']
[u'landhold', u'urg', u'boost', u'water', u'storag']
[u'liquor', u'store', u'trade', u'hour', u'plan', u'spark', u'concern']
[u'macleod', u'confid', u'adelaid', u'bounc']
[u'charg', u'stab']
[u'maradona', u'help', u'launch', u'wine', u'label']
[u'mayor', u'back', u'anti', u'terror', u'fund']
[u'mayor', u'highlight', u'drought', u'inequ']
[u'mayor', u'quit', u'prove', u'claim', u'mishandl']
[u'mayor', u'welcom', u'feder', u'fund', u'review']
[u'mcgradi', u'consid', u'suncoast', u'schooli', u'chang']
[u'melbourn', u'appoint']
[u'miner', u'fear', u'forest', u'cost', u'job']
[u'minist', u'reliev', u'east', u'hume', u'drought']
[u'moonwalk', u'popular', u'footag']
[u'life', u'leav', u'youth', u'scheme']
[u'potenti', u'indigen', u'tourism']
[u'rain', u'fall', u'albani']
[u'quiet', u'poki', u'vote']
[u'begin', u'alcohol', u'crackdown']
[u'mundin', u'fight', u'echol', u'bout']
[u'nation', u'award', u'mental', u'health', u'servic']
[u'navi', u'boat', u'name', u'recognis', u'albani']
[u'navi', u'ararat']
[u'near', u'death', u'near', u'albani', u'near', u'world', u'championship']
[u'need', u'prayer', u'ganesh', u'india']
[u'timber', u'bodi', u'lift', u'industri', u'hop']
[u'korea', u'parliament', u'back', u'nuclear', u'build']
[u'rest', u'drug', u'council']
[u'resurrect', u'raven']
[u'club', u'plan', u'poki', u'hike', u'challeng']
[u'deleg', u'find', u'long', u'lose', u'greek', u'relat']
[u'nurs', u'upset', u'review', u'recommend', u'delay']
[u'pasminco', u'face', u'lawsuit', u'sale']
[u'patient', u'urg', u'lobbi', u'govt', u'fund']
[u'player', u'vote', u'boycott', u'dalli', u'award']
[u'polic', u'continu', u'hunt', u'danger', u'escape']
[u'polic', u'fail', u'chang', u'magistr', u'decis']
[u'polic', u'street', u'break', u'cycl', u'crime']
[u'polic', u'investig', u'drive', u'shoot']
[u'polic', u'issu', u'warn', u'attack']
[u'polic', u'recognis', u'brave', u'effort']
[u'polic', u'shoot', u'mildura', u'raid']
[u'polic', u'search', u'lead', u'killer']
[u'prison', u'escap', u'label', u'disgrac']
[u'privat', u'lynch', u'sign', u'million', u'dollar', u'book', u'deal']
[u'prosecutor', u'seek', u'year', u'jail', u'bali', u'bomb']
[u'public', u'servant', u'accus', u'avoid', u'confront']
[u'public', u'input', u'plan', u'tweed', u'futur']
[u'public', u'relationship']
[u'qatar', u'put', u'sport', u'muscl']
[u'consid', u'terrorist', u'target']
[u'ralf', u'schumach', u'hospit']
[u'ralf', u'take', u'hospit', u'monza', u'crash']
[u'rann', u'question', u'health', u'fund']
[u'real', u'scrape', u'late', u'draw', u'villarr']
[u'region', u'communiti', u'share', u'road', u'safeti', u'fund']
[u'region', u'learn', u'film', u'make', u'secret']
[u'renam', u'competit', u'laxat', u'sound']
[u'report', u'highlight', u'bulk', u'bill', u'inequ']
[u'resid', u'meet', u'powerlin', u'health', u'concern']
[u'resort', u'owner']
[u'rider', u'rais', u'fund', u'care', u'group']
[u'road', u'peac', u'dead', u'arafat']
[u'robinson', u'fail', u'stop', u'defenc', u'defam']
[u'rotari', u'review', u'polici', u'wake', u'abus', u'claim']
[u'ruddock', u'tamworth', u'indigen', u'job', u'talk']
[u'russian', u'edg', u'opal']
[u'rugbi', u'offici', u'launch', u'racism', u'inquiri']
[u'scheme', u'aim', u'help', u'park', u'peopl']
[u'scott', u'join', u'world', u'elit']
[u'seatbelt', u'hitch', u'secur', u'court', u'fine']
[u'seven', u'profit', u'slide', u'job']
[u'seven', u'job', u'announc', u'drop', u'profit']
[u'share', u'market', u'continu', u'march', u'higher']
[u'share', u'market', u'slip', u'seven', u'tumbl']
[u'sheahan', u'dope', u'reduc', u'month']
[u'sheik', u'deni', u'link', u'qaeda', u'suspect']
[u'shepherd', u'produc', u'wind']
[u'singapor', u'use', u'chines', u'herb', u'acupunctur']
[u'skandali', u'free', u'play', u'warrior']
[u'skywest', u'consid', u'kununurra', u'servic']
[u'smaller', u'timber', u'volum', u'chip', u'sotico']
[u'snowtown', u'juri', u'continu', u'deliber']
[u'snowtown', u'juri', u'retir', u'second']
[u'sorenstam', u'compet', u'skin', u'game']
[u'south', u'african', u'plead', u'guilti', u'station', u'theft']
[u'south', u'west', u'launch', u'school', u'watch']
[u'spain', u'unchang', u'team', u'davi', u'semi', u'final']
[u'state', u'seek', u'guidanc', u'deal', u'terrorist']
[u'strong', u'support', u'farmer', u'start', u'scheme']
[u'strong', u'wind', u'bring', u'powerlin']
[u'surat', u'bear', u'rower', u'rethink', u'futur']
[u'surrey', u'stewart', u'special', u'send']
[u'tafe', u'resourc', u'share', u'hunter', u'firm']
[u'tahiti', u'start', u'rescu', u'oper', u'distress', u'ship']
[u'taiwan', u'remov', u'china', u'passport']
[u'tampa', u'refuge', u'begin', u'process']
[u'tampa', u'refuge', u'spend', u'night', u'australia']
[u'govt', u'continu', u'hunt', u'develop']
[u'tasmania', u'popul', u'face', u'long', u'term', u'declin']
[u'teacher', u'continu', u'protest']
[u'territori', u'repres', u'feder', u'parliament']
[u'terror', u'hotlin', u'govt', u'alert', u'labor', u'alarm']
[u'tfga', u'back', u'water', u'plan']
[u'thailand', u'charg', u'alleg', u'member']
[u'thorp', u'readi', u'fresh', u'start']
[u'children', u'kill', u'brisban', u'stab']
[u'kill', u'french', u'polynesian', u'ferri', u'capsiz']
[u'toddler', u'die']
[u'tran', u'tasman', u'rivalri', u'continu']
[u'arrest', u'omagh', u'bomb']
[u'typhoon', u'hit', u'hong', u'kong', u'guandong']
[u'typhoon', u'leav', u'trail', u'destruct', u'china']
[u'expect', u'hec', u'place', u'fall']
[u'union', u'back', u'allianc', u'file', u'return']
[u'court', u'overturn', u'death', u'sentenc']
[u'boost', u'marshal', u'program']
[u'seek', u'resolut', u'iraq']
[u'vail', u'reject', u'nat', u'leadership', u'assumpt']
[u'vandal', u'turn', u'attent', u'church']
[u'vidmar', u'hang', u'soccer', u'boot']
[u'wallabi', u'face', u'select', u'dilemma']
[u'wallabi', u'plan', u'darwin', u'trip']
[u'wallabi', u'head', u'darwin']
[u'welfar', u'group', u'govt', u'child', u'abus']
[u'weather', u'trigger', u'highway', u'closur']
[u'woman', u'die', u'highway', u'crash']
[u'abba', u'reappoint', u'erakat', u'chief', u'negoti']
[u'abtron', u'devic', u'advertis', u'mislead', u'court', u'rule']
[u'mazen', u'blame', u'peac', u'crisi', u'israel']
[u'mazen', u'face', u'parliament']
[u'accept', u'theori', u'mar', u'surfac', u'challeng']
[u'accus', u'cancel', u'dalli', u'award']
[u'govt', u'oper', u'commerci', u'forestri']
[u'question', u'spain', u'qaeda', u'suspect']
[u'dept', u'reject', u'blanket', u'footrot', u'approach']
[u'agricultur', u'job', u'shake', u'stir', u'emot']
[u'airlin', u'decoy', u'devic', u'consider']
[u'albani', u'grain', u'termin', u'plan', u'modifi']
[u'explain', u'undisclos', u'donat', u'govt']
[u'suggest', u'regist', u'sale', u'morn']
[u'angler', u'prepar', u'fish', u'season']
[u'anti', u'abortionist', u'execut']
[u'anti', u'virus', u'softwar', u'lose', u'fight']
[u'asteroid', u'collis', u'risk', u'downgrad']
[u'dead', u'injur', u'typhoon', u'batter']
[u'australian', u'sheikh', u'deni', u'involv']
[u'australian', u'suspect', u'qaeda', u'link']
[u'author', u'probe', u'trailer', u'mishap']
[u'ballarat', u'threaten', u'sack', u'garbag', u'stand']
[u'balloon', u'record', u'attempt', u'come', u'apart', u'seam']
[u'bashar', u'rescu', u'bangladesh', u'inning']
[u'board', u'consid', u'develop', u'issu']
[u'bomber', u'touch', u'perth']
[u'bomb', u'campaign', u'foil', u'kirkuk']
[u'boomer', u'toppl', u'tall', u'black']
[u'bosnich', u'lose', u'chelsea', u'appeal']
[u'brack', u'highlight', u'protract', u'rail', u'talk']
[u'brain', u'research', u'centr', u'open', u'melbourn']
[u'brazil', u'exempt', u'qualifi', u'rivaldo']
[u'break', u'hill', u'get', u'polic', u'chief']
[u'burn', u'rubber', u'domin', u'monza']
[u'busi', u'schooli']
[u'region', u'base', u'power', u'board']
[u'cancer', u'patient', u'get', u'oper', u'cancel']
[u'claim', u'australia', u'defenc', u'overcommit']
[u'claim', u'southcorp', u'loss', u'shouldnt', u'affect', u'grape', u'demand']
[u'clapton', u'want', u'life', u'like', u'roll', u'stone', u'keith']
[u'cochlear', u'chief', u'retir']
[u'communiti', u'farewel', u'cathol', u'bishop']
[u'concern', u'justic', u'fail', u'juvenil']
[u'confer', u'hear', u'nation', u'midwif', u'shortag']
[u'council', u'back', u'region', u'campaign']
[u'councillor', u'back', u'investig']
[u'crowd', u'favourit', u'weir', u'unfaz']
[u'defenc', u'analyst', u'critic', u'govt', u'defenc', u'fund']
[u'deputi', u'open', u'appeal', u'help', u'wool']
[u'deputi', u'explain', u'water', u'manag', u'plan']
[u'earlier', u'start', u'bushfir', u'danger', u'period']
[u'sick', u'eat', u'poison', u'food']
[u'england', u'recal', u'gun', u'franc']
[u'eurobodalla', u'join', u'poki', u'protest']
[u'expert', u'focus', u'effort', u'abalon', u'diseas', u'threat']
[u'faldo', u'aim', u'wind', u'ryder']
[u'farina', u'forc', u'chang', u'jamaica', u'clash']
[u'farmer', u'action', u'goobang']
[u'feder', u'govt', u'urg', u'address', u'south', u'west', u'woe']
[u'govt', u'plan', u'land', u'weapon', u'rang']
[u'report', u'acceler', u'recoveri']
[u'ferdinand', u'beckham', u'england']
[u'fireproof', u'cabl', u'safer', u'build']
[u'scheme', u'face', u'fund', u'uncertainti']
[u'fish', u'group', u'call', u'public', u'ownership', u'port']
[u'focus', u'solomon', u'rudd', u'tell']
[u'forest', u'agreement', u'prove', u'posit']
[u'worldcom', u'chief', u'plead', u'guilti', u'fraud']
[u'garcia', u'set', u'sight', u'automat', u'ryder', u'spot']
[u'partner', u'wwii', u'veteran', u'entitl', u'widow']
[u'georg', u'defend', u'elect', u'campaign', u'donat']
[u'govt', u'deni', u'offic', u'protect', u'pine']
[u'govt', u'question', u'defenc', u'properti', u'sale']
[u'govt', u'lobbi', u'industri', u'promot', u'speed']
[u'govt', u'reform', u'program']
[u'shortag', u'take', u'toll', u'hospit']
[u'griffith', u'launch', u'higher', u'educ', u'initi']
[u'group', u'hold', u'talk', u'lock', u'girl']
[u'scanner', u'spot', u'hide', u'bloat']
[u'habib', u'famili', u'shock', u'terror', u'contact', u'claim']
[u'hamilton', u'resid', u'unsurpris', u'sand', u'plant']
[u'hand', u'gun', u'steal', u'secur', u'compani']
[u'hanson', u'lawyer', u'lodg', u'bail', u'applic']
[u'health', u'insur', u'pull', u'cover', u'hospit']
[u'high', u'wind', u'caus', u'havoc', u'south', u'east']
[u'hilton', u'quit', u'wake', u'brothel']
[u'hockeyroo', u'hudson', u'sidelin', u'knee', u'injuri']
[u'hollioak', u'mile', u'chariti', u'trip']
[u'hop', u'miss', u'safe']
[u'hormon', u'help', u'treat', u'obes']
[u'hospit', u'staff', u'support', u'protest']
[u'hous', u'price', u'rise', u'june', u'quarter']
[u'hussey', u'leav']
[u'icac', u'probe', u'clear', u'transport', u'minist']
[u'indian', u'boat', u'capsiz', u'fear', u'drown']
[u'indigen', u'servic', u'pick', u'north', u'rout']
[u'indigen', u'liaison', u'team', u'begin', u'fremantl']
[u'industri', u'dismiss', u'govt', u'tighter', u'control']
[u'intellig', u'staff', u'fear', u'weapon', u'claim']
[u'strong', u'drug', u'confer']
[u'ireland', u'doubt', u'scotland', u'match']
[u'isra', u'soldier', u'kill', u'palestinian', u'gunfir']
[u'isra', u'warplan', u'strike', u'south', u'lebanon']
[u'jackson', u'disappoint', u'sluggish', u'ticket', u'sale']
[u'joint', u'custodi', u'children', u'wont', u'solv', u'troubl']
[u'bali', u'bomb', u'suspect', u'say', u'real', u'terrorist']
[u'king', u'head', u'inquiri', u'alleg', u'springbok', u'racism']
[u'kitano', u'win', u'film', u'festiv', u'special', u'award']
[u'landhold', u'continu', u'water', u'levi', u'protest']
[u'latest', u'tape', u'probabl', u'saddam', u'voic']
[u'lion', u'regain', u'michael', u'pike']
[u'lopez', u'affleck', u'marri', u'septemb']
[u'magistr', u'ask', u'toler', u'children']
[u'jail', u'acid', u'attempt', u'murder']
[u'matilda', u'gear', u'england', u'clash']
[u'refus', u'play', u'match', u'york']
[u'militari', u'compo', u'law', u'revamp']
[u'miner', u'take', u'explor', u'portfolio']
[u'mother', u'charg', u'wil', u'murder', u'babi']
[u'motorway', u'worker', u'stage', u'hour', u'strike']
[u'question', u'rail', u'servic', u'chang']
[u'say', u'wrongdo', u'campaign', u'donat']
[u'presenc', u'chang', u'poki', u'vote']
[u'mundin', u'world', u'champion']
[u'mundin', u'champ']
[u'murray', u'river', u'mouth', u'wash']
[u'featur', u'fail', u'gold', u'coast', u'film', u'slump']
[u'legal', u'board', u'plan', u'lift', u'lawyer', u'fee']
[u'zealand', u'rat', u'leav', u'unchang']
[u'cancel', u'dalli', u'award']
[u'cancel', u'dalli', u'award']
[u'govern', u'defend', u'busway', u'budget', u'blowout']
[u'pass', u'rape', u'trial', u'law']
[u'nurs', u'boost', u'plan', u'warren', u'hospit']
[u'olymp', u'bronz', u'medallist', u'lagat', u'deni', u'dope']
[u'opal', u'shine', u'hungari']
[u'ovarian', u'cancer', u'aust', u'highest', u'research']
[u'pair', u'fin', u'assist', u'woomera', u'escape']
[u'pakistan', u'reject', u'bangladesh', u'discrimin', u'charg']
[u'plan', u'consid', u'zero', u'alcohol', u'level', u'plater']
[u'plane', u'maker', u'seek', u'airport', u'space']
[u'play', u'final', u'resum', u'open']
[u'poland', u'take', u'control', u'iraq', u'section']
[u'polic', u'appeal', u'help', u'avoca', u'shoot', u'incid']
[u'polic', u'arrest', u'suspect', u'gangster', u'sydney']
[u'polic', u'forc', u'wait', u'question', u'tripl', u'murder']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'probe', u'tripl', u'murder', u'neighbour', u'mourn']
[u'polic', u'scheme', u'help', u'break', u'barrier']
[u'port', u'readi', u'final', u'action']
[u'powel', u'push', u'resolut', u'iraq']
[u'predict', u'better', u'crop', u'season']
[u'premier', u'dismay', u'cut', u'radio', u'bulletin']
[u'protest', u'air', u'close', u'hour', u'plan']
[u'question', u'agricultur', u'job']
[u'public', u'urg', u'amidst', u'bulk', u'bill', u'debat']
[u'govt', u'overtak', u'rest', u'stop', u'plan']
[u'rain', u'forc', u'rat']
[u'rainfal', u'determin', u'water', u'restrict', u'need']
[u'rain', u'cash', u'german', u'autobahn', u'spark', u'traffic']
[u'rain', u'offer', u'hope', u'grain', u'farmer']
[u'ralf', u'schumach', u'leav', u'hospit', u'test', u'crash']
[u'resourc', u'stock', u'push', u'ord', u'higher']
[u'retail', u'angri', u'prison', u'shop', u'escap']
[u'retir', u'deserv', u'entitl', u'howard']
[u'road', u'crash', u'leav', u'dead']
[u'roddick', u'roar', u'rain', u'delay']
[u'replac', u'kefu', u'number']
[u'rokocoko', u'expect', u'reach', u'height', u'world']
[u'romanian', u'student', u'arrest', u'blaster', u'worm']
[u'ruddock', u'pursu', u'appeal', u'court', u'rule']
[u'rumsfeld', u'arriv', u'unannounc', u'baghdad']
[u'rumsfeld', u'head', u'middl', u'east', u'unannounc', u'trip']
[u'rural', u'centr', u'site', u'decis', u'week', u'away']
[u'safeti', u'plan', u'consid', u'accid', u'cycl']
[u'soccer', u'field', u'replac', u'adelaid', u'citi']
[u'sawmil', u'offer', u'yarloop', u'assur']
[u'schwarzenegg']
[u'scientist', u'basin', u'spring']
[u'select', u'surpris', u'adelaid', u'drop', u'perri']
[u'servic', u'industri', u'boost', u'econom', u'recoveri']
[u'seven', u'cut', u'ringbark', u'local', u'rann', u'say']
[u'shabbir', u'rip', u'bangladesh', u'late', u'order']
[u'singapor', u'sampl', u'penola', u'beer']
[u'snowtown', u'juri', u'retir', u'even']
[u'socceroo', u'battl', u'injuri', u'ahead', u'jamaica', u'clash']
[u'south', u'african', u'turn', u'englishman', u'hop']
[u'sport', u'club', u'get', u'sale', u'approv']
[u'street', u'block', u'emerg']
[u'stuart', u'urg', u'player', u'avoid', u'boycott']
[u'studi', u'question', u'reef', u'tourism', u'impact']
[u'stuff', u'huski', u'nation', u'archiv', u'shop', u'list']
[u'surfac', u'missil', u'seiz', u'saudi', u'arabia']
[u'survey', u'highlight', u'bushfir', u'busi', u'cost']
[u'survey', u'show', u'local', u'govt', u'posit', u'safe']
[u'survey', u'seek', u'public', u'input', u'telstra', u'sale']
[u'tackl', u'corrupt', u'lose', u'tell']
[u'advoc', u'applaud', u'rule', u'right']
[u'teacher', u'help', u'stave', u'abus', u'claim']
[u'thai', u'court', u'refus', u'bail', u'alleg', u'member']
[u'thousand', u'flee', u'shoot', u'central', u'liberia']
[u'transport', u'dept', u'airport', u'breach']
[u'tripl', u'murder', u'suspect', u'hospit', u'guard']
[u'dead', u'crash']
[u'hospitalis', u'magpi', u'attack']
[u'travel', u'agent', u'tast', u'sunshin', u'coast']
[u'welcom', u'draft', u'resolut', u'iraq']
[u'hop', u'super', u'cow', u'creat', u'elit', u'dairi', u'herd']
[u'union', u'fear', u'staff', u'cut', u'downgrad', u'telstra', u'servic']
[u'unsaf', u'highway', u'tree']
[u'defenc', u'staff', u'await', u'secur', u'check']
[u'uruguay', u'australia', u'meet', u'discuss', u'viarsa', u'captur']
[u'anti', u'abort', u'killer', u'execut']
[u'defend', u'aung', u'hunger', u'strike']
[u'say', u'north', u'korea', u'threaten', u'nuclear', u'test']
[u'seek', u'extens', u'chemic', u'arm', u'destruct']
[u'vaughan', u'confid', u'find', u'win', u'touch']
[u'polic', u'review', u'gangland', u'task', u'forc']
[u'wallabi', u'select', u'youth', u'experi']
[u'wallabi', u'selector', u'tip', u'pull', u'surpris']
[u'water', u'user', u'tell', u'face', u'restrict']
[u'white', u'free', u'pend', u'hear']
[u'wildcat', u'sign', u'import', u'jackson']
[u'woman', u'sue', u'state', u'year', u'abus']
[u'kill', u'passeng', u'truck', u'fall', u'ditch']
[u'boost', u'earmark', u'local', u'govt', u'merger']
[u'govt', u'appoint', u'chief', u'nurs']
[u'activ', u'fungus', u'affect', u'global', u'warm', u'studi']
[u'land', u'releas', u'rais', u'environment', u'concern']
[u'adelaid', u'tast', u'sampl', u'state', u'biggest', u'opera']
[u'adler', u'plead', u'guilti', u'stock', u'market', u'charg']
[u'advis', u'iraq', u'say', u'slow', u'bureaucraci', u'fail']
[u'agforc', u'seek', u'sheep', u'industri', u'support']
[u'agricultur', u'crop', u'easier', u'access', u'china']
[u'agricultur', u'minist', u'attack', u'evict', u'notic']
[u'albani', u'resid', u'prais', u'water', u'conserv']
[u'ord', u'dip', u'investor', u'cash']
[u'seek', u'ruddock', u'discret', u'visa', u'case']
[u'aussi', u'domin', u'english', u'counti', u'comp']
[u'aust', u'prepar', u'mock', u'terrorist', u'attack']
[u'australia', u'agre', u'intercept', u'plan']
[u'australian', u'alleg', u'terrorist', u'link']
[u'avellino', u'await', u'suprem', u'court', u'decis']
[u'ayr', u'urg', u'crow', u'fan', u'snap', u'ticket']
[u'banger', u'pressur', u'pakistan', u'final', u'test']
[u'bangladesh', u'eye', u'test']
[u'bangladesh', u'slump', u'second', u'inning']
[u'battl', u'hewitt', u'claim', u'second']
[u'bermuda', u'brace', u'power', u'hurrican']
[u'fight', u'sharehold', u'rebellion']
[u'founder', u'stand', u'grind', u'board', u'meet']
[u'birdsvill', u'gear', u'race']
[u'bomber', u'dump', u'mercuri', u'freo', u'showdown']
[u'bomb', u'explod', u'athen', u'court', u'build']
[u'boomer', u'complet', u'tall', u'black', u'whitewash']
[u'brave', u'ralf', u'hope', u'monza', u'return']
[u'british', u'polic', u'seiz', u'billion', u'drug', u'money']
[u'bronco', u'delay', u'berrigan', u'fit']
[u'bronco', u'edg', u'dragon', u'break']
[u'burdekin', u'upgrad', u'provid', u'green', u'energi']
[u'busi', u'group', u'china', u'highlight', u'trade']
[u'cairn', u'polic', u'launch', u'crackdown']
[u'communiti', u'chang', u'jabiru', u'plan']
[u'cano', u'visitor', u'kakadu', u'fall']
[u'carnarvon', u'polic', u'pleas', u'crime', u'strategi']
[u'carrathool', u'shire', u'councillor', u'die', u'heart', u'attack']
[u'scan', u'like', u'devic', u'search', u'gold', u'deposit']
[u'chang', u'receiv', u'enjoy', u'farewel', u'sendoff']
[u'china', u'okay', u'tung', u'withdraw', u'subvers']
[u'chines', u'acrobat', u'walk', u'niagara', u'fall']
[u'chines', u'research', u'confirm', u'sar', u'come', u'anim']
[u'claim', u'illeg', u'prostitut', u'control']
[u'clijster', u'davenport', u'capriati', u'henin', u'roll', u'semi']
[u'coff', u'harbour', u'council', u'call', u'western', u'bypass']
[u'colombian', u'singer', u'sweep', u'award', u'latin', u'grammi']
[u'comedi', u'battl', u'rival', u'network', u'high', u'court']
[u'commerc', u'attack', u'govt', u'train', u'commit']
[u'convict', u'killer', u'face', u'court', u'escap']
[u'council', u'owner', u'overdu', u'rego']
[u'council', u'want', u'speed', u'limit', u'unchang']
[u'court', u'give', u'avellino']
[u'court', u'show', u'video', u'bomb', u'blast']
[u'crean', u'accus', u'fail', u'secur']
[u'cresswel', u'play', u'okeef', u'rule', u'swan']
[u'crow', u'mcgregor', u'doubt', u'virus']
[u'custom', u'comput', u'contain', u'import']
[u'custom', u'comput', u'steal', u'sydney', u'airport']
[u'differenti', u'rat', u'see', u'workabl', u'lgaq']
[u'disabl', u'servic', u'takeov', u'mean', u'staff', u'reappli']
[u'djerrkura', u'welcom', u'health', u'corpor', u'head']
[u'don', u'elimin', u'docker']
[u'door', u'open', u'eel', u'bronco', u'slump']
[u'duti', u'free', u'spirit', u'potenti', u'weapon', u'terror']
[u'industri', u'crack', u'price']
[u'guerrouj', u'free', u'face', u'rematch', u'baala']
[u'sight', u'sixth', u'season']
[u'figur', u'charg', u'child', u'prostitut']
[u'figur', u'talk', u'polic', u'brothel']
[u'expert', u'consid', u'fli', u'youth', u'mental', u'health', u'servic']
[u'father', u'charg', u'tripl', u'murder']
[u'father', u'guilti', u'murder', u'babi']
[u'final', u'prepar', u'underway', u'crocodil']
[u'firefight', u'battl', u'blaze', u'near', u'dutson', u'down']
[u'newsread', u'jail', u'drug', u'charg']
[u'world', u'champion', u'museeuw', u'drug', u'swoop']
[u'kill', u'chines', u'firework', u'factori', u'blast']
[u'franc', u'germani', u'cool', u'draft', u'rumsfeld', u'iraq']
[u'franc', u'germani', u'readi', u'draft', u'iraq']
[u'fund', u'problem', u'cast', u'doubt', u'ballet', u'compani']
[u'galong', u'resid', u'wari', u'propos', u'expans']
[u'gibernau', u'look', u'turn', u'tabl', u'rossi', u'portug']
[u'girl', u'sexual', u'assault', u'park']
[u'go', u'wind', u'actor', u'brook', u'die', u'age']
[u'govt', u'urg', u'commit', u'mental', u'health', u'fund']
[u'guerrilla', u'kill', u'lay', u'explos', u'iraq']
[u'hanson', u'jail', u'creat', u'nation', u'surg']
[u'health', u'indigen', u'children', u'caus', u'concern']
[u'health', u'worker', u'optimist', u'manag', u'shake']
[u'heritag', u'build', u'sell', u'launceston']
[u'hewitt', u'confid', u'go']
[u'hewitt', u'oust', u'paradorn', u'reach', u'quarter', u'final']
[u'hewitt', u'open']
[u'highway', u'nois']
[u'hong', u'kong', u'withdraw', u'anti', u'subvers', u'legisl']
[u'hop', u'high', u'birthday', u'parad', u'support']
[u'howard', u'dismiss', u'indonesian', u'comment', u'king']
[u'hunter', u'mentor', u'program', u'help', u'indigen', u'teen']
[u'industri', u'warn', u'sit', u'tasmania', u'overfish']
[u'industri', u'warn', u'nation', u'shortag', u'midwiv']
[u'inquiri', u'reopen', u'airport', u'secur', u'breach']
[u'internet', u'email', u'worm', u'target', u'british']
[u'wada', u'investig', u'young', u'dope', u'case']
[u'irrig', u'group', u'welcom', u'water', u'boost']
[u'isra', u'soldier', u'kill', u'wound', u'nablus']
[u'israel', u'reject', u'mazen', u'speech']
[u'italian', u'berlusconi', u'write', u'love', u'song']
[u'italian', u'say', u'countri', u'judg', u'mental', u'disturb']
[u'judg', u'iraq', u'probe', u'warn', u'safe']
[u'judg', u'permit', u'snowtown', u'juror', u'phone', u'home']
[u'kalgoorli', u'book', u'week']
[u'kite', u'surf', u'accid', u'spark', u'proper']
[u'krige', u'straeuli', u'deni', u'bok', u'racism', u'claim']
[u'lifestyl', u'item', u'strike', u'refund', u'list', u'privat']
[u'liverpool', u'diouf', u'cop', u'spit', u'fine']
[u'lyell', u'highway', u'clear', u'tomorrow']
[u'jail', u'rap', u'girlfriend']
[u'maryborough', u'prison', u'return', u'normal', u'follow']
[u'matilda', u'england']
[u'mcdonald', u'obes', u'suit', u'throw']
[u'melbourn', u'airport', u'postal', u'centr', u'deal', u'near', u'abbott']
[u'mercuri', u'dump', u'freo', u'clash']
[u'methadon', u'theft', u'spark', u'polic', u'warn']
[u'ministeri', u'discret', u'safeti', u'mechan', u'inquiri']
[u'minist', u'launch', u'school', u'revamp']
[u'mismanag', u'caus', u'uni', u'money', u'problem']
[u'incent', u'bush']
[u'support', u'drought', u'impact', u'busi']
[u'test', u'struggl', u'mcgee']
[u'nalbandian', u'upset', u'feder']
[u'naracoort', u'obstetrician', u'servic']
[u'nat', u'cast', u'doubt', u'agricultur', u'job']
[u'boy', u'prove', u'jamaica']
[u'cours', u'train', u'medico', u'help', u'refuge', u'oversea']
[u'domest', u'violenc', u'refug', u'derbi']
[u'technolog', u'put', u'council', u'meet', u'onlin']
[u'norway', u'black', u'polar', u'bear', u'get', u'realist', u'makeov']
[u'sign', u'build', u'industri', u'slowdown']
[u'cancel', u'dalli', u'award']
[u'govt', u'creat', u'nois', u'highway', u'fund']
[u'polic', u'invit', u'train', u'counter']
[u'airlin', u'take', u'control', u'airlin']
[u'govt', u'seek', u'wharf']
[u'adelaid', u'elector', u'seat', u'abolish']
[u'polic', u'search', u'miss']
[u'opal', u'close', u'tour', u'loss', u'franc']
[u'owen', u'put', u'faith', u'rooney']
[u'patrol', u'boat', u'welcom', u'home', u'solomon', u'stint']
[u'phoenix', u'tbird', u'squar']
[u'phoenix', u'thunderbird', u'season']
[u'player', u'hold', u'award', u'ceremoni']
[u'polic', u'continu', u'escape', u'hunt']
[u'polic', u'initi', u'request', u'speak', u'qaeda']
[u'polic', u'interview', u'tripl', u'murder']
[u'polic', u'offic', u'keep', u'licenc', u'fatal', u'road', u'crash']
[u'polic', u'probe', u'vehicl', u'arson']
[u'polic', u'wait', u'question', u'tripl', u'murder']
[u'polic', u'focus', u'domest', u'violenc']
[u'pollock', u'strike', u'england', u'ralli']
[u'port', u'advoc', u'super', u'yacht', u'cruis', u'ship']
[u'public', u'urg', u'help', u'graffiti', u'case']
[u'state', u'reject', u'compani', u'poach', u'pact']
[u'race', u'pigeon', u'feather', u'chariti', u'nest']
[u'raikkonen', u'youngest', u'champion']
[u'rain', u'allow', u'fill', u'boost']
[u'region', u'women', u'drive', u'micro', u'busi', u'sector']
[u'research', u'find', u'exercis', u'surgeri', u'aid']
[u'resid', u'dive', u'pool', u'ownership', u'despit', u'water']
[u'resid', u'merger', u'plan']
[u'rockhampton', u'short', u'crisi', u'accommod']
[u'ronaldo', u'world', u'qualifi', u'debut']
[u'ruddock', u'inquiri', u'examin', u'intervent']
[u'ruddock', u'discret', u'senat', u'scrutini']
[u'machin', u'gibb', u'lead', u'south', u'africa', u'assault']
[u'russian', u'rediscov', u'love', u'read']
[u'magistr', u'appear', u'court', u'crimin']
[u'scheme', u'fight', u'gambl', u'woe', u'ethnic', u'communiti']
[u'schizophrenia', u'manic', u'depress', u'common', u'genet']
[u'scottsdal', u'critic', u'govern', u'lack']
[u'scott', u'stumbl', u'tanaka', u'lead', u'canada']
[u'scott', u'prove', u'fit', u'matthew']
[u'secur', u'review', u'custom', u'theft']
[u'sidelin', u'sele', u'eye', u'open', u'comeback']
[u'south', u'african', u'scientist', u'work', u'viagra', u'tree']
[u'spanish', u'station', u'slash', u'quarter', u'staff']
[u'steal', u'coffe', u'sydney', u'restaur']
[u'steal', u'comput', u'secret', u'govt', u'say']
[u'street', u'carniv', u'launch', u'alic', u'spring', u'festiv']
[u'strong', u'earthquak', u'hit', u'zealand']
[u'survey', u'consid', u'indigen', u'jail', u'rate']
[u'suspect', u'toothfish', u'poacher', u'escort', u'africa']
[u'branch', u'want', u'school', u'join', u'anzac', u'march']
[u'teen', u'stand', u'trial', u'crossbow', u'attack']
[u'wound', u'attack', u'sunni', u'mosqu', u'baghdad']
[u'timber', u'firm', u'worker', u'chang']
[u'toll', u'lift', u'offer', u'price', u'takeov', u'rail']
[u'tour', u'champ', u'armstrong', u'split', u'wife']
[u'trio', u'qualifi', u'year', u'end', u'championship']
[u'truck', u'driver', u'convict', u'fatal', u'crash']
[u'secretari', u'general', u'confid', u'iraq', u'agreement']
[u'uruguay', u'demand', u'fish', u'inspector', u'releas']
[u'convoy', u'attack', u'flashpoint', u'iraqi', u'town']
[u'servic', u'sector', u'maintain', u'record', u'high']
[u'freez', u'asset', u'suspect']
[u'util', u'execut', u'highest', u'pay', u'public', u'servant']
[u'veteran', u'welcom', u'patrol', u'boat']
[u'boost', u'diseas', u'prepared']
[u'wagga', u'golf', u'club', u'okay', u'merger']
[u'waikeri', u'get', u'athlet', u'oval']
[u'push', u'expans', u'servic']
[u'waterhous', u'regain', u'licenc']
[u'water', u'return', u'lake', u'boga', u'year']
[u'western', u'dairi', u'look', u'chang', u'constitut']
[u'wine', u'industri', u'renew', u'push', u'relief']
[u'woden', u'intersect', u'canberra', u'worst', u'crash', u'sit']
[u'woman', u'die', u'effect', u'chemotherapi', u'court']
[u'world', u'pitch', u'invad', u'face', u'fin', u'ban']
[u'seek', u'access', u'qaeda', u'suspect', u'june', u'govt']
[u'airlin', u'consid', u'anti', u'missil', u'technolog']
[u'jazeera', u'criticis', u'spain', u'arrest', u'star']
[u'allan', u'shadow', u'howel', u'take', u'halfway', u'lead']
[u'baffl', u'matilda', u'backflip']
[u'dead', u'milit', u'storm', u'indian', u'kashmir']
[u'kill', u'wound', u'kashmir', u'blast']
[u'aung', u'hunger', u'strike', u'cross']
[u'aust', u'navi', u'guard', u'renegad', u'uruguayan', u'fish', u'ship']
[u'bennett', u'turn', u'beat', u'bronco']
[u'surviv', u'sharehold', u'vote']
[u'bodi', u'miss', u'japanes', u'tourist']
[u'bond', u'seizur', u'show', u'dirti', u'money', u'busi']
[u'britain', u'beef', u'militari', u'forc', u'iraq']
[u'british', u'airway', u'resum', u'flight', u'saudi', u'arabia']
[u'british', u'bomb', u'dispos', u'expert', u'kill', u'iraq', u'ambush']
[u'camplin', u'defend', u'titl']
[u'carr', u'consid', u'push', u'feder', u'arena']
[u'clijster', u'reach', u'open', u'final']
[u'crow', u'eagl', u'season']
[u'crow', u'miss', u'johncock', u'mcgregor', u'crucial', u'final']
[u'discredit', u'argentina', u'kick', u'world']
[u'doctor', u'group', u'warn', u'govern']
[u'dog', u'storm', u'warrior', u'notch', u'win']
[u'east', u'timor', u'villag', u'build', u'memori', u'aussi']
[u'nuclear', u'program', u'guarante', u'secur']
[u'fan', u'earli', u'glimps', u'georg', u'music']
[u'hunt', u'link', u'threat']
[u'feder', u'unlik', u'carr', u'say']
[u'ferrero', u'knock', u'hewitt', u'open', u'agassi']
[u'bok', u'spokesman', u'ratchet', u'race']
[u'miss', u'bermuda', u'hurrican']
[u'leak', u'kill', u'baghdad']
[u'govern', u'begin', u'long', u'await', u'work', u'safeti', u'review']
[u'henin', u'hardenn', u'set', u'belgian', u'final']
[u'hewitt', u'open']
[u'injuri', u'send', u'hewitt', u'york']
[u'histori', u'repeat', u'karlsson']
[u'isra', u'missil', u'hit', u'hous', u'gaza', u'citi', u'wit']
[u'israel', u'kill', u'senior', u'hama', u'command', u'west', u'bank']
[u'job', u'data', u'bond', u'push', u'stock']
[u'kashmir', u'market', u'blast', u'kill']
[u'cool', u'head', u'eriksson', u'tell', u'england']
[u'kerr', u'injuri', u'forc', u'scotland', u'late', u'chang']
[u'lang', u'park', u'surfac', u'replac']
[u'libya', u'tunisia', u'launch', u'joint', u'host', u'world']
[u'lion', u'hold', u'edg', u'thriller']
[u'lion', u'hop', u'injuri', u'respit', u'lethal']
[u'loss', u'hard', u'capriati']
[u'majest', u'inzamam', u'shatter', u'bangladeshi', u'hop']
[u'charg', u'ireland', u'omagh', u'bomb']
[u'kill', u'sydney', u'brawl']
[u'kill', u'injur', u'crash', u'park']
[u'risk', u'blain', u'damag', u'thame', u'starvat', u'stunt']
[u'melbourn', u'raid', u'uncov', u'pirat', u'dvds']
[u'address', u'parliament', u'child']
[u'mutola', u'win', u'jackpot', u'white', u'track']
[u'zealand', u'stock', u'gain']
[u'opposit', u'stand', u'child', u'claim']
[u'opposit', u'reshuffl', u'cabinet']
[u'ride', u'tour', u'honour', u'say', u'team', u'manag']
[u'kill', u'hurt', u'disneyland', u'roller', u'coaster']
[u'nation', u'pose', u'limit', u'threat', u'nation', u'parti']
[u'outback', u'buzz', u'birdsvill']
[u'palestinian', u'mazen', u'submit', u'resign']
[u'palestinian', u'resign', u'saturday', u'erakat']
[u'palma', u'drop', u'america', u'venu']
[u'phoenix', u'rise', u'occas', u'avellino']
[u'pie', u'overrun', u'lion', u'thriller']
[u'polic', u'probe', u'murder', u'southern', u'town']
[u'polic', u'seiz', u'thousand', u'pirat', u'dvds']
[u'polic', u'work', u'identifi', u'dead', u'sydney']
[u'power', u'hurrican', u'fabian', u'hit', u'bermuda']
[u'prison', u'releas', u'program', u'suspend']
[u'protest', u'maintain', u'prison', u'vigil', u'support', u'hanson']
[u'opposit', u'hit', u'abbott', u'rural']
[u'queensland', u'polic', u'probe', u'separ', u'murder']
[u'rossi', u'take', u'provision', u'pole', u'estoril']
[u'rugbi', u'boss', u'climb', u'maltida']
[u'charg', u'stab', u'assault']
[u'economi', u'surg', u'rann']
[u'scientist', u'retract', u'ecstasi', u'brain', u'damag', u'studi']
[u'snowtown', u'juri', u'resum', u'deliber', u'tomorrow']
[u'snowi', u'mountain', u'bushfir', u'burn', u'control']
[u'spanish', u'intellig', u'servic', u'say', u'link']
[u'storm', u'bulldog', u'hold', u'half', u'time', u'lead']
[u'survey', u'find', u'million', u'drug', u'abus']
[u'sustain', u'plan', u'stifl', u'innov']
[u'tamar', u'river', u'silt', u'dredg', u'start', u'novemb']
[u'paper', u'criticis', u'bottl', u'cannon', u'instruct']
[u'team', u'manag', u'hit', u'organis', u'cipo']
[u'thirti', u'kill', u'northern', u'pakistan', u'flash', u'flood']
[u'coast']
[u'tokyo', u'disneyland', u'halt', u'roller', u'coaster']
[u'dead', u'crash', u'tree']
[u'injur', u'bunburi', u'plane', u'crash']
[u'liberia', u'envoy', u'say', u'taylor', u'steal', u'million']
[u'japan', u'australia', u'hold', u'secur', u'talk']
[u'amend', u'draft', u'resolut', u'iraq']
[u'soldier', u'hurt', u'mosul', u'grenad', u'attack', u'wit']
[u'vieri', u'pass', u'face', u'wale']
[u'polic', u'visit', u'pursuit', u'crash', u'victim', u'famili']
[u'warrior', u'west', u'half', u'time']
[u'warrior', u'outclass', u'west']
[u'waugh', u'edg', u'kefu', u'eal', u'medal']
[u'webb', u'take', u'lead', u'tulsa']
[u'unabl', u'live', u'mean', u'alston', u'say']
[u'afghan', u'presid', u'call', u'pakistan', u'support']
[u'agassi', u'ferrero', u'world', u'number']
[u'aceh', u'rebel', u'base', u'occupi', u'indonesian']
[u'allan', u'trail', u'tanaka', u'canadian', u'lead']
[u'qaeda', u'tape', u'vow', u'devast', u'attack']
[u'aussi', u'woodbridg', u'near', u'doubl', u'record']
[u'australia', u'lebanon', u'discuss', u'extradit', u'request']
[u'australia', u'ralli', u'go', u'wire']
[u'aust', u'wheat', u'contract', u'ahead', u'iraq']
[u'brave', u'henin', u'lift', u'open', u'titl']
[u'bush', u'approv', u'fall', u'poll']
[u'bush', u'rememb', u'sept', u'white', u'hous', u'lawn']
[u'boost', u'opportun', u'indigen']
[u'camplin', u'buller']
[u'capirossi', u'grab', u'portugues', u'pole']
[u'china', u'evacu', u'follow', u'flood', u'threat']
[u'committe', u'consid', u'nation', u'anti', u'terror']
[u'cum', u'helenus', u'trainer']
[u'dad', u'work', u'longer', u'hour', u'want', u'famili', u'time']
[u'democrat', u'agre', u'superannu', u'packag', u'chang']
[u'donat', u'need', u'blood', u'bank', u'run']
[u'ecuador', u'world', u'flier', u'argentina', u'hold']
[u'egypt', u'tri', u'siev', u'death']
[u'ellison', u'confirm', u'independ', u'review', u'custom']
[u'ellison', u'defend', u'action', u'qaeda', u'suspect']
[u'england', u'final', u'voller', u'fume', u'german', u'flop']
[u'name', u'hama', u'terrorist', u'organis']
[u'evacu', u'mull', u'london', u'prepar', u'terror']
[u'ferrero', u'nalbandian', u'american', u'bias', u'open']
[u'dead', u'indonesian', u'ferri', u'sink']
[u'british', u'minist', u'back', u'scold', u'blair']
[u'govern', u'urg', u'greater', u'effort', u'protect']
[u'govt', u'pressur', u'senat', u'cross', u'media', u'ownership']
[u'govt', u'promot', u'internet', u'travel', u'advisori', u'site']
[u'hama', u'leader', u'promis', u'unforgett', u'lesson']
[u'hama', u'vow', u'aveng', u'assassin', u'attempt']
[u'hanson', u'support', u'continu', u'prison', u'vigil']
[u'better', u'athen', u'jana']
[u'ireland', u'world', u'hop', u'murphi']
[u'iron', u'stomach', u'norwegian', u'gulp', u'oyster', u'record']
[u'juri', u'listen', u'snowtown', u'victim']
[u'kewel', u'lazaridi', u'socceroo']
[u'liberia', u'halt', u'peacekeep', u'unruli', u'interior']
[u'lion', u'sweat', u'voss', u'knee', u'knock']
[u'kill', u'crash', u'polic', u'pursuit']
[u'matilda', u'edg', u'scot']
[u'ministeri', u'intervent', u'immigr']
[u'missil', u'miss', u'plane', u'baghdad']
[u'briton', u'want', u'blair', u'resign', u'poll']
[u'murphi', u'injuri', u'mar', u'ireland']
[u'museeuw', u'miss', u'world', u'championship']
[u'nation', u'museum', u'board', u'divid', u'review', u'critic']
[u'nervous', u'wait', u'continu', u'barrow', u'plant']
[u'newcastl', u'rope', u'cowboy']
[u'law', u'nippl', u'genit', u'pierc', u'minor']
[u'websit', u'aim', u'connect', u'youth', u'govt']
[u'ireland', u'main', u'protest', u'parti', u'reject', u'peac']
[u'norway', u'solberg', u'win', u'ralli', u'australia']
[u'oceania', u'soccer', u'boss', u'scarsella', u'resign']
[u'strike', u'earli', u'vuelta']
[u'outback', u'return', u'normal', u'birdsvill']
[u'penrith', u'crown', u'minor', u'premier']
[u'discuss', u'aust', u'control', u'downer']
[u'polic', u'arrest', u'connect', u'sydney', u'death']
[u'polic', u'seek', u'runaway', u'accid']
[u'port', u'final', u'agoni', u'continu']
[u'posit', u'sign', u'drought', u'recoveri']
[u'prestig', u'scar', u'spain', u'month']
[u'primari', u'student', u'beat', u'senior', u'robot']
[u'qanta', u'plane', u'make', u'emerg', u'land']
[u'youth', u'group', u'worri', u'propos', u'pierc', u'law']
[u'rampant', u'england', u'french', u'style']
[u'report', u'highlight', u'increas', u'threaten']
[u'research', u'identifi', u'brain', u'heal', u'protein']
[u'restor', u'flow', u'boost', u'snowi', u'river', u'health']
[u'roddick', u'heroic', u'set', u'ferrero', u'final', u'clash']
[u'roddick', u'heroic', u'ferrero', u'final', u'clash']
[u'romero', u'head', u'swiss', u'golden']
[u'roo', u'talk', u'tough', u'swan', u'prepar', u'port']
[u'rooster', u'good', u'raider']
[u'russian', u'film', u'win', u'golden', u'lion', u'venic', u'festiv']
[u'unit', u'church', u'discuss', u'minist']
[u'star', u'power', u'hit', u'toronto', u'film', u'fest']
[u'talk', u'hope', u'resolv', u'muja', u'power', u'station', u'disput']
[u'score', u'worth', u'film', u'project']
[u'tear', u'bangladesh', u'test', u'near', u'miss']
[u'telekom', u'keen', u'ullrich', u'reunion']
[u'telstra', u'pledg', u'improv', u'region', u'servic']
[u'kill', u'vehicl', u'rollov']
[u'thump', u'flintoff', u'put', u'england', u'control']
[u'trescothick', u'doubl', u'undo', u'england', u'late']
[u'hurt', u'light', u'plane', u'crash', u'south', u'west']
[u'work', u'salvag', u'middl', u'east', u'peac', u'plan']
[u'webb', u'hour', u'tulsa']
[u'woman', u'dead', u'hospit', u'knife', u'wound']
[u'woman', u'injur', u'train', u'station', u'fall']
[u'world', u'leader', u'worri', u'palestinian', u'mazen']
[u'wind', u'farm', u'near', u'complet']
[u'accus', u'philippin', u'terrorist', u'ghozi', u'report', u'dead']
[u'chief', u'justic', u'charg', u'bash']
[u'agforc', u'urg', u'caution', u'anti', u'terror', u'measur']
[u'airport', u'sale', u'talk', u'prematur']
[u'anderson', u'stay']
[u'andren', u'aim', u'chang', u'super', u'fund', u'inequ']
[u'arafat', u'back', u'speaker']
[u'arafat', u'nomine', u'demand', u'back']
[u'asthmat', u'suffer', u'recent', u'rain']
[u'aussi', u'urg', u'check', u'asic', u'websit', u'forget']
[u'austereo', u'report', u'profit', u'drop']
[u'australian', u'stock', u'overfish', u'report']
[u'author', u'awar', u'possibl', u'qanta', u'terror']
[u'bear', u'enter', u'grand', u'final', u'close']
[u'bermuda', u'mop', u'fabian']
[u'beulah', u'celebr', u'footi', u'premiership']
[u'biki', u'gang', u'member', u'testifi', u'bomb', u'trial']
[u'bomb', u'blast', u'rock', u'kathmandu', u'kill']
[u'bomber', u'coach', u'launch', u'reveng']
[u'boobi', u'trap', u'shoe', u'spark', u'secur', u'alert']
[u'boost', u'plan', u'phone', u'exchang']
[u'britain', u'ireland', u'retain', u'walker']
[u'britain', u'announc', u'iraq', u'commit']
[u'bronco', u'fight', u'high', u'tackl', u'charg']
[u'brough', u'defend', u'job', u'scheme']
[u'bush', u'ask', u'billion', u'help', u'iraq']
[u'bush', u'blaze', u'pose', u'problem']
[u'bush', u'iraq', u'money']
[u'bush', u'visit', u'australia', u'octob']
[u'polit', u'stay', u'sugar', u'rescu']
[u'tougher', u'commerci', u'crab', u'restrict']
[u'campaign', u'underway', u'save', u'king', u'bird']
[u'crash', u'put', u'driver', u'hospit']
[u'carey', u'sceptic', u'voss', u'knee', u'injuri']
[u'carr', u'need', u'canberra', u'labor']
[u'carr', u'specul', u'prompt', u'ridicul', u'govt']
[u'catt', u'healey', u'woodward', u'name', u'england', u'squad']
[u'church', u'congreg', u'want', u'decis', u'chang']
[u'church', u'servic', u'mark', u'bicentenari', u'european']
[u'cipollini', u'quit', u'tour', u'spain']
[u'claim', u'yanco', u'feel', u'colleg', u'cours']
[u'probe', u'cape', u'suspect', u'doubl', u'murder']
[u'commonwealth', u'park', u'revamp']
[u'compani', u'fin', u'fire', u'safeti', u'conscious', u'employe']
[u'confer', u'push', u'indigen', u'doctor']
[u'confer', u'tell', u'famili', u'drug', u'abus', u'need']
[u'consol', u'prize', u'ferrero']
[u'costa', u'say', u'train', u'servic', u'return']
[u'councillor', u'level', u'discrimin', u'claim']
[u'countri', u'energi', u'consid', u'blackout', u'caus']
[u'court', u'deliv', u'fine', u'abalon', u'poach']
[u'critic', u'blood', u'shortag', u'tasmania']
[u'detaine', u'escap', u'come', u'surpris', u'refuge']
[u'disast', u'confer', u'deal', u'communiti', u'safeti']
[u'doctor', u'group', u'clarifi', u'subsidi']
[u'dismiss', u'claim', u'hanson', u'trial', u'polit']
[u'drought', u'list', u'clarenc', u'valley']
[u'drug', u'test', u'work', u'say', u'radcliff']
[u'eighti', u'wwii', u'bomb', u'uncov', u'china']
[u'cruis', u'victori', u'european', u'master']
[u'euro', u'hope', u'playoff', u'chanc']
[u'factori', u'worker', u'strike', u'work', u'condit']
[u'farmer', u'urg', u'weed', u'plant', u'woe']
[u'farm', u'leader', u'steel', u'world', u'trade', u'talk']
[u'father', u'quick', u'think', u'save']
[u'feder', u'upset', u'elector', u'chang']
[u'drown', u'miss', u'indonesian']
[u'star', u'uruguay', u'thrash', u'bolivia', u'world']
[u'face', u'court', u'drug', u'charg']
[u'flintoff', u'blitz', u'reviv', u'england', u'seri', u'hop']
[u'ford', u'keen', u'play', u'role']
[u'india', u'cricket', u'captain', u'ramchand', u'dead']
[u'labor', u'minist', u'sydney', u'mayor']
[u'text', u'bush', u'speech', u'iraq']
[u'fund', u'decis', u'thorn', u'tourism', u'industri']
[u'fund', u'seek', u'anim', u'shelter']
[u'govt', u'compromis', u'custom', u'theft', u'probe']
[u'govt', u'confid', u'lang', u'park', u'readi', u'world']
[u'govt', u'critic', u'decis', u'chang', u'shadow']
[u'govt', u'get', u'mileag', u'carr', u'specul']
[u'green', u'slam', u'draconian', u'limit', u'anti', u'nuclear']
[u'group', u'highlight', u'child', u'care', u'shortag']
[u'health', u'confer', u'aim', u'combat', u'indigen']
[u'henin', u'hardenn', u'grab', u'open', u'glori', u'william']
[u'highway', u'landslid', u'expect', u'caus', u'minor', u'delay']
[u'hill', u'overcom', u'crash', u'defend', u'world', u'titl']
[u'hope', u'local', u'govt', u'help', u'subsidis', u'power']
[u'hornish', u'edg', u'victori', u'chicago', u'race']
[u'hospit', u'trial', u'genet', u'approach', u'detect']
[u'hunter', u'break', u'drought', u'stranglehold']
[u'ierodiaconou', u'claim', u'aerial', u'round']
[u'immigr', u'figur', u'grossli', u'wrong']
[u'index', u'show', u'consum', u'spend', u'eas', u'juli']
[u'india', u'landmin', u'blow', u'polic', u'jeep', u'dead']
[u'indian', u'court', u'postpon', u'verdict', u'stain', u'murder']
[u'indigen', u'communiti', u'onlin']
[u'form', u'filli', u'grand', u'final']
[u'inquiri', u'highlight', u'need', u'famili', u'drug', u'treatment']
[u'institut', u'push', u'forward', u'univers', u'propos']
[u'investig', u'launch', u'claim']
[u'inzamam', u'replac', u'ban', u'latif', u'pakistan', u'captain']
[u'israel', u'fire', u'missil', u'gaza', u'raid']
[u'jakarta', u'hotel', u'reopen', u'fatal', u'bomb']
[u'japanes', u'face', u'leadership', u'challeng']
[u'japan', u'space', u'station', u'contribut']
[u'rise']
[u'jordan', u'reject', u'harsher', u'punish', u'honour']
[u'judg', u'prepar', u'rate', u'coast', u'beach']
[u'jungl', u'theori', u'reviv', u'britain', u'lord', u'lucan', u'mysteri']
[u'juror', u'deliber', u'snowtown', u'case']
[u'kaka', u'lightn', u'strike', u'give', u'brazil', u'win', u'start']
[u'kenya', u'ndereba', u'target', u'athen', u'gold', u'world', u'record']
[u'kewel', u'lead', u'regga', u'boyz', u'merri', u'danc']
[u'kewel', u'star', u'socceroo']
[u'kid', u'help', u'line', u'promot', u'internet', u'servic']
[u'kimmorley', u'includ', u'kangaroo', u'squad']
[u'knight', u'prove', u'strong', u'cowboy']
[u'lang', u'park', u'rip', u'ahead', u'world']
[u'lang', u'park', u'surfac', u'makeov']
[u'laport', u'blast', u'french', u'flop']
[u'latif', u'ban', u'match', u'unfair', u'catch']
[u'launceston', u'council', u'vote', u'apart', u'plan']
[u'legal', u'lawyer', u'shortag', u'evid']
[u'lion', u'trio', u'miss', u'england', u'world', u'squad']
[u'log', u'wipe', u'endang', u'plant', u'green']
[u'mandela', u'enter', u'springbok', u'racism', u'fray', u'report']
[u'guilti', u'kill', u'polic', u'offic']
[u'plead', u'guilti', u'assault', u'woman']
[u'face', u'child', u'charg']
[u'melbourn', u'tour', u'australia']
[u'mexico', u'prepar', u'tight', u'secur', u'meet']
[u'miner', u'plant', u'work', u'track']
[u'minist', u'offer', u'seismic', u'test', u'assur']
[u'missil', u'miss', u'punctur', u'iraq', u'lull']
[u'mock', u'chemic', u'attack', u'stag', u'london']
[u'approv', u'grant', u'mine', u'plan']
[u'oppos', u'boundari', u'plan']
[u'nation', u'park', u'blaze', u'control']
[u'navratilova', u'thwart', u'open', u'mark']
[u'defend', u'decis', u'process']
[u'employ', u'growth']
[u'bishop', u'repres', u'break', u'tradit']
[u'oppn', u'make', u'nois', u'road', u'fund']
[u'nurs', u'deliv', u'age', u'care', u'petit']
[u'oppn', u'readi', u'rumbl', u'parliament', u'resum']
[u'oshea', u'nurs', u'injuri', u'ireland', u'draw']
[u'paint', u'steal', u'melbourn', u'galleri']
[u'pair', u'court', u'break', u'hill', u'attack']
[u'pakistan', u'select', u'polici', u'call', u'question']
[u'administr', u'back', u'takeov']
[u'creditor', u'vote', u'liquid']
[u'pension', u'criticis', u'public', u'transport', u'propos']
[u'perez', u'win', u'tour', u'spain', u'second', u'stage']
[u'perth', u'jail', u'attack', u'year']
[u'plan', u'flow', u'river', u'boost']
[u'polic', u'confer', u'consid', u'cyber', u'crime', u'prevent']
[u'polic', u'defend', u'offic', u'chase', u'turn', u'dead']
[u'polic', u'launch', u'think', u'drive', u'campaign']
[u'polic', u'walk', u'death']
[u'polic', u'probe', u'dead', u'hous', u'blaze']
[u'polic', u'probe', u'rape', u'claim']
[u'polic', u'fatal', u'road', u'crash', u'avoid']
[u'port', u'adelaid', u'earli', u'bird', u'catch', u'fine']
[u'powel', u'refus', u'negoti', u'arafat']
[u'prison', u'face', u'court', u'jail', u'riot']
[u'produc', u'urg', u'help', u'control', u'wild', u'dog']
[u'prosecutor', u'lodg', u'appeal', u'bashir', u'sentenc']
[u'prosecutor', u'appeal', u'bashir', u'sentenc']
[u'protect', u'area', u'spotlight']
[u'public', u'transport', u'fund', u'inquiri', u'report', u'today']
[u'public', u'urg', u'report', u'anim', u'cruelti']
[u'rare', u'white', u'rhino']
[u'razor', u'blade', u'shoe', u'sabotag', u'injur', u'teen']
[u'reef', u'fish', u'restrict', u'finalis']
[u'refuge', u'protest', u'politician', u'doorstep']
[u'refuge', u'want', u'futur', u'clearer']
[u'region', u'senior', u'right', u'scheme']
[u'renew', u'hope', u'tingha', u'age', u'care', u'bed']
[u'rental', u'price', u'slug', u'prove', u'cost']
[u'report', u'reel', u'fish', u'fear']
[u'resourc', u'bank', u'stock', u'market', u'month', u'high']
[u'riverina', u'drought', u'area', u'decreas']
[u'roddick', u'embrac', u'fairytal', u'coron']
[u'roddick', u'storm', u'open']
[u'rossi', u'lead', u'italian', u'sweep', u'portug', u'grand', u'prix']
[u'rubbish', u'recycl', u'tip', u'drysdal', u'paint']
[u'rudd', u'shrug', u'slump', u'support']
[u'rugbi', u'chief', u'north', u'visit']
[u'russia', u'franc', u'germani', u'sceptic', u'plan']
[u'salari', u'scotch', u'import']
[u'santini', u'say', u'world', u'debacl', u'franc']
[u'sheep', u'die', u'reject', u'shipment', u'await', u'clearanc']
[u'simon', u'back', u'protea', u'resili']
[u'soundless', u'music', u'show', u'produc', u'weird', u'sensat']
[u'space', u'rocket']
[u'spain', u'upset', u'serbia', u'montenegro']
[u'spam', u'explos', u'continu']
[u'spoon', u'sugar', u'make', u'batteri', u'recharg']
[u'spotlight', u'fall', u'drought', u'manag']
[u'strike', u'prison', u'guard', u'picket', u'line']
[u'substanc', u'abus', u'report', u'urg', u'crackdown']
[u'sugar', u'price', u'leav', u'grower', u'sour', u'tast']
[u'survey', u'highlight', u'drop', u'out']
[u'survey', u'set', u'poverti', u'line', u'week']
[u'swan', u'coach', u'prais', u'port', u'adelaid']
[u'sydney', u'charg', u'bash', u'death']
[u'tear', u'roddick', u'open', u'champ']
[u'territori', u'child', u'abus', u'agenc', u'struggl', u'cope']
[u'test', u'rule', u'dead', u'ghozi']
[u'thiev', u'steal', u'equip', u'ambul']
[u'thousand', u'strike', u'workplac', u'death']
[u'jail', u'rob', u'jewelleri', u'shop', u'fund']
[u'time', u'right', u'role', u'iraq', u'rice']
[u'tourism', u'group', u'want', u'reef', u'protect']
[u'tway', u'win', u'canadian', u'open']
[u'crewmen', u'hospit', u'shipboard', u'accid']
[u'guilti', u'snowtown', u'murder']
[u'soldier', u'injur', u'guerrilla', u'attack']
[u'union', u'protest', u'hospit', u'staff', u'number']
[u'vandal', u'leav', u'trail', u'destruct', u'benalla']
[u'veron', u'public', u'enemi', u'number', u'argentina']
[u'versatil', u'roger', u'vie', u'spot']
[u'oppn', u'seek', u'speed', u'zone', u'clariti']
[u'visa', u'holder', u'protest', u'canberra']
[u'govt', u'give', u'condit', u'support', u'huge']
[u'wallac', u'omit', u'ireland', u'squad']
[u'polic', u'govt', u'agre', u'talk']
[u'polic', u'walk', u'disput']
[u'water', u'author', u'probe', u'lake', u'sewag', u'spill']
[u'webb', u'storm', u'tulsa']
[u'weekend', u'blaze', u'take', u'hold', u'school']
[u'weekend', u'shoot', u'trigger', u'polic', u'investig']
[u'wheat', u'contract', u'iraq', u'honour']
[u'woodbridg', u'reach', u'brink', u'doubl', u'record']
[u'zambian', u'win', u'controversi', u'african', u'realiti']
[u'investig', u'intellig', u'leak', u'claim']
[u'age', u'care', u'sector', u'edg', u'collaps', u'nurs']
[u'eye', u'turkey', u'england', u'face', u'liechtenstein']
[u'alonso', u'slam', u'ferrari', u'loser']
[u'warn', u'levi', u'backlash']
[u'anderson', u'nomin', u'water', u'prioriti']
[u'anniversari', u'celebr', u'begin', u'korea']
[u'arafat', u'nomine', u'demand', u'support']
[u'asda', u'disappoint', u'posit', u'test', u'increas']
[u'kill', u'nigerian', u'crash']
[u'australian', u'sheep', u'remain', u'shipment', u'limbo']
[u'australia', u'lead', u'interdict', u'exercis']
[u'babi', u'girl', u'diagnos', u'meningococc']
[u'baghdad', u'dream', u'utilis', u'river']
[u'bail', u'refus', u'kidnap', u'charg']
[u'bait', u'scheme', u'aim', u'outfox', u'pest', u'save', u'dingo']
[u'barrist', u'disbar', u'fraud']
[u'baumann', u'announc', u'retir']
[u'beatti', u'ponder', u'delay', u'action', u'fatal', u'polic']
[u'beatti', u'support', u'inquiri', u'hanson', u'case']
[u'beck', u'return', u'trafford', u'england', u'eye']
[u'tackl', u'juvenil', u'crime', u'woe']
[u'bok', u'racism', u'probe', u'stall']
[u'bradman', u'owner', u'slug']
[u'brigitt', u'bardot', u'babi', u'thai', u'eleph', u'name']
[u'bronco', u'civoniceva', u'guilti', u'plea']
[u'busi', u'activ', u'upbeat', u'august', u'survey']
[u'busi', u'plan', u'final', u'pool', u'option']
[u'cabooltur', u'offic', u'honour']
[u'bus', u'replac', u'unprofit', u'bush', u'rail']
[u'govt', u'start', u'implement', u'cigarett', u'sale']
[u'canberra', u'surpass', u'sydney', u'rise', u'rental', u'cost']
[u'cane', u'toad', u'sight', u'south', u'darwin']
[u'carter', u'educ', u'chines', u'student', u'democraci']
[u'charg', u'drop', u'homeless', u'kill']
[u'children', u'target', u'intervent', u'program']
[u'chines', u'gateway', u'precinct', u'upgrad']
[u'clark', u'claim', u'support', u'appeal', u'atsic']
[u'cold', u'hold', u'student', u'great', u'southern']
[u'commission', u'conced', u'lack', u'resourc', u'polic']
[u'communiti', u'fossil', u'begin', u'western']
[u'concern', u'wind', u'farm', u'threaten', u'parrot', u'popul']
[u'convict', u'snowtown', u'killer', u'start', u'prison', u'term']
[u'costa', u'put', u'focus', u'public', u'transport']
[u'council', u'claim', u'port', u'kembla', u'premis', u'licenc']
[u'council', u'backbon', u'tackl', u'pest']
[u'council', u'track', u'pinpoint', u'tourist']
[u'council', u'send', u'build', u'height', u'survey']
[u'council', u'plane', u'revenu']
[u'council', u'support', u'hill', u'develop']
[u'council', u'transport', u'plan', u'detail']
[u'coupl', u'fin', u'illeg', u'water']
[u'court', u'ban', u'swim', u'children']
[u'court', u'hear', u'hanson', u'bail', u'appeal']
[u'court', u'reserv', u'decis', u'hanson', u'bail']
[u'court', u'tell', u'attack', u'put', u'hospit']
[u'cowboy', u'await', u'home', u'grind', u'decis']
[u'crean', u'seek', u'focus', u'carr']
[u'criminologist', u'say', u'snowtown', u'murder', u'trial', u'cost']
[u'democrat', u'press', u'govt', u'stop', u'sale']
[u'democrat', u'unhappi', u'bush', u'spend', u'plan']
[u'depriv', u'breed', u'bizarr', u'murder', u'criminologist']
[u'develop', u'want', u'caravan', u'park', u'chang']
[u'develop', u'boom', u'pressur', u'council']
[u'divis', u'council', u'collaps']
[u'sampl', u'fail', u'link', u'backpack', u'murder']
[u'doctor', u'predict', u'rise', u'medic', u'fee']
[u'dog', u'bite', u'jail', u'drug']
[u'drinker', u'stay', u'home', u'say']
[u'elect', u'improprieti', u'deal', u'johnson']
[u'offic', u'increas', u'darwin']
[u'england', u'bless', u'qualiti', u'depth']
[u'england', u'escap', u'thwart', u'protea']
[u'england', u'woodward', u'welcom', u'favourit']
[u'estonian', u'journalist', u'admit', u'fabric', u'stori']
[u'ethanol', u'dollar', u'doubt', u'govt']
[u'exhibit', u'centr', u'site', u'unknown']
[u'expert', u'advis', u'govt', u'improv', u'health', u'servic']
[u'fairfax', u'doubl', u'annual', u'profit']
[u'feder', u'govt', u'urg', u'fund', u'project']
[u'fewer', u'australian', u'take', u'home', u'loan']
[u'firefight', u'discov', u'burn', u'bodi', u'vacant']
[u'fisher', u'angl', u'reef', u'plan', u'compo']
[u'fletcher', u'appeal', u'suspens']
[u'priest', u'plead', u'guilti', u'indec', u'deal']
[u'french', u'cast', u'off', u'fear', u'world', u'disast']
[u'french', u'heat', u'wave', u'death', u'link', u'organis']
[u'fund', u'earmark', u'franci', u'safeti', u'revamp']
[u'funer', u'firefight', u'victim']
[u'fungal', u'diseas', u'spark', u'grain', u'grower', u'warn']
[u'gallop', u'sign', u'agreement', u'gorgon', u'project']
[u'genet', u'engin', u'bacteria', u'hold']
[u'continu', u'riverland', u'tour']
[u'wrap', u'riverland', u'tour']
[u'global', u'agenc', u'boost', u'bonlac', u'rat']
[u'goldfield', u'consid', u'french', u'tourism', u'prospect']
[u'govern', u'accus', u'target', u'katherin']
[u'govt', u'allow', u'capsicum', u'spray', u'abalon']
[u'govt', u'promis', u'child', u'abus', u'awar', u'campaign']
[u'govt', u'warn', u'levi', u'lead', u'exodus']
[u'grain', u'merger', u'cost', u'job']
[u'grenad', u'explod', u'kill', u'philippin']
[u'hanson', u'appeal', u'decis', u'expect', u'today']
[u'health', u'minist', u'talk', u'zone', u'scheme']
[u'henin', u'clijster', u'herald', u'women', u'game']
[u'henman', u'split', u'coach', u'stefanki']
[u'hewitt', u'coach', u'say']
[u'high', u'tech', u'stock', u'perform', u'market']
[u'hitler', u'filmmak', u'riefenstahl', u'die']
[u'hous', u'program', u'subsidis', u'citi', u'live']
[u'howard', u'delight', u'deputi', u'decis', u'stay']
[u'hurrican', u'fabian', u'claim', u'live']
[u'immunolog', u'expert', u'win', u'prize']
[u'independ', u'clinician', u'investig', u'royal']
[u'indigen', u'child', u'protect', u'worker', u'begin', u'work']
[u'inflat', u'dollar', u'spur', u'busi', u'confid']
[u'injuri', u'blow', u'england', u'ferdinand', u'butt']
[u'intellig', u'report', u'author', u'convinc', u'materi']
[u'rat', u'rise', u'christma']
[u'take', u'aviat', u'plan']
[u'internet', u'file', u'swapper', u'target', u'suit']
[u'iran', u'urg', u'come', u'clean', u'nuclear', u'program']
[u'iraq', u'tell', u'truth', u'weapon']
[u'jaguar', u'wilson', u'time', u'case']
[u'judg', u'bar', u'camera', u'courtroom', u'kobe']
[u'juri', u'advis', u'acquit', u'hanson']
[u'kenya', u'seek', u'bahrain', u'defector', u'bar']
[u'kindergarten', u'express', u'program']
[u'labor', u'seek', u'block', u'widen', u'minist']
[u'landhold', u'plead', u'guilti', u'illeg', u'clear']
[u'launceston', u'council', u'approv', u'apart', u'develop']
[u'launceston', u'council', u'win', u'innov', u'excel', u'award']
[u'lethal', u'rule', u'voss', u'crunch', u'final']
[u'macarthur', u'boost', u'north', u'interest']
[u'macedonian', u'brush', u'beckham', u'death', u'threat', u'claim']
[u'extradit', u'sexual', u'assault', u'charg']
[u'pay', u'thousand', u'bradman']
[u'plead', u'guilti', u'suitcas', u'murder']
[u'exec', u'kenyon', u'jump', u'ship', u'chelski']
[u'meet', u'discuss', u'communic', u'centr', u'futur']
[u'minist', u'deni', u'health', u'staff', u'train']
[u'seek', u'rail', u'assur']
[u'mushtaq', u'spin', u'sussex', u'closer', u'maiden', u'titl']
[u'muslim', u'protest', u'greet', u'sharon', u'india']
[u'nasa', u'set', u'date', u'space', u'shuttl', u'flight']
[u'nativ', u'titl', u'issu', u'domin']
[u'nat', u'welcom', u'disabl', u'fund', u'decis']
[u'research', u'show', u'whale', u'number', u'rise']
[u'tourism', u'campaign', u'launch', u'canberra']
[u'nigerian', u'crash', u'toll', u'top']
[u'northern', u'disabl', u'worker', u'highlight']
[u'north', u'korea', u'vow', u'fight', u'imperialist']
[u'player', u'associ', u'probe', u'negoti', u'option']
[u'nrma', u'worker', u'strike', u'protest']
[u'korea', u'unveil', u'missil', u'anniversari']
[u'number', u'centenarian', u'reach', u'record', u'number']
[u'opal', u'prepar', u'face', u'zealand']
[u'opal', u'readi', u'torrid', u'zealand', u'clash']
[u'owner', u'tri', u'regain', u'possess', u'seiz', u'ship']
[u'paint', u'number', u'clear', u'speed', u'limit', u'confus']
[u'pastor', u'giant', u'sell']
[u'perth', u'woman', u'charg', u'attempt', u'murder']
[u'petacchi', u'enjoy', u'histor', u'stage', u'spain']
[u'petit', u'renew', u'call', u'ocean', u'pool']
[u'phelp', u'gun', u'thorp', u'athen']
[u'pilot', u'charg', u'oper', u'light', u'aircraft']
[u'pirat', u'potter', u'book', u'lack', u'magic']
[u'plan', u'consid', u'tourism']
[u'chang', u'fundrais', u'deduct']
[u'polic', u'disput', u'affect', u'fin', u'revenu']
[u'polic', u'lift', u'work', u'ban', u'disput']
[u'polic', u'seek', u'park', u'bash', u'wit']
[u'power', u'spew', u'swan', u'defeat']
[u'prais', u'health', u'group', u'dental', u'servic', u'effort']
[u'prison', u'offic', u'strike', u'continu']
[u'probe', u'continu', u'lake', u'sewag', u'spill']
[u'public', u'nuclear', u'wast', u'dump', u'licenc']
[u'public', u'hinder', u'terror', u'probe', u'polic']
[u'public', u'meet', u'spotlight', u'hospit', u'woe']
[u'public', u'warn', u'ulladulla', u'burn']
[u'qanta', u'share', u'dive', u'accc', u'reject', u'merger']
[u'qanta', u'share', u'dive', u'merger', u'rule']
[u'health', u'deni', u'meningococc', u'mening']
[u'queensland', u'choos', u'locat']
[u'rain', u'doubl', u'crop', u'size', u'forecast']
[u'rain', u'troubl', u'prompt', u'flush', u'meadow', u'roof']
[u'razor', u'blade', u'shoe', u'spark', u'secur', u'boost']
[u'reef', u'author', u'defend', u'zone', u'review']
[u'research', u'set', u'secret', u'lobster']
[u'resourc', u'sector', u'help', u'share', u'market', u'creep', u'higher']
[u'retir', u'villag', u'deal', u'consum', u'report']
[u'rezon', u'forc', u'cow', u'hors', u'properti']
[u'roddick', u'leap', u'rank', u'hewitt', u'slip']
[u'rugbi', u'chief', u'prais', u'townsvill', u'world', u'venu']
[u'russia', u'itali', u'serbia', u'montenegro', u'israel']
[u'rylston', u'council', u'submit', u'reform', u'plan']
[u'sack', u'doctor', u'spark', u'hospit', u'investig']
[u'schumach', u'confid', u'monza', u'showdown']
[u'scientist', u'cure', u'diabet', u'rat', u'report']
[u'world', u'charg', u'accid']
[u'secur', u'scheme', u'offer', u'dalbi', u'crime', u'snapshot']
[u'senior', u'diplomat', u'meet', u'palestinian', u'prime']
[u'seri', u'level', u'lift', u'england', u'test', u'rat']
[u'sexual', u'activ', u'girl', u'unawar', u'stis', u'youth', u'worker']
[u'sheep', u'shipment', u'strand']
[u'singapor', u'confirm', u'sar', u'case', u'doubt']
[u'snowdon', u'confid', u'repres', u'voter']
[u'socceroo', u'roll', u'farina']
[u'strike', u'coal', u'worker', u'work']
[u'studi', u'say', u'child', u'abus', u'underestim']
[u'tasmania', u'mourn', u'death', u'aborigin', u'elder']
[u'teen', u'bing', u'drink', u'endang', u'live', u'salvo']
[u'suspend', u'drug', u'compani', u'licenc']
[u'thousand', u'flee', u'heavi', u'flood', u'nigeria']
[u'tourist', u'drown', u'highlight', u'need', u'educ']
[u'transgrid', u'employe', u'admit', u'issu', u'fals', u'safeti']
[u'trescothick', u'guid', u'england']
[u'tribun', u'hang', u'fletcher', u'final', u'hop']
[u'tribun', u'ban', u'fletcher', u'not']
[u'triumphant', u'tway', u'soar', u'place', u'world', u'rank']
[u'kill', u'twin', u'bomb', u'blast', u'colombia']
[u'uefa', u'call', u'report', u'greek', u'briberi']
[u'uncertain', u'time', u'ahead', u'mudge', u'meatwork']
[u'chief', u'launch', u'diplomat', u'drive', u'iraq']
[u'union', u'warn', u'govt', u'poll', u'backlash']
[u'union', u'want', u'polic', u'number', u'boost']
[u'uproar', u'hygien', u'scheme', u'come', u'head']
[u'fighter', u'crash', u'south', u'korean', u'coast']
[u'israel', u'hope', u'palestinian', u'commit']
[u'optimist', u'chang', u'iraq', u'schieffer']
[u'vail', u'angri', u'anderson', u'stay']
[u'govt', u'quick', u'reject', u'speed', u'camera', u'claim']
[u'voeller', u'outburst', u'germani', u'talk', u'point']
[u'voss', u'lead', u'australian', u'team']
[u'voss', u'fletcher', u'face', u'nervous', u'wait']
[u'govt', u'cast', u'doubt', u'nativ', u'titl', u'claim']
[u'wallac', u'miss', u'shock', u'irish', u'rugbi']
[u'water', u'restrict', u'remain']
[u'weather', u'hamper', u'timber', u'work']
[u'werewolv', u'london', u'singer', u'die']
[u'whitlam', u'minist', u'willese', u'die', u'age']
[u'wildcat', u'race', u'clear', u'import']
[u'worker', u'urg', u'check', u'wage', u'increas']
[u'youth', u'parliament', u'tackl', u'smoke', u'log']
[u'abattoir', u'closur', u'boost', u'mudge', u'jobless', u'rate']
[u'account', u'reprimand', u'audit']
[u'administr', u'appoint', u'line', u'lode', u'group']
[u'agassi', u'feder', u'qualifi', u'master']
[u'call', u'alcohol', u'tax', u'strength']
[u'council', u'discuss', u'desilt']
[u'worker', u'ambush', u'afghanistan']
[u'arafat', u'nomine', u'condemn', u'suicid', u'attack']
[u'welcom', u'postpon', u'racism', u'inquiri']
[u'kill', u'flood', u'central', u'india']
[u'aussi', u'evan', u'retir', u'tour', u'spain']
[u'australia', u'test', u'terrorist', u'respons', u'unit']
[u'australian', u'injur', u'jerusalem', u'bomb']
[u'babi', u'panda', u'bear', u'captiv', u'china']
[u'bacteria', u'help', u'fight', u'aid', u'women']
[u'bali', u'bomber', u'defiant', u'court', u'hand', u'death']
[u'bali', u'mastermind', u'samudra', u'sentenc', u'death']
[u'bank', u'offer', u'revers', u'mortgag', u'help', u'retir']
[u'ban', u'film', u'park', u'screen', u'hobart']
[u'year', u'ahead', u'barra', u'farm']
[u'black', u'hole', u'hum', u'flat']
[u'blair', u'defend', u'iraqi', u'weapon', u'claim', u'parliament']
[u'blast', u'hit', u'jerusalem', u'cafe']
[u'blue', u'chip', u'retreat', u'drag', u'aussi', u'market']
[u'book', u'highlight', u'reptil', u'habitat', u'conserv']
[u'boston', u'church', u'settl', u'claim', u'million']
[u'bowen', u'miss', u'game', u'danger', u'tackl']
[u'british', u'minist', u'mislead', u'committe', u'iraqi', u'weapon']
[u'bryant', u'lawyer', u'summon', u'alleg', u'victim', u'court']
[u'businessman', u'oppos', u'supermarket', u'plan']
[u'ethanol', u'damag', u'vehicl', u'list']
[u'perman', u'livestock', u'trade', u'saudi']
[u'call', u'govt', u'protect', u'health', u'servic']
[u'carp', u'fisheri', u'plan', u'move', u'ahead']
[u'carr', u'hose', u'feder', u'polit']
[u'chappel', u'join', u'australia', u'cricket', u'associ']
[u'children', u'unabl', u'visit', u'father', u'detent', u'centr']
[u'church', u'want', u'poverti', u'nation', u'agenda']
[u'say', u'qaeda', u'leadership', u'risk', u'break']
[u'claim', u'youth', u'bing', u'drink', u'figur', u'lower']
[u'coal', u'slump', u'drag', u'miner', u'energi', u'export']
[u'colli', u'rev', u'motor', u'race', u'revamp']
[u'committe', u'monitor', u'salin', u'flood', u'scheme']
[u'communiti', u'farewel', u'cathol', u'bishop']
[u'confer', u'hear', u'indigen', u'jail', u'woe']
[u'consum', u'confid', u'close', u'year', u'high']
[u'costa', u'gaug', u'transport', u'concern']
[u'costa', u'torrid', u'train', u'talk']
[u'costa', u'grafton', u'public', u'transport', u'talk']
[u'council', u'form', u'indigen', u'protocol']
[u'council', u'happi', u'discount', u'fare', u'plan']
[u'councillor', u'want', u'escort', u'agenc', u'regul']
[u'council', u'take', u'issu', u'boundari', u'submiss']
[u'court', u'hear', u'biki', u'charg', u'murder', u'offer']
[u'crean', u'question', u'govt', u'leak', u'wilki', u'report']
[u'crespo', u'target', u'argentina', u'outclass', u'venezuela']
[u'cross', u'contin', u'swim', u'delay', u'truck', u'sale']
[u'crowd', u'pleas', u'flintoff', u'grow']
[u'decis', u'pend', u'return', u'lake', u'anchor', u'block']
[u'defenc', u'forc', u'intellig', u'help', u'polic']
[u'deleg', u'address', u'drought', u'impact']
[u'demand', u'rural', u'counsel']
[u'democrat', u'criticis', u'megawati', u'bali']
[u'deputi', u'nat', u'leader', u'lift', u'veil', u'leadership', u'issu']
[u'diabet', u'drug', u'caus', u'heart', u'failur', u'report']
[u'disast', u'confer', u'hear', u'communiti']
[u'diseas', u'threat', u'devil', u'pose', u'problem']
[u'doctor', u'resum', u'controversi', u'naltrexon', u'treatment']
[u'doubt', u'rais', u'aquif', u'plan', u'green', u'impact']
[u'drug', u'compani', u'deni', u'factori']
[u'editor', u'cartoonist', u'investig', u'algier']
[u'educ', u'help', u'sting', u'swim', u'threat']
[u'educ', u'minist', u'open', u'wyndham', u'school', u'upgrad']
[u'elder', u'adelaid', u'die', u'meningococc']
[u'fish', u'group', u'want', u'reef', u'factor', u'consid']
[u'flee', u'inmat', u'drop', u'judg', u'chamber']
[u'fletcher', u'appeal', u'flop']
[u'fletcher', u'appeal', u'suspens']
[u'flood', u'kill', u'histor', u'timbuktu']
[u'nation', u'join', u'militari', u'exercis']
[u'funer', u'farewel', u'indigen', u'elder']
[u'genet', u'modif', u'step', u'say', u'scienc', u'award']
[u'giant', u'hairbal', u'remov', u'girl', u'stomach']
[u'govt', u'accus', u'stall', u'ethanol', u'list']
[u'govt', u'launch', u'inquiri', u'custom', u'theft']
[u'grain', u'harvest', u'confid', u'grow']
[u'harvey', u'surpris', u'select']
[u'health', u'confer', u'discuss', u'indigen', u'palliat']
[u'health', u'group', u'doctor', u'meet', u'insur', u'levi']
[u'henin', u'hardenn', u'hit', u'dope', u'claim']
[u'heritag', u'list', u'recognis', u'cottag']
[u'howard', u'pressur', u'state', u'terror', u'legisl']
[u'hundr', u'flee', u'rebel', u'govt', u'troop', u'clash']
[u'hunter', u'case', u'rise']
[u'iaaf', u'reject', u'white', u'dope', u'explan']
[u'iaea', u'draft', u'iran', u'disclos', u'nuclear']
[u'icac', u'probe', u'hear', u'safeti', u'concern', u'describ']
[u'immigr', u'africa', u'middl', u'east', u'grow', u'fastest']
[u'intern', u'focus', u'issu']
[u'iran', u'say', u'review', u'nuclear', u'cooper']
[u'isra', u'strike', u'kill', u'wound', u'hama', u'leader']
[u'judg', u'begin', u'hand', u'verdict', u'samudra', u'bomb']
[u'judg', u'samudra', u'plan', u'bali', u'bomb']
[u'kalgoorli', u'push', u'desert', u'issu']
[u'knight', u'tahu', u'outsid', u'chanc', u'play', u'semi']
[u'korei', u'agre', u'palestinian']
[u'late', u'dunn', u'strike', u'give', u'ireland', u'draw', u'turk']
[u'lawyer', u'expect', u'spain', u'free', u'jazeera', u'newsman']
[u'local', u'govt', u'seek', u'greater', u'hous', u'debat']
[u'long', u'run', u'plantat', u'blaze']
[u'arrest', u'pick', u'fight', u'duti']
[u'break', u'cliff', u'fall']
[u'charg', u'west', u'sydney', u'gang', u'rape']
[u'extradit', u'face', u'assault', u'charg']
[u'face', u'charg', u'sieg']
[u'ship', u'crate', u'save', u'fare', u'money']
[u'market', u'jitteri', u'amid', u'budget', u'concern']
[u'matera', u'moon', u'select']
[u'want', u'council', u'plan', u'assur']
[u'mcguigan', u'simeon', u'take', u'miranda', u'win']
[u'media', u'puzzl', u'rule', u'defenc']
[u'medic', u'tribun', u'clear', u'offend', u'continu']
[u'megawati', u'busi', u'meet', u'howard']
[u'melbourn', u'museum', u'hand', u'aborigin', u'remain']
[u'flee', u'tarneit', u'paddock', u'shoot']
[u'fund', u'consum', u'tenanc', u'advic']
[u'treatment', u'crash', u'victim']
[u'attack', u'govt', u'deal']
[u'cast', u'doubt', u'hospit', u'upgrad']
[u'rais', u'free', u'trade', u'quarantin', u'worri']
[u'warn', u'tinkerbel', u'land']
[u'murder', u'babi', u'buri', u'brisban']
[u'murder', u'suspect', u'cellmat', u'claim', u'hear', u'confess']
[u'netbal', u'prepar', u'grand', u'final', u'olymp']
[u'approach', u'drug', u'abus', u'need', u'pearson']
[u'medic', u'centr', u'plan', u'gingin']
[u'michelin', u'tyre', u'approv']
[u'program', u'boost', u'school', u'scienc', u'educ']
[u'nrma', u'roadsid', u'staff', u'strike', u'super', u'deal']
[u'nurs', u'fund', u'boost', u'age', u'care']
[u'plead', u'daughter', u'return']
[u'mum', u'bust', u'politician']
[u'opposit', u'plan', u'artist', u'resold']
[u'outstand', u'support', u'soccer', u'club']
[u'pakistan', u'rout', u'banger', u'dayer']
[u'parliament', u'pay', u'tribut', u'whitlam', u'minist']
[u'passeng', u'arrest', u'ryanair', u'secur', u'scare']
[u'pipelin', u'compani', u'fin', u'brisban', u'spill']
[u'pittman', u'give', u'formal', u'recept']
[u'look', u'forward', u'presidenti', u'visit']
[u'polanski', u'remak', u'oliv', u'twist']
[u'polic', u'confisc', u'luxuri', u'cruiser']
[u'polic', u'hunt', u'rapist', u'esper']
[u'polic', u'plea', u'greater', u'road', u'safeti']
[u'polic', u'probe', u'armi', u'hotel', u'incid']
[u'polic', u'step', u'search', u'miss', u'businessman']
[u'pratt', u'thrash', u'bali', u'event']
[u'price', u'back', u'anasta', u'warrior', u'clash']
[u'health', u'offer', u'meningococc', u'reassur']
[u'reef', u'author', u'happi', u'fish', u'plan']
[u'research', u'closer', u'develop', u'dementia', u'drug']
[u'research', u'show', u'regular', u'exercis', u'reduc', u'breast']
[u'review', u'call', u'bush', u'protect']
[u'rivkin', u'win', u'retrial', u'fairfax', u'defam', u'case']
[u'rlpa', u'submit', u'list', u'demand']
[u'ruddock', u'say', u'clark', u'suspens', u'right', u'decis']
[u'ruddock', u'slam', u'labor', u'block', u'migrat', u'chang']
[u'court', u'hear', u'deliber', u'swipe', u'road']
[u'cultur', u'blame', u'snowtown', u'murder', u'govt']
[u'samudra', u'sentenc']
[u'scientist', u'link', u'gene', u'learn', u'difficulti']
[u'scientist', u'hope', u'vaccin', u'lick', u'bluetongu']
[u'secur', u'council', u'delay', u'libya', u'sanction', u'vote']
[u'shepparton', u'host', u'youth', u'justic', u'scheme']
[u'simon', u'garfunkel', u'road']
[u'fear', u'dead', u'power', u'blast', u'chines']
[u'south', u'africa', u'postpon', u'racism', u'inquiri']
[u'stanbrok', u'sale', u'set', u'benchmark', u'properti']
[u'strike', u'continu', u'sydney', u'motorway', u'project']
[u'studi', u'highlight', u'nativ', u'titl', u'differ']
[u'suicid', u'blast', u'shake', u'israel']
[u'suicid', u'blast', u'trigger', u'west', u'bank', u'incurs']
[u'suicid', u'bomber', u'kill', u'seven', u'israel']
[u'suspend', u'drug', u'compani', u'move', u'restor', u'confid']
[u'suspend', u'jail', u'term', u'drive', u'offenc']
[u'swiss', u'team', u'begin', u'davi', u'prepar']
[u'talk', u'begin', u'wine', u'disput']
[u'tall', u'fern', u'olymp']
[u'atsic', u'head', u'front', u'court', u'fish', u'offenc']
[u'scoop', u'pool', u'nation', u'fine', u'food', u'award']
[u'taxi', u'travel', u'face', u'price', u'rise']
[u'slug', u'accompani', u'don', u'baggi', u'green']
[u'telstra', u'want', u'faulti', u'phone', u'feedback']
[u'thousand', u'homeless', u'flood', u'nigeria']
[u'seed', u'davydenko', u'crush', u'newcom']
[u'tourism', u'group', u'back', u'qanta']
[u'transport', u'dept', u'accus', u'cover']
[u'troublesom', u'tree', u'face']
[u'kill', u'northern', u'iraq', u'bomb', u'blast']
[u'delay', u'libya', u'vote', u'french', u'threat']
[u'union', u'back', u'accc', u'yang']
[u'union', u'push', u'better', u'deal', u'mine', u'worker']
[u'unit', u'develop', u'snub', u'bring', u'cheer']
[u'judg', u'pave', u'sept', u'lawsuit']
[u'soldier', u'kill', u'iraq', u'attack']
[u'venezuela', u'crash', u'kill', u'injur']
[u'polic', u'demand', u'fair', u'deal', u'job', u'spill']
[u'polic', u'probe', u'fatal', u'shoot']
[u'victorian', u'polic', u'expand', u'investig']
[u'virgin', u'float', u'green', u'light', u'boost', u'patrick', u'share']
[u'voss', u'lead', u'australian', u'team']
[u'govt', u'seek', u'busi', u'support', u'survey']
[u'wallabi', u'jersey', u'rememb', u'bali', u'bomb']
[u'wallabi', u'jersey', u'rememb', u'bali', u'bomb']
[u'lobster', u'industri', u'consid', u'quota']
[u'warhol', u'work', u'display', u'nation', u'galleri']
[u'word', u'erupt', u'canal', u'develop']
[u'william', u'year', u'wait']
[u'woodsid', u'urg', u'campaign']
[u'chromosom', u'lead', u'caus', u'autism']
[u'arrest', u'home', u'villag', u'palestinian', u'suicid']
[u'protest', u'byron', u'hous', u'develop']
[u'jazeera', u'demand', u'spain', u'releas', u'arrest', u'report']
[u'jazeera', u'air', u'lade', u'tape']
[u'alleg', u'monash', u'gunman', u'quiet', u'success']
[u'air', u'fear', u'hec', u'place']
[u'qaeda', u'leader', u'urg', u'iraqi', u'devour', u'american']
[u'qaeda', u'tape', u'rattl', u'market']
[u'qaeda', u'tape', u'taunt', u'attack', u'anniversari']
[u'analyst', u'launch', u'attack', u'defenc', u'plan']
[u'anangu', u'communiti', u'power', u'boost']
[u'antarct', u'wast', u'remov', u'mission', u'underway']
[u'argentina', u'coria', u'miss', u'davi', u'semi']
[u'attack', u'troop', u'iraq', u'increas']
[u'aussi', u'market', u'follow', u'wall', u'street']
[u'author', u'releas', u'toothfish', u'ship', u'scientif']
[u'bali', u'mastermind', u'prepar', u'death', u'sentenc', u'appeal']
[u'beer', u'coat', u'offer', u'sound']
[u'biki', u'testifi', u'video', u'link', u'secret', u'locat']
[u'brash', u'gilbert', u'champion']
[u'brisban', u'barrist', u'chief', u'magistr']
[u'brisban', u'ralli', u'protest', u'temporari']
[u'burni', u'port', u'busi', u'host', u'ferri']
[u'burn', u'off', u'smoke', u'skylin']
[u'bush', u'commemor', u'septemb', u'vow', u'fight']
[u'bush', u'demand', u'halt', u'palestinian', u'attack', u'israel']
[u'bush', u'urg', u'congress', u'toughen', u'anti', u'terror', u'law']
[u'goulburn', u'polic', u'resourc']
[u'nurs', u'role']
[u'carr', u'back', u'inject', u'room', u'despit', u'critic', u'report']
[u'cheney', u'skip', u'grind', u'zero', u'memori', u'ceremoni']
[u'china', u'step', u'airport', u'screen', u'singapor']
[u'chuck', u'optic', u'illus']
[u'church', u'concern', u'report', u'detain']
[u'claim', u'reef', u'fish', u'regul', u'wont', u'mean']
[u'clover', u'prove', u'lucki', u'cancer', u'suffer']
[u'conflict', u'view', u'follow', u'hospit', u'crisi']
[u'controversi', u'statu', u'erect', u'jamaica']
[u'costa', u'away', u'transport', u'idea']
[u'council', u'accus', u'skate', u'local', u'histori']
[u'council', u'rethink', u'park', u'hospit', u'plan']
[u'croatia', u'serbia', u'montenegro', u'shake', u'hand']
[u'croc', u'import', u'stack', u'real', u'deal']
[u'dalai', u'lama', u'meet', u'bush', u'china', u'protest']
[u'debat', u'begin', u'futur', u'kilda', u'pier', u'kiosk']
[u'defenc', u'accus', u'uneth', u'behaviour', u'stuttl']
[u'democrat', u'suggest', u'pilbara', u'patrol', u'boat', u'plan']
[u'doctor', u'jail', u'brazil', u'sect', u'kill']
[u'drought', u'prompt', u'bore', u'revamp']
[u'economist', u'renew', u'warn', u'recess']
[u'economist', u'optimist', u'employ', u'rise']
[u'euro', u'vote', u'campaign', u'suspend', u'swedish']
[u'surgeon', u'win', u'defam', u'suit', u'daili']
[u'farmer', u'rural', u'financi', u'consult', u'access']
[u'farmer', u'want', u'plan', u'water']
[u'ferrari', u'schumach', u'prepar', u'fight']
[u'file', u'sharer', u'year', u'old', u'music', u'piraci', u'fine']
[u'destroy', u'histor', u'kilda', u'pier', u'kiosk']
[u'firefight', u'extinguish', u'restaur', u'blaze']
[u'kill', u'mexican', u'firework', u'blast']
[u'fletcher', u'appeal', u'fail']
[u'fund', u'boost', u'restor', u'remot', u'servic']
[u'site', u'owner', u'name']
[u'blast', u'ignit', u'centr', u'blaze']
[u'gather', u'consid', u'blue', u'green', u'alga', u'option']
[u'treati', u'allow', u'doubter', u'block', u'import']
[u'golden', u'time', u'export', u'earn']
[u'gough', u'anger', u'england', u'omiss']
[u'govt', u'consid', u'strategi', u'older', u'worker']
[u'govt', u'reject', u'super', u'home', u'deposit']
[u'hewitt', u'scud', u'look', u'challeng', u'fitzi']
[u'high', u'execut', u'equal', u'perform', u'report']
[u'hill', u'defenc', u'forc', u'health']
[u'hogan', u'hero', u'actor', u'hovi', u'die']
[u'hold', u'pattern', u'griffith', u'land', u'fee']
[u'hors', u'bomb', u'kill', u'colombia']
[u'hospit', u'defend', u'caesarean', u'woman', u'wasnt']
[u'time', u'central', u'australia']
[u'hous', u'propos', u'includ', u'koala', u'habitat', u'work']
[u'howard', u'prais', u'unit', u'rival', u'barthez']
[u'hussey', u'bang', u'england']
[u'bowl', u'faster']
[u'icpa', u'deleg', u'converg', u'cunnamulla']
[u'race', u'say', u'defiant', u'mcrae']
[u'industri', u'disput', u'make', u'cityrail', u'unsaf', u'union']
[u'injur', u'springbok', u'star', u'skinstad', u'harbour']
[u'injuri', u'suspens', u'delay', u'name', u'bronco', u'line']
[u'insur', u'woe', u'cast', u'doubt', u'surf', u'lifesav']
[u'intellig', u'leak', u'pressur', u'british', u'minist']
[u'intern', u'bodi', u'check', u'captiv', u'solomon', u'dolphin']
[u'ireland', u'spring', u'surpris', u'rugbi', u'world', u'rank']
[u'israel', u'india', u'pledg', u'cooper', u'fight', u'terror']
[u'isra', u'secur', u'cabinet', u'meet', u'palestinian']
[u'isra', u'troop', u'launch', u'raid', u'west', u'bank', u'gaza', u'strip']
[u'isra', u'troop', u'raid', u'rafah', u'refuge', u'camp']
[u'isra', u'troop', u'palestinian', u'build']
[u'israel', u'talk', u'high', u'quri', u'agenda']
[u'japanes', u'econom', u'ralli', u'boost', u'aussi', u'export']
[u'judiciari', u'end', u'gee', u'career']
[u'lion', u'sweat', u'voss']
[u'lopez', u'affleck', u'wed', u'postpon']
[u'servic', u'rememb', u'septemb']
[u'storag', u'level', u'bring', u'water', u'restrict']
[u'accus', u'burn', u'assault']
[u'market', u'rate', u'rise', u'job', u'boost']
[u'martinez', u'show', u'stomach', u'fight', u'bali']
[u'math', u'troubl', u'link', u'brain', u'cod']
[u'melbourn', u'mourn', u'ravag', u'landmark']
[u'west', u'meet', u'focus', u'industri', u'initi']
[u'miner', u'face', u'brighter', u'outlook', u'insur', u'battl']
[u'miner', u'record', u'profit', u'boost']
[u'mooney', u'unawar', u'elect', u'phone', u'poll']
[u'mornington', u'get', u'mobil', u'phone', u'boost']
[u'want', u'south', u'east', u'health', u'budget', u'boost']
[u'welcom', u'sugar', u'reform', u'delay']
[u'home', u'school', u'rural', u'health']
[u'approach', u'seek', u'fight', u'indigen', u'alcohol']
[u'equip', u'boost', u'research', u'effort']
[u'insur', u'levi', u'chase', u'doctor', u'away']
[u'nickel', u'miner', u'achiev', u'record', u'profit']
[u'nippi', u'damag', u'award', u'stand']
[u'korea', u'expert', u'hint', u'push', u'asid']
[u'north', u'korea', u'intermedi', u'rang', u'missil']
[u'nrma', u'crew', u'agre', u'strike']
[u'mcmanaman', u'readi', u'offer', u'advic']
[u'olyroo', u'turkey']
[u'pair', u'aussi', u'rule', u'best', u'fairest', u'medal']
[u'palestinian', u'author', u'unifi', u'secur', u'forc']
[u'paper', u'urg', u'drought', u'prepar', u'offer']
[u'parliamentari', u'report', u'put', u'pressur', u'blair']
[u'parliament', u'rememb', u'septemb']
[u'peacekeep', u'push', u'liberia', u'anarchi']
[u'pearson', u'support', u'alcohol', u'strength']
[u'persist', u'offend', u'world', u'face', u'suspens']
[u'petacchi', u'enter', u'histori', u'fifth', u'stage']
[u'phillip', u'island', u'supercar', u'calendar']
[u'pilot', u'injur', u'plane', u'crash']
[u'plant', u'scheme', u'near']
[u'prais', u'sept', u'anniversari']
[u'polic', u'protest', u'clash', u'anti', u'globalis']
[u'powel', u'reject', u'european', u'compromis', u'iraq']
[u'prais', u'unifi', u'nativ', u'titl', u'claim']
[u'probe', u'order', u'airport', u'secur', u'breach']
[u'probe', u'uncov', u'dust', u'health', u'concern']
[u'public', u'offer', u'avenu', u'oppos', u'rat', u'slug']
[u'public', u'input', u'marin', u'park', u'plan']
[u'public', u'urg', u'water', u'wise', u'summer', u'loom']
[u'public', u'warn', u'specialist', u'cost']
[u'govt', u'cultur', u'insensit', u'tropic', u'deal']
[u'join', u'intern', u'child', u'protect', u'convent']
[u'somoan', u'communiti', u'hold', u'servic', u'murder']
[u'quri', u'agre', u'palestinian']
[u'race', u'inquiri', u'member', u'quit', u'protest']
[u'raider', u'unfaz', u'storm', u'warn']
[u'rail', u'servic', u'uncertainti', u'creat', u'tourism', u'fear']
[u'light', u'speed', u'camera', u'kick']
[u'refshaug', u'say', u'teacher', u'strike', u'threat', u'inappropri']
[u'resid', u'continu', u'fight', u'solv', u'traffic', u'problem']
[u'resourc', u'centr', u'moot', u'calingiri']
[u'resourc', u'shortfal', u'hamper', u'mackay', u'film', u'industri']
[u'ronaldinho', u'seal', u'brazil', u'struggl']
[u'rooney', u'provid', u'sparkl', u'england']
[u'rspca', u'voic', u'anger', u'sheep', u'shipment', u'death']
[u'ambul', u'open', u'closur']
[u'sabau', u'upset', u'martin', u'romanian', u'open']
[u'salvo', u'highlight', u'teen', u'bing', u'drink']
[u'renew', u'radioact', u'dump', u'opposit']
[u'scholarship', u'honour', u'australian', u'kill', u'sept']
[u'search', u'fail', u'fish', u'boat', u'miss']
[u'seed', u'import', u'win', u'weed', u'appeal']
[u'sept', u'time', u'reflect', u'cosgrov']
[u'small', u'earthquak', u'shake', u'mackay']
[u'solomon', u'island', u'warlord', u'keke', u'court']
[u'sorenstam', u'anxious', u'home', u'solheim', u'triumph']
[u'south', u'korean', u'suicid', u'protest', u'offici']
[u'stab', u'woman', u'ask', u'darwin', u'judg', u'free', u'attack']
[u'strike', u'mean', u'milk', u'dump']
[u'student', u'graduat', u'year', u'finish', u'degre']
[u'summit', u'bullet', u'bypass', u'airport', u'secur']
[u'supermarket', u'reopen', u'mice', u'woe']
[u'suppress', u'order', u'abus', u'trial', u'overturn']
[u'survey', u'consid', u'indigen', u'communiti', u'health']
[u'swedish', u'foreign', u'minist', u'die', u'knife', u'attack']
[u'swedish', u'foreign', u'minist', u'lindh', u'die', u'knife']
[u'swedish', u'foreign', u'minist', u'stab', u'stockholm']
[u'sydney', u'artist', u'take', u'dobel', u'prize']
[u'sydney', u'face', u'enforc', u'water', u'restrict']
[u'land', u'commemor', u'divid']
[u'tasmanian', u'snap', u'rugbi', u'world', u'ticket']
[u'taxi', u'test', u'reveal', u'brain', u'navig', u'techniqu']
[u'teacher', u'threaten', u'strike', u'despit', u'talk']
[u'terror', u'free', u'australia', u'year', u'away']
[u'power', u'insuffici']
[u'thorp', u'reward', u'place', u'tour', u'squad']
[u'tokyo', u'governor', u'criticis', u'bomb', u'comment']
[u'transport', u'dept', u'admit', u'steal']
[u'travel', u'crash', u'victim', u'week', u'away']
[u'tripl', u'organ', u'transplant', u'recipi']
[u'tweed', u'mum', u'drug', u'scheme']
[u'aqsa', u'member', u'kill', u'west', u'bank', u'camp']
[u'injur', u'philippin', u'bomb', u'seminar', u'blast']
[u'typhoon', u'maemi', u'hit', u'japanes', u'island', u'kill']
[u'uncertainti', u'abattoir', u'debt', u'respons']
[u'uncertainti', u'push', u'ethanol', u'project', u'collaps']
[u'union', u'secur', u'better', u'wage', u'deal', u'employe']
[u'ambassador', u'lobbi', u'indonesia']
[u'call', u'korei', u'crack', u'extrem']
[u'fall', u'silent', u'mark', u'septemb', u'anniversari']
[u'veron', u'favour', u'argentin']
[u'govt', u'reject', u'drought', u'critic']
[u'voss', u'close', u'percent', u'matthew']
[u'voss', u'play', u'sudden', u'death', u'clash', u'gabba']
[u'voter', u'opinion', u'seek', u'term']
[u'govt', u'rail', u'link', u'push', u'threaten', u'histor', u'build']
[u'teacher', u'plan', u'strike', u'negoti']
[u'water', u'restrict', u'agenda', u'hast']
[u'whoop', u'cough', u'case', u'rise']
[u'wildlif', u'group', u'prais', u'devil', u'diseas', u'effort']
[u'academ', u'ponder', u'council', u'power']
[u'prison', u'servic', u'comput', u'steal']
[u'adelaid', u'unit', u'enter']
[u'highlight', u'provinci', u'ballarat']
[u'age', u'care', u'nurs', u'consid', u'industri', u'unrest']
[u'launch', u'horsham', u'court', u'revamp']
[u'albani', u'jobless', u'rate', u'fall']
[u'angler', u'highlight', u'pelican', u'plight']
[u'appeal', u'help', u'woman', u'rare', u'brain', u'virus']
[u'appeal', u'test', u'mistak', u'belief', u'acquitt', u'rape']
[u'aquacultur', u'scheme', u'look', u'reconcili']
[u'arafat', u'stand', u'firm', u'israel', u'approv', u'expuls']
[u'assault', u'trial', u'rule', u'scotland', u'winger', u'walker']
[u'asylum', u'seeker', u'expens', u'prison']
[u'discov', u'larg', u'busi', u'pay']
[u'aussi', u'indi', u'takeov', u'plan']
[u'australian', u'share', u'market', u'end', u'week', u'flat']
[u'australian', u'weight', u'crisi', u'balloon']
[u'award', u'win', u'actor', u'john', u'ritter', u'die', u'age']
[u'bacon', u'flag', u'land', u'handov', u'aborigin']
[u'bali', u'bomb', u'survivor', u'pay', u'tribut', u'brisban']
[u'banger', u'better', u'whatmor']
[u'beatti', u'want', u'sugar', u'stalem']
[u'biggest', u'drug', u'haul', u'bust', u'sydney']
[u'blair', u'tell', u'iraq', u'invas', u'increas', u'terror', u'risk']
[u'bligh', u'hear', u'teacher', u'recruit', u'worri']
[u'boat', u'group', u'welcom', u'plan', u'sandbar', u'remov']
[u'bodi', u'recov', u'boat', u'capsiz', u'nigeria']
[u'race', u'pair', u'squar', u'domest', u'match']
[u'bomber', u'seat', u'port', u'malthous']
[u'brinkworth', u'cop', u'record', u'land', u'clear', u'fine']
[u'british', u'minist', u'regret', u'iraqi', u'weapon', u'confus']
[u'break', u'hill', u'jobless', u'rate', u'continu', u'fall']
[u'bulki', u'ballerina', u'career', u'cream']
[u'bunburi', u'jobless', u'rate', u'fall']
[u'bushfir', u'blaze', u'northern', u'southern']
[u'elect', u'voter', u'list', u'display']
[u'perman', u'restrict', u'urban', u'water']
[u'canberra', u'ceremoni', u'honour', u'victim']
[u'centrelink', u'offer', u'help', u'abattoir', u'worker']
[u'charvi', u'confirm', u'welsh', u'skipper']
[u'clijster', u'camp', u'backtrack', u'henin', u'dope', u'charg']
[u'clinic', u'aim', u'boost', u'region', u'number']
[u'collin', u'prove', u'fluke']
[u'communiti', u'care', u'buy', u'drug', u'rehab', u'centr']
[u'continu', u'pill', u'reliev', u'endometriosi']
[u'coron', u'find', u'poor', u'ventil', u'contribut', u'crew']
[u'costello', u'say', u'ansett', u'worker', u'payout']
[u'costello', u'take', u'obstructionist', u'senat']
[u'council', u'collect', u'hazard', u'wast']
[u'council', u'vote', u'lake', u'plan']
[u'council', u'vote', u'overturn', u'pool', u'closur', u'plan']
[u'countri', u'music', u'star', u'johnni', u'cash', u'die']
[u'coupl', u'arrest', u'kid', u'cannabi']
[u'cretin', u'remark', u'cost', u'barrist']
[u'crime', u'alcohol', u'restrict', u'trial']
[u'dailli', u'escap', u'censur', u'german', u'cheat']
[u'hoya', u'reveng', u'citi']
[u'delay', u'kalbarri', u'shark', u'coastal', u'road', u'plan']
[u'dietician', u'obes', u'partial', u'food', u'maker', u'fault']
[u'diner', u'spoil', u'choic', u'treasur', u'lunch']
[u'doctor', u'afford', u'insur', u'levi', u'coonan']
[u'law', u'exempt', u'fail', u'eas', u'farmer', u'concern']
[u'downer', u'plan', u'meet', u'discuss', u'chang']
[u'downer', u'urg', u'israel', u'reconsid', u'arafat', u'remov']
[u'drug', u'haul', u'mark', u'major', u'traffic', u'ring']
[u'eel', u'solomona', u'head', u'england']
[u'emot', u'return', u'favourit', u'lazio', u'visit']
[u'fallon', u'lead', u'opal', u'victori']
[u'farina', u'hit', u'fifa', u'delay']
[u'fatah', u'urg', u'palestinian', u'shield', u'arafat']
[u'fear', u'flower', u'carniv', u'boost', u'spread']
[u'fear', u'murray', u'valley', u'face', u'futur', u'winegrap']
[u'fear', u'polit', u'debat', u'fuel', u'ethanol', u'industri']
[u'announc', u'ahead', u'predict', u'high', u'wind']
[u'firman', u'rule', u'italian', u'grand', u'prix']
[u'flight', u'divert', u'court', u'order', u'toddler', u'plane']
[u'bank', u'manag', u'plead', u'guilti', u'theft']
[u'priest', u'jail', u'offenc']
[u'school', u'driver', u'jail', u'child', u'abus']
[u'sailor', u'disciplin', u'nottingham', u'ground']
[u'franc', u'take', u'risk', u'pick', u'marsh']
[u'georgian', u'captain', u'miss', u'squad']
[u'gilchrist', u'replac', u'captain']
[u'goddess', u'kidman', u'lead', u'best', u'dress', u'list']
[u'gold', u'miner', u'enjoy', u'record', u'result']
[u'govt', u'accus', u'child', u'protect', u'hypocrisi']
[u'green', u'renew', u'opposit', u'live', u'sheep', u'export']
[u'group', u'claim', u'bush', u'preserv']
[u'group', u'consid', u'burdekin', u'timber', u'plantat']
[u'group', u'wasnt', u'bank', u'rush', u'pledg']
[u'gunner', u'test', u'newli', u'promot', u'portsmouth']
[u'hall', u'face', u'insur', u'slug']
[u'harvey', u'norman', u'profit', u'jump']
[u'health', u'profession', u'tackl', u'industri', u'crisi']
[u'hospit', u'offici', u'urg', u'state', u'feder', u'cooper']
[u'hous', u'sector', u'slow', u'june', u'quarter']
[u'hundr', u'jobless', u'smelter', u'close']
[u'inquiri', u'seek', u'differ', u'approach', u'drug', u'fight']
[u'isra', u'troop', u'roll', u'west', u'bank']
[u'jobless', u'rate', u'drop', u'riverina']
[u'kangara', u'food', u'deal', u'boost', u'facil']
[u'kid', u'hospit', u'cannabi', u'overdos']
[u'lambert', u'blow', u'celtic', u'ger', u'lovenkrand']
[u'work', u'bendigo', u'council', u'chief']
[u'secur', u'pose', u'defenc', u'risk', u'expert']
[u'legal', u'action', u'delay', u'ansett', u'payment']
[u'lifestyl', u'underpin', u'australia', u'grow', u'obes']
[u'lion', u'tripl', u'dream', u'aliv']
[u'lion', u'lead', u'chang']
[u'lion', u'readi', u'turn', u'heat', u'matthew']
[u'live', u'cattl', u'trade', u'boost', u'rural', u'economi']
[u'live', u'sheep', u'trade', u'saudi', u'arabia']
[u'magnesium', u'group', u'record', u'loss']
[u'accus', u'stuttl', u'murder', u'await', u'trial', u'decis']
[u'custodi', u'hour', u'sieg']
[u'plead', u'guilti', u'meat', u'cleaver', u'attack']
[u'stand', u'trial', u'monash', u'shoot']
[u'mask', u'guerrilla', u'battl', u'soldier', u'iraq']
[u'maximum', u'forc', u'hurrican', u'isabel', u'extrem', u'danger']
[u'medic', u'group', u'hold', u'talk', u'canberra']
[u'melbourn', u'storm', u'home', u'canberra']
[u'takeov', u'mean', u'job', u'shake']
[u'model', u'predict', u'chanc', u'lung', u'cancer', u'relaps']
[u'monaghan', u'confirm', u'raider']
[u'monash', u'lectur', u'tell', u'court', u'alleg', u'gunman']
[u'doubt', u'rais', u'aquif', u'plan']
[u'mottram', u'hand', u'mont', u'carlo', u'wild', u'card']
[u'mount', u'concern', u'abbrevi', u'town']
[u'welcom', u'mcewen', u'health', u'fund', u'debat']
[u'museum', u'repatri', u'aborigin', u'remain']
[u'musharraf', u'say', u'lade', u'hide', u'tribal']
[u'nalbandian', u'join', u'coria', u'argentin', u'injuri', u'list']
[u'nat', u'highlight', u'powerlin', u'dispar']
[u'campaign', u'target', u'tourist']
[u'northam', u'estat', u'win', u'land', u'plan', u'award']
[u'nozal', u'cement', u'vuelta', u'lead']
[u'kiln', u'maker', u'take', u'global', u'market']
[u'senior', u'public', u'servant', u'rise']
[u'outspoken', u'zimbabwean', u'newspap', u'oper', u'illeg']
[u'palestinian', u'urg', u'protect', u'arafat', u'exil']
[u'panther', u'tough', u'bronco', u'say']
[u'parent', u'want', u'teacher', u'disput', u'resolv']
[u'payn', u'saddl', u'season', u'open']
[u'payout', u'deal', u'secur', u'french', u'vote', u'libya']
[u'pension', u'slight', u'rise']
[u'phoenix', u'claim', u'titl', u'record', u'crowd']
[u'plan', u'consid', u'hospit', u'servic', u'chang']
[u'prais', u'australia', u'resili', u'economi']
[u'polic', u'arrest', u'head', u'algerian', u'publish', u'group']
[u'polic', u'suspect', u'arson', u'shop', u'centr', u'fire']
[u'polic', u'search', u'bodi', u'burn', u'hous']
[u'pompey', u'promis', u'test', u'highburi']
[u'porn', u'film', u'strip', u'italian', u'church', u'holi']
[u'porter', u'squad', u'select']
[u'porter', u'aust', u'squad', u'select']
[u'power', u'firm', u'appeal', u'pawa', u'action']
[u'power', u'recal', u'collin', u'jam', u'vital', u'clash']
[u'price', u'tie', u'fourth', u'goosen', u'lead', u'franc']
[u'firefight', u'battl', u'bush', u'blaze']
[u'govt', u'offer', u'rainforest', u'indigen', u'assur']
[u'quak', u'claim', u'shaki']
[u'race', u'open', u'wound', u'south', u'africa']
[u'racism', u'affect', u'world', u'rugbi', u'oneil']
[u'rain', u'fail', u'subdu', u'sept', u'condol']
[u'research', u'error', u'undermin', u'drug', u'warn']
[u'research', u'focus', u'sugar', u'futur']
[u'resid', u'claim', u'road', u'victori', u'council']
[u'resid', u'seek', u'legal', u'fight', u'develop']
[u'rise', u'number', u'bolster', u'aust', u'dollar']
[u'roadwork', u'boost', u'access', u'communiti']
[u'romanian', u'miss', u'squad']
[u'ronaldo', u'take', u'swipe', u'pele', u'goal', u'record']
[u'ruddock', u'say', u'high', u'centr', u'cost', u'reflect', u'drop']
[u'rural', u'board', u'review', u'differ', u'local', u'govt', u'reform']
[u'sartor', u'promis', u'water', u'restrict', u'polic']
[u'scheme', u'address', u'region', u'skill', u'worker', u'shortag']
[u'scotland', u'townsend', u'world', u'injuri', u'scare']
[u'shearer', u'sign', u'toon', u'deal']
[u'singh', u'shoot', u'night', u'fall', u'chicago']
[u'smallpox', u'vaccin', u'inhibit', u'aid', u'spread']
[u'small', u'turnout', u'bicentenari']
[u'spain', u'newsman', u'accus', u'aid', u'qaeda']
[u'join', u'china', u'bahrain', u'calendar']
[u'spanish', u'giant', u'europ']
[u'special', u'citizenship', u'ceremoni', u'moruya']
[u'specul', u'classifi', u'file', u'fell', u'chines']
[u'storm', u'break']
[u'suspici', u'transact', u'point', u'grow', u'cash']
[u'swan', u'hill', u'seek', u'commonwealth', u'game', u'involv']
[u'sweden', u'push', u'ahead', u'euro', u'vote', u'despit']
[u'swedish', u'polic', u'hunt', u'foreign', u'minist', u'assassin']
[u'aborigin', u'mourn', u'invas']
[u'tasmania', u'major', u'tertiari', u'institut']
[u'teacher', u'strike', u'risk', u'alien', u'public', u'educ']
[u'terror', u'fear', u'fail', u'subdu', u'market']
[u'textil', u'giant', u'seek', u'slower', u'tariff', u'reform']
[u'uncov', u'cross', u'breach']
[u'recent', u'drug', u'raid', u'heron']
[u'timber', u'firm', u'branch', u'grape', u'product']
[u'toddler', u'overdos', u'cannabi', u'babysitt', u'bail']
[u'tourist', u'associ', u'seek', u'member']
[u'soldier', u'kill', u'spate', u'iraqi', u'attack']
[u'uncertain', u'futur', u'armidal', u'explor', u'servic']
[u'union', u'campaign', u'countri', u'teacher', u'boost']
[u'union', u'ralli', u'telstra', u'job']
[u'union', u'question', u'govt', u'public', u'asset', u'sale']
[u'union', u'want', u'incent', u'remot', u'polic']
[u'upgrad', u'give', u'aerodrom', u'weather']
[u'uruguay', u'pin', u'hop', u'homeboy']
[u'forc', u'mistaken', u'kill', u'iraqi', u'polic']
[u'marin', u'jail', u'rape', u'japan']
[u'paus', u'honour', u'sept', u'victim']
[u'plan', u'merci', u'mission', u'sick', u'antarct', u'worker']
[u'senat', u'debat', u'media', u'ownership', u'law']
[u'troop', u'rememb', u'septemb', u'victim']
[u'warn', u'possibl', u'qaeda', u'strike', u'bigger']
[u'urg', u'greater', u'support', u'children']
[u'voss', u'close', u'percent', u'matthew']
[u'claim', u'centr', u'inquiri', u'strong']
[u'westpac', u'drop', u'bank']
[u'white', u'vow', u'fight', u'medal']
[u'wimbledon', u'stick', u'tradit', u'slot']
[u'window', u'flaw', u'threaten', u'internet', u'secur']
[u'world', u'nation', u'park', u'need', u'billion', u'extra', u'fund']
[u'world', u'warn', u'israel', u'banish', u'arafat']
[u'wrangl', u'continu', u'pasminco']
[u'youhana', u'fight', u'centuri', u'fortifi', u'pakistan']
[u'youhana', u'steer', u'pakistan']
[u'arrest', u'chile', u'coup', u'anniversari']
[u'ambros', u'pole', u'sandown']
[u'annan', u'power', u'launch', u'talk', u'iraq', u'futur']
[u'antarct', u'ozon', u'hole', u'biggest', u'scientist']
[u'arafat', u'say', u'exil', u'threat', u'target', u'palestinian', u'rule']
[u'ashcroft', u'casualti', u'lion']
[u'bale', u'play', u'cap', u'crusad', u'movi']
[u'beckham', u'reveal', u'secret', u'success']
[u'briton', u'fail', u'cross', u'arctic', u'ocean', u'kayak']
[u'bulldog', u'brace', u'fire', u'warrior']
[u'bushfir', u'emerg', u'declar', u'northern']
[u'appoint', u'minist', u'perth']
[u'carr', u'beat', u'crean', u'prefer', u'leader', u'poll']
[u'celtic', u'lambert', u'rule', u'munich', u'open']
[u'chalmer', u'hang', u'rain', u'hit', u'chicago']
[u'charg', u'lay', u'detect', u'schoolgirl']
[u'children', u'evacu', u'sunshin', u'coast', u'bushfir']
[u'church', u'plan', u'code', u'stop', u'abus']
[u'costello', u'say', u'state', u'dud', u'taxpay']
[u'coupl', u'ban', u'kid', u'cannabi', u'charg']
[u'court', u'dismiss', u'implos', u'appeal']
[u'crow', u'veteran', u'bickley', u'bow']
[u'davi', u'drop', u'solheim', u'foursom']
[u'democrat', u'support', u'region', u'rebat', u'review']
[u'canio', u'line', u'crack', u'unit']
[u'doctor', u'protest', u'medic', u'indemn', u'levi', u'brisban']
[u'confirm', u'dead', u'canada', u'plane', u'crash']
[u'guerrouj', u'aim', u'athen', u'doubl']
[u'england', u'prove', u'wrong', u'admit', u'campes']
[u'england', u'batsman', u'robin', u'smith', u'quit']
[u'fiji', u'govt', u'sell', u'paper', u'indigen', u'compani']
[u'fiji', u'seven', u'wizard', u'serevi']
[u'meli', u'sink', u'bulldog']
[u'flower', u'sign', u'deal', u'essex']
[u'friend', u'kill', u'iraqi', u'polic']
[u'run', u'goosen', u'warn', u'rival']
[u'garlic', u'test', u'snail', u'slug']
[u'govt', u'deni', u'mislead', u'public', u'iraq', u'risk']
[u'hanson', u'jail', u'boost', u'nation', u'support']
[u'hewitt', u'tune', u'davi', u'semi']
[u'high', u'meli', u'warrior', u'sink', u'bulldog']
[u'howard', u'loos', u'truth', u'iraq', u'rudd']
[u'hurrican', u'isabel', u'move', u'atlant', u'ocean']
[u'india', u'say', u'iraqi', u'troop', u'request']
[u'indonesia', u'make', u'spook', u'ambassador', u'east']
[u'intercept', u'exercis', u'stag']
[u'interdict', u'drill', u'send', u'warn', u'hill']
[u'iran', u'accus', u'ieae', u'bow', u'nuclear']
[u'iran', u'threaten', u'cooper', u'nuclear']
[u'israel', u'snub', u'warn', u'arafat', u'exil']
[u'jordan', u'uncov', u'terror', u'cell', u'report']
[u'kashmir', u'attack', u'kill', u'soldier']
[u'kefu', u'loss', u'throw', u'rival', u'game', u'plan', u'jone']
[u'lade', u'clear', u'pie', u'clash']
[u'legless', u'prison', u'escap', u'south', u'african']
[u'lion', u'good', u'voss']
[u'london', u'airport', u'clear', u'secur', u'alert']
[u'london', u'airport', u'evacu', u'secur', u'alert']
[u'magnific', u'rooster', u'newcastl', u'season']
[u'charg', u'paddock', u'murder']
[u'melbourn', u'protest', u'march']
[u'melbourn', u'storm', u'home', u'canberra']
[u'sar', u'like', u'diseas', u'like', u'chief']
[u'music', u'world', u'mourn', u'cash']
[u'report', u'dead', u'portugues', u'plane', u'crash']
[u'nutti', u'nose', u'nudger', u'reach', u'hard', u'road']
[u'opal', u'outshin', u'tall', u'fern']
[u'orchard', u'owner', u'win', u'businesswoman', u'award']
[u'outback', u'gear', u'festiv', u'weekend']
[u'pace', u'bowler', u'sami', u'pakistan', u'team', u'injuri']
[u'polic', u'kill', u'suspect', u'mumbai', u'bomb', u'mastermind']
[u'powel', u'reject', u'french', u'propos', u'iraq']
[u'powel', u'visit', u'baghdad']
[u'power', u'clash', u'pie']
[u'protea', u'skipper', u'smith', u'step', u'bok', u'race']
[u'doctor', u'ralli', u'indemn', u'levi']
[u'lib', u'presid', u'accus', u'branch', u'stack']
[u'ranieri', u'say', u'makalel', u'power', u'chelsea', u'machin']
[u'rasmussen', u'shin', u'nozal', u'feel', u'pressur']
[u'rooster', u'throw', u'gauntlet', u'knight']
[u'rubin', u'bali']
[u'rwandan', u'presid', u'swear']
[u'sever', u'storm', u'victorian', u'emerg', u'crew', u'busi']
[u'shock', u'obstetrician', u'number', u'worsen', u'say']
[u'small', u'plan', u'return', u'grind', u'mechan']
[u'swedish', u'newspap', u'releas', u'photo', u'lindh', u'murder']
[u'tape', u'probabl', u'lade']
[u'teen', u'die', u'alleg', u'surf', u'accid']
[u'audit', u'cross', u'blood', u'servic']
[u'thousand', u'honour', u'murder', u'swedish', u'minist']
[u'titl', u'hop', u'vanish', u'ralf', u'schumach']
[u'titl', u'pressur', u'boil', u'monza']
[u'townsend', u'go', u'knife']
[u'tredrea', u'run', u'port']
[u'tredrea', u'doubt', u'port']
[u'typhoon', u'maemi', u'claim', u'live', u'south', u'korea']
[u'typhoon', u'maemi', u'kill', u'south', u'korea']
[u'iraq', u'inquiri', u'summon', u'head']
[u'ullrich', u'year', u'quest', u'titl', u'glori']
[u'union', u'push', u'better', u'deal', u'rural', u'polic']
[u'say', u'taylor', u'tri', u'liberia']
[u'secur', u'council', u'lift', u'libya', u'sanction']
[u'unwant', u'sheep', u'shipment', u'head', u'port']
[u'watchdog', u'set', u'iran', u'nuclear', u'deadlin']
[u'express', u'regret', u'iraq', u'shootout']
[u'stock', u'claw', u'posit', u'territori']
[u'venezuela', u'elector', u'council', u'reject', u'chavez']
[u'govt', u'probe', u'doctor', u'real', u'estat', u'photo']
[u'villa', u'confirm', u'talk', u'investor']
[u'villeneuv', u'fear', u'japan']
[u'warrior', u'half', u'time']
[u'talk', u'dog', u'friction', u'clock', u'tick']
[u'zimbabw', u'polic', u'shut', u'privat', u'newspap']
[u'zimbabw', u'inflat']
[u'kill', u'indian', u'kashmir']
[u'accc', u'head', u'say', u'rule', u'prove', u'knocker', u'wrong']
[u'adelaid', u'teenag', u'die', u'meningococc', u'diseas']
[u'aisbett', u'bradford', u'claim', u'win', u'queensland']
[u'alonso', u'go', u'hero', u'zero']
[u'anim', u'liber', u'poultri', u'raid', u'prompt', u'govt']
[u'drown', u'refuge', u'ditch', u'gulf']
[u'baro', u'injuri', u'overshadow', u'liverpool']
[u'beckham', u'aim', u'play', u'day', u'real']
[u'beckham', u'ban', u'famili', u'istanbul', u'grudg', u'match']
[u'bronco', u'break']
[u'civil', u'libertarian', u'condemn', u'driver', u'drug', u'test']
[u'costello', u'hint', u'beatti', u'eye', u'canberra', u'tilt']
[u'crocodil', u'attack', u'year', u'girl']
[u'hoya', u'shock', u'mosley', u'captur', u'doubl']
[u'dementieva', u'crush', u'rubin', u'bali', u'final']
[u'drink', u'doubl', u'risk', u'male', u'colon', u'cancer', u'report']
[u'europ', u'regain', u'solheim']
[u'exil', u'fujimori', u'plan', u'contest', u'perus']
[u'crew', u'brace', u'battl']
[u'kill', u'aceh']
[u'free', u'trade', u'deal', u'look', u'year', u'vail']
[u'goosen', u'charg', u'versaill']
[u'govt', u'consid', u'altern', u'stopov', u'rout', u'avoid']
[u'govt', u'vow', u'push', u'super', u'chang']
[u'granni', u'run', u'dementia', u'boost', u'fund']
[u'harrison', u'guitar', u'sell', u'auction']
[u'heavi', u'gunfir', u'erupt', u'mourner', u'gather', u'fallujah']
[u'hewson', u'accus', u'govt', u'lose', u'plot']
[u'hockey', u'renew', u'earli', u'elect', u'talk']
[u'howard', u'laugh', u'earli', u'elect', u'rumour']
[u'howard', u'say', u'enemi', u'number']
[u'isra', u'minist', u'say', u'kill', u'arafat', u'option']
[u'jone', u'presid']
[u'kenya', u'embark', u'cricket', u'tour']
[u'kewel', u'seal', u'liverpool', u'neill', u'face']
[u'lankan', u'spinner', u'ban', u'fatal', u'crash']
[u'largest', u'wheat', u'grower', u'face', u'civil', u'court', u'action']
[u'board', u'tram', u'shotgun']
[u'mask', u'ransack', u'network', u'ramallah', u'offic']
[u'matilda', u'gear', u'canada', u'clash']
[u'meat', u'loaf', u'gurus', u'rock', u'grand', u'final']
[u'mexican', u'polic', u'discov', u'drug', u'tunnel']
[u'mexico', u'float', u'compromis', u'draft']
[u'miss', u'dead']
[u'namibian', u'doctor', u'vuuren', u'histori']
[u'nationalist', u'parti', u'win', u'seat', u'morocco']
[u'naval', u'exercis', u'enrag', u'north', u'korea']
[u'neill', u'horror', u'tackl', u'put', u'carragh', u'action']
[u'deal', u'power', u'talk']
[u'crack', u'anim', u'cruelti']
[u'provid', u'special', u'protect', u'albino']
[u'pakistan', u'help', u'qaeda', u'afghanistan']
[u'pakistan', u'reject', u'report', u'assist', u'qaeda']
[u'palestinian', u'parliamentari', u'session']
[u'palestinian', u'debat']
[u'panther', u'gallant', u'bronco', u'season']
[u'peacekeep', u'deploy', u'liberian', u'port', u'citi']
[u'pompey', u'prove', u'live', u'boy']
[u'port', u'upbeat', u'jam', u'chanc']
[u'powel', u'pledg', u'iraq', u'power', u'return', u'cours']
[u'priddi', u'injuri', u'blow', u'panther']
[u'radcliff', u'set', u'world', u'best']
[u'rain', u'stop', u'play', u'chicago']
[u'real', u'seven', u'tristan', u'take', u'deportivo']
[u'report', u'find', u'unsaf', u'practic', u'sydney', u'hospit']
[u'rodriguez', u'tour', u'spain', u'home']
[u'rspca', u'leav', u'speechless', u'teen', u'club', u'chicken']
[u'rubin', u'face', u'dementieva', u'bali', u'final']
[u'russia', u'urg', u'iran', u'cooper', u'iaea']
[u'scale', u'women', u'world', u'promis', u'qualiti']
[u'schuettler', u'set', u'final', u'clash', u'schalken']
[u'schumach', u'seiz', u'monza', u'pole']
[u'schumach', u'snatch', u'italian', u'victori']
[u'search', u'continu', u'miss', u'year', u'girl']
[u'seven', u'kill', u'russia', u'road', u'accid']
[u'shake', u'swede', u'vote', u'euro', u'referendum']
[u'skaif', u'take', u'sandown']
[u'south', u'african', u'karachi', u'check', u'secur']
[u'south', u'korean', u'troop', u'assist', u'typhoon', u'clean']
[u'squad', u'alight', u'outsid', u'polic', u'station']
[u'korea', u'begin', u'typhoon', u'clean', u'dead']
[u'strike', u'address', u'teacher', u'shortag']
[u'sydney', u'student', u'smash', u'wash', u'record']
[u'tanzanian', u'sydney', u'marathon']
[u'score', u'contract', u'build', u'anti', u'terror', u'helicopt']
[u'celt', u'sink', u'dunde']
[u'thirti', u'fire', u'burn']
[u'charg', u'kill', u'chicken']
[u'point', u'lead', u'say', u'euro', u'captain', u'nilsmark']
[u'toronto', u'film', u'fest', u'pack', u'deckchair']
[u'tourism', u'huge', u'threat', u'global', u'environ', u'studi']
[u'tourism', u'fund', u'cut', u'impact', u'job']
[u'tredrea', u'hail', u'port', u'turnaround']
[u'milan', u'lazio']
[u'posit', u'dope', u'test', u'world', u'report']
[u'year', u'restor', u'power', u'iraq', u'minist']
[u'soldier', u'die', u'iraq', u'attack']
[u'wallabi', u'escap', u'darwin']
[u'warehous', u'chain', u'bring', u'plastic', u'levi']
[u'white', u'put', u'troubl']
[u'windi', u'condit', u'hamper', u'firefight', u'effort']
[u'winner', u'vocat', u'train', u'award', u'announc']
[u'talk', u'edg', u'forward', u'polic', u'brace', u'protest']
[u'zimbabw', u'media', u'cwealth', u'condemn', u'newspap', u'closur']
[u'allow', u'runaway', u'monkey', u'home', u'luxuri']
[u'dead', u'dozen', u'injur', u'south', u'american']
[u'fijian', u'soldier', u'head', u'iraq']
[u'abattoir', u'meet', u'offer', u'littl', u'entitl', u'hope']
[u'affleck']
[u'court', u'yang', u'power', u'station', u'snub']
[u'agreement', u'help', u'boost', u'busi', u'opportun']
[u'alic', u'hors', u'shine', u'turf', u'club', u'award']
[u'figur', u'gather', u'willese', u'funer']
[u'consult', u'doctor', u'scath', u'hospit', u'report']
[u'anelka', u'trick', u'put', u'citi']
[u'anger', u'mine', u'hour', u'forum', u'snub']
[u'anglican', u'bishop', u'say', u'region', u'dioces', u'merger']
[u'assassin', u'acquit', u'extort']
[u'hang', u'fiji', u'walk', u'wound']
[u'babi', u'boomer', u'volunt', u'studi', u'launch']
[u'baggaley', u'paddl', u'kayak', u'gold']
[u'bali', u'blast', u'accomplic', u'sentenc', u'jail']
[u'bash', u'victim', u'die', u'hospit']
[u'battl', u'goosen', u'hold', u'nerv', u'versaill']
[u'bennett', u'close', u'origin', u'quit', u'decis']
[u'bickley', u'make', u'retir', u'offici']
[u'bomb', u'destroy', u'build', u'near', u'chechnya']
[u'boost', u'signal', u'meet', u'mix', u'recept']
[u'brigad', u'battl', u'fire', u'northern']
[u'british', u'minist', u'recal', u'iraq', u'weapon', u'inquiri']
[u'bronco', u'kelli', u'face', u'judiciari']
[u'bulldog', u'claim', u'premiership']
[u'burrup', u'emerg', u'servic', u'spotlight']
[u'council', u'share', u'revenu']
[u'crackdown', u'wealth', u'creat', u'scheme']
[u'dissolv', u'sugar']
[u'chemist', u'supermarket', u'pharmaci']
[u'cloet', u'guerrouj', u'name', u'athlet', u'year']
[u'council', u'branch', u'shire']
[u'council', u'urg', u'coal', u'concern']
[u'council', u'decid', u'feedlot']
[u'crean', u'target', u'report']
[u'deal', u'strike', u'adelaid', u'termin']
[u'democrat', u'senat', u'sit']
[u'downer', u'push', u'talk']
[u'downer', u'shrug', u'korea', u'threat']
[u'driver', u'hospit', u'crash', u'unit']
[u'educ', u'spotlight', u'berri']
[u'tourist', u'kidnap', u'colombian', u'lose', u'citi']
[u'highlight', u'need', u'smelter', u'hous', u'clean']
[u'ettridg', u'lodg', u'high', u'court', u'bail', u'appeal']
[u'euro', u'giant', u'warm', u'champion', u'leagu', u'style']
[u'exil', u'greek', u'king', u'open', u'school', u'sport', u'centr']
[u'austrian', u'joker', u'berger', u'bow']
[u'north', u'firm', u'sign', u'benefit', u'agreement']
[u'feder', u'parliament', u'women', u'suffrag', u'sculptur']
[u'govt', u'offer', u'farmer', u'drought']
[u'govt', u'pressur', u'privat', u'fund', u'medic']
[u'dead', u'crash', u'argentina']
[u'final', u'reject', u'swell', u'kangaroo', u'squad']
[u'firefight', u'continu', u'battl', u'contain', u'bushfir']
[u'firefight', u'monitor', u'tableland', u'bushfir']
[u'fire', u'burn', u'northern']
[u'fish', u'group', u'oppos', u'finfish', u'plan']
[u'flight', u'uncov', u'nation', u'park', u'cannabi', u'crop']
[u'dead', u'sydney', u'stab']
[u'freeway', u'toll', u'unpopular', u'motorist', u'survey']
[u'freight', u'firm', u'push', u'darwin', u'alic', u'rail', u'benefit']
[u'fund', u'tourist', u'trail']
[u'good', u'crowd', u'turn']
[u'govern', u'push', u'ahead', u'univers', u'reform']
[u'govt', u'consid', u'extend', u'timefram', u'request']
[u'govt', u'figur', u'fuel', u'earli', u'poll', u'specul']
[u'govt', u'move', u'combat', u'drop', u'resourc', u'explor']
[u'govt', u'allow', u'extradit', u'lebanon']
[u'grazier', u'appeal', u'clear', u'fine']
[u'gunmen', u'captur', u'explos', u'seiz']
[u'half', u'worker', u'redund']
[u'hanson', u'consid', u'high', u'court', u'bail', u'appeal']
[u'hanson', u'ettridg', u'await', u'bail', u'decis']
[u'health', u'author', u'defend', u'treatment']
[u'hewitt', u'scud', u'readi', u'davi', u'clash', u'fitzgerald']
[u'historian', u'question', u'forest', u'claim']
[u'holden', u'tri', u'stop', u'industri', u'action']
[u'holland', u'deserv', u'play', u'port', u'buckley']
[u'hospit', u'administr', u'quiz']
[u'howard', u'dous', u'earli', u'poll', u'talk']
[u'icac', u'confirm', u'puplick', u'investig']
[u'inca', u'wall', u'fall', u'archaeologist', u'hotel']
[u'indian', u'court', u'convict', u'missionari', u'murder']
[u'indigen', u'jail', u'rise']
[u'injur', u'puma', u'captain', u'arbizu', u'miss', u'world']
[u'iraq', u'industri', u'run']
[u'iraq', u'polic', u'chief', u'soldier', u'kill']
[u'israel', u'rule', u'immedi', u'remov', u'arafat']
[u'jackson', u'make', u'breakthrough']
[u'jackson', u'name', u'america']
[u'japanes', u'consid', u'review', u'constitut']
[u'respons', u'bali', u'imron']
[u'trainer', u'seek', u'bendigo', u'council', u'spot']
[u'juri', u'consid', u'verdict', u'trial']
[u'juve', u'roma', u'inter', u'pace', u'itali']
[u'kasper', u'stand', u'vain', u'surrey', u'claim', u'titl']
[u'kenyan', u'polic', u'clash', u'student', u'lectur']
[u'kidwel', u'chanc', u'dog', u'clash', u'say', u'bellami']
[u'labor', u'predict', u'increas', u'privat', u'health']
[u'landcar', u'group', u'face', u'fund', u'fear']
[u'landhold', u'illeg', u'fenc', u'warn']
[u'lawrenc', u'welcom', u'competit', u'presid']
[u'lion', u'port', u'sweat', u'video', u'review']
[u'lithuania', u'claim', u'european', u'championship']
[u'live', u'near', u'flight', u'path', u'stink', u'woman', u'say']
[u'local', u'teacher', u'join', u'wednesday', u'strike']
[u'madonna', u'launch', u'children', u'book']
[u'magpi', u'frustrat', u'final', u'ticket']
[u'arrest', u'eldest', u'william', u'sister', u'murder']
[u'bad', u'burn', u'servic', u'station', u'stand']
[u'charg', u'brisban', u'stab']
[u'charg', u'polic', u'bash']
[u'face', u'drug', u'charg', u'wife', u'report', u'break']
[u'plead', u'guilti', u'murder', u'trial']
[u'face', u'court', u'slash']
[u'martin', u'say', u'katherin', u'elect', u'tough']
[u'matilda', u'crash', u'loss']
[u'mayor', u'claim', u'support', u'rationalis', u'servic']
[u'mayor', u'upbeat', u'plan', u'drink', u'law']
[u'melbourn', u'catch', u'worst', u'year']
[u'merbein', u'repeat', u'premiership']
[u'militari', u'seiz', u'power', u'guinea', u'bissau']
[u'miller', u'hand', u'chairman']
[u'minist', u'consid', u'legal', u'action', u'sydney']
[u'monaro', u'high', u'rock', u'place', u'eisteddfod']
[u'detail', u'emerg', u'fatal', u'crash']
[u'air', u'forest', u'project', u'fear']
[u'air', u'wind', u'farm', u'invest', u'fear']
[u'cast', u'doubt', u'push', u'region', u'reform']
[u'nehra', u'doubt', u'face', u'zealand']
[u'netbal', u'australia', u'seal', u'deal']
[u'program', u'aim', u'tackl', u'sport']
[u'newscorp', u'drag']
[u'injuri', u'panther', u'pull']
[u'expect', u'lead', u'econom', u'growth']
[u'govt', u'consid', u'simpler', u'council', u'environ']
[u'palestinian', u'child', u'shoot', u'dead', u'near', u'ramallah']
[u'parliamentari', u'committe', u'explor', u'trade', u'avenu']
[u'perth', u'farewel', u'foreign', u'minist']
[u'philippin', u'rever', u'cardin', u'retir']
[u'plane', u'clear', u'emerg', u'land']
[u'plane', u'forc', u'emerg', u'land']
[u'plan', u'hatch', u'chook', u'power']
[u'plan', u'afoot', u'timber', u'plant']
[u'polic', u'question', u'mitchel', u'stab']
[u'polic', u'driver', u'ignor', u'drink', u'drive']
[u'star', u'court', u'damag', u'claim']
[u'port', u'lade', u'face', u'tribun']
[u'powel', u'criticis', u'isra', u'minist', u'kill']
[u'powel', u'shi', u'away', u'iraq', u'handov', u'deadlin']
[u'powel', u'visit', u'kurdish', u'attack', u'site']
[u'power', u'windi', u'night']
[u'privat', u'radio', u'station', u'boycott', u'burundi', u'govern']
[u'question', u'agricultur', u'colleg', u'job', u'decis']
[u'public', u'warn', u'firework', u'steal']
[u'public', u'warn', u'shonki', u'roof', u'painter']
[u'public', u'warn', u'follow', u'wast', u'station', u'rule']
[u'research', u'say', u'spong', u'project', u'hold', u'water']
[u'resid', u'evacu', u'south', u'melbourn', u'blaze']
[u'keep', u'close', u'clarenc', u'bushfir']
[u'monitor', u'blaze']
[u'riverland', u'base', u'scheme', u'win', u'train', u'award']
[u'road', u'attack', u'hong', u'kong', u'cyclist']
[u'roam', u'phone', u'dead']
[u'robe', u'shake', u'past', u'loss', u'grand', u'final']
[u'rooster', u'score', u'premiership']
[u'polic', u'probe', u'bolkus', u'raffl']
[u'schalken', u'take', u'ninth', u'career', u'titl']
[u'scheme', u'aim', u'boost', u'indigen', u'forest', u'job']
[u'schumach', u'win', u'pole', u'championship']
[u'scientist', u'bank', u'seed', u'collect']
[u'scientist', u'discov', u'fish']
[u'eagl', u'premiership', u'flag']
[u'search', u'resum', u'miss', u'teenag']
[u'singh', u'lewi', u'tie', u'chicago']
[u'sister', u'venus', u'serena', u'william', u'shoot', u'dead']
[u'sister', u'william', u'tenni', u'star', u'shoot', u'dead']
[u'resort', u'welcom', u'snowfal']
[u'skorean', u'northern', u'visit']
[u'slipperi', u'judo', u'jacket', u'throw', u'world', u'game']
[u'standov', u'man', u'murder', u'lead', u'court', u'appear']
[u'stewart', u'retir', u'cricket', u'report']
[u'sudanes', u'newspap', u'remain', u'suspend']
[u'survey', u'find', u'fewer', u'canberra', u'student', u'light']
[u'swan', u'oloughlin', u'fit', u'turn']
[u'swede', u'vote', u'currenc']
[u'sydney', u'busi', u'benefit', u'final', u'fortnight']
[u'sydney', u'nightclub', u'worker', u'charg', u'drug', u'raid']
[u'talk', u'deadlock', u'meet', u'wind']
[u'hint', u'asbesto', u'compo', u'reform']
[u'anglican', u'dioces', u'merg']
[u'tourist', u'flock', u'restor', u'templ']
[u'trio', u'battl', u'lib', u'ballarat', u'preselect']
[u'union', u'predict', u'expand', u'role', u'nurs']
[u'unhappi', u'geraldton', u'enrol', u'number']
[u'soldier', u'kill', u'baghdad', u'attack']
[u'govt', u'stand', u'grind', u'ahead', u'teacher', u'strike']
[u'oppn', u'support', u'region', u'campaign']
[u'virenqu', u'throw', u'vuelta']
[u'govt', u'miner', u'industri', u'advic']
[u'wallabi', u'unveil', u'lightweight', u'jersey']
[u'wallabi', u'unveil', u'look', u'jersey']
[u'oppn', u'predict', u'fewer', u'dairi', u'farmer']
[u'warrnambool', u'back', u'skill', u'worker', u'push']
[u'water', u'storag', u'boost', u'need', u'eas', u'restrict']
[u'westfield', u'sell', u'precinct']
[u'wife', u'face', u'court', u'stab']
[u'william', u'famili', u'pay', u'tribut', u'slay', u'sister']
[u'winegrap', u'shortag', u'predict', u'riverland']
[u'woman', u'face', u'court', u'murder', u'charg']
[u'talk', u'fail', u'mexico']
[u'trade', u'talk', u'collaps']
[u'yuendumu', u'win', u'cafl', u'countri']
[u'zimbabw', u'indi', u'paper', u'appli', u'publish']
[u'fear', u'dead', u'nepal', u'accid']
[u'depart', u'defend', u'plan', u'remov', u'blue', u'gum']
[u'actew', u'accus', u'stifl', u'competit']
[u'nationwid', u'year']
[u'alleg', u'illeg', u'fishermen', u'hold', u'darwin']
[u'american', u'women', u'soccer', u'leagu', u'fold']
[u'delay', u'split', u'detail']
[u'amrozi', u'appeal', u'fail']
[u'angler', u'oppos', u'marin', u'park', u'extens']
[u'angri', u'houllier', u'call', u'lengthi', u'coward']
[u'anti', u'terror', u'campaign', u'menac', u'press', u'freedom']
[u'arafat', u'aid', u'propos', u'indefinit', u'ceasefir']
[u'asio', u'back']
[u'claw', u'earli', u'loss']
[u'dead', u'nepal', u'accid']
[u'australia', u'forecast', u'wetter', u'normal']
[u'australia', u'top', u'chart', u'hire', u'intent']
[u'author', u'defus', u'school', u'bomb', u'ireland']
[u'bare', u'face', u'cheek', u'cost', u'german', u'athlet', u'dear']
[u'beatti', u'open', u'hospit', u'revamp']
[u'bennett', u'quit', u'maroon', u'report']
[u'blast', u'kill', u'japan', u'hostag', u'incid']
[u'blaze', u'kill', u'inmat', u'saudi', u'prison']
[u'bodi', u'exhum', u'solomon', u'island']
[u'boost', u'lobster', u'fisheri', u'catch']
[u'breakthrough', u'heart', u'diseas', u'studi']
[u'british', u'famili', u'open', u'life', u'public']
[u'brother', u'murder', u'missionari', u'forgiv', u'killer']
[u'california', u'elect', u'postpon']
[u'care', u'amidst', u'burn', u'off']
[u'nation', u'indigen', u'educ', u'probe']
[u'channel', u'tunnel', u'train', u'track']
[u'child', u'die', u'motorbik', u'accid']
[u'china', u'say', u'space', u'launch', u'countdown', u'go', u'smooth']
[u'chrome', u'room', u'propos', u'face', u'melbourn', u'council']
[u'clijster', u'keep', u'number', u'rank']
[u'climat', u'chang', u'bring', u'benefit', u'grower']
[u'cole', u'accus', u'illeg', u'salmon', u'import']
[u'commonwealth', u'urg', u'revers', u'zimbabw', u'chogm']
[u'communiti', u'work', u'solut', u'curb', u'racial']
[u'council', u'develop', u'applic', u'rise']
[u'councillor', u'contest', u'lib', u'bendigo', u'preselect']
[u'council', u'form', u'health', u'committe']
[u'crean', u'fall', u'poll']
[u'crean', u'play', u'latest', u'dire', u'opinion', u'poll']
[u'curb', u'tobacco', u'help', u'health', u'care']
[u'disgrac', u'back', u'court', u'action']
[u'disgrac', u'quit']
[u'disloyalti', u'charg', u'labor', u'dismiss']
[u'doctor', u'await', u'meningococc', u'test', u'result']
[u'doctor', u'group', u'upbeat', u'find', u'indemn']
[u'earlier', u'start', u'eurobodalla', u'bushfir', u'danger']
[u'earli', u'poll', u'agenda', u'crean', u'slip']
[u'delay', u'frustrat', u'farmer']
[u'equip', u'fault', u'identifi', u'sewag', u'spill', u'caus']
[u'farmer', u'drought', u'long', u'wait']
[u'fear', u'mount', u'miss', u'woman']
[u'feder', u'obstacl', u'davi', u'glori']
[u'govt', u'urg', u'cast', u'fish', u'woe']
[u'ferrari', u'refus', u'rule', u'tyre', u'action']
[u'fiji', u'busi', u'leader', u'seek', u'film', u'pact', u'australia']
[u'firefight', u'inquest', u'begin']
[u'firefight', u'home', u'effort']
[u'firefight', u'battl', u'sugarloaf', u'blaze']
[u'fire', u'spark', u'tableland', u'bushfir', u'emerg']
[u'babi', u'year', u'bear', u'remot', u'pitcairn']
[u'fisher', u'warn', u'crab', u'limit']
[u'beatl', u'guitar', u'fetch', u'auction']
[u'carlton', u'star', u'william', u'probe']
[u'alleg', u'member', u'face', u'thai', u'trail']
[u'fund', u'remov', u'women', u'right', u'memori']
[u'gold', u'coast', u'face', u'develop', u'crossroad']
[u'govt', u'accus', u'doubl', u'deal']
[u'govt', u'consid', u'cut', u'health', u'fund', u'lifestyl']
[u'govt', u'backdown', u'welfar', u'payment']
[u'govt', u'welcom', u'chogm', u'mugab', u'snub']
[u'graham', u'win', u'clune', u'medal']
[u'grapefruit', u'grower', u'look', u'market', u'strategi']
[u'take', u'pakistan', u'match']
[u'hairi', u'nose', u'vandal', u'desecr', u'grave']
[u'harvey', u'leav', u'gloucestershir']
[u'headless', u'aristocrat', u'look', u'leader']
[u'headi', u'plan', u'celebr', u'season']
[u'honda', u'want', u'villeneuv']
[u'hong', u'kong', u'brace', u'possibl', u'sar', u'return']
[u'hope', u'charter', u'flight']
[u'hospit', u'reject', u'elect', u'surgeri', u'claim']
[u'bring', u'northern', u'scorcher']
[u'diver', u'claim', u'pire']
[u'improp', u'damag', u'marin', u'park', u'moor']
[u'injur', u'tincu', u'romania']
[u'iraq', u'nuke', u'programm', u'iraq', u'scientist']
[u'iraq', u'attend', u'post', u'opec', u'meet']
[u'isra', u'soldier', u'shoot', u'dead', u'islam', u'jihad', u'leader']
[u'japanes', u'worker', u'kill', u'suicid', u'blast']
[u'jewelleri', u'chain', u'post', u'slight', u'profit', u'boost']
[u'jupit', u'happi', u'convent', u'centr', u'work']
[u'kean', u'miss', u'unit', u'greek', u'clash']
[u'keegan', u'see', u'england', u'futur', u'mcmanaman']
[u'labor', u'target', u'atsic', u'disciplinari', u'guidelin']
[u'lack', u'servic', u'creat', u'steal', u'generat']
[u'lade', u'clear', u'pie', u'clash']
[u'leicest', u'past', u'woeful', u'leed']
[u'lion', u'expect', u'neutral', u'sydney', u'clash', u'matthew']
[u'sheep', u'number', u'hamper', u'abattoir']
[u'arrest', u'shoot', u'william', u'sister']
[u'dead', u'hall', u'creek', u'stab']
[u'black', u'rememb', u'nashvill', u'funer']
[u'jail', u'centrelink', u'fraud']
[u'marin', u'train', u'park', u'airport']
[u'maritim', u'colleg', u'help', u'boost', u'port', u'secur']
[u'mayor', u'talk', u'hour', u'medic', u'servic']
[u'melbourn', u'stand', u'end', u'peac']
[u'microsoft', u'win', u'softwar', u'berth', u'motorola', u'mobil']
[u'mildura', u'council', u'lodg', u'commonwealth', u'game']
[u'court', u'action', u'pipelin', u'water', u'woe']
[u'dairi', u'farmer', u'exit', u'industri']
[u'back', u'resid', u'lake', u'plan', u'protest']
[u'form', u'work', u'hour', u'plan']
[u'highlight', u'workplac', u'safeti', u'chang', u'concern']
[u'nasa', u'set', u'galileo', u'crash', u'cours']
[u'nat', u'focus', u'thuringowa', u'seat']
[u'play', u'gain', u'straeuli', u'plan', u'assault']
[u'north', u'coast', u'state', u'school', u'teacher', u'join', u'strike']
[u'head', u'court', u'stop', u'expuls']
[u'student', u'result', u'access']
[u'observatori', u'provid', u'tourism', u'coup']
[u'albanian', u'iraqi', u'wound', u'grenad', u'attack']
[u'orica', u'make', u'garden', u'busi']
[u'parent', u'urg', u'kid', u'home', u'teacher', u'strike']
[u'pittman', u'get', u'busi']
[u'plan', u'afoot', u'rescu', u'chopper']
[u'mark', u'independ', u'program']
[u'urg', u'break', u'cycl', u'depend']
[u'watchdog', u'caution', u'vote']
[u'poland', u'get', u'record', u'case', u'blue']
[u'polic', u'check', u'reveal', u'defect', u'vehicl']
[u'polic', u'investig', u'suspect', u'sydney', u'doubl', u'murder']
[u'polic', u'investig', u'unit', u'blaze', u'bodi']
[u'polic', u'probe', u'graffiti', u'spree']
[u'polic', u'upgrad', u'charg', u'murder', u'assault']
[u'post', u'mortem', u'carri', u'murder', u'victim']
[u'powel', u'finish', u'iraq', u'trip', u'visit', u'memori']
[u'public', u'servant', u'demand', u'boost']
[u'public', u'consult', u'melbourn', u'water']
[u'qanta', u'ban', u'flight', u'snub', u'nose', u'dog']
[u'govt', u'consult', u'communiti', u'senior', u'need']
[u'govt', u'urg', u'tackl', u'feral', u'deer', u'problem']
[u'republican', u'condemn', u'california', u'vote', u'delay']
[u'research', u'group', u'combin', u'effort']
[u'resourc', u'centr', u'offer', u'communiti', u'benefit']
[u'roo', u'buckley', u'coach', u'honour']
[u'roo', u'fuel', u'oloughlin', u'specul']
[u'rudd', u'attack', u'govt', u'media', u'leak']
[u'school', u'peddl', u'drink', u'drive', u'messag']
[u'scientif', u'proof', u'doom', u'best', u'rapper']
[u'shoe', u'save', u'coupl', u'hostag', u'drama']
[u'snowi', u'season']
[u'south', u'africa', u'beef', u'bowl', u'attack', u'pakistan']
[u'speaker', u'andrew', u'retir', u'polit']
[u'stain', u'relat', u'death', u'penalti']
[u'stewart', u'make', u'retir', u'offici']
[u'storm', u'damag', u'fail', u'spark', u'underground', u'power', u'plan']
[u'storm', u'kidwel', u'face', u'dog']
[u'support', u'teacher', u'strike', u'western']
[u'suspect', u'taliban', u'kill', u'clash']
[u'swedish', u'polic', u'deni', u'arrest', u'lindh', u'murder', u'inquiri']
[u'compo', u'law', u'draw']
[u'teacher', u'begin', u'protest']
[u'teacher', u'strike', u'state']
[u'bail', u'uncertain', u'hanson']
[u'thousand', u'sign', u'cancer', u'petit']
[u'arrest', u'melbourn', u'drug', u'bust']
[u'thriller', u'writer', u'receiv', u'book', u'honour']
[u'treasuri', u'admit', u'surpris', u'hous', u'boom']
[u'trial', u'date', u'loom', u'secretari']
[u'unemploy', u'problem', u'bulloo']
[u'envoy', u'urg', u'movement', u'east', u'roadmap']
[u'economi', u'uncertain', u'ahead', u'reserv', u'meet']
[u'warship', u'hurrican', u'approach']
[u'politician', u'urg', u'french', u'menu']
[u'upgrad', u'missil', u'south', u'korea']
[u'govt', u'accus', u'stall', u'polic', u'station']
[u'politician', u'urg', u'push', u'scallop']
[u'victim', u'releas', u'hospit', u'sydney', u'kill']
[u'victori', u'singh', u'knock', u'tiger']
[u'virgin', u'blue', u'announc', u'melbourn', u'newcastl', u'rout']
[u'virgin', u'blue', u'consid', u'sunshin', u'coast', u'airport']
[u'farmer', u'hope', u'inquiri', u'improv', u'livestock']
[u'wakefield', u'announc', u'retir']
[u'water', u'author', u'warn', u'lake', u'blue', u'green', u'alga']
[u'wind', u'affect', u'bushfir', u'fight', u'effort']
[u'wineri', u'form', u'amphitheatr']
[u'wollongong', u'plan', u'futur']
[u'woman', u'leav', u'hospit', u'sydney', u'kill']
[u'world', u'oldest', u'person', u'turn', u'sweet']
[u'world', u'watch', u'lord', u'howe', u'stick', u'insect', u'breed']
[u'breakdown', u'leav', u'australian', u'farmer', u'wait']
[u'zabel', u'outsprint', u'petacchi', u'spain', u'nozal', u'lead']
[u'zimbabw', u'newspap', u'publish', u'fight', u'closur']
[u'arrest', u'unpaid', u'fin']
[u'aborigin', u'council', u'disappoint', u'report']
[u'accid', u'caus', u'fatal', u'saudi', u'prison']
[u'suburb', u'makeov']
[u'adelaid', u'lead', u'australia', u'wireless', u'technolog']
[u'aid', u'talk', u'begin']
[u'albani', u'teacher', u'stop', u'work', u'offer']
[u'imron', u'sentenc', u'tomorrow']
[u'ord', u'benefit', u'wall', u'street', u'high']
[u'face', u'reduc', u'enrol']
[u'arafat', u'expuls', u'discuss']
[u'armi', u'thank', u'communiti', u'exercis', u'support']
[u'aussi', u'male', u'zone', u'fairi', u'label']
[u'australia', u'accus', u'racist', u'condescend']
[u'australia', u'donat', u'eas', u'timor', u'food', u'shortag']
[u'australia', u'give', u'fund', u'burmes', u'cross']
[u'australian', u'dollar', u'lower', u'rat']
[u'ballerina', u'speak', u'weight', u'sack']
[u'industri', u'action', u'expir']
[u'journo', u'admit', u'mistak', u'iraqi', u'weapon', u'stori']
[u'bear', u'shaw', u'brown', u'miss', u'grand', u'final']
[u'beatti', u'pledg', u'ambul', u'delay', u'probe']
[u'bishop', u'call', u'cultur', u'toler']
[u'boca', u'want', u'maradona', u'rais', u'profil', u'china']
[u'bodi', u'solomon', u'weather', u'coast']
[u'bond', u'want', u'scholarship', u'rule', u'chang']
[u'boom', u'properti', u'price', u'creat', u'council', u'quandari']
[u'britain', u'play', u'russian', u'roulett', u'iraqi', u'arm']
[u'broadband', u'subscrib', u'rise']
[u'break', u'hill', u'teacher', u'join', u'protest']
[u'bronco', u'kelli', u'escap']
[u'bronco', u'bennett', u'undecid', u'origin']
[u'busi', u'support', u'forest', u'plan']
[u'studi', u'long', u'work', u'hour', u'impact']
[u'bomb', u'denmark', u'kill', u'polic']
[u'carr', u'threaten', u'poki']
[u'chappel', u'go', u'asylum', u'seeker']
[u'church', u'reject', u'confess', u'report']
[u'announc', u'katherin', u'candid']
[u'cole', u'cooper', u'crackdown', u'illeg']
[u'colombian', u'intensifi', u'search', u'kidnap']
[u'want', u'avail', u'sale']
[u'coron', u'issu', u'wheel', u'motorbik', u'warn']
[u'costello', u'ignor', u'arafat', u'west', u'bank', u'visit']
[u'costello', u'meet', u'palestinian', u'leadership']
[u'costello', u'reaffirm', u'support', u'israel']
[u'council', u'aim', u'boost', u'safeti', u'women', u'pub']
[u'council', u'approv', u'land', u'plan']
[u'council', u'reject', u'lake', u'water', u'craft']
[u'council', u'wait', u'sand', u'drift', u'fund']
[u'council', u'look', u'helipad', u'spot']
[u'clone', u'dead', u'stock']
[u'decompos', u'peni']
[u'deputi', u'leader', u'stand', u'talk', u'environment']
[u'door', u'open', u'secondari', u'barrow', u'project']
[u'downer', u'jump', u'talk']
[u'emerg', u'declar', u'isabel', u'near']
[u'emerg', u'group', u'help', u'save', u'live']
[u'timor', u'research', u'help', u'fight', u'stinger']
[u'european', u'leader', u'heal', u'iraq', u'rift']
[u'fast', u'expens', u'motorbik', u'destroy', u'british']
[u'fear', u'air', u'apart', u'plan', u'impact']
[u'ferguson', u'prais', u'goalless', u'strike', u'pair']
[u'firefight', u'control', u'cawarr', u'bushfir']
[u'firi', u'confid', u'northern', u'bushfir']
[u'night', u'delight', u'milan', u'madrid', u'manchest']
[u'fix', u'level', u'water', u'restrict', u'moot']
[u'flower', u'rule', u'tour']
[u'forecast', u'tip', u'elect']
[u'foreign', u'affair', u'unhappi', u'ignor', u'colombia']
[u'lion', u'laud', u'vosss', u'tenac']
[u'gippsland', u'school', u'stay', u'open', u'amid', u'teacher', u'strike']
[u'good', u'support', u'like', u'teacher', u'strike']
[u'govt', u'call', u'reveal', u'higher', u'educ', u'plan']
[u'govt', u'tough', u'migrat', u'agent']
[u'govt', u'urg', u'tackl', u'hous', u'afford', u'problem']
[u'green', u'boost', u'alburi', u'wodonga', u'presenc']
[u'growth', u'forecast', u'bolster', u'case', u'rate', u'rise']
[u'hanson', u'lodg', u'high', u'court', u'appeal']
[u'health', u'council', u'get', u'birthday', u'present']
[u'hear', u'continu', u'cardiologist', u'contract']
[u'heath', u'dept', u'reject', u'hospit', u'delay', u'claim']
[u'high', u'court', u'hear', u'hanson', u'bail', u'applic']
[u'hill', u'defend', u'iraq', u'decis']
[u'hill', u'stand', u'intellig', u'agenc', u'iraq']
[u'hill', u'sign', u'defenc', u'agreement', u'japan']
[u'honda', u'withdraw', u'suicid']
[u'honour', u'list', u'mark', u'bali', u'anniversari']
[u'hope', u'hospit', u'revamp', u'wait', u'time']
[u'hope', u'meet', u'shed', u'light', u'salin', u'flood']
[u'horsham', u'teacher', u'join', u'protest']
[u'howard', u'reject', u'racist', u'accus', u'zimbabw']
[u'hume', u'council', u'lodg', u'boundari', u'submiss']
[u'indigen', u'prove', u'popular', u'buyer']
[u'indonesia', u'uncov', u'bomb', u'plot', u'polic']
[u'high', u'communiti', u'bank']
[u'investig', u'reveal', u'sydney', u'death', u'murder']
[u'iraqi', u'scientist', u'confirm', u'weapon', u'claim']
[u'agre', u'work', u'death', u'fine', u'inadequ']
[u'jail', u'scheme', u'aim', u'traffic', u'offenc']
[u'jail', u'sentenc', u'speed', u'driver']
[u'japanes', u'cook', u'name', u'best', u'pizza', u'maker', u'napl']
[u'kobe', u'bryant', u'lawyer', u'want', u'record', u'accus']
[u'leaney', u'pull', u'german', u'master']
[u'long', u'black', u'anger', u'cafe']
[u'look', u'dont', u'touch', u'strip', u'club']
[u'mainland', u'address', u'atsic', u'organis']
[u'malthous', u'say', u'magpi', u'deserv', u'respect']
[u'charg', u'freeway', u'stand']
[u'detain', u'kill', u'swedish', u'minist']
[u'die', u'river', u'flee', u'polic']
[u'face', u'child', u'charg']
[u'mareeba', u'servic', u'station', u'join', u'ethanol', u'trial']
[u'media', u'stock', u'drive', u'share', u'market']
[u'melbourn', u'gunman', u'undergo', u'psychiatr', u'assess']
[u'charg', u'tobacco', u'seizur']
[u'men', u'health', u'scheme', u'face', u'fund']
[u'minist', u'critic', u'anti', u'nuclear', u'wast']
[u'minist', u'defend', u'workcov', u'chang']
[u'minist', u'visit', u'solomon', u'intervent', u'forc']
[u'miss', u'bushwalk', u'continu', u'rage']
[u'rain', u'need', u'good', u'harvest']
[u'place', u'expect', u'govt', u'relax', u'rule']
[u'soldier', u'wound', u'iraq']
[u'want', u'unifi', u'effort', u'rescu', u'rail', u'servic']
[u'speed', u'limit', u'urg', u'driver', u'slow']
[u'nielsen', u'captain', u'king']
[u'korea', u'say', u'naval', u'exercis', u'prelud', u'nuclear']
[u'sign', u'miss', u'teen', u'search', u'end']
[u'backbench', u'deni', u'conflict']
[u'resign', u'caus', u'content']
[u'oppn', u'renew', u'west', u'tamworth', u'school']
[u'pass', u'respons', u'facto', u'disput']
[u'teacher', u'mass', u'parliament', u'claim']
[u'teacher', u'reject', u'govt', u'offer']
[u'power', u'supplier', u'face', u'critic']
[u'numinbah', u'valley', u'road', u'slower', u'pace']
[u'firm', u'tri', u'access', u'reserv']
[u'spill', u'hamper', u'highway', u'traffic']
[u'opposit', u'parti', u'fight', u'educ', u'overhaul']
[u'pair', u'reason', u'seek', u'lib', u'bendigo', u'back']
[u'pair', u'plead', u'guilti', u'assault', u'charg']
[u'palestinian', u'faction', u'thrash', u'cabinet']
[u'palestinian', u'attack', u'veto']
[u'palestinian', u'condemn', u'resolut', u'veto']
[u'parent', u'prepar', u'teacher', u'strike', u'govt']
[u'parent', u'urg', u'respons']
[u'parliamentari', u'system', u'receiv', u'scath', u'report']
[u'parliament', u'discuss', u'confession', u'confidenti']
[u'perth', u'polic', u'probe', u'suspect', u'murder', u'suicid']
[u'bait', u'lace', u'arsenic']
[u'pilot', u'accus', u'train', u'sept', u'hijack', u'sue']
[u'plan', u'aim', u'boost', u'inland', u'town']
[u'player', u'union', u'boss', u'spring', u'socceroo', u'neill']
[u'cast', u'doubt', u'elect', u'predict']
[u'play', u'specul']
[u'polic', u'continu', u'highway', u'crackdown']
[u'polic', u'releas', u'inform', u'gangland']
[u'polic', u'search', u'steal', u'contain', u'babi']
[u'polic', u'question', u'freeway', u'stand']
[u'polic', u'union', u'promis', u'rise']
[u'price', u'loom', u'tasman', u'rout']
[u'protect', u'plan', u'indigen', u'site']
[u'rainfal', u'outlook', u'good']
[u'reardon', u'doubt', u'dog']
[u'rebel', u'leader', u'arrest', u'aceh']
[u'research', u'test', u'techniqu', u'control', u'aid']
[u'research', u'studi', u'reef', u'biodivers']
[u'reserv', u'bank', u'offici', u'talk', u'healthi', u'econom']
[u'resid', u'track', u'plan', u'concern']
[u'resort', u'ponder', u'longer', u'season']
[u'retir', u'general', u'challeng', u'bush']
[u'rossi', u'defend', u'proud', u'brazilian', u'record']
[u'rspca', u'probe', u'woolnorth', u'anim', u'cruelti', u'claim']
[u'sack', u'corrupt', u'solomon', u'offici', u'advis']
[u'oppn', u'want', u'mount', u'gambier', u'hospit', u'probe']
[u'scheme', u'aim', u'boost', u'businesswomen', u'number']
[u'schole', u'road', u'recoveri']
[u'school', u'close', u'teacher', u'protest']
[u'search', u'intensifi', u'miss', u'woman']
[u'second', u'hang', u'juri', u'child', u'charg', u'trial']
[u'shell', u'depot', u'closur', u'plan', u'fuel', u'emot']
[u'sleep', u'posit', u'express', u'subconsci', u'studi']
[u'slipper', u'reject', u'fisher', u'claim']
[u'softwar', u'giant', u'founder', u'fund', u'brain', u'atlas']
[u'south', u'east', u'appoint', u'club']
[u'speed', u'bat']
[u'sporn', u'comeback', u'promis', u'opal', u'coach']
[u'start', u'side', u'unchang', u'sudden', u'death']
[u'steinweg', u'clear', u'dope', u'offenc']
[u'john', u'need', u'volunt', u'sport', u'event']
[u'stockfe', u'firm', u'fin', u'mislead', u'label']
[u'subaru', u'champ', u'moya', u'team', u'boss']
[u'suspect', u'meningococc', u'suffer', u'clear']
[u'swan', u'seek', u'saturday', u'smile', u'roo']
[u'swedish', u'polic', u'issu', u'warrant', u'fugit', u'knifeman']
[u'swiss', u'close', u'roof']
[u'sydney', u'airport', u'chief', u'critic', u'secur', u'plan']
[u'forum', u'focus', u'public', u'privat', u'health', u'care']
[u'green', u'seek', u'regul', u'forestri', u'industri']
[u'teacher', u'begin', u'strike']
[u'teacher', u'ralli', u'support', u'wage', u'claim']
[u'teacher', u'strike', u'disput']
[u'teacher', u'strike', u'affect', u'central', u'school']
[u'teacher', u'warn', u'strike']
[u'telstra', u'inquiri', u'botch', u'opposit']
[u'telstra', u'unfaz', u'competitor', u'offer']
[u'thailand', u'cleans', u'undesir', u'bangkok']
[u'thousand', u'hunter', u'teacher', u'strike']
[u'tourist', u'die', u'devonport']
[u'trade', u'minist', u'play', u'summit', u'failur']
[u'tragic', u'accid', u'prompt', u'motorbik', u'warn']
[u'truck', u'firm', u'cyanid', u'charg', u'drop']
[u'monash', u'freeway', u'crash']
[u'wait', u'mandat', u'send', u'peacekeep', u'liberia']
[u'upgrad', u'hospit', u'children', u'ward', u'depend']
[u'admit', u'hold', u'iraqi', u'prison']
[u'batten', u'hurrican']
[u'pay', u'thailand', u'hambali']
[u'senat', u'overturn', u'controversi', u'media', u'rule']
[u'soldier', u'kill', u'iraq']
[u'veget', u'council', u'seek', u'clear', u'land', u'remedi']
[u'govt', u'attack', u'stop', u'teacher', u'strike']
[u'govt', u'oppos', u'inhal', u'recoveri', u'room']
[u'govt', u'urg', u'irrig', u'group', u'chairman']
[u'teacher', u'ralli', u'support', u'better']
[u'virgin', u'blue', u'tran', u'tasman', u'servic']
[u'wallabi', u'legend', u'tip', u'england']
[u'wall', u'street', u'ralli', u'rat']
[u'teacher', u'strike', u'better', u'wag']
[u'teacher', u'turn', u'forc', u'wage', u'protest']
[u'whale', u'watch', u'season', u'begin']
[u'women', u'domin', u'booker', u'shortlist']
[u'workshop', u'consid', u'climat', u'chang', u'impact']
[u'work', u'start', u'soon', u'windorah', u'power', u'station']
[u'actu', u'urg', u'interven', u'ship', u'sale']
[u'scalper', u'face', u'fine']
[u'imron', u'await', u'verdict']
[u'imron', u'jail', u'life']
[u'anasta', u'say', u'storm', u'brew']
[u'arab', u'nation', u'condemn', u'veto', u'arafat']
[u'arafat', u'call', u'truce']
[u'archbishop', u'defend', u'confession', u'confidenti']
[u'architect', u'bodi', u'warn', u'build', u'approv', u'crisi']
[u'atsic', u'leader', u'converg']
[u'aust', u'israel', u'share', u'common', u'outlook', u'terror']
[u'aust', u'track', u'meet', u'kyoto', u'target']
[u'australia', u'list', u'child', u'abus', u'death']
[u'australian', u'polic', u'help', u'forc', u'propos']
[u'open', u'grain', u'receiv', u'sit']
[u'bateman', u'firefight', u'return', u'battl']
[u'beatti', u'urg', u'adopt', u'sugar', u'deal']
[u'bega', u'face', u'threat', u'water', u'restrict']
[u'bemax', u'sharehold', u'vote', u'cristal', u'deal']
[u'blaze', u'destroy', u'sydney', u'factori']
[u'blix', u'say', u'evid', u'exagger']
[u'bond', u'exec', u'bail', u'reject']
[u'bush', u'clarifi', u'posit', u'saddam', u'terror', u'link']
[u'releas', u'school', u'document']
[u'canadian', u'polic', u'investig', u'exot', u'catnap']
[u'canberra', u'communiti', u'receiv', u'fight']
[u'carr', u'deni', u'rais', u'corrupt', u'investig']
[u'carr', u'face', u'question', u'fairfax']
[u'carr', u'head', u'europ', u'trade', u'talk']
[u'carr', u'stand', u'blackmail', u'claim']
[u'announc', u'plus', u'loss']
[u'cloud', u'hover', u'start', u'women', u'world']
[u'colombia', u'sign', u'claus', u'intern']
[u'communic', u'access', u'test', u'prepar']
[u'confer', u'aim', u'stimul', u'awar', u'unpaid']
[u'confer', u'tell', u'year', u'old', u'care', u'famili']
[u'loggerhead']
[u'contract', u'award', u'bridg', u'work']
[u'convict', u'paedophil', u'deni', u'bail']
[u'convict', u'paedophil', u'face', u'court', u'failur']
[u'cork', u'alic', u'darwin', u'rail', u'link']
[u'costa', u'offer', u'respons', u'rail', u'plagiar', u'claim']
[u'council', u'alloc', u'park', u'studi', u'fund']
[u'council', u'buy', u'kelli', u'land']
[u'council', u'defend', u'decis', u'chop', u'tree']
[u'council', u'feel', u'fenc', u'plan']
[u'councillor', u'urg', u'consid', u'role']
[u'court', u'rule', u'minist', u'deport', u'case']
[u'court', u'hear', u'high', u'rise', u'concern']
[u'crean', u'claim', u'join', u'medicar', u'petit']
[u'croc', u'head', u'home', u'european', u'tour']
[u'dairi', u'inquiri', u'hear', u'industri', u'woe']
[u'danish', u'biker', u'kill', u'explos']
[u'date', u'hanson', u'high', u'court', u'bail']
[u'democrat', u'senat', u'brand', u'liber', u'colleagu']
[u'deport', u'put', u'resort', u'invest', u'hold']
[u'doctor', u'ponder', u'futur', u'amidst', u'hospit', u'report']
[u'doctor', u'threaten', u'resign', u'damn', u'report']
[u'dollar', u'rise', u'greenback', u'weaken']
[u'drought', u'close', u'council', u'pool']
[u'drug', u'user', u'face', u'increas', u'stroke', u'risk', u'confer']
[u'condit', u'forc', u'cattl', u'price']
[u'elector', u'inquiri', u'hear', u'popul', u'count']
[u'england', u'thrive', u'world', u'pressur']
[u'entertain', u'centr', u'open', u'door']
[u'expans', u'result', u'record', u'profit', u'foodland']
[u'export', u'firm', u'close', u'door']
[u'famili', u'welcom', u'work', u'death', u'fine']
[u'feder', u'polic']
[u'govt', u'call', u'polic', u'investig', u'labor']
[u'ferguson', u'fight', u'charg']
[u'fiji', u'suprem', u'court', u'rule', u'multi', u'parti', u'disput']
[u'crew', u'contain', u'stradbrok', u'blaze']
[u'erupt', u'iraqi', u'pipelin']
[u'firefight', u'tackl', u'north', u'blaze']
[u'firefight', u'scale', u'bushfir', u'effort']
[u'firefight', u'work', u'contain', u'straddi']
[u'primus', u'forc', u'port', u'select', u'dilemma']
[u'nato', u'command', u'enter', u'race', u'presid']
[u'french', u'wimbledon', u'champ', u'head', u'davi', u'challeng']
[u'fund', u'cut', u'expect', u'impact', u'tele', u'health']
[u'gold', u'coast', u'student', u'involv', u'falun', u'gong', u'case']
[u'govt', u'urg', u'address', u'north', u'hous', u'shortag']
[u'govt', u'tough', u'spammer']
[u'great', u'ocean', u'protect', u'wind']
[u'green', u'approv', u'nickel', u'project']
[u'gympi', u'final', u'cracksnew', u'power', u'sourc']
[u'hamilton', u'wast', u'water', u'plant']
[u'hanson', u'lawyer', u'quiet', u'high', u'court', u'specul']
[u'health', u'cut', u'label', u'short', u'sight', u'social']
[u'hewitt', u'take', u'legal', u'battl', u'court']
[u'hill', u'plan', u'defenc', u'buy', u'overhaul']
[u'question', u'live', u'murray']
[u'hyundai', u'take', u'control', u'australian', u'distributor']
[u'see', u'sign', u'global', u'econom', u'recoveri']
[u'india', u'kill', u'suspect', u'muslim', u'rebel']
[u'indonesian', u'militari', u'kill', u'aceh', u'rebel', u'leader']
[u'injur', u'springbok', u'bobo', u'world']
[u'inquiri', u'hear', u'poor', u'communic', u'hold']
[u'inter', u'juventus', u'complet', u'great', u'start', u'itali']
[u'iraqi', u'attack', u'claim', u'heavi', u'casualti', u'report']
[u'isabel', u'bear', u'coast']
[u'isabel', u'close', u'east', u'coast']
[u'italian', u'apolog', u'mussolini', u'remark']
[u'jobless', u'rate', u'hunter']
[u'karratha', u'pharmaci', u'prompt', u'govt', u'review']
[u'katherin', u'voter', u'face', u'enrol', u'deadlin']
[u'katsidi', u'manag', u'confid', u'boxer', u'chanc']
[u'kookaburra', u'snatch', u'oceania', u'seri', u'lead']
[u'labor', u'run', u'medicar', u'campaign', u'fear']
[u'lachlan', u'council', u'reject', u'super', u'council', u'plan']
[u'langer', u'lead', u'warrior']
[u'lion', u'face', u'tough', u'test', u'hometown', u'hero', u'swan']
[u'liverpool', u'look', u'smicer', u'link', u'kewel', u'diouf']
[u'lomu', u'give', u'world', u'battl']
[u'magistr', u'name', u'centr', u'freeway', u'stand']
[u'malthous', u'say', u'holland', u'decis', u'difficult']
[u'appear', u'court', u'freeway', u'stand']
[u'hospit', u'drive', u'wharf']
[u'sentenc', u'jail', u'invent']
[u'face', u'court', u'council', u'minut']
[u'court', u'charg']
[u'mask', u'japanes', u'wrestler', u'forc', u'reveal', u'face']
[u'mcewen', u'tell', u'public', u'hospit', u'develop']
[u'meet', u'consid', u'alic', u'plan']
[u'melbourn', u'freeway', u'smash', u'victim', u'believ', u'murder']
[u'molik', u'make', u'round', u'shanghai']
[u'citizenship', u'drive']
[u'want', u'spotlight', u'lawyer', u'client', u'confidenti']
[u'councillor', u'quit']
[u'nepales', u'maoist', u'kill', u'armi', u'raid']
[u'apollo', u'style', u'capsul', u'replac', u'nasa']
[u'satellit', u'technolog', u'track', u'aircraft', u'movement']
[u'watchdog', u'strike', u'govt', u'build', u'plan']
[u'york', u'stock', u'exchang', u'chief', u'resign']
[u'major', u'develop', u'status', u'aquacultur', u'plan']
[u'north', u'meet', u'south', u'rail', u'line']
[u'club', u'oper', u'govt', u'manag']
[u'govt', u'consid', u'local', u'govt', u'reform', u'option']
[u'govt', u'urg', u'offer', u'rail', u'servic', u'pledg']
[u'health', u'dept', u'reject', u'critic', u'report', u'find']
[u'refer', u'carr', u'comment', u'corrupt', u'bodi']
[u'welcom', u'coroni', u'find']
[u'surgeri', u'wait', u'time', u'continu', u'rise']
[u'nurs', u'meet', u'closur', u'plan']
[u'stock', u'exchang', u'chairman', u'ask', u'step']
[u'stock', u'exchang', u'head', u'quit']
[u'oldest', u'prison', u'releas', u'cite', u'health']
[u'opposit', u'attack', u'govt', u'hobart', u'tourist']
[u'opposit', u'critic', u'polic', u'offer']
[u'oxfam', u'out', u'australian', u'mine', u'abus']
[u'philippoussi', u'face', u'feder']
[u'pie', u'appeal', u'rocca']
[u'deni', u'high', u'claim']
[u'polic', u'believ', u'crash', u'victim']
[u'polic', u'potenti', u'terrorist', u'target', u'indonesian']
[u'polic', u'launch', u'murder', u'inquiri', u'babi']
[u'polic', u'charg', u'fatal']
[u'polic', u'probe', u'unit', u'bodi']
[u'polic', u'seek', u'identifi', u'north', u'remain']
[u'polic', u'search', u'grim']
[u'polic', u'wait', u'speak', u'melbourn', u'crash', u'driver']
[u'politician', u'urg', u'reject', u'reform']
[u'poor', u'student', u'hardest', u'reform', u'student']
[u'power', u'gambl', u'primus', u'pie', u'pull', u'davi', u'surpris']
[u'profit', u'warn', u'toll', u'wall']
[u'properti', u'owner', u'urg', u'remain', u'awar']
[u'prosecutor', u'highlight', u'brinkworth', u'sentenc', u'hitch']
[u'fighter', u'stradbrok', u'blaze']
[u'quirindi', u'sawmil']
[u'railway', u'track', u'insur', u'woe']
[u'ralf', u'confid', u'sign', u'william', u'contract']
[u'rebel', u'strike', u'paralys', u'nepales', u'capit']
[u'reward', u'offer', u'lose', u'sheep']
[u'roo', u'say', u'success', u'come', u'sooner', u'expect']
[u'ruddock', u'lose', u'appeal', u'detent']
[u'ruddock', u'open', u'asylum', u'seeker', u'hous', u'project']
[u'russian', u'bomber', u'crash', u'kill', u'crew']
[u'saddam', u'tape', u'demand', u'quit', u'iraq']
[u'samoa', u'lose', u'vital', u'player', u'world']
[u'scud', u'face', u'feder']
[u'second', u'woman', u'arrest', u'port', u'piri', u'stab']
[u'secur', u'analysi', u'focus', u'univers', u'degre']
[u'senat', u'agre', u'superannu', u'right']
[u'senat', u'tell', u'plan', u'sell', u'canberra', u'airport']
[u'share', u'market', u'edg', u'higher']
[u'sheep', u'strand', u'middl', u'east', u'okay', u'compani']
[u'spotlight', u'isra', u'weapon', u'confer']
[u'steal', u'year', u'sculptur', u'recov', u'iraq']
[u'studi', u'focus', u'indigen', u'women']
[u'survey', u'form', u'northern', u'cattl', u'snapshot']
[u'suspect', u'gunman', u'take', u'hostag']
[u'suspend', u'jail', u'term', u'cannabi', u'offenc']
[u'recov', u'hospit', u'oper']
[u'govt', u'promis', u'crackdown', u'llegal', u'salmon']
[u'tasmanian', u'dentist', u'shortag', u'report']
[u'tasmania', u'oldest', u'prison', u'walk', u'free']
[u'chang', u'gambl', u'club', u'surviv']
[u'teacher', u'work', u'strike']
[u'teacher', u'condit', u'pressur']
[u'teacher', u'offer']
[u'territori', u'carer', u'face', u'increas', u'pressur']
[u'thoma', u'eye', u'butterfli', u'comeback']
[u'guilti', u'arab', u'bomb', u'attempt']
[u'tougher', u'penalti', u'design', u'improv', u'workplac']
[u'tourism', u'power', u'ahead', u'charter', u'tower']
[u'truss', u'promis', u'murray', u'report', u'public']
[u'truss', u'want', u'releas', u'live', u'murray', u'report']
[u'tuqiri', u'close', u'encount', u'croc', u'kind']
[u'arrest', u'airport', u'theft']
[u'begin', u'distribut', u'food', u'liberia']
[u'unequ', u'make', u'monkey']
[u'union', u'condemn', u'busi', u'welcom', u'build', u'industri']
[u'union', u'happi', u'propos', u'construct']
[u'welcom', u'govt', u'chang', u'enrol', u'plan']
[u'claim', u'taliban', u'kill', u'afghanistan']
[u'colleg', u'stand', u'end', u'gunman', u'dead']
[u'extend', u'pacif', u'naval', u'build']
[u'soldier', u'kill', u'teenag', u'wed', u'confus']
[u'oppn', u'highlight', u'teacher', u'strike', u'cost']
[u'govt', u'cautious', u'welcom', u'strong', u'credit', u'rat']
[u'water', u'author', u'name', u'committe', u'appoint']
[u'water', u'worker', u'strike', u'sack']
[u'union', u'promis', u'backlash', u'propos', u'industri']
[u'wenger', u'rule', u'arsenal', u'wake', u'unit', u'threaten']
[u'work', u'bulli', u'victim', u'urg', u'speak']
[u'world', u'park', u'congress', u'agre', u'protect']
[u'world', u'oldest', u'genit', u'discov', u'scotland']
[u'xstrata', u'consid', u'rolleston', u'coal']
[u'zimbabwean', u'demonstr', u'arrest', u'protest']
[u'zimbabw', u'call', u'wishart']
[u'zimbabw', u'strong', u'despit', u'lack', u'flower', u'power', u'bichel']
[u'acceler', u'radiotherapi', u'benefit', u'cancer', u'patient']
[u'govt', u'question', u'polic', u'offer']
[u'actor', u'robert', u'duval', u'honour', u'hollywood', u'star']
[u'african', u'lion', u'popul', u'declin']
[u'condemn', u'govt', u'immunis', u'fund']
[u'antarct', u'centr', u'confid', u'futur']
[u'aussi', u'rooki', u'cole', u'share', u'stormi', u'lead']
[u'aust', u'deleg', u'tour', u'solomon']
[u'blood', u'threaten', u'spill', u'turin']
[u'ballarat', u'defenc', u'contract']
[u'bank', u'cull', u'job', u'share', u'slide']
[u'bear', u'hope', u'home']
[u'bemax', u'sharehold', u'seal', u'cristal', u'deal']
[u'biaggi', u'take', u'provision', u'pole', u'brazil']
[u'fall', u'erod', u'earli', u'market', u'gain']
[u'blair', u'suffer', u'elect', u'blow']
[u'bond', u'pursu', u'stage', u'medic', u'school']
[u'brazilian', u'foul', u'ronaldo', u'select']
[u'brisban', u'tripl', u'murder', u'go', u'court']
[u'briton', u'detain', u'murder', u'spanish', u'teen']
[u'break', u'hill', u'water', u'supplier', u'tell', u'lift', u'game']
[u'buffalo', u'size', u'rodent', u'guinea', u'pig']
[u'builder', u'union', u'complaint', u'head', u'court']
[u'bulldog', u'walk', u'walk', u'price']
[u'burni', u'docker', u'footbal', u'record']
[u'burundi', u'radio', u'boss', u'lift', u'boycott', u'goodwil']
[u'bush', u'blame', u'arafat', u'stall', u'peac', u'road']
[u'button', u'injur', u'smash']
[u'kosciuszko', u'log']
[u'withdraw', u'fungicid']
[u'canberra', u'polic', u'forc']
[u'captain', u'cook', u'land', u'site', u'get', u'heritag', u'list']
[u'cardin', u'prais', u'controversi', u'film']
[u'celtic', u'fallout', u'munich', u'fiasco']
[u'claim', u'govt', u'nurs', u'program', u'complet', u'failur']
[u'cloud', u'remain', u'wind', u'farm', u'develop', u'protect']
[u'cole', u'myer', u'profit', u'lift', u'percent']
[u'colleg', u'recruit', u'denial', u'anger']
[u'commiss', u'murray', u'report', u'backflip']
[u'communiti', u'input', u'seek', u'masterplan', u'meet']
[u'compani', u'move', u'stop', u'decept', u'stanbrok', u'sale']
[u'costello', u'introduc', u'aust', u'israel']
[u'council', u'criticis', u'mine', u'watchdog', u'propos']
[u'council', u'scheme', u'tackl', u'lantana']
[u'council', u'share', u'drought', u'fund']
[u'council', u'urg', u'refrain', u'region', u'doctor', u'push']
[u'court', u'reserv', u'judgment', u'nemer', u'appeal']
[u'crean', u'deni', u'poll', u'result', u'cover']
[u'credit', u'card', u'compani', u'lose', u'fee', u'case']
[u'croc', u'rooki', u'readi', u'contribut']
[u'davi', u'deserv', u'chanc', u'malthous']
[u'deportivo', u'deal', u'real', u'blow']
[u'diver', u'search', u'north', u'torso']
[u'divid', u'respons', u'roadwork', u'link', u'rate', u'rise']
[u'drought', u'reduc', u'sheep', u'flock']
[u'drug', u'watchdog', u'target', u'world']
[u'dubbo', u'deputi', u'mayor', u'seek', u'feder', u'presid']
[u'econom', u'perform', u'help', u'popul', u'growth']
[u'need', u'ballarat']
[u'edward', u'get', u'plan', u'recommend']
[u'elector', u'offic', u'clear', u'mayor', u'candid']
[u'eleg', u'youhana', u'lead', u'pakistan', u'victori']
[u'nomin', u'presid']
[u'head', u'enlarg', u'citi', u'field', u'wood']
[u'england', u'luger', u'warn', u'springbok', u'backlash']
[u'euro', u'boy', u'threaten', u'world', u'club', u'championship']
[u'evita', u'histor', u'diamond', u'necklac', u'go', u'auction']
[u'explos', u'kill', u'afghanistan']
[u'extinct', u'tree', u'releas', u'sale']
[u'famili', u'happi', u'respons', u'ambul', u'delay']
[u'farmer', u'group', u'claim', u'sustain', u'plan', u'snub']
[u'farmer', u'threaten', u'court', u'action', u'pipelin']
[u'faulti', u'light', u'forc', u'flight', u'turnaround']
[u'feder', u'lead', u'earli', u'melbourn']
[u'feder', u'level', u'davi']
[u'ferrero', u'crush', u'gaudio', u'spain', u'lead']
[u'ferrero', u'lead', u'spain', u'deplet', u'argentina']
[u'fiji', u'flay', u'club', u'countri', u'crisi']
[u'film', u'festiv', u'screen', u'south', u'east']
[u'crew', u'gain', u'upper', u'hand', u'straddi', u'bushfir']
[u'firefight', u'continu', u'contain', u'effort']
[u'fluorid', u'oppon', u'brush', u'plan']
[u'footi', u'final', u'fervour', u'see', u'overland', u'train', u'sell']
[u'execut', u'plead', u'guilti', u'scott', u'case']
[u'offic', u'jail', u'fraud']
[u'foster', u'announc', u'compani', u'float']
[u'frenchman', u'jail', u'life', u'plot', u'attack']
[u'french', u'town', u'offer', u'live', u'internet', u'wed']
[u'fresh', u'doubt', u'portug', u'euro', u'secur']
[u'gate', u'top', u'rich', u'list', u'year']
[u'anti', u'radiat', u'pill', u'home', u'emerg', u'bodi']
[u'govt', u'aim', u'boost', u'skill', u'region', u'migrat']
[u'govt', u'defend', u'vaccin', u'decis']
[u'govt', u'defi', u'senat', u'sheep', u'death', u'detail']
[u'govt', u'support', u'move', u'reduc', u'lobster', u'tariff']
[u'gravel', u'plant', u'worker', u'face', u'uncertain', u'futur']
[u'hama', u'member', u'palestinian', u'secur', u'servic']
[u'handgun', u'aim', u'sight', u'wodonga']
[u'hewitt', u'give', u'australia', u'fli', u'start']
[u'hewitt', u'test', u'form', u'davi', u'open']
[u'offer', u'build', u'assur', u'amidst', u'slowdown']
[u'hide', u'camera', u'guard', u'ancient']
[u'hindmarsh', u'draw', u'clear', u'clash', u'warrior']
[u'hindmarsh', u'doubt', u'draw', u'confirm', u'raider']
[u'hong', u'kong', u'hospit', u'rais', u'sar', u'alert']
[u'hurrican', u'isabel', u'hit', u'coast']
[u'hurrican', u'isabel', u'wreak', u'havoc', u'capit']
[u'warn', u'soar', u'hous', u'price']
[u'imron', u'lawyer', u'consid', u'appeal']
[u'india', u'deni', u'snub', u'pakistani', u'foreign', u'minist']
[u'iraqi', u'defenc', u'minist', u'surrend']
[u'jackson', u'shrug', u'world', u'best']
[u'jacobson', u'lead', u'german', u'master']
[u'figur', u'indic', u'econom', u'slowdown']
[u'jobless', u'rate', u'fall', u'kempsey', u'shire']
[u'jong', u'unlik', u'hero', u'japanes']
[u'knight', u'sign', u'odavi']
[u'lifesav', u'return', u'insur']
[u'lion', u'sydney', u'crunch', u'match']
[u'live', u'telecast', u'second', u'preliminari', u'final']
[u'love', u'martyn', u'selector', u'dilemma']
[u'die', u'farm', u'machineri', u'accid']
[u'hold', u'murder', u'hire', u'kobe', u'bryant', u'accus']
[u'hold', u'offer', u'kill', u'basketbal', u'star']
[u'jail', u'court', u'reject', u'merci', u'claim']
[u'massiv', u'blackout', u'hurrican', u'come', u'ashor']
[u'meat', u'process', u'plant', u'doubt']
[u'miner', u'council', u'undermin', u'oversea', u'watchdog', u'plan']
[u'miner', u'plan', u'koolyanob', u'project', u'product']
[u'minist', u'discuss', u'indigen', u'prawn', u'farm', u'plan']
[u'montoya', u'biggest', u'threat', u'schu']
[u'delay', u'lyell', u'highway', u'reopen']
[u'indigen', u'communiti', u'restrict']
[u'industri', u'action', u'possibl', u'polic']
[u'land', u'need', u'alic', u'hous']
[u'mourner', u'rememb', u'sweden', u'anna', u'lindh']
[u'movi', u'buff', u'gather', u'sebastian']
[u'reject', u'live', u'murray', u'claim']
[u'woman', u'award', u'heritag', u'work']
[u'mushroom', u'picker', u'stumbl', u'counterfeit', u'cash']
[u'neill', u'dont', u'soccer']
[u'email', u'worm', u'target', u'hole', u'internet', u'explor']
[u'korea', u'denounc', u'missil', u'deploy', u'south']
[u'inquiri', u'club', u'industri', u'tell']
[u'govt', u'urg', u'help', u'abattoir', u'worker']
[u'opposit', u'send', u'mislead', u'medicar', u'messag']
[u'opposit', u'warn', u'higher', u'increas', u'hec', u'fee']
[u'perilya', u'consid', u'explor']
[u'petacchi', u'victori', u'hide', u'team', u'setback']
[u'reject', u'bubbl', u'concern']
[u'polic', u'investig', u'stock', u'theft']
[u'polic', u'pressur']
[u'polic', u'rescu', u'effort', u'earn', u'braveri', u'recommend']
[u'polic', u'warn', u'fatigu', u'drive']
[u'prematur', u'remain', u'falconio', u'polic']
[u'primus', u'declar', u'pie', u'clash']
[u'protea', u'green', u'light', u'pakistan', u'tour']
[u'hedland', u'resid', u'angri', u'lack']
[u'public', u'comment', u'seek', u'road', u'plan']
[u'push', u'indigen', u'servic', u'duplic']
[u'lift', u'escal', u'mainten', u'worker', u'strike']
[u'prepar', u'season', u'minist', u'say']
[u'radcliff', u'eye', u'olymp', u'marathon']
[u'recycl', u'plan', u'vote', u'card']
[u'remand', u'court', u'process', u'take', u'long', u'judg', u'say']
[u'report', u'clear', u'cross', u'bali', u'appeal']
[u'report', u'find', u'tourism', u'group', u'woe']
[u'report', u'highlight', u'limit', u'forest', u'log']
[u'report', u'highlight', u'rail', u'line', u'option']
[u'research', u'optimist', u'aid', u'vaccin']
[u'research', u'find', u'older', u'drug', u'user', u'greater', u'risk']
[u'resid', u'sign', u'medicar', u'support', u'petit']
[u'resum', u'india', u'pakistan', u'match', u'pakistani']
[u'review', u'loom', u'local', u'govt', u'reform', u'plan']
[u'roma', u'rememb', u'hero']
[u'room', u'negoti', u'health', u'budget']
[u'rspca', u'find', u'dead', u'cattl']
[u'remain', u'human']
[u'search', u'come']
[u'salvo', u'minist', u'claim', u'immigr', u'dept', u'breach']
[u'samoa', u'lose', u'england', u'base', u'forward', u'world']
[u'sawmil', u'propon', u'keen', u'begin', u'work', u'soon']
[u'scientif', u'shockwav', u'test', u'accus', u'giant', u'squid']
[u'sharehold', u'await', u'cole', u'myer', u'profit', u'result']
[u'short', u'term', u'elect', u'surgeri', u'demand', u'rise']
[u'signific', u'rat', u'rise', u'unlik', u'govt']
[u'light', u'townsvill', u'celebr', u'year']
[u'soldier', u'charg', u'manslaught', u'aid']
[u'south', u'east', u'share', u'drought', u'fund']
[u'speedhog', u'clock', u'face', u'multipl', u'charg']
[u'springbok', u'centr', u'bobo', u'world', u'replac']
[u'stanwel', u'problem', u'havent', u'affect']
[u'starlet', u'take', u'stand', u'suprem', u'court']
[u'state', u'funer', u'plan', u'slim', u'dusti']
[u'survey', u'compar', u'cost', u'live', u'expens']
[u'survey', u'quizz', u'busi', u'coorow', u'issu']
[u'surgeri', u'burma']
[u'sydney', u'sweep', u'wild', u'wind']
[u'sydney', u'unit', u'draw', u'blood', u'open']
[u'tendulkar', u'warn', u'kiwi', u'dog']
[u'soldier', u'confirm', u'kill', u'ambush']
[u'time', u'run', u'redistribut', u'submiss']
[u'time', u'warner', u'drop']
[u'treasur', u'ask', u'clarifi', u'status', u'bushfir']
[u'tripl', u'goodwin', u'fire', u'sussex', u'histor']
[u'south', u'korean', u'fighter', u'miss', u'train']
[u'union', u'plan', u'tough', u'campaign', u'stop', u'build', u'reform']
[u'unit', u'brace', u'gunner', u'backlash', u'euro', u'flop']
[u'hurrican', u'downgrad']
[u'soldier', u'shoot', u'diplomat', u'translat', u'iraq']
[u'soldier', u'report', u'seri', u'attack', u'iraq']
[u'walker', u'court', u'case', u'postpon', u'clear', u'play']
[u'wallabi', u'concentr', u'puma', u'clash']
[u'oppn', u'say', u'govt', u'marina', u'decis', u'wrong']
[u'warship', u'newcastl', u'repair']
[u'warwick', u'enjoy', u'lowest', u'fuel', u'price']
[u'weather', u'hamper', u'firefight', u'effort']
[u'west']
[u'wind', u'whip', u'sydney', u'melbourn']
[u'wind', u'whip', u'melbourn']
[u'wirrpunda', u'win', u'communiti', u'leadership', u'award']
[u'women', u'children', u'kill', u'ferri', u'accid']
[u'women', u'children', u'step', u'detent', u'centr']
[u'wool', u'worker', u'confront', u'brack']
[u'world', u'struggl', u'cope', u'global', u'terror']
[u'zimbabw', u'court', u'rule', u'favour', u'independ', u'daili']
[u'bodi', u'recov', u'flood', u'north']
[u'sheep', u'saudi', u'shipment', u'manag']
[u'candid', u'tightlip', u'elect']
[u'arsenic', u'claim', u'bore', u'water', u'fals', u'alarm']
[u'audit', u'clear', u'blood', u'bank', u'amid', u'breach']
[u'aussi', u'cole', u'take', u'break', u'hurrican', u'stop', u'penn']
[u'aussi', u'incom', u'kill', u'english', u'cricket', u'say']
[u'australian', u'polic', u'assist', u'fiji', u'murder', u'case']
[u'australia', u'pay', u'solomon', u'debt', u'kick', u'start']
[u'beckham', u'billboard', u'black', u'iran']
[u'turnout', u'expect', u'river', u'regatta']
[u'blair', u'govt', u'suffer', u'backlash', u'elect', u'vote']
[u'bond', u'australian', u'hero', u'america', u'skipper']
[u'bond', u'celebr', u'america', u'anniversari']
[u'brazilian', u'killer', u'slice', u'victim', u'ear']
[u'brilliant', u'lion', u'straight', u'decid']
[u'britain', u'germani', u'franc', u'remain', u'divid', u'iraq']
[u'buckley', u'readi', u'port', u'rough', u'stuff', u'malthous']
[u'burma', u'remain', u'hospit', u'surgeri']
[u'campbel', u'doubt', u'trafford', u'father']
[u'cash', u'strap', u'namibia', u'doubt', u'world']
[u'chelsea', u'crush', u'hapless', u'wolv']
[u'child', u'vaccin', u'decis', u'short', u'sight']
[u'clinton', u'unveil', u'srebrenica', u'massacr', u'memori']
[u'death', u'toll', u'rise', u'hurrican', u'clean', u'continu']
[u'dementieva', u'rubin', u'shanghai', u'final']
[u'doubl', u'put', u'australia']
[u'elit', u'line', u'million', u'dollar', u'sprint']
[u'european', u'leader', u'meet', u'seek', u'iraq', u'deadlock']
[u'explos', u'rock', u'central', u'baghdad', u'casualti']
[u'feder', u'warn', u'ahead', u'davi', u'crunch']
[u'crew', u'continu', u'battl', u'blaze', u'island']
[u'forestri', u'tourism', u'agreement', u'propaganda']
[u'presid', u'criticis', u'bush', u'north', u'korea']
[u'fossett', u'fail', u'latest', u'glide', u'record', u'attempt']
[u'ganguli', u'star', u'fail', u'ahead', u'kiwi', u'test', u'seri']
[u'govt', u'boost', u'fund', u'cane', u'toad', u'research']
[u'figur', u'worst', u'season']
[u'hickss', u'father', u'urg', u'rais', u'case', u'bush']
[u'hope', u'forens', u'test', u'determin', u'decad']
[u'howard', u'welcom', u'home', u'troop', u'iraq']
[u'hundr', u'tear', u'farewel', u'murder', u'victim']
[u'hundr', u'troop', u'iraqi', u'town']
[u'expand', u'world', u'team']
[u'give', u'argentina', u'huge', u'loan']
[u'increas', u'role', u'rural', u'ambo', u'practic']
[u'indian', u'court', u'charg', u'seven', u'mosqu', u'destruct']
[u'indian', u'troop', u'kill', u'suspect', u'islam', u'rebel']
[u'injur', u'tendulkar', u'seek', u'pleasur', u'pain']
[u'ireland', u'press', u'ahead', u'smoke']
[u'israel', u'say', u'resolut', u'arafat', u'meaningless']
[u'japan', u'face', u'challeng', u'parti', u'elect']
[u'japan', u'win', u'parti', u'poll']
[u'karachi', u'bomb', u'attack', u'throw', u'fresh', u'doubt', u'protea']
[u'kasper', u'rip', u'durham', u'bat']
[u'kemp', u'optimist', u'project', u'ahead']
[u'kookaburra', u'olymp', u'hockey', u'berth']
[u'kookaburra', u'secur', u'olymp', u'spot']
[u'prosecutor', u'mull', u'charg', u'phil', u'spector', u'case']
[u'latham', u'deliv', u'chifley', u'address']
[u'lead', u'iraqi', u'politician', u'shoot']
[u'magpi', u'book', u'grand', u'final', u'berth']
[u'arrest', u'offer', u'kill', u'basketbal', u'star']
[u'charg', u'molotov', u'cocktail', u'alburi']
[u'kill', u'collis']
[u'molik', u'shanghai']
[u'archbishop', u'hold', u'talk', u'confession']
[u'club', u'kick', u'anti', u'govt', u'campaign']
[u'govt', u'dairi', u'packag', u'includ', u'workshop']
[u'treasur', u'claim', u'hole', u'poki', u'report']
[u'send', u'unambiti', u'propos', u'land', u'right']
[u'town', u'celebr', u'chang', u'season']
[u'nurs', u'launch', u'industri', u'action', u'age', u'care', u'home']
[u'pakistan', u'invit', u'india', u'summit']
[u'pakistan', u'like', u'reject', u'strand', u'australian', u'sheep']
[u'pakistan', u'rail', u'cross', u'crash', u'kill']
[u'palestinian', u'welcom', u'vote', u'arafat']
[u'patterson', u'unmov', u'vaccin', u'critic']
[u'philippin', u'telecom', u'giant', u'phone', u'scandal']
[u'polic', u'hunt', u'gunman', u'doctor', u'shoot', u'hospit']
[u'poulter', u'lead', u'german', u'master', u'moseley', u'content']
[u'pound', u'hop', u'quick', u'decis', u'young', u'dope', u'case']
[u'powel', u'prais', u'indonesia', u'secur', u'meet']
[u'power', u'canberra', u'home', u'blackout']
[u'power', u'south', u'play', u'draw']
[u'protea', u'cancel', u'pakistan', u'tour']
[u'say', u'slim', u'help', u'launch', u'polit', u'career']
[u'scientist', u'target', u'dead', u'diseas', u'affect']
[u'resid', u'warn', u'tailem', u'bend', u'bore']
[u'rossi', u'snatch', u'pole', u'bayliss', u'fifth', u'brazil']
[u'saddam', u'defenc', u'chief', u'surrend', u'blast', u'baghdad']
[u'issu', u'bore', u'water', u'arsenic', u'warn']
[u'seven', u'detent', u'tamworth', u'raid']
[u'sever', u'storm', u'leav', u'thousand', u'power']
[u'sydney', u'home', u'power', u'strong', u'wind']
[u'spain', u'close', u'final', u'feebl', u'henman', u'beat']
[u'straddi', u'blaze', u'jump', u'contain', u'line']
[u'strong', u'quak', u'shake', u'tokyo', u'injuri']
[u'student', u'await', u'meningococc', u'diseas', u'test', u'result']
[u'crane', u'accid', u'kill']
[u'tear', u'nozal', u'pile', u'vuelta', u'pressur']
[u'terror', u'threat', u'open', u'door', u'indonesia', u'busi']
[u'terrorist', u'plan', u'attack', u'indonesia', u'warn']
[u'tourist', u'flock', u'island', u'bushfir', u'continu']
[u'train', u'collis', u'kill', u'pakistan', u'polic']
[u'charg', u'perth', u'ecstasi', u'haul']
[u'approv', u'peacekeep', u'forc', u'liberia']
[u'demand', u'israel', u'drop', u'arafat', u'threat']
[u'strike', u'kill', u'afghan', u'civilian']
[u'hurrican', u'death', u'toll', u'hit']
[u'sanction', u'chines', u'missil', u'export']
[u'sign', u'immun', u'agreement', u'solomon']
[u'slap', u'sanction', u'china', u'missil', u'sale']
[u'ambul', u'offic', u'attack']
[u'warrior', u'send', u'raider', u'pack']
[u'welfar', u'chang', u'begin', u'today']
[u'wholesal', u'chang', u'bok', u'warm']
[u'woman', u'night', u'bush', u'ordeal']
[u'woodbridg', u'arthur', u'prepar', u'vital', u'davi']
[u'worker', u'leav', u'hilton', u'site', u'asbesto', u'concern']
[u'zimbabw', u'independ', u'daili', u'deni', u'licenc']
[u'lib', u'announc', u'campaign', u'platform']
[u'afghan', u'leader', u'move', u'disarm', u'warlord']
[u'aid', u'expert', u'wage', u'diseas']
[u'clearer', u'fire', u'continu', u'straddi']
[u'argentina', u'claim', u'debt', u'agreement', u'world']
[u'attack', u'claim', u'soldier', u'iraq']
[u'breath', u'fresh', u'wright', u'flight']
[u'bulldog', u'blow', u'storm', u'away']
[u'burmes', u'leader', u'hold', u'democraci', u'ralli']
[u'bush', u'approv', u'rat', u'iraq', u'drop', u'poll']
[u'calleri', u'stun', u'ferrero', u'davi']
[u'govt', u'fund', u'train', u'student']
[u'specul', u'crean', u'leadership']
[u'govt', u'help', u'residenti', u'care', u'oper']
[u'uniti', u'poll', u'put', u'carr', u'crean']
[u'celebr', u'latvia', u'vote', u'join']
[u'china', u'condemn', u'econom', u'sanction']
[u'choi', u'lead', u'germani']
[u'clinton', u'call', u'justic', u'bosnia', u'memori']
[u'candid', u'rule', u'prefer', u'talk']
[u'construct', u'law', u'trigger', u'elect', u'abbott']
[u'crespo', u'spree', u'fire', u'chelsea']
[u'czech', u'davi', u'elit']
[u'damron', u'beckman', u'share', u'penn', u'lead', u'laycock']
[u'darwin', u'polic', u'seek', u'overdu', u'boat']
[u'dementieva', u'lift', u'shanghai', u'open', u'crown']
[u'downer', u'rout', u'meet']
[u'eczema', u'suffer', u'need', u'skin', u'studi']
[u'elliott', u'comment', u'death', u'threat', u'report']
[u'coma', u'polic', u'hurt', u'seri', u'match']
[u'govt', u'ignor', u'tasmanian', u'telstra', u'concern']
[u'crew', u'hop', u'favour', u'weather']
[u'fishermen', u'fuel', u'problem']
[u'fishermen', u'support', u'govt', u'safeti', u'program']
[u'spaniard', u'hold', u'embassi', u'bomb', u'plot']
[u'fli', u'boat', u'arriv', u'darwin']
[u'dead', u'philippin', u'gold', u'heist']
[u'franc', u'centr', u'marsh', u'come', u'test']
[u'galileo', u'epic', u'journey', u'flame']
[u'gambian', u'newspap', u'editor', u'arrest']
[u'germani', u'knock', u'world', u'group']
[u'govt', u'blunder', u'ask', u'dead', u'teacher', u'return', u'work']
[u'govt', u'target', u'famili', u'refund', u'opposit']
[u'guantanamo', u'chaplain', u'arrest', u'suspicion']
[u'guantanamo', u'bay', u'muslim', u'chaplain', u'detain']
[u'half', u'million', u'dollar', u'gatlin', u'upset']
[u'hous', u'cycl', u'near', u'peak', u'minchin', u'say']
[u'ibi', u'cull', u'start', u'sydney']
[u'india', u'seek', u'death', u'australian', u'missionari']
[u'indonesia', u'launch', u'aceh', u'offens']
[u'isabel', u'clean', u'month']
[u'kookaburra', u'sweep', u'oceania']
[u'labor', u'unveil', u'save', u'scheme']
[u'latham', u'promot', u'save', u'scheme']
[u'latham', u'propos', u'spark', u'save', u'debat']
[u'latvian', u'vote', u'final', u'referendum']
[u'laycock', u'shot', u'penn', u'lead']
[u'leader', u'outrag', u'attack', u'iraqi', u'politician']
[u'leader', u'split', u'iraq', u'plan']
[u'leagu', u'world', u'stun', u'shelford', u'death']
[u'lion', u'confid', u'lappin', u'recoveri']
[u'lion', u'eye', u'pie', u'peat', u'leppitsch']
[u'hospit', u'nowra', u'petrol', u'drum', u'blast']
[u'mayor', u'seek', u'gambl', u'figur']
[u'murder', u'swedish', u'minist', u'lindh', u'buri', u'stockholm']
[u'nasa', u'galileo', u'crash', u'cours', u'jupit']
[u'nepales', u'general', u'strike', u'cost', u'economi', u'dear']
[u'newcastl', u'start', u'knight', u'marconi', u'draw']
[u'miss', u'avalanch', u'northern', u'india']
[u'excus', u'roo', u'swan', u'crash', u'earth']
[u'norwegian', u'blank', u'franc', u'women', u'world', u'open']
[u'coach', u'quiet', u'death', u'threat', u'report']
[u'govt', u'hold', u'high', u'hop', u'buyback']
[u'land', u'council', u'claim', u'govt', u'report', u'flaw']
[u'minist', u'condemn', u'anti', u'semit', u'graffiti']
[u'scientist', u'bird', u'speci', u'environment']
[u'scientist', u'use', u'bustard', u'health', u'check', u'bush']
[u'oneil', u'larsson', u'charm', u'offens']
[u'boy', u'readi', u'fitzi']
[u'pakistan', u'bid', u'save', u'protea', u'tour']
[u'pakistani', u'cricket', u'condemn', u'protea', u'boycott']
[u'palestinian', u'milit', u'chief', u'murder', u'assail']
[u'pari', u'gang', u'fight', u'trash', u'suburb']
[u'perth', u'crew', u'clean', u'fertilis', u'spill']
[u'perth', u'teen', u'await', u'meningococc', u'diseas', u'test']
[u'petacchi', u'strike', u'gonzalez', u'bow']
[u'phillip', u'island', u'school', u'caus', u'million', u'damag']
[u'polic', u'question', u'inner', u'citi', u'sydney', u'brawl']
[u'school', u'holiday', u'road', u'toll', u'hit']
[u'radcliff', u'win', u'half', u'marathon', u'record', u'time']
[u'reinforc', u'help', u'fight', u'island']
[u'riot', u'break', u'maldiv', u'prison', u'death']
[u'road', u'closur', u'plan', u'anger', u'south', u'east', u'resid']
[u'rocca', u'face', u'tribun', u'wipe']
[u'rossi', u'win', u'brazil', u'stoner', u'second']
[u'russia', u'matilda', u'obstacl']
[u'russia', u'say', u'western', u'firm', u'help', u'iran', u'nuclear']
[u'seven', u'indian', u'mountain', u'kill', u'himalayan']
[u'souness', u'hail', u'hero', u'neill']
[u'spain', u'near', u'davi', u'final', u'berth']
[u'storm', u'warn', u'bulldog', u'anasta']
[u'stradbrok', u'fire', u'control']
[u'striker', u'leagu']
[u'student', u'recov', u'meningococc', u'diseas']
[u'superstar', u'hewitt', u'secur', u'home', u'final']
[u'swim', u'coach', u'whistleblow', u'give', u'award']
[u'govt', u'pleas', u'research']
[u'aviv', u'ralli', u'demand', u'israel', u'withdraw']
[u'tulip', u'open', u'earli', u'hobart', u'festiv']
[u'charg', u'assault', u'paramed']
[u'back', u'iraqi', u'leadership', u'sell', u'state', u'asset']
[u'confirm', u'soldier', u'kill', u'rare', u'tiger', u'baghdad']
[u'deni', u'kill', u'civilian', u'afghan', u'attack']
[u'posit', u'arafat', u'harm', u'peac', u'process']
[u'soldier', u'kill', u'baghdad', u'tiger', u'attack']
[u'vicent', u'mista', u'send', u'valencia']
[u'scientist', u'say', u'test', u'detect', u'alzheim']
[u'extend', u'doubl', u'demerit', u'scheme']
[u'teen', u'recov', u'meningococc']
[u'welford', u'seek', u'advic', u'leader']
[u'wind', u'damag', u'shut', u'healesvill', u'sanctuari']
[u'woman', u'children', u'crash']
[u'zimbabw', u'vice', u'presid', u'die', u'age']
[u'injur', u'bangladesh', u'ship', u'crash']
[u'year', u'wait', u'ticket', u'prize', u'end']
[u'fund', u'boost', u'malaria', u'vaccin']
[u'kill', u'uganda', u'crash']
[u'pledg', u'north', u'rehab', u'scienc', u'centr']
[u'abar', u'tip', u'dollar', u'push', u'cent']
[u'win', u'aria', u'award']
[u'opposit', u'unveil', u'polici', u'direct']
[u'adelaid', u'care', u'facil', u'face', u'uncertain', u'futur']
[u'agreement', u'boost', u'busi', u'right', u'inform']
[u'aid', u'statist', u'rais', u'alarm']
[u'alcohol', u'restrict', u'tourism', u'impact']
[u'applebi', u'second', u'pennsylvania']
[u'atsic', u'happi', u'chang', u'park', u'manag']
[u'aussi', u'face', u'lancashir', u'claim', u'titl']
[u'australia', u'relat', u'strain', u'comment']
[u'australia', u'host', u'spain', u'final']
[u'australia', u'host', u'spain', u'davi', u'final']
[u'ballarat', u'place', u'cut', u'trend']
[u'beenleigh', u'host', u'ministeri', u'communiti', u'forum']
[u'breaker', u'look', u'grand', u'final', u'beat']
[u'british', u'defenc', u'secretari', u'defend', u'action']
[u'break', u'hill', u'farewel', u'compo', u'court']
[u'buckley', u'unwil', u'brownlow', u'guest']
[u'buckley', u'ricciuto', u'claim', u'brownlow', u'harvey']
[u'bulldog', u'track', u'folk']
[u'burma', u'face', u'pressur', u'free']
[u'burn', u'inquiri', u'term', u'refer']
[u'busi', u'time', u'legal', u'servic', u'warrant']
[u'princ', u'highway', u'fund', u'boost']
[u'probe', u'polic', u'remov', u'claim']
[u'promis', u'cut', u'littl', u'region']
[u'child', u'offend', u'work', u'teacher', u'warn']
[u'choi', u'claim', u'german', u'master']
[u'clone', u'cell', u'cure', u'brain', u'diseas', u'mice', u'studi']
[u'colombia', u'continu', u'search', u'kidnap', u'foreign']
[u'commod', u'export', u'look', u'brighter']
[u'compani', u'offer', u'ship', u'sale', u'assur']
[u'confer', u'tell', u'indigen', u'carer', u'need', u'help']
[u'council', u'gaug', u'rail', u'plan', u'busi', u'concern']
[u'council', u'hop', u'bridg', u'fund']
[u'councillor', u'put', u'energi', u'power', u'push']
[u'council', u'want', u'juvenil', u'offend', u'name']
[u'crean', u'refus', u'draw', u'conroy', u'remov']
[u'crean', u'urg', u'interven', u'faction']
[u'curriculum', u'develop', u'warn', u'address', u'issu']
[u'deportivo', u'maintain', u'perfect', u'start', u'real', u'away']
[u'devonport', u'centrelink', u'offic', u'rank', u'best']
[u'dollar', u'hit', u'month', u'high']
[u'dollar', u'retreat', u'morn', u'surg']
[u'dollar', u'spike', u'push', u'ord', u'lower']
[u'dollar', u'top', u'cent', u'level']
[u'eczema', u'research', u'seek', u'volunt']
[u'emmi', u'countdown']
[u'environment', u'popul', u'health', u'expert', u'meet']
[u'expert', u'overse', u'fish']
[u'farmer', u'stress', u'import', u'live', u'export', u'trade']
[u'fatal', u'crash', u'claim', u'mother', u'children']
[u'father', u'melbourn', u'crime', u'figur', u'fail']
[u'ferguson', u'wenger', u'furious', u'cheat']
[u'ferri', u'increas', u'daylight', u'sail']
[u'fifita', u'replac', u'havili', u'tonga']
[u'financi', u'time', u'launch', u'asian', u'edit']
[u'firm', u'hatch', u'plan', u'centr', u'foundat']
[u'join', u'kangaroo', u'squad']
[u'face', u'court', u'illeg', u'tobacco']
[u'execut', u'sue', u'villag', u'roadshow']
[u'funer', u'slim', u'dusti', u'hold', u'friday']
[u'galileo', u'crash', u'jupit']
[u'galileo', u'mission', u'end', u'melbourn', u'scientist']
[u'gather', u'focus', u'boost', u'disabl', u'servic']
[u'govt', u'assign', u'reduc', u'road', u'toll']
[u'govt', u'struggl', u'home', u'strand', u'sheep']
[u'grower', u'predict', u'promis', u'chardonnay', u'crop']
[u'health', u'servic', u'target', u'hospit', u'wait', u'list']
[u'hoax', u'scare', u'spur', u'polic', u'issu', u'warn']
[u'hope', u'nation', u'park', u'manag', u'uniform']
[u'hotel', u'get', u'extend', u'trade', u'hour', u'knock']
[u'hous', u'rental', u'market', u'tight', u'pilbara']
[u'howard', u'pay', u'tribut', u'ruddock', u'mileston']
[u'hunter', u'water', u'worker', u'disput']
[u'india', u'tougher', u'challeng', u'australia', u'fleme']
[u'insur', u'reform', u'time', u'cost']
[u'intern', u'aviat', u'chaplain', u'address', u'terror']
[u'investor', u'quiz', u'wine', u'fund', u'wind']
[u'iraq', u'council', u'member', u'recov', u'shoot']
[u'iraq', u'unveil', u'econom', u'overhaul']
[u'make', u'condit', u'order']
[u'irrig', u'revis', u'snowi', u'hydro', u'offer']
[u'isra', u'troop', u'hama', u'gunman', u'exchang']
[u'japanes', u'minist', u'resign']
[u'japanes', u'reshuffl', u'cabinet']
[u'battl', u'boro']
[u'judg', u'deliv', u'sentenc', u'missionari']
[u'katsidi', u'deliv', u'knockout', u'blow']
[u'kean', u'time', u'unit']
[u'labor', u'call', u'govt', u'backdown', u'leas', u'point']
[u'latham', u'want', u'help', u'save']
[u'lib', u'expel', u'wife', u'independ', u'support']
[u'incom', u'school', u'children', u'urg', u'work']
[u'mackay', u'road', u'share', u'black', u'spot', u'fund']
[u'accus', u'kill', u'doctor', u'make', u'bail']
[u'sentenc', u'communiti', u'servic', u'road', u'rage']
[u'sue', u'liverpool', u'hospit', u'medic', u'neglig']
[u'face', u'court', u'polic', u'station', u'attack']
[u'court', u'hous', u'damag']
[u'arsenal', u'play', u'spite', u'draw']
[u'mcewen', u'hear', u'super', u'infrastructur', u'plan']
[u'meander', u'oppon', u'urg', u'chang', u'stanc']
[u'meet', u'discuss', u'port', u'lincoln', u'develop', u'plan']
[u'meningococc', u'scare', u'victorian', u'teenag']
[u'mighti', u'moya', u'see', u'spain', u'final']
[u'minist', u'pay', u'tribut', u'slim', u'dusti']
[u'minist', u'airport', u'secur', u'comment']
[u'missionari', u'killer', u'sentenc', u'death']
[u'make', u'nurs', u'degre', u'place', u'pledg']
[u'reject', u'claim', u'highway', u'revamp', u'feder']
[u'murray', u'irrig', u'alloc', u'boost']
[u'namibian', u'coach', u'promis', u'reveng', u'club', u'player']
[u'namibia', u'turn', u'world', u'boss']
[u'nation', u'park', u'review', u'year', u'govt']
[u'give', u'fresh', u'view', u'australia']
[u'test', u'reaction', u'radiotherapi', u'treatment']
[u'bid', u'bypass', u'player', u'associ']
[u'prepar', u'honour', u'polic', u'forc']
[u'govt', u'push', u'control', u'nation']
[u'stock', u'exchang', u'name', u'interim', u'chief']
[u'organis', u'plant', u'seed', u'flower']
[u'organis', u'upbeat', u'york', u'park', u'clash']
[u'goal', u'miseri', u'matilda']
[u'pakistan', u'anger', u'india', u'weapon', u'acquisit']
[u'pakistan', u'complet', u'clean', u'sweep']
[u'pakistan', u'declin', u'australian', u'offer', u'free', u'sheep']
[u'pakistan', u'threaten', u'claim', u'damag', u'cancel']
[u'palestinian', u'milit', u'kill', u'isra']
[u'palestinian', u'design', u'meet', u'faction']
[u'pie', u'brace', u'rocca', u'verdict']
[u'urg', u'resolv', u'strand', u'sheep', u'crisi']
[u'welcom', u'home', u'troop', u'townsvill']
[u'polic', u'interview', u'suspect', u'raider', u'death', u'threat']
[u'polic', u'probe', u'fatal', u'crash']
[u'polic', u'remind', u'driver', u'valuabl']
[u'polic', u'urg', u'driver', u'care', u'road', u'toll', u'climb']
[u'pont', u'slam', u'warn', u'drug', u'mad']
[u'port', u'dredg', u'near']
[u'power', u'fin', u'late', u'entri']
[u'shout', u'quiet']
[u'continu', u'swelter', u'extrem', u'danger']
[u'governor', u'return', u'home']
[u'leader', u'volunt', u'breath', u'test']
[u'queensland', u'keen', u'respect', u'countri']
[u'ranger', u'demolish', u'heart', u'regain', u'spot']
[u'carpet', u'roll', u'emmi']
[u'resid', u'powerlin', u'approach', u'concern']
[u'resid', u'hear', u'oberon', u'bathurst', u'merger', u'plan']
[u'call', u'earli', u'total']
[u'roddick', u'lead', u'victori', u'germani', u'releg']
[u'roddick', u'ruin', u'thailand', u'open', u'scenario', u'late']
[u'roger', u'sixth', u'grand', u'prix']
[u'rescu']
[u'scientist', u'say', u'ozon', u'hole', u'record', u'size']
[u'search', u'find', u'miss', u'fisherman']
[u'self', u'confess', u'killer', u'get', u'year', u'jail', u'sentenc']
[u'senat', u'committe', u'hear', u'visa', u'outcom', u'success']
[u'sheep', u'ship']
[u'sibl', u'injur', u'jump', u'castl', u'mishap']
[u'singapor', u'australia', u'sign', u'servic', u'agreement']
[u'site', u'choos', u'purpos', u'build', u'ethanol', u'refineri']
[u'smoke', u'haze', u'nearbi', u'threat']
[u'socceroo', u'bresciano', u'hail', u'parma', u'doubl']
[u'song', u'writer', u'sing', u'slim', u'dusti', u'virtu']
[u'south', u'cafl', u'flag']
[u'spur', u'sack', u'hoddl']
[u'straddi', u'holidaymak', u'urg', u'awar']
[u'stump', u'chariti', u'cricket', u'match']
[u'sugar', u'worker', u'strike', u'demarc']
[u'suicid', u'bomber', u'kill', u'guard', u'baghdad']
[u'support', u'harsher', u'stanc', u'shoplift']
[u'tamworth', u'immigr', u'sting', u'land', u'seven', u'custodi']
[u'govt', u'call', u'discuss', u'futur']
[u'support', u'crean', u'leadership']
[u'target', u'child', u'abus', u'state', u'care']
[u'temperatur', u'region', u'soar']
[u'timber', u'industri', u'blockad', u'outsid', u'offic']
[u'tourism', u'zone', u'work', u'move', u'ahead']
[u'tourist', u'safe', u'bolivia', u'protest']
[u'townsvill', u'eye', u'turn', u'skyward', u'centenari', u'event']
[u'traffic', u'plan', u'aim', u'crash', u'rat']
[u'tulip', u'festiv', u'success', u'prompt', u'expans', u'plan']
[u'ullrich', u'ponder', u'futur', u'bianchi']
[u'unherald', u'dancev', u'lift', u'canada', u'world', u'group']
[u'univers', u'unhappi', u'nurs', u'place', u'snub']
[u'billion', u'restor', u'iraq', u'stabil']
[u'aid', u'forum']
[u'valverd', u'win', u'vuelta', u'punish', u'stage']
[u'air', u'dairi', u'deregul', u'diseas', u'control', u'fear']
[u'govt', u'backflip', u'child', u'offend']
[u'minist', u'defend', u'surveil', u'plan']
[u'compo', u'scheme', u'chang']
[u'vet', u'citi', u'wodonga']
[u'water', u'flow', u'test']
[u'treasur', u'predict', u'cut', u'servic', u'fund']
[u'western', u'feder', u'fund', u'look', u'healthier']
[u'west', u'wing', u'raymond', u'emmi', u'gong']
[u'wind', u'farm', u'plan', u'news', u'govt']
[u'woman', u'die', u'hors', u'fall']
[u'woodsid', u'slat', u'indigen', u'employ', u'level']
[u'young', u'thief', u'bash', u'shop', u'worker']
[u'handgun', u'surrend']
[u'govt', u'urg', u'submiss', u'public']
[u'actu', u'tell', u'labor']
[u'adelaid', u'council', u'approv', u'develop', u'program']
[u'ord', u'fall', u'media', u'resourc', u'stock']
[u'urg', u'game', u'despit', u'dismal']
[u'angel', u'lead', u'chairman']
[u'anonym', u'note', u'ignit', u'liber', u'brawl']
[u'arab', u'channel', u'target', u'crackdown']
[u'arazi', u'guid', u'morocco', u'davi', u'world', u'group']
[u'crack', u'dodgi', u'transact']
[u'aust', u'chariti', u'say', u'link', u'hama']
[u'aust', u'indonesia', u'relat', u'signific', u'damag']
[u'author', u'crack', u'sydney', u'taxi']
[u'bali', u'bomb', u'maker', u'plan', u'attack', u'polic']
[u'say', u'villeneuv', u'race', u'japan']
[u'baxter', u'detaine', u'roof', u'drama']
[u'bell', u'rugbi', u'world']
[u'bennett', u'ponder', u'state', u'origin', u'role', u'price']
[u'blair', u'aid', u'defenc', u'secretari', u'inquiri']
[u'blaze', u'take', u'hold', u'workshop']
[u'bodybuild', u'charg', u'offer', u'kill', u'bryant']
[u'accus', u'stepfath', u'kill', u'move', u'south']
[u'brack', u'hail', u'grand', u'final', u'scalp', u'crackdown']
[u'british', u'polit', u'columnist', u'hugo', u'young', u'die']
[u'break', u'hill', u'desalin', u'plant']
[u'bronco', u'state', u'club', u'bennett']
[u'brownlow', u'medallist', u'buckley', u'turn', u'attent']
[u'burma', u'remain', u'sturdi', u'detent']
[u'busi', u'group', u'propos', u'voluntari', u'code']
[u'eden', u'stop', u'ferri', u'rout']
[u'wind', u'farm', u'strategi']
[u'centr', u'aim', u'remot', u'area', u'attract']
[u'prepar', u'bushfir', u'season']
[u'chief', u'justic', u'drug', u'problem']
[u'china', u'propos', u'northern', u'free', u'trade', u'zone']
[u'choi', u'charg', u'world', u'rank']
[u'chouki', u'posit']
[u'compani', u'lament', u'demarc', u'disput']
[u'complaint', u'hotel', u'book', u'scheme']
[u'consum', u'warn', u'wari', u'door', u'door']
[u'council', u'approv', u'phone', u'tower', u'plan']
[u'council', u'delay', u'mobil', u'phone', u'tower', u'decis']
[u'currenc', u'market', u'settl', u'volatil']
[u'death', u'spector', u'home', u'rule', u'homicid']
[u'venuto', u'skipper', u'derbyshir']
[u'optimist', u'xmas', u'despit', u'recent', u'loss']
[u'owner', u'theft', u'warn']
[u'domest', u'disput', u'tie', u'polic']
[u'dope', u'watchdog', u'see', u'weak', u'tour', u'test']
[u'earli', u'cheer', u'hantuchova', u'leipzig']
[u'dead', u'venezuela', u'gang', u'fire', u'wake']
[u'investig', u'trafford', u'clash']
[u'farmer', u'tip', u'recov', u'strong', u'drought']
[u'farmer', u'sell', u'water', u'right']
[u'father', u'jail', u'child', u'assault']
[u'fear', u'eas', u'milan', u'striker', u'inzaghi']
[u'govt', u'urg', u'continu', u'cane', u'farmer', u'support']
[u'govt', u'urg', u'tackl', u'region', u'airport', u'secur']
[u'firefight', u'effort', u'earn', u'prais']
[u'firemen', u'rescu', u'puppi', u'storey', u'leap']
[u'rebel', u'kill', u'indonesia', u'aceh']
[u'forecast', u'agre', u'stinker']
[u'ballarat', u'player', u'win', u'brownlow']
[u'champ', u'bruno', u'take', u'psychiatr', u'hospit']
[u'french', u'plan', u'iraq', u'independ', u'unwork']
[u'gallop', u'reject', u'marina', u'rule', u'claim']
[u'latham', u'licenc', u'attack', u'campes']
[u'crean', u'poll']
[u'govt', u'consid', u'fund', u'cut', u'cull']
[u'govt', u'defend', u'spend', u'airport', u'servic']
[u'govt', u'work', u'hard', u'home', u'strand', u'sheep']
[u'visit', u'cost', u'medicar', u'chang', u'studi']
[u'green', u'reject', u'mine', u'loss', u'claim']
[u'hanson', u'ettridg', u'remain', u'jail']
[u'harrigan', u'rooster', u'bulldog', u'clash']
[u'healesvill', u'sanctuari', u'open', u'storm', u'clean']
[u'high', u'court', u'finish', u'hear', u'hanson', u'ettridg', u'appeal']
[u'high', u'court', u'hear', u'hanson', u'ettridg', u'bail', u'plea']
[u'high', u'court', u'tell', u'defici', u'ettridg']
[u'high', u'temperatur', u'prove', u'record', u'breaker']
[u'hope', u'librari', u'doubt', u'near']
[u'hostil', u'takeov', u'launch', u'wine', u'compani']
[u'hunter', u'team', u'take', u'sandpip', u'spot']
[u'hurrican', u'marti', u'hammer', u'mexico']
[u'indigen', u'group', u'fail', u'land', u'claim']
[u'inglewood', u'council', u'face', u'roadblock']
[u'inquiri', u'review', u'fix', u'speed', u'camera', u'claim']
[u'investig', u'begin', u'school', u'radiat', u'scare']
[u'iraq', u'close', u'arab', u'offic', u'spokesman']
[u'isra', u'armi', u'kill', u'hama', u'leader', u'hebron']
[u'isra', u'troop', u'kill', u'arm', u'palestinian', u'militari']
[u'italian', u'minist', u'threaten', u'match']
[u'ivori', u'coast', u'rebel', u'suspend', u'particip']
[u'hoddl']
[u'juri', u'consid', u'verdict', u'shoot', u'case']
[u'kiribati', u'budget', u'final', u'approv']
[u'largest', u'arctic', u'shelf', u'break', u'report']
[u'launceston', u'crime', u'rate', u'fall']
[u'leagu', u'legend', u'beetson', u'join', u'elit', u'group']
[u'lion', u'grand', u'final', u'underdog', u'voss']
[u'livestock', u'trade', u'decad', u'recov']
[u'malthous', u'move', u'calm', u'rocca', u'tribun', u'jitter']
[u'accus', u'petrol', u'bomb', u'attack', u'face', u'court']
[u'make', u'cyprus', u'passport', u'check']
[u'face', u'polic', u'assault', u'charg', u'breath', u'test']
[u'maoist', u'rebel', u'kill', u'nepal']
[u'mayor', u'back', u'committe', u'bakeri', u'gaff']
[u'mayor', u'urg', u'state', u'elect', u'intent']
[u'celebr', u'birthday']
[u'milosev', u'health', u'halt', u'trial', u'hear']
[u'miner', u'focus', u'samag', u'investor']
[u'minist', u'angri', u'recept', u'cours']
[u'missionari', u'killer', u'expect', u'appeal']
[u'missionari', u'killer', u'reject', u'appeal', u'option']
[u'monaro', u'power', u'plan', u'wind']
[u'land', u'releas', u'alic', u'hous']
[u'northern', u'beach', u'develop', u'come']
[u'want', u'street', u'crime', u'clean']
[u'nation', u'park', u'fell', u'kosciuszko', u'tree', u'log', u'plan']
[u'nation', u'sheep', u'number', u'lowest', u'year']
[u'nat', u'want', u'think', u'water', u'price', u'polici']
[u'name', u'chairman']
[u'grain', u'export']
[u'chairman', u'promis', u'bum', u'seat']
[u'northam', u'grain', u'grower', u'access']
[u'north', u'west', u'share', u'region', u'achiev', u'award']
[u'player', u'bodi', u'loggerhead']
[u'govt', u'tighten', u'secur', u'industri', u'control']
[u'opposit', u'defend', u'oversea', u'trip']
[u'swelter', u'record', u'septemb', u'heat']
[u'pastoralist', u'benefit']
[u'plan', u'slingshot']
[u'nurs', u'pile', u'wage', u'pressur', u'govt']
[u'oldest', u'fossil', u'modern']
[u'oneil', u'demand', u'action', u'club', u'countri', u'disgrac']
[u'creditor', u'vote', u'rescu']
[u'pere', u'tell', u'sharon', u'gaza', u'strip']
[u'petit', u'back', u'ocean', u'pool', u'push']
[u'pie', u'appeal', u'rocca']
[u'minist', u'upset', u'downer', u'fail', u'state']
[u'polic', u'consid', u'way', u'tackl', u'footbal', u'woe']
[u'polic', u'hunt', u'arm', u'bank', u'bandit']
[u'polic', u'probe', u'prison', u'stab']
[u'polic', u'search', u'miss']
[u'polic', u'urg', u'gypsi', u'joker', u'come', u'clean', u'murder']
[u'poll', u'compet', u'athen', u'reduc']
[u'poultri', u'produc', u'readi', u'fight', u'super', u'farm', u'plan']
[u'power', u'boost', u'north', u'west']
[u'princ', u'harri', u'arriv', u'australia']
[u'princ', u'harri', u'taronga']
[u'princip', u'protest', u'ax', u'news']
[u'prison', u'entri', u'societi', u'spotlight']
[u'probe', u'begin', u'gladston', u'power', u'outag']
[u'protea', u'consid', u'revis', u'pakistan', u'tour']
[u'public', u'submiss', u'consid', u'barrier', u'reef']
[u'owner', u'decis', u'return', u'card', u'applaud']
[u'puletua', u'priddi', u'panther']
[u'qanta', u'applaud', u'australia', u'singapor', u'deal']
[u'court', u'reject', u'serial', u'rapist', u'appeal', u'freedom']
[u'queanbeyan', u'mayor', u'jump', u'transport', u'bandwagon']
[u'ract', u'sell', u'insur', u'divis', u'suncorp']
[u'radiat', u'scare', u'newcastl', u'school']
[u'ravanelli', u'join', u'dunde']
[u'region', u'aust', u'subject', u'privatis']
[u'resid', u'unhurt', u'sydney', u'shoot']
[u'rivaldo', u'say', u'feel', u'humili', u'milan']
[u'rocca', u'front', u'tribun']
[u'roddick', u'fin', u'miss', u'thailand', u'open']
[u'rooster', u'sign', u'walker']
[u'ruddock', u'ignor', u'protest', u'sydney', u'parti']
[u'assur', u'interst', u'electr']
[u'bake', u'record']
[u'saudi', u'policeman', u'milit', u'dead', u'shootout']
[u'scientist', u'say', u'moggi', u'malais', u'make', u'moros']
[u'senat', u'away', u'medicar', u'overhaul']
[u'ship', u'owner', u'say', u'surviv', u'sheep', u'recov']
[u'shire', u'address', u'road', u'flood']
[u'singapor', u'say', u'standard', u'sar', u'case']
[u'springborg', u'upbeat', u'coalit', u'coast', u'chanc']
[u'storm', u'prove', u'cost', u'council']
[u'storm', u'wreak', u'havoc', u'vic', u'north', u'west']
[u'strong', u'wind', u'buffet', u'perth']
[u'studi', u'tackl', u'wide', u'hous', u'shortag']
[u'survey', u'confirm', u'darwin', u'resid', u'recycl']
[u'survey', u'find', u'major', u'sydney', u'cab', u'defect']
[u'survey', u'highlight', u'farmer', u'conserv', u'effort']
[u'sydney', u'unveil', u'power', u'upgrad']
[u'tableland', u'bushfir', u'scrutini']
[u'indigen', u'centr', u'welcom', u'land', u'transfer']
[u'tasmania', u'shift', u'rare', u'parrot', u'interst']
[u'owner', u'warn', u'napper', u'loos']
[u'teenag', u'face', u'murder', u'charg', u'babi', u'death']
[u'teen', u'gunman', u'shoot', u'polic', u'school', u'offici']
[u'teen', u'racecal', u'head', u'smoke']
[u'tender', u'chang', u'delay', u'hospit', u'revamp']
[u'road', u'titl', u'race', u'race']
[u'thousand', u'expect', u'attend', u'field', u'day']
[u'brownlow']
[u'brownlow', u'honour']
[u'toowoomba', u'play', u'role', u'hemp', u'industri']
[u'honour', u'manjimup', u'wineri']
[u'tree', u'injur', u'children', u'wind', u'storm']
[u'trio', u'work', u'cane', u'base', u'product']
[u'committe', u'studi', u'staff', u'safeti', u'iraq']
[u'look', u'forward', u'nurs', u'fund', u'boost']
[u'uni', u'brace', u'fight', u'govt', u'rule']
[u'uni', u'tell', u'meet', u'rule', u'miss', u'extra', u'fund']
[u'univers', u'pressur', u'offer', u'workplac']
[u'review', u'oper', u'baghdad', u'blast']
[u'upbeat', u'black', u'readi', u'assault']
[u'audienc', u'take', u'scari', u'movi']
[u'defend', u'troop', u'cameraman', u'death']
[u'forc', u'fallujah', u'firefight']
[u'seek', u'lake', u'manag', u'chang']
[u'air', u'fear', u'predict', u'energi', u'export', u'fall']
[u'warrior', u'unchang', u'panther', u'clash']
[u'weather', u'heat', u'quick', u'bourk']
[u'westpac', u'report', u'highlight', u'region', u'optim']
[u'woman', u'hospit', u'outback', u'ordeal']
[u'woman', u'jail', u'year', u'relat', u'death']
[u'work', u'port', u'sale', u'move', u'closer']
[u'work', u'progress', u'longreach', u'club']
[u'world', u'clear', u'franc', u'garbajosa']
[u'worst', u'surpris', u'vuelta', u'leader', u'nozal']
[u'young', u'driver', u'face', u'tougher', u'test']
[u'zimbabw', u'civic', u'group', u'seek', u'media', u'altern']
[u'abattoir', u'look', u'worker']
[u'abbott', u'criticis', u'act', u'draconian', u'manslaught']
[u'say', u'nelson', u'face', u'tough', u'educ', u'sale']
[u'adelaid', u'await', u'festiv', u'director', u'announc']
[u'africa', u'ladi', u'tackl', u'aid']
[u'agribusi', u'unit', u'approach']
[u'power', u'share', u'award']
[u'alessio', u'bow']
[u'alic', u'host', u'econom', u'growth', u'gather']
[u'black', u'haunt', u'failur']
[u'black', u'william', u'doubt']
[u'alleg', u'trouser', u'snake', u'smuggler', u'refus', u'bail']
[u'issu', u'ultimatum', u'cole', u'seal', u'section']
[u'reject', u'stanbrok', u'sale', u'collus', u'claim']
[u'annan', u'challeng', u'strike', u'doctrin']
[u'arsenal', u'chief', u'blast', u'stupid', u'player']
[u'arthur', u'draper', u'notch', u'win', u'china']
[u'auction', u'put', u'celebr', u'shoe', u'foot']
[u'aust', u'indonesia', u'work', u'bali', u'servic']
[u'australian', u'artifici', u'heart', u'trial', u'continu']
[u'australia', u'top', u'ecstasi', u'list']
[u'aust', u'secur', u'intellig', u'face', u'scrutini']
[u'bacon', u'say', u'job', u'wont', u'log', u'plan']
[u'bega', u'workcov', u'offic']
[u'biki', u'clubroom', u'head', u'upper', u'hous']
[u'seek', u'public', u'wind', u'farm', u'placement']
[u'blackpool', u'wigan', u'provid', u'surpris', u'act']
[u'brothel', u'come', u'council', u'scrutini']
[u'bruno', u'struggl', u'life', u'box']
[u'bulldog', u'need', u'motiv', u'reardon']
[u'firm', u'buy', u'fail', u'king', u'bros', u'busi']
[u'bush', u'defend', u'ask', u'help']
[u'bush', u'face', u'strong', u'critic']
[u'bush', u'lobbi', u'leader', u'resolut']
[u'busi', u'right', u'oblig', u'outlin']
[u'caffein', u'remov', u'ban', u'drug', u'list']
[u'parent', u'licens', u'children']
[u'credit']
[u'cardena', u'climb', u'victori', u'nozal', u'hold', u'lead']
[u'chirac', u'bush', u'odd', u'iraq']
[u'coconut', u'threaten', u'world', u'heritag', u'sit']
[u'commonwealth', u'reject', u'fund', u'claim']
[u'concern', u'club', u'influenc', u'small', u'rugbi', u'nation']
[u'contract', u'sign', u'age', u'care', u'develop']
[u'council', u'consid', u'flood', u'prevent', u'option']
[u'council', u'offer', u'busi', u'chamber', u'support']
[u'council', u'reject', u'hous', u'plan', u'pollut', u'fear']
[u'council', u'upbeat', u'potenti', u'energi']
[u'court', u'hand', u'dodg', u'barrist', u'hous']
[u'crean', u'pounc', u'poll']
[u'disney', u'shut', u'japan', u'anim', u'unit']
[u'dokic', u'set', u'clijster', u'clash']
[u'dollar', u'rise', u'spark', u'export', u'fear']
[u'dossier', u'phrase', u'drop', u'blair', u'aid', u'email']
[u'downer', u'defend', u'action', u'iraq']
[u'dredg', u'take', u'toll', u'river', u'seagrass']
[u'drug', u'smuggler', u'jail', u'year']
[u'educ', u'cut', u'govt', u'agenda']
[u'educ', u'minist', u'call', u'final', u'year', u'consist']
[u'european', u'util', u'deni', u'massiv', u'blackout']
[u'europ', u'bake', u'hottest', u'summer', u'year']
[u'exclus', u'zone', u'invok', u'sheep', u'shipment']
[u'councillor', u'fin', u'real', u'estat', u'secret', u'profit']
[u'farmer', u'govt', u'draft', u'live', u'sheep']
[u'govt', u'creat', u'aid', u'bodi']
[u'govt', u'urg', u'gambl', u'top']
[u'figur', u'high', u'need', u'protect']
[u'final', u'incid', u'view', u'differ']
[u'firefight', u'battl', u'heat', u'wind']
[u'fisher', u'jail', u'murray', u'theft']
[u'forum', u'examin', u'skill', u'shortag', u'scheme']
[u'geraldton', u'driver', u'scrutini']
[u'germani', u'wont', u'block', u'iraq', u'resolut', u'schroeder']
[u'creat', u'job', u'melbourn']
[u'govt', u'say', u'victim', u'offend', u'meet', u'success']
[u'govt', u'upbeat', u'sheep', u'negoti']
[u'green', u'baxter', u'detent', u'centr', u'fear']
[u'gunner', u'trial', u'trafford', u'fiasco']
[u'hagu', u'investig', u'financ', u'congo']
[u'hanson', u'ettridg', u'look', u'convict', u'appeal']
[u'hewitt', u'scud', u'confirm', u'sydney', u'intern']
[u'histor', u'farm', u'properti', u'hammer']
[u'hope', u'rugbi', u'world', u'boost', u'coast', u'tourism']
[u'husband', u'face', u'murder', u'trial']
[u'icac', u'back', u'charg', u'museum', u'theft']
[u'icac', u'call', u'charg', u'museum']
[u'indonesian', u'polic', u'search', u'readi']
[u'injuri', u'prevent', u'expert', u'highlight', u'high', u'cost']
[u'injuri', u'scar', u'victori', u'springbok']
[u'inquiri', u'consid', u'region', u'privatis', u'impact']
[u'iran', u'agent', u'charg', u'journalist', u'death', u'report']
[u'iraqi', u'govern', u'council', u'restrict', u'jazeera']
[u'irrig', u'water', u'restrict', u'respit']
[u'island', u'threaten', u'home', u'north', u'coast']
[u'isra', u'palestinian', u'team', u'tackl', u'antarctica']
[u'iverson', u'million', u'extens', u'report']
[u'plan', u'attack', u'isra', u'airlin', u'thailand']
[u'jobless', u'rate', u'fall', u'southern', u'gold', u'coast']
[u'johnson', u'fifth', u'japan']
[u'labor', u'blame', u'cwealth', u'sugar', u'industri', u'woe']
[u'labor', u'identifi', u'medicar', u'elect', u'issu']
[u'lehmann', u'board', u'toast', u'takeov']
[u'lobster', u'industri', u'consid', u'export']
[u'jail', u'child', u'crime']
[u'mayor', u'rail', u'concern', u'costa']
[u'mayor', u'fast', u'armidal', u'secur', u'plan']
[u'melbourn', u'driver', u'stop', u'work', u'delay', u'expect']
[u'meningococc', u'victim', u'expect', u'recov']
[u'worker', u'protest']
[u'minist', u'reject', u'ferri', u'claim']
[u'minist', u'stand', u'firm', u'colleg', u'decis']
[u'miss', u'crash']
[u'montoya', u'need', u'histor', u'indi']
[u'approv', u'seek', u'runway', u'extens', u'plan']
[u'question', u'ethanol', u'excis', u'claim']
[u'ponder', u'stem', u'cell', u'research', u'vote', u'loom']
[u'nasa', u'flight', u'secur', u'panel', u'quit']
[u'newcastl', u'council', u'accept', u'fort', u'plan']
[u'model', u'hospit', u'physiotherapi', u'servic']
[u'suspect', u'arrest', u'swedish', u'minist', u'murder']
[u'conflict', u'rocca', u'appeal', u'jackson']
[u'immin', u'transfer', u'sovereignti', u'foreign']
[u'govt', u'urg', u'restraint', u'schooli']
[u'island', u'home', u'save', u'bushfir']
[u'polic', u'minist', u'condemn', u'haul', u'sentenc']
[u'region', u'worker', u'job', u'review']
[u'reveal', u'revis', u'educ', u'cut']
[u'author', u'small', u'risk', u'diseas']
[u'massacr', u'mourn', u'year']
[u'number', u'south', u'east', u'valuat', u'challeng']
[u'halt', u'live', u'sheep', u'export', u'saudi', u'arabia']
[u'build', u'nuke', u'test', u'monitor', u'fiji']
[u'price', u'surg', u'opec']
[u'iraqi', u'dead', u'wound', u'explos']
[u'nation', u'say', u'membership', u'surg']
[u'pakistan', u'arrest', u'indonesian', u'suspect']
[u'palestinian', u'youth', u'kill', u'isra', u'gaza', u'incurs']
[u'backer', u'fight', u'liquid', u'decis']
[u'founder', u'drop', u'indemn', u'claim', u'save', u'bail']
[u'worker', u'pitch', u'save', u'drug', u'compani']
[u'parent', u'say', u'money', u'import', u'church', u'offer']
[u'parkway', u'fund', u'boost']
[u'pentagon', u'widen', u'guantanamo', u'search']
[u'pilbara', u'council', u'chair', u'seek', u'kalgoorli']
[u'plan', u'moot', u'underground', u'highway', u'section']
[u'plan', u'afoot', u'port', u'work']
[u'cut', u'spend', u'bank', u'stand']
[u'polic', u'bust', u'britain', u'biggest', u'drug', u'ring']
[u'polic', u'hunt', u'bank', u'bandit']
[u'polic', u'plea', u'help', u'solv', u'bowen', u'kill']
[u'polic', u'quiz', u'landhold', u'blaze']
[u'politician', u'outrag', u'illawarra', u'youth', u'jobless']
[u'portsmouth', u'mistak', u'venic', u'turner', u'work']
[u'princ', u'harri', u'start', u'jackaroo']
[u'probe', u'begin', u'polic', u'cell', u'death']
[u'protea', u'agre', u'play', u'pakistan']
[u'protest', u'ralli', u'sheep', u'export', u'compani', u'offic']
[u'public', u'urg', u'care', u'croc', u'activ']
[u'real', u'burst', u'river', u'bank', u'tribut', u'match']
[u'refuge', u'converg', u'gunnedah']
[u'rivaldo', u'tell', u'fight', u'place']
[u'rocca', u'appeal', u'board']
[u'rocca', u'grand', u'final']
[u'roddick', u'pull', u'japan', u'open']
[u'rooster', u'reject', u'earli', u'grand', u'final', u'hype']
[u'erupt', u'contract', u'worker']
[u'cathol', u'church', u'offer', u'abus', u'payout']
[u'cathol', u'church', u'offer', u'sexual', u'abus', u'victim']
[u'secker', u'stand', u'firm', u'health', u'claim']
[u'offend', u'lose', u'appeal', u'sentenc']
[u'shatter', u'rocca', u'lose', u'appeal']
[u'sixer', u'final', u'rychart']
[u'slay', u'sister', u'venus', u'serena', u'william', u'buri']
[u'solomon', u'welcom', u'revis', u'australian', u'travel', u'advic']
[u'spammer', u'predat', u'forc', u'microsoft', u'quit', u'chat']
[u'specialist', u'graduat', u'complet', u'test']
[u'stanbrok', u'sale', u'fix', u'claim', u'rival', u'bidder']
[u'streisand', u'bore', u'song']
[u'studi', u'find', u'million', u'porn', u'page', u'internet']
[u'studi', u'find', u'higher', u'cost', u'plan', u'medicar']
[u'sydney', u'festiv', u'boss', u'head', u'adelaid']
[u'sydney', u'set', u'temperatur', u'record']
[u'sydney', u'pull', u'talk', u'union']
[u'sydney', u'staff', u'strike', u'deal', u'backdown']
[u'tasmanian', u'danish', u'princess']
[u'teen', u'face', u'court', u'fatal', u'crash']
[u'teen', u'plead', u'guilti', u'muswellbrook', u'murder']
[u'teen', u'face', u'murder', u'charg', u'remain', u'custodi']
[u'teen', u'court', u'surf', u'death']
[u'thirti', u'rescu', u'melbourn', u'chairlift']
[u'thousand', u'expect', u'outback', u'festiv']
[u'milit', u'policeman', u'shoot', u'dead', u'saudi']
[u'total', u'sydney']
[u'toxic', u'flame', u'retard', u'breast', u'milk']
[u'truss', u'seek', u'meaning', u'cane', u'grower', u'talk']
[u'truss', u'urg', u'govt', u'shift', u'posit']
[u'union', u'get', u'unemploy', u'abattoir', u'worker']
[u'union', u'seek', u'differ', u'approach', u'teacher']
[u'union', u'reject', u'educ', u'dept', u'reform', u'pitch']
[u'protest', u'higher', u'educ', u'plan']
[u'unhappi', u'fund', u'catch']
[u'airman', u'charg', u'spi']
[u'clear', u'militari', u'cameraman', u'death']
[u'visitor', u'centr', u'take', u'action', u'remain', u'black']
[u'wada', u'chief', u'say', u'payer', u'face', u'anthem']
[u'farmer', u'move', u'away', u'sheep']
[u'govt', u'approv', u'controversi', u'forest', u'mine']
[u'wall', u'street', u'gain', u'buoy', u'australian', u'share', u'market']
[u'newspap', u'notic', u'worri', u'jewish', u'group']
[u'parliament', u'vote', u'embryo', u'legisl']
[u'pass', u'cannabi']
[u'warrior', u'thank', u'fan', u'free', u'ticket']
[u'water', u'restrict', u'reduc', u'daylesford']
[u'westpac', u'melbourn', u'staff']
[u'wide', u'record', u'high', u'youth', u'jobless', u'rate']
[u'wool', u'woe', u'affect', u'barcaldin']
[u'work', u'away', u'transport', u'corridor']
[u'wrong', u'weed', u'chemic', u'catch', u'council']
[u'yarram', u'get', u'buri', u'powerlin']
[u'yate', u'accept', u'garden', u'makeov', u'orica']
[u'wari', u'keep', u'market', u'quiet']
[u'york', u'park', u'kick', u'goal', u'economi']
[u'zimbabw', u'aim', u'match', u'champion', u'aussi']
[u'sheep', u'dead', u'export', u'ship', u'rspca']
[u'forest', u'start', u'work']
[u'ainsli', u'shin', u'briton', u'domin', u'world']
[u'forc', u'cadet', u'student']
[u'traffic', u'control', u'defend']
[u'alston', u'prais', u'chat', u'room', u'scrutini']
[u'antarct', u'health', u'hazard', u'space']
[u'armi', u'world', u'terrorist', u'standbi']
[u'aussi', u'team', u'name', u'triathlon', u'world']
[u'australia', u'back', u'swell', u'secur', u'council']
[u'bali', u'bomber', u'waiv', u'sentenc', u'appeal']
[u'bali', u'victim', u'afraid', u'attend', u'memori']
[u'battl', u'hot', u'lehmann']
[u'determin', u'bulli', u'iraq', u'report']
[u'beatti', u'await', u'tree', u'clear', u'deal', u'agreement']
[u'beatti', u'threaten', u'labor', u'confer', u'boycott']
[u'beazley', u'float', u'medicar', u'levi', u'rise']
[u'beij', u'set', u'alight', u'forc']
[u'billi', u'crystal', u'return', u'oscar', u'host']
[u'blanket', u'approach', u'take', u'firefight', u'safeti']
[u'blaze', u'close', u'princ', u'highway']
[u'boost', u'plan', u'rocki', u'longreach', u'servic']
[u'brack', u'beatti', u'odd', u'grand', u'final']
[u'brambl', u'announc', u'chief']
[u'brazil', u'approv']
[u'breaker', u'upbeat', u'grand', u'final', u'chanc']
[u'brisban', u'polic', u'investig', u'multipl', u'stab']
[u'break', u'hill', u'council', u'appoint', u'tourism', u'manag']
[u'bushfir', u'task', u'forc', u'wrap']
[u'bush', u'put', u'split', u'schroeder', u'past']
[u'bush', u'schroeder', u'hatchet', u'buri']
[u'cairn', u'busi', u'crime', u'bulletin']
[u'rethink', u'farmer', u'drive', u'licenc']
[u'canberra', u'arsonist', u'sentenc', u'year', u'jail']
[u'need', u'speed', u'limit', u'quick', u'research']
[u'carr', u'cut', u'tree', u'deal', u'european', u'investor']
[u'centrelink', u'southern', u'temporari', u'worker']
[u'chief', u'minist', u'prais', u'year', u'arson', u'sentenc']
[u'cole', u'myer', u'punish', u'rationalis', u'plan']
[u'collingwood', u'final', u'prepar', u'draw', u'crowd']
[u'coron', u'hand', u'find', u'jump', u'castl']
[u'council', u'confid', u'support', u'ethanol', u'plan']
[u'council', u'accept', u'riverland', u'seat', u'chang']
[u'council', u'address', u'traffic', u'snarl']
[u'council', u'welcom', u'wall', u'plan', u'crumbl']
[u'council', u'worker', u'stalem', u'continu', u'mackay']
[u'countri', u'teacher', u'wari', u'dept', u'restructur', u'plan']
[u'darwin', u'adelaid', u'rail', u'line', u'complet']
[u'defenc', u'forc', u'overse', u'world', u'secur']
[u'develop', u'buy', u'kingston', u'foreshor', u'land']
[u'doctor', u'group', u'oppos', u'relax', u'cannabi', u'law']
[u'downer', u'welcom', u'chang']
[u'drought', u'forc', u'cattl', u'sale', u'nsws']
[u'east', u'gippsland', u'burn', u'control']
[u'exmouth', u'hous', u'project', u'finish']
[u'charg', u'arsenal', u'unit', u'player']
[u'farmer', u'feder', u'urg', u'support', u'wool', u'produc']
[u'fatigu', u'caus', u'coal', u'ship', u'reef', u'crash']
[u'fear', u'educ', u'opposit', u'endang', u'teacher']
[u'fear', u'wors', u'water', u'shortag', u'loom']
[u'govt', u'ask', u'rethink', u'higher', u'educ', u'reform']
[u'govt', u'bungl', u'child', u'offend', u'extradit']
[u'govt', u'rethink', u'drought', u'applic']
[u'ferrero', u'edg', u'thailand']
[u'firefight', u'battl', u'blue', u'mountain', u'blaze']
[u'firefight', u'save', u'mount', u'burr', u'home']
[u'footi', u'fan', u'warn', u'grand', u'final', u'drink', u'drive']
[u'iraqi', u'minist', u'say', u'target', u'iraq']
[u'french', u'prop', u'marconnet', u'miss', u'fiji', u'open']
[u'fund', u'loss', u'cast', u'doubt', u'templ', u'futur']
[u'gale', u'forc', u'warn', u'wind', u'lash', u'tasmania']
[u'power', u'station', u'propon', u'plan', u'compo']
[u'geraldton', u'pair', u'run', u'busi', u'award']
[u'gold', u'coast', u'host', u'aust', u'korea', u'trade', u'talk']
[u'grass', u'name', u'like', u'surfac', u'davi', u'final']
[u'gregan', u'stay', u'brumbi']
[u'gregan', u'undecid', u'wallabi', u'futur']
[u'group', u'attack', u'oval', u'plan', u'fact']
[u'hama', u'spiritu', u'leader', u'rule', u'truce']
[u'hancock', u'heir', u'settl', u'fortun', u'disput']
[u'hantuchova', u'woe', u'continu', u'leipzig', u'defeat']
[u'hear', u'consid', u'local', u'govt', u'fund', u'formula']
[u'hillari', u'clinton', u'publish', u'seek', u'chines', u'recal']
[u'hill', u'prais', u'defenc', u'relationship', u'china']
[u'hopkin', u'get', u'hollywood', u'star']
[u'hotel', u'guard', u'kill', u'baghdad', u'bomb', u'blast']
[u'howard', u'slap', u'propos']
[u'howard', u'attend', u'bali', u'servic', u'despit', u'warn']
[u'hunter', u'household', u'ask', u'restrict', u'water']
[u'hussey', u'keen', u'stand', u'warrior']
[u'indigen', u'forum', u'consid', u'region', u'hous', u'woe']
[u'injuri', u'forc', u'villier', u'springbok', u'squad']
[u'intern', u'battl', u'threaten', u'nation']
[u'iraqi', u'politician', u'die', u'dead', u'baghdad', u'hotel']
[u'irrig', u'water', u'snowi', u'debt']
[u'israel', u'accus', u'breach', u'immun']
[u'isra', u'pilot', u'refus', u'attack', u'palestinian']
[u'italian', u'women', u'cast', u'doubt', u'latin', u'lover', u'myth']
[u'jackson', u'say', u'basketbal', u'offer', u'safe', u'grind']
[u'jaco', u'westhuyzen', u'replac', u'villier']
[u'fuel', u'shortag', u'caus', u'nation', u'flight', u'delay']
[u'kahn', u'retir', u'struggl']
[u'keeper', u'robinson', u'head', u'leed', u'salvat']
[u'kekovich', u'court', u'drink', u'drive', u'charg']
[u'kelli', u'lawyer', u'attack', u'abus', u'power']
[u'kidnap', u'tourist', u'leap', u'freedom', u'colombia']
[u'heartbeat', u'surgeri', u'recoveri', u'scheme']
[u'latif', u'quit', u'pakistan', u'cricket', u'captainci']
[u'littl', u'hope', u'beach', u'sperm', u'whale']
[u'littl', u'hope', u'remain', u'surviv', u'beach', u'whale']
[u'local', u'govt', u'degre', u'moot', u'overcom', u'staff', u'woe']
[u'magpi', u'dismiss', u'tarrant', u'injuri', u'concern']
[u'die', u'melbourn', u'stab']
[u'elud', u'polic', u'servic', u'station', u'heist']
[u'jail', u'indonesia', u'mcdonald', u'bomb']
[u'jail', u'shoot', u'girlfriend']
[u'maroochi', u'council', u'replac', u'tree']
[u'maryborough', u'face', u'water', u'ban']
[u'mayor', u'sow', u'seed', u'doubt', u'cloud', u'plan']
[u'mcgrath', u'clear', u'zimbabw', u'test', u'seri']
[u'medibank', u'privat', u'black']
[u'medibank', u'privat', u'market', u'minist']
[u'meet', u'discuss', u'tamborin', u'issu']
[u'millar', u'eas', u'memori', u'vuelta', u'protest']
[u'minist', u'reflect', u'region', u'health', u'servic']
[u'mix', u'reaction', u'educ', u'shake']
[u'mix', u'respons', u'educ', u'reform']
[u'mix', u'uefa', u'result', u'english', u'club']
[u'mobil', u'phone', u'get', u'troubl']
[u'fund', u'seek', u'save', u'indigen', u'dialect']
[u'telstra', u'worker', u'face', u'cut']
[u'mount', u'gambier', u'hospit', u'committe', u'delay']
[u'navratilova', u'surviv', u'match', u'point', u'leipzig', u'doubl']
[u'navratilova', u'target', u'olymp', u'swansong']
[u'nelson', u'dodg', u'student', u'protest']
[u'traffic', u'plan', u'danger', u'control']
[u'newcastl', u'defend', u'woodgat', u'undergo', u'hernia']
[u'dept', u'help', u'boost', u'protect', u'speci']
[u'program', u'student', u'busi', u'train']
[u'strategi', u'tackl', u'great', u'southern', u'crime']
[u'suburb', u'plan', u'sydney']
[u'nigerian', u'court', u'clear', u'woman', u'adulteri']
[u'evid', u'dope', u'cover', u'say', u'report']
[u'quick', u'high', u'youth', u'jobless', u'rate', u'abbott']
[u'word', u'closur', u'date', u'austoft', u'plant']
[u'farmer', u'plant', u'tree', u'fire', u'destroy']
[u'firefight', u'tame', u'central', u'coast', u'blaze']
[u'govt', u'accus', u'millennium', u'train', u'cover']
[u'govt', u'offer', u'lifelin', u'riverina', u'tafe']
[u'releas', u'kosciuszko', u'develop', u'plan']
[u'broadcast', u'annan', u'slur']
[u'offici', u'french', u'heatwav', u'toll', u'rais']
[u'opec', u'hit', u'share', u'market']
[u'owen', u'break', u'red', u'score', u'record']
[u'pacif', u'highway', u'reopen', u'accid']
[u'palestinian', u'milit', u'kill', u'isra', u'raid']
[u'stoush', u'head', u'court']
[u'worker', u'job', u'line']
[u'paper', u'late', u'emadvertiserem', u'plant']
[u'partnership', u'tackl', u'aborigin', u'children', u'health']
[u'perth', u'airport', u'evacu', u'rid', u'motorbik']
[u'petroleum', u'explor', u'spend', u'rise']
[u'plan', u'tafe', u'move', u'bring', u'littl', u'west', u'chang']
[u'back', u'live', u'sheep', u'export']
[u'wont', u'comment', u'weapon', u'specul']
[u'polic', u'appeal', u'melbourn', u'stab', u'wit']
[u'polic', u'clash', u'sheep', u'protest']
[u'polic', u'continu', u'investig', u'southbank', u'murder']
[u'polic', u'probe', u'hopeval', u'fatal', u'stab']
[u'polic', u'seek', u'help', u'control', u'drug', u'problem']
[u'polic', u'continu', u'attack', u'speedster']
[u'power', u'distributor', u'back', u'energi', u'effici', u'product']
[u'power', u'dump', u'veteran', u'paxman']
[u'prehistor', u'beaver', u'roam', u'wide']
[u'protest', u'live', u'sheep', u'export', u'continu']
[u'public', u'urg', u'minimis', u'grass', u'risk']
[u'tourism', u'target', u'interst', u'relat']
[u'quak', u'monitor', u'focus', u'central']
[u'real', u'skipper', u'raul', u'doubt', u'valencia', u'clash']
[u'region', u'airport', u'protest', u'traffic']
[u'report', u'highlight', u'tourism', u'growth']
[u'rest', u'garcia', u'readi', u'texa', u'open']
[u'rocca', u'grand', u'final']
[u'rock', u'collect', u'list', u'endang']
[u'rooki', u'walker', u'replac', u'rocca']
[u'rooster', u'relax', u'favourit']
[u'seek', u'support', u'veteran', u'carer']
[u'rumsfeld', u'ask', u'congress', u'iraq']
[u'russian', u'paper', u'play', u'card', u'game']
[u'schumach', u'go', u'record', u'sixth', u'crown']
[u'scientist', u'focus', u'fix', u'ballast', u'water', u'woe']
[u'scud', u'fire', u'china']
[u'search', u'fail', u'noosa', u'river', u'croc']
[u'secur', u'guard', u'attack', u'break', u'hill', u'abattoir']
[u'shop', u'hold', u'sale', u'closur']
[u'sheep', u'protest', u'move', u'portland', u'feedlot']
[u'sheep', u'ship', u'stand', u'continu', u'victoria']
[u'ship', u'sink', u'month', u'away']
[u'shire', u'chief', u'warn', u'risk', u'forest']
[u'spur', u'bounc', u'hoddl', u'sack']
[u'storm', u'caus', u'huge', u'blackout', u'tasmania']
[u'student', u'govt', u'mistak', u'labor']
[u'sydney', u'resid', u'face', u'fin', u'water', u'wast']
[u'taliban', u'leader', u'renew', u'jihad']
[u'tamworth', u'public', u'urg', u'sign', u'slim', u'dusti']
[u'traffic', u'control', u'criticis', u'control']
[u'priest', u'say', u'parliament', u'prayer', u'outdat']
[u'turn', u'public', u'carer', u'benefit', u'fight']
[u'plan', u'resurrect', u'news']
[u'tension', u'eas', u'alcohol', u'restrict']
[u'tourism', u'group', u'unhappi', u'committe', u'chang']
[u'kill', u'mosul', u'cinema', u'blast']
[u'uruguay', u'replac', u'injur', u'lock', u'olivera']
[u'control', u'join', u'disput', u'airspac']
[u'court', u'hang', u'anti', u'telemarket', u'list']
[u'detain', u'iraqi', u'journalist']
[u'exoner', u'soldier', u'shoot', u'iraqi']
[u'troop', u'kill', u'rebel', u'north', u'iraq']
[u'vanston', u'opposit', u'student']
[u'varieti', u'club', u'bash']
[u'mortgag', u'broker', u'jail', u'fraud']
[u'reservist', u'head', u'intern', u'train']
[u'watchdog', u'delay', u'commerci', u'radio', u'licenc']
[u'watchdog', u'delay', u'qanta', u'merger', u'decis']
[u'water', u'dri', u'north', u'coast']
[u'wine', u'crush', u'vintag', u'look', u'good']
[u'wilki', u'say', u'border', u'protect', u'ineffect']
[u'woman', u'face', u'attempt', u'murder', u'charg']
[u'million', u'year', u'fossil', u'western']
[u'govt', u'minist', u'fail', u'support', u'local', u'airlin']
[u'activist', u'stop', u'live', u'sheep', u'export']
[u'africa', u'anglican', u'council', u'elect', u'anti', u'head']
[u'airlin', u'fight', u'fuel', u'shortag']
[u'airlin', u'resolv', u'lack', u'emerg', u'pacif', u'runway']
[u'traffic', u'control', u'chang']
[u'black', u'rare', u'manag']
[u'armi', u'tackl', u'soldier', u'suicid']
[u'athen', u'shoot', u'rais', u'olymp', u'secur', u'fear']
[u'atsic', u'sport', u'award', u'seek', u'nomin']
[u'attack', u'shut', u'anti', u'spam', u'websit']
[u'audit', u'reveal', u'need', u'council', u'spend']
[u'australian', u'canadian', u'hold', u'question', u'aceh']
[u'australia', u'face', u'sweden', u'davi']
[u'australia', u'farewel', u'slim', u'dusti']
[u'australia', u'fund', u'disast', u'relief', u'pacif']
[u'babi', u'die', u'suspect', u'meningococc', u'diseas']
[u'bali', u'support', u'group', u'organis', u'say', u'anniversari']
[u'beatti', u'launch', u'domest', u'tourism', u'push']
[u'british', u'singer', u'robert', u'palmer', u'die']
[u'british', u'soldier', u'die', u'iraqi', u'firearm', u'incid']
[u'break', u'hill', u'council', u'demand', u'govt', u'return', u'fuel']
[u'break', u'hill', u'repres', u'nuclear', u'wast']
[u'bush', u'warn', u'iran', u'uranium']
[u'busi', u'welcom', u'park', u'boost']
[u'educ', u'symptom', u'stroke']
[u'canegrow', u'consid', u'help', u'mackay', u'sugar', u'refineri']
[u'canegrow', u'upbeat', u'incom', u'support', u'deal']
[u'carer', u'warn', u'loom', u'strike']
[u'carr', u'want', u'chang', u'travel']
[u'children', u'injur', u'roller', u'coaster', u'accid']
[u'chines', u'airlin', u'set', u'cours', u'melbourn']
[u'coron', u'set', u'date', u'leski', u'inquest']
[u'council', u'concern', u'pool', u'construct', u'cost']
[u'countri', u'music', u'legend', u'farewel']
[u'court', u'delay', u'move', u'deport', u'iranian']
[u'croc', u'attack', u'kakadu', u'tour', u'guid']
[u'crude', u'price', u'stay', u'high', u'opec']
[u'doubl', u'murder', u'sentenc', u'life', u'prison', u'term']
[u'downer', u'disappoint', u'iraq', u'pull']
[u'dunni', u'trot', u'outback']
[u'earthquak', u'japan']
[u'east', u'timor', u'indict', u'crime', u'human']
[u'economist', u'modigliani', u'dead']
[u'educ', u'dept', u'bathurst', u'job', u'safe']
[u'elect', u'surgeri', u'cut', u'wagga', u'push']
[u'english', u'premier', u'leagu', u'preview']
[u'essendon', u'bendigo', u'deal', u'continu']
[u'prodi', u'face', u'grill', u'eurostat', u'fraud']
[u'extrem', u'wind', u'alp', u'derail', u'chair', u'lift']
[u'fall', u'export', u'blame', u'support', u'iraq']
[u'fan', u'heaven', u'mildura', u'music', u'festiv']
[u'fan', u'forc', u'grand', u'final', u'parad']
[u'farmer', u'cast', u'doubt', u'plan', u'wind', u'farm', u'site']
[u'farmer', u'lay', u'poultri', u'regul', u'fear']
[u'farmer', u'urg', u'govt', u'land', u'offer']
[u'govt', u'reject', u'ballarat', u'jobless', u'rate', u'claim']
[u'govt', u'urg', u'boost', u'region', u'fund']
[u'feyenoord', u'hamburg', u'bordeaux', u'notch', u'uefa', u'win']
[u'field', u'highlight', u'sustain', u'farm']
[u'film', u'maker', u'focus', u'cowra', u'breakout', u'documentari']
[u'firefight', u'battl', u'gippsland', u'blaze']
[u'fire', u'close', u'main', u'highway', u'south', u'east']
[u'contest', u'katherin', u'elect']
[u'flight', u'delay', u'amid', u'fuel', u'shortag']
[u'fli', u'scot', u'stewart', u'honour']
[u'footi', u'fever', u'hit', u'remot']
[u'minist', u'claim', u'govt', u'polici', u'damag']
[u'fuel', u'shortag', u'bring', u'flight', u'delay']
[u'fund', u'boost', u'greener', u'fish', u'industri']
[u'german', u'polic', u'smash', u'onlin', u'child', u'porn', u'ring']
[u'ghan', u'steve', u'irwin', u'loco', u'bring', u'tourist']
[u'govt', u'defend', u'rule']
[u'govt', u'appeas', u'mudge', u'meatwork']
[u'hambali', u'brother', u'admit', u'involv', u'offici']
[u'henin', u'hardenn', u'clijster', u'germani']
[u'hill', u'happi', u'interim', u'murray']
[u'hope', u'tourist', u'drink', u'wine', u'tourism', u'push']
[u'stuff', u'yate', u'stay', u'cool', u'scotland']
[u'michael', u'schumach', u'titl']
[u'illeg', u'fire', u'earn', u'jail', u'fin']
[u'injur', u'anderson', u'miss', u'bangladesh', u'test']
[u'inter', u'wari', u'bogey', u'team']
[u'investig', u'probe', u'caus', u'south', u'coast', u'fire']
[u'investor', u'toast', u'lehmann', u'bid']
[u'inzamam', u'lead', u'pakistan']
[u'israel', u'renew', u'blockad', u'ahead', u'jewish', u'year']
[u'japan', u'clean', u'power', u'quak']
[u'fuel', u'shortag', u'problem']
[u'judg', u'renew', u'child', u'detaine', u'releas']
[u'kempsey', u'fan', u'tribut', u'slim', u'dusti']
[u'lappin', u'come', u'final', u'session']
[u'chanc', u'futur', u'darwin', u'harbour']
[u'trobe', u'fear', u'lose', u'student', u'place']
[u'legal', u'tactic', u'charg', u'sept']
[u'lion', u'fan', u'arriv', u'enemi', u'territori']
[u'lion', u'turn', u'spotlight', u'injur', u'lappin']
[u'lion', u'turn', u'spotlight', u'lappin']
[u'lismor', u'koala', u'plan', u'open', u'public']
[u'lobbi', u'group', u'consid', u'wivenho', u'plan']
[u'charg', u'perth', u'airport', u'bomb', u'scare']
[u'die', u'shop', u'stab']
[u'plead', u'guilti', u'credit', u'card', u'fraud']
[u'plead', u'guilti', u'year', u'crime']
[u'matilda', u'dream', u'aliv']
[u'mccartney', u'starr', u'come', u'harrison', u'film']
[u'montoya', u'say', u'titl', u'victori']
[u'age', u'care', u'fund', u'central']
[u'mortar', u'strike', u'kill', u'near', u'baghdad', u'report']
[u'gambier', u'businessman', u'firm', u'win', u'adelaid', u'darwin']
[u'bodi', u'replac', u'soccer', u'australia']
[u'collect', u'bargain', u'law', u'favour', u'govt', u'doctor']
[u'databas', u'help', u'cattl', u'gene', u'studi']
[u'law', u'cross', u'safer']
[u'strand', u'wheat', u'diseas']
[u'deal', u'load', u'sheep', u'govt']
[u'north', u'coast', u'resid', u'face', u'water']
[u'palestinian', u'advoc', u'edward', u'say', u'die']
[u'paradorn', u'bangkok']
[u'parti', u'play', u'latest', u'poll']
[u'perth', u'intern', u'cancel', u'open', u'postpon']
[u'plan', u'begin', u'avoid', u'basketbal', u'traffic', u'woe']
[u'polic', u'close', u'vandal']
[u'polic', u'probe', u'perth', u'airport', u'drama']
[u'poor', u'respons', u'telstra', u'sale', u'submiss']
[u'powel', u'plan', u'deadlin', u'iraqi', u'constitut']
[u'power', u'research', u'rock', u'innamincka']
[u'power', u'station', u'plan', u'boost', u'colli', u'job']
[u'princ', u'highway', u'remain', u'close', u'gippsland']
[u'public', u'feedback', u'seek', u'land', u'issu', u'plan']
[u'qanta', u'appeal', u'accc', u'decis']
[u'critic', u'ruddock', u'attack', u'court']
[u'govt', u'consid', u'leas', u'renew']
[u'pub', u'face', u'bing', u'drink', u'fin']
[u'quandamooka', u'welcom', u'bonner', u'elector']
[u'rain', u'help', u'south', u'west', u'dam', u'rise']
[u'rain', u'need', u'bumper', u'crop']
[u'record', u'septemb', u'loom', u'newcastl']
[u'reef', u'accid', u'blame', u'deregul']
[u'replenish', u'murray', u'river', u'report']
[u'republican', u'endors', u'arni', u'california']
[u'resid', u'metal', u'recycl', u'plan', u'fear']
[u'tip', u'unit', u'form', u'boy', u'setttl']
[u'road', u'closur', u'bring', u'emerg', u'servic', u'assur']
[u'roller', u'coaster', u'accid', u'land', u'children']
[u'rooster', u'bulldog', u'clash', u'sell']
[u'samoa', u'hooker', u'call', u'black', u'help', u'pacif']
[u'scud', u'arthur', u'draper', u'shanghai']
[u'sexual', u'assault', u'studi', u'centr', u'open', u'melbourn']
[u'shane', u'kelli', u'train', u'crash']
[u'share', u'market', u'retreat', u'stock', u'fall']
[u'judg', u'face', u'polit']
[u'sixer', u'finalis', u'rychart', u'deal']
[u'soccer', u'australia', u'wind']
[u'socceroo', u'moor', u'face', u'wait', u'ger', u'armband']
[u'solomon', u'econom', u'plan', u'criticis']
[u'south', u'burnett', u'hospit', u'turn', u'earli', u'profit']
[u'spanish', u'journeyman', u'celebr', u'career', u'best']
[u'sponsor', u'warn', u'england', u'tour', u'zimbabw']
[u'lanka', u'sign', u'darwin', u'cairn', u'test']
[u'state', u'forest', u'back', u'carbon', u'trade', u'scheme']
[u'strand', u'sheep', u'head', u'iraq']
[u'strand', u'sheep', u'buy']
[u'student', u'play', u'skate', u'park', u'plan']
[u'super', u'chicken', u'farm', u'propon', u'reject', u'claim']
[u'survey', u'target', u'beachgoer', u'view', u'artifici', u'reef']
[u'face', u'hous', u'arrest', u'hospit', u'discharg']
[u'talk', u'focus', u'futur', u'plan', u'health', u'centr']
[u'chees', u'giant', u'go']
[u'green', u'seek', u'remov', u'lord', u'prayer']
[u'tassi', u'motorist', u'stay', u'close', u'home']
[u'head', u'attack', u'educ', u'packag']
[u'temporari', u'drive', u'permit', u'possibl', u'struggl']
[u'thousand', u'converg', u'henti', u'field', u'day']
[u'total', u'ban', u'lift', u'north', u'coast']
[u'tway', u'slocum', u'share', u'texa', u'lead', u'baddeley']
[u'charg', u'tewantin', u'murder']
[u'pull', u'staff', u'iraq']
[u'energi', u'group', u'sell', u'australian', u'asset']
[u'soldier', u'kill', u'grenad', u'attack']
[u'sprinter', u'young', u'lose', u'sydney', u'gold']
[u'test', u'launch', u'unman', u'plan', u'south']
[u'valencia', u'real', u'madrid', u'titl', u'hop', u'risk']
[u'cyclist', u'wilson', u'suspend', u'test']
[u'virus', u'decim', u'tassi', u'icon', u'bedevil', u'scientist']
[u'cabinet', u'seek', u'region', u'develop', u'issu']
[u'govt', u'jarrah', u'industri']
[u'groceri', u'industri', u'join', u'nation', u'code', u'review']
[u'minist', u'criticis', u'govt', u'airport', u'secur']
[u'wastewat', u'help', u'save', u'cane', u'crop']
[u'wenger', u'sorri', u'media', u'blame']
[u'whale', u'carcass', u'chainsaw', u'beach']
[u'whale', u'die', u'beach']
[u'white', u'star', u'win', u'black', u'music', u'award']
[u'dog', u'man', u'best', u'friend']
[u'wildcat', u'grab', u'import', u'rawl']
[u'wineri', u'approv', u'kalgoorli', u'site']
[u'say', u'project', u'add', u'job']
[u'worker', u'safeti', u'reduc', u'roster', u'lyell']
[u'zimbabw', u'charg', u'unlicens', u'journalist']
[u'forc', u'home', u'owner', u'grant']
[u'centuri', u'tablet', u'lead', u'lose', u'archiv']
[u'peopl', u'evacu', u'indian', u'landslid']
[u'afghan', u'cuban', u'moroccan', u'russian', u'journalist']
[u'afghan', u'mosqu', u'southern', u'manhattan', u'world']
[u'aftershock', u'japanes', u'island']
[u'algerian', u'armi', u'kill', u'islam', u'rebel', u'report']
[u'qaeda', u'wipe', u'need', u'help', u'afghan']
[u'architect', u'engin', u'rais', u'concern', u'perth']
[u'assassin', u'iraqi', u'politician', u'buri', u'najaf']
[u'kill', u'ivori', u'coast', u'rebel', u'battl']
[u'australian', u'coupl', u'detain', u'aceh']
[u'ayatollah', u'khomeini', u'grandson', u'call']
[u'baddeley', u'slump', u'texa']
[u'baghdad', u'hotel', u'attack', u'fallujah', u'death']
[u'battl', u'gunner', u'beat', u'newcastl']
[u'beatti', u'defend', u'govt', u'final']
[u'best', u'dress', u'socialit', u'charg', u'shoplift']
[u'bewar', u'strength', u'england', u'forward']
[u'billycart', u'racer', u'gear', u'championship']
[u'brisban', u'share', u'grand', u'final', u'fever']
[u'brisban', u'step', u'bushfir', u'prevent', u'measur']
[u'bush', u'putin', u'talk', u'continu', u'camp', u'david']
[u'canada', u'plan', u'special', u'generic', u'drug', u'africa']
[u'clark', u'lead', u'singh']
[u'clijster', u'set', u'reveng', u'match', u'myskina']
[u'cordial', u'maker', u'take', u'legal', u'action', u'koola', u'flavour']
[u'crack', u'ground', u'qanta', u'jet']
[u'dead', u'clash', u'continu', u'iraq']
[u'dean', u'join', u'kerri', u'seek', u'rumsfeld', u'resign']
[u'dent', u'thailand', u'final']
[u'display', u'help', u'peopl', u'differenti', u'frog', u'toad']
[u'evid', u'help', u'polic', u'crimin']
[u'duke', u'energi', u'consid', u'option']
[u'dummi', u'bid', u'imposs', u'stamp', u'expert']
[u'england', u'pressur', u'zimbabw', u'tour']
[u'famili', u'rememb', u'victim', u'cliff', u'collaps']
[u'famili', u'heartbreak', u'matilda', u'garriock']
[u'fan', u'face', u'tough', u'choic', u'grand', u'final']
[u'fan', u'hail', u'grand', u'final', u'wild', u'weather', u'forecast']
[u'fan', u'roll', u'earli', u'grand', u'final']
[u'financi', u'control', u'win', u'qlds', u'businesswoman']
[u'crew', u'close', u'blue', u'mountain', u'blaze']
[u'situat', u'worsen', u'north', u'coast']
[u'fittler', u'play', u'grudg', u'hype']
[u'green', u'leader', u'cynic', u'wood', u'centr']
[u'franc', u'debat', u'euthanasia', u'quadripleg', u'die']
[u'french', u'centr', u'euthanasia', u'debat', u'die']
[u'frenchman', u'deal', u'mockeri', u'card', u'pack']
[u'futur', u'darwin', u'health', u'clinic', u'uncertain']
[u'gidley', u'kangaroo', u'squad']
[u'grand', u'final', u'boost', u'voss']
[u'grand', u'final', u'boost', u'voss']
[u'green', u'water', u'tank', u'guidelin', u'chang']
[u'gunman', u'kill', u'isra', u'jewish', u'year']
[u'helen', u'troy', u'film', u'halt', u'hurrican', u'marti']
[u'holiday', u'spot', u'mobil', u'breath', u'test']
[u'indonesian', u'offic', u'want', u'timor', u'murder']
[u'indonesia', u'releas', u'australian', u'coupl', u'aceh']
[u'iraqi', u'shiit', u'criticis', u'deadlin']
[u'iraq', u'coverag', u'come', u'scrutini', u'media']
[u'japan', u'pie', u'love', u'fan', u'high', u'price']
[u'crack', u'pose', u'threat', u'passeng', u'safeti']
[u'katherin', u'candid', u'outlin', u'platform']
[u'kyli', u'minogu', u'get', u'threaten', u'letter', u'report']
[u'lappin', u'line', u'lion']
[u'launch', u'nigeria', u'satellit', u'saturday']
[u'lifesav', u'championship', u'hold']
[u'lion', u'captur', u'premiership', u'trick']
[u'lion', u'fan', u'gather', u'cheer', u'team']
[u'lion', u'head', u'straight', u'flag']
[u'lion', u'lead', u'quarter', u'time']
[u'lion', u'track', u'trick']
[u'ljubic', u'end', u'paradorn', u'thai', u'dream']
[u'local', u'rugbi', u'leagu', u'player', u'fin', u'steal']
[u'lonhro', u'firm', u'plate', u'favourit']
[u'arrest', u'murder', u'swedish', u'foreign']
[u'charg', u'latham', u'robberi']
[u'die', u'servic', u'station', u'incid']
[u'hospitalis', u'crash']
[u'kill', u'brutal', u'stab', u'attack']
[u'medibank', u'hospit', u'contract', u'plan']
[u'milan', u'releas', u'brazil', u'world', u'winner', u'rivaldo']
[u'minist', u'concern', u'traffic', u'control']
[u'miss', u'woman', u'bushland']
[u'montoya', u'pile', u'pressur', u'schu', u'qualifi']
[u'american', u'drop', u'poverti', u'line']
[u'multicultur', u'group', u'unhappi', u'premier']
[u'mysteri', u'surround', u'grand', u'final', u'line']
[u'alert', u'warn', u'potenti', u'threat', u'ship']
[u'zealand', u'broadcast', u'pressur', u'resign']
[u'conspiraci', u'latif', u'resign', u'inzamam']
[u'cultur', u'gift', u'display', u'japan']
[u'nurs', u'home', u'kill', u'injur']
[u'ogradi', u'leav', u'credit', u'agricol', u'cofidi']
[u'distributor', u'promis', u'repeat', u'fuel']
[u'injur', u'miss', u'japan', u'quak']
[u'oversea', u'market', u'close', u'week', u'slight']
[u'pakistan', u'arrest', u'pair', u'hashish']
[u'panther', u'charg', u'club', u'million', u'game']
[u'panther', u'charg', u'club', u'million', u'game']
[u'panther', u'chief', u'defend', u'busi', u'deal']
[u'parliament', u'open', u'cambodia']
[u'partygo', u'seek', u'meningococc', u'diseas']
[u'pavarotti', u'cost', u'concert', u'cancel']
[u'pentagon', u'tap', u'soldier', u'iraq']
[u'philippoussi', u'arthur', u'fall', u'china']
[u'daughter', u'wed']
[u'polit', u'fear', u'threaten', u'cultur', u'toler']
[u'pope', u'readi', u'appoint', u'cardin']
[u'power', u'restor', u'custom']
[u'princ', u'highway', u'reopen']
[u'princ', u'highway', u'reopen', u'bushfir']
[u'putin', u'bush', u'begin', u'talk', u'camp', u'david']
[u'govt', u'support', u'rspca', u'effort']
[u'rain', u'disrupt', u'start', u'zealand', u'india', u'tour']
[u'roman', u'gladiatori', u'combat', u'site', u'unearth', u'spain']
[u'rooster', u'dog', u'reach', u'decid']
[u'rooster', u'dog', u'reach', u'grand', u'final']
[u'royal', u'palac', u'warn', u'stay', u'away', u'harri']
[u'safeti', u'inspector', u'order', u'closur', u'mous']
[u'schole', u'leicest', u'return']
[u'scud', u'arthur', u'shanghai', u'semi']
[u'second', u'teen', u'charg', u'internet', u'virus']
[u'sheep', u'crisi', u'damag', u'intern', u'reput']
[u'ride', u'take', u'apart', u'accid']
[u'simeoni', u'sprint', u'victori', u'spain']
[u'situat', u'iraq', u'improv', u'downer', u'say']
[u'citi', u'council', u'receiv', u'develop', u'grant']
[u'sponsor', u'slam', u'port', u'clear']
[u'lankan', u'leader', u'vow', u'reviv', u'peac', u'talk']
[u'sukarnoputri', u'meet', u'kadhafi', u'discuss']
[u'begin', u'hous', u'arrest', u'call', u'mount']
[u'teen', u'death', u'kimberley', u'link', u'petrol', u'sniff']
[u'game', u'stop', u'nation']
[u'face', u'drug', u'charg', u'gold', u'coast']
[u'iraqi', u'dead', u'gunfir', u'hospit']
[u'kill', u'injur', u'train', u'blast', u'ethiopia']
[u'unit', u'tabl', u'spirit']
[u'univers', u'close', u'smoker']
[u'kill', u'stamped', u'ivori', u'coast', u'rebel']
[u'ambassador', u'saudi', u'arabia', u'step']
[u'say', u'work', u'detail', u'north', u'korea', u'plan']
[u'sport', u'writer', u'georg', u'plimpton', u'die']
[u'venezuela', u'term', u'presidenti', u'vote']
[u'veteran', u'pakistani', u'opposit', u'leader', u'die', u'age']
[u'violenc', u'flare', u'ivori', u'coast']
[u'wallabi', u'darwin', u'test', u'injur', u'knee']
[u'warmer', u'weather', u'stir', u'snake', u'action']
[u'waugh', u'rafter', u'sign', u'webber', u'tassi', u'endur']
[u'woman', u'die', u'newcastl', u'collis']
[u'woman', u'remain', u'hospit', u'accid']
[u'africa', u'prioritis', u'fight', u'poverti']
[u'agassi', u'withdraw', u'european', u'event']
[u'agent', u'warn', u'auction', u'rental', u'properti']
[u'pollut', u'educ', u'program', u'scrap']
[u'algerian', u'armi', u'kill', u'islamist', u'search']
[u'brush', u'suggest', u'disun']
[u'presidenti', u'candid', u'present', u'case']
[u'angel', u'flight', u'reunit', u'young', u'girl', u'die']
[u'armour', u'track', u'texa', u'titl']
[u'bali', u'memori', u'unveil', u'sydney']
[u'barrichello', u'eye', u'trick']
[u'bomb', u'explod', u'pakistan']
[u'brazil', u'invest', u'cuban', u'tourism', u'industri']
[u'brazil', u'play', u'jamaica', u'england']
[u'britain', u'appoint', u'black', u'polic', u'chief']
[u'bush', u'say', u'world', u'safer', u'saddam']
[u'cancer', u'patient', u'win', u'case', u'insur', u'compani']
[u'chechen', u'condit', u'food']
[u'chines', u'fishermen', u'save', u'down', u'taiwan', u'fighter', u'pilot']
[u'chines', u'restaur', u'order', u'million', u'fire']
[u'collingwood', u'fan', u'stick', u'team']
[u'costello', u'expect', u'ongo', u'budget', u'commit', u'iraq']
[u'costello', u'releas', u'budget', u'result', u'week']
[u'counter', u'terror', u'forc', u'readi']
[u'crean', u'meet', u'indonesian', u'leader']
[u'cwealth', u'accus', u'bias', u'victoria']
[u'darwin', u'student', u'fine', u'tune', u'solar', u'race', u'entri']
[u'defenc', u'forc', u'stag', u'anti', u'terror', u'exercis']
[u'doctor', u'ralli', u'medic', u'insur', u'levi']
[u'drink', u'measur', u'german', u'beer', u'festiv']
[u'duntroon', u'hous', u'open', u'public']
[u'electr', u'fault', u'delay', u'qanta', u'flight']
[u'european', u'commiss', u'approv', u'plan', u'improv']
[u'europ', u'mission', u'moon']
[u'europ', u'moon', u'mission', u'begin']
[u'expert', u'say', u'plan', u'flaw']
[u'famili', u'escap', u'hous']
[u'ferrero', u'skip', u'australian', u'open']
[u'fierc', u'rival', u'draw', u'leed', u'leagu']
[u'fighter', u'crash', u'bahrain']
[u'refineri', u'quak', u'aftershock', u'japan']
[u'corner', u'founder', u'die']
[u'franc', u'blame', u'swiss', u'italian', u'powerlin', u'blackout']
[u'german', u'film', u'win', u'honour', u'spanish', u'festiv']
[u'germani', u'recov', u'ruben', u'paint']
[u'harri', u'break', u'beatti']
[u'greenpeac', u'wrangl', u'indian', u'port', u'block', u'entri']
[u'gregan', u'say', u'wallabi', u'readi', u'peak']
[u'hera', u'tour', u'spain', u'victori']
[u'high', u'court', u'justic', u'kirbi', u'win', u'human', u'right', u'award']
[u'hollywood', u'entertain', u'donald', u'oconnor', u'die']
[u'injuri', u'beat', u'clijster', u'germani']
[u'input', u'seek', u'subantarct', u'wilder', u'plan']
[u'iranian', u'kill', u'rare', u'crocodil', u'attack']
[u'iran', u'rule', u'compromis', u'uranium', u'enrich']
[u'italian', u'blackout', u'cut', u'short', u'rome', u'night', u'parti']
[u'jordan', u'arrest', u'islamist', u'fugit']
[u'lappin', u'hospit', u'punctur', u'lung']
[u'larg', u'cach', u'weapon', u'near', u'saddam', u'hometown']
[u'life', u'save', u'societi', u'forc', u'increas', u'class', u'fee']
[u'lion', u'continu', u'grand', u'final', u'celebr']
[u'lion', u'join', u'immort']
[u'lion', u'parti', u'melbourn', u'fan']
[u'malaysia', u'mahathir', u'retir', u'report']
[u'maloney', u'steer', u'marconi', u'victori']
[u'die', u'retir', u'villag']
[u'kill', u'domest', u'disput', u'polic']
[u'marconi', u'defeat', u'wollongong', u'striker', u'draw']
[u'maroon', u'australian', u'sailor', u'escort', u'aceh']
[u'meteor', u'caus', u'panic', u'east', u'india']
[u'meteorit', u'probabl', u'space', u'junk', u'astronom']
[u'moder', u'quak', u'hit', u'china', u'eastern', u'damag']
[u'nepal', u'maoist', u'insurg', u'despit', u'truce']
[u'nation', u'park', u'reopen', u'januari', u'bushfir']
[u'natur', u'project', u'caus', u'polit', u'rift']
[u'negoti', u'continu', u'sheep', u'shipment']
[u'reconcili', u'communiti', u'group', u'form']
[u'injur', u'accid']
[u'snail', u'pace', u'britain', u'eurostar', u'train']
[u'regret', u'iraq', u'blair', u'insist']
[u'worri', u'montoya', u'final', u'loom']
[u'servic', u'prepar', u'worsen', u'condit']
[u'nurs', u'shortag', u'forc', u'medic', u'centr', u'cancel']
[u'obasanjo', u'say', u'exil', u'liberian', u'leader', u'face', u'trial']
[u'palac', u'confirm', u'princ', u'harri', u'outback']
[u'panther', u'warrior', u'date', u'rooster']
[u'pell', u'cardin']
[u'perth', u'showcas', u'lesbian', u'cultur']
[u'philippoussi', u'beat', u'novak', u'shanghai']
[u'plan', u'macquari', u'open', u'public', u'comment']
[u'court', u'investig', u'elect']
[u'policeman', u'bite', u'arrest']
[u'polic', u'question', u'teen', u'kempsey', u'bushfir']
[u'polic', u'unhappi', u'number', u'drink', u'driver']
[u'power', u'return', u'itali']
[u'public', u'health', u'confer', u'focus', u'prevent']
[u'putin', u'bush', u'warn', u'north', u'korea', u'iran', u'nuclear', u'program']
[u'raikkonen', u'pole', u'put', u'heat', u'titl', u'rival']
[u'roman', u'cultur', u'marathon', u'play', u'million']
[u'rooster', u'answer', u'critic', u'stuart']
[u'russian', u'peacekeep', u'kidnap', u'georgia', u'offici']
[u'russia', u'ask', u'fight', u'forc', u'afghanistan']
[u'ruud', u'claim', u'trick', u'demolish', u'leicest']
[u'councillor', u'want', u'legal', u'drive', u'lift']
[u'scud', u'crush', u'novak', u'collect', u'shanghai', u'crown']
[u'secur', u'exercis', u'kick', u'brisban']
[u'fighter', u'tackl', u'blaze']
[u'steal', u'burn', u'buffalo', u'creek']
[u'sudan', u'say', u'kenya', u'talk', u'basi', u'last', u'peac']
[u'team', u'begin', u'work', u'olymp', u'truce']
[u'thousand', u'demonstr', u'switzerland']
[u'thousand', u'expect', u'welcom', u'home', u'triumphant', u'lion']
[u'thousand', u'march', u'iraq', u'occup']
[u'thousand', u'welcom', u'lion', u'gabba']
[u'truck', u'lose', u'load', u'north', u'adelaid']
[u'counti', u'fair', u'add', u'spice', u'road', u'kill', u'cook']
[u'probe', u'fallujah', u'shoot', u'missil']
[u'valencia', u'beat', u'real', u'spain']
[u'virgin', u'blue', u'tran', u'tasman', u'sevic']
[u'virgin', u'talli', u'cost', u'fuel', u'shortag']
[u'volunt', u'join', u'search', u'miss', u'spear', u'fisherman']
[u'westwood', u'take', u'flight', u'albatross']
[u'wind', u'eas', u'fighter', u'continu', u'battl']
[u'win', u'beatti', u'put', u'lion', u'brack', u'face']
[u'send', u'understrength', u'juve', u'seri', u'summit']
[u'woman', u'injur', u'smash', u'tree']
[u'women', u'world', u'quarter', u'clearer']
[u'worksaf', u'employ', u'staff', u'member']
[u'cannabi', u'thief', u'convict', u'assault']
[u'hop', u'complet', u'burn']
[u'actu', u'prais', u'decis', u'replac', u'abbott']
[u'stag', u'train', u'exercis', u'sydney']
[u'traffic', u'control', u'condemn', u'flight', u'rule']
[u'qaeda', u'tape', u'urg', u'musharraf', u'remov']
[u'armour', u'take', u'texa', u'titl', u'baddeley', u'fifth']
[u'dead', u'iran', u'coach', u'crash']
[u'atsic', u'welcom', u'indigen', u'minist']
[u'attempt', u'child', u'abduct', u'spark', u'polic', u'warn']
[u'author', u'meningococc', u'outbreak']
[u'babi', u'surviv', u'firebomb', u'attack']
[u'bali', u'bomb', u'accomplic', u'lengthi', u'jail', u'sentenc']
[u'ballarat', u'council', u'give', u'reason', u'mall']
[u'basslink', u'group', u'question', u'rise', u'cost']
[u'beatti', u'urg', u'media', u'princ', u'harri', u'breath']
[u'crowd', u'flock', u'countri', u'music', u'gather']
[u'blaze', u'spark', u'nation', u'park', u'closur']
[u'brit', u'die', u'visit', u'great', u'barrier', u'reef']
[u'break', u'hill', u'aliv', u'festiv', u'end', u'high', u'note']
[u'brown', u'quit', u'bulldog']
[u'chang', u'liquor', u'regul']
[u'china', u'probe', u'japanes', u'mass', u'orgi']
[u'chopra', u'hit', u'centuri', u'draw', u'tour', u'game']
[u'accus', u'outdat', u'iraq', u'intellig']
[u'club', u'offer', u'right', u'ingredi', u'learn']
[u'coff', u'harbour', u'doctor', u'anti', u'levi', u'push']
[u'colombian', u'bomb', u'blast', u'kill']
[u'colt', u'outlast', u'valley', u'score', u'grand', u'final']
[u'council', u'hear', u'detail', u'cheaper', u'pool']
[u'defenc', u'expert', u'predict', u'darwin', u'armi', u'cutback']
[u'deficit', u'result', u'hint', u'export', u'recoveri']
[u'dent', u'shock', u'ferrerro', u'thailand', u'final']
[u'dinosaur', u'claw', u'unearth']
[u'director', u'elia', u'kazan', u'die']
[u'doubt', u'cast', u'woodchip', u'futur']
[u'driver', u'warn', u'care', u'road', u'toll', u'rise']
[u'back', u'plan', u'veget', u'regul']
[u'dutch', u'mount', u'rescu', u'oper', u'trap', u'worker']
[u'econom', u'stabil', u'civil', u'secur', u'expert']
[u'egyptian', u'presid', u'urg', u'greater', u'polit', u'freedom']
[u'sweeten', u'surpris', u'canegrow']
[u'endur', u'athlet', u'jail', u'month', u'stalk']
[u'say', u'mussel', u'outbreak']
[u'etsa', u'probe', u'south', u'eastern', u'blackout']
[u'fairfax', u'bid', u'text', u'media']
[u'famili', u'chase', u'victim', u'call', u'inquiri']
[u'farmer', u'group', u'reject', u'call', u'live', u'anim', u'trade']
[u'farmer', u'consult', u'rural', u'crime', u'crackdown']
[u'fear', u'air', u'ental', u'hous', u'delay']
[u'fiji', u'coup', u'leader', u'call', u'return', u'indian']
[u'firefight', u'investig', u'possibl', u'arson', u'near']
[u'fire', u'blaze', u'coast']
[u'warn', u'continu']
[u'flag', u'lower', u'rememb', u'fall', u'polic']
[u'forecast', u'rain', u'prompt', u'warn', u'grape', u'grower']
[u'french', u'face', u'corrupt', u'trial']
[u'bottl', u'blast', u'wake', u'resid']
[u'girdler', u'surpris', u'panther', u'progress']
[u'glori', u'snatch', u'late', u'victori']
[u'gold', u'coast', u'long', u'time', u'short', u'film']
[u'govt', u'eye', u'chang', u'anim', u'export', u'trade']
[u'govt', u'speed', u'harbour', u'dredg', u'studi']
[u'govt', u'urg', u'reject', u'jervi', u'potenti']
[u'green', u'condemn', u'hunter', u'valley', u'power', u'station']
[u'guid', u'map', u'wagga', u'tourism', u'spot']
[u'guinea', u'bissau', u'swear', u'interim', u'leader', u'coup']
[u'harrigan', u'award', u'decid']
[u'health', u'author', u'unhappi', u'draft', u'budget']
[u'hera', u'triumph', u'tour', u'spain']
[u'lift', u'build', u'insur']
[u'honour', u'south', u'east', u'film', u'maker']
[u'hospit', u'reach', u'fundrais', u'target']
[u'hospit', u'revamp', u'delay', u'boost', u'cost']
[u'howard', u'credibl', u'iraq', u'look', u'threadbar']
[u'icac', u'recommend', u'charg', u'integr']
[u'enter', u'discount', u'fuel', u'busi']
[u'india', u'claim', u'milit', u'kill', u'kashmir', u'border']
[u'indigen', u'centr', u'confid', u'land', u'hand']
[u'indigen', u'women', u'protest', u'nuclear', u'dump', u'plan']
[u'industri', u'unrest', u'loom', u'west', u'wimmera', u'health']
[u'investor', u'ask', u'consid', u'salmon', u'float']
[u'iran', u'stick', u'nuclear', u'program']
[u'iran', u'suspend', u'lead', u'reformist', u'daili']
[u'iraqi', u'offici', u'escap', u'assassin', u'attempt']
[u'boat', u'smash', u'wave', u'sydney', u'harbour']
[u'kangaroo', u'selector', u'snub', u'anasta']
[u'kelli', u'make', u'histori', u'nation']
[u'kempsey', u'meet', u'discuss', u'crescent', u'head', u'plan']
[u'kemp', u'review', u'reef', u'zone', u'plan']
[u'lang', u'park', u'world', u'oneil']
[u'lappin', u'join', u'lion', u'ticker', u'tape', u'parad']
[u'levi', u'plan', u'push', u'doctor', u'say']
[u'lion', u'coach', u'expect', u'player', u'exodus']
[u'lion', u'enjoy', u'earn', u'rest']
[u'lisbi', u'trick', u'stun', u'liverpool']
[u'bad', u'burn', u'caravan', u'blaze']
[u'hospit', u'melbourn', u'stab']
[u'hospit', u'sydney', u'stab']
[u'face', u'charg', u'station', u'theft']
[u'court', u'fatal', u'crash']
[u'march', u'honour', u'fall', u'polic']
[u'matilda', u'confid', u'ahead', u'ghana', u'clash']
[u'matilda', u'crash', u'world']
[u'megawati', u'cancel', u'crean']
[u'melbourn', u'charg', u'doubl', u'murder']
[u'melbourn', u'prepar', u'intern', u'race']
[u'melbourn', u'wrap']
[u'mine', u'end', u'cumnock', u'coal']
[u'rain', u'need', u'lift', u'restrict']
[u'ask', u'apologis', u'farm', u'claim']
[u'mudge', u'mayor', u'stand', u'amidst', u'meatwork', u'woe']
[u'myskina', u'upset', u'henin', u'hardenn', u'leipzig', u'final']
[u'cardin', u'glanc']
[u'darwin', u'polic', u'station', u'terrorist', u'target']
[u'decis', u'pan', u'product', u'licenc']
[u'shire', u'go', u'nut', u'safeti', u'net']
[u'hold', u'terrorist', u'detent', u'meet']
[u'maintain', u'credit', u'rat']
[u'push', u'club', u'law']
[u'diabet', u'studi', u'nation', u'standard']
[u'govt', u'screen', u'tender', u'public', u'hous']
[u'worksaf', u'employ', u'staff', u'member']
[u'dead', u'wound', u'train', u'crash', u'germani']
[u'kill', u'injur', u'south', u'shoot']
[u'opera', u'hous', u'anti', u'protest', u'court']
[u'pakistan', u'zimbabw', u'commonwealth', u'group']
[u'palestinian', u'group', u'mark', u'intifada', u'anniversari']
[u'panther', u'play']
[u'paper', u'consid', u'basin', u'resourc', u'manag']
[u'pell', u'elev', u'cardin', u'get', u'mix', u'reaction']
[u'platypi', u'swim', u'grand', u'final']
[u'forese', u'pacif', u'intervent']
[u'unveil', u'widerang', u'ministeri', u'reshuffl']
[u'polic', u'probe', u'paraburdoo', u'death']
[u'polic', u'drink', u'drive', u'messag', u'get']
[u'port', u'piri', u'child', u'lead', u'level', u'high']
[u'poll', u'card', u'access']
[u'probe', u'begin', u'fatal', u'chopper', u'crash']
[u'probe', u'launch', u'sawmil', u'blaze']
[u'puma', u'arriv', u'australia']
[u'push', u'save', u'uni', u'enrol', u'place']
[u'qanta', u'appeal', u'deal']
[u'qanta', u'flight', u'abort', u'adelaid']
[u'qanta', u'patrick', u'ansett', u'asset']
[u'appeal', u'travel', u'insur', u'rule']
[u'polic', u'seiz', u'illeg', u'tobacco']
[u'queensland', u'licenc', u'digit']
[u'reconcili', u'group', u'call', u'indigen', u'studi']
[u'report', u'say', u'poor', u'crush', u'high', u'rent']
[u'reshuffl', u'wont', u'chang', u'elect', u'posit']
[u'residenti', u'develop', u'get', u'green', u'light']
[u'rio', u'arrest', u'clash', u'polic']
[u'rooster', u'rest', u'decid']
[u'rspca', u'happi', u'progress', u'palm', u'hors']
[u'russia', u'undecid', u'kyoto', u'treati']
[u'indigen', u'forum', u'discuss', u'nuclear', u'dump']
[u'schumach', u'win', u'grand', u'prix']
[u'scientist', u'urg', u'aust', u'sign', u'climat', u'chang']
[u'search', u'find', u'bodi', u'miss', u'snorkler']
[u'secur', u'drill', u'continu', u'sydney']
[u'servic', u'hold', u'mark', u'polic', u'remembr']
[u'scheme', u'prompt', u'region', u'teacher', u'fear']
[u'share', u'fall', u'market', u'retreat']
[u'sheep', u'remain', u'strand', u'persian', u'gulf']
[u'shop', u'worker', u'stab', u'hold']
[u'singleton', u'run', u'adelaid', u'radio', u'licenc']
[u'struggl', u'farmer', u'seek', u'chariti']
[u'sorenstam', u'claim', u'fifth', u'season']
[u'southbank', u'safe', u'despit', u'stab', u'polic']
[u'sponsor', u'pull', u'plug', u'tvnz', u'racist', u'remark']
[u'starter', u'fire', u'game', u'newcastl']
[u'stronger', u'hast', u'water', u'restrict', u'come']
[u'sunscreen', u'wont', u'guard', u'fulli', u'melanoma', u'studi']
[u'sunshin', u'coast', u'gear', u'welcom', u'home', u'world', u'champ']
[u'surf', u'lifesav', u'secur', u'insur', u'cover']
[u'sydney', u'airport', u'fuel', u'suppli', u'remain', u'tight']
[u'tableland', u'fire', u'claim', u'home']
[u'taiwanes', u'presid', u'push', u'constitut']
[u'tamworth', u'rememb', u'fall', u'polic']
[u'tenni', u'great', u'gibson', u'die', u'age']
[u'tergat', u'set', u'marathon', u'mark']
[u'rock', u'north', u'american', u'offic']
[u'tourism', u'boost', u'tweed']
[u'press', u'say', u'princ', u'harri', u'aussi', u'media']
[u'offici', u'educ', u'inquiri']
[u'union', u'upbeat', u'teacher', u'disput', u'resolut']
[u'soldier', u'kill', u'iraq', u'militari']
[u'soldier', u'wound', u'fallujah', u'attack', u'militari']
[u'send', u'fresh', u'troop', u'iraq', u'bomb', u'wind']
[u'tri', u'media', u'exposur', u'sell', u'iraq', u'fund']
[u'villasanti', u'join', u'kangaroo', u'squad']
[u'warrior', u'langer', u'drop']
[u'water', u'restrict', u'loom', u'wilcannia']
[u'welfar', u'group', u'say', u'rent', u'squeez']
[u'westwood', u'edg', u'link', u'victori']
[u'worker', u'intervent', u'corpor', u'sale']
[u'world', u'oldest', u'die']
[u'youth', u'club', u'plan', u'begin']
[u'academ', u'highlight', u'reef', u'zone', u'benefit']
[u'account', u'turn', u'spotlight', u'club']
[u'franc', u'form', u'europ', u'biggest', u'airlin']
[u'franc', u'launch', u'takeov']
[u'alston', u'tightlip', u'futur']
[u'altern', u'freight', u'road', u'serv', u'dual', u'purpos']
[u'arab', u'countri', u'iraqi', u'independ']
[u'armi', u'clear', u'soldier', u'east', u'timor', u'crime']
[u'australia', u'japan', u'strengthen', u'defenc', u'tie']
[u'australia', u'move', u'right', u'direct', u'sledg']
[u'beachley', u'target', u'surf', u'titl', u'lead']
[u'belgium', u'polic', u'free', u'supermarket', u'hostag']
[u'bemax', u'post', u'bigger', u'year', u'loss']
[u'crowd', u'expect', u'elmor', u'field', u'day']
[u'blair', u'escap', u'iraq', u'vote']
[u'bodi', u'minefield', u'greec', u'turkey', u'border']
[u'brack', u'shrug', u'impact', u'compani', u'legal', u'claim']
[u'brisban', u'honour', u'lion', u'tripl', u'treat']
[u'brisban', u'brown', u'cop', u'grand', u'final', u'charg']
[u'british', u'explor', u'conquer', u'south', u'pole']
[u'briton', u'break', u'atlant', u'balloon', u'record']
[u'bush', u'miss', u'burgeon', u'health', u'sector']
[u'polic', u'sydney', u'rout']
[u'campaign', u'aim', u'reduc', u'petrol', u'sniff', u'woe']
[u'canadian', u'compani', u'abandon', u'methanol', u'plant']
[u'cane', u'toad', u'reach', u'darwin', u'outskirt']
[u'child', u'detent', u'appeal', u'reach', u'high', u'court']
[u'china', u'prepar', u'astronaut', u'man', u'launch']
[u'cobar', u'council', u'oppos', u'prime', u'plan']
[u'colombian', u'rebel', u'claim', u'tourist', u'kidnap']
[u'communiti', u'ralli', u'school', u'open']
[u'conneri', u'leav', u'mark', u'london', u'premier']
[u'council', u'confirm', u'threat', u'mall', u'fund']
[u'council', u'lobbi', u'road', u'transport', u'boost']
[u'council', u'reject', u'develop', u'plan']
[u'council', u'set', u'sail', u'town', u'squar', u'plan']
[u'council', u'talk', u'mall', u'futur']
[u'council', u'wont', u'specul', u'nois', u'affect', u'home']
[u'court', u'approv', u'stanbrok', u'sale']
[u'crean', u'extend', u'indonesia', u'visit', u'meet', u'presid']
[u'crikey', u'croc', u'hunter', u'consid', u'move', u'brisban']
[u'crock', u'beck', u'real', u'squad']
[u'darwin', u'barrist', u'head', u'council']
[u'darwin', u'confer', u'focus', u'northern', u'secur']
[u'democrat', u'phase', u'livestock', u'export']
[u'dino', u'discoveri', u'promis', u'thing']
[u'drug', u'council', u'reject', u'needl', u'exchang', u'claim']
[u'econom', u'recoveri', u'forecast', u'south', u'pacif']
[u'england', u'paceman', u'johnson']
[u'english', u'premiership', u'star', u'gang', u'rape', u'probe']
[u'esso', u'blast', u'compo']
[u'extra', u'bledislo', u'test', u'rat', u'oneil']
[u'fals', u'paper', u'clear', u'detent', u'centr']
[u'famili', u'farm', u'forum', u'prove', u'popular']
[u'ferrari', u'fear', u'schu', u'titl']
[u'firefight', u'save', u'home', u'blaze']
[u'fire', u'burn', u'northern', u'tableland']
[u'fish', u'club', u'upset', u'rise']
[u'florida', u'citi', u'tri', u'block', u'concert', u'suicid', u'plan']
[u'french', u'corrupt', u'trial']
[u'highway', u'crash']
[u'frost', u'toll', u'hunter', u'vineyard']
[u'frost', u'take', u'toll', u'riverland', u'grape']
[u'fund', u'doubt', u'gladston', u'child', u'support', u'servic']
[u'furyk', u'lead', u'latest', u'matchplay', u'withdraw']
[u'german', u'doctor', u'investig', u'earli', u'death']
[u'glitter', u'spectacl', u'promis', u'open']
[u'good', u'rain', u'give', u'perth', u'dam']
[u'govt', u'agenc', u'promis', u'scheme', u'fight', u'petrol']
[u'govt', u'reveal', u'larger', u'expect', u'surplus']
[u'govt', u'bank', u'offer', u'abattoir', u'fund']
[u'govt', u'boost', u'polic', u'protect', u'lawsuit']
[u'govt', u'urg', u'probe', u'fals', u'passport', u'claim']
[u'greater', u'push', u'boost', u'geraldton', u'mine']
[u'green', u'industri', u'committe', u'fear']
[u'group', u'claim', u'intimid', u'fight', u'stop']
[u'group', u'lament', u'loss', u'indigen', u'youth', u'scheme']
[u'group', u'loggerhead', u'forest', u'map']
[u'grudg', u'saracen', u'free', u'fijian', u'lock', u'duti']
[u'hegarti', u'fitzgibbon', u'rooster', u'train']
[u'hera', u'drop', u'rank', u'despit', u'vuelta']
[u'high', u'water', u'requir', u'fourth']
[u'highway', u'smash', u'toll', u'revis']
[u'hondo', u'doubt', u'test', u'report']
[u'hostag', u'hold', u'belgian', u'supermarket']
[u'indigen', u'highlight', u'smoke', u'threat']
[u'indonesian', u'peopl', u'smuggl', u'continu', u'wilki']
[u'rate', u'hike', u'predict']
[u'investig', u'inspect', u'fatal', u'chopper', u'crash', u'site']
[u'iraqi', u'offici', u'escap', u'possibl', u'assassin']
[u'rais', u'year', u'australia', u'terror', u'expert']
[u'kangaroo', u'captain', u'steven', u'carey', u'talk']
[u'labor', u'call', u'minist', u'scalp', u'sheep', u'ship']
[u'lake', u'boga', u'inflow', u'complet']
[u'lappin', u'join', u'lion', u'ticker', u'tape', u'parad']
[u'launceston', u'council', u'question', u'commerci', u'rat']
[u'leagu', u'grand', u'final', u'erupt', u'violenc']
[u'legless', u'rivaldo', u'wont', u'home', u'newcastl']
[u'life', u'save', u'group', u'need', u'insur', u'lifelin']
[u'liquid', u'appoint', u'cootamundra', u'insur', u'firm']
[u'lose', u'mountain', u'save', u'flash', u'rescuer']
[u'compani', u'say', u'ruin', u'excis']
[u'maher', u'confirm', u'open']
[u'charg', u'year', u'murder']
[u'charg', u'tourist', u'rape', u'face', u'committ']
[u'wound', u'melbourn', u'shoot']
[u'mayor', u'call', u'lethal', u'inject', u'drug', u'user']
[u'meet', u'aim', u'resolv', u'endeavour', u'disput']
[u'melbourn', u'shoot', u'victim', u'lucki', u'surviv']
[u'melbourn', u'stab', u'rais', u'safeti', u'concern']
[u'jail', u'qaeda', u'anti', u'nato', u'plot']
[u'minist', u'upbeat', u'jail', u'rehab', u'centr', u'benefit']
[u'miss', u'safe', u'port', u'stephen', u'search']
[u'mobil', u'recept', u'improv', u'snowi']
[u'mock', u'plane', u'crash', u'readi', u'rescu', u'crew']
[u'world', u'ticket', u'releas', u'australian', u'fan']
[u'mountain', u'hera', u'best']
[u'content', u'forgo', u'promot']
[u'welcom', u'gear', u'fight', u'terror']
[u'musicmatch', u'wad', u'onlin', u'music', u'market']
[u'nat', u'policeman', u'contest', u'seat']
[u'navi', u'captur', u'indonesian', u'fish', u'boat']
[u'niger', u'suspend', u'radio', u'station', u'regul']
[u'nomin', u'close', u'panther', u'advisori', u'board']
[u'north', u'delight', u'promot']
[u'north', u'west', u'motocross', u'rider', u'qualifi', u'nation']
[u'hop', u'minist', u'tractabl', u'jail', u'jam']
[u'tuckshop', u'face', u'high', u'sugar']
[u'doctor', u'welcom', u'abbott', u'appoint']
[u'korea', u'cast', u'doubt', u'fresh', u'talk']
[u'object', u'rais', u'coal', u'hous']
[u'dead', u'injur', u'kashmir']
[u'soldier', u'kill', u'miss', u'iraq']
[u'parent', u'warn', u'terrain', u'bike', u'danger']
[u'buy', u'burswood', u'casino', u'stake']
[u'petit', u'call', u'commerci', u'station']
[u'tip', u'hard', u'fight', u'poll']
[u'polic', u'drug', u'charg', u'raid']
[u'polic', u'festiv', u'weekend', u'arrest']
[u'polic', u'paus', u'rememb', u'fall', u'colleagu']
[u'polic', u'respect', u'fall', u'colleagu']
[u'polic', u'probe', u'solar', u'panel', u'theft']
[u'polic', u'uncov', u'record', u'ecstasi', u'haul']
[u'port', u'back', u'embattl', u'william']
[u'probe', u'launch', u'leak']
[u'problem', u'devonport', u'countri', u'music', u'festiv']
[u'project', u'town', u'centr', u'brand']
[u'promin', u'muslim', u'charg', u'libya', u'link']
[u'puma', u'talk', u'australia', u'upset', u'chanc']
[u'putin', u'indecis', u'threaten', u'kyoto', u'treati']
[u'putin', u'kyoto', u'pressur', u'compani']
[u'govt', u'reject', u'indigen', u'steal', u'wag', u'claim']
[u'govt', u'urg', u'boost', u'reef', u'pest', u'fund']
[u'rain', u'damag', u'crop', u'western']
[u'rare', u'hop', u'mous', u'discov']
[u'resourc', u'media', u'stock', u'nudg', u'market', u'higher']
[u'resurg', u'westwood', u'jump', u'place', u'world']
[u'retail', u'turnov', u'continu', u'rise']
[u'riverina', u'chariti', u'ride', u'near']
[u'roger', u'guess', u'game', u'continu']
[u'rooster', u'panther', u'unchang', u'team']
[u'rooster', u'play', u'best', u'gower']
[u'rural', u'doctor', u'abbott', u'despit', u'nurs', u'comment']
[u'govt', u'get', u'grant', u'region']
[u'mayor', u'condemn', u'drug', u'addict', u'death']
[u'school', u'canteen', u'put', u'hospit']
[u'schumach', u'threshold', u'great']
[u'schwarzenegg', u'popular', u'soar', u'ballot', u'near']
[u'scientist', u'hand', u'foot', u'mouth']
[u'scotland', u'readi', u'feel', u'heat', u'queensland']
[u'scud', u'continu', u'streak', u'tokyo']
[u'search', u'continu', u'miss', u'rock', u'climber']
[u'search', u'wine', u'chief']
[u'self', u'proclaim', u'princ', u'face', u'fraud', u'trial']
[u'servic', u'honour', u'fall', u'polic']
[u'seven', u'year', u'jail', u'stab', u'death']
[u'indian', u'separatist', u'violenc']
[u'snorkel', u'death', u'sadden', u'ambul', u'servic']
[u'solomon', u'militari', u'mission', u'costello']
[u'space', u'stay', u'show', u'mar']
[u'spaniard', u'face', u'grass', u'court', u'ordeal', u'melbourn']
[u'strand', u'sheep', u'come', u'home']
[u'strike', u'disrupt', u'caledoni', u'flight']
[u'suspend', u'sentenc', u'theft', u'assault', u'charg']
[u'sydney', u'airport', u'fuel', u'shortag', u'investig']
[u'sydney', u'plead', u'guilti', u'lane', u'cover', u'murder']
[u'talli', u'quit', u'footbal']
[u'tanzania', u'crash', u'kill', u'polic']
[u'govt', u'urg', u'improv', u'crisi', u'accommod']
[u'tassi', u'gold', u'town', u'celebr', u'fluorid']
[u'thousand', u'turn', u'lion', u'homecom', u'parad']
[u'thredbo', u'disast', u'prompt', u'tighter', u'develop', u'polici']
[u'tighter', u'water', u'restrict', u'possibl', u'river']
[u'time', u'run', u'rate', u'instal']
[u'seed', u'schalken', u'crash', u'kremlin']
[u'tougher', u'water', u'restrict', u'boonah', u'shire']
[u'tourist', u'kill', u'minibus', u'crash']
[u'town', u'score', u'premiership', u'trick']
[u'transport', u'worker', u'threaten', u'action', u'safeti']
[u'tuross', u'head', u'surfer', u'win', u'section']
[u'climber', u'miss']
[u'muslim', u'jail', u'honour', u'kill', u'daughter']
[u'polic', u'arrest', u'anti', u'terror', u'law']
[u'cut', u'iraq', u'staff']
[u'envoy', u'arriv', u'burma', u'mission']
[u'envoy', u'tri', u'free']
[u'staff', u'nation', u'strike', u'vote']
[u'staff', u'vote', u'hour', u'strike']
[u'unsecur', u'creditor', u'accept', u'nardel', u'offer']
[u'uproar', u'suggest', u'unintellig']
[u'person', u'spend', u'make', u'gain']
[u'pull', u'troop', u'liberia']
[u'soldier', u'kill', u'wound', u'afghan', u'battl']
[u'vandal', u'blame', u'phone', u'troubl']
[u'vanston', u'appoint', u'snub', u'mansel', u'say']
[u'vcat', u'find', u'hotel', u'plan', u'charact', u'port']
[u'wagga', u'club', u'protest', u'poki', u'plan']
[u'govt', u'plan', u'live', u'anim', u'trade', u'overhaul']
[u'wall', u'street', u'ralli', u'tech', u'sale']
[u'rock', u'climber', u'rescu']
[u'word', u'erupt', u'timber', u'industri']
[u'water', u'polic', u'surburb', u'tomorrow']
[u'weld', u'raider', u'arriv', u'spring', u'carniv']
[u'white', u'hous', u'deni', u'leak']
[u'wool', u'grower', u'urg', u'join', u'poll']
[u'yeppoon', u'host', u'nation', u'salin', u'confer']
[u'mildura', u'medic', u'school', u'open']
[u'accc', u'take', u'properti', u'develop', u'court']
[u'govt', u'keep', u'preschool', u'open', u'despit']
[u'agreement', u'environment', u'effici', u'motor']
[u'imron', u'seek', u'presidenti', u'clemenc']
[u'petit', u'seek', u'medicar', u'boost']
[u'analyst', u'urg', u'polic', u'boost', u'south', u'pacif']
[u'anarchist', u'group', u'claim', u'olymp', u'citi', u'bomb', u'attack']
[u'armstrong', u'inspir', u'drive', u'franc', u'marsh']
[u'ashcroft', u'hang', u'boot']
[u'atsic', u'boss', u'vision', u'account', u'futur']
[u'aussi', u'dollar', u'surg', u'wake', u'surplus']
[u'aussi', u'china', u'remain', u'highlight', u'world']
[u'australia', u'warn', u'greater', u'movement', u'peopl']
[u'award', u'golden', u'quest', u'disoveri', u'trail']
[u'award', u'recognis', u'cop', u'effort']
[u'bali', u'bomb', u'wors']
[u'bar', u'sato', u'take', u'hospit', u'test', u'crash']
[u'bathurst', u'ralli', u'poker', u'machin']
[u'bathurst', u'ralli', u'poki', u'plan']
[u'bedevil', u'diseas', u'prompt']
[u'averag', u'rainfal', u'central']
[u'bennett', u'expect', u'retir']
[u'blast', u'wound', u'southern', u'india']
[u'brazilian', u'long', u'jumper', u'dope']
[u'british', u'high', u'court', u'end', u'embryo']
[u'british', u'newspap', u'editor', u'quit']
[u'brown', u'bear', u'prepar', u'cross', u'countri', u'trip']
[u'bumper', u'harvest', u'expect', u'frost', u'stay', u'away']
[u'bumpi', u'ride', u'camel', u'export']
[u'burswood', u'casino', u'share', u'switch', u'hand']
[u'cairn', u'council', u'warn', u'water', u'restrict']
[u'cairn', u'magistr', u'jail', u'illeg', u'fishermen']
[u'footbal', u'racism']
[u'camel', u'trade', u'live', u'export', u'slow']
[u'cattl', u'council', u'hop', u'verdict', u'clear']
[u'cattl', u'produc', u'worri', u'return', u'sheep']
[u'cerebr', u'palsi', u'leagu', u'unhappi', u'court', u'outcom']
[u'chamber', u'air', u'cultur', u'centr', u'park', u'worri']
[u'chang', u'charg', u'mackay', u'dump']
[u'charg', u'drop', u'fatal', u'road', u'accid', u'case']
[u'charl', u'darwin', u'staff', u'join', u'nation', u'strike']
[u'charlevill', u'pay', u'tribut', u'slim', u'dusti']
[u'chelsea', u'struggl', u'languag', u'barrier']
[u'construct', u'talk', u'swim', u'centr', u'sack']
[u'consum', u'confid', u'slump', u'weigh', u'wall']
[u'coria', u'qualifi', u'master']
[u'cost', u'cut', u'kindergarten', u'plan']
[u'councillor', u'reject', u'mayor', u'lethal', u'inject']
[u'council', u'move', u'croc', u'hunter', u'sunshin', u'coast']
[u'council', u'presid', u'lament', u'methanex', u'pull']
[u'council', u'ask', u'push', u'road', u'fund']
[u'countri', u'beat', u'citi', u'hous', u'boom']
[u'court', u'hear', u'know', u'friend', u'drug', u'problem']
[u'court', u'hear', u'workmat', u'kill', u'claim']
[u'crash', u'chopper', u'take', u'away', u'inspect']
[u'crean', u'prais', u'trip', u'despit', u'fail', u'meet', u'megawati']
[u'croc', u'chemistri', u'help', u'cairn', u'clash']
[u'csiro', u'research', u'seek', u'salt', u'resist', u'wheat']
[u'cure', u'tassi', u'devil', u'cancer', u'year', u'away']
[u'democrat', u'fail', u'independ', u'probe', u'white']
[u'democrat', u'upbeat', u'crown', u'leas', u'support']
[u'develop', u'plan', u'vacant', u'land', u'rate', u'rise']
[u'drought', u'relief', u'extend', u'riverina', u'farmer']
[u'east', u'timor', u'call', u'foreign', u'invest']
[u'elton', u'john', u'furnitur', u'sale', u'smash', u'expect']
[u'condit', u'support', u'increas']
[u'expand', u'line']
[u'famili', u'protest', u'inquest', u'locat']
[u'farmer', u'look', u'heaven', u'rain']
[u'father', u'argentin', u'footbal', u'kidnap']
[u'fear', u'upgrad', u'cost']
[u'govt', u'tackl', u'region', u'salin']
[u'govt', u'welcom', u'khmer', u'roug', u'retrial']
[u'femal', u'atsic', u'commission', u'quit', u'women', u'post']
[u'fergi', u'world', u'highest', u'pay', u'manag']
[u'figur', u'highlight', u'rainfal', u'variat']
[u'figur', u'home', u'safe']
[u'file', u'share', u'group', u'unit', u'agre', u'code', u'conduct']
[u'forest', u'mine', u'plan', u'spark', u'indigen', u'fear']
[u'kill', u'hunter', u'valley', u'crash']
[u'frustrat', u'jobless', u'riot', u'baghdad']
[u'gazza', u'tri', u'arab', u'emir']
[u'gippsland', u'firm', u'look', u'share', u'game', u'benefit']
[u'girl', u'hospit', u'snake', u'attack']
[u'glass', u'ceil', u'hold', u'women', u'report']
[u'govt', u'plan', u'fatti', u'food', u'school']
[u'govt', u'deni', u'blame', u'wool', u'plant', u'closur']
[u'group', u'seek', u'princ', u'highway', u'fund', u'pledg']
[u'high', u'court', u'prize', u'award']
[u'homecom', u'canada', u'aussi', u'connect']
[u'hop', u'airport', u'secur', u'reduc', u'terror', u'risk']
[u'hospit', u'staff', u'counsel', u'babi', u'death']
[u'hous', u'retail', u'figur', u'stand', u'good', u'stead']
[u'howard', u'want', u'higher', u'rate', u'threshold']
[u'hydro', u'power', u'station', u'greenhous']
[u'india', u'hope', u'australia', u'boycott']
[u'inquiri', u'tell', u'reform', u'hardest']
[u'inter', u'juve', u'roll', u'gunner', u'stumbl']
[u'investig', u'begin', u'fatal']
[u'launch', u'young', u'probe']
[u'iraqi', u'offici', u'predict', u'constitut', u'year']
[u'say', u'help', u'pacif', u'player', u'problem']
[u'ireland', u'fear', u'backlash', u'rank']
[u'irish', u'readi', u'fight', u'wound', u'anim']
[u'israel', u'arrest', u'islam', u'jihad', u'head']
[u'time', u'ecuadorian', u'prompt']
[u'japan', u'show', u'sign', u'econom', u'recoveri']
[u'joint', u'tafeuni', u'fine', u'art', u'degre', u'consid']
[u'juri', u'consid', u'evid', u'sibl', u'kill', u'case']
[u'king', u'island', u'milk', u'fail', u'year']
[u'labor', u'call', u'independ', u'militari', u'investig']
[u'langer', u'commit', u'ryder', u'captainci']
[u'laport', u'readi', u'campaign']
[u'larkham', u'warn', u'dirti', u'puma']
[u'leas', u'sign', u'second', u'race', u'track']
[u'legal', u'storm', u'brew', u'nelson', u'develop']
[u'lifesav', u'need', u'day']
[u'local', u'govt', u'review', u'finish', u'year']
[u'logbook', u'lead', u'polic', u'lose', u'hiker']
[u'love', u'dump', u'martyn', u'return']
[u'excis', u'consum', u'hard', u'retail', u'say']
[u'accus', u'pose', u'femal', u'doctor']
[u'jail', u'internet', u'child', u'porn']
[u'set', u'alight', u'tiananmen', u'squar']
[u'manslaught', u'case', u'enter', u'final', u'stag']
[u'manufactur', u'survey', u'show', u'product', u'job']
[u'pose', u'doctor', u'charg', u'fraud']
[u'market', u'surviv', u'wall', u'street', u'jitter']
[u'martyn', u'tip', u'test', u'recal']
[u'mayor', u'plan', u'special', u'welcom', u'world', u'champ']
[u'mayor', u'meet', u'lobbi', u'rail', u'fund']
[u'mccafferti', u'plan', u'rout']
[u'medic', u'indemn', u'claim', u'surgeon']
[u'melbourn', u'nation', u'tour']
[u'melbourn', u'flinder', u'street', u'makeov']
[u'methanex', u'pull', u'news', u'roebourn']
[u'north', u'coast', u'join', u'poki', u'protest']
[u'milk', u'flow', u'stop', u'king', u'compani']
[u'minist', u'confid', u'beat', u'nat', u'contend']
[u'academ', u'staff', u'deakin']
[u'secur', u'check', u'introduc', u'airport']
[u'moroccan', u'twin', u'jail', u'extrem', u'plot']
[u'continu', u'fenc', u'plan']
[u'murder', u'backpack', u'father', u'welcom', u'trial']
[u'murphi', u'injuri', u'blow', u'liverpool']
[u'murray', u'studi', u'hop', u'boost', u'number']
[u'chang', u'australia', u'oldest', u'woodchip']
[u'nat', u'renam', u'confus']
[u'cours', u'launch', u'aborigin', u'busi', u'leader']
[u'general', u'manag', u'snowi', u'council']
[u'boy', u'adelaid', u'sign', u'spree']
[u'club', u'hold', u'ralli', u'protest', u'poki', u'hike']
[u'buyback', u'kick']
[u'south', u'east', u'caravan', u'park', u'sweep', u'award']
[u'treasur', u'unmov', u'poki', u'protest']
[u'govt', u'plan', u'servic']
[u'booz', u'credit']
[u'basketbal', u'team', u'win', u'start']
[u'breaker', u'win', u'start']
[u'nation', u'senat', u'oppos', u'plan']
[u'open', u'resist', u'date', u'chang', u'pressur']
[u'opposit', u'call', u'medic', u'indemn', u'talk']
[u'opposit', u'council', u'econom', u'tourism', u'plan']
[u'opposit', u'want', u'ruddock', u'stand']
[u'palm', u'island', u'council', u'wait', u'govt', u'decis']
[u'offer', u'lifelin']
[u'patchi', u'rain', u'close', u'birdsvill', u'track']
[u'patterson', u'deni', u'demot']
[u'philippin', u'claim', u'sayyaf', u'deputi', u'custodi']
[u'phone', u'servic', u'disrupt', u'south', u'coast']
[u'pichot', u'slap', u'dirti', u'puma', u'claim']
[u'plane', u'crash', u'north', u'queensland']
[u'plane', u'crash', u'probe', u'begin']
[u'pinpoint', u'health', u'make', u'differ']
[u'say', u'unsold', u'sheep', u'bring', u'home']
[u'govt', u'meet', u'strike', u'telecom', u'worker']
[u'polic', u'forc', u'crisi']
[u'polic', u'council', u'join', u'forc', u'stop', u'thiev']
[u'polic', u'investig', u'melbourn', u'babi', u'death']
[u'polic', u'pursu', u'premiership', u'rape', u'probe']
[u'polic', u'seek', u'wit', u'suspect']
[u'polic', u'test', u'soccer', u'star', u'rape', u'claim']
[u'pope', u'hold', u'audienc', u'skip', u'address']
[u'postal', u'industri', u'ombudsman', u'establish']
[u'prepar', u'solomon', u'troop', u'pull', u'underway']
[u'farmer', u'want', u'drought', u'break', u'rain']
[u'govt', u'want', u'shift', u'steal', u'wag', u'focus']
[u'raiwalui', u'turn', u'fiji']
[u'raul', u'travel', u'real', u'clash', u'porto']
[u'ravenswood', u'endur', u'sale', u'council']
[u'record', u'number', u'european', u'kid', u'surf']
[u'refuge', u'advoc', u'consid', u'high', u'court', u'test', u'case']
[u'region', u'job', u'train']
[u'reservoir', u'save', u'murray', u'water']
[u'right', u'group', u'condemn', u'kenyan', u'editor', u'arrest']
[u'right', u'group', u'want', u'sanction', u'isra', u'barrier']
[u'rise', u'dollar', u'rat', u'worri']
[u'roman', u'antiqu', u'bowl', u'british', u'expert']
[u'rugbi', u'chief', u'inspect', u'dockland']
[u'rwanda', u'rule', u'parti', u'take', u'earli', u'elect', u'lead']
[u'face', u'perman', u'water', u'restrict']
[u'safina', u'oust', u'defend', u'champ', u'advanc', u'moscow']
[u'scott', u'snub', u'reschedul', u'open']
[u'secur', u'fear', u'play', u'south', u'african', u'mind']
[u'sheep', u'export', u'stand', u'scrutini']
[u'shepparton', u'host', u'groceri', u'code', u'inquiri']
[u'slammin', u'charg', u'throw', u'court']
[u'sledger', u'face', u'life', u'cricket', u'australia']
[u'soar', u'dollar', u'drag', u'share', u'market']
[u'solomon', u'corrupt', u'probe', u'underway']
[u'spotlight', u'fall', u'break', u'hill', u'lead', u'reduct']
[u'stanbrok', u'legal', u'continu']
[u'storm', u'hit', u'opal', u'mine', u'town']
[u'stuart', u'hit', u'roo', u'coach', u'anderson', u'fittler']
[u'sudanes', u'newspap', u'suspend', u'defenc', u'report']
[u'support', u'plan', u'live', u'sheep', u'trade', u'chang']
[u'swiss', u'polic', u'wrestl', u'runaway']
[u'symposium', u'tell', u'archaic', u'law', u'hinder', u'tran']
[u'syrian', u'poet', u'adoni', u'see', u'nobel', u'prize', u'frontrunn']
[u'health', u'pressur']
[u'egan', u'administr']
[u'teen', u'charg', u'murder', u'bash', u'victim', u'die']
[u'thai', u'seek', u'loos', u'missil', u'ahead', u'apec', u'summit']
[u'youth', u'theatr', u'partnership']
[u'seed', u'schuettler', u'cruis', u'japan', u'open']
[u'tougher', u'water', u'restrict', u'effect']
[u'treasur', u'offer', u'clue', u'possibl', u'cut']
[u'turtl', u'free', u'trawl', u'open', u'market']
[u'dead', u'wound', u'kashmir']
[u'tyson', u'plead', u'guilti', u'brawl', u'charg']
[u'union', u'launch', u'media', u'campaign', u'build']
[u'union', u'want', u'financi', u'secur']
[u'strike', u'octob']
[u'senat', u'committe', u'approv', u'billion', u'iraq']
[u'team', u'keen', u'mark']
[u'venus', u'delay', u'comeback']
[u'govt', u'offer', u'million', u'water', u'rebat']
[u'victorian', u'view', u'antarctica']
[u'green', u'urg', u'power', u'polici', u'rethink']
[u'water', u'restrict', u'eas', u'victoria']
[u'water', u'restrict', u'loom', u'clarenc', u'valley']
[u'water', u'restrict', u'effect', u'sydney']
[u'wishart', u'earn', u'zimbabw', u'draw']
[u'woman', u'charg', u'husband', u'murder']
[u'wool', u'plant', u'closur', u'cost', u'geelong', u'job']
[u'worker', u'return', u'theme', u'park', u'tiger', u'bite']
[u'zim', u'cruis', u'victori', u'tour', u'match']
[u'boost', u'southern', u'environ']
[u'aborigin', u'fear', u'council', u'chang', u'undermin']
[u'accc', u'probe', u'properti', u'scam']
[u'patient', u'face', u'year', u'wait']
[u'fear', u'doctor', u'resign', u'indemn']
[u'agreement', u'reach', u'sheep', u'trade']
[u'airport', u'offer', u'short', u'term', u'free', u'park']
[u'akermani', u'reject', u'arrog', u'claim']
[u'aker', u'reject', u'lethal', u'arrog', u'claim']
[u'alleg', u'poacher', u'viarsa', u'fremantl', u'tomorrow']
[u'warn', u'specialist', u'doctor', u'exodus']
[u'anti', u'protest', u'guilti', u'opera', u'hous']
[u'arm', u'expert', u'provid', u'congress', u'iraq']
[u'soldier', u'wound', u'iraq', u'attack']
[u'atsic', u'commission', u'remain', u'committe']
[u'atsic', u'councillor', u'hop', u'vanston', u'deliv']
[u'atsic', u'head', u'ask', u'woman', u'quit', u'post']
[u'aussi', u'domin', u'french', u'surf']
[u'aussi', u'star', u'lovel', u'lead', u'plastic', u'pitch', u'backlash']
[u'australia', u'itali', u'sign', u'work', u'holiday', u'agreement']
[u'australia', u'team', u'beat', u'woodward']
[u'bali', u'bomber', u'expect', u'sentenc']
[u'bat', u'want', u'wenger', u'suspend']
[u'beatti', u'rule', u'cabinet', u'reshuffl', u'elect']
[u'bovina', u'show', u'seed', u'capriati', u'exit', u'door']
[u'orphan', u'hunter', u'crash', u'spend', u'night']
[u'break', u'hill', u'await', u'news', u'servic']
[u'broom', u'council', u'reject', u'cabl', u'beach']
[u'brothel', u'claim', u'caus', u'stir', u'busi', u'communiti']
[u'brother', u'face', u'nippi', u'cost']
[u'buchanan', u'upbeat', u'mcgrath', u'progress']
[u'budget', u'surplus', u'road', u'local', u'govt']
[u'bulk', u'bill', u'rat', u'west']
[u'burrup', u'fund', u'secur', u'despit', u'plant', u'cancel']
[u'busi', u'vote', u'develop', u'board', u'chang']
[u'govt', u'action', u'princ']
[u'unwant', u'fruit', u'tree', u'fruit', u'fight']
[u'cambodia', u'say', u'sourc', u'miss', u'thai']
[u'canadian', u'research', u'step', u'closer', u'sar', u'vaccin']
[u'canadian', u'rugbi', u'arriv', u'prepar']
[u'cancer', u'survivor', u'launch', u'dragon', u'boat', u'race']
[u'captiv', u'carnivor', u'miss', u'wide', u'open', u'space']
[u'cardwel', u'homecom', u'injur', u'turtl']
[u'central', u'north', u'build', u'activ', u'fall']
[u'centrelink', u'raid', u'catch', u'welfar', u'cheat']
[u'chicken', u'power', u'site', u'reject', u'council']
[u'chines', u'scientist', u'sentenc', u'worker', u'death']
[u'councillor', u'confid', u'mall', u'conflict']
[u'council', u'govt', u'reject', u'countrylink', u'cut']
[u'council', u'seek', u'direct', u'fund', u'visitor', u'centr']
[u'council', u'worri', u'king', u'milk', u'woe']
[u'court', u'tell', u'knife', u'attack', u'unprovok']
[u'court', u'tell', u'beat', u'throw', u'river']
[u'crash', u'investig', u'continu', u'search', u'caus']
[u'dallaglio', u'play', u'win']
[u'decis', u'loom', u'torr', u'strait', u'nativ', u'titl']
[u'defenc', u'forc', u'staff', u'debt']
[u'diplomat', u'defend', u'free', u'trade', u'talk']
[u'doctor', u'group', u'offer', u'hour', u'servic', u'assur']
[u'dollar', u'hit', u'year', u'high']
[u'domaszewicz', u'upset', u'leski', u'inquiri']
[u'door', u'open', u'ullrich', u'telekom', u'return']
[u'draper', u'set', u'clash', u'schuettler']
[u'drought', u'relief', u'dri', u'farmer']
[u'extra', u'motiv', u'wood', u'georgia']
[u'fals', u'alarm', u'cost', u'polic']
[u'famili', u'fatal', u'crash', u'armidal']
[u'farmer', u'group', u'downplay', u'stronger', u'dollar', u'fear']
[u'farmer', u'group', u'support', u'seaga', u'bond']
[u'fatal', u'accid', u'disrupt', u'sydney', u'traffic']
[u'govt', u'urg', u'scrap', u'levi', u'plan']
[u'fiji', u'plan', u'pacif', u'largest', u'build', u'project']
[u'fiji', u'rawaqa', u'squad', u'remark']
[u'financi', u'advis', u'plead', u'guilti', u'fail', u'scheme']
[u'fittler', u'stuart', u'pile', u'pressur', u'rooster']
[u'flood', u'damag', u'close', u'elliott']
[u'forest', u'remap', u'result', u'releas', u'soon']
[u'fuel', u'spill', u'block', u'england', u'highway']
[u'fund', u'approv', u'intersect', u'upgrad']
[u'gold', u'slow', u'explor']
[u'grand', u'final', u'foe', u'squar']
[u'grapegrow', u'lament', u'frost', u'damag']
[u'hegarti', u'hop', u'kangaroo']
[u'high', u'court', u'centenari', u'celebr', u'canberra']
[u'holland', u'disciplin', u'nistelrooy']
[u'hong', u'kong', u'deal', u'sar', u'epidem', u'appropri']
[u'hoon', u'jail', u'send', u'messag', u'driver']
[u'hospit', u'accus', u'insur', u'disadvantag', u'patient']
[u'hottest', u'septemb', u'record', u'gold', u'coast']
[u'howard', u'campaign', u'fight', u'drug', u'abus']
[u'howard', u'outlin', u'option', u'senat', u'chang']
[u'indigen', u'band', u'readi', u'figjam', u'concert']
[u'indonesia', u'seek', u'repair', u'tourist', u'tie']
[u'injuri', u'concern', u'black', u'lock']
[u'inquiri', u'tell', u'airport', u'secur', u'govt']
[u'insur', u'levi', u'heat', u'doctor', u'walk']
[u'insur', u'woe', u'increas', u'surgeri', u'wait', u'time']
[u'irish', u'hop', u'self', u'belief', u'overcom', u'aussi']
[u'israel', u'approv', u'barrier', u'section']
[u'israel', u'build', u'home', u'west', u'bank']
[u'bring', u'famili', u'closer', u'australian', u'resid']
[u'jone', u'player', u'rotat']
[u'juri', u'deliber', u'sibl', u'kill', u'case']
[u'labor', u'attack', u'cat']
[u'labor', u'stoush', u'poll', u'practic']
[u'latham', u'save', u'negat', u'gear', u'idea', u'criticis']
[u'trobe', u'lectur', u'strike', u'tertiari', u'reform']
[u'legisl', u'alcohol', u'book', u'illeg']
[u'local', u'footbal', u'club', u'merg']
[u'lord', u'honour', u'flower', u'olonga']
[u'macquari', u'bank', u'share', u'jump', u'water']
[u'mcgrath', u'hand', u'fit', u'deadlin']
[u'media', u'criticis', u'plane', u'crash', u'coverag']
[u'jail', u'polic', u'offic', u'murder']
[u'meteorologist', u'rain']
[u'miner', u'monitor', u'rise', u'australian', u'dollar']
[u'mix', u'bless', u'malle', u'cereal', u'farmer']
[u'breast', u'cancer', u'program', u'place', u'offer']
[u'surgeon', u'quit', u'cut', u'expect']
[u'victorian', u'access', u'public', u'hospit']
[u'water', u'restrict', u'flow', u'north', u'coast']
[u'gambier', u'satisfi', u'health', u'fund']
[u'mukhla', u'sentenc', u'death', u'bali', u'bomb']
[u'mukhla', u'appeal', u'sentenc']
[u'newcastl', u'celebr', u'nurs', u'practition']
[u'process', u'let', u'wine', u'maker', u'drop']
[u'nigeria', u'mexico', u'happi', u'stake']
[u'nimbin', u'riot', u'baffl', u'communiti', u'polic']
[u'korea', u'admit', u'process', u'fuel', u'rod']
[u'chang', u'revis', u'resolut', u'iraq']
[u'nowra', u'promot', u'shop']
[u'fear', u'doctor', u'walkout', u'levi']
[u'convict', u'murder', u'sister']
[u'polic', u'begin', u'road', u'safeti', u'crackdown']
[u'nsws', u'graincorp', u'buy', u'qlds', u'grainco']
[u'highest', u'homeless', u'academ']
[u'scientist', u'bore', u'antarct']
[u'odriscol', u'readi', u'special', u'perform']
[u'nation', u'withhold', u'support', u'reform', u'law']
[u'criticis', u'statistician', u'visit']
[u'expect', u'victorian', u'hospit', u'post']
[u'pair', u'jail', u'send', u'messag', u'hoon', u'driver']
[u'pair', u'court', u'drug', u'charg']
[u'pakistan', u'forc', u'kill', u'suspect', u'qaeda']
[u'panther', u'rooster', u'hunker', u'grand', u'final']
[u'parti', u'vote', u'reshuffl', u'govt']
[u'patchi', u'rain', u'bring', u'relief']
[u'phone', u'servic', u'restor', u'major', u'outag']
[u'plan', u'boost', u'varieti', u'oversea', u'student']
[u'plan', u'merg', u'hospit', u'age', u'care', u'hostel']
[u'tackl', u'crocodil', u'hunter']
[u'girl', u'arriv', u'brisban', u'surgeri']
[u'polic', u'offic', u'deni', u'assault', u'itiner']
[u'polic', u'probe', u'chariti', u'blast']
[u'polic', u'probe', u'east', u'coast', u'shoot']
[u'polic', u'boost', u'warburton', u'presenc']
[u'polic', u'replac', u'aborigin', u'liaison', u'offic']
[u'posti', u'charg', u'fail', u'deliv', u'mail']
[u'prison', u'impress', u'london', u'theatreland']
[u'protea', u'win', u'start', u'pakistan']
[u'protest', u'sight', u'anim', u'trade', u'talk']
[u'miner', u'win', u'reconcili', u'award']
[u'rain', u'bring', u'mix', u'bless', u'firefight']
[u'rain', u'help', u'boost', u'crop', u'hop']
[u'rain', u'late', u'crop']
[u'ralf', u'hit', u'william', u'chao']
[u'rebel', u'govt', u'forc', u'clash', u'monrovia']
[u'region', u'airport', u'secur', u'inquiri']
[u'return', u'sheep', u'irrespons', u'quarantin', u'expert']
[u'robson', u'dismiss', u'panic', u'talk', u'newcastl']
[u'rossi', u'close', u'straight', u'world', u'crown']
[u'discrimin', u'case', u'bigger']
[u'warn', u'highway', u'accid', u'risk', u'council']
[u'copper', u'smelter', u'resum', u'oper']
[u'govt', u'upbeat', u'rise', u'miner', u'explor']
[u'schwarzenegg', u'outlin', u'day', u'governor']
[u'secretari', u'calm', u'fear', u'pope', u'health']
[u'share', u'market', u'rise', u'gain']
[u'shortism', u'caus', u'demand', u'lengthen']
[u'short', u'live', u'storm', u'batter', u'opal', u'mine', u'town']
[u'showground', u'host', u'field', u'fest']
[u'small', u'busi', u'focus', u'econom', u'summit']
[u'soccer', u'star', u'order', u'cooper', u'rape', u'probe']
[u'solomon', u'prais', u'australian', u'intervent']
[u'south', u'african', u'coetze', u'win', u'nobel', u'literatur', u'prize']
[u'storm', u'damag', u'close', u'dubbo']
[u'storm', u'leav', u'home', u'power']
[u'student', u'safeti', u'fear', u'spark', u'road', u'closur', u'trial']
[u'studi', u'find', u'breast', u'implant', u'boost', u'suicid', u'rate']
[u'sydney', u'adelaid', u'rural', u'ax']
[u'sydney', u'staff', u'protest', u'interfer']
[u'taipan', u'bite', u'croc', u'amidst', u'rumour']
[u'talk', u'begin', u'save', u'yongala', u'dive', u'site', u'moor']
[u'talk', u'continu', u'strand', u'sheep']
[u'cut', u'forc', u'rate', u'hike', u'oppn']
[u'telstra', u'boss', u'senat', u'probe']
[u'telstra', u'defend', u'switkowski', u'absenc', u'senat']
[u'that', u'cooki', u'crumbl']
[u'dead', u'liberia', u'peacekeep']
[u'soldier', u'kill', u'iraqi', u'attack']
[u'toddler', u'hospit', u'meningococc']
[u'toowoomba', u'cotton', u'research', u'centr', u'benefit']
[u'toronto', u'hatch', u'rare', u'komodo', u'dragon', u'babi']
[u'tough', u'talk', u'minnow', u'georgia']
[u'trade', u'deal', u'japan', u'boost', u'invest', u'tie']
[u'trucker', u'black', u'spot', u'fund']
[u'palestinian', u'kill', u'west', u'bank', u'raid']
[u'labour', u'deleg', u'forc', u'iraq', u'debat']
[u'envoy', u'quiet', u'meet']
[u'union', u'deleg', u'plead', u'guilti', u'work', u'threat']
[u'unit', u'chelsea', u'sting', u'champ', u'leagu', u'loss']
[u'univers', u'staff', u'ask', u'join', u'strike']
[u'need', u'diplomaci', u'chang', u'revamp', u'imag', u'panel']
[u'push', u'revis', u'resolut']
[u'senat', u'reject', u'iraq', u'fund', u'cut']
[u'soldier', u'shoot', u'dead', u'iraq']
[u'sweden', u'women', u'world', u'semi']
[u'moorsel', u'beat', u'longo', u'world', u'hour', u'record']
[u'veteran', u'win', u'discrimin', u'case']
[u'govt', u'deni', u'rob', u'forest', u'program']
[u'wallabi', u'face', u'squad', u'honour']
[u'wall', u'ralli', u'slump']
[u'water', u'effici', u'plan', u'save', u'annual', u'kemp']
[u'waugh', u'drop', u'retir', u'hint']
[u'webb', u'elli', u'arriv', u'australia']
[u'whale', u'watcher', u'urg', u'lookout']
[u'woolworth', u'share', u'drop', u'poor', u'sale', u'outlook']
[u'world', u'pressur', u'israel', u'nuke', u'arab', u'leagu']
[u'zimbabw', u'crash', u'kill']
[u'zimbabw', u'court', u'uphold', u'seizur', u'ban', u'daili']
[u'abbott', u'meet', u'exodus', u'fear']
[u'abbott', u'releas', u'doctor', u'levi', u'plan']
[u'get', u'nationwid', u'datacast', u'licenc']
[u'accus', u'drug', u'traffic', u'overwork']
[u'accus', u'say', u'intent', u'kill', u'friend']
[u'govt', u'fund', u'finalis', u'packag']
[u'airport', u'raid', u'target', u'perth', u'taxi', u'driver']
[u'flog', u'perth', u'melbourn', u'wnbl', u'open']
[u'anderson', u'downplay', u'fear', u'plan', u'airspac']
[u'annan', u'happi', u'draft', u'resolut']
[u'anti', u'corrupt', u'watchdog', u'raid', u'offic']
[u'appeal', u'court', u'order', u'boss', u'fraud', u'trial']
[u'appeal', u'lodg', u'forest', u'plan']
[u'kill', u'afghanistan', u'blast']
[u'beerwah', u'busi', u'fear', u'australia']
[u'bomber', u'charg', u'salari', u'breach']
[u'bordertown', u'polic', u'forc', u'long', u'weekend']
[u'breaker', u'fall', u'loss']
[u'break', u'hill', u'lament', u'servic', u'demis']
[u'broom', u'council', u'want', u'answer', u'station']
[u'brown', u'oppos', u'parliament', u'recal', u'bush', u'visit']
[u'compani', u'celebr', u'year', u'servic']
[u'bushfir', u'help']
[u'butler', u'swear', u'tasmanian', u'governor']
[u'elect', u'candid', u'reveal', u'prefer', u'stanc']
[u'king', u'canyon', u'region', u'polic', u'station']
[u'quick', u'action', u'dust', u'woe']
[u'cambodian', u'polic', u'intercept', u'drug', u'head']
[u'cardin', u'say', u'pope', u'near', u'death']
[u'carr', u'revolt', u'doubl', u'jeopardi', u'draft']
[u'sale', u'septemb', u'quarter']
[u'cash', u'shortag', u'delay', u'kid', u'surgeri']
[u'centrelink', u'initi', u'perth', u'taxi', u'raid']
[u'chilean', u'star', u'rio', u'front', u'court']
[u'church', u'cancel', u'anti', u'divorc', u'chile']
[u'clean', u'storm', u'batter', u'north', u'west']
[u'colombian', u'rebel', u'claim', u'shoot', u'plane']
[u'commerci', u'educ', u'miss', u'rural', u'kid']
[u'compani', u'blame', u'govt', u'loss', u'methanol']
[u'concern', u'rais', u'larg', u'pine', u'plantat']
[u'construct', u'delay', u'prison']
[u'council', u'get', u'walk', u'work']
[u'councillor', u'question', u'support', u'independ', u'bodi']
[u'council', u'transport', u'overhaul']
[u'council', u'citi', u'slicker', u'bush']
[u'coupl', u'receiv', u'bali', u'nurs', u'award']
[u'court', u'rule', u'valanc']
[u'crew', u'rescu', u'sink', u'trawler']
[u'deadlin', u'extend', u'lake', u'mulwala', u'submiss']
[u'debat', u'telescop']
[u'demand', u'counsel', u'servic']
[u'develop', u'boom', u'drive', u'hous', u'market']
[u'digger', u'want', u'rejoin', u'oath']
[u'doctor', u'continu', u'resign', u'insur', u'levi']
[u'doubl', u'demerit', u'point', u'come', u'forc', u'long']
[u'appeal', u'sentenc', u'policeman', u'murder']
[u'draper', u'japan', u'open', u'quarter', u'final']
[u'drill', u'maker', u'share', u'skill', u'fund']
[u'kill', u'tear', u'aceh']
[u'england', u'arriv', u'perth']
[u'environ', u'hotspot', u'extra', u'protect']
[u'israel', u'plan', u'extend', u'west', u'bank', u'barrier']
[u'seek', u'save', u'slipperi', u'extinct']
[u'beij', u'mayor', u'get', u'project']
[u'expert', u'warn', u'diseas', u'threat', u'sheep', u'return']
[u'fatti', u'diet', u'link', u'stroke', u'risk', u'research']
[u'fear', u'air', u'hour', u'polic', u'station', u'staff']
[u'govt', u'maintain', u'defenc', u'commit']
[u'firefight', u'mourn', u'loss', u'colleagu', u'famili']
[u'firm', u'releas', u'wine', u'takeov', u'detail']
[u'flatley', u'stitch', u'heat']
[u'tout', u'senat', u'candid']
[u'policeman', u'guilti', u'indec', u'deal']
[u'kill', u'injur', u'turkey', u'crash']
[u'fourth', u'stand', u'trial', u'policeman', u'murder']
[u'french', u'player', u'world', u'dope', u'check']
[u'frost', u'rain', u'worri', u'grape', u'grower']
[u'german', u'fire', u'audienc', u'imagin']
[u'girlfriend', u'olymp', u'shooter', u'diamond', u'grant']
[u'canola', u'receiv', u'initi', u'approv']
[u'govt', u'blame', u'game', u'methanex', u'pull']
[u'govt', u'commit', u'indigen', u'art', u'program']
[u'govt', u'ahead', u'pinetec', u'reloc', u'grant']
[u'grandmoth', u'granddaught', u'grampian']
[u'grant', u'money', u'await', u'decis', u'mall', u'futur']
[u'green', u'govt', u'refus', u'search']
[u'green', u'lower', u'hous', u'need', u'reform']
[u'gunmen', u'kill', u'shiit', u'muslim', u'pakistan']
[u'hama', u'say', u'secur', u'barrier', u'wont', u'stop', u'attack']
[u'health', u'minist', u'call', u'south', u'east', u'clinic']
[u'hillston', u'bank', u'communiti', u'plan']
[u'hospit', u'cop', u'rise', u'patient', u'number']
[u'howard', u'tightlip', u'bush', u'detail']
[u'hundr', u'home', u'lose', u'power', u'storm']
[u'indigen', u'outcri', u'plan', u'communiti', u'council']
[u'investig', u'probe', u'mareeba', u'plane', u'crash']
[u'koen', u'kock', u'declar', u'bok']
[u'land', u'clear', u'negoti', u'take', u'longer']
[u'leed', u'faith', u'reid']
[u'liberian', u'presid', u'accus', u'rebel', u'coup', u'attempt']
[u'lifesav', u'govt', u'meet', u'insur', u'shortfal']
[u'london', u'protest', u'hand', u'live', u'export', u'petit']
[u'longreach', u'prais', u'effort', u'help', u'stricken']
[u'mackay', u'tell', u'consid', u'middl', u'east', u'trade', u'plan']
[u'bash', u'rob', u'parramatta']
[u'charg', u'babysitt', u'attack']
[u'guilti', u'sister', u'shoot', u'murder']
[u'plead', u'guilti', u'hold']
[u'face', u'court', u'attempt', u'murder', u'charg']
[u'mccabe', u'famili', u'lose', u'tobacco', u'legal', u'challeng']
[u'medic', u'indemn', u'crisi', u'predict', u'littl']
[u'meet', u'help', u'farmer', u'seek', u'drought']
[u'melbourn', u'warehous', u'caus', u'damag']
[u'mellencamp', u'bemoan', u'apolit', u'music', u'industri']
[u'mine', u'plan', u'scuttl', u'telescop']
[u'miss', u'toddler', u'near', u'goondiwindi']
[u'uncertainti', u'millennium', u'rail', u'project']
[u'mosqu', u'blast', u'death', u'toll', u'rise']
[u'nation', u'resourc', u'council', u'move', u'closer']
[u'nauru', u'announc', u'econom', u'agreement', u'china']
[u'nauru', u'court', u'sentenc', u'asylum', u'seeker', u'riot']
[u'nebo', u'council', u'discuss', u'plan']
[u'airport', u'termin', u'carnarvon']
[u'crime', u'solv', u'softwar']
[u'look', u'liver', u'kewel', u'face', u'trial', u'gunner']
[u'pcyc', u'mornington']
[u'recruit', u'townsvill', u'squad']
[u'trial', u'convict', u'murder', u'wife']
[u'opposit', u'urg', u'public', u'council', u'merger']
[u'compani', u'win', u'rail', u'tender']
[u'korea', u'claim', u'nuke', u'rod', u'readi', u'sceptic']
[u'blaze', u'threaten', u'hous']
[u'broadcast', u'sorri', u'chief']
[u'omalley', u'trail', u'garcia']
[u'burn', u'mudge', u'blast']
[u'kill', u'wound', u'iraq']
[u'oppn', u'jump', u'iraq', u'weapon', u'report']
[u'opposit', u'accus', u'fail', u'support', u'wind']
[u'pair', u'lucki', u'escap', u'leav', u'wharf']
[u'pakistan', u'bank', u'akhtar', u'pace']
[u'pakistan', u'test', u'fire', u'short', u'rang', u'ballist', u'missil']
[u'palm', u'council', u'hand', u'minist']
[u'pantani', u'clear', u'sport', u'fraud']
[u'panther', u'fan', u'favourit', u'stuart']
[u'patrol', u'boat', u'assist', u'solomon', u'weapon', u'search']
[u'consum', u'complaint', u'list']
[u'plan', u'exil', u'sheep', u'dock']
[u'plan', u'save', u'wwii', u'airstrip', u'highway', u'connect']
[u'blame', u'state', u'law', u'bulk', u'bill', u'declin']
[u'defend', u'weapon', u'report']
[u'head', u'walk', u'work', u'campaign']
[u'hop', u'levi', u'freez', u'stop', u'exodus']
[u'crack', u'expat', u'worker']
[u'polic', u'help', u'steal', u'truck', u'crash']
[u'polic', u'continu', u'drug', u'raid', u'probe']
[u'polic', u'charg', u'nimbin', u'riot']
[u'polic', u'deal', u'includ', u'free', u'countri', u'hous']
[u'polic', u'road', u'safeti', u'messag', u'ahead', u'long', u'weekend']
[u'polic', u'search', u'miss', u'toddler', u'near', u'goondiwindi']
[u'polic', u'continu', u'bolster', u'road', u'safeti']
[u'polic', u'want', u'question', u'tewantin', u'death']
[u'properti', u'come', u'storm', u'unscath']
[u'public', u'hous', u'secur', u'door', u'stay']
[u'public', u'warn', u'away', u'amor', u'croc']
[u'punter', u'sign', u'counti', u'deal', u'report']
[u'qanta', u'reject', u'region', u'secur', u'concern']
[u'queen', u'golden', u'mile', u'hall', u'fame', u'home']
[u'rag', u'roy', u'warn', u'ger']
[u'rain', u'forc', u'cancel', u'pooncari']
[u'ranger', u'count', u'portugues', u'lucki', u'charm']
[u'reclus', u'writer', u'surpris', u'nobel']
[u'reform', u'gippsland', u'race', u'industri']
[u'region', u'aircraft', u'secur', u'lack']
[u'renmark', u'rural', u'clinic', u'school', u'open']
[u'restrict', u'damag', u'elliott', u'road']
[u'retrain', u'fund', u'timber', u'dairi', u'industri']
[u'richardson', u'fire', u'unbeaten', u'zealand', u'warm']
[u'rockhampton', u'volunt', u'receiv', u'premier', u'award']
[u'rodd', u'tip', u'waterhous', u'pair', u'randwick']
[u'romania', u'separ', u'gypsi', u'child', u'coupl']
[u'roma', u'saleyard', u'beef', u'cattl', u'number']
[u'russia', u'follow', u'small', u'nuke', u'plan']
[u'russian', u'continu', u'nois', u'kremlin']
[u'samoa', u'sititi', u'criticis', u'leota', u'pull']
[u'schumach', u'quit', u'rumour']
[u'schwarzenegg', u'sorri', u'amid', u'fresh', u'harass', u'claim']
[u'scud', u'draper', u'japan']
[u'scud', u'draper', u'japan', u'open']
[u'search', u'continu', u'miss', u'west']
[u'seeth', u'montoya', u'take', u'day', u'calm']
[u'share', u'market', u'end', u'week', u'steadi']
[u'sheep', u'ship', u'dock', u'gulf']
[u'south', u'continu', u'wolv', u'miser', u'start']
[u'state', u'rail', u'deni', u'agre', u'millennium', u'stage']
[u'suicid', u'bomber', u'attack', u'iraq', u'cleaner', u'report']
[u'surf', u'champ', u'wave', u'kirra', u'beach']
[u'surgeon', u'urg', u'hospit', u'plan']
[u'survey', u'say', u'servic', u'sector', u'strong']
[u'swedish', u'name', u'lindh', u'replac']
[u'tail', u'dock', u'ban', u'australia', u'wide']
[u'senat', u'defend', u'bulk', u'bill', u'effort']
[u'telstra', u'scheme', u'aim', u'broadband', u'demand']
[u'telstra', u'share', u'buyback']
[u'telstra', u'worker', u'fight', u'plan', u'cut']
[u'tenni', u'hope', u'head', u'centr', u'tournament']
[u'train', u'driver', u'sack', u'brake', u'tamper', u'claim']
[u'canadian', u'peacekeep', u'kill', u'kabul']
[u'canadian', u'soldier', u'kill', u'injur', u'kabul']
[u'kill', u'injur', u'vietnam', u'ship', u'blast']
[u'envoy', u'fail', u'secur', u'releas']
[u'union', u'threaten', u'action', u'dental', u'assist']
[u'union', u'want', u'forest', u'fund', u'explan']
[u'uruguayan', u'toothfish', u'ship', u'arriv']
[u'inspector', u'admit', u'weapon']
[u'judg', u'rule', u'moussaoui', u'death', u'penalti']
[u'troop', u'truck', u'rocket', u'baghdad']
[u'valencia', u'black', u'beast', u'return', u'barca']
[u'govt', u'bid', u'nepean', u'reserv']
[u'voigt', u'win', u'pari', u'bourg', u'cook', u'seventh']
[u'live', u'coal', u'power', u'say']
[u'wallabi', u'face', u'squad', u'honour']
[u'wall', u'take', u'breather']
[u'warmer', u'weather', u'bring', u'snake']
[u'water', u'restrict', u'review']
[u'water', u'wise', u'messag', u'flow', u'maryborough']
[u'weapon', u'report', u'justifi']
[u'western', u'hardest', u'indemn', u'crisi']
[u'wild', u'storm', u'coast']
[u'wishart', u'steadi', u'struggl', u'zim']
[u'woman', u'die', u'princ', u'highway', u'crash']
[u'woman', u'face', u'drug', u'prison', u'charg']
[u'wound', u'inter', u'bend', u'reveng']
[u'panel', u'judg', u'australia', u'case', u'food']
[u'yacht', u'sink', u'townsvill', u'port']
[u'yellow', u'jersey', u'wearer', u'pena', u'lead', u'colombia', u'world']
[u'youth', u'festiv', u'put', u'reconcili', u'practic']
[u'zimbabw', u'court', u'set', u'date', u'paper', u'challeng']
[u'home', u'detent', u'australian']
[u'adventur', u'hobart', u'tourist', u'attract']
[u'ahmadiyya', u'mosqu', u'open', u'london']
[u'anti', u'log', u'group', u'protest', u'outsid', u'parliament']
[u'archbishop', u'canterburi', u'meet', u'pope']
[u'arni', u'wife', u'stand']
[u'arroyo', u'revers', u'retir', u'decis']
[u'asia', u'poorest', u'countri', u'receiv', u'develop', u'grant']
[u'aussi', u'hold', u'out', u'shore', u'shrink', u'world', u'field']
[u'aussi', u'squash', u'quarter']
[u'battl', u'panther', u'come', u'good', u'lang']
[u'best', u'fairest', u'honour']
[u'biaggi', u'grab', u'pacif', u'pole']
[u'bid', u'hot', u'british', u'bucket', u'water']
[u'boom', u'call', u'inform', u'mark', u'grave']
[u'brown', u'guid', u'clangalang', u'epsom', u'victori']
[u'bush', u'defend', u'decis', u'attack', u'iraq']
[u'canada', u'confirm', u'plan', u'field', u'weak', u'team']
[u'canada', u'shock', u'china', u'world', u'semi']
[u'canberran', u'urg', u'water', u'waster']
[u'carr', u'block', u'debat', u'poki', u'hike']
[u'celebr', u'garag', u'sale', u'attract', u'hundr']
[u'chief', u'clear', u'strand', u'sheep']
[u'child', u'abus', u'inquiri', u'delay', u'month']
[u'cipo', u'abdic', u'world', u'crown']
[u'claim', u'katherin', u'elect']
[u'colombian', u'presid', u'embrac', u'brother']
[u'crean', u'call', u'parti', u'uniti']
[u'crean', u'propos', u'rural', u'migrant', u'settlement']
[u'crean', u'announc', u'home', u'owner', u'grant']
[u'davydenko', u'replac', u'agassi', u'pari', u'master']
[u'death', u'toll', u'rise', u'pakistan', u'minibus', u'attack']
[u'dementieva', u'myskina', u'moscow', u'semi']
[u'diamond', u'doubt', u'shoot', u'world']
[u'doctor', u'split', u'abbott', u'oliv', u'branch']
[u'earth', u'tremor', u'shake', u'canberra']
[u'eastwood', u'claim', u'titl']
[u'ecuador', u'seiz', u'illeg', u'shark', u'fin', u'galapago']
[u'kashmir', u'border', u'exchang']
[u'england', u'favourit', u'world', u'say', u'straeuli']
[u'england', u'pack', u'say', u'aussi', u'coach']
[u'england', u'trumpet', u'edg', u'wallabi']
[u'environ', u'secretari', u'back', u'centralis', u'fish', u'data']
[u'member', u'negoti', u'constitut']
[u'expens', u'flag', u'steal', u'canberra', u'memori']
[u'boss', u'overhaul', u'qualifi', u'format']
[u'ferdinand', u'injuri', u'scare', u'england']
[u'food', u'produc', u'fight', u'european', u'name']
[u'franc', u'lose', u'forward', u'open']
[u'franc', u'hour', u'work', u'week', u'scrutini']
[u'frank', u'face', u'dope', u'charg', u'paper']
[u'georgia', u'captain', u'england', u'match']
[u'german', u'design', u'make', u'acclaim', u'comeback']
[u'gibernau', u'take', u'provision', u'pole', u'pacif']
[u'guest', u'worker', u'want', u'australia', u'survey']
[u'high', u'court', u'critic', u'natur', u'chief', u'justic']
[u'high', u'score', u'german', u'face', u'tough', u'defenc']
[u'increas', u'death', u'link', u'european', u'heatwav']
[u'indonesia', u'make', u'progress', u'money', u'launder']
[u'iraqi', u'kill', u'british', u'soldier']
[u'iraq', u'resolut', u'falter', u'bush', u'defend']
[u'iron', u'keep', u'wait', u'franc']
[u'isra', u'soldier', u'charg', u'child', u'death']
[u'israel', u'step', u'secur', u'ahead', u'holi']
[u'israel', u'suicid', u'blast', u'kill']
[u'johnson', u'rugbi', u'dirtiest', u'skipper', u'krige']
[u'kato', u'motogp', u'hall', u'fame']
[u'king', u'royal', u'start', u'bullet', u'bounc']
[u'krige', u'say', u'england', u'captain', u'play', u'dirti']
[u'love', u'bring', u'bush', u'poet']
[u'die', u'ultralight', u'crash']
[u'mauresmo', u'end', u'dementieva', u'streak', u'moscow']
[u'mcgrath', u'doubt', u'zimbabw', u'test']
[u'measl', u'alert', u'issu', u'virgin', u'flyer']
[u'melbourn', u'chariti', u'benefit', u'celebr', u'garag']
[u'miss', u'dead', u'victoria']
[u'motogp', u'honour', u'late', u'kato']
[u'confus', u'need', u'anti', u'corrupt', u'raid']
[u'nasa', u'delay', u'launch', u'septemb']
[u'navi', u'newest', u'ship', u'commiss', u'servic']
[u'doubt', u'mcgrath', u'fit']
[u'governor', u'vow', u'help', u'tasmanian']
[u'test', u'determin', u'water', u'level']
[u'york', u'honour', u'buri', u'african', u'slave']
[u'zealand', u'tampa', u'refuge', u'reunit']
[u'chief', u'warn', u'bush', u'fire']
[u'govt', u'face', u'court', u'ballast', u'point', u'purchas']
[u'polic', u'seek', u'help', u'girl', u'alleg', u'assault']
[u'storm', u'leav', u'dead', u'miss']
[u'pain', u'kill', u'panther', u'galuvao']
[u'pakistan', u'clinch', u'thrill']
[u'pizzonia', u'make', u'fast', u'return']
[u'play', u'indonesian', u'educ', u'specul']
[u'polic', u'budget', u'blowout', u'prompt', u'public', u'safeti', u'fear']
[u'policeman', u'drag', u'drink', u'driver']
[u'polic', u'search', u'children', u'find', u'submerg']
[u'power', u'plant', u'expect', u'creat', u'hundr', u'job']
[u'privat', u'school', u'call', u'releas', u'test', u'result']
[u'public', u'need', u'help', u'solv', u'insur', u'crisi']
[u'famili', u'offic', u'stand']
[u'name', u'zone']
[u'rebel', u'leader', u'arrest', u'solomon', u'island']
[u'report', u'highlight', u'poor', u'disabl', u'care', u'welfar', u'group']
[u'rudd', u'urg', u'deal', u'strand', u'sheep']
[u'polic', u'plan', u'schooli', u'crackdown']
[u'promot', u'goodwil', u'jew', u'muslim']
[u'saudi', u'hospit', u'investig', u'aid', u'treatment']
[u'schuettler', u'grosjean', u'tokyo', u'final']
[u'search', u'resum', u'miss']
[u'sharapova', u'breez', u'tokyo', u'final']
[u'sheep', u'offload', u'plan', u'logist', u'nightmar', u'coco']
[u'shriver', u'defend', u'arni', u'sexual', u'harass']
[u'south', u'australia', u'face', u'youth', u'worker', u'strike']
[u'specul', u'hot', u'ahead', u'nobel', u'scienc', u'prize']
[u'spirit', u'open', u'account', u'parramatta', u'power', u'kingz']
[u'steven', u'archer', u'quit', u'kangaroo', u'leadership']
[u'support', u'schwarzenegg', u'grow', u'poll', u'reveal']
[u'surfer', u'mark', u'bali', u'bomb', u'anniversari']
[u'govt', u'ignor', u'launceston', u'cardiologist', u'rule']
[u'trek', u'aim', u'aborigin', u'troubl']
[u'children', u'fear', u'drown']
[u'picasso', u'paint', u'auction', u'madrid']
[u'children', u'sweep', u'death']
[u'ullrich', u'telekom', u'return']
[u'soldier', u'kill', u'wound', u'baghdad', u'attack']
[u'troop', u'clash', u'iraqi', u'soldier']
[u'villa', u'deni', u'player', u'rape', u'probe']
[u'vote', u'begin', u'katherin', u'elect']
[u'warrior', u'lose', u'earli', u'wicket']
[u'weapon', u'inspector', u'present', u'evid', u'congress']
[u'woman', u'die', u'road', u'smash']
[u'wood', u'charg', u'clear']
[u'woolli', u'mind', u'studi', u'win', u'nobel', u'award']
[u'zimbabw', u'control', u'perth']
[u'zimbabw', u'vow', u'resist', u'pressur', u'close']
[u'oppn', u'concern', u'home', u'detent', u'polici']
[u'pick', u'bayeux', u'prize', u'coverag']
[u'predict', u'specialist', u'join', u'exodus']
[u'bottl', u'youv', u'bach']
[u'asthma', u'foundat', u'launch', u'educ', u'program']
[u'aussi', u'johnson', u'radcliff', u'take', u'half']
[u'aussi', u'research', u'claim', u'success', u'male']
[u'aussi', u'british', u'squash', u'final']
[u'bali', u'survivor', u'final', u'head', u'home']
[u'biaggi', u'cruis', u'pacif', u'victori', u'stoner', u'second']
[u'black', u'activist', u'death', u'honour', u'pari']
[u'blair', u'know', u'claim', u'wrong']
[u'burk', u'say', u'vindic', u'katherin', u'result']
[u'bush', u'condemn', u'suicid', u'bomb', u'israel']
[u'cane', u'toad', u'bite', u'attack']
[u'carr', u'announc', u'mental', u'health', u'review']
[u'carr', u'flag', u'sydney', u'harbour', u'port']
[u'carr', u'say', u'poki', u'health']
[u'carr', u'speech', u'outlin', u'work', u'snoop', u'restrict']
[u'celt', u'wreck', u'ranger', u'win']
[u'chechen', u'vote', u'hors', u'race']
[u'child', u'abus', u'claim', u'reignit', u'royal', u'commiss', u'call']
[u'china', u'flood', u'leav', u'homeless']
[u'chines', u'cyber', u'dissid', u'court', u'date']
[u'clock', u'tick', u'arafat', u'expuls', u'israel', u'say']
[u'claim', u'journalist', u'detain', u'bash', u'lago']
[u'fight', u'tassi']
[u'convict', u'killer', u'lose', u'transfer']
[u'darwin', u'polic', u'seek', u'sexual', u'assault']
[u'dent', u'myskina', u'kremlin', u'titl']
[u'depress', u'treatment', u'inappropri', u'expert']
[u'indonesian', u'miss', u'fall']
[u'faulkner', u'fail', u'spot', u'senat', u'ticket']
[u'gut', u'high', u'school', u'classroom']
[u'florida', u'suicid', u'postpon']
[u'frail', u'pope', u'meet', u'anglican', u'leader']
[u'shark', u'fund', u'life', u'saver', u'opposit']
[u'govern', u'hope', u'sell', u'strand', u'sheep']
[u'goward', u'predict', u'pay', u'matern', u'leav', u'solut']
[u'granvill', u'disast', u'rescu', u'coordin', u'die']
[u'harri', u'wow', u'southern', u'rodeo']
[u'hindus', u'honour', u'mother', u'teresa', u'calcutta']
[u'hobart', u'polic', u'unabl', u'locat', u'miss', u'girl']
[u'huston', u'keep', u'shoot', u'edg', u'mississippi']
[u'indian', u'troop', u'shoot', u'dead', u'muslim', u'rebel']
[u'iranian', u'policewomen', u'beat']
[u'iran', u'condit', u'agre', u'sign', u'nuclear']
[u'iraqi', u'soldier', u'clash', u'british', u'troop']
[u'iraqi', u'taxi', u'driver', u'wound', u'kirkuk', u'blast']
[u'iraq', u'unveil', u'saddam', u'banknot']
[u'ireland', u'ahern', u'hope', u'violenc']
[u'islam', u'jihad', u'claim', u'haifa', u'suicid', u'bomb']
[u'israel', u'attack', u'palestinian', u'target', u'syria']
[u'israel', u'retali', u'suicid', u'bomb']
[u'jone', u'unhappi', u'warm', u'shut']
[u'kirbi', u'respond', u'attack', u'high', u'court']
[u'land', u'council', u'odd', u'mismanag', u'claim']
[u'aussi', u'bali', u'bomb', u'survivor', u'leav', u'hospit']
[u'limp', u'owen', u'england', u'fit', u'scare']
[u'voter', u'turnout', u'chechen', u'elect']
[u'disappear', u'north', u'queensland', u'coast']
[u'shoot', u'stomach', u'port', u'melbourn']
[u'wait', u'hour', u'rescu', u'launceston']
[u'mcgrath', u'test', u'india', u'tour']
[u'mcgrath', u'zimbabw', u'test']
[u'namibian', u'fullback', u'snyder', u'world']
[u'prison', u'doubt']
[u'grand', u'final', u'kick']
[u'crash', u'claim', u'life', u'injur']
[u'polic', u'search', u'miss', u'pilot']
[u'palestinian', u'kill', u'west', u'bank', u'raid']
[u'palestinian', u'suicid', u'bomber', u'kill', u'israel']
[u'pandiani', u'target', u'deportivo']
[u'panther', u'captur', u'premiership']
[u'panther', u'hold', u'slender', u'half', u'time', u'lead']
[u'perth', u'rail', u'safe', u'oppn']
[u'philippin', u'push', u'arm']
[u'pire', u'keep', u'arsenal']
[u'placido', u'domingo', u'cancel', u'concert', u'bronchiti']
[u'consult', u'public', u'senat', u'chang']
[u'poland', u'say', u'sorri', u'french', u'missil', u'comment']
[u'polic', u'charg', u'rape', u'assault']
[u'polic', u'hold', u'theft', u'crash', u'sydney']
[u'protest', u'stag', u'outsid', u'summit']
[u'labor', u'dump', u'rort', u'whistleblow']
[u'religi', u'leader', u'poverti', u'forum']
[u'riverland', u'runner', u'prepar', u'streak']
[u'rooster', u'panther', u'count', u'kick']
[u'rooster', u'panther', u'prepar', u'battl']
[u'russian', u'troop', u'alert', u'chechnya', u'go', u'poll']
[u'busi', u'confid', u'year', u'high']
[u'salvo', u'polic', u'team', u'melbourn', u'patrol']
[u'schuettler', u'triumph', u'japan']
[u'schwarzenegg', u'struggl', u'late', u'press']
[u'sharapova', u'win', u'titl']
[u'sheep', u'protest', u'stag', u'gold', u'coast']
[u'springbok', u'best', u'behaviour']
[u'kilda', u'beach', u'tram']
[u'govt', u'urg', u'address', u'declin', u'kelp', u'forest']
[u'teen', u'charg', u'high', u'speed', u'chase', u'adelaid']
[u'tesk', u'trail', u'swede', u'lead', u'california']
[u'thailand', u'round', u'illeg', u'worker', u'ahead', u'apec']
[u'tiger', u'cling', u'lead', u'singh', u'make', u'charg']
[u'tiger', u'maul', u'magician', u'horn', u'vega']
[u'toney', u'stop', u'holyfield', u'ninth', u'round']
[u'turnbul', u'resign', u'liber', u'parti', u'treasur']
[u'afghan', u'soldier', u'kill', u'taliban', u'attack']
[u'ullrich', u'return', u'telekom']
[u'union', u'prepar', u'push', u'agenda', u'labor', u'meet']
[u'china', u'presid', u'address', u'parliament']
[u'congressman', u'accus', u'muslim', u'group', u'ruin']
[u'militari', u'reus', u'emb', u'journalist']
[u'sniper', u'defend', u'iraq', u'pipelin']
[u'govt', u'push', u'manag', u'point', u'nepean']
[u'polic', u'expand', u'search', u'power']
[u'villeneuv', u'dump', u'agent']
[u'voss', u'cap', u'brisban', u'best']
[u'river', u'death', u'prompt', u'call', u'safe', u'cross']
[u'women', u'snub', u'oman', u'elect']
[u'yuvraj', u'india', u'squad', u'zealand', u'test']
[u'zimbabw', u'warrior', u'fight', u'thrill', u'draw']
[u'highway', u'safeti', u'boost']
[u'charg', u'fiji', u'coup', u'polic']
[u'game', u'villag', u'schedul', u'opposit']
[u'administr', u'expect', u'quick', u'sale', u'king', u'island']
[u'agent', u'say', u'gold', u'coast', u'home', u'market', u'bottom']
[u'agforc', u'seek', u'review', u'water', u'bore', u'moratorium']
[u'demonstr', u'plant', u'shut']
[u'arab', u'leagu', u'warn', u'whirlwind', u'violenc']
[u'aussi', u'palmer', u'grinham', u'brit', u'squash', u'titl']
[u'australian', u'kill', u'bridg', u'stunt']
[u'australian', u'lift', u'british', u'squash', u'titl']
[u'author', u'continu', u'plane', u'crash', u'probe']
[u'bandit', u'hold', u'southport', u'store']
[u'villeneuv', u'replac']
[u'barton', u'reject', u'paradis', u'opposit']
[u'beer', u'festiv', u'diehard', u'drink', u'close', u'record']
[u'bum', u'squeez', u'venu']
[u'plan', u'announc', u'newcastl', u'port']
[u'weekend', u'sport', u'western']
[u'black', u'cap', u'look', u'skipper', u'crack', u'india', u'mysteri']
[u'bodi', u'triniti', u'beach']
[u'bomb', u'scare', u'halt', u'singapor', u'airlin', u'flight']
[u'british', u'bank', u'giant', u'take', u'irish', u'mortgag']
[u'burni', u'prove', u'popular']
[u'busselton', u'prepar', u'triathlon', u'event']
[u'access', u'adelaid', u'victoria', u'pipelin']
[u'greater', u'mental', u'health', u'toler']
[u'campbel', u'park', u'revamp', u'tourism', u'push']
[u'canada', u'comeback', u'king', u'tragic', u'injuri', u'blow']
[u'crash', u'victim', u'name']
[u'carr', u'announc', u'north', u'coast', u'region', u'park']
[u'carr', u'launch', u'mental', u'health', u'review']
[u'chechnya', u'rig', u'poll', u'close']
[u'cherri', u'blossom', u'arriv']
[u'china', u'put', u'moon', u'land', u'space', u'agenda']
[u'chines', u'poison', u'reservoir', u'boost', u'purifi']
[u'clearer', u'gold', u'coast', u'recept', u'time']
[u'cloncurri', u'council', u'tell', u'age', u'care', u'centr']
[u'close', u'game', u'croc']
[u'competitor', u'number', u'balloon', u'hot']
[u'construct', u'union', u'strike', u'fascist', u'reform']
[u'coron', u'see', u'wreckag', u'fatal', u'plane', u'crash']
[u'council', u'engin', u'local', u'govt', u'polici']
[u'councillor', u'hop', u'island', u'chang']
[u'council', u'mediat', u'orphanag', u'redevelop']
[u'council', u'worker', u'elector', u'doubl', u'standard']
[u'crespo', u'win', u'chelsea', u'angel', u'rescu', u'villa']
[u'crime', u'fighter', u'meet', u'melbourn']
[u'darwin', u'host', u'dog', u'port', u'clash']
[u'dead', u'whale', u'dispos', u'mammoth', u'problem']
[u'derbi', u'milan']
[u'diet', u'keep', u'children', u'overweight', u'studi']
[u'discount', u'good', u'driver', u'propos']
[u'doctor', u'group', u'warn', u'crisi', u'threaten', u'live']
[u'driver', u'urg', u'care', u'school', u'resum']
[u'driver', u'warn', u'equip', u'remov']
[u'drought', u'hit', u'highland', u'water', u'price']
[u'econom', u'boost', u'plan', u'port', u'kembla']
[u'euthanasia', u'advoc', u'build', u'suicid', u'machin']
[u'fame', u'yorker', u'cartoonist', u'die']
[u'fear', u'air', u'speech', u'patholog', u'job']
[u'fear', u'air', u'track', u'upgrad', u'tourism', u'impact']
[u'feder', u'drought', u'polici', u'review']
[u'feder', u'call', u'territori', u'home', u'soccer']
[u'delay', u'strand', u'sheep', u'ship']
[u'fighter', u'save', u'plan', u'melbourn']
[u'fisher', u'await', u'river', u'dredg']
[u'panther', u'kangaroo', u'tour']
[u'flame', u'strong', u'lightn']
[u'fund', u'question', u'hang', u'women', u'hospit']
[u'futur', u'bright', u'queensland', u'scout']
[u'georgian', u'flanker', u'tear', u'hamstr']
[u'german', u'streak', u'women', u'world', u'final']
[u'germani', u'sweden', u'world', u'final']
[u'good', u'qualiti', u'bull', u'brahman', u'week']
[u'govt', u'say', u'megawati', u'bali', u'ceremoni']
[u'grain', u'grower', u'spoil', u'harvest', u'choic']
[u'green', u'concern', u'spark', u'restrict', u'dredger']
[u'green', u'queri', u'chief', u'scientist', u'tinto', u'role']
[u'green', u'warn', u'tasmanian', u'giant', u'kelp']
[u'gunmen', u'kill', u'pakistani', u'milit', u'turn']
[u'health', u'servic', u'reject', u'debt', u'claim']
[u'helicopt', u'winch', u'miss', u'bushwalk', u'safeti']
[u'high', u'court', u'celebr', u'centenari']
[u'howard', u'pay', u'tribut', u'high', u'court', u'centenari']
[u'huston', u'hold', u'pappa', u'victori', u'mississippi']
[u'indigen', u'artist', u'river', u'mural']
[u'indonesian', u'polic', u'turn', u'blind', u'assault']
[u'intern', u'showcas', u'barossa', u'food', u'wine']
[u'internet', u'rise', u'septemb']
[u'investor', u'ignor', u'warn', u'gold', u'coast', u'tourist']
[u'iran', u'reveal', u'nuclear', u'program', u'part', u'locat']
[u'ironman', u'hurst', u'target', u'olymp', u'swim', u'spot']
[u'judg', u'jail', u'pervert', u'polic', u'offic']
[u'kalgoorli', u'hop', u'build', u'crime', u'initi']
[u'kangaroo', u'vulner', u'anderson']
[u'kill', u'death', u'threat', u'haunt', u'colombian', u'elect']
[u'land', u'earmark', u'rescu', u'group']
[u'lgaq', u'back', u'indigen', u'council', u'chang']
[u'liber', u'fail', u'improv', u'afghan', u'women', u'live']
[u'local', u'govt', u'leader', u'resign', u'south', u'east']
[u'appeal', u'jail', u'sentenc', u'welfar', u'fraud']
[u'mandela', u'inspir', u'springbok', u'thing']
[u'hospit', u'port', u'piri', u'stab']
[u'face', u'court', u'babysitt', u'bash']
[u'maul', u'magician', u'critic', u'stabl', u'tiger']
[u'mayor', u'push', u'transport', u'infrastructur', u'boost']
[u'megawati', u'expect', u'bali', u'memori']
[u'memori', u'centr', u'honour', u'bali', u'victim']
[u'face', u'gang', u'rape', u'charg', u'bunburi', u'court']
[u'minist', u'assess', u'region', u'busi', u'growth']
[u'minist', u'downsiz', u'alic', u'spring', u'develop']
[u'mix', u'respons', u'medic', u'levi', u'decis']
[u'surgeri', u'mcgrath']
[u'mortlock', u'miss', u'open', u'match']
[u'question', u'govt', u'palm', u'move']
[u'fear', u'liquor', u'trade', u'hour']
[u'breakthrough', u'attract', u'nobel', u'medicin', u'prize']
[u'muslim', u'refuge', u'pork', u'detent', u'activist']
[u'nation', u'leader', u'embrac', u'chang']
[u'nat', u'agre', u'wine', u'hard', u'swallow']
[u'netbal', u'recognis', u'communiti', u'effort']
[u'newspap', u'month', u'high']
[u'abattoir', u'put', u'hand', u'strand', u'sheep']
[u'farm', u'spider', u'shop']
[u'nypd', u'high', u'rise', u'tiger']
[u'miss', u'girl', u'search', u'continu']
[u'owen', u'england', u'turkey', u'qualifi']
[u'pakistan', u'firework', u'factori', u'claim', u'live']
[u'panther', u'continu', u'premiership', u'parti']
[u'panther', u'wrong', u'thing', u'sattler', u'john']
[u'panther', u'sunshin', u'coast', u'connect', u'enjoy', u'grand']
[u'papua', u'interven', u'work', u'permit']
[u'peac', u'doubt', u'kremlin', u'win', u'chechen']
[u'perth', u'crew', u'intercept', u'suspect', u'illeg', u'fish']
[u'plan', u'afoot', u'better', u'disabl', u'servic']
[u'plan', u'afoot', u'colli', u'pulp']
[u'eye', u'matern', u'allow']
[u'busi', u'alarm', u'foreign', u'worker']
[u'polic', u'driver', u'care', u'road', u'toll', u'climb']
[u'polic', u'plea', u'safe', u'return', u'home']
[u'polic', u'worker', u'kidnap', u'malaysian']
[u'pope', u'canonis', u'missionari']
[u'princ', u'harri', u'bring', u'econom', u'boom', u'rural']
[u'protest', u'like', u'russian', u'favourit', u'win']
[u'public', u'get', u'swan', u'hill']
[u'public', u'protest', u'colleg', u'closur', u'plan']
[u'public', u'urg', u'water', u'plan']
[u'qlds', u'famili', u'dept', u'condemn', u'child', u'death']
[u'rain', u'bring', u'hope', u'record', u'wheat', u'harvest']
[u'ralli', u'offer', u'wind', u'farm', u'support']
[u'recal', u'parliament', u'day', u'work', u'latham']
[u'relief', u'murray']
[u'report', u'back', u'govt', u'intervent', u'unborn', u'babi']
[u'research', u'aim', u'boost', u'grain', u'yield']
[u'research', u'stop', u'gladston', u'shop', u'exodus']
[u'resid', u'look', u'lower', u'cost']
[u'resourc', u'media', u'buoy', u'ord']
[u'riverfront', u'plan', u'avail', u'soon']
[u'roo', u'bolter', u'waterhous', u'scare', u'pom', u'anderson']
[u'rugbi', u'world', u'fever', u'build', u'townsvill']
[u'govern', u'slam', u'disabl', u'servic', u'slash', u'claim']
[u'give', u'kopassus', u'soldier', u'bodi']
[u'searcher', u'comb', u'blue', u'mountain', u'miss']
[u'search', u'miss', u'teen', u'tokelau', u'island']
[u'secur', u'council', u'meet', u'isra', u'raid']
[u'seven', u'indian', u'kashmir', u'violenc']
[u'sheep', u'protest', u'target', u'parliament', u'hous']
[u'skywest', u'perth', u'broom', u'servic', u'take']
[u'somalia', u'worker', u'report', u'kill', u'gunman']
[u'somar', u'stand', u'deputi', u'despit', u'parti', u'dump']
[u'south', u'east', u'volunt', u'group', u'share', u'fund']
[u'south', u'pacif', u'univers', u'leader', u'siwatibau', u'die']
[u'south', u'west', u'public', u'improv', u'health', u'access']
[u'specialist', u'review', u'job', u'resign']
[u'studi', u'aim', u'eas', u'teen', u'move', u'trauma']
[u'syria', u'demand', u'condemn', u'isra', u'strike']
[u'tasmania', u'warn', u'high', u'petrol', u'price']
[u'premier', u'offer', u'abbott', u'health', u'talk']
[u'telstra', u'convinc', u'mobil', u'problem']
[u'tesk', u'finish', u'second', u'california']
[u'dead', u'atlanta', u'church', u'shoot']
[u'time', u'run', u'mortlock']
[u'dog', u'work', u'scottsdal']
[u'trio', u'question', u'polic', u'ram']
[u'turnbul', u'go', u'elect', u'foot']
[u'union', u'demand', u'better', u'condit', u'centr']
[u'union', u'vow', u'fight', u'sydney', u'port', u'closur']
[u'unpreced', u'secur', u'bali', u'anniversari', u'polic']
[u'warn', u'slide', u'slum', u'dwell']
[u'upbeat', u'pakistan', u'protea', u'lead']
[u'say', u'syria', u'wrong', u'terror']
[u'valencia', u'real', u'madrid', u'danc', u'brazil', u'beat']
[u'oppn', u'give', u'qualifi', u'support', u'region']
[u'villeneuv', u'face', u'farewel']
[u'council', u'probe', u'river', u'cross', u'safeti']
[u'farmer', u'drainag', u'channel', u'work']
[u'govern', u'consid', u'relief', u'nickel', u'plant']
[u'join', u'nation', u'fight', u'salin']
[u'wallabi', u'fear', u'puma', u'forward', u'jone']
[u'wallabi', u'mortlock', u'struggl', u'ill']
[u'weapon', u'inspector', u'promis', u'remark', u'thing']
[u'wellington', u'public', u'quiz', u'hous']
[u'western', u'hurt', u'medic', u'levi', u'doctor']
[u'wind', u'farm', u'eyr', u'peninsula', u'fan', u'hop']
[u'wollongong', u'urg', u'canadian', u'rugbi']
[u'wood', u'clinch', u'titl', u'applebi', u'second']
[u'wool', u'price', u'fall', u'month']
[u'work', u'begin', u'secur', u'rockfal', u'area']
[u'work', u'port', u'crucial', u'sydney', u'charact']
[u'zabel', u'cap', u'telekom', u'weekend', u'ogradi']
[u'acoss', u'urg', u'senat', u'block', u'packag']
[u'open', u'bushfir', u'inquiri']
[u'adopt', u'code', u'face', u'olymp', u'pound', u'warn']
[u'aftershock', u'shake', u'hokkaido']
[u'black', u'william', u'undergo', u'fit', u'test']
[u'claim', u'boundari', u'chang', u'hurt', u'elect', u'chanc']
[u'chief', u'upbeat', u'address', u'doctor']
[u'anim', u'flee', u'ravag', u'zimbabw', u'nation', u'park']
[u'antarct', u'specialist', u'drown', u'tasmania']
[u'anwar', u'make', u'final', u'freedom']
[u'arroyo', u'deni', u'filipino', u'link', u'malaysia', u'kidnap']
[u'asean', u'leader', u'decid', u'tough', u'stand', u'burma']
[u'asylum', u'seeker', u'influx', u'shut', u'south', u'korean', u'embassi']
[u'aussi', u'best', u'behaviour', u'waugh']
[u'australia', u'back', u'commonwealth', u'secretari', u'general']
[u'australia', u'lead', u'rate', u'hike', u'tip']
[u'bali', u'secur', u'tighten', u'ahead', u'asean', u'summit']
[u'bali', u'survivor', u'refer', u'phone', u'threat']
[u'barb', u'world', u'build']
[u'bathurst', u'compos', u'hit', u'right', u'note', u'intern']
[u'beef', u'produc', u'oppos', u'livestock', u'scheme']
[u'bettini', u'chase', u'rainbow']
[u'brisban', u'brown', u'face', u'tribun', u'fall']
[u'brown', u'hand', u'week']
[u'bskyb', u'sell', u'entir', u'stake', u'unit']
[u'burk', u'latham', u'wallabi']
[u'busi', u'look', u'good']
[u'california', u'recal', u'elect', u'enter', u'final', u'stretch']
[u'indigen', u'health', u'boost']
[u'cambodia', u'charg', u'seven', u'record', u'heroin', u'haul']
[u'hold', u'irish', u'say', u'coach']
[u'cat', u'thompson', u'year']
[u'china', u'doubl', u'live', u'cattl', u'import', u'australia']
[u'church', u'condemn', u'car', u'beach']
[u'candid', u'declar', u'member', u'katherin']
[u'club', u'want', u'flaw', u'liquor', u'work']
[u'probe', u'foster', u'famili', u'abus', u'claim']
[u'coff', u'harbour', u'base', u'boon', u'wallabi']
[u'committe', u'hear', u'cardiologist', u'case', u'contract']
[u'computershar', u'size', u'communic', u'compani']
[u'confer', u'kick', u'farm', u'focus']
[u'council', u'back', u'fight', u'rail', u'servic']
[u'council', u'defend', u'dredg', u'despit', u'pollut']
[u'council', u'look', u'localis', u'care']
[u'councillor', u'seek', u'industri', u'firm', u'shed', u'job']
[u'council', u'reject', u'burnett', u'river', u'marina', u'develop']
[u'council', u'reject', u'ax', u'consult', u'claim']
[u'council', u'approv', u'hous', u'applic']
[u'council', u'focus', u'infrastructur']
[u'council', u'tire', u'wait', u'coolac', u'bypass']
[u'council', u'join', u'whale', u'buri', u'effort']
[u'council', u'want', u'govt', u'remov', u'bomb']
[u'countdown', u'vaccin', u'childhood']
[u'crawford', u'captain', u'rule']
[u'cuba', u'deni', u'germ', u'warfar', u'accus']
[u'czech', u'bushwalk', u'rescu', u'night', u'snow']
[u'death', u'spark', u'river', u'cross', u'assess']
[u'develop', u'plan', u'clear', u'darwin', u'mangrov']
[u'offer', u'lead', u'moran', u'probe']
[u'doctor', u'consid', u'strike', u'insur', u'bill']
[u'drought', u'support', u'stop', u'farmer']
[u'dubbo', u'host', u'nuclear', u'wast', u'transport', u'meet']
[u'elder', u'woman', u'attack', u'cemeteri', u'ground']
[u'elkington', u'return', u'aussi', u'action']
[u'england', u'strength', u'georgia', u'clash']
[u'england', u'drop', u'ferdinand', u'turkey', u'match', u'report']
[u'england', u'star', u'ferdinand', u'drug', u'controversi']
[u'chief', u'resign', u'head', u'offic', u'move', u'darwin']
[u'ethanol', u'produc', u'techniqu', u'focus']
[u'event', u'respons', u'influx', u'visitor']
[u'fan', u'honour', u'premiership', u'panther']
[u'fear', u'flow', u'live', u'murray', u'debat']
[u'fear', u'fund', u'cut', u'northern', u'servic']
[u'fijian', u'winger', u'tell', u'lift', u'game']
[u'fiji', u'power', u'boss', u'pledg', u'extra', u'juic', u'world']
[u'fiji', u'readi', u'turn', u'tabl', u'franc']
[u'home', u'buyer', u'warn', u'scam']
[u'injur', u'holiday', u'crash']
[u'fletcher', u'sign', u'england', u'deal']
[u'flintoff', u'bangladesh', u'test']
[u'focus', u'ship', u'port', u'kembla']
[u'dead', u'hostag', u'crisi', u'philippin']
[u'franc', u'confid', u'despit', u'recent', u'defeat']
[u'french', u'prop', u'marconnet', u'fiji', u'japan']
[u'govt', u'consid', u'christma', u'coco', u'island']
[u'govt', u'urg', u'stop', u'play', u'timber', u'blame', u'game']
[u'govt', u'improv', u'indigen', u'access', u'famili', u'record']
[u'grazier', u'hope', u'muster', u'support', u'chopper', u'plan']
[u'harrigan', u'ponder', u'retir']
[u'heal', u'sign', u'spur']
[u'health', u'expert', u'converg', u'cairn']
[u'health', u'worker', u'protest', u'privat', u'sector', u'chang']
[u'health', u'worker', u'strike', u'support', u'newcastl']
[u'hedland', u'hospit', u'condit', u'creat', u'concern']
[u'holiday', u'traffic', u'prompt', u'wildlif', u'warn']
[u'hope', u'wind', u'farm', u'work', u'soon']
[u'horgan', u'irish', u'team']
[u'hospit', u'worker', u'protest', u'privatis']
[u'hospit', u'worker', u'join', u'privatis', u'protest']
[u'ask', u'video', u'footag', u'hall', u'youhana', u'spat']
[u'indemn', u'crisi', u'threaten', u'rural', u'birth', u'doctor']
[u'indian', u'ferri', u'pack', u'schoolchildren', u'sink']
[u'india', u'wrestl', u'open', u'woe']
[u'industri', u'action', u'hit', u'elect', u'surgeri']
[u'insur', u'woe', u'affect', u'railway']
[u'investig', u'reach', u'congo', u'massacr', u'site']
[u'iraq', u'foreign', u'ministri', u'mortar', u'attack']
[u'iraq', u'kuwait', u'border', u'peacekeep', u'signal', u'pullout']
[u'isra', u'soldier', u'shoot', u'dead', u'lebanes', u'border']
[u'itali', u'field', u'strength']
[u'japan', u'maintain', u'right', u'particip', u'nuclear']
[u'japan', u'prepar', u'world']
[u'japan', u'quiz', u'worker', u'china', u'orgi', u'report']
[u'japan', u'report', u'strain', u'diseas']
[u'job', u'boost', u'wind', u'power', u'generat', u'plan']
[u'kangaroo', u'clam', u'campbel', u'snub']
[u'kirbi', u'say', u'terror', u'prolong', u'death', u'penalti']
[u'knight', u'team', u'mat', u'select', u'australian']
[u'labor', u'call', u'return', u'strip']
[u'labor', u'icon', u'concern', u'elect', u'chanc']
[u'land', u'council', u'consid', u'respons', u'jabiluka']
[u'latest', u'rusti', u'site', u'item', u'consid']
[u'lend', u'leas', u'clinch', u'militari', u'contract']
[u'colleagu', u'question', u'turnbul', u'poll']
[u'liber', u'backbench', u'say', u'polit', u'place']
[u'local', u'govt', u'group', u'voic', u'telstra', u'sale', u'fear']
[u'local', u'televis', u'radio', u'risk', u'free', u'trade']
[u'looksmart', u'share', u'plung', u'microsoft', u'pull', u'plug']
[u'arrest', u'highway', u'crash']
[u'kill', u'mobil', u'phone', u'wallet', u'court', u'tell']
[u'aussi', u'worker', u'dont', u'like', u'job', u'survey']
[u'market', u'gain', u'holiday', u'trade']
[u'market', u'slight', u'mix', u'blue', u'chip']
[u'melbourn', u'die', u'buller', u'ski', u'accid']
[u'melbourn', u'showground', u'sell', u'condemn']
[u'merg', u'claim', u'leagu', u'team']
[u'west', u'resurrect', u'rugbi', u'leagu', u'comp']
[u'misplac', u'reconcili', u'prayer', u'land', u'coupl']
[u'fund', u'fight', u'indigen', u'famili', u'violenc']
[u'test', u'resid', u'creat', u'nois', u'bypass']
[u'mortlock', u'open']
[u'mower', u'miss', u'scotland', u'open']
[u'get', u'gippsland', u'race', u'track', u'assur']
[u'reject', u'ruddock', u'meatwork', u'idea']
[u'gaug', u'public', u'view', u'rail', u'closur', u'plan']
[u'ruddock', u'guarante', u'independ', u'court']
[u'chechen', u'presid', u'vow', u'ruthless', u'crackdown']
[u'govt', u'minist', u'swear']
[u'year', u'rate', u'hike', u'concern', u'busi']
[u'korea', u'tri', u'japan', u'nuclear', u'talk']
[u'compo']
[u'northam', u'redevelop', u'hit', u'second', u'stage']
[u'border', u'hamper', u'firefight']
[u'hospit', u'worker', u'strike', u'privatis']
[u'oneil', u'wont', u'stand']
[u'owen', u'injuri', u'crisi', u'mount']
[u'pacif', u'job', u'aussi', u'retir', u'vanuatu']
[u'palestinian', u'resist', u'crackdown', u'milit']
[u'paradis', u'face', u'huge', u'cost', u'blow']
[u'parent', u'view', u'need', u'curb', u'drink', u'rat']
[u'pavarotti', u'sound', u'career', u'sing', u'teacher']
[u'philippin', u'join', u'aust', u'major', u'alli']
[u'pirat', u'sink']
[u'abbott', u'urg', u'doctor', u'cooper', u'medic']
[u'militari', u'hunt', u'wartim', u'gold']
[u'polic', u'tougher', u'bike', u'helmet']
[u'polic', u'happi', u'long', u'weekend', u'driver']
[u'polic', u'probe', u'lennox', u'head', u'pedestrian', u'accid']
[u'polic', u'question', u'homeless', u'dead']
[u'polic', u'seek', u'wit', u'abduct', u'attempt']
[u'polic', u'probe', u'attempt', u'child', u'abduct']
[u'pope', u'health', u'hold', u'final', u'trip', u'pompeii']
[u'port', u'plan', u'lead', u'multi', u'purpos', u'termin']
[u'port', u'plan', u'consid', u'good', u'news', u'england']
[u'premier', u'support', u'kalgoorli', u'boulder']
[u'pressur', u'arafat', u'swear', u'emerg', u'cabinet']
[u'princ', u'harri', u'nomin', u'beef', u'ambassador']
[u'puma', u'rolando', u'martin', u'retir', u'world']
[u'govt', u'seek', u'rent', u'assist', u'review']
[u'rain', u'dampen', u'gold', u'coast']
[u'rain', u'help', u'avoid', u'water', u'restrict']
[u'ranger', u'remov', u'johnston', u'river', u'croc']
[u'rann', u'foreshadow', u'mine', u'boom', u'wave', u'goodby']
[u'razzak', u'hit', u'protea', u'lose', u'control']
[u'receivership', u'place', u'age', u'care', u'bond', u'risk']
[u'reef', u'ground', u'case', u'adjourn']
[u'registrar', u'unabl', u'challeng', u'name', u'rule', u'lawyer']
[u'research', u'project', u'test', u'reaction', u'forestri']
[u'resid', u'angri', u'abattoir', u'decis']
[u'rspca', u'urg', u'owner', u'pet']
[u'govt', u'return', u'biospher', u'park', u'indigen']
[u'samoa', u'promis', u'champagn', u'rugbi']
[u'pressur', u'centr', u'code']
[u'give', u'vet', u'minist', u'thumb']
[u'sato', u'replac', u'villeneuv']
[u'saudi', u'arabia', u'behead', u'pakistani', u'drug', u'smuggler']
[u'scotland', u'half', u'rat', u'england', u'rugbi', u'world']
[u'scotland', u'half', u'tip', u'england', u'mccallion', u'flay']
[u'scottsdal', u'age', u'care', u'resid', u'farmyard']
[u'serena', u'real', u'number', u'say', u'clijster']
[u'shire', u'happi', u'power', u'plant', u'plan']
[u'shock', u'defeat', u'robredo', u'vienna']
[u'singl', u'market', u'domin', u'asean', u'talk']
[u'resort', u'benefit', u'sar', u'terrorist', u'threat']
[u'solomon', u'polic', u'exhum', u'alleg', u'keke', u'victim', u'grave']
[u'spectacular', u'meteor', u'crack', u'sound', u'barrier', u'perth']
[u'springbok', u'skipper', u'say', u'team', u'closer']
[u'state', u'gold', u'toowoomba', u'green']
[u'steffi', u'make', u'andr']
[u'stop', u'work', u'loom', u'health', u'privatis']
[u'strong', u'currenc', u'cap', u'farmer', u'return']
[u'strong', u'respons', u'live', u'export', u'petit']
[u'syria', u'court', u'support']
[u'syria', u'push', u'revis', u'resolut', u'isra']
[u'tassi', u'wine', u'get', u'danish', u'royal', u'seal', u'approv']
[u'teen', u'crash', u'steal', u'dead']
[u'tenni', u'great', u'announc', u'birth', u'second', u'child']
[u'theme', u'park', u'spar', u'shark', u'cruelti', u'charg']
[u'tibetan', u'monk', u'letter', u'accus', u'china', u'tortur']
[u'earli', u'predict', u'bumper', u'grain', u'harvest']
[u'tourism', u'campaign', u'use', u'real', u'peopl']
[u'tourism', u'chief', u'lament', u'clune', u'credit', u'union', u'closur']
[u'tourism', u'push', u'riverland']
[u'trio', u'make', u'quantum', u'leap', u'nobel', u'physic', u'prize']
[u'artist', u'build', u'replica', u'guantanamo', u'camp']
[u'ullrich', u'target', u'armstrong']
[u'union', u'say', u'australian', u'offici', u'arrest', u'east']
[u'union', u'warn', u'govt', u'child', u'abus', u'crisi']
[u'scholarship', u'honour', u'bali', u'victim']
[u'peacekeep', u'bodi', u'central', u'africa']
[u'court', u'refus', u'world', u'trade', u'centr', u'bomber', u'appeal']
[u'monitor', u'predict', u'worldwid', u'grain', u'shortag']
[u'resolut', u'iraq', u'make', u'progress']
[u'swap', u'colombia', u'militari', u'immun']
[u'veron', u'tell']
[u'vice', u'chancellor', u'criticis', u'sydney', u'strike']
[u'opposit', u'seek', u'action', u'combat', u'drug']
[u'policeman', u'clear', u'murder']
[u'victoria', u'ticket', u'fin', u'hike', u'doyl']
[u'govt', u'releas', u'desalin', u'pipelin', u'report']
[u'wallabi', u'squad', u'open']
[u'prepar', u'cyclon', u'season']
[u'weather', u'condit', u'spark', u'mozzi', u'virus', u'warn']
[u'whyalla', u'plan', u'solar', u'power', u'plant']
[u'william', u'blake', u'defend', u'hopman']
[u'wool', u'grower', u'urg', u'discuss', u'poll']
[u'wool', u'market', u'woe', u'tambo']
[u'zim', u'grow', u'flower', u'say', u'blignaut']
[u'abattoir', u'develop', u'await', u'appeal', u'outcom']
[u'casual', u'bushfir', u'risk', u'inquest', u'tell']
[u'deni', u'draw', u'favour', u'pie']
[u'ail', u'lock', u'travel', u'black']
[u'allenbi', u'applebi', u'confirm', u'australian', u'open']
[u'amnesti', u'intern', u'sponsor', u'adelaid', u'music']
[u'appoint', u'benefit', u'hospit', u'patient', u'staff']
[u'arafat', u'recov', u'mild', u'heart', u'attack', u'british']
[u'arni', u'support', u'confid']
[u'arson', u'eaglehawk', u'shop', u'blaze']
[u'arthriti', u'drug', u'test', u'prematur', u'babi']
[u'asean', u'talk', u'free', u'trade', u'democraci', u'aggress']
[u'attack', u'strike', u'troop', u'iraq', u'foreign', u'ministri']
[u'aussi', u'dollar', u'tip', u'reach', u'cent', u'level']
[u'aussi', u'finish', u'sixth', u'world', u'champ']
[u'aust', u'england', u'extra', u'secur']
[u'aust', u'lobbi', u'fail', u'save', u'histor', u'changi', u'prison']
[u'australia', u'monitor', u'sar', u'world']
[u'award', u'central', u'victorian', u'tourism']
[u'ax', u'ferdinand', u'deni', u'drug']
[u'botha', u'expect', u'return', u'open']
[u'bali', u'bomb', u'accomplic', u'jail']
[u'bali', u'survivor', u'posit', u'outlook', u'life']
[u'beat', u'wallabi', u'argentina', u'skipper']
[u'beckham', u'join', u'wilkinson', u'corner']
[u'jump', u'wimmera', u'malle', u'pipelin', u'cost']
[u'blind', u'barrier', u'high', u'fli', u'adventur']
[u'bosnian', u'serb', u'revers', u'guilti', u'plea']
[u'launch', u'broadway', u'ambit']
[u'bunburi', u'urg', u'govt', u'health', u'fund']
[u'burdekin', u'grower', u'predict', u'record', u'sugar', u'season']
[u'bush', u'doubt', u'white', u'hous', u'sourc', u'leak']
[u'better', u'grain', u'plan', u'weather', u'lean']
[u'land', u'council', u'execut', u'sack']
[u'canadian', u'media', u'baron', u'die']
[u'carr', u'deni', u'port', u'overhaul', u'close', u'sydney', u'harbour']
[u'cattl', u'quarantin', u'japan', u'outbreak']
[u'cell', u'discoveri', u'earn', u'chemist', u'nobel', u'prize']
[u'champ', u'defend', u'ironman', u'titl']
[u'china', u'set', u'date', u'man', u'space', u'flight']
[u'chines', u'construct', u'site', u'collaps', u'kill']
[u'christma', u'label', u'sheep', u'offload', u'plan', u'laughabl']
[u'claim', u'elig', u'compo']
[u'clijster', u'opt', u'showdown']
[u'code', u'sourc', u'theft', u'take', u'life', u'vivendi', u'sale']
[u'coldplay', u'singer', u'fate', u'polic', u'hand']
[u'commiss', u'lift', u'contract', u'miner']
[u'conserv', u'park', u'return', u'aborigin']
[u'contractor', u'continu', u'hazard', u'reduct']
[u'contractor', u'cost', u'delay', u'townsvill', u'work']
[u'corpor', u'reform', u'help', u'execut', u'salari']
[u'costello', u'back', u'fair', u'fight', u'wentworth']
[u'council', u'back', u'controversi', u'port', u'expans']
[u'councillor', u'put', u'polit', u'career', u'hold']
[u'council', u'lobbi', u'govern', u'clean']
[u'court', u'order', u'tobacco', u'exec', u'appear', u'trial']
[u'danish', u'govt', u'okay', u'australian', u'royal', u'bride']
[u'danish', u'princ', u'marri', u'appl']
[u'depart', u'measur', u'impact', u'cage', u'regul']
[u'doctor', u'withdraw', u'servic', u'despit', u'levi']
[u'dollar', u'break', u'cent']
[u'dollar', u'shoot', u'year', u'high']
[u'dolphin', u'die', u'beach', u'strand']
[u'domest', u'violenc', u'counsel', u'go', u'high', u'tech']
[u'dpis', u'poor', u'sugar', u'outlook', u'surpris']
[u'dravid', u'centuri', u'anchor', u'india']
[u'congo', u'massacr', u'toll', u'hit']
[u'environment', u'group', u'condemn', u'transport', u'nuclear']
[u'wont', u'legal', u'action', u'chemic', u'scare']
[u'eurobodalla', u'face', u'tougher', u'water', u'restrict']
[u'exit', u'poll', u'point', u'arni']
[u'farmer', u'urg', u'drought', u'effort']
[u'fear', u'adelaid', u'suburban', u'sunday', u'trade', u'hurt']
[u'fear', u'air', u'region', u'engin', u'number']
[u'feder', u'stay', u'cours', u'number']
[u'govt', u'reject', u'reduc', u'servic', u'claim']
[u'govt', u'reject', u'wimmera', u'malle', u'drought', u'attack']
[u'fewer', u'rare', u'parrot', u'sight', u'south', u'west']
[u'fin', u'increas', u'keep', u'feral', u'pig']
[u'firefight', u'tackl', u'kimberley', u'blaze']
[u'fix', u'term', u'prevent', u'dictatori', u'senat', u'clerk']
[u'forens', u'sampl', u'take', u'murder', u'accus']
[u'cathol', u'priest', u'jail', u'year']
[u'tobacco', u'solicitor', u'continu', u'fight', u'avoid']
[u'time', u'medic', u'specialist', u'levi', u'fight']
[u'fund', u'flow', u'church', u'restor']
[u'furyk', u'gain', u'grind', u'leader', u'skip', u'vega']
[u'gleeson', u'aim', u'aussi', u'miss']
[u'goldfield', u'esper', u'share', u'fund']
[u'gold', u'open', u'colleg']
[u'good', u'rural', u'forecast']
[u'govt', u'say', u'hick', u'habib', u'human', u'treat']
[u'govt', u'urg', u'consid', u'squat', u'right']
[u'greenhous', u'effect', u'blame', u'rock', u'lobster', u'boom']
[u'gregan', u'mileston']
[u'group', u'want', u'mental', u'health', u'fund', u'maintain']
[u'half', u'million', u'aussi', u'high', u'speed', u'internet']
[u'heavi', u'rainfal', u'record']
[u'henin', u'hardenn', u'begin', u'unseat', u'clijster']
[u'hospit', u'staff']
[u'howard', u'releas', u'senat', u'propos']
[u'illeg', u'fish', u'crackdown', u'net', u'boat']
[u'insur', u'disput', u'stall', u'stromlo', u'observatori']
[u'interact', u'highlight', u'mental', u'health']
[u'interdict', u'group', u'draft', u'aviat', u'secur', u'drill']
[u'rate', u'freez', u'boost', u'bank', u'stock', u'market']
[u'iranian', u'find', u'inquiri', u'photograph', u'death']
[u'iraq', u'attack', u'kill', u'troop', u'hour']
[u'iraqi', u'shiit', u'continu', u'protest', u'cleric']
[u'isra', u'troop', u'section', u'gaza', u'terror', u'control']
[u'jone', u'shrug', u'home', u'defenc', u'pressur']
[u'jone', u'urg', u'refere', u'spectacl']
[u'karzai', u'deni', u'taliban', u'foreign', u'minist', u'free']
[u'labor', u'backbench', u'threaten', u'snub', u'presid']
[u'land', u'council', u'say', u'court', u'case', u'wont', u'hurt']
[u'leed', u'cooper', u'polic', u'assault']
[u'liquor', u'licenc', u'cost', u'wineri', u'thousand']
[u'lomu', u'honour', u'special', u'award']
[u'macgil', u'get']
[u'mafia', u'doubl', u'decker', u'coffin', u'bodi', u'dispos']
[u'major', u'power', u'failur', u'black', u'czech', u'republ']
[u'malaysian', u'vandalis', u'rout', u'australia']
[u'malaysian', u'call', u'aust', u'clarifi', u'allegi']
[u'charg', u'felin', u'flatmat', u'miss']
[u'crech', u'offer', u'frustrat', u'femal', u'shopper']
[u'kill', u'jail', u'multipl', u'murder']
[u'manufactur', u'pool', u'accid', u'stori', u'court', u'tell']
[u'face', u'court', u'lavington', u'incid']
[u'maralinga', u'tradit', u'owner', u'handov', u'term']
[u'meet', u'plan', u'discuss', u'turkish', u'troop', u'deploy']
[u'melbourn', u'construct', u'worker', u'strike']
[u'melbourn', u'make', u'stop']
[u'geraldton', u'centr']
[u'west', u'group', u'compet', u'green', u'award']
[u'militari', u'claim', u'kill', u'aceh', u'rebel']
[u'minist', u'boycott', u'cabinet', u'swear', u'ceremoni']
[u'prevent', u'work', u'undertak']
[u'strike', u'promis', u'health', u'privatis']
[u'air', u'medic', u'indemn', u'solut']
[u'happi', u'corangamit', u'preselect']
[u'reflect', u'reduc', u'public', u'drunken']
[u'murder', u'investig', u'prison', u'dead']
[u'navi', u'part', u'respons', u'drink', u'drive', u'fatal']
[u'chapter', u'open', u'riverina', u'librari', u'servic']
[u'legisl', u'enhanc', u'qlds', u'tourism', u'industri']
[u'tenanc', u'law', u'boost', u'small', u'busi']
[u'evid', u'support', u'fals', u'passport', u'claim']
[u'polic', u'radio', u'upgrad', u'black', u'spot']
[u'abandon', u'impoverish', u'children', u'report']
[u'minist', u'deni', u'plagiar', u'claim']
[u'opposit', u'question', u'dodgi', u'medic', u'indemn']
[u'opposit', u'seek', u'explain', u'return']
[u'pacif', u'airlin', u'staff', u'strike']
[u'pakistan', u'conduct', u'missil', u'test']
[u'parliament', u'tell', u'drought', u'take', u'toll', u'western']
[u'alic', u'reserv']
[u'philippin', u'malaysia', u'track', u'resort', u'staff', u'kidnapp']
[u'releas', u'senat', u'reform', u'propos']
[u'polic', u'happi', u'miss', u'camper', u'search']
[u'polic', u'interview', u'prison', u'gangland', u'slay']
[u'polic', u'seek', u'see', u'hammer', u'homeless']
[u'polic', u'trainer', u'caution', u'recruit', u'abus']
[u'politician', u'back', u'anim', u'feed']
[u'presid', u'pledg', u'iran', u'assist', u'nuclear']
[u'prison', u'face', u'charg']
[u'protea', u'claim', u'victori', u'violenc', u'sweep', u'citi']
[u'public', u'deficit', u'put', u'franc', u'breach', u'rule']
[u'public', u'warn', u'fall', u'powerlin', u'danger']
[u'health', u'upbeat', u'whitsunday', u'measl', u'fight']
[u'reserv', u'leav', u'rat', u'unchang']
[u'riot', u'follow', u'slay', u'pakistani', u'funer']
[u'rise', u'floodwat', u'displac', u'chines']
[u'road', u'safeti', u'campaign', u'deliv', u'mix', u'result']
[u'robson', u'name', u'nigeria', u'coach']
[u'roma', u'receiv', u'grant', u'cultur', u'precinct', u'project']
[u'rspca', u'wont', u'charg', u'world', u'shark']
[u'outlin', u'prefer', u'highway', u'option']
[u'sack', u'wool', u'worker', u'seek', u'bigger', u'payout']
[u'safin', u'comeback', u'falter', u'lyon']
[u'schumach', u'aim', u'doubl', u'japan']
[u'schwarzenegg', u'claim', u'victori', u'california', u'poll']
[u'schwarzenegg', u'homeland', u'welcom', u'victori']
[u'search', u'mine', u'mecca']
[u'asia', u'vulner', u'terror', u'attack', u'expert']
[u'secur', u'concern', u'ahead', u'bali']
[u'secur', u'upgrad', u'bathurst']
[u'sharon', u'warn', u'syria', u'action']
[u'figur', u'studi', u'valu', u'world', u'class']
[u'korea', u'find', u'north', u'talk', u'stanc', u'improp']
[u'south', u'africa', u'broker', u'burundi', u'peac', u'deal']
[u'spanish', u'french', u'polic', u'swoop', u'suspect']
[u'mooroopna', u'factori', u'buyer']
[u'spear', u'fight', u'week', u'life', u'communiti']
[u'specialist', u'medic', u'liabil', u'reform', u'deadlin']
[u'state', u'defend', u'govt', u'road', u'record']
[u'state', u'want', u'govt', u'cattl', u'properti']
[u'studi', u'consid', u'hors', u'centr', u'viabil']
[u'summit', u'number', u'drop', u'town', u'lose', u'transport']
[u'supermarket', u'secur', u'beckham']
[u'survey', u'highlight', u'young', u'drink', u'woe']
[u'sydney', u'port', u'closur', u'crucial', u'region', u'economi']
[u'legal', u'limit', u'jail', u'case']
[u'teen', u'gold', u'coast', u'road', u'crash']
[u'teen', u'face', u'charg', u'fatal', u'road', u'crash']
[u'telstra', u'servic', u'figur', u'fiddl', u'labor']
[u'thousand', u'flock', u'rural', u'field', u'day']
[u'soldier', u'kill', u'iraq']
[u'time', u'wallabi', u'line', u'experi', u'ella']
[u'earli', u'decid', u'eas', u'water', u'restrict']
[u'research', u'centr', u'focus', u'marin']
[u'topsi', u'turvi', u'start', u'commonwealth', u'countri', u'summit']
[u'public', u'servant', u'die']
[u'tour', u'oper', u'worri', u'elector', u'boundari']
[u'trade', u'offici', u'garner', u'busi', u'opportun']
[u'trade', u'hall', u'council', u'support', u'port', u'polici']
[u'train', u'driver', u'hope', u'break', u'drug', u'test', u'impass']
[u'turkish', u'parliament', u'approv', u'troop', u'iraq']
[u'turk', u'express', u'uneas', u'iraq', u'deploy']
[u'union', u'claim', u'hospit', u'strike', u'success']
[u'polic', u'accus', u'assault', u'australian', u'union']
[u'uruguay', u'leav', u'late', u'goalkick', u'bench']
[u'prosecutor', u'appeal', u'sept', u'court']
[u'tri', u'black', u'market', u'iraqi', u'weapon']
[u'vanston', u'maintain', u'govt', u'tough', u'immigr', u'stanc']
[u'construct', u'worker', u'ralli', u'industri']
[u'construct', u'worker', u'strike']
[u'govt', u'deni', u'council', u'game', u'fund', u'claim']
[u'parliament', u'hear', u'toxic', u'plant', u'petit']
[u'improv', u'child', u'death', u'probe']
[u'push', u'chang', u'suprem', u'court']
[u'victorian', u'govt', u'announc', u'closer', u'watch', u'multipl']
[u'vietnam', u'tone', u'wed', u'parti']
[u'look', u'japan', u'trade', u'option']
[u'minist', u'label', u'road', u'fund', u'threat']
[u'afford', u'world', u'hand', u'out', u'rugbi', u'boss']
[u'winemak', u'drink', u'earli', u'success']
[u'woolsh', u'get', u'award', u'honour']
[u'work', u'begin', u'gambier', u'skate', u'park']
[u'world', u'youth', u'complac', u'aid']
[u'chief', u'risk', u'lame', u'duck', u'status', u'talk', u'collaps']
[u'youth', u'worker', u'demand', u'talk', u'premier']
[u'aborigin', u'women', u'unit', u'child', u'abus']
[u'aborigin', u'refuge', u'group', u'plan', u'world', u'protest']
[u'accc', u'defend', u'interconnector', u'subsidi', u'decis']
[u'manag', u'plan', u'time']
[u'jobless', u'rate', u'unchang']
[u'antibiot', u'delay', u'alzheim', u'symptom', u'research']
[u'anti', u'depress', u'prescript', u'concern', u'medic']
[u'applebi', u'lead', u'vega']
[u'aussi', u'heartbreak', u'podium', u'near', u'miss']
[u'barra', u'season', u'shut', u'gulf', u'water']
[u'bayliss', u'look', u'malaysia']
[u'beachley', u'advanc', u'quarter', u'final', u'french']
[u'beachley', u'track', u'world', u'rank']
[u'beatti', u'call', u'queensland', u'rememb']
[u'belgium', u'court', u'reject', u'falungong', u'suit']
[u'turnout', u'farewel', u'armidal', u'famili']
[u'black', u'player', u'deserv', u'place', u'flower']
[u'block', u'bill', u'public', u'vote', u'democrat']
[u'boati', u'welcom', u'safeti', u'chang']
[u'bok', u'drama', u'bring', u'team', u'closer']
[u'bombay', u'polic', u'disconnect', u'flash', u'mob']
[u'bomber', u'releas', u'solomon']
[u'brazil', u'kill', u'squad', u'activ', u'envoy']
[u'bring', u'sheep', u'home', u'wipe', u'nativ', u'speci']
[u'british', u'compani', u'make', u'lehmann', u'win']
[u'break', u'hill', u'possibl', u'site', u'luhrmann', u'movi']
[u'budget', u'deficit', u'loom', u'mildura', u'hospit']
[u'bush', u'visit', u'setback', u'outback', u'summit']
[u'busi', u'ask', u'join', u'agricultur', u'colleg', u'ralli']
[u'businesswoman', u'prepar', u'return', u'bali']
[u'council', u'refuge', u'support']
[u'region', u'consid', u'call']
[u'calm', u'reject', u'neighbour', u'claim']
[u'canadian', u'avant', u'gard', u'jewel', u'fund', u'stir']
[u'canadian', u'parti', u'lobbi', u'mugab', u'arrest']
[u'cancer', u'survivor', u'marsh', u'name', u'french', u'team']
[u'carr', u'reject', u'oppn', u'ship', u'trade', u'infrastructur', u'doubt']
[u'cat', u'sharpen', u'claw', u'fanci', u'felin']
[u'cattl', u'industri', u'renew', u'call', u'meat', u'offic']
[u'chang', u'afoot', u'ambo', u'hospit', u'delay']
[u'china', u'flood', u'kill', u'rain', u'come']
[u'chines', u'hunger', u'stainless', u'steel', u'feed', u'aust']
[u'chines', u'presid', u'doesnt', u'belong', u'democrat']
[u'coalit', u'iraqi', u'council', u'clash', u'turkish']
[u'colombian', u'guerilla', u'hostag', u'appear']
[u'contamin', u'food', u'spark', u'outbreak']
[u'council', u'consid', u'club', u'high', u'water']
[u'council', u'fear', u'sport', u'fund', u'cut']
[u'council', u'look', u'reopen', u'rail', u'cross']
[u'councillor', u'move', u'stop', u'road', u'build']
[u'countri', u'meet', u'discuss', u'interdict', u'initi']
[u'cunnamulla', u'farm', u'put', u'effluent', u'good']
[u'darl', u'down', u'prove', u'popular', u'tourist']
[u'doctor', u'want', u'ongo', u'patient', u'cost', u'remov']
[u'dravid', u'doubl', u'put', u'india', u'command']
[u'dubbo', u'rule', u'site', u'trial']
[u'duti', u'scheme', u'useless', u'canberra', u'home', u'buyer']
[u'educ', u'dept', u'staff', u'strike', u'razor', u'plan']
[u'england', u'player', u'angri', u'despit', u'boycott', u'backdown']
[u'england', u'player', u'boycott', u'threat']
[u'england', u'scrum', u'half', u'dawson', u'open']
[u'iceman', u'cling', u'championship', u'dream']
[u'favourit', u'unbeaten', u'french']
[u'favourit', u'burden', u'kiwi']
[u'fiji', u'sport', u'minist', u'refus', u'visa', u'attend', u'rugbi']
[u'firefight', u'gain', u'control', u'kimberley', u'blaze']
[u'branch', u'presid', u'face', u'court', u'child']
[u'inspector', u'warn', u'poor', u'crane', u'driver', u'train']
[u'leisur', u'centr', u'financ', u'manag', u'face']
[u'frenchwoman', u'atlant', u'west', u'east']
[u'negoti', u'deni', u'treason', u'charg']
[u'geolog', u'serpent', u'naga', u'firebal']
[u'georgian', u'scar', u'england', u'clash']
[u'gladston', u'hotel', u'get', u'green', u'light', u'adult']
[u'gold', u'coast', u'memori', u'honour', u'bali', u'bomb', u'victim']
[u'governor', u'arni', u'give', u'movi', u'career']
[u'governor', u'general', u'welcom', u'world', u'chief', u'justic']
[u'govt', u'back', u'indemn', u'levi']
[u'govt', u'issu', u'warn', u'bali', u'ceremoni']
[u'govt', u'move', u'clamp', u'prison', u'secur']
[u'govt', u'urg', u'streamlin', u'aquacultur', u'approv']
[u'govt', u'urg', u'offer', u'afghani', u'perman', u'resid']
[u'gregan', u'confid', u'play', u'open']
[u'approv', u'burrup', u'methanol', u'plant']
[u'hampstead', u'control', u'tran', u'tasman', u'test']
[u'harri', u'potter', u'excerpt', u'help', u'german', u'homeless']
[u'hayden', u'savag', u'zimbabw']
[u'header', u'head', u'west', u'muster']
[u'health', u'care', u'develop', u'promis', u'job', u'boost']
[u'hewitt', u'focus', u'davi']
[u'horror', u'indonesian', u'smash', u'claim', u'live']
[u'hospic', u'group', u'tri', u'fund', u'shortfal']
[u'hunter', u'water', u'urg', u'review', u'overtim', u'polici']
[u'hurst', u'chanc', u'swim', u'team', u'cotterel']
[u'hurst', u'chanc', u'make', u'nation', u'swim']
[u'india', u'put', u'black', u'cap', u'rack']
[u'indonesia', u'australia', u'discuss', u'fight', u'region']
[u'industri', u'toy', u'christma', u'wish', u'list']
[u'injuri', u'open', u'rugbi', u'world', u'chanc', u'molong']
[u'injuri', u'worri', u'england', u'ahead', u'open']
[u'inquest', u'hear', u'plan', u'fail', u'consid', u'larg']
[u'iranian', u'woman', u'hang', u'strangl']
[u'iraq', u'grenad', u'attack', u'kill', u'soldier']
[u'iraq', u'chang', u'honour', u'arni']
[u'japanes', u'dog', u'style', u'canin', u'cafe']
[u'jobless', u'rate', u'rise']
[u'judg', u'reject', u'milk', u'law', u'review', u'applic']
[u'kiwi', u'lead', u'seven', u'team', u'battl']
[u'krige', u'miss', u'springbok', u'open']
[u'labor', u'accus', u'govt', u'trickeri']
[u'labor', u'decid', u'turn', u'bush']
[u'lack', u'sperm', u'donor', u'render', u'program', u'infertil']
[u'larrikin', u'beem', u'commit', u'aussi']
[u'leed', u'player', u'releas', u'polic', u'question']
[u'lion', u'hart', u'season']
[u'charg', u'bendigo', u'blaze']
[u'fin', u'indec', u'assault']
[u'liabl', u'woman', u'stomp', u'injuri', u'court']
[u'offer', u'help', u'critic', u'court', u'tell']
[u'face', u'court', u'council', u'properti', u'damag']
[u'spear', u'wound', u'leg', u'charg', u'woman']
[u'market', u'edg', u'higher', u'dollar', u'hit', u'year', u'high']
[u'mayor', u'call', u'australia', u'nomin']
[u'mayor', u'urg', u'flood', u'map', u'accept']
[u'worker', u'protest', u'enterpris']
[u'crowd', u'enjoy', u'elmor', u'field', u'day']
[u'victorian', u'look', u'work']
[u'mortgag', u'lender', u'surviv', u'major', u'hous']
[u'mother', u'murder', u'charg', u'undergo', u'mental']
[u'flag', u'burn', u'fail']
[u'murphi', u'fastest', u'bathurst', u'practic']
[u'nation', u'trust', u'concern', u'sydney', u'harbour', u'plan']
[u'navi', u'sonar', u'blame', u'bend', u'whale']
[u'near', u'strength', u'favourit', u'zealand']
[u'allianc', u'form', u'fight', u'possibl', u'pine']
[u'health', u'committe', u'establish']
[u'mum', u'warn', u'inadequ', u'servic', u'insur']
[u'newspap', u'owner', u'urg', u'sharehold', u'reject']
[u'jobless', u'rate', u'fall', u'slight']
[u'dairi', u'promot', u'inspir', u'australian', u'rural', u'lobbi']
[u'say', u'wont', u'nuclear', u'polici']
[u'odd', u'pope', u'nobel', u'peac', u'prize']
[u'olonga', u'grant', u'extend', u'refug', u'britain']
[u'opposit', u'condemn', u'dental', u'wait', u'list']
[u'owen', u'england', u'euro', u'qualifi']
[u'owner', u'ravag', u'carpet', u'busi', u'lament', u'loss']
[u'park', u'sale', u'profit', u'communiti']
[u'parliament', u'pay', u'tribut', u'ahead', u'bali', u'anniversari']
[u'pentagon', u'criticis', u'silenc', u'journalist']
[u'pipelin', u'manag', u'confid', u'project', u'futur']
[u'plan', u'boost', u'tennant', u'creek', u'race', u'meet']
[u'confirm', u'honour', u'indonesian', u'polic']
[u'wont', u'pursu', u'senat', u'chang', u'communiti']
[u'polic', u'obstruct', u'media', u'chase', u'miss', u'gold']
[u'polic', u'arrest', u'english', u'footbal', u'gang', u'rape']
[u'polic', u'investig', u'servic', u'station', u'robberi']
[u'polic', u'probe', u'attempt', u'carri', u'razor', u'blade']
[u'polic', u'probe', u'video', u'shop']
[u'polic', u'releas', u'zimbabw', u'unionist', u'guilt']
[u'polit', u'word', u'erupt', u'bushfir']
[u'price', u'pass', u'perth', u'clash']
[u'priest', u'victim', u'prepar', u'launch', u'group', u'action']
[u'prison', u'escap', u'prompt', u'releas', u'review']
[u'probe', u'begin', u'townsvill', u'prison', u'death']
[u'professor', u'attempt', u'bring', u'mammoth', u'life']
[u'puma', u'test', u'open', u'wallabi']
[u'govt', u'ask', u'tuna', u'boat', u'compo']
[u'govt', u'releas', u'child', u'death', u'figur']
[u'jobless', u'rate', u'fall']
[u'quri', u'offer', u'resign', u'arafat', u'report']
[u'rainwat', u'tank', u'scheme', u'prove', u'popular']
[u'rain', u'wont', u'wash', u'away', u'world', u'ceremoni']
[u'region', u'milit', u'replac', u'weak', u'qaeda', u'expert']
[u'report', u'mobil', u'phone', u'explos', u'vietnam']
[u'resid', u'upset', u'council', u'fuelwatch', u'decis']
[u'rise', u'dollar', u'push', u'price']
[u'robinson', u'look', u'impress', u'rugbi']
[u'roger', u'creat', u'havoc', u'fullback']
[u'continu', u'swim', u'coach', u'sack']
[u'rugbi', u'take', u'centr', u'stage']
[u'russian', u'march', u'germani']
[u'court', u'find', u'wife', u'murder', u'husband']
[u'jobless', u'rate', u'fall']
[u'school', u'discrimin', u'teach', u'sign', u'languag']
[u'schooli', u'nois', u'anger', u'gold', u'coast', u'resid']
[u'schuettler', u'grosjean', u'retir', u'lyon']
[u'schumach', u'take', u'titl', u'grant']
[u'search', u'council', u'general', u'manag', u'delay']
[u'senat', u'report', u'aim', u'reconcili']
[u'shire', u'join', u'forc', u'oppos', u'plantat', u'sell']
[u'smoker', u'urg', u'check', u'oral', u'cancer']
[u'solomon', u'polic', u'link', u'keke', u'missionari', u'murder']
[u'south', u'east', u'expect', u'bumper', u'grain', u'crop']
[u'southern', u'town', u'face', u'drought']
[u'spanish', u'diplomat', u'report', u'murder', u'iraq']
[u'spectat', u'collaps', u'trigger', u'moya', u'comeback']
[u'spotlight', u'bendigo', u'higher', u'educ']
[u'stem', u'cell', u'treatment', u'reliev', u'angina', u'medic', u'trial']
[u'suicid', u'bomber', u'deton', u'isra', u'checkpoint']
[u'suicid', u'bomb', u'highlight', u'frail', u'iraq', u'secur']
[u'suicid', u'bomber', u'kill', u'baghdad']
[u'swedish', u'prosecutor', u'seek', u'time', u'lindh']
[u'tafe', u'rise', u'expect', u'hurt', u'enrol']
[u'taiwan', u'swap', u'troop', u'modern', u'weapon']
[u'tasmania', u'hotel', u'record', u'guest']
[u'tasmania', u'unemploy', u'rate', u'fall']
[u'teacher', u'shortag', u'prompt', u'perform']
[u'tiger', u'taipan', u'maintain', u'unbeaten', u'start']
[u'timber', u'worker', u'stop', u'work', u'discuss', u'wage', u'issu']
[u'time', u'run', u'coal', u'power', u'station', u'allianc']
[u'tourism', u'industri', u'optimist', u'futur']
[u'townsvill', u'lose', u'lead', u'ident']
[u'trial', u'give', u'indigen', u'communiti']
[u'truss', u'urg', u'consid', u'initi', u'drought']
[u'tszyus', u'homecom', u'dream']
[u'tuna', u'catch', u'quota', u'reinstat']
[u'tweed', u'council', u'director', u'resign']
[u'island', u'lose', u'displac', u'compens', u'battl']
[u'unemploy', u'steadi']
[u'union', u'fight', u'king', u'bros', u'worker', u'entitl']
[u'seek', u'uganda', u'truce', u'vaccin']
[u'vandal', u'attack', u'burni', u'hospit']
[u'veteran', u'galthi', u'motiv', u'french', u'assault']
[u'agricultur', u'minist', u'hit', u'fund']
[u'farmer', u'urg', u'govt', u'revisit', u'rescu', u'packag']
[u'victorian', u'parliament', u'rememb', u'bali', u'attack']
[u'victorian', u'food', u'compani', u'merg']
[u'vietnam', u'illeg', u'wildlif', u'trade', u'rife']
[u'villeneuv', u'quit', u'final', u'race']
[u'waff', u'say', u'support', u'strong', u'farmer']
[u'govt', u'consid', u'furnitur', u'maker', u'fund', u'request']
[u'govt', u'highlight', u'burrup', u'seawat', u'pipe', u'work']
[u'hors', u'trainer', u'ban', u'electr', u'shock', u'devic']
[u'jobless', u'rate', u'rise']
[u'wallabi', u'better', u'prepar', u'roff']
[u'wallabi', u'complet', u'final']
[u'wallabi', u'puma', u'prepar', u'final']
[u'water', u'author', u'vie', u'environ', u'award']
[u'weak', u'zimbabw', u'wilt', u'spring', u'test']
[u'woman', u'charg', u'daughter', u'murder']
[u'women', u'soccer', u'need', u'leagu', u'blatter']
[u'worker', u'seek', u'lift', u'disput', u'escal']
[u'inquiri', u'vindic', u'complaint', u'govt']
[u'sayyaf', u'attack', u'bush', u'visit']
[u'afghani', u'warlord', u'agre', u'ceasefir']
[u'aid', u'drug', u'birth', u'block', u'infect', u'studi']
[u'albacet', u'fall', u'victim', u'king', u'bolter']
[u'albani', u'jobless', u'figur', u'drop']
[u'black', u'magic', u'readi', u'bewitch', u'italian']
[u'black', u'wallabi', u'open']
[u'amnesti', u'step', u'campaign', u'abolish', u'death', u'penalti']
[u'step', u'closer', u'compani', u'split']
[u'angri', u'australian', u'forc', u'bali', u'exhibit', u'close']
[u'associ', u'call', u'strike']
[u'asthma', u'death', u'better', u'treatment', u'need']
[u'aussi', u'dollar', u'retain', u'high', u'despit', u'strengthen']
[u'aussi', u'market', u'dollar', u'eas']
[u'aussi', u'roger', u'grab', u'silver', u'road', u'cycl', u'champ']
[u'australia', u'extradit', u'alleg', u'siev', u'smuggler']
[u'aust', u'teach', u'pacif', u'politician', u'media', u'handl']
[u'bali', u'victim', u'visit', u'prison', u'inmat']
[u'blind', u'adventur', u'visit', u'emerald']
[u'bok', u'look', u'spring', u'uruguay']
[u'bomb', u'survivor', u'return', u'bali']
[u'boorowa', u'resid', u'oppos', u'council', u'merger']
[u'brazilian', u'murder', u'meet', u'envoy']
[u'britain', u'go', u'nutti', u'lose', u'marbl', u'search']
[u'british', u'court', u'reject', u'compo', u'claim', u'displac']
[u'british', u'dept', u'store', u'look', u'introduc']
[u'burma', u'thank', u'asean', u'nation', u'lack', u'critic']
[u'burni', u'hospit', u'vandal', u'deliber', u'polic']
[u'bush', u'lash', u'iraq', u'critic']
[u'bush', u'outlin', u'measur', u'isol', u'cuba', u'castro']
[u'cathol', u'church', u'step', u'fight', u'condom']
[u'cathol', u'offic', u'appeal', u'deaf', u'rule']
[u'caulfield', u'clear', u'exceed', u'excel']
[u'chief', u'minist', u'accus', u'derail', u'reconcili']
[u'chile', u'consid', u'doze', u'con', u'siesta']
[u'clijster', u'hammer', u'hantuchova', u'capriati', u'flop']
[u'clinic', u'teach', u'fish', u'basic']
[u'commonwealth', u'urg', u'address', u'land', u'council', u'fund']
[u'convict', u'paedophil', u'guilti', u'fresh', u'offenc']
[u'corsica', u'separatist', u'blame', u'nice', u'blast']
[u'councillor', u'defend', u'swim', u'coach', u'sack']
[u'council', u'servic', u'limit', u'staff', u'picnic']
[u'court', u'hear', u'tape', u'detail', u'accid', u'memori']
[u'cricket', u'wish', u'wallabi', u'good', u'luck']
[u'crop', u'risk', u'summer', u'storm', u'southern']
[u'cunderdin', u'celebr', u'ettamogah', u'open']
[u'depart', u'lookout', u'unusu', u'weed']
[u'develop', u'reprimand', u'illeg', u'clear']
[u'develop', u'hop', u'high', u'riversid', u'centr', u'project']
[u'doctor', u'hope', u'breakthrough', u'indemn', u'talk']
[u'doctor', u'strike', u'deal', u'govt', u'avert', u'walkout']
[u'dollar', u'move', u'higher', u'overnight']
[u'downer', u'explain', u'megawati', u'away']
[u'educ', u'minist', u'support', u'teacher', u'rise']
[u'exposur', u'give', u'protect', u'asthma']
[u'famili', u'rememb', u'bali', u'bomb', u'home', u'soil']
[u'famili', u'court', u'chief', u'criticis', u'share', u'custodi']
[u'fatah', u'offshoot', u'claim', u'tulkarm', u'suicid', u'bomb']
[u'faulti', u'convers', u'contribut', u'boy', u'death']
[u'feder', u'compo', u'aid', u'bali', u'bomb', u'victim']
[u'feral', u'deer', u'remov', u'forest', u'reserv']
[u'fifth', u'palestinian', u'kill', u'isra', u'gaza', u'raid']
[u'fiji', u'look', u'reveng', u'franc']
[u'final', u'touch', u'bali', u'memori', u'mourner', u'arriv']
[u'fishermen', u'hail', u'intern', u'tuna', u'catch', u'agreement']
[u'forestri', u'industri', u'want', u'corrupt', u'alleg']
[u'genocid', u'threat', u'warrant', u'emptiv', u'strike']
[u'protest', u'target', u'ingham']
[u'gold', u'coast', u'host', u'champ', u'seri']
[u'govt', u'call', u'address', u'teacher', u'shortag']
[u'govt', u'offer', u'avert', u'medic', u'indemn', u'crisi']
[u'govt', u'monitor', u'irvinebank', u'truck', u'movement']
[u'govt', u'urg', u'look', u'consid', u'forest']
[u'govt', u'wrong', u'target', u'metropolitan', u'water', u'user']
[u'green', u'engin', u'final', u'tune', u'ahead', u'solar']
[u'gregan', u'join', u'test', u'club']
[u'hart', u'warn', u'lion', u'salari']
[u'hayden', u'enter', u'pantheon', u'great']
[u'hayden', u'set', u'world', u'record']
[u'health', u'servic', u'warn', u'mass', u'resign', u'doctor']
[u'heatwav', u'fire', u'oyster', u'love']
[u'hewitt', u'second', u'master', u'pull']
[u'howard', u'announc', u'nation', u'bushfir', u'inquiri']
[u'hunter', u'semillon', u'name', u'drop']
[u'hurrican', u'carter', u'honour', u'brisban']
[u'imag', u'social', u'snub', u'like', u'kick']
[u'imperi', u'hayden', u'return', u'form']
[u'indigen', u'leader', u'hit', u'high', u'court']
[u'indonesian', u'polic', u'arrest', u'driver', u'truck', u'involv']
[u'indonesia', u'receiv', u'permiss', u'interrog']
[u'inquiri', u'look', u'sydney', u'harbour', u'plan']
[u'interst', u'agricultur', u'entri', u'launceston']
[u'iranian', u'govt', u'happi', u'lawyer', u'nobel', u'prize']
[u'iranian', u'govt', u'spokesman', u'retract', u'nobel', u'prais']
[u'iranian', u'lawyer', u'win', u'nobel', u'peac', u'prize']
[u'japanes', u'call', u'surpris', u'elect']
[u'japanes', u'women', u'leg', u'tell', u'differ', u'walk', u'life']
[u'johnni', u'cash', u'biographi', u'time', u'coincid']
[u'johnson', u'brush', u'krige', u'jib']
[u'kiwi', u'rider', u'dean', u'join', u'credit', u'agricol']
[u'leagu', u'great', u'play', u'gladston']
[u'leed', u'player', u'alleg', u'attack', u'suspend']
[u'legal', u'mind', u'gather', u'celebr', u'high', u'court']
[u'lingeri', u'sexi', u'french']
[u'lockyer', u'bronco', u'best']
[u'loom', u'strike', u'disrupt', u'servic']
[u'machin', u'breakdown', u'delay', u'sheep', u'ship']
[u'magnesium', u'sulphat', u'triall', u'jellyfish', u'sting']
[u'complet', u'underwat', u'marathon', u'loch', u'ness']
[u'kill', u'peni', u'snatch', u'alleg']
[u'kill', u'mango', u'pick', u'accid', u'south']
[u'plead', u'guilti', u'set', u'biki', u'alight']
[u'methanol', u'plant', u'bring', u'renew', u'optim', u'region']
[u'militiamen', u'attack', u'ivori', u'coast', u'util', u'compani']
[u'minist', u'talk', u'matur', u'age', u'worker']
[u'muhammad', u'take', u'ring', u'book', u'launch']
[u'murphi', u'bathurst', u'fastest', u'driver']
[u'muslim', u'teen', u'fall', u'foul', u'anti', u'gang', u'rule']
[u'nation', u'agre', u'worldwid', u'tuna', u'fish', u'limit']
[u'nat', u'push', u'telstra', u'sale', u'profit', u'funnel']
[u'nelson', u'abandon', u'part', u'higher', u'educ']
[u'newcastl', u'power', u'share', u'point']
[u'clue', u'china', u'man', u'space', u'mission']
[u'undi', u'save', u'live']
[u'reshuffl', u'produc']
[u'guarante', u'terror', u'free', u'bali', u'ceremoni']
[u'govt', u'infrastructur', u'creat', u'job']
[u'nuclear', u'veteran', u'greater', u'compens']
[u'weather', u'condit', u'canberra', u'firestorm']
[u'compani', u'receiv', u'environment', u'award']
[u'oliv', u'diseas', u'pit', u'manag']
[u'olymp', u'gold', u'medallist', u'secur', u'firearm']
[u'palestinian', u'report', u'resign']
[u'paradorn', u'lyon']
[u'pentagon', u'report', u'critic', u'post', u'iraq']
[u'perth', u'polic', u'seek', u'steal', u'truck']
[u'peter', u'lehmann', u'board', u'toast', u'hess']
[u'pharmaci', u'guild', u'address', u'indigen', u'imbal']
[u'back', u'governor', u'general', u'comment']
[u'back', u'waltz', u'matilda']
[u'polic', u'investig', u'fatal', u'unit']
[u'polic', u'tighten', u'secur', u'ahead', u'world', u'open']
[u'protest', u'colleg', u'cut', u'fail', u'sway', u'govt']
[u'nat', u'criticis', u'secur', u'prison', u'murder']
[u'politician', u'call', u'commonwealth', u'cooper']
[u'queen', u'consid', u'joh', u'compens', u'claim']
[u'queensland', u'arrest', u'drug', u'oper']
[u'quri', u'threaten', u'quit', u'secur', u'disput']
[u'rain', u'bring', u'hope', u'irrig']
[u'rain', u'keep', u'sorenstam', u'hold', u'hall']
[u'record', u'harvest', u'wine', u'industri']
[u'cross', u'criticis', u'guantanamo', u'condit']
[u'refuge', u'student']
[u'research', u'claim', u'hospit', u'environ', u'put']
[u'reserv', u'trust', u'agre', u'allow', u'leash', u'dog']
[u'resid', u'urg', u'attend', u'bali', u'memori', u'servic']
[u'resid', u'warn', u'snake', u'bite']
[u'resort', u'develop', u'order', u'undertak']
[u'review', u'local', u'govt', u'merger', u'face', u'critic']
[u'review', u'panel', u'clear', u'coverag', u'overal']
[u'rise', u'hous', u'price', u'stop', u'properti', u'boom']
[u'rooki', u'georgeson', u'claim', u'french', u'surf', u'titl']
[u'ross', u'get', u'ahead', u'townsend', u'japan', u'clash']
[u'rossi', u'hop', u'secur', u'titl', u'malaysia']
[u'rossi', u'take', u'provision', u'pole', u'malaysia']
[u'rugbi', u'world', u'kick', u'sydney']
[u'russian', u'newspap', u'editor', u'stab', u'death']
[u'expect', u'lead', u'teacher', u'shortag']
[u'galleri', u'unveil', u'renaiss', u'altar', u'piec']
[u'govt', u'face', u'realiti', u'scam', u'warn']
[u'univers', u'staff', u'vote', u'strike']
[u'secur', u'tight', u'england', u'arriv', u'istanbul']
[u'senden', u'vega']
[u'send', u'peacekeep', u'iraq', u'inevit']
[u'serial', u'casanova', u'bust', u'mail', u'blunder']
[u'shire', u'defend', u'petrol', u'station', u'price', u'board', u'decis']
[u'shooter', u'diamond', u'face', u'licenc', u'deadlin']
[u'skaif', u'fastest', u'bathurst', u'practic']
[u'slay', u'parti', u'accus', u'shiit', u'assassin']
[u'snow', u'fall', u'south', u'east']
[u'solomon', u'quit', u'bomber']
[u'strand', u'sheep', u'like', u'slaughter']
[u'studi', u'show', u'aborigin', u'ident', u'pressur']
[u'swiss', u'compani', u'offer', u'lehmann', u'win', u'bid']
[u'sydney', u'fuel', u'suppli', u'return', u'normal']
[u'taikonaut', u'orbit', u'week', u'report']
[u'talk', u'hold', u'hope', u'medic', u'indemn']
[u'theatr', u'compani', u'chief', u'warn', u'art', u'organis']
[u'timber', u'industri', u'say', u'integr', u'propos', u'essenti']
[u'timber', u'worker', u'strike']
[u'seed', u'feder', u'surviv', u'scare']
[u'tourism', u'allianc', u'join', u'critic', u'nation', u'park']
[u'tourist', u'believ']
[u'townsvill', u'face', u'tough', u'open', u'test']
[u'tradit', u'owner', u'regain', u'maralinga', u'land']
[u'trainer', u'happi', u'recoveri', u'injur', u'hors']
[u'transport', u'problem', u'plagu', u'flower', u'industri']
[u'travel', u'warn', u'current', u'bali', u'anniversari']
[u'trial', u'indic', u'drug', u'halv', u'breast', u'cancer']
[u'trio', u'face', u'charg', u'protea', u'pakistan', u'spat']
[u'trulli', u'keep', u'schumach', u'japan', u'practic']
[u'turnbul', u'deni', u'aspir']
[u'realiti', u'real', u'minist']
[u'star', u'tommi', u'hanlon', u'lose', u'cancer', u'battl']
[u'palestinian', u'dead', u'gaza', u'clash']
[u'soldier', u'baghdad', u'ambush']
[u'union', u'threaten', u'strike', u'univers', u'england']
[u'univers', u'build', u'name', u'botanist']
[u'govt', u'challeng', u'guantanamo', u'detent']
[u'face', u'death', u'sikh', u'murder']
[u'move', u'closer', u'approv', u'iraq']
[u'suprem', u'court', u'urg', u'review', u'guantanamo']
[u'vatican', u'condom', u'claim', u'anger', u'aid', u'educ']
[u'viarsa', u'crew', u'grant', u'bail', u'illeg', u'fish']
[u'buyback', u'scheme', u'criticis', u'understaf']
[u'polic', u'face', u'sack', u'unauthoris', u'file']
[u'virgin', u'blue', u'passeng', u'measl', u'warn']
[u'expert', u'urg', u'overhaul', u'water', u'consumpt']
[u'farmer', u'angri', u'loss', u'salin', u'fund']
[u'govt', u'attempt', u'stop', u'teacher', u'strike']
[u'walcha', u'council', u'undecid', u'pine', u'plantat', u'fight']
[u'wallabi', u'confid', u'ahead', u'world', u'open']
[u'wallabi', u'bali', u'tribut']
[u'wallabi', u'wari', u'unpredict', u'puma']
[u'wallabi', u'world', u'open']
[u'milk', u'price', u'spark', u'letter', u'accc']
[u'webber', u'join', u'schumach', u'gpda', u'director']
[u'whale', u'watch', u'oper', u'warn', u'scallop', u'farm', u'threaten']
[u'wheatbelt', u'unemploy', u'drop']
[u'white', u'face', u'lose', u'gold', u'fail', u'dope', u'test']
[u'wineri', u'end', u'year', u'long', u'search', u'owner']
[u'world', u'open', u'put', u'strain', u'sydney', u'transport']
[u'zimbabw', u'food', u'shortag', u'critic']
[u'miss', u'nigeria', u'ferri', u'capsiz']
[u'hindus', u'arrest', u'disput', u'templ', u'site']
[u'kill', u'island', u'plane', u'crash']
[u'aceh', u'student', u'jail', u'anti', u'govt', u'ralli', u'plan']
[u'black', u'readi', u'rumbl']
[u'applebi', u'move', u'nevada']
[u'arafat', u'quri', u'attempt', u'resolv', u'secur', u'disput']
[u'architect', u'visit', u'histor', u'school', u'north']
[u'arni', u'turn', u'attent', u'budget', u'audit']
[u'asian', u'kill', u'women', u'golf', u'tour', u'aussi', u'stephenson']
[u'attend', u'offic', u'boost', u'wadey', u'pupil', u'number']
[u'australian', u'missionari', u'killer', u'appeal', u'death', u'penalti']
[u'australian', u'wari', u'oversea', u'travel', u'poll']
[u'azzuri', u'face', u'final', u'euro', u'hurdl']
[u'bahamian', u'boy', u'charg', u'child', u'death']
[u'barrichello', u'put', u'ferrari', u'pole']
[u'brisban', u'assault', u'victim', u'coma']
[u'bush', u'threaten', u'tougher', u'stanc', u'cuba']
[u'canada', u'snow', u'aim', u'upset', u'friend']
[u'canadian', u'speaker', u'head', u'commonwealth', u'associ']
[u'canberra', u'water', u'charg', u'doubl']
[u'chaplain', u'charg', u'guantanamo', u'case']
[u'cheney', u'defend', u'iraq']
[u'children', u'thief', u'drive']
[u'civil', u'right', u'group', u'hail', u'nobel', u'peac', u'winner']
[u'clijster', u'henin', u'spot', u'collis', u'cours']
[u'cloudi', u'weather', u'hamper', u'taikonaut', u'launch']
[u'cold', u'weather', u'crack', u'pole', u'sit', u'champion']
[u'comprehens', u'approach', u'need', u'aceh', u'secur']
[u'conker', u'shortag', u'threaten', u'scupper', u'world', u'champ']
[u'delhi', u'dengu', u'fever', u'outbreak', u'worsen']
[u'dutch', u'princ', u'give', u'throne', u'right', u'fiance']
[u'embattl', u'england', u'redempt']
[u'emot', u'hayden', u'bali', u'tribut']
[u'road', u'banesto']
[u'fashion', u'design', u'mcqueen', u'steam', u'danc', u'floor']
[u'feder', u'moya', u'approach', u'final', u'showdown']
[u'french', u'overcom', u'fieri', u'fijian']
[u'funer', u'march', u'baghdad', u'turn', u'anti', u'protest']
[u'gawler', u'project', u'encourag', u'conserv', u'donat']
[u'gaza', u'raid', u'violat', u'intern']
[u'giffin', u'doubt', u'romania', u'match']
[u'giffin', u'romania', u'match']
[u'gold', u'coast', u'ceremoni', u'mark', u'bali', u'anniversari']
[u'govt', u'intervent', u'hurt', u'sheep', u'sale', u'chanc', u'farmer']
[u'green', u'consid', u'inclus', u'nation', u'group']
[u'green', u'merger', u'offer', u'nation', u'altern']
[u'guantanamo', u'creat', u'mental', u'health', u'problem']
[u'hayden', u'promis', u'notch', u'say', u'dean', u'jone']
[u'hayden', u'dedic', u'record', u'inning', u'bali', u'victim']
[u'heavi', u'fight', u'gaza', u'refuge', u'camp', u'raid']
[u'hicki', u'score', u'doubl', u'ireland', u'roll', u'romania']
[u'high', u'court', u'celebr', u'caus', u'terror', u'fear']
[u'indonesia', u'demand', u'access', u'hambali']
[u'injuri', u'bowl', u'aussi']
[u'injuri', u'aussi', u'bowler']
[u'swing', u'win', u'caulfield', u'guinea']
[u'iran', u'cautious', u'applaud', u'nobel', u'prize', u'winner']
[u'iran', u'run', u'time', u'disclos', u'nuclear']
[u'islam', u'nation', u'demand', u'evict', u'iraq']
[u'jone', u'prais', u'scorer', u'sailor']
[u'karzai', u'approv', u'ambiti', u'demobilis', u'plan']
[u'kiwi', u'understrength', u'itali']
[u'leopard', u'kill', u'year', u'bombay']
[u'longer', u'term', u'offer', u'busi', u'confid', u'stanhop']
[u'lonhro', u'confirm', u'class', u'caulfield']
[u'charg', u'bash', u'death', u'homeless']
[u'maoist', u'govt', u'clash', u'kill', u'nepales']
[u'market', u'finish', u'week', u'flat']
[u'matera', u'wirrpunda', u'sign', u'eagl']
[u'milit', u'threat', u'howard', u'arriv', u'bali']
[u'million', u'tune', u'world']
[u'million', u'tune', u'world', u'giffin', u'clear']
[u'glori', u'hayden', u'zimbabw', u'struggl']
[u'moroccan', u'king', u'boost', u'women', u'right']
[u'murphi', u'sizzl', u'bathurst', u'shootout']
[u'nasa', u'laser', u'power', u'model', u'plane', u'take', u'flight']
[u'nation', u'parti', u'vote', u'reform', u'senat']
[u'nation', u'confer', u'consid', u'senat', u'reform']
[u'newscorp', u'hook', u'satellit', u'broadcast', u'hold']
[u'korea', u'threaten', u'arm', u'word', u'japan']
[u'offici', u'encourag', u'children', u'enrol']
[u'kill', u'attack', u'iraqi', u'polic', u'continu']
[u'opposit', u'question', u'govt', u'age', u'care', u'prioriti']
[u'oyster', u'farmer', u'seek', u'drought', u'packag']
[u'paradorn', u'keep', u'master', u'dream']
[u'patienc', u'request', u'email', u'problem', u'plagu', u'isp']
[u'peac', u'group', u'advoc', u'space', u'militaris']
[u'perkin', u'hit', u'wall', u'bathurst']
[u'crean', u'head', u'bali']
[u'polic', u'investig', u'daylight', u'attack', u'adelaid']
[u'polic', u'probe', u'link', u'semi', u'trailer', u'steal']
[u'polic', u'seek', u'wit']
[u'pope', u'upset', u'miss', u'nobel', u'aid']
[u'protea', u'skipper', u'smith', u'ban', u'misconduct']
[u'puma', u'hope', u'reach', u'quarter']
[u'rafah', u'death', u'toll', u'rise', u'secur', u'disput']
[u'rare', u'white', u'humpback', u'make', u'appear', u'moreton']
[u'razorback', u'shock', u'croc']
[u'record', u'mean', u'break', u'say', u'lara']
[u'roll', u'stone', u'fail', u'sign', u'hong', u'kong']
[u'rossi', u'leav', u'honda']
[u'rossi', u'take', u'malaysian', u'pole']
[u'rural', u'aust', u'need', u'infrastructur', u'cut']
[u'school', u'investig']
[u'secur', u'step', u'bali', u'commemor']
[u'servic', u'hold', u'british', u'victim', u'iraq']
[u'sheep', u'shipment', u'destin', u'truss']
[u'slick', u'south', u'africa', u'beat', u'pakistan', u'wicket']
[u'soccer', u'player', u'arrest', u'english', u'rape', u'probe']
[u'sorenstam', u'hall', u'famer', u'houston']
[u'south', u'korean', u'cabinet', u'tender', u'resign']
[u'sport', u'ganguli', u'leav', u'door', u'ajar', u'black', u'cap']
[u'stradbrok', u'plane', u'crash', u'investig', u'continu']
[u'sven', u'fuel', u'quit', u'specul']
[u'sydney', u'top', u'travel', u'list']
[u'taliban', u'tunnel', u'kandahar', u'jail']
[u'consid', u'charg', u'salmon', u'seizur']
[u'cross', u'renew', u'blood', u'donor']
[u'host', u'world', u'biggest', u'organ', u'orchard']
[u'teen', u'charg', u'fatal', u'southbank', u'stab']
[u'thousand', u'protest', u'crop']
[u'detain', u'fieri', u'java', u'crash']
[u'kill', u'nepal', u'rebel', u'attack', u'polic', u'post']
[u'tight', u'secur', u'greet', u'howard', u'crean', u'bali']
[u'astl', u'lead', u'kiwi', u'fightback']
[u'radio', u'talk', u'host', u'admit', u'drug', u'addict']
[u'truck', u'driver', u'charg', u'arnhem', u'hway', u'rollov']
[u'trulli', u'fastest', u'japan', u'qualifi']
[u'turkey', u'turn', u'england', u'soccer', u'fan', u'away']
[u'kill', u'roadsid', u'bomb', u'northern', u'iraq']
[u'ukrain', u'munit', u'explos', u'spark', u'mass', u'evacu']
[u'uncertainti', u'surround', u'black', u'umaga']
[u'unit', u'peac', u'talk']
[u'doctor', u'attempt', u'separ', u'egyptian', u'twin']
[u'reconsid', u'posit', u'iraq', u'powel']
[u'uzbek', u'lagutin', u'take', u'men', u'titl']
[u'victorian', u'group', u'seek', u'polic', u'access', u'file']
[u'vogt', u'fear', u'freak', u'germani']
[u'green', u'vote', u'merg', u'nation', u'parti']
[u'wale', u'hansen', u'pressur']
[u'wallabi', u'better', u'jone']
[u'mine', u'equip', u'readi', u'ship']
[u'nat', u'seek', u'support', u'outback', u'highway', u'upgrad']
[u'reject', u'cathol', u'condom', u'claim']
[u'widmark', u'take', u'dutch', u'lead']
[u'woodward', u'attack', u'australian', u'block']
[u'zidan', u'eye', u'french', u'grand', u'slam']
[u'zimbabw', u'trail', u'wicket', u'hand']
[u'teacher', u'job', u'offer']
[u'miss', u'nigerian', u'ferri', u'accid']
[u'fire', u'inform', u'nation', u'inquiri', u'chief']
[u'adelaid', u'end', u'scottish', u'poet', u'wander']
[u'afghan', u'fail', u'recaptur', u'taliban', u'jailbreak']
[u'agit', u'voter', u'alarm', u'japan', u'campaign']
[u'alpay', u'insult', u'mother', u'say', u'beck']
[u'apec', u'talk', u'focus', u'terror', u'trade']
[u'applebi', u'hit', u'vega']
[u'australian', u'domin', u'golf']
[u'australia', u'observ', u'bomb', u'anniversari']
[u'babi', u'critic', u'driveway']
[u'bali', u'bomber', u'regret', u'report']
[u'bali', u'memori', u'perth']
[u'bali', u'servic', u'begin']
[u'bali', u'victim', u'famili', u'gather', u'perth', u'dawn', u'servic']
[u'bali', u'victim', u'rememb']
[u'bass', u'strait', u'longer', u'hurdl', u'engin']
[u'billion', u'dollar', u'budget', u'beat', u'flood', u'prone', u'chines']
[u'blast', u'hit', u'palestinian', u'refuge', u'camp', u'lebanon']
[u'bomb', u'destroy', u'lorri', u'spain', u'suspect']
[u'boswel', u'manur', u'milk', u'retail', u'boot']
[u'bremer', u'condemn', u'baghdad', u'bomb']
[u'bush', u'emphasis', u'progress', u'postwar', u'iraq']
[u'canberran', u'warn', u'raaf', u'display', u'high', u'court', u'say']
[u'cloth', u'store', u'reward', u'nake', u'ambit']
[u'comoro', u'news', u'agenc', u'bemoan', u'poor', u'communic']
[u'critic', u'work', u'begin', u'separ', u'conjoin']
[u'docker', u'edg', u'pie', u'oval', u'showcas']
[u'eagl', u'sign', u'matera', u'wirrpunda']
[u'earthquak', u'hit', u'japanes', u'island']
[u'emot', u'howard', u'pay', u'respect', u'sari', u'club']
[u'england', u'itali', u'germani', u'lead', u'march', u'euro']
[u'english', u'footbal', u'brace', u'civil', u'report']
[u'feder', u'moya', u'vienna', u'showdown']
[u'feder', u'waltz', u'vienna', u'final']
[u'fiji', u'star', u'caucaunibuca', u'cite', u'foul', u'play']
[u'contain', u'battl']
[u'home', u'buyer', u'need', u'incent']
[u'floriad', u'put', u'root', u'commonwealth', u'park']
[u'deputi', u'cairn', u'dead']
[u'sale', u'california', u'mausoleum', u'spectacular', u'view']
[u'franc', u'commemor', u'cultur', u'icon', u'piaf', u'cocteau']
[u'franc', u'warn', u'libya', u'bomb', u'compens']
[u'funer', u'shower', u'wake', u'dead', u'india']
[u'giant', u'toppl', u'taipan', u'hawk', u'beat', u'breaker']
[u'giffin', u'fresh', u'doubt', u'wallabi']
[u'govt', u'extend', u'bali', u'fund']
[u'govt', u'plan', u'allow', u'oversea', u'spi', u'carri', u'weapon']
[u'govt', u'anti', u'terror', u'spi']
[u'trick', u'joost', u'springbok', u'crush', u'uruguay']
[u'heaven', u'wash', u'jesus', u'colour', u'chang']
[u'henin', u'hunt', u'clijster', u'spot']
[u'henin', u'reach', u'filderstadt', u'final']
[u'high', u'court', u'celebr', u'spark', u'terror', u'concern']
[u'howard', u'crean', u'attend', u'bali', u'memori']
[u'howard', u'pay', u'respect', u'bali', u'sit']
[u'howard', u'pledg', u'health', u'care', u'fund', u'bali']
[u'immigr', u'detaine', u'attend', u'bali', u'commemor']
[u'injuri', u'aussi', u'bowler']
[u'investig', u'island', u'plane']
[u'israel', u'continu', u'rafah', u'raid', u'despit', u'condemn']
[u'isra', u'troop', u'remain', u'rafah', u'arafat', u'quri']
[u'isra', u'troop', u'withdraw', u'gaza']
[u'jone', u'refus', u'comment', u'woodward', u'block', u'claim']
[u'labor', u'support', u'spi']
[u'lacomb', u'stabl', u'world', u'crash']
[u'lafeb', u'dream', u'home', u'comfort']
[u'lightn', u'strike', u'boomer']
[u'ljungskog', u'win', u'sprint', u'retain', u'world', u'titl']
[u'lotteri', u'winner', u'face', u'collect', u'deadlin']
[u'charg', u'buderim', u'attack']
[u'hold', u'southbank', u'threat']
[u'mcmillan', u'help', u'black', u'cap', u'salvag', u'draw']
[u'meet', u'fail', u'patch', u'arafat', u'quri', u'disput']
[u'melbourn', u'ceremoni', u'mark', u'bali', u'anniversari']
[u'microsoft', u'aid', u'child', u'pornographi', u'fight']
[u'mother', u'teresa', u'world', u'good']
[u'urg', u'bali', u'mourner', u'rememb', u'indonesian']
[u'murphi', u'kelli', u'bathurst', u'titl']
[u'nation', u'vote', u'telstra', u'sell']
[u'rule', u'dog', u'nativ', u'bird']
[u'nobel', u'winner', u'demand', u'islam', u'punish', u'ceas']
[u'merci', u'minnow', u'world']
[u'govt', u'step', u'closer', u'workplac', u'smoke', u'chang']
[u'defenc', u'forc', u'award', u'winner', u'honour']
[u'polic', u'seiz', u'record', u'amphetamin', u'haul']
[u'match', u'come', u'marconi', u'spirit']
[u'palestinian', u'leader', u'settl', u'cabinet', u'crisi']
[u'paramed', u'warn', u'summer', u'snake', u'bite', u'risk']
[u'perth', u'polic', u'continu', u'investig', u'truck']
[u'peru', u'crash', u'kill']
[u'philosoph', u'raikkonen', u'look']
[u'polic', u'miss', u'bushwalk']
[u'polic', u'kill', u'ultralight', u'crash']
[u'polic', u'pick', u'trail', u'evid', u'leav', u'daylight']
[u'polic', u'unawar', u'raaf', u'display']
[u'powel', u'express', u'support', u'bali', u'victim']
[u'price', u'competit', u'polici', u'high', u'retail']
[u'privat', u'oper', u'upgrad', u'polic', u'station']
[u'protea', u'lodg', u'appeal', u'hall']
[u'protea', u'appeal', u'hall', u'suspens']
[u'rain', u'offer', u'zimbabw', u'great', u'escap']
[u'rain', u'plagu', u'aussi', u'charg', u'victori']
[u'rain', u'stop', u'play', u'australia', u'sight', u'victori']
[u'rii', u'back', u'cycl', u'shake']
[u'roadsid', u'bomb', u'wound', u'soldier', u'iraq']
[u'romania', u'target', u'larkham']
[u'rossi', u'clinch', u'titl', u'malaysian']
[u'russia', u'claim', u'role', u'china', u'man', u'space']
[u'polic', u'search', u'miss']
[u'schuettler', u'clement', u'meet', u'lyon', u'final']
[u'schumach', u'champion', u'ferrari', u'take', u'team', u'titl']
[u'scot', u'overcom', u'courag', u'japan']
[u'senior', u'confer', u'launch', u'govt', u'directori']
[u'slay', u'diplomat', u'iraqi', u'guard', u'arrest']
[u'sore', u'jaw', u'magn', u'prais', u'fiji', u'punch', u'power']
[u'sorrento', u'enact', u'land', u'european']
[u'spain', u'beef', u'secur', u'presenc', u'baghdad']
[u'springbok', u'look', u'england']
[u'sulawesi', u'attack', u'spark', u'religi', u'violenc', u'fear']
[u'surfer', u'commemor', u'bali']
[u'surgeri', u'begin', u'separ', u'egyptian', u'twin']
[u'surplus', u'help', u'prepar', u'age', u'popul']
[u'syria', u'warn', u'right', u'self', u'defenc', u'isra']
[u'canteen', u'gear', u'bandanna']
[u'govt', u'commit', u'cardiolog', u'improv']
[u'tenni', u'match', u'throw', u'bet', u'scandal']
[u'tesk', u'rid', u'high', u'texa']
[u'thai', u'live', u'centiped', u'record']
[u'thousand', u'gather', u'sydney', u'memori']
[u'thousand', u'attend', u'bali', u'memori', u'servic']
[u'dead', u'bolivia', u'pipelin', u'protest']
[u'tare', u'pile']
[u'guilti', u'heroin', u'haul']
[u'tourist', u'opinion', u'influenc', u'attract']
[u'irish', u'charg', u'murder', u'india']
[u'uncertainti', u'surround', u'black', u'umaga']
[u'claim', u'world', u'place']
[u'say', u'kill', u'baghdad', u'blast']
[u'wale', u'strong', u'canada']
[u'wallabi', u'focus', u'cut', u'mistak', u'rate']
[u'premier', u'prais', u'bali', u'survivor', u'courag']
[u'white', u'whale', u'head', u'coast']
[u'wolv', u'break']
[u'world', u'campaign', u'begin', u'itali']
[u'zimbabw', u'daili', u'news', u'owner', u'vow', u'fight', u'closur']
[u'zim', u'collaps', u'perth']
[u'firefight', u'miss', u'chanc', u'battl', u'januari']
[u'afghanistan', u'set', u'polit', u'parti', u'rule']
[u'alic', u'workshop', u'consid', u'food', u'issu']
[u'black', u'umaga', u'world', u'limbo']
[u'hope', u'indemn', u'disput', u'result']
[u'news', u'corp', u'resourc', u'stock', u'boost', u'market']
[u'cassar', u'daley', u'dead']
[u'appeal', u'lodg', u'drought', u'snub']
[u'applebi', u'hit', u'play', u'jackpot']
[u'arafat', u'inflam', u'stomach', u'palestinian', u'envoy']
[u'australia', u'elder', u'popul', u'tripl', u'report', u'show']
[u'australia', u'privat', u'healthcar']
[u'averag', u'cyclon', u'season', u'tip']
[u'award', u'recognis', u'communiti', u'catchment', u'effort']
[u'baghdad', u'bomb', u'kill']
[u'bali', u'blast', u'victim', u'rememb']
[u'bali', u'survivor', u'take', u'comfort', u'perth', u'servic']
[u'ballarat', u'east', u'seek', u'extend', u'daylight', u'save']
[u'bank', u'complaint', u'fall', u'work', u'need']
[u'bichel', u'wrap', u'perth', u'test']
[u'blind', u'adventur', u'touch', u'fundrais', u'flight']
[u'boat', u'fund', u'public', u'discuss']
[u'bomber', u'price', u'salari', u'breach']
[u'brazil', u'scrape', u'past', u'brave', u'jamaica']
[u'british', u'group', u'give', u'race', u'lehmann']
[u'break', u'hill', u'flower', u'offer', u'exposur']
[u'broom', u'properti', u'sell', u'minut']
[u'servic', u'return', u'chang']
[u'cafe', u'hour', u'worker', u'entitl']
[u'calf', u'trampl', u'girl', u'rodeo', u'mishap']
[u'care', u'bali', u'blame', u'game']
[u'sell', u'forestri', u'tasmania', u'reject']
[u'chang', u'afoot', u'tourism', u'group']
[u'child', u'safeti', u'prioriti', u'foster', u'abus', u'inquiri']
[u'china', u'count', u'great', u'leap', u'forward', u'space']
[u'chines', u'presid', u'respect', u'visit']
[u'clijster', u'down', u'henin', u'hardenn', u'retain', u'spot']
[u'inquiri', u'tell', u'children', u'owe', u'protect']
[u'cole', u'myer', u'proceed', u'credit', u'card', u'rollout']
[u'communiti', u'group', u'highlight', u'poverti', u'fight']
[u'confer', u'examin', u'mine', u'safeti']
[u'logger', u'court']
[u'council', u'amalgam', u'review', u'begin']
[u'council', u'consid', u'port', u'stephen', u'court', u'upgrad']
[u'councillor', u'condemn', u'confidenti', u'lend', u'leas', u'meet']
[u'council', u'prepar', u'elect']
[u'council', u'welcom', u'prawn', u'farm', u'plan']
[u'dairi', u'woe', u'time', u'settl']
[u'protest', u'group', u'form', u'ralli']
[u'darwin', u'boost', u'indonesian', u'trade', u'tie']
[u'davi', u'jalabert', u'heel', u'say', u'saiz']
[u'death', u'philippin', u'milit', u'step', u'forward']
[u'democrat', u'scrutinis', u'plan', u'arm', u'spi']
[u'appeal', u'polic', u'murder', u'sentenc']
[u'get', u'readi', u'season']
[u'egyptian', u'twin', u'success', u'separ']
[u'england', u'georgia', u'merci']
[u'england', u'underlin', u'favourit']
[u'famili', u'fund', u'come', u'earli']
[u'fear', u'air', u'control', u'tower', u'futur']
[u'fear', u'air', u'teacher', u'shortag', u'region', u'impact']
[u'feder', u'govt', u'target', u'peopl', u'traffic']
[u'feder', u'overpow', u'moya', u'retain', u'vienna', u'crown']
[u'govt', u'push', u'help', u'kidney', u'donat']
[u'financi', u'woe', u'sink', u'thargomindah', u'golf', u'club']
[u'firefight', u'closer', u'declar', u'blaze', u'safe']
[u'firm', u'make', u'offer', u'ail', u'timber', u'plantat']
[u'flower', u'grower', u'boost', u'export', u'hop']
[u'caus', u'alarm', u'canberra']
[u'foodi', u'turn', u'dalgeti', u'fair']
[u'star', u'aim', u'scale', u'height']
[u'unionist', u'throw', u'support', u'green', u'vote']
[u'ambassador', u'highlight', u'coastlin', u'terror']
[u'forum', u'hear', u'sport', u'academi', u'detail']
[u'fourth', u'charg', u'carpet', u'store', u'blaze']
[u'free', u'park', u'remain', u'canberra', u'centr']
[u'ganguli', u'back', u'bowler', u'despit', u'draw', u'test']
[u'gaza', u'declar', u'disast', u'zone']
[u'gaza', u'raid', u'leav', u'homeless']
[u'germani', u'take', u'world', u'golden', u'goal']
[u'gold', u'coast', u'kill', u'weekend', u'accid']
[u'govern', u'rule', u'capsicum', u'spray', u'hospit']
[u'govern', u'urg', u'kidney']
[u'green', u'cast', u'doubt', u'scallop', u'farm', u'impact']
[u'health', u'partnership', u'push', u'employe', u'action']
[u'highway', u'reopen', u'pile']
[u'hogg', u'bracken', u'cover', u'australia', u'walk', u'wound']
[u'home', u'buyer', u'urg', u'legal', u'advic']
[u'hospit', u'staff', u'threaten', u'strike', u'action']
[u'illawarra', u'trio', u'rememb', u'bali', u'anniversari']
[u'indonesian', u'milit', u'jail', u'philippin', u'bomb']
[u'industri', u'tour', u'look', u'lobster', u'market']
[u'iraqi', u'kill', u'firefight', u'forc', u'polic']
[u'irrig', u'borrow', u'entitl']
[u'jone', u'salut', u'french', u'flair']
[u'kopassus', u'visit', u'cancel', u'human', u'right', u'concern']
[u'warship', u'rust', u'away']
[u'learn', u'exchang', u'year', u'open']
[u'lectur', u'face', u'museum', u'theft', u'charg']
[u'legendari', u'jockey', u'shoemak', u'die', u'home']
[u'levi', u'seek', u'fund', u'region', u'cemeteri', u'work']
[u'local', u'govt', u'seek', u'power', u'suppli']
[u'die', u'trail', u'bike', u'crash']
[u'hospitalis', u'attack']
[u'hospit', u'accident', u'shoot']
[u'hospit', u'hammer', u'attack']
[u'mayor', u'confid', u'produc', u'drought']
[u'medic', u'expert', u'predict', u'sar', u'outbreak', u'china']
[u'memori', u'dedic', u'bali', u'bomb', u'victim']
[u'north', u'coast', u'unemploy', u'drop']
[u'miner', u'get', u'role', u'councillor']
[u'miner', u'hop', u'flinder', u'rang', u'diamond']
[u'minist', u'open', u'hospit', u'redevelop']
[u'minor', u'parti', u'nat', u'region', u'spend', u'plan']
[u'modest', u'schu', u'downplay', u'record']
[u'monkey', u'bear', u'transplant', u'ovarian', u'tissu']
[u'time', u'comment', u'drought', u'plan']
[u'mottram', u'go', u'burni']
[u'break', u'rank', u'peel', u'deviat']
[u'concern', u'island', u'hous']
[u'multi', u'million', u'dollar', u'pipelin', u'boost']
[u'narrogin', u'amalgam']
[u'nation', u'extend', u'ethanol', u'exempt']
[u'nat', u'outback', u'highway', u'agenda']
[u'nat', u'target', u'averag', u'famili', u'elect']
[u'navi', u'benefit', u'ocean', u'condit']
[u'law', u'reform', u'magistraci']
[u'polic', u'station', u'plan', u'berri']
[u'norfolk', u'ponder', u'impact', u'fewer', u'flight']
[u'drought', u'spread', u'septemb']
[u'school', u'fail', u'aborigin', u'literaci', u'test']
[u'crackdown', u'water', u'waster']
[u'river', u'threaten', u'irrig', u'plan', u'centr']
[u'seek', u'crack', u'child', u'abus']
[u'ogradi', u'confid', u'return']
[u'opposit', u'govern', u'outlin', u'obses', u'strategi']
[u'osaka', u'evacu', u'expert', u'defus', u'wwii', u'bomb']
[u'oyster', u'farmer', u'seek', u'feder']
[u'founder', u'start', u'liquid', u'appeal']
[u'liquid', u'deni', u'mislead', u'creditor']
[u'panther', u'snub', u'kangaroo']
[u'patterson', u'target', u'wealthi', u'famili', u'receiv']
[u'player', u'exchang', u'get', u'underway']
[u'return', u'home', u'emot', u'servic']
[u'govt', u'end', u'search', u'remot', u'gold']
[u'polic', u'hunt', u'video', u'store', u'arm', u'bandit']
[u'polic', u'investig', u'bottl', u'shop', u'raid']
[u'polic', u'offic', u'stand', u'trial', u'drug', u'theft']
[u'polic', u'probe', u'incid', u'sydney', u'tafe']
[u'polic', u'seiz', u'fake', u'rugbi', u'world', u'jersey']
[u'polic', u'stage', u'drug', u'raid', u'darwin', u'armi', u'base']
[u'power', u'station', u'propon', u'reject', u'subsidi', u'claim']
[u'preselect', u'process', u'postpon']
[u'produc', u'vet', u'push', u'slaughter', u'sheep']
[u'produc', u'warn', u'prepar', u'wild', u'bait']
[u'protea', u'seri']
[u'public', u'comment', u'seek', u'byron', u'biodivers', u'plan']
[u'puma', u'selector', u'wield']
[u'boati', u'ethanol']
[u'govt', u'review', u'atherton', u'hospit', u'servic']
[u'labor', u'name', u'cook', u'candid']
[u'razorback', u'prove', u'good', u'croc']
[u'refuge', u'advoc', u'perman', u'visa']
[u'rome', u'bind', u'passeng', u'terroris', u'snake']
[u'govt', u'announc', u'region', u'polic', u'station']
[u'privatis', u'rural', u'justic', u'build']
[u'schuettler', u'make']
[u'schumach', u'stand', u'great']
[u'seawe', u'link', u'possibl', u'cancer', u'treatment']
[u'secur', u'boost', u'plan', u'fish', u'hatcheri', u'theft']
[u'secur', u'paramount', u'revers', u'bali', u'poverti']
[u'serb', u'pilot', u'shoot', u'newli', u'wed']
[u'sheep', u'inquiri', u'head', u'discount', u'export']
[u'shooter', u'diamond', u'rule']
[u'korean', u'leader', u'step', u'referendum', u'fail']
[u'small', u'grocer', u'claim', u'nation', u'duopoli']
[u'soccer', u'legend', u'warren', u'name', u'taskforc']
[u'dismiss', u'turkey', u'tunnel', u'handbag']
[u'south', u'east', u'jobless', u'rate', u'fall']
[u'south', u'korean', u'presid', u'poll', u'reveal']
[u'springborg', u'unworri', u'split', u'telstra']
[u'stepdaught', u'appeal', u'sidney', u'artwork']
[u'tare', u'council', u'like', u'avoid', u'mandatori', u'tank']
[u'tarp', u'inventor', u'cover', u'base', u'award']
[u'credit', u'union', u'sell', u'demutualis', u'plan']
[u'tension', u'increas', u'china', u'space', u'mission', u'near']
[u'tesk', u'second', u'gustafson', u'win', u'controversi', u'crown']
[u'thalidomid', u'market']
[u'compani', u'fail', u'green', u'test']
[u'civil', u'servant', u'face', u'hutton', u'inquiri']
[u'tour', u'possum', u'readi', u'return', u'perth']
[u'tresco', u'tour', u'warm']
[u'truck', u'consid', u'suspici']
[u'charg', u'record', u'speed', u'haul']
[u'union', u'fear', u'newspap', u'compani', u'takeov', u'cost']
[u'student', u'associ', u'seek', u'communic', u'boost']
[u'univers', u'increas', u'graduat', u'ceremoni']
[u'urin', u'sampl', u'take', u'armi', u'base', u'drug', u'raid']
[u'diplomat', u'join', u'ireland', u'talk']
[u'marin', u'head', u'home', u'game']
[u'busi', u'struggl', u'liabil', u'insur']
[u'govt', u'urg', u'stop', u'home', u'buyer', u'grant']
[u'compani', u'gold', u'rush']
[u'face', u'teacher', u'shortag']
[u'govt', u'consid', u'pastor', u'tenur', u'chang']
[u'grower', u'discuss', u'wool', u'levi', u'vote']
[u'whale', u'sydney', u'harbour', u'stopov']
[u'whale', u'frolic', u'sydney', u'harbour']
[u'wolv', u'beat', u'knight', u'post', u'season']
[u'woodward', u'face', u'anxious', u'scrumhalf', u'wait']
[u'wool', u'expo', u'yarn', u'pull', u'younger', u'audienc']
[u'wool', u'grower', u'reject', u'return', u'sheep']
[u'plant', u'improv', u'break', u'hill', u'water']
[u'aborigin', u'seek', u'support', u'fight', u'perth']
[u'bushfir', u'inquiri', u'cost']
[u'adelaid', u'festiv', u'program', u'cross', u'boundari']
[u'adelaid', u'offer', u'nobel', u'author', u'citi']
[u'afl', u'best', u'gear', u'intern', u'rule', u'match']
[u'zealand', u'announc', u'staff', u'cut']
[u'ord', u'climb', u'month', u'high']
[u'alston', u'deni', u'conflict', u'telstra', u'share']
[u'write']
[u'anti', u'corrupt', u'raid', u'legal', u'question']
[u'applebi', u'climb', u'career', u'high', u'rank', u'place']
[u'exhibit', u'rais', u'fund', u'cultur', u'hous', u'plan']
[u'astarloa', u'apologis', u'bettini', u'bribe', u'claim']
[u'astl', u'blow', u'kiwi', u'ahead', u'seri']
[u'launch', u'probe', u'match', u'fix', u'claim']
[u'attack', u'kill', u'soldier', u'iraq']
[u'australian', u'polic', u'patrol', u'papua', u'guinea']
[u'australia', u'shrug', u'decoy', u'critic']
[u'babi', u'hand', u'home', u'grant']
[u'baghdad', u'embassi', u'bomb', u'injur']
[u'ballarat', u'head', u'bendigo']
[u'crowd', u'expect', u'whale', u'festiv']
[u'crowd', u'turn', u'discuss', u'council', u'merger']
[u'laden', u'name', u'qaeda', u'player']
[u'bomber', u'fight', u'rule', u'fine']
[u'break', u'hill', u'woman', u'jail', u'fraud']
[u'contractor', u'reject', u'latest', u'govt', u'offer']
[u'bush', u'reject', u'iraq', u'complaint']
[u'busi', u'group', u'reject', u'social', u'respons', u'survey']
[u'cairn', u'academ', u'join', u'nation', u'protest']
[u'tribal', u'recognit']
[u'shark', u'fin']
[u'canada', u'hop', u'bradburi']
[u'carr', u'investig', u'nation', u'assault', u'claim']
[u'central', u'survey', u'uncov', u'drive', u'habit']
[u'centr', u'put', u'emphasi', u'aborigin', u'male', u'health']
[u'child', u'die']
[u'chines', u'deleg', u'seek', u'invest']
[u'club', u'confer', u'focus', u'poki', u'plan']
[u'communiti', u'outcri', u'pool', u'redevelop']
[u'pois', u'launch', u'campaign']
[u'corpor', u'watchdog', u'clear', u'decept']
[u'corretja', u'come', u'spanish', u'battl']
[u'council', u'call', u'long', u'term', u'water', u'commit']
[u'council', u'question', u'cheap', u'airlin', u'fare']
[u'council', u'urg', u'lodg', u'crime', u'prevent', u'plan']
[u'council', u'urg', u'offer', u'open', u'space']
[u'court', u'rule', u'torr', u'strait', u'nativ', u'titl', u'disput']
[u'court', u'weigh', u'ump', u'futur']
[u'crean', u'call', u'respect', u'bush', u'address']
[u'democrat', u'seek', u'stricter', u'regul', u'uranium']
[u'democrat', u'want', u'fisher', u'compo', u'reef', u'report']
[u'dokic', u'battl', u'past', u'rubin', u'zurich']
[u'itali', u'tonga', u'replay']
[u'confid', u'manag', u'oliv', u'tree', u'diseas']
[u'market', u'explod', u'piraci']
[u'educ', u'polici', u'target', u'student', u'middl', u'east']
[u'egyptian', u'twin', u'good', u'shape', u'night']
[u'elleri', u'gear', u'strong', u'indi', u'show']
[u'ethanol', u'propon', u'say', u'pressur', u'mount', u'govt']
[u'hold', u'iraqi']
[u'expert', u'meet', u'save', u'tasmanian', u'devil']
[u'explos', u'solut', u'stubborn', u'stain']
[u'fail', u'adjust', u'payout']
[u'famili', u'feud', u'sydney', u'shoot', u'polic']
[u'farmer', u'elig', u'drought']
[u'fate', u'inform', u'centr', u'undecid']
[u'fate', u'robe', u'centr', u'undecid']
[u'govt', u'criticis', u'kopassus', u'world']
[u'govt', u'move', u'fail', u'age', u'home']
[u'govt', u'urg', u'boost', u'region', u'road', u'invest']
[u'govt', u'urg', u'nuclear', u'test', u'vet']
[u'ferrari', u'target', u'moto', u'champ', u'rossi']
[u'fijian', u'villag', u'apologis', u'ancestor']
[u'fiji', u'star', u'ban', u'match']
[u'fisherman', u'criticis', u'port', u'plan']
[u'fish', u'debri', u'hurt', u'gippsland', u'bird']
[u'forestri', u'code', u'systemat', u'ignor', u'committe', u'tell']
[u'frost', u'take', u'heavi', u'toll', u'canola', u'crop']
[u'frustrat', u'drive', u'road', u'rage', u'survey', u'show']
[u'gatecrash', u'lay', u'depart', u'claim']
[u'giteau', u'vickerman', u'expect', u'start', u'romania']
[u'goodwin', u'charg', u'select', u'comment']
[u'govt', u'legal', u'stop', u'sheep']
[u'govt', u'crack', u'traffic', u'slave']
[u'greec', u'reject', u'russian', u'extradit', u'order', u'media']
[u'group', u'push', u'calder', u'highway', u'boost']
[u'hand', u'feed', u'wan', u'hunter', u'drought', u'condit']
[u'harbi', u'william', u'consid']
[u'hayden', u'rat', u'world', u'best', u'batsman']
[u'hodg', u'place', u'restrict', u'duti']
[u'hoggard', u'burst', u'put', u'england', u'dhaka']
[u'hope', u'health', u'talk', u'avoid', u'industri', u'woe']
[u'hop', u'highway', u'work', u'boost', u'tourism']
[u'hous', u'boom', u'isol', u'incom', u'earner', u'report']
[u'hungri', u'eagl', u'face', u'troubl', u'fiji']
[u'indigen', u'communiti', u'pose', u'challeng']
[u'indonesia', u'deploy', u'troop', u'avert', u'muslim', u'christian']
[u'industri', u'action', u'bring', u'greec', u'standstil']
[u'injuri', u'pakistan', u'need', u'captain']
[u'injuri', u'worri', u'eas', u'england']
[u'injuri', u'worri', u'mount', u'england']
[u'inquiri', u'chairman', u'defend', u'close', u'hear']
[u'inquiri', u'tell', u'blair', u'chair', u'kelli', u'meet']
[u'defend', u'side', u'comp']
[u'isra', u'troop', u'return', u'rafah', u'camp']
[u'isra', u'troop', u'search', u'rafah', u'tunnel']
[u'israel', u'sign', u'palestinian', u'expuls', u'order']
[u'fuel', u'ration']
[u'kimberley', u'communiti', u'welcom', u'respons', u'petrol']
[u'knife', u'attack', u'caus', u'concern', u'hospit']
[u'kofi', u'annan', u'pull', u'islam', u'summit', u'malaysia']
[u'lehmann', u'confid', u'beat', u'injuri']
[u'back', u'nat', u'infrastructur', u'plan']
[u'liber', u'rival', u'accus', u'turnbul', u'court', u'labor']
[u'liberia', u'get', u'presid', u'ahead', u'elect']
[u'lismor', u'dopey', u'driver', u'surpris', u'offici']
[u'longreach', u'tiger', u'competit']
[u'lovelorn', u'bride', u'fake', u'drug', u'deal', u'jail']
[u'malle', u'fowl', u'figur', u'plummet', u'wake', u'drought']
[u'face', u'court', u'polic', u'incid']
[u'mater', u'staff', u'strike', u'hospit', u'redevelop']
[u'mayor', u'continu', u'support', u'light', u'rail', u'network']
[u'mayor', u'issu', u'warn', u'railway', u'futur']
[u'mayor', u'pleas', u'lend', u'leas', u'meet']
[u'member', u'fight', u'colleg', u'closur']
[u'mideast', u'initi', u'reviv', u'peac', u'plan']
[u'reopen', u'expect', u'boost', u'gold']
[u'mine', u'compani', u'start', u'drill', u'program']
[u'monkey', u'busi', u'brain', u'damag', u'victim']
[u'more', u'woman', u'face', u'drug', u'charg']
[u'violenc', u'nepal', u'peac', u'talk', u'fail']
[u'mundin', u'name', u'australia', u'deadliest', u'sportsman']
[u'murder', u'cameraman', u'famili', u'reject', u'claim']
[u'navratilova', u'name', u'team']
[u'neill', u'uefa', u'crunch', u'match']
[u'newcastl', u'councillor', u'quit']
[u'chief', u'justic']
[u'congress', u'voic', u'indigen', u'women']
[u'provid', u'altern', u'tourist']
[u'panel', u'consid', u'region', u'road', u'need']
[u'pipelin', u'creat', u'construct', u'job']
[u'ireland', u'talk', u'fail', u'elect', u'date']
[u'call', u'greater', u'polic', u'power']
[u'regul', u'funer']
[u'driver', u'affect', u'rage']
[u'opposit', u'reject', u'extend', u'daylight', u'save']
[u'parliament', u'rememb', u'controversi', u'labor']
[u'pasta', u'maker', u'say', u'custom', u'dont', u'want', u'food']
[u'peerless', u'hayden', u'star', u'perth']
[u'defend', u'minist', u'telstra', u'share', u'claim']
[u'polic', u'associ', u'say', u'station', u'time']
[u'polic', u'closer', u'solv', u'sydney', u'shoot']
[u'polic', u'dismantl', u'drug', u'syndic']
[u'polic', u'probe', u'shepparton', u'supermarket', u'hold']
[u'polic', u'probe', u'sydney', u'drive', u'shoot']
[u'polic', u'seek', u'griffith', u'fight', u'wit']
[u'posit', u'earn', u'drive', u'market', u'higher']
[u'prospect', u'councillor', u'guid', u'elect']
[u'public', u'elect', u'vote', u'remind']
[u'public', u'meet', u'discuss', u'land']
[u'puma', u'gambl', u'strength', u'team']
[u'puma', u'tonga', u'join', u'azzurri', u'criticis', u'draw']
[u'consid', u'greater', u'protect', u'grey', u'nurs']
[u'issu', u'fli', u'alert']
[u'raaf', u'cover', u'cost', u'canberra', u'past']
[u'rat', u'rise', u'like', u'christma', u'say']
[u'relentless', u'puma', u'pummel', u'namibia']
[u'riot', u'forc', u'bolivia', u'pipelin']
[u'wait', u'drug', u'test', u'verdict']
[u'rural', u'doctor', u'leav', u'son', u'visa', u'refus']
[u'russia', u'oppos', u'resolut', u'iraq']
[u'rychart', u'clear', u'immigr', u'hurdl']
[u'nat', u'budget', u'region', u'spend']
[u'scheme', u'offer', u'borroloola', u'youth', u'activ']
[u'scot', u'hand', u'euro', u'horror', u'draw']
[u'seal', u'boom', u'threaten', u'fish', u'speci']
[u'second', u'woman', u'court', u'tourist', u'attack']
[u'sharon', u'condemn', u'peac', u'plan']
[u'shop', u'hour', u'deregul', u'gambier']
[u'slim', u'chanc', u'steve', u'irwin', u'chang']
[u'smyth', u'deni', u'sixer', u'doldrum']
[u'snowi', u'shire', u'form', u'land', u'plan']
[u'solar', u'team', u'arriv', u'record', u'challeng']
[u'solomon', u'island', u'chariti', u'founder', u'face', u'jail']
[u'songstress', u'sing', u'virtu', u'theatr', u'revamp']
[u'south', u'coast', u'comment', u'assign', u'taskforc']
[u'southcorp', u'director', u'face', u'sharehold', u'crush']
[u'southcorp', u'sharehold', u'upset', u'payment']
[u'lanka', u'split', u'captainci', u'england', u'tour']
[u'staff', u'urg', u'workplac', u'safer']
[u'stanhop', u'award', u'braveri', u'medal', u'rescu', u'pilot']
[u'stawel', u'mentor', u'scheme', u'healthi', u'start']
[u'storag', u'shed', u'ahead', u'despit', u'communiti', u'concern']
[u'strand', u'sheep', u'threaten', u'industri', u'govt']
[u'swim', u'coach', u'hodg', u'deni', u'alleg']
[u'swim', u'coach', u'restrict', u'duti']
[u'tammin', u'council', u'hop', u'boost', u'town', u'employ']
[u'econom', u'boom', u'leav', u'poor']
[u'worker', u'redund', u'privatis', u'firm']
[u'teenag', u'hospitalis', u'meningococc']
[u'honour', u'rescu', u'effort']
[u'tobin', u'memori', u'mark', u'excel', u'award']
[u'tourist', u'poison', u'garden', u'eden']
[u'transport', u'union', u'warn', u'world', u'secur']
[u'turnbul', u'ask', u'union', u'liber', u'preselect', u'help']
[u'dead', u'sydney', u'drive', u'shoot']
[u'umaga', u'face', u'world']
[u'give', u'power', u'peacekeep', u'afghanistan']
[u'union', u'rais', u'doubt', u'port', u'claim']
[u'arrest', u'baghdad', u'hotel', u'bomb', u'suspect']
[u'court', u'reviv', u'suit', u'pfizer', u'nigerian']
[u'set', u'deadlin', u'iraq', u'timet']
[u'deliv', u'iraq', u'resolut', u'secur']
[u'muster', u'get', u'intern', u'award']
[u'bushfir', u'inquiri', u'recommend', u'fuel', u'reduct']
[u'govt', u'fund', u'seek', u'studi']
[u'govt', u'respons', u'hous', u'grant', u'loophol']
[u'unbeaten', u'nation', u'netbal', u'champ']
[u'secur', u'kelli', u'document', u'public']
[u'villa', u'quiet', u'alpay', u'futur']
[u'catch', u'home', u'grant', u'rort']
[u'govt', u'ask', u'help', u'jobless', u'miner']
[u'wallabi', u'face', u'select', u'dilemma']
[u'wallabi', u'rank']
[u'nat', u'push', u'chang', u'wine', u'rule']
[u'premier', u'eye', u'canberra']
[u'webber', u'champion', u'futur']
[u'wheatbelt', u'town', u'tidi', u'town', u'finalist']
[u'wild', u'control', u'program', u'end']
[u'wine', u'compani', u'pleas', u'takeov']
[u'wollongong', u'councillor', u'fear', u'theatr', u'futur']
[u'woman', u'recov', u'hospit', u'accid']
[u'wool', u'produc', u'elect', u'presid']
[u'young', u'peopl', u'encourag', u'farm']
[u'youth', u'group', u'prepar', u'music', u'festiv']
[u'youth', u'tackl', u'fish', u'clinic']
[u'adelaid', u'readi', u'debut']
[u'administr', u'region', u'airlin']
[u'age', u'aussi', u'come', u'pack', u'jone']
[u'albani', u'offic', u'readi', u'high', u'risk', u'task']
[u'albani', u'resid', u'call', u'calm', u'overhaul']
[u'alburi', u'mayor', u'forese', u'combin', u'citi', u'futur']
[u'anti', u'discrimin', u'amend', u'reform']
[u'staff', u'nation', u'strike']
[u'aust', u'base', u'share', u'busi', u'expand']
[u'australian', u'bear', u'writer', u'win', u'booker', u'prize']
[u'australian', u'expat', u'win', u'booker', u'prize']
[u'bangkok', u'skyscrap', u'safe']
[u'barrier', u'draw', u'boost', u'time', u'caulfield']
[u'blackal', u'farmer', u'seek', u'drought', u'assist']
[u'black', u'spot', u'remov', u'increas', u'road', u'safeti']
[u'blaze', u'take', u'hold', u'warrnambool', u'oldest', u'hous']
[u'bomber', u'solomon', u'pedal', u'quit', u'decis']
[u'box', u'champ', u'thornberri', u'retir']
[u'brack', u'consid', u'test', u'older', u'driver']
[u'break', u'hill', u'perfect', u'budget', u'film', u'say']
[u'break', u'hill', u'resid', u'station']
[u'burk', u'midwif', u'shortag', u'forc', u'long', u'trip']
[u'bush', u'play', u'rumour', u'rift']
[u'bush', u'thank', u'public', u'back']
[u'busi', u'group', u'predict', u'nerv', u'ambul']
[u'action', u'bushfir', u'report', u'recommend']
[u'brake', u'truck', u'stop', u'plan']
[u'allow', u'motherless', u'children', u'visit']
[u'camel', u'tour', u'caus', u'shire', u'concern']
[u'canada', u'rest', u'player', u'black', u'game']
[u'can', u'base', u'sensor', u'guid', u'blind', u'qlder']
[u'capit', u'open', u'world', u'account']
[u'carlton', u'player', u'escap', u'convict']
[u'carr', u'condemn', u'shoot']
[u'chelsea', u'despit', u'birmingham', u'draw']
[u'children', u'court', u'chief', u'call', u'reform']
[u'china', u'launch', u'man', u'space', u'flight']
[u'china', u'man', u'space', u'craft', u'land', u'mongolia']
[u'claim', u'china', u'overtak', u'japan', u'econom']
[u'clock', u'tick', u'sarina', u'council', u'face', u'water', u'woe']
[u'club', u'curfew', u'result', u'safer', u'street']
[u'coff', u'harbour', u'host', u'custodi', u'inquiri']
[u'communiti', u'servic', u'troubl', u'carlton', u'player']
[u'conduct', u'commiss', u'reject', u'hall', u'appeal']
[u'consum', u'confid', u'spark', u'rate', u'rise', u'talk']
[u'coron', u'rule', u'caus', u'crash']
[u'council', u'hear', u'bushland', u'develop', u'protest']
[u'council', u'offic', u'authoris', u'plan']
[u'council', u'plan', u'afford', u'hous']
[u'council', u'plan', u'preserv', u'histor']
[u'council', u'select', u'repres', u'steer']
[u'council', u'undecid', u'tank', u'site', u'rezon']
[u'court', u'hear', u'rivkin', u'appeal']
[u'crean', u'pledg', u'summit', u'reduc', u'poverti']
[u'croc', u'sink', u'sixer', u'razorback', u'tame', u'tiger']
[u'academ', u'join', u'nation', u'strike']
[u'date', u'bendigo', u'start', u'work']
[u'searci', u'hous', u'decis']
[u'death', u'toll', u'mark', u'nuclear', u'test', u'anniversari']
[u'demand', u'riverland', u'white', u'win', u'expect', u'doubl']
[u'democrat', u'unhappi', u'cook', u'decis']
[u'democrat', u'urg', u'tighter', u'uranium', u'mine', u'regul']
[u'dokic', u'battl', u'zurich', u'quarter']
[u'driver', u'river', u'cross', u'fear', u'tragedi']
[u'driver', u'salt', u'lake', u'warn']
[u'drought', u'delay', u'bilbi', u'rescu', u'plan']
[u'elvi', u'return', u'duti']
[u'england', u'host', u'dane', u'novemb', u'friend']
[u'england', u'unchang', u'bok', u'clash']
[u'decis', u'reject', u'power']
[u'abattoir', u'worker', u'ralli', u'entitl']
[u'factori', u'explos', u'india', u'kill', u'injur']
[u'famili', u'depart', u'child', u'abus']
[u'famili', u'feud', u'respons', u'shoot']
[u'farmer', u'sheep', u'ship', u'dock', u'remot']
[u'farmer', u'urg', u'avoid', u'harvest', u'injuri']
[u'farmer', u'urg', u'report', u'frost', u'damag']
[u'govt', u'trial', u'independ', u'age', u'care', u'perth']
[u'feud', u'famili', u'urg', u'cooper', u'polic']
[u'fiji', u'scrape', u'home']
[u'engulf', u'burleigh', u'unit']
[u'firefight', u'test', u'loom']
[u'warn', u'inadequ', u'inquiri', u'tell']
[u'home', u'owner', u'grant', u'condit']
[u'fishermen', u'warn', u'loss', u'reef', u'zone']
[u'fish', u'oper', u'criticis', u'marin', u'park', u'zone']
[u'rebel', u'kill', u'violenc', u'aceh']
[u'foreign', u'compani', u'defend', u'job', u'polici']
[u'franc', u'reshuffl', u'team', u'face', u'japan']
[u'ganguli', u'doubt', u'second', u'test']
[u'gibbon', u'promis', u'prais', u'bush']
[u'gold', u'coast', u'tourism', u'slump', u'buck', u'trend']
[u'gover', u'urg', u'implement', u'bushfir', u'inquiri']
[u'govt', u'opposit', u'accus', u'obstruction']
[u'govt', u'dismiss', u'frivol', u'prison', u'appeal']
[u'govt', u'reject', u'payment', u'plan', u'help']
[u'govt', u'unveil', u'polici', u'help', u'victim', u'polic']
[u'green', u'concern', u'spark', u'stop', u'honeymoon']
[u'green', u'light', u'residenti', u'estat']
[u'health', u'servic', u'put', u'hospit', u'redevelop', u'plan']
[u'high', u'cost', u'mean', u'shellharbour', u'council', u'elect']
[u'hodg', u'deni', u'second', u'misconduct', u'claim']
[u'hope', u'oper', u'cave', u'tourism', u'boost']
[u'hop', u'polici', u'boost', u'citi', u'develop']
[u'hospit', u'assault', u'rise']
[u'india', u'lose', u'ganguli', u'second', u'test']
[u'india', u'launch', u'satellit']
[u'indigen', u'busi', u'get', u'fund', u'boost', u'centr']
[u'indi', u'excit', u'grow', u'coast']
[u'investor', u'block', u'murdoch', u'reward', u'execut']
[u'investor', u'wait', u'news', u'trade', u'stop']
[u'iraqi', u'battl', u'leav', u'dead', u'dozen', u'wound']
[u'iraq', u'launch', u'currenc']
[u'ireland', u'chang', u'namibia', u'match']
[u'isra', u'armi', u'continu', u'sweep', u'rafah']
[u'isra', u'forc', u'stage', u'incurs', u'gaza']
[u'italian', u'rebound', u'overpow', u'tonga']
[u'japan', u'contribut', u'iraq']
[u'jazz', u'festiv', u'boost', u'stawel', u'coffer']
[u'judg', u'rule', u'ump', u'trade']
[u'junior', u'kangaroo', u'prepar', u'clash']
[u'kafelnikov', u'hurt', u'match', u'fix', u'claim']
[u'keat', u'seek', u'promiscu', u'econom', u'tie']
[u'korora', u'teacher', u'stop', u'work', u'deal']
[u'labor', u'protest', u'prove', u'democraci', u'aliv', u'bush']
[u'labor', u'vow', u'fight', u'govt', u'strike', u'propos']
[u'updat', u'deal', u'cyber', u'crime']
[u'lehmann', u'miss', u'india', u'tour']
[u'lehmann', u'miss', u'second', u'test', u'india', u'tour']
[u'light', u'rail', u'discuss', u'deputi']
[u'liverpool', u'boss', u'defend', u'heskey', u'role', u'bust']
[u'longyard', u'golf', u'cours', u'sale', u'end', u'uncertainti']
[u'lopez', u'defus', u'scud', u'russian', u'fail']
[u'patronag', u'cast', u'doubt', u'servic']
[u'mackay', u'send', u'trade', u'deleg']
[u'appeal', u'polic', u'death', u'threat', u'convict']
[u'face', u'court', u'crash']
[u'hospit', u'stab']
[u'plead', u'guilti', u'rape']
[u'mayor', u'push', u'capricorn', u'coast', u'nation', u'park']
[u'mcdermot', u'name', u'develop', u'panel']
[u'medic', u'indemn', u'crisi', u'avert', u'wagga', u'wagga']
[u'member', u'vote', u'rural', u'group', u'futur']
[u'mine', u'compani', u'remain', u'silent', u'senat', u'uranium']
[u'minist', u'question', u'indigen', u'histori', u'claim']
[u'molik', u'hantuchova', u'fall', u'zurich']
[u'field', u'drill', u'west']
[u'train', u'exercis', u'plan', u'curb']
[u'motorcycl', u'gang', u'drive', u'scot', u'town']
[u'highlight', u'hospit', u'concern']
[u'murdoch', u'outlin', u'news', u'corp', u'initi']
[u'music', u'chair', u'wilson', u'jaguar', u'drive']
[u'namibian', u'coach', u'prais', u'hide', u'digniti']
[u'nativ', u'titl', u'public', u'work', u'decis', u'bring', u'mix']
[u'nat', u'choos', u'psychiatrist', u'contest', u'rockhampton']
[u'nat', u'sight', u'south', u'west']
[u'nazi', u'land', u'owner', u'court']
[u'neglect', u'librari', u'resourc', u'nation', u'trend']
[u'claim', u'surfac', u'wartim', u'naval', u'disast']
[u'helicopt', u'final', u'deliv', u'navi']
[u'mine', u'rescu', u'servic', u'advisori', u'committe', u'meet']
[u'zealand', u'inflat', u'steadi']
[u'resolut', u'council', u'hospit', u'impass']
[u'north', u'korea', u'reject', u'talk']
[u'premier', u'slat', u'shoot', u'comment']
[u'union', u'back', u'higher', u'foreign', u'student', u'number']
[u'warn', u'govt', u'plan', u'road', u'fund']
[u'mine', u'facelift']
[u'opposit', u'admit', u'camera', u'figur', u'mistak']
[u'parliament', u'hous', u'secur', u'tighten']
[u'petit', u'call', u'children', u'keep']
[u'phillip', u'come', u'aliv']
[u'plan', u'afoot', u'reviv', u'surat', u'rugbi', u'leagu', u'team']
[u'plan', u'land', u'clear', u'welcom']
[u'govt', u'claim', u'hide', u'gold', u'futil', u'search']
[u'polic', u'arrest', u'hindu', u'leader', u'prevent', u'ayodhya']
[u'polic', u'hunt', u'light', u'finger', u'thiev']
[u'polic', u'investig', u'fatal']
[u'politician', u'pour', u'school', u'document']
[u'poor', u'weather', u'blame', u'drop', u'australia', u'grape']
[u'power', u'provid', u'offer', u'alic', u'train', u'workshop']
[u'princess', u'royal', u'slip', u'melbourn']
[u'progress', u'contract', u'talk', u'specialist']
[u'public', u'question', u'speed', u'camera']
[u'public', u'wast', u'dump']
[u'kid', u'claim', u'home', u'owner', u'grant']
[u'nurs', u'issu', u'warn', u'residenti', u'age', u'care']
[u'resid', u'flee', u'dead', u'attack', u'eastern']
[u'play', u'await', u'drug', u'test', u'fate']
[u'rock', u'lobster', u'forum', u'head', u'dongara']
[u'roddick', u'lead', u'assault', u'madrid']
[u'ruck', u'dead', u'say', u'kiwi', u'coach']
[u'issu', u'measl', u'warn']
[u'parliament', u'reject', u'crown', u'leas']
[u'schoolgirl', u'complet', u'fundrais', u'trek']
[u'school', u'art', u'build', u'get', u'leas', u'life']
[u'search', u'miss', u'nurs', u'home']
[u'separ', u'egyptian', u'twin', u'soon', u'emerg']
[u'serena', u'rush', u'court']
[u'sharehold', u'vote', u'murdoch', u'execut', u'reward']
[u'share', u'market', u'hang', u'finish', u'high', u'note']
[u'sheep', u'ship', u'delay', u'vail', u'visit']
[u'shoot', u'teenag', u'die', u'hospit']
[u'silenc', u'mark', u'maralinga', u'test']
[u'silvagni', u'quit', u'carlton', u'board']
[u'skipper', u'urg', u'england', u'lift', u'bok']
[u'solomon', u'deploy', u'enorm', u'success', u'downer']
[u'solomon', u'stick', u'bomber']
[u'springbok', u'want', u'tempo', u'game', u'england']
[u'andrew', u'lengthen', u'open']
[u'strand', u'sheep', u'quandari', u'mirror', u'govt', u'exercis']
[u'strong', u'quak', u'jolt', u'tokyo', u'injuri', u'report']
[u'studi', u'say', u'govt', u'indigen', u'polici', u'fail']
[u'sydney', u'water', u'crack', u'restrict']
[u'tafe', u'teacher', u'student', u'protest']
[u'nurs', u'demand', u'tougher', u'hospit', u'secur']
[u'telstra', u'commit', u'improv', u'communic']
[u'telstra', u'sell', u'threaten', u'internet', u'servic']
[u'thou', u'shalt', u'flout', u'traffic', u'rule', u'russian', u'priest']
[u'jail', u'harbour', u'bali', u'bomber']
[u'tighter', u'secur', u'consid', u'melbourn', u'tram']
[u'toowoomba', u'precinct', u'project', u'get', u'green', u'light']
[u'tourism', u'bodi', u'look', u'boost', u'intern']
[u'tourism', u'industri', u'welcom', u'increas', u'oversea']
[u'trade', u'minist', u'reassur', u'middl', u'east', u'live', u'anim']
[u'dead', u'workplac', u'accid']
[u'umaga', u'stay', u'world']
[u'union', u'challeng', u'fletcher', u'jone', u'cut']
[u'staff', u'protest', u'industri', u'polici']
[u'forward', u'trial', u'wildcat']
[u'revis', u'iraq', u'draft']
[u'resolut', u'vote', u'iraq']
[u'veto', u'resolut', u'condemn', u'israel', u'secur']
[u'vow', u'catch', u'gaza', u'convoy', u'bomber']
[u'vice', u'chancellor', u'prais', u'depart', u'council']
[u'vickerman', u'giffin', u'mortlock', u'bench']
[u'west', u'gate', u'tragedi', u'rememb']
[u'wild', u'dog', u'threaten', u'kosciuszko', u'sheep', u'graze']
[u'wildlif', u'expert', u'warn', u'bedevil', u'diseas']
[u'william', u'dismiss', u'concern', u'develop']
[u'wollongong', u'council', u'back', u'tourist', u'centr', u'plan']
[u'woman', u'die', u'day', u'attack']
[u'woman', u'charg', u'upgrad', u'murder']
[u'world', u'expect', u'generat', u'rugbi', u'club']
[u'world', u'anglican', u'leader', u'open', u'debat']
[u'year', u'rider', u'write', u'aust', u'record', u'book']
[u'plan', u'protect', u'nativ', u'veget']
[u'abbott', u'unveil', u'plan', u'medic', u'indemn', u'review']
[u'academ', u'action', u'stop', u'tertiari']
[u'opposit', u'promis', u'motor', u'sport', u'facil']
[u'adelaid', u'corrobore', u'mine']
[u'airlin', u'reason', u'chanc', u'trade']
[u'allianc', u'improv', u'healthi', u'food', u'remot']
[u'share', u'suspend']
[u'annan', u'warn', u'muslim', u'leader', u'western']
[u'arafat', u'condemn', u'convoy', u'bomb']
[u'arsenal', u'player', u'admit', u'charg', u'unit', u'brawl']
[u'asylum', u'seeker', u'refus', u'protest', u'detent']
[u'asylum', u'seeker', u'stage', u'rooftop', u'protest']
[u'atec', u'warn', u'industri', u'rebuild', u'sar']
[u'auditor', u'tell', u'foster', u'child', u'inquiri', u'famili']
[u'aust', u'peacekeep', u'arrest', u'rebel', u'milit', u'solomon']
[u'australia', u'plan', u'solomon', u'militari', u'pull']
[u'automot', u'retail', u'announc', u'share', u'market', u'float']
[u'azerbaijan', u'opposit', u'support', u'violent']
[u'bank', u'profit', u'surg']
[u'bank', u'queensland', u'target', u'southern', u'state']
[u'name', u'snub', u'million', u'dollar', u'world', u'match', u'play']
[u'bolivian', u'protest', u'fatal', u'clash', u'troop']
[u'brit', u'lose', u'cunningham', u'kangaroo', u'seri']
[u'break', u'hill', u'record', u'bumper', u'tourist', u'season']
[u'brown', u'tiger']
[u'bush', u'sheriff', u'comment', u'misinterpret', u'ambassador']
[u'calder', u'highway', u'speed', u'limit', u'rise']
[u'chang', u'drought', u'criteria']
[u'canada', u'calendar']
[u'canada', u'face', u'black', u'mission', u'imposs']
[u'capit', u'lose', u'french', u'club', u'world']
[u'carr', u'defend', u'ship', u'remark']
[u'china', u'visit', u'open', u'tamworth', u'door', u'trade']
[u'china', u'vow', u'space', u'mission', u'year']
[u'chines', u'spacecraft', u'land', u'pilot', u'safe']
[u'church', u'strike', u'deal', u'age', u'facil']
[u'claim', u'dairi', u'woe', u'flow', u'milk', u'price']
[u'cliff', u'develop', u'draw', u'green', u'anger']
[u'clock', u'tick', u'age', u'aussi']
[u'cold', u'spring', u'stop', u'festiv', u'attract']
[u'commission', u'resign', u'amalgam', u'plan']
[u'concern', u'rais', u'rural', u'children', u'health']
[u'warn', u'murray', u'stand', u'lose']
[u'council', u'consid', u'nois', u'disput']
[u'council', u'puzzl', u'pipelin', u'fund', u'snub']
[u'court', u'approv', u'demerg', u'document']
[u'court', u'reserv', u'decis', u'rivkin', u'appeal']
[u'croc', u'bite', u'post']
[u'staff', u'join', u'nationwid', u'strike']
[u'cub', u'support', u'fear']
[u'dead', u'tasmania']
[u'deputi', u'defend', u'govt', u'assist', u'scheme']
[u'drought', u'hit', u'south', u'west', u'rural', u'servic']
[u'confid', u'millennium', u'train', u'reliabl']
[u'england', u'roll', u'maul', u'illeg', u'eal']
[u'england', u'wont', u'risk', u'injuri', u'bok', u'coach']
[u'environment', u'group', u'close', u'curti']
[u'environment', u'watchdog', u'probe', u'uranium', u'spill']
[u'everton', u'deni', u'chelsea', u'rooney']
[u'feder', u'environ', u'fund', u'go', u'beg']
[u'ferreira', u'slam', u'disgrac', u'madrid', u'crowd']
[u'confirm', u'singl', u'qualifi']
[u'fifa', u'drug', u'warn', u'ferdinand']
[u'firestorm', u'death', u'inquest', u'releas', u'preliminari']
[u'fodder', u'ship', u'readi', u'coco', u'island', u'sheep', u'mission']
[u'mayor', u'end', u'long', u'council', u'career']
[u'prompt', u'tougher', u'quarantin']
[u'frederick', u'hang', u'intern', u'run', u'boot']
[u'futur', u'region', u'airlin', u'servic', u'doubt']
[u'gallop', u'tabl', u'marina', u'develop', u'legal', u'advic']
[u'germani', u'franc', u'russia', u'agre', u'resolut']
[u'glen', u'inn', u'council', u'record', u'deficit']
[u'govt', u'move', u'ensur', u'public', u'access', u'recreat']
[u'govt', u'pass', u'develop', u'law']
[u'green', u'fume', u'tot', u'bush', u'secur']
[u'green', u'question', u'brighton', u'inciner', u'health', u'impact']
[u'growth', u'hormon', u'beef', u'product', u'caus', u'cancer']
[u'hard', u'issu', u'unresolv', u'free', u'trade', u'deal']
[u'henin', u'hardenn', u'track', u'spot']
[u'heritag', u'inspector', u'check', u'damag', u'home']
[u'high', u'nickel', u'price', u'boost', u'develop']
[u'hockeyroo', u'hudson', u'comeback', u'trail']
[u'hogg', u'injur', u'macgil']
[u'holiday', u'hotel', u'stay', u'open', u'despit', u'sale']
[u'honeymoon', u'open', u'inquiri']
[u'horticulturist', u'hop', u'improv', u'skill']
[u'hotter', u'weather', u'prompt', u'region', u'power', u'warn']
[u'cool', u'thorn', u'unworri', u'canada', u'score']
[u'iluka', u'begin', u'redund', u'plan']
[u'india', u'lose', u'captain', u'ahead', u'crucial', u'kiwi', u'test']
[u'indian', u'troop', u'battl', u'drug', u'smuggler', u'burma']
[u'indonesian', u'court', u'jail', u'bali', u'bomb', u'accomplic']
[u'indonesian', u'court', u'jail', u'mcdonald', u'bomber']
[u'inland', u'support', u'budget', u'surplus', u'bush', u'spend']
[u'insur', u'woe', u'turn', u'away', u'potenti', u'medic', u'student']
[u'intersect', u'black', u'spot', u'safeti', u'boost']
[u'investig', u'probe', u'uranium', u'spill']
[u'iraq', u'currenc', u'go', u'circul']
[u'golfer', u'bull']
[u'island', u'fear', u'sheep', u'arriv']
[u'jindabyn', u'event', u'reel', u'angler']
[u'jone', u'back', u'eal', u'attack', u'england']
[u'jone', u'hit', u'select', u'critic']
[u'judici', u'bias', u'claim', u'rivkin', u'appeal']
[u'junior', u'kangaroo', u'death']
[u'king', u'rule', u'strand', u'sheep']
[u'trobe', u'ralli', u'plan', u'reform']
[u'launceston', u'council', u'continu', u'search', u'manag']
[u'lion', u'secur', u'lappin', u'signatur']
[u'lower', u'hous', u'pass', u'higher', u'educ']
[u'macgil', u'undergo', u'fit', u'test']
[u'magistr', u'find', u'policeman', u'guilti', u'assault']
[u'major', u'event', u'cancel', u'follow', u'pondag', u'algal']
[u'charg', u'cocain', u'bust', u'brisban', u'airport']
[u'hail', u'hero', u'hous', u'rescu']
[u'injur', u'shed', u'explos']
[u'court', u'drug', u'charg']
[u'maori', u'leader', u'elect', u'bodi', u'pacif']
[u'market', u'slip', u'despit', u'strong', u'profit']
[u'mayor', u'confid', u'port', u'hinchinbrook', u'work', u'track']
[u'mayor', u'daunt', u'crocodil', u'hunter', u'expans']
[u'mayor', u'tell', u'altern', u'servic']
[u'face', u'court', u'rape', u'charg']
[u'miner', u'agre', u'water', u'wise']
[u'miner', u'wont', u'guarante', u'kimberley', u'job']
[u'monash', u'staff', u'join', u'strike', u'action']
[u'rain', u'need', u'quell', u'bushfir', u'danger']
[u'motor', u'fatigu', u'admiss', u'shock', u'polic']
[u'back', u'sheep', u'return', u'secur', u'quarantin']
[u'call', u'agricultur', u'colleg', u'investig']
[u'call', u'road', u'safeti', u'investig']
[u'fight', u'doctor', u'coupl', u'australia']
[u'fire', u'shoot', u'govt', u'lobster', u'rule']
[u'offer', u'assur', u'asbesto', u'affect']
[u'reject', u'region', u'sheriff']
[u'garnet', u'plant', u'record', u'higher', u'zinc', u'price']
[u'murray', u'river', u'report', u'receiv', u'environment', u'support']
[u'muslim', u'summit', u'withdrawl', u'iraq']
[u'ball', u'respons', u'fumbl', u'fiji']
[u'newcastl', u'staff', u'join', u'nation', u'univers', u'strike']
[u'ruck', u'polici', u'problem', u'black']
[u'technolog', u'drop', u'cost', u'control', u'wild']
[u'code', u'council', u'open', u'fair']
[u'york', u'ferri', u'crash', u'kill']
[u'convict', u'polic', u'offic', u'guilti']
[u'evid', u'guantanamo', u'detaine', u'tortur', u'ruddock']
[u'evid', u'rivkin', u'mental', u'ill', u'trial']
[u'extend', u'daylight', u'save']
[u'need', u'reserv', u'rais', u'rat']
[u'promis', u'say', u'rychart']
[u'minist', u'visit', u'tamworth', u'district']
[u'opposit', u'push', u'court', u'trial']
[u'tab', u'merg']
[u'region', u'airlin', u'administr']
[u'develop', u'board', u'rep', u'announc']
[u'govern', u'ban', u'slingshot']
[u'minist', u'surpris', u'result', u'aborigin']
[u'polic', u'offic', u'guilti', u'assault']
[u'allow', u'home', u'grant', u'access']
[u'nuclear', u'talk', u'stall', u'nkorea', u'hit']
[u'nurs', u'group', u'push', u'better', u'tasmanian', u'staff']
[u'open', u'record', u'stand', u'india']
[u'parliament', u'end', u'tie', u'privi', u'council']
[u'oliv', u'prebbl', u'plate']
[u'opposit', u'claim', u'sheep', u'ship', u'cost']
[u'pair', u'jail', u'conveni', u'store', u'hold']
[u'palestinian', u'forc', u'arrest', u'convoy', u'blast']
[u'palestinian', u'detain', u'attack', u'convoy']
[u'parliamentari', u'probe', u'consid', u'toxic', u'herbicid']
[u'parliament', u'honour', u'bali', u'victim']
[u'parliament', u'set', u'hospit', u'committe']
[u'payn', u'win', u'defier', u'ride', u'oliv', u'absenc']
[u'petit', u'urg', u'govt', u'scrap', u'soil', u'recycl']
[u'find', u'hide', u'wwii', u'gold']
[u'polic', u'abandon', u'chase', u'amidst', u'safeti', u'fear']
[u'polic', u'investig', u'attempt', u'home', u'invas']
[u'polic', u'seiz', u'north', u'illicit', u'tobacco']
[u'port', u'kembla', u'histori', u'win', u'gong']
[u'probe', u'begin', u'horror', u'pacif', u'highway', u'crash']
[u'public', u'feedback', u'seek', u'indoor', u'pool', u'plan']
[u'qanta', u'storm', u'domest', u'market']
[u'say', u'fund', u'region', u'hous', u'inadequ']
[u'rabbitoh', u'hang', u'death']
[u'realiti', u'show', u'domin', u'world', u'scene']
[u'repco', u'plan', u'stock', u'market', u'float']
[u'report', u'prompt', u'indigen', u'polici', u'chang']
[u'resourc', u'sector', u'boost', u'sharemarket', u'gain']
[u'romanian', u'cruis', u'wallabi', u'bruis']
[u'rossi', u'target', u'life', u'wheel']
[u'runaway', u'thief', u'month']
[u'rural', u'playwright', u'competit', u'launch']
[u'russia', u'say', u'vote', u'iraq', u'draft']
[u'govt', u'expect', u'freehold', u'crown', u'leas']
[u'notch', u'netbal', u'championship', u'win']
[u'submarin', u'maker', u'win', u'contract']
[u'viewer', u'receiv', u'second', u'channel']
[u'schieffer', u'foreshadow', u'free', u'trade', u'deal', u'clash']
[u'school', u'support', u'staff', u'vote', u'disput', u'strike']
[u'shadow', u'attorney', u'general', u'support', u'call']
[u'shortag', u'affect', u'polic', u'bendigo']
[u'south', u'africa', u'expect', u'tough', u'test', u'pakistan']
[u'southern', u'cross', u'join', u'nation', u'strike']
[u'south', u'korean', u'presid', u'aid', u'jail']
[u'spain', u'lead', u'ban', u'weapon', u'drill']
[u'spur', u'turn', u'rivaldo']
[u'staff', u'shortag', u'limit', u'bunburi', u'hospit', u'care']
[u'straeuli', u'join', u'england', u'roll', u'maul', u'critic']
[u'stress', u'england', u'beatabl', u'georgia', u'coach']
[u'strike', u'disrupt', u'campus']
[u'summer', u'stonefruit', u'suppli', u'crop', u'loss']
[u'surfboard', u'manufactur', u'support', u'call']
[u'surgeri', u'end', u'davenport', u'season']
[u'tafe', u'cours', u'includ', u'organ', u'farm']
[u'telemarket', u'face', u'restrict']
[u'tongan', u'skipper', u'clear', u'concuss']
[u'tougher', u'penalti', u'mislead', u'real', u'estat']
[u'uefa', u'giant', u'european', u'cruis']
[u'umaga', u'remain', u'defiant', u'chanc']
[u'univers', u'shut', u'strike', u'action']
[u'univers', u'england', u'staff', u'join', u'nation']
[u'univers', u'staffer', u'ralli', u'higher', u'chang']
[u'watchdog', u'say', u'iran', u'clarifi', u'nuclear']
[u'author', u'investig', u'york', u'ferri', u'crash']
[u'offer', u'econom', u'hope']
[u'impos', u'sanction', u'syria']
[u'renew', u'militari', u'tie', u'indonesia']
[u'women', u'footbal', u'leagu', u'seek', u'reviv']
[u'farmer', u'count', u'frost', u'loss']
[u'voter', u'urg', u'protest', u'indigen']
[u'builder', u'train', u'fund', u'limbo']
[u'grape', u'product', u'drop']
[u'great', u'southern', u'share', u'environ', u'fund']
[u'landcar', u'reach', u'turn', u'point']
[u'wale', u'chang', u'tonga', u'game']
[u'walkley', u'attract', u'strong', u'nomin']
[u'water', u'loss', u'forc', u'sarina', u'closur']
[u'waugh', u'reject', u'hook', u'bias', u'claim']
[u'women', u'tackl', u'sexism', u'parliament']
[u'well', u'highlight', u'sunshin', u'coast', u'ecosystem']
[u'wheatbelt', u'wine', u'win', u'prize']
[u'wide', u'staff', u'join', u'strike']
[u'wollongong', u'protest', u'plan', u'reform']
[u'wood', u'harrington', u'head', u'world', u'challeng', u'line']
[u'academ', u'say', u'small', u'campusus', u'hardest']
[u'adelaid', u'unit', u'debut']
[u'afghan', u'teen', u'prepar', u'deport']
[u'india', u'bomb', u'trial', u'resum', u'conspiraci']
[u'black', u'hammer', u'canada']
[u'anglican', u'reach', u'truce', u'gay']
[u'apart', u'plan', u'get', u'council', u'green', u'light']
[u'appl', u'launch', u'music', u'download', u'window']
[u'woodsid', u'worker', u'strike']
[u'astarloa', u'say', u'conscienc', u'clear', u'dope', u'rumour']
[u'aussi', u'rooki', u'fraser', u'steal', u'monti', u'thunder']
[u'australia', u'fail', u'poverti', u'scorecard']
[u'australian', u'tuna', u'win', u'japan', u'prais']
[u'autopsi', u'conduct', u'carcass']
[u'award', u'pair', u'bali', u'bomb']
[u'bail', u'refus', u'charg', u'child', u'porn']
[u'bali', u'blast', u'care', u'earn', u'medal', u'wagga', u'nurs']
[u'ballarat', u'lose', u'daylight', u'save', u'campaign']
[u'barthez', u'head', u'home', u'marseill']
[u'beatti', u'hop', u'grand', u'prix', u'upset']
[u'bendigo', u'bank', u'revamp']
[u'bendigo', u'host', u'state', u'award']
[u'biker', u'head', u'urg', u'care']
[u'blair', u'add', u'black', u'injuri', u'woe']
[u'blast', u'gunshot', u'near', u'indian', u'kashmir', u'chief', u'home']
[u'blue', u'face', u'highburi', u'exam']
[u'climb', u'electr', u'tower', u'suffer', u'sever', u'burn']
[u'bush', u'discuss', u'iraq', u'north', u'korea', u'koizumi']
[u'bush', u'land', u'japan', u'start', u'asian', u'tour']
[u'chang', u'famili', u'curb', u'fatherless']
[u'capit', u'crash', u'russia']
[u'capricornia', u'support', u'univers', u'action']
[u'carlisl', u'zimbabw', u'shin', u'light']
[u'carr', u'welcom', u'cleric', u'help', u'polic', u'probe']
[u'sale', u'septemb']
[u'church', u'reconcili', u'presid', u'say']
[u'cleric', u'tell', u'congreg', u'help', u'polic', u'probe']
[u'clijster', u'eas', u'zurich', u'quarter']
[u'complaint', u'lodg', u'connect', u'proxi', u'vote']
[u'coron', u'court', u'tell', u'capsiz', u'yacht', u'work']
[u'coroni', u'inquest', u'woman', u'death', u'wind']
[u'council', u'general', u'manag', u'defend', u'handl']
[u'council', u'build', u'bridg']
[u'court', u'grant', u'rann', u'advisor', u'oversea', u'travel']
[u'creditor', u'leagu', u'club', u'decis']
[u'brace', u'heavyweight', u'clash']
[u'cyclist', u'challeng', u'place']
[u'dawson', u'hill', u'england']
[u'deal', u'secur', u'timber', u'job']
[u'boer', u'return', u'boost', u'ranger', u'ahead', u'unit', u'clash']
[u'democrat', u'tougher', u'control', u'uranium']
[u'dentist', u'shortag', u'contribut', u'clinic', u'woe']
[u'doctor', u'recognis', u'bali', u'effort']
[u'dramat', u'homer', u'send', u'yanke', u'world', u'seri']
[u'economist', u'predict', u'jobless', u'rate', u'continu']
[u'eden', u'whale', u'festiv', u'begin']
[u'email', u'problem', u'telstra', u'say']
[u'england', u'thwart', u'teenag', u'centuri', u'maker']
[u'brazil', u'pledg', u'help', u'australian', u'escap']
[u'expert', u'prepar', u'wwii', u'dispos']
[u'farmer', u'undermin', u'explor', u'plan']
[u'oppn', u'seek', u'reef', u'rezon', u'brief']
[u'ferrero', u'cling', u'world', u'spot']
[u'figur', u'highlight', u'strong', u'tourism', u'invest']
[u'fijian', u'challeng', u'mercenari', u'recruit', u'iraq']
[u'final', u'carlisl', u'reap', u'reward']
[u'firefight', u'pack', u'bag', u'competit']
[u'fishermen', u'welcom', u'decis', u'nation', u'park']
[u'teacher', u'get', u'year', u'jail', u'abus']
[u'victorian', u'prison', u'guard', u'face', u'arm', u'hold']
[u'injur', u'canberra', u'crash']
[u'free', u'kick', u'maestro', u'set', u'sight', u'milan']
[u'french', u'magistr', u'toss', u'bench']
[u'frenchman', u'take', u'european', u'central', u'bank']
[u'funer', u'plane', u'crash', u'famili']
[u'gazza', u'throw', u'wolv']
[u'geraldton', u'port', u'dredg', u'end']
[u'gillespi', u'india', u'tour']
[u'govt', u'consid', u'port', u'reject', u'sheep', u'ship']
[u'govt', u'deni', u'cora', u'linn', u'sale', u'plan']
[u'govt', u'fund', u'help', u'repair', u'tamworth', u'school']
[u'govt', u'investig', u'bolivian', u'evacu', u'option']
[u'govt', u'investig', u'secur', u'breach']
[u'govt', u'plan', u'nation', u'centr', u'assess', u'terror', u'threat']
[u'grafton', u'mayor', u'lament', u'rail', u'decis']
[u'green', u'light', u'carnarvon', u'basin', u'field', u'work']
[u'gregan', u'expect', u'wallabi', u'step']
[u'dealer', u'face', u'court', u'replica', u'weapon']
[u'hec', u'fair', u'research', u'say']
[u'drug', u'cocktail', u'slash', u'mortal', u'prolong', u'life']
[u'hodg', u'slap', u'writ', u'channel']
[u'hospit', u'nation', u'alert', u'ensur']
[u'howard', u'hypocrit', u'detaine', u'children']
[u'howard', u'play', u'sheriff', u'comment']
[u'howard', u'prais', u'resolut', u'iraq']
[u'huge', u'secur', u'oper', u'ahead', u'bush', u'japan', u'visit']
[u'hundr', u'worker', u'lose', u'job', u'shock', u'meat']
[u'husband', u'wife', u'honour', u'bali']
[u'ignor', u'mahathir', u'anti', u'semit', u'comment', u'downer', u'say']
[u'india', u'recal', u'laxman', u'seri']
[u'india', u'send', u'rocket', u'carri', u'satellit', u'space']
[u'indigen', u'dancer', u'converg', u'mildura']
[u'indonesian', u'soldier', u'jail', u'aid', u'papua', u'rebel']
[u'strong', u'be', u'sale']
[u'iraq', u'hail', u'endors', u'resolut']
[u'ireland', u'corrigan', u'shoulder', u'injuri']
[u'itali', u'offici', u'take', u'coach', u'advic', u'head']
[u'jacobsen', u'lead', u'greensboro', u'classic']
[u'japan', u'consid', u'send', u'troop', u'iraq']
[u'jimmi', u'rasta', u'remand', u'solomon', u'murder', u'charg']
[u'kiwi']
[u'kiwi', u'experi', u'outback']
[u'krige', u'england', u'grudg', u'match']
[u'land', u'council', u'seek', u'nativ', u'titl', u'resourc']
[u'latest', u'north', u'korean', u'nuclear', u'threat', u'dismiss', u'bluff']
[u'lock', u'take', u'toowoomba', u'ranger']
[u'lomu', u'get', u'disappoint']
[u'mackay', u'accus', u'sell', u'fertilis', u'drug']
[u'madrid', u'chase', u'victori', u'vigo']
[u'malaysia', u'apologis', u'mahathir', u'anti', u'jewish']
[u'malaysian', u'label', u'australia', u'puppet']
[u'charg', u'east', u'brisban', u'stab']
[u'jail', u'burn', u'hous']
[u'face', u'court', u'throat', u'slash']
[u'manufactur', u'fin', u'farm', u'incid']
[u'staff', u'work', u'strike']
[u'mayor', u'hop', u'council']
[u'mayor', u'say', u'manag', u'style', u'work']
[u'mayor', u'welcom', u'fund', u'distribut', u'inquiri']
[u'mcgeechan', u'ring', u'chang', u'eagl', u'clash']
[u'minist', u'dissolv', u'palm', u'council']
[u'ministeri', u'staff', u'question', u'senat']
[u'minist', u'promis', u'time', u'soil', u'recycl']
[u'minist', u'unhappi', u'health', u'committe', u'snub']
[u'money', u'buri', u'man', u'parti', u'plan']
[u'chanc', u'drought', u'break', u'rain']
[u'mourner', u'farewel', u'labor', u'stalwart', u'cairn']
[u'move', u'petrol', u'communiti']
[u'back', u'educ', u'reform']
[u'challeng', u'famili', u'court', u'function']
[u'concern', u'australia', u'post', u'privatis']
[u'hearten', u'latest', u'job', u'figur']
[u'lose', u'ditch', u'effort', u'chang', u'rock', u'lobster']
[u'urg', u'govt', u'outlin', u'timber', u'industri', u'futur']
[u'home', u'anti', u'violenc', u'scheme']
[u'wharf', u'bring', u'navi', u'eden']
[u'plan', u'build', u'nuclear', u'arm', u'iran']
[u'award', u'damag', u'fight']
[u'oppn', u'seek', u'council', u'merger', u'referendum']
[u'polic', u'launch', u'joint', u'oper']
[u'polic', u'team', u'patrol', u'border']
[u'nurs', u'seek', u'boost', u'number']
[u'ocean', u'pool', u'give', u'ahead']
[u'compani', u'begin', u'seismic', u'survey']
[u'olymp', u'spill', u'creat', u'industri', u'concern']
[u'opposit', u'critic', u'propos', u'board']
[u'pair', u'highway', u'crash']
[u'pharmaceut', u'founder', u'lose', u'appeal']
[u'pilot', u'focus', u'ferri', u'crash', u'probe']
[u'condemn', u'mahathir', u'anti', u'semit', u'claim']
[u'polic', u'face', u'long', u'haul', u'track', u'truck']
[u'polic', u'investig', u'second', u'sydney', u'drive']
[u'polic', u'probe', u'teen', u'attack']
[u'polic', u'question', u'follow', u'brisban', u'stab']
[u'polic', u'reject', u'claim', u'bendigo', u'understaf']
[u'polic', u'seiz', u'weapon', u'ammunit', u'gold', u'coast', u'home']
[u'pope', u'celebr', u'year', u'mileston']
[u'port', u'fairi', u'recognis', u'bali', u'braveri']
[u'postcard', u'bandit', u'stag', u'hunger', u'strike', u'prison']
[u'potato', u'shipment', u'creat', u'trade', u'opportun']
[u'christma', u'payout', u'cain', u'unsecur', u'creditor']
[u'probe', u'launch', u'parliamentari', u'dust']
[u'protea', u'lunch', u'pakistan']
[u'public', u'urg', u'avoid', u'youth', u'confront']
[u'purpl', u'face', u'fergi', u'dock']
[u'qanta', u'detail', u'restructur', u'plan']
[u'farmer', u'stall', u'land', u'clear']
[u'premier', u'seek', u'santa', u'polic', u'check']
[u'rain', u'caus', u'disrupt', u'gympi']
[u'rain', u'delay', u'lake', u'frome', u'park', u'open']
[u'rawl', u'steven', u'draft']
[u'head', u'say', u'look', u'china']
[u'region', u'honour', u'bali', u'braveri', u'effort']
[u'regist', u'highlight', u'southern', u'tourism', u'work']
[u'replac', u'pine', u'forest', u'hemp', u'say', u'politician']
[u'report', u'show', u'high', u'cost', u'power']
[u'resid', u'want', u'wast', u'leav', u'undisturb']
[u'richardson', u'vincent', u'slam', u'ton', u'second', u'india']
[u'road', u'close', u'gold', u'coast', u'indi']
[u'rossi', u'fastest', u'phillip', u'island', u'qualifi']
[u'rugbi', u'world', u'offer', u'cowboy', u'boost']
[u'rumsfeld', u'defend', u'holi', u'general']
[u'saff', u'reject', u'natur', u'resourc']
[u'saudi', u'arabia', u'reject', u'sheep', u'say']
[u'saudi', u'crown', u'princ', u'brand', u'extremist', u'deviant']
[u'school', u'support', u'staff', u'vote', u'work', u'ban']
[u'sharehold', u'ponder', u'rural', u'press', u'takeov']
[u'sharon', u'expel', u'arafat']
[u'sharon', u'firm', u'west', u'bank', u'barrier', u'despit', u'threat']
[u'sheedi', u'give', u'messag', u'hope', u'break', u'hill']
[u'singapor', u'troop', u'arriv', u'exercis']
[u'singh', u'set', u'sight', u'million', u'pound', u'prize']
[u'club', u'gear', u'lake', u'boga', u'event']
[u'south', u'africa', u'steadi', u'pakistan']
[u'south', u'west', u'look', u'power', u'station', u'refineri']
[u'spring', u'drought', u'worsen']
[u'steven', u'port', u'trade', u'ultimatum']
[u'strong', u'dollar', u'push', u'import', u'price']
[u'swim', u'chief', u'ponder', u'fresh', u'hodg', u'alleg']
[u'swim', u'coach', u'issu', u'writ', u'alleg']
[u'taiwan', u'skyscrap', u'world', u'tallest', u'build']
[u'tasmanian', u'timber', u'compani', u'name', u'labor', u'donor']
[u'tasmania', u'unlik', u'recoup', u'children', u'home']
[u'teacher', u'forc', u'offic', u'bali', u'honour']
[u'technolog', u'catch', u'school', u'truanci']
[u'telstra', u'blame', u'email', u'problem', u'virus', u'attack']
[u'telstra', u'lose', u'govt', u'tap']
[u'telstra', u'plead', u'patienc', u'email', u'crisi']
[u'toowoomba', u'race', u'burn', u'season']
[u'town', u'prepar', u'bushfir', u'season']
[u'tribun', u'consid', u'deaf', u'student', u'educ']
[u'bomb', u'defus', u'belfast']
[u'guilti', u'crash', u'memori', u'laps', u'offer']
[u'korea', u'talk', u'stalem', u'nuke', u'crisi']
[u'soldier', u'kill', u'attack', u'near', u'kashmir', u'chief']
[u'staff', u'divid', u'strike', u'action']
[u'athlet', u'snare', u'massiv', u'steroid', u'bust']
[u'death', u'toll', u'iraq', u'exceed']
[u'ferri', u'crash', u'probe', u'centr', u'injur', u'pilot']
[u'senat', u'defi', u'bush', u'iraq', u'financ', u'request']
[u'tech', u'close', u'dip', u'caterpillar']
[u'govt', u'vow', u'honour', u'pledg', u'polic']
[u'virgin', u'blue', u'welcom', u'qanta', u'competit']
[u'council', u'consid', u'danger', u'tuart', u'tree', u'option']
[u'invest', u'provid', u'posit', u'forecast']
[u'wallabi', u'look', u'oak', u'size']
[u'water', u'flow', u'releas', u'keepit']
[u'waugh', u'relish', u'bowl', u'challeng']
[u'wont', u'canada', u'light', u'say', u'black', u'skipper']
[u'woman', u'give', u'birth', u'surpris', u'babi']
[u'woman', u'court', u'wodonga', u'murder']
[u'women', u'match', u'clijster', u'henin']
[u'wool', u'bale', u'fetch', u'second', u'highest', u'price']
[u'worker', u'outrag', u'melbourn', u'tram', u'attack']
[u'deton', u'beach']
[u'yass', u'water', u'shortag', u'wors', u'expect']
[u'youth', u'leader', u'urg', u'communiti', u'involv']
[u'adelaid', u'woman', u'deliv', u'surpris', u'babi']
[u'afghan', u'student', u'return', u'home', u'gain', u'visa']
[u'alic', u'spring', u'master', u'game', u'countdown', u'begin']
[u'aussi', u'seat', u'light', u'forc', u'stump']
[u'australia', u'ring', u'chang', u'namibia']
[u'blair', u'add', u'zealand', u'injuri', u'worri']
[u'bolivian', u'presid', u'resign', u'flee', u'report']
[u'bolivian', u'presid', u'resign', u'flee']
[u'bolivian', u'celebr', u'presid', u'prepar']
[u'boucher', u'save', u'protea', u'kirsten', u'injur', u'bouncer']
[u'bull', u'terrier', u'aussi', u'hungri', u'gregan']
[u'bush', u'address', u'north', u'korea', u'iraq', u'japan']
[u'bush', u'prais', u'philippin', u'terror']
[u'canberra', u'poor', u'higher', u'water', u'charg']
[u'canberra', u'warn', u'spring', u'snake', u'boom']
[u'china', u'set', u'sight', u'moon']
[u'clijster', u'henin', u'hardenn', u'zurich', u'semi']
[u'condit', u'derwent', u'river', u'improv']
[u'curtin', u'appoint', u'professor']
[u'boer', u'hammer', u'blow', u'ger']
[u'detaine', u'protest', u'port', u'hedland', u'roof', u'unit']
[u'downer', u'hop', u'mahathir', u'remain', u'silent', u'anti']
[u'downer', u'rais', u'fate', u'aung']
[u'downer', u'warn', u'terror', u'threat', u'econom']
[u'dream', u'start', u'adelaid', u'unit']
[u'celebr', u'birthday', u'semi', u'final', u'spot']
[u'england', u'nonsens', u'roll', u'maul', u'claim']
[u'find', u'suspect', u'airlin', u'secur', u'investig']
[u'govt', u'reveal', u'mornington', u'peninsula', u'plan']
[u'fifa', u'boss', u'blatter', u'slam', u'england', u'player']
[u'filipino', u'protest', u'bush', u'visit']
[u'film', u'plan', u'murder', u'journalist']
[u'flood', u'kill', u'central', u'vietnam']
[u'dead', u'zimbabw', u'plane', u'crash']
[u'franc', u'duti', u'cost', u'barthez', u'unit', u'place', u'fergi']
[u'franc', u'overcom', u'spirit', u'japan']
[u'free', u'children', u'immigr', u'detent', u'perth']
[u'german', u'chancellor', u'win', u'econom', u'reform', u'vote']
[u'howard', u'lobbi', u'apec', u'summit', u'tougher', u'region']
[u'impress', u'maruyama', u'grab', u'shoot', u'greensboro', u'lead']
[u'time', u'punter', u'choic', u'caulfield', u'glori']
[u'iran', u'begin', u'talk', u'nuclear', u'watchdog']
[u'iraqi', u'famili', u'continu', u'detent', u'centr', u'protest']
[u'redevelop', u'plan', u'pan']
[u'killer', u'china', u'quak', u'damag', u'home']
[u'join', u'australia', u'swell', u'casualti', u'list']
[u'lomu', u'reject', u'contract', u'offer']
[u'majest', u'pont', u'overshadow', u'injuri']
[u'face', u'court', u'alleg', u'attack', u'taxi']
[u'kill', u'hous']
[u'militari', u'personnel', u'attend', u'bush', u'surviv', u'cours']
[u'minist', u'discuss', u'world', u'trade', u'apec', u'summit']
[u'miser', u'monti', u'humbl', u'timer']
[u'model', u'tasmanian', u'student', u'deport']
[u'athlet', u'face', u'dope', u'subpoena']
[u'mummifi', u'give', u'freedman', u'fourth', u'caulfield']
[u'easi', u'solut', u'poverti', u'say', u'oneil']
[u'luck', u'uefa', u'draw', u'liverpool']
[u'govt', u'criticis', u'region', u'airlin', u'failur']
[u'parliament', u'extend', u'adopt', u'parent']
[u'promis', u'consult', u'ferri', u'servic']
[u'number', u'ferrero', u'meet', u'feder', u'madrid']
[u'dead', u'miss', u'helicopt', u'crash']
[u'owen', u'rule', u'liverpool']
[u'pakistan', u'south', u'africa']
[u'pell', u'leav', u'rome']
[u'perth', u'resort', u'worker', u'protest', u'smoke', u'exempt']
[u'pilgrim', u'flock', u'rome', u'mother', u'teresa']
[u'plan', u'push', u'trade', u'agenda', u'apec', u'summit']
[u'polic', u'arrest', u'child', u'pornographi', u'crackdown']
[u'polic', u'arm', u'robberi', u'wit', u'come']
[u'polic', u'crack', u'child', u'ring']
[u'polic', u'hunt', u'serial', u'attack']
[u'polic', u'search', u'miss', u'toddler']
[u'politician', u'criticis', u'legisl', u'plan']
[u'poor', u'ignor', u'heartless', u'australia']
[u'power', u'compani', u'appeal', u'hunter', u'valley', u'decis']
[u'presid', u'bush', u'arriv', u'philippin']
[u'bid', u'qanta', u'cost', u'base']
[u'quarantin', u'servic', u'help', u'tiwi', u'island', u'export']
[u'rain', u'forc', u'bangladesh', u'england', u'draw']
[u'rann', u'vow', u'crack', u'biki', u'gang']
[u'road', u'safeti', u'investig', u'begin']
[u'rossi', u'pole', u'phillip', u'island']
[u'diseas', u'unit', u'condemn', u'measl', u'exposur', u'advic']
[u'samoa', u'drop', u'faatau', u'georgia', u'game']
[u'screen', u'legend', u'meryl', u'streep', u'tip', u'lifetim']
[u'sehwag', u'hit', u'indian', u'chase', u'score']
[u'sehwag', u'repli', u'monster', u'kiwi', u'total']
[u'separ', u'twin', u'regain', u'conscious']
[u'serena', u'play']
[u'shoaib', u'cop', u'sledg', u'charg']
[u'kill', u'chicago', u'offic']
[u'spain', u'detain', u'illeg', u'immigr']
[u'spain', u'pledg', u'iraq', u'reconstruct']
[u'spain', u'probe', u'shoot', u'cameraman']
[u'spanish', u'author', u'die', u'bangkok', u'stopov']
[u'standoff', u'kashmir', u'end']
[u'taipei', u'bootscoot', u'tamworth', u'linedanc', u'record']
[u'tanzania', u'ban', u'dirti', u'underwear', u'import']
[u'credit', u'union', u'defend', u'demutualis']
[u'politician', u'interest', u'donat']
[u'teenag', u'injur', u'drive', u'shoot']
[u'children', u'charg', u'high', u'speed', u'chase']
[u'dead', u'chopper', u'crash']
[u'kill', u'chicago', u'high', u'rise']
[u'palestinian', u'kill', u'isra', u'tank']
[u'toopi', u'trick', u'buri', u'kangaroo']
[u'trap', u'aussi', u'safe', u'dfat']
[u'trescothick', u'step', u'bangladesh']
[u'turtl', u'park', u'plan']
[u'afghan', u'teenag', u'return', u'home']
[u'confirm', u'dead', u'helicopt', u'crash']
[u'kill', u'miss', u'chopper', u'crash']
[u'umer', u'lead', u'pakistan', u'chase', u'lahor']
[u'death', u'toll', u'iraq', u'exceed']
[u'general', u'apologis', u'holi', u'comment']
[u'okay', u'alzheim', u'drug']
[u'russian', u'crew', u'lift', u'mission', u'control']
[u'senat', u'pass', u'bush', u'million', u'iraq', u'request']
[u'search', u'airlin', u'weapon']
[u'wallabi', u'demolish', u'romania']
[u'netbal', u'championship']
[u'winter', u'sar', u'explos', u'unlik', u'say', u'chines', u'expert']
[u'world', u'anti', u'dope', u'agenc', u'warn', u'cheat']
[u'world', u'health', u'bodi', u'rule', u'sheep']
[u'world', u'match', u'play', u'semi', u'knife', u'edg']
[u'activist', u'protest', u'bush', u'meet', u'thai', u'leader']
[u'research', u'trace', u'ancient', u'lifestyl']
[u'adam', u'seven', u'help', u'protea', u'seiz', u'initi']
[u'akhtar', u'ban', u'test', u'dayer']
[u'black', u'blair', u'rule', u'world']
[u'black', u'cool', u'face', u'cullen', u'broadsid']
[u'alleg', u'lade', u'tape', u'threaten', u'australia']
[u'armstrong', u'complet', u'tran', u'tour', u'hope']
[u'atsic', u'vow', u'fund', u'account']
[u'golfer', u'trail', u'maruyama', u'greensboro', u'lead']
[u'australian', u'tourist', u'free', u'leav', u'bolivia']
[u'australia', u'wont', u'china', u'currenc', u'push']
[u'aust', u'thailand', u'agre', u'free', u'trade', u'deal']
[u'author', u'launch', u'probe', u'fatal', u'helicopt']
[u'author', u'search', u'lose', u'overboard']
[u'bacon', u'brand', u'decis', u'deport', u'teenag', u'cruel']
[u'bali', u'bomb', u'exhibit', u'detail', u'investig']
[u'bartoli', u'claim', u'tour', u'lombardi']
[u'bjorn', u'record', u'bust', u'face', u'match']
[u'bolivia', u'parti', u'presid', u'resign']
[u'bolivia', u'presid', u'investig', u'fatal']
[u'brazil', u'boy', u'star', u'real', u'deportivo']
[u'bull', u'battl', u'super', u'leagu', u'crown']
[u'bush', u'don', u'beef', u'cape']
[u'bush', u'plan', u'push', u'terror', u'apec']
[u'bush', u'visit', u'rais', u'hop', u'free', u'trade', u'deal']
[u'chechnya', u'swear', u'presid']
[u'coalit', u'seiz', u'vessel', u'crackdown']
[u'cudicini', u'blunder', u'send', u'gunner']
[u'darwin', u'wave', u'solar', u'challeng']
[u'disappear', u'puzzl', u'british', u'teen', u'famili']
[u'dokic', u'stun', u'clijster', u'reach', u'zurich', u'final']
[u'england', u'keep', u'calm', u'half', u'jitter', u'woodward']
[u'england', u'greenwood', u'send', u'home', u'compassion', u'leav']
[u'feder', u'polic', u'museum', u'display', u'bali', u'evid']
[u'govt', u'fail', u'raaf', u'whistleblow', u'lawyer']
[u'ferrero', u'beat', u'feder', u'reach', u'madrid', u'final']
[u'star', u'celtic', u'point', u'clear']
[u'flower', u'make', u'duck', u'debut']
[u'footbal', u'consid', u'carr', u'elect', u'challeng']
[u'franc', u'michalak', u'get', u'green', u'light']
[u'govt', u'data', u'duck', u'shoot', u'decis']
[u'green', u'plan', u'anti', u'bush', u'parliament', u'protest']
[u'gregan', u'hail', u'larkham', u'omin', u'form']
[u'gregan', u'rule']
[u'groin', u'infect', u'ganguli', u'doubt', u'seri']
[u'harri', u'potter', u'fan', u'role', u'film', u'report']
[u'henin', u'hardenn', u'number']
[u'hope', u'fade', u'babi', u'apec', u'bangkok', u'trash']
[u'houllier', u'show', u'strain', u'red', u'skid']
[u'howard', u'get', u'apec', u'busi']
[u'indonesian', u'troop', u'kill', u'rebel', u'aceh']
[u'indonesian', u'volcano', u'come', u'life']
[u'injur', u'gregan', u'doubt', u'wallabi']
[u'inter', u'sack', u'cuper', u'zaccheroni', u'coach']
[u'iran', u'join', u'talk', u'allow', u'tough', u'nuclear', u'check']
[u'iran', u'seek', u'european', u'help', u'nuclear', u'crisi']
[u'iraqi', u'refuge', u'famili', u'end', u'roof', u'protest']
[u'ireland', u'pool', u'namibia', u'rout']
[u'jonni', u'see', u'england', u'past', u'springbok']
[u'jordanian', u'confess', u'kill', u'sister']
[u'kasprowicz', u'replac', u'tour', u'india']
[u'kernot', u'criticis', u'child', u'advoc', u'campaign']
[u'king', u'grand', u'final', u'rematch']
[u'kingz', u'stay', u'melbourn', u'defeat']
[u'laport', u'lead', u'chorus', u'prais', u'england']
[u'london', u'underground', u'derail', u'injur']
[u'marlin', u'upset', u'yanke', u'world', u'seri', u'open']
[u'merciless', u'juve', u'pile', u'miseri', u'ancona']
[u'mismatch', u'advert', u'world', u'romanian']
[u'miss', u'toddler', u'famili', u'seek', u'public', u'help']
[u'monti', u'trail', u'aussi', u'barr', u'macau']
[u'refuge', u'student', u'face', u'deport']
[u'korea', u'promis', u'nuclear', u'display']
[u'threaten', u'build', u'heritag', u'arson', u'site']
[u'heritag', u'list', u'reserv', u'bank']
[u'call', u'releas', u'detain', u'children']
[u'palestinian', u'teen', u'kill', u'west', u'bank', u'clash']
[u'pavarotti', u'seduc', u'mexican', u'farewel', u'recit']
[u'perth', u'glori', u'high', u'score', u'fare']
[u'philippin', u'polic', u'arrest', u'suspect']
[u'polic', u'arrest', u'coupl', u'stab', u'fatal']
[u'polic', u'arrest', u'respons']
[u'quick', u'wicket', u'slow', u'zimbabw', u'fightback']
[u'rossi', u'win', u'motogp', u'bayliss', u'crash']
[u'search', u'continu', u'lose', u'overboard']
[u'secur', u'offic', u'protest', u'better', u'super']
[u'sunset', u'hamper', u'aerial', u'search', u'lose']
[u'survey', u'prove', u'telstra', u'servic', u'improv']
[u'sydney', u'opera', u'hous', u'celebr', u'birthday']
[u'meat', u'menu', u'abattoir', u'closur']
[u'tendulkar', u'move', u'number', u'scorer', u'list']
[u'thousand', u'pound', u'pavement', u'help', u'fight', u'diabet']
[u'thousand', u'turn', u'simon', u'garfunkel', u'reunion']
[u'injur', u'shoot', u'zimbabw', u'opposit']
[u'tiger', u'extend', u'breaker', u'lose', u'streak']
[u'tribut', u'pour', u'spanish', u'writer', u'montalban']
[u'turkey', u'back', u'troop', u'deploy', u'iraq']
[u'marin', u'charg', u'iraqi', u'death']
[u'soldier', u'kill', u'tikrit', u'attack']
[u'valiant', u'tongan', u'deni', u'rattl', u'welsh']
[u'westhuizen', u'say', u'england', u'vulner']
[u'veteran', u'broadcast', u'cook', u'suffer', u'fall']
[u'polic', u'seek', u'miss', u'child', u'british', u'tourist']
[u'forestri', u'polici', u'threaten', u'labor', u'support']
[u'zimbabw', u'close', u'australia', u'total']
[u'zimbabw', u'chanc']
[u'evacu', u'amid', u'torrenti', u'rain', u'near', u'vancouv']
[u'abattoir', u'closur', u'affect', u'tasmania', u'livestock']
[u'aborigin', u'jail', u'rate', u'disturb', u'high']
[u'aborigin', u'medic', u'servic', u'combin', u'effort']
[u'accommod', u'manag', u'warn', u'schooli']
[u'urg', u'appeal', u'sentenc']
[u'strike', u'gaza', u'kill']
[u'black', u'umaga', u'quarter', u'final']
[u'alleg', u'knife', u'attack', u'appear', u'court']
[u'alleg', u'saddam', u'letter', u'urg', u'holi']
[u'allenbi', u'fourth', u'maruyama', u'take', u'greensboro', u'titl']
[u'apec', u'talk', u'focus', u'trade', u'terror']
[u'aquat', u'centr', u'vote']
[u'arm', u'bandit', u'target', u'oberon', u'club']
[u'australian', u'march', u'crush', u'victori']
[u'bagpip', u'rile', u'scot']
[u'ballarat', u'mall', u'consult', u'start']
[u'bendigo', u'get', u'lose', u'fund', u'warn']
[u'blue', u'miss', u'rooney', u'dour', u'draw']
[u'bodi', u'hous', u'near', u'melbourn']
[u'bolivia', u'tidi', u'month', u'civil', u'unrest']
[u'bomb', u'expert', u'miss', u'ahead', u'apec']
[u'brack', u'deni', u'branch', u'stack', u'alleg']
[u'bumper', u'harvest', u'increas', u'need', u'heavi', u'vehicl']
[u'bush', u'rebuk', u'mahathir', u'sidelin', u'apec', u'summit']
[u'busi', u'bank', u'bendigo', u'boost']
[u'licens', u'venu', u'close', u'earli']
[u'action', u'tree', u'clear', u'talk']
[u'stop', u'woomera', u'nuclear', u'wast', u'plan']
[u'beef', u'fight', u'stock', u'theft']
[u'cattlemen', u'fear', u'quarantin', u'risk', u'return', u'sheep']
[u'centrecar', u'servic', u'start']
[u'centr', u'fear', u'closur', u'fund']
[u'childcar', u'centr', u'propon', u'puzzl', u'council']
[u'citi', u'kid', u'learn', u'bush', u'life']
[u'communiti', u'activ', u'hop', u'children']
[u'complaint', u'urg', u'health', u'minist', u'streamlin', u'age']
[u'concern', u'broom', u'chinatown', u'heritag', u'list']
[u'controversi', u'issu', u'tabl', u'unit']
[u'council', u'look', u'maintain', u'small', u'boat', u'access']
[u'councillor', u'expect', u'dune', u'fenc', u'remov']
[u'council', u'meet', u'discuss', u'corrupt', u'claim']
[u'council', u'reject', u'drag', u'race', u'plan']
[u'council', u'announc', u'general', u'manag']
[u'court', u'find', u'bank', u'guilti', u'mislead', u'advertis']
[u'court', u'hear', u'kill', u'children', u'punish', u'wife']
[u'court', u'tell', u'skateboard', u'wear']
[u'crime', u'prevent', u'start', u'school']
[u'dead', u'refuge', u'boat']
[u'deal', u'improv', u'aust', u'student', u'access', u'china']
[u'democrat', u'call', u'govern']
[u'develop', u'welcom', u'inquiri', u'find']
[u'develop', u'boom', u'take', u'toll', u'wildlif']
[u'disabl', u'group', u'voic', u'medicar', u'concern']
[u'destroy', u'toddler', u'attack']
[u'dokic', u'wari', u'hostil', u'recept', u'australian', u'open']
[u'dollar', u'drought', u'live', u'cattl', u'export', u'indonesia']
[u'door', u'open', u'bowen', u'commerc', u'centr']
[u'dreamworld', u'welcom', u'tiger']
[u'driver', u'succumb', u'crash', u'injuri']
[u'econom', u'develop', u'offic', u'readi', u'ahead']
[u'economi', u'passeng', u'fin', u'take', u'busi']
[u'egyptian', u'twin', u'improv', u'movement']
[u'elect', u'surgeri', u'wait', u'list', u'highest', u'level']
[u'say', u'environment', u'protect', u'good']
[u'father', u'say', u'want', u'schoolgirl']
[u'fish', u'industri', u'welcom', u'seismic', u'test']
[u'fish', u'event', u'help', u'region', u'recoveri']
[u'flight', u'resum', u'town']
[u'fluorid', u'fight', u'continu', u'despit', u'campaign']
[u'forest', u'industri', u'exit', u'payment']
[u'free', u'trade', u'deal', u'aussi', u'wine', u'thai']
[u'fund', u'review', u'focus', u'train', u'need']
[u'fund', u'shortfal', u'cancel', u'caloundra', u'christma', u'carol']
[u'plant', u'disput']
[u'geraldton', u'lose', u'citi', u'councillor']
[u'german', u'chancellor', u'freez', u'retir', u'pension']
[u'gladston', u'overboard', u'search', u'call']
[u'gold', u'coast', u'alert', u'feder', u'govt', u'region', u'need']
[u'govern', u'employ', u'disabl', u'peopl', u'declin']
[u'govt', u'closer', u'ship', u'sink', u'agreement']
[u'govt', u'talk', u'strand', u'sheep']
[u'govt', u'urg', u'compens', u'drover']
[u'grain', u'industri', u'job', u'highlight', u'drought', u'turnaround']
[u'great', u'lake', u'develop', u'plan', u'like', u'spark', u'debat']
[u'green', u'light', u'barmera', u'drag', u'race', u'plan']
[u'green', u'highlight', u'indigen', u'opposit', u'plan']
[u'green', u'urg', u'support', u'labor', u'forest', u'polici']
[u'green', u'want', u'seismic', u'test', u'ban']
[u'griffith', u'hospit', u'focus', u'public', u'meet']
[u'hayden', u'notch', u'help', u'aussi', u'test']
[u'hayden', u'help', u'australia', u'victori', u'zimbabw']
[u'health', u'insur', u'hospit', u'reach', u'agreement']
[u'health', u'servic', u'highlight', u'whoop', u'cough', u'prevent']
[u'helicopt', u'project', u'boost', u'local', u'economi']
[u'herbicid', u'implic', u'mangrov', u'dieback']
[u'hint', u'hollywood', u'thailand', u'plan', u'apec', u'star']
[u'hope', u'power', u'station', u'curb', u'firm', u'loss']
[u'horrif', u'evid', u'inquiri', u'foster', u'child']
[u'hospit', u'sale', u'rumour', u'prematur', u'mayn']
[u'howard', u'meet', u'megawati', u'apec']
[u'hundr', u'protest', u'treatment', u'father']
[u'illeg', u'restaur', u'staff', u'decid']
[u'improv', u'asian', u'relat', u'australia', u'tell']
[u'inquiri', u'tell', u'custodi', u'hurt', u'children']
[u'inquiri', u'tell', u'dairi', u'industri', u'regul']
[u'inquiri', u'tell', u'reform', u'decim', u'indigen']
[u'insur', u'woe', u'threaten', u'mildura', u'lifesav']
[u'investig', u'begin', u'rescu', u'chopper', u'crash']
[u'iran', u'attempt', u'resolv', u'nuclear', u'stalem']
[u'iran', u'nuclear', u'visit', u'doubt']
[u'ireland', u'samoa', u'group', u'world', u'romp']
[u'ireland', u'samoa', u'world', u'group']
[u'isra', u'warplan', u'target', u'milit', u'home']
[u'journal', u'advocaci', u'group', u'condemn', u'arrest']
[u'kalbarri', u'take', u'tourism', u'award']
[u'labor', u'rule', u'mean', u'test', u'health', u'insur']
[u'laxman', u'keep', u'india', u'afloat', u'vettori']
[u'laxman', u'thwart', u'zealand', u'seri']
[u'leagu', u'club', u'benefit', u'manag']
[u'lgaq', u'work', u'council', u'candid']
[u'longford', u'meatwork', u'meet', u'closur']
[u'mahathir', u'retir', u'wont', u'chang', u'relat', u'howard']
[u'charg', u'tram', u'attack']
[u'fail', u'turn', u'court', u'hear']
[u'plead', u'guilti', u'dodg']
[u'mayn', u'share', u'rumour', u'immin', u'hospit']
[u'mayor', u'confid', u'clear', u'wrongdo']
[u'meet', u'help', u'plan', u'industri', u'zone']
[u'merredin', u'face', u'charg']
[u'milit', u'escap', u'isra', u'strike']
[u'minist', u'applaud', u'rockhampton', u'hospit', u'wait']
[u'minist', u'foreshadow', u'chang', u'age', u'care']
[u'minist', u'make', u'fli', u'visit', u'south', u'coast']
[u'minist', u'comment', u'navi', u'base', u'expans']
[u'miss', u'toddler', u'famili', u'fear', u'worst']
[u'mista', u'leader', u'valencia', u'thrash', u'espanyol']
[u'mix', u'weekend', u'result', u'unit']
[u'monti', u'beat', u'barr', u'macau', u'titl']
[u'detail', u'airlin', u'woe', u'horizon']
[u'young', u'peopl', u'look', u'chariti']
[u'schoolgirl', u'stay', u'tasmania']
[u'seek', u'extend', u'buyback', u'amnesti']
[u'murray', u'darl', u'basin', u'boss', u'blackmor', u'retir']
[u'murray', u'irrig', u'farewel', u'long', u'stand']
[u'namibia', u'accus', u'irish', u'stamp']
[u'navi', u'intercept', u'indonesian', u'fish', u'boat', u'darwin']
[u'traffic', u'control', u'procedur', u'caus', u'concern']
[u'barrack', u'open', u'ballarat']
[u'bolivian', u'presid', u'present', u'govern']
[u'group', u'work', u'expand', u'port']
[u'news', u'corp', u'resourc', u'drag', u'market', u'lower']
[u'thai', u'trade', u'deal', u'steer', u'profit', u'holden']
[u'zealand', u'chief', u'defend', u'lomu', u'offer']
[u'korea', u'test', u'surfac', u'ship', u'missil']
[u'ground', u'appeal', u'danger', u'driver']
[u'govt', u'address', u'hospit', u'fail']
[u'grade', u'begin', u'exam']
[u'armi', u'personnel', u'undergo', u'drug', u'test']
[u'govt', u'defend', u'notic', u'legisl', u'debat']
[u'opposit', u'urg', u'review', u'nuclear', u'polici']
[u'adopt', u'hunter', u'crime', u'prevent', u'scheme']
[u'obes', u'rate', u'increas', u'studi']
[u'opera', u'hous', u'celebr', u'year']
[u'oper', u'finetun', u'firefight', u'skill']
[u'oper', u'warn', u'ongo', u'respons', u'reef']
[u'opposit', u'accus', u'scaremong']
[u'opposit', u'design', u'initi', u'improv', u'famili']
[u'pirlo', u'pounc', u'milan']
[u'reaffirm', u'china', u'polici']
[u'polic', u'investig', u'rocket', u'propel', u'grenad']
[u'polic', u'probe', u'death', u'coupl', u'near', u'melbourn']
[u'poor', u'weather', u'cloud', u'solar', u'cycl', u'race']
[u'pope', u'beatifi', u'mother', u'teresa']
[u'port', u'dredg', u'near', u'complet']
[u'port', u'macquari', u'quell', u'competit']
[u'privat', u'investig', u'plead', u'guilti', u'steal']
[u'public', u'urg', u'support', u'outback', u'summit']
[u'puma', u'star', u'away', u'romania']
[u'pyrotechnician', u'trial', u'assault']
[u'govt', u'urg', u'help', u'resolv', u'firefight', u'disput']
[u'rural', u'health', u'initi', u'tri', u'oversea']
[u'queensland', u'fattest', u'nation', u'studi']
[u'rabbit', u'erad', u'program', u'prove', u'success']
[u'race', u'defend', u'traralgon', u'fund']
[u'ranger', u'stumbl', u'ahead', u'unit', u'clash']
[u'redback', u'ahead', u'warrior']
[u'region', u'develop', u'expert', u'gather', u'confer']
[u'research', u'unveil', u'breakthrough', u'cancer', u'treatment']
[u'right', u'wing', u'swing', u'swiss', u'polit']
[u'runner', u'marathon', u'effort', u'nation', u'park']
[u'russian', u'craft', u'deliv', u'multin', u'crew', u'space']
[u'scanner', u'help', u'helicopt', u'search']
[u'scot', u'untroubl', u'sloppi']
[u'search', u'salvag', u'underway', u'fatal', u'chopper']
[u'search', u'miss', u'angler', u'call']
[u'search', u'resum', u'miss']
[u'singleton', u'remand', u'custodi', u'alleg']
[u'solar', u'car', u'track', u'record', u'time']
[u'south', u'east', u'join', u'water', u'restrict']
[u'spray', u'painter', u'win', u'compo', u'sue', u'employ']
[u'streaker', u'race', u'racecours']
[u'studi', u'consid', u'fitzroy', u'river', u'farm', u'water']
[u'studi', u'look', u'boost', u'irrig', u'farm']
[u'support', u'rescu', u'servic', u'fatal', u'crash']
[u'support', u'fit', u'initi', u'welcom']
[u'sydney', u'prepar', u'terror', u'attack']
[u'talk', u'iran', u'nuclear', u'facil']
[u'cystic', u'fibrosi', u'suffer', u'carri', u'differ']
[u'girl', u'lawyer', u'say', u'father', u'doesnt', u'want']
[u'govt', u'debat', u'complet', u'smoke']
[u'texa', u'chainsaw', u'massacr', u'cut', u'offic', u'rival']
[u'sewag', u'spill', u'concern', u'local', u'council']
[u'isra', u'kill', u'west', u'bank', u'ambush']
[u'toddler', u'kill', u'garbag', u'truck', u'tragedi']
[u'bank', u'tip', u'dollar', u'surg']
[u'tourism', u'chief', u'consid', u'unifi', u'approach']
[u'townsvill', u'japanes', u'rugbi']
[u'triumphant', u'ferrero', u'surfac']
[u'turnbul', u'preselect', u'hit', u'snag', u'report']
[u'bad', u'burn', u'ballarat', u'explos']
[u'dead', u'israel', u'target', u'hama', u'milit']
[u'agenc', u'pledg', u'boost', u'matern', u'health']
[u'uncommon', u'gene', u'caus', u'poor', u'memori']
[u'unit', u'approach', u'seek', u'pacif', u'highway']
[u'australia', u'need', u'compromis', u'free', u'trade', u'deal']
[u'consid', u'concess', u'korean', u'peninsula']
[u'showman', u'end', u'stunt']
[u'soldier', u'kill', u'attack', u'iraqi', u'citi']
[u'soldier', u'kill', u'iraq', u'ambush']
[u'vandal', u'target', u'school', u'western']
[u'vaughan', u'wari', u'whatmor', u'bangladesh', u'revolut']
[u'vieira', u'ljungberg', u'gunner', u'kiev', u'challeng']
[u'famili', u'access', u'childcar']
[u'opposit', u'back', u'plant', u'mainland']
[u'polic', u'look', u'oversea', u'hoon', u'solut']
[u'water', u'compani', u'spend', u'million', u'fight', u'global']
[u'waugh', u'prais', u'stand', u'attack', u'australia', u'sweep']
[u'winemak', u'celebr', u'award']
[u'woman', u'kill', u'accid']
[u'worker', u'threaten', u'action', u'london', u'train']
[u'world', u'local', u'leader', u'tribut', u'sarajevo']
[u'yanke', u'rout', u'marlin', u'level', u'world', u'seri']
[u'young', u'leader', u'urg', u'rural', u'input', u'polit']
[u'youth', u'violenc', u'subject', u'public', u'meet']
[u'kill', u'south', u'korea', u'accid']
[u'abattoir', u'owner', u'govt']
[u'govt', u'promis', u'improv', u'budget', u'transpar']
[u'agassi', u'headlin', u'strong', u'kooyong', u'field']
[u'age', u'care', u'servic', u'struggl', u'cost']
[u'aid', u'rat', u'fall', u'south', u'africa', u'studi']
[u'airport', u'hope', u'horizon', u'continu', u'oper']
[u'black', u'confid', u'umaga', u'return']
[u'alleg', u'assault', u'case', u'throw', u'court']
[u'allianc', u'loggerhead', u'forest', u'remap']
[u'ord', u'follow', u'wall', u'street', u'higher']
[u'urg', u'extend', u'poki', u'revenu', u'rebat']
[u'apec', u'announc', u'anti', u'terror', u'measur']
[u'apec', u'eye', u'anti', u'terror', u'task', u'forc']
[u'asic', u'urg', u'probe', u'purchas']
[u'athlet', u'steroid', u'catch', u'pound']
[u'australia', u'prais', u'stanc', u'slave', u'trade']
[u'australia', u'strand', u'sheep', u'prompt', u'protest']
[u'crisi', u'scotland']
[u'ballarat', u'council', u'want', u'improv', u'highway']
[u'bellami', u'face', u'sixth', u'oper', u'damag', u'knee']
[u'bettini', u'top', u'world', u'rank', u'armstrong', u'eighth']
[u'bigpond', u'servic', u'normal', u'telstra']
[u'volunt', u'conting', u'need', u'ironman', u'event']
[u'blatter', u'rule', u'year', u'dope', u'ban']
[u'box', u'champ', u'thornberri', u'retir']
[u'bryant', u'send', u'trial', u'rape', u'charg']
[u'bundi', u'resid', u'nation']
[u'busi', u'group', u'welcom', u'compo', u'reform']
[u'cairn', u'confer', u'focus', u'sugar', u'industri']
[u'call', u'polic', u'inform', u'child', u'abus']
[u'canberra', u'stand', u'trial']
[u'hit', u'elder', u'coupl', u'highway']
[u'carlton', u'crow', u'announc', u'list', u'cull']
[u'charg', u'accid', u'say', u'moodi']
[u'chelsea', u'hop', u'boost', u'couto', u'absenc']
[u'children', u'commission', u'call', u'feder', u'advoc']
[u'christma', u'coco', u'island', u'assist', u'sheep']
[u'clune', u'bank', u'spotlight']
[u'cobdogla', u'club', u'celebr', u'award']
[u'committe', u'hear', u'melbourn', u'aiport', u'secur', u'breach']
[u'communiti', u'respect', u'macksvill', u'teacher']
[u'communiti', u'welcom', u'tennant', u'creek', u'polic', u'chang']
[u'concern', u'rais', u'northern', u'irrig', u'plan']
[u'conserv', u'attitud', u'prove', u'cost']
[u'coolgardi', u'school', u'get', u'librari', u'resourc']
[u'council', u'happi', u'lower', u'survey', u'score']
[u'council', u'investig', u'crime', u'fight', u'camera']
[u'council', u'offic', u'look', u'solut', u'youth']
[u'council', u'reclassifi', u'public', u'land', u'despit']
[u'council', u'welcom', u'road', u'safeti', u'fund']
[u'countri', u'campaign', u'work', u'ararat']
[u'court', u'tell', u'children', u'murder', u'spite']
[u'court', u'tell', u'kill', u'kid', u'punish', u'wife']
[u'crayfish', u'number', u'boom', u'south', u'west']
[u'darwin', u'band', u'entertain', u'asylum', u'seeker']
[u'debat', u'continu', u'rockhampton', u'music', u'bowl']
[u'delay', u'predict', u'canberra', u'street', u'bush']
[u'differ', u'coral', u'speci', u'spawn', u'reef', u'research']
[u'dokic', u'target']
[u'dreamworld', u'tiger', u'help', u'speci', u'surviv']
[u'empoli', u'perotti', u'coach']
[u'england', u'ignor', u'critic', u'say', u'robinson']
[u'england', u'world', u'best', u'rugbi', u'team']
[u'urg', u'shark', u'explor']
[u'extern', u'auditor', u'investig', u'council', u'process']
[u'famili', u'begin', u'hunger', u'strike', u'port', u'hedland']
[u'farmer', u'seek', u'wage', u'rise', u'exempt', u'drought']
[u'favourit', u'lonhro', u'snub', u'plate', u'breakfast']
[u'fergi', u'hand', u'touchlin', u'hefti', u'fine']
[u'ferrero', u'pull', u'swiss', u'indoor']
[u'field', u'activ', u'focus', u'drought']
[u'film', u'produc', u'face', u'court', u'smuggl', u'charg']
[u'charg', u'lay', u'drug', u'ring', u'bust']
[u'fisheri', u'group', u'rejig', u'shark', u'quota']
[u'fisheri', u'offici', u'interview', u'indonesian', u'crew']
[u'fishermen', u'happi', u'revis', u'reef', u'protect', u'zone']
[u'flatley', u'prais', u'larkham', u'genius']
[u'forum', u'offer', u'public', u'input', u'traffic', u'flow', u'woe']
[u'bali', u'bomb', u'suspect', u'charg']
[u'french', u'strength', u'scotland', u'match']
[u'giffin', u'chanc', u'namibia', u'game']
[u'gold', u'coast', u'jockey', u'contest', u'melbourn']
[u'govt', u'aim', u'stop', u'dodgi', u'migrat', u'agent']
[u'govt', u'hail', u'holden', u'export']
[u'govt', u'releas', u'kununurra', u'water', u'protect', u'plan']
[u'green', u'group', u'weigh', u'land', u'clear', u'control', u'effort']
[u'griffith', u'communiti', u'air', u'public', u'health', u'concern']
[u'hamilton', u'footbal', u'club', u'switch', u'leagu']
[u'harmison', u'shin', u'gloomi', u'dhaka']
[u'health', u'servic', u'hostel', u'sign', u'agreement']
[u'high', u'busi', u'confid', u'continu']
[u'hotel', u'associ', u'serv', u'din', u'award']
[u'hreidarsson', u'strike', u'pile', u'miseri', u'rover']
[u'immigr', u'wont', u'pressur', u'hunger', u'strike']
[u'indonesian', u'fisherman', u'jail', u'illeg', u'fish']
[u'injuri', u'crisi', u'time']
[u'injuri', u'rival', u'gear', u'action']
[u'interpol', u'link', u'illeg', u'wildlif', u'trade', u'terror']
[u'investig', u'continu', u'accid']
[u'authoris', u'step', u'disarma']
[u'iran', u'agre', u'inspect', u'nuclear', u'sit']
[u'irrig', u'group', u'welcom', u'eas', u'restrict']
[u'islam', u'milit', u'arrest', u'saudi', u'arabia']
[u'isol', u'communiti', u'face', u'substanc', u'abus']
[u'itali', u'hang', u'determin', u'canada']
[u'itali', u'look', u'canada', u'wale']
[u'jone', u'montgomeri', u'draw', u'steroid', u'probe']
[u'karratha', u'woman', u'trial', u'theft']
[u'labor', u'support', u'asia', u'comment']
[u'lavington', u'compani', u'land', u'autopart', u'contract']
[u'lonhro', u'draw', u'wide', u'plate']
[u'love', u'amor', u'cricket']
[u'macgil', u'open']
[u'mackenroth', u'talk', u'economi']
[u'mahathir', u'jewish', u'comment', u'unaccept', u'downer', u'say']
[u'appear', u'court', u'bomb', u'hoax']
[u'arrest', u'shoalhaven', u'bash']
[u'charg', u'woman', u'murder']
[u'guilti', u'plane', u'comment']
[u'trial', u'rape', u'abduct']
[u'plead', u'guilti', u'burglari']
[u'remand', u'custodi', u'attempt', u'murder']
[u'appear', u'court', u'child', u'porn', u'charg']
[u'sentenc', u'smuggl', u'drug']
[u'maroochi', u'carol', u'ahead']
[u'marseill', u'medic', u'barthez']
[u'mayn', u'strike', u'deal', u'sell', u'hospit']
[u'mayor', u'welcom', u'return', u'pittsworth', u'taxi', u'servic']
[u'melbourn', u'water', u'restrict', u'stay']
[u'mildura', u'council', u'call', u'clear', u'busi', u'number']
[u'mildura', u'student', u'warn', u'parti']
[u'mini', u'tornado', u'damag', u'rockhampton', u'properti']
[u'miss', u'toddler', u'search', u'reassess']
[u'mobil', u'phone', u'record', u'hit', u'ferdinand', u'defenc']
[u'honour', u'jackson']
[u'job', u'windfarm', u'compon', u'plant']
[u'mother', u'describ', u'melbourn', u'hospit', u'appal']
[u'mother', u'jail', u'welfar', u'fraud']
[u'namibia', u'coach', u'say', u'ref', u'favour', u'strong', u'nation']
[u'nation', u'take', u'freight', u'servic']
[u'nation', u'dubious', u'state', u'water', u'busi']
[u'nat', u'accus', u'govt', u'power', u'station', u'cover']
[u'general', u'manag', u'stay', u'council', u'polit']
[u'korea', u'fire', u'test', u'missil', u'report']
[u'increas', u'secur', u'alert', u'bush', u'visit', u'ruddock']
[u'northern', u'ireland', u'elect', u'novemb']
[u'govt', u'announc', u'review', u'aborigin', u'educ']
[u'govt', u'condemn', u'water', u'qualiti', u'strategi']
[u'govt', u'defend', u'water', u'leakag']
[u'loss', u'wake', u'lockyer']
[u'olymp', u'stadium', u'leagu', u'home']
[u'opal', u'miner']
[u'opposit', u'accus', u'misinterpret', u'figur']
[u'opposit', u'patient', u'critic', u'children']
[u'opposit', u'back', u'tighten', u'canberra', u'rental', u'law']
[u'opposit', u'critic', u'drag', u'race', u'penalti']
[u'orbost', u'pair', u'jail', u'drug', u'crop']
[u'oscar', u'win', u'actor', u'niro', u'diagnos', u'cancer']
[u'otway', u'basin', u'seismic', u'survey', u'work', u'start']
[u'pakistan', u'complet', u'comfort', u'south', u'africa']
[u'subsidiari', u'place', u'liquid']
[u'pell', u'offici', u'cardin', u'vatican']
[u'penthous', u'magazin', u'sale']
[u'philippin', u'claim', u'activ', u'south']
[u'plan', u'highlight', u'urban', u'fire', u'risk']
[u'applaud', u'apec', u'agenda']
[u'defend', u'focus', u'terror']
[u'urg', u'rais', u'hick', u'detent', u'bush']
[u'poet', u'wheel', u'tour', u'roll', u'western']
[u'polic', u'request', u'peac', u'protest', u'bush', u'visit']
[u'polic', u'suspect', u'doubl', u'murder', u'link']
[u'polic', u'urg', u'road', u'caution', u'indi', u'weekend']
[u'polic', u'withhold', u'gunnedah', u'accid', u'victim']
[u'pope', u'creat', u'cardin']
[u'port', u'kembla', u'dock', u'extens', u'give', u'ahead']
[u'premier', u'promis', u'polic']
[u'profession', u'fish', u'urg']
[u'premier', u'call', u'toll', u'compani', u'repay', u'driver']
[u'place', u'meet', u'rise', u'coke', u'coal', u'demand']
[u'rain', u'help', u'eas', u'goulburn', u'water', u'restrict']
[u'ranger', u'plot', u'ibrox', u'nightmar', u'ferguson']
[u'rapist', u'sentenc', u'alic', u'spring', u'tomorrow']
[u'record', u'entri', u'best', u'foreign', u'film', u'oscar']
[u'redback', u'head', u'maximum', u'point', u'waca']
[u'reef', u'foundat', u'welcom', u'crown', u'thorn', u'fund']
[u'road', u'safeti', u'chief', u'upbeat', u'pacif', u'highway']
[u'rockhampton', u'mayor', u'criticis', u'chopper', u'fund']
[u'romania', u'chang', u'argentina', u'game']
[u'rooki', u'driver', u'rev', u'indi']
[u'salvag', u'crew', u'hop', u'recov', u'submerg', u'chopper']
[u'samoa', u'fanuatanu', u'world']
[u'school', u'lobbi', u'delay', u'school', u'rout']
[u'scotland', u'lesli', u'cite']
[u'scrappi', u'scot', u'face', u'french', u'farc', u'bulloch']
[u'seminar', u'put', u'focus', u'workplac', u'bulli']
[u'shepparton', u'stand', u'murder', u'charg']
[u'shire', u'consid', u'doctor', u'share']
[u'soccer', u'team', u'posit', u'goodwil', u'game', u'prospect']
[u'solar', u'challeng', u'camp', u'finish', u'late']
[u'sorenstam', u'price', u'induct', u'hall', u'fame']
[u'sourc', u'ill', u'wagga', u'resid']
[u'springborg', u'criticis', u'role', u'children']
[u'staff', u'abus', u'passeng', u'problem', u'canberra']
[u'stand', u'crew', u'cover', u'strike', u'auxiliari']
[u'state', u'support', u'free', u'trade', u'deal']
[u'superson', u'scram', u'test', u'recomm']
[u'surplus', u'justifi', u'increas', u'rural', u'spend', u'member']
[u'talk', u'focus', u'snowi', u'hut', u'futur']
[u'professor', u'grant', u'research', u'fund']
[u'tassal', u'share', u'applic', u'close', u'earli', u'keen']
[u'telstra', u'quarter', u'sale']
[u'thornberri', u'hang', u'glove']
[u'week', u'repriev', u'horizon']
[u'tindal', u'readi', u'rugbi', u'greenwood']
[u'town', u'consid', u'year', u'long', u'festiv', u'celebr']
[u'town', u'renew', u'call', u'multi', u'purpos', u'facil']
[u'trade', u'agreement', u'boost', u'wine', u'export']
[u'turnov', u'milan', u'success']
[u'charg', u'alleg', u'abduct']
[u'arrest', u'drug', u'raid']
[u'umaga', u'hope', u'world', u'return']
[u'union', u'question', u'premier', u'support', u'free', u'trade']
[u'union', u'consid', u'industri', u'action']
[u'defend', u'vietnam', u'crime', u'probe']
[u'reopen', u'diplomat', u'mission', u'equatori', u'guinea']
[u'valley', u'cafe', u'blaze', u'arson']
[u'victorian', u'tribun', u'hear', u'complaint']
[u'voluntari', u'administr', u'appoint', u'cotton']
[u'volunt', u'seek', u'centr', u'finish', u'touch']
[u'warrington', u'wood', u'stun', u'face', u'aussi']
[u'water', u'theme', u'park', u'propos', u'darwin']
[u'say', u'bok', u'coach', u'straeuli']
[u'want', u'golf', u'millionair']
[u'wicket', u'waca']
[u'wilkinson', u'disappoint', u'open', u'match']
[u'wine', u'grower', u'reliev', u'water', u'restrict', u'eas']
[u'wine', u'maker', u'urg', u'govt', u'address', u'domest', u'issu']
[u'woman', u'critic', u'state', u'shed', u'blast']
[u'woolmark', u'predict', u'fall', u'industri']
[u'work', u'start', u'renew', u'energi', u'program']
[u'yalgoo', u'prepar', u'christma', u'poll']
[u'yanke', u'face', u'assault', u'charg']
[u'zabaleta', u'seed', u'fall', u'stockholm']
[u'zaccheroni', u'confid', u'halt', u'inter', u'slide']
[u'abbott', u'agre', u'meet', u'health', u'staff', u'medicar']
[u'abbott', u'get', u'messag', u'medic', u'indemn', u'crisi']
[u'abstudi', u'chang', u'indigen', u'student']
[u'academ', u'point', u'posit', u'have']
[u'assault', u'trial', u'doubt']
[u'black', u'optimist', u'injuri']
[u'ord', u'slide', u'dollar', u'soar']
[u'arson', u'attack', u'damag', u'adelaid', u'school']
[u'asthma', u'barrier', u'marathon', u'walk']
[u'athlet', u'chief', u'launch', u'massiv', u'world', u'dope', u'hunt']
[u'athlet', u'chief', u'launch', u'world', u'dope', u'hunt']
[u'aussi', u'refere', u'young', u'sidelin', u'injuri']
[u'australian', u'back', u'wall', u'india', u'punter']
[u'australia', u'pay', u'solomon', u'bank', u'arrear']
[u'azzurri', u'coach', u'kirwan', u'lash', u'schedul']
[u'weather', u'threaten', u'woman', u'pacif', u'solo']
[u'end', u'world', u'scotland', u'lesli']
[u'beatti', u'seek', u'feder', u'health', u'fund', u'boost']
[u'benaud', u'knock', u'shoaib', u'appeal']
[u'bendigo', u'loddon', u'tourism', u'worth', u'million', u'studi']
[u'plan', u'afoot', u'abalon', u'farm']
[u'blue', u'ribbon', u'worker', u'futur', u'unresolv']
[u'brazil', u'say', u'american', u'trade', u'talk', u'collaps']
[u'break', u'hill', u'prepar', u'outback', u'summit']
[u'broom', u'forum', u'discuss', u'tourism', u'impact']
[u'brown', u'say', u'abus', u'rais', u'chines']
[u'build', u'societi', u'sharehold', u'consid']
[u'bush', u'arriv', u'australia']
[u'bush', u'head', u'australia', u'bali', u'stopov']
[u'bush', u'start', u'bali', u'visit', u'amid', u'secur', u'clampdown']
[u'infrastructur', u'bridg', u'wind', u'farm']
[u'region', u'benefit', u'polic', u'number']
[u'call', u'derelict', u'ship', u'solut']
[u'professionalis', u'foster', u'carer', u'role']
[u'canada', u'coach', u'plead', u'pacif', u'comp']
[u'cane', u'harvest', u'finish', u'upbeat', u'note']
[u'cathol', u'school', u'teacher', u'threaten', u'strike', u'action']
[u'hop', u'rais', u'endeavour']
[u'chamber', u'fail', u'drug', u'test', u'report']
[u'chinchilla', u'destroy', u'histor', u'school', u'block']
[u'chines', u'presid', u'arriv', u'histor', u'visit']
[u'chines', u'remedi', u'test', u'fight', u'malaria']
[u'claim', u'hypnotherapi', u'help', u'irrit', u'bowel', u'syndrom']
[u'claim', u'propos', u'farm', u'bore', u'threaten', u'trangi', u'water']
[u'classi', u'shearer', u'lead', u'toon', u'fightback']
[u'compani', u'grant', u'relief', u'help', u'job', u'growth']
[u'concern', u'indigen', u'protest', u'spark', u'bushfir']
[u'concess', u'surgeri', u'cut', u'plan']
[u'condobolin', u'farmer', u'drought', u'access']
[u'cooma', u'north', u'primari', u'student', u'danc', u'drama']
[u'council', u'air', u'water', u'reform', u'dairi', u'industri', u'fear']
[u'council', u'await', u'transport', u'park', u'applic']
[u'council', u'claim', u'compo', u'scheme', u'crippl', u'coal', u'industri']
[u'council', u'face', u'challeng', u'repair', u'histor']
[u'council', u'push', u'drought', u'decis']
[u'council', u'reject', u'west', u'wyalong', u'brothel', u'plan']
[u'council', u'want', u'start', u'inland', u'rail', u'line', u'shift']
[u'council', u'build', u'hous', u'nurs']
[u'council', u'ponder', u'river', u'cross', u'option']
[u'denmark', u'thiev', u'target', u'plant']
[u'dent', u'serv', u'warn', u'schalken', u'fall']
[u'dept', u'review', u'pension', u'mortgag', u'repay']
[u'disgruntl', u'fan', u'turn', u'gerrard', u'warn']
[u'doctor', u'govt', u'indemn', u'crisi']
[u'doctor', u'wait', u'visit', u'right', u'respons']
[u'dollar', u'hit', u'year', u'high']
[u'doubt', u'rais', u'oval', u'plan']
[u'downer', u'welcom', u'iran', u'suspens', u'nuclear']
[u'drought', u'team', u'extend', u'gippsland', u'effort']
[u'dutch', u'team', u'take', u'world', u'solar', u'challeng']
[u'eagl', u'read']
[u'ecstasi', u'batch', u'contain', u'poison', u'polic']
[u'environment', u'treasur', u'risk', u'tourism']
[u'timor', u'welcom', u'mahathir']
[u'expo', u'tell', u'mine', u'graduat', u'shortag']
[u'factbox', u'steroid']
[u'fair', u'trade', u'spotlight', u'fall', u'dorrigo', u'firm']
[u'fear', u'intern', u'freeway', u'plan', u'take', u'long']
[u'figur', u'highlight', u'wimmera', u'malle', u'tourism', u'spend']
[u'oper', u'year', u'schedul']
[u'fishermen', u'action', u'evan', u'river']
[u'fish', u'death', u'prompt', u'emerg', u'beacon', u'review']
[u'flood', u'washington', u'state']
[u'fli', u'fijian', u'look', u'serevi', u'world', u'lift']
[u'franc', u'seven', u'chang', u'scotland', u'match']
[u'fraud', u'hit', u'troubl', u'wine', u'centr']
[u'french', u'journalist', u'kill', u'ivori', u'coast']
[u'geraldton', u'student', u'short', u'list', u'drama']
[u'world', u'japan', u'say', u'ella']
[u'gough', u'target', u'world']
[u'govt', u'look', u'trade', u'deal', u'china']
[u'govt', u'open', u'truck', u'check', u'point']
[u'govt', u'rule', u'turn', u'freeway', u'toll']
[u'govt', u'focus', u'manufactur', u'boost']
[u'govt', u'urg', u'live', u'sheep', u'export', u'market']
[u'green', u'wear', u'black', u'armband', u'address']
[u'group', u'claim', u'pipelin', u'talk', u'water']
[u'group', u'seek', u'carr', u'support', u'hors', u'centr']
[u'group', u'support', u'plan', u'burdekin', u'irrig']
[u'group', u'want', u'stop', u'bigger', u'nation', u'park', u'plan']
[u'harmison', u'trescothick', u'england', u'charg']
[u'health', u'group', u'offer', u'hospit', u'manag', u'assur']
[u'health', u'worker', u'protest', u'plan', u'medicar']
[u'henman', u'beat', u'verkerk', u'feder', u'basel']
[u'hermannsburg', u'get', u'year', u'sexual', u'assault']
[u'hodg', u'appear', u'court', u'stalk', u'alleg']
[u'home', u'insur', u'number', u'drop', u'bushfir', u'danger']
[u'home', u'insur', u'scheme', u'face', u'major', u'reform']
[u'hunter', u'destin', u'australian']
[u'indigen', u'mine', u'contractor', u'boost', u'job']
[u'inflat', u'hold', u'steadi', u'strong', u'dollar']
[u'injuri', u'india', u'seri', u'build']
[u'iran', u'decis', u'allow', u'nuclear', u'inspect']
[u'ireland', u'pick', u'humphrey', u'face', u'argentina']
[u'israel', u'reject', u'barrier', u'resolut']
[u'israel', u'speed', u'build', u'west', u'bank', u'barrier']
[u'israel', u'continu', u'erect', u'secur', u'wall']
[u'sheep', u'stress']
[u'itali', u'beset', u'injuri', u'problem']
[u'jone', u'slap', u'buddha', u'whitak', u'select', u'jibe']
[u'journalist', u'kill', u'ivori', u'coast', u'milit']
[u'judg', u'piggeri', u'plan', u'site']
[u'juve', u'march', u'reel', u'inter', u'thrash', u'moscow']
[u'kenyan', u'presid', u'powel', u'hold', u'talk', u'terror']
[u'land', u'giveaway', u'prove', u'popular']
[u'lightn', u'hit', u'ravenswood', u'miner']
[u'local', u'ralli', u'supermarket', u'plan']
[u'loyal', u'whitak', u'pois', u'captain', u'wallabi']
[u'clear', u'make', u'threat', u'virgin', u'blue', u'flight']
[u'mandela', u'launch', u'music', u'campaign', u'highlight', u'aid']
[u'face', u'court', u'lambton', u'drug']
[u'fall', u'death', u'workplac', u'accid']
[u'suffer', u'head', u'injuri', u'lake', u'macquari']
[u'market', u'focus', u'china', u'trade', u'dollar']
[u'marshal', u'impress', u'versatil', u'england']
[u'mental', u'state', u'alleg', u'tripl', u'murder']
[u'mightili', u'reliev', u'duck', u'blame', u'hous', u'splatter']
[u'mine', u'offer', u'best', u'hope', u'region', u'develop']
[u'minist', u'launch', u'showcas', u'cunnamulla', u'talent']
[u'minist', u'say', u'landcar', u'win', u'battl']
[u'minist', u'announc', u'catchment', u'group']
[u'minnelli', u'sue', u'spousal', u'abus']
[u'miseri', u'jinx', u'philippoussi']
[u'frustrat', u'preselect', u'delay']
[u'murchison', u'council', u'look', u'citi', u'shire', u'best']
[u'murray', u'water', u'price', u'plummet', u'water', u'flood', u'market']
[u'namoi', u'valley', u'group', u'monitor', u'state', u'water', u'plan']
[u'upbeat', u'surg', u'crowd', u'figur']
[u'near', u'half', u'teacher', u'leav', u'quit']
[u'polic', u'task', u'forc', u'crackdown', u'crime']
[u'nightclub', u'curfew', u'help', u'warrnambool', u'crime']
[u'ireland', u'peac', u'talk', u'break']
[u'link', u'sydney', u'drive', u'shoot', u'polic']
[u'mirror', u'mine', u'expo']
[u'chief', u'quiz', u'compani']
[u'govt', u'blow', u'flatul']
[u'offic', u'build', u'site', u'fuel', u'decontamin']
[u'paedophil', u'priest', u'face', u'long', u'jail', u'term']
[u'pakistan', u'sami', u'doubt', u'second', u'test']
[u'peac', u'prize', u'winner', u'affirm', u'commit', u'goodwil']
[u'pell', u'appoint', u'cardin', u'vatican', u'ceremoni']
[u'plan', u'visit', u'break', u'hill', u'fundrais']
[u'ask', u'confirm', u'manjimup', u'jetti', u'fund']
[u'eye', u'china', u'free', u'trade', u'deal']
[u'polic', u'appeal', u'public', u'help', u'attack']
[u'polic', u'direct', u'stock', u'theft', u'sting', u'complaint']
[u'polic', u'hold', u'grave', u'fear', u'miss', u'toddler']
[u'polic', u'hope', u'extradit', u'cannabi']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'question', u'accid', u'kill']
[u'port', u'kembla', u'work', u'prelud', u'growth', u'plan']
[u'port', u'phillip', u'prison', u'oper', u'accus']
[u'properti', u'petrol', u'push', u'inflat']
[u'protest', u'voic', u'opposit', u'bush']
[u'public', u'demand', u'bond', u'bendigo', u'wast', u'dump']
[u'public', u'comment', u'aust', u'largest', u'tiger', u'prawn', u'farm']
[u'puma', u'charg', u'quarter']
[u'demand', u'return', u'bauxit', u'leas']
[u'govt', u'urg', u'bolster', u'gold', u'coast', u'crisi', u'hous']
[u'rawl', u'deal', u'fair', u'roo']
[u'repriev', u'grant', u'refuge', u'schoolgirl']
[u'research', u'tree', u'diseas', u'fight', u'fund']
[u'research', u'gene', u'decid', u'onset']
[u'research', u'show', u'higher', u'cancer', u'risk', u'flight', u'crew']
[u'resid', u'lodg', u'appeal', u'alcoa', u'refineri']
[u'resid', u'urg', u'traralgon', u'race']
[u'review', u'urg', u'helicopt', u'rescu', u'mission']
[u'roam', u'youth', u'leav', u'broom', u'communiti', u'fear']
[u'rofe', u'scuttl', u'warrior', u'perth']
[u'erupt', u'sydney', u'peac', u'prize', u'winner']
[u'ruddock', u'urg', u'china', u'protest', u'observ']
[u'ryan', u'reject', u'dutson', u'down', u'scaremong', u'claim']
[u'claim', u'oldest', u'vertebr', u'fossil']
[u'compani', u'win', u'share', u'iraq', u'contract']
[u'safin', u'slump', u'continu']
[u'pass', u'biki', u'fortress']
[u'school', u'push', u'build', u'sport', u'centr']
[u'sept', u'mastermind', u'kill', u'report', u'offici']
[u'sheep', u'ship', u'futur', u'limbo']
[u'shire', u'critic', u'recommend']
[u'shire', u'hold', u'fast', u'track', u'airport', u'runway']
[u'socceroo', u'latest', u'rank']
[u'solomon', u'strand', u'visa', u'gaff']
[u'solomon', u'strand', u'rout', u'meet', u'bush']
[u'south', u'africa', u'bowler', u'struggl', u'test']
[u'southern', u'tourism', u'meet', u'hail', u'success']
[u'stab', u'spark', u'polic', u'manhunt']
[u'stanbrok', u'unsur', u'beef', u'properti', u'purchas']
[u'studio', u'chang', u'heart', u'movi', u'oscar']
[u'sudanes', u'parti', u'commit', u'peac', u'deal']
[u'sunshin', u'coast', u'remain', u'popular', u'destin']
[u'surgeri', u'improv', u'hunter', u'heart', u'attack', u'surviv', u'rate']
[u'swim', u'coach', u'confid', u'ahead', u'court', u'date']
[u'swim', u'star', u'testifi', u'murder', u'trial']
[u'sydney', u'firm', u'architectur', u'gong']
[u'sydney', u'king', u'derbi']
[u'enjoy', u'increas', u'tourism', u'growth']
[u'tasmanian', u'protest', u'bush', u'visit']
[u'urg', u'redirect', u'sheep', u'shipment']
[u'telco', u'complaint', u'year']
[u'telstra', u'decay', u'record', u'photo', u'opposit']
[u'blast', u'eastern', u'indonesian', u'citi']
[u'tourist', u'visit', u'longest', u'report']
[u'troop', u'deploy', u'crimin', u'north', u'korea', u'tell', u'south']
[u'tweed', u'council', u'consid', u'beach', u'develop']
[u'palestinian', u'milit', u'kill', u'west', u'bank', u'armi']
[u'soldier', u'wound', u'baghdad', u'bomb', u'blast']
[u'demand', u'israel', u'halt', u'west', u'bank', u'barrier']
[u'check', u'microsoft', u'anti', u'trust', u'breach']
[u'governor', u'bush', u'interven', u'right', u'case']
[u'scuba', u'diver', u'drown', u'north']
[u'secur', u'offer', u'dismiss', u'laughabl']
[u'vanston', u'accus', u'green', u'doubl', u'standard']
[u'polic', u'suspect', u'miss', u'toddler', u'take', u'home']
[u'virus', u'rampant', u'chines', u'comput']
[u'wallabi', u'ring', u'chang', u'namibia', u'match']
[u'wallabi', u'shortag', u'rugbi', u'player', u'award']
[u'warrior', u'swann', u'sign', u'bradford']
[u'warrnambool', u'busi', u'take', u'region', u'export']
[u'water', u'level', u'rise', u'central']
[u'western', u'queensland', u'defi', u'tourism', u'downturn']
[u'real', u'fiji', u'stand', u'demand', u'coach']
[u'wollongong', u'rider', u'jump', u'supercross']
[u'woodward', u'strengthen', u'england', u'samoa', u'clash']
[u'yanke', u'surg', u'world', u'seri', u'lead']
[u'youhana', u'second', u'test']
[u'injur', u'sydney', u'collis']
[u'protest', u'expect', u'turn', u'anti', u'bush']
[u'countri', u'discuss', u'iraqi']
[u'abattoir', u'owner', u'consid', u'cormo', u'sheep', u'process']
[u'advoc', u'question', u'church', u'account', u'abus', u'claim']
[u'aid', u'greater', u'threat', u'terror', u'confer']
[u'airlin', u'allianc', u'high', u'court']
[u'algerian', u'extremist', u'pledg', u'allegi', u'qaeda']
[u'alleg', u'mastermind', u'iraqi', u'attack', u'arrest']
[u'accident', u'death', u'china', u'year']
[u'lobbi', u'protect', u'wake', u'free', u'trade']
[u'american', u'airlin', u'scrap', u'profit', u'peak', u'season']
[u'ankl', u'surgeri']
[u'annan', u'call', u'dollar', u'iraq', u'reconstruct']
[u'appeal', u'vanston', u'stop', u'deport', u'girl']
[u'ardmona', u'factori', u'outlet', u'stay', u'time']
[u'atsic', u'tackl', u'rise', u'prison', u'number']
[u'aussi', u'favourit', u'india', u'pont']
[u'swim', u'boss', u'pledg', u'support', u'probe']
[u'aust', u'dollar', u'roar', u'year', u'high']
[u'australia', u'name', u'intern', u'rule', u'test']
[u'australia', u'work', u'peac', u'taiwan', u'strait']
[u'author', u'concern', u'miss', u'yacht']
[u'author', u'daytim', u'summer', u'water']
[u'balaji', u'replac', u'injur', u'salvi', u'india', u'squad']
[u'ballarat', u'recov', u'meningococc', u'diseas']
[u'beatti', u'attend', u'meet', u'presid']
[u'beckham', u'doubt', u'liga', u'duti', u'pull']
[u'belgium', u'offer', u'million', u'euro', u'iraq']
[u'bickley', u'look', u'high', u'note']
[u'upgrad', u'brew', u'tasmania', u'boag']
[u'boati', u'warn', u'teak', u'surf', u'danger']
[u'bosnia', u'bid', u'farewel', u'izetbegov']
[u'die', u'holbrook', u'road', u'crash']
[u'brack', u'meet', u'presid', u'free', u'trade', u'talk']
[u'brick', u'shortag', u'warn', u'builder']
[u'brigg', u'get', u'closer', u'world', u'heavyweight', u'fight']
[u'british', u'athlet', u'deni', u'steroid']
[u'brogden', u'air', u'concern', u'campbel', u'visit']
[u'burswood', u'post', u'septemb', u'quarter', u'profit']
[u'bush', u'address', u'parliament']
[u'bush', u'address', u'australian', u'parliament']
[u'bush', u'administr', u'defend', u'leak', u'memo']
[u'bush', u'fli', u'brief', u'visit']
[u'bush', u'kick', u'visit', u'meet', u'governor', u'general']
[u'bush', u'prais', u'thank', u'australia']
[u'bush', u'prais', u'green', u'interject']
[u'bush', u'protest', u'march', u'despit', u'polic']
[u'bush', u'protest', u'march', u'turn', u'violent']
[u'bush', u'put', u'decemb', u'timefram', u'free', u'trade', u'deal']
[u'bush', u'thank', u'support']
[u'bush', u'welcom', u'parliament', u'hous']
[u'busi', u'head', u'meet', u'chines', u'presid']
[u'regul', u'uranium', u'mine']
[u'campaign', u'work', u'region', u'shift']
[u'chamber', u'vow', u'fight', u'drug', u'charg']
[u'chemistri', u'student', u'admit', u'possess', u'bomb']
[u'chines', u'leader', u'tour', u'sydney', u'departur']
[u'chines', u'leader', u'tour', u'olymp', u'stadium']
[u'coal', u'miner', u'concern', u'rise', u'dollar', u'cost', u'job']
[u'communiti', u'grappl', u'boy', u'death']
[u'confer', u'consid', u'region', u'challeng']
[u'council', u'object', u'take', u'strand', u'sheep']
[u'council', u'reject', u'dampier', u'pharmaci']
[u'council', u'releas', u'mall', u'report']
[u'council', u'seek', u'solut', u'landfil', u'problem']
[u'council', u'reap', u'real', u'estat', u'boom', u'reward']
[u'council', u'head', u'lice', u'check', u'scheme', u'time']
[u'coupl', u'shoot', u'fail', u'jack']
[u'court', u'hand', u'work', u'accid', u'sentenc']
[u'dairi', u'group', u'happi', u'thai', u'trade', u'agreement']
[u'decis', u'reject', u'drought', u'assist', u'outrag']
[u'democrat', u'health', u'summit', u'snub', u'region']
[u'dongara', u'landmark', u'receiv', u'interim', u'heritag']
[u'doubt', u'rais', u'irrig', u'review']
[u'drought', u'busi', u'fund', u'boost']
[u'dutchman', u'doubl', u'stockholm']
[u'econom', u'slump', u'predict', u'port', u'lincoln']
[u'award', u'right', u'prize', u'annan', u'staff']
[u'famili', u'chief', u'respond', u'alleg']
[u'figur', u'highlight', u'fall', u'tourism', u'number']
[u'damag', u'sale', u'greyhound', u'build']
[u'fisherman', u'lucki', u'bite', u'give', u'briton', u'teeth']
[u'arrest', u'anti', u'bush', u'protest']
[u'fijian', u'overpow', u'japan']
[u'labor', u'sign', u'protest', u'letter', u'bush']
[u'kill', u'indian', u'train', u'jump', u'track']
[u'gold', u'coast', u'tourism', u'weather', u'global', u'event']
[u'gonzalez', u'end', u'marathon', u'marlin', u'seri']
[u'govt', u'ban', u'junk', u'food', u'school', u'canteen']
[u'govt', u'seek', u'solut', u'meatwork', u'problem']
[u'govt', u'veto', u'art', u'festiv', u'minist', u'say']
[u'great', u'wait', u'begin', u'luhrmann', u'film']
[u'green', u'ban', u'parliament', u'anti', u'bush']
[u'green', u'demand', u'referendum', u'year', u'govt']
[u'grim', u'outlook', u'region', u'cancer', u'patient']
[u'grower', u'welcom', u'drought', u'elig']
[u'heal', u'send', u'spur', u'strong', u'statement']
[u'health', u'union', u'move', u'forward', u'mater', u'redevelop']
[u'hick', u'lawyer', u'join', u'bush', u'protest', u'parliament']
[u'hodg', u'launch', u'channel', u'defam', u'action']
[u'hunt', u'continu', u'miss', u'toddler']
[u'hunter', u'join', u'protest', u'bush', u'visit']
[u'hurrican', u'patricia', u'churn', u'mexico']
[u'immigr', u'author', u'arrest', u'raid']
[u'indian', u'polic', u'seiz', u'explos', u'hide', u'onion']
[u'india', u'year', u'pakistan', u'test', u'freez']
[u'india', u'year', u'pakistantest', u'freez']
[u'india', u'hold', u'talk', u'kashmiri', u'separatist']
[u'indi', u'driver', u'shock', u'death', u'crash']
[u'indi', u'support', u'car', u'track']
[u'injuri', u'forc', u'newcastl', u'unit', u'younger']
[u'injuri', u'newcastl', u'boy']
[u'interest', u'parti', u'urg', u'regist', u'mediat']
[u'iran', u'hand', u'nuclear', u'declar', u'say']
[u'iran', u'hand', u'nuclear', u'document', u'offici']
[u'iraqi', u'famili', u'plead', u'help', u'leav', u'australia']
[u'iraqi', u'govern', u'council', u'plead']
[u'iraqi', u'polic', u'bomb', u'baghdad']
[u'hear', u'illawarra', u'unfair', u'dismiss', u'case']
[u'israel', u'deni', u'target', u'palestinian', u'civilian']
[u'isra', u'court', u'lift', u'order', u'hezbollah']
[u'japan', u'rest', u'fiji', u'clash']
[u'john', u'clear', u'resum', u'train']
[u'juri', u'dismiss', u'minist', u'defam', u'case']
[u'kill', u'journalist', u'ivori', u'coast', u'intent']
[u'lake', u'boga', u'suffer', u'algal', u'problem']
[u'lawyer', u'air', u'china', u'censorship', u'concern']
[u'lloyd', u'bemoan', u'death', u'myth']
[u'main', u'road', u'find', u'sign', u'blame', u'cross']
[u'accus', u'machet', u'incid']
[u'charg', u'attempt', u'murder']
[u'net', u'deceas', u'granni', u'pension', u'year']
[u'plead', u'guilti', u'murder', u'wife']
[u'sentenc', u'threaten', u'kill', u'polic']
[u'mayor', u'back', u'aerospac', u'firm', u'townsvill', u'job']
[u'mayor', u'water', u'call', u'govt', u'probe']
[u'mcgrath', u'mend']
[u'melbourn', u'host', u'sexual', u'slaveri', u'confer']
[u'gibson', u'sign', u'distribut', u'deal', u'disput']
[u'sentenc', u'year', u'jail', u'term', u'murder']
[u'microwav', u'cook', u'zap', u'away', u'nutrient', u'studi']
[u'mine', u'compani', u'announc', u'record', u'iron', u'haul']
[u'minist', u'question', u'telstra', u'staff', u'sack']
[u'govt', u'support', u'industri', u'wind']
[u'ask', u'bush', u'protest', u'behav']
[u'rais', u'highway', u'spend', u'question']
[u'namibian', u'coach', u'say', u'need', u'reform']
[u'group', u'seek', u'medicar', u'fund', u'boost']
[u'zealand', u'impress', u'western']
[u'zealand', u'unhappi', u'underdog', u'fleme']
[u'korean', u'offic', u'western', u'prison', u'camp']
[u'sight', u'industri', u'woe']
[u'player', u'rep', u'sydney', u'talk']
[u'govt', u'promis', u'land', u'clear', u'result']
[u'govt', u'review', u'train', u'servic', u'protest']
[u'watchdog', u'dismiss', u'airlin', u'merger', u'plan']
[u'opposit', u'alarm', u'youth', u'unemploy', u'stat']
[u'oscar', u'nomin', u'songwrit', u'dead']
[u'palestinian', u'film', u'give', u'second', u'chanc', u'oscar']
[u'palestinian', u'gunman', u'kill', u'firefight']
[u'park', u'servic', u'probe', u'tree', u'poison']
[u'plan', u'develop', u'harbour', u'boat', u'precinct']
[u'plane', u'investig', u'possibl', u'sight', u'miss']
[u'entertain', u'bush', u'lodg', u'barbequ']
[u'push', u'swift', u'resolut', u'hick', u'habib']
[u'public', u'warn', u'dont', u'vandalis', u'mahathir', u'banner']
[u'polic', u'hunt', u'servic', u'station', u'knife', u'bandit']
[u'polic', u'label', u'anti', u'bush', u'protest', u'milit']
[u'polic', u'surround', u'protest', u'outsid', u'embassi']
[u'potato', u'chip', u'raki', u'cigarett', u'ador', u'turkish']
[u'govt', u'accus', u'gag', u'indigen', u'child', u'agenc']
[u'govt', u'call', u'earli', u'drought', u'talk']
[u'govt', u'say', u'tree', u'clear', u'compens', u'fair']
[u'reef', u'valu', u'surpris', u'kemp']
[u'research', u'project', u'get', u'mix', u'support']
[u'resid', u'meatwork', u'entitl', u'push']
[u'restrict', u'help', u'rais', u'water', u'awar']
[u'welcom', u'jail', u'arsonist']
[u'drug', u'charg', u'delay']
[u'rise', u'dollar', u'push', u'market']
[u'riverina', u'tourism', u'spend', u'bounc']
[u'roman', u'amphitheatr', u'unearth', u'germani']
[u'romania', u'demoralis', u'wallabi', u'thrash', u'say']
[u'rowdi', u'recept', u'expect', u'minist']
[u'rugbi', u'world', u'test', u'drug']
[u'firm', u'land', u'contract', u'rebuild', u'iraqi']
[u'sartor', u'launch', u'bega', u'valley', u'sewerag', u'scheme']
[u'woman', u'claim', u'miss', u'world', u'australia', u'titl']
[u'schuettler', u'cruis', u'petersburg']
[u'scientist', u'identifi', u'gene', u'link']
[u'scientist', u'probe', u'mysteri', u'major', u'chromosom']
[u'separ', u'egyptian', u'twin', u'minor', u'complic']
[u'seven', u'face', u'court', u'abalon', u'charg']
[u'chang', u'anim', u'obey', u'law', u'natur']
[u'sign', u'deter', u'truck', u'mildura', u'citi', u'centr']
[u'schoolboy', u'hospitalis', u'take', u'viagra']
[u'southern', u'cross', u'revamp', u'local', u'news', u'bulletin']
[u'south', u'west', u'sport', u'club', u'merg']
[u'spammer', u'face', u'million', u'dollar', u'fin']
[u'state', u'seek', u'commonwealth', u'clariti', u'project']
[u'stiff', u'disciplin', u'schoolboy', u'viagra', u'prank']
[u'student', u'converg', u'albani']
[u'student', u'urg', u'refrain', u'muck']
[u'sugar', u'boss', u'reject', u'price', u'plung', u'predict']
[u'tamworth', u'leagu', u'club', u'post', u'record', u'profit']
[u'tamworth', u'stalwart', u'die', u'age']
[u'tamworth', u'target', u'build', u'sale']
[u'telstra', u'deal', u'email', u'virus']
[u'hama', u'member', u'critic', u'injur', u'nablus']
[u'tiger', u'tri', u'equal', u'consecut', u'mark']
[u'toowoomba', u'raid', u'uncov', u'cash', u'drug']
[u'tourism', u'industri', u'receiv', u'inject']
[u'trescothick', u'thorp', u'help', u'england', u'crucial', u'lead']
[u'injur', u'brunswick', u'blaze']
[u'polic', u'suspend', u'racism', u'alleg']
[u'union', u'back', u'move', u'strip', u'compani', u'mine', u'leas']
[u'union', u'plan', u'carter', u'holt', u'harvey', u'strike']
[u'unit', u'chelsea', u'celebr', u'itali', u'mourn']
[u'secur', u'failur', u'blame', u'baghdad', u'blast']
[u'quartet', u'test', u'posit', u'design', u'steroid']
[u'north', u'korea', u'secur', u'guarante']
[u'contribut', u'fund', u'iraq']
[u'second', u'place', u'world', u'solar', u'challeng']
[u'polic', u'recheck', u'lead', u'miss', u'toddler']
[u'score', u'second', u'place', u'world', u'solar', u'challeng']
[u'virgin', u'sign', u'year', u'deal', u'adelaid', u'airport']
[u'council', u'lobbi', u'afghan', u'asylum', u'seeker']
[u'govt', u'reject', u'feder', u'build', u'reform', u'plan']
[u'wallabi', u'unit', u'despit', u'reshuffl', u'giffin']
[u'watchdog', u'llama', u'rescu', u'crew', u'aid']
[u'waugh', u'back', u'bowl', u'rotat', u'polici']
[u'weak', u'dollar', u'push', u'market', u'higher']
[u'wentworth', u'resid', u'warn', u'boil', u'drink', u'water']
[u'wheatbelt', u'shire', u'catch', u'catch', u'situat']
[u'wheat', u'industri', u'welcom', u'thai', u'free', u'trade', u'deal']
[u'wine', u'corp', u'probe', u'riverland', u'wineri', u'label']
[u'wodonga', u'council', u'consid', u'transport', u'option']
[u'woodsid', u'drop', u'south', u'east', u'plan']
[u'work', u'ban', u'start', u'school']
[u'worldwid', u'drug', u'hunt', u'strip', u'athen', u'track']
[u'fish', u'speci', u'ocean', u'survey']
[u'summer', u'ozon', u'pollut', u'europ', u'hit', u'record']
[u'win', u'media', u'peac', u'award']
[u'adelaid', u'continu', u'dream', u'start']
[u'benalla', u'plant', u'go', u'great', u'gun', u'ammo']
[u'back', u'test', u'drug']
[u'agforc', u'presid', u'call', u'beef', u'tariff']
[u'alic', u'council', u'offer', u'master', u'game', u'fund']
[u'black', u'jack', u'tonga', u'game']
[u'black', u'world', u'dope', u'test']
[u'black', u'loos', u'tonga']
[u'allow', u'pacif', u'island', u'nation', u'fat']
[u'alpin', u'trial', u'armstrong', u'record', u'tour']
[u'urg', u'return', u'hospit', u'public', u'ownership']
[u'amnesti', u'critic', u'pakistan', u'jail', u'children']
[u'buy', u'nation', u'bank']
[u'hail', u'deal', u'creat', u'region', u'leader']
[u'arctic', u'melt', u'worrisom', u'rate', u'nasa']
[u'arm', u'surpris', u'gold', u'coast', u'bank', u'staff']
[u'arsenal', u'lead', u'pressur', u'worri', u'week']
[u'galleri', u'catalogu', u'high', u'tech']
[u'finish', u'week']
[u'aussi', u'intern', u'rule', u'seri']
[u'australia', u'china', u'start', u'free', u'trade', u'negoti']
[u'australia', u'china', u'start', u'free', u'trade', u'talk']
[u'australian', u'scientist', u'global', u'marin', u'census']
[u'australia', u'pledg', u'iraq']
[u'author', u'issu', u'licenc', u'bulk', u'grain']
[u'bangladesh', u'continu', u'frustrat', u'england']
[u'baptism', u'ail', u'inter', u'face', u'roma']
[u'beckham', u'pull', u'hamstr']
[u'bega', u'chees', u'win', u'export', u'award']
[u'bendigo', u'bank', u'branch', u'open', u'robe']
[u'bendigo', u'polic', u'crack', u'drink', u'drive']
[u'cat', u'room', u'monarto']
[u'crowd', u'expect', u'warwick', u'rodeo']
[u'blair', u'govt', u'allow', u'asylum', u'famili', u'stay']
[u'blaster', u'bat', u'hand', u'british', u'davi', u'rein']
[u'booth', u'get', u'scotland', u'incent', u'shoot', u'celtic']
[u'brack', u'back', u'crackdown', u'polic', u'file', u'issu']
[u'brisban', u'kill', u'confront', u'polic']
[u'bryant', u'make', u'season', u'debut', u'laker']
[u'bryant', u'start', u'season', u'game']
[u'bush', u'visit', u'pearl', u'harbour']
[u'businessman', u'face', u'drug', u'charg']
[u'foster', u'carer', u'central', u'western']
[u'casey', u'control', u'madrid', u'lyle', u'struggl']
[u'central', u'australian', u'fire', u'destroy', u'luxuri', u'resort']
[u'chang', u'afoot', u'water', u'resourc', u'manag']
[u'chapman', u'valley', u'shire', u'look', u'long', u'term', u'water']
[u'child', u'killer', u'sentenc', u'sydney', u'court']
[u'child', u'protect', u'worker', u'protest']
[u'china', u'sign', u'gorgon', u'export', u'deal']
[u'clinton', u'broker', u'deal', u'benefit', u'aid', u'suffer']
[u'communiti', u'radio', u'licenc', u'glen', u'inn']
[u'concern', u'increas', u'indigen', u'rate']
[u'concord', u'take', u'flight']
[u'want', u'protect', u'moreton']
[u'costa', u'clarifi', u'book', u'polici']
[u'council', u'concern', u'hospit', u'reduct']
[u'council', u'crisi', u'deepen', u'mayor', u'urg', u'resign']
[u'council', u'face', u'legal', u'settl', u'offic']
[u'council', u'merger', u'move', u'closer', u'realiti']
[u'council', u'rethink', u'mall', u'decis']
[u'council', u'road', u'feder', u'fund']
[u'coupl', u'escap', u'injuri', u'crash', u'hous']
[u'csiro', u'wait', u'alcoa', u'green', u'light', u'wagerup']
[u'death', u'forc', u'town', u'alcohol', u'abus']
[u'democrat', u'decri', u'green', u'bush', u'stunt']
[u'dengu', u'fever', u'effort', u'review', u'north']
[u'dept', u'stand', u'decis', u'disendors', u'landcar']
[u'derbi', u'get', u'readi', u'river', u'derbi']
[u'dispirit', u'kafelnikov', u'bow', u'petersburg']
[u'diver', u'continu', u'search', u'miss']
[u'dont', u'offend', u'beatti', u'tell', u'redneck']
[u'reject', u'setback', u'produc']
[u'epic', u'extend', u'deadlin', u'pipelin', u'sale']
[u'fast', u'love', u'aust', u'coupl', u'concord', u'mile']
[u'fear', u'tourist', u'spot', u'face', u'water', u'pollut', u'woe']
[u'feder', u'upset', u'serv', u'ljubic']
[u'fight', u'continu', u'invalid', u'pension', u'home']
[u'fijian', u'fli', u'coach', u'want']
[u'fiji', u'worri', u'rugbi', u'player', u'drain']
[u'nation', u'elect', u'secur', u'council']
[u'detect', u'serv', u'jail', u'time', u'sell']
[u'fossett', u'aim', u'solo', u'round', u'world', u'record']
[u'kill', u'spate', u'road', u'accid']
[u'franc', u'scotland', u'play', u'avoid', u'wallabi']
[u'gibb', u'miss', u'centuri', u'pakistan', u'domin']
[u'ginepri', u'undaunt', u'dent', u'stockholm']
[u'gladston', u'smelter', u'sign', u'china', u'deal']
[u'govt', u'open', u'stage', u'bendigo', u'busi', u'park']
[u'govt', u'offload', u'strand', u'sheep', u'eritrea']
[u'green', u'claim', u'chines', u'agent', u'vet', u'parliament', u'guest']
[u'green', u'senat', u'lock', u'parliament']
[u'group', u'slam', u'govt', u'fund', u'kimberley', u'river', u'studi']
[u'group', u'gaug', u'rail', u'servic', u'futur']
[u'gunner', u'lose', u'vieira', u'fortnight']
[u'hamilton', u'pool', u'plan', u'continu']
[u'handler', u'head', u'tiger', u'rescu', u'mission']
[u'harradin', u'boycott', u'parliamentari', u'address']
[u'hauritz', u'watson', u'clear', u'play', u'dayer']
[u'health', u'servic', u'highlight', u'doctor', u'registr']
[u'historian', u'recommend', u'rescind', u'pulitz']
[u'howard', u'ask', u'china', u'work', u'taiwan']
[u'howard', u'hail', u'potenti', u'export', u'deal', u'china']
[u'human', u'right', u'agenda', u'visit']
[u'hundr', u'protest', u'iraq', u'outsid']
[u'immens', u'serevi', u'world']
[u'immigr', u'raid', u'leav', u'grower', u'short', u'staff']
[u'indi', u'car', u'street', u'surfer']
[u'investig', u'hand', u'fatal', u'crash', u'result']
[u'irrig', u'water', u'alloc', u'boost']
[u'itali', u'brace', u'black', u'friday', u'nation', u'strike']
[u'itali', u'captain', u'troncon', u'face', u'wale']
[u'itali', u'spotlight', u'press', u'freedom', u'studi']
[u'japan', u'commit', u'iraq', u'reconstruct', u'fund']
[u'johnson', u'sympathi', u'weaken', u'samoa']
[u'johnson', u'urg', u'team', u'rememb', u'histori']
[u'junquiera', u'claim', u'provision', u'indi', u'pole']
[u'jupit', u'merg', u'tabcorp']
[u'kalgoorli', u'host', u'indigen', u'head', u'govt']
[u'kalgoorli', u'wildcat', u'pirat', u'clash', u'live']
[u'kluivert', u'rule', u'arsenal', u'premiership']
[u'kyli', u'use', u'sexi', u'bardot', u'look', u'album']
[u'land', u'council', u'endors', u'pearl', u'north', u'east', u'darwin']
[u'landhold', u'welcom', u'assist']
[u'laser', u'hit', u'spot', u'acn', u'suffer']
[u'legal', u'action', u'consid', u'centaur', u'case']
[u'lib', u'choos', u'ballarat', u'candid']
[u'longford', u'meatwork', u'accept', u'govt', u'assist']
[u'longford', u'meatwork', u'consid', u'govt', u'offer']
[u'lonhro', u'best', u'ride', u'beadman']
[u'madam', u'chiang', u'shek', u'die', u'age']
[u'magistr', u'call', u'minist', u'reunit', u'indonesian']
[u'malaysian', u'visit']
[u'die', u'northam']
[u'jail', u'steal', u'worth']
[u'face', u'court', u'shop', u'assault']
[u'marlin', u'away', u'world', u'seri', u'glori']
[u'mather', u'recal', u'scotland', u'face', u'franc']
[u'upbeat', u'insur', u'fund']
[u'miller', u'complet', u'hous', u'japan']
[u'test', u'newcastl', u'knight', u'captain']
[u'mother', u'jail', u'year', u'kill', u'children']
[u'fear', u'sale', u'talk', u'delay', u'gippsland', u'rail']
[u'want', u'chanc', u'parti', u'address', u'bush']
[u'gambier', u'firm', u'win', u'seven', u'trade', u'crusad']
[u'nairn', u'unhappi', u'green', u'bush', u'outburst']
[u'namibia', u'second', u'stringer', u'clash']
[u'nasa', u'scientist', u'warn', u'space', u'station', u'pose', u'risk']
[u'newcastl', u'brand', u'union', u'action', u'polit']
[u'newcastl', u'unit', u'hungri']
[u'newcastl', u'wari', u'fire', u'adelaid']
[u'mine', u'rescu', u'committe', u'meet', u'today']
[u'probe', u'launch', u'girl', u'death']
[u'program', u'focus', u'indigen', u'teenag']
[u'north', u'west', u'prepar', u'restrict']
[u'nowra', u'glimps', u'melbourn']
[u'coal', u'train', u'derail', u'disrupt', u'passeng']
[u'govt', u'reject', u'snowi', u'council', u'plan']
[u'polic', u'offic', u'face', u'indec', u'assault', u'charg']
[u'welcom', u'tourism', u'fund', u'boost']
[u'oberon', u'lobbi', u'group', u'argu', u'council']
[u'ogilvi', u'place', u'florida']
[u'opposit', u'call', u'urgent', u'polic', u'recruit']
[u'pair', u'deni', u'rap', u'girl', u'court', u'hear']
[u'pair', u'south', u'coast', u'crash']
[u'make', u'men', u'tournament']
[u'palestinian', u'gunman', u'kill', u'isra', u'gaza']
[u'palestinian', u'kill', u'ramallah', u'blast']
[u'plan', u'health', u'reform', u'high', u'summit', u'agenda']
[u'criticis', u'ignor', u'trooper', u'widow']
[u'tri', u'whitewash', u'australian', u'histori', u'labor']
[u'polic', u'home', u'intern', u'drug', u'syndic']
[u'polic', u'shoot', u'steal']
[u'polic', u'search', u'toddler']
[u'polic', u'test', u'hunt', u'continu', u'miss']
[u'pope', u'cancel', u'mass', u'rest', u'vatican']
[u'power', u'station', u'oper', u'fin', u'worker', u'death']
[u'presid', u'address', u'parliament']
[u'protest', u'forc', u'rais', u'issu', u'bush', u'hick']
[u'public', u'liabil', u'threaten', u'australia', u'lifesav']
[u'govt', u'take', u'court', u'action', u'seiz', u'mine', u'leas']
[u'govt', u'urg', u'river']
[u'report', u'downgrad', u'health', u'coast', u'river']
[u'riverland', u'council', u'reject', u'merger', u'plan']
[u'romania', u'launceston', u'rugbi', u'world']
[u'rubber', u'face', u'funnyman', u'carrey', u'go', u'bionic']
[u'russia', u'mourn', u'admit', u'mistak', u'year', u'dead']
[u'safeti', u'revamp', u'warrego', u'highway', u'section']
[u'sale', u'greyhound', u'race', u'night', u'despit', u'club']
[u'lotteri', u'demand', u'dairi', u'competit']
[u'optimist', u'mine', u'prospect']
[u'timber', u'worker', u'strike', u'south', u'east']
[u'scallop', u'fisherman', u'downcast', u'despit', u'season', u'extens']
[u'scot', u'ponder', u'lesli', u'appeal']
[u'scrappi', u'springbok', u'overcom', u'brave', u'georgia']
[u'senat', u'oppos', u'telstra', u'sale']
[u'senat', u'welcom', u'return', u'news', u'servic']
[u'sheep', u'shipment', u'arriv', u'eritrea']
[u'warrnambool']
[u'speaker', u'bar', u'parliament', u'guest']
[u'student', u'industri', u'benefit']
[u'student', u'restraint', u'muck', u'celebr']
[u'studi', u'show', u'spam', u'turn', u'away', u'email', u'user']
[u'super', u'slot', u'japan', u'slam', u'fiji']
[u'surg', u'wall', u'height', u'final', u'determin']
[u'swiss', u'sail', u'australian', u'desert']
[u'tamworth', u'farewel', u'popular', u'resid']
[u'tandou', u'unprofit', u'farm', u'oper']
[u'thousand', u'expect', u'farewel', u'chopper', u'crash']
[u'threat', u'pose', u'drug', u'menac', u'divid', u'coach']
[u'peopl', u'dead', u'separ', u'incid', u'brisban']
[u'timber', u'worker', u'strike', u'enterpris', u'bargain']
[u'townsvill', u'mayor', u'support', u'happi', u'valley', u'safe', u'place']
[u'turkey', u'alpay', u'quit', u'villa']
[u'isra', u'armi', u'offic', u'hold', u'take', u'bribe']
[u'employ', u'centr', u'relaunch']
[u'union', u'vow', u'mudge', u'abattoir', u'fight']
[u'aust', u'year', u'expert']
[u'patent', u'offic', u'hit', u'shock', u'barrag']
[u'senat', u'vote', u'cuba', u'travel']
[u'soldier', u'kill', u'northern', u'iraq', u'attack']
[u'vail', u'prais', u'chines', u'deal']
[u'valencia', u'deportivo', u'fight', u'lead']
[u'waff', u'rule', u'dairi', u'industri', u'regul']
[u'irrig', u'welcom', u'review']
[u'wallabi', u'aim', u'post', u'cricket', u'score']
[u'wallabi', u'favourit', u'french', u'flanker', u'magn']
[u'wallabi', u'plan', u'match', u'combin', u'pacif']
[u'pastoralist', u'control', u'croc', u'cull']
[u'warrior', u'rout', u'redback']
[u'stop', u'skeleton', u'weed', u'quarantin']
[u'wildcat', u'hawk', u'bullet', u'sixer', u'win']
[u'wineri', u'win', u'export', u'honour']
[u'woman', u'succumb', u'crash', u'injuri']
[u'world', u'start', u'test']
[u'worm', u'live', u'longer']
[u'yacht', u'search', u'crew', u'member', u'call']
[u'youth', u'jobless', u'rate', u'reach', u'high']
[u'zimbabw', u'white', u'farmer', u'land', u'report']
[u'accus', u'japanes', u'stalker', u'sue', u'princess']
[u'black', u'back', u'mend']
[u'russian', u'miner', u'aliv', u'rescuer']
[u'wallabi', u'tri']
[u'home', u'power']
[u'american', u'ralli', u'continu', u'occup']
[u'armi', u'exercis', u'take', u'place', u'region']
[u'asterix', u'spirit', u'stem', u'halloween', u'invas', u'franc']
[u'kill', u'swiss', u'train', u'collid']
[u'attack', u'leav', u'soldier', u'dead', u'iraq']
[u'beatti', u'admit', u'foster', u'care', u'inquiri', u'polit']
[u'blue', u'mountain', u'hailstorm']
[u'bourdai', u'snatch', u'indi', u'pole']
[u'bull', u'tame', u'tiger', u'gabba']
[u'california', u'win', u'anti', u'spam', u'judgment']
[u'casey', u'move', u'clear', u'madrid']
[u'cathol', u'church', u'abus', u'procedur', u'fail', u'bishop']
[u'chaucer', u'go', u'onlin']
[u'china', u'presid', u'arriv', u'zealand']
[u'chines', u'leader', u'begin', u'visit']
[u'chines', u'space', u'capsul', u'public', u'display']
[u'chopstick', u'caus', u'arthriti', u'report']
[u'cia', u'intellig', u'sloppi', u'committe']
[u'citylink', u'burnley', u'tunnel', u'close', u'temporarili']
[u'clean', u'begin', u'sever', u'storm']
[u'close', u'zimbabw', u'daili', u'street']
[u'concord', u'make', u'final', u'touchdown']
[u'congo', u'militia', u'resum', u'plunder', u'foreign', u'forc']
[u'court', u'reinstat', u'zimbabwean', u'newpap', u'licenc']
[u'crew', u'probe', u'luxuri', u'uluru', u'resort']
[u'deaf', u'plead', u'govt', u'fund']
[u'debtor', u'robber', u'sentenc', u'earn', u'jail', u'time']
[u'diana', u'photograph', u'trial', u'privaci', u'case']
[u'donor', u'pledg', u'billion', u'iraq']
[u'drug', u'test', u'issu', u'sport', u'confer']
[u'east', u'african', u'leader', u'impetus', u'somalia']
[u'elvi', u'rule', u'forb', u'list', u'earn', u'dead', u'celeb']
[u'england', u'head', u'test', u'victori']
[u'england', u'take', u'test', u'bangladesh']
[u'enqvist', u'track', u'fourth', u'stockholm', u'titl']
[u'eritrea', u'accept', u'strand', u'sheep', u'gift']
[u'expert', u'fail', u'identifi', u'best', u'treat', u'sar']
[u'feder', u'unsur', u'pari', u'master', u'particip']
[u'field', u'omagh', u'captur', u'plate']
[u'field', u'omagh', u'score', u'surpris', u'plate']
[u'fowler', u'clubhous', u'leader', u'madrid']
[u'french', u'demolish', u'scot', u'record']
[u'futur', u'outback', u'plan', u'unveil', u'today']
[u'geomagnet', u'storm', u'hit', u'earth', u'tweak', u'power', u'grid']
[u'ghost', u'festiv', u'rememb', u'miner', u'day', u'go']
[u'giant', u'strong', u'breaker']
[u'googl', u'eye', u'stock', u'market', u'float']
[u'greenwood', u'rejoin', u'england', u'squad']
[u'hail', u'storm', u'sweep']
[u'health', u'summit', u'focus', u'indigen', u'servic']
[u'hemingway', u'honour', u'usual', u'cuba', u'drink', u'spot']
[u'henin', u'hardenn', u'look', u'forward', u'face', u'william']
[u'heroin', u'support', u'servic', u'warn', u'client', u'care']
[u'hollywood', u'studio', u'awash', u'follow']
[u'depart', u'confid', u'futur', u'relat']
[u'leav', u'australia']
[u'hunter', u'rail', u'servic', u'reopen', u'sunday']
[u'form', u'schuettler', u'eye', u'titl', u'month']
[u'ingal', u'speed', u'victori']
[u'jone', u'scotch', u'disharmoni', u'talk']
[u'legisl', u'assembl', u'open', u'public']
[u'liberian', u'rebel', u'demand', u'resign', u'countri']
[u'life', u'save', u'associ', u'address', u'insur', u'issu']
[u'lithuanian', u'presid', u'visit', u'white', u'hous']
[u'lonhro', u'hottest', u'favourit']
[u'madam', u'chiang', u'shek', u'die']
[u'mahathir', u'hit', u'australian', u'politician']
[u'major', u'blackout', u'fierc', u'storm', u'whip']
[u'malaysian', u'domin', u'solar', u'cycl', u'race']
[u'assault', u'flemington']
[u'dead', u'near', u'walk', u'track']
[u'hospitalis', u'stab', u'hand']
[u'menzi', u'school', u'health', u'join', u'charl', u'darwin']
[u'moya', u'take', u'penultim', u'master', u'spot']
[u'romanc', u'win', u'excel', u'award']
[u'nalbandian', u'set', u'roddick', u'clash', u'basel']
[u'drug', u'hope', u'million', u'hepat', u'victim']
[u'look', u'aussi', u'attack', u'face', u'tendulkar', u'test']
[u'mental', u'health', u'law', u'propos']
[u'burn', u'death', u'kenya', u'truck', u'accid']
[u'player', u'associ', u'hail', u'promis', u'talk']
[u'parti', u'fight', u'farm', u'credenti']
[u'teacher', u'consid', u'action', u'wage', u'claim']
[u'govt', u'defend', u'propos', u'reform']
[u'eighth', u'korean', u'men', u'tour', u'event']
[u'pakistan', u'deport', u'brother', u'hambali']
[u'patient', u'shoot', u'dead', u'ambul', u'hijack']
[u'attack', u'donor', u'corrupt', u'conserv']
[u'polic', u'investig', u'woman', u'collaps']
[u'power', u'marconi']
[u'princ', u'rebuk', u'diana', u'butler', u'betray']
[u'pub', u'unhappi', u'propos', u'smoke', u'law']
[u'pull', u'dodgi', u'wallabi', u'work', u'strategi']
[u'pyongyang', u'readi', u'consid', u'secur', u'deal']
[u'polic', u'hunt', u'runaway', u'motorist']
[u'race', u'fan', u'turn', u'forc', u'indi']
[u'report', u'give', u'wagerup', u'clear']
[u'reptil', u'return', u'natur', u'habitat']
[u'republican', u'welcom']
[u'rescuer', u'russian', u'aliv']
[u'road', u'safeti', u'forum', u'focus', u'pacif', u'highway']
[u'russian', u'jailbird', u'free', u'song']
[u'russian', u'tycoon', u'arrest']
[u'scientist', u'search', u'tasman', u'speci']
[u'separ', u'egyptian', u'twin', u'reunit']
[u'shakira', u'join', u'celebr', u'children', u'right', u'champion']
[u'sheep', u'unload', u'eritrea']
[u'singh', u'take', u'lead', u'ogilvi', u'eighth']
[u'road', u'accid']
[u'slater', u'top', u'world', u'rank']
[u'south', u'africa', u'ask', u'britain', u'support']
[u'struggl', u'lyle', u'forc', u'year', u'end']
[u'submarin', u'worker', u'suspend', u'strike']
[u'sydney', u'council', u'turn', u'beach', u'shower']
[u'taliban', u'resurg', u'undermin', u'afghan', u'work']
[u'tampa', u'refuge', u'begin', u'life', u'victoria']
[u'fish', u'expert', u'want', u'carp', u'sterilis']
[u'review', u'motorbik', u'law']
[u'teenag', u'honour', u'life', u'save', u'societi']
[u'teenag', u'kill', u'skateboard', u'accid']
[u'thousand', u'evacu', u'fire', u'menac', u'california']
[u'thousand', u'flee', u'californian', u'fire']
[u'dead', u'earli', u'snow', u'catch', u'austria', u'germani']
[u'dead', u'eastern', u'indonesia', u'explos', u'polic']
[u'toddler', u'injur']
[u'tournament', u'mind', u'final', u'hold', u'darwin']
[u'transfer', u'sheep', u'eritrean', u'soil', u'continu']
[u'polic', u'releas', u'hold', u'skydiv', u'murder']
[u'warn', u'saudi', u'travel']
[u'unbeaten', u'farhat', u'centuri', u'put', u'pakistan', u'charg']
[u'britain', u'warn', u'immin', u'threat', u'saudi']
[u'cattlemen', u'resolv', u'aust', u'free', u'trade', u'beef']
[u'vietnam', u'seek', u'dead']
[u'vanston', u'urg', u'grant', u'schoolgirl', u'visa']
[u'venezuelan', u'polic', u'kill', u'seven', u'colombian', u'drug']
[u'polic', u'search', u'attack', u'fatal', u'shoot']
[u'wada', u'call', u'sport', u'test', u'drug']
[u'fumbl', u'deal', u'royalti']
[u'govt', u'accus', u'health', u'review', u'wast']
[u'wale', u'itali', u'face', u'pool', u'second', u'spot']
[u'wale', u'win', u'quarter', u'final', u'berth']
[u'wallabi', u'namibia']
[u'wallabi', u'work', u'strategi', u'namibia']
[u'teacher', u'criticis', u'state', u'tactic']
[u'toddler', u'intens', u'care', u'driveway']
[u'probe', u'indigen', u'alcohol', u'abus']
[u'wheat', u'board', u'reject', u'saddam', u'kickback', u'claim']
[u'world', u'collid', u'england', u'face', u'samoa']
[u'zimbabwean', u'newspap', u'staff', u'arrest']
[u'escap', u'dimboola', u'hotel']
[u'dead', u'colombia', u'vote', u'rebel', u'fight']
[u'recruit', u'polic', u'offic']
[u'abbott', u'flag', u'bulk', u'bill', u'chang']
[u'actor', u'keep', u'philippin', u'suspens', u'poll']
[u'franc', u'pilot', u'grill', u'polic', u'say']
[u'begin', u'demerg', u'hard', u'sell']
[u'ancient', u'mummi', u'return', u'egypt']
[u'asio', u'carri', u'search', u'deport']
[u'aussi', u'retain', u'squash', u'world', u'team', u'titl', u'bust']
[u'australian', u'shoot', u'isra', u'protest']
[u'baghdad', u'hotel', u'rocket']
[u'blast', u'hear', u'iraq', u'hotel']
[u'blaze', u'continu', u'rage', u'near', u'angel', u'suburb']
[u'bourdai', u'indi', u'pole', u'traci', u'eye', u'seri']
[u'bubbl', u'celebr', u'year', u'sugarfest']
[u'californian', u'evacu', u'ahead']
[u'cambodian', u'star', u'mend', u'shoot']
[u'canada', u'warn', u'travel', u'saudi', u'arabia']
[u'cancer', u'awar', u'fundrais', u'hold']
[u'celtic', u'capitalis', u'ranger', u'draw']
[u'chelsea', u'unit', u'crash', u'home']
[u'chievo', u'climb', u'empoli']
[u'china', u'earthquak', u'injur', u'seven', u'peopl']
[u'chirac', u'pledg', u'help', u'poor', u'farmer', u'fairer', u'deal']
[u'christ', u'cathedr', u'bid', u'spot', u'heritag', u'list']
[u'clean', u'begin', u'storm', u'south', u'east']
[u'clumsi', u'dutch', u'robber', u'smash', u'bank', u'lose', u'loot']
[u'communiti', u'group', u'help', u'refuge', u'seeker']
[u'contact', u'satellit', u'midori']
[u'daylight', u'save', u'start']
[u'deportivo', u'beat', u'valencia', u'spain']
[u'downer', u'want', u'busi', u'capitalis', u'visit']
[u'egyptian', u'twin', u'look']
[u'england', u'surviv', u'samoa', u'scare']
[u'ethiopia', u'receiv', u'million', u'global', u'health', u'fund']
[u'european', u'north', u'african', u'polic', u'chief', u'discuss']
[u'feder', u'unsur', u'pari', u'master', u'particip']
[u'fish', u'reel', u'enqvist', u'hook', u'final', u'berth']
[u'kill', u'injur', u'china', u'earthquak']
[u'sentenc', u'death', u'chad']
[u'fourteen', u'face', u'trial', u'mont', u'blanc', u'tunnel']
[u'franc', u'garbajosa', u'leav', u'world']
[u'french', u'german', u'protest', u'nuclear', u'fuel']
[u'german', u'troop', u'north', u'east', u'afghanistan']
[u'germani', u'fischer', u'tour', u'africa']
[u'glori', u'olymp']
[u'govt', u'deni', u'appeal', u'money', u'hospit']
[u'grand', u'central', u'termin', u'celebr', u'anniversari']
[u'grenad', u'chopper', u'iraq']
[u'gulf', u'arab', u'start', u'holi', u'month', u'ramadan', u'monday']
[u'hail', u'storm', u'caus', u'damag', u'gold', u'coast']
[u'harrison', u'admit', u'posit', u'test', u'ban', u'stimul']
[u'harri', u'potter', u'weav', u'magic', u'germani', u'homeless']
[u'health', u'group', u'push', u'stronger', u'smoke', u'law']
[u'woo', u'trade', u'deal']
[u'india', u'set', u'aussi', u'huge', u'total']
[u'ingal', u'complet', u'doubl']
[u'irish', u'edg', u'puma', u'tens', u'tussl']
[u'irish', u'smart', u'argentina', u'defeat']
[u'israel', u'blow', u'gaza', u'build']
[u'israel', u'raze', u'gaza', u'build']
[u'italian', u'judg', u'order', u'crucifix', u'wall']
[u'sing', u'danc', u'lygon', u'street']
[u'jabiluka', u'owner', u'plan', u'regener', u'celebr']
[u'jack', u'hope', u'play', u'wale', u'game']
[u'jade', u'japanes', u'look', u'avoid', u'wooden', u'spoon']
[u'jone', u'home', u'break', u'fibula']
[u'jone', u'play', u'wallabi', u'romp']
[u'kangaroo', u'limp', u'warm', u'franc']
[u'katich', u'guid', u'blue', u'victori']
[u'king', u'continu', u'win', u'streak']
[u'labor', u'warn', u'rush', u'trade', u'deal']
[u'life', u'sentenc', u'refuge', u'drown']
[u'light', u'aircraft', u'crash', u'ocean']
[u'luxuri', u'resort', u'destroy', u'rebuild']
[u'shoot', u'dead', u'melbourn']
[u'church', u'abus', u'claim', u'predict']
[u'moroccan', u'polic', u'arrest', u'suspect', u'attack', u'group']
[u'motorcycl', u'club', u'rais', u'breast', u'cancer', u'awar']
[u'museum', u'overhaul', u'cost', u'million', u'report']
[u'nalbandian', u'down', u'roddick', u'argentin']
[u'ambul', u'aid', u'patient', u'comfort', u'level']
[u'polic', u'seek', u'overdu', u'rental']
[u'lawyer', u'men', u'legal', u'servic']
[u'solar', u'challeng', u'entrant', u'finish']
[u'occup', u'escap', u'injuri', u'crash']
[u'ogilvi', u'shot', u'florida']
[u'democrat', u'unhappi', u'medicar', u'packag']
[u'orascom', u'award', u'motorola', u'multi', u'million', u'dollar', u'iraq']
[u'claim', u'finish', u'men', u'event']
[u'plan', u'optometrist', u'prescrib', u'medic']
[u'seek', u'oversea', u'help', u'polic']
[u'polic', u'arrest', u'gold', u'coast', u'shoot']
[u'polic', u'charg', u'drug', u'relat', u'offenc']
[u'polic', u'prais', u'volunt', u'rescuer', u'action']
[u'polic', u'question', u'dead', u'skater', u'friend']
[u'polic', u'receiv', u'record', u'number', u'complaint']
[u'portugues', u'version', u'latest', u'harri', u'potter']
[u'premier', u'claim', u'govt']
[u'raulini', u'join', u'fiji', u'retir', u'turn']
[u'record', u'number', u'royal', u'hobart']
[u'reform', u'stabil', u'pact', u'review']
[u'regret', u'forget', u'wallabi', u'walker']
[u'rescuer', u'resum', u'save', u'miss', u'russian']
[u'rescuer', u'save', u'russian', u'miner']
[u'rooki', u'win', u'hail', u'interrupt', u'indi']
[u'russian', u'tycoon', u'hold', u'fraud']
[u'govt', u'push', u'kid', u'exercis', u'campaign']
[u'sargsian', u'meet', u'kuerten', u'russian', u'decid']
[u'saudi', u'rebuk', u'terror', u'warn']
[u'saudi', u'telecom', u'incom', u'percent']
[u'unit', u'church', u'make', u'abus', u'report', u'compulsori']
[u'search', u'continu', u'miss', u'plane']
[u'section', u'costal', u'park', u'complet']
[u'sheep', u'final', u'stop', u'unknown']
[u'small', u'trader', u'probe', u'sunday', u'open', u'pressur']
[u'storm', u'clean', u'continu']
[u'straeuli', u'put', u'bok', u'forward', u'notic']
[u'suspect', u'taliban', u'bomb', u'afghan', u'school']
[u'sydney', u'water', u'look', u'leak']
[u'syria', u'threaten', u'retali', u'israel', u'strike']
[u'boss', u'defend']
[u'taiwanes', u'march', u'independ', u'poll']
[u'thousand', u'anti', u'protest']
[u'traci', u'eye', u'seri']
[u'truss', u'name', u'team', u'monitor', u'anim', u'export']
[u'arrest', u'melbourn', u'shoot']
[u'english', u'base', u'player', u'fail', u'drug', u'test', u'report']
[u'tier', u'need', u'say', u'italian', u'coach']
[u'underdog', u'marlin', u'world', u'seri']
[u'say', u'taliban', u'retak', u'afghanistan']
[u'infant', u'fri', u'drink', u'soft', u'drink', u'studi']
[u'offici', u'escap', u'rocket', u'attack']
[u'support', u'bush', u'drop', u'poll']
[u'warn', u'bomb', u'threat', u'baghdad', u'hotel']
[u'govt', u'accus', u'skimp', u'child', u'health']
[u'victori', u'lift', u'west', u'brom', u'divis', u'summit']
[u'walmart', u'threaten', u'illeg', u'immigr']
[u'polic', u'probe', u'fatal', u'ralli', u'accid']
[u'rescuer', u'save', u'stricken', u'sailor']
[u'teacher', u'step', u'industri', u'action']
[u'wolfowitz', u'surviv', u'baghdad', u'rocket', u'attack']
[u'woodbridg', u'tie', u'doubl', u'record', u'stockholm']
[u'yemen', u'free', u'kuwaiti', u'question']
[u'zimbabw', u'paper', u'shut']
[u'face', u'attempt', u'murder', u'charg', u'break']
[u'action', u'group', u'reject', u'propos', u'road']
[u'adelaid', u'fin', u'child', u'porn']
[u'limit', u'stop', u'japanes', u'polit', u'veteran', u'run']
[u'airport', u'urg', u'qanta', u'boycott']
[u'want', u'medicar', u'rebat', u'rise']
[u'argentina', u'skipper', u'call', u'chang']
[u'argentina', u'reggiardo', u'grau', u'cite']
[u'asio', u'investig', u'qaeda', u'suspect', u'deport']
[u'atherton', u'farmer', u'welcom', u'drought', u'assist']
[u'attempt', u'murder', u'suspect', u'arrest']
[u'australian', u'detain', u'unruli', u'behaviour', u'plane']
[u'australia', u'media', u'freedom', u'rank', u'drop']
[u'author', u'launch', u'inquiri', u'ralli', u'death']
[u'award', u'honour', u'bunburi', u'senior']
[u'step', u'action', u'industri', u'manslaught']
[u'baghdad', u'bomb', u'kill', u'hurt', u'offici']
[u'bangladesh', u'batsmen', u'pressur']
[u'barcelona', u'sociedad', u'track']
[u'barrier', u'reef', u'studi', u'put', u'valu', u'perspect']
[u'beatti', u'accus', u'inact', u'shred', u'affair']
[u'beatti', u'rule', u'daylight', u'save']
[u'serv', u'fish', u'net', u'titl']
[u'blaze', u'prove', u'cost', u'greyhound', u'club']
[u'boati', u'warn', u'reced', u'water', u'level']
[u'proud', u'heroic', u'samoan']
[u'bok', u'wari', u'brilliant', u'samoan']
[u'bridg', u'push', u'ahead', u'maroochydor', u'access', u'road']
[u'burmes', u'court', u'postpon', u'hear', u'home']
[u'bush', u'bodi', u'examin', u'result', u'announc']
[u'california', u'fire', u'kill', u'destroy', u'home']
[u'oppos', u'govt', u'plan', u'reform', u'migrat']
[u'canadian', u'win', u'rock', u'paper', u'scissor', u'world', u'titl']
[u'crash', u'claim', u'life', u'near', u'young']
[u'carnarvon', u'jetti', u'demolish']
[u'cathi', u'freeman', u'launch', u'autobiographi']
[u'caus', u'train', u'derail', u'determin']
[u'child', u'abus', u'victim', u'critic', u'church', u'respons']
[u'child', u'detaine', u'seek', u'damag']
[u'chines', u'presid', u'talk', u'sar', u'trade']
[u'claim', u'polic', u'mistreat', u'alleg', u'rasta', u'associ']
[u'club', u'link', u'golf', u'plan', u'cours']
[u'cole', u'myer', u'propos', u'bonus']
[u'colli', u'clean', u'major', u'tidi', u'town', u'award']
[u'commiss', u'determin', u'antarct', u'catch', u'level']
[u'communiti', u'mourn', u'mayor', u'loss']
[u'confer', u'probe', u'viabil', u'hydrogen', u'power']
[u'continu', u'cover', u'alleg', u'heiner', u'affair']
[u'coria', u'win', u'basel', u'nalbandian', u'withdraw']
[u'corri', u'fli', u'home', u'pregnant', u'wife']
[u'council', u'consid', u'produc', u'store', u'plan']
[u'countri', u'swim', u'meet', u'plan', u'alburi', u'wodonga']
[u'coupl', u'lose', u'rainforest', u'log', u'battl']
[u'court', u'hear', u'marriag', u'split', u'spur', u'stab']
[u'detect', u'seek', u'extradit', u'alleg', u'kidnapp']
[u'develop', u'effort', u'convinc']
[u'dodson', u'launch', u'biographi']
[u'eagl', u'outmuscl', u'japan', u'thriller']
[u'editor', u'get', u'suspend', u'jail', u'term', u'insult']
[u'kill', u'china', u'accid']
[u'england', u'face', u'sanction', u'extra']
[u'england', u'skipper', u'call', u'stark', u'improv']
[u'eritrea', u'expect', u'slaughter', u'sheep']
[u'esper', u'perman', u'clinic', u'school', u'access']
[u'eurobodalla', u'resid', u'face', u'water', u'restrict']
[u'nakason', u'retir', u'japanes', u'polit']
[u'export', u'meat', u'trade', u'menu', u'region', u'forum']
[u'destroy', u'carpent', u'rock', u'home']
[u'firefight', u'union', u'warn', u'inadequ', u'risk']
[u'firm', u'continu', u'shore', u'reserv', u'explor']
[u'fishermen', u'seek', u'fund', u'great', u'barrier', u'reef']
[u'fisher', u'shark', u'research', u'scheme']
[u'councillor', u'sure', u'palm', u'island', u'council']
[u'yugoslav', u'armi', u'offic', u'face', u'crime']
[u'foster', u'consid', u'share', u'buyback']
[u'franc', u'adopt', u'cop', u'tactic', u'say', u'ibanez']
[u'free', u'trade', u'talk', u'resum', u'canberra']
[u'fund', u'shortfal', u'affect', u'theatr', u'show']
[u'ganguli', u'target', u'australia', u'match', u'return']
[u'germani', u'websit', u'inhabit']
[u'gladston', u'near', u'cancer', u'treatment', u'trial']
[u'godolphin', u'cool', u'mamool', u'form']
[u'govt', u'defend', u'qaeda', u'suspect', u'probe']
[u'govt', u'defend', u'disabl', u'assist', u'cut']
[u'govt', u'pledg', u'super', u'incom', u'earner']
[u'govt', u'build', u'hous', u'polic', u'offic']
[u'grain', u'farmer', u'look', u'skyward', u'rain']
[u'green', u'seek', u'inquiri', u'visit']
[u'gun', u'seiz', u'farm', u'raid']
[u'hawk', u'sydney', u'king']
[u'henri', u'cracker', u'see', u'arsenal']
[u'henri', u'spur', u'say', u'charvi']
[u'howard', u'quiet', u'memori', u'snub']
[u'hunter', u'valley', u'road', u'toll', u'increas']
[u'india', u'aveng', u'final', u'defeat']
[u'indian', u'rock', u'star', u'face', u'human', u'traffic', u'charg']
[u'indigen', u'fish', u'forum', u'focus', u'sustain']
[u'indigen', u'group', u'introduc', u'fraser', u'permit']
[u'indigen', u'leader', u'vow', u'etern', u'flame', u'alight']
[u'indonesia', u'join', u'talk', u'illeg', u'fish']
[u'industri', u'target', u'chines', u'tourist']
[u'injur', u'umaga', u'comeback', u'track']
[u'inquest', u'begin', u'murder', u'suicid']
[u'inquiri', u'consid', u'blanket', u'export']
[u'investig', u'continu', u'south', u'coast', u'accid']
[u'iraqi', u'aluminium', u'shipment', u'intercept', u'aust']
[u'ireland', u'loosen', u'australia', u'jone']
[u'island', u'pin', u'econom', u'hop', u'minist']
[u'isra', u'plan', u'settler', u'outpost', u'defi', u'road']
[u'itiner', u'death', u'rule', u'suspici', u'polic']
[u'jone', u'wad', u'extra']
[u'jubil', u'clijster', u'complet', u'quick', u'return']
[u'juventus', u'milan', u'clear', u'seri']
[u'kirsten', u'smack', u'centuri', u'tough', u'target']
[u'kobe', u'fate', u'loom', u'larg', u'season', u'open']
[u'kuerten', u'captur', u'petersburg', u'crown']
[u'labor', u'councillor', u'rais', u'hand']
[u'labor', u'blast', u'howard', u'bush', u'memori', u'visit']
[u'leav', u'shoe', u'fetish', u'leav', u'women', u'hop']
[u'lesli', u'appeal', u'wednesday']
[u'lib', u'choos', u'bendigo', u'candid']
[u'lib', u'choos', u'mcmillan', u'candid']
[u'lifetim', u'injuri', u'cost', u'billion', u'year']
[u'luca', u'height', u'spend', u'fuel', u'rod', u'shipment', u'franc']
[u'die', u'gold', u'coast', u'bike', u'accid']
[u'hospit', u'wagga', u'blaze']
[u'remain', u'hospit', u'graffiti', u'offend']
[u'remand', u'melbourn', u'murder']
[u'face', u'melbourn', u'court', u'murder', u'charg']
[u'mercuri', u'rise', u'queensland', u'west']
[u'migrat', u'court', u'case', u'face', u'greater', u'scrutini']
[u'miner', u'golden', u'opportun', u'west']
[u'minimbah', u'wast', u'decis', u'loom']
[u'minist', u'ask', u'rethink', u'north', u'west']
[u'minist', u'strand', u'second', u'ayer', u'rock']
[u'mini', u'tornado', u'tear', u'stanthorp']
[u'mortar', u'attack', u'kill', u'soldier', u'iraqi', u'prison']
[u'moscow', u'mark', u'theatr', u'hostag', u'raid']
[u'pleas', u'weekend', u'summit']
[u'say', u'govt', u'wear', u'cormo', u'sheep', u'cost']
[u'gambier', u'show', u'mix', u'respons', u'sunday', u'trade']
[u'museum', u'track', u'road', u'reopen']
[u'museum', u'honour', u'italian', u'screen', u'master', u'fellini']
[u'namibia', u'prepar', u'world', u'match', u'launceston']
[u'blast', u'follow', u'baghdad', u'hotel', u'attack']
[u'england', u'health', u'appoint', u'inverel', u'manag']
[u'polic', u'power', u'curb', u'chrome']
[u'rural', u'doctor', u'chief', u'lobbi', u'fresh', u'approach']
[u'nigerian', u'court', u'sentenc', u'briton', u'death', u'murder']
[u'nigerian', u'islam', u'leader', u'declar', u'vaccin', u'unsaf']
[u'kill', u'quak', u'china']
[u'welcom', u'home', u'australian', u'troop']
[u'north', u'coast', u'clean', u'hail', u'storm']
[u'reject', u'upper', u'hous', u'inquiri', u'hospit']
[u'educ', u'minist', u'want', u'teach', u'place']
[u'improv', u'teach', u'condit', u'mcgauran']
[u'resort', u'owner', u'improv', u'protect']
[u'centrebet', u'sell', u'sydney', u'bookmak']
[u'ohern', u'runner', u'madrid']
[u'oneil', u'defend', u'namibia', u'rout']
[u'open', u'day', u'prove', u'posit', u'grenfel', u'real', u'estat']
[u'organ', u'donor', u'urg', u'discuss', u'plan', u'relat']
[u'osullivan', u'reliev', u'narrow']
[u'pair', u'face', u'court', u'drug', u'charg']
[u'pair', u'face', u'drug', u'charg', u'toowoomba']
[u'pair', u'face', u'trial', u'arm', u'robberi']
[u'perth', u'recov', u'israel', u'protest', u'shoot']
[u'plan', u'nation', u'park', u'accompani', u'hous']
[u'polic', u'ship', u'plan', u'look', u'miss', u'pilot']
[u'polic', u'defend', u'speed', u'camera']
[u'polic', u'hunt', u'supermarket', u'arm', u'bandit']
[u'polic', u'probe', u'ralli', u'death']
[u'polic', u'brawl', u'action']
[u'poor', u'visibl', u'hamper', u'chopper', u'search']
[u'postcard', u'bandit', u'polit', u'prison', u'lawyer']
[u'postcard', u'bandit', u'polit', u'prison', u'beatti']
[u'power', u'seek', u'probe', u'defend', u'break']
[u'premier', u'urg', u'push', u'busi', u'china']
[u'produc', u'concern', u'live', u'sheep', u'trade']
[u'protea', u'battl', u'save', u'second', u'test']
[u'public', u'servant', u'mental', u'health', u'claim', u'blow']
[u'storm', u'creat', u'damag']
[u'ralli', u'industri', u'manslaught', u'law']
[u'rann', u'unmov', u'push', u'immedi', u'smoke']
[u'recreat', u'group', u'receiv', u'loan', u'repair', u'marina']
[u'relief', u'sheep', u'touch', u'eritrea']
[u'rescuer', u'search', u'trap', u'russian', u'miner']
[u'research', u'studi', u'link', u'chemotherapi']
[u'resourc', u'bank', u'drag', u'market', u'lower']
[u'reward', u'offer', u'year', u'murder', u'inform']
[u'riverland', u'chief', u'confid', u'health', u'servic', u'boost']
[u'robinson', u'plead', u'guilti', u'fraud', u'charg']
[u'royal', u'butler', u'book', u'hit', u'shelv']
[u'rugbi', u'test', u'return', u'adelaid']
[u'rural', u'doctor', u'intensifi', u'lobbi']
[u'ryan', u'take', u'public', u'reserv', u'plea', u'parliament']
[u'cabinet', u'consid', u'region', u'develop', u'board']
[u'oppn', u'hear', u'irrig', u'issu']
[u'scud', u'master', u'boost']
[u'search', u'miss', u'pilot', u'call']
[u'senat', u'debat', u'telstra', u'sale']
[u'senat', u'reconsid', u'sale', u'telstra']
[u'call', u'help', u'gold', u'coast', u'storm', u'clean']
[u'help', u'storm', u'clean']
[u'singapor', u'clarifi', u'comment', u'australia']
[u'singh', u'win', u'florida', u'ogilvi', u'ninth']
[u'soap', u'diet', u'doesnt', u'fatten']
[u'solicitor', u'preselect', u'labor', u'candid']
[u'souness', u'face', u'touchlin']
[u'southern', u'set', u'koala', u'movi']
[u'south', u'west', u'school', u'boost']
[u'stang', u'relish', u'iraq', u'challeng']
[u'storm', u'bring', u'rain', u'rocki', u'region']
[u'studio', u'hope', u'matrix', u'film', u'strike', u'blow']
[u'sugiyama', u'lift', u'linz', u'titl']
[u'survey', u'find', u'high', u'ambul', u'servic', u'satisfact']
[u'hospit', u'union', u'promot', u'smoke']
[u'west', u'coast', u'properti', u'demand']
[u'offic', u'target', u'barter']
[u'tenni', u'star', u'draper', u'mull', u'switch', u'golf']
[u'terrorist', u'screen', u'process', u'question']
[u'thousand', u'build', u'worker', u'march']
[u'tidi', u'town', u'effort', u'west', u'woman']
[u'timber', u'staff', u'donat', u'wag', u'lock', u'colleagu']
[u'traci', u'wrap', u'champ', u'championship']
[u'explos', u'central', u'baghdad', u'militari']
[u'kill', u'bali', u'polit', u'violenc']
[u'shoot', u'tavern', u'hold']
[u'unionist', u'artist', u'lobbi', u'free', u'trade', u'deal']
[u'union', u'lobbi', u'peer', u'wake', u'court', u'trial']
[u'say', u'trade', u'deal', u'wont', u'kill']
[u'util', u'speak', u'infrastructur', u'cost']
[u'vandal', u'attack', u'newli', u'refurbish', u'surf', u'club']
[u'vuuren', u'return', u'shellshock', u'namibia']
[u'venus', u'william', u'pull', u'philadelphia']
[u'govt', u'roll', u'stamp', u'duti', u'bonanza']
[u'opposit', u'label', u'calder', u'meet', u'stunt']
[u'govt', u'crack', u'mullewa', u'youth', u'woe']
[u'wallabi', u'sterner', u'test', u'gregan']
[u'water', u'alert', u'remain', u'time']
[u'winemak', u'bortoli', u'die']
[u'yulara', u'bushfir', u'control']
[u'zimbabw', u'media', u'director', u'arrest', u'paper', u'shut']
[u'zimbabw', u'polic', u'charg', u'newspap']
[u'ralli', u'broadcast']
[u'abattoir', u'open', u'prompt', u'call', u'industri', u'review']
[u'abbott', u'readi', u'deal', u'democrat', u'medicar']
[u'affirm', u'commit', u'drug', u'rehab', u'program']
[u'spray', u'toxic', u'weed']
[u'afeaki', u'tonga']
[u'call', u'indigen', u'health', u'boost']
[u'anderson', u'ring', u'kangaroo', u'chang']
[u'share', u'slide']
[u'drug', u'chief', u'launch', u'trawl']
[u'award', u'honour', u'brave', u'north', u'coast', u'effort']
[u'azerbaijan', u'court', u'confirm', u'aliyev', u'presid']
[u'balshaw', u'dismiss', u'england', u'press']
[u'bank', u'weigh', u'aussi', u'market']
[u'beckham', u'real']
[u'biki', u'acquit', u'bomb', u'murder']
[u'brisban', u'charg', u'hack']
[u'broom', u'forum', u'voic', u'tourism', u'concern']
[u'bruce', u'rock', u'win', u'wheatbelt', u'tidi', u'town', u'honour']
[u'bush', u'doctor', u'bulk', u'bill', u'concess']
[u'busi', u'time', u'hour', u'servic']
[u'cadburi', u'schwepp', u'slash', u'workforc']
[u'greater', u'inroad', u'pacif', u'highway', u'fund']
[u'canada', u'tonga', u'play', u'pride']
[u'canberra', u'warn', u'fortress', u'mental']
[u'bomb', u'kill', u'fallujah']
[u'carr', u'announc', u'drug', u'jail']
[u'chang', u'sport', u'forum']
[u'charl', u'darwin', u'studi', u'heat', u'induc', u'ill']
[u'china', u'plan', u'man', u'space', u'flight']
[u'coast', u'compani', u'award', u'fund']
[u'coff', u'firm', u'take', u'heart', u'award']
[u'commonwealth', u'pass', u'loan', u'mark']
[u'complaint', u'unansw', u'matern', u'unit', u'closur']
[u'concern', u'angler', u'confid', u'status', u'chang']
[u'confer', u'hear', u'asylum', u'seeker', u'class']
[u'consum', u'watchdog', u'warn', u'cost']
[u'contractor', u'return', u'work']
[u'contract', u'shed', u'light', u'queen', u'elizabeth', u'oval']
[u'conveyor', u'breakdown', u'blame', u'port', u'congest']
[u'costa', u'announc', u'transport', u'safeti', u'bodi']
[u'council', u'appoint', u'assessor', u'review', u'yacht', u'club']
[u'council', u'approv', u'hutton', u'childcar', u'centr']
[u'council', u'approv', u'youth', u'facil']
[u'council', u'consid', u'princ', u'highway', u'fund', u'option']
[u'council', u'fight', u'public', u'access', u'plan', u'illawarra']
[u'council', u'take', u'windfarm', u'fight', u'parliament']
[u'council', u'reconsid', u'aerodrom']
[u'court', u'dismiss', u'packer', u'libel', u'case']
[u'court', u'hear', u'robinson', u'authoris', u'sign']
[u'crayfishermen', u'face', u'test']
[u'crop', u'properti', u'reach', u'record', u'price', u'auction']
[u'crowd', u'pleas', u'japanes', u'winless', u'remind', u'ella']
[u'custom', u'reveal', u'record', u'drug', u'seizur', u'year']
[u'damag', u'storm']
[u'democrat', u'unveil', u'medicar', u'polici']
[u'detent', u'centr', u'wors', u'zone']
[u'digit', u'licenc', u'disadvantag', u'countri', u'driver']
[u'disappoint', u'karat', u'kick', u'manslaught', u'plea']
[u'owner', u'warn', u'leav', u'pet', u'car']
[u'downer', u'accus', u'decept', u'iraq', u'tube']
[u'downer', u'say', u'iraq', u'mission', u'stay']
[u'drink', u'driver', u'number', u'rise']
[u'driver', u'get', u'second', u'chanc', u'high', u'speed', u'chase']
[u'dust', u'storm', u'sweep']
[u'eagl', u'flight', u'year', u'wait']
[u'egyptian', u'twin', u'play', u'week', u'surgeri']
[]
[u'england', u'turkey', u'charg', u'istanbul', u'brawl']
[u'england', u'team', u'beat', u'macqueen']
[u'give', u'ahead', u'dampier', u'port', u'dredg']
[u'eritrea', u'wont', u'sell', u'sheep', u'saudi', u'truss']
[u'export', u'enjoy', u'darwin', u'singapor', u'week']
[u'famili', u'shock', u'juri', u'decis', u'acquit', u'biki']
[u'farmer', u'hope', u'heaven', u'crop']
[u'fear', u'meter', u'expir', u'taxi', u'servic']
[u'govt', u'put', u'onus', u'bypass', u'govt']
[u'ferdinand', u'case', u'threat', u'fifa', u'council']
[u'fisheri', u'deni', u'fals', u'promis', u'claim']
[u'fish', u'licenc', u'suggest', u'incom', u'incent']
[u'flood', u'continu', u'caus', u'havoc', u'china']
[u'franc', u'bori', u'get', u'flight']
[u'freeman', u'take', u'scandal', u'person']
[u'french', u'weaken', u'team', u'face']
[u'shutdown', u'spark', u'plea', u'restrict', u'power']
[u'gerrard', u'readi', u'sign', u'anfield', u'deal']
[u'giant', u'turtl', u'wash', u'shore']
[u'glori', u'home', u'schedul']
[u'govt', u'tough', u'drive', u'shoot']
[u'govt', u'warn', u'pool', u'owner', u'avoid', u'fenc', u'fin']
[u'green', u'group', u'want', u'landhold', u'reveget', u'clear']
[u'group', u'meet', u'safe', u'place', u'plan']
[u'hail', u'spur', u'indi', u'start', u'rethink']
[u'hall', u'back', u'mamool', u'godolphin', u'drought']
[u'heal', u'name', u'spur', u'bench']
[u'henman', u'set', u'grosjean', u'reveng', u'clash']
[u'highway', u'upgrad', u'open', u'tourist', u'market']
[u'hobart', u'escap', u'cadburi', u'schwepp', u'cut']
[u'hobart', u'schoolgirl', u'win', u'visa', u'extens']
[u'hollingworth', u'media', u'advic', u'cost']
[u'household', u'keen', u'kerbsid', u'recycl']
[u'hundr', u'ralli', u'work', u'safeti', u'law']
[u'husband', u'accus', u'wife', u'slay', u'face', u'trial']
[u'icac', u'hear', u'evid', u'face', u'claim']
[u'indi', u'organis', u'consid', u'earli', u'start', u'avoid', u'rain']
[u'inquest', u'begin', u'longford', u'murder', u'suicid']
[u'ireland', u'bump', u'australia', u'rank']
[u'ireland', u'bump', u'australia', u'rugbi', u'rank']
[u'israel', u'attack', u'hezbollah', u'posit']
[u'jail', u'russian', u'millionair', u'say']
[u'japanes', u'woman', u'seek', u'asylum', u'north', u'korea']
[u'japan', u'head', u'elect', u'mode']
[u'kergunyah', u'death', u'lead', u'phone', u'repair', u'code']
[u'labor', u'promis', u'crack', u'medicar', u'team']
[u'larsson', u'celtic', u'exit']
[u'leagu', u'ratifi', u'club', u'decis']
[u'leas', u'jetti', u'face', u'rent', u'reassess']
[u'lee', u'stand', u'firm', u'telstra', u'sale']
[u'live', u'sheep', u'trade', u'assur', u'custom']
[u'lodg', u'closur', u'spark', u'age', u'care', u'fear']
[u'lucki', u'escap', u'hobart', u'councillor']
[u'lynch', u'play', u'lion']
[u'magistr', u'reserv', u'decis', u'union', u'threat', u'case']
[u'malaysia', u'ibrahim', u'aust', u'terror', u'link']
[u'die', u'road', u'accid']
[u'die', u'injuri']
[u'leav', u'power', u'fail']
[u'mayor', u'back', u'away', u'mall']
[u'mildura', u'challeng', u'capit', u'davi']
[u'mildura', u'water', u'author', u'expect', u'forc']
[u'minist', u'say', u'school', u'closur', u'concern', u'hear']
[u'throw', u'petrol', u'bomb', u'home', u'bali']
[u'monash', u'grant', u'fund', u'small', u'busi', u'studi']
[u'monti', u'name', u'lawri', u'seve', u'trophi', u'wild', u'card']
[u'fund', u'work', u'program']
[u'break', u'hill', u'mayor']
[u'public', u'comment', u'seek', u'safe', u'hous', u'plan']
[u'happi', u'williamtown', u'jet', u'approv']
[u'murder', u'investig', u'focus', u'group', u'youth']
[u'namibia', u'confid', u'beat', u'romania']
[u'minist', u'upbeat', u'calder', u'highway', u'work']
[u'govt', u'allow', u'construct', u'hydro', u'plant']
[u'opposit', u'leader', u'face', u'leadership', u'challeng']
[u'opposit', u'make', u'brash', u'decis']
[u'provid', u'massiv', u'boost', u'tome']
[u'opposit', u'call', u'senat', u'probe', u'militari']
[u'orang', u'prepar', u'influx', u'univers', u'student']
[u'organ', u'farmer', u'conduct', u'census']
[u'organis', u'bank', u'fundrais', u'target']
[u'osullivan', u'dismiss', u'rank', u'chuckl']
[u'outrag', u'prison', u'ping', u'pong', u'payout']
[u'packer', u'sue', u'paper', u'nasti', u'littl', u'articl']
[u'park', u'meter', u'anger', u'mildura', u'trader']
[u'pisnik', u'advanc', u'second', u'round', u'philadelphia']
[u'plan', u'author', u'decis', u'open']
[u'plan', u'institut', u'meet', u'destin']
[u'plan', u'question', u'weed', u'forc', u'farm', u'closur']
[u'polic', u'appeal', u'wit', u'annandal', u'murder']
[u'polic', u'apprehend', u'gambier', u'teen', u'nangwarri']
[u'polic', u'ballarat', u'counter', u'terror', u'train']
[u'polic', u'releas', u'murder']
[u'polic', u'target', u'vandal', u'spree']
[u'polic', u'summon', u'drive', u'incid']
[u'polic', u'union', u'say', u'fail', u'resign']
[u'polic', u'welcom', u'anti', u'chrome', u'power']
[u'protest', u'target', u'woolworth']
[u'public', u'help', u'seek', u'search', u'deli', u'hold']
[u'qcwa', u'confer', u'look', u'declin', u'membership']
[u'govt', u'clarifi', u'palm', u'council', u'claim']
[u'quri', u'stay', u'palestinian']
[u'rain', u'pose', u'problem', u'farmer']
[u'rebel', u'offer', u'releas', u'lose', u'citi', u'prison']
[u'refuge', u'help', u'settl']
[u'rescuer', u'frantic', u'reach', u'russian', u'miner']
[u'research', u'aim', u'smell', u'wine', u'export', u'boost']
[u'resid', u'encourag', u'particip']
[u'riverland', u'investor', u'urg', u'reject', u'wind', u'motion']
[u'road', u'plan', u'divid', u'resid']
[u'roll', u'stone', u'cancel', u'chines', u'tour']
[u'royal', u'children', u'hospit', u'get', u'emerg', u'grant']
[u'rural', u'busi', u'boost', u'tip']
[u'rylston', u'council', u'undergo', u'financi', u'shake']
[u'health', u'worri', u'measl', u'outbreak']
[u'sailor', u'fear', u'world', u'spot']
[u'sailor', u'fear', u'world', u'spot']
[u'salvo', u'welcom', u'drug', u'jail']
[u'samoa', u'catch', u'cold', u'say', u'wilkinson']
[u'sanctuari', u'call', u'fund', u'help', u'hail', u'batter']
[u'section', u'morgan', u'blanchetown', u'road', u'remain']
[u'seminar', u'demystifi', u'drought']
[u'senat', u'break', u'rank', u'telstra']
[u'senat', u'suspect', u'bird', u'parliament']
[u'volunt', u'converg', u'gold', u'coast', u'help']
[u'sheep', u'export', u'trade', u'need', u'revamp']
[u'singh', u'world', u'number']
[u'slip', u'slop', u'slap', u'lose', u'aussi', u'teen']
[u'societi', u'voic', u'fear', u'cape', u'economi']
[u'solar', u'driver', u'person', u'best']
[u'soni', u'slash', u'job', u'worldwid']
[u'south', u'africa', u'bartlett', u'put', u'club', u'countri']
[u'southern', u'inland', u'face', u'high', u'danger']
[u'south', u'west', u'game', u'inject', u'thousand', u'portland']
[u'space', u'station', u'crew', u'return', u'earth']
[u'stanhop', u'argu', u'continu', u'sydney', u'rail', u'link']
[u'stinger', u'schedul', u'revis']
[u'summit', u'spark', u'region', u'transport', u'debat']
[u'survey', u'highlight', u'weighti', u'problem']
[u'green', u'label', u'govt', u'smoke']
[u'nightclub', u'smoke', u'free']
[u'teen', u'return', u'home', u'meningococc', u'scare']
[u'terror', u'strike', u'right', u'note', u'offic']
[u'thai', u'minist', u'guilti', u'corrupt']
[u'thousand', u'homeless', u'flood', u'sweep', u'china']
[u'charg', u'polic', u'chase']
[u'kill', u'phnomn', u'penh', u'shoot']
[u'timber', u'staff', u'expect', u'return', u'work']
[u'time', u'run', u'wool', u'levi', u'vote']
[u'air', u'nation', u'worker', u'compo', u'fear']
[u'townsvill', u'troop', u'solomon']
[u'troop', u'head', u'home', u'solomon']
[u'arrest', u'starv', u'children']
[u'kill', u'injur', u'kashmir', u'blast']
[u'uranquinti', u'resid', u'question', u'propos', u'power']
[u'uruguay', u'good', u'georgia']
[u'indian', u'journalist', u'award', u'prize']
[u'undet', u'baghdad', u'blast']
[u'warn', u'saudi', u'terrorist', u'threat']
[u'say', u'budget', u'surplus', u'help']
[u'opposit', u'say', u'cancer', u'facil', u'fund']
[u'vigneron', u'optimist', u'despit', u'weather']
[u'cancer', u'foundat', u'back', u'plan', u'treatment']
[u'council', u'eye', u'condom', u'tree', u'plan']
[u'wagga', u'wagga', u'risk', u'norwalk', u'virus']
[u'walcha', u'council', u'want', u'author', u'assess', u'wind', u'farm']
[u'wall', u'hand', u'earli', u'gain']
[u'warfar', u'confer', u'bound', u'media']
[u'weather', u'delay', u'construct', u'perth', u'glori', u'stadium']
[u'west', u'bank', u'settler', u'turn', u'pig', u'protect']
[u'whyalla', u'airlin', u'crash', u'report', u'tabl']
[u'wild', u'wind', u'power', u'adelaid']
[u'wind', u'eas', u'california', u'burn']
[u'wollongong', u'prepar', u'world', u'match']
[u'woodward', u'admit', u'error', u'blunder']
[u'work', u'death', u'spark', u'ralli', u'protect']
[u'zimbabw', u'bullish', u'ahead', u'west', u'indi', u'seri']
[u'zimbabw', u'envoy', u'deni', u'report', u'mugab']
[u'detain', u'latest', u'immigr', u'raid']
[u'seek', u'assur', u'polic', u'number']
[u'forc', u'fight', u'flame', u'near', u'newcastl']
[u'alburi', u'firm', u'receiv', u'henti', u'health', u'tender']
[u'alleg', u'boss', u'face', u'court', u'jakarta']
[u'anderson', u'will', u'discuss', u'highway', u'agreement']
[u'angri', u'resid', u'band', u'protest', u'toll']
[u'record', u'strong', u'climb']
[u'australia', u'crush', u'kiwi', u'rout']
[u'australia', u'crush', u'zealand']
[u'australia', u'edg', u'england', u'team']
[u'australian', u'research', u'east', u'timor', u'massiv']
[u'award', u'honour', u'ulladulla', u'rescuer']
[u'ballarat', u'polic', u'request', u'post', u'revers']
[u'ban', u'cult', u'movi', u'final', u'hit', u'singapor', u'screen']
[u'bendigo', u'bomber', u'welcom', u'field', u'light']
[u'benefit', u'flow', u'sarina', u'council', u'water', u'plan']
[u'bogong', u'moth', u'suspect', u'parliament', u'bird', u'death']
[u'british', u'actor', u'jude', u'wife', u'divorc']
[u'broom', u'employ', u'strategi', u'wander', u'youth']
[u'bushfir', u'threaten', u'gold', u'coast', u'home']
[u'bush', u'host', u'ramadan', u'dinner', u'washington']
[u'busi', u'disput', u'piraci', u'offici']
[u'greater', u'marron', u'protect']
[u'chang', u'dealer', u'win', u'case']
[u'canada', u'mar', u'charron', u'injuri']
[u'maker', u'tell', u'modernis']
[u'casterton', u'lobbi', u'build', u'inspector']
[u'celebr', u'citizen', u'flock', u'join', u'blacklist']
[u'central', u'farmer', u'celebr', u'averag']
[u'china', u'hail', u'visit', u'success']
[u'civilian', u'bush', u'visit', u'secur']
[u'clijster', u'junior', u'answer', u'belgium']
[u'coal', u'disast', u'china', u'kill']
[u'cole', u'myer', u'yield', u'sharehold', u'bonus']
[u'comment', u'seek', u'bendigo', u'orphang', u'redevelop']
[u'commission', u'direct', u'robinson', u'probe', u'offic']
[u'communiti', u'farewel', u'tare', u'mayor']
[u'compani', u'investig', u'sandalwood', u'prospect']
[u'compani', u'seek', u'miner', u'break', u'hill', u'dump']
[u'convict', u'kidnapp', u'lose', u'appeal']
[u'coron', u'consid', u'longford', u'murder', u'suicid', u'evid']
[u'council', u'chang', u'relat', u'sack']
[u'councillor', u'unhappi', u'leak', u'complaint']
[u'council', u'stand', u'firm', u'cliff', u'develop']
[u'court', u'hear', u'evid', u'wife', u'slay']
[u'court', u'hear', u'snowtown', u'victim', u'statement']
[u'crean', u'warn', u'troop', u'iraq']
[u'crew', u'brace', u'bushfir', u'battl', u'gold', u'coast']
[u'crime', u'watchdog', u'prais', u'hack', u'charg']
[u'crocodil', u'hunt', u'despit', u'sink', u'score']
[u'cult', u'member', u'sentenc', u'death', u'tokyo', u'subway']
[u'custom', u'issu', u'christma', u'import', u'warn']
[u'death', u'toll', u'rise', u'california', u'fire']
[u'defeat', u'georgia', u'grow', u'world']
[u'democrat', u'confid', u'telstra', u'defeat']
[u'democrat', u'oppos', u'telstra', u'sale']
[u'deport', u'disrupt', u'terror', u'cell', u'feder', u'polic']
[u'doctor', u'disappoint', u'labor', u'bulk', u'bill', u'plan']
[u'downer', u'defend', u'franc', u'intellig', u'share']
[u'drought', u'keep', u'honey', u'price', u'high']
[u'zone', u'adelaid', u'prove', u'effect']
[u'dust', u'settl', u'england', u'region']
[u'dust', u'settl', u'north', u'coast']
[u'dust', u'storm', u'leav', u'last', u'impress', u'western']
[u'miner', u'rescu', u'russia']
[u'emerg', u'servic', u'scale', u'yulara', u'oper']
[u'employ', u'group', u'over', u'alarmist']
[u'england', u'prepar', u'uruguay', u'clash']
[u'england', u'sock', u'doubl', u'misconduct', u'charg']
[u'england', u'wait', u'judgement', u'fiasco']
[u'timor', u'open', u'memori', u'aust', u'journalist']
[u'famili', u'push', u'tougher', u'law', u'murder']
[u'famili', u'welcom', u'life', u'sentenc', u'murder']
[u'feder', u'polic', u'rethink', u'secur', u'uniform']
[u'govt', u'ask', u'explain']
[u'fin', u'shale', u'plant', u'dust']
[u'firefight', u'braveri', u'honour']
[u'fire', u'forc', u'postpon', u'indi', u'final']
[u'scar', u'ferrero', u'roddick', u'pari']
[u'fish', u'group', u'seek', u'angl', u'pearl', u'farm', u'plan']
[u'footbal', u'academi', u'reject', u'educ', u'critic']
[u'forest', u'group', u'question', u'polici', u'report']
[u'minist', u'front', u'icac', u'hear']
[u'mask', u'barman', u'appeal', u'sack']
[u'gatton', u'bypass', u'speed', u'remain']
[u'giffin', u'return', u'strength', u'wallabi']
[u'global', u'warm', u'put', u'tropic', u'anim', u'risk']
[u'green', u'group', u'want', u'power', u'station', u'plan']
[u'green', u'demand', u'apolog', u'nazi', u'label']
[u'green', u'push', u'govt', u'launch', u'corrupt']
[u'gun', u'surrend', u'gambier']
[u'harrigan', u'blow', u'time', u'refere', u'career']
[u'hib', u'stay', u'easter', u'road']
[u'highland', u'hero', u'receiv', u'braveri', u'award']
[u'high', u'wind', u'leav', u'trail', u'destruct', u'break']
[u'hobart', u'archbishop', u'refus', u'quit', u'abus', u'case']
[u'hospit', u'staff', u'strike', u'disput']
[u'houllier', u'say', u'owen', u'stay', u'anfield']
[u'hous', u'boom', u'boost', u'bank', u'altern']
[u'hundr', u'worker', u'clean', u'storm', u'debri']
[u'hussain', u'clark', u'salvag', u'england', u'inning']
[u'independ', u'block', u'telstra', u'sale']
[u'industri', u'unveil', u'plan', u'hous', u'price']
[u'inquiri', u'continu', u'wagga', u'wagga', u'death']
[u'iraqi', u'buri', u'bomb', u'victim', u'group', u'boost']
[u'isra', u'processor', u'comput', u'speed', u'light']
[u'job', u'blundston', u'compani', u'afloat']
[u'jone', u'fool', u'smile', u'irish']
[u'judg', u'see', u'violenc', u'women']
[u'kempsey', u'stadium', u'plan', u'chang']
[u'kingston', u'council', u'go', u'local', u'vote', u'skate']
[u'kiwi', u'mauger', u'debut', u'wale']
[u'landown', u'ask', u'season', u'prepar']
[u'lawyer', u'welcom', u'girl', u'deport', u'delay']
[u'lesli', u'week']
[u'incom', u'hous', u'plan', u'receiv', u'fund']
[u'madrid', u'look', u'spici', u'beckham']
[u'mahathir', u'unconcern', u'cut']
[u'accus', u'forg', u'bail', u'document']
[u'manag', u'jail', u'gambl', u'bank', u'money']
[u'court', u'drug', u'charg']
[u'leed', u'suffer', u'arsenal', u'edg', u'rotherham']
[u'market', u'rise', u'rate', u'hold']
[u'massa', u'sign', u'year', u'contract', u'sauber']
[u'mayn', u'consid', u'pharmaci', u'sale']
[u'mayor', u'air', u'stamp', u'duti', u'properti', u'concern']
[u'mayor', u'happi', u'polic', u'power', u'boost']
[u'melbourn', u'hope', u'refus', u'gallop']
[u'melbourn', u'face', u'drug', u'charg', u'sydney']
[u'rescu', u'group', u'discuss', u'staff']
[u'minist', u'back', u'aborigin', u'health', u'bodi']
[u'minist', u'peddl', u'stage', u'bikeway']
[u'rain', u'need', u'eas', u'threat']
[u'gambier', u'minist', u'disappoint', u'drug', u'cours']
[u'murder', u'trial', u'year', u'abandon']
[u'murder', u'trial', u'hear', u'forens', u'detail']
[u'nalbandian', u'pull', u'throw', u'scud', u'lifelin']
[u'narromin', u'polic', u'receiv', u'braveri', u'award']
[u'nation', u'trust', u'member', u'vote']
[u'facil', u'household', u'hazard', u'wast']
[u'steroid', u'illeg', u'danger']
[u'parol', u'snowtown', u'killer']
[u'north', u'shire', u'introduc', u'wild', u'bounti']
[u'drug', u'jail', u'fail', u'opposit']
[u'ferri', u'cost', u'job', u'oppn']
[u'govt', u'order', u'stop', u'work', u'theatr']
[u'parliament', u'elect', u'replac']
[u'prais', u'indigen', u'court']
[u'put', u'water', u'share', u'plan', u'hold']
[u'resid', u'complain']
[u'home', u'cultur', u'vultur']
[u'musician', u'produc', u'hygien']
[u'offer', u'onlin', u'degre']
[u'urg', u'boost', u'china', u'tourist', u'number']
[u'lift', u'despit', u'opposit']
[u'opposit', u'sceptic', u'road', u'minist', u'bendigo']
[u'pakistan', u'hold', u'south', u'africa', u'seri']
[u'palestinian', u'kill', u'buffer', u'zone']
[u'diddi', u'face', u'sweatshop', u'accus']
[u'petrol', u'car', u'head', u'scrapheap']
[u'pirat', u'drop', u'injur', u'rigbi']
[u'unimpress', u'green', u'nazi', u'comparison']
[u'polic', u'charg', u'drug', u'raid']
[u'polic', u'probe', u'norseman', u'bodi']
[u'port', u'corpor', u'consid', u'signal', u'station', u'option']
[u'portland', u'ocean', u'steel', u'consid', u'slipway', u'upgrad']
[u'post', u'bungl', u'delay', u'infring', u'fin']
[u'pressur', u'beat', u'australia', u'fleme']
[u'princ', u'plan', u'meet', u'butler', u'diana', u'book']
[u'queensland', u'plan', u'start', u'state', u'camel', u'industri']
[u'queensland', u'scientist', u'sting', u'broom']
[u'rabbi', u'approv', u'west', u'bank', u'patrol', u'pig']
[u'tape', u'increas', u'small', u'busi', u'cost', u'survey']
[u'remot', u'town', u'face', u'water', u'crisi']
[u'renmark', u'lift', u'irrig', u'restrict']
[u'research', u'probe', u'dugong', u'movement']
[u'research', u'show', u'doctor', u'shortag', u'worsen']
[u'riverland', u'wine', u'investor', u'vote', u'fund', u'wind']
[u'robinson', u'week', u'wait', u'trial', u'decis']
[u'whyalla', u'report', u'caus', u'pain']
[u'rudi', u'chanc', u'world', u'cup', u'doubl']
[u'rural', u'communiti', u'offic', u'appoint', u'town']
[u'rusti', u'kangaroo', u'defeat', u'england']
[u'satellit', u'technolog', u'reveal', u'dugong']
[u'schole', u'injuri', u'blow', u'unit']
[u'scot', u'chang', u'fiji', u'decid']
[u'second', u'kashmir', u'grenad', u'attack', u'wound']
[u'senat', u'probe', u'claim', u'china', u'push', u'exclud']
[u'serco', u'driver', u'threaten', u'strike']
[u'shellharbour', u'council', u'reject', u'hous', u'plan']
[u'shire', u'criticis', u'power', u'plan', u'think']
[u'skipton', u'shed', u'get', u'green', u'light', u'process', u'eel']
[u'smart', u'card', u'dumb', u'idea', u'atsic', u'western', u'commission']
[u'solar', u'flare', u'disrupt', u'satellit', u'communic']
[u'speaker', u'clear', u'public', u'galleri']
[u'springbok', u'kick', u'koen', u'touch', u'samoa', u'decid']
[u'springborg', u'reflect', u'sheldon', u'absenc']
[u'sting', u'tail', u'owner', u'escap', u'scorpion']
[u'storm', u'damag', u'spark', u'water', u'ban']
[u'storm', u'leav', u'trail', u'damag', u'southern']
[u'straeuli', u'hop', u'road', u'bring', u'world', u'high']
[u'strong', u'dollar', u'hit', u'bhps', u'line']
[u'hurl', u'huge', u'magnet', u'cloud', u'earth']
[u'suspens', u'stymi', u'bickley', u'swansong']
[u'sydney', u'ferri', u'state', u'corpor']
[u'talli', u'pay', u'tribut', u'harrigan', u'hang']
[u'tare', u'compani', u'retrench', u'staff']
[u'polic', u'face', u'secret', u'rbts']
[u'illeg', u'danger', u'regul', u'warn']
[u'civilian', u'kill', u'iraqi', u'attack']
[u'tidi', u'marbl', u'prove', u'competit']
[u'toad', u'dispos', u'perplex', u'darwin', u'council']
[u'harrigan', u'call', u'quit']
[u'tough', u'tour', u'teach', u'protea', u'need', u'spin', u'smith']
[u'troop', u'return', u'townsvill', u'solomon']
[u'oper', u'kill', u'afghanistan']
[u'group', u'share', u'bundaberg']
[u'lawyer', u'clear', u'guantanamo', u'prison']
[u'uranquinti', u'resid', u'discuss', u'power', u'impact']
[u'uruguay', u'good', u'georgia']
[u'democrat', u'doubt', u'bush', u'credibl', u'iraq']
[u'rat', u'remain', u'hold']
[u'jail', u'qaeda', u'role']
[u'propos', u'thaw', u'relat', u'iran']
[u'trial', u'tasmanian', u'sportsman', u'postpon']
[u'troop', u'polic', u'attack', u'iraq']
[u'vandal', u'threaten', u'public', u'access']
[u'govt', u'blast', u'workcov', u'cost', u'blowout']
[u'govt', u'launch', u'court']
[u'govt', u'plan', u'expand', u'anzac', u'commemor']
[u'vietnam', u'vet', u'tell', u'counsel', u'visit']
[u'vigneron', u'say', u'wine', u'stay', u'despit', u'lehmann', u'sale']
[u'fast', u'track', u'kununurra', u'land', u'develop']
[u'wagga', u'wagga', u'mayor', u'deni', u'wrongdo']
[u'action', u'health', u'reform']
[u'oppn', u'highlight', u'south', u'west', u'hospit', u'woe']
[u'polic', u'defend', u'biki', u'investig']
[u'waugh', u'eye', u'ton', u'year']
[u'weari', u'firefight', u'battl', u'california']
[u'weather', u'cool', u'western', u'queensland']
[u'beat', u'australia', u'miandad']
[u'summer', u'loom', u'central']
[u'wollongong', u'prepar', u'world', u'fever']
[u'woman', u'season', u'irukandji', u'victim']
[u'woodward', u'ultimatum', u'dallaglio']
[u'abattoir', u'worker', u'owe', u'money']
[u'abbott', u'readi', u'bargain', u'medicar']
[u'aborigin', u'health', u'bodi', u'worri', u'plan']
[u'afghanistan', u'fail', u'narco', u'state']
[u'alic', u'firefight', u'alert']
[u'alleg', u'bali', u'bomb', u'builder', u'face', u'court']
[u'anderson', u'shrug', u'close', u'shave', u'england']
[u'argentin', u'pair', u'suspend', u'cite', u'ireland']
[u'fair', u'open', u'cologn']
[u'asio', u'raid', u'spark', u'complaint']
[u'scammer', u'jail', u'year']
[u'aussi', u'major', u'leagu', u'pitcher', u'doubt', u'olymp']
[u'avellino', u'abandon', u'adelaid', u'plan']
[u'bacon', u'dismiss', u'furor', u'governor', u'upgrad']
[u'barossa', u'polic', u'seek', u'culprit']
[u'baxter', u'detaine', u'hospit', u'give', u'birth']
[u'berri', u'council', u'receiv', u'backpack', u'hostel', u'object']
[u'bomb', u'hoax', u'prove', u'cost', u'busi']
[u'brack', u'visit', u'east', u'timores', u'school']
[u'brick', u'stock', u'construct', u'boom']
[u'broom', u'port', u'set', u'volum', u'record', u'ship']
[u'bundaberg', u'school', u'develop', u'technolog', u'syllabus']
[u'bushrang', u'lose', u'berri', u'battl', u'bull']
[u'servic', u'sale', u'jeopardis', u'cobar', u'rugbi', u'leagu']
[u'cabbi', u'rank', u'industri', u'review', u'poor']
[u'cabinet', u'debat', u'tank']
[u'centr', u'boost', u'region', u'job']
[u'action', u'weed']
[u'clear', u'definit', u'indigen', u'customari']
[u'rethink', u'post', u'offic', u'closur', u'plan']
[u'releas', u'report', u'kidnap', u'russia']
[u'caucau', u'raulini', u'name', u'clash', u'scotland']
[u'chariot', u'gold', u'mine', u'open', u'tennant', u'creek']
[u'charron', u'bow', u'canada', u'trounc', u'tonga']
[u'china', u'north', u'korea', u'agre', u'resum', u'nuclear', u'talk']
[u'church', u'concern', u'iraq', u'famili', u'return', u'home']
[u'coff', u'harbour', u'urg', u'pacif', u'highway', u'rethink']
[u'cole', u'extend', u'discount', u'petrol', u'scheme']
[u'connect', u'credit', u'union', u'demutualis', u'reject']
[u'conneri', u'settl', u'lawsuit', u'produc']
[u'consult', u'clear', u'adelaid', u'lawyer', u'intent']
[u'controversi', u'iraq', u'contract', u'fill', u'halliburton']
[u'coron', u'investig', u'tourist', u'disappear']
[u'costello', u'keep', u'budget', u'plan', u'close', u'chest']
[u'council', u'approv', u'cocoanut', u'point', u'develop']
[u'council', u'deni', u'pollut', u'town', u'aquif']
[u'council', u'label', u'residenti', u'charg', u'anti']
[u'councillor', u'feedback', u'plan']
[u'council', u'continu', u'drought', u'fight']
[u'council', u'upbeat', u'jail', u'progress']
[u'council', u'want', u'higher', u'status', u'highway']
[u'courthous', u'group', u'consid', u'green', u'measur']
[u'court', u'decid', u'virgin', u'threat', u'trial']
[u'craft', u'enthusiast', u'head', u'delorain']
[u'townsvill', u'staff']
[u'delay', u'crisi', u'centr', u'decis', u'bring', u'mix']
[u'deportivo', u'lose', u'lead', u'spain']
[u'detaine', u'receiv', u'high', u'school', u'award']
[u'develop', u'confid', u'court', u'decis']
[u'drought', u'dri', u'chees', u'factori', u'profit']
[u'dusti', u'town', u'seek', u'imag']
[u'ear', u'pull', u'world', u'record']
[u'embattl', u'scotland']
[u'england', u'dock', u'player', u'fiasco']
[u'england', u'bangladesh', u'collaps']
[u'england', u'extra', u'fiasco']
[u'famili', u'agenc', u'take', u'green', u'action']
[u'film', u'produc', u'admit', u'anim', u'smuggl']
[u'final', u'chanc', u'franc', u'forget']
[u'financi', u'woe', u'health', u'restructur']
[u'brigad', u'control', u'sydney', u'factori', u'blaze']
[u'fireman', u'die', u'california', u'blaze']
[u'crash', u'kathmandu']
[u'indian', u'groom', u'come', u'bride']
[u'tiwi', u'director', u'deni', u'financi']
[u'freight', u'australia', u'deni', u'hold', u'accus']
[u'friend', u'stand', u'convict', u'karratha', u'bank', u'manag']
[u'frost', u'take', u'toll', u'grain', u'crop']
[u'fund', u'fight', u'wind', u'attempt']
[u'gazza', u'edg', u'closer', u'flight', u'comeback']
[u'gippsland', u'deleg', u'take', u'windfarm', u'issu']
[u'girdler', u'start', u'wale']
[u'gold', u'coast', u'storm', u'damag', u'continu', u'rise']
[u'goondiwindi', u'rugbi', u'club', u'auction', u'hous', u'fund']
[u'govt', u'fund', u'kilcoy', u'abattoir', u'upgrad']
[u'govt', u'vow', u'bring', u'telstra']
[u'shortag', u'boost', u'emerg', u'dept', u'demand']
[u'granni', u'snatcher', u'sentenc', u'melbourn']
[u'grass', u'threaten', u'proserpin']
[u'green', u'councillor', u'call', u'open', u'free', u'trade', u'process']
[u'gross', u'put', u'woe', u'stand']
[u'group', u'offer', u'oyster', u'advic', u'govt']
[u'highland', u'despit', u'coastal', u'rain']
[u'honour', u'babe', u'scratch']
[u'prais', u'australian', u'economi']
[u'indigen', u'agreement', u'clear', u'town', u'growth']
[u'indonesia', u'arrest', u'hotel', u'bomb']
[u'industri', u'commiss', u'hear', u'hospit', u'unfair']
[u'ireland', u'name', u'strong', u'wallabi', u'clash']
[u'irish', u'fear', u'refere', u'ahead', u'wallabi', u'clash']
[u'israel', u'grill', u'polic', u'corrupt', u'probe']
[u'italian', u'tenor', u'franco', u'corelli', u'dead']
[u'girl', u'beatl', u'paul', u'mccartney']
[u'karratha', u'name', u'power', u'corp', u'headquart']
[u'crash', u'chopper']
[u'king', u'theatr', u'plan', u'display']
[u'kosciuszko', u'slow', u'recov', u'bushfir']
[u'latrob', u'host', u'nation', u'rescu', u'competit']
[u'lib', u'expect', u'fight', u'bendigo']
[u'carb', u'diet', u'baker', u'nightmar']
[u'mackay', u'whitsundi', u'receiv', u'drought', u'support']
[u'mahathir', u'offer', u'bang']
[u'mahathir', u'prais', u'cabinet', u'meet']
[u'die', u'highway', u'crash']
[u'fight', u'young', u'attack']
[u'guilti', u'drown', u'children']
[u'kill', u'stab', u'attack', u'melbourn']
[u'shoot', u'dead', u'punchbowl', u'petrol', u'station']
[u'marriag', u'shatter', u'thai', u'beauti', u'queen', u'dream']
[u'mayor', u'lament', u'week', u'gold', u'coast']
[u'mayor', u'push', u'local', u'timber', u'mill']
[u'meet', u'decid', u'nyngan', u'hospit', u'site']
[u'meet', u'consid', u'telstra', u'cut', u'impact']
[u'melbourn', u'polic', u'brace', u'event']
[u'milk', u'produc', u'industri', u'regul']
[u'mincor', u'consid', u'kambalda', u'expans']
[u'miner', u'sand', u'project', u'push', u'lure']
[u'minist', u'back', u'fish', u'bodi']
[u'minist', u'flag', u'child', u'care', u'place']
[u'minist', u'urg', u'inspect', u'school', u'site']
[u'mitchel', u'hail', u'rokocoko', u'return']
[u'mix', u'earn', u'stay', u'market']
[u'mother', u'welcom', u'inquiri', u'cadet', u'suicid']
[u'question', u'brigalow', u'belt', u'appoint']
[u'suspend', u'attack', u'speaker']
[u'gambier', u'health', u'fail', u'secur', u'surgeon', u'contract']
[u'guid', u'encourag', u'rural', u'doctor', u'post']
[u'law', u'crack', u'abalon', u'poacher']
[u'nhulunbuy', u'jail', u'lethal', u'spear', u'attack']
[u'korean', u'patrol', u'boat', u'cross', u'maritim', u'border']
[u'norman', u'add', u'classic', u'line']
[u'rule', u'bite', u'compo', u'case']
[u'ignor', u'mason', u'drink', u'comment']
[u'govt', u'launch', u'oasi', u'probe']
[u'hous', u'debat', u'euthanasia']
[u'south', u'coast', u'council', u'consid', u'super']
[u'warn', u'mozzi', u'plagu']
[u'nurs', u'home', u'plan', u'bring', u'mix', u'reaction']
[u'osullivan', u'prais', u'argentina', u'prop']
[u'pakistan', u'welcom', u'indian', u'peac', u'initi']
[u'parliament', u'tell', u'nation', u'park', u'concern']
[u'pirat', u'notch', u'victori']
[u'plaqu', u'recognis', u'down', u'raaf', u'plan']
[u'back', u'french', u'terror', u'suspect']
[u'fish', u'disput', u'snare', u'australian', u'trawlermen']
[u'reveal', u'role', u'fishermen', u'deport']
[u'policeman', u'face', u'court', u'assault', u'charg']
[u'polic', u'warn', u'school', u'leaver', u'care']
[u'pont', u'pay', u'tribut', u'stand', u'bowler']
[u'psychic', u'unabl', u'help', u'polic', u'miss']
[u'public', u'support', u'airstrip', u'light', u'plan']
[u'auditor', u'review', u'govt', u'advertis']
[u'oppn', u'condemn', u'minist', u'health', u'disclosur']
[u'quri', u'hold', u'ceasefir', u'talk', u'hama']
[u'record', u'year', u'coal', u'industri']
[u'refere', u'direct', u'keep', u'team', u'jone']
[u'renmark', u'crack', u'illeg', u'vine']
[u'report', u'find', u'factor', u'child', u'death']
[u'report', u'highlight', u'world', u'heritag', u'area', u'threat']
[u'resourc', u'stock', u'drive', u'higher']
[u'rivkin', u'richo', u'centr', u'asic', u'inquiri']
[u'roma', u'host', u'chines', u'deleg', u'invest', u'tour']
[u'romania', u'launceston']
[u'roo', u'reject', u'road', u'reflector', u'report']
[u'rossi', u'bid', u'record', u'equal', u'spain']
[u'rubin', u'petrova', u'philadelphia']
[u'rugbi', u'world', u'excit', u'hit', u'launceston']
[u'sack', u'pilot', u'take', u'case']
[u'consid', u'snowtown', u'famili', u'plea']
[u'scienc', u'help', u'improv', u'crop']
[u'scotland', u'lesli']
[u'scot', u'engin', u'room', u'fiji']
[u'scud', u'misfir', u'pari']
[u'secur', u'breach', u'delay', u'flight', u'sydney']
[u'senat', u'committe', u'drub', u'medicar', u'plan']
[u'senat', u'consid', u'kyoto']
[u'simpson', u'call', u'bluff', u'news']
[u'singapor', u'allow', u'limit', u'form', u'clone']
[u'singh', u'look', u'build', u'money', u'lead', u'florida']
[u'charg', u'child', u'porn', u'bust']
[u'smith', u'sorri', u'throw', u'bottl', u'leed']
[u'socceroo', u'neill', u'send']
[u'south', u'african', u'crash', u'kill', u'injur']
[u'south', u'east', u'council', u'differ', u'water', u'stand']
[u'strong', u'dollar', u'boost', u'trade', u'deficit']
[u'suncorp', u'investor', u'offer', u'rosi', u'outlook']
[u'survey', u'show', u'indigen', u'peopl', u'earn', u'rent']
[u'swim', u'bodi', u'latest', u'test']
[u'sydney', u'arrest', u'nigerian', u'email', u'scam']
[u'sydney', u'convict', u'tripl', u'child', u'murder']
[u'busi', u'pressur', u'govt', u'better', u'incent']
[u'privatis', u'condemn', u'profit', u'boom']
[u'teacher', u'accus', u'stand', u'student', u'face']
[u'teen', u'accus', u'murder', u'sentenc', u'charg']
[u'teenag', u'hospit', u'polic', u'chase']
[u'teen', u'face', u'charg', u'stab']
[u'telstra', u'sale', u'vote']
[u'kill', u'kashmir', u'violenc']
[u'toowoomba', u'runner', u'battl', u'rain', u'sleet', u'snow']
[u'townsvill', u'croc', u'giant', u'size']
[u'townsvill', u'troop', u'standbi', u'pacif', u'return']
[u'chang', u'aussi', u'rule']
[u'week', u'wait', u'robinson', u'fraud', u'charg']
[u'studi', u'show', u'arctic', u'thin']
[u'union', u'kick', u'blundston', u'give', u'worker', u'boot']
[u'union', u'say', u'siemen', u'discrimin']
[u'union', u'prosecut', u'fletcher', u'jone', u'redund']
[u'unit', u'nation', u'pull', u'staff', u'iraq', u'report']
[u'uruguay', u'injuri', u'crisi', u'ahead', u'england', u'clash']
[u'archaeologist', u'help', u'reclaim', u'steal', u'maya', u'altar']
[u'court', u'find', u'reagan', u'offici', u'lie']
[u'senat', u'deadlin', u'iraq', u'probe']
[u'vuuren', u'make', u'histori', u'defeat']
[u'ponder', u'killer', u'releas']
[u'govt', u'defend', u'speed', u'camera', u'bonus']
[u'govt', u'deni', u'claim', u'fast', u'rail', u'budget', u'blow']
[u'victorian', u'polic', u'test', u'driver', u'drug']
[u'vieira', u'frustrat', u'latest', u'setback']
[u'vietnames', u'mobster', u'lose', u'death', u'sentenc', u'appeal']
[u'villeneuv', u'seek', u'mclaren', u'test', u'role']
[u'visitor', u'number', u'nation', u'museum']
[u'claim', u'support', u'refund']
[u'wagga', u'crash', u'victim', u'undergo', u'surgeri']
[u'wallabi', u'wari', u'odriscol', u'jone']
[u'wanganeen', u'play', u'career', u'port']
[u'want', u'iraqi', u'general', u'attack']
[u'permit', u'embryo', u'screen']
[u'probe', u'rais', u'timber', u'health', u'risk']
[u'waterfal', u'train', u'crash', u'report', u'delay']
[u'western', u'region', u'receiv', u'interim', u'assist']
[u'westpac', u'deposit', u'profit']
[u'readi', u'stage', u'world', u'say', u'windi']
[u'wind', u'expect', u'bushfir']
[u'woman', u'attack', u'byron', u'beach']
[u'woman', u'convict', u'centrelink', u'scam']
[u'anniversari', u'charg', u'lighthorsemen']
[u'auction', u'adelaid', u'licenc']
[u'seek', u'view', u'taxi', u'fare']
[u'lift', u'look', u'shop', u'centr']
[u'agforc', u'put', u'dampen', u'season', u'hop']
[u'agreement', u'promis', u'greater', u'mine', u'indigen']
[u'airlin', u'competit', u'offer', u'hunter', u'boost']
[u'traffic', u'control', u'discuss', u'worri']
[u'alleg', u'child', u'pornograph', u'releas', u'bail']
[u'alpin', u'road', u'excis', u'anger', u'environment', u'group']
[u'anger', u'sentenc', u'teen', u'killer']
[u'arsenal', u'land', u'heavi', u'fine', u'player', u'ban']
[u'asic', u'launch', u'offici', u'rivkin', u'probe']
[u'atletico', u'sweep', u'sociedad']
[u'afi', u'gettin', u'squar']
[u'auspin', u'timber', u'sale', u'suffer']
[u'aussi', u'tour', u'lanka', u'februari']
[u'austeel', u'get', u'permiss', u'cape', u'preston', u'iron']
[u'australia', u'storm', u'home', u'rule', u'seri']
[u'bank', u'caus', u'slight', u'slide']
[u'bemax', u'merger', u'hasten', u'pooncari', u'project']
[u'berlusconi', u'return', u'crooner', u'root']
[u'best', u'come', u'challeng', u'gold', u'say']
[u'local', u'timber', u'fail']
[u'bosnian', u'court', u'spread', u'crime', u'load']
[u'brack', u'gusmao', u'wreath', u'balibo', u'memori']
[u'break', u'water', u'restrict', u'draw', u'fine']
[u'british', u'cruis', u'ship', u'stomach', u'head']
[u'bunburi', u'nurs', u'protest', u'budget', u'cut']
[u'bushrang', u'crush', u'bull', u'gabba']
[u'businessman', u'defend', u'tattersal']
[u'carr', u'vow', u'tame', u'crime', u'gang']
[u'centrelink', u'fraudster', u'face', u'court']
[u'charg', u'lay', u'crackdown', u'rock', u'thrower']
[u'coff', u'harbour', u'resid', u'tell', u'garden', u'tap']
[u'complementari', u'health', u'sector', u'ask', u'govt', u'support']
[u'cormo', u'sheep', u'fulli', u'unload']
[u'council', u'accept', u'civic', u'centr', u'tender']
[u'council', u'concern', u'resourc', u'manag']
[u'council', u'face', u'mudge', u'abattoir', u'debt', u'repay']
[u'council', u'take', u'action', u'close', u'unauthoris']
[u'court', u'case', u'test', u'legal', u'children']
[u'court', u'deni', u'request', u'offend']
[u'court', u'hear', u'alan', u'jone', u'alia', u'email', u'scam']
[u'court', u'jail', u'prosecutor', u'appeal']
[u'credit', u'union', u'warn', u'futur', u'demutualis']
[u'croc', u'unabl', u'stop', u'king']
[u'csiro', u'launch', u'energi', u'research', u'centr']
[u'currumbin', u'sanctuari', u'rethink', u'anim', u'hospit', u'plan']
[u'death', u'rat', u'higher', u'region', u'report']
[u'death', u'toll', u'rise', u'california', u'fire']
[u'detain', u'teen', u'claim', u'school', u'punish']
[u'develop', u'summon', u'alleg', u'role', u'tree']
[u'doctor', u'gene', u'therapi', u'research', u'earn', u'medal']
[u'earthquak', u'hit', u'northern', u'japan']
[u'east', u'timor', u'ceremoni', u'hold', u'slay', u'journalist']
[u'neighbour', u'give', u'evid', u'murder', u'trial']
[u'father', u'miss', u'german', u'tourist', u'tell', u'trust']
[u'field', u'day', u'drag', u'strip', u'deal', u'council', u'say']
[u'fifa', u'decis', u'disast', u'barthez']
[u'fifa', u'rule', u'barthez', u'marseill']
[u'firefight', u'monitor', u'hinterland', u'blaze']
[u'servic', u'welcom', u'spot', u'fin']
[u'candid', u'step', u'conserv']
[u'fishermen', u'detain', u'northern', u'australia']
[u'flanneri', u'focus', u'oldest', u'fossil']
[u'free', u'trade', u'negoti', u'continu']
[u'fulham', u'look', u'continu', u'good', u'form']
[u'fund', u'explor', u'tourism', u'feasibl']
[u'gaze', u'spur', u'heal']
[u'govt', u'investig', u'fish', u'disput']
[u'green', u'fear', u'free', u'trade', u'ambush']
[u'group', u'lament', u'delay', u'drought', u'declar']
[u'gunner', u'pile', u'agoni', u'leed']
[u'hagan', u'coach', u'maroon']
[u'hagan', u'coach', u'maroon', u'bennett', u'stand']
[u'halloween', u'caper', u'trigger', u'capitol', u'hill', u'alert']
[u'health', u'servic', u'offer', u'specialist', u'assur']
[u'high', u'court', u'adjourn', u'child', u'detent', u'hear']
[u'high', u'hop', u'chopper', u'crash', u'salvag', u'effort']
[u'hinchinbrook', u'develop', u'optimist', u'resort', u'plan']
[u'hmas', u'manoora', u'return', u'solomon']
[u'hospit', u'review', u'oper', u'deficit']
[u'hotel', u'fear', u'smoke', u'law', u'impact']
[u'hous', u'boom', u'step', u'rat', u'pressur']
[u'howard', u'warn', u'australian', u'danger', u'iraq']
[u'howard', u'watch', u'rivkin', u'investig']
[u'howel', u'fire', u'florida', u'lead']
[u'hume', u'council', u'fume', u'amalgam', u'failur']
[u'hussain', u'miss', u'england', u'cruis']
[u'indigen', u'fall', u'rest', u'societi', u'census']
[u'industri', u'action', u'threaten', u'power', u'suppli']
[u'injur', u'mortaza', u'week']
[u'investig', u'begin', u'factori']
[u'iran', u'nuke', u'declar', u'comprehens', u'watchdog']
[u'boss', u'want', u'argentina', u'nation']
[u'isra', u'armi', u'chief', u'warn', u'anger', u'govern']
[u'italian', u'court', u'overturn', u'charg']
[u'jacobson', u'grab', u'lead', u'spain']
[u'jail', u'term', u'need', u'threat', u'melbourn', u'water']
[u'labor', u'dump', u'parti']
[u'land', u'minist', u'fish', u'trip', u'highlight', u'river']
[u'latrob', u'morwel', u'headquart', u'shape']
[u'lem', u'death', u'vole', u'truth']
[u'lewi', u'fight', u'bout', u'trainer']
[u'lib', u'candid', u'seek', u'drought', u'explan']
[u'macgil', u'fail', u'fit', u'test']
[u'magistr', u'highlight', u'need', u'child', u'offend', u'rehab']
[u'mahathir', u'reign']
[u'mahathir', u'successor', u'swear']
[u'malaysia', u'anwar', u'blast', u'mahathir', u'legaci']
[u'malaysia', u'tie', u'come', u'howard']
[u'await', u'sentenc', u'southbank', u'rape']
[u'polic', u'guard', u'corrim', u'sieg']
[u'maroochi', u'candid', u'rule', u'backroom', u'deal']
[u'marriott', u'attack', u'plan', u'blast']
[u'melbourn', u'policeman', u'commend', u'wateri', u'rescu']
[u'charg', u'expect', u'child', u'porn', u'ring']
[u'motor', u'bodi', u'call', u'focus', u'driver', u'train']
[u'fear', u'fund', u'drop', u'setback', u'countri', u'sport']
[u'welcom', u'reject', u'legisl', u'sell']
[u'munro', u'martin', u'park', u'get', u'prefer', u'art']
[u'murder', u'committ', u'hear', u'expect']
[u'bodi', u'overse', u'camel', u'industri']
[u'resid', u'welcom', u'dreamworld']
[u'subdivis', u'plan', u'capricorn', u'coast']
[u'bail', u'alleg', u'toothfish', u'pirat']
[u'concord', u'keep', u'fli', u'announc']
[u'north', u'look', u'strong', u'sale']
[u'nova', u'group', u'grab', u'adelaid', u'radio', u'licenc']
[u'appeal', u'jago', u'murder', u'sentenc']
[u'govt', u'back', u'tamworth', u'hors', u'centr', u'plan']
[u'urban', u'speed', u'limit', u'drop']
[u'govt', u'accus', u'reneg', u'midwif', u'promis']
[u'hous', u'approv', u'year', u'high']
[u'border', u'town', u'seek', u'close', u'highway']
[u'nurs', u'welcom', u'medicar', u'rebat', u'plan']
[u'offici', u'suspend', u'england', u'clash']
[u'park', u'prepar', u'ambassador', u'visit']
[u'petrol', u'station', u'hold', u'trigger', u'polic', u'hunt']
[u'piraci', u'rise']
[u'plan', u'school', u'dougla', u'scuttl']
[u'prepar', u'bush', u'green', u'stunt']
[u'polic', u'interview', u'woman', u'fatal', u'stab']
[u'power', u'list', u'steven', u'kingsley']
[u'pratt', u'bow', u'philadelphia']
[u'primari', u'produc', u'urg', u'check', u'interim', u'drought']
[u'prison', u'keep', u'confin', u'day']
[u'privat', u'health', u'insur', u'complaint', u'surg']
[u'product', u'clone', u'anim', u'safe']
[u'program', u'help', u'school', u'leaver', u'avoid', u'problem']
[u'public', u'warn', u'irukandji', u'jellyfish', u'sting']
[u'putin', u'fire', u'chief', u'staff']
[u'add', u'sampl', u'nation', u'crimin', u'databas']
[u'rapist', u'jail', u'go', u'appeal']
[u'govt', u'urg', u'help', u'resolv', u'rat']
[u'oppn', u'call', u'burn', u'off']
[u'rebel', u'kill', u'villag', u'northern', u'uganda']
[u'region', u'victoria', u'recycl', u'depot']
[u'regul', u'fail', u'stop', u'illeg', u'deer', u'shoot']
[u'report', u'show', u'crime', u'increas']
[u'resid', u'minimbah', u'fight', u'court']
[u'review', u'find', u'disabl', u'face', u'workplac', u'discrimin']
[u'rockhampton', u'busi', u'remain', u'confid']
[u'roddick', u'world']
[u'romania', u'bow', u'style']
[u'royal', u'tongan', u'airlin', u'nosed']
[u'runner', u'high', u'fundrais', u'feat']
[u'sack', u'hospit', u'guard', u'reinstat']
[u'labor', u'elect', u'koutsantoni', u'presid']
[u'salin', u'group', u'encourag', u'channel', u'success']
[u'samoa', u'seek', u'support']
[u'museum', u'display', u'million', u'year', u'fossil']
[u'scientist', u'reef', u'protect', u'boost']
[u'scud', u'reserv', u'bench', u'master']
[u'second', u'marina', u'plan', u'coff', u'harbour']
[u'second', u'solar', u'erupt', u'stir', u'magnet', u'storm']
[u'second', u'string', u'franc', u'strong']
[u'offend', u'elud', u'author', u'escap']
[u'shark', u'attack']
[u'ship', u'sink', u'syria', u'storm', u'fear', u'dead']
[u'siemen', u'offer', u'workplac', u'agreement']
[u'smyth', u'slam', u'rule']
[u'south', u'american', u'fishermen', u'home']
[u'spi', u'espionag', u'sentenc', u'lengthen']
[u'srinath', u'quit', u'sidelin', u'australian', u'tour']
[u'stanhop', u'attack', u'ignor', u'forest', u'group']
[u'strasbourg', u'scratch', u'holi', u'order', u'track']
[u'strike', u'halt', u'sub', u'product', u'union']
[u'studi', u'show', u'sediment', u'kill', u'fish', u'western', u'port']
[u'survey', u'highlight', u'small', u'rise', u'busi', u'confid']
[u'sydney', u'shoot', u'link', u'drive']
[u'tasmanian', u'wit', u'side', u'rugbi', u'match']
[u'school', u'win', u'environ', u'award']
[u'world', u'oldest', u'person', u'die', u'age']
[u'thirteen', u'kill', u'south', u'africa', u'crash']
[u'timelin', u'malaysia', u'mahathir']
[u'tourist', u'death', u'prompt', u'commerci', u'vessel']
[u'traine', u'learn', u'remot', u'area']
[u'trescothick', u'second', u'inning']
[u'trio', u'face', u'court', u'polic', u'drug', u'oper']
[u'troop', u'return', u'solomon', u'deploy']
[u'tweed', u'need', u'industri', u'land', u'hit', u'crisi', u'point']
[u'union', u'ask', u'clear', u'definit', u'region']
[u'unit', u'nation', u'pull', u'staff', u'iraq', u'report']
[u'iraq', u'staff', u'baghdad', u'weekend']
[u'cut', u'middl', u'east', u'road', u'team']
[u'data', u'lift', u'stock', u'hit', u'bond']
[u'econom', u'growth', u'jump']
[u'hous', u'rep', u'approv', u'billion', u'iraq']
[u'offer', u'reward', u'jordanian', u'link']
[u'showman', u'mend', u'tiger', u'attack']
[u'soldier', u'suspect', u'taliban', u'fighter', u'kill']
[u'govt', u'promis', u'toll', u'ringwood', u'bypass']
[u'oppn', u'want', u'polic', u'transfer', u'assur']
[u'victoria', u'sport', u'bonanza']
[u'vidmar', u'sydney', u'unit', u'clash']
[u'virgin', u'blue', u'plan', u'float']
[u'govt', u'dump', u'moora', u'hospit', u'plan']
[u'wait', u'list', u'rise', u'loddon', u'malle', u'public']
[u'wallabi', u'readi', u'irish', u'test', u'gregan']
[u'miner', u'win', u'excel', u'award']
[u'wangaratta', u'prepar', u'jazz', u'fest', u'influx']
[u'oppn', u'worri', u'goldfield', u'polic', u'number']
[u'warn', u'receiv', u'wisden', u'award']
[u'water', u'corp', u'lodg', u'develop', u'applic']
[u'water', u'demand', u'rise', u'council', u'supplement', u'suppli']
[u'water', u'storag', u'boost', u'help', u'save', u'job']
[u'track', u'face', u'derbi', u'runner']
[u'track', u'worri', u'derbi', u'runner']
[u'wild', u'wind', u'fell', u'tree', u'sydney']
[u'wollongong', u'council', u'extend', u'citi', u'centr', u'exhibit']
[u'woman', u'guilti', u'fraud']
[u'kill', u'kashmir', u'violenc']
[u'saga', u'shake', u'england', u'woodward']
[u'kill', u'fight', u'afghanistan', u'provinc']
[u'suburban', u'speed', u'limit', u'extend']
[u'adventur', u'day', u'complet', u'marathon', u'feat']
[u'aid', u'guerrilla', u'leader', u'kill', u'colombia']
[u'traffic', u'control', u'strike', u'safeti']
[u'arafat', u'fatah', u'movement', u'resum', u'talk', u'quri']
[u'asbesto', u'discoveri', u'anger', u'newport', u'worker']
[u'asylum', u'seeker', u'refus', u'refuge', u'status', u'christma']
[u'atsic', u'propos', u'smart', u'card', u'welfar', u'plan']
[u'aussi', u'mumbai']
[u'australian', u'iraq', u'warn', u'violenc', u'continu']
[u'australia', u'india']
[u'author', u'search', u'aboard', u'miss', u'speed']
[u'weather', u'halt', u'epga', u'event']
[u'banger', u'need', u'support', u'critic', u'say', u'whatmor']
[u'beckham', u'get', u'clear']
[u'bomb', u'kill', u'soldier', u'northern', u'iraq']
[u'bullet', u'thrash', u'giant', u'win', u'tiger', u'breaker']
[u'govt', u'review', u'traffic', u'plan']
[u'colleg', u'commit', u'improv', u'medic', u'standard']
[u'cooler', u'weather', u'bring', u'hope', u'california']
[u'cwealth', u'secretari', u'general', u'pay', u'tribut', u'mahathir']
[u'cyclon', u'traci', u'wreck']
[u'darwin', u'home', u'say', u'norfolk', u'administr']
[u'davison', u'blitz', u'tiger']
[u'diesel', u'power', u'electr', u'plant', u'plan']
[u'elvstroem', u'take', u'victoria', u'derbi']
[u'aim', u'spam']
[u'ferguson', u'reignit', u'feud', u'wenger']
[u'arrest', u'britain', u'terror', u'law']
[u'freeman', u'olymp', u'torch']
[u'gastro', u'outbreak', u'caus', u'strain', u'hobart', u'hospit']
[u'gaze', u'join', u'exclus', u'club']
[u'goodwin', u'plead', u'guilti', u'behaviour', u'breach']
[u'goosen', u'grab', u'shoot', u'lead', u'florida']
[u'govt', u'say', u'opposit', u'child', u'protect', u'polici']
[u'govt', u'say', u'nat', u'child', u'protect', u'polici']
[u'high', u'wind', u'power', u'hundr', u'home']
[u'hmas', u'darwin', u'dock', u'port', u'adelaid']
[u'hope', u'spong', u'research', u'world', u'stage']
[u'freez', u'world', u'fund']
[u'give', u'thumb', u'west', u'indi', u'world']
[u'indigen', u'popul']
[u'injuri', u'cut', u'woodman', u'uruguay', u'clash']
[u'investig', u'wait', u'indonesian', u'fish', u'boat']
[u'iran', u'sign', u'nuclear', u'protocol', u'week', u'sourc']
[u'iraqi', u'guerrilla', u'kill', u'soldier']
[u'isra', u'troop', u'kill', u'palestinian', u'west', u'bank']
[u'japan', u'world', u'oldest', u'person']
[u'kirkland', u'carragh', u'sign', u'liverpool', u'deal']
[u'laport', u'slam', u'world', u'ref']
[u'gasp', u'scot', u'dash', u'fiji', u'hop']
[u'lawyer', u'make', u'complaint', u'asio', u'raid']
[u'liberia', u'presid', u'taylor', u'challeng', u'crime']
[u'malaysia', u'call', u'elect', u'victori']
[u'condit', u'hotel', u'attack']
[u'kill', u'fall', u'cliff']
[u'meat', u'clone', u'anim', u'safe', u'studi']
[u'mugab', u'overhaul', u'central', u'bank', u'cabinet', u'report']
[u'muslim', u'spiritu', u'leader', u'plead', u'sydney']
[u'enterpris', u'plan', u'creation']
[u'labor', u'presid', u'concentr', u'membership']
[u'noxious', u'weed', u'prove', u'difficult', u'control']
[u'farm', u'target', u'thiev', u'senat']
[u'get', u'case', u'bend']
[u'opposit', u'attack', u'howard', u'iraq']
[u'opposit', u'hinder', u'govt', u'counter', u'terror']
[u'pacemen', u'england']
[u'philippin', u'releas', u'militari', u'mutin']
[u'polic', u'seek', u'help', u'rockhampton', u'stab']
[u'public', u'warn', u'potenti', u'whoop', u'cough', u'epidem']
[u'nation', u'prepar', u'elect', u'challeng']
[u'record', u'holder', u'unfaz', u'woodbridg', u'doubl']
[u'report', u'suggest', u'power', u'altern']
[u'rescu', u'team', u'face', u'tough', u'test']
[u'resid', u'face', u'spot', u'fin', u'breach']
[u'review', u'examin', u'cormo', u'express', u'saga']
[u'rivkin', u'face', u'prosecut']
[u'roddick', u'advanc', u'henman', u'stun', u'feder']
[u'rossi', u'secur', u'provision', u'pole', u'spain']
[u'russian', u'criticis', u'freez', u'share']
[u'sharon', u'counter', u'russian', u'road', u'offens']
[u'snapper', u'strict', u'enforc']
[u'solomon', u'intervent', u'head', u'hail', u'progress']
[u'spanish', u'govern', u'give', u'ahead', u'huge']
[u'springbok', u'rampag', u'quarter']
[u'striker', u'unit']
[u'sydney', u'gene', u'research', u'receiv', u'award']
[u'thousand', u'expect', u'art', u'fair']
[u'kill', u'separ', u'crash']
[u'archivist', u'plan', u'onlin', u'strategi']
[u'explos', u'hear', u'near', u'coalit', u'compound']
[u'iraq', u'staff', u'baghdad', u'weekend']
[u'cyclon', u'expect', u'come', u'summer']
[u'plan', u'push', u'chang', u'opposit']
[u'senat', u'deadlin', u'iraq', u'intellig', u'expir']
[u'stock', u'open', u'flat', u'analyst']
[u'vandal', u'paint', u'monument', u'slay', u'isra']
[u'polic', u'miss', u'trio']
[u'govt', u'address', u'predict', u'public', u'sector', u'staff']
[u'wallabi', u'surviv', u'ireland', u'scare']
[u'water', u'wast', u'awar', u'rais', u'clean', u'ocean']
[u'welsh', u'lamb', u'seek', u'avoid', u'kiwi', u'slaughter']
[u'wenger', u'defend', u'highburi', u'boy']
[u'weather', u'derbi', u'outcom']
[u'woman', u'jail', u'tri', u'kill', u'daughter']
[u'world', u'oldest', u'test', u'cricket', u'dead']
[u'soldier', u'kill', u'attack', u'helicopt']
[u'peopl', u'kill', u'clash', u'nepal']
[u'kill', u'plung', u'indian', u'gorg']
[u'introduc', u'anti', u'gazump', u'law']
[u'black', u'surviv', u'welsh', u'scare']
[u'clear', u'cannon', u'burk']
[u'warn', u'extend', u'phase', u'trade', u'agreement']
[u'archbishop', u'resist', u'pressur', u'resign']
[u'typhoid', u'fever', u'outbreak']
[u'aussi', u'exact', u'swift', u'reveng', u'india']
[u'build', u'sector', u'job', u'boom', u'survey']
[u'bulli', u'target', u'campaign']
[u'californian', u'firefight', u'welcom', u'cooler', u'weather']
[u'carr', u'criticis', u'lobbi', u'peac', u'prize', u'award']
[u'concert', u'celebr', u'jabiluka', u'rehabilit']
[u'conflict', u'main', u'reason', u'telstra', u'sale']
[u'conserv', u'order', u'cyclon', u'traci', u'wreck']
[u'cum', u'confid', u'ahead']
[u'vaio', u'rescu', u'point', u'battl', u'juve']
[u'dwyer', u'call', u'major', u'chang']
[u'dwyer', u'savag', u'wallabi']
[u'england', u'demolish', u'uruguay']
[u'say', u'tamil', u'tiger', u'propos', u'import', u'step']
[u'film', u'festiv', u'celebr', u'mother', u'teresa']
[u'nehra', u'recal', u'india', u'squad']
[u'isra', u'soldier', u'wound', u'nablus', u'explos']
[u'german', u'protest', u'welfar', u'economi', u'reform']
[u'goosen', u'retain', u'florida', u'lead']
[u'goulburn', u'wait', u'hospit', u'site', u'develop', u'plan']
[u'govt', u'aim', u'strengthen', u'terror', u'law']
[u'govt', u'clear', u'lebanon', u'extradit', u'qaeda']
[u'govt', u'launch', u'nation', u'research', u'program']
[u'govt', u'propos', u'wider', u'medicar', u'safeti']
[u'hazel', u'hawk', u'battl', u'alzheim', u'diseas']
[u'health', u'care', u'card', u'limit', u'fail', u'incom']
[u'henman', u'roll', u'roddick', u'reach', u'pari', u'final']
[u'henri', u'plung', u'leed', u'deeper', u'mire']
[u'hicki', u'return', u'home', u'ruptur', u'achill']
[u'stay', u'rooney', u'tell', u'everton']
[u'indigen', u'communiti', u'mine', u'process']
[u'indonesia', u'step', u'hunt', u'bomb', u'suspect']
[u'inspir', u'adventur', u'complet', u'sixth', u'marathon']
[u'iran', u'say', u'suspend', u'stop', u'enrich']
[u'iraq', u'interim', u'foreign', u'minist', u'refus']
[u'iraq', u'invit', u'offici', u'region', u'summit']
[u'isra', u'mark', u'assassin']
[u'jacobson', u'rodil', u'lock', u'dramat', u'battl', u'spain']
[u'jacobson', u'rodil', u'thriller']
[u'katherin', u'elder', u'support', u'litter', u'reduct', u'program']
[u'librari', u'aim', u'small', u'busi', u'open', u'adelaid']
[u'oxygen', u'benefit', u'dinosaur', u'expert']
[u'malaysian', u'ask', u'strengthen', u'rule']
[u'die', u'cliff', u'fall']
[u'dead', u'south', u'brisban']
[u'marin', u'servic', u'test', u'search', u'rescu', u'skill']
[u'marriott', u'bomb', u'suspect', u'confess', u'express', u'remors']
[u'martyn', u'centuri', u'help', u'australia', u'victori']
[u'mauresmo', u'battl', u'final', u'myskina']
[u'stand', u'privat', u'memorabilia', u'auction']
[u'media', u'rep', u'explor', u'legal', u'protect']
[u'plung', u'manila', u'build', u'site']
[u'govt', u'depart', u'investig', u'imag']
[u'consid', u'charter', u'flight', u'boost', u'tourism']
[u'parent', u'face', u'ban', u'sidelin', u'abus']
[u'parramatta', u'power', u'record']
[u'part', u'venic', u'water']
[u'pitch', u'invad', u'face', u'brisban', u'court']
[u'pitch', u'invas', u'prompt', u'lang', u'park', u'secur', u'review']
[u'polic', u'charg', u'murder', u'fight']
[u'polic', u'identifi', u'accid', u'victim']
[u'polic', u'investig', u'fatal', u'accid']
[u'polic', u'investig', u'man', u'bodi']
[u'policeman', u'serious', u'injur', u'fall']
[u'pont', u'hail', u'clark', u'mumbai']
[u'nat', u'reject', u'insur', u'chang']
[u'quak', u'rattl', u'north', u'eastern', u'japan']
[u'quri', u'put', u'finish', u'touch', u'cabinet', u'sharon']
[u'raid', u'continu', u'carr', u'warn']
[u'report', u'damn', u'assist', u'homeless']
[u'research', u'search', u'studi', u'particip']
[u'ronaldo', u'form', u'real']
[u'rossi', u'power', u'pole', u'valencia']
[u'russian', u'concern', u'yuko', u'crisi', u'spread']
[u'jockey', u'jump', u'gender', u'barrier', u'melbourn']
[u'samoa', u'coach', u'lash', u'kiwi', u'player', u'poacher']
[u'scotland', u'grime', u'issu', u'warn', u'wallabi']
[u'sick', u'man', u'famili', u'criticis', u'medic', u'offic', u'flight']
[u'solomon', u'see', u'bright', u'econom', u'outlook']
[u'springbok', u'niekerk', u'world']
[u'stoner', u'take', u'career', u'grand', u'prix']
[u'superbik', u'champ', u'hodgson', u'switch', u'motogp']
[u'support', u'bush', u'declin', u'poll', u'reveal']
[u'hospit', u'struggl', u'gastro', u'outbreak']
[u'hous', u'say', u'properti', u'sector', u'remain', u'strong']
[u'teenag', u'hospit', u'sydney', u'stab']
[u'telco', u'industri', u'need', u'competit', u'accc', u'deputi']
[u'ten', u'thousand', u'challeng', u'blair', u'hunt']
[u'tonn', u'rubbish', u'remov', u'nepales', u'mountain']
[u'iranian', u'confirm', u'detent', u'academ']
[u'injur', u'crash', u'near', u'blue', u'mountain']
[u'mortar', u'bomb', u'land', u'school', u'iraq', u'princip']
[u'ultra', u'marathon', u'legend', u'young', u'die', u'age']
[u'chopper', u'shoot', u'iraq', u'casualti']
[u'episcop', u'church', u'appoint', u'bishop']
[u'stand', u'firm', u'terror', u'rumsfeld']
[u'teen', u'surfer', u'recov', u'shark', u'attack']
[u'acceler', u'handov', u'iraq']
[u'govt', u'play', u'call', u'hospit', u'inquiri']
[u'viduka', u'futur', u'doubt', u'leed']
[u'elect', u'fund', u'legisl', u'dump']
[u'fisheri', u'polic', u'start', u'abalon', u'season']
[u'govt', u'put', u'prison', u'contractor', u'notic']
[u'wallabi', u'receiv', u'irish', u'wake']
[u'wallabi', u'line', u'worri', u'jone']
[u'walton', u'go', u'noosa']
[u'waugh', u'lift', u'blue', u'victori']
[u'weather', u'help', u'firefight', u'contain', u'california']
[u'white', u'claim', u'gabba']
[u'wildcat', u'claw', u'gaze', u'celebr', u'style']
[u'woman', u'hospit', u'boat']
[u'woman', u'question', u'fatal', u'stab']
[u'woman', u'ram', u'build', u'bush', u'ralli']
[u'announc', u'bushfir', u'spatial', u'zone']
[u'adventur', u'wind', u'surfer', u'conquer', u'pacif']
[u'journalist', u'detain', u'forc', u'north']
[u'age', u'care', u'facil', u'receiv', u'legaci', u'boost']
[u'alga', u'spark', u'fish', u'kill', u'fear']
[u'qaeda', u'suspect', u'intend', u'harm', u'australia']
[u'mere', u'truffl', u'worth', u'gold']
[u'anglican', u'prepar', u'consecr', u'bishop']
[u'antarct', u'enzym', u'speed', u'test', u'report']
[u'appeal', u'expect', u'bank', u'manag', u'sentenc']
[u'asio', u'visit', u'hick', u'habib']
[u'asylum', u'seeker', u'expect', u'testifi', u'peopl']
[u'asylum', u'seeker', u'testifi', u'alleg', u'smuggler']
[u'aurora', u'australi', u'set', u'antarct', u'expedit']
[u'aussi', u'golfer', u'face', u'drop']
[u'aust', u'call', u'help', u'rebuild', u'solomon']
[u'australia', u'fail', u'sign', u'sheep', u'deal', u'saudi']
[u'australian', u'doctor', u'lead', u'group']
[u'australia', u'scrape', u'home', u'thriller']
[u'babi', u'monitor', u'sting', u'trap', u'robber']
[u'ballarat', u'hous', u'price', u'continu', u'rise']
[u'ballarat', u'trainer', u'hop', u'strong']
[u'bank', u'recommend', u'asian', u'monetari', u'fund']
[u'barraba', u'popul', u'doubl', u'annual', u'festiv']
[u'bendigo', u'mother', u'win', u'council', u'elect']
[u'blast', u'rip', u'pipelin', u'northern', u'iraq']
[u'blaze', u'overshadow', u'mummifi', u'inquiri']
[u'boati', u'criticis', u'lack', u'rescu', u'contribut']
[u'boonah', u'call', u'local', u'approach', u'water', u'reform']
[u'boost', u'barcaldin', u'ambul', u'servic']
[u'brewarrina', u'minus', u'doc', u'worker']
[u'british', u'ambassador', u'tehran', u'summon', u'blair']
[u'british', u'explor', u'finish', u'seven', u'straight', u'marathon']
[u'cairn', u'woman', u'face', u'murder', u'charg']
[u'illeg', u'fish', u'boat', u'regist']
[u'carr', u'tell', u'armi', u'offic', u'polit']
[u'centuri', u'runner', u'hamilton', u'island', u'takeov']
[u'clerk', u'senat', u'question', u'green']
[u'communiti', u'hop', u'hospit', u'base', u'servic']
[u'convict', u'hand']
[u'council', u'consid', u'move', u'visitor']
[u'council', u'face', u'department', u'investig']
[u'council', u'give', u'averag', u'rat']
[u'council', u'skate', u'park', u'injuri']
[u'council', u'sign', u'aborigin', u'communiti']
[u'council', u'throw', u'parti', u'follow', u'complet']
[u'coupl', u'charg', u'babi', u'death']
[u'crackdown', u'deter', u'cattl', u'thief']
[u'crane', u'collaps', u'sydney', u'harbour']
[u'csiro', u'research', u'sceptic', u'bushfir']
[u'schedul', u'unfair', u'boss', u'admit']
[u'democrat', u'indic', u'support', u'daylight', u'save']
[u'dog', u'face', u'bleak', u'futur', u'kill', u'spree']
[u'appeal', u'bank', u'manag', u'sentenc']
[u'dump', u'appeal', u'wast', u'money', u'minist', u'say']
[u'echuca', u'polic', u'target', u'traffic', u'offenc']
[u'england', u'reinforc', u'lock']
[u'environment', u'group', u'sweat', u'public', u'support']
[u'etern', u'flame', u'extinguish', u'protest', u'camp']
[u'minist', u'testifi', u'alleg', u'entitl']
[u'open', u'bishop', u'consecr']
[u'state', u'cwealth', u'court', u'battl', u'rememb']
[u'walk', u'free', u'light', u'plane', u'crash']
[u'foreign', u'terrorist', u'crimin', u'iraq', u'attack']
[u'forest', u'agreement', u'need', u'commit']
[u'forest', u'feder', u'pleas', u'project', u'pledg']
[u'foster', u'guilti', u'babi', u'manslaught']
[u'fresh', u'wave', u'buyer', u'eye', u'properti', u'market']
[u'gang', u'violenc', u'premier', u'agenda']
[u'gastro', u'outbreak', u'delay', u'surgeri']
[u'gold', u'coast', u'connect', u'melbourn', u'runner']
[u'gold', u'medal', u'steal', u'paralympian', u'home']
[u'goosen', u'hold', u'singh', u'money', u'titl', u'doubt']
[u'govt', u'ask', u'state', u'support', u'tougher', u'terror', u'law']
[u'govt', u'anti', u'terror', u'push', u'divers']
[u'govt', u'block', u'telstra', u'director', u'rise']
[u'govt', u'chang', u'drug', u'depend', u'disabl', u'rule']
[u'lobbi', u'govt', u'medicar', u'polici']
[u'group', u'call', u'hinchinbrook', u'develop']
[u'hall', u'consid', u'trust', u'fund', u'propos']
[u'hama', u'truce', u'israel', u'limit', u'attack']
[u'hazel', u'hawk', u'confront', u'alzheim']
[u'helicopt', u'shoot', u'tragic']
[u'henman', u'hail', u'greatest', u'achiev', u'pari']
[u'hewitt', u'carri', u'norman', u'club']
[u'star', u'diddi', u'run', u'marathon']
[u'hors', u'race', u'fan', u'cheer', u'past', u'present', u'hero']
[u'human', u'remain', u'dens', u'bushland']
[u'hunter', u'rail', u'guard', u'claim', u'victori', u'decis']
[u'hussey', u'put', u'bushrang']
[u'india', u'plan', u'internet', u'push', u'region']
[u'indigen', u'council', u'form', u'region', u'plan']
[u'indigen', u'link', u'project', u'extend']
[u'indigen', u'lobbi', u'group', u'want', u'money', u'releas']
[u'indonesian', u'flood', u'kill', u'foreign', u'identifi']
[u'indonesian', u'polic', u'fear', u'fugit', u'terrorist', u'strike']
[u'injur', u'walton', u'win', u'noosa', u'triathlon']
[u'injuri', u'ranger', u'blue']
[u'inquest', u'open', u'whistleblow', u'death']
[u'rate', u'uncertainti', u'weigh', u'market']
[u'intern', u'show', u'doctor', u'dementia']
[u'investig', u'look', u'mackay', u'chopper', u'crash']
[u'ireland', u'hop', u'fast', u'start', u'french']
[u'israel', u'mother', u'strike']
[u'jacobson', u'win', u'master', u'play', u'leaney', u'fifth']
[u'jewish', u'leader', u'back', u'carr', u'peac', u'prize']
[u'climb']
[u'jone', u'back', u'gregan', u'sailor']
[u'judg', u'urg', u'valanc', u'settl', u'court']
[u'kangaroo', u'warm', u'wale', u'massacr']
[u'kasper', u'keen', u'cairn', u'black', u'cap']
[u'sudden', u'death']
[u'liverpool', u'track']
[u'lobster', u'industri', u'push', u'quota', u'scheme']
[u'local', u'byfield', u'timber']
[u'charg', u'internet', u'chat', u'room', u'offenc']
[u'die', u'highway', u'crash']
[u'face', u'summon', u'incid']
[u'court', u'wagga', u'sieg']
[u'murder', u'charg', u'face', u'court']
[u'manoora', u'leav', u'sydney']
[u'manoora', u'captain', u'hop', u'welcom', u'ship']
[u'recov', u'croc', u'attack']
[u'court', u'hospit', u'incid']
[u'marathon', u'runner', u'cliff', u'young', u'die', u'age']
[u'mauremso', u'down', u'myskina', u'claim', u'pennsylvania', u'titl']
[u'mayor', u'fume', u'egan', u'letter']
[u'mayor', u'drive', u'transport', u'talk']
[u'meet', u'tell', u'farmer', u'worri', u'govt']
[u'strut', u'facial', u'hair', u'world', u'championship']
[u'stand', u'trial', u'man', u'murder']
[u'west', u'build', u'give', u'heritag', u'list']
[u'frost', u'hit', u'central', u'west', u'farmer']
[u'injuri', u'miseri', u'flower']
[u'want', u'action', u'bairnsdal', u'hospit', u'revamp']
[u'gibson', u'iron', u'start', u'negoti', u'china']
[u'public', u'warn', u'tough', u'water', u'restrict']
[u'murphi', u'goal', u'give', u'liverpool', u'late', u'victori']
[u'nat', u'seek', u'robina', u'hospit', u'emerg', u'boost']
[u'newcastl', u'polic', u'investig', u'fatal', u'halloween']
[u'nikol', u'defend', u'mummifi', u'ride']
[u'nikol', u'answer', u'question', u'mummifi', u'ride']
[u'need', u'rain', u'help', u'crop']
[u'secur', u'check', u'media', u'bush']
[u'reform', u'teacher', u'misconduct', u'manag']
[u'back', u'border', u'polic', u'post']
[u'museum', u'call', u'public', u'access', u'shipwreck']
[u'race', u'investig', u'bank', u'manag', u'bet']
[u'nuclear', u'dump', u'appeal', u'begin', u'today']
[u'oliveira', u'trick', u'help', u'valencia']
[u'overeat', u'gene']
[u'oversea', u'train', u'doctor', u'need', u'check', u'report']
[u'oxley', u'fear', u'bridg', u'delay', u'highway', u'upgrad']
[u'parent', u'target', u'youth', u'drink', u'campaign']
[u'pari', u'allow', u'high', u'rise']
[u'pasminco', u'releas', u'quarter', u'review']
[u'pilot', u'disput', u'head', u'arbitr']
[u'plan', u'start', u'broom', u'growth']
[u'say', u'widow', u'memori', u'snub', u'mistak']
[u'cabinet', u'consid', u'deal']
[u'passport', u'print', u'machin', u'suspect', u'steal']
[u'polic', u'investig', u'gunnedah', u'rail', u'incid']
[u'polic', u'investig', u'suspici', u'death']
[u'polic', u'question', u'teenag', u'burn', u'bodi']
[u'polic', u'nonsens', u'stanc', u'biki']
[u'polic', u'urg', u'safe', u'summer', u'parti']
[u'politician', u'fear', u'plan', u'radio', u'chang']
[u'posit', u'sign', u'manufactur']
[u'postpon', u'transport', u'meet', u'anger', u'govt']
[u'power', u'firm', u'hop', u'lower', u'council', u'rat', u'wind']
[u'pressur', u'bush', u'iraq', u'casualti', u'mount']
[u'prison', u'shoot', u'dead', u'escap', u'attempt', u'court', u'tell']
[u'public', u'discuss', u'use', u'king', u'theatr']
[u'publish', u'print', u'unrevis', u'draft', u'book', u'mistak']
[u'govt', u'say', u'homeless', u'issu', u'address']
[u'program', u'target', u'drug', u'abus']
[u'race', u'club', u'run', u'award']
[u'ranger', u'shoot', u'escap', u'water', u'buffalo', u'melbourn']
[u'receiv', u'put', u'support', u'spin', u'surviv']
[u'reclaim', u'night', u'organis', u'upset', u'clash']
[u'relat', u'mine', u'compani', u'indigen']
[u'report', u'stop', u'fish', u'farm']
[u'report', u'put', u'live', u'murray', u'initi']
[u'resid', u'prepar', u'cyclon', u'season']
[u'retail', u'spend', u'strong', u'inflat', u'check']
[u'retail', u'spend']
[u'risk', u'travel', u'small', u'studi']
[u'roma', u'shake', u'reggina', u'close', u'itali']
[u'rossi', u'quit', u'honda', u'spanish']
[u'rubbish', u'search', u'telstra', u'file', u'dump']
[u'ruddock', u'hail', u'level', u'cooper', u'french']
[u'rugbi', u'fin', u'pitch', u'invas']
[u'rural', u'doctor', u'meet', u'hospit', u'board', u'snub']
[u'take', u'wast', u'dump', u'opposit', u'feder', u'court']
[u'year', u'student', u'begin', u'final', u'exam']
[u'scotland', u'taylor', u'face', u'wallabi']
[u'season', u'injur', u'venus']
[u'busi', u'begin', u'woodward', u'england']
[u'seven', u'indian', u'kashmir', u'unrest']
[u'shire', u'resid', u'chang']
[u'shire', u'want', u'water', u'alloc', u'manag', u'plan']
[u'simplot', u'test', u'equip', u'ulverston']
[u'south', u'east', u'call', u'timber', u'opportun']
[u'spain', u'shut', u'border', u'gibraltar']
[u'speaker', u'defend', u'decis', u'remov', u'green', u'guest']
[u'hand', u'prepar', u'appeal']
[u'storm', u'leav', u'damag', u'home', u'illawarra']
[u'stronger', u'dollar', u'take', u'toll', u'wool', u'grower']
[u'studi', u'focus', u'industri', u'impact']
[u'supermarket', u'chain', u'south', u'west', u'trout']
[u'support', u'grow', u'airspac', u'plan', u'delay']
[u'swan', u'reach', u'health', u'centr', u'step', u'closer']
[u'swedish', u'polic', u'trouser', u'soak', u'lindh']
[u'sydney', u'archbishop', u'fear', u'church', u'split']
[u'syring', u'kerbsid', u'recycl', u'staff', u'risk']
[u'tare', u'resid', u'ralli', u'rail', u'cut']
[u'tast', u'crab', u'colour']
[u'teen', u'charg', u'mildura', u'murder']
[u'thousand', u'turn', u'parad']
[u'timber', u'worker', u'hold', u'stopwork', u'meet']
[u'town', u'hold', u'breath', u'fanci', u'melbourn', u'runner']
[u'trout', u'hatcheri', u'open', u'celebr', u'year']
[u'civilian', u'kill', u'bomb', u'iraq']
[u'umaga', u'boost', u'black']
[u'unconvinc', u'scot', u'threaten', u'wobbl', u'wallabi']
[u'deleg', u'arriv', u'afghanistan']
[u'union', u'continu', u'fight', u'murrumbidge', u'colleg', u'job']
[u'union', u'offici', u'guilti', u'threat']
[u'church', u'appoint', u'bishop']
[u'vow', u'iraq', u'terrorist']
[u'govt', u'crack', u'money', u'launder']
[u'hospit', u'ceo', u'lose', u'bonus']
[u'villag', u'approv', u'close', u'lengthi', u'debat']
[u'parti', u'odd', u'elect', u'fund']
[u'veteran', u'leav', u'london', u'memori']
[u'watchdog', u'electr', u'price', u'hike']
[u'william', u'rock', u'kiwi', u'india']
[u'woman', u'kill', u'collid', u'school']
[u'world', u'chief', u'secur', u'rethink']
[u'worsley', u'say', u'sorri', u'error', u'judgment']
[u'yakama', u'jockey', u'pray', u'rain']
[u'zimbabw', u'media', u'bodi', u'challeng', u'order', u'licenc']
[u'abort', u'foetus', u'discov', u'near', u'naracoort']
[u'accus', u'detect', u'seek', u'damag']
[u'acoss', u'call', u'freez', u'negat', u'gear']
[u'traffic', u'control', u'accus', u'safeti', u'beat']
[u'talk', u'liber', u'poll', u'boost']
[u'anderson', u'name', u'wing', u'centr']
[u'asio', u'complaint', u'rise']
[u'gregan', u'larkham', u'woeful', u'wallabi', u'campo']
[u'blue', u'mckay', u'retir']
[u'bomb', u'blast', u'rock', u'turkish', u'embassi']
[u'bomb', u'iraqi', u'holi', u'citi', u'kill']
[u'bond', u'innoc', u'claim', u'incred']
[u'booki', u'report', u'record', u'cash']
[u'boss', u'seal', u'comeback', u'melbourn']
[u'brisban', u'doctor', u'save', u'timores', u'babi', u'life']
[u'british', u'sentenc', u'infect']
[u'bull', u'stumbl', u'earli', u'second', u'inning']
[u'carr', u'open', u'environment', u'technolog', u'centr']
[u'cathol', u'archbishop', u'plan', u'meet', u'abus']
[u'celebr', u'continu', u'melbourn']
[u'champagn', u'flow', u'flemington']
[u'church', u'surviv', u'bishop', u'divid', u'primat']
[u'cliff', u'young', u'farewel', u'tomorrow']
[u'coupl', u'floor', u'friski', u'felin']
[u'court', u'fail', u'overturn', u'onetel', u'director', u'asset']
[u'court', u'hear', u'babi', u'scald', u'bath']
[u'court', u'refus', u'hear', u'command', u'case']
[u'court', u'reserv', u'decis', u'rape', u'appeal']
[u'beam', u'baghdad', u'aust', u'troop']
[u'keep', u'market', u'quiet']
[u'custom', u'probe', u'boat', u'arriv', u'island']
[u'darwin', u'school', u'scoop', u'nation', u'award']
[u'dept', u'say', u'servic', u'scratch', u'foster']
[u'continu', u'test', u'wheat', u'virus']
[u'draft', u'plan', u'redevelop', u'molonglo', u'valley']
[u'drug', u'addict', u'anaesthetist', u'strike', u'regist']
[u'dump', u'tap', u'classifi', u'depart']
[u'everingham', u'reassert', u'lib', u'support', u'public']
[u'flash', u'flood', u'devast', u'indonesian', u'tourist', u'town']
[u'fleme', u'attack', u'india', u'schedul']
[u'armi', u'head', u'emerg', u'servic']
[u'charg', u'homeless', u'man', u'death']
[u'franc', u'strength', u'ireland', u'quarter', u'final']
[u'free', u'journalist', u'claim', u'tortur', u'treatment']
[u'french', u'polic', u'arrest', u'suspect', u'dissid']
[u'reform', u'propos', u'question']
[u'genet', u'base', u'diet', u'plan', u'riski', u'studi']
[u'gladston', u'target', u'cane', u'toad']
[u'goodwin', u'build', u'warrior', u'lead']
[u'govt', u'criticis', u'time', u'releas']
[u'govt', u'excis', u'island', u'boat', u'arriv']
[u'govt', u'plan', u'law', u'hama']
[u'govt', u'question', u'suspect', u'wife', u'access']
[u'govt', u'drug', u'addict', u'law', u'attack']
[u'green', u'group', u'back', u'council', u'effort', u'stop', u'illeg']
[u'hess', u'group', u'complet', u'peter', u'lehmann', u'wine', u'deal']
[u'hickss', u'father', u'optimist', u'australian', u'visit']
[u'holland', u'doubl', u'sink', u'birmingham']
[u'hong', u'kong', u'agog', u'croc', u'loos']
[u'howard', u'govt', u'secur', u'poll', u'surg']
[u'indonesian', u'buy', u'boat', u'accus', u'peopl']
[u'intellig', u'chief', u'dismiss', u'iraq', u'doubt']
[u'intern', u'season', u'socceroo']
[u'iran', u'limit', u'reach', u'nuclear', u'watchdog']
[u'irish', u'slip', u'place', u'rugbi', u'rank']
[u'israel', u'outrag', u'threat', u'peac', u'poll']
[u'race', u'stop', u'stop', u'work', u'meet']
[u'jam', u'murdoch', u'take', u'rein', u'bskyb']
[u'japan', u'investig', u'suspect', u'infect']
[u'kashmiri', u'saffron', u'produc', u'iranian']
[u'kiwi', u'catch', u'internet', u'bank', u'scam']
[u'lara', u'grappl', u'select', u'dilemma']
[u'launceston', u'okay', u'aquat', u'centr']
[u'legendari', u'bootmak', u'william', u'die']
[u'long', u'flight', u'heighten', u'risk']
[u'lopez', u'receiv', u'spanish', u'davi']
[u'loud', u'blast', u'mortar', u'near', u'baghdad']
[u'makyb', u'diva', u'favourit', u'flemington']
[u'makyb', u'diva', u'win', u'melbourn']
[u'maloney', u'suspend', u'break', u'tackl']
[u'mamool', u'pull', u'lame']
[u'die', u'plane', u'crash', u'injuri']
[u'mayor', u'unsur', u'bluegum', u'plant', u'benefit']
[u'milit', u'plan', u'ramadan', u'attack', u'saudi']
[u'milosev', u'massiv', u'mistak', u'leader', u'trial']
[u'minist', u'call', u'global', u'plan', u'save', u'patagonian']
[u'minist', u'claim', u'speed', u'limit']
[u'mummifi', u'melbourn']
[u'nation', u'leader', u'urg', u'uniti', u'dairi', u'price']
[u'certif', u'keep', u'rivkin', u'jail']
[u'fin', u'weed', u'pest', u'plant']
[u'north', u'korea', u'tread', u'fine', u'line', u'nuclear', u'program']
[u'opposit', u'call', u'blanket', u'test']
[u'oper', u'dig', u'drug', u'gun']
[u'odd', u'shorten', u'rate', u'hike']
[u'opposit', u'call', u'expand', u'test']
[u'opposit', u'call', u'write', u'protocol', u'live']
[u'opposit', u'slam', u'art', u'queensland', u'spend']
[u'pacif', u'review', u'group']
[u'cellar', u'cost', u'taxpay']
[u'court', u'ask', u'nullifi', u'appoint']
[u'polic', u'indigen', u'etern', u'flame']
[u'polic', u'wait', u'post', u'mortem', u'result', u'identifi']
[u'pont', u'prais', u'perform', u'pressur']
[u'popul', u'pois', u'reach', u'mark']
[u'post', u'taliban', u'draft', u'constitut', u'debat']
[u'putin', u'heal', u'rift', u'pope', u'russian']
[u'rann', u'work', u'south', u'korea', u'china', u'tie']
[u'reef', u'studi', u'public']
[u'revolut', u'promis', u'matrix', u'saga']
[u'ronaldo', u'target', u'champ', u'leagu', u'glori']
[u'russian', u'billionair', u'resign', u'compani']
[u'saddam', u'probe', u'judg', u'assassin', u'wit']
[u'farmer', u'close', u'port', u'fee']
[u'scientist', u'track', u'gene', u'chang', u'fli']
[u'scrap', u'sculptur', u'cost', u'taxpay']
[u'scud', u'aussi', u'number', u'hewitt', u'slip']
[u'search', u'continu', u'survivor', u'sumatran', u'flood']
[u'senat', u'committe', u'hear', u'asio', u'complaint']
[u'senat', u'hear', u'probe', u'self', u'harm', u'case', u'detent']
[u'serena', u'venus', u'plan', u'perth', u'comeback']
[u'seven', u'road']
[u'shaw', u'replac', u'grewcock', u'england']
[u'solar', u'groupi', u'head', u'eclips', u'midnight']
[u'south', u'australian', u'warn', u'email', u'scam']
[u'spanish', u'princ', u'present', u'newsread', u'fiance']
[u'lankan', u'leader', u'sack', u'minist']
[u'suicid', u'bomber', u'injur', u'isra', u'soldier']
[u'farmer', u'fear', u'free', u'trade', u'time', u'frame']
[u'tasmanian', u'pipelin', u'sale']
[u'taxpay', u'head', u'bush', u'bash']
[u'tennant', u'creek', u'gold', u'miner', u'ahead', u'expect']
[u'kill', u'victorian', u'road']
[u'solomon', u'policeman', u'arrest']
[u'troop', u'deploy', u'minist', u'sack', u'lanka']
[u'bodi', u'sink']
[u'kill', u'saudi', u'anti', u'terrorist', u'raid']
[u'suspect', u'milit', u'shoot', u'dead', u'mecca']
[u'umaga', u'train', u'black', u'squad']
[u'accept', u'govt', u'rent', u'free', u'offer']
[u'union', u'offici', u'escap', u'convict']
[u'govt', u'seek', u'isra', u'militari']
[u'product', u'stock', u'climb', u'high']
[u'senat', u'approv', u'billion', u'iraq', u'chest']
[u'soldier', u'kill', u'tikrit', u'attack']
[u'consid', u'commonwealth', u'terror', u'request']
[u'fisheri', u'fifth', u'gain', u'feder', u'govern']
[u'water', u'resourc', u'manag', u'flow', u'catchment']
[u'weather', u'fuel', u'rule', u'caus', u'plane', u'crash']
[u'whatmor', u'name', u'dayer']
[u'world', u'largest', u'iceberg', u'split', u'report']
[u'aust', u'troop', u'leav', u'solomon', u'month']
[u'injur', u'blast', u'wast', u'dispos', u'facil']
[u'dead', u'papua', u'clash']
[u'lib', u'welcom', u'emerg', u'servic', u'chief', u'pledg']
[u'age', u'warn', u'vitamin', u'quick']
[u'alleg', u'leader', u'say', u'wasnt', u'involv']
[u'govt', u'comput', u'miss', u'year']
[u'amnesti', u'lobbi', u'thai', u'govt', u'probe']
[u'appeal', u'court', u'begin', u'hanson', u'ettridg', u'hear']
[u'armi', u'personnel', u'test', u'posit', u'drug']
[u'armi', u'probe', u'timor', u'tortur', u'alleg']
[u'arrest', u'fraca', u'dutch', u'embassi']
[u'ashrawi', u'deliv', u'messag', u'hope']
[u'asic', u'put', u'bar', u'corpor', u'crime', u'report']
[u'asylum', u'seeker', u'anchor', u'melvill', u'island']
[u'asylum', u'seeker', u'identifi', u'turk']
[u'athlet', u'chief', u'doubl', u'ban', u'drug', u'cheat']
[u'attorney', u'general', u'away', u'defam', u'case']
[u'audio', u'problem', u'delay', u'drug', u'committ', u'hear']
[u'aust', u'govt', u'renew', u'media', u'ownership', u'debat']
[u'bank', u'net', u'profit']
[u'belgian', u'rival', u'readi', u'battl']
[u'blast', u'rock', u'coalit', u'baghdad', u'headquart']
[u'board', u'worri', u'increas', u'complaint']
[u'bomb', u'explod', u'near', u'afghan', u'offic']
[u'bulk', u'bill', u'rat', u'free', u'fall']
[u'bush', u'deni', u'iraq']
[u'bushfir', u'inquiri', u'find', u'expect', u'today']
[u'bushman', u'william', u'state', u'funer']
[u'bushrang', u'surviv', u'scare', u'gabba']
[u'cambodian', u'parti', u'form', u'coalit', u'govern']
[u'caretak', u'tri', u'hide', u'dead', u'british', u'schoolgirl']
[u'celt', u'count', u'home', u'advantag', u'stay', u'chase']
[u'ceremoni', u'swear', u'pngs', u'delay']
[u'chemic', u'compani', u'report', u'annual', u'profit']
[u'china', u'beer', u'compani', u'stock', u'freez', u'chairman']
[u'chip', u'fish', u'help', u'poacher']
[u'christma', u'alert', u'boat', u'arriv']
[u'claim', u'aust', u'troop', u'tortur', u'timor', u'militiamen']
[u'claim', u'brigitt', u'rais', u'fund', u'aust', u'indian']
[u'claim', u'propos', u'airspac', u'wont', u'suit', u'australia']
[u'confer', u'focus', u'stronger', u'govern']
[u'confus', u'britain', u'navi', u'ship']
[u'costello', u'return', u'ireland', u'franc']
[u'council', u'inject', u'fund', u'needl', u'dispos', u'plan']
[u'court', u'grant', u'bail', u'convict']
[u'court', u'uphold', u'khmer', u'roug', u'colonel', u'sentenc']
[u'crocodil', u'hunter', u'choos', u'reptil', u'polit']
[u'disgrac', u'magistr', u'strike', u'legal', u'roll']
[u'dollar', u'climb', u'ahead', u'rat', u'decis']
[u'dollar', u'climb', u'wake', u'rate', u'rise']
[u'domest', u'visitor', u'domin', u'tourism']
[u'drunken', u'finn', u'jail', u'botch', u'bank', u'robberi']
[u'consid', u'gulf', u'contamin', u'test']
[u'economist', u'rat', u'rise']
[u'egan', u'respons', u'surpris', u'councillor']
[u'elector', u'staff', u'strike', u'disput']
[u'elector', u'go', u'bulk', u'bill', u'trend']
[u'firefight', u'kill', u'chines', u'build', u'collaps']
[u'foreign', u'legion', u'fire', u'english', u'giant']
[u'minist', u'help', u'identifi', u'secur']
[u'friend', u'farewel', u'marathon', u'legend', u'young']
[u'fund', u'cut', u'threaten', u'research', u'progress', u'prize']
[u'game', u'group', u'announc', u'merger', u'plan']
[u'liabil', u'issu']
[u'govern', u'face', u'battl', u'asylum', u'seeker']
[u'govt', u'consid', u'senat', u'recal', u'milit', u'group']
[u'govt', u'defend', u'croc', u'hunter', u'quarantin']
[u'govt', u'issu', u'challeng', u'asylum', u'seeker']
[u'govt', u'overreact', u'excis', u'push', u'opposit', u'say']
[u'govt', u'put', u'forward', u'anti', u'terror']
[u'govt', u'reaffirm', u'commit', u'health', u'servic']
[u'graffiti', u'gang', u'violenc', u'focus']
[u'green', u'question', u'canberra', u'spacial', u'plan']
[u'group', u'blame', u'hous', u'boom', u'rat', u'rise']
[u'gunn', u'begin', u'plantat', u'woodchip', u'export']
[u'hear', u'start', u'accus', u'heroin', u'smuggler']
[u'holden', u'open', u'plant']
[u'hop', u'fade', u'indonesian', u'flood', u'rescu']
[u'independ', u'school', u'question', u'insur', u'hike']
[u'injuri', u'england', u'catt']
[u'inquiri', u'urg', u'nation', u'bushfir', u'approach']
[u'didnt', u'attack', u'british', u'troop', u'bloodi', u'sunday']
[u'iranian', u'hardlin', u'anti', u'sentiment']
[u'want', u'black', u'say', u'caucau']
[u'jail', u'nation', u'founder', u'appeal']
[u'jone', u'drop', u'roff', u'burk']
[u'jone', u'drop', u'roff', u'pick', u'tuqiri', u'mortlock']
[u'katich', u'lead', u'blue', u'fightback']
[u'melanesian', u'brotherhood', u'buri', u'today']
[u'leed', u'slug', u'viduka', u'fine']
[u'letter', u'show', u'hickss', u'condit', u'deterior', u'father']
[u'liberian', u'rebel', u'govt', u'fighter', u'order']
[u'makyb', u'diva', u'trainer', u'keep', u'option', u'open']
[u'mamool', u'futur', u'doubt', u'injuri']
[u'jail', u'south', u'break', u'hill', u'stab']
[u'plead', u'guilti', u'manslaught', u'babi']
[u'medic', u'panel', u'examin', u'man', u'case', u'damag']
[u'miss', u'teenag', u'bodi', u'creek', u'bank']
[u'mitchel', u'wari', u'desper', u'bok']
[u'affect', u'gastro', u'outbreak']
[u'mourner', u'farewel', u'marathon', u'legend', u'young']
[u'mourner', u'farewel', u'marathon', u'legend', u'young']
[u'murdoch', u'appoint', u'rattl', u'bskyb', u'sharehold']
[u'holden', u'plant', u'vote', u'confid']
[u'kill', u'north', u'china', u'explos']
[u'surpris', u'england', u'wale', u'game']
[u'govt', u'dismiss', u'bushfir', u'recommend']
[u'treasur', u'accus', u'tri', u'buri', u'poki']
[u'older', u'peopl', u'risk', u'drown']
[u'oneil', u'warn', u'wallabi', u'earn']
[u'nation', u'founder', u'appeal', u'wrap']
[u'outcri', u'govt', u'island', u'excis']
[u'owen', u'uefa']
[u'pacif', u'island', u'compet', u'countri', u'champ']
[u'polic', u'probe', u'mildura', u'death', u'want', u'woman']
[u'pong', u'order', u'hide', u'ident', u'court', u'tell']
[u'priest', u'trial', u'alleg', u'sexual', u'assault']
[u'critic', u'nsws', u'reprehens', u'tugun', u'bypass']
[u'redpath', u'ralli', u'braveheart']
[u'releas', u'pakistani', u'seek', u'damag', u'guantanamo']
[u'reserv', u'bank', u'lift', u'rat']
[u'get', u'legisl', u'council', u'support']
[u'william', u'shoe']
[u'govt', u'vow', u'tough', u'love', u'vandal', u'gang']
[u'drug', u'tenni', u'becker', u'join', u'rank']
[u'sharon', u'readi', u'resum', u'palestinian', u'talk']
[u'spiderman', u'spin', u'london', u'traffic', u'gridlock']
[u'lankan', u'presid', u'accus', u'tri', u'creat']
[u'lankan', u'presid', u'defend', u'sack']
[u'lankan', u'presid', u'sack', u'minist', u'suspend']
[u'lanka', u'presid', u'declar', u'state', u'emerg']
[u'georg', u'bank', u'record', u'profit']
[u'stockman', u'hall', u'fame', u'honour', u'william']
[u'student', u'drink', u'spike']
[u'sydney', u'council', u'boycott', u'peac', u'prize']
[u'tabcorp', u'share', u'hold', u'pend', u'announc']
[u'taibu', u'matsikenyeri', u'rescu', u'zimbabw']
[u'taskforc', u'releas', u'bushfir', u'land', u'report']
[u'offend', u'appeal', u'sentenc']
[u'theatr', u'fund', u'bring', u'show', u'break', u'hill']
[u'thiev', u'target', u'passport']
[u'judg', u'kill', u'iraq']
[u'matrix', u'film', u'open', u'worldwid', u'simultan']
[u'confirm', u'wound', u'baghdad', u'blast']
[u'trio', u'custodi', u'sydney', u'murder']
[u'tuqiri', u'back', u'code', u'jump', u'trio']
[u'detaine', u'hospit', u'slash']
[u'union', u'boss', u'fin', u'threaten', u'commiss', u'wit']
[u'union', u'stag', u'blockad', u'fremantl', u'port']
[u'report', u'call', u'releas', u'asylum', u'seeker']
[u'vote', u'year', u'cuba', u'trade', u'embargo']
[u'execut', u'mental', u'prison', u'georgia']
[u'network', u'cancel', u'ronald', u'reagan', u'mini', u'seri']
[u'bank', u'seek', u'tackl', u'fraud', u'travel']
[u'govt', u'reject', u'claim', u'quokka', u'mistreat']
[u'wall', u'street', u'settl', u'high']
[u'walsh', u'return', u'suspens', u'quarter']
[u'woman', u'detain', u'stab', u'domest']
[u'zimbabw', u'court', u'wind', u'mugab', u'elect', u'hear']
[u'worker', u'kill', u'india', u'arson', u'attack']
[u'armi', u'personnel', u'face', u'action', u'posit', u'drug']
[u'unemploy', u'drop']
[u'adelaid', u'move', u'notch', u'index']
[u'altern', u'arrang', u'moot', u'surgeon', u'wrangl']
[u'appeal', u'court', u'criticis', u'hanson', u'verdict', u'comment']
[u'argent', u'light', u'cost', u'share']
[u'arm', u'bandit', u'attack', u'shopkeep']
[u'armi', u'drug', u'test', u'deliv', u'disappoint', u'result']
[u'armi', u'dismiss', u'soldier', u'posit', u'drug']
[u'ashrawi', u'choic', u'peac', u'prize', u'howard']
[u'ashwari', u'accept', u'sydney', u'peac', u'prize']
[u'confirm', u'dead', u'indonesian', u'flood']
[u'atsic', u'welcom', u'museum', u'remain', u'report']
[u'aust', u'dollar', u'rise', u'year', u'high']
[u'australian', u'post', u'record', u'loss']
[u'australian', u'jobless', u'rate', u'fall']
[u'backpack', u'number', u'decreas']
[u'barcelona', u'readi', u'forum', u'feast']
[u'beer', u'buoy', u'lion', u'nathan', u'profit']
[u'bega', u'chees', u'achiev', u'export']
[u'birth', u'centr', u'consid', u'midwif', u'afford']
[u'blast', u'rock', u'agenc', u'afghanistan']
[u'blue', u'inning', u'point']
[u'bone', u'return', u'indigen', u'communiti']
[u'book', u'captur', u'chang', u'face', u'midland']
[u'breakthrough', u'medic', u'discoveri', u'bowel', u'diseas']
[u'bunburi', u'hospit', u'nurs', u'oversuppli', u'problem']
[u'busi', u'group', u'seek', u'trade', u'law', u'exempt']
[u'byron', u'shire', u'await', u'safeti', u'plan', u'decis']
[u'cancer', u'council', u'email', u'campaign']
[u'cargo', u'ship', u'crew', u'want', u'safeti', u'clear']
[u'case', u'alleg', u'drug', u'smuggler', u'fetch']
[u'charg', u'recommend', u'justic', u'peac']
[u'china', u'democraci', u'advoc', u'face', u'year', u'jail']
[u'claim', u'rate', u'rise', u'damag', u'busi']
[u'clijster', u'launch', u'titl', u'defenc', u'victori']
[u'cole', u'leav', u'late', u'arsenal', u'celtic', u'hammer']
[u'communiti', u'farewel', u'teach', u'pioneer']
[u'confer', u'focus', u'catchment', u'manag']
[u'convict', u'serial', u'rapist', u'jail']
[u'convict', u'seek', u'earli', u'hear', u'appeal']
[u'council', u'begin', u'local', u'govt', u'confer', u'plan']
[u'council', u'merger', u'inquiri', u'take', u'riverina', u'submiss']
[u'council', u'offer', u'initi', u'support', u'offic']
[u'council', u'urg', u'boost', u'rural', u'subdivis']
[u'council', u'decid', u'appeal', u'servic']
[u'coupl', u'escap', u'injuri', u'light', u'plane', u'crash']
[u'court', u'secur', u'releas', u'arriv']
[u'court', u'decid', u'hanson', u'ettridg', u'fate', u'today']
[u'court', u'say', u'lawyer', u'petit']
[u'court', u'tell', u'olymp', u'shooter', u'diamond', u'unlaw']
[u'court', u'tell', u'rehabilit', u'offend']
[u'declin', u'bulk', u'bill', u'rat', u'worri']
[u'dentist', u'shortag', u'bite', u'kalgoorli', u'boulder']
[u'derbi', u'trial', u'alcohol', u'restrict']
[u'dfat', u'issu', u'travel', u'advisori']
[u'diamond', u'drink', u'polic', u'interview', u'court', u'hear']
[u'disrupt', u'woorabinda', u'phone']
[u'divers', u'industri', u'help', u'region', u'jobless']
[u'dollar', u'jump', u'jobless', u'figur']
[u'doubt', u'cast', u'renmark', u'paringa', u'disadvantag', u'claim']
[u'drug', u'rife', u'armi', u'base', u'committe', u'tell']
[u'earli', u'man', u'penchant', u'clean', u'teeth', u'discov']
[u'arrest', u'polic', u'drug', u'oper']
[u'erectil', u'tissu', u'octopus', u'finger']
[u'esper', u'reviv', u'ranger', u'patrol']
[u'expert', u'highlight', u'indigen', u'govern', u'issu']
[u'expert', u'decid', u'canola', u'crop']
[u'fatah', u'meet', u'break', u'agreement']
[u'father', u'children', u'strand', u'bali', u'grant']
[u'identifi', u'hijack', u'septemb']
[u'identifi', u'possibl', u'septemb', u'hijack']
[u'fear', u'rate', u'rise', u'hurt', u'farmer']
[u'femal', u'student', u'cook', u'reform', u'protest']
[u'final', u'pois']
[u'fina', u'test', u'sampl']
[u'firm', u'name', u'work', u'lawrenc', u'hargrav', u'drive']
[u'soldier', u'wound', u'iraq', u'attack']
[u'franc', u'prove', u'quarter', u'final']
[u'fund', u'boost', u'northam', u'revamp']
[u'futur', u'secur', u'jadda', u'centr']
[u'geraldton', u'dedic', u'build']
[u'gillespi', u'club', u'comeback']
[u'global', u'woe', u'toll', u'backpack', u'number']
[u'good', u'evalu', u'albani', u'jail']
[u'govern', u'seek', u'clearer', u'sacr', u'site', u'evid']
[u'govt', u'dismiss', u'labor', u'watchdog', u'plan']
[u'govt', u'urg', u'implement', u'recommend']
[u'govt', u'take', u'board', u'aquif', u'concern']
[u'grand', u'prix', u'post', u'record', u'loss']
[u'group', u'track', u'countrylink', u'meet']
[u'hansen', u'face', u'tough', u'select', u'choic']
[u'hanson', u'ettridg', u'wait', u'appeal']
[u'hanson', u'thank', u'support', u'jail', u'releas']
[u'health', u'group', u'upbeat', u'child', u'protocol']
[u'hospit', u'closur', u'time', u'frame', u'shock', u'group']
[u'howard', u'flag', u'willing', u'look', u'childcar']
[u'howard', u'shower', u'prais', u'govt', u'jobless', u'figur']
[u'ident', u'paper', u'suspect', u'asylum', u'boat']
[u'idol', u'substanc', u'chief', u'say']
[u'indonesia', u'extend', u'martial', u'aceh']
[u'inventor', u'consid', u'phone', u'book', u'honour']
[u'inventor', u'unveil', u'handi', u'phone']
[u'irrig', u'group', u'hear', u'alloc', u'appeal']
[u'irrig', u'group', u'seek', u'develop', u'respit']
[u'israel', u'open', u'west', u'bank', u'town']
[u'japan', u'critic', u'north', u'korea', u'racial', u'slur']
[u'jobless', u'figur', u'govt', u'polici', u'work']
[u'jobless', u'figur']
[u'johnni', u'cash', u'win', u'countri', u'music', u'honour']
[u'judg', u'block', u'bush', u'anti', u'abort']
[u'king', u'equal', u'win', u'streak']
[u'labor', u'plan', u'block', u'build', u'legisl']
[u'labor', u'propos', u'watchdog', u'terror', u'law']
[u'ladi', u'underway', u'flemington']
[u'lawrenc', u'favourit', u'presid']
[u'leonard', u'equal', u'rugbi', u'record']
[u'light', u'plane', u'crash', u'western', u'victoria']
[u'malaysia', u'ban', u'ghost', u'tale']
[u'charg', u'assault', u'woman']
[u'manoora', u'arriv', u'sydney']
[u'manoora', u'return', u'sydney']
[u'court', u'charg']
[u'ancient', u'olymp', u'reviv']
[u'michalak', u'make', u'mark', u'franc']
[u'microsoft', u'offer', u'cash', u'reward', u'anti', u'virus', u'fight']
[u'millionair', u'face', u'legal', u'action', u'welfar']
[u'centr', u'hunter', u'promis', u'benefit']
[u'mine', u'firm', u'worker', u'consid', u'unrest']
[u'monaco', u'tear', u'deportivo', u'apart', u'goal', u'thriller']
[u'more', u'plain', u'council', u'record', u'budget', u'deficit']
[u'wind', u'farm', u'blade', u'factori', u'talk']
[u'flag', u'eureka', u'debat']
[u'say', u'plane', u'secur']
[u'unimpress', u'theatr', u'fund']
[u'upset', u'tugun', u'bypass', u'decis']
[u'nat', u'want', u'region', u'hospit', u'fund', u'boost']
[u'newcastl', u'host', u'mental', u'health', u'confer']
[u'medic', u'indemn', u'insur', u'legisl']
[u'news', u'corp', u'profit', u'doubl', u'boost', u'movi']
[u'unemploy', u'steadi']
[u'jobless', u'rate']
[u'laugh', u'terror', u'earthquak', u'warn']
[u'dead', u'injur', u'sydney', u'crash']
[u'nation', u'founder', u'know', u'verdict', u'today']
[u'open', u'loom', u'sober', u'shelter']
[u'pandora', u'reveal', u'maritim', u'secret']
[u'pari', u'lingeri', u'store', u'strip', u'shopper', u'inhibit']
[u'perugia', u'soccer', u'libyan', u'leader', u'fail', u'drug']
[u'philippin', u'criticis', u'terror', u'warn']
[u'plan', u'protect', u'indigen', u'girl']
[u'costello', u'rat', u'comment', u'critic']
[u'play', u'rat', u'hike', u'fear']
[u'welcom', u'law', u'aid', u'return', u'indigen']
[u'polic', u'consid', u'attack']
[u'polic', u'crack', u'drink', u'driver']
[u'polic', u'drug', u'inquiri', u'begin']
[u'polic', u'hunt', u'mask', u'home', u'invad']
[u'polic', u'worth', u'ecstasi', u'tablet']
[u'polic', u'question', u'sydney', u'shoot']
[u'polic', u'question', u'trio', u'sydney', u'shoot']
[u'polit', u'fallout', u'predict', u'hanson', u'ettridg']
[u'star', u'valanc', u'order']
[u'professor', u'donat', u'priceless', u'chines', u'ceram']
[u'rapist', u'sentenc', u'lengthi', u'jail', u'term']
[u'redback', u'seek', u'quick', u'run', u'tiger']
[u'redback', u'tiger', u'play', u'draw']
[u'region', u'airlin', u'gain', u'investor', u'continu', u'trade']
[u'righteous', u'brother', u'dead', u'hotel', u'room']
[u'roddick', u'land', u'easier', u'master', u'draw']
[u'rossouw', u'injur', u'springbok', u'niekerk']
[u'safeti', u'campaign', u'signal', u'rail', u'return']
[u'govt', u'reject', u'liabil', u'plan']
[u'grain', u'farmer', u'look', u'good', u'harvest']
[u'sar', u'vaccin', u'time', u'away']
[u'school', u'tell', u'disadvantag', u'boundari', u'chang']
[u'scientist', u'probe', u'insect', u'forest', u'damag']
[u'scotland', u'wari', u'aussi', u'winger']
[u'scot', u'reshuffl', u'forward', u'pack', u'quarter', u'final']
[u'senat', u'recal', u'disrupt', u'lib', u'preselect', u'lobbi']
[u'senat', u'stoush', u'loom', u'build', u'legisl']
[u'separ', u'fund', u'seek', u'corridor']
[u'share', u'market', u'pick']
[u'small', u'council', u'happi', u'relax', u'record', u'keep']
[u'south', u'australia', u'look', u'boost', u'popul', u'growth']
[u'special', u'harmoni', u'put', u'smile', u'freedman', u'face']
[u'special', u'harmoni', u'put', u'smile', u'freedman', u'face']
[u'speed', u'limit', u'road', u'sign']
[u'speedway', u'get', u'cleaner', u'greener']
[u'spiderman', u'end', u'crane', u'protest']
[u'springbok', u'game', u'plan', u'shroud', u'mysteri']
[u'squadron', u'home', u'solomon', u'stint']
[u'lankan', u'promis', u'polit', u'crisi']
[u'streak', u'put', u'zimbabw', u'seat']
[u'studi', u'highlight', u'goldfield', u'shire', u'woe']
[u'surpris', u'tabcorp', u'lift', u'share']
[u'suspect', u'asylum', u'seeker', u'longer', u'australia']
[u'tabcorp', u'anti', u'competit', u'beatti', u'say']
[u'teacher', u'honour', u'civic', u'effort']
[u'teen', u'face', u'court', u'homeless', u'man', u'death']
[u'teen', u'warn', u'drive', u'licenc', u'scam']
[u'ticket', u'unsold', u'world', u'quarter']
[u'tiger', u'pressur', u'finish']
[u'treasur', u'question', u'reserv', u'bank', u'drought', u'read']
[u'unemploy', u'fall']
[u'unemploy', u'steadi']
[u'unemploy', u'tip', u'stay']
[u'unemploy']
[u'report', u'highlight', u'girl', u'educ', u'woe']
[u'convict', u'serial', u'killer', u'want', u'question']
[u'delay', u'free', u'trade', u'pact', u'lanka', u'crisi']
[u'global', u'rival', u'gear', u'presid']
[u'killer', u'admit', u'murder']
[u'drive', u'broad', u'clone', u'stall']
[u'plan', u'downsiz', u'forc', u'iraq']
[u'veteran', u'yachti', u'head', u'pittwat', u'coff', u'race']
[u'jobless', u'rate']
[u'volunt', u'play', u'bigger', u'manag']
[u'voyag', u'take', u'greet', u'solar', u'edg']
[u'wallabi', u'hop', u'face', u'sudden', u'death']
[u'mine', u'compani', u'win', u'appeal', u'billiton']
[u'support', u'bushfir', u'report', u'find']
[u'weather', u'studi', u'embrac', u'indigen', u'knowledg']
[u'wider', u'mobil', u'phone', u'coverag', u'plan']
[u'thiev', u'leav', u'hand']
[u'young', u'socceroo', u'colombia']
[u'zimbabwean', u'economi', u'rife', u'corrupt', u'confer']
[u'aborigin', u'remain', u'return', u'warrnambool']
[u'academ', u'doubt', u'hanson', u'comeback']
[u'lib', u'facil', u'need', u'mental']
[u'relax', u'water', u'restrict']
[u'afghan', u'film', u'pick', u'london', u'prize']
[u'black', u'batter', u'springbok']
[u'alleg', u'peopl', u'smuggler', u'arriv', u'australia']
[u'alleg', u'peopl', u'smuggler', u'face', u'court']
[u'unhappi', u'govt', u'hospit', u'board', u'decis']
[u'annan', u'back', u'stanc', u'end', u'cuban', u'embargo']
[u'argentina', u'block', u'fish', u'track', u'plan']
[u'arm', u'hostag', u'moscow', u'soro', u'institut']
[u'arson', u'suspect', u'joineri', u'blaze']
[u'asylum', u'seeker', u'unlaw', u'detain', u'court', u'tell']
[u'aussi', u'dollar', u'slip']
[u'author', u'reserv', u'decis', u'suspect', u'crop']
[u'bank', u'firmer', u'share', u'market', u'end', u'week', u'higher']
[u'bank', u'pass', u'rate', u'rise']
[u'blue', u'chase', u'warrior', u'target']
[u'soni', u'lead', u'music', u'merger', u'race']
[u'branson', u'announc', u'virgin', u'rout']
[u'brigitt', u'passport', u'matter', u'french', u'govt', u'say']
[u'british', u'conserv', u'choos', u'howard', u'leader']
[u'british', u'roll', u'injuri', u'kangaroo']
[u'break', u'hill', u'jobless', u'rate', u'rise']
[u'brumbi', u'arthur', u'winner']
[u'build', u'approv', u'increas']
[u'bush', u'outlin', u'polici', u'middl', u'east']
[u'fast', u'train', u'latrob', u'valley']
[u'probe', u'integr', u'aborigin']
[u'cannabi', u'help', u'patient', u'studi', u'find']
[u'kill', u'dog']
[u'central', u'jobless', u'rate', u'fall']
[u'central', u'appoint', u'coach']
[u'china', u'petroleum', u'group', u'tour', u'north']
[u'claim', u'asylum', u'seeker', u'boat', u'damag']
[u'claim', u'apprentic', u'pay']
[u'clijster', u'book', u'semi', u'spot', u'henin', u'hardenn', u'triumph']
[u'coalit', u'troop', u'kill', u'iraq']
[u'commiss', u'fast', u'track', u'salin', u'review']
[u'consum', u'shift', u'drought', u'hit', u'wine', u'industri']
[u'corpor', u'receiv', u'youth', u'leadership', u'fund']
[u'council', u'downsiz', u'confer', u'conting']
[u'council', u'control', u'stock', u'rout']
[u'council', u'vote', u'pool', u'smoke', u'motion']
[u'court', u'return', u'diamond', u'gun', u'firearm', u'licenc']
[u'democrat', u'hope', u'decis', u'lead', u'detent']
[u'deregul', u'blame', u'closur', u'dairi']
[u'desert', u'test', u'help', u'solv', u'life', u'mar', u'puzzl']
[u'detaine', u'riot', u'port', u'hedland']
[u'doc', u'face', u'action', u'grand', u'prix', u'track', u'death']
[u'doctor', u'back', u'kimberley', u'alcohol', u'restrict']
[u'doctor', u'criticis', u'investig', u'track', u'marshal']
[u'dont', u'expect', u'money', u'beatti', u'tell', u'hanson']
[u'doubt', u'cast', u'irrig', u'plan']
[u'doubt', u'cast', u'prawn', u'season', u'delay']
[u'draper', u'make', u'shaki', u'start', u'golf', u'career']
[u'draper', u'golf', u'debut', u'short']
[u'warn', u'loom', u'danger']
[u'earli', u'seve', u'trophi', u'advantag', u'britain', u'ireland']
[u'elder', u'unhappi', u'govt', u'sacr', u'site', u'dismiss']
[u'enzing', u'scoop', u'prize', u'pool', u'hors', u'trial']
[u'nation', u'speak', u'hanson', u'jail']
[u'expert', u'destroy', u'wwii', u'stockpil', u'china']
[u'expert', u'warn', u'loom', u'stinger', u'danger']
[u'fear', u'settlement', u'strategi', u'overload', u'council']
[u'figur', u'highlight', u'prosper', u'crow', u'nest', u'shire']
[u'film', u'industri', u'focus', u'south', u'coast']
[u'firefight', u'battl', u'pine', u'blaze']
[u'firefight', u'battl', u'sawtel', u'bush', u'blaze']
[u'flintoff', u'destroy', u'bangladesh', u'bat', u'attack']
[u'flintoff', u'inspir', u'england', u'seven', u'wicket']
[u'priest', u'plead', u'guilti', u'assault']
[u'rwandan', u'minist', u'face', u'genocid', u'charg']
[u'foster', u'float', u'spin', u'compani']
[u'pride', u'march', u'attract', u'peopl']
[u'giant', u'bounc', u'razorback']
[u'gold', u'coast', u'council', u'happi', u'rail', u'upgrad', u'plan']
[u'govt', u'announc', u'militari', u'shop', u'list']
[u'grant', u'grain', u'monitor', u'technolog']
[u'green', u'push', u'disallow', u'excis', u'regul']
[u'group', u'complet', u'nickel', u'project', u'impact', u'studi']
[u'guard', u'clear', u'prison', u'murder']
[u'gympi', u'welcom', u'hanson', u'releas']
[u'hansen', u'reward', u'black', u'tyro']
[u'hanson', u'case', u'prompt', u'appeal', u'bail', u'review']
[u'hanson', u'case', u'spur', u'prosecut', u'offic', u'review']
[u'hanson', u'releas', u'fuel', u'comeback', u'specul']
[u'hanson', u'releas', u'beatti', u'consid', u'bail', u'reform']
[u'hanson', u'tast', u'freedom', u'gold', u'coast']
[u'hanson', u'woe', u'reignit', u'nation']
[u'harri', u'happi', u'hanson', u'senat']
[u'harri', u'offer', u'senat', u'posit', u'hanson']
[u'harri', u'potter', u'trounc', u'tanya', u'grotter', u'dutch', u'court']
[u'hatfield', u'death', u'natur', u'polic']
[u'hors', u'trial', u'kick', u'adelaid']
[u'hous', u'boom', u'predict', u'flow', u'water']
[u'howard', u'crean', u'head', u'london']
[u'huge', u'communic', u'breakdown', u'brigitt']
[u'human', u'right', u'commission', u'call', u'child']
[u'period', u'grace', u'bros', u'store', u'close']
[u'iraqi', u'ancient', u'treasur', u'baghdad', u'cesspool']
[u'ireland', u'need', u'kean', u'say', u'oshea']
[u'irish', u'coach', u'angri', u'train']
[u'irrig', u'trust', u'chair', u'confid', u'futur']
[u'italian', u'defend', u'putin', u'human', u'right', u'record']
[u'jobless', u'rate', u'fall', u'albani']
[u'jone', u'say', u'wallabi', u'play', u'safe']
[u'kiribati', u'prepar', u'backlash', u'recognis']
[u'koutoufid', u'name', u'carlton', u'captain']
[u'labor', u'demand', u'govt', u'releas', u'detail', u'asylum', u'boat']
[u'lawyer', u'lose', u'bring', u'asylum', u'seeker']
[u'lawyer', u'wait', u'confirm', u'chamber', u'test']
[u'liber', u'parti', u'converg', u'shepparton']
[u'liverpool', u'newcastl', u'uefa', u'drive', u'seat']
[u'liverpool', u'brace', u'unit', u'test']
[u'local', u'lender', u'consid', u'lift', u'rat']
[u'magistr', u'say', u'diamond', u'sober', u'polic']
[u'charg', u'sydney', u'shoot']
[u'mancini', u'seek', u'derbi', u'delight']
[u'jail', u'infant', u'son', u'manslaught']
[u'polic', u'reach', u'settlement']
[u'map', u'program', u'draw', u'acclaim']
[u'maryborough', u'council', u'give', u'promenad', u'plan']
[u'matrix', u'final', u'pull']
[u'mcmillan', u'styri', u'spur', u'black', u'cap']
[u'medal', u'honour', u'bega', u'firefight']
[u'meet', u'seek', u'local', u'input', u'season']
[u'west', u'unemploy', u'drop']
[u'millionair', u'stoddart', u'consid', u'price', u'airlin']
[u'minist', u'pledg', u'local', u'govt', u'reform', u'consult']
[u'minist', u'hear', u'nurs', u'home', u'concern']
[u'morley', u'move', u'prop', u'ash', u'test', u'open']
[u'happi', u'hanson', u'releas']
[u'open', u'feder', u'elector', u'offic']
[u'mundin', u'cruz', u'honour', u'indigen', u'award']
[u'nation', u'bank', u'concern', u'split']
[u'navi', u'tow', u'asylum', u'seeker', u'boat']
[u'nelson', u'push', u'higher', u'educ', u'reform']
[u'nelson', u'reject', u'senat', u'higher', u'educ', u'inquiri']
[u'hospit', u'queenstown']
[u'pharmaci', u'open', u'door', u'dampier']
[u'nikol', u'clear', u'mummifi', u'ride']
[u'korea', u'nuclear', u'deterr', u'readi', u'envoy']
[u'probe', u'crash', u'home', u'build', u'plane']
[u'govt', u'consid', u'return', u'hospit', u'public']
[u'court', u'consid', u'asylum', u'seeker', u'case']
[u'bomber', u'champ', u'long']
[u'nation', u'candid', u'reliev', u'hanson', u'releas']
[u'outlook', u'stray', u'anim', u'port', u'lincoln', u'look']
[u'outlook', u'posit', u'despit', u'rainfal', u'part']
[u'owner', u'face', u'slug', u'unregist', u'dog']
[u'palestinian', u'kill', u'gaza', u'strip']
[u'palestinian', u'leader', u'deadlock', u'ministeri']
[u'palestinian', u'shoot', u'west', u'bank', u'report']
[u'palestinian', u'woman', u'get', u'life', u'internet', u'murder']
[u'peac', u'prize', u'winner', u'ashrawi', u'embrac', u'goodwil']
[u'defend', u'right', u'speak', u'court', u'matter']
[u'poland', u'suffer', u'casualti', u'iraq']
[u'polic', u'continu', u'probe', u'maclean', u'death']
[u'polic', u'probe', u'stratford', u'slay']
[u'polic', u'station', u'revamp', u'begin']
[u'premier', u'suggest', u'border', u'solut', u'tugan', u'bypass']
[u'princ', u'charl', u'deni', u'mysteri', u'alleg']
[u'protest', u'fight', u'continu', u'rail', u'servic']
[u'public', u'elector', u'redistribut']
[u'push', u'continu', u'high', u'school', u'fund']
[u'leader', u'promis', u'review', u'wake', u'hanson']
[u'ranger', u'face', u'season', u'meltdown']
[u'real', u'rock', u'roberto', u'carlo', u'injuri']
[u'region', u'unemploy', u'drop']
[u'report', u'say', u'cannabi', u'main', u'concern', u'teenag']
[u'riverina', u'promot', u'drug', u'free']
[u'riverland', u'fountain', u'book']
[u'russian', u'final']
[u'rwandan', u'minist', u'trial', u'genocid']
[u'court', u'order', u'sentenc', u'gunman']
[u'govt', u'bolster', u'indigen', u'cultur', u'protect']
[u'sammaki', u'reunit', u'children']
[u'saudi', u'raid', u'milit', u'hideout', u'kill']
[u'scot', u'slap', u'jone', u'resort', u'taunt']
[u'senat', u'report', u'call', u'delay', u'educ', u'reform']
[u'senat', u'vote', u'group', u'terror', u'list']
[u'sharp', u'join', u'bellami', u'storm']
[u'shepparton', u'shoot', u'trigger', u'polic', u'probe']
[u'arrest', u'melbourn', u'drug', u'raid']
[u'soldier', u'kill', u'iraq', u'blackhawk', u'crash']
[u'smart', u'rugbi', u'jone']
[u'snowi', u'engin', u'corp', u'plan', u'celebr']
[u'soldier', u'court', u'neglig', u'drive', u'charg']
[u'agricultur']
[u'lankan', u'presid', u'withdraw', u'state', u'emerg']
[u'statehood', u'recognis', u'indigen', u'right', u'land']
[u'statist', u'drop', u'teen', u'pregnanc']
[u'strong', u'expect', u'kalkurla', u'grove', u'land']
[u'studi', u'show', u'fall', u'smoke', u'cancer', u'rat']
[u'styri', u'lose', u'match', u'dissent']
[u'surgeon', u'contract', u'near', u'resolut']
[u'survey', u'quiz', u'public', u'crime', u'woe']
[u'sydney', u'busi', u'rob']
[u'singl', u'mother', u'question', u'govt', u'inquiri']
[u'teen', u'guilti', u'sydney', u'train', u'death']
[u'territori', u'minist', u'say', u'support', u'power']
[u'wicket', u'price', u'put', u'zim', u'charg']
[u'timberlak', u'toast', u'europ', u'music', u'award']
[u'time', u'stand', u'deliv', u'bushrang']
[u'toodyay', u'claim', u'life']
[u'toowoomba', u'prepar', u'schaeffer', u'shield', u'clash']
[u'tragic', u'loss', u'basketbal', u'captain', u'maher']
[u'transjet', u'servic', u'north', u'coast', u'communiti']
[u'doctor', u'face', u'disciplin', u'grand', u'prix', u'track']
[u'move', u'protect', u'titan', u'wreck']
[u'panel', u'derail', u'bush', u'drive', u'broad', u'clone']
[u'peacekeep', u'attack', u'congo']
[u'right', u'envoy', u'meet']
[u'urban', u'croc', u'rais', u'eyebrow']
[u'regul', u'target', u'spam', u'scam']
[u'reject', u'saddam', u'minut', u'peac', u'deal', u'white']
[u'troop', u'presenc', u'iraq']
[u'warn', u'combat', u'troop', u'readi', u'iraq']
[u'victorian', u'die', u'snorkel', u'trip']
[u'viduka', u'leed', u'comeback']
[u'waff', u'want', u'money', u'grain', u'grower']
[u'govt', u'consid', u'option', u'avert', u'teacher', u'strike']
[u'wallabi', u'pace']
[u'waugh', u'guid', u'blue', u'victori']
[u'weather', u'warm', u'grower', u'hop']
[u'webber', u'launch', u'tassi', u'challeng']
[u'webber', u'start', u'trek', u'chariti']
[u'wilko', u'fear', u'failur', u'wale']
[u'williamtown', u'blaze', u'take', u'toll', u'wildlif']
[u'woodbridg', u'bid', u'master', u'record']
[u'wood', u'singh', u'struggl', u'howel', u'perri', u'share']
[u'worsley', u'make', u'burner', u'emiss', u'pledg']
[u'yamba', u'inspector', u'fight', u'compens']
[u'abetz', u'ticket', u'spot', u'uncertain', u'despit', u'cabinet', u'post']
[u'age', u'popul', u'put', u'load', u'cancer', u'servic']
[u'black', u'book', u'semi', u'final', u'berth']
[u'black', u'sink', u'springbok']
[u'allenbi', u'texan', u'meltdown']
[u'anderson', u'back', u'roo', u'ash', u'open']
[u'annan', u'back', u'rapid', u'secur', u'council', u'reform']
[u'antarct', u'watchdog', u'black', u'list', u'pirat', u'fish']
[u'arson', u'suspect', u'buddhist', u'templ']
[u'asylum', u'seeker']
[u'australian', u'accus', u'spi', u'prepar', u'return']
[u'australia', u'humanitarian', u'support', u'iraq', u'invalu']
[u'bali', u'bomb', u'suspect', u'implic', u'sulawesi', u'attack']
[u'barnett', u'keep', u'profil', u'ahead', u'emerg']
[u'beatti', u'hanson', u'underdog', u'status']
[u'bosnian', u'democraci', u'film', u'win', u'raindanc', u'acclaim']
[u'bosnia', u'offer', u'send', u'troop', u'iraq', u'host', u'base']
[u'brack', u'honour', u'freeway', u'pledg', u'costello', u'say']
[u'brazil', u'lawmak', u'convict', u'keep', u'slave']
[u'burma', u'refus', u'accept', u'freedom']
[u'boost', u'breast', u'cancer', u'screen', u'servic']
[u'canberra', u'host', u'battl', u'home', u'brew']
[u'cathol', u'church', u'accus', u'forc', u'adopt']
[u'belt', u'freedom', u'sleep', u'messag']
[u'chamber', u'suspend', u'second', u'test']
[u'china', u'free', u'australian']
[u'circl', u'sentenc', u'trial', u'win', u'bipartisan', u'support']
[u'club', u'support', u'ralli', u'poki', u'rise']
[u'confer', u'celebr', u'sister', u'citi', u'relat']
[u'customari', u'inquiri', u'moot', u'region', u'justic', u'plan']
[u'dynamit', u'lade', u'italian', u'detain', u'quito', u'airport']
[u'einstein', u'take', u'earli', u'lead', u'best', u'german', u'poll']
[u'england', u'rock', u'injuri']
[u'england', u'balshaw', u'wale', u'game']
[u'expert', u'gather', u'constitut', u'confer']
[u'fatah', u'shun', u'quri', u'secur', u'minist', u'nomine']
[u'feder', u'injur', u'accid']
[u'fiji', u'financ', u'minist', u'tip', u'strong', u'growth']
[u'pride', u'march', u'stag', u'adelaid']
[u'dead', u'helicopt', u'crash']
[u'want', u'arm', u'home', u'invas']
[u'franc', u'open', u'space', u'launch', u'russia']
[u'free', u'sammaki', u'await', u'children', u'arriv']
[u'giffin', u'scotland', u'clash']
[u'govt', u'deni', u'tight', u'budget', u'polic', u'rise']
[u'grazier', u'histori', u'brand', u'coramba']
[u'hanson', u'case', u'highlight', u'fund', u'shortfal']
[u'hanson', u'debat', u'point', u'robust', u'democraci', u'judg']
[u'helicopt', u'crash', u'north']
[u'henin', u'hardenn', u'secur', u'spot']
[u'hindu', u'staff', u'arrest', u'anti', u'govern', u'articl']
[u'hogg', u'sign', u'warwickshir']
[u'hope', u'beetl', u'releas', u'destroy', u'noxious', u'weed']
[u'howard', u'arriv', u'talk']
[u'howard', u'head', u'london']
[u'howard', u'reject', u'critic', u'brigitt', u'secur']
[u'reveal', u'champion', u'trophi', u'venu']
[u'hero', u'say', u'privat', u'lynch']
[u'industri', u'welcom', u'govt', u'plan', u'boost', u'fish', u'sector']
[u'intern', u'confer', u'kick', u'hobart']
[u'interst', u'brick', u'import', u'eas', u'shortag']
[u'iran', u'pois', u'meet', u'nuclear', u'program']
[u'ireland', u'true', u'test', u'franc']
[u'ireland', u'want', u'standout', u'lineout']
[u'israel', u'gaza', u'raid', u'kill']
[u'jordan', u'investig', u'ban', u'cartoon']
[u'journalist', u'riski', u'china']
[u'kiwi', u'punter', u'back', u'bok']
[u'lazio', u'mihajlov', u'ban', u'kick', u'spit']
[u'unemploy', u'expens', u'time', u'job']
[u'maher', u'tragedi', u'overshadow', u'build']
[u'machin', u'chess', u'enter', u'virtual', u'realiti']
[u'mead', u'tell', u'wallabi', u'stop', u'look', u'leagu']
[u'melbourn', u'artist', u'award', u'paint', u'prize']
[u'militari', u'upgrad', u'afford', u'govt']
[u'murphi', u'triumph', u'home', u'turf']
[u'myskina', u'stay', u'aliv']
[u'nemer', u'sentenc', u'crime', u'victim', u'rann']
[u'north', u'korea', u'test', u'free', u'nuclear', u'weapon']
[u'govt', u'seek', u'young', u'voic']
[u'cautious', u'dali', u'river', u'develop']
[u'resid', u'prepar', u'earli', u'cyclon', u'season']
[u'olymp', u'scrape', u'past', u'wolv']
[u'opposit', u'call', u'intellig', u'link', u'inquiri']
[u'palestinian', u'kill', u'west', u'bank', u'clash', u'report']
[u'pasminco', u'apologis', u'licenc', u'breach']
[u'ownership', u'make', u'rabi', u'danger']
[u'philippin', u'airport', u'seig', u'end', u'dead']
[u'pierc', u'mauresmo', u'french', u'dream', u'team']
[u'polic', u'appeal', u'stab', u'inform']
[u'polic', u'investig', u'murder', u'year', u'girl']
[u'polit', u'activist', u'kill', u'kashmir']
[u'poor', u'condit', u'hamper', u'helicopt', u'crash', u'probe']
[u'powel', u'applaud', u'symbol', u'east', u'peac', u'plan']
[u'power', u'blackout', u'hit', u'chile']
[u'price', u'take', u'best', u'windi', u'hang']
[u'professor', u'dismiss', u'green', u'nazi', u'comparison']
[u'cross', u'pull', u'baghdad', u'basra']
[u'resurg', u'bullet', u'sink', u'pirat']
[u'salt', u'club', u'scrutini', u'brawl']
[u'samoa', u'commerci', u'rugbi', u'go', u'break']
[u'search', u'miss', u'year', u'resum']
[u'secret', u'nation', u'park', u'talk', u'reveal']
[u'shogun', u'lodg', u'collaps', u'die', u'race']
[u'shogun', u'lodg', u'die', u'winner', u'boss']
[u'slay', u'schoolgirl', u'bodi', u'burn', u'ditch']
[u'sorenstam', u'shoot', u'japanes', u'defenc']
[u'sorenstam', u'shoot', u'clear', u'japan']
[u'south', u'african', u'rugbi', u'boss', u'criticis', u'lack']
[u'specialist', u'boost', u'brisban', u'cancer', u'servic']
[u'lankan', u'presid', u'call', u'uniti', u'govern']
[u'stang', u'verg', u'quit', u'iraq']
[u'surpris', u'unemploy', u'drop', u'boost', u'bush']
[u'swiss', u'support', u'smoker', u'quit']
[u'taliban', u'seek', u'leverag', u'hostag', u'take']
[u'businessman', u'win', u'gold', u'medal', u'honour']
[u'taylor', u'ramp', u'secur', u'offer', u'bounti']
[u'teen', u'kill', u'south', u'yarra', u'nightclub', u'fight']
[u'teen', u'stab', u'restaur', u'brawl']
[u'thorn', u'warn', u'black', u'defenc']
[u'tori', u'star', u'portillo', u'quit', u'polit']
[u'trucki', u'suspend', u'port', u'blockag', u'pend', u'load']
[u'trucki', u'consid', u'port', u'disput', u'compromis']
[u'turkey', u'abandon', u'iraq', u'deploy', u'plan']
[u'soldier', u'kill', u'wound', u'fallujah']
[u'embassi', u'review', u'saudi', u'secur']
[u'job', u'figur', u'fail', u'bolster', u'market']
[u'mail', u'centr', u'reopen', u'anthrax', u'scare']
[u'alert', u'qaeda', u'cargo', u'plane', u'plot']
[u'review', u'helicopt', u'defenc', u'iraq']
[u'warplan', u'bomb', u'target', u'saddam', u'hometown']
[u'lib', u'ponder', u'sell', u'eas', u'salin']
[u'victorian', u'liber', u'welcom', u'treasur', u'costello']
[u'victoria', u'road', u'strategi', u'work', u'minist', u'say']
[u'viduka', u'dump', u'leed', u'bust']
[u'wallabi', u'secur', u'semi', u'final', u'spot']
[u'westwood', u'howel', u'seve', u'trophi', u'honour']
[u'woman', u'give', u'birth', u'polic', u'boat']
[u'worker', u'trap', u'build', u'collaps', u'itali']
[u'world', u'scienc', u'forum', u'kick', u'hungari']
[u'sudanes', u'kill', u'alm', u'rush']
[u'kill', u'iranian', u'road', u'accid']
[u'cinematographi', u'win', u'peer', u'acclaim']
[u'abetz', u'retain', u'spot', u'senat', u'ticket']
[u'alcohol', u'cannabi', u'problem', u'drug', u'servic']
[u'report', u'back', u'nest', u'plan']
[u'amalgam', u'domin', u'meet']
[u'arafat', u'keep', u'secur', u'control', u'israel', u'unimpress']
[u'defend', u'price', u'polici']
[u'rue', u'world', u'seat']
[u'bevan', u'guid', u'australia', u'victori']
[u'bevan', u'lift', u'australia', u'victori']
[u'bomber', u'strike', u'saudi', u'capit']
[u'boomer', u'draw', u'dream', u'team']
[u'brisban', u'biki', u'blood', u'bank', u'fundrais']
[u'brisban', u'home', u'buyer', u'shrug', u'rat', u'rise']
[u'british', u'embassi', u'warn', u'possibl', u'terror', u'attack']
[u'calm', u'burn', u'off', u'cloak', u'perth', u'haze']
[u'cambodia', u'celebr', u'year', u'independ']
[u'capriati', u'mauresmo', u'round', u'semi']
[u'celtic', u'titl', u'charg', u'gather', u'head', u'steam']
[u'commonwealth', u'urg', u'rivkin', u'case']
[u'coorong', u'recoveri', u'mark', u'murray', u'dredg', u'mileston']
[u'costello', u'shoot', u'employ']
[u'council', u'warn', u'rate', u'rise', u'road', u'fund', u'end']
[u'danish', u'cross', u'deplor', u'guantanamo', u'detent']
[u'detect', u'join', u'inquiri', u'sydney', u'girl', u'murder']
[u'diaz', u'senior', u'share', u'queensland', u'lead']
[u'disguis', u'pull', u'saudi', u'suicid', u'attack']
[u'england', u'down', u'brave', u'wale']
[u'england', u'prim', u'revitalis', u'wale']
[u'everton', u'ferguson', u'health', u'scare']
[u'explos', u'hear', u'baghdad']
[u'palestinian', u'kill', u'jenin', u'curfew', u'impos']
[u'franc', u'control', u'half', u'time']
[u'franc', u'overpow', u'ireland']
[u'friend', u'corella', u'bird', u'cull']
[u'georgia', u'ballot', u'count', u'halt', u'amid', u'mass', u'protest']
[u'german', u'harri', u'potter', u'spell']
[u'giteau', u'smith', u'face', u'black']
[u'giteau', u'semi', u'final', u'injuri', u'cloud']
[u'glori', u'bounc', u'unit', u'sink', u'striker']
[u'guilti', u'verdict', u'sap', u'live', u'hanson', u'say']
[u'gunner', u'clear', u'leed', u'free', u'fall']
[u'hanson', u'entitl', u'elector', u'refund']
[u'hezbollah', u'israel', u'prison', u'trade', u'uncertain']
[u'high', u'hop', u'second', u'taikonaut', u'launch']
[u'howard', u'attend', u'remembr', u'servic']
[u'hundr', u'protest', u'west', u'bank', u'wall']
[u'injur', u'mortaza', u'rule', u'month']
[u'investig', u'quiz', u'chopper', u'crash', u'wit']
[u'iran', u'promis', u'iaea', u'cooper', u'diplomat']
[u'iran', u'accept', u'tougher', u'inspect']
[u'iraq', u'zone', u'offici']
[u'italian', u'ralli', u'west', u'bank', u'wall']
[u'say', u'olonga']
[u'jail', u'term', u'condemn', u'indian', u'journalist', u'hide']
[u'jone', u'defend', u'fumbl', u'roger']
[u'jone', u'defend', u'wobbl', u'wallabi']
[u'kangaroo', u'triumph', u'ash', u'open']
[u'kearn', u'back', u'morley']
[u'king', u'continu', u'perfect', u'start']
[u'king', u'outclass', u'croc']
[u'koizumi', u'tip', u'retain', u'power', u'japan', u'vote']
[u'lose', u'bilbao', u'return', u'fernandez']
[u'mitchel', u'hail', u'devast', u'black']
[u'murphi', u'claim', u'trick']
[u'muscovit', u'kiss', u'public', u'affect', u'goodby']
[u'nest', u'plan', u'favour', u'rich', u'govern', u'say']
[u'palestinian', u'govt', u'deal', u'good', u'israel']
[u'nigeria', u'unmov', u'bounti', u'exil', u'taylor']
[u'suspect', u'rebel', u'kill', u'indonesia', u'aceh']
[u'trial', u'cannabi', u'clinic', u'treat', u'user']
[u'children', u'risk', u'heart', u'diseas']
[u'parliament', u'hold', u'power', u'expert']
[u'parramatta', u'power', u'knight']
[u'perth', u'polic', u'investig', u'hold']
[u'polic', u'helicopt', u'control', u'parti']
[u'polic', u'locat', u'miss', u'scout', u'leader']
[u'polic', u'search', u'nation', u'park', u'miss', u'scout']
[u'polici', u'debat', u'nation', u'comeback']
[u'poll', u'close', u'japan', u'elect']
[u'prematur', u'daughter', u'royal', u'edward', u'sophi']
[u'pressur', u'crack', u'black', u'jone']
[u'punter', u'second', u'stringer']
[u'queanbeyan', u'resid', u'urg', u'join', u'rail', u'fight']
[u'cross', u'close', u'iraq', u'offic']
[u'reid', u'vow', u'fight']
[u'rescuer', u'drown', u'kangaroo', u'island', u'save', u'injur']
[u'rescu', u'worker', u'search', u'riyadh', u'bomb', u'survivor']
[u'road', u'accid', u'caus', u'traffic', u'chao']
[u'jone', u'confirm', u'class', u'victori']
[u'finalis', u'health', u'reform', u'bodi']
[u'fundrais', u'station', u'repair', u'track']
[u'sampdoria', u'pile', u'miseri', u'winless', u'empoli']
[u'satellit', u'tracker', u'help', u'bike', u'accid', u'victim']
[u'saudi', u'ambassador', u'condemn', u'evil', u'bomber']
[u'scientist', u'assess', u'prestig', u'spill', u'effect']
[u'scotland', u'yard', u'develop', u'conceal', u'weapon', u'scanner']
[u'seve', u'struggl', u'spain']
[u'sizzl', u'campbel', u'doom', u'tiger', u'money']
[u'diver', u'serious', u'hurt', u'picton', u'accid']
[u'south', u'korean', u'worker', u'clash', u'riot', u'polic']
[u'stanhop', u'media', u'win', u'monaro', u'select']
[u'sydney', u'fund', u'terror', u'cell', u'lebanon', u'court', u'tell']
[u'tamil', u'tiger', u'ceasefir', u'legal', u'lankan']
[u'govt', u'drag', u'feet', u'famili', u'violenc', u'law']
[u'timelin', u'terror', u'saudi', u'arabia']
[u'turkish', u'asylum', u'seeker', u'appli', u'visa']
[u'turkish', u'asylum', u'seeker', u'indonesia']
[u'drown', u'kangaroo', u'island']
[u'drown', u'kangaroo', u'island', u'winch']
[u'tourist', u'miss', u'kangaroo', u'island']
[u'ugandan', u'rebel', u'kill', u'church', u'offici']
[u'union', u'stevedor', u'commit', u'resolv', u'port']
[u'humili', u'olymp', u'basebal', u'exit']
[u'target', u'saddam', u'home', u'town', u'guerrilla']
[u'troop', u'captur', u'saddam', u'bodyguard']
[u'victorian', u'liber', u'region', u'voter']
[u'helicopt', u'crash', u'site', u'guard']
[u'wallabi', u'weak', u'beat', u'black', u'say', u'logan']
[u'warrior', u'overcom', u'redback', u'adelaid']
[u'woodbridg', u'suffer', u'setback', u'record']
[u'world', u'revel', u'polic', u'taxi', u'busi']
[u'young', u'leader', u'instrument', u'indigen', u'govern']
[u'zimbabw', u'heartbreak', u'windi', u'battl', u'draw']
[u'aborigin', u'remain', u'keep', u'box', u'communiti']
[u'govt', u'cautious', u'heritag', u'overhaul']
[u'adelaid', u'host', u'davi']
[u'airlin', u'disappear', u'horizon']
[u'pollut', u'increas', u'heart', u'attack', u'risk', u'studi']
[u'albania', u'oldest', u'woman', u'die', u'age']
[u'black', u'world', u'rank']
[u'qaeda', u'toppl', u'saudi', u'govt']
[u'angri', u'woodward', u'flay', u'falter', u'england']
[u'rat', u'rise', u'tip', u'month']
[u'art', u'povera', u'giant', u'mario', u'merz', u'die', u'itali']
[u'kill', u'riyadh', u'suicid', u'blast']
[u'aust', u'china', u'report', u'highlight', u'age', u'popul']
[u'aust', u'indonesia', u'discuss', u'free', u'trade', u'deal']
[u'australia', u'boost', u'iraq', u'troop', u'train']
[u'awesom', u'franc', u'world', u'osullivan']
[u'bail', u'gang', u'member', u'ban', u'contact', u'biki']
[u'bailey', u'rule', u'test', u'seri']
[u'bank', u'settl', u'disput', u'hobart']
[u'beatti', u'announc', u'stricter', u'rule', u'elector']
[u'beer', u'sale', u'local', u'barley', u'stock']
[u'beer', u'wench', u'spark', u'alcohol', u'abus', u'fear']
[u'booki', u'write', u'wallabi']
[u'die', u'motorbik', u'crash']
[u'bullet', u'prove', u'good', u'hawk']
[u'burma', u'free', u'polit', u'prison']
[u'indigen', u'welfar', u'cycl']
[u'govt', u'boost', u'polic', u'fund']
[u'campaign', u'consid', u'child', u'injuri', u'prevent']
[u'campbel', u'take', u'tour', u'championship']
[u'cancer', u'check', u'reveal', u'high', u'level', u'damag']
[u'centr', u'hop', u'begin', u'work', u'bushfir']
[u'chamber', u'offer', u'deal', u'reveal', u'dope', u'ring', u'secret']
[u'chelsea', u'slash', u'arsenal', u'lead']
[u'china', u'endang', u'panda', u'biscuit']
[u'chines', u'director', u'win', u'prize', u'tokyo', u'film']
[u'clijster', u'protest', u'schedul']
[u'clijster', u'tour', u'champ', u'final']
[u'clinton', u'deliv', u'china', u'aid', u'warn']
[u'club', u'endur', u'profit', u'fall']
[u'commonwealth', u'youth', u'deleg', u'gather']
[u'convict', u'shooter', u'face', u'sentenc']
[u'corrupt', u'watchdog', u'consid', u'investig']
[u'costello', u'answer', u'rbas', u'household', u'debt', u'figur']
[u'council', u'fight', u'sport', u'centr', u'fund']
[u'councillor', u'consid', u'school', u'drop', u'zone', u'plan']
[u'council', u'move', u'seagrass', u'fear']
[u'council', u'highlight', u'poor', u'road']
[u'court', u'let', u'resum', u'trade']
[u'court', u'rule', u'teenag', u'face', u'trial', u'murder']
[u'darwin', u'navi', u'base', u'accid', u'prompt', u'investig']
[u'defenc', u'minist', u'thank', u'australian', u'troop', u'iraq']
[u'develop', u'pace', u'gatton', u'shire']
[u'diamond', u'appli', u'firearm', u'licenc']
[u'diaz', u'down', u'townsend', u'play']
[u'digger', u'london', u'mark', u'special', u'memori']
[u'docker', u'train']
[u'doubt', u'futur', u'leagu', u'club', u'asset']
[u'doubt', u'cast', u'veget', u'crop', u'outlook']
[u'driver', u'avoid', u'jail', u'crash', u'death']
[u'driver', u'steal', u'die', u'crash']
[u'weather', u'spark', u'restrict']
[u'environ', u'group', u'want', u'confus', u'recycl']
[u'farmer', u'group', u'air', u'deregul', u'fear']
[u'farmer', u'cheaper']
[u'ferguson', u'stay', u'unit']
[u'schoolgirl', u'injur', u'deton', u'blast']
[u'food', u'safeti', u'highlight', u'weather', u'warm']
[u'atsic', u'deputi', u'vow', u'court', u'fight']
[u'coach', u'call', u'rugbi', u'shake']
[u'dictat', u'defeat', u'guatemala']
[u'forum', u'focus', u'rainforest', u'threat']
[u'franc', u'brouzet', u'world']
[u'fremantl', u'port', u'employe', u'return', u'work']
[u'ganguli', u'play', u'australia']
[u'georgian', u'presid', u'ask', u'step']
[u'backpack', u'reason', u'come']
[u'gold', u'coast', u'host', u'mental', u'health', u'gather']
[u'govt', u'urg', u'increas', u'fund', u'tackl', u'violenc']
[u'green', u'ballarat', u'candid', u'decid', u'prefer']
[u'green', u'want', u'balanc', u'sandon', u'decis']
[u'group', u'complain', u'disabl', u'accommod']
[u'group', u'push', u'oversea', u'train', u'doctor', u'work']
[u'group', u'reject', u'latrob', u'valley', u'toxic', u'wast', u'claim']
[u'hanson', u'reveal', u'jail', u'sap', u'live']
[u'healey', u'fli', u'england', u'cover']
[u'heritag', u'focus', u'research', u'station']
[u'hezbollah', u'leader', u'demand', u'prison', u'releas']
[u'home', u'build', u'surg', u'ahead']
[u'hospit', u'emerg', u'dept', u'close', u'break', u'point']
[u'hospit', u'resum', u'elect', u'surgeri', u'virus']
[u'houllier', u'vow', u'red', u'revolut', u'continu']
[u'howard', u'back', u'brave', u'blair', u'iraq']
[u'idea', u'moot', u'lower', u'countri', u'rat']
[u'india', u'court', u'stay', u'state', u'order', u'arrest', u'journalist']
[u'india', u'tour', u'pakistan', u'earli']
[u'indigen', u'group', u'seek', u'cooma', u'land', u'recognit']
[u'indonesia', u'ban', u'commemor', u'separatist']
[u'indonesian', u'militari', u'say', u'rebel', u'command', u'hang']
[u'indonesia', u'asylum', u'seeker', u'ambon']
[u'inquiri', u'spark', u'sustain', u'firewood', u'suppli']
[u'internet', u'dissid', u'lose', u'appeal', u'sentenc']
[u'iranian', u'american', u'academ', u'free', u'bail']
[u'iran', u'pledg', u'suspend', u'uranium', u'enrich']
[u'hear', u'test', u'case', u'entitl']
[u'ireland', u'captain', u'wood', u'retir']
[u'israel', u'back', u'hezbollah', u'prison', u'trade']
[u'jail', u'sentenc', u'extend', u'anglican', u'priest']
[u'japan', u'head', u'reduc', u'major', u'exit', u'poll']
[u'japan', u'rule', u'cabinet', u'chang']
[u'kerang', u'year', u'celebr', u'call']
[u'king', u'prove', u'good', u'croc']
[u'kournikova', u'consid', u'surgeri', u'play']
[u'lake', u'eyr', u'basin', u'manag', u'jeopardi']
[u'laport', u'look', u'forward', u'english', u'battl']
[u'leagu', u'reject', u'imperi', u'transfer', u'plan']
[u'liber', u'democrat', u'retain', u'power', u'japan']
[u'lib', u'seek', u'england', u'candid']
[u'local', u'govt', u'consid', u'playground', u'smoke']
[u'local', u'govt', u'seek', u'rate', u'set', u'power']
[u'local', u'charg', u'sydney', u'schoolgirl', u'murder']
[u'macair', u'consid', u'expans', u'potenti']
[u'aid', u'polic', u'maroochydor', u'death', u'probe']
[u'arrest', u'terror', u'charg', u'northern']
[u'die', u'highway', u'crash']
[u'die', u'road', u'crash']
[u'front', u'court', u'girl', u'murder']
[u'court', u'murder', u'charg']
[u'marina', u'develop', u'offer', u'econom', u'spin', u'off']
[u'martin', u'rid', u'away', u'adelaid', u'titl']
[u'mauresmo', u'stun', u'henin', u'hardenn', u'reach', u'final']
[u'singapor', u'troop', u'arriv', u'central']
[u'move', u'attract', u'doctor', u'rockhampton']
[u'highlight', u'jobless', u'figur', u'fall']
[u'gambier', u'join', u'health', u'senat']
[u'navi', u'ship', u'bowen', u'home', u'away', u'home']
[u'accc', u'deputi', u'chair', u'announc']
[u'anti', u'terror', u'law', u'cumbersom', u'ruddock']
[u'panel', u'review', u'feder', u'drought', u'polici']
[u'polici', u'rare', u'liber', u'confer']
[u'power', u'station', u'run']
[u'zealand', u'boost', u'pacif']
[u'light', u'ahead', u'tunnel', u'plan']
[u'call', u'joint', u'govt', u'approach', u'immigr']
[u'teacher', u'award', u'preach', u'democraci']
[u'nullabor', u'plain', u'train', u'derail', u'disrupt', u'servic']
[u'ombudsman', u'probe', u'school', u'safeti']
[u'dead', u'wound', u'southern', u'philippin']
[u'nation', u'resurg', u'delay', u'elect']
[u'fool', u'write', u'aussi', u'thorn']
[u'fool', u'write', u'wallabi', u'thorn']
[u'palestinian', u'leader', u'agre', u'cabinet']
[u'perilya', u'upbeat', u'north', u'prospect']
[u'philippin', u'court', u'reject', u'impeach', u'chief']
[u'write', u'hickss', u'lawyer']
[u'suspend', u'interview']
[u'polic', u'consid', u'charg', u'level', u'cross', u'incid']
[u'polic', u'lobbi', u'close', u'violenc', u'plagu']
[u'polic', u'prais', u'kangaroo', u'island', u'rescuer']
[u'polic', u'probe', u'caravan', u'blaze', u'death']
[u'polic', u'probe', u'greek', u'club', u'blaze']
[u'polocross', u'player', u'name', u'west', u'sport', u'star']
[u'princ', u'charl', u'fli', u'home', u'face', u'mysteri', u'scandal']
[u'public', u'health', u'servic']
[u'public', u'urg', u'bushfir', u'readi']
[u'pump', u'station', u'work', u'save', u'thousand']
[u'qanta', u'director', u'urg', u'step', u'asid']
[u'question', u'rais', u'transact', u'centr', u'fund']
[u'railway', u'bridg', u'work', u'start', u'soon']
[u'expect', u'shed', u'light', u'rat', u'rise']
[u'report', u'highlight', u'council', u'concern']
[u'resid', u'fight', u'plan', u'want', u'knowl', u'meet']
[u'rioter', u'pelt', u'perth', u'polic', u'bottl']
[u'road', u'crash', u'claim', u'teen', u'life']
[u'rossi', u'ride', u'yamaha']
[u'rudd', u'assess', u'iraq', u'situat', u'hand']
[u'chopper', u'crash']
[u'seve', u'britain', u'ireland']
[u'saudi', u'bomb', u'plotter']
[u'scientist', u'spina', u'bifida', u'breakthrough']
[u'assault', u'get', u'priest', u'longer', u'jail', u'stay']
[u'shell', u'work', u'rectifi', u'environment', u'breach']
[u'shire', u'underwrit', u'tree', u'walk']
[u'shooter', u'nation', u'clay', u'target', u'contest']
[u'smith', u'mend', u'wallabi']
[u'stinger', u'suit', u'overheat', u'kid']
[u'strong', u'show', u'ail', u'busi']
[u'studi', u'find', u'worth', u'popular', u'diet']
[u'studi', u'probe', u'work', u'health', u'impact']
[u'stun', u'late', u'see', u'juve', u'pull', u'clear']
[u'capucho', u'keep', u'ranger', u'touch']
[u'super', u'maxi', u'sydney', u'hobart', u'duel']
[u'govt', u'defend', u'program']
[u'telstra', u'upbeat', u'phone']
[u'text', u'messag', u'driver', u'get', u'year', u'suspend']
[u'thai', u'set', u'record', u'live', u'centiped']
[u'matrix', u'revolutionis', u'world', u'offic']
[u'confirm', u'meningococc', u'case']
[u'tiger', u'unchang', u'blue', u'clash']
[u'tough', u'real', u'humbl']
[u'transport', u'firm', u'name', u'busi']
[u'trio', u'court', u'home', u'invas']
[u'tripl', u'treat', u'sorenstam', u'japan']
[u'turkish', u'asylum', u'seeker', u'move', u'indonesian', u'hotel']
[u'union', u'air', u'committe', u'hospit', u'concern']
[u'union', u'blame', u'delay', u'ansett', u'money', u'anderson']
[u'detain', u'baghdad', u'hotel', u'rocket', u'attack']
[u'soldier', u'kill', u'grenad', u'attack', u'iraq']
[u'girl', u'fight', u'court']
[u'govt', u'speak', u'region', u'develop']
[u'polic', u'scrutinis', u'speed', u'camera', u'fals']
[u'virgin', u'float', u'expect', u'rais']
[u'wale', u'upbeat', u'go', u'bang']
[u'liber', u'leader', u'deni', u'hell', u'challeng']
[u'lib', u'meet', u'amid', u'leadership', u'rumour']
[u'wallabi', u'suffoc', u'public', u'pressur']
[u'water', u'work', u'get', u'subsidi']
[u'wave', u'support', u'surf', u'diploma']
[u'white', u'hous', u'unhappi', u'iraqi', u'council']
[u'women', u'strike', u'dengu', u'fever']
[u'woodbridg', u'record', u'track']
[u'woodsid', u'claim', u'whale', u'safe', u'seismic', u'work']
[u'abattoir', u'get', u'revamp']
[u'servic', u'discuss']
[u'signal', u'break', u'hill', u'retain', u'sydney', u'servic']
[u'accc', u'accus', u'geelong', u'petrol', u'station', u'price']
[u'green', u'want', u'rain', u'water', u'tank', u'instal']
[u'black', u'omit', u'umaga']
[u'option', u'consid', u'rail', u'servic']
[u'world', u'athlet', u'sampl', u'face', u'retest']
[u'choos', u'eden', u'monaro', u'candid']
[u'sharehold', u'meet']
[u'anderson', u'warn', u'drought', u'get', u'wors']
[u'artist', u'struggl', u'poverti', u'report']
[u'australia', u'mark', u'remembr']
[u'author', u'appeal', u'wit', u'plane', u'crash']
[u'author', u'search', u'escap', u'fishermen', u'cape']
[u'backpack', u'industri', u'urg', u'complac']
[u'barnett', u'brand', u'leader']
[u'barnett', u'hold', u'lib', u'leadership']
[u'barra', u'head', u'south', u'research']
[u'beachgoer', u'urg', u'watch', u'unstabl', u'condit']
[u'billiton', u'pave', u'site']
[u'bight', u'park', u'safe', u'poach']
[u'pineappl', u'face', u'rough']
[u'blair', u'emphasis', u'import', u'britain', u'twin']
[u'blue', u'chip', u'stock', u'drag', u'market']
[u'bok', u'return', u'resign']
[u'boost', u'council', u'aviat', u'plan']
[u'bull', u'claim', u'late', u'scalp']
[u'bushfir', u'lead', u'blow', u'budget']
[u'bushrang', u'strong', u'start']
[u'pacif', u'highway', u'polic']
[u'campbel', u'shoot', u'tour']
[u'seek', u'truck', u'upgrad']
[u'chang', u'approv', u'wide', u'elector']
[u'chang', u'rural', u'environment', u'manag']
[u'clijster', u'crush', u'mauresmo', u'championship']
[u'confer', u'hear', u'media', u'coverag', u'inspir']
[u'council', u'dark', u'wast', u'site']
[u'counter', u'disast', u'group', u'prepar', u'cyclon']
[u'court', u'hear', u'jealous', u'mother', u'stab', u'daughter']
[u'court', u'appeal', u'reserv', u'decis', u'rapist']
[u'court', u'strip', u'retir', u'payout']
[u'dark', u'cloud', u'cast', u'regul']
[u'doctor', u'baulk', u'rejoin']
[u'dollar', u'climb', u'year', u'high']
[u'drink', u'water', u'boost', u'flow', u'trade']
[u'drop', u'ball', u'drop', u'say', u'jone']
[u'drought', u'dri', u'water', u'author', u'revenu']
[u'echinacea', u'hard', u'help', u'studi']
[u'elliott', u'appeal', u'slat', u'februari']
[u'energi', u'firm', u'expect', u'loss']
[u'eriksson', u'wait', u'ferdinand', u'decis']
[u'ettridg', u'welcom', u'fraud', u'trial', u'probe']
[u'famili', u'launch', u'damag', u'claim', u'beach']
[u'farmer', u'face', u'chang', u'drought', u'condit']
[u'farmer', u'urg', u'genet', u'engin', u'crop']
[u'farmer', u'urg', u'speak', u'drought']
[u'farmer', u'warn', u'tool', u'fuel', u'bushfir']
[u'fast', u'fund', u'seek', u'transport', u'develop', u'studi']
[u'fear', u'drought', u'chang', u'subsidi']
[u'feder', u'polic', u'franc', u'probe', u'brigitt']
[u'feder', u'ralli', u'spoil', u'agassi', u'return']
[u'govt', u'ditch', u'dump', u'plan']
[u'ferrero', u'stumbl', u'spot']
[u'fifa', u'presid', u'slam', u'inact']
[u'flintoff', u'lead', u'england', u'seri']
[u'french', u'forc', u'chang']
[u'fund', u'boost']
[u'ganguli', u'scoff', u'schedul']
[u'giteau', u'smith', u'clash']
[u'giteau', u'smith', u'semi', u'final']
[u'govt', u'deni', u'kurd', u'ask', u'asylum']
[u'group', u'give', u'support', u'oversea', u'doctor', u'plan']
[u'group', u'combin', u'effort', u'fight', u'diabet', u'kidney']
[u'hanson', u'victimis', u'anderson']
[u'hewitt', u'look', u'sharp', u'davi', u'final']
[u'high', u'school', u'number', u'rise']
[u'hobart', u'gateway', u'facelift']
[u'hong', u'kong', u'call', u'aussi', u'hunter', u'elus', u'croc']
[u'hotel', u'owner', u'bond', u'storag']
[u'indonesia', u'examin', u'asylum', u'claim']
[u'indonesian', u'troop', u'kill', u'separatist', u'aceh']
[u'injuri', u'forc', u'javag', u'srinath', u'retir']
[u'inquest', u'begin', u'canberra', u'hospit', u'death']
[u'iran', u'halt', u'uranium', u'enrich']
[u'john', u'come', u'train', u'session']
[u'john', u'look', u'good', u'neck', u'injuri']
[u'jone', u'say', u'forget', u'form', u'book']
[u'juri', u'player', u'vote']
[u'justic', u'kirbi', u'concern', u'self', u'represent']
[u'kurd', u'contest', u'australian', u'refuge', u'claim']
[u'latham', u'offer', u'migrat', u'solut', u'hous', u'price']
[u'leed', u'sack', u'manag', u'reid']
[u'lodg', u'resid', u'home']
[u'jail', u'tourist', u'attack']
[u'rape', u'charg', u'face', u'court']
[u'trial', u'tamara', u'smith', u'murder']
[u'face', u'trial', u'facto', u'slay']
[u'maryborough', u'tertiari', u'campus', u'plan', u'ahead']
[u'mayor', u'air', u'riverway', u'petit', u'concern']
[u'mayor', u'unhappi', u'wast', u'facil', u'decis']
[u'mayor', u'unhappi', u'water', u'plan', u'consult']
[u'migrat', u'prove', u'boon', u'boom', u'boonah']
[u'miner', u'fin', u'fatal', u'hunter', u'accid']
[u'minist', u'want', u'drought', u'panel', u'represent']
[u'mirani', u'resid', u'honour', u'fall', u'troop']
[u'polic', u'combat', u'gregori', u'down', u'woe']
[u'morley', u'escap', u'match']
[u'share', u'slide', u'despit', u'profit']
[u'top', u'bank', u'sector', u'profit']
[u'nake', u'husband', u'imprison', u'year']
[u'nalbandian', u'head', u'australian', u'hardcourt', u'list']
[u'nat', u'highlight', u'disrupt', u'independ']
[u'newcastl', u'mayor', u'rat', u'chang', u'high']
[u'iraqi', u'pull', u'australia', u'hill']
[u'resolut', u'liquor', u'licens']
[u'wrong', u'jonni', u'say', u'woodward']
[u'govt', u'block', u'tunnel', u'plan']
[u'put', u'len', u'hide', u'home', u'camera']
[u'review', u'foreign', u'land', u'ownership']
[u'dead', u'plane', u'crash']
[u'opposit', u'urg', u'govt', u'reduc', u'stamp', u'duti']
[u'pakistan', u'eye', u'asia', u'right']
[u'perth', u'sweat', u'record', u'temperatur']
[u'petit', u'want', u'countrylink', u'servic', u'keep', u'track']
[u'pilot', u'dark', u'traffic']
[u'polic', u'boost', u'riverina']
[u'polic', u'investig', u'melbourn', u'stab']
[u'polic', u'minist', u'endors', u'nation', u'plan', u'combat']
[u'polic', u'minist', u'discuss', u'firework', u'trade']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'offic', u'recov', u'wine', u'bottl', u'attack']
[u'polic', u'probe', u'school', u'exam', u'disrupt']
[u'polic', u'union', u'unhappi', u'initi']
[u'port', u'zone', u'gear', u'predict', u'record', u'harvest']
[u'public', u'urg', u'rememb', u'fall', u'soldier']
[u'coalit', u'promis', u'crop', u'insur', u'impost']
[u'opposit', u'question', u'juri', u'trial']
[u'queen', u'howard', u'blair', u'dedic', u'memori', u'london']
[u'queen', u'open', u'australian', u'memori']
[u'real', u'lead', u'euro', u'footbal', u'year', u'nomin']
[u'tape', u'snare', u'hong', u'kong', u'croc', u'hunt']
[u'region', u'rememb', u'fall', u'troop']
[u'report', u'call', u'lower', u'rural']
[u'rescu', u'chopper', u'tragedi']
[u'respect', u'franc', u'attack', u'england', u'fear']
[u'review', u'highlight', u'taxi', u'industri', u'uncertainti']
[u'roddick', u'eager', u'justifi', u'world', u'lead']
[u'rooki', u'name', u'hockeyroo', u'team']
[u'rover', u'releg', u'zone']
[u'sailor', u'handl', u'rokocoko', u'jone']
[u'jail', u'offend', u'rehab', u'scheme']
[u'saudi', u'forc', u'pour', u'mecca', u'protect', u'ramadan']
[u'saudi', u'king', u'vow', u'crush', u'terrorist']
[u'arrest', u'riyadh', u'blast', u'report']
[u'sharehold', u'time', u'consid', u'rural', u'press']
[u'shiit', u'mayor', u'kill', u'clash', u'troop']
[u'shire', u'record', u'land', u'valuat', u'increas']
[u'simpson', u'captain', u'kangaroo']
[u'slim', u'guitar', u'auction', u'benefit', u'polic', u'woman']
[u'sponsor', u'help', u'schooli', u'prepar']
[u'springer', u'opera', u'get', u'offici', u'thumb']
[u'sweet', u'time', u'babinda', u'sugarcan']
[u'talk', u'focus', u'boundari', u'east', u'timor']
[u'tasmanian', u'urg', u'rememb', u'soldier', u'oversea']
[u'nurs', u'seek', u'rise']
[u'teen', u'charg', u'weekend', u'stab']
[u'telstra', u'urg', u'boost', u'region', u'broadband']
[u'text', u'drive', u'deserv', u'tougher', u'penalti']
[u'court', u'hear', u'guantanamo', u'appeal']
[u'tourism', u'group', u'seek', u'smaller', u'region']
[u'trolley', u'toll', u'top']
[u'troop', u'iraq', u'rememb', u'dead']
[u'decis', u'rais', u'ongo', u'concern']
[u'unionist', u'defend', u'remembr', u'ralli']
[u'union', u'unhappi', u'dismiss']
[u'guilti', u'abus', u'trade', u'rule']
[u'halt', u'oper', u'sudan', u'embassi']
[u'launch', u'afghan', u'offens']
[u'nab', u'baghdad', u'hotel', u'attack']
[u'suspend', u'embassi', u'sudan']
[u'govt', u'urg', u'clarifi', u'toxic', u'wast', u'plan']
[u'fret', u'remembr', u'ralli']
[u'agre', u'teacher', u'talk']
[u'waiter', u'there', u'condom', u'soup']
[u'premier', u'rule', u'public', u'fund', u'elect']
[u'washington', u'sniper', u'suspect', u'plead', u'guilti']
[u'wast', u'water', u'plant', u'stage', u'cost']
[u'watchdog', u'clear', u'iran', u'nuclear', u'weapon', u'claim']
[u'western', u'valu', u'worth', u'fight']
[u'wheelchair', u'wheelchair', u'go']
[u'woman', u'hospit', u'meningococc']
[u'wool', u'grower', u'nervous', u'watch', u'rise', u'dollar']
[u'work', u'start', u'lodg', u'rebuild']
[u'world', u'semi', u'final', u'refere', u'name']
[u'wrangl', u'continu', u'site', u'clean']
[u'stop', u'work', u'south', u'korea']
[u'face', u'age', u'popul']
[u'agforc', u'unhappi', u'rural', u'relief', u'ambul', u'levi']
[u'black', u'home', u'dress', u'room']
[u'clear', u'injur', u'send', u'healey', u'fli']
[u'qaeda', u'claim', u'saudi', u'bomb', u'report']
[u'illeg', u'clear', u'fine', u'south', u'east']
[u'apprentic', u'complet', u'build', u'certif', u'cours']
[u'athlet', u'club', u'wont', u'chang', u'race', u'result']
[u'aussi', u'field', u'strength']
[u'aussi', u'field', u'strength']
[u'aussi', u'troop', u'iraq', u'mark', u'remembr']
[u'australian', u'market', u'close', u'steadi']
[u'australia', u'high', u'tax', u'say', u'labor']
[u'beatti', u'promis', u'rais', u'ambul', u'levi']
[u'berlusconi', u'say', u'itali', u'wont', u'intimid', u'bomb']
[u'blast', u'italian', u'base', u'iraq', u'kill']
[u'blast', u'near', u'afghan', u'compound', u'injur']
[u'bomb', u'blast', u'outsid', u'baghdad', u'court', u'wound']
[u'bomb', u'detector', u'dog', u'help', u'counter', u'terror']
[u'britain', u'introduc', u'ident', u'card', u'year']
[u'brother', u'melbourn', u'hospit', u'hous']
[u'bush', u'honour', u'troop', u'kill', u'iraq']
[u'bush', u'icon', u'farewel']
[u'bush', u'visit', u'secur', u'demand', u'anger', u'london', u'offici']
[u'busi', u'group', u'oppos', u'lower', u'region', u'wag', u'plan']
[u'businesswoman', u'shock', u'award']
[u'drought', u'payment', u'spread', u'wider']
[u'carter', u'holt', u'harvey', u'staff', u'reject', u'offer']
[u'chamber', u'commerc', u'predict', u'bumper', u'xmas', u'retail']
[u'child', u'refuge', u'hous', u'condemn', u'legal', u'fiddl']
[u'children', u'burn', u'hous']
[u'chopper', u'crash', u'probe', u'urg', u'review', u'night', u'visual']
[u'probe', u'assault', u'charg']
[u'colac', u'rememb', u'cliff', u'young']
[u'comic', u'actor', u'carney', u'dead']
[u'commiss', u'investig', u'bank', u'theft', u'bet']
[u'consum', u'confid', u'rat']
[u'consum', u'watchdog', u'explain', u'merger', u'decis']
[u'coober', u'pedi', u'shoot', u'death', u'trigger', u'polic', u'probe']
[u'costello', u'cut']
[u'council', u'discuss', u'oval', u'cultur', u'signific']
[u'council', u'track', u'road', u'plan', u'concern']
[u'court', u'reject', u'wombarra', u'age', u'hous', u'plan']
[u'court', u'step', u'save', u'anim']
[u'court', u'decid', u'extens', u'oyster', u'farm']
[u'court', u'tell', u'drink', u'fatal', u'crash']
[u'darwin', u'resid', u'prais', u'polit', u'knowledg']
[u'death', u'spark', u'polic', u'chang']
[u'deport', u'afghan', u'schoolboy', u'allow', u'return']
[u'deport', u'afghan', u'grant', u'student', u'visa']
[u'dept', u'detain', u'peopl', u'work', u'illeg']
[u'detent', u'polici', u'high', u'court']
[u'vere', u'name', u'kangaroo']
[u'divid', u'highlight', u'mental', u'health', u'drug']
[u'downer', u'check', u'asylum', u'request']
[u'east', u'timor', u'field', u'talk', u'begin']
[u'england', u'boost', u'hill', u'declar']
[u'england', u'lose', u'southgat', u'wait', u'beckham', u'rooney']
[u'global', u'rescu', u'station']
[u'put', u'spencer', u'gulf', u'industri', u'spotlight']
[u'ergon', u'gear', u'cyclon', u'season']
[u'ethanol', u'trial', u'begin', u'north', u'east']
[u'prepar', u'sanction', u'steel', u'duti']
[u'europ', u'mar', u'mission', u'christma', u'touchdown']
[u'explos', u'claim', u'victim', u'iraq']
[u'faceclift', u'underway', u'oakey', u'main', u'street']
[u'farmer', u'voic', u'toxic', u'wast', u'plan', u'opposit']
[u'faulti', u'camera', u'stop', u'speed', u'fin']
[u'fear', u'memori', u'drome', u'futur']
[u'fishermen', u'upbeat', u'harbour', u'work']
[u'footi', u'club', u'dump', u'bali', u'survivor']
[u'forb', u'rugbi', u'player', u'barbarian', u'legend']
[u'franc', u'unchang', u'england', u'clash']
[u'freeman', u'launch', u'tourism', u'program', u'indigen']
[u'french', u'terrorist', u'suspect', u'return']
[u'fund', u'boost', u'region', u'health', u'servic']
[u'fund', u'help', u'prison', u'integr', u'kimberley']
[u'ganguli', u'promis', u'controversi', u'free', u'australia', u'tour']
[u'fire', u'power', u'plan', u'narrabri']
[u'gerrard', u'commit', u'liverpool']
[u'giffin', u'clear', u'black', u'clash']
[u'gippsland', u'water', u'rule', u'long', u'term', u'wast', u'plan']
[u'govt', u'agre', u'princip', u'compo', u'reef']
[u'govt', u'hold', u'firm', u'heroin', u'trial']
[u'govt', u'overrid', u'court', u'dump', u'rule']
[u'govt', u'appeal', u'free', u'iraqi', u'refuge']
[u'grain', u'harvest', u'begin']
[u'gray', u'want', u'viduka', u'leed']
[u'green', u'light', u'anmatjer', u'region', u'develop', u'plan']
[u'group', u'highlight', u'nation', u'park', u'risk']
[u'hanson', u'hop', u'break', u'record', u'swim', u'world']
[u'hanson', u'probe', u'good', u'opposit']
[u'health', u'group', u'await', u'decis']
[u'heat', u'put', u'hold', u'crop', u'harvest']
[u'henin', u'hardenn', u'end', u'year']
[u'herring', u'talk', u'blow', u'raspberri']
[u'hewitt', u'break', u'good', u'australia', u'chanc', u'fitzi']
[u'court', u'hear', u'take', u'evid']
[u'hodg', u'accus', u'drop', u'interim']
[u'hodg', u'answer', u'misconduct', u'alleg', u'court']
[u'home', u'town', u'rememb', u'cliff', u'young']
[u'hour', u'rat']
[u'hous', u'sell', u'add', u'public', u'list', u'troubl']
[u'ident', u'fraud', u'cost', u'year']
[u'india', u'fall', u'australian', u'onslaught']
[u'indigen', u'communiti', u'region', u'plan']
[u'indonesia', u'quarantin', u'kurdish', u'asylum', u'seeker']
[u'interim', u'swim', u'coach', u'drop']
[u'iraq', u'council', u'head', u'want', u'chang', u'bremer']
[u'iraq', u'toll', u'report']
[u'irrig', u'trust', u'endur', u'resign']
[u'isol', u'school', u'seek', u'casual', u'teacher']
[u'isra', u'arab', u'film', u'maker', u'win', u'jenin', u'jenin', u'battl']
[u'isra', u'court', u'allow', u'documentari', u'show']
[u'jadda', u'centr', u'heritag', u'decis', u'advertis']
[u'journal', u'africa', u'life', u'work', u'peril']
[u'katich', u'waugh', u'smash', u'ton', u'hobart']
[u'king', u'bullet', u'song', u'sixer']
[u'kurdish', u'separatist', u'group', u'call', u'quit']
[u'kurd', u'danc', u'island']
[u'labor', u'say', u'propos', u'medicar', u'chang', u'dont']
[u'larri', u'flynt', u'protect', u'topless', u'jessica', u'lynch', u'photo']
[u'lawrenc', u'like', u'presid']
[u'lawyer', u'seek', u'high', u'court', u'intervent']
[u'legal', u'fail', u'poor', u'acoss']
[u'liquid', u'resign', u'asic', u'probe']
[u'london', u'face', u'lockdown', u'bush', u'visit', u'report']
[u'lover', u'year', u'murder']
[u'attempt', u'thredbo', u'disast']
[u'die', u'canberra', u'crash']
[u'die', u'highway', u'crash']
[u'rush', u'hospit', u'impal', u'fenc']
[u'stand', u'trial', u'child', u'charg']
[u'map', u'help', u'plan', u'aircraft', u'nois']
[u'mayor', u'unhappi', u'park', u'manag', u'plan']
[u'mcdonald', u'upset', u'mcjob', u'titl']
[u'mealamu', u'wari', u'wallabi', u'pack']
[u'meet', u'consid', u'rural', u'north', u'west', u'health', u'report']
[u'melbourn', u'train', u'crash', u'probe']
[u'restart', u'oper']
[u'minist', u'move', u'allay', u'concern', u'dunlop']
[u'minist', u'say', u'teacher', u'cancel', u'strike']
[u'minist', u'dump', u'cabinet', u'reshuffl']
[u'mobil', u'phone', u'boost', u'tottenham', u'farmer']
[u'signatur', u'rail', u'servic', u'cut']
[u'morley', u'keen', u'amend']
[u'mother', u'avoid', u'jail', u'daughter', u'stab']
[u'back', u'road', u'scheme', u'boost']
[u'offer', u'age', u'care', u'help']
[u'murray', u'rescu', u'plan', u'target', u'sit']
[u'nativ', u'titl', u'tribun', u'give', u'prais', u'mine']
[u'hospit', u'helipad', u'begin', u'oper']
[u'timet', u'bus']
[u'breakthrough', u'lanka', u'talk']
[u'consid', u'style', u'court']
[u'govt', u'urg', u'boost', u'dentist', u'number']
[u'pair', u'charg', u'policeman', u'hospit']
[u'pair', u'charg', u'cannabi']
[u'palestinian', u'parliament', u'give', u'quri', u'govt', u'thumb']
[u'plan', u'afoot', u'pasta', u'product', u'factori']
[u'plant', u'buffer', u'zone', u'clear']
[u'queen', u'unveil', u'london', u'memori']
[u'polic', u'form', u'nation', u'anti', u'racism', u'network']
[u'polic', u'hunt', u'video', u'store', u'knife', u'bandit']
[u'polic', u'investig', u'sydney', u'tyre', u'factori']
[u'polic', u'shock', u'learn', u'ident', u'bodi']
[u'pope', u'say', u'iraqi', u'blast', u'vile', u'attack', u'peac']
[u'port', u'begin', u'prepar']
[u'pottharst', u'rule', u'olymp']
[u'premier', u'head', u'west', u'econom', u'summit']
[u'press', u'freedom', u'mistak']
[u'pressur', u'wallabi', u'say', u'cannon']
[u'pressur', u'get', u'wilkinson']
[u'privat', u'school', u'fund']
[u'public', u'urg', u'think', u'psycholog', u'benefit']
[u'crack', u'school', u'abus']
[u'govt', u'attack', u'handl', u'watego', u'releas']
[u'rail', u'worker', u'walk', u'disput']
[u'reef', u'zone', u'chang', u'mean', u'fisher', u'compo']
[u'research', u'benefit', u'broadband', u'network']
[u'resid', u'meet', u'rate', u'rise', u'concern']
[u'riverland', u'farmer', u'forum', u'snub']
[u'rocket', u'baghdad', u'area']
[u'roddick', u'regain', u'composur', u'outlast', u'moya']
[u'runaway', u'trolley', u'caus', u'road', u'carnag']
[u'russian', u'court', u'deni', u'magnat', u'bail']
[u'sailor', u'handl', u'rokocoko', u'jone']
[u'broaden', u'court', u'suppress', u'law']
[u'schuettler', u'overcom', u'coria', u'master']
[u'search', u'continu', u'wast', u'facil']
[u'shark', u'drop', u'bali', u'bomb', u'survivor']
[u'sieg', u'underway', u'polic', u'surround', u'hous', u'town']
[u'singapor', u'defenc', u'minist', u'visit', u'troop']
[u'sixer', u'upbeat', u'despit', u'poor', u'form']
[u'southern', u'cross', u'replica']
[u'sport', u'great', u'gallagh', u'die', u'age']
[u'storm', u'damag', u'gunnedah', u'home']
[u'stronger', u'dollar', u'good', u'news', u'produc']
[u'studi', u'rais', u'concern', u'aquif', u'allevi']
[u'survey', u'consid', u'pipelin', u'impact']
[u'survey', u'help', u'bolster', u'month', u'market']
[u'sydney', u'attract', u'budget', u'film']
[u'sydney', u'confer', u'hear', u'asylum', u'health', u'need']
[u'sydney', u'transport', u'underfund', u'auditor']
[u'salmon', u'giant', u'float', u'market']
[u'texa', u'juri', u'clear', u'mogul', u'murder']
[u'time', u'frame', u'plan', u'jindabyn']
[u'toowoomba', u'repres', u'memori', u'servic']
[u'award', u'ballarat', u'tourism', u'attract']
[u'tourism', u'offici', u'converg', u'riverland']
[u'treatment', u'plant', u'await', u'govt', u'fund']
[u'crew', u'rob', u'film', u'crime', u'stori']
[u'charg', u'ident', u'fraud']
[u'union', u'want', u'need', u'base', u'fund', u'polici', u'school']
[u'start', u'plan', u'return', u'sudanes', u'refuge']
[u'approv', u'syrian', u'sanction']
[u'holiday', u'ensur', u'quiet', u'trade']
[u'criticis', u'feder', u'legal', u'alloc']
[u'govt', u'earmark', u'sit', u'toxic', u'dump']
[u'govt', u'refus', u'releas', u'power', u'report']
[u'watchdog', u'examin', u'hanson', u'inquiri', u'request']
[u'well', u'consid', u'sanctuari', u'land', u'sale']
[u'westpac', u'custom', u'warn', u'hoax', u'email']
[u'wild', u'kangaroo', u'pari', u'home']
[u'woodbridg', u'deni', u'record', u'houston']
[u'work', u'parti', u'investig', u'movement', u'firework']
[u'wright', u'join', u'derbyshir']
[u'xmas', u'parti', u'warn', u'harass', u'report']
[u'accus', u'want', u'peopl', u'smuggl', u'court']
[u'afghanistan', u'face', u'challeng', u'year']
[u'afghan', u'await', u'resid', u'decis']
[u'aid', u'vaccin', u'fail', u'critic', u'test']
[u'merger', u'forward', u'qanta', u'boss', u'say']
[u'black', u'aim', u'banish', u'ghost']
[u'announc', u'candid', u'contest', u'gwydir']
[u'play', u'safe', u'refuge']
[u'anmatjer', u'produc', u'promot', u'region', u'growth']
[u'asian', u'tie', u'vital', u'economi', u'say']
[u'australian', u'kill', u'malaysian', u'home', u'invas']
[u'australian', u'qualifi', u'european', u'golf', u'tour']
[u'author', u'fear', u'dengu', u'outbreak']
[u'averag', u'wage', u'growth', u'slow']
[u'bargain', u'push', u'wall', u'street', u'higher']
[u'bat', u'bonanza', u'see', u'australia', u'beat', u'india']
[u'beeper', u'sniff', u'date']
[u'boss', u'defend', u'industri', u'relat', u'stanc']
[u'boss', u'defend', u'stanc']
[u'pledg', u'steer', u'clear', u'world', u'heritag', u'sit']
[u'warn', u'challeng', u'time']
[u'blair', u'promis', u'guantanamo', u'action']
[u'blix', u'doubt', u'iran', u'nuclear', u'claim']
[u'brawl', u'polic', u'busi']
[u'bremer', u'return', u'iraq', u'bush', u'bless']
[u'broadband', u'expens']
[u'sampl', u'posit', u'athlet']
[u'bulldog', u'snare', u'rawl']
[u'busi', u'happi', u'mall', u'road', u'decis']
[u'cairn', u'polic', u'defend', u'action', u'combat', u'drunk']
[u'latrob', u'valley', u'polic']
[u'canberra', u'trial', u'grey', u'water']
[u'casa', u'predict', u'month', u'wait', u'outcom', u'night']
[u'cash', u'boost', u'devil', u'diseas', u'research']
[u'chamber', u'push', u'reopen', u'rail', u'line']
[u'child', u'abus', u'widespread', u'institut', u'inquiri']
[u'china', u'warn', u'taiwan', u'crush', u'split']
[u'warn', u'lose', u'control', u'iraq']
[u'clean', u'begin', u'lake', u'hume', u'sewag', u'spill']
[u'clock', u'tick', u'free', u'trade', u'deal', u'scheiffer']
[u'chairman', u'visit', u'central', u'queensland']
[u'cole', u'myer', u'ring', u'sale']
[u'communiti', u'win', u'access', u'colleg', u'document']
[u'compo', u'barrier', u'reef', u'trawler', u'welcom']
[u'coroni', u'investig', u'polic', u'death']
[u'costello', u'capitalis', u'labor', u'split']
[u'council', u'consid', u'hous', u'crisi']
[u'council', u'deleg', u'drive', u'home', u'traffic', u'woe']
[u'council', u'brief', u'toxic', u'wast', u'dump', u'propos']
[u'court', u'order', u'falconio', u'suspect', u'extradit']
[u'criterium', u'carniv', u'entri', u'increas']
[u'data', u'ignor', u'indigen', u'peopl', u'committe']
[u'deadlock', u'staff', u'compani', u'rise']
[u'dept', u'hold', u'school', u'decis']
[u'derail', u'block', u'central', u'line']
[u'develop', u'organis', u'look', u'forum', u'industri']
[u'doctor', u'free', u'vaccin', u'children']
[u'dog', u'clear', u'fresco', u'din']
[u'dollar', u'post', u'year', u'high']
[u'dont', u'send', u'problem', u'indonesia']
[u'doohan', u'back', u'rossi', u'yamaha', u'success']
[u'doubt', u'cast', u'coastal', u'group', u'futur']
[u'drought', u'take', u'toll', u'cereal', u'harvest', u'crop']
[u'east', u'timor', u'australia', u'consid', u'divid']
[u'eden', u'score', u'clean', u'beach']
[u'england', u'obey', u'fifa', u'order', u'card', u'ban']
[u'error', u'speed', u'camera', u'suspend']
[u'abattoir', u'worker', u'enjoy', u'partial', u'entitl']
[u'falconio', u'suspect', u'face', u'extradit', u'hear']
[u'farmer', u'begin', u'malle', u'harvest']
[u'farmer', u'urg', u'milk', u'free', u'trade', u'agreement']
[u'fear', u'hold', u'queensland', u'rail', u'job']
[u'feder', u'overcom', u'nalbandian', u'jinx']
[u'ferdinand', u'delay', u'judgment', u'dope', u'case']
[u'fijian', u'apologis', u'missionari', u'descend']
[u'fijian', u'attempt', u'lift', u'cannib', u'curs']
[u'fishermen', u'safe', u'boat', u'capsiz']
[u'flintoff', u'star', u'england', u'sweep', u'banger', u'odi']
[u'forest', u'coach', u'snub', u'leed']
[u'onetel', u'boss', u'abandon', u'asset', u'transfer']
[u'zealand', u'pakistan', u'trip']
[u'nomin', u'west', u'ward']
[u'franc', u'offer', u'iraq', u'help', u'sovereignti', u'restor']
[u'fund', u'boost', u'gascoyn', u'group']
[u'gastro', u'outbreak', u'forc', u'hospit', u'closur']
[u'kiss', u'worth']
[u'gillespi', u'name', u'redback', u'squad']
[u'govt', u'accus', u'mislead', u'australian']
[u'govt', u'fudg', u'unemploy', u'figur', u'acoss']
[u'govt', u'pave', u'merger']
[u'govt', u'remov', u'licenc', u'restrict']
[u'govt', u'wait', u'result', u'casa', u'review', u'chopper']
[u'great', u'aussi', u'bushman', u'rememb']
[u'greec', u'play', u'bomb', u'attack', u'ahead', u'olymp']
[u'greek', u'compani', u'shape', u'ship']
[u'green', u'immigr', u'polici', u'chang']
[u'group', u'reject', u'award', u'chang']
[u'guantanamo', u'interpret', u'charg']
[u'crime', u'taskforc', u'raid', u'sydney', u'home']
[u'hama', u'condemn', u'riyadh', u'bomb', u'harm', u'islam']
[u'handl', u'kurd', u'damag', u'australia']
[u'help', u'hand', u'break', u'hill', u'art', u'group']
[u'high', u'court', u'dismiss', u'vote', u'appeal']
[u'hollywood', u'aussi', u'honour']
[u'hong', u'kong', u'enlist', u'farmer', u'catch', u'harbour', u'croc']
[u'hope', u'rain', u'boost', u'prawn', u'number']
[u'hop', u'ecotour', u'gather', u'lift', u'riverland']
[u'hospit', u'death', u'bali', u'bomb', u'week', u'reform']
[u'howard', u'criticis', u'trade', u'tariff']
[u'hunter', u'jaeger', u'debut']
[u'ibanez', u'want', u'better']
[u'icpa', u'welcom', u'inclus', u'teacher', u'school']
[u'indonesia', u'attack', u'australia', u'turn', u'asylum']
[u'inquiri', u'call', u'kurd', u'arriv']
[u'inquiri', u'tell', u'legal', u'face', u'uncertain', u'futur']
[u'investor', u'hope', u'offer', u'golden', u'opportun']
[u'iran', u'back', u'nuclear', u'watchdog', u'report']
[u'iraq', u'suicid', u'attack', u'hit', u'italian', u'base']
[u'reject', u'playground', u'work']
[u'irrig', u'allow', u'north', u'east', u'farmer']
[u'isra', u'troop', u'stage', u'gaza', u'incurs']
[u'italian', u'minist', u'tour', u'iraq', u'bomb', u'site']
[u'itali', u'send', u'carabinieri', u'nasiriyah']
[u'jack', u'readi', u'game', u'life', u'wallabi']
[u'japan', u'hold', u'troop', u'iraq']
[u'job', u'train', u'group', u'close']
[u'knowl', u'reject', u'bureaucrat', u'protect', u'claim']
[u'labor', u'fight', u'chang', u'bushfir', u'effort']
[u'labor', u'reveal', u'superannu', u'plan']
[u'labor', u'split', u'rich']
[u'lay', u'atmospher', u'decept', u'presid']
[u'lawyer', u'win', u'gong', u'film', u'script']
[u'lightn', u'strike', u'caus', u'blackout']
[u'love', u'doubl', u'put', u'bull', u'command']
[u'lunar', u'pole', u'dust', u'studi']
[u'mackay', u'council', u'worker', u'snap', u'strike']
[u'macquari', u'bank', u'deposit', u'healthi', u'profit']
[u'charg', u'mail', u'centr', u'stab']
[u'jail', u'melbourn', u'water', u'suppli', u'threat']
[u'question', u'melbourn', u'underworld', u'slay']
[u'take', u'millmerran', u'council', u'law']
[u'meatwork', u'hire', u'staff']
[u'member', u'get', u'council', u'wast', u'plan']
[u'face', u'rape', u'charg', u'alibi', u'court', u'tell']
[u'minist', u'defend', u'taxi', u'scheme', u'cap']
[u'minist', u'discuss', u'retrench', u'hunter', u'valley']
[u'defend', u'fmit']
[u'muster', u'death', u'prompt', u'safeti', u'helmet']
[u'nation', u'slam', u'trial', u'accuraci']
[u'navi', u'rescu', u'indonesian', u'fishermen']
[u'gene', u'test', u'cancer', u'treatment']
[u'steel']
[u'port', u'redevelop', u'save', u'agricultur']
[u'station', u'go', u'north', u'afghanistan']
[u'time', u'sentiment', u'say', u'galthi']
[u'troubl', u'lawrenc', u'presid', u'latham']
[u'nrma', u'aim', u'boost', u'road', u'safeti', u'audit', u'result']
[u'nrma', u'offic', u'road', u'tomorrow']
[u'auditor', u'probe', u'australian', u'institut', u'music']
[]
[u'green', u'question', u'labor', u'donat']
[u'polic', u'protect', u'lawsuit']
[u'tackl', u'drink', u'drive', u'offend']
[u'debat', u'thai', u'free', u'trade', u'opportun']
[u'govt', u'hop', u'resolut']
[u'nurs', u'home', u'death', u'spark', u'safeti', u'review']
[u'offic', u'raid', u'swiss', u'account', u'probe']
[u'nation', u'join', u'zone', u'rebat', u'debat']
[u'nation', u'seek', u'vote', u'death', u'penalti']
[u'oppn', u'say', u'water', u'whistleblow', u'receiv', u'rage']
[u'opposit', u'critic', u'closur', u'hospit']
[u'opposit', u'say', u'pittong', u'fit', u'govt', u'criteria']
[u'owen', u'leav', u'liverpool', u'option', u'open']
[u'patrol', u'probe', u'illeg', u'fish', u'trap']
[u'disput', u'disrupt', u'breakdown', u'servic']
[u'releas', u'passport', u'fraud', u'report']
[u'pole', u'beat', u'itali', u'friend']
[u'polic', u'question', u'stab', u'death']
[u'polic', u'releas', u'local', u'crime', u'figur']
[u'polic', u'face', u'court', u'lie', u'oath', u'charg']
[u'polic', u'question', u'prison', u'melbourn', u'murder']
[u'princip', u'target', u'educ', u'blueprint']
[u'properti', u'owner', u'warn', u'prepar', u'season']
[u'public', u'diamond', u'futur']
[u'public', u'urg', u'save', u'water', u'drought']
[u'dust', u'group', u'welcom', u'monitor']
[u'report', u'rais', u'indigen', u'learn', u'standard']
[u'report', u'show', u'mix', u'result', u'economi']
[u'reserv', u'bank', u'say', u'rat', u'rais', u'cool', u'hous']
[u'riverina', u'road', u'toll', u'grow']
[u'river', u'wast', u'caus', u'headach', u'council']
[u'roddick', u'agassi', u'beat', u'fererro']
[u'rspca', u'call', u'privat']
[u'irrig', u'welcom', u'murray', u'plan']
[u'school', u'contractor', u'talk', u'premier']
[u'scud', u'keep', u'shape', u'ahead', u'final']
[u'aim', u'peat']
[u'solomon', u'rebel', u'court', u'murder']
[u'south', u'africa', u'announc', u'aid', u'blitz']
[u'steadi']
[u'steel', u'tariff', u'rule', u'benefit', u'newcastl']
[u'steal', u'children', u'reunit', u'parent']
[u'strategist', u'push', u'busi', u'servic']
[u'studi', u'link', u'alzheim', u'diseas', u'smoke']
[u'survey', u'show', u'build', u'industri', u'growth']
[u'task', u'forc', u'gain', u'target', u'seven', u'murder']
[u'tasmania', u'play', u'littl', u'devil']
[u'prepar', u'anti', u'log', u'campaign']
[u'salmon', u'giant', u'make', u'splash']
[u'thorn', u'unworri', u'wallabi', u'haka', u'respons']
[u'creditor', u'meet']
[u'drop', u'battl', u'wine']
[u'tour', u'champ', u'defend', u'titl']
[u'turkish', u'kurd', u'beg', u'asylum']
[u'golf', u'world', u'champ', u'kick']
[u'soldier', u'kill', u'wound', u'iraq']
[u'extradit', u'broom', u'assault']
[u'wallabi', u'arriv', u'sydney']
[u'engin', u'award']
[u'union', u'predict', u'govt', u'backdown', u'reform']
[u'union', u'seek', u'billiton', u'execut', u'explan']
[u'union', u'challeng', u'execut']
[u'build', u'boom', u'lift', u'jam', u'hardi']
[u'twin', u'brother', u'doubl', u'crown']
[u'radiat', u'link', u'blind']
[u'vaccin', u'contract', u'meningococc', u'diseas']
[u'govt', u'consult', u'toxic', u'dump', u'sit']
[u'gear', u'season']
[u'wagga', u'nomin', u'senior', u'award']
[u'wallabi', u'weak', u'spot']
[u'premier', u'launch', u'region', u'develop', u'polici']
[u'water', u'author', u'clarifi', u'fine', u'power']
[u'wed', u'bell', u'ring', u'indian', u'mobil', u'phone']
[u'west', u'indi', u'zimbabw']
[u'wind', u'farm', u'boost', u'economi']
[u'wooden', u'love', u'forestri', u'minist', u'say']
[u'woodward', u'confid', u'catt', u'recal']
[u'woodward', u'make', u'chang', u'franc', u'clash']
[u'workcov', u'warn', u'industri', u'safeti', u'mesh']
[u'world', u'oldest', u'person', u'die', u'japan']
[u'zimbabw', u'court', u'rule', u'media', u'chief', u'stand', u'trial']
[u'abus', u'victim', u'urg', u'lodg', u'compo', u'claim']
[u'accident', u'hospit', u'death', u'ignor']
[u'diabet', u'rise', u'prompt', u'educ', u'campaign']
[u'actu', u'aim', u'minimum', u'wage', u'boost']
[u'advisori', u'committe', u'ask', u'consid', u'chang']
[u'keep', u'ticket', u'price', u'steadi']
[u'keep', u'ticket', u'price']
[u'agassi', u'schuettler', u'master', u'duel']
[u'disappoint', u'money', u'launder', u'outcom']
[u'consid', u'doubl', u'jeopardi', u'revamp']
[u'alfr', u'hospit', u'gastro', u'outbreak']
[u'black', u'determin', u'dump', u'choke']
[u'black', u'choker', u'gregan']
[u'hop', u'attract', u'doctor', u'canberra']
[u'urg', u'gympi', u'hospit']
[u'amwu', u'win', u'nation', u'support', u'protest', u'action']
[u'antarct', u'declin', u'hurt', u'ecosystem']
[u'arab', u'station', u'terror', u'fund', u'probe']
[u'ash', u'heat', u'brit']
[u'atsic', u'commission', u'ask', u'stand', u'asid']
[u'atsic', u'dub', u'indigen', u'report', u'shock']
[u'bail', u'post', u'letterbox', u'assault', u'case']
[u'balfour', u'sink', u'teeth', u'betabak']
[u'ballina', u'say', u'gambl', u'affect', u'aspir']
[u'beatti', u'challeng', u'accc', u'tabcorp']
[u'beatti', u'warn', u'lawrenc', u'work', u'crean']
[u'brack', u'vouch', u'mobil', u'speed', u'camera']
[u'brag', u'right', u'grab', u'north']
[u'bryant', u'face', u'alleg', u'victim', u'famili', u'court']
[u'bulk', u'bill', u'number', u'drop']
[u'burdekin', u'farmer', u'look', u'forward', u'record', u'crush']
[u'bushrang', u'forc', u'draw', u'love', u'tripl']
[u'bush', u'undecid', u'lift', u'steel', u'duti']
[u'bush', u'want', u'speed', u'transfer', u'power', u'iraqi']
[u'busi', u'chamber', u'want', u'chang', u'worker', u'law']
[u'dairi', u'farmer', u'boost', u'collect']
[u'central', u'polic', u'happi', u'crime', u'figur']
[u'china', u'coal', u'blast', u'kill']
[u'chines', u'road', u'toll', u'hit']
[u'civilian', u'march', u'welcom', u'home', u'parad']
[u'command', u'cost', u'judg', u'bench']
[u'concern', u'emerg', u'time', u'job', u'statist']
[u'concern', u'rais', u'byron', u'woman']
[u'coria', u'sweep', u'past', u'moya']
[u'councillor', u'join', u'push', u'coastal', u'council', u'reform']
[u'council', u'reject', u'extens', u'nightclub', u'hour']
[u'countri', u'brigad', u'give', u'assur']
[u'court', u'defer', u'governor', u'general', u'rule']
[u'court', u'extend', u'anim', u'protect']
[u'court', u'hear', u'question', u'alleg', u'drug']
[u'court', u'reject', u'speedier', u'clark', u'rape', u'hear']
[u'crash', u'spark', u'highway', u'care']
[u'crean', u'say', u'hell', u'work', u'lawrenc']
[u'credit', u'union', u'pass', u'rate', u'rise']
[u'crock', u'dragon', u'count', u'gigg', u'fear', u'factor']
[u'croc', u'taipan', u'clash']
[u'crow', u'chairman', u'seek', u'elect']
[u'dairi', u'farmer', u'meet', u'supermarket', u'chief']
[u'dallaglio', u'readi', u'battl', u'row']
[u'boer', u'eye', u'year', u'return']
[u'defenc', u'cadet', u'march', u'tare', u'street']
[u'democrat', u'support', u'reef', u'compens']
[u'deniliquin', u'council', u'consid', u'water', u'flourid']
[u'derelict', u'ship', u'move', u'sight']
[u'detect', u'deliv', u'fund', u'ultimatum']
[u'dollar', u'shoot', u'cent']
[u'drought', u'dri', u'beaudesert', u'water', u'suppli']
[u'dubbo', u'deputi', u'mayor', u'look', u'forward']
[u'nino', u'return']
[u'expert', u'evid', u'child', u'trial']
[u'eyr', u'elector', u'retain', u'court', u'rule']
[u'falconio', u'murder', u'accus', u'face', u'court']
[u'falconio', u'murder', u'suspect', u'arriv', u'darwin']
[u'falconio', u'suspect', u'charg', u'murder']
[u'falconio', u'suspect', u'face', u'darwin', u'court']
[u'farmer', u'sign', u'docker']
[u'farmer', u'ask', u'check', u'drought', u'elig']
[u'farmer', u'hear', u'nativ', u'veget', u'manag']
[u'fear', u'workcov', u'impost', u'hurt', u'rural', u'school']
[u'feder', u'say', u'govt', u'help', u'client']
[u'ferdinand', u'deni', u'misconduct', u'charg']
[u'fisher', u'gear', u'lobster', u'season']
[u'isra', u'secur', u'chief', u'blast', u'govern']
[u'foundat', u'contribut', u'fund', u'evalu', u'schooli']
[u'policemen', u'kill', u'southern', u'russia', u'blast']
[u'french', u'chang', u'tack', u'iraq']
[u'fresh', u'doubt', u'govt', u'boat', u'claim']
[u'fruit', u'black', u'melbourn', u'suburb']
[u'georgia', u'presid', u'appeal', u'calm']
[u'germani', u'lead', u'golf', u'world']
[u'gerrard', u'rule', u'denmark', u'game']
[u'goulburn', u'dump', u'develop', u'confid', u'ahead']
[u'govt', u'offer', u'fund', u'landhold', u'legal', u'advic']
[u'govt', u'refuge', u'admiss', u'spark', u'furor']
[u'govt', u'urg', u'review', u'heavi', u'transport', u'industri']
[u'govt', u'boost', u'casual', u'teacher', u'number']
[u'great', u'britain', u'long', u'kangaroo', u'clash']
[u'greek', u'gay', u'protest', u'fine', u'snog']
[u'gregan', u'turn', u'heat', u'black']
[u'group', u'ralli', u'save', u'train', u'servic']
[u'hanson', u'back', u'prosecut', u'inquiri']
[u'hattah', u'lake', u'add', u'murray', u'environment', u'flow']
[u'hector', u'jail', u'anti', u'log', u'protest']
[u'high', u'court', u'reject', u'kurd', u'case']
[u'high', u'court', u'reject', u'nation', u'fraud', u'appeal']
[u'holland', u'unleash', u'scot']
[u'hollywood', u'girl', u'courtney', u'love', u'plead', u'guilti']
[u'immigr', u'hous', u'pretti', u'good', u'vanston', u'say']
[u'india', u'hail', u'success', u'commonwealth']
[u'india', u'match', u'aussi', u'aggress', u'tendulkar']
[u'indian', u'selector', u'postpon', u'test', u'squad', u'announc']
[u'india', u'win', u'host', u'commonwealth', u'game']
[u'indonesia', u'know', u'melvill', u'boat', u'howard']
[u'insur', u'cost', u'spoil', u'break', u'hill', u'christma', u'parti']
[u'ironman', u'champ', u'fear', u'sport', u'futur']
[u'itali', u'blame', u'qaeda', u'baghdad', u'attack']
[u'offici', u'wallabi', u'hold', u'sucker']
[u'offici', u'wallabi', u'hold', u'sucker']
[u'japanes', u'economi', u'show', u'surpris', u'growth']
[u'jone', u'testifi', u'dope', u'probe']
[u'kangaroo', u'count', u'vere']
[u'kimberley', u'aborigin', u'cheer', u'land', u'handov']
[u'kiwi', u'lose', u'fleme', u'india', u'match']
[u'kiwi', u'review', u'pakistan', u'tour', u'follow', u'explicit']
[u'latham', u'hose', u'divis']
[u'latrob', u'valley', u'fast', u'rail', u'work', u'track']
[u'lawyer', u'condemn', u'polic', u'action']
[u'leed', u'star', u'smith', u'arrest', u'report']
[u'injuri', u'put', u'jackson', u'action']
[u'lucki', u'escap', u'lose', u'hobart']
[u'magistr', u'stand', u'trial', u'child', u'charg']
[u'charg', u'firearm', u'offenc']
[u'mcdonald', u'target', u'kid', u'toy', u'cloth']
[u'mcgradi', u'want', u'lower', u'crime', u'rate']
[u'melbourn', u'substat', u'explos', u'black', u'home']
[u'jail', u'memori', u'laps', u'offer', u'critic']
[u'safeti', u'threat', u'board', u'say']
[u'mine', u'compani', u'readi', u'start', u'underground', u'oper']
[u'mine', u'energi', u'sector', u'look', u'forward', u'strong', u'growth']
[u'minist', u'defend', u'public', u'hous', u'sell']
[u'minist', u'turn', u'tap', u'rosali', u'shire', u'resid']
[u'time', u'seek', u'communiti', u'bank', u'pledg']
[u'mother', u'concern', u'son', u'health', u'inquest', u'tell']
[u'naval', u'exercis', u'signal', u'phase', u'china', u'india']
[u'intern', u'weapon', u'control', u'agre']
[u'test', u'help', u'focus', u'treatment']
[u'resolut', u'mackay', u'council', u'industri']
[u'nrma', u'join', u'motor', u'bodi', u'lobbi', u'road']
[u'creat', u'public', u'transport', u'watchdog']
[u'opposit', u'leader', u'dump']
[u'anim', u'healthi', u'buyer']
[u'number', u'miner', u'energi', u'project']
[u'oleari', u'deni', u'leed', u'return']
[u'onesteel', u'move', u'stage', u'life', u'extens']
[u'organis', u'band', u'fight', u'heart', u'diseas']
[u'owen', u'continent', u'say', u'toshack', u'report']
[u'plan', u'moot', u'reduc', u'hospit', u'bed']
[u'deni', u'coalit', u'lose', u'iraqi', u'support']
[u'polic', u'claim', u'communiti', u'awar', u'help']
[u'polic', u'continu', u'hunt', u'miss', u'mudge', u'woman']
[u'polic', u'fear', u'safeti', u'miss', u'fisherman']
[u'polic', u'investig', u'oyster', u'theft']
[u'polic', u'releas', u'accid', u'victim']
[u'privat', u'owner', u'meet', u'dept', u'head']
[u'privat', u'owner', u'miss', u'meet']
[u'profit', u'gladston', u'rockhampton', u'port']
[u'properti', u'owner', u'warn', u'danger', u'period']
[u'question', u'rais', u'school', u'support', u'servic']
[u'raaf', u'personnel', u'remain', u'iraq']
[u'race', u'club', u'saddl']
[u'rain', u'fail', u'eas', u'drought', u'concern']
[u'chief', u'warn', u'generat']
[u'queri', u'properti', u'break']
[u'real', u'england', u'semi', u'final', u'woodward']
[u'record', u'break', u'lara', u'batter', u'zimbabw']
[u'renison', u'stay', u'administr']
[u'research', u'creat', u'virus', u'synthet', u'gene']
[u'rfds', u'mental', u'health', u'servic', u'servic', u'western']
[u'riverland', u'call', u'minist', u'start', u'murray', u'water']
[u'rumsfeld', u'meet', u'japan']
[u'citrus', u'grower', u'face', u'tough', u'season']
[u'schuettler', u'rain', u'roddick', u'parad']
[u'secur', u'guard', u'charg', u'mine', u'expo', u'theft']
[u'secur', u'inquiri', u'jump', u'follow', u'theft']
[u'separ', u'twin', u'leav', u'hospit']
[u'seri', u'club', u'repeat', u'boycott', u'threat']
[u'sheep', u'ship', u'return', u'australia']
[u'reinvent', u'great', u'southern', u'muster']
[u'smelter', u'damag', u'port', u'piri', u'blast']
[u'sprint', u'star', u'green', u'coach', u'call', u'drug', u'ban']
[u'lankan', u'peac', u'process', u'hold']
[u'state', u'angri', u'school', u'fund', u'threat']
[u'state', u'commit', u'murray', u'plan']
[u'strong', u'dollar', u'hamper', u'ord']
[u'stun', u'roddick', u'face', u'test', u'stay']
[u'sydney', u'airport', u'sell', u'complet']
[u'sydney', u'face', u'traffic', u'chao', u'report', u'say']
[u'tafe', u'develop', u'train', u'packag', u'mine']
[u'taiwanes', u'arrest', u'charg']
[u'hop', u'pulp', u'offer']
[u'tasmanian', u'green', u'fear', u'pulp', u'pollut']
[u'telstra', u'aim', u'market', u'resurg']
[u'test', u'determin', u'fox', u'home']
[u'theatr', u'compani', u'increas', u'darl', u'down', u'talent']
[u'thousand', u'tip', u'flock', u'holiday', u'expo']
[u'thousand', u'tip', u'christma', u'parad']
[u'tiger', u'scent', u'victori', u'hobart']
[u'turtl', u'return', u'provid', u'wealth', u'inform']
[u'face', u'court', u'inverel', u'brawl']
[u'ullrich', u'expans', u'pave', u'job', u'growth']
[u'uncl', u'enlist', u'battl', u'aborigin', u'health']
[u'head', u'challeng', u'educ']
[u'unit', u'swoop', u'chines', u'teenag']
[u'battl', u'resist', u'baghdad']
[u'face', u'iraqi', u'fighter', u'chief']
[u'hacker', u'sentenc', u'jazeera', u'attack']
[u'navi', u'hand', u'target', u'practic', u'island']
[u'redeploy', u'iraqi', u'command', u'qatar']
[u'rethink', u'iraq', u'tactic']
[u'vanston', u'open', u'controversi', u'detent', u'hous']
[u'deni', u'toxic', u'dump', u'site', u'choos']
[u'polic', u'demand', u'fund', u'boost']
[u'vic', u'forc', u'draw', u'love', u'tripl']
[u'victoria', u'reach', u'love', u'tripl']
[u'viduka', u'scapegoat', u'report']
[u'villeneuv', u'wont', u'drive', u'report']
[u'coronor', u'surpris', u'prison', u'suicid']
[u'govt', u'urg', u'clarifi', u'vote', u'valu', u'stanc']
[u'judg', u'appoint', u'crime', u'tribun']
[u'wall', u'street', u'unmov', u'data']
[u'pave', u'deal']
[u'polic', u'prepar', u'schooli', u'delug']
[u'polic', u'extradit', u'brother']
[u'senat', u'drop', u'labor', u'faction']
[u'water', u'suppli', u'okay', u'despit', u'drought']
[u'webb', u'alabama']
[u'itali', u'canadian', u'like', u'roam']
[u'wollongong', u'jobless', u'rate', u'worst']
[u'world', u'train', u'strike', u'loom', u'sydney']
[u'year', u'itali', u'worst', u'career', u'say', u'rivaldo']
[u'kill', u'istanbul', u'synagogu', u'explos']
[u'kill', u'flood', u'hit', u'central', u'vietnam']
[u'aussi', u'fraser', u'share', u'china', u'open', u'lead']
[u'aussi', u'plan', u'swallow', u'heroin', u'pack']
[u'australia', u'ahead', u'half', u'time']
[u'beach', u'german', u'pair']
[u'beatti', u'drink', u'drive', u'case', u'add', u'england', u'farc']
[u'blast', u'wound', u'northern', u'iraq']
[u'bomb', u'kill', u'soldier', u'baghdad', u'militari']
[u'brain', u'tumour', u'kill', u'children']
[u'brave', u'stand', u'offer', u'tasmania', u'hope']
[u'britain', u'declar', u'state', u'alert', u'say']
[u'cadburi', u'consid', u'diet', u'tip', u'label']
[u'budget', u'surplus']
[u'defenc', u'dept', u'sign', u'adelaid']
[u'chines', u'offici', u'warn', u'unlaw']
[u'coalit', u'underestim', u'iraqi', u'opposit']
[u'confid', u'vogt', u'count', u'scot', u'spirit', u'sink']
[u'cormo', u'express', u'return', u'australia']
[u'costello', u'advisor', u'win', u'liber', u'select']
[u'countri', u'pledg', u'tighten', u'nation', u'bioweapon']
[u'court', u'action', u'loom', u'bushland', u'acquisit', u'disput']
[u'crew', u'battl', u'bushfir', u'victoria']
[u'cuban', u'independ', u'journalist', u'free', u'year']
[u'cycl', u'club', u'celebr', u'centenari']
[u'delasin', u'share', u'slim', u'lead', u'tournament']
[u'venuto', u'star', u'tiger', u'seal', u'unlik']
[u'dozen', u'injur', u'victorian', u'train', u'derail']
[u'condit', u'firefight', u'busi']
[u'economist', u'upbeat', u'south', u'east', u'properti']
[u'egyptian', u'twin', u'start', u'plastic', u'surgeri']
[u'england', u'spinner', u'croft']
[u'priest', u'lose', u'extradit', u'fight']
[u'feder', u'beat', u'ferrero', u'remain', u'perfect', u'master']
[u'govt', u'repres', u'face', u'heroin', u'charg']
[u'film', u'industri', u'gather', u'byron', u'confer']
[u'firearm', u'seizur', u'prais', u'ellison']
[u'firefight', u'hand']
[u'appear', u'court', u'illeg', u'gun', u'seizur']
[u'fleme', u'readi', u'lead', u'zealand', u'pakistan']
[u'stab', u'fight', u'outsid', u'sydney', u'casino']
[u'franc', u'australia', u'promot', u'tourism', u'share']
[u'activist', u'stage', u'public', u'kiss', u'protest']
[u'global', u'pact', u'stall', u'ozon', u'damag', u'fumig']
[u'govt', u'push', u'asid', u'fraud', u'trial', u'atsic']
[u'govt', u'accept', u'role', u'hous', u'price']
[u'govt', u'suffer', u'properti', u'law']
[u'green', u'lobbi', u'govt', u'recal', u'troop', u'iraq']
[u'green', u'seek', u'inquiri', u'asylum', u'seeker']
[u'hama', u'leader', u'yassin', u'readi', u'hold', u'truce', u'talk']
[u'handwritten', u'lennon', u'lyric', u'auction']
[u'harri', u'potter', u'spoof', u'film']
[u'hawk', u'soar', u'place']
[u'hungri', u'wolv', u'shock', u'parramatta']
[u'india', u'toss', u'elect', u'zealand']
[u'indigen', u'festiv', u'kick', u'state', u'origin']
[u'inter', u'kallon', u'face', u'steroid', u'test']
[u'iraqi', u'self', u'rule', u'june', u'report']
[u'italian', u'survivor', u'return', u'home', u'iraq', u'attack']
[u'japan', u'jolt', u'quak']
[u'juri', u'sniper', u'trial']
[u'lee', u'expect', u'appear', u'falconio', u'murder', u'hear']
[u'malaysian', u'girl', u'arrest', u'australian', u'murder']
[u'arrest', u'suspicion', u'kill', u'peopl']
[u'hospit', u'assault']
[u'marconi', u'down', u'striker']
[u'marsh', u'pledg', u'england', u'cricket', u'superpow']
[u'massiv', u'world', u'audienc', u'tribut', u'match']
[u'media', u'watchdog', u'join', u'lawsuit', u'soldier']
[u'medicar', u'plan', u'long', u'democrat']
[u'melbourn', u'degre', u'weather', u'chang']
[u'mortlock', u'put', u'australia', u'ahead']
[u'moussaoui', u'repres', u'judg', u'rule']
[u'murdoch', u'rough', u'ride', u'bskyb', u'sharehold']
[u'murdoch', u'surviv', u'bskyb', u'sharehold', u'revolt']
[u'medicar', u'packag', u'boost', u'bulk', u'bill', u'abbott']
[u'nolan', u'galleri', u'review', u'amid', u'visitor']
[u'ozon', u'talk', u'resolut']
[u'pair', u'refus', u'bail', u'illeg', u'gun']
[u'parti', u'disun', u'continu', u'despit', u'mill']
[u'passion', u'gould', u'renew', u'blue', u'deal']
[u'pill', u'shouldnt', u'option', u'arthriti']
[u'play', u'underway', u'sydney']
[u'polic', u'probe', u'melbourn', u'tram', u'incid']
[u'portugues', u'journalist', u'abduct', u'iraq']
[u'power', u'explos', u'rock', u'istanbul', u'synagogu']
[u'prop', u'darwin', u'neck', u'injuri', u'scare']
[u'protest', u'govt', u'rethink', u'renew']
[u'protest', u'surround', u'georgian', u'presid', u'offic']
[u'putin', u'seek', u'calm', u'russian', u'busi', u'leader']
[u'child', u'abus', u'case', u'surg']
[u'quak', u'kill', u'china']
[u'rivaldo', u'eye', u'liverpool']
[u'roddick', u'advanc', u'master', u'semi', u'final']
[u'ronaldo', u'defend', u'agent', u'fraud', u'scandal']
[u'sabotag', u'suspect', u'train', u'derail']
[u'govt', u'deni', u'public', u'hospit', u'poach', u'insur']
[u'scientist', u'concern', u'dwindl', u'antarct']
[u'secur', u'step', u'british', u'high', u'commiss']
[u'sept', u'suspect', u'tell', u'repres']
[u'seven', u'dead', u'troop', u'terror', u'suspect']
[u'offend', u'rehab', u'program', u'doubl']
[u'showdown', u'sydney']
[u'sorenstam', u'singapor']
[u'sorenstam', u'lead', u'singapor', u'skin']
[u'south', u'african', u'lead', u'world', u'golf']
[u'spanish', u'tenor', u'land', u'perth', u'concert']
[u'consensus', u'world', u'inform']
[u'streak', u'inspir', u'zimbabw', u'fightback']
[u'struggl', u'minardi', u'woo', u'lucrat', u'arab', u'market']
[u'swedish', u'bank', u'baffl', u'mint', u'deliveri', u'go']
[u'taliban', u'suspect', u'kill', u'fight', u'afghan', u'troop']
[u'back', u'push', u'affirm', u'action', u'legal']
[u'rank', u'twin', u'face', u'french', u'master']
[u'tram', u'driver', u'hospit', u'attack']
[u'troop', u'search', u'journalist', u'iraqi', u'ambush']
[u'union', u'call', u'tram', u'conductor', u'driver']
[u'union', u'threaten', u'strike', u'action', u'public', u'sector']
[u'say', u'evid', u'iraq', u'weapon', u'syria']
[u'step', u'campaign', u'iraq']
[u'tech', u'stock', u'eas', u'drug', u'underpin', u'blue', u'chip']
[u'stay', u'iraq', u'free', u'peac', u'bush', u'vow']
[u'vermeulen', u'maiden', u'centuri', u'keep', u'zimbabw', u'hop']
[u'compani', u'score', u'research', u'grant']
[u'deal', u'black', u'rare', u'island', u'wildlif']
[u'wallabi', u'world', u'final']
[u'wallabi', u'look', u'franc', u'upset', u'inspir']
[u'woodward', u'dismiss', u'foul', u'play', u'claim']
[u'world', u'semi', u'leav', u'singl', u'kiwi', u'shelf']
[u'march', u'oppos', u'racism', u'corpor', u'greed']
[u'sperm', u'whale', u'strand', u'beach']
[u'hurt', u'bogata', u'explos']
[u'rebel', u'kill', u'aceh']
[u'adelaid', u'leap', u'share', u'wnbl', u'lead']
[u'agassi', u'feder', u'master', u'final']
[u'ancient', u'play', u'show', u'text', u'mummi']
[u'ansett', u'continu', u'asic', u'head']
[u'asic', u'lobbi', u'stronger', u'link', u'swiss']
[u'autopsi', u'find', u'bondi', u'beach', u'dolphin', u'spear']
[u'beatti', u'rule', u'schooli']
[u'beckham', u'deni', u'report', u'marriag', u'crisi']
[u'briton', u'dubious', u'bush', u'ahead', u'state', u'visit']
[u'bryan', u'brother', u'outlast', u'french', u'pair', u'claim']
[u'bush', u'annan', u'condemn', u'turkish', u'synagogu', u'attack']
[u'bushrang', u'romp', u'seven', u'wicket']
[u'indigen', u'group', u'push', u'inquiri']
[u'review', u'court', u'rule', u'melvill', u'case']
[u'halt', u'hous', u'develop', u'amid']
[u'casualti', u'undermin', u'iraq', u'effort']
[u'china', u'polic', u'alleg', u'serial', u'killer']
[u'chines', u'death', u'toll', u'rise']
[u'chines', u'teen', u'expel', u'zealand', u'fatal']
[u'classic', u'adelaid', u'display']
[u'concord', u'mania', u'auction', u'price', u'sky']
[u'congo', u'confirm', u'ebola', u'outbreak']
[u'darwin', u'tell', u'injuri', u'terror']
[u'death', u'toll', u'climb', u'cruis', u'ship', u'accid']
[u'death', u'toll', u'rise', u'synagogu', u'attack']
[u'economist', u'solid', u'growth']
[u'dead', u'queen', u'mari', u'accid']
[u'eriksson', u'hit', u'smith', u'select', u'debacl']
[u'explos', u'kill', u'injur', u'colombia']
[u'farmer', u'dairi', u'post', u'record', u'profit']
[u'firefight', u'contain', u'gippsland', u'blaze']
[u'bangladesh', u'tribal', u'peac', u'worker', u'kill']
[u'glori', u'seiz', u'spot']
[u'goosen', u'top', u'singapor', u'skin']
[u'group', u'claim', u'respons', u'dead', u'turkish']
[u'group', u'urg', u'public', u'smoke', u'ban']
[u'ibanez', u'say', u'england', u'come', u'fight']
[u'india', u'rooki', u'pacemen', u'australia', u'tour']
[u'india', u'face', u'australia', u'kolkata', u'showdown']
[u'industri', u'remain', u'concern', u'nation']
[u'injuri', u'worri', u'triumphant', u'wallabi']
[u'ipswich', u'logan', u'properti', u'area', u'reiq']
[u'iraq', u'prepar', u'june', u'handov']
[u'isra', u'lay', u'wreath', u'victim', u'istanbul']
[u'job', u'remain', u'doubt', u'abattoir', u'futur', u'uncertain']
[u'jone', u'back', u'mitchel']
[u'jone', u'prais', u'mortlock', u'magic']
[u'kangaroo', u'clinch', u'ash', u'seri']
[u'kidnap', u'portugues', u'journalist', u'free', u'iraq']
[u'king', u'perfect', u'bullet', u'target']
[u'knive', u'mitchel', u'kiwi', u'seek', u'scapegoat']
[u'leonard', u'set', u'world', u'test', u'record']
[u'maltes', u'claim', u'human', u'rainbow', u'record']
[u'charg', u'assault', u'brisban', u'inner', u'citi']
[u'stab', u'south', u'yarra', u'train', u'station']
[u'chart', u'australia', u'grow', u'dryness']
[u'zealand', u'mourn', u'black', u'exit']
[u'evid', u'brigitt', u'luca', u'height', u'plan']
[u'coach', u'vow', u'carri']
[u'mourn', u'world', u'loss']
[u'opposit', u'call', u'greater', u'role', u'train']
[u'owen', u'pledg', u'futur', u'liverpool']
[u'palestinian', u'shoot', u'dead', u'gaza', u'raid']
[u'palestinian', u'teenag', u'kill', u'isra', u'troop']
[u'patent', u'applic', u'drop', u'time', u'year']
[u'peopl', u'smuggler', u'test', u'australia', u'border', u'ruddock']
[u'polic', u'seek', u'miss', u'woman', u'brisban']
[u'program', u'aim', u'boost', u'season', u'worker', u'prospect']
[u'protest', u'halt', u'action', u'georgian', u'capit']
[u'protest', u'explicit', u'educ', u'program']
[u'govt', u'back', u'milk', u'price', u'summit']
[u'govt', u'urg', u'abandon', u'speed', u'camera', u'trial']
[u'queen', u'mari', u'gangway', u'collaps', u'inquiri', u'begin']
[u'research', u'develop', u'synthet', u'vaccin']
[u'road', u'accid', u'south', u'africa', u'kill']
[u'ruddock', u'downplay', u'asylum', u'seeker', u'disput']
[u'rumsfeld', u'rule', u'earli', u'iraq', u'withdraw']
[u'russian', u'train', u'crash', u'kill']
[u'govt', u'launch', u'tourism', u'plan']
[u'saudi', u'academ', u'slam', u'islam', u'affair', u'minist']
[u'scot', u'surpris', u'dutch', u'euro', u'play', u'off']
[u'serb', u'elect', u'presid']
[u'sewag', u'spill', u'swan', u'river']
[u'sharon', u'convinc', u'turkish', u'author', u'catch']
[u'sonic', u'devic', u'hail', u'save', u'dolphin', u'shark']
[u'south', u'africa', u'control', u'golf', u'world']
[u'stang', u'iraq', u'start', u'tour']
[u'strong', u'wind', u'push', u'kurri', u'kurri', u'home']
[u'surg', u'complaint', u'lawyer']
[u'synagogu', u'bomb', u'toll', u'rise']
[u'onlin', u'advisori', u'board', u'member', u'announc']
[u'pilgrim', u'kill', u'road', u'crash', u'south', u'india']
[u'toilet', u'user', u'tell', u'mind', u'pee']
[u'toll', u'queen', u'mari', u'disast', u'rise']
[u'toll', u'rise', u'chopper', u'collis']
[u'train', u'derail', u'deliber', u'polic']
[u'tram', u'attack', u'push', u'worker', u'industri', u'action']
[u'turkey', u'dismiss', u'synagogu', u'bomb', u'claim']
[u'turn', u'kurd', u'away', u'prevent', u'refuge', u'influx', u'ruddock']
[u'charg', u'victorian', u'train', u'derail']
[u'helicopt', u'crash', u'iraq']
[u'helicopt', u'crash', u'iraqi', u'citi', u'wit']
[u'worker', u'shoot', u'dead', u'afghanistan']
[u'forc', u'sweep', u'arrest', u'baghdad']
[u'judg', u'dismiss', u'lawsuit', u'saudi', u'royal']
[u'militari', u'power', u'unpreced', u'chang', u'expert']
[u'polic', u'launch', u'crimin', u'probe', u'train']
[u'victorian', u'claim', u'victori', u'hobart', u'point']
[u'vietnam', u'flood', u'toll', u'hit']
[u'wallabi', u'answer', u'critic', u'flawless', u'perform']
[u'warn', u'extrem', u'weather', u'condit', u'spark']
[u'webb', u'tesk', u'stay', u'touch']
[u'west', u'indi', u'wicket', u'victori']
[u'wilko', u'boot', u'england', u'world', u'final']
[u'windi', u'clinch', u'zimbabw', u'seri']
[u'woodward', u'confid', u'ahead', u'french', u'clash']
[u'aint', u'see', u'claim', u'jubil', u'jone']
[u'aborigin', u'dancer', u'intern']
[u'abus', u'claim', u'resurfac', u'leski', u'inquest']
[u'speed', u'camera', u'accur', u'minist']
[u'daili', u'walk', u'prolong', u'life', u'confer']
[u'campaign', u'call', u'smoke', u'free', u'pub']
[u'albani', u'ambul', u'keep', u'demand']
[u'alcohol', u'abus', u'women', u'rise', u'report']
[u'black', u'ralli', u'coach', u'mitchel']
[u'alleg', u'drug', u'traffick', u'appear', u'thai', u'court']
[u'qaeda', u'issu', u'car', u'death', u'warn']
[u'qaeda', u'warn', u'tokyo', u'attack', u'report']
[u'argentina', u'control', u'brazil', u'hold']
[u'arson', u'willow', u'grove', u'blaze']
[u'follow', u'bank']
[u'author', u'unsur', u'bellinzona', u'blaze', u'caus']
[u'bali', u'bomber', u'testifi', u'suspect', u'trial']
[u'batti', u'call', u'kick', u'rule', u'rethink']
[u'best', u'enemi', u'face', u'world', u'final']
[u'crowd', u'turn', u'scottsdal']
[u'storm', u'black', u'west', u'home']
[u'bollywood', u'pair', u'sizzl', u'terror']
[u'bombala', u'teacher', u'name', u'state', u'best']
[u'bond', u'receiv', u'royal', u'visit']
[u'brake', u'break', u'hill', u'adelaid', u'servic']
[u'bush', u'dismiss', u'saddam', u'tape']
[u'campaign', u'target', u'drought', u'affect', u'busi']
[u'cannon', u'warn', u'wilko', u'danger']
[u'cathol', u'church', u'appeal', u'school', u'discrimin', u'case']
[u'chang', u'aplenti', u'geraldton', u'educ']
[u'chines', u'race', u'festiv', u'draw', u'record', u'crowd']
[u'church', u'secretari', u'trial', u'alleg', u'steal']
[u'condemn', u'reform']
[u'conrad', u'black', u'resign', u'payment', u'probe']
[u'corangamit', u'council', u'seek', u'wast', u'dump', u'detail']
[u'coron', u'begin', u'leski', u'investig']
[u'council', u'fast', u'track', u'intersect', u'upgrad']
[u'council', u'worker', u'concern']
[u'court', u'appear', u'speedi', u'driver']
[u'croc', u'question', u'loss', u'king']
[u'croc', u'question', u'refere', u'loss', u'king']
[u'cruis', u'ship', u'passeng', u'face', u'tough', u'quarantin', u'fin']
[u'curfew', u'lift', u'underworld', u'figur', u'father']
[u'dane', u'spoil', u'england', u'perfect']
[u'darwin', u'ship', u'wreck', u'tout', u'tourist', u'site']
[u'debat', u'continu', u'exhibit', u'centr', u'site']
[u'deed', u'signal', u'homestead', u'handov']
[u'democrat', u'warn', u'rann', u'voter', u'backlash']
[u'dept', u'investig', u'concern', u'fatal', u'accid']
[u'deputi', u'mayor', u'leav', u'independ']
[u'detent', u'centr', u'detaine']
[u'vaio', u'rescu', u'itali']
[u'dokic', u'end', u'australian', u'open', u'exil']
[u'dollar', u'reduc', u'diesel', u'price', u'seafood']
[u'downer', u'accus', u'labor', u'iraq', u'turn']
[u'drink', u'drive', u'charg', u'flow', u'polic', u'crackdown']
[u'england', u'favourit', u'beat', u'australia']
[u'england', u'leagu', u'serv', u'doubl', u'miseri']
[u'england', u'skipper', u'hail', u'fantast', u'wilko']
[u'environment', u'handbook', u'assist', u'canberran']
[u'ethiopian', u'jew', u'accus', u'israel', u'racism']
[u'exercis', u'test', u'fish', u'diseas', u'procedur']
[u'expert', u'baffl', u'qlds', u'tast', u'speed']
[u'fan', u'ask', u'jump', u'ship', u'pirat', u'sink']
[u'farmer', u'weather', u'nino', u'woe']
[u'farmer', u'receiv', u'storm', u'damag', u'relief']
[u'peopl', u'doctor', u'tell']
[u'feder', u'humbl', u'agassi', u'master']
[u'damag', u'tamworth', u'pcyc']
[u'firefight', u'hope', u'contain', u'blaze']
[u'kill', u'taiwan', u'firework', u'factori', u'blast']
[u'franc', u'fall', u'fail', u'emerg']
[u'french', u'coach', u'reject', u'drop', u'goal', u'chang']
[u'galthi', u'pull', u'play']
[u'geelong', u'announc', u'profit']
[u'lose', u'home', u'battl']
[u'gigg', u'declar', u'return']
[u'gladston', u'nurs', u'honour', u'chariti', u'effort']
[u'governor', u'schwarzenegg', u'offic']
[u'govt', u'brush', u'qaeda', u'threat']
[u'govt', u'urg', u'consid', u'south', u'coast', u'multi', u'purpos']
[u'govt', u'urg', u'revis', u'cyclon', u'build', u'polici']
[u'group', u'launch', u'indigen', u'aquacultur', u'studi']
[u'group', u'protest', u'riverway', u'townhous', u'plan']
[u'group', u'benefit', u'council', u'grant']
[u'gundagai', u'produc', u'receiv', u'assist']
[u'hanson', u'ettridg', u'unsur', u'inquiri']
[u'high', u'hop', u'sheep', u'breed', u'secur', u'wool', u'suppli']
[u'honda', u'snub', u'depart', u'rossi']
[u'indigen', u'leader', u'hear', u'shop', u'centr', u'site']
[u'indigen', u'peopl', u'benefit', u'forestri']
[u'invest', u'youth', u'leagu', u'star', u'jone']
[u'invest', u'disput', u'flare', u'project']
[u'irrig', u'chairman', u'pleas', u'plan', u'murray']
[u'irrig', u'welcom', u'hattah', u'lake', u'decis']
[u'isra', u'palestinian', u'examin', u'altern', u'peac']
[u'seek', u'applic', u'univers', u'council']
[u'johnson', u'hail', u'fantast', u'wilko']
[u'jone', u'woodward', u'buri', u'hatchet']
[u'juri', u'swear', u'inmat', u'murder', u'trial']
[u'kalgoorli', u'busi', u'rais', u'water', u'concern']
[u'karzai', u'condemn', u'worker', u'death']
[u'kennedi', u'quit', u'tech', u'compani', u'board']
[u'kidney', u'dialysi', u'outlook', u'news', u'health']
[u'kiwi', u'skipper', u'fleme', u'pakistan', u'trip']
[u'labor', u'question', u'lack', u'peopl', u'smuggl', u'arrest']
[u'landhold', u'seek', u'groundwat']
[u'laport', u'get', u'vote', u'confid', u'french', u'rugbi']
[u'lee', u'optimist', u'medicar', u'packag']
[u'macair', u'defend', u'servic', u'cut']
[u'acquit', u'schoolboy', u'murder']
[u'die', u'hume', u'highway', u'crash']
[u'face', u'court', u'abattoir', u'stab']
[u'fin', u'carri', u'flare', u'luggag']
[u'get', u'year', u'student', u'kidnap']
[u'mango', u'grower', u'report', u'mix', u'result', u'harvest']
[u'plead', u'guilti', u'drive', u'drug', u'offenc']
[u'marshal', u'island', u'vote', u'deal']
[u'mayor', u'hope', u'clark', u'local', u'issu']
[u'appear', u'court', u'train', u'derail']
[u'mine', u'compani', u'start', u'diamond', u'explor']
[u'minist', u'predict', u'prosper', u'season', u'tabl']
[u'troop', u'return', u'solomon']
[u'warn', u'bendigo', u'thoroughfar']
[u'murray', u'irrig', u'welcom', u'water', u'plan']
[u'nake', u'bok', u'order', u'train', u'gunpoint', u'report']
[u'facil', u'help', u'fight', u'malaria']
[u'zealand', u'loss']
[u'nigerian', u'presid', u'meet', u'mugab']
[u'nikkei', u'slump', u'terror', u'fear']
[u'guarante', u'stall', u'rail', u'standardis']
[u'postal', u'ballot', u'burdekin', u'local', u'govt', u'elect']
[u'north', u'queensland', u'target', u'adventur', u'tourist']
[u'fare', u'soar']
[u'look', u'revamp']
[u'target', u'asia', u'timber', u'export']
[u'pair', u'highway', u'crash']
[u'pair', u'face', u'court', u'train', u'derail']
[u'pavarotti', u'marri', u'want', u'child']
[u'peninsula', u'redevelop', u'plan', u'spotlight']
[u'plan', u'aim', u'boost', u'north', u'west', u'tourism', u'potenti']
[u'plan', u'wildlif', u'law', u'offer', u'certainti']
[u'scotch', u'deputi', u'media', u'plan']
[u'polic', u'continu', u'probe', u'toddler', u'drown']
[u'polic', u'offer', u'drink', u'drive', u'remind']
[u'polic', u'star', u'forc', u'offic', u'join', u'search', u'miss']
[u'polic', u'hunt', u'cole', u'arm', u'bandit']
[u'pollut', u'affect', u'derwent', u'report']
[u'power', u'industri', u'review', u'question']
[u'presid', u'lead', u'mourn', u'itali', u'dead']
[u'privat', u'comment', u'lead', u'libel', u'case']
[u'probe', u'launch', u'power', u'station']
[u'probe', u'consid', u'higher', u'educ', u'particip']
[u'putin', u'warn', u'busi', u'share', u'wealth']
[u'govt', u'consid', u'schooli']
[u'lose', u'rapist', u'prison']
[u'watchdog', u'take', u'hanson', u'trial', u'probe']
[u'record', u'profit', u'cheesemak', u'despit', u'drought']
[u'refshaug', u'reject', u'school', u'critic']
[u'report', u'highlight', u'drink', u'woe']
[u'resid', u'urg', u'suppli', u'sampl', u'aerial']
[u'restaur', u'serv', u'sushi']
[u'rockhampton', u'get', u'obstetrician']
[u'roddick', u'top', u'final', u'rank']
[u'saddam', u'warn', u'attack']
[u'safeti', u'revamp', u'dead', u'intersect']
[u'sale', u'front', u'court', u'fatal', u'hotel', u'blaze']
[u'meningococc', u'case', u'consid', u'high']
[u'samudra', u'lose', u'death', u'sentenc', u'appeal']
[u'want', u'incent', u'migrant']
[u'schooli', u'invad', u'sunshin', u'coast']
[u'scud', u'lead', u'davi', u'charg']
[u'search', u'miss']
[u'semi', u'crash', u'breakfast']
[u'servic', u'resum', u'train', u'crash']
[u'detain', u'connect', u'istanbul', u'blast']
[u'shire', u'path', u'fitter', u'futur']
[u'snowtown', u'killer', u'appeal', u'delay']
[u'solar', u'eclips', u'see']
[u'south', u'africa', u'cruis', u'golf', u'world', u'triumph']
[u'south', u'east', u'receiv', u'welcom', u'rain']
[u'lanka', u'consid', u'chang', u'tactic', u'suit']
[u'stamp', u'duti', u'deliv', u'govt', u'quarter']
[u'steelwork', u'chang', u'end']
[u'strike', u'child', u'care', u'centr']
[u'strip', u'beatl', u'readi', u'releas']
[u'suicid', u'bomber', u'blame', u'turkey', u'attack']
[u'supermarket', u'urg', u'review', u'milk', u'price']
[u'survey', u'help', u'save', u'aborigin', u'tongu']
[u'sydney', u'face', u'thai', u'court', u'drug', u'charg']
[u'tamworth', u'council', u'record', u'sound', u'oper', u'surplus']
[u'bushfir', u'crew', u'busi']
[u'firefight', u'battl', u'weekend', u'blaze']
[u'teen', u'court', u'hack', u'charg']
[u'tesk', u'fourth', u'delasin', u'take', u'champ', u'titl']
[u'tey', u'help', u'port', u'weather', u'lake', u'creek', u'woe']
[u'think', u'give', u'intern', u'airport', u'termin']
[u'tourism', u'group', u'look', u'forward', u'scheme']
[u'tourism', u'industri', u'expect', u'bounc']
[u'troubl', u'ranger', u'endur', u'loss']
[u'union', u'claim', u'job', u'uncertainti', u'affect', u'staff']
[u'union', u'highlight', u'pineappl', u'woe']
[u'uruguayan', u'famili', u'ditch', u'visa']
[u'captur', u'suspect', u'iraqi', u'guerrilla', u'leader']
[u'health', u'industri', u'meet', u'obes', u'crisi', u'loom']
[u'pressur', u'fiji', u'iraqi', u'troop']
[u'korea', u'urg', u'north', u'disarm']
[u'troop', u'launch', u'offens', u'tikrit']
[u'vanston', u'refus', u'releas', u'detain', u'mother']
[u'seek', u'input', u'member', u'water', u'reform', u'green']
[u'educ', u'staff', u'protest', u'cut']
[u'town', u'receiv', u'award']
[u'wallabi', u'nurs', u'niggl']
[u'wallabi', u'cannon', u'warn', u'wilko', u'danger']
[u'nat', u'criticis', u'price', u'hospit', u'revamp']
[u'wast', u'dump', u'decis', u'doubt']
[u'teacher', u'strike']
[u'watson', u'refere', u'world', u'final']
[u'waugh', u'want', u'gate', u'throw', u'open', u'kid']
[u'weather', u'dri', u'winter', u'grain', u'harvest', u'hop']
[u'weather', u'whip', u'burn', u'off']
[u'webber', u'find', u'right', u'formula', u'chariti', u'event']
[u'webber', u'tassi', u'challeng', u'come']
[u'woman', u'die', u'crash']
[u'woman', u'charg', u'teenag', u'death']
[u'woodward', u'scrap', u'form', u'book', u'aussi', u'loom']
[u'woodward', u'wont', u'suck', u'tactic', u'chang']
[u'yemen', u'free', u'reform', u'qaeda', u'suspect']
[u'young', u'honour', u'music', u'award']
[u'youth', u'charg', u'inverel', u'robberi']
[u'yungkingcol', u'race', u'silver', u'citi']
[u'zhang', u'claim', u'gleeson', u'china', u'open', u'crown']
[u'aborigin', u'sign', u'uniqu', u'pearl', u'deal']
[u'aim', u'reduc', u'homeless']
[u'right', u'reach', u'parliament']
[u'call', u'feder', u'action', u'childcar', u'worker']
[u'move', u'adopt', u'right']
[u'agforc', u'welcom', u'legal', u'chang', u'bull', u'catch']
[u'alleg', u'maclean', u'murder', u'fail', u'bail']
[u'ambush', u'kill', u'isra', u'soldier']
[u'anger', u'child', u'rapist', u'releas']
[u'architect', u'watch', u'theatr', u'revamp']
[u'asic', u'probe', u'see', u'kennedi', u'quit', u'board']
[u'despit', u'bank', u'gain']
[u'atsic', u'make', u'progress', u'return', u'remain']
[u'aussi', u'look', u'repeat', u'final', u'perform']
[u'australia', u'claim', u'victori', u'england']
[u'averag', u'parent', u'exceed']
[u'banana', u'import', u'hold', u'pend', u'report']
[u'bank', u'endur', u'branch', u'closur', u'critic']
[u'baxter', u'darwin', u'final']
[u'baxter', u'replac', u'darwin', u'final']
[u'beach', u'bundl', u'alarm', u'pemberton', u'polic']
[u'blood', u'test', u'detect', u'lung', u'diseas']
[u'boati', u'urg', u'cyclon', u'readi']
[u'boom', u'economi', u'help', u'homeless', u'salvo']
[u'brain', u'tumour', u'rule', u'burn', u'ralli', u'championship']
[u'bream', u'diseas', u'close', u'river', u'angler']
[u'brewarrina', u'council', u'elect', u'mayor']
[u'burdekin', u'mango', u'grower', u'anticip', u'lower', u'yield']
[u'burma', u'free', u'prison', u'ahead', u'nation']
[u'bush', u'icon', u'administr']
[u'case', u'involv', u'owner', u'adjourn']
[u'chang', u'fast', u'rail', u'plan', u'track']
[u'child', u'detent', u'face', u'high', u'court', u'challeng']
[u'chinchilla', u'mourn', u'loss', u'long', u'time', u'leader']
[u'chirac', u'blair', u'hold', u'london', u'summit']
[u'fund', u'question', u'hanson', u'inquiri']
[u'coast', u'polic', u'close', u'drug', u'oper', u'arrest']
[u'committe', u'appoint', u'settl', u'lanka', u'power']
[u'concern', u'air', u'guyra', u'council', u'reform']
[u'concern', u'air', u'sydney', u'fring', u'develop']
[u'concern', u'coal', u'increas', u'bushfir', u'threat']
[u'cost', u'blow', u'out', u'increas', u'fast', u'rail', u'project', u'critic']
[u'council', u'demand', u'highway', u'work', u'nuclear', u'wast']
[u'court', u'challeng', u'millionair', u'hotel', u'owner']
[u'court', u'hear', u'abattoir', u'stab', u'evid']
[u'croydon', u'get', u'mobil', u'phone', u'boost']
[u'dairi', u'farmer', u'consid', u'help', u'veget']
[u'death', u'toll', u'istanbul', u'blast', u'rise']
[u'deputi', u'mayor', u'encourag', u'join', u'mcrae']
[u'disabl', u'artist', u'claim', u'discrimin']
[u'diva']
[u'doubt', u'cast', u'cane', u'sale']
[u'dougla', u'receiv', u'hollywood', u'honour']
[u'drought', u'affect', u'farmer', u'receiv', u'fodder', u'donat']
[u'drug', u'abus', u'clinic', u'open', u'adelaid']
[u'earli', u'restrict', u'possibl', u'gippsland']
[u'endang', u'speci', u'list', u'swell']
[u'england', u'regain', u'number', u'rank']
[u'england', u'wont', u'fall', u'rugbi', u'rope', u'dope', u'say', u'campo']
[u'eriksson', u'high', u'prais', u'rooney']
[u'fall', u'iran']
[u'resum', u'fiji']
[u'croatian', u'serb', u'leader', u'indict', u'hagu']
[u'fear', u'hold', u'miss', u'boat', u'skipper']
[u'feder', u'elector', u'boundari', u'review']
[u'feder', u'top', u'tenni', u'prize', u'money', u'list']
[u'govt', u'defend', u'privat', u'school', u'fund']
[u'finish', u'line', u'sight', u'golf', u'player', u'honour']
[u'firefight', u'effort', u'continu', u'tasmania']
[u'arrest', u'sydney', u'drug', u'swoop']
[u'kill', u'strike', u'afghanistan']
[u'wallabi', u'condemn', u'england', u'bore']
[u'fortress', u'london', u'readi', u'bush', u'visit']
[u'franc', u'wield', u'select', u'strong']
[u'georg', u'michael', u'sign', u'deal', u'soni']
[u'governor', u'arni', u'take', u'offic']
[u'govt', u'fund', u'health', u'safeti']
[u'govt', u'revamp', u'medicar', u'overhaul']
[u'govt', u'tell', u'farmer', u'live', u'strong', u'dollar']
[u'grain', u'industri', u'price', u'question']
[u'green', u'tucker', u'consid', u'senat', u'switch']
[u'griffith', u'club', u'discuss', u'airspac']
[u'group', u'make', u'island', u'tourism', u'recommend']
[u'hanson', u'ettridg', u'unreason', u'beatti']
[u'heritag', u'list', u'chamber']
[u'hewitt', u'rare', u'masur', u'say']
[u'high', u'court', u'decid', u'detain', u'infant', u'fate']
[u'hill', u'deni', u'talk', u'base', u'darwin']
[u'hodgson', u'xeus', u'team', u'ducati']
[u'hong', u'kong', u'croc', u'elud', u'hunter']
[u'hope', u'better', u'time', u'pilbara', u'indigen']
[u'hospit', u'report', u'discuss', u'public', u'meet']
[u'howard', u'warn', u'terrorist', u'attack']
[u'illawarra', u'beach', u'get', u'award', u'honour']
[u'incid', u'mar', u'revhead', u'event']
[u'indigen', u'communiti', u'set', u'exampl']
[u'indigen', u'land', u'agreement', u'number']
[u'industri', u'commiss', u'hear', u'council']
[u'industri', u'back', u'small', u'busi', u'consult']
[u'injuri', u'keep', u'schumach', u'soccer', u'appear']
[u'istanbul', u'courthous', u'sieg', u'report']
[u'itali', u'halt', u'mourn', u'victim', u'iraqi', u'attack']
[u'jail', u'face', u'long', u'time', u'drive']
[u'japanes', u'glimps', u'altern', u'view', u'forest']
[u'japanes', u'train', u'set', u'speed', u'record']
[u'japan', u'issu', u'travel', u'warn', u'qaeda', u'threat']
[u'trial', u'open', u'thailand']
[u'juri', u'assault', u'trial', u'visit', u'launceston', u'club']
[u'senat', u'weigh', u'medicar', u'packag']
[u'kingaroy', u'consid', u'babi', u'boomer', u'develop']
[u'lake', u'macquari', u'council', u'pass', u'masterplan', u'propos']
[u'laura', u'bush', u'defend', u'husband', u'decis']
[u'lawyer', u'claim', u'govt', u'brigitt', u'scapegoat']
[u'london', u'highest', u'alert', u'bush', u'visit']
[u'long', u'wait', u'near', u'jamberoo', u'sewerag', u'upgrad']
[u'child', u'porn', u'jail', u'term', u'reduc']
[u'hold', u'arrest', u'purana', u'taskforc']
[u'drive', u'charg', u'remand', u'custodi']
[u'master', u'face', u'preselect', u'challeng']
[u'mayor', u'unveil', u'masterplan', u'rocki', u'spring']
[u'mayor', u'warn', u'glenelg', u'librari', u'deficit']
[u'mickey', u'mous', u'turn']
[u'minist', u'defend', u'privat', u'school', u'fund']
[u'minist', u'consult']
[u'mix', u'opinion', u'manilla', u'fund']
[u'montoya', u'join', u'mclaren']
[u'work', u'need', u'chang']
[u'air', u'drain', u'delay', u'fear']
[u'urg', u'princ', u'highway', u'speed', u'reduct']
[u'nambucca', u'bid', u'indigen', u'offend', u'centr']
[u'nativ', u'titl', u'claim', u'lodg', u'rifl', u'rang']
[u'navratilova', u'creat', u'histori']
[u'nemo', u'craze', u'strip', u'vanuatu', u'reef']
[u'port', u'afforest', u'plan']
[u'nigeria', u'consult', u'cwealth', u'zimbabw', u'summit']
[u'govt', u'announc', u'council', u'develop', u'process']
[u'delay', u'tour', u'pakistan']
[u'nation', u'pick', u'poll']
[u'open', u'fall', u'earli', u'final']
[u'open', u'fall', u'earli', u'final']
[u'paedophil', u'admit', u'break', u'parol', u'condit']
[u'pathet', u'england', u'surrend', u'lanka']
[u'pipelin', u'explos', u'close', u'iraqi', u'refineri']
[u'plan', u'meatwork', u'reopen']
[u'polic', u'accus', u'death', u'threat', u'gangland', u'case']
[u'polic', u'arrest', u'alleg', u'syring', u'robber']
[u'polic', u'gear', u'expect', u'crime', u'increas']
[u'polic', u'hotel', u'owner', u'disput', u'panel']
[u'polic', u'investig', u'shoot', u'incid']
[u'polic', u'worri', u'miss', u'trucki']
[u'port', u'council', u'consid', u'develop', u'plan', u'boston']
[u'potato', u'grower', u'buy', u'south', u'east', u'properti']
[u'power', u'compani', u'fin', u'worker', u'death']
[u'power', u'station', u'light', u'solar', u'scheme', u'second']
[u'probe', u'launch', u'beach', u'dredg']
[u'project', u'minist', u'address', u'linton', u'toxic', u'dump']
[u'prospectus', u'releas', u'victorian', u'ethanol', u'refineri']
[u'public', u'ask', u'help', u'miss']
[u'public', u'politician', u'chang', u'parti']
[u'ralli', u'moora', u'hospit', u'work']
[u'redback', u'honour']
[u'region', u'resid', u'ask', u'entic', u'bush', u'tourist']
[u'report', u'urg', u'servic', u'shake']
[u'rifl', u'compani', u'join', u'welcom', u'home', u'parad']
[u'rumsfeld', u'condemn', u'evil', u'north', u'korea']
[u'russia', u'cri', u'foul', u'gigg', u'incid']
[u'court', u'overturn', u'man', u'suspend', u'sentenc']
[u'secur', u'boost', u'fremantl', u'port']
[u'senior', u'ash', u'test']
[u'sharon', u'quri', u'meet', u'week']
[u'small', u'busi', u'confid', u'return']
[u'solomon', u'island', u'minist', u'seven', u'charg']
[u'sport', u'great', u'farewel', u'intern', u'leagu']
[u'spur', u'send', u'heal', u'home']
[u'steal', u'hart', u'outback']
[u'storm', u'leav', u'resid', u'dark']
[u'strike', u'teacher', u'march']
[u'strong', u'domest', u'demand', u'central', u'aust', u'grape']
[u'student', u'rais', u'doubt', u'transport', u'report']
[u'sudanes', u'plane', u'explos', u'kill']
[u'support', u'hector', u'fine']
[u'suspend', u'sentenc', u'music', u'piraci']
[u'swiss', u'complet', u'lehmann', u'takeov']
[u'synagogu', u'suicid', u'bomber', u'catch', u'camera']
[u'limit', u'back', u'condit', u'merger']
[u'taiwan', u'warn', u'independ', u'move']
[u'cyclist', u'prepar', u'race', u'season']
[u'drug', u'educ', u'program', u'commend']
[u'bushfir', u'alert']
[u'teen', u'face', u'court', u'school', u'cleaner', u'attack']
[u'terror', u'fear', u'global', u'market']
[u'plead', u'guilti', u'internet', u'music', u'piraci']
[u'tiger', u'bradtk', u'crack', u'rebound', u'record']
[u'toughen', u'wallabi', u'prim', u'final', u'jone']
[u'townsvill', u'street', u'close', u'street', u'light']
[u'turk', u'blame', u'local', u'milit', u'blast']
[u'uefa', u'probe', u'turk', u'amid', u'tunnel', u'bust', u'claim']
[u'cut', u'afghan', u'oper']
[u'union', u'concern', u'derail', u'stress']
[u'union', u'vow', u'fight', u'teacher', u'strike']
[u'forc', u'flex', u'muscl', u'iraq']
[u'forc', u'firepow', u'tikrit']
[u'troop', u'kill', u'iraqi', u'civilian', u'report']
[u'organis', u'crime', u'taskforc', u'make', u'arrest']
[u'polic', u'criticis', u'miss', u'person']
[u'wagga', u'mayor', u'surviv', u'censur', u'vote']
[u'wait', u'hurri', u'blood', u'rooki']
[u'wallabi', u'hop', u'ahead', u'final']
[u'milk', u'inquiri', u'warn', u'price', u'cut']
[u'warrnambool', u'rezon', u'make', u'retail', u'need']
[u'washington', u'sniper', u'face', u'death']
[u'teacher', u'strike']
[u'water', u'restrict', u'rais', u'issu']
[u'wellington', u'council', u'warn', u'blockad', u'lift']
[u'wilkinson', u'join', u'waugh', u'player', u'year', u'nomin']
[u'wilkinson', u'welcom', u'beckham', u'support']
[u'winton', u'tour', u'oper', u'urg', u'younger', u'outlook']
[u'wool', u'curtain', u'protect', u'home', u'bushfir']
[u'work', u'dole', u'report', u'suggest', u'chang']
[u'world', u'offici', u'cite', u'french', u'flanker', u'kick']
[u'anim', u'owner', u'expect', u'court']
[u'boost', u'effici', u'alston']
[u'accc', u'probe', u'berri', u'coke', u'takeov', u'plan']
[u'ban', u'smoke', u'pub']
[u'act', u'credit', u'rat', u'safe']
[u'aerial', u'watch', u'keep', u'fire']
[u'back', u'medicar', u'packag']
[u'ambul', u'fear', u'takeaway', u'plan', u'hold']
[u'atsic', u'chairman', u'say', u'food', u'card', u'prioriti']
[u'attempt', u'plan', u'refloat', u'ground', u'dredg']
[u'aussi', u'juggernaut', u'crush', u'india']
[u'aussi', u'juggernaut', u'roll', u'india']
[u'aussi', u'hungrier', u'say', u'black', u'spencer']
[u'australian', u'skin', u'cancer', u'rat', u'soar']
[u'injuri', u'forc', u'noffk', u'team']
[u'bakhtiyari', u'case', u'stall', u'februari']
[u'balaji', u'replac', u'injur', u'salvi', u'australia', u'tour']
[u'bank', u'chief', u'warn', u'age', u'popul', u'impact']
[u'barnett', u'sell', u'medicar', u'chang']
[u'bendigo', u'compani', u'lock', u'staff']
[u'turnout', u'expect', u'warship', u'commemor']
[u'bomber', u'join', u'forc']
[u'injur', u'conveyor', u'belt', u'accid']
[u'brigg', u'fight', u'tarver', u'titl']
[u'bulk', u'bill', u'rat', u'uncertain', u'medicar']
[u'bush', u'bind', u'britain']
[u'bush', u'land', u'london', u'amid', u'anti', u'anger']
[u'busway', u'happi', u'transport', u'report']
[u'centr', u'plan', u'cast', u'doubt', u'local', u'consum']
[u'remot', u'jail', u'improv', u'inmat', u'condit']
[u'canadian', u'grand', u'prix', u'track']
[u'canberra', u'defer', u'debat', u'smoke', u'phase']
[u'part', u'busi', u'damag', u'blaze']
[u'carr', u'throw', u'support', u'latham', u'econom']
[u'chang', u'consid', u'public', u'librari', u'fund']
[u'child', u'die', u'quak', u'jolt', u'central', u'philippin']
[u'china', u'protest', u'quota', u'plan']
[u'chopper', u'join', u'search', u'miss']
[u'claim', u'medicar', u'packag', u'offer', u'bush', u'bulk']
[u'claim', u'scheme', u'boost', u'region', u'airport', u'safeti']
[u'concern', u'rais', u'broker', u'jail', u'term']
[u'confer', u'tell', u'econom', u'futur', u'tie', u'financi']
[u'coron', u'tour', u'leski', u'inquest']
[u'council', u'boundari', u'review', u'surpris']
[u'council', u'consid', u'impact', u'lose', u'park', u'meter']
[u'council', u'crime', u'fight', u'plan', u'await', u'approv']
[u'council', u'focus', u'secur', u'camera', u'plan']
[u'council', u'staff', u'vote', u'offer']
[u'council', u'spend', u'ironman', u'competit']
[u'countri', u'songwrit', u'gibson', u'die']
[u'crean', u'lose', u'public', u'trust', u'economi']
[u'croc', u'hunt', u'boost', u'hong', u'kong', u'tourism']
[u'dali', u'consid', u'irrig', u'minist']
[u'dingo', u'hybrid', u'return', u'home', u'certain', u'futur']
[u'disgruntl', u'hall', u'stay', u'tiger']
[u'doctor', u'group', u'see', u'good', u'medicar', u'packag']
[u'doctor', u'shortag', u'spark', u'train', u'concern']
[u'dollar', u'offset', u'soar', u'price']
[u'dope', u'chief', u'pound', u'slam', u'white', u'hous']
[u'dozi', u'flatley', u'welcom', u'world', u'wake']
[u'duff', u'magic', u'light', u'irish']
[u'elder', u'guilti', u'murder']
[u'england', u'bring', u'tindal', u'catt']
[u'english', u'sieg', u'fan', u'media']
[u'demand', u'halt', u'west', u'bank', u'fenc']
[u'farmer', u'help', u'lower']
[u'farr', u'jone', u'back', u'england', u'shutdown', u'machin']
[u'fight', u'promis', u'wast', u'dump', u'plan']
[u'figur', u'uncov', u'pain', u'truth', u'fall']
[u'fiji', u'report', u'flop']
[u'financi', u'advisor', u'jail', u'client', u'theft']
[u'kill', u'pakistan', u'hall', u'collaps']
[u'mayor', u'look', u'enter', u'polit']
[u'swedish', u'helicopt', u'crash']
[u'franc', u'black', u'face', u'consol', u'game']
[u'fund', u'shortfal', u'wont', u'stop', u'port', u'plan']
[u'fund', u'help', u'studi', u'endang']
[u'project', u'viabil', u'know', u'soon']
[u'gigg', u'get', u'clear', u'euro', u'playoff']
[u'girl', u'die', u'road', u'tragedi']
[u'gold', u'price', u'hit', u'year', u'high']
[u'govt', u'consult', u'accus', u'conflict']
[u'govt', u'expect', u'smooth', u'passag', u'medicar', u'plan']
[u'group', u'consid', u'plan', u'hospit', u'chang']
[u'hewitt', u'davi', u'obsess']
[u'high', u'court', u'set', u'bakhtiyari', u'date']
[u'high', u'hop', u'swim', u'meet', u'inspir', u'indigen']
[u'highway', u'bypass', u'rout', u'choos']
[u'hospit', u'memo', u'spark', u'conflict', u'debat']
[u'human', u'remain', u'lao']
[u'india', u'spinner', u'contain', u'australia', u'seri']
[u'infantri', u'school', u'staff', u'face', u'prosecut']
[u'internet', u'bubbl', u'analyst', u'turn', u'report']
[u'iraq', u'secur', u'balanc']
[u'jone', u'shrug', u'larkham', u'drop', u'goal', u'drought']
[u'juri', u'consid', u'toowoomba', u'murder', u'trial', u'verdict']
[u'kangaroo', u'leash']
[u'kasparov', u'tie', u'machin', u'chess', u'seri']
[u'knee', u'surgeri', u'forc', u'hardwick', u'season']
[u'koizumi', u'elect', u'japanes']
[u'land', u'clear', u'threaten', u'aust', u'mammal']
[u'leed', u'morri', u'charg', u'rape']
[u'liber', u'cross', u'floor', u'electr', u'reform']
[u'longreach', u'hold', u'william', u'servic']
[u'malaysia', u'mull', u'vertic', u'burial', u'land', u'shortag']
[u'plead', u'guilti', u'hous', u'charg']
[u'sentenc', u'tree', u'clear']
[u'mayor', u'upbeat', u'land', u'releas', u'plan']
[u'vow', u'safeti', u'inquiri']
[u'mcdonald', u'prompt', u'collaps']
[u'mcgradi', u'pleas', u'drug', u'seizur']
[u'meet', u'debat', u'toxic', u'wast', u'dump', u'plan']
[u'melbourn', u'hospit', u'head', u'quit']
[u'face', u'uncertain', u'futur']
[u'minist', u'blast', u'activist', u'sabotag', u'claim']
[u'minist', u'ask', u'smoke', u'pub']
[u'miss', u'climber', u'search']
[u'miss', u'turn', u'bakeri']
[u'mix', u'respons', u'medicar', u'chang']
[u'job', u'weav', u'mill']
[u'rain', u'alic']
[u'pleas', u'medicar', u'chang']
[u'murder', u'trial', u'hear', u'jail', u'death', u'evid']
[u'nasa', u'say', u'shuttl', u'track', u'launch', u'autumn']
[u'navi', u'honour', u'sailor', u'lose', u'wwii', u'warship', u'sink']
[u'industri', u'wind', u'snowi']
[u'noosa', u'river', u'unifi', u'plan']
[u'fear', u'england', u'jone', u'say']
[u'govt', u'oppos', u'sydney', u'flight', u'expans']
[u'govt', u'urg', u'develop', u'board', u'plan']
[u'govt', u'cotton', u'plant', u'short', u'sight', u'truss', u'say']
[u'govt', u'cotton', u'label', u'polit', u'stunt']
[u'tourist', u'head', u'toowoomba', u'region']
[u'olymp', u'weightlift', u'bail', u'steroid', u'raid']
[u'parent', u'group', u'anger', u'anticip', u'public']
[u'patrick', u'share', u'fall', u'profit', u'rise']
[u'pen', u'albani', u'teacher', u'join', u'strike']
[u'peopl', u'alert', u'danger', u'paralysi', u'tick']
[u'perth', u'approv', u'project', u'breweri', u'site']
[u'perth', u'vote', u'rais', u'palla', u'hotel']
[u'meat', u'ploy', u'sabotag', u'sheep', u'trade']
[u'plan', u'moot', u'indigen', u'welfar', u'fund']
[u'plan', u'begin', u'region', u'broadband', u'boost']
[u'plan', u'defenc', u'revamp', u'health']
[u'defend', u'medicar', u'packag']
[u'polic', u'launch', u'probe', u'woman', u'dead']
[u'polic', u'prepar', u'gold', u'coast', u'schooli']
[u'polic', u'tightlip', u'jackson', u'raid']
[u'port', u'adelaid', u'execut', u'stay', u'club']
[u'public', u'urg', u'join', u'refineri', u'green', u'plan', u'group']
[u'redback', u'inning', u'point']
[u'region', u'visit', u'servic', u'take']
[u'research', u'warn', u'hide', u'smoke', u'diseas']
[u'research', u'find', u'pollut', u'good', u'coral', u'growth']
[u'retail', u'urg', u'help', u'fight', u'chrome']
[u'review', u'consid', u'calm', u'prosecut']
[u'rumsfeld', u'paint', u'dark', u'portrait', u'north', u'korea']
[u'premier', u'deflect', u'blame', u'nemer', u'case']
[u'youth', u'project', u'reap', u'prais', u'lead']
[u'shire', u'undergo', u'drought', u'assess']
[u'singer', u'meat', u'loaf', u'collaps']
[u'solomon', u'bank', u'aust']
[u'solomon', u'minist', u'hold', u'domest', u'incid']
[u'south', u'west', u'doctor', u'happi', u'medicar', u'chang']
[u'lankan', u'parliament', u'say', u'closur', u'illeg']
[u'storm', u'caus', u'damag', u'north']
[u'strong', u'crowd', u'expect', u'ballarat']
[u'student', u'hope', u'develop', u'drought', u'resist', u'pastur']
[u'super', u'council', u'suggest', u'face', u'opposit']
[u'support', u'seek', u'welfar']
[u'surg', u'dollar', u'rattl', u'media', u'stock']
[u'liber', u'urg', u'forestri', u'tie']
[u'territori', u'buck', u'trend', u'sale']
[u'timber', u'group', u'citicis', u'rush']
[u'townsvill', u'troop', u'home']
[u'seek', u'cool', u'transatlant', u'trade', u'rift']
[u'union', u'member', u'ralli', u'govt', u'polici']
[u'union', u'vote', u'stage', u'strike']
[u'court', u'overrul', u'marriag']
[u'expert', u'panel', u'decri', u'america', u'ignor']
[u'frigat', u'landmark', u'vietnam', u'visit']
[u'launch', u'fresh', u'raid', u'baghdad']
[u'slam', u'europ', u'iran', u'report']
[u'prison', u'number', u'doubl']
[u'wallabi', u'handl', u'condit', u'jone']
[u'wall', u'street', u'correct', u'continu']
[u'webber', u'welcom', u'chang']
[u'whoop', u'cough', u'outbreak', u'hit', u'cooma', u'school']
[u'wilkinson', u'grab', u'player', u'year', u'gong']
[u'wood', u'expect', u'tough', u'challeng', u'link', u'cours']
[u'woodward', u'reject', u'bore']
[u'wool', u'produc', u'pay', u'levi']
[u'xaus', u'follow', u'superbik', u'team', u'mate', u'hodgson', u'motogp']
[u'prompt', u'open', u'tanner', u'shoot', u'case']
[u'youth', u'bodi', u'back', u'earli', u'intervent']
[u'youth', u'talk', u'green', u'issu']
[u'kill', u'hundr', u'injur', u'istanbul', u'blast']
[u'accc', u'urg', u'probe', u'powerlin', u'plan']
[u'step', u'closer', u'legalis', u'adopt']
[u'govt', u'consid', u'reduc', u'land']
[u'plan', u'synthet', u'heroin', u'trial']
[u'age', u'popul', u'demograph', u'timebomb', u'costello']
[u'defend', u'plan', u'increas', u'electr', u'price']
[u'aid', u'treatment', u'rais', u'heart', u'attack', u'risk', u'studi']
[u'airlin', u'seek', u'high', u'court', u'rule', u'allow', u'allianc']
[u'airlin', u'staffer', u'win', u'braveri', u'award', u'flight']
[u'black', u'clinch', u'place']
[u'black', u'fight', u'coach']
[u'black', u'fight', u'mitchel', u'life']
[u'talk', u'loew', u'cinema']
[u'analyst', u'comfort', u'zone', u'bali']
[u'assessor', u'north', u'west', u'storm', u'damag', u'near', u'mark']
[u'atsic', u'chief', u'pleas', u'croker', u'decis']
[u'aussi', u'author', u'win', u'nation', u'book', u'award']
[u'australian', u'militari', u'return', u'order', u'solomon']
[u'australian', u'remain', u'lao']
[u'australia', u'newest', u'idol']
[u'australia', u'seed', u'champion', u'trophi']
[u'back', u'grow', u'campaign']
[u'bali', u'bomb', u'mastermind', u'samudra', u'appeal', u'suprem']
[u'bank', u'push', u'australian', u'share', u'market']
[u'bank', u'urg', u'boost', u'region', u'loan']
[u'beatti', u'play', u'potenti', u'schooli', u'woe']
[u'berri', u'council', u'debat', u'truck', u'road']
[u'betsen', u'harsh', u'say', u'maso']
[u'bird', u'book', u'aim', u'teach', u'primari', u'student', u'democraci']
[u'blair', u'bush', u'condemn', u'istanbul', u'blast']
[u'brazil', u'squander', u'lead', u'argentina', u'gift', u'point']
[u'break', u'hill', u'sole', u'park', u'council', u'tour', u'nuclear']
[u'broom', u'lectur', u'vie', u'educ', u'award']
[u'canola', u'grower', u'blackleg', u'compens']
[u'bomb', u'hit', u'back', u'local', u'council', u'iraq']
[u'carmichael', u'omalley', u'share', u'open', u'lead']
[u'church', u'guilti', u'obstruct', u'justic']
[u'clean', u'begin', u'portland', u'flood']
[u'cohen', u'emul', u'uncl', u'georg']
[u'compulsori', u'interview', u'number']
[u'concern', u'faulti', u'hospit', u'equip']
[u'confer', u'discuss', u'land', u'releas']
[u'confid', u'wallabi', u'arriv', u'sydney']
[u'consortium', u'tender', u'accept', u'deliveri']
[u'consum', u'warn', u'bewar', u'loan', u'offer']
[u'cost', u'fee', u'world', u'poor']
[u'council', u'consid', u'retail', u'plan']
[u'council', u'push', u'plan', u'dual', u'highway']
[u'council', u'push', u'continu', u'road', u'safeti', u'program']
[u'court', u'agre', u'expedit', u'coach', u'defam', u'case']
[u'court', u'agre', u'fast', u'track', u'hodg', u'libel', u'case']
[u'court', u'akram', u'india', u'coach']
[u'crean', u'capitalis', u'critic', u'work', u'dole']
[u'croc', u'hunter', u'lure', u'prey', u'reptilian', u'buffet']
[u'croc', u'hunter', u'road', u'australian', u'year']
[u'darwin', u'avoid', u'surgeri']
[u'davi', u'pressur', u'aussi', u'spain', u'lopez']
[u'defenc', u'forc', u'arriv', u'home', u'oversea', u'tour']
[u'defenc', u'sell', u'make', u'wodonga']
[u'deport', u'thai', u'teenag', u'suspend']
[u'develop', u'say', u'orphanag', u'plan', u'best', u'solut']
[u'disput', u'end', u'simplot', u'factori']
[u'dont', u'write', u'coulthard', u'say', u'manag']
[u'dope', u'boss', u'warn', u'australian', u'olympian']
[u'say', u'wild', u'dog', u'cost', u'beef', u'industri']
[u'drought', u'stricken', u'farmer', u'relief', u'exempt']
[u'drover', u'bond', u'anim', u'cruelti']
[u'detain', u'immigr', u'raid']
[u'embattl', u'hospit', u'chief', u'quit']
[u'england', u'receiv', u'beck', u'back']
[u'offici', u'announc', u'pyongyan', u'meet']
[u'exot', u'anim', u'danger', u'australia']
[u'explos', u'rock', u'istanbul', u'british', u'consul']
[u'fall', u'birth', u'rate', u'need', u'urgent', u'attent', u'report']
[u'farmer', u'hard', u'northern', u'storm']
[u'farm', u'financ', u'strong', u'despit', u'drought', u'impact']
[u'north', u'older', u'worker', u'face', u'increas']
[u'fate', u'world', u'fame', u'dugong', u'unknown']
[u'father', u'abandon', u'babi']
[u'ferguson', u'everton', u'bust', u'report']
[u'fiji', u'extend', u'turtl', u'kill']
[u'crew', u'prais', u'work']
[u'aussi', u'presid', u'action']
[u'slay', u'detain', u'philippin', u'fightback']
[u'tourist', u'injur', u'border', u'shoot']
[u'policeman']
[u'kill', u'bomb', u'attack', u'northern', u'iraq']
[u'franc', u'betsen', u'ban', u'week']
[u'fuel', u'remov', u'ground', u'ship']
[u'fund', u'boost', u'indigen', u'heritag']
[u'giant', u'potato', u'salad', u'break', u'record']
[u'govt', u'defend', u'damn', u'report', u'dwindl']
[u'grain', u'face', u'troubl', u'time']
[u'green', u'group', u'fear', u'coast', u'threat']
[u'green', u'seek', u'extent', u'southern', u'protect']
[u'guyra', u'communiti', u'stand', u'unit', u'reform']
[u'haslam', u'resid', u'demand', u'compani', u'come', u'dark']
[u'health', u'concern', u'australian', u'indonesian', u'jail']
[u'health', u'fund', u'limit', u'deficit', u'concern', u'costello']
[u'highway', u'open', u'south', u'east', u'accid']
[u'home', u'wait', u'power', u'wild', u'storm']
[u'weather', u'make', u'toowoomba', u'resid', u'reach']
[u'howard', u'promis', u'tourism', u'boost']
[u'howard', u'win', u'gold', u'olymp', u'order']
[u'hungri', u'russian', u'strand', u'berlin', u'gameshow']
[u'health', u'interrupt', u'egyptian', u'presid', u'speech']
[u'incent', u'move', u'ballarat']
[u'india', u'gear', u'aussi', u'ordeal']
[u'indigen', u'youth', u'forum', u'hold', u'darwin']
[u'industri', u'welcom', u'govt', u'tourism', u'packag']
[u'invad', u'send', u'tamworth', u'resid', u'batti']
[u'iraq', u'insurg', u'target', u'baghdad']
[u'israel', u'bind', u'resolut', u'roadmap']
[u'istanbul', u'consul', u'blast', u'caus', u'bomb', u'wit']
[u'judg', u'question', u'turk', u'detent']
[u'juri', u'deliber', u'alleg', u'murder', u'fate']
[u'kalbarri', u'polic', u'prepar', u'youth', u'invas']
[u'labor', u'pledg', u'financ', u'industri', u'revamp', u'super']
[u'lawyer', u'bid', u'pardon', u'billi']
[u'lawyer', u'warn', u'anim', u'liberationist', u'charg']
[u'leed', u'faith', u'viduka']
[u'leski', u'coron', u'criticis', u'legal', u'decis']
[u'lightn', u'spark', u'gippsland', u'blaze']
[u'lion', u'miss', u'copeland', u'hart']
[u'livecorp', u'condemn', u'irrespons', u'sheep', u'sabotag']
[u'logger', u'accus', u'ignor', u'aborigin', u'site', u'warn']
[u'moral', u'continu', u'plagu', u'hospit']
[u'charg', u'alleg', u'sheep', u'fee', u'sabotag']
[u'die', u'win', u'vodka', u'drink', u'contest']
[u'fin', u'harass', u'dolphin']
[u'fin', u'illeg', u'clear', u'veget']
[u'jail', u'fatal', u'motorcycl', u'crash']
[u'kill', u'accid']
[u'face', u'court', u'park', u'fire']
[u'manunda', u'resid', u'infect', u'dengu', u'fever']
[u'mayor', u'warn', u'port', u'project', u'overshadow']
[u'meet', u'discuss', u'plan']
[u'milit', u'seiz', u'nigerian', u'platform', u'hold']
[u'death', u'attract', u'fine']
[u'mini', u'cyclon', u'creat', u'havoc', u'cullullerain']
[u'mine', u'wast', u'leav', u'kangaroo', u'flat', u'resid']
[u'minist', u'hear', u'toxic', u'dump', u'opposit', u'hand']
[u'minist', u'launch', u'alic', u'archiv', u'home']
[u'money', u'recov', u'date', u'servic']
[u'cross', u'floor', u'power', u'deregul']
[u'say', u'teacher', u'shortag', u'claim', u'wrong']
[u'mutant', u'clue', u'cystic', u'fibrosi', u'fight']
[u'mysteri', u'hang', u'sydney', u'harbour']
[u'nation', u'waltz', u'matilda', u'campaign', u'usher']
[u'exhibit', u'unveil', u'australia', u'silent', u'workforc']
[u'hotel', u'announc', u'launceston']
[u'korea', u'accus', u'rumsfeld', u'crimin', u'junket']
[u'emerg', u'unansw']
[u'posit', u'world', u'test', u'say', u'rugbi', u'drug', u'buster']
[u'wallabi', u'plan', u'wilko', u'claim', u'jone']
[u'farmer', u'want', u'parliament', u'urgent', u'consid']
[u'forest', u'worker', u'battl', u'north', u'bushfir']
[u'govt', u'sack', u'aborigin', u'council', u'appoint']
[u'soldier', u'remain', u'duti', u'drug', u'probe']
[u'nurs', u'reject', u'howard', u'govt', u'medicar', u'packag']
[u'opposit', u'back', u'heroin', u'type', u'drug', u'trial', u'help']
[u'opposit', u'call', u'judici', u'inquiri']
[u'opposit', u'natur', u'resourc', u'defer', u'fail']
[u'parent', u'park', u'creat', u'traffic', u'problem']
[u'protest', u'unlik', u'affect', u'nurs', u'home']
[u'plan', u'dept', u'hear', u'pearl', u'oyster', u'farm', u'fear']
[u'call', u'stand', u'hick', u'habib']
[u'campaign', u'hick', u'releas', u'father', u'say']
[u'threaten', u'close', u'settlement']
[u'polic', u'probe', u'claim', u'unionist', u'assault', u'outsid', u'home']
[u'polic', u'question', u'homemad', u'reptil', u'park']
[u'powel', u'discuss', u'british', u'guantanamo', u'detaine']
[u'power', u'go', u'hospit', u'oper']
[u'premier', u'wife', u'offer', u'schooli', u'week', u'advic']
[u'prescript', u'drug', u'dead', u'toddler', u'bodi']
[u'magnesia', u'look', u'expans']
[u'question', u'mark', u'hugh', u'futur', u'wale', u'coach']
[u'radio', u'station', u'board', u'mass', u'waltz', u'matilda']
[u'raymond', u'power', u'final']
[u'redback', u'charg', u'victori']
[u'cross', u'make', u'plea', u'fund']
[u'tide', u'wash', u'townsvill', u'beach']
[u'reinforc', u'schooli', u'polic']
[u'research', u'support', u'reduct', u'spanish', u'mackerel']
[u'resid', u'anger', u'hospit', u'closur', u'plan']
[u'review', u'propos', u'certif', u'countri']
[u'rfds', u'move', u'closer', u'fund', u'target']
[u'africa', u'approv', u'mass', u'aid', u'drug', u'treatment']
[u'sailor', u'rescu', u'yacht', u'burn']
[u'scotland', u'wale', u'euro', u'dream', u'shatter']
[u'search', u'continu', u'miss', u'skipper']
[u'secur', u'buckinham', u'palac', u'report']
[u'seminar', u'place', u'indigen', u'issu', u'spotlight']
[u'servic', u'say', u'schooli']
[u'shred', u'sheep', u'fee']
[u'charg', u'istanbul', u'bomb']
[u'week', u'till', u'buyback', u'program', u'finish']
[u'solomon', u'island', u'politician', u'meet', u'donor']
[u'solomon', u'call', u'oversea', u'fund', u'polic']
[u'solomon', u'prais', u'aust', u'intervent', u'forc']
[u'solomon', u'safer', u'sydney', u'melbourn', u'mission', u'chief']
[u'state', u'respons', u'economi']
[u'stricter', u'law', u'urg', u'innoc', u'panel']
[u'sugar', u'outlook', u'sweet']
[u'support', u'bush', u'latest', u'poll']
[u'sydney', u'airport', u'deni', u'nois', u'claim']
[u'taiwan', u'develop', u'rapid', u'test', u'sar', u'virus', u'report']
[u'telstra', u'payment', u'late', u'fee', u'rise']
[u'tender', u'call', u'yamba', u'dredg', u'project']
[u'dead', u'hurt', u'turkey', u'blast', u'offici']
[u'break', u'drama', u'case', u'draw', u'world', u'final']
[u'shed', u'surpris']
[u'swim', u'coach', u'want', u'defam', u'case', u'expedit']
[u'tourism', u'queensland', u'launch', u'plan', u'lure', u'outback']
[u'townsvill', u'welcom', u'home', u'troop']
[u'trade', u'begin', u'repco', u'share']
[u'trade', u'opportun', u'asia', u'vital', u'downer', u'say']
[u'troop', u'kill', u'aceh', u'rebel']
[u'truck', u'ram', u'hospit', u'petrol', u'station']
[u'tweed', u'meet', u'look', u'catchment', u'model']
[u'activist', u'hold', u'japan', u'free', u'whale']
[u'trial', u'suicid', u'attempt', u'tiananmen']
[u'ngos', u'north', u'korea']
[u'union', u'criticis', u'academ']
[u'unit', u'church', u'guilti', u'contempt', u'court']
[u'armi', u'arrest', u'suspect', u'saddam', u'loyalist']
[u'call', u'greater', u'cooper', u'asia', u'pacif']
[u'close', u'run', u'opposit', u'say']
[u'depart', u'come', u'greater', u'export']
[u'opposit', u'push', u'health', u'advis', u'sack']
[u'victoria', u'oper', u'surplus', u'reveal']
[u'villa', u'oleari', u'plead', u'poverti']
[u'govt', u'consid', u'liquor', u'store', u'sunday', u'trade']
[u'lib', u'lobbi', u'vote', u'right', u'prison']
[u'wallabi', u'forward', u'wont', u'intimid', u'jone']
[u'wallabi', u'forward', u'wont', u'jone']
[u'resourc', u'sector', u'urg', u'rise', u'gold', u'price']
[u'water', u'restrict', u'appli', u'eurobodalla']
[u'webber', u'pledg', u'immedi', u'futur', u'jaguar']
[u'western', u'power', u'fin', u'goldfield', u'death']
[u'western', u'swelter', u'week', u'long', u'heat', u'wave']
[u'work', u'dole', u'time', u'consum']
[u'world', u'australia', u'howard']
[u'youth', u'worker', u'hold', u'forum', u'mental', u'ill']
[u'zimbabw', u'drop', u'carlisl', u'windi', u'dayer']
[u'zimbabw', u'union', u'call', u'strike', u'arrest']
[u'hurt', u'india', u'mosqu', u'bomb', u'polic']
[u'accc', u'drop', u'qanta', u'action']
[u'disappoint', u'heroin', u'substitut', u'trial']
[u'health', u'minist', u'back', u'synthet', u'heroin', u'trial']
[u'age', u'popul', u'hurt', u'australian', u'lifestyl']
[u'black', u'coach', u'grab']
[u'black', u'threaten', u'boycott', u'gate', u'receipt']
[u'alleg', u'rapist', u'liken', u'case', u'lindi', u'chamberlain']
[u'debat', u'green', u'phone', u'woe']
[u'america', u'form', u'world', u'largest', u'free', u'trade', u'zone']
[u'anderson', u'rule', u'rest', u'dayer']
[u'andrew', u'renew', u'call', u'reform', u'union']
[u'fin', u'secur', u'screen', u'blunder']
[u'arab', u'leader', u'condemn', u'turkey', u'blast']
[u'armidal', u'council', u'set', u'date', u'sport', u'agreement']
[u'atsic', u'urg', u'youth', u'attend', u'forum']
[u'aussi', u'dollar', u'reach', u'fresh', u'peak']
[u'australia', u'captain', u'sensibl', u'readi', u'laugh']
[u'australia', u'tell', u'review', u'patent', u'law']
[u'aust', u'upgrad', u'turkey', u'travel', u'advisori']
[u'author', u'investig', u'sheep', u'sabotag', u'claim']
[u'author', u'name', u'year']
[u'bendigo', u'servic', u'farewel', u'policeman']
[u'berri', u'council', u'investig', u'properti', u'find', u'scheme']
[u'biochip', u'push', u'livestock', u'diseas', u'manag']
[u'biodri', u'plant', u'offer', u'canefarm', u'lifelin']
[u'bleed', u'diseas', u'heart', u'hop', u'shock', u'smoker']
[u'boati', u'skill', u'standard']
[u'bomb', u'shake', u'market']
[u'bosnian', u'serb', u'live']
[u'brack', u'look', u'harmoni', u'workplac']
[u'brain', u'abnorm', u'blame', u'attent', u'deficit']
[u'breaker', u'centr', u'get', u'game']
[u'breastfe', u'link', u'blood', u'pressur', u'overst']
[u'brisban', u'court', u'jail', u'drink', u'driver']
[u'byron', u'polic', u'drop', u'charg', u'coldplay', u'singer']
[u'forest', u'manag', u'chang']
[u'train', u'crash', u'faulti', u'level', u'cross']
[u'ceduna', u'water', u'cut', u'leav', u'town', u'embarrass']
[u'cheap', u'power', u'project', u'hold']
[u'china', u'tighten', u'rule', u'internet', u'address', u'manag']
[u'chines', u'nation', u'triumphant', u'return']
[u'coal', u'miner', u'threaten', u'strike', u'gretley', u'disast']
[u'collieri', u'ask', u'road', u'fund', u'contribut']
[u'communiti', u'group', u'pacif', u'solut']
[u'construct', u'work', u'break', u'dunsborough', u'water', u'line']
[u'consum', u'warn', u'steal', u'can', u'meat']
[u'council', u'resurrect', u'night', u'patrol']
[u'council', u'want', u'fast', u'start', u'indigen', u'facil']
[u'creditor', u'flightship', u'rescu', u'plan']
[u'croc', u'head', u'south', u'giant', u'clash']
[u'croc', u'tough', u'road', u'doubl']
[u'oppon', u'hold', u'festiv']
[u'deplet', u'gunner', u'price', u'unit', u'bust']
[u'derelict', u'hotel', u'like', u'demolish']
[u'detect', u'investig', u'bateman', u'bodi']
[u'detent', u'centr', u'famili', u'residenti']
[u'disney', u'profit', u'doubl', u'million']
[u'encourag', u'wild', u'bait', u'report']
[u'doctor', u'highlight', u'high', u'cost', u'child', u'vaccin']
[u'doctor', u'obes', u'fight']
[u'dont', u'forget', u'flatley', u'woodward', u'warn']
[u'downer', u'world', u'terror', u'warn']
[u'downer', u'issu', u'world', u'warn']
[u'drought', u'market', u'boost', u'beef', u'export', u'valu']
[u'farmer', u'exempt', u'pay', u'wage', u'rise']
[u'england', u'home', u'sydney']
[u'expert', u'fear', u'sacr', u'sit', u'destroy', u'bago', u'log']
[u'famili', u'imprison', u'appeal', u'embassi']
[u'farmer', u'renew', u'wheat', u'test']
[u'fear', u'lake', u'entranc', u'closur', u'hurt', u'tourism']
[u'festiv', u'light', u'music', u'fuse']
[u'film', u'industri', u'concern', u'free', u'trade', u'talk']
[u'ansett', u'worker', u'settl', u'payment', u'disput']
[u'forum', u'aim', u'better', u'environment', u'manag']
[u'gazza', u'struggl', u'wolv']
[u'gold', u'field', u'reveal', u'saint', u'ive', u'develop', u'plan']
[u'govt', u'escap', u'scrutini', u'asylum', u'seeker']
[u'govt', u'work', u'council', u'waterfront', u'develop']
[u'grain', u'creditor', u'owe']
[u'grampian', u'water', u'eas', u'north', u'west', u'restrict']
[u'green', u'plan', u'free', u'trade', u'veto', u'aussi', u'content']
[u'green', u'report', u'need', u'greater', u'environ', u'focus']
[u'gregan', u'ralli', u'wallabi']
[u'griev', u'famili', u'independ', u'malpractic']
[u'gulf', u'wholist', u'health', u'approach']
[u'habib', u'wife', u'confront', u'howard', u'radio']
[u'heavi', u'rain', u'fall', u'gippsland']
[u'swindl', u'bag', u'million']
[u'hodg', u'sign', u'leicestershir', u'contract']
[u'hospit', u'endur', u'gastro', u'outbreak']
[u'hospit', u'find', u'earli', u'year']
[u'hsbc', u'resum', u'busi', u'turkey', u'firm', u'alert']
[u'hussey', u'langer', u'lead', u'warrior', u'fightback']
[u'illeg', u'snare', u'platypus']
[u'incumb', u'win', u'georgian', u'elect']
[u'india', u'kale', u'face', u'life', u'bribe', u'claim']
[u'indigen', u'health', u'servic', u'open', u'more']
[u'injuri', u'wont', u'stop', u'titl', u'assault', u'schumach']
[u'intern', u'earli', u'lead', u'presid']
[u'investig', u'begin', u'heritag', u'list', u'build']
[u'investig', u'swan', u'river', u'sewerag', u'spill', u'begin']
[u'israel', u'defiant', u'barrier']
[u'itali', u'shelv', u'plan', u'nuclear', u'wast', u'storag']
[u'itali', u'lead', u'trio', u'fear', u'travel', u'sick']
[u'japanes', u'stori', u'scoop', u'afi']
[u'johnson', u'johnson', u'pull', u'disrespect']
[u'johnson', u'say', u'gregan']
[u'juri', u'unabl', u'reach', u'templeton', u'verdict']
[u'kangaroo', u'mayor', u'appeal', u'water']
[u'kelli', u'bowl', u'competit', u'championship']
[u'kenyan', u'polic', u'charg', u'mombasa', u'attack']
[u'kiwi', u'draft', u'rooki', u'pakistan', u'tour']
[u'lack', u'aborigin', u'rugbi', u'remedi', u'say']
[u'lake', u'cullullerain', u'recov', u'storm']
[u'land', u'corp', u'welcom', u'practic', u'gift']
[u'legalis', u'heroin', u'undermin', u'terrorist', u'research']
[u'liberationist', u'warn', u'export', u'sabotag']
[u'lion', u'centr', u'pair', u'tackl', u'kangaroo']
[u'lion', u'sting', u'aussi', u'mental', u'jibe']
[u'lose', u'student', u'night', u'snowi', u'mountain']
[u'magistr', u'delay', u'hear', u'polic', u'wit', u'drug']
[u'arrest', u'sydney', u'harbour', u'bridg', u'climb']
[u'guilti', u'burn', u'wife', u'death']
[u'kick', u'stink']
[u'mauresmo', u'pierc', u'push', u'franc', u'final']
[u'question', u'suspect', u'abduct']
[u'minist', u'reject', u'critic', u'review', u'process']
[u'miss', u'melbourn', u'famili']
[u'miss', u'school', u'boy', u'safe']
[u'mitchel', u'await', u'fate']
[u'mobil', u'phone', u'shepparton']
[u'posit', u'test', u'world', u'championship']
[u'turkey', u'attack', u'plan', u'britain', u'warn']
[u'prais', u'tourism', u'white', u'paper']
[u'intellig', u'train', u'centr', u'open', u'gold']
[u'servic', u'directori', u'launch']
[u'zealand', u'upgrad', u'tourist', u'warn', u'turkey']
[u'candid', u'contest', u'council', u'poll']
[u'govt', u'commit', u'tingha', u'health', u'centr']
[u'polic', u'charg', u'child', u'offenc']
[u'protest', u'delay', u'eden', u'log', u'work']
[u'nuclear', u'watchdog', u'meet', u'discuss', u'iran']
[u'pair', u'face', u'court', u'unit', u'murder']
[u'parent', u'warn', u'post', u'natal', u'depress']
[u'parliamentari', u'group', u'call', u'nation', u'heroin']
[u'petrol', u'price', u'fix', u'charg', u'leahi', u'drop']
[u'petrol', u'focus', u'woolworth']
[u'plan', u'display', u'communiti', u'centr']
[u'polic', u'defend', u'highway', u'transport', u'oper']
[u'polic', u'fine', u'driver', u'obey', u'speed', u'limit']
[u'polic', u'investig', u'cobar', u'stab']
[u'polic', u'investig', u'miss', u'woman', u'case']
[u'polic', u'quiet', u'confid', u'ahead', u'rugbi', u'world']
[u'polic', u'readi', u'schooli', u'invas']
[u'polic', u'releas', u'detail', u'alleg', u'attack']
[u'polic', u'scale', u'miss', u'diver', u'search']
[u'polic', u'seek', u'help', u'reunit', u'famili']
[u'polic', u'seek', u'tamworth', u'respons', u'hold']
[u'polic', u'seek', u'miss', u'melbourn']
[u'polici', u'help', u'shape', u'alic', u'region', u'plan']
[u'pound', u'mull', u'urg', u'outcast']
[u'princ', u'harrison', u'join', u'rock', u'hall', u'fame']
[u'pristin', u'council', u'say', u'reserv', u'hand']
[u'public', u'urg', u'cyclon', u'readi']
[u'python', u'attack', u'swallow', u'bangladeshi', u'woman']
[u'student', u'celebr', u'schooli', u'week']
[u'welcom', u'part', u'tourism', u'plan']
[u'rain', u'welcom', u'need']
[u'real', u'madrid', u'avoid', u'mickey', u'mous']
[u'redback', u'gillespi', u'dayer']
[u'redback', u'cruis', u'victori']
[u'renmark', u'appeal', u'lyrup', u'speed', u'limit']
[u'report', u'say', u'need', u'lake', u'eyr', u'tourism']
[u'report', u'warn', u'young', u'aussi', u'risk']
[u'rocket', u'launcher', u'near', u'italian', u'embassi']
[u'rocket', u'slam', u'baghdad', u'hotel', u'ministri']
[u'rossi', u'gambl', u'open', u'motogp', u'titl', u'race']
[u'rottnest', u'polic', u'happi', u'schooli', u'behaviour']
[u'rwandan', u'polic', u'arrest', u'journalist', u'seiz', u'magazin']
[u'schooli', u'week', u'taint', u'violenc']
[u'schooli', u'celebr', u'kick', u'qlds', u'gold', u'coast']
[u'secur', u'council', u'condemn', u'turkey', u'bomb']
[u'sharehold', u'call', u'liquid']
[u'sheep', u'futur', u'limbo']
[u'showground', u'hous', u'exhibit', u'centr']
[u'sixer', u'lose', u'nash', u'tiger', u'clash']
[u'slipper', u'upbeat', u'white', u'paper', u'tourism', u'impact']
[u'small', u'busi', u'boost', u'hunter']
[u'soccer', u'legend', u'treat', u'cancer']
[u'south', u'africa', u'make', u'environment', u'progress']
[u'southern', u'student', u'await', u'score']
[u'steel', u'firm', u'consid', u'port', u'kembla', u'revamp']
[u'storm', u'leav', u'resid', u'dark']
[u'storm', u'black', u'western']
[u'strachan', u'leed']
[u'studi', u'question', u'asylum', u'seeker', u'mental', u'health']
[u'survey', u'show', u'bush', u'doctor', u'work', u'harder']
[u'swedish', u'polic', u'probe', u'report', u'meat', u'lace']
[u'sydney', u'mayor', u'say', u'merger', u'like']
[u'tasmanian', u'anglican', u'deal', u'fresh', u'abus', u'claim']
[u'tension', u'grow', u'taiwan', u'elect']
[u'thompson', u'return', u'boost', u'celtic']
[u'thousand', u'schooli', u'head', u'airli', u'beach']
[u'tiger', u'gabba']
[u'global', u'polici', u'maker', u'warn', u'protection']
[u'tourism', u'bodi', u'want', u'aviat', u'review']
[u'tourism', u'market', u'promis']
[u'townsvill', u'schooli', u'urg', u'good', u'time']
[u'trio', u'charg', u'raid']
[u'troop', u'differ', u'solomon']
[u'turkey', u'blast', u'rattl', u'market', u'world', u'wide']
[u'turkey', u'blast', u'shake', u'aussi', u'market']
[u'turkey', u'confirm', u'arrest', u'istanbul', u'bomb']
[u'turkey', u'match', u'postpon', u'bomb', u'attack']
[u'unemploy', u'high', u'consum', u'debt']
[u'union', u'move', u'gretley', u'loophol', u'fear']
[u'union', u'rep', u'sorri', u'council', u'manag']
[u'univers', u'mildura', u'campus', u'open']
[u'china', u'trade', u'tension', u'continu', u'simmer']
[u'crack', u'internet', u'fraud']
[u'postpon', u'launch', u'arab']
[u'vanston', u'rule', u'popul', u'target']
[u'govt', u'sit', u'marathon', u'hour', u'session']
[u'lightn', u'fire', u'control']
[u'virgin', u'anger', u'drop', u'qanta', u'action']
[u'vogt', u'keep', u'faith', u'dutch', u'disast']
[u'wait', u'call', u'aussi']
[u'wallabi', u'complet', u'final', u'prepar']
[u'polic', u'prais', u'behav', u'schooli']
[u'warn', u'schooli', u'prepar', u'parti']
[u'water', u'compani', u'fin', u'pollut', u'river', u'dam']
[u'water', u'compani', u'rais', u'doubt', u'minimbah']
[u'webb', u'florida']
[u'wessel', u'suspend', u'alleg', u'race', u'slur']
[u'wessel', u'suspend', u'alleg', u'racial', u'slur']
[u'wheat', u'board', u'prepar', u'food', u'fight']
[u'wodonga', u'storm', u'clean', u'time']
[u'woman', u'kill', u'fatal', u'hous']
[u'wood', u'prepar', u'showdown']
[u'woodward', u'back', u'right', u'amid', u'dwyer']
[u'worker', u'kill', u'hunter', u'accid']
[u'work', u'group', u'releas', u'newcastl', u'citi', u'rail', u'report']
[u'warn', u'dolphin', u'slaughter', u'mediterranean']
[u'pile', u'caus', u'traffic', u'chao', u'brisban']
[u'host', u'franc', u'congratul', u'australia']
[u'kilo', u'illeg', u'firework', u'seiz']
[u'abbott', u'back', u'indigen', u'health', u'deal']
[u'abbott', u'sell', u'medicar', u'packag', u'doctor']
[u'govt', u'hotel', u'kurrajong']
[u'govt', u'encrypt', u'school', u'comput']
[u'stand', u'synthet', u'heroin', u'trial']
[u'actu', u'happi', u'ansett', u'agreement']
[u'aid', u'awar', u'week', u'kick']
[u'qaeda', u'claim', u'respons', u'istanbul']
[u'qaeda', u'warn', u'attack', u'turkey', u'make', u'arrest']
[u'qaeda', u'warn', u'tokyo', u'attack']
[u'australia', u'clean', u'perth', u'cycl']
[u'bishop', u'accus', u'abus', u'year', u'death']
[u'bloodsh', u'predict', u'amid', u'georgian', u'elect', u'protest']
[u'brack', u'govt', u'back', u'wind', u'farm']
[u'breaker', u'replac', u'coach', u'lose', u'match']
[u'bulldog', u'snap', u'cooney']
[u'bull', u'troubl', u'gabba']
[u'bush', u'home', u'visit']
[u'bushrang', u'warrior', u'play', u'draw']
[u'cargo', u'plane', u'missil', u'baghdad', u'militari']
[u'celtic', u'connect', u'back', u'england']
[u'china', u'call', u'support', u'taiwan']
[u'china', u'top', u'world', u'illeg', u'ivori', u'trade', u'report']
[u'civilian', u'plane', u'land', u'baghdad', u'flight']
[u'clijster', u'athen', u'boycott', u'threat']
[u'conflict', u'issu', u'flare']
[u'copeland', u'commit', u'lion']
[u'countdown', u'world', u'final']
[u'davi', u'mallon', u'crowd', u'leaderboard']
[u'domin', u'surg', u'clear', u'presid']
[u'labour', u'kill', u'india']
[u'electron', u'nose', u'replic', u'dog', u'sniff', u'skill']
[u'england', u'ahead', u'half', u'time']
[u'england', u'touch', u'rugbi', u'world']
[u'england', u'win', u'world', u'bet', u'battl']
[u'england', u'win', u'world']
[u'england', u'win', u'world', u'thriller']
[u'bomb', u'throw', u'embassi', u'iran']
[u'flatley', u'kick', u'world', u'overtim']
[u'fluoro', u'fish', u'sell', u'pet']
[u'kill', u'injur', u'grenad', u'attack']
[u'free', u'australian', u'return', u'china']
[u'french', u'grand', u'prix', u'cancel', u'report']
[u'gregan', u'swansong']
[u'hezbollah', u'chief', u'threaten', u'strike', u'heart']
[u'horror', u'hour', u'road']
[u'hotel', u'purchas', u'prais', u'oppn']
[u'india', u'australia', u'ganguli']
[u'indian', u'board', u'probe', u'bribe', u'alleg']
[u'indian', u'arriv', u'adelaid', u'amid', u'briberi', u'claim']
[u'individu', u'contest', u'settl', u'final']
[u'inquiri', u'rottnest', u'begin']
[u'irish', u'fetch', u'euro']
[u'jackson', u'fan', u'plan', u'vigil']
[u'jackson', u'friend', u'react', u'disbelief']
[u'posit', u'gregan']
[u'maher', u'tame', u'tiger']
[u'meningococc', u'victim', u'adelaid', u'school']
[u'miss', u'crocodil']
[u'motorist', u'kill', u'sydney', u'accid']
[u'nasa', u'say', u'probe', u'have', u'quiet', u'ride', u'mar']
[u'korean', u'nuclear', u'power', u'plant', u'plan', u'stall']
[u'tourist', u'commiss', u'happi', u'merger']
[u'nude', u'springbok', u'train', u'snap', u'shock', u'south', u'africa']
[u'train', u'return']
[u'olymp', u'edg', u'tabl']
[u'peac', u'possibl', u'month', u'quri']
[u'vote', u'rule', u'invalid']
[u'polic', u'break', u'brawl', u'sydney', u'tavern']
[u'polic', u'hunt', u'miss', u'crocodil']
[u'polic', u'investig', u'pile', u'brisban']
[u'polic', u'offic', u'injur']
[u'privat', u'bodi', u'claim']
[u'protest', u'centr', u'stage', u'afi']
[u'punch', u'drink', u'teenag', u'hospitalis']
[u'qanta', u'welcom', u'accc', u'decis']
[u'rain', u'soak', u'sydney', u'ahead', u'world', u'final']
[u'rain', u'stop', u'play', u'bushrang', u'chase', u'victori']
[u'raymond', u'meet', u'mauresmo', u'final', u'open']
[u'report', u'say', u'child', u'abus', u'cost', u'year']
[u'retir', u'dream', u'spot', u'arent', u'dreami']
[u'roll', u'dispirit', u'french']
[u'rwandan', u'polic', u'temporarili', u'releas']
[u'african', u'diamond', u'fail', u'meet', u'reserv']
[u'prepar', u'bushfir', u'season']
[u'branch', u'pass', u'confid', u'vote']
[u'schooli', u'flock', u'gold', u'coast']
[u'sharon', u'remov', u'settlement']
[u'sniper', u'juri', u'stall', u'penalti']
[u'solomon', u'export', u'industri', u'stay', u'dormant']
[u'spanish', u'woman', u'busi', u'free', u'shop', u'spree']
[u'lanka', u'england', u'dayer', u'abandon']
[u'storm', u'cut', u'power', u'western']
[u'suicid', u'bomber', u'attack', u'iraqi', u'polic', u'station']
[u'suicid', u'bomber', u'turk', u'say', u'sham']
[u'surf', u'skier', u'drown', u'rough', u'sea']
[u'teacher', u'face']
[u'terror', u'suspect', u'plan', u'attack', u'australia']
[u'tiger', u'hammer', u'bull']
[u'tiwi', u'home', u'employ', u'train', u'centr']
[u'traffic', u'control', u'concern', u'propos']
[u'turkey', u'tens', u'toll', u'hit']
[u'turk', u'arrest', u'issu', u'worldwid', u'warn']
[u'turk', u'plan', u'silent', u'peac', u'protest']
[u'turk', u'ralli', u'terror', u'attack']
[u'kill', u'collis']
[u'say', u'bomb', u'wont', u'hurt', u'turkey']
[u'brush', u'iraq', u'attack']
[u'director', u'lynch', u'receiv', u'swedish', u'honour']
[u'forc', u'kill', u'hungarian', u'student', u'iraq']
[u'issu', u'global', u'terror', u'alert']
[u'test', u'bomb', u'florida']
[u'violent', u'break', u'sydney', u'west']
[u'wallabi', u'draw', u'blood']
[u'wall', u'steadi', u'nervous', u'week']
[u'waugh', u'cautious', u'return']
[u'wessel', u'continu', u'deni', u'racism', u'claim']
[u'wilkinson', u'boot', u'england', u'ahead']
[u'wilkinson', u'kick', u'start', u'world', u'final']
[u'wiltord', u'add', u'arsenal', u'injuri', u'woe']
[u'woman', u'kill', u'accid']
[u'woodford', u'name', u'coach']
[u'zia', u'name', u'pakistan', u'squad']
[u'aborigin', u'youth', u'need', u'space', u'forum']
[u'offer', u'manslaught', u'delay']
[u'adelaid', u'apprehend', u'iraq']
[u'afghanistan', u'free', u'prison', u'ramadan']
[u'airport', u'prepar', u'onslaught', u'rugbi', u'fan']
[u'anti', u'terror', u'ralli', u'turkey']
[u'australia', u'dream', u'victim', u'gloat', u'woodward']
[u'australian', u'turkey', u'bomb', u'victim']
[u'australian', u'turkey', u'bomb', u'victim']
[u'australian', u'pair', u'rescu', u'mountain', u'snow', u'cave']
[u'australian', u'water', u'difficult', u'patrol', u'vanston']
[u'aviat', u'histori', u'rememb', u'darwin']
[u'awesom', u'annika', u'vault', u'clear']
[u'bali', u'burn', u'doctor', u'honour']
[u'beatti', u'defend', u'health']
[u'berlusconi', u'friend', u'jail', u'bribe', u'case']
[u'best', u'rugbi', u'world', u'quot']
[u'bjorn', u'triumph', u'japan', u'garcia', u'stumbl']
[u'blair', u'hail', u'england', u'world', u'hero']
[u'boat', u'carri', u'terrorist', u'vanston']
[u'hospit', u'motorcycl', u'accid']
[u'breakaway', u'church', u'propos', u'ordin']
[u'brock', u'mountain']
[u'butcher', u'arrest', u'ramadan', u'meat', u'scam']
[u'carmichael', u'captur', u'open', u'crown']
[u'coach', u'take', u'swipe', u'media']
[u'communiti', u'market', u'grant']
[u'controversi', u'design', u'defend', u'museum', u'work']
[u'crean', u'desert', u'deni']
[u'croatian', u'poll']
[u'dad', u'armi', u'england']
[u'demonstr', u'storm', u'georgian', u'parliament']
[u'deportivo', u'draw', u'open', u'door', u'titl', u'rival']
[u'diseas', u'bodi', u'part', u'cigarett', u'pack']
[u'england', u'grind', u'halt', u'jonni']
[u'england', u'hero', u'wilkinson', u'modest', u'victori']
[u'england', u'world']
[u'english', u'fan', u'celebr', u'world']
[u'euphor', u'english', u'fan', u'home']
[u'north', u'shake', u'earthquak']
[u'fiji', u'win', u'race']
[u'home', u'owner', u'warn', u'shonki', u'builder']
[u'migrant', u'kill', u'india', u'north', u'east']
[u'fountain', u'honour', u'women', u'suffrag']
[u'franc', u'rugbi', u'world']
[u'french', u'take', u'break']
[u'georgia', u'opposit', u'say', u'nation', u'guard']
[u'georgia', u'govt', u'channel', u'report']
[u'georgia', u'presid', u'oust']
[u'georgia', u'presid', u'readi', u'consid', u'earli']
[u'govt', u'urg', u'commit', u'ethanol', u'industri']
[u'gregan', u'ponder', u'test', u'futur']
[u'gregan', u'proud', u'beat', u'wallabi']
[u'gunshot', u'fire', u'indonesia', u'restiv', u'poso', u'district']
[u'hanson', u'lack', u'support', u'senat', u'abbott']
[u'heavi', u'rain', u'caus', u'flood']
[u'indonesia', u'extend', u'australian', u'jail', u'term']
[u'indonesia', u'replac', u'militari', u'command', u'aceh']
[u'inquiri', u'barbar', u'bok', u'boot', u'camp']
[u'investig', u'meningococc', u'case', u'begin']
[u'iraqi', u'secur', u'chief', u'kill', u'mosul', u'polic']
[u'italian', u'cruis', u'ship', u'cancel', u'stop', u'turkish', u'coast']
[u'itali', u'major', u'target', u'extremist', u'minist', u'warn']
[u'rememb']
[u'johnson', u'prais', u'england', u'team', u'effort']
[u'jone', u'call', u'invest', u'side']
[u'jone', u'call', u'replac', u'rule']
[u'jone', u'say', u'wallabi', u'improv']
[u'jone', u'target', u'kick', u'game', u'improv']
[u'juventus', u'open', u'point', u'inter']
[u'kangaroo', u'overjoy', u'histor', u'ash', u'clean', u'sweep']
[u'kangaroo', u'strike', u'aussi']
[u'kangaroo', u'reveng', u'world', u'loss']
[u'kingz', u'stun', u'stallion']
[u'labor', u'back', u'plan', u'boost', u'bulk', u'bill', u'rat']
[u'lara', u'gayl', u'centuri', u'destroy', u'zimbabw']
[u'lithuanian', u'protest', u'demand', u'presid', u'resign']
[u'local', u'govt', u'unhappi', u'hous', u'polici']
[u'malaysia', u'defend', u'sack', u'editor']
[u'manou', u'cleari', u'lift', u'redback']
[u'medic', u'student', u'hungri', u'degre']
[u'milan', u'evacu', u'thousand', u'defus', u'wwii', u'bomb']
[u'miss', u'trucki', u'famili', u'appeal', u'inform']
[u'monash', u'medic', u'centr', u'close', u'paediatr', u'intens']
[u'nelson', u'court', u'independ', u'packag']
[u'north', u'korea', u'nuke', u'talk', u'decemb', u'report']
[u'scienc', u'fund', u'bodi']
[u'foundat', u'launch']
[u'chang', u'arsenal', u'chelsea', u'unit']
[u'final', u'decis', u'scrap', u'french', u'minist']
[u'health', u'minist', u'unhappi', u'medicar', u'packag']
[u'nation', u'popular', u'rise']
[u'oppn', u'attack', u'medicar', u'packag']
[u'pakistan', u'captain', u'latif', u'troubl']
[u'pakistan', u'drop', u'zia', u'media', u'storm']
[u'pakistani', u'releas', u'guantanamo']
[u'pierc', u'mauresmo', u'franc', u'charg']
[u'polic', u'boost', u'number']
[u'polic', u'investig', u'bottl', u'shop', u'robberi']
[u'polic', u'raid', u'lead', u'larg', u'cannabi']
[u'polic', u'firework', u'caus', u'spearwood', u'blaze']
[u'polic', u'warn', u'teen', u'parti', u'gatecrash']
[u'polic', u'watch', u'schooli']
[u'quak', u'hit', u'japanes', u'prefectur']
[u'queen', u'offer', u'congratul']
[u'rain', u'doesnt', u'dampen', u'schooli', u'spirit']
[u'redback', u'bowl', u'blue']
[u'region', u'growth', u'depend', u'report']
[u'renew', u'govt', u'address', u'child', u'abus']
[u'rio', u'clear', u'attack', u'cop']
[u'rocket', u'fire', u'iraq', u'compani', u'iraqi']
[u'rock', u'legend', u'stage', u'protest', u'point', u'nepean']
[u'rugbi', u'world', u'boost', u'tourism', u'sector']
[u'scott', u'inspir', u'intern', u'clean', u'sweep']
[u'shatter', u'wallabi', u'fair', u'beat', u'jone']
[u'shop', u'warn', u'dont', u'money']
[u'slim', u'turnout', u'jackson', u'vigil']
[u'south', u'africa', u'seek', u'chang', u'humili']
[u'south', u'pacif', u'polic', u'chief', u'meet', u'brisban']
[u'state', u'emerg', u'georgia']
[u'striker', u'stun', u'power']
[u'suicid', u'blast', u'claim', u'baghdad']
[u'taipan', u'dodg', u'bullet']
[u'govt', u'doubl', u'assault', u'penalti']
[u'teen', u'charg', u'australian', u'murder', u'malaysia']
[u'turk', u'polic', u'arrest', u'suspect', u'bomb', u'plot']
[u'turk', u'detain', u'connect', u'kirkuk', u'blast']
[u'isra', u'secur', u'guard', u'kill']
[u'test', u'world', u'champ', u'dope', u'trawl']
[u'soldier', u'kill', u'iraqi', u'citi', u'mosul']
[u'armi', u'maintain', u'troop', u'presenc', u'iraq', u'report']
[u'move', u'closer', u'iran']
[u'hous', u'pass', u'landmark', u'medicar', u'drug']
[u'hous', u'vote', u'block', u'spam']
[u'soldier', u'kill', u'blast', u'north', u'baghdad']
[u'vail', u'leav', u'seal', u'trade', u'deal']
[u'nistelrooy', u'fire', u'unit']
[u'walton', u'impress', u'selector', u'geelong', u'triathlon']
[u'woman', u'serious', u'injur', u'accid']
[u'woodward', u'defend', u'mitchel']
[u'world', u'final', u'point', u'point']
[u'dead', u'miss', u'china', u'blast']
[u'abbott', u'woolworth', u'sell', u'prescript']
[u'aborigin', u'heritag', u'preserv', u'grant']
[u'debat', u'suburb']
[u'pass', u'industri', u'manslaught', u'law']
[u'agenc', u'help', u'indigen', u'communiti']
[u'ambul', u'delay', u'fear', u'spark', u'staff', u'boost']
[u'sharehold', u'anger']
[u'sharehold', u'vote', u'stanwel', u'project']
[u'athlet', u'chief', u'tighten', u'dope', u'rule']
[u'audit', u'rais', u'brothel', u'legal', u'question']
[u'aussi', u'daw', u'romp', u'victori', u'taiwan']
[u'aussi', u'test', u'davi', u'grass']
[u'australian', u'hold', u'iraq', u'wrong', u'place']
[u'australian', u'free', u'iraq']
[u'tackl', u'indigen', u'live', u'condit']
[u'beckham', u'strike', u'help', u'real']
[u'brit', u'need', u'adopt', u'win', u'attitud', u'morley']
[u'break', u'hill', u'clean', u'tidi', u'town', u'award']
[u'bulk', u'rat', u'rise', u'packag', u'abbott']
[u'bumper', u'lavend', u'crop', u'expect']
[u'bunburi', u'back', u'aust', u'free', u'trade', u'plan']
[u'burma', u'releas', u'opposit', u'figur']
[u'airport', u'secur', u'law', u'upgrad']
[u'mandatori', u'light', u'life', u'jacket']
[u'truck', u'redesign']
[u'consolid', u'tourism', u'effort']
[u'care', u'australia', u'quit', u'iraq']
[u'cattl', u'graze', u'ban', u'part', u'victoria']
[u'chang', u'help', u'wolv', u'perth']
[u'chang', u'guard', u'nation', u'trust']
[u'cherri', u'grower', u'hail', u'vertic', u'hail']
[u'civil', u'action', u'speaker', u'throw']
[u'clark', u'appeal', u'hear', u'warrnambool']
[u'cleaner', u'face', u'jail', u'steal', u'cold']
[u'committe', u'tell', u'cost', u'shift', u'cost', u'taxpay']
[u'communiti', u'group', u'urg', u'open', u'free', u'trade', u'debat']
[u'concern', u'power', u'station']
[u'confer', u'clear', u'pollut', u'manag']
[u'council', u'approv', u'wetland', u'restor']
[u'council', u'consid', u'island', u'bridg', u'option']
[u'croatian', u'nationalist', u'claim', u'elect', u'victori']
[u'croatian', u'pois', u'nation', u'poll']
[u'dawson', u'schoolboy', u'dummi', u'crucial', u'kick']
[u'deficit', u'prompt', u'council', u'budgetari', u'chang']
[u'democraci', u'parti', u'hong', u'kong']
[u'democrat', u'claim', u'uniti']
[u'drought', u'take', u'toll', u'region', u'prosper']
[u'duran', u'duran', u'land', u'brit', u'lifetim', u'award']
[u'earli', u'start', u'gift', u'buy', u'spree', u'herald', u'bumper']
[u'edelsten', u'appeal', u'medic', u'tribun']
[u'edgi', u'aussi', u'davi', u'countdown']
[u'charg', u'yarra', u'murder']
[u'electr', u'fault', u'blame', u'build']
[u'abandon', u'talk', u'time', u'warner']
[u'england', u'fli', u'home', u'scoop', u'rugbi', u'award']
[u'england', u'prepar', u'hero', u'welcom', u'world']
[u'england', u'take', u'world', u'home']
[u'exercis', u'test', u'victoria', u'emerg', u'servic']
[u'famili', u'court', u'overstretch', u'institut']
[u'farmer', u'welcom', u'soak', u'rain']
[u'govt', u'urg', u'rethink', u'drought', u'applic']
[u'firm', u'court', u'recov', u'sport', u'club', u'donat']
[u'council', u'employe', u'mayor']
[u'primelif', u'boss', u'hit', u'board']
[u'franc', u'learn', u'england', u'success']
[u'fund', u'drought', u'halt', u'epilepsi', u'project']
[u'fund', u'boost', u'drought', u'coordin']
[u'garden', u'check', u'plant', u'pest']
[u'pipelin', u'bomb', u'iraq']
[u'georgian', u'presid', u'resign']
[u'georgian', u'hail', u'peopl', u'revolut']
[u'gold', u'industri', u'urg', u'boost', u'explor']
[u'good', u'soak', u'illawarra']
[u'govt', u'lash', u'return', u'idea']
[u'govt', u'urg', u'address', u'region', u'popul', u'fall']
[u'govt', u'review']
[u'govt', u'space', u'control']
[u'govt', u'urg', u'boost', u'polic', u'fund']
[u'grind', u'zero', u'train', u'make', u'emot', u'trip']
[u'gunner', u'face', u'trial', u'siro']
[u'heal', u'play', u'greek', u'leagu']
[u'health', u'fear', u'australian', u'indonesian', u'prison']
[u'hepburn', u'spring', u'landmark', u'rebuild']
[u'hib', u'leav', u'brokenheart', u'goal', u'seal', u'derbi']
[u'put', u'policeman', u'hospit']
[u'hop', u'tour', u'help', u'hous', u'shortag']
[u'hous', u'road', u'accid', u'claim', u'live']
[u'hous', u'crisi', u'hurt', u'struggl', u'famili']
[u'howard', u'lament', u'fall', u'parti', u'membership']
[u'immun', u'propos', u'label', u'danger']
[u'independ', u'unconvinc', u'educ', u'plan']
[u'indian', u'board', u'call', u'meet', u'briberi', u'alleg']
[u'india', u'cash', u'play', u'cricket', u'saga', u'snowbal']
[u'industri', u'disput', u'threaten', u'power', u'suppli']
[u'industri', u'urg', u'heed', u'catamaran', u'crash', u'report']
[u'iran', u'base', u'qaeda', u'member', u'order', u'saudi', u'attack']
[u'israel', u'free', u'jordanian', u'prison']
[u'jackson', u'innoc', u'taylor']
[u'japanes', u'tourist', u'boost', u'local', u'economi']
[u'jindabyn', u'land', u'releas', u'cater', u'futur', u'growth']
[u'job', u'safe', u'effici', u'push']
[u'kean', u'winner', u'boost', u'spur', u'campaign']
[u'kingfish', u'loss', u'risk']
[u'knife', u'bandit', u'hold', u'gold', u'coast', u'store']
[u'landlord', u'requir', u'limit', u'lead', u'exposur']
[u'lehmann', u'test', u'hope']
[u'loxton', u'waikeri', u'mayor', u'await']
[u'mallon', u'win', u'sorenstam', u'bogey', u'final', u'hole']
[u'arrest', u'iraq', u'want', u'secreci']
[u'dead', u'fall', u'fuji']
[u'rescu', u'fall']
[u'man', u'year', u'fast', u'baffl', u'doctor']
[u'mauresmo', u'power', u'franc', u'titl']
[u'miner', u'angri', u'worker', u'death', u'decis']
[u'minist', u'clarifi', u'wind', u'farm', u'guidelin']
[u'minist', u'hamper', u'teacher', u'disput', u'barnett']
[u'miss', u'woman', u'surviv', u'croc', u'attack']
[u'tourist', u'roma', u'region']
[u'moscow', u'hostel', u'blaze', u'kill']
[u'air', u'home', u'buy', u'discount', u'concern']
[u'consid', u'accid', u'tow', u'plan']
[u'alga', u'threaten', u'great', u'barrier', u'reef']
[u'deal', u'make', u'work', u'franc', u'easier']
[u'power', u'line']
[u'research', u'centr']
[u'tourism', u'manag', u'break', u'hill']
[u'date', u'georgia', u'poll']
[u'strike', u'traffic', u'chang']
[u'face', u'court', u'woman', u'death']
[u'minist', u'criticis', u'medicar', u'packag']
[u'oneil', u'hop', u'rugbi', u'number']
[u'pacif', u'polic', u'leader', u'meet', u'brisban']
[u'paedophil', u'return', u'prison']
[u'pair', u'court', u'poki', u'theft']
[u'pakistan', u'announc', u'kashmir', u'ceas']
[u'pakistan', u'coach', u'miandad', u'eye', u'clean', u'sweep']
[u'sell', u'busi']
[u'platform', u'tasmanian', u'forest', u'clash']
[u'polic', u'heroin', u'haul', u'melbourn']
[u'polic', u'probe', u'alic', u'road', u'death']
[u'polic', u'probe', u'bendigo', u'croc', u'theft']
[u'polic', u'seek', u'english', u'soccer', u'player']
[u'port', u'steven', u'bind', u'blue']
[u'probe', u'continu', u'mildura', u'school']
[u'produc', u'threaten', u'anim', u'protest']
[u'gain', u'major', u'sponsor']
[u'rain', u'bring', u'crop', u'damag', u'fear']
[u'rainfal', u'jeopardis', u'vic', u'grain', u'harvest']
[u'ralli', u'highlight', u'medicar', u'concern']
[u'recal', u'issu', u'vitamin', u'pill']
[u'region', u'plan', u'pipelin']
[u'report', u'give', u'high', u'mark', u'shellharbour', u'shoalhaven']
[u'costello', u'name', u'world', u'vision', u'chief']
[u'riverland', u'health', u'extra', u'fund']
[u'roma', u'pressur', u'lazio']
[u'ronaldson', u'rekindl', u'polit', u'career']
[u'rsls', u'memori', u'dedic']
[u'rule', u'licens', u'recreat', u'fish']
[u'schooli', u'blame', u'gold', u'coast', u'arrest']
[u'school', u'open', u'despit', u'weekend', u'blaze']
[u'search', u'bodi', u'renew']
[u'senat', u'vote', u'migrat', u'chang']
[u'senat', u'criticis', u'govt', u'health', u'servic']
[u'servic', u'hold', u'turkey', u'blast', u'victim']
[u'sesam', u'street', u'pois', u'cambodian', u'debut']
[u'shadow', u'lover', u'chase', u'total']
[u'share', u'market', u'remain', u'steadi']
[u'sharon', u'consid', u'peac', u'process']
[u'shire', u'hop', u'save', u'elect', u'referendum', u'cost']
[u'sidelin', u'atsic', u'chief', u'appeal', u'convict']
[u'hospit']
[u'solomon', u'vote']
[u'south', u'west', u'rail', u'link', u'talk', u'track']
[u'lanka', u'take', u'confid', u'rain', u'ruin', u'seri']
[u'stakehold', u'abl', u'speak', u'bioregion', u'review']
[u'state', u'polic', u'airport']
[u'storm', u'bring', u'rain', u'blackout', u'central']
[u'storm', u'toll', u'riverina', u'crop']
[u'studi', u'tour', u'offer', u'meningococc', u'strategi']
[u'styx', u'protest', u'tree']
[u'sudan', u'newspap', u'resum', u'circul']
[u'sunshin', u'coast', u'schooli', u'behav']
[u'sydney', u'water', u'boss', u'deni', u'conflict']
[u'sylvia', u'select', u'melbourn']
[u'taxi', u'raid', u'airport']
[u'teen', u'get', u'detent', u'offenc']
[u'telstra', u'detail', u'share', u'buyback', u'term']
[u'kill', u'indonesian', u'flood']
[u'tiger', u'surviv', u'nerv', u'jangl', u'moment', u'sink']
[u'late', u'talk', u'say', u'georgian', u'opposit']
[u'tooni', u'blair', u'join', u'simpson']
[u'tour', u'industri', u'happi', u'white', u'paper', u'plan']
[u'trade', u'visit', u'consid', u'success']
[u'triathlon', u'champ', u'set', u'sight', u'world', u'comp']
[u'trio', u'face', u'court', u'drug', u'charg']
[u'soldier', u'shoot', u'dead', u'mosul']
[u'union', u'discuss', u'suspend', u'worker']
[u'helicopt', u'go', u'afghanistan']
[u'intern', u'share', u'presid']
[u'readi', u'assist', u'georgia']
[u'remov', u'illeg', u'export', u'break']
[u'vendi', u'back', u'ballarat', u'report']
[u'victoria', u'wallabi', u'genom']
[u'host', u'anti', u'game']
[u'water', u'trust', u'help', u'region', u'victoria']
[u'weekend', u'shoot', u'basketbal', u'side']
[u'week', u'rural', u'health', u'spotlight']
[u'western', u'town', u'tidi', u'effort']
[u'face', u'huge', u'loss', u'mine', u'delay']
[u'wolv', u'shock', u'glori']
[u'work', u'parti', u'meet', u'sydney', u'canberra', u'rail']
[u'year', u'sit', u'focus', u'health', u'educ']
[u'zimbabw', u'level', u'seri', u'windi', u'bat', u'flop']
[u'refus', u'australia', u'parti', u'fund']
[u'adelaid', u'polic', u'investig', u'road', u'rage', u'incid']
[u'prepar', u'rugbi', u'onslaught']
[u'age', u'care', u'worker', u'walk']
[u'albani', u'woman', u'honour', u'mental', u'health', u'effort']
[u'albino', u'gorilla', u'snowflak', u'die', u'barcelona']
[u'alburi', u'council', u'probe', u'staff', u'blow']
[u'back', u'north', u'medic', u'board', u'plan']
[u'step', u'campaign', u'pressur', u'govt']
[u'sharehold', u'approv', u'stanwel', u'restart']
[u'anderson', u'defend', u'aviat', u'law']
[u'ansett', u'worker', u'hope', u'get']
[u'antiqu', u'collector', u'swap', u'urn', u'report']
[u'arab', u'station', u'deni', u'incit', u'violenc']
[u'australian', u'urg', u'support', u'white', u'ribbon']
[u'bethungra', u'close', u'monitor']
[u'blair', u'chirac', u'mend', u'break', u'tie']
[u'blaze', u'raze', u'moscow', u'student', u'dorm']
[u'bond', u'scan', u'suffer', u'pain']
[u'briton', u'get', u'year', u'thai', u'child', u'abus']
[u'bush', u'sign', u'troop', u'rise']
[u'buyer', u'pirat', u'good', u'studi']
[u'campaign', u'encourag', u'test']
[u'care', u'review', u'baghdad', u'secur']
[u'carlo', u'real', u'figo', u'uncertain']
[u'chamber', u'name', u'pari', u'steroid', u'user']
[u'charlevill', u'plan', u'outback', u'colleg']
[u'chicago', u'bull', u'coach', u'cartwright']
[u'childcar', u'worker', u'rise']
[u'chines', u'polic', u'probe', u'multipl', u'murder', u'japan']
[u'christian', u'send', u'chines', u'labour', u'camp', u'report']
[u'clark', u'lawyer', u'accus', u'publican', u'lie']
[u'club', u'bowl', u'council', u'leas', u'decis']
[u'cochlear', u'name']
[u'consum', u'confid', u'caus', u'market', u'surg']
[u'council', u'push', u'junction', u'black', u'spot']
[u'council', u'consid', u'money', u'save', u'idea']
[u'councillor', u'disagre', u'dump', u'site']
[u'council', u'pleas', u'cost', u'shift', u'report', u'find']
[u'council', u'debat', u'keep', u'reserv']
[u'council', u'urg', u'help', u'fast', u'rail', u'plan']
[u'countri', u'desper', u'doctor']
[u'countri', u'singer', u'glen', u'campbel', u'arrest']
[u'court', u'allow', u'ansett', u'settlement']
[u'court', u'appeal', u'order', u'trial']
[u'miss', u'tiger', u'select']
[u'crean', u'pull', u'frontbench', u'line']
[u'csiro', u'optimist', u'methan', u'growth', u'steadi']
[u'darwin', u'restaur', u'shut']
[u'derelict', u'freighter', u'futur', u'know', u'soon']
[u'domest', u'violenc', u'action', u'plan', u'near']
[u'doubt', u'cast', u'cattl', u'graze']
[u'dredg', u'owner', u'unawar', u'salvag', u'plan', u'deadlin']
[u'dunde', u'administr']
[u'round', u'bend', u'byron', u'sewerag', u'crisi']
[u'england', u'victori', u'parad', u'delay']
[u'famili', u'rememb', u'victim', u'militari', u'accid']
[u'farmer', u'urg', u'caution', u'rate', u'rise']
[u'increas', u'visit', u'nation', u'park']
[u'femal', u'chief', u'justic', u'name']
[u'land', u'rout', u'build', u'pole']
[u'forum', u'focus', u'attent', u'indigen', u'hous']
[u'french', u'perous', u'remain', u'solomon']
[u'fund', u'probe', u'spark', u'inter', u'govt', u'agreement']
[u'fund', u'help', u'whale', u'world', u'promot', u'theatr']
[u'gather', u'aim', u'boost', u'preschool', u'particip']
[u'georgia', u'urgent']
[u'govt', u'condemn', u'excis']
[u'govt', u'consid', u'option', u'migrat', u'zone']
[u'govt', u'offer', u'help', u'pine', u'manufactur']
[u'govt', u'outlin', u'asio', u'chang']
[u'grazier', u'want', u'earli', u'declar']
[u'group', u'battl', u'wind', u'farm']
[u'group', u'urg', u'embrac', u'desert', u'knowledg']
[u'gunnedah', u'polic', u'station', u'close', u'revamp']
[u'hail', u'rain', u'close', u'runway']
[u'hanson', u'futur', u'nation', u'unclear']
[u'harvey', u'say', u'area', u'health', u'tardi', u'respond']
[u'hick', u'habib', u'allow', u'speak', u'famili']
[u'hick', u'habib', u'lawyer']
[u'homeless', u'agenda', u'hous', u'week']
[u'hope', u'crash', u'probe', u'spark', u'maritim', u'safeti', u'boost']
[u'howard', u'crean', u'tribut', u'wallabi']
[u'hussain', u'predict', u'rough', u'time', u'ahead']
[u'indian', u'bushrang']
[u'india', u'offer', u'reciproc', u'ceas']
[u'india', u'pakistan', u'implement', u'ceasefir']
[u'india', u'struggl', u'bushrang']
[u'indigen', u'languag', u'book', u'cultur', u'aliv']
[u'indigen', u'leader', u'look', u'futur']
[u'in', u'white', u'flatten', u'indian', u'bat', u'line']
[u'institut', u'join', u'forc', u'desert', u'research']
[u'iraqi', u'council', u'submit', u'timet']
[u'iraqi', u'ruler', u'arab', u'satellit', u'station']
[u'jackson', u'say', u'abus', u'charg']
[u'judg', u'hear', u'zimbabw', u'daili', u'news', u'case', u'probe']
[u'juri', u'consid', u'rape', u'verdict']
[u'juri', u'discharg', u'murder', u'trial']
[u'juri', u'recommend', u'death', u'sniper']
[u'kale', u'challeng', u'india']
[u'keown', u'wiltord', u'arsenal']
[u'legend', u'mine', u'develop', u'gold', u'plan']
[u'lehmann', u'look', u'comeback', u'bull']
[u'lengthi', u'surgeri', u'separ', u'conjoin', u'twin', u'begin']
[u'leski', u'inquest', u'hear', u'confess', u'claim']
[u'liverpool', u'lose', u'finnan', u'month']
[u'local', u'govern', u'push', u'fund', u'reform']
[u'local', u'govt', u'group', u'welcom', u'cost', u'shift', u'report']
[u'lockerbi', u'bomber', u'get', u'year']
[u'mackay', u'council', u'hop', u'better', u'fund', u'deal']
[u'bash', u'busi', u'failur', u'court', u'tell']
[u'charg', u'face', u'trial']
[u'face', u'trial', u'tripl', u'fatal', u'crash']
[u'want', u'connect', u'death']
[u'matern', u'group', u'speak', u'obstetr', u'woe']
[u'mayor', u'pregnanc', u'slur']
[u'mayor', u'worri', u'fenc', u'fund']
[u'mayor', u'want', u'earli', u'ethanol', u'decis']
[u'meet', u'schedul', u'rail', u'rout']
[u'meet', u'wast', u'dump', u'fear']
[u'mobil', u'phone', u'network', u'outag', u'affect']
[u'report', u'kingfish', u'escap']
[u'mother', u'jail', u'decept', u'offenc']
[u'mourn', u'retir']
[u'mubarak', u'see', u'public', u'time', u'health']
[u'murder', u'trial', u'hear', u'evid']
[u'nasa', u'face', u'huge', u'shuttl', u'disast']
[u'nationwid', u'search', u'abduct', u'girl']
[u'coal', u'seam', u'methan', u'contract']
[u'charg', u'turkey', u'blast']
[u'north', u'queensland', u'feel', u'heat']
[u'norway', u'bomb', u'proof', u'heavi', u'road']
[u'state', u'govern', u'reject', u'breakwat', u'propos']
[u'examin', u'plan', u'allow', u'croc', u'hunt']
[u'parliament', u'invad', u'appeal', u'convict']
[u'shadow', u'back', u'drop', u'male', u'consent']
[u'compani', u'reject', u'ingredi']
[u'review', u'relationship', u'tonga']
[u'olymp', u'shooter', u'diamond', u'seek', u'earlier', u'hear']
[u'oneil', u'brace', u'biggest', u'celtic', u'game']
[u'opposit', u'criticis', u'attack', u'care', u'australia']
[u'perth', u'train', u'driver', u'stop', u'work', u'safeti']
[u'philippin', u'ship', u'sink', u'miss']
[u'lash', u'labor', u'migrat', u'zone']
[u'urg', u'defend', u'map', u'centr', u'job']
[u'forecast', u'strong', u'econom', u'growth']
[u'concern', u'upcom', u'elect']
[u'polic', u'accept', u'report', u'death', u'teen']
[u'polic', u'deter', u'schooli', u'troublemak']
[u'polic', u'hard', u'schooli', u'line', u'work']
[u'polic', u'warn', u'drink', u'spiker']
[u'pont', u'tiger']
[u'port', u'creat', u'cargo', u'handl', u'record']
[u'prison', u'refus', u'speak', u'leski', u'inquest']
[u'probe', u'order', u'student', u'accommod']
[u'problem', u'sprout', u'chapman', u'valley', u'crop']
[u'protest', u'question', u'kiribati', u'taiwan', u'tie']
[u'publican', u'clark', u'case', u'deni', u'racist', u'polic']
[u'public', u'transport', u'fare', u'rise']
[u'public', u'urg', u'comment', u'crop']
[u'oppn', u'promis', u'broadwat', u'dredg']
[u'queen', u'gag', u'fake', u'footman', u'forev']
[u'quinn', u'seek', u'stop', u'beach', u'sand', u'pump']
[u'radcliff', u'suffer', u'rare', u'defeat']
[u'radiotherapi', u'servic', u'dubbo', u'campaign']
[u'rain', u'benefit', u'hunter', u'water', u'storag']
[u'rain', u'lift', u'restrict']
[u'red', u'lose', u'tune']
[u'region', u'report', u'encourag', u'bendigo']
[u'report', u'highlight', u'fall', u'incom']
[u'report', u'highlight', u'gippsland', u'migrat', u'popul']
[u'report', u'highlight', u'lower', u'workforc', u'figur']
[u'research', u'test', u'termit', u'proof', u'option']
[u'reynold', u'win', u'creditor', u'meet', u'today']
[u'road', u'mark', u'unsaf', u'claim', u'ract']
[u'roqu', u'junior', u'blow', u'leed']
[u'guarante', u'job', u'nurs']
[u'saha', u'doubl', u'put', u'fulham']
[u'santa', u'sidekick', u'attempt', u'holland', u'hold']
[u'refus', u'murder', u'parol']
[u'scheme', u'help', u'prison', u'rejoin', u'societi']
[u'school', u'contract', u'ultimatum']
[u'scientist', u'spell', u'land', u'clear', u'danger']
[u'scud', u'confid', u'grass', u'court', u'play', u'quick']
[u'senat', u'committe', u'review', u'medicar', u'packag']
[u'senat', u'vote', u'medicar', u'probe']
[u'senior', u'georgian', u'minist', u'resign']
[u'seven', u'sentenc', u'bali', u'bomb', u'term']
[u'share', u'market', u'push', u'higher']
[u'sheep', u'export', u'probe', u'threaten', u'kuwaiti', u'market']
[u'showdown', u'loom', u'treetop', u'styx', u'protest']
[u'hospit']
[u'skin', u'miss', u'phelp', u'thorp', u'clash']
[u'small', u'busi', u'minist', u'visit', u'wagga']
[u'small', u'busi', u'upbeat', u'economi', u'survey']
[u'solomon', u'pacif', u'journal', u'award']
[u'stamp', u'duti', u'chang', u'minim', u'opposit']
[u'struggl', u'predict', u'lib', u'senat', u'ticket']
[u'studi', u'consid', u'park', u'meter', u'pluse']
[u'styx', u'valley', u'protest', u'end', u'plan']
[u'sunfish', u'say', u'zone', u'stunt']
[u'support', u'council', u'beach', u'protect', u'pledg']
[u'sydney', u'confer', u'address', u'child', u'abus']
[u'busi', u'confid', u'set', u'nation', u'lead']
[u'plan', u'tighter', u'drug', u'law']
[u'treasur', u'seek', u'health', u'advic', u'polit']
[u'telecentr', u'closur', u'see', u'reloc']
[u'tenanc', u'consum', u'advic', u'centr', u'close']
[u'thai', u'court', u'jail', u'brit', u'paedophil']
[u'thousand', u'welcom', u'england', u'home']
[u'iraqi', u'kill', u'lay', u'bomb']
[u'total', u'declar', u'west']
[u'tougher', u'shark', u'protect', u'unnecessari', u'reserach']
[u'tour', u'team', u'finalis']
[u'turkey', u'sampl', u'chill', u'vibe', u'face']
[u'rebel', u'attack', u'indian', u'kashmir']
[u'typhoon', u'hit', u'remot', u'pacif', u'atol']
[u'unit', u'need', u'point', u'greec']
[u'europ', u'agre', u'iran', u'nuclear', u'resolut']
[u'give', u'nuke', u'pacif', u'island', u'ship']
[u'impos', u'duti', u'chines', u'televis']
[u'leav', u'iraq', u'longer', u'need']
[u'vail', u'free', u'trade', u'talk']
[u'govt', u'transport', u'fare', u'rise']
[u'oppn', u'rais', u'higher', u'transport', u'concern']
[u'victori', u'england', u'home', u'soil']
[u'violenc', u'sport', u'caus', u'facial', u'injuri']
[u'electr', u'disput', u'resolv']
[u'offer', u'higher', u'public', u'servic', u'offer']
[u'polic', u'condemn', u'aborigin', u'death']
[u'water', u'author', u'readi', u'pollut', u'problem']
[u'water', u'plan', u'good', u'bacchus', u'marsh', u'vegi', u'grower']
[u'west', u'brom', u'striker', u'hugh', u'arrest']
[u'west', u'play', u'career', u'bulldog']
[u'whale', u'dead', u'tasmanian', u'beach']
[u'wit', u'call', u'clark', u'appeal']
[u'worker', u'receiv', u'union', u'visit', u'propos', u'law']
[u'yamaha', u'team', u'manag', u'depart', u'rossi', u'move']
[u'young', u'soccer', u'player', u'hone', u'skill']
[u'youth', u'help', u'green', u'oakey']
[u'household', u'recycl']
[u'probe', u'sydney', u'radio', u'deal']
[u'abbott', u'pounc', u'labor', u'leader', u'talk']
[u'accc', u'skittl', u'coke', u'berri']
[u'debat', u'tougher', u'sentenc']
[u'opposit', u'seek', u'trial', u'levi']
[u'reject', u'australia', u'celebr']
[u'agenc', u'tackl', u'mullewa', u'youth', u'woe']
[u'aid', u'death', u'infect', u'high']
[u'airport', u'secur', u'upgrad', u'delay', u'passeng']
[u'space', u'chang', u'fear', u'air']
[u'good', u'thing', u'come']
[u'ord', u'edg', u'ahead']
[u'illustri', u'career']
[u'arsenal', u'storm', u'sensat', u'monaco', u'qualifi']
[u'artest', u'power', u'pacer', u'sixth', u'straight']
[u'attempt', u'drug', u'deal', u'get', u'suspend', u'sentenc']
[u'aussi', u'driver', u'follow', u'schumach', u'footstep']
[u'australia', u'middl', u'power', u'downer', u'say']
[u'australian', u'face', u'death', u'penalti', u'singapor']
[u'australian', u'donat', u'medic', u'book', u'iraq']
[u'aust', u'renew', u'turkey', u'travel', u'warn']
[u'author', u'probe', u'opal', u'blaze']
[u'bailey', u'back', u'anderson', u'cronulla']
[u'bailey', u'back', u'anderson']
[u'basketbal', u'snap', u'croc', u'safeti']
[u'bigpond', u'troubl', u'fix']
[u'boat', u'accid', u'kingfish', u'escap']
[u'build', u'approv', u'slow', u'goondiwindi']
[u'gympi', u'medic', u'specialist']
[u'camden', u'ripper', u'get', u'life', u'london', u'murder']
[u'canberra', u'newspap', u'face', u'defam', u'claim']
[u'cane', u'farmer', u'meet', u'sugar', u'crisi']
[u'carr', u'weigh', u'migrat', u'zone', u'debat']
[u'chamber', u'catch', u'world', u'championship']
[u'chelsea', u'better', u'milan', u'team', u'say']
[u'china', u'plan', u'reopen']
[u'china', u'shut', u'kiribati', u'space', u'base', u'report']
[u'church', u'wed', u'minor']
[u'claim', u'wag', u'impact', u'build', u'industri']
[u'coca', u'cola', u'contest', u'accc', u'decis']
[u'cole', u'boss', u'grant', u'rise']
[u'compani', u'upbeat', u'davi', u'grass']
[u'compulsori', u'school', u'fee', u'continu']
[u'construct', u'show', u'modest', u'growth']
[u'corrupt', u'claim', u'refer', u'watchdog']
[u'council', u'award', u'indigen', u'job', u'effort']
[u'council', u'boost', u'field', u'day', u'fund', u'guarante']
[u'council', u'flight', u'decis', u'winner']
[u'council', u'reform', u'law', u'draw', u'critic']
[u'council', u'seek', u'wast', u'plant', u'chang']
[u'council', u'trial', u'televis', u'meet']
[u'court', u'rule', u'logi', u'packer', u'night']
[u'deportivo', u'ditch', u'unlucki', u'shirt']
[u'deschamp', u'hail', u'monaco', u'except', u'achiev']
[u'develop', u'problem', u'kid', u'studi']
[u'downer', u'defend', u'hick', u'habib', u'process']
[u'drought', u'hurt', u'grain', u'compani', u'profit']
[u'drought', u'shear', u'sheep', u'number']
[u'drug', u'smoke', u'worker', u'win', u'appeal', u'high', u'court']
[u'drug', u'user', u'share', u'needl']
[u'dept', u'consid', u'west', u'tamworth', u'school', u'option']
[u'england', u'lose', u'beer', u'battl', u'aussi']
[u'maintain', u'anti', u'log']
[u'expedit', u'soak', u'spong', u'inform']
[u'expert', u'studi', u'bite', u'mark', u'beach', u'whale']
[u'expert', u'discuss', u'youth', u'alcohol', u'woe']
[u'extra', u'fund', u'need', u'coal', u'tourism', u'plan']
[u'fail', u'club', u'properti', u'vest']
[u'famili', u'disappoint', u'coron', u'find']
[u'famili', u'australia', u'home']
[u'feder', u'like', u'lose', u'sight', u'home']
[u'fiji', u'polic', u'defend', u'muslim', u'cleric', u'expuls']
[u'fingerprint', u'year', u'solv', u'crime']
[u'meningococc', u'case']
[u'onetel', u'boss', u'appeal', u'fail']
[u'freeman', u'rule', u'run', u'return']
[u'french', u'plan', u'world', u'week']
[u'gather', u'consid', u'museum', u'plan']
[u'gillespi', u'confid', u'return', u'australian']
[u'govt', u'cast', u'illeg', u'fish']
[u'govt', u'expand', u'health', u'safeti']
[u'govt', u'push', u'deal', u'medicar']
[u'govt', u'stand', u'plan', u'abolish', u'student', u'loan']
[u'govt', u'talk', u'overshadow', u'medicar', u'inquiri']
[u'graincorp', u'record', u'loss']
[u'group', u'sink', u'teeth', u'fluorid', u'debat']
[u'hewitt', u'readi', u'spanish', u'challeng']
[u'high', u'hop', u'break', u'hill', u'explor']
[u'hodg', u'star', u'bushrang', u'tame', u'india']
[u'hooper', u'sign', u'lancashir']
[u'hous', u'plan', u'go']
[u'hundr', u'oppos', u'wast', u'dump', u'plan']
[u'hunt', u'abduct', u'toddler']
[u'indonesian', u'fishermen', u'catch', u'dead', u'dolphin']
[u'insurg', u'target', u'iraqi', u'align']
[u'internet', u'link', u'kid', u'sexual', u'aggress']
[u'italian', u'consul', u'general', u'tour', u'gippsland']
[u'jackson', u'snub', u'school']
[u'januari', u'decis', u'expect', u'footbal', u'club']
[u'juri', u'consid', u'verdict', u'wife', u'murder', u'trial']
[u'kahn', u'unpopular', u'german', u'sportsmen', u'survey']
[u'landlock', u'swiss', u'pick', u'spanish', u'america', u'venu']
[u'lawyer', u'differ', u'guantanamo', u'deal']
[u'leski', u'inquest', u'hear', u'claim']
[u'lion', u'post', u'profit']
[u'local', u'govt', u'group', u'urg', u'start', u'inland', u'rail', u'work']
[u'deni', u'murder', u'english', u'schoolgirl']
[u'manilla', u'seek', u'support', u'elector', u'chang']
[u'marin', u'park', u'group', u'talk', u'reef', u'rezon']
[u'martin', u'move', u'retain', u'feder', u'seat']
[u'meet', u'discuss', u'age', u'care', u'home', u'roster', u'concern']
[u'melbourn', u'win', u'budget', u'airlin', u'race']
[u'mental', u'health', u'servic', u'lack', u'report', u'find']
[u'mine', u'leas', u'transfer', u'get', u'green', u'light']
[u'mine', u'union', u'safeti', u'concern']
[u'user', u'inject', u'drug']
[u'mugab', u'invit', u'chogm', u'nigeria']
[u'murder', u'trial', u'juri', u'hear', u'bloodstain', u'evid']
[u'boss', u'collect', u'packag']
[u'nat', u'cast', u'doubt', u'fish', u'rule', u'fair']
[u'nat', u'toxic', u'wast', u'plan', u'lack']
[u'book', u'address', u'drought', u'polici']
[u'share', u'issu', u'gympi', u'gold']
[u'share', u'placement', u'gympi', u'gold']
[u'ireland', u'go', u'poll']
[u'formal', u'probe', u'wiluna', u'council', u'demis']
[u'cattleman', u'welcom', u'propos', u'hunt']
[u'boss', u'play', u'rugbi', u'threat']
[u'nrma', u'lose', u'uniform', u'staff']
[u'propos', u'drug', u'test', u'politician']
[u'lower', u'consent']
[u'nurs', u'vacanc', u'hard']
[u'oecd', u'tip', u'rate', u'rise']
[u'vaccin', u'access']
[u'olymp', u'shoot', u'champion', u'ban', u'dope']
[u'oneil', u'optimist', u'celtic', u'reach']
[u'paedophil', u'task', u'forc', u'begin', u'church', u'probe']
[u'phone', u'network', u'equip', u'failur']
[u'pilot', u'plead', u'guilti', u'reckless', u'conduct']
[u'pitcairn', u'island', u'hope', u'airstrip', u'lifelin']
[u'govt', u'lose', u'immun']
[u'tell', u'intern', u'agenc']
[u'welcom', u'australian', u'role']
[u'poet', u'come', u'think', u'your', u'hard']
[u'polic', u'communiti', u'help', u'lower', u'burglari', u'rate']
[u'polic', u'greater', u'power', u'battl', u'chrome']
[u'policeman', u'fear', u'clark', u'assault', u'court', u'tell']
[u'polic', u'oper', u'put', u'brake', u'truck', u'driver']
[u'polic', u'probe', u'rail', u'death']
[u'polic', u'evid', u'clark', u'appeal']
[u'polit', u'erupt', u'hobart', u'build', u'sale']
[u'pool', u'long', u'time', u'come']
[u'port', u'piri', u'hop', u'magnesium', u'smelter']
[u'premier', u'want', u'improv', u'schooli', u'parti']
[u'properti', u'gurus', u'compani', u'collaps']
[u'protest', u'state', u'forest', u'loggerhead']
[u'proud', u'wenger', u'salut', u'inspir', u'henri']
[u'public', u'region', u'health', u'fear']
[u'push', u'trial', u'enterpris', u'zone']
[u'crack', u'pierc', u'sniff']
[u'polic', u'stun', u'protest', u'woman']
[u'ract', u'drive', u'home', u'need', u'clear', u'road', u'mark']
[u'record', u'hobart']
[u'remark', u'spark', u'secur', u'scare']
[u'report', u'call', u'safer', u'rural', u'road']
[u'report', u'highlight', u'indigen', u'fish', u'woe']
[u'report', u'highlight', u'wimmera', u'malle', u'drought', u'impact']
[u'research', u'turn', u'camera', u'giant', u'crab']
[u'resid', u'duplex', u'ghetto', u'fear']
[u'resid', u'water', u'boil', u'alert']
[u'review', u'spark', u'develop', u'board', u'concern']
[u'reynold', u'win', u'group', u'liquid']
[u'deepen', u'manslaught', u'law']
[u'rudd', u'shrug', u'leadership', u'talk']
[u'rugbi', u'heavyweight', u'confirm', u'lightweight', u'drink']
[u'sar', u'test', u'japanes', u'hong', u'kong']
[u'school', u'budget', u'cover', u'asbesto', u'remov']
[u'school', u'deni', u'race', u'fight']
[u'schooli', u'behaviour', u'deterior']
[u'scientist', u'probe', u'whale', u'strand']
[u'sean', u'tale', u'iraq']
[u'self', u'belief', u'bradford', u'surviv', u'say']
[u'senat', u'oppos', u'plastic', u'levi']
[u'ship', u'owner', u'face', u'hefti', u'fine', u'strand', u'vessel']
[u'shire', u'excit', u'hilton', u'plan']
[u'shire', u'water', u'tough', u'restrict']
[u'silo', u'accid', u'prompt', u'bush', u'health', u'fund']
[u'korean', u'opposit', u'leader', u'start', u'hunger', u'strike']
[u'space', u'nation', u'radio', u'servic', u'illawarra']
[u'share', u'suspens', u'remain']
[u'spray', u'contracept', u'pill', u'trial']
[u'lanka', u'untest', u'fernando', u'england']
[u'stevedor', u'oper', u'wind', u'white']
[u'steven', u'glad', u'melbourn']
[u'storm', u'damag', u'wont', u'stop', u'crop', u'harvest']
[u'strong', u'warrnambool', u'migrat']
[u'studi', u'focus', u'coastal', u'water', u'qualiti']
[u'support', u'council', u'revenu', u'boost']
[u'surplus', u'millic', u'properti', u'sale']
[u'sydney', u'properti', u'market', u'plateaus']
[u'sydney', u'radio', u'enemi', u'team']
[u'talk', u'avert', u'transport', u'stoppag']
[u'defend', u'fund']
[u'consid', u'child', u'slap']
[u'task', u'forc', u'review', u'rottnest', u'manag']
[u'teenag', u'thank', u'support', u'fight', u'stay']
[u'taxpay', u'help', u'subsidis', u'gold', u'coast', u'schooli']
[u'teen', u'murder', u'charg', u'custodi']
[u'british', u'judg', u'condemn', u'guantanamo', u'detent']
[u'tougher', u'law', u'urg', u'properti', u'invest', u'sector']
[u'travel', u'expens', u'tabl', u'state', u'politician']
[u'trial', u'date', u'director']
[u'trial', u'boost', u'cairn', u'polic', u'power']
[u'minist', u'tri', u'speed', u'iraqi', u'power', u'transfer']
[u'union', u'enter', u'fray', u'senat', u'ticket']
[u'union', u'want', u'sydney', u'radio', u'deal', u'probe']
[u'nuclear', u'watchdog', u'caution', u'iran']
[u'consid', u'worldwid', u'troop', u'shift']
[u'economi']
[u'releas', u'muslim', u'guantanamo', u'chaplin']
[u'vice', u'chancellor', u'upbeat', u'educ', u'talk']
[u'govt', u'air', u'local', u'govt', u'fund', u'fear']
[u'polic', u'investig', u'doubl', u'shoot']
[u'victim', u'crime', u'associ', u'lose', u'fund']
[u'victoria', u'appoint', u'professor', u'review', u'canola']
[u'virgin', u'play', u'price', u'rival']
[u'vline', u'fare', u'rise', u'win', u'back']
[u'wagin', u'radio', u'station', u'lose', u'licenc']
[u'want', u'iraqi', u'leader', u'wife', u'captur']
[u'opposit', u'wari', u'pace', u'power', u'reform']
[u'plant', u'industri', u'strength', u'hemp']
[u'washington', u'trim', u'loan', u'guarante', u'israel']
[u'waugh', u'hail', u'time', u'great']
[u'waugh', u'hail', u'great']
[u'waugh', u'pull', u'stump']
[u'waugh', u'retir', u'tip', u'pont', u'successor']
[u'waugh', u'tip', u'pont']
[u'waugh', u'speak', u'play', u'futur']
[u'waugh', u'walk', u'pont', u'wait']
[u'weir', u'compani', u'reject', u'flood', u'fault', u'report']
[u'west', u'brom', u'hugh', u'charg', u'fatal', u'crash']
[u'world', u'oldest', u'food', u'store', u'discov', u'germani']
[u'yeppoon', u'woman', u'face', u'murder', u'trial']
[u'abbott', u'begin', u'talk', u'medicar', u'safeti']
[u'aborigin', u'activist', u'clarri', u'isaac', u'die']
[u'adopt', u'industri', u'death', u'law']
[u'bring', u'industri', u'manslaught', u'regim']
[u'parliament', u'move', u'year', u'term']
[u'adopt', u'amend', u'moot', u'law']
[u'age', u'care', u'home', u'worker', u'consid', u'strike']
[u'anglican', u'primat', u'criticis', u'downer']
[u'argentina', u'receiv', u'terror', u'attack', u'warn']
[u'aristocrat', u'name']
[u'athen', u'torch', u'relay', u'visit', u'record', u'nation']
[u'atsic', u'form', u'domest', u'violenc', u'action', u'plan']
[u'auckland', u'mackay', u'flight']
[u'aust', u'turkey', u'consul', u'close']
[u'bank', u'push', u'ord', u'lower']
[u'crop', u'risk', u'job', u'say', u'health']
[u'beach', u'group', u'move', u'closer', u'artifici', u'reef']
[u'beatti', u'demand', u'opposit', u'apolog', u'wake']
[u'beatti', u'unfaz', u'qanta', u'decis']
[u'beckham', u'notch', u'real', u'european', u'goal']
[u'bendigo', u'cancer', u'treatment', u'time', u'drop']
[u'polic', u'campaign', u'target', u'drink', u'driver']
[u'bloodi']
[u'britain', u'cut', u'asylum', u'applic', u'half']
[u'britain', u'newest', u'royal', u'name']
[u'british', u'firm', u'plan', u'human', u'stem', u'cell', u'trial', u'report']
[u'british', u'schoolgirl', u'murder', u'case', u'hear']
[u'bunburi', u'public', u'servant', u'picket']
[u'busi', u'group', u'happi', u'plant', u'oper', u'reopen']
[u'fund', u'boost', u'sustain', u'water']
[u'region', u'fish', u'agreement']
[u'champion', u'milan', u'lead', u'parad']
[u'china', u'woo', u'kiribati', u'ditch', u'taiwan', u'link']
[u'claim', u'christma', u'wind', u'wont', u'hinder', u'health']
[u'clark', u'appeal', u'hear', u'offic', u'give', u'warn']
[u'clone', u'legisl', u'introduc']
[u'compani', u'spend', u'quarter']
[u'concord', u'make', u'flight', u'birthplac']
[u'coral', u'harm', u'fertilis', u'scientist']
[u'councillor', u'question', u'high', u'rise', u'develop', u'plan']
[u'council', u'forest', u'privatis', u'assur']
[u'crean', u'give', u'ultimatum', u'jump', u'face', u'vote']
[u'crean', u'mull', u'futur']
[u'dalbi', u'council', u'back', u'ethanol', u'plan']
[u'diamond', u'stand', u'year']
[u'diver', u'search', u'victim', u'cyclon', u'traci']
[u'doctor', u'seek', u'women', u'test', u'orgasmatron']
[u'dont', u'steve', u'plead', u'indian', u'chariti', u'kid']
[u'doubt', u'emerg', u'singapor', u'death', u'penalti', u'promis']
[u'driver', u'charg', u'death', u'nation', u'leader']
[u'drought', u'shear', u'sheep', u'number']
[u'economist', u'call', u'revis', u'home', u'buyer']
[u'elder', u'contribut', u'economi', u'underestim']
[u'employ', u'urg', u'encourag', u'older', u'worker']
[u'english', u'seamer', u'kirtley', u'eye', u'test', u'place']
[u'exit', u'poll', u'put', u'hardlin', u'ahead', u'ireland']
[u'failur', u'secur', u'sport', u'complex', u'site', u'frustrat']
[u'fear', u'hold', u'miss', u'teenag']
[u'bait', u'safe', u'minist', u'say']
[u'firefight', u'craft', u'boost', u'fight', u'bushfir']
[u'flood', u'prompt', u'call', u'school', u'upgrad']
[u'request', u'delay', u'unreason', u'opposit']
[u'anglican', u'priest', u'jail', u'charg']
[u'iraqi', u'general', u'die', u'interrog']
[u'formula', u'return', u'unlik', u'villeneuv']
[u'futur', u'unclear', u'sheep', u'shipment']
[u'gillespi', u'test']
[u'gillespi', u'macgil', u'test']
[u'author', u'defend', u'appoint']
[u'protest', u'convict', u'trespass']
[u'away', u'watch']
[u'govt', u'announc', u'hornet', u'upgrad']
[u'govt', u'address', u'sydney', u'taxi', u'woe']
[u'govt', u'rais', u'properti', u'disput', u'council']
[u'great', u'britain', u'skipper', u'month']
[u'greenback', u'declin', u'spur', u'aussi', u'dollar']
[u'green', u'accus', u'govt', u'port', u'plan']
[u'group', u'hope', u'dispel', u'ignor', u'aid']
[u'hackett', u'like', u'miss', u'world', u'meet']
[u'hackett', u'okay', u'collaps']
[u'head', u'selector', u'confid', u'waugh', u'play', u'india']
[u'henri', u'ronaldo', u'zidan', u'fifa', u'player']
[u'hewitt', u'face', u'ferrero', u'davi', u'open']
[u'hillari', u'hint', u'white', u'hous', u'campaign']
[u'hodg', u'doubl', u'secur', u'draw']
[u'hong', u'kong', u'croc', u'elud', u'aussi', u'hunter']
[u'howard', u'warn', u'readmit', u'zimbabw']
[u'indonesia', u'arrest', u'papuan', u'separatist']
[u'isra', u'armi', u'say', u'kill', u'palestinian', u'unarm']
[u'israel', u'seiz', u'sing', u'saddam', u'osama', u'doll']
[u'israel', u'withdraw', u'resolut', u'year']
[u'japan', u'threaten', u'trade', u'sanction']
[u'judg', u'order', u'retrial', u'alleg', u'murder', u'threat', u'case']
[u'kingscliff', u'asset', u'face', u'rise', u'tide']
[u'klim', u'readi', u'intern', u'comeback']
[u'labor', u'confid', u'econom', u'figur']
[u'labor', u'dismiss', u'leadership', u'specul']
[u'labor', u'expect', u'cross', u'picket', u'line']
[u'keep', u'hop', u'aliv', u'adelaid']
[u'lawyer', u'argu', u'british', u'murder', u'suspect', u'extradit']
[u'laywer', u'say', u'hick', u'deal', u'stink']
[u'lethal', u'leisel', u'claim', u'queensland', u'accolad']
[u'london', u'victori', u'parad', u'england']
[u'manchest', u'citi', u'want', u'young', u'schmeichel', u'uefa']
[u'die', u'motorbik', u'accid', u'near', u'bruthen']
[u'give', u'suspend', u'jail', u'term', u'kill', u'threat']
[u'mayor', u'say', u'crime', u'plan', u'taint', u'mayfield']
[u'mcmahon', u'share', u'captainci', u'role', u'phoenix']
[u'media', u'muster', u'princ', u'harri']
[u'media', u'threaten', u'aceh', u'report']
[u'meet', u'discuss', u'countrylink', u'servic']
[u'meninga', u'face', u'assault', u'charg']
[u'middl', u'order', u'save', u'bull', u'adelaid']
[u'project', u'increas', u'indigen', u'workforc']
[u'minist', u'deni', u'claim', u'polic', u'wont', u'particip']
[u'minist', u'deni', u'claim', u'communiti', u'exclud']
[u'minist', u'rule', u'state', u'fund', u'rail', u'tunnel']
[u'minist', u'welcom', u'farmer', u'offer', u'captur', u'river']
[u'miss', u'sydney', u'mother', u'locat']
[u'mix', u'view', u'remain', u'plan', u'merg', u'north']
[u'kill', u'congo', u'ferri', u'disast']
[u'movi', u'star', u'presidenti', u'spook', u'philippin']
[u'lobbi', u'offic', u'region', u'zone']
[u'refut', u'local', u'govt', u'fund', u'fear']
[u'murder', u'hear', u'famili', u'read', u'victim', u'impact']
[u'mysteri', u'nois', u'space', u'station']
[u'nalbandian', u'confirm', u'australian', u'hardcourt']
[u'nato', u'launch', u'defenc', u'battalion']
[u'newcastl', u'aircraft', u'compani', u'radar']
[u'develop', u'corp', u'chief', u'seek', u'self']
[u'tamper', u'proof', u'passport', u'launch']
[u'nielsen', u'star', u'king', u'extend', u'streak']
[u'nigerian', u'base', u'email', u'swindl', u'suck', u'greedi']
[u'firearm', u'year', u'olymp', u'medallist', u'diamond']
[u'waugh', u'guarante', u'selector', u'confid']
[u'nrma', u'threaten', u'spill']
[u'north', u'coast', u'score', u'tourism', u'fund', u'boost']
[u'gorg', u'recreat', u'aquarium']
[u'toughen', u'murder', u'sentenc']
[u'nurs', u'home', u'staff', u'consid', u'strike', u'action']
[u'look', u'weaken', u'dollar']
[u'opposit', u'annual', u'literaci', u'test']
[u'outlaw', u'exhibit', u'open', u'canberra']
[u'parti', u'unit', u'fight', u'countrylink', u'servic']
[u'parti', u'drug', u'spread', u'australia', u'studi']
[u'free', u'trade', u'tabl', u'vail']
[u'pilot', u'warn', u'regul', u'reduc', u'safeti']
[u'pngs', u'deputi', u'prime', u'minist', u'sack']
[u'polic', u'expect', u'clark', u'help', u'court', u'hear']
[u'polic', u'investig', u'sight', u'miss', u'trucker']
[u'politician', u'tribut', u'broadcast', u'satchel']
[u'prison', u'escap', u'open', u'secur', u'centr']
[u'promin', u'lebanes', u'spiritu', u'leader', u'die']
[u'public', u'sector', u'strike', u'action', u'intensifi']
[u'public', u'servant', u'stage', u'kalgoorli', u'picket', u'line']
[u'public', u'servic', u'strike', u'crippl', u'region', u'servic']
[u'polic', u'probe', u'schooli', u'complaint']
[u'radio', u'deal', u'turn', u'definit', u'control']
[u'redback', u'roll']
[u'reef', u'rezon', u'plan', u'move', u'closer', u'realiti']
[u'region', u'doctor', u'shortag', u'worsen', u'report']
[u'relief', u'sexual', u'abus', u'victim', u'paedophil']
[u'remot', u'town', u'get', u'health', u'centr']
[u'report', u'highlight', u'need', u'help', u'small', u'busi']
[u'resid', u'effluent', u'plan', u'disapprov']
[u'retail', u'encourag', u'remov', u'ban', u'toy']
[u'rodeo', u'rider', u'head', u'toowoomba']
[u'comedi', u'award']
[u'ruddock', u'move', u'allow', u'longer', u'terrorist']
[u'ruddock', u'turn', u'heat', u'peopl', u'smuggler']
[u'saakashvili', u'get', u'clear', u'georgian', u'poll']
[u'commit', u'piri', u'smelter', u'project']
[u'govt', u'bite', u'public', u'dental', u'fund']
[u'plan', u'smoke', u'free', u'public', u'place']
[u'soldier', u'receiv', u'braveri', u'award']
[u'schooli', u'complaint', u'coast', u'polic', u'offic']
[u'scud', u'wear', u'favourit', u'pride']
[u'senior', u'figur', u'despair', u'leadership']
[u'servic', u'rememb', u'health', u'servic', u'staff']
[u'sharon', u'say', u'israel', u'cede', u'land']
[u'sheep', u'number', u'year']
[u'releas', u'hospit']
[u'korean', u'opposit', u'leader', u'accus', u'blackmail']
[u'south', u'coast', u'local', u'govern', u'boundari', u'chang']
[u'southcorp', u'fin', u'disclosur', u'irregular']
[u'south', u'east', u'member', u'join', u'catchment', u'group']
[u'pacif', u'polic', u'commit', u'drug', u'crackdown']
[u'spain', u'valencia', u'land', u'america']
[u'staff', u'suspend', u'strike', u'action', u'negoti']
[u'sticker', u'save', u'pear', u'squeez', u'test']
[u'strategi', u'aim', u'address', u'increas', u'region', u'youth']
[u'studi', u'show', u'pattern', u'ovarian', u'cancer', u'symptom']
[u'stun', u'arrest', u'protest']
[u'sweden', u'return', u'aborigin', u'remain']
[u'sydney', u'deni', u'peopl', u'smuggl', u'claim']
[u'taiwan', u'pass', u'referendum']
[u'tariff', u'cut', u'threaten', u'textil', u'industri', u'union']
[u'electr', u'bill', u'trump', u'mainland']
[u'ferri', u'oper']
[u'govt', u'air', u'meander', u'delay', u'concern']
[u'govt', u'consid', u'stamp', u'duti', u'relief']
[u'tasmanian', u'dupe', u'log', u'green']
[u'teenag', u'brazilian', u'striker', u'chelsea']
[u'telstra', u'close', u'tamworth', u'info', u'centr']
[u'pressur', u'waugh']
[u'palestinian', u'shoot', u'dead', u'gaza', u'strip']
[u'time', u'determin', u'airspac', u'chang', u'benefit']
[u'tough', u'time', u'home', u'buyer']
[u'tourist', u'follow', u'dinosaur', u'footstep']
[u'tram', u'driver', u'injur', u'rock', u'throw']
[u'truck', u'industri', u'spotlight']
[u'tuna', u'farm', u'compani', u'hope', u'resolv', u'licenc', u'talk']
[u'tweed', u'resid', u'fight', u'poker', u'machin']
[u'govt', u'asylum', u'seeker', u'crackdown']
[u'union', u'feel', u'prosecut', u'record', u'undermin', u'safeti']
[u'warn', u'aid', u'catastroph']
[u'arrest', u'saddam', u'deputi', u'famili']
[u'launch', u'mass', u'weapon', u'sweep', u'iraq']
[u'reinforc', u'iraq', u'forc']
[u'vettori', u'stay', u'home', u'kiwi', u'head', u'hammer']
[u'auditor', u'find', u'hospit', u'troubl']
[u'council', u'welcom', u'damn', u'rural', u'road', u'report']
[u'prison', u'complaint', u'jump']
[u'countri', u'taxi', u'industri', u'review']
[u'farmer', u'welcom', u'industri', u'hemp', u'crop', u'option']
[u'govt', u'fear', u'feder', u'polici', u'fuel', u'dairi']
[u'walkley', u'nod', u'take', u'gold']
[u'wallet', u'confirm', u'belong', u'miss']
[u'polic', u'minist', u'talk', u'crime', u'figur']
[u'warrior', u'hooker', u'latu', u'treat']
[u'waugh', u'name', u'australian', u'year']
[u'welsh', u'furi', u'aussi', u'critic']
[u'wessel', u'clear', u'alleg', u'racial', u'slur']
[u'western', u'tourism', u'campaign', u'target', u'true', u'travel']
[u'wheelhous', u'rule', u'young', u'socceroo', u'open']
[u'william', u'confid', u'australia', u'spot']
[u'world', u'champ', u'fern', u'visit', u'adelaid']
[u'world', u'biggest', u'outdoor', u'music', u'festiv', u'get', u'green']
[u'zimbabw', u'streak']
[u'secur', u'boost', u'embassi']
[u'ambros', u'set', u'pace']
[u'amend', u'sexual', u'assault', u'law', u'hasti', u'lawyer']
[u'angler', u'group', u'back', u'limit']
[u'antibiot', u'resist', u'bacteria', u'spark', u'hospit', u'fear']
[u'asic', u'ask', u'probe', u'nrma', u'vote']
[u'aspirin', u'effect', u'heart', u'diseas', u'prevent']
[u'atsic', u'review', u'call', u'smaller', u'bodi']
[u'auction', u'reflect', u'continu', u'properti', u'market', u'strength']
[u'aussi', u'citi']
[u'australia', u'encourag', u'embrac', u'globalis']
[u'australian', u'drug', u'trial', u'singapor', u'adjourn']
[u'threaten', u'action', u'loss', u'yamba', u'condit']
[u'bateman', u'communiti', u'tell', u'larg']
[u'beazley', u'throw', u'ring']
[u'beazley', u'leadership']
[u'beckham', u'pick', u'gong', u'queen']
[u'beckham', u'receiv', u'royal', u'honour']
[u'bichel', u'rock', u'redback']
[u'seek', u'citi', u'council', u'financ', u'talk']
[u'pineappl', u'save', u'chop']
[u'billion', u'face', u'water', u'shortag', u'glacier', u'melt']
[u'blair', u'suffer', u'second', u'health', u'scare']
[u'boca', u'argentin', u'titl', u'libertador', u'crown']
[u'brack', u'approv', u'rat', u'slump']
[u'brack', u'flag', u'trade', u'tourism', u'agenda', u'meet']
[u'brack', u'sign', u'victoria', u'scienc', u'pact']
[u'britain', u'arrest', u'terror', u'suspect']
[u'bush', u'home', u'secret', u'iraq', u'visit']
[u'bush', u'make', u'surpris', u'visit', u'iraq']
[u'butcher', u'run', u'lanka']
[u'caesarean', u'link', u'rais', u'risk', u'second']
[u'cairn', u'busi', u'learn', u'terror', u'manag']
[u'canefarm', u'govt', u'disapprov', u'poll']
[u'crash', u'melbourn', u'bedroom']
[u'carer', u'number', u'rise', u'studi', u'find']
[u'carr', u'tightlip', u'leadership']
[u'cattl', u'industri', u'fear', u'rise', u'dollar']
[u'caus', u'unknown', u'fatal', u'ultralight', u'crash']
[u'celebr', u'mark', u'open', u'town', u'hall']
[u'central', u'tighten', u'tap']
[u'centr', u'oper', u'part', u'respons', u'detaine']
[u'chelsea', u'readi', u'resit', u'titl', u'exam']
[u'claim', u'tender', u'process', u'hurt', u'region']
[u'coal', u'staff', u'work', u'longer', u'hour']
[u'cobar', u'worri', u'lose', u'staff', u'bourk']
[u'coff', u'brief', u'minist', u'revitalis', u'plan']
[u'congo', u'ferri', u'capsiz', u'kill']
[u'cotton', u'grower', u'face', u'challeng']
[u'coulthard', u'set', u'record']
[u'countri', u'dead', u'toll', u'leftov']
[u'court', u'set', u'date', u'falconio', u'committ', u'hear']
[u'crean', u'destroy', u'disloyalti', u'beatti']
[u'credit', u'bing', u'continu']
[u'crew', u'fix', u'port', u'piri', u'power', u'line']
[u'croc', u'seek', u'vital', u'razorback']
[u'crow', u'nest', u'council', u'side', u'resid']
[u'csiro', u'studi', u'exot', u'pest', u'threat']
[u'danish', u'pram', u'snatcher', u'bag', u'babi', u'mistak']
[u'democrat', u'push', u'fast', u'track', u'smoke', u'ban']
[u'drink', u'drive', u'crackdown', u'begin', u'earli', u'christma']
[u'dunde', u'discov', u'price', u'cash', u'disast']
[u'embattl', u'crean', u'announc', u'futur']
[u'explos', u'discov', u'home', u'qaeda', u'suspect']
[u'south', u'enjoy', u'coastal', u'properti', u'boom']
[u'feder', u'polic', u'continu', u'albani', u'probe']
[u'fin', u'impos', u'water', u'restrict', u'breach']
[u'firefight', u'control', u'fire', u'north', u'adelaid']
[u'firefight', u'want', u'money']
[u'fight', u'aircraft', u'pass', u'test']
[u'forest', u'manag', u'chang', u'timber', u'industri']
[u'detaine', u'famili', u'reunit', u'children']
[u'iraqi', u'general', u'die', u'interrog']
[u'guy', u'want', u'miss', u'outback', u'quest']
[u'germani', u'arrest', u'alleg', u'qaeda', u'leader']
[u'gibraltar', u'go', u'poll', u'year', u'spain']
[u'girl', u'interview', u'schooli', u'complaint']
[u'technolog', u'help', u'canola', u'crop']
[u'governor', u'address', u'central', u'student']
[u'govt', u'fund', u'doubt', u'threaten', u'rural', u'counsel']
[u'govt', u'fund', u'help', u'fight', u'tennant', u'creek', u'eros']
[u'govt', u'unveil', u'fund', u'boost']
[u'great', u'ape', u'go', u'west', u'warn']
[u'hackett', u'world', u'meet']
[u'hackett', u'withdraw', u'pool', u'collaps']
[u'hail', u'farmer', u'elig', u'loan']
[u'health', u'depart', u'warn', u'ross', u'river']
[u'hec', u'architect', u'hail', u'govt', u'plan', u'rais', u'debt']
[u'hewitt', u'forc', u'open', u'fifth']
[u'hous', u'afford', u'continu', u'fall']
[u'howard', u'wish', u'crean', u'best']
[u'india', u'pakistan', u'upbeat', u'kashmir', u'ceasefir', u'remain']
[u'inter', u'confid', u'trip', u'ladi']
[u'urg', u'chamber', u'come', u'clean']
[u'urg', u'chamber', u'grass']
[u'israel', u'legalis', u'west', u'bank', u'settlement']
[u'istanbul', u'attack', u'mastermind', u'identifi']
[u'jackson', u'get', u'chanc', u'british', u'chart']
[u'jone', u'break', u'breast', u'stroke', u'record']
[u'kewel', u'keep', u'pool', u'track', u'citi', u'heart', u'crash']
[u'kimberley', u'nativ', u'titl', u'claim', u'agreement', u'reach']
[u'labor', u'delay', u'decis', u'cook']
[u'labor', u'go', u'past', u'premier', u'say']
[u'labor', u'ponder', u'leadership', u'option']
[u'launceston', u'welcom', u'loom', u'pont', u'captainci']
[u'leeton', u'council', u'continu', u'fight', u'save', u'yanco']
[u'leski', u'inquest', u'hear', u'prison', u'favour']
[u'liberian', u'faction', u'storm', u'disarma', u'meet']
[u'lifesav', u'sight', u'mackay']
[u'local', u'govt', u'group', u'wont', u'annual', u'elect']
[u'local', u'offic', u'join', u'statewid', u'tribut']
[u'long', u'lose', u'bird', u'aliv', u'remot', u'fiji']
[u'macadamia', u'processor', u'shell', u'support', u'aussi']
[u'mackay', u'sugar', u'seek', u'region', u'approach', u'reform']
[u'malaysia', u'airlin', u'report', u'break', u'cabl', u'incid']
[u'malaysia', u'mahathir', u'appoint', u'petrona', u'advisor']
[u'malle', u'farmer', u'criticis', u'strict', u'truck', u'inspect']
[u'die', u'swan', u'hill', u'accid']
[u'come', u'forward', u'case']
[u'jail', u'year', u'kill', u'sister']
[u'maritim', u'colleg', u'boost', u'thailand', u'tie']
[u'maritim', u'colleg', u'look', u'asia', u'help', u'extend']
[u'martin', u'set', u'nation', u'park', u'deadlin']
[u'mildura', u'council', u'vote', u'control', u'econom', u'bodi']
[u'mildura', u'netbal', u'applaud', u'council', u'court', u'decis']
[u'minist', u'deni', u'claim', u'nativ', u'titl', u'grant']
[u'peopl', u'charg', u'inverel', u'brawl']
[u'assault', u'reflect', u'rise', u'crime', u'report']
[u'moya', u'level', u'davi', u'final']
[u'attack', u'grafton', u'appoint']
[u'nation', u'tour', u'coloni', u'begin', u'hobart']
[u'nat', u'tax', u'gambl', u'club', u'futur']
[u'naval', u'command', u'receiv', u'militari', u'honour']
[u'continu', u'regul', u'goldfield']
[u'ireland', u'elect', u'result', u'fail', u'impress', u'british']
[u'bail', u'attempt', u'murder', u'charg']
[u'norwegian', u'hacker', u'rebut', u'music', u'piraci', u'critic']
[u'govt', u'chang', u'track', u'rail', u'fund', u'decis']
[u'power', u'compani', u'high', u'court']
[u'osasuna', u'offer', u'home', u'comfort', u'real', u'madrid']
[u'owner', u'baffl', u'caus', u'wildlif', u'park']
[u'pair', u'face', u'rape', u'trial']
[u'player', u'prepar', u'bowl', u'record', u'attempt']
[u'politician', u'block', u'stop', u'upfront', u'allow']
[u'polic', u'arrest', u'sydney', u'raid']
[u'polic', u'arrest', u'raid', u'home']
[u'polic', u'captur', u'escap', u'prison']
[u'polic', u'launch', u'probe', u'wildlif']
[u'polic', u'offer', u'crime', u'rate', u'assur']
[u'polic', u'question', u'clark', u'appeal']
[u'polic', u'raid', u'probe', u'million', u'dollar', u'fraud', u'claim']
[u'polic', u'recov', u'steal', u'coast', u'good']
[u'polic', u'seek', u'kunda', u'park', u'hold']
[u'polic', u'tell', u'clark', u'appeal', u'fear']
[u'polic', u'receiv', u'tasmanian', u'paedophil', u'ring', u'claim']
[u'pont', u'readi', u'role']
[u'pont', u'tribut', u'inspir', u'waugh']
[u'power', u'provid', u'generat', u'profit']
[u'pressur', u'mount', u'crean']
[u'project', u'power', u'indigen', u'communiti']
[u'premier', u'back', u'beazley']
[u'quick', u'announc', u'support', u'latham']
[u'ravensthorp', u'seek', u'offic', u'possibl', u'popul']
[u'cross', u'launch', u'fund', u'save', u'staff', u'aid']
[u'report', u'highlight', u'fall', u'farm', u'incom']
[u'report', u'highlight', u'unhealthi', u'state', u'region']
[u'research', u'question', u'fishway', u'secret', u'document']
[u'resid', u'group', u'welcom', u'gippsland', u'water', u'report']
[u'resid', u'oppos', u'super', u'council', u'plan']
[u'reveal', u'pope', u'back', u'anfield', u'red']
[u'rise', u'dollar', u'keep', u'cattl', u'price']
[u'rise', u'jellyfish', u'sting', u'prompt', u'action', u'plan']
[u'rspca', u'question', u'sheep', u'treatment']
[u'urg', u'action', u'rock', u'throw']
[u'russian', u'energi', u'merger', u'rock']
[u'council', u'welcom', u'tougher', u'law']
[u'farmer', u'stagger', u'harvest', u'time']
[u'safe', u'tan', u'drug', u'trial', u'releas', u'initi', u'result']
[u'santa', u'knee', u'limit', u'town']
[u'schooli', u'polic', u'misconduct', u'claim', u'anger', u'beatti']
[u'schwarten', u'concern', u'specialist', u'wait']
[u'shop', u'owner', u'fight']
[u'shepparton', u'step', u'polic', u'event', u'influx']
[u'shiit', u'leader', u'push', u'urgent', u'iraq', u'elect']
[u'shoalhaven', u'parent', u'seek', u'support', u'servic', u'boost']
[u'sluggish', u'market', u'close', u'higher']
[u'space', u'station', u'nois', u'crash', u'offici']
[u'spam', u'chang', u'fail']
[u'spanish', u'angri', u'anthem']
[u'spontan', u'combust', u'blame', u'factori']
[u'star', u'princess', u'arriv', u'melbourn']
[u'strong', u'dollar', u'affect', u'work', u'hour', u'union']
[u'student', u'forget', u'green']
[u'studi', u'show', u'benefit', u'increas', u'countri', u'speed']
[u'super', u'council', u'plan', u'deal']
[u'sven', u'disappoint', u'contract', u'announc']
[u'test', u'select', u'put', u'katich', u'spot']
[u'tfga', u'await', u'impact', u'rural', u'merger']
[u'thai', u'stick', u'german', u'husband']
[u'thousand', u'hous', u'damag', u'china', u'quak']
[u'tough', u'alcohol', u'restrict', u'mornington']
[u'tram', u'driver', u'want', u'camera', u'instal', u'attack']
[u'truck', u'crash', u'leav', u'dead']
[u'face', u'court', u'sydney', u'shoot']
[u'rais', u'capit', u'london', u'list']
[u'unesco', u'see', u'summit', u'foot', u'drag', u'press', u'freedom']
[u'union', u'prais', u'act', u'industri', u'manslaught', u'law']
[u'union', u'scar', u'initi', u'cost', u'region', u'health']
[u'univers', u'head', u'quit', u'moscow', u'dorm']
[u'univers', u'test', u'technolog', u'aquacultur']
[u'probe', u'possibl', u'iran', u'pakistan', u'nuclear', u'link']
[u'holiday', u'cool', u'world', u'financi', u'market']
[u'soldier', u'alleg', u'kill', u'girl', u'iraq']
[u'vice', u'chancellor', u'educ', u'packag']
[u'govt', u'deni', u'fate', u'contamin', u'sheep']
[u'virgin', u'blue', u'gold', u'coast', u'perth', u'flight']
[u'virgin', u'give', u'qanta', u'share', u'batter']
[u'vizard', u'score', u'world', u'swim', u'event']
[u'export', u'opportun', u'fuel', u'trip']
[u'wangaratta', u'welcom', u'industri', u'assist']
[u'opposit', u'step', u'region', u'hospit', u'campaign']
[u'watchdog', u'want', u'jail', u'option', u'cartel', u'boss']
[u'water', u'suppli', u'dwindl', u'ilfracomb']
[u'waugh', u'run', u'australian', u'year', u'award']
[u'readi', u'hewitt']
[u'wollongong', u'mayor', u'back', u'general', u'manag', u'vision']
[u'xenophon', u'propos', u'industri', u'manslaught', u'law']
[u'kill', u'pakistan', u'crash']
[u'academi', u'steadi', u'lunch']
[u'activist', u'call', u'govt', u'work', u'harder']
[u'adenau', u'win', u'best', u'german', u'contest', u'marx']
[u'state', u'confer', u'kick']
[u'ambros', u'close', u'titl']
[u'ambros', u'titl', u'line']
[u'anxieti', u'plagu', u'meat', u'loaf', u'say']
[u'aussi', u'athlet', u'hand', u'drug', u'ban']
[u'aussi', u'grab', u'davi', u'lead']
[u'author', u'resum', u'search', u'miss']
[u'better', u'safeti', u'barrier', u'save', u'kato']
[u'blast', u'shatter', u'georgia', u'bloodless', u'revolut']
[u'boost', u'england', u'ahead', u'lanka', u'test']
[u'brazil', u'crack', u'illeg', u'log']
[u'british', u'embassi', u'resum', u'limit', u'visa', u'servic']
[u'brolga', u'award', u'showcas', u'tourism']
[u'bull', u'collaps', u'adelaid']
[u'bull', u'verg', u'outright', u'victori']
[u'bush', u'iraq', u'visit', u'elect', u'stunt', u'analysi']
[u'cairn', u'demolish', u'pakistani', u'bowl', u'attack']
[u'toughen', u'workplac', u'safeti', u'law']
[u'call', u'applic', u'nation', u'museum']
[u'cannon', u'claim', u'excel', u'award']
[u'chamber', u'cool', u'dope', u'plea', u'bargain']
[u'china', u'report', u'surg', u'aid', u'case']
[u'china', u'sever', u'diplomat', u'tie', u'kiribati']
[u'unhappi', u'bush', u'surpris', u'visit', u'iraq']
[u'court', u'lift', u'kale', u'bribe', u'charg']
[u'court', u'order', u'freez', u'nation', u'fund']
[u'condit', u'fuel', u'high', u'danger', u'warn']
[u'fate', u'kidnap', u'australian', u'unclear']
[u'fear', u'screensound', u'review', u'leav']
[u'fight', u'aid', u'continu', u'mandela', u'say']
[u'finnish', u'judg', u'brush', u'drink', u'charg']
[u'fire', u'burn', u'fleurieu', u'peninsula']
[u'fitzi', u'bank', u'doubl']
[u'intellig', u'analyst', u'receiv', u'award']
[u'gayl', u'hind', u'boost', u'windi']
[u'gazza', u'abandon', u'wolv', u'comeback']
[u'german', u'lawyer', u'surpris', u'court', u'send', u'jail']
[u'german', u'media', u'slam', u'politician', u'censorship']
[u'glori', u'slide', u'newcastl']
[u'govt', u'agenc', u'tell', u'meet', u'energi', u'target']
[u'grenada', u'prime', u'minist', u'win', u'term', u'elect']
[u'hawk', u'breaker', u'auckland']
[u'hockeyroo', u'thrash', u'england']
[u'holiday', u'spirit', u'help', u'wall', u'street', u'shake']
[u'hundr', u'protest', u'violenc', u'baghdad']
[u'ibanez', u'quit', u'intern', u'rugbi']
[u'latham']
[u'india', u'troubl', u'academi']
[u'india', u'target', u'reid', u'bowl', u'coach']
[u'industri', u'chief', u'meet', u'club', u'smoke']
[u'intern', u'account', u'firm', u'quit', u'burma', u'lobbi']
[u'isra', u'soldier', u'kill', u'palestinian', u'near', u'gaza']
[u'jail', u'offic', u'gunplay', u'want']
[u'japan', u'satellit', u'launch', u'end', u'failur']
[u'jone', u'score', u'record', u'doubl']
[u'katich', u'guid', u'blue', u'victori']
[u'kenya', u'drop', u'murder', u'charg', u'blast', u'suspect']
[u'king', u'tame', u'tiger', u'razorback']
[u'kingz', u'coach', u'quit', u'melbourn', u'trip']
[u'leisel', u'set', u'world', u'mark', u'melbourn']
[u'lone', u'rescu', u'whale', u'deep', u'water']
[u'catch', u'cigarett', u'pack', u'trouser']
[u'mexican', u'dirti', u'wit', u'shoot', u'dead']
[u'michael', u'jackson', u'video', u'miss', u'premier', u'date']
[u'minist', u'focus', u'radiat', u'therapi', u'specialist']
[u'koutsantoni', u'state', u'presid']
[u'negoti', u'breakthrough', u'avert', u'nation', u'coal']
[u'nigerian', u'pirat', u'kidnap', u'seven', u'foreign', u'worker']
[u'korea', u'seek', u'compo', u'cut', u'nuke', u'project']
[u'jolli', u'season', u'broadway', u'produc']
[u'govt', u'suggest', u'super', u'home']
[u'owen', u'week']
[u'palestinian', u'rule', u'sharon', u'talk']
[u'part', u'nation', u'park', u'close', u'feral', u'anim']
[u'peac', u'process', u'cloud', u'northern', u'ireland']
[u'perri', u'lead', u'sergio', u'sizzl']
[u'perth', u'millionair', u'file', u'complaint', u'polic']
[u'petit', u'aim', u'oust', u'venezuelan', u'presid']
[u'photograph', u'clear', u'diana', u'crash', u'snap']
[u'tighten', u'law', u'lose', u'wartim', u'gold', u'claim']
[u'polic', u'arrest', u'schooli', u'parti']
[u'polic', u'arrest', u'italian', u'anti', u'terror', u'swoop']
[u'polic', u'charg', u'teenag', u'assault']
[u'polic', u'claim', u'pacif', u'drug', u'ring', u'bust']
[u'pont', u'fail', u'tiger']
[u'power']
[u'rescuer', u'hope', u'refloat', u'strand', u'whale']
[u'research', u'isol', u'heart', u'attack', u'gene']
[u'rogu', u'wave', u'sweep', u'rock']
[u'compani', u'score', u'million', u'defenc', u'contract']
[u'sharon', u'plan', u'west', u'bank', u'annex', u'report']
[u'skaif', u'pole']
[u'slick', u'report', u'conceal', u'crime', u'problem']
[u'sokyola', u'take', u'miracl', u'mile']
[u'student', u'lobbi', u'defeat', u'govt', u'tertiari', u'reform', u'plan']
[u'switzerland', u'hand', u'seiz', u'antiqu', u'egypt']
[u'giant', u'kelp', u'near', u'protect', u'list']
[u'teen', u'die', u'balconi', u'fall', u'gold', u'coast', u'high']
[u'thailand', u'reject', u'futur', u'foreign']
[u'polic', u'schooli', u'conduct', u'probe']
[u'tiger', u'wood', u'swedish', u'model', u'elin']
[u'tough', u'ireland', u'talk', u'ahead', u'hardlin', u'gain']
[u'tree', u'reduc', u'greenhous', u'studi']
[u'charg', u'christma', u'card', u'drug', u'smuggl']
[u'adopt', u'protocol', u'unexplod', u'weapon']
[u'critic', u'israel', u'secur', u'barrier']
[u'admit', u'fail', u'afghan', u'poppi', u'output', u'doubl']
[u'soldier', u'shoot', u'iraqi', u'tot', u'child']
[u'space', u'agenc', u'worri', u'space', u'station', u'nois']
[u'opposit', u'question', u'speed', u'camera']
[u'polic', u'defend', u'speed', u'camera']
[u'vinni', u'jone', u'charg', u'rage']
[u'wilkomania', u'pull', u'crowd']
[u'windi', u'rest', u'drake', u'dayer']
[u'woodbridg', u'back', u'scud']
[u'world', u'fail', u'deal', u'aid', u'annan']
[u'young', u'socceroo', u'fight', u'dubai', u'draw']
[u'zimbabwean', u'newspap', u'hit', u'fresh', u'legal', u'snag']
[u'zimbabw', u'consid', u'quit', u'cwealth']
[u'academi', u'build', u'lead', u'laxman', u'lift', u'india']
[u'leadership', u'campaign', u'pick', u'pace']
[u'ambros', u'captur', u'crown']
[u'anglesea', u'fire', u'spread']
[u'aristocrat', u'head', u'look', u'restructur']
[u'arrest', u'doubl', u'southern', u'schooli', u'join', u'parti']
[u'asia', u'threat', u'galvanis', u'govern', u'world']
[u'asic', u'widen', u'probe', u'kay', u'busi', u'collaps']
[u'passeng', u'kill', u'congo', u'plane', u'crash']
[u'babi', u'treatment', u'renew', u'hospit', u'inquiri']
[u'blatter', u'question', u'valid', u'ferdinand', u'unit']
[u'brackss', u'second', u'term', u'best', u'worst', u'time']
[u'brigitt', u'case', u'highlight', u'asio', u'inflex', u'ruddock']
[u'britain', u'close', u'deal', u'guantanamo', u'detaine']
[u'britain', u'grant', u'asylum', u'chechen', u'envoy', u'zakayev']
[u'britain', u'stick', u'ireland', u'accord', u'despit']
[u'british', u'bride', u'lose', u'limb', u'road', u'accid']
[u'british', u'polic', u'releas', u'hold']
[u'govt', u'energi']
[u'look', u'indigen', u'crisi', u'accommod']
[u'cambodian', u'aid', u'patient', u'turn', u'faith', u'healer']
[u'camera', u'surveil', u'airport', u'vandal']
[u'china', u'crocodil', u'dunde', u'join', u'reptil', u'hunt']
[u'china', u'miss', u'world', u'pageant', u'world', u'apart']
[u'admit', u'lack', u'specif', u'iraqi', u'weapon']
[u'cityrail', u'apolog', u'rail', u'delay']
[u'conjoin', u'filipino', u'twin', u'leav', u'hospit']
[u'cool', u'chang', u'aid', u'anglesea', u'fight']
[u'council', u'launch', u'group', u'plan', u'youth', u'train']
[u'croc', u'hunter', u'score', u'tourism', u'award']
[u'diplomat', u'iraq', u'death', u'complic', u'japanes']
[u'trapper', u'join', u'fight', u'livestock', u'attack']
[u'electr', u'swap', u'payment', u'windfal', u'supplier']
[u'england', u'meet', u'foe', u'franc', u'euro', u'clash']
[u'envelop', u'white', u'powder', u'spark', u'alarm', u'franc']
[u'field', u'omagh', u'disappoint', u'japan']
[u'filipino', u'troop', u'rescu', u'kidnap', u'famili']
[u'squad', u'extinguish', u'remot', u'bushfir']
[u'detaine', u'elat', u'reunion', u'children']
[u'senat', u'pick', u'senior', u'australian']
[u'free', u'australian', u'leav', u'nigeria']
[u'frodo', u'economi', u'ring', u'dollar', u'zealand']
[u'gambl', u'focus', u'research', u'centr']
[u'garcia', u'turn', u'heat', u'blow', u'cold', u'citi']
[u'gerrard', u'reveal', u'owen', u'departur', u'fear']
[u'gillard', u'back', u'latham', u'labor', u'leadership']
[u'global', u'poverti', u'level', u'time', u'high']
[u'govt', u'deni', u'build', u'rip', u'school']
[u'high', u'wind', u'caus', u'world', u'jump']
[u'polic', u'seek', u'inform', u'miss', u'australian']
[u'hockeyroo', u'dutch', u'rival']
[u'hop', u'fade', u'find', u'miss', u'aliv']
[u'indigen', u'tourism', u'high', u'hotel', u'brolga', u'winner']
[u'injuri', u'inspir', u'innov', u'gain', u'widespread', u'school']
[u'inter', u'humbl', u'champion', u'juve']
[u'iran', u'relax', u'femal', u'custodi', u'children']
[u'iraq', u'draft', u'islam', u'constitut']
[u'iraq', u'interim', u'leader', u'review', u'plan', u'face']
[u'itali', u'india', u'sign', u'technolog', u'pact']
[u'japan', u'nationalis', u'region', u'bank']
[u'kasper', u'bowl', u'record', u'book', u'bull', u'roll']
[u'kava', u'lift', u'wale']
[u'land', u'return', u'indigen', u'communiti']
[u'lomu', u'walk', u'proper', u'kidney', u'setback']
[u'lucki', u'escap', u'motorist', u'fall', u'farm']
[u'mahathir', u'propos', u'corpor', u'close', u'world']
[u'die', u'stab', u'attack']
[u'paddl', u'kayak', u'bass', u'strait', u'record']
[u'milner', u'offer', u'leed', u'hope', u'blackburn', u'villa']
[u'nation', u'confer', u'debat', u'drug', u'patent']
[u'nigerian', u'releas', u'australian', u'captiv']
[u'ground', u'class', u'action', u'game', u'compani']
[u'proof', u'qaeda', u'iraq', u'general']
[u'note', u'actor', u'rush', u'honour', u'founder']
[u'speaker', u'baffl', u'polli', u'drug', u'test']
[u'pakistan', u'perform', u'success', u'liver']
[u'pakistan', u'lift', u'indian', u'overflight']
[u'palestinian', u'meet', u'envoy', u'reviv']
[u'palestinian', u'say', u'isra', u'wall', u'sabotag']
[u'pendal', u'year', u'career', u'state', u'elect']
[u'port', u'arthur', u'tourism', u'boom', u'boost', u'financ']
[u'power', u'struggl', u'push', u'lanka', u'poll']
[u'price', u'deal', u'put', u'sister', u'closer', u'hospit']
[u'punter', u'win', u'hungari', u'record', u'lotteri']
[u'premier', u'back', u'beazley', u'rudd', u'combo']
[u'rain', u'aid', u'crew', u'battl', u'outbreak']
[u'razzaq', u'snatch', u'unlik', u'victori', u'novic']
[u'remot', u'communiti', u'servic', u'access']
[u'rescuer', u'confid', u'sperm', u'whale', u'surviv']
[u'rhino', u'kill', u'migrant', u'worker', u'india', u'north']
[u'rivaldo', u'chase', u'star', u'chelsea', u'team']
[u'rivaldo', u'leav', u'milan']
[u'ronaldo', u'rescu', u'real']
[u'ruddock', u'examin', u'period', u'detent', u'laps']
[u'rudd', u'beazley', u'ballot']
[u'rudd', u'decid', u'leadership', u'nomin', u'today']
[u'rugbi', u'hero', u'wilkinson', u'music', u'legend', u'jagger', u'share']
[u'confer', u'reject', u'citizen', u'initi']
[u'light', u'camera', u'captur', u'speedster']
[u'scud', u'bag', u'davi', u'glori', u'australia']
[u'scud', u'fire', u'australia', u'davi', u'victori']
[u'spanish', u'offic', u'dead', u'iraq', u'attack', u'ministri']
[u'soccer', u'injur', u'firework', u'display']
[u'sorenstam', u'skin', u'stun', u'eagl']
[u'south', u'kingz', u'nightmar', u'continu']
[u'spain', u'reaffirm', u'support', u'iraq', u'oper']
[u'star', u'princess', u'domin', u'hobart', u'skylin']
[u'kilda', u'sponsor', u'tasmania', u'littl', u'athlet']
[u'sudan', u'suspend', u'newspap', u'say', u'fail', u'nation']
[u'superstiti', u'thief', u'return', u'steal', u'thai', u'templ']
[u'swiss', u'adventur', u'plan', u'solar', u'power', u'flight']
[u'taiwan', u'arrest', u'research', u'sell', u'secret', u'china']
[u'taiwan', u'play', u'referendum', u'talk']
[u'thoma', u'klim', u'seal', u'injuri', u'comeback']
[u'toxic', u'wast', u'forum', u'look', u'futur', u'manag']
[u'turkish', u'court', u'charg', u'prime', u'suspect', u'istanbul']
[u'japanes', u'kill', u'iraq', u'near', u'tikrit']
[u'kill', u'separ', u'accid']
[u'soldier', u'kill', u'iraq', u'ambush']
[u'union', u'hold', u'action', u'govt']
[u'colonel', u'charg', u'guantanamo', u'secret']
[u'polic', u'seek', u'shooter', u'kill']
[u'state', u'depart', u'crack', u'diplomat']
[u'troop', u'arrest', u'alleg', u'iraqi', u'milit']
[u'west', u'indi', u'edward', u'wreak', u'havoc']
[u'west', u'indi', u'newboy', u'edward', u'wreak', u'havoc']
[u'inspir', u'woodi', u'play']
[u'world', u'star', u'perform', u'mandela', u'aid', u'concert']
[u'million', u'aid', u'patient', u'drug']
[u'accc', u'warn', u'dishonest', u'busi']
[u'milan', u'releas', u'rivaldo']
[u'soften', u'right']
[u'aid', u'council', u'warn', u'complac']
[u'airport', u'play', u'flight', u'scare']
[u'help', u'rebuild', u'iraq', u'health']
[u'anderson', u'accus', u'union', u'scare', u'campaign']
[u'anderson', u'ponder', u'legal', u'action']
[u'appeal', u'trucki', u'inform']
[u'arm', u'ivori', u'coast', u'demand', u'departur']
[u'asylum', u'seeker', u'treatment', u'nation', u'black', u'spot', u'studi']
[u'aussi', u'hop', u'master', u'huntingdal']
[u'australia', u'india', u'pakistan', u'play', u'seri']
[u'australia', u'davi', u'hero']
[u'author', u'identifi', u'turkish', u'suicid', u'bomber']
[u'balfour', u'bakeri', u'take']
[u'bank', u'resourc', u'push', u'market', u'lower']
[u'bashir', u'lawyer', u'plan', u'appeal']
[u'revamp', u'underway', u'panorama', u'track']
[u'biki', u'secur', u'label', u'discriminatori']
[u'blaze', u'tear', u'north', u'east', u'sawmil']
[u'bleak', u'outlook', u'wool', u'sector']
[u'bleari', u'eye', u'bowler', u'record']
[u'book', u'celebr', u'drover', u'best', u'life', u'track']
[u'brack', u'go']
[u'brack', u'refus', u'side', u'beatti', u'back', u'beazley']
[u'busi', u'focus', u'servic']
[u'servic', u'unlik', u'start']
[u'aviat', u'ombudsman']
[u'canadian', u'compani', u'bid', u'pasminco', u'oper']
[u'capricornia', u'decid', u'leadership', u'option']
[u'carr', u'announc', u'firefight', u'team']
[u'carr', u'play', u'harbour', u'bridg', u'secur', u'breach']
[u'carseldin', u'hit', u'second', u'academi', u'declar']
[u'cattlemen', u'assn', u'demand', u'better', u'road']
[u'central', u'aust', u'share', u'heritag', u'grant']
[u'central', u'restrict', u'loom']
[u'chanc', u'say', u'communiti', u'wont', u'rule']
[u'chelsea', u'manchest', u'unit']
[u'china', u'global', u'dump', u'grind', u'electron']
[u'civilian', u'death', u'toll', u'iraq', u'clash']
[u'clark', u'appeal', u'hear', u'evid']
[u'committe', u'question', u'rbas', u'annual', u'report']
[u'compo', u'urg', u'futur', u'industri', u'estat', u'move']
[u'confisc', u'homework', u'raid', u'upset', u'girl']
[u'urg', u'caution', u'deepen', u'port']
[u'convict', u'child', u'offend', u'refus', u'bail']
[u'coron', u'deliv', u'open', u'find', u'child', u'death']
[u'council', u'inspect', u'camp', u'sit']
[u'council', u'feder', u'scheme', u'crossroad']
[u'council', u'see', u'benefit', u'supermarket', u'plan']
[u'council', u'urg', u'vote', u'citi', u'centr', u'strategi']
[u'court', u'dismiss', u'polic', u'assault', u'case']
[u'court', u'hear', u'perth', u'mint', u'swindl', u'appeal']
[u'levi', u'moot', u'boost', u'firefight', u'effort']
[u'shark', u'coach', u'anderson']
[u'defenc', u'minist', u'offer', u'condol', u'japan', u'spain']
[u'demand', u'pick', u'commerci', u'space']
[u'diamond', u'explor', u'underway', u'central', u'aust']
[u'dicey', u'deal', u'program', u'launch']
[u'doctor', u'shortag', u'take', u'toll', u'surgeri', u'wait', u'time']
[u'dozen', u'kill', u'iraq', u'ambush', u'attempt']
[u'drainag', u'work', u'begin', u'soon']
[u'drug', u'lookout', u'guilti']
[u'drug', u'record', u'abandon', u'nurs', u'home']
[u'dump', u'anderson', u'ponder', u'legal', u'action']
[u'egypt', u'recov', u'smuggl', u'antiqu']
[u'elector', u'commiss', u'broaden', u'polit', u'neutral']
[u'emma', u'georg', u'announc', u'retir']
[u'english', u'soccer', u'chief', u'defend', u'ferdinand', u'decis']
[u'eureka', u'celebr', u'begin']
[u'export', u'perform', u'undermin', u'growth', u'figur']
[u'farmer', u'face', u'locust', u'swarm']
[u'farmer', u'hear', u'nativ', u'veget', u'detail']
[u'farmer', u'urg', u'season', u'readi']
[u'femal', u'smoker', u'greater', u'cancer', u'risk']
[u'firefight', u'battl', u'bushfir', u'south', u'east']
[u'firefight', u'tackl', u'gippsland', u'blaze']
[u'prove', u'capit']
[u'garcia', u'end', u'drought', u'citi']
[u'geneva', u'peac', u'ceremoni', u'hear', u'arafat', u'speech']
[u'gibbon', u'back', u'latham']
[u'govt', u'donat', u'alzheim', u'research']
[u'green', u'urg', u'conscienc', u'vote', u'child', u'abus', u'inquiri']
[u'guantanamo', u'inmat', u'releas', u'report']
[u'hall', u'fame', u'honour', u'hayman']
[u'hanson', u'saga', u'unit', u'nation', u'say', u'parti', u'leader']
[u'health', u'report', u'news', u'surpris']
[u'hewitt', u'take', u'earn', u'rest']
[u'high', u'hop', u'bombast', u'shiraz']
[u'hobbit', u'film', u'pipelin', u'follow', u'ring', u'success']
[u'hope', u'ethanol', u'trial', u'fuel', u'develop']
[u'hope', u'highway', u'work', u'deliv', u'retail', u'boost']
[u'hospit', u'overcrowd', u'anger', u'nurs']
[u'howard', u'carr', u'trade', u'blow', u'inject', u'room']
[u'imperi', u'lose', u'leagu', u'chang']
[u'independ', u'quit', u'elect']
[u'india', u'avoid', u'humili', u'tour', u'match', u'end', u'draw']
[u'injuri', u'time', u'winner', u'keep', u'ger', u'touch']
[u'inquiri', u'find', u'driver', u'error', u'caus', u'runaway', u'train']
[u'inquiri', u'probe', u'militari', u'tie']
[u'iraq', u'council', u'member', u'conflict', u'elect']
[u'ironman', u'make', u'success', u'swim', u'debut']
[u'israel', u'launch', u'raid', u'ramalah']
[u'jade', u'rooney', u'face', u'demot', u'bench']
[u'japanes', u'station', u'begin', u'terrestri', u'digit']
[u'kelli', u'defend', u'grafton', u'offic', u'appoint']
[u'kenyan', u'polic', u'detain', u'mombasa', u'bomb']
[u'labor', u'contend', u'neck', u'neck']
[u'lake', u'close', u'clean']
[u'hous', u'draw', u'resid', u'say']
[u'link', u'suggest', u'infect', u'speed']
[u'loan', u'avail', u'help', u'hail', u'affect', u'farmer']
[u'macgil', u'confid', u'select', u'chanc']
[u'arrest', u'rescu']
[u'seri', u'gayl', u'send', u'west', u'indi', u'storm']
[u'pay', u'petrol', u'nephew']
[u'manufactur', u'show', u'healthi', u'sign']
[u'polic', u'guard', u'sieg']
[u'mayor', u'push', u'need', u'toowoomba', u'bypass']
[u'medic', u'student', u'help', u'differ']
[u'crash', u'avoid', u'tamworth']
[u'midair', u'incid', u'fals', u'alarm', u'safeti', u'bureau']
[u'miner', u'dig', u'deep', u'gibson']
[u'miracl', u'save', u'famili']
[u'mitchel', u'offens', u'black', u'search']
[u'mobil', u'smuggl', u'jail']
[u'monkey', u'give', u'birth', u'launceston', u'citi', u'park']
[u'yeppoon', u'resid', u'wait', u'list', u'worri']
[u'mornington', u'unrest', u'follow', u'alcohol', u'restrict']
[u'morocco', u'return', u'illeg', u'immigr', u'nigeria']
[u'wit', u'protest', u'hear']
[u'spend', u'time', u'travel', u'bigger']
[u'murali', u'say', u'england', u'tough', u'beat']
[u'nation', u'work', u'health', u'code', u'revis']
[u'nato', u'launch', u'anti', u'respons', u'unit']
[u'nat', u'legisl']
[u'defam', u'case', u'continu']
[u'fast', u'respons', u'team', u'address', u'anim', u'diseas']
[u'law', u'tackl', u'rogu', u'tourism', u'firm']
[u'multi', u'purpos', u'communiti', u'build', u'alic']
[u'recycl', u'centr', u'open', u'candelo']
[u'stage', u'riverland', u'risk', u'assess']
[u'bail', u'accus', u'naracoort', u'fire']
[u'north', u'west', u'build', u'success']
[u'govt', u'spend', u'media', u'watch']
[u'review', u'drink', u'aim', u'young']
[u'feder', u'seat', u'report']
[u'opposit', u'claim', u'health', u'bureaucrat', u'abus']
[u'opposit', u'push', u'releas', u'child', u'detaine']
[u'perkin', u'join', u'olympian', u'council']
[u'perth', u'mint', u'swindl', u'appeal', u'begin']
[u'pilot', u'concern', u'airspac', u'breach']
[u'plagu', u'locust', u'concern', u'storm', u'rain']
[u'plan', u'underway', u'forest', u'hazard', u'burn']
[u'accus', u'point', u'score', u'opiat', u'trade']
[u'polic', u'blitz', u'target', u'road', u'safeti']
[u'polic', u'hunt', u'involv', u'stab']
[u'polic', u'hunt', u'attack']
[u'polic', u'probe', u'death', u'custodi']
[u'polic', u'probe', u'jail', u'death']
[u'polic', u'probe', u'separ', u'western', u'death']
[u'polic', u'probe', u'murder', u'extend', u'search', u'husband']
[u'polic', u'interview', u'schooli', u'claim']
[u'polic', u'uncov', u'cannabi', u'crop']
[u'polic', u'drown', u'victim']
[u'promin', u'lawyer', u'charg', u'fatal', u'accid']
[u'public', u'deliv', u'slogan', u'plate']
[u'public', u'servant', u'get', u'older', u'skill', u'report']
[u'public', u'quiz', u'port', u'flood']
[u'public', u'health', u'review', u'find']
[u'public', u'urg', u'eas', u'water']
[u'qanta', u'ditch', u'fli', u'kangaroo', u'discount', u'airlin']
[u'fever', u'victim', u'sue', u'employ']
[u'govt', u'offer', u'child', u'care', u'fund']
[u'quak', u'hit', u'china', u'seven', u'dead']
[u'quak', u'rock', u'north', u'western', u'china']
[u'quarantin', u'websit', u'target', u'young', u'travel']
[u'race', u'club', u'share', u'resourc']
[u'radio', u'boost', u'palm', u'youth']
[u'ranger', u'prove', u'good', u'redland']
[u'light', u'camera', u'doubl', u'speed', u'camera']
[u'reid', u'coach', u'indian', u'pacemen', u'australia', u'tour']
[u'resid', u'powerless', u'lightn', u'woe']
[u'retrial', u'begin', u'today', u'sexual', u'abus', u'nightclub', u'case']
[u'review', u'consid', u'schooli', u'plan']
[u'rise', u'demand', u'forc', u'chariti']
[u'roger', u'deportivo']
[u'roma', u'milan', u'share', u'spot', u'itali']
[u'rylston', u'council', u'probe', u'end']
[u'safeti', u'bureau', u'probe', u'emerg', u'land']
[u'satellit', u'extend', u'life']
[u'sawmil', u'fear', u'impact', u'redgum', u'campaign']
[u'schooli', u'polic', u'misconduct', u'inquiri', u'widen']
[u'scientist', u'search', u'clue', u'whale', u'strand']
[u'servic', u'rememb', u'legendari', u'bushman']
[u'seven', u'indian', u'kashmir', u'rebellion']
[u'shellharbour', u'trial', u'tackl', u'crime']
[u'sixteen', u'year', u'detent', u'rape']
[u'skipper', u'jail', u'illeg', u'fish']
[u'smith', u'season']
[u'sponsorship', u'wrangl', u'keep', u'clijster', u'away']
[u'springborg', u'want', u'scienc', u'base', u'tree', u'clear']
[u'lanka', u'fort', u'citi', u'sieg', u'barmi', u'armi']
[u'stone', u'bros', u'appeal', u'ingal', u'penalti']
[u'stopwork', u'meet', u'teacher', u'tomorrow']
[u'strong', u'dollar', u'expect', u'hurt', u'tuna', u'industri']
[u'student', u'death', u'spark', u'polic', u'investig']
[u'student', u'confid', u'senat', u'amend', u'plan']
[u'student', u'uninjur', u'school', u'accid']
[u'summer', u'road', u'safeti', u'campaign', u'underway']
[u'support', u'derbi', u'wharf', u'upgrad']
[u'suspect', u'outbreak']
[u'sydney', u'resid', u'ralli', u'wast', u'station']
[u'tasmanian', u'support', u'latham']
[u'teacher', u'feder', u'critic', u'plan', u'educ']
[u'teen', u'die', u'highway', u'crash']
[u'threaten', u'speci', u'protect', u'port', u'sorel']
[u'tiger', u'recal']
[u'timber', u'worker', u'ralli', u'enterpris', u'agreement']
[u'trainer', u'oliv', u'death', u'overturn']
[u'tran', u'tasman', u'clash', u'kick', u'super', u'season']
[u'treatment', u'wipe', u'oliv', u'pest']
[u'turtl', u'nest', u'threaten', u'feral', u'pig']
[u'babi', u'traffick', u'sentenc', u'death']
[u'kill', u'fatal', u'accid']
[u'prepar', u'england', u'gear', u'murali', u'threat']
[u'union', u'fear', u'cut', u'junior', u'doctor', u'number']
[u'univers', u'fund', u'continu']
[u'push', u'middl', u'east', u'peac', u'process', u'continu']
[u'fire', u'burn']
[u'govt', u'urg', u'tackl', u'state', u'drug', u'problem']
[u'polic', u'scale', u'search', u'miss']
[u'victorian', u'fire', u'bring', u'control']
[u'lifesav', u'issu', u'warn', u'summer', u'begin']
[u'polic', u'crack', u'domest', u'violenc']
[u'warn', u'issu', u'discount', u'fuel', u'allianc']
[u'water', u'problemat', u'growth']
[u'wellington', u'turn', u'star']
[u'well', u'highlight', u'speed', u'camera', u'fear']
[u'western', u'rain', u'bring', u'good']
[u'west', u'indi', u'reveng', u'south', u'africa']
[u'wolf', u'free', u'return', u'racetrack']
[u'young', u'prison', u'endur', u'live', u'neglect', u'studi']
[u'anim', u'stay', u'territori', u'protect']
[u'kill', u'nepal', u'clash']
[u'aborigin', u'polic', u'liaison', u'offic']
[u'aborigin', u'popul', u'underestim', u'survey']
[u'academ', u'cast', u'doubt', u'latham', u'leader']
[u'accc', u'settl', u'impot', u'clinic', u'disput']
[u'accus', u'admit', u'kill', u'schoolgirl']
[u'actu', u'deni', u'conflict', u'latham']
[u'adelaid', u'airport', u'secur', u'criticis']
[u'airli', u'group', u'rat', u'review', u'plan', u'high']
[u'airport', u'work', u'start', u'soon']
[u'alga', u'plagu', u'lake', u'close']
[u'alleg', u'melbourn', u'underworld', u'figur', u'releas']
[u'ambros', u'grappl', u'supercar', u'seri']
[u'ambul', u'servic', u'offer', u'roster', u'chang', u'assur']
[u'anderson', u'unveil', u'tighter', u'airport', u'secur', u'plan']
[u'angler', u'time', u'know', u'rule']
[u'complet', u'bank']
[u'asian', u'pirat', u'sell', u'microsoft', u'window']
[u'asthma', u'link', u'mental', u'ill']
[u'auspin', u'resum', u'busi', u'blaze']
[u'australia', u'draw', u'zealand', u'champ', u'trophi']
[u'austrian', u'klien', u'pole', u'jaguar', u'drive']
[u'bacon', u'welcom', u'latham']
[u'bali', u'survivor', u'appeal', u'burn', u'research', u'fund']
[u'beat', u'beazley', u'vow', u'support']
[u'beatti', u'confirm', u'futur', u'schooli', u'role']
[u'beazley', u'backer', u'declar', u'support', u'latham']
[u'boat', u'sink', u'india', u'fear', u'dead']
[u'bosnian', u'muslim', u'trial', u'hagu']
[u'brack', u'defend', u'polic', u'sieg', u'ram']
[u'breakthrough', u'virtual', u'colonoscopi', u'invas']
[u'brook', u'back', u'mitchel', u'black', u'coach']
[u'build', u'industri', u'fear', u'impact', u'rat', u'rise']
[u'burdekin', u'mayor', u'urg', u'ethanol', u'action']
[u'bush', u'sign', u'allow', u'studi', u'generat']
[u'busi', u'look', u'forward', u'christma', u'shop']
[u'buyer', u'compet', u'album', u'lennon', u'sign', u'killer']
[u'stand', u'leader']
[u'ballarat', u'eureka', u'parliament', u'sit']
[u'card', u'help', u'curb', u'schooli', u'gatecrash']
[u'chastiti', u'best', u'protect', u'aid', u'vatican']
[u'clark', u'appeal', u'hear', u'polic', u'evid']
[u'clean', u'beach', u'clean', u'award']
[u'communiti', u'rememb', u'tamworth', u'stalwart']
[u'compani', u'await', u'plan', u'decis']
[u'compani', u'face', u'court', u'anim', u'cruelti', u'charg']
[u'concord', u'auction', u'take', u'record', u'nose']
[u'council', u'group', u'upbeat', u'rail', u'project']
[u'council', u'ahead', u'subdivis']
[u'court', u'find', u'guilti', u'rape']
[u'court', u'order', u'public', u'servant', u'steal']
[u'court', u'reserv', u'decis', u'journalist', u'appeal']
[u'crime', u'author', u'reflect', u'killer', u'death']
[u'damag', u'assess', u'diesel', u'spill']
[u'labor', u'leadership']
[u'drought', u'affect', u'south', u'west']
[u'earli', u'work', u'begin', u'timber']
[u'earthquak', u'hit', u'north', u'west', u'china']
[u'econom', u'develop', u'board', u'contract']
[u'tourism', u'ventur', u'concern', u'tarkin', u'log']
[u'educ', u'shake', u'keep', u'tafe', u'riverina']
[u'eriksson', u'settl', u'england', u'futur', u'euro']
[u'farmer', u'urg', u'harvest', u'safe']
[u'feder', u'parliament', u'hear', u'refuge', u'petit']
[u'chief', u'defend', u'snowi', u'fund', u'level']
[u'firefight', u'protest', u'farmer', u'charg']
[u'femal', u'english', u'channel', u'swimmer', u'die']
[u'fleme', u'doubt', u'test', u'pakistan']
[u'forecast', u'revis', u'grain', u'recoveri']
[u'forecast', u'dampen', u'reef', u'coral', u'bleach', u'fear']
[u'solomon', u'militia', u'leader', u'solitari', u'lawyer']
[u'terror', u'suspect', u'arrest', u'london']
[u'frustrat', u'fiji', u'rugbi', u'coach', u'mccallion', u'quit']
[u'fund', u'seek', u'beach', u'secur', u'boost']
[u'futur', u'bleak', u'tasmanian']
[u'gigg', u'ronaldo', u'escap', u'ban', u'arsenal', u'fraca']
[u'gilchrist', u'battl', u'gabba', u'test', u'loom']
[u'gilli', u'battl', u'ahead', u'gabba', u'test']
[u'gold', u'price', u'reach', u'high']
[u'govt', u'accus', u'attack', u'public', u'liabil', u'right']
[u'govt', u'flag', u'concess', u'sweeten']
[u'govt', u'mock', u'latham', u'jekyl', u'hyde', u'charact']
[u'govt', u'negoti', u'media', u'ownership']
[u'greenhous', u'confer', u'open', u'milan']
[u'green', u'phone', u'agenda']
[u'group', u'monitor', u'council', u'marina', u'effort']
[u'group', u'loggerhead', u'catchment', u'claim']
[u'hall', u'creek', u'death', u'consid', u'suspici']
[u'hawk', u'cruis', u'number']
[u'hockeyroo', u'china']
[u'hockeyroo', u'readi', u'china']
[u'hume', u'cootamundra', u'mayor', u'opposit']
[u'hunter', u'pirat', u'coach']
[u'india', u'pakistan', u'resum', u'link']
[u'injuri', u'scan', u'put', u'scud', u'clear']
[u'inquest', u'hear', u'jaidyn', u'leski', u'bruis']
[u'internet', u'mous', u'free', u'china']
[u'investig', u'probe', u'bathtub', u'drown']
[u'iraq', u'battl', u'toll', u'question']
[u'iraqi', u'happi', u'saddam', u'lack', u'confid']
[u'irrig', u'trust', u'rule', u'crop', u'alloc', u'method']
[u'latham', u'howard']
[u'jaguar', u'replac', u'wilson', u'klien']
[u'jenni', u'georg', u'urg', u'solidar', u'leader']
[u'kalgoorli', u'teen', u'face', u'rape', u'trial']
[u'kay', u'creditor', u'leav', u'limbo']
[u'kay', u'face', u'angri', u'investor']
[u'kimberley', u'land', u'hand']
[u'kingfish', u'farm', u'compens', u'opposit', u'say']
[u'labor', u'bet', u'latham']
[u'lancast', u'veteran', u'gather', u'canberra']
[u'latham', u'demand', u'uniti']
[u'latham', u'work', u'beatti', u'say']
[u'latham', u'assign', u'frontbench', u'duti']
[u'latham', u'leadership', u'label', u'gambl']
[u'lawrenc', u'hop', u'latham', u'refuge', u'compromis']
[u'leed', u'dismiss', u'takeov', u'specul']
[u'librari', u'celebr', u'indigen', u'cultur']
[u'accus', u'run', u'ecstasi', u'releas', u'bail']
[u'die', u'polic', u'beat']
[u'die', u'kiteboard', u'accid']
[u'face', u'court', u'drug', u'charg']
[u'face', u'jail', u'offenc']
[u'mayor', u'vote', u'referendum', u'agenda']
[u'mayor', u'unhappi', u'attack']
[u'meatwork', u'revamp', u'boost', u'job']
[u'meet', u'discuss', u'merci', u'centr', u'concern']
[u'melbourn', u'batter', u'sever', u'thunderstorm']
[u'melbourn', u'hors', u'wear', u'nappi']
[u'milosev', u'run', u'serbian', u'parliament']
[u'mine', u'rescu', u'servic', u'mark', u'anniversari']
[u'minist', u'say', u'rocki', u'wait', u'list', u'better']
[u'monkey', u'arriv', u'creat', u'excit']
[u'dengu', u'fever', u'hit', u'cairn']
[u'stop', u'qaeda']
[u'mornington', u'shire', u'chang', u'alcohol', u'plan']
[u'motorcyclist', u'die', u'hit']
[u'concern', u'local', u'govt', u'minist']
[u'mundin', u'announc', u'titl', u'defenc']
[u'near', u'collis', u'blame', u'airspac', u'chang']
[u'middl', u'east', u'peac', u'plan', u'launch']
[u'tourism', u'manag', u'keen', u'start', u'work']
[u'northern', u'ireland', u'rival', u'deadlock']
[u'nrma', u'win', u'constitut']
[u'class', u'resum', u'teacher', u'strike', u'talk']
[u'call', u'crackdown', u'prison', u'phone']
[u'teacher', u'threaten', u'step', u'strike', u'action']
[u'teacher', u'vote', u'strike']
[u'govt', u'reject', u'pointless', u'punish']
[u'examin', u'hour', u'hospit', u'care']
[u'olymp', u'cycl', u'champ', u'delay', u'athen', u'trial']
[u'opposit', u'put', u'heat', u'minist', u'mickelberg']
[u'paedophil', u'jail', u'year']
[u'pakistan', u'lead', u'sami', u'destroy', u'kiwi']
[u'pasminco', u'aim', u'refloat', u'despit', u'takeov']
[u'pasminco', u'stand', u'takeov', u'reject']
[u'pirat', u'dump', u'coach', u'palmer']
[u'plan', u'coolum', u'polic', u'station']
[u'polic', u'bodi', u'dead', u'woman', u'husband']
[u'polic', u'microphon', u'offic']
[u'polic', u'charg', u'drug', u'raid']
[u'policeman', u'award', u'lifesav', u'attempt']
[u'polic', u'speed', u'camera', u'claim', u'wrong']
[u'polic', u'shoot', u'brisban']
[u'polic', u'probe', u'sieg', u'handl']
[u'prosecutor', u'appeal', u'bashir', u'treason', u'acquitt']
[u'public', u'ask', u'help', u'miss', u'toddler']
[u'public', u'sector', u'agreement', u'boost', u'armi', u'reserv']
[u'public', u'sector', u'union', u'dismiss', u'minist', u'threat']
[u'public', u'urg', u'consid', u'drought', u'stricken', u'famili']
[u'govt', u'consid', u'futur', u'schooli', u'involv']
[u'score', u'credit', u'rat']
[u'rain', u'expect', u'continu', u'south', u'east']
[u'rain', u'stop', u'play', u'england', u'lanka', u'test']
[u'rat', u'rise', u'disincent', u'build']
[u'report', u'show', u'sugar', u'industri', u'valu']
[u'reserv', u'expect', u'rais', u'rat']
[u'resourc', u'stock', u'close', u'higher']
[u'retail', u'build', u'figur']
[u'revamp', u'plan', u'remot', u'communiti']
[u'river', u'bodi', u'consid', u'suspici']
[u'road', u'safeti', u'concern', u'motorist']
[u'rockhampton', u'councillor', u'quit']
[u'ronaldinho', u'barca', u'clash', u'real']
[u'rumsfeld', u'win', u'foot', u'mouth', u'award']
[u'rural', u'victoria', u'build', u'construct', u'growth']
[u'saddam', u'aid', u'catch', u'kill']
[u'govt', u'urg', u'rail', u'decis']
[u'sale', u'world', u'trade', u'centr', u'share', u'near']
[u'vietnam', u'news', u'broadcast']
[u'scandal', u'prompt', u'boe', u'ceo', u'resign']
[u'scheme', u'control', u'pest', u'go', u'global']
[u'scientist', u'sail', u'antarct', u'mission']
[u'scottish', u'rugbi', u'chief', u'sack']
[u'shale', u'firm', u'fall', u'receivership']
[u'shark', u'bank', u'raper']
[u'shire', u'want', u'airport', u'ownership']
[u'south', u'korea', u'hold', u'firm', u'iraq', u'troop', u'decis']
[u'speed', u'unlik', u'caus', u'riverland', u'road', u'death', u'polic']
[u'lanka', u'toss', u'test', u'england']
[u'stang', u'fear', u'life', u'iraq']
[u'storm', u'leav', u'home', u'dark']
[u'super', u'card', u'chief']
[u'surf', u'injuri', u'compo', u'fight', u'go', u'high', u'court']
[u'surg', u'dollar', u'crash', u'record', u'woodchip', u'export']
[u'tasmanian', u'fire', u'threaten', u'power', u'line']
[u'labor', u'focus', u'howard']
[u'teacher', u'protest']
[u'teacher', u'stop', u'work', u'disput']
[u'teacher', u'decid', u'industri', u'unrest']
[u'teacher', u'protest', u'offer']
[u'tennant', u'creek', u'aim', u'boost', u'tourist', u'number']
[u'thorp', u'hackett', u'name', u'year', u'best', u'swimmer']
[u'thousand', u'march', u'oppos', u'sbss', u'vietnames', u'news']
[u'kill', u'israel', u'nab', u'want', u'milit']
[u'student', u'kill', u'fall', u'pack']
[u'train', u'driver', u'strike', u'pacif', u'nation']
[u'trilater', u'talk', u'north', u'korea']
[u'trucki', u'clear', u'pedestrian', u'death']
[u'ultra', u'light', u'make', u'emerg', u'land']
[u'unusu', u'spring', u'bring', u'soak', u'region']
[u'amateur', u'champ', u'confid', u'ahead', u'master']
[u'blast', u'kyoto', u'pact', u'straitjacket']
[u'dollar', u'falter', u'aussi', u'surg']
[u'end', u'scrutini', u'muslim', u'foreign', u'visitor']
[u'sport', u'baron', u'rais', u'stake']
[u'view', u'iraqi', u'ambush', u'signific', u'victori']
[u'vandal', u'close', u'camp', u'grind']
[u'govern', u'extend', u'fish', u'amnesti']
[u'premier', u'talk', u'industri']
[u'warm', u'welcom', u'predict', u'dokic', u'return']
[u'water', u'qualiti', u'problem', u'bendora']
[u'water', u'restrict', u'unchang', u'despit', u'closur']
[u'wilko', u'watch', u'world', u'final', u'video']
[u'wine', u'return', u'fall', u'fourth', u'year']
[u'reject', u'riverland', u'closur', u'specul']
[u'yorkshir', u'bank', u'harvey']
[u'young', u'socceroo', u'readi', u'brazil', u'test', u'ang']
[u'zahra', u'welcom', u'latham', u'leader']
[u'resign', u'pakistan', u'cricket', u'board', u'chief']
[u'abort', u'spark', u'legal', u'battl']
[u'abus', u'alleg', u'surpris']
[u'academ', u'see', u'pros', u'con', u'latham', u'appoint']
[u'divert', u'melbourn']
[u'afghan', u'soldier', u'kill', u'clash', u'milit']
[u'discuss', u'nurs', u'staff', u'woe']
[u'alga', u'lake', u'fish', u'kill']
[u'alleg', u'taxi', u'devil', u'serial', u'killer', u'arrest', u'china']
[u'amnesti', u'arriv', u'burma', u'visit']
[u'anderson', u'reject', u'plane', u'near', u'miss', u'claim']
[u'asic', u'launch', u'kay', u'receivership', u'process']
[u'asic', u'urg', u'investig', u'nrma', u'vote']
[u'asio', u'say', u'seven', u'block', u'enter', u'australia']
[u'aspirin', u'link', u'reduc', u'risk', u'stomach', u'cancer']
[u'fear', u'dead', u'india', u'crash']
[u'australian', u'economi', u'surg', u'forward']
[u'hailston', u'rain', u'swift', u'creek']
[u'bosnian', u'serb', u'get', u'year', u'massacr']
[u'brack', u'prais', u'emerg', u'worker', u'storm']
[u'brazilian', u'get', u'green', u'light']
[u'britain', u'launch', u'athlet', u'inquiri']
[u'british', u'advanc', u'copi', u'report']
[u'british', u'rider', u'wegelius', u'clear', u'dope']
[u'busi', u'lobbi', u'condemn', u'rate', u'rise']
[u'coff', u'includ', u'jetstar', u'plan']
[u'offic', u'region', u'affair', u'certainti']
[u'review', u'reserv', u'bank', u'board', u'amid']
[u'calm', u'firi', u'continu']
[u'chang', u'announc', u'drought', u'elig']
[u'citrus', u'name', u'cancer', u'heart', u'diseas', u'fighter']
[u'claim', u'region', u'aviat', u'probe', u'benefit', u'bigger']
[u'clark', u'clear', u'riotous', u'behaviour']
[u'clark', u'join', u'warn', u'hampshir']
[u'clark', u'futur', u'doubt', u'appeal', u'rule']
[u'cold', u'comfort', u'kid', u'echinacea', u'studi']
[u'commerc', u'ballarat', u'look', u'ahead']
[u'concern', u'tuna', u'industri', u'uncertainti']
[u'convict', u'murder', u'appeal', u'high', u'court']
[u'council', u'back', u'develop']
[u'council', u'busi', u'urg', u'share', u'region']
[u'court', u'action', u'seek', u'mine', u'leas', u'return']
[u'court', u'ask', u'kay', u'stay']
[u'csiro', u'examin', u'invas']
[u'death', u'connect', u'ecstasi', u'polic', u'warn']
[u'dept', u'seek', u'idea', u'region', u'health', u'care']
[u'dollar', u'hit', u'fresh', u'year', u'high']
[u'downpour', u'littl', u'chang', u'rain', u'total']
[u'downpour', u'soak', u'huntingdal']
[u'chase', u'extradit', u'english', u'tourist']
[u'draft', u'port', u'river', u'sanctuari', u'open', u'public']
[u'educ', u'chief', u'will', u'talk', u'teacher', u'hous']
[u'educ', u'reform', u'progress', u'nation', u'senat']
[u'england', u'gile', u'strike']
[u'environ', u'dept', u'happi', u'shoot', u'fine']
[u'farmer', u'feder', u'angri', u'rat', u'hike']
[u'feder', u'fund', u'seek', u'combat', u'suicid']
[u'fifa', u'chief', u'urg', u'club', u'limit', u'domest', u'leagu']
[u'victim', u'consid', u'commemor', u'option']
[u'flood', u'southern', u'franc', u'kill']
[u'forgac', u'worker', u'stop', u'work', u'foreign', u'worker']
[u'chief', u'magistr', u'releas', u'jail']
[u'doctor', u'appeal', u'deregistr']
[u'arrest', u'alleg', u'qaeda', u'link']
[u'strike', u'lightn', u'blue', u'mountain']
[u'fourteen', u'dead', u'rebel', u'clash', u'uganda']
[u'french', u'coach', u'laport', u'decis', u'futur']
[u'galatasaray', u'stay', u'aliv', u'juve']
[u'ganguli', u'pay', u'tribut', u'waugh']
[u'lesbian', u'program', u'receiv', u'polic']
[u'german', u'flick', u'top', u'shortlist', u'european', u'film']
[u'gilchrist', u'play']
[u'gold', u'price', u'high']
[u'golf', u'associ', u'investig', u'illeg', u'driver']
[u'govt', u'float', u'idea', u'older', u'employe', u'work']
[u'govt', u'sweeten', u'chang', u'deal']
[u'return', u'visit', u'rise']
[u'green', u'group', u'air', u'coal', u'concern']
[u'growth', u'figur', u'rat', u'rise']
[u'gunner', u'southampton', u'leagu', u'quarter']
[u'haas', u'back', u'wiluna', u'council', u'probe']
[u'health', u'servic', u'reject', u'nurs', u'staff', u'claim']
[u'hid', u'leadership', u'bacon', u'fine', u'fettl']
[u'higher', u'rat', u'affect', u'hous', u'price']
[u'hockeyroo', u'muscl', u'argentina']
[u'hous', u'afford', u'issu', u'lead', u'sydney', u'slum']
[u'howard', u'tip', u'latham', u'honeymoon']
[u'huge', u'croc', u'captur', u'rockhampton']
[u'huntley', u'cross', u'examin', u'girl', u'death']
[u'icac', u'warn', u'employ', u'fals', u'qualif']
[u'india', u'crash', u'claim', u'live']
[u'indigen', u'justic', u'fund', u'boost']
[u'indi', u'driver', u'brack', u'releas', u'hospit']
[u'itali', u'approv', u'controversi', u'media']
[u'jackson', u'undergo', u'test', u'stress', u'fractur']
[u'johansson', u'eye', u'comeback']
[u'judg', u'rule', u'dismiss', u'clark', u'charg']
[u'labor', u'begin', u'latham']
[u'labor', u'meet', u'pick', u'shadow', u'cabinet']
[u'latham', u'leadership', u'labor', u'disun', u'martin']
[u'lawyer', u'jump', u'mitchel', u'caus']
[u'leicest', u'deni', u'coach', u'role', u'johnson']
[u'lightn', u'strike', u'blue', u'mountain']
[u'local', u'lender', u'consid', u'rat', u'rise']
[u'lodg', u'seek', u'politician', u'help', u'stay', u'aliv']
[u'mackay', u'join', u'ethanol', u'blend', u'trial']
[u'magnet', u'water', u'plan', u'pipelin']
[u'pay', u'miss', u'world', u'ticket']
[u'man', u'bodi', u'sydney']
[u'shoot', u'polic', u'question']
[u'shoot', u'adelaid', u'sieg']
[u'stab', u'home', u'invas']
[u'marin', u'park', u'rezon', u'plan', u'debat']
[u'matern', u'unit', u'review']
[u'mayor', u'unhappi', u'chang', u'educ', u'offic']
[u'medicar', u'packag', u'talk', u'stall']
[u'melbourn', u'brace', u'storm']
[u'melbourn', u'clean', u'freak', u'storm']
[u'melbourn', u'hobart', u'attract', u'strong', u'fleet']
[u'melbourn', u'storm', u'clean', u'continu']
[u'menu', u'titan', u'sell']
[u'scare', u'blame']
[u'oper', u'get', u'licenc', u'deadlin']
[u'miner', u'acquir', u'west', u'tenement']
[u'minist', u'prais', u'safeti']
[u'mosaic', u'boost', u'output']
[u'reject', u'cabinet', u'reshuffl', u'specul']
[u'seek', u'probe', u'rail', u'tunnel', u'plan']
[u'unhappi', u'receivership']
[u'mugab', u'continu', u'attack', u'australia', u'commonwealth']
[u'murali', u'frustrat', u'england']
[u'nat', u'question', u'rule', u'claim']
[u'negoti', u'continu', u'strand', u'sheep']
[u'seizur', u'spark', u'illeg', u'fish', u'warn']
[u'requir', u'greater', u'disclosur', u'club']
[u'sale', u'overtak', u'record']
[u'elmor', u'bank', u'open', u'door']
[u'nightclub', u'frustrat', u'trade', u'hour']
[u'deal', u'enterpris', u'impass']
[u'north', u'west', u'countri', u'gold', u'credit', u'union', u'talk']
[u'north', u'west', u'support', u'latham']
[u'booz', u'miss', u'world', u'contest']
[u'draw', u'help', u'origin', u'star']
[u'review', u'final', u'format']
[u'nuclear', u'reactor', u'shut', u'flood', u'franc']
[u'older', u'screen', u'prostat', u'cancer', u'studi']
[u'ontzinc', u'determin', u'pasminco']
[u'opera', u'hous', u'step', u'closer', u'world', u'heritag']
[u'pair', u'accus', u'poki', u'raid', u'face', u'court']
[u'panel', u'offer', u'parksid', u'plan', u'input']
[u'phoenix', u'mcmahon', u'scoop', u'netbal', u'award']
[u'pilot', u'escap', u'ultralight', u'crash']
[u'pirat', u'coach']
[u'polic', u'defend', u'action', u'offic', u'restaur']
[u'polic', u'britain', u'arrest', u'anti', u'terrorist', u'sweep']
[u'polic', u'probe', u'sieg', u'shoot']
[u'polic', u'reveal', u'link', u'randwick', u'doubl', u'murder']
[u'polic', u'seek', u'help', u'cyclist', u'stab']
[u'poor', u'children', u'face', u'literaci', u'problem', u'research']
[u'port', u'recruit', u'prim', u'year']
[u'privat', u'anim', u'sell']
[u'product', u'face', u'court', u'action', u'cancel']
[u'public', u'ask', u'help', u'miss', u'woman']
[u'public', u'urg', u'wari', u'nest', u'croc']
[u'public', u'urg', u'cyclon', u'prepar']
[u'public', u'urg', u'save', u'water', u'restrict', u'loom']
[u'qanta', u'name', u'honour', u'kununurra']
[u'polic', u'investig', u'suspect', u'murder', u'suicid']
[u'raid', u'net', u'illeg', u'plant', u'hormon']
[u'rain', u'hamper', u'test', u'prepar']
[u'raper', u'upbeat', u'shark', u'prospect']
[u'happi', u'region', u'affair', u'offic', u'keep']
[u'region', u'aviat', u'inquiri', u'deliv', u'recommend']
[u'renison', u'remain', u'close']
[u'research', u'effort', u'step', u'grapevin', u'leaf']
[u'reserv', u'bank', u'expect', u'boost', u'rat']
[u'revamp', u'plan', u'port', u'wyndham', u'road']
[u'rural', u'dentist', u'short', u'suppli']
[u'rural', u'despair', u'rate', u'rise']
[u'russia', u'tell', u'stay', u'georgia', u'busi']
[u'russia', u'block', u'current', u'kyoto', u'pact', u'kremlin']
[u'sacr', u'object', u'return', u'indigen', u'elder']
[u'issu', u'scam', u'warn']
[u'opposit', u'highlight', u'hospit', u'wait', u'list']
[u'treasur', u'stand', u'public', u'liabil', u'chang']
[u'scholarship', u'offer', u'island']
[u'school', u'council', u'hit', u'complaint']
[u'scott', u'stick', u'tiger']
[u'search', u'begin', u'north', u'east', u'gold']
[u'second', u'water', u'plan', u'consid', u'fairer']
[u'septemb', u'exhibit', u'open', u'york']
[u'sheep', u'highway', u'truck', u'roll']
[u'shipwreck', u'add', u'museum', u'databas']
[u'rhino', u'sydney', u'holiday']
[u'sixer', u'bullet', u'strong']
[u'korean', u'opposit', u'boycott']
[u'solomon', u'look', u'public', u'servic', u'issu']
[u'south', u'africa', u'name', u'cricket', u'year']
[u'south', u'east', u'deliv', u'tidi', u'perform']
[u'spain', u'reconfirm', u'iraq', u'commit']
[u'storm', u'warn', u'issu']
[u'strong', u'growth', u'figur', u'boost', u'market']
[u'student', u'help', u'water', u'save', u'push']
[u'support', u'longreach', u'airport', u'push']
[u'survey', u'suggest', u'properti', u'slow']
[u'talk', u'delay', u'nativ', u'veget']
[u'tour', u'oper', u'criticis']
[u'thai', u'claim', u'fight', u'drug']
[u'tiger', u'disgust', u'engag', u'hassl']
[u'toad', u'prank', u'leav', u'hundr', u'dark']
[u'toowoomba', u'better', u'christma', u'trade']
[u'tourism', u'council', u'upset', u'landown']
[u'town', u'welcom', u'aviat', u'report']
[u'tractor', u'accid', u'land', u'farmer', u'hospit']
[u'treasur', u'hunter', u'uncov', u'million', u'lose', u'gold']
[u'trio', u'custodi', u'mornington', u'unrest']
[u'truck', u'accid', u'block', u'sydney', u'wollongong', u'highway']
[u'tuna', u'farm', u'plan', u'move', u'closer', u'realiti']
[u'tuna', u'fisher', u'seek', u'manag', u'plan', u'certainti']
[u'assembl', u'meet', u'isra', u'wall']
[u'uncertainti', u'latham', u'abil', u'tackl', u'green']
[u'union', u'worker', u'enterpris', u'bargain']
[u'uni', u'kalgoorli', u'boulder', u'campus', u'get', u'master']
[u'univers', u'win', u'nation', u'award']
[u'deni', u'saddam', u'aid', u'captur']
[u'slide', u'good', u'news', u'aussi', u'dollar']
[u'soldier', u'kill', u'iraq', u'ambush']
[u'auction', u'seiz', u'florida', u'bull', u'semen']
[u'warn', u'terrorist', u'threat', u'kenyan', u'capit']
[u'valencia', u'hold', u'stalem', u'real', u'sociedad']
[u'govt', u'defend', u'emerg', u'phone', u'overload', u'wake']
[u'oppn', u'urg', u'polic', u'stun']
[u'govt', u'say', u'power', u'rush']
[u'minist', u'stand', u'firm', u'mickelberg', u'appeal']
[u'claim', u'calm', u'zealous']
[u'polic', u'investig', u'perth', u'stab']
[u'readi', u'govern', u'iraq', u'presid']
[u'westsid', u'plaza', u'revamp', u'plan', u'reveal']
[u'wheelchair', u'user', u'urg']
[u'whitsunday', u'council', u'back', u'flight', u'plan']
[u'zimbabw', u'treason', u'trial', u'resum']
[u'hawk', u'win', u'way']
[u'action', u'urg', u'grape', u'grower']
[u'afghani', u'return', u'aust', u'student', u'visa']
[u'afghanistan', u'like', u'hell', u'return', u'deporte']
[u'agricultur', u'colleg', u'notic']
[u'traffic', u'defend', u'near', u'miss']
[u'ancient', u'rock', u'tasmania']
[u'anderson', u'announc', u'aviat', u'secur', u'upgrad']
[u'anderson', u'meet', u'legal', u'advis']
[u'asio', u'expect', u'pass', u'senat']
[u'aust', u'popul', u'hit', u'million']
[u'australia', u'bat', u'shower', u'gabba']
[u'australia', u'sign', u'missil', u'shield']
[u'author', u'probe', u'emerg', u'failur']
[u'bank', u'announc', u'role', u'right', u'issu']
[u'bank', u'boss', u'warn', u'rate', u'rise']
[u'bank', u'sell', u'life', u'insur']
[u'bank', u'resourc', u'push']
[u'beatti', u'threaten', u'ettridg', u'claim']
[u'bega', u'tap', u'youth', u'danc', u'fund']
[u'bhopal', u'tragedi', u'turn']
[u'blue', u'green', u'alga', u'lake', u'charm']
[u'bomb', u'squad', u'polic', u'seiz', u'explos', u'border']
[u'brigitt', u'qaeda', u'terrorist', u'lawyer']
[u'british', u'muslim', u'charg', u'conspir', u'shoe']
[u'brit', u'bonus', u'london', u'marathon']
[u'bryant', u'lead', u'laker', u'ralli', u'struggl', u'spur']
[u'bush', u'set', u'elect', u'fundrais', u'record']
[u'educ', u'portfolio', u'colleg']
[u'educ', u'trial']
[u'technolog', u'stop', u'train', u'surf']
[u'shire', u'merger', u'incent']
[u'boost', u'kalgoorli', u'homeless', u'hous']
[u'chang', u'ail', u'health', u'educ', u'servic']
[u'calm', u'clear', u'park']
[u'cannib', u'confess', u'trial', u'shock', u'germani']
[u'chines', u'communist', u'parti', u'member', u'get', u'year']
[u'citi', u'countri', u'divid', u'widen', u'popul', u'drift']
[u'clark', u'ask', u'reinstat']
[u'clark', u'await', u'court', u'decis']
[u'clark', u'convict', u'fin']
[u'captain', u'bird']
[u'communiti', u'farm', u'plan', u'draw', u'good', u'govt', u'respons']
[u'concert', u'band', u'compet', u'nation', u'titl']
[u'cont', u'howler', u'give', u'milan', u'edg', u'italian']
[u'council', u'open', u'mind', u'caneland']
[u'council', u'reject', u'govt', u'report', u'claim']
[u'council', u'urg', u'form', u'valla', u'beach', u'develop', u'plan']
[u'council', u'want', u'brake', u'truck', u'stop', u'plan']
[u'court', u'drop', u'teen', u'rape', u'charg']
[u'crisi', u'club', u'leed', u'repriev']
[u'crow', u'command', u'attent', u'coff', u'screen']
[u'davenport', u'spearhead', u'pacif', u'open']
[u'death', u'spark', u'coron', u'life', u'jacket']
[u'deer', u'loos', u'sydney', u'street']
[u'defenc', u'forc', u'personnel', u'test', u'posit', u'drug']
[u'deregul', u'cost', u'dairi', u'farmer', u'year']
[u'dinosaur', u'remain', u'queensland']
[u'disast', u'declar', u'french', u'flood']
[u'disney', u'rake', u'billion', u'offic']
[u'dodt', u'hop', u'master']
[u'dollar', u'head', u'cent']
[u'probe', u'abort', u'trial']
[u'condit', u'halv', u'valencia', u'orang', u'harvest', u'crop']
[u'educ', u'chief', u'reject', u'dept', u'shake', u'fear']
[u'emerg', u'plan', u'form', u'central', u'west']
[u'employ', u'group', u'face', u'critic']
[u'england', u'fight', u'murali', u'magic']
[u'english', u'club', u'chase', u'rivaldo']
[u'ethanol', u'blend', u'sale', u'sugar', u'region']
[u'ettridg', u'seek', u'probe', u'fraud', u'case']
[u'expect', u'waugh', u'ruthless', u'australian', u'india']
[u'fake', u'letter', u'spark', u'fair', u'trade', u'warn']
[u'farmer', u'hop', u'rain']
[u'fear', u'rate', u'rise', u'toll', u'ail', u'farmer']
[u'fear', u'rat', u'rise', u'hurt', u'region', u'victoria']
[u'fisher', u'reel', u'cray', u'price']
[u'fish', u'group', u'seek', u'reef', u'rezon', u'compo']
[u'fletcher', u'jone', u'union', u'urg', u'discuss', u'loss']
[u'dead', u'southern', u'philippin', u'attack']
[u'fund', u'boost', u'plan', u'labor', u'council']
[u'game', u'lodg', u'owner', u'deni', u'betray', u'tiger', u'privaci']
[u'project', u'pipelin', u'south', u'east']
[u'govt', u'dismiss', u'traffic', u'concern']
[u'govt', u'pledg', u'upgrad', u'navi', u'frigat']
[u'govt', u'studi', u'radioact', u'wast', u'dump', u'feasibl']
[u'green', u'group', u'head', u'court', u'east']
[u'hail', u'storm', u'payout', u'unlik', u'christma']
[u'health', u'care', u'job', u'creat']
[u'health', u'deadlin', u'loom', u'store']
[u'heavi', u'rain', u'caus', u'flood', u'sydney']
[u'henman', u'turn', u'american', u'coach']
[u'hickss', u'lawyer', u'hope', u'meet', u'christma']
[u'higher', u'educ', u'near', u'senat', u'vote']
[u'hockeyroo', u'grind', u'draw', u'argentina']
[u'hospit', u'acknowledg', u'staff', u'shortag']
[u'hous', u'price', u'continu', u'rise']
[u'hous', u'shortag', u'predict', u'seven', u'year']
[u'howard', u'arriv', u'nigeria']
[u'hugh', u'bid', u'tour', u'card']
[u'hunt', u'second', u'rocki', u'croc']
[u'independ', u'senat', u'action', u'criticis']
[u'indigen', u'leader', u'warn', u'abus', u'backlash']
[u'inquiri', u'shoot', u'expect', u'week']
[u'invocar', u'funer', u'chain', u'list']
[u'warn', u'discrimin', u'muslim']
[u'iron', u'mine', u'compani', u'push', u'pilbara', u'expans', u'plan']
[u'japan', u'send', u'troop', u'iraq', u'report']
[u'jetstar', u'benefit', u'unlik', u'outback']
[u'johansson', u'tenni', u'return', u'adelaid']
[u'juri', u'consid', u'biki', u'drug', u'case', u'evid']
[u'katsidi', u'underestim', u'kenyan', u'boxer']
[u'kay', u'order', u'dispos', u'asset']
[u'labor', u'want', u'tobacco', u'compani', u'butt']
[u'langer', u'lead', u'aussi', u'charg']
[u'langer', u'rock', u'india']
[u'latham', u'meet', u'ambassador']
[u'latham', u'name', u'crean', u'strategi', u'post']
[u'latham', u'squar', u'elect', u'campaign']
[u'latham', u'vow', u'reunit', u'break', u'parti']
[u'lazio', u'edg', u'closer', u'quarter', u'final']
[u'leagu', u'kicker', u'face', u'time', u'wast', u'fin']
[u'leed', u'share', u'soar', u'sheikh', u'confirm']
[u'liber', u'pay', u'price', u'cross', u'floor']
[u'liotta', u'take', u'best', u'human', u'video', u'game', u'award']
[u'liverpool', u'crash', u'leagu']
[u'local', u'council', u'name', u'complaint', u'list']
[u'lonard', u'cain', u'share', u'master', u'lead']
[u'lonard', u'master', u'defenc', u'track']
[u'long', u'wait', u'goat', u'abattoir', u'revamp']
[u'lukin', u'port', u'lincoln', u'plan']
[u'get', u'year', u'speed', u'drug', u'make', u'oper']
[u'jail', u'plead', u'guilti', u'incest']
[u'recov', u'lightn', u'strike']
[u'shoot', u'polic', u'brandish']
[u'face', u'wollongong', u'murder', u'committ']
[u'unit', u'target', u'viduka', u'report']
[u'target', u'viduka']
[u'marshal', u'centuri', u'vain', u'pakistan']
[u'marshal', u'island', u'unhappi', u'closur', u'health']
[u'mayor', u'welcom', u'land', u'develop', u'plan']
[u'medic', u'centr', u'test', u'cool', u'tower', u'bacteria']
[u'meet', u'give', u'thumb', u'supermarket', u'plan']
[u'mine', u'leas', u'trial', u'loom', u'year']
[u'area', u'experi', u'athlet', u'role', u'model', u'scheme']
[u'mous', u'genom', u'avail', u'hardback', u'edit']
[u'deliv', u'plan', u'countrylink', u'track']
[u'present', u'countrylink', u'report', u'costa']
[u'murder', u'diplomat', u'bodi', u'arriv', u'japan']
[u'musician', u'hop', u'inspir', u'volunt', u'firefight']
[u'mystic', u'river', u'win', u'season', u'best', u'film', u'award']
[u'nat', u'attack', u'rate', u'rise']
[u'nat', u'lament', u'temporari', u'grain', u'cart', u'permit']
[u'food', u'develop']
[u'polic', u'station', u'open', u'border']
[u'singapor', u'darwin', u'flight', u'announc']
[u'news', u'limit', u'accus', u'costello', u'cover']
[u'asbesto', u'burni', u'hospit']
[u'doubt', u'global', u'warm', u'real']
[u'cut', u'credit', u'union', u'merger', u'plan']
[u'norfolk', u'probe', u'uncov', u'fear', u'intimid']
[u'unveil', u'rule', u'chang']
[u'govt', u'urg', u'chang', u'council', u'rate', u'peg']
[u'call', u'budget', u'surplus', u'spend', u'hous']
[u'economi', u'like', u'suffer', u'rate', u'hike']
[u'number', u'death', u'custodi', u'drop']
[u'offset', u'alpin', u'case', u'resum', u'court']
[u'seven', u'staff', u'abus', u'perth', u'hospit']
[u'paltrow', u'expect', u'babi', u'rock', u'boyfriend']
[u'pick', u'avenu', u'site', u'choos', u'age', u'care', u'facil']
[u'plan', u'water', u'price', u'hike', u'challeng']
[u'elect', u'eighth']
[u'offer', u'mix', u'reaction', u'aust', u'polic', u'deploy']
[u'polic', u'miss', u'warrnambool', u'woman']
[u'polic', u'investig', u'possibl', u'murder', u'suicid']
[u'polic', u'pair', u'honour', u'braveri']
[u'polic', u'probe', u'suspici', u'death', u'launceston']
[u'polic', u'recaptur', u'escape', u'year']
[u'polic', u'seek', u'pair', u'sydney', u'shoot']
[u'polic', u'withdraw', u'motorcyclist', u'speed', u'fin']
[u'port', u'hedland', u'detaine', u'stage', u'protest']
[u'powel', u'launch', u'unoffici', u'middl', u'east', u'peac', u'plan']
[u'powel', u'urg', u'bigger', u'role', u'nato', u'iraq']
[u'probe', u'continu', u'near', u'miss']
[u'prostitut', u'case', u'involv', u'offici']
[u'public', u'urg', u'continu', u'save', u'water']
[u'putin', u'accus', u'rig', u'upcom', u'elect']
[u'coupl', u'win', u'nation', u'famili', u'year', u'award']
[u'properti', u'market', u'unlik', u'slow', u'reiq']
[u'raaf', u'helicopt', u'dramat', u'rescu']
[u'ranger', u'trebl', u'defenc', u'intact']
[u'real', u'stun', u'atletico', u'barca', u'thrash', u'malaga']
[u'cross', u'warn', u'terror', u'erod', u'human']
[u'region', u'migrant', u'servic', u'seek', u'feder', u'fund', u'boost']
[u'report', u'urg', u'rylston', u'council', u'probe']
[u'rise', u'demand', u'salvo', u'servic', u'push']
[u'river', u'cross', u'chang', u'moot', u'fatal', u'accid']
[u'rivkin', u'excus', u'offset', u'court', u'action']
[u'road', u'extens', u'project', u'begin', u'today']
[u'rudd', u'impress', u'latham', u'perform']
[u'rugbi', u'world', u'help', u'boost', u'trade', u'figur']
[u'rumsfeld', u'urg', u'afghan', u'warlord', u'disarm', u'fighter']
[u'govt', u'defend', u'fund', u'offer', u'jetstar', u'base']
[u'salvat', u'armi']
[u'saudi', u'arrest', u'suspect', u'riyadh', u'bomb']
[u'scientist', u'crack', u'caus', u'geomagnet', u'storm']
[u'drive', u'death', u'case', u'near']
[u'seven', u'kill', u'shanghai', u'explos']
[u'shortag', u'valencia', u'orang', u'expect']
[u'turkish', u'kurd', u'send', u'home', u'fail']
[u'korean', u'parliament', u'overrid', u'presidenti', u'veto']
[u'solomon', u'coup', u'leader', u'face', u'fresh', u'charg']
[u'need', u'oper']
[u'springbok', u'coach', u'step', u'report']
[u'storm', u'black', u'home']
[u'storm', u'sweep', u'newcastl']
[u'stronger', u'dollar', u'take', u'toll', u'develop']
[u'suprem', u'court', u'hear', u'medic', u'misconduct', u'appeal']
[u'sydney', u'face', u'anti', u'terror', u'charg']
[u'sydney', u'charg', u'terror', u'law']
[u'sydney', u'radio', u'merger', u'call']
[u'tap', u'convers', u'play', u'mickelberg', u'court']
[u'parliament', u'recognis', u'aborigin', u'owner']
[u'terror', u'suspect', u'lawyer', u'want', u'close', u'watch']
[u'thousand', u'sign', u'petit', u'live', u'export', u'trade']
[u'face', u'court', u'unclassifi', u'porn']
[u'tourism', u'oper', u'buy', u'anim', u'report']
[u'townsvill', u'council', u'consid', u'biofuel']
[u'hospitalis', u'unit', u'block']
[u'genocid', u'court', u'sentenc', u'rwandan', u'life']
[u'uniform', u'need', u'firework', u'sale', u'coron']
[u'say', u'fight', u'mine', u'need', u'million']
[u'wait', u'report', u'iraq', u'weapon']
[u'assign', u'defenc', u'lawyer', u'hick']
[u'athlet', u'board', u'propos', u'life', u'ban', u'steroid']
[u'author', u'launch', u'appeal', u'moussaoui']
[u'creat', u'paramilitari', u'forc', u'iraq']
[u'town', u'edg', u'sniper', u'shoot']
[u'worker', u'work', u'harder', u'report']
[u'polic', u'trial', u'stun', u'gun']
[u'victorian', u'galleri', u'reopen']
[u'viduka', u'back', u'gray', u'leed']
[u'govt', u'consid', u'tourism', u'plan', u'feasibl']
[u'wasim', u'face', u'legal', u'battl']
[u'watchdog', u'find', u'breach']
[u'water', u'storag', u'boost', u'eas', u'restrict']
[u'wooli', u'warehous', u'worker', u'strike']
[u'world', u'oldest', u'soccer', u'club', u'save']
[u'abbott', u'rebuk', u'latham', u'jibe']
[u'aborigin', u'communiti', u'closer', u'healthi']
[u'aborigin', u'women', u'sterilis', u'consent']
[u'accc', u'take', u'legal', u'action', u'real', u'estat', u'group']
[u'economi', u'crippl', u'free', u'trade']
[u'activist', u'conced', u'sheep', u'ship']
[u'aguilera', u'eminem', u'timberlak', u'grammi', u'nod']
[u'forc', u'come', u'boati', u'rescu']
[u'airport', u'group', u'play', u'secur', u'boost', u'cost']
[u'allenbi', u'shoot', u'clear', u'huntingdal']
[u'alzheim', u'leav', u'reagan', u'unabl', u'speak', u'fee']
[u'amnesti', u'call', u'detent', u'centr', u'probe', u'riot']
[u'anger', u'hobart', u'schoolgirl', u'latest', u'visa', u'extens']
[u'anim', u'activist', u'protest', u'sheep', u'export']
[u'anim', u'trial', u'rais', u'hop', u'sar', u'vaccin']
[u'annan', u'honour', u'memori', u'georg', u'harrison']
[u'asic', u'probe', u'nrma', u'complaint']
[u'atsic', u'board', u'clark']
[u'aussi', u'crash', u'rugbi', u'seven']
[u'aussi', u'surviv', u'seven', u'scar']
[u'aust', u'post', u'probe', u'wollongong', u'porn', u'claim']
[u'australian', u'dollar', u'march']
[u'australian', u'advis', u'travel', u'iraq']
[u'ban', u'paper', u'defi', u'mugab', u'appear', u'abuja', u'summit']
[u'bendigo', u'campus', u'consid', u'option']
[u'bass', u'boost', u'plan', u'brogo']
[u'bank', u'pass', u'rat', u'rise']
[u'breaker', u'lose', u'streak']
[u'british', u'dentist', u'award', u'visa']
[u'broadband', u'centr', u'launch', u'melbourn']
[u'broom', u'bomb', u'threat', u'backfir']
[u'bush', u'can', u'steel', u'import', u'duti']
[u'bush', u'draw', u'steel']
[u'specif', u'norfolk', u'intimid']
[u'shark', u'remov', u'metro', u'beach']
[u'go', u'stop', u'centr', u'close']
[u'reject', u'govt', u'wealth', u'privileg']
[u'capsiz', u'australian', u'boat', u'wash']
[u'cathol', u'church', u'remain', u'silent', u'abus', u'case']
[u'chogm', u'open', u'nigeria']
[u'christma', u'tree', u'auction', u'rais', u'money', u'cancer']
[u'claremont', u'introduc', u'develop', u'restrict']
[u'clark', u'appeal', u'atsic', u'commission']
[u'clark', u'ask', u'vanston']
[u'colli', u'motorplex', u'power', u'ahead']
[u'commonwealth', u'leader', u'arriv', u'nigeria', u'chogm']
[u'cooper', u'seek', u'log', u'disput']
[u'cost', u'educ', u'reform', u'creat', u'tier']
[u'council', u'knock', u'valla', u'beach', u'shop', u'complex']
[u'councillor', u'urg', u'support', u'christma', u'spirit']
[u'council', u'share', u'road', u'clean', u'fund']
[u'court', u'consid', u'leski', u'claim']
[u'critic', u'question', u'missil', u'allianc']
[u'david', u'hem', u'die', u'age']
[u'death', u'toll', u'hit', u'russian', u'train', u'blast']
[u'debat', u'continu', u'alma', u'pool']
[u'dinosaur', u'site', u'expect', u'yield', u'find']
[u'disput', u'radioact', u'wast', u'continu']
[u'docker', u'parker', u'veteran', u'list']
[u'want', u'fri']
[u'drought', u'christma', u'sale']
[u'drug', u'squad', u'offic', u'court']
[u'effort', u'help', u'smelli', u'basin']
[u'electr', u'fault', u'leav', u'pool', u'user', u'high']
[u'electr', u'engulf', u'movi', u'world', u'attract']
[u'emerg', u'call', u'handl', u'best', u'report']
[u'esper', u'highlight', u'airport', u'secur', u'cost']
[u'lover', u'turn', u'janitor', u'english']
[u'explos', u'hear', u'kabul', u'rumsfeld', u'visit']
[u'explos', u'hitch', u'sink', u'plan', u'earli', u'scuttl']
[u'extend', u'wast', u'site', u'consult', u'unlik']
[u'farina', u'slam', u'oceania', u'play', u'plan']
[u'investig', u'indonesian', u'murder', u'case']
[u'fear', u'goondiwindi', u'struggl', u'motel', u'bed']
[u'fear', u'road', u'toll', u'rise', u'wake', u'polic', u'budget']
[u'fear', u'secur', u'plan', u'prove', u'cost', u'region']
[u'govt', u'bulli', u'tactic', u'educ']
[u'fergi', u'rest', u'heart', u'treatment']
[u'crew', u'fight', u'blaze', u'theme', u'park']
[u'fish', u'industri', u'enjoy', u'bumper', u'tiger', u'prawn', u'season']
[u'flood', u'alert', u'issu', u'north', u'west']
[u'flood', u'continu', u'ravag', u'southern', u'franc']
[u'liberian', u'presid', u'chase', u'interpol']
[u'charg', u'drug', u'firearm']
[u'iraqi', u'soldier', u'baghdad', u'street']
[u'free', u'trucki', u'rest', u'stop', u'offer']
[u'freight', u'train', u'driver', u'protest', u'offer']
[u'fruit', u'fli', u'grow', u'senil', u'japanes', u'research']
[u'fund', u'manag', u'list']
[u'furious', u'blatter', u'admit', u'soccer', u'dope', u'problem']
[u'futur', u'longest', u'serv', u'doubt']
[u'geraldton', u'student', u'choos', u'gallipoli', u'honour']
[u'good', u'time', u'dairi', u'industri', u'long', u'time']
[u'govt', u'creat', u'child', u'care', u'place']
[u'govt', u'pledg', u'sugar', u'worker', u'support']
[u'govt', u'warn', u'protest', u'sheep', u'action']
[u'grey', u'nurs', u'shark', u'face', u'extinct', u'report']
[u'grow', u'concern', u'nativ', u'veget']
[u'handgun', u'buyback', u'centr', u'visit', u'gold', u'coast']
[u'high', u'farm', u'confid', u'surpris', u'minist']
[u'hindu', u'nationalist', u'domin', u'indian', u'elect']
[u'histori', u'beckon', u'barca', u'real', u'beckham']
[u'hockeyroo', u'hop', u'line']
[u'hollywood', u'movi', u'prove', u'china']
[u'howard', u'blast', u'latham', u'flag', u'stunt']
[u'hugh', u'shin', u'qualifi']
[u'indian', u'cricket', u'chief', u'proceed', u'kale', u'case']
[u'indian', u'writer', u'revel', u'gong']
[u'ingal', u'lose', u'skaif', u'crash', u'appeal']
[u'instant', u'movement', u'flourish']
[u'insur', u'cost', u'rise', u'renmark', u'pageant']
[u'iraq', u'baath', u'parti', u'reemerg', u'guis', u'report']
[u'send', u'forgac', u'worker', u'work']
[u'isra', u'claim', u'iraqi', u'weapon', u'fals', u'report']
[u'jayawarden', u'muralitharan', u'frustrat', u'england']
[u'jimmi', u'littl', u'hit', u'high', u'note', u'art', u'award']
[u'journal', u'call', u'british', u'tobacco']
[u'cape', u'york', u'court', u'conven', u'power']
[u'juri', u'find', u'driver', u'guilti', u'drive', u'death']
[u'kale', u'face', u'hear', u'briberi', u'alleg']
[u'keef', u'amus']
[u'kissing', u'role', u'argentin', u'dirti', u'reveal']
[u'kowanyama', u'hop', u'peac', u'start', u'alcohol']
[u'labor', u'help', u'pass', u'asio']
[u'landhold', u'near', u'paradis', u'upset', u'pressur']
[u'launceston', u'hospit', u'search', u'head']
[u'lead', u'split', u'australian', u'master']
[u'let', u'roar', u'say', u'lazio', u'coach', u'mancini']
[u'lib', u'choos', u'hill', u'challeng']
[u'liverpool', u'injuri', u'jinx', u'strike', u'kewel']
[u'maclean', u'mayor', u'lead', u'council', u'merger', u'protest']
[u'mahatma', u'coat', u'hang', u'test']
[u'accus', u'murder', u'face', u'bail', u'assault', u'charg']
[u'die', u'sawmil', u'mishap']
[u'face', u'murder', u'charg']
[u'market', u'steadi', u'day', u'gain']
[u'mayor', u'air', u'zero', u'wast', u'doubt']
[u'meet', u'discuss', u'highway']
[u'meet', u'hear', u'rise', u'hospit', u'deficit']
[u'encourag', u'visit', u'doctor']
[u'mexican', u'radio', u'execut', u'shoot', u'dead']
[u'middl', u'east', u'truce', u'talk', u'begin', u'egypt']
[u'mildura', u'join', u'airport', u'secur', u'boost']
[u'milton', u'bank', u'fund']
[u'worker', u'entitl']
[u'angri', u'loss', u'school', u'base', u'polic', u'offic']
[u'peopl', u'take', u'advantag', u'cheaper', u'travel']
[u'talk', u'plan', u'cooma', u'hospit', u'oper']
[u'water', u'woe', u'possibl', u'chiltern']
[u'log', u'discoveri', u'forest', u'fear']
[u'test', u'prevent', u'cervic', u'cancer', u'studi']
[u'work', u'bridg', u'highway', u'safeti', u'gap']
[u'nigeria', u'block', u'move', u'secur', u'taylor', u'arrest']
[u'log', u'aborigin', u'rock', u'site']
[u'govt', u'urg', u'recognis', u'rail', u'benefit']
[u'nswrl', u'elect', u'love']
[u'overhaul', u'train', u'secur']
[u'govt', u'deni', u'sterilis', u'claim']
[u'ocean', u'debri', u'threaten', u'marin', u'life']
[u'oceania', u'hand', u'south', u'america', u'play', u'off', u'world']
[u'soldier', u'kill', u'baghdad', u'blast', u'armi']
[u'opec', u'maintain', u'product', u'ceil']
[u'open', u'lead', u'pakistan', u'home']
[u'organ', u'transplant', u'ring', u'bust', u'brazil', u'africa']
[u'oyster', u'claim', u'settl', u'long', u'court', u'battl']
[u'pastor', u'sustain', u'summit', u'hold', u'darwin']
[u'philippin', u'lift', u'death', u'penalti']
[u'play', u'resum', u'gabba']
[u'polic', u'call', u'riot', u'port', u'hedland', u'detent']
[u'polic', u'fear', u'miss', u'elder', u'wife']
[u'polic', u'steal', u'ring', u'man', u'stomach']
[u'polic', u'halt', u'search', u'cyclon', u'traci', u'victim']
[u'polic', u'hunt', u'involv', u'sieg']
[u'polic', u'prepar', u'drink', u'drive', u'crackdown']
[u'polic', u'seiz', u'ecstasi', u'tablet']
[u'polic', u'station', u'attack', u'iraq']
[u'polic', u'crack', u'antisoci', u'behaviour']
[u'polish', u'hurt', u'helicopt', u'land']
[u'polli', u'pressur', u'govt', u'rail', u'rout']
[u'port', u'macquari', u'coff', u'includ', u'airport', u'secur']
[u'powel', u'pressur', u'nato', u'support', u'iraq']
[u'premiership', u'princ', u'pauper', u'head', u'head']
[u'public', u'offer', u'mine', u'plan', u'feedback']
[u'public', u'warn', u'whop', u'cough', u'danger']
[u'nat', u'question', u'tree', u'clear', u'compo']
[u'randel', u'skipper', u'barbarian']
[u'ranger', u'burk', u'tip', u'send']
[u'record', u'passeng', u'rockhampton', u'airport']
[u'reef', u'rezon', u'win', u'tourism', u'support']
[u'refurbish', u'carillion', u'reopen', u'public']
[u'report', u'highlight', u'violent', u'jail']
[u'report', u'highlight', u'wine', u'industri', u'contribut']
[u'research', u'doubt', u'hookah', u'health', u'benefit']
[u'pilot', u'clear', u'safeti', u'concern']
[u'rocki', u'galleri', u'take', u'deliveri', u'work']
[u'rural', u'work', u'popular', u'despit', u'drought', u'colleg', u'say']
[u'rylston', u'council', u'probe', u'detail', u'releas']
[u'sack', u'baxter', u'guard', u'rehir', u'green']
[u'santa', u'helper', u'train']
[u'board', u'decid', u'vietnames', u'news']
[u'drop', u'vietnames', u'news']
[u'serb', u'general', u'get', u'year', u'sarajevo', u'sieg']
[u'singapor', u'sewag', u'recycl', u'plant', u'tourist']
[u'korean', u'opposit', u'end', u'parliamentari', u'boycott']
[u'south', u'african', u'rugbi', u'urg', u'racism', u'probe']
[u'springbok', u'coach', u'straeuli', u'step']
[u'staterail', u'track', u'millennium', u'train']
[u'storm', u'lash', u'mildura']
[u'storm', u'toll', u'central', u'coast']
[u'straeuli', u'embarrass', u'springbok', u'boot', u'camp']
[u'strand', u'sheep', u'prepar', u'export']
[u'studi', u'highlight', u'sunshin', u'coast', u'econom', u'driver']
[u'swim', u'sampl', u'clear', u'trawl']
[u'tear', u'control', u'detent', u'centr', u'riot']
[u'telstra', u'review', u'emerg']
[u'tiwi', u'island', u'learn', u'manag', u'health', u'servic']
[u'suspect', u'arrest']
[u'palestinian', u'expel', u'west', u'bank']
[u'bomb', u'attack', u'convoy', u'baghdad']
[u'kill', u'multi', u'pile']
[u'kill', u'injur', u'head', u'collis']
[u'speed', u'charg', u'releas', u'bail']
[u'travel', u'agent', u'experi', u'life', u'outsid', u'sydney']
[u'chang', u'forc', u'student']
[u'union', u'deleg', u'fin', u'bulli', u'builder']
[u'union', u'want', u'inquiri', u'aust', u'post', u'porn', u'scandal']
[u'renew', u'travel', u'warn', u'lebanon']
[u'say', u'rwandan', u'crime', u'verdict', u'appropri']
[u'warn', u'christma', u'terror', u'attack', u'indonesia']
[u'violent', u'protest', u'rock', u'port', u'hedland', u'detent', u'centr']
[u'virgin', u'blue', u'set', u'issu', u'price', u'list']
[u'virginia', u'farm', u'produc', u'buy', u'kangaringa', u'properti']
[u'watson', u'help', u'tiger', u'respect', u'total']
[u'waugh', u'accus', u'snub', u'team', u'mat']
[u'waugh', u'duck', u'brisban']
[u'wine', u'maker', u'fight', u'cheap', u'booz', u'boom']
[u'white', u'hous', u'chang', u'stori']
[u'wild', u'rabbit', u'extermin', u'program', u'begin']
[u'william', u'hit', u'test', u'omiss']
[u'william', u'releas', u'duti']
[u'wolv', u'striker', u'share', u'honour']
[u'woolworth', u'strike']
[u'woolworth', u'warehous', u'employe', u'strike']
[u'young', u'socceroo', u'brazil']
[u'youth', u'tell', u'respect', u'alcohol', u'law', u'face', u'fin']
[u'zaheer', u'star', u'waugh', u'gabba', u'nightmar']
[u'absent', u'mugab', u'continu', u'domin', u'chogm']
[u'age', u'mother', u'prompt', u'fresh', u'miss', u'person', u'appeal']
[u'airlin', u'warn', u'fuel', u'shortag']
[u'black', u'fail', u'test']
[u'allenbi', u'hunt', u'master', u'titl']
[u'annan', u'powel', u'prais', u'geneva', u'propos']
[u'atsic', u'say', u'govt', u'review', u'find', u'fail']
[u'aust', u'week', u'trade', u'deal']
[u'bankwest', u'deni', u'turn', u'rottnest', u'profit']
[u'bartlett', u'stand', u'asid']
[u'bartlett', u'stand', u'asid', u'alterc']
[u'bartlett', u'wine', u'rage', u'incid']
[u'bartlett', u'wine', u'ruckus', u'high', u'inappropri']
[u'beethoven', u'manuscript', u'fetch']
[u'belgium', u'take', u'legal', u'action', u'hitler', u'wine']
[u'berlin', u'streak', u'univers', u'cut']
[u'bomb', u'explod', u'afghanistan']
[u'bosnian', u'serb', u'general', u'guilti', u'crime']
[u'brack', u'pledg', u'home', u'ownership']
[u'britain', u'lift', u'turkey', u'travel', u'warn']
[u'brown', u'urg', u'social', u'justic', u'platform', u'latham']
[u'bush', u'appoint', u'oilman', u'solv', u'iraq', u'debt']
[u'bush', u'shoot', u'moon', u'elect', u'campaign']
[u'camplin', u'fli', u'high', u'finland']
[u'demolish', u'hous']
[u'carr', u'media', u'monitor', u'astound', u'opposit']
[u'child', u'care', u'fund', u'wont', u'help', u'famili', u'crossin']
[u'chogm', u'leader', u'tackl', u'zimbabw', u'second']
[u'chogm', u'panel', u'deal', u'zimbabw']
[u'chogm', u'reappoint', u'mckinnon', u'head']
[u'cocain', u'ecstasi', u'caus', u'genet', u'mutat']
[u'concert', u'jeopardi', u'ticket', u'sale', u'south']
[u'court', u'order', u'woman', u'compens', u'money']
[u'crawford', u'huntingdal', u'charg']
[u'cricket', u'australia', u'warn', u'william']
[u'deceas', u'japanes', u'diplomat', u'receiv', u'honour']
[u'democrat', u'bartlett', u'claim']
[u'develop', u'reject', u'nepean', u'build', u'claim']
[u'disciplinari', u'tribun', u'solv', u'local', u'govern']
[u'cruis', u'missil', u'attract', u'defenc', u'offer']
[u'duffi', u'victim', u'seek', u'develop', u'stay']
[u'dwarf', u'rumour', u'squash']
[u'england', u'tailend', u'defi', u'murali', u'save', u'test']
[u'explos', u'fear', u'forc', u'recal']
[u'fault', u'suspect', u'movi', u'world']
[u'fergi', u'busi', u'heart', u'scare']
[u'final', u'hop', u'line', u'hockeyroo']
[u'franc', u'favour', u'soccer', u'world', u'draw']
[u'french', u'lotteri']
[u'french', u'hour', u'bombay']
[u'govt', u'plan', u'redirect', u'real', u'estat', u'fund', u'immor']
[u'govt', u'welcom', u'vietnames', u'news']
[u'green', u'join', u'lifetim', u'steroid']
[u'greenpeac', u'protest', u'food']
[u'hawk', u'overthrow', u'king']
[u'high', u'tide', u'rais', u'mosquito', u'bear', u'virus', u'risk']
[u'hockeyroo', u'champion', u'trophi', u'final']
[u'huge', u'protest', u'pension', u'reform', u'itali']
[u'hugh', u'hend', u'roll', u'florida']
[u'india', u'babi', u'food', u'promot']
[u'islam', u'jihad', u'vow', u'attack']
[u'journalist', u'win', u'indonesia', u'prestigi', u'human']
[u'kale', u'face', u'cash', u'cap', u'probe']
[u'kingz', u'horror', u'season', u'continu']
[u'kookaburra', u'striker', u'grab', u'award']
[u'lancast', u'bomber', u'restor', u'glori']
[u'latham', u'lay', u'polici', u'vision']
[u'light', u'approach', u'urg', u'spare', u'bogong', u'moth']
[u'kill', u'fatal', u'accid']
[u'maoist', u'accus', u'abduct', u'student']
[u'mass', u'immunis', u'plan', u'iran']
[u'mcwilliam', u'sign', u'aprilia']
[u'minist', u'run', u'time', u'school', u'fund']
[u'movi', u'world', u'staff', u'question']
[u'mugab', u'repeat', u'threat', u'quit', u'commonwealth']
[u'africa', u'union', u'chief', u'say', u'scrap', u'race', u'quota']
[u'north', u'guid', u'warrior', u'home']
[u'accus', u'stall', u'shark', u'reserv']
[u'corrupt', u'watchdog', u'return', u'seiz', u'document']
[u'gain', u'indigen', u'educ', u'seat']
[u'seek', u'european', u'tourist']
[u'woman', u'sue', u'qanta', u'toilet', u'trip']
[u'dozen', u'hurt', u'blast', u'afghan', u'citi']
[u'palestinian', u'truce', u'talk', u'break']
[u'panel', u'begin', u'chart', u'futur']
[u'paterson', u'rid', u'high', u'hawaii']
[u'back', u'australian', u'compact']
[u'ensur', u'men', u'access', u'alimoni']
[u'poll', u'show', u'labor', u'lead', u'coalit']
[u'powel', u'welcom', u'geneva', u'accord']
[u'prison', u'offic', u'suspend', u'drug']
[u'probe', u'russian', u'train', u'blast', u'begin']
[u'queensland', u'honour', u'local', u'hero', u'hayden']
[u'consid', u'rise', u'student', u'fight']
[u'rail', u'freight', u'deal', u'agre']
[u'rain', u'wreak', u'havoc', u'gabba', u'test']
[u'randel', u'head', u'strong', u'barbarian', u'england']
[u'reef', u'pollut', u'plan', u'receiv', u'mix', u'reaction']
[u'rumsfeld', u'begin', u'iraq', u'visit']
[u'rumsfeld', u'talk', u'field', u'command', u'iraq']
[u'rumsfeld', u'visit', u'troop', u'iraq']
[u'russia', u'blame', u'chechen', u'train', u'blast']
[u'russia', u'tighten', u'secur', u'ahead', u'parliament', u'poll']
[u'polic', u'recruit', u'drive', u'underway']
[u'self', u'govern', u'grant', u'scheme', u'boost', u'art', u'offer']
[u'solomon', u'island', u'refuge', u'return', u'villag']
[u'storm', u'warn', u'decad', u'delug']
[u'land', u'trout']
[u'tasmania', u'fear', u'cut', u'qanta', u'flight']
[u'teacher', u'union', u'unhappi', u'deal']
[u'dead', u'road', u'accid']
[u'tissu', u'transplant', u'limit', u'joint', u'failur']
[u'tobacco', u'industri', u'skirt', u'report']
[u'bush', u'doll', u'readi', u'christma']
[u'townsvill', u'beach', u'cleanest']
[u'traine', u'ranger', u'expand', u'larrakia', u'care']
[u'twickenham', u'capac', u'boost', u'world']
[u'kill', u'fatal', u'accid']
[u'admit', u'nuke', u'deploy', u'falkland']
[u'umpir', u'hair', u'farewel', u'australian', u'cricket']
[u'unexplod', u'ordnanc', u'hous']
[u'unexplod', u'ordnanc', u'prove', u'fals', u'alarm']
[u'delay', u'iraq', u'reconstruct', u'tender']
[u'sniper', u'investig', u'expand']
[u'vail', u'outlin', u'iraqi', u'wheat', u'strategi']
[u'vanston', u'condemn', u'issu', u'student', u'visa']
[u'veteran', u'triathlet', u'celebr', u'birthday']
[u'victoria', u'accus', u'cash', u'grab']
[u'spend', u'eureka', u'parti']
[u'miner', u'fear', u'royalti', u'review']
[u'minist', u'rile', u'electr', u'reform', u'oppon']
[u'warrior', u'cruis', u'victori', u'tiger']
[u'wheatbelt', u'power', u'overnight', u'wind']
[u'youth', u'lure', u'adelaid', u'hors', u'race', u'criticis']
[u'group', u'welcom', u'homeless', u'plan']
[u'adopt', u'reef', u'program', u'launch']
[u'allenbi', u'take', u'master']
[u'ambul', u'union', u'entir', u'happi', u'report']
[u'triomph', u'close', u'renov']
[u'argentina', u'worri', u'british', u'nuke', u'sink', u'falkland']
[u'australian', u'famili', u'mow', u'singapor']
[u'australian', u'sweep', u'world', u'triathlon', u'titl']
[u'australia', u'win', u'champion', u'trophi', u'final']
[u'backpack', u'carri', u'explos']
[u'bartlett', u'apologis', u'democrat', u'elect', u'chanc']
[u'bartlett', u'public', u'apologis', u'assault']
[u'bartlett', u'need', u'famili', u'support', u'latham']
[u'beatti', u'call', u'bartlett', u'resign']
[u'blue', u'bushrang', u'ball', u'thriller']
[u'bomb', u'attack', u'kill', u'soldier', u'wound', u'iraq']
[u'bomb', u'explod', u'northern', u'iraq']
[u'bomb', u'wound', u'afghan', u'citi']
[u'brown', u'urg', u'latham', u'stand', u'forest']
[u'bumper', u'sticker', u'help', u'solv', u'crime']
[u'chanderpaul', u'jacob', u'record', u'stand']
[u'china', u'long', u'send', u'woman', u'space']
[u'chogm', u'leader', u'hop', u'deal', u'zimbabw']
[u'commonwealth', u'maintain', u'pakistan', u'suspens']
[u'commonwealth', u'panel', u'break', u'zimbabw', u'deal']
[u'council', u'dismiss', u'polic', u'fund', u'idea']
[u'cwealth', u'leader', u'superior', u'complex', u'mugab']
[u'cybercop', u'robber', u'grow', u'trickier', u'world']
[u'darwin', u'resid', u'ask', u'beggar']
[u'delay', u'gift', u'deliveri', u'save', u'bangladeshi', u'woman']
[u'democrat', u'admit', u'bartlett', u'wine', u'furor', u'damag']
[u'democrat', u'quiet', u'bartlett', u'stand']
[u'dissid', u'tell', u'cold', u'pant', u'dilemma']
[u'duffi', u'resid', u'concern', u'futur']
[u'engin', u'busi', u'catch']
[u'explos', u'sink', u'hole']
[u'ferrari', u'unveil', u'melbourn']
[u'damag', u'melbourn', u'workshop']
[u'firefight', u'bail', u'flood', u'french', u'town']
[u'furyk', u'streak', u'clear', u'grand', u'slam', u'event']
[u'ganguli', u'dream', u'fire', u'india', u'fightback']
[u'goodby', u'lenin', u'sweep', u'europ', u'film', u'prize']
[u'gunner', u'frustrat', u'leav', u'chelsea']
[u'hend', u'hugh', u'chase']
[u'histor', u'brisban', u'landscap', u'demolish']
[u'wicket', u'like', u'spear', u'heart', u'waugh']
[u'hong', u'kong', u'ask', u'mcdonald', u'withdraw', u'fri']
[u'howard', u'condemn', u'bartlett', u'action']
[u'howard', u'see', u'chang', u'zimbabw']
[u'hundr', u'palestinian', u'protest', u'geneva']
[u'hungri', u'thai', u'eleph', u'raid', u'plantat', u'report']
[u'indonesia', u'sell', u'hundr', u'million', u'dollar']
[u'injuri', u'worri', u'mount', u'celtic']
[u'waiver', u'rais', u'help', u'aborigin', u'home']
[u'ireland', u'take', u'miss', u'world', u'china']
[u'irish', u'miss', u'world', u'begin', u'reign']
[u'israel', u'reject', u'partial', u'palestinian', u'truce']
[u'israel', u'reject', u'palestinian', u'truce', u'offer']
[u'jakarta', u'studi', u'australian', u'missil', u'defenc', u'plan']
[u'juve', u'crash', u'milan', u'spot', u'itali']
[u'kangaroo', u'boss', u'probe', u'hotel', u'theft']
[u'karzai', u'stand', u'afghanistan', u'adopt']
[u'mitchel', u'black', u'coach', u'say', u'poll']
[u'korean', u'fish', u'help', u'fight', u'malaria']
[u'laport', u'wire', u'french', u'decis']
[u'latham', u'pledg', u'live', u'lodg']
[u'return', u'blue']
[u'listen', u'women', u'promis', u'marriag']
[u'macgil', u'take', u'vital', u'wicket', u'australia']
[u'kill', u'shoot']
[u'michael', u'roger', u'win', u'australian', u'cyclist', u'year']
[u'middl', u'east', u'truce', u'talk', u'wrap', u'cairo']
[u'miss', u'rugbi', u'world', u'final', u'ball']
[u'seek', u'support', u'tighten', u'elector']
[u'moscow', u'poll', u'open', u'russia', u'parliamentari', u'elect']
[u'music', u'fan', u'enjoy', u'aussi']
[u'children', u'kill', u'afghan', u'raid']
[u'counter', u'terror', u'chopper', u'take', u'flight']
[u'govt', u'await', u'final', u'hospit', u'report']
[u'reject', u'claim', u'polic', u'budget', u'blow']
[u'author', u'janet', u'frame', u'termin', u'cancer']
[u'origin', u'plot', u'solar', u'revolut']
[u'pakistan', u'open', u'clean', u'sweep']
[u'pakistan', u'win', u'toss', u'elect', u'fifth']
[u'palestinian', u'group', u'agre', u'halt', u'attack', u'israel']
[u'pizza', u'enter', u'bangladesh', u'market']
[u'polic', u'negoti', u'hostag', u'situat']
[u'power', u'grab', u'spot']
[u'power', u'worker', u'burn', u'transform', u'explos']
[u'probe', u'begin', u'alleg', u'assault', u'prison']
[u'polic', u'seek', u'wit', u'smash']
[u'queen', u'elizabeth', u'end', u'nigeria', u'state', u'visit']
[u'real', u'stretch', u'lead', u'histor', u'barca']
[u'research', u'centr', u'doubt', u'benefit', u'fund', u'plan']
[u'richard', u'gere', u'visit', u'jordan', u'peac', u'mission']
[u'right', u'wing', u'polli', u'criticis', u'immigr', u'polici']
[u'rumsfeld', u'leav', u'iraq']
[u'rumsfeld', u'tour', u'iraqi', u'troubl', u'spot']
[u'russia', u'go', u'poll']
[u'russia', u'vote', u'putin', u'expect', u'tighten', u'grip']
[u'saddam', u'coordin', u'resist', u'say', u'tribal', u'leader']
[u'introduc', u'gambl', u'rule']
[u'scientist', u'hone', u'replac', u'joint']
[u'secretari', u'general', u'deni', u'cwealth', u'target', u'zimbabw']
[u'sheep', u'shipment', u'depart', u'meat', u'delay']
[u'kill', u'clash', u'southern', u'india']
[u'priest', u'deacon', u'ordain']
[u'spanish', u'phone', u'booth', u'take', u'finger', u'hostag']
[u'sudan', u'leader', u'kenya', u'civil']
[u'suspici', u'sock', u'spark', u'qaeda', u'alert']
[u'teacher', u'union', u'view', u'govt', u'unhelp']
[u'palestinian', u'shoot', u'gaza']
[u'tour', u'star', u'roger', u'name', u'cyclist', u'year']
[u'train', u'collis', u'injur', u'itali']
[u'transport', u'union', u'work', u'improv', u'standard']
[u'tripl', u'jumper', u'match', u'record']
[u'armi', u'remain', u'iraq', u'transfer']
[u'issu', u'saudi', u'secur', u'warn']
[u'probe', u'death', u'afghan', u'children']
[u'swoop', u'insurg', u'iraqi', u'highway']
[u'vaughan', u'delight', u'england', u'gut', u'great', u'gall']
[u'activist', u'confid', u'duck', u'hunt']
[u'polic', u'crack', u'drunken', u'driver']
[u'victoria', u'land', u'deal', u'chines', u'airlin']
[u'polic', u'investig', u'kojonup', u'incid']
[u'warrior', u'control', u'tiger']
[u'wine', u'maker', u'unhappi', u'cellar', u'door', u'licens']
[u'world', u'final', u'ball', u'go', u'miss']
[u'young', u'socceroo', u'clash']
[u'year', u'charg', u'bakeri', u'robberi']
[u'year', u'dollar', u'float']
[u'kill', u'injur', u'kashmir', u'accid']
[u'abattoir', u'capac']
[u'accc', u'concern', u'dairi', u'inquiri', u'claim']
[u'acoss', u'warn', u'cut']
[u'govt', u'lack', u'commit', u'wast']
[u'opposit', u'claim', u'land', u'price', u'high']
[u'afghan', u'villag', u'disput', u'claim', u'bomb']
[u'albani', u'liason', u'offic', u'fund']
[u'american', u'athlet', u'zero', u'toler', u'stand']
[u'asylum', u'seeker', u'face', u'reject', u'fail']
[u'atsic', u'put', u'rival', u'reform', u'plan']
[u'australian', u'walk', u'stretch', u'fit']
[u'backpack', u'face', u'court', u'explos', u'charg']
[u'bali', u'bomb', u'suspect', u'say', u'want']
[u'basic', u'error', u'cost', u'croc']
[u'blackal', u'prep', u'student', u'complet', u'trial', u'year']
[u'brack', u'defend', u'approach', u'taxi']
[u'broad', u'represent', u'lawrenc', u'hargrav', u'group']
[u'budget', u'surplus']
[u'busi', u'usual', u'receiv']
[u'cairn', u'look', u'resum', u'test', u'career']
[u'council', u'honour', u'board']
[u'cane', u'toad', u'head', u'north', u'kakadu']
[u'chines', u'student', u'sell', u'blood', u'money']
[u'chogm', u'panel', u'deadlock', u'zimbabw']
[u'chogm', u'panel', u'present', u'zimbabw', u'deal', u'leader']
[u'citi', u'prefer', u'ignor', u'aborigin', u'issu']
[u'coco', u'resid', u'prepar', u'cyclon']
[u'coco', u'warn', u'cyclon']
[u'commonwealth', u'keep', u'zimbabw']
[u'commonwealth', u'leader', u'close', u'deal', u'zimbabw']
[u'communiti', u'urg', u'join', u'bridg', u'workshop']
[u'contract', u'paradis', u'work']
[u'costello', u'compar', u'bartlett', u'labor', u'leader']
[u'council', u'back', u'sponsor', u'campaign']
[u'council', u'give', u'condit', u'approv', u'backpack']
[u'council', u'plan', u'upgrad', u'local', u'bridg']
[u'coupl', u'worri', u'time', u'commit', u'studi']
[u'court', u'reject', u'nuclear', u'dump', u'case']
[u'court', u'fast', u'track', u'bond', u'director', u'bail', u'appeal']
[u'crane', u'collaps', u'surfer', u'paradis']
[u'csiro', u'herbarium', u'plan', u'draw']
[u'csiro', u'say', u'ethanol', u'cost', u'benefit', u'report']
[u'darci', u'face', u'court', u'child', u'charg']
[u'defenc', u'scientist', u'refocus', u'missil', u'program']
[u'dodt', u'learn', u'master', u'experi']
[u'dope', u'chief', u'pound', u'savag', u'life', u'propos']
[u'doubt', u'cast', u'futur', u'higher', u'educ', u'fund']
[u'driver', u'time', u'drink', u'drive', u'remind']
[u'drought', u'predict', u'christma', u'sale']
[u'drought', u'releas', u'grip', u'region']
[u'condit', u'spark', u'restrict']
[u'earth', u'move', u'central', u'kimberley', u'resid']
[u'explos', u'eyr', u'peninsula']
[u'farmer', u'cautious', u'optimist', u'nativ', u'titl']
[u'farmer', u'interest', u'tree', u'plant']
[u'farmer', u'warn', u'water', u'restrict']
[u'fast', u'bowler', u'kruger', u'call', u'south', u'africa']
[u'feder', u'urg', u'address', u'fall', u'membership']
[u'feder', u'fund', u'help', u'creat', u'rutherglen', u'health']
[u'fruit', u'fight', u'southern']
[u'fund', u'help', u'bridg', u'safeti', u'concern']
[u'furyk', u'romp', u'shoot', u'victori', u'grand', u'slam']
[u'geraldton', u'greenough', u'offer', u'temporari', u'dig']
[u'gippsland', u'public', u'warn', u'restrict']
[u'gladston', u'redevelop', u'begin']
[u'gloomi', u'time', u'central', u'west', u'busi']
[u'golf', u'winner', u'master', u'play', u'thriller']
[u'govern', u'consid', u'law']
[u'govern', u'set', u'sail', u'submarin', u'deal']
[u'govt', u'retir', u'plan', u'backfir', u'austria']
[u'green', u'group', u'oppos', u'powerlin', u'plan']
[u'green', u'welcom', u'latham', u'forest']
[u'harri', u'board', u'reject', u'rural', u'press']
[u'hec', u'chang', u'region', u'student']
[u'hend', u'cling', u'lifelin']
[u'herbarium', u'closur', u'draw']
[u'hop', u'mandela', u'join', u'eureka', u'celebr']
[u'hospit', u'open', u'revamp', u'age', u'care', u'facil']
[u'howard', u'name', u'pacif', u'year']
[u'huge', u'putt', u'clinch', u'european', u'tour', u'open']
[u'immigr', u'offici', u'question', u'malaysian', u'trio']
[u'india', u'chase', u'unlik', u'gabba']
[u'india', u'chase', u'unlik', u'gabba']
[u'indigen', u'legal', u'glossari', u'spell', u'crime']
[u'rat', u'rise', u'macfarlan']
[u'internet', u'activist', u'jail', u'china']
[u'internet', u'user', u'expect', u'reach', u'million', u'china']
[u'iraqi', u'offic', u'claim', u'hide']
[u'iraqi', u'ministri', u'talk', u'fuel', u'shortag']
[u'month', u'high']
[u'katsidi', u'deliv', u'knockout', u'blow', u'kenyan']
[u'kiwi', u'paceman', u'bond', u'miss', u'pakistan', u'seri']
[u'knee', u'surgeri', u'hockey', u'skirv']
[u'labor', u'target', u'kingsley', u'edward', u'retir']
[u'latham', u'dismiss', u'costello', u'bartlett', u'comparison']
[u'latham', u'unveil', u'frontbench']
[u'leski', u'inquest', u'hear', u'abus', u'claim']
[u'let', u'fair', u'dinkum', u'waugh']
[u'light', u'tunnel', u'inland', u'rail', u'plan']
[u'liverpool', u'knock', u'houllier', u'australia', u'offer']
[u'truck', u'driver', u'seek', u'better', u'condit']
[u'bulk', u'bill', u'rate', u'take', u'toll', u'emerg']
[u'lowi', u'back', u'farina']
[u'macfarlan', u'sorri', u'home', u'buyer']
[u'mackay', u'council', u'target', u'bikeway', u'project']
[u'maestro', u'mancini', u'lift', u'roma']
[u'mayor', u'happi', u'veget', u'law']
[u'mcbride', u'final', u'lift', u'thistl']
[u'meet', u'consid', u'water', u'restrict']
[u'meet', u'tell', u'busi', u'jail', u'benefit']
[u'metro', u'attempt', u'stop', u'strike']
[u'miner', u'say', u'uranium', u'peac', u'protest', u'wrong', u'track']
[u'mine', u'wast', u'plan', u'creat', u'anger']
[u'fund', u'higher', u'educ', u'reform', u'deal']
[u'open', u'revamp', u'colleg']
[u'murdoch', u'eye', u'stake', u'polish', u'group', u'report']
[u'murray', u'clean', u'health', u'dubious']
[u'museum', u'head', u'blame', u'polit', u'demis']
[u'burn', u'unit', u'plan', u'perth']
[u'councillor', u'elect', u'geraldton']
[u'news', u'corp', u'push', u'lower']
[u'poki', u'question', u'gambl', u'rule']
[u'north', u'mackay', u'crash', u'leav', u'injur']
[u'nrma', u'battl', u'escal']
[u'drought', u'condit', u'improv']
[u'river', u'need', u'urgent', u'attent', u'report']
[u'urg', u'calm', u'unlicens', u'child', u'care']
[u'fight', u'rep', u'seat']
[u'offici', u'claim', u'sayyaf', u'senior', u'leader', u'captur']
[u'ormerod', u'doubl', u'fire', u'saint', u'goal']
[u'ozzi', u'osbourn', u'wipe', u'pill', u'report']
[u'palestinian', u'truce', u'talk', u'fail']
[u'park', u'relief', u'south', u'coast', u'driver']
[u'plan', u'coal', u'transport', u'cost']
[u'polic', u'confirm', u'sydney', u'shoot', u'link']
[u'polic', u'consid', u'raid', u'relat']
[u'polic', u'continu', u'sydney', u'shoot', u'probe']
[u'polic', u'deton', u'explos', u'cave']
[u'polic', u'investig', u'road', u'death']
[u'policeman', u'testifi', u'protect', u'wit', u'death']
[u'polic', u'probe', u'denmark']
[u'polic', u'probe', u'fatal', u'train', u'accid']
[u'polic', u'pursu', u'teenag', u'high', u'speed', u'chase']
[u'polic', u'releas', u'video', u'miss', u'bathurst', u'woman']
[u'polic', u'search', u'miss', u'wit']
[u'polic', u'destroy', u'explos', u'gambier', u'cave']
[u'polic', u'unhappi', u'road', u'behaviour']
[u'poor', u'demand', u'cut', u'servic']
[u'powerlin', u'locat', u'unlik']
[u'putin', u'parti', u'ahead', u'russia']
[u'putin', u'parti', u'head', u'elect', u'victori']
[u'protest', u'block', u'east', u'gippsland', u'road']
[u'public', u'price', u'ethanol', u'expans', u'report']
[u'public', u'urg', u'care', u'restrict']
[u'public', u'warn', u'danger', u'restrict', u'begin']
[u'push', u'local', u'firm', u'build', u'contract']
[u'qanta', u'snap', u'strike', u'delay', u'servic']
[u'queensland', u'rail', u'project', u'creat', u'job']
[u'queensland', u'red', u'player', u'dead']
[u'rain', u'offer', u'respit', u'drought', u'persist']
[u'rain', u'spark', u'river', u'monitor']
[u'reserv', u'chief', u'defend', u'rate', u'hike']
[u'resid', u'worri', u'bunburi', u'hospit']
[u'erupt', u'school', u'condit']
[u'russia', u'elect', u'chief', u'say', u'poll', u'valid']
[u'jump']
[u'samurai', u'beat', u'blizzard', u'offic', u'spot']
[u'saudi', u'secur', u'forc', u'clash']
[u'school', u'ignor', u'govern', u'direct']
[u'scientist', u'crack', u'banana', u'worker', u'diseas']
[u'senat', u'advisor', u'threaten', u'expos', u'rort']
[u'offend', u'medic', u'registr', u'cancel']
[u'shake', u'loom', u'clarenc', u'valley', u'local', u'govt']
[u'sheep', u'shipment', u'set', u'cours', u'middl', u'east']
[u'sidelin', u'bartlett', u'look', u'silver', u'line']
[u'singapor', u'stop', u'burmes', u'right', u'forum']
[u'kill', u'injur', u'eastern', u'china', u'accid']
[u'solomon', u'woman', u'charg', u'lesbian', u'offenc']
[u'southern', u'cross', u'consid', u'student']
[u'spanish', u'cyclist', u'jimenez', u'dead']
[u'outlet', u'closur', u'unlik', u'hurt', u'tourism']
[u'georg', u'warn', u'email', u'fraud']
[u'korean', u'compani', u'pull', u'staff', u'iraq']
[u'strong', u'holiday', u'accommod', u'book', u'shoalhaven']
[u'sub', u'servic', u'deal', u'calm', u'troubl', u'water']
[u'support', u'northern', u'rail', u'link', u'gold', u'coast']
[u'surfer', u'escap', u'shark', u'attack']
[u'surplus', u'prove', u'govt', u'wrong', u'tack', u'crean']
[u'sydney', u'polic', u'review', u'women', u'disappear']
[u'sydney', u'shoot', u'label', u'total', u'mad']
[u'taiwan', u'politician', u'say', u'aid', u'wrath']
[u'talk', u'resum', u'teacher', u'disput']
[u'taskforc', u'propos', u'slash']
[u'trucki', u'seek', u'better']
[u'tasmanian', u'hous', u'price', u'drop']
[u'senat', u'push', u'sport', u'venu']
[u'top', u'nation', u'greenpow', u'output', u'report']
[u'teen', u'die', u'road', u'crash', u'near', u'bateman']
[u'arrest', u'embassi', u'pari', u'receiv']
[u'territori', u'declin']
[u'commonwealth', u'plan', u'zimbabw']
[u'thousand', u'flock', u'mine', u'parad']
[u'horror', u'weekend', u'pacif', u'highway']
[u'tourism', u'award', u'recognis', u'riverland', u'malle']
[u'tourist', u'escap', u'surfer', u'crane', u'crash']
[u'townsvill', u'score', u'clean', u'beach', u'titl']
[u'tradit', u'owner', u'nativ', u'titl', u'right']
[u'transport', u'dept', u'rent', u'breath', u'tester']
[u'transvestit', u'potter', u'win', u'british', u'prize']
[u'traralgon', u'host', u'educ', u'hear']
[u'trevor', u'chappel', u'name', u'bangladesh', u'field', u'coach']
[u'turley', u'select', u'labor', u'mayor', u'candid']
[u'critic', u'kill', u'afghan', u'children']
[u'expect', u'jump', u'dubai', u'campus', u'number']
[u'symposium', u'discuss', u'wide', u'rang', u'topic']
[u'team', u'cambodia', u'prepar', u'crime', u'trial']
[u'soldier', u'kill', u'hurt', u'mosul', u'blast']
[u'isra', u'tactic', u'iraq', u'general']
[u'seek', u'injunct', u'livestock', u'protest']
[u'vicent', u'doubl', u'lift', u'valencia']
[u'govt', u'rule', u'local', u'consum', u'offic', u'closur']
[u'polic', u'mark', u'year', u'servic']
[u'vietnames', u'polic', u'detain', u'seven', u'christian']
[u'vike', u'queen', u'exhum']
[u'virgin', u'blue', u'take', u'market']
[u'virgin', u'investig', u'knife', u'scare']
[u'virgin', u'investig', u'knife', u'secur', u'breach']
[u'wagga', u'council', u'consid', u'piggeri', u'plan']
[u'govt', u'puzzl', u'royalti', u'plan', u'opposit']
[u'govt', u'urg', u'focus', u'coral', u'infrastructur']
[u'waugh', u'defend', u'bowl', u'attack', u'draw']
[u'wine', u'associ', u'elect', u'chief']
[u'weed', u'blame', u'mount', u'hors', u'death']
[u'wilki', u'consid', u'watchdog', u'role']
[u'william', u'press', u'test', u'case', u'waca']
[u'yoga', u'popular', u'survey']
[u'young', u'women', u'fork', u'weight', u'loss']
[u'zimbabw', u'final', u'chogm', u'agenda']
[u'zimbabw', u'quit', u'commonwealth']
[u'address', u'salin']
[u'educ', u'consum', u'financi', u'choic']
[u'nudg', u'jone', u'sydney', u'rat']
[u'account', u'appear', u'court', u'fraud', u'charg']
[u'plan', u'comprehens', u'arson', u'studi']
[u'adopt', u'lowest', u'rate', u'record']
[u'alcohol', u'disput', u'break', u'fine']
[u'alcohol', u'manag', u'plan']
[u'black', u'coach', u'mitchel', u'henri']
[u'allenbi', u'edg', u'rank']
[u'accus', u'govt', u'witch', u'hunt']
[u'sharehold', u'vote', u'split']
[u'director', u'quit']
[u'astic', u'chairman', u'disgust', u'state', u'darwin', u'jail']
[u'asylum', u'seeker', u'lawyer', u'see', u'littl', u'hope']
[u'author', u'claim', u'murray', u'river', u'healthier', u'imagin']
[u'ballina', u'council', u'put', u'brake', u'tree', u'chop']
[u'bangladesh', u'diplomat', u'leav', u'iraq', u'email', u'threat']
[u'bartlett', u'hold', u'support', u'slide']
[u'bennett', u'see', u'mackay', u'player', u'origin', u'chanc']
[u'brother', u'ganguli', u'lead', u'exampl']
[u'black', u'challeng', u'cobb', u'debat', u'nuclear', u'issu']
[u'blast', u'kill', u'moscow']
[u'board', u'offer', u'pest', u'control', u'advic']
[u'botox', u'triall', u'treat', u'pelvic', u'pain']
[u'britain', u'count', u'cost', u'iraq']
[u'british', u'citizen', u'treat', u'alien', u'court']
[u'buena', u'vista', u'pianist', u'ruben', u'gonzalez', u'die']
[u'build', u'facelift']
[u'bundaberg', u'identifi', u'ideal', u'stopov', u'point']
[u'burma', u'negoti', u'address']
[u'busi', u'doubt', u'hous', u'price', u'crash']
[u'busi', u'final', u'parliament']
[u'polic', u'resourc', u'recognis', u'region']
[u'port', u'work', u'includ', u'rail', u'fund']
[u'carr', u'fin', u'treasur']
[u'caution', u'creep', u'busi', u'confid']
[u'celebr', u'gather', u'golf', u'classic']
[u'chess', u'offici', u'hope', u'grandmast', u'pull', u'crowd']
[u'chief', u'scientist', u'face', u'conflict', u'claim']
[u'china', u'plan', u'moon', u'probe']
[u'chines', u'serial', u'killer', u'sentenc', u'death']
[u'chogm', u'end', u'crisi', u'mugab', u'steal']
[u'civil', u'right', u'activist', u'sue', u'group']
[u'reconsid', u'child', u'abus', u'law']
[u'coco', u'island', u'resid', u'danger', u'cyclon']
[u'compani', u'start', u'work', u'fire', u'power', u'plant']
[u'conserv', u'council', u'hail', u'court', u'rule']
[u'council', u'agre', u'loan', u'help', u'restor', u'lighthous']
[u'councillor', u'chang', u'sit', u'protect', u'stanc']
[u'council', u'offer', u'cheap', u'land', u'attract', u'busi']
[u'council', u'push', u'termin', u'access', u'boost']
[u'council', u'reject', u'club', u'plea', u'waiver', u'water']
[u'council', u'help', u'clarifi', u'pool', u'law']
[u'countri', u'labor', u'chairman', u'express', u'support']
[u'rival', u'french', u'blood', u'compani']
[u'kirsten', u'miss', u'test', u'west', u'indi']
[u'defenc', u'cadet', u'graduat', u'canberra']
[u'democrat', u'founder', u'call', u'bartlett', u'quit']
[u'democrat', u'meet', u'bartlett', u'futur']
[u'dinosaur', u'creat', u'problem', u'polic', u'forc']
[u'dollar', u'break', u'cent']
[u'doubt', u'remain', u'hall', u'futur']
[u'drain', u'tender', u'call', u'flood', u'manag', u'scheme']
[u'dubbo', u'host', u'orient', u'titl']
[u'economi', u'power', u'despit', u'confid']
[u'elect', u'chief', u'say', u'unit', u'russia', u'win', u'poll']
[u'electr', u'current', u'control', u'game', u'player', u'postur']
[u'england', u'salut', u'world', u'hero']
[u'ethanol', u'propon', u'reject', u'report']
[u'team', u'head', u'north', u'korea']
[u'minist', u'review', u'alburi', u'local', u'govt']
[u'expert', u'push', u'cultur', u'approach', u'suicid']
[u'farmer', u'worri', u'risk']
[u'femal', u'mayor', u'possibl', u'break', u'hill']
[u'firefight', u'probe', u'scrap', u'metal', u'shed', u'blaze']
[u'black', u'wilson', u'crock', u'cricket']
[u'charg', u'britain', u'terror', u'fund']
[u'fundrais', u'hospit', u'exceed', u'target']
[u'gatecrash', u'concern', u'gladston']
[u'bangladeshi', u'visa', u'rule']
[u'gaze', u'goorjian', u'nbls', u'best']
[u'german', u'cannib', u'seek', u'victim']
[u'giant', u'flag', u'melbourn', u'aust']
[u'govt', u'promis', u'famili', u'revamp']
[u'grain', u'harvest', u'condit', u'licenc']
[u'greek', u'terror', u'leader', u'guilti']
[u'guantanamo', u'chaplain', u'charg']
[u'control', u'bodi', u'semi', u'automat', u'handgun']
[u'health', u'premium', u'pressur', u'insur', u'say']
[u'hend', u'graduat', u'school']
[u'hick', u'lawyer', u'confirm', u'inform']
[u'hick', u'lawyer', u'doubt', u'fair', u'trial', u'possibl']
[u'high', u'court', u'hasten', u'appeal']
[u'hospit', u'cleaner', u'deliv', u'ultimatum']
[u'hull', u'say', u'student', u'presid', u'touch']
[u'human', u'surviv', u'mar', u'nasa']
[u'hussain', u'anderson', u'england']
[u'improv', u'indian', u'impress', u'hayden']
[u'injuri', u'upset', u'hockeyroo', u'athen', u'dream']
[u'insur', u'hold', u'genet', u'test', u'requir']
[u'iraq', u'bomb', u'wound', u'troop']
[u'irish', u'tycoon', u'rais', u'stake']
[u'irrig', u'blast', u'water', u'price']
[u'jam', u'brown', u'appoint', u'funk', u'govern']
[u'japan', u'approv', u'iraq', u'mission']
[u'japan', u'halv', u'growth', u'figur']
[u'kimberley', u'nativ', u'titl', u'uncertainti', u'expect']
[u'labor', u'seek', u'detent', u'centr', u'abus', u'probe']
[u'labor', u'urg', u'balanc', u'view', u'forest']
[u'larsson', u'consid', u'premiership', u'option']
[u'latham', u'back', u'zimbabw']
[u'latham', u'boost', u'labor', u'elect', u'hop', u'poll']
[u'latham', u'commit', u'earli', u'childhood', u'educ']
[u'latham', u'commit', u'improv', u'region', u'airport']
[u'latham', u'find', u'poll', u'encourag']
[u'leed', u'deni', u'sheikh']
[u'leski', u'claim', u'question']
[u'let', u'fair', u'dinkum', u'waugh']
[u'lismor', u'council', u'impos', u'limit', u'safeguard']
[u'local', u'govt', u'elect', u'delay']
[u'lonard', u'eye', u'short', u'game']
[u'lyon', u'strength', u'celtic', u'showdown']
[u'major', u'wineri', u'accept', u'award']
[u'escap', u'shoot', u'sydney', u'polic']
[u'jail', u'life', u'murder']
[u'market', u'dip', u'insur', u'stock', u'fall']
[u'melbourn', u'sweat', u'temperatur', u'soar']
[u'merimbula', u'bateman', u'identifi', u'church']
[u'model', u'agenc', u'deni', u'mislead', u'client']
[u'call', u'poki']
[u'fund', u'seek', u'tackl', u'youth', u'crime']
[u'claim', u'agreement', u'coff']
[u'vow', u'continu', u'fight', u'nuclear', u'wast', u'dump']
[u'warn', u'toxic', u'wast', u'dump', u'disastr']
[u'nation', u'leader', u'claim', u'countrylink', u'servic', u'face']
[u'nativ', u'titl', u'disput', u'settl', u'court']
[u'develop', u'plan', u'nobbi', u'headland']
[u'employ', u'program', u'aborigin', u'youth']
[u'outlet', u'fuel', u'lower', u'price']
[u'nrma', u'disput', u'head', u'feder']
[u'club', u'face', u'tough', u'choic', u'south', u'boss']
[u'hike', u'pension', u'transport', u'fare']
[u'join', u'maverick', u'state']
[u'labor', u'hide', u'extra', u'money', u'opposit']
[u'nurs', u'stop', u'work', u'better']
[u'govt', u'scupper', u'missil', u'project']
[u'dead', u'toronto', u'theatr', u'collaps']
[u'catch', u'drink', u'drive']
[u'opposit', u'consid', u'atsic', u'chief', u'futur']
[u'orang', u'rail', u'worker', u'job']
[u'ozzi', u'osbourn', u'injur', u'accid']
[u'pair', u'shoot', u'sydney', u'south', u'west']
[u'palestinian', u'push', u'truce', u'effort']
[u'pasminco', u'seal', u'market', u'deal']
[u'penguin', u'protect', u'develop', u'agenda']
[u'pension', u'price', u'hike', u'expect', u'public']
[u'peopl', u'power', u'help', u'save', u'rail', u'servic']
[u'plan', u'attack', u'wild', u'number']
[u'plan', u'open', u'troubl', u'road']
[u'plaqu', u'mark', u'discoveri', u'anniversari']
[u'polic', u'charg', u'gold', u'coast', u'chase']
[u'polic', u'investig', u'safeti', u'hunter', u'station']
[u'polic', u'mystifi', u'boy', u'disappear']
[u'polic', u'probe', u'suspect', u'tennant', u'creek', u'assault']
[u'polic', u'search', u'home', u'bakeri', u'blaze']
[u'polic', u'crack', u'drink', u'drive']
[u'polic', u'target', u'fatal', u'stop', u'holiday', u'road']
[u'polic', u'win', u'crime', u'battl', u'carr']
[u'popstar', u'slow', u'evalu', u'life']
[u'pork', u'choic', u'aussi']
[u'port', u'record', u'record', u'coal', u'tonnag']
[u'postal', u'worker', u'reject', u'sick', u'leav', u'polici']
[u'properti', u'market', u'cool', u'real', u'estat', u'institut']
[u'public', u'urg', u'calm', u'prosecut']
[u'putin', u'parti', u'win', u'russian', u'parliament', u'poll']
[u'qcoss', u'want', u'budget', u'surplus', u'spend', u'health']
[u'health', u'deni', u'claim', u'cover']
[u'rail', u'line', u'feasibl', u'studi', u'track']
[u'report', u'highlight', u'declin', u'stock', u'theft']
[u'report', u'highlight', u'need', u'hospit', u'emerg', u'cover']
[u'road', u'death', u'baffl', u'polic']
[u'rover', u'boss', u'souness', u'face', u'abus', u'charg']
[u'rspca', u'chief', u'take', u'helm', u'world', u'bodi']
[u'polic', u'stick', u'revolv']
[u'readi', u'reap', u'windfal']
[u'school', u'mainten', u'backlog', u'shock', u'local']
[u'schwarzenegg', u'face', u'defam', u'action']
[u'sharehold', u'decid', u'demerg']
[u'sharehold', u'like', u'support', u'split']
[u'shoalhaven', u'council', u'consid', u'ethanol', u'report']
[u'springborg', u'crack', u'drunken']
[u'state', u'help', u'hous', u'price', u'latham']
[u'strike', u'action', u'christma', u'deliveri']
[u'student', u'walkout', u'celebr']
[u'taiwan', u'cabinet', u'parliament', u'reconsid']
[u'forest', u'protest', u'confront', u'latham']
[u'tasmania', u'edg', u'lead']
[u'work', u'fibr', u'optic', u'cabl']
[u'teacher', u'strike', u'gain', u'staff']
[u'teen', u'face', u'court', u'arm', u'robberi']
[u'tender', u'call', u'desert', u'knowledg', u'work']
[u'quarter', u'million', u'hail', u'england', u'world']
[u'south', u'korean', u'miss', u'dead', u'antarctica']
[u'tiger', u'win', u'fifth', u'straight', u'player', u'award']
[u'tipperari', u'anim']
[u'tourism', u'industri', u'lament', u'lake', u'level']
[u'trade', u'domin', u'china', u'talk']
[u'traffic', u'tunnel', u'blame', u'health', u'problem']
[u'triathlon', u'champ', u'eye', u'athen']
[u'uncertain', u'futur', u'tourism', u'staff']
[u'unemploy', u'rate', u'fall', u'year']
[u'union', u'meet', u'hungarian', u'worker']
[u'unoc', u'face', u'trial', u'burma', u'abus']
[u'refer', u'isra', u'barrier', u'intern', u'court']
[u'concern', u'russian', u'elect', u'result']
[u'congressman', u'guilti', u'manslaught']
[u'dollar', u'batter', u'deficit']
[u'olymp', u'committe', u'press', u'dope', u'document']
[u'reefer', u'refuge', u'lose', u'asylum', u'claim', u'canada']
[u'soldier', u'kill', u'iraqi', u'drive', u'shoot']
[u'unleash', u'avalanch', u'afghanistan']
[u'govt', u'urg', u'duck', u'shoot']
[u'magistr', u'tough']
[u'victoria', u'prepar', u'fight', u'point', u'nepean', u'leas']
[u'keep', u'hopman']
[u'lobster', u'season', u'get', u'better']
[u'warrior', u'go', u'final']
[u'surgeri', u'wait', u'time', u'unchang', u'report']
[u'take', u'control']
[u'water', u'pipe', u'connect', u'tieri', u'capella']
[u'welfar', u'demand', u'rise', u'upper', u'spencer', u'gulf']
[u'weather', u'blame', u'accid']
[u'william', u'spree', u'set', u'waca', u'thriller']
[u'windi', u'suffer', u'fresh', u'injuri', u'blow']
[u'young', u'socceroo', u'head', u'sharjah', u'second', u'round']
[u'zidan', u'call', u'testifi', u'juventus', u'dope', u'trial']
[u'zimbabw', u'urg', u'engag', u'commonwealth']
[u'abbott', u'stand', u'person', u'attack']
[u'abus', u'law', u'undermin', u'aborigin']
[u'donat', u'space', u'east', u'timores', u'embassi']
[u'action', u'group', u'seek', u'airlin', u'help']
[u'afghan', u'children', u'kill', u'second', u'raid']
[u'agforc', u'fight', u'drought', u'battl']
[u'hop', u'secur', u'fund', u'pilot', u'project']
[u'agreement', u'offer', u'health', u'servic', u'boost']
[u'alleg', u'rapist', u'appear', u'court']
[u'hop', u'stop', u'dubbo', u'health', u'chang']
[u'asylum', u'seeker', u'advoc', u'recognis', u'effort']
[u'asylum', u'seeker', u'begin', u'hunger', u'strike']
[u'asylum', u'seeker', u'lip', u'nauru']
[u'athlet', u'heavyweight', u'face']
[u'atsic', u'consid', u'consent', u'law']
[u'atsic', u'seek', u'talk', u'indigen', u'imprison']
[u'aussi', u'adventur', u'strand', u'antarctica']
[u'aust', u'medicin', u'regul', u'establish']
[u'australian', u'school', u'consid', u'jakarta', u'bomb']
[u'australian', u'lose', u'battl', u'bulg', u'survey']
[u'wait', u'zimbabw', u'test', u'tour', u'ahead']
[u'author', u'probe', u'gippsland', u'fire']
[u'bank', u'loss', u'pull', u'share', u'market', u'lower']
[u'bathurst', u'council', u'accept', u'rezon', u'applic']
[u'beachley', u'leav', u'wait', u'record']
[u'bega', u'council', u'approv', u'hous', u'estat']
[u'blackout', u'hit', u'south', u'east']
[u'bodi', u'think', u'miss', u'senior']
[u'british', u'date', u'expect', u'chang']
[u'budget', u'airlin', u'boost', u'north']
[u'bunburi', u'nurs', u'complain', u'roster', u'chang']
[u'bushfir', u'research', u'award']
[u'byron', u'bank', u'tree', u'remov', u'effluent']
[u'cafl', u'confirm', u'match', u'day', u'chang']
[u'carr', u'deni', u'crime', u'comment']
[u'carr', u'renew', u'port', u'kembla', u'transport', u'pledg']
[u'guilti', u'mislead', u'home', u'loan']
[u'celta', u'roll', u'weaken', u'milan', u'ruud', u'equal', u'law']
[u'china', u'send', u'troop', u'liberia']
[u'coal', u'alli', u'predict', u'loss']
[u'cobb', u'reject', u'nuclear', u'wast', u'debat']
[u'coff', u'heart', u'monitor', u'firm', u'list']
[u'commission', u'welcom', u'polic', u'chase', u'report']
[u'commiss', u'welcom', u'govt', u'report']
[u'competit', u'spotlight', u'shine', u'rice', u'sale']
[u'unhappi', u'decis']
[u'council', u'give', u'time', u'repli', u'dept', u'report']
[u'council', u'seek', u'better', u'region', u'rail', u'servic']
[u'council', u'renov', u'memori', u'bath']
[u'prepar', u'major', u'takeov']
[u'currumbin', u'interchang', u'eas', u'traffic', u'woe']
[u'cycl', u'star', u'race', u'launceston']
[u'democrat', u'execut', u'stand', u'bartlett']
[u'earn', u'braveri', u'award', u'bomb', u'bust']
[u'dorset', u'council', u'rais', u'bridg', u'fund', u'fear']
[u'doubt', u'cast', u'pipelin', u'busi', u'case']
[u'drop', u'rat', u'hold']
[u'drought', u'hurt', u'natur', u'tourism']
[u'drought', u'panel', u'tour', u'centr']
[u'east', u'timor', u'accus', u'aust', u'exploit']
[u'east', u'timor', u'ask', u'maintain', u'forc']
[u'eccleston', u'urg', u'stay', u'helm']
[u'electr', u'equip', u'replac', u'follow', u'storm']
[u'england', u'strike', u'earli', u'blow', u'kandi', u'test']
[u'boyfriend', u'give', u'inquest', u'evid']
[u'extra', u'highway', u'overtak', u'lane']
[u'famili', u'shipwreck', u'cuban', u'agent']
[u'farmer', u'lock', u'govt', u'offici']
[u'fatal', u'truck', u'crash', u'block', u'highway', u'traffic']
[u'fear', u'air', u'educ', u'loss']
[u'fear', u'wine', u'suppli', u'spark', u'dump']
[u'februari', u'finish', u'tip', u'council', u'boundari', u'review']
[u'feder', u'split', u'coach']
[u'firefight', u'give', u'research', u'centr']
[u'firefight', u'reunit', u'anniversari']
[u'fitzroy', u'council', u'reject', u'feedlot', u'plan']
[u'fleme', u'doubt', u'pakistan', u'seri']
[u'fmit', u'turmoil', u'continu']
[u'forestri', u'worker', u'push', u'shorter', u'week']
[u'foul', u'play', u'suspect', u'boy', u'disappear']
[u'climber', u'dead', u'mountain']
[u'geraldton', u'centr', u'save', u'live']
[u'giant', u'tree', u'protect']
[u'gibbon', u'drive', u'home', u'bendigo', u'issu', u'latham']
[u'gile', u'lead', u'england', u'fightback']
[u'gladston', u'sever', u'storm']
[u'gore', u'back', u'dean', u'best', u'hope', u'elect']
[u'govt', u'accus', u'inact', u'climat', u'chang']
[u'govt', u'expect', u'opposit', u'water', u'plan']
[u'govt', u'reject', u'latest', u'detent', u'centr', u'abus', u'claim']
[u'govt', u'report', u'record', u'catch', u'illeg', u'fish', u'boat']
[u'govt', u'point', u'nepean', u'construct']
[u'govt', u'warn', u'futur', u'extrem', u'weather']
[u'great', u'white', u'track', u'reveal', u'vital', u'inform']
[u'green', u'welcom', u'wilki', u'fold']
[u'grow', u'popul', u'hospit', u'revamp']
[u'hardcourt', u'test', u'davi', u'swede']
[u'harsher', u'water', u'restrict', u'pipelin']
[u'health', u'award', u'fund', u'indigen', u'research']
[u'health', u'servic', u'take', u'longer', u'bill']
[u'health', u'servic', u'urg', u'chang', u'manag', u'tack']
[u'hmas', u'melbourn', u'compo', u'case', u'get', u'ahead']
[u'hobart', u'waterfront', u'hotel', u'plan', u'releas']
[u'home', u'loan', u'approv', u'slip']
[u'hong', u'kong', u'conduct', u'bird', u'test']
[u'hotel', u'closur', u'upset', u'busi', u'group']
[u'indigen', u'health', u'campaign', u'launch']
[u'indonesia', u'allow', u'cross', u'return', u'aceh']
[u'indonesia', u'anti', u'terror', u'challeng', u'court']
[u'iran', u'allow', u'nuclear', u'check']
[u'iran', u'nobel', u'winner', u'hit', u'foreign', u'polici']
[u'iraqi', u'nation', u'orchestra', u'perform']
[u'israel', u'opt', u'barrier', u'extens']
[u'judg', u'ban', u'legal', u'action']
[u'kirsten', u'link', u'sussex']
[u'labor', u'comment', u'detent', u'indigen', u'issu']
[u'latham', u'push', u'australian', u'republ']
[u'latham', u'campaign', u'trail', u'gippsland']
[u'council', u'slam', u'medic', u'review', u'panel']
[u'lobster', u'price', u'rock']
[u'local', u'govt', u'group', u'seek', u'stock', u'rout', u'chang']
[u'local', u'govt', u'happi', u'nativ', u'titl', u'settlement']
[u'loxton', u'broadband', u'year']
[u'mackay', u'host', u'leagu', u'carniv']
[u'mafia', u'kill', u'itali', u'studi']
[u'maitland', u'councillor', u'plan', u'suburb']
[u'charg', u'firearm', u'threat']
[u'charg', u'melbourn', u'sieg']
[u'kill', u'gold', u'coast', u'build', u'site']
[u'take', u'iron']
[u'counter', u'council', u'critic']
[u'mayor', u'accus', u'compani', u'dupe', u'citi']
[u'mayor', u'defend', u'council', u'financ']
[u'mcgee', u'target', u'tour']
[u'melbourn', u'run', u'super', u'team']
[u'melbourn', u'singl', u'tram', u'network']
[u'memori', u'return', u'fall', u'soldier', u'diari', u'famili']
[u'million', u'spend', u'hospit', u'redevelop']
[u'minist', u'prais', u'make', u'concess', u'fish']
[u'minist', u'warn', u'work', u'continu', u'aquif', u'report']
[u'fear', u'air', u'lake', u'eppalock', u'level']
[u'stamp', u'duti', u'relief', u'govt']
[u'talk', u'launceston', u'hospit', u'servic']
[u'scream', u'meet']
[u'motel', u'plan', u'support', u'draw', u'critic']
[u'motorcycl', u'club', u'break', u'tradit']
[u'maintain', u'push', u'age', u'care', u'home', u'redhead']
[u'mugab', u'decis', u'selfish', u'blair']
[u'mundingburra', u'candid', u'want', u'patient', u'travel']
[u'home', u'loan', u'approv', u'fall', u'octob']
[u'jellyfish', u'speci']
[u'medic', u'centr', u'mullewa']
[u'zealand', u'head', u'iraq', u'mission']
[u'zealand', u'coach', u'year', u'eye', u'fiji', u'hint']
[u'nrma', u'stand', u'continu']
[u'nrma', u'worker', u'deni', u'put', u'motorist', u'risk']
[u'parti', u'divid', u'child', u'law']
[u'nurs', u'continu', u'workload', u'protest']
[u'obes', u'epidem', u'hit', u'indigen', u'australia']
[u'oneil', u'back', u'gregan', u'captainci']
[u'pacif', u'highway', u'open', u'fatal', u'crash']
[u'pakistan', u'reveal', u'board', u'chairman']
[u'founder', u'quiz', u'busi', u'deal']
[u'parcel', u'post', u'worker', u'strike']
[u'parent', u'question', u'son', u'heroin', u'death']
[u'peac', u'prize', u'winner', u'hit']
[u'peanut', u'allergi', u'common', u'studi']
[u'pentagon', u'gag', u'hickss', u'lawyer']
[u'pig', u'upset', u'king', u'croc', u'cat']
[u'pioneer', u'voyeur', u'websit', u'shut', u'seven', u'year']
[u'pirat', u'player', u'play', u'sydney']
[u'polic', u'bust', u'drug', u'ring']
[u'polic', u'inquiri', u'doubl', u'fatal', u'forward']
[u'polic', u'investig', u'theft', u'vandal']
[u'polic', u'look', u'wagin']
[u'polic', u'kava']
[u'polic', u'inquisit', u'german', u'heroin']
[u'polic', u'question']
[u'polic', u'tell', u'statist', u'roster']
[u'popul', u'fall', u'western']
[u'press', u'freedom', u'group', u'bombard', u'summit', u'pirat']
[u'radio', u'nation', u'strike']
[u'rain', u'help', u'eas', u'coast', u'water', u'woe']
[u'rain', u'help', u'stave', u'wilcannia', u'restrict']
[u'rat', u'hike', u'littl', u'impact', u'consum']
[u'recommend', u'improv', u'safeti', u'polic']
[u'resid', u'prepar', u'submiss', u'wast', u'dump']
[u'rotarian', u'upgrad', u'vanuatu', u'hospit']
[u'russia', u'blame', u'chechen', u'moscow', u'bomb']
[u'russian', u'presidenti', u'elect', u'march']
[u'democrat', u'bartlett', u'quit']
[u'hospit', u'staff', u'strike']
[u'santa', u'dream', u'white', u'christma', u'look', u'grim']
[u'scott', u'roll', u'good', u'form', u'championship']
[u'spong', u'busi', u'arnhem', u'land']
[u'second', u'chaplain', u'volunt', u'help', u'polic']
[u'secur', u'put', u'afghan', u'poll', u'doubt']
[u'settler', u'threaten', u'west', u'bank', u'outpost']
[u'silenc', u'gene', u'expect', u'reap', u'reward']
[u'snowsil', u'take', u'race', u'time', u'athen', u'lead']
[u'snowi', u'hydro', u'push', u'cloud', u'seed']
[u'south', u'keep']
[u'speed', u'camera', u'trap', u'cop', u'prank']
[u'squash', u'grinham', u'move', u'hong', u'kong']
[u'lanka', u'bolster', u'bat', u'second', u'test']
[u'struggl', u'leed', u'takeov', u'talk']
[u'student', u'attend', u'nation', u'defenc', u'confer']
[u'survey', u'look', u'shortag', u'skill', u'mine']
[u'sydney', u'research', u'provid', u'fertil', u'hope']
[u'taiwan', u'hold', u'referendum', u'despit', u'rebuk']
[u'hold', u'warrior']
[u'tasmania', u'launch', u'spot', u'campaign']
[u'terror', u'face']
[u'thousand', u'expect', u'enjoy', u'alburi', u'festiv']
[u'charg', u'nightclub']
[u'kill', u'kashmir', u'explos']
[u'toowoomba', u'host', u'world', u'shear', u'titl']
[u'townsvill', u'vigil', u'recognis', u'human', u'right']
[u'tree', u'clear', u'trial', u'area', u'name']
[u'fish', u'boat', u'catch', u'arnhem', u'land']
[u'confer', u'clear', u'forest', u'hurdl', u'kyoto']
[u'manag', u'iraq', u'oper', u'cyprus']
[u'offici', u'iraq', u'envoy']
[u'claim', u'upper', u'hand', u'iraq']
[u'link', u'isra', u'militari', u'tactic']
[u'prosecutor', u'jackson', u'case', u'dismiss', u'memo']
[u'reject', u'north', u'korea', u'nuclear', u'deal']
[u'reject', u'north', u'korea', u'nuclear', u'demand']
[u'shut', u'franc', u'germani', u'iraqi', u'contract']
[u'soldier', u'kill', u'iraq']
[u'question', u'livestock', u'theft', u'figur']
[u'govern', u'mean', u'spirit', u'transport']
[u'victorian', u'cancer', u'surviv', u'rate', u'rise']
[u'govt', u'hatch', u'plan', u'deregul']
[u'crime', u'tribun', u'saddam', u'absentia']
[u'warn', u'ahead', u'season']
[u'warrior', u'tiger', u'play', u'thrill', u'draw']
[u'warrior', u'tiger', u'play', u'thrill']
[u'water', u'tariff', u'price', u'polici', u'review']
[u'view', u'nanni', u'state']
[u'webber', u'champ', u'minardi', u'boss', u'stoddart']
[u'weekend', u'rain', u'miss', u'catchment']
[u'wilki', u'undecid', u'polit', u'career']
[u'william', u'factor', u'offer', u'lift', u'buchanan']
[u'worker', u'disput', u'compulsori', u'drug', u'test']
[u'wound', u'israel', u'blast']
[u'adelaid', u'strike', u'cancel']
[u'agforc', u'air', u'stock', u'rout', u'chang', u'fear']
[u'agreement', u'bolster', u'marin', u'research']
[u'servic', u'promis', u'econom', u'benefit']
[u'launch', u'council', u'candid']
[u'ambul', u'servic', u'respond', u'quicker', u'time']
[u'amrozi', u'refus', u'testifi', u'bali', u'case']
[u'ancient', u'javanes', u'coin', u'wash', u'london']
[u'rank', u'uni']
[u'armstrong', u'mountain', u'hera', u'jump', u'ship']
[u'atsb', u'issu', u'report', u'plane', u'crash']
[u'atsic', u'commission', u'support', u'abus', u'legisl']
[u'atsic', u'question', u'indigen', u'jail', u'polici']
[u'auditor', u'general', u'hear', u'nat', u'highway', u'blowout', u'claim']
[u'aussi', u'mull', u'adelaid', u'pace', u'attack']
[u'aussi', u'softbal', u'upset', u'japan']
[u'australia', u'commit', u'polic']
[u'australia', u'consid', u'polic', u'assist']
[u'bank', u'allow', u'scrap', u'eftpo', u'wholesal', u'fee']
[u'bank', u'resourc', u'push', u'share', u'market', u'lower']
[u'barn', u'target', u'athen', u'select']
[u'bartlett', u'tell', u'pont']
[u'biologist', u'track', u'movement', u'frog', u'speci']
[u'blaze', u'rag', u'glenorchi', u'timber', u'yard']
[u'charg', u'drive', u'offenc']
[u'breakthrough', u'murder', u'case']
[u'bush', u'congratul', u'putin', u'elect', u'result']
[u'bushfir', u'threaten', u'camp', u'grind']
[u'calm', u'spill', u'lake', u'flood', u'fear']
[u'campaign', u'continu', u'improv', u'highway']
[u'campaign', u'warn', u'illeg', u'rabbit']
[u'cane', u'toad', u'kill', u'snake']
[u'explos', u'rock', u'italian', u'town']
[u'cash', u'flow', u'ansett', u'worker']
[u'catchment', u'benefit', u'fund', u'boost']
[u'chelsea', u'target', u'juventus', u'midfield', u'nedv']
[u'chief', u'justic', u'recognis', u'palm', u'justic', u'group']
[u'chines', u'banker', u'jail', u'corrupt']
[u'church', u'unclear', u'inmat', u'futur']
[u'plan', u'iraqi', u'domest', u'servic', u'report']
[u'citigold', u'look', u'charter', u'tower', u'expans']
[u'citi', u'socceroo', u'get', u'date', u'duke']
[u'communiti', u'correct', u'worker', u'protest']
[u'concern', u'rice', u'market', u'reform']
[u'communiti', u'watch']
[u'construct', u'bargara', u'unit', u'block', u'start']
[u'correct', u'worker', u'stage', u'protest']
[u'costello', u'scuttl', u'backbench', u'plan']
[u'council', u'hope', u'tarcutta', u'truck', u'stop']
[u'councillor', u'dismiss', u'consult', u'water', u'report']
[u'councillor', u'fear', u'hous', u'impact', u'plant']
[u'council', u'maintain', u'polit']
[u'council', u'prais', u'tourism', u'polici']
[u'council', u'consult', u'public', u'trade', u'hour']
[u'council', u'urg', u'livestock', u'plan', u'stronger']
[u'council', u'want', u'return', u'dubbo', u'elector']
[u'crew', u'rescu', u'blaze', u'trawler']
[u'crew', u'battl', u'bushfir', u'tasman', u'peninsula']
[u'offer', u'scienc', u'cours']
[u'dalai', u'lama', u'stress', u'import', u'india', u'pakistan']
[u'defam', u'action', u'latham', u'drop']
[u'develop', u'consid', u'legal', u'port', u'nepean', u'block']
[u'domest', u'violenc', u'accept', u'china', u'poll']
[u'dummi', u'bid']
[u'dust', u'action', u'group', u'signal', u'court', u'action']
[u'earthquak', u'shake']
[u'embattl', u'singer', u'kelli', u'win', u'award']
[u'england', u'coach', u'fletcher', u'prais', u'strength']
[u'england', u'crumbl', u'muralitharan', u'controversi']
[u'warn', u'swim', u'beach']
[u'explor', u'offic', u'basin', u'ahead']
[u'famili', u'shock', u'babi', u'killer', u'sentenc']
[u'farmer', u'lament', u'powerlin', u'plan']
[u'farmer', u'slow', u'seek', u'drought']
[u'feder', u'delay', u'coach', u'choic']
[u'equip', u'pass', u'date']
[u'flea', u'bite', u'gogh', u'sell', u'million']
[u'fleme', u'miss', u'pakistan', u'seri', u'hernia']
[u'fleme', u'test', u'fit', u'wellington', u'match']
[u'fmit', u'board', u'member', u'nomin', u'vacanc']
[u'nation', u'candid', u'mayor']
[u'child', u'charg', u'drop']
[u'french', u'adopt', u'doggi', u'bag', u'wine']
[u'fuel', u'suppli', u'freez', u'strand', u'australian', u'pilot']
[u'german', u'look', u'love', u'wrong', u'place']
[u'germani', u'free', u'septemb', u'accus']
[u'giant', u'tree', u'death', u'prompt', u'nation', u'park']
[u'girl', u'miss', u'educ', u'stake', u'bodi']
[u'bartlett', u'chanc', u'rudd', u'say']
[u'global', u'warm', u'blame', u'extrem', u'weather']
[u'goldfield', u'prison']
[u'govt', u'consult', u'drought', u'affect', u'farmer']
[u'govt', u'urg', u'fund', u'respit', u'care']
[u'govt', u'urg', u'push', u'tougher', u'law']
[u'grinham', u'squash', u'quarter']
[u'har', u'race', u'chief', u'defend', u'restructur']
[u'health', u'servic', u'worri', u'union', u'ban', u'stall']
[u'help', u'hand', u'break', u'hill', u'har', u'race']
[u'hope', u'water', u'flow', u'studi']
[u'hop', u'high', u'polic', u'beat', u'crime']
[u'hous', u'boom', u'continu', u'mackay']
[u'hungri', u'hayden', u'prowl', u'adelaid']
[u'hungri', u'hayden', u'make', u'obsess']
[u'see', u'clear', u'profit']
[u'indigen', u'talk', u'irrig', u'plan']
[u'industri', u'factori', u'connect', u'natur']
[u'intern', u'student', u'head', u'poatina']
[u'jackson', u'return']
[u'japan', u'chase', u'free', u'trade', u'asia']
[u'jehovah', u'convent', u'begin', u'sydney']
[u'jobless', u'rate', u'steadi']
[u'journalist', u'defend', u'decis', u'enter', u'aborigin']
[u'kangaroo', u'theft', u'probe', u'stall']
[u'kartik', u'answer', u'indian']
[u'kimmorley', u'keep', u'cronulla', u'captainci']
[u'kingfish', u'farm', u'locat', u'caus', u'concern']
[u'labor', u'dismiss', u'vote', u'rig', u'claim']
[u'landcar', u'effort', u'southern', u'farmer']
[u'latham', u'make', u'region', u'commit']
[u'latham', u'republ', u'plan', u'viabl']
[u'legless', u'zanardi', u'race', u'tour', u'season']
[u'leski', u'inquest', u'hear', u'memori', u'laps']
[u'live', u'export', u'trade', u'talk', u'begin', u'riyadh']
[u'local', u'industri', u'benefit', u'film', u'success']
[u'long', u'serv', u'councillor', u'honour', u'mudge']
[u'lucki', u'lyon', u'lead', u'final', u'team']
[u'machineri', u'spar', u'cost', u'blaze']
[u'mackay', u'legal', u'centr', u'close']
[u'madigan', u'work', u'galleri', u'entranc']
[u'injur', u'robbi', u'william', u'concert']
[u'kill', u'fatal', u'crash']
[u'mansfield', u'saleyard', u'jeopardi']
[u'manuka', u'site', u'redevelop']
[u'martin', u'stand', u'consent', u'law']
[u'mayor', u'reject', u'investig']
[u'mayor', u'stand', u'delay', u'koala', u'plan']
[u'north', u'coast', u'research', u'bushfir', u'centr']
[u'miner', u'resourc', u'export', u'rise']
[u'miner', u'boost', u'effici', u'amidst', u'loom', u'loss']
[u'minist', u'inspect', u'gladston', u'storm', u'damag']
[u'minist', u'reject', u'highway', u'blowout', u'claim']
[u'mogo', u'play', u'role', u'boost', u'firefight', u'protect']
[u'case', u'confirm', u'whoop', u'cough', u'outbreak']
[u'encourag', u'need', u'trade', u'minist', u'say']
[u'unimpress', u'anarchi', u'cours']
[u'nation', u'energi', u'regul', u'establish']
[u'nation', u'museum', u'decis', u'racist', u'dodson']
[u'nat', u'question', u'ethanol', u'report']
[u'nat', u'irrig', u'report', u'govt']
[u'pakistan', u'cricket', u'chief', u'embrac', u'india']
[u'power', u'station', u'come', u'line']
[u'newspap', u'competit', u'breach']
[u'zealand', u'rugbi', u'ball']
[u'council', u'opposit', u'flourid', u'water', u'propos']
[u'nrma', u'talk', u'break']
[u'govt', u'depart', u'blame', u'slow', u'land']
[u'health', u'complaint', u'head', u'roll']
[u'nurs', u'rise']
[u'trucki', u'threaten', u'christma', u'strike']
[u'nurs', u'tell', u'malpractic', u'death']
[u'nurs', u'home', u'staff', u'assur']
[u'oarsom', u'pair', u'olymp', u'fast', u'track']
[u'democrat', u'contest', u'poll']
[u'opera', u'hous', u'protest', u'case', u'adjourn']
[u'pakistan', u'razzaq', u'miss', u'start', u'zealand', u'tour']
[u'pampl', u'grab', u'lead']
[u'parcel', u'deliveri', u'strike']
[u'peopl', u'encourag', u'rail', u'servic']
[u'plan', u'build', u'industri', u'cooper']
[u'pleas', u'iraqi', u'rebuild', u'contract']
[u'stand', u'frontbench', u'attack', u'latham']
[u'polic', u'face', u'action', u'prank']
[u'polic', u'investig', u'holiday', u'camp', u'fire']
[u'polic', u'search', u'miss']
[u'polic', u'target', u'water', u'safeti']
[u'polic', u'urg', u'christma', u'road', u'safeti']
[u'propos', u'bail', u'difficult']
[u'public', u'ask', u'water', u'save', u'idea']
[u'queensland', u'spend', u'renov']
[u'radar', u'help', u'coastal', u'town', u'cyclon', u'readi']
[u'ravensthorp', u'health', u'centr', u'oper']
[u'reid', u'hand', u'sydney', u'wildcard']
[u'rembrandt', u'steal', u'heist']
[u'report', u'sydney', u'hospit', u'claim']
[u'resurg', u'indian', u'threaten', u'adelaid']
[u'tinto', u'announc', u'iron', u'boost']
[u'riverland', u'support', u'work', u'dole', u'scheme']
[u'road', u'group', u'upbeat', u'latham', u'deer', u'park', u'comment']
[u'safeti', u'audit', u'disrupt', u'construct', u'work']
[u'govt', u'appeal', u'wast', u'dump', u'decis']
[u'salvo', u'ban', u'detent', u'centr', u'blame']
[u'quiet', u'achiev', u'say']
[u'schumach', u'stronger', u'year', u'say', u'todt']
[u'senior', u'collin', u'charg']
[u'shortlist', u'announc', u'springbok']
[u'sid', u'downturn', u'natur', u'doctor', u'say']
[u'singer', u'husband', u'charg', u'domest', u'violenc']
[u'situat', u'critic', u'timor', u'asylum', u'seeker']
[u'korea', u'investig', u'claim', u'north', u'nuke', u'activ']
[u'smoke', u'longreach', u'club']
[u'smoke', u'bomb', u'prank', u'mar', u'danc']
[u'south', u'africa', u'pull', u'plug', u'santa', u'claus', u'mail']
[u'spanish', u'coastguard', u'save', u'wild', u'boar', u'bacon']
[u'spectat', u'warn', u'steer', u'clear', u'dolphin']
[u'spread', u'plant', u'diseas', u'caus', u'concern']
[u'stem', u'cell', u'creat', u'fertil', u'sperm', u'mice']
[u'storm', u'toll', u'south', u'east', u'forest']
[u'swan', u'hill', u'council', u'reject', u'wast', u'dump', u'propos']
[u'tatiana', u'head', u'north', u'search', u'gold']
[u'teacher', u'disput', u'soon', u'resolv']
[u'time', u'run', u'elector', u'boundari']
[u'tourist', u'urg', u'fruit', u'fli', u'riverland']
[u'tradit', u'healer', u'launch', u'book']
[u'trust', u'seek', u'govt', u'action', u'woodsmok', u'pollut']
[u'twin', u'peak', u'director', u'rais', u'money', u'medit']
[u'union', u'head', u'guard', u'safe', u'hous']
[u'union', u'welcom', u'alloc', u'registri']
[u'unit', u'coach', u'urg', u'better', u'decis', u'make']
[u'unit', u'doubl', u'nistelrooy', u'chequ']
[u'plan', u'militari', u'base', u'eastern', u'europ']
[u'refug', u'fight', u'save', u'abus', u'eleph']
[u'sooth', u'russian', u'concern', u'troop', u'movement']
[u'issu', u'tuna', u'warn']
[u'ventolin', u'inhal', u'recal']
[u'govt', u'probe', u'flood', u'fraud', u'claim']
[u'hospit', u'complic', u'alarm', u'say']
[u'victorian', u'chief', u'back', u'judgment']
[u'violenc', u'common', u'health', u'care', u'worker', u'studi']
[u'violenc', u'rock', u'middl', u'east']
[u'govt', u'plan', u'greenhous', u'gas']
[u'wall', u'steadi', u'ahead', u'econom', u'data']
[u'water', u'alloc', u'agforc', u'support']
[u'water', u'crisi', u'microscop']
[u'west', u'indi', u'gambl', u'greenhorn']
[u'westpac', u'prais', u'latest', u'rat', u'rise']
[u'wind', u'bring', u'power', u'line', u'tree']
[u'windsor', u'urg', u'state', u'challeng', u'liquor', u'plan']
[u'wollongong', u'council', u'revis', u'pool', u'databas']
[u'york', u'water', u'suppli', u'increas']
[u'youth', u'unemploy', u'drop', u'year']
[u'zaheer', u'doubt', u'adelaid', u'test']
[u'zimbabw', u'offici', u'stand', u'dictat', u'comment']
[u'zimbabw', u'parliament', u'back', u'commonwealth', u'pull']
[u'honour', u'braveri', u'bali']
[u'academ', u'reject', u'cours', u'anarchi', u'claim']
[u'accc', u'find', u'condit', u'mislead']
[u'agassi', u'serena', u'defend', u'aust', u'open', u'titl']
[u'angler', u'fin', u'shark', u'fish', u'breach']
[u'angler', u'warn', u'reef', u'law']
[u'antarct', u'adventur', u'resist', u'move', u'send', u'home']
[u'antarct', u'voyag', u'discoveri', u'hunt', u'speci']
[u'armi', u'band', u'leader', u'demot', u'challeng', u'order']
[u'asian', u'nation', u'declar', u'common', u'communiti']
[u'make', u'strong', u'gain']
[u'attack', u'ivori', u'coast', u'televis', u'leav', u'dead']
[u'attempt', u'abduct', u'disturb', u'polic']
[u'aussi', u'pilot', u'secur', u'fuel', u'antarctica']
[u'aussi', u'squash', u'sister', u'knock', u'world', u'open']
[u'australia', u'bat']
[u'australia', u'take', u'session', u'honour']
[u'australia', u'win', u'toss', u'elect']
[u'bartlett', u'resum', u'duti']
[u'bateman', u'perman', u'polit', u'offic']
[u'beatti', u'backtrack', u'latham', u'comment']
[u'beatti', u'deni', u'approach', u'minist']
[u'rush', u'expect', u'crop', u'submiss']
[u'blair', u'fight', u'british', u'freedom', u'summit']
[u'boyfriend', u'charg', u'ryan', u'disappear']
[u'break', u'hill', u'jobless', u'rate', u'rise']
[u'build', u'evacu', u'furnitur', u'factori']
[u'bush', u'defend', u'decis', u'iraq', u'contract']
[u'feder', u'support', u'highway', u'revamp']
[u'campaign', u'fail', u'stop', u'agricultur', u'colleg', u'closur']
[u'cardiologist', u'announc', u'futur']
[u'carr', u'defend', u'handl', u'hospit', u'crisi']
[u'carr', u'woodlawn', u'worker', u'partial']
[u'chariti', u'report', u'christma', u'shortag']
[u'chicken', u'farm', u'boost', u'safeti', u'fine']
[u'citi', u'face', u'manchest', u'derbi', u'doom']
[u'colleg', u'pray', u'miss', u'teenag']
[u'cooma', u'monaro', u'council', u'reject', u'super', u'council', u'plan']
[u'copi', u'aust', u'india', u'prepar', u'team']
[u'council', u'decis', u'lead', u'hotel', u'reopen']
[u'councillor', u'saleyard', u'leas']
[u'council', u'think', u'transport', u'plan', u'right', u'track']
[u'court', u'find', u'teen', u'guilti', u'esper', u'murder']
[u'court', u'order', u'real', u'estat', u'agent', u'damag']
[u'croc', u'hope', u'continu', u'win', u'way']
[u'cuban', u'hijack', u'plane', u'reach']
[u'dairi', u'farmer', u'parmalat', u'assur']
[u'deal', u'save', u'pictur', u'garden']
[u'democrat', u'announc', u'soon']
[u'deport', u'businessman', u'jail', u'singapor']
[u'dept', u'angri', u'deliber', u'fire']
[u'dept', u'announc', u'health', u'servic', u'arrang']
[u'dept', u'confirm', u'sourc']
[u'diver', u'retriev', u'rock', u'climber', u'bodi']
[u'deni', u'meddl', u'leski', u'case']
[u'docker', u'revers', u'financi', u'woe']
[u'doubt', u'cast', u'gold', u'price', u'forecast']
[u'break', u'barrier']
[u'downer', u'back', u'iraq', u'contract']
[u'drought', u'dri', u'abattoir', u'number']
[u'durham', u'sign', u'akhtar', u'second', u'season']
[u'die', u'win', u'workplac', u'compo', u'claim']
[u'earthquak', u'look']
[u'entri', u'seek', u'cunnamulla', u'fella', u'competit']
[u'exempt', u'like', u'free', u'state']
[u'exot', u'weed', u'travel', u'shoe']
[u'expand', u'firm', u'urg', u'consid', u'local']
[u'farmer', u'seek', u'recognit', u'terracotta', u'warrior']
[u'fear', u'patron', u'contract', u'hepat']
[u'fear', u'train', u'servic', u'derail', u'truck', u'job']
[u'festiv', u'mark', u'cultur', u'centr', u'open']
[u'fewer', u'custom', u'leav', u'dark', u'payment']
[u'film', u'maker', u'apologis', u'lizard', u'smuggl']
[u'firefight', u'battl', u'fortescu', u'blaze']
[u'gene', u'chimp', u'post']
[u'flyer', u'order', u'repar']
[u'priest', u'appeal', u'abus', u'sentenc']
[u'worldcom', u'chief', u'die']
[u'forum', u'focus', u'cross', u'border', u'multicultur', u'issu']
[u'forum', u'offer', u'voic', u'dubbo', u'youth']
[u'member', u'join', u'council']
[u'fund', u'child', u'health', u'wait', u'list']
[u'global', u'warm', u'affect', u'stock']
[u'good', u'time', u'ahead', u'townsvill', u'race']
[u'govt', u'encourag', u'bud', u'idol']
[u'govt', u'firm', u'face', u'sew', u'protest']
[u'govt', u'float', u'open', u'freight', u'rail', u'link']
[u'govt', u'launch', u'indigen', u'tourism', u'program']
[u'govt', u'prepar', u'challeng']
[u'grain', u'receiv', u'year']
[u'grigorieva', u'hop', u'coast', u'help', u'secur', u'olymp']
[u'grigorieva', u'vault', u'coast']
[u'hail', u'storm', u'link', u'climat', u'chang']
[u'health', u'servic', u'announc', u'budget', u'surplus']
[u'hear', u'smell', u'separ', u'chimp']
[u'high', u'court', u'allow', u'indefinit', u'jail', u'appeal']
[u'hodg', u'take', u'extend', u'leav']
[u'hospit', u'revamp', u'plan', u'push', u'onward']
[u'hundr', u'quit', u'iraqi', u'armi', u'disput']
[u'hussey', u'captain', u'australia', u'india']
[u'hybrid', u'car', u'antarctica']
[u'iaea', u'chief', u'tell', u'israel', u'nuke']
[u'flight', u'repair', u'problem', u'nasa']
[u'injuri', u'windi', u'deep', u'say', u'logi']
[u'insur', u'woe', u'snuff', u'christma', u'candl']
[u'introduc', u'fish', u'threaten', u'frog', u'popul']
[u'iranian', u'face', u'deport', u'lose', u'case']
[u'italian', u'senat', u'pass', u'strict', u'fertil', u'law']
[u'italian', u'senat', u'pass', u'tough', u'fertil', u'law']
[u'jagger', u'receiv', u'knighthood']
[u'japan', u'asean', u'nation', u'meet']
[u'japan', u'work', u'south', u'east', u'asian', u'tie']
[u'suspect', u'deport', u'indonesia']
[u'fin', u'injuri']
[u'king', u'track', u'pig', u'upset', u'bullet']
[u'koperberg', u'meet', u'council', u'settl']
[u'leski', u'inquest', u'hear', u'disput', u'evid']
[u'liquor', u'accord', u'deliv', u'cask', u'chang']
[u'charg', u'fraud']
[u'charg', u'sydney', u'shoot']
[u'extradit', u'theft', u'charg']
[u'mayor', u'happi', u'phone', u'boost']
[u'mbeki', u'criticis', u'howard', u'role', u'zimbabw', u'decis']
[u'arrest', u'coff', u'brawl']
[u'question', u'taxi', u'driver', u'assault']
[u'miandad', u'confid', u'pakistan', u'arriv']
[u'minist', u'back', u'construct', u'safeti', u'effort']
[u'fund', u'tackl', u'reef', u'pest']
[u'indigen', u'land', u'protect', u'victoria']
[u'storm', u'rain', u'head', u'central', u'highland']
[u'storm', u'predict', u'western']
[u'draw', u'line', u'council', u'boundari']
[u'upbeat', u'break', u'hill', u'site', u'epic', u'film']
[u'want', u'straight', u'answer', u'ambul', u'station']
[u'nat', u'confid', u'taxi', u'allow', u'rethink']
[u'nauru', u'hunger', u'strike', u'widen']
[u'newcastl', u'kingz']
[u'newcastl', u'target', u'unit', u'butt']
[u'home', u'year', u'dental', u'servic']
[u'hous', u'estat', u'build', u'communiti', u'pride']
[u'recruit', u'signal', u'chang']
[u'nrma', u'patrol', u'road']
[u'nrma', u'staff', u'march', u'head', u'offic']
[u'minist', u'deni', u'nurs', u'threat']
[u'nuclear', u'inform', u'miss', u'alamo', u'blunder']
[u'offic', u'charg', u'prison', u'smuggl']
[u'firm', u'overcharg', u'iraq']
[u'oldest', u'fossil', u'marsupi', u'discov', u'china']
[u'onlin', u'hotlin', u'timber', u'chemic', u'concern']
[u'open', u'south', u'africa', u'solid', u'start']
[u'opposit', u'happi', u'icac', u'probe']
[u'opposit', u'question', u'role', u'babi', u'manslaught']
[u'orgi', u'scandal', u'outrag', u'china']
[u'osbourn', u'stop', u'breath', u'follow', u'accid']
[u'oscar', u'doubl', u'predict']
[u'paedophil', u'lose', u'sentenc', u'reduc']
[u'perth', u'extradit']
[u'money', u'spend']
[u'point', u'nepean', u'land', u'spark', u'battl', u'will']
[u'polic', u'close', u'book', u'literari', u'mysteri']
[u'polic', u'weapon', u'drug', u'hous']
[u'polic', u'hunt', u'child', u'attack']
[u'polic', u'probe', u'child', u'abduct', u'attempt']
[u'pont', u'prime', u'career']
[u'pont', u'put', u'australia', u'command']
[u'power', u'connect', u'cost', u'remain', u'high']
[u'privat', u'fund', u'museum', u'open']
[u'probe', u'launch', u'butler', u'tank', u'water', u'woe']
[u'public', u'hospit', u'nurs', u'boost']
[u'push', u'reopen', u'rail', u'freight', u'link']
[u'qanta', u'manag', u'join', u'aviat', u'safeti', u'board']
[u'quak', u'move', u'millthorp', u'resid']
[u'queen', u'be', u'sting', u'rule']
[u'race', u'driver', u'scoot', u'troubl']
[u'rain', u'earli', u'christma', u'gift', u'farmer']
[u'rampag', u'win', u'cultur', u'recognit']
[u'real', u'pit', u'bayern', u'champ', u'leagu']
[u'region', u'fear', u'hold', u'tafe']
[u'religi', u'group', u'oppos', u'french', u'school', u'rule']
[u'remors', u'german', u'thief', u'return', u'steal', u'loot']
[u'research', u'closer', u'ebola', u'treatment']
[u'revamp', u'rescu', u'chopper']
[u'reveng', u'rapist', u'refus', u'appeal']
[u'erupt', u'nativ', u'titl', u'claim']
[u'rugbi', u'boss', u'oneil', u'resign']
[u'russia', u'work', u'save', u'tigress']
[u'govt', u'compar', u'milli', u'vanilli']
[u'school', u'cleaner', u'face', u'uncertain', u'futur', u'union', u'say']
[u'school', u'feder', u'govt', u'fund', u'boost']
[u'scientist', u'say', u'debat', u'hijack']
[u'scientist', u'discov', u'bacteria', u'produc', u'power']
[u'scientist', u'longev']
[u'scottsdal', u'sawmil', u'busi', u'year']
[u'senior', u'collin', u'lead', u'second', u'round']
[u'senior', u'clear', u'coolum']
[u'senior', u'hold', u'clubhous', u'lead']
[u'serena', u'sign', u'massiv', u'sponsorship', u'deal']
[u'servic', u'station', u'oper', u'baulk', u'racv', u'servic']
[u'seven', u'pilgrim', u'injur', u'west', u'bank', u'shoot']
[u'shire', u'warn', u'need', u'kiddi', u'pool', u'fenc']
[u'singapor', u'airlin', u'pleas', u'court', u'rule']
[u'skandia', u'win', u'sydney', u'hobart', u'warm']
[u'snowdon', u'seek', u'pine', u'answer']
[u'sobrieti', u'reign', u'hall', u'power', u'howard', u'say']
[u'solomon', u'militia', u'leader', u'face', u'court']
[u'lanka', u'tighten', u'grip', u'england']
[u'staff', u'screensound', u'head', u'say']
[u'storm', u'leav', u'damag', u'trail', u'lake', u'macquari']
[u'strand', u'tourist', u'die', u'desert', u'journey']
[u'suppli', u'issu', u'worri', u'mango', u'processor']
[u'support', u'belmont', u'hospit', u'midwiferi', u'servic']
[u'sydney', u'guilti', u'manslaught']
[u'sydney', u'theatr', u'compani', u'rob']
[u'tasmanian', u'honour', u'role', u'bali', u'bomb']
[u'nurs', u'rise']
[u'option', u'open', u'say']
[u'taxi', u'driver', u'quiz', u'crime', u'crackdown']
[u'telemarket', u'job', u'bolster', u'bundaberg', u'economi']
[u'dinosaur', u'drug', u'say', u'pound']
[u'time', u'journalist', u'injur', u'iraq']
[u'tourism', u'group', u'open', u'visitor', u'centr']
[u'transport', u'compani', u'wind']
[u'trek', u'ludwig', u'leichardt', u'event']
[u'trespass', u'decis', u'disappoint', u'atsic']
[u'schoolgirl', u'murder', u'trial', u'wind']
[u'unemploy', u'drop', u'north', u'west']
[u'consid', u'second', u'plagiar', u'report']
[u'link', u'death', u'climat', u'chang']
[u'postpon', u'decis', u'clone']
[u'push', u'tech', u'develop', u'riski']
[u'tactic', u'blame', u'civilian', u'death', u'iraq']
[u'valencia', u'cruis', u'past', u'maccabi', u'uefa']
[u'vandal', u'caus', u'airport', u'safeti', u'concern']
[u'vic', u'domin']
[u'democrat', u'senat', u'back', u'bartlett']
[u'adopt', u'crop']
[u'wheatbelt', u'unemploy', u'figur', u'drop']
[u'wilkinson', u'return', u'newcastl']
[u'winegrap', u'grower', u'upset', u'money', u'demand']
[u'sign', u'deal']
[u'woman', u'award', u'terror', u'studi']
[u'woman', u'charg', u'bank', u'theft']
[u'youth', u'drop', u'centr', u'extend', u'open', u'hour']
[u'brisban', u'suburb', u'power']
[u'rebel', u'art', u'shake']
[u'arson', u'suspect', u'brisban', u'tyre', u'shop', u'blaze']
[u'australia', u'build', u'massiv', u'total']
[u'aust', u'swim', u'appoint', u'act', u'coach']
[u'azerbaijan', u'baba', u'die', u'age']
[u'bank', u'turn', u'forest', u'natur', u'reserv']
[u'bartlett', u'continu', u'split', u'democrat']
[u'beachley', u'win', u'sixth', u'straight', u'world', u'titl']
[u'bichel', u'heap', u'pressur', u'india']
[u'bondi', u'host', u'anti', u'child', u'detent', u'protest']
[u'kill', u'blast', u'near', u'karzai', u'pakistan', u'home']
[u'bush', u'back', u'return', u'strong', u'dollar', u'polici']
[u'bush', u'defend', u'integr', u'busi', u'iraq']
[u'bush', u'sign', u'syria', u'sanction']
[u'canadian', u'swear']
[u'church', u'push', u'communiti', u'base', u'asylum', u'process']
[u'civilian', u'network', u'join', u'anti', u'terror', u'effort']
[u'coastwatch', u'put', u'tourist', u'rescu', u'luck']
[u'court', u'report', u'highlight', u'fund', u'shortfal']
[u'cull', u'concern', u'spark', u'kangaroo', u'stocktak']
[u'darwin', u'woman', u'honour', u'breast', u'cancer', u'awar']
[u'dead', u'british', u'tourist', u'fail', u'precaut']
[u'democrat', u'bartlett', u'notic']
[u'dilshan', u'leav', u'england', u'struggl']
[u'doubl', u'pont']
[u'dravid', u'laxman', u'need', u'count']
[u'dutch', u'driver', u'face', u'court', u'jogger', u'death']
[u'earli', u'christma', u'red', u'owen', u'kewel', u'resum']
[u'envoy', u'urg', u'israel', u'palestinian', u'relat']
[u'constitut', u'summit', u'rock']
[u'countri', u'deadlock', u'vote']
[u'outbreak', u'kill', u'children']
[u'frentzen', u'leav', u'seri']
[u'fuel', u'compani', u'eas', u'price', u'watchdog']
[u'fuel', u'final', u'reach', u'strand', u'adventur']
[u'fuel', u'reach', u'strand', u'adventur']
[u'german', u'presid', u'say', u'compatriot', u'grumpi']
[u'govt', u'issu', u'disabl', u'park', u'warn']
[u'green', u'warn', u'govt', u'respons', u'deporte', u'safeti']
[u'heat', u'take', u'toll', u'nauru', u'hunger', u'striker']
[u'hick', u'final', u'meet', u'lawyer']
[u'hiroshima', u'bomb', u'survivor', u'protest', u'museum', u'display']
[u'tech', u'lego', u'inspir', u'young', u'engin']
[u'hodg', u'take', u'leav', u'legal', u'case', u'pend']
[u'inter', u'hand', u'sochaux', u'uefa', u'test', u'barca', u'return']
[u'iran', u'sign', u'protocol', u'tougher', u'nuke']
[u'iraqi', u'bomb', u'kill', u'policeman', u'wind', u'pole']
[u'iraqi', u'cleric', u'demand', u'role']
[u'italian', u'viewer', u'urg', u'think', u'outsid']
[u'jackson', u'domin', u'sportstar', u'award']
[u'juri', u'retir', u'british', u'schoolgirl', u'murder', u'trial']
[u'juventus', u'aim', u'lift', u'seri']
[u'kalli', u'centuri', u'compound', u'windi', u'woe']
[u'knight', u'striker', u'notch', u'win']
[u'kuwaiti', u'media', u'target', u'letter', u'bomb']
[u'kyoto', u'protocol', u'stall', u'russia', u'dalli']
[u'laport', u'sign', u'year', u'deal']
[u'latham', u'lift', u'labor', u'poll', u'stand']
[u'launceston', u'general', u'allay', u'cardiolog', u'fear']
[u'charg', u'bank', u'theft']
[u'markgraaff', u'withdraw', u'coach', u'race']
[u'microsoft', u'remov', u'swastika', u'softwar', u'font']
[u'nauru', u'detent', u'protest', u'escal']
[u'nauru', u'strike', u'haven', u'blacklist']
[u'staff', u'boost', u'indigen', u'tourism', u'develop']
[u'nigeria', u'warn', u'bounti', u'hunter', u'taylor', u'snatch']
[u'dead', u'injur', u'road', u'accid']
[u'opposit', u'criticis', u'govt', u'hunter', u'island']
[u'orang', u'plan', u'absurd', u'opposit', u'say']
[u'outrag', u'afghan', u'talk', u'deport', u'nauru', u'detaine']
[u'outrag', u'rural', u'colleg', u'closur']
[u'palestinian', u'student', u'kill', u'roadblock', u'shoot']
[u'parliament', u'mislead', u'hospit', u'malpractic']
[u'peru', u'leav', u'homeless']
[u'peru', u'presid', u'ask', u'cabinet', u'resign']
[u'pneumonia', u'claim', u'free', u'willi', u'star']
[u'polic', u'street', u'inner', u'sydney', u'crime', u'blitz']
[u'polic', u'dead', u'british', u'tourist']
[u'polic', u'presenc', u'remain', u'despit', u'tram', u'attack']
[u'polic', u'silent', u'possibl', u'gangland', u'murder', u'link']
[u'polic', u'underworld', u'kill']
[u'power', u'hungri', u'fergi', u'face', u'boardroom', u'revolt', u'report']
[u'prawn', u'industri', u'float', u'fish', u'farm', u'concern']
[u'prison', u'catch', u'month']
[u'creat', u'indigen', u'youth', u'fund']
[u'queen', u'leav', u'hospit', u'doubl', u'surgeri']
[u'quit', u'decis', u'mutual', u'rugbi', u'boss', u'oneil']
[u'rain', u'aid', u'fortescu', u'firefight']
[u'real', u'deportivo', u'home']
[u'reef', u'fish', u'law', u'come', u'play']
[u'retir', u'judg', u'say', u'detent', u'polici', u'shame']
[u'rspca', u'want', u'pest', u'hunt']
[u'make', u'bali', u'bomb', u'payout']
[u'teacher', u'hone', u'internet', u'skill']
[u'scholarship', u'boost', u'indigen', u'health', u'research']
[u'search', u'resum', u'miss', u'teen']
[u'senior', u'take', u'stroke', u'lead', u'final', u'round']
[u'mick', u'claim', u'great', u'honour']
[u'mick', u'take', u'centr', u'stage', u'buckingham', u'palac']
[u'sixer', u'breaker', u'thrash', u'giant']
[u'korean', u'jail', u'north', u'summit', u'bribe']
[u'smith', u'make', u'mark', u'west', u'indi']
[u'smithon', u'resid', u'protest', u'island', u'leas']
[u'soham', u'juri', u'send', u'home', u'weekend']
[u'soni', u'bertelsmann', u'agre', u'music', u'merger', u'deal']
[u'swashbuckl', u'crow', u'spark', u'terror', u'alert']
[u'sydney', u'firm', u'can', u'toni', u'award']
[u'tasmanian', u'biki']
[u'adelaid', u'hill', u'crash']
[u'ukrain', u'announc', u'compens', u'deal', u'black']
[u'court', u'slap', u'gag', u'order', u'milosev']
[u'senat', u'demand', u'guantanamo', u'resolut']
[u'soldier', u'kill', u'iraq', u'attack']
[u'gogh', u'withdraw', u'auction']
[u'vic', u'claim', u'inning', u'point']
[u'teacher', u'plan', u'roll', u'strike', u'wage', u'disput']
[u'villeneuv', u'continu', u'wait', u'drive', u'offer']
[u'virgin', u'blue', u'blame', u'govt', u'servic']
[u'approv', u'corrupt', u'fight', u'bodi']
[u'liber', u'light']
[u'wenger', u'tip', u'henri', u'world', u'best']
[u'westhuyzen', u'leicest', u'boss']
[u'wilkinson', u'doubt', u'england', u'neck', u'injuri']
[u'albright', u'criticis', u'bush', u'poor', u'post', u'strategi']
[u'algal', u'bloom', u'halt', u'smoki', u'aquacultur']
[u'antarctica', u'adventur', u'face', u'delay']
[u'arab', u'prison', u'serious', u'injur', u'custodi']
[u'rage', u'grip', u'launceston']
[u'aurora', u'warn', u'christma', u'prank']
[u'aussi', u'paralympian', u'win', u'giant', u'slalom']
[u'australia', u'aim', u'earli', u'wicket']
[u'australia', u'play', u'japan', u'sofbal', u'seri', u'final']
[u'babi', u'scheme', u'bonus', u'parent']
[u'barca', u'win', u'way', u'send', u'local']
[u'bell', u'fire', u'investig']
[u'biki', u'scour', u'victoria', u'chariti', u'donat']
[u'blair', u'confirm', u'saddam', u'captur', u'report']
[u'bushfir', u'close', u'road', u'tasmania']
[u'canberran', u'oppos', u'screensound', u'reloc']
[u'bomb', u'destroy', u'iraqi', u'polic', u'station']
[u'chelsea', u'owner', u'formal', u'offer', u'henri', u'report']
[u'china', u'blame', u'labour', u'ill', u'greenspan']
[u'chronolog', u'life', u'saddam', u'hussein']
[u'cometh', u'hour', u'cometh']
[u'cosgrov', u'commit', u'extend', u'east', u'timor', u'role']
[u'custom', u'offic', u'win', u'free', u'speech', u'rule']
[u'test', u'confirm', u'saddam', u'captur', u'iraq', u'council', u'head']
[u'doctor', u'group', u'call', u'feder', u'fund']
[u'downer', u'urg', u'open', u'mind', u'missil', u'shield']
[u'dravid', u'laxman', u'torment', u'australia']
[u'ellison', u'tour', u'tackl', u'counter', u'terror', u'smuggl']
[u'constitut', u'summit', u'collaps']
[u'road']
[u'govt', u'travel', u'prefer', u'reduc', u'rout', u'competit']
[u'govt', u'urg', u'adopt', u'bushfir', u'centr', u'model']
[u'histor', u'constitut', u'talk', u'begin', u'afghanistan']
[u'holland', u'rethink', u'cocain', u'smuggl', u'polici']
[u'hopkin', u'retain', u'undisput', u'middleweight', u'titl']
[u'like', u'australia', u'say', u'irish', u'athlet']
[u'immigr', u'confirm', u'nauru', u'hunger', u'strike', u'casualti']
[u'indian', u'batsmen', u'adelaid']
[u'form', u'taipan', u'upset', u'hawk']
[u'iran', u'reformist', u'fear', u'elect', u'interfer']
[u'isra', u'forc', u'kill', u'palestinian', u'milit', u'armi']
[u'japan', u'defeat', u'australia', u'softbal', u'seri']
[u'karzai', u'dismiss', u'taliban', u'threat']
[u'kierath', u'deni', u'leadership', u'hop', u'elect']
[u'king', u'georg', u'white', u'restrict', u'consid']
[u'kiwi', u'prove', u'combin']
[u'let', u'buri', u'beckham', u'bone', u'incid', u'plead', u'irureta']
[u'light', u'flyweight', u'unif', u'duel', u'end', u'draw']
[u'lindsey', u'question', u'liber', u'preselect', u'process']
[u'local', u'disput', u'hunter', u'island', u'leas', u'deal']
[u'lord', u'ring', u'britain', u'favourit', u'novel']
[u'loya', u'jirga', u'conven', u'ratifi', u'afghan', u'constitut']
[u'charg', u'sydney', u'crime']
[u'minist', u'defend', u'king', u'cross', u'inject', u'room']
[u'miss', u'enact', u'jog', u'driver', u'memori']
[u'murder', u'intimid', u'male', u'prison', u'guard']
[u'needi', u'famili', u'help', u'hand', u'christma']
[u'ban', u'special', u'raver']
[u'health', u'crisi', u'warrant', u'royal', u'commiss']
[u'claim', u'medic', u'panel', u'patient', u'right']
[u'democrat', u'spell', u'elect', u'agenda']
[u'food', u'rule', u'match', u'state', u'aagaard']
[u'work', u'hard', u'malaysian', u'travel']
[u'hop', u'emul', u'aust', u'trade', u'deal']
[u'pavarotti', u'say', u'second', u'time']
[u'philippin', u'minist', u'die', u'sudden', u'diplomat']
[u'poet', u'palestin', u'die', u'age']
[u'polic', u'continu', u'hunt', u'underworld', u'killer']
[u'polic', u'investig', u'paradis', u'accid']
[u'polic', u'deni', u'inject', u'room', u'honey', u'claim']
[u'polic', u'probe', u'moreton', u'boat', u'explos']
[u'polic', u'search', u'sedan', u'miss', u'case']
[u'polic', u'enact', u'miss', u'teen', u'movement']
[u'port', u'hedland', u'hunger', u'strike', u'continu', u'church', u'say']
[u'plan', u'disast', u'respons', u'unit']
[u'queen', u'leav', u'hospit', u'face', u'knee']
[u'queensland', u'ramp', u'school', u'secur']
[u'ruiz', u'beat', u'rahman', u'ugli', u'bout']
[u'saddam', u'face', u'public', u'trial', u'iraqi', u'offici']
[u'africa', u'strong', u'posit', u'west', u'indi']
[u'polic', u'investig', u'shoot']
[u'schwarzer', u'boro', u'record']
[u'second', u'hunger', u'striker', u'take', u'hospit']
[u'senior', u'win', u'second', u'titl']
[u'south', u'tabl', u'clash']
[u'spain', u'morocco', u'plan', u'undersea', u'tunnel']
[u'spink', u'extend', u'legaci']
[u'sydney', u'immigr', u'raid']
[u'syria', u'condemn', u'sanction']
[u'syria', u'say', u'israel', u'friend', u'congress']
[u'teenag', u'drown', u'yarra', u'river']
[u'thiev', u'face', u'tougher', u'penalti']
[u'thousand', u'evacu', u'amid', u'costa', u'rica', u'flood']
[u'season', u'break', u'record']
[u'tourist', u'death', u'show', u'danger', u'campaign', u'lack']
[u'charg', u'ecstasi', u'haul']
[u'violent', u'attack', u'perth']
[u'unconfirm', u'report', u'saddam', u'arrest', u'iraq']
[u'unit', u'chelsea', u'revolut', u'stall']
[u'agenc', u'dark', u'terror', u'group', u'financ']
[u'confirm', u'saddam', u'captur', u'aliv']
[u'forc', u'video', u'captur', u'saddam']
[u'offic', u'fin', u'beat', u'iraqi']
[u'review', u'iraqi', u'armi', u'mass', u'walkout']
[u'hoogenband', u'victori', u'deni', u'world']
[u'vaughan', u'savour', u'best', u'inning', u'draw']
[u'vic', u'head', u'outright', u'point']
[u'visit', u'medic', u'await', u'collect', u'bargain', u'verdict']
[u'plan', u'good', u'parent', u'class']
[u'warn', u'take', u'comeback', u'step']
[u'wilkinson', u'week']
[u'yemen', u'foil', u'attack', u'british', u'embassi']
[u'oyster', u'farm', u'close']
[u'aagaard', u'lose', u'health', u'portfolio']
[u'abar', u'downgrad', u'export', u'earn', u'forecast']
[u'abbott', u'sell', u'medic', u'indemn', u'plan', u'cabinet']
[u'clarifi', u'crowd', u'control', u'legisl']
[u'adventur', u'leav', u'antarct']
[u'afghan', u'start', u'debat', u'constitut']
[u'agarkar', u'lead', u'indian', u'charg']
[u'agarkar', u'tear', u'aussi', u'attack']
[u'agarkar', u'tear', u'aussi']
[u'albani', u'offic', u'carri', u'inspect']
[u'albani', u'jobless', u'rate', u'drop']
[u'allianc', u'hop', u'credit', u'union', u'licenc']
[u'ord', u'jump', u'saddam', u'captur']
[u'american', u'film', u'institut', u'honour', u'year']
[u'antarct', u'adventur', u'land']
[u'author', u'loss', u'contempt', u'court', u'appeal']
[u'bali', u'victim', u'hesit', u'film', u'product']
[u'beatti', u'pledg', u'coast', u'waterway', u'fund']
[u'bergkamp', u'strike', u'put', u'arsenal']
[u'bore', u'work', u'boost', u'wilcannia', u'water']
[u'britain', u'oppos', u'death', u'penalti', u'saddam']
[u'brogden', u'back', u'inject', u'room']
[u'bumbl', u'fijian', u'unfit', u'world', u'report']
[u'bushrang', u'chase']
[u'bushrang', u'escap', u'outright']
[u'prove', u'tall', u'bridg']
[u'compo', u'claim', u'chang']
[u'peel', u'region', u'elect', u'delay']
[u'camera', u'phone', u'caus', u'privaci', u'concern']
[u'canberra', u'sydney', u'flight']
[u'candlelight', u'vigil', u'hold', u'murder', u'toddler']
[u'bomb', u'kill', u'baghdad']
[u'crash', u'childcar', u'centr']
[u'cfmeu', u'concern', u'worker', u'pasminco', u'plant']
[u'chechen', u'rebel', u'kill', u'guard', u'report']
[u'chines', u'garbag', u'collector', u'get', u'death', u'kill']
[u'christma', u'thiev', u'steal', u'stock']
[u'citrus', u'grower', u'vote', u'bigger', u'levi']
[u'coff', u'harbour', u'coroni', u'inquiri', u'probe', u'murder']
[u'council', u'car', u'ethanol', u'blend', u'fuel']
[u'councillor', u'consid', u'belmont', u'foreshor', u'develop']
[u'councillor', u'question', u'council', u'reform']
[u'council', u'surplus', u'spend', u'bush']
[u'council', u'want', u'broadband', u'connect']
[u'court', u'order', u'clark', u'paper', u'handov']
[u'crackdown', u'urg', u'unsaf', u'jetskiier']
[u'crunch', u'week', u'black', u'coach', u'mitchel']
[u'dealer', u'petit', u'speed', u'limit']
[u'delorain', u'resid', u'discuss', u'locomot', u'futur']
[u'despotovski', u'ponder', u'return', u'knight', u'stadium']
[u'develop', u'board', u'upbeat', u'central', u'west', u'growth']
[u'evid', u'rais', u'leski', u'suspect']
[u'doctor', u'boost', u'western']
[u'doubl', u'murder', u'accus', u'deni', u'bail']
[u'investig', u'babi', u'death']
[u'dravid', u'wari', u'late', u'spin']
[u'driver', u'face', u'charg']
[u'drought', u'affect', u'christma', u'shop']
[u'drought', u'blame', u'grain', u'fold']
[u'drug', u'squad', u'offic', u'grant', u'bail']
[u'elder', u'woman', u'contract', u'meningococc', u'diseas']
[u'epilepsi', u'relat', u'death', u'refer']
[u'eros', u'fear', u'spark', u'slower', u'water', u'speed']
[u'european', u'leader', u'welcom', u'saddam', u'captur']
[u'expert', u'say', u'leski', u'evid', u'accident']
[u'famili', u'dept', u'better', u'resourc', u'beatti']
[u'famili', u'upset', u'refuge', u'girl', u'plight']
[u'farmer', u'urg', u'tree', u'clear', u'law', u'protest']
[u'fear', u'screensound', u'futur']
[u'miss', u'raft', u'accid', u'indonesia']
[u'film', u'produc', u'get', u'smuggl', u'fine']
[u'children', u'product', u'recal']
[u'footbal', u'club', u'play', u'brawl']
[u'human', u'shield', u'tell', u'iraqi', u'reaction']
[u'franc', u'win', u'time', u'grand', u'prix']
[u'fund', u'promis', u'seek', u'women', u'health', u'centr']
[u'futur', u'educ', u'support', u'staff', u'limbo']
[u'gold', u'near', u'yalgoo']
[u'govt', u'look', u'polic', u'cross', u'border', u'power']
[u'grain', u'facil', u'pressur']
[u'grower', u'deni', u'centrelink', u'rort']
[u'grow', u'monaro', u'graze', u'countri']
[u'hayden', u'fall', u'adelaid']
[u'hayden']
[u'health', u'servic', u'defend', u'cut', u'elect', u'surgeri']
[u'helicopt', u'crash', u'near', u'columba', u'fall']
[u'higher', u'earner', u'like', u'divorc', u'studi']
[u'hope', u'warwick', u'rodeo', u'open', u'late']
[u'hope', u'remain', u'colleg', u'residenti', u'cours']
[u'hospit', u'project', u'lead', u'improv', u'care']
[u'hostag', u'take', u'southern', u'russia', u'report']
[u'hunger', u'strike', u'send', u'hospit']
[u'indian', u'inspir', u'lara', u'record', u'spree']
[u'indian', u'verg', u'famous', u'victori']
[u'india', u'adelaid']
[u'industri', u'better', u'inform', u'indigen']
[u'industri', u'welcom', u'fine', u'shark', u'fisherman']
[u'infrastructur', u'protect', u'port', u'extens']
[u'injur', u'prepar', u'elect']
[u'quot', u'reaction', u'saddam', u'captur']
[u'insur', u'premium', u'cloud', u'diabet', u'camp']
[u'intellig', u'saddam', u'needl', u'haystack']
[u'interim', u'heritag', u'list', u'railway', u'hous']
[u'investig', u'begin', u'factori', u'abus', u'claim']
[u'iran', u'build', u'case', u'saddam']
[u'iraqi', u'australian', u'welcom', u'saddam', u'captur']
[u'iraqi', u'leader', u'stake', u'claim', u'saddam']
[u'iraqi', u'peopl', u'winner', u'howard']
[u'island', u'airlin', u'ground']
[u'italian', u'bruni', u'sign', u'minardi']
[u'justic', u'group', u'urg', u'monitor', u'indigen']
[u'king', u'import', u'brown', u'arriv', u'sydney']
[u'labor', u'question', u'herbarium', u'reloc']
[u'liber', u'happi', u'senat', u'ticket']
[u'lotteri', u'scam', u'warn']
[u'love', u'hold', u'wood', u'golf', u'world', u'challeng']
[u'lucki', u'kitten', u'surviv', u'scrape', u'street', u'sweeper']
[u'magistr', u'plead', u'guilti', u'child', u'charg']
[u'millionair', u'overnight']
[u'charg', u'attempt', u'abduct']
[u'die', u'port', u'kembla', u'hous']
[u'court', u'senior', u'murder']
[u'custodi', u'court', u'appear']
[u'man', u'death', u'suspici', u'polic']
[u'court', u'child', u'attack']
[u'marin', u'survey', u'timor', u'begin']
[u'market', u'tip', u'welcom', u'saddam', u'captur']
[u'meet', u'consid', u'leve', u'flood', u'concern']
[u'meet', u'decid', u'supermarket', u'plan']
[u'sale', u'wait', u'govern', u'fund']
[u'industri', u'strong', u'xstrata', u'takeov']
[u'minist', u'hint', u'cassowari', u'habitat']
[u'minist', u'urg', u'stay', u'council', u'budget', u'woe']
[u'miriam', u'council', u'move', u'burial', u'outsid']
[u'mitchel', u'put', u'case', u'rugbi', u'board']
[u'asylum', u'seeker', u'join', u'hunger', u'strike']
[u'injur', u'hors', u'leav', u'palm']
[u'mother', u'charg', u'doubl', u'murder']
[u'angri', u'seymour', u'water', u'offic', u'closur']
[u'museum', u'director', u'take', u'posit']
[u'musharraf', u'address', u'pakistani', u'public']
[u'musharraf', u'escap', u'assassin']
[u'figur', u'chines', u'love']
[u'flight', u'unlock', u'tourism', u'opportun']
[u'law', u'begin', u'today']
[u'object', u'saddam', u'death']
[u'nrma', u'say', u'queensland', u'tow', u'problem']
[u'health', u'minist', u'deni', u'hospit']
[u'hospit', u'procedur', u'review']
[u'lib', u'health', u'royal', u'commiss']
[u'upper', u'hous', u'probe', u'health', u'complaint']
[u'health', u'minist', u'oust', u'reshuffl']
[u'offici', u'down', u'year']
[u'spill', u'reach', u'coastlin']
[u'dead', u'head', u'collis']
[u'pakistan', u'batsmen', u'rampant', u'test', u'warm']
[u'parent', u'urg', u'internet', u'cautious']
[u'park', u'victoria', u'accus', u'miss', u'tourism']
[u'parliament', u'hous', u'reduc', u'water', u'consumpt', u'level']
[u'petit', u'call', u'zone', u'revamp']
[u'petit', u'seek', u'zone', u'rebat', u'chang']
[u'plan', u'afoot', u'stabl', u'lobster', u'price']
[u'plan', u'sink', u'perth', u'railway', u'line']
[u'look', u'forward', u'saddam', u'trial']
[u'cabinet', u'assess', u'aust', u'packag']
[u'polic', u'appeal', u'inform', u'abduct']
[u'polic', u'arrest', u'teen', u'arm', u'robberi']
[u'polic', u'info', u'underworld', u'shoot']
[u'polic', u'continu', u'search', u'miss', u'teenag']
[u'polic', u'continu', u'search', u'sunshin', u'coast']
[u'polic', u'waratah', u'west', u'fight']
[u'polic', u'investig', u'melbourn', u'shoot']
[u'polic', u'drown', u'victim']
[u'polic', u'probe', u'toddler', u'death']
[u'priest', u'abus', u'charg', u'escap', u'prison', u'sentenc']
[u'probe', u'find', u'timber', u'health', u'threat']
[u'public', u'urg', u'continu', u'water', u'boil']
[u'criticis', u'feder', u'youth', u'pledg']
[u'rail', u'yard', u'transform', u'tourism', u'site']
[u'ranger', u'fall', u'celtic']
[u'real', u'edg', u'deportivo', u'stay']
[u'real', u'estat', u'agent', u'face', u'dummi', u'bid', u'charg']
[u'recreat', u'park', u'open', u'christma', u'break']
[u'region', u'road', u'accid', u'claim', u'live']
[u'road', u'signag', u'consid', u'outback', u'tourist']
[u'roma', u'clear', u'itali']
[u'rural', u'press', u'take', u'control', u'harri']
[u'author', u'warn', u'escap', u'psychiatr', u'patient']
[u'saddam', u'deni', u'weapon', u'claim', u'report']
[u'saddam', u'hold', u'baghdad', u'airport']
[u'saddam', u'cooper', u'rumsfeld', u'say']
[u'saddam', u'captur', u'produc', u'mix', u'feel', u'middl']
[u'saddam', u'captur', u'send', u'market', u'higher']
[u'farmer', u'oppos']
[u'safeti', u'award', u'nightclub', u'curfew']
[u'safeti', u'remind', u'christma', u'light']
[u'saff', u'back', u'natur', u'resourc', u'manag']
[u'magistr', u'remand', u'trial']
[u'scholarship', u'offer', u'young', u'indigen', u'leader']
[u'school', u'blaze', u'prove', u'cost']
[u'scientist', u'clone', u'resist', u'calv']
[u'scientist', u'closer', u'ebola', u'treatment']
[u'scientist', u'survey', u'timor', u'life']
[u'sharehold', u'consid', u'offer', u'newspap', u'firm']
[u'shire', u'presid', u'succumb', u'injuri']
[u'shooter', u'parti', u'welcom', u'law']
[u'smith', u'famili', u'bring', u'christma', u'cheer']
[u'socceroo', u'close', u'venezuela', u'friend', u'deal']
[u'someth', u'gotta', u'make', u'wave', u'offic']
[u'storm', u'threaten', u'southern', u'india']
[u'studi', u'show', u'disturb', u'trend', u'region']
[u'summit', u'adopt', u'plan', u'action', u'technolog']
[u'sydney', u'rental', u'vacanc', u'rate', u'increas']
[u'taipan', u'climb', u'ladder', u'hawk']
[u'firefight', u'battl', u'peninsula', u'blaze']
[u'govt', u'urg', u'help', u'children', u'diabet', u'camp']
[u'taxpay', u'pick', u'gallop', u'trip']
[u'teacher', u'sick', u'meningococc']
[u'tendulkar', u'remov', u'martyn', u'waugh']
[u'thirteen', u'player', u'name', u'queensland', u'hockey', u'side']
[u'charg', u'heist']
[u'tourism', u'group', u'lose', u'market', u'manag']
[u'town', u'squar', u'sail', u'till', u'christma']
[u'turkish', u'cypriot', u'vote', u'deadlock']
[u'dead', u'militari', u'accid', u'near', u'iran', u'nuclear']
[u'hospit', u'accid']
[u'deni', u'anim', u'cruelti', u'charg']
[u'youth', u'program', u'help', u'kid']
[u'union', u'ask', u'better', u'worker', u'entitl']
[u'look', u'govern']
[u'allow', u'saddam', u'right']
[u'dollar', u'gain', u'saddam', u'captur']
[u'politician', u'urg', u'quick', u'saddam', u'trial']
[u'venic', u'celebr', u'opera', u'hous', u'rebirth']
[u'lib', u'happi', u'senat', u'prospect']
[u'lib', u'promis', u'strong', u'campaign']
[u'environ', u'dept', u'give', u'site', u'clear']
[u'wast', u'dump', u'plan', u'oppon', u'block', u'highway']
[u'water', u'display', u'highlight', u'save']
[u'saddam', u'captur']
[u'wilkinson', u'win', u'sport', u'person', u'year']
[u'work', u'finish', u'underground', u'power', u'plan']
[u'year', u'student', u'receiv', u'result']
[u'youth', u'employe', u'honour', u'award', u'ceremoni']
[u'kill', u'iraq', u'ambush', u'attempt']
[u'sign', u'firefight', u'agreement']
[u'opposit', u'critic', u'art', u'budget', u'cut']
[u'adventur', u'land', u'adelaid']
[u'airlin', u'suspens', u'worri', u'flinder', u'communiti']
[u'alcohol', u'screen', u'imparja']
[u'anim', u'cull', u'plan', u'like', u'draw', u'mix', u'reaction']
[u'anim', u'right', u'protest', u'present', u'piggeri', u'video']
[u'annan', u'oppos', u'saddam', u'death', u'penalti']
[u'spill', u'olymp']
[u'archaeolog', u'concern', u'shannon', u'creek', u'pipelin']
[u'archibald', u'winner', u'face', u'court']
[u'dead', u'cyclon', u'hit', u'south', u'india']
[u'aussi', u'dollar', u'like', u'higher']
[u'australia', u'recruit', u'young', u'redback']
[u'australia', u'hire', u'intent', u'lead']
[u'beatti', u'turn', u'paradis']
[u'lade', u'omar', u'wont', u'take', u'aliv', u'pakistan', u'cleric']
[u'boral', u'launch', u'cement', u'maker']
[u'builder', u'secur', u'liber', u'preselect']
[u'cabinet', u'reject', u'hous', u'plan']
[u'papparazi', u'ban', u'privat', u'event']
[u'cambodia', u'destroy', u'missil', u'stockpil']
[u'campo', u'parad', u'street', u'london']
[u'carer', u'like', u'suffer', u'depress', u'report']
[u'chaney', u'call', u'compassion']
[u'charg', u'stand', u'melbourn', u'real', u'estat', u'agent']
[u'china', u'confid', u'sar', u'return']
[u'chopper', u'crash', u'inquiri', u'recommend', u'safeti', u'gear']
[u'christma', u'spirit', u'lack', u'assault', u'case', u'rise']
[u'cicada', u'number', u'explod', u'rain']
[u'clean', u'mobil', u'tank', u'begin']
[u'cochlear', u'share', u'drop', u'profit', u'warn']
[u'communiti', u'help', u'overturn', u'correct', u'servic', u'plan']
[u'commut', u'abl', u'access', u'timet']
[u'concern', u'neerkol', u'exhibit']
[u'cooper', u'charg']
[u'council', u'allow', u'storey', u'build']
[u'council', u'awash', u'mix', u'view', u'bath', u'plan']
[u'council', u'consid', u'rail', u'boom', u'gate']
[u'council', u'debat', u'landfil', u'option']
[u'council', u'defer', u'copper', u'lake', u'decis']
[u'council', u'pool', u'fund', u'dive']
[u'council', u'rethink', u'identif']
[u'council', u'urg', u'link', u'road', u'fund']
[u'court', u'reject', u'applic', u'marriag']
[u'court', u'show', u'secur', u'tape', u'footag']
[u'crime', u'commiss', u'investig', u'gangland', u'death']
[u'offload', u'anim', u'health', u'oper']
[u'death', u'spark', u'greater', u'road', u'safeti']
[u'democrat', u'manag', u'push', u'leadership', u'spill']
[u'dozen', u'seal', u'pup', u'wash', u'rock']
[u'drought', u'lengthen', u'meatwork', u'year']
[u'elliott', u'issu', u'bankruptci', u'petit']
[u'defeat', u'marsh', u'show', u'leadership']
[u'everyday', u'abus', u'homosexu', u'studi']
[u'farmer', u'group', u'readi', u'seek', u'canola', u'probe']
[u'feder', u'polic', u'offic', u'arriv']
[u'graduat', u'find', u'primari', u'school', u'teach', u'job']
[u'film', u'bodi', u'defend', u'cut']
[u'film', u'fan', u'piec', u'memorabilia']
[u'final', u'hepat', u'restaur', u'screen']
[u'servic', u'tell', u'resid', u'remain', u'vigil']
[u'firm', u'press', u'matter', u'paper', u'chang']
[u'fisher', u'warn', u'law']
[u'kill', u'landmin', u'explos', u'angola']
[u'flower', u'hondo', u'return', u'seri']
[u'chamber', u'commerc', u'offici', u'fin']
[u'join', u'anti', u'log', u'protest']
[u'health', u'minist', u'deni', u'cover']
[u'kill', u'protest', u'saddam', u'arrest']
[u'tonn', u'ivori', u'africa']
[u'fund', u'help', u'foster', u'riverland', u'small', u'busi']
[u'furnitur', u'textil', u'artist', u'reward']
[u'girl', u'critic', u'childcar', u'crash']
[u'govt', u'releas', u'fund', u'age', u'care', u'facil']
[u'govt', u'slash', u'fund', u'environ', u'group']
[u'govt', u'tell', u'inject', u'room', u'wast', u'money']
[u'registrar', u'bolster', u'blayney']
[u'greenpeac', u'activist', u'dead', u'brazil']
[u'group', u'aim', u'market', u'lamb']
[u'grower', u'time', u'payment']
[u'guilti', u'plea', u'warn', u'blackmail', u'charg']
[u'hangov', u'matter', u'time']
[u'hick', u'speak', u'father']
[u'higher', u'nickel', u'price', u'boost', u'goldfield', u'product']
[u'home', u'build', u'level', u'increas']
[u'hotter', u'weather', u'bring', u'warn']
[u'howard', u'brush', u'latham', u'gain']
[u'hume', u'council', u'resist', u'alburi', u'takeov']
[u'improv', u'hall', u'creek', u'hous']
[u'india', u'begin', u'chase']
[u'india', u'cheer', u'victori', u'cricket']
[u'india', u'dent', u'australia', u'domin']
[u'indian', u'home', u'adelaid']
[u'india', u'brink', u'histori', u'adelaid']
[u'india', u'sacr', u'cow', u'shake', u'hip']
[u'india', u'take', u'lead']
[u'indonesian', u'polic', u'free', u'suspect', u'extremist']
[u'injuri', u'forc', u'england', u'chang']
[u'injuri', u'jinx', u'strike', u'newcastl', u'defend', u'woodgat']
[u'inmat', u'face', u'court', u'riot']
[u'investig', u'begin', u'possibl', u'fish', u'kill']
[u'iraqi', u'assn', u'say', u'death', u'saddam']
[u'italian', u'presid', u'refus', u'media', u'law']
[u'jamieson', u'win', u'seat', u'albani', u'council']
[u'johnson', u'delight', u'docker']
[u'juri', u'consid', u'verdict', u'murder', u'trial']
[u'kapooka', u'chief']
[u'karzai', u'reopen', u'afghan', u'highway']
[u'landslid', u'kill', u'indonesia']
[u'lara', u'hit', u'west', u'indi', u'face', u'defeat']
[u'latham', u'play', u'improv', u'poll']
[u'leed', u'build', u'rescu', u'plan', u'viduka']
[u'legal', u'behalf', u'nauru', u'detaine']
[u'lille', u'share', u'mix', u'memori', u'aluminium']
[u'liquid', u'smithton', u'chees', u'compani']
[u'lobster', u'industri', u'wait', u'extens', u'decis']
[u'loos', u'park', u'block', u'blame', u'runaway', u'indonesian']
[u'lrmi']
[u'mackay', u'council', u'trial', u'fuel', u'ethanol', u'pledg']
[u'magistr', u'call', u'govt', u'fund', u'drug', u'scheme']
[u'major', u'product', u'tour', u'central']
[u'malaysian', u'villag', u'claim', u'sight']
[u'charg', u'murder', u'refus', u'bail']
[u'die', u'gladston', u'crash']
[u'escap', u'blaze', u'apart']
[u'get', u'bond', u'boat', u'death']
[u'face', u'trial', u'follow', u'internet', u'crime', u'law']
[u'wrong', u'imprison', u'award']
[u'market', u'lose', u'yesterday', u'gain']
[u'market', u'eas', u'saddam', u'captur']
[u'media', u'get', u'glimps', u'royal', u'life']
[u'melbourn', u'relaunch', u'latrob', u'invest', u'plan']
[u'melbourn', u'storm', u'cost', u'promina']
[u'plead', u'guilti', u'nightclub', u'assault']
[u'minist', u'consid', u'amalgam']
[u'miss', u'cyclist']
[u'miss', u'father', u'unlik', u'polic']
[u'miss', u'senior', u'safe']
[u'motorist', u'prais', u'assist', u'crash', u'victim']
[u'seek', u'rail', u'secur', u'boost']
[u'welcom', u'wide', u'child', u'care', u'boost']
[u'gambier', u'hospit', u'dysfunct', u'inquiri', u'hear']
[u'nativ', u'titl', u'rule', u'overturn', u'feder', u'court']
[u'childcar', u'centr', u'alburi']
[u'state', u'govern', u'youth', u'fund']
[u'newstead', u'charg', u'murder']
[u'surgeri', u'help', u'babi', u'breath', u'better']
[u'visitor', u'centr', u'bolster', u'north', u'west', u'tourism']
[u'nitpick', u'stall', u'aid', u'grant', u'india']
[u'dollar', u'respit', u'rural', u'export']
[u'job', u'deal']
[u'saddam', u'trial', u'month', u'iraq', u'court', u'founder', u'say']
[u'davi', u'open', u'test']
[u'polic', u'apologis', u'raid']
[u'polic', u'search', u'trail', u'bike', u'rider']
[u'win', u'fierc', u'battl']
[u'spill', u'investig']
[u'opposit', u'call', u'dairi', u'work', u'group']
[u'opposit', u'reveal', u'document', u'hospit']
[u'opposit', u'say', u'centr', u'stay', u'open']
[u'polic', u'raid', u'motorcycl', u'club']
[u'owen', u'year', u'kewel', u'eye', u'return']
[u'pilchard', u'industri', u'question', u'quota']
[u'plant', u'head', u'expect', u'complaint', u'dismiss']
[u'outlin', u'fuel', u'excis', u'overhaul']
[u'polic', u'charg', u'pair', u'cannabi', u'raid']
[u'polic', u'releas', u'road', u'fatal']
[u'polic', u'search', u'middl', u'age']
[u'polic', u'consid', u'staff', u'shortag', u'woe']
[u'polic', u'unhappi', u'alcohol', u'offenc']
[u'popular', u'picnic', u'grind', u'reopen']
[u'postal', u'worker', u'cope', u'santa', u'post']
[u'power', u'shock', u'mahoney', u'select']
[u'probe', u'continu', u'bush', u'bodi']
[u'project', u'repair', u'art', u'centr', u'underway']
[u'premier', u'say', u'wont', u'stand']
[u'quinn', u'suspici', u'waterway', u'announc']
[u'rain', u'hamper', u'pitch', u'prepar', u'pakistan']
[u'rawl', u'join', u'bulldog', u'blue', u'snap', u'steven']
[u'region', u'oppos', u'hospit', u'downgrad']
[u'report', u'highlight', u'england', u'jobless', u'level']
[u'resid', u'hope', u'groundwat', u'rule', u'wast', u'dump']
[u'tinto', u'restructur', u'job']
[u'rock', u'throw', u'train', u'injur', u'passeng']
[u'roma', u'youth', u'polici', u'launch']
[u'apologis', u'advert']
[u'rspca', u'offer', u'time', u'advic']
[u'rural', u'clinic', u'school', u'perform']
[u'saddam', u'replac', u'jesus', u'time']
[u'sale', u'forc', u'chang', u'plan', u'rabattoir']
[u'remo', u'recal', u'couscous', u'product']
[u'schumach', u'set', u'sight', u'titl', u'number', u'seven']
[u'scientist', u'prepar', u'whale', u'research', u'expedit']
[u'seafood', u'industri', u'fish', u'cheaper', u'fuel']
[u'search', u'fail', u'miss', u'perth']
[u'second', u'charg', u'sydney', u'shoot']
[u'secur', u'measur', u'step', u'darwin']
[u'senat', u'reflect', u'histori', u'vote']
[u'attack', u'put', u'woman', u'hospit']
[u'shire', u'call', u'airport', u'secur']
[u'shire', u'pursu', u'plan', u'hous', u'saleyard']
[u'marshal', u'begin', u'work']
[u'snowi', u'tourism', u'look', u'strong', u'season']
[u'stang', u'hope', u'iraq', u'soccer', u'futur']
[u'state', u'govt', u'urg', u'dredg', u'river']
[u'korea', u'presid', u'renew', u'pledg', u'quit']
[u'suncorp', u'expand', u'offic']
[u'super', u'weather', u'forecast', u'quicker']
[u'taiwan', u'say', u'missil', u'vote']
[u'tapi', u'ridicul', u'cascarino', u'dope', u'accus']
[u'extend', u'school', u'leav']
[u'ferri', u'oper', u'place', u'administr']
[u'tchen', u'angri', u'senat', u'seat', u'loss']
[u'teacher', u'high', u'tech', u'western']
[u'teen', u'guilti', u'hous', u'blaze']
[u'toddler', u'treat', u'child', u'care', u'crash']
[u'townsend', u'head', u'list', u'scotland', u'retir']
[u'tribut', u'femal', u'indigen', u'minist']
[u'tutu', u'slam', u'south', u'africa', u'stand', u'zimbabw']
[u'twin', u'doctor', u'leav', u'singapor', u'hong', u'kong']
[u'poison', u'fish', u'lunch', u'vietnam']
[u'indigen', u'job', u'strategi']
[u'rocket', u'slam', u'kabul', u'casualti']
[u'envoy', u'begin', u'mission', u'reduc', u'iraq', u'debt']
[u'pros', u'fail', u'vijay']
[u'drug', u'trial', u'tackl', u'malaria']
[u'violet', u'town', u'group', u'want', u'shepparton', u'support']
[u'wagga', u'expect', u'weekend']
[u'indigen', u'juvenil', u'detent', u'rat', u'increas']
[u'remain', u'burglari', u'capit', u'australia']
[u'water', u'garden', u'save', u'home', u'csiro']
[u'wine', u'industri', u'look', u'increas', u'export']
[u'western', u'australian', u'recognis', u'braveri']
[u'wildcat', u'state', u'grace']
[u'winona', u'ryder', u'win', u'prais', u'judg']
[u'woman', u'face', u'court', u'theft', u'charg']
[u'worksaf', u'investig', u'pipelin', u'issu']
[u'world', u'largest', u'book', u'unveil']
[u'worley', u'manag', u'plan']
[u'young', u'thief', u'allow', u'home']
[u'zidan', u'fifa', u'player', u'year', u'time']
[u'revamp', u'museum', u'flight']
[u'urg', u'target', u'alcohol', u'abus']
[u'sack', u'spark', u'fear']
[u'keen', u'televis', u'tribun', u'proceed']
[u'age', u'care', u'demand', u'high', u'murray']
[u'age', u'care', u'nurs', u'abandon', u'job']
[u'alav', u'knock', u'sociedad', u'king']
[u'alcohol', u'spark', u'imparja', u'debat']
[u'hop', u'indemn', u'relief']
[u'amnesti', u'warn', u'pacif', u'prison', u'crisi']
[u'anderson', u'urg', u'hear', u'airport', u'tower', u'plea']
[u'energi', u'purchas', u'includ', u'west', u'asset']
[u'arm', u'boat', u'patrol', u'southern', u'ocean']
[u'arm', u'hold', u'trigger', u'manhunt']
[u'arsenal', u'bolton', u'leagu', u'semi', u'final']
[u'asic', u'get', u'interim', u'leader']
[u'push', u'higher', u'wall', u'gain']
[u'aussi', u'advanc', u'squash', u'world', u'open']
[u'aussi', u'readi', u'answer', u'indian', u'challeng']
[u'australian', u'issu', u'general', u'travel', u'alert']
[u'backpack', u'evacu', u'hostel']
[u'baghdad', u'blast', u'kill']
[u'bath', u'work', u'begin', u'februari']
[u'beller', u'pitch', u'prim', u'australia', u'india', u'clash']
[u'beller', u'pitch', u'prim', u'cricket', u'match']
[u'blaze', u'claim', u'dooki', u'crop']
[u'boat', u'maker', u'boost', u'job']
[u'brazil', u'crash', u'kill', u'injur']
[u'break', u'hill', u'prepar', u'festiv']
[u'bull', u'gabba', u'dayer']
[u'bush', u'sign', u'anti', u'spam']
[u'canberra', u'eas', u'water', u'restrict']
[u'canegrow', u'reflect', u'excis', u'decis']
[u'caretak', u'guilti', u'english', u'schoolgirl', u'murder']
[u'warn', u'email', u'fraud']
[u'challeng', u'tasmania', u'hous', u'industri']
[u'champion', u'beachley', u'consid', u'quit']
[u'child', u'kidnapp', u'give', u'longer', u'jail', u'term']
[u'child', u'pornographi', u'trial', u'adjourn']
[u'children', u'withdraw', u'sale']
[u'china', u'vow', u'crush', u'taiwan', u'independ', u'drive']
[u'chines', u'businessman', u'link', u'leed', u'takeov']
[u'grill', u'saddam']
[u'coal', u'alli', u'job', u'takeov']
[u'committe', u'hear', u'specialist', u'evid']
[u'compani', u'seek', u'bottl', u'wine', u'local']
[u'construct', u'camp', u'undergo', u'safeti', u'probe']
[u'council', u'claim', u'rosi', u'coffer']
[u'council', u'hint', u'bridport', u'water', u'restrict']
[u'council', u'hop', u'hospit', u'compo']
[u'councillor', u'vote', u'mayor', u'talk']
[u'council', u'see', u'purpl', u'hous']
[u'council', u'consid', u'supermarket', u'plan']
[u'council', u'urg', u'fight', u'toxic', u'dump']
[u'council', u'seek', u'servic', u'view']
[u'council', u'worri', u'develop', u'move']
[u'court', u'tell', u'manslaught', u'case', u'weak']
[u'construct', u'offici', u'begin']
[u'darwin', u'contract', u'elect']
[u'darwin', u'swim', u'spot', u'stay', u'close']
[u'deleg', u'caus', u'uproar', u'afghan', u'convent']
[u'demon', u'pick', u'campbel', u'rooki', u'draft']
[u'develop', u'mean', u'posit', u'pipelin']
[u'diamond', u'ring', u'lead', u'killer', u'polic']
[u'diesel', u'shortag', u'limit', u'oper']
[u'digit', u'radio', u'pilot', u'switch']
[u'diver', u'search', u'olymp', u'gold']
[u'doubt', u'cast', u'tara', u'popul', u'figur']
[u'downer', u'push', u'tongan', u'reform']
[u'dozen', u'rescu', u'river', u'near', u'melbourn']
[u'seek', u'babi', u'manslaught', u'sentenc', u'report']
[u'appeal', u'babi', u'manslaught', u'sentenc']
[u'drought', u'affect', u'famili', u'forsak', u'educ']
[u'dungog', u'council', u'turn', u'debt', u'woe']
[u'probe', u'olymp', u'spill']
[u'epic', u'give', u'posit', u'energi', u'forecast']
[u'ethanol', u'excis', u'decis', u'offer', u'indcor', u'certainti']
[u'excit', u'build', u'golf', u'open']
[u'farmer', u'wild', u'board', u'rat', u'relief']
[u'fear', u'age', u'care', u'dire', u'strait']
[u'govt', u'releas', u'fuel', u'excis', u'polici']
[u'govt', u'support', u'ethanol', u'plan']
[u'ferdinand', u'futur', u'hand', u'panel']
[u'figur', u'highlight', u'central', u'aust', u'attack']
[u'film', u'bodi', u'back', u'cut']
[u'servic', u'probe', u'rocherlea', u'blaze']
[u'flight', u'enact', u'ground']
[u'fisichella', u'test', u'ferrari', u'say', u'sauber']
[u'world', u'winner', u'england']
[u'execut', u'charg', u'briberi']
[u'freez', u'lift', u'burrup', u'plan', u'approv']
[u'fuel', u'woe', u'impact', u'harvest']
[u'fulham', u'cottag', u'return']
[u'fund', u'seek', u'save', u'fish']
[u'gallop', u'accus', u'runaway', u'rail', u'cost']
[u'good', u'cattl', u'export']
[u'governor', u'open', u'galleri']
[u'gregan', u'stay', u'year']
[u'harri', u'sale', u'rais', u'fear', u'local', u'news', u'coverag']
[u'heat', u'stay', u'health', u'minist']
[u'hilmer', u'sell', u'fairfax', u'share']
[u'hospit', u'alter', u'servic', u'christma']
[u'hous', u'blast', u'leav', u'hospit']
[u'india', u'land', u'hobart', u'team', u'clash']
[u'indonesian', u'muslim', u'outlaw', u'suicid', u'bomb']
[u'industri', u'warn', u'consum', u'wari', u'internet']
[u'intern', u'divis', u'blame', u'harri', u'sale']
[u'iran', u'signal', u'agreement', u'nuclear', u'check']
[u'iraqi', u'lab', u'plan', u'blair', u'say']
[u'iraqi', u'question', u'bodycount']
[u'iraq', u'minist', u'push', u'return']
[u'isra', u'plot', u'kill', u'saddam', u'reveal']
[u'jackson', u'formal', u'charg', u'prosecutor']
[u'juri', u'clear', u'polic', u'offic', u'crimin', u'charg']
[u'labor', u'town', u'latham', u'beazley']
[u'labor', u'review', u'super', u'entitl', u'latham']
[u'labor', u'work', u'govt', u'anti', u'terror', u'law']
[u'land', u'council', u'air', u'nativ', u'titl', u'offic', u'concern']
[u'leski', u'coron', u'criticis', u'expert']
[u'lib', u'declar', u'south', u'west', u'candid']
[u'life', u'term', u'give', u'china', u'orgi']
[u'lobster', u'tariff', u'decis', u'year']
[u'put', u'victorian', u'job', u'risk', u'govt']
[u'maher', u'star', u'bull', u'rout', u'redback']
[u'maher', u'salvag', u'inning']
[u'die', u'crash', u'passeng', u'critic']
[u'earn', u'braveri', u'award', u'abort', u'centr', u'action']
[u'face', u'court', u'stab']
[u'undergo', u'mental', u'check', u'sieg']
[u'mayor', u'seek', u'second', u'magnesium', u'project']
[u'mcgradi', u'reject', u'confid', u'motion']
[u'meet', u'talk', u'drought', u'measur']
[u'fund', u'seek', u'market', u'gold', u'zone']
[u'talk', u'kosciuszko', u'plan']
[u'back', u'call', u'wild', u'fund']
[u'needl', u'exchang', u'scheme', u'move', u'closer', u'realiti']
[u'cancer', u'drug', u'triall']
[u'foreshor', u'develop', u'wind']
[u'indemn', u'plan']
[u'rule', u'season']
[u'zealand', u'guarante', u'foreshor', u'access']
[u'water', u'restrict', u'wilcannia']
[u'assault', u'school']
[u'oppn', u'seek', u'health', u'royal', u'commiss']
[u'prawn', u'farm', u'sale', u'fuel', u'expans', u'plan']
[u'nuclear', u'crisi', u'talk', u'rule', u'year', u'south']
[u'olympian', u'ask', u'robber', u'return', u'gold', u'medal']
[u'onion', u'plant', u'nose', u'resid']
[u'organis', u'reflect', u'summerjam', u'failur']
[u'osbourn', u'heavi', u'metal', u'neck']
[u'pacemen', u'bowl', u'africa', u'west', u'indi']
[u'paralymp', u'skier', u'toppl', u'thorpedo', u'nsws', u'best']
[u'pension', u'polit', u'power', u'slash']
[u'urg', u'indemn', u'plan']
[u'point', u'cook', u'join', u'anniversari', u'flight', u'celebr']
[u'polic', u'call', u'protest', u'disrupt', u'council']
[u'polic', u'charg', u'dubbo', u'council', u'blaze']
[u'policeman', u'kill', u'saddam', u'demonstr']
[u'polic', u'probe', u'cruis', u'assault', u'alleg']
[u'polli', u'urg', u'road', u'fund', u'track']
[u'pope', u'call', u'sanction', u'leader', u'violat']
[u'posit', u'data', u'push', u'market', u'higher']
[u'posti', u'busi', u'xmas', u'approach']
[u'govt', u'boost', u'fund', u'child', u'protect']
[u'rail', u'secur', u'near', u'complet']
[u'research', u'trial', u'prostat', u'cancer', u'drug']
[u'research', u'track', u'naracoort', u'bat']
[u'revamp', u'brisban', u'north', u'bank', u'eyesor', u'slat']
[u'reward', u'offer', u'miss', u'teen', u'case']
[u'rise', u'land', u'valu', u'spark', u'rat', u'fear']
[u'roddick', u'feder', u'ferrero', u'king', u'world']
[u'erupt', u'daughter', u'hospit', u'death']
[u'rspca', u'unhappi', u'chicken', u'killer', u'sentenc']
[u'russian', u'space', u'trip', u'sale']
[u'salt', u'affect', u'farmer', u'respit']
[u'scheme', u'aim', u'hedland', u'water']
[u'search', u'miss', u'snowi', u'mountain', u'hiker']
[u'shark', u'facil']
[u'sheep', u'diseas', u'spread']
[u'singapor', u'breed', u'world', u'bisexu', u'butterfli']
[u'korea', u'send', u'troop', u'iraq']
[u'smaller', u'citi', u'risk', u'hous', u'price', u'collaps']
[u'special', u'train', u'plan', u'bushfir', u'pilot']
[u'sporn', u'lightn']
[u'strategi', u'aim', u'boost', u'bank', u'farm', u'relat']
[u'strong', u'econom', u'growth', u'forecast']
[u'sydney', u'bandit', u'spark', u'manhunt']
[u'tafe', u'cours', u'coff', u'harbour']
[u'taiwan', u'test', u'posit', u'sar']
[u'tip', u'christma', u'spend', u'record']
[u'taxi', u'driver', u'rebel']
[u'thailand', u'aust', u'pledg', u'combat', u'peopl', u'smuggl']
[u'tonga', u'gain', u'boost', u'wast']
[u'trio', u'clear', u'murder']
[u'tropic', u'hit', u'arnhem', u'land']
[u'turf', u'club', u'upbeat', u'beadman', u'ride']
[u'twin', u'town', u'plan', u'doubl', u'size']
[u'graduat', u'face', u'flat', u'job', u'market', u'report']
[u'union', u'name', u'sarina', u'shop', u'dump', u'month']
[u'withdraw', u'hamper', u'intern', u'school', u'plan']
[u'plan', u'extend', u'bougainvill', u'mission']
[u'deflat', u'push', u'aust', u'dollar', u'higher']
[u'raid', u'iraqi', u'suspect', u'weapon']
[u'secur', u'iraq', u'debt', u'deal']
[u'vanston', u'wash', u'hand', u'nauru', u'protest']
[u'vatican', u'criticis', u'treatment', u'saddam']
[u'violenc', u'continu', u'iraq']
[u'virgin', u'launch', u'wellington', u'sydney', u'servic']
[u'consid', u'aborigin', u'fish', u'right']
[u'plan', u'mine', u'job', u'summit']
[u'ship', u'builder', u'navi']
[u'water', u'restrict', u'eas', u'central']
[u'waugh', u'confid', u'australia', u'come']
[u'waugh', u'relish', u'challeng', u'go']
[u'william', u'confid', u'speedi', u'recoveri']
[u'william', u'confid', u'speedi', u'return']
[u'cut', u'riverland', u'news', u'bulletin']
[u'world', u'streaker', u'face', u'court']
[u'face', u'court', u'ecstasi', u'haul']
[u'fear', u'dead', u'south', u'korea', u'factori']
[u'aborigin', u'council', u'call', u'alcohol']
[u'academ', u'warn', u'age', u'care', u'crisi']
[u'activist', u'live', u'export', u'test', u'case']
[u'oppn', u'criticis', u'transport', u'propos']
[u'adelaid', u'share', u'stem', u'cell', u'fund']
[u'chang', u'water', u'test', u'method']
[u'ord', u'slide', u'earli', u'gain']
[u'ambul', u'servic', u'urg', u'summer', u'water', u'safeti']
[u'aquif', u'studi', u'tap', u'well']
[u'armstrong', u'aim', u'tour']
[u'asic', u'search', u'vizard', u'hous']
[u'atsic', u'urg', u'alcohol', u'advertis']
[u'aurora', u'notic', u'spark']
[u'aust', u'open', u'down']
[u'australia', u'agre', u'exercis']
[u'blatter', u'slam', u'europ', u'billionair', u'club']
[u'blaze', u'take', u'hold', u'preschool']
[u'bool', u'lagoon', u'limit', u'duck', u'hunter']
[u'burni', u'council', u'focus', u'attract', u'convent']
[u'bush', u'doctor', u'indemn', u'insur', u'effort']
[u'bushrang', u'need', u'perth', u'dayer']
[u'butt', u'plead', u'stay']
[u'surfer', u'tunnel', u'eas', u'traffic', u'woe']
[u'canadian', u'jail', u'flight', u'assault']
[u'cannon', u'trade', u'insolv', u'liquid']
[u'chang', u'bail', u'condit', u'child']
[u'chelsea', u'chase', u'nistelrooy']
[u'chirac', u'call', u'french', u'headscarf']
[u'question', u'alic', u'crime', u'figur']
[u'coal', u'export', u'grow', u'despit', u'strong', u'dollar', u'report']
[u'comment', u'seek', u'anglican', u'school', u'plan']
[u'commiss', u'offer', u'council', u'river', u'cross', u'report']
[u'communiti', u'gear', u'season', u'woe']
[u'council', u'bank', u'clune', u'studi']
[u'council', u'give', u'crisi', u'centr']
[u'council', u'give', u'servic', u'club', u'work']
[u'council', u'forgo', u'saleyard', u'secur', u'payment']
[u'council', u'urg', u'care', u'think', u'present']
[u'council', u'want', u'imparja', u'alcohol', u'continu']
[u'court', u'landhold', u'clear', u'fine']
[u'credit', u'union', u'plan', u'move', u'ahead']
[u'cyclon', u'concern', u'hamper', u'satellit']
[u'democrat', u'seek', u'year', u'ethanol', u'excis', u'free', u'period']
[u'demon', u'boss', u'surviv', u'leadership', u'challeng']
[u'doctor', u'meet', u'bateman', u'resign']
[u'downer', u'ponder', u'tonga']
[u'down', u'lead', u'windi', u'open']
[u'dummi', u'bid', u'charg', u'dismiss']
[u'earli', u'start', u'give', u'down', u'aust', u'open', u'lead']
[u'ethanol', u'refineri', u'plan', u'move', u'closer', u'realiti']
[u'timor', u'seek', u'longer', u'stay']
[u'govt', u'back', u'point', u'nepean']
[u'succumb', u'melbourn', u'heat']
[u'firefight', u'face', u'tough', u'condit', u'battl', u'blaze']
[u'firefight', u'skill', u'test']
[u'flinder', u'street', u'east', u'work', u'schedul']
[u'princip', u'face', u'wait', u'court', u'decis']
[u'sight', u'tasmania']
[u'freak', u'goal', u'save', u'inter', u'italian']
[u'fund', u'boost', u'internet', u'scheme']
[u'gallipoli', u'nomin', u'heritag', u'list']
[u'german', u'challeng', u'australian', u'movi', u'record']
[u'gladston', u'welcom', u'asbesto', u'payout']
[u'goldfield', u'acquisit', u'boost', u'miner', u'size']
[u'gold', u'ring', u'cheaper', u'swan', u'swim', u'expens']
[u'govt', u'announc', u'taxi', u'chang']
[u'govt', u'consid', u'home', u'grant', u'mean', u'test']
[u'govt', u'say', u'super', u'chang', u'unlik']
[u'greec', u'jail', u'terror', u'leader']
[u'griev', u'famili', u'want', u'death', u'inquest']
[u'grower', u'combin', u'effort', u'stave', u'liquid']
[u'grower', u'tell', u'address', u'liquid', u'payment']
[u'hamilton', u'green', u'favour', u'bowler']
[u'hewitt', u'bypass', u'olymp']
[u'hewitt', u'skip', u'olymp']
[u'hick', u'face', u'conspiraci', u'charg']
[u'high', u'citi', u'hous', u'price', u'prompt', u'bush', u'return']
[u'hop', u'anderson', u'address', u'black', u'spot']
[u'huge', u'market', u'retract', u'syring', u'inventor']
[u'india', u'hop', u'maintain', u'momentum', u'hobart']
[u'indigen', u'artefact', u'spark', u'sandon', u'legal']
[u'indigen', u'leader', u'seek', u'treati']
[u'intrud', u'stab', u'japanes', u'boy', u'classroom']
[u'investig', u'continu', u'paint', u'busi']
[u'iranian', u'face', u'sixth', u'christma', u'detent']
[u'isra', u'soldier', u'kill', u'palestinian', u'gunmen']
[u'jackson', u'return', u'cap']
[u'king', u'crush', u'cat']
[u'king', u'holder', u'mallorca', u'fall', u'levant']
[u'lara']
[u'leed', u'star', u'morri', u'court', u'rape', u'charg']
[u'lehmann', u'clear', u'comeback']
[u'liverpool', u'injuri']
[u'longer', u'hour', u'seek', u'rescu', u'chopper']
[u'blood', u'transmiss', u'case', u'diagnos']
[u'magnesium', u'site', u'decis', u'expect', u'year']
[u'malt', u'manufactur', u'win', u'suppli', u'contract']
[u'face', u'court', u'yamba', u'rape']
[u'shoot', u'reagan', u'allow', u'leav']
[u'master', u'appeal', u'preselect', u'ballot']
[u'mayor', u'angri', u'council', u'merger', u'review']
[u'mayor', u'urg', u'region', u'incent', u'help', u'peopl']
[u'mbeki', u'arriv', u'mugab', u'talk']
[u'mcgrath', u'lehmann', u'eye', u'januari', u'comeback']
[u'mean', u'test', u'plan', u'home', u'grant']
[u'medial', u'societi', u'pan', u'indemn', u'packag']
[u'melbourn', u'fire', u'caus', u'thousand', u'dollar']
[u'meninga', u'assault', u'hear', u'april']
[u'reach', u'court', u'settlement', u'church', u'abus']
[u'meter', u'reader', u'strike']
[u'michael', u'jackson', u'face', u'molest', u'charg']
[u'midwiv', u'protest', u'appoint']
[u'millic', u'hous', u'trust', u'properti', u'worth']
[u'minardi', u'sign', u'baumgartn']
[u'plan', u'promis', u'truck', u'movement']
[u'minist', u'conced', u'need', u'sarina', u'polic', u'station']
[u'minist', u'open', u'longreach', u'ambul', u'facil']
[u'misheard', u'verdict', u'free']
[u'activ', u'urg', u'youth', u'crime']
[u'arrest', u'expect', u'council', u'blaze']
[u'fund', u'inject', u'drug', u'scheme']
[u'highlight', u'need', u'polic', u'road', u'crackdown']
[u'sing', u'prais', u'bega', u'dairi', u'industri']
[u'tri', u'save', u'tafe', u'cours']
[u'want', u'land', u'review']
[u'worri', u'diesel', u'shortag', u'rural', u'impact']
[u'gambier', u'busi', u'urg', u'recycl']
[u'nation', u'park', u'spar', u'lightn', u'fire']
[u'nat', u'muchea', u'saleyard', u'wrong', u'track']
[u'nauru', u'manag', u'claim', u'children', u'push', u'strike']
[u'nauru', u'staff', u'fear', u'children']
[u'share', u'close']
[u'cours', u'test', u'aust', u'open', u'competitor']
[u'chief', u'name']
[u'korea', u'beef', u'nuclear', u'forc']
[u'immedi', u'colleg', u'sell']
[u'opposit', u'swamp', u'hospit', u'complaint']
[u'student', u'improv', u'result']
[u'cyclon', u'watch']
[u'optus', u'plan', u'satellit', u'launch']
[u'palestinian', u'teenag', u'kill', u'rafah']
[u'patrol', u'boat', u'contract', u'buoy', u'canberra', u'compani']
[u'polic', u'diver', u'recov', u'item', u'sink', u'booya']
[u'polic', u'issu', u'rail', u'safeti', u'warn']
[u'polic', u'prais', u'melbourn', u'rescu']
[u'polic', u'role', u'soham', u'murder', u'inquiri']
[u'polic', u'seek', u'help', u'solv', u'wellington', u'death']
[u'polic', u'station', u'target', u'dead', u'suicid', u'attack']
[u'polic', u'look', u'clue', u'miss', u'teen']
[u'princess', u'diana', u'inquest', u'januari']
[u'probe', u'order', u'nauru', u'protest']
[u'public', u'council', u'aquat', u'park']
[u'doctor', u'unhappi', u'indemn', u'packag']
[u'refuge', u'group', u'want', u'media', u'access', u'nauru']
[u'region', u'victoria', u'experi', u'interst', u'tourism']
[u'report', u'clear', u'near', u'miss']
[u'research', u'show', u'coral', u'gene', u'human', u'similar']
[u'road', u'contribut', u'weed', u'woe']
[u'saddam', u'baghdad', u'iraqi', u'council']
[u'safeti', u'probe', u'dead', u'intersect']
[u'sar', u'hit', u'market']
[u'seek', u'imparja', u'fund', u'stop', u'booz']
[u'seven', u'kill', u'french', u'armi', u'plane', u'crash']
[u'shooter', u'gather', u'pussi', u'hunt']
[u'singaporean', u'member', u'arrest', u'minist']
[u'singapor', u'sar', u'alert']
[u'singapor', u'quarantin', u'taiwan', u'sar', u'scare']
[u'site', u'choos', u'human', u'servic', u'build']
[u'skippi', u'star', u'die', u'london']
[u'lanka', u'draw', u'inspir', u'india']
[u'storm', u'leav', u'wheatbelt', u'home', u'dark']
[u'studi', u'find', u'fall', u'fruit', u'picker', u'number']
[u'sudan', u'confisc', u'jazeera', u'equip']
[u'surf', u'titl', u'decid', u'postpon']
[u'sydney', u'dump', u'face', u'court', u'challeng']
[u'tanker', u'blast', u'baghdad', u'accid']
[u'busi', u'defend', u'nurs', u'offer']
[u'scientist', u'win', u'intern', u'prize']
[u'white', u'asbesto']
[u'yacht', u'adventur', u'forc', u'home']
[u'thompson', u'barbarian', u'match']
[u'thredbo', u'search', u'miss', u'hiker', u'expand']
[u'soldier', u'wound', u'iraqi', u'attack', u'polic']
[u'campus', u'offer', u'marin', u'biolog', u'cours']
[u'union', u'fear', u'uranium', u'worker', u'safeti']
[u'union', u'welcom', u'extra', u'famili', u'dept', u'fund']
[u'court', u'rule', u'medic', u'marijuana']
[u'let', u'saudi', u'embassi', u'staff', u'leav']
[u'soldier', u'kill', u'baghdad', u'ambush']
[u'strike', u'central', u'american', u'free', u'trade', u'deal']
[u'troop', u'kill', u'iraq']
[u'vandal', u'target', u'mobil', u'phone', u'tower']
[u'seek', u'good', u'address', u'fuel', u'shortag']
[u'farmer', u'appeal', u'fuel', u'harvest']
[u'govt', u'back', u'lung', u'function', u'review', u'recommend']
[u'opposit', u'seek', u'wind', u'farm', u'answer']
[u'villa', u'middlesbrough', u'advanc', u'leagu', u'semi']
[u'vital', u'oxygen', u'sensor']
[u'accus', u'nativ', u'titl', u'reluct']
[u'busi', u'troubl', u'perth', u'rail', u'link']
[u'withhold', u'payment', u'anger', u'farmer', u'group']
[u'woman', u'convict', u'leav', u'babi', u'daughter']
[u'work', u'begin', u'year', u'movi', u'studio']
[u'wright', u'brother', u'flight', u'end', u'splash']
[u'contract', u'secur', u'region', u'rail', u'freight']
[u'iraqi', u'polic', u'kill', u'attack', u'offici']
[u'abalon', u'poacher', u'bust', u'victoria']
[u'announc', u'bushfir', u'rebuild', u'plan']
[u'win', u'power', u'station']
[u'allan', u'make', u'moonah', u'link']
[u'ord', u'push', u'higher']
[u'team', u'strong', u'start', u'india']
[u'aussi', u'champ', u'squash', u'world', u'open']
[u'australia', u'commit', u'million', u'help', u'fiji', u'fight']
[u'australian', u'get', u'older', u'averag']
[u'beatti', u'criticis', u'indigen', u'care', u'comment']
[u'becker', u'dodg', u'internet', u'fallout']
[u'bishop', u'involv', u'abus', u'mediat']
[u'brack', u'talk', u'region', u'employ']
[u'british', u'face', u'dirti', u'bombcharg']
[u'bulk', u'haulag', u'firm', u'complain', u'rat', u'shortfal']
[u'bull', u'tiger', u'steadi']
[u'bunburi', u'mayor', u'look', u'state', u'polit']
[u'bunburi', u'welcom', u'sink', u'illeg', u'fish', u'boat']
[u'burn', u'recov', u'steal', u'medal']
[u'burr', u'back', u'growth', u'clearfel']
[u'detaine', u'join', u'famili', u'christma']
[u'nurs', u'home', u'fund', u'boost']
[u'canada', u'decriminalis']
[u'card', u'scheme', u'patient', u'inform']
[u'centrelink', u'check', u'save', u'govt']
[u'chang', u'need', u'golf', u'club', u'project']
[u'chief', u'hospit', u'bureaucrat', u'sack']
[u'chook', u'rule', u'meat', u'eater', u'roost']
[u'clean', u'continu', u'victorian', u'storm']
[u'coast', u'enjoy', u'longer', u'beach', u'patrol']
[u'communiti', u'group', u'urg', u'share', u'fund']
[u'corridor', u'work', u'includ', u'hous', u'survey']
[u'court', u'award', u'posthum', u'damag', u'asbesto', u'victim']
[u'court', u'flummox', u'misheard', u'verdict']
[u'croc', u'expect', u'bullet']
[u'cyclon', u'season', u'open', u'debbi']
[u'debat', u'consid', u'grower', u'unsecur', u'creditor', u'status']
[u'delay', u'expect', u'catchment', u'author']
[u'despotovski', u'miss', u'melbourn', u'match']
[u'doctor', u'group', u'see', u'mix', u'insur', u'plan']
[u'downer', u'dous', u'nauru', u'citizenship', u'plan']
[u'down', u'lead', u'aust', u'open', u'field']
[u'down', u'retain', u'open', u'lead']
[u'unsur', u'action', u'court', u'verdict']
[u'east', u'germani', u'communist', u'leader', u'walk', u'free']
[u'esper', u'polic', u'crack', u'robberi']
[u'europ', u'mar', u'probe', u'enter', u'phase']
[u'explos', u'kill', u'baghdad']
[u'shire', u'presid', u'seek', u'rejoin', u'council']
[u'fals', u'alarm', u'task', u'forc']
[u'farmer', u'critic', u'aurora', u'energi']
[u'govt', u'await', u'toxic', u'wast', u'site', u'decis']
[u'ferdinand', u'hear', u'adjourn']
[u'fleme', u'hit', u'pakistan', u'fight']
[u'bond', u'exec', u'fail', u'gain', u'bail']
[u'fulham', u'aim', u'cash', u'chelsea', u'slump']
[u'fulham', u'warn', u'fergi', u'saha']
[u'gillespi', u'box', u'test']
[u'goldfield', u'record', u'high', u'suicid', u'rate']
[u'govt', u'reject', u'ward', u'closur', u'claim']
[u'govt', u'launch', u'healthi', u'river', u'strategi']
[u'gray', u'readi', u'viduka', u'goal', u'rush']
[u'green', u'group', u'unhappi', u'council', u'tree', u'polici']
[u'group', u'work', u'visitor', u'centr']
[u'henri', u'name', u'black', u'coach']
[u'hib', u'oust', u'celtic', u'leagu']
[u'high', u'hop', u'koori', u'court']
[u'hinkley', u'inquest', u'plan', u'coff', u'harbour']
[u'hospit', u'inquiri', u'chief', u'work']
[u'hous', u'price', u'kalgoorli', u'boulder']
[u'indigen', u'student', u'creat', u'histori']
[u'indonesian', u'polic', u'terror', u'suspect']
[u'insid', u'trade', u'raid', u'target', u'vizard']
[u'insur', u'oyster', u'contamin', u'payout']
[u'inter', u'viduka', u'heighten']
[u'investig', u'begin', u'fatal']
[u'pay', u'price', u'flop', u'mitchel']
[u'iran', u'allow', u'surpris', u'nuclear', u'inspect']
[u'iraq', u'unjustifi', u'putin', u'say']
[u'jackson', u'charg', u'child', u'molest']
[u'jackson', u'lawyer', u'vow', u'fight']
[u'japan', u'purchas', u'defenc', u'shield']
[u'jobless', u'rate', u'indic', u'econom', u'downturn']
[u'juri', u'consid', u'peopl', u'smuggl', u'case']
[u'kidman', u'film', u'top', u'globe', u'list']
[u'labor', u'green', u'nauru', u'help']
[u'land', u'valuer', u'protest', u'workload']
[u'love', u'put', u'hand', u'india']
[u'die', u'sturt', u'highway', u'crash']
[u'jail', u'cannabi', u'elig', u'parol', u'soon']
[u'face', u'trial', u'pregnant', u'woman', u'assault', u'charg']
[u'stand', u'trial', u'post', u'offic', u'murder']
[u'seek', u'region', u'focus', u'hous']
[u'mccafferti', u'chief', u'lose', u'posit']
[u'mcgrath', u'say', u'return', u'crucial']
[u'melbourn', u'nightclub', u'shut']
[u'milan', u'italian', u'clash', u'roma']
[u'minist', u'unveil', u'clarenc', u'valley', u'super', u'council', u'plan']
[u'minist', u'welcom', u'digger', u'club', u'fine']
[u'stay', u'quiet']
[u'navi', u'examin', u'westralia', u'find']
[u'black', u'coach', u'target', u'forward']
[u'niagara', u'fall', u'jumper', u'fin']
[u'injuri', u'latest', u'sydney', u'shoot']
[u'money', u'rise', u'age', u'care', u'sector', u'say']
[u'suspect', u'tent', u'embassi', u'arson', u'polic']
[u'drug', u'user', u'like', u'seek', u'help', u'survey', u'find']
[u'nuke', u'watchdog', u'prais', u'iran']
[u'stock', u'exchang', u'face', u'overhaul']
[u'time', u'report', u'defi', u'order', u'reveal', u'sourc']
[u'ombudsman', u'launch', u'port', u'hedland', u'riot', u'inquiri']
[u'optus', u'deni', u'centr']
[u'palm', u'resid', u'welcom', u'admin', u'chang']
[u'plan', u'readi', u'danger', u'heat']
[u'plan', u'underway', u'medic', u'school', u'facil']
[u'polic', u'hope', u'enanct', u'help', u'miss']
[u'polic', u'hunt', u'bomber']
[u'polic', u'charg', u'hous', u'blaze']
[u'polic', u'forc', u'holiday', u'period']
[u'polic', u'push', u'christma', u'road', u'safeti']
[u'polic', u'readi', u'holiday', u'road', u'safeti', u'blitz']
[u'polic', u'upgrad', u'narromin', u'death', u'probe', u'status']
[u'pont', u'skip', u'tiger', u'blue', u'clash']
[u'port', u'hedland', u'financi', u'woe', u'lead', u'council']
[u'posit', u'data', u'drive', u'wall', u'street', u'higher']
[u'probe', u'launch', u'shed', u'blaze']
[u'public', u'servant', u'claim']
[u'public', u'urg', u'buckl', u'save', u'live']
[u'qanta', u'australia', u'post', u'road', u'freight', u'deal']
[u'connect', u'armidal', u'mall', u'secur', u'boost']
[u'govt', u'help', u'fund', u'work']
[u'push', u'drought', u'research', u'centr', u'fund']
[u'quirindi', u'mayor', u'stand', u'shire', u'shake', u'plan']
[u'quot', u'seek', u'pool', u'revamp']
[u'race', u'club', u'announc', u'prizemoney']
[u'rain', u'boost', u'water', u'alloc']
[u'ratepay', u'remind', u'valuat', u'avenu']
[u'realnetwork', u'file', u'microsoft', u'anti', u'trust', u'suit']
[u'real', u'surviv', u'king', u'scare']
[u'chief', u'exec', u'look', u'forward', u'competit']
[u'rivkin', u'remain', u'free']
[u'rylston', u'council', u'respond', u'harsh', u'report']
[u'saddam', u'document', u'drive', u'crackdown']
[u'santo', u'fail', u'fatal']
[u'scheme', u'boost', u'region', u'broadband', u'access']
[u'scott', u'make', u'histori', u'belat', u'ski', u'gold']
[u'search', u'interst', u'freight', u'train', u'oper']
[u'search', u'widen', u'miss', u'czech', u'tourist']
[u'senden', u'earli', u'mover', u'moonah', u'link']
[u'welcom', u'danger', u'beach', u'report']
[u'sharon', u'threaten']
[u'singapor', u'claim', u'anti', u'terror', u'success']
[u'site', u'loss', u'anglican', u'school', u'plan']
[u'snore', u'link', u'heart', u'failur']
[u'farmer', u'snub']
[u'cours', u'tougher', u'access']
[u'south', u'jump', u'clear', u'wolv', u'stallion', u'draw']
[u'lankan', u'batsmen', u'torment', u'england']
[u'georg', u'predict', u'hous', u'slowdown']
[u'georg', u'warn', u'cool', u'hous', u'growth']
[u'surpris', u'port', u'recruit', u'prim', u'second', u'chanc']
[u'sydney', u'hobart', u'suffer', u'late', u'withdraw']
[u'takeov', u'battl', u'take', u'turn']
[u'teen', u'guilti', u'washington', u'sniper', u'case']
[u'better', u'urg', u'help', u'needi', u'christma']
[u'wicket', u'murali', u'check', u'england']
[u'tongan', u'sentenc', u'kava', u'charg']
[u'torbay', u'back', u'kelli', u'amidst', u'reform', u'anger']
[u'trader', u'enjoy', u'strong', u'christma', u'sale']
[u'transport', u'put', u'brake', u'lower', u'speed', u'limit', u'plan']
[u'arrest', u'underworld', u'case']
[u'tell', u'drop', u'anti', u'terror', u'law']
[u'union', u'back', u'driver', u'offer']
[u'administr', u'surviv', u'baghdad', u'assassin']
[u'court', u'deal', u'guantanamo', u'blow']
[u'court', u'overrul', u'bush', u'terror', u'detent']
[u'lose', u'barrichello', u'tell', u'ferrari']
[u'oppos', u'sharon', u'palestinian', u'solut']
[u'resettl', u'thousand', u'secret', u'armi']
[u'weapon', u'inspector', u'ponder', u'futur']
[u'vanston', u'team', u'hold', u'nauru', u'talk']
[u'politician', u'urg', u'vizard', u'stay']
[u'virgin', u'review', u'melbourn', u'incid', u'report']
[u'warn', u'kiss', u'tell', u'accus', u'fin']
[u'warrior', u'perth', u'dayer']
[u'target', u'tuna', u'catch']
[u'water', u'fund', u'livingston', u'shire']
[u'west', u'coast', u'group', u'upbeat', u'plan', u'law']
[u'westralia', u'report', u'receiv', u'mute', u'welcom']
[u'wimbledon', u'organis', u'look', u'retract', u'roof']
[u'youth', u'refug', u'hous', u'plan', u'alic']
[u'clear', u'telstra', u'unansw', u'call']
[u'clear', u'telstra', u'unansw', u'call']
[u'adelaid', u'shock', u'power']
[u'black', u'foot', u'henri', u'rugbi']
[u'qaeda', u'leader', u'say', u'chase', u'american', u'homeland']
[u'annan', u'press', u'burma', u'work', u'democraci']
[u'arafat', u'remain', u'central', u'palestinian', u'figur']
[u'archiv', u'expos', u'rumsfeld', u'iraq', u'mission']
[u'aussi', u'hand', u'olymp', u'ceremoni', u'rein']
[u'australian', u'produc', u'olymp', u'ceremoni']
[u'australia', u'welcom', u'libyan', u'weapon', u'commit']
[u'ballast', u'polici', u'safeguard', u'port', u'phillip']
[u'beatti', u'hop', u'term']
[u'brazil', u'pass', u'controversi', u'social', u'reform', u'packag']
[u'british', u'royal', u'mail', u'stick', u'australia', u'rugbi']
[u'bull', u'batsmen', u'punish', u'redback']
[u'crash', u'kill', u'belgium']
[u'bushrang', u'inning', u'point']
[u'probe', u'note', u'acceptor', u'casino']
[u'carmak', u'bank', u'agre', u'futur']
[u'cash', u'strap', u'german', u'citi', u'levi']
[u'church', u'ordain', u'femal', u'indigen', u'priest']
[u'cleric', u'say', u'bali', u'bomber', u'god', u'fighter']
[u'coal', u'washeri', u'research', u'clean', u'process', u'csiro']
[u'colombian', u'gunmen', u'kill', u'report', u'port', u'citi']
[u'colombian', u'rebel', u'free', u'isra', u'tourist']
[u'coupl', u'lucki', u'escap', u'freeway', u'rock', u'attack']
[u'court', u'rule', u'pakistani', u'muslim', u'women', u'free', u'choos']
[u'cyclon', u'debbi', u'near', u'coast']
[u'downer', u'dismiss', u'sexist', u'nepot', u'claim']
[u'down', u'hold', u'moonah', u'link']
[u'down', u'hold', u'open', u'lead', u'applebi', u'move']
[u'dream', u'come', u'true', u'iron', u'defend', u'world', u'surf']
[u'drought', u'forc', u'kangaroo', u'cull']
[u'risk', u'indiscrimin', u'studi']
[u'famili', u'back', u'jackson', u'child', u'abus', u'charg']
[u'ferdinand', u'ban', u'month']
[u'ferdinand', u'short', u'say', u'wada', u'chief']
[u'ferdinand', u'punish', u'harsh', u'redknapp']
[u'crew', u'bring', u'gippsland', u'blaze', u'control']
[u'fleme', u'vettori', u'riot', u'pakistan']
[u'govt', u'ramp', u'phone', u'drive', u'penalti']
[u'govt', u'send', u'famili', u'iraq']
[u'grey', u'nurs', u'shark', u'protect']
[u'griev', u'father', u'seek', u'westralia', u'braveri', u'award']
[u'harrop', u'thompson', u'secur', u'olymp', u'spot']
[u'hospit', u'deni', u'patient', u'leav', u'watch', u'babi']
[u'howard', u'visit', u'vibrant', u'solomon']
[u'indigen', u'program', u'fail']
[u'form', u'bevan', u'put', u'blue', u'control']
[u'injur', u'norman', u'like', u'miss', u'australian', u'open']
[u'irish', u'priest', u'buri', u'cart', u'funer']
[u'isra', u'palestinian', u'protest', u'settlement']
[u'suspect', u'istanbul', u'suicid', u'blast', u'formal']
[u'king', u'hawk', u'song', u'taipan']
[u'landslid', u'kill', u'philippin']
[u'lara', u'chanderpaul', u'prop', u'west', u'indi']
[u'leader', u'talk', u'militari', u'tie', u'china', u'bid']
[u'libya', u'weapon', u'program']
[u'crush', u'death', u'industri']
[u'kill', u'vehicl', u'rollov']
[u'miss', u'snowi', u'mountain', u'tourist', u'aliv']
[u'mother', u'seek', u'curtain', u'safeti', u'standard']
[u'murdoch', u'win', u'satellit', u'dream']
[u'music', u'file', u'sharer', u'clear', u'dutch', u'court']
[u'nato', u'approv', u'extens', u'afghan', u'forc']
[u'nauru', u'hunger', u'strike', u'continu']
[u'nicholson', u'shin', u'india']
[u'justic', u'minist', u'call', u'feder', u'action']
[u'opportun', u'knock', u'australia']
[u'organis', u'crime', u'rife', u'report', u'say']
[u'pari', u'prosecutor', u'appeal', u'diana', u'paparazzi', u'acquitt']
[u'parmalat', u'reveal', u'euro', u'black', u'hole']
[u'philippin', u'landslid', u'death', u'toll', u'approach']
[u'plan', u'unveil', u'freedom', u'tower', u'york']
[u'visit', u'solomon', u'island']
[u'polic', u'driver', u'care']
[u'polic', u'launch', u'search', u'miss', u'elder']
[u'halt', u'landmark', u'court', u'rule']
[u'reject', u'complaint']
[u'rampant', u'lankan', u'domin', u'england']
[u'ranger', u'blame', u'spirit', u'go', u'break']
[u'retail', u'test', u'internet', u'music', u'download']
[u'plan', u'minimum', u'wage']
[u'sar', u'quarantin', u'lift', u'singapor']
[u'scandal', u'peru', u'minist', u'quit', u'day']
[u'season', u'end', u'knock', u'star', u'bear']
[u'seven', u'film', u'special', u'effect', u'oscar']
[u'spain', u'surpris', u'troop', u'iraq']
[u'spanish', u'news', u'agenc', u'close', u'arab', u'servic']
[u'sudan', u'close', u'jazeera', u'offic', u'detain', u'employe']
[u'suspect', u'question', u'lade', u'link']
[u'sydney', u'servic', u'station', u'attend', u'stab']
[u'teen', u'drug', u'fall']
[u'isl', u'wight', u'comeback']
[u'thousand', u'student', u'send', u'home', u'sniper', u'scare']
[u'tiatto', u'pois', u'citi', u'rescu', u'mission']
[u'tiger', u'bite', u'lee']
[u'soon', u'decid', u'libya', u'sanction']
[u'track', u'legend', u'lewi', u'give', u'year', u'probat']
[u'kill', u'separ', u'road', u'accid']
[u'appeal', u'australia', u'nauru', u'crisi']
[u'union', u'stalwart', u'halfpenni', u'die', u'age']
[u'urg', u'peacekeep', u'troop', u'liberia']
[u'want', u'access', u'brazil', u'atom', u'enrich', u'plant']
[u'kill', u'iraqi', u'polic', u'report']
[u'increas', u'terror', u'alert', u'holiday', u'season']
[u'open', u'talk', u'role', u'iraq']
[u'stock', u'choppi', u'trade', u'attack', u'threat', u'weigh']
[u'valdez', u'spill', u'impact', u'long', u'last', u'report']
[u'vanston', u'hail', u'peopl', u'smuggl', u'convict']
[u'releas', u'forestri', u'plan']
[u'weather', u'hamper', u'snowi', u'mountain', u'tourist', u'search']
[u'west', u'africa', u'imped', u'polio', u'erad']
[u'window', u'arriv', u'mail']
[u'woodward', u'confirm', u'lion', u'talk']
[u'world', u'court', u'hold', u'hear', u'isra', u'wall']
[u'world', u'court', u'rule', u'israel', u'wall']
[u'zimbabw', u'court', u'rule', u'favour', u'newspap']
[u'fear', u'dead', u'philippin', u'landslid']
[u'injur', u'blast', u'argentina']
[u'driver', u'warn', u'doubl', u'demerit', u'point']
[u'launch', u'websit', u'unclaim', u'moni']
[u'adelaid', u'drench', u'downpour']
[u'adelaid', u'hous', u'raid', u'cross', u'border', u'drug', u'sting']
[u'afghan', u'arrest', u'taliban', u'offici', u'link', u'dead']
[u'afghan', u'near', u'deal', u'controversi', u'presidenti']
[u'atapattu', u'deni', u'match', u'fix']
[u'author', u'fear', u'miss', u'elder']
[u'weather', u'hinder', u'pakistan', u'match']
[u'beckham', u'year', u'boot', u'unit']
[u'belgium', u'youth', u'sampra', u'depart']
[u'berlusconi', u'save', u'parmalat', u'probe', u'begin']
[u'bevan', u'magic', u'give', u'blue', u'upper', u'hand']
[u'bevan', u'power', u'blue', u'inning', u'point']
[u'lade', u'tape', u'appear', u'say']
[u'lade', u'tape', u'slam', u'crusad', u'iraq']
[u'bondi', u'sewerag', u'plant', u'million', u'upgrad']
[u'british', u'famili', u'demand', u'inquiri', u'lockerbi']
[u'bull', u'squash', u'redback', u'gabba']
[u'cambodian', u'appeal', u'life', u'sentenc', u'backpack']
[u'centurion', u'clark', u'unbeaten', u'declar']
[u'chelsea', u'joint', u'bolton', u'hold', u'arsenal']
[u'conspiraci', u'abound', u'serbia', u'brace', u'djindjic']
[u'cyclon', u'debbi', u'cross', u'coast']
[u'cyclon', u'debbi', u'die']
[u'cyclon', u'debbi', u'weaken', u'cross', u'coast']
[u'damag', u'minor', u'cyclon', u'debbi', u'hit']
[u'downer', u'prais', u'effort']
[u'down', u'regain', u'open', u'lead']
[u'duff', u'disloc', u'shoulder']
[u'england', u'cruis', u'past', u'zealand', u'barbarian']
[u'ferdinand', u'quit', u'england', u'ferguson']
[u'ferguson', u'say', u'ferdinand', u'case', u'court']
[u'final', u'round', u'get', u'underway', u'moonah']
[u'femal', u'indigen', u'priest', u'overjoy']
[u'saddam', u'offici', u'shoot', u'dead', u'iraq']
[u'furious', u'mitchel', u'quit', u'zealand']
[u'fusion', u'reactor', u'site', u'decis', u'delay']
[u'green', u'stop', u'luca', u'earn', u'shoot', u'beyer']
[u'hobart', u'hospit', u'warn', u'patient', u'whoop', u'cough']
[u'hundr', u'gather', u'parti', u'neverland']
[u'india', u'play', u'draw', u'hobart']
[u'india', u'test', u'short', u'rang', u'surfac', u'missil']
[u'indonesia', u'singapor', u'mull', u'deploy', u'marshal']
[u'iranian', u'fund', u'turkey', u'bomb', u'suspect']
[u'isra', u'palestinian', u'meet', u'report']
[u'isra', u'arrest', u'hama', u'offici', u'west', u'bank']
[u'italian', u'govt', u'discuss', u'troubl', u'station']
[u'khaddafi', u'see', u'tie', u'west']
[u'kiwi', u'extra', u'spinner', u'second', u'pakistan']
[u'libya', u'put', u'pressur', u'israel']
[u'libyan', u'offici', u'meet', u'nuclear', u'watchdog']
[u'libya', u'prais', u'scrap', u'weapon', u'program']
[u'libya', u'nuclear', u'program', u'advanc', u'think']
[u'lonard', u'crown', u'open', u'champ']
[u'malaysia', u'delay', u'suspect', u'deport']
[u'abandon', u'dream', u'record', u'solo', u'sail']
[u'assault', u'club', u'lock']
[u'die', u'stab', u'servic', u'station']
[u'die', u'trawler', u'accid']
[u'murder', u'palmerston']
[u'hospitalis', u'derelict', u'hous']
[u'marri', u'women', u'beij', u'condom', u'ration']
[u'mask', u'kill', u'suspect', u'palestinian', u'collabor']
[u'mista', u'valencia']
[u'mrdja', u'doubl', u'boost', u'perth']
[u'nation', u'holiday', u'road', u'toll', u'hit']
[u'live', u'come', u'handi', u'kitti', u'rescu']
[u'govt', u'defend', u'health', u'fund', u'growth', u'cut']
[u'outrag', u'jackson', u'visit']
[u'panther', u'boss', u'hit', u'rooster', u'threat']
[u'person', u'dead', u'caravan']
[u'call', u'releas', u'land', u'eas', u'hous']
[u'polic', u'hundr', u'call', u'miss']
[u'polic', u'search', u'assault']
[u'protest', u'block', u'highway', u'toxic', u'wast', u'dump']
[u'brace', u'christma', u'heatwav']
[u'polic', u'second', u'enact', u'miss']
[u'raaf', u'spi', u'iran', u'approv', u'report']
[u'ranger', u'surviv', u'heart', u'scare']
[u'refuge', u'group', u'concern', u'nauru', u'deleg']
[u'report', u'recommend', u'taxi', u'overhaul']
[u'rooster', u'threaten', u'salari', u'challeng']
[u'russia', u'tout', u'space', u'honeymoon']
[u'saddam', u'hold', u'kurd', u'drug', u'leav']
[u'sapphir', u'claim', u'women', u'soccer', u'crown']
[u'sarwan', u'build', u'west', u'indi', u'lead', u'border']
[u'seafood', u'industri', u'put', u'bite', u'pain', u'shark']
[u'search', u'continu', u'elder', u'brisban']
[u'sharon', u'comment', u'unhelp', u'palestinian', u'say']
[u'siberian', u'tiger', u'china', u'cataract', u'remov']
[u'charg', u'cross', u'border', u'drug', u'traffic']
[u'lanka', u'annihil', u'england', u'clinch', u'seri']
[u'sudan', u'criticis', u'close', u'jazeera', u'offic']
[u'charg', u'club', u'lock', u'assault']
[u'injur', u'blast', u'thousand', u'argentin']
[u'kill', u'attack', u'iraqi', u'citi', u'polic']
[u'tiger', u'declaw', u'gang', u'nobodi']
[u'tollway', u'consid', u'drop', u'automat', u'fin']
[u'totti', u'doubl', u'send', u'roma', u'point', u'clear']
[u'shop', u'put', u'dampen', u'christma']
[u'tribut', u'pour', u'unionist', u'halfpenni']
[u'briton', u'rescu', u'antarct', u'helicopt']
[u'drop', u'charg', u'guantanamo']
[u'navi', u'claim', u'gulf', u'heroin', u'bust']
[u'priest', u'challeng', u'cardin', u'case']
[u'govt', u'launch', u'probe', u'juvenil', u'justic']
[u'vic', u'pile', u'run', u'waca']
[u'virgin', u'atlant', u'pilot', u'arrest', u'booz']
[u'govt', u'look', u'worldwid', u'cancer', u'centr']
[u'waiter', u'there', u'aria', u'soup']
[u'plan', u'tougher', u'law', u'danger', u'drive']
[u'woman', u'kill', u'accid']
[u'woman', u'kill', u'strike']
[u'world', u'court', u'set', u'danger', u'preced', u'israel']
[u'zimbabw', u'opposit', u'leader', u'ralli', u'parti', u'faith']
[u'hous', u'boost', u'kimberley', u'communiti']
[u'chistma', u'trade', u'rise']
[u'govt', u'defend', u'court', u'appoint']
[u'alic', u'council', u'focus', u'traffic']
[u'extradit', u'request', u'khazal']
[u'ambul', u'bypass', u'sydney', u'hospit']
[u'archbishop', u'denounc', u'detent', u'polici']
[u'ascot', u'turf', u'show', u'improv']
[u'audit', u'offic', u'back', u'ansett', u'entitl', u'process']
[u'australian', u'phone', u'cost', u'high']
[u'australian', u'terror', u'threat', u'level', u'unchang']
[u'bank', u'custom', u'shoot', u'sydney', u'hold']
[u'barbarian', u'lock', u'flavel', u'cite', u'hill', u'incid']
[u'beach', u'barg', u'refloat']
[u'beatti', u'lament', u'nathan', u'delay']
[u'bendigo', u'campus', u'link', u'ballarat']
[u'bevan', u'elliott', u'flaw', u'star']
[u'bhutan', u'princ', u'leav', u'oxford', u'fight', u'rebel']
[u'blue', u'chase', u'fall', u'short']
[u'blue', u'fall', u'short', u'despit', u'stun', u'chase']
[u'blue', u'fall', u'short', u'despit', u'stun', u'chase']
[u'boati', u'remind', u'play', u'safe']
[u'boati', u'tell', u'play', u'safe']
[u'bodi', u'recov', u'immigr', u'ship', u'sink', u'near']
[u'bodi', u'releas', u'youth', u'drive', u'safe', u'strategi']
[u'boggabri', u'resid', u'ask', u'water', u'usag']
[u'boost', u'plan', u'break', u'hill', u'jail']
[u'breast', u'cervix', u'cancer', u'death', u'rate', u'fall']
[u'briberi', u'alleg', u'branch']
[u'brother', u'lawyer', u'reject', u'terror', u'convict']
[u'bushfir', u'move', u'town']
[u'busi', u'help', u'lower', u'power', u'bill']
[u'celtic', u'control']
[u'christma', u'gift', u'plan', u'detaine']
[u'colombian', u'rebel', u'free', u'hostag']
[u'committe', u'consid', u'recreat', u'lake', u'construct']
[u'communiti', u'consid', u'crime', u'prevent', u'tactic']
[u'compani', u'fin', u'firework', u'death']
[u'council', u'chief', u'fin', u'escort', u'payment']
[u'council', u'consid', u'build', u'light', u'rail']
[u'council', u'tell', u'action', u'reform']
[u'court', u'bail', u'drug', u'squad', u'detect']
[u'crook', u'santa', u'christma', u'parti']
[u'damag', u'theme', u'park', u'ride', u'reopen']
[u'death', u'victim', u'take', u'russian', u'train', u'blast']
[u'deleg', u'hop', u'nauru', u'hunger', u'strike']
[u'diamond', u'court', u'assault', u'charg']
[u'diplomat', u'keen', u'nauru', u'hunger', u'strike']
[u'dorset', u'readi', u'simplot', u'loss']
[u'down', u'look', u'boost', u'apprenticeship']
[u'dozen', u'alleg', u'milit', u'arrest', u'iraq']
[u'dravid', u'back', u'zaheer', u'return']
[u'econom', u'progress', u'import', u'arm', u'libya']
[u'farmer', u'fear', u'state', u'crop', u'decis']
[u'fear', u'hold', u'immigr', u'boat', u'sink', u'near']
[u'gut', u'byron', u'factori']
[u'fish', u'attractor', u'instal', u'port', u'macquari']
[u'suspect', u'rocket', u'kabul']
[u'fund', u'match', u'boost', u'reef', u'health', u'program']
[u'gambl', u'author', u'call', u'poki', u'cull']
[u'grant', u'boost', u'outback', u'explor', u'centr']
[u'group', u'loggerhead', u'forest', u'plan']
[u'gulf', u'arab', u'leader', u'approv', u'anti', u'terror', u'pact']
[u'histor', u'communiti', u'collect', u'move']
[u'iaea', u'chief', u'visit', u'libya', u'week']
[u'illeg', u'log', u'rule', u'landslid', u'caus']
[u'indigen', u'child', u'protect', u'staff', u'start', u'work']
[u'indonesia', u'jail', u'mcdonald', u'bomb', u'plotter']
[u'insur', u'woe', u'threaten', u'huskisson', u'carniv']
[u'insurg', u'target', u'iraqi', u'pipelin']
[u'irish', u'crowd', u'tomb', u'solstic', u'watch']
[u'isra', u'commando', u'refus', u'occupi', u'territori']
[u'windi', u'washout']
[u'boom', u'time', u'nanango']
[u'japan', u'trade', u'surplus', u'jump', u'novemb']
[u'pois', u'test', u'return']
[u'legal', u'action', u'consid', u'return', u'asylum', u'seeker']
[u'libya', u'allow', u'atom', u'inspect']
[u'lifesav', u'train', u'chang', u'beachgoer']
[u'local', u'mother', u'join', u'more', u'polic', u'forc']
[u'lockerbi', u'victim', u'famili', u'pressur', u'libya']
[u'loxton', u'die', u'weekend', u'crash']
[u'magistr', u'probe', u'saddam', u'regim', u'crime']
[u'bail', u'firearm', u'charg']
[u'hand', u'parliament', u'hous', u'theft']
[u'court', u'charg']
[u'moin', u'help', u'pakistan', u'avoid', u'follow']
[u'monkey', u'sight', u'coron', u'beach']
[u'moodi', u'world', u'captur', u'british', u'number', u'spot']
[u'appoint', u'elect', u'campaign', u'manag']
[u'polit', u'asid', u'rock', u'roll']
[u'nauru', u'defend', u'detaine', u'treatment']
[u'nauru', u'protest', u'prepar']
[u'divis', u'overse', u'defenc', u'role']
[u'member', u'name', u'health', u'board']
[u'nineteen', u'mummi', u'egypt']
[u'north', u'african', u'summit', u'cancel']
[u'nrma', u'seek', u'speed', u'camera', u'audit']
[u'croc', u'popul', u'stabilis', u'park', u'servic']
[u'miss', u'philippin', u'ferri', u'accid']
[u'painkil', u'worri', u'chemist']
[u'park', u'educ', u'centr', u'anger', u'timber', u'industri']
[u'perth', u'doctor', u'claim', u'breakthrough', u'treatment']
[u'perth', u'murder', u'zimbabw']
[u'petrol', u'spill', u'spark', u'creek', u'clean', u'effort']
[u'philippin', u'actor', u'make', u'presidenti']
[u'philippin', u'landslid', u'toll']
[u'player', u'defend', u'buchanan', u'broadsid']
[u'bring', u'christma', u'beer', u'solomon']
[u'head', u'solomon']
[u'polic', u'appeal', u'wit', u'assault']
[u'polic', u'arrest', u'alleg', u'drug', u'dealer']
[u'polic', u'oper', u'nab', u'hundr', u'north', u'coast']
[u'polic', u'probe', u'central', u'truck', u'crash']
[u'polic', u'probe', u'flight', u'scuffl']
[u'polic', u'recov', u'bodi', u'macquari', u'river']
[u'polic', u'surround', u'hous', u'hold']
[u'polic', u'urg', u'care', u'wind', u'flip', u'truck']
[u'port', u'hedland', u'aim', u'plastic', u'free', u'status']
[u'possibl', u'jackson', u'visit', u'rais', u'eyebrow']
[u'probe', u'continu', u'fisherman', u'death']
[u'public', u'get', u'harrington', u'rezon', u'plan']
[u'rail', u'blame', u'heat', u'derail']
[u'quak', u'shake', u'northern', u'japanes', u'island']
[u'reader', u'digest', u'admit', u'mail', u'order', u'fiddl']
[u'real', u'king', u'help', u'madrid', u'crown', u'winter']
[u'recal', u'readi', u'perform']
[u'report', u'find', u'corrupt', u'council', u'procur']
[u'rescuer', u'continu', u'search', u'mudslid', u'victim']
[u'retail', u'report', u'slow', u'christma', u'trade']
[u'retail', u'urg', u'improv', u'train']
[u'rivkin', u'face', u'health', u'test']
[u'road', u'victim', u'get', u'special', u'school', u'fund', u'hear']
[u'rooster', u'defend', u'salari', u'threat']
[u'rule', u'cover', u'timber', u'harvest']
[u'russel', u'crow', u'father']
[u'saddam', u'prove', u'help', u'ordinari', u'iraqi']
[u'search', u'continu', u'miss', u'rider']
[u'rescu', u'warn', u'rock', u'fishermen']
[u'serbian', u'assassin', u'trial', u'begin']
[u'serena', u'pull', u'hopman']
[u'clean', u'weather', u'lash']
[u'shabana', u'lift', u'world', u'squash', u'crown']
[u'skipton', u'communiti', u'council', u'oppos', u'toxic', u'wast', u'dump']
[u'smec', u'win', u'iraqi', u'power', u'contract']
[u'spam', u'cost', u'busi', u'week']
[u'stab', u'death', u'investig']
[u'step', u'need', u'leav', u'pet', u'home']
[u'steward', u'inspect', u'ascot', u'track']
[u'store', u'owner', u'score']
[u'swimmer', u'urg', u'avoid', u'shark', u'infest', u'canal']
[u'sydney', u'brother', u'guilti', u'fund', u'terror']
[u'talk', u'fail', u'train', u'strike', u'ahead']
[u'talk', u'focus', u'iraq', u'debt']
[u'tasmania', u'map', u'wine', u'rout']
[u'teacher', u'welcom', u'interim', u'deal']
[u'teenag', u'fin', u'carri', u'explos']
[u'teen', u'whoop', u'cough', u'booster']
[u'terrorist', u'suspect', u'wife', u'consid', u'visit']
[u'thiev', u'target', u'ancient', u'fresco']
[u'thiev', u'vandalis', u'ancient', u'fresco', u'israel', u'masada']
[u'thousand', u'demand', u'kirkuk', u'kurd']
[u'timber', u'compo', u'snub', u'worri', u'nation']
[u'tire', u'milan', u'slip', u'defeat', u'season']
[u'tourism', u'associ', u'seek', u'better', u'signag', u'boat']
[u'underworld', u'claim', u'air', u'melbourn', u'court']
[u'unit', u'ferdinand', u'stormi', u'week', u'high']
[u'captur', u'iraqi', u'secret', u'servic', u'general']
[u'captur', u'offic', u'iraq', u'crackdown']
[u'democrat', u'accus', u'bush', u'allow', u'terror', u'threat']
[u'rais', u'terror', u'alert']
[u'soldier', u'name', u'person', u'year']
[u'road', u'toll', u'rise', u'ravenswood', u'crash']
[u'victoria', u'claim', u'solid', u'victori']
[u'victorian', u'citi', u'face', u'tougher', u'water', u'restrict']
[u'victori', u'green', u'taunt', u'beyer']
[u'polic', u'investig', u'bush', u'bodi']
[u'probe', u'fall', u'write', u'numeraci', u'level']
[u'warrior', u'hurtl', u'outright', u'defeat']
[u'water', u'save', u'plan', u'seek']
[u'wavebreak', u'manag', u'plan', u'long', u'overdu']
[u'fail', u'allay', u'crocodil', u'coach', u'frustrat']
[u'world', u'oldest', u'test', u'player', u'die', u'india']
[u'young', u'power', u'school', u'secur', u'interim', u'fund']
[u'plan', u'timber', u'process', u'revamp']
[u'accid', u'close', u'pacif', u'highway', u'near', u'ballina']
[u'milan', u'juventus', u'lead', u'italian', u'renaiss']
[u'actress', u'hope', u'lang', u'die', u'age']
[u'afghan', u'send', u'home', u'nauru', u'alleg', u'kill']
[u'passeng', u'arrest', u'hacksaw', u'blade']
[u'alfr', u'hospit', u'defend', u'consult', u'cost']
[u'armstrong', u'face', u'tour', u'freez']
[u'arrest', u'zimbabw', u'perth', u'man', u'murder']
[u'atsic', u'council', u'urg', u'chang', u'mornington']
[u'aussi', u'hopman', u'reveng']
[u'australia', u'look', u'boost', u'libya', u'export', u'deal']
[u'australian', u'death', u'spark', u'zimbabw', u'warn']
[u'light', u'halt', u'pakistan', u'charg', u'draw', u'test']
[u'banana', u'tide', u'bring', u'xmas', u'cheer', u'lithuania']
[u'beatti', u'offer', u'annex', u'tweed', u'head']
[u'bird', u'death', u'spark', u'hydro', u'monitor']
[u'bush', u'clear', u'plan', u'caus', u'controversi']
[u'bushrang', u'crush', u'warrior', u'perth']
[u'bush', u'tell', u'enjoy', u'christma', u'despit', u'warn']
[u'central', u'philippin', u'brace', u'landslid']
[u'china', u'terrorist', u'shoot', u'dead']
[u'china', u'take', u'step', u'prevent', u'sar', u'cover']
[u'christma', u'give', u'market', u'littl', u'cheer']
[u'compens', u'deadlin', u'pass', u'septemb']
[u'condit', u'good', u'sydney', u'hobart']
[u'cyprus', u'christian', u'station', u'secur', u'alert']
[u'czech', u'nedv', u'win', u'european', u'footbal']
[u'deadlin', u'run', u'sept', u'fund']
[u'deep', u'freez', u'threaten', u'live', u'britain']
[u'democrat', u'support', u'refuge', u'strand', u'south', u'africa']
[u'develop', u'push', u'ahead', u'quirindi', u'shire']
[u'diamond', u'court', u'decis', u'expect', u'today']
[u'diamond', u'court', u'hear', u'adjourn']
[u'diamond', u'fail', u'assault', u'charg', u'drop']
[u'doctor', u'await', u'appeal', u'outcom']
[u'donor', u'zimbabw', u'food']
[u'duke', u'target', u'leed', u'draw']
[u'earthquak', u'hit', u'california']
[u'earthquak', u'hit', u'california', u'kill']
[u'eccleston', u'heap', u'prais', u'bahrain', u'circuit']
[u'egyptian', u'envoy', u'israel', u'bolster', u'peacemak']
[u'egyptian', u'minist', u'assault', u'mosqu']
[u'egyptian', u'minist', u'return', u'home', u'palestinian']
[u'employ', u'servic', u'appoint', u'administr']
[u'expect', u'better', u'perform', u'pont']
[u'falun', u'dafa', u'vow', u'moomba', u'appear']
[u'fan', u'quirki', u'snap', u'comic', u'compendium']
[u'father', u'demand', u'mandatori', u'defens', u'drive', u'cours']
[u'ferdinand', u'tragedi', u'charlton']
[u'ferdinand', u'devast', u'drug']
[u'holiday', u'road', u'death', u'hunter']
[u'thai', u'soldier', u'injur', u'iraq']
[u'associ', u'face', u'briberi', u'charg']
[u'worker', u'share', u'entitl']
[u'green', u'come', u'home', u'mundin', u'mind']
[u'group', u'hope', u'flight', u'lift', u'tourism']
[u'gulf', u'arab', u'state', u'sign', u'anti', u'terror', u'pact']
[u'hayden', u'reject', u'sponsorship', u'critic']
[u'health', u'fear', u'air', u'treat', u'pine']
[u'highway', u'open', u'truck', u'blaze']
[u'execut', u'get', u'suspend', u'sentenc']
[u'hobbit', u'ringwraith', u'break', u'offic', u'record']
[u'warn', u'afghan', u'opium', u'product']
[u'indonesian', u'cleric', u'name', u'child', u'saddam', u'hussein']
[u'industri', u'woe', u'derail', u'countrylink', u'servic']
[u'isra', u'soldier', u'kill', u'gaza', u'incurs']
[u'jackson', u'postpon', u'british', u'trip']
[u'japan', u'celebr', u'emperor', u'birthday']
[u'kenyan', u'presid', u'free', u'prison']
[u'kurdish', u'judg', u'kill', u'iraq']
[u'land', u'valuer', u'begin', u'work', u'ban']
[u'compani', u'seek', u'parol', u'chang']
[u'promis', u'firework']
[u'libya', u'invit', u'compani']
[u'loos', u'screw', u'halt', u'spanish', u'nuclear', u'power', u'station']
[u'magistr', u'consid', u'diamond', u'assault', u'charg']
[u'sever', u'burn']
[u'face', u'forrestdal', u'murder', u'charg']
[u'want', u'state', u'flee']
[u'media', u'baron', u'keep', u'quiet', u'stock', u'exchang', u'meet']
[u'miandad', u'criticis', u'fleme', u'tactic']
[u'east', u'death', u'toll', u'rise']
[u'militari', u'identifi', u'dead', u'soldier']
[u'minist', u'warn', u'jail', u'drug', u'smuggl']
[u'nauru', u'detaine', u'pass', u'meet']
[u'nazi', u'lyric', u'land', u'band', u'leader', u'jail']
[u'daili', u'put', u'pope', u'pocket']
[u'home', u'care', u'arrang', u'renal', u'patient']
[u'commut', u'face', u'rail', u'disrupt']
[u'probe', u'hold', u'cell', u'supervis']
[u'issu', u'indonesian', u'travel', u'warn']
[u'miss', u'philippin', u'ferri', u'landslid']
[u'pair', u'bail', u'drug', u'hear']
[u'pair', u'face', u'court', u'drug', u'charg']
[u'pakistan', u'probe', u'suggest', u'greed']
[u'palestinian', u'kill', u'raid']
[u'perth', u'kill', u'zimbabw']
[u'philippin', u'disast', u'toll', u'top']
[u'plastic', u'levi', u'constitut']
[u'plea', u'govt', u'deport', u'afghan', u'detaine']
[u'polic', u'confirm', u'miss', u'kill', u'croc']
[u'polic', u'probe', u'riverina', u'shoot', u'death']
[u'polic', u'storm', u'hous', u'insid']
[u'pope', u'say', u'world', u'peac', u'possibl']
[u'port', u'arthur', u'tourist', u'treat', u'live']
[u'publican', u'appeal', u'rape', u'relat', u'sentenc']
[u'hold', u'bank', u'theft']
[u'queen', u'deliv', u'christma', u'speech', u'mobil', u'phone']
[u'rafter', u'rule', u'comeback', u'despit', u'doubl', u'plan']
[u'rail', u'stoppag', u'end', u'union', u'meet']
[u'rain', u'delay', u'grain', u'harvest', u'central']
[u'relief', u'colombian', u'rebel', u'releas', u'hostag']
[u'renown', u'kidney', u'research', u'guilti', u'misconduct']
[u'report', u'highlight', u'stock', u'fall']
[u'rescuer', u'search', u'earthquak', u'victim']
[u'rivkin', u'hand', u'stockbrok', u'licenc']
[u'rivkin', u'take', u'independ', u'medic']
[u'rivkin', u'undergo', u'health', u'exam']
[u'roddick', u'henin', u'hardenn', u'name', u'champion']
[u'rodman', u'comeback', u'trail']
[u'russia', u'offer', u'iraq', u'debt', u'relief']
[u'farmer', u'look', u'forward', u'bumper', u'harvest']
[u'paulo', u'join', u'chase', u'rivaldo']
[u'search', u'quak', u'survivor', u'end', u'california']
[u'search', u'croc', u'fatal', u'attack']
[u'serial', u'relationship', u'women', u'mental', u'health']
[u'seven', u'arrest', u'assault', u'egyptian']
[u'shale', u'plant', u'report', u'rais', u'health', u'concern']
[u'south', u'africa', u'recal', u'adam', u'kirsten', u'drop', u'peterson']
[u'stage', u'libya', u'nuclear', u'inspect']
[u'suspect', u'elud', u'sydney', u'polic']
[u'sydney', u'polic', u'link', u'armour', u'robberi']
[u'symond', u'sami', u'round', u'kent']
[u'teen', u'court', u'girlfriend', u'death']
[u'telstra', u'reject', u'overcharg', u'claim']
[u'kill', u'separatist', u'jail', u'indian', u'kashmir']
[u'charg', u'sydney', u'christma', u'fire']
[u'children', u'jail', u'murder']
[u'dead', u'british', u'armi', u'helicopt', u'crash']
[u'soldier', u'kill', u'baghdad', u'bomb', u'attack']
[u'soldier', u'kill', u'bomb', u'blast']
[u'convict', u'albanian', u'traffick']
[u'union', u'monitor', u'parmalat', u'probe']
[u'union', u'worri', u'tafe', u'chang']
[u'arrest', u'alleg', u'milit', u'link', u'saddam', u'aid']
[u'beef', u'associ', u'oppos', u'australia', u'free']
[u'beef', u'secur', u'amid', u'heighten', u'terror', u'alert']
[u'envoy', u'look', u'asia', u'iraq', u'debt', u'relief']
[u'judg', u'rule', u'militari', u'forc', u'anthrax']
[u'pay', u'wada', u'due']
[u'soldier', u'wound', u'mosul']
[u'fingerprint', u'visitor']
[u'vandal', u'attack', u'golf', u'club']
[u'vanston', u'receiv', u'nauru', u'deleg', u'report']
[u'vegi', u'process', u'stop', u'scottsdal', u'factori']
[u'govt', u'power', u'price']
[u'oppn', u'seek', u'teen', u'death', u'inquest']
[u'victorian', u'court', u'end', u'suit']
[u'virgin', u'atlant', u'pilot', u'bail', u'alcohol', u'charg']
[u'space', u'station', u'await', u'mar', u'land']
[u'water', u'trade', u'work']
[u'white', u'strip', u'singer', u'charg', u'assault']
[u'woman', u'plead', u'guilti', u'danger', u'drive']
[u'women', u'group', u'consid', u'anti', u'smoke', u'effort']
[u'women', u'urg', u'combat', u'domest', u'violenc']
[u'world', u'clone', u'deer', u'reveal']
[u'zimbabw', u'murder', u'polit', u'motiv', u'perth', u'famili']
[u'govt', u'consid', u'coron', u'find']
[u'nauru', u'kick', u'solomon', u'flight']
[u'travel', u'urg', u'bewar', u'say']
[u'akhtar', u'boost', u'pakistan', u'second', u'test']
[u'alic', u'resid', u'christma', u'access']
[u'call', u'independ', u'nauru', u'team']
[u'warn', u'travel', u'symptom']
[u'energi', u'confirm', u'purchas']
[u'arm', u'hold', u'trigger', u'polic', u'probe']
[u'arm', u'marshal', u'plan']
[u'asylum', u'seeker', u'remain', u'manus']
[u'australian', u'export', u'watch', u'case']
[u'australia', u'suspend', u'beef', u'import']
[u'author', u'launch', u'probe', u'second', u'virgin']
[u'baghdad', u'christian', u'cancel', u'christma', u'midnight']
[u'ballarat', u'galleri', u'director', u'appoint']
[u'beatti', u'draw', u'indigen', u'foster', u'care', u'debat']
[u'beauti', u'hippo']
[u'affleck', u'reveal', u'real', u'fascin']
[u'bergkamp', u'doubt', u'wolv', u'clash']
[u'blair', u'bush', u'visit', u'libya']
[u'bok', u'rugbi', u'board', u'showdown']
[u'break', u'hill', u'seek', u'assur', u'wast', u'dump']
[u'brush', u'sport', u'fame']
[u'busi', u'show', u'latham', u'appoint']
[u'review', u'virgin', u'scare']
[u'canadian', u'citi', u'face', u'worst', u'outbreak', u'syphili']
[u'canadian', u'court', u'uphold']
[u'canadian', u'court', u'uphold', u'legal']
[u'censorship', u'see', u'hillari', u'book', u'withdraw', u'china']
[u'china', u'invit', u'foreign', u'bid', u'nuclear', u'power']
[u'china', u'launch', u'crackdown', u'internet', u'game', u'piraci']
[u'christma', u'road', u'toll', u'hit']
[u'christma', u'shopper']
[u'find', u'council', u'misconduct']
[u'communiti', u'receiv', u'flood', u'damag', u'relief', u'packag']
[u'consum', u'spend', u'fuel', u'econom', u'growth']
[u'court', u'adjourn', u'extradit', u'hear']
[u'darwin', u'unveil', u'passeng', u'railway', u'station']
[u'delay', u'tamworth', u'region', u'council', u'elect']
[u'democrat', u'want', u'detaine', u'deport', u'chang']
[u'diamond', u'miss', u'olymp', u'trial']
[u'doubt', u'rais', u'highway', u'safeti', u'fund']
[u'down', u'look', u'forward', u'strong', u'year']
[u'driver', u'urg', u'avoid', u'fatigu', u'danger']
[u'driver', u'warn', u'doubl', u'demerit', u'point']
[u'drug', u'giant', u'lose', u'suit', u'chines', u'competitor']
[u'duff', u'week']
[u'vindic', u'hollywood', u'piraci', u'case']
[u'egyptian', u'foreign', u'minist', u'continu', u'peac', u'push']
[u'eighth', u'palestinian', u'kill', u'rafah', u'raid']
[u'england', u'zimbabw', u'tour', u'decis', u'expect']
[u'ethiopia', u'say', u'kill', u'gambella', u'unrest']
[u'explos', u'near', u'govern', u'build', u'north', u'iraq']
[u'explos', u'rock', u'southern', u'baghdad']
[u'famili', u'receiv', u'generous', u'donat']
[u'farmer', u'feder', u'drought']
[u'finger', u'cross', u'beagl', u'spearhead', u'martian']
[u'firefight', u'battl', u'blaze', u'brisban', u'suburb']
[u'firefight', u'jervi', u'bushfir']
[u'case', u'rattl', u'asian', u'market']
[u'soldier', u'plead', u'guilti', u'cocain']
[u'simplot', u'worker', u'focus', u'futur']
[u'fulham', u'turn', u'unit', u'offer', u'saha']
[u'garrison', u'replac', u'king', u'captain']
[u'german', u'daili', u'publish', u'good', u'news', u'xmas']
[u'giant', u'cruis', u'ship', u'arriv', u'adelaid']
[u'grundig', u'skipper', u'say', u'race', u'record', u'safe']
[u'gun', u'fall', u'silent', u'baghdad', u'overnight', u'battl']
[u'hang', u'fan', u'tell', u'houllier']
[u'hewitt', u'clijster', u'engag']
[u'hick', u'lawyer', u'slam', u'document', u'block']
[u'holiday', u'spree', u'tip', u'push', u'onlin', u'sale']
[u'hong', u'kong', u'suspend', u'beef', u'import']
[u'hope', u'medic', u'indemn', u'deal', u'boost', u'servic']
[u'leav', u'citi', u'say', u'keegan']
[u'india', u'bollywood', u'offer', u'internet', u'film', u'download']
[u'iraqi', u'secur', u'forc', u'member', u'kill', u'mosul']
[u'italian', u'cabinet', u'examin', u'parmalat', u'woe']
[u'itali', u'announc', u'rescu', u'plan', u'parmalat']
[u'rain', u'money', u'thank', u'japanes', u'generos']
[u'jackson', u'trip', u'cloud']
[u'jordan', u'set', u'world', u'record', u'biggest', u'tissu']
[u'judg', u'move', u'strip', u'pinochet', u'immun']
[u'juror', u'consid', u'penalti', u'sniper', u'case']
[u'juri', u'urg', u'life', u'sentenc', u'sniper', u'case']
[u'kalgoorli', u'airport', u'viabl', u'option', u'studi', u'find']
[u'kimberley', u'council', u'rememb', u'great', u'leader']
[u'leak', u'polic', u'document', u'warn', u'attack']
[u'libya', u'confirm', u'nuclear', u'watchdog', u'chief', u'visit']
[u'liverpool', u'welcom', u'kewel']
[u'lord', u'ring', u'set', u'portugues', u'offic', u'record']
[u'scare', u'push', u'qualiti', u'check', u'cattl']
[u'charg', u'drug', u'ring']
[u'charg', u'fatal', u'road', u'crash']
[u'minist', u'call', u'imparja', u'fund', u'review']
[u'miss', u'fishermen', u'home', u'safe', u'face', u'charg']
[u'miss', u'tourist', u'spark', u'polic', u'warn']
[u'mitchel', u'coach', u'zealand']
[u'council', u'playground', u'arsenic', u'treat']
[u'unhappi', u'resourc', u'manag']
[u'nation', u'secret', u'safe', u'theft', u'minist']
[u'netherland', u'epidem']
[u'northern', u'flood', u'watch']
[u'rail', u'disput', u'head']
[u'govt', u'announc', u'hous', u'loan', u'relief']
[u'outrag', u'plan', u'sell', u'solomon', u'histor', u'hous']
[u'pakistan', u'court', u'order', u'french', u'newsmen', u'free', u'bail']
[u'pakistan', u'press', u'right', u'urg', u'frenchmen', u'seek', u'bail']
[u'palestinian', u'kill', u'gaza', u'incurs']
[u'palestinian', u'shelv', u'meet', u'isra']
[u'perkin', u'appoint', u'olymp', u'alumni', u'group']
[u'philippin', u'vessel', u'scrambl', u'rescu']
[u'plan', u'save', u'berlusconi', u'mediaset', u'group']
[u'send', u'christma', u'wish', u'troop', u'oversea']
[u'polic', u'boost', u'promis']
[u'polic', u'probe', u'mildura', u'teen', u'rape']
[u'polic', u'readi', u'christma', u'revel']
[u'polic', u'suspend', u'search', u'croc', u'victim']
[u'polic', u'warn', u'holiday', u'road', u'safeti', u'crackdown']
[u'polic', u'truck', u'driver', u'fatal']
[u'politician', u'loggerhead', u'timber', u'fund']
[u'priest', u'offer', u'sneak', u'preview', u'gibson', u'jesus']
[u'project', u'power', u'station', u'oper']
[u'rafter', u'play', u'doubl', u'australian', u'open']
[u'rail', u'strike', u'loom', u'merger', u'disput']
[u'record', u'entri', u'launceston', u'cycl', u'classic']
[u'region', u'unhappi', u'travel', u'allow']
[u'report', u'highlight', u'cost', u'reef', u'fish', u'closur']
[u'ronaldo', u'pay', u'tribut', u'zamorano', u'say', u'goodby']
[u'rooney', u'talk']
[u'royal', u'corgi', u'death', u'blight', u'royal', u'christma']
[u'rumsfeld', u'talk', u'anti', u'terror', u'campaign']
[u'russia', u'halt', u'import', u'beef']
[u'russian', u'court', u'order', u'khodorkovski', u'remain', u'jail']
[u'accus', u'fall', u'wasp', u'pest']
[u'schwarzenegg', u'visit', u'quak', u'town']
[u'search', u'call', u'miss', u'perth', u'contact']
[u'search', u'call', u'croc', u'attack']
[u'search', u'end', u'miss', u'perth', u'contact', u'famili']
[u'search', u'resum', u'croc', u'attack', u'victim']
[u'korea', u'plan', u'troop', u'iraq']
[u'spin', u'wizard', u'muralitharan', u'eye', u'world', u'record']
[u'stalk', u'croc', u'behaviour', u'consid', u'strang']
[u'stanhop', u'bag', u'levi', u'uncertainti']
[u'africa', u'ban', u'beef', u'relat', u'import']
[u'strand', u'barg', u'refloat', u'owner', u'face', u'charg']
[u'suicid', u'bomb', u'north', u'iraq', u'kill']
[u'woman', u'help', u'fight', u'aid', u'discrimin']
[u'teen', u'death', u'holiday', u'road', u'toll', u'climb']
[u'thailand', u'ban', u'beef', u'import']
[u'tipperari', u'anim', u'resold', u'local']
[u'iraqi', u'judg', u'murder']
[u'townsvill', u'abuzz', u'mozzi', u'assault', u'plan']
[u'turkish', u'polic', u'bomb', u'equip', u'haul', u'detain']
[u'associ', u'demand', u'action', u'nauru']
[u'unit', u'want', u'verdict', u'write']
[u'review', u'afghan', u'asylum', u'claim', u'nauru']
[u'beef', u'market', u'halt', u'import']
[u'comedian', u'lenni', u'bruce', u'posthum', u'pardon']
[u'confirm', u'case']
[u'issu', u'bahrain', u'terror', u'alert']
[u'stock', u'push', u'slight', u'higher']
[u'tell', u'rogu', u'state', u'follow', u'libya', u'exampl']
[u'vanston', u'urg', u'nauru', u'hunger', u'striker', u'reconsid']
[u'need', u'time', u'speed', u'camera']
[u'send', u'trade', u'mission', u'middl', u'east']
[u'waugh', u'ponder', u'select', u'decis']
[u'dont', u'sell', u'player', u'leed', u'chairman']
[u'white', u'hous', u'fault', u'iraq', u'uranium', u'claim', u'report']
[u'woman', u'accus', u'slay', u'husband', u'refus', u'bail']
[u'women', u'council', u'outrag', u'plan', u'sell', u'solomon']
[u'world', u'youth', u'drug', u'pair', u'hand', u'long', u'ban']
[u'xmas', u'come', u'earli', u'minardi', u'recruit']
[u'zaheer', u'return', u'box', u'clash']
[u'zimbabw', u'polic', u'arrest', u'suspect', u'australian']
[u'indonesia', u'troubl', u'aceh', u'provinc']
[u'franc', u'cancel', u'pari', u'flight']
[u'alert', u'halt', u'franc', u'flight']
[u'alic', u'spring', u'mayor', u'send', u'christma', u'greet']
[u'anim', u'activist', u'poison', u'swedish', u'meat']
[u'subdu', u'christma', u'bethlehem']
[u'kill', u'northern', u'india']
[u'aussi', u'hurt', u'thai', u'hotel']
[u'aussi', u'ask', u'recycl', u'christma', u'card']
[u'australian', u'hold', u'indonesia', u'spend', u'xmas']
[u'bethlehem', u'usher', u'sombr', u'christma']
[u'blast', u'rock', u'central', u'baghdad']
[u'bodi', u'drown', u'soldier', u'recov', u'iraq']
[u'bomb', u'blast', u'damag', u'guesthous', u'afghanistan']
[u'bomb', u'kill', u'soldier', u'rocket', u'baghdad']
[u'castlereagh', u'bush', u'threat', u'minim']
[u'champ', u'elyse', u'host', u'chines', u'year', u'parad']
[u'china', u'jail', u'judg', u'take', u'corpor', u'bribe']
[u'china', u'rais', u'death', u'toll', u'explos']
[u'christma', u'road', u'toll']
[u'church', u'leader', u'preach', u'peac', u'love', u'understand']
[u'cross', u'dress', u'restaur', u'sue', u'review']
[u'death', u'toll', u'bolivia', u'flood', u'rise']
[u'democrat', u'urg', u'premier', u'help', u'homeless']
[u'donat', u'demand', u'rise', u'chariti']
[u'dravid', u'laugh', u'test', u'pressur']
[u'kill', u'iraq', u'bomb']
[u'europ', u'step', u'secur', u'christma']
[u'factori', u'continu', u'blaze']
[u'financi', u'pressur', u'strain', u'relationship']
[u'destroy', u'coober', u'pedi', u'school']
[u'dead', u'hurt', u'russian', u'train', u'crash']
[u'fruit', u'pop', u'xmas', u'cherri', u'hop']
[u'field', u'explos', u'kill', u'china']
[u'gingin', u'growth', u'plan', u'downsiz']
[u'girl', u'drown', u'melbourn', u'pool']
[u'guard', u'inmat', u'brisban', u'prison', u'incid']
[u'health', u'offici', u'issu', u'chickenpox', u'remind']
[u'hobart', u'coupl', u'award', u'damag', u'son', u'death']
[u'indian', u'unsaf', u'syring', u'health', u'ministri']
[u'indonesia', u'boost', u'secur', u'measur']
[u'iran', u'threaten', u'retali', u'event', u'isra']
[u'judg', u'select', u'michael', u'jackson', u'molest', u'case']
[u'limit', u'market', u'turkey', u'report']
[u'scare', u'hit', u'beef', u'trade']
[u'malaysian', u'rescu', u'philippin', u'survivor']
[u'malaysia', u'senai', u'airport', u'undergo', u'expans']
[u'charg', u'hunter', u'murder']
[u'hospitalis', u'stab']
[u'strangl', u'python']
[u'mcdonald', u'drag', u'wall', u'street', u'lower']
[u'melbourn', u'polic', u'tell', u'box', u'crowd', u'behav']
[u'countri', u'halt', u'beef', u'import']
[u'mother', u'escap', u'hous']
[u'musharraf', u'agre', u'quit', u'armi', u'post']
[u'musharraf', u'escap', u'bomb', u'attack', u'dead']
[u'nauru', u'detaine', u'doubt', u'review']
[u'near', u'china', u'explos']
[u'york', u'airport', u'close', u'secur', u'scare']
[u'year', u'injur', u'kashmir']
[u'mar', u'signal', u'beagl', u'probe']
[u'pakistan', u'leader', u'surviv', u'latest', u'attack']
[u'palestinian', u'kill', u'summit', u'talk', u'delay']
[u'palestinian', u'carri', u'explos', u'kill']
[u'parent', u'tell', u'check', u'safeti']
[u'pedestrian', u'death', u'road', u'toll']
[u'pope', u'christma', u'messag', u'lament', u'terror']
[u'queen', u'deliv', u'christma', u'messag']
[u'rain', u'close', u'park']
[u'regul', u'examin', u'parmalat', u'collaps']
[u'return', u'asylum', u'seeker', u'face', u'uncertainti']
[u'rocket', u'attack', u'hit', u'baghdad', u'hotel']
[u'scientist', u'await', u'news', u'mar', u'mission']
[u'skipper', u'prepar', u'sail', u'everest']
[u'south', u'australian', u'spend', u'xmas']
[u'south', u'west', u'warn', u'risk']
[u'spanish', u'polic', u'foil', u'terrorist', u'bomb']
[u'spanish', u'polic', u'thwart', u'bomb', u'attack', u'madrid', u'station']
[u'strand', u'asylum', u'seeker', u'believ', u'head']
[u'strand', u'barg', u'scuttl', u'coast']
[u'strict', u'anti', u'sar', u'measur', u'prepar', u'china']
[u'sudan', u'releas', u'jazeera', u'correspond']
[u'surf', u'lifesav', u'busi', u'work']
[u'swallow', u'diamond', u'ring', u'show', u'evid']
[u'swim', u'safe', u'urg', u'lifesav']
[u'policemen', u'wound', u'bomb', u'blast', u'baghdad']
[u'soldier', u'kill', u'iraq', u'bomb', u'blast']
[u'troop', u'celebr', u'wintri', u'christma', u'home']
[u'explos', u'rock', u'pakistani', u'citi']
[u'year', u'kill', u'hous']
[u'approv', u'year', u'budget', u'top', u'billion']
[u'soldier', u'kill', u'baghdad', u'bomb', u'blast']
[u'vegetarian', u'virgin', u'mari', u'rile', u'boston', u'church']
[u'virgin', u'incid', u'spark', u'investig']
[u'pledg', u'consult']
[u'politician', u'die', u'age']
[u'waugh', u'tell', u'team', u'step', u'challeng']
[u'dead', u'musharraf', u'assassin']
[u'facil', u'tri', u'track', u'beagl']
[u'adelaid', u'gear', u'sheffield', u'carniv']
[u'african', u'plane', u'crash', u'kill']
[u'franc', u'continu', u'terror', u'investig']
[u'franc', u'resum', u'flight', u'scare']
[u'alleg', u'kidnapp', u'compani', u'execut', u'catch']
[u'issu', u'safeti', u'warn']
[u'arson', u'think', u'bushfir']
[u'asylum', u'seeker', u'want', u'return', u'kuwait']
[u'kill', u'flood', u'southern', u'turkey']
[u'dead', u'panama', u'quak']
[u'theft', u'trigger', u'polic', u'hunt']
[u'author', u'probe', u'school', u'blaze']
[u'bichel', u'surplus', u'requir']
[u'bomber', u'musharraf', u'assassin', u'identifi']
[u'box', u'blue', u'trader']
[u'box', u'warn', u'victorian', u'driver']
[u'brisban', u'prison', u'guard', u'attack']
[u'britain', u'warn', u'bahrain', u'grand', u'prix', u'terrorist']
[u'british', u'confirm', u'case']
[u'celtic', u'turn', u'screw', u'ger']
[u'china', u'delay', u'oper', u'block', u'dead']
[u'bank', u'warn', u'fraudul', u'websit']
[u'deal', u'reach', u'marshal']
[u'driveway', u'mishap', u'put', u'hospit']
[u'earli', u'morn', u'crash', u'leav', u'dead']
[u'firefight', u'concern', u'spark', u'nation', u'park', u'protest']
[u'japanes', u'troop', u'leav', u'iraq', u'mission']
[u'captur', u'christma', u'rocket', u'attack']
[u'feder', u'politician', u'die']
[u'german', u'firefight', u'rescu', u'flock', u'seagul']
[u'german', u'enjoy', u'nake', u'lake']
[u'girl', u'drown', u'melbourn']
[u'group', u'respons', u'istanbul', u'bomb']
[u'help', u'hand', u'christma', u'blue']
[u'india', u'whip', u'pakistan', u'despit', u'latif', u'centuri']
[u'india', u'condemn', u'dead', u'assassin', u'attempt']
[u'india', u'despit', u'late', u'loss']
[u'india', u'bat', u'juggernaut', u'roll']
[u'iran', u'quak', u'kill', u'thousand']
[u'israel', u'closer', u'unilater', u'measur']
[u'pantomim', u'time']
[u'japanes', u'court', u'order', u'taiwan', u'airlin']
[u'japanes', u'housewif', u'order', u'damag']
[u'japanes', u'theme', u'park', u'receiv', u'bomb', u'threat']
[u'japan', u'chang', u'allow', u'women', u'throne']
[u'accus', u'georgetown', u'murder', u'face', u'court']
[u'critic', u'gold', u'coast', u'stab']
[u'drown', u'gold', u'coast']
[u'nab', u'hong', u'kong', u'arm', u'haul', u'face', u'charg']
[u'join', u'nauru', u'hunger', u'strike']
[u'rain']
[u'mother', u'escap', u'burn', u'hous']
[u'musharraf', u'speak', u'fail', u'assassin']
[u'evid', u'pari', u'terror', u'plot']
[u'word', u'beagl', u'latest']
[u'offici', u'confirm', u'hivaid', u'outbreak', u'china']
[u'opposit', u'call', u'marshal']
[u'pakistan', u'roll', u'second', u'test']
[u'perth', u'toddler', u'drown']
[u'polic', u'call', u'sydney', u'shoot']
[u'polic', u'happi', u'driver', u'christma', u'effort']
[u'polic', u'investig', u'woman', u'death', u'pool', u'drown']
[u'polic', u'issu', u'warn', u'toddler', u'drown']
[u'polic', u'prepar', u'ferri', u'train', u'exercis']
[u'polic', u'shoot', u'brisban']
[u'power', u'earthquak', u'coast']
[u'putin', u'send', u'messag', u'condol', u'iran', u'quak']
[u'polic', u'offic', u'question', u'fatal', u'shoot']
[u'road', u'toll', u'rise', u'fatal', u'accid']
[u'quak', u'hit', u'iran', u'buri', u'debri']
[u'queen', u'head', u'christma']
[u'queen', u'make', u'appear', u'christma', u'servic']
[u'queensland', u'payn', u'take', u'latrob', u'wheel']
[u'recycl', u'option', u'christma', u'card']
[u'rescuer', u'battl', u'bodi', u'benin', u'plane', u'crash']
[u'rocket', u'destroy', u'kirkuk', u'polic']
[u'rocket', u'baghdad', u'target']
[u'polic', u'driver', u'care']
[u'saudi', u'arrest', u'seiz', u'bomb', u'make']
[u'shoaib', u'rip', u'kiwi', u'middl', u'order']
[u'shopper', u'urg', u'bewar', u'credit', u'card', u'fraud']
[u'shop', u'centr', u'pack', u'box', u'sale']
[u'singelton', u'endur', u'road', u'rage', u'attack']
[u'miss', u'turkish', u'flood']
[u'rebel', u'kill', u'civilian', u'abduct', u'aceh']
[u'skandia', u'zana', u'jockey', u'sydney', u'hobart', u'honour']
[u'spectat', u'warn', u'sydney', u'sightse']
[u'speed', u'waugh']
[u'stawel', u'gift', u'winner', u'latrob']
[u'bark', u'beagl']
[u'stowaway', u'dead', u'york', u'jamaica']
[u'worshipp', u'warn', u'cover']
[u'swedish', u'babi', u'alleg', u'bake', u'oven', u'mother']
[u'swiss', u'musician', u'fulfil', u'bach', u'dream', u'chang']
[u'sydney', u'lifesav', u'urg', u'caution']
[u'taiwan', u'clear', u'sar', u'infect', u'offici']
[u'aviv', u'gaza', u'violenc', u'claim']
[u'miss', u'mudslid']
[u'turkey', u'say', u'seven', u'catch', u'human', u'smuggl', u'case']
[u'soldier', u'kill', u'iraq']
[u'soldier', u'kill', u'mortar', u'attack', u'north', u'east']
[u'confirm', u'case']
[u'soldier', u'defus', u'roadsid', u'bomb', u'northern']
[u'liber', u'boost', u'rural', u'hospit', u'fund']
[u'vietnames', u'cyber', u'dissid', u'face', u'trial', u'week']
[u'vigil', u'silent', u'mar', u'probe', u'beagl', u'enter', u'second']
[u'waugh', u'readi', u'test']
[u'websit', u'emb', u'name', u'word', u'phrase']
[u'wit', u'seek', u'park', u'shoot']
[u'yacht', u'crew', u'weather', u'watch']
[u'zana', u'approach', u'jervi']
[u'zana', u'skandia', u'grundig']
[u'coupl', u'marri', u'mass', u'ceremoni', u'bangladesh']
[u'observatori', u'continu', u'beagl']
[u'franc', u'resum', u'flight']
[u'dead', u'benin', u'plane', u'crash']
[u'dead', u'storm', u'rip', u'turkey']
[u'auditor', u'deni', u'fraud', u'claim', u'parmalat', u'scandal']
[u'aust', u'agenc', u'launch', u'iranian', u'earthquak', u'appeal']
[u'australia', u'hunt', u'earli', u'wicket']
[u'author', u'attempt', u'rescu', u'distress', u'dolphin']
[u'badani', u'lead', u'india', u'reveng']
[u'bangladeshi', u'peacekeep', u'kill', u'benin', u'plane']
[u'black', u'benin', u'plane', u'crash']
[u'blood', u'bank', u'review', u'polici', u'scare']
[u'surviv', u'metr', u'fall']
[u'bracken', u'bank', u'earli', u'wicket']
[u'hit', u'cruis', u'passeng']
[u'bushfir', u'threaten', u'south', u'coast']
[u'coroni', u'inquiri', u'fatal', u'shoot']
[u'canberra', u'cinema', u'evacu', u'amid', u'alert']
[u'chelsea', u'crash', u'unit', u'arsenal', u'march']
[u'chief', u'nuke', u'inspector', u'head', u'libya']
[u'china', u'seal', u'sourc', u'dead', u'leak']
[u'chines', u'minist', u'restart', u'talk']
[u'claim', u'govt', u'bungl', u'revalu', u'process']
[u'cuba', u'denounc', u'concentr', u'camp']
[u'eighteen', u'indonesian', u'armi', u'tank', u'collid']
[u'fairi', u'penguin', u'resid', u'man']
[u'find', u'buyer', u'avert', u'closur']
[u'field', u'assembl', u'melbourn', u'hobart', u'race']
[u'fiji', u'legend', u'serevi', u'join', u'stade', u'bordelai']
[u'crew', u'bushfir']
[u'firework', u'blast', u'kill', u'pakistan']
[u'plan', u'foreign', u'rescuer', u'arriv', u'kerman']
[u'flood', u'warn', u'issu', u'western', u'alic', u'spring']
[u'foreign', u'worker', u'reach', u'iran', u'quak', u'zone']
[u'indonesian', u'dead', u'miss']
[u'soldier', u'kill', u'iraq']
[u'hunter', u'pack', u'english', u'field', u'despit']
[u'french', u'thiev', u'drive', u'victim', u'home', u'christma']
[u'german', u'entrepreneur', u'plan', u'bring', u'internet']
[u'germani', u'offer', u'iran', u'swift', u'rescu', u'help', u'quak']
[u'gingin', u'industri', u'plan', u'scrap']
[u'govt', u'pledg', u'iran']
[u'guantanamo', u'prison', u'concentr', u'camp', u'cuba', u'say']
[u'hayden', u'pont', u'lead', u'aussi', u'recoveri']
[u'holiday', u'road', u'toll']
[u'holiday', u'road', u'toll', u'hit']
[u'hong', u'kong', u'ramp', u'sar', u'alert']
[u'iaea', u'pois', u'test', u'libya', u'pledg', u'weapon']
[u'indec', u'merit', u'lead', u'melbourn', u'hobart', u'fleet']
[u'india', u'inadequaci', u'come', u'fore']
[u'iran', u'appeal', u'intern', u'quak']
[u'iran', u'arch', u'israel', u'offer', u'condol']
[u'islamist', u'want', u'music', u'ban', u'kuwaiti', u'school']
[u'jackson', u'speak', u'abus', u'charg']
[u'rebel', u'leader', u'hand', u'indian', u'polic']
[u'king', u'overwhelm', u'breaker', u'auckland']
[u'kiwi', u'command', u'pakistan', u'falter']
[u'lara', u'jacob', u'resurrect', u'west', u'indi']
[u'lead', u'group', u'benefit', u'strong', u'wind']
[u'libya', u'appear', u'close', u'nuclear', u'bomb']
[u'local', u'businessman', u'stand', u'cook', u'elect']
[u'loud', u'blast', u'shake', u'southern', u'iraqi', u'citi']
[u'arrang', u'shoot', u'woman']
[u'charg', u'murder', u'cairn']
[u'jail', u'asylum', u'boat', u'death']
[u'mar', u'probe', u'fail', u'contact', u'mothership']
[u'mcgee', u'gear', u'launceston', u'classic']
[u'merri', u'xmas']
[u'minist', u'defend', u'polic', u'action', u'fatal', u'shoot']
[u'cop', u'waugh', u'sydney', u'goodby']
[u'movi', u'star', u'kate', u'winslet', u'second', u'child']
[u'mozambiqu', u'hospit', u'short', u'blood']
[u'kill', u'truck', u'plung', u'cliff', u'bolivia']
[u'crime', u'oper', u'extend']
[u'govt', u'unveil', u'art', u'fund', u'plan']
[u'korea', u'agre', u'round', u'nuclear', u'talk']
[u'convent', u'get', u'call', u'brothel', u'portug']
[u'oneil', u'resign', u'lose', u'larsson']
[u'palestinian', u'youth', u'kill', u'west', u'bank', u'town']
[u'person', u'kill', u'fatal', u'accid']
[u'pilot', u'renew', u'airspac', u'chang']
[u'offer', u'condol', u'earthquak', u'victim']
[u'polic', u'scene', u'sydney', u'shoot']
[u'polic', u'probe', u'man', u'death', u'caravan', u'park']
[u'polic', u'probe', u'sydney', u'shoot']
[u'polic', u'search', u'sweep', u'rock']
[u'polic', u'solv', u'christma', u'mysteri']
[u'polic', u'urg', u'resid', u'care', u'shoot']
[u'post', u'christma', u'sale', u'start']
[u'qassam', u'rocket', u'fire', u'southern', u'israel', u'injuri']
[u'queen', u'mari', u'dock', u'home', u'port']
[u'cross', u'launch', u'multi', u'million', u'dollar', u'appeal']
[u'cross', u'set', u'iran', u'quak', u'appeal']
[u'rescu', u'worker', u'battl', u'stem', u'toxic', u'fume']
[u'resid', u'brace', u'evacu', u'crew', u'battl']
[u'russian', u'court', u'keep', u'yuko', u'sharehold', u'jail']
[u'search', u'continu', u'mudslid']
[u'search', u'fail', u'miss', u'fisherman']
[u'search', u'resum', u'croc', u'victim', u'bodi']
[u'second', u'herd', u'quarantin']
[u'shipwreck', u'crew', u'rescu', u'bust', u'smuggl']
[u'dead', u'mudslid']
[u'skandia', u'lead', u'despit', u'brush', u'natur']
[u'skandia', u'lead', u'hobart']
[u'soccer', u'legend', u'best', u'hold', u'alleg', u'beat']
[u'foreign', u'troop', u'kill', u'hurt', u'iraq', u'blast']
[u'sudan', u'peac', u'talk', u'resum', u'kenya']
[u'survivor', u'benin', u'crash', u'arriv', u'home']
[u'suspect', u'sar', u'case', u'china']
[u'sydney', u'iranian', u'group', u'discuss', u'option']
[u'terror', u'hotlin', u'work', u'justic', u'minist', u'say']
[u'thai', u'vow', u'student', u'clash', u'death']
[u'beagl', u'fail']
[u'kill', u'wound', u'explos', u'iraq']
[u'snowboard', u'miss', u'utah', u'avalanch']
[u'tribal', u'chief', u'shoot', u'dead', u'northern', u'iraq', u'polic']
[u'tuckey', u'defend', u'forestri', u'inform', u'request']
[u'unlik', u'australian', u'downer', u'say']
[u'say', u'peacekeep', u'head', u'liberia', u'rebel', u'area']
[u'seven', u'peopl', u'utah', u'avalanch']
[u'offici', u'fault', u'french', u'terror', u'alert']
[u'concern', u'terror', u'threat']
[u'stock', u'inch', u'quiet', u'trade']
[u'troop', u'kill', u'iraqi', u'patrol', u'attack']
[u'troop', u'kill', u'taliban', u'dead', u'ambush']
[u'vatican', u'terror', u'target', u'christma', u'berlusconi']
[u'crew', u'battl', u'factori']
[u'bushfir', u'burn', u'control']
[u'polic', u'shadow', u'joker', u'interst']
[u'wilko', u'comeback', u'trail']
[u'woman', u'charg', u'stab']
[u'woman', u'die', u'collis']
[u'woman', u'bodi', u'river']
[u'woodford', u'gear', u'folk', u'festiv']
[u'world', u'answer', u'iran']
[u'year', u'school', u'leaver', u'recognis', u'depart']
[u'kill', u'thai', u'accid']
[u'coalit', u'casualti', u'multipl', u'attack', u'iraq']
[u'demonstr', u'king', u'nepal']
[u'antarct', u'quest', u'aim', u'unit', u'isra', u'palestinian']
[u'attack', u'kill', u'iraq', u'holi', u'citi']
[u'australia', u'eye', u'inning', u'lead']
[u'australia', u'resum', u'chase']
[u'babi', u'dolphin', u'rescu', u'delay']
[u'benin', u'plane', u'crash', u'death', u'toll', u'rise']
[u'berlusconi', u'deni', u'vatican', u'attack', u'comment']
[u'box', u'sale', u'shop', u'canberra']
[u'bremer', u'contradict', u'blair', u'iraq', u'weapon']
[u'bremer', u'reject', u'blair', u'claim']
[u'britain', u'close', u'door', u'free', u'health', u'care']
[u'butler', u'blitz', u'stun', u'pakistan']
[u'cadibarra', u'set', u'melbourn', u'launceston', u'record']
[u'canada', u'warn', u'link']
[u'celtic', u'pile', u'pressur', u'hib']
[u'childcar', u'chain', u'open']
[u'china', u'alert', u'sar', u'suspect', u'case']
[u'clean', u'continu', u'chines', u'leak']
[u'cold', u'weather', u'kill', u'northern', u'india']
[u'cold', u'weather', u'kill', u'north', u'india']
[u'controversi', u'film', u'show', u'turkey']
[u'belong', u'heir', u'appar']
[u'earthquak', u'raze', u'ancient', u'jewel']
[u'east', u'timor', u'mourn', u'campaign', u'death']
[u'england', u'star', u'thorp', u'face', u'polic', u'probe']
[u'england', u'star', u'tindal', u'injur', u'bath']
[u'escud', u'golovin', u'hand', u'open', u'wildcard']
[u'chief', u'surviv', u'parcel', u'bomb']
[u'financ', u'chief', u'budget', u'freez', u'propos']
[u'european', u'tourist', u'free', u'iran', u'kidnapp']
[u'european', u'tourist', u'kidnap', u'iran', u'free']
[u'fame', u'british', u'actor', u'alan', u'bat', u'die']
[u'fast', u'furious', u'seven', u'come', u'sydney']
[u'father', u'daughter', u'kill', u'grenad', u'blast']
[u'feder', u'govern', u'hour', u'plan']
[u'firefight', u'contain', u'blaze', u'southern']
[u'soldier', u'wound', u'karbala', u'blast']
[u'folk', u'festiv', u'mark', u'year', u'second', u'home']
[u'insurg', u'kill', u'iraq']
[u'germani', u'thank', u'iran', u'hostag', u'releas']
[u'giant', u'boat', u'duel', u'dash', u'south']
[u'gibb', u'centuri', u'put', u'south', u'africa', u'control']
[u'glori', u'close', u'spot', u'striker', u'rout']
[u'hope', u'fade', u'miss', u'mudslid']
[u'hop', u'fade', u'iran', u'earthquak', u'victim']
[u'incid', u'juvenil', u'justic', u'centr']
[u'indec', u'merit', u'prowler', u'tight', u'tussl']
[u'indec', u'merit', u'catch', u'prowler']
[u'indec', u'merit', u'lead', u'melbourn', u'hobart']
[u'investig', u'probe', u'death']
[u'itali', u'court', u'declar', u'parmalat', u'insolv']
[u'japanes', u'busi', u'leader', u'economi', u'improv']
[u'joker', u'tightlip', u'interst', u'bike']
[u'kosciuszko', u'burst', u'bloom', u'bushfir']
[u'kuwaiti', u'editor', u'acquit', u'criticis', u'rule']
[u'emperor', u'actor', u'die', u'age']
[u'latif', u'keep', u'pakistan', u'afloat', u'seri']
[u'libya', u'accept', u'snap', u'inspect']
[u'charg', u'caravan', u'park', u'murder']
[u'mass', u'grave', u'vietnam']
[u'mcewen', u'take', u'launceston', u'classic']
[u'memori', u'servic', u'benin', u'crash', u'victim', u'hold']
[u'mexican', u'star', u'gloria', u'trevi', u'jail', u'hunger', u'strike']
[u'minist', u'blame', u'theft', u'crime', u'rise']
[u'lawyer', u'sign', u'defend', u'saddam']
[u'protest', u'launch', u'west', u'bank', u'barrier']
[u'dead', u'california', u'mudslid']
[u'word', u'beagl']
[u'govt', u'launch', u'blitz', u'build', u'site', u'safeti']
[u'polic', u'look', u'arm', u'robberi', u'suspect']
[u'korea', u'readi', u'nuclear', u'crisi', u'talk']
[u'polic', u'arrest', u'standoff']
[u'owen', u'near', u'year', u'return']
[u'pakistan', u'close', u'name', u'musharraf', u'suicid', u'bomber']
[u'parmalat', u'founder', u'arrest']
[u'peopl', u'smuggl', u'finish', u'downer']
[u'polic', u'appeal', u'help', u'assault', u'investig']
[u'polic', u'continu', u'search', u'croc', u'victim', u'bodi']
[u'polic', u'search', u'prison', u'escape']
[u'pont', u'reign', u'suprem']
[u'power', u'pressur', u'leader']
[u'priest', u'businessman', u'arrest', u'journalist']
[u'probe', u'death', u'launch']
[u'pursu', u'strand', u'ship', u'owner']
[u'raaf', u'leav', u'iran', u'merci', u'mission']
[u'rain', u'swell', u'drought', u'stricken', u'northern', u'river']
[u'rescuer', u'search', u'miss', u'mudslid']
[u'road', u'toll', u'rise']
[u'russian', u'rocket', u'lift', u'isra', u'satellit', u'space']
[u'safeti', u'come', u'say', u'nicorett', u'skipper']
[u'polic', u'investig', u'mail', u'blast']
[u'search', u'begin', u'miss', u'person']
[u'search', u'resum', u'miss', u'fisherman']
[u'serbia', u'vote', u'race', u'nationalist']
[u'serb', u'start', u'vote', u'divis', u'elect']
[u'sherwood', u'rest', u'season']
[u'egypt', u'prison', u'kill', u'guard', u'escap', u'train']
[u'skandia', u'keep', u'zana']
[u'skandia', u'lead', u'dash', u'south']
[u'skandia', u'lead', u'nicorett']
[u'stab', u'victim', u'prais', u'polic', u'brisban', u'shoot']
[u'african', u'supermarket', u'chain', u'fight', u'trolley']
[u'strong', u'earthquak', u'rock', u'indonesia']
[u'suspect', u'ebola', u'case', u'zimbabw']
[u'suspect', u'sar', u'patient', u'quarantin', u'china']
[u'swimmer', u'prepar', u'lonsdal', u'classic']
[u'taiwan', u'offer', u'quak', u'stricken', u'iran']
[u'tast', u'festiv', u'open', u'hobart']
[u'hush', u'life', u'hors', u'whisper']
[u'injur', u'rollov']
[u'tindal', u'fit', u'hop', u'rise', u'scan']
[u'troop', u'dead', u'iraq', u'blast']
[u'troop', u'kill', u'taliban', u'dead', u'ambush']
[u'turkish', u'polic', u'seiz', u'massiv', u'haul', u'antiqu']
[u'critic', u'injur', u'crash']
[u'hold', u'plot', u'blow', u'british', u'report']
[u'iraqi', u'children', u'soldier', u'kill', u'baghdad']
[u'kill', u'bushfir']
[u'arm', u'team', u'start', u'libyan', u'meet']
[u'union', u'judg', u'airspac', u'senat']
[u'peacekeep', u'liberia', u'deploy', u'rebel']
[u'put', u'bounti', u'iraq', u'want']
[u'say', u'canada']
[u'soldier', u'die', u'baghdad', u'twin', u'bomb', u'blast']
[u'research', u'bird', u'intern', u'studi']
[u'vintag', u'motorcycl', u'destroy']
[u'want', u'suspect', u'sar', u'case', u'test', u'outsid', u'china']
[u'woman', u'charg', u'stab', u'attack']
[u'world', u'effort', u'get', u'iran', u'quak', u'toll']
[u'zimbabw', u'arriv', u'triangular', u'challeng']
[u'miner', u'pull', u'aliv', u'hour', u'trap']
[u'agarkar', u'snare', u'langer']
[u'flow', u'affect', u'farmer']
[u'pour', u'iran', u'quak', u'victim']
[u'arthur', u'hand', u'sydney', u'wildcard']
[u'kill', u'bomb', u'explod', u'near']
[u'atsic', u'chair', u'call', u'foster', u'care', u'recruit', u'drive']
[u'australian', u'pitch', u'help', u'earthquak', u'victim']
[u'australian', u'stock', u'trade']
[u'ayatollah', u'survey', u'iran', u'eathquak', u'damag']
[u'better', u'time', u'kosciuszko', u'tourism']
[u'crowd', u'tast', u'tassi']
[u'seek', u'jail', u'term', u'child', u'destruct']
[u'blackburn', u'ferguson', u'break', u'kneecap', u'season']
[u'blow', u'india', u'zaheer', u'rule']
[u'bodi', u'sydney']
[u'britain', u'arm', u'marshal', u'flight']
[u'british', u'comic', u'monkhous', u'die']
[u'chess', u'gurus', u'check', u'adelaid', u'showdown']
[u'child', u'custodi', u'report', u'releas']
[u'china', u'prepar', u'launch', u'doubl', u'star']
[u'china', u'find', u'sign', u'sar', u'quarantin', u'worker']
[u'coca', u'cola', u'quiet', u'parmalat', u'rumour']
[u'committe', u'propos', u'famili', u'overhaul']
[u'crew', u'pittwat', u'coff', u'yacht', u'race']
[u'cyprus', u'hold', u'pakistani', u'terror', u'suspect']
[u'dairi', u'farmer', u'reassur', u'parmalat']
[u'death', u'spark', u'hospit', u'assur']
[u'death', u'toll', u'china', u'blast', u'jump']
[u'detaine', u'question', u'grafton', u'brawl']
[u'dinosaur', u'phar', u'resurrect']
[u'dolphin', u'free', u'outer', u'harbour']
[u'drug', u'centr', u'warn', u'huff', u'danger']
[u'dubbo', u'policeman', u'assault', u'riot']
[u'dead', u'california', u'mudslid']
[u'boss', u'palio', u'defend']
[u'farina', u'pick', u'olyroo', u'qualifi', u'squad']
[u'govt', u'call', u'stamp', u'duti']
[u'filipino', u'elect', u'extort']
[u'effort', u'bring', u'parkland', u'blaze', u'control']
[u'servic', u'issu', u'permit', u'remind']
[u'nation', u'keep', u'nose', u'overal']
[u'fisher', u'help', u'free', u'babi', u'dolphin']
[u'focus', u'turn', u'handicap', u'honour']
[u'gallop', u'plan', u'settlement', u'celebr']
[u'govt', u'consid', u'child', u'custodi', u'propos']
[u'guatemalan', u'choos', u'presid']
[u'helicopt', u'go', u'miss']
[u'hobbit', u'maintain', u'reign', u'offic']
[u'holiday', u'road', u'toll', u'reach']
[u'hunter', u'plan', u'statewid']
[u'indec', u'merit', u'cruis', u'melbourn', u'hobart']
[u'indec', u'melbourn', u'hobart']
[u'investig', u'hous', u'begin']
[u'iranian', u'communiti', u'hold', u'quak', u'chariti', u'concert']
[u'iranian', u'earthquak', u'felt', u'ballarat']
[u'ireland', u'protect', u'huge', u'atlant', u'coral', u'reef']
[u'isra', u'troop', u'kill', u'palestinian', u'report']
[u'japanes', u'runaway', u'keep', u'stillborn', u'babi', u'month']
[u'secur', u'defenc', u'contract']
[u'khamenei', u'tour', u'iran', u'earthquak', u'devast']
[u'knock', u'noosa', u'council', u'green', u'plan']
[u'fail', u'truli', u'impress']
[u'liber', u'oppos', u'home', u'detent', u'plan']
[u'face', u'court', u'drive', u'charg']
[u'unit', u'extend', u'lead']
[u'mar', u'invas', u'continu']
[u'memori', u'servic', u'hold', u'benin', u'crash', u'victim']
[u'face', u'thai', u'court', u'terror', u'plan']
[u'mongia', u'guid', u'india', u'triangular', u'final']
[u'moor', u'ger', u'trim', u'celtic', u'lead']
[u'nauru', u'hunger', u'strike', u'need', u'decis', u'action']
[u'nauru', u'hunger', u'striker', u'take', u'hospit']
[u'near', u'miss', u'firefight', u'water', u'pump', u'fail']
[u'negoti', u'syria', u'start', u'scratch']
[u'ball', u'burst', u'rip', u'india', u'apart']
[u'probe', u'juvenil', u'detent', u'incid']
[u'record', u'higher', u'christma', u'sale']
[u'union', u'confid', u'parmalat', u'job']
[u'nuclear', u'watchdog', u'begin', u'libya', u'inspect']
[u'offici', u'iranian', u'quak', u'death', u'toll', u'reach']
[u'organis', u'predict', u'faster', u'melbourn']
[u'pakistan', u'near', u'victori', u'shoaib', u'blitz']
[u'polic', u'begin', u'kallaroo', u'murder', u'probe']
[u'polic', u'chase', u'inform', u'miss', u'teen']
[u'polic', u'confid', u'find', u'croc', u'victim']
[u'polic', u'continu', u'hunt', u'killer', u'croc']
[u'polic', u'high', u'spirit', u'ferri', u'train']
[u'polic', u'probe', u'blacktown', u'pursuit', u'crash']
[u'polic', u'probe', u'hous', u'blaze']
[u'polic', u'probe', u'motorcyclist', u'death']
[u'polic', u'probe', u'suspect', u'kidnap']
[u'polic', u'station', u'kid', u'mother']
[u'polic', u'question', u'teen', u'shop', u'damag']
[u'public', u'ask', u'angl', u'fish', u'contest']
[u'road', u'toll', u'rise', u'motorcyclist', u'death']
[u'rain', u'chang', u'road', u'condit']
[u'cross', u'fli', u'tonn', u'victim']
[u'rspca', u'alarm', u'pet', u'lock', u'car']
[u'mening', u'patient', u'mend']
[u'saudi', u'deni', u'arrest', u'suicid', u'bomber']
[u'seafood', u'buyer', u'urg', u'question', u'prawn', u'origin']
[u'sharon', u'prepar', u'road', u'failur']
[u'siev', u'sentenc', u'hand', u'downer']
[u'continu', u'compens', u'quest']
[u'skandia', u'win', u'sydney', u'hobart']
[u'small', u'bomb', u'wound', u'child', u'pakistani', u'citi']
[u'speed', u'climb', u'drink', u'drive', u'drop', u'hunter']
[u'stage', u'film', u'star', u'alan', u'bat', u'die']
[u'strong', u'quak', u'jolt', u'northern', u'japan']
[u'sudan', u'govt', u'rebel', u'hammer', u'deal']
[u'sydney', u'prepar', u'year', u'bang']
[u'sydney', u'woman', u'miss', u'hike']
[u'taliban', u'claim', u'kabul', u'suicid', u'blast']
[u'teen', u'die', u'southern', u'road', u'crash']
[u'dead', u'iran', u'mission', u'crash']
[u'time', u'run', u'weapon', u'amnesti']
[u'tindal', u'miss', u'nation', u'follow', u'ankl']
[u'troop', u'kill', u'roadsid', u'attack']
[u'ultra', u'nationalist', u'serb', u'vote', u'monitor']
[u'unit', u'loss', u'put', u'play', u'off', u'doubt']
[u'unit', u'resid', u'evacu', u'blaze']
[u'expand', u'beef', u'recal']
[u'implic', u'iraq', u'reconstruct', u'scam']
[u'involv', u'corrupt', u'iraqi', u'minist']
[u'children', u'swim', u'water', u'safeti']
[u'communiti', u'count', u'cost', u'fatal', u'bushfir']
[u'polic', u'identifi', u'abandon', u'children']
[u'polic', u'seek', u'info', u'desert', u'children']
[u'waugh', u'clear', u'sydney']
[u'wilkinson', u'injur', u'comeback', u'match']
[u'windi', u'battl', u'surviv']
[u'wind', u'boost', u'melbourn', u'hobart', u'speed']
[u'workcov', u'warn', u'illeg', u'firework', u'danger']
[u'zimbabw', u'prepar', u'possibl', u'ebola', u'outbreak']
[u'abattoir', u'work', u'includ', u'mudge', u'connect']
[u'addict', u'mast', u'melbourn', u'hobart']
[u'ambul', u'bypass', u'jump', u'fail', u'concern', u'minist']
[u'ambul', u'campaign', u'eas', u'camp', u'violenc']
[u'arab', u'countri', u'join', u'iran', u'effort']
[u'armidal', u'dumaresq', u'ahead', u'merger', u'talk']
[u'artist', u'nora', u'heysen', u'dead']
[u'atsic', u'chairman', u'offer', u'foster', u'care', u'option']
[u'aussi', u'kill']
[u'australia', u'lure', u'japanes', u'beef', u'buyer']
[u'award', u'grain', u'farmer', u'wheat']
[u'baggio', u'retir', u'season']
[u'black', u'harri', u'leav', u'pakistan']
[u'bomb', u'explod', u'riyadh', u'wit']
[u'injur', u'speedboat', u'accid']
[u'brewarrina', u'warn', u'flood', u'risk']
[u'british', u'clergi', u'slam', u'white', u'vigilant', u'bush', u'blair']
[u'briton', u'head', u'rottnest', u'island', u'task', u'forc']
[u'brumbi', u'group', u'unhappi', u'cull', u'plan']
[u'bulk', u'bill', u'drop', u'hit', u'hardest']
[u'bunburi', u'crash', u'put', u'hospit']
[u'burundi', u'blame', u'vatican', u'offici', u'death', u'rebel']
[u'bushwalk', u'hospit', u'fall']
[u'bypass', u'work', u'delay', u'southern', u'traffic']
[u'california', u'mudslid', u'death', u'toll', u'rise']
[u'trader', u'femal', u'appoint']
[u'boost', u'region', u'busi', u'confid']
[u'catamaran', u'racer', u'sail', u'south', u'east', u'victoria']
[u'cattl', u'kill', u'truck', u'rollov']
[u'group', u'protest', u'radio', u'network']
[u'child', u'custodi', u'plan', u'import', u'money']
[u'claim', u'jealousi', u'secur', u'licenc', u'remov']
[u'clean', u'continu', u'reserv', u'blaze']
[u'concern', u'rais', u'melbourn', u'transport']
[u'convict', u'murder', u'lodg', u'high', u'court', u'appeal']
[u'cost', u'influenc', u'custodi', u'chang', u'hull']
[u'council', u'reject', u'longer', u'rylston', u'pool', u'hour']
[u'court', u'confirm', u'retir', u'villag', u'ownership']
[u'court', u'hear', u'alleg', u'rapist', u'tri', u'hire', u'hitman']
[u'court', u'hear', u'alleg', u'thief', u'shop', u'spree']
[u'court', u'okay', u'nude', u'barbi', u'photo']
[u'cricket', u'unit', u'iran', u'earthquak', u'appeal']
[u'croc', u'upset', u'tiger']
[u'darwin', u'ponder', u'rugbi', u'futur']
[u'darwin', u'revel', u'tell', u'leav', u'car', u'home']
[u'deadlin', u'aquif', u'criteria']
[u'death', u'toll', u'rise', u'indian', u'cold', u'snap']
[u'dizzi', u'chanc', u'waugh', u'farewel']
[u'doubt', u'mount', u'famili', u'tribun']
[u'nasdaq', u'year', u'high']
[u'east', u'timor', u'pay', u'tribut', u'independ', u'activist']
[u'farmer', u'help', u'bolster', u'southern', u'busi']
[u'issu', u'almanac', u'alert']
[u'fiji', u'caucau', u'popular']
[u'push', u'gympi', u'gold', u'receivership']
[u'threaten', u'cessnock']
[u'joint', u'china', u'satellit', u'launch']
[u'nation', u'take', u'overal', u'honour']
[u'focus', u'turn', u'quak', u'survivor', u'iran']
[u'trillion', u'britain']
[u'fragrant', u'flower', u'stretch', u'snake', u'record']
[u'ganguli', u'defend', u'decis', u'shield', u'tendulkar']
[u'gnome', u'seek', u'home', u'liber']
[u'gold', u'coast', u'road', u'death', u'spark', u'polic', u'plea']
[u'goulburn', u'valley', u'alert']
[u'govt', u'tell', u'stop', u'illeg', u'fish']
[u'gunner', u'touch', u'southampton']
[u'hand', u'cream', u'set', u'bomb', u'detector']
[u'handicap', u'straggler', u'approach', u'hobart']
[u'hayden', u'power', u'australia', u'home']
[u'higher', u'level', u'lift', u'tourism', u'hop']
[u'highlight', u'vintag', u'sport', u'year']
[u'hong', u'kong', u'star', u'anita', u'die']
[u'hope', u'record', u'time', u'pittwat', u'coff', u'yacht']
[u'hunter', u'obstetr', u'decis', u'month', u'away']
[u'hurst', u'see', u'eckstein', u'holm', u'main', u'competit']
[u'indec', u'merit', u'home', u'melbourn']
[u'indonesian', u'journalist', u'shoot', u'dead', u'aceh', u'skirmish']
[u'iranian', u'detaine', u'send', u'quak']
[u'iran', u'quak', u'death', u'toll', u'rise', u'offici']
[u'iran', u'quak', u'rescu', u'wind']
[u'japan', u'china', u'agre', u'write', u'iraqi', u'debt']
[u'kiwi', u'want', u'akram', u'beat', u'akhtar']
[u'lara', u'rule', u'whitewash', u'inning', u'defeat']
[u'letter', u'bomb', u'target', u'euro', u'institut']
[u'herd', u'slaughter']
[u'hospitalis', u'bushwalk', u'fall']
[u'lose', u'train', u'accid']
[u'question', u'adelaid', u'sieg']
[u'trap', u'roadsid', u'ditch', u'day']
[u'mayor', u'welcom', u'drought', u'fund']
[u'miandad', u'heav', u'sigh', u'relief']
[u'mick', u'join', u'elliott', u'mari', u'prehistor']
[u'miss', u'chopper', u'crew', u'safe']
[u'nauru', u'hunger', u'strike', u'weaken']
[u'near', u'drown', u'survivor', u'oblivi', u'rescu', u'attempt']
[u'oper', u'promis', u'cheaper', u'fare']
[u'bodi', u'help', u'indigen', u'artist']
[u'newcastl', u'crew', u'sail', u'sydney', u'hobart', u'place']
[u'strait', u'time', u'appoint', u'editor', u'chief']
[u'sight', u'hunter', u'mine', u'disput']
[u'need', u'panic', u'parmalat', u'collaps', u'dairi', u'group']
[u'taxpay', u'meet', u'super', u'shortfal']
[u'offici', u'shoot', u'crocodil']
[u'search', u'continu', u'sydney', u'bushwalk']
[u'offici', u'investig', u'small', u'saudi', u'blast']
[u'iraqi', u'kill', u'injur', u'baghdad', u'blast']
[u'paddler', u'cours', u'torrumbarri']
[u'pakistan', u'beat', u'rain', u'wallop', u'zealand', u'clinch']
[u'palestinian', u'critic', u'isra', u'order', u'outpost']
[u'papal', u'envoy', u'murder', u'burundi']
[u'park', u'infrastructur', u'month']
[u'parmalat', u'chief', u'admit', u'lawyer', u'say']
[u'pat', u'presenc', u'swell', u'crowd', u'figur']
[u'care', u'warn', u'ahead', u'firework']
[u'plan', u'start', u'south', u'west', u'rescu', u'chopper']
[u'polic', u'chase', u'woomby', u'post', u'offic', u'robber']
[u'polic', u'close', u'fruit', u'pick', u'thiev']
[u'polic', u'consid', u'alic', u'blaze', u'suspici']
[u'polic', u'happi', u'central', u'driver']
[u'polic', u'issu', u'warn', u'internet', u'blackmail', u'scam']
[u'polic', u'seiz', u'cannabi', u'nimbin', u'raid']
[u'privat', u'bore', u'owner', u'face', u'restrict']
[u'public', u'await', u'govt', u'shale', u'respons']
[u'public', u'figur', u'face', u'child', u'charg', u'portug']
[u'public', u'urg', u'support', u'nauru', u'detaine', u'review']
[u'qanta', u'readi', u'work', u'aust', u'marshal', u'plan']
[u'qanta', u'warn', u'custom', u'bogus', u'sit']
[u'seek', u'money', u'sustain', u'artesian', u'basin']
[u'tourism', u'happi', u'festiv', u'season']
[u'refuge', u'group', u'urg', u'help', u'nauru', u'protest']
[u'insur', u'count', u'cost', u'global', u'warm']
[u'report', u'nauru', u'detaine', u'mischiev']
[u'result', u'flow', u'year', u'water', u'qualiti', u'trial']
[u'revel', u'urg', u'watch', u'drink', u'spike']
[u'riski', u'hobart', u'fuel', u'spill', u'complet']
[u'runner', u'consid', u'retir', u'devonport']
[u'russian', u'tycoon', u'stalk', u'report']
[u'opposit', u'rais', u'small', u'busi', u'fear']
[u'sar', u'case', u'confirm', u'chines', u'offici']
[u'search', u'helicopt', u'miss']
[u'search', u'scale', u'miss', u'angler']
[u'payout', u'unlik', u'govt']
[u'site', u'choos', u'wilder', u'centr']
[u'sixer', u'punt', u'european', u'sign']
[u'spray', u'aim', u'control', u'locust', u'number']
[u'stage', u'thrill', u'final']
[u'strong', u'explos', u'rock', u'baghdad']
[u'struggl', u'spur', u'fear', u'kanout', u'mali']
[u'survey', u'show', u'good', u'time', u'illawarra', u'busi']
[u'swimmer', u'drown', u'north', u'western', u'tasmania']
[u'sydney', u'hiker', u'safe']
[u'syria', u'turn', u'focus', u'isra', u'nuke']
[u'tanker', u'overturn', u'southern', u'tasmania']
[u'liber', u'mourn', u'death']
[u'thousand', u'flock', u'woodford', u'folk', u'festiv']
[u'dead', u'iraq', u'battl']
[u'townsvill', u'croc', u'snap']
[u'townsvill', u'spray', u'mozzi', u'number']
[u'troop', u'faulti', u'helmet', u'iraq', u'supplier']
[u'tumut', u'river', u'manag', u'spotlight']
[u'nuclear', u'chief', u'prais', u'libyan', u'cooper']
[u'aust', u'marshal', u'talk', u'underway']
[u'cardiologist', u'work', u'launceston', u'hospit']
[u'push', u'marshal', u'plan']
[u'victorian', u'polic', u'close', u'dibra', u'murder']
[u'victorian', u'yacht', u'tip', u'rudder']
[u'wall', u'gain', u'lead', u'aust', u'market']
[u'wall', u'street', u'drive', u'higher']
[u'wangaratta', u'reveal', u'manag', u'plan']
[u'power', u'compani', u'investig', u'caus']
[u'waugh', u'prais', u'crush']
[u'wilkinson', u'nation']
[u'wine', u'chief', u'fire', u'part', u'shoot']
[u'wollongong', u'harbour', u'algal', u'bloom', u'disappear']
[u'worksaf', u'probe', u'shire', u'presid', u'death']
[u'youth', u'transfer', u'centr', u'riot']
[u'zimbabw', u'face', u'famin', u'crisi']
[u'play', u'cupid', u'lovelorn', u'tiger']
[u'adelaid', u'rest', u'catch', u'schedul']
[u'aerial', u'search', u'spot', u'miss', u'stockman']
[u'airlin', u'bodi', u'say', u'govern']
[u'traffic', u'land', u'fee']
[u'antarct', u'mission', u'strand', u'safeti', u'concern']
[u'artist', u'heysen', u'ash', u'scatter']
[u'asylum', u'miss', u'sydney', u'hobart']
[u'audit', u'find', u'fund', u'fail', u'develop', u'busi']
[u'australia', u'begin', u'asbesto', u'free', u'futur']
[u'australian', u'arriv', u'iran']
[u'australian', u'climber', u'kill']
[u'australian', u'receiv', u'payout']
[u'australia', u'welcom']
[u'author', u'rule', u'drug', u'riot', u'spark']
[u'author', u'wait', u'shoot', u'croc', u'surfac']
[u'baghdad', u'gear', u'year', u'threat']
[u'beef', u'industri', u'call', u'support', u'livestock']
[u'express', u'await', u'regul', u'approv']
[u'blast', u'coal', u'firework', u'factori', u'kill']
[u'bodi', u'british', u'tourist', u'pull', u'iran', u'quak']
[u'brazil', u'judg', u'order', u'citizen', u'fingerprint']
[u'brochur', u'highlight', u'danger', u'snowi', u'motorcyclist']
[u'burni', u'girl', u'sprint', u'victori', u'devonport']
[u'crash', u'pakistan', u'kill']
[u'bush', u'design', u'thailand', u'deputi']
[u'canberra', u'gear', u'year']
[u'central', u'aust', u'road', u'condit', u'eas']
[u'central', u'prepar', u'year', u'crowd']
[u'child', u'escap', u'fieri', u'coff', u'crash']
[u'christma', u'letter', u'write', u'santa']
[u'seek', u'smaller', u'preschool', u'class', u'size']
[u'consum', u'expect', u'happi', u'year']
[u'council', u'promis', u'year', u'crackdown']
[u'doctor', u'urg', u'drink', u'caution', u'young', u'australian']
[u'dollar', u'end', u'year', u'year', u'high']
[u'driver', u'death', u'rais', u'road', u'toll']
[u'dubbo', u'ask', u'citizen', u'water', u'suppli']
[u'england', u'rugbi', u'coach', u'knight']
[u'england', u'rugbi', u'coach', u'knight', u'team', u'honour']
[u'europ', u'china', u'launch', u'solar', u'research', u'satellit']
[u'exot', u'anim', u'home']
[u'famili', u'event', u'plan', u'year']
[u'farmer', u'vehicl', u'insur', u'rebat']
[u'fire', u'spark', u'farm', u'machineri', u'warn']
[u'flood', u'warn', u'rain', u'continu']
[u'khmer', u'roug', u'head', u'admit', u'genocid']
[u'dead', u'injur', u'avalanch']
[u'fourth', u'letter', u'bomb', u'target', u'euro', u'institut']
[u'text', u'john', u'howard', u'year', u'messag']
[u'gallop', u'stand', u'minist', u'burrup', u'cost', u'blowout']
[u'gang', u'unit', u'investig', u'kallaroo', u'firebomb']
[u'german', u'hospit', u'seal', u'terror', u'threat']
[u'gillespi', u'return', u'prompt', u'select', u'dilemma']
[u'gold', u'open']
[u'govt', u'consid', u'iran', u'detaine', u'quak', u'fund', u'request']
[u'gympi', u'gold', u'sharehold', u'face', u'nervous', u'wait']
[u'health', u'minist', u'uncomfort', u'tobacco', u'money']
[u'high', u'wind', u'lash', u'central', u'victoria']
[u'melbourn', u'break', u'decemb', u'record']
[u'hunter', u'record', u'case']
[u'indonesian', u'polic', u'probe', u'possibl', u'student', u'link']
[u'iran', u'earthquak', u'survivor', u'battl', u'cold']
[u'iranian', u'presid', u'downplay', u'thaw', u'relat']
[u'iranian', u'howard', u'year', u'thought']
[u'iraqi', u'boxer', u'train', u'kuwait']
[u'iraqi', u'plane', u'attack', u'suspect', u'die', u'custodi']
[u'iraq', u'urg', u'aust', u'send', u'asylum', u'seeker', u'home']
[u'jewish', u'settlement', u'expand', u'sharon']
[u'kalgoorli', u'welcom', u'child', u'custodi', u'report']
[u'kazaa', u'top', u'searcher', u'list']
[u'yacht', u'near', u'hobart']
[u'group', u'push', u'youth', u'commiss']
[u'gillespi', u'squad']
[u'leve', u'builder', u'deni', u'council', u'flood', u'claim']
[u'london', u'road', u'sign', u'joke', u'lose', u'isra', u'polic']
[u'longreach', u'urg', u'water']
[u'mackay', u'polic', u'boost', u'number', u'year']
[u'put', u'squeez', u'local', u'beef', u'price']
[u'hospit', u'choke', u'incid']
[u'jail', u'roadsid', u'assault']
[u'face', u'court', u'baddaginni', u'fire']
[u'market', u'contract', u'power', u'bill']
[u'mar', u'express', u'prepar', u'beagl', u'chat']
[u'mayor', u'hop', u'gympi', u'gold', u'woe', u'wont', u'hurt', u'kilkivan']
[u'mclaren', u'drop', u'coulthard']
[u'melbourn', u'edg', u'record', u'high', u'temperatur']
[u'melbourn', u'timber', u'yard', u'blaze', u'bring', u'control']
[u'west', u'harvest', u'near']
[u'milk', u'human', u'kind', u'touch', u'goulburn', u'valley']
[u'miner', u'find', u'cooper', u'basin']
[u'miner', u'seek', u'golden', u'opportun', u'western']
[u'miner', u'unfaz', u'harmoni', u'option', u'decis']
[u'miss', u'angler', u'safe']
[u'miss', u'child', u'safe', u'mother']
[u'mother', u'children', u'bruce', u'highway', u'crash']
[u'tri', u'road', u'sens', u'princ', u'highway', u'woe']
[u'rain', u'littl', u'lift', u'lake', u'level']
[u'musharraf', u'tighten', u'grip', u'pakistan']
[u'block', u'sixer', u'shoot', u'moor']
[u'neuticl', u'offer', u'castrat', u'canin', u'virtual', u'viril']
[u'nevill', u'say', u'england', u'strike', u'threat', u'real']
[u'newcastl', u'chairman', u'blast', u'team']
[u'newcastl', u'prepar', u'welcom']
[u'year', u'revel', u'urg', u'consid']
[u'plan', u'recal', u'beef', u'aqi']
[u'northern', u'name', u'australia', u'ambassador']
[u'rais', u'nation', u'road', u'toll']
[u'polic', u'search', u'miss', u'trio']
[u'injur', u'isra', u'gunship', u'attack']
[u'iraqi', u'kill', u'roadsid', u'bomb', u'attack']
[u'paddler', u'sight', u'murray', u'marathon', u'finish']
[u'part', u'murrimbidge', u'open', u'swim']
[u'peopl', u'power', u'forc', u'wast', u'plant', u'closur']
[u'pittman', u'race', u'modifi', u'event']
[u'polic', u'miss', u'search']
[u'polic', u'escort', u'gypsi', u'joker', u'adelaid']
[u'polic', u'escort', u'prais', u'gypsi', u'joker']
[u'polic', u'forc', u'retreat', u'inverel', u'parti']
[u'polic', u'investig', u'possibl', u'stab', u'death']
[u'polic', u'australian', u'kill', u'avalanch']
[u'polic', u'expect', u'year', u'troubl']
[u'polic', u'plan', u'zero', u'toler', u'approach', u'year']
[u'polic', u'prepar', u'year']
[u'polic', u'readi', u'year', u'revel']
[u'polic', u'readi', u'tackl', u'year', u'troublemak']
[u'polic', u'stalk', u'gunman', u'darwin', u'suburb']
[u'polic', u'shadow', u'gypsi', u'joker']
[u'polic', u'walk', u'away', u'rollov']
[u'polic', u'watch', u'gypsi', u'joker', u'prepar', u'road', u'trip']
[u'pont', u'top', u'bat', u'rat']
[u'pyrotechnician', u'grant', u'interim', u'permit']
[u'coast', u'host', u'thousand', u'revel']
[u'look', u'capitalis', u'beef', u'worri']
[u'rafter', u'tuesday', u'return']
[u'rain', u'boost', u'central', u'fruit']
[u'rash', u'resolut', u'hard', u'follow', u'research']
[u'figur', u'lend', u'growth', u'slow']
[u'cross', u'demand', u'access', u'saddam']
[u'redskin', u'coach', u'join', u'jobless', u'queue']
[u'resourc', u'stock', u'constrain', u'market', u'gain']
[u'mayor', u'dig', u'deep', u'rivaldo']
[u'royal', u'corgi', u'enrol', u'behaviour', u'train']
[u'rugbi', u'player', u'star', u'controversi', u'honour', u'list']
[u'russian', u'writer', u'bogomolov', u'die']
[u'public', u'help', u'save', u'water']
[u'saudi', u'arabia', u'say', u'qaeda', u'suspect', u'surrend']
[u'saudi', u'arabia', u'want', u'surrend']
[u'sheffield', u'sign', u'wolv', u'striker']
[u'shepparton', u'upbeat', u'financi', u'state']
[u'shire', u'govt', u'sign', u'roadwork', u'displeasur']
[u'miss', u'avalanch', u'report']
[u'south', u'african', u'scientist', u'dispel', u'ebola', u'fear']
[u'south', u'west', u'hospit', u'deliv', u'healthi', u'perform']
[u'sprint', u'champ', u'posit', u'test']
[u'spur', u'portsmouth', u'transfer']
[u'tasmania', u'lead', u'union']
[u'tasmanian', u'scrub', u'blaze', u'control']
[u'thousand', u'crowd', u'earli', u'sydney', u'firework']
[u'thousand', u'sleep', u'open', u'iran', u'quak', u'toll', u'climb']
[u'tourism', u'expect', u'bounc']
[u'townsend', u'step', u'closer', u'natal']
[u'union', u'believ', u'cessnock', u'miner', u'entitl', u'safe']
[u'accus', u'parmalat', u'brazen', u'corpor', u'fraud']
[u'consum', u'confid', u'slip']
[u'say', u'anthrax', u'vaccin', u'safe', u'troop']
[u'shrimper', u'target', u'rate', u'asian', u'product']
[u'ephedra', u'diet', u'supplement', u'heart', u'risk']
[u'amnesti', u'net', u'handgun']
[u'victorian', u'tell', u'watch', u'sky', u'shark', u'danger']
[u'vietnam', u'dissid', u'journalist', u'jail', u'seven', u'year']
[u'govt', u'consid', u'kimberley', u'herbicid']
[u'polic', u'prepar', u'year', u'crackdown']
[u'wavelength', u'take', u'melb', u'hobart', u'handicap']
[u'weighti', u'obsess', u'trap', u'york', u'collector']
[u'west', u'brom', u'miss', u'chanc', u'wimbledon']
[u'western', u'sydney', u'taxi', u'driver', u'strike', u'tonight']
[u'wheatbelt', u'effort', u'help', u'reduc', u'dead', u'crash']
[u'whitsunday', u'council', u'tell', u'tour', u'oper', u'ceas']
[u'seek', u'clarif', u'suspect', u'sar', u'case']
[u'williamstown', u'hospit', u'put', u'birth', u'hold']
[u'heat', u'tamworth', u'water', u'climb']
[u'wolfowitz', u'replac', u'guantanamo', u'trial', u'head']
[u'year', u'photo']
[u'dead', u'bomb', u'end', u'aceh', u'year', u'concert']
[u'abandon', u'pet', u'crowd', u'rspca', u'shelter']
[u'water', u'charg', u'doubl']
[u'aftershock', u'strike', u'fear', u'iran', u'quak', u'survivor']
[u'athen', u'olymp', u'construct', u'schedul']
[u'author', u'continu', u'search', u'miss', u'fish']
[u'flight', u'detain', u'washington', u'airport']
[u'beagl', u'remain', u'silent', u'hop', u'pin', u'mar', u'express']
[u'black', u'cap', u'hope', u'share', u'coach', u'magic']
[u'bomb', u'baghdad', u'restaur', u'kill']
[u'brawl', u'lake', u'macquari', u'year', u'festiv']
[u'british', u'chief', u'fear', u'invas', u'middl']
[u'bush', u'determin', u'build', u'past', u'success']
[u'candid', u'ring', u'taiwan', u'year']
[u'cargo', u'seizur', u'seal', u'libyan', u'pledg']
[u'carragh', u'baro', u'verg', u'return', u'red']
[u'central', u'australian', u'tourism', u'look', u'better', u'time']
[u'child', u'kill', u'baghdad', u'blast']
[u'china', u'summon', u'japanes', u'diplomat', u'koizumi']
[u'crowd', u'number', u'hobart', u'year', u'celebr']
[u'dead', u'bodi', u'british', u'airway']
[u'death', u'toll', u'indian', u'cold', u'wave', u'rise']
[u'doubt', u'remain', u'job', u'blaze']
[u'close', u'year', u'high']
[u'drug', u'help', u'reduc', u'genit', u'herp', u'transmiss']
[u'survivor', u'pull', u'rubbl', u'iran']
[u'english', u'rugbi', u'star', u'delight', u'year']
[u'ervin', u'haul', u'help', u'zimbabw', u'past', u'australia']
[u'fall', u'festiv', u'crowd', u'fantast']
[u'famili', u'friend', u'mourn', u'australian', u'death']
[u'fate', u'beckon', u'australian', u'cricket', u'rock']
[u'ferdinand', u'hurt', u'england', u'nevill']
[u'dead', u'restaur', u'bomb', u'iraq']
[u'kill', u'suspect', u'suicid', u'bomb', u'baghdad']
[u'arrest', u'parmalat', u'scandal']
[u'rescu', u'earthquak', u'rubbl']
[u'forest', u'group', u'put', u'case', u'prescrib']
[u'report', u'dead', u'colombia', u'clash']
[u'french', u'year', u'amid', u'tight', u'secur']
[u'furnitur', u'consortium', u'seek', u'sotico', u'purchas']
[u'gale', u'forc', u'wind', u'wipe', u'edinburgh', u'year', u'parti']
[u'plant', u'close', u'emerg']
[u'govt', u'confisc', u'million', u'crimin', u'asset']
[u'govt', u'defend', u'year', u'public', u'transport', u'measur']
[u'govt', u'push', u'chang', u'health', u'servic']
[u'halliburton', u'lose', u'iraq', u'fuel', u'contract']
[u'high', u'rent', u'blame', u'launceston', u'firm', u'go', u'bust']
[u'indigen', u'communiti', u'griev', u'aunti', u'pass']
[u'indigen', u'health', u'agenc', u'year', u'resolut']
[u'indonesia', u'mark', u'violent', u'year']
[u'ireland', u'work', u'peac', u'leader']
[u'isra', u'soldier', u'arrest', u'shoot', u'british']
[u'israel', u'boost', u'settler', u'number', u'golan', u'minist']
[u'israel', u'deport', u'swedish', u'lawmak', u'report']
[u'jackson', u'face', u'charg', u'manhandl']
[u'jackson', u'interview', u'ethic', u'spotlight']
[u'jamieson', u'gear', u'defend', u'burni', u'wheel']
[u'joker', u'year', u'troubl', u'free', u'polic']
[u'journalist', u'injur', u'baghdad', u'bomb']
[u'koizumi', u'make', u'impromptu', u'shrine', u'visit']
[u'lehmann', u'wont', u'report', u'temper', u'aggress']
[u'loan', u'scheme', u'student', u'opposit']
[u'london', u'await', u'crowd', u'usher']
[u'rescu', u'phillip', u'island', u'fall']
[u'mcrae', u'readi', u'dakar', u'challeng']
[u'medico', u'honour', u'doctor', u'kill', u'avalanch']
[u'methadon', u'kill', u'heroin', u'research']
[u'compani', u'woe', u'toll', u'gympi']
[u'industri', u'hop', u'strong']
[u'mint', u'unveil', u'collector', u'coin']
[u'miss', u'fish', u'trio']
[u'morn', u'pill', u'avail']
[u'mother', u'prais', u'effort', u'croc', u'victim', u'bodi']
[u'musharraf', u'lead', u'pakistan']
[u'music', u'bodi', u'chang', u'hit', u'right', u'note']
[u'nation', u'park', u'bodi', u'consid', u'tourism', u'impact']
[u'newcastl', u'unit', u'blagojev', u'look', u'singapor']
[u'heart', u'bypass', u'method', u'show', u'clog', u'studi']
[u'south', u'wale', u'road', u'toll', u'rise']
[u'jobless', u'claim', u'drop', u'year']
[u'willi', u'nelson', u'song', u'condemn', u'iraq']
[u'bulk', u'bill', u'radiolog', u'servic']
[u'northern', u'tasmania', u'record', u'troubl', u'free', u'year']
[u'search', u'cost', u'taxpay', u'thousand']
[u'resid', u'urg', u'quit']
[u'revel', u'leav', u'worri', u'profession']
[u'polic', u'arrest', u'rowdi', u'celebr']
[u'polic', u'arrest', u'seven', u'parmalat', u'probe', u'widen']
[u'polic', u'face', u'year', u'violenc', u'lennox', u'head']
[u'polic', u'year', u'drink', u'drive', u'arrest']
[u'polic', u'prais', u'revel', u'behaviour', u'despit', u'offic']
[u'polic', u'troop', u'deploy', u'africa', u'capit']
[u'properti', u'boom', u'flinder', u'island']
[u'queensland', u'yearn', u'stabil', u'tripl', u'elect']
[u'razorback', u'victor']
[u'record', u'reveal', u'joh', u'anti', u'terror', u'move']
[u'refuge', u'visa', u'number', u'steadi']
[u'region', u'urg', u'local', u'race', u'meet']
[u'report', u'show', u'worri', u'invad', u'kuwait']
[u'revel', u'flock', u'melbourn', u'year', u'celebr']
[u'revel', u'mark', u'year', u'collect', u'pig']
[u'riotous', u'year', u'festiv', u'kill', u'filipino']
[u'road', u'death', u'mar', u'start']
[u'govt', u'power', u'price', u'review']
[u'industri', u'ask', u'conserv']
[u'secur', u'tight', u'prepar', u'year']
[u'smith', u'race', u'south', u'africa']
[u'space', u'probe', u'mission', u'comet', u'dust']
[u'stirl', u'hop', u'track', u'posit']
[u'streak', u'say', u'zimbabw', u'refresh', u'readi']
[u'swiss', u'build', u'world', u'biggest']
[u'tasmania', u'grind', u'break', u'law', u'effect']
[u'teenag', u'girl', u'year', u'disappear']
[u'teen', u'fall', u'bathurst', u'build', u'firework']
[u'thirteen', u'arrest', u'canberra', u'year', u'event']
[u'thousand', u'hail', u'year', u'celebr']
[u'thousand', u'march', u'hong', u'kong', u'democraci']
[u'kill', u'iraq', u'demonstr']
[u'train', u'death', u'mar', u'celebr']
[u'leagu', u'boss', u'world']
[u'welcom', u'pinochet', u'chilean', u'coup', u'document', u'reveal']
[u'unit', u'blagojev', u'look', u'singapor', u'club']
[u'eas', u'iran', u'sanction']
[u'popul', u'rise', u'million']
[u'rule', u'blanket', u'test']
[u'govt', u'urg', u'focus', u'lower', u'countri', u'road']
[u'polic', u'fewer', u'year', u'arrest']
[u'region', u'urg', u'local', u'race', u'meet']
[u'vic', u'road', u'toll', u'lowest', u'record', u'level']
[u'polic', u'arrest', u'year', u'celebr']
[u'renew', u'bushfir', u'appeal']
[u'waugh', u'back', u'gillespi', u'swansong']
[u'welfar', u'group', u'hop', u'bridg', u'wealth', u'divid']
[u'whitlam', u'document', u'reveal', u'princ', u'wilder']
[u'wilkinson', u'clear', u'shoulder', u'injuri']
[u'woman', u'die', u'southern', u'crash']
[u'averag', u'rain', u'gladston']
[u'acci', u'push', u'wish', u'list', u'govt', u'econom', u'agenda']
[u'aceh', u'year', u'blast', u'toll', u'rise']
[u'prepar', u'moomba', u'crisi', u'supplier']
[u'resid', u'prais', u'save', u'water']
[u'space', u'problem', u'bed', u'process']
[u'chang', u'share', u'transfer']
[u'american', u'dead', u'oman']
[u'arafat', u'meet', u'egyptian', u'envoy', u'fatah', u'mark']
[u'astronom', u'chart', u'milki', u'way', u'alien', u'zone']
[u'aust', u'market', u'begin', u'year', u'flat']
[u'baghdad', u'restaur', u'bomb', u'toll', u'mount']
[u'bali', u'earthquak', u'kill', u'injur']
[u'barcoo', u'shire', u'consid', u'youth', u'facil', u'boost']
[u'brack', u'govt', u'slip', u'poll']
[u'brazil', u'begin', u'fingerprint', u'travel']
[u'british', u'airway', u'advis', u'cancel', u'flight']
[u'bush', u'dismiss', u'thaw', u'iranian', u'tie']
[u'bush', u'say', u'pakistan', u'nuke', u'secur']
[u'busi', u'time', u'hunter', u'ambul', u'worker']
[u'cane', u'toad', u'target', u'pussi', u'hunt']
[u'central', u'boati', u'warn', u'high', u'wind']
[u'child', u'drown', u'spark', u'water', u'safeti', u'warn']
[u'chines', u'firework', u'blast', u'kill']
[u'chines', u'suspect', u'sar', u'case', u'isol']
[u'chippendal', u'refus', u'bail', u'murder', u'charg']
[u'chopper', u'help', u'dous', u'crop', u'blaze']
[u'club', u'record', u'beckon', u'celtic', u'ranger']
[u'colleagu', u'grappl', u'avalanch', u'victim', u'death']
[u'coma', u'comeback', u'shinozuka', u'make', u'win', u'start']
[u'communiti', u'breath', u'life', u'point', u'lonsdal']
[u'cool', u'vest', u'heat', u'worker']
[u'council', u'consid', u'airport', u'rezon']
[u'credit', u'card', u'user', u'warn', u'shop', u'wise']
[u'croc', u'shoot', u'win']
[u'dairi', u'farmer', u'interest', u'parmalat']
[u'darwin', u'adelaid', u'rail', u'line', u'potenti', u'drug', u'rout']
[u'defiant', u'tendulkar', u'give', u'india', u'upper', u'hand']
[u'detent', u'centr', u'escape', u'consid', u'danger']
[u'detent', u'centr', u'plan', u'park']
[u'devonport', u'crash', u'rais', u'tasmanian', u'road', u'toll']
[u'unearth', u'convict', u'ghost', u'tale']
[u'owner', u'warn', u'hare', u'poison']
[u'dokic', u'pull', u'zealand', u'tournament']
[u'domest', u'tourism', u'help', u'gold', u'coast', u'weather', u'tough']
[u'doubt', u'remain', u'western', u'orthopaed', u'servic']
[u'eagleton', u'rejoin', u'newcastl', u'unit', u'grade']
[u'earthquak', u'shake', u'mexico', u'citi']
[u'egypt', u'condemn', u'isra', u'settlement', u'expans']
[u'british', u'tourist', u'kill', u'crash']
[u'challeng', u'wood', u'dubai']
[u'enterpris', u'pakistan', u'hold', u'ace']
[u'ethnic', u'tension', u'flare', u'northern', u'iraq']
[u'export', u'expect', u'strong', u'cattl', u'sale', u'indonesia']
[u'famili', u'feud', u'spark', u'polic', u'arrest']
[u'north', u'cyclon', u'watch']
[u'seiz', u'british', u'airway', u'plane', u'washington']
[u'fear', u'case', u'hurt', u'lamb', u'trade']
[u'feder', u'flood', u'fund', u'flow', u'carnarvon']
[u'govt', u'boost', u'busselton', u'flood', u'fund']
[u'claim', u'armidal', u'storag', u'warehous']
[u'crew', u'battl', u'melt', u'glass', u'leak', u'sydney']
[u'fish', u'industri', u'expect', u'bleak']
[u'teen', u'charg', u'state', u'chase']
[u'french', u'art', u'worker', u'occupi', u'cultur', u'embassi', u'rome']
[u'suppli', u'secur', u'moomba', u'shutdown']
[u'geraldton', u'polic', u'arrest', u'rowdi', u'revel']
[u'grain', u'grower', u'look', u'better']
[u'group', u'take', u'handgun', u'licenc', u'fee']
[u'gunner', u'load', u'histor', u'quest']
[u'relat', u'death', u'half', u'figur', u'report']
[u'gypsi', u'joker', u'expect', u'ride', u'today']
[u'healesvill', u'crash', u'kill', u'paramed']
[u'hong', u'kong', u'street', u'marcher', u'demand', u'democraci']
[u'time', u'western', u'queensland']
[u'howard', u'prais', u'great', u'leader', u'waugh']
[u'howard', u'stay', u'home', u'elect', u'loom']
[u'hundr', u'honour', u'late', u'east', u'timor', u'activist', u'mcnaughtan']
[u'indian', u'cold', u'snap', u'toll', u'kill']
[u'indian', u'govt', u'see', u'delay', u'controversi', u'cabl']
[u'iran', u'earthquak', u'victim', u'muslim', u'prayer']
[u'iraqi', u'civilian', u'die', u'roadsid', u'bomb', u'explos']
[u'isra', u'armi', u'lift', u'blockad', u'jenin']
[u'isra', u'armi', u'lift', u'jenin', u'blockad']
[u'israel', u'limit', u'trade', u'union', u'power']
[u'ivanho', u'dig', u'gold']
[u'king', u'canut', u'trainer', u'hail', u'perth', u'fairytal']
[u'labor', u'pledg', u'slash', u'privat', u'school', u'fund']
[u'landhold', u'rais', u'licens', u'question']
[u'libya', u'deni', u'pressur', u'forc', u'abandon', u'weapon']
[u'lifeguard', u'warn', u'danger', u'gold', u'coast', u'surf']
[u'lightn', u'rob', u'polic', u'communic']
[u'start', u'year', u'southern', u'polic']
[u'court', u'alburi', u'death']
[u'mcgrath', u'fresh', u'injuri', u'doubt']
[u'minnow', u'yeovil', u'hunt', u'liverpool', u'scalp']
[u'miss', u'rescu', u'tread', u'water']
[u'urg', u'hunter', u'imag', u'bulk']
[u'nasa', u'scientist', u'seek', u'stardust']
[u'nauru', u'detain', u'threaten', u'eyelid', u'shut']
[u'nauru', u'hunger', u'strike', u'continu', u'weaken']
[u'nelson', u'defend', u'fund', u'govern', u'school']
[u'ferri', u'launch', u'test', u'voyag', u'million']
[u'blackout', u'household', u'minist']
[u'happi', u'year', u'real', u'name']
[u'north', u'korea', u'authoris', u'nuclear', u'visit', u'report']
[u'norwegian', u'beat', u'sebastian', u'world', u'idol', u'crown']
[u'surgeri', u'injur', u'tindal']
[u'teacher', u'stress', u'claim', u'rocket', u'percent', u'higher']
[u'road', u'toll', u'slight', u'year']
[u'obstetr', u'inquiri', u'add', u'perth', u'hospit']
[u'opposit', u'label', u'govt', u'transport', u'fiasco']
[u'pakistani', u'bowler', u'destroy', u'wellington']
[u'parent', u'happi', u'teacher', u'return', u'cobar']
[u'parmalat', u'australia', u'sale']
[u'pittwat', u'coff', u'fleet', u'readi', u'sail']
[u'polic', u'north', u'west', u'year', u'arrest']
[u'polic', u'probe', u'suspect', u'murder', u'elder', u'woman']
[u'polic', u'warn', u'motorist', u'mobil', u'phone']
[u'pont', u'take', u'mcgilvray', u'medal']
[u'power', u'thump', u'newcastl']
[u'prosecut', u'shock', u'unlicens', u'electr']
[u'prosecutor', u'question', u'parmalat', u'exec']
[u'protest', u'afghan', u'constitut', u'debat']
[u'purfleet', u'face', u'court', u'stab', u'death']
[u'wine', u'industri', u'tell', u'improv', u'safeti']
[u'rain', u'boost', u'ross', u'river', u'virus', u'number']
[u'rain', u'need', u'lift', u'fruit', u'vegi', u'grower']
[u'recov', u'pae', u'plan', u'australian', u'open', u'return']
[u'cross', u'seek', u'blood', u'donat']
[u'review', u'head', u'hop', u'clear', u'power', u'price']
[u'road', u'toll', u'reach', u'holiday', u'period', u'end']
[u'secret', u'british', u'paper', u'reveal', u'fiasco', u'concord']
[u'secur', u'alert', u'shut', u'termin']
[u'secur', u'concern', u'grind', u'mexico', u'flight', u'twice']
[u'aid', u'hunt', u'elder', u'woman', u'killer']
[u'sheep', u'export', u'threaten', u'scare']
[u'skandia', u'reign', u'suprem', u'derwent']
[u'south', u'east', u'farmer', u'face', u'water', u'shortag']
[u'specialist', u'expect', u'return', u'southern']
[u'supplier', u'scrambl', u'replac', u'moomba']
[u'rule', u'like', u'help', u'magic', u'million', u'sale']
[u'tear', u'memori', u'quak', u'victim']
[u'teenag', u'drown', u'help', u'struggl', u'swimmer']
[u'thousand', u'enjoy', u'year', u'race', u'meet', u'celebr']
[u'tremor', u'felt', u'bali']
[u'trucki', u'die', u'crash', u'train']
[u'miss', u'explos', u'tanker']
[u'troop', u'stay', u'iraq', u'minist']
[u'unnam', u'chemic', u'revolutionis', u'termit', u'control']
[u'captur', u'iraqi', u'suspect', u'smuggl', u'foreign']
[u'vandal', u'kill', u'ransack', u'hous']
[u'wagga', u'mayor', u'seek', u'elect']
[u'govt', u'ponder', u'juvenil', u'bail', u'facil']
[u'shire', u'recognis', u'indigen', u'health', u'scheme']
[u'waugh', u'ponder', u'final', u'dilemma']
[u'waugh', u'ponder', u'tricki', u'wicket']
[u'waugh', u'fight', u'hand']
[u'warn', u'ross', u'river', u'virus', u'case', u'rise']
[u'weird', u'wacki', u'reign', u'suprem']
[u'wetland', u'blaze', u'promot', u'growth']
[u'spirit', u'opportun', u'nasa', u'shoot', u'mar']
[u'women', u'domin', u'year', u'prize']
[u'woodchip', u'blaze', u'day', u'extinguish']
[u'woodford', u'festiv', u'wind', u'record', u'crowd']
[u'rescu', u'rough', u'sea', u'roll', u'dive', u'boat']
[u'journalist', u'kill']
[u'activist', u'seek', u'british', u'arrest', u'warrant', u'mugab']
[u'univers', u'place', u'tough']
[u'ambul', u'servic', u'mourn', u'death', u'paramed']
[u'asia', u'trade', u'deal', u'improv', u'india', u'pakistan', u'tie']
[u'australia', u'play', u'hungari', u'open']
[u'author', u'continu', u'search', u'croc', u'victim']
[u'cancel', u'flight', u'amid', u'secur', u'alert']
[u'prepar', u'resum', u'servic']
[u'barthez', u'get', u'ahead', u'marseill', u'switch']
[u'blizzard', u'crippl', u'part']
[u'brazilian', u'champion', u'cruzeiro', u'join', u'hunt', u'rivaldo']
[u'britain', u'crisi', u'plan', u'margaret', u'love', u'marriag']
[u'buchanan', u'aussi', u'sachin']
[u'castaigned', u'downbeat', u'franc', u'return', u'report']
[u'defend', u'wheat', u'grade']
[u'cold', u'weather', u'kill', u'bangladesh']
[u'confus', u'cloud', u'report', u'chines', u'sar', u'patient']
[u'control', u'fear', u'govt', u'ignor', u'safeti', u'concern']
[u'court', u'reject', u'appeal', u'bali', u'bomber', u'accomplic']
[u'croft', u'call', u'time', u'england']
[u'diagnosi', u'sar', u'suspect', u'postpon']
[u'egyptian', u'crash', u'plane', u'head', u'pari']
[u'england', u'prop', u'white', u'miss', u'nation']
[u'offer', u'closer', u'tie', u'libya']
[u'fairytal', u'end', u'escap', u'waugh', u'grasp']
[u'famili', u'dept', u'probe', u'irwin', u'babi', u'croc', u'debut']
[u'fear', u'scan', u'caus', u'harm', u'babi']
[u'fire', u'threaten', u'camp', u'grind']
[u'firework', u'factori', u'close', u'dead', u'blast']
[u'dead', u'miss', u'firework', u'blast']
[u'soldier', u'investig', u'ivori', u'coast']
[u'freez', u'weather', u'threaten', u'iran', u'quak', u'survivor']
[u'german', u'lade', u'record', u'authent']
[u'guerrilla', u'ambush', u'train', u'western', u'iraq']
[u'gypsi', u'joker', u'finish', u'nation']
[u'hawk', u'consign', u'record', u'defeat']
[u'heavi', u'artilleri', u'cannon', u'baghdad']
[u'hewitt', u'play', u'open', u'form']
[u'high', u'rat', u'hurt', u'australian', u'famili']
[u'historian', u'surviv', u'fake', u'obituari']
[u'hope', u'wallabi', u'home', u'reserv']
[u'houllier', u'unconcern', u'oneil', u'rumour']
[u'indian', u'cold', u'snap', u'kill', u'peopl']
[u'indonesian', u'minist', u'report', u'polic']
[u'industri', u'data', u'lift', u'stock']
[u'iranian', u'opposit', u'clash', u'mourner', u'london']
[u'iran', u'plan', u'reconstruct']
[u'iran', u'reject', u'humanitarian', u'mission', u'offici']
[u'iran', u'prosecut', u'build', u'breach']
[u'irwin', u'apologis', u'croc', u'stunt']
[u'isra', u'armi', u'enter', u'jenin', u'hour']
[u'italian', u'tanker', u'rais', u'pollut', u'fear']
[u'kaif', u'rule', u'indian', u'squad']
[u'kippa', u'ring', u'charg', u'murder']
[u'laundromat', u'caus', u'damag']
[u'lesbian', u'regist', u'relationship', u'law']
[u'lifesav', u'rescu', u'swimmer', u'catch']
[u'lull', u'south', u'korean', u'bird', u'outbreak']
[u'malaysian', u'polic', u'alert', u'ahead', u'lunar', u'year']
[u'accus', u'kill', u'father']
[u'charg', u'driver', u'assault']
[u'possess', u'explos', u'materi', u'charg']
[u'ram', u'burgl', u'golf', u'club']
[u'mayor', u'inaugur', u'prove', u'guilti']
[u'middlesex', u'sight', u'kumbl']
[u'miss', u'dead']
[u'moomba', u'shortag', u'week']
[u'motorbik', u'death', u'push', u'holiday', u'road', u'toll']
[u'nalbandian', u'withdraw', u'adelaid']
[u'nasa', u'prais', u'canberra', u'role', u'collect', u'stardust']
[u'nauru', u'hunger', u'striker', u'near', u'death', u'report']
[u'near', u'half', u'russian', u'smoke', u'scientist']
[u'neglig', u'dead', u'china', u'leak', u'report']
[u'charg', u'irwin', u'croc', u'stunt']
[u'govt', u'unsur', u'impact', u'crisi']
[u'nation', u'park', u'boundari', u'widen']
[u'nuke', u'launch', u'nasa', u'long', u'rang', u'mission']
[u'parmalat', u'say', u'audit', u'execut', u'extend', u'leav']
[u'polic', u'appeal', u'wit', u'assault']
[u'polic', u'govt', u'extens']
[u'polic', u'elder', u'woman', u'strangl', u'home']
[u'power', u'cyclon', u'brew', u'samoa']
[u'properti', u'crash', u'possibl', u'warn']
[u'rail', u'death', u'fuel', u'call', u'cross', u'safeti', u'review']
[u'plane', u'crash', u'kill']
[u'rental', u'shortag', u'caus', u'problem', u'tasmania']
[u'resid', u'warn', u'shark', u'swim', u'canal']
[u'road', u'toll', u'top', u'holiday', u'season', u'end']
[u'rudolph', u'end', u'centuri', u'drought', u'west', u'indi']
[u'samoan', u'resid', u'prepar', u'cyclon']
[u'scientist', u'develop', u'termit', u'pesticid']
[u'scientist', u'evid', u'earli', u'arctic', u'dweller']
[u'secur', u'fear', u'grind', u'flight']
[u'servia', u'fretign', u'clinch', u'chaotic', u'dakar', u'second']
[u'kashmir', u'train', u'station', u'shoot']
[u'south', u'asia', u'step', u'closer', u'free', u'trade', u'deal']
[u'spacecraft', u'snap', u'startl', u'pictur', u'comet']
[u'studi', u'find', u'know', u'number']
[u'studi', u'women', u'drug', u'crime', u'link', u'need', u'institut']
[u'styri', u'fire', u'black', u'cap', u'victori']
[u'summer', u'sale', u'loom', u'penniless', u'parma']
[u'tana', u'open', u'bid', u'glori']
[u'teen', u'kill', u'wheel', u'drive', u'accid']
[u'tendulkar', u'laxman', u'spoil', u'waugh', u'parti']
[u'territorian', u'urg', u'address', u'kidney', u'diseas']
[u'kill', u'argentina', u'firework', u'shop', u'explos']
[u'palestinian', u'shoot', u'dead', u'nablus', u'medic']
[u'overcrowd', u'catch', u'near']
[u'union', u'back', u'parmalat', u'australia', u'boss']
[u'armi', u'buy', u'million', u'anthrax', u'shot']
[u'audit', u'firm', u'disown', u'italian', u'parmalat', u'unit']
[u'claim', u'qaeda', u'drug', u'bust', u'persian', u'gulf']
[u'deleg', u'north', u'korea', u'endors', u'bush']
[u'forc', u'conduct', u'raid', u'iraq']
[u'forc', u'launch', u'anti', u'corrupt', u'commiss', u'iraq']
[u'govt', u'defend', u'flight', u'clampdown', u'fighter']
[u'helicopt', u'down', u'iraq']
[u'hold', u'reuter', u'staff', u'near', u'chopper', u'crash', u'iraq']
[u'quarantin', u'herd', u'amid', u'fear']
[u'soldier', u'kill', u'iraq', u'helicopt', u'crash']
[u'soldier', u'kill', u'mortar', u'attack', u'iraq']
[u'club', u'search', u'volunt', u'lifesav']
[u'govt', u'investig', u'foul', u'odour', u'kalgoorli']
[u'world', u'champion', u'wood', u'chopper', u'gather']
[u'rescu', u'dive', u'boat', u'roll']
[u'afghanistan', u'agre', u'constitut']
[u'australia', u'start', u'massiv', u'chase']
[u'australia', u'whitewash', u'hungari', u'perth']
[u'author', u'develop', u'pictur', u'book']
[u'barthez', u'star', u'marseill', u'debut']
[u'battl', u'sar', u'complex', u'expert']
[u'beckham', u'limp', u'real', u'increas', u'lead']
[u'blair', u'land', u'basra', u'meet', u'british', u'troop']
[u'brisban', u'fruit', u'shop', u'rob']
[u'british', u'airway', u'flight', u'take']
[u'british', u'airway', u'refus', u'marshal', u'report']
[u'british', u'singer', u'injur', u'zealand', u'road', u'crash']
[u'burni', u'catch']
[u'bushrang', u'thrash', u'tiger', u'devonport']
[u'govern', u'build', u'build']
[u'canberra', u'help', u'nasa', u'space', u'probe', u'mar', u'touchdown']
[u'celtic', u'firm', u'doom', u'ger', u'titl']
[u'charlton', u'fall', u'giant', u'kill', u'gillingham']
[u'chines', u'archaeologist', u'year', u'oracl']
[u'cold', u'wave', u'kill', u'south', u'asia']
[u'cool', u'chang', u'hit']
[u'crock', u'quick', u'pose', u'problem', u'england']
[u'cyclon', u'warn', u'north', u'coast']
[u'detroit', u'name', u'america', u'fattest', u'citi']
[u'earthquak', u'rock', u'nepal', u'word', u'casualti']
[u'egyptian', u'crash', u'rescuer', u'face', u'canyon', u'current']
[u'eurobodalla', u'council', u'plan', u'measur', u'curb', u'water']
[u'fals', u'alarm', u'close', u'capitol']
[u'want', u'sourc', u'name', u'agent', u'leak', u'case']
[u'fear', u'mount', u'nauru', u'hunger', u'strike', u'stand', u'firm']
[u'kill', u'ancient', u'ethiopia', u'church', u'collaps']
[u'final', u'waugh', u'get']
[u'firefight', u'battl', u'blaze', u'wheatbelt']
[u'firefight', u'treat', u'smoke', u'inhal']
[u'premier', u'corcoran', u'dead']
[u'resuc', u'boat', u'engin', u'fail']
[u'french', u'comfort', u'shock', u'relat']
[u'crisi', u'threaten', u'job']
[u'gavaskar', u'replac', u'kaif', u'india', u'squad']
[u'georgia', u'vote', u'elect', u'leader']
[u'gilli', u'lash', u'boy']
[u'glass', u'compani', u'warn', u'crisi', u'stop', u'product']
[u'greenspan', u'blow', u'econom', u'polici', u'trumpet']
[u'hewitt', u'readi', u'hopman', u'open']
[u'hobbl', u'gayl', u'slam', u'blister', u'centuri', u'windi']
[u'india', u'humbl', u'aussi']
[u'india', u'stick', u'boot']
[u'indonesia', u'introduc', u'visa', u'australian', u'tourist']
[u'irwin', u'intern', u'croc', u'stunt']
[u'isra', u'palestinian', u'expedit', u'face', u'arctic', u'wind']
[u'kingz', u'batter', u'glori', u'vault']
[u'charg', u'deliber', u'light', u'fire']
[u'kill', u'ultralight', u'plane', u'crash']
[u'briton', u'stump', u'chicago', u'music']
[u'mar', u'rover', u'send', u'signal', u'earth']
[u'mission', u'mar', u'readi', u'land']
[u'american', u'consid', u'beef', u'safe', u'poll']
[u'motorcyclist', u'kill', u'lose', u'control', u'bike']
[u'music', u'organis', u'get']
[u'nablus', u'death', u'toll', u'rise']
[u'nicorett', u'complet', u'comeback', u'victori']
[u'injuri', u'nepali', u'earthquak']
[u'nomin', u'resourc', u'develop', u'award', u'open']
[u'fight', u'aid', u'annan']
[u'clash', u'squar']
[u'cultur', u'group', u'award', u'thousand', u'grant']
[u'avalanch', u'funer', u'week']
[u'dead', u'seven', u'wound', u'haiti', u'rebel', u'attack']
[u'kill', u'injur', u'grenad', u'explos']
[u'pacif', u'highway', u'reopen', u'crash']
[u'pakistan', u'arrest', u'musharraf', u'attack']
[u'patel', u'fall', u'india', u'bat']
[u'perth', u'teen', u'hardcourt', u'tournament']
[u'philippin', u'blast', u'kill', u'militari']
[u'pirat', u'pull', u'taipan', u'upset']
[u'polic', u'charg', u'campsit', u'bushfir']
[u'polic', u'continu', u'hunt', u'melbourn', u'gunman']
[u'polic', u'continu', u'mountain', u'search', u'miss']
[u'polic', u'hunt', u'white', u'toyota']
[u'polic', u'investig', u'death', u'north']
[u'polic', u'investig', u'univers']
[u'polic', u'search', u'melbourn', u'gunman']
[u'power', u'quak', u'rattl', u'french', u'pacif', u'territori']
[u'quak', u'survivor', u'rescu', u'iran']
[u'remain', u'bodi', u'recov', u'egypt', u'crash']
[u'rescu', u'worker', u'scour']
[u'road', u'safeti', u'head', u'sadden', u'holiday', u'road', u'toll']
[u'rocker', u'ozzi', u'die', u'twice', u'bike', u'crash']
[u'samoa', u'threat', u'power', u'cyclon', u'near']
[u'senior', u'colombian', u'rebel', u'command', u'seiz', u'ecuador']
[u'skipper', u'capsiz', u'boat', u'face', u'court']
[u'smoke', u'name', u'main', u'caus', u'avoid', u'death']
[u'south', u'africa', u'villier', u'win', u'dakar', u'stage']
[u'south', u'asian', u'leader', u'sign', u'trade', u'deal']
[u'south', u'asia', u'summit', u'open', u'pakistan']
[u'state', u'hold', u'crisi', u'meet']
[u'surf', u'lifesav', u'warn', u'swimmer', u'care']
[u'tassi', u'tast', u'festiv', u'wind']
[u'teacher', u'block', u'tafe', u'increas']
[u'teenag', u'rescu', u'gorg']
[u'tehran', u'rule', u'polit', u'mission', u'iran']
[u'thousand', u'head', u'mumbai', u'anti', u'globalis']
[u'injur', u'accid']
[u'tiger', u'bowl', u'cheapli']
[u'twice', u'cancel', u'british', u'airway', u'flight', u'land']
[u'helicopt', u'add', u'firefight', u'team']
[u'kill', u'separ', u'vehicl', u'rollov']
[u'surviv', u'metr', u'balconi', u'fall']
[u'soldier', u'kick', u'iraqi', u'prison', u'death', u'report']
[u'warn', u'flight', u'disrupt', u'terror']
[u'univers', u'launch', u'music', u'televis', u'channel']
[u'expel', u'cuban', u'diplomat']
[u'rover', u'land', u'mar', u'riski', u'descent']
[u'rover', u'land', u'mar', u'strong', u'signal', u'hear']
[u'troop', u'arrest', u'suspect', u'iraq']
[u'troop', u'kill', u'woman', u'child', u'iraq', u'report']
[u'govt', u'defend', u'decis', u'hazard', u'wast']
[u'win', u'aust', u'richest', u'wood', u'chop', u'prize']
[u'ban', u'egyptian', u'airlin', u'switzerland']
[u'winter', u'guest', u'bird', u'decreas', u'bangladesh', u'lose']
[u'yemen', u'declar', u'port', u'citi', u'aden', u'free', u'landmin']
[u'seek', u'colli', u'river', u'bridg']
[u'pipelin', u'go', u'onlin', u'earli']
[u'agoni', u'continu', u'akhtar']
[u'albani', u'dialysi', u'treatment', u'place']
[u'jazeera', u'air', u'lade', u'tape']
[u'jazeera', u'lade', u'tape', u'refer']
[u'discuss', u'casual', u'worker', u'entitl']
[u'ambul', u'servic', u'defend', u'increas']
[u'angler', u'pluck', u'safeti', u'boat', u'mishap']
[u'annan', u'welcom', u'adopt', u'afghan', u'constitut']
[u'arroyo', u'begin', u'uphil', u'battl', u'elect']
[u'arthur', u'seat', u'chairlift', u'reopen', u'collaps']
[u'australia', u'face', u'massiv', u'final', u'chase']
[u'australian', u'dollar', u'hit', u'high']
[u'author', u'jefferi', u'dead', u'age']
[u'avalanch', u'victim', u'gardner', u'buri', u'today']
[u'bali', u'bomber', u'add', u'sword']
[u'barca', u'slide', u'valencia', u'heat', u'real']
[u'beef', u'industri', u'welcom', u'trade', u'mission', u'asia']
[u'beef', u'outlook', u'good', u'despit', u'pressur']
[u'gun']
[u'properti', u'blaze', u'put', u'hospit']
[u'blair', u'make', u'surpris', u'visit', u'iraq']
[u'bodi', u'discov', u'sydney', u'rubbish']
[u'bomb', u'kill', u'philippin']
[u'boobi', u'trap', u'letter', u'target', u'lawmak']
[u'british', u'scientist', u'refus', u'abandon', u'hope']
[u'britney', u'tie', u'knot', u'tight']
[u'bulk', u'bill', u'dri', u'ballarat']
[u'bunburi', u'nurs', u'home', u'lift', u'standard']
[u'burundi', u'rebel', u'agre', u'peac', u'talk']
[u'bush', u'lobbi', u'champion', u'incent', u'rural', u'home']
[u'busi', u'unabl', u'afford', u'casual', u'entitl', u'plan']
[u'camel', u'graze', u'bushfir', u'threat', u'away']
[u'crash', u'victim', u'releas', u'wreckag']
[u'detail', u'lead', u'polic', u'fenech', u'attack']
[u'plant', u'await', u'moomba', u'restrict']
[u'charlevill', u'leve', u'bank', u'plan']
[u'china', u'confirm', u'sar', u'case']
[u'china', u'deni', u'sar', u'case', u'report']
[u'china', u'blast', u'death', u'toll', u'rise']
[u'civet', u'cull', u'eas', u'china', u'sar', u'fear']
[u'clash', u'erupt', u'isra', u'troop', u'tulkarem']
[u'coalit', u'deni', u'troop', u'blame', u'kill']
[u'cold', u'snap', u'claim', u'live', u'asia']
[u'cooler', u'time', u'forecast', u'north', u'east', u'victoria']
[u'council', u'approv', u'unit', u'develop']
[u'court', u'grant', u'bail', u'attack', u'outsid']
[u'croc', u'look', u'clash']
[u'croc', u'look', u'clash', u'loss', u'perth']
[u'cyclon', u'heta', u'lash', u'samoa']
[u'donat', u'flow', u'famili', u'crash']
[u'dope', u'rife', u'east', u'german', u'footbal', u'historian']
[u'doyl', u'announc', u'marriag', u'breakdown']
[u'drought', u'forc', u'farmer', u'withdraw', u'scheme']
[u'earthquak', u'cost', u'bali', u'million']
[u'earthquak', u'prompt', u'iran', u'capit', u'rethink']
[u'egypt', u'airlin', u'deni', u'safeti', u'issu', u'swiss']
[u'electrolux', u'spar', u'restrict']
[u'emerg', u'land', u'austrian', u'plane', u'munich']
[u'escape', u'incid', u'trigger', u'polic', u'manhunt']
[u'euro', u'hit', u'high', u'dollar']
[u'execut', u'saddam', u'meaningless', u'iraqi', u'govern']
[u'fall', u'glass', u'close', u'exhibit']
[u'fear', u'air', u'leas', u'extens', u'cost']
[u'fenech', u'offer', u'attack', u'rough', u'justic']
[u'fenech', u'stab', u'street', u'attack']
[u'ferguson', u'admit', u'striker']
[u'adelaid', u'care', u'centr', u'forc', u'evacu']
[u'firefight', u'thank', u'camper', u'respons']
[u'franc', u'belgium', u'clinch', u'hopman', u'tie']
[u'french', u'factori', u'shut', u'seven']
[u'french', u'robot', u'dive', u'crash', u'black']
[u'ganguli', u'call']
[u'generous', u'queensland', u'urg', u'continu', u'donat']
[u'georgia', u'elect', u'educ', u'lawyer', u'presid']
[u'giant', u'coach', u'brawl', u'charg']
[u'gippsland', u'record', u'hotter', u'decemb']
[u'good', u'atmospher', u'vajpaye', u'musharraf', u'meet']
[u'hewitt', u'mind']
[u'hewitt', u'mind']
[u'hobart', u'eat', u'summer', u'festiv', u'program']
[u'holiday', u'beatti', u'urg', u'address', u'foster', u'care']
[u'hollywood', u'suffer', u'year']
[u'hope', u'govt', u'agreement', u'bolster', u'pest', u'control']
[u'hors', u'lover', u'jump', u'bega']
[u'weather', u'fuel', u'jump', u'water']
[u'howard', u'hint', u'octob', u'elect']
[u'hundr', u'firebal', u'fall', u'spain']
[u'hurst', u'keep', u'athen', u'dream', u'track']
[u'icebreak', u'final', u'set', u'sail', u'resolv']
[u'import', u'say', u'standard', u'fuel', u'petrol']
[u'india', u'confirm', u'tour', u'pakistan']
[u'india', u'pakistan', u'leader', u'meet', u'time']
[u'india', u'pakistan', u'leader', u'meet', u'domin', u'south']
[u'irwin', u'loco', u'doubt', u'croc', u'stunt']
[u'islam', u'milit', u'arrest', u'isra', u'troop', u'raid']
[u'israel', u'jail', u'conscienti', u'objector']
[u'job', u'threaten', u'crisi']
[u'kangaroo', u'blackout', u'generat', u'anger']
[u'kewel', u'brand', u'cheat']
[u'labor', u'thrash', u'plan', u'releas', u'detaine']
[u'lara', u'centuri', u'mean', u'membership', u'elit', u'group']
[u'liber', u'brand', u'train', u'roll', u'delay', u'outrag']
[u'libya', u'say', u'justif', u'prolong']
[u'lucki', u'charm', u'work', u'mind', u'carrier']
[u'malaysian', u'state', u'enforc', u'islam', u'dress', u'code']
[u'arrest', u'fenech', u'assault']
[u'charg', u'nightclub', u'samurai', u'incid']
[u'crush', u'death']
[u'face', u'murder', u'charg', u'shepparton', u'death']
[u'miner', u'boost', u'kimberley', u'nickel', u'explor']
[u'minist', u'hand', u'elect', u'report']
[u'moomba', u'crisi', u'talk', u'underway']
[u'moomba', u'suppli', u'step']
[u'want', u'croc', u'hunter', u'train', u'name', u'plan', u'derail']
[u'want', u'local', u'focus', u'princ', u'highway']
[u'say', u'crash', u'help', u'injur', u'star']
[u'murder', u'charg', u'lay', u'bodi', u'roadsid']
[u'nasa', u'spirit', u'rover', u'power', u'mar', u'explor']
[u'nauru', u'hunger', u'strike', u'pointless', u'unhcr']
[u'probe', u'post', u'match', u'mele']
[u'nervous', u'beef', u'produc', u'await', u'year', u'sale']
[u'approach', u'stem', u'perth', u'burglari', u'polic']
[u'downgrad', u'santo', u'share', u'dive']
[u'holiday', u'road', u'death', u'south', u'east']
[u'north', u'west', u'shire', u'broadcast']
[u'opposit', u'question', u'sharp', u'rise', u'indigen']
[u'polic', u'abandon', u'search', u'killer', u'croc', u'carcass']
[u'absorb', u'trade', u'wast', u'charg']
[u'opiat', u'oversuppli', u'poppi', u'harvest', u'begin']
[u'palestinian', u'financ', u'minist', u'threaten', u'quit']
[u'parent', u'audit', u'speed', u'camera']
[u'parmalat', u'head', u'reject', u'detain', u'founder', u'offer']
[u'philippin', u'isol', u'suspect', u'sar', u'case']
[u'plan', u'begin', u'colli', u'motorplex', u'race']
[u'plan', u'afoot', u'copper']
[u'plenti', u'offer', u'magic', u'million', u'sale']
[u'polic', u'charg', u'explod', u'firework']
[u'polic', u'defus', u'bomb', u'saudi', u'telephon', u'offic']
[u'polic', u'launch', u'murder', u'investig', u'man', u'death']
[u'polic', u'killer', u'croc', u'search']
[u'polic', u'probe', u'devonport', u'doubl', u'stab']
[u'polic', u'probe', u'fatal', u'crash']
[u'polic', u'seek', u'wit', u'hotel', u'shoot']
[u'polic', u'unhappi', u'drink', u'drive', u'rise']
[u'polic', u'urg', u'karratha', u'public', u'help', u'crack']
[u'polic', u'worri', u'rise', u'speed', u'offenc']
[u'polic', u'drown', u'victim']
[u'agre', u'reward', u'ensur', u'nuke', u'talk', u'north', u'korea']
[u'prep', u'phase', u'common', u'sens', u'opposit']
[u'pressur', u'mount', u'govt', u'wast', u'plant']
[u'boost', u'wag', u'matern', u'leav', u'campaign']
[u'public', u'chemic']
[u'rebel', u'identifi', u'aceh', u'year', u'blast', u'site']
[u'renew', u'call', u'polic', u'rescu', u'boat', u'gulf']
[u'ring', u'extend', u'reign', u'offic']
[u'road', u'crash', u'spark', u'polic', u'warn']
[u'rowley', u'shoal', u'protect', u'plan', u'releas']
[u'saakashvili', u'win', u'elect', u'georgia', u'landslid']
[u'safe', u'assum', u'lade', u'tape', u'genuin']
[u'santo', u'crisi', u'caus', u'share', u'market', u'retreat']
[u'santo', u'share', u'dive', u'wake', u'moomba', u'crisi']
[u'opposit', u'slam', u'busi', u'agenc', u'chang']
[u'scout', u'prepar', u'jambore']
[u'searcher', u'girl', u'abduct', u'townsvill']
[u'seminar', u'target', u'indigen', u'health', u'problem']
[u'ship', u'fume', u'kill', u'coast']
[u'skandia', u'arriv', u'home', u'hero', u'welcom']
[u'skipper', u'face', u'court', u'dive', u'boat', u'roll']
[u'south', u'west', u'victoria', u'enjoy', u'rain']
[u'spain', u'martin', u'win', u'adelaid', u'thriller']
[u'sperm', u'count', u'drop', u'year', u'studi']
[u'spirit', u'send', u'colour', u'postcard', u'mar']
[u'state', u'work', u'minimis', u'crisi', u'fallout']
[u'storm', u'cut', u'power', u'central', u'victoria']
[u'studi', u'warn', u'injuri', u'paintbal', u'game']
[u'sydney', u'drown', u'sussex', u'inlet']
[u'tafe', u'teacher', u'join', u'student', u'rise', u'protest']
[u'taiwan', u'threat', u'qaeda']
[u'manufactur', u'concern', u'wind']
[u'parliament', u'acknowledg', u'tradit']
[u'problem', u'link', u'dokic', u'pull']
[u'territorian', u'urg', u'look', u'kidney']
[u'thousand', u'evacu', u'destroy', u'minh']
[u'thousand', u'brazilian', u'indian', u'invad', u'ranch']
[u'toddler', u'surviv', u'lone', u'bushwalk', u'scrub']
[u'tourist', u'hurt', u'paraglid', u'mishap']
[u'townsvill', u'boomer']
[u'teen', u'escap', u'quambi', u'detent', u'centr']
[u'say', u'terror', u'alert', u'disrupt', u'flight', u'year']
[u'union', u'hope', u'loss', u'minim', u'moomba', u'crisi']
[u'food', u'author', u'face', u'pressur', u'action']
[u'rover', u'beam', u'photo', u'mar', u'land']
[u'step', u'oper', u'parmalat', u'inquiri']
[u'envoy', u'welcom', u'afghan', u'constitut']
[u'vatanen', u'clock', u'dakar', u'stage']
[u'highlight', u'weed', u'danger', u'amidst', u'hors']
[u'lib', u'reject', u'plan', u'toxic', u'wast', u'sit']
[u'north', u'west', u'brace', u'cyclon', u'wind']
[u'policeman', u'join', u'cross', u'border', u'station']
[u'resid', u'await', u'cyclon', u'condit']
[u'road', u'toll', u'alarm', u'polic']
[u'water', u'bore', u'month', u'fulli', u'repair']
[u'waterhous', u'hop', u'danc', u'hero', u'weav', u'magic']
[u'strong', u'zimbabw']
[u'waugh', u'fairytal', u'finish', u'tatter']
[u'waugh', u'defi', u'histori']
[u'wine', u'grower', u'look', u'forward', u'drop']
[u'william', u'bullish', u'ahead', u'launch']
[u'wit', u'say', u'irwin', u'croc', u'photo', u'mislead']
[u'wolv', u'fail', u'bite', u'knight']
[u'woman', u'face', u'court', u'servic', u'station', u'hold']
[u'yacht', u'race', u'winner', u'call', u'harbour', u'upgrad']
[u'zimbabw', u'privat', u'phone', u'compani', u'dismiss']
[u'govt', u'accus', u'neglect', u'elder']
[u'adelaid', u'darwin', u'link', u'win', u'freight', u'contract']
[u'anderson', u'happi', u'deal', u'delay']
[u'anim', u'protect', u'group', u'form', u'polit', u'parti']
[u'arthur', u'advanc', u'adelaid']
[u'aussi', u'begin', u'mammoth', u'chase']
[u'aussi', u'volunt', u'hand', u'athen']
[u'author', u'black', u'egypt']
[u'ball', u'akhtar', u'good', u'news', u'zealand']
[u'beatti', u'get', u'irwin']
[u'booya', u'dive', u'resum', u'season']
[u'british', u'airway', u'flight', u'riyadh', u'depart']
[u'britney', u'spear', u'seek', u'annul', u'vega', u'wed']
[u'build', u'sacr', u'aborigin', u'site', u'criticis']
[u'busi', u'probe', u'stick', u'drill']
[u'busi', u'urg', u'recycl', u'christma', u'card']
[u'famili', u'crisi', u'hotlin', u'creat']
[u'canberra', u'hospit', u'rank']
[u'canberran', u'dirti', u'water', u'suppli']
[u'canberra', u'tafe', u'turn', u'rise']
[u'centrelink', u'glitch', u'send', u'wrong', u'messag', u'famili']
[u'centrelink', u'reject', u'labor', u'glitch', u'claim']
[u'charl', u'want', u'dead', u'diana', u'letter']
[u'china', u'begin', u'cull', u'fight', u'sar']
[u'releas', u'foster', u'care', u'find']
[u'coastwatch', u'stumbl', u'lose', u'world']
[u'committe', u'heart', u'surgeri', u'propos']
[u'communiti', u'faster', u'power', u'failur']
[u'concern', u'irwin', u'stunt', u'affect', u'great', u'southern']
[u'council', u'seek', u'louder', u'voic', u'partnership']
[u'council', u'want', u'camperdown', u'connect']
[u'cricket', u'fever', u'grip', u'india']
[u'croc', u'hunter', u'bite', u'critic']
[u'croc', u'look', u'speedi', u'daniel', u'replac']
[u'curtain', u'fall', u'illustri', u'career']
[u'cyclon', u'spar', u'niue']
[u'cyclon', u'warn', u'cancel']
[u'boost', u'good', u'news', u'industri']
[u'darwin', u'polic', u'crack', u'public', u'drink']
[u'davenport', u'put']
[u'corcoran', u'farewel', u'state', u'funer']
[u'dive', u'compani', u'cancel', u'trip', u'weather']
[u'doctor', u'claim', u'health', u'fail', u'heart']
[u'drier', u'condit', u'expect']
[u'dual', u'kandahar', u'blast', u'kill']
[u'effort', u'continu', u'lake', u'weed']
[u'urg', u'probe', u'woodchip', u'plan']
[u'european', u'target', u'letter', u'bomb', u'campaign']
[u'task', u'forc', u'investig', u'letter', u'bomb']
[u'fan', u'cruis', u'european', u'premier']
[u'feder', u'fund', u'flow', u'flood', u'prevent', u'work']
[u'ferdinand', u'give', u'week', u'appeal']
[u'fergi', u'blast', u'player', u'advanc']
[u'fewer', u'domest', u'violenc', u'case', u'south', u'coast']
[u'fiji', u'rugbi', u'boss', u'face', u'legal', u'challeng']
[u'film', u'name', u'right', u'king', u'england']
[u'firefight', u'chopper', u'head', u'mansfield']
[u'forest', u'blaze', u'near', u'dubbo', u'grow']
[u'french', u'nation', u'kill', u'drive', u'shoot']
[u'futur', u'look', u'bleak', u'tassi', u'frog']
[u'galleri', u'aim', u'reopen', u'space']
[u'galleri', u'close', u'exhibit', u'space']
[u'countri', u'dweller', u'like', u'experi']
[u'gibb', u'kalli', u'centuri', u'protea', u'control']
[u'govt', u'pledg', u'indigen', u'health', u'studi']
[u'govt', u'reject', u'claim', u'age', u'care', u'staff']
[u'group', u'air', u'kosciuszko', u'nation', u'park', u'fear']
[u'gullit', u'come', u'home', u'feyenoord']
[u'harass', u'saudi', u'saddam', u'seek']
[u'health', u'author', u'play', u'china', u'sar', u'case']
[u'heat', u'help', u'break', u'alic', u'record']
[u'heavi', u'snow', u'delay', u'flight', u'vienna']
[u'hope', u'cricket', u'fan', u'rise', u'earli', u'india']
[u'hospit', u'set', u'sight', u'surgeri', u'plan']
[u'hunter', u'shape', u'good', u'tourism', u'season']
[u'auckland', u'daniilidou', u'athen', u'mind']
[u'india', u'pakistan', u'histor', u'kashmir', u'talk']
[u'india', u'pakistan', u'talk', u'welcom']
[u'indigen', u'communiti', u'outrag', u'develop']
[u'indigen', u'drive', u'lesson', u'program', u'save', u'live']
[u'investig', u'stab', u'continu']
[u'expert', u'head', u'iran']
[u'quad', u'celebr', u'birthday']
[u'jail', u'worker', u'releas', u'bail', u'alleg']
[u'kewel', u'hit', u'dive', u'claim']
[u'suit', u'file', u'parmalat', u'inquiri', u'widen']
[u'lehmann', u'return', u'redback']
[u'liverpool', u'draw', u'newcastl']
[u'liverpool', u'qualifi', u'champion', u'leagu']
[u'mackay', u'firm', u'tell', u'arson', u'threat']
[u'magic', u'million', u'barrier', u'draw', u'loom']
[u'major', u'focus', u'wood', u'offer', u'rich', u'promis']
[u'arrest', u'fenech', u'assault']
[u'injur', u'motorcycl', u'accid']
[u'face', u'court', u'child', u'abduct', u'rape', u'charg']
[u'fulham', u'saha']
[u'market', u'hit', u'month', u'high']
[u'mayor', u'think', u'militari', u'tattoo', u'plan', u'cost']
[u'mayor', u'unhappi', u'merger', u'consult', u'time']
[u'medic', u'centr', u'eas', u'doctor', u'shortag']
[u'memori', u'servic', u'adventur', u'hold']
[u'west', u'experi', u'downpour']
[u'monkey', u'magic', u'stamp', u'releas']
[u'montoya', u'pledg', u'crown', u'part', u'gift']
[u'moomba', u'flow', u'increas', u'today']
[u'moomba', u'talk', u'continu']
[u'moomba', u'woe', u'forc', u'abattoir', u'chang', u'sourc']
[u'hospit', u'bed', u'wont', u'help', u'govt']
[u'torr', u'strait', u'dengu', u'fever', u'case']
[u'moroccan', u'soldier', u'keep', u'bride', u'wait', u'year']
[u'nasa', u'eye', u'mar', u'rover', u'stop']
[u'nasa', u'receiv', u'colour', u'pictur', u'snap']
[u'nasa', u'scientist', u'live', u'martian', u'time']
[u'needl', u'free', u'vaccin', u'caus', u'harm', u'good']
[u'fish', u'hook', u'help', u'protect', u'endang']
[u'fund', u'better', u'spend', u'health', u'servic', u'atsic']
[u'jersey', u'legalis', u'stem', u'cell', u'research']
[u'korea', u'propos', u'nuclear', u'freez']
[u'north', u'west', u'heatwav', u'spark']
[u'govt', u'dismiss', u'hospit', u'pressur', u'claim']
[u'firefight', u'hop', u'cooler', u'condit']
[u'duti', u'polic', u'offic', u'injur']
[u'onlin', u'music', u'swap', u'drop', u'wake', u'industri']
[u'pacif', u'island', u'cyclon', u'watch']
[u'passeng', u'escap', u'light', u'plane', u'crash']
[u'peterhansel', u'penalti', u'retain', u'dakar', u'lead']
[u'pilot']
[u'polic', u'expect', u'school', u'vandal', u'arrest']
[u'polic', u'drown', u'victim']
[u'polic', u'probe', u'vandal', u'attack']
[u'polic', u'question', u'shoot']
[u'polic', u'ranger', u'pitch', u'solv', u'tent', u'mysteri']
[u'polic', u'research', u'drink', u'driver']
[u'polic', u'save', u'burn', u'shed']
[u'polic', u'seek', u'wit', u'devonport', u'stab']
[u'polic', u'determin', u'drown', u'victim', u'ident']
[u'polic', u'hunt', u'escap', u'teenag']
[u'polic', u'identifi', u'dead']
[u'portug', u'refus', u'request', u'arm', u'guard']
[u'preselect', u'erupt', u'lib']
[u'princess', u'diana', u'inquest', u'begin', u'tonight']
[u'prison', u'passeng', u'flight', u'risk']
[u'probe', u'launch', u'wineri', u'offic', u'blaze']
[u'public', u'ask', u'hold', u'miss']
[u'public', u'ask', u'save', u'water', u'face', u'fin']
[u'public', u'feedback', u'seek', u'marin', u'park', u'plan']
[u'public', u'urg', u'snake']
[u'pub', u'best', u'mercuri', u'hit']
[u'qanta', u'provid', u'passeng', u'info']
[u'accept', u'child', u'abus', u'report']
[u'govt', u'declin', u'powerlin', u'green', u'plea']
[u'quirindi', u'critic', u'attack']
[u'rain', u'help', u'boost', u'ilfracomb', u'water', u'suppli']
[u'rain', u'wash', u'adelaid', u'hardcourt']
[u'rann', u'criticis', u'irwin', u'action']
[u'davi', u'shoot', u'orlean']
[u'reef', u'fish', u'closur', u'announc']
[u'research', u'seek', u'reduc', u'multipl', u'birth']
[u'rivaldo', u'head', u'cruzeiro', u'agent']
[u'road', u'crash', u'leav', u'hospit']
[u'ross', u'river', u'virus', u'outbreak', u'possibl']
[u'santo', u'await', u'moomba', u'report']
[u'schuettler', u'take', u'easi', u'doha']
[u'schumach', u'william', u'negoti', u'hold']
[u'seed', u'steadi', u'start', u'chennai']
[u'share', u'market', u'ralli', u'tip', u'continu']
[u'sharon', u'vow', u'push', u'separ', u'plan', u'road']
[u'shoalhaven', u'impos', u'plastic']
[u'skinstad', u'take', u'break', u'rugbi']
[u'soil', u'danger', u'build', u'part', u'csiro']
[u'south', u'asia', u'sign', u'free', u'trade', u'pact']
[u'spanish', u'polic', u'track', u'meteorit', u'fragment']
[u'spate', u'accid', u'spark', u'polic', u'road', u'safeti']
[u'stateless', u'asylum', u'seeker', u'appli', u'releas']
[u'strong', u'wind', u'tasman', u'peninsula']
[u'survey', u'find', u'busi', u'servic', u'sector', u'peak']
[u'sweeter', u'grape', u'harvest', u'predict']
[u'sydney', u'apart', u'block', u'evacu']
[u'sydney', u'public', u'hospit', u'cope', u'lib']
[u'tape', u'probabl', u'lade']
[u'parliament', u'hous', u'vandalis']
[u'polic', u'rise']
[u'teacher', u'group', u'reject', u'rise', u'tuition', u'fee']
[u'teenag', u'wildcard', u'upset', u'shaughnessi']
[u'hous', u'build', u'indigen', u'communiti']
[u'ticket', u'sale', u'fall', u'north', u'american']
[u'tourism', u'eas', u'road', u'closur']
[u'trade', u'talk', u'resum', u'sydney']
[u'turkish', u'bomb', u'suspect', u'lade', u'say']
[u'thai', u'policemen', u'kill', u'bomb', u'blast']
[u'troop', u'stay', u'iraq', u'year']
[u'union', u'call', u'hellyer', u'explor']
[u'union', u'claim', u'age', u'care', u'staff', u'level']
[u'unitab', u'prepar', u'takeov']
[u'rais', u'million', u'iran', u'earthquak', u'victim']
[u'worker', u'pull', u'trembl', u'iran']
[u'class', u'action', u'firm', u'file', u'parmalat']
[u'free', u'reuter', u'staff', u'detain', u'iraq']
[u'introduc', u'secur', u'check']
[u'keep', u'libya', u'sanction', u'place']
[u'move', u'reassur', u'beef', u'buyer']
[u'refus', u'north', u'korean', u'nuclear', u'demand']
[u'rout', u'czech', u'perth']
[u'destroy', u'calv', u'probe']
[u'vanston', u'reject', u'nauru', u'attack']
[u'visitor', u'number', u'victoria', u'increas']
[u'govt', u'boost', u'east', u'agricultur', u'tie']
[u'govt', u'reprioritis', u'pipelin', u'plan']
[u'wall', u'street', u'begin', u'year', u'solid', u'gain']
[u'waugh', u'go', u'fight']
[u'waugh', u'go', u'fight']
[u'waugh', u'leav', u'imperish', u'legaci']
[u'waugh', u'near', u'dramat']
[u'waverley', u'consid', u'turn', u'beach', u'shower']
[u'white', u'bengal', u'tigress', u'give', u'birth']
[u'condemn', u'china', u'plan', u'slaughter', u'cat']
[u'warn', u'china', u'cull', u'fear']
[u'wild', u'hors', u'donkey', u'cull', u'program', u'success']
[u'william', u'unveil', u'ferrari', u'beater']
[u'zambian', u'court', u'stay', u'journalist', u'deport', u'order']
[u'kill', u'afghan', u'explos']
[u'abandon', u'catamaran', u'wash', u'ashor']
[u'aceh', u'rebel', u'seek', u'ceas', u'releas', u'hostag']
[u'govt', u'recov', u'cost', u'bushfir']
[u'polic', u'watch', u'festiv', u'visitor']
[u'say', u'fan', u'wont', u'increas', u'secur', u'cost']
[u'agricultur', u'compani', u'boost', u'asset', u'cattl', u'number']
[u'alic', u'spring', u'council', u'help', u'improv', u'namatjira']
[u'alleg', u'fenech', u'attack', u'grant', u'bail']
[u'alleg', u'fenech', u'attack', u'face', u'court']
[u'limit', u'spend', u'elect', u'battl']
[u'criticis', u'hospit']
[u'amrozi', u'appeal', u'reject']
[u'anderson', u'confid', u'free', u'trade', u'agreement']
[u'anderson', u'vow', u'live', u'export', u'chang']
[u'anim', u'activist', u'face', u'court', u'victoria']
[u'arafat', u'sack', u'embattl', u'intellig', u'chief']
[u'arson', u'tamworth', u'blaze']
[u'arthur', u'seat', u'chairlift', u'action']
[u'arthur', u'seat', u'chairlift', u'open']
[u'astronaut', u'fail', u'possibl', u'leak']
[u'astronom', u'sun', u'twin']
[u'team', u'beat', u'zimbabw']
[u'aussi', u'dollar', u'reach', u'high']
[u'aussi', u'reid', u'stun', u'ferreira']
[u'australian', u'record', u'number', u'car']
[u'australian', u'visa', u'free', u'status', u'safe', u'dfat']
[u'australia', u'anglican', u'primat', u'step']
[u'author', u'confid', u'dubbo', u'bushfir']
[u'bank', u'bandit', u'trigger', u'polic', u'manhunt']
[u'beef', u'price', u'skyrocket', u'japan']
[u'field', u'saddl', u'mountain', u'bike', u'race']
[u'ahead', u'transport', u'grain', u'harvest']
[u'bird', u'fear', u'chicken']
[u'birdwatch', u'din', u'rare', u'fli', u'visitor']
[u'blackout', u'consid', u'inevit', u'overhead']
[u'bracken', u'succumb', u'strain']
[u'britain', u'say', u'marshal', u'respons', u'prudent']
[u'bulgarian', u'journalist', u'show', u'secur', u'measur']
[u'bundaberg', u'woman', u'die', u'crash']
[u'bush', u'famili', u'feel', u'board', u'school', u'rise', u'icpa']
[u'bushfir', u'impact', u'restrict', u'nation', u'park', u'access']
[u'busi', u'remind', u'check', u'cool', u'tower']
[u'cairn', u'face', u'court', u'brother', u'murder']
[u'coast', u'offer', u'right', u'develop']
[u'cambodia', u'mark', u'year', u'pot', u'fall']
[u'canadian', u'pupil', u'tell', u'cool', u'snowbal', u'fight']
[u'candid', u'name', u'indigo', u'shire', u'poll']
[u'cane', u'grower', u'chase', u'bigger', u'slice', u'market']
[u'carr', u'defend', u'crime', u'prevent', u'shoot']
[u'carr', u'issu', u'bushfir', u'warn']
[u'cattalini', u'cop', u'match']
[u'cattl', u'station', u'get', u'good', u'soak']
[u'celin', u'dion', u'join', u'hollywood', u'star']
[u'coffe', u'lower', u'diabet', u'risk', u'studi']
[u'communiti', u'accus', u'council', u'jeopardis', u'anim']
[u'concern', u'freight', u'adelaid', u'darwin', u'rail']
[u'contamin', u'sheep', u'fee', u'case', u'adjourn']
[u'councillor', u'call', u'shop', u'reopen']
[u'court', u'adjourn', u'sibl', u'manslaught', u'case']
[u'cyclon', u'isol', u'tini', u'pacif', u'nation']
[u'damag', u'car', u'auction', u'melbourn']
[u'death', u'toll', u'aceh', u'blast', u'rise']
[u'debut', u'centuri', u'smith', u'earn', u'windi', u'draw']
[u'dirti', u'bomb', u'fear', u'alert', u'report']
[u'distinguish', u'armi', u'command', u'dali', u'die']
[u'diver', u'converg', u'hobart', u'olymp', u'trial']
[u'dollar', u'start', u'slip']
[u'dragon', u'sign', u'barrett']
[u'dragon', u'secur', u'barrett', u'year']
[u'esso', u'plant', u'help', u'moomba', u'blast']
[u'europ', u'set', u'date', u'launch', u'comet', u'hunter']
[u'step', u'secur', u'suspect', u'letter']
[u'fame', u'japanes', u'geisha', u'die', u'york', u'citi']
[u'farmer', u'advantag', u'deposit', u'scheme']
[u'south', u'coast', u'lifesav', u'marathon', u'effort']
[u'fenech', u'accus', u'deni', u'attack']
[u'franc', u'deni', u'locat', u'crash', u'black', u'box']
[u'freight', u'firm', u'track', u'adelaid', u'darwin']
[u'french', u'author', u'remov', u'woman', u'bind']
[u'fund', u'help', u'boost', u'gippsland', u'lake', u'health']
[u'futur', u'gympi', u'gold', u'uncertain']
[u'ganguli', u'say', u'australia']
[u'crisi', u'spark', u'nation', u'energi', u'plan']
[u'task', u'forc', u'establish']
[u'good', u'grain', u'harvest', u'forecast', u'rain', u'hold']
[u'govt', u'defend', u'screen', u'cargo', u'ship', u'crew']
[u'grain', u'harvest', u'bring', u'hope', u'struggl', u'farmer']
[u'greek', u'step', u'earli', u'elect']
[u'griffith', u'mayor', u'seek', u'elect']
[u'hackett', u'throw', u'challeng', u'thorp']
[u'harrison', u'estat', u'charg', u'doctor', u'souvenir']
[u'heart', u'attack', u'suspect', u'workplac', u'death']
[u'heart', u'pile', u'miseri', u'dunde']
[u'holiday', u'park', u'put', u'focus', u'environ']
[u'hospit', u'await', u'aircondition', u'respit']
[u'time', u'continu', u'england', u'district']
[u'illeg', u'fish', u'boat', u'catch', u'gulf']
[u'indigen', u'health', u'studi', u'focus', u'infant', u'death']
[u'injuri', u'forc', u'clijster', u'hopman']
[u'iran', u'egypt', u'mend', u'diplomat', u'tie']
[u'iran', u'egypt', u'restor', u'diplomat', u'tie']
[u'isra', u'armi', u'pull', u'nablus']
[u'jockey', u'hop', u'devonport', u'trick']
[u'journalist', u'face', u'record', u'censorship']
[u'kangaroo', u'power']
[u'kimberley', u'artist', u'join', u'perth', u'art', u'festiv']
[u'landown', u'safest', u'insid', u'threat']
[u'lightn', u'strike']
[u'makyb', u'diva', u'aim', u'autumn', u'return']
[u'question', u'alleg', u'assault']
[u'court', u'high', u'speed', u'chase']
[u'masuoka', u'surg', u'dakar', u'lead']
[u'mayor', u'hop', u'offer', u'visitor', u'royal', u'welcom']
[u'medic', u'group', u'want', u'salari', u'cap', u'foreign']
[u'medic', u'ethic', u'media', u'fail', u'rate']
[u'meet', u'oppos', u'local', u'govt', u'merger', u'plan']
[u'mega', u'million', u'lotteri', u'winner', u'show', u'fake', u'claimant']
[u'mening', u'breakthrough', u'lead', u'vaccin']
[u'merredin', u'consid', u'salin', u'fund', u'failur']
[u'milan', u'sink', u'roma', u'nedv', u'keep', u'juve', u'touch']
[u'moomba', u'explos', u'affect', u'price']
[u'air', u'fear', u'place']
[u'renew', u'expand', u'water', u'storag']
[u'say', u'santo', u'foot', u'safeti', u'audit']
[u'mugab', u'meet', u'megawati', u'jakarta']
[u'multi', u'million', u'dollar', u'flash', u'appeal', u'iran']
[u'music', u'lesson', u'fall', u'waysid']
[u'nasa', u'show', u'postcard', u'mar']
[u'nation', u'galleri', u'risk', u'lose', u'prestig']
[u'nation', u'concern', u'predict', u'teacher']
[u'nat', u'heat', u'tower', u'debat']
[u'nigerian', u'accus', u'rape', u'face', u'death', u'stone']
[u'niue', u'count', u'cost', u'savag', u'storm']
[u'excus', u'indigen', u'violenc', u'quartermain']
[u'north', u'korea', u'impos', u'condit', u'nuclear']
[u'norwest', u'energi', u'agre', u'sell', u'cliff', u'head']
[u'singl', u'doubt', u'magic', u'million', u'favourit']
[u'govt', u'count', u'mislead', u'public']
[u'high', u'alert']
[u'swelter', u'temperatur', u'approach']
[u'moot', u'cheaper', u'option']
[u'ombudsman', u'review', u'state', u'care', u'abus', u'claim']
[u'kill', u'snowi', u'mtns', u'boat', u'accid']
[u'pair', u'rescu', u'amid', u'fortescu']
[u'paradorn', u'moya', u'advanc', u'india']
[u'paramlat', u'investig', u'probe', u'bank', u'knowledg']
[u'philippin', u'clear', u'sar', u'case']
[u'plantat', u'pulpwood', u'termin', u'reject', u'rail']
[u'polic', u'appeal', u'wit', u'attempt', u'abduct']
[u'polic', u'appeal', u'wit', u'sydney', u'shoot']
[u'polic', u'appeal', u'public', u'sydney', u'shoot']
[u'polic', u'flag', u'taxi', u'thiev', u'crackdown']
[u'polic', u'investig', u'racehors', u'shoot']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'open', u'marrickvill', u'death', u'case']
[u'polic', u'search', u'clue', u'stab', u'case']
[u'polic', u'seek', u'miss', u'fisherman', u'lake', u'eucumben']
[u'polic', u'speak', u'injur', u'highway']
[u'polic', u'upset', u'school', u'vandal']
[u'powel', u'call', u'unifi', u'iraq']
[u'power', u'soar', u'temperatur']
[u'pratt', u'battl', u'gold', u'coast', u'second', u'round']
[u'prison', u'flee', u'jail', u'famili']
[u'raper', u'call', u'return', u'gold', u'coast', u'team']
[u'renal', u'servic', u'help', u'indigen', u'diabet']
[u'renown', u'photograph', u'francesco', u'scavullo', u'die']
[u'report', u'back', u'cathol', u'bishop']
[u'report', u'show', u'nsws', u'time', u'mum', u'rise']
[u'retail', u'spend', u'send', u'rat']
[u'northern', u'illawarra', u'scheme', u'boost', u'busi']
[u'ruddock', u'enter', u'nauru', u'spat']
[u'consid', u'desecr', u'grave']
[u'govt', u'releas', u'healthi', u'eat', u'guidelin']
[u'schwarzenegg', u'lay', u'budget', u'plan']
[u'scud', u'misfir', u'qatar']
[u'slovak', u'triumph', u'despit', u'hantuchova', u'poor', u'form']
[u'smoker', u'higher', u'breast', u'cancer', u'risk', u'studi']
[u'snake', u'length', u'slipperi', u'subject']
[u'western', u'region', u'heat', u'relief']
[u'speed', u'doom', u'galaxi', u'hint', u'milki', u'way', u'fate']
[u'lanka', u'power', u'struggl', u'invalid', u'truce']
[u'state', u'theatr', u'open', u'sydney']
[u'strong', u'dollar', u'put', u'squeez', u'orang', u'export']
[u'summer', u'heat', u'drive', u'power', u'peak']
[u'suspect', u'admit', u'kill', u'swedish', u'minist']
[u'sydney', u'funer', u'honour', u'defenc', u'leader']
[u'sydney', u'petrol', u'station', u'shoot', u'kill']
[u'syria', u'hint', u'nuclear', u'program']
[u'tamworth', u'enjoy', u'strong', u'holiday', u'tourism']
[u'fire', u'forc', u'camper', u'evacu']
[u'tasmania', u'ferri', u'arriv', u'sydney']
[u'teen', u'driver', u'clear', u'fatal', u'accid']
[u'test', u'great', u'want', u'gold', u'coast', u'team']
[u'dead', u'west', u'bank', u'sweep', u'infuri']
[u'rank', u'cap', u'knockout', u'year', u'katsidi']
[u'trade', u'subdu', u'wall', u'street']
[u'transport', u'boost', u'tourism']
[u'truss', u'consid', u'cormo', u'express', u'find']
[u'face', u'court', u'alleg', u'chase']
[u'injur', u'fresh', u'attack', u'thai', u'polic', u'station']
[u'union', u'highlight', u'age', u'care', u'worker', u'pressur']
[u'union', u'worri', u'moomba', u'safeti']
[u'unlucki', u'robber', u'leav', u'crime', u'scene', u'batter']
[u'consid', u'general', u'iraq']
[u'expert', u'bolster', u'australia', u'john', u'diseas']
[u'say', u'case', u'come', u'canada']
[u'scientist', u'studi', u'comet', u'data']
[u'free', u'hundr', u'iraqi', u'prison']
[u'troop', u'sweep', u'iraqi', u'syrian', u'border', u'camp']
[u'vandal', u'attack', u'communic', u'landmark']
[u'vanston', u'ask', u'disclos', u'brisban', u'detent']
[u'vehicl', u'break', u'spark', u'lock', u'car']
[u'help', u'region', u'centr', u'fight', u'toxic', u'dump', u'plan']
[u'declar', u'buyback', u'success']
[u'look', u'tackl', u'electron', u'crime', u'problem']
[u'villa', u'surg', u'sixth']
[u'visa', u'free', u'visit', u'endang', u'loom', u'rule']
[u'farmer', u'readi', u'live', u'export', u'report']
[u'holiday', u'road', u'death', u'drop']
[u'waugh', u'celebr', u'fit', u'farewel']
[u'wheatbelt', u'farmer', u'drought']
[u'whitbread', u'prize', u'honour', u'children', u'book']
[u'wide', u'record', u'domest', u'violenc', u'order']
[u'woodchip', u'plan', u'spark', u'traffic', u'fear']
[u'zimbabw', u'take', u'team']
[u'activist', u'claim', u'africa', u'farmland']
[u'actor', u'harrison', u'ford', u'wife', u'divorc']
[u'actress', u'kate', u'hudson', u'give', u'birth']
[u'lift', u'restrict']
[u'airlin', u'cockpit', u'need', u'rethink', u'british', u'expert']
[u'alleg', u'rapist', u'murder', u'fail', u'appear', u'court']
[u'analyst', u'tip', u'unemploy', u'drop']
[u'applebi', u'confirm', u'royal', u'melbourn']
[u'competit', u'adopt', u'outback', u'theme']
[u'camp', u'wallabi', u'discuss']
[u'asic', u'releas', u'corpor', u'disclosur', u'progress', u'report']
[u'aussi', u'dakar', u'ralli']
[u'aussi', u'stosur', u'semi', u'final']
[u'australian', u'beef', u'industri', u'welcom', u'japanes']
[u'australian', u'doctor', u'prepar', u'nauru', u'visit']
[u'australian', u'scientist', u'galaxi']
[u'flight', u'depart', u'late', u'fifth']
[u'beagl', u'mar', u'probe', u'lose', u'space']
[u'bjorkman', u'roll', u'roddick']
[u'black', u'cap', u'fall', u'short', u'pakistan']
[u'black', u'south', u'african', u'reclaim', u'farm']
[u'blagojev', u'leav', u'newcastl', u'unit', u'singapor']
[u'brevill', u'inventor', u'die', u'age']
[u'british', u'govt', u'plan', u'power', u'curb', u'terror']
[u'british', u'soldier', u'kill', u'train', u'rang', u'iraq']
[u'broom', u'urg', u'council', u'scandal']
[u'build', u'boom', u'boost', u'cessnock', u'invest']
[u'bullet', u'shoot', u'sink', u'giant']
[u'bush', u'arm', u'elect', u'chest']
[u'bush', u'unveil', u'earn', u'legal', u'immigr', u'chang']
[u'cairn', u'council', u'cut', u'million', u'debt']
[u'better', u'creswick', u'water', u'suppli']
[u'canadian', u'snorkel', u'die', u'whitsunday']
[u'canberra', u'rev', u'nation', u'hotrod', u'festiv']
[u'crash', u'victim', u'succumb', u'injuri']
[u'cash', u'incent', u'bollywood', u'script', u'boredom']
[u'casino', u'chip', u'pave', u'tag', u'bank', u'note']
[u'charder', u'win', u'devonport']
[u'china', u'extend', u'sar', u'cull', u'rat']
[u'china', u'hong', u'kong', u'sar', u'watch']
[u'china', u'dong', u'unit']
[u'china', u'strike', u'martial', u'constitut']
[u'chines', u'newspap', u'come', u'sar', u'report']
[u'chines', u'sar', u'patient', u'releas', u'hospit']
[u'communiti', u'quiz', u'councillor']
[u'convict', u'murder', u'appli', u'chang', u'prison']
[u'countri', u'hospit', u'stop', u'obstetr', u'servic']
[u'court', u'order', u'fulham', u'marlet', u'case']
[u'croc', u'roam', u'street', u'town']
[u'croc', u'sign', u'point', u'guard', u'import']
[u'custom', u'warn', u'spanish', u'letter', u'scam']
[u'demand', u'herbal', u'remedi', u'threaten', u'plant', u'studi']
[u'doctor', u'claim', u'govt', u'block', u'naura', u'visa']
[u'dokic', u'ditch', u'sydney', u'event']
[u'dominion', u'extend', u'gold', u'mine', u'oper']
[u'drop', u'centr', u'cater', u'risk', u'young', u'peopl']
[u'educ', u'continu', u'protect', u'fish', u'stock']
[u'email', u'scam', u'target', u'westpac']
[u'emerg', u'arriv', u'cyclon', u'ravag', u'niue']
[u'player', u'clear', u'rape', u'charg', u'report']
[u'expert', u'warn', u'contact', u'len', u'wearer', u'water']
[u'export', u'queri', u'cormo', u'find']
[u'famili', u'mourn', u'egyptian', u'crash', u'victim']
[u'farmer', u'nation', u'livestock', u'identif']
[u'farmer', u'feder', u'altern', u'wast', u'dump']
[u'south', u'coast', u'lifesav', u'continu', u'win', u'way']
[u'feder', u'urg', u'reject', u'medicar', u'rebat', u'plan']
[u'govt', u'urg', u'help', u'council', u'liabil']
[u'ferdinand', u'win', u'fergi', u'prais']
[u'ferreira', u'say', u'season']
[u'firefight', u'confid', u'contain', u'penrith', u'blaze']
[u'servic', u'bomb', u'blaze', u'north', u'west', u'wollongong']
[u'boy', u'injur', u'vietnam', u'shell']
[u'franc', u'search', u'suspect', u'terrorist']
[u'french', u'locat', u'second', u'black', u'plane']
[u'funer', u'farewel', u'doctor', u'wife', u'children']
[u'gallop', u'announc', u'port', u'upgrad']
[u'genet', u'alarm', u'clock', u'tell', u'plant', u'flower']
[u'gibbon', u'seek', u'latrob', u'campus', u'rethink']
[u'gilchrist', u'aim', u'rack', u'run']
[u'glitch', u'delay', u'mar', u'rover', u'roll']
[u'global', u'warm', u'threaten', u'million', u'speci']
[u'group', u'welcom', u'price', u'hike', u'australian', u'beef']
[u'heart', u'attack', u'kill', u'dominican']
[u'heat', u'news', u'pastur', u'livestock']
[u'case', u'negat', u'china', u'sar', u'alert', u'remain']
[u'hollywood', u'special', u'effect', u'hide', u'surgeri', u'scar']
[u'indian', u'brief', u'cabinet', u'breakthrough']
[u'indonesian', u'polic', u'detain', u'canberra', u'bali']
[u'injur', u'molik', u'hand', u'slovakia', u'victori']
[u'italian', u'strike', u'forc', u'alitalia', u'cancel', u'flight']
[u'japanes', u'team', u'brisban', u'beef', u'talk']
[u'johnson', u'aim', u'peak', u'olymp']
[u'labor', u'get', u'heavi', u'clear', u'fell']
[u'lara', u'reclaim', u'bill']
[u'libya', u'deni', u'secret', u'meet', u'israel']
[u'lonard', u'action']
[u'magic', u'million', u'sale', u'expect', u'live']
[u'arrest', u'attack', u'polic']
[u'hospit', u'multipl', u'stab', u'wound']
[u'plan', u'kidnap', u'test', u'wife', u'love']
[u'mar', u'express', u'listen', u'beagl', u'bark']
[u'melbourn', u'farewel', u'ambul', u'offic']
[u'merit', u'see', u'fund', u'boost', u'drug', u'court', u'scheme']
[u'michael', u'jackson', u'surrend', u'passport']
[u'mini', u'cyclon', u'whip', u'northern']
[u'minist', u'announc', u'sweeten', u'wide', u'sugar']
[u'miracl', u'quak', u'survivor', u'fight', u'life']
[u'miss', u'yachtsmen', u'shelter', u'tasmania']
[u'montoya', u'give', u'thumb']
[u'mortar', u'attack', u'injur', u'troop', u'iraq']
[u'mourner', u'rememb', u'labor', u'premier']
[u'push', u'indigen', u'ownership', u'palm', u'island']
[u'grill', u'blair', u'late', u'hutton', u'inquiri', u'submiss']
[u'music', u'festiv', u'demand', u'spark', u'water', u'pump', u'test']
[u'nauru', u'hunger', u'strike']
[u'nauru', u'invit', u'help', u'detaine', u'care']
[u'chief', u'execut', u'hunter', u'develop', u'bodi']
[u'robot', u'rout', u'egypt', u'crash', u'search']
[u'nightclub', u'curfew', u'trial', u'extend', u'june']
[u'niue', u'treat', u'relief', u'flight']
[u'beer', u'swelter', u'marbl']
[u'need', u'sydney', u'council', u'merger', u'mayor']
[u'plan', u'stop', u'evapor', u'pond', u'trial']
[u'surpris', u'farm', u'deposit', u'figur']
[u'treasur', u'defend', u'land', u'chang']
[u'cattlemen', u'welcom', u'live', u'export', u'chang']
[u'town', u'give', u'cardboard', u'coffin', u'thumb']
[u'olyroo', u'claim', u'gasp']
[u'olyroo', u'claim', u'minut']
[u'dead', u'storm', u'tear', u'southern']
[u'pair', u'face', u'drug', u'charg', u'search']
[u'pakistan', u'launch', u'oper', u'milit']
[u'paradorn', u'quarter', u'final', u'india']
[u'parmalat', u'parent', u'group', u'declar', u'insolv']
[u'parramatta', u'prove', u'power', u'unit']
[u'patio', u'sink', u'archaeologist', u'vike', u'hop']
[u'peru', u'flood', u'kill', u'leav', u'homeless']
[u'plan', u'help', u'reduc', u'alcohol', u'relat', u'violenc']
[u'court', u'delay', u'decis']
[u'court', u'rule', u'saga']
[u'polic', u'crack', u'armidal', u'repeat', u'offend']
[u'polic', u'hunt', u'attack', u'alic', u'assault']
[u'polic', u'kill', u'lake', u'drown']
[u'polic', u'unhappi', u'west', u'road', u'death']
[u'postcard', u'mail', u'final', u'reach']
[u'protest', u'kill', u'australian', u'indonesia']
[u'punter', u'back', u'aussi', u'lift']
[u'qanta', u'marshal', u'talk', u'continu']
[u'confid', u'alleg', u'offend']
[u'rafter', u'return', u'doubl', u'match']
[u'ranieri', u'get', u'russian', u'grill']
[u'registr', u'problem', u'delay', u'afghan', u'elect']
[u'reid', u'adelaid']
[u'reid', u'rusedski', u'adelaid']
[u'report', u'say', u'rivkin', u'sick']
[u'report', u'highlight', u'detent', u'centr', u'riot', u'cost']
[u'resid', u'upset', u'leasehold', u'offer', u'timefram']
[u'resourc', u'sector', u'weigh', u'market']
[u'roaster', u'planet', u'warm']
[u'saboteur', u'destroy', u'kirkuk', u'pipelin']
[u'safin', u'secur', u'russia']
[u'santo', u'say', u'moomba', u'plant', u'track', u'march']
[u'opposit', u'suggest', u'escap', u'plan', u'worker']
[u'search', u'underway', u'year', u'old', u'miss', u'bass']
[u'second', u'string', u'real', u'draw', u'eibar']
[u'secur', u'boost', u'sydney', u'opera', u'hous']
[u'concern', u'miss', u'year']
[u'busi', u'storm', u'lash', u'upper', u'hunter']
[u'seven', u'draw', u'pit', u'australia', u'england']
[u'shire', u'seek', u'airstrip', u'firefight', u'plan']
[u'marshal', u'talk', u'continu']
[u'smoke', u'rat', u'increas', u'slowli']
[u'spotlight', u'shin', u'grace', u'bros', u'build']
[u'stosur', u'move', u'women', u'hardcourt', u'quarter', u'final']
[u'stosur', u'secur', u'quarter', u'final', u'berth']
[u'stosur', u'semi']
[u'strong', u'dollar', u'take', u'toll', u'queensland', u'farmer']
[u'studi', u'suggest', u'screen', u'parent', u'adhd', u'children']
[u'suarez', u'daniilidou', u'march', u'auckland']
[u'taliban', u'apologis', u'kandahar', u'blast', u'mistak']
[u'meatwork', u'live', u'export', u'chang']
[u'temperatur', u'respit', u'western', u'queensland']
[u'terror', u'trial', u'begin', u'kenya']
[u'thailand', u'link', u'blast']
[u'tight', u'import', u'rule', u'affect', u'small', u'winemak']
[u'toilet', u'paper', u'return', u'tokyo', u'subway']
[u'offici', u'head', u'singapor', u'malaysia']
[u'train', u'mishap', u'put', u'ricciuto', u'knife']
[u'tremor', u'iran', u'maximum', u'alert']
[u'tuckey', u'outlin', u'prefer', u'pipelin', u'rout']
[u'pacif', u'highway', u'crash']
[u'union', u'doesnt', u'want', u'privat', u'jail']
[u'union', u'posit', u'austin', u'administr']
[u'unit', u'pull', u'clear', u'titl', u'rival', u'stumbl']
[u'ask', u'court', u'rule', u'enemi', u'combat']
[u'call', u'iraq', u'rebuild', u'tender']
[u'dollar', u'pull', u'grind']
[u'journalist', u'defi', u'court', u'order', u'reveal', u'sourc']
[u'lotteri', u'loser', u'press', u'claim', u'court']
[u'scientist', u'assembl', u'honeybe', u'genom']
[u'soldier', u'die', u'iraq', u'mortar', u'attack']
[u'govt', u'aim', u'prais', u'bendigo', u'owner']
[u'govt', u'remain', u'upbeat', u'southern']
[u'govt', u'upbeat', u'resourc', u'agreement']
[u'water', u'restrict', u'possibl', u'clarenc', u'valley']
[u'watt', u'jackson', u'film', u'critic', u'approv']
[u'waugh', u'committ', u'replac']
[u'weather', u'concern', u'poppi', u'grower']
[u'weather', u'turn', u'favour', u'forest', u'firefight']
[u'wisher', u'urg', u'charl', u'chin']
[u'werribe', u'farmer', u'govt', u'water', u'deal']
[u'opera', u'hard', u'follow']
[u'wider', u'abus', u'inquiri', u'possibl']
[u'william', u'welcom', u'control', u'port', u'hinchinbrook', u'work']
[u'woman', u'search', u'sign', u'love']
[u'wood', u'look', u'posit', u'start']
[u'year', u'tintin', u'set', u'cash', u'till', u'ring']
[u'want', u'grape', u'pest', u'free']
[u'airbag', u'delay', u'nasa', u'mar', u'explor', u'drive']
[u'attack', u'dayer']
[u'alic', u'civic', u'centr', u'honour', u'game', u'athlet']
[u'applebi', u'surg', u'shoot', u'lead', u'tour', u'open']
[u'artist', u'fin', u'decad', u'drink', u'drive', u'charg']
[u'aussi', u'triumph', u'thriller']
[u'australian', u'team', u'go', u'niue']
[u'australia', u'hopman']
[u'aust', u'eas', u'impact', u'japan', u'beef']
[u'author', u'probe', u'space', u'breach']
[u'baghdad', u'hotel', u'grenad']
[u'beckham', u'madrid', u'face', u'real', u'sociedad']
[u'belgium', u'celebr', u'turn']
[u'bertolucci', u'hail', u'cinema', u'auteur']
[u'blood', u'protein', u'warn', u'miscarriag', u'risk']
[u'blue']
[u'blue', u'lunch']
[u'bomb', u'prank', u'caus', u'tokyo', u'base', u'evacu']
[u'bremer', u'look', u'renew', u'energi']
[u'brisban', u'run', u'braveri', u'award']
[u'britain', u'list', u'airlin', u'ban', u'sky']
[u'bunburi', u'play', u'terror', u'threat', u'amidst', u'port']
[u'bush', u'expect', u'announc', u'space', u'mission']
[u'bushrang', u'newcastl']
[u'cabcharg', u'consid', u'buy', u'cashcard']
[u'chang', u'anim', u'law', u'vicious']
[u'canberra', u'expens', u'rent']
[u'keep', u'market', u'afloat']
[u'celebratori', u'marque', u'destroy', u'wind']
[u'chanc', u'slip', u'hill']
[u'china', u'embarrass']
[u'china', u'monitor', u'rail', u'passeng', u'sar']
[u'claim', u'age', u'care', u'facil', u'close', u'wake']
[u'claim', u'mount', u'stromlo', u'insur', u'refus']
[u'compani', u'fin', u'workplac', u'breach']
[u'cooler', u'weather', u'help', u'firefight', u'control', u'forest']
[u'corrupt', u'scandal', u'claim', u'south', u'korea', u'presid']
[u'croc', u'test', u'theori', u'pirat']
[u'daniilidou', u'giantkil', u'promis', u'classic']
[u'darwin', u'brace', u'predict', u'record']
[u'deficit', u'rural', u'export', u'drop']
[u'diamond', u'olymp', u'shoot']
[u'dirti', u'water', u'return', u'normal']
[u'dive', u'dollar', u'push', u'australian', u'currenc']
[u'doctor', u'govt', u'fund', u'nauru', u'trip']
[u'dodson', u'head', u'kimberley', u'develop', u'commiss']
[u'doubt', u'remain', u'intern', u'school']
[u'downer', u'pledg', u'send', u'offici', u'look', u'naurus']
[u'give', u'birth', u'matern', u'leav', u'offer']
[u'eighteen', u'dead', u'massacr', u'colombia']
[u'elvi', u'imperson', u'claim', u'world', u'record', u'rock']
[u'tumbi', u'jockey', u'club']
[u'falluja', u'helicopt', u'crash', u'kill', u'soldier']
[u'famili', u'incent', u'work', u'harder', u'labor']
[u'farmer', u'group', u'back', u'process', u'industri']
[u'farmer', u'group', u'think', u'fund', u'right', u'track']
[u'farmer', u'urg', u'prepar', u'drought']
[u'farmer', u'want', u'forestri', u'sector', u'share', u'water', u'cost']
[u'feasibl', u'studi', u'launch', u'pulp']
[u'govt', u'consid', u'month', u'port', u'closur']
[u'figur', u'drought', u'stricken']
[u'firefight', u'bolster', u'effort', u'quell', u'south', u'coast']
[u'firefight', u'monitor', u'spot']
[u'firefight', u'walk', u'suicid', u'prevent']
[u'florida', u'compani', u'win', u'iraqi', u'media', u'contract']
[u'rann', u'advisor', u'front', u'court']
[u'dead', u'girl', u'miss']
[u'friend', u'star', u'courteney', u'pregnant']
[u'funer', u'mountain', u'adventur', u'hold']
[u'seal', u'captur', u'near', u'public', u'toilet']
[u'georgia', u'elect', u'fresh', u'parliament', u'march']
[u'govt', u'pledg', u'iran', u'quak', u'relief']
[u'govt', u'plug', u'australian', u'beef', u'japanes', u'deleg']
[u'govt', u'wont', u'doctor', u'nauru', u'trip']
[u'gunner', u'face', u'test', u'nerv', u'unit', u'pile']
[u'high', u'temp', u'push', u'tamworth', u'water']
[u'hong', u'kong', u'group', u'sink', u'sydney', u'coal']
[u'hubbl', u'make', u'mosaic', u'galaxi']
[u'incorrect', u'label', u'babi', u'food', u'brand', u'recal']
[u'injur', u'molik', u'play', u'final']
[u'iraqi', u'danc', u'prison', u'free']
[u'iraq', u'mosqu', u'bomb', u'kill']
[u'israel', u'bring', u'ethiopian', u'jew', u'home']
[u'japan', u'flag', u'humanitarian', u'troop', u'mission']
[u'journalist', u'send', u'jail', u'call', u'parliament']
[u'judg', u'block', u'documentari', u'moham', u'fay']
[u'king', u'spot']
[u'labor', u'demand', u'govt', u'urgent', u'releas', u'banana', u'import']
[u'labor', u'forest', u'plan', u'breach', u'minist']
[u'lake', u'hume', u'record', u'alga', u'woe']
[u'languag', u'friend', u'influenti']
[u'leak', u'fear', u'subsid', u'pressur', u'stabilis']
[u'lebanes', u'girl', u'march', u'french', u'scarf']
[u'lethal', u'leisel', u'set', u'australian', u'mark']
[u'libya', u'sign', u'bomb', u'compens', u'deal']
[u'seek', u'rail', u'cost', u'live', u'answer']
[u'llodra', u'reid', u'crash', u'adelaid']
[u'locust', u'spray', u'farmer', u'urg']
[u'love', u'put', u'bull']
[u'cigarett', u'fail', u'cancer', u'risk']
[u'loyalti', u'undivid', u'perugia', u'look']
[u'magic', u'million', u'sale', u'reach', u'magic', u'number']
[u'crush', u'accid', u'remain', u'hospit']
[u'paddl', u'pedal', u'rais', u'cancer', u'awar']
[u'market', u'watch', u'dollar', u'dive']
[u'masuoka', u'give', u'dakar']
[u'million', u'dollar', u'deal', u'navi', u'boost', u'vic']
[u'mix', u'respons', u'like', u'mussel', u'plan']
[u'molik', u'injuri', u'kill', u'hopman', u'dream']
[u'molik', u'final']
[u'moya', u'surviv', u'scare', u'indian', u'open']
[u'renew', u'call', u'causeway', u'revamp']
[u'nat', u'want', u'region', u'plan', u'detail']
[u'neilsen', u'lead', u'king']
[u'bushfir', u'detect', u'tower', u'unveil']
[u'chopper', u'crash', u'iraq']
[u'soldier', u'dead', u'militari', u'helicopt', u'shoot']
[u'place', u'mallett', u'south', u'africa', u'shortlist']
[u'north', u'west', u'seek', u'reticul']
[u'drug', u'accus', u'allow', u'interst', u'treatment']
[u'compani', u'share', u'resum', u'trade']
[u'opposit', u'seek', u'save', u'sydney', u'fig']
[u'pakistan', u'launch', u'attack', u'hunt', u'qaeda']
[u'palestinian', u'nation', u'state', u'quri']
[u'parti', u'push', u'promot', u'polici']
[u'plan', u'afoot', u'region', u'port', u'expans']
[u'court', u'halt', u'swear']
[u'polic', u'interview', u'stab']
[u'polic', u'investig', u'geelong', u'stab']
[u'polic', u'probe', u'drive', u'shoot', u'outsid', u'recept']
[u'polic', u'seek', u'help', u'solv', u'explos', u'incid']
[u'polic', u'warn', u'smoker', u'cigarett', u'butt', u'penalti']
[u'polic', u'road', u'crash', u'victim']
[u'polish', u'diver', u'probe', u'give', u'fish', u'champagn']
[u'politician', u'argu', u'univers', u'place']
[u'pont', u'clear', u'play']
[u'poop', u'penguin', u'faecal', u'attract']
[u'health', u'dept', u'accus', u'bulli']
[u'live', u'export', u'industri', u'hail', u'chang', u'wari']
[u'queen', u'mari', u'get', u'royal', u'bless']
[u'rafter', u'lose', u'comeback', u'match']
[u'rain', u'fall', u'central', u'predict']
[u'reinforc', u'tackl', u'sydney']
[u'research', u'hope', u'breed', u'dead', u'stinger']
[u'return', u'dutch', u'master', u'brighten', u'pictur']
[u'roddick', u'conqueror', u'beat', u'henman', u'go']
[u'roger', u'langer', u'guid', u'victori']
[u'rusedski', u'return', u'posit', u'drug', u'test']
[u'rusedski', u'play', u'posit', u'drug', u'test']
[u'farmer', u'group', u'disappoint', u'live', u'export']
[u'govt', u'hire', u'independ', u'expert', u'overse', u'moomba']
[u'scientist', u'warn', u'potenti', u'nanotech', u'health', u'risk']
[u'scrap', u'metal', u'yard', u'ablaz', u'melbourn']
[u'shire', u'wari', u'protocol', u'chang']
[u'korea', u'fear', u'attack', u'south', u'east', u'asian', u'interest']
[u'steril', u'fruit', u'fli', u'erad', u'problem']
[u'storm', u'power', u'central', u'resid']
[u'strachan', u'quit', u'southampton']
[u'sudanes', u'celebr', u'wealth', u'share', u'deal']
[u'surfboat', u'marathon', u'continu', u'despit', u'hypothermia']
[u'tafe', u'student', u'angri', u'teacher', u'action', u'cut']
[u'tafe', u'teacher', u'stand', u'firm', u'plan', u'industri']
[u'tait', u'spree', u'lead', u'redback', u'victori']
[u'tiger', u'collaps', u'adelaid']
[u'tough', u'time', u'predict', u'lamb', u'industri']
[u'doctor', u'beatl', u'extend', u'peac']
[u'union', u'negoti', u'nurs', u'cut']
[u'cargo', u'plane', u'missil', u'baghdad', u'land']
[u'exagger', u'iraqi', u'weapon', u'threat', u'report']
[u'hold', u'firm', u'north', u'korea']
[u'keep', u'silicon', u'breast', u'implant', u'sale']
[u'obes', u'epidem', u'mean', u'disabl', u'report']
[u'play', u'withdraw', u'iraq', u'weapon', u'team']
[u'soldier', u'sweep', u'saddam', u'stronghold']
[u'vampir', u'robber', u'plan', u'bite', u'dust']
[u'vandal', u'destroy', u'endang', u'bird', u'breed', u'site']
[u'vesta', u'seek', u'renew', u'energi', u'scheme', u'extens']
[u'galleri', u'exhibit', u'space', u'reopen']
[u'victorian', u'ambul', u'offic', u'mourn']
[u'busi', u'leader', u'pleas', u'broom', u'sydney']
[u'whitak', u'name', u'captain', u'waratah']
[u'winter', u'ill', u'caus', u'sar', u'scar']
[u'winter', u'live', u'export', u'halt', u'destroy', u'industri']
[u'wishart', u'seri']
[u'wollongong', u'polic', u'raid', u'cannabi', u'plantat']
[u'woman', u'face', u'bigami', u'charg', u'victoria']
[u'world', u'fall', u'short', u'child', u'health', u'target']
[u'yeat', u'studi', u'urg', u'toler', u'brilliant']
[u'yeppoon', u'griev', u'loss', u'mother', u'children']
[u'look', u'declar', u'free', u'grape']
[u'transfer', u'repeat', u'teen', u'offend']
[u'annan', u'seek', u'peac', u'keeper', u'ivori', u'coast']
[u'arnberg', u'moss', u'steer', u'vic', u'lunch']
[u'asylum', u'seeker', u'launch', u'hunger', u'strike', u'indonesia']
[u'kill', u'philippin', u'attack']
[u'aussi', u'dive', u'champ', u'hobart']
[u'australian', u'team', u'enrout', u'niue']
[u'reconstruct', u'cost', u'billion']
[u'barca', u'give', u'ahead', u'david', u'talk']
[u'suspend', u'talkshow', u'anti', u'arab', u'outburst']
[u'birdi', u'blitz', u'earn', u'singh', u'halfway', u'lead']
[u'black', u'philippin', u'nazaren', u'process']
[u'blake', u'davenport', u'lead', u'hopman', u'glori']
[u'blue', u'dismiss', u'elliott']
[u'blue', u'lose', u'late', u'wicket', u'newcastl']
[u'brisban', u'bullet']
[u'britain', u'back', u'hong', u'kong', u'peopl', u'democraci', u'move']
[u'british', u'fish', u'chip', u'poisson', u'frite']
[u'british', u'polic', u'doubt', u'french', u'diana', u'evid', u'report']
[u'british', u'worker', u'tell', u'chat']
[u'briton', u'plead', u'guilti', u'terror', u'charg']
[u'briton', u'hold', u'guantanamo', u'see', u'home', u'soon']
[u'bush', u'advisor', u'defend', u'iraq', u'weapon', u'claim']
[u'bushfir', u'spark', u'call', u'unexplod', u'ordnanc']
[u'bush', u'look', u'mar', u'elect', u'year']
[u'asic', u'regul', u'properti', u'invest']
[u'canada', u'test', u'diseas']
[u'bear', u'coupl', u'reunit', u'berlin']
[u'celebr', u'alic', u'darwin', u'train', u'debut']
[u'chappel', u'warn', u'tearaway']
[u'checkpoint', u'charli', u'museum', u'founder', u'dead']
[u'claim', u'saddam', u'tri', u'month']
[u'commiss', u'order', u'ship', u'worker', u'strike']
[u'communiti', u'benefit', u'solar', u'power', u'plant']
[u'court', u'bar', u'polic', u'interfer', u'zimbabwean']
[u'crash', u'plan', u'fuselag', u'probabl', u'intact', u'egyptian']
[u'crew', u'battl', u'wwii', u'ammo', u'dump']
[u'cricket', u'legend', u'call', u'tasmania', u'home']
[u'croc', u'expert', u'want', u'govt', u'approv', u'safari', u'hunt']
[u'csiro', u'job', u'mat', u'scandal']
[u'cyprus', u'armi', u'embarrass', u'plan', u'dump']
[u'daniilidou', u'success', u'defend', u'auckland', u'titl']
[u'niro', u'scorses', u'write', u'joint', u'memoir']
[u'develop', u'lodg', u'coomera', u'master', u'plan']
[u'doctor', u'sue', u'harrison', u'famili', u'quit', u'hospit']
[u'dope', u'chief', u'cast', u'doubt', u'rusedski', u'test']
[u'drop', u'nasdaq', u'head', u'sixth', u'gain']
[u'factori', u'damag', u'explos', u'northern', u'tasmania']
[u'fals', u'lotteri', u'claimant', u'charg', u'crime']
[u'feder', u'hotel', u'expand', u'tasmanian', u'branch']
[u'figo', u'fire', u'long', u'time', u'agent']
[u'crew', u'battl', u'contain', u'sydney', u'blaze']
[u'firefight', u'prepar', u'battl', u'blaze']
[u'kill', u'philippin', u'communist', u'attack']
[u'flash', u'flood', u'kill', u'iran']
[u'flash', u'flood', u'kill', u'iran']
[u'fleme', u'seal', u'kiwi']
[u'south', u'vietnames', u'premier', u'head', u'home']
[u'offici', u'say', u'bush', u'blind']
[u'french', u'journalist', u'suspend', u'jail', u'term']
[u'french', u'journalist', u'sentenc', u'month', u'jail']
[u'fund', u'seek', u'indigen', u'juvenil', u'program']
[u'fund', u'technic', u'hurdl', u'rais', u'bush', u'space']
[u'seal', u'return', u'home']
[u'gayl', u'hit', u'whirlwind', u'windi', u'stutter']
[u'good', u'weather', u'eas', u'shortag']
[u'govt', u'criticis', u'inact', u'hick']
[u'govt', u'deni', u'hurt', u'battler']
[u'grenad', u'throw', u'coalit', u'forc', u'iraq']
[u'henman', u'blow', u'break', u'lead', u'exit', u'qatar']
[u'holiday', u'home', u'contribut', u'hous', u'problem']
[u'homeswest', u'see', u'need', u'water', u'fund']
[u'hrbati', u'llodra', u'book', u'adelaid', u'final', u'showdown']
[u'scapegoat', u'say', u'angri', u'rusedski']
[u'india', u'seamer', u'bhandari']
[u'indonesian', u'muslim', u'group', u'urg', u'franc', u'revok']
[u'iran', u'eas', u'internet', u'access', u'restrict']
[u'judg', u'order', u'enron', u'trial', u'ahead']
[u'karzai', u'say', u'afghan', u'presidenti']
[u'latham', u'welcom', u'railway', u'open']
[u'lehmann', u'phillip', u'charg']
[u'liverpool', u'dream', u'come', u'true', u'jone']
[u'malaysia', u'thailand', u'step', u'border', u'patrol']
[u'collaps', u'abseil']
[u'die', u'crash', u'power', u'pole']
[u'kill', u'collis']
[u'man', u'licenc', u'suspend', u'care', u'centr', u'crash']
[u'marijuana', u'buzz', u'link', u'runner', u'high', u'studi']
[u'masuoka', u'win', u'ninth', u'stage', u'mali', u'leg', u'cancel']
[u'merri', u'christma', u'robberi', u'warn', u'shotgun']
[u'michael', u'jackson', u'leas', u'neverland', u'ranch']
[u'miller', u'sign', u'manchest', u'unit']
[u'motogp', u'start', u'grid', u'trim']
[u'mountain', u'king', u'focus', u'seventh', u'crown']
[u'moya', u'paradorn', u'edg', u'closer', u'indian', u'final']
[u'govern', u'group', u'discuss', u'report']
[u'special', u'favour', u'diamond']
[u'health', u'issu', u'measl', u'warn']
[u'ask', u'commonwealth', u'croc', u'hunt', u'approv']
[u'korea', u'show', u'nuclear', u'deterr', u'forc']
[u'mar']
[u'oust', u'georgian', u'presid', u'bank', u'account']
[u'owen', u'start', u'villa']
[u'parmalat', u'investig', u'raid', u'bank', u'america']
[u'persist', u'wind', u'sydney', u'bushfir']
[u'player', u'sale', u'wont', u'affect', u'team', u'parma', u'coach']
[u'poland', u'midnight', u'sale', u'real', u'riot']
[u'polic', u'diver', u'recov', u'bodi', u'lake']
[u'polic', u'investig', u'molotov', u'cocktail', u'attack']
[u'polic', u'investig', u'molotov', u'cocktail', u'explos']
[u'polic', u'launch', u'probe', u'babi', u'church']
[u'polic', u'question', u'pair', u'shoot']
[u'polic', u'suspect', u'bomb', u'sydney', u'explos']
[u'pont', u'prais', u'australia', u'field']
[u'press', u'right', u'group', u'call', u'releas', u'iranian']
[u'qanta', u'enforc', u'toilet', u'train']
[u'govt', u'quiet', u'health', u'furor']
[u'polic', u'probe', u'suspici', u'death']
[u'polic', u'search', u'hous', u'murder', u'investig']
[u'razzaq', u'rule', u'pakistan', u'post']
[u'rebel', u'philippin', u'power', u'plant']
[u'card', u'repriev', u'diouf']
[u'cross', u'push', u'saddam', u'visit']
[u'remot', u'indigen', u'communiti', u'gain', u'health', u'fund']
[u'ronaldo', u'dismiss', u'rumour', u'london', u'trip']
[u'russia', u'hunt', u'leak', u'space', u'station']
[u'saddam', u'prison', u'pentagon']
[u'saddam', u'status', u'legal', u'accept', u'icrc']
[u'salmon', u'farmer', u'face', u'upstream', u'battl', u'cancer']
[u'saudi', u'indict', u'support', u'terror']
[u'serena', u'australian', u'open']
[u'spain', u'shock', u'kookaburra', u'malaysia']
[u'spirit', u'test', u'mar', u'temperatur']
[u'strong', u'interst', u'tourism', u'predict', u'continu']
[u'sudden', u'ill', u'kill', u'muslim', u'brotherhood', u'leader']
[u'sugiyama', u'win', u'gold', u'coast', u'event']
[u'swimmer', u'world', u'biggest', u'organis', u'ocean']
[u'swiss', u'arrest', u'riyadh', u'bomb']
[u'sydney', u'blaze', u'contain']
[u'sydney', u'bushfir', u'control']
[u'sydney', u'polic', u'question', u'explos']
[u'syria', u'appeal', u'push', u'israel', u'peac', u'talk']
[u'centr', u'win', u'broadband', u'fund']
[u'terror', u'threat', u'level', u'high']
[u'tramway', u'backer', u'confid', u'heritag', u'demand']
[u'tripl', u'treat', u'newburi', u'dive', u'championship']
[u'turkey', u'capit', u'punish']
[u'favour']
[u'figur', u'shock', u'economist']
[u'lower', u'terror', u'alert', u'warn', u'risk', u'remain', u'high']
[u'militari', u'kill', u'iraqi', u'policemen']
[u'navi', u'pilot', u'remain', u'return', u'vietnam']
[u'team', u'visit', u'north', u'korean', u'nuclear', u'plant']
[u'kill', u'anim', u'probe']
[u'venus', u'ferrero', u'smile', u'hong', u'kong', u'win']
[u'verstappen', u'hope', u'jordan', u'deal']
[u'volcano', u'erupt', u'french', u'indian', u'ocean', u'island']
[u'wenger', u'ask', u'kanu', u'extens']
[u'west', u'african', u'summit', u'begin', u'niger']
[u'west', u'perth', u'land', u'sale', u'spotlight']
[u'launch', u'second', u'sar', u'investig']
[u'woman', u'get', u'chemic', u'burn', u'sit', u'toilet']
[u'woman', u'offer', u'doggi', u'danc', u'lesson']
[u'woodford', u'sympathi', u'embattl', u'rusedski']
[u'zimbabw', u'opposit', u'leader', u'remand', u'treason']
[u'zimbabw', u'daili', u'news', u'fail', u'publish']
[u'kill', u'injur', u'bangladesh', u'crash']
[u'hurt', u'algerian', u'earthquak']
[u'school', u'erect', u'fenc', u'stop', u'vandal']
[u'unveil', u'emerg', u'centr']
[u'albania', u'mourn', u'migrant', u'death']
[u'releas', u'elect', u'manifesto']
[u'applebi', u'regain', u'lead', u'hawaii']
[u'asbesto', u'fear', u'delay', u'niue', u'clean']
[u'dead', u'albanian', u'immigr', u'boat']
[u'aussi', u'wheeler', u'hobart']
[u'aust', u'plan', u'biggest', u'anti', u'terror', u'oper']
[u'avalanch', u'kill', u'snowboard', u'franc']
[u'barca', u'close', u'seal', u'david', u'deal']
[u'blaze', u'close', u'arthur', u'seat', u'chairlift']
[u'british', u'iraq', u'leader', u'quit', u'armi', u'report']
[u'british', u'tourist', u'die', u'blue', u'mountain', u'trek']
[u'briton', u'doubt', u'blair', u'name', u'weapon', u'expert']
[u'build', u'job', u'decemb', u'period']
[u'bush', u'launch', u'elect', u'year', u'drive']
[u'bush', u'want', u'iraqi', u'invas', u'start']
[u'cairn', u'face', u'court', u'incid']
[u'canberra', u'classic', u'lose', u'seed']
[u'cancer', u'council', u'meet', u'begin']
[u'celtic', u'join', u'ranger', u'fourth', u'round']
[u'china', u'warn', u'meddl', u'hong', u'kong']
[u'circus', u'pay', u'homag', u'wire', u'wizard']
[u'cleari', u'spree', u'doom', u'tiger', u'adelaid']
[u'court', u'award', u'smoker', u'widow', u'million']
[u'crew', u'battl', u'sydney', u'bushfir']
[u'critic', u'return', u'king', u'best', u'pictur']
[u'cruis', u'draw', u'religi', u'inspir', u'latest']
[u'csiro', u'deni', u'boy', u'claim']
[u'cuba', u'crack', u'internet']
[u'cyclist', u'kill', u'collis']
[u'dane', u'claim', u'iraqi', u'blister']
[u'danish', u'troop', u'test', u'iraq', u'shell', u'chemic']
[u'darwin', u'resid', u'greatest', u'person', u'happi']
[u'earli', u'morn', u'blast', u'jolt', u'baghdad']
[u'indian', u'kashmir', u'insurg']
[u'ella', u'appoint', u'italian', u'assist', u'coach']
[u'eriksson', u'agent', u'dismiss', u'chelsea', u'link']
[u'arrest', u'demand', u'flight', u'aust']
[u'ferrari', u'launch']
[u'crew', u'control', u'arthur', u'seat', u'blaze']
[u'kill', u'iraqi', u'job', u'protest']
[u'foreign', u'doctor', u'prop', u'public', u'hospit']
[u'envoy', u'say', u'troop', u'need']
[u'forum', u'human', u'impact', u'environ', u'open']
[u'dead', u'indonesian', u'cafe', u'blast']
[u'fulham', u'boss', u'hail', u'saha']
[u'german', u'breweri', u'claim', u'anti', u'age', u'beer']
[u'german', u'defenc', u'minist', u'shake', u'tail', u'feather']
[u'girl', u'hospit', u'fall', u'amus', u'park']
[u'glori', u'olymp']
[u'goodwin', u'lift', u'warrior', u'waca', u'swelter']
[u'govt', u'plan', u'school', u'exercis', u'scheme']
[u'govt', u'say', u'act', u'doctor', u'shortag']
[u'guantanamo', u'detent', u'slam']
[u'gunner', u'shoot', u'thrash', u'boro']
[u'haa', u'withdraw', u'australian', u'open']
[u'hamstr', u'injuri', u'keep', u'johnson', u'sidelin']
[u'hogg', u'chanc', u'zimbabw', u'clash']
[u'hope', u'find', u'jumper', u'aliv', u'fade']
[u'hospit', u'over', u'reliant', u'foreign', u'doctor']
[u'hrbati', u'take', u'adelaid', u'titl']
[u'hundr', u'gatecrash', u'riot', u'sunshin', u'coast']
[u'indonesian', u'polic', u'investig', u'dead', u'cafe', u'blast']
[u'inquiri', u'iraq', u'protest', u'death', u'begin']
[u'insurg', u'probabl', u'down', u'helicopt', u'fallujah']
[u'investig', u'quiz', u'parmalat', u'subsidiari', u'head']
[u'iran', u'reformist', u'bar', u'poll']
[u'iraqi', u'govern', u'council', u'annoy', u'saddam']
[u'iraqi', u'jobless', u'protest', u'shoot', u'dead', u'report']
[u'iraqi', u'kill', u'clash', u'coalit', u'forc']
[u'iraq', u'unveil', u'post', u'saddam', u'stamp']
[u'isra', u'star', u'lash', u'babi', u'keegan']
[u'israel', u'seek', u'goodwil', u'reopen']
[u'italian', u'deputi', u'hit', u'berlusconi', u'rhetor']
[u'japanes', u'skydiv', u'kill', u'parachut']
[u'john', u'consid', u'code', u'switch', u'report']
[u'karaok', u'bomb', u'kill']
[u'katich', u'thorn', u'ton', u'blue']
[u'keiko', u'whale', u'pose', u'environment', u'threat']
[u'king', u'carlo', u'thai', u'star', u'clash', u'indian', u'final']
[u'kingz', u'draw', u'snap', u'lose', u'streak']
[u'kookaburra', u'draw', u'south', u'korea']
[u'leader', u'norwich', u'stun', u'bradford']
[u'mali', u'say', u'territori', u'safe', u'despit', u'cancel']
[u'charg', u'sydney', u'explos']
[u'drown', u'fall', u'boat']
[u'escap', u'injuri', u'fall', u'asleep']
[u'front', u'court', u'sydney', u'bomb']
[u'injur', u'quak', u'die']
[u'kill', u'accid']
[u'court', u'charg', u'teen', u'murder']
[u'mar', u'rover', u'get', u'feet']
[u'mbeki', u'launch', u'elect', u'campaign']
[u'morkel', u'brother', u'defi', u'west', u'indi']
[u'near', u'iran', u'poll', u'hope', u'bar', u'report']
[u'airspac', u'incid', u'worri', u'control']
[u'suspect', u'sar', u'case', u'southern', u'china']
[u'zealand', u'consid', u'castrat', u'fiend']
[u'kill', u'afghan', u'clash']
[u'invit', u'latham', u'rail', u'open']
[u'plan', u'indigen', u'croc', u'safari', u'job']
[u'penniless', u'parma', u'rich', u'spirit']
[u'philippin', u'face', u'water', u'crisi', u'insuffici']
[u'poet', u'nissim', u'ezekiel', u'die']
[u'polic', u'arrest', u'worker', u'china', u'disast']
[u'polic', u'probe', u'alleg', u'fraud']
[u'polic', u'probe', u'biki', u'violenc', u'adelaid', u'nightclub']
[u'polic', u'search', u'fear', u'drown']
[u'polic', u'suspect', u'butler', u'saudi', u'royal', u'theft']
[u'polit', u'crisi', u'loom', u'iran']
[u'power', u'blackout', u'leav', u'hundr', u'launceston']
[u'pratt', u'elimin', u'sydney']
[u'protea', u'unchang', u'squad']
[u'qcoss', u'fear', u'split', u'child', u'welfar', u'servic']
[u'polic', u'investig', u'road', u'accid', u'death']
[u'quak', u'fear', u'drive', u'afghan', u'home']
[u'plane', u'crash', u'team', u'await', u'black', u'box']
[u'right', u'group', u'denounc', u'handl', u'iraqi', u'compo']
[u'ronaldo', u'fin', u'english', u'jaunt']
[u'royal', u'coupl', u'releas', u'babi', u'media']
[u'scientist', u'secret', u'mix', u'water']
[u'seed', u'court', u'disast', u'zealand']
[u'injuri', u'tremor', u'rattl', u'algeria', u'report']
[u'spanish', u'foreign', u'minist', u'tour', u'quak', u'iran']
[u'signal', u'beagl', u'mar', u'probe']
[u'striker', u'hold', u'olyroo', u'brisban']
[u'suspend', u'host', u'defend', u'anti', u'arab', u'comment']
[u'swiss', u'polic', u'rubber', u'bullet', u'dispers', u'davo']
[u'teenag', u'remain', u'hospitalis', u'cliff', u'fall']
[u'teenag', u'stay', u'awak', u'week', u'realiti']
[u'hold', u'mugab', u'plane', u'stori']
[u'kill', u'taiwan', u'accid']
[u'three', u'charm', u'gram', u'director']
[u'tiger', u'lose', u'lunch']
[u'rescu', u'cano', u'capsiz']
[u'injur', u'machet', u'attack']
[u'kill', u'basra']
[u'separ', u'crash']
[u'men', u'bodi', u'separ', u'incid']
[u'polic', u'arrest', u'suicid', u'bomb', u'plan', u'report']
[u'commemor', u'struggl', u'slaveri']
[u'claim', u'russia', u'sell', u'arm', u'iraq']
[u'commut', u'divert', u'threat']
[u'firm', u'win', u'iraqi', u'media', u'contract']
[u'militari', u'defend', u'shoot', u'iraqi', u'policemen']
[u'play', u'blister', u'agent', u'discoveri']
[u'want', u'diplomat', u'solut', u'north', u'korea']
[u'valencia', u'real', u'slip']
[u'venezuela', u'chavez', u'hit', u'summit']
[u'victoria', u'widen', u'koala', u'contracept', u'plan']
[u'viduka', u'return', u'home', u'leed', u'woe', u'continu']
[u'warrior', u'lunch']
[u'webber', u'test', u'jaguar']
[u'wildcard', u'escud', u'lift', u'qatar', u'open', u'titl']
[u'william', u'star', u'zimbabw', u'rout']
[u'winner', u'pleas', u'hobart', u'marathon', u'support']
[u'woman', u'kill', u'accid']
[u'zimbabw', u'newsmen', u'arrest', u'mugab', u'plane', u'report']
[u'zimbabw', u'polic', u'arrest', u'mugab', u'alli', u'fraud', u'case']
[u'afghanistan', u'happi', u'guantanamo', u'detent']
[u'agricultur', u'giant', u'head', u'offic', u'brisban']
[u'regul', u'investig', u'incid', u'armidal']
[u'albania', u'arrest', u'polic', u'chief', u'peopl', u'smuggl']
[u'alleg', u'sydney', u'bomber', u'bail']
[u'want', u'rethink', u'import', u'doctor']
[u'analyst', u'downplay', u'drop']
[u'anderson', u'admit', u'incid', u'inevit']
[u'angler', u'die', u'lake', u'eppalock', u'boat', u'mishap']
[u'applebi', u'surviv', u'singh', u'challeng', u'million']
[u'astarloza', u'jet', u'tour', u'defenc']
[u'atsic', u'bodi', u'push', u'post', u'jail', u'program']
[u'australia', u'increas', u'nauru']
[u'aust', u'share', u'stand', u'firm', u'despit', u'job', u'shock']
[u'ballarat', u'firm', u'quiz', u'local', u'economi']
[u'bank', u'sector', u'boost']
[u'bendigo', u'campus', u'consid', u'region', u'status']
[u'fish', u'make', u'controversi', u'offic', u'splash']
[u'blair', u'say', u'resign', u'lie']
[u'blair', u'suggest', u'saddam']
[u'blast', u'rock', u'barraba', u'hotel']
[u'bodi', u'meet', u'child', u'safeti']
[u'bomb', u'destroy', u'build', u'corsica']
[u'bomb', u'prompt', u'fertilis', u'sale', u'restrict']
[u'boundari', u'chang', u'boost', u'tourism', u'fund']
[u'accid', u'kill', u'china']
[u'bushrang', u'fight', u'draw']
[u'cabl', u'beach', u'swimmer', u'warn', u'croc', u'sight']
[u'review', u'stamp', u'duti', u'concess']
[u'water', u'pip', u'chang', u'boost', u'river', u'health']
[u'camplin', u'win', u'track', u'canada']
[u'crash', u'injur', u'remain', u'hospit']
[u'china', u'claim', u'possibl', u'sar', u'case']
[u'china', u'sign', u'nuclear', u'anti', u'terror', u'deal']
[u'climat', u'chang', u'blame', u'fern', u'demis']
[u'clinton', u'ancient', u'british', u'militari', u'honour']
[u'communiti', u'servic', u'look', u'bowral', u'babi']
[u'coria', u'auckland', u'earli', u'jitter']
[u'cyclon', u'render', u'niue', u'unviabl']
[u'cyclon', u'rais', u'question', u'niue', u'nationhood']
[u'detain', u'philippin', u'leader', u'estrada', u'plan']
[u'diamond', u'olymp', u'hop', u'tatter']
[u'dollar', u'surg', u'cost', u'industri', u'studi']
[u'dominikov', u'knock', u'canberra']
[u'drought', u'bring', u'dire', u'predict', u'young', u'cattl']
[u'egypt', u'stop', u'arab', u'minist', u'bring', u'gift', u'gazell']
[u'claim', u'hit', u'sniper']
[u'elder', u'die', u'train', u'accid']
[u'elvi', u'leav', u'build', u'live']
[u'england', u'skipper', u'johnson', u'quit', u'intern']
[u'espanyol', u'murcia']
[u'european', u'summer', u'hotter', u'expert', u'predict']
[u'expect', u'health', u'fund', u'hike', u'abbott', u'warn']
[u'export', u'ponder', u'impact', u'live', u'sheep', u'idea']
[u'treasuri', u'chief', u'evid', u'iraqi', u'wmds']
[u'fan', u'farewel', u'hong', u'kong', u'star', u'anita']
[u'farmer', u'urg', u'neighbour', u'weed', u'spray']
[u'farmer', u'urg', u'seek', u'drought', u'entitl']
[u'fertilis', u'maker', u'deni', u'help', u'plan', u'bali']
[u'fiji', u'govt', u'coup', u'watch', u'report']
[u'financ', u'firm', u'avco', u'fin', u'near', u'credit']
[u'french', u'lawyer', u'prepar', u'court', u'case']
[u'friend', u'pirat', u'viewer', u'poll']
[u'germani', u'buy', u'million', u'anti', u'radiat', u'pill']
[u'girl', u'critic', u'condit', u'fairground']
[u'govt', u'deleg', u'middl', u'east', u'export', u'mission']
[u'govt', u'deleg', u'nauru', u'inspect']
[u'govt', u'ignor', u'global', u'warm', u'green']
[u'govt', u'denial', u'greenhous', u'emiss', u'carr']
[u'govt', u'scrap', u'greenhous', u'trade', u'scheme']
[u'govt', u'encourag', u'disabl', u'work']
[u'guantanamo', u'briton', u'fate', u'resolv']
[u'hewitt', u'reid', u'rusedski', u'sydney']
[u'homeless', u'attack', u'suprem', u'court', u'judg']
[u'hussey', u'lead', u'bushrang', u'thrill']
[u'injur', u'caldecott', u'unsur', u'pari', u'dakar', u'ralli']
[u'injur', u'hind', u'south', u'africa', u'tour']
[u'inquiri', u'look', u'shire', u'expans']
[u'strong', u'albani', u'tourism', u'plan']
[u'iraqi', u'protest', u'clash', u'british', u'troop']
[u'isra', u'cabinet', u'member', u'attend', u'mass', u'ralli']
[u'israel', u'seek', u'peac', u'talk', u'syria']
[u'record', u'thousand', u'kiss', u'chile']
[u'king', u'carlo', u'end', u'paradorn', u'reign', u'indian', u'open']
[u'langer', u'declar', u'perth']
[u'lashko', u'cours', u'olymp']
[u'latham', u'offer', u'simplifi', u'small', u'busi']
[u'latham', u'attend', u'rail', u'open', u'amid', u'controversi']
[u'lehmann', u'fail', u'redback', u'chase']
[u'local', u'work', u'geraldton', u'hospit', u'revamp']
[u'accus', u'screwdriv', u'attack', u'wife']
[u'arrest', u'mildura', u'woman', u'death']
[u'masuoka', u'readi', u'final', u'dakar', u'push']
[u'mbeki', u'work', u'health', u'scare']
[u'miner', u'upbeat', u'walhalla', u'gold', u'drill']
[u'moomba', u'wont', u'forc', u'domest', u'price', u'rise', u'conlon']
[u'urg', u'super', u'chang', u'overcom', u'hous', u'woe']
[u'david', u'blaze', u'control']
[u'nasa', u'plan', u'test', u'drive', u'mar', u'manoeuvr']
[u'nato', u'forc', u'raid', u'crime', u'suspect', u'hous']
[u'bulk', u'bill', u'scheme', u'kick']
[u'visa', u'attract', u'immigr', u'region']
[u'ration', u'busi', u'energi', u'minist']
[u'appoint', u'australian', u'museum', u'head']
[u'health', u'minist', u'hail', u'nurs', u'deal']
[u'feel', u'pinch', u'doctor', u'cross', u'tasman']
[u'pollut', u'hit', u'french', u'atlant', u'beach']
[u'palestinian', u'reject', u'term', u'financi']
[u'perren', u'love', u'lead', u'bull', u'chase']
[u'perth', u'heatwav', u'predict', u'eas', u'sunday']
[u'philippin', u'leav', u'peopl', u'homeless']
[u'pilot', u'incid', u'exagger']
[u'calm', u'ahead', u'parliamentari', u'sit']
[u'polic', u'hunt', u'wodonga', u'attack']
[u'polic', u'investig', u'cyclist', u'freeway', u'death']
[u'polic', u'bodi', u'sport']
[u'polic', u'probe', u'south', u'tamworth', u'attack']
[u'polic', u'question', u'sport', u'club', u'break']
[u'port', u'export', u'closur', u'plan', u'need', u'think']
[u'protest', u'promis', u'plan', u'park', u'closur']
[u'public', u'nurs', u'look', u'wage', u'rise']
[u'budget', u'surplus', u'fund', u'child', u'protect']
[u'oppn', u'highlight', u'sunshin', u'coast', u'hous', u'concern']
[u'rain', u'western', u'queensland', u'dam']
[u'receiv', u'petrol', u'compani', u'asset']
[u'reformist', u'fight', u'elect', u'iran']
[u'resort', u'owner', u'plan', u'major', u'chang']
[u'riot', u'spark', u'secur', u'revamp', u'juvenil', u'detent']
[u'roma', u'maintain', u'lead', u'milan', u'juve', u'pace']
[u'roma', u'withstand', u'drought', u'pressur']
[u'aim', u'shield', u'student', u'inappropri']
[u'crisi', u'highlight', u'pipelin', u'need']
[u'saudi', u'arabia', u'launch', u'satellit', u'news', u'channel']
[u'school', u'year', u'saudi']
[u'search', u'black', u'continu']
[u'second', u'dairi', u'herd', u'destroy']
[u'secret', u'document', u'link', u'vaccin', u'gulf']
[u'secur', u'offic', u'fin', u'train', u'assault']
[u'servic', u'farewel', u'victim']
[u'seymour', u'hospit', u'close', u'obstetr', u'servic']
[u'shark', u'attack', u'diver', u'coast']
[u'sheedi', u'leav', u'hospit', u'perth', u'beach', u'collaps']
[u'ship', u'servic', u'concern', u'remain', u'king', u'island']
[u'shire', u'lament', u'power', u'grid', u'woe']
[u'cliff', u'richard', u'plant', u'rise', u'honour']
[u'site', u'work', u'start', u'bathurst', u'orang', u'hospit']
[u'southern', u'queensland', u'record', u'good', u'soak']
[u'spotlight', u'turn', u'haven']
[u'stop', u'work', u'meet', u'disrupt', u'adelaid', u'bus']
[u'suspect', u'charg', u'murder', u'swedish', u'minist']
[u'swazi', u'king', u'seek', u'fund', u'palac']
[u'sydney', u'ferri', u'order', u'ticket', u'problem']
[u'arrest', u'pakistan', u'assassin']
[u'thai', u'girl', u'grant', u'bridg', u'visa', u'extens']
[u'thousand', u'recruit', u'desert', u'afghan', u'armi']
[u'thousand', u'ralli', u'support', u'isra', u'settler']
[u'england', u'highway', u'crash']
[u'tiger', u'control', u'wicket', u'spree']
[u'toll', u'flash', u'flood', u'iran', u'rise']
[u'seed', u'daniilidou', u'retir', u'hurt', u'hobart']
[u'shiit', u'cleric', u'say', u'plan', u'iraq']
[u'torbay', u'kelli', u'consid', u'shire', u'merger']
[u'journalist', u'arrest', u'nepal']
[u'child', u'porn', u'rocket', u'paedophil']
[u'unit', u'newcastl', u'draw', u'chelsea']
[u'report', u'admit', u'decept', u'probe']
[u'troop', u'recov', u'larg', u'weapon', u'haul', u'iraq']
[u'govern', u'criticis', u'school', u'campaign']
[u'wallabi', u'maintain', u'coff', u'harbour', u'base']
[u'word', u'erupt', u'mayor', u'independ']
[u'watchdog', u'warn', u'litter', u'bug']
[u'wildcat', u'upset']
[u'william', u'gun', u'test', u'place']
[u'winter', u'ill', u'kill', u'afghan', u'children']
[u'woman', u'kill', u'collis', u'devonport']
[u'woman', u'kill', u'injur', u'crash']
[u'work', u'track', u'age', u'care', u'facil']
[u'seek', u'elimin', u'carp', u'waterway']
[u'adecco', u'share', u'slide', u'account', u'issu']
[u'afghan', u'state', u'lift', u'local', u'women', u'singer']
[u'agassi', u'back', u'dope', u'test', u'regim']
[u'shall', u'weari']
[u'agricultur', u'compani', u'announc', u'chang']
[u'alzheim', u'research', u'teach', u'drug', u'trick']
[u'american', u'charg', u'airport', u'drug', u'seizur']
[u'apex', u'support', u'probe', u'assault', u'claim']
[u'arrest', u'zimbabwean', u'journalist', u'releas', u'bail']
[u'asic', u'probe', u'fund', u'manag']
[u'aussi', u'action', u'sydney']
[u'australia', u'buy', u'star', u'war']
[u'australian', u'dollar', u'surg', u'high']
[u'aust', u'see', u'need', u'colour', u'code', u'passeng']
[u'barcelona', u'david', u'loan']
[u'bathurst', u'galleri', u'await', u'hill', u'work']
[u'beatti', u'opt', u'short', u'elect', u'campaign']
[u'beatti', u'tip', u'bloodbath', u'govt']
[u'beatti', u'announc', u'elect', u'date']
[u'billionair', u'back', u'anti', u'bush', u'campaign']
[u'bomb', u'kill', u'bangladesh', u'saint', u'tomb']
[u'bowen', u'enjoy', u'influx', u'chang', u'resid']
[u'british', u'airway', u'accept', u'arm', u'marshal']
[u'british', u'backpack', u'murder', u'case', u'resum']
[u'british', u'serial', u'killer', u'shipman', u'die', u'prison']
[u'british', u'veteran', u'gulf', u'sick', u'inquiri']
[u'bull', u'steal', u'inning', u'point']
[u'bull', u'surviv', u'morn', u'session']
[u'burger', u'boost', u'beef', u'demand', u'analyst']
[u'busi', u'group', u'welcom', u'region', u'migrant', u'plan']
[u'call', u'major', u'bass', u'highway', u'expenditur']
[u'capriati', u'latest', u'open', u'pull']
[u'cash', u'incent', u'wont', u'boost', u'bulk', u'bill']
[u'charg', u'lay', u'detent', u'centr', u'riot']
[u'chopper', u'rescu', u'worker', u'fend', u'shark']
[u'clijster', u'doubt', u'open', u'sydney', u'pull']
[u'coalit', u'aim', u'restor', u'balanc']
[u'coff', u'council', u'unhappi', u'land', u'claim']
[u'compromis', u'plan', u'flow', u'sewag', u'pipe', u'protest']
[u'concern', u'gippsland', u'road']
[u'council', u'back', u'migrant', u'visa', u'scheme']
[u'council', u'meet', u'plan', u'local', u'govt', u'merger']
[u'court', u'confirm', u'acquitt', u'indonesian', u'policeman']
[u'court', u'hear', u'confess', u'backpack', u'murder', u'case']
[u'cutback', u'matern', u'care', u'auburn', u'hospit']
[u'debt', u'ride', u'leed', u'talk', u'asset', u'sale']
[u'defenc', u'intellig', u'train', u'centr', u'open', u'door']
[u'defenc', u'reject', u'gulf', u'ill', u'alleg']
[u'defend', u'champion', u'kuerten', u'marathon']
[u'democrat', u'continu', u'campaign', u'banish', u'bartlett']
[u'doctor', u'hope', u'inspect', u'nauru', u'health']
[u'drake', u'collymor', u'secur', u'west', u'indi', u'victori']
[u'driver', u'caus', u'park', u'chao']
[u'bali', u'bomber', u'seek', u'presidenti', u'clemenc']
[u'european', u'central', u'bank', u'warn', u'brutal', u'euro', u'surg']
[u'famili', u'fan', u'ralli', u'round', u'jackson', u'child', u'abus', u'case']
[u'farmer', u'pump', u'gascoyn', u'river']
[u'spark', u'energi', u'woe', u'primari', u'industri']
[u'like', u'diseas', u'reach', u'mainland', u'tasmania']
[u'forestri', u'firm', u'question', u'powerlin', u'rout']
[u'champ', u'pierc', u'pull', u'australian', u'open']
[u'franc', u'open', u'defenc', u'germani', u'face']
[u'frasier', u'soon', u'longer', u'listen']
[u'ghost', u'ship', u'artifici', u'reef']
[u'gold', u'coast', u'custodi', u'sword', u'attack']
[u'gold', u'sell', u'sell', u'million']
[u'govt', u'accus', u'banana', u'bend', u'trade', u'deal']
[u'govt', u'ask', u'help', u'secur', u'stromlo', u'futur']
[u'govt', u'label', u'labor', u'airport', u'propos', u'farc']
[u'greyhound', u'trainer', u'face', u'anim', u'cruelti', u'charg']
[u'guccion', u'upset', u'ferrero', u'scud']
[u'health', u'dept', u'offer', u'fish', u'kill', u'assur']
[u'health', u'fund', u'defend', u'price', u'rise']
[u'holiday', u'go', u'poll']
[u'hospit', u'coal', u'briquett', u'shortag', u'prove', u'cost']
[u'hunter', u'winemak', u'lower', u'price', u'hard', u'swallow']
[u'husband', u'jail', u'assault']
[u'india', u'success', u'test', u'fire', u'missil']
[u'inland', u'driver', u'urg', u'check', u'local', u'condit']
[u'iraq', u'seek', u'australian', u'expertis', u'save', u'tigri']
[u'hear', u'silverwat', u'guard', u'disput']
[u'iron', u'give', u'mussel', u'strength', u'scientist']
[u'ironmen', u'advanc', u'final', u'round']
[u'itali', u'villag']
[u'japan', u'stock', u'australian', u'beef']
[u'job', u'servic', u'firm', u'industri']
[u'kenyan', u'grandad', u'join', u'primari', u'school']
[u'kingaroy', u'centenari', u'project', u'stall']
[u'give', u'condit', u'approv', u'marshal']
[u'kookaburra', u'edg', u'malaysia', u'close']
[u'kyli', u'battl', u'beyonc', u'aguilera', u'brit', u'award']
[u'labor', u'pledg', u'child', u'care', u'place']
[u'labor', u'promis', u'extra', u'place']
[u'labor', u'urg', u'govt', u'come', u'clean', u'nauru', u'health']
[u'lake', u'cargelligo', u'death', u'probe', u'near', u'finish']
[u'latham', u'criticis', u'health', u'fund', u'rise']
[u'latham', u'happi', u'wrong', u'railway', u'potenti']
[u'latham', u'second', u'sydney', u'airport', u'site']
[u'launceston', u'trader', u'worri', u'youth', u'behaviour']
[u'lord', u'ring', u'continu', u'offic', u'reign']
[u'magic', u'million', u'growth', u'sale']
[u'maher']
[u'appear', u'court', u'sydney', u'murder']
[u'charg', u'sydney', u'sniper', u'shoot']
[u'deni', u'steal', u'crystal']
[u'kill', u'collis']
[u'market', u'await', u'earn', u'season']
[u'mayor', u'shed', u'light', u'school', u'road', u'safeti']
[u'mcenro', u'admit', u'steroid']
[u'mcgee', u'mcewen', u'tip', u'tour', u'success']
[u'minist', u'probe', u'council', u'boss', u'departur']
[u'mix', u'respons', u'syria', u'israel', u'peac', u'talk']
[u'mean', u'money', u'indian', u'polic']
[u'moomba', u'blast', u'cost', u'onesteel', u'dear']
[u'mooney', u'await', u'plan', u'hospit', u'site']
[u'question', u'commonwealth', u'game', u'expenditur']
[u'multicultur', u'group', u'happi', u'migrant', u'plan']
[u'announc', u'drag', u'lower']
[u'suspend', u'worker', u'rogu', u'trade']
[u'bahrain', u'circuit', u'complet']
[u'councillor', u'northampton']
[u'visa', u'rais', u'terror', u'threat', u'refuge', u'group']
[u'nigeria', u'interrog', u'journalist', u'report']
[u'chang', u'plan', u'land']
[u'north', u'east', u'victorian', u'perform', u'cattlemen']
[u'council', u'fear', u'road', u'fund', u'scheme']
[u'govt', u'track', u'address', u'rail', u'secur']
[u'opposit', u'want', u'teacher', u'shortag']
[u'see', u'benefit', u'migrant', u'scheme']
[u'firm', u'accus', u'rip', u'motorist']
[u'spill', u'hit', u'whitsunday']
[u'opposit', u'undecid', u'croc', u'hunt']
[u'packag', u'contain', u'bullet', u'case', u'send']
[u'parmalat', u'administr', u'back', u'australian', u'branch']
[u'pasminco', u'worker', u'walk']
[u'patchi', u'rainfal', u'southern', u'queensland']
[u'park', u'belconnen', u'town', u'centr']
[u'pilbara', u'polic', u'drink', u'drive', u'worri']
[u'offer', u'illeg', u'immigr', u'amnesti']
[u'polic', u'question', u'sydney', u'sniper', u'shoot']
[u'polic', u'road', u'victim']
[u'premier', u'predict', u'thing', u'sydney', u'devonport']
[u'pressur', u'pakistan', u'kiwi', u'seek', u'seri', u'shut']
[u'progress', u'associ', u'oppos', u'subdivis']
[u'protest', u'fin', u'ferri', u'stunt']
[u'lender', u'bank', u'success']
[u'queen', u'mari', u'set', u'maiden', u'atlant', u'cross']
[u'rain', u'bring', u'damag', u'tamworth']
[u'rare', u'russian', u'tigress', u'die', u'week', u'struggl']
[u'redback', u'face', u'uphil', u'battl']
[u'refuge', u'advoc', u'support', u'migrat', u'scheme']
[u'resid', u'councillor', u'talk', u'powerlin', u'fear']
[u'reuter', u'protest', u'detent', u'staff', u'iraq']
[u'reward', u'offer', u'catch', u'grave', u'vandal']
[u'rice', u'wait', u'wildcat', u'clearanc']
[u'riverland', u'group', u'welcom', u'migrant', u'plan']
[u'rover', u'martian', u'drive', u'nasa']
[u'ruddock', u'urg', u'fertilis', u'control', u'deal']
[u'rural', u'visa', u'plan', u'question']
[u'russian', u'admir', u'trial', u'sink']
[u'salmon', u'research', u'win', u'grant', u'diseas', u'probe']
[u'sauber', u'criticis', u'test', u'driver', u'restrict']
[u'saudi', u'arabia', u'author', u'score', u'huge', u'weapon']
[u'seven', u'iraqi', u'kill', u'clash', u'troop']
[u'shark', u'sight', u'tweed', u'coast']
[u'celebr', u'birthday']
[u'south', u'east', u'enjoy', u'strong', u'tourism']
[u'space', u'station', u'leak', u'trace', u'nasa']
[u'stanwel', u'park', u'sign', u'inform', u'billboard']
[u'stockman', u'hall', u'fame', u'plan', u'tourism', u'boost']
[u'stosur', u'continu', u'good', u'form']
[u'stosur', u'hobart']
[u'surf', u'blue', u'away']
[u'swift', u'netbal', u'star', u'injur', u'smash']
[u'syria', u'reject', u'invit', u'meet', u'isra', u'presid']
[u'syria', u'say', u'land', u'invit', u'peac', u'israel']
[u'polic', u'higher', u'wag']
[u'tender', u'call', u'hume', u'freeway', u'work']
[u'terror', u'exercis', u'test', u'respons']
[u'rail', u'secur', u'guard', u'fin', u'assault']
[u'tiger', u'build', u'lead', u'adelaid']
[u'seed', u'suarez', u'advanc', u'canberra']
[u'soldier', u'head', u'australia']
[u'totti', u'nedv', u'name', u'itali', u'best', u'player']
[u'palestinian', u'arrest', u'west', u'bank']
[u'union', u'call', u'teacher', u'rise']
[u'unpredict', u'hanson', u'expect', u'campaign']
[u'armi', u'think', u'tank', u'criticis', u'iraq', u'invas']
[u'terror', u'detaine', u'name', u'secret', u'court']
[u'accident', u'drop', u'unarm', u'bomb', u'britain']
[u'probe', u'oneil', u'secreci', u'breach']
[u'propos', u'colour', u'cod', u'passeng']
[u'soldier', u'die', u'bomb', u'troop', u'kill', u'seven', u'iraqi']
[u'stock', u'inch', u'earn', u'loom']
[u'criticis', u'wind', u'energi', u'polici']
[u'govt', u'urg', u'tackl', u'shepparton', u'public', u'hous']
[u'victori', u'applebi', u'close', u'world']
[u'visa', u'woe', u'forc', u'bind', u'croc', u'leav', u'import']
[u'warrior', u'look', u'good', u'bull']
[u'elect', u'springborg']
[u'welcom', u'rain', u'fall', u'north', u'queensland']
[u'west', u'coast', u'shellfish', u'health', u'clear']
[u'white', u'hous', u'reject', u'oneil', u'critic']
[u'womad', u'welcom', u'melt', u'music', u'flavour']
[u'world', u'skipper', u'johnson']
[u'youth', u'soccer', u'camp', u'gold', u'coast']
[u'adelong', u'bank', u'communiti', u'support']
[u'afghan', u'aliv', u'sound', u'music']
[u'airlin', u'look', u'expand', u'north', u'west', u'asia', u'servic']
[u'arabiya', u'resum', u'iraq', u'coverag', u'soon', u'govern']
[u'candid', u'play', u'wilton', u'airport', u'site']
[u'ambul', u'union', u'negoti', u'claim']
[u'america', u'leader', u'sign', u'free', u'trade', u'agreement']
[u'analyst', u'tip', u'comfort', u'labor', u'poll']
[u'angler', u'fin', u'illeg', u'fish']
[u'angolan', u'govt', u'deni', u'alleg']
[u'ashtonfield', u'school', u'plan', u'move', u'ahead']
[u'remain', u'steadi']
[u'asylum', u'seeker', u'group', u'rais', u'doubt', u'migrant']
[u'atlas', u'highlight', u'high', u'south', u'east', u'wind', u'speed']
[u'aussi', u'advanc', u'sydney']
[u'australian', u'offici', u'kill', u'uzbek', u'crash']
[u'author', u'probe', u'gold', u'coast', u'boat', u'capsiz']
[u'avellino', u'sign', u'netbal', u'team']
[u'beatti', u'child', u'focus', u'elect', u'ruse', u'springborg']
[u'better', u'late', u'spirit', u'tasmania']
[u'bird', u'wors', u'sar']
[u'bird', u'kill', u'asia', u'health', u'scare']
[u'black', u'cap', u'romp', u'victori', u'pakistan']
[u'blast', u'hit', u'iraqi', u'polic', u'station']
[u'bomber', u'strike', u'isra', u'border', u'cross']
[u'british', u'backpack', u'murder', u'hear', u'adjourn']
[u'british', u'peac', u'activist', u'shoot', u'middl', u'east', u'die']
[u'brown', u'track', u'tour']
[u'bryant', u'sidelin', u'sprain', u'shoulder']
[u'bull', u'begin', u'chase', u'warrior', u'declar']
[u'burglar', u'muhammad', u'ali', u'short']
[u'burk', u'shire', u'warn', u'wild', u'weather']
[u'busi', u'push', u'fund', u'inject']
[u'hunter', u'polic', u'number', u'boost']
[u'centuri', u'rail', u'dream', u'realiti']
[u'china', u'confirm', u'sar', u'case', u'report']
[u'clijster', u'wont', u'rush', u'open']
[u'urg', u'region', u'inclus', u'amphetamin', u'fight']
[u'coalit', u'argu', u'child', u'protect', u'elect']
[u'coastwatch', u'highlight', u'log', u'fear']
[u'commiss', u'warn', u'zimbabwean', u'newspap']
[u'chess', u'help', u'develop', u'game']
[u'concentr', u'let', u'pirat']
[u'concern', u'rais', u'raymond', u'koala', u'health']
[u'conserv', u'underpin', u'canobola', u'plan']
[u'consum', u'confid', u'jump', u'year', u'high']
[u'control', u'forest', u'burn', u'continu', u'duffi']
[u'costello', u'talk', u'star', u'war']
[u'costello', u'weigh', u'campaign']
[u'croc', u'expect', u'tough', u'clash']
[u'crown', u'princ', u'denmark', u'visit', u'tasmania']
[u'cult', u'tell', u'kid', u'drink', u'bleach', u'beat', u'sar']
[u'dairi', u'group', u'say', u'australia', u'wont', u'flood', u'market']
[u'dakar', u'leader', u'accus', u'rival', u'illeg', u'overtak']
[u'damag', u'irwin', u'locomot', u'miss', u'journey']
[u'darl', u'river', u'flow', u'prevent', u'water', u'pump']
[u'defect', u'spark', u'search', u'council']
[u'detaine', u'protest', u'baxter']
[u'devonport', u'mayor', u'welcom', u'ferri']
[u'disney', u'close', u'florida', u'anim', u'studio']
[u'dokic', u'australian', u'open']
[u'drug', u'halt', u'genit', u'herp', u'approv']
[u'dutch', u'ministri', u'find', u'white', u'sock', u'indec']
[u'educ', u'chang', u'rais', u'communiti']
[u'educ', u'dept', u'upbeat', u'teacher', u'vacanc']
[u'children', u'hospitalis']
[u'elect', u'complic', u'tree', u'clear', u'issu', u'agforc']
[u'electranet', u'wont', u'stop', u'develop', u'applic']
[u'eye', u'hawaiian', u'open', u'defenc']
[u'emot', u'high', u'friend', u'cast', u'near', u'final']
[u'england', u'keeper', u'jam', u'join', u'citi']
[u'england', u'begin', u'qualifi', u'austria']
[u'fall', u'paramed', u'rememb', u'victoria']
[u'fisher', u'reel', u'size', u'limit', u'plan']
[u'fish', u'kill', u'buri', u'north', u'west']
[u'flood', u'cut', u'western', u'road']
[u'foster', u'care', u'issu', u'wont', u'decid', u'poll', u'reynold']
[u'arrest', u'tanzania', u'ivori', u'haul']
[u'frazier', u'hobart', u'semi', u'final']
[u'fulham', u'deni', u'saha']
[u'ghan', u'claim', u'strong', u'intern', u'book']
[u'govt', u'extend', u'region', u'doctor', u'scheme']
[u'govt', u'urg', u'extend', u'pool', u'fenc', u'review']
[u'grazier', u'look', u'pastur', u'growth']
[u'greec', u'test', u'counter', u'terror', u'tactic', u'game']
[u'haitian', u'presid', u'promis', u'elect']
[u'handwrit', u'analyst', u'testifi', u'backpack', u'murder']
[u'handwrit', u'expert', u'testifi', u'british']
[u'hayden', u'say', u'order', u'mark']
[u'health', u'fund', u'public', u'stunt']
[u'high', u'perform', u'student', u'miss', u'place']
[u'high', u'petrol', u'price', u'fuel', u'farm', u'group', u'frustrat']
[u'mozzi', u'sniff', u'sweat']
[u'india', u'cruis', u'victori', u'hobart']
[u'india', u'cruis', u'hobart']
[u'indonesian', u'court', u'dismiss', u'timor', u'right', u'abus']
[u'injur', u'stosur', u'expect', u'contest', u'open']
[u'injuri', u'prompt', u'seaman', u'quit', u'decis']
[u'injuri', u'put', u'coria', u'open']
[u'iranian', u'presid', u'threaten', u'resign']
[u'johnson', u'miss', u'australian', u'track', u'season']
[u'judg', u'delay', u'sentenc', u'internet', u'offend']
[u'kashmir', u'separatist', u'indian', u'govt', u'hold', u'talk']
[u'kenya', u'oldest', u'schoolboy', u'enrol']
[u'kidney', u'group', u'want', u'chang', u'donor', u'law']
[u'kookaburra', u'come', u'beat', u'india']
[u'krige', u'quit', u'springbok']
[u'labor', u'promis', u'increas', u'murray', u'darl', u'flow']
[u'latham', u'airport', u'comment', u'reignit', u'local', u'debat']
[u'maher', u'eye', u'athen', u'olymp']
[u'accus', u'sydney', u'shoot', u'refus', u'bail']
[u'martin', u'attend', u'adelaid', u'darwin', u'inaugur']
[u'mcgrath', u'put', u'comeback', u'hold']
[u'melbourn', u'stand', u'trial', u'babi', u'murder']
[u'accus', u'sydney', u'shoot', u'sorri']
[u'mentor', u'scheme', u'benefit', u'darl', u'down', u'youth']
[u'miner', u'agre', u'boost', u'iron', u'cooper']
[u'worker', u'return', u'work']
[u'ministeri', u'visit', u'ceduna', u'pipelin']
[u'miss', u'tafe', u'place']
[u'iran', u'minist', u'readi', u'quit', u'elect']
[u'mummi', u'show', u'pharoah', u'worship', u'king', u'beast']
[u'share', u'recov', u'despit', u'scandal', u'probe']
[u'nat', u'urg', u'public', u'protest', u'plan', u'kosciuszko']
[u'netbal', u'hospit', u'crash']
[u'medic', u'school', u'readi', u'student']
[u'militari', u'school', u'offer', u'region', u'train']
[u'renault', u'track', u'debut']
[u'studi', u'shatter', u'internet', u'geek', u'imag']
[u'loaf', u'solomon', u'flour', u'power', u'dri']
[u'plan', u'tougher', u'water', u'restrict']
[u'northern', u'respit', u'rain']
[u'north', u'south', u'railway', u'tip', u'boost', u'local', u'economi']
[u'guilti', u'plea', u'trial', u'open', u'swedish']
[u'govt', u'inject', u'public', u'hospit']
[u'oneil', u'back', u'iraq', u'claim']
[u'pakistan', u'collaps', u'black', u'cap']
[u'pari', u'hilton', u'go', u'undress', u'worst', u'dress']
[u'parmalat', u'offer', u'australian', u'assur']
[u'perth', u'base', u'gold', u'miner', u'upbeat', u'north']
[u'pipelin', u'await', u'water', u'licenc', u'approv']
[u'poacher', u'bond', u'catch', u'rabbit']
[u'polic', u'arrest', u'youth', u'alleg', u'danger', u'drive']
[u'polic', u'charg', u'melbourn', u'home', u'invas']
[u'polic', u'hope', u'quiet', u'school', u'holiday']
[u'policeman', u'punish', u'prison', u'assault']
[u'polic', u'probe', u'british', u'serial', u'killer', u'death']
[u'polic', u'probe', u'southern', u'crash']
[u'polic', u'shoot', u'dead', u'sydney']
[u'polic', u'turn', u'drug', u'darwin', u'raid']
[u'prais', u'flow', u'north', u'west', u'water', u'user']
[u'prison', u'group', u'welcom', u'polic', u'killer', u'releas']
[u'prison', u'guard', u'captur', u'riverland', u'escape']
[u'prison', u'offic', u'maintain', u'strike']
[u'prison', u'offic', u'order', u'work']
[u'protest', u'reject', u'claim', u'ferri', u'stunt', u'danger']
[u'public', u'urg', u'pool', u'diseas', u'free']
[u'green', u'claim', u'labor', u'dirti', u'trick']
[u'minist', u'stand', u'asid', u'bulli']
[u'opposit', u'break', u'bank']
[u'rain', u'help', u'quench', u'aramac']
[u'rann', u'set', u'student', u'read', u'challeng']
[u'real', u'quarter']
[u'redback', u'lose', u'quick', u'wicket']
[u'regist', u'record', u'hors', u'kill', u'weed']
[u'rescu', u'worker', u'give', u'clear', u'french']
[u'roddick', u'feder', u'agassi', u'kooyong']
[u'rise', u'see', u'traffic', u'gold', u'coast', u'issu']
[u'row', u'australia', u'unveil', u'olymp', u'coach', u'team']
[u'royal', u'pheasant', u'shoot', u'terrifi', u'british', u'children']
[u'rumsfeld', u'call', u'oneil', u'sour', u'grape', u'book']
[u'saddam', u'status', u'trial', u'iraqi']
[u'govt', u'unmov', u'kangaroo', u'water', u'restrict']
[u'saleyard', u'rais', u'compani', u'fear']
[u'say', u'chees', u'incrimin', u'chines', u'camera', u'thiev']
[u'school', u'contractor', u'warn', u'strike', u'cost']
[u'scientist', u'consid', u'lili', u'impact', u'swamp', u'wallabi']
[u'senior', u'send', u'intrud', u'pack']
[u'servic', u'boost', u'nanango', u'busi']
[u'sheep', u'farmer', u'battl', u'strike']
[u'singaporean', u'celebr', u'chines', u'year', u'lucki']
[u'korea', u'confid', u'resolv', u'nuclear', u'crisi']
[u'smelter', u'worker', u'strike']
[u'social', u'secur', u'payment', u'affect']
[u'south', u'korea', u'beef', u'quarantin', u'effort']
[u'space', u'station', u'leak', u'stop', u'pressur', u'stabl', u'nasa']
[u'spur', u'unit', u'butt']
[u'stab', u'inmat', u'condit', u'stabilis']
[u'state', u'reli', u'gambl', u'revenu', u'latham']
[u'luke', u'move', u'increas', u'premium']
[u'strong', u'dollar', u'hit', u'oversea', u'student', u'number']
[u'swiss', u'glacier', u'shrink', u'climat', u'chang']
[u'sydney', u'resid', u'boost', u'gold', u'coast', u'popul']
[u'sydney', u'water', u'listen', u'pipe', u'concern']
[u'talk', u'continu', u'goulburn', u'local', u'govt', u'area']
[u'govt', u'explain', u'bass', u'highway', u'posit']
[u'teacher', u'kill', u'netherland', u'school', u'shoot']
[u'telstra', u'shift', u'job', u'india']
[u'telstra', u'offshor', u'job']
[u'quarter', u'russian', u'censorship', u'poll']
[u'general', u'visit', u'china']
[u'tough', u'competit', u'aust', u'award']
[u'tourist', u'keen', u'view', u'underwat', u'observatori']
[u'treasur', u'tell', u'telstra', u'job', u'australia']
[u'truck', u'compani', u'fin', u'accid']
[u'tube', u'feed', u'cost', u'rise', u'victoria']
[u'camera', u'ban', u'jackson', u'hear']
[u'bushfir', u'contain', u'victoria']
[u'union', u'goal', u'wolv']
[u'union', u'telstra', u'plan', u'australian', u'job']
[u'unit', u'fulham', u'agre', u'saha', u'deal', u'report']
[u'unit', u'sign', u'chines', u'teenag']
[u'unit', u'fulham', u'saha']
[u'send', u'team', u'assess', u'iraq', u'staff', u'secur']
[u'beef', u'leav', u'limbo']
[u'militari', u'criticis', u'legal', u'process']
[u'rover', u'spirit', u'head', u'hill', u'mar']
[u'vanston', u'defend', u'electron', u'visa']
[u'veron', u'hire', u'guard', u'machet', u'raid']
[u'victorian', u'polic', u'recov', u'olympian', u'medal']
[u'vietnam', u'ban', u'import', u'chines', u'civet', u'cat']
[u'vietnam', u'report', u'suspect', u'bird', u'case']
[u'visa', u'plan', u'boost', u'gippsland', u'migrant', u'number']
[u'volcano', u'erupt', u'russia', u'east']
[u'detect', u'attempt', u'trace', u'miss', u'million']
[u'govt', u'defend', u'bushfir']
[u'keen', u'restart', u'trade', u'saudi', u'arabia']
[u'walgett', u'farmer', u'welcom', u'downpour']
[u'oppon', u'iraq', u'contract']
[u'weaken', u'bolton', u'knock']
[u'wildlif', u'prompt', u'develop', u'site', u'rethink']
[u'woman', u'hospit', u'stab']
[u'world', u'elit', u'clash', u'kooyong']
[u'wright', u'bowl', u'tiger', u'victori']
[u'zimbabw', u'bat', u'india']
[u'child', u'protect', u'scheme', u'review']
[u'action', u'threaten', u'uncuf', u'prison', u'court']
[u'retain', u'lowest', u'jobless', u'rate']
[u'introduc', u'strict', u'gambl', u'law']
[u'agassi', u'advanc', u'kooyong', u'final']
[u'albani', u'angler', u'face', u'fin']
[u'anderson', u'join', u'elect', u'campaign']
[u'finish', u'lower', u'flat', u'trade']
[u'aussi', u'skip', u'sharjah', u'tournament']
[u'australia', u'play', u'role', u'space', u'program']
[u'bank', u'robberi', u'trigger', u'polic', u'manhunt']
[u'bank', u'urg', u'help', u'custom', u'bush']
[u'barcaldin', u'school', u'get', u'feder', u'fund', u'boost']
[u'beatti', u'stand', u'fall', u'rise']
[u'bird', u'claim', u'vietnam']
[u'boonah', u'warn', u'harsher', u'water', u'restrict']
[u'braill', u'librari', u'open']
[u'brigg', u'book', u'fight', u'ruiz']
[u'british', u'activist', u'die', u'month', u'isra']
[u'bullet', u'tame', u'tiger']
[u'bull', u'warrior', u'draw', u'waca']
[u'contractor', u'complain', u'contract']
[u'bush', u'announc', u'step', u'space', u'explor']
[u'calm', u'urg', u'possibl', u'sydney', u'sar', u'case']
[u'blast', u'wound', u'outsid', u'karachi', u'church']
[u'carrigan', u'fail', u'women', u'cycl', u'comp']
[u'carr', u'promis', u'improv', u'rail', u'safeti']
[u'central', u'australian', u'rail', u'link', u'realis', u'dream']
[u'chelsea', u'cruis', u'fourth', u'round']
[u'china', u'ban', u'poultri', u'import', u'counter', u'bird']
[u'china', u'surfer', u'rise', u'million', u'peopl']
[u'china', u'unveil', u'space', u'plan']
[u'clark', u'atsic', u'case', u'adjourn', u'week']
[u'clark', u'claim', u'atsic', u'suspens', u'isnt', u'legal']
[u'clark', u'appeal', u'caus', u'ultimatum']
[u'exploit', u'elect', u'chairman', u'warn']
[u'coff', u'mayor', u'back', u'merger', u'stanc']
[u'costello', u'tie', u'job', u'reform']
[u'costello', u'urg', u'latham', u'voic', u'gambl', u'concern']
[u'council', u'hop', u'owner', u'wont', u'pooh', u'pooh', u'plan']
[u'councillor', u'air', u'candid', u'defect', u'concern']
[u'councillor', u'want', u'road', u'fund', u'scheme', u'maintain']
[u'council', u'consid', u'chief', u'execut', u'exit']
[u'council', u'urg', u'finish', u'groundwat', u'probe']
[u'court', u'hear', u'chill', u'account', u'swedish', u'minist']
[u'date', u'chang', u'melbourn']
[u'defiant', u'rise', u'domin', u'campaign']
[u'diana', u'crash', u'wit', u'rule', u'conspiraci']
[u'dinosaur', u'roam', u'brazil', u'amazon', u'report']
[u'doctor', u'brush', u'surgeri', u'skill']
[u'dodson', u'look', u'develop', u'commiss', u'challeng']
[u'dollar', u'steadi', u'volatil', u'stock', u'market']
[u'doubt', u'cast', u'oversea', u'rural', u'doctor', u'placement']
[u'doubt', u'migrant', u'scheme', u'afghan', u'worker']
[u'down', u'tourism', u'websit', u'prove', u'popular']
[u'ecstasi', u'link', u'long', u'term', u'memori', u'loss', u'studi']
[u'expect', u'chines', u'hope', u'stork', u'skip', u'goat', u'monkey']
[u'expert', u'warn', u'bird', u'virus', u'plagu']
[u'fail', u'asylum', u'seeker', u'turkey']
[u'farmer', u'slow', u'respond', u'drought']
[u'fast', u'bowler', u'head', u'injuri', u'list']
[u'feder', u'polic', u'probe', u'loss']
[u'govt', u'urg', u'approv', u'hospit', u'licenc']
[u'financi', u'offic', u'plead', u'guilti', u'enron', u'charg']
[u'finegan', u'relish', u'challeng']
[u'finnegan', u'relish', u'challeng']
[u'crew', u'alert', u'baxter', u'disturb']
[u'firefight', u'contain', u'helen', u'blaze']
[u'firm', u'ask', u'explain', u'fals', u'alert', u'messag']
[u'train', u'head', u'darwin', u'adelaid']
[u'fischer', u'confid', u'rail', u'link', u'succeed']
[u'flight', u'attend', u'hospitalis', u'suspect', u'sar']
[u'olymp', u'rower', u'await', u'sentenc']
[u'rail', u'employe', u'convict', u'attack']
[u'lead']
[u'fund', u'help', u'boost', u'children', u'hospit']
[u'ganguli', u'prais', u'indian', u'perform']
[u'messag', u'send', u'injur', u'sydney', u'swift']
[u'global', u'confer', u'showcas', u'resourc']
[u'glori', u'face', u'injuri', u'crisi']
[u'gold', u'coast', u'boxer', u'book', u'fight', u'ruiz']
[u'govt', u'bulli', u'nauru', u'doctor', u'visit']
[u'govt', u'assist', u'naurus', u'medic', u'servic']
[u'guccion', u'tumbl', u'sydney']
[u'hawk', u'high', u'defeat', u'taipan']
[u'health', u'equip', u'deal', u'sar', u'costello']
[u'hewitt', u'sydney', u'semi', u'final', u'scud']
[u'hick', u'famili', u'cheer', u'stand', u'militari', u'trial']
[u'hickss', u'lawyer', u'back', u'critic', u'militari', u'trial']
[u'hospit', u'labour', u'babi', u'boom']
[u'hospit', u'probe', u'return', u'gambier']
[u'humbl', u'croc', u'look', u'import']
[u'indigen', u'bodi', u'call', u'justic', u'discriminatori']
[u'inspir', u'rabbit', u'proof', u'fenc', u'pass', u'away']
[u'iraqi', u'shell', u'chemic', u'danish', u'armi']
[u'islam', u'milit', u'detain', u'singapor']
[u'japanes', u'compani', u'creat', u'dream', u'machin']
[u'japan', u'asago', u'make', u'tenni', u'final', u'hobart']
[u'kimberley', u'communiti', u'seek', u'input', u'legisl']
[u'latham', u'highlight', u'concern', u'wilton', u'airport', u'site']
[u'latham', u'pledg', u'help', u'solv', u'gambl', u'problem']
[u'zimbabw', u'clash']
[u'fire', u'line']
[u'libya', u'ratifi', u'nuclear', u'chemic', u'treati']
[u'long', u'wait', u'newcastl', u'market']
[u'carri', u'bullet', u'arrest', u'heathrow']
[u'critic', u'injur', u'util']
[u'face', u'court', u'cannabi', u'plant']
[u'face', u'court', u'child', u'care', u'crash']
[u'mayor', u'say', u'govt', u'atlas']
[u'mayor', u'seek', u'apolog', u'complaint', u'drop']
[u'mayor', u'case', u'continu', u'road', u'fund', u'scheme']
[u'mayor', u'unhappi', u'rail', u'termin', u'garden', u'shed']
[u'mcrae', u'bright', u'spot', u'dakar', u'ralli']
[u'melbourn', u'face', u'date', u'chang']
[u'fisher', u'away', u'gill', u'fight']
[u'motorist', u'strand', u'floodwat']
[u'museum', u'team', u'dissect', u'dead', u'whale']
[u'stop', u'hervey', u'opposit']
[u'nightclub', u'murder', u'case', u'adjourn']
[u'north', u'port', u'handl', u'pasminco', u'busi']
[u'north', u'west', u'farmer', u'welcom', u'drench']
[u'prison', u'offic', u'return', u'work']
[u'rail', u'author', u'condemn', u'waterfal']
[u'record', u'drop', u'jobless', u'rate']
[u'user']
[u'unemploy', u'rate', u'fall']
[u'compani', u'eye', u'darwin', u'casino']
[u'olyroo', u'thrash', u'samoa']
[u'bega', u'moruya', u'mental', u'health']
[u'pakistani', u'train', u'leav', u'india']
[u'pasminco', u'caus', u'stink', u'hobart', u'withdraw']
[u'passeng', u'criticis', u'cabin', u'crew', u'flight']
[u'perth', u'soccer', u'team', u'crippl', u'injuri']
[u'plane', u'make', u'emerg', u'land', u'china']
[u'plan', u'woe', u'sidelin', u'rural', u'machineri', u'worker']
[u'plan', u'slash', u'ambul', u'wait', u'time']
[u'plea', u'smoke', u'pub']
[u'leader', u'quit', u'cabinet']
[u'polic', u'interview', u'devonport', u'stab', u'victim']
[u'polic', u'issu', u'arrest', u'warrant', u'home', u'detent']
[u'polic', u'search', u'miss', u'woman']
[u'priest', u'oblig', u'report', u'crimin', u'confess']
[u'public', u'urg', u'toxic', u'soil', u'recycl']
[u'push', u'continu', u'hospit', u'site', u'near', u'campus']
[u'qlds', u'jobless', u'rate', u'creep', u'higher']
[u'queensland', u'truck', u'driver', u'appear', u'court']
[u'rail', u'link', u'open', u'busi']
[u'rain', u'help', u'drought', u'farmer']
[u'brigad', u'leader', u'arrest', u'cairo']
[u'research', u'gene', u'link', u'alcohol']
[u'research', u'develop', u'platypus', u'diseas', u'vaccin']
[u'resid', u'evacu', u'nambour', u'pool']
[u'review', u'consid', u'indigen', u'polic', u'offic']
[u'roddick', u'henin', u'hardenn', u'open', u'seed']
[u'ruddock', u'deni', u'hickss', u'case', u'unfair']
[u'jobless', u'rate', u'increas', u'slight']
[u'sar', u'infect', u'unlik', u'sydney', u'case']
[u'sar', u'unlik', u'sydney', u'case']
[u'sean', u'penn', u'report', u'iraq', u'powder']
[u'ship', u'chang', u'cast', u'doubt', u'job']
[u'singapor', u'highest', u'execut', u'rate', u'world']
[u'sothebi', u'auction', u'work', u'picasso', u'dega']
[u'south', u'korea', u'foreign', u'minist', u'resign']
[u'spirit', u'robot', u'roll', u'short', u'drive', u'mar']
[u'state', u'forest', u'offer', u'log', u'assur']
[u'state', u'urg', u'ratifi', u'greenhous', u'protocol']
[u'stronger', u'dollar', u'news', u'winegrow']
[u'syria', u'see', u'hope', u'peac', u'sharon']
[u'tabcorp', u'defend', u'decis', u'increas', u'minimum']
[u'taboo', u'close', u'broadway', u'million', u'loss']
[u'tamworth', u'hospit', u'benefit', u'health', u'fund']
[u'govt', u'investig', u'ferri', u'freight', u'potenti']
[u'jobless', u'rate', u'unchang', u'trend', u'term']
[u'taskforc', u'recommend', u'sar', u'clinic']
[u'teenag', u'musician', u'dead', u'camp']
[u'tenterfield', u'face', u'hour', u'medic', u'dilemma']
[u'thiev', u'target', u'aria', u'award', u'win', u'waif']
[u'thoma', u'prais', u'bush', u'space', u'plan']
[u'thoma', u'set', u'commonwealth', u'record']
[u'thousand', u'iraqi', u'gather', u'demand', u'elect']
[u'kill', u'iraqi', u'drive']
[u'thuringowa', u'experi', u'build', u'boom']
[u'toowoomba', u'player', u'matilda', u'select']
[u'tough', u'time', u'take', u'shine', u'opal', u'mine']
[u'hick', u'home', u'latham']
[u'death', u'zero', u'holiday', u'road', u'toll']
[u'green', u'turtl', u'releas', u'wild']
[u'charg', u'mugab', u'plane', u'stori']
[u'union', u'highlight', u'port', u'secur', u'failur']
[u'student', u'debt', u'blow', u'opposit']
[u'aust', u'bilater', u'energi', u'talk', u'hold']
[u'captur', u'iraq', u'want', u'list']
[u'china', u'lead', u'global', u'econom', u'recoveri']
[u'shatter', u'record', u'annual', u'trade', u'deficit']
[u'soldier', u'suicid', u'rise', u'iraq', u'pentagon']
[u'tech', u'stock', u'post', u'strong', u'profit']
[u'troop', u'kill', u'iraqi', u'battl']
[u'vail', u'remain', u'confid', u'trade', u'talk']
[u'jobless', u'rate', u'rise']
[u'firm', u'sign', u'plus', u'woodchip', u'deal']
[u'oppn', u'urg', u'stronger', u'line', u'predatori', u'fish']
[u'parti', u'bicker', u'underdog', u'status']
[u'unemploy', u'rate', u'remain', u'static']
[u'western', u'brace', u'possibl', u'flood']
[u'world', u'leader', u'attend', u'emerg', u'polio', u'erad']
[u'student', u'miss', u'place']
[u'farmer', u'hope', u'better', u'futur']
[u'actress', u'hagen', u'dead']
[u'adelaid', u'fring', u'festiv', u'ticket', u'sale']
[u'push', u'world', u'final', u'rematch', u'brisban']
[u'alic', u'await', u'histor', u'train']
[u'alic', u'darwin', u'rail', u'boost', u'port', u'augusta', u'rann']
[u'alic', u'welcom', u'histor', u'train']
[u'american', u'team', u'lose', u'sprinter']
[u'angler', u'fin', u'illeg', u'sell', u'fish']
[u'armaguard', u'steal', u'sydney']
[u'arsenal', u'keeper', u'lehmann', u'gun', u'english', u'refere']
[u'close', u'lower', u'sluggish', u'trade']
[u'atletico', u'sevilla', u'scrape', u'king']
[u'aussi', u'rumford', u'fire', u'south', u'africa', u'lead']
[u'aust', u'energi', u'talk', u'finish', u'optimist', u'note']
[u'author', u'prepar', u'possibl', u'river', u'flood']
[u'bank', u'call', u'boost', u'region', u'servic']
[u'beatti', u'clear', u'favourit', u'elect']
[u'beatti', u'deni', u'second', u'minist', u'quit']
[u'beatti', u'seek', u'apolog', u'rise']
[u'boat', u'facil', u'upgrad', u'tasmania']
[u'bremer', u'return', u'discuss', u'iraq', u'futur']
[u'brigitt', u'releas', u'immin', u'lack', u'evid']
[u'britain', u'probe', u'death', u'activist', u'shoot', u'israel']
[u'british', u'soldier', u'widow', u'releas', u'damn', u'iraq', u'tape']
[u'break', u'hill', u'council', u'apprentic']
[u'burma', u'releas', u'member', u'aung', u'kyi']
[u'burnett', u'push', u'irrig', u'rescu', u'plan']
[u'antarct', u'expedition']
[u'bomb', u'injur', u'karachi']
[u'boost', u'grain', u'receiv', u'network']
[u'central', u'aust', u'warn', u'rotavirus', u'outbreak']
[u'child', u'abus', u'failur', u'slam']
[u'children', u'salmonella', u'victim', u'award', u'compo']
[u'chines', u'court', u'uphold', u'death', u'sentenc']
[u'citrus', u'export', u'cast', u'doubt', u'rail', u'line']
[u'claim', u'restaur', u'rip', u'casual', u'employe']
[u'clear', u'rise', u'accus']
[u'coalit', u'target', u'rose', u'seat']
[u'concern', u'shortag', u'mening', u'vaccin']
[u'council', u'back', u'leisur', u'centr', u'plan']
[u'council', u'happi', u'properti', u'sale', u'result']
[u'council', u'sack', u'rubbish', u'collector']
[u'council', u'oppos', u'centr', u'closur']
[u'countri', u'music', u'festiv', u'spark', u'road', u'closur']
[u'croc', u'hope', u'form', u'revers', u'breaker']
[u'cyclon', u'damag', u'cost', u'niue', u'pacif', u'forum']
[u'dairi', u'factori', u'list']
[u'delaney', u'take', u'coach', u'role']
[u'eagl', u'extend', u'worsfold', u'contract']
[u'ebola', u'come', u'bush', u'meat', u'studi']
[u'ebola', u'research', u'link', u'virus', u'anim']
[u'emerg', u'unit', u'announc', u'tweed', u'hospit']
[u'england', u'moodi', u'miss', u'nation', u'open']
[u'farmer', u'urg', u'govt', u'push', u'bank', u'report', u'find']
[u'fatal', u'accid', u'prompt', u'polic', u'pursuit', u'probe']
[u'ferdinand', u'appeal', u'like', u'report']
[u'brisban', u'hotel', u'extinguish']
[u'trail', u'mainten', u'doubt']
[u'blood', u'roddick', u'kooyong']
[u'kill', u'arson', u'attack', u'chines', u'market']
[u'flight', u'attend', u'clear', u'sar', u'releas']
[u'flight', u'attend', u'releas', u'hospit']
[u'flight', u'record', u'crash', u'egyptian', u'plane', u'locat']
[u'flood', u'warn', u'issu', u'drought', u'area']
[u'arrest', u'sydney', u'drug', u'raid']
[u'franco', u'lead', u'hawaii', u'year', u'open']
[u'frazier', u'hobart', u'final']
[u'frazier', u'triumph', u'hobart']
[u'gallop', u'sell']
[u'crisi', u'pasminco', u'smelter', u'product']
[u'survey', u'work', u'start', u'newcastl']
[u'german', u'drug', u'smuggler', u'rumbl', u'natur']
[u'gilchrist', u'guid', u'australia', u'victori']
[u'global', u'internet', u'child', u'porn', u'ring', u'smash']
[u'crop', u'appeal', u'farmer']
[u'graf', u'edberg', u'elect', u'tenni', u'hall', u'fame']
[u'grape', u'product', u'tip', u'rise']
[u'green', u'light', u'lake', u'macquari', u'station']
[u'hacker', u'target', u'server']
[u'hampshir', u'want', u'warn', u'stay']
[u'hanson', u'wont', u'campaign', u'elect', u'ettridg']
[u'heaven', u'open']
[u'heavi', u'rain', u'leav', u'worker', u'strand']
[u'hewitt', u'meet', u'moya', u'sydney', u'final']
[u'hope', u'kimberley', u'cotton', u'crop', u'plan']
[u'hospit', u'highlight', u'need', u'cancer', u'treatment']
[u'ibm', u'profit', u'soar', u'strong', u'sale']
[u'indigen', u'communiti', u'polic', u'alic', u'train']
[u'indigen', u'rock', u'move', u'road']
[u'indonesia', u'ban', u'poultri', u'import', u'asian']
[u'injur', u'wilkinson', u'delay', u'comeback']
[u'injuri', u'setback', u'tszyu']
[u'investig', u'death', u'custodi', u'begin']
[u'iran', u'quak', u'toll', u'top']
[u'israel', u'high', u'court', u'review', u'secur', u'barrier']
[u'japanes', u'troop', u'iraq']
[u'juve', u'brink', u'semi', u'edg', u'perugia']
[u'king', u'conquer', u'bullet']
[u'kookaburra', u'pakistan', u'draw']
[u'languag', u'run', u'mar', u'rover']
[u'metal', u'press', u'bow', u'technolog']
[u'latham', u'brisban', u'beatti']
[u'latham', u'prais', u'gambl', u'stanc']
[u'leed', u'cool', u'sheikh', u'specul']
[u'lee', u'rethink', u'telstra', u'sale']
[u'legal', u'delay', u'falconio', u'murder', u'hear']
[u'lib', u'townsvill', u'candid', u'reject', u'industri']
[u'live', u'sheep', u'export', u'vietnam', u'begin']
[u'macfarlan', u'eye', u'deal']
[u'charg', u'ammunit', u'flight']
[u'fin', u'illeg', u'fish']
[u'custodi', u'syring', u'hold']
[u'media', u'organis', u'push', u'aid', u'awar']
[u'melbourn', u'restaur', u'clear', u'salmonella']
[u'microsoft', u'chang', u'window', u'music', u'browser']
[u'ministeri', u'resign', u'hurt', u'campaign', u'beatti']
[u'missil', u'defenc', u'program', u'lead', u'arm', u'race']
[u'moscow', u'court', u'keep', u'yuko', u'chief', u'bar']
[u'mount', u'resid', u'begin', u'flood', u'clean']
[u'push', u'shoalhaven', u'licenc']
[u'face', u'clean', u'flood']
[u'deni', u'rogu', u'trade', u'authoris']
[u'investig', u'result', u'februari']
[u'nalbandian', u'face', u'agassi', u'kooyong', u'final']
[u'crimin', u'punish', u'scheme', u'test']
[u'chopper', u'help', u'canberra', u'defenc']
[u'polic', u'train', u'program', u'plan', u'alic']
[u'technolog', u'help', u'save', u'water']
[u'zealand', u'bowler', u'mill', u'escap', u'fine']
[u'niue', u'unlik', u'host', u'pacif', u'island', u'forum']
[u'rail', u'boss', u'face', u'disciplinari', u'action']
[u'rail', u'manag', u'sack', u'waterfal', u'disast']
[u'teach', u'posit', u'fill', u'fast']
[u'nurs', u'home', u'staff', u'ask', u'strike']
[u'tedi', u'suit', u'drop']
[u'olyroo', u'crush']
[u'oneil', u'claim', u'miracl', u'fifth', u'time', u'trial', u'crown']
[u'femal', u'democrat', u'presidenti', u'candid']
[u'oversea', u'bear', u'aussi', u'prefer', u'capit']
[u'pakistan', u'india', u'rail', u'link', u'resum', u'year']
[u'parmalat', u'bank', u'draw', u'probe', u'report']
[u'petit', u'seek', u'speed', u'limit', u'review']
[u'play', u'resum', u'sydney', u'intern']
[u'poison', u'think', u'wildlif', u'death']
[u'polic', u'identifi', u'drown', u'victim']
[u'polic', u'look', u'miss', u'caloundra']
[u'polic', u'raid', u'home', u'sydney']
[u'pont', u'win', u'toss', u'hobart']
[u'public', u'warn', u'virus']
[u'queanbeyan', u'council', u'pledg', u'park', u'facelift']
[u'rail', u'delay', u'play', u'sydney', u'intern']
[u'rain', u'bring', u'relief', u'parch', u'southern']
[u'rain', u'trigger', u'northern', u'flood', u'watch']
[u'rann', u'govern', u'accus', u'break', u'elect']
[u'region', u'upbeat', u'amidst', u'tough', u'time']
[u'remain', u'vietnam', u'soldier', u'return']
[u'renew', u'energi', u'target', u'track', u'report']
[u'renmark', u'rural', u'clinic', u'school', u'get', u'fund', u'boost']
[u'reprocess', u'fuel', u'rod', u'north', u'korea']
[u'republ', u'gold', u'asx']
[u'resid', u'home', u'chlorin', u'leak']
[u'sack', u'foreign', u'minist', u'nkorea', u'polici']
[u'rover', u'roll', u'martian', u'surfac']
[u'santa', u'maria', u'invad', u'jackson']
[u'sar', u'virus', u'civet', u'cage']
[u'rule', u'time', u'chang', u'commonwealth', u'game']
[u'scientist', u'hope', u'platypus', u'diseas', u'vaccin']
[u'seven', u'iraqi', u'shoot', u'dead', u'soldier']
[u'shackl', u'cassano', u'roman', u'conquest', u'say']
[u'shuttl', u'defend', u'bolster', u'celtic', u'titl', u'charg']
[u'korea', u'name', u'veteran', u'diplomat', u'foreign', u'minist']
[u'soar', u'aussi', u'beef', u'price', u'threaten', u'japanes', u'sale']
[u'solomon', u'internet', u'provid', u'appeal', u'custom']
[u'south', u'africa', u'gun', u'australia', u'crown', u'say']
[u'star', u'investor']
[u'strong', u'king', u'island', u'milk']
[u'summit', u'pledg', u'mass', u'immunis', u'polio']
[u'support', u'urg', u'wolv']
[u'suspend', u'atsic', u'chairman', u'appeal', u'reinstat']
[u'sydney', u'mental', u'health', u'facil', u'scrutini']
[u'sydney', u'rail', u'delay', u'expect', u'waterfal', u'probe']
[u'tasmanian', u'council', u'divid', u'propos', u'reform']
[u'opposit', u'seiz', u'leak', u'prison', u'report']
[u'thomson', u'flood', u'peak', u'revis']
[u'kill', u'student', u'hit', u'iraq']
[u'thwait', u'ask', u'decis', u'duck', u'season']
[u'toddler', u'kill', u'sydney', u'polic', u'pursuit']
[u'todt', u'confid', u'french', u'green', u'light']
[u'tough', u'open', u'start', u'scud', u'larkham']
[u'transform', u'blast', u'black', u'town']
[u'tree', u'put', u'pay', u'vatanen', u'dakar']
[u'trucki', u'court', u'drug', u'charg']
[u'tszyu', u'call', u'titl', u'fight']
[u'dead', u'wound', u'brawl', u'indonesia', u'lombok']
[u'refus', u'confirm', u'china', u'claim']
[u'releas', u'kelli', u'report']
[u'ulladulla', u'say', u'goodby', u'plastic', u'bag']
[u'ultralight', u'pilot', u'make', u'forc', u'land']
[u'deleg', u'east', u'timor', u'return', u'home']
[u'univers', u'support', u'boost', u'number', u'rural', u'doctor']
[u'econom', u'data', u'boost', u'greenback']
[u'object', u'trade', u'sanction']
[u'propos', u'defenc', u'train', u'facil', u'australia']
[u'weapon', u'hunter', u'wont', u'return', u'iraq', u'report']
[u'venezuela', u'decriminalis', u'theft']
[u'govt', u'make', u'chang', u'disabl', u'taxi', u'subsidi']
[u'mainten', u'work', u'caus', u'disrupt']
[u'waterfal', u'find', u'respons', u'inadequ']
[u'water', u'restrict', u'loom', u'break', u'hill']
[u'water', u'shortag', u'reduc', u'plant']
[u'indigen', u'communiti']
[u'town', u'fight', u'salin']
[u'watt', u'nomin', u'screen', u'actor', u'guild', u'award']
[u'waugh', u'lead']
[u'urg', u'workplac', u'caution', u'death']
[u'accus', u'hold', u'malaria', u'drug']
[u'kill', u'colonel', u'door']
[u'wolv', u'newcastl', u'notch', u'win']
[u'wolv', u'newcastl', u'stay', u'aliv']
[u'wolv', u'seek', u'turn', u'premiership', u'hierarchi', u'upsid']
[u'woman', u'court', u'stab']
[u'work', u'begin', u'meatwork', u'revamp']
[u'workplac', u'death', u'spark', u'safeti', u'remind']
[u'world', u'media', u'urg', u'fight', u'aid']
[u'zimbabw', u'rope']
[u'opposit', u'call', u'independ', u'child', u'abus']
[u'actor', u'cruis', u'play', u'cupid', u'portugues', u'coupl']
[u'allan', u'grab', u'hawaii', u'lead', u'miss']
[u'allan', u'seiz', u'hawaii', u'clubhous', u'lead']
[u'alleg', u'bali', u'paedophil', u'aust', u'diplomat']
[u'antarct', u'divis', u'seek', u'women', u'worker']
[u'arrest', u'diplomat', u'previous', u'investig']
[u'australian', u'miss', u'go', u'overboard']
[u'beatti', u'find', u'campaign', u'charact', u'build']
[u'beatti', u'springborg', u'fight', u'underdog', u'status']
[u'black', u'recov', u'flash', u'airlin', u'boe']
[u'black', u'cap', u'post', u'record', u'score', u'pakistan']
[u'black', u'cap', u'thriller']
[u'british', u'woman', u'win', u'right', u'appeal']
[u'brown', u'urg', u'greater', u'educ', u'fund']
[u'bull', u'blue']
[u'butt', u'unavoid', u'say', u'ferguson']
[u'camplin', u'retain', u'number', u'spot']
[u'canberra', u'bushfir', u'exhibit', u'open']
[u'china', u'arrest', u'explos']
[u'china', u'confirm', u'sar', u'case']
[u'coalit', u'promis', u'return', u'polic', u'queen', u'street']
[u'compani', u'cut', u'heaven', u'link']
[u'controversi', u'mar', u'suarez', u'canberra']
[u'countri', u'music', u'lover', u'brave', u'delug', u'tamworth']
[u'coupl', u'escap', u'burn', u'home']
[u'rossi', u'name', u'itali', u'captain', u'england', u'clash']
[u'ettridg', u'plan', u'book', u'expos', u'shenanigan']
[u'urg', u'rapid', u'action', u'save', u'endang', u'speci']
[u'expert', u'disput', u'claim', u'emiss', u'harm', u'rock']
[u'team', u'agre', u'french', u'grand', u'prix']
[u'fear', u'prison', u'unrest', u'amid', u'unit', u'closur']
[u'ferdinand', u'appeal', u'start', u'tuesday']
[u'german', u'court', u'give', u'worker', u'boot']
[u'gilchrist', u'predict', u'doubl']
[u'girl', u'stab', u'death']
[u'global', u'health', u'bodi', u'deni', u'malpractic', u'malaria']
[u'govt', u'award', u'fair', u'compens', u'rail', u'oper']
[u'govt', u'renew', u'energi', u'target', u'pathet']
[u'green', u'pleas', u'poll']
[u'henin', u'hardenn', u'claim', u'sydney', u'crown']
[u'histori', u'train', u'reach', u'darwin']
[u'hobart', u'cheapest', u'live', u'report']
[u'houllier', u'insist', u'heskey', u'sale']
[u'howard', u'meet', u'defenc', u'personnel']
[u'hrbati', u'take', u'titl']
[u'hunt', u'springbok', u'coach', u'throw', u'wide', u'open']
[u'iranian', u'demand', u'revers', u'elect', u'ban']
[u'iraq', u'bind', u'japanes', u'troop', u'arriv', u'kuwait']
[u'irrit', u'spray', u'forc', u'pub', u'evacu']
[u'israel', u'sweden', u'envoy', u'attack', u'suicid', u'bomber']
[u'jackson', u'enter', u'guilti', u'plea']
[u'johnson', u'announc', u'retir']
[u'katherin', u'celebr', u'railway', u'link']
[u'kookaburra', u'face', u'tough', u'task', u'pakistan']
[u'latham', u'back', u'premier', u'medicar', u'elect', u'platform']
[u'lebanon', u'execut', u'prison', u'year']
[u'longreach', u'spar', u'major', u'flood']
[u'lord', u'mayor', u'pull', u'sydney', u'elect']
[u'question', u'teen', u'stab']
[u'mar', u'rover', u'get', u'busi']
[u'refus', u'bail', u'million', u'dollar', u'drug', u'bust']
[u'moya', u'injuri', u'hand', u'hewitt', u'sydney']
[u'moya', u'injuri', u'hand', u'sydney', u'hewitt']
[u'say', u'rain', u'relief', u'despit', u'flood']
[u'nalbandian', u'captur', u'kooyong', u'classic']
[u'nalbandian', u'dethron', u'agassi', u'king', u'kooyong']
[u'nasa', u'decre', u'earli', u'demis', u'hubbl', u'telescop']
[u'zealand', u'toss', u'bat', u'pakistan']
[u'kill', u'injur', u'baghdad', u'bomb', u'blast']
[u'pakistan', u'presid', u'demand', u'holi']
[u'pari', u'dakar', u'masuoka', u'triumph', u'peterhansel', u'stay']
[u'pari', u'london', u'look', u'landmark', u'olymp', u'bid']
[u'pelous', u'captain', u'franc']
[u'postal', u'worker', u'threaten', u'strike', u'wag']
[u'powel', u'maintain', u'saddam', u'threat']
[u'price', u'right', u'open']
[u'razorback', u'dodg', u'bullet']
[u'cross', u'disappoint', u'guantanamo', u'condit']
[u'river', u'fishway', u'point', u'migrat']
[u'roddick', u'pull', u'kooyong', u'play']
[u'rumford', u'cape', u'town']
[u'samoa', u'seek', u'formal', u'abolish', u'death', u'penalti']
[u'singapor', u'defend', u'execut', u'polici']
[u'sixteen', u'migrant', u'drown', u'spanish', u'island']
[u'smith', u'gibb', u'share', u'record', u'south', u'africa', u'spree']
[u'south', u'africa', u'declar', u'drought', u'disast', u'area']
[u'spirit', u'breaker', u'post', u'comfort', u'win']
[u'stoddart', u'float', u'seater', u'celeb', u'race']
[u'strong', u'wind', u'strand', u'gold', u'coast', u'theme', u'park']
[u'surf', u'indi', u'filmmak', u'sundanc', u'festiv']
[u'tamworth', u'camper', u'move', u'flood', u'alert']
[u'tech', u'stock', u'boost', u'market']
[u'teen', u'stab', u'spark', u'manhunt', u'brisban']
[u'wive', u'club', u'author', u'die', u'plastic']
[u'thousand', u'street', u'support', u'hama']
[u'civilian', u'kill', u'iraq', u'blast']
[u'iraqi', u'soldier', u'kill', u'roadsid', u'bomb']
[u'kashmir', u'rebel', u'leader', u'kill', u'indian', u'forc']
[u'tourist', u'rescu', u'theme', u'park', u'chairlift']
[u'train', u'near', u'darwin', u'histor', u'journey']
[u'host', u'quit', u'arab']
[u'kill', u'crash']
[u'consid', u'modifi', u'iraq', u'handov', u'plan']
[u'expect', u'deal', u'satellit', u'navig']
[u'probe', u'abus', u'iraqi', u'prison']
[u'fact', u'find', u'team', u'iraq', u'disput']
[u'veron', u'fli', u'home', u'treatment']
[u'vietnam', u'order', u'mass', u'chicken', u'cull', u'control', u'bird']
[u'nurs', u'face', u'rise', u'tide', u'violenc']
[u'waterfal', u'sack', u'cover']
[u'woodbridg', u'make', u'histori', u'sydney']
[u'woodbridg', u'start', u'drive', u'doubl', u'record']
[u'wood', u'pull', u'cycl', u'doubl']
[u'world', u'record', u'holder', u'jacob', u'posit', u'test']
[u'world', u'social', u'forum', u'open', u'anti']
[u'young', u'nadal', u'fire', u'shot', u'zealand']
[u'investig', u'australian', u'accus', u'child']
[u'allan', u'fade', u'fifth', u'hawaii']
[u'anwar', u'support', u'protest', u'jail']
[u'aussi', u'run', u'wicket']
[u'author', u'urg', u'parent', u'bewar', u'rise']
[u'beatti', u'promis', u'health', u'fund', u'boost']
[u'beatti', u'vow', u'tree', u'clear']
[u'beckham', u'tell', u'real', u'butt', u'report']
[u'berlusconi', u'doctor', u'confirm', u'facelift']
[u'blast', u'destroy', u'muslim', u'name', u'french']
[u'breaker', u'chase', u'second']
[u'bushrang', u'hold', u'redback']
[u'clijster', u'confirm', u'open']
[u'clone', u'child', u'suffer', u'health', u'problem']
[u'ahead', u'rare', u'plant', u'speci']
[u'elder', u'woman', u'die', u'hous']
[u'england', u'skipper', u'johnson', u'quit', u'intern', u'rugbi']
[u'farmer', u'anger', u'beatti', u'tree', u'clear', u'promis']
[u'flood', u'fail', u'dampen', u'tamworth', u'spirit']
[u'flood', u'eas', u'northern']
[u'kill', u'injur', u'locomot', u'hit', u'train']
[u'franc', u'find', u'second', u'black', u'crash']
[u'french', u'minist', u'slam', u'headscarf', u'demonstr']
[u'frigid', u'winter', u'put', u'north', u'eastern', u'deep', u'freez']
[u'german', u'anatomist', u'execut', u'chines', u'prison']
[u'gibb', u'kalli', u'record', u'protea', u'domin']
[u'glori', u'extend', u'lead']
[u'granvill', u'memori', u'honour', u'waterfal', u'victim']
[u'hansen', u'lile', u'share', u'south', u'african', u'open', u'lead', u'rumford']
[u'harvey', u'gillespi', u'australia']
[u'hewitt', u'pleas', u'open', u'build']
[u'histori', u'make', u'train', u'get', u'busi']
[u'holling', u'sue', u'conrad', u'black', u'million']
[u'step', u'illeg', u'bet']
[u'india', u'set', u'record', u'total']
[u'indigen', u'peopl', u'reap', u'job', u'rail', u'link']
[u'inquiri', u'criticis', u'britain', u'anti', u'terror', u'polici']
[u'israel', u'open', u'gaza', u'cross', u'suicid', u'bomb']
[u'japanes', u'militari', u'equip', u'arriv', u'kuwait']
[u'kleinschmidt', u'sainct', u'reach', u'dakar']
[u'labor', u'pledg', u'volunt', u'coastguard']
[u'latham', u'plan', u'scheme', u'foreign', u'worker']
[u'laxman', u'dravid', u'lead', u'indian', u'charg']
[u'laxman', u'lead', u'india', u'victori']
[u'leed', u'rock', u'wolv', u'bite']
[u'die', u'dive', u'accid', u'portsea']
[u'drown', u'victor', u'harbour']
[u'drown', u'coast']
[u'memori', u'servic', u'honour', u'victim', u'granvill']
[u'modena', u'dampen', u'lazio', u'relief']
[u'museum', u'loss', u'indigen', u'remain', u'reveal']
[u'declar', u'north', u'west', u'disast', u'zone']
[u'face', u'vic', u'women', u'cricket', u'final']
[u'offici', u'probe', u'prison', u'overdos']
[u'year', u'canberra', u'recal', u'bushfir', u'loss']
[u'pakistan', u'detain', u'aid', u'countri', u'nuclear', u'bomb']
[u'pakistan', u'ahm', u'report', u'suspect', u'action']
[u'polic', u'arrest', u'shoot']
[u'polic', u'hunt', u'gangland', u'shoot']
[u'polic', u'question', u'sydney', u'shoot']
[u'polic', u'question', u'algerian', u'journalist']
[u'press', u'attack', u'jackson', u'street', u'antic']
[u'price', u'pip', u'heaven', u'titl']
[u'prison', u'take', u'hospit', u'suspect', u'overdos']
[u'prison', u'offic', u'critic', u'opposit', u'leak']
[u'public', u'servant', u'threaten', u'stop', u'politician']
[u'flood', u'level', u'expect', u'peak']
[u'opposit', u'unveil', u'health', u'polici']
[u'qlds', u'central', u'west', u'brace', u'flood', u'peak']
[u'redback', u'chase']
[u'govt', u'vow', u'continu', u'fight', u'wast', u'dump']
[u'sceptic', u'greet', u'clone']
[u'second', u'firm', u'sign', u'adelaid', u'darwin', u'trade']
[u'selector', u'inspect', u'gabba', u'name', u'team']
[u'sharon', u'back', u'ambassador', u'action', u'suicid']
[u'sorenstam', u'target', u'calendar', u'grand', u'slam', u'reduc']
[u'strong', u'finish', u'popey', u'turn']
[u'struggl', u'ranger', u'titl', u'hop', u'aliv']
[u'suicid', u'bomber', u'strike', u'outsid', u'baghdad']
[u'sydney', u'hospit', u'donat', u'run', u'cost']
[u'sydney', u'muslim', u'join', u'protest', u'french']
[u'teenag', u'rescu', u'cliff', u'fall']
[u'teen', u'arrest', u'crash', u'steal']
[u'thoma', u'berlin', u'swim', u'meet']
[u'thousand', u'march', u'pari', u'anti', u'nuclear', u'protest']
[u'thousand', u'protest', u'london', u'islam']
[u'tourist', u'tell', u'pain', u'trek', u'break', u'ankl']
[u'blast', u'rock', u'lebanon', u'camp', u'tens', u'execut']
[u'iraqi', u'kill', u'explos', u'devic', u'deton']
[u'women', u'injur', u'hit', u'power', u'pole']
[u'test', u'cow', u'suspect', u'import']
[u'troop', u'iraq', u'offici']
[u'valencia', u'barca', u'squander', u'point']
[u'vatican', u'host', u'reconcili', u'concert']
[u'vic', u'melbourn']
[u'woodbridg', u'target', u'newcomb', u'slam', u'talli']
[u'wwii', u'aerial', u'photograph', u'internet']
[u'accid', u'investig', u'underway']
[u'airlin', u'investig', u'cabin', u'fume', u'mysteri']
[u'come', u'polli', u'make', u'offic', u'spot']
[u'qaeda', u'suspect', u'arrest', u'pakistan']
[u'altern', u'sewerag', u'pipelin', u'plan', u'win', u'support']
[u'alumina', u'refineri', u'object', u'discuss']
[u'ambassador', u'attack', u'draw', u'sweden']
[u'anderson', u'angri', u'beatti', u'land', u'clear', u'pledg']
[u'anxious', u'wait', u'univers', u'offer']
[u'arm', u'hold', u'trigger', u'polic', u'manhunt']
[u'arsenal', u'controversi', u'villa']
[u'aust', u'firm', u'forefront', u'mar', u'research']
[u'aust', u'firm', u'share', u'iraq', u'contract']
[u'author', u'probe', u'south', u'east', u'fish', u'kill']
[u'author', u'probe', u'suspect', u'jail', u'drug', u'overdos']
[u'baghdad', u'suicid', u'bomb', u'death', u'toll', u'like', u'rise']
[u'barclay', u'brother', u'black', u'newspap', u'stake']
[u'bendigo', u'resid', u'decid', u'univers', u'futur']
[u'birdi', u'blitz', u'steer', u'immelman', u'south', u'african', u'titl']
[u'bomb', u'scare', u'forc', u'bind', u'plane', u'divert']
[u'boost', u'indigen', u'geraldton']
[u'bouncer', u'charg', u'hook', u'fight', u'life']
[u'bush', u'space', u'plan', u'get', u'thumb']
[u'calm', u'offer']
[u'camplin', u'gold', u'lead', u'aussi', u'charg']
[u'cancer', u'survivor', u'wilson', u'take', u'cycl', u'titl']
[u'carl', u'tag', u'vickeri', u'england', u'skipper']
[u'cautious', u'reaction', u'highway', u'fund', u'talk']
[u'celtic', u'stay', u'clear', u'battl', u'heart']
[u'chechen', u'claim', u'shes', u'world', u'oldest']
[u'code', u'conduct', u'launch', u'lobster', u'fishermen']
[u'consum', u'urg', u'conserv', u'power']
[u'council', u'boundari', u'review', u'underway']
[u'court', u'tell', u'detect', u'profession']
[u'cricket', u'gather', u'bendigo', u'competit']
[u'cricket', u'world', u'mourn', u'loss', u'david', u'hook']
[u'croc', u'victori', u'breaker']
[u'csiro', u'warn', u'increas', u'temperatur']
[u'david', u'hook', u'precoci', u'prolif']
[u'deadlin', u'loom', u'doctor', u'regist']
[u'demand', u'rise', u'welfar', u'support']
[u'diana', u'crash', u'wit', u'say', u'involv']
[u'dog', u'bark', u'help', u'rescu', u'owner']
[u'dollar', u'dip']
[u'donat', u'flow', u'victim']
[u'downer', u'defend', u'diplomat', u'child', u'probe']
[u'down', u'farmer', u'warn', u'rise', u'mous', u'number']
[u'drown', u'investig', u'begin']
[u'educ', u'union', u'push', u'public', u'school', u'fund']
[u'elli', u'possibl', u'final', u'swift']
[u'defend', u'hawaiian', u'titl', u'foot', u'birdi']
[u'entri', u'mark', u'increas', u'cours', u'deakin']
[u'govt', u'flag', u'road', u'rail']
[u'fifth', u'bird', u'death', u'confirm', u'vietnam']
[u'firefight', u'test', u'safeti', u'gear']
[u'fishermen', u'accus', u'kill', u'eat', u'whale']
[u'flood', u'woe', u'eas', u'highway', u'begin', u'reopen']
[u'forecast', u'say', u'job', u'growth', u'peak']
[u'test', u'player', u'hook', u'critic', u'hotel']
[u'arrest', u'drug', u'charg']
[u'french', u'retriev', u'egypt', u'plane', u'blackbox']
[u'fume', u'caus', u'ill', u'melbourn', u'adelaid', u'flight']
[u'crisi', u'like', u'worsen', u'govt']
[u'gingin', u'concern', u'reduc', u'flow', u'local', u'brook']
[u'govt', u'contribut', u'bushfir', u'recoveri']
[u'govt', u'deni', u'public', u'advertis', u'blitz']
[u'greek', u'anti', u'hooligan', u'rule', u'spark', u'soccer', u'brawl']
[u'greek', u'coastguard', u'arrest', u'migrant']
[u'green', u'light', u'give', u'supermarket', u'develop']
[u'guccion', u'open', u'round']
[u'gympi', u'gold', u'receiv', u'sell', u'eldorado', u'mine']
[u'hayden', u'india', u'match']
[u'hollywood', u'produc', u'stark', u'die']
[u'hong', u'kong', u'group', u'bid', u'produc']
[u'hous', u'financ', u'figur', u'fall']
[u'howard', u'send', u'sympathi', u'hook', u'famili']
[u'icpa', u'unhappi', u'internet', u'access']
[u'india', u'russian', u'aircraft', u'carrier']
[u'inquiri', u'like', u'hear', u'hospit', u'mistreat']
[u'investig', u'begin', u'dreamworld', u'chair', u'lift']
[u'investig', u'urg', u'coal', u'ship', u'queue']
[u'iraq', u'reconstruct', u'contract', u'offer', u'fair']
[u'israel', u'armi', u'destroy', u'milit', u'hous', u'report']
[u'israel', u'arrest', u'islam', u'jihad', u'offici']
[u'isra', u'ambassador', u'get', u'attack', u'explain']
[u'japanes', u'defend', u'iraqi', u'troop', u'deploy']
[u'japan', u'urg', u'drop', u'beef', u'tariff']
[u'judg', u'consid', u'extradit', u'child', u'case']
[u'katich', u'replac', u'hayden', u'india', u'match']
[u'king', u'outclass', u'giant']
[u'knight', u'unit', u'play', u'draw']
[u'kookaburra', u'laugh']
[u'labor', u'oppos', u'park', u'plan']
[u'lack', u'place', u'rais', u'labor']
[u'leed', u'stave', u'administr']
[u'life', u'sentenc', u'push', u'bali', u'bomber', u'ghoni']
[u'load', u'begin', u'live', u'sheep', u'shipment']
[u'longreach', u'resid', u'escap', u'flood']
[u'charg', u'hook', u'fight', u'life']
[u'die', u'danger', u'swim', u'spot']
[u'front', u'court', u'girlfriend', u'slay']
[u'marathon', u'ralli', u'car', u'stopov', u'roma']
[u'mayor', u'question', u'council', u'merger', u'approv', u'process']
[u'west', u'properti']
[u'minist', u'decid', u'airport', u'control', u'tower']
[u'mount', u'stromlo', u'insur', u'disput', u'settl']
[u'defend', u'absenc', u'protest', u'ralli']
[u'estim', u'rogu', u'trade', u'loss']
[u'newcastl', u'round', u'offer']
[u'hospit', u'fume', u'caus', u'ill']
[u'health', u'crisi']
[u'student', u'keen', u'nurs']
[u'weak', u'usag', u'survey']
[u'ogradi', u'team', u'french', u'dope', u'swoop']
[u'oppon', u'senat', u'reject', u'medicar', u'plus']
[u'pakistan', u'arrest', u'seven', u'qaeda', u'suspect']
[u'paramed', u'lurch', u'chang']
[u'parmalat', u'financ', u'chief', u'return', u'work']
[u'perth', u'base', u'weight', u'loss', u'compani', u'shape']
[u'peterhansel', u'complet', u'doubl', u'dakar', u'glori']
[u'philippin', u'downplay', u'terror', u'warn']
[u'plan', u'underway', u'balloon', u'open']
[u'polic', u'arrest', u'second', u'william', u'sister', u'murder', u'suspect']
[u'polic', u'probe', u'nation', u'park', u'drown']
[u'pont', u'defend']
[u'prais', u'indigen', u'burial', u'survey']
[u'pratt', u'score', u'upset', u'melbourn']
[u'presidenti', u'race', u'heat', u'democrat']
[u'propos', u'council', u'merger', u'refer', u'auditor', u'general']
[u'public', u'ask', u'help', u'miss', u'teen']
[u'elect', u'focus', u'turn', u'order']
[u'quinn', u'quell', u'talk', u'disquiet', u'seat']
[u'rain', u'forecast', u'continu']
[u'real', u'save', u'face', u'miss', u'spot']
[u'retrench', u'worker', u'optimist']
[u'rise', u'river', u'expect', u'spark', u'flood']
[u'road', u'rail', u'intersect', u'microscop']
[u'saha', u'agre', u'principl']
[u'scientist', u'sing', u'boost', u'immun']
[u'shoot', u'anti', u'govern', u'march', u'haiti']
[u'south', u'east', u'asian', u'minist', u'talk', u'region']
[u'state', u'rail', u'fin', u'worker', u'injuri']
[u'africa', u'wicket', u'inning', u'victori']
[u'studi', u'highlight', u'pollut', u'impact', u'dolphin']
[u'survey', u'highlight', u'northern', u'polic', u'dissatisfact']
[u'survey', u'reveal', u'pear', u'grower', u'loss']
[u'homeless', u'give', u'tent', u'live']
[u'teenag', u'hospit', u'follow', u'arm', u'robberi']
[u'thirteen', u'wound', u'bomb', u'attack', u'iraqi', u'holi', u'citi']
[u'seed', u'melbourn']
[u'totti', u'keep', u'record', u'break', u'roma']
[u'unemploy', u'benefit', u'number', u'decreas']
[u'univers', u'increas', u'student', u'offer']
[u'urg', u'return', u'iraq']
[u'beef', u'pass', u'australian']
[u'gain', u'flow']
[u'pull', u'troop', u'seoul']
[u'vail', u'hop', u'free', u'trade', u'deal', u'soon']
[u'vineyard', u'owner', u'wari', u'white', u'wine', u'product']
[u'vote', u'ahead', u'despit', u'flood']
[u'growth', u'forecast', u'shine']
[u'warwick', u'top', u'cheap', u'petrol']
[u'watchdog', u'find', u'aircraft', u'near', u'miss']
[u'water', u'restrict', u'tighten']
[u'weather', u'forc', u'tasmania']
[u'webber', u'say', u'champion']
[u'woman', u'die', u'paraglid', u'mishap']
[u'miss', u'capsiz', u'freighter']
[u'adelaid', u'eye', u'disgruntl', u'glori', u'hitman', u'mori']
[u'stick', u'vote', u'strategi']
[u'anderson', u'safeti', u'opposit', u'say']
[u'angler', u'warn', u'follow', u'fish', u'kill']
[u'armi', u'base', u'chief', u'happi', u'train', u'cours']
[u'aussi', u'cricket', u'team', u'stun', u'hook', u'death']
[u'aussi', u'cricket', u'team', u'stun', u'hook', u'death']
[u'australian', u'open', u'result']
[u'australian', u'chair', u'human', u'right', u'commiss']
[u'beetl', u'threaten', u'cauliflow', u'crop']
[u'blast', u'indonesian', u'chemic', u'plant', u'injur']
[u'injur', u'accid']
[u'britain', u'probe', u'infant', u'death']
[u'bushrang', u'match', u'call', u'cricket', u'world']
[u'busi', u'leader', u'stamp', u'duti']
[u'centurion', u'gayl', u'sarwan', u'save', u'windi']
[u'charg', u'killer', u'parent', u'justifi', u'court']
[u'check', u'space', u'station', u'leak']
[u'chines', u'economi', u'continu', u'surg']
[u'chines', u'polic', u'arrest', u'child', u'traffic']
[u'chopper', u'improv', u'firefight']
[u'churchil', u'parrot', u'aliv']
[u'clijster', u'stroll', u'melbourn']
[u'communiti', u'await', u'fatal', u'report']
[u'concern', u'rais', u'bushfir']
[u'cooper', u'fail', u'regain', u'passport']
[u'coron', u'say', u'patient', u'death', u'unavoid']
[u'council', u'question', u'boundari', u'propos']
[u'council', u'decid', u'duyfken', u'journey']
[u'council', u'spend', u'sewerag', u'project']
[u'decreas', u'appl', u'product']
[u'democrat', u'support', u'bush', u'oppon']
[u'detent', u'centr', u'detaine', u'complain', u'miss']
[u'diamond', u'cow', u'best', u'friend']
[u'dip', u'dollar', u'boost', u'major', u'stock']
[u'owner', u'warn', u'leav', u'anim']
[u'drunken', u'eleph', u'electrocut', u'india']
[u'duck', u'hunt', u'season', u'draw']
[u'negoti', u'continu', u'power', u'station']
[u'kill', u'separatist', u'violenc', u'india']
[u'eleventh', u'arrest', u'parmalat', u'probe']
[u'team', u'threaten', u'boycott', u'european', u'race']
[u'ferdinand', u'appeal', u'suspens']
[u'ferguson', u'play', u'wolv', u'defeat']
[u'firefight', u'chopper', u'head']
[u'fire', u'investig']
[u'sar', u'vaccin', u'test']
[u'flood', u'continu', u'western', u'queensland']
[u'flood', u'isol', u'border', u'town']
[u'flood', u'reignit', u'debat', u'road']
[u'battl', u'claim', u'live', u'sudan', u'report']
[u'freak', u'accid', u'leav', u'hospit']
[u'german', u'doctor', u'face', u'corps', u'disput']
[u'gippsland', u'fin', u'snake', u'collect']
[u'govt', u'defend', u'purchas', u'second', u'machin']
[u'govt', u'energi', u'panel', u'recommend', u'criticis']
[u'govt', u'ambul', u'servic', u'break']
[u'green', u'candid', u'withhold', u'prefer']
[u'grow', u'prawn', u'industri', u'benefit', u'west']
[u'heatwav', u'predict', u'exagger', u'research', u'say']
[u'hewitt', u'arthur', u'reid', u'melbourn']
[u'hewitt', u'curs', u'strike', u'mamiit']
[u'historian', u'seek', u'help', u'sink', u'ship']
[u'holling', u'share', u'rise', u'market', u'reserv']
[u'hook', u'death', u'prompt', u'secur', u'review']
[u'hop', u'fade', u'norway', u'capsiz', u'victim']
[u'weather', u'spark', u'victorian', u'warn']
[u'hussey', u'play']
[u'india', u'bat', u'gabba']
[u'indigen', u'candid', u'challeng', u'beatti']
[u'inquest', u'probe', u'prison', u'death']
[u'inquiri', u'look', u'rural', u'subdivis']
[u'interim', u'settlement', u'reach', u'drug', u'overdos', u'case']
[u'isra', u'oppn', u'leader', u'secret', u'meet']
[u'isra', u'soldier', u'kill', u'lebanon', u'border', u'blast']
[u'israel', u'boycott', u'genocid', u'meet', u'artwork']
[u'israel', u'target', u'hama', u'cleric', u'liquid']
[u'japanes', u'troop', u'enter', u'southern', u'iraq']
[u'jewish', u'settler', u'oppos', u'armi', u'outpost']
[u'katich', u'keen', u'impress']
[u'kerri', u'score', u'surpris', u'iowa']
[u'labor', u'issu', u'warn', u'medicar', u'inquiri']
[u'labor', u'miss', u'green', u'prefer', u'north']
[u'leed', u'give', u'week', u'repriev', u'creditor']
[u'lift', u'rapist', u'give', u'life', u'attack', u'australian']
[u'accus', u'nazi', u'massacr', u'involv']
[u'charg', u'partner', u'death']
[u'charg', u'stab']
[u'mcewen', u'claim', u'stage', u'amid', u'tour']
[u'mcewen', u'claim', u'tour', u'stage']
[u'mental', u'test', u'accus', u'kill', u'swedish']
[u'mildura', u'campus', u'make', u'round', u'offer']
[u'moratti', u'resign', u'inter', u'presid']
[u'happi', u'broadcast', u'decis']
[u'mundin', u'retain', u'super', u'middleweight', u'titl']
[u'mundin', u'retain', u'titl']
[u'nation', u'ditch', u'candid', u'domest', u'violenc']
[u'newcastl', u'climb', u'fifth', u'fulham']
[u'north', u'korea', u'unimpress', u'japan', u'troop', u'deploy']
[u'health', u'studi', u'focus', u'age', u'popul']
[u'indigen', u'student', u'offer', u'scholarship']
[u'politician', u'attack', u'howard', u'school', u'stanc']
[u'nuclear', u'watchdog', u'play', u'role', u'libya', u'disarma']
[u'numbat', u'escap']
[u'pair', u'face', u'court', u'cannabi']
[u'paramed', u'face']
[u'park', u'telescop', u'find', u'doubl', u'pulsar']
[u'paroo', u'flood', u'level', u'expect', u'increas']
[u'philippin', u'offici', u'slay', u'mayor', u'wound', u'attack']
[u'philippoussi', u'clijster', u'second', u'round']
[u'philippoussi', u'surviv', u'nail', u'bite']
[u'pilot', u'reject', u'incid', u'danger']
[u'plummer', u'tip', u'reduc', u'captainci', u'contract']
[u'spark', u'debat', u'public', u'school', u'valu']
[u'privat', u'school', u'stanc', u'disgrac', u'union']
[u'vote', u'year', u'term']
[u'polic', u'deni', u'live', u'risk', u'follow', u'alert']
[u'polic', u'investig', u'theft', u'cash', u'nurseri']
[u'polic', u'probe', u'hendon', u'death']
[u'polic', u'worri', u'miss', u'sydney', u'woman']
[u'polit', u'bias', u'charg', u'african']
[u'polit', u'correct', u'privat', u'school']
[u'polit', u'slow', u'interst', u'anim', u'shipment']
[u'pratt', u'lead', u'australian', u'charg']
[u'public', u'help', u'seek', u'arm', u'robberi']
[u'pyongyang', u'call', u'korea', u'unit']
[u'parti', u'decid', u'prefer']
[u'premier', u'apologis', u'lobotomi', u'jibe']
[u'racv', u'call', u'commonwealth', u'fund', u'highway']
[u'railcorp', u'pan', u'secur', u'camera', u'propos']
[u'record', u'number', u'team', u'cricket', u'comp']
[u'region', u'student', u'appli', u'place']
[u'reid', u'rusedski', u'crash']
[u'resid', u'oppos', u'hour', u'servic', u'centr']
[u'rockhampton', u'rugbi', u'union', u'player', u'prepar']
[u'fund', u'take', u'govt', u'own', u'corpor']
[u'biotech', u'compani', u'administr']
[u'saha']
[u'sharon', u'warn', u'golan', u'height']
[u'sheep', u'ship', u'readi', u'head', u'kuwait']
[u'ship', u'capsiz', u'freez', u'water', u'norway']
[u'shire', u'eas', u'water', u'restrict']
[u'small', u'town', u'miss', u'court', u'sit']
[u'soldier', u'arrest', u'palestinian', u'west', u'bank']
[u'spammer', u'mail', u'virus', u'surfac']
[u'springborg', u'promis', u'referendum', u'year', u'term']
[u'stanhop', u'defend', u'chief', u'child', u'protect', u'inquiri']
[u'survey', u'highlight', u'increas', u'welfar', u'need']
[u'survey', u'determin', u'coastal', u'safeti', u'knowledg']
[u'synchrotron', u'construct', u'track', u'melbourn']
[u'govt', u'refus', u'live', u'sheep', u'export']
[u'teenag', u'cyclist', u'kill', u'collis']
[u'tendulkar', u'doubt', u'india']
[u'kingz', u'conquer', u'wolv']
[u'crew', u'rescu', u'capsiz', u'norwegian', u'cargo']
[u'youngster', u'domin']
[u'train', u'driver', u'shatter', u'gnome', u'prank']
[u'tribut', u'flow', u'david', u'hook']
[u'trust', u'push', u'ahead', u'meander', u'appeal']
[u'dead', u'algerian', u'plant', u'blast']
[u'ullrich', u'hop', u'strongest', u'team', u'beat']
[u'chief', u'seek', u'time', u'iraq', u'return']
[u'underdog', u'dean', u'shrug', u'primari', u'result']
[u'union', u'threaten', u'action', u'council', u'chang']
[u'begin', u'baghdad', u'offens']
[u'bomb', u'kill', u'afghan', u'report']
[u'produc', u'choos', u'ring', u'best']
[u'senat', u'warn', u'free', u'trade', u'australian', u'drug']
[u'vegi', u'price', u'tip', u'skyrocket']
[u'vermeulen', u'skull', u'fractur', u'cap', u'night']
[u'bush', u'fruit', u'sell']
[u'crack', u'domest', u'violenc']
[u'walkov', u'number', u'hewitt']
[u'water', u'restrict', u'tighten', u'nimmitabel']
[u'water', u'save', u'boost', u'environment', u'flow']
[u'water', u'sewerag', u'elect', u'agenda']
[u'woman', u'die', u'accid', u'steal']
[u'woodsid', u'disput']
[u'workmat', u'unawar', u'dead', u'colleagu']
[u'world', u'biggest', u'solar', u'power', u'station', u'open']
[u'zimbabw', u'opposit', u'chief', u'reject', u'mugab', u'kill', u'plot']
[u'abbott', u'back', u'howard', u'tradit', u'school', u'valu']
[u'abbott', u'vow', u'chang', u'medicar', u'plan']
[u'adelaid', u'oval', u'farewel', u'hook']
[u'agassi', u'power', u'melbourn', u'round']
[u'aitken', u'shun', u'tour', u'prepar', u'athen']
[u'ord', u'finish', u'flat']
[u'anderson', u'offer', u'clear', u'flight', u'chang']
[u'australian', u'bellydanc', u'ban', u'egypt']
[u'australian', u'open', u'singl', u'result', u'wednesday']
[u'australia', u'communiti', u'base', u'airlin', u'take']
[u'author', u'search', u'miss', u'teen', u'tourist']
[u'author', u'urg', u'vigil', u'bird']
[u'bali', u'bomb', u'survivor', u'jail', u'year']
[u'beatti', u'pledg', u'million', u'sweeten']
[u'beatti', u'promis', u'manufactur', u'boost']
[u'beatti', u'talk', u'vote', u'strategi']
[u'beetl', u'plagu', u'infest', u'goulburn']
[u'bendigo', u'school', u'odd', u'school', u'stanc']
[u'better', u'access', u'plan', u'derwent', u'bridg']
[u'bowen', u'council', u'signal', u'elect', u'sign', u'rule']
[u'british', u'airway', u'boss', u'unilater']
[u'bull', u'charg', u'hobart']
[u'bungl', u'unwant', u'distract', u'beatti']
[u'driver', u'stop', u'work', u'abus']
[u'bush', u'defend', u'iraq', u'invas']
[u'bush', u'creat', u'axi', u'evil', u'democrat']
[u'bush', u'warn', u'constitut', u'marriag']
[u'busi', u'protest', u'super', u'council', u'plan']
[u'drought', u'reflect', u'size']
[u'expert', u'help', u'polic', u'handl', u'mental']
[u'govt', u'revamp', u'road', u'tourism', u'spot']
[u'maintain', u'presenc', u'timor']
[u'accid', u'put', u'hospit']
[u'industri', u'ring', u'record', u'sale', u'year']
[u'cattl', u'produc', u'warn', u'stock', u'theft']
[u'charg', u'lay', u'nativ', u'bird', u'shoot']
[u'rule', u'action', u'beatti', u'minist']
[u'communiti', u'brace', u'floodwat']
[u'convict', u'polic', u'killer', u'releas', u'jail']
[u'costello', u'back', u'parent', u'choic', u'school', u'debat']
[u'costello', u'prais', u'record', u'sale']
[u'council', u'blame', u'faulti', u'power', u'line', u'bridgetown']
[u'council', u'highlight', u'swim', u'spot', u'danger']
[u'councillor', u'conced', u'labor', u'posit', u'dictat', u'oasi']
[u'council', u'prepar', u'legal', u'fight', u'stop', u'flat']
[u'council', u'question', u'boundari', u'chang', u'review']
[u'council', u'scale', u'port', u'lincoln', u'plan']
[u'council', u'upbeat', u'abattoir', u'reopen']
[u'council', u'upset', u'merger', u'consult']
[u'council', u'urg', u'push', u'stand', u'campus']
[u'croc', u'sink', u'pirat']
[u'dane', u'plan', u'provid', u'australian', u'bear', u'princess']
[u'darwin', u'teen', u'win', u'nation', u'countri', u'music', u'contest']
[u'democrat', u'pull', u'presidenti', u'race']
[u'democrat', u'bush', u'speech', u'slight', u'averag', u'american']
[u'depress', u'asylum', u'seeker', u'releas', u'lawrenc']
[u'detent', u'centr', u'lockout', u'opposit']
[u'deutsch', u'bank', u'manag', u'trial', u'begin']
[u'downer', u'slam', u'loss', u'claim']
[u'elder', u'woman', u'die', u'crash']
[u'elector', u'commiss', u'focus', u'bendigo', u'council']
[u'england', u'expect', u'cancel', u'zimbabw', u'tour', u'report']
[u'review', u'parmalat', u'account', u'practis']
[u'norman', u'grower', u'grape', u'payment', u'updat']
[u'famili', u'lobbi', u'fair', u'trial', u'guantanamo']
[u'famili', u'servic', u'denial', u'advoc']
[u'ferri', u'line', u'defend', u'sydney', u'devonport', u'delay']
[u'figur', u'point', u'econom', u'slowdown']
[u'aussi', u'fight', u'round', u'place']
[u'aussi', u'fight', u'round', u'place']
[u'want', u'violent', u'home', u'invas']
[u'flatley', u'name', u'captain', u'red']
[u'kill', u'horror', u'crash', u'highway']
[u'foxtel', u'unveil', u'digit', u'servic']
[u'franc', u'question', u'terror', u'suspect', u'wife']
[u'giant', u'snail', u'gold', u'coast']
[u'gilchrist', u'zimbabw', u'odi']
[u'girl', u'critic', u'fatal', u'crash']
[u'glider', u'pilot', u'hospitalis', u'crash', u'land']
[u'gold', u'coast', u'tourism', u'chief', u'look', u'opportun']
[u'govt', u'upgrad', u'road', u'fatal', u'accid']
[u'grace', u'approach', u'game', u'wildcat']
[u'grazier', u'want', u'continu', u'wild', u'bait']
[u'greec', u'fund', u'afghani', u'olymp', u'team']
[u'guccion', u'bundl', u'open', u'pratt', u'molik']
[u'guccion', u'bundl', u'aust', u'open']
[u'health', u'servic', u'talk', u'merger', u'benefit']
[u'herbal', u'remedi', u'cancer', u'drug', u'studi']
[u'high', u'school', u'say', u'academ', u'rank', u'unfair']
[u'honda', u'confirm', u'brazilian', u'barro']
[u'hook', u'servic', u'hold', u'adelaid', u'oval']
[u'hook', u'good', u'work', u'go', u'organ', u'donat']
[u'human', u'right', u'group', u'urg', u'anwar', u'releas']
[u'hussey', u'lead', u'warrior', u'fightback']
[u'illeg', u'keep', u'snake', u'land', u'fine']
[u'independ', u'deni', u'defect', u'accus']
[u'independ', u'stand', u'firm', u'medicar', u'chang']
[u'invad', u'beetl', u'paint', u'town', u'black']
[u'iraqi', u'policeman', u'kill', u'assassin', u'citi']
[u'order', u'woodsid', u'worker', u'work']
[u'isra', u'court', u'issu', u'briberi', u'charg', u'tie', u'sharon']
[u'isra', u'warplan', u'strike', u'lebanon', u'attack']
[u'japanes', u'studi', u'find', u'burn']
[u'jetti', u'group', u'say', u'foreshor', u'plan']
[u'juninho', u'fire', u'boro', u'sight', u'silverwar']
[u'latham', u'back', u'public', u'school', u'teacher']
[u'latham', u'pledg', u'boost', u'bulk', u'bill']
[u'lawyer', u'order', u'relax', u'jackson']
[u'lazio', u'sweep', u'italian', u'semi']
[u'leader', u'need', u'resolv', u'trade', u'talk']
[u'lewi', u'recontest', u'hammond']
[u'lib', u'adjourn', u'master', u'complaint', u'hear']
[u'live', u'export', u'face', u'ship', u'shortag']
[u'local', u'campaign', u'put', u'spotlight', u'townsvill']
[u'love', u'make', u'late', u'wicket', u'rock', u'bull']
[u'malaysian', u'deputi', u'anwar', u'deni', u'bail']
[u'mall', u'polic', u'presenc']
[u'charg', u'knife', u'attack']
[u'jail', u'life', u'deprav', u'murder']
[u'plead', u'guilti', u'homeless', u'man', u'murder']
[u'court', u'fatal', u'crash']
[u'martian', u'soil', u'pose', u'puzzl', u'nasa', u'scientist']
[u'mayor', u'candid', u'rais', u'plan', u'doubt']
[u'mcewen', u'yellow', u'tour', u'kick']
[u'mcpartland', u'grab', u'tour', u'lead', u'epic', u'breakaway']
[u'medic', u'team', u'head', u'cyclon', u'niue']
[u'microsoft', u'admit', u'humour', u'failur', u'mikerowesoft']
[u'molli', u'exhaust', u'visa', u'ordeal']
[u'movi', u'magic', u'help', u'cancer', u'patient']
[u'museum', u'offer', u'snapshot', u'alic', u'life']
[u'nation', u'trust', u'respond', u'council', u'critic']
[u'year', u'usher', u'monkey', u'busi']
[u'nightclub', u'weed', u'problem', u'bouncer']
[u'organis', u'crime', u'link', u'armi', u'drug', u'bust', u'polic']
[u'compani', u'novus', u'announc', u'profit', u'jump']
[u'tanker', u'roll', u'spark', u'road', u'clean']
[u'onlin', u'sale', u'grow', u'percent', u'play', u'bigger']
[u'page', u'name', u'break', u'hill', u'elect', u'team']
[u'petrol', u'tip', u'litr']
[u'player', u'live', u'fear', u'posit', u'dope', u'test']
[u'govt', u'immun', u'push', u'look', u'shaki']
[u'take', u'step', u'counter', u'illeg', u'immigr']
[u'polic', u'search']
[u'polic', u'fear', u'miss', u'person']
[u'polic', u'killer', u'statement', u'releas']
[u'polic', u'probe', u'armi', u'drug', u'claim']
[u'polic', u'probe', u'torbay', u'inlet', u'shoot', u'claim']
[u'polic', u'promis', u'secur', u'crackdown']
[u'polli', u'sweep', u'offic', u'spot']
[u'port', u'kembla', u'worker', u'reject', u'steelwork', u'agreement']
[u'powerlin', u'blame', u'blaze']
[u'public', u'alcohol', u'free', u'beach', u'area', u'plan']
[u'floodwat', u'flow', u'drought']
[u'quick', u'spread', u'internet', u'virus', u'link', u'spammer']
[u'rabbi', u'compos', u'prayer', u'protect', u'porn']
[u'rail', u'infrastructur', u'corp', u'fin', u'driver', u'death']
[u'rain', u'cloud', u'water', u'restrict', u'issu']
[u'rain', u'fail', u'save', u'windi', u'pollock', u'strike']
[u'rain', u'benefit', u'murray', u'darl', u'basin', u'farmer']
[u'reef', u'fisher', u'urg', u'join', u'compens', u'process']
[u'research', u'reveal', u'dementia', u'patient', u'sooth']
[u'road', u'tip', u'boost', u'govt', u'coffer']
[u'roebourn', u'shire', u'defer', u'councillor', u'elect']
[u'rspca', u'reveal', u'fund', u'problem']
[u'russian', u'armi', u'aim', u'save', u'chill', u'filter', u'beer']
[u'russian', u'carrier', u'deal', u'indian', u'navi', u'power']
[u'govt', u'offer', u'revis', u'deal', u'public', u'servant']
[u'liber', u'accus', u'inconsist', u'polici']
[u'track', u'road', u'fund', u'boost']
[u'town', u'demand', u'broadband', u'get']
[u'search', u'end', u'ship', u'survivor', u'norway']
[u'sheep', u'shipment', u'set', u'sail', u'kuwait']
[u'sorri', u'maryborough', u'there', u'candid', u'springborg']
[u'south', u'african', u'prosecutor', u'clear', u'spi']
[u'south', u'burni', u'leak', u'spark', u'evacu']
[u'south', u'east', u'town', u'cull', u'corella', u'number']
[u'southern', u'highland', u'tourism', u'slump', u'normal']
[u'spirit', u'make', u'martian', u'rock']
[u'sportspeopl', u'urg', u'regist', u'master', u'game']
[u'springborg', u'accus', u'break']
[u'springborg', u'deni', u'bogus', u'candid', u'claim']
[u'standard', u'need', u'protect', u'world', u'countri']
[u'station', u'host', u'pastor', u'research']
[u'steel', u'worker', u'reject', u'compani', u'workplac', u'offer']
[u'stosur', u'knock', u'melbourn']
[u'studi', u'assess', u'emiss', u'effect', u'ancient']
[u'sugar', u'deal', u'sweet', u'north', u'farmer']
[u'support', u'albani', u'base', u'fisheri', u'patrol']
[u'crew', u'hope', u'weather', u'forecast', u'curb', u'risk']
[u'teacher', u'strike', u'action', u'hold']
[u'team', u'gut', u'hook', u'death']
[u'teenag', u'die', u'sand', u'cave', u'collaps']
[u'timber', u'blaze', u'leav', u'damag']
[u'soon', u'predict', u'shuttl', u'return', u'space']
[u'catch', u'boost', u'tuna', u'fisher', u'profit']
[u'topless', u'pose', u'springborg', u'say']
[u'tree', u'hunter', u'hit', u'jackpot', u'tasmania']
[u'trip', u'aim', u'boost', u'townsvill', u'caledonia']
[u'product', u'firm', u'boost', u'gold', u'coast', u'job']
[u'cofidi', u'rider', u'arrest', u'dope', u'probe']
[u'face', u'iraq', u'crime', u'claim']
[u'union', u'clearer', u'regul', u'workplac']
[u'focus', u'iraq', u'elect', u'sistani', u'alli']
[u'dollar', u'continu', u'drop']
[u'immigr', u'send', u'molli', u'pack']
[u'object', u'whos', u'obes', u'fight']
[u'stock', u'fall', u'high']
[u'opposit', u'blame', u'govt', u'bouncer', u'law']
[u'opposit', u'continu', u'reject', u'plan', u'wast']
[u'vote', u'strategi', u'reflect', u'polit', u'landscap']
[u'reject', u'jail', u'breach', u'restrain', u'order']
[u'warrior', u'stay', u'blue']
[u'water', u'restrict', u'continu', u'roma', u'despit', u'rain']
[u'weather', u'blame', u'veget', u'shortag']
[u'western', u'power', u'slam', u'respons', u'fatal']
[u'confirm', u'sar', u'case', u'china']
[u'wonder', u'girl', u'get', u'invit']
[u'wright', u'ganguli', u'jump', u'dravid', u'defenc']
[u'lockdown', u'escap', u'artist', u'chimp', u'break', u'free']
[u'revamp', u'shed', u'light', u'traeger', u'park']
[u'need', u'highway', u'upgrad', u'nrma']
[u'hous', u'industri', u'cool']
[u'black', u'plan', u'privat', u'test', u'boost', u'revenu']
[u'ord', u'strong', u'gain']
[u'road', u'lead', u'drought', u'polici']
[u'licenc', u'elect', u'issu']
[u'annan', u'urg', u'calm', u'isra', u'raid', u'lebanon']
[u'art', u'deserv', u'fair']
[u'asic', u'investig', u'trade', u'loss']
[u'aussi', u'hensbi', u'share', u'hope', u'classic', u'lead']
[u'australia', u'ambassador', u'name', u'northern']
[u'australian', u'open', u'result', u'thursday']
[u'author', u'issu', u'bird', u'warn', u'southern']
[u'author', u'probe', u'farm', u'death']
[u'bank', u'parmalat', u'australia']
[u'battl', u'reid', u'tenni', u'hero']
[u'air', u'program', u'critic', u'manag', u'kelli']
[u'beatti', u'promis', u'wait', u'list']
[u'beatti', u'promis', u'gladston']
[u'beatti', u'push', u'ahead', u'sugar', u'reform']
[u'beckham', u'send', u'real', u'valencia']
[u'belconnen', u'park', u'fee', u'scrap', u'lib']
[u'bellingen', u'mayor', u'reject', u'growth', u'vote']
[u'bennett', u'keen', u'coach', u'kangaroo']
[u'bidder', u'battl', u'candid', u'ridicul', u'argyl']
[u'crowd', u'say', u'england', u'super', u'council']
[u'biggest', u'flood', u'decad', u'bring', u'heartbreak']
[u'bird', u'scare', u'widen', u'asia']
[u'bolton', u'close', u'leagu', u'final', u'berth']
[u'bouncer', u'charg', u'hook', u'manslaught']
[u'bouncer', u'charg', u'manslaught', u'hook']
[u'brigitt', u'wife', u'accept', u'french']
[u'bushrang', u'emot', u'tribut', u'hook']
[u'extend', u'armi', u'recruit', u'train', u'cours']
[u'manilla', u'shire', u'flood', u'elig']
[u'cambodia', u'promin', u'trade', u'unionist', u'shoot', u'dead']
[u'capsiz', u'freighter', u'rock']
[u'catchment', u'council', u'say', u'landcar', u'offic', u'wont', u'close']
[u'club', u'countri', u'battl', u'long', u'go', u'woodward']
[u'coast', u'volleybal', u'player', u'featur', u'aust']
[u'coff', u'deputi', u'mayor', u'echo', u'jetti', u'plan', u'concern']
[u'communiti', u'share', u'region', u'develop', u'fund']
[u'corrupt', u'prison', u'offic', u'alleg', u'damag', u'say']
[u'costello', u'pan', u'beatti', u'govt', u'econom', u'mismanag']
[u'council', u'adopt', u'singl', u'wast', u'servic', u'contract']
[u'council', u'audit', u'highlight', u'worksit', u'woe']
[u'council', u'pass', u'tree', u'plan', u'amidst', u'councillor', u'concern']
[u'council', u'staff', u'tourism', u'resort', u'amidst', u'protest']
[u'court', u'hear', u'link', u'woman', u'accus', u'murder']
[u'crash', u'land', u'doesnt', u'stop', u'glider', u'event']
[u'croc', u'hunter', u'clear', u'workplac', u'safeti', u'breach']
[u'dark', u'hors', u'springborg', u'prove', u'popular', u'punter']
[u'declin', u'devil', u'popul', u'leav', u'door', u'open']
[u'venuto', u'keep', u'tiger', u'hunt']
[u'drought', u'polici', u'fail']
[u'edington', u'rule', u'pool', u'moscow']
[u'encourag', u'springborg', u'head', u'corner']
[u'ethanol', u'firm', u'extend', u'prospectus', u'deadlin']
[u'euro', u'climb', u'continu']
[u'expert', u'probe', u'fall', u'pool', u'entranc', u'wall']
[u'famili', u'unhappi', u'mausoleum', u'condit']
[u'farmer', u'urg', u'boost', u'level']
[u'farmer', u'urg', u'seek', u'drought']
[u'farmer', u'welcom', u'feder', u'road', u'packag']
[u'fatal', u'accid', u'prompt', u'call', u'hume', u'upgrad']
[u'fear', u'retail', u'exploit', u'appl', u'price']
[u'firefight', u'save', u'bushfir', u'threaten', u'hous']
[u'flood', u'welcom', u'revil', u'rural']
[u'follow', u'lead', u'beatti', u'tell', u'minor', u'parti']
[u'formula', u'warn']
[u'free', u'trade', u'effort', u'wont', u'affect', u'singl', u'desk']
[u'fuel', u'subsidi', u'chang', u'come', u'govt']
[u'gaze', u'guid', u'tiger', u'victori']
[u'glori', u'continu', u'win', u'streak']
[u'gold', u'coast', u'farewel', u'stalwart']
[u'gold', u'industri', u'govt', u'urg', u'bolster', u'explor']
[u'gough', u'leav', u'yorkshir']
[u'govt', u'backbench', u'defend', u'state', u'school']
[u'great', u'southern', u'help', u'bolster', u'economi']
[u'grower', u'welcom', u'river', u'flow']
[u'gulf', u'nation', u'forgiv', u'iraqi', u'debt']
[u'headscarf', u'plan', u'unravel', u'franc']
[u'health', u'sugar', u'domin', u'campaign']
[u'hewitt', u'readi', u'round']
[u'hick', u'comment', u'action', u'rudd']
[u'hickss', u'lawyer', u'urg', u'intervent']
[u'hick', u'trial', u'wont', u'fair', u'lawyer']
[u'home', u'safe', u'blaze', u'firefight']
[u'hume', u'shire', u'resid', u'reject', u'boundari', u'chang', u'plan']
[u'warn', u'england', u'zimbabw', u'pull']
[u'india', u'hold', u'kashmir', u'talk', u'separatist']
[u'inter', u'semi', u'juventus']
[u'job', u'lose', u'rise', u'dollar']
[u'consid', u'measur', u'speed', u'game']
[u'isra', u'prosecutor', u'consid', u'sharon', u'indict']
[u'isra', u'warplan', u'overfli', u'south', u'lebanon']
[u'jonker', u'yellow', u'cook', u'slam', u'tour', u'boss']
[u'killer', u'parent', u'treat', u'bad', u'say', u'lawyer']
[u'kimberley', u'communiti', u'prepar', u'toad', u'invas']
[u'kodak', u'slash', u'job', u'year']
[u'kuwait', u'agre', u'iraq', u'debt']
[u'leagu', u'club', u'search', u'general', u'manag']
[u'leed', u'fan', u'turn', u'selfish', u'player']
[u'hit', u'india']
[u'lend', u'leas', u'move', u'ownership']
[u'liverpool', u'council', u'admit', u'loss', u'oasi']
[u'lose', u'plane', u'search', u'resum', u'year']
[u'magistr', u'discuss', u'pitjantjatjara', u'land', u'issu']
[u'charg', u'rifl', u'shoot']
[u'jail', u'girlfriend', u'murder']
[u'jail', u'scratch', u'polic', u'spit', u'court']
[u'murder', u'charg', u'face', u'bedsid', u'bail', u'hear']
[u'market', u'hit', u'month', u'high']
[u'martin', u'support', u'train', u'facil', u'base']
[u'mayor', u'cast', u'doubt', u'wilton', u'airport', u'plan']
[u'meet', u'back', u'break', u'hill', u'water', u'legal']
[u'minist', u'doubt', u'fair', u'piec']
[u'minist', u'foreshadow', u'direct', u'educ']
[u'mortar', u'attack', u'kill', u'soldier', u'wound']
[u'want', u'reason', u'retrain', u'plan', u'snub']
[u'mugab', u'start', u'talk', u'opposit']
[u'revalu', u'foreign', u'currenc', u'portfolio']
[u'featur', u'eurobodalla']
[u'reviv', u'north', u'korea', u'talk']
[u'twist', u'german', u'septemb', u'case']
[u'head', u'roll', u'waterfal', u'inquiri']
[u'norfolk', u'island', u'fishermen', u'surviv', u'day', u'adrift']
[u'doctor', u'clear', u'poor', u'practis']
[u'govt', u'target', u'sydney', u'power', u'waster']
[u'opposit', u'question', u'detent', u'centr', u'riot']
[u'lifesav', u'stronger', u'pool', u'fenc', u'law']
[u'want', u'fair', u'road', u'scheme']
[u'oberon', u'policeman', u'lord', u'howe', u'post']
[u'payout', u'cost', u'polic', u'servic']
[u'palestinian', u'question', u'commit', u'middl', u'east']
[u'paringa', u'bushfir', u'close', u'highway']
[u'passeng', u'flock', u'virgin', u'blue']
[u'pentagon', u'report', u'throw', u'doubt', u'defenc']
[u'ask', u'recal', u'diplomat', u'domest']
[u'pngs', u'hous', u'minist', u'sack']
[u'polic', u'wit', u'hotel', u'robberi']
[u'polic', u'newspap', u'blockad', u'zimbabw']
[u'policeman', u'flag', u'golf', u'world', u'record', u'attempt']
[u'polic', u'oper', u'help', u'theft']
[u'polic', u'urg', u'caution', u'road']
[u'poll', u'predict', u'easi', u'victori', u'beatti']
[u'pont', u'confid', u'bounc']
[u'port', u'hedland', u'want', u'debt', u'plan', u'talk']
[u'poultri', u'industri', u'warn', u'dead', u'virus']
[u'power', u'outag', u'leav', u'resid', u'dark']
[u'press', u'watchdog', u'complain', u'treatment']
[u'protest', u'worker', u'await', u'forestri', u'respons']
[u'public', u'invit', u'adelaid', u'oval', u'farewel', u'hook']
[u'public', u'invit', u'adelaid', u'oval', u'servic', u'hook']
[u'oppn', u'promis', u'health', u'fund', u'boost']
[u'racq', u'question', u'parti', u'ethanol', u'view']
[u'rail', u'corp', u'fin', u'death']
[u'rain', u'lift', u'water', u'restrict']
[u'report', u'child', u'abus', u'jump']
[u'reserv', u'develop', u'snub', u'greet', u'applaus']
[u'resid', u'readi', u'thargomindah', u'flood']
[u'road', u'death', u'spark', u'polic', u'safeti']
[u'rural', u'resid', u'live', u'fear', u'power', u'line']
[u'saha', u'get', u'covet', u'trafford']
[u'state', u'school', u'attract', u'intern', u'student']
[u'school', u'prepar', u'year', u'blaze']
[u'school', u'teach', u'anti', u'farmer', u'anderson']
[u'scientist', u'concern', u'impact', u'devil', u'diseas']
[u'scientist', u'decid', u'cold', u'kill', u'neanderth']
[u'scud', u'hewitt', u'reid']
[u'seiz', u'marco', u'fund', u'order', u'govern']
[u'self', u'regul', u'lawyer']
[u'sharon', u'quit', u'israel', u'briberi', u'case']
[u'skateboard', u'urg', u'skatepark']
[u'south', u'east', u'harvest', u'unlik', u'reach', u'estim']
[u'spanish', u'judg', u'rule', u'woman', u'dress']
[u'springborg', u'attack', u'australia', u'controversi']
[u'spur', u'green', u'light', u'transfer', u'spree']
[u'stanwel', u'gladston', u'consid', u'magnesium', u'smelter']
[u'storm', u'cut', u'power', u'south', u'coast', u'resid']
[u'sudden', u'delug', u'damag', u'wanaar']
[u'sugarcan', u'grower', u'fungal', u'diseas', u'impact']
[u'swimmer', u'warn', u'stinger', u'danger']
[u'agre', u'continu', u'fund', u'therapi']
[u'tafe', u'staff', u'caus', u'concern']
[u'labor', u'fight', u'propos', u'confer', u'number']
[u'tasmania', u'review', u'bouncer', u'law']
[u'rescu', u'boat', u'capsiz']
[u'tiger', u'marshal', u'happi', u'play', u'posit']
[u'toowoomba', u'boxer', u'eye', u'junior', u'welterweight', u'titl']
[u'trucker', u'industri', u'rail']
[u'train', u'strategi', u'focus', u'high', u'growth', u'industri']
[u'travel']
[u'line', u'confid', u'fix', u'ferri', u'delay']
[u'network', u'broadcast', u'region', u'news', u'illawarra']
[u'sperm', u'donor', u'lose', u'anonym']
[u'union', u'continu', u'thorley', u'entitl', u'push']
[u'union', u'welcom', u'alp', u'manufactur', u'promis']
[u'citi', u'pass', u'emerg', u'karaok', u'booth']
[u'record', u'compani', u'crack', u'pirat']
[u'govt', u'offer', u'connect', u'guarante']
[u'teacher', u'deliv', u'wage', u'ultimatum']
[u'teacher', u'strike', u'look', u'ahead']
[u'victoria', u'ban', u'pip']
[u'victorian', u'teacher', u'strike']
[u'offer', u'tafe', u'posit']
[u'water', u'restrict', u'remain', u'break', u'hill']
[u'town', u'recruit', u'footbal', u'work']
[u'wilkinson', u'unsur', u'comeback', u'date']
[u'wolv', u'hold', u'liverpool', u'draw']
[u'woman', u'die', u'skydiv', u'accid']
[u'woodward', u'plea', u'chang']
[u'world', u'econom', u'forum', u'kick', u'switzerland']
[u'arrest', u'pawn', u'shop', u'sting']
[u'academ', u'name', u'wollongong', u'citizen']
[u'opposit', u'question', u'upgrad', u'schedul']
[u'adelaid', u'jail', u'indonesia']
[u'adelaid', u'mayor', u'deni', u'cash', u'comment', u'claim']
[u'albatross', u'migrat', u'prove', u'worth', u'flutter']
[u'alic', u'darwin', u'train', u'cost', u'truck', u'job']
[u'highlight', u'region', u'bulk', u'bill', u'fear']
[u'tobacco', u'tie']
[u'attack', u'doctor', u'hospit', u'board']
[u'ambul', u'staff', u'hold', u'negoti', u'guarante']
[u'ancona', u'turn', u'baggio', u'lead', u'surviv', u'fight']
[u'angel', u'play', u'game']
[u'angler', u'reap', u'benefit', u'fish', u'number', u'boom']
[u'arsenal', u'main', u'rival', u'ferguson']
[u'ash', u'head', u'australia']
[u'aust', u'releas', u'nauru', u'rehab', u'money', u'engin', u'say']
[u'australian', u'open', u'result', u'friday']
[u'australian', u'sailor', u'help', u'train', u'iraqi']
[u'australian', u'swim', u'name', u'nugent', u'head', u'coach']
[u'author', u'clear', u'hanson', u'prosecut']
[u'author', u'track', u'giant', u'snail', u'trail']
[u'author', u'dismiss', u'complaint', u'polic']
[u'barrington', u'resid', u'angri', u'develop', u'plan']
[u'bathurst', u'council', u'general', u'manag', u'head', u'wagga']
[u'beaconsfield', u'gold', u'success', u'attract']
[u'beatti', u'expect', u'lose', u'gold', u'coast', u'seat']
[u'beatti', u'account']
[u'beatti', u'springborg', u'welcom', u'year', u'monkey']
[u'bird', u'like', u'thailand', u'admit']
[u'bird', u'matter', u'time', u'australia']
[u'bird', u'scare', u'prompt', u'australian', u'alert']
[u'blair', u'face', u'parliamentari', u'debat', u'hutton', u'report']
[u'bourk', u'irrig', u'look', u'resum', u'pump']
[u'recov', u'incid']
[u'brigalow', u'bioregion', u'decis', u'loom']
[u'british', u'hiker', u'fulfil', u'nake', u'ambit']
[u'british', u'suicid', u'bomb', u'comment', u'spark', u'outrag']
[u'break', u'hill', u'run', u'possibl']
[u'brown', u'back', u'townsvill', u'candid', u'find']
[u'bushrang', u'train']
[u'busi', u'survey', u'contain', u'warn', u'govt']
[u'canberra', u'fresh', u'contact', u'mar', u'rover']
[u'canberra', u'trial', u'syring', u'vend', u'machin']
[u'cancer', u'council', u'offer', u'accommod', u'fund']
[u'casa', u'probe', u'plane', u'mishap']
[u'celta', u'vigo', u'barcelona', u'suffer', u'surpris', u'defeat']
[u'chief', u'concern', u'bushfir', u'insur', u'level']
[u'charter', u'tower', u'look', u'ash', u'econom', u'boost']
[u'clark', u'atsic', u'suspens', u'continu']
[u'clark', u'suspens', u'fight', u'higher', u'court']
[u'coast', u'record', u'road', u'death']
[u'cofidi', u'affair', u'deepen', u'rider', u'admit', u'dope']
[u'communiti', u'prefer', u'oversea', u'doctor']
[u'concern', u'miss', u'road', u'fund']
[u'condit', u'help', u'contain', u'bushfir']
[u'coral', u'transplant', u'permit', u'rais', u'green', u'fear']
[u'costello', u'see', u'hous', u'market', u'cool']
[u'council', u'consid', u'landfil', u'share', u'arrang']
[u'council', u'effort', u'help', u'maintain', u'road', u'fund', u'scheme']
[u'council', u'consid', u'road', u'fund', u'condit']
[u'council', u'upbeat', u'oval', u'condit']
[u'court', u'find', u'guilti', u'polic', u'kill', u'threat']
[u'croc', u'releas', u'import', u'veal']
[u'dane', u'hansen', u'share', u'joburg', u'lead']
[u'don', u'aussi', u'star', u'hop', u'team', u'return']
[u'doubt', u'rais', u'highway', u'upgrad', u'cost']
[u'dri', u'fruit', u'price', u'predict', u'rise', u'slight']
[u'earli', u'wicket', u'slow', u'bull', u'chase']
[u'ecologist', u'welcom', u'river', u'flush']
[u'edington', u'continu', u'moscow', u'medal', u'spree']
[u'electr', u'storm', u'black', u'thousand']
[u'eleph', u'pack', u'trunk', u'escap']
[u'endeavour', u'foundat', u'seek', u'phase', u'industri']
[u'enron', u'chief', u'account', u'surrend', u'polic']
[u'ettridg', u'reject', u'whitewash', u'report']
[u'farmer', u'warn', u'poison', u'plant']
[u'feder', u'assist', u'farmer', u'hit', u'billion']
[u'feder', u'polic', u'examin', u'hanson', u'jail']
[u'financi', u'agenc', u'downgrad', u'outlook']
[u'firefight', u'control', u'south', u'east', u'blaze']
[u'freightlink', u'defend', u'price']
[u'fruit', u'firm', u'fight', u'takeov']
[u'fund', u'seek', u'cobar', u'medic', u'centr']
[u'futur', u'unclear', u'kodak', u'australian', u'staff']
[u'garfunkel', u'go', u'unrecognis', u'drug', u'bust']
[u'urg', u'recognit', u'young']
[u'govt', u'lose', u'asylum', u'seeker', u'court']
[u'govt', u'reject', u'alp', u'backflip', u'border', u'protect']
[u'govt', u'industri', u'assist', u'total']
[u'greek', u'urg', u'speed', u'work', u'olymp', u'venu']
[u'group', u'happi', u'road', u'scheme', u'continu']
[u'gunnedah', u'council', u'abandon', u'merger', u'plan']
[u'hook', u'death', u'put', u'cricket', u'perspect', u'lehmann']
[u'hunter', u'jobless', u'rate', u'slight']
[u'hussey', u'roger', u'warrior', u'control']
[u'india', u'hold', u'talk', u'kashmir', u'seperatist']
[u'india', u'kashmir', u'separatist', u'urg', u'violenc']
[u'indian', u'wed', u'kill']
[u'insur', u'compani', u'appeal', u'test', u'case']
[u'iran', u'urg', u'abandon', u'nuke', u'program']
[u'irish', u'minist', u'vow', u'creat', u'asylum', u'seeker']
[u'iron', u'protest', u'stage']
[u'ivori', u'coast', u'policeman', u'jail', u'journalist', u'murder']
[u'jenson', u'smash', u'track', u'record', u'test']
[u'kerri', u'democrat', u'race', u'poll']
[u'kodak', u'tightlip', u'possibl', u'australian', u'cut']
[u'latham', u'seek', u'tobacco', u'donat']
[u'leed', u'wont', u'sell', u'smith']
[u'lee', u'prais', u'pont', u'heroic']
[u'thank', u'pont', u'heroic']
[u'legal', u'decri', u'lack', u'sniff', u'rehabilit']
[u'lehmann', u'shock', u'hook', u'death']
[u'lib', u'reject', u'labor', u'visa', u'plan']
[u'lion', u'cub', u'bear', u'adelaid']
[u'lobster', u'industri', u'await', u'tariff', u'cut', u'news']
[u'long', u'reach', u'border']
[u'guilti', u'wife', u'murder']
[u'get', u'year', u'pension', u'murder']
[u'mansfield', u'council', u'record', u'oper', u'boost']
[u'market', u'finish', u'week', u'posit', u'note']
[u'mayor', u'anti', u'merger', u'stanc']
[u'mcewen', u'sprint', u'second', u'tour', u'stage', u'jonker']
[u'mcgee', u'fdjeuxcom', u'boss', u'put', u'ethic', u'result']
[u'milan', u'sweep', u'semi', u'roma', u'fail', u'shake']
[u'molik', u'pratt', u'bow', u'roddick', u'blast', u'dent']
[u'moomba', u'plant', u'repair', u'schedul']
[u'fund', u'seek', u'port', u'kembla', u'secur']
[u'highlight', u'need', u'crisi', u'care', u'centr']
[u'lament', u'miss', u'fund', u'calder', u'highway']
[u'talk', u'continu', u'road', u'fund', u'scheme']
[u'nasa', u'lose', u'touch', u'mar', u'rover']
[u'nat', u'launch', u'lockyer']
[u'categori', u'tunarama', u'festiv', u'tuna', u'toss']
[u'nickel', u'miner', u'set', u'sight', u'radio', u'hill']
[u'aust', u'sport', u'nomin', u'upset', u'mayor']
[u'nation', u'water', u'storag', u'review']
[u'opposit', u'leader', u'tightlip', u'shadow']
[u'nuclear', u'black', u'market', u'unsettl']
[u'politician', u'deni', u'fish', u'free', u'lunch']
[u'olyroo', u'olymp', u'play']
[u'pakistani', u'link', u'qaeda', u'assassin', u'bid']
[u'perri', u'move', u'shoot', u'lead', u'california']
[u'parliamentari', u'hiatus', u'delay', u'australian']
[u'polic', u'hunt', u'gold', u'coast', u'syring', u'rapist']
[u'polic', u'prepar', u'aust', u'road', u'blitz']
[u'polic', u'deploy']
[u'polic', u'station', u'go']
[u'polic', u'union', u'say', u'forc', u'deserv', u'rise']
[u'polic', u'warn', u'aust', u'traffic', u'crackdown']
[u'pottharst', u'cook', u'opposit', u'side']
[u'poverti', u'health', u'need', u'address', u'annan']
[u'prepar', u'save', u'rescu', u'rough', u'sea']
[u'prison', u'staff', u'order', u'work']
[u'probe', u'begin', u'sydney', u'hospit', u'misconduct', u'claim']
[u'public', u'seek', u'time', u'oyster', u'plan', u'comment']
[u'opposit', u'promis', u'fund', u'reduc', u'hospit']
[u'queensland', u'promis', u'fair', u'hear', u'hanson', u'claim']
[u'quinn', u'welcom', u'help', u'feder', u'colleagu']
[u'raaf', u'honour', u'tasmanian', u'wwii', u'pilot']
[u'rafter', u'bid', u'belat', u'farewel', u'australian', u'fan']
[u'rain', u'help', u'reviv', u'lake', u'studi']
[u'recent', u'rain', u'expect', u'boost', u'outback', u'tourism']
[u'renov', u'ash', u'head', u'australia']
[u'reservoir', u'discont', u'flow', u'water', u'concern']
[u'roundtabl', u'discuss', u'dairi', u'woe']
[u'rower', u'slog', u'olymp', u'spot', u'penrith']
[u'rugbi', u'boss', u'plan', u'penalti', u'goal']
[u'rwandan', u'minist', u'jail', u'genocid']
[u'safin', u'beat', u'demon', u'mauresmo', u'defi', u'pain']
[u'govt', u'anger', u'wast', u'dump', u'secreci']
[u'saracen', u'link', u'larkham']
[u'scarborough', u'seadog', u'defi', u'odd']
[u'scheme', u'address', u'region', u'teacher', u'shortag']
[u'offend', u'extradit', u'cambodia', u'court']
[u'sharon', u'plan', u'stay']
[u'shire', u'highlight', u'grow', u'crime', u'problem']
[u'shire', u'local', u'award', u'winner']
[u'sign', u'help', u'sting', u'great', u'keppel']
[u'socceroo', u'venezuela', u'friend']
[u'back', u'liverpool', u'hospit', u'euthanasia', u'claim']
[u'lanka', u'retain', u'tillakaratn', u'captain']
[u'strong', u'support', u'continu', u'road', u'fund', u'scheme']
[u'supervis', u'centr', u'inquiri', u'costello']
[u'sydney', u'level', u'lowest', u'year']
[u'tamworth', u'retain', u'water', u'restrict']
[u'polic', u'welcom', u'survey', u'result']
[u'research', u'alzheim', u'link']
[u'tender', u'call', u'worker', u'club', u'demolit']
[u'thailand', u'await', u'bird', u'test', u'result']
[u'thailand', u'confirm', u'bird', u'case']
[u'thargomindah', u'resid', u'prepar', u'rise']
[u'thousand', u'expect', u'flock', u'festival']
[u'kill', u'road']
[u'tourism', u'sector', u'bounc', u'post', u'sar']
[u'townsvill', u'final']
[u'tragedi', u'strike', u'skydiv', u'contest']
[u'road', u'accid']
[u'ulladulla', u'high', u'school', u'hear']
[u'umaga', u'surgeri', u'linger', u'knee', u'complaint']
[u'union', u'surpris', u'educ', u'chief', u'sack']
[u'armi', u'award', u'medal', u'australian', u'soldier']
[u'congressmen', u'slam', u'bush', u'trade', u'talk']
[u'dollar', u'continu', u'slide']
[u'take', u'hard', u'line', u'australian', u'sugar']
[u'vandal', u'spray', u'anti', u'dump', u'messag', u'benalla']
[u'govt', u'lure', u'profession', u'teach', u'countri']
[u'liber', u'announc', u'portfolio', u'reshuffl']
[u'polic', u'start', u'screen', u'teacher', u'year']
[u'public', u'sector', u'wage', u'stoush', u'head']
[u'train', u'driver', u'weigh', u'australia', u'strike']
[u'real', u'rival', u'defiant', u'valencia']
[u'wed', u'death', u'toll', u'rise']
[u'weight', u'loss', u'compani', u'head', u'liquid']
[u'welfar', u'agenc', u'struggl', u'meet', u'demand']
[u'welfar', u'group', u'want', u'lower', u'power', u'price']
[u'whirlwind', u'hollywood', u'dancer', u'miller', u'die']
[u'wildcat', u'look', u'bounc', u'bullet']
[u'wine', u'invest', u'fund', u'chief', u'resign']
[u'women', u'work', u'kill', u'iraq', u'attack']
[u'xstrata', u'restructur', u'lift', u'north', u'west']
[u'zimbabw', u'opposit', u'deni', u'peac', u'talk', u'mugab']
[u'zimbabw', u'polit', u'parti', u'deni', u'peac', u'plan', u'talk']
[u'zimbabw', u'shut', u'relaunch', u'newspap']
[u'actu', u'warn', u'diplomat', u'solomon', u'disput']
[u'adelaid', u'unit', u'kingz']
[u'secur', u'personnel', u'head', u'home', u'iraq']
[u'alonso', u'fastest', u'barcelona', u'test']
[u'dead', u'iraq', u'attack']
[u'australia', u'bird', u'minist']
[u'australian', u'mull', u'indonesian', u'jail', u'term', u'appeal']
[u'australian', u'open', u'result', u'saturday']
[u'ban', u'place', u'thai', u'poultri', u'import', u'aqi']
[u'beatti', u'latest', u'newspap', u'poll']
[u'beatti', u'promis', u'boost', u'dental', u'servic']
[u'bird', u'claim', u'victim', u'vietnam']
[u'bird', u'vaccin', u'month', u'away']
[u'blair', u'stick', u'iraq', u'claim', u'despit', u'quit']
[u'blue', u'chase', u'inning', u'point']
[u'blue', u'inning', u'point']
[u'bono', u'promis', u'swear', u'golden', u'globe', u'cermoni']
[u'brack', u'welcom', u'citylink', u'investig']
[u'brigitt', u'wife', u'releas', u'franc']
[u'brigitt', u'wife', u'releas', u'franc']
[u'british', u'polic', u'offic', u'say', u'question']
[u'bulgaria', u'polic', u'rare', u'python', u'hand', u'luggag']
[u'bull', u'middl', u'order', u'defi', u'tiger']
[u'bull', u'tiger', u'play', u'draw']
[u'burk', u'seek', u'return', u'shadow', u'ministri']
[u'burma', u'reach', u'ceasefir', u'insurg']
[u'butler', u'condemn', u'howard', u'school']
[u'skill', u'migrant', u'attract']
[u'tougher', u'sprinkler', u'measur']
[u'build', u'prison', u'hume']
[u'canada', u'agre', u'forgiv', u'iraq', u'debt']
[u'cana', u'overcom', u'henman', u'marathon', u'match']
[u'cathay', u'pacif', u'hire', u'extra', u'cabin', u'crew', u'report']
[u'chile', u'dictat', u'pinochet', u'hospitalis']
[u'citi', u'seek', u'reveng', u'year', u'later']
[u'conrad', u'black', u'battl', u'affili']
[u'deputi', u'secretari', u'state', u'visit', u'china', u'japan']
[u'diamond', u'boot', u'cowboy', u'best', u'friend']
[u'doctor', u'guilti', u'perjuri', u'patient']
[u'dozen', u'dead', u'heavi', u'wind', u'bitter', u'cold', u'lash', u'europ']
[u'electr', u'fault', u'suspect', u'factori', u'blaze']
[u'england', u'delay', u'decis', u'zimbabw', u'tour']
[u'european', u'spacecraft', u'unveil', u'mar', u'wateri', u'past']
[u'weapon', u'inspector', u'cast', u'fresh', u'doubt', u'iraq']
[u'fame', u'german', u'photograph', u'kill', u'crash']
[u'fear', u'rail', u'freight', u'charg', u'increas']
[u'feder', u'demolish', u'aussi', u'reid']
[u'final', u'world', u'trade', u'centr', u'victim', u'count']
[u'ground', u'egyptian', u'plane', u'pari', u'airport']
[u'student', u'return', u'snowi', u'project', u'school']
[u'gaze', u'celebr', u'record']
[u'gibson', u'lash', u'christ', u'film', u'demand']
[u'govt', u'tobacco', u'donat', u'anti', u'smoke', u'lobbi']
[u'green', u'confid', u'win', u'seat', u'elect']
[u'gronholm', u'lead', u'loeb', u'mont', u'carlo', u'open']
[u'hair', u'rais', u'cancer', u'risk', u'studi']
[u'halliburton', u'repay', u'million', u'iraqi', u'kickback']
[u'hawk', u'second', u'bullet', u'misfir']
[u'hewitt', u'set', u'feder', u'clash']
[u'howard', u'slam', u'labor', u'asylum', u'seeker', u'polici']
[u'indian', u'meet', u'islam', u'separatist', u'disput']
[u'india', u'test', u'short', u'rang', u'nuclear', u'capabl', u'missil']
[u'indigen', u'communiti', u'gain', u'polic', u'post']
[u'indonesian', u'polic', u'question']
[u'indonesia', u'renew', u'arm', u'race', u'warn']
[u'injuri', u'cut', u'short', u'pittman', u'brisban']
[u'vice', u'presid', u'suspend']
[u'iran', u'guardian', u'council', u'review', u'poll', u'mistak']
[u'isra', u'command', u'urg', u'west', u'bank', u'roadblock', u'rethink']
[u'italian', u'censor', u'berlusconi', u'satir']
[u'jewish', u'leader', u'slam', u'gibson', u'passion', u'film']
[u'jonker', u'close', u'tour', u'victori']
[u'jonker', u'retain', u'yellow', u'jersey']
[u'khaddafi', u'visit', u'indonesia', u'month']
[u'labor', u'get', u'asylum', u'seeker', u'polici']
[u'laxman', u'hero', u'india']
[u'light', u'aircraft', u'collaps', u'takeoff']
[u'lightn', u'capit', u'stay', u'aliv']
[u'suffer', u'sever', u'injuri', u'crash', u'trail']
[u'surviv', u'hour', u'ordeal', u'trap', u'tractor']
[u'mar', u'knock', u'spirit', u'nasa', u'rover']
[u'mickelson', u'surg', u'stroke', u'lead']
[u'miss', u'girl', u'dead', u'river']
[u'moseley', u'stay', u'touch', u'johannesburg']
[u'musharraf', u'fear', u'pakistani', u'scientist', u'sell', u'nuke']
[u'nation', u'seek', u'shoalhaven', u'plan', u'reviv']
[u'navi', u'intercept', u'alleg', u'toothfish', u'poacher']
[u'nuclear', u'secret', u'trade', u'like', u'drug', u'iaea']
[u'compani', u'clear', u'burma', u'right', u'abus']
[u'olymp', u'bodi', u'suspend', u'amid', u'corrupt', u'probe']
[u'opposit', u'offer', u'polic', u'helicopt', u'elect']
[u'oscar', u'pirat', u'arrest', u'onlin', u'bootleg']
[u'pakistan', u'arrest', u'taliban', u'governor']
[u'pakistan', u'faith', u'captain', u'inzamam']
[u'parmalat', u'execut', u'commit', u'suicid']
[u'person', u'hospitalis', u'accid']
[u'physicist', u'hawk', u'deni', u'abus', u'wife']
[u'polic', u'continu', u'probe', u'whistleblow', u'bulli']
[u'polic', u'drop', u'charg', u'brothel', u'madam']
[u'polic', u'search', u'central', u'west', u'miss', u'girl']
[u'present', u'suspend', u'pend', u'cash', u'comment', u'probe']
[u'opposit', u'elect', u'campaign', u'target', u'road']
[u'reid', u'demolish', u'william', u'crash']
[u'religi', u'leader', u'call', u'iraqi', u'stop']
[u'rocket', u'indian', u'kashmir', u'nation']
[u'rossi', u'play', u'chanc', u'yamaha']
[u'russia', u'say', u'pressur', u'kyoto', u'delay', u'unfair']
[u'cricket', u'honour', u'hook']
[u'saha', u'complet', u'unit']
[u'scud', u'overpow', u'ancic', u'venus', u'crash']
[u'separ', u'egyptian', u'twin', u'walk']
[u'queensland', u'recov', u'sever', u'storm']
[u'shark', u'strong', u'start', u'seven']
[u'shuttl', u'flight', u'look', u'like', u'busi', u'usual', u'nasa']
[u'kill', u'miss', u'boat', u'sink']
[u'skateboard', u'slash', u'knife']
[u'sky', u'limit', u'record', u'breaker']
[u'socceroo', u'clash', u'south', u'africa']
[u'spirit', u'make', u'feebl', u'mar']
[u'spirit', u'rover', u'communic', u'earth']
[u'striker', u'unit', u'match', u'abandon']
[u'tarkin', u'protect', u'group', u'meet', u'weekend']
[u'cancer', u'council', u'push', u'tobacco']
[u'teenag', u'die', u'bird', u'vietnam']
[u'thai', u'govern', u'handl', u'bird']
[u'kill', u'road', u'accid']
[u'tiatto', u'give', u'month', u'save', u'citi', u'career']
[u'time', u'run', u'state', u'solut', u'arafat']
[u'tougher', u'penalti', u'dummi', u'bidder', u'auction']
[u'triathlet', u'thompson', u'take', u'aquathlon', u'titl']
[u'buddhist', u'monk', u'policeman', u'kill', u'south']
[u'pilot', u'kill', u'chopper', u'crash', u'iraq']
[u'umaga', u'miss', u'start', u'super', u'report']
[u'union', u'question', u'polic', u'survey', u'releas']
[u'liaison', u'team', u'arriv', u'iraq']
[u'team', u'survey', u'secur', u'risk', u'baghdad']
[u'ask', u'iran', u'send', u'qaeda', u'captiv', u'home']
[u'busi', u'urg', u'bush', u'libyan', u'sanction']
[u'claim', u'iraqi', u'milit', u'captur']
[u'stock', u'investor', u'profit']
[u'urg', u'europ', u'join', u'terror']
[u'gear', u'australia', u'celebr']
[u'walk', u'listen', u'studi']
[u'white', u'hous', u'seek', u'militari', u'spend']
[u'wood', u'caution', u'rush', u'thing']
[u'thief', u'get', u'steer']
[u'zimbabwean', u'polic', u'raid', u'opposit', u'parti']
[u'zimbabwean', u'chase', u'indian', u'total']
[u'arrest', u'sydney', u'rail', u'drug', u'bust']
[u'proceed', u'probe', u'cash', u'comment']
[u'academ', u'defend', u'butler', u'controversi', u'speech']
[u'personnel', u'arriv', u'home', u'iraq', u'servic']
[u'african', u'human', u'right', u'court']
[u'anderson', u'critic', u'beatti', u'grin', u'polit']
[u'anglican', u'bishop', u'prais', u'labor', u'refuge', u'polici']
[u'anglo', u'zulu', u'enact', u'draw', u'cast', u'thousand']
[u'arsenal', u'chelsea', u'liverpool', u'notch', u'win']
[u'atsic', u'lobbi', u'fund', u'clark', u'appeal']
[u'attack', u'kill', u'iraq']
[u'attempt', u'murder', u'charger', u'machet', u'attack']
[u'australian', u'open', u'result', u'sunday']
[u'ban', u'film', u'take', u'honour', u'bangladeshi', u'film']
[u'beatti', u'promis', u'ambul', u'boost']
[u'beatti', u'promis', u'ambul', u'servic']
[u'brack', u'inject', u'fund', u'polic', u'forc']
[u'britain', u'buck', u'pressur', u'admit', u'err', u'iraqi']
[u'dump', u'merger', u'plan', u'nation', u'film', u'archiv']
[u'cambodian', u'mourn', u'unionist', u'death']
[u'canberra', u'assist', u'second', u'mar', u'land']
[u'internet', u'music', u'bust']
[u'celtic', u'maintain', u'huge', u'ger']
[u'chile', u'dictat', u'pinochet', u'discharg', u'hospit']
[u'clean', u'continu', u'storm', u'south', u'east']
[u'congression', u'visit', u'mark', u'thaw', u'libyan']
[u'daili', u'mail', u'parent', u'map', u'daili', u'sunday']
[u'date', u'rape', u'drug', u'drop', u'sweden']
[u'dido', u'score', u'franc', u'madonna', u'britney', u'look']
[u'desex', u'law', u'fail', u'rspca']
[u'dog', u'need', u'yoga']
[u'downer', u'israel', u'meet', u'sharon']
[u'farmer', u'famili', u'tell', u'heroic', u'tale', u'surviv']
[u'fergi', u'pois', u'sign', u'unit', u'contract', u'report']
[u'gate', u'pledg', u'unclog', u'email', u'box']
[u'gate', u'knight', u'report']
[u'govt', u'plan', u'compulsori', u'leav', u'pass', u'high', u'school']
[u'green', u'prefer', u'decis', u'beatti']
[u'hansen', u'edg', u'ahead', u'pursuit', u'second', u'titl']
[u'hezbollah', u'confirm', u'prison', u'swap', u'israel']
[u'indonesia', u'mull', u'random', u'blood', u'test', u'bird']
[u'inquiri', u'launch', u'polic', u'crash']
[u'intern', u'crisi', u'meet', u'call', u'bird']
[u'iran', u'dismiss', u'claim', u'sept', u'link']
[u'iraqi', u'wmds', u'open', u'question', u'powel']
[u'iraq', u'weapon', u'report', u'take', u'serious', u'annan']
[u'hollywood', u'sing', u'hail', u'hobbit']
[u'israel', u'accept', u'turkish', u'mediat', u'offer', u'talk']
[u'johnson', u'talk', u'hill', u'captainci', u'chanc']
[u'jone', u'say', u'set', u'aussi', u'empir']
[u'jonker', u'end', u'cycl', u'career', u'style']
[u'journalist', u'releas', u'brief', u'arrest', u'aceh']
[u'say', u'iraq', u'weapon', u'syria', u'report']
[u'king', u'bullet', u'bounc']
[u'klitschko', u'retir', u'box', u'champ', u'lewi']
[u'labor', u'coalit', u'score', u'health', u'polici']
[u'lightn', u'storm', u'put', u'southern', u'sydney', u'dark']
[u'lightn', u'strike', u'kill', u'cricket']
[u'loeb', u'put', u'citroen', u'drive', u'seat']
[u'maher', u'accus', u'tiger', u'soft', u'tactic']
[u'major', u'want', u'blair', u'rap', u'kelli', u'probe']
[u'attack', u'shark']
[u'cairn', u'court', u'bomb', u'hoax', u'charg']
[u'matthew', u'back', u'voss', u'open']
[u'mayor', u'tout', u'shoalwat', u'militari', u'base']
[u'media', u'damag', u'famili', u'pope']
[u'mitchel', u'fight', u'interim', u'crown', u'tszyus']
[u'molik', u'bow', u'davenport', u'henin', u'hardenn']
[u'molik', u'face', u'french', u'ambush']
[u'dope', u'scandal', u'hurt', u'cycl', u'armstrong']
[u'georgian', u'presid', u'welcom', u'powel']
[u'newton', u'exhibit', u'open', u'despit', u'death']
[u'year', u'suffer', u'head', u'injuri', u'accid']
[u'nomin', u'seek', u'sport', u'award']
[u'say', u'reduct', u'school', u'class', u'size', u'come']
[u'weekend', u'road', u'toll', u'rise']
[u'gear', u'australia', u'festiv']
[u'truck', u'industri', u'look', u'bright']
[u'olymp', u'outclass', u'wolv']
[u'dead', u'miss', u'strong', u'wind', u'philippin']
[u'opportun', u'mar', u'land']
[u'opportun', u'land', u'mar']
[u'opportun', u'probe', u'land', u'mar']
[u'opportun', u'send', u'mar', u'pictur']
[u'orang', u'utan', u'rehab', u'start', u'borneo', u'ape']
[u'pakistan', u'free', u'scientist', u'nuclear', u'leak', u'probe']
[u'pedestrian', u'kill', u'brisban']
[u'perth', u'resid', u'ask', u'recycl', u'aust']
[u'perth', u'train', u'driver', u'consid', u'strike']
[u'piec', u'boat', u'histori', u'home', u'hobart']
[u'drop', u'springborg', u'launch', u'campaign']
[u'polic', u'crack', u'paint', u'sniff']
[u'polic', u'hunt', u'involv', u'watch', u'robberi']
[u'polic', u'investig', u'possibl', u'speed', u'accid']
[u'polic', u'search', u'miss']
[u'prosecutor', u'order', u'bodi', u'exhum', u'rasta']
[u'brace', u'storm']
[u'opposit', u'vow', u'campaign', u'live']
[u'quak', u'jolt', u'taiwan']
[u'ravanelli', u'goal', u'fail', u'save', u'perugia']
[u'renown', u'arab', u'writer', u'munif', u'die']
[u'roddick', u'agassi', u'cruis', u'quarter', u'final']
[u'ronaldo', u'target', u'real']
[u'rossi', u'give', u'thumb', u'test', u'ride']
[u'sewag', u'station', u'upgrad', u'curb', u'pollut', u'risk']
[u'south', u'east', u'queensland', u'strike', u'lightn']
[u'sprinkler', u'turn', u'canberra']
[u'storer', u'pluck', u'tamworth', u'golden', u'guitar']
[u'servic', u'ask', u'consum', u'check']
[u'taxpay', u'spend', u'million', u'clean', u'graffiti']
[u'thailand', u'bring', u'troop', u'fight', u'bird']
[u'thunderstorm', u'ravag', u'south', u'east']
[u'tiger', u'edg', u'eel', u'seven', u'glori']
[u'tight', u'secur', u'keep', u'anti', u'protest']
[u'time', u'travel', u'music', u'rivalri', u'sundanc']
[u'tiwi', u'island', u'celebr', u'aust', u'footi']
[u'triplett', u'make', u'charg', u'california']
[u'dead', u'miss', u'sudden', u'squall', u'northern']
[u'unhealthi', u'lifestyl', u'put', u'beij']
[u'food', u'firm', u'oppos']
[u'propos', u'arm', u'check', u'north', u'korea', u'report']
[u'south', u'korea', u'hold', u'talk', u'beef', u'import']
[u'polic', u'union', u'hail', u'fund', u'boost']
[u'school', u'arent', u'face', u'fund', u'crisi', u'minist']
[u'lib', u'pledg', u'toughen', u'plate', u'rule']
[u'polic', u'charg', u'suspect', u'evid']
[u'warrior', u'lose', u'late', u'wicket']
[u'waugh', u'want', u'award', u'inspir', u'youth']
[u'wilkinson', u'nation', u'comeback', u'doubt']
[u'acoss', u'draw', u'attent', u'rich', u'poor', u'divid']
[u'spend', u'prioriti', u'question']
[u'agricultur', u'trade', u'agreement', u'howard']
[u'safeti', u'probe', u'launch', u'beach', u'land']
[u'flag', u'defenc', u'base', u'golf', u'cours', u'review']
[u'ambul', u'levi', u'fund', u'beatti', u'paramed', u'plan']
[u'atsic', u'leader', u'call', u'inclus', u'aust']
[u'aussi', u'martyn', u'open']
[u'aust', u'activ', u'aplenti']
[u'aust', u'award', u'aplenti', u'northern']
[u'aust', u'award', u'honour', u'local', u'achiev']
[u'aust', u'honour', u'flow', u'southern', u'northern']
[u'aust', u'honour', u'south', u'east', u'pair']
[u'australia', u'beacon', u'harmoni']
[u'australia', u'honour', u'tasmanian']
[u'australia', u'wipeout', u'hewitt', u'scud']
[u'australian', u'open', u'result', u'monday', u'week']
[u'australian', u'talent', u'gear', u'golden', u'globe']
[u'bangladesh', u'grappl', u'mysteri', u'diseas']
[u'bangladesh', u'mahmud', u'quit', u'cricket', u'lose']
[u'beatti', u'push', u'free', u'trade', u'sweeten']
[u'beatti', u'springborg', u'promis', u'west']
[u'bionic', u'inventor', u'score', u'australia', u'award']
[u'bird', u'death', u'increas', u'asia']
[u'bird', u'greater', u'threat', u'health', u'expert']
[u'bird', u'reach', u'indonesia']
[u'bird', u'strain', u'detect', u'pakistan']
[u'blair', u'scrambl', u'avert', u'damag', u'defeat']
[u'blue', u'chase', u'victori']
[u'blue', u'chase', u'target']
[u'brazilian', u'soccer', u'say', u'goodby', u'great']
[u'bull', u'hobart']
[u'bushfir', u'recoveri', u'worker', u'receiv', u'australia']
[u'bushrang', u'redback', u'play', u'hook', u'trophi']
[u'cadburi', u'sue', u'victorian', u'dairi', u'giant']
[u'camper', u'warn', u'danger']
[u'camplin', u'fli', u'high', u'canada']
[u'canberra', u'welcom', u'citizen']
[u'cobar', u'oper', u'look', u'good']
[u'clijster', u'continu', u'crush', u'form']
[u'coalit', u'person', u'attack', u'beatti', u'say']
[u'cook', u'sanderson', u'beach', u'volleybal', u'titl']
[u'councillor', u'consid', u'legal', u'action', u'honesti']
[u'countri', u'perform', u'prove', u'talent']
[u'date', u'israel', u'hezbollah', u'prison', u'swap']
[u'davi', u'swede', u'gun', u'aussi']
[u'diamond', u'miner', u'look', u'outback']
[u'domest', u'violenc', u'survivor', u'name', u'local', u'hero']
[u'dougla', u'receiv', u'lifetim', u'achiev', u'award']
[u'driver', u'urg', u'watch', u'return', u'student']
[u'dunde', u'unit', u'local', u'derbi']
[u'english', u'cricket', u'chief', u'want', u'talk', u'zimbabw', u'tour']
[u'member', u'saddam', u'baath', u'parti', u'pledg']
[u'farmer', u'recov', u'tractor', u'mishap']
[u'film', u'director', u'schepisi', u'honour', u'aust', u'award']
[u'final', u'loom', u'polic', u'road', u'oper']
[u'damag', u'perth', u'sawmil']
[u'firefight', u'tackl', u'rocki', u'cape', u'blaze']
[u'fishermen', u'miss', u'squall', u'philippin']
[u'injur', u'sydney', u'shoot']
[u'floodwat', u'return', u'england']
[u'floodwat', u'spark', u'creek', u'strand']
[u'french', u'green', u'boycott', u'chines', u'presid', u'address']
[u'plant', u'detect', u'landmin']
[u'green', u'seat']
[u'group', u'prais', u'curb', u'great', u'ocean', u'road']
[u'hama', u'readi', u'accept', u'phase', u'withdraw']
[u'help', u'team', u'bomaderri', u'death']
[u'howard', u'defiant', u'iraq', u'involv']
[u'howard', u'fear', u'terrorist', u'attack']
[u'hunter', u'resid', u'name', u'aust', u'honour']
[u'indigen', u'artist', u'aust', u'winner']
[u'indonesia', u'admit', u'bird', u'warn']
[u'iranian', u'vote', u'chang', u'elector', u'ban']
[u'iran', u'guardian', u'council', u'veto', u'power', u'challeng']
[u'japan', u'turn', u'barcod', u'restor', u'beef', u'market']
[u'kangaroo', u'want', u'power']
[u'katherin', u'rememb', u'australia', u'flood']
[u'kutcher', u'float', u'like', u'butterfli', u'offic']
[u'labor', u'lay', u'cutback', u'fund', u'promis']
[u'late', u'strike', u'seal', u'olyroo']
[u'latham', u'call', u'uniti', u'australian', u'societi']
[u'latham', u'plan', u'review', u'better', u'parent', u'measur']
[u'local', u'govt', u'group', u'back', u'norman', u'win', u'grower']
[u'long', u'weekend', u'road', u'toll', u'hit']
[u'die', u'hospit', u'motorcycl', u'accid']
[u'kill', u'accid']
[u'court', u'bomaderri', u'stand']
[u'mickelson', u'edg', u'kendal', u'victori', u'california']
[u'migrant', u'australia', u'home', u'citizenship']
[u'migrant', u'pledg', u'allegi', u'hobart']
[u'milan', u'narrow', u'seri']
[u'storm', u'ahead', u'south', u'east']
[u'school', u'stanc', u'puzzl', u'teacher', u'feder']
[u'mysteri', u'ill', u'kill', u'bangladesh']
[u'nalbandian', u'ferrero', u'quarter']
[u'niue', u'toddler', u'die', u'hospit']
[u'sugar', u'deal', u'vail']
[u'legal', u'pioneer', u'recognis', u'australia']
[u'south', u'coast', u'share', u'aust', u'honour']
[u'town', u'flood', u'alert']
[u'olympian', u'australia', u'honour', u'winner']
[u'olymp', u'legend', u'fanni', u'blanker', u'koen', u'dead']
[u'olyroo', u'face', u'kiwi', u'athen', u'berth']
[u'olyroo', u'triumph', u'kiwi']
[u'parmalat', u'founder', u'leav', u'hospit', u'jail']
[u'plan', u'afoot', u'boost', u'armi', u'cadet', u'number']
[u'encourag', u'debat', u'school']
[u'reject', u'behaviour', u'legisl', u'propos']
[u'polic', u'lament', u'hunter', u'drink', u'drive']
[u'polic', u'weekend', u'drink', u'drive', u'arrest']
[u'polic', u'search', u'clue', u'sydney', u'drive', u'shoot']
[u'poultri', u'screen', u'adequ', u'aqi', u'say']
[u'pressur', u'elect', u'grow', u'iraq']
[u'leader', u'stand', u'health', u'plan']
[u'rare', u'tiger', u'russia', u'east']
[u'receiv', u'appoint', u'flowcom']
[u'record', u'centuri', u'power', u'bull', u'home']
[u'ring', u'claim', u'film', u'throne', u'golden', u'globe']
[u'riverland', u'welcom', u'australian', u'citizen']
[u'russian', u'soldier', u'kill', u'chechen', u'ambush']
[u'tuna', u'farmer', u'net', u'australia', u'award']
[u'scientist', u'artist', u'campaign', u'award', u'winner']
[u'scientist', u'isol', u'genet', u'marker', u'leprosi']
[u'scottish', u'milliped', u'earth', u'oldest', u'creatur']
[u'scud', u'drop']
[u'scud', u'hewitt', u'quarter', u'final', u'berth']
[u'scud', u'hewitt', u'quarter', u'final', u'spot']
[u'second', u'blaze', u'strike', u'goonoo', u'forest']
[u'second', u'marriott', u'blast', u'suspect', u'trial']
[u'seven', u'suspect', u'rebel', u'kill', u'aceh']
[u'sharehold', u'queri', u'transfer', u'payment']
[u'shark', u'attack', u'spark', u'dive', u'warn']
[u'siem', u'clinch', u'titl', u'play']
[u'skaif', u'bennett', u'name', u'australia', u'honour']
[u'slipperi', u'surpris', u'python', u'appear', u'barcelona']
[u'south', u'glori', u'score', u'draw']
[u'south', u'korea', u'report', u'suspect', u'bird', u'case']
[u'sport', u'lifestyl', u'essenc', u'australia']
[u'springborg', u'head', u'west', u'offici', u'launch']
[u'storm', u'lash', u'south', u'east', u'queensland']
[u'storm', u'play', u'havoc', u'power', u'suppli']
[u'survey', u'show', u'chines', u'unhappi', u'fight']
[u'sydney', u'launch', u'australia', u'festiv']
[u'syria', u'scoff', u'claim', u'iraqi', u'weapon']
[u'taiwan', u'declar', u'bird', u'free']
[u'territorian', u'receiv', u'australia', u'award']
[u'terror', u'fear', u'stifl', u'vital', u'issu', u'archbishop']
[u'thailand', u'confirm', u'bird', u'fatal']
[u'thai', u'deni', u'bird', u'cover']
[u'thai', u'troop', u'deploy', u'battl', u'bird']
[u'thousand', u'australian', u'citizen']
[u'thousand', u'flock', u'aust', u'parad']
[u'toyota', u'overtak', u'ford', u'sale']
[u'trucki', u'court', u'drug']
[u'tuna', u'tosser', u'unlik', u'reel', u'world', u'record']
[u'queensland', u'receiv', u'australia', u'honour']
[u'underworld', u'leak', u'nuclear', u'secret', u'pakistani']
[u'unit', u'fifth', u'round']
[u'seek', u'fund', u'rebuild', u'gaza', u'home']
[u'express', u'concern', u'algerian', u'elect']
[u'helicopt', u'crash', u'iraq', u'crew', u'miss']
[u'releas', u'jazeera', u'cameraman', u'iraq']
[u'valencia', u'slip', u'real', u'madrid', u'breath']
[u'govt', u'say', u'plate', u'zero', u'alcohol', u'plan', u'unwork']
[u'wait', u'iraqi', u'weapon', u'downer']
[u'rail', u'disput', u'track']
[u'resid', u'offici', u'aussi']
[u'warrior', u'chop', u'blue', u'angel', u'quit', u'high']
[u'water', u'patrol', u'uncov', u'fish', u'breach']
[u'western', u'resid', u'share', u'aust', u'honour']
[u'fear', u'bird', u'outbreak']
[u'windi', u'meltdown', u'worst', u'perform']
[u'woman', u'die', u'bundarra', u'crash']
[u'young', u'aust', u'year', u'hop', u'award', u'fuel']
[u'zimbabw', u'go', u'fight', u'adelaid']
[u'zimbabw', u'massiv', u'chase']
[u'secur', u'bolster', u'kill']
[u'kill', u'cairo', u'build', u'collaps']
[u'academ', u'predict', u'charter', u'tower', u'challeng']
[u'afghan', u'presid', u'sign', u'decre', u'make']
[u'add', u'francisco', u'destin', u'list']
[u'annan', u'say', u'commiss', u'need', u'thwart', u'genocid']
[u'anzac', u'visit', u'gallipoli', u'chang']
[u'arsenal', u'face', u'chelsea']
[u'dead', u'cairo', u'build', u'collaps']
[u'aussi', u'face', u'select', u'dilemma']
[u'aust', u'award', u'winner', u'seek', u'volunt']
[u'australian', u'navi', u'start', u'target', u'practic']
[u'barbara', u'walter', u'leav']
[u'beatti', u'await', u'detail', u'militari', u'base']
[u'beatti', u'order', u'campaign', u'gutter']
[u'bendigo', u'bank', u'address', u'shortcom']
[u'benfica', u'striker', u'die', u'collaps', u'pitch']
[u'billiton', u'hop', u'good', u'coke', u'coal', u'price']
[u'biodivers', u'trade', u'scheme', u'month', u'away']
[u'bird', u'crisi', u'summit', u'hold']
[u'bird', u'rais', u'fear', u'poultri', u'industri']
[u'bird', u'vaccin', u'month', u'away']
[u'bird', u'owner', u'urg', u'lock', u'bird']
[u'birth', u'pool', u'eas', u'earli', u'labour', u'pain', u'doctor']
[u'blair', u'face', u'tight', u'vote', u'fund', u'reform']
[u'boro', u'open', u'talk', u'sign', u'mill']
[u'bounti', u'reject', u'suspend', u'seismic', u'test']
[u'broom', u'take', u'plan', u'approach', u'recruit']
[u'brown', u'target', u'shoot', u'championship', u'win']
[u'buchanan', u'back', u'struggl', u'martyn']
[u'bullish', u'time', u'beef', u'produc']
[u'bushwalk', u'rescu', u'blue', u'mountain']
[u'royal', u'commiss', u'health']
[u'govt', u'clarifi', u'propos']
[u'call', u'govt', u'reconsid', u'centr']
[u'caltex', u'franchis', u'challeng', u'discount', u'fuel', u'plan']
[u'caltex', u'fuel', u'disput', u'refer', u'mediat']
[u'canberra', u'mourn', u'famili', u'kill', u'smash']
[u'central', u'victorian', u'share', u'aust', u'award']
[u'chariti', u'group', u'help', u'share', u'cost', u'school', u'year']
[u'china', u'confirm', u'bird', u'outbreak']
[u'clinton', u'gift', u'internet', u'email']
[u'cole', u'uphold', u'appeal', u'fail']
[u'conserv', u'council', u'slam', u'port', u'botani', u'environ']
[u'corridor', u'work', u'includ', u'local', u'road', u'chang']
[u'costello', u'accus', u'labor', u'amateur', u'account']
[u'cotter', u'unlik', u'rise', u'ash']
[u'councillor', u'unhappi', u'health', u'servic', u'offer']
[u'cricket', u'communiti', u'prepar', u'hook', u'farewel']
[u'damag', u'storm', u'rise']
[u'david', u'hook', u'funer']
[u'debat', u'rag', u'bird', u'pakistan']
[u'debri', u'miss', u'plane', u'search']
[u'diamond', u'accept', u'firearm', u'charg']
[u'disgrac', u'cyclist', u'say', u'percent', u'rider']
[u'doctor', u'jail', u'lie', u'medic', u'board']
[u'dominican', u'migrant', u'miss']
[u'doubt', u'rais', u'truanci', u'plan']
[u'downer', u'urg', u'asia', u'open', u'bird']
[u'dreamworld', u'take', u'chairlift', u'precaut']
[u'driver', u'start', u'heed', u'road', u'safeti', u'warn']
[u'driver', u'urg', u'wari', u'school', u'student']
[u'earli', u'agfair']
[u'emerg', u'servic', u'worker', u'reflect', u'aust']
[u'councillor', u'get', u'aust', u'honour']
[u'expert', u'predict', u'popul', u'declin', u'short', u'term']
[u'feder', u'fund', u'boost', u'jetti', u'plan']
[u'feedback', u'seek', u'hors', u'remov', u'plan']
[u'firefight', u'protect', u'rare', u'plant', u'blaze']
[u'flood', u'relief', u'arrang', u'widen']
[u'forest', u'industri', u'loggerhead', u'protest']
[u'jethro', u'tull', u'rocker', u'chang']
[u'free', u'throw', u'let', u'defeat', u'croc']
[u'face', u'labor', u'opposit']
[u'geelong', u'help', u'test', u'bird', u'virus']
[u'ghan', u'timet', u'track']
[u'girl', u'bali', u'diagnos', u'suspect', u'bird']
[u'girl', u'drown', u'spark', u'counsel', u'offer']
[u'gold', u'coast', u'school', u'join', u'prep', u'trial']
[u'golden', u'girl', u'cook', u'take', u'injuri', u'time']
[u'gold', u'miner', u'upbeat', u'drill', u'prospect']
[u'govt', u'approv', u'assist', u'palestinian']
[u'govt', u'educ', u'reform', u'packag', u'caus', u'concern']
[u'govt', u'urg', u'resolv', u'clark', u'futur']
[u'green', u'limit', u'prefer', u'labor']
[u'guid', u'aim', u'boost', u'break', u'hill', u'visitor', u'number']
[u'henley', u'mersey', u'attract', u'good', u'crowd']
[u'hook', u'leav', u'adelaid', u'oval', u'time']
[u'hope', u'resolut', u'hospit', u'doctor', u'disput']
[u'hope', u'second', u'magistr', u'boost', u'legal', u'servic']
[u'hume', u'highway', u'talk', u'focus', u'safeti']
[u'india', u'turn', u'youth']
[u'indigen', u'disput', u'settl', u'court']
[u'indigen', u'communiti', u'tell', u'stori']
[u'indigen', u'begin', u'youth', u'scheme']
[u'indigen', u'women', u'group', u'case', u'nuclear']
[u'indonesia', u'deni', u'bird', u'cover']
[u'indonesian', u'fish', u'boat', u'nab']
[u'insurrect', u'trial', u'resum', u'south', u'africa']
[u'ioc', u'face', u'corrupt', u'charg']
[u'iraq', u'kick', u'join']
[u'irish', u'want', u'leagu', u'world', u'spot']
[u'isra', u'secur', u'barrier', u'provoc', u'downer', u'say']
[u'israel', u'prais', u'australia', u'stanc', u'terror']
[u'japanes', u'balloonist', u'take', u'pacif', u'cross']
[u'japan', u'formal', u'order', u'troop', u'iraq']
[u'earn', u'hollywood', u'dishonour', u'razzi']
[u'kenyan', u'court', u'hotel', u'bomb']
[u'turn', u'fish', u'vietnam', u'bird']
[u'kip', u'get', u'aust', u'honour']
[u'labor', u'say', u'defenc', u'land', u'sell', u'cheapli']
[u'late', u'rate', u'payment', u'affect', u'shire', u'financ']
[u'late', u'train', u'trigger', u'compo']
[u'latham', u'defend', u'parent', u'propos']
[u'law', u'trigger', u'gun', u'handback', u'opportun']
[u'leader', u'head', u'north', u'elect', u'race']
[u'legisl', u'focus', u'limit', u'great', u'ocean']
[u'liverpool', u'striker', u'heskey', u'face', u'injuri']
[u'local', u'share', u'aust', u'award']
[u'love', u'blindbut', u'improv']
[u'guilti', u'beach', u'attack']
[u'drug', u'charg', u'front', u'court']
[u'mar', u'rover', u'photo', u'holi', u'grail']
[u'mauresmo', u'pull', u'australian', u'open']
[u'mechan', u'failur', u'derail']
[u'west', u'host', u'cabinet', u'meet']
[u'mix', u'respons', u'wastewat', u'pipelin', u'pledg']
[u'model', u'warship', u'prepar', u'battl']
[u'audit', u'deal', u'team']
[u'delay', u'bathurst', u'visitor', u'centr']
[u'motiv', u'mickelson', u'see', u'major', u'possibl']
[u'happi', u'vail', u'free', u'trade', u'posit']
[u'warn', u'industri', u'safeti', u'profit']
[u'multicultur', u'high', u'school', u'celebr', u'year']
[u'mysteri', u'surround', u'fish', u'kill']
[u'announc', u'strateg', u'sell']
[u'loss', u'total']
[u'trader', u'say', u'manag', u'awar', u'currenc']
[u'worm']
[u'emerg', u'servic', u'schedul']
[u'offer', u'avert', u'industri', u'action']
[u'sport', u'centr', u'readi', u'busi']
[u'extend', u'medic', u'indemn', u'paediatr']
[u'poultri', u'farmer', u'confid', u'avoid', u'bird']
[u'govt', u'revamp', u'tennant', u'railway', u'station']
[u'accept', u'asylum', u'seeker', u'nauru']
[u'space', u'expert', u'ask', u'nasa', u'lift', u'mar']
[u'accept', u'nauru', u'asylum', u'seeker']
[u'oilfield', u'spark', u'frenzi', u'trade']
[u'olyroo', u'close', u'olymp', u'berth']
[u'opal', u'avoid', u'olymp', u'draw']
[u'park', u'meter', u'decis', u'hold']
[u'parmalat', u'audit', u'reveal', u'bigger', u'debt', u'report']
[u'parmalat', u'debt']
[u'perth', u'australia', u'revel', u'warn']
[u'phelp', u'spitz', u'chief']
[u'polic', u'motorcycl', u'crash', u'victim']
[u'polic', u'offic', u'plead', u'guilti', u'possess']
[u'polic', u'probe', u'knife', u'incid']
[u'polic', u'unhappi', u'continu', u'drive', u'offenc']
[u'polic', u'welcom', u'children', u'court', u'plan']
[u'probe', u'cyclist', u'alleg', u'drug']
[u'probe', u'launch', u'hospit', u'assault', u'claim']
[u'propos', u'coastal', u'plan', u'legisl', u'worri', u'shire']
[u'public', u'ask', u'help', u'fund', u'green', u'fight']
[u'public', u'nation', u'park', u'natur', u'reserv']
[u'public', u'pipelin', u'launch']
[u'parent', u'quiz', u'coalit', u'educ', u'fund']
[u'rain', u'doesnt', u'dampen', u'aust', u'enthusiasm']
[u'rare', u'eleph', u'kill', u'indonesian', u'park']
[u'reason', u'give', u'delay', u'power', u'return']
[u'cross', u'defend', u'bali', u'appeal', u'fund', u'decis']
[u'brew', u'telstra', u'sale', u'claim']
[u'russia', u'collabor', u'mar', u'explor', u'putin']
[u'safin', u'stun', u'roddick', u'agassi', u'henin', u'hardenn']
[u'salt', u'maker', u'consid', u'export', u'potenti']
[u'unhappi', u'reform', u'packag']
[u'school', u'support', u'miss', u'teen', u'famili']
[u'schumach', u'readi', u'action', u'ferrari']
[u'scud', u'fire', u'shoot', u'davi', u'schedul']
[u'search', u'continu', u'crew', u'miss', u'plane']
[u'search', u'prison', u'site', u'drag']
[u'second', u'thai', u'die', u'bird']
[u'share', u'market', u'trade', u'finish']
[u'shark', u'unlik', u'attack']
[u'sign', u'highlight', u'stormwat', u'pollut']
[u'sixer', u'lobbi', u'sign']
[u'iraqi', u'policemen', u'kill']
[u'sixteen', u'trap', u'rubbl', u'collaps', u'build']
[u'snake', u'handler', u'hospit', u'king', u'brown', u'bite']
[u'south', u'west', u'victorian', u'share', u'aust', u'honour']
[u'spear', u'beyonc', u'pink', u'fizzi']
[u'bridg', u'level', u'cross', u'fatal', u'site']
[u'steal', u'watch', u'difficult', u'sell', u'polic']
[u'student', u'begin', u'school', u'year']
[u'studi', u'find', u'killer', u'get', u'longer', u'jail', u'term']
[u'sugar', u'industri', u'fear', u'token', u'gestur']
[u'suicid', u'bomber', u'kill', u'canadian', u'peacekeep', u'kabul']
[u'survey', u'forecast', u'strong', u'econom', u'growth']
[u'govt', u'deni', u'specialist', u'resign']
[u'oppn', u'want', u'parliament', u'decid', u'worker', u'law']
[u'teacher', u'prepar', u'school', u'year']
[u'tendulkar', u'skip', u'clash']
[u'suspect', u'bird', u'case', u'thailand', u'offici']
[u'test', u'confirm', u'bird', u'outbreak', u'lao', u'offici']
[u'thailand', u'confirm', u'death', u'bird']
[u'timefram', u'releas', u'airport', u'comment']
[u'troop', u'kill', u'suspect', u'rebel', u'aceh']
[u'storey', u'build', u'collaps', u'cairo']
[u'place', u'divid', u'state']
[u'reform', u'anger', u'govt']
[u'unit', u'sharehold', u'tough', u'fergi']
[u'mission', u'send', u'iraq']
[u'investig', u'iraqi', u'civilian', u'death']
[u'offici', u'hold', u'landmark', u'libya', u'talk']
[u'review', u'intellig', u'iraqi', u'weapon']
[u'get', u'anti', u'toxic', u'dump', u'push']
[u'violenc', u'mar', u'perth', u'aust', u'festiv']
[u'volunt', u'prais', u'forest', u'effort']
[u'expert', u'say', u'bird', u'vaccin', u'month', u'away']
[u'wall', u'street', u'step', u'posit', u'territori']
[u'polic', u'seek', u'question', u'murder']
[u'warn', u'unlik', u'lankan', u'seri']
[u'fear', u'major', u'outbreak', u'asia', u'fight', u'bird']
[u'wine', u'industri', u'urg', u'avoid', u'arrog']
[u'wine', u'industri', u'warn', u'arrog']
[u'work', u'parti', u'consid', u'sawtel', u'rate', u'rise']
[u'zidan', u'admit', u'creatin', u'juventus', u'dope']
[u'zimbabwean', u'student', u'consid', u'deport', u'fight']
[u'zimbabw', u'promis', u'stump', u'england']
[u'zimbabw', u'reject', u'mugab', u'ill', u'report']
[u'commiss', u'hear', u'flight', u'attend', u'phone']
[u'polic', u'chief', u'swap', u'badg', u'book']
[u'actu', u'push', u'poor', u'famili']
[u'alic', u'council', u'put', u'fund', u'matter', u'agenda']
[u'make', u'elect', u'pitch', u'central']
[u'aluminium', u'smelter', u'feel', u'stronger', u'dollar', u'impact']
[u'amazoncom', u'post', u'year', u'profit']
[u'amrozi', u'seek', u'judici', u'review', u'escap', u'execut']
[u'argentin', u'dirti', u'babi', u'meet', u'grandmoth']
[u'arrest', u'expect', u'environ', u'centr', u'blockad']
[u'fall', u'despit', u'major', u'trade']
[u'aussi', u'hit', u'world', u'swim', u'facil']
[u'aussi', u'unchang', u'davi', u'open']
[u'australian', u'dollar', u'rid', u'high', u'weak', u'greenback']
[u'australian', u'journalist', u'catch', u'iraq', u'battl']
[u'aust', u'review', u'chicken', u'import', u'rule']
[u'badani', u'lead', u'india']
[u'barra', u'fish', u'industri', u'call', u'review']
[u'basebal', u'prokopec', u'track', u'athen']
[u'baxter', u'detaine', u'hospitalis', u'hunger', u'strike']
[u'beatti', u'target', u'home', u'buyer']
[u'beef', u'produc', u'await', u'floodwat']
[u'better', u'expect', u'patronag', u'flight']
[u'clean', u'pilbara', u'asbesto']
[u'crowd', u'expect', u'local', u'govt', u'reform', u'ralli']
[u'blair', u'clear', u'hutton', u'kelli', u'report']
[u'bodi', u'remain', u'coast']
[u'bolton', u'final', u'despit', u'villa', u'scare']
[u'bowl', u'club', u'look', u'water', u'relief', u'fund']
[u'bradford', u'await', u'casualti', u'report', u'panther', u'clash']
[u'british', u'soldier', u'kill', u'kabul', u'explos']
[u'burma', u'accus', u'work', u'destabilis', u'asia']
[u'crocodil', u'hunt']
[u'gympi', u'gold', u'asset']
[u'effort', u'control', u'wild', u'dog']
[u'contemporari', u'design', u'centr']
[u'charter', u'tower', u'agre', u'seat', u'hard', u'hold']
[u'china', u'say', u'bird', u'outbreak', u'control']
[u'coalit', u'promis', u'bust', u'graffiti', u'artist']
[u'classroom', u'make', u'children']
[u'coron', u'rule', u'famili', u'tragedi']
[u'costello', u'fear', u'bird', u'hurt', u'tourism']
[u'council', u'back', u'lighthous', u'platform', u'effort']
[u'council', u'keen', u'start', u'greenwel', u'waterfront', u'work']
[u'councillor', u'put', u'water', u'suppli', u'council', u'agenda']
[u'council', u'meet', u'merger', u'opposit']
[u'council', u'unhappi', u'collaps']
[u'cricket', u'australia', u'deni', u'warn', u'tour']
[u'davi', u'male', u'golfer']
[u'davi']
[u'deadlin', u'loom', u'winemak', u'oppos', u'price']
[u'diamond', u'guilti', u'assault']
[u'diamond', u'guilti', u'assault', u'charg']
[u'diamond', u'miner', u'look', u'explor']
[u'doubt', u'cast', u'labor', u'parent', u'plan']
[u'downer', u'downplay', u'bird', u'threat']
[u'drought', u'blame', u'develop', u'collaps']
[u'east', u'timor', u'pursu', u'wiranto', u'crime']
[u'emot', u'darwin', u'call', u'quit']
[u'england', u'favourit', u'dallaglio', u'throat', u'warn']
[u'environ', u'group', u'continu', u'protest', u'gippsland']
[u'expert', u'watch', u'citrus', u'market', u'amid', u'bird', u'scare']
[u'farmer', u'urg', u'nomin', u'award']
[u'father', u'michael', u'jackson', u'accus', u'seek', u'joint']
[u'feder', u'face', u'ferrero', u'clijster']
[u'govt', u'urg', u'fund', u'hume', u'highway', u'work']
[u'feud', u'cost', u'fergi']
[u'figur', u'reveal', u'piraci', u'attack', u'grow']
[u'firefight', u'continu', u'battl', u'port', u'kembla']
[u'firefight', u'port', u'kembla', u'burn']
[u'flood', u'caus', u'havoc', u'north', u'east', u'tasmania']
[u'floodplain', u'rehabilit', u'option', u'releas']
[u'forest', u'protest', u'block', u'log', u'oper']
[u'dual', u'intern', u'fiji', u'coach', u'contend']
[u'francou', u'face', u'year']
[u'fund', u'seek', u'energi', u'plant']
[u'silo', u'explod', u'port', u'kembla']
[u'gladston', u'council', u'vote', u'land', u'offer']
[u'gladston', u'industri', u'pipelin', u'delay']
[u'govern', u'urg', u'support', u'wast', u'water', u'scheme']
[u'govt', u'back', u'grade', u'test']
[u'govt', u'urg', u'cancel', u'zimbabw', u'tour']
[u'grape', u'grower', u'question', u'price']
[u'green', u'group', u'face', u'financi', u'ruin', u'develop']
[u'green', u'announc', u'barron', u'river', u'cook', u'prefer']
[u'green', u'eurobodalla', u'council', u'candid']
[u'group', u'loggerhead', u'forest', u'log']
[u'harch', u'get', u'matilda']
[u'hook', u'melbourn', u'memori', u'cancel']
[u'hope', u'copi', u'bulk', u'bill', u'clinic', u'idea']
[u'hop', u'fade', u'miss', u'plan', u'crew']
[u'hors', u'rider', u'angri', u'snowi', u'manag', u'plan']
[u'humid', u'condit', u'impact', u'environ', u'report']
[u'indigen', u'event', u'see', u'reconcili', u'symbol']
[u'industri', u'area', u'earmark', u'prison']
[u'internet', u'avail', u'ghan', u'rider']
[u'vice', u'presid', u'face', u'corrupt', u'charg']
[u'iraqi', u'refuge', u'face', u'court', u'assault', u'charg']
[u'iron', u'make', u'geraldton', u'port']
[u'israel', u'radio', u'say', u'palestinian', u'kill', u'gaza']
[u'jone', u'larrio', u'award']
[u'kambalda', u'boom', u'help', u'neighbour']
[u'kangaroo', u'power', u'woe', u'affect', u'tourism']
[u'kerri', u'bandwagon', u'roll', u'hampshir']
[u'kerri', u'win', u'hampshir', u'vote']
[u'kiwi', u'coach', u'spot', u'loophol', u'oversea', u'player']
[u'latham', u'criticis', u'govt', u'inflat', u'figur']
[u'latham', u'speak', u'labor', u'offici', u'campaign', u'launch']
[u'latham', u'wont', u'commit', u'end', u'forest', u'clear']
[u'leav', u'polit', u'zimbabw', u'tour', u'cricket']
[u'lib', u'block', u'shave', u'comeback']
[u'libya', u'hand', u'nuclear', u'info']
[u'lightn', u'boost', u'brogan', u'presenc']
[u'littl', u'rain', u'good', u'sign', u'barra', u'season']
[u'loud', u'blast', u'shake', u'baghdad']
[u'lucki', u'escap', u'melbourn', u'hous']
[u'magistr', u'air', u'concern', u'falconio', u'case']
[u'major', u'support', u'tree', u'clear', u'poll']
[u'accus', u'allow', u'leav', u'state']
[u'die', u'highway', u'truck', u'crash']
[u'man', u'bodi', u'hous', u'blaze']
[u'stand', u'trial', u'stuttl', u'murder']
[u'matilda', u'host', u'olymp', u'tournament']
[u'mayor', u'happi', u'morriset', u'zone', u'plan']
[u'mcenro', u'confid', u'davi', u'success']
[u'melbourn', u'anim', u'join', u'oscar', u'nomine']
[u'charg', u'shop', u'robberi']
[u'injur', u'burst', u'flame']
[u'milk', u'processor', u'reject', u'singl', u'desk', u'pressur', u'claim']
[u'minist', u'inspect', u'youth', u'detent', u'centr']
[u'minist', u'urg', u'resolv', u'dubbo', u'health', u'disput']
[u'mobil', u'lure', u'young', u'poverti', u'trap', u'studi']
[u'inform', u'call', u'council', u'merger', u'plan']
[u'moscow', u'tretyakov', u'bring', u'master', u'street']
[u'motorcyclist', u'road', u'despit', u'death']
[u'music', u'festiv', u'attract', u'differ', u'audienc']
[u'mydoom', u'worm', u'spread', u'rapid']
[u'continu', u'rogu', u'trade', u'probe']
[u'nalbandian', u'latest', u'challeng', u'feder']
[u'nasa', u'say', u'second', u'mar', u'rover', u'experi', u'problem']
[u'near', u'miss', u'dryclean']
[u'newcastl', u'council', u'approv', u'children', u'court', u'plan']
[u'newcastl', u'seek', u'fulli', u'fund', u'place']
[u'shift', u'speed', u'gold', u'product']
[u'tower', u'viewer', u'pictur']
[u'environ', u'threat', u'kembla']
[u'govt', u'privat', u'school', u'account']
[u'govt', u'consid', u'gulf', u'communiti', u'polic']
[u'hotel', u'attend', u'secur', u'forum']
[u'polic', u'stop', u'view', u'seiz', u'paper']
[u'opposit', u'leader', u'spark', u'racial', u'debat']
[u'teenag', u'stun', u'oscar', u'nomin']
[u'miss', u'port', u'kembla']
[u'nation', u'unconcern', u'candid']
[u'pittman', u'face', u'injuri', u'hurdl']
[u'plan', u'moranbah', u'brisban', u'direct', u'flight']
[u'plenti', u'candid', u'expect', u'council', u'elect']
[u'india', u'fright']
[u'polic', u'consid', u'assault', u'lead']
[u'polic', u'continu', u'coober', u'pedi', u'murder', u'probe']
[u'polic', u'hunt', u'escap', u'prison']
[u'polic', u'search', u'stab']
[u'port', u'devast', u'francou', u'sidelin']
[u'potenti', u'candid', u'drum', u'council', u'role']
[u'poultri', u'farmer', u'readi', u'bird']
[u'probe', u'launch', u'carrara', u'fish', u'kill']
[u'public', u'urg', u'oppos', u'forest', u'sale', u'plan']
[u'quirki', u'murder', u'mysteri', u'land', u'literari', u'award']
[u'rain', u'spark', u'western', u'locust', u'fear']
[u'ranger', u'watch', u'asian', u'migratori', u'bird']
[u'red', u'aussi', u'star', u'brumbi']
[u'referendum', u'moot', u'cut', u'council', u'size']
[u'refuge', u'group', u'sceptic', u'despit', u'labor', u'baxter', u'visit']
[u'region', u'airlin', u'cut', u'canberra', u'sydney', u'flight']
[u'region', u'doctor', u'incent']
[u'region', u'public', u'servant', u'await', u'offer']
[u'research', u'troubl', u'make', u'fish', u'continu']
[u'reserv', u'reopen', u'blaze']
[u'resid', u'question', u'smell', u'problem']
[u'rey', u'smash', u'arsenal', u'transfer', u'record']
[u'riverland', u'notch', u'water', u'save']
[u'erupt', u'coast', u'candid', u'elect', u'sign']
[u'santo', u'report', u'fall', u'revenu']
[u'scott', u'admit', u'rib', u'lose']
[u'scud', u'affect', u'court', u'distract', u'alexand']
[u'seafood', u'industri', u'fear', u'greater', u'poach', u'threat']
[u'search', u'fail', u'plane', u'crash', u'victim']
[u'search', u'miss', u'plane', u'call']
[u'second', u'talk', u'wind']
[u'second', u'mar', u'rover', u'rais', u'antenna', u'earth']
[u'senior', u'citizen', u'nab', u'teenag', u'intrud']
[u'servic', u'help', u'youth', u'avoid', u'petrol', u'sniff']
[u'shire', u'want', u'walpol', u'tourism', u'fund']
[u'sing', u'continu', u'cowboy', u'connect']
[u'sixer', u'await', u'moor', u'decis']
[u'sleep', u'camper', u'surviv', u'croc', u'attack']
[u'smelter', u'worker', u'hear', u'offer']
[u'soni', u'post', u'record', u'sale']
[u'spain', u'young', u'nadal']
[u'storm', u'power', u'central', u'queensland']
[u'strong', u'dollar', u'help', u'inflat', u'year']
[u'stronger', u'dollar', u'take', u'toll', u'goat', u'industri']
[u'subdivis', u'approv', u'affect', u'cricket', u'club', u'season']
[u'suspect', u'milit', u'refug', u'arafat', u'compound']
[u'suspend', u'atsic', u'leader', u'pursu', u'court', u'challeng']
[u'tasmania', u'clean', u'delug']
[u'plan', u'distanc', u'educ']
[u'thailand', u'admit', u'screw', u'handl', u'bird']
[u'thousand', u'chicken', u'shed', u'blaze']
[u'kill', u'baghdad', u'explos']
[u'coalit', u'soldier', u'kill', u'iraq']
[u'thunderstorm', u'warn', u'south', u'east', u'queensland']
[u'tour', u'decis', u'shouldnt', u'polit']
[u'tourist', u'warn', u'motorcycl', u'trek', u'danger']
[u'townsvill', u'crack', u'drink', u'breach']
[u'trio', u'charg', u'chinatown', u'kidnap']
[u'troubl', u'parl', u'food', u'sell']
[u'talk', u'pioneer', u'jack', u'paar', u'die']
[u'admit', u'afghan', u'june', u'poll', u'delay']
[u'verstappen', u'jordan', u'talk']
[u'vietnam', u'report', u'bird', u'death']
[u'govt', u'criticis', u'electr', u'propaganda']
[u'warrior', u'coach', u'get', u'contract', u'extens']
[u'watchdog', u'seek', u'aircraft', u'safeti', u'upgrad']
[u'welfar', u'group', u'open', u'latham', u'parent', u'plan']
[u'western', u'victoria', u'experi', u'birth', u'high', u'low']
[u'wilder', u'societi', u'apologis', u'permit']
[u'wine', u'associ', u'chief', u'resign']
[u'woman', u'court', u'nurs', u'assault']
[u'woodward', u'verg', u'name', u'england', u'captain']
[u'work', u'ban', u'plan', u'stanwel', u'power', u'station']
[u'zimbabw', u'threaten', u'damag', u'suit', u'england', u'dont']
[u'arrest', u'marijuana', u'crop']
[u'abba', u'singer', u'sign', u'record', u'deal']
[u'deem', u'suspect', u'painkil', u'safe']
[u'adelaid', u'bank', u'record', u'million', u'profit']
[u'presenc', u'solomon']
[u'belgian', u'clash', u'decid', u'open', u'honour']
[u'promis', u'stop', u'nuclear', u'wast', u'dump']
[u'latham', u'asylum', u'seeker', u'polici', u'carr', u'say']
[u'interven', u'help', u'resolv', u'paediatrician']
[u'want', u'access', u'painkil', u'restrict']
[u'anim', u'activist', u'break', u'bail', u'condit']
[u'anim', u'activist', u'court', u'sheep', u'shipment']
[u'annan', u'fear', u'collaps', u'palestinian', u'author']
[u'area', u'shortlist', u'defenc', u'train', u'grind']
[u'arroyo', u'deal', u'philippin', u'coup', u'plotter']
[u'asic', u'issu', u'invest', u'warn']
[u'aussi', u'polic', u'help', u'dous', u'solomon']
[u'australia', u'bat', u'zimbabw', u'melbourn']
[u'australia', u'donat', u'combat', u'bird']
[u'bacon', u'give', u'crean', u'time', u'mind']
[u'bali', u'bomber', u'jail', u'life']
[u'bartlett', u'vow', u'alcohol', u'free', u'polit', u'futur']
[u'battl', u'safin', u'claim']
[u'be', u'alzheim', u'diseas', u'cure']
[u'blast', u'hit', u'iraq', u'secur', u'forc', u'north', u'baghdad']
[u'boro', u'arsenal', u'clash', u'call']
[u'brain', u'structur', u'chang', u'see', u'depress', u'teen']
[u'breaker', u'wildcat', u'clash', u'end', u'carpark', u'punch']
[u'brew', u'giant', u'put', u'pub', u'sale']
[u'britain', u'relax', u'cannabi', u'doctor', u'worri']
[u'bronco', u'boss', u'say', u'club', u'chase', u'hodg']
[u'busi', u'chamber', u'seek', u'cooma', u'plan']
[u'cooler', u'public', u'meet', u'place', u'alic']
[u'carr', u'call', u'attack', u'health']
[u'catchment', u'group', u'consid', u'flood', u'research']
[u'celebr', u'author', u'janet', u'frame', u'die']
[u'channel', u'countri', u'flood', u'boost', u'flora', u'fauna']
[u'child', u'attack', u'seoul']
[u'china', u'crack', u'bird', u'outbreak']
[u'china', u'deni', u'bird', u'sourc']
[u'cigarett', u'spark', u'nurs', u'home', u'blaze']
[u'clijster', u'set', u'belgian', u'final']
[u'club', u'rein', u'indoor', u'equestrian', u'centr', u'plan']
[u'committe', u'tell', u'probabl', u'wrong']
[u'contract', u'loss', u'put', u'stevedor', u'job', u'cloud']
[u'costello', u'claim', u'labor', u'rais', u'tax', u'rat']
[u'coulthard', u'enjoy', u'mclaren', u'swansong']
[u'council', u'await', u'govt', u'toxic', u'dump', u'respons']
[u'council', u'plan', u'seek', u'merger', u'view', u'month']
[u'council', u'sell', u'beachfront', u'land', u'profit']
[u'council', u'look', u'elect', u'merger']
[u'council', u'tell', u'fund', u'wast']
[u'croc', u'expert', u'confid', u'anim', u'hunt']
[u'croc', u'consid', u'import']
[u'dalbi', u'netbal', u'head', u'africa']
[u'deleg', u'voic', u'opposit', u'council', u'merger', u'plan']
[u'denmark', u'call', u'probe', u'stand', u'prison']
[u'denmark', u'council', u'back', u'tree', u'plantat']
[u'desalin', u'plant', u'near', u'complet']
[u'dinki', u'sing', u'dingo', u'howl', u'success']
[u'test', u'man', u'burn', u'bodi']
[u'doctor', u'unhappi', u'nauru', u'refuge', u'assess']
[u'dodgi', u'ankl', u'put', u'clijster', u'doubt']
[u'driver', u'plead', u'guilti', u'motorcyclist', u'death']
[u'drug', u'problem', u'golf', u'warn', u'price']
[u'earli', u'respons', u'bird', u'contain', u'say']
[u'ellison', u'confid', u'aust', u'bird']
[u'england', u'white', u'lead', u'yorkshir']
[u'english', u'winter', u'break', u'plan', u'back', u'despit', u'wife']
[u'esper', u'say', u'nuclear', u'wast']
[u'suspend', u'import', u'bird', u'south', u'east']
[u'expert', u'consid', u'honeysuckl', u'asbesto']
[u'exxon', u'tell', u'valdez', u'spill']
[u'fall', u'number', u'close', u'primari', u'student', u'hostel']
[u'farm', u'group', u'question', u'parti', u'climat', u'variabl']
[u'farm', u'group', u'seek', u'action', u'stop', u'live', u'export', u'trade']
[u'feder', u'lead', u'swiss', u'team', u'romania']
[u'fergi', u'sign', u'year', u'roll', u'unit', u'contract']
[u'ferguson', u'record', u'unrival', u'british', u'soccer']
[u'ferri', u'welcom', u'bartlett', u'decis']
[u'fifa', u'final', u'agre', u'adopt', u'anti', u'dope', u'code']
[u'fiji', u'controversi', u'militari', u'chief', u'reappoint']
[u'crew', u'continu', u'clean', u'port', u'kembla']
[u'firman', u'push', u'claim', u'jordan', u'drive']
[u'injur', u'plane', u'make', u'forc', u'land']
[u'flash', u'flood', u'wreak', u'havoc', u'melbourn']
[u'floodwat', u'loom', u'wanaar']
[u'food', u'compani', u'chang', u'job', u'doubt']
[u'food', u'poison', u'kill', u'indonesia']
[u'blair', u'aid', u'attack', u'respons', u'kelli']
[u'doctor', u'remain', u'strike', u'medic', u'regist']
[u'wine', u'group', u'presid', u'lament', u'loss']
[u'free', u'land', u'bruce', u'rock', u'grab']
[u'leak', u'forc', u'sydney', u'opera', u'hous', u'evacu']
[u'gender', u'test', u'volleybal']
[u'german', u'tourist', u'arrest', u'smuggl', u'frog', u'insect']
[u'govt', u'happi', u'peopl', u'smuggl', u'sentenc']
[u'govt', u'launch', u'inquiri', u'port', u'botani', u'expans']
[u'griev', u'lehmann', u'readi', u'compet']
[u'griev', u'lehmann', u'readi', u'game']
[u'group', u'aim', u'close', u'boulder', u'wast', u'plant']
[u'hamilton', u'fatal', u'plane', u'crash', u'probe', u'near', u'finish']
[u'herron', u'continu', u'market', u'ibuprofen', u'drug']
[u'hezbollah', u'broadcast', u'interview', u'isra']
[u'hill', u'unhappi', u'agreement', u'forestri', u'water']
[u'hotel', u'facelift']
[u'howard', u'seek', u'apolog', u'claim']
[u'hume', u'resid', u'speak', u'boundari', u'chang']
[u'hutton', u'accus', u'whitewash', u'kelli', u'affair']
[u'hutton', u'report', u'back', u'iraq', u'decis', u'downer', u'say']
[u'iaea', u'investig', u'plan', u'woomera', u'nuclear', u'dump']
[u'indian', u'sterilis', u'rare', u'royal', u'bengal', u'tiger']
[u'indonesia', u'order', u'mass', u'bird', u'cull']
[u'indonesia', u'order', u'mass', u'chicken', u'cull']
[u'industri', u'park', u'undergo', u'expans']
[u'inject', u'room', u'want', u'say']
[u'inquest', u'launch', u'bendigo', u'shoot', u'death']
[u'investig', u'probe', u'massiv', u'solomon', u'blaze']
[u'israel', u'hezbollah', u'breakthrough', u'prison', u'swap']
[u'say', u'wrong']
[u'king', u'pirat', u'sword']
[u'labor', u'offer', u'independ', u'fund']
[u'latham', u'outlin', u'vision', u'labor', u'govern']
[u'life', u'exist', u'mar', u'australian', u'scientist']
[u'lightn', u'strike', u'central', u'home']
[u'live', u'export', u'protest', u'face', u'legal', u'action']
[u'malaysian', u'airlin', u'accept', u'arm', u'marshal']
[u'await', u'releas', u'year', u'hostag']
[u'charg', u'bexhil', u'stand']
[u'kill']
[u'mariah', u'carey', u'drop', u'sexi', u'outfit', u'jakarta']
[u'martin', u'heroin', u'inject', u'room']
[u'matern', u'diet', u'influenc', u'longev', u'mice']
[u'mayor', u'say', u'safeti', u'road', u'closur']
[u'mcgee', u'hail', u'clean', u'team', u'ethic', u'cofidi', u'dope']
[u'mcgee', u'meet', u'millar', u'multipl', u'olymp', u'duel']
[u'meatwork', u'accus', u'creek', u'pollut']
[u'melbourn', u'battl', u'major', u'storm']
[u'mideast', u'prison', u'swap', u'plan', u'land', u'germani']
[u'mideast', u'prison', u'swap', u'underway']
[u'milan', u'claim', u'spot', u'itali']
[u'mildura', u'campus', u'question', u'place', u'offer']
[u'mincor', u'boost', u'job', u'purchas']
[u'miner', u'upbeat', u'gold', u'prospect']
[u'worker', u'consid', u'resum', u'work', u'blaze']
[u'minist', u'highlight', u'detent', u'centr', u'secur']
[u'minist', u'probe', u'wheel', u'drive', u'safeti']
[u'montoya', u'scorch', u'track', u'record']
[u'fund', u'seek', u'port', u'macquari', u'hospit']
[u'stand', u'irwin', u'train', u'comment']
[u'mydoom', u'variant', u'emerg', u'target', u'microsoft']
[u'nation', u'park', u'servic', u'respond', u'hors', u'rid']
[u'nauru', u'health', u'facil', u'good', u'doctor']
[u'need', u'altern', u'cool', u'area']
[u'doctor', u'region', u'post']
[u'visa', u'threaten', u'bali', u'tourism']
[u'north', u'east', u'tasmania', u'drench', u'flood', u'rain']
[u'overhaul', u'judiciari']
[u'prove', u'lucrat', u'indigen']
[u'nation', u'question', u'candid', u'withdraw']
[u'opposit', u'slam', u'carr', u'hospit', u'visit']
[u'parent', u'ask', u'help', u'combat', u'school', u'absente']
[u'parl', u'sale', u'offer', u'unsecur', u'creditor']
[u'peopl', u'smuggler', u'sentenc', u'year', u'jail']
[u'plan', u'afoot', u'richmond', u'sandlewood', u'plantat']
[u'fear', u'bird', u'cross', u'indonesian', u'border']
[u'polic', u'search', u'miss', u'pilot']
[u'polic', u'probe', u'alburi', u'incid']
[u'polic', u'probe', u'springborg', u'domest', u'violenc']
[u'polic', u'recov', u'valuabl', u'steal', u'coin']
[u'polic', u'continu', u'search', u'miss', u'plane']
[u'polish', u'feder', u'suspend', u'cyclist', u'cofidi']
[u'polit', u'storm', u'erupt', u'blackout']
[u'pollock', u'take', u'protea']
[u'pont', u'india', u'game']
[u'poor', u'health', u'forc', u'crean', u'retir', u'polit']
[u'premier', u'leagu', u'bring', u'winter', u'break']
[u'press', u'hold', u'withdraw', u'holling', u'offer']
[u'prison', u'group', u'prais', u'plan', u'canberra', u'prison']
[u'public', u'servant', u'reject', u'govt', u'offer']
[u'public', u'servic', u'negoti', u'continu']
[u'public', u'council', u'size']
[u'grazier', u'face', u'tough', u'road']
[u'rain', u'forc', u'draw', u'melbourn']
[u'rain', u'forc', u'wash']
[u'real']
[u'record', u'level', u'loan', u'approv']
[u'reef', u'ground', u'prompt', u'maritim', u'rescu', u'review']
[u'research', u'work', u'vaccin', u'chicken']
[u'resolut', u'delay', u'ambul', u'crew']
[u'rivkin', u'detent']
[u'road', u'revamp', u'plan', u'spark', u'tree', u'concern']
[u'consid', u'break', u'hill', u'speed', u'limit']
[u'safin', u'shock', u'agassi', u'claim', u'final', u'berth']
[u'santoro', u'get', u'davi', u'boot']
[u'school', u'disput', u'worsen', u'amid', u'bulli', u'claim']
[u'scientist', u'test', u'identifi', u'burn', u'bodi']
[u'servic', u'highlight', u'limit', u'petrol', u'sniffer', u'help']
[u'share', u'market', u'hold', u'grind', u'despit', u'wall', u'street']
[u'shire', u'group', u'back', u'council', u'anti', u'merger', u'stanc']
[u'sicili', u'hop', u'stage', u'tyson', u'comeback', u'fight']
[u'singer', u'faith', u'evan', u'arrest', u'drug']
[u'sleep', u'camper', u'lucki', u'escap', u'croc', u'attack']
[u'soul', u'singer', u'jam', u'brown', u'arrest', u'domest']
[u'speedway', u'look', u'meet', u'insur', u'cost']
[u'sport', u'club', u'fight', u'drought', u'urg', u'think']
[u'springborg', u'defend', u'wife', u'profil']
[u'strand', u'resid', u'await', u'food', u'suppli']
[u'studi', u'consid', u'princ', u'highway', u'issu']
[u'sugar', u'remain', u'stick', u'point', u'free', u'trade', u'talk']
[u'suicid', u'blast', u'vindic', u'secur', u'fenc', u'israel']
[u'swede', u'begin', u'davi', u'countdown']
[u'taiwan', u'scientist', u'record', u'bird', u'case']
[u'cherri', u'dollar']
[u'flood', u'water', u'refus', u'subsid']
[u'tasmanian', u'rain', u'break', u'record']
[u'teacher', u'discuss', u'profession', u'standard']
[u'teen', u'reunit', u'famili', u'long', u'search']
[u'texa', u'execut', u'inmat', u'surpris', u'confess']
[u'thai', u'chilli', u'farmer', u'suffer', u'bird']
[u'tour', u'franc', u'chief', u'call', u'wada', u'ban']
[u'townsvill', u'hop', u'attract', u'chopper', u'mainten']
[u'transact', u'cull', u'staff', u'merger']
[u'truss', u'call', u'indonesia', u'slaughter', u'chicken']
[u'twin', u'attack', u'kill', u'injur', u'iraq']
[u'charg', u'shop', u'robberi']
[u'underground', u'power', u'expens', u'beatti', u'say']
[u'union', u'lobbi', u'payment', u'casual', u'chicken']
[u'armi', u'plan', u'boost', u'forc']
[u'fear', u'rate', u'hike', u'draw', u'market']
[u'scientist', u'creat', u'form', u'matter']
[u'coron', u'recommend', u'polic', u'pursuit', u'polici', u'review']
[u'govt', u'defend', u'student', u'enrol']
[u'govt', u'deni', u'defend', u'bird', u'safeguard']
[u'govt', u'say', u'airlin', u'fund']
[u'govt', u'poki', u'fund']
[u'vietnames', u'children', u'discov', u'foul', u'tast', u'coin']
[u'nurs', u'threaten', u'night', u'shift', u'boycott']
[u'offic', u'ask', u'explain', u'domest', u'violenc', u'claim']
[u'westpac', u'unveil', u'plan', u'singl', u'nation', u'ident']
[u'whale', u'explod', u'taiwan', u'street']
[u'wildcat', u'defend', u'boucher', u'carpark', u'punch']
[u'wild', u'storm', u'pass', u'wide']
[u'woman', u'win', u'polic', u'misconduct', u'case']
[u'worker', u'consid', u'industri', u'action', u'roster']
[u'zimbabw', u'pass', u'farm', u'seizur', u'easier']
[u'face', u'court', u'cannabi', u'haul']
[u'fear', u'dead', u'indonesian', u'landslid']
[u'age', u'care', u'boost', u'bateman']
[u'aborigin', u'advoc', u'rais', u'racism', u'concern']
[u'alcohol', u'restrict', u'perman']
[u'accus', u'hypocrisi', u'polit', u'donat']
[u'name', u'nepean', u'river', u'second', u'sydney', u'airport']
[u'pledg', u'nation', u'dental', u'plan']
[u'angri', u'canegrow', u'confront', u'premier']
[u'annan', u'call', u'accept', u'migrant']
[u'end', u'week', u'black']
[u'atsic', u'issu', u'juvenil', u'divers', u'fund', u'warn']
[u'aust', u'push', u'singl', u'market']
[u'aust', u'offer', u'diseas', u'riddl', u'asia']
[u'australia', u'name', u'motor', u'sport', u'championship']
[u'australian', u'deleg', u'visit', u'north', u'korea']
[u'australian', u'wait', u'death', u'sentenc', u'decis']
[u'tell', u'fear', u'blair', u'govt']
[u'beatti', u'return', u'cairn']
[u'bendigo', u'tafe', u'seek', u'fund', u'inject']
[u'birmingham', u'wait', u'butt']
[u'bjorn', u'lead', u'thailand', u'australian', u'tie']
[u'boat', u'capsiz', u'refuge', u'fear', u'dead']
[u'boucher', u'tucker', u'suspens', u'carpark', u'punch']
[u'breaker', u'good', u'wildcat', u'auckland', u'grudg']
[u'brumbi', u'announc', u'colac', u'fund']
[u'bull', u'blue', u'wild', u'storm', u'lash', u'gabba']
[u'driver', u'criticis', u'leav', u'child']
[u'bushfir', u'inquiri', u'highlight', u'communic', u'problem']
[u'clamp', u'industri', u'water']
[u'celebr', u'mark', u'militari', u'exercis']
[u'cell', u'door', u'leav', u'unlock', u'twice', u'prison']
[u'chang', u'room', u'experi', u'conduct', u'adelaid']
[u'children', u'releas', u'guantanamo']
[u'china', u'combat', u'bird']
[u'china', u'report', u'suspect', u'bird', u'outbreak']
[u'coal', u'price', u'tip', u'rise']
[u'coastwatch', u'say', u'log', u'detail', u'lack']
[u'compani', u'tri', u'boost', u'canberra', u'tourism', u'scene']
[u'council', u'back', u'push', u'water', u'qualiti', u'legal', u'fight']
[u'councillor', u'investig', u'lose', u'record']
[u'council', u'creditor', u'gather']
[u'council', u'outlin', u'pipelin', u'plan', u'opposit']
[u'cricket', u'boss', u'launch', u'appeal', u'steal', u'bat']
[u'croc', u'hope', u'snap', u'tiger']
[u'dakar', u'ralli', u'kidnap', u'foil', u'secret', u'agent']
[u'reckon', u'loom', u'german', u'cannib']
[u'demand', u'egg', u'skyrocket']
[u'democrat', u'highlight', u'south', u'australian', u'crop', u'fear']
[u'dope', u'agenc', u'issu', u'warn', u'drug', u'cheat']
[u'dope', u'spectr', u'continu', u'haunt', u'cycl']
[u'downer', u'seek', u'clemenc', u'aussi', u'trial']
[u'economist', u'forecast', u'rat', u'rise']
[u'elia', u'guilti', u'carpark', u'shoot']
[u'elliott', u'fail', u'extend', u'bankruptci', u'notic', u'deadlin']
[u'england', u'delay', u'zimbabw', u'decis']
[u'england', u'face', u'japan', u'iceland', u'euro']
[u'defend', u'profit', u'slide']
[u'timor', u'ban', u'fresh', u'poultri', u'import']
[u'alburi', u'lawyer', u'face', u'charg', u'fail']
[u'boss', u'criticis', u'hutton', u'iraq', u'report']
[u'exhaust', u'safin', u'hit', u'high', u'spot']
[u'export', u'cormo', u'express', u'saga']
[u'extens', u'harbour', u'plan', u'submiss']
[u'team', u'cash', u'inject']
[u'farmer', u'die', u'truck', u'roll']
[u'farmer', u'learn', u'toxic', u'wast', u'dump', u'plan']
[u'feder', u'demolish', u'ferrero', u'grab', u'roddick', u'crown']
[u'feder', u'demolish', u'ferrero', u'grab', u'world', u'number']
[u'ferrero', u'rout', u'make', u'feder']
[u'firefight', u'battl', u'blaze', u'north', u'east']
[u'hurt', u'fall', u'tree', u'wild', u'storm']
[u'flood', u'eas']
[u'olymp', u'rower', u'jail', u'stock', u'market', u'fraud']
[u'question', u'post', u'offic', u'robberi']
[u'fund', u'shortfal', u'jeopardis', u'rural', u'train']
[u'german', u'cannib', u'sentenc', u'half', u'year']
[u'glen', u'ella', u'hop', u'inspir', u'italian', u'renaiss']
[u'golden', u'circl', u'escap', u'industri', u'action']
[u'govern', u'ban', u'medicar', u'cut']
[u'govt', u'accus', u'dodgi', u'bookkeep']
[u'govt', u'extend', u'sunday', u'sprinkler', u'plan']
[u'govt', u'visa', u'secur', u'record', u'attack']
[u'grant', u'offer', u'famili', u'affect', u'flood']
[u'green', u'candid', u'highlight', u'need', u'health']
[u'group', u'debat', u'wast', u'plant', u'smelli', u'problem']
[u'health', u'servic', u'cut', u'paediatr', u'servic']
[u'heater', u'tiger', u'brandi', u'bear', u'indian']
[u'hervey', u'candid', u'call', u'coastal', u'river']
[u'hodg', u'hussey', u'ton', u'help', u'bushrang', u'narrow']
[u'hodg', u'husssey', u'ton', u'bushrang', u'collaps']
[u'hope', u'suit', u'sting', u'jellyfish']
[u'hop', u'ghan', u'arriv', u'bolster', u'port', u'augusta']
[u'hospit', u'look', u'privat', u'patient']
[u'hospit', u'resolv', u'surgeri', u'insur', u'woe']
[u'hospit', u'take', u'action', u'nurs', u'assault']
[u'howard', u'blast', u'sloppi', u'latham']
[u'hunter', u'hospit', u'shoot']
[u'hussey', u'hail', u'dream', u'come', u'true']
[u'iaaf', u'await', u'document', u'young', u'drug', u'case']
[u'indigen', u'mentor', u'project']
[u'inquest', u'spark', u'better', u'polic', u'border']
[u'iraq', u'step', u'closer', u'return', u'olymp', u'fold']
[u'isra', u'leader', u'respond', u'suicid', u'bomb']
[u'isra', u'troop', u'enter', u'bethlehem']
[u'keeper', u'jone', u'return', u'wolv']
[u'king', u'island', u'milk', u'plant', u'despit']
[u'kraft', u'worker', u'face', u'uncertain', u'futur']
[u'labor', u'debat', u'contenti', u'asylum', u'seeker', u'polici']
[u'labor', u'peopl', u'smuggl', u'plan', u'target', u'small', u'fish']
[u'latham', u'victori', u'labor', u'adopt', u'immigr']
[u'run', u'wild', u'storm', u'lash', u'gabba']
[u'lawyer', u'defend', u'action', u'dump', u'nat', u'candid']
[u'leader', u'bjorn', u'clash', u'monti', u'bangkok']
[u'leed', u'breath', u'player', u'defer', u'payment']
[u'leed', u'unit', u'chronolog', u'financi', u'meltdown']
[u'lobbyist', u'letter', u'spark', u'parliamentari', u'secur']
[u'lake', u'level', u'forc', u'school', u'regatta']
[u'lui', u'figo', u'stay', u'real', u'boss']
[u'lunk', u'join', u'list', u'star', u'ladi', u'master']
[u'magnesium', u'intern', u'chief', u'meet', u'central']
[u'arrest', u'shoot', u'spree']
[u'burn', u'explos']
[u'face', u'court', u'cannabi', u'crop']
[u'guilti', u'church', u'murder']
[u'front', u'court', u'attempt', u'arm', u'robberi', u'charg']
[u'court', u'highway', u'crash']
[u'trap', u'foundri', u'blast']
[u'ronaldo', u'deni', u'dive', u'trick']
[u'melbourn', u'prepar', u'storm']
[u'microsoft', u'offer', u'bounti', u'mydoom', u'creator']
[u'minist', u'say', u'alic', u'rezon']
[u'mix', u'result', u'product', u'review']
[u'fund', u'birdsvill', u'clinic']
[u'rain', u'need', u'drought']
[u'moy', u'determin', u'red', u'derbi', u'blue']
[u'threaten', u'leav', u'land', u'protect']
[u'napthin', u'want', u'activist', u'avoid', u'live', u'export']
[u'nasa', u'seek', u'second', u'opinion', u'hubbl', u'demis']
[u'nation', u'leader', u'get', u'beatti', u'vote', u'sympathi']
[u'nat', u'candid', u'seek', u'legal', u'advic', u'nazism', u'claim']
[u'nat', u'drop', u'whitsunday', u'candid', u'nazi', u'claim']
[u'self', u'dialysi', u'room', u'gladston', u'hospit']
[u'niue', u'premier', u'deni', u'cyclon', u'claim']
[u'nobbi', u'solano', u'move', u'south', u'villa']
[u'introduc', u'second', u'goalkick', u'deadlin']
[u'order', u'striker', u'unit', u'match', u'replay']
[u'govt', u'reject', u'rezon', u'blackmail', u'claim']
[u'polic', u'longer', u'solv', u'crime', u'report']
[u'doctor', u'fee', u'highest', u'countri']
[u'deport', u'sexual', u'abus', u'lankan', u'girl']
[u'opera', u'hous', u'protest', u'weekend', u'jail']
[u'paediatrician', u'get', u'longer', u'contract']
[u'pae', u'make', u'mix', u'final', u'comeback']
[u'pampl', u'touch', u'phoenix', u'open']
[u'panel', u'review', u'bendigo', u'campus', u'submiss']
[u'parker', u'forc', u'charlton', u'talk', u'chelsea']
[u'pascual', u'suarez', u'women', u'doubl', u'crown']
[u'person', u'kill', u'fatal', u'truck', u'accid']
[u'pixar', u'pull', u'disney', u'anim', u'deal']
[u'say', u'zimbabw', u'tour', u'matter', u'cricket', u'australia']
[u'set', u'elect', u'year', u'agenda']
[u'polic', u'consid', u'flood', u'evacu']
[u'polic', u'search', u'trawler', u'crew']
[u'polic', u'seek', u'help', u'plane', u'crash', u'probe']
[u'polic', u'urg', u'domest', u'violenc', u'report']
[u'polic', u'urg', u'tourist', u'care', u'road']
[u'polit', u'parti', u'claim', u'victori', u'nuclear', u'wast']
[u'posit', u'outlook', u'queensland', u'magnesia']
[u'premiership', u'penalis', u'default', u'club']
[u'prison', u'staff', u'consid']
[u'coalit', u'question', u'sunwat', u'role']
[u'govt', u'confid', u'indi', u'futur']
[u'govt', u'win', u'heritag', u'disput', u'site']
[u'rain', u'threaten', u'hunter', u'grape', u'harvest']
[u'ranger', u'count', u'twin', u'ambit', u'reignit']
[u'record', u'deficit', u'blow', u'expect']
[u'redback', u'optimist', u'final', u'chanc']
[u'renault', u'bullish', u'launch', u'machin']
[u'research', u'studi', u'north', u'jellyfish']
[u'resid', u'creat', u'nois', u'manufactur', u'plant']
[u'resid', u'evacu', u'flood']
[u'resid', u'oppos', u'luna', u'park', u'develop']
[u'resort', u'upgrad', u'firefight', u'plan']
[u'rivkin', u'warn', u'defi', u'prison', u'order']
[u'rixon', u'join', u'surrey']
[u'roma', u'rock', u'stand', u'firm', u'despit', u'wobbl']
[u'liber', u'leader', u'laugh', u'poll']
[u'sar', u'virus', u'deadlier', u'research']
[u'schofield', u'retir', u'success', u'euro']
[u'scientist', u'develop', u'ultim', u'remot', u'control']
[u'scientist', u'scout', u'solar', u'site']
[u'search', u'call', u'miss', u'fisherman']
[u'search', u'underway', u'trawler', u'fisherman']
[u'rock', u'fierc', u'storm']
[u'struggl', u'repair', u'storm', u'damag']
[u'singaporean', u'judg', u'deliber', u'australian', u'drug']
[u'singer', u'jam', u'brown', u'free', u'domest', u'violenc', u'case']
[u'solari', u'spell', u'salvat', u'real', u'madrid']
[u'solomon', u'probe', u'fate', u'miss']
[u'solskjaer', u'comeback', u'road', u'unit']
[u'somali', u'charg', u'terror', u'ellison']
[u'somali', u'warlord', u'sign', u'peac', u'deal']
[u'storm', u'batter', u'sunshin', u'coast', u'home']
[u'studi', u'prostat', u'cancer', u'begin']
[u'suarez', u'ruano', u'pascual', u'claim', u'australian', u'titl']
[u'super', u'bowl', u'tip', u'violent', u'affair']
[u'supersub', u'griffith', u'fire', u'olyroo', u'athen']
[u'support', u'policeman', u'restrain', u'order', u'view']
[u'swiss', u'author', u'investig', u'rivkin']
[u'tafe', u'student', u'urg', u'complet', u'enrol', u'detail']
[u'tangentyer', u'council', u'attack', u'librari', u'plan']
[u'releas', u'detail', u'brothel']
[u'senat', u'lodg', u'complaint', u'newspol']
[u'tassi', u'cricket', u'offici', u'confid', u'dayer']
[u'temporari', u'protect', u'visa', u'caus', u'mental', u'ill']
[u'thailand', u'report', u'bird', u'case']
[u'arrest', u'cannabi', u'cafe', u'raid']
[u'trade', u'shortag', u'delay', u'home', u'repair']
[u'transport', u'see', u'crucial', u'region', u'economi']
[u'year', u'ban', u'introduc', u'modafinil']
[u'union', u'air', u'concern', u'hospit', u'staff', u'shortag']
[u'union', u'happi', u'pasminco', u'decis']
[u'union', u'speak', u'high', u'cut']
[u'ban', u'time', u'honour', u'typefac']
[u'vail', u'continu', u'sticki', u'trade', u'talk']
[u'nistelrooy', u'stay', u'unit']
[u'farmer', u'attack', u'govt', u'plan', u'live', u'cattl']
[u'bat', u'dayer']
[u'traffic', u'infring', u'notic', u'faulti', u'court']
[u'govt', u'dept', u'face', u'corrupt', u'probe']
[u'waterfal', u'train', u'crash', u'inquiri', u'resum']
[u'investig', u'china', u'bird']
[u'wildcat', u'breaker', u'charg', u'punch']
[u'wine', u'group', u'offer', u'cheap', u'electr']
[u'wool', u'grower', u'upbeat', u'india', u'tariff', u'decis']
[u'work', u'continu', u'alstonvill', u'bypass', u'design']
[u'zaragoza', u'beat', u'barcelona', u'reach', u'semi', u'final']
[u'health', u'offer', u'oxygen', u'rebat', u'woman']
[u'adelaid', u'polic', u'probe', u'shoot']
[u'plan', u'second', u'airport', u'wacki', u'anderson']
[u'amaq', u'presid', u'stand', u'feder', u'elect']
[u'arsenal', u'rey', u'debut', u'citi']
[u'athen', u'bind', u'olyroo', u'silenc', u'critic']
[u'athen', u'olymp', u'committe', u'focus', u'terror']
[u'dead', u'scotland', u'age', u'care', u'home', u'blaze']
[u'australian', u'deleg', u'head', u'korea']
[u'aust', u'close', u'deal', u'marshal']
[u'barca', u'suffer', u'blow', u'kluivert', u'injuri']
[u'journalist', u'quit', u'sex', u'report']
[u'beat', u'clijster', u'kid', u'long', u'career']
[u'beatti', u'head', u'sugar', u'territori']
[u'beatti', u'sieg', u'fishermen']
[u'bush', u'avoid', u'call', u'iraq', u'intellig', u'inquiri']
[u'bush', u'blair', u'nomin', u'nobel', u'peac', u'prize']
[u'bush', u'plan', u'kill', u'castro']
[u'bush', u'want', u'fact', u'iraqi']
[u'butt', u'snub', u'birmingham']
[u'primari', u'school', u'class', u'size', u'cap']
[u'canberra', u'airport', u'overlook']
[u'canberra', u'look', u'brighter', u'tourist', u'imag']
[u'carnarvon', u'polic', u'continu', u'search', u'miss', u'woman']
[u'carr', u'quiet', u'labor', u'airport', u'plan']
[u'toppl', u'gorg']
[u'celt', u'sign', u'perth', u'glori', u'stopper', u'milosev']
[u'china', u'report', u'fourth', u'sar', u'case']
[u'chines', u'case', u'spark', u'fresh', u'bird', u'fear']
[u'church', u'gather', u'rememb', u'waterfal', u'accid']
[u'church', u'servic', u'mark', u'waterfal', u'crash', u'anniversari']
[u'cipollini', u'want', u'crack', u'petacchi']
[u'civil', u'liberti', u'advoc', u'slam', u'prison']
[u'clijster', u'gun', u'major', u'spot']
[u'coalit', u'turn', u'attent', u'school', u'bus']
[u'coulthard', u'quit', u'season', u'mclaren', u'boss']
[u'democrat', u'poll', u'show', u'issu', u'impact', u'young']
[u'doctor', u'question', u'toddler', u'autopsi']
[u'dummi', u'bid', u'legisl', u'take', u'effect', u'sunday']
[u'dutch', u'embassi', u'baghdad', u'attack']
[u'editor', u'russian', u'websit', u'arrest']
[u'pampl', u'trail', u'mickelson', u'phoenix']
[u'ellison', u'catch', u'perth', u'jack', u'chase']
[u'emot', u'memori', u'servic', u'hold', u'waterfal']
[u'everton', u'ferguson', u'accus', u'racial', u'abus']
[u'charg', u'hasselbaink']
[u'express', u'face', u'giant', u'russian', u'test']
[u'firefight', u'bring', u'blaze', u'control']
[u'flood', u'water', u'eas']
[u'box', u'champ', u'nunn', u'jail', u'year']
[u'french', u'appeal', u'corrupt', u'find']
[u'sale', u'latham', u'consid', u'sell', u'kirribilli']
[u'french', u'pair', u'strip', u'melbourn', u'doubl']
[u'gibson', u'surpris', u'controversi', u'latest', u'flick']
[u'glori', u'surg', u'clear', u'power', u'wolv']
[u'golovin', u'hand', u'wildcard', u'pari', u'tournament']
[u'googl', u'boobl', u'legal', u'wrangl', u'trademark']
[u'govt', u'blame', u'film', u'industri', u'crisi']
[u'gray', u'call', u'mental', u'strength', u'escap']
[u'greec', u'step', u'secur', u'ahead', u'olymp']
[u'green', u'trail', u'bjorn', u'bangkok']
[u'habib', u'lawyer', u'slam', u'ruddock']
[u'habib', u'terror', u'trial', u'closer', u'ellison']
[u'hama', u'make', u'rival', u'respons', u'claim']
[u'heidfeld', u'snare', u'jordan', u'drive']
[u'henin', u'hardenn', u'lift', u'open', u'titl']
[u'henin', u'hardenn', u'lift', u'aust', u'open', u'titl']
[u'henin', u'hardenn', u'take', u'open', u'titl']
[u'iran', u'guardian', u'council', u'remov', u'elect', u'ban']
[u'isra', u'troop', u'enter', u'bethlehem', u'second', u'straight']
[u'israel', u'say', u'world', u'court', u'right', u'rule']
[u'jacki', u'chan', u'say', u'afraid', u'visit', u'bird']
[u'kiwi', u'question', u'mark', u'astl', u'return']
[u'krayzelburg', u'grab', u'silver', u'york', u'meet']
[u'labor', u'airport', u'site', u'pan']
[u'labor', u'unit', u'latham', u'confer', u'end']
[u'latham', u'face', u'backlash', u'refuge', u'polici']
[u'latham', u'promis', u'read', u'aloud', u'literaci']
[u'leak', u'report', u'highlight', u'failur', u'labor']
[u'limp', u'shirvo', u'pull', u'canberra']
[u'llodra', u'santoro', u'doubl']
[u'lopez', u'replac', u'injur', u'moya', u'spain', u'davi']
[u'citi', u'agre', u'loan', u'deal', u'buyten']
[u'releas', u'hospit', u'shoot']
[u'shoot', u'time', u'undergo', u'surgeri']
[u'mar', u'spirit', u'restor', u'opportun', u'readi', u'roll']
[u'martyn', u'water', u'obscen', u'gestur']
[u'megawati', u'quiet', u'iraq', u'voucher', u'claim']
[u'melbourn', u'polic', u'breath', u'test', u'blitz']
[u'mind', u'switch', u'research', u'market']
[u'monasteri', u'robber', u'priest', u'swear', u'bibl']
[u'mydoom', u'worm', u'link', u'russian', u'sourc']
[u'nasa', u'delud', u'safeti', u'astronaut', u'say']
[u'nasa', u'rememb', u'columbia', u'dead']
[u'nazi', u'link', u'candid', u'admir', u'springborg']
[u'news', u'organis', u'want', u'camera', u'jackson', u'hear']
[u'team', u'help', u'restor', u'power']
[u'women', u'bowl', u'cheapli']
[u'bird', u'committe', u'meet']
[u'govt', u'leav', u'fisheri', u'surplus']
[u'streak', u'ahead', u'polic', u'spend']
[u'nation', u'rise', u'ash', u'leader', u'say']
[u'opposit', u'tackl', u'divis', u'refuge', u'issu']
[u'parker', u'add', u'chelsea', u'english', u'revolut']
[u'perth', u'mayor', u'defend', u'skywork', u'blame', u'media']
[u'pig', u'pirat', u'bullet', u'good', u'sixer']
[u'pirat', u'slump', u'bullet', u'tiger']
[u'pizzonia', u'say', u'william', u'second', u'tester']
[u'polic', u'begin', u'burn', u'cannabi', u'haul']
[u'polic', u'investig', u'adelaid', u'shoot']
[u'politician', u'voic', u'concern', u'jetstar', u'launch']
[u'pont', u'figur', u'tassi', u'sport', u'award']
[u'port', u'chang', u'environ', u'risk', u'union']
[u'powel', u'hit', u'half', u'centuri', u'rain', u'match']
[u'opposit', u'blame', u'beatti', u'govt', u'blackout']
[u'storm', u'leav', u'power']
[u'rape', u'charg', u'leed', u'player', u'drop']
[u'ruddock', u'expect', u'habib', u'announc', u'soon']
[u'russel', u'crow', u'injur', u'film', u'accid']
[u'saddam', u'hand', u'govern', u'council']
[u'polic', u'return', u'work']
[u'saudi', u'author', u'uncov', u'terrorist', u'cell']
[u'schu', u'give', u'thumb']
[u'search', u'continu', u'miss', u'deckhand']
[u'call', u'wild', u'storm']
[u'shirvo', u'pull', u'hamstr', u'canberra']
[u'stock', u'slight', u'lower', u'wall', u'street']
[u'examin', u'possibl', u'prostat', u'cancer', u'factor']
[u'region', u'rise', u'water']
[u'dead', u'iraq', u'bomb', u'blast']
[u'escap', u'hous', u'blaze']
[u'soldier', u'kill', u'bomb', u'northern', u'iraq']
[u'trade', u'practic', u'face', u'decis', u'anger', u'virgin']
[u'train', u'driver', u'warn', u'employ', u'meet', u'demand']
[u'charg', u'pool', u'hall', u'murder']
[u'moder', u'earthquak', u'jolt', u'taiwan']
[u'issu', u'deadlin', u'qaeda']
[u'test', u'elect', u'feasibl', u'iraq']
[u'women']
[u'vincent', u'shirvington', u'impress', u'canberra']
[u'volunt', u'help', u'fauna', u'survey']
[u'govt', u'order', u'wast', u'treatment', u'pond', u'empti']
[u'waratah', u'annihil', u'chief', u'trial', u'match']
[u'worshipp', u'flock', u'mecca']
[u'healthi', u'chicken', u'cull', u'singapor']
[u'prison', u'like', u'offend', u'report']
[u'evacu', u'indonesian', u'volcano', u'spew', u'smoke']
[u'theme', u'park', u'propos', u'melbourn']
[u'local', u'mayor', u'happi', u'cross', u'border']
[u'pollut', u'level']
[u'adelaid', u'polic', u'investig', u'fatal']
[u'heavyweight', u'odd', u'airport', u'talk']
[u'amaq', u'presid', u'resign', u'polit', u'career']
[u'open', u'stage', u'men', u'night', u'final']
[u'barramundi', u'fishermen', u'look', u'govt', u'action']
[u'bartlett', u'say', u'alp', u'asylum', u'seeker', u'polici']
[u'beat', u'navratilova', u'farewel', u'aust', u'open']
[u'beatti', u'ahead', u'loom']
[u'beatti', u'warn', u'complac']
[u'brack', u'reject', u'claim', u'arrog']
[u'brescia', u'dent', u'roma', u'titl', u'hop']
[u'brisban', u'grab', u'olymp', u'triathlon', u'spot']
[u'british', u'airway', u'cancel', u'flight']
[u'brown', u'hop', u'disench', u'labor']
[u'bull', u'bat', u'clash']
[u'bush', u'shift', u'stanc', u'probe', u'iraq', u'intellig']
[u'bush', u'vow', u'wise', u'spend']
[u'camera', u'phone', u'despit', u'concern', u'privaci']
[u'camplin', u'claim', u'world', u'utah']
[u'canberra', u'airport', u'disappoint', u'plan']
[u'cancer', u'clinic', u'young', u'adult', u'unveil']
[u'celtic', u'crush', u'kilmarnock', u'clear']
[u'champion', u'feder', u'dismiss', u'swiss', u'slam']
[u'china', u'halt', u'poultri', u'export', u'bird', u'area']
[u'china', u'reveal', u'bird', u'outbreak']
[u'chines', u'restaur', u'firebomb', u'perth']
[u'crean', u'younger', u'brother', u'retir', u'polit']
[u'cunneen', u'keep', u'women', u'final', u'dream', u'aliv']
[u'dimarco', u'kay', u'share', u'phoenix', u'lead']
[u'dummi', u'bid', u'properti', u'price']
[u'earthquak', u'russia', u'eastern', u'coast']
[u'eighteen', u'kill', u'iraq', u'attack']
[u'elder', u'dead']
[u'electr', u'fault', u'blame', u'hous']
[u'environment', u'friend', u'exhibit', u'hous', u'open']
[u'chief', u'accus', u'british', u'govt', u'intimid']
[u'farmer', u'construct', u'dam']
[u'feder', u'open', u'champ']
[u'feder', u'thrash', u'safin', u'open']
[u'express', u'face', u'giant', u'russian', u'test']
[u'fergi', u'hail', u'birth', u'killer', u'strike', u'combo']
[u'flight', u'cancel', u'credibl', u'threat']
[u'flight', u'fear', u'qaeda', u'attack']
[u'french', u'tackl', u'racist', u'program']
[u'ghan', u'begin', u'histor', u'journey']
[u'gilchrist', u'symond', u'power', u'australia', u'waca']
[u'govt', u'refuge', u'spin', u'work', u'democrat']
[u'green', u'confid', u'head', u'feder', u'elect']
[u'hawk', u'heap', u'miseri', u'pirat']
[u'howard', u'say', u'latham', u'like', u'spender']
[u'hundr', u'dead', u'fish']
[u'illeg', u'fish', u'threaten', u'lobster', u'kenyan']
[u'imola', u'formula']
[u'india', u'feel', u'heat', u'waca']
[u'india', u'waca']
[u'indonesia', u'begin', u'charg', u'tourist', u'visa']
[u'iraq', u'award', u'foreign', u'bank', u'licenc']
[u'iraqi', u'govern', u'council', u'limit', u'jazeera', u'coverag']
[u'isp', u'crippl', u'mydoom', u'worm', u'target', u'websit']
[u'jimenez', u'win', u'bangkok', u'classic']
[u'keegan', u'delight', u'buyten', u'arriv']
[u'leader', u'expect', u'nation', u'benefit', u'jail']
[u'maher', u'stroke', u'make', u'histori', u'gabba']
[u'martyn', u'escap', u'punish', u'gestur']
[u'middlesbrough', u'target', u'viduka']
[u'miss', u'ballarat', u'girl']
[u'offic', u'question', u'philippin', u'militari']
[u'mose', u'complet', u'world', u'campaign', u'style']
[u'navi', u'escort', u'fish', u'boat', u'shore']
[u'korea', u'test', u'weapon', u'peopl']
[u'noie', u'closur', u'rumour', u'concern', u'union']
[u'norwich', u'beat', u'sheffield', u'unit', u'stay', u'point']
[u'sign', u'miss', u'carnarvon', u'woman']
[u'govt', u'accus', u'cover', u'polic', u'report']
[u'govt', u'say', u'bed', u'avail', u'mental']
[u'polic', u'target', u'interst', u'drug', u'runner']
[u'firm', u'manag', u'construct', u'marshal', u'island']
[u'oliveira', u'trick', u'power', u'valencia']
[u'iranian', u'reformist', u'resign']
[u'pakistani', u'actress', u'bollywood', u'film']
[u'pakistan', u'sack', u'father', u'nuclear', u'program', u'report']
[u'perth', u'polic', u'continu', u'search', u'gunman']
[u'polic', u'charg', u'murder', u'arson']
[u'polic', u'investig', u'hous']
[u'polic', u'investig', u'nightclub', u'brawl']
[u'polic', u'search', u'cemeteri', u'assault']
[u'poll', u'show', u'bush', u'slide']
[u'portugues', u'hospit', u'turn', u'help']
[u'power', u'queensland', u'home']
[u'power', u'restor', u'home']
[u'prison', u'face', u'lengthi', u'lockdown']
[u'liber', u'candid', u'investig', u'alleg']
[u'power', u'restor', u'today']
[u'realiti', u'pioneer', u'die']
[u'redback', u'rofe', u'peg', u'vic', u'elliott']
[u'red', u'brumbi', u'ballymor', u'trial']
[u'report', u'highlight', u'teacher', u'ratio', u'prison', u'fail']
[u'rofe', u'peg', u'vic', u'elliott']
[u'safin', u'feder', u'lock']
[u'saha', u'score', u'debut', u'unit']
[u'francisco', u'feng', u'shui']
[u'outlaw', u'biki', u'fortress']
[u'schu', u'set', u'track', u'record', u'ferrari']
[u'second', u'rover', u'drive', u'mar', u'time']
[u'sharon', u'readi', u'peac', u'talk', u'mubarak']
[u'springborg', u'hear', u'indigen', u'child', u'abus', u'concern']
[u'stallion', u'good', u'striker', u'brisban']
[u'stamped', u'kill', u'hajj', u'pilgrimag']
[u'stanhop', u'happi', u'confer']
[u'storm', u'caus', u'havoc', u'queensland']
[u'storm', u'hammer', u'central']
[u'suspect', u'serial', u'killer', u'china', u'stand', u'trial']
[u'suspect', u'toothfish', u'boat', u'escort', u'australia']
[u'eye', u'top', u'spanish', u'film', u'award']
[u'protest', u'push', u'live', u'export']
[u'tiger', u'warrior', u'wash', u'launceston']
[u'trade', u'deal', u'card', u'howard']
[u'treati', u'aim', u'save', u'albatross', u'extinct']
[u'trinidad', u'eye', u'comeback', u'hoya']
[u'million', u'pilgrim', u'reach', u'hajj', u'climax']
[u'protest', u'burn', u'hutton', u'report']
[u'union', u'rejuven']
[u'unseed', u'mix', u'doubl', u'pair', u'shock', u'navratilova', u'pae']
[u'fear', u'dead', u'congo', u'ferri']
[u'deputi', u'defenc', u'secretari', u'wolfowitz', u'iraq']
[u'wallabi', u'bushfir', u'survivor', u'speci']
[u'criticis', u'china', u'handl', u'sar']
[u'wigan', u'cowboy', u'wayward', u'hodg']
[u'wigan', u'cowboy', u'interest', u'wayward', u'hodg']
[u'youth', u'cancer', u'program', u'launch']
[u'complex', u'look', u'age', u'care', u'resid']
[u'abbott', u'pledg', u'vigil', u'onlin', u'drug', u'sale']
[u'abbott', u'talk', u'privat', u'health', u'rebat']
[u'aborigin', u'leader', u'call', u'famili']
[u'accc', u'tackl', u'telstra', u'mobil', u'phone']
[u'accid', u'spate', u'keep', u'emerg', u'servic', u'busi']
[u'alic', u'look', u'ghan', u'tourism', u'spin', u'off']
[u'qaeda', u'attack', u'fear', u'grind', u'domest', u'flight']
[u'appeal', u'lodg', u'convict', u'bank', u'manag']
[u'kill', u'iraq', u'ammunit', u'dump', u'blast']
[u'arsenal', u'chelsea', u'edg', u'rover']
[u'arson', u'suspect', u'adelaid', u'unit', u'blaze']
[u'finish', u'slight', u'higher']
[u'atsic', u'workshop', u'address', u'famili', u'violenc']
[u'attack', u'speed', u'esplanad', u'revamp']
[u'aussi', u'gear', u'swedish', u'attack']
[u'aussi', u'look', u'ahead', u'final']
[u'australia', u'unprepar', u'major', u'disast', u'report']
[u'awol', u'striker', u'defend', u'face', u'music']
[u'baildon', u'delay', u'elect', u'statement']
[u'balconi', u'fall', u'victim', u'die']
[u'barri', u'manilow', u'hospitalis', u'chest', u'pain']
[u'beatti', u'look', u'earn', u'vote']
[u'beatti', u'refin', u'sugar', u'comment']
[u'beatti', u'unfaz', u'polic', u'union']
[u'bird', u'infect', u'spread', u'china']
[u'blair', u'address', u'iraq', u'wmds', u'howard', u'contempl']
[u'face', u'court', u'swim', u'pool', u'incid']
[u'breaker', u'wildcat', u'warn', u'carpark', u'punch']
[u'bremer', u'condemn', u'latest', u'suicid', u'bomb', u'iraq']
[u'bridg', u'cataract', u'gorg', u'remain', u'close']
[u'british', u'govt', u'unveil', u'terror', u'plan']
[u'brit', u'wicker', u'coffin']
[u'driver', u'coerc', u'sign', u'contract']
[u'bushrang', u'adelaid']
[u'button', u'talk', u'hop', u'season']
[u'move', u'eas', u'student', u'accommod']
[u'poll', u'shire', u'futur']
[u'extend', u'countrylink', u'servic', u'adelaid']
[u'caravan', u'park', u'support', u'ralli']
[u'chanderpaul', u'shin', u'windi', u'stay', u'aliv']
[u'childcar', u'centr', u'expand']
[u'chines', u'astronaut', u'begin', u'space', u'flight', u'train']
[u'chines', u'serial', u'killer', u'sentenc']
[u'clark', u'centuri', u'power', u'spirit', u'decid', u'women']
[u'want', u'juvenil', u'justic', u'scheme', u'save']
[u'coast', u'broadband', u'need', u'microscop']
[u'congo', u'offici', u'probe', u'ferri', u'blaze']
[u'council', u'grant', u'year', u'leas', u'wilson', u'inlet']
[u'council', u'say', u'incent', u'need', u'region']
[u'council', u'lobbi', u'infrastructur', u'fund']
[u'council', u'benefit', u'land', u'agreement']
[u'council', u'seek', u'commerci', u'fish']
[u'croc', u'posit', u'loss', u'tiger']
[u'croc', u'remain', u'posit', u'play', u'chanc']
[u'deal', u'reach', u'aquarium', u'legionnair', u'outbreak']
[u'democrat', u'attack', u'alp', u'asylum', u'seeker', u'polici']
[u'desper', u'blue', u'bank', u'waugh', u'rescu']
[u'desper', u'blue', u'bank', u'waugh', u'rescu']
[u'domest', u'violenc', u'control', u'katherin']
[u'king', u'pep', u'venezuelan', u'presid', u'elect']
[u'doyl', u'lament', u'bendigo', u'violenc']
[u'dutch', u'nation', u'plead', u'guilti', u'drug', u'charg']
[u'ecologist', u'want', u'murray', u'water', u'cut']
[u'year', u'open', u'school']
[u'encourag', u'need', u'woman', u'report']
[u'enhanc', u'scheme', u'fund', u'wipe', u'council', u'debt']
[u'question', u'dolphin', u'health', u'studi']
[u'eurobodalla', u'green', u'team', u'unveil']
[u'farmer', u'crop', u'destroy', u'tassi', u'flood']
[u'fatal', u'accid', u'investig', u'continu']
[u'feder', u'true', u'great']
[u'firefight', u'tenur', u'extend', u'reduc', u'fuel']
[u'gut', u'newspap', u'offic']
[u'fishermen', u'lobster', u'reduct', u'number']
[u'foul', u'mouth', u'parrot', u'kill', u'china']
[u'french', u'garden', u'win', u'intern', u'piano']
[u'friend', u'wit', u'shoot', u'sydney', u'murder']
[u'ghan', u'head', u'north', u'alic']
[u'graphic', u'photo', u'cover', u'cigarett', u'pack']
[u'green', u'inquiri', u'polit', u'donat']
[u'hello', u'kitti', u'go', u'platinum']
[u'hors', u'rider', u'disput', u'kosciusko', u'chang']
[u'howard', u'elect', u'trail']
[u'howard', u'reject', u'latham', u'school', u'plan']
[u'howard', u'set', u'sight']
[u'human', u'right', u'group', u'want', u'child', u'soldier', u'demob']
[u'indigen', u'land', u'trust', u'disput', u'log']
[u'indonesian', u'water', u'buffalo', u'shake', u'butcher']
[u'injur', u'farmer', u'face', u'long', u'hospit', u'stay']
[u'isra', u'nuclear', u'traitor', u'free', u'april', u'report']
[u'jackson', u'come', u'undo', u'super', u'bowl']
[u'kashmiri', u'milit', u'offer', u'cash', u'surrend']
[u'kay', u'storm', u'home', u'phoenix', u'open']
[u'keightley', u'fire', u'blue', u'women', u'cricket', u'titl']
[u'kinder', u'face', u'teacher', u'shortag']
[u'labor', u'candid', u'oppos', u'site', u'second', u'sydney']
[u'labor', u'set', u'school', u'fund', u'shake']
[u'gasp', u'ronaldo', u'put', u'real']
[u'latham', u'play', u'free', u'child', u'care', u'claim']
[u'brink', u'gabba']
[u'lifesav', u'warn', u'swim', u'open', u'beach']
[u'lightn', u'caus', u'kiewa', u'scrub']
[u'lille', u'get', u'track']
[u'list', u'reveal', u'near', u'donat', u'liber']
[u'local', u'news', u'return', u'screen']
[u'local', u'shop', u'hous', u'primari', u'student']
[u'lovenkrand', u'injuri', u'overshadow', u'ranger']
[u'magistr', u'tour', u'titanium']
[u'magnesium', u'firm', u'eye', u'central', u'plant', u'site']
[u'court', u'kidnap', u'robberi']
[u'manufactur', u'industri', u'continu', u'growth']
[u'masur', u'play', u'scud', u'cash', u'feud', u'claim']
[u'media', u'giant', u'challeng', u'fine', u'judg']
[u'melbourn', u'cabbi', u'bash', u'rob']
[u'appear', u'court', u'drug', u'traffic', u'charg']
[u'milan', u'point', u'clear']
[u'mine', u'propos', u'nauru', u'consid']
[u'death', u'link', u'bird']
[u'mountain', u'bike', u'comp', u'enter']
[u'back', u'placement']
[u'seek', u'meet', u'review', u'hospit', u'psychiatr']
[u'mydoom', u'worm', u'hit', u'softwar', u'maker', u'websit']
[u'chief', u'quit', u'amid', u'trade', u'scandal']
[u'share', u'chief', u'quit']
[u'ncoss', u'back', u'stamp', u'duti', u'retent']
[u'newcastl', u'crime', u'rate', u'fall']
[u'england', u'record', u'heavi', u'rain']
[u'juvenil', u'detent', u'facil', u'establish']
[u'chief', u'step']
[u'fussi', u'win', u'bega']
[u'nrma', u'question', u'petrol', u'price']
[u'nuclear', u'scientist', u'admit', u'leak', u'secret', u'offici']
[u'consid', u'inquiri', u'polic', u'rape', u'claim']
[u'okon', u'consid', u'return', u'farina']
[u'iranian', u'resign']
[u'patriot', u'clinch', u'gasp', u'super', u'bowl']
[u'patriot', u'super', u'bowl', u'thriller']
[u'platinum', u'east', u'kimberley']
[u'announc', u'intern', u'section']
[u'elect', u'date']
[u'assess', u'propos', u'inquiri', u'iraq']
[u'rat', u'fall']
[u'polic', u'associ', u'happi', u'consid', u'super', u'issu']
[u'polic', u'crack', u'school', u'speed']
[u'polic', u'expect', u'breakthrough', u'miss', u'toddler', u'case']
[u'polic', u'oper', u'target', u'unruli', u'behaviour']
[u'polic', u'probe', u'nabowla', u'stab']
[u'polic', u'recov', u'steal', u'good']
[u'polic', u'upbeat', u'tackl', u'drug', u'runner']
[u'polic', u'worri', u'hijack']
[u'popul', u'chang', u'forc', u'local', u'council', u'meet']
[u'power', u'compani', u'come', u'scrutini']
[u'power', u'return', u'brisban', u'home']
[u'prison', u'escap', u'claim', u'dole', u'payment']
[u'prison', u'guard', u'union', u'talk']
[u'properti', u'price', u'hold', u'summer']
[u'public', u'urg', u'prejudg', u'godfath', u'soul']
[u'opposit', u'aim', u'lure', u'vote', u'fish']
[u'rate', u'rise', u'tip', u'deficit', u'jump']
[u'record', u'cold', u'januari', u'gambier']
[u'refuge', u'jail', u'flatmat', u'stab']
[u'resid', u'warn', u'thiev', u'target', u'home']
[u'reveng', u'make', u'victori', u'sweet', u'feder']
[u'road', u'group', u'hop', u'feder', u'fund']
[u'rofe', u'destroy', u'bushrang']
[u'recreat', u'right', u'resum']
[u'ruddock', u'warn', u'qaeda', u'threat', u'remain']
[u'saudi', u'revamp', u'holi', u'sit', u'hajj', u'crush']
[u'scotland', u'manag', u'mcleod', u'die', u'age']
[u'second', u'road', u'fatal', u'south', u'coast']
[u'separ', u'blaze', u'damag', u'home']
[u'societi', u'angri', u'grandstand', u'roof', u'remov']
[u'simpson', u'camel', u'seek']
[u'south', u'african', u'priest', u'fake', u'abduct']
[u'south', u'west', u'resid', u'hear', u'local', u'news']
[u'storm', u'lash', u'sydney']
[u'opposit', u'renew', u'magistr', u'boost']
[u'tenni', u'australia', u'rule', u'electron', u'line', u'call']
[u'vietnames', u'fear', u'dead', u'pirat', u'attack']
[u'tourist', u'die', u'central', u'australia', u'highway', u'crash']
[u'trenorden', u'charg', u'glenelg', u'murder']
[u'trenorden', u'remain', u'custodi']
[u'tropic', u'river', u'forum', u'open', u'darwin']
[u'tweed', u'get', u'dialysi', u'unit']
[u'tweed', u'galleri', u'offici', u'open']
[u'twin', u'bomb', u'claim', u'live', u'iraq']
[u'unaccept', u'wait', u'list', u'attack']
[u'home', u'ownership', u'rat', u'drop']
[u'offer', u'year']
[u'union', u'meet', u'educ', u'depart', u'discuss']
[u'want', u'rule', u'bioprospect', u'antarctica']
[u'upgrad', u'grain', u'wagon', u'hand']
[u'domest', u'flight', u'cancel', u'secur', u'fear']
[u'promis', u'justic', u'iraq', u'suicid', u'bomb']
[u'probe', u'iraq', u'intellig']
[u'vail', u'hammer', u'free', u'trade', u'talk']
[u'oppn', u'attack', u'brumbi', u'rat']
[u'prison', u'lockdown', u'continu']
[u'firm', u'welcom', u'toothfish', u'boat', u'apprehens']
[u'warn', u'driver', u'school', u'year', u'start']
[u'suspect', u'human', u'human', u'bird', u'spread']
[u'warn', u'bird', u'death', u'toll', u'hit']
[u'william', u'davenport', u'look', u'bounc', u'japan']
[u'work', u'ban', u'forc', u'jail', u'lockdown']
[u'year', u'monkey', u'bring', u'miseri', u'china', u'ape']
[u'serv', u'danc', u'offic']
[u'young', u'kill', u'sydney', u'factori', u'shoot']
[u'young', u'raid', u'net', u'jewelleri', u'haul']
[u'fine', u'electrician', u'rail', u'death']
[u'abbott', u'set', u'record', u'straight', u'elect']
[u'welcom', u'fuel', u'competit', u'qlds', u'north']
[u'court', u'welcom', u'magistr']
[u'minist', u'reject', u'retir', u'specul']
[u'social', u'plan']
[u'airlin', u'confid', u'aircraft', u'approv']
[u'appeal', u'launch', u'german', u'cannib', u'sentenc']
[u'predict', u'market', u'particip', u'recoveri']
[u'aussi', u'netbal', u'captainci', u'grab']
[u'aussi', u'kasprowicz']
[u'babi', u'offer', u'music', u'cours']
[u'bibl', u'prove', u'mightier', u'robberi']
[u'blair', u'announc', u'weapon', u'probe']
[u'blair', u'launch', u'iraq', u'intellig', u'inquiri']
[u'alight', u'attempt', u'ipswich', u'robberi']
[u'brack', u'write', u'childcar', u'warn']
[u'britain', u'ponder', u'terror', u'law']
[u'brogden', u'vow']
[u'brown', u'coal', u'viabil', u'studi', u'latrob', u'valley']
[u'brumbi', u'amaz', u'channel', u'ax', u'super']
[u'brumbi', u'shock', u'channel', u'ax', u'super']
[u'bulldog', u'search', u'support', u'north']
[u'bull', u'blue', u'rain']
[u'bush', u'order', u'probe', u'iraqi', u'weapon']
[u'bushrang', u'build', u'lead', u'rain', u'interrupt', u'gabba', u'game']
[u'bush', u'spend', u'trillion', u'budget']
[u'call', u'jail', u'account']
[u'canegrow', u'target', u'beatti']
[u'carey', u'brother', u'charg', u'assault']
[u'thief', u'sentenc', u'month', u'jail']
[u'centuri', u'upbeat', u'amidst', u'pasminco', u'chang']
[u'chamber', u'upbeat', u'despit', u'hakfoort', u'sell']
[u'child', u'care', u'probe', u'hear', u'brutal', u'claim']
[u'cobar', u'wait', u'despit', u'arriv']
[u'colleg', u'start', u'plan', u'fund', u'spend']
[u'communiti', u'alcohol', u'abus']
[u'communiti', u'encourag', u'burglar']
[u'contract', u'kill', u'price']
[u'cool', u'weather', u'expect', u'central', u'victoria']
[u'council', u'issu', u'school', u'park', u'fin']
[u'council', u'offic', u'highlight', u'growth', u'stress']
[u'court', u'appear', u'alleg', u'jacker']
[u'cycl', u'need', u'lift', u'revamp', u'season']
[u'cyclist', u'get', u'cash', u'refund', u'year']
[u'dallaglio']
[u'diver', u'help', u'barg', u'refloat']
[u'plessi', u'quit', u'rugbi', u'board']
[u'elder', u'call', u'charg', u'polic', u'wildlif']
[u'elect', u'word', u'erupt', u'cherbourg', u'claim']
[u'employ', u'opposit', u'plan', u'build', u'law']
[u'escap', u'child', u'offend', u'interest']
[u'expert', u'warn', u'sting', u'suit']
[u'away', u'europ', u'warn', u'boss']
[u'fairfax', u'cut', u'job', u'print', u'closur']
[u'famili', u'associ', u'want', u'violent', u'play', u'stop']
[u'feder', u'say', u'impact', u'student', u'rise']
[u'feder', u'ferrero', u'sign', u'hamburg', u'master']
[u'financ', u'compani', u'say', u'hous', u'market', u'favour']
[u'author', u'warn', u'bushfir', u'risk']
[u'firefight', u'battl', u'bush', u'blaze', u'near', u'perth']
[u'fitzgerald', u'defend', u'scud']
[u'shire', u'foreman', u'convict', u'fraud']
[u'frustrat', u'martyn']
[u'fund', u'announc', u'namoi', u'valley', u'industri']
[u'german', u'fear', u'european', u'bird', u'case']
[u'ghan', u'complet', u'histor', u'journey']
[u'ghan', u'make', u'dash', u'darwin']
[u'ghan', u'reach', u'tennant', u'creek']
[u'goodwin', u'sign', u'sussex']
[u'gough', u'move', u'essex']
[u'govern', u'communiti', u'join', u'fight', u'alcohol']
[u'govern', u'blame', u'local', u'council', u'cost', u'blow']
[u'govt', u'announc', u'anti', u'drug', u'boost']
[u'grant', u'council', u'conduct', u'poll', u'citi']
[u'green', u'concern', u'vote', u'card']
[u'hail', u'devast', u'bird', u'near', u'wollongong']
[u'hanson', u'call', u'protest', u'vote']
[u'hantuchova', u'down', u'molik', u'tokyo']
[u'health', u'provid', u'scrambl', u'save', u'million']
[u'heineken', u'classic', u'second', u'prize', u'barn']
[u'high', u'court', u'reserv', u'child', u'detent', u'decis']
[u'hill', u'reject', u'need', u'local', u'iraq', u'weapon', u'probe']
[u'hollywood', u'studio', u'oscar', u'cash', u'overdr']
[u'howard', u'warn', u'labor', u'industri', u'relat']
[u'hubbl', u'find', u'oxygen', u'carbon', u'distant', u'planet']
[u'indonesia', u'confirm', u'dead', u'bird', u'strain']
[u'inquest', u'tell', u'fatal', u'payback', u'polic']
[u'insur', u'concern', u'sport', u'doctor', u'leav']
[u'irish', u'race', u'tycoon', u'turn', u'heat', u'fergi']
[u'israel', u'sharon', u'threaten', u'form', u'govern']
[u'jackson', u'remain', u'limit', u'prepar']
[u'jackson', u'super', u'bowl', u'mishap', u'spark', u'indec', u'inquiri']
[u'jackson', u'battl', u'fractur']
[u'jail', u'lockdown', u'spark', u'inmat', u'tension', u'fear']
[u'janet', u'jackson', u'superbowl', u'flash', u'spark', u'outrag']
[u'japan', u'farewel', u'soldier', u'iraq', u'mission']
[u'jewish', u'settler', u'reject', u'sharon', u'plan']
[u'kasper', u'stun']
[u'kasprowicz', u'stun', u'final']
[u'katherin', u'track', u'ghan', u'arriv']
[u'kenyan', u'face', u'terrorist', u'attack', u'trial']
[u'latham', u'attack', u'payout']
[u'latham', u'promis', u'kirribilli', u'hous']
[u'launceston', u'crash', u'spark', u'inquest']
[u'lawyer', u'make', u'second', u'hick', u'visit']
[u'leader', u'discuss', u'king', u'ship', u'problem']
[u'leader', u'messag', u'road']
[u'lectur', u'blame', u'polit', u'rebuk']
[u'leed', u'reject', u'boro', u'viduka']
[u'disput', u'local', u'govern', u'claim']
[u'lismor', u'prepar', u'flood', u'survey']
[u'lobster', u'council', u'defend', u'sustain']
[u'logger', u'ralli', u'nativ', u'veget']
[u'malaysia', u'mull', u'legalis', u'transvestit']
[u'front', u'court', u'stab']
[u'hold', u'suspect', u'parcel', u'send', u'leader']
[u'hospit', u'liverpool', u'shoot']
[u'market', u'settl', u'dollar', u'climb']
[u'masur', u'renew', u'davi', u'reward']
[u'mcgrath', u'track', u'monday', u'comeback']
[u'memori', u'plaqu', u'unveil', u'pilton', u'cemeteri']
[u'mildura', u'look', u'promot', u'wine', u'credenti']
[u'minor', u'flood', u'predict', u'steadi', u'rain', u'fall']
[u'dope', u'grow', u'suspect', u'record', u'raid']
[u'mourner', u'farewel', u'victim', u'iraq', u'suicid', u'blast']
[u'call', u'polit', u'donat', u'transpar']
[u'claim', u'defenc', u'dept', u'jeopardis', u'local', u'job']
[u'squabbl', u'polit', u'point', u'score']
[u'nat', u'reject', u'live', u'export', u'recommend']
[u'near', u'drown', u'victim', u'stabl', u'condit']
[u'environment', u'lobbi', u'group', u'launch']
[u'juri', u'crossbow', u'accus', u'trial']
[u'nrma', u'call', u'fuel', u'price', u'investig']
[u'order', u'malici', u'prosecut', u'compo']
[u'communiti', u'entertain', u'youth', u'reduc', u'crime']
[u'korea', u'name', u'talk', u'date']
[u'korea', u'readi', u'talk', u'downer']
[u'fund', u'east', u'timor', u'justic', u'probe']
[u'odriscol', u'look', u'ireland']
[u'oppn', u'blame', u'govt', u'miss', u'offer']
[u'opposit', u'warn', u'super', u'council']
[u'paint', u'hitler', u'tokyo']
[u'pittsworth', u'cabbi', u'keep', u'busi']
[u'pivac', u'coach', u'fiji']
[u'plantat', u'crop', u'includ', u'nativ', u'tree']
[u'admit', u'doubt', u'grow']
[u'power', u'restor', u'wollongong', u'home', u'fierc']
[u'powerscrap', u'firm', u'find', u'plan', u'viabl']
[u'premier', u'leagu', u'club', u'splash', u'cash', u'rest']
[u'primus', u'prim', u'season']
[u'prison', u'guard', u'stop', u'work']
[u'protest', u'focus', u'mental', u'health', u'resourc']
[u'protestor', u'fail', u'present', u'petit']
[u'public', u'health', u'warn', u'tick', u'increas']
[u'grazier', u'lookout', u'weed']
[u'quarantin', u'effort', u'boost', u'amidst', u'bird', u'fear']
[u'quarantin', u'expert', u'beetl', u'pest']
[u'race', u'organis', u'bemus', u'beloki', u'withdraw']
[u'consid', u'rat', u'rise']
[u'redback', u'trail', u'adelaid']
[u'reef', u'bodi', u'concern', u'green', u'zone', u'hammer']
[u'reserv', u'urg', u'lift', u'rat']
[u'resid', u'fear', u'council', u'creat', u'pristin', u'reserv']
[u'resid', u'trap', u'turkish', u'flat', u'collaps']
[u'resourc', u'media', u'stock', u'weigh', u'market']
[u'restaur', u'owner', u'meet', u'firebomb', u'attack']
[u'ricin', u'senat', u'offic']
[u'riverland', u'polic', u'watch', u'drug', u'offens']
[u'rivkin', u'lawyer', u'plan', u'appeal']
[u'rome', u'hold', u'bird', u'talk']
[u'samag', u'doubt', u'prompt', u'lower', u'power', u'price']
[u'public', u'servant', u'continu', u'strike']
[u'debut', u'site', u'mydoom', u'target', u'microsoft']
[u'scud', u'join', u'davi', u'team', u'mat']
[u'second', u'child', u'detent', u'case', u'reach', u'high', u'court']
[u'seven', u'dump', u'super', u'coverag']
[u'shark', u'flag', u'women', u'stay', u'men', u'golf']
[u'shark', u'want', u'women', u'stay', u'men', u'golf']
[u'sharon', u'drop', u'gaza', u'settlement', u'bombshel']
[u'sharon', u'plan', u'free', u'gaza']
[u'sharon', u'settlement', u'plan', u'public', u'relat']
[u'sharon', u'hand', u'arab', u'isra', u'town', u'palestinian']
[u'shock', u'smoke', u'warn', u'draw', u'mix', u'reaction']
[u'springborg', u'catch', u'poll']
[u'stanwel', u'short', u'list', u'magnesium', u'project']
[u'sydney', u'doctor', u'defend', u'patient', u'treatment']
[u'tafe', u'student', u'choos', u'fee', u'despit', u'teacher']
[u'taiwan', u'presid', u'make', u'china', u'offer']
[u'ambul', u'offic', u'work', u'hobart']
[u'declar', u'marin', u'reserv']
[u'tasmanian', u'student', u'struggl', u'hous']
[u'danger', u'state', u'prison']
[u'teacher', u'union', u'want', u'truanci', u'plan', u'trial']
[u'telstra', u'offer', u'mobil', u'relief', u'storm', u'victim']
[u'tender', u'expect', u'call', u'hume', u'freeway']
[u'test', u'fail', u'detect', u'german', u'bird', u'case']
[u'timber', u'committe', u'back', u'power', u'station', u'propos']
[u'time', u'run', u'trade', u'talk', u'deal']
[u'toddler', u'die', u'turkey', u'build', u'collaps']
[u'turkey', u'build', u'collaps', u'toll']
[u'underground', u'gold', u'construct', u'begin']
[u'unfair', u'point', u'stay', u'say', u'mosley']
[u'union', u'predict', u'build', u'industri', u'loss']
[u'uralla', u'accid', u'kill']
[u'uralla', u'council', u'pursu', u'allianc', u'neighbour']
[u'militari', u'reduc', u'baghdad', u'presenc']
[u'scientist', u'claim', u'sar', u'breakthrough']
[u'fast', u'rail', u'accus', u'construct', u'cost', u'cut']
[u'land', u'declar', u'bushfir', u'prone']
[u'prison', u'lockdown', u'go']
[u'wandera', u'log', u'protest', u'lead', u'talk']
[u'watchdog', u'warn', u'earli', u'super', u'scam']
[u'waugh', u'get', u'raini', u'blue', u'brisban']
[u'weather', u'bureau', u'say', u'nino']
[u'welfar', u'group', u'want', u'public', u'liabil', u'probe']
[u'wilkinson', u'nation', u'open']
[u'worksaf', u'baffl', u'farm', u'tragedi']
[u'zimbabw', u'head', u'home', u'fight', u'defeat']
[u'zim', u'crash', u'perth']
[u'abattoir', u'boss', u'seek', u'perman', u'resid', u'asylum']
[u'late', u'fund', u'disclosur', u'detail']
[u'ambassador', u'deni', u'indonesian', u'embassi', u'bug']
[u'annan', u'attempt', u'break', u'impass', u'iraq']
[u'appeal', u'launch', u'stop', u'clear', u'tree']
[u'applebi', u'say', u'women', u'tour', u'need', u'golfer']
[u'atsic', u'want', u'trust', u'document', u'releas']
[u'bank', u'bump']
[u'barrymor', u'star', u'shin', u'hollywood', u'walk', u'fame']
[u'beatti', u'committ', u'racetrack']
[u'beatti', u'affirm', u'commit', u'visit', u'cherbourg']
[u'beatti', u'springborg', u'hust', u'region']
[u'bichel', u'disappoint', u'dump']
[u'blaze', u'near', u'control']
[u'bird', u'effort', u'creat', u'melbourn', u'airport', u'woe']
[u'bird', u'kill', u'asia']
[u'blue', u'chase', u'outright', u'gabba']
[u'boat', u'accid', u'kill', u'uganda']
[u'boozi', u'biscuit', u'hard', u'swallow']
[u'boro', u'stun', u'gunner', u'reach', u'leagu', u'final']
[u'accus', u'murder', u'father', u'claim', u'abus']
[u'die', u'bird', u'thailand']
[u'burdekin', u'resid', u'count', u'flood', u'cost']
[u'bushfir', u'final', u'contain']
[u'bushrang', u'rout', u'redback']
[u'busi', u'campaign', u'ring', u'road']
[u'businessman', u'back', u'water', u'technolog']
[u'carer', u'welcom', u'support']
[u'sale', u'boom']
[u'thiev', u'poor']
[u'worker', u'drive', u'boost', u'push']
[u'child', u'kill', u'convict', u'call', u'question']
[u'child', u'offend', u'southern']
[u'china', u'battl', u'bird', u'case']
[u'coal', u'miner', u'union', u'discuss', u'return', u'work']
[u'coal', u'miner', u'walk']
[u'commerci', u'fish', u'industri', u'want', u'meet']
[u'committe', u'studi', u'hospit', u'futur']
[u'committe', u'urg', u'moratorium', u'bluegum', u'plant']
[u'compani', u'plead', u'guilti', u'environment', u'charg']
[u'cook', u'show', u'earli', u'season', u'form']
[u'council', u'back', u'dump', u'oppon']
[u'council', u'reassur', u'log', u'wandera', u'forest']
[u'council', u'stress', u'import', u'kraft', u'factori']
[u'council', u'discuss', u'abattoir', u'futur']
[u'council', u'investig', u'hous', u'flood', u'prone', u'area']
[u'council', u'urg', u'address', u'traffic', u'concern', u'issu']
[u'court', u'decid', u'rivkin', u'sentenc', u'appeal']
[u'creditor', u'line', u'lode', u'decis', u'welcom']
[u'crossbow', u'attack', u'trial', u'hear', u'judg']
[u'crown', u'thorn', u'starfish', u'outbreak', u'near']
[u'davenport', u'sweep', u'tokyo', u'quarter']
[u'death', u'toll', u'iraq', u'suicid', u'bomb', u'hit']
[u'death', u'toll', u'mount', u'turkey', u'build', u'disast']
[u'deleg', u'prepar', u'bali', u'terror', u'summit']
[u'demon', u'seek', u'financi']
[u'demon', u'turn', u'cash', u'bail']
[u'dengu', u'fever', u'outbreak', u'concern', u'author']
[u'develop', u'polici', u'concern', u'irrig', u'group']
[u'draw', u'end', u'blue', u'final', u'hop']
[u'drought', u'blame', u'high', u'cost', u'fruit', u'vege']
[u'drought', u'hardship', u'highlight', u'panel', u'forum']
[u'dump', u'plan', u'galvanis', u'resid']
[u'dyson', u'return', u'red']
[u'email', u'giant', u'spam', u'charg']
[u'bosnian', u'serb', u'polici', u'maker', u'face', u'crime', u'trial']
[u'experi', u'reduc', u'wild', u'fruit', u'fli', u'hail']
[u'expert', u'meet', u'bird', u'crisi']
[u'export', u'angri', u'cattl', u'levi']
[u'facilit', u'call', u'chang', u'colleg', u'teach']
[u'farmer', u'warn', u'check']
[u'farm', u'safeti', u'group', u'critic', u'helmet', u'requir']
[u'ferri', u'capsiz', u'toll', u'top']
[u'finish', u'touch', u'golf', u'cours']
[u'flinder', u'hop', u'diamond']
[u'fraudster', u'jail', u'credit', u'card', u'chequ', u'book', u'scam']
[u'leak', u'threaten', u'explos', u'gunnedah']
[u'ghan', u'make', u'adelaid']
[u'ghan', u'track', u'return', u'trip']
[u'glenelg', u'mayor', u'look', u'support', u'livestock']
[u'good', u'friday', u'agreement', u'review']
[u'govt', u'accus', u'blame', u'shift', u'samag', u'issu']
[u'govt', u'doubl', u'spend', u'unman', u'plan']
[u'govt', u'urg', u'consid', u'hedland', u'coastguard', u'base']
[u'green', u'supermarket', u'plastic']
[u'owner', u'urg', u'advantag', u'buyback', u'unit']
[u'hanson', u'issu', u'plea', u'juror']
[u'hart', u'surpris', u'council', u'honour']
[u'health', u'promis', u'doctor']
[u'hewitt', u'verg', u'davi', u'great']
[u'hewitt', u'wari', u'unknown', u'swede']
[u'high', u'court', u'hear', u'life', u'sentenc', u'challeng']
[u'hodg', u'ponder', u'play', u'futur']
[u'howard', u'stand', u'iraq', u'decis']
[u'indonesia', u'face', u'long', u'term', u'secur', u'risk', u'studi']
[u'kerri', u'take', u'edward', u'clark', u'stay', u'aliv']
[u'killer', u'seek', u'life', u'sentenc', u'review']
[u'labor', u'lukewarm', u'defenc', u'plan']
[u'land', u'council', u'petrol', u'compani', u'announc', u'land', u'deal']
[u'latham', u'heckl', u'region', u'tour']
[u'latham', u'help', u'boost']
[u'latham', u'region', u'campaign', u'roll']
[u'confus', u'creat', u'rivkin', u'appeal', u'doubt']
[u'lismor', u'site', u'amalgam', u'hear']
[u'livingston', u'silver', u'line', u'dark', u'financi']
[u'local', u'footbal', u'benefit', u'docker', u'train']
[u'charg', u'attempt', u'murder', u'refus', u'bail']
[u'electrocut', u'freak', u'accid']
[u'face', u'attempt', u'murder', u'charg']
[u'martyn', u'say', u'sorri', u'finger', u'salut']
[u'mayor', u'highlight', u'restrict', u'prime', u'real', u'estat']
[u'media', u'ident', u'trenorden', u'dead', u'cell']
[u'microsoft', u'withstand', u'mydoom', u'attack']
[u'milton', u'add', u'alpin', u'ski', u'gold', u'haul']
[u'mix', u'reaction', u'log', u'protest']
[u'terror', u'attack', u'inevit', u'downer']
[u'water', u'seek', u'thomson', u'river']
[u'want', u'administr', u'appoint', u'health', u'servic']
[u'nambucca', u'shire', u'lobbi']
[u'narrogin', u'resid', u'vote', u'amalgam']
[u'carolina', u'senat', u'close', u'presidenti']
[u'netbal', u'boss', u'seek', u'repres', u'player']
[u'equat', u'leav', u'powel', u'unsur', u'iraq']
[u'leve', u'alter', u'direct', u'flood', u'water']
[u'nippl', u'gate', u'wont', u'stop', u'jackson', u'timberlak', u'grammi']
[u'north', u'west', u'resid', u'phone']
[u'give', u'striker', u'unit', u'replay', u'ahead']
[u'opposit', u'demand', u'rivkin', u'time']
[u'polic', u'drug', u'bust', u'south', u'coast']
[u'slat', u'tourism', u'research', u'withdraw']
[u'dead', u'russian', u'blast']
[u'pakistan', u'scientist', u'ask', u'clemenc', u'leak']
[u'pasminco', u'upbeat', u'port', u'piri']
[u'disput', u'delay', u'lengthen', u'inmat', u'lock']
[u'perilya', u'oper', u'breakdown']
[u'plan', u'open', u'hospit', u'ward']
[u'continu', u'campaign']
[u'defend', u'super', u'scheme']
[u'reflect', u'like', u'latham', u'poll', u'boost']
[u'polic', u'hunt', u'video', u'store', u'arm', u'robber']
[u'polic', u'hunt', u'youth', u'alight']
[u'polic', u'search', u'murder', u'victim', u'bodi']
[u'polic', u'seek', u'help', u'underworld', u'murder', u'probe']
[u'polic', u'seek', u'vandal']
[u'polic', u'seek', u'public', u'help', u'size', u'vehicl']
[u'polic', u'investig', u'hous', u'blaze']
[u'polit', u'infight', u'delay', u'itali', u'media']
[u'poultri', u'bird', u'owner', u'warn', u'watch', u'bird']
[u'power', u'surg', u'jolt', u'telstra', u'worker', u'brisban']
[u'premier', u'elect', u'bandwagon', u'roll', u'keppel']
[u'prison', u'wont', u'join', u'court', u'challeng', u'law']
[u'public', u'meet', u'discuss', u'pipelin']
[u'rat', u'stay', u'steadi']
[u'recuper', u'prokopec', u'target', u'athen']
[u'refuge', u'group', u'highlight', u'child', u'detent', u'rat']
[u'retail', u'sale', u'month', u'high', u'overal']
[u'ricciuto', u'season']
[u'ricin', u'scare', u'push', u'dollar']
[u'roff', u'aim', u'super', u'career', u'high']
[u'gallus', u'tell', u'howard', u'wont']
[u'schooli', u'urg', u'accommod', u'homework']
[u'schultz', u'label', u'latham', u'airport', u'stunt']
[u'scotland', u'coach', u'say', u'face', u'hard', u'road']
[u'seear', u'win', u'olymp', u'triathlon', u'spot']
[u'shire', u'move', u'allay', u'concert', u'concern']
[u'softwood', u'process', u'boost', u'job']
[u'speed', u'put', u'children', u'safeti', u'risk', u'polic']
[u'lankan', u'stack', u'squad', u'spinner']
[u'staff', u'increas', u'rais', u'abalon', u'poach', u'sting']
[u'state', u'propos', u'minimum', u'wage', u'rise']
[u'stress', u'eleph', u'present', u'jumbo', u'task']
[u'studi', u'forecast', u'jump', u'privat', u'health', u'cost']
[u'studi', u'probe', u'pacif', u'tuna', u'manag']
[u'support', u'gather', u'class', u'action']
[u'survey', u'highlight', u'danger', u'rock', u'fish']
[u'move', u'regul', u'worker']
[u'opposit', u'want', u'power', u'price', u'rise', u'answer']
[u'temporari', u'measur', u'suggest', u'intersect']
[u'thailand', u'report', u'fifth', u'bird', u'death']
[u'toowoomba', u'resid', u'prais', u'recycl']
[u'toyn', u'reject', u'land', u'acquisit']
[u'train', u'smash', u'court', u'sequel']
[u'truck', u'spill', u'acid', u'tanami', u'highway']
[u'tyre', u'see', u'good', u'cement', u'work', u'fuel']
[u'chief', u'overrul', u'expert', u'iraq', u'dossier']
[u'hold', u'inquiri', u'iraq', u'intellig']
[u'promis', u'bolster', u'student', u'number']
[u'iraq', u'govt', u'transit']
[u'sailor', u'enjoy', u'time', u'broom']
[u'concret', u'saddam', u'bolt', u'hole']
[u'viduka', u'vow', u'repay', u'leed', u'loyalti']
[u'agreement', u'hail', u'step', u'forward']
[u'minist', u'criticis', u'lack', u'marshal']
[u'warrior', u'strong', u'posit', u'open']
[u'warrior', u'place', u'open']
[u'wife', u'terror', u'suspect', u'brigitt', u'make', u'jail', u'visit']
[u'wilki', u'demand', u'independ', u'iraq', u'probe']
[u'work', u'child', u'precinct', u'develop', u'underway']
[u'yuko', u'sibneft', u'sign', u'divorc', u'memorandum']
[u'home', u'black', u'lightn', u'strike']
[u'aborigin', u'children', u'perform', u'art', u'festiv']
[u'stand', u'candid', u'accus', u'bulli']
[u'anderson', u'reject', u'latham', u'nat', u'attack']
[u'angri', u'canefarm', u'squar', u'major']
[u'anim', u'activist', u'want', u'live', u'export']
[u'art', u'festiv', u'manag', u'stand', u'appoint']
[u'consid', u'report', u'possibl', u'cycl', u'drug', u'case']
[u'australia', u'indonesia', u'joint', u'anti', u'terror']
[u'balloon', u'titl', u'hold', u'mildura']
[u'bank', u'media', u'stock', u'weigh', u'market']
[u'beatric', u'celebr']
[u'beatti', u'face', u'elect', u'loss', u'possibl']
[u'beatti', u'play', u'tugun', u'trump', u'card']
[u'bird', u'claim', u'victim', u'vietnam']
[u'blair', u'admit', u'setback', u'iraqi', u'weapon', u'search']
[u'blair', u'heckl', u'iraq', u'debat']
[u'boat', u'harbour', u'draft', u'plan', u'present']
[u'boonah', u'council', u'review', u'water', u'restrict']
[u'british', u'labour', u'deputi', u'protest', u'appoint']
[u'bundaberg', u'organ', u'food', u'supplier', u'target', u'japanes']
[u'busi', u'usual', u'student', u'despit', u'tafe', u'strike']
[u'action', u'stall', u'burni', u'hous', u'site']
[u'campbel', u'captur', u'clubhous', u'lead']
[u'canberra', u'polic', u'number', u'adequ', u'minist', u'say']
[u'carr', u'find', u'conveni', u'store', u'alcohol', u'plan', u'hard']
[u'cheap', u'travel', u'plan']
[u'china', u'predict', u'tough', u'bird', u'battl']
[u'cinema', u'draw', u'near', u'oscar', u'ballot', u'mail']
[u'claim', u'educ', u'depart', u'chequ', u'bounc']
[u'clayton', u'girlfriend', u'offer', u'ebay']
[u'coalit', u'seat', u'springborg']
[u'coalit', u'promis', u'yeppoon', u'hospit']
[u'coal', u'expans', u'plan', u'approv', u'govt']
[u'coastal', u'strip', u'manag', u'meet', u'continu']
[u'coff', u'host', u'nation', u'health', u'care', u'trial']
[u'commission', u'concentr', u'land', u'clear']
[u'compani', u'plan', u'begin', u'iron', u'mine']
[u'loser', u'walk', u'away', u'storey', u'fall']
[u'controversi', u'clone', u'attempt', u'fail']
[u'council', u'call', u'generat']
[u'council', u'unhappi', u'cemeteri', u'clear', u'decis']
[u'court', u'reject', u'rivkin', u'appeal']
[u'court', u'rule', u'claim', u'boxer', u'estat']
[u'croc', u'trap', u'remov', u'river']
[u'crow', u'spend', u'time', u'riverland', u'communiti']
[u'currumbin', u'charg', u'stalk']
[u'debt', u'zimbabw', u'wing']
[u'diamond', u'lift']
[u'drought', u'blame', u'skyrocket', u'fruit']
[u'charg', u'spate', u'burglari']
[u'rip', u'royal', u'melbourn', u'shred']
[u'expert', u'consid', u'rail', u'safeti', u'waterfal', u'probe']
[u'famili', u'feud', u'street', u'fight', u'polic']
[u'farmer', u'urg', u'battl', u'live', u'export', u'trade', u'shutdown']
[u'fifa', u'kick', u'centenari', u'live', u'legend', u'sneak']
[u'wollongong', u'mayor', u'jack', u'parker', u'die']
[u'indian', u'soldier', u'kill', u'kashmir', u'blast']
[u'francou', u'go', u'knife']
[u'futur', u'fortuna', u'defenc', u'centr', u'discuss']
[u'geraldton', u'student', u'univers', u'centr']
[u'ghan', u'head', u'alic', u'return', u'trip']
[u'girl', u'suspend', u'school', u'say', u'hell']
[u'global', u'firm', u'move', u'headquart', u'queensland']
[u'gold', u'coast', u'pedestrian', u'rob', u'gunpoint']
[u'good', u'rainfal', u'boost', u'level']
[u'govt', u'blast', u'river', u'clean', u'work']
[u'govt', u'releas', u'submiss', u'port', u'infrastructur']
[u'grace', u'bros', u'chang', u'plan', u'spark', u'concern']
[u'green', u'blast', u'rail', u'delay', u'figur']
[u'group', u'begin', u'seawe', u'salin', u'research']
[u'health', u'promis', u'receiv', u'mix', u'reaction']
[u'health', u'servic', u'scratch', u'despit', u'budget']
[u'hide', u'agenda', u'claim', u'level', u'water', u'author']
[u'hockey', u'fail', u'convinc', u'stick', u'tourism']
[u'hockeyroo', u'domin', u'lose', u'athen']
[u'hope', u'better', u'treatment', u'children', u'court']
[u'horan', u'hop', u'secur', u'toowoomba', u'seat']
[u'hous', u'crisi', u'caus', u'overcrowd', u'survey']
[u'howard', u'head', u'kalgoorli']
[u'illeg', u'tyre', u'dump', u'spark', u'investig']
[u'indigen', u'group', u'demand', u'answer', u'miss']
[u'infight', u'take', u'toll', u'lib']
[u'inform', u'session', u'plan', u'council', u'poll']
[u'iranian', u'leader', u'give', u'elect']
[u'irish', u'tycoon', u'step', u'ferguson']
[u'islam', u'group', u'claim', u'respons', u'iraq']
[u'jackson', u'say', u'offenc', u'intend', u'bustier', u'go']
[u'jail', u'theophan', u'earli', u'releas']
[u'jetti', u'upgrad', u'plan', u'busselton', u'beachfront']
[u'jone', u'eye', u'gold', u'athen']
[u'jordan', u'luck', u'heidfeld']
[u'king', u'dodg', u'bullet']
[u'king', u'dodg', u'bullet', u'hawk', u'beat', u'pig']
[u'lara', u'heap', u'prais', u'prolif', u'kalli']
[u'latham', u'take', u'nation', u'parti', u'neglect']
[u'latham', u'tell', u'need', u'greater', u'rural', u'credibl']
[u'learn', u'centr', u'happi', u'fund', u'cut']
[u'lewi', u'hang', u'glove']
[u'major', u'parti', u'releas', u'elect', u'cost']
[u'charg', u'cannabi', u'crop']
[u'citi', u'write', u'chapter', u'lore']
[u'extradit', u'face', u'child', u'charg']
[u'plead', u'guilti', u'kill', u'tenni', u'star']
[u'mar', u'rover', u'travel', u'rocki', u'road', u'seek', u'water']
[u'martin', u'give', u'thumb', u'darwin', u'tower']
[u'massa', u'escap', u'crash', u'minor', u'injuri']
[u'mcgrath', u'fail', u'fit', u'test']
[u'melbourn', u'polic', u'accus', u'brutal']
[u'memori', u'hold', u'miss', u'gold', u'coast']
[u'mine', u'school', u'combat', u'labour', u'shortag']
[u'log', u'illeg', u'forest', u'import']
[u'moroccan', u'clear', u'german', u'trial']
[u'accus', u'polic', u'breach']
[u'suggest', u'sydney', u'devonport', u'ferri', u'stop']
[u'nation', u'candid', u'buoy', u'elect', u'predict']
[u'natur', u'resourc', u'forum', u'hold', u'gippsland']
[u'law', u'council', u'final', u'word', u'brothel']
[u'resolut', u'public', u'sector', u'wage']
[u'rest', u'star', u'davi', u'begin']
[u'norman', u'swing', u'thing']
[u'northcot', u'murder', u'trial', u'begin', u'victoria']
[u'north', u'coal', u'miner', u'order', u'work']
[u'health', u'servic', u'tell', u'tighten', u'belt']
[u'visit', u'boon', u'bulldog']
[u'youth', u'highest', u'pay', u'nation']
[u'opposit', u'leader', u'cop', u'maori', u'attack']
[u'opposit', u'support', u'crown', u'land', u'propos', u'toxic']
[u'optus', u'ring', u'profit']
[u'oscar', u'bodi', u'expel', u'member', u'piraci', u'scheme']
[u'pair', u'charg', u'drug']
[u'pakistan', u'govt', u'deni', u'offici', u'involv']
[u'pakistan', u'pardon', u'father', u'bomb']
[u'pakistan', u'scientist', u'pardon', u'leak']
[u'parti', u'leader', u'hust', u'elect']
[u'peak', u'bodi', u'aim', u'educ', u'depress']
[u'petrol', u'station', u'alcohol', u'sale', u'communiti']
[u'philippin', u'tighten', u'quarantin', u'bird', u'fear']
[u'pipe', u'construct', u'continu', u'despit', u'heavi', u'rain']
[u'plan', u'reduc', u'kindergarten', u'class', u'size', u'welcom']
[u'question', u'futur']
[u'stale', u'idea']
[u'polic', u'highlight', u'danger', u'illeg', u'home', u'drug']
[u'polic', u'arrest', u'sydney', u'stab', u'case']
[u'polic', u'oper', u'uncov', u'drug']
[u'polic', u'probe', u'gunshot', u'claim']
[u'polic', u'search', u'pizza', u'driver', u'rob']
[u'polit', u'protest', u'injur', u'harar']
[u'pont', u'back', u'star', u'propos']
[u'poultri', u'product', u'quarantin', u'townsvill']
[u'protestor', u'fight', u'live', u'export', u'recommend']
[u'public', u'forum', u'discuss', u'livestock', u'scheme']
[u'qanta', u'investig', u'smoke', u'engin', u'incid']
[u'coalit', u'promis', u'fund', u'increas']
[u'grazier', u'hail', u'drought']
[u'premier', u'wont', u'apologis', u'hanson', u'jail']
[u'rain', u'welcom', u'qlds', u'north']
[u'ratepay', u'concern', u'council', u'review', u'signag']
[u'raymond', u'island', u'koala', u'surpris', u'research']
[u'real', u'estat', u'agent', u'say', u'rat']
[u'redback', u'drop', u'fitzgerald', u'vic', u'clash']
[u'refineri', u'emiss', u'respons', u'health']
[u'refuge', u'fate', u'reli', u'report', u'say', u'immigr']
[u'research', u'show', u'segreg', u'canola', u'cost']
[u'resid', u'divid', u'orang', u'bypass']
[u'richmond', u'mayor', u'reject', u'wild', u'river', u'polici']
[u'riverland', u'theatr', u'group', u'school']
[u'road', u'reconstruct', u'plan', u'approv']
[u'rumsfeld', u'stand', u'case', u'iraq']
[u'ryle', u'comeback', u'doubt']
[u'opposit', u'demand', u'probe', u'trenorden', u'death']
[u'sapphir', u'thiev', u'escap', u'haul']
[u'scientist', u'control', u'rubber', u'vine', u'weed']
[u'scud', u'kick', u'defenc']
[u'second', u'pictur', u'dictionari', u'aim', u'save', u'indigen']
[u'secur', u'doubt', u'athen', u'olymp', u'prepar']
[u'sharon', u'gaza', u'pull', u'vote']
[u'shop', u'centr', u'idea', u'reject', u'parliament']
[u'sight', u'indic', u'fox', u'spread']
[u'nuclear', u'trade', u'bigger', u'think']
[u'souvenir', u'hunter', u'tell', u'disrupt', u'histori']
[u'springborg', u'promis', u'tougher', u'stanc', u'drunken']
[u'sprinter', u'white', u'know', u'fate']
[u'africa', u'flag', u'super', u'chang']
[u'striker', u'replay', u'stallion', u'power', u'split', u'point']
[u'sydney', u'leak', u'caus', u'peak', u'hour', u'chao']
[u'sydney', u'train', u'station', u'evacu', u'leak']
[u'team', u'await', u'davi', u'draw']
[u'tech', u'stock', u'bring', u'market']
[u'teenag', u'charg', u'attempt', u'murder']
[u'telecom', u'profit', u'aust', u'oper']
[u'tenni', u'coach', u'face', u'indec', u'assault', u'charg']
[u'terrorist', u'hunter', u'call', u'studi', u'root', u'caus']
[u'think', u'tank', u'suggest', u'heavili', u'arm', u'polic']
[u'thirteen', u'kill', u'crash', u'india', u'north', u'east']
[u'tiger', u'work', u'blaze', u'warrior']
[u'timet', u'chang', u'light', u'waterfal', u'crash']
[u'fee', u'waiv', u'storm', u'clean']
[u'train', u'track', u'sydney']
[u'triathlon', u'caus', u'traffic', u'delay']
[u'treat', u'smoke', u'inhal', u'cafe']
[u'unit', u'loan', u'dong', u'antwerp']
[u'busi', u'group', u'back', u'aust', u'trade', u'talk']
[u'coastguard', u'stop', u'float', u'immigr']
[u'court', u'uphold', u'marriag', u'decis']
[u'free', u'trade', u'deal', u'close', u'howard']
[u'sailor', u'pack', u'darwin', u'hotel']
[u'vacant', u'market', u'manag', u'posit', u'draw']
[u'verdict', u'delay', u'german', u'trial', u'septemb']
[u'jail', u'lockdown', u'continu']
[u'jail', u'lockdown', u'free', u'theophan']
[u'call', u'superannu', u'rule']
[u'polic', u'caution', u'access', u'file']
[u'coal', u'miner', u'continu', u'strike']
[u'countri', u'tourist', u'bureaus', u'financi', u'woe']
[u'walton', u'stun', u'olymp', u'omiss']
[u'word', u'erupt', u'woman', u'oxygen']
[u'warrior', u'rack', u'huge', u'total', u'beller']
[u'warrnambool', u'hospit', u'convert', u'natur']
[u'water', u'associ', u'back', u'plan', u'irrig', u'loan']
[u'water', u'manag', u'strategi', u'launch', u'alburi']
[u'western', u'bulldog', u'learn', u'experi']
[u'western', u'queensland', u'forget', u'campaign']
[u'west', u'indi', u'beat', u'africa']
[u'whitsunday', u'ratepay', u'reject', u'independ', u'review']
[u'william', u'brush', u'asid', u'local', u'japan']
[u'wind', u'farm', u'construct', u'boost', u'local', u'workforc']
[u'wollongong', u'hawk', u'defeat', u'razorback', u'home', u'turf']
[u'woodward', u'lead', u'lion', u'zealand']
[u'million', u'upgrad', u'albani', u'grain', u'termin']
[u'adelaid', u'boost', u'final', u'hop']
[u'albani', u'bomb', u'discoveri', u'prompt', u'legal', u'action']
[u'albani', u'hospit', u'staff', u'stop', u'work']
[u'alcohol', u'restrict', u'negat', u'reaction']
[u'allan', u'lead', u'california']
[u'set', u'high', u'athen']
[u'arab', u'channel', u'air', u'qaeda', u'tape']
[u'asian', u'nation', u'urg', u'curb', u'bird', u'spread']
[u'warn', u'super', u'scam']
[u'aussi', u'basebal', u'thrash', u'south', u'africa']
[u'australia', u'rout', u'india']
[u'author', u'monitor', u'algal', u'bloom']
[u'author', u'fish', u'death', u'wont', u'close', u'lake']
[u'author', u'enforc', u'hunt', u'rule']
[u'bacteria', u'prompt', u'water', u'warn']
[u'worker', u'protest', u'british', u'govt', u'attack']
[u'beatti', u'hop', u'lure', u'film', u'forum']
[u'beatti', u'bypass', u'surpris']
[u'bombala', u'council', u'hold', u'funer', u'lose']
[u'brack', u'deni', u'report', u'cabinet', u'reshuffl']
[u'braidwood', u'ralli', u'super', u'council']
[u'braveheart', u'welcom', u'appeal', u'reject']
[u'breaker', u'sink', u'pirat']
[u'breaker', u'player', u'face', u'tribun']
[u'brigitt', u'target', u'sydney', u'militari', u'base', u'report']
[u'brother', u'court', u'break', u'enter']
[u'buck', u'stop', u'bush', u'say', u'intellig', u'chief']
[u'bugger', u'ralli', u'protest', u'council', u'merger']
[u'bulldog', u'scrape', u'home']
[u'driver', u'trap', u'north', u'crash']
[u'bush', u'want', u'drought', u'assist', u'simplifi']
[u'candid', u'defend', u'bulli', u'alleg']
[u'canegrow', u'hop', u'high', u'recent', u'rain']
[u'capit', u'crash', u'wnbl', u'semi']
[u'cattl', u'identif', u'scheme', u'difficulti']
[u'celtic', u'face', u'hartson', u'heart', u'breaker']
[u'china', u'bird', u'crisi', u'deepen']
[u'choir', u'accus', u'govt', u'censorship']
[u'chief', u'say', u'iraq', u'wasnt', u'immin', u'threat']
[u'civilian', u'rebel', u'rampag', u'uganda']
[u'clean', u'australia', u'founder', u'join', u'anti', u'log', u'camp']
[u'ax', u'staff', u'asian', u'news']
[u'communiti', u'rais', u'fund', u'miss', u'teen', u'famili']
[u'council', u'approv', u'shop', u'mall', u'renmark']
[u'council', u'flood', u'brothel', u'object']
[u'court', u'hear', u'chao', u'crossbow', u'attack']
[u'court', u'rule', u'favour', u'zimbabw', u'media', u'law']
[u'crush', u'kill', u'chines', u'festiv']
[u'damag', u'quak', u'rock', u'papua']
[u'davenport', u'set', u'dokic', u'date', u'tokyo']
[u'dead', u'link', u'bird', u'studi']
[u'death', u'toll', u'mount', u'moscow', u'subway', u'blast']
[u'defenc', u'chief', u'open', u'ballarat', u'memori']
[u'demand', u'egg', u'increas', u'wake', u'bird']
[u'detect', u'investig', u'major', u'accid', u'adelaid']
[u'dorothi', u'dixer', u'latham', u'agenda']
[u'doubt', u'cast', u'hous', u'site', u'sale']
[u'honour', u'western', u'queensland', u'employe']
[u'open', u'lead', u'melbourn']
[u'emerg', u'worker', u'free', u'crash', u'driver']
[u'english', u'club', u'warn', u'player', u'releas']
[u'everyth', u'peachey', u'shark']
[u'expert', u'air', u'croc', u'manag', u'concern']
[u'farm', u'group', u'unhappi', u'major', u'parti', u'offer']
[u'fear', u'popul', u'head', u'east']
[u'author', u'warn', u'high', u'danger']
[u'jail', u'resum', u'oper', u'work', u'ban', u'lift']
[u'theophan', u'leav', u'jail']
[u'releas', u'hospit', u'tram', u'accid']
[u'fruit', u'shed', u'investig', u'continu']
[u'fund', u'run', u'lockyer', u'catchment', u'centr']
[u'galleri', u'defend', u'right', u'display', u'polit', u'paint']
[u'ghan', u'return', u'adelaid']
[u'goondiwindi', u'look', u'increas', u'tourism']
[u'grain', u'rail', u'closur', u'recommend', u'report']
[u'grant', u'receiv', u'high', u'countri', u'rabbit', u'cull']
[u'great', u'britain', u'hold', u'hockeyroo', u'draw']
[u'green', u'trail', u'melbourn']
[u'group', u'loggerhead', u'green', u'forestri']
[u'hall', u'creek', u'prais', u'liquor', u'law']
[u'health', u'check', u'impact', u'region', u'rail', u'servic']
[u'heat', u'pressur', u'power', u'suppli']
[u'heavyweight', u'champ', u'lennox', u'lewi', u'retir']
[u'hewitt', u'draw', u'aussi', u'level', u'scud', u'towel']
[u'hib', u'end', u'ger', u'leagu', u'defenc']
[u'histor', u'trail', u'celebr', u'year']
[u'home', u'invas', u'trigger', u'polic', u'manhunt']
[u'howard', u'bush', u'tip', u'discuss', u'trade', u'deal']
[u'hubbl', u'reveal', u'imag', u'black', u'galaxi']
[u'hume', u'council', u'join', u'amalgam', u'protest']
[u'hume', u'council', u'join', u'amalgam', u'protest']
[u'indigen', u'group', u'highlight', u'complaint']
[u'indonesian', u'quak', u'toll', u'rise']
[u'infight', u'boost', u'master', u'preselect', u'chanc']
[u'investig', u'begin', u'train', u'derail']
[u'ivanisev', u'hand', u'milan', u'rotterdam', u'wildcard']
[u'jackson', u'grammi', u'list', u'breast', u'spread']
[u'japan', u'central', u'bank', u'see', u'slow', u'recoveri']
[u'japan', u'host', u'environment', u'meet']
[u'kakadu', u'cane', u'toad', u'invas']
[u'kashmir', u'attack', u'leav', u'dead']
[u'minut', u'campaign', u'qlds', u'southern', u'seat']
[u'laverton', u'resid', u'qualiti', u'drink', u'water']
[u'lazio', u'beat', u'milan', u'close', u'final']
[u'give', u'aussi', u'momentum', u'pont']
[u'lobster', u'council', u'chief', u'face', u'confid', u'motion']
[u'local', u'council', u'tell', u'bugger']
[u'locum', u'doctor', u'fire', u'visit', u'porn', u'sit']
[u'log', u'protest', u'cost', u'contractor']
[u'macquari', u'hospit', u'accept', u'rescu', u'packag']
[u'magazin', u'name', u'melbourn', u'world', u'citi']
[u'magistr', u'reserv', u'decis', u'doctor', u'fraud', u'case']
[u'malaysia', u'probe', u'alleg', u'libyan', u'nuclear', u'link']
[u'male', u'suicid', u'rate', u'outstrip', u'femal']
[u'drown', u'murray', u'river']
[u'face', u'child', u'charg', u'face', u'court']
[u'court', u'spear', u'incid']
[u'polic', u'patrol']
[u'sentenc', u'life', u'kill', u'daughter']
[u'share', u'home', u'dead', u'brother', u'month']
[u'marbl', u'bar', u'seal', u'road', u'open', u'year', u'wait']
[u'market', u'fund', u'need', u'invigor', u'kakadu', u'appeal']
[u'melbourn', u'student', u'union', u'forc', u'liquid']
[u'migrat', u'tribun', u'approv', u'zimbabwean', u'student']
[u'milan', u'look', u'cash', u'titl', u'rival', u'meet']
[u'mine', u'compani', u'join', u'forc', u'pilbara']
[u'mine', u'compani', u'pull', u'west', u'coast', u'clean']
[u'mine', u'school', u'propos', u'address', u'skill', u'shortag']
[u'minist', u'concern', u'powerlink', u'environment']
[u'motorist', u'ask', u'slow', u'rain', u'caus']
[u'applaud', u'tugun', u'bypass', u'rout']
[u'launch', u'petit', u'support', u'polic', u'commission']
[u'want', u'refuge', u'work', u'amnesti']
[u'museum', u'search', u'miss', u'sextant']
[u'music', u'industri', u'launch', u'action', u'download']
[u'chief', u'call', u'trade', u'scandal', u'fraud']
[u'bridg', u'yenda']
[u'injuri', u'blow', u'venus']
[u'soccer', u'boss', u'oneil', u'weigh', u'club', u'countri']
[u'monkey', u'busi', u'train', u'chimp']
[u'govt', u'reject', u'call', u'inquiri', u'welfar']
[u'minist', u'defend', u'sydney', u'super', u'council', u'merger']
[u'oppn', u'highlight', u'public', u'hous', u'woe']
[u'singapor', u'develop', u'joint', u'centr', u'darwin']
[u'top', u'accident', u'death', u'rate']
[u'enjoy', u'confront', u'free', u'nation']
[u'odd', u'beatti', u'favour', u'poll']
[u'olymp', u'triathlon', u'line', u'finalis']
[u'osullivan', u'hop', u'sick', u'symptom', u'go']
[u'palestinian', u'polic', u'chief', u'elud', u'assassin', u'bullet']
[u'parliament', u'protest', u'iran', u'end']
[u'pipelin', u'construct', u'head']
[u'tell', u'import', u'mine', u'explor']
[u'urg', u'tell', u'hand']
[u'polic', u'destroy', u'confisc', u'alcohol']
[u'polic', u'investig', u'deton', u'theft']
[u'polic', u'offic', u'name', u'inquiri']
[u'polic', u'reinstat', u'releas', u'royal']
[u'polish', u'kill', u'dive', u'accid']
[u'portland', u'lobbi', u'live', u'export', u'support']
[u'port', u'coal', u'load', u'plan', u'anger', u'oper']
[u'post', u'mortem', u'suspici', u'death']
[u'power', u'iraqi', u'cleric', u'surviv', u'assassin']
[u'pressur', u'mount', u'blair', u'iraq', u'claim']
[u'prosecutor', u'challeng', u'sept', u'acquitt']
[u'protest', u'pakistani', u'nuclear', u'scientist']
[u'public', u'urg', u'help', u'stop', u'iranian', u'deport']
[u'qanta', u'plane', u'return', u'servic', u'smoke']
[u'campaign', u'wind', u'labor', u'tip']
[u'elect', u'campaign', u'wind']
[u'elect', u'countdown', u'begin']
[u'rail', u'chief', u'highlight', u'lesson', u'leak']
[u'real', u'turn', u'heat', u'injuri', u'assail']
[u'refocus', u'kalli', u'make', u'merri']
[u'region', u'polic', u'hardlin', u'speed']
[u'research', u'fear', u'locust', u'plagu']
[u'rey', u'hope', u'wolv']
[u'rey', u'remain', u'upbeat', u'despit', u'unfortun', u'start']
[u'riverina', u'resid', u'warn', u'danger']
[u'riverina', u'protest', u'council', u'merger']
[u'rivkin', u'custodi', u'undergo', u'medic']
[u'rivkin', u'lawyer', u'drop', u'legal', u'challeng']
[u'rivkin', u'hop', u'avoid', u'jail']
[u'roddick', u'lead', u'austria']
[u'rugbi', u'oneil', u'tout', u'soccer', u'post']
[u'farmer', u'urg', u'latham', u'visit', u'region']
[u'govt', u'unmov', u'public', u'servant', u'offer']
[u'scud', u'experi', u'enqvist']
[u'seven', u'remain', u'hospit', u'crash']
[u'dead', u'moscow', u'subway', u'blast']
[u'sharon', u'face', u'polic', u'grill', u'briberi', u'claim']
[u'sheep', u'diseas', u'infect', u'flock']
[u'sheldon', u'mix', u'feel', u'leav', u'polit']
[u'south', u'africa', u'ngam', u'rule', u'tour', u'zealand']
[u'speed', u'blitz', u'net', u'motorist']
[u'student', u'return', u'hail', u'damag', u'high', u'school']
[u'sugar', u'region', u'sweet', u'beatti']
[u'sydney', u'council', u'shock', u'sack']
[u'sydney', u'rail', u'servic', u'track', u'test']
[u'record', u'half', u'year', u'result', u'plus']
[u'taiwan', u'report', u'outbreak', u'bird']
[u'tasmania', u'seek', u'team']
[u'vial', u'disappear', u'campus']
[u'teenag', u'plead', u'guilti', u'escap', u'detent']
[u'telstra', u'deni', u'claim', u'poor', u'mainten']
[u'chines', u'cockl', u'hunter', u'british', u'beach']
[u'test', u'umpir', u'venkat', u'retir']
[u'timor', u'court', u'jail', u'jakarta', u'militiaman']
[u'tour', u'challeng', u'pile', u'pressur', u'armstrong']
[u'trace', u'bird', u'pig']
[u'travel', u'busi', u'expert', u'head', u'north', u'coast']
[u'hospit', u'crash']
[u'union', u'attack', u'grow', u'phone', u'fault']
[u'union', u'critic', u'support', u'staff', u'work', u'issu']
[u'union', u'queri', u'singleton', u'expans']
[u'unit', u'fan', u'turn', u'tabl', u'magnier']
[u'consid', u'pay', u'place']
[u'product', u'growth', u'slow']
[u'vacant', u'hous', u'wait', u'list', u'increas', u'oppn']
[u'victorian', u'court', u'hear', u'slave', u'claim']
[u'vietnam', u'report', u'bird', u'death']
[u'wall', u'ralli', u'figur', u'announc']
[u'record', u'sheep', u'diseas', u'case']
[u'memori', u'open', u'ballarat']
[u'warrior', u'build', u'huge', u'lead', u'tiger', u'declar']
[u'warrior', u'build', u'lead', u'tiger', u'declar']
[u'warrior', u'inning', u'point']
[u'wnbl', u'final', u'seri']
[u'wnbl', u'semi', u'win', u'adelaid', u'dandenong']
[u'woman', u'face', u'slaveri', u'charg', u'appear', u'court']
[u'wood', u'farewel', u'polit', u'near', u'year']
[u'woodward', u'name', u'lion', u'coach', u'offici']
[u'world', u'bank', u'help', u'combat', u'pest', u'weed']
[u'world', u'heavyweight', u'champ', u'lewi', u'confirm', u'retir']
[u'young', u'mother', u'offer', u'lucrat', u'deal', u'return']
[u'youth', u'homeless', u'worsen', u'welfar', u'group']
[u'zaragoza', u'scrambl', u'late', u'draw', u'alav']
[u'worker', u'drown', u'coast']
[u'student', u'miss', u'offer']
[u'percent', u'briton', u'think', u'blair', u'poll']
[u'educ', u'famili', u'dept', u'chief', u'stand']
[u'afghanistan', u'forget', u'nato']
[u'afghan', u'tribal', u'leader', u'decid', u'warlord', u'fate']
[u'alic', u'claim', u'cheapest', u'groceri']
[u'aussi', u'basebal', u'track', u'athen']
[u'aussi', u'prim', u'seri', u'pont']
[u'australia', u'look', u'falter', u'philippoussi']
[u'australia', u'youngest', u'feder', u'magistr', u'appoint']
[u'australia', u'urg', u'crack', u'drug', u'compani']
[u'babi', u'recov', u'second', u'head', u'remov']
[u'beatti', u'claim', u'elect']
[u'beatti', u'claim', u'victori']
[u'beatti', u'hop', u'labor', u'success', u'contagi']
[u'beatti', u'look', u'retain', u'power']
[u'bell', u'shock', u'surfer', u'defeat']
[u'bird', u'death', u'toll', u'hit', u'infect', u'fear']
[u'bjorkman', u'stand', u'scud']
[u'drive', u'shoot']
[u'brigitt', u'accus', u'deni', u'attack', u'plan']
[u'bush', u'name', u'panel']
[u'cameroon', u'nigeria', u'renew', u'rivalri', u'african']
[u'cargo', u'ship', u'sink', u'miss']
[u'carrol', u'doubt', u'green', u'senat', u'seat']
[u'cave', u'paint', u'shed', u'light', u'south', u'africa']
[u'child', u'kill', u'isra', u'strike', u'gaza']
[u'china', u'confirm', u'bird', u'outbreak']
[u'clerk', u'sue', u'jackson', u'breast', u'stunt']
[u'court', u'endors', u'zimbabw', u'media', u'law']
[u'cunningham', u'thrill', u'retain', u'gladston']
[u'level', u'head', u'doubl']
[u'davenport', u'destroy', u'dokic', u'rubin', u'limp']
[u'death', u'highlight', u'crisi', u'accommod', u'problem', u'atsic']
[u'democrat', u'disappoint', u'keppel', u'show']
[u'diver', u'plane', u'crash']
[u'look', u'consolid', u'round']
[u'open', u'shoot', u'lead']
[u'estonia', u'martin', u'stay', u'sweden']
[u'feder', u'boost', u'swiss', u'russian', u'safin', u'down']
[u'blood', u'australia']
[u'remand', u'patagonian', u'toothfish', u'charg']
[u'flynn', u'refus', u'admit', u'defeat', u'lockyer']
[u'forestri', u'industri', u'tell', u'clean']
[u'minist', u'rise', u'lose', u'currumbin']
[u'polic', u'chief', u'speak', u'gang', u'report']
[u'shire', u'employe', u'guilti', u'corrupt']
[u'free', u'trade', u'deal', u'balanc']
[u'friendship', u'sustain', u'swimmer', u'histor']
[u'gephardt', u'back', u'kerri', u'race']
[u'german', u'chancellor', u'quit', u'parti', u'post']
[u'glass', u'pane', u'hit', u'galleri', u'worker']
[u'good', u'news', u'hawthorn', u'knee', u'injuri']
[u'gunmen', u'haitian', u'citi']
[u'hanoi', u'cull', u'eas', u'bird', u'crisi']
[u'hensbi', u'surg', u'content', u'california']
[u'hid', u'keep', u'option', u'open', u'growth', u'fell']
[u'hodg', u'stay', u'rooster', u'manag']
[u'hodg', u'return', u'rooster', u'manag']
[u'india', u'prepar', u'earli', u'elect']
[u'indonesia', u'suffer', u'major', u'earthquak']
[u'interview', u'weapon', u'expert', u'kelli', u'broadcast']
[u'iran', u'council', u'clear', u'candid']
[u'iranian', u'presid', u'protest', u'elect', u'ban']
[u'jewish', u'settler', u'protest', u'reloc', u'plan']
[u'katter', u'stir', u'emot', u'sugar', u'seat']
[u'kiwi', u'smash', u'kenyan', u'seven']
[u'kiwi', u'thump', u'fiji', u'seven', u'tabl', u'down']
[u'labor', u'reduc', u'major']
[u'labor', u'look', u'lose', u'seat']
[u'latham', u'promis', u'continu', u'public', u'forum']
[u'latham', u'reject', u'issu']
[u'leed', u'give', u'stay', u'execut']
[u'long', u'make', u'nation', u'histori', u'tableland']
[u'lewi', u'credenti', u'confirm', u'defeat', u'tyson']
[u'lewi', u'face', u'fight', u'court']
[u'liber', u'leader', u'confid', u'better', u'show']
[u'major', u'parti', u'disput', u'feder', u'impact', u'poll']
[u'mardi', u'gras', u'kick', u'sydney']
[u'charg', u'restaur', u'firebomb', u'attack']
[u'hold', u'custodi', u'cannabi', u'haul']
[u'missil', u'strike', u'injur', u'islam', u'jihad', u'member']
[u'molloy', u'retain', u'qlds', u'margin', u'seat']
[u'moment', u'lib', u'claim', u'surfer', u'paradis']
[u'poki', u'welcom', u'bank', u'donat', u'polici']
[u'consid', u'forc', u'merger']
[u'drought', u'affect', u'area', u'shrink']
[u'polic', u'seiz', u'massiv', u'cannabi', u'haul']
[u'parti', u'decid', u'feder', u'elect']
[u'taxi', u'driver', u'welcom', u'militari', u'stay']
[u'nucifora', u'upbeat', u'despit', u'brumbi', u'trial', u'loss']
[u'pair', u'rescu', u'boat', u'overturn']
[u'pakistan', u'promot', u'test', u'panel', u'reshuffl']
[u'pani', u'releas', u'hospit']
[u'pentagon', u'announc', u'assault', u'investig']
[u'philosph', u'ranieri', u'prepar', u'chelsea', u'chop']
[u'pizzonia', u'quickest', u'test']
[u'plane', u'crash', u'lake']
[u'polic', u'fear', u'kill', u'plane', u'crash']
[u'polic', u'identifi', u'plane', u'crash', u'victim']
[u'poll', u'show', u'labor', u'lose', u'seat']
[u'putin', u'blame', u'chechen', u'bomb']
[u'green', u'grow', u'voter', u'support']
[u'queensland', u'coalit', u'remain', u'strong', u'quinn']
[u'queensland', u'poll']
[u'queensland', u'head', u'poll']
[u'raikkonen', u'champion', u'hakkinen']
[u'ranieri', u'admit', u'line']
[u'reynold', u'surviv', u'townsvill', u'swing', u'lib']
[u'rivkin', u'stay', u'long', u'jail']
[u'roddick', u'smash', u'serv', u'record', u'lead']
[u'rowel', u'boost', u'margin', u'hinchinbrook']
[u'rudd', u'slam', u'howard', u'weapon', u'intellig']
[u'russia', u'underground', u'blast', u'probe', u'continu']
[u'scott', u'bet', u'good', u'feel', u'charter', u'tower']
[u'serena', u'mauresmo', u'pari', u'indoor']
[u'seven', u'protest', u'arrest', u'outsid', u'nato', u'meet']
[u'shabbir', u'head', u'australia', u'bowl', u'action']
[u'shiit', u'leader', u'deni', u'assassin']
[u'shine', u'head', u'second', u'term']
[u'skydiv', u'fall', u'format', u'world', u'record']
[u'slow', u'start', u'poll']
[u'solid', u'hobb', u'warrego']
[u'spirit', u'pierc', u'mar', u'rock']
[u'springborg', u'conced', u'defeat']
[u'springborg', u'hail', u'critic', u'mass', u'despit', u'defeat']
[u'africa', u'mark', u'year', u'apartheid']
[u'surgeri', u'babi', u'rare', u'defect']
[u'sweden', u'grab', u'davi', u'lead']
[u'swede', u'edg', u'thriller']
[u'sydney', u'resid', u'warn', u'water', u'usag']
[u'question', u'perth', u'restaur', u'attack']
[u'tiger', u'hang', u'beller', u'draw']
[u'tiger', u'outright']
[u'time', u'run', u'free', u'trade', u'talk']
[u'total']
[u'tugun', u'bypass', u'play', u'role', u'stuckey', u'oust', u'rise']
[u'turnbul', u'claim', u'sartor', u'threat']
[u'kill', u'flip']
[u'polic', u'investig', u'morecamb', u'drown']
[u'dismiss', u'bird', u'pig', u'report']
[u'dollar', u'tumbl', u'soft', u'job', u'data']
[u'sailor', u'face', u'assault', u'claim']
[u'vitali', u'klitschko', u'sadden', u'lewi', u'retir']
[u'vote', u'queensland']
[u'farmer', u'voic', u'concern', u'drought', u'polici']
[u'warrego', u'incumb', u'confid', u'increas', u'vote']
[u'youngest', u'player', u'select', u'curti']
[u'wilkinson', u'rule', u'nation']
[u'woman', u'chastiti', u'belt', u'set', u'airport', u'alarm']
[u'zimbabwean', u'student', u'fear', u'return']
[u'cop', u'brazil', u'finger', u'fine']
[u'investig', u'public', u'hous', u'issu']
[u'afghanistan', u'host', u'drug', u'confer']
[u'aftershock', u'rock', u'indonesian', u'island', u'death', u'toll']
[u'lose', u'seat']
[u'anzac', u'instal', u'lake', u'burley', u'griffin']
[u'asian', u'nation', u'agre', u'free', u'trade', u'deal']
[u'asio', u'catch', u'nap', u'brigitt', u'warn', u'labor']
[u'asio', u'brigitt', u'request', u'report']
[u'aussi', u'basebal', u'book', u'ticket', u'athen']
[u'aussi', u'lancast', u'claim', u'langkawi', u'stage']
[u'babi', u'girl', u'die', u'head', u'surgeri']
[u'bangladesh', u'throw', u'asian', u'doubt']
[u'beatti', u'coast', u'term']
[u'beatti', u'see', u'latham', u'boost', u'term']
[u'busi', u'undermin', u'women', u'worker', u'report']
[u'johnson', u'state', u'biggest', u'elector']
[u'blatter', u'see', u'brazil', u'stag', u'world']
[u'boldon', u'focus', u'athen']
[u'brack', u'reveal', u'hook', u'memori', u'trophi', u'detail']
[u'brazilian', u'real', u'spain']
[u'britain', u'labour', u'parti', u'sever', u'histor', u'union', u'link']
[u'bronz', u'super', u'mario', u'return']
[u'builder', u'accredit', u'see', u'posit', u'sign']
[u'burnett', u'chang', u'hand', u'stay']
[u'bushrang', u'start', u'chase', u'miller', u'lift', u'redback']
[u'caltex', u'apologis', u'abras', u'materi', u'releas']
[u'canberra', u'airport', u'extens', u'push', u'ahead']
[u'cardozo', u'keep', u'olymp', u'touch']
[u'carr', u'confid', u'minim', u'damag', u'council', u'stoush']
[u'announc', u'total', u'ban']
[u'davenport', u'storm', u'fourth', u'pacif', u'titl']
[u'diver', u'sonar', u'crash', u'victim', u'search']
[u'dump', u'decid', u'run']
[u'elli', u'hand', u'netbal', u'captainci']
[u'surviv', u'scott', u'challeng', u'claim', u'heineken']
[u'surviv', u'scott', u'challeng', u'heineken']
[u'emvagina', u'monologuesem', u'ban', u'china']
[u'fiji', u'singh', u'share', u'lead', u'round']
[u'treat', u'nightclub', u'drug', u'overdos']
[u'fear', u'forc', u'kill', u'chicken']
[u'call', u'exchang', u'rate', u'stabil']
[u'galleri', u'await', u'glass', u'accid', u'report']
[u'suppli', u'shortag']
[u'germani', u'reluct', u'agre', u'nato', u'role', u'iraq']
[u'ghan', u'clip', u'railway', u'cross']
[u'glori', u'open', u'buffer']
[u'grind', u'staff', u'disput', u'delay', u'qanta', u'flight']
[u'haitian', u'polic', u'rebel', u'citi']
[u'help', u'student', u'dont', u'hold', u'educ']
[u'hoolihan', u'win', u'jewel', u'crown']
[u'illeg', u'immigr', u'face', u'deport', u'sydney']
[u'impress', u'away', u'win', u'lecc', u'bologna']
[u'india', u'crush', u'aussi', u'rampag']
[u'india', u'crush', u'aussi', u'rampag']
[u'indonesian', u'troop', u'kill', u'rebel', u'aceh']
[u'iraqi', u'claim', u'dramatis', u'blix']
[u'islam', u'jihad', u'vow', u'gaza', u'strike', u'reveng']
[u'japanes', u'soldier', u'arriv', u'iraq']
[u'juvenil', u'detaine', u'treat']
[u'keppel', u'seat', u'chang', u'poll']
[u'kerri', u'take', u'washington', u'michigan']
[u'environment', u'test', u'global', u'communiti']
[u'latham', u'consid', u'chang', u'benefit']
[u'latham', u'refus', u'specul', u'tax']
[u'leed', u'rescu', u'talk', u'ugandan', u'tycoon', u'report']
[u'liber', u'bass', u'candid']
[u'loeb', u'good', u'sweden']
[u'mackay', u'seat', u'draw', u'largest', u'swing']
[u'major', u'aftershock', u'rattl', u'indonesian', u'town']
[u'mar', u'rover', u'drill', u'rock']
[u'return', u'western']
[u'nat', u'strong', u'count']
[u'evid', u'human', u'bird', u'strain']
[u'norwich', u'open', u'point', u'lead', u'forest', u'sack', u'manag']
[u'tighten', u'secur', u'law']
[u'pae', u'fightback', u'secur', u'india', u'victori']
[u'palestinian', u'milit', u'shoot', u'dead', u'isra', u'gaza']
[u'pentagon', u'chang', u'rule', u'guantanamo', u'lawyer']
[u'petrov', u'inspir', u'celtic', u'heart']
[u'plane', u'ditch', u'north', u'coast']
[u'polic', u'arrest', u'drug', u'overdos']
[u'polic', u'expect', u'difficult', u'plane', u'crash', u'salvag']
[u'polic', u'remov', u'satir', u'howard', u'statu']
[u'polic', u'search', u'miss', u'suspect', u'drug', u'dealer']
[u'polic', u'target', u'speed', u'truck']
[u'redback', u'bat', u'line', u'fail']
[u'red', u'huxley', u'break', u'trial', u'loss']
[u'rivkin', u'releas', u'sydney', u'jail']
[u'robber', u'stay', u'away', u'jigsaw', u'puzzl', u'hous']
[u'rise', u'govt', u'casualti', u'gold', u'coast']
[u'rucker', u'croc', u'bite']
[u'russian', u'elect', u'candid', u'go', u'miss']
[u'saudi', u'contract', u'diseas']
[u'scud', u'shatter', u'aussi', u'crash', u'davi']
[u'secreci', u'surround', u'rusedski', u'drug', u'hear']
[u'shiit', u'mass', u'grave', u'investig', u'iraq']
[u'spain', u'davi', u'troubl']
[u'lankan', u'parliament', u'dissolv']
[u'status', u'maintain', u'north', u'seat']
[u'symond', u'hayden', u'power', u'record', u'total']
[u'real', u'estat', u'agent', u'charg', u'ban', u'fee']
[u'time', u'royal', u'melbourn', u'teeth']
[u'trade', u'talk', u'overtim']
[u'tunisia', u'seneg', u'lower', u'tone']
[u'turkish', u'surviv', u'day', u'collaps']
[u'sunshin', u'coast', u'seat', u'wire']
[u'polic', u'launch', u'raid', u'drown']
[u'garden', u'send', u'messag', u'montgomeri']
[u'instal', u'computeris', u'pattern', u'maker']
[u'union', u'slam', u'insult', u'offer']
[u'unit', u'receiv', u'ruud', u'awaken']
[u'team', u'arriv', u'iraq', u'annan']
[u'team', u'land', u'iraq']
[u'democrat', u'state']
[u'sailor', u'charg', u'rape', u'darwin']
[u'polic', u'fear', u'miss', u'girl']
[u'vieira', u'stay', u'arsenal']
[u'expedit', u'search']
[u'waqar', u'latif', u'leav', u'pakistan', u'train', u'squad']
[u'acoss', u'want', u'babi', u'bonus', u'scrap']
[u'busi', u'educ', u'manslaught']
[u'doctor', u'boost', u'bega', u'hospit']
[u'afghanistan', u'plea', u'opium']
[u'boss', u'urg', u'retain', u'local', u'sport', u'content']
[u'agforc', u'promis', u'landhold', u'backlash', u'tree']
[u'alert', u'sound', u'small', u'plane', u'fli', u'indian']
[u'alic', u'council', u'consid', u'public', u'toilet', u'need']
[u'perform', u'strong', u'gold', u'coast']
[u'wont', u'conced', u'charter', u'tower', u'burdekin']
[u'alston', u'senat', u'stint', u'end']
[u'anonym', u'letter', u'help', u'reveal', u'fraud', u'court']
[u'anti', u'aristid', u'revolt', u'spread', u'haiti']
[u'aquat', u'centr', u'revamp', u'make', u'splash']
[u'aussi', u'hold', u'game', u'edg']
[u'aussi', u'hold', u'edg', u'india']
[u'australian', u'tourist', u'stab', u'cairo']
[u'australia', u'strike', u'free', u'trade', u'deal']
[u'ax', u'england', u'squad']
[u'bali', u'bomber', u'ghoni', u'jail', u'life']
[u'band', u'remot', u'head', u'major', u'festiv']
[u'beatti', u'blame', u'canberra', u'lose', u'sugar', u'seat']
[u'beatti', u'look', u'cabinet']
[u'bell', u'exit', u'polit', u'weekend', u'loss']
[u'bermagui', u'look', u'rural', u'transact', u'centr']
[u'bigger', u'fleet', u'expect', u'sydney', u'hobart', u'rule']
[u'bird', u'mortal', u'rate', u'doubl', u'doctor']
[u'blair', u'offer', u'meet', u'weapon', u'expert', u'widow', u'report']
[u'blix', u'hit', u'intellig']
[u'bomb', u'kill', u'soldier', u'iraq']
[u'breaker', u'skipper', u'cameron', u'cop', u'strike', u'fine']
[u'brigitt', u'reveal', u'bomb', u'plan']
[u'bush', u'church', u'close', u'year']
[u'bushrang', u'chase', u'inning', u'point']
[u'busi', u'chamber', u'look', u'free', u'trade', u'deal', u'long']
[u'foster', u'parent', u'plan']
[u'cannonbal', u'strike', u'home', u'real']
[u'carr', u'rail', u'delay']
[u'china', u'confirm', u'bird', u'outbreak']
[u'chines', u'acrobat', u'defect', u'canada']
[u'claimant', u'bennett', u'estat', u'receiv', u'setback']
[u'cleari', u'rock', u'bushrang']
[u'condit', u'improv', u'drought']
[u'confer', u'probe', u'way', u'safeguard', u'biodivers']
[u'congo', u'presid', u'confid', u'peac']
[u'costello', u'watch', u'latham', u'spend', u'promis']
[u'council', u'merger', u'protest', u'seek', u'differ', u'region']
[u'crash', u'end', u'cipo', u'sprint', u'hop']
[u'croc', u'look', u'consolid', u'win', u'way']
[u'cunningham', u'focus', u'famili', u'health']
[u'darwin', u'weather', u'tip', u'continu']
[u'shooter', u'diamond']
[u'diamond', u'throw', u'olymp', u'lifelin']
[u'ding', u'dong', u'contest', u'histor', u'bell']
[u'disput', u'see', u'forestri', u'worker', u'tell', u'lift', u'ban']
[u'diver', u'begin', u'plane', u'crash', u'recoveri']
[u'doctor', u'continu', u'receiv', u'medicar', u'rebat']
[u'driver', u'die', u'tri', u'catch', u'hors']
[u'drought', u'wan', u'grip', u'near', u'half']
[u'condit', u'seek', u'fight', u'locust']
[u'eftpo', u'spend', u'figur', u'moder', u'growth']
[u'elliott', u'power', u'vic', u'home', u'final']
[u'euthanasia', u'advoc', u'call', u'latham', u'continu']
[u'everton', u'investig', u'alleg', u'abus', u'unit']
[u'explos', u'injur', u'ukrain']
[u'farmer', u'group', u'happi', u'free', u'trade', u'deal']
[u'farm', u'group', u'oppos', u'push', u'minimum', u'wage', u'boost']
[u'feder', u'committe', u'scrutinis', u'age', u'care']
[u'fewer', u'life', u'land']
[u'film', u'industri', u'await', u'fine', u'print', u'trade', u'deal']
[u'author', u'upset', u'ignor', u'warn']
[u'firefight', u'throw', u'resourc', u'blaze']
[u'firefight', u'contain', u'gippsland', u'blaze']
[u'defenc', u'chief', u'appeal', u'sedit', u'charg']
[u'forum', u'consid', u'school', u'leav']
[u'foster', u'chief', u'call', u'shout']
[u'await', u'sentenc', u'kalgoorli', u'gang', u'rape']
[u'charg', u'cannabi', u'haul']
[u'free', u'trade', u'deal', u'see', u'boost', u'region']
[u'freight', u'industri', u'rep', u'gather', u'darwin', u'confer']
[u'galleri', u'order', u'probe', u'shatter', u'glass', u'incid']
[u'govt', u'fund', u'extra', u'age', u'care', u'place', u'tasmania']
[u'govt', u'give', u'age', u'care', u'boost']
[u'grammi', u'jackson', u'shadow']
[u'grapegrow', u'angri', u'plant', u'incent']
[u'grapegrow', u'await', u'better', u'price', u'offer']
[u'greater', u'murray', u'health', u'servic', u'face', u'financi', u'woe']
[u'group', u'call', u'independ', u'inquiri', u'unsw']
[u'haddin', u'groom', u'gilli', u'hohn']
[u'haddin', u'kasper', u'lanka']
[u'haddin', u'kasprowicz', u'lanka']
[u'harbi', u'william', u'diamond']
[u'hart', u'forest', u'ditch', u'manag']
[u'hasselbaink', u'keep', u'chelsea', u'titl', u'track']
[u'hockeyroo', u'beat', u'brit', u'bronz']
[u'hodg', u'say', u'sorri', u'disappear']
[u'hospit', u'worker', u'consid', u'industri', u'unrest']
[u'hundr', u'goat', u'highway', u'truck', u'crash']
[u'india', u'launch', u'sea']
[u'indian', u'board', u'secur', u'team', u'head', u'pakistan']
[u'inquest', u'probe', u'case', u'miss', u'indigen']
[u'isra', u'court', u'hear', u'secur', u'barrier', u'challeng']
[u'israel', u'chang', u'barrier', u'path']
[u'israel', u'shorten', u'west', u'bank', u'barrier', u'report']
[u'itali', u'ban', u'car']
[u'jackson', u'oscar', u'path', u'award']
[u'jail', u'medic', u'decid', u'rivkin', u'stay']
[u'johnni', u'cash', u'wife', u'posthum', u'grammi']
[u'johnson', u'credit', u'seat', u'past', u'perform']
[u'kerri', u'keep', u'heat', u'bush', u'main']
[u'kewel', u'pledg', u'allegi', u'socceroo']
[u'kiwi', u'rugbi', u'exodus', u'continu']
[u'knuth', u'upbeat', u'charter', u'tower', u'chanc']
[u'kyli', u'score', u'grammi']
[u'labor', u'block', u'trade', u'deal']
[u'labor', u'blame', u'ambul', u'levi', u'support']
[u'lib', u'endors', u'southern', u'candid']
[u'lightn', u'spark', u'fire', u'victoria', u'bushland']
[u'local', u'govt', u'meet', u'daylesford']
[u'lomu', u'need', u'transplant', u'avoid', u'wheelchair']
[u'mackay', u'leagu', u'coach', u'squad']
[u'major', u'stock', u'lift']
[u'chang', u'plea', u'guilti', u'murder', u'trial']
[u'man', u'attack', u'elder', u'woman', u'attract', u'jail', u'term']
[u'seek', u'compens', u'murder', u'charg', u'drop']
[u'market', u'await', u'reserv', u'statement']
[u'mcgradi', u'romp', u'home']
[u'miss', u'sampl', u'close', u'campus']
[u'sydney', u'train', u'cancel', u'ahead']
[u'morocco', u'beat', u'algeria', u'amid', u'crowd', u'chao']
[u'mous', u'onaut', u'mar', u'mission']
[u'murrurundi', u'pair', u'case', u'council', u'merger']
[u'nadal', u'cap', u'spain', u'comeback', u'czech']
[u'nasa', u'engin', u'disput', u'decis', u'hubbl']
[u'nation', u'galleri', u'director', u'step']
[u'nat', u'lose', u'central', u'seat']
[u'nat', u'messeng', u'win', u'bundaberg']
[u'nat', u'shore', u'support', u'warrego']
[u'newspap', u'recoveri']
[u'back', u'free', u'trade', u'deal']
[u'nigeria', u'dethron', u'cameroon']
[u'govt', u'urg', u'creat', u'man', u'shelf', u'marin', u'park']
[u'nat', u'discuss', u'parti', u'elect', u'show']
[u'nation', u'rosa', u'long', u'boost', u'support', u'base']
[u'oppn', u'rais', u'free', u'trade', u'broadcast', u'concern']
[u'opposit', u'plan', u'limit', u'judg', u'super', u'benefit']
[u'pathan', u'rap', u'martyn', u'send']
[u'perth', u'school', u'defend', u'cage', u'child']
[u'plan', u'afoot', u'boost', u'cultur', u'tourism', u'experi']
[u'defend', u'imperfect', u'trade', u'deal']
[u'sell', u'free', u'trade', u'deal']
[u'polic', u'appeal', u'help', u'unsolv', u'murder', u'case']
[u'polic', u'happi', u'alcohol', u'restrict', u'impact']
[u'policeman', u'tell', u'drug', u'probe', u'mat']
[u'polic', u'probe', u'continu', u'drug', u'seiz']
[u'polic', u'releas', u'name', u'plane', u'crash', u'victim']
[u'polic', u'sieg', u'griffith', u'violenc']
[u'polic', u'drown', u'victim']
[u'princ', u'charl', u'visit', u'troop', u'basra']
[u'probe', u'begin', u'derwent', u'river', u'accid']
[u'protea', u'look', u'forward', u'kiwi', u'pitch']
[u'public', u'health', u'complaint', u'handl']
[u'public', u'urg', u'avoid', u'algal', u'bloom']
[u'boat', u'make', u'wave', u'water', u'race']
[u'serial', u'killer', u'appeal', u'murder', u'convict']
[u'quri', u'plan', u'sharon', u'meet', u'month']
[u'rail', u'group', u'probe', u'ghan', u'incid']
[u'ranger', u'face', u'celtic', u'kilmarnock']
[u'hint', u'rat', u'rise']
[u'record', u'opium', u'output', u'forecast', u'afghanistan']
[u'remot', u'communiti', u'better', u'water']
[u'rock', u'lobster', u'number', u'review']
[u'roddick', u'agassi', u'head', u'jose', u'field']
[u'roma', u'rampag', u'leav', u'juve', u'trail', u'milan']
[u'russia', u'shock', u'davi', u'exit', u'franc', u'spain']
[u'sack', u'mayor', u'meet', u'minist']
[u'oppn', u'highlight', u'aquacultur', u'regul']
[u'sartor', u'refus', u'retract', u'brogden', u'slur']
[u'secur', u'guard', u'fin', u'imperson', u'polic']
[u'shack', u'owner', u'convers', u'scheme', u'cost']
[u'sharon', u'treat', u'bladder', u'stone']
[u'shop', u'centr', u'develop', u'continu']
[u'singh', u'coast', u'pebbl', u'beach', u'victori']
[u'edward', u'braddon', u'memori', u'offici', u'open']
[u'site', u'select', u'process', u'continu', u'toxic', u'dump']
[u'vouch', u'rivkin', u'poor', u'health']
[u'south', u'aust', u'farmer', u'welcom', u'free', u'trade', u'deal']
[u'spill', u'clean', u'continu', u'milford', u'sound']
[u'stage', u'warn', u'comeback']
[u'star', u'chines', u'lifter', u'lose', u'medal', u'dope', u'result']
[u'strong', u'entri', u'ballarat', u'gift']
[u'sugar', u'blast', u'free', u'trade', u'deal']
[u'sydney', u'peak', u'hour', u'train', u'cancel']
[u'sydney', u'train', u'delay', u'continu']
[u'sydney', u'warn', u'threat']
[u'farm', u'group', u'welcom', u'small', u'gain', u'trade']
[u'tasmanian', u'await', u'sentenc', u'sydney', u'rape', u'murder']
[u'telstra', u'deni', u'senat', u'broadband', u'claim']
[u'kill', u'baghdad', u'bomb']
[u'tight', u'secur', u'keep', u'hillari', u'qeii']
[u'trade', u'agreement', u'good', u'deal', u'anderson']
[u'tribut', u'flow', u'promis', u'launceston', u'cyclist']
[u'turkish', u'rescu', u'rubbl']
[u'turkish', u'woman', u'rescu', u'week', u'build']
[u'horror', u'road', u'crash']
[u'sunshin', u'coast', u'seat', u'hang', u'balanc']
[u'week', u'allot', u'murder', u'trial']
[u'unenvi', u'drink', u'drive', u'honour', u'tweed', u'byron']
[u'union', u'map', u'geospati', u'centr', u'site']
[u'plan', u'boost', u'tropic', u'scienc', u'research']
[u'team', u'meet', u'iraq', u'council']
[u'sailor', u'leav', u'darwin']
[u'dairi', u'industri', u'await', u'free', u'trade', u'detail']
[u'governor', u'term', u'extend', u'year']
[u'face', u'adelaid', u'court', u'drug', u'charg']
[u'vic', u'bat', u'warn', u'comeback', u'match']
[u'victoria', u'tighten', u'secur', u'industri', u'regul']
[u'vietnam', u'add', u'bird', u'toll']
[u'farmer', u'offer', u'mix', u'reaction', u'trade', u'deal']
[u'wife', u'killer', u'appeal', u'convict']
[u'worker', u'club', u'consid', u'amidst', u'uncertain', u'futur']
[u'zoellick', u'say', u'congress', u'pass', u'trade', u'pact']
[u'govt', u'back', u'power', u'decid', u'rehab']
[u'act', u'atsic', u'boss', u'local', u'govern']
[u'allow', u'adopt']
[u'christma', u'sale', u'help', u'bolster', u'profit']
[u'safeti', u'investig', u'probe', u'bribi', u'island', u'crash']
[u'alic', u'spring', u'footbal', u'club', u'futur', u'doubt']
[u'ord', u'inch', u'quiet']
[u'eye', u'sugar', u'seat']
[u'qaeda', u'plot', u'iraq', u'civil']
[u'amalgam', u'threat', u'disrupt', u'council', u'elect']
[u'asian', u'bird', u'offer', u'trade', u'boost']
[u'asian', u'prioriti', u'wrong', u'bird']
[u'asylum', u'seeker', u'face', u'expuls', u'netherland']
[u'dead', u'haiti', u'rebellion']
[u'aussi', u'sullivan', u'claim', u'langkawi', u'fourth', u'stage']
[u'australia', u'reap', u'golden', u'wheat', u'harvest']
[u'backbench', u'fear', u'sugar', u'backlash']
[u'batti', u'tell', u'leed', u'career']
[u'beef', u'processor', u'express', u'disappoint']
[u'billiton', u'fin', u'crane', u'driver', u'death']
[u'bichel', u'court', u'worcestershir']
[u'easi', u'miss', u'fourth']
[u'bird', u'boat', u'conflict', u'lead']
[u'blair', u'plan', u'landmark', u'visit', u'libya']
[u'blair', u'prepar', u'meet', u'libyan', u'foreign', u'minist']
[u'blaze', u'rip', u'rubicon', u'state', u'forest']
[u'blood', u'parasit', u'caus', u'mysteri', u'anim', u'death']
[u'bodi', u'recov', u'lake', u'eildon']
[u'bomb', u'hoaxer', u'send', u'jail']
[u'boral', u'profit', u'hous', u'market', u'tip', u'soften']
[u'bosnian', u'serb', u'probe', u'crime', u'link']
[u'brazil', u'prepar', u'carniv', u'condom', u'campaign']
[u'burk', u'rule', u'waratah', u'trial', u'match']
[u'busi', u'survey', u'highlight', u'manag', u'retir', u'work']
[u'tasmania', u'crime', u'scheme']
[u'campaign', u'highlight', u'internet', u'scam']
[u'bomb', u'kill', u'near', u'baghdad']
[u'chariti', u'cash', u'reform']
[u'chopper', u'crash', u'put', u'hospit']
[u'cityrail', u'examin', u'legal', u'option', u'overtim']
[u'council', u'dismiss', u'possibl', u'embattl', u'shire']
[u'countri', u'women', u'good', u'onlin']
[u'court', u'decid', u'request', u'suspend', u'atsic']
[u'real', u'target', u'place', u'final', u'loom']
[u'cycl', u'boss', u'shadow', u'squad']
[u'davi', u'relish', u'challeng', u'men', u'event']
[u'davi', u'snap', u'shark', u'critic']
[u'democrat', u'senat', u'fight']
[u'demon', u'sack', u'elli']
[u'depart', u'deni', u'council', u'turmoil']
[u'diana', u'ross', u'jail', u'time', u'drink', u'drive']
[u'disast', u'storytel', u'help', u'risk', u'manag', u'studi']
[u'drought', u'relief', u'chang', u'expect']
[u'drown', u'victim', u'releas']
[u'election', u'begin', u'greec']
[u'endocrinologist', u'leav', u'promot']
[u'exec', u'expect', u'strong', u'month']
[u'fatal', u'increas', u'natur', u'resourc', u'sector']
[u'dead', u'bomb', u'target', u'iraqi', u'polic']
[u'figur', u'agribusi', u'improv', u'drought']
[u'threaten', u'roseworthi', u'colleg']
[u'fishermen', u'kingfish', u'escap']
[u'food', u'korea', u'dri']
[u'forest', u'appoint', u'kinnear']
[u'fourth', u'person', u'charg', u'perth', u'firebomb']
[u'tip', u'bring', u'modest', u'gain', u'horticultur']
[u'gambil', u'oust', u'ferreira', u'jose']
[u'ganguli', u'want', u'safeti', u'assur', u'pakistan', u'tour']
[u'pipelin', u'owner', u'wash', u'hand', u'sale', u'woe']
[u'global', u'warm', u'threaten', u'lobster', u'farm', u'research']
[u'govern', u'urg', u'indigen', u'problem']
[u'govt', u'reject', u'claim', u'withhold', u'detail']
[u'grafton', u'compani', u'fin', u'environment', u'breach']
[u'grayson', u'start', u'half', u'england']
[u'greec', u'test', u'olymp', u'secur']
[u'grower', u'accept', u'increas', u'grape', u'price']
[u'haiti', u'rebellion', u'intensifi', u'polic']
[u'kill', u'video', u'star']
[u'health', u'servic', u'defend', u'cool', u'purchas']
[u'heart', u'play', u'rugbi', u'murrayfield']
[u'high', u'court', u'examin', u'girl', u'case', u'citizenship']
[u'high', u'court', u'hear', u'case', u'babi', u'citizenship']
[u'high', u'temperatur', u'threaten', u'clare', u'valley', u'vintag']
[u'hobart', u'convent', u'consid', u'life', u'mar']
[u'increas', u'water', u'alloc', u'england']
[u'india', u'replac', u'south', u'africa', u'cricket', u'choker']
[u'iranian', u'plane', u'crash']
[u'iraq', u'blast', u'kill', u'soldier']
[u'irish', u'govt', u'seek', u'respons', u'loot', u'nazi', u'claim']
[u'isra', u'barrier', u'hear', u'underway']
[u'isra', u'court', u'mull', u'barrier', u'rule']
[u'italian', u'seed', u'work', u'hard', u'pari']
[u'kalgoorli', u'hospit', u'avert', u'industri', u'action']
[u'kazaa', u'owner', u'attack', u'piraci', u'case']
[u'kerri', u'aim', u'southern', u'knockout']
[u'labor', u'gear', u'preselect', u'fight']
[u'labor', u'label', u'anti', u'american', u'trade']
[u'latham', u'give', u'poll', u'cautious', u'welcom']
[u'latham', u'super', u'scheme', u'cheap', u'popul']
[u'latham', u'unveil', u'super', u'plan']
[u'group', u'examin', u'secreci', u'issu', u'case']
[u'leak', u'memo', u'claim', u'health', u'servic', u'woe']
[u'lomu', u'woo']
[u'die', u'centuri', u'mishap']
[u'face', u'committ', u'hear', u'attempt', u'murder']
[u'manhunt', u'sydney', u'home', u'shoot']
[u'jail', u'treasuri', u'theft']
[u'mcgrath', u'return', u'delay']
[u'medic', u'insur', u'resolv']
[u'charg', u'haul']
[u'injur', u'bribi', u'chopper', u'crash']
[u'merson', u'leav', u'battl', u'addict']
[u'milan', u'goalkeep', u'dida', u'confid', u'comeback']
[u'indigen', u'protest']
[u'minist', u'defend', u'famili', u'servic', u'action']
[u'aftershock', u'quak', u'indonesian', u'district']
[u'delay', u'sydney', u'train']
[u'knee', u'surgeri', u'kiwi', u'astl']
[u'sydney', u'train', u'cancel']
[u'moscow', u'mourn', u'train', u'blast', u'victim']
[u'bed', u'eas', u'mental', u'health', u'crise']
[u'doom', u'worm', u'target', u'microsoft']
[u'rule', u'save', u'champion', u'trophi', u'rain']
[u'injuri', u'delay', u'hit', u'mcgrath', u'lanka', u'chanc']
[u'fine', u'bureau', u'owe', u'local', u'council', u'million']
[u'petrol', u'station', u'bowser', u'come', u'scrutini']
[u'look', u'secur', u'feder', u'seat']
[u'say', u'independ', u'speaker', u'model', u'canberra']
[u'ocean', u'need', u'urgent', u'attent', u'environment', u'group']
[u'spot', u'fin', u'begin', u'infring']
[u'opal', u'nation', u'challeng']
[u'opposit', u'call', u'brigalow', u'belt', u'report', u'releas']
[u'opposit', u'look', u'freedom', u'inform', u'law']
[u'pakistan', u'tell', u'plug', u'nuclear', u'secret', u'leak']
[u'panel', u'hear', u'need', u'potenti', u'drought', u'rethink']
[u'pantano', u'move', u'fast', u'lane', u'jordan', u'drive']
[u'payrol', u'pressur', u'water', u'manag', u'resourc']
[u'perth', u'school', u'doesnt', u'regret', u'cage', u'student']
[u'warn', u'canegrow', u'cooper']
[u'polic', u'offer', u'warn', u'imperson']
[u'polic', u'probe', u'mother', u'babi', u'death']
[u'polic', u'probe', u'region', u'drug']
[u'polic', u'raid', u'uncov', u'amphetamin', u'haul']
[u'poor', u'weather', u'hamper', u'german', u'warship', u'recoveri']
[u'potenti', u'cyclon', u'expect', u'head']
[u'powel', u'want', u'pakistan', u'probe', u'secret', u'nuclear']
[u'power', u'station', u'address', u'south', u'west', u'demand']
[u'power', u'surg', u'clear', u'south']
[u'premiership', u'star', u'african', u'contend']
[u'princ', u'charl', u'tour', u'quak', u'iran']
[u'protest', u'logger', u'loggerhead', u'forest', u'work']
[u'public', u'comment', u'seek', u'coomera', u'river', u'health']
[u'rain', u'delay', u'warn', u'comeback']
[u'rain', u'hit']
[u'rain', u'hit', u'redback', u'chase']
[u'rain', u'wash', u'warn', u'comeback']
[u'rann', u'ask', u'parent', u'check', u'youth', u'card']
[u'redback', u'domin']
[u'tape', u'tie', u'fish', u'farmer', u'report', u'say']
[u'report', u'season', u'open', u'mix']
[u'research', u'examin', u'altern', u'ovarian', u'cancer']
[u'rivkin', u'send', u'long']
[u'rubicon', u'burn', u'stop', u'bushfir']
[u'rural', u'confid', u'return', u'survey', u'say']
[u'rusedski', u'quiet', u'slip', u'away', u'dope', u'hear']
[u'russian', u'presidenti', u'candid', u'vanish']
[u'coach', u'pressur', u'perform']
[u'sar', u'fear', u'grip', u'hong', u'kong', u'hospit']
[u'welcom', u'queensland', u'rain']
[u'scene', u'warn', u'return']
[u'scope', u'australian', u'involv', u'mar']
[u'scullion', u'clear', u'busi', u'interest']
[u'search', u'continu', u'miss', u'woman']
[u'search', u'continu', u'plane', u'wreckag']
[u'search', u'find', u'miss', u'angler']
[u'search', u'intensifi', u'miss', u'angler']
[u'sheepmeat', u'industri', u'look', u'free', u'trade', u'boost']
[u'shooter', u'mark', u'farewel', u'olymp', u'dream']
[u'singh', u'uncomfort', u'tiger', u'comparison']
[u'snake', u'handler', u'recov', u'taipan', u'bite']
[u'seat', u'undecid', u'count', u'resum']
[u'south', u'africa', u'vote', u'april']
[u'state', u'plantat', u'sell']
[u'stewart', u'call', u'england', u'zimbabw', u'tour']
[u'street', u'seal', u'polic', u'shoot']
[u'struggl', u'demon', u'sack', u'elli']
[u'submiss', u'lodg', u'calm', u'review', u'ningaloo']
[u'suspect', u'drug', u'cordon']
[u'sweden', u'confid', u'upset']
[u'sydney', u'rail', u'bodi', u'play', u'train', u'cut']
[u'tafe', u'staff', u'strike', u'student']
[u'terror', u'fear', u'spark', u'mail', u'room', u'secur', u'talk']
[u'thailand', u'impos', u'curfew', u'fight', u'youth', u'crime']
[u'pakistan', u'scientist', u'face', u'scrutini']
[u'train', u'delay', u'continu', u'anger', u'commut']
[u'tram', u'idea', u'consider']
[u'trio', u'face', u'charg', u'drug', u'crop']
[u'tropic', u'rain', u'miss', u'central', u'queensland']
[u'tszyu', u'hand', u'defenc', u'deadlin']
[u'tucker', u'want', u'cannabi', u'debat']
[u'tuna', u'firm', u'take', u'approach', u'free', u'trade']
[u'tyson', u'look', u'fight']
[u'polic', u'arrest', u'seven', u'chines', u'worker', u'death']
[u'umpir', u'recruit', u'stall', u'shortag']
[u'call', u'drug', u'relat', u'corrupt']
[u'univers', u'announc', u'chines', u'partnership']
[u'fund', u'tiger', u'census']
[u'time', u'wall']
[u'arrest', u'number', u'iraq', u'want', u'list', u'report']
[u'sugar', u'industri', u'welcom', u'sweet', u'trade', u'deal']
[u'victim', u'mistak', u'crossbow']
[u'voyag', u'survivor', u'mark', u'year']
[u'join', u'internet', u'scammer', u'hunt']
[u'wambo', u'pin', u'hop', u'tourist', u'rout']
[u'weather', u'bureau', u'continu', u'monitor', u'cyclon']
[u'weather', u'bureau', u'issu', u'cyclon', u'watch']
[u'weir', u'hop', u'fourth', u'time', u'lucki', u'oscar']
[u'wesfarm', u'post', u'record', u'month', u'profit']
[u'tie', u'men', u'event']
[u'wine', u'woe', u'temper', u'foster', u'result']
[u'woman', u'happi', u'murder', u'suicid']
[u'wool', u'industri', u'benefit', u'trade', u'deal']
[u'work', u'can', u'week']
[u'worker', u'die', u'gold', u'coast', u'convent', u'centr', u'fall']
[u'urg', u'break', u'trade', u'talk', u'deadlock']
[u'young', u'farmer', u'grind']
[u'job', u'swing', u'million', u'briquett', u'factori', u'loan']
[u'iraqi', u'dead', u'baghdad', u'bomb', u'blast']
[u'dead', u'baghdad', u'blast']
[u'facelift', u'histor', u'tathra', u'wharf']
[u'assembl', u'pass', u'reform', u'law']
[u'lib', u'cast', u'doubt', u'valu', u'heritag', u'home']
[u'adelaid', u'heart', u'machin', u'save', u'live']
[u'agassi', u'advanc', u'spadea', u'spoil', u'haass', u'return']
[u'cyclist', u'drug', u'charg']
[u'ord', u'rid', u'healthi', u'profit', u'report']
[u'want', u'dollar', u'figur', u'trade', u'deal', u'benefit']
[u'amec', u'applaud', u'explor', u'fund', u'boost']
[u'arsenal', u'ahead', u'leed']
[u'distanc', u'second', u'divis', u'propos']
[u'asio', u'slam', u'handl', u'brigitt', u'case']
[u'foreman', u'hop', u'return', u'ring']
[u'dead', u'isra', u'raid', u'gaza']
[u'aussi', u'dive', u'athen', u'prepar']
[u'aust', u'post', u'worker', u'strike', u'entitl']
[u'australian', u'dollar', u'hit', u'high']
[u'baghdad', u'suicid', u'bomb', u'kill', u'hospit']
[u'bank', u'investig', u'parmalat', u'probe']
[u'barcaldin', u'choos', u'host', u'rugbi', u'leagu', u'match']
[u'beachley', u'honour', u'sport', u'feder']
[u'beatti', u'ministri']
[u'berlin', u'film', u'festiv', u'honour', u'argentin', u'director']
[u'billiton', u'fin', u'prevent', u'death']
[u'billiton', u'upbeat', u'coal', u'price']
[u'birdsvill', u'flood', u'despit', u'rain']
[u'blair', u'meet', u'khaddafi', u'relat', u'thaw']
[u'blue', u'green', u'alga', u'level', u'drop', u'popular', u'swim']
[u'bomb', u'hoax', u'lead', u'jail']
[u'breakdown', u'sydney', u'train', u'woe']
[u'britain', u'probe', u'iraqi', u'mistreat']
[u'break', u'pip', u'mystifi', u'water']
[u'build', u'evacu', u'baghdad', u'sniffer']
[u'bushrang', u'redback', u'clash', u'abandon']
[u'bush', u'vietnam', u'militari', u'record', u'fail', u'satisfi']
[u'businessman', u'contest', u'braddon', u'lib']
[u'caravan', u'park', u'close', u'despit', u'feasibl', u'studi']
[u'carnarvon', u'bushwalk', u'bodi']
[u'warn', u'dump', u'closur', u'polit', u'ground']
[u'prais', u'quick', u'work', u'follow', u'suspici']
[u'check', u'detail', u'warn', u'elector', u'offic']
[u'china', u'ban', u'poultri', u'import']
[u'church', u'ponder', u'wise', u'men', u'gender']
[u'flag', u'greater', u'legal', u'protect', u'polic']
[u'coalit', u'encourag', u'iraq', u'contract']
[u'communiti', u'ask', u'graffiti', u'prevent', u'idea']
[u'communiti', u'group', u'help', u'rescu', u'sink', u'barg']
[u'confer', u'herald', u'grassroot', u'return', u'nation']
[u'consum', u'confid', u'remain', u'steadi']
[u'content', u'seiz', u'contain', u'analys']
[u'coron', u'urg', u'public', u'pool', u'safeti', u'review']
[u'costello', u'talk', u'trade', u'deal', u'benefit']
[u'councillor', u'disput', u'recent', u'circular']
[u'council', u'want', u'meet', u'troubl', u'health', u'servic']
[u'court', u'deni', u'defenc', u'chief', u'immun']
[u'court', u'overturn', u'peregian', u'develop', u'approv']
[u'crossbow', u'court', u'tell', u'accus', u'want', u'harm']
[u'cyclon', u'fritz', u'bring', u'damag']
[u'cyclon', u'fritz', u'cross', u'northern', u'coast']
[u'cyclon', u'fritz', u'edg', u'closer', u'north']
[u'cyclon', u'fritz', u'like', u'intensifi']
[u'dairi', u'compani', u'job']
[u'death', u'prompt', u'construct', u'worker', u'walkout']
[u'democrat', u'labor', u'parti', u'fight', u'surviv']
[u'democrat', u'kerri', u'score', u'southern', u'sweep']
[u'drought', u'caus', u'salin', u'drop']
[u'educ', u'minist', u'rais', u'school', u'leav']
[u'eildon', u'plane', u'wreckag', u'recoveri', u'begin']
[u'falconio', u'murder', u'committ']
[u'farrer', u'disagre', u'illeg', u'immigr', u'amnesti']
[u'fatal', u'inquest', u'fail', u'culprit']
[u'fear', u'countrylink', u'line']
[u'feder', u'confid', u'sugar', u'grower', u'surviv']
[u'fifa', u'scrap', u'offsid', u'guidelin', u'allardyc']
[u'fifa', u'propos', u'chang', u'friend', u'match', u'half', u'time']
[u'finnish', u'millionair', u'record', u'speed', u'fine']
[u'union', u'demand', u'fund', u'lismor', u'station']
[u'solomon', u'opposit', u'leader', u'join', u'govern']
[u'free', u'rang', u'chook', u'farm', u'flap', u'bird']
[u'french', u'lover', u'despit', u'death']
[u'french', u'headscarf', u'class']
[u'french', u'prison', u'give', u'birth', u'handcuff']
[u'fritz', u'dump', u'rain', u'cairn', u'weipa']
[u'galleri', u'unpack', u'coff', u'harbour', u'exhibit']
[u'glen', u'inn', u'councillor', u'resign']
[u'gold', u'coast', u'tip', u'minist']
[u'govern', u'afford', u'promis', u'polic', u'oppn']
[u'govern', u'medicar']
[u'govt', u'order', u'hospit', u'protocol', u'chang']
[u'govt', u'pledg', u'sugar', u'support', u'amid', u'trade', u'deal', u'anger']
[u'grace', u'doubt', u'vital', u'clash']
[u'green', u'light', u'bicentenari', u'cattl', u'drive']
[u'greenpeac', u'want', u'tyre', u'fuel', u'propos', u'reject']
[u'green', u'vote', u'trade', u'agreement']
[u'home', u'loan', u'push', u'profit']
[u'hong', u'kong', u'china', u'hold', u'democraci', u'talk']
[u'hong', u'kong', u'patient', u'test', u'negat', u'bird', u'sar']
[u'hospit', u'defend', u'emerg', u'decis']
[u'weather', u'alert', u'scientist', u'reef', u'bleach']
[u'independ', u'applaud', u'opposit', u'super', u'reform', u'plan']
[u'internet', u'probe', u'highlight', u'scammer']
[u'investig', u'continu', u'latest', u'sydney', u'shoot']
[u'investig', u'continu', u'build', u'site', u'death']
[u'chief', u'warn', u'athlet', u'drug', u'test']
[u'iranian', u'march', u'anniversari', u'revolut']
[u'iran', u'guardian', u'council', u'bar', u'elect', u'candid']
[u'ireland', u'odriscol', u'rule', u'franc', u'clash']
[u'isra', u'troop', u'kill', u'palestinian', u'gaza']
[u'kerri', u'press', u'clark', u'primari']
[u'kewel', u'viduka', u'name', u'socceroo', u'squad']
[u'land', u'clear', u'polici', u'help', u'sale', u'central']
[u'latham', u'urg', u'consid', u'north', u'coast', u'educ']
[u'liber', u'promis', u'bushfir', u'manag', u'chang']
[u'live', u'export', u'lobbi', u'port', u'open']
[u'market', u'swim', u'fish', u'strong', u'dollar']
[u'mar', u'rover', u'set', u'distanc', u'record', u'metr']
[u'martyn', u'join', u'macgil', u'nott']
[u'matilda', u'prepar', u'australia']
[u'michell', u'provid', u'muscl', u'flame']
[u'microsoft', u'warn', u'critic', u'flaw', u'window']
[u'minist', u'defend', u'hospit', u'infect', u'rate']
[u'minist', u'discuss', u'retir', u'reform']
[u'minist', u'satisfi', u'council', u'departur']
[u'miss', u'russian', u'candid', u'return']
[u'miss', u'russian', u'politician', u'turn', u'aliv']
[u'miss', u'woman']
[u'deni', u'countrylink', u'servic', u'ax']
[u'molloy', u'sore', u'miss', u'cabinet']
[u'council', u'amalgam', u'like']
[u'say', u'super', u'make']
[u'seek', u'penalti', u'fake']
[u'mysteri', u'object', u'baffl', u'space', u'station', u'crew']
[u'natur', u'resourc', u'committe', u'elect', u'chairman']
[u'consid', u'introduc', u'confer']
[u'minist', u'welcom', u'beatti', u'fold']
[u'northern', u'offic', u'mission', u'australia']
[u'springbok', u'coach', u'name', u'friday']
[u'sight', u'log', u'stand']
[u'nois', u'monitor', u'continu', u'airport']
[u'govt', u'offer', u'free', u'train', u'travel']
[u'nswrl', u'take', u'step', u'reduc', u'workload']
[u'ocker', u'hunk', u'want', u'dose', u'realiti']
[u'opec', u'slash', u'output']
[u'opposit', u'attack', u'local', u'council', u'merger']
[u'pakistan', u'assur', u'india', u'foolproof', u'secur']
[u'pantano', u'test', u'jordan', u'deal']
[u'pastor', u'firm', u'record', u'loss']
[u'philippin', u'poll', u'campaign', u'kick']
[u'pilot', u'group', u'want', u'airspac', u'scheme', u'probe']
[u'pittman', u'miss', u'olymp', u'trial']
[u'plane', u'bodi', u'recov', u'lake', u'eildon']
[u'put', u'bite', u'state', u'dental', u'plan']
[u'polic', u'hunt', u'tot', u'bandit']
[u'polic', u'investig', u'incid']
[u'polic', u'warn', u'fine', u'leav', u'unlock']
[u'polic', u'warn', u'stock', u'theft']
[u'pork', u'industri', u'uneasi', u'free', u'trade', u'deal']
[u'pork', u'produc', u'group', u'review']
[u'probe', u'launch', u'melbourn', u'rail', u'death']
[u'public', u'meet', u'discuss', u'emerg', u'dept', u'futur']
[u'quak', u'shake', u'isra', u'build']
[u'queiroz', u'prais', u'henri', u'nistelrooy']
[u'raaf', u'forc', u'land', u'investig', u'begin']
[u'rail', u'union', u'meet', u'sydney', u'train', u'crisi']
[u'rain', u'steal', u'warn', u'thunder']
[u'rain', u'forc', u'burn', u'cancel']
[u'research', u'angl', u'better', u'reef', u'manag']
[u'research', u'tackl', u'tamar', u'river', u'sediment', u'problem']
[u'resid', u'group', u'submit', u'develop', u'propos']
[u'resid', u'unhappi', u'salvat', u'armi', u'decis']
[u'resort', u'plan', u'scale']
[u'ricciuto', u'trial', u'match', u'comeback']
[u'ricciuto', u'trial', u'match', u'come']
[u'rogg', u'say', u'secur', u'dampen', u'olymp', u'mood']
[u'rumsfeld', u'draw', u'blank', u'blair', u'minut', u'iraq', u'claim']
[u'rusedski', u'play', u'await', u'drug', u'verdict']
[u'rusti', u'ivanisev', u'stumbl', u'milan']
[u'safeti', u'bureau', u'releas', u'report', u'drama']
[u'salvo', u'sell', u'age', u'care', u'centr']
[u'premier', u'attack', u'sport', u'plan']
[u'senat', u'call', u'nauru', u'detent', u'centr', u'closur']
[u'senat', u'support', u'seek', u'medicar']
[u'singh', u'target', u'wood', u'record']
[u'sleazi', u'white', u'hous', u'grab']
[u'unhappi', u'cabinet', u'snub']
[u'south', u'african', u'throw', u'lion']
[u'receiv', u'assess', u'buyer', u'compani']
[u'lankan', u'minist', u'dismiss']
[u'stanthorp', u'mourn', u'mayor', u'death']
[u'date', u'lleyton', u'aussi']
[u'strong', u'growth', u'boost', u'resourc', u'share']
[u'studi', u'look', u'cop', u'skill', u'student']
[u'suicid', u'bomb', u'kill', u'dozen']
[u'swimmer', u'drive', u'shark', u'water']
[u'sydney', u'station', u'staff', u'walk']
[u'teach', u'guid', u'launch', u'lesson']
[u'terror', u'rule', u'iranian', u'plane', u'crash']
[u'theatr', u'redevelop', u'plan', u'discuss']
[u'palestinian', u'kill', u'gaza', u'firefight', u'report']
[u'torana', u'paint', u'snare', u'prize']
[u'train', u'delay', u'continu', u'sydney']
[u'troubl', u'health', u'servic', u'meet', u'local']
[u'truck', u'smash', u'power', u'failur', u'shut', u'harbour', u'tunnel']
[u'present', u'apologis', u'back', u'weapon', u'claim']
[u'year', u'council', u'restructur']
[u'ugandan', u'leed', u'delay']
[u'kill', u'ethnic', u'clash', u'ethiopia']
[u'celebr', u'year', u'beatlemania']
[u'market', u'await', u'greenspan', u'address']
[u'record', u'second', u'avian', u'case']
[u'renew', u'libya', u'diplomat', u'presenc']
[u'report', u'go', u'miss', u'near', u'chechnya']
[u'tell', u'citizen', u'leav', u'haiti']
[u'vacanc', u'rat', u'remain', u'tight']
[u'vanston', u'defend', u'manus', u'island', u'camp']
[u'viacom', u'split', u'blockbust', u'video', u'chain']
[u'polic', u'charg', u'murder']
[u'opposit', u'promis', u'albani', u'hospit', u'upgrad']
[u'warn', u'final', u'roll']
[u'warn', u'snare', u'comeback']
[u'warn', u'snare', u'come']
[u'word', u'erupt', u'health', u'safeti']
[u'water', u'manag', u'upgrad', u'break', u'hill']
[u'white', u'hous', u'releas', u'bush', u'militari', u'document']
[u'wildcard', u'golovin', u'outrun', u'smashnova', u'pistolesi']
[u'resourc', u'increas', u'year', u'profit']
[u'woman', u'fin', u'quarantin', u'violat']
[u'woodsid', u'worker', u'brace', u'cyclon']
[u'youth', u'servic', u'offer', u'bushfir', u'lifelin']
[u'youth', u'want', u'scari', u'crossbow', u'court', u'tell']
[u'leav', u'player', u'west', u'sydney', u'clash']
[u'abbott', u'reject', u'babi', u'clone', u'claim']
[u'academ', u'call', u'water', u'releas', u'prevent', u'silt']
[u'firm', u'warn', u'eftpo', u'fraud']
[u'agenc', u'give', u'beagl']
[u'agreement', u'put', u'rail', u'servic', u'track']
[u'franc', u'merger']
[u'analyst', u'blame', u'rise', u'aussi', u'dollar', u'fall']
[u'anger', u'air', u'local', u'govt', u'sack']
[u'appeal', u'rais', u'fund', u'local', u'famili']
[u'armi', u'chopper', u'crash']
[u'chairman', u'resign']
[u'australian', u'offici', u'post']
[u'baghdad', u'bomb', u'kill', u'soldier']
[u'bank', u'resourc', u'lift', u'ord']
[u'beatti', u'term', u'cabinet', u'swear']
[u'beatti', u'minist']
[u'bendigo', u'cost', u'motel', u'ahead']
[u'blue', u'outclass', u'wayward', u'waratah']
[u'bomb', u'kill', u'troop', u'baghdad']
[u'border', u'hint', u'warn', u'ticket', u'lanka']
[u'boro', u'upset', u'unit', u'chelsea', u'close']
[u'brogden', u'back', u'latham', u'super', u'plan']
[u'break', u'hill', u'water', u'studi', u'launch']
[u'bskyb', u'profit', u'soar']
[u'bulloo', u'grass', u'grow', u'record', u'flood']
[u'bumper', u'month', u'sapphir', u'coast', u'tourism']
[u'bush', u'vow', u'prolifer', u'fight']
[u'busi', u'usual', u'despit', u'council', u'dismiss']
[u'busi', u'leader', u'push', u'free', u'trade', u'deal']
[u'busi', u'time', u'ahead', u'gold', u'coast', u'cabinet', u'member']
[u'minist', u'polic', u'file']
[u'cane', u'toad', u'post', u'help', u'resid']
[u'crush', u'kill']
[u'carr', u'hop', u'deal', u'train', u'crisi']
[u'carr', u'rule', u'ministeri', u'review']
[u'celtic', u'dismiss', u'dunfermlin']
[u'children', u'commit', u'self', u'harm', u'detent', u'centr']
[u'chines', u'citi', u'ban', u'motorcycl']
[u'websit', u'notic', u'seek', u'iraq', u'inform']
[u'clark', u'quit', u'presidenti', u'race']
[u'close', u'race', u'tip', u'border', u'medal']
[u'cole', u'myer', u'boost', u'sale']
[u'convoy', u'target', u'western', u'iraq']
[u'cook', u'sizzl', u'mediterranean', u'tour']
[u'coron', u'criticis', u'polic', u'murder', u'suicid']
[u'costa', u'meet', u'rail', u'union']
[u'cost', u'forc', u'salvat', u'armi', u'sell', u'nurs', u'home']
[u'council', u'amalgam', u'hear']
[u'council', u'dump', u'uniform', u'plan']
[u'council', u'employe', u'seek', u'better', u'deal']
[u'councillor', u'challeng', u'rockhampton', u'mayor']
[u'councillor', u'quit', u'administr', u'appoint']
[u'councillor', u'support', u'airlin', u'rockhampton']
[u'councillor', u'resign']
[u'council', u'review', u'decis', u'avoid', u'court', u'battl']
[u'council', u'seek', u'fund', u'plan', u'studi']
[u'council', u'seek', u'action', u'grave', u'threat']
[u'council', u'want', u'vote', u'count', u'local']
[u'council', u'warn', u'resid', u'follow', u'dengu', u'fever']
[u'courtney', u'love', u'skip', u'california', u'crimin', u'case']
[u'crew', u'bail', u'toothfish', u'charg']
[u'crew', u'charg', u'toothfish', u'poach']
[u'cricket', u'star', u'gather', u'allan', u'border', u'medal']
[u'cyclon', u'fritz', u'continu']
[u'cyclon', u'fritz', u'fizzl', u'gulf']
[u'dairyfarm', u'urg', u'employ', u'survey']
[u'date', u'darci', u'abus', u'trial']
[u'davidson', u'trumbl', u'join', u'australian', u'cricket', u'elit']
[u'democrat', u'abbott', u'medicar', u'prescript']
[u'disney', u'studi', u'supris', u'takeov']
[u'diver', u'continu', u'search', u'plane', u'crash', u'victim']
[u'divers', u'crime', u'prevent', u'fund']
[u'drink', u'drive', u'convict', u'accus', u'danger']
[u'dubbo', u'student', u'butt', u'break', u'exercis']
[u'earth', u'tremor']
[u'surviv', u'armi', u'chopper', u'crash']
[u'electr', u'storm', u'caus', u'power', u'pole']
[u'ethanol', u'excis', u'extens', u'support', u'opposit']
[u'explos', u'go', u'insid', u'india']
[u'explos', u'chines', u'coalmin', u'kill']
[u'chief', u'say', u'cost', u'drop']
[u'fatal', u'accid', u'investig', u'continu']
[u'fear', u'air', u'rail', u'good', u'damag']
[u'feder', u'call', u'conserv', u'parti']
[u'govt', u'cautious', u'iraq', u'weapon', u'probe']
[u'fior', u'lead', u'lazio', u'charg']
[u'fish', u'haven', u'studi', u'northern', u'river']
[u'forecast', u'job', u'growth']
[u'forestri', u'group', u'attack', u'protest']
[u'french', u'internet', u'firm', u'profit', u'jump']
[u'fritz', u'strengthen', u'near', u'island']
[u'fund', u'lack', u'wont', u'stop', u'nurs', u'home', u'develop']
[u'debat', u'church', u'england', u'agenda']
[u'german', u'archaeologist', u'throw', u'light', u'pyramid', u'origin']
[u'river', u'clean', u'track', u'urg', u'mayor']
[u'govern', u'deni', u'polic', u'station', u'budget', u'problem']
[u'governor', u'pressur', u'sydney', u'council', u'merger']
[u'govt', u'staff', u'shortag', u'local']
[u'govt']
[u'grazier', u'hold', u'restock', u'recent', u'rain']
[u'green', u'light', u'marina', u'develop']
[u'greenspan', u'upbeat', u'economi']
[u'green', u'unimpress', u'clear', u'fell', u'report']
[u'gulf', u'town', u'cyclon', u'watch']
[u'hama', u'vow', u'reveng', u'gaza', u'raid']
[u'health', u'minist', u'expand', u'stillbirth', u'inquiri']
[u'hockeyroo', u'sink', u'south', u'africa']
[u'hollywood', u'studio', u'plan', u'toon', u'stock', u'exchang', u'list']
[u'hope', u'sydney', u'firm', u'help', u'lower', u'power', u'price']
[u'hope', u'talk', u'help', u'avoid', u'rail', u'strike']
[u'head']
[u'howard', u'adopt', u'latham', u'super', u'scheme']
[u'hungri', u'mcewen', u'eye', u'tour', u'reveng']
[u'hunter', u'valley', u'train', u'return', u'servic']
[u'icpa', u'welcom', u'bligh', u'continu']
[u'imran', u'wasim', u'offer', u'talk', u'ahead', u'indian']
[u'indonesian', u'court', u'overturn', u'parliament', u'chief']
[u'intrud', u'interrupt', u'question', u'time']
[u'investig', u'black', u'hawk', u'crash', u'continu']
[u'investig', u'probe', u'black', u'hawk', u'crash']
[u'iraq', u'blast', u'kill']
[u'iraq', u'blast', u'link', u'terror', u'letter']
[u'israel', u'say', u'attend', u'court', u'hear']
[u'italian', u'town', u'battl', u'mysteri', u'fire']
[u'javelin', u'thrower', u'gatsioudi', u'carri', u'olymp', u'torch']
[u'jobless', u'rate', u'inch']
[u'jordan', u'wait', u'pantano', u'deal']
[u'judg', u'reject', u'bail', u'chang', u'murder', u'accus']
[u'dog', u'roam', u'plead', u'properti', u'owner']
[u'kongorong', u'explor', u'begin']
[u'labor', u'promis', u'save', u'screensound']
[u'latham', u'order', u'report']
[u'mackay', u'put', u'famili']
[u'madam', u'tussaud', u'honour', u'wilkinson']
[u'magistr', u'question', u'mental', u'health', u'facil']
[u'malaysian', u'minist', u'arrest', u'corrupt', u'crackdown']
[u'guilti', u'manslaught', u'stab']
[u'jail', u'hide', u'bali', u'bomber']
[u'face', u'retrial', u'grievous', u'bodili', u'harm']
[u'stand', u'trial', u'mother', u'murder']
[u'mayor', u'boundari', u'chang', u'consider']
[u'mcgradi', u'say', u'mine', u'benefit', u'role']
[u'mediat', u'program', u'expand', u'region']
[u'medicar', u'negoti', u'continu']
[u'medicar', u'wrangl', u'resum']
[u'millwal', u'end', u'telford']
[u'bed', u'gippsland', u'age', u'care', u'facil']
[u'morocco', u'tunisia', u'meet', u'african', u'final']
[u'hail', u'free', u'trade', u'deal']
[u'say', u'murray', u'chang', u'wont', u'leav', u'riverland']
[u'want', u'council', u'address', u'lack', u'street', u'light']
[u'nation', u'claim', u'cover', u'toxic', u'dump', u'select']
[u'council', u'amalgam', u'announc']
[u'england', u'initi', u'target', u'heart', u'lung']
[u'mosquito', u'control', u'prove', u'effect']
[u'news', u'corp', u'profit', u'climb', u'million']
[u'rail', u'disput', u'talk', u'roll']
[u'govt', u'atsic', u'time', u'lobbi', u'youth']
[u'workshop', u'stress', u'import', u'land', u'recoveri']
[u'flag', u'burner', u'say', u'regret']
[u'ohern', u'take', u'point', u'lead', u'second', u'round']
[u'opposit', u'consid', u'high', u'cut']
[u'orang', u'alert', u'high', u'densiti', u'hous']
[u'peopl', u'urg', u'wari', u'good', u'true']
[u'phelp', u'come', u'whisker', u'freestyl', u'world']
[u'pittsworth', u'stop', u'caravan', u'tourist']
[u'flag', u'analysi', u'trade', u'deal', u'benefit']
[u'resist', u'probe', u'pressur']
[u'polic', u'combat', u'plan', u'auction', u'onlin']
[u'polic', u'probe', u'hook', u'file']
[u'pont', u'name', u'cricket', u'year']
[u'poultri', u'safe', u'bird', u'govern', u'say']
[u'premier', u'move', u'allay', u'concern', u'coral', u'plan']
[u'privaci', u'watchdog', u'highlight', u'websit', u'flaw']
[u'project', u'pool', u'resourc', u'desert', u'research']
[u'qanta', u'staff', u'order', u'work']
[u'woman', u'die', u'dengu', u'fever']
[u'quarantin', u'offici', u'seiz', u'quail', u'egg']
[u'red', u'stun', u'crusad']
[u'resid', u'welcom', u'feedlot', u'restrict']
[u'reynold', u'readi', u'portfolio']
[u'roo', u'say', u'lion', u'good', u'chanc', u'fourth', u'titl']
[u'lib', u'want', u'land', u'probe']
[u'school', u'cours', u'prove', u'popular']
[u'schooli', u'boost', u'southern', u'down', u'tourism']
[u'score', u'dead', u'ethiopia', u'ethnic', u'fight']
[u'scrappi', u'dementieva', u'scrap']
[u'search', u'miss', u'angler']
[u'secur', u'fear', u'grind', u'flight']
[u'senat', u'call', u'action', u'christma', u'island']
[u'serbia', u'deni', u'harbour', u'karadz']
[u'shire', u'lobbi', u'fund', u'improv', u'inlet']
[u'shire', u'unhappi', u'propos', u'monkey', u'advisori']
[u'nation', u'rival', u'hop', u'woodward', u'humbl']
[u'soccer', u'team', u'failur', u'deal', u'blow', u'pride']
[u'south', u'korean', u'claim', u'human', u'clone', u'breakthrough']
[u'worker', u'continu', u'strike', u'threat']
[u'studi', u'weigh', u'obes', u'concern']
[u'sugar', u'call', u'support']
[u'suicid', u'exhibit', u'surpris', u'artist']
[u'summat', u'crossbow', u'court', u'case']
[u'sydney', u'posti', u'strike', u'restructur']
[u'sydney', u'rail', u'crisi', u'talk']
[u'sydney', u'shoot', u'accus', u'deni', u'bail']
[u'sydney', u'train', u'delay', u'continu']
[u'experi', u'harsher', u'domest', u'violenc', u'crisi']
[u'tattersal', u'criticis', u'school', u'fundrais']
[u'settlement', u'help', u'fizz', u'coca', u'cola']
[u'telstra', u'ring', u'profit']
[u'telstra', u'sale', u'survey', u'resid']
[u'real', u'reach', u'final']
[u'simpson', u'head', u'screen']
[u'time', u'run', u'voter']
[u'toowoomba', u'appoint', u'labor', u'caucus', u'chairman']
[u'tourism', u'bureau', u'welcom', u'wine', u'ministri']
[u'trio', u'court', u'charg']
[u'tuna', u'trader', u'cash', u'free', u'trade', u'deal', u'vail']
[u'union', u'deliv', u'attack', u'aust', u'post', u'restructur', u'plan']
[u'union', u'highlight', u'child', u'protect', u'worker', u'woe']
[u'union', u'push', u'compens', u'shuttl', u'loss']
[u'union', u'concern', u'briquett', u'factori', u'closur']
[u'union', u'demand', u'wollongong', u'emerg', u'unit']
[u'union', u'warn', u'qanta']
[u'team', u'meet', u'lead', u'shia', u'cleric']
[u'consid', u'australia', u'weapon', u'dump']
[u'open', u'iraq', u'contract', u'countri']
[u'senat', u'tear', u'shred', u'superbowl', u'broadcast']
[u'varley', u'win', u'contract', u'lockhe', u'martin']
[u'verkerk', u'strong', u'sanguinetti']
[u'victorian', u'public', u'holiday']
[u'virgin', u'fli', u'branson', u'ballina']
[u'vote', u'defer', u'council', u'merger']
[u'govt', u'consid', u'coral', u'plan']
[u'wall', u'greenspan', u'assess']
[u'warn', u'relax', u'select', u'chanc']
[u'warn', u'relax', u'tour', u'select']
[u'watchdog', u'back', u'call', u'tougher', u'nuclear', u'curb']
[u'rule', u'person', u'person', u'bird', u'case']
[u'wildcat', u'captain', u'rest', u'injuri', u'game']
[u'wildcat', u'claw', u'croc']
[u'woman', u'jail', u'british', u'schoolgirl', u'murder']
[u'woman', u'bodi', u'take', u'perth', u'post', u'mortem']
[u'workcov', u'ask', u'look', u'school', u'build']
[u'probe', u'adelaid', u'radio', u'host']
[u'govt', u'know', u'child', u'safeti', u'report', u'woe']
[u'action', u'immin', u'angri', u'prison', u'offic']
[u'review', u'polli', u'super']
[u'afghan', u'asylum', u'seeker', u'hop', u'case']
[u'agassi', u'roddick', u'advanc', u'jose', u'quarter']
[u'agenc', u'sign', u'domest', u'violenc', u'protocol']
[u'alburi', u'fear', u'forc', u'merger']
[u'alburi', u'wodonga', u'annual', u'busi', u'survey', u'begin']
[u'andren', u'surpris', u'super', u'announc']
[u'antarct', u'divis', u'defend', u'russian', u'ship']
[u'anxious', u'citi', u'wait', u'anelka']
[u'arafat', u'wife', u'say', u'hide', u'french', u'account']
[u'aussi', u'dollar', u'test', u'threshold']
[u'australia', u'award', u'environment', u'boobi', u'prize']
[u'australia', u'lead', u'rescu', u'mission', u'japanes']
[u'baddeley', u'pace', u'diego']
[u'beef', u'produc', u'optimist', u'despit', u'mix', u'forecast']
[u'bendigo', u'employ', u'project', u'receiv', u'fund']
[u'bettini', u'claim', u'second', u'stage', u'tour']
[u'black', u'hawk', u'crash', u'probe', u'continu']
[u'blackston', u'woman', u'guilti', u'manslaught']
[u'bomb', u'joke', u'land', u'australian', u'travel', u'court']
[u'boulder', u'die', u'accid']
[u'british', u'scienc', u'watchdog', u'welcom', u'clone', u'advanc']
[u'brook', u'fire', u'adelaid']
[u'bulk', u'bill', u'rat', u'continu', u'drop']
[u'bush', u'fill', u'final', u'place', u'iraq', u'panel']
[u'cabbi', u'protest', u'sydney', u'airport', u'levi']
[u'call', u'investig', u'continu']
[u'canada', u'consid', u'decriminalis', u'marijuana']
[u'carr', u'defend', u'rail', u'deal']
[u'carr', u'pledg', u'copi', u'super', u'plan']
[u'celtic', u'england', u'watch']
[u'gear', u'high', u'threat']
[u'chamber', u'coach', u'charg', u'scandal']
[u'china', u'block', u'vagina', u'monologu']
[u'china', u'ugli', u'win', u'ultim', u'makeov']
[u'church', u'leader', u'form', u'anti', u'satan', u'task', u'forc']
[u'clark', u'face', u'rape', u'suit']
[u'clijster', u'pierc', u'pari', u'quarter']
[u'coach', u'urg', u'croc', u'stand']
[u'collin', u'class', u'submarin', u'visit', u'beauti', u'point']
[u'council', u'determin', u'establish', u'water', u'treatment']
[u'court', u'clear', u'indonesian', u'speaker']
[u'court', u'consid', u'request', u'accus', u'undergo']
[u'court', u'sentenc', u'naturopath']
[u'croc', u'urg', u'stand', u'focus']
[u'cyclon', u'fritz', u'caus', u'gale', u'wind']
[u'defenc', u'forc', u'upgrad', u'harpoon', u'missil']
[u'delay', u'expect', u'despit', u'rail', u'deal']
[u'dippenaar', u'steer', u'south', u'africa']
[u'dollar', u'hit', u'near', u'seven', u'year', u'high']
[u'downer', u'tell', u'gallipoli']
[u'timor', u'welcom', u'start', u'field', u'product']
[u'extrem', u'condit', u'alert']
[u'father', u'face', u'sentenc', u'kill', u'children']
[u'feder', u'minist', u'visit', u'highway', u'black', u'spot']
[u'crew', u'alert', u'temperatur', u'soar']
[u'fear', u'snowi', u'mountain']
[u'ravag', u'furnitur', u'warehous']
[u'flood', u'continu', u'isol', u'resid']
[u'flood', u'continu', u'isol', u'remot', u'town']
[u'chechen', u'leader', u'injur', u'bomb', u'blast', u'report']
[u'charg', u'scandal']
[u'french', u'trigger', u'montoya', u'say', u'head']
[u'french', u'network', u'news', u'blunder']
[u'fritz', u'expect', u'bring', u'flood']
[u'fruit', u'coop', u'claim', u'hostil', u'takeov', u'undervalu']
[u'fume', u'spark', u'airport', u'area', u'evacu']
[u'generat', u'chang', u'gold', u'coast', u'holiday', u'maker']
[u'giant', u'panda', u'receiv', u'hero', u'welcom', u'china']
[u'gladston', u'airlin', u'passeng', u'number', u'hold', u'steadi']
[u'gold', u'coast', u'rent', u'rise', u'market', u'slow']
[u'govt', u'check', u'gallipoli', u'claim']
[u'govt', u'work', u'catchment', u'manag']
[u'grain', u'grower', u'associ', u'appoint', u'victorian']
[u'grant', u'open', u'struggl', u'volunt', u'group']
[u'green', u'issu', u'clearfel', u'altern']
[u'gulf', u'town', u'weather', u'cyclon']
[u'hackett', u'return', u'pool', u'ill']
[u'high', u'court', u'uphold', u'unlaw', u'sentenc']
[u'high', u'temperatur', u'fuel', u'teacher', u'action']
[u'hockeyroo', u'claim', u'seri', u'lead']
[u'hoddl', u'want', u'southampton', u'return']
[u'hostil', u'peopl', u'bear', u'smoke', u'studi']
[u'hous', u'financ', u'figur', u'fall']
[u'howard', u'happi', u'sensibl', u'growth', u'log']
[u'hundr', u'hurt', u'nigerian', u'leak']
[u'hunt', u'aussi', u'bush', u'bloke']
[u'indigen', u'land', u'claim', u'cultur', u'centr']
[u'indonesia', u'allow', u'aceh', u'elect', u'observ']
[u'inquest', u'begin', u'tourist', u'death']
[u'interst', u'hunt', u'perth', u'shoot']
[u'iran', u'warn', u'nuclear', u'blueprint']
[u'isra', u'soldier', u'charg', u'briton', u'shoot', u'death']
[u'israel', u'boycott', u'barrier', u'hear']
[u'israel', u'boycott', u'world', u'court', u'hear', u'barrier']
[u'jade', u'ivanisev', u'bow', u'milan']
[u'judg', u'reject', u'slash', u'legal', u'super']
[u'judg', u'decid', u'clark', u'rape', u'suit']
[u'barbi', u'split']
[u'korean', u'sport', u'czar', u'face', u'briberi', u'charg']
[u'kyogl', u'starter', u'good', u'behaviour', u'bond']
[u'labor', u'hope', u'retain', u'north', u'seat']
[u'latham', u'deni', u'split']
[u'eye', u'bafta', u'road', u'oscar']
[u'focus', u'bull', u'final', u'match']
[u'locust', u'outbreak', u'fear', u'gunnedah']
[u'maher', u'lead', u'gabba', u'rout', u'warrior']
[u'arrest', u'centrelink', u'stoush']
[u'assault', u'outsid', u'nightclub']
[u'manchest', u'sharehold', u'jockey', u'posit']
[u'front', u'court', u'parliament', u'jump']
[u'jail', u'murder', u'kid']
[u'jail', u'internet']
[u'lose', u'appeal', u'jail', u'sentenc']
[u'miss', u'ferguson']
[u'market', u'eye', u'leed', u'fifth', u'deadlin', u'loom']
[u'mawson', u'base', u'celebr', u'birthday']
[u'merchant', u'ship', u'close', u'strand', u'japanes', u'sailor']
[u'microsoft', u'window', u'code', u'leak', u'internet']
[u'milan', u'fire', u'embarrass']
[u'miss', u'wing', u'plane', u'crash']
[u'hasti', u'sugar', u'rescu', u'packag']
[u'murray', u'valley', u'trail', u'project', u'continu', u'despit']
[u'mysteri', u'diseas', u'corowa']
[u'indigen', u'offic', u'recruit']
[u'nightclub', u'owner', u'warn', u'assault']
[u'deliber', u'hospit']
[u'iraqi', u'elect', u'expect', u'rule', u'end']
[u'norway', u'find', u'mild', u'bird', u'strain', u'wild', u'duck']
[u'support', u'road', u'option']
[u'elector', u'roll', u'close', u'monday']
[u'justic', u'minist', u'prais', u'communiti', u'servic']
[u'brake', u'driver', u'overtim']
[u'move', u'super', u'chang']
[u'ohern', u'slip', u'second', u'davi', u'go']
[u'opera', u'ballet', u'compani', u'reject', u'merger', u'plan']
[u'pair', u'charg', u'knock', u'motorbik']
[u'palestinian', u'shoot', u'dead']
[u'penford', u'australia', u'downsiz', u'tamworth', u'plant']
[u'peter', u'lead', u'matilda']
[u'pig', u'roll']
[u'pittong', u'resid', u'concern', u'dump', u'site', u'talk']
[u'defend', u'super', u'backflip']
[u'visit', u'tasmania', u'north']
[u'polic', u'arrest', u'hotel', u'attack']
[u'polic', u'condemn', u'death']
[u'polic', u'hope', u'bust', u'plastic', u'surgeri']
[u'polic', u'sydney', u'shoot', u'arrest']
[u'polic', u'search', u'miss', u'yarram', u'woman']
[u'polic', u'urg', u'trucki', u'reject', u'drug']
[u'pont', u'back', u'warn', u'test', u'return']
[u'pont', u'cap', u'year', u'border', u'medal']
[u'pont', u'score', u'award']
[u'powel', u'rule', u'haiti', u'regim', u'chang']
[u'memori', u'attract', u'interst', u'tourist']
[u'profit', u'take', u'push', u'share']
[u'properti', u'owner', u'send', u'bill', u'error']
[u'protest', u'arrest', u'visit']
[u'public', u'bar', u'british', u'inquiri']
[u'rain', u'dampen', u'research']
[u'region', u'council', u'health', u'reform']
[u'rescu', u'group', u'check', u'rescu', u'vessel']
[u'resid', u'urg', u'grin', u'bear', u'grasshopp']
[u'resid', u'urg', u'vote', u'postal', u'referendum']
[u'resourc', u'stock', u'buoy', u'market']
[u'respond', u'virgin', u'blue', u'servic']
[u'rivkin', u'return', u'jail']
[u'push', u'super', u'chang']
[u'scientist', u'examin', u'possibl', u'resist']
[u'scientist', u'hail', u'clone', u'advanc']
[u'senat', u'consid', u'trade', u'deal', u'sugar', u'effect']
[u'seven', u'charg', u'cannabi', u'haul']
[u'sheedi', u'back', u'school', u'game']
[u'worker', u'kill', u'build', u'collaps']
[u'korea', u'approv', u'troop', u'iraq']
[u'snowi', u'defend', u'hope', u'weekend', u'protest']
[u'soldier', u'question', u'black', u'hawk', u'crash']
[u'speed', u'paint', u'stoush', u'vicroad', u'council']
[u'springborg', u'win', u'back', u'parti']
[u'stanwel', u'magnesium', u'plan', u'stay', u'backburn']
[u'state', u'urg', u'follow', u'suit', u'super']
[u'stem', u'cell', u'debat']
[u'steward', u'accept', u'reduct', u'impos', u'jockey']
[u'storm', u'lash', u'hunter', u'valley']
[u'strata', u'titl', u'report', u'hand', u'today']
[u'streak', u'promis', u'victori', u'bangladesh']
[u'strong', u'western', u'flight', u'servic']
[u'struggl', u'health', u'servic', u'offer', u'leav']
[u'oyster', u'fresh', u'luck']
[u'teacher', u'mistaken', u'space', u'cake']
[u'theme', u'park', u'seeker', u'hurt', u'africa']
[u'general', u'surviv', u'grenad', u'attack']
[u'town', u'move', u'elder']
[u'transport', u'problem', u'ancient', u'stone', u'obelisk', u'emerg']
[u'turkey', u'get', u'mix', u'human', u'right', u'report', u'card']
[u'dead', u'afghanistan', u'bomb', u'blast']
[u'back', u'iraq', u'poll', u'date']
[u'unemploy', u'figur', u'increas']
[u'union', u'critic', u'flight', u'cancel']
[u'militari', u'observ', u'kill', u'congo']
[u'upgrad', u'plan', u'histor', u'cinema']
[u'upgrad', u'plan', u'sport', u'grind', u'surfac']
[u'firm', u'buy', u'shale', u'compani']
[u'investig', u'iraq', u'mole', u'possibl']
[u'militari', u'polic', u'soldier', u'kill', u'iraq']
[u'seek', u'guantanamo', u'media']
[u'soldier', u'accus', u'aid', u'qaeda']
[u'spain', u'lose', u'booti', u'colombian', u'courtroom']
[u'close', u'consul', u'greec']
[u'valencia', u'real', u'win', u'home', u'record']
[u'valentin', u'rocki', u'council']
[u'polic', u'ethic', u'chief', u'quit']
[u'vow', u'follow', u'super', u'plan']
[u'vieri', u'culprit', u'juve', u'book', u'final', u'ticket']
[u'council', u'appoint', u'ombudsman']
[u'warn', u'bushrang']
[u'warn', u'comeback', u'gather', u'steam']
[u'warwick', u'brown', u'water']
[u'warn', u'rail', u'disrupt']
[u'webster', u'captur', u'clubhous', u'lead']
[u'whitlam', u'push', u'vote', u'valu']
[u'woodward', u'deni', u'south', u'africa', u'coach']
[u'woodward', u'interest', u'coach', u'springbok']
[u'worker', u'discuss', u'safeti', u'colleagu', u'death']
[u'zaragoza', u'book', u'final', u'date', u'real']
[u'zimbabw', u'inflat', u'skyrocket']
[u'miss', u'ship', u'sink', u'turkey']
[u'govt', u'predict', u'budget', u'surplus']
[u'african', u'state', u'volunt', u'scrutini', u'peer']
[u'agassi', u'roddick', u'urg', u'drug']
[u'age', u'care', u'budget', u'agenda', u'howard', u'say']
[u'aid', u'research', u'add', u'inventor', u'hall', u'fame']
[u'alleg', u'robber', u'custodi']
[u'call', u'urgent', u'boost', u'ail', u'bulk', u'bill']
[u'anaesthetist', u'shortag', u'hit', u'mum']
[u'arab', u'languag', u'network', u'aim', u'polish', u'imag']
[u'bank', u'back', u'stay', u'rat']
[u'beatti', u'back', u'magnesium', u'plant', u'develop']
[u'bird', u'studi', u'find', u'high', u'fatal', u'rate']
[u'blast', u'kill', u'chechen', u'leader']
[u'bloodi', u'sunday', u'inquiri', u'hear', u'final', u'evid']
[u'bok', u'cash', u'boot', u'camp', u'tape']
[u'brack', u'govt', u'blame', u'doctor', u'shortag']
[u'bradford', u'good', u'panther']
[u'breakthrough', u'deal', u'seal', u'cyprus', u'uniti', u'talk']
[u'british', u'alarm', u'crop', u'trial']
[u'british', u'soldier', u'kill', u'southern', u'iraq']
[u'brown', u'concern', u'telstra', u'place', u'trade', u'deal']
[u'bush', u'appear', u'tighten', u'daytona', u'secur']
[u'bush', u'releas', u'nation', u'guard', u'file']
[u'chang', u'plan', u'amend']
[u'castro', u'ridicul', u'gaff', u'prone', u'bush']
[u'centrelink', u'say', u'mistak', u'grossli', u'exagger']
[u'chamber', u'drug', u'hear', u'thursday', u'report']
[u'china', u'execut', u'kill', u'peopl']
[u'china', u'push', u'ahead', u'gorg']
[u'china', u'shoot', u'moon', u'shoestr']
[u'china', u'queen', u'camplin']
[u'chocol', u'obsess', u'lead', u'physic', u'discoveri']
[u'christian', u'market', u'gibson', u'passion']
[u'cook', u'hold', u'cipo', u'stage']
[u'critic', u'attack', u'stanc', u'guantanamo', u'detent']
[u'crocodil', u'hunter', u'score', u'tourism', u'honour']
[u'crow', u'good', u'form', u'trial', u'match']
[u'cyclist', u'critic', u'impal', u'accid']
[u'cyprus', u'edg', u'closer', u'reunif']
[u'davi', u'say', u'regret', u'port', u'stephen']
[u'disappoint', u'firman', u'look', u'america', u'germani']
[u'dragon', u'humbl', u'rabbitoh', u'retain', u'shield']
[u'dragon', u'prim', u'chariti', u'clash']
[u'dull', u'caravaggio', u'paint', u'royal', u'collect']
[u'england', u'star', u'owen', u'accus', u'builder', u'huge', u'fraud']
[u'english', u'german', u'dutch', u'euro', u'hooligan', u'threat']
[u'essendon', u'recruit', u'swan']
[u'expect', u'high', u'nation', u'underway']
[u'fijian', u'polic', u'poverti', u'line']
[u'filipino', u'attempt', u'kiss']
[u'flame', u'book', u'grand', u'final']
[u'flame', u'book', u'grand', u'final', u'appear']
[u'charg', u'dope', u'scandal', u'appear', u'court']
[u'goodby', u'slaughtervill', u'hello', u'veggievill']
[u'health', u'inquiri', u'prioriti', u'ncoss']
[u'heat', u'upset', u'rower', u'olymp', u'aspir']
[u'hick', u'lawyer', u'question', u'rumsfeld', u'guantanamo']
[u'howard', u'visit', u'liber', u'parti', u'faith', u'tasmania']
[u'indian', u'govern', u'okay', u'pakistan', u'tour']
[u'indian', u'troop', u'kill', u'suspect', u'rebel', u'kashmir']
[u'indonesia', u'free', u'seamen', u'take', u'arm', u'pirat']
[u'injur', u'nalbandian', u'miss', u'bueno', u'air']
[u'iran', u'readi', u'export', u'nuclear', u'fuel', u'foreign', u'minist']
[u'irish', u'lover', u'give', u'wed', u'cart', u'blanch']
[u'israel', u'reject', u'australian', u'livestock', u'shipment']
[u'itali', u'fold', u'self', u'belief', u'ella']
[u'frazier', u'arrest', u'assault', u'charg', u'report']
[u'judg', u'want', u'jackson', u'trial', u'year']
[u'kean', u'warn', u'unit', u'young', u'gun', u'start', u'fire']
[u'king', u'good', u'breaker']
[u'kingz', u'upset', u'south', u'win', u'glori', u'marconi']
[u'labor', u'see', u'case', u'iraq', u'inquiri', u'build']
[u'labor', u'strengthen', u'poll', u'posit']
[u'liber', u'candid', u'resign', u'drug', u'claim']
[u'lloyd', u'boot', u'bomber', u'practic']
[u'lone', u'sailor', u'pluck', u'remot', u'southern', u'ocean']
[u'maher', u'lead', u'gabba', u'rout', u'warrior']
[u'guilti', u'chequ', u'fraud']
[u'remand', u'charlevill', u'murder']
[u'medico', u'push', u'safe', u'messag', u'valentin']
[u'mercuri', u'rise', u'record', u'level', u'adelaid']
[u'nasa', u'need', u'better', u'shuttl', u'plan', u'auditor', u'say']
[u'newcastl', u'toughen', u'plagiar', u'polici']
[u'springbok', u'coach', u'white', u'avoid', u'error']
[u'confid', u'rail', u'teeth', u'problem', u'iron']
[u'seek', u'detail', u'militari', u'plan']
[u'launch', u'yolngu', u'cultur', u'cours']
[u'fossil', u'unlock', u'mysteri', u'rare', u'rock']
[u'phelp', u'snap', u'gold', u'florida']
[u'philippoussi', u'pull', u'rotterdam', u'tournament']
[u'face', u'pressur', u'super', u'scheme']
[u'attitud', u'offens', u'communiti']
[u'polic', u'concern', u'miss', u'bald', u'hill']
[u'pope', u'call', u'courtship', u'chastiti']
[u'real', u'valdano', u'fin', u'lose', u'cool']
[u'roddick', u'agassi', u'advanc', u'jose', u'semi', u'final']
[u'russian', u'politician', u'say', u'kidnap']
[u'safina', u'face', u'struggl', u'clijster', u'pari', u'semi']
[u'extrem', u'alert', u'temperatur', u'soar']
[u'schumach', u'warn', u'william', u'renault', u'threat']
[u'scientist', u'fight', u'chocol', u'lover', u'worst', u'nightmar']
[u'scientist', u'warn', u'coral', u'reef', u'threat']
[u'search', u'fail', u'miss', u'brisban']
[u'singh', u'miss']
[u'snowstorm', u'blitz', u'greec', u'turkey']
[u'nation', u'harbour', u'doubt', u'merger']
[u'spanish', u'guantanamo', u'prison', u'send', u'home', u'face']
[u'taiwan', u'presidenti', u'candid', u'face']
[u'texa', u'church', u'tri', u'gun', u'rose', u'valentin']
[u'person', u'charg', u'perth', u'newsag', u'shoot']
[u'tiger', u'crippl', u'victoria', u'final', u'hop']
[u'train', u'action', u'delay', u'expect']
[u'union', u'sit', u'tight', u'amid', u'hydro', u'restructur']
[u'union', u'warn', u'railway', u'strike', u'action']
[u'free', u'bloodi', u'iraq', u'jailbreak']
[u'firm', u'buy', u'compani']
[u'give', u'cross', u'saddam', u'visit']
[u'issu', u'warn', u'north', u'korea', u'nuclear', u'program']
[u'launch', u'arab', u'satellit', u'station']
[u'soldier', u'kill', u'injur', u'land']
[u'trade', u'deficit', u'hit', u'record', u'high']
[u'valentin', u'univers', u'love', u'celebr']
[u'charg', u'onlin', u'law']
[u'victoria', u'brace', u'scorcher']
[u'webster', u'extend', u'port', u'stephen', u'lead']
[u'dead', u'road', u'accid']
[u'kill', u'earthquak', u'rock', u'northern', u'pakistan']
[u'abbott', u'deni', u'hurt', u'super', u'backflip']
[u'abbott', u'lobbi', u'senat', u'support', u'medicar']
[u'account', u'brisban', u'airport', u'incid', u'differ']
[u'govt', u'mull', u'relax', u'plan', u'control']
[u'govt', u'land', u'decis']
[u'activist', u'plan', u'commit', u'ceremoni']
[u'activist', u'tight', u'woodchip', u'shipment', u'protest']
[u'arsenal', u'henri', u'rule', u'chelsea', u'match']
[u'aussi', u'johnson', u'japanes', u'cross', u'countri']
[u'aussi', u'shrug', u'lanka', u'secur', u'fear']
[u'women', u'kiwi', u'rise', u'bowl', u'seri']
[u'author', u'downplay', u'brisban', u'airport', u'incid']
[u'bichel', u'strike', u'earli', u'warrior', u'chase', u'bull']
[u'bird', u'toll', u'hit']
[u'birmingham', u'frustrat', u'sunderland']
[u'british', u'govt', u'consid', u'split', u'report']
[u'british', u'govt', u'step', u'scare', u'campaign', u'cigarett']
[u'brit', u'origin', u'beagl']
[u'bush', u'rais', u'spectr', u'ballist', u'missil', u'attack']
[u'celtic', u'edg', u'closer', u'titl', u'ranger', u'drop', u'point']
[u'china', u'shop', u'centr', u'kill']
[u'cityrail', u'deni', u'driver', u'leav', u'idl']
[u'clijster', u'pierc', u'pari', u'open', u'final']
[u'complac', u'fulham', u'lucki', u'surviv']
[u'consortium', u'land', u'railway', u'contract']
[u'coupl', u'charg', u'child', u'cruelti']
[u'crew', u'bring', u'adelaid', u'blaze', u'control']
[u'davi', u'storm', u'port', u'stephen']
[u'death', u'toll', u'rise', u'moscow', u'pool', u'tragedi']
[u'disendors', u'liber', u'candid', u'deni', u'drug', u'link']
[u'dupui', u'win', u'milan', u'indoor', u'final']
[u'eagl', u'lift', u'drought', u'plagu', u'dali', u'lead']
[u'earnhardt', u'take', u'pole', u'daytona']
[u'case', u'steal', u'window', u'code']
[u'fishermen', u'step', u'access', u'campaign']
[u'juda', u'priest', u'drummer', u'jail', u'attempt']
[u'tour', u'champ', u'pantani', u'dead']
[u'afghan', u'demin', u'kill', u'suspect', u'taliban']
[u'franc', u'win', u'nation', u'open']
[u'french', u'leader', u'monaco', u'crash', u'home', u'defeat']
[u'gaza', u'settler', u'begin', u'protest', u'march', u'jerusalem']
[u'want', u'wider', u'pool', u'honour', u'list']
[u'ghan', u'put', u'spotlight', u'katherin', u'train', u'station']
[u'gibson', u'deni', u'passion', u'film', u'anti', u'semit']
[u'govern', u'hit', u'school', u'fund', u'claim']
[u'greenpeac', u'activist', u'arrest', u'woodchip', u'protest']
[u'heatwav', u'blame', u'melbourn', u'blackout']
[u'hickss', u'lawyer', u'condemn', u'appeal', u'process']
[u'ierodiaconou', u'thwart', u'camplin', u'titl', u'charg']
[u'injur', u'venus', u'pull', u'antwerp', u'event']
[u'investig', u'dismiss', u'qanta', u'near', u'miss']
[u'iran', u'nuclear', u'fuel', u'sale']
[u'iraq', u'prison', u'raid', u'prompt', u'border', u'control', u'plea']
[u'iraq', u'step', u'border', u'control']
[u'isra', u'bad', u'injur', u'firework', u'aviv']
[u'japanes', u'deep', u'dive', u'submarin', u'target', u'activ']
[u'jordan', u'charg', u'attack', u'plot']
[u'kabir', u'spar', u'bangladesh', u'blush', u'tour', u'open']
[u'labor', u'back', u'educ', u'union', u'campaign', u'govt']
[u'late', u'wicket', u'doom', u'redback', u'chase']
[u'late', u'wicket', u'doom', u'redback', u'chase']
[u'lawyer', u'hour', u'bill', u'scrutini']
[u'lazio', u'beat', u'empoli', u'fourth', u'seri']
[u'local', u'council', u'back', u'plan', u'prison']
[u'log', u'protest', u'releas', u'jail']
[u'die', u'perth', u'beach']
[u'injur', u'coal', u'termin', u'accid']
[u'life', u'support', u'nightclub', u'brawl']
[u'marathon', u'kiss', u'take', u'italian', u'valentin', u'breath', u'away']
[u'matern', u'love', u'affect', u'brain', u'like', u'romanc', u'studi']
[u'stage', u'winner', u'cipo', u'tour', u'plea']
[u'melbourn', u'swelter', u'night']
[u'candid', u'pull', u'iran', u'elect']
[u'mother', u'blame', u'polic', u'son', u'death']
[u'north', u'east', u'catch', u'wind', u'storm']
[u'govern', u'accus', u'payrol', u'backflip']
[u'obituari', u'maverick', u'climber', u'pantani', u'admir', u'despit']
[u'opinion', u'poll', u'heavi', u'swing', u'govt']
[u'pakistan', u'name', u'businessman', u'nuclear', u'probe']
[u'parmalat', u'investig', u'probe', u'swiss', u'bank', u'account']
[u'perth', u'train', u'chao', u'continu']
[u'senior', u'minist', u'deserv', u'rise', u'democrat']
[u'power', u'failur', u'caus', u'sewag', u'spill', u'adelaid']
[u'power', u'return', u'victorian', u'home']
[u'power', u'stay', u'second', u'striker', u'slip']
[u'press', u'fuel', u'mark', u'waugh', u'specul']
[u'probe', u'order', u'death', u'tragic', u'genius', u'pantani']
[u'protea', u'head', u'world', u'domin', u'claim', u'coach']
[u'protest', u'stall', u'woodchip', u'shipment']
[u'roddick', u'face', u'fish', u'jose', u'final']
[u'slight', u'cooler', u'record', u'scorcher']
[u'celebr', u'year', u'cricket']
[u'senior', u'burma', u'democraci', u'leader', u'move', u'hous']
[u'smith', u'england', u'squad', u'portug', u'friend']
[u'snowstorm', u'grind', u'plan', u'greec']
[u'south', u'australia', u'brace', u'scorch', u'weather']
[u'sydney', u'triathlon', u'sensat', u'seear']
[u'tarantino', u'head', u'cann', u'film', u'festiv', u'juri']
[u'taxpay', u'fund', u'sugar', u'industri', u'relief']
[u'teen', u'impal', u'sydney', u'fenc']
[u'bilbao', u'hold', u'draw', u'basqu', u'derbi']
[u'unit', u'knock', u'citi']
[u'thailand', u'report', u'sixth', u'death', u'bird']
[u'theron', u'win', u'berlin', u'prize', u'monster']
[u'timmon', u'put', u'taipan', u'past', u'croc']
[u'tour', u'franc', u'champ', u'pantani', u'dead']
[u'trucki', u'rescu', u'trap', u'burn', u'vehicl']
[u'tunisia', u'clinch', u'african', u'nation', u'glori']
[u'kill', u'ultralight', u'crash']
[u'offer', u'releas', u'danish', u'guantanamo', u'detaine']
[u'south', u'korea', u'troop', u'reloc', u'talk', u'fail']
[u'vail', u'want', u'review', u'wake', u'super', u'cut']
[u'valentin', u'arous', u'bizarr', u'act', u'love']
[u'venus', u'chase', u'million', u'dollar', u'plus', u'racket', u'antwerp']
[u'communiti', u'group', u'invit', u'share', u'crime', u'asset']
[u'watchdog', u'seek', u'assur', u'media', u'safeti']
[u'welsh', u'renaiss', u'continu', u'scot']
[u'zimbabw', u'polic', u'shut', u'valentin', u'march']
[u'rail', u'servic', u'cancel', u'sydney']
[u'abattoir', u'happi', u'asylum', u'seeker', u'decis']
[u'defend', u'sport', u'coverag']
[u'seek', u'extra']
[u'abernethi', u'hous', u'plan']
[u'cabinet', u'meet', u'belconnen']
[u'govt', u'say', u'heater', u'subsidi', u'stuff']
[u'share', u'sampl']
[u'airport', u'revamp', u'plan', u'take']
[u'servic', u'resum', u'year', u'break']
[u'airservic', u'chang']
[u'anti', u'psychot', u'drug', u'help', u'stutter', u'expert']
[u'argentina', u'power', u'past', u'zealand', u'seven', u'final']
[u'wednesday', u'survivor', u'offer', u'time', u'remind']
[u'asio', u'boss', u'defend', u'handl', u'brigitt', u'case']
[u'dupui', u'final', u'winner']
[u'aurora', u'target', u'rural', u'job']
[u'author', u'question', u'heat', u'competit']
[u'author', u'warn', u'risk']
[u'banana', u'grower', u'demand', u'philippin', u'continu']
[u'bangladesh', u'charg', u'harar']
[u'bash', u'put', u'hospit']
[u'basslink', u'oppon', u'ralli', u'cabl']
[u'beatti', u'say', u'howard', u'abandon', u'sugar', u'industri']
[u'beatti', u'talk', u'sugar', u'industri', u'issu']
[u'beef', u'price', u'tip', u'stay', u'bullish']
[u'bendigo', u'bank', u'announc', u'profit', u'boost']
[u'cruis', u'ship', u'head', u'albani']
[u'blackout', u'water', u'loss', u'spark', u'resid', u'anger']
[u'blaze', u'engulf', u'condobolin', u'school']
[u'bluescop', u'make', u'invest']
[u'boy', u'death', u'prompt', u'redfern', u'riot']
[u'brogden', u'aim', u'deni', u'crimin', u'right', u'vote']
[u'break', u'knuckl', u'end', u'blewett', u'season']
[u'buff', u'strip', u'undi', u'ralli']
[u'carr', u'urg', u'calm', u'redfern', u'riot']
[u'central', u'west', u'storm', u'leav', u'trail', u'damag']
[u'charg', u'expect', u'brawl']
[u'china', u'accus', u'sell', u'nuke', u'design', u'pakistan']
[u'china', u'pump', u'moon', u'explor']
[u'clijster', u'whip', u'pierc', u'pari', u'titl']
[u'coordin', u'energi', u'market', u'urg', u'moomba', u'blast']
[u'council', u'back', u'hotel', u'convent', u'centr', u'plan']
[u'cours', u'urg', u'girl', u'scienc']
[u'court', u'hear', u'woman', u'lock', u'kid', u'degre']
[u'cowboy', u'come', u'trounc', u'comet']
[u'croc', u'coach', u'look', u'focus', u'weekend', u'loss']
[u'csiro', u'staff', u'concern', u'direct']
[u'prepar', u'influx', u'student']
[u'dali', u'snap', u'drought']
[u'partnership', u'catch']
[u'date', u'map', u'hamper', u'firefight', u'inquest', u'hear']
[u'deadlin', u'loom', u'comment', u'chang', u'film', u'bodi']
[u'dead', u'fire', u'chines', u'templ', u'store']
[u'diver', u'help', u'pest']
[u'water', u'concern']
[u'doomsday', u'cult', u'raid', u'leader', u'verdict', u'near']
[u'doubl', u'injuri', u'blow', u'eagl']
[u'earnhardt', u'join', u'daytona', u'winner']
[u'elder', u'ensur', u'calm', u'redfern']
[u'elit', u'york', u'file', u'bankruptci']
[u'elliott', u'hodg', u'centuri', u'bushrang', u'charg']
[u'england', u'crush', u'itali', u'nation']
[u'demand', u'roadwork', u'eros']
[u'investig', u'sewag', u'spill']
[u'eriksson', u'deni', u'england', u'quit', u'rumour']
[u'ethanol', u'fuel', u'council', u'trial']
[u'feder', u'top', u'seed', u'rotterdam']
[u'govt', u'rule', u'airport', u'land', u'bypass']
[u'nuke', u'wast', u'plan', u'riski', u'committe']
[u'polic', u'injur', u'redfern', u'riot']
[u'threat', u'remain', u'central', u'victoria']
[u'focus', u'win', u'final', u'say', u'croc', u'coach']
[u'foundat', u'form', u'busi', u'plan']
[u'fuel', u'truck', u'explos', u'kill', u'uganda', u'polic']
[u'gardin', u'injuri', u'blow', u'eagl']
[u'plant', u'work', u'start', u'juli']
[u'good', u'news', u'worker', u'ail', u'food', u'distribut']
[u'govt', u'accus', u'hoard', u'iraq', u'report']
[u'govt', u'accus', u'withhold', u'bulk', u'bill', u'figur']
[u'govt', u'backbench', u'issu', u'away']
[u'govt', u'satisfi', u'telstra', u'oversea', u'outsourc']
[u'govt', u'blame', u'place', u'shortag']
[u'grape', u'bless', u'barossa', u'valley']
[u'green', u'quiet', u'atsic', u'leader', u'attack']
[u'group', u'keen', u'residenti', u'colleg', u'plan']
[u'heat', u'put', u'break', u'hill', u'student', u'hospit']
[u'heat', u'take', u'toll', u'public', u'ambul', u'worker']
[u'hockeyroo', u'whitewash', u'south', u'africa']
[u'hollywood', u'honour', u'geek', u'oscar', u'ceremoni']
[u'hospit', u'staff', u'highlight', u'fund', u'woe']
[u'hubbl', u'telescop', u'catch', u'glimps', u'unknown']
[u'hundr', u'turn', u'aspir', u'countri', u'singer']
[u'india', u'pakistan', u'restart', u'kashmir', u'talk']
[u'industri', u'disput', u'hit', u'perth', u'train', u'servic']
[u'inquest', u'begin', u'indonesian', u'fisherman', u'death']
[u'iraq', u'intellig', u'inquiri', u'inevit', u'labor']
[u'iraqi', u'want', u'saddam', u'status']
[u'iraq', u'polic', u'captur', u'saddam', u'associ']
[u'jaksch', u'win', u'tour']
[u'jaksch', u'win', u'tour', u'cook', u'perform']
[u'jobless', u'rate', u'southern']
[u'job', u'head', u'oversea', u'telstra', u'outsourc']
[u'juve', u'titl', u'hunt']
[u'kewel', u'viduka', u'miss', u'venezuela', u'friend']
[u'kewel', u'viduka', u'miss', u'venezuela', u'friend']
[u'kimberley', u'snake', u'help', u'anti', u'venom', u'fight']
[u'kuwait', u'approv', u'probe', u'fuel', u'sale', u'armi']
[u'labor', u'attack', u'garden', u'cost']
[u'labor', u'question', u'neutral', u'inquiri']
[u'lack', u'evid', u'end', u'bali', u'child']
[u'latham', u'taunt', u'howard', u'super', u'sacrific']
[u'chang', u'trigger', u'buyback', u'centr']
[u'lismor', u'host', u'super', u'council', u'hear']
[u'live', u'export', u'resum', u'portland']
[u'liverpool', u'councillor', u'claim', u'deceit', u'oasi']
[u'look', u'forward', u'pakistan', u'say', u'ganguli']
[u'malaysian', u'teenag', u'enter', u'boot', u'camp']
[u'charg', u'polic', u'station', u'blaze']
[u'charg', u'rockhampton', u'stab']
[u'charg', u'murder', u'brawl']
[u'extradit', u'brisban', u'child', u'death']
[u'face', u'charg', u'fatal', u'accid']
[u'hospitalis', u'sydney', u'machet', u'attack']
[u'manilla', u'council', u'seek', u'merger', u'polici']
[u'court', u'attempt', u'speed', u'traffic']
[u'court', u'fatal', u'road', u'crash']
[u'martin', u'say', u'wait', u'pension']
[u'await', u'busi', u'plan', u'respons']
[u'minist', u'float', u'rise', u'super']
[u'minor', u'parti', u'polit', u'rise']
[u'mistak', u'lead', u'phone', u'book', u'scrap']
[u'moomba', u'output', u'rise']
[u'age', u'care', u'bed', u'northern']
[u'wait', u'welcom', u'super']
[u'wait', u'hear', u'health', u'servic', u'debt', u'plan']
[u'appoint', u'chairman']
[u'chairman', u'resign']
[u'blood', u'wheatbelt', u'develop', u'commiss']
[u'newcastl', u'mayor', u'resist', u'wast', u'plan']
[u'zealand', u'target', u'pollock', u'world', u'record', u'drop']
[u'korean', u'leader', u'threaten', u'birthday']
[u'north', u'west', u'melt', u'februari', u'record']
[u'govt', u'announc', u'project']
[u'opposit', u'say', u'neglect', u'riot']
[u'govt', u'back', u'home', u'buyer', u'grant', u'boost']
[u'govt', u'urg', u'scrap', u'payrol']
[u'lament', u'nation', u'tourism', u'award']
[u'senat', u'support', u'increas', u'militari', u'presenc']
[u'dead', u'hundr', u'evacu', u'sever', u'storm', u'hit']
[u'ongo', u'tension', u'help', u'fuel', u'riot', u'academ', u'say']
[u'onlin', u'bank', u'come', u'mornington']
[u'minor', u'chang', u'plan', u'festival']
[u'pakistan', u'india', u'begin', u'histor', u'talk']
[u'pantani', u'magistr', u'dismiss', u'suicid', u'talk']
[u'parliament', u'condemn', u'anti', u'semit', u'incid']
[u'parliament', u'hous', u'hire', u'extra', u'secur']
[u'payris', u'privat', u'nurs', u'put', u'pressur']
[u'pearl', u'compani', u'fin', u'diver', u'death']
[u'photograph', u'ban', u'parliament']
[u'pine', u'sale', u'plan', u'promt', u'govt', u'talk']
[u'plan', u'video', u'tackl', u'domest', u'violenc']
[u'deni', u'inact', u'famili', u'assist']
[u'polic', u'investig', u'home', u'invas']
[u'poor', u'children', u'depriv', u'basic', u'cancer', u'care']
[u'pregnant', u'women', u'tell', u'expect', u'interst', u'deliveri']
[u'pressley', u'penalti', u'earn', u'heart', u'point']
[u'probe', u'begin', u'north', u'industri', u'accid']
[u'probe', u'continu', u'stink', u'wast', u'pond']
[u'probe', u'launch', u'dalmeni', u'home', u'claim']
[u'probe', u'launch', u'alcoa', u'industri', u'unrest']
[u'properti', u'invest', u'slow']
[u'public', u'servant', u'trial', u'rape', u'ethic']
[u'push', u'rural', u'youth', u'job', u'boost']
[u'camel', u'industri', u'explor', u'middl', u'east', u'market']
[u'question', u'rais', u'andamooka', u'water', u'suppli']
[u'rain', u'bring', u'locust', u'threat']
[u'rain', u'close', u'goldfield', u'busi']
[u'real', u'scrape', u'gasp', u'draw', u'valencia']
[u'report', u'eas', u'council', u'tension']
[u'respit', u'care', u'centr', u'open', u'cooma']
[u'rey', u'doubl', u'send', u'arsenal']
[u'rider', u'lead', u'tribut', u'fall', u'genius', u'pantani']
[u'risdon', u'lock', u'end']
[u'roddick', u'outlast', u'fish', u'claim', u'jose', u'crown']
[u'rodeo', u'centr', u'plan', u'move', u'closer', u'realiti']
[u'roma', u'trial', u'region', u'youth', u'mentor', u'scheme']
[u'rumour', u'ahead', u'pantani', u'autopsi']
[u'russia', u'launch', u'pool', u'collaps', u'probe']
[u'sandler', u'barrymor', u'offic', u'date']
[u'sport', u'urg', u'reconsid', u'weather', u'polici']
[u'search', u'suspend', u'miss', u'diver']
[u'sewag', u'plant', u'death', u'spark', u'strike', u'medic', u'care']
[u'solicitor', u'accus', u'receiv', u'compo', u'work']
[u'sale', u'hail', u'posit']
[u'springborg', u'claim', u'strong', u'support', u'coalit']
[u'lankan', u'fight', u'australia']
[u'stone', u'fruit', u'stew', u'heatwav']
[u'storm', u'lash', u'north', u'east', u'victoria']
[u'storm', u'batter', u'gunnedah', u'armidal']
[u'student', u'price', u'univers', u'opposit']
[u'supplier', u'consid', u'dairi', u'firm', u'list']
[u'sydney', u'commut', u'chao', u'continu']
[u'sydney', u'train', u'chao', u'continu', u'week', u'railcorp']
[u'tafe', u'head', u'say', u'cours', u'complaint']
[u'govt', u'urg', u'rethink', u'water', u'polici']
[u'thorp', u'play', u'phelp', u'rivalri']
[u'timber', u'compani', u'seek', u'damag', u'greenpeac']
[u'iraqi', u'baath', u'parti', u'member', u'catch', u'report']
[u'tourism', u'honour', u'whitsunday', u'busi']
[u'torchlight', u'oper', u'generat', u'oppn', u'concern']
[u'tourism', u'award', u'cave', u'attract']
[u'tuvalu', u'prepar', u'disappear', u'king', u'tide']
[u'iraqi', u'kill', u'anti', u'attack']
[u'union', u'angri', u'jail', u'staff', u'level']
[u'kill', u'uganda', u'crash']
[u'commit', u'june', u'handov']
[u'soldier', u'kill', u'baghdad', u'bomb', u'blast']
[u'soldier', u'arrest', u'iraqi', u'town', u'mayor']
[u'victim', u'prison', u'parol']
[u'viduka', u'face', u'socceroo']
[u'vietnam', u'report', u'bird', u'case']
[u'opposit', u'air', u'broom', u'school', u'concern']
[u'warn', u'deni', u'know', u'alleg', u'match', u'fixer']
[u'warn', u'face', u'controversi']
[u'warrior', u'sight', u'inning', u'upset']
[u'waugh', u'bow', u'grace']
[u'weather', u'bureau', u'fail', u'heat', u'riverland']
[u'weir', u'trump', u'ring', u'director', u'bafta']
[u'wheat', u'board', u'releas', u'winter', u'price']
[u'wildcat', u'hold', u'court', u'alic', u'spring']
[u'woman', u'drown', u'rushworth']
[u'woman', u'gang', u'bash', u'rob', u'alburi']
[u'wonderland', u'close']
[u'work', u'begin', u'water', u'pipelin']
[u'abbott', u'defend', u'privat', u'health', u'insur', u'rebat']
[u'fire', u'chief', u'drop', u'inquiri', u'bombshel']
[u'oppn', u'refer', u'adopt', u'law']
[u'adelaid', u'christian', u'leader', u'movi', u'preview']
[u'age', u'care', u'centr', u'resid', u'walk', u'condit']
[u'alcohol', u'inhal', u'doctor', u'worri']
[u'ancient', u'tree', u'hous', u'develop']
[u'anderson', u'defend', u'airspac', u'chang']
[u'anger', u'iraq', u'weapon', u'report', u'leak']
[u'french', u'govern', u'figur', u'convict']
[u'armi', u'apologis', u'soldier', u'east', u'timor', u'inquiri']
[u'asic', u'suspend', u'rivkin', u'medic', u'ground']
[u'athlet', u'legend', u'shirley', u'strickland', u'die']
[u'aussi', u'chase', u'run', u'lanka']
[u'australian', u'cycl', u'play', u'dope', u'code', u'concern']
[u'aziz', u'spearhead', u'bangladesh', u'victori']
[u'backbench', u'revolt', u'veteran', u'benefit']
[u'ballot', u'paper', u'post', u'despit', u'delay']
[u'basslink', u'protest', u'meet', u'union', u'cabl']
[u'bathhous', u'plan', u'drawn', u'object']
[u'beatti', u'claim', u'breakthrough', u'sugar', u'talk']
[u'beer', u'run', u'flood', u'birdsvill']
[u'reserv', u'surat', u'basin']
[u'bird', u'return', u'thailand']
[u'bluescop', u'steel', u'eye', u'firm']
[u'bolger', u'stay', u'natslib', u'merger', u'debat']
[u'boost', u'south', u'west', u'level']
[u'boundari', u'commiss', u'hear', u'merger', u'evid']
[u'brack', u'order', u'juvenil', u'justic', u'probe']
[u'britain', u'warn', u'saudi', u'terror', u'attack']
[u'bunburi', u'femal', u'harbour', u'master']
[u'busi', u'bash', u'latham', u'stanc']
[u'businessman', u'plead', u'guilti', u'drug', u'charg']
[u'resourc', u'protect', u'great', u'ocean']
[u'cattl', u'buffalo', u'herd', u'free']
[u'childcar', u'centr', u'lock', u'babi', u'insid']
[u'china', u'trade', u'mission', u'seek', u'olymp', u'contract']
[u'chines', u'internet', u'writer', u'charg', u'subvers']
[u'club', u'blame', u'poki', u'curb', u'develop']
[u'consid', u'beatti', u'elect', u'bypass']
[u'communiti', u'foundat', u'rais', u'fund']
[u'confer', u'attack', u'greenhous', u'problem']
[u'cooma', u'facelift']
[u'council', u'offer', u'youth', u'traineeship']
[u'council', u'play', u'convent', u'centr', u'delay']
[u'council', u'worri', u'rail', u'plan']
[u'custom', u'offic', u'intercept', u'glove', u'letter']
[u'dairi', u'firm', u'sharehold', u'list']
[u'dallaglio', u'doubt', u'scotland', u'clash']
[u'burst', u'fear', u'allay']
[u'burst', u'fear', u'prompt', u'evacu', u'town']
[u'dept', u'plan', u'review', u'fish', u'boat']
[u'disney', u'reject', u'comcast', u'takeov']
[u'donnelli', u'waratah', u'burk', u'injuri']
[u'doubt', u'cast', u'farm', u'buyout', u'plan', u'sugar', u'industri']
[u'doubt', u'rais', u'plan', u'stop', u'prison', u'vote']
[u'drop', u'centr', u'hop', u'reopen', u'soon']
[u'dyson', u'neck', u'knock', u'red', u'recal', u'heenan']
[u'environ', u'dept', u'get', u'whiff', u'wast', u'plant', u'woe']
[u'ethanol', u'refineri', u'plan', u'gather', u'pace']
[u'mobil', u'exec', u'take', u'woodsid']
[u'famili', u'homeless', u'fall', u'patterson']
[u'famili', u'sue', u'shock', u'father', u'death']
[u'farmer', u'salvo', u'silo']
[u'fear', u'diver', u'take', u'shark']
[u'feral', u'pig', u'threaten', u'cattl', u'council']
[u'damag', u'queanbeyan', u'club']
[u'firefight', u'quick', u'respond', u'kebab', u'shop', u'blaze']
[u'femal', u'indigen', u'minist', u'start']
[u'flood', u'bring', u'volunt']
[u'flood', u'toll', u'hotel', u'rail', u'line']
[u'forecast', u'tip', u'cooler', u'month', u'ahead']
[u'forum', u'hear', u'global', u'impact', u'tourism']
[u'grab', u'wnbl', u'coach', u'gong']
[u'franc', u'mull', u'peac', u'forc', u'haiti']
[u'freeman', u'reliev', u'limelight']
[u'free', u'trade', u'deal', u'good', u'region', u'report']
[u'fruit', u'picker', u'aplenti', u'need', u'goulburn', u'valley']
[u'funer', u'farewel', u'plane', u'crash', u'victim']
[u'futur', u'age', u'care', u'industri', u'question']
[u'gaze', u'rychart', u'tucker', u'free', u'agent', u'list']
[u'gladston', u'council', u'reject', u'land', u'offer']
[u'gold', u'deposit', u'better', u'think']
[u'govt', u'deni', u'leak', u'iraq', u'report']
[u'greec', u'olympian', u'arm', u'escort']
[u'green', u'light', u'plant']
[u'green', u'see', u'corner']
[u'green', u'contest', u'wagga', u'council', u'poll']
[u'group', u'stake', u'spot', u'nativ', u'titl', u'claim']
[u'group', u'meet', u'marina', u'pollut']
[u'group', u'tackl', u'mangrov', u'dieback']
[u'halliburton', u'suspend', u'iraq', u'food']
[u'hansen', u'appoint', u'black', u'assist']
[u'heat', u'take', u'toll', u'england', u'resid']
[u'hobart', u'investig']
[u'hous', u'price', u'tip', u'stabilis']
[u'howard', u'accept', u'famili', u'payment', u'problem']
[u'howard', u'hit', u'chang']
[u'howard', u'seek', u'uniti', u'super', u'split']
[u'hunter', u'win', u'sydney']
[u'hutchison', u'lead', u'higher']
[u'hutchison', u'share', u'leap', u'strong', u'sale']
[u'inquest', u'launch', u'griffith', u'shoot', u'death']
[u'iron', u'project', u'promis', u'port', u'hedland', u'boost']
[u'japan', u'probe', u'second', u'report', u'bird', u'case']
[u'jimmi', u'littl', u'undergo', u'kidney', u'transplant']
[u'landhold', u'plead', u'guilti', u'clear', u'charg']
[u'larkham', u'half', u'blue', u'clash']
[u'launceston', u'near', u'miss', u'forc', u'safeti', u'chang']
[u'lead', u'bull', u'fightback']
[u'lawyer', u'meet', u'wine', u'grower', u'disput']
[u'leaki', u'tanker', u'ban', u'sydney']
[u'leed', u'appeal', u'australia', u'viduka']
[u'lib', u'reject', u'nat', u'merger', u'idea']
[u'liverpool', u'councillor', u'admit', u'standard', u'breach']
[u'long', u'run', u'bush', u'blaze', u'near']
[u'mail', u'put', u'blue']
[u'charg', u'sydney', u'sieg']
[u'fear', u'tribal', u'curs', u'court', u'stop', u'payback']
[u'market', u'quiet', u'presid']
[u'matilda', u'coach', u'challeng', u'soccer', u'star']
[u'mayor', u'upbeat', u'despit', u'meet', u'minist']
[u'meet', u'aim', u'hospit', u'rescu', u'plan', u'stalem']
[u'million', u'spend', u'port', u'hedland', u'revamp']
[u'minist', u'invit', u'input', u'zone', u'legisl']
[u'mitez', u'get', u'govt', u'fund', u'pledg']
[u'moor', u'skipper', u'socceroo']
[u'muggi', u'weather', u'predict', u'perth']
[u'time', u'gympi', u'gold', u'offer']
[u'motorcyclist', u'face', u'speed', u'charg']
[u'murali', u'hop', u'race', u'warn', u'wicket', u'mark']
[u'mysteri', u'light', u'see']
[u'share', u'chairman']
[u'nation', u'plan', u'seek', u'wild', u'woe']
[u'nat', u'menkin', u'oust', u'burdekin']
[u'nebo', u'mayor']
[u'charter', u'tower', u'drive', u'push', u'fund']
[u'korea', u'mark', u'leader', u'birthday']
[u'plan', u'raze', u'riot', u'area']
[u'consid', u'hair', u'rais', u'boozer']
[u'court', u'refus', u'tribal', u'punish']
[u'onesteel', u'profit', u'slide']
[u'opera', u'rock', u'motorhead', u'hallow', u'stage']
[u'organis', u'consid', u'cancel', u'troubl', u'softbal']
[u'world', u'huge', u'diamond']
[u'pair', u'court', u'accus', u'jail', u'rape']
[u'pantani', u'death', u'unclear', u'autopsi']
[u'parent', u'guilti', u'aid', u'escape']
[u'parmalat', u'founder', u'daughter', u'arrest']
[u'passport', u'face', u'recognit']
[u'patterson', u'curs', u'reveal', u'health', u'benefit']
[u'plant', u'breakdown', u'caus', u'water', u'problem']
[u'minist', u'rape', u'investig']
[u'polic', u'complet', u'solomon', u'murder', u'inquiri']
[u'polic', u'investig', u'wagga', u'hors', u'bestial']
[u'policeman', u'disarm', u'redfern', u'stand']
[u'policeman', u'recov', u'redfern', u'knock']
[u'polic', u'ultralight', u'crash', u'victim']
[u'polic', u'probe', u'home', u'invas', u'attack']
[u'polic', u'probe', u'violent', u'home', u'invas']
[u'polic', u'seek', u'adelaid', u'food', u'store', u'bandit']
[u'polic', u'hunt', u'clue', u'miss', u'woman']
[u'pont', u'lead', u'aussi', u'warm']
[u'pont', u'restat', u'sledg', u'crackdown']
[u'possibl', u'wonderland', u'buyer', u'preserv', u'theme']
[u'presid', u'urg', u'iranian', u'vote']
[u'promis', u'roberston', u'snap', u'croc', u'spot']
[u'public', u'ask', u'slash', u'water']
[u'public', u'warn', u'council', u'water', u'fin']
[u'nat', u'assert', u'domin', u'coalit', u'talk']
[u'polic', u'seek', u'help', u'pitt', u'murder']
[u'record', u'harvest', u'predict']
[u'record', u'number', u'region', u'sizzl']
[u'recruit', u'drive', u'elit', u'women', u'cyclist']
[u'red', u'recal', u'heenan']
[u'region', u'play', u'role', u'anim', u'diseas', u'fight']
[u'regul', u'admit', u'breach', u'airspac', u'chang']
[u'report', u'urg', u'wast', u'dump', u'plan', u'abandon']
[u'research', u'consid', u'rural', u'road', u'accid']
[u'resid', u'swelter', u'record', u'break', u'heat']
[u'resid', u'protest', u'council', u'merger', u'plan']
[u'road', u'safeti', u'drive', u'nrma', u'blue', u'mountain', u'studi']
[u'ruddock', u'play', u'claim']
[u'ryder', u'hero', u'monti', u'warn', u'rooki']
[u'famili', u'push', u'poison', u'settlement']
[u'salon', u'want', u'client', u'hair']
[u'schalken', u'oust', u'ivanisev', u'indoor', u'event']
[u'scotland', u'wale', u'demand', u'poetic', u'represent', u'report']
[u'search', u'call', u'miss', u'diver']
[u'shirley', u'strickland', u'hunti', u'die', u'age']
[u'smith', u'anchor', u'protea', u'fightback']
[u'spanish', u'robberi', u'suspect', u'make']
[u'green', u'light']
[u'spirit', u'break', u'mar', u'distanc', u'record']
[u'lanka', u'aussi', u'challeng']
[u'staff', u'boost', u'troubl', u'sydney', u'hospit']
[u'stosur', u'bow', u'memphi']
[u'strong', u'dollar', u'influenc', u'rat', u'decis']
[u'student', u'spar', u'injuri', u'lose', u'wheel']
[u'survey', u'highlight', u'demand', u'doctor', u'servic']
[u'survey', u'show', u'busi', u'condit', u'dive']
[u'swan', u'want', u'extra', u'beat', u'sydney', u'heat']
[u'sydney', u'face', u'afternoon', u'train', u'delay']
[u'taliban', u'command', u'vow', u'fight']
[u'tamar', u'silt', u'problem', u'affect', u'tourism']
[u'taroom', u'resid', u'powerless', u'combat', u'heat']
[u'hous', u'price', u'rise', u'lead', u'australia']
[u'public', u'servant', u'prepar', u'strike']
[u'teacher', u'highlight', u'school', u'fund', u'inequ']
[u'teen', u'plead', u'guilti', u'chines', u'takeaway', u'bomb']
[u'telstra', u'consid', u'fairfax', u'takeov']
[u'territori', u'miss', u'defenc', u'opportun']
[u'territori', u'open', u'riot']
[u'kill', u'haiti', u'rebel', u'seiz', u'town']
[u'tiananmen', u'protest', u'leader', u'return', u'work']
[u'fleme', u'help', u'black', u'cap', u'level', u'seri']
[u'trial', u'consid', u'lucern', u'irrig', u'chang']
[u'tribun', u'urg', u'footbal', u'club', u'girl', u'decid']
[u'campus', u'cast', u'doubt', u'student', u'number']
[u'union', u'deliv', u'ultimatum', u'claim']
[u'scientist', u'claim', u'stem', u'cell', u'breakthrough']
[u'soldier', u'kill', u'bomb', u'blast']
[u'say', u'juvenil', u'justic', u'probe', u'come', u'late']
[u'wallabi', u'conserv', u'program', u'win', u'award']
[u'warn', u'bang']
[u'water', u'storag', u'heat', u'rise']
[u'wildcat', u'readi', u'repel', u'bullet']
[u'wisden', u'apologis', u'langer', u'gaff']
[u'woman', u'charg', u'defraud', u'perth', u'chariti']
[u'wondai', u'hous', u'block', u'snap']
[u'wonderland', u'busi', u'park']
[u'wool', u'market', u'worri', u'rise', u'dollar']
[u'work', u'continu', u'miner', u'sand', u'plan']
[u'work', u'finish', u'stanwel', u'park', u'school', u'revamp']
[u'goal', u'spree', u'rebound', u'indian', u'club']
[u'unmov', u'salari']
[u'airport', u'inform', u'session']
[u'road', u'lead', u'dinosaur', u'trail']
[u'anderson', u'accus', u'lay', u'bypass', u'trap']
[u'anglicar', u'challeng', u'govt', u'live']
[u'delay', u'statement', u'viduka', u'chipperfield']
[u'associ', u'boost', u'indigen', u'job']
[u'athlet', u'legend', u'shirley', u'strickland', u'die']
[u'author', u'inspect', u'leaki', u'tanker']
[u'bank', u'deal', u'eas', u'financi', u'strain', u'hockeyroo']
[u'baxter', u'detaine', u'drug', u'monitor']
[u'beatti', u'attack', u'anderson', u'tugun', u'bypass', u'fund']
[u'question', u'mayor', u'sydney', u'visit']
[u'bluescop', u'invest', u'china']
[u'clear', u'crossbow', u'attempt', u'murder']
[u'british', u'polic', u'strangl', u'woman', u'stuff']
[u'brogden', u'reveal', u'detail', u'babi', u'death']
[u'break', u'hill', u'firm', u'win', u'headfram', u'tender']
[u'break', u'hill', u'get', u'indigen', u'age', u'care', u'centr']
[u'brother', u'jail', u'molotov', u'cocktail', u'blaze']
[u'bull', u'lead', u'south', u'african', u'super', u'charg']
[u'bushrang', u'build', u'lead', u'tiger', u'declar']
[u'probe', u'wharf', u'project']
[u'campes', u'rat', u'wale', u'nation', u'chanc']
[u'canegrow', u'shoot', u'better', u'feder', u'sugar', u'deal']
[u'carpentaria', u'swimmer', u'give', u'jellyfish', u'warn']
[u'carr', u'shrug', u'caucus', u'critic']
[u'cat', u'dog', u'menu']
[u'accus', u'govt', u'port', u'promot', u'lazi']
[u'cofidi', u'sack', u'gaumont', u'admiss']
[u'congoles', u'musician', u'extradit', u'peopl', u'smuggl']
[u'conserv', u'parti', u'clash']
[u'coron', u'suspend', u'bowravill', u'inquest']
[u'corretja', u'back', u'boycott', u'rusedski', u'guilti']
[u'council', u'approv', u'bathhous', u'revamp']
[u'council', u'back', u'communiti']
[u'council', u'conced', u'wast', u'agreement']
[u'council', u'lay', u'tuna', u'farm', u'develop']
[u'councillor', u'back', u'growth', u'forc', u'merger']
[u'councillor', u'wollongong', u'lord', u'mayoralti']
[u'council', u'await', u'news', u'super', u'council', u'plan']
[u'council', u'year', u'test', u'merger', u'altern']
[u'council', u'boost', u'septic', u'tank', u'manag']
[u'creditor', u'decid', u'fate', u'fail', u'invest']
[u'croc', u'unsur', u'injur', u'reidi']
[u'crow', u'aim', u'finish']
[u'czech', u'student', u'return', u'testifi', u'rape']
[u'dalrympl', u'mayor', u'make', u'blood']
[u'darwin', u'prepar', u'bomb', u'commemor']
[u'defenc', u'offici', u'take', u'blame', u'iraq', u'leak']
[u'defenc', u'reject', u'train', u'area', u'communiti']
[u'democrat', u'report', u'damag', u'nuclear', u'dump', u'case']
[u'doctor', u'call', u'action', u'psychiatr', u'patient']
[u'dollar', u'break', u'cent', u'mark']
[u'dollar', u'edg', u'closer', u'cent', u'mark']
[u'doubt', u'cast', u'man', u'airport', u'weather', u'station']
[u'dragon', u'drop', u'thompson']
[u'drag', u'race', u'idea', u'green', u'light']
[u'children', u'injur', u'sydney', u'crash']
[u'employ', u'reject', u'actu', u'minimum', u'wage']
[u'eriksson', u'issu', u'owen', u'alert']
[u'fatal', u'crash', u'spark', u'plea', u'public', u'help']
[u'govt', u'reef', u'zone']
[u'feedlink', u'face', u'financi', u'woe']
[u'fingal', u'valley', u'doctor', u'repriev']
[u'firefight', u'warn', u'suburban', u'threat']
[u'flood', u'brace', u'rain']
[u'footbal', u'leagu', u'happi', u'girl', u'play']
[u'futur', u'mayor', u'poll', u'small', u'margin']
[u'gallop', u'address', u'albani', u'dental', u'wait', u'list']
[u'firm', u'power', u'generat', u'plant']
[u'girl', u'feel', u'effect', u'dehydr']
[u'gladston', u'councillor', u'shed', u'light', u'street', u'problem']
[u'goldfield', u'polic', u'illeg', u'drag', u'race', u'fear']
[u'govt', u'defend', u'age', u'care', u'accommod', u'delay']
[u'govt', u'improv', u'offer', u'union']
[u'govt', u'play', u'redfern', u'violenc']
[u'govt', u'pledg', u'environ', u'pacif']
[u'govt', u'review', u'vet', u'packag']
[u'govt', u'weigh', u'aid', u'fight']
[u'grain', u'merger', u'unlik', u'lead', u'deregul', u'saff']
[u'gulf', u'swimmer', u'warn', u'jellyfish', u'danger']
[u'heat', u'creat', u'fruit', u'harvest', u'job']
[u'henman', u'surviv', u'rumbl', u'robredo']
[u'high', u'hop', u'sheep', u'industri', u'turnaround']
[u'high', u'speed', u'rail', u'link', u'save', u'green', u'zone']
[u'hill', u'give', u'approv', u'bushmast', u'project']
[u'hill', u'reject', u'adfa', u'gang', u'rape', u'claim']
[u'hobart', u'face', u'sentenc', u'fatal', u'crash']
[u'howard', u'defend', u'veteran', u'benefit', u'rethink']
[u'howard', u'deni', u'govt', u'leak', u'intellig', u'report']
[u'index', u'point', u'strong', u'growth']
[u'indigen', u'candid', u'win', u'place', u'labor', u'senat']
[u'indigen', u'protest', u'complain', u'camp', u'shoot']
[u'inquiri', u'hear', u'liverpool', u'mayor', u'act']
[u'inquiri', u'reject', u'nuclear', u'wast', u'transport', u'plan']
[u'iran', u'train', u'blast', u'kill']
[u'italian', u'press', u'claim', u'pantani', u'die', u'cocain']
[u'japanes', u'economi', u'stun', u'observ', u'growth', u'spurt']
[u'kay', u'compani', u'liquid']
[u'keat', u'lay', u'vision', u'sydney', u'metropoli']
[u'kerri', u'edg', u'edward', u'latest', u'vote']
[u'kerri', u'track', u'wisconsin']
[u'labor', u'slam', u'immigr', u'check']
[u'labor', u'unlik', u'support', u'nurs', u'home']
[u'landhold', u'urg', u'help', u'rabbit', u'number']
[u'latham', u'aim', u'protect', u'forest', u'industri', u'job']
[u'latham', u'back', u'act', u'right', u'adopt', u'law']
[u'latham', u'reject', u'wacko', u'jacko', u'comparison']
[u'limit', u'south', u'east', u'forestri']
[u'lion', u'lash', u'salari', u'grumbler']
[u'lockyer', u'switch', u'bronco', u'ring', u'chang']
[u'locust', u'invad', u'western']
[u'locust', u'plagu', u'western']
[u'mackay', u'busi', u'confid', u'tip', u'wane']
[u'magistr', u'feel', u'blackmail', u'mental', u'health']
[u'mail', u'deliv', u'redback', u'crumbl']
[u'die', u'nightclub', u'bash', u'injuri']
[u'die', u'crash', u'near', u'bendigo']
[u'hospit', u'explos']
[u'court', u'homemad']
[u'marina', u'villag', u'prefer', u'bidder', u'name']
[u'market', u'hit', u'month', u'high']
[u'matilda', u'hop', u'match', u'gun']
[u'mcgrath', u'track', u'monday', u'comeback']
[u'melbourn', u'plead', u'guilti', u'gun', u'charg']
[u'miner', u'hall', u'fame', u'wont', u'close', u'door']
[u'minist', u'consid', u'plea', u'medic', u'retriev', u'unit']
[u'minist', u'widen', u'prevent', u'review']
[u'mitsubishi', u'say', u'adelaid', u'manufactur']
[u'moruya', u'hospit', u'meningococc']
[u'fail', u'boost', u'taroom', u'power', u'reliabl']
[u'urg', u'ghan', u'chang']
[u'gambier', u'consid', u'rat', u'chang']
[u'nake', u'bok', u'boot', u'camp', u'breakfast', u'can']
[u'nat', u'tamworth', u'polic', u'boost', u'pledg']
[u'newcastl', u'chancellor', u'call', u'quit']
[u'internet', u'worm', u'wriggl']
[u'site', u'fuel', u'fast', u'food', u'outlet', u'whyalla']
[u'nice', u'scoop', u'award']
[u'time', u'give', u'phone', u'servic', u'return']
[u'rule', u'allow', u'tradit', u'punish']
[u'onesteel', u'upbeat', u'despit', u'profit', u'slump']
[u'opposit', u'ask', u'govt', u'mothbal']
[u'paedophil', u'dolli', u'dunn', u'skip', u'appeal', u'hear']
[u'pakistan', u'feel', u'need', u'speed', u'ahead', u'india', u'seri']
[u'pakistan', u'india', u'agre', u'kashmir', u'talk']
[u'pakistan', u'india', u'sight', u'lower', u'threat']
[u'pakistan', u'train', u'crash', u'injur']
[u'pantani', u'climb', u'easi', u'descend', u'hard']
[u'perth', u'woman', u'acquit', u'murder']
[u'tell', u'nose', u'affair']
[u'polic', u'investig', u'shepparton', u'blaze']
[u'polic', u'liaison', u'offic', u'face', u'court', u'assault']
[u'polic', u'search', u'miss', u'rockhampton', u'teen']
[u'polic', u'seek', u'miss', u'tourist']
[u'pottharst', u'set', u'olymp', u'beach', u'volleybal', u'plan']
[u'power', u'woe', u'unlik', u'repeat']
[u'pratt', u'indian', u'second', u'round']
[u'public', u'crime', u'fight']
[u'public', u'urg', u'plan', u'farm', u'zone']
[u'unlik', u'nino', u'return', u'soon']
[u'rail', u'mainten', u'union', u'industri', u'action']
[u'rain', u'bring', u'good', u'western']
[u'rain', u'help', u'victoria', u'boost', u'winter', u'grain', u'crop']
[u'top', u'menu', u'bird', u'bite', u'asia']
[u'repco', u'roar', u'profit', u'return']
[u'resid', u'eas', u'water', u'restrict']
[u'resort', u'owner', u'shed', u'busi']
[u'rise', u'dollar', u'hit', u'line']
[u'roll', u'power', u'cut', u'like']
[u'rspca', u'urg', u'human', u'crab', u'kill']
[u'court', u'reject', u'school', u'offend', u'appeal']
[u'saudi', u'arabia', u'play', u'terror', u'warn']
[u'school', u'vehicl', u'crash']
[u'scientist', u'better', u'weather', u'predict']
[u'search', u'continu', u'miss', u'canadian', u'tourist']
[u'senat', u'cast', u'doubt', u'forest', u'salin', u'link']
[u'shirley', u'strickland', u'hunti', u'die', u'age']
[u'sixteen', u'roof', u'tear', u'wild', u'western', u'storm']
[u'slave', u'trial', u'juri', u'tell', u'acquit', u'assault']
[u'soccer', u'bodi', u'deni', u'give', u'viduka', u'leav']
[u'soccer', u'bodi', u'action', u'show']
[u'soccer', u'fan', u'wont', u'leav', u'result', u'pitch']
[u'southcorp', u'profit', u'despit', u'difficult', u'condit']
[u'southern', u'record', u'ross', u'river', u'virus', u'case']
[u'stallion', u'clinch', u'final', u'berth']
[u'steel', u'maker', u'post', u'news', u'plant', u'upgrad']
[u'steel', u'tube', u'port', u'revamp']
[u'strickland', u'hunti', u'inspir', u'sport', u'mum']
[u'student', u'hop', u'renew', u'visa']
[u'sugar', u'rep', u'meet', u'howard']
[u'suicid', u'bomber', u'kill', u'iraq']
[u'swim', u'stadium', u'setback', u'athen', u'game']
[u'sydney', u'rail', u'woe', u'impact', u'tamworth', u'more', u'servic']
[u'sydney', u'train', u'week']
[u'sydney', u'water', u'chief', u'step']
[u'takeov', u'battl', u'stag', u'wall']
[u'govt', u'mull', u'public', u'servant', u'wage', u'offer']
[u'task', u'forc', u'free', u'trade', u'advic']
[u'union', u'unconcern', u'delay', u'negoti']
[u'teen', u'court', u'assault', u'charg']
[u'telstra', u'deni', u'plan', u'fairfax']
[u'telstra', u'tell', u'fairfax', u'plan']
[u'thelma', u'louis', u'copycat', u'face', u'court']
[u'thousand', u'expect', u'final', u'respect', u'pantani']
[u'iraqi', u'civilian', u'kill', u'mortar']
[u'tonga', u'mourn', u'death', u'royal']
[u'tourism', u'group', u'back', u'wind', u'farm', u'opposit']
[u'tour', u'oper', u'urg', u'port', u'macquari']
[u'tribut', u'flow', u'shirley', u'strickland']
[u'tribut', u'flow', u'shirley', u'strickland', u'hunti']
[u'outsid', u'court']
[u'uncertain', u'futur', u'bermagui', u'cross']
[u'chancellor', u'reject', u'plagiar', u'retir']
[u'union', u'concern', u'nurs', u'shortag']
[u'union', u'member', u'cross', u'anti', u'basslink', u'protest']
[u'issu', u'eastern', u'europ', u'aid', u'warn']
[u'bishop', u'face', u'jail', u'accid']
[u'urg', u'polit', u'solut', u'haiti']
[u'valencia', u'fan', u'wont', u'leav', u'real', u'result', u'pitch']
[u'push', u'quick', u'handov', u'defenc', u'land']
[u'energi', u'crisi']
[u'forc', u'power']
[u'waratah', u'flight', u'forc', u'sydney']
[u'warn', u'prepar', u'battl', u'spin', u'king']
[u'warrior', u'rain', u'law', u'parad']
[u'warrnambool', u'council', u'get', u'basic']
[u'uncertain', u'power', u'restrict', u'impact']
[u'wheatbelt', u'resid', u'face', u'power', u'loss']
[u'woodsid', u'announc', u'profit']
[u'wood', u'withdraw', u'event']
[u'workingman', u'club', u'upbeat', u'meet']
[u'world', u'streaker', u'sentenc']
[u'strong', u'crowd', u'tip', u'alic', u'match']
[u'boost', u'water', u'save']
[u'investig', u'adelaid', u'radio', u'announc']
[u'abbott', u'talk', u'support']
[u'await', u'hangar', u'collaps', u'inquiri', u'fund']
[u'probe', u'mental', u'health', u'facil']
[u'traffic', u'control', u'chang', u'recommend']
[u'alinta', u'open', u'make', u'offer', u'sale', u'chang']
[u'almond', u'grower', u'trade', u'deal', u'concern']
[u'reveal', u'council', u'elect', u'team']
[u'fear', u'wait', u'list', u'hurt', u'privat']
[u'hop', u'child', u'abus']
[u'vow', u'child', u'abus', u'elect', u'issu']
[u'anger', u'hike', u'plan']
[u'annan', u'back', u'longer', u'stay', u'east', u'timor', u'peacekeep']
[u'anti', u'log', u'protest', u'blockad', u'weld', u'valley']
[u'armstrong', u'shock', u'mysteri', u'pantani', u'death']
[u'armi', u'boot', u'soldier', u'drug']
[u'armi', u'step', u'random', u'drug', u'test']
[u'armi', u'base', u'tank']
[u'activ', u'viduka']
[u'asia', u'endeavour', u'contain', u'bird']
[u'aspirin', u'help', u'prevent', u'cancer', u'studi']
[u'flat', u'profit', u'report', u'continu']
[u'attempt', u'continu', u'bring', u'control']
[u'audit', u'consid', u'marina', u'pollut']
[u'aussi', u'dollar', u'rise', u'weak', u'greenback']
[u'australia', u'lead', u'venezuela']
[u'australia', u'lead', u'venezuela', u'half', u'time']
[u'australian', u'soccer', u'activ', u'viduka']
[u'austrian', u'train', u'defend', u'acquit']
[u'author', u'probe', u'grave', u'concern']
[u'beachley']
[u'billiton', u'report', u'best', u'post', u'merger', u'profit']
[u'black', u'hole', u'tear', u'star', u'apart']
[u'blast', u'fear', u'hamper', u'iran', u'train', u'rescu']
[u'bluescop', u'fin', u'pollut', u'port', u'kembla']
[u'board', u'hous', u'condit', u'plan', u'approv']
[u'bomb', u'blast', u'injur', u'india']
[u'brilliant', u'clijster', u'sparkl', u'diamond', u'game']
[u'brindal', u'say', u'forestri', u'decis', u'rerun']
[u'brisban', u'compani', u'predict', u'glitter', u'futur']
[u'brisban', u'traffic', u'tunnel', u'plan', u'underway']
[u'brogden', u'call', u'carr', u'resign', u'babi', u'death']
[u'bushwalk', u'critic', u'hurt', u'cliff', u'fall']
[u'cabl', u'mishap', u'cut', u'phone', u'line']
[u'central', u'brace', u'heatwav']
[u'chamber', u'ask', u'explain', u'posit', u'test']
[u'clijster', u'announc', u'love', u'match']
[u'correct', u'worker', u'escal', u'disput']
[u'council', u'consid', u'julia', u'creek', u'industri', u'estat']
[u'council', u'await', u'abattoir', u'debt', u'decis']
[u'council', u'take', u'fight', u'mozzi']
[u'court', u'hear', u'defend', u'proud', u'slave']
[u'court', u'tell', u'long', u'jail', u'term', u'need', u'boat', u'owner']
[u'crew', u'keep', u'iran', u'train', u'blast', u'site']
[u'criddl', u'reject', u'govt', u'competit', u'polici', u'stanc']
[u'czech', u'tourist', u'rape', u'trial', u'continu']
[u'darwin', u'rememb', u'japanes', u'bomb']
[u'hoya', u'eye', u'middleweight', u'crown']
[u'detail', u'trade', u'plan', u'east', u'asia', u'releas']
[u'devic', u'test', u'helicopt', u'escap', u'skill']
[u'dial', u'drink', u'driver', u'line', u'plan']
[u'boom', u'prompt', u'lead', u'paint', u'warn']
[u'dollar', u'slip', u'cent']
[u'dolli', u'creator', u'defend', u'human', u'clone', u'research']
[u'doyl', u'slam', u'transport', u'shake']
[u'continu', u'monitor', u'torbreck', u'blaze']
[u'earli', u'warn', u'go', u'canberra', u'threat']
[u'elliott', u'lose', u'bankruptci', u'appeal']
[u'england', u'portug', u'share', u'spoil']
[u'esper', u'hop', u'boost', u'skill', u'worker', u'rank']
[u'announc', u'partial', u'ceasefir']
[u'etsa', u'seek', u'public', u'back', u'kangaroo']
[u'fairfax', u'amcor', u'lend', u'leas', u'announc', u'profit']
[u'fairfax', u'say', u'telstra', u'takeov', u'imaginari']
[u'farina', u'posit', u'caraca', u'draw']
[u'farmer', u'consid', u'legal', u'action', u'tenterden', u'blaze']
[u'farmer', u'fear', u'rat', u'rise']
[u'farmer', u'fight', u'toxic', u'wast', u'plan', u'govt']
[u'farm', u'group', u'back', u'eagl', u'attack', u'research']
[u'farm', u'group', u'question', u'blackout', u'notif', u'scheme']
[u'fear', u'air', u'plan', u'alcohol', u'trial']
[u'fear', u'region', u'senior', u'forget', u'taxi', u'scheme']
[u'fear', u'takeov', u'derail', u'hunter', u'job']
[u'govt', u'defend', u'close', u'weather', u'bureau']
[u'govt', u'end', u'drug', u'alcohol', u'servic', u'fund']
[u'ferrari', u'badoer', u'unscath', u'imola', u'crash']
[u'fifa', u'investig', u'viduka']
[u'control', u'surpris', u'bushfir', u'death']
[u'flight', u'centr', u'announc', u'profit']
[u'franc', u'hunt', u'philippin', u'freighter', u'dead']
[u'freight', u'cost', u'lift', u'yulara', u'supermarket', u'price']
[u'friend', u'wrap', u'champion', u'host', u'draw', u'euro']
[u'text', u'pantani', u'note']
[u'gallop', u'tackl', u'power', u'crisi']
[u'gather', u'tell', u'famili', u'immun', u'child']
[u'geraldton', u'await', u'cruis', u'ship', u'arriv']
[u'gold', u'make', u'comeback', u'invest', u'option']
[u'gough', u'give', u'tour', u'chanc']
[u'govt', u'defend', u'iraq', u'weapon', u'leak', u'sourc']
[u'govt', u'launch', u'illeg', u'immigr', u'hotlin']
[u'govt', u'urg', u'releas', u'fine', u'print']
[u'group', u'form', u'consid', u'sheep', u'diseas', u'effort']
[u'hadden', u'address', u'ballarat', u'polic', u'number']
[u'haitian', u'rebel', u'pois', u'gain']
[u'health', u'expert', u'rule', u'earlier']
[u'heat', u'measur', u'invok', u'canberra', u'match']
[u'hewitt', u'cruis', u'rotterdam', u'second', u'round']
[u'court']
[u'weather', u'boost', u'tamworth', u'water']
[u'howard', u'say', u'domest', u'violenc']
[u'ijaz', u'call', u'pakistan', u'india', u'match']
[u'india', u'pakistan', u'unveil', u'roadmap', u'peac']
[u'industri', u'action', u'avert', u'power', u'station']
[u'isra', u'nuclear', u'free']
[u'jackson', u'win', u'award']
[u'japan', u'prepar', u'releas', u'flavel', u'black']
[u'jone', u'regret', u'associ', u'coach']
[u'judg', u'speak', u'good', u'charact', u'crossbow', u'case']
[u'june', u'council', u'find', u'medic', u'centr', u'site']
[u'labor', u'blast', u'week', u'claim']
[u'lake', u'user', u'warn', u'blue', u'green', u'alga']
[u'gasp', u'goal', u'rob', u'socceroo', u'victori']
[u'latham', u'attack', u'parent', u'young', u'rioter']
[u'latham', u'champion', u'stay', u'home', u'dad']
[u'latham', u'promis', u'media', u'divers']
[u'launceston', u'acquit', u'rape', u'charg']
[u'leader', u'deni', u'domin', u'plan']
[u'lectur', u'riski', u'intellig', u'offici']
[u'leed', u'battl', u'viduka']
[u'lehmann', u'make', u'test', u'case', u'battl', u'redback']
[u'leski', u'grandmoth', u'suspect', u'domaszewicz']
[u'malaysia', u'lodg', u'complaint', u'bush']
[u'accus', u'rap', u'student', u'face', u'committ']
[u'grant', u'bail', u'aircraft', u'threat', u'charg']
[u'hold', u'plane', u'threat']
[u'jail', u'hunter', u'stand']
[u'court', u'fals', u'belief', u'charg']
[u'martin', u'make', u'roddick', u'work', u'advanc']
[u'mayor', u'candid', u'highlight', u'poll', u'import']
[u'mayor', u'upbeat', u'possibl', u'refshaug', u'meet']
[u'mcgradi', u'wont', u'comment']
[u'gibson', u'father', u'say', u'holocaust', u'exagger']
[u'merger', u'council', u'lose', u'coastal', u'land']
[u'minist', u'highlight', u'region', u'wealth', u'creation']
[u'murder', u'appeal', u'hear', u'robber', u'mean', u'harm']
[u'nasa', u'rover', u'deep', u'mar']
[u'nation', u'award', u'recognis', u'werri', u'beach', u'effort']
[u'nat', u'lament', u'lose', u'produc', u'opportun']
[u'sale', u'januari']
[u'newcastl', u'polic', u'forens', u'upgrad']
[u'newmont', u'mine', u'relinquish', u'bronzew']
[u'technolog', u'make', u'scent', u'internet']
[u'major', u'worri', u'wood']
[u'govt', u'tighten', u'coastal', u'protect', u'polici']
[u'parliament', u'hear', u'plea', u'tamworth', u'polic']
[u'tafe', u'teacher', u'announc', u'strike']
[u'govt', u'monitor', u'financi', u'troubl', u'council']
[u'grower', u'govt', u'tell']
[u'bus', u'north', u'west']
[u'painter', u'grab', u'south', u'australian', u'open', u'lead']
[u'paint', u'save', u'slade', u'hous', u'blaze']
[u'paper', u'compani', u'say', u'loss', u'inevit']
[u'pentagon', u'offic', u'face', u'probe', u'iraq', u'claim']
[u'pilot', u'kill', u'highland', u'plane', u'crash']
[u'condemn', u'islam', u'leader', u'alleg', u'jihad']
[u'latham', u'tour', u'gippsland']
[u'polic', u'claim', u'ecstasi', u'haul', u'disrupt', u'drug', u'ring']
[u'polic', u'happi', u'drink', u'driver', u'hotlin']
[u'policeman', u'admit', u'buy', u'drug', u'inform']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'probe', u'launceston', u'shoot']
[u'polic', u'puzzl', u'miss', u'canadian', u'tourist']
[u'polic', u'crack', u'south', u'hedland', u'theft']
[u'polish', u'board', u'floor', u'briton', u'report']
[u'port', u'macquari', u'hospit', u'offer', u'lifelin']
[u'power', u'crisi', u'claim', u'second', u'scalp']
[u'power', u'breez', u'inland', u'mayor']
[u'produc', u'angri', u'green', u'light', u'import']
[u'profit', u'long', u'ail', u'leagu', u'club']
[u'prosecut', u'continu', u'case', u'slave', u'trial']
[u'public', u'servant', u'consid', u'offer']
[u'public', u'urg', u'vietnam', u'memori']
[u'qanta', u'fli', u'black']
[u'govt', u'urg', u'probe', u'dengu', u'fever', u'respons']
[u'cross', u'warn', u'barrier']
[u'redfern', u'rememb', u'thoma', u'hickey']
[u'redfern', u'resid', u'gather', u'hickey', u'memori']
[u'redfern', u'hold', u'hickey', u'memori']
[u'red', u'break', u'super', u'drought']
[u'reinstat', u'drug', u'posit', u'soldier', u'sign']
[u'rescuer', u'clear', u'work', u'train', u'wreck']
[u'resid', u'urg', u'curb', u'water']
[u'rural', u'press', u'outlin', u'harri', u'futur', u'profit', u'climb']
[u'governor', u'tour', u'wattl', u'rang']
[u'oppn', u'forc', u'crown', u'leas', u'amend']
[u'scone', u'woman', u'get', u'gong', u'nsws', u'rural', u'woman']
[u'shell', u'prosecut', u'geelong', u'spill']
[u'smoker', u'start', u'china', u'shop', u'centr', u'blaze']
[u'socceroo', u'confid', u'despit', u'miss', u'star']
[u'socceroo', u'lead', u'venezuela']
[u'socceroo', u'miss', u'gasp', u'goal']
[u'soldier', u'interven', u'villag', u'riot']
[u'lanka', u'final', u'squad', u'seri']
[u'lanka', u'plan', u'slow', u'tortur', u'aussi', u'batsmen']
[u'studi', u'find', u'adelaid', u'best', u'place', u'busi']
[u'sugar', u'resist', u'bail', u'price']
[u'supermodel', u'final', u'privaci', u'appeal']
[u'suspect', u'tanker', u'allow', u'dock', u'sydney']
[u'sydney', u'face', u'train', u'cut']
[u'sydney', u'ferri', u'accid', u'probe']
[u'tabcorp', u'announc', u'profit', u'despit', u'smoke', u'ban']
[u'taiwan', u'presid', u'promis', u'independ']
[u'tare', u'mayor', u'candid', u'back', u'merger']
[u'team', u'side', u'season', u'clash']
[u'tear', u'farewel', u'cycl', u'champ', u'pantani']
[u'teenag', u'arrest', u'shoot', u'incid']
[u'thousand', u'expect', u'visit', u'bega']
[u'tonga', u'settl', u'miss', u'million', u'lawsuit', u'king']
[u'toowoomba', u'council', u'drive', u'park', u'push']
[u'troop', u'insurg', u'exchang', u'baghdad', u'prison']
[u'iran', u'paper', u'shut', u'report', u'khamenei', u'letter']
[u'toxic', u'pollut', u'ahead']
[u'underfund', u'caus', u'hospit', u'wait', u'list', u'growth']
[u'compani', u'profit', u'fund', u'bungl', u'labor']
[u'split', u'like', u'widen']
[u'soldier', u'charg', u'aid', u'qaeda']
[u'climb', u'strickland', u'get', u'state', u'send']
[u'govt', u'put', u'dental', u'treatment']
[u'govt', u'sack', u'western', u'power', u'chairman']
[u'wall', u'slip', u'quiet', u'trade']
[u'warn', u'stake', u'test', u'claim', u'tiger', u'crumbl']
[u'watchdog', u'know', u'trade', u'risk']
[u'strickland', u'state', u'send']
[u'weather', u'bureau', u'highlight', u'heatwav', u'sever']
[u'weekend', u'tip', u'scorcher']
[u'whitsunday', u'search', u'find', u'miss', u'man', u'bodi']
[u'woman', u'charg', u'redfern', u'riot']
[u'work', u'resum', u'sewag', u'treatment', u'plant']
[u'wrong', u'form', u'invalid', u'marriag']
[u'keep', u'anim', u'cool', u'heatwav']
[u'cattl', u'southern', u'heatwav']
[u'aborigin', u'protest', u'end', u'canberra']
[u'age', u'inquiri', u'head', u'break', u'hill']
[u'airlin', u'say', u'traffic', u'law', u'slow']
[u'allenbi', u'touch', u'leader']
[u'appl', u'grower', u'condemn', u'import', u'plan']
[u'appl', u'grower', u'fear', u'import', u'diseas', u'threat']
[u'arrest', u'fraud', u'scam']
[u'arsenal', u'wont', u'slip', u'kean']
[u'probe', u'kefus', u'palsi', u'treatment']
[u'aunt', u'refus', u'bail', u'riot', u'charg']
[u'aussi', u'trio', u'earn', u'olymp', u'dive', u'spot']
[u'author', u'fear', u'dengu', u'outbreak', u'cairn']
[u'baisya', u'rafiqu', u'lift', u'bangladesh']
[u'banana', u'industri', u'unbend', u'import']
[u'bank', u'face', u'safeti', u'law']
[u'bevan', u'lanka', u'clash']
[u'crowd', u'like', u'rodeo']
[u'biota', u'share', u'bolster', u'bird', u'windfal']
[u'bomber', u'docker', u'darwin', u'richmond']
[u'bomb', u'scare', u'ground', u'moroccan', u'flight']
[u'borja', u'bid', u'beckham', u'boot', u'real']
[u'bottl', u'plant', u'help', u'amcor', u'profit']
[u'brain', u'scan', u'placebo', u'effect', u'head']
[u'brisban', u'die', u'polic', u'scuffl']
[u'buck', u'bull', u'contest', u'head', u'rockhampton']
[u'hit', u'hobart', u'schoolgirl']
[u'busi', u'ethic', u'index', u'australian', u'compani']
[u'canada', u'compens', u'chemic', u'warfar', u'test', u'vet']
[u'cane', u'farmer', u'consid', u'altern', u'crop']
[u'crash', u'kill', u'south', u'hobart']
[u'celtic', u'verg', u'rewrit', u'record', u'book']
[u'chamber', u'discov', u'fate', u'week']
[u'clark', u'sack', u'immigr', u'minist']
[u'compani', u'busi', u'ethic', u'scrutini']
[u'council', u'consid', u'shire', u'secur', u'guard', u'boost']
[u'council', u'traffic', u'rethink']
[u'council', u'take', u'hold', u'belmont', u'hospit', u'plan']
[u'council', u'consid', u'fill', u'vacanc']
[u'court', u'award', u'lose']
[u'court', u'find', u'prison', u'guilti', u'rap', u'fellow']
[u'court', u'hear', u'slave', u'master', u'proud']
[u'consid', u'student', u'rise']
[u'crack', u'tanker', u'enter', u'sydney', u'harbour']
[u'crew', u'melbourn', u'paint', u'spill']
[u'crocodil']
[u'croc', u'face', u'match', u'giant']
[u'croc', u'look', u'home', u'giant']
[u'csiro', u'discov', u'potenti', u'bird', u'treatment']
[u'dali', u'river', u'resid', u'flood']
[u'chelsea', u'pursuit', u'gunner']
[u'defenc', u'wind', u'case', u'alleg', u'slaveri', u'trial']
[u'deniliquin', u'council', u'candid', u'slow', u'nomin']
[u'denmark', u'ratepay', u'decid', u'councillor']
[u'dodemaid', u'waca']
[u'dollar', u'euro', u'slip', u'high']
[u'doubt', u'rais', u'port', u'consult', u'period']
[u'dreamworld', u'welcom', u'babi', u'croc']
[u'eastern', u'state', u'sweat']
[u'elliott', u'miss', u'payment', u'deadlin']
[u'make', u'anti', u'semit', u'stand']
[u'eurobodalla', u'move', u'closer', u'realiti']
[u'europ', u'launch', u'comet', u'lander']
[u'farmer', u'face', u'land', u'clear', u'sentenc']
[u'feder', u'polic', u'target', u'paedophil', u'bali']
[u'govt', u'accus', u'attempt', u'censor', u'chief']
[u'ferri', u'crash', u'sydney']
[u'fifa', u'collis', u'cours', u'world', u'club', u'plan']
[u'fina', u'say', u'aquat', u'roof', u'readi', u'game']
[u'firefight', u'clean', u'chemic', u'drum', u'spill']
[u'firefight', u'watch', u'scrubland']
[u'firefight', u'high', u'alert', u'threat']
[u'firm', u'crime', u'prevent', u'scheme', u'workshop']
[u'fletcher', u'want', u'council', u'free', u'polit', u'faction']
[u'flood', u'cut', u'capit']
[u'enron', u'chief', u'front', u'court']
[u'palm', u'council', u'chair', u'stand']
[u'kill', u'indian', u'airforc', u'plough']
[u'french', u'veteran', u'robin', u'break', u'cycl', u'omerta']
[u'fring', u'festiv', u'kick', u'adelaid']
[u'govt', u'author', u'defend', u'appl', u'report']
[u'govt', u'mull', u'assist', u'produc', u'import']
[u'govt', u'kimberley', u'condit']
[u'grain', u'grower', u'earli', u'mous', u'plagu', u'warn']
[u'groom', u'edg', u'clear', u'adelaid']
[u'group', u'urg', u'commonwealth', u'bypass', u'impass']
[u'grower', u'fear', u'import', u'industri', u'threat']
[u'guantanamo', u'releas', u'label', u'polit', u'stunt']
[u'gunningbar', u'weir', u'revamp']
[u'guyra', u'council', u'hous', u'land', u'avail']
[u'haitian', u'rebel', u'cede', u'aristid', u'vow', u'fight']
[u'hama', u'deni', u'gaza', u'control', u'plan']
[u'heart', u'complaint', u'forc', u'jakovich', u'eagl']
[u'heat', u'delay', u'junior', u'lifesav', u'titl']
[u'heat', u'kill', u'quirindi', u'cattl']
[u'henin', u'withdraw', u'diamond', u'game']
[u'hewitt', u'feder', u'battl', u'rotterdam', u'quarter']
[u'highway', u'bypass', u'option']
[u'target', u'spinner', u'suspect', u'action']
[u'indigen', u'concern', u'delay', u'clean', u'plan']
[u'inquest', u'tell', u'need', u'chang', u'legisl']
[u'inquiri', u'hear', u'policeman', u'steal', u'drug', u'pocket']
[u'iran', u'deni', u'nuclear', u'activ', u'militari', u'base']
[u'iran', u'presid', u'order', u'train', u'probe']
[u'iran', u'reform', u'lose', u'poll']
[u'iraqi', u'shiit', u'offici', u'agre', u'brief', u'poll', u'delay']
[u'israel', u'abandon', u'road', u'sharon']
[u'kean', u'hint', u'return', u'irish', u'squad']
[u'kerri', u'get', u'union', u'back']
[u'knee', u'injuri', u'knock', u'grace']
[u'krige', u'hit', u'choic', u'springbok', u'coach']
[u'labor', u'pressur', u'board']
[u'latham', u'back', u'retrospect', u'terror', u'law']
[u'latham', u'flag', u'terror', u'review', u'bring']
[u'latham', u'plan', u'tour', u'region', u'victoria']
[u'latham', u'tour', u'margin', u'seat']
[u'latham', u'vow', u'steal', u'generat', u'apolog']
[u'leed', u'court', u'viduka']
[u'lose', u'artist', u'boyd', u'properti']
[u'arrest', u'melbourn', u'british', u'murder']
[u'fin', u'illeg', u'abattoir']
[u'critic', u'condit', u'geelong', u'shoot']
[u'jail', u'attack', u'woman']
[u'kill', u'ralli', u'tasmania']
[u'releas', u'bail', u'wake', u'assault']
[u'market', u'finish', u'week', u'note']
[u'mass', u'anim', u'death', u'spark', u'trench']
[u'matilda', u'match', u'postpon', u'heat', u'warn']
[u'upbeat', u'hunter', u'construct', u'industri']
[u'medicar', u'talk', u'remain', u'deadlock']
[u'meet', u'hear', u'dairi', u'woe']
[u'melbourn', u'arrest', u'murder', u'probe']
[u'wed', u'magazin']
[u'milan', u'miss', u'maldini', u'factor', u'derbi', u'clash']
[u'moya', u'extend', u'unbeaten', u'bueno', u'air']
[u'fight', u'ravensthorp', u'infrastructur', u'fund']
[u'nasa', u'plan', u'shuttl', u'rescu', u'mission']
[u'nauru', u'strike', u'econom', u'deal', u'china']
[u'manganes', u'plan']
[u'nigeria', u'deport', u'economist', u'correspond']
[u'nightmar', u'start', u'red']
[u'iraq', u'poll', u'handov']
[u'progress', u'train', u'driver', u'shortag', u'inquiri', u'tell']
[u'govt', u'outlin', u'west', u'dapto', u'develop', u'plan']
[u'minist', u'surviv', u'deport', u'scandal']
[u'olymp', u'movement', u'say', u'strickland', u'award', u'fit']
[u'opportun', u'probe', u'mysteri', u'mar', u'soil']
[u'ozzi', u'osbourn', u'fear']
[u'pair', u'mean', u'harm', u'dead', u'year']
[u'pakistan', u'nuclear', u'scientist', u'send', u'uranium', u'libya']
[u'parmalat', u'mislead', u'market', u'year', u'italian']
[u'perth', u'judg', u'jail', u'drunken', u'pilot']
[u'petit', u'amnesti', u'circul']
[u'photo', u'exhibit', u'strip', u'bare', u'older', u'bodi', u'percept']
[u'pilot', u'welcom', u'airspac', u'turn']
[u'piranha', u'fall', u'fish', u'boat']
[u'manus', u'island', u'detent', u'deal']
[u'polic', u'drink', u'driver', u'plan']
[u'polic', u'free', u'german', u'bondag', u'penguin']
[u'polic', u'investig', u'adelaid', u'shoot']
[u'polic', u'alcohol', u'law']
[u'polic', u'probe', u'wagga', u'unit', u'blaze']
[u'polic', u'releas', u'man', u'imag', u'murder', u'case']
[u'poll', u'open', u'disput', u'iranian', u'elect']
[u'port', u'inquiri', u'take', u'local', u'submiss']
[u'post', u'mortem', u'hold', u'tourist', u'bodi']
[u'powercor', u'probe', u'blackout', u'caus']
[u'power', u'disput', u'leav', u'melbourn', u'busi']
[u'power', u'stay', u'second', u'olymp']
[u'power', u'union', u'want', u'minist', u'sack']
[u'pratt', u'india', u'semi', u'final']
[u'public', u'servant', u'front', u'court', u'charg']
[u'public', u'consult', u'cultur', u'precinct', u'plan']
[u'public', u'warn', u'avoid', u'want', u'shoot']
[u'hop', u'hold', u'tugun', u'bypass', u'talk']
[u'quinn', u'highlight', u'southern', u'blackout', u'concern']
[u'redback', u'fall', u'short', u'miracl', u'victori']
[u'redfern', u'teen', u'death', u'prompt', u'canberra', u'protest']
[u'region', u'member', u'join', u'disput', u'ralli']
[u'renam', u'train', u'irwin', u'loco']
[u'resid', u'warn', u'warburton', u'blaze']
[u'resid', u'warn', u'dengu', u'fever', u'threat']
[u'riverina', u'includ']
[u'roddick', u'power', u'past', u'chaunac', u'quarter', u'final']
[u'francisco', u'seek', u'marriag']
[u'sear', u'heat', u'spark', u'health', u'warn']
[u'sheedi', u'surpris', u'honour']
[u'shiit', u'group', u'reject', u'elect', u'delay']
[u'ship', u'builder', u'announc', u'solid', u'profit']
[u'guantanamo', u'detaine', u'return', u'home']
[u'sport', u'facil', u'earmark', u'western', u'sydney']
[u'georg', u'rioter', u'suspend', u'sentenc']
[u'stray', u'piec', u'meat', u'land', u'chef', u'fryer']
[u'strickland', u'award', u'state', u'funer']
[u'studi', u'link', u'schizophrenia', u'gluten', u'allergi']
[u'styri', u'pollock', u'despair', u'kiwi', u'edg', u'home']
[u'sydney', u'train', u'normal', u'monday']
[u'symond', u'seccomb', u'join', u'warn', u'lanka', u'parti']
[u'symond', u'seccomb', u'join', u'warn', u'lanka', u'squad']
[u'symond', u'spree', u'lift', u'australia']
[u'stand', u'drink', u'drive']
[u'oppn', u'want', u'north', u'east', u'road']
[u'quarantin', u'question', u'salmon', u'case']
[u'tension', u'overflow', u'sydney', u'rape', u'trial']
[u'thiev', u'fleec', u'victim']
[u'deni', u'bail', u'drug', u'haul']
[u'tight', u'deadlin', u'push', u'cyprus', u'peac', u'talk']
[u'time', u'run', u'altern', u'toxic', u'dump', u'sit']
[u'tobacco', u'threaten', u'corner', u'store']
[u'tobacco', u'grower', u'fear', u'communiti', u'breakdown']
[u'tonga', u'mourn', u'king', u'palac']
[u'tourism', u'ventur', u'offer', u'indigen', u'hope']
[u'tourist', u'appeal', u'rule', u'dive', u'injuri', u'case']
[u'townsvill', u'soldier', u'fail', u'drug', u'test']
[u'transport', u'open', u'overtak', u'lane']
[u'tweed', u'voter', u'ward', u'vote']
[u'palestinian', u'milit', u'arrest', u'near', u'bethlehem']
[u'thai', u'cat', u'bird']
[u'staff', u'hope', u'heat', u'issu']
[u'staff', u'plan', u'strike']
[u'vail', u'push', u'trade', u'talk']
[u'victorian', u'crew', u'fight', u'fire', u'scorch']
[u'vineyard', u'visitor', u'inject', u'hunter', u'economi']
[u'energi', u'minist', u'refus', u'resign']
[u'govt', u'offer', u'region', u'essenti', u'servic', u'boost']
[u'look', u'lure', u'african', u'dentist', u'region']
[u'walwa', u'rais', u'fund', u'health', u'servic', u'plan']
[u'webber', u'pace', u'spain']
[u'westpac', u'frequent', u'flyer', u'program', u'wing', u'clip']
[u'wind', u'farm', u'plan', u'moot', u'pittong']
[u'wind', u'turbin', u'decis', u'unanim']
[u'wodonga', u'face', u'murder', u'trial']
[u'woman', u'charg', u'redfern', u'riot']
[u'woman', u'face', u'court', u'riot']
[u'work', u'track', u'gippsland', u'rail', u'revamp']
[u'wrist', u'injuri', u'keep', u'furyk', u'match', u'play', u'event']
[u'aborigin', u'academ', u'brand', u'minist', u'racist']
[u'heroin', u'drought']
[u'sweat']
[u'campaign', u'aim', u'lure', u'child', u'protect', u'worker']
[u'deni', u'keep', u'anthrax', u'vaccin', u'effect', u'secret']
[u'advoc', u'call', u'better', u'train', u'staff', u'mental']
[u'anderson', u'back', u'airspac', u'fine', u'tune']
[u'annan', u'arriv', u'japan']
[u'mull', u'hike']
[u'anti', u'log', u'slogan', u'spray', u'costal', u'walk']
[u'aussi', u'women', u'chase', u'fourth', u'match']
[u'australia', u'oppos', u'extens', u'timor', u'mission']
[u'aust', u'win', u'gold', u'world', u'debat', u'comp']
[u'ban', u'educ', u'onlin']
[u'bekel', u'storm', u'indoor', u'world', u'record']
[u'biggest', u'cruis', u'ship', u'dock', u'darwin']
[u'bodi', u'mangrov', u'swamp']
[u'bracket', u'creep', u'figur', u'prove', u'govt', u'slug', u'famili']
[u'british', u'doctor', u'prescrib', u'maggot']
[u'brumbi', u'blue']
[u'bush', u'want', u'gibson', u'passion', u'movi']
[u'abort', u'council', u'merger', u'poll']
[u'chang', u'migrat', u'zone', u'curb', u'illeg']
[u'chelsea', u'duff', u'crespo', u'cudicini']
[u'chief', u'overpow', u'hurrican']
[u'china', u'hire', u'coach', u'olymp', u'basketbal', u'squad']
[u'church', u'condemn', u'israel', u'barrier']
[u'clijster', u'eas', u'diamond', u'game', u'semi']
[u'conserv', u'lead', u'iran', u'elect']
[u'count', u'iran']
[u'crew', u'battl', u'blaze', u'southern', u'tasmania']
[u'cyprus', u'divid', u'reunion', u'talk']
[u'dali', u'continu', u'rich', u'vein', u'form']
[u'defend', u'champ', u'weir', u'take', u'share', u'lead']
[u'demon', u'beat', u'kangaroo', u'season', u'match']
[u'demon', u'turn', u'heat', u'kangaroo']
[u'doctor', u'urg', u'donor']
[u'driver', u'bust', u'watch', u'porn', u'wheel']
[u'eagl', u'thrash', u'collingwood', u'cat', u'beat', u'port']
[u'earli', u'result', u'indic', u'iran', u'conserv', u'sweep']
[u'eastern', u'state', u'heat']
[u'expat', u'flee', u'haiti']
[u'extinct', u'rat', u'focus', u'confer']
[u'fate', u'nuclear', u'whistleblow', u'unknown']
[u'contain', u'adelaid', u'hill']
[u'trap', u'flood', u'coal', u'china']
[u'freak', u'tide', u'leav', u'south', u'pacif', u'tuvalu']
[u'garrido', u'pip', u'ogradi', u'armstrong', u'trail']
[u'gold', u'coast', u'heatwav', u'hit', u'record', u'degre']
[u'govt', u'deni', u'slug', u'famili', u'unfair']
[u'govt', u'mislead', u'troop', u'anthrax', u'vaccin']
[u'govt', u'push', u'terror', u'law']
[u'greenspan', u'see', u'growth', u'ahead']
[u'gunn', u'throw', u'money', u'footbal', u'stadium']
[u'henman', u'end', u'feder', u'win', u'streak', u'face', u'hewitt']
[u'hewitt', u'down', u'schuettler', u'reach', u'rotterdam', u'semi']
[u'histor', u'portuges', u'shipwreck']
[u'hogg', u'spin', u'lanka']
[u'hospit', u'begin', u'anti', u'cancer', u'drug', u'trial']
[u'howard', u'defend', u'sydney', u'park', u'redevelop', u'plan']
[u'immigr', u'dept', u'call', u'tip']
[u'iran', u'vote', u'elect', u'like', u'favour', u'hardlin']
[u'iraq', u'elect', u'date', u'uncertain']
[u'israel', u'troop', u'wound', u'friend']
[u'japan', u'terror', u'attack', u'alert']
[u'jone', u'upbeat', u'rare', u'defeat']
[u'king', u'maintain', u'lead', u'bullet', u'beat', u'hawk', u'melbourn']
[u'labor', u'defend', u'pine', u'visit']
[u'latvia', u'pick', u'europ', u'green']
[u'libya', u'plutonium', u'iaea']
[u'remand', u'custodi', u'road', u'incid']
[u'minist', u'take', u'shoot', u'labor', u'agenda']
[u'monkey', u'steal', u'adelaid']
[u'mugab', u'float', u'retir', u'date']
[u'mugab', u'hint', u'retir', u'year']
[u'near', u'kill', u'indonesian', u'dengu', u'outbreak']
[u'govt', u'review', u'power', u'health', u'complaint', u'bodi']
[u'win', u'women', u'dayer']
[u'offici', u'probe', u'ralli', u'death']
[u'offici', u'probe', u'ralli', u'fatal']
[u'philippin', u'peac', u'talk', u'hold', u'april']
[u'polic', u'investig', u'fatal', u'accid']
[u'polic', u'prais', u'footi', u'support', u'behaviour']
[u'polic', u'report', u'coron', u'girl', u'death']
[u'pont', u'warn', u'lanka', u'pitch']
[u'pont', u'warn', u'lanka', u'pitch']
[u'power', u'disput', u'black', u'melbourn', u'factori']
[u'press', u'watchdog', u'critic', u'nigeria', u'deport']
[u'printwork', u'strike', u'keep', u'street']
[u'qanta', u'reject', u'busi', u'class', u'booz', u'fear']
[u'qanta', u'steward', u'fear', u'flight', u'booz']
[u'swelter', u'summer', u'heatwav']
[u'ranger', u'beat', u'flame', u'wnbl', u'final']
[u'result', u'point', u'conserv', u'iran']
[u'retail', u'recal', u'babi', u'jacket', u'amid', u'choke', u'fear']
[u'name', u'free', u'carniv', u'king']
[u'road', u'rage', u'incid', u'end', u'shoot']
[u'robber', u'stay', u'away', u'jigsaw', u'puzzl', u'hous']
[u'russia', u'say', u'iraq', u'elect', u'imposs']
[u'open', u'field', u'pack', u'tight']
[u'schwarzenegg', u'order', u'action', u'stop', u'marriag']
[u'seven', u'miss', u'ship', u'collis', u'east', u'china']
[u'spark', u'power', u'crisi']
[u'steal', u'monkey']
[u'stormer', u'hold', u'victori', u'cat']
[u'street', u'parti', u'launch', u'adelaid', u'fring']
[u'sydney', u'cliff', u'fall', u'kill']
[u'sydney', u'train', u'return', u'normal']
[u'target', u'recal', u'babi', u'size', u'jacket']
[u'band', u'hope', u'royal', u'date']
[u'tasmanian', u'premier', u'play', u'health']
[u'hospitalis', u'boat', u'accid']
[u'injur', u'tourist', u'rollov', u'fraser']
[u'union', u'stick', u'melbourn', u'blackout']
[u'expect', u'lift', u'libya', u'travel']
[u'marriag', u'debat', u'rag']
[u'scrap', u'iraq', u'caucus', u'plan']
[u'soldier', u'wound', u'leav', u'iraq']
[u'violent', u'protest', u'haiti']
[u'waratah', u'exorcis', u'demon', u'crusad']
[u'warn', u'look', u'forward', u'macgil', u'pair']
[u'set', u'solid', u'target']
[u'play', u'bird']
[u'wild', u'wind', u'whip', u'zealand']
[u'give', u'bushrang', u'sniff', u'final']
[u'women', u'feel', u'pain']
[u'woodward', u'wari', u'scot', u'lose']
[u'defend', u'govt', u'handl', u'heroin', u'overdos', u'rise']
[u'adelaid', u'monkey']
[u'announc', u'sydney', u'elect', u'candid']
[u'lobbi', u'organ', u'donat', u'boost']
[u'armstrong', u'win', u'way', u'tour']
[u'arsenal', u'beat', u'chelsea', u'grip', u'titl']
[u'dead', u'plung', u'ravin']
[u'australia', u'win', u'world', u'debat', u'championship']
[u'baxter', u'detaine', u'display', u'fring', u'festiv']
[u'belgian', u'mission', u'visit', u'guantanamo', u'detaine']
[u'serv', u'johansson', u'reach', u'final']
[u'blair', u'seek', u'elect']
[u'blue', u'smash', u'hapless', u'tiger']
[u'bollywood', u'sweep', u'india', u'oscar']
[u'brisban', u'sweat', u'record', u'heatwav']
[u'britain', u'revamp']
[u'british', u'pilot', u'kill', u'chopper', u'crash']
[u'bronco', u'storm', u'trial', u'match']
[u'bull', u'host', u'final']
[u'bulli', u'polic', u'academi', u'offic', u'remov']
[u'blast', u'hit', u'jerusalem', u'barrier', u'remov', u'begin']
[u'crash', u'kill', u'dublin']
[u'california', u'fight']
[u'carr', u'redfern', u'polic']
[u'china', u'aim', u'peopl', u'space']
[u'chopper', u'crash', u'afghanistan', u'dead']
[u'civilian', u'helicopt', u'crash', u'southern', u'afghanistan']
[u'clark', u'rout', u'lankan', u'lower', u'order']
[u'conserv', u'lead', u'iran', u'poll', u'count']
[u'crew', u'battl', u'blaze', u'bushland', u'reserv']
[u'cypriot', u'sens', u'deja', u'peac', u'date']
[u'darwin', u'chart', u'ambon', u'yacht', u'race']
[u'deadlock', u'haiti', u'peac', u'plan']
[u'democrat', u'wait', u'medicar', u'answer']
[u'diplomat', u'team', u'arriv', u'haiti']
[u'earthquak', u'shake', u'indonesian', u'capit']
[u'egypt', u'worri', u'propos', u'share', u'nile']
[u'england', u'grind', u'past', u'scot', u'franc', u'beat', u'itali']
[u'explos', u'hit', u'jerusalem']
[u'flash', u'flood', u'forc', u'road', u'closur']
[u'foundat', u'establish', u'inspir', u'donor']
[u'fowler', u'end', u'citi', u'lose', u'wolv']
[u'french', u'condemn', u'jerusalem', u'attack']
[u'fring', u'benefit', u'homeless']
[u'german', u'watchdog', u'recommend', u'shut', u'nuclear']
[u'glori', u'spirit', u'point']
[u'green', u'group', u'vow', u'pumphous', u'fight']
[u'green', u'launch', u'europ', u'wide', u'parti']
[u'haitian', u'journalist', u'critic', u'condit']
[u'haiti', u'peac', u'talk', u'stall']
[u'hewitt', u'continu', u'domin', u'henman']
[u'hewitt', u'eas', u'past', u'henman']
[u'hook', u'foundat', u'urg', u'organ', u'donat']
[u'howard', u'prais', u'latham', u'contend']
[u'india', u'avoid', u'karachi', u'peshawar', u'test']
[u'indonesia', u'propos', u'south', u'east', u'asian', u'peacekeep']
[u'investig', u'continu', u'plane', u'crash', u'site']
[u'iranian', u'leader', u'prais', u'poll', u'result']
[u'israel', u'remov', u'fenc']
[u'israel', u'barrier']
[u'japan', u'confirm', u'case']
[u'japan', u'report', u'suspect', u'case']
[u'jerusalem', u'blast', u'kill', u'seven']
[u'journal', u'admit', u'vaccin', u'report', u'error']
[u'journalist', u'moyer', u'leav']
[u'kefu', u'await', u'dope', u'decis']
[u'labor', u'retreat', u'retrospect', u'anti', u'terror', u'law']
[u'labor', u'wont', u'male', u'teacher', u'scholarship']
[u'lion', u'claw', u'hawk', u'blue', u'sink', u'swan']
[u'lord', u'ring', u'win', u'director', u'award']
[u'luna', u'park', u'site', u'continu', u'disput']
[u'drown', u'gold', u'coast']
[u'kill', u'boat', u'accid']
[u'kill', u'ultralight', u'plane', u'crash']
[u'stab', u'evict', u'gatecrash']
[u'surviv', u'cliff', u'fall']
[u'mayor', u'push', u'benefit', u'jail']
[u'melbourn', u'festiv', u'score', u'ticket', u'wrap', u'canada']
[u'milan', u'stuff', u'champion', u'sink', u'inter']
[u'japanes', u'troop', u'arriv', u'iraq']
[u'mystic', u'river', u'get', u'prize', u'french', u'film', u'award']
[u'network', u'want', u'alcohol', u'earlier']
[u'relief', u'heatwav']
[u'untouch', u'probe']
[u'consid', u'increas', u'water', u'restrict']
[u'polic', u'deni', u'redfern', u'plan']
[u'opposit', u'say', u'govt', u'treat', u'tourism']
[u'ozzi', u'osbourn', u'return', u'road']
[u'passeng', u'train', u'derail', u'denmark', u'injuri']
[u'say', u'school', u'condit', u'classroom']
[u'perren', u'lead', u'bull', u'charg', u'macgil', u'hammer']
[u'pilot', u'kill', u'afghanistan', u'crash']
[u'rule', u'date', u'terror']
[u'polic', u'investig', u'bodi', u'scrubland']
[u'polic', u'probe', u'molotov', u'cocktail', u'attack']
[u'power', u'strike', u'threaten', u'grand', u'prix']
[u'power', u'union', u'warn', u'delay']
[u'pratt', u'claim', u'indian', u'open', u'titl']
[u'program', u'help', u'indigen', u'student', u'place']
[u'qanta', u'give', u'merger']
[u'qanta', u'offer', u'payris']
[u'queensland', u'host', u'final']
[u'ranatunga', u'hit', u'warn', u'eat', u'jibe']
[u'cross', u'quiet', u'saddam', u'visit']
[u'cross', u'issu', u'saddam', u'report', u'card']
[u'cross', u'visit', u'saddam', u'hussein']
[u'cross', u'visit', u'saddam', u'hussein', u'custodi']
[u'report', u'claim', u'lade', u'corner']
[u'ruddock', u'speed', u'asio', u'recruit', u'drive']
[u'saint', u'crow', u'adelaid']
[u'scienc', u'fund', u'bodi', u'band']
[u'search', u'continu', u'miss']
[u'brace', u'scorcher']
[u'shark', u'edg', u'bull', u'despit', u'scoreless', u'second', u'half']
[u'lanka', u'second']
[u'strong', u'earthquak', u'hit', u'indonesia', u'sumatra', u'island']
[u'suspect', u'rebel', u'massacr', u'civilian', u'uganda']
[u'taipan', u'tighten', u'play', u'posit']
[u'put', u'meet']
[u'tasmania', u'wait', u'news', u'bacon']
[u'teen', u'hospit', u'polic', u'guard']
[u'thai', u'editor', u'remov', u'caus', u'protest']
[u'injur', u'airborn', u'crash']
[u'thunderstorm', u'bring', u'relief']
[u'union', u'warn', u'industri', u'action', u'delay', u'grand']
[u'order', u'essenti', u'diplomat', u'personnel']
[u'presid', u'mourn', u'death']
[u'power', u'return', u'disput', u'go']
[u'threaten', u'union', u'return', u'work']
[u'wahid', u'nomin', u'indonesia']
[u'walter', u'surg', u'open']
[u'polic', u'search', u'miss', u'woman', u'child']
[u'ankl', u'secur', u'tag', u'releas']
[u'weapon', u'seiz', u'pakistan', u'afghan', u'border']
[u'weir', u'seiz', u'shoot', u'lead']
[u'western', u'power', u'appoint', u'head']
[u'whistl', u'bird', u'home', u'help', u'laurel']
[u'wild', u'weather', u'creat', u'havoc']
[u'wolv', u'deni', u'striker', u'final', u'berth', u'clincher']
[u'wwii', u'white', u'mous', u'award', u'honour']
[u'voter', u'face', u'fin']
[u'kill', u'colombian', u'skirmish']
[u'aborigin', u'dealer', u'win', u'defam', u'payout']
[u'accus', u'redfern', u'rioter', u'releas', u'bail']
[u'adelaid', u'pilot', u'kill', u'afghan', u'attack']
[u'releas', u'iraq', u'report', u'card']
[u'alic', u'spring', u'atsic', u'council', u'seek', u'imag', u'chang']
[u'upgrad', u'profit', u'forecast']
[u'wooli', u'fail', u'lift', u'market']
[u'anim', u'group', u'urg', u'measur', u'stop', u'heat', u'stress']
[u'athlet', u'lack', u'competit']
[u'aussi', u'lose', u'grind', u'greenback', u'find', u'feet']
[u'australia', u'china', u'free', u'trade', u'talk', u'march']
[u'australian', u'guilti', u'assault']
[u'call', u'overhaul', u'drought', u'assist']
[u'bacon', u'resign', u'premier']
[u'bandit', u'south', u'east', u'chemist']
[u'bank', u'chief', u'say', u'oasi', u'develop', u'sound']
[u'beatti', u'eye', u'person', u'secur', u'boost']
[u'bennett', u'name', u'australia', u'coach']
[u'bennett', u'take', u'charg', u'kangaroo']
[u'bennett', u'tip', u'coach']
[u'bennett', u'tip']
[u'billiard', u'champ', u'politician', u'die', u'age']
[u'blaze', u'trigger', u'stop', u'orang', u'shoot', u'contest']
[u'blue', u'green', u'alga', u'close', u'irrig']
[u'bomber', u'strike', u'ahead', u'isra', u'barrier', u'hear']
[u'bomb', u'hit', u'iraq', u'polic', u'station']
[u'bowler', u'look', u'recontest', u'eyr']
[u'brack', u'call', u'help', u'power', u'disput']
[u'bridg', u'enthusiast', u'converg', u'gold', u'coast']
[u'british', u'school', u'give', u'power', u'carri', u'random']
[u'break', u'hill', u'honour', u'search', u'effort']
[u'bulldog', u'player', u'question', u'alleg', u'assault']
[u'burswood', u'profit', u'high', u'roller']
[u'busi', u'group', u'oppos', u'airport', u'develop']
[u'butcher', u'carv', u'spot', u'council']
[u'calder', u'highway', u'feder', u'fund']
[u'campbel', u'cast', u'doubt', u'region', u'develop']
[u'canberra', u'author', u'defend', u'airport', u'busi']
[u'cancer', u'forc', u'bacon']
[u'carr', u'back', u'polic', u'ahead', u'meet']
[u'carr', u'say', u'critic', u'govt', u'unsurpris']
[u'cassano', u'trick', u'keep', u'roma', u'hunt']
[u'celtic', u'british', u'record']
[u'announc', u'public', u'float', u'moranbah']
[u'chill', u'beef', u'export', u'stall']
[u'clijster', u'savour', u'home']
[u'club', u'reach', u'stage', u'champ', u'leagu']
[u'communiti', u'back', u'bega']
[u'confus', u'regrowth', u'definit']
[u'conserv', u'iran', u'elect']
[u'coria', u'end', u'moya', u'bueno', u'air']
[u'costello', u'push', u'lift', u'bracket']
[u'council', u'look', u'highway', u'bypass', u'resolut']
[u'council', u'want', u'apolog', u'paper', u'pregnanc', u'claim']
[u'court', u'hear', u'israel', u'barrier', u'test']
[u'cowboy', u'look', u'lift', u'man', u'draw']
[u'crow', u'coach', u'puzzl', u'season', u'loss']
[u'cruis', u'ship', u'boost', u'albani', u'tourism']
[u'dark', u'nose', u'lion', u'fair', u'game', u'research']
[u'deadlin', u'loom', u'council', u'poll', u'nomin']
[u'dental', u'shortag', u'put', u'bite', u'riverland']
[u'dfat', u'check', u'pilot', u'kill', u'afghanistan']
[u'disabl', u'group', u'question', u'hunter', u'fund']
[u'doctor', u'deregist', u'patient', u'perjuri']
[u'doctor', u'shortag', u'leav', u'victorian', u'centr']
[u'doubt', u'futur', u'tarpeena', u'footbal', u'club']
[u'downer', u'want', u'action', u'wmds']
[u'earthquak', u'shake', u'northern', u'pakistan']
[u'east', u'timor', u'urg', u'japan', u'continu']
[u'elliott', u'launch', u'convict', u'overturn']
[u'expert', u'meningococc', u'case', u'link']
[u'fatal', u'dive', u'spark', u'rock', u'pool', u'safeti', u'rethink']
[u'father', u'mourn', u'pilot', u'kill', u'afghanistan']
[u'fear', u'victoria', u'safe', u'toxic', u'dump']
[u'govt', u'urg', u'plan', u'citi', u'futur']
[u'ferrari', u'lover', u'face', u'fraud', u'charg']
[u'finger', u'point', u'boost', u'school', u'scienc']
[u'chief', u'face', u'question', u'canberra', u'inquest']
[u'firm', u'consid', u'wind', u'farm', u'avoid', u'toxic', u'dump', u'debat']
[u'book', u'bangladeshi', u'tribal', u'languag', u'hit']
[u'french', u'work', u'holiday', u'visa', u'issu']
[u'flood', u'clean', u'continu', u'roadhous']
[u'fund', u'senior', u'week', u'activ']
[u'ganguli', u'look', u'forward', u'pakistan', u'tour']
[u'germani', u'turkish']
[u'giant', u'kill', u'croc', u'play', u'dream', u'aliv']
[u'gladston', u'mayor', u'welcom', u'rail', u'project']
[u'good', u'thing', u'predict', u'hunter', u'coal', u'mine']
[u'govt', u'seek', u'public', u'comment', u'concession', u'leas']
[u'govt', u'stay', u'power', u'disput']
[u'green', u'want', u'wetland', u'mine', u'stop']
[u'grower', u'core', u'fear', u'appl', u'import', u'plan']
[u'haiti', u'rebel', u'capit']
[u'haiti', u'rebel', u'second', u'citi']
[u'heat', u'debat', u'expect', u'food', u'confer']
[u'hewitt', u'claim', u'rotterdam', u'crown']
[u'hill', u'announc', u'aust', u'troop', u'chang', u'iraq']
[u'hope', u'wind', u'farm', u'plan', u'boost', u'geraldton', u'coffer']
[u'hop', u'fade', u'chines', u'miner']
[u'howard', u'follow', u'latham', u'footstep']
[u'howard', u'latham', u'continu', u'australian', u'tour']
[u'howard', u'wrap', u'gippsland']
[u'hume', u'shire', u'mayor', u'join', u'anti', u'merger', u'push']
[u'hundr', u'evacu', u'nightclub', u'blaze']
[u'hunt', u'miss']
[u'india', u'kaif', u'pakistan', u'seri']
[u'indonesian', u'claim', u'rebel', u'kill', u'aceh']
[u'iranian', u'refuge', u'releas', u'work']
[u'ireland', u'wale']
[u'irish', u'mockeri', u'welsh', u'renaiss']
[u'islam', u'confer', u'denounc', u'iraq', u'invas']
[u'israel', u'destroy', u'suicid', u'bomber', u'home']
[u'japanes', u'militari', u'helicopt', u'collid']
[u'japanes', u'experi', u'north', u'coffe']
[u'japan', u'launch', u'militari', u'chopper', u'crash', u'probe']
[u'japan', u'funer', u'busi', u'breath', u'life']
[u'jerri', u'springer', u'opera', u'scoop', u'theatr', u'award']
[u'kerri', u'challeng', u'bush', u'debat']
[u'lake', u'water', u'reach', u'pooncari']
[u'landi', u'win', u'tour', u'algarv', u'armstrong', u'slip']
[u'latham', u'back', u'pine', u'agreement']
[u'latham', u'whirlwind', u'tour']
[u'leak', u'report', u'warn', u'climat', u'chang', u'bring']
[u'libya', u'want', u'uranium', u'plant', u'diplomat']
[u'liverpool', u'boss', u'houllier', u'face', u'surviv', u'battl']
[u'lose', u'translat', u'get', u'writer', u'award']
[u'loxton', u'waikeri', u'make', u'councillor', u'quit', u'decis']
[u'rescu', u'walk', u'safeti']
[u'martin', u'hop', u'recontest', u'kimberley']
[u'mcgrath', u'snare', u'return']
[u'meekatharra', u'join', u'anti', u'crime', u'partnership']
[u'meet', u'put', u'brake', u'main', u'street', u'event']
[u'meet', u'hous', u'estat', u'spotlight']
[u'melbourn', u'share', u'profit', u'report']
[u'milosev', u'trial', u'judg', u'resign', u'health', u'reason']
[u'miner', u'upbeat', u'nickel', u'sulphid']
[u'mint', u'releas', u'commemor', u'eureka', u'coin']
[u'miss', u'hike']
[u'monaco', u'princ', u'rainier', u'hospitalis']
[u'moomba', u'plant', u'meet', u'suppli', u'demand']
[u'cash', u'centrelink', u'trust', u'fight']
[u'question', u'magistr', u'decis', u'case']
[u'send', u'support', u'bacon']
[u'take', u'anti', u'poster']
[u'want', u'minist', u'tugun', u'bypass', u'meet']
[u'nader', u'presid']
[u'nat', u'hunt', u'high', u'profil', u'mcmillan', u'candid']
[u'near', u'kill', u'ugandan', u'rebel', u'raid']
[u'licenc', u'offer', u'sydney', u'brisban']
[u'power', u'chief', u'dismiss', u'critic']
[u'evid', u'profil', u'tourist', u'detent']
[u'wit', u'prison', u'bash']
[u'pair', u'leav', u'road']
[u'perform', u'art', u'industri', u'show', u'war']
[u'permiss', u'deni', u'jail', u'father', u'attend']
[u'defend', u'australian', u'polic', u'deploy']
[u'minist', u'defend', u'malaysian', u'log', u'firm']
[u'welcom', u'latham', u'visit']
[u'polic', u'begin', u'talk', u'redfern']
[u'polic', u'conduct', u'highway', u'drug', u'blitz']
[u'polic', u'continu', u'ralli', u'death', u'investig']
[u'polic', u'identifi', u'kuranda', u'bodi']
[u'polic', u'probe', u'beer', u'bottl', u'attack']
[u'polic', u'probe', u'death']
[u'polic', u'probe', u'hous', u'firebomb', u'attack']
[u'poll', u'rude', u'shock', u'carr', u'govern']
[u'portsmouth', u'quarter']
[u'process', u'plant', u'delay', u'onion', u'crop', u'doubt']
[u'govt', u'say', u'tugun', u'bypass', u'environment', u'necess']
[u'govt', u'seek', u'fraser', u'indigen', u'partnership']
[u'rail', u'link', u'expect', u'reviv', u'southern', u'region']
[u'ralf', u'stake', u'william']
[u'rampant', u'eagl', u'battl', u'injuri', u'ahead', u'demon']
[u'rampant', u'eagl', u'battl', u'injuri', u'demon']
[u'record', u'fall', u'north', u'west', u'swelter']
[u'redfern', u'polic', u'inquiri']
[u'reef', u'risk', u'climat', u'chang', u'report']
[u'reef', u'author', u'welcom', u'penalti', u'illeg', u'fish']
[u'resid', u'shine', u'pearl', u'farm', u'plan']
[u'resid', u'urg', u'boil', u'drink', u'water']
[u'restrospect', u'terror', u'plausibl', u'lawyer', u'say']
[u'reynold', u'urg', u'apologis', u'indigen', u'comment']
[u'creditor', u'happi', u'legal', u'action']
[u'blast', u'carniv', u'beat']
[u'road', u'condit', u'contribut', u'fatal']
[u'roebourn', u'shire', u'seek', u'burrup', u'villag', u'rate', u'rise']
[u'rumsfeld', u'visit', u'baghdad']
[u'opposit', u'warn', u'fake', u'licenc', u'websit']
[u'sculptor', u'win', u'limeston', u'coast', u'award']
[u'search', u'find', u'miss', u'skier', u'safe']
[u'storm', u'black', u'thousand', u'home']
[u'sheep', u'woe', u'threaten', u'diseas', u'free', u'status']
[u'shire', u'tender', u'swim', u'centr', u'design']
[u'slave', u'trial', u'draw']
[u'southern', u'melt', u'heatwav']
[u'spici', u'portrait', u'sell', u'onlin']
[u'spur', u'villa', u'throw', u'away', u'lead']
[u'lanka', u'clinch', u'thriller']
[u'lankan', u'pinch', u'thriller']
[u'survey', u'find', u'firm', u'offer', u'pay', u'matern', u'leav']
[u'sweden', u'rise', u'star', u'johansson', u'record', u'maiden']
[u'sydney', u'ferri', u'snap', u'strike']
[u'sydney', u'ferri', u'worker', u'stage', u'strike']
[u'tabcorp', u'agreement', u'clear', u'takeov']
[u'tabcorp', u'ant']
[u'team', u'prim', u'closest', u'season', u'year']
[u'teen', u'court', u'senior', u'bash']
[u'terri', u'plead', u'abramovich', u'spare', u'ranieri']
[u'theatr', u'hold', u'revamp', u'celebr']
[u'money', u'win', u'tropfest']
[u'thunderstorm', u'sweep', u'south', u'east']
[u'time', u'run', u'local', u'govt', u'poll', u'nomin']
[u'touch', u'footbal', u'player', u'converg', u'kalgoorli']
[u'trio', u'find', u'man', u'bodi', u'murrumbidge']
[u'horror', u'road', u'crash']
[u'uganda', u'rebel', u'attack', u'dozen', u'raid']
[u'advisori', u'board', u'back', u'bundoora', u'integr']
[u'union', u'agre', u'lift', u'factori', u'work', u'plan']
[u'union', u'call', u'perman', u'polic', u'riot', u'squad']
[u'union', u'play', u'threat', u'aust']
[u'licenc', u'buyback', u'cut', u'otway', u'log']
[u'victorian', u'power', u'disput', u'intensifi']
[u'hong', u'kong', u'firm', u'sign', u'iron', u'agreement']
[u'watt', u'overlook', u'award']
[u'weir', u'defend', u'titl', u'applebi']
[u'wilkinson', u'pain', u'free', u'zone']
[u'woman', u'child', u'dead', u'bushland', u'grave']
[u'woman', u'get', u'suspend', u'jail', u'term', u'lock', u'kid']
[u'woolworth', u'announc', u'profit']
[u'world', u'await', u'crop', u'safeti', u'debat', u'rag']
[u'world', u'court', u'consid', u'west', u'bank', u'barrier']
[u'wwii', u'militari', u'medal', u'sell', u'record']
[u'young', u'indian', u'suscept', u'osteoporosi', u'report']
[u'zaragoza', u'releg', u'zone']
[u'zimbabw', u'mugab', u'chest', u'pain']
[u'pois', u'crush', u'banger']
[u'dead', u'miss', u'chines']
[u'plead', u'poor', u'public', u'sector', u'talk']
[u'afghan', u'presid', u'send', u'pilot', u'famili', u'condol']
[u'airport', u'bodi', u'reject', u'fee', u'report']
[u'criticis', u'swinburn', u'hike', u'plan']
[u'support', u'join', u'parti', u'council', u'ticket']
[u'qaeda', u'attack', u'franc', u'veil']
[u'anti', u'cancer', u'drug', u'trial', u'begin']
[u'applebi', u'break']
[u'aristocrat', u'announc', u'million', u'loss']
[u'asian', u'student', u'flood', u'pill', u'report']
[u'straight']
[u'athlet', u'australia', u'say', u'track', u'star']
[u'dead', u'morocco', u'earthquak']
[u'crack', u'haven']
[u'aussi', u'break', u'world', u'balloon', u'record']
[u'aussi', u'gear', u'match', u'play', u'challeng']
[u'author', u'trial', u'chang', u'phone', u'servic']
[u'avalon', u'tip', u'jetstar', u'base']
[u'bacon', u'back', u'deputi']
[u'bank', u'rais', u'capit']
[u'beef', u'expo', u'chairman', u'hors', u'event']
[u'benefit', u'tuna', u'farm', u'plan', u'consult']
[u'bird', u'spread']
[u'bjorkman', u'flyer', u'marseill']
[u'black', u'cap', u'recal', u'harri', u'face', u'protea']
[u'bonfield', u'recontest', u'mayor', u'spot']
[u'boost', u'plan', u'offshor', u'fisheri', u'patrol']
[u'britain', u'see', u'drop', u'polit', u'asylum', u'claim']
[u'break', u'hill', u'host', u'age', u'care', u'probe']
[u'bulldog', u'accus', u'give', u'statement', u'polic']
[u'bush', u'enter', u'elect', u'campaign']
[u'bushfir', u'inquest', u'centr', u'inform']
[u'businessman', u'elect', u'shadforth', u'councillor']
[u'inject', u'famili', u'payment']
[u'nation', u'highway', u'plan']
[u'region', u'traine', u'doctor', u'subsidi']
[u'shelter', u'boost', u'homeless']
[u'waikeri', u'loxton', u'zone']
[u'mouthwash', u'indigen']
[u'boost', u'communiti', u'care', u'option', u'elder']
[u'carr', u'repledg', u'inject', u'hospit']
[u'charg', u'expect', u'west', u'wodonga', u'sieg']
[u'chines', u'shoplift', u'catch', u'pant']
[u'clark', u'announc', u'maori', u'polici', u'review']
[u'coast', u'properti', u'price', u'taper', u'rise']
[u'cooler', u'weather', u'spell', u'relief', u'grape', u'grower']
[u'cop', u'leak', u'prompt', u'polic', u'warn']
[u'cosgrov', u'defend', u'anthrax', u'jab']
[u'council', u'administr', u'hear', u'communiti', u'concern']
[u'council', u'back', u'heritag', u'estat', u'develop', u'plan']
[u'council', u'give', u'foreshor', u'revamp']
[u'council', u'put', u'condit', u'theiss', u'oper']
[u'council', u'urg', u'cash', u'elect', u'time']
[u'council', u'unlik', u'elector', u'chang']
[u'court', u'hear', u'caus', u'board', u'hous']
[u'court', u'search', u'origin', u'find', u'nemo']
[u'crimin', u'probe', u'target', u'halliburton', u'iraq', u'deal']
[u'defenc', u'radar', u'network', u'upgrad']
[u'democrat', u'urg', u'differ', u'way', u'address', u'doctor']
[u'disgrac', u'minist', u'get', u'year']
[u'downer', u'want', u'clariti', u'latham', u'tie']
[u'educ', u'chief', u'say', u'wilder', u'scheme', u'wont', u'stop']
[u'renew', u'zimbabw', u'sanction']
[u'indonesian', u'presid', u'post']
[u'extra', u'doctor', u'kalgoorli', u'hospit', u'possibl']
[u'farmer', u'rais', u'hand', u'mayor', u'spot']
[u'farmer', u'warn', u'trial']
[u'firi', u'rescu', u'flood', u'creek']
[u'fisher', u'fin', u'plunder', u'reef', u'green', u'zone']
[u'oversea', u'student', u'plead', u'guilti', u'kill']
[u'flood', u'affect', u'bedouri', u'food', u'drop']
[u'flood', u'threat', u'eas']
[u'foreign', u'doctor', u'see', u'temporari']
[u'emerg', u'chief', u'get', u'tough', u'grill']
[u'dead', u'rock', u'concert', u'stamped', u'indonesia']
[u'francou', u'frustrat', u'knee', u'injuri']
[u'francou', u'vent', u'frustrat', u'knee', u'injuri']
[u'freight', u'train', u'derail', u'newcastl']
[u'fund', u'seek', u'pipelin', u'farm', u'help']
[u'gilchrist', u'fin', u'dissent', u'symond', u'clear']
[u'gilchrist', u'fin', u'symond', u'clear']
[u'gilchrist', u'symond', u'face', u'dissent', u'charg']
[u'girl', u'hospit', u'light', u'strike']
[u'trade', u'talk', u'start', u'line', u'clear', u'draw']
[u'gold', u'coast', u'team', u'await']
[u'govt', u'order', u'report', u'teen', u'death']
[u'govt', u'plan', u'tougher', u'penalti', u'teen']
[u'govt', u'reject', u'famili', u'cash', u'shortfal']
[u'govt', u'review', u'csiro', u'climat', u'chang', u'report']
[u'green', u'group', u'urg', u'protest', u'otway', u'timber']
[u'greenspan', u'talk', u'household', u'financ']
[u'haiti', u'deadlin', u'extend']
[u'haiti', u'rebel', u'sight', u'capit']
[u'hartley', u'debut', u'bull']
[u'hawk', u'legend', u'quit', u'club', u'board']
[u'heavi', u'rain', u'busi', u'north', u'coast']
[u'hewitt', u'best']
[u'hope', u'wine', u'allianc', u'boost', u'sale']
[u'howard', u'vow', u'govt', u'honour', u'freeway', u'pledg']
[u'hume', u'mayor', u'air', u'merger', u'concern']
[u'hunter', u'health', u'reject', u'hospit', u'resourc', u'share']
[u'independ', u'zimbabw', u'newspap', u'sack', u'worker']
[u'india', u'probe', u'space', u'centr']
[u'indonesian', u'compani', u'say', u'telstra', u'share']
[u'iraqi', u'reconstruct', u'follow', u'past', u'experi']
[u'iron', u'agreement', u'boost', u'geraldton', u'job']
[u'japanes', u'porn', u'model', u'take', u'airport']
[u'japanes', u'student', u'deport', u'prank', u'death']
[u'juri', u'start', u'deliber', u'slave', u'case']
[u'kefu', u'clear', u'take', u'ban', u'drug']
[u'klim', u'comeback', u'trail']
[u'koop', u'face', u'fit', u'race']
[u'labor', u'leader', u'hit', u'defenc']
[u'latham', u'pledg', u'indigen', u'inequ']
[u'latham', u'walk']
[u'lennon', u'begin', u'duti', u'act', u'premier']
[u'lennon', u'tightlip', u'choic', u'deputi', u'premier']
[u'life', u'insur', u'report', u'profit']
[u'arrest', u'tripl', u'murder', u'japan']
[u'arrest', u'woman', u'babi', u'death']
[u'face', u'court', u'search']
[u'hospit', u'flood', u'river', u'ordeal']
[u'face', u'sentenc', u'road', u'death']
[u'face', u'trial', u'bracelet', u'theft']
[u'unit', u'face', u'schole']
[u'market', u'drift', u'lack', u'econom', u'news']
[u'mayor', u'candid', u'want', u'debt', u'action']
[u'mine', u'giant', u'give', u'ahead', u'oper']
[u'molik', u'set', u'venus', u'clash']
[u'moomba', u'normal', u'april']
[u'highlight', u'carnarvon', u'mobil', u'phone', u'woe']
[u'want', u'school', u'upgrad']
[u'mysteri', u'surround', u'stab', u'death']
[u'narrabri', u'introduc', u'water', u'restrict']
[u'nat', u'question', u'catchment', u'author', u'appoint']
[u'unveil', u'final', u'platform']
[u'great', u'britain', u'coach', u'timer']
[u'hous', u'lot', u'eas', u'land', u'shortag']
[u'zealand', u'south', u'africa', u'dayer', u'wash']
[u'iraq', u'pull', u'date', u'troop', u'cosgrov']
[u'smoke', u'zone', u'dont', u'work', u'studi']
[u'retain', u'final']
[u'consid', u'jail', u'sell']
[u'govt', u'plan', u'reduc', u'polic', u'number']
[u'govt', u'deni', u'town', u'gangster', u'paradis']
[u'korea', u'talk', u'day', u'offici']
[u'nuclear', u'watchdog', u'libyan', u'energi', u'program']
[u'australian', u'meat', u'strand', u'malaysian', u'port']
[u'review', u'maori', u'fund']
[u'opposit', u'concern', u'children', u'make']
[u'opposit', u'council', u'caravan', u'park', u'rezon']
[u'pakistan', u'launch', u'fresh', u'anti', u'qaeda', u'offens']
[u'parent', u'tell', u'kick', u'bottl', u'habit']
[u'plan', u'underway', u'redfern', u'polic', u'station']
[u'join', u'solomon', u'intervent', u'forc']
[u'polic', u'prais', u'hickey', u'mourner']
[u'poll', u'perform', u'fail', u'excit', u'latham']
[u'port', u'kembla', u'accid', u'spark', u'ambul', u'review']
[u'premium', u'public', u'liabil', u'eas']
[u'prison', u'offic', u'meet', u'stall', u'manag']
[u'produc', u'say', u'japanes', u'beef', u'market', u'flatten']
[u'progress', u'long', u'run', u'coal', u'disput']
[u'properti', u'price', u'rise', u'unlik', u'repeat']
[u'public', u'ask', u'report', u'water', u'cheat']
[u'public', u'featur', u'local', u'beach']
[u'public', u'servant', u'ralli', u'demand']
[u'public', u'urg', u'avoid', u'mozzi', u'contact']
[u'public', u'urg', u'comment', u'health', u'report']
[u'quit', u'line', u'call', u'bacon', u'news']
[u'rain', u'creat', u'gold', u'coast', u'chao']
[u'rain', u'wreak', u'havoc', u'gold', u'coast']
[u'ralf', u'turn', u'william', u'quit', u'threat']
[u'reborn', u'napster', u'claim', u'million', u'legal', u'download']
[u'redfern', u'rememb', u'thoma', u'hickey']
[u'reformist', u'quit', u'iranian', u'parliament']
[u'report', u'slam', u'recreat', u'griev', u'trend']
[u'resid', u'cray', u'concern']
[u'resid', u'support', u'famili', u'crime']
[u'right', u'group', u'bar', u'guantanamo', u'trial']
[u'roadblock', u'consid', u'fruit', u'fight']
[u'rylston', u'shire', u'improv', u'financ']
[u'santo', u'profit', u'unfaz', u'blast']
[u'public', u'servant', u'threaten', u'strike', u'disput']
[u'sawmil', u'move', u'ahead', u'revamp']
[u'scientist', u'mull', u'fish', u'welfar', u'polici']
[u'seal', u'dolphin', u'wash', u'mexican', u'beach']
[u'sixer', u'sharp', u'prepar', u'crunch', u'match']
[u'kill', u'indian', u'space', u'base']
[u'slow', u'respons', u'council', u'elect', u'nomin']
[u'spacewalk', u'leav', u'space', u'station']
[u'state', u'pressur', u'public', u'sector']
[u'storm', u'wreak', u'havoc', u'electr', u'network']
[u'sugar', u'rep', u'push', u'deal']
[u'support', u'doom', u'lighthous', u'platform']
[u'survey', u'examin', u'tennant', u'creek', u'mozzi', u'type']
[u'sydney', u'lord', u'mayor', u'contest', u'heat']
[u'tackl', u'cost', u'socceroo']
[u'tafe', u'teacher', u'protest', u'rise']
[u'taiwan', u'report', u'bird', u'outbreak', u'farm']
[u'takeov', u'battl', u'drain', u'lehmann']
[u'talk', u'fail', u'power', u'disput']
[u'tear', u'break', u'rock', u'brawl']
[u'technic', u'glitch', u'ground', u'skywest', u'plane']
[u'teenag', u'jail', u'caus', u'train', u'death']
[u'telstra', u'open', u'centr', u'perth']
[u'thuringowa', u'council', u'get', u'nation', u'plan', u'award']
[u'time', u'run', u'waterfront']
[u'trade', u'agreement', u'wont', u'affect', u'region', u'scheme']
[u'transport', u'compani', u'predict', u'record', u'earn']
[u'treatment', u'reduc', u'child', u'allergi', u'develop']
[u'trucki', u'die', u'highway', u'crash']
[u'truss', u'defend', u'drought']
[u'ugandan', u'massacr', u'investig']
[u'limit', u'right', u'citizen']
[u'hint', u'iraqi', u'elect']
[u'union', u'threaten', u'action', u'includ']
[u'union', u'help', u'basslink', u'protest', u'hear']
[u'unit', u'miss', u'beck', u'ruud', u'admit']
[u'unit', u'turn', u'kean', u'hold', u'porto']
[u'cours', u'creat', u'strong']
[u'audienc', u'gibson', u'passion']
[u'cancel', u'billion', u'attack', u'helicopt', u'contract']
[u'demand', u'fall', u'aust', u'chill', u'beef']
[u'deploy', u'marin', u'haiti']
[u'sailor', u'face', u'court', u'rape', u'charg']
[u'trade', u'deal', u'cut', u'howard', u'busi', u'support']
[u'teacher', u'warn', u'talk', u'fail']
[u'wagga', u'rape', u'spark', u'polic', u'warn']
[u'inquiri', u'examin', u'power', u'crisi']
[u'walgett', u'prepar', u'hickey', u'funer']
[u'warrior', u'move', u'bull', u'clash']
[u'water', u'recycl', u'plant', u'card', u'goulburn']
[u'wenger', u'want', u'lead', u'arsenal', u'home']
[u'wildcat', u'pirat', u'sword']
[u'wine', u'associaton', u'upbeat', u'grape', u'harvest', u'qualiti']
[u'wine', u'maker', u'free', u'european', u'name']
[u'worker', u'ralli', u'outsid', u'telstra', u'offshor', u'job']
[u'worker', u'reject', u'chemic', u'report', u'meet']
[u'zimbabw', u'price', u'spin', u'bangladesh']
[u'abbott', u'tour', u'central', u'australia']
[u'accc', u'investig', u'telstra', u'broadband', u'price', u'drop']
[u'accus', u'polit', u'law']
[u'act', u'chief', u'jail']
[u'unveil', u'tourism', u'strategi']
[u'adelaid', u'like', u'host', u'wallabi', u'pacif']
[u'adelaid', u'host', u'pacif', u'island', u'clash']
[u'adhd', u'research', u'carri', u'adelaid']
[u'consid', u'chang', u'video', u'report']
[u'agforc', u'support', u'wheat', u'singl', u'desk']
[u'airport', u'defend', u'charg']
[u'alic', u'spring', u'face', u'pancreat', u'health', u'woe']
[u'say', u'liston', u'import', u'fight']
[u'allstar', u'match', u'remain', u'darwin']
[u'qaeda', u'tape', u'warn', u'condemn', u'franc']
[u'arsenal', u'track', u'champion', u'leagu', u'quarter']
[u'report', u'record', u'profit']
[u'asylum', u'claim', u'drop', u'britain']
[u'aussi', u'test', u'challeng', u'lehmann']
[u'aussi', u'women', u'kiwi']
[u'austoft', u'redund', u'loom']
[u'australia', u'cave', u'pressur', u'joint', u'fighter']
[u'australia', u'chase', u'lanka']
[u'australia', u'drug', u'treatment', u'jail']
[u'babi', u'death', u'inquest', u'hear', u'evid']
[u'bacon', u'expect', u'begin', u'cancer', u'treatment', u'week']
[u'bacon', u'retir', u'benefit', u'young', u'backbench']
[u'benefit', u'flow', u'water', u'boost']
[u'black', u'cap', u'victori', u'put', u'heat', u'shiver', u'protea']
[u'blast', u'philippin', u'polic', u'armouri']
[u'boomer', u'opal', u'meet', u'china', u'athen', u'warm']
[u'bournemouth', u'hayter', u'set', u'record', u'quickest']
[u'boyn', u'knife', u'incid', u'trigger', u'polic', u'manhunt']
[u'brisban', u'secur', u'world', u'rematch']
[u'brisban', u'host', u'rugbi', u'rematch']
[u'busi', u'group', u'back', u'move', u'curb', u'public']
[u'busselton', u'policeman', u'charg', u'assault', u'teen']
[u'bypass', u'meet', u'offer', u'littl', u'hope', u'rout']
[u'cabinet', u'warn', u'possibl', u'pension', u'revolt']
[u'fund', u'offer', u'train']
[u'senat', u'inquiri', u'banana', u'decis']
[u'carpent', u'make', u'south', u'west', u'school', u'pledg']
[u'central', u'victoria', u'feel', u'teacher', u'strike']
[u'charg', u'drop', u'british', u'intel', u'leak']
[u'child', u'worker', u'consid', u'strike']
[u'clarenc', u'council', u'elect', u'delay', u'oppn']
[u'cloud', u'seed', u'trial', u'aim', u'boost', u'snow', u'coverag']
[u'commerc', u'bodi', u'seek', u'elector', u'enrol', u'extens']
[u'committe', u'hear', u'littl', u'inform', u'hold']
[u'communiti', u'learn', u'centr', u'move', u'closer', u'realiti']
[u'confid', u'drop', u'hit', u'dollar']
[u'connor', u'back', u'athen', u'qualifi', u'standard']
[u'coordin', u'moot', u'youth', u'club']
[u'costello', u'reveal', u'plan', u'australian', u'work']
[u'council', u'fear', u'build', u'wast', u'contamin']
[u'council', u'hop', u'hear', u'busi', u'drought', u'woe']
[u'council', u'pass', u'wollondilli', u'shire', u'hous', u'plan']
[u'council', u'say', u'dun', u'creek', u'tourism', u'plan']
[u'council', u'probe', u'swim', u'centr', u'time']
[u'council', u'want', u'explos', u'scuttl', u'ship']
[u'court', u'hear', u'inmat', u'plan', u'paedophil', u'kill']
[u'critic', u'renew', u'assault', u'propos', u'hec', u'chang']
[u'crow', u'forward', u'steven', u'rest', u'injur', u'knee']
[u'cunningham', u'announc', u'apprenticeship']
[u'deadlin', u'loom', u'council', u'poll', u'nomin']
[u'dollar', u'coal', u'suppli', u'help', u'bring', u'xstrata', u'profit']
[u'dolli', u'dunn', u'appeal', u'stall']
[u'dont', u'judg', u'bulldog', u'chief']
[u'dont', u'judg', u'dog', u'chief']
[u'doubt', u'cast', u'pipelin', u'fund']
[u'appeal', u'inadequ', u'street', u'race', u'sentenc']
[u'dravid', u'dismiss', u'secur', u'fear']
[u'driver', u'alert', u'speed']
[u'emerg', u'chief', u'deni', u'play', u'canberra']
[u'eminem', u'sue', u'appl', u'lose']
[u'england', u'cautious', u'optimist', u'vaughan']
[u'mexico', u'suspend', u'import', u'poultri']
[u'euroa', u'sieg', u'end', u'peac']
[u'export', u'puzzl', u'meat', u'shipment', u'sit']
[u'farmer', u'group', u'urg', u'earli', u'locust', u'intervent']
[u'farmer', u'list', u'demand', u'agricultur', u'summit']
[u'fear', u'air', u'child', u'care', u'oversuppli']
[u'sale', u'london', u'park', u'space']
[u'forum', u'debat', u'propos', u'radioact', u'dump']
[u'fraser', u'campground', u'go', u'green']
[u'freightlink', u'delay', u'adelaid', u'darwin']
[u'fulham', u'clash']
[u'fund', u'meekatharra', u'tourism', u'discoveri', u'trail']
[u'fund', u'seek', u'road', u'transport', u'museum']
[u'german', u'social', u'worker', u'steal', u'homeless']
[u'blast', u'execut', u'lack', u'leadership']
[u'girl', u'stabl', u'lightn', u'strike']
[u'good', u'rain', u'drench', u'western']
[u'govt', u'plan', u'doubl', u'employe', u'share', u'ownership']
[u'govt', u'urg', u'boost', u'remot', u'health', u'fund']
[u'govt', u'urg', u'increas', u'fund', u'region']
[u'govt', u'warn', u'bali', u'report']
[u'govt', u'warn', u'block', u'power', u'reform']
[u'green', u'target', u'townsvill', u'council', u'poll']
[u'grower', u'fight', u'banana', u'import']
[u'hagan', u'look', u'spot', u'knight']
[u'haitian', u'presid', u'warn', u'exodus']
[u'heavi', u'rain', u'drench', u'hunter', u'valley']
[u'henin', u'hardenn', u'readi', u'william', u'challeng']
[u'hepat', u'drug', u'fight', u'sar']
[u'dismiss', u'lawsuit', u'polit']
[u'hous', u'price', u'rise', u'southern']
[u'howard', u'talk', u'achiev', u'elect', u'loom']
[u'independ', u'rais', u'hand', u'june', u'council', u'poll']
[u'indigen', u'centr', u'open', u'townsvill']
[u'indigen', u'leader', u'welcom', u'torr', u'strait', u'land']
[u'indonesia', u'say', u'hambali', u'answer', u'question']
[u'inquiri', u'probe', u'hardi', u'asbesto', u'compo', u'fund']
[u'insur', u'group', u'promina', u'deliv', u'maiden', u'profit']
[u'insur', u'doubl', u'profit']
[u'ireland', u'lock', u'ocallaghan', u'miss', u'england', u'clash']
[u'isra', u'troop', u'palestinian', u'clash', u'ramallah']
[u'israel', u'vow', u'continu', u'build', u'west', u'bank', u'barrier']
[u'jayden', u'leski', u'injur', u'disappear']
[u'jetstar', u'plan', u'see', u'good', u'south', u'west', u'victoria']
[u'job', u'upgrad', u'pine']
[u'juri', u'alleg', u'slaveri', u'trial', u'deliber']
[u'juvenil', u'bail', u'facil', u'draw', u'board']
[u'kemp', u'announc', u'south', u'coast', u'green', u'project']
[u'kerr', u'deni', u'plan', u'switch', u'state', u'polit']
[u'kerri', u'win', u'utah', u'idaho']
[u'kingsley', u'keen', u'midfield', u'vacanc']
[u'knight', u'target', u'spot']
[u'labor', u'play', u'specul']
[u'labor', u'vow', u'mend', u'tie', u'state']
[u'latham', u'arriv', u'port', u'moresbi']
[u'latham', u'grill', u'student']
[u'latham', u'unsur', u'euthanasia', u'posit']
[u'lawyer', u'criticis', u'inquest', u'murder', u'toddler']
[u'rest', u'lanka']
[u'leav', u'seek', u'recruit', u'kerr', u'state', u'polit']
[u'leski', u'probe', u'hear', u'domaszewicz', u'lie', u'polic']
[u'lib', u'wakefield', u'candid']
[u'lib', u'promis', u'sewag', u'outfal']
[u'lib', u'team', u'look', u'alburi', u'poll']
[u'linfox', u'urg', u'reduc', u'grand', u'prix', u'circuit']
[u'lockerbi', u'compens', u'peac', u'libyan']
[u'locust', u'pose', u'threat', u'farmer']
[u'magistr', u'keep', u'court', u'open', u'undercov', u'drug']
[u'charg', u'redfern', u'riot']
[u'face', u'court', u'assault', u'charg']
[u'face', u'murder', u'trial', u'bulli', u'death']
[u'market', u'stop', u'lose', u'streak']
[u'maroochi', u'shire', u'deputi', u'back', u'playford', u'comment']
[u'mayn', u'group', u'detail', u'healthi', u'profit']
[u'media', u'warn', u'releas', u'inform']
[u'medic', u'studi', u'consid', u'asthma', u'impact']
[u'merger', u'unlik', u'affect', u'wind', u'farm', u'blade', u'factori']
[u'miss', u'girl', u'sydney']
[u'council', u'elect', u'nomin', u'roll']
[u'want', u'power', u'woe', u'fix']
[u'murrayland', u'face', u'hurdl', u'job', u'growth']
[u'nerimbera', u'town', u'water', u'flow', u'april']
[u'crisi', u'nauru', u'confid', u'vote']
[u'mydoom', u'outbreak', u'spread', u'delet', u'file']
[u'talk', u'resolv', u'north', u'korea', u'crisi']
[u'korea', u'nuclear', u'talk']
[u'sight', u'denmark', u'hospit', u'site', u'debat']
[u'northern', u'major', u'flood', u'threat', u'subsid']
[u'north', u'sydney', u'crow', u'nest', u'blackout', u'end']
[u'govt', u'merg', u'north', u'coast', u'council']
[u'govt', u'lack', u'debat']
[u'govt', u'urg', u'boost', u'bendemer', u'teach', u'staff']
[u'deni', u'mayor', u'tilt', u'money']
[u'upper', u'hous', u'censur', u'costa']
[u'offici', u'anger', u'warrior', u'talk']
[u'ombudsman', u'urg', u'clear', u'dirti', u'water', u'concern']
[u'oppn', u'call', u'energi', u'infrastructur', u'upgrad']
[u'pakistan', u'reject', u'australian', u'wheat']
[u'paradorn', u'exit', u'marseill', u'open']
[u'perth', u'airport', u'owner', u'defend', u'increas', u'cost']
[u'plastic', u'drop']
[u'plea', u'help', u'eas', u'rain']
[u'polic', u'hunt', u'attempt', u'child', u'abduct']
[u'polic', u'issu', u'descript', u'miss', u'girl']
[u'polic', u'plea', u'alcohol', u'restrict', u'support']
[u'polic', u'seek', u'miss', u'kimberley']
[u'polic', u'tell', u'attack', u'hickey', u'funer']
[u'polic', u'review', u'secur', u'shoot', u'incid']
[u'poppi', u'grower', u'sign', u'memorandum', u'farmer', u'group']
[u'port', u'corp', u'sign', u'multi', u'purpos', u'berth', u'agreement']
[u'port', u'hedland', u'bali', u'flight', u'agenda']
[u'pratt', u'dokic', u'slump', u'dubai', u'defeat']
[u'privatis', u'rule', u'jail']
[u'properti', u'invest', u'warn', u'overst', u'credit']
[u'protest', u'voic', u'opposit', u'wast', u'dump']
[u'qanta', u'quiet', u'avalon', u'base', u'specul']
[u'angler', u'hook', u'rare', u'shark']
[u'question', u'rais', u'aquacultur', u'draft', u'polici']
[u'fee', u'meet', u'resum', u'student', u'protest']
[u'opt', u'increas']
[u'ralf', u'pip', u'michael', u'imola', u'test']
[u'rebellion', u'roll', u'forward', u'haiti']
[u'region', u'member', u'join', u'strike']
[u'rescuer', u'search', u'morocco', u'rubbl']
[u'resid', u'road', u'plan']
[u'riverina', u'tafe', u'teacher', u'strike']
[u'rugbi', u'fever', u'fail', u'save', u'seven', u'line']
[u'rush', u'nomin', u'expect', u'local', u'govt', u'poll']
[u'lead', u'wag', u'growth']
[u'sauvag', u'uncertain', u'paralymp', u'particip']
[u'scholar', u'fault', u'gibson', u'passion']
[u'scientist', u'say', u'brown', u'cloud', u'spread', u'asia']
[u'shire', u'worri', u'declar', u'anim', u'plant', u'control']
[u'korea', u'float', u'regular', u'nuclear', u'talk']
[u'strong', u'econom', u'growth', u'help', u'tasmanian']
[u'studi', u'predict', u'dentist', u'shortag']
[u'coast', u'await', u'qanta', u'jetstar', u'plan']
[u'super', u'plan', u'unveil', u'want']
[u'suspect', u'charg', u'hick']
[u'tafe', u'teacher', u'strike', u'rise']
[u'taliban', u'qaeda', u'fighter', u'target', u'pakistan']
[u'tamworth', u'council', u'hold', u'meet']
[u'tension', u'build', u'haiti', u'opposit', u'reject']
[u'tension', u'rise', u'taiwan', u'head', u'elect']
[u'thailand', u'see', u'free', u'trade', u'deal', u'australia']
[u'seek', u'mayor', u'spot']
[u'time', u'run', u'council', u'poll', u'nomin']
[u'toothfish', u'challeng', u'highlight', u'poach', u'threat']
[u'town', u'planner', u'shortag', u'blame', u'stress', u'inquiri']
[u'transplant', u'surgeon', u'urg', u'australian', u'donat']
[u'truck', u'crash', u'caus', u'mayhem', u'turkey']
[u'suspend', u'legal', u'action', u'kalgoorli']
[u'ugandan', u'presid', u'apologis', u'massacr']
[u'univers', u'western', u'sydney', u'staff', u'protest']
[u'keep', u'libya', u'travel', u'restrict']
[u'govt', u'urg', u'reconsid', u'plan', u'toxic', u'dump']
[u'victoria', u'benefit', u'budget', u'airlin']
[u'video', u'highlight', u'townsvill', u'street', u'fight']
[u'virgin', u'challeng', u'jetstar']
[u'murchison', u'yield', u'gold', u'provinc']
[u'water', u'restrict', u'remain', u'central', u'highland']
[u'water', u'restrict', u'remain', u'despit', u'downpour']
[u'west', u'bank', u'barrier', u'hinder', u'peac', u'court', u'tell']
[u'winchelsea', u'consid', u'surf', u'coast', u'shire', u'split']
[u'wing', u'clip', u'kempsey', u'sydney', u'link']
[u'wood', u'readi', u'match', u'play', u'defenc']
[u'work', u'begin', u'lake', u'cowal', u'gold']
[u'xstrata', u'coal', u'underlin', u'miner', u'sector']
[u'kill', u'russian', u'blast']
[u'rescu', u'plan', u'target', u'sugar']
[u'outlin', u'term', u'radio', u'inquiri']
[u'abbott', u'say', u'health', u'servic', u'territori']
[u'agricultur', u'group', u'commit', u'trade', u'talk']
[u'price', u'littl', u'direct', u'impact']
[u'albani', u'shed', u'light', u'youth', u'educ', u'plan']
[u'aluminium', u'smelter', u'worker', u'succumb', u'injuri']
[u'appl', u'pit', u'beatl', u'label', u'maker']
[u'arab', u'brother', u'creat', u'controversi', u'bahrain']
[u'archbishop', u'urg', u'church', u'deal', u'marriag']
[u'aristid', u'draw', u'conclus', u'chao']
[u'arm', u'gang', u'attack', u'small', u'nigerian', u'town']
[u'give', u'club', u'time', u'stake', u'futur']
[u'asbesto', u'liabil', u'fund', u'review']
[u'atsic', u'demand', u'polic', u'apolog', u'dancer']
[u'aussi', u'exit', u'dubai', u'open']
[u'aussi', u'match', u'best']
[u'barcaldin', u'secur', u'paramed', u'servic']
[u'basebal', u'dodger', u'rooki', u'cricket']
[u'field', u'candid', u'stand', u'break', u'hill']
[u'field', u'candid', u'stand', u'council']
[u'blair', u'say', u'spi', u'claim', u'deepli', u'irrespons']
[u'board', u'hous', u'resid', u'save', u'court']
[u'boon', u'speak', u'child', u'abus']
[u'brack', u'absent', u'toxic', u'dump', u'ralli']
[u'break', u'hill', u'put', u'councillor', u'fund']
[u'bulk', u'bill', u'plan', u'reflect', u'polici', u'gillard']
[u'burk', u'leav', u'shark', u'clash']
[u'burketown', u'flood']
[u'bush', u'tell', u'haitian', u'stay']
[u'busi', u'spend', u'climb']
[u'go', u'indigen', u'inning']
[u'communiti', u'nurs', u'home']
[u'canberra', u'eas', u'water', u'restrict']
[u'canberra', u'miss', u'cheap', u'flight']
[u'candid', u'put', u'townsvill', u'need', u'polit']
[u'candid', u'announc', u'local', u'govt', u'elect']
[u'carr', u'defend', u'liquor', u'industri', u'deregul']
[u'case', u'whistl', u'blow', u'translat', u'drop']
[u'china', u'see', u'consensus', u'korea', u'talk']
[u'commiss', u'consid', u'shop', u'centr', u'plan']
[u'contrast', u'council', u'candid', u'number', u'north']
[u'council', u'back', u'apart', u'park', u'joint', u'ventur']
[u'council', u'work', u'pipelin', u'fund']
[u'court', u'hear', u'appeal', u'gold', u'nativ', u'titl']
[u'cwealth', u'down', u'jetstar', u'raaf', u'base', u'plan']
[u'cyclon', u'lash', u'outer', u'vanuatu']
[u'deadlin', u'loom', u'fenc', u'help']
[u'death', u'highlight', u'firefight', u'danger', u'minist']
[u'defenc', u'admit', u'problem', u'health', u'record']
[u'defenc', u'forc', u'urg', u'improv', u'health', u'servic']
[u'diseas', u'claim', u'halt', u'wheat', u'shipment']
[u'solv', u'year', u'sexual', u'assault', u'case']
[u'doctor', u'perform', u'domino', u'transplant']
[u'attack', u'put', u'toddler', u'hospit']
[u'driver', u'front', u'court', u'fatal', u'crash']
[u'earthquak', u'survivor', u'protest', u'lack']
[u'effort', u'rescu', u'trap', u'lungfish']
[u'elector', u'roll', u'glitch', u'leav', u'deputi', u'mayor']
[u'employ', u'minist', u'sell', u'superannu', u'plan']
[u'urg', u'action', u'plastic', u'bag']
[u'europ', u'comet', u'mission', u'delay']
[u'fake', u'diamond', u'prove', u'harder', u'real', u'thing']
[u'fear', u'jetstar', u'arriv', u'qanta', u'flight']
[u'fear', u'snowi', u'cloud', u'plan', u'silver', u'line']
[u'govt', u'urg', u'inject', u'bendigo', u'health', u'fund']
[u'ferrero', u'crash', u'carraz', u'blitz']
[u'cricket', u'boon', u'speak', u'child']
[u'prison', u'guard', u'accus', u'traffic']
[u'swim', u'coach', u'sue', u'network']
[u'forum', u'debat', u'nuclear', u'wast', u'issu']
[u'franc', u'propos', u'civilian', u'forc', u'haiti']
[u'fund', u'help', u'shorten', u'surgeri', u'wait', u'list']
[u'industri', u'outlin', u'plan', u'futur']
[u'gold', u'coast', u'look', u'forward', u'jetstar', u'boost']
[u'gold', u'promis', u'region', u'benefit']
[u'govt', u'attack', u'potenti', u'sydney', u'water', u'cut']
[u'grainco', u'help', u'graincorp', u'profit']
[u'green', u'accus', u'martin', u'stifl', u'smaller', u'parti']
[u'green', u'deni', u'vandalis', u'tasmanian', u'log', u'equip']
[u'greenspan', u'warn', u'pressur', u'retir', u'babi']
[u'group', u'go', u'indigen', u'inning']
[u'gunn', u'chipper', u'grow', u'profit']
[u'haiti', u'capit', u'brace', u'rebel']
[u'hawker', u'welcom', u'super', u'chang']
[u'hickss', u'father', u'unsurpris', u'indefinit', u'custodi']
[u'hockey', u'tour', u'sunshin', u'coast']
[u'hop', u'high', u'nation', u'child', u'leukaemia', u'studi']
[u'hors', u'owner', u'penalis', u'anim', u'cruelti']
[u'howard', u'warn', u'union', u'domin', u'labor']
[u'humanitarian', u'group', u'urg', u'haiti', u'intervent']
[u'hunt', u'miss', u'plane', u'continu', u'year']
[u'industri', u'action', u'hit', u'sydney', u'opera', u'hous']
[u'mount', u'local', u'govt', u'poll']
[u'hear', u'esso', u'mainten', u'worker', u'disput']
[u'jail', u'industri', u'talk', u'prove', u'posit']
[u'jetstar', u'virgin', u'fight', u'fare']
[u'judg', u'murder', u'trial']
[u'corp', u'appoint', u'director']
[u'kiwi', u'arriv', u'adelaid', u'netbal', u'trial']
[u'kpmg', u'admit', u'breach']
[u'labor', u'hit', u'super', u'packag']
[u'latham', u'look', u'strengthen', u'tie']
[u'latham', u'prais', u'resili']
[u'legal', u'chang', u'seek', u'improv', u'organ', u'donat']
[u'leppa', u'attack', u'mcguir', u'salari', u'jib']
[u'leppa', u'hit', u'mcguir', u'salari', u'jib']
[u'leski', u'return', u'inquest']
[u'leski', u'walk', u'inquest']
[u'libya', u'accept', u'respons', u'bomb', u'foreign']
[u'lion', u'blow', u'brown', u'go', u'knife']
[u'luca', u'urg', u'polit', u'tugun']
[u'maher', u'confid', u'final']
[u'die', u'blue', u'mountain', u'truck', u'accid']
[u'jail', u'store', u'marriott', u'hotel', u'explos']
[u'juventus', u'lose', u'away', u'leg']
[u'mcgrath', u'loom', u'blue']
[u'mcgrath', u'put', u'hand', u'blue', u'select']
[u'fin', u'remov', u'bull', u'testicl']
[u'microsoft', u'tokyo', u'offic', u'raid']
[u'million', u'spend', u'hunter', u'black', u'spot']
[u'mismanag', u'claim', u'spark', u'land', u'council', u'fund']
[u'miss', u'tourist', u'requir', u'search']
[u'mix', u'respons', u'clarenc', u'valley', u'super', u'council']
[u'delay', u'hospit', u'site', u'develop']
[u'doctor', u'need', u'rape', u'examin', u'train']
[u'mundin', u'offer', u'fight', u'green']
[u'museum', u'look', u'queen', u'visit']
[u'face', u'probe']
[u'nat', u'choos', u'capricornia', u'candid']
[u'nat', u'want', u'toxic', u'dump', u'plan', u'rethink']
[u'bring', u'star', u'match']
[u'nightclub', u'oppos', u'earli', u'lockout']
[u'challeng', u'nambucca', u'mayor']
[u'perman', u'anthrax', u'problem']
[u'north', u'urg', u'cash', u'jetstar', u'benefit']
[u'taker', u'kempsey', u'rout']
[u'train', u'doctor', u'avail', u'examin', u'rape', u'victim']
[u'nat', u'leader', u'defend', u'cloud', u'seed', u'trial']
[u'opposit', u'block', u'liquor', u'deregul']
[u'administr', u'honour', u'prestigi', u'award']
[u'korea', u'offer', u'energi']
[u'polic', u'search', u'driver']
[u'warn', u'dengu', u'fever', u'risk']
[u'dead', u'hobart', u'apart']
[u'onesteel', u'meet', u'worker', u'industri', u'concern']
[u'pakistan', u'challeng', u'australia', u'ganguli']
[u'parramatta', u'power', u'play', u'off']
[u'passion', u'sweep', u'cinema']
[u'profit', u'share']
[u'petition', u'want', u'green', u'light', u'signal']
[u'plan', u'underway', u'fostervill', u'gold', u'mine']
[u'urg', u'equal', u'treatment', u'wake', u'riot']
[u'welcom', u'budget', u'airlin']
[u'polic', u'charg', u'book', u'thief']
[u'polic', u'plan', u'random', u'weapon', u'search', u'melbourn']
[u'polic', u'search', u'continu', u'child', u'attack']
[u'politician', u'hear', u'save', u'lighthous']
[u'possum', u'pose', u'threat', u'cockatoo']
[u'power', u'drain', u'threaten', u'mar', u'rover', u'lifespan']
[u'palestinian', u'argu', u'west', u'bank', u'barrier', u'obstacl']
[u'prosecutor', u'close', u'milosev', u'case']
[u'public', u'includ', u'bushfir', u'warn', u'inquiri']
[u'public', u'servant', u'better', u'privat', u'sector']
[u'push', u'young', u'blood', u'resourc', u'industri']
[u'banana', u'grower', u'fight', u'filipino', u'import']
[u'rabbitoh', u'extend', u'minichiello', u'contract']
[u'razorback', u'croc', u'season']
[u'rebel', u'captur', u'northern', u'haiti', u'island']
[u'resid', u'urg', u'boil', u'drink', u'water']
[u'river', u'salin', u'tip', u'rise']
[u'roadhous', u'flood', u'prove', u'cost']
[u'rockhampton', u'welcom', u'airlin']
[u'ruddock', u'play', u'bali', u'report']
[u'rumsfeld', u'afghanistan']
[u'saint', u'hudghton', u'escap', u'shoulder', u'reconstruct']
[u'second', u'test', u'pose', u'doubl', u'troubl', u'zimbabw']
[u'shabbir', u'pakistan', u'recal']
[u'ship', u'captain', u'face', u'charg', u'fuel', u'spill']
[u'year', u'kung', u'fighter', u'nab', u'robber']
[u'smith', u'steer', u'sunderland', u'quarter']
[u'sotico', u'purchas', u'talk', u'fail']
[u'staff', u'crisi', u'prompt', u'child', u'protect', u'staff']
[u'korean', u'plan', u'talk', u'tabl']
[u'storm', u'rain', u'break', u'central', u'heat']
[u'student', u'union', u'vow', u'fight', u'rise', u'fee']
[u'studi', u'hop', u'discov', u'caus', u'childhood']
[u'sunbeam', u'food', u'plan', u'anga', u'park', u'takeov']
[u'sunday', u'takeaway', u'float', u'alcohol', u'report']
[u'super', u'plan', u'face', u'realiti', u'costello']
[u'support', u'boost', u'hospit', u'doctor', u'number']
[u'swagman', u'get', u'proper', u'funer', u'year']
[u'swim', u'coach', u'sue', u'network']
[u'sydney', u'hotel', u'raid', u'fraud', u'investig']
[u'symond', u'push', u'test', u'place']
[u'symond', u'push', u'test', u'place']
[u'talk', u'focus', u'manag', u'bass', u'strait', u'scallop', u'fisheri']
[u'tasrail', u'need', u'massiv', u'capit', u'inject']
[u'tate', u'face', u'season', u'sidelin']
[u'tate', u'face', u'season', u'torment']
[u'teacher', u'aid', u'secur', u'scholarship']
[u'teacher', u'disput', u'remain', u'unresolv']
[u'tesk', u'lead', u'master', u'round']
[u'think', u'tank', u'work', u'uni', u'relat', u'aborigin']
[u'thousand', u'powerless', u'wide', u'blackout']
[u'tiatto', u'aim', u'injuri', u'free']
[u'shiit', u'cleric', u'agre', u'delay', u'iraq', u'poll']
[u'tourism', u'bodi', u'await', u'jetstar', u'rout', u'detail']
[u'tourism', u'bodi', u'welcom', u'virgin', u'jetstar', u'price', u'cut']
[u'tourism', u'council', u'upbeat', u'jetstar']
[u'tourism', u'group', u'upbeat', u'jetstar', u'move']
[u'tourist', u'die', u'pool', u'mishap']
[u'triathlet', u'quick', u'defenc', u'titl']
[u'truck', u'crash', u'blast', u'fear', u'spark', u'safeti', u'move']
[u'truss', u'demand', u'account', u'pork', u'subsidi']
[u'tuqiri', u'rule', u'leagu', u'return']
[u'tweed', u'share', u'green', u'fund']
[u'bushwalk', u'rescu', u'die']
[u'palestinian', u'gunmen', u'isra', u'kill', u'clash']
[u'call', u'crisi', u'meet', u'haiti']
[u'union', u'air', u'hous', u'plan', u'concern']
[u'univers', u'better', u'law', u'minist', u'say']
[u'upbeat', u'assess', u'buoy', u'dollar']
[u'hold', u'acquit', u'guantanamo', u'inmat']
[u'releas', u'danish', u'nation', u'guantanamo']
[u'govt', u'offer', u'busi', u'assur', u'amidst']
[u'govt', u'urg', u'hear', u'farm', u'zone', u'fear']
[u'video', u'link', u'common', u'court']
[u'educ', u'depart', u'sue', u'boy', u'cage']
[u'govt', u'wont', u'region', u'develop', u'bodi']
[u'word', u'erupt', u'highway', u'fund']
[u'warrior', u'claim', u'underdog', u'status', u'final']
[u'water', u'agreement', u'closer', u'realiti']
[u'websit', u'strain', u'fare', u'rush']
[u'westralia', u'supplier', u'deni', u'blame']
[u'wetland', u'blaze', u'pose', u'risk', u'firefight']
[u'wine', u'invest', u'fund', u'satisfi', u'half', u'year']
[u'woman', u'beg', u'magistr', u'stay', u'jail']
[u'wooli', u'supplier', u'consid', u'industri', u'estat']
[u'work', u'begin', u'perth', u'mandurah', u'railway']
[u'aborigin', u'women', u'defi', u'polic', u'danc', u'topless']
[u'activist', u'claim', u'victori', u'food']
[u'liber', u'seek', u'male', u'teacher']
[u'adelaid', u'festiv', u'kick', u'aborigin', u'welcom']
[u'adelaid', u'polic', u'bolster', u'riverland', u'forc']
[u'allan', u'hensbi', u'touch', u'tucson']
[u'altern', u'rout', u'travel', u'road']
[u'apolog', u'topless', u'danc', u'disput']
[u'assault', u'case', u'rise', u'tasmania']
[u'associ', u'happi', u'late', u'releas', u'grape']
[u'athen', u'readi']
[u'aussi', u'women', u'complet', u'rout']
[u'bar', u'button', u'shed', u'nice', u'imag']
[u'berridal', u'golf', u'cours', u'benefit', u'water']
[u'bike', u'protest', u'littl', u'disrupt', u'traffic']
[u'biki', u'warn', u'behav']
[u'billion', u'invest', u'project', u'earmark']
[u'blix', u'butler', u'bug']
[u'blix', u'phone', u'tap', u'sourc']
[u'borrow', u'bonanza', u'continu']
[u'brogden', u'griffith', u'street']
[u'brumbi', u'anticip', u'open', u'clash', u'nucifora']
[u'brumbi', u'caucau', u'lift', u'blue']
[u'bulldog', u'coach', u'get', u'player']
[u'bull', u'determin', u'send', u'winner']
[u'bushwalk', u'death', u'spark', u'inquiri']
[u'elect', u'possibl', u'rann']
[u'electr', u'review', u'includ', u'region']
[u'campaign', u'focus', u'candid', u'charact']
[u'cattl', u'shortfal', u'stop', u'sale']
[u'centrelink', u'swoop', u'foreign', u'harvest', u'worker']
[u'channel', u'defend', u'defam', u'alleg']
[u'chines', u'crazi']
[u'coast', u'tourism', u'group', u'head', u'look', u'boost']
[u'commonwealth', u'request', u'media', u'high', u'court']
[u'communiti', u'urg', u'nomin', u'tidi', u'town', u'award']
[u'compani', u'confid', u'merger', u'wont', u'jeopardis', u'wind']
[u'compani', u'rule', u'electr', u'price', u'chang']
[u'conrad', u'black', u'lose', u'court', u'battl']
[u'contamin', u'concern', u'lead', u'water', u'boil']
[u'coron', u'urg', u'better', u'educ', u'road']
[u'council', u'disappoint', u'lack', u'respons', u'land']
[u'council', u'lament', u'lack', u'nomin', u'elect']
[u'council', u'surpris', u'hous', u'condit', u'report']
[u'council', u'seek', u'toxic', u'dump', u'sit']
[u'council', u'hart', u'heirloom', u'piano']
[u'council', u'ahead', u'mount', u'panorama']
[u'council', u'want', u'rail', u'servic', u'includ', u'portland']
[u'countri', u'town', u'benefit', u'armi', u'train', u'exercis']
[u'court', u'rule', u'accus', u'arm', u'robber']
[u'bull', u'indian', u'wed']
[u'cray', u'fishermen', u'berat', u'break', u'code', u'conduct']
[u'croc', u'feel', u'despond']
[u'cyclist', u'warn', u'test', u'black', u'list']
[u'delay', u'pagoda', u'develop']
[u'dept', u'distanc', u'respons']
[u'dinosaur', u'provid', u'tourism', u'boon']
[u'disciplinari', u'action', u'take', u'pilot']
[u'downer', u'sadden', u'news', u'miss', u'macedonian']
[u'driver', u'want', u'action', u'backmark']
[u'eat', u'cat', u'dog', u'ban']
[u'enhanc', u'game', u'facil', u'boost', u'entertain']
[u'european', u'set', u'world', u'travel', u'record']
[u'foreign', u'secretari', u'doubt', u'chief', u'claim']
[u'famili', u'court', u'simplifi', u'child', u'custodi', u'case']
[u'farmer', u'march', u'banana', u'import', u'chang']
[u'faulti', u'equip', u'interrupt', u'spacewalk']
[u'fear', u'amalgam', u'leav', u'resid']
[u'feedlot', u'case', u'adjourn']
[u'fernando', u'give', u'chanc', u'prove', u'fit']
[u'mayor', u'retir', u'council']
[u'forum', u'look', u'way', u'chang', u'legal', u'access']
[u'friend', u'killer', u'reciev', u'year', u'jail', u'sentenc']
[u'gate', u'list', u'world', u'richest', u'hit']
[u'team', u'test']
[u'global', u'economi', u'road', u'recoveri']
[u'govt', u'embark', u'mine', u'impact', u'consult']
[u'govt', u'host', u'drought', u'roundtabl']
[u'green', u'push', u'eleph', u'exhibit']
[u'haiti', u'rebel', u'surround', u'capit']
[u'hayden', u'face', u'lanka']
[u'health', u'insur', u'price', u'rise', u'outstrip', u'inflat']
[u'hickey', u'aunt', u'bail', u'riot', u'charg']
[u'highway', u'accid', u'prompt', u'debat', u'road']
[u'highway', u'black', u'spot', u'soon', u'wipe']
[u'hodg', u'win', u'channel', u'defam', u'case']
[u'hodg', u'win', u'defam', u'case']
[u'hospit', u'plan', u'critic', u'head', u'work', u'parti']
[u'hous', u'need', u'urgent', u'communiti', u'report']
[u'hundr', u'trap', u'blaze', u'boat', u'manila']
[u'hundr', u'unaccount', u'manila']
[u'hunter', u'resid', u'warn', u'deal', u'local']
[u'hydro', u'electr', u'power', u'scheme', u'tender', u'call']
[u'indian', u'kashmir', u'chief', u'escap', u'grenad', u'attack']
[u'indigen', u'remain', u'form', u'lagoon', u'walkway']
[u'indigen', u'snapshot', u'show', u'young', u'popul']
[u'insecticid', u'spill', u'clear']
[u'investig', u'continu', u'onlin', u'paedophil', u'ring']
[u'island', u'asbesto', u'remov', u'delay']
[u'israel', u'palestinian', u'clash', u'erupt', u'jerusalem']
[u'japan', u'boost', u'militari', u'tie']
[u'kelli', u'explain', u'effluent', u'scheme', u'fund', u'dilemma']
[u'kimberley', u'land', u'council', u'run', u'nativ', u'titl']
[u'kiss', u'target', u'univers', u'pool', u'discrimin']
[u'klitschko', u'go', u'sander', u'lewi', u'titl']
[u'knee', u'injuri', u'put', u'hayden', u'doubt']
[u'land', u'grab', u'fuel', u'council', u'surplus']
[u'larg', u'swell', u'spark', u'beach', u'warn']
[u'latham', u'support', u'sugar', u'industri', u'restructur']
[u'latham', u'meet', u'sugar', u'banana', u'grower']
[u'latham', u'woo', u'hinkler', u'voter']
[u'leav', u'bulldog', u'case', u'polic']
[u'leav', u'bulldog', u'case', u'polic']
[u'leed', u'takeov', u'consortium', u'pull']
[u'lend', u'data', u'renew', u'rate', u'rise', u'specul']
[u'libya', u'destroy', u'bomb']
[u'local', u'govt', u'elect', u'draw', u'good', u'respons']
[u'macedonia', u'mourn', u'presid']
[u'macedonian', u'presid', u'crash', u'plane']
[u'macedonian', u'presid', u'bodi', u'crash', u'site']
[u'charg', u'salt', u'nightclub', u'stab']
[u'refus', u'bail', u'alleg', u'attack']
[u'remand', u'bail', u'alleg', u'bash']
[u'serv', u'month', u'jail', u'social']
[u'mayor', u'team', u'face', u'elect', u'challeng']
[u'mccafferti', u'welcom', u'jetstar', u'takeoff']
[u'media', u'delay', u'peopl', u'smuggl', u'trial']
[u'medicar', u'fraud', u'charg', u'doctor', u'dismiss']
[u'minist', u'want', u'sector']
[u'monarchist', u'alarm', u'ditch', u'royal', u'arm']
[u'test', u'contamin', u'wheat', u'shipment']
[u'moroccan', u'angri', u'earthquak', u'respons']
[u'mundin', u'reject', u'green', u'bout']
[u'mundin', u'say', u'green', u'bout']
[u'narrogin', u'shire', u'resid', u'merger', u'feel', u'clear']
[u'nato', u'help', u'olymp', u'secur']
[u'cull', u'kangaroo', u'koala']
[u'cancer', u'drug', u'win', u'approv']
[u'lead', u'druitt', u'murder', u'inquiri']
[u'mingo', u'bridg', u'propos', u'win', u'plaudit']
[u'news', u'corp', u'pull', u'market', u'higher']
[u'zealand', u'women', u'post']
[u'ningaloo', u'shire', u'reject']
[u'explan', u'need', u'water', u'sack']
[u'plea', u'requir', u'westralia', u'case', u'adjourn']
[u'north', u'korea', u'talk', u'extend']
[u'consid', u'team', u'competit']
[u'nuclear', u'activ', u'ban', u'geraldton']
[u'olyroo', u'play', u'greec', u'olymp', u'warm']
[u'opposit', u'blast', u'cut', u'school', u'budget']
[u'outlook', u'mix', u'busi', u'forum', u'tell']
[u'paint', u'worth', u'steal', u'studio']
[u'pakistan', u'nuclear', u'technolog', u'arm', u'fair', u'report']
[u'passeng', u'tell', u'ferri', u'nightmar']
[u'perfect', u'diaz', u'grab', u'halfway', u'lead']
[u'perth', u'hold', u'state', u'funer', u'olymp', u'great']
[u'outlin', u'danger', u'busi']
[u'polic', u'columbin', u'shooter']
[u'polic', u'investig', u'heist']
[u'pollock', u'masterpiec', u'return', u'nation', u'galleri']
[u'pont', u'play', u'somerset']
[u'port', u'augusta', u'vandal', u'rais', u'hackl']
[u'port', u'decis', u'expect', u'short']
[u'princ', u'highway', u'remain', u'close']
[u'protest', u'palestinian', u'clash', u'isra', u'soldier']
[u'public', u'urg', u'health', u'countri']
[u'govt', u'seek', u'feder', u'help', u'tugun', u'bypass']
[u'question', u'rais', u'theft']
[u'rain', u'wash', u'zim', u'banger', u'test']
[u'rain', u'wash', u'match', u'play', u'second', u'round']
[u'report', u'blame', u'helicopt', u'accid', u'pilot']
[u'rescuer', u'pluck', u'survivor', u'burn', u'ferri']
[u'resid', u'organis', u'petit', u'town', u'futur']
[u'resid', u'urg', u'switch', u'cleaner', u'heat', u'method']
[u'welcom', u'coron', u'find', u'way', u'improv']
[u'rise', u'euro', u'prompt', u'rat', u'push']
[u'river', u'cross', u'remain', u'open', u'despit', u'drown']
[u'roma', u'parma', u'suffer', u'shock', u'uefa', u'defeat', u'liverpool']
[u'salvag', u'tree', u'caus', u'damag', u'report']
[u'sarin', u'attack', u'cult', u'guru', u'sentenc', u'death']
[u'school', u'breakfast', u'program', u'expand']
[u'second', u'delay', u'comet', u'chase', u'mission']
[u'serena', u'withdraw', u'qatar', u'open']
[u'shin', u'scan', u'delay', u'departur', u'england', u'jone']
[u'shirley', u'strickland', u'hunti', u'rememb']
[u'shirvo', u'pittman', u'compet']
[u'shooter', u'cassel', u'drop', u'legal', u'challeng']
[u'smith', u'say', u'pressur', u'black', u'cap']
[u'snake', u'bite', u'prompt', u'properti', u'warn']
[u'space', u'station', u'crew', u'begin', u'spacewalk']
[u'strickland', u'funer', u'hold', u'today']
[u'strike', u'affect', u'public', u'say', u'power', u'compani']
[u'studi', u'reveal', u'alarm', u'obes', u'trend', u'young', u'women']
[u'stuppl', u'snatch', u'ladi', u'master', u'lead']
[u'suncorp', u'record', u'profit', u'jump']
[u'surfer', u'safe', u'sweep']
[u'sydney', u'employ', u'studi', u'prompt', u'discuss']
[u'sydney', u'water', u'chief', u'sack']
[u'taliban', u'defeat', u'say', u'afghan', u'leader']
[u'appl', u'industri', u'fight', u'import']
[u'beat', u'indigen', u'cricket']
[u'land', u'owner', u'tackl', u'weed', u'threat']
[u'teenag', u'face', u'trial', u'shoot']
[u'tenni', u'chief', u'drug']
[u'world', u'school', u'shock', u'nation']
[u'tibetan', u'nun', u'record', u'detent', u'end']
[u'tindal', u'get', u'england', u'recal']
[u'town', u'brace', u'popul', u'explos']
[u'town', u'close', u'establish']
[u'traffic', u'disrupt', u'expect', u'melbourn', u'cyclist']
[u'trial', u'suspect', u'jemaah', u'islamiyah', u'member']
[u'true', u'dont', u'like', u'beckham', u'china']
[u'news', u'offer', u'viewer', u'nake', u'truth']
[u'dinosaur', u'speci', u'antarctica']
[u'tyson', u'agre', u'plea', u'deal', u'assault', u'charg']
[u'agenc', u'attack', u'nigeria', u'polio', u'vaccin']
[u'open', u'centr']
[u'eas', u'sanction', u'ban', u'libya']
[u'expect', u'benefit', u'intern', u'exposur']
[u'urg', u'haitian', u'presid', u'consid', u'futur']
[u'valentin', u'doubt', u'red']
[u'venus', u'humbl', u'dubai', u'quarter']
[u'govt', u'hold', u'urgent', u'talk', u'prevent']
[u'power', u'disput', u'wont', u'affect', u'consum', u'union']
[u'premier', u'defend', u'union', u'stanc']
[u'villag', u'roadshow', u'lose', u'appeal', u'share']
[u'govt', u'compens', u'agricultur', u'worker']
[u'wander', u'crocodil', u'catch', u'trap']
[u'western', u'power', u'probe', u'demand', u'failur']
[u'worksaf', u'target', u'region', u'area', u'statewid']
[u'young', u'urg', u'consid', u'job', u'land']
[u'zimbabw', u'opposit', u'leader', u'await', u'treason', u'rule']
[u'zoo', u'best', u'spend', u'eleph', u'sanctuari']
[u'bodi', u'recov', u'indian', u'crash']
[u'year', u'work', u'culmin', u'art', u'centr', u'open']
[u'academ', u'lobbi', u'hec', u'rise']
[u'replant', u'pin', u'despit', u'water', u'suppli', u'fear']
[u'adelaid', u'festiv', u'draw', u'night', u'queue']
[u'aqsa', u'brigad', u'claim', u'west', u'bank', u'settler', u'kill']
[u'anti', u'chavez', u'protest', u'disrupt', u'poverti', u'summit']
[u'anti', u'chavez', u'protest', u'kill', u'venezuela', u'ralli']
[u'aristid', u'exclud', u'haitian', u'power', u'share']
[u'aristid', u'isol', u'mull', u'militari', u'option']
[u'aristid', u'vow', u'stay', u'offic']
[u'athlet', u'scratch', u'minist', u'tell']
[u'atsic', u'pursu', u'topless', u'danc', u'complaint']
[u'balloon', u'obsess', u'inflat', u'pilot', u'trophi', u'cabinet']
[u'bangladeshi', u'writer', u'unconsci', u'hospit']
[u'battl', u'wentworth', u'come', u'head']
[u'blade', u'thunderstick']
[u'blair', u'minist', u'debunk', u'spi', u'claim']
[u'blix', u'back', u'spi', u'claim']
[u'bomber', u'blitz', u'see', u'lion']
[u'cancer', u'regist', u'make', u'earli', u'save']
[u'career', u'advic', u'guidelin', u'eas', u'push']
[u'carr', u'stand', u'sydney', u'water', u'reform']
[u'cathol', u'priest', u'abus', u'youth', u'studi']
[u'cat', u'face', u'demon', u'preseason', u'semi']
[u'central', u'desert', u'galleri', u'continu', u'namitjira', u'legaci']
[u'child', u'porn', u'dentist', u'free', u'practis']
[u'christ', u'statu', u'saviour', u'nude', u'australian']
[u'clement', u'seed', u'marseill']
[u'democrat', u'seek', u'alcopop', u'control']
[u'demon', u'preseason', u'semi']
[u'dockland', u'film', u'studio']
[u'dope', u'accus', u'bond', u'innoc']
[u'kill', u'pakistan', u'troop']
[u'emerg', u'team', u'test', u'counter', u'terror', u'plan']
[u'encourag', u'econom', u'data', u'fail', u'market']
[u'etern', u'flame', u'burn', u'bright', u'year']
[u'euro', u'fan', u'test', u'drunken']
[u'impos', u'break', u'sanction']
[u'explos', u'kill', u'bolivian', u'anti', u'drug', u'prosecutor']
[u'fashion', u'boss', u'wait', u'breathless', u'oscar', u'fame']
[u'firefight', u'mull', u'terror', u'exercis', u'boycott']
[u'fisheri', u'pursu', u'illeg', u'abalon', u'buyer']
[u'fresh', u'fight', u'rais', u'nigerian', u'death', u'toll']
[u'furi', u'mount', u'landmin', u'turn']
[u'marriag', u'battl', u'reach', u'york']
[u'govt', u'defend', u'cathol', u'school', u'fund', u'boost']
[u'green', u'condemn', u'downer', u'silenc', u'spi']
[u'green', u'demand', u'environ', u'report']
[u'haitian', u'capit', u'turmoil', u'rebel', u'near']
[u'haiti', u'presid', u'rule', u'resign']
[u'hawk', u'wildcat']
[u'health', u'cover', u'squeez', u'famili', u'budget', u'abbott']
[u'highway', u'reopen', u'chemic', u'spill']
[u'import', u'bug', u'suck', u'life', u'bellyach', u'bush']
[u'iraq', u'olymp', u'suspens', u'lift']
[u'israel', u'vow', u'complet', u'west', u'bank', u'barrier']
[u'java', u'offici', u'fear', u'dengu', u'strain']
[u'jerom', u'young', u'sue', u'olymp', u'committe']
[u'johnson', u'book', u'ticket', u'athen', u'olymp']
[u'judg', u'dismiss', u'stewart', u'secur', u'fraud', u'charg']
[u'kasprowicz', u'fire', u'australia', u'seri']
[u'kewel', u'cope', u'abus', u'leed', u'return']
[u'leaney', u'match', u'play', u'quarter']
[u'macedonian', u'death', u'tragedi', u'crisi']
[u'mckenzi', u'demand', u'consist', u'waratah']
[u'mclaren', u'confid', u'strong', u'start']
[u'melbourn', u'lose', u'hand', u'brawl']
[u'face', u'drug', u'charg', u'sydney', u'raid']
[u'urg', u'stab']
[u'minist', u'back', u'health', u'report']
[u'minist', u'eas', u'indemn', u'insur', u'burden']
[u'monti', u'menac', u'coast']
[u'moroccan', u'govt', u'deni', u'earthquak', u'slow']
[u'muralitharan', u'chandana', u'leav', u'aussi', u'spin']
[u'museum', u'light', u'sydney', u'night']
[u'nato', u'plan', u'afghan', u'secur', u'zone']
[u'newcastl', u'docker', u'strike', u'coal', u'conspiraci']
[u'nipper', u'safe', u'program', u'eas', u'paedophilia', u'fear']
[u'flight', u'survey', u'vanuatu', u'cyclon', u'damag']
[u'palestinian', u'suspect', u'hebron', u'ambush']
[u'perth', u'polic', u'condemn', u'partygo', u'behaviour']
[u'philippin', u'ferri', u'rescu', u'oper', u'resum']
[u'point', u'point', u'camera', u'target', u'speed']
[u'polic', u'target', u'fink', u'motorcycl', u'gang']
[u'polic', u'interview', u'steal', u'cezann', u'owner']
[u'poor', u'brisban', u'poll', u'fail', u'faze', u'liber']
[u'properti', u'council', u'back', u'urban', u'plan', u'chang']
[u'public', u'alert', u'polic', u'stab', u'victim']
[u'public', u'support', u'inspir', u'commission', u'rank']
[u'rain', u'wash', u'south', u'africa', u'dayer']
[u'rover', u'scale', u'mar', u'explor']
[u'senior', u'share', u'lead', u'tight', u'championship']
[u'seven', u'book', u'olymp', u'place']
[u'shampoo', u'thiev', u'clean', u'getaway']
[u'shirvo', u'withdraw', u'olymp', u'trial']
[u'slocum', u'vault', u'tucson', u'lead']
[u'soccer', u'probe', u'step', u'polic', u'state', u'berlusconi']
[u'sorenstam', u'fire', u'master', u'lead']
[u'spanish', u'supercomput', u'medic', u'climat']
[u'spend', u'drop', u'reign', u'econom', u'growth']
[u'stop', u'brother', u'bahrain', u'protest']
[u'stop', u'start', u'red', u'beat', u'chief']
[u'strike', u'forc', u'continu', u'bulldog', u'assault', u'inquiri']
[u'stuppl', u'take', u'lead', u'round']
[u'suicid', u'bomber', u'fail', u'harm', u'isra', u'troop']
[u'suppli', u'concern', u'drive', u'price']
[u'sydney', u'polic', u'mysteri', u'shoot', u'site']
[u'sydney', u'shoot', u'victim', u'puzzl', u'polic']
[u'talk', u'fail', u'resolv', u'north', u'korea', u'nuclear', u'disput']
[u'cut', u'boost', u'work', u'appeal', u'swan']
[u'bird', u'fall', u'short', u'victori']
[u'terror', u'suspect', u'face', u'extend', u'detent']
[u'trade', u'deleg', u'target', u'brunei']
[u'train', u'collid', u'bengal', u'marriag', u'process']
[u'turnbul', u'win', u'wentworth', u'preselect']
[u'anti', u'chavez', u'protest']
[u'approv', u'ivori', u'coast', u'peacekeep', u'forc']
[u'ask', u'spi', u'explan']
[u'union', u'brand', u'opposit', u'educ', u'polici', u'irrelev']
[u'court', u'clear', u'daili', u'telegraph', u'auction']
[u'court', u'refus', u'halt', u'wed']
[u'deni', u'iran', u'report', u'laden', u'captur']
[u'germani', u'patch', u'differ']
[u'germani', u'swap', u'differ', u'dollar', u'concern']
[u'abandon', u'power', u'competit', u'plan']
[u'waratah', u'good', u'shark']
[u'wild', u'condit', u'close', u'sydney', u'beach']
[u'wit', u'aid', u'polic', u'murder', u'inquiri']
[u'woman', u'escap', u'gold', u'coast', u'abduct', u'attempt']
[u'wood', u'mickelson', u'eas', u'match', u'play', u'round']
[u'report', u'highlight', u'custodi', u'order']
[u'accommod', u'crisi', u'meet', u'pleas', u'student']
[u'recaptur', u'escap', u'paedophil']
[u'african', u'union', u'deleg', u'dismiss', u'singl', u'armi']
[u'welcom', u'turnbul', u'preselect']
[u'anti', u'movement', u'bush', u'blair', u'iraq']
[u'aristid', u'leav', u'violenc', u'tear', u'haiti']
[u'aristid', u'urg', u'calm', u'gang', u'rampag', u'haiti']
[u'armstrong', u'face', u'lose', u'tour']
[u'arsenal', u'clear', u'fulham', u'hold', u'unit']
[u'restor', u'hit', u'cezann', u'sceptic']
[u'athlet', u'coach', u'frustrat', u'attitud']
[u'australia', u'cyclon', u'ravag', u'vanuatu']
[u'baddeley', u'eye', u'tucson']
[u'bald', u'head', u'promot', u'taiwan', u'referendum']
[u'bennif', u'sweep', u'razzi']
[u'berlusconi', u'upset', u'italian', u'plastic', u'surgeon']
[u'lade', u'arrest', u'claim', u'fals', u'pentagon']
[u'bodi', u'nepean', u'river']
[u'british', u'armi', u'fear', u'iraq', u'illeg', u'minist']
[u'british', u'govt', u'ask', u'probe', u'iraq', u'civilian', u'death']
[u'bulldog', u'troubl', u'asid', u'trial']
[u'bullet', u'sink', u'king', u'gasp', u'pointer']
[u'bull', u'beat', u'hurrican', u'open', u'super', u'account']
[u'bull', u'favourit', u'final']
[u'bull', u'favourit', u'final']
[u'bush', u'revamp', u'clone', u'panel', u'conserv']
[u'bush', u'tout', u'faith', u'base', u'drug', u'treatment']
[u'camplin', u'win', u'world', u'titl']
[u'canadian', u'tourist', u'dead']
[u'cathol', u'school', u'fund', u'target', u'need', u'union']
[u'cathol', u'school', u'negoti', u'fund', u'boost']
[u'china', u'gag', u'chatroom', u'user']
[u'choir', u'get', u'long', u'await', u'festiv']
[u'coin', u'meter', u'day', u'number']
[u'cole', u'win', u'championship']
[u'constitut', u'deadlin', u'loom', u'split', u'iraq', u'council']
[u'democrat', u'want', u'quarantin', u'inquiri']
[u'downer', u'slam', u'provoc', u'islam', u'leader']
[u'earthquak', u'rattl', u'south', u'west']
[u'elder', u'bushwalk']
[u'elect', u'monitor', u'welcom', u'aceh']
[u'estonian', u'soldier', u'die', u'baghdad', u'shoot']
[u'fear', u'hold', u'elder', u'bushwalk']
[u'festiv', u'claim', u'world', u'longest', u'sausag']
[u'festiv', u'competit', u'boost', u'ticket', u'sale']
[u'filipino', u'search', u'team', u'enter', u'burn', u'ferri']
[u'firi', u'battl', u'perth', u'hill', u'blaze']
[u'flood', u'close', u'highway']
[u'fund', u'boost', u'health', u'welcom']
[u'glori', u'snatch', u'draw']
[u'govt', u'kick', u'high', u'school', u'cannabi', u'educ']
[u'govt', u'open', u'iraqi', u'inquiri']
[u'hand', u'sever', u'brawl', u'reattach']
[u'henin', u'hardenn', u'grab', u'titl', u'year']
[u'hill', u'downer', u'split', u'second', u'inquiri']
[u'histor', u'airfield', u'gain', u'nation', u'trust', u'protect']
[u'histori', u'repeat', u'bradford', u'break']
[u'howard', u'rule', u'quick', u'promot', u'turnbul']
[u'hurdl', u'champ', u'tell', u'improv', u'time']
[u'india', u'resolv', u'issu', u'pakistan']
[u'india', u'set', u'elect', u'date']
[u'internet']
[u'iranian', u'defenc', u'minist', u'threaten', u'israel', u'case']
[u'iraqi', u'leader', u'miss', u'constitut', u'deadlin']
[u'iraq', u'win', u'debt', u'reduct', u'principl']
[u'isra', u'step', u'gaza', u'strip', u'missil', u'attack']
[u'italian', u'town', u'set', u'pamper', u'law']
[u'john', u'knight']
[u'kiwi', u'seri', u'africa', u'thriller']
[u'klim', u'play', u'olymp', u'select', u'chanc']
[u'leaney', u'wood', u'face', u'match', u'play']
[u'lib', u'resid', u'lobbi', u'tugun', u'bypass']
[u'lose', u'translat', u'find', u'fan', u'indi', u'award']
[u'malaysian', u'polic', u'quell', u'demonstr']
[u'die', u'dive', u'accid']
[u'manus', u'island', u'captiv', u'prefer', u'nauru']
[u'markov', u'hooker', u'soar', u'olymp', u'team']
[u'melbourn', u'water', u'restrict', u'extend']
[u'mental', u'health', u'patient', u'hous', u'expand']
[u'million', u'pay', u'inform', u'finger', u'saddam']
[u'bird', u'confirm', u'japan']
[u'music', u'great', u'scrutini']
[u'water', u'treatment', u'plan', u'track']
[u'arrest', u'marriott', u'bomb', u'investig', u'report']
[u'ireland', u'peac', u'process', u'crisi', u'sinn', u'fein']
[u'korean', u'nuclear', u'talk', u'resum']
[u'polic', u'continu', u'probe', u'multi', u'million']
[u'hold', u'earli', u'parti', u'oscar', u'contend']
[u'parmalat', u'retain', u'profit', u'foreign', u'oper']
[u'poet', u'snare', u'literatur', u'plaudit']
[u'porn', u'defenc', u'dept', u'comput']
[u'activ', u'polic', u'crime', u'drop']
[u'probe', u'launch', u'stadium', u'brawl']
[u'public', u'dupe', u'darwin', u'harbour', u'pipelin', u'plan']
[u'push', u'tougher', u'kill', u'pesticid']
[u'floodwat', u'dampen', u'lake', u'eyr']
[u'govt', u'hail', u'crime', u'statist']
[u'raaf', u'prepar', u'vanuatu', u'mission']
[u'rain', u'wreck', u'zim', u'banger', u'test']
[u'roof', u'roof', u'game', u'rogu']
[u'row', u'squad', u'name', u'olymp', u'tour']
[u'royal', u'wed', u'tour', u'fundrais', u'track']
[u'rwanda', u'post', u'genocid', u'privat', u'radio']
[u'kilometr', u'zone', u'road', u'fatal']
[u'saint', u'march', u'preseason', u'semi']
[u'school', u'fund', u'chang', u'church', u'valu']
[u'search', u'screensound', u'director', u'begin']
[u'second', u'half', u'storm', u'flatten', u'highland']
[u'sever', u'hand', u'brawl', u'motiv', u'unknown']
[u'sexual', u'right', u'stop', u'aid', u'confer', u'tell']
[u'simul', u'test', u'diseas', u'conting']
[u'soderl', u'power', u'past', u'clement', u'marseill', u'final']
[u'sorenstam', u'sizzl', u'master']
[u'sorenstam', u'beat']
[u'south', u'africa', u'toss', u'bowl']
[u'lanka', u'score', u'consol']
[u'sudan', u'jazeera', u'trial', u'open', u'defenc', u'lawyer']
[u'sydney', u'hospit', u'death', u'claim', u'disput']
[u'taiwan', u'protest', u'chines', u'missil']
[u'palestinian', u'kill', u'isra', u'missil', u'strike']
[u'tourist', u'fear', u'drown', u'north']
[u'chemic', u'tanker', u'disast']
[u'kill', u'injur', u'turkish', u'mosqu', u'collaps']
[u'union', u'pan', u'univers', u'indigen', u'support', u'chang']
[u'blame', u'aristid', u'haiti', u'crisi']
[u'mull', u'kpmg', u'crimin', u'charg']
[u'vail', u'deni', u'nat', u'banana', u'split']
[u'venezuelan', u'presid', u'warn', u'foe', u'clash']
[u'veteran', u'recal', u'kookaburra', u'squad']
[u'coast', u'brace', u'cyclon', u'monti']
[u'polic', u'cannabi', u'crop']
[u'warn', u'reunit', u'test', u'team']
[u'warrior', u'fight', u'bull']
[u'warrior', u'pull', u'miracl', u'final']
[u'warrior', u'pull', u'miracl', u'final']
[u'speed', u'hoon', u'law']
[u'weather', u'bureau', u'cyclon', u'alert']
[u'whistleblow', u'nurs', u'credibl']
[u'wildcat', u'slip', u'cost', u'home', u'court', u'advantag']
[u'admiss', u'libyan', u'preserv', u'khaddafi']
[u'wood', u'defend', u'match', u'play', u'crown', u'love']
[u'lift', u'victorian', u'food', u'campaign']
[u'detail', u'discrep', u'rat', u'aborigin']
[u'academ', u'strike', u'plan', u'enterpris', u'agreement']
[u'act', u'health', u'servic', u'chief', u'resign']
[u'judg', u'hear', u'norfolk', u'murder', u'case']
[u'opposit', u'push', u'right', u'amend']
[u'centuri', u'boro', u'major', u'trophi']
[u'agassi', u'pull', u'scottsdal', u'classic']
[u'age', u'care', u'gather', u'unhappi', u'minist', u'respons']
[u'ord', u'year', u'high']
[u'ancelotti', u'delight', u'milan', u'lazio']
[u'aristid', u'arriv', u'africa']
[u'aristid', u'seek', u'refug', u'marin', u'haiti']
[u'theft', u'victim', u'frustrat', u'polic']
[u'asian', u'choos', u'dietari', u'habit', u'chang']
[u'aspir', u'palm', u'chairman', u'highlight', u'self', u'rule', u'need']
[u'athlet', u'name', u'athen']
[u'kill', u'port', u'princ']
[u'aussi', u'short', u'triumph', u'oscar']
[u'aussi', u'welcom', u'warn', u'warm']
[u'aust', u'china', u'iron', u'deal']
[u'australian', u'arriv', u'cyclon', u'ravag', u'vanuatu']
[u'australian', u'run', u'oscar', u'glori']
[u'bacon', u'touch', u'anti', u'smoke', u'messag', u'respons']
[u'billiton', u'share', u'jump', u'china', u'deal']
[u'task', u'ahead', u'gold', u'coast', u'team']
[u'blair', u'face', u'fresh', u'iraq', u'claim', u'legal', u'advic']
[u'bogey', u'cost', u'baddeley', u'dear']
[u'brawl', u'prompt', u'polic', u'crackdown', u'weapon']
[u'bumper', u'januari', u'boonah', u'tourism']
[u'bureau', u'say', u'averag', u'summer']
[u'bushfir', u'inquiri', u'put', u'emerg', u'chief']
[u'bushfir', u'inquiri', u'wit', u'urg', u'rememb']
[u'bush', u'order', u'marin', u'haiti']
[u'busi', u'warn', u'underag', u'smoke', u'crackdown']
[u'cahil', u'clear', u'play', u'socceroo']
[u'continu', u'kangaroo', u'koala', u'cull']
[u'chardonnay', u'grape', u'price', u'rise']
[u'continu', u'local', u'govt', u'voic', u'determin']
[u'mayor', u'candid', u'disclos', u'turnbul']
[u'meet', u'tourism', u'plan']
[u'toxic', u'dump', u'near', u'school']
[u'campaign', u'forc', u'council', u'merger', u'roll']
[u'canberra', u'road', u'work', u'claim', u'tree']
[u'candid', u'gear', u'local', u'govt', u'poll']
[u'caribbean', u'nation', u'deplor', u'aristid', u'remov']
[u'carr', u'defend', u'hospit', u'chief', u'sack']
[u'carr', u'vow', u'untangl', u'sydney', u'rail']
[u'celtic', u'close', u'scottish', u'titl', u'ranger']
[u'centrebet', u'cheer', u'oscar', u'favourit']
[u'china', u'attack', u'human', u'right', u'record']
[u'announc', u'northern', u'suburb', u'candid']
[u'concern', u'mount', u'china', u'econom', u'stabil']
[u'confus', u'farm', u'zone', u'legisl']
[u'contract', u'see', u'biscuit', u'maker', u'oversea']
[u'cook', u'undergo', u'ankl', u'surgeri']
[u'cough', u'cold', u'kit', u'stem', u'antibiot', u'studi']
[u'councillor', u'flag', u'quick', u'cours', u'action', u'golf']
[u'council', u'develop', u'land', u'sale', u'report']
[u'council', u'welcom', u'strip', u'club', u'knockback']
[u'croc', u'sink', u'pirat', u'season', u'closer']
[u'cyclon', u'evan', u'head']
[u'cyclon', u'evan', u'hit', u'groot', u'eylandt']
[u'cyclon', u'help', u'break', u'year', u'rain', u'record']
[u'danger', u'offend', u'test', u'high', u'court']
[u'diver', u'come', u'hand', u'predatori', u'starfish']
[u'test', u'follow', u'bulldog', u'interview', u'polic']
[u'dog', u'sicken', u'assault', u'public']
[u'drought', u'contribut', u'shoplift', u'polic']
[u'eclect', u'confer', u'ponder', u'bliss']
[u'educ', u'campaign', u'target', u'young', u'cannabi', u'user']
[u'fear', u'deal', u'impact']
[u'escap', u'paedophil', u'remand', u'custodi']
[u'escap', u'paedophil', u'court']
[u'sanction', u'target', u'break']
[u'hinchinbrook', u'mayor', u'contest']
[u'export', u'surg', u'boost', u'australia', u'trade', u'balanc']
[u'depend', u'tobacco', u'money', u'eccleston']
[u'factbox', u'haiti']
[u'farmer', u'expect', u'cope', u'salti', u'water']
[u'feder', u'savour', u'round', u'rematch', u'safin']
[u'govt', u'urg', u'boost', u'princ', u'highway', u'fund']
[u'festiv', u'launch', u'onlin', u'perform', u'index']
[u'fifa', u'set', u'world', u'club', u'championship', u'return']
[u'fiji', u'coach', u'say', u'caucau', u'commit', u'pacif']
[u'filipino', u'militari', u'reject', u'ferri', u'bomb', u'claim']
[u'threat', u'continu']
[u'time', u'correspond', u'die', u'bali']
[u'franc', u'send', u'troop', u'haiti']
[u'freeman', u'keep', u'faith', u'aussi', u'athlet']
[u'gibson', u'passion', u'ascend', u'offic']
[u'golden', u'circl', u'tip', u'prick', u'time', u'pineappl']
[u'govt', u'like', u'probe']
[u'griffith', u'univers', u'mull', u'rise']
[u'hawk', u'threaten', u'boycott', u'region', u'match']
[u'highway', u'remain']
[u'home', u'closur', u'wont', u'split', u'elder', u'coupl', u'govt']
[u'hope', u'assault', u'examin']
[u'hospit', u'figur', u'lib', u'mismanag', u'govt']
[u'household', u'takeov', u'boost', u'hsbc', u'profit']
[u'hrbati', u'strong', u'form', u'dash', u'swede', u'teen', u'hop']
[u'hundr', u'drunken', u'youth', u'riot', u'underag']
[u'readi', u'test', u'cricket', u'symond']
[u'swimmer', u'plung', u'world', u'championship']
[u'injur', u'kumbl', u'agarkar', u'pakistan', u'dayer']
[u'interst', u'water', u'share', u'agenda']
[u'iraq', u'council', u'edg', u'interim', u'constitut']
[u'iraq', u'leader', u'agre', u'interim', u'constitut']
[u'iraq', u'report', u'suggest', u'review', u'agenc']
[u'irish', u'backpack', u'bail', u'rape', u'charg']
[u'islam', u'jihad', u'warn', u'israel', u'black', u'day']
[u'israel', u'confid', u'barrier', u'stay', u'lift']
[u'isra', u'court', u'order', u'halt', u'barrier', u'work']
[u'isra', u'offic', u'neglig', u'west', u'bank', u'death']
[u'jackson', u'lord', u'best', u'director']
[u'jackson', u'lord', u'oscar']
[u'jail', u'teacher', u'stop', u'work']
[u'jam', u'packer', u'join', u'qanta', u'board']
[u'japan', u'hold', u'firm', u'north', u'korea', u'talk']
[u'jetstar', u'plan', u'tasmania']
[u'kennedi', u'launch', u'action', u'curb', u'asic', u'probe']
[u'knight', u'spirit', u'farewel']
[u'labor', u'formalis', u'leadership', u'chang']
[u'landhold', u'reject', u'brack', u'toxic', u'dump', u'meet']
[u'latest', u'snapshot', u'show', u'littl', u'chang', u'agricultur']
[u'lawyer', u'blast', u'monster', u'label', u'belgian', u'child']
[u'livestock', u'produc', u'urg', u'regist', u'food']
[u'log', u'threaten', u'nation', u'park', u'list']
[u'maher', u'rule', u'clash']
[u'die', u'road', u'crash']
[u'face', u'court', u'terrorist', u'statement']
[u'injur', u'car', u'overturn']
[u'manufactur', u'activ']
[u'alex']
[u'marin', u'arriv', u'haiti', u'aristid', u'flee']
[u'maroochydor', u'stab', u'spark', u'polic', u'manhunt']
[u'militari', u'chief', u'defend', u'care', u'defenc', u'personnel']
[u'militari', u'chief', u'senat', u'committe', u'hear']
[u'miner', u'welcom', u'sack', u'worker']
[u'monti', u'batter', u'coast']
[u'monti', u'downgrad', u'pack', u'punch']
[u'industri', u'unrest', u'loom', u'teacher']
[u'polic', u'boost', u'riverland', u'station']
[u'echo', u'banana', u'import', u'concern']
[u'want', u'worker', u'accommod', u'boost']
[u'nato', u'admit', u'eastern', u'bloc', u'nation', u'april']
[u'camera', u'snapshot', u'highway', u'speed']
[u'newcastl', u'liverpool', u'play', u'draw']
[u'australian', u'know', u'haiti']
[u'convict', u'record', u'file', u'case']
[u'zimbabw', u'elect', u'situat', u'chang']
[u'chief', u'horrifi', u'group', u'comment']
[u'shire', u'irrig', u'campaign']
[u'govt', u'focus', u'indigen', u'palliat', u'care']
[u'issu', u'coastal', u'cyclon', u'alert']
[u'northern', u'cyclon', u'watch']
[u'nurs', u'secur', u'cancer', u'fund', u'bursari']
[u'oasi', u'inquiri', u'wind']
[u'onslow', u'await', u'cyclon', u'monti']
[u'organis', u'crime', u'think', u'drug']
[u'pacif', u'brand', u'float', u'rais']
[u'pakistan', u'deni', u'lade', u'search', u'quid']
[u'panama', u'offer', u'refug', u'aristid']
[u'panther', u'warrior']
[u'petit', u'urg', u'western', u'option', u'tugun', u'bypass']
[u'philippin', u'deport', u'alleg', u'separatist']
[u'pittman', u'anlezark', u'honour']
[u'play', u'highlight', u'hickss', u'detent']
[u'plenti', u'potenti', u'promot', u'break', u'hill']
[u'air', u'concern', u'plan', u'solomon', u'worker']
[u'approv', u'iraq', u'inquiri']
[u'polic', u'probe', u'sleep', u'bodi']
[u'polic', u'rescu', u'famili', u'karratha', u'flood']
[u'polic', u'seek', u'knife', u'wield', u'abductor']
[u'polic', u'pedestrian', u'victim']
[u'prawn', u'fisher', u'readi', u'season']
[u'pressur', u'launceston', u'airport', u'radar']
[u'probe', u'find', u'plane', u'overload', u'fatal', u'crash']
[u'properti', u'buyer', u'warn', u'watch', u'bait']
[u'close', u'cooper', u'deal', u'chelsea']
[u'putin', u'name', u'unknown']
[u'coalit', u'talk', u'break']
[u'lib', u'probe', u'branch', u'stack', u'claim', u'amid']
[u'race', u'club', u'shake', u'road', u'seal', u'critic']
[u'radiolog', u'clinic', u'get', u'scanner']
[u'ranatunga', u'say', u'warn', u'light']
[u'real', u'stretch', u'lead', u'valencia', u'slip']
[u'region', u'airlin', u'unit', u'stay', u'viabl']
[u'resourc', u'giant', u'reborn', u'float']
[u'rottnest', u'plan', u'kucera']
[u'salt', u'stab', u'accus', u'bail']
[u'saudi', u'author', u'investig', u'wed']
[u'school', u'hop', u'multi', u'purpos', u'hall', u'fund']
[u'scrap', u'metal', u'thiev', u'steal', u'histor', u'locomot']
[u'shoot', u'tie', u'round']
[u'spanish', u'polic', u'stop', u'explos', u'lade']
[u'staff', u'lose', u'job', u'wemen', u'close']
[u'stamp', u'duti', u'complic', u'yang', u'sale']
[u'star', u'tread', u'oscar', u'carpet']
[u'stat', u'confirm', u'riverina', u'summer']
[u'student', u'ralli', u'outsid', u'griffith', u'fee', u'meet']
[u'studi', u'reveal', u'hospit', u'infect', u'long', u'term', u'impact']
[u'sugar', u'grower', u'sign', u'regul', u'chang']
[u'survivor', u'renew', u'marshal']
[u'teach', u'strike', u'threat', u'fail', u'brack']
[u'teen', u'charg', u'redfern', u'riot']
[u'telstra', u'appoint', u'chief', u'iron', u'cdma', u'problem']
[u'thousand', u'come', u'begonia', u'festiv']
[u'thrupp', u'choos', u'athen', u'paralymp']
[u'thunderbird', u'defend', u'knee', u'injuri']
[u'tribun', u'consid', u'steal', u'wag', u'repar']
[u'truck', u'driver', u'electrocut', u'braidwood']
[u'trucker', u'propos', u'speed', u'control']
[u'turnbul', u'downplay', u'republican', u'stanc']
[u'melioidosi', u'townsvill']
[u'kill', u'truck', u'rollov']
[u'approv', u'haiti', u'forc']
[u'back', u'rise', u'student', u'fee']
[u'pois', u'approv', u'haiti', u'forc']
[u'screen', u'passeng', u'foreign', u'airport']
[u'vail', u'releas', u'free', u'trade', u'deal']
[u'venezuela', u'chavez', u'threaten', u'suppli']
[u'launch', u'hour', u'anti', u'terror', u'unit']
[u'victorian', u'teacher', u'threaten', u'week', u'strike']
[u'brace', u'cyclon', u'monti']
[u'compani', u'buy', u'gold']
[u'warrior', u'celebr', u'success']
[u'watkin', u'upbeat', u'polic', u'lawsuit', u'protect']
[u'waugh', u'brother', u'hop', u'exit', u'high', u'note']
[u'waugh', u'reject', u'blue', u'coach', u'role']
[u'weather', u'protest', u'hamper', u'histor', u'cattl']
[u'whelan', u'doesnt', u'want', u'rail', u'servic', u'compromis']
[u'william', u'replac', u'driver']
[u'wit', u'seek', u'fatal', u'highway', u'crash']
[u'wolv', u'season', u'knight']
[u'woman', u'child', u'trap', u'karratha', u'flood']
[u'woman', u'hospit', u'stab']
[u'wood', u'take', u'match', u'play', u'final']
[u'young', u'driver', u'urg', u'obey', u'speed', u'limit']
[u'miss', u'philippin', u'ferri']
[u'profit', u'tandou']
[u'act', u'author', u'test', u'human', u'right']
[u'agassi', u'henman', u'serv', u'supplement', u'task', u'forc']
[u'demand', u'inquiri', u'head']
[u'american', u'airlin', u'fin', u'passeng', u'profil']
[u'arab', u'brother', u'suspend']
[u'arafat', u'advis', u'shoot', u'dead', u'gaza', u'wit']
[u'astronom', u'discov', u'distant', u'galaxi']
[u'aurora', u'grant', u'licenc', u'retail']
[u'aussi', u'domin', u'warm', u'trio', u'centuri']
[u'australian', u'economi', u'expand', u'survey']
[u'australia', u'send', u'ambassador', u'north', u'korea']
[u'backbench', u'revolt', u'veteran']
[u'bacon', u'cancer', u'treatment', u'spark', u'equip', u'debat']
[u'banker', u'warn', u'growth', u'slowdown']
[u'barclay', u'withdraw', u'offer', u'holling', u'newspap']
[u'basketbal', u'coach', u'jail', u'offenc']
[u'beatti', u'highlight', u'need', u'sugar', u'industri']
[u'belgian', u'polic', u'face', u'dutroux', u'drive']
[u'boati', u'urg', u'shipshap', u'rule']
[u'bodi', u'river', u'week', u'polic']
[u'bomb', u'kill', u'soldier', u'baghdad']
[u'british', u'conserv', u'withdraw', u'support']
[u'busi', u'festiv', u'chang']
[u'carr', u'urg', u'meet', u'minist', u'council', u'princ']
[u'chief', u'minist', u'hit', u'citizenship', u'ceremoni']
[u'civil', u'liberti', u'council', u'criticis', u'polic', u'drug']
[u'clear', u'case', u'seek', u'nightclub', u'curfew']
[u'cobar', u'mayor', u'angri', u'shoot', u'lawsuit']
[u'cole', u'quit', u'chelsea']
[u'committe', u'consid', u'fish', u'farm', u'debat']
[u'convict', u'conman', u'tri', u'stop', u'report', u'british']
[u'convict', u'paedophil', u'front', u'court']
[u'council', u'committe', u'consid', u'hous', u'subdivis']
[u'council', u'defend', u'close', u'meet']
[u'council', u'green', u'light', u'tourist', u'tram', u'plan']
[u'council', u'seek', u'slice', u'iron', u'deal']
[u'council', u'staff', u'apart', u'plan']
[u'cricket', u'australia', u'make', u'zimbabw', u'tour', u'check']
[u'croc', u'threat', u'close', u'kakadu', u'swim', u'hole']
[u'cyclon', u'help', u'break', u'drought']
[u'cyclon', u'monti', u'head', u'inland']
[u'cyclon', u'monti', u'slam', u'north', u'west']
[u'cyclon', u'set', u'rainfal', u'record', u'gulf']
[u'darl', u'river', u'water', u'reach', u'home']
[u'deakin', u'staff', u'consid', u'protest', u'hec', u'increas']
[u'decis', u'unlik', u'quell', u'merger', u'debat']
[u'develop', u'accus', u'ignor', u'elder']
[u'diamond', u'fate', u'hang', u'balanc']
[u'disput', u'resolut', u'sweeten', u'relat', u'winemak']
[u'doctor', u'stop', u'work', u'servic', u'disput']
[u'dog', u'player', u'lose', u'contract']
[u'doubt', u'rais', u'dinosaur', u'extinct', u'theori']
[u'doubt', u'rais', u'forest', u'plantat']
[u'eagl', u'kerr', u'miss', u'season', u'open']
[u'economist', u'specul', u'rat', u'decis']
[u'emerg', u'chief', u'admit', u'ignor', u'canberra']
[u'europ', u'launch', u'comet', u'mission']
[u'lismor', u'timor', u'post']
[u'feder', u'fund', u'boost', u'indigen', u'health', u'clinic']
[u'govt', u'take', u'alburi', u'wodonga', u'land', u'bank']
[u'festiv', u'lift', u'profil', u'local', u'artist']
[u'home', u'charg', u'hook', u'death']
[u'fire', u'home', u'dark']
[u'fisheri', u'enter', u'south', u'west', u'disput']
[u'fisheri', u'look', u'lure', u'stronger', u'export']
[u'charg', u'child', u'porn']
[u'floodwat', u'bring', u'life', u'outback']
[u'footbal', u'victoria', u'decid', u'fate', u'girl']
[u'black', u'flavel', u'play', u'japan']
[u'haiti', u'presid', u'accus', u'abduct']
[u'franc', u'seek', u'extend', u'pacif', u'power']
[u'get', u'ahead', u'vilif', u'case']
[u'gaze', u'hit', u'final', u'format']
[u'germani', u'jordan', u'urg', u'greater', u'role', u'attack']
[u'golden', u'circl', u'vow', u'widespread', u'cut']
[u'govt', u'deni', u'sex', u'iraq', u'intellig']
[u'govt', u'promis', u'surpris', u'fine', u'print']
[u'govt', u'reveal', u'veteran', u'packag']
[u'govt', u'say', u'hospit', u'base', u'servic', u'stay']
[u'griffith', u'univers', u'announc', u'increas']
[u'growth', u'predict', u'australia', u'commod', u'export']
[u'head', u'say', u'ferrari', u'simpli', u'best']
[u'high', u'court', u'challeng', u'tough', u'begin']
[u'hobart', u'offic', u'build', u'sell']
[u'home', u'invad', u'inflict', u'attack']
[u'hop', u'worker', u'return', u'coal', u'ship', u'backlog']
[u'hotel', u'dump', u'bet', u'cost']
[u'human', u'error', u'blame', u'trawler', u'tanker', u'crash']
[u'indefinit', u'detent', u'danger', u'say', u'high', u'court']
[u'inmat', u'face', u'murder', u'trial']
[u'iraq', u'interim', u'constitut', u'hail', u'pioneer', u'text']
[u'jail', u'teacher', u'stop', u'work', u'woe']
[u'keen', u'expect', u'mile', u'hous']
[u'kerri', u'eye', u'super', u'tuesday', u'knockout']
[u'kiefer', u'templeton', u'second', u'round']
[u'labor', u'keen', u'scrutinis', u'trade', u'deal', u'fine', u'print']
[u'landhold', u'urg', u'remain', u'readi']
[u'nation', u'park', u'poni', u'leav']
[u'launceston', u'teen', u'flee', u'burn', u'hous']
[u'lawyer', u'continu', u'document', u'evid', u'argument']
[u'liber', u'nation', u'odd', u'coalit']
[u'light', u'shed', u'copper', u'coast', u'airstrip']
[u'liverpool', u'celtic', u'uefa']
[u'local', u'govt', u'reform', u'meet', u'draw', u'small', u'crowd']
[u'arrest', u'break', u'hill', u'want', u'murder']
[u'arrest', u'pilbara', u'theft']
[u'court', u'maroochydor', u'shoot']
[u'mcgradi', u'pleas', u'zinifex', u'job', u'pledg']
[u'medicar', u'safeti', u'pass', u'week', u'lee', u'say']
[u'meet', u'consid', u'pine', u'plantat', u'impact']
[u'meet', u'drive', u'home', u'road', u'safeti', u'issu']
[u'minist', u'ask', u'resolv', u'health', u'servic', u'woe']
[u'minist', u'prepar', u'chain', u'relic']
[u'minist', u'consid', u'detent', u'centr', u'camera']
[u'minist', u'consid', u'drug', u'oper', u'impact']
[u'offenc', u'charg', u'lay']
[u'question', u'famili', u'chang']
[u'narnia', u'chronicl', u'sign', u'film', u'treatment']
[u'nasa', u'signific', u'mar', u'announc']
[u'nevill', u'refus', u'conced', u'titl']
[u'charg', u'lay', u'volker']
[u'economi', u'read', u'market', u'gain']
[u'damag', u'report', u'gulf', u'cyclon']
[u'nrma', u'put', u'wage', u'propos', u'offic']
[u'nurs', u'threaten', u'industri', u'action']
[u'selector', u'choos', u'papp', u'test', u'team']
[u'oscar', u'glori', u'surpris', u'krumpet', u'creator']
[u'pair', u'appeal', u'rape', u'convict']
[u'pair', u'charg', u'cannabi', u'crop']
[u'pakistan', u'condemn', u'terror', u'attack', u'iraqi', u'shrine']
[u'papp', u'steer', u'black', u'cap', u'victori']
[u'parent', u'warn', u'stomach']
[u'announc', u'sugar', u'support', u'packag']
[u'polic', u'give', u'power', u'search', u'cafe', u'drug']
[u'polic', u'investig', u'home', u'hook', u'accus']
[u'polic', u'investig', u'loganlea', u'smash']
[u'polic', u'drown', u'victim']
[u'pont', u'katich', u'lehmann', u'score', u'centuri', u'warm']
[u'pope', u'honour', u'australian', u'human', u'right', u'worker']
[u'post', u'timber', u'clear', u'continu']
[u'public', u'urg', u'avoid', u'alag', u'bloom']
[u'putin', u'pick', u'virtual', u'unknown', u'russian']
[u'indigen', u'cricket', u'win', u'alic']
[u'race', u'return', u'haunt', u'zealand', u'polit']
[u'rail', u'cross', u'crash', u'investig']
[u'rain', u'eas', u'move']
[u'record', u'number', u'local', u'elect']
[u'reef', u'show', u'sign', u'coral', u'bleach']
[u'resort', u'consid', u'ban', u'bulldog']
[u'rieff', u'build', u'undergo', u'heritag', u'review']
[u'riverland', u'cathol', u'school', u'see', u'fund']
[u'roadwork', u'progress', u'death', u'toll', u'rise']
[u'robben', u'choos', u'chelsea', u'unit']
[u'rural', u'group', u'draft', u'tree', u'clear', u'legisl']
[u'rural', u'women', u'boost', u'groom', u'skill']
[u'russia', u'promis', u'treat', u'guantanamo', u'prison']
[u'compani', u'hope', u'defenc', u'forc', u'contract']
[u'draft', u'criticis', u'limit']
[u'safeti', u'boost', u'launceston', u'airport', u'radar']
[u'school', u'receiv', u'upgrad']
[u'schu', u'hungri', u'success']
[u'score', u'kill', u'blast', u'iraq']
[u'scud', u'misfir', u'dubai', u'open']
[u'senat', u'investig', u'import', u'propos']
[u'sewerag', u'plant', u'bear', u'brunt', u'wave']
[u'shiit', u'attack', u'pakistan']
[u'shiit', u'dead', u'pakistan', u'attack']
[u'resort', u'close', u'sell']
[u'soldier', u'demand', u'anthrax', u'vaccin', u'inquiri']
[u'africa', u'pakistan', u'complaint', u'list']
[u'stock', u'market', u'brisk', u'despit', u'rate', u'uncertainti']
[u'strong', u'dollar', u'cut', u'econom', u'growth', u'forecast']
[u'surfer', u'converg', u'snapper', u'rock', u'season', u'open']
[u'surfer', u'hope', u'wave', u'success', u'gold', u'coast']
[u'tasmanian', u'govt', u'get', u'look', u'cabinet']
[u'tasmanian', u'angri', u'qanta', u'servic']
[u'tathra', u'oyster', u'prove', u'purler', u'judg']
[u'teacher', u'jail', u'protest', u'lack']
[u'technic', u'issu', u'delay', u'releas', u'draft']
[u'tenterfield', u'water', u'restrict', u'remain']
[u'testud', u'track', u'qatar']
[u'stage', u'servic', u'take']
[u'face', u'perth', u'court', u'peopl', u'smuggl', u'charg']
[u'offic', u'detain', u'anti', u'govern']
[u'releas', u'bail', u'child', u'porn', u'charg']
[u'wound', u'nepales', u'bomb']
[u'tiger', u'dump', u'kremerskothen', u'crucial', u'clash']
[u'time', u'need', u'drought', u'recoveri']
[u'trade', u'deficit', u'take', u'gloss', u'growth', u'figur']
[u'transport', u'wag', u'blame', u'retail', u'food', u'price']
[u'arrest', u'redfern', u'riot']
[u'defend', u'bendigo', u'campus', u'bundoora', u'integr']
[u'union', u'say', u'teacher', u'forc', u'strike', u'better']
[u'dismiss', u'coup', u'claim', u'rebel', u'enter', u'haitian']
[u'plan', u'creat', u'haitian', u'council', u'earli']
[u'take', u'swipe', u'burma', u'drug']
[u'vaughan', u'plunder', u'jamaica', u'attack']
[u'venezuelan', u'recal', u'rule', u'postpon']
[u'veteran', u'welcom', u'benefit', u'boost']
[u'govt', u'face', u'industri', u'action']
[u'govt', u'urg', u'suppli', u'region']
[u'drench', u'weaken', u'cyclon', u'monti']
[u'escap', u'worst', u'monti']
[u'polic', u'corrupt', u'signific', u'inquiri']
[u'waugh', u'secur', u'world']
[u'welsh', u'butterfli', u'record', u'fall']
[u'wenger', u'warn', u'complac']
[u'wollongong', u'test', u'polic', u'lawsuit', u'legisl']
[u'woodward', u'ring', u'chang', u'ireland', u'clash']
[u'work', u'aplenti', u'involv', u'wetland', u'boundari', u'chang']
[u'shouldnt', u'dictat', u'term', u'player', u'capriati']
[u'zimbabw', u'claim', u'seri', u'second', u'test', u'end']
[u'catchment', u'author']
[u'abbott', u'rail', u'infrastructur', u'debat']
[u'pass', u'human', u'right', u'law', u'despit', u'opposit']
[u'game', u'help', u'boost', u'aussi', u'rule']
[u'agforc', u'minist', u'continu', u'tree', u'clear', u'talk']
[u'warn', u'unfilt', u'water', u'risk']
[u'ord', u'steadi', u'wake', u'rate', u'hold']
[u'council', u'team', u'unveil', u'lake', u'illawarra', u'plan']
[u'anim', u'welfar', u'group', u'protest', u'ralli']
[u'woman', u'hurt', u'paraglid', u'crash']
[u'anti', u'terror', u'law', u'draconian', u'feder', u'court', u'judg']
[u'argentin', u'cordon', u'fail', u'dope', u'test']
[u'arthur', u'advanc', u'arizona']
[u'assault', u'claim', u'hang', u'season', u'launch']
[u'dead', u'pakistan', u'shoot', u'offici']
[u'kill', u'nepal', u'violenc']
[u'atsic', u'chief', u'clark', u'face', u'rape', u'claim']
[u'attack', u'kill', u'iraqi', u'shiit', u'mourn', u'dead']
[u'attack', u'shiit', u'kill', u'iraq']
[u'aussi', u'riot', u'warn', u'return']
[u'aust', u'accus', u'steal', u'timor', u'right']
[u'australia', u'commit', u'terror', u'downer', u'say']
[u'australia', u'pursu', u'singl', u'econom', u'market']
[u'australia', u'reward', u'white', u'mous', u'year']
[u'australia', u'urg', u'cancel', u'zimbabw', u'tour']
[u'aviat', u'industri', u'shoot', u'parachut', u'plan']
[u'bacon', u'recov', u'cancer', u'surgeri']
[u'banana', u'industri', u'import']
[u'barclay', u'brother', u'consid', u'buy', u'daili', u'telegraph']
[u'bat', u'resign', u'chelsea', u'chairman']
[u'beachley', u'begin', u'hunt', u'seventh', u'world', u'titl']
[u'beachley', u'start', u'world', u'titl', u'campaign', u'gold']
[u'beatti', u'renew', u'govt', u'forc', u'tugun']
[u'beauti', u'plumag', u'shame', u'languag']
[u'beef', u'price', u'tip', u'fall', u'financi', u'year']
[u'blackmail', u'threaten', u'bomb', u'campaign', u'french']
[u'blue', u'bull', u'game', u'vital', u'game', u'plan']
[u'bodi', u'near', u'wetland', u'tourist', u'centr']
[u'bomb', u'attack', u'threaten', u'french', u'railway']
[u'bracken', u'bow', u'intern', u'rugbi']
[u'brack', u'clarifi', u'farm', u'zone', u'subdivis']
[u'brack', u'meet', u'landhold', u'toxic', u'dump', u'concern']
[u'bulldog', u'board', u'defer', u'penalti', u'decis']
[u'bulldog', u'board', u'defer', u'player', u'penalti', u'decis']
[u'bush', u'ignor', u'latest', u'attack', u'terror']
[u'butcher', u'injur', u'windi', u'warm']
[u'strong', u'leadership', u'troubl', u'health']
[u'cane', u'group', u'question', u'sugar', u'support']
[u'canegrow', u'chief', u'head', u'canberra', u'industri']
[u'sale', u'time', u'februari', u'high']
[u'chariti', u'reconsid', u'bulldog', u'partnership']
[u'cheney', u'stay', u'bush', u'elect', u'ticket']
[u'child', u'swim', u'recal']
[u'comment', u'posit', u'waterfront', u'plan']
[u'communiti', u'centr', u'help', u'boost', u'local', u'skill']
[u'confus', u'bushfir', u'warn', u'inquest', u'tell']
[u'cook', u'send', u'final', u'letter', u'america', u'age']
[u'costello', u'age', u'workforc', u'plan', u'target']
[u'council', u'forego', u'wharf', u'develop', u'probe']
[u'council', u'ponder', u'water', u'save', u'subsidi']
[u'court', u'ask', u'investig', u'british']
[u'court', u'hear', u'defenc', u'belgium', u'alleg', u'child']
[u'court', u'probe', u'fail', u'deport']
[u'crash', u'pilot', u'prais', u'miss', u'school']
[u'defenc', u'silent', u'palmer', u'claim']
[u'democrat', u'seek', u'region', u'health', u'board', u'chang']
[u'democrat', u'seek', u'overturn', u'euthanasia']
[u'sampl', u'offend', u'committe']
[u'dog', u'board', u'meet', u'decid', u'player', u'fate']
[u'draw', u'leav', u'bromwich', u'short', u'norwich']
[u'drink', u'factor', u'crash', u'tractor']
[u'elliott', u'replac', u'maher', u'glamorgan']
[u'timor', u'deni', u'briberi', u'accus']
[u'euro', u'plung', u'dollar', u'skyrocket']
[u'evan', u'shire', u'seek', u'help', u'insur']
[u'diplomat', u'child', u'trial', u'begin', u'bali']
[u'expert', u'spot', u'odditi', u'steal', u'cezann', u'paint']
[u'hunter', u'say', u'bush', u'come', u'clean']
[u'feder', u'govt', u'accus', u'short', u'chang']
[u'feder', u'win', u'open', u'rematch']
[u'fighter', u'jet', u'collid', u'turkey']
[u'kill', u'kashmir', u'attack']
[u'flood', u'expect', u'eas']
[u'floodwat', u'trap', u'resid', u'roof']
[u'fmit', u'consid', u'withdraw', u'chariti', u'support']
[u'dictat', u'consid', u'haitian', u'homecom']
[u'command', u'clear', u'sandlin', u'crisi']
[u'worldcom', u'chief', u'face', u'fraud', u'conspiraci']
[u'foster', u'chief', u'step']
[u'fruit', u'grower', u'happi', u'appl', u'import', u'probe']
[u'giant', u'toast', u'beer']
[u'girl', u'rule', u'footbal']
[u'girl', u'think', u'dead', u'year', u'later']
[u'godzilla', u'gear', u'anniversari', u'monster', u'mash']
[u'goomal', u'enjoy', u'communiti', u'bank', u'success']
[u'govt', u'accus', u'elect', u'pork', u'barrel']
[u'govt', u'announc', u'athlet', u'australia', u'review']
[u'govt', u'announc', u'review', u'athlet', u'australia']
[u'govt', u'rule', u'sell', u'defenc', u'golf', u'cours']
[u'govt', u'threaten', u'leagu', u'fund']
[u'govt', u'stay', u'clear', u'adelaid', u'hospit', u'worker']
[u'govt', u'urg', u'citizen', u'fight', u'fund']
[u'greater', u'sampl', u'recommend']
[u'haitian', u'rebel', u'threaten', u'arrest']
[u'haiti', u'rebel', u'claim', u'militari', u'post']
[u'harvey', u'bushrang']
[u'heart', u'consid', u'home', u'leagu', u'game', u'melbourn']
[u'henderson', u'brumbi', u'red', u'unchang']
[u'hick', u'habib', u'face', u'terror', u'train', u'charg', u'ruddock']
[u'home', u'invad', u'stab', u'paradis']
[u'home', u'isol', u'monti', u'drench']
[u'howard', u'win', u'vermont', u'primari', u'despit', u'run']
[u'illeg', u'fishermen', u'land', u'bigger', u'catch']
[u'immigr', u'dept', u'meet', u'afghani', u'refuge']
[u'independ', u'review', u'look', u'mental', u'health']
[u'index', u'show', u'servic', u'sector', u'slow']
[u'rat', u'unchang']
[u'super', u'tuesday', u'democrat', u'kerri']
[u'jail', u'teacher', u'angri', u'rise', u'refus']
[u'jetstar', u'aim', u'combat', u'tasmanian', u'resist']
[u'karbala', u'blast', u'care', u'plan', u'coalit']
[u'kennedi', u'deni', u'stall', u'offset', u'alpin', u'probe']
[u'kerri', u'wrap', u'nomin', u'edward', u'quit']
[u'king', u'wont', u'quit', u'earli', u'despit', u'lose', u'preselect']
[u'korean', u'chef', u'tast', u'food', u'wine']
[u'lake', u'dredg', u'uncov', u'rubbish', u'danger']
[u'land', u'council', u'want', u'nativ', u'titl', u'fund', u'review']
[u'latham', u'honeymoon', u'say', u'anderson']
[u'latham', u'top', u'approv', u'rat']
[u'rout', u'lankan']
[u'liverpool', u'manag', u'receiv', u'death', u'threat']
[u'mackay', u'want', u'restor']
[u'malaysian', u'call', u'snap', u'elect']
[u'jail', u'road', u'rage', u'stab']
[u'court', u'fake']
[u'mar', u'drench', u'water']
[u'matilda', u'begin', u'quest', u'athen']
[u'media', u'joke', u'bushfir', u'inquest', u'tell']
[u'medic', u'school', u'plan', u'moot', u'help', u'address', u'doctor']
[u'mental', u'health', u'defenc', u'trial', u'chang']
[u'middl', u'east', u'market', u'pose', u'challeng', u'export']
[u'minist', u'defend', u'prison', u'releas', u'record']
[u'minist', u'turn', u'gold', u'project']
[u'minist', u'urg', u'stop', u'lobster', u'decim']
[u'minist', u'welcom', u'town', u'plan', u'progress']
[u'molik', u'pratt', u'crash', u'qatar']
[u'monti', u'expect', u'drench', u'kalgoorli', u'boulder']
[u'murder', u'victim', u'mother', u'slam', u'reduct', u'killer']
[u'nat', u'morgan', u'vass', u'candid']
[u'nepal', u'attack', u'leav', u'dead', u'polic']
[u'nepali', u'rebel', u'kill', u'troop', u'attack']
[u'communiti', u'health', u'nurs', u'provid', u'announc']
[u'law', u'eas', u'transfer', u'compani', u'ownership']
[u'zealand', u'ban', u'islam', u'group', u'individu']
[u'quick', u'child', u'protect', u'worker', u'concern']
[u'north', u'librari', u'link', u'nation', u'librari']
[u'north', u'queensland', u'cyclon', u'watch']
[u'defend', u'campaign']
[u'launch', u'acknowledg', u'bulldog', u'drama']
[u'govt', u'expect', u'allay', u'jail', u'concern']
[u'govt', u'spend', u'million', u'upgrad', u'school']
[u'bodi', u'spark', u'murder', u'investig']
[u'govt', u'urg', u'address', u'alic', u'doctor', u'issu']
[u'nurs', u'union', u'put', u'industri', u'action', u'hold']
[u'nurs', u'school', u'experi', u'quota', u'shortfal']
[u'seek', u'south', u'pacif', u'leader', u'summit']
[u'kill', u'protest', u'venezuela', u'vote', u'rule']
[u'opium', u'product', u'fuel', u'spread']
[u'owner', u'alleg', u'steal', u'cezann', u'price']
[u'pair', u'face', u'court', u'marijuana', u'cash']
[u'parmalat', u'say', u'australian', u'secur']
[u'payment', u'relief', u'norman', u'grower']
[u'label', u'tuckey', u'veteran', u'comment', u'unaccept']
[u'polic', u'charg', u'teen', u'wagga', u'brawl']
[u'policeman', u'fight', u'indec', u'assault', u'jail', u'sentenc']
[u'polic', u'quiz', u'bulldog', u'assault', u'alleg']
[u'power', u'chang', u'afoot', u'bremer']
[u'price', u'wool', u'tip', u'drop', u'year']
[u'psychologist', u'appear', u'court', u'child', u'charg']
[u'public', u'urg', u'awar', u'threat']
[u'public', u'urg', u'help', u'snuff', u'firebug', u'blaze']
[u'queensland', u'sheep', u'produc', u'golden', u'fleec']
[u'raikkonen', u'fear', u'mclaren', u'readi']
[u'rail', u'crash', u'prompt', u'safeti']
[u'rail', u'network', u'document', u'miss', u'vital', u'inform']
[u'rant', u'rain', u'upset', u'roddick', u'round']
[u'centr', u'prepar', u'clash']
[u'report', u'unabl', u'caus', u'acid', u'contain', u'split']
[u'research', u'claim', u'breakthrough', u'cancer', u'treatment']
[u'resid', u'ask', u'council', u'issu']
[u'rockhampton', u'council', u'green', u'light', u'librari', u'site']
[u'ronaldo', u'sign', u'real', u'deal']
[u'rugbi', u'rain', u'boost', u'econom', u'growth']
[u'russian', u'opposit', u'candid', u'decri', u'media', u'bias']
[u'school', u'crash', u'sydney', u'hospitalis']
[u'schwarzenegg', u'claim', u'huge', u'victori', u'fiscal', u'plan']
[u'scientist', u'await', u'bird', u'coloni', u'lake', u'eyr']
[u'shake', u'derail', u'region', u'rail', u'job']
[u'shire', u'lobbi', u'portland', u'live', u'export']
[u'sign', u'iraq', u'constitut', u'delay', u'attack']
[u'sorri', u'german', u'thief', u'offer', u'anti', u'shoplift', u'tip']
[u'south', u'coast', u'seek', u'rail', u'line', u'answer']
[u'springborg', u'hope', u'reviv', u'coalit']
[u'state', u'fight', u'extra', u'revenu']
[u'student', u'union', u'uni', u'come', u'clean']
[u'studi', u'show', u'drink', u'improv', u'health']
[u'sydney', u'artist', u'win', u'lemprier', u'award']
[u'sydney', u'crash', u'victim', u'releas', u'hospit']
[u'tafe', u'staff', u'consid', u'protest', u'cut']
[u'taipan', u'host', u'wildcat', u'final', u'open']
[u'govt', u'accus', u'mislead', u'public']
[u'spain', u'team', u'wind', u'farm']
[u'telstra', u'head', u'deflect', u'talk', u'board', u'split']
[u'thuringowa', u'council', u'releas', u'roadwork', u'plan']
[u'tourism', u'oper', u'reject', u'swim', u'hole']
[u'tour', u'oper', u'offer', u'compens', u'fall']
[u'trade', u'hall', u'promis', u'mater', u'picket', u'line']
[u'tuckey', u'stand', u'veteran', u'affair', u'question']
[u'boxer', u'mage', u'bash']
[u'union', u'urg', u'public', u'rail', u'worker']
[u'help', u'offset', u'like', u'rise']
[u'wont', u'rule', u'independ', u'bendigo', u'campus']
[u'say', u'aristid', u'resign']
[u'voter', u'gear', u'super', u'tuesday']
[u'victorian', u'teacher', u'prepar', u'march', u'parliament']
[u'victorian', u'teacher', u'strike', u'close', u'school']
[u'violenc', u'erupt', u'shiit', u'celebr', u'pakistan']
[u'waff', u'outgo', u'presid', u'highlight', u'need', u'local']
[u'hop', u'restor', u'confid', u'polic']
[u'polic', u'blast', u'crimin', u'behaviour']
[u'spend', u'threaten', u'cut', u'costello']
[u'warwick', u'prepar', u'campdraft']
[u'water', u'restrict', u'south', u'east', u'water']
[u'webber', u'steer', u'clear', u'drive', u'rumour']
[u'west', u'bank', u'barrier', u'protest', u'die']
[u'westpac', u'deni', u'iraq', u'link']
[u'wollongong', u'council', u'back', u'apart', u'plan']
[u'woman', u'die', u'highway', u'crash']
[u'worksaf', u'help', u'weed', u'spray', u'compo', u'claim']
[u'work', u'underway', u'librari', u'galleri']
[u'accc', u'examin', u'telstra', u'broadband', u'charg']
[u'accc', u'warn', u'telstra', u'uncompetit', u'behaviour']
[u'adelaid', u'darwin', u'train', u'prove', u'use', u'armi']
[u'peopl', u'arrest', u'melbourn', u'drug', u'bust']
[u'alonso', u'schumach', u'shoe', u'ferrari']
[u'urg', u'parti', u'agre', u'medicar', u'packag']
[u'squander', u'sharehold', u'money']
[u'anderson', u'puzzl', u'state', u'tugun', u'bypass', u'call']
[u'apec', u'back', u'propos', u'outlaw', u'export']
[u'asparagus', u'industri', u'threaten', u'aussi', u'dollar']
[u'athen', u'readi', u'game', u'report']
[u'australia', u'consid', u'immigr', u'fingerprint', u'check']
[u'award', u'go', u'high', u'tech', u'sale', u'dairi']
[u'award', u'honour', u'polic', u'effort']
[u'bali', u'bomb', u'conspir', u'get', u'year', u'jail']
[u'better', u'time', u'ahead']
[u'crowd', u'farewel', u'volunt', u'firefight']
[u'blue', u'whale', u'see', u'south', u'west', u'coast']
[u'boro', u'bring', u'earth', u'bump']
[u'boundari', u'bodi', u'hear', u'demand']
[u'builder', u'concern', u'legisl']
[u'bulldog', u'promis', u'punish', u'player']
[u'bulldog', u'saga', u'turn', u'polit']
[u'bush', u'attack', u'democrat', u'oppon', u'fenc', u'sit']
[u'safeti', u'educ']
[u'wide', u'mental', u'health', u'review']
[u'region', u'health', u'board', u'reject']
[u'cane', u'farmer', u'regist', u'incom', u'support']
[u'central', u'face', u'child', u'charg']
[u'child', u'rapist', u'claim', u'girl', u'keep', u'dungeon']
[u'civil', u'libertarian', u'human', u'right']
[u'club', u'forc', u'defend', u'fundrais', u'activ']
[u'collingwood', u'gile', u'boost', u'test', u'case']
[u'collingwood', u'fan', u'greet', u'player']
[u'comment', u'cast', u'doubt', u'mitsubishi', u'australian']
[u'corrupt', u'alleg', u'rais', u'ship', u'purchas']
[u'council', u'candid', u'highlight', u'age', u'care', u'need']
[u'council', u'reliev', u'jail', u'plan', u'move', u'forward']
[u'council', u'worker', u'reject', u'offer', u'union']
[u'court', u'hear', u'tuna', u'boat', u'death', u'detail']
[u'cricket', u'australia', u'give', u'green', u'light', u'zimbabw']
[u'crick', u'probe', u'near', u'commission']
[u'custom', u'offici', u'interview', u'ashmor', u'reef', u'arriv']
[u'cyclon', u'town', u'consid', u'evacu']
[u'daughter', u'hop', u'replac', u'upper', u'hous', u'stalwart']
[u'davi', u'kuld', u'share', u'open', u'lead']
[u'deadlin', u'give', u'resort', u'comment']
[u'deadlin', u'matern', u'servic', u'plan']
[u'defenc', u'expert', u'predict', u'budget', u'blow']
[u'deport', u'court', u'case', u'continu', u'adelaid']
[u'disney', u'remov', u'board', u'chairman']
[u'dollar', u'dip', u'month']
[u'doubt', u'rais', u'banana', u'import']
[u'downer', u'iraq', u'comment', u'anger', u'forc']
[u'oval', u'delay', u'footbal', u'game']
[u'edinburgh', u'tattoo', u'visit', u'sydney']
[u'educ', u'minist', u'defend', u'hike']
[u'edward', u'end', u'white', u'hous']
[u'kill', u'indonesian', u'incid']
[u'play', u'talk', u'head', u'head', u'tiger']
[u'epic', u'prefer', u'pipelin', u'bidder']
[u'extradit', u'seek', u'adelaid', u'murder']
[u'farmer', u'toxic', u'dump', u'protest', u'parliament']
[u'farmer', u'wast', u'dump', u'protest', u'parliament', u'hous']
[u'govt', u'draw', u'fail', u'sawmil']
[u'ferguson', u'turn', u'friend', u'help']
[u'firefight', u'contain', u'blaze', u'despit', u'high']
[u'bush', u'focus', u'steadi', u'leadership']
[u'fisher', u'ask', u'help', u'boost', u'lobster', u'price']
[u'fisher', u'help', u'seek', u'pink', u'snapper']
[u'forecast', u'monitor', u'second']
[u'offici', u'face', u'child', u'prostitut']
[u'discus', u'champ', u'sentenc', u'steroid', u'import']
[u'finnish', u'trial', u'leak']
[u'head', u'lead', u'intellig', u'agenc', u'inquiri']
[u'worldcom', u'chief', u'plead', u'guilti', u'fraud']
[u'forrest', u'put', u'hand', u'recontest', u'malle']
[u'foxtel', u'accus', u'discriminatori', u'price', u'structur']
[u'attack', u'shiit', u'foil', u'say']
[u'glue', u'fume', u'caus', u'medic', u'concern', u'aboard', u'plane']
[u'govern', u'boost', u'defenc', u'forc', u'superannu']
[u'govt', u'advis', u'accus', u'break', u'grog', u'rule']
[u'govt', u'dismiss', u'free', u'trade', u'concern']
[u'govt', u'releas', u'trade', u'agreement']
[u'grafton', u'jail', u'teacher', u'consid', u'join', u'strike']
[u'grain', u'compani', u'merger', u'fall']
[u'great', u'lake', u'adopt', u'safeti', u'scheme']
[u'green', u'criticis', u'latest', u'shark', u'research']
[u'grower', u'consid', u'generat', u'plant', u'trial']
[u'gunmen', u'open', u'iraqi', u'polic', u'station']
[u'haitian', u'declar', u'state', u'emerg']
[u'haiti', u'violenc', u'continu', u'inquiri', u'seek']
[u'henin', u'hardenn', u'capriati']
[u'high', u'hop', u'newcastl']
[u'hope', u'busi', u'chamber', u'turnaround']
[u'hous', u'market', u'continu', u'slow']
[u'hous', u'shortag', u'caus', u'financi', u'hardship']
[u'hrbati', u'injuri', u'put', u'paradorn', u'dubai']
[u'human', u'error', u'caus', u'sharm', u'sheikh', u'crash', u'report']
[u'icpa', u'highlight', u'tertiari', u'educ', u'access', u'woe']
[u'indigen', u'crisi', u'ignor', u'forum', u'tell']
[u'indigen', u'leader', u'urg', u'racism', u'report']
[u'industri', u'estat', u'spark', u'truck', u'concern']
[u'inquest', u'tell', u'chief', u'sens', u'urgenc']
[u'iraqi', u'polic', u'arrest', u'karbala', u'blast']
[u'israel', u'defend', u'strike', u'self', u'defenc']
[u'isra', u'tank', u'enter', u'rafah', u'amidst', u'heavi', u'shoot']
[u'japan', u'mobilis', u'armi', u'fight', u'bird']
[u'jazz', u'queen', u'norah', u'jone', u'rule', u'chart']
[u'latham', u'decid', u'euthanasia', u'stanc']
[u'symond', u'impress', u'selector']
[u'local', u'flood', u'forc', u'highway', u'closur']
[u'macedonian', u'presid', u'remain', u'fli', u'home']
[u'magpi', u'cole', u'happi', u'home']
[u'magpi', u'arriv', u'alic', u'spring']
[u'magpi', u'receiv', u'warm', u'welcom']
[u'malaysia', u'elect', u'date', u'announc', u'loom']
[u'charg', u'omagh', u'bomb']
[u'charg', u'drink', u'drive', u'time']
[u'face', u'court', u'interrupt', u'parliament']
[u'fail', u'kidnap', u'murder']
[u'investig', u'link', u'high', u'profil', u'murder']
[u'stand', u'trial', u'child', u'prostitut', u'charg']
[u'market', u'unperturb', u'move']
[u'matilda', u'olymp', u'qualifi']
[u'miner', u'defend', u'williamstown', u'oper']
[u'miner', u'search', u'kimberley', u'base', u'metal']
[u'mine', u'town', u'decid', u'evacu']
[u'minist', u'aim', u'fairer', u'age', u'care']
[u'minist', u'consid', u'health', u'servic', u'board', u'sack']
[u'mix', u'fortun', u'state', u'final', u'berth']
[u'mix', u'reaction', u'premier', u'apolog', u'alcohol']
[u'coal', u'rail', u'link', u'talk', u'track']
[u'woe', u'predict', u'dairi', u'industri']
[u'motiv', u'philippin', u'banana', u'decis']
[u'await', u'detail', u'happi', u'valley', u'alcohol', u'plan']
[u'lead', u'bulldog', u'assault', u'probe']
[u'york', u'juri', u'deliber', u'martha', u'stewart', u'fate']
[u'cold', u'feet', u'rock', u'power', u'plan']
[u'resourc', u'handl', u'blaze', u'inquiri']
[u'player', u'remind']
[u'govt', u'ask', u'help', u'rescu', u'group']
[u'premier', u'label', u'irrat']
[u'consid', u'environ', u'protect', u'agenc']
[u'observatori', u'get', u'protect']
[u'oust', u'haitian', u'presid', u'warn', u'respect']
[u'pakistan', u'deni', u'nuclear', u'help', u'offer', u'nigeria']
[u'pentagon', u'criticis', u'prison', u'releas', u'review']
[u'philippin', u'presidenti', u'candid', u'rule', u'elig']
[u'pilbara', u'shire', u'hope', u'fund', u'boost']
[u'plan', u'focus', u'boost', u'natur', u'resourc']
[u'plan', u'land', u'clear', u'law', u'spark', u'feder', u'fund']
[u'defend', u'flight', u'minist']
[u'refus', u'interven', u'grant', u'commiss']
[u'polic', u'examin', u'bodi', u'dump', u'river']
[u'polic', u'examin', u'evid', u'doubl', u'murder']
[u'polic', u'follow', u'lead', u'bulldog', u'investig']
[u'polic', u'minist', u'critic', u'bail', u'releas', u'teen']
[u'polic', u'seiz', u'fake', u'credit', u'card', u'raid']
[u'poor', u'clinic', u'guidelin', u'stillbirth', u'report']
[u'public', u'comment', u'guantanamo', u'militari', u'board']
[u'public', u'chanc', u'meet', u'council', u'candid']
[u'purport', u'qaeda', u'letter', u'deni', u'role', u'iraq']
[u'govt', u'advis', u'lose', u'alcohol', u'incid']
[u'queensland', u'compani', u'buy', u'alpin', u'resort']
[u'racist', u'email', u'circul', u'polic']
[u'rail', u'union', u'attack', u'govt', u'campaign']
[u'raper', u'comment', u'land', u'lockyer', u'strife']
[u'region', u'victoria', u'urg', u'remain', u'vigil']
[u'report', u'find', u'girl', u'soldier', u'slave']
[u'report', u'throw', u'spotlight', u'genet', u'patent']
[u'rescu', u'chopper', u'head', u'cruis', u'ship']
[u'retail', u'urg', u'spot', u'fake', u'note']
[u'reuter', u'name', u'fitzgerald', u'chairman']
[u'royal', u'commiss', u'report', u'highlight', u'polic']
[u'royalti', u'payment', u'hotel', u'brawl', u'polic', u'believ']
[u'runner', u'speak', u'athlet', u'australia']
[u'premier', u'unveil', u'cabinet', u'reshuffl']
[u'schumach', u'readi', u'challeng']
[u'senat', u'review', u'centenari', u'hous', u'rental', u'agreement']
[u'sept', u'convict', u'free', u'appeal']
[u'sibl', u'rival', u'schumach', u'championship']
[u'joh', u'famili', u'prepar', u'worst']
[u'resort', u'owner', u'agre', u'sale']
[u'spadea', u'oust', u'arthur', u'roddick']
[u'speedster', u'get', u'safeti', u'messag']
[u'sportswear', u'compani', u'dress']
[u'state', u'final', u'berth', u'bushrang']
[u'student', u'blast', u'flinder', u'increas']
[u'studi', u'confirm', u'obes', u'health', u'warn']
[u'studi', u'suggest', u'remot', u'council', u'share', u'ceo']
[u'support', u'australian', u'seafood', u'nation', u'market']
[u'surrog', u'mother', u'give', u'birth', u'grandkid']
[u'taipan', u'wildcat', u'season']
[u'teacher', u'boost', u'help', u'class', u'size']
[u'teacher', u'union', u'threaten', u'industri', u'woe']
[u'telstra', u'sale', u'govt', u'agenda']
[u'hope', u'battl', u'liber', u'preselect']
[u'terror', u'law', u'council']
[u'theatr', u'hop', u'tour', u'base', u'play']
[u'thiev', u'ransack', u'northern', u'tableland', u'home']
[u'thousand', u'mourn', u'shiit', u'bomb', u'victim']
[u'dead', u'isra', u'airstrik', u'near', u'gaza', u'citi']
[u'tibetan', u'monk', u'arriv', u'tasmania']
[u'tiger', u'call', u'crack', u'heckler']
[u'time', u'face', u'music', u'kazaa', u'oper', u'tell']
[u'treasur', u'sidestep', u'leadership', u'challeng', u'question']
[u'tweed', u'mayor', u'unhappi', u'paint', u'payment']
[u'spanish', u'club', u'sail', u'uefa', u'round']
[u'form', u'child', u'safeti', u'cours']
[u'union', u'rep', u'meet', u'coal', u'ship', u'delay']
[u'unsecur', u'creditor', u'unlik', u'recov', u'fund']
[u'dollar', u'continu', u'strengthen']
[u'increas', u'iraq', u'border', u'secur']
[u'govt', u'push', u'children', u'koori', u'court']
[u'mine', u'town', u'discuss', u'evacu', u'flood']
[u'waterfal', u'inquiri', u'examin', u'manag', u'practic']
[u'wildcard', u'oust', u'fan', u'gold', u'coast', u'tour', u'event']
[u'wild', u'weather', u'expect', u'lash', u'south', u'east']
[u'wit', u'give', u'evid', u'murder', u'trial']
[u'wood', u'skip', u'wentworth', u'world', u'match', u'play']
[u'woomera', u'space', u'industri', u'futur', u'doubt']
[u'profit', u'portman']
[u'accc', u'ask', u'help', u'take', u'tobacco', u'compani']
[u'accc', u'litig', u'budget', u'blow']
[u'accus', u'leicest', u'player', u'protest', u'innoc']
[u'govt', u'urg', u'remov', u'stamp', u'duti']
[u'administr', u'appoint', u'rock', u'trust']
[u'traffic', u'control', u'incid', u'report', u'cairn']
[u'albani', u'prepar', u'cruis', u'ship', u'influx']
[u'alic', u'gear', u'return']
[u'qaeda', u'suspect', u'captur', u'yemen', u'secur', u'sweep']
[u'amish', u'realiti', u'can', u'protest']
[u'head', u'admit', u'squander', u'sharehold', u'money']
[u'anderson', u'maintain', u'tugun', u'bypass', u'stanc']
[u'angri', u'ratepay', u'level', u'gatton', u'council', u'complaint']
[u'appoint', u'boost', u'industri', u'profil']
[u'asylum', u'seeker', u'claim', u'spend', u'day', u'reef']
[u'asylum', u'seeker', u'lose', u'conscious', u'hunger']
[u'dead', u'pacif', u'highway', u'smash']
[u'austeel', u'chief', u'upbeat', u'steel']
[u'australian', u'charg', u'crime', u'cambodia']
[u'ballarat', u'record', u'fewer', u'assault', u'curfew']
[u'belyando', u'shire', u'cultur', u'centr', u'open', u'door']
[u'long', u'weekend', u'ahead', u'mildura']
[u'biki', u'club', u'move', u'gunnedah', u'polic']
[u'blue', u'struggl']
[u'brazilian', u'bandit', u'catch', u'foot']
[u'brazilian', u'pele', u'list', u'greatest', u'player']
[u'breast', u'cancer', u'diagnosi', u'labor']
[u'british', u'guantanamo', u'detaine', u'return', u'home']
[u'broadcast', u'disput', u'impact', u'club', u'pub']
[u'brumbi', u'lose', u'larkham', u'shark', u'encount']
[u'brumbi', u'player', u'charg', u'cabbi', u'robberi']
[u'bull', u'restrict', u'blue', u'bushrang', u'struggl']
[u'driver', u'demand', u'fair', u'complaint', u'investig']
[u'bush', u'condemn', u'sept', u'elect']
[u'busi', u'want', u'jetstar', u'servic']
[u'busi', u'time', u'storm']
[u'trap', u'semi', u'pacif', u'smash']
[u'chief', u'stun', u'blue', u'gasp', u'winner']
[u'chines', u'parliament', u'expect', u'pass', u'constitut']
[u'chines', u'releas', u'polit', u'activist', u'jail']
[u'clean', u'continu', u'fatal', u'accid', u'site']
[u'clear', u'pong', u'crew', u'member']
[u'plan', u'fowl', u'play']
[u'convict', u'terrorist', u'set', u'record', u'straight']
[u'council', u'speak', u'ambul', u'servic']
[u'council', u'relax', u'water', u'restrict']
[u'court', u'concern', u'drive', u'doctor', u'examin', u'reluct']
[u'crow', u'keen', u'experi']
[u'crusad', u'turn', u'thorn']
[u'davi', u'open', u'break', u'sydney']
[u'disgrac', u'director', u'lose', u'court', u'challeng']
[u'doctor', u'chanc', u'meet', u'abbott']
[u'downer', u'defend', u'iraq', u'inquiri', u'appoint']
[u'dozen', u'hospitalis', u'chemic', u'scare']
[u'dredg', u'break', u'earli', u'dubai']
[u'edenhop', u'saddl', u'race', u'meet']
[u'masri', u'refus', u'test']
[u'explos', u'rock', u'baghdad', u'council', u'prepar']
[u'eyebrow', u'rais', u'ferri', u'price']
[u'fake', u'medic', u'univers', u'advertis']
[u'famili', u'reflect', u'joh', u'achiev']
[u'fare', u'free', u'rail', u'passeng']
[u'feder', u'cruis', u'dubai', u'quarter']
[u'govt', u'urg', u'boost', u'western']
[u'ferrari', u'flex', u'muscl']
[u'ferrari', u'set', u'practic', u'pace']
[u'film', u'commiss', u'push', u'ahead', u'archiv', u'merger']
[u'firefight', u'control', u'grass']
[u'food', u'produc', u'reject']
[u'forestri', u'worker', u'stop', u'work']
[u'solomon', u'airlift', u'australia']
[u'fragil', u'coalit', u'talk', u'close', u'collaps']
[u'froggi', u'founder', u'face', u'jail']
[u'steam', u'ahead', u'hunter', u'tourism', u'plan']
[u'govt', u'consid', u'cane', u'toad', u'fenc']
[u'govt', u'soft', u'poverti', u'acoss']
[u'govt', u'extend', u'satellit', u'phone', u'subsidi', u'scheme']
[u'govt', u'urg', u'develop', u'incent', u'women', u'worker']
[u'greec', u'rule', u'foreign', u'secur', u'game']
[u'green', u'boost', u'team', u'wollongong', u'council']
[u'health', u'servic', u'improv', u'avoid', u'dissolut']
[u'health', u'servic', u'undergo', u'manag', u'chang']
[u'help', u'seek', u'miss', u'armidal']
[u'henin', u'hardenn', u'capriati', u'power', u'qatar', u'semi']
[u'howard', u'reject', u'leadership', u'specul']
[u'hubbl', u'imag', u'say', u'echo', u'gogh', u'paint']
[u'immigr', u'raid', u'find', u'illeg', u'worker']
[u'indigen', u'communiti', u'record', u'high', u'rate']
[u'indigen', u'leader', u'urg', u'parliament', u'alcohol']
[u'industri', u'prais', u'hemp', u'major', u'boost']
[u'insur', u'compani', u'defend', u'strong', u'profit']
[u'intellig', u'chief', u'question', u'iraq', u'weapon']
[u'mount', u'race', u'club', u'meet']
[u'inter', u'play', u'benfica', u'celtic', u'draw', u'barca', u'uefa']
[u'investig', u'continu', u'school']
[u'labor', u'accus', u'betray', u'christma', u'island']
[u'leaki', u'pipe', u'expos', u'sourc', u'rare', u'wetland']
[u'injuri', u'mar', u'aussi', u'victori']
[u'liber', u'dismiss', u'leadership', u'specul']
[u'libya', u'begin', u'weapon', u'stockpil', u'destruct']
[u'live', u'marriag', u'benefici', u'church']
[u'lockyer', u'escap', u'sanction']
[u'lonhro', u'prepar', u'flemington', u'farewel']
[u'expect', u'bring', u'heavi', u'rain', u'darl', u'down']
[u'magpi', u'port', u'blood', u'youngster']
[u'malaysia', u'set', u'elect', u'date']
[u'arrest', u'drug', u'bust', u'dealer']
[u'face', u'adelaid', u'murder', u'charg']
[u'court', u'blaze', u'near', u'caravan', u'park']
[u'mayor', u'lobbi', u'princ', u'highway', u'fund']
[u'mcewen', u'take', u'agricultur', u'portfolio']
[u'meet', u'eas', u'refuge', u'deport', u'concern']
[u'melbourn', u'oscar', u'winner', u'arriv', u'home']
[u'melbourn', u'storm', u'chief', u'stand', u'player']
[u'merger', u'see', u'council', u'candid', u'face', u'coff', u'challeng']
[u'minist', u'know', u'wine', u'sack', u'advis', u'say']
[u'montoya', u'hungri', u'world', u'championship']
[u'cane', u'farmer', u'accept', u'incom', u'support', u'offer']
[u'protest', u'promis', u'toxic', u'dump', u'plan']
[u'want', u'shadow', u'minist', u'rebuk', u'comment']
[u'murder', u'prompt', u'tighten', u'worker']
[u'music', u'piraci', u'devast', u'industri', u'confer']
[u'chief', u'vow', u'restor', u'bank', u'reput']
[u'nat', u'inspect', u'polic', u'facil']
[u'nauru', u'face', u'challeng', u'time', u'downer', u'say']
[u'nauru', u'receiv', u'million', u'australian']
[u'chief', u'announc', u'palm', u'council']
[u'gambl', u'minist', u'criticis', u'conflict']
[u'sexual', u'assault', u'claim', u'strike']
[u'sexual', u'assault', u'claim', u'strike']
[u'northern', u'port', u'consid', u'singl', u'board']
[u'examin', u'lockyer', u'raper', u'comment']
[u'play', u'wait', u'game', u'alleg']
[u'premier', u'move', u'shop']
[u'rugbi', u'face', u'test', u'time']
[u'opposit', u'leader', u'kill', u'venezuelan', u'govt']
[u'oust', u'haitian', u'presid', u'vow', u'return']
[u'fish', u'close', u'burketown', u'river']
[u'oxfam', u'focus', u'slave', u'labour', u'lead']
[u'partnership', u'address', u'nulsen', u'woe']
[u'petrol', u'sniff', u'close', u'school']
[u'philippin', u'mayor', u'shoot', u'dead', u'elect']
[u'pledg', u'address', u'sugar', u'concern']
[u'hear', u'cane', u'farmer', u'trade', u'deal', u'concern']
[u'polic', u'fear', u'latest', u'blaze', u'work', u'broule', u'firebug']
[u'polic', u'fear', u'fatal', u'accid']
[u'polic', u'cyclist', u'victim']
[u'polic', u'number', u'boost', u'geraldton']
[u'polic', u'oper', u'lead', u'burglari', u'arrest']
[u'polic', u'crack', u'gold', u'theft']
[u'pressur', u'build', u'home', u'hero', u'webber']
[u'probe', u'launch', u'yellowi', u'blaze']
[u'prosser', u'talk', u'free', u'trade', u'deal', u'benefit']
[u'protea', u'mckenzi', u'smack', u'centuri', u'tour', u'match']
[u'qanta', u'flight', u'boost', u'central', u'aust', u'visitor']
[u'govt', u'highlight', u'clear', u'legisl', u'regrowth']
[u'rain', u'wreak', u'havoc', u'templeton', u'classic']
[u'record', u'snowfal', u'blanket', u'south', u'korea']
[u'rescu', u'effort', u'begin', u'arctic', u'base', u'sink']
[u'research', u'fossil', u'human']
[u'riverland', u'teen', u'acquit', u'father', u'kill']
[u'roma', u'council', u'clear', u'financi', u'woe']
[u'russia', u'approv', u'putin', u'choic']
[u'santo', u'probe', u'alleg', u'cyclon', u'protocol', u'breach']
[u'saqlain', u'afridi', u'recal', u'seri']
[u'school', u'communiti', u'devast']
[u'senat', u'question', u'pet', u'flight', u'plan']
[u'seven', u'face', u'trial', u'pong', u'heroin', u'haul']
[u'attack', u'claim', u'rock', u'english', u'soccer']
[u'shire', u'grain', u'cart', u'worri']
[u'charg', u'drug', u'traffic']
[u'smith', u'slide', u'late', u'hold', u'edg']
[u'smoke', u'rais', u'risk', u'relat', u'blind', u'studi']
[u'settler', u'order', u'leav', u'west', u'bank']
[u'southampton', u'sturrock', u'boss']
[u'south', u'east', u'blaze', u'claim', u'stock', u'fenc']
[u'sporad', u'violenc', u'continu', u'iraq']
[u'lanka', u'put', u'faith', u'spinner']
[u'steadi', u'european', u'rat', u'trim', u'dollar']
[u'storm', u'chief', u'stand', u'player']
[u'storm', u'batter', u'south', u'east', u'queensland']
[u'stranger', u'incid', u'spark', u'parent', u'remind']
[u'sudan', u'rebel', u'need', u'clinch', u'peac', u'deal', u'powel']
[u'support', u'concern', u'threat', u'raceway']
[u'teen', u'charg', u'multipl', u'busi', u'break']
[u'thousand', u'search', u'french', u'railway', u'bomb']
[u'join', u'tropic', u'diseas', u'allianc']
[u'tour', u'oper', u'hope', u'reef', u'relief']
[u'trot', u'track', u'unlik', u'shift']
[u'union', u'hold', u'stop', u'work', u'meet', u'shipbuild']
[u'compani', u'confid', u'rocket', u'project', u'proceed']
[u'gain', u'unfair', u'tin', u'fruit', u'advantag']
[u'reject', u'push', u'haiti', u'kidnap', u'inquiri']
[u'venezuelan', u'ambassador', u'resign']
[u'venic', u'film', u'festiv', u'get', u'director']
[u'govt', u'stand', u'easter', u'sunday', u'trade']
[u'violenc', u'avert', u'sydney', u'stand']
[u'want', u'virtual', u'vicar', u'virtual', u'church']
[u'week', u'end', u'high', u'note', u'australian', u'stock']
[u'wellington', u'jail', u'stay', u'public', u'hand']
[u'western', u'power', u'sign', u'year', u'deal']
[u'wild', u'weather', u'north', u'coast']
[u'wilki', u'run', u'green', u'seat']
[u'wiluna', u'power', u'station']
[u'womadelaid', u'music', u'festiv', u'open']
[u'wood', u'close', u'birdi', u'brace', u'dubai']
[u'workcov', u'close', u'construct', u'site', u'worker']
[u'zimbabw', u'condemn', u'wider', u'sanction']
[u'account', u'stamp', u'duti', u'overhaul']
[u'speaker', u'suspend', u'labor', u'caucus']
[u'adult', u'cruis', u'ship', u'dock', u'fremantl']
[u'qaeda', u'develop', u'hijack', u'weapon', u'expert']
[u'ankl', u'sore', u'forc', u'miss', u'train']
[u'armstrong', u'want', u'dope', u'chief']
[u'dead', u'gaza', u'strip', u'violenc']
[u'attack', u'injur', u'british', u'soldier', u'iraq']
[u'balloon', u'fiesta', u'brighten', u'canberra', u'sky']
[u'beatti', u'promis', u'wine', u'inquiri', u'cooper']
[u'birmingham', u'determin', u'blow', u'euro', u'chanc']
[u'blair', u'say', u'worldwid', u'terror', u'threat', u'real']
[u'blair', u'want', u'emptiv', u'militari', u'strike']
[u'bomb', u'near', u'baghdad', u'hotel']
[u'bomb', u'squad', u'abuzz', u'vibrat']
[u'dead', u'flood', u'creek']
[u'bright', u'quick', u'race']
[u'bulldog', u'manag', u'emerg', u'polic', u'interview']
[u'bushfir', u'close', u'highway']
[u'busi', u'improv', u'secur']
[u'delay', u'council', u'elect']
[u'canada', u'take', u'arm', u'pilot', u'object', u'apec']
[u'carr', u'health', u'reform', u'plan', u'vindic', u'opposit']
[u'cash', u'strap', u'media', u'magnat', u'black', u'sell', u'holling']
[u'cat', u'preseason', u'grand', u'final']
[u'central', u'africa', u'move', u'silenc', u'aristid']
[u'chavez', u'tell', u'venezuela']
[u'china', u'boost', u'militari', u'spend']
[u'china', u'check', u'rampant', u'growth']
[u'citylink', u'offer', u'driver', u'refund']
[u'cofidi', u'embroil', u'dope', u'scandal']
[u'court', u'rule', u'cojoin', u'twin', u'death', u'misadventur']
[u'court', u'seek', u'forc', u'phone', u'record']
[u'cross', u'breed', u'mosquito', u'spread', u'west', u'nile', u'studi']
[u'davi', u'lead', u'tesk', u'pois', u'women', u'open']
[u'dever', u'complet', u'half', u'uniqu', u'doubl']
[u'disput', u'delay', u'sign', u'iraq', u'interim']
[u'york', u'time', u'report', u'list', u'fabric']
[u'feder', u'march', u'dubai', u'semi']
[u'fergi', u'settl', u'stud', u'fee', u'disput']
[u'ferrari', u'seal', u'place']
[u'flood', u'warn', u'issu', u'northern']
[u'floodwat', u'drench', u'north']
[u'geelong', u'edg', u'melbourn', u'season', u'final']
[u'germani', u'launch', u'nationwid', u'easter', u'bunni', u'count']
[u'gibson', u'sue', u'pirat', u'passion']
[u'glacier', u'melt', u'indic', u'global', u'warm', u'chang']
[u'commerci', u'crop', u'delay', u'urg', u'committe']
[u'green', u'world', u'heritag', u'fund', u'boost']
[u'gungahlin', u'council', u'call', u'light', u'rail']
[u'haiti', u'humanitarian', u'crisi', u'avert']
[u'heavi', u'snow', u'strand', u'thousand', u'korean', u'motorist']
[u'henin', u'hardenn', u'stun', u'myskina', u'cruis']
[u'howard', u'brace', u'tough', u'canegrow', u'meet']
[u'howard', u'hear', u'canegrow', u'heartach']
[u'india', u'israel', u'sign', u'earli', u'warn', u'radar', u'deal']
[u'iraqi', u'seek', u'salvag', u'constitut', u'deal']
[u'israel', u'sharon', u'popular', u'fall', u'survey']
[u'jaguar', u'make', u'giant', u'stride', u'webber']
[u'joint', u'tourism', u'ventur', u'kakadu']
[u'kean', u'escap', u'match', u'porto', u'card']
[u'larrakia', u'employ', u'initi', u'underway']
[u'late', u'late', u'see', u'brumbi', u'past', u'shark']
[u'late', u'earn', u'bull', u'draw', u'highland']
[u'leader', u'respect', u'macedonian', u'presid']
[u'long', u'bear', u'fruit', u'roddick']
[u'kill', u'hous']
[u'surviv', u'shark', u'attack', u'coast']
[u'unit', u'suffer', u'injuri', u'misfortun']
[u'martha', u'stewart', u'guilti', u'conspiraci']
[u'matilda', u'athen']
[u'mcginley', u'wood', u'stay', u'touch']
[u'migrat', u'zone', u'excis', u'xenophob', u'refuge', u'group']
[u'montoya', u'close', u'schu', u'quickest']
[u'motorcyclist', u'kill', u'polic', u'chase']
[u'mret', u'expans', u'vesta', u'growth']
[u'muse', u'rabbit', u'proof', u'fenc', u'rememb']
[u'injur', u'verandah', u'collaps']
[u'zag', u'wellington', u'bike', u'rule']
[u'pay', u'tribut', u'lead', u'women']
[u'price', u'hit', u'post', u'iraq', u'high']
[u'opposit', u'call', u'wine', u'probe']
[u'pacif', u'forum', u'consid', u'french', u'polynesian', u'status']
[u'pakistan', u'beat', u'windi', u'lift', u'youth', u'world']
[u'palestinian', u'shoot', u'dead', u'west', u'bank', u'report']
[u'parri', u'hunt', u'miami']
[u'patterson', u'challeng', u'swan', u'famili', u'polici']
[u'penthous', u'fold', u'circul', u'fail', u'excit']
[u'pig', u'taipan']
[u'pittman', u'make', u'hurdl', u'return']
[u'polic', u'await', u'post', u'firework', u'troubl']
[u'polic', u'await', u'psych', u'report', u'road', u'disput', u'kill']
[u'polic', u'probe', u'bomb', u'adelaid', u'home']
[u'polic', u'quiz', u'bulldog', u'manag']
[u'polic', u'quiz', u'bulldog', u'manag']
[u'pride', u'line']
[u'rail', u'worker', u'strike', u'medic', u'test']
[u'rain', u'parad', u'deter', u'mardi', u'gras']
[u'rain', u'wreck', u'beller']
[u'ranger', u'star', u'trophi', u'abi']
[u'face', u'flatley', u'save']
[u'rise', u'dam', u'silver', u'line', u'cloud']
[u'roadwork', u'unearth', u'inca', u'mummi']
[u'roddick', u'roll', u'arizona', u'quarter']
[u'roger', u'clear', u'injuri']
[u'roger', u'injuri', u'sour', u'waratah']
[u'roma', u'look', u'dent', u'inter']
[u'ronaldo', u'zidan', u'real', u'trebl']
[u'russian', u'arctic', u'scientist', u'await', u'rescu']
[u'saint', u'march', u'preseason', u'final']
[u'saint', u'cat', u'showdown']
[u'school', u'encourag', u'step', u'market']
[u'search', u'underway', u'plane', u'miss', u'north', u'west']
[u'second', u'nasa', u'rover', u'find', u'sign', u'water', u'mar']
[u'seven', u'kill', u'hurt', u'avalanch', u'eastern']
[u'singapor', u'preserv', u'changi', u'prison', u'wall']
[u'dead', u'qaeda', u'suspect', u'blow', u'cover']
[u'southern', u'clean', u'wild', u'storm']
[u'spencer', u'break', u'give', u'auckland', u'blue']
[u'sugar', u'industri', u'warn', u'howard']
[u'sugar', u'industri', u'wrestl', u'howard', u'bitter', u'pill']
[u'sink', u'scientist', u'rescu', u'arctic', u'circl']
[u'suspect', u'escap', u'daylight', u'robberi', u'japan']
[u'talk', u'iraqi', u'constitut', u'resum']
[u'forestri', u'poach', u'farmland', u'report']
[u'tendulkar', u'wait', u'stick', u'pakistan']
[u'thousand', u'aristid', u'support', u'pour', u'haiti']
[u'dead', u'injur', u'multi', u'vehicl', u'collis']
[u'leicest', u'player', u'send', u'spanish', u'jail']
[u'tiger', u'beat']
[u'tiger', u'elimin']
[u'toddler', u'kill', u'polic', u'guard', u'hospit']
[u'transport', u'minist', u'take', u'road']
[u'union', u'seek', u'wonderland', u'casual', u'payout']
[u'unit', u'reveng']
[u'unit', u'plan', u'increas', u'stadium', u'capac']
[u'unwash', u'year', u'smelli', u'kenyan', u'get', u'scrubdown']
[u'admit', u'shoot', u'dead', u'civilian', u'iraq']
[u'afghan', u'forc', u'kill', u'milit', u'captur']
[u'armi', u'cancel', u'iraq', u'armi', u'contract']
[u'stock', u'flat', u'light', u'job', u'data']
[u'vietnam', u'leader', u'visit', u'communist', u'alli', u'cuba']
[u'polic', u'urg', u'calm', u'toddler', u'kill', u'road']
[u'warn', u'murali', u'prepar', u'spin', u'duel']
[u'warwickshir', u'streak', u'pretori']
[u'target', u'jarrah', u'dieback']
[u'water', u'canberra', u'sprinkler', u'restrict']
[u'woman', u'dead', u'river']
[u'worksaf', u'investig', u'tractor', u'death']
[u'zimbabw', u'label', u'tortur', u'film', u'unfound', u'rubbish']
[u'victim', u'fear', u'sidelin']
[u'watch', u'rise', u'water']
[u'smoke', u'irish', u'govt', u'target', u'booz']
[u'airlin', u'baulk', u'anti', u'terror', u'cost']
[u'back', u'costello']
[u'amaz', u'victori', u'seal', u'bull', u'final', u'place']
[u'amaz', u'victori', u'seal', u'bull', u'place', u'final']
[u'anastacia', u'steal', u'german', u'music', u'award']
[u'arctic', u'research', u'return', u'russia', u'hero']
[u'aristid', u'maintain', u'kidnap', u'haiti']
[u'armi', u'duti', u'leav', u'lover', u'limp']
[u'theft', u'probe', u'scale']
[u'ashmor', u'asylum', u'seeker', u'return', u'indonesia']
[u'australian', u'iraq', u'crime', u'inquiri']
[u'australia', u'help', u'build', u'saddam', u'crime', u'case']
[u'banana', u'import', u'review', u'grower', u'input']
[u'beatti', u'pledg', u'support', u'wine', u'probe']
[u'bequest', u'afford', u'church', u'artwork']
[u'birmingham', u'fli', u'high', u'bolton']
[u'blair', u'dismiss', u'conman', u'claim']
[u'blast', u'rock', u'moscow', u'apart', u'block', u'polic']
[u'bodi', u'ultra', u'light', u'crash', u'site']
[u'boom', u'ecotour', u'stress', u'anim', u'death']
[u'kill', u'water', u'tank', u'crush']
[u'bright', u'doubl', u'skaif', u'hit', u'troubl']
[u'britain', u'launch', u'probe', u'iraqi', u'firefight']
[u'britain', u'expand', u'elit', u'forc', u'report']
[u'bush', u'reject', u'campaign', u'critic', u'sept']
[u'bush', u'say', u'reject', u'econom', u'unilater']
[u'calm', u'toddler', u'death']
[u'fund', u'boost', u'age', u'care']
[u'canberra', u'girl', u'domin', u'play', u'field']
[u'central', u'pair', u'hold', u'south', u'africa']
[u'childbirth', u'right', u'women', u'agenda']
[u'china', u'deni', u'presenc', u'north', u'korean', u'refuge']
[u'china', u'foster', u'femal', u'taikonaut']
[u'clark', u'stand', u'asid', u'wine', u'inquiri']
[u'committe', u'find', u'bangladesh', u'danger']
[u'costello', u'tip', u'labor', u'rise']
[u'council', u'seek', u'answer', u'sydney', u'islam', u'leader']
[u'crew', u'battl', u'fire', u'melbourn', u'school']
[u'davi', u'take', u'shoot', u'break', u'extend']
[u'energex', u'review', u'emerg', u'procedur']
[u'england', u'warm', u'windi', u'style']
[u'factori', u'damag', u'storm', u'whip', u'bundaberg']
[u'famili', u'payment', u'debt', u'relief', u'underway']
[u'feder', u'warn', u'govt', u'lift', u'game']
[u'feder', u'meet', u'lopez', u'dubai', u'final']
[u'ferrari', u'pair', u'lead', u'pack']
[u'flood', u'water', u'continu', u'threaten', u'north']
[u'food', u'water', u'fli', u'flood', u'ravag', u'town']
[u'foreign', u'troop', u'brace', u'protest', u'haiti']
[u'french', u'presid', u'condemn', u'arson', u'attack', u'mosqu']
[u'gaza', u'raid', u'follow', u'fail', u'border', u'attack']
[u'golden', u'lebedeva', u'celebr', u'coach', u'scowl']
[u'govt', u'probe', u'africa', u'grave', u'vandal']
[u'govt', u'work', u'credit', u'plan', u'narrow', u'labor']
[u'greec', u'gear', u'nation', u'elect']
[u'greek', u'poll']
[u'guantanamo', u'briton', u'polic', u'protect']
[u'gunner', u'unit', u'book', u'semi', u'slot']
[u'health', u'cut', u'surpris', u'carr', u'abbott']
[u'howard', u'health', u'fund', u'serial', u'burglar', u'carr']
[u'hurrican', u'blow', u'stormer', u'cours']
[u'iraq', u'shiit', u'strike', u'constitut', u'deal', u'cleric']
[u'ireland', u'england', u'twickenham']
[u'israel', u'hit', u'gaza', u'refuge', u'camp', u'dead']
[u'italian', u'hold', u'hide', u'protest', u'nazi', u'crimin']
[u'kiefer', u'reach', u'scottsdal', u'final']
[u'labor', u'talk', u'homeland', u'secur', u'dept']
[u'landcar', u'assist', u'sustain', u'busi', u'plan']
[u'latham', u'tight', u'lip', u'polici']
[u'leed', u'releas', u'morri']
[u'leicest', u'push', u'player', u'releas']
[u'libya', u'clear', u'tool']
[u'malaysia', u'hold', u'indonesian', u'islamist', u'milit']
[u'arrest', u'isra', u'grenad', u'attack']
[u'hospit', u'fenc', u'pal', u'attack']
[u'kill', u'collis']
[u'marconi', u'south', u'finish', u'scoreless']
[u'mauresmo', u'pull', u'indian', u'well']
[u'work', u'women', u'inequ']
[u'moscow', u'blast', u'blame', u'leak']
[u'myskina', u'ralli', u'defend', u'qatar', u'titl']
[u'boss', u'trade', u'scandal', u'leeson']
[u'nation', u'trust', u'take', u'tourist', u'street', u'shame']
[u'nedv', u'seal', u'juve', u'comeback']
[u'hospit', u'prescript', u'trial']
[u'drought', u'area', u'rise', u'despit', u'scatter', u'rainfal']
[u'indigen', u'prison', u'popul', u'regular']
[u'nurs', u'attack', u'spark', u'hospit', u'secur', u'review']
[u'nurs', u'critic', u'condit', u'hospit', u'patient']
[u'omeara', u'mcginley', u'deadlock', u'dubai']
[u'kill', u'southern', u'russia', u'blast', u'polic']
[u'ongaro', u'inspir', u'itali', u'scot']
[u'ozjet', u'challeng', u'discount', u'airlin']
[u'parri', u'charg', u'lead', u'miami']
[u'plane', u'wreck', u'north', u'west']
[u'come', u'clean', u'leadership', u'plan']
[u'polic', u'academi', u'renov', u'reveal']
[u'polic', u'injur', u'street', u'brawl', u'adelaid']
[u'pont', u'readi', u'post', u'waugh']
[u'pope', u'appoint', u'head', u'timor', u'cathol', u'church']
[u'author', u'resum', u'search', u'miss', u'plane']
[u'coalit', u'talk', u'break']
[u'minist', u'gather', u'yeppoon', u'amid', u'wine']
[u'radio', u'nation', u'ax', u'rumour', u'alarm', u'brown']
[u'rail', u'worker', u'strike', u'despit', u'rule']
[u'rain', u'aid', u'perth', u'firefight']
[u'rain', u'fail', u'dampen', u'sydney', u'mardi', u'gras', u'parad']
[u'real', u'lead', u'ronaldo', u'injur']
[u'record', u'number', u'clean', u'australia']
[u'record', u'number', u'expect', u'clean']
[u'crescent', u'boss', u'kill', u'afghanistan']
[u'cross', u'deliv', u'saddam', u'letter', u'daughter']
[u'reward', u'humpti', u'shoot', u'inform']
[u'royal', u'exhibit', u'build', u'tip', u'heritag']
[u'rspca', u'investig', u'home', u'pigeon', u'slaughter']
[u'sack', u'media', u'advisor', u'say', u'beatti', u'twist', u'truth']
[u'salt', u'probe', u'deep', u'space']
[u'school', u'appl', u'drive', u'target', u'childhood', u'obes']
[u'senat', u'welcom', u'banana', u'import', u'probe']
[u'shepparton', u'assault', u'leav', u'woman', u'hospit']
[u'shiit', u'leader', u'discuss', u'iraqi', u'constitut', u'impass']
[u'siev', u'asylum', u'seeker', u'memori', u'plan', u'canberra']
[u'kill', u'botch', u'suicid', u'bomb', u'attack', u'gaza']
[u'social', u'worker', u'northbridg', u'curfew']
[u'spadea', u'stun', u'roddick', u'reach', u'scottsdal', u'final']
[u'spam', u'take', u'filipino', u'palat', u'storm']
[u'stanhop', u'review', u'extradit', u'procedur']
[u'start', u'finish', u'michael', u'schumach']
[u'start', u'finish', u'michael', u'schumach']
[u'suspect', u'asylum', u'seeker', u'await', u'detent', u'centr']
[u'sydney', u'elect', u'campaign', u'heat']
[u'taiwan', u'premier', u'flag', u'retir', u'plan']
[u'tall', u'spi', u'face', u'chop']
[u'ten', u'thousand', u'march', u'venezuelan']
[u'thousand', u'remain', u'black', u'south', u'east']
[u'tight', u'secur', u'indonesian', u'presid', u'visit', u'aceh']
[u'explor', u'bush', u'tucker', u'project']
[u'truanci', u'target', u'employ']
[u'turk', u'demonstr', u'public', u'sector', u'reform']
[u'charg', u'attempt', u'murder']
[u'dead', u'miss', u'water', u'taxi', u'capsiz']
[u'hospit', u'tripl', u'stab', u'brisban']
[u'union', u'stand', u'firm', u'rail', u'strike']
[u'rocker', u'crosbi', u'arrest', u'drug', u'possess']
[u'rocker', u'crosbi', u'face', u'drug', u'charg']
[u'threaten', u'sanction', u'syria', u'offici']
[u'vanston', u'deni', u'coast', u'surveil', u'failur']
[u'yemeni', u'journalist', u'arrest']
[u'youth', u'charg', u'attempt', u'murder']
[u'aborigin', u'health', u'issu', u'microscop']
[u'adelaid', u'posit', u'second']
[u'side', u'prais', u'alic', u'venu']
[u'age', u'care', u'provid', u'immedi', u'sector']
[u'albani', u'face', u'extradit', u'claim']
[u'black', u'play', u'pacif', u'island']
[u'call', u'ethic', u'debat']
[u'ambo', u'award', u'water', u'rescu']
[u'aristid', u'seek', u'haiti', u'resist']
[u'ashmor', u'arriv', u'bind', u'christma', u'island']
[u'kill', u'haiti', u'ralli', u'shoot']
[u'attack', u'prompt', u'increas', u'mental', u'health']
[u'aussi', u'struggl', u'gall']
[u'aust', u'pakistan', u'odd', u'wheat', u'shipment']
[u'australia', u'delay', u'name', u'test', u'team']
[u'australian', u'wheat', u'diseas', u'free', u'export']
[u'author', u'contain', u'leak']
[u'averag', u'outlook', u'grain', u'farmer']
[u'award', u'recognis', u'brave', u'effort']
[u'banana', u'diseas', u'risk', u'concern', u'expert']
[u'bank', u'resourc', u'lift', u'market']
[u'barcelona', u'hold', u'claim', u'seventh', u'straight']
[u'beatti', u'resist', u'call', u'stand', u'minist']
[u'swarm', u'rescu', u'earn', u'braveri', u'award']
[u'berri', u'stay', u'labor', u'parti', u'despit', u'month', u'long']
[u'billiton', u'contract', u'offer', u'pacif', u'nation', u'boost']
[u'blair', u'deni', u'conman', u'influenc', u'claim']
[u'die', u'wudinna', u'farm', u'tragedi']
[u'bullet', u'knock', u'tiger']
[u'bush', u'blair', u'know', u'hype', u'case', u'blix']
[u'bushfir', u'trigger', u'blackout']
[u'bush', u'septemb', u'stay']
[u'resourc', u'boost', u'tackl', u'stock', u'theft']
[u'carr', u'accus', u'divers', u'tactic']
[u'celtic', u'doubl', u'hop', u'aliv']
[u'chang', u'program', u'secret', u'folk', u'festiv', u'success']
[u'chemic', u'clean', u'near', u'pike', u'river']
[u'chemic', u'reaction', u'caus', u'moomba', u'blast']
[u'citrus', u'grower', u'highlight', u'trade', u'deal', u'access', u'issu']
[u'commiss', u'back', u'indigen', u'tradit', u'govern']
[u'committe', u'boost', u'sport', u'facil', u'campaign']
[u'communiti', u'clean', u'claypan']
[u'comput', u'environment', u'impact', u'expos']
[u'conserv', u'parti', u'return', u'power', u'greec']
[u'conserv', u'claim', u'victori', u'greek', u'elect']
[u'councillor', u'dive', u'pool', u'redevelop', u'debat']
[u'councillor', u'question', u'illeg', u'brothel', u'probe']
[u'council', u'consid', u'fletcher', u'jone', u'build', u'report']
[u'counter', u'terror', u'unit', u'face', u'biggest']
[u'court', u'fin', u'child', u'porn', u'possess']
[u'court', u'hear', u'pastor', u'shred', u'abus', u'evid']
[u'crowd', u'record', u'tumbl', u'newcastl']
[u'crow', u'test', u'rais', u'japan', u'bird', u'fear']
[u'davi', u'run', u'away', u'aust', u'open']
[u'death', u'spark', u'older', u'farmer', u'care']
[u'defenc', u'forc', u'test', u'amphibi', u'oper']
[u'diseas', u'exercis', u'test', u'anim', u'health', u'offici']
[u'disput', u'affect', u'countrylink', u'servic']
[u'driver', u'interview', u'ambul', u'accid']
[u'drought', u'area', u'rise']
[u'drought', u'condit', u'loom']
[u'drown', u'tragedi', u'north', u'coast']
[u'drug', u'price', u'certain', u'rise']
[u'earli', u'warn', u'help', u'region', u'endur', u'storm']
[u'charg', u'riot', u'aborigin', u'communiti']
[u'consid', u'gorgon', u'plan', u'submiss']
[u'timor', u'welcom', u'foreign', u'polic', u'plan']
[u'evan', u'finish', u'tour', u'murcia']
[u'expert', u'back', u'pork', u'quarantin', u'concern']
[u'extradit', u'procedur', u'review']
[u'feder', u'damag', u'solomon']
[u'feder', u'retain', u'dubai', u'titl']
[u'fevola', u'involv', u'casino', u'incid']
[u'finland', u'strengthen', u'industri']
[u'firm', u'plan', u'kangaroo', u'sawmil']
[u'firm', u'warn', u'impend', u'blackout']
[u'test', u'pitch', u'bone']
[u'food', u'compani', u'chipper', u'impend', u'deliveri']
[u'court', u'yarloop', u'hous', u'attack']
[u'franc', u'grand', u'slam', u'favourit']
[u'funer', u'hold', u'victim', u'isra', u'attack']
[u'govt', u'agre', u'develop', u'moratorium']
[u'govt', u'rule', u'compens']
[u'govt', u'spend', u'forc', u'open', u'mind', u'labor']
[u'govt', u'urg', u'decid', u'age', u'care', u'fund']
[u'greec', u'go', u'poll']
[u'greek', u'socialist', u'conced', u'elect', u'loss']
[u'guantanamo', u'briton', u'danger', u'releas']
[u'harbour', u'part', u'close', u'salvag', u'work']
[u'health', u'profession', u'parti', u'drug']
[u'help', u'burn', u'mate', u'earn', u'braveri', u'award']
[u'infect', u'soar', u'asian', u'women']
[u'hope', u'weather', u'god', u'smile', u'begonia', u'festiv']
[u'howard', u'object', u'adopt', u'plan']
[u'hybrid', u'car', u'acceler', u'europ']
[u'imam', u'terror', u'speech', u'explan', u'satisfi', u'peer']
[u'immun', u'talk', u'imped', u'bougainvill', u'oper']
[u'go', u'howard', u'say']
[u'indict', u'croatian', u'general', u'surrend']
[u'indonesia', u'kiss', u'public', u'affect', u'goodby']
[u'investig', u'clear', u'hccc', u'backlog']
[u'iran', u'say', u'nuke', u'dossier', u'mean', u'complet']
[u'iraq', u'council', u'sign', u'interim', u'constitut']
[u'ban', u'rail', u'strike']
[u'israel', u'continu', u'gaza', u'raid']
[u'japan', u'resum', u'rocket', u'launch', u'earli']
[u'fuel', u'ship']
[u'possibl', u'council', u'elect', u'issu']
[u'johnston', u'secur', u'lib', u'kimberley', u'preselect']
[u'keelti', u'urg', u'action', u'terror', u'caus']
[u'labor', u'ask', u'liber', u'reveal', u'success', u'plan']
[u'labor', u'spell', u'tax', u'costello']
[u'leicest', u'player', u'hope', u'releas', u'jail']
[u'liber', u'admit', u'coalit', u'tatter']
[u'liber', u'rebuk', u'leadership', u'rumour']
[u'libyan', u'dine', u'camel']
[u'local', u'join', u'nation', u'clean']
[u'lonhro', u'charg', u'home', u'flemington']
[u'madagascar', u'cyclon', u'leav', u'homeless']
[u'maher', u'confid', u'play', u'final']
[u'kill', u'glider', u'accid']
[u'plead', u'guilti', u'manslaught']
[u'recognis', u'brave', u'effort']
[u'court', u'polic', u'stand']
[u'want', u'israel', u'grenad', u'attack', u'arrest']
[u'marsh', u'back', u'bushrang', u'final']
[u'mayor', u'candid', u'moot', u'homeless', u'summit']
[u'meet', u'resolv', u'broadcast', u'right']
[u'milan', u'march', u'roma', u'stay', u'tail']
[u'minist', u'urg', u'focus', u'health', u'servic', u'fund']
[u'expens', u'see', u'necessarili', u'better']
[u'motorcyclist', u'die', u'highway', u'crash']
[u'extend', u'globe']
[u'muralitharan', u'bag', u'australia', u'slump']
[u'muralitharan', u'bag', u'australia', u'slump']
[u'muscat', u'miss', u'cost', u'millwal']
[u'muslim', u'leader', u'say', u'quot', u'take', u'context']
[u'mutola', u'rewrit', u'indoor', u'histori', u'book']
[u'law', u'allow', u'hick', u'habib', u'serv', u'time']
[u'zealand', u'send', u'afghanistan']
[u'charg', u'lay', u'fals', u'alarm']
[u'charg', u'mysteri', u'substanc']
[u'earli', u'end', u'rail', u'strike']
[u'liber', u'expect', u'opposit', u'frontbench']
[u'celebr', u'intern', u'women']
[u'hospit', u'watchdog', u'chang', u'announc']
[u'oppn', u'cast', u'doubt', u'hospit']
[u'broadcast', u'apologis', u'anti', u'outburst']
[u'omeara', u'break', u'titl', u'drought', u'dubai']
[u'pair', u'bird', u'scandal', u'dead']
[u'pambula', u'footbal', u'die', u'weekend', u'match']
[u'parri', u'persist', u'pay', u'welcom', u'victori']
[u'parri', u'triumph', u'eagl', u'play']
[u'pasminco', u'creditor', u'await', u'payment']
[u'pickett', u'escap', u'tribun', u'appear']
[u'pipelin', u'answer', u'gold', u'coast', u'water', u'need']
[u'bluff', u'adopt']
[u'shut', u'reconcili', u'debat']
[u'polic', u'charg', u'plater', u'drink', u'drive']
[u'polic', u'close', u'hotel', u'weekend', u'assault']
[u'polic', u'drug', u'unit', u'seek', u'rave', u'meet']
[u'polic', u'hunt', u'labrador', u'arm', u'bandit']
[u'polic', u'investig', u'suspici', u'school']
[u'policeman', u'plead', u'guilti', u'custodi', u'assault']
[u'polic', u'young', u'drown', u'victim']
[u'polic', u'probe', u'gear', u'theft']
[u'polic', u'probe', u'longreach', u'footbal', u'assault', u'claim']
[u'polic', u'probe', u'origin', u'racist', u'email']
[u'polic', u'probe', u'paringa', u'weapon', u'theft']
[u'polic', u'scale', u'theft', u'probe']
[u'polic', u'urg', u'worker', u'murder', u'inquiri']
[u'post', u'natal', u'depress', u'survey', u'shock']
[u'public', u'comment', u'seek', u'cotton', u'plant']
[u'public', u'thank', u'safeti', u'effort']
[u'push', u'continu', u'wollongong', u'medic', u'retriev']
[u'rail', u'strike', u'resolut', u'carr']
[u'ralph', u'announc', u'alarm', u'green']
[u'reconcili', u'govt', u'agenda']
[u'region', u'hop', u'cruis', u'tourism', u'boost']
[u'resid', u'view', u'causeway']
[u'ricegrow', u'consid', u'east', u'market']
[u'road', u'crash', u'leav', u'woman', u'hospit']
[u'rocket', u'fire', u'headquart', u'baghdad']
[u'roger', u'face', u'fit', u'race']
[u'rural', u'women', u'celebr', u'resili']
[u'sack', u'media', u'advis', u'hit', u'premier', u'trip']
[u'festiv', u'declar', u'success']
[u'safeti', u'move', u'senior', u'home']
[u'sar', u'hero', u'question', u'tiananmen', u'letter']
[u'schumach', u'say', u'barrichello', u'biggest', u'threat']
[u'second', u'hand', u'notif', u'anger', u'joh', u'famili']
[u'member', u'honour', u'braveri']
[u'shiit', u'leader', u'sign', u'interim', u'iraq', u'constitut']
[u'shin', u'bone', u'prove', u'fisherman', u'friend', u'shark', u'attack']
[u'spadea', u'claim', u'career', u'titl']
[u'spanish', u'journalist', u'kill', u'haiti', u'ralli']
[u'staff', u'treat', u'brisban', u'post', u'offic', u'scare']
[u'strike', u'disrupt', u'rail', u'servic']
[u'sugar', u'industri', u'want', u'dollar', u'sweeten']
[u'sunderland', u'semi']
[u'suprem', u'court', u'hear', u'child', u'snatch', u'case']
[u'surfer', u'charg', u'underworld', u'murder']
[u'sword', u'ban', u'crackdown', u'gang', u'violenc']
[u'govt', u'accus', u'hypocrisi', u'heritag', u'fund']
[u'teen', u'burn', u'caravan', u'blaze']
[u'telstra', u'takeov', u'fail', u'analyst']
[u'treat', u'drug', u'overdos', u'melbourn', u'rave']
[u'dead', u'aristid', u'support', u'protest']
[u'union', u'push', u'ahead', u'forestri', u'claim']
[u'union', u'counsel', u'post', u'worker', u'anthrax', u'scare']
[u'govt', u'region', u'tourism', u'websit']
[u'premier', u'encourag', u'trade', u'middl', u'east', u'tour']
[u'virgin', u'question', u'viabil', u'challeng']
[u'wagin', u'get', u'young', u'farmer', u'honour']
[u'govt', u'consid', u'work', u'hour', u'report']
[u'wanganeen', u'keen', u'crow']
[u'polic', u'arrest', u'cannabi', u'haul']
[u'webber', u'frustrat', u'aust', u'failur']
[u'wit', u'seek', u'townsvill', u'crash']
[u'women', u'group', u'welcom', u'industri', u'review']
[u'wrangl', u'continu', u'sugar', u'industri', u'woe']
[u'yemeni', u'journalist', u'trial', u'fals', u'inform']
[u'young', u'penguin', u'starv', u'earli', u'breed', u'season']
[u'abbott', u'meet', u'senat', u'medicar']
[u'govt', u'trade', u'blow']
[u'refus', u'male', u'teacher', u'plan']
[u'focus', u'polici', u'address', u'doctor', u'woe']
[u'anim', u'protect', u'group', u'launch', u'global', u'anti']
[u'aristid', u'leav', u'haiti', u'say']
[u'aristid', u'franc', u'kidnap']
[u'atsic', u'leader', u'back', u'maximum', u'penalti', u'wine']
[u'audienc', u'passion', u'gibson', u'passion']
[u'audit', u'reveal', u'greenhous', u'target', u'shortfal']
[u'aussi', u'netbal', u'sink', u'south', u'africa']
[u'aust', u'nomin', u'analyst']
[u'backyard', u'rubbish', u'attract', u'fin']
[u'bank', u'push', u'ord', u'record', u'high']
[u'barnett', u'plan', u'privatis', u'western', u'power']
[u'bartel', u'clear', u'preseason', u'final']
[u'bashir', u'sentenc', u'disappoint', u'downer']
[u'bashir', u'jail', u'term', u'halv']
[u'beagl', u'chief', u'doubt', u'bright', u'spot', u'mar', u'hunt']
[u'beatti', u'announc', u'crime', u'prevent', u'group']
[u'boati', u'wave', u'review', u'consult']
[u'bodi', u'miss', u'actor', u'spald', u'gray', u'identifi']
[u'brain', u'differ', u'see', u'sheep']
[u'braveri', u'award', u'winner']
[u'breakaway', u'tamil', u'tiger', u'reject', u'amnesti', u'offer']
[u'british', u'famili', u'push', u'releas', u'guantanamo']
[u'british', u'polic', u'play', u'digit']
[u'bulldog', u'secret', u'player', u'payment', u'court', u'hear']
[u'bull', u'leav', u'final', u'option', u'open']
[u'bull', u'leav', u'option', u'open', u'final']
[u'bushfir', u'spark', u'riverland', u'blackout']
[u'busi', u'cautious', u'consum', u'spend', u'slow']
[u'cairn', u'pollock', u'head', u'elit', u'club']
[u'california', u'offer', u'student', u'vote']
[u'greater', u'educ', u'fund', u'equiti']
[u'region', u'freight', u'rout', u'boost']
[u'boost', u'fund', u'age', u'care', u'feder']
[u'candid', u'council', u'insight']
[u'capriati', u'pull', u'indian', u'well']
[u'carter', u'holt', u'harvey', u'worker', u'await', u'boost']
[u'chief', u'prop', u'suspend', u'spencer', u'tackl']
[u'china', u'arrest', u'underground', u'bishop']
[u'china', u'press', u'lift', u'arm', u'embargo']
[u'citi', u'countri', u'split', u'rebat', u'unfair']
[u'claim', u'youth', u'program', u'ignor', u'countri', u'area']
[u'classic', u'car', u'tour', u'tasmania']
[u'competitor', u'test', u'endur', u'break', u'hill']
[u'glitch', u'close']
[u'concern', u'park', u'handov', u'public', u'access']
[u'conrad', u'black', u'oust', u'telegraph', u'group']
[u'council', u'staff', u'resid', u'abus']
[u'council', u'look', u'build', u'surveyor']
[u'council', u'urg', u'fight', u'power', u'station']
[u'courtney', u'love', u'face', u'misdemeanor', u'charg']
[u'decid', u'rais', u'fee']
[u'deadlin', u'comment', u'indigen', u'land']
[u'dead', u'penguin', u'valuabl', u'research']
[u'detox', u'centr', u'propon', u'reject', u'claim']
[u'dilshan', u'centuri', u'put', u'lanka', u'control']
[u'drug', u'traffick', u'receiv', u'life', u'sentenc']
[u'eal', u'mentor', u'olymp', u'basketbal']
[u'economist', u'predict', u'signific', u'rate', u'rise']
[u'timor', u'deni', u'briberi', u'alleg']
[u'exercis', u'treat', u'chest', u'pain', u'free', u'studi']
[u'expect', u'mum', u'babi', u'mozart']
[u'facelift', u'plan', u'road', u'entranc', u'wollongong']
[u'fall', u'domest', u'wine', u'sale', u'unsurpris']
[u'femal', u'politician', u'provid', u'reason', u'rhyme']
[u'firebomb', u'racial', u'motiv', u'court', u'tell']
[u'restrict', u'remain']
[u'brit', u'leav', u'guantanamo', u'hour']
[u'footbal', u'club', u'enjoy', u'rock', u'concert', u'profit']
[u'fund', u'industri', u'estat']
[u'gaze', u'name', u'star', u'combat']
[u'highlight', u'australia', u'role', u'south', u'east', u'asia']
[u'govt', u'deni', u'ignor', u'rural', u'aborigin', u'need']
[u'green', u'reject', u'migrat', u'amend']
[u'grenad', u'attack', u'suspect', u'terrorist']
[u'grower', u'applaud', u'senat', u'inquiri', u'appl', u'import']
[u'hickss', u'lawyer', u'welcom', u'prison', u'decis']
[u'high', u'fli', u'arsenal', u'euro', u'test']
[u'hollywood', u'golden', u'star', u'franc', u'die', u'age']
[u'holyfield', u'set', u'high']
[u'hospit', u'say', u'servic', u'spark', u'deficit']
[u'hunt', u'youngest', u'bronco']
[u'import', u'ban', u'strand', u'australia', u'bind', u'stud']
[u'impound', u'plane', u'take', u'south', u'africa']
[u'industri', u'recommend', u'render', u'plant']
[u'industri', u'welcom', u'plan', u'boost', u'satellit', u'phone']
[u'inquiri', u'probe', u'draft', u'rural', u'land', u'plan']
[u'iraq', u'constitut', u'mileston', u'downer']
[u'order', u'halt', u'sack']
[u'isra', u'await', u'extradit', u'hear']
[u'surg', u'month', u'high']
[u'bulldog', u'urg', u'come', u'forward']
[u'knowl', u'council', u'hold', u'water', u'talk']
[u'labor', u'call', u'better', u'protect', u'super', u'nestegg']
[u'lawyer', u'sue', u'hanson', u'case', u'fee']
[u'legal', u'action', u'possibl', u'homemak', u'centr', u'snub']
[u'leicest', u'manag', u'stay', u'trio', u'remain', u'prison']
[u'libya', u'respons', u'west', u'africa', u'war']
[u'turnout', u'wast', u'precinct', u'forum']
[u'lpga', u'player', u'championship', u'cancel']
[u'madagascar', u'call', u'cyclon', u'ravag', u'north']
[u'hospit', u'coledal', u'crash']
[u'jail', u'shop', u'centr', u'crash']
[u'plead', u'guilti', u'daughter', u'crime']
[u'court', u'shepparton', u'assault']
[u'mater', u'wait', u'tender', u'invit']
[u'mayor', u'welcom', u'rocki', u'parliament']
[u'mayor', u'worri', u'sugar', u'deal', u'polit']
[u'mcgradi', u'welcom', u'northern', u'allianc']
[u'meatwork', u'undergo', u'revamp']
[u'michelangelo', u'david', u'weak', u'ankl', u'need', u'scan']
[u'mildura', u'sharehold', u'await', u'clarif']
[u'group', u'ponder', u'bowler', u'have', u'develop']
[u'minist', u'applaud', u'druitt', u'school', u'result']
[u'miss', u'angler', u'prompt', u'rock', u'fish', u'warn']
[u'jockey', u'need', u'patrick', u'race', u'meet']
[u'life', u'leav', u'current', u'toxic', u'wast', u'dump', u'nat']
[u'peopl', u'face', u'court', u'bash']
[u'moteli', u'cash', u'long', u'weekend']
[u'question', u'elig', u'criteria', u'patient']
[u'want', u'royal', u'commiss', u'iraq']
[u'murali', u'happi', u'aussi', u'attack']
[u'museum', u'appeal', u'televis', u'memorabilia']
[u'nat', u'question', u'govt', u'youth', u'scheme']
[u'neram', u'director', u'move']
[u'director', u'appoint', u'actcoss']
[u'fund', u'expand', u'broadcast']
[u'kill', u'wound', u'venezuelan', u'protest']
[u'cricket', u'boss', u'criticis', u'katich', u'omiss']
[u'rail', u'worker', u'return', u'work']
[u'prepar', u'east', u'timor', u'crisi']
[u'opal', u'coach', u'ponder', u'club', u'futur']
[u'opposit', u'block', u'construct', u'law', u'corbel']
[u'orford', u'career', u'remain', u'limbo']
[u'oyster', u'grower', u'highlight', u'siltat', u'worri']
[u'pakistan', u'test', u'nuclear', u'capabl', u'missil']
[u'palestinian', u'push', u'peac', u'british']
[u'parliament', u'cost', u'despit', u'cut', u'hid']
[u'pie', u'elect', u'woman', u'board']
[u'pilot', u'prais', u'avoid', u'tragedi']
[u'plantat', u'group', u'grow', u'record', u'sale', u'result']
[u'keep', u'newspol', u'perspect']
[u'polic', u'action', u'prais', u'danc', u'parti', u'drug', u'incid']
[u'polic', u'bulldog', u'come', u'forward']
[u'polic', u'complet', u'brief', u'evid', u'model', u'death']
[u'polic', u'consid', u'fire', u'suspici']
[u'polic', u'hunt', u'teen', u'assault']
[u'policeman', u'await', u'drug', u'charg', u'rule']
[u'polic', u'probe', u'coffe', u'machin', u'theft']
[u'polic', u'probe', u'pedestrian', u'death', u'road', u'accid']
[u'poor', u'figur', u'dollar']
[u'popul', u'growth', u'predict', u'bring', u'bland', u'shire']
[u'postal', u'vote', u'begin', u'council', u'poll']
[u'power', u'author', u'deni', u'anti', u'competit', u'behaviour']
[u'prevent', u'death', u'renew', u'health', u'inquiri', u'call']
[u'probe', u'continu', u'fatal', u'glider', u'crash']
[u'public', u'get', u'chanc', u'join', u'airlin', u'advisori', u'board']
[u'investor', u'snap', u'gold', u'coast', u'apart']
[u'opposit', u'say', u'time', u'refocus']
[u'question', u'rais', u'lose', u'local', u'newspap']
[u'raider', u'mclinden', u'half']
[u'ralf', u'close', u'renault', u'deal', u'manag']
[u'receiv', u'appoint', u'troubl', u'golf', u'resort']
[u'redfern', u'polic', u'arrest', u'alleg', u'bagsnatch']
[u'red', u'throw', u'rooki', u'deep']
[u'rememb', u'tampa', u'latham', u'warn']
[u'research', u'bring', u'hope', u'post', u'cancer', u'fertil']
[u'resort', u'financi', u'woe', u'forc', u'cancel', u'lpga']
[u'restaur', u'injuri', u'put', u'dali', u'event']
[u'road', u'death', u'ignit', u'speed', u'camera', u'debat']
[u'rower', u'appeal', u'olymp', u'omiss']
[u'polic', u'suspect', u'arson', u'tree', u'hill']
[u'face', u'mimin', u'addit', u'health', u'risk']
[u'scientist', u'ponder', u'reef', u'pollut']
[u'senat', u'blast', u'failur', u'tackl', u'indigen']
[u'senat', u'examin', u'dental', u'cover', u'medicar', u'talk']
[u'senat', u'grand', u'prix', u'tobacco']
[u'abus', u'claim', u'close', u'juvenil', u'bail', u'facil']
[u'sexual', u'abus', u'claim', u'trigger', u'bail', u'review']
[u'simpson', u'get', u'shadow', u'road', u'transport', u'portfolio']
[u'joh', u'famili', u'fight', u'compens']
[u'korean', u'presid', u'face', u'impeach']
[u'sponsor', u'dump', u'dog']
[u'sponsor', u'dump', u'dog', u'polic', u'probe', u'continu']
[u'state', u'accc', u'join', u'high', u'court', u'challeng']
[u'strong', u'job', u'growth', u'trigger', u'wage', u'concern']
[u'student', u'lose', u'scholarship', u'mum', u'religion']
[u'student', u'meningococc', u'needl']
[u'studi', u'identifi', u'state', u'disadvantag', u'area']
[u'studi', u'help', u'preserv', u'kosciuszko', u'hut']
[u'studi', u'uncov', u'uniqu', u'qualiti', u'primat', u'brain']
[u'support', u'better', u'wheel', u'bike', u'safeti']
[u'support', u'goonellabah', u'hour', u'polic', u'station']
[u'survey', u'highlight', u'post', u'natal', u'depress', u'woe']
[u'survey', u'show', u'partial', u'busi', u'recoveri']
[u'tasmanian', u'export', u'capitalis', u'royal', u'wed']
[u'chang', u'inevit', u'labor']
[u'teacher', u'march', u'protest']
[u'teen', u'die', u'maryborough', u'road', u'crash']
[u'telstra', u'donat', u'favour', u'coalit']
[u'telstra', u'sale', u'destin', u'defeat']
[u'thompson', u'name', u'dragon', u'bench']
[u'thorp', u'drop']
[u'thousand', u'flee', u'flood']
[u'road', u'accid']
[u'miss', u'diver', u'safe']
[u'cleric', u'maintain', u'doubt', u'iraq', u'constitut']
[u'tourism', u'chief', u'air', u'budget', u'airlin', u'fear']
[u'tourism', u'oper', u'fight', u'kakadu', u'fall', u'closur']
[u'toyota', u'spotlight']
[u'travel', u'toad', u'rais', u'concern']
[u'trial', u'hear', u'dog', u'disagr', u'murder']
[u'trial', u'jazeera', u'journalist', u'postpon']
[u'charg', u'illeg', u'shellfish', u'catch']
[u'court', u'protest', u'visit']
[u'uefa', u'appeal', u'kean']
[u'relat', u'protest', u'guantanamo', u'jail']
[u'unauthoris', u'research', u'earn', u'doctor', u'stern', u'reprimand']
[u'chief', u'push', u'fund', u'boost']
[u'union', u'stage', u'strike']
[u'unit', u'block', u'arsenal', u'path', u'histori']
[u'defend', u'israel', u'militari', u'oper', u'gaza']
[u'iran', u'clash', u'open', u'nuclear', u'review']
[u'seek', u'haitian', u'prime', u'minist']
[u'send', u'acoust', u'weapon', u'iraq']
[u'vanston', u'appoint', u'auditor', u'indigen', u'bodi']
[u'viagra', u'safe', u'heart', u'diseas']
[u'govt', u'obstetrician', u'resign']
[u'public', u'servant', u'wage', u'rise']
[u'cabinet', u'assess', u'coral', u'plan']
[u'webck', u'life', u'member']
[u'william', u'hold', u'deadlin', u'talk', u'ralf']
[u'woman', u'death', u'blame', u'fail', u'health']
[u'women', u'bear', u'brunt', u'aid', u'epidem']
[u'worksaf', u'investig', u'pipe', u'explos']
[u'youth', u'charg', u'multipl', u'burglari']
[u'zimbabw', u'meet', u'agenda']
[u'achill', u'lauro', u'mastermind', u'die', u'custodi']
[u'actor', u'paul', u'winfield', u'dead']
[u'albani', u'gear', u'region', u'parliament']
[u'alinta', u'power', u'electr', u'sale']
[u'ord', u'paus', u'breath']
[u'welcom', u'part', u'medicar', u'deal']
[u'armi', u'chief', u'spell', u'benefit', u'tank']
[u'austeel', u'send', u'offshor']
[u'aust', u'nuclear', u'export', u'iran', u'misus', u'downer']
[u'australia', u'fight', u'lanka']
[u'award', u'featur', u'world', u'champ', u'pole', u'vaulter']
[u'beatti', u'hire', u'sack', u'media', u'advis']
[u'gun', u'fail', u'champion', u'leagu']
[u'blignaut', u'late', u'withdraw', u'zimbabw']
[u'blue', u'slap', u'fevola', u'match']
[u'bogus', u'iraqi', u'polic', u'kill', u'civilian', u'interpret']
[u'bouncer', u'accus', u'hook', u'case', u'face', u'separ']
[u'bowler', u'desir', u'develop', u'minist']
[u'britain', u'approv', u'farm', u'maiz', u'crop']
[u'bulldog', u'chairman', u'doubt', u'seventh', u'player', u'exist']
[u'bulldog', u'chief', u'lay']
[u'bulldog', u'chief', u'lay', u'polic', u'probe']
[u'bulldog', u'lose', u'sponsorship', u'deal']
[u'bulldog', u'uncertain', u'mysteri', u'seventh', u'player']
[u'burst', u'water', u'pipe', u'flood', u'queen', u'build']
[u'bushrang', u'season', u'style']
[u'bush', u'answer', u'sept', u'commiss', u'question']
[u'cairn', u'mayor', u'candid', u'race']
[u'public', u'pipelin', u'support']
[u'royal', u'commiss', u'alleg', u'polic']
[u'canegrow', u'ant', u'sugar', u'deal']
[u'carr', u'will', u'talk', u'hospit', u'hand']
[u'central', u'citi', u'backdrop', u'short', u'film']
[u'child', u'care', u'servic', u'get', u'high', u'mark']
[u'child', u'murder', u'releas', u'japan', u'prison']
[u'china', u'jail', u'editor', u'richest', u'paper', u'group']
[u'china', u'lift', u'foreign', u'film', u'invest']
[u'claim', u'hospit', u'takeov', u'plan', u'elect', u'stunt']
[u'committe', u'decid', u'food', u'crop']
[u'concern', u'gun', u'audit', u'distract', u'polic']
[u'consum', u'confid', u'slide']
[u'costello', u'urg', u'rule', u'leadership', u'challeng']
[u'council', u'attack', u'qanta', u'jetstar', u'decis']
[u'council', u'back', u'meet', u'push', u'polic']
[u'council', u'chief', u'urg', u'fiji', u'address', u'aid', u'threat']
[u'council', u'consid', u'east', u'point', u'project', u'chang']
[u'council', u'green', u'centr', u'discuss', u'land', u'develop']
[u'councillor', u'seek', u'freight', u'rail', u'revamp']
[u'council', u'discuss', u'feder', u'elect', u'issu']
[u'council', u'want', u'lighthous', u'platform', u'retain']
[u'crime', u'commiss', u'join', u'underworld', u'murder']
[u'crown', u'request', u'creat', u'secur', u'issu', u'high']
[u'cultur', u'divers', u'submiss', u'hear']
[u'dairi', u'farmer', u'continu', u'face', u'tough', u'time']
[u'dalrympl', u'set', u'sight', u'return']
[u'democrat', u'renew', u'call', u'hick', u'habib', u'releas']
[u'democrat', u'senat', u'push', u'stop', u'tobacco']
[u'deploy', u'australia', u'polic', u'hit', u'snag']
[u'doctor', u'hospit', u'hand', u'plan']
[u'doctor', u'divid', u'public', u'hospit', u'plan']
[u'doolan', u'tucson', u'defenc']
[u'doubt', u'cast', u'consum', u'tenanc', u'advic', u'servic']
[u'downer', u'downplay', u'leadership', u'talk', u'damag']
[u'driver', u'die', u'picton', u'crash']
[u'drop', u'caus', u'concern']
[u'drug', u'bust', u'uncov', u'marijuana', u'plant']
[u'polic', u'unattract', u'union']
[u'eden', u'higlight', u'social', u'disadvantag', u'studi']
[u'eel', u'wont', u'chanc', u'sledg', u'bulldog']
[u'elliott', u'hodg', u'domest', u'award']
[u'explos', u'kill', u'turkey']
[u'resist', u'temptat', u'shift', u'boom', u'semi']
[u'farmer', u'consid', u'spray', u'drift', u'problem']
[u'farmer', u'group', u'sue', u'govt', u'groundwat']
[u'fast', u'food', u'loom', u'main', u'health', u'threat']
[u'fear', u'illeg', u'turtl', u'destroy', u'nativ', u'wildlif']
[u'ferdinand', u'unit', u'loss', u'eriksson']
[u'bear', u'guilti', u'field']
[u'drug', u'squad', u'boss', u'stand', u'trial']
[u'forum', u'urg', u'healthi', u'debat']
[u'kill', u'injur', u'indonesian', u'riot']
[u'fring', u'dweller', u'forum', u'head', u'goldfield']
[u'gallop', u'reject', u'hospit', u'handov', u'plan']
[u'ganguli', u'promis', u'success', u'pakistan']
[u'gilchrist', u'admit', u'condit', u'tough']
[u'gold', u'coast', u'water', u'pipelin']
[u'goorjan', u'deni', u'bullet', u'bulli']
[u'govt', u'announc', u'tank', u'deal']
[u'govt', u'blame', u'region', u'polic', u'shortag']
[u'govt', u'face', u'resist', u'teacher', u'plan']
[u'govt', u'plan', u'tank']
[u'govt', u'seek', u'free', u'trade', u'deal', u'comment']
[u'grain', u'grower', u'upbeat', u'season']
[u'haiti', u'name']
[u'hewitt', u'seek', u'trick', u'california']
[u'hick', u'militari', u'lawyer', u'meet']
[u'high', u'court', u'deni', u'close', u'proceed', u'appeal']
[u'histor', u'hous', u'list', u'heritag', u'regist']
[u'hotel', u'trade', u'weekend', u'fight']
[u'household', u'react', u'rat', u'forecast']
[u'hubbl', u'provid', u'insight', u'univers']
[u'hubbl', u'show', u'ultra', u'deep', u'vision', u'cosmic', u'infanc']
[u'hurst', u'help', u'tugun', u'lifesav', u'champ', u'relay']
[u'husband', u'say', u'excus', u'wife', u'death']
[u'street', u'hawker', u'berlusconi']
[u'indonesia', u'commit', u'anti', u'terror', u'fight', u'despit']
[u'indonesian', u'troop', u'sink', u'thai', u'fish', u'boat']
[u'indonesia', u'help', u'process', u'ashmor', u'arriv']
[u'iran', u'threaten', u'nuclear', u'watchdog']
[u'isra', u'palestinian', u'meet']
[u'ladi', u'sing', u'london', u'opera']
[u'cut', u'health', u'servic']
[u'job', u'see', u'crucial', u'address', u'social', u'woe']
[u'judg', u'send', u'white', u'strip', u'frontman', u'anger', u'class']
[u'kalli', u'hit', u'protea', u'prosper']
[u'kerri', u'sweep', u'southern', u'state', u'democrat']
[u'knife', u'bandit', u'suspend', u'jail', u'term']
[u'knight', u'kennedi', u'parson', u'join', u'panther', u'clash']
[u'knight', u'kennedi', u'parson']
[u'knuth', u'draw', u'experi', u'disabl']
[u'kuerten', u'opt', u'davi']
[u'labor', u'pledg', u'action', u'poverti']
[u'labor', u'say', u'tank', u'thank', u'govt', u'upgrad', u'plan']
[u'lawyer', u'tell', u'beatti', u'respect']
[u'leagu', u'need', u'central', u'coast', u'team']
[u'send', u'home', u'kasprowicz', u'struggl']
[u'lee', u'reject', u'male', u'teacher', u'scholarship', u'plan']
[u'leicest', u'player', u'remain', u'jail', u'pend', u'court']
[u'leicest', u'trio', u'face', u'court', u'week']
[u'lift', u'beef', u'boost', u'australian']
[u'local', u'support', u'detox', u'centr']
[u'locust', u'outbreak', u'prompt', u'farmer', u'warn']
[u'male', u'teacher', u'plan', u'offens', u'women', u'union', u'say']
[u'mall', u'woe', u'spark', u'restrict', u'metho', u'sale']
[u'accus', u'polic', u'stand', u'get', u'bail']
[u'land', u'fine', u'hand']
[u'court', u'sign', u'theft']
[u'martin', u'say', u'ghan', u'complaint', u'teeth', u'problem']
[u'mater', u'begin', u'revamp']
[u'matern', u'servic', u'stay', u'belmont', u'hospit']
[u'mayor', u'cast', u'doubt', u'needi', u'town', u'studi']
[u'mayor', u'unhappi', u'barmedman', u'top', u'needi', u'town']
[u'mayor', u'unhappi', u'delay', u'council', u'wharf', u'stanc']
[u'medicar', u'deal', u'get', u'green', u'light']
[u'meet', u'focus', u'hospit', u'age', u'care', u'crisi']
[u'mental', u'health', u'nurs', u'strike']
[u'minist', u'defend', u'action', u'stop', u'indigen']
[u'minist', u'reject', u'nuclear', u'wast', u'transport', u'claim']
[u'rain', u'need', u'grain', u'crop']
[u'confid', u'live', u'export', u'trade', u'support']
[u'refus', u'bend', u'banana', u'import']
[u'propos', u'public', u'hospit', u'grab']
[u'nemeth', u'strike', u'sink', u'spur']
[u'greek', u'cabinet', u'swear']
[u'hope', u'morgan', u'john', u'servic']
[u'need', u'chang', u'discrimin', u'law', u'gallop']
[u'noosa', u'sand', u'pump', u'begin']
[u'need', u'central', u'coast', u'team']
[u'govt', u'buy', u'rise', u'opposit']
[u'govt', u'consid', u'fairer', u'patient', u'travel', u'support']
[u'minist', u'say', u'snowbal', u'hospit', u'hand']
[u'scientist', u'develop', u'miniatur', u'heartbeat', u'monitor']
[u'opposit', u'stanc', u'missil', u'defenc', u'bizarr']
[u'passion', u'take', u'kyli', u'rear', u'heart', u'mind']
[u'play', u'hospit', u'takeov', u'talk']
[u'polic', u'charg', u'redfern', u'riot']
[u'polic', u'look', u'suspect', u'involv', u'ramraid']
[u'polic', u'probe', u'drink', u'spike', u'assault', u'claim']
[u'polic', u'seiz', u'car', u'organis', u'crime', u'crackdown']
[u'polic', u'interview', u'children', u'grass', u'fire']
[u'polic', u'warn', u'fraud', u'scam', u'internet', u'auction', u'site']
[u'power', u'plan', u'detail', u'wind']
[u'produc', u'stock', u'scheme', u'concern']
[u'promis', u'open', u'probe', u'rural', u'zone', u'blueprint']
[u'psychologist', u'plead', u'guilti', u'child', u'assault']
[u'public', u'urg', u'tennant', u'creek', u'dengu', u'hotlin']
[u'quarter', u'export', u'earn', u'rise', u'abar']
[u'radcliff', u'world', u'cross', u'countri']
[u'razorback', u'sign', u'skipper']
[u'renegad', u'rebel', u'say', u'tiger', u'want']
[u'reward', u'offer', u'help', u'solv', u'underworld', u'murder']
[u'robinson', u'stake', u'olymp', u'claim']
[u'rural', u'press', u'review', u'tasmania', u'communiti']
[u'rusedski', u'clear', u'dope', u'offenc', u'report']
[u'saint', u'rooki', u'chanc', u'cat', u'challeng']
[u'sale', u'slump', u'stop', u'singl', u'chart', u'portug']
[u'public', u'servant', u'stage', u'hour', u'strike']
[u'serbia', u'major', u'crime', u'trial', u'open']
[u'abus', u'claim', u'wont', u'affect', u'bail', u'centr']
[u'shirvo', u'upbeat', u'olymp', u'chanc']
[u'shock', u'fergi', u'rue', u'unit', u'luck']
[u'siouxsi', u'banshe', u'die', u'age']
[u'postal', u'worker', u'job', u'notic', u'walkout']
[u'sorenstam', u'set', u'sight', u'sorenslam']
[u'south', u'africa', u'urg', u'increas', u'pressur', u'zimbabw']
[u'springbock', u'lock', u'clear', u'racism']
[u'storm', u'farmer', u'disast', u'relief']
[u'studi', u'examin', u'effect', u'bush', u'camp']
[u'suicid', u'bomb', u'blast', u'kill', u'istanbul', u'report']
[u'tariff', u'cut', u'aussi', u'beef', u'japan']
[u'govt', u'accus', u'sit', u'environment', u'booti']
[u'govt', u'lukewarm', u'public', u'hospit', u'propos']
[u'task', u'forc', u'chief', u'upbeat', u'emerg', u'commiss']
[u'telemovi', u'focus', u'alic', u'spring']
[u'famili', u'court', u'lawyer']
[u'tougher', u'safeti', u'law', u'backpack', u'hostel']
[u'townsvill', u'hospit', u'join', u'wait', u'list', u'campaign']
[u'promis', u'legal', u'access', u'guantanamo']
[u'terror', u'suspect', u'arrest', u'arriv', u'home']
[u'announc', u'indigen', u'student', u'scholarship']
[u'union', u'seek', u'wage', u'rise', u'battler']
[u'assassin', u'abba', u'palestinian', u'group']
[u'extrem', u'disappoint', u'bashir', u'prison', u'term']
[u'mortar', u'kill', u'civilian', u'blast', u'shake', u'baghdad']
[u'push', u'australian', u'free', u'trade', u'deal']
[u'consid', u'brisban', u'campus']
[u'senat', u'panel', u'move', u'curb', u'radio', u'indec']
[u'stock', u'fall']
[u'swimmer', u'confid', u'athen', u'secur']
[u'trade', u'chief', u'say', u'india', u'china', u'open', u'market']
[u'urg', u'australia', u'agre', u'fair', u'timor', u'deal']
[u'women', u'aggress', u'heart', u'treatment', u'studi']
[u'vandal', u'smash', u'cultur', u'precinct', u'window']
[u'sant', u'rock', u'day']
[u'warn', u'live', u'export']
[u'govt', u'slam', u'hospit', u'hand', u'plan']
[u'reject', u'medicar', u'packag']
[u'virgin', u'airlin', u'safe', u'despit', u'record', u'keep', u'issu']
[u'virgin', u'deni', u'airlin', u'mainten', u'practic', u'unsaf']
[u'mine', u'compani', u'join', u'london', u'exchang', u'market']
[u'plan', u'test', u'lower', u'high', u'school']
[u'wast', u'plant', u'get', u'evapor', u'pond', u'snub']
[u'west', u'indi', u'lose', u'smith', u'england', u'seri', u'open']
[u'woman', u'disappoint', u'oxygen', u'treatment', u'fund']
[u'woman', u'withdraw', u'money', u'murder', u'polic']
[u'women', u'enter', u'olymp', u'ring', u'beij']
[u'women', u'group', u'slam', u'dumb', u'male', u'teacher', u'plan']
[u'zimbabw', u'boycott', u'draw', u'massiv', u'fine']
[u'zimbabw', u'journalist', u'accus', u'join', u'plot']
[u'zimbabw', u'probe', u'mercenari', u'plane', u'continu']
[u'million', u'live', u'poverti', u'senat', u'report']
[u'activ', u'plan', u'reliev', u'bore', u'youth']
[u'adelaid', u'driver', u'plan', u'strike']
[u'airlin', u'chang', u'flight', u'time']
[u'alleg', u'sydney', u'shooter', u'refus', u'bail']
[u'alleg', u'toothfish', u'poacher', u'free', u'bail']
[u'anderson', u'put', u'bypass', u'issu', u'state', u'govt']
[u'atsic', u'challeng', u'govt', u'indigen', u'bodi']
[u'attack', u'underlin', u'threat', u'terror', u'blair']
[u'australian', u'beef', u'stringi', u'trade', u'head']
[u'australia', u'take', u'lead', u'final']
[u'autopsi', u'confirm', u'abba', u'die', u'natur', u'caus']
[u'babi', u'die', u'north', u'west', u'road', u'crash']
[u'banger', u'break', u'victori', u'drought']
[u'bashir', u'face', u'terror', u'trial', u'indonesian']
[u'basqu', u'separatist', u'parti', u'deni', u'respons']
[u'bat', u'sue', u'chelsea', u'breach', u'contract']
[u'benefit', u'flow', u'water', u'save', u'campaign']
[u'bulk', u'bill', u'boost', u'expect', u'medicar']
[u'borroloola', u'merchant', u'highway', u'restrict', u'push']
[u'brazil', u'davi', u'team', u'fall', u'apart', u'captain']
[u'british', u'guantanamo', u'inmat', u'walk', u'free']
[u'broule', u'arsonist', u'strike']
[u'busi', u'prove', u'cheap', u'australia']
[u'age', u'care', u'land', u'releas']
[u'camplin', u'cap', u'season', u'gold']
[u'canberra', u'galleri', u'staff', u'threaten', u'industri', u'action']
[u'cane', u'toad', u'darwin']
[u'carr', u'attack', u'fail', u'newcastl', u'steel']
[u'chamber', u'wont', u'return', u'track', u'agent']
[u'chang', u'allow', u'long', u'term', u'council', u'plan']
[u'china', u'bring', u'homemad', u'nuclear', u'power', u'plant', u'onlin']
[u'claim', u'group', u'footbal', u'cultur']
[u'cole', u'myer', u'record', u'profit']
[u'cole', u'myer', u'share', u'surg', u'record', u'profit']
[u'communiti', u'focus', u'youth', u'unemploy']
[u'consum', u'council', u'welcom', u'medicar', u'legisl']
[u'costello', u'fuel', u'leadership', u'debat']
[u'council', u'rethink', u'roundabout']
[u'court', u'find', u'brisban', u'pastor', u'guilti', u'abus']
[u'court', u'greenlight', u'pine', u'creek', u'landfil']
[u'czech', u'benesova', u'advanc', u'second', u'round', u'indian']
[u'danoz', u'pest', u'control', u'claim', u'mislead', u'accc']
[u'darwin', u'amphitheatr', u'extens']
[u'doberman', u'dope', u'claim', u'hit']
[u'doctor', u'associ', u'back', u'hospit', u'plan']
[u'doctor', u'group', u'welcom', u'medicar', u'deal']
[u'doctor', u'nurs', u'criticis', u'medicar', u'deal']
[u'doctor', u'stop', u'work', u'chaotic', u'servic']
[u'doubt', u'cast', u'council', u'elect']
[u'driver', u'rev', u'season']
[u'drug', u'price', u'rise', u'trade', u'deal']
[u'economist', u'predict', u'employ', u'growth']
[u'edwardian', u'exhibit', u'open', u'canberra']
[u'email', u'provid', u'spam']
[u'employ', u'figur', u'turn', u'heat', u'aussi', u'dollar']
[u'environ', u'centr', u'support', u'sydney', u'wast', u'water']
[u'extra', u'fund', u'avail', u'hostel']
[u'farmer', u'sue', u'govt', u'face', u'tough', u'fight']
[u'govt', u'state', u'school', u'fund']
[u'butcher', u'hand', u'england', u'test', u'boost']
[u'palestinian', u'shoot', u'dead', u'west', u'bank']
[u'forget', u'citi', u'lie', u'beneath', u'edinburgh', u'street']
[u'design', u'replac', u'ford', u'gucci']
[u'fuel', u'reduct', u'burn', u'plan', u'central']
[u'fund', u'rais', u'send', u'soccer', u'team', u'oversea']
[u'galleri', u'staff', u'strike', u'stall', u'negoti']
[u'georg', u'michael', u'post', u'song', u'onlin', u'free']
[u'goal', u'milic', u'play', u'pain']
[u'govt', u'seek', u'foster', u'care', u'servic', u'comment']
[u'govt', u'unveil', u'canberra', u'plan']
[u'greek', u'promis', u'athen', u'readi', u'game']
[u'green', u'group', u'form', u'natur', u'resourc', u'plan']
[u'gunner', u'champion', u'leagu', u'quarter']
[u'hanson', u'upset', u'blood', u'donat']
[u'hayden', u'ralli', u'australia', u'unbeaten', u'centuri']
[u'helicopt', u'search', u'north', u'pole']
[u'hepburn', u'mayor', u'seek', u'term']
[u'hewitt', u'reliev', u'rusedski']
[u'hickss', u'lawyer', u'meet', u'famili', u'friend']
[u'high', u'court', u'rule', u'panel', u'copyright', u'disput']
[u'high', u'hop', u'central', u'midland', u'strategi']
[u'high', u'hop', u'eden', u'despit', u'report']
[u'hitchhik', u'monkey', u'hang', u'ride']
[u'hobart', u'escap', u'convict', u'imperson']
[u'hous', u'afford']
[u'howard', u'goward', u'odd', u'male', u'teacher', u'plan']
[u'human', u'remain', u'contamin', u'canadian', u'pork']
[u'icpa', u'oppos', u'sale', u'telstra']
[u'india', u'arriv', u'pakistan', u'year', u'hiatus']
[u'indian', u'tell', u'cricket', u'heart']
[u'indonesia', u'arrest', u'alleg', u'peopl', u'smuggler']
[u'iran', u'accus', u'bulli']
[u'iran', u'urg', u'restart', u'nuclear', u'weapon', u'program']
[u'iraq', u'bring', u'dead', u'journalist', u'report']
[u'iraq', u'intellig', u'inquir']
[u'isra', u'troop', u'arrest', u'palestinian']
[u'jobless', u'rate', u'climb']
[u'kalgoorli', u'boulder', u'recognis', u'indigen', u'custodian']
[u'labor', u'urg', u'coalit', u'revolt', u'telstra']
[u'latham', u'seek', u'independ', u'speaker']
[u'lennon', u'smoke', u'free', u'bacon', u'quit']
[u'lib', u'nat', u'urg', u'fight', u'portfolio']
[u'libya', u'approv', u'snap', u'nuke', u'inspect']
[u'lismor', u'shop', u'centr', u'facelift']
[u'maher', u'confid', u'ahead', u'final']
[u'major', u'parti', u'accus', u'give']
[u'male', u'teacher', u'scholarship', u'send', u'wrong', u'messag']
[u'acquit', u'polic', u'assault', u'await', u'burglari']
[u'torch', u'impeach', u'block']
[u'martyn', u'lehmann', u'build', u'gall', u'lead']
[u'mayor', u'elect', u'focus', u'medium', u'term', u'plan']
[u'mayor', u'take', u'issu', u'needi', u'town', u'report']
[u'medicar', u'overhaul', u'pass', u'feder', u'parliament']
[u'minist', u'amend', u'rural', u'farm', u'zone', u'plan']
[u'minist', u'hear', u'mildura', u'campus']
[u'deliv', u'rail', u'servic', u'petit']
[u'want', u'polic', u'highway', u'patrol']
[u'need', u'excus', u'background', u'nois', u'avail']
[u'netbal', u'secur', u'seri', u'africa']
[u'financi', u'servic', u'regim', u'begin']
[u'greek', u'govt', u'vow', u'complet', u'olymp']
[u'nickel', u'reserv', u'sell', u'chines', u'firm']
[u'nicol', u'kidman', u'team', u'swing']
[u'govt', u'hunter', u'despit', u'austeel', u'pull']
[u'premier', u'defend', u'drink']
[u'studi', u'find', u'improv', u'cancer', u'treatment']
[u'orford', u'clear', u'blood', u'clot', u'fear']
[u'kill', u'madrid', u'rush', u'hour', u'blast']
[u'pain', u'lee', u'constant', u'companion']
[u'pair', u'charg', u'worker', u'murder']
[u'pakistan', u'accus', u'ignor', u'taliban', u'activ']
[u'palestinian', u'guerrilla', u'cell', u'break', u'israel']
[u'papp', u'lead', u'kiwi', u'repli']
[u'parri', u'busi', u'play', u'triumph']
[u'advisori', u'council', u'reject', u'turtl', u'accus']
[u'unveil', u'school', u'fund', u'boost']
[u'weigh', u'pakistan', u'wheat', u'disput']
[u'polic', u'happi', u'drug', u'phone', u'result']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'seiz', u'ecstasi', u'pill', u'worth']
[u'polic', u'support', u'stock', u'scheme']
[u'prison', u'attack', u'prompt', u'call', u'inquiri']
[u'review', u'health', u'servic', u'appoint']
[u'hard', u'medicar', u'reform', u'democrat']
[u'unmov', u'tugun', u'bypass', u'claim']
[u'rainforest', u'absorb', u'carbon', u'dioxid', u'studi']
[u'ralli', u'highlight', u'tafe', u'cut', u'dissatisfact']
[u'rebel', u'abstain', u'telstra', u'vote']
[u'report', u'find', u'problem', u'melbourn']
[u'research', u'closer', u'restor', u'femal', u'fertil']
[u'resid', u'ralli', u'rail', u'plan']
[u'reward', u'offer', u'tripl', u'slay']
[u'rural', u'doctor', u'group', u'see', u'medicar', u'deal', u'bush']
[u'rusedski', u'clear', u'dope', u'offenc']
[u'safeti', u'plan', u'call', u'redfern', u'renew']
[u'secur', u'guard', u'outnumb', u'fan', u'india', u'tour']
[u'senat', u'committe', u'releas', u'poverti', u'report']
[u'commission', u'criticis', u'male', u'teacher', u'plan']
[u'sharon', u'order', u'west', u'bank', u'barrier']
[u'shire', u'put', u'green', u'wast', u'good']
[u'sierra', u'leon', u'punish', u'crimin']
[u'korean', u'fighter', u'jet', u'collid', u'yellow']
[u'korean', u'leader', u'face', u'impeach']
[u'spain', u'suspend', u'elect', u'campaign', u'blast']
[u'state', u'union', u'reject', u'howard', u'school', u'packag']
[u'stock', u'market', u'close']
[u'super', u'industri', u'notic', u'improv', u'disclosur']
[u'switzerland', u'consid', u'curb', u'obes']
[u'tait', u'receiv', u'lanka']
[u'tait', u'shock', u'lanka']
[u'coastal', u'detox', u'centr', u'reopen']
[u'govt', u'urg', u'address', u'hous', u'shortag']
[u'oppn', u'seek', u'mental', u'health', u'probe']
[u'polic', u'deliv', u'west', u'coast', u'warn']
[u'teen', u'acquit', u'skate', u'park', u'charg']
[u'teenag', u'charg', u'concret', u'throw', u'incid']
[u'teenag', u'push', u'releas', u'child', u'detaine']
[u'telstra', u'sale', u'head', u'senat']
[u'tobacco', u'compani', u'releas', u'health', u'awar', u'scheme']
[u'iraqi', u'civilian', u'employe', u'shoot', u'dead']
[u'prais', u'libya', u'allow', u'nuclear', u'inspect']
[u'militari', u'clear', u'blame', u'afghan', u'strike']
[u'say', u'dead', u'afghan', u'raid', u'legitim']
[u'share', u'fall', u'record', u'trade', u'deficit']
[u'soldier', u'die', u'wound', u'bomb', u'attack']
[u'trade', u'hit', u'record', u'billion']
[u'vendi', u'unsur', u'contest', u'mayor', u'spot']
[u'mental', u'health', u'worker', u'reject', u'offer']
[u'continu', u'region', u'electr', u'subsidi']
[u'govt', u'put', u'pool', u'project']
[u'warn', u'say', u'pressur', u'lanka']
[u'washington', u'sniper', u'jail', u'life']
[u'wider', u'bulk', u'bill', u'certainti', u'abbott']
[u'winemak', u'market', u'push']
[u'work', u'shape', u'plaza', u'revamp']
[u'zimbabw', u'talk', u'death', u'penalti', u'mercenari']
[u'confirm', u'dead', u'madagascar', u'storm']
[u'academ', u'urg', u'caution', u'male', u'teacher', u'drive']
[u'accc', u'examin', u'telstra', u'broadband', u'respons']
[u'agassi', u'share', u'drug', u'fear']
[u'alic', u'race', u'challeng', u'cyclist']
[u'qaeda', u'claim', u'madrid', u'blast']
[u'anderson', u'talk', u'truck', u'industri']
[u'anti', u'terror', u'protest', u'mark', u'mourn', u'spain']
[u'aquacultur', u'scheme', u'use', u'salti', u'groundwat']
[u'aristid', u'visit', u'jamaica', u'week']
[u'arnberg', u'vic', u'roll']
[u'arson', u'think', u'rail', u'blaze']
[u'atsic', u'commission', u'critic', u'clark', u'legal', u'fund']
[u'atsic', u'commission', u'criticis', u'fund', u'arrrang']
[u'aurora', u'return', u'home', u'antarct']
[u'austeel', u'invest', u'wast', u'carr']
[u'australia', u'maintain', u'immun', u'stanc']
[u'australian', u'resolut', u'iranian', u'nuclear', u'program']
[u'australian', u'tell', u'madrid', u'horror']
[u'aust', u'women', u'thai', u'jail', u'transfer']
[u'bail', u'access', u'law', u'tighten']
[u'banana', u'grower', u'feder', u'fold']
[u'beatti', u'point', u'blame', u'author', u'wine']
[u'beef', u'produc', u'reject', u'critic']
[u'drink', u'parliament', u'inexcus', u'say']
[u'berridal', u'jail', u'callous', u'child', u'assault']
[u'black', u'open', u'rwanda', u'genocid', u'probe']
[u'blair', u'ahern', u'step', u'pace', u'ireland']
[u'bode', u'latest', u'pull', u'crow']
[u'brown', u'say', u'right', u'refus', u'immun', u'aust']
[u'bulldog', u'lose', u'school', u'event', u'wake', u'sexual']
[u'bull', u'send', u'bushrang']
[u'bushrang', u'charg', u'lunch']
[u'bushrang', u'steadi', u'start']
[u'bushrang', u'readi', u'bull', u'charg']
[u'greater', u'water', u'secur']
[u'address', u'riverina', u'poverti', u'woe']
[u'calm', u'float', u'safeti', u'devic']
[u'canada', u'pass', u'human', u'clone']
[u'cancer', u'council', u'claim', u'support', u'smoke']
[u'vehicl', u'suggest', u'sydney']
[u'centurion', u'smith', u'lead', u'west', u'indi', u'recoveri']
[u'chelsea', u'pois', u'beckham', u'report']
[u'chickenpox', u'put', u'ferrero', u'indian', u'well']
[u'china', u'block', u'chines', u'version', u'western', u'media']
[u'chines', u'acrobat', u'walk', u'fine', u'line', u'record']
[u'clark', u'defend', u'atsic', u'decis', u'pick', u'legal']
[u'clark', u'seek', u'appeal', u'rape', u'case']
[u'clark', u'win', u'right', u'appeal', u'rape', u'case']
[u'cloth', u'maker', u'outlin', u'trade', u'deal', u'woe']
[u'communiti', u'give', u'bash', u'victim', u'appeal']
[u'convict', u'front', u'court', u'fraud']
[u'copper', u'zinc', u'search', u'yilgarn']
[u'council', u'pass', u'develop', u'payment', u'plan']
[u'council', u'urg', u'rethink', u'tourism', u'contract']
[u'cowboy', u'confid', u'overcom', u'eagl']
[u'cowboy', u'look', u'season', u'open']
[u'cowper', u'lean', u'telstra', u'sale']
[u'driver', u'fin', u'school', u'zone']
[u'seuss', u'star', u'hollywood', u'walk', u'fame']
[u'guantanamo', u'inmat', u'denounc', u'captor']
[u'farmer', u'hear', u'push', u'crop']
[u'fear', u'legal', u'outsourc', u'hurt', u'rural', u'indigen']
[u'feder', u'fund', u'laverton', u'crisi', u'centr']
[u'feder', u'scheme', u'help', u'road', u'link']
[u'fergi', u'fit', u'pacemak']
[u'hitch', u'power', u'chang']
[u'finnish', u'granni', u'rock', u'health', u'studi']
[u'abattoir', u'worker', u'win', u'accid']
[u'nation', u'minist', u'air', u'doubt', u'parti']
[u'forum', u'focus', u'long', u'term', u'jobless', u'rate']
[u'face', u'drink', u'drive', u'charg']
[u'fund', u'seek', u'sport', u'revamp']
[u'germani', u'roesch', u'advanc', u'meet', u'clijster']
[u'ger', u'rebuild', u'mcleish', u'wield']
[u'access', u'import', u'grain', u'farmer', u'analyst']
[u'gold', u'coast', u'immun', u'poverti']
[u'good', u'ugli', u'brain', u'behold']
[u'govt', u'oppn', u'express', u'sympathi', u'spain', u'blast', u'victim']
[u'govt', u'school', u'fund', u'packag']
[u'govt', u'gutless', u'sack', u'clark']
[u'greec', u'stick', u'controversi', u'olymp', u'roof']
[u'grigorieva', u'book', u'adelaid', u'interclub', u'date']
[u'group', u'want', u'poverti', u'report', u'recommend']
[u'gun', u'explos', u'adelaid', u'childcar', u'centr']
[u'half', u'melbourn', u'waterway', u'sick', u'report']
[u'halliburton', u'pentagon', u'auditor']
[u'hawker', u'see', u'problem', u'region', u'telstra']
[u'head', u'roll', u'trade', u'scandal']
[u'hear', u'implant', u'maker', u'compani']
[u'hensbi', u'florida', u'event']
[u'hickss', u'lawyer', u'dismiss', u'pentagon', u'critic']
[u'high', u'court', u'reject', u'lappa', u'appeal', u'applic']
[u'hockey', u'player', u'ban', u'attack']
[u'hop', u'hospit', u'rescu', u'deal', u'wait', u'list']
[u'hous', u'afford', u'rise', u'region']
[u'howard', u'condemn', u'unforgiv', u'bomb']
[u'howard', u'pledg', u'testifi', u'iraq', u'inquiri']
[u'howard', u'practic', u'reconcili', u'failur']
[u'ilparpa', u'cross', u'microscop']
[u'imperi', u'elliott', u'put', u'vic', u'charg']
[u'india', u'suffer', u'loss', u'tour', u'open']
[u'indonesia', u'say', u'bashir', u'terrorist']
[u'industri', u'divis', u'help', u'rescu', u'deal', u'talk']
[u'inmat', u'guilti', u'prison', u'murder']
[u'israel', u'say', u'wont', u'raze', u'gaza', u'settlement']
[u'katter', u'stand', u'firm', u'telstra', u'sale', u'opposit']
[u'kelli', u'stand', u'telstra', u'sale', u'support']
[u'keyboard', u'phone', u'dirtier', u'toilet']
[u'knight', u'beat', u'panther', u'season', u'open']
[u'knight', u'predict', u'tough', u'panther', u'clash']
[u'land', u'shortag', u'slow', u'strong', u'hous', u'sector']
[u'lehmann', u'battl', u'emot', u'notch', u'centuri']
[u'lehmann', u'battl', u'emot', u'notch', u'centuri']
[u'leicest', u'focus', u'releg', u'woe']
[u'leicest', u'trio', u'grant', u'bail']
[u'lengthi', u'process', u'determin', u'wast', u'dump', u'sit']
[u'liddi', u'know', u'wine', u'report']
[u'liverpool', u'face', u'exit', u'newcastl', u'goal', u'crazi']
[u'madrid', u'blast', u'victim', u'countri']
[u'madrid', u'bomb', u'blast', u'rattl', u'world', u'market']
[u'arrest', u'chase']
[u'front', u'court', u'rebirth', u'raid']
[u'face', u'court', u'inner', u'sydney', u'murder']
[u'court', u'polic', u'chase']
[u'master', u'milan', u'look', u'pile', u'miseri', u'juve']
[u'matthew', u'stay', u'polic', u'chief']
[u'mayor', u'want', u'state', u'help', u'address', u'street', u'woe']
[u'mccullum', u'oram', u'inspir', u'kiwi', u'fight']
[u'mcewen', u'pull', u'pari', u'nice']
[u'meatwork', u'boost', u'casino', u'job']
[u'meet', u'generat', u'healthi', u'debat']
[u'merger', u'poll', u'vote', u'roll']
[u'middl', u'earth', u'plan', u'oscar', u'celebr']
[u'minist', u'applaud', u'teen', u'jail', u'term', u'assault']
[u'minist', u'seek', u'apolog', u'highway', u'patrol', u'comment']
[u'public', u'consult', u'seek', u'crop']
[u'back', u'health', u'servic', u'shake']
[u'say', u'highway', u'safeti', u'move']
[u'murder', u'probe', u'launch', u'taxi', u'driver', u'death']
[u'murder', u'prompt', u'call', u'improv', u'taxi', u'driver', u'safeti']
[u'museum', u'look', u'dino', u'tourism']
[u'board', u'escap', u'chop', u'rebuild', u'begin']
[u'gene', u'link', u'cancer']
[u'guidelin', u'boost', u'privat', u'school', u'admin']
[u'home', u'loan', u'applic', u'drop']
[u'detail', u'doctor', u'replac', u'cost']
[u'season', u'open', u'put', u'focus', u'footi']
[u'nrma', u'drive', u'campaign', u'highway', u'fund']
[u'olymp', u'organis', u'lose', u'offici']
[u'outsid', u'ruddock', u'wale', u'coach']
[u'panther', u'trail', u'knight', u'break']
[u'peak', u'hill', u'labour', u'deliv', u'babi']
[u'perilya', u'track', u'boost', u'product']
[u'perth', u'teen', u'jail', u'chines', u'restaur', u'attack']
[u'petroleum', u'compani', u'spend', u'explor']
[u'pig', u'chew', u'hawk', u'semi']
[u'question', u'atsic', u'futur']
[u'hunt', u'giant', u'mysteri', u'creatur']
[u'polic', u'probe', u'chinatown', u'bodi']
[u'polic', u'probe', u'highway', u'doubl', u'fatal']
[u'polic', u'probe', u'solomon', u'onlin', u'scam']
[u'polic', u'seek', u'taxi', u'murder']
[u'polic', u'seek', u'public', u'help', u'stop', u'drink', u'spike']
[u'pool', u'complex', u'address', u'nois', u'issu']
[u'predict', u'bigger', u'navel', u'crop']
[u'price', u'pace', u'qatar']
[u'proud', u'warn', u'revel', u'fairytal', u'comeback']
[u'lead', u'growth', u'figur']
[u'premier', u'accus', u'play', u'crass', u'polit']
[u'rail', u'worker', u'angri', u'vote', u'booz']
[u'rat', u'plan', u'spark', u'landown', u'concern']
[u'cross', u'defend', u'hanson', u'blood', u'donat', u'refus']
[u'red', u'seek', u'reveng', u'crusad', u'loss']
[u'red', u'trio', u'pass', u'fit', u'test']
[u'region', u'group', u'seek', u'govt', u'chang', u'boost']
[u'remot', u'teacher', u'incent']
[u'rescu', u'oper', u'underway', u'arafura']
[u'resid', u'dust', u'action', u'delay']
[u'restrict', u'area', u'like', u'duck', u'shooter']
[u'ridgeway', u'say', u'reconcili', u'complet', u'disast']
[u'rijkaard', u'prais', u'resili', u'barca']
[u'earli', u'water', u'restrict', u'manag']
[u'robot', u'repair', u'hubbl', u'telescop', u'nasa']
[u'roger', u'rule', u'stormer', u'clash']
[u'erupt', u'head', u'river']
[u'rusedski', u'readi', u'assign', u'blame']
[u'govt', u'back', u'dump', u'support', u'board', u'appoint']
[u'salvag', u'oper', u'spark', u'harbour', u'restrict']
[u'francisco', u'wed', u'halt', u'court']
[u'school', u'cancel', u'jambore', u'wake', u'bulldog', u'scandal']
[u'schultz', u'defend', u'telstra', u'sale', u'opposit']
[u'scientist', u'push', u'tiger', u'ecotour']
[u'secur', u'requir', u'brake', u'servic']
[u'senat', u'daughter', u'quiz', u'guantanamo', u'link']
[u'serbia', u'rememb', u'slay', u'djindjic']
[u'shark', u'edg', u'highland', u'thriller']
[u'sharon', u'popular', u'reach', u'time', u'poll']
[u'go', u'despit', u'madrid', u'bomb']
[u'korean', u'presid', u'apologis', u'impeach']
[u'korean', u'presid', u'impeach', u'peopl', u'protest']
[u'smith', u'brink', u'maiden', u'test', u'west']
[u'south', u'korea', u'vote', u'impeach', u'presid']
[u'spain', u'halt', u'silent', u'salut', u'victim']
[u'spain', u'pursu', u'lead', u'dead', u'blast']
[u'state', u'dishonest', u'school', u'fund']
[u'storm', u'director', u'quit', u'consult', u'role']
[u'streisand', u'screen', u'meet']
[u'sydney', u'hospit', u'inquiri', u'hear', u'corrupt']
[u'popul', u'grow', u'figur']
[u'teen', u'extradit', u'doubl', u'murder']
[u'terror', u'attack', u'stop', u'spanish', u'footbal']
[u'elliott', u'vic', u'cruis']
[u'tragic', u'health', u'bungl', u'lead', u'hospit', u'chang']
[u'dead', u'haiti', u'protest']
[u'soldier', u'kill', u'west', u'baghdad']
[u'union', u'air', u'fear', u'super', u'entitl']
[u'union', u'blast', u'opposit', u'delay', u'tactic']
[u'union', u'threaten', u'protest', u'delay', u'propos']
[u'unstabl', u'atsic', u'suit', u'govt', u'agenda', u'jona']
[u'alli', u'push', u'condemn', u'iran', u'nuke', u'program']
[u'firm', u'gain', u'billion', u'dollar', u'iraqi', u'contract']
[u'missil', u'defenc', u'inadequ', u'pentagon']
[u'predict', u'gain', u'aust', u'trade', u'deal']
[u'senat', u'pass', u'trillion', u'budget']
[u'power', u'station', u'sell', u'billion']
[u'virgin', u'blue', u'ponder', u'extra', u'rockhampton', u'flight']
[u'warn', u'close', u'mileston', u'lankan', u'crumbl']
[u'warn', u'make', u'histori', u'lanka']
[u'warn', u'master', u'imposs']
[u'water', u'deadlin', u'loom', u'council']
[u'weather', u'right', u'hazard', u'reduct', u'burn']
[u'there', u'shop']
[u'wise', u'give', u'kativerata', u'start']
[u'wool', u'buyer', u'surpris', u'bargain', u'bale']
[u'work', u'begin', u'transport', u'interchang']
[u'worker', u'magazin', u'go', u'commerci']
[u'countri', u'fail', u'counter', u'terror', u'oblig']
[u'journalist', u'quill']
[u'adelaid', u'brace', u'assault']
[u'adelaid', u'festiv', u'celebr', u'offic', u'success']
[u'anti', u'discrimin', u'law', u'fail', u'gay', u'activist']
[u'argentina', u'compens', u'dirti', u'children']
[u'arsenal', u'face', u'chelsea', u'champion', u'leagu']
[u'ashmor', u'detaine', u'return', u'indonesia']
[u'peopl', u'kill', u'chines', u'blast']
[u'audit', u'show', u'threaten', u'speci', u'tenac']
[u'babi', u'emerg', u'deliv', u'countri', u'health', u'critic']
[u'baggaley', u'book', u'ticket', u'athen']
[u'bail', u'leicest', u'trio', u'england']
[u'bankruptci', u'plan', u'strip', u'penthous', u'founder', u'role']
[u'beatti', u'say', u'polic', u'union', u'blame', u'wine']
[u'berger', u'write', u'william', u'challeng']
[u'black', u'cap', u'hold', u'upper', u'hand']
[u'bomb', u'victim', u'overwhelm', u'madrid', u'hospit']
[u'buck', u'stop', u'board']
[u'bulldog', u'blitz', u'rock', u'eel']
[u'bull', u'frustrat', u'middl', u'order']
[u'bull', u'twin', u'breakthrough']
[u'bumper', u'crowd', u'forecast', u'season', u'final']
[u'bush', u'prais', u'women', u'speech']
[u'butcher', u'hussain', u'england']
[u'govt', u'review', u'oxygen', u'suppli', u'polici']
[u'calm', u'sea', u'save', u'shipwreck', u'indonesian']
[u'canberra', u'ralli', u'rememb', u'madrid', u'victim']
[u'cancer', u'council', u'argu', u'stronger', u'smoke', u'ban']
[u'clijster', u'advanc', u'arthur', u'stosur']
[u'comeback', u'king', u'beat', u'bullet', u'game']
[u'court', u'dismiss', u'poacher', u'boat', u'appeal']
[u'court', u'reject', u'toothfish', u'vessel', u'seizur', u'appeal']
[u'davi', u'sacrific', u'worth', u'hewitt']
[u'demand', u'rise', u'inner', u'citi', u'live', u'canberra']
[u'dengu', u'fever', u'mosquito']
[u'diamond', u'face', u'striker', u'hockey', u'final']
[u'eagl', u'demon', u'blue', u'practic', u'match']
[u'eagl', u'hawk', u'practic', u'match']
[u'ebay', u'pull', u'women', u'sale']
[u'educ', u'minist', u'seek', u'fairer', u'fund']
[u'emerg', u'reach', u'cyclon', u'madagascar']
[u'deni', u'bomb', u'million', u'march']
[u'famili', u'rob', u'gunpoint', u'sydney', u'hotel']
[u'ferrari', u'domin', u'malaysia', u'barrichello']
[u'final', u'heartbreak', u'battl', u'striker']
[u'fortun', u'rule', u'rest', u'season']
[u'indian', u'soldier', u'islam', u'rebel', u'kill']
[u'hospit', u'bottl', u'explos']
[u'glori', u'coach', u'anticip', u'high', u'score', u'match']
[u'govt', u'rule', u'hamper', u'bali', u'flight']
[u'greec', u'request', u'nato', u'back', u'olymp', u'secur']
[u'grigorieva', u'fail', u'adelaid', u'qualifi']
[u'haitian', u'secur', u'chief', u'arrest', u'canada']
[u'haiti', u'fear', u'aristid', u'jamaica', u'visit']
[u'haiti', u'swear']
[u'happi', u'birthday']
[u'hodg', u'push']
[u'hotmail', u'user', u'log']
[u'hundr', u'teacher', u'march', u'better', u'deal']
[u'hurrican', u'blow', u'cat', u'away']
[u'impeach', u'confid', u'regain', u'offic']
[u'india', u'stop', u'pakistan', u'thriller']
[u'indonesian', u'troop', u'kill', u'papuan', u'separatist', u'leader']
[u'iran', u'blast', u'allow', u'nuclear', u'resolut']
[u'iran', u'postpon', u'nuclear', u'inspect']
[u'israel', u'tie', u'gaza', u'pullout', u'support']
[u'king', u'readi', u'hoop', u'bullet']
[u'late', u'man', u'charg', u'upset', u'cowboy']
[u'latham', u'lead', u'red', u'ballymor']
[u'latham', u'lead', u'red', u'stun']
[u'lawyer', u'attend', u'hick', u'inspir', u'fring']
[u'flirt', u'arizona']
[u'madrid', u'attack', u'analys', u'say', u'chief']
[u'major', u'oper', u'launch', u'trap', u'crime', u'suspect']
[u'die', u'vehicl', u'collis']
[u'kill', u'injur']
[u'megawati', u'accept', u'secur', u'minist', u'resign']
[u'melbourn', u'teenag', u'charg', u'taxi', u'murder']
[u'menchov', u'dedic', u'stage', u'madrid', u'victim']
[u'mercenari', u'expect', u'face', u'coup', u'charg']
[u'mice', u'sar', u'immun', u'possibl']
[u'million', u'march', u'bomb', u'mysteri', u'deepen']
[u'minist', u'question', u'school', u'save']
[u'monster', u'theron', u'stick', u'abus', u'charact']
[u'japanes', u'troop', u'leav', u'iraq']
[u'murder', u'charg', u'lay', u'mother', u'refus', u'caesarean']
[u'anti', u'terror', u'oper', u'begin', u'afghanistan']
[u'norman', u'disqualifi', u'florida']
[u'tell', u'commit', u'kakadu', u'advertis', u'fund']
[u'nuclear', u'dump', u'delay', u'troubl', u'howard']
[u'nuke', u'watchdog', u'approv', u'back', u'resolut', u'iran']
[u'nuke', u'watchdog', u'chief', u'like', u'meet', u'bush', u'week']
[u'odumb', u'face', u'match', u'fix', u'investig']
[u'pakistan', u'toss', u'india']
[u'pentagon', u'continu', u'award', u'iraq', u'contract']
[u'pettersson', u'open', u'shoot', u'lead', u'florida']
[u'philippin', u'tighten', u'secur', u'respons']
[u'philippin', u'vice', u'presid', u'side', u'opposit']
[u'polic', u'offic', u'charg', u'kidnap', u'sexual', u'assault']
[u'powel', u'deni', u'guantanamo', u'beat', u'claim']
[u'practic', u'win', u'lion', u'swan', u'crow']
[u'profit', u'question', u'abc', u'rat']
[u'protea', u'halt', u'slide', u'hamilton']
[u'punter', u'satisfi']
[u'safe', u'terror', u'say', u'premier']
[u'rawalpindi', u'express', u'rare', u'india']
[u'reactiv', u'approach', u'abus', u'harm', u'children']
[u'redfern', u'centr', u'bring', u'communiti']
[u'red', u'lead', u'blue', u'break']
[u'renew', u'energi', u'switch', u'barrier', u'growth']
[u'run', u'flow', u'bushrang', u'riot']
[u'saint', u'defend', u'hamil', u'ahead', u'decid']
[u'saint', u'thrill', u'pack', u'dockland']
[u'scotland', u'lamont']
[u'scot', u'play', u'australia', u'south', u'africa', u'japan']
[u'senat', u'investig', u'student', u'incom']
[u'grade', u'inquiri', u'lack', u'transpar']
[u'shark', u'backrow', u'winter', u'cite', u'danger', u'tackl']
[u'korea', u'discuss', u'impeach', u'militari']
[u'korean', u'reject', u'impeach', u'poll']
[u'soft', u'claw', u'cool', u'cat']
[u'spain', u'prepar', u'buri', u'dead', u'toll', u'hit']
[u'state', u'blame', u'school', u'fund', u'shortfal', u'nelson']
[u'storm', u'black', u'town']
[u'streak', u'rescu', u'zimbabw', u'seri']
[u'stuppl', u'grab', u'lead', u'arizona']
[u'thousand', u'gather', u'taiwan', u'opposit', u'ralli']
[u'thousand', u'march', u'protest', u'govt', u'forestri']
[u'tiger', u'lead', u'shark', u'break']
[u'tiger', u'upset', u'shark']
[u'lead', u'cannabi', u'haul']
[u'palestinian', u'kill', u'gaza', u'strip']
[u'soldier', u'kill', u'wound', u'northern']
[u'freez', u'asset', u'liberian', u'presid']
[u'boost', u'train', u'secur', u'madrid', u'bomb']
[u'current', u'account', u'deficit', u'hit', u'record', u'level']
[u'marin', u'kill', u'gunmen', u'haiti']
[u'prepar', u'afghanistan', u'mountain', u'storm']
[u'stock', u'recov', u'secur', u'fear', u'subsid']
[u'victori', u'surpris', u'tasmanian', u'year']
[u'videophon', u'translat', u'deaf', u'custom']
[u'walsh', u'back', u'warn']
[u'whitewash', u'prison', u'report', u'trigger', u'second', u'inquiri']
[u'wit', u'describ', u'madrid', u'train', u'bomber']
[u'woosnam', u'leader', u'qatar']
[u'zimbabw', u'execut', u'mercenari']
[u'kill', u'violent', u'syrian', u'protest']
[u'australian', u'honour', u'nation', u'live']
[u'bodi', u'california', u'home']
[u'abbott', u'defend', u'medicar', u'reform', u'campaign']
[u'adelaid', u'driver', u'stand', u'firm', u'plan', u'strike']
[u'qaeda', u'claim', u'madrid', u'attack']
[u'australia', u'mourn', u'spain', u'bomb', u'victim']
[u'australia', u'experi', u'terrorist', u'attack']
[u'author', u'deni', u'prison', u'riot', u'risdon', u'jail']
[u'beckham', u'dismiss', u'real', u'quit', u'rumour']
[u'black', u'cap', u'face', u'imposs', u'chase']
[u'bolivian', u'school', u'shout', u'wed']
[u'boy', u'girl', u'status']
[u'bronco', u'lead', u'warrior']
[u'bullet', u'fight', u'surviv', u'brisban']
[u'bull', u'chase']
[u'bush', u'defend', u'econom', u'polici']
[u'bushrang', u'cruis', u'bull', u'crumbl']
[u'bushrang', u'pass']
[u'extend', u'crop', u'moratorium']
[u'childcar', u'centr', u'receiv', u'urgent', u'repair', u'fund']
[u'china', u'enshrin', u'privat', u'properti']
[u'china', u'pass', u'budget', u'econom', u'plan']
[u'claim', u'govt', u'plan', u'nation', u'land']
[u'coalit', u'doubl', u'iraq', u'border', u'secur']
[u'communiti', u'turn', u'redfern', u'centr', u'open']
[u'controversi', u'tank', u'good', u'news']
[u'controversi', u'send', u'brumbi']
[u'costello', u'right', u'heir', u'howard', u'crown', u'abbott']
[u'counter', u'terror', u'bodi', u'review', u'transport', u'secur']
[u'star', u'netbal', u'sweep', u'south', u'africa']
[u'diamond', u'claim', u'hockey', u'final']
[u'doctor', u'fail', u'diagnos', u'fatal', u'meningococc', u'case']
[u'drop', u'springbok', u'south', u'african', u'tell']
[u'england', u'edg', u'ahead', u'roller', u'coaster', u'test']
[u'equatori', u'guinea', u'march', u'call', u'mercenari']
[u'prime', u'suspect', u'spanish', u'minist']
[u'repeat', u'denial', u'madrid', u'attack']
[u'ewamian', u'peopl', u'negoti', u'histor', u'farm', u'access']
[u'explos', u'prompt', u'cylind', u'warn']
[u'extra', u'fund', u'rural', u'specialist']
[u'boss', u'search', u'qualifi', u'chang']
[u'feather', u'injuri', u'blow', u'red']
[u'flood', u'close', u'highway']
[u'french', u'gunner', u'cours']
[u'georgia', u'edg', u'presid', u'refus', u'entri']
[u'goodwil', u'earn', u'neighbour', u'million']
[u'govt', u'plan', u'law', u'jail', u'internet', u'paedophil']
[u'guerrilla', u'attack', u'kill', u'soldier', u'baghdad']
[u'henin', u'hardenn', u'cruis', u'open', u'victori']
[u'hewitt', u'win', u'indian', u'well', u'open', u'scud']
[u'hick', u'play', u'impress', u'militari', u'lawyer']
[u'ignor', u'carr', u'claim', u'beatti', u'tell', u'grant', u'commiss']
[u'impeach', u'caus', u'south', u'korea', u'uncertainti']
[u'injuri', u'forc', u'clijster', u'indian', u'well']
[u'injuri', u'put', u'kirkland', u'action']
[u'give', u'greec', u'week', u'deadlin']
[u'iran', u'ban', u'nuclear', u'inspector']
[u'israel', u'thwart', u'kibbutz', u'attack']
[u'jacquelin', u'cruis', u'qatar', u'lead']
[u'kalli', u'near', u'bradman', u'record', u'protea', u'earn', u'draw']
[u'king', u'sweep', u'bullet', u'grand', u'final', u'berth']
[u'lord', u'danc', u'compos', u'carter', u'die']
[u'media', u'blame', u'iraq', u'misinform', u'butler']
[u'misinform', u'forest', u'ralli', u'turnout']
[u'briton', u'alleg', u'guantanamo', u'beat']
[u'moroccan', u'offici', u'follow', u'madrid', u'arrest']
[u'morocco', u'identifi', u'arrest', u'spain']
[u'murali', u'join', u'warn', u'wicket', u'club']
[u'murder', u'trial', u'nurs', u'reopen', u'euthanasia', u'debat']
[u'myer', u'vow', u'crackdown', u'haiti', u'tension', u'rise']
[u'student', u'drown', u'surf']
[u'korea', u'criticis', u'south', u'opposit', u'impeach']
[u'australian', u'troop', u'afghan', u'offens']
[u'attack', u'feder', u'fund', u'cut']
[u'kill', u'baghdad', u'shop', u'area', u'blast']
[u'bike', u'mayor', u'candid', u'tell', u'peski', u'courier']
[u'opposit', u'urg', u'oxygen', u'suppli', u'polici', u'review']
[u'overdos', u'prompt', u'rave', u'parti', u'crackdown']
[u'palestinian', u'hand', u'bodi', u'abba']
[u'pauls', u'brace', u'knock', u'waratah']
[u'pension', u'rise', u'combat', u'inflat']
[u'polic', u'arrest', u'duti', u'colleagu', u'street', u'fight']
[u'polic', u'defend', u'bail', u'offic', u'charg']
[u'poll', u'open', u'spanish', u'elect']
[u'pope', u'urg', u'europ', u'rememb', u'christian', u'root']
[u'power', u'fire', u'goal', u'thriller']
[u'prison', u'group', u'call', u'sack']
[u'putin', u'expect', u'landslid', u'poll', u'open']
[u'putin', u'easi']
[u'agent', u'predict', u'properti', u'price', u'rise']
[u'raider', u'good', u'dragon']
[u'real', u'hold', u'home', u'final', u'dress', u'rehears']
[u'robot', u'rover', u'help', u'care', u'age', u'popul']
[u'robot', u'pentagon', u'race']
[u'rooki', u'open', u'shoot', u'lead', u'florida']
[u'rooster', u'fight', u'rabbitoh']
[u'rooster', u'lead', u'rabbitoh', u'break']
[u'rule', u'parti', u'win', u'surpris', u'head', u'start', u'malaysian']
[u'sampdoria', u'resist', u'bologna', u'fightback']
[u'theme', u'park', u'open', u'south', u'china']
[u'spain', u'arrest', u'madrid', u'bomb']
[u'spanish', u'protest', u'govern', u'manipul']
[u'lanka', u'peac', u'hop', u'tiger', u'leadership']
[u'lanka', u'chang', u'pace', u'australia']
[u'stab', u'rais', u'taxi', u'safeti', u'concern']
[u'sting', u'oper', u'target', u'wasp']
[u'stuppl', u'hold', u'arizona', u'lead']
[u'contractor', u'threaten', u'foxtel', u'instal']
[u'superannu', u'scheme', u'extend']
[u'support', u'report', u'arctic', u'adventur', u'miss']
[u'sydney', u'spanish', u'communiti', u'mourn', u'bomb', u'victim']
[u'sydney', u'tell', u'expect', u'anti', u'terror', u'exercis']
[u'teacher', u'truanci', u'rise']
[u'teen', u'charg', u'redfern', u'riot']
[u'taliban', u'hold', u'afghan', u'offens']
[u'traumatis', u'spain', u'vote', u'madrid', u'attack']
[u'hospit', u'knife', u'attack']
[u'nab', u'peruvian', u'boat', u'seven', u'tonn', u'cocain']
[u'warrior', u'victim', u'bronco', u'snap', u'lose', u'streak']
[u'servic', u'mourn', u'madrid', u'victim']
[u'waugh', u'rafter', u'name', u'nation', u'treasur']
[u'woman', u'hospit', u'pack', u'attack']
[u'west', u'brom', u'level', u'leader', u'norwich']
[u'woman', u'die', u'parachut', u'jump']
[u'world', u'class', u'musician', u'teach', u'darwin']
[u'wright', u'domin', u'mosley', u'super', u'welterweight']
[u'wyness', u'strike', u'peg', u'ranger']
[u'tradit', u'stone']
[u'dead', u'isra', u'blast']
[u'abba', u'shouldnt', u'allow', u'west', u'bank', u'burial', u'isra']
[u'staff', u'order', u'work']
[u'staff', u'strike', u'hour']
[u'aborigin', u'activist', u'prais', u'welfar', u'debat']
[u'act', u'hospit', u'document']
[u'age', u'hous', u'spotlight']
[u'agforc', u'troubl', u'tree', u'clear', u'legisl']
[u'airlin', u'pass', u'bali', u'flight', u'custom', u'cost']
[u'alinta', u'duke', u'energi', u'asset']
[u'allenbi', u'fourth', u'florida']
[u'eye', u'zapatero', u'spain', u'reel']
[u'anger', u'attack', u'help', u'spain', u'socialist', u'power']
[u'anger', u'roundabout', u'safeti', u'fund', u'snub']
[u'anti', u'terror', u'meet', u'examin', u'secur']
[u'arrest', u'like', u'forster', u'riot']
[u'aussi', u'ponder', u'extra', u'quick', u'kandi', u'test']
[u'aussi', u'ponder', u'extra', u'quick', u'kandi', u'test']
[u'aust', u'polic', u'talk', u'continu']
[u'australian', u'pilot', u'shoot', u'dead']
[u'basic', u'error', u'cowboy']
[u'beatti', u'say', u'public', u'hear', u'necessari']
[u'upgrad', u'plan', u'margaret']
[u'bomb', u'near', u'athen', u'bank']
[u'break', u'scottish', u'club', u'defi', u'odd']
[u'brown', u'tell', u'note', u'spanish', u'elect']
[u'bull', u'face', u'mission', u'imposs']
[u'bull', u'lose', u'bichel']
[u'bull', u'struggl', u'maher', u'go', u'duck']
[u'bushrang', u'bat', u'berri', u'reject']
[u'bushrang', u'close', u'victori']
[u'bushrang', u'outright', u'victori']
[u'carmodi', u'back', u'council', u'merger', u'plan']
[u'carr', u'defend', u'campaign', u'feder', u'fund']
[u'cattl', u'drive', u'concern', u'west', u'coast']
[u'charg', u'alleg', u'gaza', u'bomber', u'drop']
[u'chines', u'astronaut', u'fail', u'spot', u'great', u'wall']
[u'chines', u'coupl', u'mistak', u'girl', u'year']
[u'citi', u'leav', u'utd', u'titl', u'hop', u'tatter']
[u'clay', u'fear', u'dump', u'impact', u'export']
[u'coast', u'dental', u'school', u'patient']
[u'cole', u'petrol', u'outlet', u'worri', u'small', u'food', u'store']
[u'command', u'defend', u'investig', u'polic', u'offic']
[u'commerci', u'develop', u'plan', u'northam']
[u'communic', u'agenda', u'deputi', u'visit']
[u'coron', u'critic', u'hospit', u'woman', u'death']
[u'council', u'appoint', u'project', u'develop', u'offic']
[u'council', u'consid', u'grand', u'green', u'plan']
[u'council', u'foreshadow', u'rat', u'rise']
[u'councillor', u'reject', u'local', u'govt', u'decid']
[u'council', u'say', u'quarri', u'plan']
[u'council', u'seek', u'upgrad', u'shoalwat', u'road']
[u'council', u'label', u'govt', u'arrog', u'merger']
[u'coup', u'suspect', u'face', u'lesser', u'zimbabw', u'charg', u'lawyer']
[u'cowboy', u'coach', u'frustrat', u'error', u'count']
[u'darwin', u'harbour', u'secur', u'examin']
[u'dizzi', u'spin', u'kandi', u'return']
[u'doctor', u'welcom', u'effort', u'boost', u'suppli']
[u'doyl', u'defend', u'council', u'labor', u'attack']
[u'dragon', u'coach', u'upbeat', u'despit', u'loss']
[u'drive', u'promot', u'rugbi', u'leagu']
[u'driver', u'die', u'shepparton', u'crash']
[u'drop', u'owen', u'joke', u'say', u'houllier']
[u'drought', u'barrier', u'fill', u'beef', u'quota']
[u'einstein', u'honour', u'anniversari', u'birth']
[u'embassi', u'move', u'australian', u'respons', u'bomb']
[u'emerg', u'train', u'door', u'design', u'inadequ']
[u'esper', u'properti', u'price', u'high']
[u'alic', u'rider', u'boost', u'cycl', u'challeng', u'lead']
[u'expat', u'demand', u'action', u'murder']
[u'eyr', u'peninsula', u'trail', u'highlight', u'wildlif']
[u'farmer', u'join', u'indigen', u'elder', u'dump', u'fight']
[u'farmer', u'urg', u'nuclear', u'wast', u'transport', u'opposit']
[u'fear', u'air', u'region', u'polic', u'pressur']
[u'feder', u'fund', u'intersect', u'black', u'spot']
[u'cricket', u'face', u'court', u'fraud', u'charg']
[u'foxtel', u'hit', u'digit', u'roll', u'hitch']
[u'frustrat', u'mount', u'work']
[u'germani', u'call', u'secur', u'reassess']
[u'girl', u'dead', u'injur', u'bushland']
[u'group', u'campaign', u'forest', u'log']
[u'group', u'seek', u'meet', u'feedlot', u'plan']
[u'haeggman', u'captur', u'qatar', u'master']
[u'haiti', u'aristid', u'quit', u'african', u'exil', u'jamaica']
[u'harmison', u'take', u'seven', u'england', u'crush', u'windi']
[u'hayden', u'return']
[u'high', u'demand', u'flower', u'export']
[u'honest', u'stan', u'stand', u'integr']
[u'hope', u'whyalla', u'plant', u'recycl', u'facil']
[u'howard', u'move', u'allay', u'terror', u'fear']
[u'howard', u'reject', u'land', u'claim']
[u'huge', u'engulf', u'histor', u'moscow', u'build']
[u'illawarra', u'health', u'consid', u'asset', u'sale']
[u'impress', u'milan', u'place', u'hand', u'scudetto']
[u'indonesia', u'vital', u'terror', u'fight']
[u'injur', u'teen', u'parent', u'thank', u'support']
[u'iran', u'promis', u'resumpt', u'nuclear', u'inspect']
[u'iraq', u'govern', u'council', u'divid', u'role']
[u'isra', u'helicopt', u'strike', u'gaza', u'target', u'wit']
[u'isra', u'minist', u'reject', u'talk', u'palestinian']
[u'jaksch', u'win', u'pari', u'nice', u'roger', u'eighth']
[u'jobseek', u'number', u'fall', u'southern']
[u'labor', u'accus', u'vicious', u'sydney', u'campaign']
[u'labor', u'pledg', u'excess', u'super', u'fee']
[u'latrob', u'valley', u'ambo', u'begin', u'industri', u'unrest']
[u'liber', u'launch', u'busi', u'polici', u'ahead', u'octob']
[u'local', u'doctor', u'feel', u'medicar', u'woe']
[u'mackay', u'sugar', u'get', u'hous', u'estat']
[u'accus', u'doctor', u'imperson', u'court']
[u'charg', u'pedestrian', u'death']
[u'die', u'highway', u'crash']
[u'face', u'charg', u'drug']
[u'court', u'cannabi', u'charg']
[u'court', u'truck', u'yard', u'camp', u'death']
[u'meet', u'review', u'mildura', u'speed', u'limit']
[u'gibson', u'passion', u'spot', u'time']
[u'mobil', u'phone', u'reason', u'plane']
[u'moor', u'demand', u'ambit', u'ranger']
[u'fund', u'flood', u'prone', u'home']
[u'harvest', u'worker', u'lose', u'welfar', u'payment']
[u'troubl', u'scruffi', u'bulldog']
[u'murali', u'battl', u'stomach', u'test']
[u'murali', u'battl', u'stomach', u'rain', u'soak', u'kandi']
[u'nat', u'urg', u'govt', u'rethink', u'hospit', u'fund']
[u'naturopath', u'suspend', u'sentenc', u'babi', u'death']
[u'navi', u'ship', u'paint', u'howard', u'bootlick', u'graffiti']
[u'label', u'highlight', u'energi', u'effici', u'product']
[u'monitor', u'bring', u'hope', u'heart']
[u'planet']
[u'tangara', u'safeti', u'fault', u'cityrail']
[u'nimmitabel', u'short', u'water']
[u'bangladeshi', u'student', u'aliv']
[u'glori', u'despotovski']
[u'region', u'boost', u'plan', u'anti', u'venom', u'stock']
[u'north', u'south', u'talk', u'cancel', u'korean']
[u'judiciari', u'charg', u'round']
[u'offici', u'confirm', u'victori', u'putin']
[u'opposit', u'super', u'polici', u'focus', u'tax']
[u'rate', u'fin', u'anger', u'ganguli']
[u'pair', u'court', u'cannabi', u'plant']
[u'pakistani', u'polic', u'defus', u'bomb']
[u'parachutist', u'kill', u'dive', u'accid']
[u'peckish', u'burglar', u'catch', u'snack']
[u'perth', u'choke', u'smoke', u'haze']
[u'pilot', u'blame', u'fatal', u'crash']
[u'unfaz', u'split', u'terror', u'risk']
[u'prime', u'minist', u'hit', u'australia']
[u'polic', u'arrest', u'alleg', u'bandit']
[u'polic', u'hunt', u'syring', u'threaten', u'bandit']
[u'polic', u'ruddock', u'clash', u'terror', u'target', u'claim']
[u'polic', u'step', u'search', u'miss', u'boy']
[u'polic', u'tackl', u'north', u'coast', u'drink', u'drive']
[u'polic', u'widen', u'search', u'miss', u'boy']
[u'portabl', u'ashtray', u'tri', u'gold', u'coast']
[u'poverti', u'issu', u'fall', u'radar']
[u'power', u'return', u'coastal', u'town']
[u'prais', u'cyclon', u'volunt', u'effort']
[u'prais', u'magnet', u'swim', u'legend']
[u'public', u'stop', u'zone']
[u'public', u'urg', u'help', u'woman', u'abductor']
[u'question', u'rais', u'network']
[u'real', u'slip', u'allow', u'valencia', u'close']
[u'record', u'sauvignon', u'blanc', u'crop', u'zealand', u'vine']
[u'report', u'see', u'broom', u'land', u'shortag']
[u'research', u'split', u'hair', u'offer', u'hope', u'bald', u'cure']
[u'resid', u'celebr', u'canberra']
[u'resid', u'council', u'merger']
[u'resid', u'welcom', u'tree', u'poison']
[u'resourc', u'share', u'provid', u'market', u'strength']
[u'rilli', u'destroy', u'wollongong']
[u'road', u'fund', u'boost', u'tip']
[u'roddick', u'set', u'round', u'match', u'safin']
[u'rooster', u'dear']
[u'rooster', u'wait', u'wing', u'test', u'result']
[u'ruddock', u'consort', u'terrorist', u'attack']
[u'ruddock', u'open', u'govt', u'contractor']
[u'russian', u'opposit', u'cri', u'foul', u'putin', u'victori']
[u'russia', u'putin', u'sweep', u'kremlin']
[u'russia', u'vote', u'turnout', u'exceed', u'crucial', u'percent']
[u'school', u'admin', u'staff', u'consid', u'strike']
[u'scientist', u'test', u'boundari', u'fertil']
[u'servic', u'disrupt', u'train', u'derail']
[u'alert', u'heavi', u'rain', u'northern']
[u'shire', u'associ', u'chief', u'reject', u'local', u'govt', u'report']
[u'zimbabw', u'mercenari', u'suspect', u'charg', u'lawyer']
[u'soccer', u'tasmania', u'deni', u'blame', u'fail', u'propos']
[u'socialist', u'claim', u'victori', u'spanish', u'elect']
[u'southern', u'school', u'benefit', u'feder', u'fund']
[u'south', u'korean', u'interim', u'leader', u'lay', u'prioriti']
[u'spain', u'tri', u'verifi', u'qaeda', u'bomb', u'claim']
[u'spanish', u'leader', u'plan', u'pull', u'troop', u'iraq']
[u'stay', u'elect', u'campaign', u'rumsfeld', u'bush']
[u'streak', u'lead', u'zimbabw', u'seri', u'victori']
[u'stuppl', u'sizzl', u'lpga']
[u'sydney', u'theatr', u'hail', u'fund', u'boost']
[u'team', u'fetch', u'aristid', u'land', u'central', u'africa']
[u'teen', u'accus', u'prostitut', u'murder', u'face', u'darwin']
[u'teen', u'court', u'murder', u'charg']
[u'telstra', u'deni', u'payphon', u'cutback', u'report']
[u'terror', u'attack', u'canberra', u'unlik', u'expert']
[u'thief', u'pull', u'giant', u'pumpkin', u'heist']
[u'thousand', u'protest', u'impeach']
[u'palestinian', u'milit', u'kill', u'isra']
[u'tight', u'result', u'tip', u'bomb', u'taint', u'spanish', u'poll']
[u'timber', u'worker', u'order', u'ralli', u'green']
[u'tini', u'turtl', u'return', u'home', u'coastal', u'marathon']
[u'seed', u'feder', u'advanc']
[u'tourist', u'help', u'solv', u'histor', u'crime']
[u'truss', u'tell', u'zoellick']
[u'nuclear', u'watchdog', u'want', u'speedi', u'return', u'iran']
[u'urgent', u'anti', u'terror', u'talk', u'underway']
[u'victori', u'putin', u'get', u'busi']
[u'victori', u'putin', u'pledg', u'econom', u'growth']
[u'vote', u'begin', u'local', u'govt', u'poll']
[u'polic', u'cannabi', u'crop', u'seizur', u'arrest']
[u'water', u'restrict', u'stay']
[u'water', u'restrict', u'possibl']
[u'wildlif', u'group', u'head', u'court', u'curb', u'kangaroo', u'cull']
[u'work', u'begin', u'soon', u'water', u'plant']
[u'yelarbon', u'medic', u'servic', u'end']
[u'guantanamo', u'prison', u'releas', u'australian']
[u'journalist', u'return', u'work', u'victoria']
[u'chief', u'doubt', u'iraq', u'link', u'terror', u'risk']
[u'afghan', u'alleg', u'guantanamo', u'mistreat']
[u'alleg', u'sheep', u'shipment', u'contamin', u'face', u'court']
[u'question', u'medicar', u'deal', u'effect']
[u'appl', u'sell', u'million', u'song', u'internet']
[u'aristid', u'attempt', u'destabilis', u'haiti']
[u'aristid', u'caribbean']
[u'galleri', u'tribut', u'hoppi', u'hopgood']
[u'aussi', u'fight', u'murali', u'hit']
[u'aust', u'challeng', u'spain', u'iraq', u'pull']
[u'australian', u'doctor', u'trial', u'frequent', u'chemo']
[u'australia', u'play', u'netherland']
[u'award', u'go', u'loxton', u'paper']
[u'bangladesh', u'stop', u'acid', u'attack']
[u'bank', u'manag', u'theft', u'sentenc', u'stand']
[u'bank', u'help', u'buoy', u'flat', u'share', u'market']
[u'bash', u'accus', u'expect', u'seek', u'bail']
[u'berri', u'retir', u'high']
[u'blaze', u'pose', u'daylesford', u'threat']
[u'blue', u'green', u'alga', u'near', u'bendigo']
[u'look', u'coal', u'export']
[u'hospit', u'incid']
[u'branson', u'shift', u'aviat', u'focus']
[u'brazil', u'reveal', u'amazon', u'action', u'plan']
[u'brisban', u'council', u'clear', u'flood', u'report']
[u'bushrang', u'edg', u'closer', u'victori']
[u'bushrang', u'earli', u'breakthrough']
[u'bushrang', u'obliter', u'bull']
[u'bushrang', u'obliter', u'bull', u'titl']
[u'reject', u'reduc', u'quota']
[u'chamber', u'say', u'cole', u'fuel', u'hard', u'time']
[u'china', u'end', u'bird', u'quarantin']
[u'claustrophob', u'wit', u'forc', u'outdoor', u'hear']
[u'communiti', u'fear', u'aerial', u'spray', u'plan']
[u'communiti', u'get', u'servic']
[u'confer', u'hear', u'techniqu', u'treat']
[u'logger', u'clash']
[u'contain', u'block', u'sydney', u'harbour', u'tunnel']
[u'cooper', u'face', u'charg']
[u'council', u'return', u'wodonga', u'mayor']
[u'council', u'sack', u'damn', u'report']
[u'croc', u'releas', u'kelli', u'player', u'shake']
[u'crouch', u'name', u'nbls', u'best']
[u'crow', u'fine', u'burn', u'breath', u'test']
[u'cyclist', u'pedal', u'alic', u'bike', u'challeng']
[u'dairi', u'farmer', u'plan', u'deregul', u'protest']
[u'dairi', u'farmer', u'protest', u'industri', u'woe']
[u'dairi', u'farmer', u'seek', u'feder']
[u'focus', u'women', u'issu']
[u'dead', u'soldier', u'famili', u'join', u'anti', u'protest']
[u'downer', u'unfaz', u'elect', u'challeng']
[u'dozen', u'fear', u'dead', u'russian', u'explos']
[u'driver', u'urg', u'care', u'roadwork']
[u'duck', u'shoot', u'like', u'spark', u'debat']
[u'eriksson', u'hop', u'ferdinand', u'reduc']
[u'esper', u'hospit', u'join', u'nation', u'health', u'studi']
[u'order', u'microsoft', u'split', u'media', u'player']
[u'extend', u'hotel', u'trade', u'hour', u'look', u'unlik']
[u'congression', u'aid', u'deni', u'give', u'iraq', u'secret']
[u'fairytal', u'film', u'right', u'sell']
[u'fall', u'blackal', u'popul', u'surpris']
[u'feder', u'fund', u'communiti', u'centr']
[u'fierc', u'explos', u'shake', u'russian', u'apart', u'build']
[u'film', u'follow', u'hick', u'guantanamo']
[u'fine', u'skipper', u'tweed', u'river', u'accid']
[u'tanker', u'prove', u'cost', u'council']
[u'meet', u'clarenc', u'valley', u'council']
[u'liberian', u'presid', u'sue', u'court']
[u'policeman', u'plead', u'guilti', u'drug']
[u'freak', u'mishap', u'land', u'hospit']
[u'ganguli', u'doubt', u'second', u'dayer']
[u'explos', u'kill', u'russian']
[u'gladston', u'deal', u'strike']
[u'crop', u'trial', u'decis', u'loom']
[u'guilti', u'plea', u'enter', u'truck', u'compani']
[u'harangu', u'boss', u'inappropri', u'latham']
[u'health', u'expert', u'warn', u'measl', u'threat']
[u'health', u'servic', u'chief', u'hold', u'talk']
[u'health', u'servic', u'defend', u'equip', u'sell']
[u'health', u'servic', u'upset', u'hospit', u'claim']
[u'heart', u'throb', u'heath', u'ledger', u'casanova']
[u'help', u'plea', u'help', u'rescuer', u'miss', u'dinghi']
[u'hepburn', u'mayor', u'know', u'tonight']
[u'hervey', u'popul', u'grow', u'fast']
[u'hewitt', u'molik', u'arthur']
[u'hill', u'call', u'tender', u'defenc']
[u'hill', u'hang', u'footi', u'boot']
[u'howard', u'sceptic', u'latham', u'super', u'plan']
[u'readi', u'athen', u'say', u'hockeyroo', u'hudson']
[u'indigen', u'gather', u'darl', u'river', u'worri']
[u'indonesia', u'jail', u'suspect']
[u'injuri', u'forc', u'hill', u'retir']
[u'inmat', u'inquiri', u'prison']
[u'inquiri', u'probe', u'hardi', u'asbesto', u'compens']
[u'invest', u'properti', u'financ', u'drop']
[u'iran', u'agre', u'nuclear', u'inspector', u'return', u'elbaradei']
[u'iraq', u'survey', u'find', u'life', u'improv']
[u'isra', u'parliament', u'narrowli', u'back', u'sharon', u'pull']
[u'jail', u'escap', u'fail', u'appeal']
[u'jail', u'excurs', u'deter', u'youth', u'crime']
[u'japanes', u'enceph', u'cape', u'york']
[u'japan', u'stand', u'iraq', u'deploy']
[u'joan', u'london', u'fiction', u'prize']
[u'jobseek', u'number', u'fall', u'england']
[u'jobseek', u'number', u'fall', u'south', u'east']
[u'jongewaard', u'retain', u'lead', u'despit', u'crash']
[u'kirsten', u'retir', u'tour']
[u'koala', u'issu', u'hurt', u'kangaroo']
[u'koperberg', u'question', u'claim', u'inquest']
[u'koperberg', u'canberra', u'fire', u'inquest']
[u'labor', u'take', u'cautious', u'approach', u'land', u'clear']
[u'legisl', u'delay', u'council', u'elect']
[u'lobbi', u'group', u'urg', u'seek', u'young', u'farmer']
[u'locust', u'plagu', u'wreak', u'havoc', u'dubbo', u'crop']
[u'magistr', u'award', u'defam', u'case']
[u'face', u'court', u'cigarett', u'shipment']
[u'hospit', u'shoot', u'incid']
[u'jail', u'slay']
[u'face', u'charg', u'polic', u'ram']
[u'martha', u'stewart', u'resign', u'compani', u'board']
[u'back', u'council', u'amidst', u'bias', u'claim']
[u'mayor', u'hop', u'surviv']
[u'mayor', u'reflect', u'chang', u'face', u'clare']
[u'north', u'coast', u'maintain', u'strong', u'popul', u'growth']
[u'miner', u'look', u'product', u'capac', u'boost']
[u'miner', u'upbeat', u'indigen', u'land', u'agreement']
[u'minist', u'shed', u'light', u'thargomindah', u'solar', u'effort']
[u'explor', u'west']
[u'independ', u'heritag', u'council', u'review']
[u'motor', u'group', u'call', u'incent']
[u'moura', u'control']
[u'surpris', u'rail', u'freight', u'complaint']
[u'head', u'save', u'lake', u'mokoan', u'push']
[u'muralitharan', u'prolif', u'controversi']
[u'museum', u'return', u'remain', u'aborigin', u'communiti']
[u'nat', u'attack', u'parliament', u'prepar']
[u'neil', u'young', u'tour', u'power', u'veget']
[u'command', u'centr', u'simpler', u'structur']
[u'band', u'channel']
[u'need', u'reduc', u'quota', u'game', u'harvest']
[u'nortel', u'financ', u'chief', u'suspend', u'amid', u'probe']
[u'northern', u'tourist', u'attract', u'secur', u'fund']
[u'govt', u'criticis', u'time', u'council', u'sack']
[u'lack', u'rail', u'disast', u'plan', u'inquiri', u'hear']
[u'politician', u'trade', u'marriag', u'insult']
[u'older', u'car', u'target', u'theft', u'jump']
[u'ombudsman', u'move', u'forc', u'parliament', u'sit']
[u'opposit', u'admit', u'super', u'blooper']
[u'opposit', u'flag', u'fund', u'swap', u'hospit', u'wait']
[u'orford', u'clear', u'knight', u'clash']
[u'pakistan', u'launch', u'qaeda', u'hunt']
[u'pakistan', u'rack', u'total', u'india']
[u'panel', u'say', u'wood', u'chip', u'plan']
[u'panel', u'urg', u'stronger', u'hospit', u'link']
[u'pcmcs', u'recommend']
[u'pirat', u'foreshadow', u'player', u'cut']
[u'polic', u'charg', u'injur', u'girl', u'murder']
[u'polic', u'chief', u'fear', u'terrorist', u'attack']
[u'polic', u'detain', u'pharmaci', u'incid']
[u'polic', u'identifi', u'spain', u'blast', u'suspect']
[u'polic', u'interview', u'suspici', u'death']
[u'polic', u'probe', u'pottsvill', u'attack']
[u'polic', u'miss', u'youth']
[u'poll', u'show', u'poor', u'support', u'costello', u'leadership']
[u'pool', u'get', u'extend', u'open', u'hour']
[u'properti', u'plateau', u'pleas', u'costello']
[u'public', u'critic', u'damag', u'athlet', u'chief']
[u'public', u'road', u'safeti', u'advic']
[u'push', u'base', u'research', u'posit']
[u'see', u'good', u'cole', u'fuel', u'outlet']
[u'rail', u'accid', u'blame', u'privatis']
[u'railcorp', u'head', u'defend', u'seal', u'train']
[u'rail', u'protest', u'gather', u'target', u'mayor']
[u'rain', u'flood', u'outback', u'highway']
[u'rat', u'agenc', u'watch', u'duke', u'energi']
[u'razorback', u'hawk', u'grand', u'final']
[u'red', u'waratah', u'clash', u'move', u'lang', u'park']
[u'reef', u'author', u'seek', u'tourism', u'director']
[u'renault', u'put', u'ferrari', u'notic']
[u'renov', u'groceri', u'buy', u'public', u'fund']
[u'resid', u'argu', u'phone', u'tower']
[u'resid', u'council', u'vote', u'remind']
[u'retir', u'budget', u'week']
[u'rooster', u'receiv', u'wing', u'boost']
[u'rwandan', u'presid', u'accus', u'franc', u'genocid', u'role']
[u'appoint', u'bodi', u'overse', u'pitland']
[u'saint', u'guerra', u'cop', u'week']
[u'saint', u'pair', u'centr', u'alleg']
[u'satellit', u'technolog', u'help', u'farmer']
[u'defend', u'approach', u'rape', u'claim']
[u'senat', u'push', u'regular', u'antarct', u'servic']
[u'alleg', u'club']
[u'shark', u'gallen', u'judiciari']
[u'sharon', u'plan', u'port', u'attack', u'respons']
[u'shenzhou', u'space', u'mission', u'end']
[u'ship', u'cut', u'disappoint', u'cattl', u'export']
[u'shire', u'undergo', u'drought', u'review']
[u'parent', u'afraid', u'critic', u'request']
[u'spain', u'retreat', u'blame', u'attack']
[u'spanish', u'govt', u'pay', u'price', u'bomb']
[u'staff', u'shortag', u'close', u'vote', u'booth']
[u'strike', u'forc', u'investig', u'girl', u'death']
[u'student', u'take', u'hospit', u'crash']
[u'tasmanian', u'logger', u'latham', u'support']
[u'tasmanian', u'opposit', u'push', u'pulp']
[u'terror', u'fear', u'domin', u'global', u'market']
[u'terror', u'comment', u'take', u'context', u'keelti']
[u'thousand', u'flock', u'greek', u'festiv']
[u'tighter', u'secur', u'mean', u'higher', u'cost', u'taxpay']
[u'timber', u'ralli', u'plan', u'latham', u'head', u'tasmania']
[u'tindal', u'return', u'wale', u'game']
[u'qaeda', u'milit', u'kill', u'saudi', u'arabia']
[u'qaeda', u'milit', u'kill', u'saudi', u'shootout']
[u'tough', u'love']
[u'traffic', u'blitz', u'move', u'southern', u'cross']
[u'truck', u'roll', u'log', u'industri', u'ralli']
[u'court', u'tobacco', u'steal', u'ring']
[u'probe', u'white', u'powder', u'send', u'saudi', u'embassi']
[u'union', u'accus', u'spain', u'state', u'news', u'agenc']
[u'billionair', u'restor', u'francisco', u'newspap']
[u'okay', u'greek', u'request', u'nato', u'olymp', u'protect']
[u'govt', u'clarifi', u'plan', u'law']
[u'vic', u'verg', u'crush']
[u'port', u'target', u'tighter', u'secur']
[u'warship', u'graffiti', u'trigger', u'secur', u'review']
[u'water', u'storag', u'benefit', u'littl', u'rain']
[u'drug', u'say', u'cyclist', u'gaumont']
[u'wide', u'council', u'push', u'cane', u'farmer', u'support']
[u'windi', u'apologis', u'poor', u'perform']
[u'women', u'rais', u'voic', u'violenc']
[u'wood', u'worri', u'high', u'school']
[u'zimbabw', u'charg', u'alleg', u'mercenari']
[u'detain', u'immigr', u'raid']
[u'activist', u'duck', u'shoot', u'anger']
[u'urg', u'pass', u'rape', u'claim', u'detail']
[u'ambul', u'plan', u'mersey', u'hospit', u'cutback']
[u'anti', u'terror', u'effort', u'receiv', u'budget', u'boost']
[u'anti', u'terror', u'oper', u'leav', u'dead', u'pakistan']
[u'aristocrat', u'chief', u'assur', u'payout']
[u'attempt', u'murder', u'trial', u'begin', u'bundaberg']
[u'australia', u'consid', u'spaceport']
[u'australian', u'tourist', u'kill', u'vietnam', u'landslid']
[u'author', u'chief', u'look', u'bipartisan', u'reef', u'support']
[u'ayr', u'dislik', u'critic', u'carey']
[u'virgin', u'blue', u'land', u'pilot', u'error']
[u'bark', u'save', u'woman', u'hous', u'blaze']
[u'bashir', u'dictat', u'downer']
[u'bellami', u'sign', u'messag']
[u'bremer', u'promis', u'saddam', u'kurd']
[u'broom', u'studi', u'show', u'airspac', u'reform', u'danger']
[u'burnett', u'council', u'staff', u'consid', u'hour', u'strike']
[u'bush', u'appeal', u'fail', u'sway', u'spain']
[u'bush', u'ask', u'alli', u'troop', u'iraq']
[u'cabl', u'coupl', u'hang', u'realiti']
[u'feder', u'age', u'care', u'fund']
[u'uniqu', u'noosa', u'public', u'transport']
[u'camel', u'industri', u'urg', u'diversif']
[u'candid', u'urg', u'consid', u'council', u'financ']
[u'chela', u'continu', u'win']
[u'citi', u'plan', u'approv', u'chang']
[u'civilian', u'death', u'toll', u'mount', u'iraq']
[u'civil', u'libertarian', u'welcom', u'push', u'singl', u'libel']
[u'clijster', u'fit', u'wrist', u'brace']
[u'want', u'wine', u'scandal', u'note']
[u'cobar', u'help', u'boost', u'profit']
[u'collett', u'glenelg', u'mayor']
[u'collin', u'replac', u'edward', u'windi', u'squad']
[u'commod', u'bank', u'push', u'market', u'higher']
[u'complaint', u'flow', u'water', u'cheat']
[u'buy', u'sunbeam', u'food', u'share']
[u'costello', u'distanc', u'govt', u'abbott', u'abort']
[u'council', u'meet', u'local', u'govt', u'amend']
[u'council', u'high', u'waterfront', u'tower']
[u'council', u'parent', u'consid', u'childcar', u'centr', u'closur']
[u'council', u'question', u'salin', u'zone', u'law']
[u'council', u'urg', u'greenhous', u'push']
[u'council', u'bypass', u'option', u'decis']
[u'council', u'welcom', u'move', u'nationalis', u'defam']
[u'countdown', u'world', u'track', u'cycl', u'champ', u'begin']
[u'counter', u'terror', u'exercis', u'test', u'state']
[u'credit', u'card', u'scam', u'use', u'hospit']
[u'cricket', u'beachley', u'world', u'honour']
[u'dairi', u'farmer', u'demand', u'milk', u'price', u'law']
[u'dairyfarm', u'welcom', u'parmalat', u'restructur']
[u'dechi', u'post', u'career', u'victori']
[u'deputi', u'coron', u'find', u'boat', u'death', u'accident']
[u'doubt', u'cast', u'pristin', u'tugun', u'bypass', u'land']
[u'eel', u'hope', u'lyon', u'chang', u'heart']
[u'england', u'grayson', u'fit', u'scare']
[u'error', u'spark', u'rethink', u'banana', u'import']
[u'europ', u'call', u'coordin', u'secur', u'plan']
[u'rule', u'microsoft', u'anti', u'trust', u'case']
[u'expert', u'consid', u'locust', u'control', u'method']
[u'farmer', u'death', u'spark', u'safeti', u'warn']
[u'toe', u'fifa', u'line', u'suspens', u'drug']
[u'feder', u'reach', u'indian', u'well', u'quarter']
[u'ferrari', u'look', u'appli', u'blowtorch', u'malaysia']
[u'crew', u'consid', u'marcollat', u'respons']
[u'firefight', u'board', u'hous', u'blaze']
[u'flight', u'firm', u'win', u'navi', u'train', u'contract']
[u'foxtel', u'subcontractor', u'continu', u'strike']
[u'heart', u'convict', u'letter', u'display']
[u'fund', u'youth', u'hous', u'scheme']
[u'fund', u'address', u'dead', u'intersect']
[u'gilchrist', u'martyn', u'control']
[u'help', u'plant', u'adapt', u'global', u'warm', u'expert']
[u'govt', u'expect', u'adopt', u'review', u'recommend']
[u'govt', u'releas', u'draft', u'nation', u'defam']
[u'green', u'underestim', u'sullivan']
[u'harbi', u'william', u'begin', u'sojourn']
[u'health', u'dept', u'consid', u'hospit', u'site']
[u'health', u'servic', u'consid', u'budget', u'woe']
[u'higher', u'demand', u'put', u'pressur', u'foster', u'care', u'group']
[u'histori', u'beckon', u'black', u'cap', u'host', u'protea']
[u'hitler', u'return', u'heart', u'berlin']
[u'home', u'owner', u'warn', u'unlicens', u'builder']
[u'hondura', u'iraq', u'troop', u'commit']
[u'hook', u'inspir', u'vic', u'triumph']
[u'hospit', u'cut', u'remain', u'moment']
[u'howard', u'defend', u'live', u'sheep', u'trade', u'despit', u'rspca', u'link']
[u'indigen', u'group', u'welcom', u'land', u'intervent']
[u'injuri', u'forc', u'ross', u'retir']
[u'injuri', u'affect', u'race', u'leader', u'jongewaard']
[u'inquest', u'tell', u'receiv', u'request']
[u'interpol', u'internet', u'roll', u'near', u'complet']
[u'investig', u'moura', u'begin']
[u'iranian', u'festiv', u'kill', u'injur']
[u'iron', u'pull', u'beachley', u'showdown']
[u'italian', u'polic', u'break', u'church', u'instal', u'priest']
[u'jamaica', u'refus', u'recognis', u'haitian', u'govt']
[u'jam', u'hardi', u'boss', u'stand', u'asbesto', u'compo', u'fund']
[u'kasper', u'defend', u'kandi', u'pitch']
[u'kerri', u'seal', u'democrat', u'formal', u'nomin']
[u'labor', u'ask', u'abbott', u'abort', u'solut']
[u'lack', u'awar', u'caus', u'moorabbin', u'crash', u'atsb']
[u'lack', u'fund', u'hamper', u'digit']
[u'lagoon', u'dri', u'time', u'year']
[u'latham', u'aim', u'forestri', u'balanc']
[u'latham', u'play', u'super', u'blooper']
[u'legionnair', u'death', u'caus', u'alarm']
[u'lend', u'plung', u'take', u'context']
[u'lib', u'team', u'hear', u'sport', u'precinct', u'plan']
[u'licens', u'driller', u'need', u'water', u'bore']
[u'live', u'export', u'concern', u'ship', u'servic']
[u'locum', u'reliev', u'south', u'east', u'doctor']
[u'lose', u'conan', u'doyl', u'paper', u'london']
[u'magn', u'return', u'franc', u'scotland']
[u'accus', u'sheep', u'sabotag', u'deni', u'help']
[u'await', u'sentenc', u'manslaught']
[u'manjimup', u'upset', u'wilder', u'centr', u'locat']
[u'martin', u'applaud', u'council', u'takeov']
[u'massiv', u'secur', u'drill', u'stag', u'athen']
[u'meet', u'focus', u'port', u'macquari', u'draft', u'plan']
[u'millwal', u'semi', u'final']
[u'miltonbrook', u'win', u'hous', u'develop', u'case']
[u'get', u'leas', u'life']
[u'minist', u'heap', u'prais', u'keelti']
[u'minist', u'underlin', u'tour', u'oper']
[u'miss', u'north', u'pole', u'adventur', u'probabl', u'dead']
[u'help', u'urg', u'rural', u'student']
[u'dairi', u'industri', u'surpris', u'govt']
[u'murder', u'accus', u'upset', u'think']
[u'boy', u'prove', u'nsls', u'drawcard']
[u'defenc', u'track']
[u'zealand', u'haven', u'terrorist', u'foreign']
[u'nickel', u'miner', u'inject', u'life', u'kambalda', u'economi']
[u'find', u'health', u'servic', u'appoint']
[u'green', u'light', u'naracoort', u'traffic', u'signal']
[u'chief', u'complet', u'evid']
[u'govt', u'clear', u'snowi', u'cloud', u'seed', u'trial']
[u'polic', u'take', u'riot', u'critic', u'serious']
[u'group', u'confid', u'darwin', u'casino', u'purchas']
[u'offic', u'tackl', u'teach', u'complaint', u'backlog']
[u'price', u'break', u'post', u'iraq', u'high']
[u'sale', u'resolv', u'pakistan', u'wheat', u'stalem']
[u'opposit', u'criticis', u'plan']
[u'outgo', u'farm', u'chief', u'reflect', u'achiev']
[u'pakistan', u'edg', u'india', u'despit', u'tendulkar']
[u'parent', u'blind', u'children', u'weight', u'issu']
[u'parliament', u'hear', u'limeston', u'boost']
[u'parmalat', u'load', u'parma', u'restructur']
[u'perilya', u'score', u'worker', u'compo']
[u'pipelin', u'owner', u'give', u'extens', u'repay', u'debt']
[u'promis', u'intellig', u'boost']
[u'polic', u'arrest', u'univers', u'fraud', u'probe']
[u'polic', u'captur', u'ohio', u'sniper', u'suspect']
[u'polic', u'deepen', u'probe', u'girl', u'death']
[u'polic', u'hunt', u'assault', u'report']
[u'polic', u'offic', u'bail', u'cigarett', u'theft', u'case']
[u'polo', u'fall', u'put', u'packer', u'hospit']
[u'pope', u'discuss', u'refuge', u'issu', u'hobart']
[u'powel', u'prais', u'effort', u'rout', u'taliban']
[u'power', u'hope', u'give', u'grind', u'glori']
[u'premier', u'look', u'redfern', u'riot', u'critic']
[u'probe', u'launch', u'wool', u'machin', u'mishap']
[u'prosecutor', u'charg', u'nazi', u'murder']
[u'protest', u'delay', u'flinder', u'fee', u'meet']
[u'public', u'urg', u'smogbust']
[u'pupil', u'number', u'checkmat', u'german', u'school']
[u'qualifi', u'format', u'unchang', u'malaysia']
[u'quayl', u'get', u'mayor', u'spot']
[u'raider', u'fin', u'slow', u'convers']
[u'rare', u'plant', u'construct', u'site']
[u'red', u'turn', u'leed', u'plug', u'half']
[u'resid', u'plan', u'curb', u'bargara', u'vandal']
[u'ross', u'quit', u'rugbi', u'leagu']
[u'rspca', u'end', u'futur', u'patronag', u'export', u'sheep']
[u'ruddock', u'outlin', u'illeg', u'combat']
[u'rusedki', u'consid', u'legal', u'action']
[u'russia', u'blast', u'toll', u'continu', u'rise']
[u'rylston', u'administr', u'reflect', u'ahead']
[u'saint', u'band', u'season', u'launch']
[u'saint', u'draw', u'strength', u'alleg']
[u'saint', u'stand', u'player', u'probe']
[u'scandal', u'parmalat', u'outlin', u'rescu', u'plan']
[u'school', u'group', u'request', u'educ']
[u'senat', u'upbeat', u'highway', u'fund', u'prospect']
[u'serena', u'miami', u'comeback']
[u'probe', u'hang', u'saint']
[u'ship', u'shortag', u'affect', u'live', u'beef', u'export']
[u'kill', u'gaza', u'violenc']
[u'snow', u'storm', u'hit', u'york', u'day', u'start']
[u'south', u'east', u'celebr', u'senior', u'achiev']
[u'south', u'korea', u'alert', u'possibl', u'attack']
[u'specialist', u'welcom', u'govt', u'region', u'support']
[u'studi', u'urg', u'gulf', u'recreat', u'fish']
[u'super', u'blooper', u'haunt', u'labor']
[u'superior', u'infrastructur', u'counter', u'terror']
[u'swim', u'coach', u'happi', u'athen', u'facil']
[u'task', u'forc', u'seek', u'coastal', u'feder', u'fund', u'scheme']
[u'lib', u'blame', u'poor', u'poll', u'backbench']
[u'terror', u'risk', u'link', u'iraq', u'asio', u'chief']
[u'timber', u'chief', u'believ', u'latham', u'fair', u'dinkum', u'job']
[u'toddler', u'hospit', u'water', u'burn']
[u'truck', u'compani', u'fin', u'breach']
[u'truss', u'deni', u'trade', u'deal', u'involv', u'quarantin', u'chang']
[u'umer', u'recal', u'pakistan', u'squad']
[u'launch', u'scheme', u'escap']
[u'unknown', u'muslim', u'group', u'threaten', u'franc']
[u'turn', u'focus', u'iraq', u'insurg']
[u'vendi', u'reject', u'vacat', u'mayor', u'spot']
[u'veteran', u'shoot', u'outsid', u'mandela', u'home']
[u'back', u'voluntari', u'anthrax', u'scheme']
[u'winemak', u'doubl', u'export']
[u'viduka', u'refus', u'abandon', u'hope']
[u'volunt', u'push', u'bushfir', u'prevent']
[u'farmer', u'attack', u'nation', u'competit', u'polici']
[u'wall', u'street', u'recov', u'rat', u'decis']
[u'waterbird', u'breed', u'thousand']
[u'water', u'board', u'direct', u'puzzl', u'mayor']
[u'water', u'contamin', u'fear', u'spark', u'cattl']
[u'waterfal', u'rescuer', u'ignor', u'polic', u'instruct']
[u'water', u'restrict', u'possibl', u'bega', u'valley']
[u'wayward', u'koala', u'elud', u'polic']
[u'western', u'power', u'issu', u'heatwav', u'warn']
[u'wollongong', u'council', u'sign', u'detaine', u'deal']
[u'woman', u'die', u'roll']
[u'wood', u'drive', u'hill']
[u'worker', u'meet', u'hospit', u'cut']
[u'workshop', u'discuss', u'food', u'profit']
[u'work', u'underway', u'age', u'care', u'centr']
[u'york', u'tangl', u'souness', u'train', u'pitch']
[u'abort', u'elect', u'agenda', u'abbott']
[u'accc', u'see', u'problem', u'supermarket', u'chemist']
[u'accc', u'warn', u'media', u'infomerci']
[u'right', u'hinder', u'anti', u'terror', u'law']
[u'aflnt', u'coach', u'wait', u'sidelin']
[u'colleg', u'start', u'push', u'oversea', u'student']
[u'choos', u'kalgoorli', u'candid']
[u'criticis', u'hospit', u'doctor', u'sack']
[u'anderson', u'listen', u'cane', u'grower', u'concern']
[u'aristid', u'vow', u'silenc', u'jamaica']
[u'atsic', u'chief', u'gibbon', u'resign', u'dual', u'role']
[u'aust', u'intellig', u'rare', u'help', u'qanta']
[u'aust', u'market', u'dip', u'record', u'high']
[u'australia', u'aim', u'bashir', u'jail']
[u'author', u'prais', u'guilti', u'verdict', u'perth']
[u'bacon', u'offici', u'resign', u'premier']
[u'baghdad', u'bomb', u'kill']
[u'baghdad', u'bomb', u'attack', u'kill']
[u'bakk', u'blow', u'battl', u'leed']
[u'basra', u'bomb', u'anniversari', u'loom']
[u'baxter', u'detaine', u'stag', u'protest', u'compound', u'roof']
[u'beatti', u'cut', u'meal', u'break', u'famili', u'friend']
[u'council', u'chang', u'elect', u'loom']
[u'shake', u'plan', u'noroc']
[u'blind', u'date', u'bluetooth', u'futur', u'romanc']
[u'break', u'hill', u'water', u'qualiti', u'improv']
[u'brown', u'label', u'latham', u'wait']
[u'bulldog', u'sack', u'footbal', u'manag', u'fine', u'player']
[u'burn', u'plastic', u'flow', u'hume', u'highway']
[u'bushfir', u'control', u'effort', u'continu']
[u'byron', u'woman', u'murder', u'leav', u'indian', u'airport']
[u'cabinet', u'minist', u'tick', u'clock', u'shut']
[u'canobola', u'polic', u'chief', u'reject', u'audit', u'claim']
[u'caution', u'urg', u'lawmak', u'mull', u'doubl', u'jeopardi']
[u'celtic', u'closer', u'titl']
[u'cheer', u'boo', u'greet', u'saint', u'season', u'launch']
[u'china', u'reject', u'chip', u'protest']
[u'china', u'target', u'weblog', u'censorship']
[u'coach', u'watch', u'thorp', u'olymp', u'rival']
[u'coach', u'watch', u'thorp', u'olymp', u'rival']
[u'say', u'ferdinand', u'appropri']
[u'coff', u'prepar', u'visit']
[u'combo', u'therapi', u'tackl', u'drug', u'resist', u'cancer']
[u'compani', u'reject', u'oppn', u'wind', u'blade', u'claim']
[u'complet', u'deadlin', u'tight', u'olymp', u'stadium']
[u'cook', u'play', u'milan', u'remo', u'hop']
[u'coron', u'call', u'high', u'speed', u'polic', u'pursuit']
[u'council', u'candid', u'discuss', u'urban', u'develop']
[u'councillor', u'tell', u'tweed', u'byron', u'merger', u'unlik']
[u'council', u'reject', u'bull', u'request']
[u'demetriou', u'plead', u'calm', u'latest', u'claim']
[u'democrat', u'intens', u'pork', u'farm', u'inhuman']
[u'democrat', u'want', u'crop', u'delay']
[u'dion', u'speak', u'plan', u'industri', u'shake']
[u'dollar', u'drop', u'help', u'live', u'export', u'trade']
[u'dracula', u'park', u'lure', u'fan', u'romania']
[u'drought', u'dri', u'snowi', u'river', u'flow']
[u'drug', u'alcohol', u'contribut', u'plane', u'crash']
[u'educ', u'consid', u'tackl', u'poverti']
[u'egyptian', u'cop', u'jail', u'switcheroo']
[u'highlight', u'wast', u'storag', u'requir']
[u'etern', u'flame', u'snuff']
[u'mayor', u'ponder', u'polit', u'return']
[u'expect', u'mum', u'kid', u'warn', u'eat', u'fish']
[u'team', u'look', u'fight', u'malaysia']
[u'famili', u'question', u'land', u'initi']
[u'farmer', u'canegrow', u'anger']
[u'govt', u'question', u'tree', u'clear', u'consult']
[u'ferguson', u'work', u'princ', u'highway', u'fund', u'plan']
[u'kill', u'maldiv', u'ferri', u'sink']
[u'fior', u'strike', u'twice', u'pile', u'miseri', u'juve']
[u'author', u'wari', u'media', u'inquest', u'tell']
[u'firm', u'urg', u'boost', u'indigen', u'job']
[u'case', u'rare', u'diseas', u'report']
[u'player', u'help', u'children', u'enjoy', u'sport']
[u'foxtel', u'subcontractor', u'disput', u'intensifi']
[u'foxtel', u'work', u'resolv', u'subcontractor', u'disput']
[u'come', u'scrutini', u'pharmacist']
[u'fund', u'shortfal', u'affect', u'health', u'worker']
[u'giffen', u'brumbi']
[u'gilchrist', u'put', u'posit', u'spin', u'pont', u'injuri']
[u'girl', u'win', u'settlement', u'magpi', u'attack']
[u'govt', u'consid', u'drug', u'alcohol', u'test', u'pilot']
[u'govt', u'play', u'terror', u'threat']
[u'govt', u'tape', u'stall', u'move', u'tipperari', u'anim']
[u'govt', u'backdat', u'medicar', u'safeti']
[u'question', u'hour', u'chang']
[u'group', u'maintain', u'opposit', u'industri', u'estat']
[u'group', u'share', u'credit', u'fewer', u'chemic', u'complaint']
[u'grower', u'flag', u'doubt', u'import', u'rule']
[u'hawk', u'rock', u'injuri']
[u'health', u'author', u'issu', u'warn', u'virus']
[u'help', u'seek', u'solv', u'dugong', u'death']
[u'henin', u'hardenn', u'skip', u'miami', u'event']
[u'home', u'build', u'surg', u'unlik', u'rat']
[u'home', u'loan', u'afford', u'near', u'year', u'report']
[u'hospit', u'urg', u'face', u'fact', u'emerg', u'dept']
[u'hous', u'industri', u'growth', u'surg']
[u'howard', u'desper', u'labor', u'say']
[u'howard', u'deni', u'polit', u'interfer', u'keelti']
[u'howard', u'stand', u'firm', u'oppos', u'marriag']
[u'howard', u'stand', u'firm', u'radioact', u'dump', u'site']
[u'human', u'remain', u'central', u'australia']
[u'icpa', u'look', u'boost', u'remot', u'teacher', u'number']
[u'drug', u'cheat']
[u'indigen', u'support', u'tip', u'river', u'meet']
[u'jackson', u'improp', u'kid']
[u'italian', u'minist', u'break', u'rank', u'iraq']
[u'jana', u'wendt', u'portrait', u'win', u'packer', u'prize']
[u'journalist', u'give', u'evid', u'canberra', u'bushfir']
[u'judg', u'apologis', u'assault', u'charg']
[u'keelti', u'say', u'integr', u'intact']
[u'kelli', u'wont', u'rule', u'council', u'merger']
[u'kosovo', u'clash', u'leav', u'dead']
[u'kosovo', u'slide', u'violenc']
[u'koutoufid', u'carlton']
[u'labor', u'want', u'clarif', u'clinic', u'number']
[u'latham', u'vow', u'timber', u'job', u'safe']
[u'launceston', u'showcas', u'histor', u'document']
[u'forc', u'singapor', u'pace', u'fowler', u'share', u'clubhous']
[u'leicest', u'trio', u'adam', u'plan']
[u'local', u'firm', u'build', u'council', u'admin', u'centr']
[u'long', u'term', u'treatment', u'osteoporosi', u'effect']
[u'arrest', u'india', u'murder', u'australian']
[u'manila', u'restaur', u'serv', u'spam']
[u'market', u'prais', u'consum', u'price']
[u'martyn', u'bring', u'centuri', u'rain', u'fall', u'kandi']
[u'martyn', u'notch', u'centuri', u'pont', u'dismiss']
[u'martyn', u'reach', u'centuri', u'rain', u'delay']
[u'martyn', u'stump', u'form', u'revers']
[u'meet', u'sow', u'seed', u'trial']
[u'minist', u'air', u'protest', u'nativ', u'titl', u'concern']
[u'minist', u'clarifi', u'council', u'elect']
[u'minist', u'defend', u'chopper', u'locust']
[u'minist', u'hop', u'feder', u'road', u'fund']
[u'fund', u'broom', u'centr']
[u'post', u'natal', u'depress', u'educ', u'need', u'coron']
[u'air', u'tree', u'clear', u'compo', u'concern']
[u'defend', u'ban', u'disabl', u'exhibit']
[u'support', u'safari', u'crocodil', u'hunt']
[u'nasa', u'hear', u'word', u'speak']
[u'nasa', u'test', u'superson', u'drone']
[u'nato', u'send', u'troop', u'quell', u'kosovo', u'violenc']
[u'nat', u'visit', u'great', u'southern', u'shop']
[u'arrest', u'madrid', u'suspect', u'await', u'hear']
[u'council', u'execut']
[u'job', u'program', u'aim', u'help', u'indigen', u'youth']
[u'softwar', u'seek', u'chatroom', u'paedophil']
[u'council', u'elect', u'delay', u'kelli']
[u'resolut', u'steel', u'disput']
[u'plan', u'tougher', u'paedophil', u'law']
[u'woman', u'murder', u'india']
[u'nurs', u'home', u'bed', u'plan']
[u'nurs', u'post', u'rais', u'fee']
[u'celebr', u'parad', u'ring']
[u'offici', u'admit', u'deadlin', u'tight', u'finish', u'olymp']
[u'ombudsman', u'investig', u'shoalhaven', u'mayor', u'deputi']
[u'owen', u'boot', u'red', u'track']
[u'palm', u'council', u'financi', u'control']
[u'perth', u'hospit', u'dismiss', u'neglig', u'doctor']
[u'pig', u'lose', u'final', u'fight', u'mcgregor']
[u'pilot', u'come', u'cancer', u'patient']
[u'pilot', u'feder', u'support', u'safeti', u'report']
[u'downplay', u'abbott', u'stanc', u'abort']
[u'end', u'tour', u'environ', u'announc']
[u'wont', u'interven', u'bakhtiyari', u'case']
[u'polic', u'charg', u'pilot', u'murder']
[u'polic', u'beach', u'crash', u'victim']
[u'polic', u'probe', u'rape', u'claim', u'longreach']
[u'polic', u'pursuit', u'continu', u'despit', u'coron']
[u'polic', u'push', u'wider', u'anti', u'terrorist', u'power']
[u'polic', u'raid', u'net', u'near', u'cannabi', u'plant']
[u'polic', u'crack', u'drive', u'offenc']
[u'polit', u'interfer', u'weaken', u'latham']
[u'port', u'user', u'group', u'clarifi', u'harbour', u'develop']
[u'powerlin', u'fight', u'head', u'court']
[u'public', u'warn', u'power', u'woe']
[u'quri', u'urg', u'gaza', u'pull']
[u'raider', u'challeng', u'fine']
[u'receiv', u'consid', u'sale', u'option']
[u'reef', u'committe', u'plan', u'meet']
[u'regul', u'spot', u'train', u'exit', u'glitch']
[u'richmond', u'hop', u'ironman', u'upset']
[u'riverland', u'face', u'saltier', u'water']
[u'kelli', u'child', u'charg', u'drop']
[u'roddick', u'eas', u'past', u'escud', u'henman', u'down', u'arthur']
[u'feast', u'south', u'africa']
[u'rusedski', u'get', u'davi']
[u'govt', u'econom', u'effort']
[u'saint', u'focus', u'footi', u'probe', u'continu']
[u'student', u'repriev', u'increas']
[u'sauvag', u'shelv', u'retir', u'plan']
[u'school', u'back', u'polic', u'probe', u'abus']
[u'senior', u'miss', u'concession', u'transport', u'govt']
[u'sever', u'storm', u'northern']
[u'share', u'market', u'slip', u'record', u'high']
[u'shop', u'owner', u'welcom', u'guilti', u'plea', u'shoot']
[u'pull', u'plug', u'sydney', u'race', u'coverag']
[u'soccer', u'associ', u'approv', u'power', u'grind', u'giveaway']
[u'stanthorp', u'mayor', u'stand']
[u'suicid', u'bomber', u'baghdad', u'blast']
[u'talli', u'bronco', u'mileston']
[u'govt', u'conced', u'easi', u'answer', u'specialist']
[u'tasmanian', u'popul', u'hit', u'record', u'level']
[u'tenterfield', u'cannabi', u'add', u'drug', u'haul']
[u'terror', u'truce', u'spain', u'australia']
[u'thousand', u'oppos', u'park', u'meter', u'plan']
[u'kill', u'attack', u'near', u'iraqi', u'station']
[u'tick', u'clock', u'creat', u'mayhem']
[u'martyn', u'dazzl', u'australia', u'seiz', u'control']
[u'townsvill', u'teen', u'prepar', u'english', u'channel']
[u'transport', u'author', u'discuss', u'secur', u'issu']
[u'truck', u'crash', u'close', u'causeway', u'lane']
[u'charg', u'abolon', u'poach']
[u'sieg', u'ganguli', u'look', u'deliv', u'pakistan']
[u'union', u'accept', u'govt', u'plan', u'worker', u'comp']
[u'watchdog', u'agre', u'chang', u'nuclear', u'rule']
[u'name', u'pakistan', u'major', u'alli']
[u'surg', u'year', u'high']
[u'enter', u'iraq', u'wheat', u'market']
[u'soldier', u'kill', u'iraq', u'strike']
[u'vow', u'finish', u'iraq']
[u'vast', u'reserv', u'freez', u'water', u'mar', u'pole', u'studi']
[u'vendi', u'secur', u'mayor', u'spot']
[u'vibrat', u'pedal', u'save', u'petrol']
[u'govt', u'urg', u'releas', u'crop', u'report']
[u'violenc', u'major', u'factor', u'famili', u'case', u'court']
[u'firm', u'east', u'trade', u'tour']
[u'wander', u'koala', u'elud', u'author']
[u'warrior', u'latu', u'clear', u'face', u'dragon']
[u'watchdog', u'warn', u'telstra', u'broadband', u'fin']
[u'woman', u'give', u'birth', u'set', u'ident', u'twin']
[u'woman', u'injur', u'arthur', u'seat', u'chairlift']
[u'worker', u'hope', u'tide', u'turn', u'beach', u'pipelin']
[u'wrong', u'number', u'lead', u'woman', u'arrest']
[u'yeppoon', u'chang', u'trend']
[u'zaragoza', u'edg', u'real', u'thriller']
[u'zigoura', u'get', u'back', u'malle']
[u'zimbabw', u'mercenari', u'murder', u'conspiraci', u'charg']
[u'accc', u'put', u'telstra', u'notic']
[u'account', u'prepar', u'money', u'spend']
[u'countri', u'brink']
[u'adelaid', u'terminello', u'doubt', u'south', u'crunch']
[u'club', u'stand', u'accus', u'player']
[u'sponsor', u'withdraw', u'support']
[u'compani', u'outlin', u'reason', u'properti', u'sell']
[u'agforc', u'consid', u'legal', u'action', u'tree', u'clear']
[u'alleg', u'libyan', u'terrorist', u'releas', u'british']
[u'qaeda', u'claim', u'baghdad', u'hotel', u'bomb']
[u'qaeda', u'link', u'group', u'statement', u'fair', u'credibl']
[u'aristid', u'reunit', u'daughter']
[u'asic', u'accus', u'exceed', u'power', u'kennedi', u'raid']
[u'asteroid', u'closest', u'know', u'pass', u'earth']
[u'dead', u'maldiv', u'ferri', u'disast']
[u'australia', u'look', u'victori', u'target']
[u'australian', u'dollar', u'surg', u'cent']
[u'australian', u'stock', u'finish', u'week', u'slight']
[u'australian', u'join', u'global', u'anti', u'ralli']
[u'australia', u'good', u'england', u'test']
[u'author', u'launch', u'search', u'wildlif', u'park']
[u'autumn', u'carniv', u'face', u'black']
[u'ballarat', u'make', u'high', u'tech', u'appoint']
[u'beatti', u'unbow', u'tree', u'clear', u'legisl']
[u'bike', u'challeng', u'near']
[u'bilbao', u'madrid', u'defeat', u'queiroz']
[u'blast', u'echo', u'baghdad', u'powel', u'visit']
[u'bolton', u'count', u'okocha', u'cast', u'spell', u'gunner']
[u'britain', u'threaten', u'olymp', u'secur']
[u'brogden', u'reaffirm', u'princ', u'highway', u'support']
[u'busi', u'bodi', u'call', u'popul', u'boost']
[u'cairn', u'drench', u'low', u'loiter', u'coast']
[u'canberra', u'hous', u'afford', u'level']
[u'cane', u'toad', u'close', u'darwin']
[u'care', u'indian', u'marri', u'grandmoth']
[u'casa', u'begin', u'pilot', u'alcohol', u'drug', u'test', u'review']
[u'cathol', u'school', u'offer', u'male', u'femal', u'scholarship']
[u'chariti', u'criticis', u'workplac', u'agreement']
[u'childcar', u'centr', u'blitz', u'plan']
[u'cloud', u'hang', u'rural', u'counsellor', u'fund']
[u'coalit', u'will', u'downer']
[u'coal', u'miner', u'look', u'boost', u'export']
[u'communiti', u'station', u'oper', u'challeng', u'licenc']
[u'concern', u'air', u'tourism', u'promot']
[u'council', u'defend', u'road', u'condit']
[u'council', u'maintain', u'push', u'better', u'mobil', u'phone']
[u'council', u'merger', u'draw', u'countri', u'labor']
[u'council', u'tri', u'allay', u'plan', u'chang', u'concern']
[u'council', u'worker', u'push', u'casual']
[u'counter', u'terror', u'exercis', u'posit']
[u'countri', u'sound', u'school', u'curriculum']
[u'court', u'make', u'record', u'medic', u'neglig', u'payout']
[u'courtney', u'love', u'arrest', u'assault', u'charg']
[u'crash', u'truck', u'block', u'newel', u'highway']
[u'cyclon', u'expect', u'low']
[u'celebr', u'cultur', u'harmoni']
[u'derail', u'spark', u'rail', u'line']
[u'despotovski', u'loss', u'hurt', u'glori', u'power']
[u'detent', u'centr', u'deni', u'undu', u'forc']
[u'doctor', u'shock', u'run', u'hospit']
[u'fight', u'concern', u'spark', u'rspca', u'raid']
[u'donald', u'trump', u'seek', u'copyright', u'your', u'fire']
[u'doubt', u'cast', u'bulk', u'bill', u'plan']
[u'drought', u'tighten', u'grip', u'district']
[u'focus', u'polic', u'staff', u'woe']
[u'ebay', u'face', u'court', u'bogus']
[u'farmer', u'battl', u'fight', u'rabbit', u'plagu']
[u'farmer', u'hope', u'gain', u'aust', u'china', u'trade', u'deal']
[u'north', u'cyclon', u'watch']
[u'feder', u'agassi', u'indian', u'well', u'showdown']
[u'govt', u'put', u'pressur', u'highway', u'bypass']
[u'govt', u'urg', u'ravensthorp', u'fund']
[u'ferdinand', u'septemb', u'appeal', u'fail']
[u'financi', u'receiv', u'regular', u'check']
[u'firefight', u'water', u'bomb', u'forest', u'blaze']
[u'fish', u'vessel', u'crew', u'face', u'trial', u'octob']
[u'council', u'execut', u'sue', u'sack']
[u'form', u'revers', u'stump', u'martyn']
[u'futur', u'grain', u'export', u'pakistan', u'uncertain']
[u'leak', u'spark', u'high', u'school', u'evacu']
[u'gasnier', u'consid', u'quit', u'dragon', u'chief']
[u'reserv', u'sustain']
[u'girl', u'warn', u'play', u'rain', u'shoe']
[u'govt', u'announc', u'child', u'protect', u'research', u'chair']
[u'govt', u'defend', u'industri', u'reform']
[u'govt', u'plan', u'process']
[u'govt', u'blame', u'atsic', u'head', u'quit', u'clark']
[u'govt', u'urg', u'histor', u'monetari', u'document']
[u'green', u'group', u'applaud', u'goulburn', u'river', u'probe']
[u'hame', u'razzaq', u'pakistan', u'home']
[u'head', u'knock', u'flatten', u'red', u'skipper', u'flatley']
[u'health', u'chief', u'air', u'regret', u'famili', u'grief']
[u'health', u'aim', u'rural', u'women']
[u'health', u'servic', u'director', u'reject', u'matern', u'claim']
[u'hib', u'aim', u'final', u'heartbreak']
[u'hope', u'realism', u'iraq']
[u'hope', u'fade', u'overboard']
[u'hous', u'corpor', u'get', u'traine', u'fund']
[u'qaeda', u'use', u'internet']
[u'howard', u'meet', u'keelti']
[u'hugh', u'protest', u'innoc', u'bulldog', u'sack']
[u'hume', u'weir', u'wall', u'get', u'revamp']
[u'hundr', u'miss', u'indonesian', u'ferri', u'sink']
[u'hunter', u'jobless', u'rate', u'rise']
[u'import', u'regul', u'call', u'banana', u'quarantin', u'review']
[u'indigen', u'land', u'agreement', u'reach']
[u'indonesia', u'doubt', u'downer', u'figur']
[u'inspector', u'need', u'comprehens', u'mandat', u'north', u'korea']
[u'inspir', u'jayasuriya', u'give', u'lanka', u'hope']
[u'iraq', u'year']
[u'ironwoman', u'hop', u'flat', u'surf', u'championship']
[u'jayawarden', u'fall', u'lanka', u'fight']
[u'crash', u'kill', u'kiwi', u'olympian']
[u'kennedi', u'front', u'court', u'asic', u'action']
[u'lankan', u'sight', u'victori', u'kandi']
[u'latham', u'advoc', u'time', u'job', u'footbal']
[u'latham', u'critic', u'govt', u'freeway', u'backflip']
[u'latham', u'plan', u'disclosur', u'cultur']
[u'latrob', u'council', u'exec', u'take', u'ballarat']
[u'releg', u'fowler', u'second', u'singapor']
[u'livestock', u'identifi', u'scheme', u'confus', u'agforc']
[u'local', u'look', u'good', u'cycl', u'tour']
[u'loxton', u'popul', u'swell', u'barnesi', u'chariti']
[u'madrid', u'bomb', u'suspect', u'remand']
[u'madrid', u'toll', u'hit']
[u'charg', u'australian', u'woman', u'murder', u'india']
[u'charg', u'salt', u'nightclub', u'murder']
[u'court', u'email', u'scam']
[u'mar', u'rover', u'readi', u'cruis']
[u'maverick', u'showcas', u'import']
[u'mbeki', u'shrug', u'death', u'threat']
[u'mcmahon', u'boost', u'australia', u'netbal', u'open']
[u'medic', u'record', u'tamper', u'alleg', u'air']
[u'membership', u'alleg', u'disrupt', u'select']
[u'monkey', u'hunter', u'risk', u'virus']
[u'arrest', u'forster', u'unrest']
[u'pride', u'stake', u'rome', u'rival', u'squar']
[u'maiden', u'speech', u'focus', u'job', u'health']
[u'speech', u'focus', u'unit', u'develop']
[u'munro', u'upbeat', u'ironwoman', u'chanc']
[u'muslim', u'leader', u'warn', u'aust', u'attack']
[u'nato', u'deploy', u'troop', u'kosovo']
[u'nato', u'troop', u'raid', u'albanian', u'apart']
[u'busi', u'chamber', u'speak', u'voic']
[u'sale', u'rise']
[u'manag', u'offic', u'appoint']
[u'make', u'dental']
[u'make', u'maiden', u'speech']
[u'elect', u'compo', u'candid', u'council']
[u'releas', u'crop', u'report']
[u'northern', u'mop', u'sever', u'storm']
[u'govt', u'give', u'council', u'green', u'plan']
[u'govt', u'push', u'austeel', u'answer']
[u'nurs', u'polic', u'ambul', u'worker', u'mull']
[u'obrien', u'keep', u'livingston', u'doubl', u'dream', u'aliv']
[u'price', u'eas', u'year', u'high']
[u'origin', u'hooker', u'smith', u'commit', u'storm']
[u'pakistan', u'armi', u'battl', u'encircl', u'milit']
[u'pakistani', u'cricket', u'drop', u'case', u'akhtar']
[u'pakistani', u'drop', u'akhtar', u'case', u'help', u'india', u'tour']
[u'pakistan', u'launch', u'strike', u'corner', u'milit']
[u'pakistan', u'surround', u'qaeda', u'figur']
[u'pakistan', u'prepar', u'qaeda', u'hideout', u'assault']
[u'palestinian', u'leader', u'grind', u'amid', u'isra']
[u'panel', u'overse', u'rail', u'complaint']
[u'panther', u'raider', u'second', u'half', u'blitz']
[u'panther', u'romp', u'home', u'canberra']
[u'parachut', u'pack', u'proper', u'fatal', u'jump']
[u'park', u'space', u'dri', u'toowoomba']
[u'photo', u'project', u'bring', u'pioneer', u'onlin']
[u'open', u'indefinit', u'detent', u'push']
[u'poland', u'feel', u'mislead', u'iraqi', u'wmds']
[u'polic', u'detail', u'crime', u'fight']
[u'polic', u'launch', u'probe', u'chairlift', u'accid']
[u'polish', u'presid', u'misquot', u'iraq']
[u'poor', u'work', u'practic', u'blame', u'man', u'death']
[u'port', u'stand', u'accus', u'player']
[u'power', u'util', u'readi', u'perth', u'heatwav']
[u'prepar', u'duck', u'shoot', u'clash']
[u'profession', u'footi', u'player', u'need', u'balanc']
[u'protest', u'highlight', u'river']
[u'public', u'drink', u'plan']
[u'public', u'council', u'sign', u'plan']
[u'polic', u'help', u'probe', u'human', u'bone']
[u'raider', u'lead', u'panther', u'break']
[u'raikkonen', u'offer', u'hope', u'ferrari', u'meltdown']
[u'region', u'busi', u'skill', u'boost']
[u'resid', u'roll', u'skate', u'park', u'concern']
[u'reward', u'boost', u'norfolk', u'murder', u'case']
[u'richard', u'armitag', u'iraq', u'futur']
[u'roebourn', u'get', u'sport', u'revamp']
[u'roo', u'draw', u'distinct', u'assault']
[u'roo', u'draw', u'distinct', u'claim']
[u'sack', u'aim', u'appeas', u'dog', u'sponsor']
[u'saddam', u'think', u'outsmart', u'interrog']
[u'govt', u'urg', u'white', u'industri', u'plan']
[u'saiki', u'shoot', u'sorenstam']
[u'search', u'overboard', u'ferri']
[u'secur', u'scare', u'shake', u'world', u'market']
[u'sewerag', u'scheme', u'construct', u'begin']
[u'shark', u'blow', u'hurrican']
[u'short', u'stint', u'mayor']
[u'shoot', u'presid', u'return', u'taiwan', u'hust']
[u'skipper', u'barrett', u'injuri', u'blow', u'dragon']
[u'korea', u'cancel', u'plan', u'send', u'troop', u'northern']
[u'south', u'east', u'help', u'fli', u'doctor', u'campaign']
[u'spain', u'legalis', u'marriag']
[u'specialist', u'help', u'reinvigor', u'derbi']
[u'africa', u'beef', u'socceroo', u'friend']
[u'strong', u'growth', u'coalb', u'methan', u'predict']
[u'studi', u'support', u'mass', u'extinct', u'theori']
[u'studi', u'link', u'clearfel', u'biodivers', u'loss']
[u'studi', u'rule', u'iron', u'seed', u'fight', u'warm']
[u'styri', u'martin', u'zealand', u'control']
[u'super', u'size', u'director', u'cook', u'realiti', u'deal']
[u'surf', u'club', u'secur', u'renov', u'fund']
[u'swaziland', u'lead', u'global', u'aid', u'rate']
[u'sweep', u'overhaul', u'hospit', u'health', u'care']
[u'taiwan', u'presid', u'shoot', u'campaign', u'trail']
[u'taliban', u'doubt', u'zawahri', u'corner']
[u'tasmanian', u'dane', u'produc', u'royal', u'beer']
[u'tiger', u'lurk', u'australian', u'hill']
[u'traffic', u'accid', u'kill', u'finland']
[u'soldier', u'milit', u'afghan', u'clash']
[u'union', u'want', u'fletcher', u'jone', u'boost']
[u'staff', u'evacu', u'kosovo']
[u'face', u'tough', u'exit', u'iraq']
[u'hospit', u'claim', u'record', u'organ', u'transplant']
[u'look', u'doubl', u'reward', u'lade']
[u'soldier', u'kill', u'afghanistan', u'clash']
[u'troop', u'kill', u'iraqi', u'arabiya', u'employe', u'colleagu']
[u'firm', u'challeng', u'union', u'right', u'entri', u'court']
[u'govt', u'fund', u'highway', u'work']
[u'webber', u'punch', u'weight', u'jaguar']
[u'weed', u'fund', u'run']
[u'west', u'indi', u'rebound', u'second', u'test', u'say', u'lara']
[u'whan', u'question', u'highway', u'stanc']
[u'wineri', u'look', u'export', u'opportun']
[u'woman', u'die', u'summerland', u'crash']
[u'wood', u'look', u'forward', u'tast', u'armi', u'train']
[u'zimbabw', u'mercenari', u'prison', u'offici']
[u'year', u'die', u'bird', u'vietnam']
[u'troop', u'reinforc', u'nato', u'kosovo']
[u'dolphin', u'dead', u'water']
[u'south', u'korean', u'ralli', u'impeach']
[u'actor', u'plead', u'guilti', u'obscen', u'case']
[u'qaeda', u'claim', u'iraq', u'hotel', u'blast', u'report']
[u'ambros', u'claim', u'race', u'adelaid']
[u'annan', u'announc', u'broad', u'probe', u'iraq']
[u'annan', u'warn', u'climat', u'chang', u'risk']
[u'anti', u'protest', u'plan']
[u'applebi', u'hunt', u'orlando']
[u'asthma', u'pregnanc', u'link', u'femal', u'foetus']
[u'australian', u'face', u'death', u'penalti', u'singapor', u'court']
[u'australian', u'hand', u'death', u'penalti', u'singapor']
[u'australia', u'prepar', u'pacif', u'troop', u'solomon', u'tour']
[u'barkley', u'england', u'grayson', u'rule']
[u'beatl', u'boss', u'add', u'sonic', u'treasuri']
[u'belgrad', u'consid', u'partit', u'kosovo', u'violenc']
[u'cut', u'mustard', u'franc']
[u'blast', u'echo', u'baghdad', u'hour', u'powel', u'visit']
[u'british', u'politician', u'win', u'iraq', u'libel', u'damag']
[u'british', u'rush', u'afghanistan']
[u'bronco', u'lose', u'berrigan', u'meyer', u'eel', u'clash']
[u'bulldog', u'trail', u'shark', u'break']
[u'bureau', u'monitor', u'coast']
[u'cairn', u'pound', u'boundari', u'black', u'cap', u'control']
[u'cayless', u'injuri', u'mar', u'rooster']
[u'chariti', u'seek', u'babi', u'boomer', u'inherit']
[u'child', u'care', u'centr', u'death', u'sid', u'coron']
[u'chines', u'media', u'break', u'silenc', u'taiwan', u'shoot']
[u'clemenc', u'australian', u'face', u'death', u'penalti']
[u'commonwealth', u'urg', u'sensit', u'travel', u'warn']
[u'communiti', u'hail', u'licenc', u'repriev']
[u'crisi', u'claim', u'popul', u'increas', u'selfish']
[u'davenport', u'reach', u'indian', u'well', u'final']
[u'dem', u'lobbi', u'retain', u'textbook', u'subsidi']
[u'dragon', u'auckland']
[u'dragon', u'upset', u'warrior']
[u'drug', u'guid', u'school']
[u'regener', u'seri']
[u'dutch', u'queen', u'mother', u'dead', u'age']
[u'emerg', u'servic', u'rise', u'disput', u'intensifi']
[u'hold', u'emerg', u'secur', u'talk']
[u'minist', u'reject', u'creat', u'european']
[u'famili', u'court', u'rule', u'revamp']
[u'north', u'batten']
[u'ferdinand', u'slam']
[u'fiji', u'caucau', u'angri', u'report', u'quit']
[u'isra', u'soldier', u'injur', u'hama', u'attack']
[u'nab', u'europ', u'largest', u'drug', u'haul']
[u'fowler', u'drop', u'singapor']
[u'gallop', u'reject', u'vote', u'rig', u'alleg']
[u'german', u'museum', u'bust', u'hitler', u'statu']
[u'golden', u'goal', u'penalti', u'sink', u'south']
[u'govt', u'hijack', u'male', u'teacher', u'agenda', u'union']
[u'govt', u'laud', u'australian', u'ralli', u'peac']
[u'govt', u'plan', u'law', u'curb', u'credit', u'card', u'skim']
[u'govt', u'plan', u'widen', u'drug', u'charg', u'penalti']
[u'govt', u'pledg', u'memori', u'restor', u'fund']
[u'greek', u'insist', u'olymp', u'track', u'despit']
[u'grigorieva', u'fail', u'latest', u'athen', u'qualif']
[u'guantanamo', u'chaplain', u'case', u'collaps']
[u'harmison', u'repeat', u'jamaica', u'heroic']
[u'heavi', u'rain', u'isol', u'north']
[u'henman', u'upset', u'roddick', u'reach', u'indian', u'well', u'semi']
[u'highland', u'beat', u'spirit', u'cat']
[u'immigr', u'raid', u'malaysian']
[u'india', u'britain', u'sign', u'trainer', u'contract']
[u'indigen', u'legal', u'tender', u'shambl']
[u'intern', u'recruit', u'eas', u'dentist']
[u'jesus', u'battl', u'zombi', u'offic']
[u'judg', u'void', u'pardon', u'argentina', u'militari']
[u'lane', u'hanrahan', u'tie', u'round', u'lead']
[u'lankan', u'confid', u'unlik', u'victori']
[u'late', u'tonga', u'sink', u'shark']
[u'leap', u'springbok', u'stun', u'waratah']
[u'leed', u'save', u'financi', u'collaps']
[u'lennon', u'readi', u'rein', u'premier']
[u'lien', u'take', u'earli', u'lead', u'taiwan', u'poll']
[u'london', u'clock', u'anti', u'protest']
[u'mauger', u'get', u'crusad', u'track']
[u'microsoft', u'founder', u'donat', u'million']
[u'microsoft', u'drop', u'xbox', u'price', u'counter', u'soni']
[u'miss', u'pregnant', u'woman', u'concern', u'polic']
[u'mobil', u'phone', u'lead', u'bushwalk', u'rescu']
[u'multin', u'forc', u'enter', u'cradl', u'haiti', u'revolt']
[u'nigerian', u'vaccin', u'stoush', u'head', u'court']
[u'confirm', u'qaeda', u'visit', u'darwin']
[u'pressur', u'say', u'tillakaratn']
[u'record', u'qaeda', u'visit', u'ruddock']
[u'north', u'queensland', u'cyclon', u'warn', u'cancel']
[u'sight']
[u'oloughlin', u'confirm', u'accus']
[u'year', u'bush', u'urg', u'alli', u'unit']
[u'pakistan', u'armi', u'pound', u'encircl', u'milit']
[u'pakistani', u'forc', u'arrest', u'qaeda', u'suspect']
[u'pakistan', u'renew', u'assault', u'qaeda', u'fighter']
[u'pakistan', u'retain', u'squad', u'remain', u'dayer']
[u'pakistan', u'militari', u'tie', u'disappoint', u'india']
[u'pantani', u'die', u'cocain', u'overdos', u'report']
[u'polic', u'locat', u'miss', u'pregnant', u'woman']
[u'policeman', u'charg', u'offenc']
[u'polic', u'probe', u'london', u'link', u'madrid', u'bomb']
[u'powel', u'regret', u'iraqi', u'journalist', u'death']
[u'power', u'compani', u'brace', u'heatwav']
[u'power', u'secur', u'grand', u'final', u'berth']
[u'presid', u'reassur', u'taiwan', u'shoot']
[u'protest', u'gather', u'peac', u'ralli', u'sydney']
[u'radio', u'upgrad', u'delay', u'disappoint', u'opposit']
[u'rare', u'coin', u'sell', u'mint']
[u'rescuer', u'miss', u'bushwalk']
[u'rooster', u'brookval']
[u'rover', u'confirm', u'presenc', u'water', u'mar']
[u'erupt', u'releas', u'abort', u'record']
[u'rumsfeld', u'prose', u'make', u'sweet', u'music']
[u'russian', u'court', u'keep', u'boss', u'khodorkovski', u'jail']
[u'schu', u'malaysia']
[u'scot', u'swing', u'underperform', u'backlin']
[u'search', u'wacol', u'escape', u'continu']
[u'search', u'overboard', u'bass', u'strait']
[u'search', u'lose', u'bushwalk']
[u'somali', u'leader', u'threaten', u'peac', u'talk', u'walkout']
[u'sorenstam', u'storm', u'arizona', u'lead']
[u'spain', u'bomb', u'suspect', u'accus', u'murder']
[u'sudan', u'humanitarian', u'crisi', u'catastroph']
[u'taiwan', u'post', u'reward', u'chen', u'shoot', u'lead']
[u'tasmanian', u'hoteli', u'expect', u'bumper', u'march']
[u'thousand', u'march', u'anti', u'protest']
[u'uefa', u'reject', u'wale', u'appeal', u'russian', u'dope', u'case']
[u'fund', u'aim', u'decker', u'boot']
[u'straw', u'blame', u'lack', u'global', u'action']
[u'unit', u'shock', u'ferdinand', u'verdict', u'fergi']
[u'unit', u'problem', u'centr', u'power', u'london']
[u'unit', u'head', u'state']
[u'urg', u'russia', u'save', u'climat', u'plan']
[u'afghan', u'troop', u'repel', u'qaeda', u'attack']
[u'daili', u'expos', u'foreign', u'correspond']
[u'doctor', u'share', u'cancer', u'treatment']
[u'stock', u'secur', u'worri', u'weigh']
[u'hide', u'iraq', u'powel']
[u'violenc', u'spiral', u'belgrad', u'consid']
[u'virgin', u'pull', u'pout', u'airport', u'urin']
[u'vote', u'rig', u'claim', u'suspend', u'preselect']
[u'warm', u'weather', u'fail', u'disrupt', u'power', u'suppli']
[u'warn', u'lead', u'australia', u'victori', u'lanka']
[u'warn', u'spearhead', u'australia']
[u'warn', u'target', u'walsh', u'record', u'colombo', u'test']
[u'webber', u'malaysian']
[u'wound', u'presid', u'vote', u'taiwan', u'elect']
[u'yemen', u'recaptur', u'cole', u'bomb', u'suspect']
[u'owner', u'charg', u'permit', u'breach']
[u'gather', u'adelaid', u'anti', u'protest']
[u'afghan', u'kill', u'million', u'welcom', u'spring']
[u'accid', u'prone', u'ferri', u'sink']
[u'actor', u'want', u'play', u'dead']
[u'afghan', u'polic', u'uncov', u'bomb', u'factori']
[u'hour', u'bill', u'plan', u'fail', u'impress', u'doctor']
[u'qaeda', u'number', u'visit', u'believ', u'downer']
[u'ambros', u'claim', u'clipsal', u'glori', u'ford']
[u'annan', u'request', u'food', u'inquiri', u'cooper']
[u'arafat', u'say', u'gibson', u'passion', u'anti', u'semit']
[u'arrest', u'serv', u'warn', u'paedophil', u'keelti']
[u'aussi', u'wrap', u'netbal', u'seri']
[u'australia', u'celebr', u'multicultur', u'harmoni']
[u'australian', u'consid', u'appeal', u'death', u'penalti']
[u'australian', u'face', u'thai', u'child', u'traffic', u'charg']
[u'bacon', u'pave', u'premier']
[u'baghdad', u'rocket', u'attack', u'kill']
[u'beatti', u'defend', u'state', u'rail', u'secur']
[u'black', u'cap', u'foil', u'kalli', u'bradman', u'record']
[u'bomb', u'fear', u'prompt', u'maritim', u'secur', u'review']
[u'critic', u'fall', u'ferri', u'wheel']
[u'breast', u'cancer', u'treatment', u'vari', u'wide', u'studi']
[u'britain', u'unabl', u'cope', u'major', u'attack', u'report']
[u'british', u'ban', u'sign', u'languag', u'report']
[u'briton', u'harrison', u'clinch', u'profession', u'titl']
[u'brumbi', u'weather', u'storm']
[u'carr', u'slump', u'latest', u'poll']
[u'china', u'arrest', u'editor', u'reformist', u'paper', u'crackdown']
[u'china', u'ignor', u'taiwan', u'poll']
[u'china', u'keep', u'close', u'taiwan']
[u'downer', u'lobbi', u'singapor', u'clemenc']
[u'dream', u'debut', u'rooki', u'carmont', u'knight', u'tame']
[u'eel', u'bounc', u'bronco']
[u'emot', u'holm', u'claim', u'ironman', u'titl']
[u'emot', u'holm', u'win', u'ironman', u'titl']
[u'employe', u'uneasi', u'free', u'trade', u'deal', u'survey']
[u'england', u'unconvinc', u'despit', u'woodward', u'optim']
[u'readi', u'talk', u'peac']
[u'north', u'clean', u'delug']
[u'feder', u'conquer', u'agassi', u'titan', u'struggl']
[u'filipino', u'bake', u'guin', u'record', u'attempt']
[u'firebomb', u'restaur', u'reopen']
[u'foxtel', u'subcontractor', u'disput', u'continu']
[u'galleri', u'industri', u'action']
[u'gambl', u'leav', u'babi', u'lock']
[u'ganguli', u'comment', u'creat', u'blood', u'miandad']
[u'genocid', u'fear', u'sudan', u'conflict', u'rag']
[u'global', u'protest', u'mark', u'iraq', u'anniversari']
[u'godzilla', u'stomp', u'sydney']
[u'govt', u'discredit', u'iraq', u'claim', u'lawrenc']
[u'govt', u'plan', u'graffiti', u'vandal', u'law']
[u'green', u'sullivan', u'perth']
[u'gunner', u'equal', u'record', u'chelsea', u'unit']
[u'hama', u'leader', u'kill', u'gaza', u'raid']
[u'harmoni', u'celebr', u'kick']
[u'harrison', u'clinch', u'profession', u'titl']
[u'health', u'campaign', u'offer', u'children', u'easter', u'amnesti']
[u'henman', u'upset', u'roddick', u'reach', u'indian', u'well', u'semi']
[u'hospit', u'win', u'festiv', u'hall', u'memori', u'sell']
[u'hussain', u'butcher', u'hold', u'firm']
[u'illeg', u'fishermen', u'face', u'faster', u'boat', u'home']
[u'india', u'pakistan', u'captain', u'feel', u'heat']
[u'inter', u'cultur', u'celebr', u'harmoni']
[u'iraqi', u'fear', u'day', u'come']
[u'iraq', u'up', u'terror', u'threat', u'ambassador']
[u'ireland', u'beat', u'itali', u'windswept', u'dublin']
[u'isra', u'west', u'bank', u'barrier', u'protest']
[u'jaguar', u'boss', u'prais', u'webber', u'fantast', u'perform']
[u'jail', u'tour', u'need', u'school', u'curriculum']
[u'johnson', u'win', u'cross', u'countri', u'gold']
[u'ankl', u'surgeri']
[u'lennon', u'continu', u'bacon', u'vision']
[u'lung', u'donor', u'shortag', u'prompt', u'plea', u'smoker']
[u'malaysian', u'head', u'poll']
[u'malaysian', u'vote', u'test', u'badawi']
[u'hospit', u'stab', u'attack', u'perth']
[u'kill', u'accid', u'walk']
[u'martin', u'strike', u'earli', u'protea', u'chase', u'huge', u'total']
[u'martin', u'strike', u'rock', u'protea', u'kalli', u'fail']
[u'miss', u'disabl', u'teen', u'sight']
[u'mobil', u'phone', u'jam', u'jail']
[u'monti', u'end', u'barren', u'victori', u'singapor']
[u'board', u'member', u'labor']
[u'haitian', u'leader', u'fail', u'secur', u'rebel', u'arm']
[u'northbridg', u'clash', u'gang', u'relat']
[u'norwich', u'slip', u'promot', u'race']
[u'sign', u'qaeda', u'number', u'pakistan']
[u'readi', u'harmoni', u'festiv']
[u'ogradi', u'milan', u'remo']
[u'pacif', u'nation', u'warn', u'aid', u'threat']
[u'pakistan', u'interrog', u'qaeda', u'suspect']
[u'palestinian', u'milit', u'apolog', u'arab', u'shoot']
[u'peac', u'activist', u'protest', u'outsid', u'parliament']
[u'penrith', u'trio', u'suspend', u'assault', u'charg']
[u'peter', u'kick', u'south', u'golden', u'point', u'glori']
[u'pilot', u'wrong', u'plane', u'crash', u'report', u'scientist']
[u'polic', u'overboard', u'ferri']
[u'poor', u'turnout', u'render', u'taiwan', u'referendum', u'invalid']
[u'poor', u'venezuelan', u'catch', u'flamingo', u'food']
[u'port', u'facil', u'major', u'secur', u'overhaul']
[u'power', u'secur', u'grand', u'final', u'berth']
[u'power', u'undecid', u'grand', u'final', u'venu']
[u'qatar', u'seek', u'advantag']
[u'foster', u'care', u'overhaul']
[u'raid', u'prove', u'visa', u'overstay', u'catch']
[u'ranger', u'return', u'form', u'thrash', u'dunde']
[u'real', u'slump', u'defeat', u'bilbao']
[u'record', u'number', u'contest', u'local', u'elect']
[u'recount', u'seek', u'taiwan', u'elect', u'presid']
[u'road', u'reopen', u'kosovo', u'return', u'calm']
[u'schumach', u'win', u'malaysia', u'webber', u'spin']
[u'scrutin', u'talli', u'abdullah', u'win', u'margin']
[u'chang', u'dream', u'clog', u'region', u'coastlin']
[u'seneg', u'presid', u'win', u'right', u'award']
[u'shark', u'scar', u'swelter', u'perth', u'resid', u'beach']
[u'siames', u'twin', u'separ', u'broadcast']
[u'sizzl', u'applebi', u'hit', u'lead', u'florida']
[u'skii', u'accid', u'leav', u'hospit']
[u'small', u'wineri', u'cut']
[u'sorenstam', u'stretch', u'arizona', u'lead']
[u'south', u'edg', u'west']
[u'spain', u'demand', u'radic', u'chang', u'iraq', u'strategi']
[u'storm', u'knight', u'lock', u'half', u'time']
[u'swedish', u'prosecutor', u'wrap', u'aceh', u'interview']
[u'taiwan', u'elect', u'controversi', u'escal']
[u'ten', u'thousand', u'oppos', u'iraq']
[u'thousand', u'displac', u'kosovo', u'violenc']
[u'thousand', u'march', u'york', u'iraq', u'anniversari']
[u'palestinian', u'shoot', u'dead', u'southern', u'gaza']
[u'tomasson', u'doubl', u'send', u'milan', u'clear']
[u'dead', u'separ', u'road', u'accid']
[u'peopl', u'kill', u'injur', u'smash']
[u'share', u'reward', u'sniper', u'off']
[u'armi', u'charg', u'soldier', u'cruelti', u'iraq']
[u'armi', u'queri', u'journalist', u'death', u'iraq']
[u'attack', u'pakistan', u'afghan', u'civilian', u'report']
[u'regul', u'look', u'anaemia', u'drug', u'cancer', u'risk']
[u'vike', u'sign', u'aussi', u'punter', u'bennett']
[u'oppn', u'slam', u'drug', u'law']
[u'wenger', u'promis', u'assault', u'chelsea']
[u'william', u'fear', u'malaysia', u'firework']
[u'women', u'council', u'loss', u'confound', u'mayor']
[u'worldwid', u'protest', u'iraq', u'pullout']
[u'yemen', u'captur', u'cole', u'bomb', u'suspect']
[u'zimbabw', u'file', u'charg', u'suspect']
[u'media', u'offic', u'recount', u'poor', u'communic']
[u'match', u'provid', u'fodder', u'play']
[u'albani', u'boost', u'japan', u'relationship']
[u'alic', u'spring', u'develop', u'plan', u'welcom']
[u'hurt', u'vote', u'rig', u'claim', u'gallop']
[u'qaeda', u'deputi', u'seek', u'support', u'zealand']
[u'qaeda', u'pakistani', u'militari', u'engag', u'fierc', u'clash']
[u'anderson', u'approv', u'sydney', u'airport', u'chang']
[u'anti', u'terror', u'drill', u'test', u'australian', u'agenc']
[u'applebi', u'surrend', u'hill', u'campbel']
[u'arafat', u'declar', u'day', u'mourn']
[u'archaeologist', u'unearth', u'ancient', u'bamboo', u'relic']
[u'drop', u'heavyweight', u'lose', u'grind']
[u'australia', u'biggest', u'counter', u'terror', u'exercis']
[u'baghdad', u'bear', u'design', u'win', u'architectur', u'prize']
[u'beatti', u'come', u'clean', u'govt', u'accid']
[u'beatti', u'ponder', u'north', u'maritim', u'secur', u'boost']
[u'beef', u'produc', u'urg', u'monitor', u'market']
[u'field', u'independ', u'run', u'council']
[u'turnout', u'northern', u'cycl', u'tour']
[u'black', u'cap', u'sweep', u'south', u'africa', u'asid']
[u'black', u'sue', u'holling', u'legal', u'cost']
[u'blast', u'hear', u'near', u'gaza', u'cross']
[u'bodi', u'sydney', u'inner', u'west']
[u'bowen', u'tip', u'return', u'canberra', u'showdown']
[u'die', u'southern', u'crash']
[u'bushfir', u'inquest', u'wit', u'warn', u'tell', u'truth']
[u'cabinet', u'learn', u'detail', u'famili', u'tribun']
[u'campbel', u'reel', u'applebi', u'hill']
[u'cannabi', u'phone', u'hail', u'success']
[u'cathol', u'choir', u'condemn', u'faust', u'scene']
[u'children', u'draw', u'dead', u'suicid', u'attack']
[u'child', u'safeti', u'reform', u'cost']
[u'chines', u'doctor', u'aim', u'pull', u'fast']
[u'chopper', u'join', u'search', u'miss']
[u'chief', u'play', u'olymp', u'terror', u'threat']
[u'cloud', u'seed', u'propos', u'lead', u'pollut', u'concern']
[u'coff', u'council', u'seek', u'rat', u'chang']
[u'communiti', u'urg', u'help', u'stop', u'drug', u'make']
[u'complaint', u'lay', u'mareeba']
[u'copper', u'price', u'explor', u'push']
[u'correct', u'servic', u'want', u'terrorist', u'transfer', u'power']
[u'cotton', u'fund', u'run', u'short']
[u'council', u'clean', u'drench']
[u'council', u'affect', u'servic']
[u'credit', u'card', u'inquiri', u'consid']
[u'croc', u'coach', u'reject', u'split', u'comp', u'plan']
[u'crowd', u'flock', u'bombala']
[u'cyclon', u'appear', u'north', u'coast']
[u'cyclon', u'gain', u'intens', u'coast']
[u'cyclon', u'grace', u'head', u'south', u'east']
[u'mourn', u'declar', u'kosovo']
[u'decis', u'communiti', u'station', u'delay']
[u'democrat', u'encourag', u'abus', u'hotlin']
[u'dinki', u'piano', u'play', u'trivial', u'pursuit']
[u'downer', u'call', u'calm', u'middl', u'east']
[u'downer', u'clemenc', u'condemn', u'australian']
[u'doyl', u'clarifi', u'reason', u'bendigo', u'trip']
[u'dravid', u'kaif', u'carri', u'india', u'victori']
[u'east', u'timor', u'threaten', u'deal']
[u'environ', u'rat', u'high', u'public']
[u'guidelin', u'remain', u'toxic', u'dump']
[u'intellig', u'chief', u'plan', u'counter', u'terror']
[u'famili', u'fear', u'grow', u'miss', u'teen']
[u'feder', u'continu', u'win', u'streak']
[u'ferdinand', u'drop', u'appeal', u'report']
[u'ferrari', u'tactic', u'frustrat', u'montoya']
[u'ferrari', u'leav', u'rival', u'spin']
[u'fifth', u'place', u'finish', u'aussi', u'cross', u'countri', u'team']
[u'investig', u'examin', u'gut', u'hous']
[u'restrict', u'eas', u'north', u'west']
[u'fisheri', u'depart', u'make', u'record', u'abalon', u'haul']
[u'flood', u'prevent', u'measur', u'loom']
[u'advis', u'say', u'bush', u'terribl', u'fight']
[u'foxtel', u'disput', u'end']
[u'franc', u'right', u'leav', u'gain', u'region', u'poll']
[u'french', u'soldier', u'kill', u'haiti', u'accid']
[u'governor', u'swear', u'cabinet']
[u'govt', u'happi', u'lift', u'pork', u'subsidi']
[u'green', u'seek', u'keelti', u'inquiri']
[u'enthusiast', u'sentenc', u'jail', u'appeal']
[u'hama', u'leader', u'bodi', u'carri', u'gaza']
[u'hamass', u'spiritu', u'leader', u'kill']
[u'hama', u'vow', u'reveng', u'leader', u'death']
[u'henin', u'hardenn', u'crush', u'davenport']
[u'herbal', u'trial', u'begin']
[u'highway', u'reopen', u'chemic', u'spill']
[u'hope', u'build', u'work', u'boost', u'cunnamulla']
[u'hospit', u'announc', u'matern', u'servic', u'chang']
[u'hospit', u'boost', u'theatr', u'equip']
[u'howard', u'remain', u'tight', u'lip', u'keelti', u'talk']
[u'hull', u'back', u'nation', u'healthcar', u'scheme']
[u'icpa', u'upbeat', u'school', u'bypass', u'plan']
[u'iraqi', u'cleric', u'warn', u'constitut']
[u'iraqi', u'journalist', u'protest', u'kill']
[u'iraq', u'terror', u'threat', u'presid']
[u'ironman', u'champ', u'pay', u'tribut', u'father']
[u'jarrah', u'honey', u'fight', u'infect']
[u'joint', u'oper', u'nab', u'illeg', u'tobacco']
[u'kangaroo', u'school', u'share', u'manag']
[u'keelti', u'forese', u'terror']
[u'keith', u'lose', u'easter', u'driver', u'reviv']
[u'kellerberrin', u'die', u'road', u'crash']
[u'labor', u'support', u'smaller', u'wage', u'claim']
[u'landhold', u'consid', u'toxic', u'dump', u'site', u'snub']
[u'larsson', u'target', u'twice', u'runaway', u'leader']
[u'latham', u'target', u'govt', u'keelti', u'issu']
[u'leader', u'react', u'hama', u'founder', u'kill']
[u'littl', u'impact', u'expect', u'cyclon', u'grace']
[u'locust', u'leav', u'dubbo', u'head', u'bourk']
[u'charg', u'albani', u'crime']
[u'stand', u'trial', u'kill', u'children']
[u'manufactur', u'growth', u'slow', u'survey']
[u'march', u'confer', u'provid', u'tourism', u'bonanza']
[u'mcewen', u'focus', u'dairi', u'industri', u'woe']
[u'mclaren', u'year']
[u'meet', u'seek', u'address', u'council', u'casual', u'number']
[u'guilti', u'cannabi', u'crop']
[u'miner', u'compani', u'kick', u'pilot', u'plant']
[u'minist', u'kill', u'tank', u'battl', u'rage', u'afghan', u'citi']
[u'minist', u'decid', u'asbesto', u'death', u'probe']
[u'minist', u'help', u'develop', u'richmond', u'aquacultur']
[u'monash', u'increas', u'fee']
[u'monti', u'win', u'singapor', u'ohern', u'tie']
[u'staff', u'help', u'boost', u'south', u'west', u'manag']
[u'fatal', u'accid', u'motorcyclist', u'fault', u'report']
[u'motorcyclist', u'die', u'alpin', u'crash']
[u'back', u'maritim', u'secur', u'review']
[u'monitor', u'plan', u'rail', u'servic']
[u'muslim', u'cleric', u'visit', u'promot', u'harmoni']
[u'muslim', u'group', u'plan', u'bomb', u'defend', u'islam']
[u'mysteri', u'death', u'prompt', u'public', u'help']
[u'net', u'sponsor', u'final', u'seri']
[u'negoti', u'promot', u'free', u'trade', u'deal']
[u'nepales', u'armi', u'say', u'troop', u'kill', u'hundr', u'rebel']
[u'cabinet', u'swear']
[u'resolut', u'esso', u'disput']
[u'warn', u'offici', u'shape', u'ship']
[u'welcom', u'mortim', u'resign']
[u'govt', u'urg', u'elect', u'bill']
[u'look', u'combat', u'katherin', u'crime', u'rate']
[u'muslim', u'group', u'say', u'receiv', u'suspici', u'call']
[u'take', u'terror', u'exercis']
[u'hand', u'england', u'foot']
[u'opposit', u'urg', u'chang', u'child', u'death', u'report']
[u'pair', u'charg', u'home', u'invas']
[u'pakistan', u'suspend', u'qaeda', u'offens']
[u'palestinian', u'author', u'condemn', u'yassin', u'kill']
[u'palestinian', u'kill', u'ralli', u'doctor']
[u'time', u'dentist', u'servic', u'chinchilla']
[u'peac', u'start', u'duck', u'hunt', u'season']
[u'perth', u'swelter', u'record', u'break', u'march', u'heat']
[u'pitland', u'coordin', u'commit', u'month']
[u'plucki', u'japanes', u'hors', u'preserv', u'lose', u'streak']
[u'polic', u'hunt', u'arm', u'bandit']
[u'polic', u'moran', u'kill']
[u'polic', u'probe', u'alburi', u'jack']
[u'polic', u'probe', u'fatal', u'crash']
[u'polic', u'probe', u'vandal', u'attack']
[u'polic', u'seek', u'public', u'help', u'murder', u'case']
[u'pooch', u'soak', u'luxuri', u'treatment']
[u'portland', u'port', u'secur', u'plan']
[u'portsmouth', u'gain', u'vital', u'south', u'coast', u'derbi']
[u'port', u'vulner', u'marin', u'author', u'say']
[u'primus', u'expect', u'play']
[u'properti', u'rise', u'hurt', u'home', u'buyer']
[u'public', u'support', u'seek', u'septic', u'tank', u'plan']
[u'push', u'agn', u'water', u'pool']
[u'question', u'rais', u'forest', u'log']
[u'question', u'remain', u'gaswork', u'contamin']
[u'rail', u'author', u'hold', u'anti', u'terror', u'talk']
[u'ralli', u'hear', u'kempsey', u'hospit', u'fear']
[u'rocket', u'attack', u'mark', u'iraq', u'occup', u'anniversari']
[u'rock', u'format', u'provid', u'miner']
[u'ruddock', u'quiet', u'brigitt', u'terror', u'cell']
[u'safeti', u'polici', u'cover', u'emerg', u'inquiri']
[u'govt', u'back', u'decis', u'drop', u'rape', u'case']
[u'govt', u'back', u'decis', u'drop', u'rape', u'case']
[u'oppn', u'highlight', u'salt', u'water', u'concern']
[u'scientist', u'cousin', u'sar']
[u'scud', u'fire', u'fit', u'advis']
[u'sear', u'sign', u'shark']
[u'senat', u'reject', u'unfair', u'dismiss']
[u'senat', u'blast', u'lack', u'consult', u'child']
[u'senior', u'jail', u'embezzl']
[u'serena', u'rise', u'rank', u'return', u'near']
[u'ship', u'group', u'express', u'secur', u'doubt']
[u'sigma', u'post', u'better', u'expect', u'profit']
[u'soccer', u'boss', u'keen', u'avoid', u'cod']
[u'sorenstam', u'open', u'lpga', u'season', u'style']
[u'south', u'korea', u'confirm', u'bird', u'case']
[u'speed', u'leav', u'road', u'safeti', u'author', u'perplex']
[u'sport', u'group', u'stop', u'elect', u'involv']
[u'lanka', u'play', u'pride']
[u'student', u'protest', u'propos', u'monash', u'jump']
[u'studi', u'consid', u'alcohol', u'harm', u'reduct']
[u'summit', u'aviat', u'safeti', u'issu']
[u'sunscreen', u'develop', u'fruit', u'crop']
[u'sword', u'wield', u'bandit', u'boy']
[u'taiwan', u'court', u'appoint', u'judg', u'rule', u'vote']
[u'taiwan', u'poll', u'assassin', u'attempt', u'question']
[u'tasmania', u'say', u'peta', u'inform', u'log']
[u'prison', u'cruelti', u'case']
[u'charg', u'northbridg', u'brawl']
[u'wound', u'attack', u'near', u'aviv']
[u'tiger', u'play', u'worst', u'finish', u'year']
[u'tiger', u'protest', u'offici', u'blunder']
[u'tiger', u'want', u'point', u'share', u'offici', u'blunder']
[u'fall', u'scandal', u'fallout', u'widen']
[u'israel', u'cabinet', u'oppos', u'assassin']
[u'kill', u'baghdad', u'explos']
[u'palestinian', u'kill', u'gaza', u'militari', u'sourc']
[u'urg', u'cooper', u'terror', u'fight']
[u'understand', u'end', u'terror', u'muslim', u'cleric']
[u'student', u'wait', u'longer', u'accommod']
[u'updat', u'port', u'secur', u'plan', u'oper', u'soon']
[u'charg', u'iraqi', u'prison', u'assault']
[u'valencia', u'close', u'real']
[u'govt', u'stand', u'firm', u'fast', u'rail', u'project']
[u'kindergarten', u'upgrad']
[u'violenc', u'forc', u'abandon', u'rome', u'derbi']
[u'virgin', u'blue', u'enter', u'freight', u'market']
[u'voss', u'like', u'starter', u'lynch', u'doubt']
[u'cannabi', u'effect', u'decriminalis']
[u'project', u'highlight', u'world', u'stage']
[u'mart', u'auto', u'largest', u'compani']
[u'oppn', u'target', u'region', u'issu', u'histor']
[u'warn', u'chase', u'doubl', u'world', u'record']
[u'senat', u'stand', u'union', u'vote', u'rig', u'claim']
[u'product', u'food', u'crop']
[u'weather', u'warn', u'issu', u'coast']
[u'need', u'improv', u'beat', u'england', u'say', u'laport']
[u'weve', u'work', u'webber']
[u'wit', u'naval', u'disast', u'award', u'compens']
[u'woolford', u'face', u'high', u'tackl', u'charg']
[u'world', u'face', u'challeng', u'terrorist', u'downer', u'say']
[u'abbott', u'latham', u'head', u'head', u'parliament']
[u'expos', u'port', u'secur', u'failur', u'darwin']
[u'firefight', u'shake', u'possibl']
[u'aerial', u'survey', u'gaug', u'locust', u'threat']
[u'back', u'saint', u'miln', u'montagna', u'select']
[u'apologis', u'biki', u'quip']
[u'age', u'care', u'nurs', u'campaign', u'better', u'fund']
[u'age', u'care', u'worker', u'highlight', u'discrep']
[u'alarm', u'bell', u'ring', u'dingo', u'futur']
[u'albanian', u'orchestr', u'kosovo', u'violenc', u'nato']
[u'applebi', u'florida', u'near', u'miss']
[u'arthur', u'play', u'burni', u'tenni', u'challeng']
[u'close']
[u'aussi', u'wool', u'high', u'demand', u'russia']
[u'swim', u'coach', u'happi', u'open', u'athen', u'pool']
[u'australian', u'netbal', u'remain', u'undef', u'tour']
[u'rooney', u'face', u'match']
[u'bail', u'club', u'link', u'rome', u'derbi', u'riot']
[u'announc', u'nickel', u'project']
[u'sea', u'spare', u'sunshin', u'coast', u'beach']
[u'bird', u'play', u'havoc', u'break', u'hill', u'power']
[u'birth', u'centr', u'decis', u'spark', u'obstetrician', u'job']
[u'blair', u'visit', u'libya', u'thursday', u'report']
[u'bodi', u'wash', u'beach']
[u'bomb', u'explod', u'thailand', u'south']
[u'brother', u'speak', u'mortim', u'resign']
[u'brumbi', u'loos', u'truth', u'dockland', u'studio']
[u'age', u'care', u'worker', u'boost']
[u'council', u'split', u'ward']
[u'canberra', u'fire', u'inquest', u'hear', u'emerg', u'remov']
[u'cattalini', u'ponder', u'itali']
[u'chelsea', u'hose', u'manag', u'specul']
[u'china', u'end', u'right', u'talk']
[u'climat', u'chang', u'greater', u'threat', u'terror']
[u'coal', u'train', u'disput']
[u'communiti', u'feel', u'impact', u'miss', u'teen']
[u'compet', u'teacher', u'deserv', u'bonus', u'opposit']
[u'confer', u'debat', u'distanc', u'educ', u'issu']
[u'council', u'approv', u'youth', u'centr']
[u'council', u'candid', u'urg', u'stay', u'real']
[u'councillor', u'reject', u'senior', u'centr', u'decis']
[u'council', u'ponder', u'rezon', u'plan']
[u'counter', u'terror', u'exercis', u'continu']
[u'court', u'refus', u'moran', u'kill']
[u'crouton', u'land', u'brain', u'surgeon', u'soup']
[u'cyclon', u'bring', u'surf', u'north', u'coast']
[u'cyclon', u'whip', u'gold', u'coast', u'wave']
[u'darwin', u'mayor', u'call', u'help', u'halt', u'tourism', u'drop']
[u'date', u'pacif', u'island', u'forum']
[u'davey', u'lead', u'rooki', u'charg', u'demon']
[u'david', u'jone', u'announc', u'huge', u'profit', u'boost']
[u'detent', u'centr', u'manag', u'spotlight']
[u'diagnosi', u'injur', u'bronco', u'tate']
[u'diplomat', u'defend', u'refer', u'alleg', u'child']
[u'oppos', u'centrepoint', u'plan']
[u'dog', u'balanc', u'right', u'gallop']
[u'doubt', u'cast', u'health', u'centr', u'auxiliari']
[u'doubt', u'council', u'execut', u'posit']
[u'downer', u'urg', u'iraq', u'deadlin']
[u'downer', u'welcom', u'malaysian', u'elect', u'result']
[u'doyl', u'talk', u'bendigo', u'issu']
[u'driver', u'bare', u'undi', u'fli', u'doctor']
[u'elect', u'appoint', u'hama', u'leader']
[u'elvi', u'link', u'scottish', u'villag', u'shake']
[u'england', u'close', u'caribbean', u'victori']
[u'england', u'recal', u'grayson', u'pari', u'showdown']
[u'england', u'jone', u'play', u'sarwan', u'spat']
[u'entri', u'seek', u'naidoc', u'award']
[u'guidelin', u'fuel', u'petrol', u'station', u'concern']
[u'minist', u'pledg', u'anti', u'terror', u'cooper']
[u'propos', u'million', u'microsoft', u'fine', u'report']
[u'farmer', u'group', u'odd', u'child', u'work', u'legisl']
[u'govt', u'urg', u'fund', u'burdekin', u'work']
[u'fina', u'anger', u'athen', u'pool', u'roof', u'fiasco']
[u'manag', u'plan', u'underway']
[u'fisher', u'claim', u'reef', u'research']
[u'flower', u'carniv', u'boost', u'visitor', u'number']
[u'premier', u'rupert', u'hamer', u'die']
[u'arrest', u'madrid', u'blast']
[u'free', u'trade', u'negoti', u'central']
[u'fruit', u'fighter', u'nest', u'grow']
[u'fund', u'urg', u'cancer', u'treatment', u'fund']
[u'gallop', u'promis', u'probe', u'vote', u'fraud', u'claim']
[u'gather', u'focus', u'grain', u'rail', u'line']
[u'fight']
[u'gold', u'medallist', u'elliott', u'name', u'athlet', u'review']
[u'reject', u'prison', u'cruelti', u'claim']
[u'govt', u'accus', u'tri', u'nurs']
[u'govt', u'condemn', u'labor', u'unfair', u'dismiss']
[u'govt', u'deni', u'knowledg', u'rwandan', u'suspect']
[u'govt', u'guarante', u'second', u'seat']
[u'govt', u'increas', u'refuge', u'number']
[u'green', u'wast', u'power', u'energi', u'plant']
[u'group', u'develop', u'interest', u'theatr']
[u'hadid', u'smash', u'architectur', u'glass', u'ceil']
[u'heatwav', u'turn', u'green', u'space', u'brown']
[u'hemp', u'grower', u'send', u'cannabi', u'educ', u'politician']
[u'hill', u'clarifi', u'comment', u'iraqi', u'weapon']
[u'hill', u'say', u'keelti', u'inquiri', u'wast', u'time']
[u'howard', u'faze', u'latest', u'opinion', u'poll']
[u'hundr', u'homeless', u'flood']
[u'hydro', u'eye', u'indian', u'water', u'project']
[u'clear', u'billion', u'argentina']
[u'indigen', u'peopl', u'access', u'right', u'north']
[u'isra', u'forc', u'block', u'road']
[u'isra', u'forc', u'seal', u'gaza', u'strip']
[u'israel', u'say', u'arafat']
[u'jackson', u'accus', u'testifi']
[u'jail', u'term', u'prescrib', u'fake', u'doctor']
[u'janet', u'jackson', u'receiv', u'soul', u'train', u'award']
[u'pose', u'credibl', u'threat', u'say', u'terror', u'expert']
[u'fear', u'lose', u'credibl']
[u'keelti', u'didnt', u'tender', u'resign', u'howard']
[u'kennett', u'call', u'nation', u'health', u'audit']
[u'kennett', u'end', u'polit', u'comeback', u'rumour']
[u'labor', u'democrat', u'reject', u'keelti', u'inquiri']
[u'labor', u'push', u'second', u'sydney', u'airport', u'plan']
[u'latham', u'offer', u'iraq', u'troop', u'pull', u'poll', u'observ']
[u'lithgow', u'lion', u'hunter', u'claim', u'evid']
[u'littl', u'cyclon', u'damag', u'heron']
[u'madonna', u'get', u'groov', u'tour']
[u'guilti', u'murder', u'retrial']
[u'jail', u'busi', u'blaze']
[u'question', u'melbourn', u'shoot']
[u'court', u'theft', u'drive', u'charg']
[u'mass', u'anim', u'death', u'spark', u'crackdown']
[u'massiv', u'crowd', u'mourn', u'hama', u'leader']
[u'mayor', u'reject', u'civic', u'centr', u'claim']
[u'mayor', u'rule', u'merger']
[u'microsoft', u'call', u'propos', u'fine', u'unjustifi']
[u'west', u'avoid', u'horror', u'season']
[u'miner', u'offer', u'traffic', u'assur']
[u'worker', u'rise']
[u'minist', u'defend', u'hospit', u'condit']
[u'minist', u'pledg', u'address', u'coast', u'transport']
[u'mix', u'reaction', u'boycott', u'threat']
[u'monash', u'campus', u'damag', u'protest']
[u'monsanto', u'doubt', u'spread']
[u'moodi', u'cut', u'rat', u'bowi', u'bond']
[u'loan', u'go', u'farmer']
[u'mourn', u'condemn', u'follow', u'hama', u'leader', u'death']
[u'dismiss', u'cloud', u'seed', u'concern']
[u'muppet', u'launch', u'middl', u'east', u'peac', u'mission']
[u'nasa', u'find', u'dead', u'fault', u'shuttl', u'tail']
[u'nat', u'hope', u'toxic', u'wast', u'dump', u'rethink']
[u'navi', u'chief', u'take', u'behaviour']
[u'law', u'curb', u'club', u'hop']
[u'report', u'track', u'traffic']
[u'watchdog', u'name']
[u'nigeria', u'offer', u'aristid', u'temporari', u'stay']
[u'nightclub', u'troubl', u'nois', u'secur']
[u'guarante', u'water', u'entitl']
[u'nomin', u'flow', u'race', u'club', u'meet']
[u'nato', u'troop', u'greek', u'soil', u'game', u'minist']
[u'quick', u'nowra', u'traffic', u'woe']
[u'govt', u'pledg', u'convent', u'centr', u'plan']
[u'govt', u'commit', u'reduc', u'surgeri', u'wait']
[u'oppn', u'want', u'drop', u'airport', u'studi']
[u'olymp', u'memorabilia', u'steal', u'perkin', u'home']
[u'free', u'madrid', u'bomb', u'hold']
[u'oppn', u'seek', u'mersey', u'hospit', u'assur']
[u'organis', u'consid', u'surfest', u'woe']
[u'parliament', u'picnic', u'latham', u'tell']
[u'pathologist', u'agre', u'sid', u'definit']
[u'peponi', u'real', u'dog', u'boss', u'folk']
[u'peter', u'mortim', u'consid', u'bulldog', u'post']
[u'phillpot', u'secur', u'mayor', u'spot']
[u'farmer', u'welcom', u'subsidi', u'decis']
[u'plane', u'bellyland', u'darwin', u'airport']
[u'plan', u'focus', u'byron', u'shire', u'futur']
[u'plantat', u'firm', u'boost', u'green', u'triangl', u'stake']
[u'polic', u'seek', u'plane', u'mishap', u'detail']
[u'polic', u'seek', u'sheet', u'detail', u'murder', u'probe']
[u'polic', u'stage', u'traffic', u'blitz']
[u'poll', u'spell', u'doubl', u'troubl', u'howard']
[u'pont', u'shrug', u'head', u'knock']
[u'possibl', u'link', u'antidepress', u'suicid']
[u'power', u'backtrack', u'grand', u'final', u'venu', u'decis']
[u'power', u'compani', u'urg', u'restraint', u'mercuri', u'rise']
[u'public', u'smoke', u'debat', u'continu']
[u'govt', u'urg', u'settl', u'wineg', u'affair']
[u'red', u'unlik', u'risk', u'flatley', u'canberra']
[u'religi', u'leader', u'speak', u'yassin', u'kill']
[u'russian', u'nuclear', u'ship', u'explod']
[u'rwanda', u'claim', u'genocid', u'suspect', u'australia']
[u'govt', u'urg', u'address', u'river', u'levi', u'concern']
[u'salin', u'drop', u'denmark', u'river']
[u'shatter', u'roger', u'month']
[u'shire', u'sign', u'indigen', u'agreement']
[u'await', u'decis', u'compo', u'lawyer']
[u'solid', u'justifi', u'shoot', u'cameraman', u'armi']
[u'spain', u'recov', u'loot', u'artefact']
[u'spanish', u'pull', u'grave', u'mistak']
[u'squabbl', u'delay', u'taiwan', u'recount']
[u'stage', u'taiwan', u'recount']
[u'stem', u'cell', u'abl', u'mend', u'break', u'heart']
[u'storm', u'seek', u'detail', u'fresh', u'claim']
[u'suburban', u'vineyard', u'turn']
[u'support', u'walhollow', u'join', u'liverpool', u'plain']
[u'survey', u'find', u'skeptic', u'poki', u'plan']
[u'sydney', u'hospit', u'close', u'ward', u'easter']
[u'taiwanes', u'polic', u'chase', u'lead', u'shoot']
[u'forestri', u'practic', u'come', u'scrutini']
[u'minist', u'outrag', u'boycott']
[u'telstra', u'struggl', u'expect', u'senat']
[u'thirteen', u'soldier', u'hurt', u'basra', u'blast']
[u'tillakaratn', u'determin', u'test']
[u'time', u'run', u'wast', u'treatment', u'submiss']
[u'seed', u'produc', u'william', u'florida', u'final']
[u'travel', u'warn', u'israel', u'issu']
[u'tunnel', u'discov', u'scene', u'pakistan', u'fight']
[u'turkish', u'famili', u'dead', u'germani']
[u'deni', u'involv', u'vote', u'rig']
[u'membership', u'figur', u'question']
[u'union', u'want', u'enterpris', u'talk', u'delay']
[u'talk', u'medic', u'school', u'plan']
[u'urg', u'pacif', u'nation', u'follow', u'fiji', u'aid']
[u'upgrad', u'plan', u'townsvill', u'port', u'secur']
[u'add', u'ansar', u'islam', u'terror', u'list']
[u'crackdown', u'hit', u'onlin', u'ident', u'scammer']
[u'deni', u'involv', u'hama', u'death']
[u'destroy', u'missil', u'defenc', u'japan']
[u'move', u'reassur', u'india', u'pakistan', u'allianc']
[u'criticis', u'china', u'human', u'right', u'record']
[u'warn', u'japan', u'prepar', u'attack']
[u'skin', u'cancer', u'risk', u'higher', u'think', u'studi']
[u'viduka', u'strike', u'help', u'leed']
[u'vieri', u'younger', u'socceroo', u'career']
[u'benefit', u'cane', u'toad', u'survey']
[u'warn', u'record', u'affect', u'team', u'pont']
[u'weather', u'bureau', u'warn', u'william', u'river', u'flood']
[u'wetland', u'insect', u'weather', u'drought']
[u'white', u'hous', u'hit', u'bush', u'terror', u'claim']
[u'warn', u'outbreak']
[u'woman', u'die', u'hous']
[u'woolford', u'cowboy', u'clash', u'hornbi', u'nutley', u'clear']
[u'wool', u'industri', u'hop', u'reforg', u'russian', u'link']
[u'workcov', u'probe', u'ride', u'accid']
[u'yambulla', u'log', u'protest', u'continu']
[u'yassin', u'death', u'spook', u'financi', u'market']
[u'boost', u'north', u'nickel', u'refineri']
[u'contract', u'award', u'drainag', u'work']
[u'aborigin', u'communiti', u'appli', u'rural', u'transact']
[u'aborigin', u'breach', u'bail', u'tradit']
[u'accident', u'explos', u'kill', u'afghan', u'soldier', u'wound']
[u'aceh', u'medic', u'kill', u'home', u'burn', u'report']
[u'adelaid', u'darwin', u'rail', u'link', u'unlik', u'terrorist', u'target']
[u'adelaid', u'speed', u'limit', u'cut', u'stay']
[u'aerial', u'survey', u'monitor', u'asbesto', u'threat']
[u'airport', u'chief', u'quiet', u'secur', u'scare']
[u'airspac', u'gain', u'support', u'director']
[u'milit', u'leader', u'mark', u'death', u'israel']
[u'ord', u'slide', u'continu']
[u'anchor', u'away', u'crane', u'barg']
[u'asbesto', u'compens', u'claim', u'peak']
[u'asbesto', u'research', u'fund', u'award', u'grant']
[u'aussi', u'princess', u'give', u'danish', u'passport']
[u'aust', u'press', u'philippin', u'stronger', u'defenc', u'tie']
[u'australian', u'economi', u'danger', u'overheat']
[u'australia', u'oppos', u'vote', u'condemn', u'yassin']
[u'bahrain', u'test', u'advantag', u'william']
[u'beatti', u'continu', u'east', u'mission', u'despit']
[u'bega', u'rais', u'polic', u'worri']
[u'bendigo', u'tip', u'continu', u'good', u'growth']
[u'shark', u'northern', u'beach']
[u'bird', u'closer', u'australian', u'shore']
[u'blaze', u'set', u'korean', u'cattl', u'fee', u'trade']
[u'brabham', u'tip', u'webber', u'great']
[u'bremer', u'move', u'allay', u'fear', u'iraq', u'interim']
[u'briton', u'break', u'balloon', u'altitud', u'record']
[u'byrn', u'council']
[u'desalin', u'research', u'centr']
[u'work', u'incent', u'nurs']
[u'royal', u'commiss', u'redfern', u'death']
[u'transport', u'invest', u'decis']
[u'centrelink', u'plan', u'high', u'tech', u'welfar', u'cheat', u'hunt']
[u'chemic', u'scare', u'shut', u'airport', u'freight', u'termin']
[u'china', u'withdraw', u'boomer', u'seri']
[u'claim', u'boost', u'patient', u'wait']
[u'clark', u'pledg', u'meet', u'peopl']
[u'coffin', u'spark', u'melbourn', u'airport', u'secur', u'alert']
[u'compo', u'seek', u'coal', u'ill']
[u'concern', u'rais', u'alcohol', u'fine', u'impact']
[u'condit', u'telstra', u'sale', u'unmet', u'anderson']
[u'contamin', u'wheat', u'shipment', u'sell']
[u'controversi', u'project', u'face', u'hurdl']
[u'costello', u'blast', u'promis', u'break', u'toll']
[u'council', u'back', u'wharf', u'probe']
[u'council', u'tackl', u'insur', u'woe']
[u'court', u'reject', u'invalid', u'taiwan', u'poll']
[u'croc', u'vanderjagt', u'rooki', u'award']
[u'crow', u'port', u'storm', u'deni', u'knowledg', u'rape']
[u'shire', u'win', u'cultur', u'heritag', u'award']
[u'cyclist', u'pedal', u'research']
[u'cyclon', u'whip', u'broom', u'wind']
[u'defenc', u'need', u'businesslik', u'approach']
[u'demetriou', u'investig', u'assault', u'claim']
[u'democrat', u'stamp', u'duti', u'propos']
[u'denmark', u'river', u'salt', u'level', u'fall']
[u'dog', u'refus', u'cocain', u'test', u'player']
[u'dover', u'host', u'major', u'film', u'shoot']
[u'month', u'ahead', u'western', u'victoria']
[u'earli', u'start', u'cotton', u'pick']
[u'emerg', u'dept', u'open', u'long', u'wait']
[u'england', u'complet', u'seven', u'wicket']
[u'miner', u'join', u'legal', u'action', u'poor', u'health']
[u'express', u'candid', u'urg', u'sign', u'vandal']
[u'famili', u'group', u'push', u'french', u'film']
[u'farmer', u'oppos', u'push', u'crop']
[u'farmer', u'urg', u'boost', u'farm', u'milk', u'storag']
[u'farmer', u'want', u'rail', u'line', u'fund']
[u'feder', u'agassi', u'join', u'serena', u'spotlight']
[u'financi', u'boost', u'seek', u'home', u'school']
[u'coal', u'miner', u'join', u'world', u'biggest', u'class']
[u'free', u'travel', u'cityrail', u'passeng']
[u'french', u'navi', u'find', u'fijian', u'adrift']
[u'fresh', u'hitch', u'delay', u'taiwan', u'ballot', u'recount']
[u'fruit', u'grower', u'unhappi', u'act', u'immigr', u'polic']
[u'gang', u'silenc', u'frustrat', u'polic']
[u'gatto', u'appear', u'court', u'gangland', u'murder']
[u'genom', u'centr', u'develop', u'drought', u'resist', u'crop']
[u'govt', u'buy', u'bypass', u'home', u'despit', u'rout', u'confus']
[u'govt', u'fear', u'super', u'chang', u'retir']
[u'govt', u'crack', u'sham', u'bankruptci']
[u'govt', u'pledg', u'pacif', u'refuge', u'program']
[u'govt', u'reissu', u'israel', u'indonesia', u'travel', u'warn']
[u'govt', u'unsecur', u'pacif', u'flight']
[u'grace', u'send', u'call', u'card', u'coast', u'beach']
[u'green', u'group', u'seek', u'council', u'candid', u'view']
[u'green', u'want', u'sydney', u'airport', u'rethink']
[u'gunmen', u'kill', u'iraqi', u'polic', u'chief']
[u'gunn', u'director', u'call', u'stronger', u'export', u'focus']
[u'health', u'meet', u'focus', u'restructur', u'worri']
[u'hillari', u'clinton', u'back', u'kerri', u'white', u'hous']
[u'hope', u'local', u'firm', u'benefit', u'nickel']
[u'immigr', u'crackdown', u'starv', u'farmer', u'labour']
[u'industri', u'lead', u'blackout']
[u'inquest', u'hear', u'night', u'crew', u'dilemma']
[u'inventor', u'win', u'award', u'missil', u'decoy']
[u'iraqi', u'right', u'abus', u'widespread', u'survey']
[u'isra', u'tank', u'roll', u'palestinian', u'refuge', u'camp']
[u'israel', u'shrug', u'hama', u'threat']
[u'israel', u'strike', u'lebanon']
[u'jackson', u'sue', u'onlin', u'memorabilia', u'sale']
[u'job', u'best', u'boy', u'hid']
[u'group', u'refloat']
[u'kennett', u'pay', u'tribut', u'liber', u'premier']
[u'king', u'favourit', u'decid', u'loom']
[u'king', u'lead', u'pig', u'half', u'time']
[u'king', u'game']
[u'lara', u'jone', u'fin', u'port', u'spain', u'behaviour']
[u'lederhosen', u'subsidi', u'ax', u'germani', u'tighten', u'belt']
[u'maintain', u'attack', u'job', u'moor']
[u'lehmann', u'pound']
[u'lose', u'fisherman', u'search', u'find', u'bodi']
[u'madrid', u'bomb', u'death', u'toll', u'revis']
[u'face', u'court', u'gang', u'shoot']
[u'front', u'court', u'attempt', u'murder', u'charg']
[u'custodi', u'home', u'invas']
[u'harass', u'victim', u'suffer', u'silenc']
[u'mayor', u'upbeat', u'sugar', u'meet']
[u'meet', u'fear', u'plan', u'flight']
[u'memori', u'madrid', u'victim', u'begin']
[u'methan', u'power', u'darwin', u'energi']
[u'microsoft', u'slap', u'record', u'fine']
[u'milit', u'strike', u'baghdad', u'sheraton', u'hotel']
[u'militari', u'exercis', u'simul', u'threat']
[u'mix', u'water', u'suppli', u'ongo']
[u'monti', u'python', u'life', u'brian', u'releas']
[u'accommod', u'tourism', u'boost']
[u'mozzi', u'fund', u'agenda', u'south', u'west']
[u'air', u'prison', u'escort', u'concern']
[u'avoid', u'censur', u'ball', u'furor']
[u'confid', u'freeway', u'fund']
[u'pledg', u'implement', u'apra', u'reform']
[u'promis', u'state', u'circl', u'consult']
[u'campaign', u'aim', u'lure', u'tourist', u'goldfield']
[u'court', u'readi', u'busi']
[u'govt', u'offic', u'open']
[u'hama', u'chief', u'vow', u'secur', u'israel']
[u'teacher', u'face', u'tough', u'test']
[u'nightclub', u'protest', u'restrict', u'trade', u'hour']
[u'stop', u'sept', u'attack', u'bush']
[u'powerless', u'bulldog', u'cocain', u'test']
[u'nurs', u'fund', u'woe', u'spark', u'health', u'concern']
[u'olyroo', u'look', u'star']
[u'opal', u'prioriti', u'stirl', u'quit', u'lightn']
[u'oppn', u'expect', u'call', u'keelti', u'talk', u'record']
[u'opportun', u'sit', u'martian', u'shore', u'nasa']
[u'pacif', u'backyard', u'open', u'terrorist', u'secur']
[u'pakistani', u'elder', u'seek', u'border', u'battl']
[u'pakistan', u'send', u'india', u'decid']
[u'liquid', u'mull', u'lawsuit']
[u'parent', u'order', u'burden', u'indigen', u'famili']
[u'parish', u'urg', u'help', u'greenhous', u'gas']
[u'parliament', u'approv', u'timor', u'deal']
[u'plaza', u'undergo', u'develop']
[u'attack', u'latham', u'pull', u'plan']
[u'minist', u'slam', u'bank', u'withhold', u'loan']
[u'polic', u'expect', u'gangland', u'kill']
[u'polic', u'gather', u'theft', u'investig']
[u'polic', u'hold', u'redfern', u'state', u'sieg', u'pilger', u'tell']
[u'polic', u'seek', u'martin', u'place', u'brawl', u'wit']
[u'poor', u'fund', u'mean', u'croc', u'fest', u'cancel']
[u'porto', u'good', u'lyon']
[u'port', u'search', u'answer', u'lloyd']
[u'port', u'secur', u'boost', u'cost', u'farmer']
[u'powel', u'defend', u'bush', u'sept']
[u'power', u'industri', u'seek', u'govt', u'back', u'greenhous']
[u'prais', u'shire', u'green', u'effort']
[u'protea', u'fear', u'histori', u'make', u'loss', u'zealand']
[u'protest', u'timber', u'compani', u'loggerhead']
[u'protest', u'blockad', u'sawmil', u'woodchip', u'issu']
[u'public', u'ask', u'highlight', u'icon']
[u'public', u'kalgoorli', u'plan']
[u'public', u'vote', u'fluorid', u'plan']
[u'quinn', u'pledg', u'rat', u'discount']
[u'quotabl', u'victorian', u'scientist', u'honour']
[u'rail', u'guard', u'lack', u'counter', u'terror', u'train', u'union']
[u'ralf', u'prepar', u'manag']
[u'ranger', u'trail', u'celtic', u'point']
[u'reef', u'rezon', u'need', u'fund']
[u'refuge', u'await', u'resid', u'answer']
[u'region', u'skill', u'program', u'launch']
[u'region', u'push', u'forward', u'tourism', u'market']
[u'regul', u'find', u'profit', u'king']
[u'renison', u'sell', u'reopen', u'plan']
[u'report', u'urg', u'librari', u'closur']
[u'riverland', u'success', u'stori']
[u'river', u'report', u'offer', u'hope', u'salin', u'battl']
[u'rocki', u'seek', u'earlier', u'jetstar', u'flight']
[u'roger', u'hop', u'return', u'ahead', u'schedul']
[u'rural', u'group', u'lobbi', u'revitalis', u'health', u'servic']
[u'scott', u'relinquish', u'chairman', u'role']
[u'sculli', u'happi', u'bridg', u'plan']
[u'seafood', u'industri', u'happi', u'nativ', u'titl', u'decis']
[u'search', u'continu', u'miss', u'tourist']
[u'senat', u'demand', u'govt', u'produc', u'keelti', u'document']
[u'shatter', u'roger', u'hop', u'return', u'ahead', u'schedul']
[u'shire', u'back', u'infrastructur', u'fund']
[u'shire', u'lose', u'drought', u'status']
[u'singapor', u'launch', u'high', u'tech', u'campaign', u'elimin']
[u'rupert', u'hamer', u'renaiss', u'premier']
[u'site', u'final', u'choos', u'landfil']
[u'tune', u'licenc', u'bid']
[u'korean', u'presid', u'refus', u'appear']
[u'state', u'funer', u'honour', u'rupert']
[u'statist', u'highlight', u'needi', u'communiti']
[u'mari', u'doctor', u'quit']
[u'studi', u'recommend', u'wider', u'research', u'cooper']
[u'stun', u'comeback', u'give', u'milan', u'victori']
[u'surgeri', u'rule', u'venuto', u'derbyshir', u'season']
[u'sweetman', u'lose', u'riverton', u'preselect']
[u'taiwan', u'agre', u'recount', u'deal']
[u'potato', u'farmer', u'attend', u'intern', u'forum']
[u'tate', u'get', u'clear', u'injuri', u'return']
[u'tax', u'time', u'wine', u'produc']
[u'technic', u'fault', u'leav', u'iraq', u'pipelin', u'ablaz']
[u'thailand', u'hand', u'drug', u'traffick', u'australia']
[u'think', u'control', u'experi', u'benefit', u'parkinson']
[u'tile', u'plant', u'bolster', u'hunter', u'job']
[u'option', u'broom', u'wastewat', u'plant']
[u'kosovo', u'policemen', u'kill', u'attack']
[u'brush', u'roofless', u'athen', u'pool', u'concern']
[u'embassi', u'suspend', u'oper']
[u'hail', u'level', u'meet', u'khaddafi']
[u'warn', u'nation', u'abroad']
[u'undecid', u'hec', u'increas']
[u'victorian', u'law', u'adequ', u'brack']
[u'treasur', u'promis', u'electr', u'price', u'hike']
[u'volunt', u'seek', u'desert', u'race']
[u'vote', u'chang', u'spark', u'longer', u'elect', u'count']
[u'wall', u'street', u'close', u'fourth', u'straight']
[u'mart', u'challeng', u'itun', u'music', u'download']
[u'wast', u'water', u'report', u'complet']
[u'water', u'issu', u'council', u'poll']
[u'west', u'indi', u'team', u'manag', u'skerritt', u'resign']
[u'william', u'katich', u'colombo', u'select']
[u'yacht', u'guid', u'safeti', u'struggl', u'sea']
[u'aborigin', u'elder', u'banish', u'stab']
[u'accus', u'saint', u'play', u'cat']
[u'child', u'death', u'team', u'improv', u'support', u'servic']
[u'govt', u'defend', u'mental', u'health', u'servic']
[u'increas', u'hec', u'fee']
[u'adelaid', u'court', u'jail', u'homicid', u'driver']
[u'afghan', u'presid', u'want', u'delay', u'elect']
[u'funni', u'thing', u'happen', u'melbourn']
[u'agreement', u'strike', u'tuna', u'farm', u'trial']
[u'albani', u'blast', u'polit', u'stunt']
[u'arrest', u'warrant', u'cancel', u'accus', u'priest']
[u'arsenal', u'away', u'goal', u'draw', u'chelsea']
[u'gain', u'grind', u'bank']
[u'atapattu', u'hit', u'lanka']
[u'atapattu', u'lead', u'lankan', u'fight']
[u'australia', u'commit', u'pacif']
[u'australia', u'oppos', u'israel', u'censur', u'yassin']
[u'ballarat', u'get', u'open', u'honour']
[u'ballina', u'council', u'reject', u'fluorid']
[u'beachley', u'battl', u'sex', u'make', u'wave']
[u'mouth', u'link', u'small', u'brain', u'research']
[u'toowoomba', u'loom']
[u'bipartisan', u'support', u'region', u'parliament', u'sit']
[u'blair', u'fli', u'libya', u'landmark', u'visit']
[u'blair', u'meet', u'libyan', u'leader']
[u'bomb', u'kill', u'soldier', u'iraq']
[u'britain', u'freez', u'asset', u'hama', u'leader']
[u'brit', u'nouveau', u'cuisin', u'deep', u'fri', u'chocol']
[u'bulldog', u'mason', u'deni', u'test', u'posit', u'cocain']
[u'busi', u'warn', u'accid', u'impact']
[u'highway', u'includ', u'transport', u'plan']
[u'indigen', u'land', u'agreement', u'respons']
[u'polit', u'contribut', u'clariti']
[u'canberra', u'sydney', u'train', u'track']
[u'cattl', u'produc', u'remind']
[u'chanc', u'seek', u'log', u'contract', u'legal', u'advic']
[u'chopper', u'join', u'search', u'miss']
[u'church', u'blaze', u'consid', u'suspici']
[u'citi', u'live', u'domin']
[u'clich', u'honest', u'drive']
[u'coast', u'beach', u'weather', u'wave']
[u'coffin', u'caus', u'hiccup', u'melbourn', u'airport']
[u'communiti', u'forum', u'discuss', u'mersey', u'hospit', u'woe']
[u'controversi', u'castro', u'doco', u'canada']
[u'cooma', u'get', u'youth', u'servic']
[u'council', u'air', u'bypass', u'fund', u'fear']
[u'council', u'angri', u'lifeguard', u'disput']
[u'council', u'hop', u'plan', u'power']
[u'council', u'tourism', u'decis', u'draw', u'anger']
[u'court', u'hear', u'evid', u'hotel', u'theft', u'trial']
[u'court', u'rule', u'kennedi', u'asic', u'case']
[u'court', u'tell', u'aba', u'sydney', u'licenc', u'decis']
[u'croc', u'sign']
[u'cyclon', u'batter', u'coast']
[u'cyclon', u'chang', u'cours']
[u'cyclon', u'cross', u'coast']
[u'date', u'hickey', u'inquest']
[u'delay', u'possibl', u'elect', u'result']
[u'democrat', u'seek', u'continu', u'reef', u'protect']
[u'diamond', u'miner', u'strike', u'indigen', u'deal']
[u'diesel', u'power', u'connect', u'rile', u'outback', u'user']
[u'disappoint', u'lack', u'indigen', u'jail', u'job']
[u'dog', u'hold', u'line', u'cocain', u'claim']
[u'domest', u'violenc', u'group', u'question', u'court', u'decis']
[u'drink', u'drive', u'campaign', u'highlight', u'danger', u'sign']
[u'durham', u'look', u'north', u'gibb', u'cover']
[u'emerg', u'confer', u'tri', u'avert', u'public']
[u'chang', u'qualifi', u'procedur']
[u'famili', u'uninjur', u'chlorin', u'bomb', u'blast']
[u'farina', u'unawar', u'socceroo', u'rift']
[u'farmer', u'claim', u'govt', u'betray', u'stanc']
[u'farmer', u'push', u'drought', u'assist', u'overhaul']
[u'feder', u'minist', u'discuss', u'croc', u'safari']
[u'detail', u'emerg', u'meet']
[u'charg', u'longreach', u'sexual', u'assault']
[u'flatley', u'rule', u'red']
[u'fli', u'doctor', u'concern', u'remain']
[u'forest', u'protest', u'spark', u'arrest']
[u'umpir', u'hand', u'video', u'role']
[u'forum', u'focus', u'drug', u'youth']
[u'ear', u'kitten', u'monster']
[u'frawley', u'dismiss', u'talk', u'upset']
[u'french', u'expert', u'defus', u'bomb', u'train', u'track']
[u'fruit', u'grower', u'campaign', u'refuge', u'worker']
[u'gaff', u'highlight', u'japan', u'pension', u'problem']
[u'gallop', u'urg', u'dog', u'come', u'clean', u'cocain', u'test']
[u'gallop', u'urg', u'dog', u'come', u'clean', u'mason', u'cocain']
[u'ganguli', u'celebr', u'histor', u'seri']
[u'ganguli', u'miss', u'pakistan', u'test']
[u'ganguli', u'undergo', u'scan', u'injuri']
[u'report', u'spark', u'council', u'concern']
[u'german', u'polic', u'raid', u'onlin', u'nazi', u'music', u'sharer']
[u'gold', u'coast', u'jail', u'fraud']
[u'govt', u'introduc', u'elector']
[u'govt', u'keep', u'heat', u'iraq', u'pullout']
[u'govt', u'mismanag', u'dairi', u'deregul', u'report']
[u'govt', u'say', u'reef', u'protect', u'scheme', u'month', u'away']
[u'govt', u'creat', u'construct', u'overs']
[u'greec', u'happi', u'olymp', u'secur', u'drill']
[u'group', u'withdraw', u'french', u'rail', u'bomb', u'threat']
[u'hama', u'leader', u'grind']
[u'hama', u'warn', u'sharon', u'target']
[u'health', u'servic', u'start', u'pay', u'debt']
[u'hope', u'council', u'promis', u'keep']
[u'hop', u'sale', u'benefit', u'west', u'coast', u'economi']
[u'howard', u'plan', u'free', u'trade', u'trip']
[u'hunter', u'record', u'chlamydia', u'case']
[u'hyperson', u'plane', u'shoot', u'mach']
[u'icac', u'hold', u'public', u'hear', u'fraud', u'claim']
[u'call', u'evid', u'match', u'fix', u'claim']
[u'idol', u'judg', u'deni', u'obscen', u'gestur']
[u'indonesia', u'plan', u'compulsori', u'militari', u'servic']
[u'iraqi', u'work', u'time', u'magazin', u'shoot', u'baghdad']
[u'iraq', u'continu', u'buy', u'australian', u'wheat']
[u'isi', u'shire', u'ponder', u'sugar', u'industri', u'valu']
[u'review', u'need', u'track', u'paedophil', u'report']
[u'israel', u'arrest', u'teen', u'wear', u'bomb', u'west', u'bank']
[u'italian', u'parliament', u'approv', u'controversi', u'media']
[u'ivanisev', u'advanc', u'miami']
[u'japan', u'arrest', u'chines', u'activist', u'disput', u'island']
[u'kewel', u'viduka', u'vieri', u'name', u'socceroo', u'squad']
[u'labor', u'govt', u'keelti', u'latham']
[u'labor', u'support', u'ban', u'risk', u'flight']
[u'lane', u'get', u'expect', u'sack']
[u'latham', u'flag', u'bank', u'regul']
[u'lehmann', u'crack']
[u'life', u'mar', u'come', u'earth']
[u'littl', u'hunter', u'respons', u'mine', u'compo', u'case']
[u'lord', u'mayor', u'promis', u'discount', u'rat', u'elect']
[u'fin', u'anim', u'cruelti']
[u'markov', u'name', u'nbls', u'rooki']
[u'mason', u'ponder', u'suit', u'cocain', u'claim']
[u'match', u'fix', u'claim', u'spanish', u'soccer']
[u'mayor', u'hope', u'want', u'elector', u'materi', u'chang']
[u'mayor', u'derail', u'monorail', u'plan']
[u'mayor', u'speak', u'fund', u'misus', u'claim']
[u'mcevoy', u'saddl', u'godolphin']
[u'mexico', u'seek', u'explan', u'caver']
[u'minist', u'clarifi', u'chain', u'clear']
[u'minist', u'offer', u'polic', u'station', u'assur']
[u'monash', u'student', u'wind', u'protest']
[u'fear', u'air', u'nurs', u'post']
[u'foreign', u'nation', u'detain', u'south', u'east']
[u'fund', u'avail', u'fight', u'locust']
[u'back', u'educ', u'polici', u'benefit']
[u'netbal', u'associ', u'resign']
[u'pill', u'help', u'diver', u'fend', u'bend']
[u'rugbi', u'turn', u'expert']
[u'lobbi', u'croc', u'safari']
[u'nurs', u'group', u'unhappi', u'meet', u'snub']
[u'execut', u'want', u'common', u'currenc', u'australia']
[u'obes', u'top', u'health', u'problem', u'children']
[u'olymp', u'flame', u'brighten', u'athen']
[u'oppn', u'question', u'hospit', u'ward', u'easter', u'closur']
[u'parol', u'appeal', u'reject', u'anti', u'abort', u'activist']
[u'australian', u'honey', u'take', u'canadian', u'shelv']
[u'payn', u'recov', u'sandown', u'fall']
[u'phar', u'lap', u'saddl', u'sell']
[u'polic', u'hunt', u'attempt', u'attack']
[u'polic', u'probe', u'abalon', u'farm', u'attack']
[u'polic', u'probe', u'suspect', u'drug', u'overdos']
[u'polic', u'probe', u'suspect', u'murder', u'seek', u'letter', u'writer']
[u'polic', u'quiz', u'boat', u'crew', u'dive', u'death']
[u'polic', u'target', u'road', u'safeti']
[u'power', u'plant', u'plan', u'spark', u'probe']
[u'precaut', u'take', u'chemic', u'spill']
[u'premier', u'accept', u'commonwealth', u'grant', u'deal']
[u'primus', u'name', u'port', u'squad']
[u'public', u'remind']
[u'govt', u'buy', u'home', u'lead', u'highway', u'bypass']
[u'rape', u'accus', u'face', u'bryant', u'courtroom']
[u'ratepay', u'ask', u'recycl', u'cost']
[u'hope', u'touch', u'athen', u'prepar']
[u'say', u'busi', u'cop', u'strong', u'dollar']
[u'real', u'monaco', u'retain', u'hope']
[u'region', u'health', u'get', u'fund', u'boost']
[u'report', u'cast', u'doubt', u'sugar', u'rescu']
[u'report', u'highlight', u'complaint']
[u'rice', u'sculptur', u'highlight', u'hunger', u'messag']
[u'rise', u'sea', u'point', u'melt', u'glacier', u'studi']
[u'speaker', u'blame', u'outburst', u'ill']
[u'scud', u'proclaim', u'comeback', u'king']
[u'secur', u'concern', u'leav', u'global', u'market', u'unstabl']
[u'senat', u'say', u'highway', u'fund', u'guarante']
[u'monitor', u'barwon', u'river', u'level']
[u'singer', u'jail', u'fail', u'child', u'support']
[u'slipway', u'safeti', u'audit', u'compressor']
[u'smite', u'name', u'springbok', u'captain']
[u'soya', u'power', u'airlin', u'offer', u'greener', u'futur', u'report']
[u'spain', u'resist', u'pressur', u'iraq', u'pull']
[u'sport', u'complex', u'committe', u'name']
[u'stage', u'spider']
[u'stanhop', u'say', u'human', u'right', u'justifi']
[u'strong', u'wind', u'bushfir', u'tasmania']
[u'student', u'protest', u'monash', u'offic']
[u'student', u'occupi', u'monash', u'build', u'protest']
[u'surgeri', u'put', u'furyk', u'sidelin']
[u'swell', u'expect', u'calm', u'gold', u'coast', u'beach']
[u'sydney', u'communiti', u'station', u'win', u'repriev']
[u'teen', u'charg', u'caravan', u'blaze']
[u'terror', u'prioriti', u'sept', u'bush']
[u'test', u'continu', u'identifi', u'skeleton']
[u'thailand', u'return', u'drug', u'traffick', u'australia']
[u'time', u'run', u'postal', u'vote']
[u'troop', u'stay', u'iraq', u'howard']
[u'turkish', u'charg', u'peopl', u'smuggl']
[u'charg', u'woodchip', u'protest']
[u'debut', u'swan', u'open', u'lion']
[u'debut', u'swan', u'open', u'lion']
[u'underworld', u'drug', u'squad', u'link', u'high', u'like']
[u'protest', u'rise', u'turn', u'ugli']
[u'increas', u'hec', u'fee']
[u'uranium', u'scare', u'forc', u'mine', u'plant', u'shutdown']
[u'uranium', u'water', u'miner', u'regul']
[u'ambassador', u'warn', u'troop', u'pullout']
[u'call', u'european', u'microsoft', u'rule', u'unfortun']
[u'propos', u'resolut']
[u'gradual', u'lift', u'econom', u'sanction', u'libya']
[u'blood', u'crisi', u'solv', u'short', u'term']
[u'bushfir', u'threaten', u'home']
[u'victorian', u'receiv', u'mix', u'respons']
[u'victoria', u'opt', u'year', u'moratorium']
[u'virgin', u'blue', u'add', u'extra', u'rockhampton', u'flight']
[u'virgin', u'blue', u'say', u'earlier', u'flight']
[u'labor', u'threaten', u'nation', u'fallout']
[u'warrant', u'issu', u'alleg', u'paedophil', u'miss', u'court']
[u'water', u'contamin', u'scare', u'prompt', u'suppli']
[u'union', u'criticis', u'build', u'industri', u'enforc']
[u'stop', u'sept', u'boss']
[u'welfar', u'worker', u'worri', u'doc', u'respons', u'delay']
[u'white', u'hous', u'hit', u'bush', u'anti', u'terror']
[u'world', u'largest', u'wave', u'chanc', u'surf']
[u'abalon', u'council', u'oppos', u'lower', u'annual']
[u'accus', u'turkish', u'peopl', u'smuggler', u'remain']
[u'brace', u'condit']
[u'agreement', u'wont', u'compromis', u'tuna', u'farm']
[u'briberi', u'claim', u'polic']
[u'qaeda', u'tape', u'urg', u'pakistan', u'coup']
[u'append', u'forc', u'pellegrino', u'glori', u'match']
[u'aussi', u'lose', u'hayden']
[u'aussi', u'slip', u'final', u'session']
[u'aussi', u'slip', u'session']
[u'australia', u'seal', u'iraqi', u'wheat', u'deal']
[u'australia', u'top', u'honest', u'compani', u'list']
[u'backlog', u'gladston', u'port']
[u'bahrain', u'want', u'postpon', u'report']
[u'bank', u'state', u'bicker']
[u'blair', u'hail', u'meet', u'libyan', u'leader']
[u'boat', u'accid', u'claim', u'life', u'gold', u'coast']
[u'boy', u'bodi', u'near', u'train', u'track']
[u'breath', u'test', u'charg', u'overshadow', u'rugbi', u'seven']
[u'brisban', u'mayor', u'candid', u'final', u'pitch']
[u'british', u'soldier', u'haul', u'flood', u'mexico', u'cave']
[u'builder', u'embroil', u'legal', u'battl', u'owen']
[u'buoyant', u'india', u'test', u'pakistan']
[u'burn', u'get', u'control']
[u'break', u'hill', u'freehold', u'block']
[u'call', u'proactiv', u'drought', u'approach']
[u'capit', u'coach', u'quit', u'oversea', u'post']
[u'chen', u'declar', u'winner', u'amid', u'violent', u'protest']
[u'chief', u'justic', u'bow', u'year']
[u'china', u'aim', u'immort', u'lunar', u'probe']
[u'chines', u'communiti', u'okay', u'high', u'school', u'test', u'plan']
[u'christ', u'movi', u'move', u'texan', u'murder', u'confess']
[u'circumcis', u'block', u'infect']
[u'civil', u'libertarian', u'concern', u'terror', u'plan']
[u'coal', u'miner', u'list', u'stock', u'exchang']
[u'complac', u'attitud', u'kill', u'yachtsman', u'coron']
[u'corrupt', u'commiss', u'need', u'brack']
[u'council', u'elect', u'loom']
[u'councillor', u'target', u'offens', u'cartoon']
[u'council', u'worker', u'order', u'work']
[u'court', u'accus', u'polic', u'brutal', u'lie']
[u'court', u'find', u'guilti', u'hotel', u'fund', u'theft']
[u'craigi', u'langmack', u'discuss', u'race', u'claim']
[u'cross', u'network', u'mobil', u'charg', u'high']
[u'cyclon', u'expect', u'turn']
[u'level', u'reach', u'point']
[u'democrat', u'tougher', u'construct', u'watchdog']
[u'democrat', u'want', u'greater', u'power', u'build']
[u'dog', u'guard', u'sledg']
[u'doubt', u'cast', u'shake', u'babi', u'syndrom']
[u'downer', u'defend', u'iraq', u'troop', u'number']
[u'draw', u'hit', u'blue', u'play', u'hop']
[u'condit', u'continu', u'southern']
[u'earth', u'pick', u'moon']
[u'leader', u'adopt', u'anti', u'terror', u'measur']
[u'prison', u'offic', u'child', u'charg']
[u'extra', u'nurs', u'need', u'hospit', u'plan', u'union', u'say']
[u'intrigu', u'bore', u'supremo']
[u'fairweath', u'head', u'australia', u'olymp', u'archeri', u'hop']
[u'farmer', u'group', u'back', u'drought', u'polici', u'reform']
[u'fear', u'rural', u'woe', u'boost', u'suicid', u'rate']
[u'govt', u'rethink', u'burnett', u'rule']
[u'govt', u'nickel', u'plan', u'stanc']
[u'govt', u'urg', u'boost', u'energi', u'target']
[u'fight', u'intensifi', u'lantana']
[u'crew', u'monitor', u'blaze']
[u'fish', u'hit', u'shark', u'number', u'studi']
[u'fit', u'guru', u'simmon', u'cite', u'slap', u'fighter']
[u'food', u'poison', u'parasit', u'evad', u'drug', u'studi']
[u'kill', u'wound', u'iraq', u'hospit']
[u'franc', u'detain', u'bomb', u'threat']
[u'fund', u'boost', u'indigen', u'crime', u'fight']
[u'fund', u'encourag', u'region', u'doctor', u'stay']
[u'german', u'famili', u'cop', u'ear']
[u'gladston', u'council', u'agre', u'land']
[u'global', u'trend', u'push', u'higher']
[u'govt', u'bungl', u'dairi', u'deregul', u'packag', u'report']
[u'govt', u'commit', u'money', u'quambi', u'jail']
[u'hackett', u'hop', u'lower']
[u'handbag', u'recoveri', u'cost', u'german', u'woman', u'licenc']
[u'health', u'fund', u'boost', u'medic', u'retriev', u'unit']
[u'health', u'lobbi', u'launch', u'nation', u'fund', u'campaign']
[u'hollywood', u'brace', u'reel', u'spider', u'man']
[u'howard', u'ignor', u'parliament', u'trip']
[u'howard', u'trip', u'symbol', u'downer']
[u'huegil', u'confid', u'athen', u'secur']
[u'illeg', u'sale', u'trigger', u'polic', u'warn']
[u'indi', u'dixon', u'hop', u'chang', u'direct']
[u'intern', u'chef', u'endors', u'burnett', u'produc']
[u'iraq', u'remark', u'caus', u'comment', u'washington']
[u'iraq', u'nation', u'soccer', u'team', u'tour', u'england']
[u'rule', u'small', u'busi', u'redund']
[u'iron', u'beachley']
[u'island', u'renam', u'aim', u'avoid', u'boo']
[u'israel', u'look', u'vote', u'resolut']
[u'ivori', u'coast', u'forc', u'hold', u'account', u'right']
[u'japan', u'forc', u'chines', u'wwii', u'labour']
[u'jone', u'extend', u'wallabi', u'contract']
[u'kelm', u'deni', u'dope', u'accus', u'team']
[u'labor', u'plan', u'need', u'base', u'school', u'fund']
[u'labor', u'unit', u'iraq', u'pullout', u'latham']
[u'langer', u'clear', u'disreput', u'charg']
[u'latham', u'troop', u'plan', u'risk', u'live', u'say']
[u'lib', u'unhappi', u'leader', u'council', u'tactic']
[u'longer', u'moratorium', u'allow', u'debat']
[u'lord', u'ring', u'boon', u'tourism']
[u'award', u'bail', u'gungahlin', u'protest']
[u'charg', u'perth', u'aiport', u'hoax']
[u'serv', u'doubl', u'time', u'court', u'tell']
[u'mayor', u'shake', u'wouldnt', u'surpris', u'academ']
[u'mayor', u'reject', u'parti', u'polit', u'claim']
[u'mccoy', u'deni', u'provision', u'pole', u'phillip', u'island']
[u'meet', u'consid', u'local', u'govt', u'issu']
[u'appear', u'court', u'ecstasi', u'haul']
[u'blaze', u'investig']
[u'oper', u'reveal', u'contamin', u'case']
[u'minist', u'promis', u'mersey', u'hospit', u'remain', u'open']
[u'minist', u'stand', u'firm', u'dairi', u'packag']
[u'minist', u'decid', u'salt', u'intercept', u'scheme']
[u'monash', u'rush', u'hike']
[u'injur', u'quak', u'china', u'inner']
[u'motorcyclist', u'die', u'karratha', u'crash']
[u'advoc', u'stronger', u'voic', u'constitu']
[u'angri', u'child', u'hospit', u'wait']
[u'attack', u'biotech', u'compani']
[u'welcom', u'surgeri', u'wait', u'list', u'improv']
[u'mysteri', u'surround', u'miss', u'prosecut', u'wit']
[u'want', u'sharehold', u'clear', u'deck']
[u'nativ', u'titl', u'claim', u'western', u'cape', u'york']
[u'equip', u'bolster', u'job']
[u'physic', u'chief', u'champion', u'scienc', u'career']
[u'need', u'resid', u'vote']
[u'govt', u'urg', u'help', u'anim', u'shelter']
[u'opposit', u'push', u'health', u'inquiri']
[u'polic', u'plan', u'extra', u'train']
[u'want', u'bigger', u'road', u'fund', u'slice']
[u'outback', u'visitor', u'enjoy', u'dinosaur', u'tourism']
[u'payback', u'bring', u'harmoni', u'communiti', u'lawyer']
[u'persson', u'atlevi', u'shin', u'madeira', u'island', u'gloom']
[u'pie', u'tiger', u'launch']
[u'announc', u'practic', u'nurs', u'fund', u'boost']
[u'polic', u'lockup', u'nomin', u'worst', u'dungeon']
[u'port', u'blood', u'rooki', u'open']
[u'portug', u'seek', u'nato', u'help', u'euro']
[u'power', u'confid', u'despit', u'injuri', u'concern']
[u'probe', u'launch', u'alleg', u'anim', u'smuggl', u'racket']
[u'warn', u'strike', u'claim']
[u'public', u'protest', u'fast', u'rail', u'plan', u'chang']
[u'push', u'beatti', u'govt', u'look', u'daylight', u'save']
[u'qanta', u'pledg', u'earli', u'flight']
[u'defend', u'charg', u'rap', u'year']
[u'quak', u'rock', u'eastern', u'turkey']
[u'race', u'break', u'record']
[u'rail', u'delay', u'nasdaq', u'open']
[u'ranger', u'contamin', u'scare', u'blame', u'cross', u'line']
[u'razorback', u'draw', u'level', u'king']
[u'urg', u'curb', u'sledg', u'dog', u'rooster', u'match']
[u'reid', u'reach', u'miami', u'second', u'round']
[u'review', u'find', u'drought', u'complex']
[u'richardson', u'lead', u'charg', u'tiger', u'claw', u'pie']
[u'ronaldo', u'bolster', u'real', u'sevilla']
[u'rooster', u'half', u'time']
[u'ruddi', u'take', u'archibald', u'gulpilil']
[u'saint', u'focus', u'footi']
[u'public', u'servant', u'prepar', u'mass', u'strike']
[u'scott', u'fire', u'tiger', u'bomb', u'fifth', u'major']
[u'second', u'leak', u'examin', u'ranger']
[u'senat', u'local', u'hang', u'oppos', u'telstra']
[u'strain', u'cast', u'doubt', u'kalli']
[u'simpl', u'life', u'saudi', u'man', u'longev']
[u'simpson', u'injuri', u'news', u'knight']
[u'sinclair', u'shin', u'black', u'cap']
[u'singapor', u'say', u'satir', u'censorship', u'funni']
[u'sleep', u'burglari', u'suspect', u'startl', u'victim']
[u'south', u'east', u'gear', u'council', u'poll']
[u'southern', u'gear', u'council', u'poll']
[u'state', u'agre', u'fund', u'review']
[u'state', u'territori', u'better', u'howard']
[u'steroid', u'increas', u'school', u'athlet']
[u'stile', u'lead', u'red', u'brumbi', u'battl']
[u'strong', u'cowboy', u'outfit', u'raider']
[u'studi', u'discount', u'abort', u'breast', u'cancer', u'link']
[u'studi', u'find', u'moral', u'iraq', u'troop']
[u'survey', u'show', u'boundari', u'chang', u'support']
[u'swim', u'coach', u'accus', u'agre']
[u'sydney', u'candid', u'launch', u'elect', u'sweep']
[u'sydney', u'ferri', u'intensifi']
[u'tafe', u'shake', u'aim', u'save', u'thousand']
[u'oppn', u'hous', u'plan', u'get', u'mix', u'reaction']
[u'teenag', u'fanclub', u'beckon', u'celtic', u'saviour', u'marshal']
[u'tenni', u'drug', u'free', u'say', u'agassi']
[u'terror', u'exercis', u'find', u'room', u'improv']
[u'spring', u'boost', u'corella', u'cull']
[u'tiger', u'claw', u'pie']
[u'tight', u'secur', u'place', u'bahrain']
[u'torch', u'relay', u'begin', u'rogg', u'prais', u'athen']
[u'tour', u'oper', u'goodby', u'reef']
[u'tradit', u'punish', u'wouldnt', u'work']
[u'trap', u'brit', u'mexico', u'nose', u'joint']
[u'palestinian', u'battl']
[u'unit', u'look', u'halt', u'arsenal', u'momentum']
[u'block', u'vote', u'yassin', u'assassin']
[u'lawmak', u'push', u'cabl', u'industri', u'choic']
[u'market', u'slowli', u'climb', u'slump']
[u'pakistan', u'bolster', u'troop', u'afghanistan']
[u'vanston', u'visit', u'south', u'east']
[u'focus', u'live', u'export', u'trade']
[u'appoint', u'ombudsman']
[u'govt', u'move', u'region', u'obstetr', u'servic']
[u'oppn', u'air', u'catchment', u'author', u'fear']
[u'violenc', u'mar', u'rooster', u'demolit', u'dog']
[u'volunt', u'firefight', u'charg', u'arson']
[u'water', u'firm', u'smell', u'pong', u'problem']
[u'webb', u'content', u'california']
[u'welfar', u'lobbyist', u'deliv', u'part', u'shoot', u'hous']
[u'welsh', u'criticis', u'roofless', u'olymp', u'pool']
[u'wind', u'whip', u'north', u'western']
[u'winemak', u'urg', u'follow', u'green', u'lead']
[u'wit', u'stay', u'silent', u'shoot']
[u'woman', u'doctor', u'report', u'today']
[u'world', u'watch', u'reef', u'fish']
[u'youth', u'repres', u'local', u'council']
[u'zapatero', u'urg', u'quick', u'troop', u'decis']
[u'flow', u'firm']
[u'back', u'revenu', u'formula']
[u'alp', u'iraq', u'plan', u'chao', u'downer']
[u'collaps', u'blame', u'elect', u'loss', u'close']
[u'battl', u'insurg', u'iraq']
[u'miss', u'indonesian', u'landslid']
[u'barnett', u'seek', u'answer', u'western', u'power', u'claim']
[u'beatti', u'scoff', u'daylight', u'save']
[u'beloki', u'return', u'criterium', u'intern']
[u'bhoy', u'hero', u'marshal', u'reward', u'year']
[u'bomb', u'explod', u'baghdad', u'street', u'wound']
[u'bowen', u'voter', u'incumb', u'mayor']
[u'bronco', u'beleagu', u'bulldog']
[u'bulldog', u'promis', u'life', u'ban', u'hooligan', u'fan']
[u'hospit', u'probe', u'focus', u'resourc']
[u'chief', u'stun', u'waratah']
[u'child', u'kill', u'injur', u'smash']
[u'examin', u'zawahiri', u'record']
[u'close', u'result', u'tip', u'local', u'govt', u'elect']
[u'seek', u'ranger', u'mine', u'closur']
[u'cooloola', u'shire', u'mayor', u'humbl', u'elect']
[u'count', u'indic', u'chang', u'mayor', u'brisban']
[u'cruis', u'cruz', u'quit']
[u'crusad', u'hold', u'highland']
[u'current', u'cabooltur', u'shire', u'mayor', u'lead', u'poll']
[u'cyclon', u'downgrad', u'threat', u'remain']
[u'docker', u'blue']
[u'soldier', u'execut', u'qaeda', u'oper']
[u'elect', u'result', u'reliev', u'warwick', u'mayor']
[u'maroochi', u'shire']
[u'stick', u'yassin', u'condemn', u'veto']
[u'exercis', u'firefight', u'equip', u'test']
[u'experiment', u'plane', u'smash', u'speed', u'record', u'nasa']
[u'govt', u'odd', u'redund', u'payment', u'decis']
[u'ferri', u'turn', u'melbourn', u'child', u'injur']
[u'hurrican', u'form', u'south', u'atlant']
[u'fish', u'stick', u'bang']
[u'flood', u'warn', u'cyclon', u'fade']
[u'bodyguard', u'reveal', u'saddam', u'spider', u'hole']
[u'formula', u'bore', u'say', u'schu']
[u'ganguli', u'miss', u'pakistan', u'test']
[u'gibson', u'reap', u'manna', u'break', u'hollywood']
[u'goondiwindi', u'mayor', u'secur', u'elect']
[u'grand', u'juri', u'decid', u'jackson', u'charg']
[u'green', u'prefer', u'decid', u'elect']
[u'hackett', u'prim', u'thorp', u'showdown']
[u'hackett', u'triumph', u'thorp', u'shock', u'exit']
[u'hawk', u'exorcis', u'demon']
[u'hawk', u'lead', u'demon', u'final', u'chang']
[u'hazard', u'wast', u'collect', u'underway']
[u'hewitt', u'breez', u'biscan']
[u'rapid', u'test', u'unreli']
[u'houllier', u'face', u'match', u'surviv', u'fight']
[u'howard', u'urg', u'uniti', u'terror']
[u'iranian', u'iraqi', u'demonstr', u'yassin', u'death']
[u'iran', u'inspect', u'begin', u'amid', u'nuclear', u'cover', u'claim']
[u'islam', u'british', u'lectur']
[u'isra', u'palestinian', u'trade', u'blame', u'raid', u'death']
[u'italian', u'strike', u'pension', u'economi']
[u'javelin', u'thrower', u'suspend', u'take', u'ban', u'drug']
[u'john', u'doubt', u'season']
[u'katherin', u'crime', u'level', u'fall']
[u'kelli', u'sutherland', u'share', u'lead', u'scott', u'trail', u'wood']
[u'kelm', u'bar', u'tour', u'franc', u'dope', u'claim']
[u'kerri', u'pledg', u'massiv', u'job', u'growth']
[u'kiwi', u'dixon', u'test', u'william']
[u'knight', u'mare', u'season', u'john']
[u'labor', u'prais', u'redund', u'payment', u'decis']
[u'landslid', u'eastern', u'indonesia', u'kill', u'miss']
[u'langer', u'clear', u'disreput', u'charg']
[u'latham', u'troop', u'return']
[u'collin', u'prefer']
[u'libya', u'invest', u'virgin', u'deal', u'locat', u'landmin']
[u'lomu', u'vow', u'return', u'rugbi', u'friend', u'offer']
[u'loud', u'explos', u'gunfir', u'hear', u'central', u'baghdad']
[u'hospit', u'stab']
[u'surviv', u'impal']
[u'face', u'trial', u'polic', u'assault']
[u'massiv', u'taipei', u'ralli', u'seek', u'poll', u'recount']
[u'media', u'blitz', u'help', u'clark', u'book', u'soar', u'success']
[u'merciless', u'milan', u'determin', u'foot']
[u'mexico', u'reject', u'british', u'explan', u'caver']
[u'million', u'vote', u'council', u'poll']
[u'contamin', u'spark', u'indigen', u'concern']
[u'mooney', u'win', u'fifth', u'townsvill', u'term']
[u'industri', u'unrest', u'possibl', u'disput']
[u'mother', u'die', u'vehicl', u'accid']
[u'wellington', u'art', u'festiv', u'draw', u'close']
[u'director', u'claim', u'harass', u'trade', u'scandal']
[u'newman', u'lead', u'hostil', u'brisban', u'council']
[u'zealand', u'share', u'rise', u'record', u'high']
[u'nightclub', u'campaign', u'defeat', u'baildon']
[u'troop', u'battl', u'rebel', u'iraq']
[u'korea', u'reject', u'propos', u'nuclear']
[u'noosa', u'mayor', u'retain', u'post']
[u'north', u'west', u'feel', u'cyclon', u'effect']
[u'moot', u'life', u'ban', u'spectat', u'brawl']
[u'threaten', u'life', u'ban', u'bulldog', u'brawl']
[u'talli', u'local', u'govern', u'ballot']
[u'olymp', u'shock', u'thorp', u'freestyl']
[u'oppn', u'entertain', u'plan']
[u'optimist', u'charter', u'tower', u'elect', u'beveridg']
[u'palestinian', u'kill', u'west', u'bank']
[u'parmalat', u'halv', u'oversea', u'workforc']
[u'pepper', u'track', u'california', u'titl', u'webb']
[u'pilbara', u'prepar', u'loom', u'cyclon']
[u'pilot', u'hospit', u'navi', u'crash']
[u'pine', u'river', u'shire', u'mayor', u'return', u'unoppos']
[u'pisasal', u'claim', u'ipswich', u'mayorship']
[u'polic', u'investig', u'bulldog', u'stadium', u'brawl']
[u'polic', u'investig', u'gold', u'coast', u'boat', u'death']
[u'polic', u'probe', u'citi', u'stab']
[u'polic', u'search', u'bushland', u'miss']
[u'polic', u'stage', u'footi', u'season', u'drink', u'drive', u'blitz']
[u'port', u'primus', u'bomber', u'mission']
[u'protea', u'close', u'total']
[u'count', u'local', u'govern', u'ballot']
[u'voter', u'head', u'poll']
[u'quad', u'bike', u'accid', u'claim', u'life']
[u'quinn', u'conced', u'brisban', u'elect']
[u'quinn', u'tip', u'close', u'elect', u'result']
[u'ranger', u'tripl', u'whammi', u'ahead', u'firm']
[u'red', u'drop', u'hungov', u'valentin']
[u'remov', u'spanish', u'troop', u'iraq', u'huge', u'error']
[u'rival', u'turn', u'partner', u'road', u'athen']
[u'road', u'studi', u'fail', u'address', u'environment', u'issu']
[u'ruddock', u'take', u'issu', u'claim']
[u'saint', u'key', u'cat', u'rematch']
[u'scott', u'chase', u'sutherland', u'florida']
[u'scott', u'trail', u'lead', u'florida']
[u'senat', u'want', u'servic', u'issu', u'address']
[u'serena', u'cruis', u'victori', u'henman', u'crash']
[u'serial', u'rapist', u'bar']
[u'shark', u'edg', u'eagl']
[u'slow', u'start', u'nigeria', u'local', u'elect']
[u'long', u'thank', u'run', u'bull', u'tell']
[u'south', u'africa', u'centuri', u'open', u'stand']
[u'spanish', u'elect', u'reject', u'anti', u'terror', u'claim']
[u'lanka', u'face', u'seri', u'whitewash']
[u'lankan', u'victori']
[u'lanka', u'victori']
[u'stirl', u'reject', u'claim']
[u'set', u'daylight', u'save']
[u'surpris', u'result', u'north', u'poll']
[u'sutherland', u'surpris', u'earli', u'leader', u'player']
[u'swimmer', u'thorp', u'shock']
[u'sydney', u'mayor', u'race', u'come', u'clover']
[u'taiwan', u'opposit', u'plan', u'protest', u'amid', u'china', u'furi']
[u'govt', u'stand', u'elect', u'delay', u'decis']
[u'govt', u'urg', u'boost', u'road', u'fund']
[u'task', u'forc', u'investig', u'stadium', u'brawl']
[u'teacher', u'pass', u'school', u'plan']
[u'thorp', u'shock']
[u'thousand', u'protest', u'hama', u'leader']
[u'plane', u'crash', u'south', u'east', u'franc']
[u'total', u'ban', u'place']
[u'train', u'rehab', u'social', u'activ', u'busi']
[u'trescothick', u'find', u'form', u'england', u'domin', u'tour']
[u'kill', u'mosul', u'rocket', u'attack']
[u'chief', u'rue', u'rwanda', u'genocid', u'respons']
[u'elect', u'team', u'arriv', u'baghdad']
[u'union', u'fear', u'vote', u'rig', u'claim', u'hurt', u'gallop']
[u'approv', u'quick', u'test']
[u'film', u'close', u'sydney', u'street']
[u'vice', u'presid', u'visit', u'japan', u'china', u'south', u'korea']
[u'halen', u'end', u'feud', u'singer']
[u'victoria', u'celebr', u'youth', u'week']
[u'violenc', u'claim', u'live', u'ahead', u'nigerian', u'poll']
[u'vitamin', u'mix', u'bless', u'diabet', u'women']
[u'health', u'report', u'ignor', u'popul', u'growth']
[u'alert', u'cyclon', u'move', u'east']
[u'hero', u'pigeon', u'honour']
[u'wilko', u'rule', u'australia', u'tour', u'report']
[u'woman', u'face', u'retrial', u'attempt', u'murder', u'charg']
[u'abbott', u'disagre', u'pope', u'secular', u'stanc']
[u'abbott', u'play', u'lib', u'brisban']
[u'abbott', u'push', u'anti', u'abort', u'debat']
[u'plan', u'specif', u'workplac', u'agreement']
[u'afghanistan', u'delay', u'landmark', u'elect']
[u'afghan', u'poll', u'septemb', u'karzai']
[u'lament', u'sydney', u'local', u'govt', u'outcom']
[u'anti', u'terror', u'law', u'tough', u'brown', u'say']
[u'apra', u'confid', u'chang']
[u'arab', u'delay', u'summit', u'democraci', u'reform', u'disput', u'blame']
[u'arab', u'summit', u'postpon', u'chief', u'warn', u'fallout']
[u'are', u'park', u'lead', u'south', u'korean', u'charg', u'california']
[u'aussi', u'kennedi', u'pull', u'clear', u'madeira']
[u'aussi', u'clean', u'sweep', u'lanka']
[u'aussi', u'edg', u'closer', u'victori']
[u'beatti', u'push', u'attract', u'game', u'athlet']
[u'quak', u'rock', u'eastern', u'turkey', u'death']
[u'birthday', u'hasselbaink', u'save', u'chelsea']
[u'blaze', u'women', u'prison']
[u'blaze', u'spark', u'apart', u'evacu']
[u'bomb', u'blast', u'injur', u'southern', u'thailand']
[u'bomb', u'blast', u'wound', u'civilian', u'iraq', u'town']
[u'brisban', u'face', u'prospect', u'hang', u'council']
[u'bronco', u'tame', u'tiger']
[u'brumbi', u'romp', u'record']
[u'bush', u'enemi', u'islam', u'hama', u'chief']
[u'busi', u'group', u'speak', u'anzac', u'trade']
[u'teen', u'musician', u'audit', u'youth']
[u'chang', u'law', u'granni', u'surrog', u'approv']
[u'care', u'centr', u'probe', u'spark', u'charg']
[u'firefight', u'help', u'extinguish', u'scrub', u'blaze']
[u'cook', u'nazon', u'win', u'stage']
[u'coup', u'attempt', u'congoles', u'capit']
[u'cyclon', u'fizzl']
[u'cyclon', u'hit', u'brazil', u'seven', u'fishermen', u'fear', u'dead']
[u'darci', u'lead', u'ireland', u'tripl', u'crown']
[u'dark', u'hamper', u'search', u'miss', u'autist']
[u'democrat', u'founder', u'parkinson']
[u'deportivo', u'snatch', u'gasp', u'sociedad']
[u'doctor', u'claim', u'cancer', u'food', u'link', u'china']
[u'doctor', u'win', u'young', u'achiev', u'award']
[u'draw', u'kick', u'raider', u'line']
[u'dyson', u'lanka', u'poor', u'show']
[u'eagl', u'triumph', u'high', u'score', u'affair']
[u'egypt', u'offer', u'host', u'arab', u'summit']
[u'elect', u'point', u'labor', u'resurg', u'councillor', u'say']
[u'eriksson', u'extend', u'england', u'contract']
[u'govt', u'comput', u'flag', u'communiti', u'group']
[u'filipino', u'conjoin', u'twin']
[u'councillor', u'oust', u'burdekin', u'mayor']
[u'ivorian', u'rebel', u'demand', u'presid', u'resign']
[u'charg', u'polic', u'break', u'rowdi', u'teen']
[u'kill', u'indonesian', u'landslid']
[u'freak', u'cyclon', u'loom', u'brazilian', u'coast']
[u'french', u'lawyer', u'saddam', u'case']
[u'french', u'voter', u'head', u'poll', u'region', u'elect']
[u'fright', u'feder', u'roddick', u'power']
[u'gladston', u'mayor', u'claim', u'convinc']
[u'glori', u'grand', u'final']
[u'spot', u'england']
[u'govt', u'deni', u'studio', u'financi', u'strife']
[u'govt', u'plan', u'welfar', u'payment', u'opposit']
[u'green', u'upset', u'vote']
[u'gunfir', u'hear', u'congoles', u'capit']
[u'head', u'nuclear', u'watchdog', u'visit', u'iran']
[u'heart', u'bring', u'european', u'footbal', u'home']
[u'hepat', u'taint', u'blood', u'releas', u'korean']
[u'howard', u'foreshadow', u'iraq', u'troop', u'return']
[u'howard', u'pledg', u'tax']
[u'hang', u'parliament', u'like', u'lankan', u'elect']
[u'india', u'agre', u'talk', u'kashmir', u'group']
[u'iraqi', u'polic', u'blame', u'gunfir', u'toddler', u'death']
[u'ireland', u'introduc', u'smoke']
[u'irish', u'rugbi', u'player', u'die', u'world']
[u'israel', u'face', u'resign', u'call']
[u'wouldnt', u'joke', u'iraq', u'howard']
[u'dean', u'dead']
[u'kemp', u'launch', u'exot', u'anim', u'amnesti']
[u'knight', u'mare', u'season', u'john']
[u'lion', u'lethal', u'saint', u'march']
[u'charg', u'consul', u'general', u'secur', u'breach']
[u'charg', u'morphetvill', u'stab']
[u'hospit', u'midnight', u'bash']
[u'remain', u'critic', u'condit', u'near', u'fatal']
[u'mccoy', u'cruis', u'superbik']
[u'medal', u'honour', u'artist']
[u'media', u'award', u'honour', u'journalist']
[u'merger', u'anger', u'elect', u'moor', u'mayor']
[u'michael', u'jackson', u'honour', u'humanitarian', u'work']
[u'milit', u'free', u'pakistani', u'hostag']
[u'minist', u'await', u'health', u'servic', u'financ', u'report']
[u'minist', u'want', u'underworld', u'code', u'silenc']
[u'iraq', u'violenc']
[u'mother', u'plead', u'help', u'miss', u'autist']
[u'mugab', u'wallet', u'get', u'boost']
[u'nasa', u'mission', u'set', u'world', u'speed', u'record']
[u'natoli', u'oust', u'gross', u'maroochi', u'elect']
[u'nepal', u'elect', u'hold']
[u'law', u'toughen', u'weapon', u'offenc', u'penalti']
[u'sydney', u'mayor', u'want', u'bitter']
[u'nigerian', u'shun', u'poll', u'vote', u'violenc']
[u'north', u'west', u'resid', u'shelter', u'cyclon']
[u'oppn', u'seek', u'independ', u'probe', u'byrn', u'death']
[u'artist', u'advantag', u'footbal', u'grand', u'final']
[u'offici', u'probe', u'suspici', u'women', u'prison']
[u'orient', u'nation', u'event']
[u'ottk', u'hang', u'box', u'glove']
[u'palestinian', u'die', u'west', u'bank', u'raid']
[u'panther', u'pummel', u'warrior']
[u'parri', u'sizzl', u'tiger', u'fight']
[u'perfect', u'langer']
[u'owner', u'chanc', u'copi', u'cat']
[u'push', u'ahead', u'anti', u'terror', u'plan']
[u'polic', u'break', u'taiwan', u'presidenti', u'protest']
[u'polic', u'taiwan', u'ballot', u'protest']
[u'polic', u'hunt', u'arm', u'bandit']
[u'polic', u'releas', u'franc', u'bomb', u'threat', u'suspect']
[u'polic', u'rescu', u'miss', u'children']
[u'polic', u'seek', u'wit', u'pedestrian', u'accid']
[u'polic', u'offer', u'lime', u'juic', u'spruce', u'imag']
[u'poll', u'open', u'georgia', u'rebelli', u'adjara', u'provinc']
[u'port', u'embarrass', u'bomber']
[u'press', u'watchdog', u'seek', u'probe', u'iraq', u'cameraman']
[u'privat', u'martin', u'grab', u'phillip', u'island', u'pole']
[u'probe', u'continu', u'uranium', u'water', u'woe']
[u'prosecutor', u'recommend', u'sharon', u'bribe', u'charg']
[u'reid', u'molik', u'florida', u'pratt', u'pull']
[u'roo', u'crush', u'crow']
[u'rule', u'scrutini', u'thorp', u'fall', u'continu']
[u'govt', u'replac', u'dilapid', u'bridg']
[u'scott', u'grab', u'lead', u'wood', u'make']
[u'search', u'continu', u'miss']
[u'season', u'john']
[u'sehwag', u'give', u'india', u'earli', u'advantag']
[u'sehwag', u'slam', u'unbeaten', u'india', u'take', u'control']
[u'sharehold', u'decid', u'board', u'member', u'fate']
[u'spanish', u'polic', u'raid', u'bomb', u'workshop']
[u'korean', u'ralli', u'impeach']
[u'storm', u'blow', u'dragon', u'away']
[u'stormer', u'bruis', u'bull', u'join', u'brumbi']
[u'strong', u'quak', u'shake', u'tibetan', u'region']
[u'styri', u'steadi', u'struggl', u'black', u'cap']
[u'sweet', u'reveng', u'french', u'slam', u'england']
[u'sydney', u'communiti', u'ralli', u'honour', u'hama', u'spiritu']
[u'teen', u'refus', u'bail', u'attempt', u'murder', u'charg']
[u'thorp', u'pool']
[u'thorp', u'bounc', u'disappoint']
[u'thorp', u'bounc', u'surpris']
[u'thuringowa', u'mayor', u'elect', u'slam', u'vote', u'card']
[u'trade', u'deal', u'spark', u'sugar', u'elector', u'protest', u'lgaq']
[u'children', u'miss', u'catamaran', u'accid']
[u'dead', u'collis']
[u'sven', u'hand', u'defo', u'euro', u'chanc']
[u'underwat', u'telecom', u'cabl', u'link', u'franc', u'singapor']
[u'univis', u'content', u'go', u'wireless']
[u'opinion', u'poll', u'give', u'kerri']
[u'victoria', u'alert']
[u'viduka', u'miss', u'deepen', u'gloom', u'leed']
[u'voter', u'shun', u'local', u'govern', u'poll']
[u'govt', u'say', u'opposit', u'inact', u'western']
[u'wale', u'thrash', u'itali', u'hansen', u'final', u'game']
[u'warship', u'scuttl', u'reef']
[u'windi', u'bring', u'ganga', u'edward', u'test']
[u'young', u'achiev', u'name']
[u'account', u'firm', u'plan', u'merger']
[u'actor', u'peter', u'ustinov', u'die', u'age']
[u'china', u'plane', u'skid', u'runway']
[u'albani', u'public', u'transport', u'overhaul']
[u'alburi', u'resid', u'wait', u'result']
[u'mayor', u'elect']
[u'qaeda', u'chief', u'kill', u'pakistani', u'oper']
[u'angri', u'protest', u'coalit', u'shut', u'iraqi']
[u'aniston', u'sign', u'gambit', u'remak']
[u'ararat', u'mayor', u'unlik', u'seek', u'elect']
[u'armidal', u'polic', u'behaviour']
[u'aussi', u'kennedi', u'blow', u'hanel', u'win', u'madeira']
[u'australian', u'coast', u'open', u'explor']
[u'australia', u'need', u'skill', u'migrant', u'remain', u'relev']
[u'author', u'suspect', u'arson', u'prison']
[u'autist', u'day', u'lose', u'bush']
[u'baiter', u'address', u'esper', u'wild', u'problem']
[u'ballarat', u'urg', u'freez', u'fee']
[u'bank', u'drag']
[u'barrier', u'reef', u'benefit', u'improv']
[u'baxter', u'kid', u'fit', u'local', u'school']
[u'beckham', u'bruis', u'sevilla', u'madrid', u'stay']
[u'bendigo', u'crash', u'victim', u'name']
[u'bollon', u'resid', u'water']
[u'brisban', u'councillor', u'squar', u'tunnel', u'fight']
[u'british', u'want', u'econom', u'sanction', u'israel']
[u'british', u'troop', u'clash', u'basra', u'protest']
[u'break', u'hill', u'mayor', u'vow', u'improv', u'citi', u'futur']
[u'break', u'hospit', u'promis', u'anger', u'wheatbelt', u'communiti']
[u'bronco', u'appeal', u'point', u'decis']
[u'build', u'compani', u'admit', u'guilt', u'site', u'death']
[u'review', u'nation', u'energi', u'polici']
[u'cambridg', u'power', u'controversi', u'oxford']
[u'campbel', u'jone', u'like', u'wingecarribe']
[u'carey', u'trio', u'report', u'round']
[u'carey', u'clear']
[u'celtic', u'inflict', u'ibrox', u'miseri', u'ranger']
[u'chan', u'gibb', u'face', u'high', u'tackl', u'charg']
[u'chang', u'climat', u'put', u'tropic', u'risk']
[u'china', u'urg', u'improv', u'trade', u'practic']
[u'chirac', u'poll', u'rout']
[u'church', u'solv', u'year', u'polit', u'mysteri']
[u'clear', u'path', u'save', u'murray', u'darl', u'water']
[u'clerk', u'catch', u'thief', u'steal', u'card']
[u'communiti', u'vow', u'hold', u'gallop', u'hospit']
[u'concern', u'rais', u'privat', u'patholog', u'clinic']
[u'daili', u'postal', u'vote', u'count', u'determin', u'mayor']
[u'dali', u'qualifi', u'augusta']
[u'death', u'candid', u'mean', u'return', u'poll']
[u'disgrac', u'announc', u'adelaid', u'airwav']
[u'doctor', u'fin', u'indec', u'assault']
[u'downer', u'urg', u'syria', u'follow', u'libya', u'lead']
[u'drink', u'drive', u'scarili', u'common']
[u'dead', u'elect', u'relat', u'violenc', u'turkey']
[u'elect', u'result', u'unclear']
[u'elector', u'backlash', u'expect', u'ravensthorp']
[u'emerg', u'servic', u'lobbi', u'fund', u'boost']
[u'ethanol', u'excis', u'free', u'period', u'extend']
[u'extra', u'fund', u'spend', u'need', u'therapist']
[u'farmer', u'upset', u'lack', u'consult']
[u'fewer', u'wed', u'bell', u'ring']
[u'fighter', u'jet', u'train', u'coast']
[u'restrict', u'forc', u'despit', u'rain']
[u'finalist', u'run', u'construct']
[u'fraud', u'prosecut', u'prompt', u'taxi', u'subsidi', u'scheme']
[u'fund', u'troubl', u'mental', u'health', u'provid']
[u'garner', u'say', u'shell', u'stick', u'alia']
[u'gippsland', u'fire', u'contain']
[u'gippsland', u'resid', u'urg', u'bewar', u'wasp']
[u'gold', u'coast', u'mayor', u'vow', u'freez', u'rat']
[u'gold', u'coast', u'nightclub', u'battl', u'lockdown']
[u'govt', u'disregard', u'redfern', u'warn', u'riot', u'claim']
[u'govt', u'hypocrit', u'troop', u'labor']
[u'govt', u'remain', u'tight', u'lip', u'clark', u'futur']
[u'govt', u'meander', u'project']
[u'govt', u'urg', u'examin', u'contamin', u'sit']
[u'govt', u'urg', u'review', u'propos', u'coff', u'harbour', u'bypass']
[u'govt', u'vow', u'push', u'road', u'extens']
[u'greec', u'turkey', u'meet', u'cyprus', u'divis']
[u'green', u'fall', u'short', u'south', u'coast']
[u'green', u'urg', u'greater', u'scrutini', u'anti', u'terror']
[u'green', u'seat', u'wagga', u'council']
[u'rise', u'labor', u'costello']
[u'gunner', u'record', u'unit', u'draw']
[u'gympi', u'criticis', u'bulli', u'claim']
[u'health', u'head', u'tell', u'inquiri', u'terrifi', u'media', u'focus']
[u'health', u'minist', u'confront', u'mersey', u'hospit', u'worker']
[u'hewitt', u'capriati', u'dump', u'serena', u'stutter']
[u'high', u'school', u'vocat', u'program', u'fund']
[u'hill', u'build', u'defenc', u'strategi', u'vietnam']
[u'hop', u'find', u'indonesia', u'landslid', u'victim', u'fade']
[u'howard', u'seek', u'motion', u'troop', u'pullout']
[u'hume', u'council', u'futur', u'decid', u'voter']
[u'india', u'pakistan', u'play', u'year']
[u'injur', u'policeman', u'life', u'support']
[u'investig', u'underway', u'plane', u'crash']
[u'iran', u'resum', u'work', u'nuclear', u'fuel', u'cycl', u'offici']
[u'iran', u'revis', u'quak', u'death', u'toll']
[u'iraqi', u'polic', u'chief', u'escap', u'assassin', u'attempt']
[u'iraq', u'pay', u'aussi', u'wheat']
[u'jackson', u'hand', u'opal', u'leadership', u'role']
[u'jetstar', u'offic', u'open', u'melbourn']
[u'john', u'face', u'anxious', u'wait', u'scan', u'result']
[u'english', u'suffer', u'seizur']
[u'kashmir', u'crash', u'leav', u'dead']
[u'kemp', u'back', u'campaign', u'plastic', u'bag']
[u'kimberley', u'town', u'face', u'tough', u'liquor', u'restrict']
[u'light', u'mean', u'night', u'event', u'renmark']
[u'london', u'terror', u'attack', u'inevit', u'brit', u'govt', u'say']
[u'long', u'camel', u'trek', u'begin', u'broom']
[u'long', u'wait', u'longreach', u'result']
[u'charg', u'armi', u'drug', u'raid']
[u'charg', u'man', u'murder']
[u'part', u'paralys', u'riot']
[u'martin', u'strike', u'protea', u'struggl']
[u'mayor', u'vow', u'serv', u'communiti']
[u'mayor', u'welcom', u'bakewel', u'bridg', u'upgrad']
[u'melbourn', u'tram', u'firm', u'sack', u'driver']
[u'melbourn', u'water', u'restrict', u'continu']
[u'methan', u'discoveri', u'signal', u'life', u'mar']
[u'mexico', u'caver', u'explor', u'armi', u'chief']
[u'mildura', u'southbank', u'public', u'exhibit']
[u'miss', u'children', u'reunit', u'parent']
[u'murali', u'bowl', u'say', u'gilchrist']
[u'murali', u'report', u'chuck', u'doosra']
[u'murray', u'darl', u'benefit', u'salt', u'intercept']
[u'nation', u'kick', u'region', u'parti', u'meet']
[u'nelson', u'refus', u'apologis', u'fake', u'letter']
[u'board', u'member', u'want', u'promot']
[u'maritim', u'secur', u'regim', u'track', u'confer']
[u'mayor', u'look', u'outback', u'council']
[u'mayor', u'target', u'sydney', u'overdevelop']
[u'pest', u'hit', u'tasmanian', u'lettuc', u'crop']
[u'tamworth', u'boundari', u'deni', u'vote', u'mayor']
[u'norri', u'fastest', u'butterfli', u'heat']
[u'north', u'west', u'mop', u'cyclon']
[u'pois', u'strip', u'bronco', u'point']
[u'ponder', u'bulldog', u'point', u'penalti']
[u'work', u'second', u'permiss']
[u'face', u'hike']
[u'justic', u'minist', u'rule', u'prison', u'bracelet']
[u'govt', u'want', u'power', u'revok', u'passport']
[u'territorian']
[u'onslow', u'home', u'violenc', u'prevent', u'program']
[u'pakistan', u'pound', u'sehwag', u'tendulkar']
[u'park', u'win', u'california', u'webb']
[u'rule', u'welfar', u'cut']
[u'polic', u'assist', u'fatal', u'crash']
[u'polic', u'investig', u'alcohol', u'breach', u'claim']
[u'pont', u'pay', u'tribut', u'lehmann', u'warn']
[u'pork', u'produc', u'put', u'membership']
[u'privat', u'guard', u'patrol', u'port', u'augusta']
[u'protea', u'chase', u'victori']
[u'pub', u'warn', u'overcharg', u'water']
[u'raaf', u'gear', u'major', u'train', u'exercis']
[u'radic', u'overhaul', u'propos']
[u'rain', u'littl', u'central', u'victoria']
[u'rain', u'forc', u'delay', u'test']
[u'record', u'attend', u'alic', u'spring', u'expo']
[u'redund', u'decis', u'blow', u'rural', u'area', u'saff']
[u'reef', u'manag', u'plan', u'target', u'problem']
[u'rescu', u'chopper', u'busi', u'weekend', u'accid']
[u'research', u'fear', u'koala', u'habitat', u'danger']
[u'research', u'probe', u'torr', u'strait', u'seagrass', u'dieback']
[u'resid', u'vote', u'councillor', u'abattoir']
[u'rice', u'urg', u'testifi', u'sept', u'inquiri']
[u'risqu', u'work', u'shirt', u'illeg']
[u'riverina', u'mayor', u'enjoy', u'popular', u'support']
[u'rossi', u'take', u'charg', u'test']
[u'rundl', u'keep', u'option', u'open', u'loos', u'mayor']
[u'scan', u'confirm', u'john', u'season']
[u'scoobi', u'battl', u'zombi', u'offic']
[u'scott', u'win', u'golf', u'fifth', u'major']
[u'dead', u'zone', u'threaten', u'planet']
[u'search', u'resum', u'miss', u'autist']
[u'sehwag', u'carv', u'pakistani', u'attack']
[u'senat', u'approv', u'timor', u'deal']
[u'sept', u'commiss', u'want', u'rice', u'testifi']
[u'shark', u'play', u'scott', u'victori']
[u'sharon', u'order', u'yield', u'paper']
[u'shoulder', u'injuri', u'sidelin', u'pickett']
[u'slater', u'win', u'surfest', u'perfect']
[u'socceroo', u'cahil', u'rare', u'long', u'wait']
[u'soldier', u'face', u'discharg', u'drug', u'probe']
[u'south', u'east', u'gear', u'tidi', u'town', u'competit']
[u'spanish', u'schoolboy', u'shock', u'feder']
[u'lankan', u'captain', u'quit', u'aussi', u'test', u'sweep']
[u'studi', u'reveal', u'tough', u'time', u'home', u'buyer']
[u'supersub', u'shevchenko', u'save', u'milan', u'blush']
[u'swim', u'boss', u'leav', u'olymp', u'door', u'open', u'thorp']
[u'swim', u'legend', u'perkin', u'slam', u'steven', u'step', u'call']
[u'swim', u'fan', u'urg', u'support', u'steven']
[u'sydney', u'rail', u'patronag', u'drop']
[u'talli', u'say', u'bronco', u'deserv', u'point']
[u'keep', u'fee', u'unchang']
[u'tender', u'scheme', u'threaten', u'aborigin', u'legal']
[u'terror', u'white', u'paper', u'late', u'rudd']
[u'thorp', u'athen', u'bind']
[u'thousand', u'rais', u'cancer']
[u'separ', u'inquiri', u'probe', u'contamin']
[u'tollway', u'cost', u'rise', u'billion']
[u'tough', u'road', u'ahead', u'mackay', u'mayor', u'council']
[u'toxic', u'alga', u'forc', u'peopl', u'away', u'blackwood', u'river']
[u'trio', u'report', u'round']
[u'tweed', u'resid', u'face', u'loos', u'blitz']
[u'dead', u'freak', u'storm', u'hit', u'southern', u'brazil']
[u'kill', u'uzbekistan', u'market', u'blast']
[u'clear', u'musharraf', u'nuclear', u'traffic']
[u'forens', u'team', u'join', u'taiwan', u'inquiri']
[u'hand', u'health', u'ministri', u'control', u'iraqi']
[u'soldier', u'kill', u'insurg', u'iraq']
[u'uzbekistan', u'blast', u'kill']
[u'govt', u'defend', u'freeway', u'cost', u'blow']
[u'polic', u'review', u'footbal', u'case']
[u'victorian', u'urg', u'volunt', u'help']
[u'virgin', u'go', u'airwav']
[u'vitamin', u'help', u'prevent', u'cancer', u'studi', u'find']
[u'voigt', u'outshin', u'armstrong', u'criterium']
[u'govt', u'commit', u'health', u'overhaul']
[u'govt', u'unveil', u'hospit', u'review']
[u'walter', u'propos', u'resolut', u'sack', u'board']
[u'warn', u'spin', u'thing']
[u'watchdog', u'begin', u'hear', u'alleg', u'polic']
[u'watson', u'ahead', u'shoalhaven']
[u'wetland', u'spray', u'curb', u'ross', u'river']
[u'weed', u'strangl', u'australian', u'agricultur']
[u'wide', u'school', u'receiv', u'special', u'mainten']
[u'wild', u'storm', u'prompt', u'examin', u'respons']
[u'warn', u'iraq', u'specul', u'inquiri']
[u'wollongong', u'mayoralti', u'go', u'prefer']
[u'work', u'begin', u'terror', u'white', u'paper']
[u'youth', u'week', u'kick', u'region']
[u'youth', u'week', u'rock', u'riverland']
[u'fail', u'allay', u'rann', u'sport', u'concern']
[u'activist', u'finish', u'uranium', u'protest', u'trek']
[u'actu', u'seek', u'pay', u'famili', u'leav', u'provis']
[u'adelaid', u'record', u'lowest', u'capit', u'rental', u'vacanc']
[u'control', u'blame', u'iraq', u'friend']
[u'investig', u'branch', u'stack', u'claim']
[u'qaeda', u'chief', u'kill', u'pakistan']
[u'annan', u'revis', u'cyprus', u'deal', u'talk', u'begin']
[u'approv', u'jump', u'beli', u'hous', u'slowdown', u'costello']
[u'arthur', u'down', u'guccion', u'canberra']
[u'athen', u'urg', u'hone', u'olymp', u'secur', u'plan']
[u'athen', u'velodrom', u'roof', u'success', u'warm', u'stadium']
[u'atsic', u'chang', u'underway', u'vanston']
[u'atsic', u'chief', u'urg', u'reform']
[u'australia', u'help', u'indonesia', u'unlock', u'bomb', u'maker', u'file']
[u'aust', u'snake', u'venom', u'cancer', u'promis']
[u'aust', u'team', u'supervis', u'indonesia', u'elect']
[u'banana', u'grower', u'slip', u'away']
[u'bank', u'profit', u'leap', u'asset', u'growth']
[u'bat', u'advantag', u'test', u'arena', u'say', u'studi']
[u'battl', u'wild', u'dog', u'blackal']
[u'legend', u'cook', u'dead']
[u'bewar', u'come', u'punctuat', u'vigilant']
[u'bomb', u'throw', u'embassi', u'malaysia']
[u'bosnian', u'serb', u'jail', u'wartim', u'atroc']
[u'bridg', u'display', u'compani', u'administr']
[u'britain', u'launch', u'organis', u'crime', u'agenc']
[u'britain', u'broadsheet', u'downsiz', u'reader']
[u'british', u'caver', u'leav', u'mexico', u'ambassador']
[u'british', u'compani', u'face', u'slaveri', u'suit']
[u'break', u'hill', u'receiv', u'fund', u'children', u'health']
[u'build', u'approv', u'surg', u'trade', u'deficit']
[u'bunburi', u'investig', u'develop', u'challeng']
[u'council', u'help', u'manag', u'indigen']
[u'expand', u'region', u'fund']
[u'indigen', u'health', u'servic', u'nation']
[u'camera', u'wont', u'improv', u'safeti', u'driver']
[u'carr', u'pledg', u'heart', u'attack', u'death']
[u'caucaunibuca', u'rub', u'season']
[u'china', u'await', u'birth', u'freez', u'babi']
[u'china', u'buy', u'recognit', u'taiwan']
[u'chirac', u'direct', u'raffarin', u'form', u'govern']
[u'christma', u'troop', u'deadlin', u'iraq', u'flexibl', u'labor']
[u'citi', u'hall', u'deadlock', u'newman', u'shun', u'talk']
[u'commission', u'urg', u'attitud', u'chang', u'women']
[u'communiti', u'support', u'goldfield', u'juvenil']
[u'confid', u'agricultur', u'economi', u'survey']
[u'confid', u'wenger', u'rest', u'star', u'semi']
[u'consum', u'group', u'doctor', u'welcom', u'public', u'health']
[u'cooper', u'look', u'barrel']
[u'coron', u'criticis', u'echuca', u'health', u'clinic']
[u'council', u'push', u'zone', u'mount', u'gambier', u'farm']
[u'council', u'urg', u'fluorid', u'poll', u'result']
[u'court', u'hear', u'woman', u'attempt', u'murder']
[u'court', u'uphold', u'test', u'neglig', u'rule']
[u'cyprus', u'peac', u'talk', u'green', u'light']
[u'danih', u'urg', u'fan', u'stick', u'demon']
[u'danish', u'polic', u'arrest', u'child', u'porn']
[u'demon', u'ward', u'cop', u'week']
[u'diamond', u'miner', u'share', u'fail', u'sparkl']
[u'downer', u'gear', u'afghan', u'talk', u'berlin']
[u'dubbo', u'council', u'declar', u'weed']
[u'dutch', u'return', u'home', u'finish', u'jail', u'time']
[u'ethanol', u'industri', u'hail', u'chang', u'expect', u'tough', u'time']
[u'ethanol', u'produc', u'extens', u'excis', u'free']
[u'explos', u'shake', u'uzbek', u'capit']
[u'fallon', u'name', u'opal', u'captain']
[u'farmer', u'urg', u'check', u'grain', u'silo', u'flaw']
[u'fear', u'age', u'care', u'home', u'fee', u'doubl']
[u'feder', u'cut', u'budget', u'recal', u'necessari', u'carr']
[u'fee', u'rise', u'univers']
[u'file', u'share', u'sale', u'studi']
[u'charg', u'drug', u'haul']
[u'forest', u'board', u'crack', u'manfern', u'trade']
[u'player', u'guilti', u'indec', u'assault']
[u'brisban', u'lord', u'mayor', u'help', u'gold', u'coast', u'grow']
[u'financi', u'advis', u'plead', u'guilti', u'super']
[u'freight', u'australia', u'sell']
[u'french', u'jordanian', u'lawyer', u'jostl', u'repres', u'saddam']
[u'geelong', u'scarlett', u'charg', u'strike']
[u'govt', u'accus', u'scale', u'albani', u'colleg']
[u'govt', u'ask', u'clean', u'mildura', u'eyesor']
[u'govt', u'rezon', u'area', u'industri', u'estat']
[u'govt', u'leav', u'hec', u'decis', u'univers']
[u'govt', u'urg', u'violenc', u'hospit']
[u'govt', u'urg', u'establish', u'kimberley', u'bail', u'program']
[u'govt', u'withhold', u'keelti', u'clarif', u'document']
[u'grafton', u'businessman', u'kill', u'motorcycl', u'crash']
[u'grape', u'harvest', u'underway', u'despit', u'tough', u'year']
[u'grazier', u'encourag', u'donat', u'dinosaur', u'skeleton']
[u'green', u'fare', u'southern', u'highland', u'elect']
[u'highway', u'near', u'macksvill', u'block']
[u'honey', u'produc', u'chemic', u'claim', u'suit']
[u'hospit', u'workshop', u'young', u'peopl', u'industri']
[u'hospit', u'pharmacist', u'second', u'guess', u'prescript']
[u'howard', u'claw', u'poll', u'lead']
[u'hundr', u'attend', u'memori', u'underworld', u'figur']
[u'hundr', u'attend', u'mildura', u'art', u'festiv']
[u'hunter', u'policeman', u'face', u'charg', u'case']
[u'injuri', u'red', u'welcom', u'flatley']
[u'investig', u'continu', u'wilcannia', u'riot']
[u'irish', u'return', u'home', u'player', u'death']
[u'judg', u'dismiss', u'blue', u'ribbon', u'appeal']
[u'kaufusi', u'come', u'suspend', u'chan']
[u'kempsey', u'gloucest', u'reveal', u'council']
[u'kennedi', u'take', u'knight', u'captainci']
[u'labor', u'committe', u'dismiss', u'vote', u'rig', u'alleg']
[u'labor', u'chao', u'iraq', u'split', u'downer']
[u'langmack', u'craigi', u'resolv', u'differ']
[u'lang', u'sign', u'panther']
[u'latham', u'scrap', u'incap', u'atsic']
[u'leader', u'debat', u'iraq', u'pullout']
[u'lehmann', u'tough', u'tour']
[u'lettuc', u'pest', u'forc', u'export']
[u'livestock', u'trade', u'continu', u'year', u'round']
[u'london', u'raid', u'terrorist', u'suspect']
[u'lowland', u'gorilla', u'number', u'dramat', u'declin']
[u'price', u'fish', u'port', u'futur', u'jeopardi']
[u'magic', u'million', u'eye', u'tasmanian', u'expans']
[u'jail', u'murder', u'woman', u'year']
[u'remain', u'custodi', u'murder']
[u'martin', u'back', u'latham', u'atsic', u'direct']
[u'lament', u'departur', u'gympi', u'gold']
[u'megawati', u'urg', u'support', u'vote']
[u'mexico', u'wont', u'charg', u'cave', u'explor']
[u'milit', u'execut', u'pakistani', u'hostag']
[u'peopl', u'need', u'heathcot', u'communiti', u'bank']
[u'mother', u'tiananmen', u'squar', u'victim', u'arrest']
[u'murali', u'upset', u'chuck']
[u'murder', u'woman', u'famili', u'hear', u'challeng', u'killer']
[u'nation', u'tour', u'victoria', u'countri', u'feedback']
[u'ausbulk', u'chairman', u'look', u'futur']
[u'exempt', u'armi', u'drug', u'test']
[u'sign', u'terror', u'embassi', u'attack']
[u'notori', u'mountain', u'claim', u'victim', u'summer']
[u'govt', u'give', u'troubl', u'health', u'provid', u'lifelin']
[u'target', u'employ', u'email', u'snoop']
[u'ban', u'cosmet', u'tail', u'dock']
[u'opposit', u'condemn', u'mini', u'budget', u'decis']
[u'packer', u'sign', u'lion', u'chapman']
[u'pakistan', u'clarifi', u'qaeda', u'chief', u'kill']
[u'panel', u'support', u'propos', u'shepparton', u'hous']
[u'parent', u'push', u'better', u'help', u'deaf', u'children']
[u'pal', u'scandal', u'blow', u'child', u'protect']
[u'philippin', u'foil', u'major', u'terrorist', u'attack', u'presid']
[u'turn', u'africa', u'help', u'crisi']
[u'polic', u'charg', u'boy', u'attempt', u'sexual']
[u'polic', u'intercept', u'record', u'drug', u'shipment']
[u'polic', u'quiz', u'bulldog']
[u'polic', u'search', u'cooma', u'thiev']
[u'polic', u'seek', u'spirit', u'assault', u'wit']
[u'port', u'boss', u'announc', u'quit']
[u'port', u'curti', u'turn']
[u'pottharst', u'face', u'shatter', u'olymp', u'dream']
[u'project', u'manag', u'optimist', u'cunningham', u'rail']
[u'properti', u'market', u'collaps', u'predict', u'inflat']
[u'propos', u'belmont', u'midwiferi', u'servic', u'review']
[u'public', u'view', u'want', u'culcairn', u'shire', u'restructur']
[u'qatar', u'trial', u'robot', u'substitut', u'child', u'camel']
[u'quarantin', u'tighten', u'wake', u'insect', u'pest']
[u'radic', u'islam', u'group', u'deni', u'uzbek', u'bomb']
[u'railway', u'fruit', u'grower', u'access', u'asia']
[u'ranger', u'shut', u'indefinit']
[u'ranger', u'worker', u'wari', u'radiat', u'test', u'union']
[u'record', u'level', u'mice', u'winter', u'crop']
[u'region', u'report', u'call', u'farm']
[u'reid', u'report', u'fail', u'indigen', u'australian']
[u'renew', u'energi', u'park', u'ararat']
[u'report', u'card', u'show', u'increas', u'assault']
[u'resid', u'urg', u'contribut', u'marina', u'develop']
[u'retir', u'mayor', u'return', u'follow', u'candid', u'death']
[u'richmond', u'shire', u'reject', u'telstra', u'sale']
[u'rise', u'demand', u'prompt', u'boost', u'tafe', u'fund']
[u'riverina', u'council', u'consid', u'cockatoo', u'cull']
[u'riverina', u'resid', u'urg', u'bewar', u'bogus']
[u'rohd', u'stonewal', u'umpir', u'confess', u'eagl']
[u'impeach', u'hear', u'postpon']
[u'rope', u'barrier', u'highway', u'collis']
[u'russia', u'want', u'extend', u'man', u'mission']
[u'sailor', u'flatley', u'red']
[u'scott', u'move', u'career', u'high', u'world']
[u'scott', u'readi', u'follow', u'footstep', u'idol', u'norman']
[u'secreci', u'cloak', u'jackson', u'grand', u'juri']
[u'senat', u'threaten', u'govt', u'bill', u'keelti', u'deadlin']
[u'serena', u'commit', u'athen']
[u'show', u'cancel', u'english', u'collaps']
[u'smith', u'see', u'protea', u'seri']
[u'snowtown', u'killer', u'refus', u'appeal', u'sentenc']
[u'soorley', u'deni', u'advisori', u'role', u'person', u'interest']
[u'spanish', u'student', u'parti', u'poll', u'mark']
[u'state', u'govt', u'commit', u'futur', u'central']
[u'stem', u'cell', u'abl', u'deliv', u'cancer', u'kill', u'protein']
[u'african', u'dentist', u'practic']
[u'struggl', u'sugar', u'get', u'govt', u'lifelin']
[u'student', u'hail', u'hec', u'fee', u'freez']
[u'sudanes', u'asylum', u'seeker', u'lose', u'releas', u'case']
[u'swede', u'offer', u'davi', u'depth']
[u'tafe', u'teacher', u'lobbi', u'feder', u'fund']
[u'tamil', u'death', u'spark', u'faction', u'fight', u'fear']
[u'teen', u'appear', u'court', u'woman', u'murder']
[u'telstra', u'doubl', u'dissolut', u'trigger']
[u'space', u'tourist', u'suit', u'orbit']
[u'thoma', u'sizzl', u'butterfli', u'heat']
[u'thorp', u'hackett', u'swim']
[u'thorp', u'qualifi', u'fastest', u'freestyl']
[u'thorp', u'race', u'heat']
[u'charg', u'madrid', u'blast']
[u'slow', u'languag', u'develop', u'studi']
[u'townsvill', u'woman', u'escap', u'abduct', u'attempt']
[u'traffic', u'worri', u'lead', u'council', u'studi']
[u'troop', u'debat', u'point', u'score', u'iraqi', u'migrant']
[u'troop', u'withdraw', u'debat', u'prematur', u'migrant', u'group']
[u'turf', u'club', u'urg', u'better', u'upkeep', u'gippsland', u'race']
[u'kill', u'uzbek', u'sieg', u'offici']
[u'british', u'troop', u'iraqi', u'hurt', u'basra', u'clash']
[u'uefa', u'backflip', u'clear', u'kean', u'play']
[u'terror', u'suspect', u'hold', u'raid']
[u'staff', u'protest', u'poor']
[u'union', u'warn', u'near', u'half', u'workforc', u'loss']
[u'market', u'rise', u'upbeat', u'trade']
[u'push', u'elector', u'reform', u'hong', u'kong']
[u'ralli', u'boost', u'australian', u'market']
[u'soldier', u'kill', u'iraqi', u'journalist', u'offici']
[u'honour', u'premier', u'state', u'funer']
[u'honour', u'premier']
[u'video', u'evid', u'help', u'bronco', u'fight', u'sanction']
[u'vietnam', u'declar', u'prematur', u'bird']
[u'virgin', u'blue', u'passeng', u'gold', u'coastperth', u'record']
[u'voter', u'confus', u'blame', u'huge', u'ballot', u'paper']
[u'water', u'corp', u'face', u'prosecut', u'sewag', u'spill']
[u'white', u'page', u'omiss', u'hinder', u'lifelin']
[u'wollongong', u'councillor', u'like', u'retain', u'mayor']
[u'woman', u'jail', u'worker', u'compens', u'fraud']
[u'world', u'wine', u'minist', u'tour', u'southern']
[u'commend', u'australia', u'anti', u'whale', u'stanc']
[u'zimbabw', u'rule', u'parti', u'win', u'elect', u'offici']
[u'doctor', u'refer', u'complaint', u'commiss']
[u'pacif', u'highway', u'black', u'spot']
[u'mobil', u'bridg', u'tank']
[u'pledg', u'support', u'polic', u'investig']
[u'agassi', u'crush', u'serena', u'reach', u'semi']
[u'shed', u'light', u'yang', u'power', u'plan']
[u'spin', u'announc', u'loss']
[u'steadi', u'investor', u'await', u'news']
[u'aust', u'chase', u'trade', u'deal']
[u'australian', u'instrument', u'rock', u'smithsonian']
[u'australian', u'kill', u'mountain', u'climb', u'fall']
[u'australia', u'see', u'china', u'loom', u'trade', u'giant']
[u'author', u'recommend', u'payphon', u'price', u'rise']
[u'babi', u'payment', u'littl', u'late']
[u'lettuc', u'export', u'extend']
[u'barbitur', u'help', u'slow', u'colon', u'cancer', u'progress']
[u'bomber', u'hop', u'personnel', u'boost']
[u'bomb', u'kill', u'soldier', u'iraq']
[u'brack', u'tell', u'clear', u'toll', u'issu']
[u'build', u'industri', u'warn', u'fall']
[u'bulldog', u'head', u'west']
[u'bulldog', u'profil', u'orang']
[u'bushfir', u'victim', u'group', u'criticis', u'delay', u'inquest']
[u'busi', u'canvass', u'mall', u'troubl']
[u'butler', u'polit', u'speech', u'caus', u'controversi']
[u'cahil', u'delight', u'socceroo', u'debut']
[u'refuge', u'boost', u'region', u'job']
[u'call', u'improv', u'north', u'east', u'road']
[u'bomb', u'explod', u'iraq']
[u'chamber', u'happi', u'estat', u'rezon']
[u'charg', u'expect', u'communiti', u'fight']
[u'china', u'introduc', u'visa', u'regul']
[u'claim', u'differ', u'alcohol', u'restrict', u'strategi']
[u'cloud', u'seed', u'trial', u'inevit']
[u'coalit', u'soldier', u'kill', u'west', u'baghdad', u'offici']
[u'comment', u'seek', u'aust', u'china', u'free', u'trade', u'deal']
[u'concern', u'popul', u'rise']
[u'consum', u'spend', u'slow']
[u'council', u'administr', u'highlight', u'undemocrat']
[u'council', u'candid', u'celebr', u'earli']
[u'council', u'threaten', u'action', u'vote']
[u'council', u'ground', u'lagoon', u'plane', u'plan']
[u'creditor', u'mull', u'legal', u'action', u'mine']
[u'crespo', u'give', u'argentina', u'narrow', u'ecuador']
[u'creswick', u'net', u'broadband', u'servic']
[u'cricket', u'chief', u'dismiss', u'murali', u'conspiraci', u'claim']
[u'democrat', u'want', u'hous', u'answer']
[u'demon', u'ponder', u'ward', u'suspens', u'appeal']
[u'detect', u'investig', u'drug', u'leak', u'alleg']
[u'docker', u'farmer', u'charg', u'assault']
[u'doctor', u'group', u'reject', u'health', u'servic', u'offer']
[u'dog', u'orang', u'trip', u'hit', u'pothol']
[u'dutch', u'dog', u'design', u'dunni']
[u'report', u'slam', u'berlusconi', u'media', u'domin']
[u'warn', u'nuclear', u'plant']
[u'everton', u'ferguson', u'escap', u'racism', u'charg']
[u'explos', u'rock', u'texan', u'refineri']
[u'fire', u'desert', u'debut']
[u'farina', u'talk', u'turkey', u'narrow']
[u'dead', u'canari', u'island', u'helicopt', u'crash']
[u'soldier', u'kill', u'iraqi', u'blast']
[u'food', u'grower', u'urg', u'environment', u'friend']
[u'foreshor', u'author', u'attack', u'develop']
[u'freight', u'aust', u'sale', u'reignit', u'rail']
[u'fund', u'improv', u'water', u'qualiti']
[u'gilli', u'take', u'honour']
[u'glori', u'hassel', u'decid']
[u'gough', u'harmison', u'call', u'duti']
[u'govt', u'fund', u'seek', u'live', u'export', u'feedlot', u'upgrad']
[u'govt', u'launch', u'plan', u'boost', u'popul']
[u'govt', u'obstruct', u'cash', u'visa', u'inquiri', u'labor']
[u'govt', u'push', u'anti', u'terror', u'amend']
[u'govt', u'releas', u'explor', u'area']
[u'govt', u'look', u'ethanol', u'percentag', u'mandat']
[u'green', u'support', u'scientif', u'concern', u'road']
[u'hard', u'time', u'forc', u'bses', u'cut']
[u'heart', u'clear', u'murrayfield']
[u'hope', u'rail', u'standardis']
[u'howard', u'hint', u'abolish', u'atsic']
[u'howard', u'latham', u'trade', u'dishonesti', u'claim']
[u'howard', u'maintain', u'latham', u'brief', u'iraq']
[u'howard', u'reject', u'latham', u'brief', u'claim']
[u'indigen', u'leader', u'highlight', u'nepot']
[u'injur', u'ganguli', u'home']
[u'iraqi', u'drag', u'bodi', u'street', u'attack']
[u'israel', u'dismantl', u'jewish', u'outpost']
[u'israel', u'restrict', u'stop', u'gaza', u'food']
[u'jackson', u'sibl', u'name', u'foolish', u'american']
[u'jone', u'song', u'breast', u'stroke', u'heat']
[u'judg', u'confirm', u'falconio', u'murder', u'trial']
[u'kellogg', u'cereal', u'gambl', u'scandal']
[u'talk', u'open', u'afghanistan']
[u'klim', u'fight', u'fit', u'sydney', u'pool']
[u'kyoto', u'farmer', u'face', u'crimin', u'charg', u'bird']
[u'labor', u'promis', u'babi', u'payment']
[u'latham', u'howard', u'iraq']
[u'latham', u'seek', u'apolog', u'howard', u'iraq']
[u'centr', u'want', u'credit', u'regul', u'extend']
[u'leader', u'iraq', u'brief']
[u'injuri', u'setback', u'augusta', u'say', u'tiger']
[u'lenton', u'knock', u'world', u'mark']
[u'lewi', u'moran', u'slay', u'gangland', u'shoot']
[u'live', u'export', u'hail', u'plan', u'industri', u'chang']
[u'lucki', u'escap', u'pilot', u'run']
[u'magistr', u'believ', u'need', u'koori', u'court', u'model']
[u'maher', u'confirm', u'capit', u'post']
[u'mala', u'return', u'uluru']
[u'arrest', u'canadian', u'anti', u'terror', u'raid']
[u'die', u'road', u'crash']
[u'attempt', u'murder', u'charg', u'assault']
[u'shoot', u'dead', u'melbourn', u'club']
[u'offload', u'barthez']
[u'manzano', u'back', u'dope', u'accus']
[u'mayor', u'candid', u'neck', u'neck']
[u'mayor', u'focus', u'region', u'roadwork']
[u'mayor', u'lament', u'lose', u'kangara', u'job']
[u'mayor', u'meet', u'hospit', u'servic']
[u'mccartney', u'serenad', u'resort', u'diner']
[u'meatwork', u'fin', u'tallow', u'spill']
[u'medic', u'student', u'region', u'exposur']
[u'meet', u'call', u'discuss', u'northern', u'health', u'crisi']
[u'melbourn', u'train', u'secur', u'scrutinis']
[u'worker', u'meet', u'offer']
[u'worker', u'uranium', u'scare']
[u'mitsubishi', u'deni', u'closur', u'rumour']
[u'mitsubishi', u'mull', u'australian', u'pullout', u'report']
[u'cannabi', u'southern']
[u'say', u'highway', u'black', u'spot', u'ignor']
[u'morgan', u'mayor', u'race', u'continu']
[u'murali', u'head', u'australia', u'bowl']
[u'coal', u'job', u'off']
[u'nickel', u'project', u'spark', u'polic', u'boost']
[u'miss', u'fierc', u'storm', u'brazil']
[u'appeal', u'demon', u'ward', u'suspens']
[u'noriega', u'bow']
[u'norri', u'pleas', u'athen', u'qualif']
[u'north', u'west', u'host', u'summit']
[u'chief', u'meet', u'bulldog', u'point', u'penalti']
[u'target', u'player', u'attitud', u'women']
[u'support', u'warn', u'poor', u'behaviour']
[u'lib', u'seek', u'royal', u'commiss', u'hospit', u'death']
[u'politician', u'push', u'outlaw', u'petrol', u'sniff']
[u'nuclear', u'watchdog', u'chief', u'visit', u'iran']
[u'job', u'worri', u'consum']
[u'price', u'jump', u'ahead', u'output']
[u'councillor', u'bega', u'shire']
[u'oppn', u'say', u'review', u'proof', u'plan', u'plantat', u'sale']
[u'opposit', u'call', u'state', u'govt', u'cancel', u'japan', u'trip']
[u'packer', u'score', u'court', u'victori']
[u'pakistan', u'govt', u'know', u'nuke', u'trade', u'offici']
[u'pakistan', u'reel', u'follow']
[u'pakistan', u'struggl', u'avoid', u'follow', u'india']
[u'palestinian', u'push', u'peac']
[u'parksid', u'garden', u'report', u'rais', u'concern']
[u'parti', u'back', u'sharon', u'propos', u'poll', u'member']
[u'peponi', u'deni', u'quit', u'rumour']
[u'peter', u'ustinov', u'funer', u'geneva', u'saturday']
[u'petit', u'seek', u'improv', u'mental', u'health', u'facil']
[u'lover', u'pick', u'doggi', u'doppelgang']
[u'polic', u'await', u'report', u'possibl', u'drink', u'spike', u'death']
[u'polic', u'expect', u'arrest', u'philippin', u'drug']
[u'polic', u'charg', u'weekend', u'riot']
[u'polic', u'drug', u'charg', u'eyr', u'peninsula', u'raid']
[u'polic', u'probe', u'fatal', u'crash']
[u'polic', u'probe', u'sydney', u'drive', u'shoot']
[u'polic', u'question', u'singh', u'murder', u'suspect']
[u'polic', u'worri', u'substanc', u'abus', u'increas']
[u'star', u'anastacia', u'recal', u'breast', u'cancer', u'shock']
[u'port', u'face', u'legal', u'action', u'closur']
[u'protest', u'student', u'think']
[u'push', u'council', u'rise']
[u'rail', u'action', u'group', u'speak', u'plan', u'cut']
[u'railway', u'line', u'agreement', u'move', u'closer', u'realiti']
[u'razorback', u'boost', u'dwight', u'clearanc']
[u'recount', u'close', u'rockhampton', u'result']
[u'region', u'chairman', u'back', u'atsic', u'chang']
[u'republican', u'push', u'referendum']
[u'resid', u'upset', u'crematorium', u'plan']
[u'rhoad', u'claim', u'mayor', u'victori']
[u'robinson', u'back', u'opposit', u'plan', u'scrap', u'atsic']
[u'rome', u'derbi', u'replay']
[u'rooster', u'bulldog', u'damag']
[u'parliament', u'monitor', u'content']
[u'scrap', u'atsic', u'welcom', u'latham', u'plan', u'wont', u'work']
[u'serena', u'crush', u'crayba', u'reach', u'semi', u'final']
[u'socceroo', u'hold', u'africa']
[u'socceroo', u'hold', u'victori', u'africa']
[u'soorley', u'highlight', u'need', u'growth', u'manag']
[u'space', u'station', u'techniqu', u'expand', u'ultrasound']
[u'spain', u'say', u'bomb', u'probe', u'focus', u'moroccan', u'group']
[u'stab', u'put', u'hospit']
[u'strike', u'threaten', u'olymp', u'prepar']
[u'student', u'clash', u'polic', u'hec', u'protest']
[u'studi', u'rais', u'alarm', u'vasectomi', u'revers']
[u'suicid', u'bomber', u'target', u'bolivian', u'congress']
[u'support', u'scrap', u'atsic']
[u'survey', u'examin', u'locust', u'movement']
[u'tah', u'lose', u'waugh', u'blue', u'clash']
[u'taiwanes', u'intellig', u'chief', u'resign']
[u'break', u'welcom', u'ethanol', u'refineri', u'plan']
[u'tear', u'kirsten', u'bow', u'high', u'note']
[u'telstra', u'cut', u'wholesal', u'broadband', u'price']
[u'thirti', u'detain', u'uzbek', u'terror', u'attack', u'report']
[u'thorp', u'fastest', u'final', u'hanson', u'back']
[u'british', u'soldier', u'wound', u'iraq', u'blast']
[u'blow', u'bolivian']
[u'ticket', u'sale', u'darwin', u'test', u'match']
[u'japanes', u'court', u'reject', u'compo', u'claim']
[u'tour', u'oper', u'vote', u'market', u'leader']
[u'train', u'safeti', u'start', u'despit', u'concern']
[u'troop', u'deploy', u'lanka', u'vote', u'kill']
[u'trucki', u'bridg', u'blockad', u'end']
[u'viewer', u'spend', u'minut', u'couch']
[u'arrest', u'ship', u'contain', u'theft']
[u'charg', u'sydney', u'protest']
[u'muslim', u'urg', u'fight', u'terror']
[u'union', u'drop', u'wage', u'claim', u'teacher']
[u'union', u'welcom', u'telstra', u'sale', u'failur']
[u'picket', u'caus', u'traffic', u'woe']
[u'stock', u'finish']
[u'host', u'matilda', u'olymp', u'warm']
[u'weapon', u'hunt', u'shift', u'focus', u'intent', u'iraq']
[u'vanston', u'attack', u'commission', u'support', u'atsic']
[u'oppn', u'seek', u'mental', u'health', u'answer']
[u'deni', u'branch', u'stack', u'alleg']
[u'waratah', u'lose', u'waugh', u'blue', u'clash']
[u'memori', u'get', u'closer', u'fund', u'target']
[u'termin', u'uranium', u'project']
[u'white', u'hous', u'offer', u'rice', u'public', u'testimoni', u'sept']
[u'woman', u'award', u'compens', u'tram', u'fall']
[u'increas', u'greenhous', u'emiss', u'level']
[u'afghan', u'ambassador', u'plead', u'assist']
[u'move', u'address', u'sexual', u'assault', u'concern']
[u'airlin', u'sue', u'warn', u'alcohol']
[u'alga', u'outbreak', u'detect', u'westburi']
[u'criticis', u'plan', u'public', u'servic', u'cut']
[u'ararat', u'mayor', u'consid', u'prioriti']
[u'kick', u'quarter', u'style']
[u'atapattu', u'appoint', u'lanka', u'test', u'captain']
[u'atsic', u'abolit', u'answer', u'councillor']
[u'aussi', u'sailor', u'strand', u'coast']
[u'australian', u'appoint', u'iraq', u'oper', u'staff']
[u'australian', u'prospect', u'look', u'good', u'survey']
[u'australian', u'secur', u'british', u'open', u'start']
[u'australia', u'place', u'grow', u'older']
[u'aust', u'warn', u'terror', u'attack', u'ship']
[u'relax', u'membership', u'rule']
[u'bahrain', u'put', u'fizzi', u'booz']
[u'barcoo', u'mayor', u'look', u'forward', u'term']
[u'bash', u'victim', u'thank', u'communiti', u'support']
[u'impass', u'continu']
[u'benefit', u'see', u'grain', u'facil', u'boost']
[u'blueprint', u'develop', u'recreat', u'complex']
[u'bomber', u'hope', u'strong', u'season']
[u'boycott', u'hit', u'vanston', u'aborigin', u'legal', u'tender']
[u'brazilian', u'orang', u'freshen', u'berri', u'juic']
[u'brennan', u'lose', u'mayor', u'spot']
[u'brisban', u'pair', u'convict', u'sexual', u'assault']
[u'british', u'minist', u'resign', u'immigr', u'furor']
[u'british', u'muslim', u'group', u'condemn', u'terror']
[u'butler', u'tell', u'stay', u'polit']
[u'tourist', u'beach', u'safeti', u'push']
[u'canberra', u'cold', u'monday', u'night', u'footi']
[u'cane', u'toad', u'proof', u'fenc', u'look', u'unlik']
[u'castl', u'king', u'defenc']
[u'china', u'anger', u'taiwan', u'radar', u'deal']
[u'code', u'conduct', u'moot', u'councillor']
[u'commerci', u'price', u'pirsa']
[u'confus', u'mount', u'amidst', u'bypass', u'wrangl']
[u'contractor', u'secur', u'cost', u'iraq', u'bring', u'call']
[u'boost', u'milk', u'price']
[u'council', u'agre', u'road', u'safeti', u'sign']
[u'councillor', u'issu', u'soorley', u'plan']
[u'council', u'order', u'compo', u'tree', u'death']
[u'council', u'upset', u'recycl', u'plan', u'bin']
[u'court', u'order', u'william', u'polic', u'statement']
[u'crowd', u'rail', u'hospit', u'fund']
[u'crow', u'ring', u'chang', u'lion', u'clash']
[u'cyprus', u'referendum', u'uphil', u'struggl', u'envoy']
[u'dad', u'urg', u'spend', u'time', u'famili']
[u'dalbi', u'get', u'youth', u'counsel', u'centr']
[u'delay', u'lighthous', u'platform', u'demolit']
[u'dementieva', u'dump', u'venus', u'biscayn']
[u'dfat', u'issu', u'gallipoli', u'travel', u'warn']
[u'disney', u'western', u'cartoon', u'hand', u'draw', u'breed']
[u'tell', u'rat', u'tale']
[u'docker', u'farmer', u'front', u'court', u'assault', u'charg']
[u'donor', u'nation', u'pledg', u'billion', u'afghanistan']
[u'doubt', u'cast', u'wheatbelt', u'polic', u'station']
[u'doubt', u'cast', u'marin', u'park', u'plan']
[u'dozen', u'arrest', u'europ', u'counter', u'terror', u'sweep']
[u'receiv', u'evid', u'bulldog', u'assault', u'charg']
[u'dravid', u'target', u'seri']
[u'dump', u'bodi', u'search', u'underway']
[u'educ', u'fund', u'end']
[u'effort', u'rais', u'region', u'abus', u'awar']
[u'taboo', u'subject', u'schumach', u'brother']
[u'boss', u'quit', u'ferdinand']
[u'farmer', u'cautious', u'fertilis', u'plan']
[u'farmer', u'face', u'check', u'fertilis']
[u'farmer', u'face', u'extend']
[u'farmer', u'face', u'swan']
[u'fear', u'air', u'locust']
[u'feder', u'govt', u'move', u'exclud', u'workplac']
[u'final', u'sydney', u'citi', u'council', u'spot', u'decid']
[u'flatley', u'super', u'centuri']
[u'flower', u'captain', u'sussex']
[u'forget', u'spam', u'lookout', u'spim']
[u'boyfriend', u'question', u'singh', u'murder', u'case']
[u'charg', u'drug', u'raid']
[u'death', u'squad', u'member', u'larg', u'philippin']
[u'fruit', u'firm', u'consid', u'takeov', u'protect']
[u'prison', u'fingleton']
[u'godfath', u'soul', u'entertain', u'melbourn']
[u'googl', u'australia', u'quiet', u'webmail', u'plan']
[u'gould', u'fail', u'qualifi', u'quest']
[u'govt', u'consid', u'appeal', u'court', u'work']
[u'govt', u'urg', u'rule', u'plantat', u'sale']
[u'govt', u'want', u'voter']
[u'discov', u'illeg', u'fish', u'boat']
[u'grape', u'region', u'get', u'pest', u'treatment', u'facil']
[u'group', u'appoint', u'indigen', u'youth', u'worker']
[u'hamster', u'inkl', u'printer', u'danger']
[u'health', u'dept', u'start', u'investig', u'child', u'abus', u'claim']
[u'hill', u'announc', u'defenc', u'artilleri', u'upgrad']
[u'hill', u'applaud', u'iraq', u'militari', u'appoint']
[u'home', u'hurt', u'eriksson']
[u'hope', u'polic', u'appoint', u'narembeen', u'crime']
[u'howard', u'latham', u'intellig', u'disput', u'intensifi']
[u'illeg', u'fish', u'crew', u'fin']
[u'independ', u'chair', u'urg', u'talk']
[u'index', u'show', u'increas', u'manufactur', u'activ']
[u'india', u'claim', u'histor', u'test']
[u'india', u'downplay', u'musharraf', u'threat', u'quit', u'talk']
[u'injur', u'brumbi', u'give', u'time']
[u'interst', u'link', u'possibl', u'gangland', u'kill']
[u'inzamam', u'blame', u'pakistan', u'bowler', u'test', u'debacl']
[u'iraqi', u'protest', u'shiit', u'paper', u'closur']
[u'japanes', u'economi', u'show', u'sign', u'improv']
[u'vacanc', u'fall']
[u'judg', u'unimpress', u'miss', u'meninga']
[u'juri', u'deliber', u'attempt', u'murder', u'trial']
[u'karadz', u'slip', u'nato']
[u'kill', u'civilian', u'soldier', u'wont', u'unpunish']
[u'kitten', u'ablaz', u'alic', u'spring']
[u'krige', u'disciplinari', u'hear', u'postpon']
[u'labor', u'liber', u'councillor', u'decid']
[u'labor', u'deni', u'babi', u'care', u'payment', u'shortfal', u'claim']
[u'land', u'rezon', u'retail', u'develop']
[u'lara', u'refus', u'fight']
[u'latham', u'attack', u'verbal', u'defenc', u'offici']
[u'leader', u'maintain', u'rage', u'iraq', u'debat']
[u'lenton', u'henri', u'athen']
[u'local', u'swimmer', u'reach', u'olymp', u'trial', u'semi', u'final']
[u'lone', u'strike', u'sweden', u'past', u'england']
[u'mackay', u'swimmer', u'secur', u'athen', u'spot']
[u'maitland', u'council', u'take', u'shape']
[u'charg', u'crowd', u'uproar']
[u'convict', u'polic', u'offic', u'murder']
[u'manzano', u'join', u'italian', u'team', u'follow', u'dope']
[u'martha', u'stewart', u'lawyer', u'seek', u'trial']
[u'mayor', u'want', u'council', u'worker', u'secur']
[u'meet', u'back', u'communiti', u'bank', u'studi']
[u'mental', u'health', u'worker', u'vote', u'industri', u'unrest']
[u'north', u'coast', u'mayor', u'know']
[u'worker', u'want', u'secur']
[u'minist', u'stand', u'properti', u'valuat', u'charg']
[u'miss', u'india', u'relinquish', u'crown']
[u'montgomeri', u'say', u'sorri', u'cancer', u'sledg']
[u'fund', u'improv', u'telstra', u'servic']
[u'sponsor', u'seek', u'camel']
[u'strike', u'game', u'greek', u'tragedi']
[u'mother', u'tell', u'soccer', u'goal', u'post', u'danger']
[u'murali', u'touch', u'perth']
[u'board', u'meet', u'amid', u'legal', u'wrangl']
[u'face']
[u'clone', u'law', u'expect', u'pass', u'legisl']
[u'face', u'join', u'riverina', u'council']
[u'govt', u'form', u'franc']
[u'law', u'protect', u'council', u'staff', u'follow']
[u'mayor', u'look', u'ahead']
[u'merg', u'council']
[u'noad', u'name']
[u'deadlin', u'perth', u'water', u'suppli']
[u'plan', u'super', u'council']
[u'govt', u'extend', u'amnesti']
[u'reject', u'trial', u'propos']
[u'assur', u'lower', u'hous', u'seat']
[u'nurs', u'strike', u'compromis']
[u'nurs', u'case', u'boost']
[u'oust', u'haitian', u'presid', u'launch', u'abduct', u'suit']
[u'pakistan', u'moin', u'fin', u'dissent']
[u'parti', u'exchang', u'support', u'mum']
[u'patchi', u'rainfal', u'south', u'west']
[u'payphon', u'oper', u'disappoint', u'price']
[u'actor', u'deni', u'paedophil', u'claim']
[u'perth', u'student', u'kiss', u'affect', u'goodby']
[u'pirat', u'cullen', u'upbeat', u'coach', u'relationship']
[u'plot', u'kill', u'pakistani', u'foil']
[u'play', u'reckless', u'polit', u'iraq', u'latham']
[u'forc', u'elect']
[u'polic', u'consid', u'hous', u'blaze', u'suspici']
[u'polic', u'follow', u'dog', u'orang', u'question']
[u'polic', u'investig', u'budget', u'propos', u'leak']
[u'polic', u'number', u'boost', u'region']
[u'polic', u'alert', u'alleg', u'teen', u'rape']
[u'polic', u'search', u'redfern', u'rioter']
[u'port', u'dust', u'emiss', u'scrutini']
[u'presidenti', u'visit', u'inquiri', u'farc', u'brown']
[u'prison', u'bash', u'death', u'sydney', u'jail']
[u'produc', u'face', u'wild', u'woe']
[u'public', u'face', u'tougher', u'water', u'restrict']
[u'public', u'servant', u'strike']
[u'abuzz', u'firebal', u'yarn']
[u'firebal', u'probabl', u'meteor', u'astronom']
[u'radiat', u'therapist', u'shortag', u'rat', u'union']
[u'rail', u'servic', u'track']
[u'rail', u'worker', u'dismiss', u'drink']
[u'rampag', u'kill', u'farmer']
[u'report', u'question', u'park', u'plan']
[u'retail', u'happi', u'latest', u'growth', u'statist']
[u'robertson', u'secur', u'mayor', u'spot']
[u'roof', u'compani', u'director', u'charg']
[u'rugbi', u'world', u'warm', u'global', u'season']
[u'abalon', u'firm', u'bag', u'china', u'export', u'deal']
[u'shire', u'approv', u'world', u'heritag', u'centr', u'design']
[u'shire', u'face', u'water', u'restrict']
[u'simpson', u'star', u'strike', u'report']
[u'skill', u'migrant', u'face', u'tougher', u'immigr', u'rule']
[u'smith', u'tell', u'leed', u'stay', u'stick']
[u'sniper', u'target', u'shopper', u'smell']
[u'southern', u'enjoy', u'timber', u'boom']
[u'stage', u'wood', u'resurrect', u'major', u'form']
[u'support', u'air', u'alcohol', u'zone']
[u'support', u'librari', u'loan', u'plan']
[u'tap', u'chase', u'underworld', u'murder']
[u'terrorist', u'cell', u'manila', u'polic']
[u'thiev', u'money', u'more']
[u'threat', u'real', u'despit', u'bushfir', u'season']
[u'talk', u'tough']
[u'tourist', u'urg', u'area', u'fruit', u'free']
[u'truck', u'compani', u'blast', u'endang', u'driver']
[u'turk', u'arrest', u'philippin', u'alleg', u'link']
[u'unchang', u'england', u'seri']
[u'union', u'hit', u'telstra', u'market', u'tactic']
[u'student', u'state', u'case', u'fee', u'rise']
[u'seek', u'salvag', u'kosovo', u'peac']
[u'cyprus', u'plan', u'referendum']
[u'ambassador', u'goldfield', u'visit']
[u'contract', u'mean', u'bigger', u'boost']
[u'dollar', u'fall', u'greenspan', u'heart', u'rumour']
[u'battl']
[u'alter', u'assist', u'gangland', u'investig']
[u'parti', u'unit', u'abc', u'sport', u'wrap']
[u'educ', u'criticis', u'slow', u'reaction']
[u'weather', u'record', u'break', u'perth']
[u'wineri', u'shut', u'amidst', u'money', u'owe', u'claim']
[u'zimbabw', u'cricket', u'chief', u'book', u'lord', u'meet']
[u'argentin', u'protest', u'crime', u'surg']
[u'adelaid', u'darwin', u'freight', u'target']
[u'adelaid', u'lover', u'record', u'sentenc', u'murder']
[u'airport', u'go', u'mammal', u'research']
[u'qaeda', u'plan', u'memo', u'target', u'australian', u'report']
[u'analyst', u'doubt', u'potenc', u'fertilis', u'clampdown']
[u'arab', u'gulf', u'state', u'ban', u'gibson', u'film']
[u'argentinean', u'protest', u'crime', u'surg']
[u'attack', u'best', u'form', u'defenc', u'milan']
[u'aussi', u'muscat', u'aim', u'doubl']
[u'aussi', u'market', u'soft', u'pacif', u'brand', u'debut']
[u'aust', u'yachtsmen', u'rescu', u'coast']
[u'tast', u'bronco', u'blame', u'bikini', u'blunder']
[u'bahrain', u'circuit', u'win', u'thumb', u'main']
[u'bali', u'bomber', u'act', u'osama', u'fatwa', u'say', u'milit']
[u'banana', u'wrest', u'confess', u'alleg', u'soap', u'thiev']
[u'appoint', u'maverick', u'chief']
[u'beatti', u'counsel', u'brisban', u'councillor']
[u'bishop', u'stand', u'questionnair']
[u'bomber', u'lose', u'johnson']
[u'bomb', u'spanish', u'railway', u'line']
[u'brazil', u'dream', u'trio', u'fail', u'shine', u'paraguay']
[u'build', u'put', u'olymp', u'champ', u'test']
[u'cahil', u'aim', u'amaz', u'week']
[u'foreign', u'teacher', u'gap']
[u'celtic', u'brink', u'glori', u'kennedi', u'cast', u'long']
[u'chaperon', u'attend', u'latham', u'brief']
[u'chief', u'hold', u'highland']
[u'china', u'order', u'pollut', u'control']
[u'civil', u'right', u'group', u'hit', u'propos', u'chang']
[u'accus', u'racism', u'harbour', u'stoush']
[u'coach', u'fear', u'ail', u'hackett']
[u'comment', u'seek', u'cape', u'rang', u'nation', u'park', u'plan']
[u'communiti', u'vision', u'statement']
[u'concert', u'aim', u'rais', u'banana', u'sugar', u'industri', u'fund']
[u'coron', u'recommend', u'wheelchair', u'rail', u'cross', u'chang']
[u'council', u'consid', u'brothel', u'applic']
[u'councillor', u'prepar', u'work', u'ahead']
[u'council', u'seek', u'great', u'ocean']
[u'council', u'campaign', u'bush', u'race']
[u'council', u'unhappi', u'damag', u'decis']
[u'court', u'consid', u'atsic', u'chief', u'clark', u'case']
[u'court', u'reject', u'asic', u'appeal', u'nrma', u'head']
[u'crew', u'surviv', u'chopper', u'nosed']
[u'crow', u'hope', u'bounc', u'lion']
[u'semi', u'top', u'amaz', u'week', u'socceroo', u'cahil']
[u'dee', u'lead', u'tiger', u'half', u'time']
[u'defenc', u'expert', u'question', u'aust', u'allianc']
[u'democrat', u'highlight', u'south', u'east', u'phone', u'fault']
[u'demon', u'tiger', u'upset']
[u'demon', u'tame', u'tiger']
[u'develop', u'corp', u'help', u'kangara', u'worker']
[u'domest', u'violenc', u'stat', u'caus', u'alarm']
[u'doubt', u'rais', u'chrome', u'law']
[u'dougla', u'surfer', u'councillor']
[u'exhibit', u'showcas', u'break', u'hill', u'natur']
[u'expert', u'probe', u'inner', u'citi', u'croc', u'sight']
[u'famili', u'court', u'chief', u'hang', u'rob']
[u'fast', u'rail', u'work', u'caus', u'disrupt']
[u'govt', u'attack', u'invest', u'aust', u'plan']
[u'fein', u'princ', u'face', u'cowboy', u'tiger', u'clash']
[u'ferrari', u'bahrain', u'practic']
[u'fila', u'fin', u'trade', u'practic', u'breach']
[u'fish', u'tale', u'leg', u'studi']
[u'wicket', u'flintoff', u'put', u'england']
[u'flatley', u'latest', u'blow', u'red']
[u'focus', u'livestock', u'transport']
[u'forestri', u'loss', u'minimis', u'report']
[u'onetel', u'director', u'high', u'court']
[u'teacher', u'charg', u'offenc']
[u'fraudster', u'grandmoth', u'scam', u'lawyer']
[u'french', u'polic', u'arrest', u'senior', u'suspect']
[u'fund', u'boost', u'expect', u'benefit', u'obes']
[u'gibbon', u'put', u'case', u'calder', u'highway', u'fund']
[u'goulburn', u'river', u'fish', u'kill', u'investig']
[u'greec', u'seal', u'border', u'ahead', u'game']
[u'grower', u'happi', u'eas', u'water', u'restrict']
[u'grumpi', u'surviv', u'wild', u'ride']
[u'gunner', u'lose', u'cole', u'gilberto', u'cygan', u'injuri']
[u'hambali', u'relat', u'link', u'explos', u'theft']
[u'health', u'disput', u'risk', u'clinic', u'school']
[u'health', u'servic', u'technolog', u'upgrad']
[u'heart', u'attack', u'kill', u'head', u'sikh']
[u'hill', u'forg', u'ahead', u'gallipoli', u'trip']
[u'home', u'age', u'homeless', u'open', u'adelaid']
[u'hope', u'plan', u'abat', u'wild', u'woe']
[u'hospit', u'share', u'equip', u'fund']
[u'hundr', u'govt', u'laptop', u'miss']
[u'indigen', u'leader', u'predict', u'race', u'base', u'elect']
[u'indonesian', u'polic', u'quiz', u'bashir']
[u'ingal', u'set', u'practic', u'pace']
[u'intern', u'profil', u'peak', u'race']
[u'irish', u'sack', u'smoke', u'work']
[u'johnson', u'extend', u'rugbi', u'career', u'report']
[u'dont', u'mention', u'car', u'clint']
[u'kangaroo', u'cull', u'resort', u'develop']
[u'karak', u'cocki', u'mascot', u'melbourn', u'game']
[u'karak', u'cocki', u'unveil', u'game', u'mascot']
[u'katich', u'win', u'waugh', u'award']
[u'labor', u'defend', u'spend', u'cut']
[u'latham', u'accus', u'downer', u'verbal', u'world', u'leader']
[u'latham', u'back', u'australia', u'common', u'market']
[u'latrob', u'valley', u'briquett', u'return']
[u'group', u'seek', u'polic', u'corrupt', u'probe']
[u'lawri', u'open', u'shoot', u'lead', u'portugues', u'open']
[u'leagu', u'boss', u'kangaroo', u'squad']
[u'lean', u'secur', u'morgan', u'mayor', u'spot']
[u'legal', u'action', u'launch', u'ethanol', u'plant']
[u'lenton', u'book', u'athen', u'olymp', u'ticket']
[u'liverpool', u'look', u'home', u'comfort']
[u'local', u'govt', u'group', u'offend', u'premier', u'remark']
[u'longford', u'bass', u'strait', u'worker', u'lock']
[u'long', u'wait', u'end', u'youth', u'centr']
[u'lie', u'jockey', u'bookmak', u'disqualifi']
[u'malle', u'burn', u'program', u'start']
[u'jail', u'supermarket', u'arm', u'robberi']
[u'court', u'attempt', u'murder', u'charg']
[u'court', u'stab']
[u'marriag', u'mooloolaba', u'road', u'triathlon', u'glori']
[u'mat', u'fein', u'princ', u'face', u'cowboy']
[u'question', u'backyard', u'bomb']
[u'mental', u'health', u'worker', u'work', u'ban']
[u'mental', u'health', u'worker', u'industri', u'action']
[u'milic', u'name', u'nsls', u'best']
[u'minist', u'urg', u'communiti', u'petrol', u'sniff']
[u'monto', u'miner', u'produc', u'clock']
[u'claim', u'hospit', u'staff', u'shake', u'loom']
[u'critic', u'health']
[u'highlight', u'pacif', u'highway', u'fund', u'import']
[u'stromlo', u'laser', u'rang', u'facil', u'reopen']
[u'appoint', u'panel', u'overse', u'meet']
[u'nasa', u'find', u'sign', u'martian', u'water']
[u'nat', u'confer', u'venu']
[u'airspac', u'chang']
[u'bulldog', u'boss', u'warn', u'hooligan']
[u'face', u'caloundra', u'council']
[u'protect', u'unborn', u'babi']
[u'women', u'suffrag', u'memori', u'plan', u'unveil']
[u'northam', u'polic', u'deni', u'presenc']
[u'continu', u'push', u'internet', u'bet']
[u'govt', u'say', u'canola', u'trial']
[u'govt', u'wont', u'foot', u'dredg']
[u'armi', u'boss', u'take', u'drug', u'test']
[u'say', u'feder', u'road', u'fund', u'insuffici']
[u'nurs', u'train', u'plan', u'mildura']
[u'troop', u'leav', u'iraq', u'christma']
[u'offici', u'need', u'minder', u'latham', u'brief', u'hill']
[u'optus', u'propos', u'region', u'servic', u'shake']
[u'orang', u'forum', u'grill', u'bulldog', u'player']
[u'pakistan', u'veteran', u'spinner', u'saqlain', u'second']
[u'panther', u'rout', u'rooster']
[u'patrick', u'guilti', u'unsaf', u'work', u'practic']
[u'peacekeep', u'return', u'solomon', u'tour']
[u'pie', u'bank', u'rocca', u'roll', u'bulldog']
[u'weigh', u'governor', u'debat']
[u'polic', u'issu', u'motorcycl', u'crown', u'land', u'warn']
[u'polic', u'probe', u'leonora', u'shoot']
[u'polic', u'releas', u'caus', u'sydney', u'woman', u'death']
[u'polic', u'seek', u'wollongong', u'raid']
[u'polic', u'seek', u'inform', u'melbourn', u'shoot']
[u'polic', u'withdraw', u'charg', u'father']
[u'poll', u'open', u'lanka']
[u'pope', u'seek', u'aborigin', u'welfar', u'updat']
[u'powel', u'visit', u'haiti', u'follow', u'aristid', u'departur']
[u'probe', u'hear', u'polic', u'inform', u'inform', u'polic']
[u'probe', u'launch', u'asbesto', u'concern']
[u'public', u'ask', u'age', u'care', u'protest']
[u'public', u'warn', u'dengu', u'fever', u'risk']
[u'raaf', u'jet', u'hear', u'albani']
[u'rain', u'fail', u'dampen', u'rossi', u'spirit']
[u'ralli', u'protest', u'singl', u'rail', u'track', u'plan']
[u'real', u'estat', u'compani', u'fraud', u'probe']
[u'real', u'estat', u'firm', u'investig']
[u'real', u'princ', u'look', u'albacet', u'pauper']
[u'reason', u'give', u'cancel', u'music', u'centr']
[u'record', u'fall', u'sydney', u'hackett', u'lead', u'field']
[u'region', u'airlin', u'announc', u'allianc']
[u'regist', u'club', u'welcom', u'rebat']
[u'report', u'highlight', u'rescu', u'chopper', u'cost', u'concern']
[u'report', u'consid', u'timber', u'industri', u'impact']
[u'resourc', u'tip', u'bolster', u'farm']
[u'rice', u'face', u'sept', u'inquiri', u'week']
[u'rock', u'roll', u'gopher', u'race', u'remot', u'town']
[u'roma', u'appeal', u'backfir', u'increas']
[u'unawar', u'gallipoli', u'trip', u'cancel']
[u'safeti', u'investig', u'king', u'wharf']
[u'govt', u'attack', u'pitjantjatjara', u'death']
[u'sarroff', u'back', u'council', u'car', u'crackdown']
[u'scott', u'shadow', u'georgia', u'leader', u'round']
[u'second', u'applic', u'night', u'greyhound', u'meet']
[u'senat', u'reopen', u'heiner', u'shred', u'affair']
[u'sept', u'famili', u'award', u'billion']
[u'serena', u'florida', u'final', u'roddick', u'semi']
[u'shack', u'owner', u'form', u'tenur', u'committe']
[u'sharon', u'threaten', u'assassin', u'arafat']
[u'sheedi', u'shock', u'cancer', u'sledg']
[u'site', u'rethink', u'compost', u'facil']
[u'smack', u'earn', u'sydney', u'woman', u'crimin', u'convict']
[u'spain', u'intercept', u'letter', u'bomb']
[u'spanish', u'judg', u'free', u'bomber', u'suspect']
[u'lankan', u'vote', u'elect']
[u'stern', u'shock', u'listen', u'april', u'fool', u'hoax']
[u'student', u'return', u'longreach', u'high']
[u'studi', u'reveal', u'internet', u'vie', u'viewer']
[u'suicid', u'bomber', u'kill', u'northern', u'iraq']
[u'survey', u'uncov', u'rare', u'sydney', u'speci']
[u'tafe', u'rise', u'turn', u'student', u'away']
[u'taiwan', u'court', u'set', u'day', u'resolv', u'recount']
[u'angler', u'keen', u'lake', u'crescent', u'open']
[u'tasmanian', u'forestri', u'report', u'releas']
[u'teen', u'front', u'court', u'wilcannia', u'attack']
[u'thoma', u'claim', u'record']
[u'thousand', u'flock', u'farm', u'fair']
[u'iraqi', u'polic', u'kill', u'baquba']
[u'rail', u'worker', u'sack', u'alcohol', u'test']
[u'tourist', u'rescu', u'coast', u'surf']
[u'track', u'flight', u'delay']
[u'troop', u'solomon', u'tour']
[u'truce', u'call', u'vote', u'rig', u'furor']
[u'truck', u'safeti', u'check', u'ring', u'alarm', u'bell']
[u'turkish', u'terror', u'arrest', u'coincid', u'gallipoli']
[u'underworld', u'pay', u'tribut', u'slay', u'crime', u'figur']
[u'halt', u'gaza', u'food']
[u'upper', u'hous', u'brand', u'liar', u'parliamentari']
[u'uralla', u'explor', u'econom', u'potenti']
[u'dollar', u'steadi', u'overnight', u'roller', u'coaster']
[u'surg', u'labour', u'market']
[u'reject', u'push', u'polic', u'inquiri']
[u'viduka', u'sidestep', u'roma']
[u'voter', u'popular', u'elect', u'mayor']
[u'wesser', u'lead', u'panther', u'rout', u'rooster']
[u'west', u'ignor', u'anniversari', u'rwandan', u'genocid']
[u'detaine', u'releas', u'guantanamo']
[u'age', u'care', u'staff', u'pressur', u'survey']
[u'ambros', u'claim', u'creek', u'pole']
[u'anzac', u'trade', u'reaction']
[u'arafat', u'dismiss', u'sharon', u'threat', u'assassin']
[u'award', u'recognis', u'drug', u'abus', u'campaign']
[u'ban', u'marriag', u'mistak', u'clinton']
[u'beatti', u'keep', u'polit', u'fertilis', u'debat']
[u'bodi', u'gorg', u'nation', u'park']
[u'bomb', u'explod', u'capit']
[u'brisban', u'trio', u'expect', u'play']
[u'britain', u'condemn', u'assassin', u'sharon', u'threat']
[u'burma', u'free', u'hous', u'arrest']
[u'button', u'set', u'bahrain', u'practic', u'pace']
[u'bomb', u'explod', u'near', u'convoy', u'near', u'baghdad']
[u'carr', u'budget', u'deficit']
[u'cell', u'ahead', u'katherin', u'footbal', u'carniv']
[u'coalit', u'gain', u'grind', u'opposit', u'poll']
[u'cold', u'call', u'telco', u'concern', u'regul']
[u'confer', u'empow', u'casual', u'worker']
[u'coria', u'rescu', u'match', u'point', u'reach', u'final']
[u'council', u'leadership', u'hospit']
[u'coup', u'fear', u'prompt', u'nigerian', u'ban', u'foreign', u'news']
[u'cross', u'australia', u'swim', u'rev']
[u'crusad', u'close', u'brumbi']
[u'danc', u'hero', u'golden', u'gallop']
[u'danc', u'hero', u'make', u'golden', u'gallop']
[u'dodemaid', u'offer', u'england', u'ash', u'hope']
[u'doubl', u'lead', u'drive', u'charg', u'acquitt']
[u'drill', u'reveal', u'volcano', u'insid', u'fuji']
[u'drug', u'author', u'critic', u'vodka', u'flavour']
[u'blair', u'minist', u'give', u'plumb', u'australian']
[u'fake', u'doctor', u'sweden', u'prais', u'bedsid', u'manner']
[u'issu', u'train', u'terror', u'warn']
[u'ferrari', u'lead', u'bahrain', u'nightmar', u'mclaren']
[u'firefight', u'rush', u'trap', u'groom']
[u'earthquak', u'rattl', u'capit']
[u'marin', u'jail', u'abduct', u'british']
[u'gawler', u'school', u'offer', u'counsel', u'teacher']
[u'gibson', u'introduc', u'digit', u'guitar']
[u'gold', u'price', u'give', u'industri', u'boost']
[u'goodby', u'wimpzilla', u'hello', u'ultra', u'compact', u'dwarf']
[u'govt', u'announc', u'fund', u'boost', u'mine', u'explor']
[u'goyder', u'hill', u'debat', u'elect', u'issu']
[u'groom', u'free', u'melbourn', u'lift']
[u'hackett', u'expect', u'shrug', u'ill']
[u'hackett', u'retain', u'crown']
[u'health', u'servic', u'target', u'aborigin', u'famili', u'violenc']
[u'horror', u'round', u'send', u'scott', u'crash', u'georgia']
[u'hostel', u'homeless', u'take', u'fundrais']
[u'hostil', u'brisban', u'council', u'workabl']
[u'hous', u'schoolgirl', u'kill', u'demolish']
[u'howard', u'overrul', u'redund', u'right']
[u'hundr', u'mourn', u'vietnames', u'whale', u'funer']
[u'hurrican', u'surviv', u'red', u'scare']
[u'independ', u'seek', u'anti', u'hoon', u'law']
[u'india', u'call', u'paceman', u'nehra']
[u'investig', u'bag', u'welfar', u'cheat']
[u'iraqi', u'pair', u'head', u'athen']
[u'isra', u'polic', u'raid', u'aqsa', u'mosqu']
[u'italian', u'polic', u'detain', u'suspect', u'milit']
[u'itali', u'pension', u'march', u'reform']
[u'opposit', u'disturb', u'member']
[u'judg', u'declar', u'mistrial', u'tyco', u'case']
[u'klim', u'miss', u'chanc', u'individu', u'olymp']
[u'labor', u'warn', u'spend', u'elect', u'bribe']
[u'lion', u'blitz', u'keep', u'crow']
[u'madrid', u'bomber', u'train', u'plot']
[u'magpi', u'dog', u'thriller']
[u'marsh', u'sadden', u'streak', u'resign']
[u'mcginti', u'urg', u'morn', u'pill', u'discret']
[u'megawati', u'authoris', u'partial', u'elect', u'delay']
[u'afraid', u'seek', u'famili', u'friend', u'workplac']
[u'mick', u'wrap', u'return', u'rocca']
[u'microsoft', u'make', u'peac']
[u'migrant', u'plan', u'help', u'rural', u'busi', u'expert']
[u'minchin', u'vanston', u'lead', u'liber', u'senat', u'ticket']
[u'mourner', u'tribut', u'multi', u'talent', u'ustinov']
[u'muslim', u'leader', u'condemn', u'fallujah', u'mutil']
[u'nation', u'begin', u'elect', u'post', u'mortem']
[u'navratilova', u'singl', u'comeback']
[u'navratilova', u'singl', u'comeback']
[u'bomb', u'madrid', u'attack']
[u'consid', u'samurai', u'sword']
[u'watchdog', u'concern', u'compani']
[u'plan', u'buyer', u'develop']
[u'ogradi', u'battl', u'break', u'ahead', u'flander', u'tour']
[u'osbourn', u'send', u'kelli', u'drug', u'rehab']
[u'palestinian', u'kill', u'isra', u'west', u'bank', u'settlement']
[u'paperwork', u'distress', u'nurs']
[u'phelp', u'beat', u'meet']
[u'philippin', u'rebel', u'agre', u'releas', u'prison']
[u'scrutinis', u'policeman', u'ferrari', u'record']
[u'pilbara', u'search', u'continu', u'miss', u'rescuer']
[u'pixi', u'offer', u'instant', u'live', u'gratif']
[u'overturn', u'small', u'busi', u'redund', u'rule']
[u'polic', u'chief', u'civilian', u'kill', u'baghdad', u'violenc']
[u'polic', u'lock', u'drug']
[u'data', u'give', u'solid', u'powel']
[u'price', u'trail', u'jimenez', u'portug']
[u'proud', u'troop', u'finish', u'solomon', u'deploy']
[u'raider', u'strong', u'eel']
[u'rail', u'link', u'track', u'defenc', u'contract']
[u'record', u'campaign', u'fund', u'rais', u'white', u'hous', u'bid']
[u'redund', u'payout', u'worker', u'right', u'union']
[u'rob', u'tendulkar', u'doubl', u'mistak', u'ganguli']
[u'roddick', u'crush', u'spadea', u'set', u'coria', u'final']
[u'rwanda', u'kill', u'werent', u'genocid', u'studi']
[u'saint', u'march', u'port', u'clip', u'eagl']
[u'scandia', u'sail', u'victori', u'mooloolaba']
[u'scientist', u'late', u'road', u'chang']
[u'secur', u'tight', u'donaldson', u'royal', u'danish', u'wed']
[u'semen', u'studi', u'bull']
[u'shell', u'investig', u'refineri', u'blaze']
[u'snowi', u'walk', u'asiat', u'bear']
[u'sorenstam', u'lead', u'event']
[u'south', u'clobber', u'undisciplin', u'shark']
[u'spain', u'deploy', u'armi', u'bomb', u'rail', u'track']
[u'spain', u'regret', u'push', u'blame', u'bomb']
[u'lanka', u'await', u'tight', u'poll', u'result']
[u'lankan', u'voter', u'send', u'mix', u'signal']
[u'lanka', u'vote', u'result', u'delay']
[u'strong', u'dollar', u'hit', u'demand', u'australian', u'wool']
[u'sudan', u'ethnic', u'cleans', u'continu', u'uncheck']
[u'support', u'water', u'trust', u'inquiri', u'flow']
[u'surgeon', u'warn', u'rush', u'comeback', u'john']
[u'syria', u'jail', u'human', u'right', u'activist']
[u'taibu', u'youngest', u'test', u'skipper']
[u'taiwan', u'opposit', u'protest', u'elect', u'defeat']
[u'tasmanian', u'mull', u'growth', u'altern']
[u'teen', u'kill', u'strike', u'train']
[u'thoma', u'weigh', u'olymp', u'option']
[u'thorp', u'centuri', u'leav', u'test', u'balanc']
[u'tokyo', u'reach', u'argentina', u'meter', u'run']
[u'townsvill', u'soldier', u'solomon']
[u'trucki', u'load', u'elect', u'issu']
[u'turkey', u'slam', u'australia', u'terror', u'alert']
[u'rais', u'fee']
[u'arrest', u'farc', u'arm', u'negoti']
[u'fingerprint', u'deterr', u'travel']
[u'fingerprint', u'plan', u'sensibl', u'precaut', u'carr']
[u'militari', u'videotap', u'fallujah', u'kill']
[u'slap', u'sanction', u'iranian', u'nuclear', u'supplier']
[u'soldier', u'marin', u'kill', u'iraq', u'attack']
[u'fingerprint', u'australian', u'visitor']
[u'violat', u'human', u'right', u'guantanamo', u'spanish']
[u'warn', u'israel', u'dont', u'kill', u'arafat']
[u'vampir', u'bat', u'kill', u'peopl', u'brazil']
[u'nistelrooy', u'henri', u'omit', u'line']
[u'nistelrooy', u'doubt']
[u'victori', u'india', u'second', u'australia', u'chappel']
[u'voss', u'star', u'lion', u'victori']
[u'west', u'cowboy']
[u'windi', u'lose', u'smith', u'thumb', u'injuri']
[u'wine', u'win', u'hindmarsh', u'select']
[u'cricket', u'crisi', u'streak', u'quit']
[u'abandon', u'prove', u'govt', u'famili', u'payment', u'plan']
[u'abbott', u'access', u'children', u'medic', u'record']
[u'move', u'prevent', u'electron', u'bulli']
[u'airport', u'powder', u'illicit', u'drug']
[u'amberleigh', u'hous', u'captur', u'grand', u'nation']
[u'arson', u'suspect', u'fire', u'raaf', u'base']
[u'aussi', u'georgia', u'content']
[u'babi', u'injur', u'brisban', u'crash']
[u'beachsid', u'town', u'win', u'nation', u'tidi', u'trophi']
[u'blue', u'overcom', u'slow', u'start', u'cat']
[u'bomb', u'destroy', u'shia', u'mosqu', u'iraq', u'wit']
[u'bond', u'medic', u'student', u'begin', u'univers']
[u'botham', u'tip', u'vaughan', u'english', u'renaiss']
[u'bronco', u'overrun', u'underman', u'storm']
[u'burmes', u'minist', u'back', u'away', u'releas']
[u'preserv', u'histor', u'tree']
[u'canadian', u'lotteri', u'winner', u'flee', u'wive']
[u'canadian', u'seal', u'hunt', u'ignit', u'battl']
[u'carr', u'hoard', u'claim', u'desper', u'brogden']
[u'charg', u'lay', u'melbourn', u'train', u'death']
[u'child', u'protect', u'advoc', u'seek', u'senat', u'post']
[u'coalit', u'troop', u'shiit', u'protestor', u'iraq']
[u'dalla', u'riva', u'queri', u'polic', u'cut']
[u'diplomat', u'immun', u'free', u'congo', u'suspect']
[u'doyl', u'back', u'increas', u'polic', u'anti', u'corrupt', u'power']
[u'dragon', u'belt', u'lacklustr', u'knight']
[u'elect', u'inquiri', u'focus']
[u'postpon', u'head', u'decis']
[u'farm', u'gate', u'caus', u'highway', u'accid']
[u'policemen', u'kill', u'karachi', u'shoot']
[u'forestri', u'report', u'split', u'timber', u'worker', u'miller']
[u'fresh', u'poll', u'rule', u'lanka', u'despit', u'rig']
[u'german', u'train', u'crash', u'avert', u'metal', u'slab', u'track']
[u'glori', u'embrac', u'underdog', u'status']
[u'trial', u'spark', u'liabil', u'confus']
[u'golden', u'goal', u'earn', u'perth', u'glori']
[u'govt', u'ignor', u'afghan', u'counter', u'terror', u'request']
[u'govt', u'stanc', u'aust', u'troop', u'iraq', u'tripe']
[u'greek', u'cypriot', u'ralli', u'reunif', u'plan']
[u'gunner', u'confid', u'champion', u'leagu', u'rebound']
[u'hama', u'claim', u'fatal', u'settlement', u'attack']
[u'hoggard', u'fire', u'england', u'seri']
[u'howard', u'foreshadow', u'famili', u'polici', u'overhaul']
[u'hurrican', u'catarina', u'kill']
[u'injur', u'moin', u'miss', u'second', u'test']
[u'inquiri', u'hold', u'adelaid', u'sieg', u'shoot']
[u'insurg', u'kill', u'marin', u'separ', u'attack']
[u'iran', u'deni', u'report', u'nuke', u'materi']
[u'iran', u'iraq', u'discuss', u'border', u'secur', u'wake']
[u'iraqi', u'cleric', u'support', u'shoot', u'soldier']
[u'jordanian', u'syrian', u'minist', u'discuss', u'reschedul']
[u'king', u'play', u'off', u'decid']
[u'late', u'doubl', u'preserv', u'celtic', u'home']
[u'long', u'time', u'poll', u'howard']
[u'madrid', u'bomb', u'mastermind', u'corner', u'blow', u'self']
[u'charg', u'attempt', u'murder', u'sieg']
[u'impal', u'treasuri', u'casino', u'fenc']
[u'injur', u'rid', u'motorbik', u'cliff']
[u'kill', u'ultra', u'light', u'plane', u'crash']
[u'serious', u'hurt', u'accid', u'goldmin']
[u'martin', u'scuffl', u'paparazzi']
[u'michael', u'schumach', u'win', u'bahrain', u'grand', u'prix']
[u'mooloolaba', u'navig', u'sail', u'renown']
[u'mugab', u'say', u'opposit', u'readi', u'burial', u'report']
[u'nepales', u'continu', u'democraci', u'protest']
[u'newcastl', u'inject', u'life', u'champion', u'challeng']
[u'korean', u'defector', u'arriv', u'south']
[u'market', u'canola']
[u'reason', u'pilbara', u'bodi', u'miss', u'rescuer']
[u'giant', u'panda']
[u'mental', u'health', u'servic', u'inadequ', u'council']
[u'opposit', u'lobbi', u'secur', u'boost', u'train']
[u'opposit', u'parti', u'stop', u'govt', u'plan', u'child']
[u'pakistan', u'desper', u'level', u'india', u'seri']
[u'palestinian', u'plan', u'isra', u'pullback', u'coordin']
[u'passion', u'stir', u'blame', u'jesus', u'death']
[u'philip', u'morri', u'threaten', u'quit', u'swiss']
[u'philippin', u'mayor', u'kill', u'latest', u'poll', u'relat']
[u'polic', u'investig', u'year', u'cannabi', u'user']
[u'polic', u'shoot', u'adelaid', u'disturb']
[u'powel', u'admiss', u'expos', u'lie', u'rudd']
[u'powel', u'admiss', u'pressur', u'blair']
[u'pratt', u'urg', u'action', u'drink', u'spike']
[u'prayer', u'servic', u'honour', u'rescu', u'volunt']
[u'putin', u'chirac', u'affirm', u'anti', u'terror', u'commit']
[u'rann', u'seek', u'respons', u'public', u'servic']
[u'realiti', u'want', u'british', u'famili', u'head']
[u'reopen', u'senna', u'case', u'disappoint', u'william']
[u'rescuer', u'death', u'shock', u'pilbara', u'resid']
[u'rick', u'kelli', u'win', u'raini', u'eastern', u'creek']
[u'roberto', u'carlo', u'doubl', u'keep', u'real', u'nose']
[u'rock', u'fish', u'survey', u'improv', u'safeti']
[u'rokocoko', u'lead', u'blue', u'past', u'waratah']
[u'roo', u'good', u'hawk']
[u'schumach', u'snatch', u'bahrain', u'pole']
[u'senat', u'reopen', u'probe', u'alleg', u'document']
[u'senior', u'polic', u'offic', u'suspend', u'claim']
[u'serena', u'complet', u'comeback', u'style']
[u'shark', u'claw', u'sink', u'cat']
[u'singapor', u'throw', u'union', u'activist']
[u'slovak', u'autocrat', u'win', u'presidenti', u'round']
[u'smack', u'law', u'adequ', u'beatti']
[u'soap', u'mobil', u'go', u'tini']
[u'sophist', u'kirup', u'speed']
[u'sorenstam', u'seek', u'second', u'consecut']
[u'spain', u'hail', u'arrest', u'say', u'explos']
[u'steven', u'leav', u'door', u'open', u'thorp']
[u'streak', u'comment', u'resign']
[u'sudanes', u'claim', u'terror', u'plot', u'expos']
[u'supplier', u'rule', u'lift', u'water', u'restrict']
[u'suspect', u'polic', u'kill', u'madrid', u'explos']
[u'releas', u'eye', u'ahead', u'convent', u'despit']
[u'swan', u'docker']
[u'taiwan', u'minist', u'offer', u'resign', u'protest']
[u'taiwan', u'protest', u'injur', u'anti', u'chen', u'ralli']
[u'sweeten', u'budget', u'say']
[u'teen', u'injur', u'rid', u'motorbik', u'cliff']
[u'teeth', u'cell', u'grow', u'bodi', u'part']
[u'kill', u'coalit', u'troop', u'clash']
[u'thousand', u'march', u'welfar', u'reform', u'europ']
[u'thousand', u'march', u'govt', u'chang', u'polici']
[u'kill', u'dozen', u'wound', u'shiit', u'coalit']
[u'portug']
[u'trade', u'deal', u'damag', u'pacif', u'economi']
[u'train', u'resourc', u'fighter', u'chronic']
[u'polic', u'give', u'extra', u'time', u'quiz', u'terror']
[u'union', u'impos', u'work', u'ban', u'shell', u'inquiri']
[u'union', u'fight', u'howard', u'contemptu', u'redund']
[u'unit', u'end', u'arsenal', u'reign']
[u'tank', u'crush', u'iraqi', u'protest', u'polic']
[u'vatskali', u'appoint', u'communiti', u'member']
[u'govt', u'defend', u'handl', u'underworld']
[u'liber', u'vote', u'upper', u'hous', u'abolit']
[u'warrior', u'beat', u'eagl', u'break', u'duck']
[u'warrior', u'edg', u'ahead', u'man']
[u'woman', u'escap', u'hous', u'northern', u'tasmania']
[u'youth', u'week', u'end', u'parliament']
[u'zimbabwean', u'deni', u'woodbridg']
[u'kill', u'china', u'crash']
[u'report', u'vet', u'delay', u'releas']
[u'abalon', u'industri', u'concern', u'high', u'aussi', u'dollar']
[u'look', u'outback', u'pioneer']
[u'aborigin', u'educ', u'fund', u'boost', u'announc']
[u'accus', u'killer', u'blame', u'parent']
[u'consid', u'carp', u'crackdown']
[u'ainsworth', u'retir', u'polit']
[u'alan', u'jone', u'clear', u'telstra', u'deal']
[u'alcohol', u'restrict', u'transform', u'aborigin', u'communiti']
[u'alleg', u'peopl', u'smuggler', u'face', u'brisban', u'court']
[u'smile', u'luna', u'park', u'open']
[u'air', u'illeg', u'fish', u'fear']
[u'anim', u'cruelti', u'charg', u'anderson', u'withdraw']
[u'schumach', u'bahrain']
[u'anticip', u'boost', u'golkar', u'indonesian']
[u'anzac', u'public', u'holiday', u'caus', u'employ', u'confus']
[u'arson', u'blame', u'factori', u'blaze']
[u'artist', u'bring', u'cunnamulla', u'fella', u'life']
[u'aussi', u'bell', u'beach', u'wildcard']
[u'aust', u'pacif', u'bulli']
[u'australian']
[u'australia', u'cahil', u'take', u'millwal', u'final']
[u'bahrain', u'rais', u'circuit']
[u'beat', u'lara', u'pledg', u'fight']
[u'beckham', u'dismiss', u'report', u'affair']
[u'bird', u'charg', u'knee', u'incid']
[u'bird', u'water', u'knee', u'incid']
[u'blaze', u'shut', u'esso', u'plant']
[u'blood', u'clot', u'sidelin', u'sailor']
[u'bodi', u'investig', u'health', u'precinct', u'plan']
[u'bomb', u'ingredi', u'pull', u'shelv']
[u'broom', u'shire', u'plan', u'process', u'delay']
[u'builder', u'child', u'death', u'mysteri']
[u'build', u'start', u'communiti', u'recreat', u'centr']
[u'bulldog', u'embroil', u'drug', u'transact', u'alleg']
[u'bulldog', u'embroil', u'drug', u'claim']
[u'burn', u'program', u'start', u'short']
[u'bushfir', u'coron', u'reject', u'cost', u'claim']
[u'busi', u'tell', u'factor', u'terror']
[u'butcher', u'snag', u'sausag', u'titl']
[u'cairn', u'quit', u'test', u'cricket']
[u'go', u'young', u'coast', u'guard', u'volunt']
[u'caribbean', u'conquer', u'vaughan', u'eye', u'ash']
[u'centrelink', u'offic', u'recognis', u'indigen']
[u'chariti', u'urg', u'govt', u'address', u'poverti', u'woe']
[u'charter', u'tower', u'win', u'spirit', u'australia', u'tidi']
[u'children', u'benefit', u'fish', u'clinic']
[u'child', u'alleg', u'level', u'polic']
[u'pleas', u'internet', u'paedophilia', u'sting']
[u'construct', u'start', u'public', u'hous', u'project']
[u'council', u'deni', u'input', u'mouth', u'open']
[u'councillor', u'urg', u'control']
[u'council', u'futur', u'remain', u'uncertain']
[u'council', u'urg', u'fund', u'boost', u'mental', u'health']
[u'court', u'consid', u'safeti']
[u'court', u'hear', u'peopl', u'smuggl', u'case']
[u'cowboy', u'continu', u'disastr', u'start', u'season']
[u'secur', u'increas', u'stake', u'sugar', u'refin']
[u'cycl', u'club', u'refurbish', u'track', u'offici', u'open']
[u'depart', u'admit', u'passport', u'mistak']
[u'dept', u'urg', u'help', u'implement', u'live', u'export']
[u'dept', u'want', u'test', u'yarragade', u'aquif']
[u'deputi', u'discuss', u'water', u'initi']
[u'doctor', u'criticis', u'refus', u'smoker', u'treatment']
[u'elect', u'offici', u'kill', u'papua']
[u'investig', u'suspect', u'bird', u'poison']
[u'esso', u'product', u'resum', u'longford']
[u'eurobodalla', u'council', u'posit', u'decid']
[u'fallout', u'abattoir', u'closur', u'impact']
[u'feder', u'underworld', u'task', u'forc']
[u'hike', u'blockad', u'stop', u'senat', u'meet']
[u'flander', u'ordeal', u'take', u'toll', u'aussi']
[u'forster', u'victori', u'ironman', u'mccormack']
[u'children', u'hous', u'blaze']
[u'franc', u'arrest', u'terror', u'raid']
[u'franc', u'detain', u'terror', u'suspect', u'sweep']
[u'french', u'polic', u'uncov', u'arm', u'factori']
[u'fund', u'boost', u'local', u'servic']
[u'futur', u'ethanol', u'blend', u'petrol', u'trial']
[u'suppli', u'secur', u'amid', u'industri', u'woe', u'esso']
[u'govt', u'welcom', u'tree', u'clear', u'fine']
[u'govt', u'deni', u'ignor', u'afghan', u'troop']
[u'govt', u'releas', u'labor', u'school', u'fund', u'list']
[u'govt', u'urg', u'decid', u'rescu', u'helicopt', u'fund']
[u'govt', u'urg', u'reveal', u'develop', u'board', u'plan']
[u'grain', u'compani', u'resum', u'merger', u'talk']
[u'greek', u'author', u'swoop', u'suspect', u'illeg']
[u'group', u'welcom', u'blue', u'hole', u'draft', u'manag', u'plan']
[u'hamstr', u'clear', u'oloughlin']
[u'handov', u'date', u'question', u'iraq', u'violenc', u'continu']
[u'health', u'minist', u'play', u'vaccin', u'overrul']
[u'heater', u'blame', u'tragedi']
[u'histor', u'elect', u'begin', u'indonesia']
[u'holling', u'sell', u'share', u'debt']
[u'hop', u'mullewa', u'offici', u'solv', u'social', u'problem']
[u'ikea', u'founder', u'jump', u'gate', u'world', u'richest']
[u'india', u'bat', u'second', u'test']
[u'indian', u'lose', u'earli', u'wicket']
[u'industri', u'disagre', u'ammonium', u'nitrat']
[u'injur', u'coria', u'hand', u'roddick', u'florida', u'titl']
[u'show', u'carp', u'export']
[u'inter', u'doubl', u'juventus', u'boost', u'milan']
[u'investig', u'begin', u'accid']
[u'iraq', u'administr', u'outlaw', u'muslim', u'cleric']
[u'jiminez', u'win', u'portug', u'price', u'second']
[u'rise']
[u'keat', u'clear', u'injuri']
[u'keat', u'oloughlin', u'clear', u'injuri']
[u'kemp', u'tour']
[u'kemp', u'assess', u'crocodil', u'safari', u'plan']
[u'keystrok', u'tracker', u'target', u'internet', u'bank']
[u'lloyd', u'charg', u'video', u'review']
[u'lloyd', u'tribun', u'strike', u'charg']
[u'local', u'junior', u'lifesav', u'win', u'award']
[u'long', u'wait', u'plane', u'crash', u'search']
[u'madrid', u'mastermind', u'kill', u'blast']
[u'charg', u'assault', u'teenag']
[u'mandella', u'urg', u'strong', u'voter', u'turnout']
[u'help', u'polic', u'inquiri', u'drug']
[u'court', u'rail', u'death']
[u'face', u'court', u'stab', u'incid']
[u'maryborough', u'futur', u'agenda', u'govt', u'meet']
[u'mayor', u'happi', u'fresh', u'council', u'approach']
[u'mclaren', u'pair', u'dismay', u'doubl', u'failur']
[u'media', u'resourc', u'help', u'market', u'reach', u'record', u'high']
[u'melbourn', u'vote', u'increas', u'hec', u'fee']
[u'mental', u'health', u'worker', u'begin', u'industri', u'action']
[u'mine', u'citi', u'recognis', u'tidi', u'town', u'award']
[u'minist', u'cite', u'famili', u'reason', u'retir']
[u'minist', u'polic', u'chief', u'resign', u'taiwanes']
[u'money', u'give', u'river', u'clean']
[u'moor', u'confirm', u'sydney', u'mayor']
[u'blast', u'rorriss', u'workplac', u'death', u'comment']
[u'nation', u'leader', u'queri', u'health', u'complaint']
[u'face', u'lismor', u'council']
[u'grain', u'author', u'explain', u'local']
[u'hamstr', u'worri', u'oloughlin']
[u'newman', u'hinchliff', u'continu', u'council', u'talk']
[u'region', u'drought', u'coordin', u'appoint']
[u'wheat', u'virus']
[u'nib', u'hospit', u'deem', u'eas', u'surgic', u'load']
[u'nirvana', u'fan', u'honour', u'cobain', u'memori']
[u'norfolk', u'australian', u'scheme']
[u'noxious', u'walpol', u'expans']
[u'govt', u'odd', u'teacher', u'compo', u'decis']
[u'withdraw', u'pharmaci', u'deregul', u'legisl']
[u'seafood', u'council', u'support', u'custom', u'polici']
[u'concern', u'fund', u'claim', u'campus']
[u'opposit', u'leader', u'vow', u'victorian']
[u'owen', u'doubl', u'inch', u'liverpool', u'closer', u'europ']
[u'packag', u'announc', u'struggl', u'forestri', u'industri']
[u'pakistan', u'call', u'curb', u'match', u'fix', u'claim']
[u'pakistan', u'offer', u'host', u'nuclear', u'talk']
[u'passov', u'holiday', u'trigger', u'isra', u'terror', u'fear']
[u'peerless', u'voss', u'set', u'round', u'alight']
[u'pettigrew', u'home', u'port']
[u'polic', u'consid', u'murder', u'charg', u'riot', u'death']
[u'polic', u'investig', u'player', u'alleg', u'involv']
[u'polic', u'lament', u'drive', u'offenc']
[u'polic', u'probe', u'brisban', u'nurseri', u'death']
[u'polic', u'probe', u'fenc', u'impal']
[u'polit', u'wrangl', u'tugun', u'bypass', u'continu']
[u'posit', u'forecast', u'job']
[u'premier', u'flag', u'leaner', u'bureaucraci']
[u'probe', u'continu', u'perth', u'church', u'blaze']
[u'protest', u'continu', u'log', u'coup']
[u'public', u'input', u'seek', u'river', u'cross', u'display']
[u'rail', u'death', u'spark', u'secur', u'boost']
[u'ralf', u'look', u'glimmer', u'hope', u'william']
[u'ranger', u'trail', u'celtic', u'point']
[u'rat', u'pose', u'issu', u'school', u'redevelop']
[u'red', u'injuri', u'wait']
[u'red', u'injuri', u'wait', u'ahead', u'stormer', u'clash']
[u'relay', u'life', u'rais', u'thousand', u'cancer', u'research']
[u'roo', u'hit', u'pessimist', u'pundit', u'harvey']
[u'erupt', u'illeg', u'fish', u'polici']
[u'rwanda', u'attack', u'global', u'inact', u'genocid']
[u'saddam', u'enemi', u'lead', u'iraqi', u'defenc']
[u'sadr', u'follow', u'seiz', u'basra', u'governor', u'offic']
[u'school', u'keen', u'steal', u'generat', u'lesson']
[u'scientist', u'consid', u'environment', u'protect']
[u'seven', u'charg', u'dope', u'bust']
[u'seven', u'soldier', u'kill', u'baghdad']
[u'seven', u'wound', u'iraq', u'suicid', u'blast']
[u'shire', u'deputi', u'presid', u'win', u'liber', u'endors']
[u'sorenstam', u'defend', u'titl', u'career', u'victori']
[u'lanka', u'hang', u'parliament']
[u'stand', u'room', u'atop']
[u'stand', u'continu', u'iraq']
[u'statist', u'reveal', u'youth', u'canberra']
[u'summer', u'weather', u'trend', u'worri', u'expert']
[u'switch', u'normal', u'gene', u'link', u'cancer']
[u'governor', u'claim', u'remov', u'campaign']
[u'town', u'win', u'nation', u'recognit']
[u'teen', u'hospit', u'polic', u'pursuit']
[u'teen', u'treat', u'stab', u'wound']
[u'telstra', u'talk', u'firm']
[u'tenni', u'coach', u'stand', u'trial', u'charg']
[u'toddler', u'drown', u'irrig', u'channel']
[u'lay']
[u'town', u'devast', u'children']
[u'tribut', u'women', u'suffrag', u'bore']
[u'troop', u'clash', u'iraqi', u'protest']
[u'truck', u'driver', u'kill', u'earli', u'morn', u'accid']
[u'turbul', u'shake', u'passeng', u'seat']
[u'charg', u'drop', u'anim', u'cruelti', u'case']
[u'defend', u'hike']
[u'submit', u'campus', u'develop', u'applic']
[u'uranium', u'worker', u'tell', u'fear']
[u'salesman', u'quip', u'backfir']
[u'forc', u'seal', u'fallujah', u'violenc', u'escal']
[u'senat', u'talk', u'iraq', u'civil', u'risk']
[u'troop', u'block', u'road', u'fallujah']
[u'valencia', u'pressur', u'real']
[u'farmer', u'protest', u'ban']
[u'crack', u'pollut', u'busi']
[u'wagga', u'council', u'elect', u'result', u'finalis']
[u'nat', u'lib', u'argu', u'agreement']
[u'sceptic', u'feder', u'forestri', u'fund', u'offer']
[u'weather', u'ambul', u'demand']
[u'wooli', u'pharmaci', u'face', u'stiff', u'opposit']
[u'wooli', u'question', u'pharmaci', u'protect']
[u'work', u'parti', u'combat', u'anti', u'social', u'behaviour']
[u'work', u'safeti', u'pay', u'council']
[u'workshop', u'moot', u'festiv', u'float']
[u'youth', u'charg', u'murder', u'wilcannia', u'brawl']
[u'yuvraj', u'strike', u'maiden', u'heroic']
[u'zinifex', u'list']
[u'iraqi', u'kill', u'italian', u'troop', u'clash']
[u'aborigin', u'land', u'council', u'leader', u'resign']
[u'action', u'group', u'back', u'water', u'claim']
[u'carniv', u'biggest']
[u'age', u'care', u'crisi', u'provid']
[u'age', u'care', u'worker', u'protest', u'govern']
[u'agforc', u'concern', u'wheat', u'virus', u'discoveri']
[u'worker', u'attempt', u'mass', u'evacu', u'flood']
[u'alleg', u'crime', u'figur', u'withdraw', u'travel', u'applic']
[u'ambassador', u'present', u'credenti', u'north', u'korea']
[u'anderson', u'escap', u'charg', u'anim', u'cruelti']
[u'arm', u'hold', u'credit', u'union']
[u'arrest', u'french', u'spanish', u'polic', u'raid']
[u'asylum', u'seeker', u'tell', u'court', u'sink', u'horror']
[u'audit', u'hold', u'indigen', u'film']
[u'aussi', u'market', u'edg', u'higher']
[u'aussi', u'money', u'charg']
[u'australian', u'open', u'tenni', u'week']
[u'australia', u'push', u'trade', u'interest', u'asean', u'talk']
[u'author', u'foil', u'bomb', u'plot']
[u'ballina', u'mayor', u'know', u'tonight']
[u'bandit', u'take']
[u'beckham', u'flee', u'alpin', u'hideaway']
[u'beckham', u'alp', u'amid', u'affair', u'furor']
[u'bendigo', u'easter', u'festiv', u'begin']
[u'bevan', u'bichel', u'dump', u'look', u'futur']
[u'blue', u'green', u'alga', u'present', u'river']
[u'bomber', u'lloyd', u'suspend', u'week']
[u'bosnian', u'offici', u'face', u'ethnic', u'cleans', u'charg']
[u'broom', u'stand', u'plan', u'method']
[u'bush', u'firefight', u'analys']
[u'bushfir', u'inquest', u'focus', u'time', u'warn']
[u'bush', u'vow', u'continu', u'iraqi', u'move', u'democraci']
[u'busi', u'urg', u'servic', u'fight']
[u'butler', u'denial', u'absolut', u'correct', u'latham']
[u'releas', u'document', u'death', u'iraqi']
[u'rescu', u'helicopt', u'port', u'macquari']
[u'call', u'tougher', u'law', u'workplac', u'health']
[u'call', u'go', u'indigen', u'literaci', u'boost']
[u'calm', u'sea', u'wipe', u'bell', u'beach']
[u'campaign', u'oppos', u'live', u'export']
[u'cane', u'farmer', u'elect', u'spark', u'good', u'voter', u'turnout']
[u'carlton', u'pair', u'drug', u'probe']
[u'propos', u'hobart', u'subdivis']
[u'chief', u'minist', u'clarifi', u'comment', u'inquest']
[u'citrus', u'industri', u'unhappi', u'ammonium', u'nitrat']
[u'citi', u'centr', u'undergo', u'plan', u'rethink']
[u'claim', u'water', u'plan', u'threaten', u'feedlot']
[u'clinton', u'strike', u'cheap', u'aid', u'drug', u'deal']
[u'close', u'race', u'duaringa', u'mayor']
[u'coalit', u'plan', u'iraqi', u'cleric', u'arrest']
[u'comeback', u'hurt', u'william', u'rank']
[u'communiti', u'bank', u'offici', u'open', u'today']
[u'communiti', u'ralli', u'famili', u'fatal']
[u'compani', u'face', u'public', u'lauderdal', u'develop']
[u'conman', u'foster', u'make', u'blair', u'claim']
[u'contract', u'hand', u'elliott', u'eye', u'test', u'place']
[u'court', u'hear', u'indonesian', u'offici', u'involv']
[u'credit', u'union', u'appoint', u'manag']
[u'cricket', u'australia', u'dump', u'bevan', u'bichel']
[u'action', u'stress', u'age', u'care', u'crisi']
[u'death', u'toll', u'rise', u'iraq', u'clash']
[u'derbi', u'doncast', u'handicap', u'favourit', u'draw', u'wide']
[u'diana', u'ross', u'escap', u'jail', u'time']
[u'doctor', u'air', u'hospit', u'concern']
[u'doubt', u'cast', u'fertilis', u'decis']
[u'earli', u'figur', u'suggest', u'vote', u'slump', u'sukarnoputri']
[u'earli', u'plea', u'leav', u'bird', u'face', u'music']
[u'effect', u'softwood', u'plantat', u'local', u'area']
[u'elect', u'wrangl', u'go', u'court']
[u'embattl', u'park', u'close', u'owner', u'look', u'sell']
[u'emerg', u'respons', u'time', u'talwood']
[u'energi', u'park', u'happen', u'say', u'ararat', u'council']
[u'environ', u'busi', u'leader', u'meet', u'adelaid']
[u'falun', u'gong', u'complaint', u'go']
[u'farmer', u'concern', u'fertilis', u'compani', u'decis']
[u'farmer', u'meet', u'miner', u'sand', u'plan']
[u'firefight', u'form', u'code', u'conduct']
[u'firm', u'promis', u'refund', u'fertilis', u'recal']
[u'flash', u'flood', u'caus', u'havoc', u'mexico']
[u'fli', u'instructor', u'jail', u'ultralight', u'stunt']
[u'caus', u'sydney', u'bind', u'plan', u'divert']
[u'coron', u'lament', u'highway', u'inact']
[u'celebr']
[u'sheep', u'shearer', u'unfaz', u'royal', u'law']
[u'soldier', u'kill', u'iraq', u'clash']
[u'fund', u'address', u'recept', u'woe']
[u'gangland', u'target', u'want', u'leav', u'countri']
[u'govt', u'defend', u'rail', u'safeti', u'measur']
[u'govt', u'gambl', u'group', u'welcom', u'tatt']
[u'govt', u'urg', u'chang', u'age', u'care', u'fund']
[u'govt', u'urg', u'consid', u'light', u'rail']
[u'green', u'concern', u'forestri', u'appoint']
[u'heavi', u'caus', u'problem', u'sydney']
[u'higher', u'tax', u'expect', u'mini', u'budget']
[u'histor', u'literari', u'letter', u'hammer']
[u'hope', u'doctor', u'eas', u'pressur']
[u'howard', u'confid', u'pacif', u'cooper']
[u'howard', u'seiz', u'evan', u'comment']
[u'inquest', u'begin', u'teen', u'death']
[u'inquest', u'open', u'fatal', u'hous']
[u'inquiri', u'hear', u'inform', u'need']
[u'iraqi', u'immigr', u'face', u'tough', u'time', u'find', u'work']
[u'italian', u'troop', u'mehdi', u'armi', u'exchang']
[u'jordan', u'sentenc', u'death', u'diplomat']
[u'kemp', u'welcom', u'salin', u'plan']
[u'king', u'bounc', u'titl']
[u'king', u'come', u'titl']
[u'kooragang', u'boost', u'ammonium', u'nitrat', u'product']
[u'labor', u'promis', u'clear', u'child', u'care', u'backlog']
[u'landhold', u'urg', u'prevent', u'weed', u'outbreak']
[u'late', u'winner', u'keep', u'leed', u'aliv']
[u'time', u'top', u'pulitz', u'prize', u'pool']
[u'love', u'trial', u'drug', u'vandal', u'charg']
[u'tech', u'determin', u'councillor']
[u'luca', u'believ', u'tugun', u'bypass', u'ahead']
[u'luck', u'rule', u'truck', u'crush']
[u'maguir', u'claim', u'mini', u'budget', u'news']
[u'boast', u'murder', u'plan', u'court', u'tell']
[u'mat', u'make', u'tick']
[u'matthew', u'happi', u'short', u'break', u'pie', u'clash']
[u'mayor', u'upbeat', u'rat', u'review', u'support']
[u'mayor', u'upbeat', u'water', u'meet']
[u'megawati', u'vote', u'halv', u'studi']
[u'jail', u'kalgoorli', u'gang', u'rape']
[u'million', u'earmark', u'upgrad', u'danger', u'highway']
[u'research', u'call', u'murray', u'river', u'irrig']
[u'troop', u'iraq', u'govt', u'agenda']
[u'motorcyclist', u'pastor', u'make', u'nois', u'fine']
[u'move', u'apprentic', u'colleg', u'fee']
[u'movi', u'present', u'switch']
[u'outlin', u'board', u'renew', u'plan']
[u'nat', u'leader', u'tour', u'potenti', u'wast', u'dump', u'site']
[u'helmet', u'final', u'test', u'phase']
[u'live', u'treasur', u'announc']
[u'plane', u'boost', u'fli', u'doctor', u'effort']
[u'news', u'corp', u'announc']
[u'news', u'corp', u'brief', u'replac', u'adelaid']
[u'studi', u'show', u'peopl', u'need', u'exercis']
[u'tourist', u'ventur', u'mushroom', u'oberon']
[u'chang', u'water', u'restrict']
[u'conclus', u'iraqi', u'weapon', u'search']
[u'plan', u'iraq', u'troop', u'downer']
[u'rethink', u'like', u'ambul', u'station', u'site']
[u'foursom', u'ponder', u'earli', u'plea']
[u'face', u'major', u'drought', u'warn']
[u'deliv', u'deficit', u'mini', u'budget']
[u'govt', u'accus', u'land', u'clear', u'hypocrisi']
[u'offici', u'suspect', u'sixth', u'victim', u'madrid', u'suicid']
[u'nation', u'senat', u'launch', u'challeng', u'banana']
[u'oppon', u'want', u'brake', u'council', u'back', u'truck']
[u'pacif', u'forum', u'back', u'greater', u'role', u'secretari']
[u'pacif', u'island', u'special', u'summit', u'underway']
[u'pacif', u'leader', u'urg', u'address', u'declin', u'region']
[u'set', u'sight', u'gippsland']
[u'urg', u'reject', u'murray', u'report']
[u'point', u'nepean', u'marin', u'centr', u'announc']
[u'polic', u'appeal', u'belconnen', u'stab', u'wit']
[u'polic', u'crackdown', u'road', u'offenc', u'easter']
[u'polic', u'delay', u'attempt', u'seiz', u'moran', u'asset']
[u'polic', u'escort', u'drunken', u'groom', u'wed']
[u'polic', u'offic', u'admit', u'give', u'ecstasi', u'tablet']
[u'polic', u'prepar', u'easter', u'road', u'campaign']
[u'polic', u'warn', u'busi', u'chequ', u'scam']
[u'polic', u'motorcycl', u'crash', u'victim']
[u'politician', u'warn', u'criminalis', u'petrol']
[u'poll', u'confirm', u'labor', u'wrong', u'iraq']
[u'prison', u'worker', u'push', u'staff']
[u'probe', u'want', u'veteran', u'health', u'fund']
[u'project', u'aim', u'indigen', u'forest', u'job']
[u'public', u'ask', u'help', u'solv', u'arson', u'attack']
[u'public', u'servant', u'hold', u'revis', u'offer']
[u'public', u'support', u'call', u'jetstar', u'servic']
[u'qanta', u'announc', u'price', u'asian', u'airlin']
[u'qanta', u'paper', u'ticket', u'charg', u'outrag']
[u'qanta', u'charg', u'paper', u'ticket']
[u'quick', u'think', u'save', u'croc', u'attack', u'victim']
[u'rain', u'continu', u'caus', u'problem']
[u'rainfal', u'help', u'landhold']
[u'ranger', u'reopen']
[u'rann', u'spend', u'bridg', u'ven']
[u'ratepay', u'reject', u'council', u'domin', u'claim']
[u'refuge', u'protest', u'expect', u'sydney']
[u'report', u'suggest', u'blackout', u'recur']
[u'retir', u'trust', u'rail', u'age', u'care', u'fund']
[u'rey', u'ljungberg', u'boost', u'arsenal']
[u'riverland', u'slam', u'decis', u'delay', u'water', u'releas']
[u'road', u'group', u'launch', u'media', u'blitz', u'lead']
[u'ross', u'river', u'fever', u'take', u'grip', u'england']
[u'russian', u'guilti', u'spi']
[u'russian', u'politician', u'surviv', u'assassin']
[u'govt', u'unlik', u'adopt', u'murray', u'recommend']
[u'sale', u'outlook', u'month', u'survey']
[u'salin', u'action', u'plan', u'announc']
[u'santo', u'product', u'capac']
[u'schiavon', u'tumbl', u'amelia', u'island', u'event']
[u'schultz', u'back', u'feder', u'school', u'fund']
[u'seafood', u'industri', u'unhappi', u'illeg', u'fish']
[u'search', u'begin', u'miss', u'boati']
[u'seven', u'court', u'drug', u'charg']
[u'shaki', u'start', u'lankan']
[u'sharon', u'plan', u'total', u'gaza', u'pullout']
[u'singapor', u'airlin', u'open', u'fli', u'school']
[u'skill', u'lack', u'mean', u'product', u'gain', u'academ']
[u'sotico', u'stay', u'own']
[u'spain', u'increas', u'secur', u'despit', u'arrest']
[u'spain', u'step', u'secur', u'amid', u'terror', u'fear']
[u'lanka', u'swear']
[u'african', u'teenag', u'lose', u'shark', u'attack']
[u'sydney', u'murder', u'trial', u'hear', u'lie', u'alibi']
[u'tamil', u'tiger', u'threaten']
[u'govt', u'defend', u'school', u'statement']
[u'teen', u'court', u'wilcannia', u'murder', u'charg']
[u'thorp', u'back', u'qualif', u'fast', u'track']
[u'tokyo', u'get', u'astro']
[u'children', u'studi', u'find']
[u'toxic', u'leak', u'caus', u'skyscrap', u'evacu']
[u'train', u'firm', u'fin', u'million', u'london', u'crash']
[u'troop', u'recognis', u'solomon', u'mission']
[u'tugun', u'elect', u'issu']
[u'underworld', u'figur', u'want', u'bail', u'chang']
[u'hike', u'great', u'say', u'brack']
[u'union', u'criticis', u'forest', u'industri']
[u'dollar', u'climb', u'sign', u'job', u'recoveri']
[u'recognis', u'australian', u'soldier']
[u'warn', u'pakistan', u'continu', u'taliban', u'hunt']
[u'vecci', u'fear', u'redund', u'rule']
[u'govt', u'urg', u'lift', u'school']
[u'video', u'evid', u'trawl', u'yield', u'wrestl', u'charg']
[u'villawood', u'visitor', u'facil', u'upgrad']
[u'vote', u'rig', u'claim', u'worth', u'report', u'minist']
[u'properti', u'industri', u'call', u'chang', u'properti']
[u'water', u'merger', u'talk', u'delay', u'white', u'paper', u'nat']
[u'waugh', u'rafter', u'landi', u'live', u'treasur']
[u'western', u'prepar', u'easter', u'tourism']
[u'william', u'tip', u'judici', u'post']
[u'winemak', u'urg', u'shift', u'focus', u'local', u'market']
[u'report', u'mix', u'year', u'roxbi', u'down']
[u'youth', u'converg', u'quilpi', u'festiv']
[u'zarqawi', u'claim', u'respons', u'iraq', u'attack']
[u'abba', u'rule', u'reunion', u'price']
[u'aberdeen', u'resid', u'seek', u'probe', u'odour']
[u'accus', u'highway', u'fund']
[u'accus', u'fraudster', u'grant', u'judg', u'trial']
[u'decad', u'rwanda', u'commemor', u'genocid']
[u'afghan', u'polic', u'raid', u'heroin', u'lab', u'seiz', u'ton', u'opium']
[u'blue', u'need', u'proof', u'sack', u'drug', u'probe']
[u'agricultur', u'group', u'sheep', u'diseas']
[u'alic', u'spring', u'cross', u'countri', u'youth']
[u'ardmona', u'exec', u'rise']
[u'augusta', u'nation', u'hole', u'hole']
[u'augusta', u'provid', u'master', u'test']
[u'aust', u'dollar', u'gain']
[u'australia', u'appoint', u'ambassador', u'timor']
[u'australia', u'seek', u'extradit', u'alleg', u'peopl']
[u'beatti', u'accus', u'grandstand', u'tugun']
[u'bendigo', u'bundoora', u'share', u'fifth', u'faculti']
[u'bird', u'get', u'week', u'knee']
[u'black', u'mountain', u'school', u'seek', u'hold', u'teacher']
[u'bleak', u'outlook', u'age', u'care']
[u'blue', u'pair', u'catch', u'drug', u'scandal']
[u'collin', u'appoint', u'anangu', u'coordin']
[u'bodi', u'imag', u'inquiri', u'aim', u'help', u'young', u'peopl']
[u'bonlac', u'shed', u'cobden', u'job']
[u'boulder', u'crumbl', u'salin', u'land', u'care', u'group']
[u'hospit', u'highway', u'accid']
[u'bridg', u'chelsea', u'slay', u'gunner', u'jinx']
[u'broadband', u'deal', u'improv', u'access', u'region']
[u'break', u'hill', u'seek', u'better', u'servic']
[u'brumbi', u'coach', u'dump']
[u'brumbi', u'dump', u'nucifora']
[u'buffon', u'sign', u'deal', u'juve']
[u'disput', u'industri', u'relat']
[u'cancer', u'suffer', u'win', u'insur', u'discrimin', u'case']
[u'caravan', u'park', u'closur', u'caus', u'easter', u'headach']
[u'carlton', u'sack', u'angwin', u'keep', u'norman']
[u'casino', u'murwillumbah', u'rail', u'servic']
[u'central', u'highland', u'dri']
[u'cinema', u'propos', u'inveresk', u'agenda']
[u'citrus', u'grower', u'seek', u'help', u'fight', u'fruit']
[u'clark', u'convict', u'appeal', u'reject']
[u'cloud', u'grind', u'british', u'militari', u'chopper']
[u'coal', u'industri', u'surpris', u'royalti']
[u'coast', u'qualifi', u'feder', u'tourism', u'grant']
[u'coffin', u'poni', u'auction']
[u'commerci', u'fisher', u'protect']
[u'concern', u'lack', u'woman', u'eurobodalla', u'council']
[u'consum', u'confid', u'make', u'comeback']
[u'convict', u'russian', u'jail', u'year']
[u'cooma', u'compani', u'warn', u'illeg', u'worker']
[u'coron', u'investig', u'petrol', u'sniff', u'death']
[u'council', u'revok', u'contract', u'admin', u'centr']
[u'council', u'shake', u'prove', u'boon', u'year']
[u'countri', u'road', u'suffer', u'mini', u'budget', u'say']
[u'court', u'consid', u'royal', u'discrimin', u'case']
[u'crown', u'land', u'leas', u'arrang', u'chang']
[u'cyclist', u'mear', u'olymp']
[u'depart', u'merger', u'prompt', u'warn', u'job']
[u'diplomat', u'injur', u'burmes', u'embassi', u'attack']
[u'doubl', u'whammi', u'mini', u'budget', u'say', u'stoner']
[u'duaringa', u'mayor', u'swear', u'today']
[u'elliot', u'lose', u'convict', u'appeal']
[u'bank', u'experi', u'overcom', u'augusta']
[u'sight', u'parkvill', u'piggeri']
[u'essendon', u'appeal', u'lloyd', u'suspens']
[u'everton', u'accept', u'ferguson']
[u'expert', u'peril', u'arrest', u'plan']
[u'extra', u'traffic', u'expect', u'countri', u'road', u'easter']
[u'farmer', u'warn', u'complac']
[u'feder', u'govern', u'target', u'pacif', u'highway']
[u'feder', u'slam', u'state', u'rat']
[u'feder', u'offic', u'testifi', u'peopl', u'smuggl', u'case']
[u'flanagan', u'weir', u'master', u'pair', u'announc']
[u'black', u'jone', u'appoint', u'samoa', u'coach']
[u'foster', u'carer', u'want', u'wide']
[u'injur', u'school', u'photo', u'scaffold', u'collaps']
[u'fund', u'announc', u'grape', u'grower']
[u'ganguli', u'rejoin', u'india']
[u'quick', u'man', u'tell', u'hopoat']
[u'time', u'challeng', u'armstrong', u'ullrich']
[u'gold', u'coast', u'council', u'committe', u'undergo', u'shake']
[u'gold', u'mine', u'firm', u'optimist', u'discoveri']
[u'govt', u'revis', u'free', u'sport', u'list']
[u'govt', u'seek', u'advic', u'news', u'corp']
[u'greenpeac', u'wrap', u'styx', u'valley', u'protest']
[u'gulf', u'council', u'choos', u'mayor', u'lucki']
[u'gunnedah', u'mayor', u'seek', u'term']
[u'hagan', u'make', u'chang', u'warrior', u'match']
[u'hanson', u'embark', u'speak', u'tour']
[u'health', u'servic', u'seek', u'minimis', u'impact', u'save']
[u'hewitt', u'make', u'stawel', u'histori']
[u'high', u'hop', u'starcraft', u'derbi']
[u'hous', u'boom', u'prompt', u'council', u'assist']
[u'hous', u'slug', u'unnecessari', u'say']
[u'hunter', u'salin', u'scheme', u'extend']
[u'hunt', u'cape', u'york', u'croc']
[u'hurst', u'set', u'sight', u'melbourn']
[u'hussey', u'cricket', u'boss', u'bevan']
[u'illawarra', u'busi', u'chamber', u'happi', u'budget']
[u'indigen', u'artist', u'promot', u'reconcili', u'mural']
[u'inquest', u'open', u'boat', u'death']
[u'rat', u'steadi']
[u'iran', u'agre', u'nuclear', u'inspect', u'timet']
[u'iran', u'begin', u'construct', u'work', u'heavi', u'water']
[u'adopt', u'world', u'anti', u'dope', u'agenc', u'code']
[u'ironman', u'hurst', u'target', u'melbourn', u'olymp']
[u'itali', u'host', u'black', u'novemb']
[u'sack', u'angwin']
[u'japanes', u'shrine', u'visit']
[u'hit', u'jackpot']
[u'kimberley', u'farmer', u'consid', u'centralis', u'pack', u'shed']
[u'landcar', u'chang', u'caus', u'concern', u'wheatbelt']
[u'latham', u'ask', u'west']
[u'latham', u'attack', u'howard', u'foreign', u'polici']
[u'lion', u'confid', u'sponsorship', u'law']
[u'locust', u'threat', u'subsid']
[u'arrest', u'drug', u'bust']
[u'fin', u'sell', u'jarrah', u'log']
[u'man', u'death', u'renew', u'call', u'perman', u'doctor']
[u'sentenc', u'stab', u'wife']
[u'walk', u'free', u'rule', u'trial']
[u'mareeba', u'anim', u'park', u'anim']
[u'mcewen', u'davi']
[u'melbourn', u'driver', u'lock']
[u'meninde', u'health', u'project', u'move', u'ahead']
[u'mexican', u'woman', u'perform', u'caesarean']
[u'mildura', u'channel', u'project', u'ahead']
[u'mini', u'budget', u'caus', u'concern', u'region']
[u'mini', u'budget', u'provid', u'extra', u'rail', u'fund']
[u'molik', u'move', u'florida']
[u'monaco', u'stun', u'real', u'madrid', u'reach', u'semi', u'final']
[u'assist', u'need', u'iraq', u'democrat']
[u'shire', u'drought', u'list']
[u'talk', u'bundi', u'hospit']
[u'uranium', u'worker', u'report', u'ill']
[u'mum', u'rejoic', u'chocol', u'crave', u'good', u'babi']
[u'music', u'sale', u'plung', u'fourth', u'year', u'run']
[u'appoint', u'auditor']
[u'navratilova', u'lose', u'singl', u'comeback']
[u'locust', u'outbreak', u'possibl']
[u'marin', u'stinger']
[u'news', u'corp', u'news', u'push', u'market', u'higher']
[u'strategi', u'combat', u'homeless']
[u'nhill', u'hospit', u'revamp', u'begin']
[u'nimmitabel', u'frustrat', u'water', u'restrict']
[u'ningaloo', u'marin', u'park', u'extent', u'applaud']
[u'norri', u'head', u'mount', u'alexand', u'council']
[u'northern', u'territori', u'showcas', u'tourism', u'award']
[u'seek', u'privat', u'fund', u'carriag']
[u'move', u'clarifi', u'seab', u'ownership']
[u'oneil', u'warn', u'celt', u'villarr', u'real', u'deal']
[u'oper', u'confid', u'uranium', u'open']
[u'pakistan', u'resolv', u'fight', u'terror']
[u'patch', u'like', u'reclaim', u'crow', u'nest', u'mayoralti']
[u'patel', u'fin', u'dissent']
[u'pathan', u'lead', u'indian', u'fightback']
[u'petch', u'seek', u'opportun']
[u'petrol', u'help', u'crime', u'arnhem', u'land']
[u'petrol', u'price', u'hike', u'expect', u'easter']
[u'piranha', u'loos', u'berlin', u'pet', u'pool']
[u'player', u'charg', u'wrestl']
[u'player', u'fin', u'wrestl']
[u'announc', u'famili', u'packag']
[u'polic', u'investig', u'fatal', u'accid']
[u'polic', u'issu', u'easter', u'road', u'messag']
[u'polic', u'quiet', u'gangland', u'claim']
[u'polic', u'seek', u'assault']
[u'polic', u'seek', u'miss', u'rocki', u'girl']
[u'polic', u'examin', u'vote', u'rig', u'claim']
[u'polic', u'warn', u'motorist', u'break', u'easter']
[u'politician', u'push', u'murray', u'flow']
[u'price', u'fix', u'land', u'compani', u'fine']
[u'primari', u'industri', u'merger', u'mean', u'loss', u'say']
[u'produc', u'fear', u'diseas', u'outbreak', u'west']
[u'raider', u'fin', u'goal', u'kick', u'time', u'limit', u'breach']
[u'rail', u'servic', u'disrupt', u'upgrad']
[u'real', u'estat', u'welcom', u'stamp', u'duti', u'chang']
[u'count', u'tweed', u'shire']
[u'cross', u'defend', u'hepat', u'test', u'polici']
[u'renmark', u'polic', u'heel', u'arsonist']
[u'research', u'close', u'jellyfish', u'anti', u'venom']
[u'research', u'solv', u'year', u'mysteri']
[u'road', u'tragedi', u'rememb', u'servic']
[u'rocket', u'readi', u'space', u'race']
[u'rower', u'athen', u'appeal']
[u'sanctuari', u'anim', u'face', u'uncertain', u'futur']
[u'seachang', u'stress', u'servic', u'infrastructur', u'studi']
[u'sentenc', u'reduc', u'woman', u'hitman']
[u'septemb', u'accus', u'free', u'pend', u'retrial']
[u'call', u'divert']
[u'sheep', u'saleyard', u'ahead', u'northam']
[u'shiit', u'cleric', u'move', u'sacr', u'shrine']
[u'shoalhaven', u'council', u'decid']
[u'simpson', u'recount', u'request', u'success']
[u'soccer', u'player', u'jail', u'assault']
[u'south', u'east', u'tourism', u'get', u'book', u'fund']
[u'southern', u'cross', u'undecid', u'increas', u'debat']
[u'stoner', u'say', u'tree', u'sacr']
[u'streak', u'ongo', u'talk', u'zimbabw', u'offici']
[u'studi', u'back', u'benefit', u'regular', u'ejacul']
[u'super', u'ax', u'govt', u'revis', u'free', u'sport']
[u'survey', u'help', u'sustain', u'prawn', u'fisheri']
[u'sydney', u'solicitor', u'shoot', u'baffl', u'polic']
[u'tank', u'brim', u'water', u'plan', u'longreach']
[u'tara', u'chinchilla', u'drought', u'list']
[u'parliament', u'acknowledg', u'tradit', u'owner']
[u'telstra', u'optus', u'face', u'internet']
[u'telstra', u'group']
[u'thailand', u'threaten', u'iraqi', u'deploy']
[u'thai', u'polic', u'arrest', u'alleg', u'peopl', u'smuggler']
[u'thai', u'star', u'paradorn', u'report', u'draft']
[u'appear', u'court', u'wilcannia', u'death']
[u'kill', u'mexico', u'flash', u'flood']
[u'townsvill', u'wait', u'list', u'get', u'whittl']
[u'tuna', u'fishermen', u'industri', u'rescu', u'packag']
[u'dead', u'warwick', u'crash']
[u'union', u'breakthrough', u'forestri', u'negoti']
[u'label', u'sadr', u'follow', u'gangster']
[u'look', u'report', u'fallujah', u'mosqu', u'attack']
[u'marin', u'kill', u'ramadi', u'attack']
[u'resolv', u'unshak', u'iraq']
[u'vow', u'destroy', u'mehdi', u'armi']
[u'govt', u'defend', u'fund', u'region', u'librari']
[u'polic', u'head', u'defend', u'holiday']
[u'vote', u'rig', u'alleg', u'continu']
[u'crime', u'prosecutor', u'call', u'help', u'arrest']
[u'warn', u'issu', u'feed', u'fraser', u'dingo']
[u'seek', u'protect', u'doctor', u'frivol', u'claim']
[u'whitsunday', u'hop', u'bumper', u'easter']
[u'wit', u'deni', u'knowledg', u'polic', u'import', u'heroin']
[u'woman', u'die', u'head', u'collis']
[u'woman', u'die', u'newcastl', u'crash']
[u'woman', u'escap', u'hous']
[u'woman', u'grant', u'bail', u'belconnen', u'stab']
[u'woman', u'injur', u'attack']
[u'woman', u'reach', u'halfway', u'point', u'marathon', u'chariti']
[u'work', u'begin', u'blackal', u'age', u'care', u'facil']
[u'world', u'fail', u'rwanda', u'annan', u'say']
[u'youth', u'front', u'court', u'bomb', u'plot']
[u'accc', u'uncov', u'price', u'fix', u'weight', u'loss', u'firm']
[u'account', u'admit', u'transfer']
[u'accus', u'falconio', u'murder', u'admit', u'hospit']
[u'opposit', u'propos', u'posit', u'discrimin']
[u'buy', u'vic', u'biggest', u'electr', u'generat']
[u'alga', u'warn', u'lake', u'mulwala']
[u'anderson', u'announc', u'fund', u'famili']
[u'anti', u'corrupt', u'move', u'say', u'mildura']
[u'appeal', u'driver', u'care']
[u'appeal', u'overturn', u'lloyd', u'suspens']
[u'appeal', u'train', u'spot', u'tenni']
[u'archer', u'gather', u'championship', u'charlevill']
[u'asian', u'presid', u'move', u'gold', u'teeth']
[u'astronom', u'track', u'milki', u'star']
[u'athen', u'olymp', u'secur', u'schedul']
[u'atom', u'laser', u'assembl', u'canberra']
[u'atsic', u'challeng', u'govt', u'high', u'court']
[u'australian', u'share', u'close', u'lower', u'ahead', u'easter']
[u'australia', u'second', u'seed', u'world']
[u'author', u'snare', u'alleg', u'bird', u'smuggler']
[u'bacteri', u'infect', u'neonat', u'nurseri']
[u'bankruptci', u'hang', u'sandon', u'point', u'oppon']
[u'beach', u'patrol', u'boost', u'easter']
[u'bomber', u'launch', u'lloyd', u'appeal']
[u'bond', u'astl', u'black', u'cap']
[u'bream', u'fingerl', u'releas', u'gippsland', u'lake']
[u'brisban', u'soccer', u'player', u'jail', u'assault']
[u'british', u'jail', u'steal', u'clean', u'return']
[u'bronco', u'fight', u'point', u'penalti']
[u'bronco', u'fight', u'point', u'penalti']
[u'brown', u'water', u'blame', u'pipelin', u'deposit']
[u'disput', u'head']
[u'cahil', u'go', u'hero', u'zero', u'millwal']
[u'commission', u'investig', u'hospit']
[u'camper', u'warn', u'practic', u'safeti']
[u'canegrow', u'send', u'emot', u'video']
[u'central', u'australian', u'woman', u'win', u'year']
[u'chechen', u'woman', u'jail', u'attempt', u'bomb', u'attack']
[u'childer', u'hostel', u'open']
[u'clark', u'seek', u'salari']
[u'clark', u'tell', u'govt']
[u'climatologist', u'forecast', u'possibl', u'return', u'nino']
[u'coff', u'work', u'scheme', u'remain', u'schedul', u'govt']
[u'competit', u'tight', u'best']
[u'compo', u'payout', u'forc', u'council', u'polici', u'chang']
[u'concern', u'time', u'frame', u'spam', u'implement']
[u'countri', u'rail', u'servic', u'fail', u'say', u'opposit']
[u'court', u'clear', u'doctor', u'babi', u'brain', u'damag']
[u'crock', u'cook', u'hell', u'north']
[u'croc', u'crawford', u'free', u'list']
[u'croc', u'lose', u'crawford']
[u'crow', u'nest', u'result', u'challeng']
[u'defeat', u'qaeda', u'prioriti', u'bush', u'rice']
[u'democrat', u'fear', u'iranian', u'deporte', u'safeti']
[u'dentist', u'renew', u'soft', u'drink', u'warn']
[u'depor', u'say', u'possibl', u'shock']
[u'depor', u'shock', u'milan', u'champ', u'leagu', u'semi']
[u'disabl', u'group', u'herald', u'insur', u'rule']
[u'domin', u'ferrari', u'better', u'warn', u'brawn']
[u'dysfunct', u'famili', u'makeov', u'chariti']
[u'economist', u'creation', u'boost']
[u'esso', u'staff', u'return', u'work']
[u'explor', u'expand', u'north', u'west']
[u'fallujah', u'remain', u'flashpoint', u'iraq', u'unrest']
[u'fear', u'pole', u'revers', u'take', u'year', u'studi']
[u'festiv', u'expect', u'turnout']
[u'fight', u'save', u'qanta', u'servic', u'take']
[u'damag', u'wangaratta', u'home']
[u'destroy', u'nambour', u'home']
[u'fish', u'limit', u'enforc', u'easter']
[u'fitzgerald', u'inquiri', u'whistleblow', u'die']
[u'fourteen', u'kill', u'brazil', u'drug', u'violenc']
[u'french', u'minist', u'call', u'rwandan', u'accus']
[u'galleri', u'showcas', u'wide', u'talent']
[u'geraldton', u'oper', u'seek', u'daili', u'flight', u'perth']
[u'gibbon', u'join', u'fight', u'import']
[u'gibson', u'film', u'good', u'easter', u'say', u'bishop']
[u'govt', u'admit', u'defici', u'esper', u'lock']
[u'govt', u'block', u'sale', u'port', u'macquari', u'hospit']
[u'govt', u'offer', u'burn', u'fenc', u'grant', u'string', u'attach']
[u'govt', u'seek', u'boost', u'doctor', u'number', u'bush']
[u'govt', u'help', u'control', u'farmer']
[u'grain', u'silo', u'face', u'closur']
[u'greek', u'turkish', u'cypriot', u'urg', u'reject', u'peac', u'plan']
[u'green', u'senat', u'head', u'iraq', u'ahead', u'handov']
[u'gregan', u'bench', u'player', u'reject', u'role', u'nucifora']
[u'harrington', u'pit', u'luck', u'irish', u'master', u'jinx']
[u'health', u'job', u'safe', u'despit', u'budget', u'overrun']
[u'hird', u'face', u'umpir', u'outburst']
[u'holiday', u'book', u'strong', u'coast']
[u'hop', u'continu', u'power', u'suppli']
[u'hors', u'mogul', u'sangster', u'die']
[u'hospit', u'chief', u'reject', u'claim']
[u'hostag', u'crisi', u'unfold', u'iraq']
[u'howard', u'welcom', u'jobless', u'figur']
[u'hummingbird', u'sticki', u'beak', u'bend']
[u'readi', u'youngest', u'test', u'skipper', u'say', u'taibu']
[u'inquest', u'child', u'death', u'start', u'hobart']
[u'iraqi', u'cleric', u'condemn', u'handl', u'shiit']
[u'iraq', u'verg', u'civil', u'blix']
[u'iraq', u'cost', u'liber', u'presid']
[u'iraq', u'interior', u'minist', u'resign']
[u'iraq', u'violenc', u'spook', u'investor']
[u'irrig', u'issu', u'delay', u'chees', u'fruit', u'drink']
[u'japanes', u'wont', u'seek', u'term']
[u'jewelleri', u'put', u'twinkl']
[u'kerri', u'mear', u'miss', u'game']
[u'land', u'council', u'elect', u'delay']
[u'landhold', u'urg', u'watch', u'locust', u'hatch']
[u'landmin', u'kill', u'polic', u'india']
[u'latham', u'warn', u'get', u'bog', u'iraq']
[u'lion', u'pie', u'grand', u'final', u'match']
[u'lismor', u'benefit', u'famili', u'packag']
[u'local', u'worker', u'employ', u'detent']
[u'lynch', u'star', u'lion', u'pummel', u'pie']
[u'magnific', u'seven', u'chase', u'green', u'jacket']
[u'charg', u'attempt', u'milkbar', u'holdup']
[u'free', u'jail', u'amid', u'claim', u'polic']
[u'jail', u'life', u'vicious', u'murder']
[u'martin', u'aim', u'fertilis', u'balanc']
[u'master', u'shift', u'start', u'hole', u'play', u'format']
[u'mayor', u'seek', u'attract', u'busi', u'barcaldin']
[u'media', u'mogul', u'star', u'hollywood', u'sidewalk']
[u'minist', u'stand', u'hospit', u'woman', u'dead']
[u'mix', u'reaction', u'power', u'ombudsman']
[u'molik', u'continu', u'florida', u'march']
[u'montoya', u'dont', u'regret', u'sign', u'struggl']
[u'mozzi', u'sprayer', u'hop', u'fine', u'weather']
[u'nepal', u'maoist', u'kill', u'policemen', u'abduct', u'raid']
[u'council', u'offic', u'need', u'say', u'mcclure']
[u'dive', u'wreck', u'delay']
[u'law', u'weed', u'crimin', u'bouncer']
[u'leader', u'elect', u'riverina', u'council']
[u'nielsen', u'name', u'nbls']
[u'opposit', u'say', u'countrylink', u'slow', u'driver']
[u'vice', u'chancellor', u'quit', u'disput']
[u'govt', u'promis', u'road', u'spend', u'budget', u'boost']
[u'mine', u'compani', u'notic', u'water']
[u'opposit', u'welcom', u'fraser', u'comment', u'iraq']
[u'optus', u'telstra', u'reach', u'agreement', u'campaign']
[u'grower', u'warn', u'salin']
[u'pagan', u'play', u'impact', u'angwin', u'ax']
[u'pakistan', u'level', u'test', u'seri']
[u'pakistan', u'prepar', u'fresh', u'taliban', u'assault']
[u'pakistan', u'push', u'seri', u'level']
[u'palestinian', u'hurt', u'west', u'bank', u'barrier', u'protest']
[u'founder', u'face', u'legal', u'action']
[u'parent', u'launch', u'legal', u'action', u'fatal', u'longford']
[u'perman', u'doctor', u'norseman', u'unlik']
[u'peta', u'use', u'murder', u'case', u'anti', u'meat']
[u'petrol', u'hike', u'tip', u'easter']
[u'player', u'reject', u'role', u'nucifora', u'sack']
[u'childcar', u'plan', u'attempt', u'counter', u'latham']
[u'hit', u'vietnam', u'comparison']
[u'polic', u'appeal', u'help', u'find', u'miss', u'fertilis']
[u'polic', u'appeal', u'help', u'doubl', u'murder', u'case']
[u'polic', u'detain', u'singh', u'murder', u'suspect']
[u'polic', u'estim', u'cannabi', u'haul', u'million']
[u'polic', u'investig', u'adelaid', u'shoot']
[u'polic', u'investig', u'juvenil', u'prison', u'claim']
[u'polic', u'stop', u'car', u'prevent', u'accid']
[u'polic', u'wont', u'rule', u'terrorist', u'link', u'miss']
[u'politician', u'impress', u'regener', u'gum']
[u'pont', u'name', u'world', u'lead', u'cricket']
[u'porto', u'eas', u'semi', u'final']
[u'probe', u'kurri', u'kurri', u'rezon', u'caus', u'concern']
[u'punter', u'spend', u'patrick', u'meet']
[u'rail', u'link', u'save', u'communiti', u'action', u'lobbyist']
[u'rain', u'fail', u'eas', u'eurobodalla', u'water', u'restrict']
[u'rat', u'decis', u'good', u'news', u'produc']
[u'record', u'cannabi', u'haul', u'polic']
[u'region', u'rail', u'servic', u'threat', u'green']
[u'resid', u'voic', u'concern', u'green', u'wast']
[u'rhino', u'cruelti', u'hear', u'continu']
[u'rice', u'testimoni', u'broadcast', u'live']
[u'robert', u'minist', u'odd', u'hospit', u'comment']
[u'rough', u'sea', u'caus', u'emerg', u'rescu']
[u'roundabout', u'firm', u'best', u'option', u'ballarat', u'black']
[u'rumsfeld', u'deni', u'iraq', u'control']
[u'fertilis', u'shortag', u'avert']
[u'school', u'photo', u'accid', u'describ', u'unpreced']
[u'scott', u'name', u'european', u'tour', u'player', u'month']
[u'shark', u'lash', u'bird', u'suspens']
[u'shiit', u'fighter', u'spoil', u'caus', u'downer']
[u'skandia', u'look', u'brisban', u'gladston', u'record']
[u'smith', u'front', u'court', u'assault', u'charg']
[u'smithton', u'plan', u'servic', u'child', u'victim']
[u'socceroo', u'skipper', u'moor', u'rest', u'season']
[u'speed', u'camera', u'forc', u'south', u'easter']
[u'lanka', u'uncap', u'player', u'zimbabw']
[u'stephen', u'seek', u'lower', u'hous']
[u'takeov', u'battl', u'heat']
[u'tamworth', u'eas', u'water', u'restrict']
[u'task', u'forc', u'consid', u'improv', u'treatment']
[u'teacher', u'worri', u'educ', u'cut']
[u'tension', u'emerg', u'mackay', u'council']
[u'terrorist', u'tri', u'drive', u'japanes', u'troop']
[u'thai', u'tenni', u'paradorn', u'escap', u'nation', u'servic']
[u'tourism', u'oper', u'seek', u'replic', u'easter', u'appeal']
[u'tourist', u'expect', u'flock', u'easter', u'festiv']
[u'chief', u'reveal', u'anti', u'genocid', u'measur']
[u'union', u'warn', u'olymp', u'rush', u'put', u'live', u'risk']
[u'unit', u'group', u'aim', u'rail', u'contract']
[u'annoy', u'releas', u'sept', u'suspect']
[u'call', u'shiit', u'cleric', u'turn']
[u'claim', u'iraq', u'insurg', u'kill', u'bodi']
[u'defend', u'mosqu', u'attack']
[u'general', u'say', u'quick', u'upris']
[u'give', u'licenc', u'commerci', u'space', u'flight']
[u'troop', u'battl', u'rebel', u'iraq']
[u'senat', u'split', u'iraq']
[u'warn', u'muslim', u'mosqu', u'launch']
[u'victoria', u'back', u'watchdog', u'power']
[u'forestri', u'fund', u'criteria']
[u'walgett', u'polic', u'probe', u'cattl', u'theft']
[u'opposit', u'warn', u'bypass', u'rout', u'sale']
[u'parliament', u'torch', u'flag', u'burn']
[u'resourc', u'sector', u'worth', u'report']
[u'bounc', u'premier', u'leagu', u'titl', u'say']
[u'wild', u'thing', u'pictur', u'calm', u'augusta']
[u'woman', u'die', u'emerg', u'room', u'toilet']
[u'xstrata', u'slam', u'govt', u'coal', u'royalti']
[u'yahoo', u'sale', u'profit', u'soar']
[u'zimbabw', u'player', u'crisi', u'meet']
[u'urg', u'state', u'join', u'network']
[u'algerian', u'leader', u'elect', u'landslid']
[u'qaeda', u'threat', u'spain', u'tap']
[u'angler', u'hook', u'fish', u'prize']
[u'arafat', u'seek', u'releas', u'palestinian', u'hold', u'iraq']
[u'arsenal', u'saint', u'keeper', u'niemi']
[u'kill', u'lanka', u'battl']
[u'blast', u'hear', u'baghdad', u'sign', u'bomb']
[u'bomb', u'attack', u'plan', u'rome', u'report']
[u'breed', u'bilbi', u'readi', u'releas']
[u'british', u'hostag', u'free', u'iraq']
[u'british', u'polic', u'charg', u'bomb', u'plot', u'suspect']
[u'british', u'politician', u'want', u'parliament', u'recal']
[u'bronco', u'gain', u'half', u'time', u'advantag']
[u'bronco', u'lose', u'kelli', u'good', u'friday', u'clash']
[u'bronco', u'roll', u'rooster']
[u'bronco', u'good', u'rooster']
[u'brumbi', u'half', u'bonus', u'point']
[u'brumbi', u'thump', u'highland']
[u'compani', u'driver']
[u'celtic', u'hold', u'marseill', u'edg', u'inter']
[u'cheekbon', u'fractur', u'sidelin', u'wakelin']
[u'church', u'seek', u'reignit', u'easter', u'passion']
[u'warn', u'franc', u'bomb', u'threat']
[u'warn', u'pari', u'rail', u'threat', u'polic']
[u'clear', u'channel', u'dump', u'howard', u'stern']
[u'communiti', u'group', u'say', u'develop', u'pose', u'health', u'risk']
[u'confus', u'ceasefir', u'fallujah']
[u'cop', u'want', u'dead', u'say', u'underworld', u'figur']
[u'death', u'toll', u'mexican', u'flood']
[u'debra', u'mess', u'give', u'birth']
[u'democrat', u'church', u'urg', u'vanston', u'deport']
[u'democrat', u'slam', u'secret', u'deport']
[u'dimarco', u'sink', u'rare', u'master']
[u'dive', u'trial', u'decid', u'olymp', u'select']
[u'downer', u'back', u'japanes', u'hostag', u'respons']
[u'easter', u'holiday', u'caus', u'traffic', u'congest']
[u'elder', u'woman', u'dead', u'home']
[u'england', u'look', u'histor', u'clean', u'sweep']
[u'car', u'forc', u'slow']
[u'factori', u'caus', u'damag']
[u'heartach', u'injur', u'muscat']
[u'scupper', u'rear', u'wing', u'plan']
[u'fierc', u'battl', u'rage', u'iraq', u'amid', u'hostag', u'drama']
[u'cypriot', u'tomb']
[u'forestri', u'debat', u'prompt', u'japanes', u'action']
[u'gaza', u'withdraw', u'allow', u'palestinian', u'poll']
[u'gold', u'remain', u'elus', u'elder', u'prospector']
[u'govt', u'drop', u'convent', u'centr', u'plan']
[u'govt', u'releas', u'medicar', u'plus', u'figur']
[u'govt', u'say', u'dole', u'claim']
[u'green', u'senat', u'look', u'earli', u'iraq', u'elect']
[u'heavi', u'fight', u'continu', u'najaf']
[u'highland', u'rag', u'snub']
[u'human', u'skelet', u'remain']
[u'iraqi', u'relief', u'column', u'run', u'coalit', u'blockad']
[u'israel', u'charg', u'jazeera', u'correspond']
[u'japanes', u'ralli', u'call', u'troop', u'withdraw']
[u'joyc', u'plea', u'publish', u'sell', u'auction']
[u'judah', u'see', u'spink', u'road', u'tszyu']
[u'kidnap', u'increas', u'pressur', u'japanes']
[u'latham', u'signal', u'extra', u'fund']
[u'latham', u'support', u'stamp', u'duti', u'overhaul']
[u'lawnmow', u'blame', u'bonni', u'doon']
[u'lawyer', u'receiv', u'death', u'threat']
[u'lawyer', u'offer', u'support', u'colleagu', u'receiv']
[u'critic', u'injur', u'fight']
[u'dead', u'hawaii', u'shark', u'attack']
[u'hold', u'elder', u'woman', u'death']
[u'kill', u'farmhous', u'sieg']
[u'medic', u'evacu', u'flight', u'dispatch', u'antarct']
[u'melbourn', u'water', u'reserv', u'drop']
[u'milan', u'european', u'failur', u'plant', u'seed', u'self', u'doubt']
[u'miss', u'angler']
[u'moment', u'reckon', u'beckham', u'real']
[u'mourner', u'unit', u'prayer', u'gather']
[u'nasa', u'extend', u'mar', u'robot', u'mission']
[u'nettl', u'cancel', u'trip', u'iraq']
[u'drug', u'approach', u'fight', u'dead', u'heart', u'rhythm']
[u'iraqi', u'interior', u'minist', u'secur', u'chief', u'name']
[u'virus', u'put', u'murray', u'popul', u'risk']
[u'silver', u'bullet', u'avert', u'sept', u'attack', u'rice']
[u'opposit', u'wad', u'iraq', u'troop', u'debat']
[u'injur', u'bulgarian', u'attack']
[u'pakistan', u'skipper', u'hit', u'critic']
[u'brother', u'fail', u'boar', u'audienc']
[u'polic', u'investig', u'hardwar', u'store', u'robberi']
[u'polic', u'distress', u'beacon', u'prank']
[u'polic', u'search', u'bushland', u'evid', u'bone']
[u'polic', u'search', u'miss', u'fish', u'parti']
[u'polic', u'uncov', u'backyard', u'cannabi', u'crop']
[u'properti', u'group', u'claim', u'easter', u'trade', u'law', u'unfair']
[u'rain', u'interrupt', u'davenport', u'molik', u'match']
[u'ranieri', u'plot', u'arsenal', u'downfal']
[u'razzaq', u'moin', u'miss', u'decid', u'test']
[u'rebel', u'faction', u'fight', u'break', u'lanka']
[u'releas', u'hostag', u'japan', u'demand']
[u'resid', u'start', u'flee', u'fallujah', u'wit']
[u'rice', u'testimoni', u'anger', u'sept', u'victim', u'famili']
[u'rome', u'church', u'open', u'centuri', u'rubbl']
[u'rise', u'bloom', u'tiger', u'wilt', u'augusta']
[u'rise', u'set', u'master', u'pace']
[u'speed', u'camera', u'worri', u'polic']
[u'scott', u'close', u'miss', u'master']
[u'sept', u'team', u'seek', u'classifi', u'memo']
[u'shiit', u'radic', u'kill', u'british', u'soldier', u'polic']
[u'spencer', u'spark', u'blue', u'stamped', u'bull']
[u'lankan', u'rebel', u'faction', u'clash']
[u'state', u'miss', u'fertilis', u'sale', u'deadlin']
[u'streak', u'zimbabw', u'cricket', u'bodi']
[u'sydney', u'builder', u'refus', u'bail', u'follow', u'cannabi', u'haul']
[u'terror', u'expert', u'welcom', u'restrict']
[u'thailand', u'reconsid', u'troop', u'deploy', u'iraq']
[u'kill', u'fijian', u'storm']
[u'toddler', u'fall', u'window']
[u'toil', u'tiger', u'shot', u'pace']
[u'british', u'cyclist', u'implic', u'dope', u'scandal']
[u'toronto', u'congress', u'squar', u'crow', u'fight']
[u'town', u'pay', u'tribut', u'olymp', u'hero']
[u'tractor', u'buff', u'plough', u'forward', u'world', u'record']
[u'kill', u'road', u'easter', u'holiday', u'begin']
[u'loud', u'explos', u'rock', u'central', u'baghdad']
[u'deni', u'report', u'soldier', u'kill', u'iraq']
[u'student', u'welcom', u'vice', u'chancellor', u'resign']
[u'alli', u'mount', u'pressur', u'leav', u'iraq']
[u'armi', u'recaptur']
[u'forc', u'retak', u'shiit', u'town', u'iraq']
[u'halt', u'offens', u'oper', u'fallujah']
[u'evacu', u'ail', u'antarct', u'worker']
[u'video', u'warn', u'spain', u'withdraw', u'iraq', u'afghanistan']
[u'anti', u'hoon', u'law', u'pass', u'lower', u'hous']
[u'green', u'urg', u'govt', u'feder', u'labor', u'kyoto']
[u'warlord', u'forc', u'overrun', u'northern', u'afghan', u'citi']
[u'watson', u'play', u'despit', u'death', u'long', u'time', u'caddi']
[u'wenger', u'ralli', u'gunner', u'week', u'setback']
[u'wildlif', u'sanctuari', u'owner', u'want', u'exot', u'anim']
[u'woman', u'go', u'extrem', u'measur']
[u'confirm', u'streak', u'sack']
[u'stubbi', u'lose', u'beer', u'blaze']
[u'footag', u'show', u'iraqi', u'guerrilla', u'hostag']
[u'accur', u'roo', u'half', u'time', u'lead']
[u'author', u'issu', u'dead', u'mushroom', u'warn']
[u'carniv', u'kick', u'alic']
[u'jazeera', u'team', u'target']
[u'work', u'play']
[u'anim', u'right', u'group', u'target', u'diva', u'beyonc']
[u'answer', u'seek', u'privat', u'armi', u'iraq']
[u'appeal', u'rais', u'royal', u'children', u'hospit']
[u'aussi', u'struggl', u'pari', u'roubaix', u'start', u'line']
[u'beer', u'spill', u'clean', u'begin', u'truck']
[u'band', u'arriv']
[u'blast', u'rattl', u'baghdad', u'wit']
[u'bomb', u'explod', u'thailand', u'travel', u'warn']
[u'british', u'secur', u'guard', u'shoot', u'dead', u'iraq']
[u'bush', u'expect', u'releas', u'terrorist', u'memo']
[u'cheney', u'japan', u'hostag', u'crisi', u'unfold']
[u'cheney', u'urg', u'alli', u'stay', u'iraq']
[u'civilian', u'flee', u'violenc', u'lanka']
[u'clash', u'continu', u'fallujah']
[u'cleric', u'tell', u'bush', u'iraq', u'face']
[u'cowboy', u'break', u'lose', u'streak']
[u'davenport', u'power', u'semi', u'final']
[u'dutch', u'protest', u'expuls', u'refuge']
[u'duyfken', u'replica', u'swan', u'river', u'voyag']
[u'easter', u'beachgoer', u'warn', u'swim']
[u'easter', u'road', u'toll', u'rise']
[u'easter', u'road', u'toll', u'rise']
[u'embattl', u'cofidi', u'pull', u'pari', u'roubaix']
[u'extra', u'bus', u'need', u'handl', u'sydney', u'derbi']
[u'famili', u'packag', u'wont', u'boost', u'minist']
[u'go', u'hunger', u'strike']
[u'fergi', u'ask', u'eriksson', u'pick', u'brown']
[u'figur', u'reveal', u'china', u'economi', u'gallop', u'ahead']
[u'firefight', u'keep', u'busi', u'adelaid']
[u'goldman', u'sach', u'economist', u'jail']
[u'french', u'seiz', u'prehistor', u'artefact']
[u'goanna', u'jerk', u'replac', u'cane', u'toad', u'race']
[u'goodwin', u'fear', u'zimbabw', u'futur']
[u'govt', u'block', u'judg', u'rise']
[u'govt', u'urg', u'review', u'math', u'teach', u'method']
[u'henri', u'trick', u'give', u'arsenal', u'record']
[u'hill', u'reveal', u'explos', u'ammo', u'steal', u'defenc']
[u'howard', u'stand', u'firm', u'iraq']
[u'human', u'right', u'activist', u'say', u'situat', u'iraq']
[u'human', u'right', u'group', u'atroc', u'rife', u'chechnya']
[u'hundr', u'march', u'refuge', u'protest']
[u'indonesian', u'presid', u'hold', u'slim', u'lead', u'vote', u'count']
[u'injuri', u'plagu', u'pakistan', u'lose', u'decid']
[u'intern', u'observ', u'prais', u'algerian', u'vote']
[u'iraq', u'death', u'toll', u'hit', u'bush', u'poll']
[u'iraq', u'turmoil', u'anniversari', u'saddam', u'fall']
[u'italian', u'arriv', u'iraq']
[u'japan', u'make', u'littl', u'progress', u'win', u'hostag']
[u'japan', u'meat', u'processor', u'aust', u'beef', u'boost']
[u'japan', u'work', u'hostag', u'releas']
[u'jet', u'intercept', u'plane', u'near', u'bush', u'ranch']
[u'john', u'hospitalis', u'blood', u'clot']
[u'jone', u'england', u'test', u'debut']
[u'knight', u'come', u'life', u'warrior']
[u'latham', u'warn', u'team', u'lift', u'game']
[u'societi', u'want', u'rise', u'judg']
[u'magnific', u'seven', u'reduc']
[u'injur', u'sand', u'toboggan']
[u'master', u'pair']
[u'mcgee', u'make', u'olymp', u'intent', u'clear']
[u'melbourn', u'lead', u'sydney', u'freight', u'export']
[u'milit', u'escap', u'philippin', u'jail']
[u'mix', u'result', u'aussi', u'rise', u'retain', u'lead']
[u'mortar', u'round', u'land', u'near', u'baghdad', u'hotel']
[u'mushtaq', u'strive', u'test', u'recal']
[u'korea', u'brink', u'nuclear']
[u'plan', u'oversea', u'adopt', u'increas']
[u'road', u'toll', u'rise']
[u'nucifora', u'take', u'brumbi', u'board']
[u'premier', u'strummer', u'documentari']
[u'oppn', u'call', u'reduc', u'petrol', u'price']
[u'palmer', u'say', u'goodby', u'augusta']
[u'petrova', u'surpris', u'serena']
[u'plane', u'land', u'antarctica', u'airlift', u'sick']
[u'polic', u'appeal', u'help', u'search', u'miss']
[u'polic', u'counsel', u'sieg', u'end', u'shoot']
[u'polic', u'expect', u'wrap', u'bush', u'grave', u'examin']
[u'polic', u'identifi', u'dead', u'bash', u'victim']
[u'polic', u'identifi', u'human', u'remain']
[u'polic', u'investig', u'fatal', u'bash']
[u'polic', u'probe', u'alic', u'spring', u'saddl', u'theft']
[u'polic', u'seek', u'miss', u'teen']
[u'polic', u'seek', u'rescu', u'chopper', u'thiev']
[u'polic', u'seek', u'miss', u'peopl']
[u'post', u'mortem', u'examin', u'carri']
[u'protest', u'elect', u'result', u'stag', u'taiwan']
[u'nerv', u'shatter', u'brisban', u'gladston', u'record']
[u'crescent', u'director', u'dead', u'iraq']
[u'cross', u'make', u'blood', u'appeal']
[u'red', u'super', u'season', u'tatter']
[u'retract', u'syring', u'take', u'award']
[u'revitalis', u'gunner', u'brink', u'titl']
[u'riot', u'polic', u'prepar', u'kirribilli', u'refuge', u'protest']
[u'road', u'safeti', u'have', u'posit', u'impact', u'expert']
[u'road', u'quiet', u'speed', u'fin', u'polic']
[u'roo', u'prevail', u'thriller']
[u'rise', u'retain', u'lead', u'wood', u'recov']
[u'russian', u'explos', u'kill', u'dozen']
[u'russia', u'urg', u'halt']
[u'move', u'hold', u'drama']
[u'second', u'iraq', u'interim', u'minist', u'resign', u'coalit']
[u'secur', u'tight', u'pope', u'presid', u'easter', u'event']
[u'kill', u'russian', u'blast']
[u'skandia', u'complet', u'grand', u'slam', u'gladston']
[u'spain', u'belarus', u'charg', u'davi', u'quarter']
[u'spam', u'come', u'effect']
[u'starcraft', u'win', u'derbi']
[u'sticki', u'situat', u'anger', u'ballroom', u'dancer']
[u'swan', u'edg', u'cat']
[u'swan', u'hold', u'cat', u'bomber', u'beat', u'eagl']
[u'lib', u'easter', u'sunday', u'trade', u'restrict']
[u'teenag', u'charg', u'manslaught']
[u'teen', u'court', u'manslaught', u'charg']
[u'thiev', u'chariti', u'chopper']
[u'thirti', u'foreign', u'take', u'hostag', u'report']
[u'thousand', u'expect', u'flock', u'easter', u'race']
[u'thousand', u'fin', u'speed', u'crackdown']
[u'thousand', u'flee', u'lanka', u'fight']
[u'goal', u'everton', u'eas', u'releg', u'fear']
[u'toddler', u'hospit', u'accid']
[u'toyota', u'deni', u'schumach', u'sign']
[u'dead', u'lankan', u'flee', u'violenc']
[u'german', u'miss', u'iraq', u'report']
[u'soldier', u'civilian', u'miss', u'iraq']
[u'union', u'offici', u'say', u'sexi', u'job', u'treat', u'unfair']
[u'court', u'jail', u'jihad', u'plan']
[u'occup', u'iraq', u'sink', u'deeper', u'turmoil']
[u'militari', u'seek', u'fallujah', u'ceasefir']
[u'pick', u'iraqi', u'leader', u'blast', u'fallujah', u'offens']
[u'tourist', u'rob', u'adelaid']
[u'unawar', u'american', u'kidnap', u'iraq']
[u'town', u'plastic', u'bag']
[u'white', u'hous', u'releas', u'sept', u'terrorist', u'memo']
[u'youth', u'hold', u'anti', u'protest', u'melbourn']
[u'dead', u'explos', u'siberian']
[u'prevent', u'say', u'commiss']
[u'govt', u'urg', u'slash', u'stamp', u'duti']
[u'adelaid', u'stab', u'victim', u'hospitalis']
[u'marshal', u'leav', u'airport', u'toilet']
[u'jazeera', u'deni', u'japanes', u'report']
[u'barcelona', u'overpow', u'valladolid']
[u'bat', u'claim', u'gold']
[u'battl', u'pompey', u'gain', u'precious', u'point']
[u'belarus', u'davi', u'semi', u'franc', u'gain', u'edg']
[u'peac', u'underway', u'clash', u'continu', u'iraq']
[u'congreg', u'expect', u'celebr', u'easter']
[u'blast', u'kill', u'trap', u'russian']
[u'bolton', u'slow', u'villa', u'push', u'europ']
[u'brewster', u'deni', u'caley', u'final', u'chanc']
[u'brewster', u'down', u'klitscho', u'seal', u'titl']
[u'british', u'home', u'sell', u'world', u'record', u'price']
[u'british', u'terror', u'suspect', u'appear', u'court']
[u'bulldog', u'cling', u'eagl', u'home']
[u'bush', u'warn', u'qaeda', u'plan']
[u'caldwel', u'boost', u'leed', u'blackburn', u'falter']
[u'cash', u'flinder', u'museum']
[u'cat', u'match', u'lose', u'streak']
[u'christian', u'shoot', u'indonesian', u'church']
[u'clash', u'erupt', u'baghdad', u'offer', u'fallujah', u'truce']
[u'cowboy', u'break', u'lose', u'streak']
[u'defenc', u'advis', u'fire', u'refus', u'write']
[u'demand', u'childcar', u'lower', u'expect', u'minist']
[u'democrat', u'want', u'iraqi', u'refuge', u'releas']
[u'docker', u'strong', u'crow']
[u'domain', u'tree', u'save', u'specialist']
[u'dragon', u'beat', u'tiger', u'win']
[u'dragon', u'good', u'west', u'tiger']
[u'driver', u'kill', u'speedway', u'crash']
[u'dutch', u'worker', u'free', u'russia']
[u'easter', u'holiday', u'road', u'toll', u'stand']
[u'easter', u'road', u'toll', u'increas']
[u'chief', u'say', u'zimbabw', u'tour', u'report']
[u'kill', u'somalia', u'market']
[u'elder', u'coupl', u'hospitalis', u'accid']
[u'elder', u'woman', u'frighten', u'burglar']
[u'england', u'tour', u'zimbabw', u'chairman']
[u'eski', u'save', u'drown']
[u'villag', u'chief', u'kill', u'thailand']
[u'explos', u'spook', u'darwin', u'resid']
[u'fallujah', u'quiet', u'ceasefir', u'deadlin', u'pass']
[u'final', u'pair']
[u'firecrack', u'land', u'hospit']
[u'destroy', u'heritag', u'build']
[u'engulf', u'sawmil']
[u'gallipoli', u'hypocrit', u'say', u'opposit']
[u'leak', u'blast', u'demolish', u'mexican', u'restaur']
[u'right', u'campaign', u'welcom', u'transform']
[u'benefit', u'rusedski', u'return', u'winner']
[u'hill', u'defend', u'gallipoli', u'travel', u'militari']
[u'hird', u'hop', u'fair', u'hear']
[u'iraqi', u'kidnapp', u'threaten', u'kill', u'hostag']
[u'janet', u'jackson', u'bar', u'breast']
[u'japanes', u'hostag', u'face', u'death', u'deadlin']
[u'japanes', u'hostag', u'safe', u'iraq', u'report']
[u'japanes', u'hostag', u'releas', u'govt']
[u'kath', u'dress', u'london']
[u'kidnap', u'japanes', u'iraq', u'free']
[u'lara', u'lead', u'windi', u'fight']
[u'late', u'despair', u'wolv', u'citi', u'snatch', u'surviv']
[u'lazaridi', u'season']
[u'light', u'aircraft', u'make', u'emerg', u'land', u'near', u'alburi']
[u'machu', u'picchu', u'mudslid', u'trap', u'aussi', u'tourist']
[u'appear', u'court', u'heroin', u'lolli']
[u'charg', u'bash', u'murder']
[u'hospitalis', u'cliff', u'fall']
[u'marin', u'wound', u'fallujah', u'clash']
[u'mauresmo', u'stun', u'henin', u'hardenn']
[u'media', u'frenzi', u'grow', u'beckham', u'affair', u'claim']
[u'mickelson', u'dimarco', u'lead', u'rise', u'wilt']
[u'mickelson', u'grab', u'master', u'lead']
[u'mickelson', u'readi', u'major']
[u'mudslid', u'perus', u'machu', u'picchu', u'strand', u'tourist']
[u'music', u'fenc', u'attract', u'tourist', u'attent']
[u'muslim', u'leader', u'want', u'australian', u'troop', u'iraq']
[u'netherland', u'doubl', u'trail', u'spain']
[u'govt', u'order', u'icac', u'review']
[u'kill', u'injur', u'pakistani', u'bomb']
[u'panther', u'surviv', u'storm', u'surg']
[u'pilgrim', u'gather', u'easter', u'sunday', u'mass']
[u'pirlo', u'penalti', u'calm', u'milan', u'jangl', u'nerv']
[u'polic', u'defend', u'number', u'kirribilli', u'protest']
[u'polic', u'miss', u'glenorchi']
[u'polic', u'investig', u'fatal', u'tulli']
[u'polic', u'investig', u'possibl', u'atherton', u'murder']
[u'polic', u'investig', u'tent', u'embassi']
[u'polic', u'presenc', u'kirribilli', u'ralli']
[u'polic', u'question', u'atherton', u'murder']
[u'polic', u'riot', u'gear', u'requir', u'unruli', u'parti']
[u'pope', u'call', u'mankind', u'oppos', u'terror']
[u'port', u'lose', u'primus', u'smash', u'hawthorn']
[u'prison', u'recaptur', u'philippin', u'jailbreak']
[u'ranieri', u'conced', u'titl', u'arsenal']
[u'region', u'airlin', u'form', u'allianc']
[u'rescuer', u'work', u'save', u'trap', u'miner']
[u'resid', u'urg', u'stay', u'water', u'croc']
[u'ruddock', u'flag', u'email', u'tap', u'law']
[u'saha', u'winner', u'unit', u'snap', u'chelsea', u'heel']
[u'school', u'leav', u'damag']
[u'select', u'worri', u'grip', u'india', u'pakistan', u'ahead']
[u'seven', u'injur', u'head', u'collis']
[u'bomb', u'intercept', u'suspect', u'arrest']
[u'soni', u'option', u'film', u'right', u'clark', u'bestsel']
[u'starv', u'shark', u'meal', u'crusad']
[u'storm', u'lash', u'bangladesh', u'kill']
[u'stray', u'isra', u'gunfir', u'kill', u'palestinian', u'girl']
[u'sugar', u'town', u'shock', u'fatal']
[u'supersub', u'john', u'leav', u'fox', u'flounder']
[u'support', u'coalit', u'grow', u'poll']
[u'taxi', u'driver', u'refus', u'bail', u'attempt', u'murder', u'charg']
[u'text', u'white', u'hous', u'memo', u'qaeda']
[u'north', u'hous']
[u'canoeist', u'strand', u'lake', u'eyr']
[u'unexplod', u'ammo', u'make', u'hard', u'firefight']
[u'fallujah', u'rebel', u'agre', u'ceas']
[u'boost', u'children', u'hospit', u'fund']
[u'seek', u'spill', u'sourc']
[u'real', u'estat', u'ethic', u'guidelin', u'review']
[u'wayward', u'demon', u'beat', u'hapless', u'dog']
[u'join', u'norwich', u'divis']
[u'white', u'hous', u'releas', u'memo']
[u'withdraw', u'fallujah', u'talk', u'iraqi']
[u'woman', u'fatal', u'train']
[u'hostag', u'free', u'say', u'govern', u'council', u'member']
[u'kill', u'northern', u'indian', u'stamped']
[u'inquiri', u'question', u'intellig', u'agenc']
[u'abattoir', u'growth', u'meet', u'demand']
[u'academ', u'warn', u'china']
[u'ail', u'wood', u'head', u'armi', u'barrack', u'eas']
[u'aircraft', u'standbi', u'case', u'japanes', u'hostag']
[u'jazeera', u'say', u'asian', u'truck', u'driver', u'abduct']
[u'question', u'agenc', u'skill', u'assumpt']
[u'determin', u'claim', u'stack']
[u'form', u'inquiri', u'member', u'stack']
[u'arsenal', u'preserv', u'unbeaten', u'newcastl']
[u'aussi', u'cyclist', u'manchest', u'track', u'triumph']
[u'aussi', u'veteran', u'sunderland', u'enjoy', u'team', u'pari']
[u'australian', u'rescu', u'mudslid', u'peru']
[u'australia', u'high', u'hop', u'olymp', u'dive', u'success']
[u'babi', u'boomer', u'urg', u'help', u'communiti', u'group']
[u'backstedt', u'beat', u'favourit', u'pari', u'roubaix']
[u'beckham', u'real', u'madrid', u'plung', u'depth']
[u'beij', u'sydney', u'univers', u'align', u'medic']
[u'blast', u'hear', u'near', u'headquart', u'baghdad']
[u'bless', u'south', u'coast', u'fish', u'fleet']
[u'boati', u'warn', u'rescu', u'float']
[u'bog', u'canoeist', u'trudg', u'closer', u'rendezv']
[u'bomb', u'workshop', u'iraqi', u'town', u'fallujah']
[u'book', u'deal', u'off', u'underworld', u'wife', u'sign']
[u'boss', u'steer', u'favourit', u'home', u'doncast']
[u'bush', u'dismiss', u'signific', u'secur', u'memo']
[u'busi', u'week', u'ahead', u'tribun']
[u'indigen', u'rock', u'carv']
[u'canada', u'begin', u'seal', u'hunt']
[u'canberra', u'shoot', u'melbourn', u'church', u'function']
[u'captor', u'threaten', u'execut', u'japanes', u'hostag']
[u'captur', u'briton', u'releas', u'iraq']
[u'carr', u'commit', u'icac']
[u'cheney', u'begin', u'asia', u'visit']
[u'china', u'announc', u'secur', u'boost', u'game']
[u'china', u'confirm', u'seven', u'citizen', u'kidnap', u'iraq']
[u'church', u'experi', u'easter', u'rush']
[u'coalit', u'leaflet', u'tell', u'kerbala', u'fight']
[u'confer', u'chew', u'dental', u'woe']
[u'confus', u'continu', u'fate', u'japanes', u'hostag']
[u'confus', u'surround', u'iraq', u'hostag', u'situat']
[u'council', u'plan', u'patrol', u'wake', u'parti', u'riot']
[u'cranki', u'reptil', u'recov', u'creek']
[u'crash', u'put', u'motorcyclist', u'hospit']
[u'danehil', u'progeni', u'add', u'yearl', u'sale']
[u'davenport', u'down', u'mauresmo', u'captur', u'amelia', u'island']
[u'democrat', u'urg', u'govt', u'follow', u'hous', u'lead']
[u'dole', u'team', u'blue', u'young', u'socceroo']
[u'dramat', u'putt', u'see', u'mickelson', u'claim', u'master']
[u'driver', u'remind', u'road', u'trauma', u'impact']
[u'driver', u'warn', u'continu', u'easter', u'road', u'blitz']
[u'easter', u'fire', u'hold', u'western']
[u'easter', u'keep', u'rescu', u'chopper', u'crew', u'busi']
[u'easter', u'road', u'toll', u'climb']
[u'east', u'lanka', u'calm', u'rebel', u'clash']
[u'eel', u'easter', u'bunni', u'south']
[u'admit', u'best', u'shoot', u'master']
[u'urg', u'arm']
[u'ethic', u'boost', u'real', u'estat', u'industri']
[u'fallujah', u'ceasefir', u'extend']
[u'fallujah', u'ceas', u'hold']
[u'fallujah', u'truce', u'falter']
[u'farmer', u'plough', u'tractor', u'record']
[u'charg', u'teen', u'bash']
[u'gift', u'winner', u'go']
[u'golkar', u'parti', u'retain', u'lead', u'indonesian', u'poll']
[u'govt', u'accus', u'lie', u'saddam', u'threat']
[u'govt', u'grant', u'major', u'fund', u'bioscienc']
[u'green', u'attack', u'region', u'rail', u'cut', u'track']
[u'grower', u'concern', u'banana', u'campaign']
[u'gulf', u'boat', u'mishap', u'claim', u'life']
[u'hanson', u'await', u'crucial', u'rule', u'vote']
[u'high', u'polic', u'presenc', u'help', u'road', u'toll']
[u'hird', u'apologis', u'disgrac', u'comment']
[u'indonesian', u'fish', u'boat', u'coast']
[u'injuri', u'news', u'good', u'archer']
[u'inter', u'strike', u'late', u'perugia']
[u'investig', u'begin', u'bathurst', u'claim']
[u'jail', u'term', u'uphold', u'timor', u'governor']
[u'japanes', u'diplomat', u'plan', u'visit', u'iraq']
[u'jetskier', u'dead', u'port', u'fairi']
[u'agenc', u'attack', u'discrimin']
[u'knee', u'reconstruct', u'primus']
[u'labor', u'relationship', u'remain', u'intact', u'rudd']
[u'lara', u'eye', u'hayden', u'world', u'record', u'antigua']
[u'latest', u'injuri', u'blow', u'primus', u'william']
[u'lib', u'action', u'petrol', u'price']
[u'lynch', u'defend', u'strike', u'charg', u'person']
[u'charg', u'knife', u'alleg']
[u'charg', u'nimbin', u'theft']
[u'critic', u'condit', u'struggl']
[u'matthew', u'join', u'critic', u'eddi', u'umpir', u'comment']
[u'mayor', u'moot', u'govt', u'bypass', u'campaign']
[u'melbourn', u'die', u'hospit', u'cliff', u'fall']
[u'releas', u'bail', u'follow', u'charg']
[u'mickelson', u'claim', u'master', u'glori']
[u'microsoft', u'face', u'south', u'korean', u'anti', u'trust', u'suit']
[u'millar', u'stand', u'cofidi', u'pull', u'dope']
[u'million', u'dollar', u'light', u'spark', u'race', u'scene']
[u'minist', u'defend', u'hous', u'delay']
[u'polic', u'station', u'instal', u'camera']
[u'suggest', u'school', u'unit', u'deter', u'vandal']
[u'murder', u'solicitor', u'wife', u'make', u'public', u'appeal']
[u'nation', u'easter', u'road', u'toll', u'rise', u'seven']
[u'progress', u'japanes', u'hostag', u'drama']
[u'govt', u'sink', u'sail', u'club', u'plan']
[u'palestinian', u'kill', u'attack', u'settlement']
[u'orana', u'set', u'peak', u'record']
[u'pakistan', u'opposit', u'leader', u'give', u'year']
[u'parent', u'await', u'educ', u'review']
[u'passion', u'rise', u'forget', u'alamo']
[u'pioneer', u'weather', u'opposit', u'lightn']
[u'polic', u'charg', u'pair', u'drink', u'drive', u'campaign']
[u'polic', u'curb', u'troubl', u'door']
[u'polic', u'investig', u'fatal', u'deliber']
[u'polic', u'probe', u'adamstown', u'rail', u'death']
[u'polic', u'probe', u'onslow', u'hous', u'blaze']
[u'polic', u'probe', u'speedway', u'crash']
[u'polic', u'pursu', u'famili', u'link', u'yarravill', u'shoot']
[u'polic', u'renew', u'help', u'long', u'miss']
[u'polic', u'road', u'crackdown', u'remain']
[u'polic', u'search', u'find', u'trace', u'report', u'asylum']
[u'polic', u'road', u'crash', u'victim']
[u'pope', u'urg', u'world', u'leader', u'work', u'harder', u'peac']
[u'presid', u'pray', u'casualti', u'iraq']
[u'princip', u'pledg', u'earli', u'start', u'rebuild', u'torch']
[u'prison', u'group', u'blast', u'scale']
[u'democraci', u'protest', u'hold']
[u'protest', u'gold']
[u'public', u'ask', u'boost', u'blood', u'bank', u'suppli']
[u'govt', u'urg', u'ramp', u'boat', u'facil']
[u'quak', u'jolt', u'northern', u'japan']
[u'rescu', u'call', u'lake', u'eyr', u'canoeist']
[u'rescuer', u'lose', u'hope', u'trap', u'russian', u'miner']
[u'restructur', u'end', u'telco', u'monopoli']
[u'retail', u'oppos', u'lib', u'trade', u'stanc']
[u'roddick', u'power', u'davi', u'semi']
[u'sack', u'advis', u'claim', u'investig']
[u'saint', u'class', u'tiger']
[u'lib', u'want', u'wine', u'relax']
[u'oppn', u'maintain', u'child', u'abus', u'royal']
[u'seven', u'chines', u'citizen', u'kidnap', u'iraq', u'state']
[u'sharon', u'head', u'gaza', u'pullout', u'talk']
[u'soldier', u'kill', u'iraq', u'attack']
[u'korean', u'parti', u'chief', u'quit', u'elect']
[u'spain', u'franc', u'davi', u'semi', u'showdown']
[u'spain', u'arrest', u'madrid', u'attack']
[u'special', u'tree', u'walk']
[u'stewart', u'take', u'bombala', u'mayor']
[u'strand', u'tourist', u'evacu', u'inca', u'ruin']
[u'struggl', u'actress', u'sell', u'sitcom', u'script']
[u'sutton', u'doubl', u'propel', u'celtic', u'trebl']
[u'sydney', u'blaze', u'control']
[u'sydney', u'peke', u'uni', u'team', u'health', u'program']
[u'taliban', u'claim', u'district', u'seiz', u'chief', u'kill']
[u'talk', u'continu', u'shiit', u'peac', u'deal']
[u'biosecur', u'review', u'announc']
[u'govt', u'cyber', u'stalk']
[u'teen', u'caution', u'incid']
[u'thai', u'rais', u'die', u'welfar', u'centr']
[u'thiev', u'steal', u'cold', u'blood', u'cranki', u'pant']
[u'timor', u'deal', u'threat']
[u'triumph', u'disbelief', u'mickelson', u'claim', u'master']
[u'truce', u'deal', u'prevent', u'coalit', u'troop', u'enter', u'najaf']
[u'trucki', u'hurt', u'highway', u'crash']
[u'tweed', u'host', u'shadow', u'cabinet']
[u'kill', u'wound', u'baquba', u'bomb']
[u'typhoon', u'sudal', u'sever', u'damag', u'micronesian', u'atol']
[u'underworld', u'figur', u'wife', u'meet', u'celebr', u'agent']
[u'drop', u'leaflet', u'afghan', u'border']
[u'reject', u'aussi', u'firefight']
[u'polic', u'fatal', u'free', u'easter', u'drive']
[u'victoria', u'review', u'fundrais', u'law']
[u'hospit', u'expans', u'announc']
[u'wale', u'air', u'elect', u'worri']
[u'weird', u'yankov', u'parent', u'dead']
[u'writer', u'studio', u'ramp', u'contract', u'talk', u'hollywood']
[u'filipino', u'prison', u'escap', u'elud', u'author']
[u'abduct', u'continu', u'plan', u'attack', u'rebel']
[u'aborigin', u'request', u'fund', u'legal']
[u'absurd', u'unfaith', u'posh', u'say', u'beckham']
[u'acid', u'drum', u'leak', u'truck']
[u'farmer', u'drought', u'assist']
[u'clear', u'eddi']
[u'staff', u'face', u'restructur', u'woe']
[u'aldi', u'agre', u'shape', u'supermarket']
[u'alga', u'fish', u'kill']
[u'alic', u'turf', u'club', u'saddl', u'carniv']
[u'anim', u'libber', u'appli', u'court', u'case', u'adjourn']
[u'arab', u'media', u'misrepres', u'tactic']
[u'seat', u'republ', u'push']
[u'arson', u'suspect', u'morialta', u'fire']
[u'australia', u'track', u'despit', u'greenhous', u'rise']
[u'author', u'search', u'miss', u'czech', u'journalist']
[u'babi', u'black', u'conquer', u'world']
[u'beatti', u'fume', u'howard', u'tugun', u'bypass']
[u'beatti', u'quiet', u'wineg', u'investig']
[u'beckham', u'refer', u'infidel', u'claim', u'lawyer']
[u'bed', u'shortag', u'delay', u'emerg', u'admiss']
[u'crowd', u'harbour', u'festiv']
[u'bigland', u'crawford', u'white', u'brown', u'suspend']
[u'blockad', u'stag', u'protest', u'veget']
[u'bombala', u'hospit', u'plan', u'underway']
[u'branch', u'stack', u'eject', u'gallop']
[u'breakaway', u'tiger', u'fight']
[u'breakwat', u'fund', u'track']
[u'bush', u'predict', u'revamp']
[u'busi', u'urg', u'help', u'indigen', u'educ']
[u'aust', u'doctor', u'bush']
[u'reptil', u'thiev', u'punish']
[u'call', u'amend', u'train', u'time', u'victoria']
[u'capsicum', u'spray', u'blame', u'suspect', u'collaps']
[u'launch', u'explor']
[u'chopper', u'call', u'rescu', u'injur', u'canyon']
[u'civil', u'liberti', u'group', u'seek', u'capsicum', u'spray', u'review']
[u'cleric', u'deal', u'stave', u'najaf', u'raid']
[u'coach', u'word', u'baker', u'report']
[u'confer', u'focus', u'visual', u'neglect']
[u'confid', u'rise', u'export', u'strengthen']
[u'cook', u'paper', u'drug', u'alleg']
[u'council', u'consid', u'joint', u'wast', u'contract']
[u'council', u'panel', u'vote', u'powerlin', u'plan']
[u'council', u'work', u'communiti', u'futur', u'lake']
[u'skiier', u'junior', u'titl']
[u'crisi', u'coal', u'transport', u'spark', u'discuss']
[u'cruis', u'rais', u'million', u'detox', u'rescu', u'worker']
[u'cruis', u'albani', u'cancel']
[u'custom', u'bail', u'stricken', u'fish', u'boat']
[u'darwin', u'await', u'fish', u'boat']
[u'darwin', u'ralli', u'decri', u'timor', u'deal']
[u'defend', u'champion', u'davydenko', u'lose', u'lisbon']
[u'democrat', u'urg', u'greater', u'water', u'recycl']
[u'develop', u'fund', u'help', u'boost', u'region', u'govt']
[u'diamond', u'trail', u'rival', u'egyptian', u'shoot']
[u'diplomat', u'confirm', u'chines', u'hostag', u'releas']
[u'discrimin', u'discourag', u'older', u'worker', u'cherri']
[u'save', u'garag', u'blaze', u'glori']
[u'donald', u'trump', u'apprentic', u'season', u'earn']
[u'downer', u'play', u'rsls', u'iraq', u'request']
[u'downer', u'say', u'pngs', u'peopl', u'support', u'polic']
[u'downturn', u'loom', u'hous', u'figur', u'fall']
[u'drink', u'driver', u'frustrat', u'polic']
[u'driver', u'discov', u'sydney', u'shoot', u'victim']
[u'drought', u'worsen']
[u'easter', u'road', u'toll', u'half', u'previous', u'year']
[u'kill', u'renew', u'chechen', u'violenc']
[u'russian', u'worker', u'releas', u'iraq']
[u'industri', u'go', u'dog']
[u'export', u'formalis', u'china', u'fruit', u'sale']
[u'fair', u'drive', u'transport', u'ombudsman']
[u'fallujah', u'truce', u'extend', u'allow', u'continu', u'talk']
[u'farm', u'blaze', u'spark', u'damag']
[u'father', u'face', u'drug', u'charg']
[u'fear', u'spread', u'goldfield', u'esper']
[u'restrict', u'lift', u'region']
[u'italian', u'hold', u'hostag', u'iraq', u'jazeera']
[u'ganguli', u'open', u'final', u'pakistan', u'test']
[u'explos', u'injur', u'penguin']
[u'gaza', u'pullout', u'replac', u'road', u'bush']
[u'german', u'organis', u'withdraw', u'foreign', u'help']
[u'gospel', u'music', u'gather', u'stretch', u'amphitheatr']
[u'govern', u'council', u'call', u'iraq', u'wide', u'ceas']
[u'gutwein', u'call', u'educ', u'fund', u'boost']
[u'hall', u'fame', u'rememb', u'pioneer', u'women']
[u'hayden', u'prais', u'lara']
[u'hold', u'hostag']
[u'hid', u'call', u'trade']
[u'higher', u'rat', u'survey', u'glitch']
[u'high', u'incom', u'break', u'cost', u'poor', u'australian', u'acoss']
[u'bomb', u'plot', u'foil', u'isra', u'secur', u'servic']
[u'hospit', u'top', u'niue', u'christma', u'wish', u'list']
[u'howard', u'deni', u'break', u'disadvantag', u'poor']
[u'hungari', u'foil', u'attack', u'isra', u'presid']
[u'illeg', u'fish', u'boat', u'return', u'indonesia']
[u'india', u'farmer', u'anticip', u'normal', u'rain']
[u'indonesia', u'voic', u'concern', u'iraq', u'bloodsh']
[u'injur', u'clijster', u'miss', u'french', u'open']
[u'inquiri', u'investig', u'banana', u'import', u'intimid']
[u'intern', u'inquiri', u'rais', u'land', u'council', u'concern']
[u'iraqi', u'guard', u'kill', u'russian', u'kidnap']
[u'judg', u'warn', u'killer', u'appeal', u'time', u'limit']
[u'kiddi', u'speed', u'prescript', u'jump', u'surpris']
[u'kowanyama', u'leader', u'face', u'alcohol', u'charg']
[u'labor', u'announc', u'health', u'care', u'boost']
[u'labor', u'confid', u'preselect', u'scandal', u'wont']
[u'labor', u'revamp', u'trade', u'practic']
[u'lake', u'eyr', u'canoeist', u'face', u'fin']
[u'lara', u'congratul', u'hayden', u'record', u'knock']
[u'lara', u'eclips', u'hayden', u'record']
[u'lara', u'eclips', u'hayden', u'record']
[u'lara', u'shin', u'flaw', u'brillianc']
[u'latham', u'undermin', u'allianc']
[u'launceston', u'featur', u'australian', u'survey']
[u'literaci', u'fund', u'tackl', u'poverti', u'windal']
[u'buy', u'lucki', u'phone', u'number', u'million']
[u'plead', u'guilti', u'give', u'toddler', u'cannabi']
[u'shoot', u'near', u'payn']
[u'court', u'home', u'invas', u'claim']
[u'woman', u'plead', u'guilti', u'fraud', u'charg']
[u'mapoon', u'launch', u'minut', u'alcohol', u'restrict']
[u'march', u'season', u'begin', u'peac']
[u'market', u'dip', u'news', u'corp', u'investor', u'worri']
[u'martinez', u'notch', u'career', u'singl', u'victori']
[u'master', u'flop', u'pile', u'pressur', u'tiger']
[u'mayor', u'promis', u'rail', u'cross', u'battl']
[u'meet', u'focus', u'rlpbs']
[u'memori', u'loss', u'delay', u'fraud', u'trial']
[u'mersey', u'specialist', u'threaten', u'strike']
[u'mexico', u'suspend', u'polic', u'forc', u'amid', u'drug', u'claim']
[u'motorcyclist', u'die', u'highway', u'crash']
[u'murder', u'victim', u'shoot', u'flee']
[u'murphi', u'bubbl']
[u'napthin', u'say', u'easter', u'trade', u'law', u'confus']
[u'nation', u'parti', u'call', u'freez', u'wind', u'farm']
[u'news', u'corp', u'dual', u'list', u'upset', u'investor']
[u'action', u'take', u'militari', u'engin', u'death']
[u'opposit', u'push', u'rescu', u'helicopt', u'south']
[u'outgun', u'australia', u'chanc', u'goolagong']
[u'pakistani', u'expert', u'north', u'korean', u'nuclear', u'weapon']
[u'pakistan', u'troubl', u'india']
[u'park', u'spokesman', u'rule', u'need', u'law']
[u'decis', u'outrag', u'judg']
[u'peter', u'mortim', u'step', u'bulldog', u'board']
[u'downplay', u'iraq', u'travel', u'warn']
[u'stress', u'import', u'allianc']
[u'urg', u'intellig', u'failur']
[u'polic', u'applaud', u'good', u'bevaviour', u'road']
[u'polic', u'applaud', u'western', u'motorist']
[u'polic', u'fair', u'happi', u'easter', u'driver']
[u'polic', u'happi', u'driver', u'effort']
[u'polic', u'lament', u'speed', u'offenc']
[u'polic', u'monitor', u'lake', u'eyr', u'adventur']
[u'polic', u'pleas', u'driver', u'effort']
[u'polic', u'prais', u'motorist', u'come', u'earli']
[u'polic', u'presenc', u'prevent', u'major', u'road', u'incid']
[u'polic', u'probe', u'vandal', u'attack']
[u'polic', u'seiz', u'unit', u'car', u'brisban', u'drug', u'bust']
[u'polic', u'unhappi', u'easter', u'driver']
[u'polic', u'unhappi', u'stupid', u'driver']
[u'polic', u'urg', u'motorist', u'slow', u'toll', u'rise']
[u'powerboat', u'club', u'hop', u'host', u'intern', u'event']
[u'power', u'face', u'life', u'primus']
[u'primus', u'set', u'sight', u'return']
[u'privaci', u'concern', u'gmail', u'inbox']
[u'air', u'merger', u'concern']
[u'qualiti', u'wine', u'stay', u'bottl']
[u'queensland', u'clear', u'rock', u'energi', u'research']
[u'queensland', u'holder', u'take', u'west', u'indi', u'coach']
[u'race', u'council', u'blame', u'region', u'downturn']
[u'ralli', u'target', u'mersey', u'hospit', u'servic', u'staff']
[u'review', u'consid', u'beef', u'meat', u'promot']
[u'richmond', u'coach', u'reject', u'thomass', u'apolog']
[u'drug', u'war', u'spark', u'slum', u'barrier']
[u'riyadh', u'shoot', u'kill', u'milit', u'policeman']
[u'rosedal', u'celebr', u'beach', u'spirit', u'award']
[u'russia', u'confirm', u'hostag', u'seiz']
[u'russia', u'consid', u'evacu', u'personnel']
[u'russia', u'revis', u'hostag', u'toll', u'chines', u'prison']
[u'sadr', u'aid', u'detain', u'troop']
[u'francisco', u'sell', u'newlyw', u'list']
[u'scientist', u'deni', u'ranger', u'drink', u'water']
[u'scientist', u'dive', u'deep', u'predict', u'climat', u'chang']
[u'secreci', u'surround', u'visit']
[u'share', u'valu', u'underpin', u'aust', u'allianc']
[u'shark', u'fine', u'bird', u'knee']
[u'shark', u'fine', u'bird', u'knee']
[u'sharon', u'seek', u'back', u'gaza', u'pullout']
[u'sharon', u'vow', u'main', u'settlement']
[u'sheep', u'contamin', u'case', u'adjourn']
[u'shire', u'want', u'drought', u'declar']
[u'smaller', u'rise', u'consid', u'judg']
[u'southern', u'titanium', u'learn', u'past', u'mistak']
[u'spain', u'arrest', u'bomb', u'suspect']
[u'speed', u'driver', u'alarm', u'polic']
[u'starcraft', u'shine', u'race']
[u'state', u'govern', u'neglect', u'outback', u'communiti']
[u'state', u'govt', u'criticis', u'easter', u'trade']
[u'steven', u'close', u'decis']
[u'strand', u'kayak', u'rescu', u'media']
[u'strong', u'demand', u'easter', u'accommod']
[u'success', u'easter', u'victoria']
[u'surgeri', u'alleg', u'intrud', u'guard', u'attack']
[u'taxi', u'driver', u'fin', u'guid', u'refus']
[u'telstra', u'commiss', u'solar', u'power', u'tower']
[u'thailand', u'malaysia', u'step', u'terror', u'fight']
[u'thoma', u'back', u'baker', u'report', u'claim']
[u'czech', u'journalist', u'miss', u'iraq']
[u'crusher', u'waqar', u'call']
[u'tour', u'oper', u'welcom', u'easter', u'visitor']
[u'tradit', u'owner', u'patienc', u'ranger']
[u'transport', u'ombudsman', u'appoint', u'victoria']
[u'tribun', u'clear', u'lynch', u'suspend', u'white']
[u'trio', u'high', u'tackl', u'charg']
[u'troublesom', u'adventur', u'spark', u'guidelin']
[u'arrest', u'hahndorf', u'gang', u'brawl']
[u'miss', u'russia', u'toll', u'hit']
[u'umpir', u'pile', u'pressur', u'eddi', u'commentari', u'jibe']
[u'request', u'safe', u'passag', u'iraq', u'worker']
[u'step', u'congo', u'massacr', u'investig']
[u'upbeat', u'investor', u'await', u'profit', u'report']
[u'alleg', u'sudan', u'ceas', u'breach']
[u'egypt', u'renew', u'middl', u'east', u'peac', u'pledg']
[u'soldier', u'wound', u'baghdad', u'bomb']
[u'vaccin', u'fund', u'refus', u'live', u'risk']
[u'vanston', u'hear', u'clark']
[u'villa', u'crush', u'chelsea', u'hop', u'leav', u'gunner']
[u'green', u'founder', u'stand', u'south', u'west', u'seat']
[u'wood', u'shortag', u'crippl', u'furnitur', u'maker']
[u'work', u'track', u'revamp', u'rail', u'station']
[u'idol', u'head', u'tamworth']
[u'yacht', u'race', u'continu', u'airli', u'beach']
[u'year', u'jail', u'killer', u'famili', u'friend']
[u'million', u'colt', u'set', u'market', u'record']
[u'commiss', u'criticis', u'cultur']
[u'action', u'urg', u'mental', u'health', u'nurs', u'safeti']
[u'rethink', u'medic', u'indemn', u'fund']
[u'adelaid', u'hill', u'arsonist', u'larg']
[u'adventur', u'sorri', u'polic']
[u'doubt', u'agenc', u'independ']
[u'ambush', u'american', u'iraq', u'grave', u'report']
[u'annan', u'doubt', u'major', u'return', u'iraq']
[u'studi', u'track', u'welfar', u'cycl']
[u'autopsi', u'confirm', u'striker', u'die', u'natur', u'caus']
[u'baker', u'johnson', u'clash', u'take', u'twist']
[u'doco', u'polic', u'cell', u'death', u'footag']
[u'beatti', u'ask', u'interven', u'qanta', u'cut']
[u'bega', u'valley', u'mayor', u'elect']
[u'bendigo', u'take', u'plan', u'residenti', u'growth']
[u'surat', u'basin']
[u'billi', u'crystal', u'love', u'poem', u'hit', u'bookstor']
[u'blair', u'clinton', u'head', u'milosev', u'wit', u'list']
[u'die', u'pushbik', u'accid']
[u'brack', u'unveil', u'econom', u'vision']
[u'brazilian', u'set', u'alight', u'meet']
[u'brazil', u'militari', u'call', u'help', u'stop', u'drug']
[u'brindal', u'angri', u'shadow', u'cabinet', u'shuffl']
[u'bronco', u'strip', u'competit', u'point']
[u'bush', u'popular', u'sink']
[u'bush', u'vow', u'stay', u'cours', u'iraq']
[u'busi', u'tribun', u'hand', u'suspens']
[u'calder', u'highway', u'fatal', u'fuel', u'communiti', u'anger']
[u'cane', u'farmer', u'urg', u'consid', u'cotton']
[u'cane', u'toad', u'research', u'list']
[u'cape', u'york', u'alcohol', u'limit', u'begin', u'amid', u'legal', u'threat']
[u'cheney', u'urg', u'china', u'resolv', u'north', u'korea', u'crise']
[u'child', u'care', u'centr', u'fail', u'standard']
[u'christian', u'radio', u'look', u'global', u'broadcast']
[u'climat', u'right', u'research', u'centr']
[u'coal', u'strike', u'monument', u'heritag', u'regist']
[u'commonwealth', u'chip', u'bath', u'hous', u'renov']
[u'communiti', u'meet', u'toxic', u'wast', u'dump']
[u'compani', u'complet', u'asset', u'purchas']
[u'concern', u'approv', u'controversi', u'tweed']
[u'confus', u'local', u'elect']
[u'construct', u'start', u'wall', u'upgrad']
[u'control', u'report', u'space', u'confus']
[u'council', u'draft', u'strategi', u'rat']
[u'council', u'want', u'return', u'plan', u'author']
[u'court', u'approv', u'chang', u'girl', u'rais']
[u'court', u'hear', u'man', u'distress', u'famili', u'murder']
[u'court', u'rule', u'clear', u'sand']
[u'current', u'transport', u'tropic', u'speci']
[u'decis', u'pend', u'vote', u'valid']
[u'despit', u'flood', u'grazier', u'cautious', u'ahead']
[u'diamond', u'step', u'closer', u'olymp']
[u'disney', u'lose', u'magic', u'touch']
[u'divis', u'flow', u'murray', u'delay']
[u'doctor', u'herald', u'adhd', u'drug']
[u'drought', u'condit', u'worsen']
[u'drown', u'inquest', u'focus', u'bath', u'seat']
[u'drug', u'test', u'prison', u'offic']
[u'earthquak', u'rock', u'western', u'turkey']
[u'east', u'timor', u'protest', u'unfair', u'boundari']
[u'appli', u'despit', u'declar', u'drought']
[u'elect', u'inquiri', u'plan', u'underway']
[u'emerald', u'unemploy', u'half']
[u'fallujah', u'death', u'toll', u'mount', u'despit', u'ceas']
[u'fallujah', u'truce', u'extend']
[u'famili', u'dept', u'fail', u'disabl', u'ombudsman']
[u'feder', u'grant', u'restor', u'astronom', u'hous']
[u'ferret', u'investig', u'go']
[u'fight', u'go', u'domain', u'famous']
[u'firefight', u'decontamin', u'mail', u'worker']
[u'fisher', u'appeal', u'govern', u'high', u'court']
[u'flintoff', u'english', u'open', u'rise', u'challeng']
[u'flood', u'cross', u'countri', u'camel', u'trek', u'hold']
[u'fli', u'ceo', u'send', u'compani', u'cost', u'high', u'studi']
[u'chief', u'defend', u'counter', u'terror', u'effort']
[u'founder', u'fish', u'boat', u'limbo']
[u'kill', u'iraq', u'mortar', u'attack']
[u'frauenfeld', u'unsur', u'mayor', u'vote']
[u'freak', u'weather', u'make', u'bushfir', u'unpredict']
[u'french', u'cross', u'suspend', u'oper', u'iraq']
[u'french', u'report', u'hold', u'hostag', u'iraq']
[u'funer', u'hold', u'scotchtown', u'victim']
[u'gippsland', u'fire', u'threaten', u'home', u'properti']
[u'googl', u'say', u'anti', u'semit', u'site', u'stay']
[u'govt', u'adopt', u'minimum', u'secur', u'prison', u'recommend']
[u'govt', u'consid', u'limit', u'politician', u'rise']
[u'govt', u'report', u'reject', u'intellig', u'bias']
[u'graf', u'leav', u'head', u'phoenix', u'mercuri']
[u'granni', u'win', u'pretti', u'penni']
[u'grim', u'outlook', u'balranald']
[u'grocer', u'latham', u'trade', u'practic', u'plan']
[u'hawk', u'contest', u'crawford', u'suspens']
[u'hear', u'begin', u'coat', u'arm', u'theft']
[u'henin', u'pull', u'charleston', u'william', u'sister']
[u'hird', u'make', u'submiss', u'disgrac', u'comment']
[u'hird', u'make', u'submiss', u'disgrac', u'comment']
[u'hitchhik', u'die', u'bass', u'highway']
[u'home', u'loan', u'approv', u'high']
[u'hostag', u'fear', u'strain', u'coalit']
[u'howard', u'retain', u'confid', u'agenc']
[u'iaea', u'chief', u'renew', u'iraq', u'inspect']
[u'stay', u'zimbabwean', u'cricket', u'meltdown']
[u'imparja', u'negoti', u'alcohol', u'advertis']
[u'index', u'point', u'mild', u'econom', u'downturn']
[u'india', u'make', u'win', u'toss']
[u'indian', u'nuclear', u'boffin', u'split', u'banana', u'instead']
[u'indonesian', u'fish', u'boat', u'hold', u'captain', u'question']
[u'inquiri', u'evid', u'increas', u'concern', u'banana']
[u'inquiri', u'queri', u'land', u'council', u'fund', u'manag']
[u'investig', u'ferri', u'ground', u'begin']
[u'iran', u'send', u'offici', u'mediat', u'iraq']
[u'iraqi', u'attack', u'helicopt', u'rescu', u'troop']
[u'island', u'rais', u'fund', u'typhoon']
[u'jordan', u'thwart', u'huge', u'terrorist', u'attack']
[u'kean', u'avail', u'ireland']
[u'knight', u'line', u'unchang', u'ahead', u'home', u'game']
[u'knight', u'unchang', u'ahead', u'home', u'game']
[u'latham', u'isol', u'iraq', u'polici']
[u'local', u'govt', u'success', u'stori', u'leav', u'protest']
[u'loeb', u'happi', u'lead', u'pack', u'zealand', u'ralli']
[u'lung', u'cancer', u'biggest', u'killer', u'women', u'studi']
[u'lyon', u'decid', u'futur', u'week']
[u'macedonian', u'vote', u'presid']
[u'maleni', u'resid', u'protest', u'clear', u'supermarket']
[u'murder', u'shop', u'centr', u'park']
[u'plead', u'guilti', u'sickl', u'injuri']
[u'rob', u'daughter', u'kidney', u'transplant']
[u'secur', u'winner', u'unlik', u'sourc']
[u'market', u'close', u'lower', u'aussi', u'dollar', u'fall']
[u'mcdonald', u'franchis', u'fin', u'safeti', u'breach']
[u'melbourn', u'enjoy', u'record', u'night', u'temperatur']
[u'melbourn', u'shoot', u'shock', u'polic', u'neighbour']
[u'milit', u'kill', u'polic', u'saudi', u'shootout']
[u'minist', u'idea', u'depart', u'fail']
[u'mobil', u'phone', u'go', u'bang']
[u'moran', u'asset', u'seizur', u'hear', u'adjourn']
[u'hostag', u'hold', u'iraq', u'violenc', u'spread']
[u'youth', u'stay', u'region', u'area']
[u'mountain', u'bike', u'enthusiast', u'stanthorp']
[u'movi', u'industri', u'fight', u'internet', u'piraci']
[u'narrow', u'field', u'council', u'elect']
[u'nasa', u'launch', u'cultur', u'chang']
[u'newcastl', u'build', u'activ', u'quarter']
[u'england', u'remain', u'drought', u'free']
[u'softwar', u'extend', u'mar', u'rover', u'mission']
[u'call', u'rethink', u'drought', u'assist']
[u'union', u'worker', u'bargain']
[u'govt', u'consid', u'ranger', u'prosecut']
[u'look', u'boost', u'asian', u'trade']
[u'respond', u'fertilis', u'plan']
[u'opposit', u'leader', u'pledg', u'polit', u'advertis']
[u'pakistan', u'approv', u'militari', u'council']
[u'pakistani', u'opposit', u'leader', u'trial', u'concern']
[u'park', u'hand', u'underway']
[u'parliamentari', u'report', u'irrit', u'irrig']
[u'person', u'bankruptci', u'rise']
[u'push', u'increas', u'raini', u'fund']
[u'philippin', u'consid', u'iraq', u'withdraw']
[u'brother', u'websit', u'prove', u'bore']
[u'refus', u'draw', u'tugun', u'bypass']
[u'stand', u'firm', u'intellig', u'inquiri', u'call']
[u'visit', u'grafton']
[u'welcom', u'bush', u'iraq', u'stanc']
[u'polic', u'number', u'put', u'public', u'risk', u'union']
[u'polic', u'probe', u'jackson', u'claim']
[u'polic', u'probe', u'michael', u'jackson', u'molest', u'case']
[u'polic', u'renew', u'call', u'help', u'miss']
[u'polic', u'seek', u'arsonist']
[u'polic', u'arrest', u'attent', u'staff', u'campaign']
[u'pottharst', u'athen', u'dream', u'ruin']
[u'premier', u'appoint', u'examin', u'editor', u'chief', u'staff']
[u'premier', u'launch', u'galleri', u'fund']
[u'prison', u'flee', u'custodi', u'court', u'appear']
[u'properti', u'develop', u'threaten', u'buri', u'courier']
[u'psychologist', u'deregist', u'patient']
[u'rail', u'timet', u'remain', u'unchang']
[u'rat', u'increas', u'council', u'split', u'mayor']
[u'rebel', u'iraqi', u'cleric', u'choos', u'talk', u'envoy']
[u'record', u'price', u'pay', u'danehil', u'colt']
[u'recount', u'see', u'councillor', u'return']
[u'redevelop', u'choos', u'caravan', u'park']
[u'report', u'identifi', u'marin', u'conserv', u'area']
[u'retail', u'surg', u'upset', u'wall', u'street']
[u'review', u'recommend', u'scrap', u'culcairn', u'holbrook']
[u'road', u'clear', u'ashford', u'accid']
[u'roddick', u'cruis', u'past', u'carlsen', u'houston', u'clay']
[u'rooster', u'appeal', u'fine']
[u'russia', u'evacu', u'iraq']
[u'sadr', u'propos', u'peac', u'deal', u'envoy']
[u'electricti', u'market', u'confound', u'democrat']
[u'african', u'vote', u'apartheid', u'anniversari']
[u'sale', u'manag', u'jail', u'cigarett', u'theft']
[u'move', u'plastic', u'free', u'societi']
[u'sander', u'final', u'bout']
[u'schuettler', u'continu', u'lose', u'portug']
[u'scientist', u'face', u'shroud', u'turin', u'mysteri']
[u'scud', u'play', u'morocco']
[u'search', u'continu', u'prison', u'escape']
[u'seiz', u'asset', u'bolster', u'polic', u'budget']
[u'sheedi', u'call', u'calm', u'mclaren', u'saga']
[u'ship', u'queue', u'symptom', u'rail', u'problem']
[u'singl', u'girl', u'urg', u'west']
[u'slater', u'iron', u'quarter', u'bell']
[u'smoke', u'alarm', u'save', u'sunshin', u'famili']
[u'social', u'atlas', u'find', u'young', u'peopl', u'stay']
[u'south', u'africa', u'go', u'poll']
[u'south', u'east', u'drought']
[u'stanhop', u'defend', u'drought', u'relief']
[u'steep', u'fin', u'easter', u'speeder']
[u'suharto', u'parti', u'claim', u'elect', u'victori']
[u'sydney', u'bomb', u'maker', u'escap', u'jail', u'term']
[u'walnut', u'firm', u'announc', u'expans']
[u'taylor', u'successor', u'urg', u'surrend']
[u'teenag', u'charg', u'taxi', u'driver', u'mug']
[u'teen', u'strike', u'everton', u'leed', u'share', u'point']
[u'telstra', u'chairman', u'quit', u'board']
[u'torbay', u'back', u'govt', u'jail', u'neglig', u'parent']
[u'tourism', u'oper', u'urg', u'appli', u'grant']
[u'tourist', u'oper', u'voic', u'concern']
[u'transport', u'worker', u'place', u'month']
[u'trio', u'clear', u'strike', u'charg']
[u'tropic', u'speci', u'hitch', u'ride', u'coastal', u'current']
[u'truss', u'admit', u'drought', u'relief', u'weak']
[u'turkish', u'remand', u'face', u'peopl', u'smuggl']
[u'escap', u'hous']
[u'charg', u'offenc']
[u'unhappi', u'nurs', u'consid', u'offer']
[u'boost', u'timor', u'judici', u'amnesti']
[u'arrest', u'ricin', u'maker']
[u'blind', u'enemi', u'ashcroft']
[u'request', u'iran', u'help', u'curb', u'iraq', u'violenc']
[u'soldier', u'kill', u'forc', u'close', u'sadr']
[u'welcom', u'burma', u'opposit', u'leader', u'releas']
[u'vagana', u'contest', u'sever', u'high', u'tackl', u'charg']
[u'nistelrooy', u'say', u'stay']
[u'volunt', u'bear', u'brunt', u'weed', u'battl', u'inquiri', u'tell']
[u'health', u'nurs', u'assn', u'review', u'fund']
[u'wallabi', u'play', u'combin', u'pacif', u'team']
[u'water', u'suppli', u'problem', u'develop']
[u'woman', u'die', u'melbourn', u'shoot']
[u'zanzibar', u'outlaw', u'homosexu']
[u'abus', u'women', u'prone', u'smoke']
[u'health', u'worker', u'consid', u'industri', u'action']
[u'tell', u'state', u'sort', u'tugun', u'bypass']
[u'hold', u'lead', u'south', u'africa', u'count', u'continu']
[u'appeal', u'fail', u'save', u'histor', u'domain', u'fig']
[u'face', u'player', u'drain', u'miller']
[u'aussi', u'bell', u'beach', u'semi']
[u'australia', u'eras', u'nicaraguan', u'debt']
[u'author', u'watch', u'north', u'west', u'fire']
[u'babi', u'boomer', u'kidney', u'diseas', u'risk', u'rise']
[u'backbench', u'challeng', u'mchale', u'kenwick']
[u'ballarat', u'plead', u'deer', u'park', u'bypass']
[u'bash', u'put', u'hospit']
[u'beach', u'report', u'finish']
[u'beatti', u'await', u'impact', u'qanta']
[u'beckham', u'alleg', u'lover', u'speak']
[u'berri', u'squeez', u'import', u'orang', u'pack']
[u'blue', u'tier', u'log', u'begin']
[u'boycott', u'like', u'reconcili', u'ceremoni']
[u'brindal', u'consid', u'option', u'parti', u'meet']
[u'bronco', u'appeal', u'point', u'decis']
[u'burma', u'threaten', u'overshadow', u'asean', u'talk']
[u'burni', u'nurs', u'suspend', u'amid', u'drug', u'inquiri']
[u'burn', u'off', u'threaten', u'properti']
[u'bushfir', u'expert', u'need', u'inquiri', u'tell']
[u'buyer', u'spend', u'sydney', u'yearl', u'sale']
[u'women', u'contest', u'poll']
[u'govt', u'offer', u'region', u'relief']
[u'canadian', u'seal', u'hunter', u'race', u'quota']
[u'carr', u'suggest', u'valu', u'council', u'abolit']
[u'castella', u'resid', u'activ', u'plan']
[u'catch', u'releas', u'barramundi', u'fine']
[u'charg', u'guantanamo', u'chaplain', u'dismiss']
[u'chelsea', u'chief', u'ranieri', u'face', u'uncertainti']
[u'chetwynd', u'armidal', u'dumaresq', u'mayor']
[u'childer', u'survivor', u'hostel']
[u'china', u'expans', u'deep', u'global', u'impact']
[u'clare', u'sell', u'english', u'lesson', u'china']
[u'coff', u'hospit', u'celebr', u'graduat']
[u'concern', u'secur', u'anga', u'park']
[u'cosgrov', u'answer', u'intellig', u'complaint']
[u'cost', u'limit', u'adhd', u'drug']
[u'council', u'candid', u'seek', u'vote', u'probe']
[u'council', u'say', u'fluorid', u'water']
[u'council', u'want', u'compost', u'facil', u'answer']
[u'crash', u'victim', u'wait', u'day', u'dead', u'mother']
[u'crawford', u'suspens', u'overturn']
[u'custodi', u'escape']
[u'custom', u'arrang', u'fish', u'boat', u'repair']
[u'death', u'spark', u'communiti', u'support', u'boost']
[u'distanc', u'educ', u'fail', u'indigen', u'student', u'report']
[u'doc', u'probe', u'judg', u'critic']
[u'doctor', u'action', u'mersey', u'hospit', u'servic']
[u'dolphin', u'birth', u'surpris', u'marin', u'park', u'staff']
[u'want', u'longer', u'sentenc', u'babi', u'killer']
[u'dravid', u'crack', u'india', u'take', u'command']
[u'dravid', u'unbeaten', u'give', u'india', u'lead']
[u'drought', u'polici', u'depoliticis', u'labor']
[u'drought', u'prepar', u'lack']
[u'easter', u'offer', u'respit']
[u'editor', u'chief', u'resign']
[u'effect', u'counter', u'intellig', u'year', u'away']
[u'eldorado', u'gold', u'market']
[u'environ', u'group', u'boycott', u'mine', u'forum']
[u'europ', u'reject', u'lade', u'truce', u'tape']
[u'expert', u'worri', u'townsvill', u'dengu', u'status']
[u'extortionist', u'cost', u'centrebet', u'million']
[u'famili', u'seek', u'coroni', u'inquiri']
[u'farina', u'demand', u'commit', u'player']
[u'farmer', u'urg', u'avoid', u'crop', u'virus']
[u'father', u'daughter', u'accept', u'mayor', u'posit']
[u'figur', u'rescu', u'chopper', u'servic']
[u'financ', u'rain', u'love', u'parad']
[u'danger', u'high', u'despit', u'danger', u'season']
[u'destroy', u'famili', u'mansion']
[u'firefight', u'continu', u'battl', u'blaze']
[u'fire', u'toe']
[u'flatley', u'fail', u'shake', u'thumb', u'injuri']
[u'flue', u'heater', u'asthmat', u'studi']
[u'foreign', u'exodus', u'crippl', u'iraq', u'reconstruct']
[u'forest', u'proscrib', u'forc', u'protest', u'brown']
[u'forum', u'focus', u'alcohol', u'abus', u'fight']
[u'froggi', u'founder', u'jail', u'fraud', u'charg']
[u'fuel', u'didnt', u'caus', u'fatal', u'plane', u'crash', u'report']
[u'gene', u'profil', u'leukaemia', u'treatment']
[u'global', u'trend', u'boost', u'local', u'economi']
[u'govt', u'play', u'role', u'telstra', u'chairman', u'appoint']
[u'heavi', u'rain', u'caus', u'second', u'suva', u'flood']
[u'henin', u'hardenn', u'skip']
[u'heroin', u'shortag', u'cut', u'crime']
[u'hick', u'interrog', u'featur', u'broadcast']
[u'hird', u'face', u'music']
[u'hird', u'fin', u'umpir', u'slur']
[u'hospit', u'flood', u'food', u'poison', u'case']
[u'hospit', u'protest', u'target', u'govt', u'public']
[u'hous', u'market', u'continu', u'cool']
[u'howard', u'ax', u'atsic']
[u'imparja', u'stand', u'broadcast', u'time']
[u'indigen', u'leader', u'condemn', u'atsic', u'decis']
[u'iranian', u'diplomat', u'kill', u'iraq']
[u'islam', u'state', u'emerg', u'meet']
[u'itali', u'confirm', u'iraq', u'hostag', u'execut']
[u'itali', u'stand', u'fast', u'despit', u'hostag', u'death']
[u'ivanisev', u'accept', u'queen', u'wildcard']
[u'japanes', u'hostag', u'iraq', u'releas']
[u'japanes', u'hostag', u'releas', u'report']
[u'lag', u'molik', u'make', u'earli', u'exit']
[u'joint', u'station', u'usher', u'polic']
[u'kidnapp', u'kill', u'italian', u'hostag', u'jazeera']
[u'kookaburra', u'sink', u'south', u'africa']
[u'krogh', u'remov', u'race']
[u'laser', u'beam', u'bird', u'franc', u'runway']
[u'latham', u'dismiss', u'howard', u'polici', u'claim']
[u'latham', u'hear', u'pilbara', u'econom', u'valu']
[u'latrob', u'council', u'start', u'voluntari', u'registr']
[u'legisl', u'good', u'news', u'green', u'energi', u'plan']
[u'locust', u'build', u'farmer', u'watch']
[u'locust', u'report', u'prompt', u'autumn', u'survey']
[u'love', u'aim', u'defend', u'crown']
[u'lynch', u'like', u'miss', u'eagl', u'match']
[u'mandela', u'boost', u'africa', u'vote']
[u'die', u'highway', u'crash']
[u'mansfield', u'resign', u'good', u'telstra', u'latham']
[u'market', u'lose', u'grind', u'despit', u'strong', u'telstra', u'trade']
[u'mari', u'israel', u'place', u'good', u'behaviour', u'bond']
[u'mayor', u'experi', u'hang', u'balanc']
[u'mayor', u'question', u'late', u'drought']
[u'mediat', u'stave', u'sadr', u'assault']
[u'west', u'host', u'plan', u'save', u'threaten', u'plant']
[u'shire', u'work', u'growth']
[u'miss', u'girl', u'safe']
[u'accid', u'spark', u'urgent', u'highway']
[u'murali', u'clear', u'say', u'lanka', u'chief']
[u'director', u'hit', u'report']
[u'newcastl', u'hous', u'market', u'eas']
[u'newcastl', u'uefa', u'semi', u'celtic', u'crash']
[u'committe', u'rep', u'wetland', u'manag']
[u'mayor', u'wingecarribe', u'council']
[u'mayor', u'upbeat', u'eurobodalla', u'growth']
[u'move', u'stop', u'credit', u'card', u'fraud']
[u'strategi', u'aim', u'increas', u'export']
[u'studi', u'look', u'effect', u'exercis', u'arthriti']
[u'norway', u'counti', u'rule', u'smoke', u'basic', u'right']
[u'govt', u'urg', u'think', u'water', u'take']
[u'nuttal', u'admit', u'hospit', u'wait', u'list', u'woe']
[u'olymp', u'venu', u'trigger', u'concern', u'cassel']
[u'olymp', u'venu', u'trigger', u'shooter', u'concern']
[u'osama', u'captur', u'deadlin', u'difficult']
[u'overheat', u'warn', u'chines', u'economi', u'grow']
[u'palestinian', u'attack', u'bush', u'gaza', u'plan']
[u'palestinian', u'condemn', u'settlement', u'plan']
[u'palestinian', u'continu', u'struggl', u'say', u'arafat']
[u'parent', u'teacher', u'await', u'school', u'review']
[u'parkinson', u'win', u'bell']
[u'plan', u'gunnedah', u'airport', u'upgrad']
[u'address', u'local', u'issu', u'grafton']
[u'question', u'court', u'chang', u'decis']
[u'polic', u'game', u'fetch']
[u'polic', u'charg', u'teen', u'assault']
[u'polic', u'head', u'contract', u'extend', u'rise', u'consid']
[u'polic', u'offer', u'assur', u'detect']
[u'pratt', u'power', u'charleston', u'round']
[u'premier', u'monitor', u'mackay', u'servic', u'chang']
[u'promot', u'liber', u'parliamentarian']
[u'protest', u'dairi', u'farmer', u'want', u'price', u'water']
[u'legisl', u'rock', u'research']
[u'rail', u'overpass', u'talk', u'track']
[u'rapper', u'indict', u'lie', u'shootout']
[u'rate', u'rise', u'cap', u'tatiara', u'council']
[u'receptor', u'drug', u'rais', u'erect', u'effect']
[u'red', u'rest', u'injur', u'flanker']
[u'republ', u'campaign', u'focus', u'bush']
[u'return', u'moura', u'dentist', u'possibl']
[u'revamp', u'plan', u'skipton']
[u'rossi', u'aim', u'open', u'victori', u'yamaha']
[u'rower', u'forc', u'athen', u'campaign']
[u'russia', u'begin', u'iraq', u'evacu']
[u'saint', u'appeal', u'hamil', u'suspens']
[u'sedna', u'miss', u'moon', u'mystifi', u'astronom']
[u'share', u'respons', u'boost', u'indigen', u'wellb']
[u'shire', u'offer', u'reward', u'catch', u'arsonist']
[u'shire', u'want', u'workshop', u'discuss', u'yallingup', u'coast']
[u'shop', u'owner', u'face', u'trial', u'toddler', u'bull']
[u'south', u'korea', u'pois', u'elect', u'parliament']
[u'steal', u'victim', u'want', u'thiev', u'punish']
[u'korea', u'parti', u'head']
[u'stuart', u'petroleum', u'gush']
[u'sugar', u'packag', u'rescu', u'deal']
[u'suspect', u'lade', u'tape', u'offer', u'european', u'truce']
[u'suspend', u'atsic', u'chairman', u'plead', u'case']
[u'swim', u'australia', u'stay', u'race']
[u'sydney', u'arrest', u'terror', u'charg']
[u'taliban', u'loyalist', u'continu', u'afghan', u'attack']
[u'retail', u'welcom', u'propos', u'trade', u'reform']
[u'telstra', u'share', u'surg', u'mansfield', u'quit']
[u'telstra', u'consid', u'busi', u'compo', u'claim']
[u'thorp', u'chanc', u'remain', u'unclear']
[u'thorp', u'hand', u'ticket']
[u'tooth', u'ferri', u'price', u'britain', u'dentistri']
[u'travel']
[u'uechtritz', u'leav', u'channel']
[u'cautious', u'return', u'iraq']
[u'envoy', u'outlin', u'iraq', u'power', u'transfer', u'plan']
[u'union', u'air', u'alcohol', u'polic', u'fear']
[u'union', u'undemocrat']
[u'union', u'lament', u'north', u'coast', u'rail', u'cut']
[u'union', u'seek', u'sunbeam', u'job', u'assur']
[u'union', u'want', u'bundaberg', u'work', u'review']
[u'union', u'warn', u'sugar', u'closur', u'impact']
[u'parti', u'south', u'korean', u'elect']
[u'econom', u'growth', u'hit', u'australian', u'dollar']
[u'rate', u'specul', u'lead', u'market']
[u'soldier', u'kill', u'iraq', u'bomb', u'attack']
[u'west', u'bank', u'stanc', u'justifi', u'violenc', u'hama', u'say']
[u'vagana', u'cop', u'week']
[u'vail', u'talk', u'trade', u'deal', u'benefit']
[u'vaughan', u'hail', u'caribbean', u'triumph']
[u'vaughan', u'cap', u'england', u'seri', u'celebr']
[u'defend', u'control', u'burn', u'fire', u'rage']
[u'firefight', u'battl', u'blaze', u'state']
[u'victoria', u'swelter', u'near', u'record', u'temperatur']
[u'violinist', u'strike', u'wrong', u'chord', u'polic']
[u'volker', u'wont', u'face', u'charg']
[u'warn', u'hop', u'success', u'hampshir']
[u'vet', u'urg', u'know', u'entitl']
[u'water', u'concern', u'halt', u'maleni', u'land', u'clear']
[u'water', u'charg', u'chang', u'tip']
[u'weather', u'heat', u'south', u'west']
[u'whitak', u'doubt', u'waratah']
[u'winemak', u'hard', u'swallow']
[u'woman', u'children', u'highway', u'crash']
[u'woodsid', u'announc', u'fifth', u'train', u'plan']
[u'make', u'concess']
[u'zimbabw', u'player', u'issu', u'ultimatum']
[u'aborigin', u'leader', u'warn', u'scrap', u'atsic', u'folli']
[u'forc', u'replac', u'fleet']
[u'ord', u'lower', u'tumbl']
[u'alston', u'tout', u'telstra']
[u'amnesti', u'condemn', u'pngs', u'death', u'penalti']
[u'celebr', u'african', u'provinc', u'race', u'tight']
[u'sweep', u'african', u'poll']
[u'appeal', u'throw', u'go']
[u'arafat', u'warn', u'west', u'bank', u'land', u'annex']
[u'atsic', u'slap', u'local', u'communiti']
[u'atsic', u'commission', u'deni', u'invit']
[u'atsic', u'spokesman', u'concern', u'futur']
[u'atsi', u'offic', u'suspend', u'fraud', u'charg']
[u'aussi', u'tour', u'rooki', u'share', u'vega', u'lead']
[u'austoft', u'facil']
[u'australian', u'hostag', u'foolhardi', u'howard']
[u'australian', u'woman', u'foolhardi', u'stay', u'iraq', u'howard']
[u'barbara', u'walter', u'sign', u'lucrat', u'book', u'deal']
[u'beatti', u'see', u'atsic', u'fresh', u'start']
[u'beer', u'gout', u'link', u'studi', u'confirm']
[u'berlusconi', u'corrupt', u'trial', u'resum']
[u'birdi', u'blitz', u'send', u'colsaert', u'sevill', u'lead']
[u'blair', u'deni', u'conflict', u'iraq']
[u'blair', u'say', u'peac', u'roadmap', u'track']
[u'blast', u'past', u'thunderbolt']
[u'bloodstock', u'prospect', u'boom', u'yearl', u'sale']
[u'bomber', u'overpow', u'blue']
[u'british', u'leagu', u'chief', u'probe', u'bet', u'claim']
[u'buckley', u'injuri', u'blow', u'collingwood']
[u'buckley', u'injuri', u'blow', u'magpi']
[u'bull', u'red']
[u'driver', u'throat', u'hold']
[u'call', u'cigarett', u'style', u'restrict', u'alcohol']
[u'call', u'emerg', u'helicopt', u'servic', u'south']
[u'carr', u'urg', u'commonwealth', u'boost', u'medic', u'posit']
[u'cattl', u'deal', u'stamped', u'action']
[u'celtic', u'scottish', u'titl']
[u'chadban', u'return', u'great', u'lake', u'mayor']
[u'chines', u'miner', u'rescu', u'day', u'underground']
[u'claim', u'rule', u'breach', u'possibl', u'lobster', u'closur']
[u'click', u'dont', u'shear']
[u'back', u'middl', u'school', u'idea']
[u'coast', u'councillor', u'vent', u'elect', u'concern']
[u'coff', u'bypass', u'support', u'unhappi', u'interim']
[u'coff', u'host', u'nation', u'surf', u'lifesav', u'titl']
[u'concern', u'rais', u'possibl', u'bait']
[u'concern', u'lettuc', u'crop', u'lockyer', u'valley']
[u'congo', u'ferri', u'mishap', u'claim', u'live']
[u'cosmic', u'magnifi', u'glass', u'find', u'distant', u'planet']
[u'courtney', u'love', u'stand', u'trial', u'drug', u'case']
[u'crime', u'rate', u'murrumbidge', u'area']
[u'crisi', u'accommod', u'short', u'gympi']
[u'danish', u'businessman', u'fear', u'kidnap', u'iraq']
[u'decis', u'shop', u'hour', u'split']
[u'defenc', u'famili', u'stay', u'solid', u'support', u'serv']
[u'denmark', u'releas', u'iraq', u'intellig']
[u'dog', u'warrior']
[u'dog', u'down', u'warrior']
[u'downer', u'dismiss', u'lade', u'truce', u'offer']
[u'downer', u'discuss', u'nauru', u'financi']
[u'drink', u'spike', u'warn', u'gold', u'coast']
[u'drought', u'proof', u'plant', u'highlight', u'open', u'garden']
[u'eddi', u'scoop', u'fug']
[u'elder', u'commit', u'trial', u'coat', u'arm', u'theft']
[u'electron', u'visa', u'expans', u'announc']
[u'embryo', u'research', u'begin']
[u'emerg', u'servic', u'memori', u'cape', u'hillsborough']
[u'engin', u'invent', u'solubl', u'heart', u'stent']
[u'england', u'seamer', u'award', u'summer', u'contract']
[u'export', u'drive', u'boost', u'south', u'west']
[u'farmer', u'check', u'fertilis', u'sale']
[u'fatal', u'accid', u'investig', u'begin']
[u'fear', u'spread', u'locust', u'wing']
[u'feder', u'face', u'preselect', u'battl']
[u'feder', u'polic', u'earn', u'govt', u'prais', u'terrorist']
[u'govt', u'urg', u'boost', u'child', u'care', u'effort']
[u'feedlot', u'futur', u'abattoir', u'concern']
[u'figur', u'crime', u'reduct', u'break', u'hill']
[u'fiji', u'storm', u'leav', u'death', u'destruct']
[u'risk', u'remain', u'despit', u'reduct', u'polici']
[u'fire', u'bring', u'control']
[u'fishermen', u'join', u'polit', u'circl']
[u'flood', u'stem']
[u'forest', u'vigil', u'continu', u'log']
[u'japanes', u'hostag', u'wish', u'remain', u'iraq']
[u'face', u'trial', u'child', u'charg']
[u'teacher', u'plead', u'guilti', u'molest', u'student']
[u'forum', u'seek', u'input', u'futur', u'region', u'communiti']
[u'fourth', u'place', u'save', u'liverpool', u'say', u'houllier']
[u'freddi', u'urg', u'selector', u'room', u'barrett']
[u'benefit', u'report', u'delay']
[u'gang', u'rapist', u'dead', u'cell']
[u'german', u'polic', u'search', u'littl', u'ladi', u'bank']
[u'girl', u'tell', u'nightmar', u'crossbow', u'attack']
[u'good', u'season', u'ahead', u'mudge', u'vine']
[u'govt', u'move', u'sell', u'atsic', u'decis']
[u'greec', u'endors', u'cyprus', u'reunif', u'plan']
[u'green', u'lament', u'silenc', u'falun', u'gong', u'protest']
[u'group', u'call', u'polic', u'pursuit', u'halt']
[u'heal', u'garden', u'open', u'flinder']
[u'health', u'underspend', u'affect', u'region', u'communiti']
[u'high', u'prais', u'retir', u'famili', u'court', u'chief']
[u'hotel', u'group', u'applaud', u'nation', u'bouncer', u'code']
[u'india', u'claim', u'histor', u'pakistan', u'seri']
[u'indigen', u'leader', u'attack', u'atsic', u'abolit']
[u'indigen', u'leader', u'odd', u'atsic', u'plan']
[u'indigen', u'offend', u'accommod', u'worri', u'benalla']
[u'indonesia', u'build', u'case', u'cleric']
[u'inquest', u'delay', u'allow', u'communiti', u'griev']
[u'inquest', u'tell', u'time', u'warn']
[u'investig', u'dead', u'wheel']
[u'iraq', u'contamin', u'materi', u'disappear']
[u'ireland', u'claim', u'intern', u'rule', u'seri']
[u'isol', u'fear', u'abolit', u'atsic']
[u'job', u'doubt', u'atsic', u'decis']
[u'kemp', u'bag', u'green', u'claim']
[u'land', u'concern', u'delay', u'move', u'privat', u'school']
[u'latham', u'pledg', u'broom', u'coastguard']
[u'latrob', u'hold', u'vigil', u'hospit', u'campaign']
[u'lawyer', u'doesnt', u'fear', u'claim', u'flurri']
[u'lawyer', u'argu', u'leski', u'inquiri']
[u'leaflet', u'warn', u'loom', u'baghdad', u'attack']
[u'leed', u'eas', u'releg', u'fear', u'arsenal']
[u'legal', u'servic', u'fear', u'atsic', u'ax', u'start', u'cut']
[u'leski', u'inquest', u'stall']
[u'local', u'industri', u'govt', u'boost']
[u'strengthen']
[u'maleni', u'tree', u'feel', u'cost']
[u'charg', u'doubl', u'troubl']
[u'jail', u'church', u'fraud']
[u'court', u'charg']
[u'stand', u'trial', u'coat', u'arm', u'theft']
[u'unit', u'open', u'queiroz', u'comeback']
[u'mayoralti', u'lotteri', u'west']
[u'mbeki', u'pledg', u'disappoint', u'south', u'african']
[u'meet', u'discuss', u'public', u'drunken']
[u'mentor', u'program', u'help', u'find', u'job']
[u'menzi', u'director', u'accept', u'interst', u'posit']
[u'mexican', u'firework', u'blast', u'kill', u'seven']
[u'mix', u'result', u'crime', u'stat']
[u'monaro', u'council', u'poll', u'ahead', u'june']
[u'mosqu', u'fallujah']
[u'mother', u'claim', u'resign', u'answer', u'famili', u'care']
[u'motorcyclist', u'die', u'involv']
[u'confid', u'strong', u'sugar', u'packag']
[u'murder', u'toddler', u'scar', u'protest']
[u'predict', u'profit', u'downturn']
[u'punish', u'profit', u'announc', u'backlash']
[u'narrow', u'escap', u'australian', u'hostag', u'iraq']
[u'nation', u'push', u'wheatbelt', u'polic', u'fund']
[u'right', u'step', u'wiluna', u'shire']
[u'reg', u'ensur', u'clean', u'water', u'port']
[u'report', u'back', u'claim']
[u'bail', u'alleg', u'yarravill', u'shooter']
[u'deal', u'steven', u'announc', u'manag']
[u'traffic', u'blue', u'byron', u'music', u'festiv']
[u'opposit', u'say', u'fund']
[u'organis', u'crime', u'link', u'fish', u'industri']
[u'origin', u'drummer', u'beatl', u'festiv']
[u'pakistan', u'face', u'defeat', u'decis', u'test']
[u'pampl', u'share', u'second', u'south', u'carolina']
[u'parti', u'mark', u'cultur', u'celebr']
[u'penalti', u'like', u'polic', u'offic', u'asleep']
[u'plan', u'delay', u'theophan', u'face']
[u'polic', u'blitz', u'school', u'holiday', u'return']
[u'polic', u'confid', u'alcohol', u'enforc']
[u'polic', u'think', u'link', u'stab']
[u'polic', u'investig', u'fatal', u'crash']
[u'polic', u'number', u'despit', u'recruit', u'review']
[u'polic', u'question', u'suspect', u'chadston', u'murder']
[u'polic', u'charg', u'chadston', u'slay']
[u'polic', u'job', u'announc', u'docker', u'river']
[u'poverti', u'worsen', u'brazil', u'studi', u'say']
[u'pratt', u'charleston', u'serena', u'injuri', u'scare']
[u'protest', u'expect', u'remov', u'atsic']
[u'public', u'servant', u'boost']
[u'public', u'warn', u'drink', u'spike', u'rise']
[u'push', u'ecotour', u'train', u'tafe']
[u'upbeat', u'end', u'tugun', u'bypass', u'woe']
[u'queensland', u'derbi', u'possibl', u'origin', u'select', u'trial']
[u'rail', u'servic', u'put', u'newel', u'odd', u'parti']
[u'rail', u'shutdown', u'caus', u'delay', u'melbourn', u'commut']
[u'reduct', u'librari', u'servic', u'like', u'sthn']
[u'refere', u'spotlight', u'milan', u'face', u'tuscan', u'test']
[u'releas', u'italian', u'hostag', u'remain', u'difficult']
[u'rock', u'real', u'face', u'derbi', u'ordeal']
[u'rural', u'communiti', u'bank', u'lender']
[u'russian', u'ballerina', u'weigh', u'lose', u'damag', u'case']
[u'safin', u'shake', u'dizzi', u'spell', u'defeat', u'ascion']
[u'salari', u'bonus', u'viacom', u'exec']
[u'school', u'look', u'classroom', u'fund']
[u'schwarzenegg', u'appoint', u'eastwood', u'devito', u'film']
[u'scone', u'report', u'huge', u'increas', u'weapon', u'offenc']
[u'search', u'underway', u'adelaid', u'woman', u'abduct']
[u'secur', u'concern', u'privat', u'prison', u'dismiss']
[u'serial', u'offend', u'get', u'year', u'jail', u'term']
[u'slush', u'fund', u'alleg', u'gold', u'coast', u'council']
[u'smyth', u'demand', u'jail', u'explan']
[u'snowdon', u'attack', u'atsic', u'plan']
[u'solberg', u'lead', u'ralli', u'gronholm', u'roll']
[u'southern', u'health', u'review', u'revenu', u'strategi']
[u'spanish', u'parliament', u'approv', u'zapatero']
[u'spore', u'growth', u'delay', u'wheat', u'shipment', u'test']
[u'state', u'agre', u'nation', u'action', u'cane', u'toad']
[u'statist', u'crime', u'rise', u'tamworth']
[u'stormer', u'blitz', u'blue']
[u'string', u'pull', u'return', u'violin', u'owner']
[u'studi', u'find', u'sunset', u'help', u'guid', u'migrat', u'bird']
[u'studi', u'probe', u'genet', u'discrimin']
[u'support', u'atsic', u'scrap']
[u'swan', u'lose', u'davi', u'oloughlin']
[u'sydney', u'acid', u'spill', u'spark', u'emerg', u'respons']
[u'sydney', u'launceston', u'pollut', u'signific', u'studi']
[u'telstra', u'quiet', u'rental', u'price', u'rise']
[u'terror', u'threat', u'spark', u'citizen', u'flee']
[u'thousand', u'flee', u'suva', u'flood']
[u'road', u'accid']
[u'kill', u'philippin', u'candid', u'ambush']
[u'tourist', u'bring', u'financi', u'windfal', u'denmark']
[u'townsvill', u'music', u'centr', u'lobbi', u'return']
[u'trucki', u'die']
[u'love', u'teen', u'charg', u'kill', u'plan']
[u'market', u'boost', u'food', u'week', u'turn']
[u'union', u'concern', u'bluescop', u'breakdown']
[u'parti', u'claim', u'histor', u'south', u'korea', u'elect']
[u'clear', u'iraq', u'plan']
[u'extend', u'iraq', u'troop', u'deploy']
[u'order', u'staff', u'leav', u'saudi', u'arabia']
[u'preoccupi', u'like', u'rate', u'rise']
[u'welcom', u'european', u'reject', u'lade', u'truce']
[u'vanston', u'say', u'atsic', u'scrap', u'wont', u'affect', u'job']
[u'nation', u'confer', u'give', u'forum', u'drought']
[u'violenc', u'prompt', u'rethink', u'liquor', u'licens']
[u'violet', u'town', u'weir', u'destruct']
[u'wafl', u'give', u'approv', u'mclean', u'oval', u'clash']
[u'water', u'park', u'jeopardi']
[u'weather', u'aid', u'firefight', u'battl', u'gippsland', u'blaze']
[u'weighti', u'woe', u'see', u'mcdonald', u'boost', u'offer']
[u'winton', u'properti', u'pass']
[u'worcest', u'deni', u'larkham']
[u'world', u'champion', u'astarloa', u'leav', u'embattl']
[u'zimbabw', u'cricket', u'crisi', u'wont', u'stop', u'aussi', u'tour']
[u'zimbabw', u'squad', u'rip', u'apart', u'player', u'boycott']
[u'million', u'add', u'spice', u'lonhro', u'farewel']
[u'million', u'add', u'spice', u'lonhro', u'farewel']
[u'abduct', u'adelaid', u'woman', u'miss']
[u'airlin', u'turn', u'white', u'liner', u'mexican', u'road']
[u'akhtar', u'deni', u'rift', u'captain']
[u'chines', u'worker', u'hold', u'briefli', u'iraq']
[u'argentin', u'monasterio', u'lead', u'ballestero', u'close']
[u'djibouti', u'flood']
[u'joke', u'blast', u'mcenro']
[u'babi', u'boom', u'hit', u'monarto']
[u'bairnsdal', u'die', u'smash']
[u'berlusconi', u'corrupt', u'trial']
[u'britain', u'agre', u'east', u'plan']
[u'bronco', u'buck', u'cowboy']
[u'bulk', u'carrier', u'adrift', u'coast']
[u'bush', u'back', u'role', u'iraq', u'handov']
[u'bush', u'blair', u'stand', u'iraq', u'deadlin']
[u'bush', u'plan', u'iraq', u'decemb', u'book']
[u'cameroon', u'dock', u'world', u'point']
[u'captain', u'warn', u'overshadow', u'veteran', u'team', u'mate']
[u'captur', u'soldier', u'parad', u'arab']
[u'chief', u'surviv', u'dramat', u'climax', u'sink', u'shark']
[u'chief', u'surviv', u'late', u'charg', u'sink', u'shark']
[u'china', u'blast', u'forc', u'mass', u'evacu']
[u'clash', u'near', u'holi', u'iraq', u'citi', u'rebel', u'cleric', u'defiant']
[u'colombian', u'navi', u'drug', u'scandal']
[u'contend', u'line', u'season']
[u'corrobore', u'highlight', u'indigen', u'cultur']
[u'court', u'postpon', u'courtney', u'love', u'trial']
[u'curti', u'lead', u'south', u'carolina']
[u'dead', u'china', u'leak', u'spark', u'huge', u'evacu']
[u'demon', u'turn', u'power']
[u'eagl', u'edg', u'lion']
[u'embryo', u'research', u'licenc', u'spawn', u'attack']
[u'expert', u'focus', u'test', u'visual', u'disord']
[u'fake', u'milk', u'powder', u'kill', u'dozen', u'chines', u'babi']
[u'favour', u'condit', u'firefight']
[u'fear', u'soldier', u'hold', u'hostag', u'iraq']
[u'ferguson', u'hit', u'schole', u'hear']
[u'lord', u'mayor', u'hit', u'council', u'bulli', u'tactic']
[u'goal', u'henri', u'fire', u'gunner', u'rout', u'leed']
[u'isra', u'wound', u'suicid', u'bomb', u'report']
[u'hostag', u'free', u'iraq']
[u'fund', u'allow', u'greater', u'kidney', u'stone', u'research']
[u'gang', u'rapist', u'hang', u'prison']
[u'german', u'bank', u'chief', u'quit', u'hotel', u'scandal']
[u'german', u'publish', u'daili', u'telegraph']
[u'govt', u'tidi', u'school', u'clean', u'contract']
[u'govt', u'urg', u'boost', u'lobster', u'protect']
[u'grand', u'arme', u'spoil', u'lonhro', u'parti']
[u'guard', u'kill', u'baghdad', u'mortar', u'attack']
[u'hand', u'hold', u'coupl', u'deem', u'raunchi']
[u'case', u'put', u'porn', u'industri', u'hold']
[u'hope', u'dog', u'rude', u'cooki']
[u'indian', u'actress', u'poll', u'campaign', u'kill', u'crash']
[u'iraq', u'clash', u'leav', u'dead']
[u'iraq', u'world', u'hop', u'danger', u'stang', u'go', u'home']
[u'iraq', u'spark', u'east']
[u'italian', u'minist', u'defend', u'handl', u'hostag', u'death']
[u'kerr', u'lead', u'vega']
[u'kookaburra', u'crush', u'malaysia']
[u'kuwaiti', u'arrest', u'tri', u'hijack', u'qatar']
[u'labor', u'predict', u'intellig', u'revel']
[u'elv', u'fire', u'santa']
[u'charg', u'attempt', u'murder', u'girlfriend']
[u'die', u'polic', u'pursuit']
[u'court', u'mother', u'slay']
[u'maykb', u'diva', u'complet', u'doubl']
[u'mbeki', u'celebr', u'african', u'poll']
[u'mediat', u'halt', u'najaf', u'sadr', u'spokesman']
[u'miami', u'host', u'video', u'award']
[u'miller', u'lash', u'red', u'ballymor', u'fiasco']
[u'minist', u'upbeat', u'correct', u'review', u'back']
[u'time', u'power', u'submiss']
[u'nauru', u'face', u'financi', u'debt']
[u'navi', u'crew', u'join', u'freedom', u'entri', u'ceremoni']
[u'nomine', u'choos', u'lucrat', u'german', u'film', u'prize']
[u'environ', u'job']
[u'arrest', u'israel']
[u'opposit', u'parti', u'reopen', u'burma']
[u'palestinian', u'milit', u'kill', u'explos']
[u'palestinian', u'campaign', u'prison', u'releas']
[u'peac', u'road', u'say']
[u'player', u'zimbabw', u'union']
[u'anti', u'corrupt', u'campaign', u'lose', u'cancer', u'battl']
[u'polic', u'chase', u'end', u'arrest']
[u'polic', u'miss', u'woman']
[u'polic', u'investig', u'suspici', u'death']
[u'polic', u'probe', u'shoot']
[u'polic', u'question', u'cabooltur', u'shoot']
[u'protest', u'street', u'burma']
[u'quak', u'indonesia', u'bali', u'bengkulu', u'island']
[u'radcliff', u'olymp', u'track']
[u'rebel', u'shiit', u'cleric', u'wont', u'disband', u'armi']
[u'rossi', u'claim', u'provision', u'pole', u'phakisa']
[u'safin', u'beat', u'robredo', u'reach', u'estoril', u'semi']
[u'saint', u'unbeaten', u'cat', u'break']
[u'saudi', u'secur', u'forc', u'defus', u'bomb']
[u'scientist', u'head', u'japan', u'accept', u'scienc', u'prize']
[u'second', u'home', u'raid', u'kidnap', u'probe']
[u'shark', u'roll', u'raider']
[u'skipper', u'savag', u'shoaib', u'test', u'loss']
[u'solberg', u'increas', u'lead', u'zealand', u'ralli']
[u'solberg', u'take', u'grip', u'ralli']
[u'spain', u'arrest', u'bomb', u'suspect']
[u'helen', u'launch', u'inquiri', u'alleg', u'bet']
[u'storm', u'rout', u'rabbitoh']
[u'studi', u'air', u'perth', u'pollut', u'woe']
[u'tenant', u'face', u'loom', u'rent', u'rise']
[u'texa', u'judg', u'pooh', u'pooh', u'pest', u'owner']
[u'hospitalis', u'smash']
[u'tiger', u'cat', u'showdown']
[u'timefram', u'loom', u'plastic', u'phase']
[u'tourism', u'council', u'await', u'hong', u'kong']
[u'highway', u'crash']
[u'japanes', u'hostag', u'releas', u'iraq']
[u'union', u'fear', u'atsic', u'loss']
[u'student', u'outrag', u'rise']
[u'iraqi', u'cleric', u'talk', u'ceas']
[u'stress', u'import', u'aust', u'troop', u'iraq']
[u'venus', u'charleston', u'semi', u'final']
[u'waratah', u'drought']
[u'waratah', u'win', u'drought']
[u'whitak', u'clear', u'play', u'waratah']
[u'windi', u'boost', u'lawson', u'clear', u'play']
[u'woman', u'hospitalis', u'shoot', u'incid']
[u'aborigin', u'committe', u'fight', u'retain', u'servic']
[u'afghan', u'station', u'ban', u'femal', u'singer']
[u'strike', u'kill', u'hama', u'leader']
[u'road', u'baghdad', u'close']
[u'promis', u'higher', u'educ', u'roll']
[u'amaz', u'rossi', u'grab', u'pole', u'south', u'african']
[u'asylum', u'seeker', u'drown', u'canari', u'island']
[u'bash', u'put', u'prison', u'guard', u'hospit']
[u'birdlif', u'flock', u'venic', u'lagoon']
[u'bodi', u'diamond', u'miner', u'amazon']
[u'bosnian', u'serb', u'polic', u'launch', u'push', u'crime']
[u'buckley', u'pie', u'disarray', u'loss', u'docker']
[u'burn', u'leav', u'smoki', u'haze']
[u'caravan', u'group', u'upset', u'park', u'claim']
[u'carter', u'snatch', u'victori', u'crusad']
[u'cattl', u'amok', u'highway', u'smash']
[u'chelsea', u'footbal', u'club', u'owner', u'name', u'britain', u'richest']
[u'chelsea', u'tycoon', u'abramovich', u'name', u'britain', u'richest']
[u'chick', u'add', u'eagl', u'casualti', u'list']
[u'cleric', u'backer', u'predict', u'najaf', u'attack']
[u'collin', u'want', u'remot', u'educ', u'guarante']
[u'confer', u'discuss', u'rare', u'diseas']
[u'defenc', u'dept', u'accus', u'inquiri', u'interfer']
[u'defenc', u'dept', u'inquiri', u'email']
[u'democrat', u'choos', u'lee', u'replac', u'senat', u'ticket']
[u'despotovski', u'name', u'glori']
[u'dockland', u'return', u'melbourn', u'citi', u'council']
[u'dog', u'break', u'hawk']
[u'dog', u'nose']
[u'downer', u'welcom', u'bashir', u'probe']
[u'dragon', u'blister', u'attack', u'burn', u'panther']
[u'dutch', u'doctor', u'admit', u'patient', u'survey']
[u'eel', u'escap', u'eagl', u'clutch']
[u'welcom', u'isra', u'withdraw', u'plan']
[u'mourn', u'senna', u'death', u'race', u'spirit']
[u'famili', u'plead', u'help', u'miss']
[u'ferrero', u'crash', u'valencia']
[u'gasparov', u'win', u'slovakia', u'presidenti', u'poll']
[u'georgia', u'polli', u'face', u'drug', u'test']
[u'gonzalez', u'lead', u'sevill', u'ballestero', u'fade']
[u'good', u'lead', u'sydney', u'victori', u'roo']
[u'govt', u'reject', u'haqu', u'famili', u'polit', u'scapegoat']
[u'hama', u'leader', u'kill', u'blow', u'east', u'peac', u'downer']
[u'hama', u'promis', u'reveng', u'follow', u'assassin']
[u'hama', u'vow', u'reveng', u'leader', u'assassin']
[u'heavyweight', u'result', u'leav', u'king', u'hold', u'card']
[u'highway', u'crash', u'leav', u'dead']
[u'home', u'buyer', u'petrov', u'hous']
[u'hous', u'cost', u'toll', u'pet']
[u'hunt', u'continu', u'driver', u'policeman']
[u'indian', u'team', u'return', u'riotous', u'delhi', u'welcom']
[u'iraqi', u'govern', u'council', u'critic', u'troop']
[u'iraqi', u'govt', u'necessari', u'christma', u'troop', u'deadlin']
[u'iraq', u'tens', u'amid', u'najaf', u'fallujah', u'stand', u'off']
[u'jackson', u'head', u'africa']
[u'japan', u'welcom', u'iraq', u'kidnap', u'victim']
[u'journeyman', u'purdi', u'build', u'shoot', u'lead', u'hilton']
[u'kaka', u'keep', u'milan', u'cours', u'titl']
[u'kerr', u'triumph', u'marathon', u'lpga', u'play']
[u'kerri', u'call', u'nato', u'coalit', u'role']
[u'kookaburra', u'laugh', u'nation', u'triumph']
[u'lockyer', u'eighth', u'jone', u'kiwi']
[u'lose', u'valentino', u'film', u'unearth']
[u'die', u'hunter', u'hous', u'blaze']
[u'drown', u'rough', u'surf']
[u'medico', u'sway', u'drug', u'freebi', u'studi', u'find']
[u'melbourn', u'gear', u'logi']
[u'charg', u'plumpton', u'murder']
[u'miss', u'father', u'daughter', u'safe']
[u'window', u'cosmos', u'open', u'chile']
[u'love', u'lose', u'hewitt', u'win', u'clijster', u'exhibit']
[u'opposit', u'want', u'mersey', u'hospit', u'report']
[u'oversea', u'effort', u'like', u'boost', u'incat', u'job']
[u'polic', u'hunt', u'continu', u'ipswich', u'shooter']
[u'polic', u'search', u'miss', u'father', u'daughter']
[u'polic', u'seek', u'child', u'attack']
[u'polic', u'hunt', u'second', u'abduct']
[u'polic', u'look', u'miss', u'woman']
[u'predat', u'circl', u'ail', u'mark', u'spencer', u'report']
[u'privat', u'commando', u'shoot', u'iraq', u'fire']
[u'properti', u'develop', u'hurt', u'freak', u'boat', u'accid']
[u'govt', u'toughen', u'anti', u'terror', u'law']
[u'ranger', u'celtic', u'celebr', u'hold']
[u'real', u'track', u'madrid', u'derbi']
[u'rescu', u'effort', u'underway', u'strand', u'ship']
[u'roddick', u'haa', u'reach', u'houston', u'clay', u'court', u'final']
[u'roddick', u'set', u'sight', u'take', u'ferrero', u'crown']
[u'rooster', u'conquer', u'knight']
[u'rove', u'take', u'gold']
[u'rugbi', u'boss', u'safeti', u'player']
[u'safin', u'face', u'chela', u'lisbon', u'final']
[u'sciacca', u'secur', u'bonner', u'preselect']
[u'sharon', u'stand', u'assassin', u'polici']
[u'solberg', u'win', u'ralli', u'zealand']
[u'lankan', u'unhappi', u'test', u'refere', u'perform']
[u'stone', u'rock', u'unit', u'chelsea', u'stutter']
[u'student', u'famili', u'reject', u'terror', u'charg']
[u'studi', u'find', u'senior', u'have']
[u'swan', u'look', u'home', u'grind', u'advantag', u'canberra']
[u'teen', u'driver', u'charg', u'fatal', u'crash']
[u'thousand', u'tribut', u'rantissi']
[u'polic', u'kosovo', u'shootout']
[u'polic', u'kill', u'kosovo', u'battl']
[u'tucker', u'air', u'gungahlin', u'drive', u'cost', u'concern']
[u'rescu', u'reef', u'accid']
[u'envoy', u'predict', u'releas', u'burma']
[u'unsuspect', u'rip', u'lifesav', u'busi']
[u'deni', u'back', u'rantissi', u'assassin']
[u'grave', u'concern', u'east', u'stabil']
[u'sailor', u'fli', u'perth', u'hospit']
[u'soldier', u'die', u'injur', u'iraq', u'bomb']
[u'venus', u'face', u'martinez', u'final', u'injuri']
[u'warm', u'climat', u'disrupt', u'alaskan', u'nativ', u'live']
[u'warn', u'put', u'durham', u'spin']
[u'youth', u'drink', u'rat', u'rise', u'victoria']
[u'zapatero', u'swear', u'spanish']
[u'rebel', u'hand', u'week', u'deadlin']
[u'boost', u'townsvill', u'health']
[u'investig', u'pirat', u'porn', u'broadcast']
[u'telstra', u'jone', u'sponsorship', u'stori']
[u'accus', u'murder', u'risk', u'self', u'harm', u'court', u'tell']
[u'promis', u'casual', u'perman', u'employ']
[u'alvin', u'purpl', u'creator', u'die']
[u'anger', u'govt', u'refus', u'fund', u'infrastructur']
[u'anti', u'log', u'protest', u'arrest']
[u'anti', u'terror', u'raid', u'hold', u'manchest']
[u'argentin', u'gonzalez', u'triumph', u'sevill']
[u'aussi', u'hann', u'water', u'snooker', u'blue']
[u'aussi', u'hope', u'play', u'strength', u'zimbabw']
[u'australian', u'team', u'help', u'break', u'nauru']
[u'bacteria', u'scare', u'forc', u'neonat', u'unit', u'closur']
[u'beatti', u'claim', u'activist', u'unfair']
[u'bennett', u'underestim', u'kiwi']
[u'black', u'player', u'join', u'zimbabw', u'rebel', u'report']
[u'blair', u'pois', u'polici', u'turn']
[u'bounti', u'descend', u'face', u'trial', u'charg']
[u'bowler', u'reject', u'infli', u'practic']
[u'british', u'leagu', u'chief', u'seek', u'public', u'help', u'bet']
[u'brother', u'face', u'court', u'plumpton', u'murder']
[u'bumper', u'number', u'poni', u'club', u'camp']
[u'bush', u'launch', u'peacekeep', u'initi', u'report']
[u'intellig', u'servic', u'overhaul']
[u'cambodia', u'drop', u'child', u'charg', u'australian']
[u'canegrow', u'chairman', u'doubt', u'ethanol', u'potenti']
[u'channel', u'criticis', u'alcohol']
[u'chela', u'churn', u'past', u'safin', u'estoril', u'titl']
[u'cheney', u'mental', u'derang', u'north', u'korea']
[u'cink', u'complet', u'record', u'comeback']
[u'climat', u'forecast', u'worri', u'return', u'nino']
[u'coal', u'town', u'websit', u'assist', u'communiti']
[u'collin', u'question', u'releas', u'critic', u'report']
[u'communiti', u'show', u'support', u'famili', u'centr']
[u'cosgrov', u'defend', u'offer', u'wit', u'support']
[u'costello', u'attend', u'meet']
[u'council', u'consid', u'powerlin']
[u'court', u'tell', u'alleg', u'traffick', u'flee']
[u'crime', u'spree', u'weekend']
[u'democrat', u'school', u'manag', u'review']
[u'dept', u'reject', u'bodyguard', u'alleg']
[u'develop', u'propos', u'go', u'council']
[u'director', u'face', u'uncertain', u'futur']
[u'driver', u'urg', u'appli', u'school', u'speed', u'limit']
[u'drought', u'put', u'anglican', u'parish', u'futur', u'line']
[u'dunstal', u'join', u'hawk', u'board']
[u'econom', u'statement', u'target', u'port', u'develop']
[u'environ', u'loop', u'power', u'upgrad']
[u'escap']
[u'timor', u'boundari', u'talk', u'resum']
[u'timor', u'continu', u'fair', u'boundari', u'demand']
[u'timor', u'offer', u'australia', u'deal', u'seab', u'talk']
[u'expert', u'warn', u'dengu', u'risk']
[u'policeman', u'plea', u'guilti', u'drug', u'charg']
[u'famili', u'place', u'miss', u'person', u'daniel']
[u'farmer', u'remind', u'crime', u'prevent']
[u'fear', u'boundari', u'talk', u'drag', u'year']
[u'fear', u'tender', u'disadvantag', u'indigen']
[u'govt', u'urg', u'mersey', u'hospit', u'problem']
[u'fiji', u'found', u'pass', u'away']
[u'financ', u'expert', u'help', u'nauru', u'crisi']
[u'swim', u'safeti', u'boat', u'sink']
[u'french', u'kick', u'surpris', u'semi', u'final']
[u'public', u'hear', u'begin', u'today']
[u'fund', u'worri', u'nation', u'park', u'worker']
[u'fund', u'invit', u'communiti', u'group', u'wake']
[u'girl', u'bash', u'church', u'yard']
[u'gold', u'week', u'go', u'nation']
[u'govt', u'hope', u'burrup', u'ammonia', u'project', u'proceed']
[u'greenpeac', u'protest', u'target', u'cargo', u'ship']
[u'grower', u'urg', u'plant', u'peanut', u'varieti']
[u'haa', u'stun', u'roddick']
[u'hama', u'vow', u'volcano', u'reveng']
[u'histor', u'queensland', u'sale']
[u'hope', u'educ', u'power', u'station', u'decis']
[u'hope', u'futur', u'eden', u'town', u'centr']
[u'hospit', u'group', u'suggest', u'pool', u'age', u'care', u'fund']
[u'hundr', u'arrest', u'nepal', u'protest']
[u'warn', u'world', u'rate', u'hike']
[u'indigen', u'author', u'address', u'homeless']
[u'indigen', u'hous', u'case', u'continu']
[u'ingram', u'back', u'moratorium']
[u'inquest', u'hear', u'bendora', u'blaze', u'grossli', u'underestim']
[u'inquest', u'east', u'coast', u'tourist', u'death', u'resum']
[u'inquiri', u'hear', u'argument']
[u'internet', u'law', u'concern', u'euthanasia', u'advoc']
[u'inzamam', u'stay', u'pakistan', u'captain']
[u'jacket', u'hold', u'year', u'murder', u'clue']
[u'jone', u'turn', u'test', u'spot']
[u'kid', u'radio', u'offer', u'avenu', u'towamba', u'student']
[u'jong', u'head', u'china', u'talk']
[u'kiwi', u'forc', u'chang']
[u'kiwi', u'danger', u'bennett']
[u'lagoon', u'light', u'stay']
[u'lara', u'inning', u'cost', u'windi', u'pont']
[u'leagu', u'leader', u'canterburi', u'test', u'doghous']
[u'livermor', u'win', u'capricornia', u'preselect']
[u'long', u'disappoint', u'east', u'challeng']
[u'lucki', u'escap', u'occup', u'airborn']
[u'face', u'court', u'motorbik', u'death']
[u'manufactur', u'bendigo']
[u'maradona', u'fight', u'life', u'heart', u'failur']
[u'maradona', u'intens', u'care', u'amid', u'overdos', u'report']
[u'maradona', u'wayward', u'genius']
[u'marina', u'enter', u'final', u'plan', u'stage']
[u'matthew', u'back', u'frawley']
[u'mcgradi', u'hop', u'export', u'benefit', u'oversea', u'trip']
[u'mcinerney', u'elect', u'sydney', u'council', u'deputi', u'mayor']
[u'medic', u'student', u'interview']
[u'mooney', u'urg', u'govt', u'help', u'drunken']
[u'morcomb', u'famili', u'featur']
[u'mugab', u'vow', u'rejoin', u'cwealth']
[u'murray', u'like', u'cowboy', u'prospect']
[u'director', u'threaten', u'resign']
[u'share', u'price', u'continu', u'fall']
[u'nation', u'worri', u'pipe', u'fund']
[u'nation', u'trust', u'hop', u'restructur', u'secur']
[u'nat', u'want', u'answer', u'scarc', u'male', u'teacher', u'poser']
[u'research', u'lead', u'better', u'bladder', u'cancer']
[u'news', u'corp', u'help', u'market', u'higher']
[u'nickel', u'find', u'lifelin', u'kambalda']
[u'nineteen', u'car']
[u'korean', u'leader', u'make', u'surpris', u'chines', u'visit']
[u'regret', u'hunt', u'kiwi', u'test', u'knock']
[u'timelin', u'troop', u'return', u'cosgrov']
[u'buy', u'local', u'design', u'heart', u'monitor']
[u'review', u'passport']
[u'open', u'beachley', u'fiji']
[u'opposit', u'highlight', u'year', u'wait', u'age']
[u'page', u'seek', u'agenda', u'councillor']
[u'pakistan', u'cricket', u'chief', u'lash', u'player', u'india']
[u'palestinian', u'kill', u'barrier', u'protest', u'hospit']
[u'park', u'face', u'major', u'tourism', u'increas']
[u'petrov', u'seal', u'scottish', u'premier', u'leagu', u'titl']
[u'phillip', u'win', u'herbert', u'preselect']
[u'pipelin', u'receivership', u'wont', u'harm', u'suppli', u'govt']
[u'commit', u'region', u'victorian', u'compani']
[u'polic', u'commission', u'pressur', u'minist', u'sack']
[u'polic', u'seek', u'wit', u'sexual', u'assault']
[u'polic', u'seiz', u'drug', u'haul']
[u'popstar', u'manag', u'seek', u'damag']
[u'powel', u'sidelin', u'plan', u'book', u'claim']
[u'pratt', u'pull']
[u'wonder', u'nation', u'park', u'cut']
[u'public', u'meet', u'discuss', u'council', u'boundari', u'chang']
[u'rail', u'link', u'updat', u'forc', u'coach', u'altern']
[u'read', u'heroic', u'help', u'england', u'victori']
[u'rebellin', u'edg', u'boogerd', u'claim', u'amstel', u'gold']
[u'regen', u'festiv', u'go', u'annual']
[u'report', u'show', u'support', u'altern', u'sentenc']
[u'reveng', u'fantasi', u'fuel', u'offic']
[u'robertson', u'face', u'strike', u'charg']
[u'robson', u'hero', u'magpi', u'fli', u'villa']
[u'roddick', u'withdraw', u'mont', u'carlo', u'master']
[u'rossi', u'hail', u'mileston', u'stoner']
[u'welcom', u'anzac', u'memori', u'restor']
[u'russia', u'launch', u'space', u'station', u'astronaut']
[u'back', u'featur', u'film']
[u'sadr', u'halt', u'attack', u'spanish', u'troop']
[u'saint', u'real', u'deal', u'matthew']
[u'saint', u'real', u'deal', u'say', u'matthew']
[u'saint', u'surpris', u'leader', u'round']
[u'search', u'woman', u'continu']
[u'seaworld', u'advis', u'sick', u'polar', u'bear']
[u'abus', u'fine', u'confus', u'teacher']
[u'industri', u'regul', u'criticis']
[u'snub', u'kimmorley', u'chanc', u'mccarthi']
[u'spain', u'give', u'day', u'notic', u'iraq']
[u'spain', u'pull', u'troop', u'iraq', u'day']
[u'speed', u'polic', u'face', u'sack']
[u'srebrenica', u'massacr', u'convict', u'reduc']
[u'sydney', u'airport', u'blackout', u'temporarili', u'fix']
[u'sydney', u'airport', u'main', u'runway', u'black']
[u'talk', u'discuss', u'naurus', u'futur']
[u'tare', u'council', u'gain', u'extra', u'fund', u'develop']
[u'teacher', u'order', u'report', u'suspect', u'abus']
[u'tenant', u'black', u'list', u'breach', u'privaci', u'law']
[u'arrest', u'anti', u'terror', u'raid']
[u'test', u'help', u'half', u'sight', u'suffer']
[u'offic', u'celebr', u'bafta', u'trick']
[u'thousand', u'pseudoephedrin', u'tablet', u'seiz']
[u'time', u'publish', u'influenti', u'peopl', u'list']
[u'totti', u'missil', u'keep', u'roma', u'titl', u'hop', u'aliv']
[u'trial', u'alleg', u'drug', u'maker']
[u'troop', u'eighth', u'london', u'marathon']
[u'turnov', u'council', u'execut', u'prompt', u'strategi']
[u'tweed', u'host', u'shadow', u'cabinet']
[u'unsaf', u'condit', u'gold', u'coast', u'beach']
[u'call', u'iraq', u'syria', u'border', u'plug']
[u'soldier', u'kill', u'border', u'clash']
[u'sprint', u'champ', u'renew', u'rivalri']
[u'reduc', u'forc', u'outsid', u'najaf']
[u'student', u'fee']
[u'valencia', u'gasp', u'draw']
[u'vanston', u'defend', u'indigen', u'legal', u'tender']
[u'venus', u'captur', u'crown', u'month']
[u'violenc', u'continu', u'gaza', u'settlement']
[u'virus', u'floor', u'henin', u'hardenn']
[u'websit', u'lead', u'cheap', u'petrol']
[u'wiki', u'miss', u'anzac', u'test']
[u'wilkinson', u'struggl', u'australia', u'tour']
[u'wine', u'industri', u'call']
[u'woman', u'charg', u'attempt', u'murder']
[u'aborigin', u'group', u'point', u'bone', u'howard']
[u'children', u'learn', u'safeti']
[u'launch', u'internet', u'research', u'program']
[u'probe', u'crawford', u'tribun']
[u'agforc', u'push', u'landclear', u'chang']
[u'agreement', u'reach', u'stanwel', u'power', u'station']
[u'alcan', u'hop', u'studi', u'save', u'bauxit', u'leas']
[u'anderson', u'deni', u'jone', u'rift']
[u'extens', u'hinder', u'construct', u'ethanol']
[u'appeal', u'lodg', u'pork', u'import']
[u'arafat', u'reject', u'gaza', u'pullout', u'plan']
[u'arthur', u'join', u'hewitt', u'mont', u'carlo']
[u'asio', u'report', u'spark', u'call', u'intellig']
[u'australia', u'fund', u'philippin', u'counter', u'terror', u'project']
[u'australian', u'peacekeep', u'abduct', u'solomon']
[u'australian', u'take', u'mcdonald', u'rein']
[u'australia', u'vow', u'stand', u'nauru']
[u'author', u'probe', u'electr', u'injuri']
[u'bash', u'girl', u'remain', u'critic']
[u'beachley', u'scrap', u'fiji']
[u'beckham', u'lover', u'net', u'million', u'claim']
[u'beef', u'council', u'expect', u'continu']
[u'bennett', u'prais', u'bronco', u'hunt']
[u'blair', u'confirm', u'referendum']
[u'blue', u'mountain', u'backdrop', u'action', u'film']
[u'brogden', u'criticis', u'spend', u'displac', u'public']
[u'bush', u'name', u'negropont', u'iraq', u'ambassador']
[u'busi', u'analysi', u'show', u'solid', u'economi']
[u'busi', u'group', u'applaud', u'econom', u'statement']
[u'scientist', u'entrepreneur']
[u'call', u'construct', u'industri', u'protect']
[u'canberra', u'back', u'wiki', u'contest', u'high', u'tackl']
[u'canberra', u'hospit', u'studi', u'cut', u'infect']
[u'thief', u'give', u'year', u'abandon', u'child']
[u'castro', u'blast', u'guantanamo', u'concentr', u'camp']
[u'chief', u'minist', u'testifi', u'bushfir', u'inquest']
[u'chief', u'minist', u'stand', u'bushfir']
[u'china', u'prepar', u'tiananmen', u'anniversari']
[u'call', u'gold', u'finger', u'print', u'catch', u'thiev']
[u'collin', u'question', u'intellig', u'failur']
[u'commonwealth', u'reject', u'town', u'updat', u'propos']
[u'concern', u'outbreak', u'rubber', u'vine']
[u'confer', u'discuss', u'coastlin', u'manag']
[u'confus', u'school', u'speed', u'zone', u'spark', u'complaint']
[u'confus', u'possibl', u'cdep', u'demis']
[u'court', u'tell', u'polic', u'link', u'gangland', u'shoot']
[u'cultur', u'precinct', u'decid']
[u'denmark', u'declassifi', u'iraq', u'intellig', u'report']
[u'diamond', u'athen', u'game']
[u'jacket', u'help', u'cafasso', u'case']
[u'dont', u'terror', u'bush', u'tell', u'spanish']
[u'draft', u'report', u'jone', u'breach', u'cod']
[u'drinker', u'bowl', u'club', u'outlet']
[u'ecologist', u'call', u'kangaroo', u'koala', u'cull']
[u'ecuador', u'vote', u'guinea']
[u'educ', u'confer', u'put', u'reform']
[u'timor', u'say', u'boundari', u'matter', u'life', u'death']
[u'euthanasia', u'group', u'anger', u'communic']
[u'bardot', u'member', u'defend', u'sack', u'manag']
[u'expert', u'espous', u'benefit', u'communiti', u'pool']
[u'falconio', u'court', u'room', u'fit', u'media']
[u'feder', u'committe', u'take', u'feral', u'bait']
[u'fin', u'impos', u'failur', u'report', u'smallpox']
[u'educ', u'prioriti', u'young', u'children']
[u'deputi', u'chairmen', u'grant', u'bail']
[u'servic', u'resum', u'mersey', u'hospit']
[u'gallop', u'criticis', u'irrespons', u'famili']
[u'gardin', u'season', u'surgeri', u'loom']
[u'genet', u'erad', u'cane', u'toad']
[u'gibbon', u'claim', u'ignor', u'bendigo']
[u'girl', u'confront', u'accus', u'rap', u'child']
[u'govt', u'primari', u'vote', u'prefer', u'newspol']
[u'govt', u'take', u'construct', u'compani', u'court']
[u'govt', u'pressur', u'reveal', u'sugar', u'reform']
[u'greenhous', u'effect', u'caus', u'major', u'flood', u'tide']
[u'green', u'campaign', u'rail', u'servic']
[u'shop', u'open', u'gundi', u'decad']
[u'hampshir', u'get', u'warn', u'win', u'start']
[u'help', u'seek', u'youth', u'homless', u'program']
[u'hill', u'play', u'spain', u'troop', u'decis']
[u'hockeyroo', u'continu', u'athen', u'build', u'china']
[u'home', u'base', u'essenti', u'battl', u'schizophrenia', u'studi']
[u'homeless', u'charg', u'sexual', u'assault']
[u'hondura', u'withdraw', u'iraq', u'troop']
[u'howard', u'play', u'intellig', u'critic']
[u'independ', u'councillor', u'elect', u'council', u'deputi']
[u'india', u'begin', u'vote', u'marathon']
[u'india', u'readi', u'massiv', u'elect']
[u'indonesian', u'prosecutor', u'want', u'year', u'aust', u'child']
[u'industri', u'free', u'trade', u'agreement']
[u'inept', u'find', u'affect', u'plea', u'bargain', u'lawyer']
[u'john', u'lennon', u'sketch', u'sale']
[u'jumbo', u'make', u'emerg', u'land', u'adelaid']
[u'kemp', u'foreshadow', u'dump', u'intervent']
[u'kemp', u'prais', u'marina', u'pollut', u'initi']
[u'kevin', u'spacey', u'con', u'london']
[u'kidnap', u'threat', u'australian', u'troop']
[u'latham', u'vow', u'republ', u'referendum']
[u'lewi', u'kangaroo']
[u'lockyer', u'happi', u'number']
[u'main', u'road', u'singapor', u'collaps']
[u'charg', u'drug', u'seizur']
[u'mandarin', u'harvest', u'begin']
[u'testifi', u'attempt', u'murder', u'case']
[u'play', u'suicid', u'attack', u'claim']
[u'maradona', u'condit', u'improv', u'say', u'doctor']
[u'marathon', u'chariti', u'walker', u'rest', u'tennant', u'creek']
[u'master', u'champion', u'mickelson', u'challeng']
[u'mayn', u'maintain', u'wholesal', u'busi']
[u'mcdonald', u'die']
[u'migrat', u'law', u'split', u'iraqi', u'famili']
[u'minist', u'call', u'localis', u'workforc']
[u'mother', u'hop', u'program', u'help', u'morcomb', u'hunt']
[u'mother', u'vow', u'continu', u'judici', u'fight', u'plea']
[u'murali', u'report', u'dump', u'zimbabw', u'lanka']
[u'murali', u'allow', u'bowl', u'doosra', u'report']
[u'continu', u'slide', u'market', u'inch', u'higher']
[u'nab', u'boardroom', u'battl', u'heat']
[u'nasa', u'reject', u'russian', u'propos']
[u'nat', u'push', u'polic', u'station', u'upgrad']
[u'equip', u'help', u'marin', u'scientist']
[u'boost', u'paraburdoo']
[u'terror', u'group', u'outlaw', u'ruddock']
[u'hope', u'mean', u'pressur', u'say', u'thompson']
[u'opposit', u'renew', u'hccc', u'review', u'call']
[u'oppn', u'claim', u'support', u'petrol', u'sniff', u'law']
[u'nuclear', u'whistleblow', u'order', u'stay', u'israel']
[u'nurs', u'threaten', u'work', u'ban', u'work']
[u'train', u'collis', u'leav', u'injur']
[u'ogradi', u'call', u'unit', u'scandal']
[u'olymp', u'gold', u'win', u'cyclist', u'aitken', u'retir']
[u'opposit', u'worri', u'troop', u'safeti', u'iraq']
[u'order', u'allow', u'clear', u'land', u'reveget']
[u'packer', u'refus', u'apprentic', u'role']
[u'peacekeep', u'kidnap', u'rap', u'solomon']
[u'play', u'victori', u'see', u'cink', u'stock', u'rise']
[u'visit', u'colac']
[u'send', u'condol', u'fiji']
[u'polic', u'info', u'bulldog', u'rooster', u'brawler']
[u'polic', u'probe', u'solomon', u'abduct']
[u'polic', u'seek', u'bulldog', u'match', u'violenc', u'leader']
[u'port', u'arthur', u'convict', u'site', u'refer']
[u'powerlin', u'plan', u'caus', u'controversi']
[u'premier', u'visit', u'troubl', u'anangu', u'pitjanjatjara']
[u'prodi', u'back', u'spanish', u'decis', u'quit', u'iraq']
[u'consid', u'job', u'action']
[u'parliament', u'play', u'music', u'miss', u'teen']
[u'pass', u'terror']
[u'rainbow', u'warrior', u'dock', u'newcastl']
[u'ranger', u'miner', u'withhold', u'contamin', u'data']
[u'ranieri', u'warn', u'chelsea', u'respect', u'monaco']
[u'report', u'find', u'steril']
[u'resid', u'need', u'convinc', u'dispos', u'scheme']
[u'rise', u'star', u'name', u'boomer', u'squad']
[u'ruddock', u'hold', u'council', u'respons', u'airport']
[u'ruthless', u'coria', u'trampl', u'enqvist']
[u'sadr', u'urg', u'follow', u'stop', u'attack', u'spanish']
[u'schole', u'ban', u'game']
[u'scientist', u'claim', u'dementia', u'discoveri']
[u'devic', u'benefit', u'diseas', u'research']
[u'senat', u'committe', u'hear', u'evid', u'water']
[u'shell', u'financi', u'manag', u'quit']
[u'sixer', u'address', u'intern', u'tension']
[u'spanish', u'court', u'charg', u'qaeda', u'link']
[u'lankan', u'boss', u'confid', u'murali', u'doosra', u'report']
[u'steve', u'kefu', u'stay']
[u'steven', u'robertson', u'suspend', u'bell', u'clear']
[u'steal', u'fund', u'hand', u'indonesia']
[u'stoner', u'back', u'western', u'tugun', u'bypass', u'rout']
[u'studi', u'focus', u'overweight']
[u'studi', u'show', u'million', u'nativ', u'anim', u'die']
[u'sudanes', u'flee', u'home', u'fear', u'violent', u'attack']
[u'swedish', u'polic', u'arrest', u'terror', u'suspect']
[u'sydney', u'charg', u'murder']
[u'survey', u'commerci', u'boat', u'communic']
[u'tension', u'eas', u'iraq']
[u'test', u'famili', u'affair', u'kangaroo', u'pair']
[u'thailand', u'set', u'condit', u'withdraw', u'iraq']
[u'timor', u'negoti', u'win', u'environ', u'award']
[u'tooth', u'latest', u'tech', u'craze']
[u'tough', u'task', u'get', u'tougher']
[u'treasur', u'noncommit', u'tax', u'ahead', u'budget']
[u'twin', u'convinc', u'aitken', u'retir']
[u'charg', u'adelaid', u'woman', u'kidnap']
[u'polic', u'foil', u'trafford', u'suicid', u'bomb', u'plot']
[u'call', u'emerg', u'meet', u'rantissi', u'kill']
[u'union', u'say', u'port', u'secur', u'scratch']
[u'unsw', u'open', u'singapor', u'campus']
[u'court', u'hear', u'hick', u'habib', u'case']
[u'investor', u'wari', u'ahead', u'proft', u'report']
[u'report', u'find', u'asio', u'ignor', u'bali', u'threat']
[u'target', u'weapon', u'supplier', u'fallujah', u'deal']
[u'eas', u'fallujah', u'blockad']
[u'lift', u'libyan', u'econom', u'sanction']
[u'vail', u'head', u'china', u'trade', u'talk']
[u'vanston', u'review', u'imparja', u'fund', u'booz']
[u'ambul', u'servic', u'defend', u'respons', u'time']
[u'govt', u'play', u'ambul', u'servic', u'figur']
[u'urg', u'citrus', u'grower']
[u'nurs', u'strike', u'ahead']
[u'victorian', u'health', u'union', u'consid', u'strike', u'action']
[u'violenc', u'mar', u'indian', u'elect']
[u'warrior', u'releas', u'lauitiiti']
[u'water', u'suppli', u'continu', u'fall']
[u'woman', u'take', u'legal', u'action', u'scissor']
[u'woolworth', u'announc', u'quarter', u'sale', u'increas']
[u'aborigin', u'group', u'invit', u'mugab']
[u'abrolho', u'island', u'fisher', u'meet', u'leas']
[u'legisl', u'fake']
[u'chief', u'reject', u'asio', u'split', u'claim']
[u'accid', u'kill', u'germani']
[u'nauru', u'continu', u'despit', u'countri', u'woe']
[u'alga', u'outbreak', u'prompt', u'health', u'warn']
[u'say', u'better', u'fund', u'eas', u'pressur']
[u'want', u'indigen', u'health', u'elect', u'agenda']
[u'warn', u'state', u'mental', u'health', u'crisi']
[u'american', u'tenni', u'reshap', u'open']
[u'arrest', u'warrant', u'issu', u'argentin']
[u'aussi', u'blain', u'fail', u'lift', u'barbi']
[u'aust', u'holiday', u'offici', u'link', u'iraq']
[u'australia', u'assist', u'fiji', u'flood', u'clean']
[u'author', u'warn', u'public', u'mosquito', u'diseas']
[u'bash', u'put', u'pair', u'hospit']
[u'bendigo', u'look', u'forward', u'visit']
[u'blast', u'kill', u'saudi', u'arabia']
[u'bowman', u'make', u'norton', u'cowboy', u'skipper']
[u'brack', u'urg', u'invest', u'social', u'infrastructur']
[u'break', u'foot', u'stop', u'futur', u'tenni', u'track']
[u'brumbi', u'upbeat', u'econom', u'statement', u'respons']
[u'build', u'demolish', u'expel', u'squatter']
[u'burma', u'secretari', u'deni', u'leader', u'releas']
[u'busi', u'group', u'welcom', u'econom', u'statement']
[u'butler', u'toe', u'polit', u'line']
[u'byron', u'charg', u'drug', u'haul']
[u'cairn', u'unfaz', u'weather', u'warn']
[u'bed', u'ahead', u'season']
[u'slower', u'speed', u'retail', u'street']
[u'cameroon', u'appeal', u'point', u'deduct']
[u'crash', u'put', u'teen', u'hospit']
[u'carr', u'call', u'howard', u'fertilis']
[u'charg', u'lay', u'hangar', u'collaps']
[u'child', u'rapist', u'tell', u'hell']
[u'children', u'surviv', u'dead', u'crash']
[u'close', u'wagga', u'mayor', u'elect', u'like']
[u'communiti', u'tip', u'feel', u'cdep', u'fund', u'loss']
[u'welcom', u'liber', u'land', u'clear']
[u'convent', u'centr', u'wont', u'mean', u'higher', u'tax', u'brack']
[u'council', u'say', u'histor', u'hall', u'stay', u'open']
[u'tafe', u'sign', u'agreement']
[u'cross', u'signal', u'jail', u'mobil', u'phone', u'jam']
[u'death', u'spark', u'nation', u'park', u'danger', u'warn']
[u'defier', u'starcraft', u'featur']
[u'democrat', u'want', u'indigen', u'sit', u'recognis']
[u'deplet', u'magpi', u'hop', u'uefa']
[u'dept', u'appeal', u'sack', u'teacher', u'payout']
[u'doctor', u'seek', u'mersey', u'servic', u'injunct']
[u'dominican', u'republ', u'withdraw', u'troop', u'iraq']
[u'downer', u'surpris', u'wiranto', u'nomin']
[u'drug', u'decis', u'confus', u'pittman', u'coach', u'say']
[u'dunfermlin', u'scottish', u'final']
[u'elder', u'action', u'drug', u'land']
[u'environ', u'indigen', u'life', u'expect', u'concern']
[u'farmer', u'urg', u'subsidi', u'struggl', u'farmer']
[u'fear', u'air', u'bigger', u'border', u'busi', u'divid']
[u'feder', u'fund', u'issu', u'agenda']
[u'fertilis', u'underway', u'howard']
[u'palestinian', u'kill', u'gaza', u'strip']
[u'footbal', u'husband', u'face', u'murder', u'trial']
[u'head', u'win', u'preselect']
[u'defenc', u'site', u'rememb']
[u'general', u'stand', u'candid']
[u'wife', u'speak', u'marriag', u'break']
[u'gold', u'miner', u'show', u'finger', u'print', u'plan']
[u'govt', u'urg', u'eas', u'region', u'airfar', u'cost']
[u'govt', u'hail', u'buyback', u'success']
[u'govt', u'uncov', u'terror', u'link']
[u'gretley', u'prosecut', u'draw']
[u'group', u'monitor', u'locust', u'threat']
[u'guin', u'book', u'record', u'founder', u'die']
[u'hackett', u'want', u'thorp', u'face', u'coach', u'say']
[u'hama', u'deni', u'anarchi']
[u'hewitt', u'arthur', u'ferrero', u'mont', u'carlo']
[u'hockeyroo', u'humbl', u'china']
[u'hospit', u'chief', u'reflect', u'walkout']
[u'howard', u'hint', u'octob', u'poll']
[u'howard', u'restat', u'confid', u'secur', u'agenc']
[u'idol', u'singer', u'thank', u'condobolin']
[u'inquest', u'hear', u'policeman', u'felt', u'safe', u'chase']
[u'inquest', u'tell', u'resourc', u'contain', u'blaze']
[u'intellig', u'whistleblow', u'invit', u'appear']
[u'rate', u'jitter', u'market']
[u'talk', u'athen', u'prepar']
[u'iraq', u'leav', u'keelti', u'consid', u'futur']
[u'isra', u'nuclear', u'whistleblow', u'releas']
[u'isra', u'troop', u'kill', u'gaza', u'raid']
[u'labor', u'consid', u'smart', u'medicar', u'card']
[u'landhold', u'plan', u'bite', u'wild', u'dog']
[u'late', u'monaco', u'goal', u'stun', u'chelsea']
[u'latham', u'accus', u'steal', u'speech']
[u'latham', u'howard', u'odd', u'anzac', u'sport']
[u'latham', u'outlin', u'labor', u'cut', u'budget']
[u'lawyer', u'readi', u'live', u'export', u'protest']
[u'leagu', u'club', u'upbeat', u'financi', u'woe']
[u'legal', u'action', u'threaten', u'tree']
[u'lettuc', u'grower', u'pest', u'control', u'green', u'light']
[u'lion', u'fin', u'breach', u'player', u'rule']
[u'local', u'derbi', u'determin', u'spain', u'uefa', u'finalist']
[u'longley', u'quit', u'wildcat']
[u'luca', u'reject', u'newel', u'highway', u'comment']
[u'macgil', u'back', u'zimbabw', u'boycott']
[u'magistr', u'hear', u'road', u'rage', u'murder', u'evid']
[u'malthous', u'support', u'penalti', u'cheap', u'injuri']
[u'acquit', u'blackmail', u'sue', u'nightclub']
[u'charg', u'attempt', u'murder']
[u'cow', u'opposit', u'lightn', u'fast', u'goal']
[u'die', u'bomaderri', u'crash']
[u'front', u'court', u'arson', u'charg']
[u'surviv', u'embank', u'plung']
[u'court', u'babi', u'bash']
[u'maradona', u'long', u'hospit', u'stay']
[u'martin', u'woo', u'ship', u'compani']
[u'mayor', u'await', u'calder', u'fund', u'pledg']
[u'mental', u'health', u'nurs', u'join', u'strike']
[u'mine', u'giant', u'concern', u'plan', u'leas']
[u'mooney', u'question', u'taxi']
[u'japanes', u'tourist', u'head']
[u'mortar', u'kill', u'iraqi', u'prison', u'near', u'baghdad']
[u'mother', u'criticis', u'liquor', u'rule', u'militari', u'inquiri']
[u'mother', u'wont', u'goodby', u'singh', u'anniversari']
[u'put', u'water', u'project', u'onus', u'local', u'govt']
[u'murali', u'face', u'persist', u'doosra']
[u'murder', u'accus', u'plan', u'guilti', u'plea']
[u'nasa', u'launch', u'satellit', u'test', u'einstein', u'theori']
[u'natur', u'resourc', u'monitor', u'illeg', u'land', u'clear']
[u'netbal', u'chief', u'call', u'hero', u'recognis']
[u'nevill', u'stop', u'score', u'close']
[u'atlas', u'australia', u'ocean']
[u'marin', u'discoveri', u'excit', u'biologist']
[u'mayor', u'port', u'stephen']
[u'taskforc', u'combat', u'diseas', u'outbreak']
[u'vaccin', u'depress', u'chicken']
[u'insurg', u'kill', u'fallujah']
[u'korean', u'leader', u'secret', u'trip', u'china']
[u'lofti', u'goal', u'porto', u'say', u'coach']
[u'northern', u'council', u'elect', u'deputi', u'mayor']
[u'near', u'french', u'coloni', u'say', u'govt']
[u'object', u'erupt', u'lismor', u'brothel', u'plan']
[u'leg', u'swimmer', u'continu', u'athen', u'quest']
[u'oppn', u'question', u'mersey', u'hospit', u'contract', u'detail']
[u'optus', u'seek', u'chang']
[u'pakistan', u'build', u'collaps', u'kill', u'seven']
[u'parent', u'meningococc', u'assur']
[u'plan', u'extend', u'suppli', u'merbein']
[u'plan', u'address', u'cooma', u'radiolog', u'servic']
[u'playgroup', u'fund', u'increas']
[u'defend', u'timelin']
[u'offer', u'guarante', u'mitsubishi', u'job']
[u'prefer', u'junior', u'sport', u'anzac']
[u'polic', u'doubt', u'solomon', u'peacekeep', u'rape', u'claim']
[u'polic', u'road', u'crash', u'victim']
[u'port', u'injuri', u'woe']
[u'powel', u'attempt', u'shore', u'coalit', u'support']
[u'premier', u'mull', u'confisc', u'deterr']
[u'prodig', u'kean', u'ireland', u'squad']
[u'produc', u'littl', u'trade', u'deal']
[u'properti', u'undergo', u'drought', u'assess']
[u'prost', u'recal', u'side', u'senna']
[u'pub', u'lockout', u'decis', u'loom']
[u'govt', u'aurukun', u'bauxit', u'leas']
[u'red', u'injuri', u'curs', u'strike', u'sharp']
[u'briberi', u'probe', u'wont', u'jeopardis', u'euro']
[u'retir', u'villag', u'plan', u'track']
[u'review', u'finetun', u'koala', u'manag', u'program']
[u'ruddock', u'deni', u'gallipoli', u'travel', u'irrespons']
[u'ruddock', u'disput', u'inevit', u'terror', u'attack']
[u'russian', u'rocket', u'dock', u'space', u'station']
[u'saddam', u'trial', u'judg', u'select']
[u'score', u'kill', u'basra', u'blast']
[u'secur', u'scare']
[u'secur', u'scare', u'prompt', u'airport', u'closur']
[u'share', u'market', u'brace', u'greenspan', u'comment']
[u'shelter', u'workshop', u'fund', u'boost']
[u'small', u'surf', u'forc', u'postpon', u'fiji', u'tour', u'event']
[u'south', u'join', u'fray', u'sign', u'lauitiiti']
[u'lanka', u'beat', u'zimbabw', u'rain', u'affect']
[u'statist', u'spark', u'central', u'hous', u'blaze', u'warn']
[u'stirl', u'call', u'educ', u'reform', u'trial']
[u'streak', u'tell', u'forget', u'zimbabw', u'captainci']
[u'student', u'head', u'europ', u'anzac']
[u'sudan', u'approv', u'right', u'abus', u'investig']
[u'support', u'gather', u'vanunus', u'releas']
[u'switkowski', u'reject', u'resign', u'rumour']
[u'talk', u'continu', u'nurs', u'work']
[u'talk', u'deal', u'hold']
[u'plan', u'uniqu', u'gift', u'royal', u'marriag']
[u'snub', u'land', u'industri', u'estat']
[u'telstra', u'announc', u'revenu', u'lift']
[u'knoll', u'retain', u'open', u'space']
[u'tree', u'clear', u'law', u'okay', u'robertson']
[u'union', u'call', u'discrimin', u'databas']
[u'student', u'protest', u'educ']
[u'upgrad', u'propos', u'falconio', u'murder', u'courtroom']
[u'today', u'editor', u'quit', u'fake', u'stori']
[u'rate', u'specul', u'send', u'local', u'market']
[u'marin', u'kill', u'fallujah']
[u'suprem', u'court', u'hear', u'hick', u'habib', u'case']
[u'troop', u'trade', u'iraqi', u'fallujah', u'report']
[u'wont', u'bend', u'fallujah', u'milit', u'rumsfeld']
[u'nurs', u'begin', u'industri', u'action']
[u'viral', u'caus', u'rule', u'tassi', u'devil', u'diseas']
[u'wait', u'elect', u'surgeri', u'continu', u'grow']
[u'wiki', u'rub', u'anzac', u'test']
[u'wild', u'dog', u'prove', u'cost']
[u'fertilis', u'pleas', u'outlook']
[u'women', u'group', u'question', u'lockyer', u'appoint']
[u'zimbabw', u'select', u'polici', u'abhorr', u'downer', u'say']
[u'abbott', u'defend', u'fund']
[u'rule', u'supermarket', u'chemist']
[u'albani', u'anzac', u'servic', u'give', u'icon', u'status']
[u'play', u'leak', u'branch', u'stack', u'report']
[u'select', u'young', u'candid', u'wide']
[u'say', u'central', u'health', u'servic', u'shrink']
[u'concern', u'electrolux', u'loss']
[u'anim', u'liberationist', u'plan', u'port', u'protest']
[u'annan', u'announc', u'investig', u'panel']
[u'china', u'steel', u'deal', u'sign']
[u'arafat', u'abandon', u'palestinian', u'milit']
[u'share', u'suspend']
[u'introduc', u'trade']
[u'australian', u'arrest', u'nepal', u'democraci', u'protest']
[u'australian', u'protest', u'releas', u'nepal']
[u'australia', u'thailand', u'sign', u'free', u'trade', u'deal']
[u'austrian', u'scam', u'mail', u'return', u'sender']
[u'bacteria', u'fear', u'isol', u'babi']
[u'barman', u'guilti', u'nightclub', u'death']
[u'bashir', u'reject', u'terror', u'accus']
[u'basra', u'buri', u'dead', u'fallujah', u'clash', u'continu']
[u'beekeep', u'sting', u'higher', u'board', u'fee']
[u'enjoy', u'record', u'commod', u'product']
[u'blaze', u'take', u'hold', u'famili', u'youth', u'servic']
[u'bodi', u'gippsland', u'coast']
[u'brack', u'appoint', u'close', u'friend']
[u'british', u'troop', u'fight', u'like']
[u'bryant', u'rape', u'case', u'defenc', u'suffer', u'setback']
[u'burn', u'near']
[u'bush', u'cheney', u'talk', u'sept', u'commiss']
[u'busi', u'burial']
[u'free', u'trade', u'submiss']
[u'speedier', u'banana', u'import', u'risk', u'assess']
[u'canberra', u'airport', u'secur', u'adequ']
[u'cano', u'championship', u'test', u'olymp', u'venu']
[u'crash', u'survivor', u'leav', u'hospit', u'soon']
[u'channel', u'ten', u'canadian', u'owner', u'report', u'mutant', u'loss']
[u'christian', u'challeng', u'blasphem', u'channel']
[u'coach', u'upbeat', u'hurst', u'commonwealth', u'game', u'chanc']
[u'communiti', u'bank', u'prospectus', u'today']
[u'compani', u'liquid', u'wont', u'stop', u'workcov', u'charg']
[u'complaint', u'spark', u'probe', u'local', u'govt', u'poll']
[u'corpor', u'jealousi', u'undermin', u'mitsubishi']
[u'cost', u'constraint', u'hamper', u'defenc', u'legal', u'servic']
[u'council', u'award', u'admin', u'centr', u'contract']
[u'council', u'drive', u'ahead', u'roadwork']
[u'council', u'worker', u'reject', u'wage', u'offer']
[u'coupl', u'hop', u'happi', u'homecom']
[u'court', u'case', u'see', u'council', u'will', u'tree']
[u'millston', u'bunburi', u'airport']
[u'curs', u'joke', u'indigen', u'leader']
[u'defenc', u'advis', u'lodg', u'unfair', u'dismiss', u'claim']
[u'democrat', u'licenc', u'revenu', u'help']
[u'demonstr', u'greet', u'nauru', u'presid', u'return']
[u'dentist', u'shortag', u'begin', u'bite', u'roma', u'chinchilla']
[u'buy', u'brisban', u'radio', u'licenc']
[u'dubious', u'honour', u'pebbl', u'beach']
[u'earli', u'kakadu', u'burn', u'underway']
[u'ebay', u'doubl', u'profit']
[u'electrolux', u'job']
[u'masri', u'orford', u'price', u'slow', u'kick']
[u'environ', u'chief', u'prais', u'gungahlin', u'studi']
[u'ethanol', u'debat', u'heat', u'north']
[u'exot', u'anim', u'stay', u'time']
[u'expert', u'consid', u'evid', u'polic', u'pursuit']
[u'boss', u'issu', u'warn', u'british', u'futur']
[u'famili', u'terroris', u'home', u'invas']
[u'farmer', u'group', u'offer', u'cultur', u'heritag']
[u'fierc', u'fight', u'threaten', u'fallujah', u'ceas']
[u'fiji', u'tour', u'event', u'postpon']
[u'firm', u'fin', u'forklift', u'death']
[u'fisher', u'poor', u'scallop', u'catch']
[u'flabbi', u'feyenoord', u'fan', u'jersey', u'protest']
[u'flatley', u'final', u'red']
[u'halt', u'sydney', u'ferri', u'servic']
[u'forecast', u'good', u'fruitgrow']
[u'director', u'withhold', u'document']
[u'insurg', u'kill', u'northern', u'iraq']
[u'free', u'vanunu', u'urg', u'nuclear', u'inspect']
[u'fund', u'address', u'youth', u'crime']
[u'furi', u'greet', u'preselect', u'loss']
[u'gaza', u'fight', u'kill', u'palestinian', u'sourc']
[u'gaza', u'plan', u'prompt', u'islam', u'emerg', u'meet']
[u'girl', u'drive', u'charg', u'custodi']
[u'glori', u'releas', u'mori']
[u'goal', u'rule', u'public', u'safeti', u'rule']
[u'govt', u'seek', u'return', u'work', u'order', u'nurs']
[u'grape', u'board', u'oppos', u'fertilis']
[u'greenspan', u'rule', u'quick', u'rat', u'rise']
[u'group', u'tell', u'threat', u'north', u'west', u'health', u'servic']
[u'hanson', u'speak', u'tour', u'hold']
[u'harri', u'fight', u'retain', u'presid']
[u'health', u'servic', u'clarifi', u'ambul', u'decis']
[u'hill', u'test', u'fli', u'armi', u'helicopt']
[u'hockeyroo', u'level', u'seri', u'china']
[u'hospit', u'feel', u'industri', u'unrest']
[u'hurst', u'target', u'commonwealth', u'game']
[u'play', u'role', u'break', u'zimbabwean', u'impass']
[u'challeng', u'africa', u'elect', u'result']
[u'warn', u'australian', u'hous', u'bubbl', u'burst']
[u'indian', u'arm', u'smuggler', u'roll']
[u'indigen', u'deal', u'releas', u'hous', u'land']
[u'industri', u'area']
[u'inquest', u'hear', u'murder', u'scene', u'creation']
[u'inquest', u'italian', u'tourist', u'death', u'hear', u'evid']
[u'inquest', u'tell', u'overgrow', u'trail']
[u'jackson', u'indict', u'child', u'charg', u'publicist']
[u'job', u'health', u'servic', u'cut', u'debt']
[u'juri', u'hear', u'close', u'remark', u'tamara', u'smith']
[u'kangaroo', u'readi', u'unexpect']
[u'kewel', u'aim', u'punish']
[u'kidnap', u'dane', u'dead', u'iraq']
[u'kiwi', u'say', u'wiki']
[u'knight', u'free', u'agent']
[u'kookaburra', u'meet', u'olymp', u'champ']
[u'labor', u'howard', u'trade', u'plagiar', u'insult']
[u'labor', u'leader', u'restat', u'murray', u'river', u'commit']
[u'labor', u'medicar', u'plan', u'smart', u'abbott']
[u'late', u'spi', u'famili', u'back', u'intel', u'inquiri', u'call']
[u'latham', u'deni', u'plagiar', u'charg']
[u'lion', u'face', u'fin']
[u'longer', u'tour', u'sunraysia', u'possibl']
[u'macgil', u'add', u'limit', u'list']
[u'malaysia', u'end', u'australian', u'asean', u'veto']
[u'jail', u'cold', u'blood', u'assassin']
[u'shoot', u'seaford', u'sieg']
[u'face', u'drug', u'charg', u'byron', u'raid']
[u'court', u'head', u'butt', u'bodyguard']
[u'maradona', u'stabl', u'intens', u'care']
[u'market', u'flat', u'despit', u'westfield', u'merger']
[u'market', u'wari', u'greenspan', u'speech']
[u'mcgrath', u'back', u'macgil', u'commit', u'tour']
[u'mental', u'health', u'worker', u'plan', u'work', u'ban']
[u'militari', u'farewel', u'long', u'serv', u'sailor']
[u'moral', u'concern', u'macgil', u'zimbabw', u'tour']
[u'live', u'export', u'protest', u'plan']
[u'progress', u'chines', u'pagoda', u'plan']
[u'staff', u'boost', u'health', u'servic']
[u'mother', u'lose', u'seaman', u'face', u'senat', u'probe']
[u'mount', u'sand', u'pose', u'rescu', u'threat']
[u'air', u'doubt', u'claim']
[u'tweed', u'mayor', u'commit', u'tugun', u'bypass']
[u'wagga', u'mayor', u'upbeat', u'council', u'uniti']
[u'charg', u'wineg', u'affair']
[u'polit', u'land', u'sale', u'opposit']
[u'call', u'cheaper', u'school', u'internet', u'access']
[u'share', u'crime']
[u'reaffirm', u'iraq', u'commit', u'despit', u'basra', u'attack']
[u'older', u'driver', u'target', u'road', u'safeti', u'campaign']
[u'phone', u'life', u'product']
[u'onetel', u'boss', u'challeng', u'evid', u'rule']
[u'organis', u'predict', u'huge', u'barra', u'bash']
[u'pair', u'sentenc', u'rape', u'outrag']
[u'panel', u'urg', u'tasmania', u'health', u'servic', u'overhaul']
[u'perilya', u'look', u'forward', u'stronger', u'result']
[u'border', u'crosser', u'stay']
[u'polglas', u'tweed', u'mayor']
[u'polic', u'consid', u'shelv', u'claremont', u'kill', u'case']
[u'polic', u'arrest', u'special', u'oper']
[u'polic', u'bushland', u'victim']
[u'polic', u'probe', u'rock', u'bodi']
[u'polic', u'releas', u'sydney', u'runway', u'intrud']
[u'polic', u'search', u'home', u'claremont', u'kill', u'suspect']
[u'pong', u'accus', u'deni', u'bail']
[u'portland', u'protest', u'fail', u'halt', u'export', u'ship']
[u'porto', u'deportivo', u'battl', u'goalless', u'draw']
[u'public', u'encourag', u'visit', u'display']
[u'rail', u'group', u'want', u'independ', u'studi']
[u'rampant', u'rhino', u'get', u'amor']
[u'rare', u'beetl']
[u'research', u'focus', u'miner', u'fatigu']
[u'resili', u'hewitt', u'hang', u'tough', u'monaco']
[u'review', u'consid', u'tail', u'plan']
[u'riyadh', u'sucid', u'blast', u'kill', u'wound']
[u'roma', u'titl', u'chanc', u'slip', u'away']
[u'rossi', u'walk', u'schus', u'shoe']
[u'russia', u'veto', u'cyprus', u'resolut']
[u'ryder', u'olli', u'mind']
[u'saudi', u'milit', u'claim', u'riyadh', u'bomb']
[u'scientist', u'nurtur', u'fatherless', u'mous']
[u'second', u'face', u'terror', u'charg']
[u'senat', u'claim', u'tasmanian', u'forest', u'industri', u'woodchip']
[u'sheep', u'export', u'protest', u'arrest']
[u'shire', u'form', u'chinatown', u'develop', u'agreement']
[u'socceroo', u'share', u'skill', u'remot', u'area', u'children']
[u'soni', u'fine', u'tune', u'deal', u'report']
[u'south', u'east', u'prepar', u'anzac']
[u'spencer', u'undergo', u'test', u'heavi', u'hit']
[u'student', u'gather', u'anzac', u'memori']
[u'studi', u'foreshadow', u'retir', u'incom', u'train', u'wreck']
[u'suicid', u'bomber', u'basra', u'blast']
[u'swiss', u'pair', u'releas', u'iraq']
[u'sydney', u'airport', u'intrud', u'face', u'trespass', u'charg']
[u'sydney', u'growth', u'plan', u'unveil']
[u'tassi', u'teacher', u'award', u'outstand', u'scienc']
[u'teacher', u'plan', u'industri', u'unrest']
[u'telco', u'tell', u'improv', u'bill', u'polici']
[u'tennant', u'creek', u'get', u'centrelink', u'servic', u'centr']
[u'terror', u'group', u'threaten', u'australia']
[u'thorp', u'steven', u'compet', u'meet']
[u'tiger', u'swing', u'thing']
[u'tiger', u'crow', u'prepar', u'mini', u'final']
[u'townsvill', u'plaqu', u'honour', u'wwii']
[u'tree', u'clear', u'legisl', u'creat', u'uncertainti']
[u'forc', u'involv', u'basra', u'blast', u'cleric']
[u'increas', u'iraq', u'troop', u'blair']
[u'ullrich', u'pull', u'lieg']
[u'forens', u'student', u'graduat']
[u'union', u'seek', u'myrtleford', u'invest']
[u'student', u'scienc', u'challeng']
[u'dollar', u'determin', u'tinto', u'earn']
[u'broadcast', u'pictur', u'die', u'princess', u'diana']
[u'victori', u'hockeyroo', u'kookaburra']
[u'waratah', u'thaiday', u'wing']
[u'warm', u'recept', u'cool', u'hous', u'market']
[u'westfield', u'merger', u'creat', u'global', u'retail', u'giant']
[u'westralia', u'victim', u'famili', u'slam', u'navi', u'justic']
[u'wineri', u'call', u'exempt']
[u'woman', u'charg', u'attempt', u'murder', u'get', u'bail']
[u'woodward', u'want', u'doubl']
[u'workcov', u'drop', u'high', u'rise', u'builder']
[u'worker', u'hail', u'ticor', u'specul']
[u'world', u'bask', u'springtim', u'econom', u'recoveri']
[u'worri', u'conceiv', u'patient', u'tell']
[u'zimbabw', u'trounc', u'wicket']
[u'pipelin', u'project', u'track']
[u'million', u'african', u'risk', u'malaria']
[u'academ', u'fear', u'solomon', u'futur']
[u'academ', u'transcrib', u'long', u'song']
[u'milan', u'close', u'seri', u'titl']
[u'forc', u'purchas', u'cwealth', u'land']
[u'probe', u'hamil', u'appeal']
[u'alinta', u'credit', u'rat', u'recov']
[u'jazeera', u'win', u'webbi', u'nomin']
[u'lose', u'mitsubishi']
[u'play', u'uefa', u'semi', u'goalless']
[u'fire', u'darl', u'opera', u'staff', u'warn', u'languag']
[u'custom', u'return']
[u'annan', u'reject', u'food', u'critic']
[u'arsenal', u'close', u'titl']
[u'attack', u'sentenc', u'shock', u'stab', u'victim']
[u'australia', u'target', u'disput']
[u'bacteria', u'link', u'babi', u'death']
[u'bangkok', u'leav', u'thousand', u'homeless']
[u'beachley', u'down', u'rooki']
[u'bell', u'broadcast', u'shakespear']
[u'bigger', u'wine', u'grape', u'harvest', u'loom']
[u'bolton', u'headhunt', u'rivaldo']
[u'brack', u'reject', u'kemp', u'wast', u'dump', u'threat']
[u'bronco', u'pageant', u'continu', u'draw']
[u'brothel', u'anzac', u'sale', u'inappropri']
[u'bush', u'eas', u'libya', u'sanction']
[u'cafasso', u'inquest', u'expect', u'wind']
[u'cafasso', u'inquest', u'fail', u'killer']
[u'cairn', u'ralli', u'protest', u'atsic', u'demis']
[u'anzac', u'event', u'rememb', u'iraq', u'troop']
[u'children', u'meningococc', u'shoot']
[u'drought']
[u'caltex', u'bulli', u'memo', u'breach', u'polici']
[u'cane', u'farmer', u'anticip', u'sweet', u'rescu', u'deal']
[u'crash', u'survivor', u'leav', u'hospit']
[u'carr', u'prais', u'polic', u'work', u'terror', u'suspect']
[u'celtic', u'look', u'mend', u'break', u'heart']
[u'chemic', u'firm', u'welcom', u'jobless', u'worker']
[u'chief', u'sink', u'stormer']
[u'children', u'court', u'reconsid', u'compens', u'claim']
[u'china', u'confirm', u'north', u'korea', u'train', u'crash']
[u'chock', u'away', u'jetstar']
[u'circus', u'settl', u'lawsuit']
[u'claremont', u'forens', u'test', u'continu']
[u'clearer', u'definit', u'bulli', u'need', u'expert']
[u'urg', u'money']
[u'club', u'unhappi', u'fish', u'kill', u'probe']
[u'competit', u'polici', u'review', u'begin']
[u'construct', u'firm', u'seek', u'highway', u'project', u'compo']
[u'council', u'like', u'yield', u'subdivis']
[u'crime', u'wave', u'mind', u'studi']
[u'cyclist', u'begin', u'nullarbor', u'trial']
[u'daimlerchrysl', u'abandon', u'mitsubishi', u'bailout']
[u'dead', u'saudi', u'milit', u'want', u'list']
[u'democrat', u'releas', u'health', u'wish', u'list']
[u'dentur', u'mishap', u'leav', u'pension', u'speechless']
[u'diamond', u'win', u'olymp', u'spot']
[u'doctor', u'hospit', u'closur', u'report']
[u'doctor', u'group', u'fear', u'feder', u'fund']
[u'doctor', u'testifi', u'road', u'rage', u'murder', u'trial']
[u'dog', u'reveal', u'twist', u'assault', u'case']
[u'donor', u'organis', u'welcom', u'registri', u'plan']
[u'dragon', u'lose', u'barrett']
[u'earli', u'bird', u'pampl', u'captur', u'houston', u'lead']
[u'educ', u'consid', u'rape', u'tape', u'plan']
[u'fairweath', u'reach', u'fifth', u'olymp']
[u'fallujah', u'sieg', u'civilian', u'death', u'toll', u'iraqi']
[u'threaten', u'akhtar']
[u'feedlot', u'propos', u'moura']
[u'propos', u'sweep', u'chang', u'rule']
[u'fight', u'continu', u'despit', u'fallujah', u'ceas']
[u'fizzi', u'drink', u'eas', u'obes', u'problem']
[u'frawley', u'say', u'earli', u'goal', u'vital']
[u'fresh', u'flow', u'boost', u'water', u'qualiti']
[u'fund', u'shortfal', u'close', u'youth', u'centr']
[u'fund', u'push', u'outback', u'tourism']
[u'good', u'news', u'explor']
[u'govt', u'miner', u'promot']
[u'govt', u'urg', u'british', u'lead', u'iraq']
[u'green', u'believ', u'clear', u'understand']
[u'green', u'decri', u'radiat', u'therapi', u'wait', u'list']
[u'shearer', u'fleec', u'rogu', u'sheep']
[u'hackett', u'hop', u'race', u'thorp']
[u'heritag', u'council', u'overstep', u'mark', u'cotteslo']
[u'hewitt', u'final', u'run', u'steam', u'mont', u'carlo']
[u'hewitt', u'pin', u'french', u'open', u'hop', u'european', u'tour']
[u'high', u'school', u'reunion', u'lead', u'special', u'book']
[u'hmas', u'melbourn', u'return', u'gulf', u'servic']
[u'hotel', u'group', u'reject', u'alcohol']
[u'humili', u'ranieri', u'face', u'wave', u'specul']
[u'icac', u'futur', u'assur', u'ahead', u'review']
[u'indigen', u'advoc', u'seek', u'legal', u'plan', u'boycott']
[u'indigen', u'crime', u'link', u'substanc', u'abus']
[u'indonesian', u'polic', u'seek', u'interrog', u'bashir']
[u'industri', u'unrest', u'take', u'toll', u'hospit']
[u'intern', u'space', u'station', u'gyro']
[u'iran', u'pledg', u'continu', u'nuclear', u'cooper']
[u'iraq', u'danger', u'offic']
[u'iraqi', u'cleric', u'warn', u'suicid', u'bomber']
[u'talk', u'resum', u'nurs', u'crisi', u'worsen']
[u'israel', u'kill', u'fatah', u'member', u'west', u'bank']
[u'jetstar', u'airport', u'redevelop', u'track']
[u'judg', u'call', u'repeal', u'cross', u'examin', u'law']
[u'kangaroo', u'outclass', u'kiwi']
[u'kelley', u'scandal', u'forc', u'second', u'editor']
[u'kiwi', u'come', u'play', u'anderson']
[u'kumaratunga', u'lose', u'control', u'lanka', u'parliament']
[u'lake', u'bonney', u'wind', u'farm', u'work', u'underway']
[u'land', u'council', u'ratifi', u'mine', u'leas', u'agreement']
[u'landslid', u'kill', u'indonesian', u'villag']
[u'gasp', u'goal', u'earn', u'kookaburra', u'draw', u'india']
[u'lawyer', u'push', u'nauru', u'asylum', u'hear']
[u'lion', u'fine', u'rise']
[u'liverpool', u'keep', u'faith', u'kewel']
[u'lobster', u'fisher', u'cautious', u'longer', u'season']
[u'luca', u'wont', u'dredg', u'currumbin', u'creek']
[u'face', u'drive', u'charg', u'crash']
[u'maradona', u'critic', u'list']
[u'mate', u'brack', u'deputi', u'chief', u'staff']
[u'matthew', u'blast', u'fine']
[u'mayor', u'want', u'surfer']
[u'mcgrath', u'concern', u'zimbabw', u'cricket']
[u'memori', u'honour', u'crash', u'victim']
[u'mexico', u'captur', u'alleg', u'drug', u'kingpin']
[u'mildura', u'reject', u'park', u'meter', u'plan']
[u'militari', u'coffin', u'photo', u'cost', u'contractor']
[u'minist', u'apologis', u'harbour', u'ban']
[u'minist', u'question', u'health', u'centralis', u'plan']
[u'minist', u'reject', u'educ', u'fund', u'deal']
[u'miss', u'german', u'believ', u'dead', u'iraq']
[u'monk', u'pressur', u'seat', u'lankan']
[u'moran', u'associ', u'win', u'crime', u'proceed', u'case']
[u'mother', u'son', u'sentenc', u'death', u'murder']
[u'flag', u'taxi', u'scheme', u'concern']
[u'moot', u'deer', u'manag', u'scheme']
[u'question', u'skimpi', u'crackdown']
[u'want', u'probe', u'hospit', u'amput']
[u'mulanovich', u'rid', u'high', u'fiji', u'victori']
[u'murder', u'victim', u'mother', u'demand', u'death', u'penalti']
[u'introduc', u'internet', u'bank', u'charg']
[u'narrabri', u'council', u'start', u'budget', u'work']
[u'nat', u'riverland', u'forum', u'foreshadow', u'parti', u'chang']
[u'sale', u'declin']
[u'newcastl', u'murder', u'trial', u'abort']
[u'charg']
[u'korea', u'blast', u'toll', u'hit']
[u'korea', u'quiet', u'train', u'crash', u'report']
[u'korea', u'silent', u'disast', u'relief', u'offer']
[u'resolut', u'council', u'wage', u'disput']
[u'tighten', u'child', u'abus', u'definit']
[u'welcom', u'medic', u'worker', u'plan']
[u'welcom', u'asean', u'trade', u'talk']
[u'olymp', u'champ', u'see', u'indigen', u'health', u'woe']
[u'packag', u'offer', u'cancer', u'patient', u'inform']
[u'pair', u'face', u'court', u'drug', u'charg']
[u'parl', u'food', u'upbeat', u'futur']
[u'pierc', u'name', u'chairman']
[u'player', u'cash', u'strap', u'dee']
[u'court', u'reserv', u'decis', u'vote']
[u'politician', u'head', u'court']
[u'policeman', u'charg', u'sexual', u'assault']
[u'posit', u'outlook', u'mine', u'explor']
[u'posit', u'profit', u'report', u'lift', u'stock']
[u'premier', u'announc', u'north', u'west', u'health', u'fund']
[u'promina', u'celebr', u'list', u'success']
[u'protest', u'demand', u'atsic', u'remain']
[u'protestor', u'stand', u'trial', u'sheep', u'contamin']
[u'public', u'angri', u'darwin', u'wharf', u'develop', u'plan']
[u'public', u'beach', u'pipe', u'work']
[u'public', u'urg', u'report', u'illeg', u'tree', u'clear']
[u'rail', u'servic', u'get', u'track']
[u'real', u'barca', u'derbi', u'match']
[u'refin', u'food', u'link', u'diabet', u'increas']
[u'resid', u'lake', u'worri']
[u'resid', u'ralli', u'save', u'countrylink', u'travel', u'centr']
[u'ricciuto', u'prais', u'breakthrough', u'crow']
[u'riyadh', u'bomb', u'outrag', u'saudi']
[u'upbeat', u'anzac', u'crowd']
[u'salvo', u'doorknock', u'appeal']
[u'sar', u'resurfac', u'china']
[u'saudi', u'forc', u'kill', u'suspect', u'milit']
[u'schumach', u'fli', u'imola']
[u'schumach', u'pay', u'tribut', u'senna']
[u'scotland', u'yard', u'olymp', u'secur']
[u'sept', u'case', u'proceed', u'qaeda', u'wit']
[u'shooter', u'blast', u'olymp', u'venu']
[u'shortag', u'make', u'shearer', u'late']
[u'ride', u'oper', u'fin', u'boy', u'injuri']
[u'smart', u'drop', u'bock', u'debut']
[u'snowfal', u'local', u'surpris']
[u'snowtown', u'killer', u'give', u'latitud', u'appeal']
[u'soccer', u'associ', u'outlin', u'process']
[u'spaniard', u'get', u'chief']
[u'spanish', u'open', u'walk', u'park']
[u'stab', u'victim', u'question', u'attack', u'jail', u'sentenc']
[u'stock', u'tip', u'bring', u'crowd']
[u'strike', u'disrupt', u'elect', u'surgeri']
[u'sugar', u'rescu', u'packag', u'sweeter', u'expect']
[u'suggest', u'orchestr', u'behaviour', u'bach']
[u'power', u'mobil', u'phone', u'base']
[u'support', u'road', u'safeti', u'initi']
[u'tafe', u'upbeat', u'educ', u'effort']
[u'tanker', u'accid', u'halt', u'burn', u'inquest', u'tell']
[u'tasmanian', u'nurs', u'reject', u'wage', u'offer']
[u'teacher', u'stop', u'work', u'mean', u'earli', u'mark', u'student']
[u'teenag', u'charg', u'redfern', u'riot']
[u'teen', u'front', u'court', u'assault']
[u'terror', u'threat', u'requir', u'investig', u'rudd']
[u'thiess', u'slap', u'fine']
[u'tongan', u'airlin', u'cancel', u'intern', u'flight']
[u'toothfish', u'haul', u'net', u'million']
[u'trade', u'halt', u'ahead', u'announc']
[u'treati', u'aim', u'break', u'immun', u'stand']
[u'credibl', u'forc', u'iraq', u'blair']
[u'begin', u'darfur', u'attack', u'investig']
[u'unitab', u'tabcorp', u'sign', u'bid', u'deal']
[u'smooth', u'child', u'soldier']
[u'backflip', u'saddam', u'parti', u'includ']
[u'approv', u'doomsday']
[u'vandal', u'target', u'park', u'facil']
[u'vintag', u'train', u'track', u'echuca']
[u'walk', u'stick', u'win', u'design', u'award']
[u'waratah', u'prepar', u'grudg', u'match']
[u'warmer', u'weather', u'slow', u'fish', u'kill']
[u'water', u'develop', u'ban', u'protect', u'cooper', u'catchment']
[u'weekend', u'talk', u'schedul', u'nurs', u'strike']
[u'westfield', u'merger', u'buoy', u'australian', u'market']
[u'westfield', u'share', u'surg', u'merger', u'news']
[u'white', u'powder', u'spark', u'alert', u'own', u'firm']
[u'wit', u'seek', u'famili', u'servic', u'blaze']
[u'wood', u'leav', u'olymp', u'water', u'polo', u'squad']
[u'work', u'start', u'soon', u'waterfront', u'revamp']
[u'wrong', u'medic', u'kill', u'elder', u'woman', u'coron']
[u'yarn', u'aplenti', u'camoow']
[u'zidan', u'europ', u'best', u'decad']
[u'zimbabw', u'rebel', u'consid', u'peac', u'plan']
[u'worker', u'assess', u'north', u'korea', u'blast', u'site']
[u'back', u'nation', u'health', u'bodi', u'plan']
[u'armstrong', u'postal', u'pull', u'plug', u'cycl']
[u'asia', u'pacif', u'nurs', u'meet', u'discuss', u'sar', u'strategi']
[u'australia', u'face', u'beat', u'retreat', u'moscow']
[u'bar', u'button', u'stand', u'ferrari']
[u'bomb', u'threat', u'forc', u'ferri', u'greec']
[u'burk', u'boot', u'prove', u'brumbi', u'bane', u'red']
[u'burk', u'boot', u'sink', u'brumbi']
[u'button', u'claim', u'maiden', u'pole', u'itali']
[u'canadian', u'dalai', u'lama', u'hold', u'talk']
[u'carlton', u'keep', u'eagl', u'goalless', u'half']
[u'carlton', u'good', u'eagl', u'lion', u'demon']
[u'carmak', u'abandon', u'talk', u'futur']
[u'chelsea', u'desailli', u'ban', u'match']
[u'china', u'give', u'north', u'korea', u'million']
[u'china', u'say', u'suspect', u'sar', u'patient', u'improv']
[u'clijster', u'return', u'action', u'duti']
[u'cocain', u'seiz', u'sydney', u'airport']
[u'court', u'order', u'mental', u'test', u'alleg']
[u'cowboy', u'sing', u'storm', u'match']
[u'crusad', u'beat', u'bull', u'second', u'spot']
[u'cyprus', u'vote', u'unif', u'plan']
[u'daimlerchrysl', u'retain', u'mitsubishi', u'stake']
[u'danish', u'minist', u'quit', u'iraq', u'report']
[u'delug', u'hit', u'eastern', u'victoria']
[u'democrat', u'want', u'atsic', u'rethink']
[u'feel', u'eat', u'golf', u'ball']
[u'drink', u'water', u'detail', u'flow', u'studi']
[u'dutch', u'artist', u'shoot']
[u'earli', u'start', u'tasmanian', u'season']
[u'fault', u'caus', u'north', u'shore', u'blackout']
[u'flatley', u'final', u'reach', u'red', u'mileston']
[u'floodwat', u'threaten', u'princ', u'highway']
[u'nation', u'applaud', u'donor', u'move']
[u'foul', u'play', u'suspect', u'perth', u'hous']
[u'palestinian', u'kill', u'west', u'bank', u'raid']
[u'franc', u'put', u'coal', u'mine']
[u'french', u'aid', u'quit', u'prostitut', u'scandal']
[u'govt', u'upbeat', u'hour', u'clinic']
[u'suspect', u'remand', u'custodi']
[u'hoon', u'admit', u'mistak', u'weapon', u'expert']
[u'hope', u'breakthrough', u'health', u'disput']
[u'hundr', u'protest', u'atsic', u'scrap']
[u'indonesia', u'landslid', u'kill']
[u'island', u'fear', u'atsic', u'ax', u'impact']
[u'jackson', u'ask', u'media', u'leav']
[u'jone', u'quicken', u'comeback', u'pace']
[u'lara', u'play', u'england']
[u'latham', u'urg', u'forestri']
[u'lead', u'aussi', u'counti', u'charg']
[u'libya', u'remov', u'terror', u'list']
[u'long', u'wait', u'nativ', u'titl', u'claimant']
[u'kill', u'perth', u'motorbik', u'crash']
[u'man', u'throat', u'hahndorf', u'brawl']
[u'court', u'charg']
[u'maradona', u'respir', u'intens', u'care']
[u'mitsubishi', u'aust', u'chief', u'criticis', u'daimlerchrysl']
[u'netflix', u'deliv', u'film']
[u'netherland', u'aim', u'stub', u'cannabi', u'tourism']
[u'star', u'kill', u'afghanistan']
[u'nigerian', u'labour', u'group', u'attack', u'foreign', u'news']
[u'korea', u'admit', u'train', u'blast', u'welcom', u'help', u'offer']
[u'northern', u'territori', u'scout', u'embrac', u'anzac']
[u'norway', u'resum', u'lanka', u'mediat', u'role']
[u'govt', u'warn', u'upcom', u'water', u'restrict']
[u'extradit', u'home', u'invas']
[u'palaszczuk', u'dark', u'sugar', u'deal']
[u'pampl', u'crash', u'texa']
[u'park', u'lead', u'halfway', u'stage', u'olazab', u'crash']
[u'pedestrian', u'die', u'melbourn']
[u'pentagon', u'lament', u'iraq', u'coffin', u'photo']
[u'polic', u'chief', u'wont', u'apologis', u'differ']
[u'polic', u'track', u'detect', u'train', u'drug']
[u'polici', u'eas', u'baath', u'parti', u'member']
[u'pope', u'photo', u'snap', u'french', u'prize']
[u'question', u'mark', u'ronaldo', u'ahead', u'barca', u'clash']
[u'real', u'estat', u'group', u'fear', u'kay', u'holiday', u'perman']
[u'roo', u'trampl', u'saint', u'march']
[u'fear', u'lower', u'anzac', u'attend']
[u'safin', u'mont', u'carlo', u'semi', u'final']
[u'saint', u'continu', u'unbeaten']
[u'search', u'countri', u'music', u'best']
[u'seven', u'soldier', u'kill', u'iraq']
[u'shark', u'extra', u'time', u'thriller']
[u'south', u'africa', u'offici', u'elect', u'mbeki']
[u'south', u'korea', u'offer', u'north', u'korea']
[u'space', u'station', u'failur', u'consid']
[u'strike', u'wont', u'affect', u'electr', u'suppli', u'western']
[u'studi', u'find', u'sign', u'life', u'ancient', u'lava']
[u'support', u'region', u'liquor', u'manag', u'plan']
[u'survey', u'point', u'loom', u'skill', u'shortag']
[u'sydney', u'refus', u'bail', u'charg']
[u'govt', u'communiti', u'hospit']
[u'time', u'right', u'view', u'planet']
[u'time', u'warner', u'eye', u'possibl']
[u'tribal', u'leader', u'broker', u'deal', u'pakistani', u'armi']
[u'turkey', u'pledg', u'anzac', u'secur', u'boost']
[u'twin', u'tower', u'add', u'spice', u'super', u'grudg', u'match']
[u'polic', u'tighten', u'trafford', u'secur']
[u'ullrich', u'struggl', u'form', u'tour', u'approach']
[u'offer', u'north', u'korea', u'train', u'tragedi']
[u'caution', u'sharon', u'arafat', u'threat']
[u'lift', u'libya', u'trade', u'sanction']
[u'marin', u'kill', u'iraq']
[u'oilmen', u'kill', u'nigeria', u'ambush']
[u'warn', u'israel', u'arafat', u'harm']
[u'vanston', u'confirm', u'atsic', u'demis']
[u'brace', u'rise', u'river']
[u'victoria', u'bolster', u'heritag', u'protect']
[u'violent', u'home', u'assault', u'investig', u'continu']
[u'vote', u'cyprus', u'reunif', u'plan']
[u'waratah', u'ahead', u'half', u'time']
[u'water', u'woe', u'spark', u'harsher', u'restrict']
[u'white', u'anim', u'sight', u'spark']
[u'woman', u'charg', u'shoot', u'death']
[u'woman', u'charg', u'sydney', u'murder']
[u'woman', u'question', u'shoot', u'death']
[u'worker', u'evacu', u'sugar', u'silo', u'explos']
[u'world', u'champion', u'astarloa', u'releas', u'cofidi']
[u'zimbabw', u'minist', u'arrest', u'corrupt', u'polic']
[u'adelaid', u'marcher', u'commemor', u'anzac', u'spirit']
[u'adelaid', u'mitsubishi', u'worker', u'govt']
[u'adelaid', u'rememb', u'anzac', u'dawn', u'servic']
[u'alic', u'spring', u'resid', u'respect', u'anzac']
[u'ahead', u'poll', u'think', u'coalit']
[u'anim', u'honour', u'central', u'memori']
[u'caus', u'heater']
[u'anzac', u'march', u'begin', u'darwin']
[u'anzac', u'march', u'sydney']
[u'arafat', u'defiant', u'face', u'threat']
[u'aussi', u'moscow', u'despit', u'molik', u'upset']
[u'australia', u'sar', u'alert']
[u'beatti', u'want', u'anzac', u'holiday', u'unchang']
[u'berger', u'honour', u'fall', u'friend']
[u'blast', u'deal', u'blow', u'north', u'korea', u'economi']
[u'bomb', u'damag', u'militari', u'vehicl']
[u'bomber', u'half', u'time', u'anzac', u'lead']
[u'bomber', u'anzac', u'clash']
[u'britain', u'launch', u'pilot', u'card', u'scheme']
[u'bronco', u'overpow', u'panther']
[u'burk', u'boot', u'sink', u'brumbi']
[u'canberra', u'commemor', u'anzac']
[u'cat', u'crumbl', u'complet', u'south', u'african', u'miseri']
[u'china', u'announc', u'sar', u'case']
[u'china', u'probe', u'suspect', u'sar', u'case']
[u'china', u'send', u'ail', u'north', u'korea']
[u'clijster', u'make', u'win', u'return']
[u'report', u'marri', u'jordanian', u'princ']
[u'coria', u'schuettler', u'mont', u'carlo', u'showdown']
[u'costello', u'push', u'washington']
[u'crowd', u'line', u'street', u'melbourn', u'parad']
[u'crowd', u'line', u'street', u'anzac', u'march', u'hobart']
[u'cyprus', u'vote', u'failur', u'criticis', u'annan']
[u'dawn', u'servic', u'mark', u'anzac']
[u'democrat', u'weigh', u'anzac', u'holiday', u'debat']
[u'deportivo', u'stay', u'fourth', u'draw', u'malaga']
[u'docker', u'cat']
[u'embattl', u'jone', u'anchor', u'team', u'relay', u'victori']
[u'ferrari', u'vow', u'fight', u'imola']
[u'final', u'action', u'kookaburra', u'hockeyroo']
[u'kill', u'pirat', u'attack', u'nigeria', u'south']
[u'children', u'shoot', u'dead', u'iraq', u'wit']
[u'attend', u'canberra', u'anzac', u'servic']
[u'gough', u'target', u'world']
[u'greek', u'cypriot', u'vote', u'cyprus', u'divid']
[u'grow', u'drug', u'problem', u'affect', u'modern', u'soldier']
[u'hill', u'defend', u'gallipoli', u'secur', u'warn']
[u'hockeyroo', u'china', u'seri']
[u'hundr', u'gather', u'darwin', u'commemor', u'anzac']
[u'receiv', u'murali', u'report']
[u'drug', u'say', u'sprint', u'star', u'collin']
[u'kean', u'declar', u'ireland', u'return']
[u'kookaburra', u'crush', u'malaysia']
[u'latham', u'comment', u'note', u'washington', u'costello']
[u'latham', u'want', u'troop', u'home', u'xmas']
[u'lawson', u'gravesit', u'restor']
[u'lead', u'nurs', u'confid', u'contain', u'sar']
[u'face', u'court', u'musician', u'assault']
[u'maradona', u'stabl', u'face', u'slow', u'recoveri', u'doctor']
[u'matthew', u'cool', u'extra', u'umpir', u'call']
[u'mersey', u'hospit', u'oper', u'fire', u'part', u'shoot']
[u'mexico', u'document', u'leak', u'overshadow', u'meet']
[u'mice', u'plagu', u'hit', u'part']
[u'miss', u'document', u'prompt', u'call', u'minist']
[u'montgomeri', u'bounc', u'green', u'pull']
[u'murphi', u'strike', u'kill', u'titl', u'hop']
[u'agreement', u'reach', u'fallujah']
[u'korea', u'blast', u'toll', u'cross']
[u'korea', u'remain', u'tight', u'lip', u'train', u'disast']
[u'behaviour', u'teacher']
[u'observ', u'report', u'great', u'damag', u'north', u'korea']
[u'ogilvi', u'trail', u'rain', u'soak', u'houston', u'open']
[u'olonga', u'call', u'zimbabw', u'boycott']
[u'park', u'lead', u'singl', u'shoot']
[u'parramatta', u'river', u'cove', u'honour', u'fairmil', u'veteran']
[u'philippin', u'arrest', u'alleg', u'oper']
[u'commemor', u'anzac', u'iraq']
[u'polic', u'continu', u'search', u'miss', u'teen']
[u'polic', u'question', u'attempt', u'abduct']
[u'port', u'power', u'dog']
[u'protest', u'demand', u'globalis', u'justic']
[u'rain', u'wash', u'trinidad', u'dayer']
[u'rave', u'review', u'comic', u'hero']
[u'real', u'madrid', u'ronaldo', u'miss', u'barca', u'showdown']
[u'record', u'crowd', u'expect', u'anzac', u'march']
[u'red', u'edg', u'shark', u'dismal', u'score', u'match']
[u'rockhampton', u'charg', u'teen', u'murder']
[u'ronaldo', u'prepar', u'follow', u'beckham']
[u'rooster', u'edg', u'dragon']
[u'rwandan', u'troop', u'pursuit', u'congo', u'rebel']
[u'schu', u'continu', u'formula', u'domin']
[u'schumach', u'home', u'town', u'coal', u'report']
[u'scottish', u'teen', u'steal', u'skull', u'puppet']
[u'secur', u'tight', u'gallipoli', u'servic']
[u'seven', u'iraqi', u'citi', u'receiv', u'rebuild', u'fund']
[u'royal', u'commiss', u'wast', u'time', u'counter']
[u'lanka', u'claim', u'seri', u'zimbabw', u'hit']
[u'stage', u'anzac', u'showdown']
[u'stricker', u'loweri', u'johnson', u'lead', u'field']
[u'suicid', u'speedboat', u'attack', u'basra']
[u'hous', u'claim', u'toddler', u'life']
[u'teenag', u'kill', u'accid']
[u'teen', u'stab', u'death', u'melbourn']
[u'ten', u'thousand', u'line', u'brisban', u'street']
[u'terror', u'fear', u'expect', u'crowd']
[u'terrorist', u'suspect', u'return', u'australia']
[u'thailand', u'hellfir', u'pass', u'host', u'anzac', u'servic']
[u'thistl', u'condemn', u'scottish', u'wooden', u'spoon']
[u'thousand', u'attend', u'anzac', u'parad']
[u'thousand', u'gather', u'melbourn', u'shrine']
[u'thousand', u'gather', u'memori', u'canberra']
[u'thousand', u'gather', u'world', u'biggest', u'anzac']
[u'thousand', u'gather', u'dawn', u'servic']
[u'thousand', u'gather', u'albani', u'rememb', u'anzac', u'troop']
[u'thousand', u'pack', u'anzac', u'squar', u'brisban']
[u'dead', u'brisban', u'murder', u'suicid']
[u'teen', u'accid']
[u'tiger', u'ensur', u'eagl', u'stay']
[u'dead', u'score', u'wound', u'indonesia', u'clash']
[u'coalit', u'fighter', u'kill', u'basra', u'suicid']
[u'iraqi', u'envoy', u'defend', u'critic', u'israel']
[u'use', u'atom', u'technolog', u'fight', u'malaria', u'mosquito']
[u'high', u'unlik', u'troop', u'downer']
[u'vandal', u'graffiti', u'brisban', u'shrine', u'remembr']
[u'get', u'fund', u'boost']
[u'nurs', u'talk', u'break']
[u'vitali', u'klitschko', u'win', u'heavyweight', u'crown']
[u'crack', u'cheat']
[u'wartim', u'paint', u'display']
[u'student', u'lead', u'anzac', u'prayer', u'london']
[u'wilder', u'societi', u'condemn', u'forestri', u'burn']
[u'wwii', u'veteran', u'join', u'perth', u'march', u'time']
[u'zimbabw', u'forc', u'select', u'second', u'string']
[u'opposit', u'unleash', u'return', u'polici']
[u'advoc', u'say', u'mental', u'health', u'strain']
[u'expans', u'stabilis', u'power', u'price']
[u'alcohol', u'concern', u'say', u'publican']
[u'alleg', u'abductor', u'appear', u'gold', u'coast', u'court']
[u'defend', u'youth', u'prescript']
[u'ammonium', u'nitrat', u'control', u'debat']
[u'anzac', u'draw', u'crowd']
[u'anzac', u'holiday', u'keep', u'market', u'quiet']
[u'armstrong', u'win', u'tour', u'georgia']
[u'arsenal', u'seal', u'titl', u'glori']
[u'aussi', u'troop', u'stay', u'iraq', u'ruxton']
[u'australian', u'lawyer', u'bar', u'nauru']
[u'australian', u'urg', u'kid']
[u'australia', u'prepar', u'sar', u'outbreak']
[u'bacon', u'ask', u'releas', u'break', u'oday', u'phone', u'record']
[u'baghdad', u'convoy', u'attack', u'destroy', u'humve']
[u'bairnsdal', u'get', u'rail', u'servic', u'reinstat']
[u'barca', u'blow', u'hole', u'real', u'madrid', u'titl', u'hop']
[u'beatti', u'anticip', u'sugar', u'reform', u'packag']
[u'beatti', u'defend', u'alcohol', u'law']
[u'crowd', u'honour', u'anzac', u'tradit']
[u'blaze', u'take', u'hold', u'evan', u'head', u'flat']
[u'board', u'end', u'port', u'chief', u'contract']
[u'boat', u'group', u'oppos', u'compulsori', u'train', u'plan']
[u'brogan', u'clear', u'bone', u'damag']
[u'bulgarian', u'presid', u'attack']
[u'doctor', u'releas', u'mersey']
[u'protect', u'aborigin', u'rock', u'carv']
[u'chalabi', u'fight', u'surviv', u'iraq', u'govern']
[u'chan', u'spread', u'goodwil']
[u'children', u'rememb', u'anzac', u'tradit']
[u'china', u'rule', u'democraci', u'hong', u'kong']
[u'cold', u'weather', u'doesnt', u'deter', u'anzac', u'crowd']
[u'communiti', u'rememb', u'slay', u'singh', u'sibl']
[u'conjoin', u'twin', u'separ', u'bangladesh']
[u'cop', u'warn', u'fan', u'frawley', u'incid']
[u'coria', u'take', u'mont', u'carlo', u'titl']
[u'council', u'settl', u'differ']
[u'council', u'call', u'volunt', u'firefight']
[u'council', u'offer', u'build', u'inspector', u'expertis']
[u'court', u'fin', u'wombat', u'killer']
[u'cricket', u'australia', u'play', u'boycott']
[u'crittercam', u'expos', u'shark', u'privat', u'live']
[u'csiro', u'invent', u'captur', u'barrier', u'reef']
[u'darwin', u'crematorium', u'temporarili', u'close']
[u'defeat', u'send', u'viduka', u'leed', u'edg', u'drop']
[u'democrat', u'echo', u'anzac', u'holiday', u'concern']
[u'denzel', u'washington', u'set', u'offic']
[u'develop', u'promis', u'break', u'world', u'bank']
[u'dog', u'rabbit', u'scrapathon']
[u'dog', u'rabbit', u'scrappi', u'match']
[u'doubl', u'despair', u'australian', u'qatar', u'master']
[u'drink', u'drive', u'lectur', u'puke', u'aisl']
[u'drug', u'recoveri', u'centr', u'await', u'news', u'futur']
[u'duf', u'oper', u'target', u'saleyard']
[u'earli', u'snow', u'fall', u'high', u'countri']
[u'earth', u'monitor', u'establish']
[u'blockad', u'blue', u'mountain', u'film']
[u'este', u'lauder', u'die', u'age']
[u'fallujah', u'truce', u'weaken', u'rebel']
[u'farmer', u'seek', u'injunct', u'sheep', u'fee', u'case']
[u'farm', u'wast', u'guidelin', u'caus', u'worri']
[u'film', u'shoot', u'threat', u'blue', u'mountain']
[u'firefight', u'control', u'petrol', u'station', u'blaze']
[u'food', u'fair', u'showcas', u'produc']
[u'ambassador', u'doubt', u'iraq', u'focus']
[u'franc', u'belgium', u'cruis']
[u'frenchman', u'cevaer', u'hole', u'eagl', u'spanish', u'open']
[u'fund', u'address', u'road', u'danger']
[u'generat', u'light', u'work', u'maintain', u'hospit']
[u'govt', u'crack', u'inmat', u'fraud']
[u'graviti', u'measur', u'lead', u'astronom', u'distant', u'planet']
[u'gunnedah', u'council', u'start', u'budget', u'plan']
[u'headscarf', u'refere', u'face', u'disciplinari', u'action']
[u'henri', u'name', u'english', u'player', u'player', u'year']
[u'higher', u'price', u'flow', u'rise', u'water']
[u'histor', u'plane', u'project', u'take']
[u'hospit', u'claim', u'nurs', u'strike', u'endang', u'patient']
[u'hous', u'blaze', u'caus', u'unknown']
[u'howard', u'flag', u'extra', u'troop', u'iraq']
[u'hundr', u'thousand', u'march', u'abort']
[u'fortun', u'port', u'smile', u'lade']
[u'indonesia', u'rush', u'reinforc', u'ambon']
[u'inquest', u'open', u'woman', u'death']
[u'investig', u'fatal', u'hous', u'begin']
[u'iraq', u'adopt', u'nation', u'flag']
[u'israel', u'urg', u'drop', u'palestinian', u'press']
[u'jackson', u'legal', u'team', u'beat']
[u'japan', u'bill', u'releas', u'hostag', u'iraq', u'rescu']
[u'jone', u'montgomeri', u'trade', u'endors', u'steroid']
[u'karzai', u'assassin', u'attempt', u'foil']
[u'kyrgyzstan', u'landslid', u'kill']
[u'lauitiiti', u'leav', u'warrior']
[u'reform', u'offer', u'protect', u'crime']
[u'lawyer', u'handl', u'nauru', u'appeal']
[u'lighter', u'blame', u'gagebrook']
[u'lion', u'improv', u'beat', u'saint', u'matthew']
[u'longer', u'danger', u'period', u'possibl']
[u'maluku', u'violenc', u'kill', u'injur']
[u'charg', u'abduct']
[u'charg', u'count', u'sexual', u'assault']
[u'free', u'wreck']
[u'mango', u'grower', u'effort', u'reward']
[u'jail', u'shoot', u'claim', u'fail']
[u'remand', u'custodi', u'numer', u'drive']
[u'remand', u'custodi', u'musician', u'mutil']
[u'face', u'court', u'multipl', u'drive', u'offenc']
[u'maradona', u'take', u'respir']
[u'matthew', u'ponder', u'dockland', u'secur', u'rethink']
[u'milan', u'frustrat', u'roma', u'titl', u'showdown']
[u'mine', u'accid', u'inquest', u'begin']
[u'minist', u'pressur', u'highway', u'fund']
[u'miss', u'inform', u'hamper', u'drug', u'hear']
[u'mitsubishi', u'boss', u'fall', u'sword']
[u'youth', u'involv', u'anzac', u'servic']
[u'upbeat', u'defenc', u'map', u'centr']
[u'director', u'share', u'respons', u'walter']
[u'narrabri', u'council', u'back', u'support']
[u'nato', u'deleg', u'begin', u'afghanistan', u'visit']
[u'nat', u'fear', u'rail', u'station', u'closur']
[u'nat', u'head', u'mildura', u'gather']
[u'evid', u'clear', u'bulldog', u'peponi']
[u'lawyer', u'delay', u'nauru', u'detent', u'case']
[u'look', u'promis', u'field', u'day']
[u'korea', u'reject', u'south', u'overland', u'offer']
[u'polic', u'charg', u'drink', u'drive']
[u'nurs', u'industri', u'woe', u'toll', u'hospit']
[u'nurs', u'deni', u'work', u'ban', u'endang', u'patient']
[u'offici', u'open', u'oliv', u'estat']
[u'ogilvi', u'trail', u'rain', u'forc', u'extra']
[u'onlin', u'ann', u'frank', u'memori', u'public']
[u'origin', u'energi', u'win', u'contract']
[u'owner', u'bank', u'miss', u'paint', u'return']
[u'pacif', u'island', u'volcano', u'start', u'erupt']
[u'pair', u'refus', u'bail', u'robberi', u'charg']
[u'paraglid', u'crash', u'land', u'hospit']
[u'park', u'honour', u'anzac', u'tradit']
[u'passeng', u'die', u'wilton', u'crash']
[u'pharmacist', u'challeng', u'supermarket', u'propos']
[u'phoenix', u'win', u'start']
[u'plastic', u'gain', u'support']
[u'iraq', u'visit', u'draw', u'mix', u'reaction']
[u'polic', u'board', u'greenpeac', u'ship']
[u'polic', u'drive', u'home', u'road', u'safeti', u'messag']
[u'polic', u'inform', u'demand', u'court', u'appear']
[u'polic', u'investig', u'assault']
[u'polic', u'charg', u'drug', u'crackdown']
[u'polic', u'murder', u'charg', u'wilcannia']
[u'polic', u'search', u'miss']
[u'polic', u'uncov', u'cannabi', u'plantat']
[u'polic', u'urg', u'long', u'weekend', u'road', u'safeti']
[u'polish', u'teenag', u'conquer', u'north', u'pole']
[u'protest', u'erupt', u'visit', u'britain']
[u'ranger', u'target', u'green', u'rememb', u'chernobyl']
[u'rebellin', u'seal', u'uniqu', u'trebl', u'lieg', u'bastogn']
[u'refere', u'disciplin', u'headscarf']
[u'relat', u'keep', u'dark', u'north', u'korea', u'disast']
[u'renew', u'call', u'total', u'smoke']
[u'riverina', u'get', u'anzac']
[u'riverland', u'rememb', u'anzac']
[u'road', u'plan', u'seal', u'tourism', u'boost']
[u'royal', u'nation', u'park', u'turn']
[u'chief', u'confid', u'anzac', u'futur']
[u'hearten', u'anzac', u'servic', u'number']
[u'govt', u'pressur', u'tax']
[u'saint', u'rid', u'high']
[u'samoa', u'ban', u'scuba', u'dive', u'fishermen']
[u'polic', u'warn', u'motorist', u'drive', u'safe']
[u'threaten', u'mitsubishi', u'exit', u'cost']
[u'secur', u'step', u'shrine']
[u'serratia', u'outbreak', u'test', u'hospit', u'transfer', u'rule']
[u'south', u'east', u'enjoy', u'drench']
[u'spit', u'fan', u'face', u'ban']
[u'steven', u'open', u'door', u'thorp']
[u'steven', u'stand', u'asid', u'open', u'door', u'thorp']
[u'storm', u'lose', u'robinson', u'knee', u'oper']
[u'strauss', u'airfield', u'onlin']
[u'strong', u'support', u'bendigo', u'anzac', u'servic']
[u'student', u'storm', u'univers', u'meet', u'protest']
[u'sudan', u'free', u'jazeera', u'correspond']
[u'sudan', u'peac', u'deal', u'expect', u'day']
[u'summon', u'flaw', u'hamper', u'bashir', u'interrog']
[u'sutton', u'pearson', u'earn', u'celtic', u'award', u'doubl']
[u'sweet', u'mannequin', u'kidnap', u'baffl', u'polic']
[u'symbol', u'iraq', u'commit', u'worri']
[u'talk', u'consid', u'lake', u'condah', u'mission', u'heritag']
[u'make', u'discoveri']
[u'terrorist', u'threaten', u'asian', u'airlin']
[u'terror', u'suspect', u'free', u'charg']
[u'thailand', u'deport', u'australian', u'face', u'charg']
[u'thiev', u'steal', u'sydney', u'boy', u'hear']
[u'intern', u'trinidad', u'abandon']
[u'thorp', u'steven', u'situat', u'prompt', u'rule', u'rethink']
[u'thousand', u'flee', u'insecur', u'uganda']
[u'thousand', u'flock', u'idol', u'concert']
[u'thousand', u'honour', u'anzac', u'spirit']
[u'tiger', u'ralli', u'round', u'embattl', u'frawley']
[u'tonga', u'plung', u'financi', u'crisi']
[u'truss', u'visit', u'unlik', u'saudi', u'export']
[u'arrest', u'citi', u'stab']
[u'consid', u'iraq', u'troop', u'boost', u'report']
[u'union', u'applaud', u'behaviour', u'teacher']
[u'extend', u'fallujah', u'disarma', u'deadlin', u'report']
[u'push', u'mini', u'nuke', u'research']
[u'radio', u'station', u'fin', u'castro', u'prank']
[u'soldier', u'insurg', u'kill', u'fallujah']
[u'troop', u'clash', u'fallujah', u'guerrilla']
[u'govt', u'guarante', u'teach', u'posit']
[u'govt', u'repair', u'countri', u'footi', u'field']
[u'nurs', u'talk', u'continu']
[u'violenc', u'mar', u'india', u'round', u'poll']
[u'memori', u'play', u'greater', u'anzac', u'role']
[u'water', u'scheme', u'save', u'farmer']
[u'consid', u'hec', u'hike']
[u'weapon', u'inspector', u'hurt', u'iraq', u'blast']
[u'western', u'victoria', u'rememb', u'anzac']
[u'confid', u'chines', u'sar', u'case', u'control']
[u'wineri', u'say', u'tast', u'charg', u'palat']
[u'woman', u'die', u'highway', u'crash']
[u'woman', u'face', u'court', u'harbour', u'escape']
[u'mistak', u'mistak', u'brain']
[u'youth', u'bolster', u'anzac']
[u'insurg', u'dead', u'najaf', u'fight']
[u'quarantin', u'china', u'sar', u'death']
[u'chief', u'resign']
[u'head', u'defend', u'role', u'cash', u'comment']
[u'motorist', u'warn', u'care', u'school', u'zone']
[u'oppn', u'float', u'tuggeranong', u'homestead', u'plan']
[u'advertis', u'campaign', u'launch', u'miss', u'teen']
[u'trainer', u'send', u'iraq', u'govt']
[u'age', u'care', u'boost', u'carnarvon']
[u'qaeda', u'brand', u'howard', u'wick']
[u'american', u'cheer', u'steven', u'withdraw']
[u'profit', u'surg', u'percent']
[u'arrest', u'warrant', u'fish', u'store', u'theft']
[u'lover', u'beckham']
[u'aussi', u'connor', u'quit', u'northampton', u'japan']
[u'australian', u'light', u'compani', u'hop', u'expand']
[u'australia', u'pledg', u'north', u'korea']
[u'baggio', u'hop', u'fairytal', u'intern', u'farewel']
[u'beatti', u'want', u'probe', u'colleg', u'alleg']
[u'beatti', u'welcom', u'coag', u'meet']
[u'berrigan', u'move', u'half', u'maroon', u'origin']
[u'crowd', u'honour', u'anzac', u'tradit']
[u'crowd', u'protest', u'rail', u'cut']
[u'bird', u'race', u'highlight', u'albatross', u'plight']
[u'brazil', u'claim', u'cotton', u'subsidi']
[u'break', u'hill', u'host', u'tidi', u'town', u'launch']
[u'bronco', u'look', u'real', u'deal']
[u'broom', u'say', u'hous', u'plan']
[u'bullock', u'slipway', u'facil']
[u'fund', u'help', u'region', u'student']
[u'govt', u'boost', u'rail']
[u'cane', u'grower', u'confid', u'govt', u'sugar', u'packag']
[u'cate', u'blanchett', u'give', u'birth', u'babi']
[u'chelsea', u'appeal', u'skipper']
[u'chemist', u'plead', u'guilti', u'drug', u'charg']
[u'chinchilla', u'lament', u'drought', u'snub']
[u'clarenc', u'valley', u'super', u'council', u'meet']
[u'close', u'mitsubishi', u'cost', u'billion', u'union']
[u'commemor', u'ceremoni', u'mark', u'disast', u'anniversari']
[u'communiti', u'cabinet', u'hear', u'childcar', u'shortag']
[u'coron', u'tell', u'confus', u'vital', u'drug']
[u'costa', u'fall', u'hurdl', u'barcelona', u'open']
[u'councillor', u'vote', u'hospit', u'site']
[u'council', u'plan', u'rail', u'ralli']
[u'council', u'reject', u'road', u'crash', u'liabil']
[u'court', u'delay', u'polic', u'corrupt', u'case']
[u'court', u'reject']
[u'crew', u'safeti', u'drive', u'bushfir', u'respons']
[u'crikey', u'home', u'tiger', u'cub']
[u'deegan', u'contest', u'downer', u'seat']
[u'democrat', u'upbeat', u'sugar', u'demand']
[u'dental', u'boost', u'central']
[u'develop', u'board', u'want', u'fund', u'boost']
[u'digest', u'problem', u'suharto', u'admiss']
[u'docker', u'play', u'derbi', u'favourit']
[u'doctor', u'heart', u'diseas', u'warn', u'obes']
[u'drug', u'extend', u'life', u'lung', u'cancer', u'patient']
[u'earli', u'power', u'wind']
[u'eddi', u'hit', u'olymp', u'park']
[u'arrest', u'film', u'protest']
[u'eleph', u'see', u'red', u'safari', u'scare']
[u'extra', u'fruit', u'tip', u'bolster', u'bulk', u'wine', u'export']
[u'fear', u'air', u'isisford', u'store', u'closur']
[u'fear', u'anim', u'park', u'buyer', u'pull']
[u'ferrari', u'boss', u'eye', u'button']
[u'firefight', u'tackl', u'shed', u'blaze']
[u'flinder', u'rang', u'polic', u'level', u'question']
[u'diplomat', u'blast', u'blair', u'polici', u'support']
[u'foxtel', u'worker', u'strike', u'condit']
[u'french', u'water', u'featur', u'get', u'makeov']
[u'fund', u'anzac', u'park']
[u'girl', u'theft', u'charg', u'stay', u'hostel']
[u'goldfield', u'driver', u'urg', u'care']
[u'good', u'sign', u'immin', u'lake', u'creek', u'open']
[u'govt', u'mull', u'marriag', u'restrict']
[u'govt', u'offer', u'serratia', u'assur']
[u'govt', u'renew', u'famili', u'servic', u'fund']
[u'group', u'welcom', u'water', u'develop', u'ban']
[u'guard', u'resign', u'rail', u'secur', u'breach']
[u'hackett', u'coach', u'happi', u'steven', u'decis']
[u'health', u'industri', u'woe', u'impact', u'region']
[u'hear', u'begin', u'offic', u'charg', u'wadey']
[u'hec', u'increas', u'deter', u'rural', u'student']
[u'hobart', u'closer', u'antarct', u'gateway']
[u'honeysuckl', u'site', u'clean', u'begin']
[u'hope', u'second', u'retir', u'villag']
[u'hope', u'yarram', u'grind', u'share', u'footi', u'fund']
[u'hospit', u'cop', u'nurs', u'work', u'ban']
[u'hospit', u'handov', u'timet', u'concern', u'union']
[u'hous', u'caus', u'unknown']
[u'howard', u'put', u'australia', u'risk', u'hawk']
[u'howel', u'leafa', u'face', u'strike', u'charg']
[u'hunt', u'continu', u'child', u'attack']
[u'indian', u'cricket', u'chief', u'rule', u'gulf', u'game']
[u'india', u'phase', u'elect', u'continu']
[u'indigen', u'committe', u'critic', u'vanston', u'meet']
[u'insur', u'scheme', u'chariti', u'profit', u'group']
[u'intrud', u'prompt', u'rail', u'yard', u'secur', u'review']
[u'irishmen', u'clear', u'train', u'colombian', u'rebel']
[u'isra', u'soldier', u'kill', u'west', u'bank', u'milit']
[u'itali', u'stand', u'firm', u'hostag', u'demand']
[u'japanes', u'style', u'rest', u'hous']
[u'jordanian', u'air', u'milit', u'confess']
[u'journalist', u'charg', u'publish', u'secret', u'iraq']
[u'juri', u'find', u'stand', u'trial']
[u'katherin', u'centr', u'tackl', u'alcohol', u'abus']
[u'kidman', u'dazzl', u'diplomat']
[u'killarney', u'revamp', u'open']
[u'kiwi', u'bowler', u'dump', u'kookaburra', u'england', u'tour']
[u'krige', u'ban', u'headbutt', u'super']
[u'latham', u'meet', u'offici']
[u'lauitiiti', u'rule', u'rabbitoh']
[u'lennon', u'blame', u'liber', u'mersey', u'woe']
[u'libyan', u'leader', u'visit', u'belgium']
[u'littl', u'cancel', u'lib', u'fundrais']
[u'malle', u'fuel', u'reduct', u'burn', u'continu']
[u'arrest', u'spanish', u'bomb']
[u'hospit', u'cowra', u'incid']
[u'kill', u'bike', u'accid']
[u'face', u'murder', u'committ', u'hear']
[u'court', u'teen', u'death']
[u'market', u'trade', u'slow', u'overnight']
[u'maroon', u'pick', u'berrigan', u'half']
[u'mbeki', u'rememb', u'repuls', u'apartheid']
[u'meet', u'aim', u'overcom', u'hump', u'camel', u'export']
[u'meet', u'consid', u'banana', u'land', u'rehabilit']
[u'meet', u'consid', u'miner', u'sand', u'impact']
[u'milla', u'jovovich', u'sue', u'disput', u'film']
[u'accid', u'inquiri', u'tell', u'safeti']
[u'mine', u'area', u'check', u'arsenic']
[u'miss', u'master', u'star', u'face', u'cash']
[u'mitsubishi', u'specul', u'weigh', u'sale', u'staff']
[u'action', u'need', u'wineg', u'ethicist']
[u'movi', u'websit', u'stir', u'clone', u'controversi']
[u'miner', u'moon']
[u'water', u'price', u'flow', u'custom']
[u'bulldog', u'face', u'charg']
[u'evid', u'forens', u'corrupt', u'claim']
[u'schedul', u'hong', u'kong', u'democraci', u'downer']
[u'opposit', u'slam', u'govt', u'drug', u'program']
[u'play', u'host', u'diplomat']
[u'nurs', u'disput', u'enter', u'second', u'week']
[u'nurs', u'walk', u'staff', u'level']
[u'nurs', u'union', u'meet', u'govt']
[u'nurs', u'work', u'ban', u'close', u'hospit', u'bed']
[u'oliv', u'processor', u'plant', u'tonn']
[u'opposit', u'critic', u'decis', u'rais', u'hec']
[u'orica', u'strike', u'deal', u'bronson', u'jacob']
[u'overhaul', u'school', u'curriculum', u'step', u'closer']
[u'packer', u'launch', u'perth', u'casino']
[u'perth', u'hold', u'hockey', u'program']
[u'pie', u'prepar', u'compromis', u'olymp', u'park']
[u'player', u'interview', u'saint', u'probe']
[u'ask', u'host', u'mitsubishi', u'roundtabl']
[u'receiv', u'anniversari', u'invit']
[u'consid', u'australian', u'compromis']
[u'choos']
[u'polic', u'drive', u'home', u'road', u'safeti', u'messag', u'young']
[u'polic', u'examin', u'assess', u'bulldog', u'case']
[u'polic', u'happi', u'driver', u'near', u'school']
[u'polic', u'happi', u'holiday', u'driver']
[u'polic', u'happi', u'long', u'weekend', u'driver']
[u'polic', u'interview', u'saint', u'pair']
[u'polic', u'long', u'weekend', u'drink', u'drive', u'charg']
[u'polic', u'charg', u'injur', u'teen', u'driver']
[u'polic', u'rule', u'bone', u'miss', u'link']
[u'polic', u'probe', u'weekend', u'assault']
[u'polic', u'reviv', u'bashir', u'interrog', u'plan']
[u'polic', u'search', u'involv', u'home', u'invas']
[u'polic', u'seiz', u'nation', u'park', u'cannabi']
[u'press', u'group', u'appeal', u'journalist', u'death', u'sentenc']
[u'profit', u'take', u'limit', u'market', u'rise']
[u'prostitut', u'deni', u'murder', u'accus', u'alibi']
[u'prostitut', u'deni', u'see', u'accus', u'night']
[u'protest', u'call', u'atsic', u'retent']
[u'public', u'servant', u'seek', u'wage', u'offer', u'vote']
[u'public', u'urg', u'watch', u'croc']
[u'report', u'author', u'criticis', u'govt', u'health', u'rescu']
[u'resid', u'long', u'wait', u'power']
[u'resid', u'want', u'boundari', u'chang']
[u'retir', u'look', u'bleak', u'small', u'busi', u'owner']
[u'rivaldo', u'close', u'bolton']
[u'rodd', u'look', u'forward', u'regiment', u'ride']
[u'rubi', u'consid', u'upper', u'hunter']
[u'extend', u'sick', u'leav']
[u'saint', u'face', u'wait', u'polic', u'probe', u'continu']
[u'sawmil', u'talk', u'continu', u'south', u'west']
[u'search', u'crabber', u'resum']
[u'second', u'profit', u'warn', u'hit', u'cochlear', u'share']
[u'shafston', u'colleg', u'ban', u'presid']
[u'shafston', u'intern', u'colleg', u'head', u'quit']
[u'shire', u'consid', u'industri', u'estat', u'plan']
[u'singapor', u'power', u'buy', u'australia']
[u'sniper', u'kill', u'polic', u'ambon', u'violenc', u'continu']
[u'south', u'african', u'celebr', u'apartheid']
[u'springborg', u'welcom', u'custodi', u'review']
[u'storm', u'prop', u'chan', u'charg']
[u'student', u'seek', u'rural', u'practic', u'scheme']
[u'suharto', u'excel', u'health']
[u'survey', u'highlight', u'smoker', u'support']
[u'sustain', u'land', u'water', u'centr', u'open']
[u'symbol', u'deploy', u'claim', u'insult']
[u'talk', u'trash', u'bin', u'berlin', u'tidi']
[u'talk', u'address', u'crisi', u'level', u'domest', u'violenc']
[u'targa', u'tasmania', u'driver', u'hop', u'weather']
[u'thorp', u'expect', u'announc']
[u'thorp', u'fire', u'olymp']
[u'tillakaratn', u'ax', u'zimbabw', u'test', u'seri']
[u'total', u'eclips', u'australian', u'see']
[u'tour', u'franc', u'boss', u'meet', u'london', u'mayor']
[u'tragedi', u'prompt', u'custodi', u'procedur', u'review']
[u'trial', u'alleg', u'bali', u'bomber', u'begin']
[u'trucki', u'consid', u'bill']
[u'underworld', u'figur', u'avoid', u'court', u'appear']
[u'union', u'fear', u'electrolux', u'cut']
[u'launch', u'north', u'korea', u'appeal']
[u'patient', u'pray', u'good', u'health']
[u'studi', u'find', u'summer', u'bring', u'lower', u'cholesterol']
[u'limit', u'iraqi', u'sovereignti', u'powel']
[u'vail', u'make', u'progress', u'china']
[u'polic', u'corrupt', u'claim', u'taint', u'test']
[u'vijay', u'singh', u'rain', u'houston', u'titl']
[u'farmer', u'lobbi', u'kyoto', u'protocol']
[u'walker', u'win', u'rise', u'star']
[u'walter', u'demand', u'draft', u'loss', u'report', u'releas']
[u'student', u'meet', u'british']
[u'water', u'polo', u'make', u'splash', u'champ']
[u'water', u'sewerag', u'cost']
[u'univers', u'approv', u'increas']
[u'wick', u'howard', u'shrug', u'qaeda', u'slur']
[u'wilkinson', u'target', u'novemb', u'comeback']
[u'woman', u'die', u'pilbara', u'road', u'crash']
[u'woman', u'face', u'jail', u'drug', u'charg']
[u'wonderland', u'worker', u'work']
[u'illawarra', u'health']
[u'sugar', u'rescu', u'packag', u'predict']
[u'dead', u'thailand', u'clash']
[u'chairman', u'defend', u'jone', u'letter']
[u'aborigin', u'leader', u'say', u'mile', u'communiti']
[u'account', u'jail', u'dupe', u'friend']
[u'actu', u'readi', u'step', u'nurs', u'disput']
[u'actu', u'shock', u'daili', u'work', u'relat', u'death', u'toll']
[u'releas', u'financi', u'report']
[u'anderson', u'tour', u'south', u'east']
[u'arm', u'cach', u'explos', u'syrian', u'raid']
[u'armstrong', u'hint', u'retir', u'sponsor', u'pull']
[u'athen', u'olymp', u'plung', u'deeper']
[u'atsic', u'council', u'attend', u'sydney', u'confer']
[u'australian', u'camera', u'captur', u'univers']
[u'australian', u'ralli', u'recip', u'ail', u'polar', u'bear']
[u'bank', u'miner', u'weigh', u'market']
[u'bed', u'close', u'nurs', u'maintain', u'disput']
[u'bet', u'rule', u'restart', u'cane', u'toad', u'race']
[u'blatter', u'declar', u'win']
[u'charg', u'stab', u'grant', u'bail']
[u'boy', u'buddi', u'labor', u'educ', u'plan']
[u'britain', u'releas', u'terror', u'suspect']
[u'brogden', u'seek', u'power', u'plant', u'assur']
[u'break', u'thumb', u'rule', u'lion', u'mcgrath']
[u'bronco', u'loss', u'meyer']
[u'bulldog', u'coach', u'folk', u'know', u'player']
[u'bulldog', u'fine']
[u'busi', u'good', u'tassi', u'hotel']
[u'butler', u'attend', u'royal', u'wed']
[u'north', u'west', u'superintend']
[u'speed', u'limit', u'tamar', u'river']
[u'caltex', u'wooli', u'extend', u'joint', u'petrol', u'ventur']
[u'fee', u'subsidis', u'concess']
[u'park', u'hoon', u'frustrat', u'resid']
[u'centr', u'face', u'child', u'supervis', u'charg']
[u'chelsea', u'line', u'mourinho', u'ronaldo', u'beckham']
[u'children', u'divorc', u'wors', u'studi']
[u'china', u'report', u'sar', u'case']
[u'china', u'seek', u'calm', u'sar', u'fear']
[u'china', u'trade', u'talk', u'fast', u'track']
[u'class', u'action', u'shale', u'project']
[u'colleg', u'rigor', u'investig', u'bligh']
[u'compani', u'reject', u'hous', u'develop', u'concern']
[u'cool', u'temp', u'predict', u'western']
[u'coron', u'say', u'mine', u'death', u'tragic', u'accid']
[u'coron', u'urg', u'supervis', u'bath', u'children']
[u'costello', u'welcom', u'inflat', u'rise']
[u'council', u'air', u'water', u'contamin', u'concern']
[u'council', u'consid', u'panorama', u'financi', u'fuel']
[u'council', u'dive', u'pool', u'fund']
[u'council', u'fight', u'brack', u'backdown']
[u'council', u'vote', u'foreshor', u'develop']
[u'council', u'welcom', u'beach', u'cigarett']
[u'dampier', u'bunburi', u'pipelin', u'go', u'receivership']
[u'dead', u'babi', u'mother', u'dial']
[u'demetriou', u'flag', u'dope', u'test', u'rethink']
[u'dental', u'ray', u'link', u'birth', u'weight', u'babi']
[u'disast', u'relief', u'fund', u'storm', u'victim']
[u'disney', u'remak', u'swiss', u'famili', u'robinson']
[u'doc', u'steroid', u'hand', u'justic', u'dept']
[u'doctor', u'region', u'scheme']
[u'doubt', u'cast', u'insur', u'scheme']
[u'downer', u'attend', u'mara', u'funer']
[u'earli', u'plea', u'round', u'charg', u'foursom']
[u'ecstasi', u'grow', u'problem', u'mildura', u'region']
[u'educ', u'health', u'petrol', u'price', u'expect']
[u'electrolux', u'urg', u'freez', u'worri']
[u'elliott', u'lose', u'latest', u'court']
[u'farm', u'come', u'attack']
[u'timor', u'condemn', u'australia', u'theft', u'border']
[u'evid', u'bulldog', u'assault', u'strong']
[u'fake', u'milk', u'kill', u'chines', u'babi']
[u'farmer', u'lose', u'sleep', u'dam']
[u'fear', u'tourist', u'help', u'illeg', u'abalon', u'trade']
[u'feder', u'fund', u'revamp', u'classic', u'theatr']
[u'feder', u'govt', u'want', u'region', u'phone', u'servic']
[u'fevola', u'gestur', u'draw', u'fine']
[u'fighter', u'escort', u'canada']
[u'figur', u'highlight', u'illawarra', u'growth']
[u'damag', u'perth', u'factori']
[u'flint', u'claim', u'boost', u'rat', u'jone']
[u'forestri', u'practic', u'tasmania', u'recognis']
[u'frawley', u'say', u'wont', u'sack']
[u'fund', u'boost', u'southern', u'health', u'servic']
[u'gaddafi', u'urg', u'world', u'follow', u'peac', u'exampl']
[u'gag', u'claus', u'hous', u'estat', u'contract']
[u'german', u'court', u'throw', u'laughabl', u'lawsuit']
[u'glori', u'boss', u'talk', u'tough', u'debt', u'threat']
[u'trial', u'scale']
[u'govt', u'defend', u'surgeri', u'wait', u'list']
[u'grower', u'hop', u'sweet', u'sugar', u'deal']
[u'hall', u'berri', u'divorc', u'husband']
[u'hannay', u'move', u'closer', u'origin', u'ambit']
[u'hartz', u'moutain', u'search', u'intensifi']
[u'health', u'expert', u'face', u'dengu', u'resist']
[u'health', u'group', u'look', u'fund', u'boost']
[u'hill', u'visit', u'examin', u'iraq', u'handov', u'provis']
[u'homesick', u'watson', u'abandon', u'tassi', u'queensland']
[u'hospit', u'age', u'care', u'unit', u'close']
[u'hospit', u'feel', u'nurs', u'protest']
[u'hotel', u'group', u'oppos', u'smoke', u'propos']
[u'icpa', u'unhappi', u'bigger', u'allow', u'snub']
[u'indonesian', u'polic', u'begin', u'question', u'bashir']
[u'inquest', u'hear', u'bushfir', u'warn', u'urgent']
[u'inquest', u'death', u'psychiatr', u'patient', u'begin']
[u'investig', u'probe', u'fatal', u'accid']
[u'insur', u'olymp', u'cancel']
[u'iraqi', u'interim', u'govern', u'possibl', u'envoy']
[u'island', u'prepar', u'volcan', u'erupt']
[u'israel', u'confirm', u'iaea', u'visit']
[u'isra', u'troop', u'foil', u'suicid', u'bomb']
[u'japanes', u'knicker', u'nicker', u'nick']
[u'katherin', u'mayor', u'call', u'water', u'divers', u'program']
[u'klitschko', u'weigh', u'option', u'heavyweight', u'champ']
[u'kuerten', u'scrap', u'past', u'johansson', u'spain']
[u'exit', u'brooklyn', u'author', u'hubert', u'selbi', u'die']
[u'latham', u'focus', u'gippsland', u'seat']
[u'latham', u'surpris', u'poll', u'result']
[u'latham', u'promis', u'pakenham', u'bypass', u'fund']
[u'lion', u'launch', u'fine', u'appeal']
[u'lion', u'launch', u'fin', u'appeal']
[u'lulu', u'hop', u'braveri', u'award']
[u'charg', u'unit', u'blaze']
[u'maradona', u'thank', u'fan', u'support']
[u'maryborough', u'continu', u'detent', u'centr', u'push']
[u'mauresmo', u'put', u'cloth', u'disput']
[u'mcdonald', u'report', u'profit', u'jump']
[u'mcgee', u'notch', u'prologu', u'victori']
[u'mcgradi', u'meet', u'aldoga', u'partner']
[u'milton', u'welcom', u'communiti', u'bank']
[u'minist', u'press', u'calder', u'fund']
[u'mitsubishi', u'australian', u'problem']
[u'back', u'call', u'boundari', u'chang']
[u'servic', u'west', u'gascoyn']
[u'child', u'protect', u'worker', u'appoint']
[u'embassi', u'receiv', u'iraq', u'threat']
[u'more', u'region', u'natur', u'disast', u'fund']
[u'jackson', u'play', u'fit', u'fear']
[u'copi', u'rogu', u'trade', u'report']
[u'nauru', u'dismiss', u'australian', u'lawyer']
[u'negropont', u'expect', u'takeov', u'post', u'iraq']
[u'execut', u'clarenc', u'council']
[u'nicklaus', u'player', u'renew', u'presid', u'rivalri']
[u'niue', u'seek', u'cyclon']
[u'korea', u'media', u'stun', u'press', u'freedom', u'group']
[u'noad', u'plea', u'lenienc', u'board', u'meet']
[u'probe', u'saint', u'claim', u'demetriou']
[u'board', u'consid', u'sanction', u'dog']
[u'consid', u'limit', u'govt', u'websit']
[u'worksaf', u'take', u'mediat', u'alleg', u'serious']
[u'nurs', u'seek', u'govt', u'talk']
[u'nurs', u'unhappi', u'work', u'hour', u'plan']
[u'hermit', u'sheep', u'get', u'haircut']
[u'oppn', u'question', u'fast', u'rail', u'timet']
[u'pakistan', u'scale', u'armi']
[u'park', u'council', u'prefer', u'hospit', u'site']
[u'peac', u'roadmap', u'dead', u'isra']
[u'perth', u'surgeon', u'disput', u'inquest', u'evid']
[u'philippin', u'proof', u'suspect']
[u'deni', u'intellig', u'cover']
[u'deni', u'take', u'joness', u'instruct', u'flint']
[u'polic', u'hunt', u'bank', u'bandit']
[u'polic', u'investig', u'fatal']
[u'polic', u'test', u'morecomb', u'investig']
[u'post', u'taliban', u'afghanistan', u'resum', u'execut']
[u'power', u'monopoli', u'breach', u'competit', u'law']
[u'power', u'restor', u'sydney', u'south', u'west']
[u'protest', u'fail', u'stop', u'shipment']
[u'public', u'local', u'govt', u'represent']
[u'qanta', u'mackay', u'flight', u'unlik', u'chang']
[u'subcontractor', u'foxtel', u'strike', u'hold']
[u'student', u'mobil', u'photographi']
[u'rain', u'threaten', u'ruin', u'seri']
[u'random', u'drug', u'test', u'catch', u'offend', u'armi']
[u'richard', u'fastest', u'targa', u'tasmania']
[u'richmond', u'spitter', u'hunt', u'head', u'north']
[u'rise', u'river', u'close', u'bruce', u'highway']
[u'road', u'safeti', u'oper', u'result', u'concern', u'polic']
[u'brew', u'council', u'motion']
[u'rubbish', u'clog', u'coastlin']
[u'arriv', u'melbourn', u'sydney', u'airport']
[u'saddam', u'get', u'birthday', u'visit', u'cross']
[u'nation', u'consid', u'feder']
[u'sand', u'bypass', u'cost', u'luca']
[u'santo', u'sale', u'moomba', u'explos']
[u'schuettler', u'return', u'form', u'continu']
[u'search', u'resum', u'miss']
[u'shooter', u'go', u'bang']
[u'soldier', u'face', u'armi', u'discharg', u'drug']
[u'spain', u'seek', u'exit', u'iraq']
[u'spider', u'seek', u'bridg', u'jumper']
[u'spitz', u'claim', u'pull', u'athen', u'game']
[u'lanka', u'continu', u'whitewash', u'demoralis']
[u'station', u'owner', u'rail', u'compo', u'offer', u'unfair']
[u'john', u'contract', u'boost', u'ambul', u'number']
[u'strong', u'economi', u'fail', u'benefit', u'youth']
[u'student', u'protest', u'iraq', u'flag']
[u'studi', u'rule', u'south', u'coast', u'rail', u'tunnel']
[u'support', u'fail', u'block', u'bashir', u'interview']
[u'support', u'gather', u'polic', u'question', u'bashir']
[u'suva', u'stand', u'funer', u'begin']
[u'sydney', u'polic', u'investig', u'inner', u'citi', u'murder']
[u'takeov', u'boost', u'burswood', u'share']
[u'takeov', u'continu', u'mildura']
[u'talk', u'focus', u'harbour', u'secur']
[u'sentenc', u'court', u'babi', u'batteri']
[u'teen', u'charg', u'attempt', u'murder', u'refus', u'bail']
[u'telstra', u'optus', u'fight', u'broadband', u'instal']
[u'thai', u'mosqu', u'shoot', u'end', u'violenc']
[u'tourism', u'council', u'welcom', u'increas', u'airlin']
[u'tourist', u'spend']
[u'tourist', u'tram', u'celebr', u'birthday']
[u'transport', u'help', u'seek', u'truscott', u'base', u'tribut']
[u'trapattoni', u'leav', u'euro', u'door', u'open', u'baggio']
[u'announc', u'return', u'ring']
[u'ugli', u'eadi', u'track', u'sydney']
[u'union', u'agreement', u'pave', u'abattoir', u'reopen']
[u'union', u'urg', u'account', u'english']
[u'free', u'trade', u'deal', u'pass', u'major', u'hurdl']
[u'reluct', u'start', u'fallujah', u'offens']
[u'russia', u'plan', u'destroy', u'chemic']
[u'stand', u'cotton', u'subsidi']
[u'target', u'jazeera', u'coverag', u'iraq']
[u'venter', u'join', u'krige', u'sidelin', u'head', u'butt']
[u'vienna', u'council', u'pooh', u'pooh', u'messi', u'hors']
[u'voter', u'urg', u'elect']
[u'widow', u'win', u'hospit', u'neglig', u'case']
[u'wilson', u'inlet', u'get', u'navig', u'boost']
[u'wine', u'link', u'lower', u'ovarian', u'cancer', u'rate']
[u'wit', u'verifi', u'jone', u'comment', u'law', u'say']
[u'wollongong', u'council', u'moot', u'rate', u'rise']
[u'woodlawn', u'site', u'green']
[u'wool', u'industri', u'high', u'hop', u'trade', u'agreement']
[u'worker', u'worri', u'mitsubishi', u'futur']
[u'world', u'market', u'buoy', u'confid', u'increas']
[u'challeng', u'affect', u'ban']
[u'zimbabw', u'talk', u'breakdown', u'aust', u'tour']
[u'court', u'stiff', u'return']
[u'flow', u'river', u'clean']
[u'abbott', u'question', u'foreign', u'train', u'doctor']
[u'ail', u'crawford', u'chanc', u'face', u'tiger']
[u'airspac', u'regul', u'chang', u'stay']
[u'alleg', u'toothfish', u'pirat', u'plead', u'guilti']
[u'allow', u'uniqu', u'murali', u'bowl', u'doosra', u'expert']
[u'commit', u'mentor', u'young', u'australian']
[u'amex', u'promot', u'australian', u'tourism']
[u'anderson', u'upbeat', u'water', u'reform']
[u'annan', u'warn', u'raid', u'make', u'iraq', u'stand', u'wors']
[u'appl', u'notch', u'music', u'download']
[u'argentina', u'winner', u'morocco']
[u'armi', u'fail', u'dead', u'son', u'mother', u'tell', u'inquiri']
[u'arrest', u'dont', u'deter', u'lake', u'cowal', u'protest']
[u'aussi', u'push', u'suspens', u'threat', u'report']
[u'aust', u'consid', u'send', u'militari', u'equip', u'iraqi']
[u'australian', u'labour', u'plan', u'spark', u'pacif']
[u'snatcher', u'face', u'manslaught', u'charg']
[u'bashir', u'releas', u'short', u'live']
[u'bevan']
[u'blaze', u'grip', u'texa', u'shop']
[u'bluescop', u'merger', u'boost', u'oversea', u'market', u'posit']
[u'breakthrough', u'zimbabw', u'cricket', u'race']
[u'bronco', u'begin', u'tuqiri', u'code', u'switch', u'talk']
[u'brown', u'remain', u'dragon', u'master']
[u'bryant', u'enter', u'plea', u'rape', u'charg', u'month']
[u'bulldog', u'saga', u'wont', u'stop', u'council', u'seek', u'game']
[u'bush', u'cheney', u'readi', u'sept', u'question']
[u'byron', u'seek', u'plan', u'power', u'chang']
[u'port', u'stephen', u'polic', u'boost']
[u'cancer', u'council', u'promot', u'regular', u'test']
[u'bomb', u'attack', u'kill', u'solid']
[u'park', u'accid', u'prove', u'cost']
[u'race', u'talk', u'like', u'drag']
[u'carr', u'back', u'appeal', u'film', u'shoot']
[u'celebr', u'childer', u'hostel', u'open']
[u'child', u'safeti', u'dept', u'launch', u'staff', u'drive']
[u'china', u'confirm', u'sar', u'case']
[u'china', u'iron', u'appetit', u'boost', u'north', u'west']
[u'china', u'warn', u'foreign', u'sar', u'risk']
[u'civilian', u'fallujah', u'fight', u'continu']
[u'clark', u'challeng', u'indigen']
[u'clark', u'challeng', u'suspens', u'despit', u'atsic', u'scrap']
[u'club', u'pub', u'smoke', u'inevit']
[u'colombian', u'school', u'accid', u'leav', u'dead']
[u'comcast', u'withdraw', u'disney']
[u'communiti', u'meet', u'back', u'retir', u'villag', u'plan']
[u'constructor', u'threaten', u'breakaway', u'championship']
[u'cosgrov', u'deni', u'collin', u'case', u'cover']
[u'cotton', u'compani', u'predict', u'profit', u'recoveri']
[u'council', u'adopt', u'rat', u'scheme']
[u'council', u'merger', u'resid', u'withhold', u'rat']
[u'council', u'put', u'extra', u'fund', u'public', u'asset']
[u'council', u'seek', u'feder', u'road', u'fund']
[u'council', u'welcom', u'pension', u'discount', u'help']
[u'countrylink', u'worker', u'strike', u'cut']
[u'court', u'halt', u'blue', u'mountain', u'film']
[u'court', u'revamp', u'near']
[u'darwin', u'undertak', u'park', u'review']
[u'deadlin', u'hospit', u'secur']
[u'death', u'toll', u'rise', u'iraq', u'violenc', u'continu']
[u'democrat', u'koala', u'cull']
[u'detect', u'treat', u'test', u'tube', u'diseas']
[u'doctor', u'ask', u'alter', u'medic', u'record', u'inquiri']
[u'want', u'inquiri', u'model', u'death']
[u'drench', u'hurt', u'pastur']
[u'drug', u'oper', u'continu', u'follow', u'raid']
[u'effort', u'begin', u'prevent', u'temporari', u'hospit', u'closur']
[u'embassi', u'guard', u'suspend', u'hitler', u'salut']
[u'english', u'administr', u'quit', u'zimbabw', u'tour']
[u'wife', u'england', u'captain', u'adam', u'arrest']
[u'fallujah', u'strike', u'continu', u'despit', u'ongo', u'talk']
[u'farmer', u'despit', u'sugar', u'packag']
[u'farmer', u'warn', u'push', u'crop', u'domest']
[u'fear', u'truck', u'plan', u'cost', u'region', u'victorian']
[u'feder', u'air', u'northern', u'rail', u'concern']
[u'ferguson', u'eye', u'gerrard', u'possibl', u'skipper']
[u'flood', u'keep', u'highway']
[u'longreach', u'rouseabout', u'priest']
[u'fund', u'boost', u'disabl', u'servic']
[u'game', u'organis', u'miss', u'stadium', u'roof', u'deadlin']
[u'german', u'shepherd', u'savag', u'attack', u'retain', u'guard']
[u'germani', u'hammer', u'night', u'upset']
[u'globalis', u'research', u'win', u'societi', u'award']
[u'govt', u'ask', u'help', u'shoot', u'victim']
[u'govt', u'fail', u'contact', u'nurs', u'wage', u'disput']
[u'govt', u'urg', u'build', u'popul']
[u'graffiti', u'plan', u'consult', u'wast', u'time']
[u'green', u'candid', u'contest', u'barker']
[u'green', u'claim', u'discharg', u'gunn', u'share']
[u'green', u'seek', u'film', u'licenc', u'review']
[u'green', u'urg', u'prioriti', u'water', u'conserv']
[u'group', u'call', u'hall', u'waterfront']
[u'group', u'critic', u'road', u'chang']
[u'group', u'push', u'invest', u'indigen']
[u'group', u'sink', u'replica', u'ship', u'attack']
[u'henin', u'hardenn', u'doubt', u'french', u'open']
[u'high', u'court', u'overturn', u'children', u'detent', u'decis']
[u'hop', u'dawson', u'callid', u'campus']
[u'howard', u'seek', u'advic', u'flint', u'letter']
[u'inspect', u'youth', u'game', u'novemb']
[u'job', u'timber', u'close']
[u'jone', u'hit', u'claim']
[u'justic', u'minist', u'inspect', u'grafton', u'jail']
[u'kelli', u'claim', u'kilo', u'time', u'trial', u'sydney']
[u'king', u'island', u'landown', u'compens']
[u'kyoto', u'benefit', u'outweigh', u'negat', u'impact', u'latham']
[u'landhold', u'urg', u'bait', u'dingo']
[u'latham', u'milk', u'vote', u'despit', u'deregul']
[u'lava', u'flow', u'mount', u'bagana']
[u'law', u'claim', u'flint', u'letter']
[u'lawyer', u'challeng', u'bush', u'author', u'detaine', u'case']
[u'liber', u'question', u'icac', u'appoint']
[u'lion', u'eager', u'challeng', u'crown']
[u'long', u'wait', u'wineri']
[u'mactier', u'eadi', u'lead', u'track', u'champ', u'qualifi']
[u'charg', u'haymarket', u'murder']
[u'face', u'court', u'haymarket', u'murder']
[u'map', u'spell', u'reef', u'protect', u'zone']
[u'maradona', u'friend', u'cuba', u'castro', u'guest']
[u'market', u'unsettl', u'aussi', u'dollar', u'tumbl']
[u'marsh', u'sing', u'prais', u'england', u'pacemen']
[u'mar', u'rover', u'start', u'research', u'complet']
[u'master', u'mickelson', u'aim', u'major']
[u'mayor', u'claim', u'good', u'councillor', u'relationship']
[u'mayor', u'seek', u'speed', u'limit', u'boost']
[u'mbeki', u'includ', u'women', u'cabinet']
[u'mcgee', u'hold', u'romandi', u'lead']
[u'media', u'slam', u'howard', u'fiji', u'funer']
[u'menstruat', u'increas', u'sport', u'injuri', u'risk', u'studi']
[u'militari', u'barrist', u'want', u'defenc', u'concern', u'air']
[u'mitsubishi', u'plan', u'bail', u'report']
[u'mix', u'respons', u'retir', u'villag', u'plan']
[u'moratorium', u'place', u'king', u'land', u'clear']
[u'mother', u'bond', u'babi', u'eat', u'ecstasi']
[u'moya', u'lead', u'clay', u'court', u'specialist', u'barcelona']
[u'nation', u'push', u'tourism', u'portfolio', u'futur']
[u'neanderth', u'slow', u'think', u'studi']
[u'charg', u'lay', u'suspect']
[u'wagga', u'hospit', u'time']
[u'korea', u'agre', u'fresh', u'nuclear', u'talk']
[u'govt', u'crack', u'home', u'build', u'sit']
[u'crack', u'prison', u'fake', u'claim']
[u'trafford', u'terror', u'suspect', u'free', u'charg']
[u'olyroo', u'tunisia']
[u'kill', u'injur', u'highway', u'crash']
[u'opal', u'miner', u'sign', u'indigen', u'land', u'agreement']
[u'order', u'begin', u'action', u'demand']
[u'pacif', u'island', u'seek', u'rule']
[u'parliament', u'urg', u'home', u'shoot']
[u'passiv', u'smoke', u'kill', u'hotel', u'worker', u'cancer']
[u'pois', u'announc', u'sugar', u'rescu', u'deal']
[u'turn', u'gladston', u'invit']
[u'unawar', u'fighter', u'jet', u'cost', u'blowout']
[u'seek', u'answer', u'pipelin', u'talk', u'loom']
[u'polic', u'probe', u'cattl', u'poison']
[u'poll', u'show', u'sharon', u'lose', u'support', u'gaza', u'plan']
[u'pope', u'infal', u'down', u'mexico']
[u'port', u'wait', u'injuri', u'news', u'ahead', u'magpi', u'clash']
[u'qanta', u'link', u'continu', u'servic']
[u'qanta', u'manag', u'hear', u'mackay', u'concern']
[u'qualifi', u'push', u'verkerk', u'munich']
[u'quarantin', u'wast', u'procedur', u'inadequ', u'opposit']
[u'quick', u'start', u'council', u'infight']
[u'racq', u'seek', u'newel', u'bypass', u'talk']
[u'rain', u'end', u'cotton', u'pick']
[u'risk', u'rise', u'hollywood', u'budget']
[u'roger', u'swan', u'debut']
[u'romania', u'crush', u'germani', u'euro', u'warm']
[u'rumsfeld', u'releas', u'controversi', u'mosqu', u'pictur']
[u'saint', u'tiger', u'clear', u'collus', u'claim']
[u'salari', u'problem', u'cost', u'club', u'thousand']
[u'launch', u'indigen', u'home', u'loan', u'scheme']
[u'school', u'mainten', u'budget', u'boost']
[u'schwab', u'happi', u'dockland', u'secur']
[u'second', u'flat', u'blaze', u'more']
[u'charg', u'iraqi', u'prison', u'abus']
[u'soorley', u'tell', u'darwin', u'mall']
[u'spain', u'discuss', u'iraq', u'resolut', u'berlin']
[u'specul', u'sailor', u'jump', u'ship']
[u'spray', u'restrict', u'combat', u'graffiti']
[u'star', u'forc', u'help', u'whyalla', u'sieg']
[u'strong', u'case', u'keep', u'terrorist', u'suspect', u'jail']
[u'student', u'stage', u'confer']
[u'sugar', u'industri', u'receiv', u'sweeten']
[u'support', u'cost', u'glen', u'inn', u'water']
[u'sydney', u'sewag', u'link', u'algal', u'bloom']
[u'wide', u'mistreat', u'iraqi', u'prison', u'report']
[u'tamworth', u'softbal', u'head', u'athen']
[u'teen', u'court', u'taxi', u'arm', u'robberi']
[u'telstra', u'call', u'charg']
[u'thai', u'troop', u'send', u'south', u'quell', u'unrest']
[u'time', u'warner', u'profit', u'exceed', u'forecast']
[u'tuqiri', u'tight', u'lip', u'code', u'switch', u'specul']
[u'fever', u'grip', u'iran']
[u'council', u'adopt', u'terrorist', u'arm']
[u'evacu', u'staff', u'ambon', u'fight', u'continu']
[u'union', u'boss', u'meet', u'mitsubishi', u'australia', u'manag']
[u'union', u'concern', u'labor', u'plan', u'undermin', u'femal']
[u'union', u'mitsubishi', u'meet', u'construct']
[u'expect', u'mandat', u'troop', u'iraq']
[u'forc', u'renew', u'strike', u'fallujah']
[u'forc', u'leav', u'fallujah']
[u'general', u'suspend', u'iraq', u'prison', u'abus']
[u'issu', u'travel', u'warn', u'israel']
[u'rate', u'fear', u'drag', u'share', u'dollar']
[u'rush', u'tank', u'iraq']
[u'vale', u'misdirect', u'letter', u'support', u'jone']
[u'vanston', u'sympathet', u'child', u'detaine']
[u'venus', u'find', u'form', u'poland']
[u'nurs', u'await', u'rule', u'work', u'ban']
[u'victoria', u'appoint', u'polic', u'ethic', u'head']
[u'violenc', u'threaten', u'grind', u'thai', u'travel', u'industri']
[u'visitor', u'centr', u'high', u'tourism', u'meet', u'agenda']
[u'team', u'instrument', u'credit', u'scam', u'verdict']
[u'wheat', u'grower', u'record', u'crop']
[u'widow', u'plead', u'calder', u'fund']
[u'windi', u'england', u'seri', u'washout']
[u'wind', u'chang', u'uncertainti', u'sweep']
[u'woman', u'die', u'snatch', u'incid']
[u'youth', u'move', u'adult', u'remand', u'centr']
[u'year', u'old', u'refus', u'bail', u'steal', u'charg']
[u'kick', u'start', u'public', u'transport', u'plan']
[u'goal', u'kick', u'race', u'wide', u'open']
[u'agassi', u'skip', u'clay', u'court', u'warm']
[u'agforc', u'welcom', u'lake', u'creek', u'plan']
[u'vow', u'protect', u'coastlin']
[u'qaeda', u'tape', u'threaten', u'deni', u'jordan', u'bomb', u'plot']
[u'annan', u'ask', u'arafat', u'gaza', u'withdraw', u'chanc']
[u'archer', u'lift', u'spirit', u'liverpool']
[u'attempt', u'murder', u'polic', u'offic']
[u'australia', u'welcom', u'mitsubishi', u'head']
[u'autopilot', u'take', u'captain', u'snooz']
[u'sunbeam', u'talk', u'continu']
[u'azing', u'sauer', u'lead', u'orlean']
[u'maker', u'find', u'profit', u'bag', u'bush']
[u'bank', u'routin', u'trade', u'govt']
[u'rais', u'expect']
[u'bashir', u'deni', u'terrorist', u'link']
[u'bashir', u'rearrest', u'support', u'riot']
[u'beatti', u'launch', u'laundri', u'escape', u'investig']
[u'beatti', u'push', u'labour', u'march']
[u'beckham', u'eye', u'return', u'england']
[u'beckham', u'renew', u'argentin', u'rivalri']
[u'bone', u'belong', u'local']
[u'critic', u'condit', u'har', u'race']
[u'defend', u'diesel', u'fuel']
[u'britain', u'strip', u'world', u'championship', u'relay', u'medal']
[u'british', u'polic', u'releas', u'terror', u'suspect']
[u'bruce', u'flood', u'proof', u'promis', u'sink']
[u'burmes', u'opposit', u'set', u'demand', u'nation']
[u'bush', u'cheney', u'answer', u'question']
[u'bush', u'cheney', u'face', u'inquiri']
[u'inform', u'display', u'form', u'transport']
[u'carer', u'welcom', u'backpack', u'childer']
[u'carr', u'suggest', u'overturn', u'film', u'decis']
[u'cassel', u'determin', u'fight', u'athen', u'spot']
[u'castrilli', u'concern', u'track', u'delay']
[u'chant', u'moot', u'staff', u'drug', u'train']
[u'chief', u'dramat']
[u'children', u'wont', u'automat', u'return', u'detent']
[u'china', u'confirm', u'sar', u'death']
[u'china', u'sign', u'north', u'west', u'shelf', u'deal']
[u'claim', u'energi', u'target', u'need', u'follow', u'packag']
[u'coach', u'ring', u'chang', u'ahead', u'round']
[u'communiti', u'servic', u'ticket', u'scalper']
[u'coron', u'tell', u'polic', u'discuss', u'warn']
[u'council', u'consid', u'deer', u'cull']
[u'council', u'know', u'origin', u'toxic', u'substanc']
[u'council', u'cold', u'shower', u'boyl']
[u'countrylink', u'review', u'anger', u'pension']
[u'court', u'dash', u'wahid', u'hop', u'presidenti', u'comeback']
[u'court', u'declar', u'snowi', u'mountain', u'shire', u'elect', u'void']
[u'court', u'tell', u'attack', u'show', u'remors']
[u'court', u'tell', u'cannib', u'claim', u'absurd']
[u'darwin', u'aim', u'tamworth', u'indigen', u'music']
[u'decis', u'snowi', u'elect', u'expect']
[u'develop', u'aim', u'altern', u'energi']
[u'diamond', u'face', u'fight', u'athen', u'spot']
[u'diamond', u'pledg', u'counter', u'appeal']
[u'england', u'tour', u'zimbabw']
[u'england', u'woodgat', u'euro']
[u'commend', u'film', u'backdown']
[u'europ', u'surviv', u'agenda']
[u'expans', u'fund', u'charl', u'darwin']
[u'fallujah', u'fight', u'continu', u'despit', u'deal']
[u'fiji', u'mourn', u'mara']
[u'filmmak', u'drop', u'blue', u'mountain', u'appeal']
[u'destroy', u'storag']
[u'flint', u'rule', u'investig']
[u'damag', u'lockyer', u'valley', u'crop']
[u'power', u'failur', u'hockey', u'seri']
[u'ford', u'smash', u'mcgee', u'junior', u'pursuit', u'world', u'record']
[u'question', u'alleg', u'heroin', u'syndic']
[u'offer', u'margin', u'econom', u'benefit']
[u'fund', u'estuari', u'improv']
[u'fossil', u'fling', u'fan', u'flock']
[u'golf', u'ball', u'injuri', u'damag', u'stand']
[u'googl', u'file', u'share', u'offer']
[u'govern', u'deni', u'gag', u'hospit', u'inquiri']
[u'govt', u'detain', u'children', u'despit', u'court', u'case']
[u'govt', u'expect', u'decis', u'nurs', u'disput']
[u'govt', u'environment', u'credenti', u'criticis']
[u'govt', u'urg', u'condemn', u'alleg', u'iraqi', u'prison', u'abus']
[u'govt', u'warn', u'perform', u'provid']
[u'grower', u'seek', u'support', u'appl', u'import', u'protest']
[u'high', u'court', u'hear', u'gill', u'case']
[u'hockeyroo', u'recov']
[u'hous', u'group', u'welcom', u'break', u'home']
[u'hous', u'loan', u'jump']
[u'howard', u'condemn', u'iraq', u'prison', u'alleg', u'treatment']
[u'howard', u'disput', u'intellig', u'concern']
[u'howard', u'find', u'synergi', u'newman']
[u'announc', u'share', u'buyback', u'detail']
[u'illawarra', u'seek', u'treatment', u'hunter']
[u'indonesian', u'general', u'jail', u'year']
[u'inquiri', u'seek', u'rail', u'line', u'closur']
[u'investor', u'switch', u'safe', u'stock']
[u'ipart', u'recommend', u'week', u'electr', u'rise']
[u'japan', u'award', u'tassi', u'fisheri', u'scientist']
[u'upstag', u'sorenstam', u'georgia']
[u'labor', u'say', u'trade', u'deal', u'benefit', u'sell']
[u'lack', u'univers', u'place', u'wast', u'talent']
[u'larsson', u'beef', u'sweden', u'attack', u'euro']
[u'latham', u'renew', u'call', u'inquiri']
[u'latham', u'tour', u'continu']
[u'leed', u'slap', u'price', u'smith']
[u'lippi', u'split', u'juventus']
[u'local', u'concern', u'yellabinna', u'mine']
[u'local', u'news', u'die']
[u'lung', u'cancer', u'patient', u'benefit', u'drug', u'studi']
[u'major', u'drug', u'confer', u'alic']
[u'maradona', u'leav', u'hospit', u'day', u'heart']
[u'mauresmo', u'battl', u'past', u'daniilidou', u'warsaw']
[u'mcgee', u'retain', u'lead', u'romandi', u'tour']
[u'mental', u'health', u'problem', u'longer', u'taboo', u'say']
[u'milan', u'touch', u'distanc', u'scudetto']
[u'mill', u'criticis', u'labor', u'intern']
[u'minist', u'plan', u'plea', u'mitsubishi', u'futur']
[u'minist', u'remain', u'silent', u'wineg', u'affair']
[u'misdirect', u'strengthen', u'inquiri']
[u'misiti', u'drop', u'swan', u'clash']
[u'mitsubishi', u'extraordinari', u'sharehold']
[u'fund', u'announc', u'tackl', u'drug', u'problem']
[u'mother', u'assault', u'leav', u'babi', u'epilepsi']
[u'mother', u'unhappi', u'vote', u'right']
[u'moya', u'barcelona', u'open']
[u'work', u'schooler', u'servic']
[u'murder', u'charg', u'husband']
[u'murray', u'hop', u'solid', u'attack']
[u'naracoort', u'traffic', u'microscop']
[u'face']
[u'gambl', u'rule', u'come', u'play']
[u'studi', u'ramp', u'benefit']
[u'untoward', u'jone', u'friendship', u'say']
[u'nrma', u'want', u'motorist', u'send', u'postcard']
[u'deni', u'gag', u'health', u'inquiri', u'wit']
[u'camel', u'industri']
[u'govt', u'accus', u'withhold', u'educ', u'centr']
[u'nurs', u'strike', u'escal']
[u'jail', u'euthanasia', u'campaign']
[u'olymp', u'kwon', u'team', u'choos']
[u'miss', u'placement', u'nelson']
[u'opposit', u'urg', u'inquiri', u'landfil']
[u'outback', u'muster', u'attract', u'drove', u'charact']
[u'oyster', u'judg', u'excel']
[u'packag', u'start', u'worri', u'suppli']
[u'panel', u'form', u'continu', u'deliveri', u'indigen']
[u'panther', u'hold', u'tiger']
[u'park', u'closur', u'protect', u'inhabit']
[u'pest', u'increas', u'ideal', u'condit']
[u'distanc', u'telstra', u'price', u'rise']
[u'welcom', u'high', u'court', u'detent', u'decis']
[u'polic', u'hop', u'catch', u'credit', u'card', u'fraudster']
[u'polic', u'issu', u'holiday', u'drive', u'warn']
[u'polic', u'promis', u'success', u'bashir', u'prosecut']
[u'polic', u'request', u'calm', u'bashir', u'arrest']
[u'pope', u'call', u'iraq', u'hostag', u'releas', u'thousand']
[u'popul', u'increas', u'pressur', u'hospit']
[u'porsch', u'jail', u'crime', u'spree']
[u'port', u'moresbi', u'resid', u'prepar', u'weekend', u'water']
[u'port', u'face', u'medium', u'terrorist', u'risk']
[u'posit', u'respons', u'sugar', u'packag']
[u'power', u'benefit', u'sugar', u'sweeten']
[u'primari', u'product', u'tip', u'rise']
[u'prison', u'boss', u'sue', u'fairfax', u'defam']
[u'qatar', u'jazeera', u'concern']
[u'interview', u'spit', u'incid']
[u'question', u'council', u'donat', u'generos']
[u'rain', u'herald', u'recoveri']
[u'ravensthorp', u'infrastructur', u'talk', u'continu']
[u'real', u'barca', u'lead', u'chase', u'nistelrooy']
[u'recidivist', u'driver', u'fin']
[u'record', u'loan', u'figur', u'renew', u'rate', u'specul']
[u'region', u'intellig', u'spot', u'say', u'howard']
[u'research', u'heart', u'stem', u'cell', u'beat']
[u'richmond', u'triumph', u'nail', u'biter']
[u'havret', u'lead', u'italian', u'open']
[u'santini', u'warn', u'french', u'english', u'fixat']
[u'schuettler', u'good', u'countryman', u'haa']
[u'scientist', u'believ', u'atlanti', u'cyprus']
[u'sculptur', u'featur', u'directori']
[u'seab', u'disput', u'lead', u'elect']
[u'search', u'miss', u'scale']
[u'secur', u'tight', u'jackson', u'return', u'court']
[u'sesam', u'street', u'head', u'afghanistan']
[u'sharehold', u'seek', u'director', u'remov']
[u'sister', u'stand', u'brother', u'unlaw', u'case']
[u'site', u'portugues', u'shipwreck', u'stay', u'secret']
[u'solicitor', u'jail', u'fraud', u'charg']
[u'spacecraft', u'leav', u'intern', u'space', u'station']
[u'space', u'station', u'trio', u'return', u'safe', u'earth']
[u'lanka', u'complet', u'whitewash', u'zimbabw']
[u'stock', u'price', u'slide', u'rat', u'specul']
[u'swift', u'good', u'thunderbird']
[u'nurs', u'sorri', u'plan', u'industri', u'action']
[u'taxi', u'robberi', u'imposs', u'prevent', u'bemros']
[u'teacher', u'hold', u'stop', u'work', u'meet', u'disput']
[u'teacher', u'urg', u'accept', u'rise']
[u'telstra', u'defend', u'price', u'increas']
[u'thai', u'extremist', u'warn', u'tourist', u'stay', u'away']
[u'thai', u'separatist', u'warn', u'foreign', u'stay', u'away']
[u'thorp', u'consid', u'zimbabw', u'boycott']
[u'charg', u'loui', u'vuitton', u'robberi']
[u'earli', u'discuss', u'mitsubishi', u'futur']
[u'toxic', u'substanc', u'near', u'school']
[u'tribun', u'boost', u'mayor', u'salari']
[u'tribun', u'overrul', u'discrimin', u'case']
[u'injur', u'explos']
[u'union', u'claim', u'understaf', u'help', u'jail', u'escap']
[u'warn', u'staff', u'thai', u'tourist', u'spot']
[u'consid', u'creat', u'peacekeep', u'forc']
[u'general', u'scrutini', u'iraqi', u'prison', u'case']
[u'hammer', u'thrower', u'drug']
[u'marin', u'withdraw', u'fallujah']
[u'station', u'boycott', u'troop', u'tribut']
[u'teacher', u'sign', u'deal']
[u'villeneuv', u'manag']
[u'welfar', u'group', u'consid', u'name', u'home', u'detent']
[u'western', u'power', u'fail', u'prevent', u'suppli', u'crisi']
[u'wheat', u'price', u'claim', u'worri', u'vail']
[u'window', u'fall', u'neglig', u'claim', u'dismiss']
[u'youth', u'trial', u'murder']
[u'zimbabw', u'guinea', u'discuss', u'return', u'mercenari']
[u'zimbabw', u'rebel', u'condit', u'return']
[u'zulu', u'parti', u'reject', u'seat', u'africa', u'cabinet']
[u'vietnames', u'boat', u'sink']
[u'kill', u'nepal', u'crash']
[u'kill', u'china', u'coal', u'blast']
[u'accid', u'spark', u'polic', u'warn']
[u'airlin', u'apologis', u'snooz', u'control', u'pilot']
[u'alic', u'consid', u'itiner', u'scheme']
[u'want', u'terror', u'list']
[u'april', u'bloodiest', u'month', u'iraq']
[u'arab', u'condemn', u'iraq', u'prison', u'photo']
[u'arsenal', u'play', u'dull', u'goalless', u'draw']
[u'auckland', u'shark', u'super', u'blue']
[u'australian', u'kill', u'saudi', u'attack']
[u'australia', u'respons', u'climat', u'chang', u'refuge']
[u'australia', u'roger', u'hit', u'derbyshir']
[u'penguin', u'build', u'bob', u'brand']
[u'beachgoer', u'urg', u'swim', u'winter', u'flag']
[u'blair', u'play', u'cool', u'dope', u'smoke', u'parti', u'report']
[u'bomber', u'enjoy', u'half', u'time', u'lead']
[u'bomber']
[u'bosnian', u'serb', u'reveal', u'srebrenica', u'grave']
[u'brazil', u'troop', u'tackl', u'shanti', u'town', u'unrest']
[u'brent', u'price', u'hit', u'year', u'plus', u'high']
[u'britian', u'probe', u'tortur', u'claim', u'iraq']
[u'brumbi', u'super', u'semi']
[u'bulldog', u'jump', u'roo', u'spirit', u'fightback']
[u'bush', u'acknowledg', u'tough', u'time', u'iraq']
[u'bush', u'blair', u'lament', u'abus', u'iraqi', u'prison']
[u'cancer', u'death', u'fear', u'spark', u'soil', u'test']
[u'chelsea', u'desailli', u'match']
[u'child', u'die', u'boat', u'collis']
[u'china', u'confirm', u'sar', u'case']
[u'club', u'disput', u'game', u'machin', u'charg']
[u'cofidi', u'announc', u'return', u'cycl']
[u'cooper', u'allow', u'fals', u'bill', u'crackdown']
[u'count', u'begin', u'tassi', u'upper', u'hous', u'seat']
[u'court', u'adjourn', u'mine', u'death', u'inquiri']
[u'courtney', u'love', u'plead', u'innoc', u'drug', u'charg', u'case']
[u'cowboy', u'surviv', u'eel', u'comeback']
[u'cowboy', u'withstand', u'eel', u'fightback']
[u'crusad', u'ensur', u'final', u'berth']
[u'daimlerchrysl', u'retain', u'stake', u'mitsubishi']
[u'dandenong', u'school', u'suspici']
[u'davydenko', u'end', u'schuettler', u'munich', u'hop']
[u'deadlin', u'construct']
[u'detent', u'order', u'spark', u'child', u'asylum', u'seeker', u'fear']
[u'docker', u'eagl', u'second']
[u'downer', u'welcom', u'expans']
[u'dragon', u'shark', u'break']
[u'drug', u'support', u'group', u'seek', u'famili', u'fund', u'boost']
[u'eadi', u'claim', u'sprint', u'crown']
[u'etoo', u'name', u'african', u'footbal', u'year']
[u'herald', u'expans']
[u'fallujah', u'give', u'iraqi', u'general', u'hero', u'welcom']
[u'fear', u'rule', u'chang', u'weaken', u'salmon', u'protect']
[u'figur', u'highlight']
[u'face', u'court', u'drug', u'import', u'charg']
[u'freightlink', u'track', u'meet', u'cargo', u'target']
[u'german', u'daili', u'welcom', u'state', u'nude', u'photo']
[u'googl', u'plan', u'foundat', u'target', u'global', u'ill']
[u'govt', u'say', u'near', u'million', u'nigerian']
[u'groom', u'china', u'master', u'lead']
[u'har', u'race', u'accid', u'investig']
[u'hockeyroo', u'hammer', u'india']
[u'homemad', u'landmin', u'kill', u'filipino', u'rebel']
[u'hornbi', u'bag', u'dragon', u'hammer', u'shark']
[u'hornbi', u'bag', u'dragon']
[u'hospit', u'bomb', u'hoax', u'disrupt', u'patient', u'care']
[u'housewif', u'partner', u'refus', u'bail', u'heroin', u'charg']
[u'hous', u'sophi', u'choic', u'asylum', u'seeker']
[u'howard', u'offer', u'sugar', u'pension', u'deal']
[u'inadequ', u'drug', u'research', u'leav', u'children', u'pain']
[u'independ', u'issu', u'underpin', u'caledonia', u'poll']
[u'intellig', u'cut', u'prompt', u'inquiri']
[u'jackson', u'plead', u'guilti', u'child', u'charg']
[u'japanes', u'favour', u'revis', u'pacifist', u'constitut']
[u'servic', u'touch', u'kununurra']
[u'kiwi', u'wrap', u'bond', u'cotton', u'wool']
[u'knight', u'surg', u'away', u'south']
[u'koppel', u'elev', u'fall', u'polit']
[u'labor', u'seek', u'flint', u'ministeri', u'scalp']
[u'larsson', u'sweden']
[u'lomu', u'lift', u'privat', u'life', u'violenc']
[u'long', u'stay', u'corps', u'fals', u'passport']
[u'maradona', u'leav', u'hospit', u'make', u'appear']
[u'marin', u'hand', u'fallujah', u'saddam', u'general']
[u'martin', u'track', u'elwick', u'seat']
[u'mauresmo', u'warsaw', u'venus', u'semi']
[u'mcgee', u'slip', u'romandi', u'stand']
[u'mediat', u'defus', u'wadey', u'standoff']
[u'medic', u'report', u'confirm', u'akhtar', u'injuri']
[u'mix', u'reaction', u'screen', u'dead']
[u'demand', u'italian', u'hostag', u'report']
[u'member', u'boost', u'trade', u'power']
[u'inquiri', u'need', u'milit', u'death', u'thailand']
[u'norway', u'envoy', u'bid', u'reviv', u'tamil', u'talk']
[u'meet', u'bypass']
[u'minist', u'resign', u'legisl']
[u'oppn', u'make', u'defenc', u'suppli', u'pledg']
[u'outback', u'gather', u'honour', u'william']
[u'pedal', u'power', u'back', u'bike', u'bus', u'plan']
[u'polic', u'address', u'forens', u'test', u'concern']
[u'polic', u'appeal', u'asian', u'communiti', u'murder', u'probe']
[u'polic', u'defend', u'action', u'sydney', u'street', u'protest']
[u'polic', u'sweet', u'solut', u'brawler']
[u'polic', u'halt', u'search', u'miss', u'bushwalk']
[u'polic', u'probe', u'jogger', u'death']
[u'polic', u'prosecutor', u'region', u'option']
[u'await', u'road', u'fund', u'boost']
[u'rain', u'mar', u'supercar', u'seri']
[u'rain', u'wash', u'play', u'orlean', u'classic']
[u'rann', u'seek', u'daimlerchrysl', u'assur']
[u'remot', u'school', u'win', u'film', u'award']
[u'reopen', u'bed', u'reliev', u'nurs', u'stress']
[u'report', u'lament', u'zimbabw', u'press', u'freedom', u'record']
[u'right', u'wing', u'colombian', u'paramilitari', u'strangl', u'report']
[u'rossi', u'smash', u'record', u'take', u'provision', u'pole']
[u'rust', u'sentenc', u'bouy', u'victim', u'support', u'group']
[u'ryle', u'long', u'await', u'return']
[u'saddam', u'soldier', u'patrol', u'fallujah']
[u'sadr', u'condemn', u'move', u'defus', u'fallujah']
[u'african', u'secur', u'worker', u'urg', u'snub', u'iraq', u'work']
[u'saint', u'lion', u'thriller']
[u'sceptic', u'fail', u'dampen', u'celebr']
[u'second', u'wash', u'milan', u'cours', u'get']
[u'serbia', u'ponder', u'case', u'miss', u'monkey']
[u'shave', u'polit', u'comeback', u'track']
[u'shave', u'vie', u'spot', u'liber', u'ticket']
[u'slowdown', u'melbourn', u'hous', u'market']
[u'snapshot', u'tasmanian', u'histori', u'collect', u'onlin']
[u'solar', u'school', u'teach', u'sustain', u'live']
[u'song', u'kane', u'share', u'lead', u'tesk']
[u'springborg', u'renew', u'conserv', u'parti', u'push']
[u'lucia', u'windi', u'england', u'clash']
[u'streak', u'rebel', u'zimbabw', u'team']
[u'strike', u'threaten', u'alitalia', u'bankruptci']
[u'swan', u'litmus', u'test', u'bomber', u'lloyd']
[u'tah', u'fight', u'final', u'place']
[u'tah', u'see', u'light', u'sydney']
[u'tasmanian', u'turn', u'earli', u'vote']
[u'poppi', u'farmer', u'struggl', u'current', u'climat']
[u'teach', u'offer', u'larg', u'unfair']
[u'kill', u'rome', u'hotel']
[u'tight', u'secur', u'dublin', u'enlarg']
[u'seed', u'tumbl', u'barcelona']
[u'trio', u'court', u'supermarket', u'arm', u'robberi']
[u'tunisia', u'extend', u'press', u'freedom', u'crackdown', u'report']
[u'back', u'haiti', u'peac', u'forc']
[u'union', u'target', u'govern', u'march']
[u'unit', u'kill', u'nistelrooy', u'kean', u'rumour']
[u'move', u'forward', u'syrian', u'sanction']
[u'seek', u'muslim', u'occupi', u'iraq']
[u'stock', u'fall', u'rate', u'fear']
[u'warn', u'nepali', u'terror', u'threat']
[u'vietnames', u'general', u'warn', u'doom', u'iraq']
[u'vietnames', u'offici', u'hold', u'littl', u'hope', u'miss']
[u'violenc', u'mar', u'effort', u'reclaim', u'street']
[u'voic', u'base']
[u'waratah', u'blow', u'otago']
[u'urg', u'tech', u'creativ']
[u'weather', u'heat', u'melbourn']
[u'western', u'kill', u'saudi', u'attack']
[u'white', u'hous', u'denounc', u'iraq', u'prison', u'abus']
[u'wit', u'seek', u'pedestrian', u'accid']
[u'worker', u'worldwid', u'stage', u'demonstr']
[u'aborigin', u'group', u'health', u'concern']
[u'agforc', u'seek', u'widen', u'howard', u'sugar', u'deal']
[u'alic', u'blackout', u'boost', u'power', u'inquiri', u'call']
[u'appal', u'tell', u'respect', u'geneva', u'convent']
[u'april', u'record', u'drop', u'internet']
[u'aussi', u'pair', u'share', u'china', u'master']
[u'australian', u'embrac', u'mobil', u'internet']
[u'australia', u'share', u'respons', u'iraqi', u'welfar']
[u'beckham', u'stay', u'madrid', u'report']
[u'bodi', u'search', u'fishermen']
[u'bodi', u'miss', u'german', u'secur', u'offic', u'discov']
[u'bright', u'domin', u'auckland']
[u'brush', u'fenc', u'fire', u'caus', u'havoc', u'adelaid']
[u'cabrera', u'set', u'pace', u'rain', u'delay', u'italian', u'open']
[u'cannon', u'hospitalis', u'night', u'club', u'attack']
[u'castro', u'vow', u'cuban', u'social', u'surviv', u'bush']
[u'cat', u'click', u'crow']
[u'childcar', u'union', u'seek', u'budget', u'commit']
[u'clan', u'member', u'club', u'disput', u'presid']
[u'corbel', u'issu', u'nurs', u'threat']
[u'costello', u'promis', u'fund', u'scientif', u'research']
[u'costello', u'promis', u'spend', u'tax']
[u'look', u'lure', u'member']
[u'demon', u'blue', u'long', u'break']
[u'demon', u'demolish', u'carlton']
[u'depor', u'deal', u'heavi', u'blow', u'real', u'titl', u'hop']
[u'disabl', u'fund', u'welcom', u'relief', u'carer']
[u'dissid', u'director', u'wont', u'seek', u'elect']
[u'owner', u'protest', u'inner', u'sydney']
[u'dog', u'lead', u'tabl', u'clash']
[u'dog', u'snatch', u'stay']
[u'elli', u'lead', u'rain', u'hit', u'orlean', u'classic']
[u'england', u'defenc', u'crisi', u'woodgat', u'rule']
[u'entir', u'famili']
[u'ervin', u'chigumbura', u'boost', u'zimbabw', u'streak']
[u'estat', u'chase', u'agent', u'warn', u'fin']
[u'timor', u'cooper', u'wiranto', u'elect']
[u'celebr', u'dublin']
[u'expo', u'nurs']
[u'feder', u'roddick', u'give', u'tough', u'draw', u'rome']
[u'govt', u'talk', u'action', u'child', u'protect']
[u'fellow', u'worker', u'kill', u'australian', u'saudi', u'attack']
[u'fittler', u'say', u'goodby']
[u'fittler', u'say', u'season']
[u'foreign', u'contractor', u'kill', u'bomb', u'attack']
[u'champion', u'gaudio', u'face', u'robredo', u'final']
[u'soldier', u'kill', u'attack']
[u'freak', u'snowfal', u'blanket', u'indian', u'kashmir']
[u'french', u'polic', u'detain', u'turkish', u'head', u'pari', u'mosqu']
[u'futur', u'high', u'school', u'open', u'debat']
[u'genet', u'sampl', u'pinpoint', u'caus', u'asthma']
[u'green', u'appeal', u'uniform', u'cannabi', u'law']
[u'gunmen', u'kill', u'settler', u'famili', u'gaza', u'vote']
[u'haeggman', u'surg', u'second', u'place', u'milan']
[u'hannay', u'clear', u'cayless']
[u'india', u'ban', u'public', u'smoke']
[u'indonesian', u'polic', u'clash', u'bashir', u'support']
[u'indonesia', u'recal', u'polic', u'chief', u'protest', u'raid']
[u'insur', u'blunder', u'ground', u'easyjet', u'flight']
[u'intel', u'fund', u'boost', u'terrorist', u'kill', u'australian']
[u'internet', u'busi', u'guilti', u'mislead']
[u'iraq', u'kidnapp', u'wont', u'harm', u'italian', u'hostag']
[u'irish', u'pay', u'ultim', u'price', u'expans']
[u'isra', u'troop', u'kill', u'palestinian', u'ahead', u'gaza']
[u'jagger', u'lennon', u'offspr', u'love']
[u'kangaroo', u'seek', u'sponsor', u'plastic']
[u'krige', u'ban', u'barbarian', u'tour']
[u'leicest', u'citi', u'beat', u'newcastl']
[u'likud', u'vote', u'gaza', u'pullout', u'plan']
[u'lie', u'media', u'deal', u'zimbabw']
[u'mcgee', u'romandi', u'content']
[u'meaning', u'effort', u'need', u'restart', u'talk']
[u'mear', u'claim', u'gold']
[u'meteor', u'light', u'perth']
[u'militari', u'intellig', u'encourag', u'iraqi', u'abus']
[u'miss', u'mother', u'urg', u'return', u'hospit']
[u'fund', u'target', u'black', u'spot']
[u'iraqi', u'alli', u'squeaki', u'clean', u'general']
[u'law', u'combat', u'abus', u'britain']
[u'worm', u'infect', u'million', u'comput', u'expert']
[u'north', u'approv', u'land', u'thank', u'south']
[u'norway', u'envoy', u'meet', u'lankan', u'presid', u'peac']
[u'opposit', u'leader', u'chang', u'allegi']
[u'vote', u'allegi']
[u'polic', u'give', u'power', u'reveal', u'paedophil', u'detail']
[u'polic', u'search', u'miss', u'crabber']
[u'nurs', u'monitor', u'work', u'ban']
[u'giant', u'evacu', u'staff', u'saudi', u'port']
[u'fisherman', u'dead', u'miss', u'dinghi', u'hit']
[u'pakistan', u'demand', u'compens', u'stag', u'kill']
[u'passeng', u'train', u'return', u'stratford', u'year']
[u'polic', u'prepar', u'retriev', u'sink', u'boat']
[u'polic', u'protestor', u'clash', u'parti']
[u'port', u'hedland', u'mine', u'accid', u'kill']
[u'port', u'surviv', u'magpi', u'scare']
[u'port', u'surviv', u'pie', u'scare']
[u'prefer', u'decid', u'apsley', u'victor']
[u'racq', u'find', u'tugun', u'bypass', u'talk', u'encourag']
[u'rain', u'help', u'rossi', u'claim', u'pole', u'stoner']
[u'ranger', u'warm', u'celtic', u'rout']
[u'birth', u'centr', u'suffer', u'lack', u'servic']
[u'red', u'basement', u'battl']
[u'retir', u'south', u'australian', u'benefit', u'pilot']
[u'rivaldo', u'impress', u'bolton']
[u'roddick', u'tenni', u'star', u'evacu', u'rome']
[u'saint', u'sneak', u'home', u'amid', u'kick', u'controversi']
[u'sarwan', u'smith', u'blast', u'windi', u'england']
[u'saudi', u'princ', u'vow', u'crush', u'islamist', u'extremist']
[u'scaffold', u'help', u'indigen', u'children', u'learn']
[u'search', u'continu', u'vietnam', u'ferri', u'toll', u'rise']
[u'search', u'fail', u'miss']
[u'search', u'uncov', u'dingi', u'belong', u'miss']
[u'offend', u'law', u'spark', u'vigilant', u'fear']
[u'sherwin', u'miss', u'citi', u'origin', u'select']
[u'song', u'sing', u'happi', u'birthday', u'georgia', u'tesk']
[u'steal', u'toxic', u'chemic', u'recov', u'hobart']
[u'stoner', u'let', u'victori', u'slip', u'spain']
[u'sydney', u'cityrail', u'grind', u'halt']
[u'sydney', u'train', u'servic', u'return', u'normal']
[u'sport', u'ground', u'test', u'posit']
[u'teach', u'condit', u'angst', u'domin', u'confer']
[u'tire', u'mandela', u'reduc', u'public', u'appear', u'paper']
[u'tower', u'net', u'hockeyroo', u'smash', u'india']
[u'tradit', u'alter', u'militari', u'particip']
[u'kill', u'strong', u'quak', u'jolt', u'taiwan']
[u'press', u'rage', u'alleg', u'iraqi', u'prison', u'abus']
[u'troop', u'cast', u'doubt', u'iraq', u'abus', u'photo']
[u'unbeaten', u'smarti', u'jone', u'captur', u'kentucki', u'derbi']
[u'fail', u'iraq', u'syrian', u'presid']
[u'hostag', u'escap', u'iraqi', u'captor']
[u'list', u'sadist', u'iraqi', u'prison', u'abus', u'report']
[u'vandal', u'attack', u'spark', u'busway', u'upgrad']
[u'venus', u'cruis', u'warsaw', u'final']
[u'verkerk', u'set', u'munich', u'final', u'davydenko']
[u'govt', u'accus', u'overspend']
[u'virus', u'strike', u'telstra', u'servic']
[u'walter', u'champion', u'chang']
[u'warrior', u'hold', u'storm']
[u'warrior', u'lead', u'storm', u'auckland']
[u'west', u'palac', u'stake', u'claim', u'play', u'off']
[u'zurich', u'parad', u'turn', u'violent']
[u'budget', u'surplus', u'mean', u'cut', u'access', u'econom']
[u'accc', u'speak', u'qanta', u'merger']
[u'milan', u'italian', u'leagu', u'titl']
[u'adelaid', u'polic', u'injur', u'stakeout']
[u'clean', u'region', u'litter', u'woe']
[u'adult', u'soon', u'grow', u'replac', u'teeth']
[u'afghan', u'blast', u'accid']
[u'afghanistan', u'tanker', u'blast', u'kill']
[u'alleg', u'mastermind', u'djindjic', u'kill']
[u'alstonvill', u'crash', u'claim', u'teen', u'life']
[u'seek', u'long', u'term', u'care', u'scheme']
[u'continu']
[u'attack', u'kill', u'soldier', u'iraq']
[u'auction', u'sale', u'point', u'hous', u'slow']
[u'australia', u'call', u'engag']
[u'australian', u'press', u'freedom', u'criticis']
[u'australian', u'soldier', u'leav', u'darwin', u'iraq']
[u'author', u'probe', u'port', u'hedland', u'industri', u'death']
[u'ballarat', u'host', u'forestri', u'gather']
[u'ballarat', u'soprano', u'hit', u'high', u'note', u'scholarship']
[u'barcaldin', u'get', u'labour']
[u'beatti', u'condemn', u'fund', u'halt', u'environment']
[u'bedsid', u'hear', u'woman', u'charg', u'offic', u'blaze']
[u'berlin', u'magic', u'talisman', u'mythic']
[u'blacklock', u'cross', u'citi', u'countri', u'clash']
[u'blaze', u'unlik', u'hurt', u'onesteel', u'oper']
[u'breast', u'feed', u'cut', u'infant', u'death', u'studi']
[u'break', u'hill', u'aim', u'cash', u'cultur', u'tourism']
[u'nation', u'zero', u'blood', u'alcohol', u'limit']
[u'camera', u'detect', u'fewer', u'south', u'west', u'speedster']
[u'cane', u'farmer', u'pois', u'accept', u'sweeten']
[u'maker', u'team', u'safeti', u'research']
[u'charg', u'lay', u'park', u'anim', u'escap']
[u'communiti', u'meet', u'fight', u'atsic', u'scrap']
[u'controversi', u'rofe', u'resign']
[u'costello', u'tax', u'middl', u'incom', u'earner', u'actu']
[u'council', u'adopt', u'clarenc', u'valley', u'flood', u'report']
[u'council', u'consid', u'skill', u'migrant', u'fund']
[u'council', u'urg', u'patienc', u'wage', u'negoti']
[u'crow', u'leav', u'soul', u'search', u'fifth', u'loss']
[u'cuban', u'ambassador', u'ask', u'leav', u'mexico', u'peru']
[u'consid', u'drop', u'tradit']
[u'davydenko', u'claim', u'munich', u'crown']
[u'drove', u'visitor', u'flock', u'outback', u'muster']
[u'dunfermlin', u'ruin', u'celtic', u'titl', u'parti']
[u'eagl', u'lynch', u'arrest', u'perth', u'chase']
[u'earli', u'snow', u'fall', u'prompt', u'tourist', u'influx']
[u'elli', u'retain', u'lead', u'weather', u'orlean']
[u'escap', u'hostag', u'head', u'germani', u'medic', u'check']
[u'dictat', u'lead', u'panama', u'poll']
[u'farmer', u'hope', u'drench']
[u'feder', u'minist', u'back', u'qlds', u'tugun', u'solut']
[u'govt', u'pull', u'fund', u'rainforest', u'reef', u'research']
[u'ferri', u'delay', u'damag', u'rough', u'sea']
[u'claim', u'histor', u'hospit']
[u'crew', u'pull', u'safeti', u'inquest', u'tell']
[u'investig', u'probe', u'onesteel', u'blaze']
[u'fijian', u'lay', u'rest']
[u'fittler', u'say', u'goodby']
[u'fittler', u'farewel', u'steal', u'limelight']
[u'flesh', u'eat', u'diseas', u'hit', u'canada']
[u'policeman', u'jail', u'theft']
[u'saddam', u'general', u'charg', u'myer']
[u'frustrat', u'mount', u'lack', u'diseas', u'vaccin']
[u'gather', u'consid', u'appl', u'import']
[u'germani', u'fine', u'apprentic', u'brothel']
[u'gibernau', u'win', u'home']
[u'goal', u'umpir', u'spotlight']
[u'govt', u'urg', u'upgrad', u'hous', u'indigen']
[u'govt', u'tri', u'lure', u'fisher', u'renew', u'offer']
[u'grain', u'grower', u'look', u'heaven', u'rain']
[u'hall', u'fame', u'honour', u'outback', u'women']
[u'hamilton', u'retain', u'tour', u'romandi', u'mcgee']
[u'harrison', u'levi', u'hear', u'tuesday']
[u'harrison', u'levi', u'hear', u'tomorrow']
[u'hepat', u'includ', u'revamp', u'school', u'vaccin']
[u'high', u'tech', u'facil', u'robertson']
[u'hope', u'award', u'boost', u'traine', u'number']
[u'hospit', u'cleaner', u'consid', u'escal', u'industri']
[u'hospit', u'emerg', u'dept', u'normal']
[u'hospit', u'surgeri', u'centr', u'upgrad']
[u'hous', u'market', u'boost', u'salari']
[u'hunt', u'warehous', u'bandit']
[u'indian', u'acquit', u'murder', u'deport']
[u'indian', u'rooki', u'hold', u'nerv', u'china', u'master']
[u'industri', u'campaign', u'target', u'jetstar', u'safeti']
[u'inmat', u'scheme', u'promis', u'communiti', u'benefit']
[u'iraqi', u'general', u'say', u'foreign', u'fighter', u'fallujah']
[u'packag', u'roll', u'canberra', u'school']
[u'solid', u'growth']
[u'katherin', u'tindal', u'rainfal', u'record']
[u'labor', u'urg', u'voter', u'fall', u'bribe']
[u'land', u'indigen', u'tourism']
[u'lara', u'lead', u'windi', u'second', u'straight']
[u'leagu', u'journalist', u'frilingo', u'die', u'sydney']
[u'libyan', u'leader', u'make', u'seri', u'debut']
[u'liverpool', u'crucial', u'point', u'euro', u'hunt']
[u'lynch', u'suspend', u'fin', u'drink', u'drive', u'charg']
[u'mandela', u'wife', u'die']
[u'map', u'centr', u'worker', u'consid', u'strike']
[u'mason', u'origin', u'payback', u'trail']
[u'matthew', u'repeat', u'ruck', u'rule', u'review']
[u'mcdowel', u'havret', u'lead', u'italian', u'open', u'go']
[u'meat', u'industri', u'disappoint', u'trade', u'deal']
[u'melbourn', u'polic', u'offic', u'clear', u'road', u'rage']
[u'million', u'infect', u'internet', u'worm', u'expert']
[u'cold', u'weather', u'store']
[u'iraqi', u'tortur', u'claim', u'come', u'editor']
[u'paramilitari', u'send', u'indonesia', u'troubl']
[u'motorcyclist', u'die', u'site', u'crash']
[u'upbeat', u'mildura', u'place']
[u'elect', u'board', u'member']
[u'nato', u'meet', u'ahead', u'despit', u'foil', u'bomb', u'plot']
[u'face', u'olymp', u'softbal', u'team']
[u'polish', u'reject', u'iraq', u'troop', u'withdraw']
[u'vision', u'shire', u'group']
[u'bail', u'stab', u'accus']
[u'excus', u'mick', u'pie', u'crash']
[u'resolut', u'mental', u'health', u'disput']
[u'author', u'defend', u'action', u'bushfir', u'inquest']
[u'govt', u'derail', u'millennium', u'train', u'purchas']
[u'waterfront', u'lesse', u'face', u'rent', u'slug']
[u'nurs', u'stand', u'alleg', u'patient', u'abus']
[u'ogilvi', u'fire', u'flawless', u'lead', u'orlean']
[u'kill', u'hurt', u'clash', u'near', u'najaf', u'wit']
[u'organis', u'final', u'touch', u'agfest', u'prepar']
[u'osullivan', u'bounc', u'lead', u'world', u'snooker', u'final']
[u'paddl', u'steamer', u'recreat', u'produc', u'ship', u'histori']
[u'pair', u'weekend', u'road', u'crash']
[u'perth', u'student', u'protest', u'reform']
[u'peru', u'brace', u'protest', u'mayor', u'lynch']
[u'philippin', u'militari', u'warn', u'possibl', u'violenc']
[u'philippin', u'rosal', u'claim', u'lpga', u'titl']
[u'pie', u'stand', u'firm', u'train', u'grind', u'stoush']
[u'plan', u'higher', u'phone', u'charg', u'ring', u'alarm', u'bell']
[u'visit', u'franc']
[u'poki', u'hike', u'cost', u'job', u'report']
[u'polic', u'crackdown', u'net', u'drug', u'haul']
[u'polic', u'maintain', u'search', u'sink', u'boat']
[u'polic', u'probe', u'dementia', u'patient', u'abus', u'claim']
[u'polic', u'target', u'cross', u'border', u'drug']
[u'polish', u'resign']
[u'polit', u'brew', u'hospit', u'bed']
[u'public', u'welcom', u'train', u'track']
[u'hail', u'interst', u'freight', u'link']
[u'lib', u'vote', u'uniti']
[u'union', u'celebr', u'membership', u'increas']
[u'rain', u'king', u'gibernau', u'win', u'spain']
[u'rann', u'appeal', u'children', u'save']
[u'ratu', u'mara', u'funer', u'near', u'final', u'stage']
[u'robredo', u'edg', u'gruell', u'barcelona', u'final']
[u'rough', u'ride', u'put', u'maroochi', u'mayor', u'hospit']
[u'saint', u'pair', u'video', u'charg']
[u'saint', u'underlin', u'premiership', u'credenti']
[u'saudi', u'attack', u'iraq', u'relat', u'ambassador']
[u'scholarship', u'target', u'declin', u'male', u'teacher']
[u'schwarzenegg', u'back', u'sharon', u'gaza', u'pull', u'plan']
[u'scientist', u'say', u'need', u'qualifi', u'technician']
[u'search', u'continu', u'miss', u'boati']
[u'separ', u'charg', u'earn', u'cayless', u'week']
[u'sharon', u'pledg', u'stay', u'despit', u'setback']
[u'sharon', u'parti', u'reject', u'gaza', u'plan']
[u'sharon', u'vow', u'gaza', u'retreat', u'despit', u'parti', u'vote']
[u'shrek', u'pull', u'wool', u'clark', u'eye']
[u'singapor', u'test', u'weapon', u'woomera']
[u'soup', u'kitchen', u'help', u'needi', u'resid']
[u'spanish', u'trio', u'fin', u'illeg', u'fish']
[u'spirit', u'tasmania', u'delay', u'rough', u'weather']
[u'lanka', u'pile', u'run', u'zimbabw']
[u'studi', u'focus', u'health', u'waterway']
[u'hire', u'expert', u'assess', u'takeov']
[u'talk', u'continu', u'bluescop', u'enterpris']
[u'maintain', u'econom', u'momentum', u'lennon']
[u'teacher', u'boost']
[u'teen', u'success', u'appeal', u'assault', u'sentenc']
[u'tehran', u'say', u'take', u'saddam', u'place', u'iraq']
[u'telco', u'question', u'higher', u'telstra', u'charg']
[u'telstra', u'blame', u'worm', u'internet', u'problem']
[u'terror', u'group', u'know', u'presenc', u'australia']
[u'thailand', u'bolster', u'troop', u'south']
[u'thailand', u'send', u'troop', u'troubl', u'south']
[u'chines', u'kill', u'pakistan', u'blast']
[u'toddler', u'rescu', u'hous', u'blaze']
[u'turkish', u'polic', u'foil', u'nato', u'summit', u'bomb', u'plot']
[u'forc', u'help', u'maintain', u'secur', u'iraq']
[u'union', u'group', u'highlight', u'labour', u'import']
[u'union', u'group', u'turn', u'drove', u'labour']
[u'warn', u'corrupt', u'employe', u'deal']
[u'armi', u'know', u'prison', u'abus', u'report']
[u'armi', u'reprimand', u'iraq', u'prison', u'abus']
[u'british', u'isra', u'olymp', u'athlet', u'hour']
[u'valencia', u'open', u'point', u'lead', u'spain']
[u'budget', u'expect', u'target', u'home', u'buyer']
[u'govt', u'call', u'boost', u'hospit', u'fund']
[u'victorian', u'nurs', u'union', u'back', u'propos']
[u'viduka', u'blow', u'leed']
[u'walker', u'cop', u'fine', u'booz', u'brisban', u'arrest']
[u'premier', u'ask', u'execut', u'interven']
[u'warn', u'fire', u'hampshir', u'elliott', u'lead', u'glamorgan']
[u'introduc', u'work', u'hour', u'code']
[u'surf', u'women', u'leav', u'media', u'wake']
[u'west', u'bank', u'explos', u'kill']
[u'wheatbelt', u'join', u'boy', u'educ', u'project']
[u'william', u'crush', u'kuznetsova', u'warsaw']
[u'work', u'condit', u'domin', u'remot', u'teacher', u'gather']
[u'yacht', u'damag', u'rock', u'mishap']
[u'yorta', u'yorta', u'celebr', u'sign', u'histor', u'agreement']
[u'zimbabw', u'cricket', u'offici', u'punch', u'white']
[u'develop', u'plan', u'bargara', u'esplanad']
[u'cut', u'project', u'budget', u'surplus']
[u'reject', u'male', u'teach', u'scholarship', u'plan']
[u'pay', u'tribut', u'footbal', u'women']
[u'agforc', u'confer', u'consid', u'trade', u'issu']
[u'alic', u'hospit', u'fund', u'boost']
[u'page', u'evid', u'file', u'british']
[u'anderson', u'highway', u'fund', u'agreement']
[u'annan', u'plan', u'timor', u'mission', u'extens']
[u'arab', u'neighbour', u'refus', u'send', u'troop', u'iraq']
[u'aristocrat', u'sharehold', u'reject', u'ducker', u'elect']
[u'armi', u'bolster', u'time', u'train']
[u'arthur', u'rome', u'spadea', u'shock', u'schuettler']
[u'audit', u'shed', u'light', u'citi', u'crime', u'reduct']
[u'australian', u'forc', u'chief', u'criticis', u'iraqi', u'prison']
[u'australian', u'journalist', u'honour', u'washington']
[u'australian', u'ignor', u'heart', u'diseas', u'warn', u'studi']
[u'bankstown', u'airport', u'empt', u'safeti', u'report']
[u'berlusconi', u'want', u'itali', u'media', u'blackout', u'hostag']
[u'crowd', u'enjoy', u'labour', u'barcaldin']
[u'gate', u'fin', u'merger', u'violat']
[u'biospher', u'undergo', u'chang']
[u'blood', u'see', u'alleg', u'murder', u'weapon', u'court', u'hear']
[u'blue', u'tier', u'protest', u'expect', u'arrest']
[u'box', u'australia', u'geal', u'athen', u'hop']
[u'broadband', u'boost', u'benefit', u'region']
[u'bronco', u'throw', u'appeal', u'lifelin']
[u'bulldog', u'johnson', u'strike', u'charg']
[u'bushfir', u'rage', u'southern', u'california']
[u'bush', u'push', u'speedi', u'iraq', u'abus', u'inquiri']
[u'busi', u'face', u'consum', u'affair', u'crackdown']
[u'busi', u'time', u'ahead', u'legisl', u'council', u'member']
[u'bypass', u'impass', u'breakthrough', u'welcom', u'news']
[u'budget', u'fund', u'shepparton', u'road']
[u'fluorid', u'combat', u'local', u'tooth', u'decay']
[u'stormwat', u'pollut', u'trap', u'protect', u'fish']
[u'go', u'bolster', u'blood', u'stock']
[u'carr', u'introduc', u'nation', u'park', u'film']
[u'cayless', u'accept', u'week']
[u'chechen', u'clash', u'kill', u'leader', u'secur', u'guard']
[u'chemo', u'patient', u'think', u'go', u'court']
[u'chief', u'justic', u'special', u'bond']
[u'child', u'asylum', u'seeker', u'case', u'return', u'court']
[u'china', u'confirm', u'sar', u'case']
[u'coach', u'hit', u'olymp', u'box', u'select']
[u'compani', u'predict', u'rich', u'cooper', u'basin', u'resourc']
[u'concern', u'mersey', u'hospit', u'close']
[u'condemn', u'ranieri', u'seek', u'final', u'repriev']
[u'controversi', u'artwork', u'remov', u'melbourn']
[u'costello', u'set', u'scene', u'famili', u'friend', u'budget']
[u'council', u'await', u'tram', u'decis']
[u'councillor', u'want', u'multi', u'purpos', u'centr', u'detail']
[u'council', u'present', u'heritag', u'award']
[u'consid', u'cut', u'royal', u'tie']
[u'danger', u'stifl', u'onesteel', u'blaze', u'probe']
[u'darwin', u'erad', u'feral', u'pigeon']
[u'deadlin', u'loom', u'escarp', u'plan', u'feedback']
[u'democrat', u'law', u'restrict', u'winegrow', u'hard']
[u'democrat', u'oppos', u'free', u'trade', u'deal']
[u'deportivo', u'fli', u'high', u'ahead', u'histor', u'porto', u'clash']
[u'doctor', u'warn', u'diabet', u'rise', u'indigen']
[u'doubt', u'cast', u'work', u'hour', u'plan']
[u'doubt', u'rais', u'intersect', u'upgrad']
[u'dough', u'lure', u'simpson', u'work']
[u'downer', u'want', u'maintain', u'east', u'timor', u'presenc']
[u'ask', u'review', u'surfer', u'bail', u'condit']
[u'drink', u'drive', u'jacob', u'wait', u'hawthorn', u'penalti']
[u'driver', u'die', u'tandarra', u'truck', u'crash']
[u'effort', u'control', u'grow', u'wild', u'woe']
[u'effort', u'save', u'rail', u'line', u'track']
[u'employ', u'accus', u'abus', u'casual']
[u'environ', u'dept', u'probe', u'south', u'east', u'blaze']
[u'evil', u'call', u'like', u'declar', u'annan']
[u'fear', u'air', u'reef', u'research', u'centr', u'fund']
[u'final', u'accus', u'snowtown', u'murder', u'go', u'trial']
[u'fish', u'strategi', u'go']
[u'iraqi', u'kill', u'najaf', u'clash']
[u'flight', u'attend', u'jail', u'drug', u'smuggl']
[u'diplomat', u'criticis', u'bush', u'east', u'polici']
[u'muslim', u'detaine', u'alleg', u'abus']
[u'star', u'wall', u'street', u'banker', u'guilti']
[u'forum', u'focus', u'indigen', u'famili', u'violenc']
[u'run']
[u'free', u'trade', u'deal', u'rais', u'profil', u'mine']
[u'fund', u'boost', u'expect', u'emerg', u'servic']
[u'gather', u'tell', u'fireblight', u'contain']
[u'govt', u'accus', u'plagiar', u'islam', u'jihad']
[u'govt', u'black', u'list', u'kurdish', u'group']
[u'govt', u'consid', u'polit', u'donat', u'chang']
[u'govt', u'criticis', u'dpps', u'departur']
[u'govt', u'punish', u'commerci', u'research']
[u'hackett', u'pass', u'word', u'wisdom']
[u'health', u'educ', u'winner', u'budget']
[u'heusk', u'deni', u'rape', u'alleg']
[u'high', u'court', u'hear', u'council', u'damag', u'case']
[u'hill', u'ambush']
[u'quit', u'chairman', u'director']
[u'increas', u'rebat', u'improv', u'bulk', u'bill', u'rate']
[u'india', u'seri', u'bigger', u'ash']
[u'industri', u'drama', u'continu', u'despit', u'nurs', u'deal']
[u'industri', u'feel', u'yorta', u'yorta', u'deal', u'impact']
[u'injur', u'mayor', u'spark', u'rodeo', u'safeti', u'warn']
[u'intern', u'olymp', u'boss', u'call', u'torch']
[u'israel', u'seal', u'arafat', u'routin', u'arrest']
[u'jackson', u'brief', u'seiz', u'evid']
[u'jail', u'cuban', u'journalist', u'award', u'press', u'freedom', u'prize']
[u'jewish', u'outcri', u'prompt', u'melbourn', u'artwork', u'review']
[u'johnson', u'chase', u'olymp', u'mark']
[u'kookaburra', u'name', u'europ', u'trip']
[u'kosmina', u'unsur', u'sign', u'mori']
[u'labor', u'ask', u'flint', u'fair']
[u'labor', u'criticis', u'budget', u'famili', u'plan']
[u'lack', u'rain', u'put', u'tourism', u'resort', u'plan', u'hold']
[u'larkham', u'remain', u'wallabi']
[u'launceston', u'nurs', u'strike', u'work', u'condit']
[u'lawyer', u'seek', u'time', u'prepar', u'bakhtiyari', u'case']
[u'lawyer', u'head']
[u'leed', u'releg', u'sale']
[u'leighton', u'plead', u'guilti', u'fatal', u'accid', u'charg']
[u'lennon', u'declin', u'green', u'assist', u'fund']
[u'lockyer', u'origin']
[u'lunar', u'eclips']
[u'lynch', u'suspend', u'fin', u'drink', u'drive', u'charg']
[u'malaysia', u'thailand', u'meet', u'secur', u'talk']
[u'accus', u'incest', u'court', u'case', u'adjourn']
[u'face', u'court', u'partner', u'assault']
[u'marriott', u'bomb', u'suspect', u'renounc', u'violenc']
[u'mayor', u'upset', u'waterfront', u'land', u'decis']
[u'mcdowel', u'win', u'italian', u'open', u'play']
[u'meet', u'hear', u'disabl', u'care', u'concern']
[u'menegazzo', u'famili', u'stanbrok', u'beef', u'empir']
[u'miner', u'sand', u'firm', u'closer', u'secur', u'financ']
[u'site', u'crash', u'treat', u'road', u'accid']
[u'mine', u'compani', u'fin', u'accid']
[u'monaco', u'summit', u'shape', u'formula', u'one', u'futur']
[u'monkey', u'farmer', u'battl', u'bamboo', u'territori']
[u'fund', u'seek', u'stamp', u'problem']
[u'reprimand', u'issu', u'iraq', u'prison', u'abus']
[u'passeng', u'accept', u'ferri', u'delay']
[u'highlight', u'student', u'number', u'worri']
[u'question', u'hair', u'salon', u'liquor', u'licens', u'rule']
[u'mundin', u'shrug', u'ankl', u'injuri']
[u'museum', u'ponder', u'whale', u'remain']
[u'nativ', u'titl', u'take', u'shine', u'opal', u'industri']
[u'nelson', u'stand', u'male', u'teacher', u'plan']
[u'coastal', u'patrol', u'work', u'soon']
[u'equip', u'help', u'boost', u'fight', u'terror']
[u'exclus', u'roll', u'royc', u'mark', u'centenari']
[u'local', u'govt', u'elect', u'cost', u'ratepay']
[u'rule', u'target', u'neighbour', u'hell']
[u'korea', u'denounc', u'qaeda', u'report']
[u'sight', u'supermarket', u'protest']
[u'polic', u'investig', u'fatal', u'rail', u'accid']
[u'nurs', u'work', u'ban', u'longer', u'effect', u'minist']
[u'obes', u'cost', u'billion', u'year', u'studi']
[u'kill', u'train', u'derail']
[u'pair', u'court', u'home', u'invas']
[u'pakistan', u'arrest', u'bomb', u'attack']
[u'peru', u'coca', u'grower', u'march', u'lima']
[u'petit', u'back', u'hospit', u'matern', u'servic']
[u'pharmaci', u'survey', u'scrap', u'inform', u'leak']
[u'philippin', u'shock', u'grisli', u'murder', u'foreign']
[u'picasso', u'tip', u'fetch', u'world', u'record', u'price']
[u'polic', u'accus', u'point', u'babi']
[u'polic', u'miss', u'woman']
[u'polic', u'happi', u'weekend', u'driver']
[u'polic', u'link', u'melbourn', u'underworld', u'kill']
[u'polic', u'look', u'public', u'clue', u'miss', u'hobart']
[u'polic', u'offic', u'hood', u'saga', u'resign']
[u'polic', u'probe', u'armidal', u'theft']
[u'polic', u'seek', u'teen', u'rape', u'clue']
[u'public', u'invit', u'statehood', u'committe']
[u'public', u'urg', u'help', u'miss', u'woman']
[u'qanta', u'summon', u'appear', u'bali', u'hear']
[u'raaf', u'plane', u'forc', u'return', u'base']
[u'rail', u'decis', u'wont', u'hurt', u'hunter', u'costa']
[u'ralli', u'snap', u'wall', u'street', u'slump']
[u'ronni', u'rocket', u'snooker', u'titl']
[u'rural', u'recoveri', u'expect', u'improv', u'balanc']
[u'saint', u'player', u'suspend', u'club', u'fin']
[u'saint', u'slap', u'fine']
[u'saudi', u'attack', u'push', u'year', u'high']
[u'school', u'rebuild', u'vandalis', u'wall']
[u'scienc', u'fund', u'decis', u'devast', u'academ']
[u'seab', u'disput', u'threaten', u'toppl', u'govt']
[u'seal', u'killer', u'face', u'fin']
[u'shire', u'air', u'coastal', u'author', u'concern']
[u'shire', u'seek', u'rail', u'line', u'reopen']
[u'shoalwat', u'tip', u'militari', u'role']
[u'singapor', u'plan', u'cricket', u'tournament', u'involv']
[u'skywest', u'consid', u'eastern', u'link']
[u'soni', u'buy', u'right', u'polanski', u'oliv']
[u'south', u'east', u'host', u'innov', u'gather']
[u'specul', u'air', u'meteor', u'crash', u'site']
[u'stamp', u'duti', u'chang', u'tip', u'help', u'home', u'buyer']
[u'stanhop', u'apologis', u'phone']
[u'georg', u'help', u'dive']
[u'georg', u'record', u'substanti', u'profit']
[u'student', u'union', u'defend', u'feder', u'elect', u'plan']
[u'support', u'mexican', u'lobster', u'accredit']
[u'surat', u'defi', u'rural', u'downturn']
[u'tax', u'part', u'blame', u'hous', u'slowdown']
[u'teen', u'send', u'train', u'centr', u'machet', u'attack']
[u'telstra', u'stand', u'higher', u'charg']
[u'test', u'failur', u'rais', u'beef', u'safeti', u'question']
[u'thaiday', u'fin', u'miss', u'waratah', u'train']
[u'canadian', u'kidnap', u'iraq']
[u'tribun']
[u'tiger', u'helicopt', u'time', u'budget', u'armi', u'say']
[u'tilba', u'host', u'sportsground', u'meet']
[u'earli', u'gaug', u'sasser', u'impact']
[u'torch', u'resolv']
[u'trade', u'deficit', u'blow', u'factor']
[u'train', u'builder', u'deni', u'millennium', u'price', u'rise']
[u'truss', u'keep', u'live', u'export', u'saudi', u'arabia']
[u'tuialii', u'butt', u'earn', u'week']
[u'turkish', u'court', u'charg', u'nato', u'bomb', u'plan', u'suspect']
[u'palestinian', u'kill', u'gaza', u'strip']
[u'polic', u'sack', u'alleg', u'insur', u'fraud']
[u'recruit', u'plane', u'spotter', u'terror', u'watch']
[u'investig', u'call', u'inquiri', u'fallujah']
[u'appoint', u'iraqi', u'general', u'fallujah']
[u'australia', u'sign', u'free', u'trade', u'deal', u'month']
[u'contractor', u'unawar', u'iraqi', u'prison', u'abus']
[u'govern', u'secret', u'report']
[u'priest', u'charg', u'nun', u'ritual', u'kill']
[u'budget', u'provid', u'health', u'educ', u'boost']
[u'govt', u'urg', u'boost', u'librari', u'fund']
[u'vijay', u'reign', u'singh', u'rain']
[u'wagga', u'polic', u'drug', u'law']
[u'monument', u'honour', u'dutch', u'indonesia', u'contribut']
[u'waterbird', u'number', u'freefal']
[u'build', u'kart', u'surviv', u'mitsubishi', u'boss']
[u'derbi', u'derbi']
[u'woman', u'charg', u'offic', u'blaze', u'remand', u'custodi']
[u'woman', u'say', u'wit', u'patient', u'mistreat']
[u'zimbabw', u'forc', u'draw', u'lanka']
[u'academ', u'test', u'schoolyard', u'bulli', u'link', u'racism']
[u'face', u'rape', u'drug', u'claim']
[u'franc', u'merg', u'creat', u'world', u'leader']
[u'littl', u'piec', u'home', u'wed', u'gift', u'mari']
[u'alleg', u'peopl', u'smuggler', u'remain', u'custodi']
[u'anungu', u'pitjantjatjara', u'elect', u'long', u'overdu']
[u'concern', u'athen', u'bomb', u'blast']
[u'arsenal', u'game', u'unbeaten', u'season']
[u'asbesto', u'class', u'action', u'consid', u'unlik']
[u'associ', u'aim', u'boost', u'prospect', u'appeal']
[u'atsic', u'commission', u'fear', u'test', u'case', u'fund', u'risk']
[u'olymp', u'plan', u'track', u'despit', u'athen']
[u'aussi', u'centr', u'nomin', u'draft']
[u'australia', u'consid', u'solomon', u'request']
[u'australia', u'draw', u'trip', u'thailand']
[u'australia', u'entitl', u'troop', u'pullout', u'debat', u'hill']
[u'australia', u'learn', u'drug', u'program']
[u'australian', u'appeal', u'singapor', u'death', u'penalti']
[u'australia', u'top', u'child', u'leukaemia', u'death', u'studi']
[u'campaign', u'train', u'contract', u'cancel']
[u'bali', u'warn', u'claim', u'need', u'clarif', u'keelti']
[u'bathurst', u'council', u'save', u'hour', u'race']
[u'seek', u'bougainvill', u'sell', u'cooper']
[u'beatti', u'play', u'boonah', u'nativ', u'titl']
[u'demand', u'lake', u'creek', u'job']
[u'biota', u'sue', u'drug', u'giant', u'lack', u'support']
[u'blast', u'affect', u'game', u'secur', u'greec']
[u'blaze', u'spark', u'earlier', u'galleri', u'open']
[u'boutiqu', u'tippl', u'benefit', u'break']
[u'british', u'govt', u'vow', u'investig', u'iraqi', u'abus']
[u'bronco', u'dismiss', u'casino', u'misconduct', u'report']
[u'budget', u'reaction', u'posit']
[u'bushfir', u'group', u'assess', u'rail', u'line', u'blaze', u'risk']
[u'cadbi', u'dismiss', u'independ', u'claim']
[u'campbelltown', u'patient', u'assault', u'minor', u'polic']
[u'capriati', u'cruis', u'german', u'open']
[u'carer', u'plead', u'guilti', u'steal', u'money']
[u'caretak', u'dwell', u'nonsens', u'green']
[u'carlton', u'confirm', u'drug', u'probe']
[u'carr', u'say', u'sorri', u'miss', u'wag', u'aborigin']
[u'cassel', u'outrag', u'appeal', u'snub']
[u'child', u'abus', u'concern', u'servic']
[u'child', u'protect', u'expert', u'say', u'face', u'crisi']
[u'china', u'earthquak', u'leav', u'thousand', u'homeless']
[u'clijster', u'play', u'french', u'open', u'hop']
[u'coalit', u'like', u'golkar', u'win', u'indonesian', u'vote']
[u'committe', u'recommend', u'penalti', u'drink', u'spike']
[u'coordin', u'boost', u'west', u'transport', u'option']
[u'corbel', u'cave', u'free', u'oxygen', u'demand']
[u'council', u'ask', u'speed', u'limit', u'review']
[u'council', u'say', u'manag', u'hous', u'worth', u'fix']
[u'council', u'worker', u'consid', u'drought', u'rise']
[u'court', u'allow', u'paedophil', u'right', u'drive', u'school', u'bus']
[u'court', u'rule', u'jail', u'term', u'chop', u'chop', u'sale']
[u'cuban', u'ambassador', u'quit', u'mexico']
[u'deputi', u'launch', u'industri', u'eidsvold']
[u'doubt', u'rais', u'paradis', u'fish', u'design']
[u'downer', u'heavi', u'timor', u'intellig', u'leak']
[u'drug', u'price', u'fear', u'domin', u'hear']
[u'bail', u'date', u'rape', u'drug', u'charg']
[u'egypt', u'deal', u'shore', u'wheat', u'export']
[u'electr', u'suppli', u'stabl', u'despit', u'boiler', u'shutdown']
[u'elliott', u'flame']
[u'england', u'test', u'stronger', u'squad', u'say']
[u'timor', u'deploy', u'finalis']
[u'evid', u'point', u'return', u'nino', u'weather']
[u'jockey', u'face', u'murder', u'charg']
[u'expert', u'recruit', u'cloud', u'seed', u'trial']
[u'explos', u'lay', u'port', u'georgia']
[u'team', u'agre', u'chang']
[u'father', u'facto', u'face', u'tortur', u'charg']
[u'ferrari', u'boss', u'todt', u'hand']
[u'babi', u'swim', u'star', u'susi']
[u'foreign', u'fighter', u'thailand', u'upris']
[u'forest', u'activist', u'hurt', u'communiti']
[u'mayor', u'concern', u'budget', u'talk']
[u'fourth', u'case', u'california', u'porn', u'industri']
[u'fund', u'rile', u'matur', u'employ', u'program']
[u'genet', u'test', u'produc', u'saviour', u'babi']
[u'govt', u'embarrass', u'follow', u'road', u'defeat']
[u'govt', u'unconvinc', u'driver', u'blue', u'card']
[u'green', u'help', u'princess', u'mari', u'pictur', u'home']
[u'group', u'oppos', u'town', u'water', u'fluorid', u'plan']
[u'guid', u'allow', u'beach', u'water', u'monitor']
[u'hawk', u'pair', u'fin', u'drink', u'drive']
[u'museum', u'releas', u'loss', u'detail']
[u'headscarf', u'controversi', u'refere', u'stand', u'asid']
[u'heart', u'diseas', u'australian', u'biggest', u'killer']
[u'hickey', u'back', u'coal', u'royalti', u'scheme']
[u'high', u'hop', u'eyr', u'peninsula', u'gold']
[u'hill', u'break', u'grind', u'tiger', u'lair']
[u'hospit', u'bed', u'reopen', u'nurs', u'accept', u'offer']
[u'hospit', u'settl', u'bungl', u'chemo', u'treatment']
[u'hospit', u'work', u'surgeri', u'backlog']
[u'hous', u'approv', u'fall']
[u'howard', u'confirm', u'qanta', u'approach', u'bali', u'warn']
[u'howard', u'disturb', u'athen', u'blast']
[u'howard', u'hop', u'sell', u'trade', u'deal', u'congress']
[u'howard', u'offer', u'pharmaci', u'regul', u'deal']
[u'iranian', u'attack', u'victim']
[u'iraqi', u'lodg', u'lawsuit', u'relat', u'death']
[u'iraqi', u'ralli', u'mistreat', u'prison']
[u'italian', u'televis', u'head', u'quit', u'anti', u'berlusconi']
[u'jacob', u'catch', u'drink', u'drive']
[u'japan', u'mull', u'afghanistan', u'deploy']
[u'japan', u'sit', u'demograph', u'time', u'bomb']
[u'judg', u'find', u'peopl', u'smuggl', u'sentenc', u'harsh']
[u'kangaroo', u'face', u'extinct', u'wildlif', u'group']
[u'keelti', u'unjust', u'criticis', u'bush', u'terror', u'chief']
[u'koperberg', u'offer', u'canberra', u'firestorm', u'predict']
[u'labor', u'broadcast', u'babi', u'care', u'plan']
[u'leed', u'boss', u'gray', u'keep', u'season', u'report']
[u'limit', u'support', u'hamper', u'phone', u'loyalti', u'scheme']
[u'lion', u'fine', u'appeal']
[u'local', u'govt', u'group', u'attack', u'councillor']
[u'lowest', u'pay', u'worker', u'record', u'rise']
[u'price', u'concern', u'lobster', u'council']
[u'face', u'court', u'indian', u'pacif', u'drug']
[u'plead', u'guilti', u'taxi', u'driver', u'stab', u'murder']
[u'maori', u'brave', u'foul', u'weather', u'protest', u'govern']
[u'marin', u'lift', u'fallujah', u'secur', u'cordon']
[u'maroochi', u'mayor', u'hospit']
[u'mask', u'reveal', u'earli', u'maya', u'civilis']
[u'mcleod', u'mileston', u'struggl', u'crow']
[u'milk', u'price', u'drop', u'concern', u'farmer']
[u'mitsubishi', u'delay', u'foley', u'meet']
[u'analysi', u'need', u'team', u'gallop']
[u'detail', u'seek', u'seal', u'death', u'probe']
[u'moruya', u'gather', u'discuss', u'centralis', u'hospit']
[u'mother', u'incorrect', u'advis', u'unborn', u'babi', u'die']
[u'mother', u'encourag', u'breastfe', u'prematur', u'babi']
[u'propos', u'kalgoorli', u'esper', u'train', u'trial']
[u'music', u'label', u'payout', u'unclaim', u'royalti']
[u'chairman', u'announc', u'retir']
[u'nation', u'forum', u'homeless', u'kick', u'today']
[u'nat', u'question', u'rail', u'closur']
[u'book', u'highlight', u'earli', u'attitud', u'aborigin']
[u'sale', u'continu', u'rise']
[u'director', u'chair', u'sharehold', u'meet']
[u'engin', u'earmark', u'region']
[u'money', u'fail', u'avert', u'teacher', u'strike']
[u'polic', u'recruit', u'help', u'eas', u'staff', u'crisi']
[u'rail', u'project', u'creat', u'job']
[u'korea', u'accept', u'disast']
[u'chang', u'iraq', u'troop', u'level', u'handov']
[u'confid', u'motion', u'threaten', u'govt']
[u'northern', u'hospit', u'fund', u'boost']
[u'norwich', u'crown', u'divis', u'champion']
[u'nowra', u'businessman', u'face', u'murder', u'trial']
[u'govern', u'portfolio', u'foreign', u'downer']
[u'nuclear', u'dump', u'claim', u'absurd', u'mcguaran']
[u'nurs', u'union', u'vote', u'strike', u'action']
[u'ogradi', u'cofidi', u'shake', u'drug', u'claim']
[u'optus', u'chief', u'call', u'time']
[u'owner', u'deni', u'disagr', u'stanbrok', u'sale']
[u'pacif', u'island', u'rule', u'expand', u'player']
[u'parapleg', u'win', u'payout', u'misdiagnosi']
[u'pastor', u'compani', u'upbeat', u'earn']
[u'philippin', u'elect', u'campaign', u'relat', u'peac']
[u'pipelin', u'solv', u'water', u'woe']
[u'player', u'stay', u'away', u'opal', u'olymp', u'train']
[u'inject', u'extra', u'agenc']
[u'say', u'flint', u'regret', u'jone', u'letter']
[u'polic', u'appeal', u'abduct', u'inform']
[u'polic', u'concern', u'miss', u'father']
[u'polic', u'deni', u'nemer', u'case', u'plea', u'bargain', u'chang']
[u'polic', u'interview', u'spit', u'incid']
[u'polic', u'investig', u'athen', u'blast']
[u'polic', u'seek', u'driver']
[u'polic', u'investig', u'budget', u'leak']
[u'port', u'augusta', u'polic', u'lament', u'staff', u'woe']
[u'port', u'kembla', u'copper', u'fin', u'worker', u'burn']
[u'porto', u'champion', u'leagu', u'final']
[u'prison', u'offic', u'tell', u'court', u'inmat', u'murder', u'boast']
[u'probe', u'launch', u'unauthoris', u'armi', u'exercis']
[u'public', u'face', u'water', u'price', u'slug']
[u'polic', u'interview', u'spit', u'incid']
[u'ranger', u'boss', u'mcleish', u'criticis', u'socceroo', u'skipper']
[u'region', u'victoria', u'get', u'budget', u'fund', u'brumbi']
[u'remot', u'area', u'hec', u'discount', u'caus', u'discont']
[u'rescu', u'chopper', u'fund', u'snub', u'creat', u'disappoint']
[u'research', u'find', u'way', u'bycatch']
[u'reserv', u'bank', u'leav', u'rat', u'hold']
[u'resourc', u'stock', u'extend', u'market', u'posit']
[u'review', u'polic', u'procedur', u'urg', u'boy']
[u'riverland', u'end', u'wait', u'polic']
[u'riverland', u'group', u'disabl', u'right', u'workshop']
[u'roddick', u'scud', u'rome', u'hewitt', u'brink']
[u'rodrigo', u'rato', u'name', u'chief']
[u'coupl', u'nation', u'forestri', u'award']
[u'school', u'share', u'revamp', u'fund']
[u'search', u'resum', u'miss']
[u'reflect', u'busi', u'storm', u'season']
[u'good', u'sew', u'bird']
[u'singh', u'close', u'world', u'number', u'wood']
[u'spirit', u'readi', u'sydney', u'return', u'journey']
[u'sugar', u'grower', u'seek', u'bioplast', u'busi']
[u'survey', u'find', u'fishi', u'seafood']
[u'taliban', u'claim', u'attack', u'troop', u'polic']
[u'taxi', u'compani', u'face', u'destin', u'fin']
[u'taylor', u'challeng', u'stephen', u'pilbara']
[u'teen', u'face', u'jail']
[u'terror', u'suspect', u'seek', u'jail', u'transfer']
[u'terrorist', u'suspect', u'face', u'death', u'threat', u'charg']
[u'timbercorp', u'sell', u'land', u'leas', u'deal']
[u'remain', u'quarantin', u'follow', u'bird', u'death']
[u'trip', u'show', u'invest', u'opportun']
[u'transport', u'group', u'air', u'concern', u'bill']
[u'treat', u'store', u'comet', u'lover']
[u'tree', u'clear', u'law', u'stymi', u'napranum', u'deal']
[u'aim', u'agenda', u'africa']
[u'shopper', u'drive', u'sweet', u'deal']
[u'ambassador', u'say', u'boost', u'industri']
[u'delay', u'releas', u'human', u'right', u'report']
[u'vickeri', u'rule', u'aust', u'tour']
[u'victorian', u'dairi', u'drive', u'rwanda']
[u'vietnames', u'cyber', u'dissid', u'jail', u'term', u'stand']
[u'virgin', u'consid', u'earli', u'morn', u'replac', u'flight']
[u'budget', u'leak', u'barnett']
[u'wadey', u'brawl', u'victim', u'quiet', u'court']
[u'wage', u'decis', u'cost', u'job', u'employ', u'group']
[u'govt', u'save', u'smoke', u'law']
[u'water', u'price', u'undergo', u'review']
[u'watson', u'confid', u'tiger', u'releas']
[u'waugh', u'oneil', u'freeman', u'carri', u'olymp', u'flame']
[u'west', u'coast', u'continu', u'rail', u'servic']
[u'wife', u'tell', u'polic', u'inquiri', u'stakeout']
[u'wildlif', u'centr', u'host', u'student', u'conserv']
[u'woman', u'jail', u'arson', u'attack', u'boyfriend', u'hous']
[u'wooli', u'petrol', u'station', u'tip', u'fuel', u'cheaper']
[u'workshop', u'target', u'child', u'sport', u'safeti']
[u'world', u'final', u'rematch', u'sell']
[u'zimbabw', u'cricket', u'peac', u'talk', u'break']
[u'zimbabw', u'tour', u'moral', u'wrong', u'alec', u'stewart']
[u'payout', u'help', u'fund', u'nickel', u'boost']
[u'order', u'independ', u'monitor', u'law']
[u'abduct', u'canadian', u'free', u'iraq']
[u'aborigin', u'fear', u'powerco', u'risk', u'heritag']
[u'accc', u'approv', u'price', u'rise', u'telstra']
[u'colleg', u'cours', u'unlik', u'resum', u'nat']
[u'agricultur', u'festiv', u'start', u'northern']
[u'albani', u'confid', u'budget', u'fund', u'boost']
[u'fear', u'terrorist', u'miss', u'crew']
[u'refer', u'telstra', u'price', u'hike', u'accc']
[u'anim', u'human', u'diseas', u'increas', u'expert', u'warn']
[u'appl', u'grower', u'import', u'fear']
[u'arrow', u'energi', u'signific']
[u'asic', u'retain', u'kennedi', u'hard', u'drive']
[u'babi', u'abandon', u'petrol', u'station']
[u'bank', u'england', u'rais', u'rat']
[u'barcaldin', u'school', u'generat', u'power', u'suppli']
[u'blind', u'adventur', u'claim', u'british', u'microlight', u'record']
[u'bodi', u'perth', u'school', u'ground']
[u'border', u'incurs', u'prompt', u'pakistan', u'govt', u'protest']
[u'britain', u'celebr', u'bannist', u'magic', u'mark']
[u'british', u'grill', u'editor', u'iraq', u'tortur']
[u'british', u'polic', u'australia', u'search', u'child']
[u'bronco', u'point', u'appeal', u'postpon']
[u'budget', u'talk', u'close', u'door']
[u'builder', u'group', u'look', u'stabl', u'rat']
[u'build', u'industri', u'expect', u'remain', u'buoyant']
[u'build', u'materi', u'test', u'terror', u'bomb']
[u'burni', u'builder', u'speak', u'admin', u'error']
[u'bush', u'promis', u'justic', u'abhorr', u'iraq', u'abus']
[u'safe', u'place', u'park', u'peopl']
[u'tugun', u'bypass', u'impact', u'statement', u'releas']
[u'bomb', u'target', u'baghdad', u'green', u'zone']
[u'carr', u'criticis', u'polic', u'bulldog', u'case', u'comment']
[u'clark', u'westwood', u'shape', u'british', u'master']
[u'clijster', u'admit', u'fear', u'play', u'athen', u'pull']
[u'cofidi', u'make', u'win', u'return']
[u'colli', u'urg', u'competit', u'power']
[u'collingwood', u'criticis', u'tribun', u'plan']
[u'compani', u'consid', u'stanbrok', u'properti', u'purchas']
[u'concern', u'rais', u'adolesc', u'steroid']
[u'confer', u'deleg', u'look', u'anti', u'substanc']
[u'connolli', u'warn', u'farmer', u'tone', u'antic']
[u'council', u'hop', u'wage']
[u'council', u'jimbour', u'amphitheatr']
[u'countri', u'perri']
[u'court', u'decid', u'retrial', u'gang', u'rapist']
[u'court', u'tell', u'bone', u'murder', u'accus']
[u'professor', u'award', u'human', u'movement', u'work']
[u'concern', u'audit', u'regul']
[u'davico', u'shatter', u'injuri', u'rule', u'appear']
[u'dealer', u'donat', u'collect', u'lifetim']
[u'deputi', u'hear', u'road', u'fund', u'wish', u'list']
[u'disney', u'block', u'michael', u'moor', u'doco']
[u'dissid', u'walter', u'resign', u'directorship']
[u'kidnap', u'wit', u'come', u'forward']
[u'drought', u'dri', u'kangaroo', u'meat', u'suppli']
[u'dubbo', u'assault', u'exam', u'nurs']
[u'eagl', u'lynch', u'lose', u'licenc']
[u'east', u'timor', u'expel', u'australian', u'activist']
[u'elder', u'woman', u'bash', u'home', u'invas']
[u'embattl', u'leader', u'leav', u'georgia', u'renegad', u'region']
[u'employ', u'group', u'question', u'wage', u'rise']
[u'extrem', u'concern', u'libyan', u'verdict']
[u'fairfax', u'chief', u'step']
[u'farmer', u'warn', u'dire', u'winter', u'ahead']
[u'fear', u'reef', u'fish', u'compo', u'rush']
[u'fear', u'wage', u'boost', u'hurt', u'farm', u'wine', u'industri']
[u'feder', u'fall', u'hewitt', u'fight', u'rome']
[u'govt', u'offer', u'mine', u'school', u'pledg']
[u'fight', u'flare', u'iraq']
[u'home', u'buyer', u'winner', u'budget']
[u'olympian', u'clark', u'declin', u'carri', u'torch']
[u'olympian', u'declin', u'torch', u'bearer', u'invit']
[u'geelong', u'mayor', u'push', u'bypass', u'campaign']
[u'georgia', u'clamp', u'provinc', u'protest']
[u'govt', u'aim', u'protect', u'gang', u'rape', u'victim']
[u'govt', u'derail', u'kalgoorli', u'esper', u'train', u'plan']
[u'govt', u'unveil', u'scienc', u'research', u'packag']
[u'greek', u'offici', u'shore', u'secur', u'support']
[u'green', u'group', u'angri', u'bioregion', u'report', u'snub']
[u'green', u'specul', u'hydro', u'loss']
[u'hefti', u'fine', u'equip', u'shark', u'pirat']
[u'high', u'enrol', u'prompt', u'tafe', u'upgrad']
[u'hill', u'expect', u'hero', u'welcom', u'troop']
[u'home', u'sack', u'worker', u'stay', u'open']
[u'huge', u'chicken', u'farm', u'get', u'despit', u'object']
[u'chief', u'launch', u'attack', u'blair']
[u'aliv', u'declar', u'dead', u'turkish', u'veteran']
[u'increas', u'cost', u'hurt', u'burrup', u'project']
[u'injuri', u'plagu', u'waratah', u'squad']
[u'inmat', u'tell', u'murder', u'accus', u'cannib', u'brag']
[u'investig', u'reveal', u'siphon', u'illeg']
[u'iraqi', u'famili', u'seek', u'compens', u'death']
[u'isra', u'warplan', u'missil', u'south', u'lebanon']
[u'jam', u'local', u'showdown']
[u'japanes', u'polic', u'raid', u'mitsubishi']
[u'judg', u'reject', u'martha', u'stewart', u'trial']
[u'juror', u'confus', u'disench']
[u'labor', u'support', u'arm', u'guard', u'athlet']
[u'landhold', u'warn', u'wild', u'woe']
[u'lawyer', u'crackdown', u'eas', u'migrat', u'case', u'load']
[u'leak', u'report', u'reignit', u'detent', u'centr', u'debat']
[u'leak', u'weight', u'detent', u'inquiri', u'call']
[u'leicest', u'citi', u'face', u'mele', u'charg']
[u'leonard', u'hang', u'boot']
[u'libya', u'execut', u'aid', u'spread', u'health', u'worker']
[u'licenc', u'delay', u'anger', u'communiti', u'broadcast']
[u'lifesav', u'club', u'concern', u'short', u'term', u'leas']
[u'lobster', u'price', u'extend', u'season']
[u'front', u'court', u'train', u'drug']
[u'maori', u'gather', u'seab', u'debat', u'begin']
[u'maradona', u'hospit']
[u'market', u'quiet', u'rat', u'decis']
[u'matern', u'support', u'group', u'welcom', u'midwiferi', u'servic']
[u'medic', u'journal', u'editor', u'question', u'necess']
[u'megawati', u'enlist', u'muslim', u'presidenti', u'run', u'mate']
[u'mental', u'health', u'cottag', u'face', u'uncertain', u'futur']
[u'minist', u'cast', u'doubt', u'saltwat', u'pipelin']
[u'minist', u'name', u'water', u'manag', u'author', u'member']
[u'monaco', u'champion', u'leagu', u'final']
[u'argu', u'hume', u'prison', u'site']
[u'mundin', u'lose', u'box', u'titl']
[u'mundin', u'lose', u'world', u'titl']
[u'nat', u'rais', u'doubt', u'kalbarri', u'power', u'cost']
[u'nat', u'want', u'budget', u'address', u'power', u'woe']
[u'photo', u'abus', u'iraqi', u'prison', u'report']
[u'news', u'corp', u'announc', u'profit']
[u'ngos', u'unit', u'crocodil', u'hunt']
[u'sight', u'mental', u'health', u'industri']
[u'norman', u'give', u'scott', u'caddi', u'bless']
[u'northern', u'consid', u'atsic', u'replac', u'plan']
[u'north', u'korea', u'tell', u'south', u'stop', u'exercis']
[u'nowra', u'plead', u'guilti', u'cabbi', u'murder']
[u'dismiss', u'casino', u'misconduct', u'claim']
[u'say', u'casino', u'misconduct', u'claim']
[u'oppn', u'highlight', u'grow', u'hospit', u'wait', u'list']
[u'pass', u'council', u'amalgam', u'job']
[u'vet', u'live', u'export', u'trade']
[u'nurs', u'tell', u'demand']
[u'nuttal', u'urg', u'mediat', u'mater', u'nurs', u'disput']
[u'opposit', u'criticis', u'high', u'brack']
[u'optus', u'help', u'singtel', u'tripl', u'profit']
[u'owingup', u'blaze', u'tip', u'heat']
[u'parent', u'award', u'overwhelm']
[u'patient', u'number', u'strain', u'mildura', u'hospit']
[u'peopl', u'approv', u'judg', u'archibald', u'pick']
[u'pharmacist', u'welcom', u'deregul', u'backdown']
[u'philippin', u'uncov', u'cell']
[u'picasso', u'paint', u'set', u'world', u'record', u'price']
[u'pilot', u'error', u'caus', u'crash', u'kill', u'macedonian']
[u'plane', u'passeng', u'highlight', u'miss', u'life', u'jacket']
[u'plan', u'put', u'focus', u'wildlif', u'park', u'conserv']
[u'player', u'pie', u'criticis', u'tribun', u'plan']
[u'hop', u'athen', u'guard', u'need']
[u'surpris', u'inclus', u'qaeda', u'list']
[u'policeman', u'deni', u'role', u'theft']
[u'polic', u'train', u'crash', u'victim']
[u'polic', u'search', u'miss', u'teenag']
[u'polic', u'wind', u'inconclus', u'fertilis', u'probe']
[u'poor', u'road', u'attract', u'adventur', u'tourist']
[u'privat', u'nurs', u'seek', u'futher', u'talk']
[u'product', u'begin', u'environment', u'friend']
[u'public', u'consult', u'refineri', u'expans']
[u'public', u'consid', u'propos']
[u'polic', u'defend', u'boy', u'imprison']
[u'rate', u'rise', u'includ', u'kiama', u'council', u'budget']
[u'resid', u'campaign', u'derbi', u'polic', u'boost']
[u'resid', u'protest', u'train', u'cut']
[u'resign', u'threat', u'ebb', u'seab', u'debat']
[u'retail', u'sale', u'regist', u'solid', u'growth']
[u'honour', u'local', u'firemen']
[u'ripper', u'put', u'famili', u'budget']
[u'riverina', u'council', u'fight', u'atsic', u'decis']
[u'robson', u'prepar', u'newcastl', u'massiv', u'task']
[u'rutherford', u'report', u'prompt', u'compens', u'law']
[u'schumach', u'wari', u'barcelona']
[u'scienc', u'fund', u'boost', u'australian', u'research', u'sale']
[u'scientist', u'fear', u'boost', u'diseas', u'risk']
[u'seafood', u'industri', u'want', u'generous', u'reef', u'packag']
[u'second', u'blast', u'rock', u'baghdad']
[u'shark', u'tuna', u'share', u'need', u'speed']
[u'sheep', u'diseas', u'monitor', u'go', u'high', u'tech']
[u'south', u'africa', u'crime', u'fight', u'gorilla', u'die']
[u'spain', u'free', u'accus', u'madrid', u'bomb']
[u'sport', u'complex', u'stakehold', u'meet']
[u'stanhop', u'surviv', u'confid', u'vote']
[u'subsidis', u'vaccin', u'urg', u'childhood', u'diseas']
[u'sugar', u'chief', u'predict', u'nich', u'market']
[u'swimmer', u'discuss', u'olymp', u'safeti', u'concern']
[u'sydney', u'brother', u'face', u'rape', u'trial']
[u'sydney', u'hospit', u'blunder', u'expos']
[u'talk', u'avert', u'sydney', u'strike']
[u'host', u'supercar']
[u'terror', u'chang', u'prosecut']
[u'terror', u'test', u'go', u'bang']
[u'thousand', u'turn', u'warrnambool', u'race']
[u'kill', u'afghan', u'violenc']
[u'tidi', u'town', u'judg', u'begin']
[u'tini', u'tuvalu', u'plan', u'parti', u'biggest', u'build']
[u'tour', u'oper', u'warn', u'market', u'scam']
[u'trade', u'deal', u'music', u'apra', u'ear']
[u'trescothick', u'steer', u'england', u'seri', u'draw']
[u'tripl', u'murder', u'releas', u'prison']
[u'troop', u'arrest', u'hama', u'leader', u'dawn', u'raid']
[u'name', u'agenc', u'boss']
[u'academ', u'await', u'enterpris', u'talk']
[u'program', u'face', u'uncertain', u'futur']
[u'staff', u'want', u'delay', u'fee', u'decis']
[u'nato', u'criticis', u'kosovo', u'prostitut']
[u'apologis', u'iraqi', u'prison', u'abus']
[u'engin', u'hold', u'hostag', u'iraq', u'report']
[u'guardsman', u'investig', u'nake', u'soldier', u'photo']
[u'soldier', u'kill', u'oper', u'sadr']
[u'verstappen', u'test', u'jordan']
[u'veteran', u'firefight', u'recount', u'canberra', u'drama']
[u'victorian', u'trauma', u'plan', u'cut', u'patient', u'death', u'rate']
[u'waff', u'angri', u'rat', u'freez']
[u'waff', u'welcom', u'egypt', u'grain', u'deal']
[u'wage', u'boost', u'help', u'remot', u'worker']
[u'water', u'polo', u'match', u'showdown', u'champion']
[u'westpac', u'announc', u'record', u'half', u'year', u'profit']
[u'westpac', u'leighton', u'share', u'profit', u'result']
[u'westpac', u'leighton', u'weigh', u'market']
[u'hop', u'tiger', u'caddi', u'bring', u'luck']
[u'wildlif', u'group', u'cook', u'honorari', u'titl', u'defiant']
[u'wladimir', u'klitschko', u'go', u'legal', u'offens']
[u'wood', u'tri', u'track', u'wachovia']
[u'writer', u'scribbl', u'kibbl']
[u'urg', u'ramsar', u'list', u'north', u'west', u'wetland']
[u'your', u'troubl', u'tell', u'miss', u'teen']
[u'zidan', u'worst', u'form', u'year']
[u'zimbabw', u'rebel', u'leav', u'test', u'squad']
[u'polic', u'face', u'bashir', u'protest', u'charg']
[u'begin', u'underground', u'broadcast']
[u'senat', u'back', u'graphic', u'cigarett', u'warn']
[u'age', u'care', u'industri', u'want', u'fee', u'doubl']
[u'airport', u'secur', u'review', u'knife', u'incid']
[u'ambul', u'staff', u'clear', u'toddler', u'death']
[u'america', u'bid', u'friend', u'farewel']
[u'analyst', u'doubt', u'benefit', u'deploy']
[u'applebi', u'trail', u'triplett', u'north', u'carolina']
[u'rule', u'lockyer']
[u'provid', u'incent', u'bid', u'team']
[u'aussi', u'lashko', u'make', u'fourth', u'olymp', u'team']
[u'aust', u'high', u'commiss', u'pakistan', u'reduc', u'servic']
[u'baddaginni', u'put', u'toxic', u'dump', u'concern', u'minist']
[u'bank', u'delay', u'branch', u'open']
[u'beadman', u'race']
[u'bendigo', u'hous', u'market', u'tip', u'remain', u'strong']
[u'pastor', u'compani', u'celebr', u'centenari']
[u'lade', u'offer', u'reward', u'assassin']
[u'bolton', u'wait', u'rivaldo']
[u'bomber', u'drop', u'veteran', u'mercuri']
[u'bomber', u'lead', u'long', u'break']
[u'bomber', u'retain', u'whitten']
[u'box', u'mayor', u'draw', u'line', u'bull', u'rid']
[u'breakthrough', u'skate', u'park', u'talk']
[u'british', u'distributor', u'back', u'moor', u'film']
[u'british', u'govt', u'appoint']
[u'budget', u'ignor', u'power', u'woe', u'nat']
[u'budget', u'leak', u'give', u'away', u'nurs', u'home', u'rise']
[u'budget', u'matern', u'plan', u'littl', u'late']
[u'budget', u'spark', u'mix', u'goldfield', u'reaction']
[u'bush', u'sorri', u'iraqi', u'prison', u'abus']
[u'button', u'content', u'victori']
[u'caloundra', u'join', u'team', u'rescu', u'challeng']
[u'cannon', u'name']
[u'cassel', u'lodg', u'appeal']
[u'cathol', u'school', u'teacher', u'ralli', u'work']
[u'celtic', u'histori', u'firm', u'rival']
[u'chang', u'chelsea', u'champion', u'leagu', u'defeat']
[u'child', u'pornograph', u'give', u'year', u'jail', u'term']
[u'classic', u'strike', u'right', u'note', u'itiner']
[u'clijster', u'pull', u'berlin']
[u'coolah', u'shire', u'vote', u'merger']
[u'coron', u'rule', u'leski', u'inquest', u'continu']
[u'council', u'protest', u'group', u'vote']
[u'council', u'highlight', u'million', u'dollar', u'save']
[u'council', u'feedback', u'draft', u'budget']
[u'countri', u'origin']
[u'cronj', u'plane', u'crash', u'part', u'human', u'error']
[u'crow', u'desper', u'port', u'streak']
[u'crusad', u'stun', u'explos', u'umaga']
[u'csiro', u'welcom', u'fund', u'deal']
[u'cwealth', u'urg', u'share', u'cost', u'upgrad', u'prison']
[u'deek', u'get', u'child', u'health', u'program', u'run']
[u'dissid', u'director', u'walk', u'away', u'payout']
[u'driver', u'liabl', u'boy', u'injuri']
[u'drought', u'persist', u'despit', u'predict']
[u'earli', u'hummingbird', u'fossil', u'germani']
[u'east', u'timor', u'polic', u'arrest', u'australian', u'journalist']
[u'energi', u'giant', u'strike', u'swap', u'deal']
[u'england', u'cricket', u'allow', u'player', u'boycott', u'zimbabw']
[u'esplanad', u'ceremoni', u'commemor', u'coral', u'battl']
[u'expert', u'predict', u'strong', u'hunter', u'growth']
[u'expert', u'want', u'gulf', u'bird', u'habitat', u'protect']
[u'rule', u'chang', u'timescal', u'optimist']
[u'facilit', u'seek', u'address', u'immigr', u'issu']
[u'father', u'year', u'jail', u'abus']
[u'assist', u'sumatra', u'bomb', u'investig']
[u'firefight', u'contain', u'wadbilliga', u'blaze']
[u'footbal', u'flasher', u'ban', u'year']
[u'policeman', u'await', u'sentenc', u'drug', u'charg']
[u'fraser', u'group', u'seek', u'environ', u'fund']
[u'fugit', u'return', u'jail', u'year']
[u'funer', u'hold', u'rockhampton', u'murder', u'victim']
[u'gallop', u'chastis', u'narrow', u'mind', u'busi']
[u'giro', u'ban', u'fail', u'blood', u'test']
[u'gold', u'coast', u'consid', u'buyer', u'market']
[u'goondiwindi', u'get', u'indoor', u'sport', u'centr']
[u'govern', u'begin', u'budget', u'sell']
[u'govt', u'accus', u'withhold', u'famili', u'packag']
[u'govt', u'aid', u'starvat', u'sudan', u'refuge']
[u'govt', u'face', u'battl', u'drug']
[u'grassroot', u'packag', u'fight', u'crime']
[u'greec', u'seeth', u'bomb', u'reaction']
[u'green', u'group', u'back', u'hous', u'plan', u'withdraw']
[u'green', u'group', u'prepar', u'east', u'court', u'battl']
[u'green', u'deal', u'forc', u'rail', u'closur']
[u'group', u'worri', u'grow', u'domest', u'violenc']
[u'gunn', u'stand', u'firm', u'environment', u'record']
[u'health', u'check', u'scheme', u'target', u'indigen', u'youth']
[u'hewitt', u'make', u'earli', u'rome', u'exit']
[u'hezbollah', u'isra', u'troop', u'trade']
[u'hill', u'warn', u'water', u'cut']
[u'howard', u'stay', u'tight', u'lip', u'budget', u'leak']
[u'hydrogen', u'power', u'silent', u'scooter']
[u'idea', u'seek', u'promot', u'outback', u'highway']
[u'ikin', u'surpris', u'comeback']
[u'indigen', u'alcohol', u'plan', u'fatal', u'flaw']
[u'indonesian', u'admit', u'sexual', u'abus']
[u'inter', u'owner', u'demand', u'fourth', u'place']
[u'interst', u'steward', u'rule', u'race', u'protest']
[u'iran', u'come', u'clean', u'atom', u'plan']
[u'iraq', u'prison', u'abus', u'widespread']
[u'isra', u'kill', u'firefight', u'near', u'lebanes', u'border']
[u'jone', u'deni', u'involv', u'dope']
[u'stock', u'debut', u'issu', u'price']
[u'karachi', u'mosqu', u'bomb', u'kill']
[u'kimmorley', u'chanc', u'stuart']
[u'koizumi', u'alli', u'quit', u'pension', u'scandal']
[u'labor', u'attack', u'budget', u'bribe']
[u'land', u'council', u'coordin', u'join', u'catchment', u'board']
[u'liber', u'parti', u'expel', u'punchbowl', u'brawler']
[u'lion', u'repriev']
[u'lobster', u'committe', u'discuss', u'effici', u'chang']
[u'local', u'council', u'seek', u'town', u'plan', u'chang']
[u'local', u'govt', u'group', u'welcom', u'rural', u'road', u'fund']
[u'love', u'chang', u'testosteron']
[u'lucindal', u'school', u'win', u'wine', u'award']
[u'jail', u'sadist', u'slaveri']
[u'walk', u'help', u'fall', u'yacht']
[u'maradona', u'respond', u'treatment', u'doctor']
[u'market', u'lower', u'despit', u'late', u'ralli']
[u'marseill', u'newcastl', u'uefa', u'dream']
[u'mar', u'scientist', u'excit', u'latest']
[u'mayor', u'unhappi', u'race', u'chief', u'nonstart']
[u'meet', u'aim', u'avert', u'driver', u'strike']
[u'mental', u'health', u'worker', u'step', u'industri', u'campaign']
[u'migrant', u'like', u'develop', u'schizophrenia']
[u'minist', u'defend', u'jail', u'plan', u'process']
[u'minist', u'quiet', u'juvenil', u'justic', u'fund']
[u'miss', u'teen', u'canberra']
[u'moora', u'welcom', u'hospit', u'fund']
[u'moseley', u'british', u'master', u'content']
[u'riverland', u'resid', u'oppos', u'telstra', u'sale', u'lee']
[u'motorist', u'litr']
[u'mottram', u'win', u'minut', u'mile']
[u'call', u'milk', u'boycott']
[u'lament', u'rail', u'loss']
[u'urg', u'dairi', u'collect', u'bargain']
[u'gambier', u'resid', u'carri', u'olymp', u'torch']
[u'cancel', u'sharehold', u'meet']
[u'share', u'boardroom', u'battl', u'end']
[u'natur', u'disast', u'affect', u'chines']
[u'nepal', u'quit', u'face', u'protest']
[u'commerci', u'develop', u'approv', u'gungahlin']
[u'dossier', u'back', u'iraq', u'abus', u'claim', u'report']
[u'nobl', u'name', u'coach']
[u'north', u'korea', u'agre', u'militari', u'talk']
[u'north', u'south', u'korea', u'hold', u'militari', u'talk']
[u'olymp', u'torch', u'relay', u'bypass', u'athlet']
[u'pacif', u'boss', u'tell', u'jone', u'read', u'rule', u'book']
[u'pakistani', u'landlord', u'allow', u'rape', u'women', u'payback']
[u'rise', u'offer', u'staff']
[u'photon', u'fund', u'cut', u'risk', u'busi', u'deal']
[u'photon', u'fund', u'cut', u'like', u'stand']
[u'picasso', u'remain', u'strong', u'sothebi', u'record']
[u'polic', u'chief', u'voic', u'respect', u'superintend']
[u'polic', u'confirm', u'saint', u'clear']
[u'polic', u'investig', u'second', u'home', u'invas']
[u'polic', u'reject', u'polit', u'critic', u'bulldog', u'rape']
[u'polic', u'seek', u'wit', u'attempt', u'abduct']
[u'polic', u'identifi', u'victim']
[u'popular', u'putin', u'begin', u'second', u'term']
[u'postal', u'worker', u'strike']
[u'prison', u'harass', u'claim', u'send', u'ombudsman']
[u'public', u'servant', u'recal', u'stanhop', u'call']
[u'punter', u'prepar', u'burrandowan', u'picnic', u'race']
[u'polic', u'charg', u'drug', u'oper']
[u'rabbitoh', u'secur', u'macdougal']
[u'race', u'chief', u'get', u'steeplechas', u'futur']
[u'race', u'council', u'request', u'integr', u'rule']
[u'race', u'industri', u'honour', u'legend', u'jockey']
[u'ralf', u'say', u'futur', u'secur']
[u'rate', u'cap', u'legisl', u'allow', u'variat']
[u'rat', u'tip', u'stay', u'flat', u'hous', u'slow']
[u'reclaim', u'water', u'scheme', u'eas', u'catchment', u'pressur']
[u'refuge', u'advoc', u'address', u'albani', u'meet']
[u'rental', u'support', u'scheme', u'expand']
[u'reserv', u'bank', u'say', u'home', u'market', u'cool']
[u'resourc', u'sector', u'tell', u'continu', u'labour', u'shortag']
[u'reward', u'offer', u'statu', u'vandal']
[u'rider', u'wheelchair', u'user', u'tell', u'hang']
[u'royal', u'take', u'band', u'derwent', u'denmark']
[u'sadist', u'crime', u'break', u'father', u'heart']
[u'saint', u'pair', u'clear', u'rape', u'alleg']
[u'santo', u'cut', u'job', u'profit', u'tip', u'climb']
[u'sar', u'drought', u'cut', u'australian', u'export']
[u'sar', u'spread', u'sweat']
[u'fail', u'meet', u'audit', u'requir']
[u'schumach', u'speed', u'record', u'beckon']
[u'schwab', u'warn', u'behaviour', u'wont', u'toler']
[u'scientist', u'explor', u'option', u'clean', u'antarctica']
[u'second', u'drug', u'haul', u'indian', u'pacif']
[u'shark', u'ward', u'gold', u'coast', u'canal', u'swimmer']
[u'skipper', u'face', u'charg', u'boat', u'death']
[u'south', u'african', u'charg', u'import', u'cocain']
[u'stanbrok', u'properti', u'sale', u'menegazzo', u'take']
[u'sunfish', u'member', u'support', u'reef', u'fish', u'compo', u'call']
[u'supermodel', u'win', u'controversi', u'privaci', u'case']
[u'swarm', u'asian', u'honey', u'be', u'thwart', u'cairn', u'port']
[u'sydney', u'polic', u'search', u'miss', u'sister']
[u'sydney', u'properti', u'sale', u'drop']
[u'taipan', u'molloy', u'coach', u'young', u'croc']
[u'tamil', u'tiger', u'renew', u'child', u'recruit', u'monitor']
[u'tasmania', u'afford', u'nurs', u'demand']
[u'teen', u'charg', u'park', u'robberi']
[u'teen', u'charg', u'schoolground', u'death']
[u'thousand', u'evacu', u'ukrain', u'explos']
[u'thai', u'replac', u'violent', u'south']
[u'tourist', u'attract', u'offer', u'view']
[u'transit', u'talk', u'appeas', u'driver']
[u'treasur', u'laud', u'bendigo', u'growth']
[u'tweed', u'fail', u'rail', u'closur', u'debat']
[u'ukrain', u'munit', u'explos', u'kill']
[u'union', u'worksaf', u'discuss', u'mediat', u'concern']
[u'unit', u'chelsea', u'scrap', u'arsenal', u'leftov']
[u'adjust', u'time', u'human', u'right', u'announc']
[u'ambassador', u'tour', u'exmouth', u'naval', u'base']
[u'beer', u'hop', u'ahead', u'award', u'night']
[u'market', u'iraq', u'news']
[u'secur', u'governor', u'offic', u'najaf', u'attack']
[u'valencia', u'edg', u'villarr', u'reach', u'uefa', u'final']
[u'valencia', u'verg', u'championship']
[u'vietnam', u'control', u'bird', u'outbreak']
[u'violenc', u'flair', u'thaksin', u'visit', u'south']
[u'budget', u'provid', u'north', u'west', u'health', u'boost']
[u'waff', u'unhappi', u'budget', u'alloc']
[u'water', u'author', u'restructur', u'bill', u'process']
[u'waugh', u'shoot', u'virginia']
[u'wild', u'bait', u'southern']
[u'wollongong', u'join', u'aeromed', u'review']
[u'woman', u'charg', u'glen', u'inn', u'arm', u'theft']
[u'woomera', u'test', u'provid', u'terror', u'bomb', u'clue']
[u'sadr', u'militia', u'kill', u'iraqi', u'holi', u'citi']
[u'algerian', u'polish', u'journalist', u'kill', u'iraq', u'drive']
[u'american', u'william', u'vault', u'williamsburg', u'lead']
[u'amnesti', u'demand', u'crime', u'inquiri']
[u'aim', u'reassur', u'athlet', u'secur']
[u'appl', u'deni', u'itun', u'onlin', u'price', u'rise']
[u'armi', u'charg', u'soldier', u'iraqi', u'abus']
[u'australia', u'sign', u'marshal', u'agreement']
[u'ban', u'doctor', u'appeal', u'decis']
[u'honda', u'domin', u'ferrari', u'final', u'spanish']
[u'blue', u'pie', u'final', u'quarter', u'charg']
[u'blue', u'season', u'high', u'note']
[u'blue', u'lead', u'highland']
[u'bradshaw', u'boot', u'lion']
[u'british', u'troop', u'iraq', u'abus', u'claim']
[u'brumbi', u'chief', u'book', u'replay']
[u'buckley', u'help', u'pie', u'quarter', u'lead']
[u'bush', u'accus', u'torpedo', u'mideast', u'peac', u'plan']
[u'bushfir', u'coron', u'reject', u'claim', u'blame', u'alloc']
[u'bush', u'say', u'palestinian', u'state', u'unlik']
[u'button', u'tip', u'schumach', u'fastest', u'titl']
[u'candid', u'select', u'agenda', u'meet']
[u'cannon', u'clear', u'red', u'clash']
[u'celtic', u'chase', u'rivaldo']
[u'chemic', u'exposur', u'put', u'children', u'risk']
[u'child', u'detent', u'breach', u'convent', u'human']
[u'chile', u'give', u'right', u'divorc']
[u'clijster', u'pull', u'french', u'open']
[u'cowboy', u'roll', u'warrior']
[u'cowboy', u'warrior', u'lock', u'townsvill']
[u'crow', u'cruis', u'victori', u'adelaid']
[u'crow', u'grab', u'lead', u'adelaid']
[u'crow', u'adelaid']
[u'death', u'toll', u'karachi', u'mosqu', u'blast', u'mount']
[u'democrat', u'urg', u'extra', u'inject', u'public', u'educ']
[u'director', u'find', u'movi', u'star', u'ebay']
[u'east', u'timor', u'accus', u'expel', u'australian']
[u'england', u'struggl', u'black', u'mitchel']
[u'famili', u'stage', u'breastfe', u'focus']
[u'father', u'injur', u'quad', u'bike', u'crash']
[u'fergi', u'say', u'nistelrooy', u'go']
[u'ferrari', u'gun', u'spanish', u'pole']
[u'finnish', u'prosecutor', u'rebuk', u'nail', u'bite', u'trial']
[u'destroy', u'home', u'south', u'east', u'melbourn']
[u'girl', u'aussi', u'rule', u'comp', u'kick']
[u'dead', u'huge', u'ukrain', u'arm', u'depot', u'blaze']
[u'flexibl', u'work', u'mother', u'examin', u'govt']
[u'palestinian', u'isra', u'kill', u'clash']
[u'freak', u'weather', u'lash', u'southern']
[u'gastro', u'cut', u'short', u'south', u'pacif', u'cruis']
[u'godfrey', u'retail', u'chain', u'owner', u'die']
[u'gold', u'coast', u'resid', u'warn', u'pretend', u'policeman']
[u'good', u'news', u'job', u'see', u'wall', u'street']
[u'gray', u'elegi', u'depart', u'viduka']
[u'harradin', u'anger', u'bias', u'research', u'fund']
[u'hookey', u'french', u'policeman', u'arrest', u'fishnet']
[u'houllier', u'confid', u'owen', u'stay']
[u'hurrican', u'hand', u'brumbi', u'home', u'semi', u'final']
[u'illeg', u'anim', u'hand', u'author', u'amnesti']
[u'indigen', u'peopl', u'protest', u'ax', u'atsic']
[u'iraq', u'econom', u'powerhous']
[u'jone', u'easi', u'winner', u'jamaica']
[u'karachi', u'mosqu', u'blast', u'kill', u'wound']
[u'kerri', u'threaten', u'trade', u'deal', u'zoellick']
[u'kimmorley', u'lead', u'shark', u'storm']
[u'knight', u'abraham', u'week']
[u'knive', u'indian', u'campaign', u'draw', u'close']
[u'leak', u'memo', u'reveal', u'rail', u'closur', u'nation']
[u'libya', u'slam', u'condemn', u'aid', u'case', u'death']
[u'lion', u'extend', u'lead', u'kangaroo']
[u'lion', u'lose', u'voss']
[u'lynch', u'injuri', u'mar', u'lion']
[u'charg', u'fantasi', u'drug', u'bust']
[u'man', u'bodi', u'fish', u'accid']
[u'maradona', u'sedat']
[u'mauresmo', u'set', u'capriati', u'clash']
[u'mcgee', u'favourit', u'giro', u'prologu']
[u'michelangelo', u'statu', u'time']
[u'moya', u'nalbandian', u'reach', u'rome', u'semi', u'final']
[u'murali', u'world']
[u'caledonian', u'elect', u'tip', u'deepen', u'divis']
[u'emerg', u'servic', u'site', u'decid']
[u'news', u'corp', u'unveil', u'channel']
[u'torchbear', u'nation', u'shame', u'say', u'nova', u'peri']
[u'hold', u'indigen', u'netbal', u'camp']
[u'rail', u'servic', u'win', u'major', u'construct', u'award']
[u'nurs', u'better', u'staff', u'patient', u'ratio']
[u'ohern', u'touch', u'british', u'master']
[u'price', u'hit']
[u'oppn', u'reject', u'qualiti', u'life', u'budget', u'pledg']
[u'pair', u'charg', u'shoot']
[u'pie', u'long', u'break']
[u'polish', u'soldier', u'kill', u'iraq']
[u'powderfing', u'rock', u'royal', u'danish', u'concert']
[u'premier', u'mitsubishi', u'rescu', u'mission', u'german']
[u'prison', u'abus', u'iraq', u'widespread', u'cross']
[u'putin', u'pledg', u'increas', u'live', u'standard']
[u'real', u'estat', u'market', u'slow', u'rapid']
[u'red', u'ahead', u'brisban']
[u'red', u'waratah', u'super', u'dream']
[u'road', u'toll', u'rise']
[u'rooster', u'hammer', u'tiger', u'fittler', u'reach', u'mileston']
[u'rooster', u'half', u'time', u'lead']
[u'rumsfeld', u'apolog', u'cross', u'say', u'iraq', u'abus', u'rife']
[u'rumsfeld', u'myer', u'defend', u'ask', u'press', u'delay']
[u'rumsfeld', u'resign', u'poll']
[u'sadr', u'militiamen', u'attack', u'british', u'forc', u'basra']
[u'saint', u'hold', u'docker', u'comeback']
[u'saint', u'control', u'half', u'time']
[u'saint', u'maintain', u'win', u'streak']
[u'saint', u'maintain', u'streak']
[u'saint', u'march', u'ahead', u'quarter', u'time']
[u'sasser', u'worm', u'suspect', u'arrest', u'germani']
[u'second', u'shipwreck', u'coast']
[u'shark', u'edg', u'storm']
[u'southern', u'clean', u'freak', u'hail', u'storm']
[u'lanka', u'build', u'lead']
[u'steve', u'martin', u'beyonc', u'recreat', u'pink', u'panther']
[u'swift', u'darter', u'secur', u'point']
[u'govt', u'reconsid', u'coastal', u'island', u'leas']
[u'govt', u'urg', u'drop', u'stamp', u'duti', u'home']
[u'task', u'forc', u'investig', u'har', u'race', u'accid']
[u'offici', u'meet', u'palestinian']
[u'moder', u'quak', u'rock', u'taiwan']
[u'ukrain', u'secret', u'polic', u'seiz', u'radioact', u'caesium']
[u'union', u'attack', u'beatti', u'back', u'trade', u'deal']
[u'australian', u'flight', u'soon', u'marshal']
[u'confid', u'greec', u'stage', u'safe', u'olymp']
[u'marin', u'kill', u'afghanistan']
[u'militari', u'disciplin', u'guantanamo', u'warden']
[u'morn', u'pill', u'sale', u'block']
[u'remain', u'pressur', u'iraq', u'abus', u'scandal']
[u'soldier', u'say', u'role', u'hell']
[u'wenger', u'say', u'gunner', u'destin', u'great']
[u'william', u'lead', u'cowboy', u'warrior']
[u'woman', u'spend', u'night', u'trap', u'accid']
[u'wood', u'surg', u'clear', u'north', u'carolina']
[u'zimbabw', u'rebel', u'agre', u'mediat']
[u'zoysa', u'take', u'zimbabw', u'stumbl']
[u'forest', u'defend', u'pine', u'tree', u'propos']
[u'govt', u'accus', u'bypass', u'nurs', u'union']
[u'akhtar', u'tell', u'spirit']
[u'alarm', u'caus', u'chao', u'sydney', u'shop', u'centr']
[u'barca', u'real', u'spanish', u'titl', u'slip']
[u'blair', u'vote', u'loser', u'poll']
[u'british', u'troop', u'basra', u'clash']
[u'broadhurst', u'grab', u'british', u'master', u'lead']
[u'bronco', u'charg', u'ahead', u'canberra']
[u'canadian', u'peac', u'activist', u'welcom', u'iraq']
[u'canberra', u'doctor', u'form', u'union']
[u'candid', u'approach', u'best', u'stop', u'children', u'fear']
[u'cat', u'score', u'seven', u'tri', u'lose']
[u'celtic', u'rival', u'ranger']
[u'chechen', u'leader', u'kill', u'stadium', u'blast']
[u'chechen', u'leader', u'general', u'injur', u'stadium']
[u'chelsea', u'secur', u'champ', u'leagu', u'spot']
[u'climat', u'chang', u'landscap', u'research']
[u'endors', u'minist', u'elect']
[u'communiti', u'fear', u'thai', u'girl', u'deport']
[u'cosgrov', u'shock', u'iraq', u'prison', u'abus']
[u'costello', u'stoke', u'leadership', u'talk', u'ahead', u'budget']
[u'costello', u'focus', u'budget', u'work', u'famili']
[u'death', u'fairi', u'penguin', u'prompt', u'larger']
[u'delay', u'forc', u'park', u'north', u'hire', u'boat', u'ferri']
[u'democrat', u'easi', u'passag', u'budget']
[u'demon', u'build', u'lead', u'eagl']
[u'demon', u'stay', u'second', u'down', u'eagl']
[u'deplet', u'knight', u'toppl', u'bulldog']
[u'farina', u'hope', u'viduka', u'friend']
[u'feder', u'project', u'tackl', u'mother', u'stereotyp']
[u'fund', u'target', u'weed', u'control', u'near', u'kakadu']
[u'arrest', u'itali', u'anti', u'terror', u'swoop']
[u'foreign', u'stone', u'death', u'afghan', u'capit']
[u'iraqi', u'right', u'minist', u'say', u'prison', u'abus']
[u'french', u'polic', u'foil', u'bomb', u'threat', u'synagogu']
[u'french', u'protest', u'lift', u'blockad', u'cann', u'film']
[u'fund', u'cut', u'threaten', u'tourism', u'council']
[u'geelong', u'domin', u'quarter', u'play']
[u'geelong', u'hammer', u'hawthorn']
[u'german', u'teen', u'confess', u'creat', u'sasser']
[u'case', u'cheney', u'defend', u'rumsfeld']
[u'host', u'dinner', u'danish', u'royal']
[u'girl', u'dead', u'hous']
[u'govt', u'lie', u'budget', u'tax', u'opposit']
[u'govt', u'urg', u'invest', u'public', u'school']
[u'green', u'rule', u'support', u'suspect', u'cut']
[u'injur', u'venus', u'doubt', u'berlin', u'final']
[u'injuri', u'wreak', u'havoc', u'rome', u'master']
[u'iraq', u'prison', u'abus', u'commit', u'bush']
[u'japan', u'verg', u'nuclear', u'wmds', u'north', u'korea']
[u'jazz', u'guitarist', u'barney', u'kessel', u'die']
[u'jerusalem', u'blast', u'injur', u'medic']
[u'knight', u'crush', u'unimpress', u'bulldog']
[u'knight', u'gallop', u'half', u'time', u'lead']
[u'lone', u'penalti', u'separ', u'man', u'dragon']
[u'arrest', u'polic', u'park', u'rampag']
[u'maxin', u'carr', u'namesak', u'fear', u'jail', u'releas']
[u'mcgee', u'pink', u'prologu']
[u'mcgee', u'send', u'anti', u'drug', u'messag']
[u'melbourn', u'host', u'largest', u'citizenship', u'ceremoni']
[u'mother', u'celebr', u'famili']
[u'moya', u'nalbandian', u'reach', u'rome', u'final']
[u'scandal', u'surpris', u'westpac', u'chief']
[u'law', u'protect', u'children', u'famili', u'suffer']
[u'notori', u'iraqi', u'prison', u'close', u'chief']
[u'polic', u'tell', u'million', u'cost']
[u'extend', u'hemp', u'product', u'trial']
[u'obes', u'child', u'youngest', u'type', u'diabet', u'case']
[u'ochoa', u'shoot', u'share', u'williamsburg', u'lead']
[u'offic', u'bad', u'injur', u'attack']
[u'ogilvi', u'lead', u'aussi', u'charg']
[u'kill', u'shiit', u'protest', u'pakistan', u'suicid', u'bomb']
[u'optus', u'boss', u'deni', u'possibl', u'telstra']
[u'oyster', u'farmer', u'work', u'environment', u'credenti']
[u'panther', u'open', u'comfort', u'lead']
[u'panther', u'thump', u'rabbitoh']
[u'pentagon', u'approv', u'guantanamo', u'interrog', u'report']
[u'phoenix', u'sink', u'firebird', u'bird', u'crush', u'kestrel']
[u'polic', u'investig', u'overnight', u'stab', u'brisban']
[u'qanta', u'accus', u'discrimin', u'plug']
[u'ranieri', u'agent', u'demand', u'chelsea', u'manag']
[u'resid', u'argu', u'glenelg', u'develop']
[u'richardson', u'lead', u'tiger', u'upset', u'swan']
[u'richardson', u'lead', u'tiger', u'fightback']
[u'schumach', u'snatch', u'spanish', u'pole']
[u'eagl', u'dragon']
[u'sharon', u'cancel', u'washington', u'trip']
[u'kill', u'baghdad', u'market', u'explos']
[u'stormer', u'sneak', u'super', u'semi']
[u'strand', u'windsurf', u'wait', u'rescu', u'parti']
[u'tasmanian', u'ralli', u'mental', u'health', u'inquiri']
[u'frawley', u'hand', u'victori', u'bronco']
[u'tiger', u'upset', u'swan']
[u'tuqiri', u'talk', u'bennett']
[u'troop', u'face', u'prison', u'abus', u'charg', u'report']
[u'alli', u'vent', u'anger', u'iraqi', u'prison', u'abus']
[u'doctor', u'success', u'remov', u'sick', u'gorilla', u'lung']
[u'look', u'reduc', u'iraqi', u'prison', u'popul']
[u'soldier', u'kill', u'northern', u'iraq']
[u'troop', u'arrest', u'sadr', u'aid']
[u'venus', u'william', u'pull', u'german', u'open', u'final']
[u'warn', u'possibl', u'postag', u'delay']
[u'westpac', u'rule', u'dramat', u'rise']
[u'windsurf', u'rescu', u'island']
[u'women', u'footbal', u'competit', u'plan']
[u'zimbabw', u'minist', u'heckl', u'mozambiqu', u'report']
[u'zimbabw', u'suspend', u'food', u'mission']
[u'aborigin', u'urg', u'input', u'hous', u'review']
[u'air', u'environ', u'fund', u'concern']
[u'chief', u'invit', u'clarifi', u'forget', u'phone', u'call']
[u'teacher', u'start', u'work', u'ban', u'disput']
[u'anwar', u'outburst', u'caus', u'appeal', u'upset']
[u'apra', u'defend', u'action', u'trade', u'scandal']
[u'arroyo', u'lead', u'philippin', u'poll', u'close']
[u'arsenal', u'game', u'away', u'unbeaten', u'season']
[u'asio', u'conduct', u'secur', u'audit']
[u'atsic', u'commission', u'hit', u'apathi']
[u'australian', u'soldier', u'fin', u'kitten', u'tortur']
[u'australian', u'snap', u'cheap', u'local', u'wine']
[u'australia', u'post', u'warn', u'delay', u'come', u'stop', u'work']
[u'blair', u'apologis', u'british', u'abus', u'prison']
[u'blue', u'boss', u'origin', u'squad']
[u'place', u'pie', u'eye', u'final']
[u'british', u'govt', u'pressur', u'reveal', u'prison', u'abus']
[u'budget', u'point']
[u'bumper', u'abalon', u'season', u'south', u'coast']
[u'bush', u'fund', u'angri', u'island', u'leas', u'decis']
[u'bush', u'head', u'pentagon', u'prison', u'abus', u'brief']
[u'busi', u'confid', u'slip', u'april']
[u'shipload', u'geraldton']
[u'camp', u'cannib', u'receiv', u'life']
[u'canegrow', u'concern', u'worker', u'exodus']
[u'chechen', u'rebel', u'deni', u'assassin', u'involv']
[u'chechnya', u'buri', u'slay', u'leader']
[u'childcar', u'industri', u'pessimist', u'ahead', u'budget']
[u'comedian', u'alan', u'king', u'die', u'york']
[u'complex', u'futur', u'rest', u'alley', u'sale', u'request']
[u'confer', u'focus', u'mine', u'sector']
[u'conserv', u'group', u'attack', u'solar', u'power', u'research']
[u'costello', u'downplay', u'leadership', u'talk']
[u'costello', u'refus', u'commit', u'futur', u'treasur']
[u'council', u'disappoint', u'shop', u'mall', u'reject']
[u'council', u'look', u'particip', u'water', u'project']
[u'council', u'urg', u'work', u'partnership', u'govt']
[u'council', u'decid', u'final', u'posit']
[u'doctor', u'hope', u'better', u'hospit', u'servic']
[u'doctor', u'repres', u'riverina', u'torch', u'relay']
[u'dozen', u'dead', u'fight', u'iraq']
[u'timores', u'presid', u'accus', u'australia', u'theft']
[u'timor', u'issu', u'wiranto', u'arrest', u'warrant']
[u'extra', u'childcar', u'place', u'industri', u'say']
[u'fear', u'price', u'hike', u'rais', u'airfar']
[u'feder', u'govt', u'urg', u'stronger', u'stand']
[u'feder', u'face', u'tough', u'start', u'hamburg']
[u'govt', u'accus', u'univers', u'bias']
[u'player', u'charg', u'blue', u'pie', u'barney']
[u'filipino', u'poll', u'choos', u'presid']
[u'folk', u'rue', u'repres', u'impact']
[u'foreign', u'injur', u'baghdad', u'hotel', u'blast']
[u'gilgandra', u'council', u'consult', u'resid']
[u'gonzal', u'give', u'evid', u'famili', u'murder', u'trial']
[u'govt', u'accus', u'mismanag', u'murray', u'river', u'fund']
[u'govt', u'criticis', u'airlin', u'safeti', u'fund']
[u'govt', u'start', u'remov', u'northern', u'rail', u'servic']
[u'govt', u'provid', u'fund', u'librari', u'leas', u'extens']
[u'govt', u'urg', u'fund', u'reopen', u'river', u'mouth']
[u'govt', u'wont', u'problem', u'match', u'highway', u'fund']
[u'grazier', u'welcom', u'vet', u'vote', u'live', u'anim', u'trade']
[u'green', u'group', u'tell', u'stori']
[u'green', u'prison', u'abus', u'inquiri']
[u'gunfir', u'greet', u'marin', u'convoy', u'fallujah']
[u'harrop', u'second', u'portug']
[u'hawk', u'star', u'barrel', u'schwab']
[u'heroic', u'paramed', u'maintain']
[u'hundr', u'ralli', u'atsic', u'abolish']
[u'ponder', u'expans']
[u'increas', u'fuel', u'price', u'impact', u'countri']
[u'industri', u'action', u'forecast', u'follow', u'environ']
[u'injur', u'prais', u'seek', u'help', u'follow']
[u'injur', u'venus', u'jump', u'eighth', u'french', u'open']
[u'instal', u'olymp', u'stadium', u'roof', u'begin']
[u'inter', u'close', u'champion', u'leagu', u'qualifi', u'round']
[u'intern', u'businesswomen', u'meet', u'sydney']
[u'intern', u'communiti', u'condemn', u'chechnya', u'bomb']
[u'italian', u'polic', u'dismantl', u'terrorist', u'cell']
[u'clinic', u'target', u'sperm', u'donor']
[u'japan', u'main', u'opposit', u'leader', u'resign']
[u'juvenil', u'question', u'boy', u'shoot']
[u'kanck', u'angri', u'ignor', u'oversea', u'koala', u'complaint']
[u'labor', u'say', u'budget', u'includ', u'fund']
[u'lane', u'win', u'british', u'master']
[u'leak', u'memo', u'branch', u'line', u'closur', u'wake']
[u'lee', u'arriv', u'committ', u'falconio', u'case']
[u'maleni', u'protest', u'fall', u'tree']
[u'charg', u'disput', u'neighbour']
[u'charg', u'laverton', u'stab']
[u'charg', u'mother', u'murder']
[u'stabl', u'shoot', u'incid']
[u'maradona', u'move', u'rehab', u'clinic']
[u'marathon', u'swimmer', u'highlight', u'pressur', u'lake']
[u'market', u'slump', u'aussi', u'dollar', u'tumbl']
[u'meet', u'discuss', u'soccer', u'team', u'futur']
[u'minist', u'agre', u'nation', u'terror', u'threat', u'approach']
[u'mitsubishi', u'meet', u'delay']
[u'modest', u'fleme', u'play', u'cricket', u'best']
[u'nurs', u'posit', u'hospit']
[u'tree', u'plant', u'need', u'reach', u'target']
[u'moya', u'crush', u'nalbandian', u'lift', u'rome', u'master']
[u'nanci', u'reagan', u'back', u'stem', u'cell', u'research']
[u'nation', u'indigen', u'polit', u'parti', u'launch']
[u'nat', u'criticis', u'ethanol', u'fuel', u'report']
[u'mother', u'contact', u'nurs', u'diagnos']
[u'schizophrenia', u'drug', u'add', u'benefit', u'scheme']
[u'strategi', u'identifi', u'feral', u'pig', u'prioriti']
[u'govt', u'urg', u'save', u'defenc', u'land']
[u'launch', u'council', u'investig', u'squad']
[u'power', u'grid', u'declar', u'safe', u'terror', u'attack']
[u'celebr', u'afghan', u'histori']
[u'nurs', u'remain', u'firm', u'rise', u'disput']
[u'nurs', u'strike', u'action', u'loom']
[u'nurs', u'warn', u'expect', u'chang', u'despit', u'budget']
[u'opposit', u'condemn', u'costello', u'leadership', u'tantrum']
[u'valley', u'muster', u'draw', u'thousand']
[u'dollar', u'tumbl', u'cent']
[u'secur', u'come', u'lpga']
[u'pathologist', u'disput', u'hotshot', u'death']
[u'petrol', u'price', u'increas']
[u'meat', u'panel', u'dismiss', u'import', u'appeal']
[u'pipelin', u'attack', u'halt', u'iraqi', u'export']
[u'pitt', u'say', u'start', u'wear', u'skirt', u'troy']
[u'plan', u'reveal', u'creat', u'water', u'wise', u'sydney', u'home']
[u'player', u'readi', u'will', u'zimbabw', u'tour']
[u'committe', u'examin', u'autonomi', u'propos']
[u'polic', u'appeal', u'victim', u'come', u'forward']
[u'polic', u'commission', u'awar', u'hous', u'concern']
[u'policeman', u'prais', u'rescu', u'effort']
[u'polic', u'probe', u'gangland', u'kill', u'lead']
[u'polic', u'rule', u'foul', u'play', u'fatal', u'hous']
[u'politician', u'learn', u'better', u'parent']
[u'princess', u'win', u'yacht', u'race', u'royal']
[u'prison', u'recaptur', u'year']
[u'probe', u'broom', u'boat', u'death', u'continu']
[u'protest', u'plan', u'stop', u'deport', u'thai', u'girl']
[u'public', u'comment', u'seek', u'disabl', u'servic']
[u'qanta', u'quiet', u'passeng', u'fuel', u'levi']
[u'teacher', u'hope', u'extra', u'budget', u'educ']
[u'rail', u'line', u'close', u'train', u'collid']
[u'rathbon', u'sign', u'brumbi']
[u'cross', u'tell', u'iraq', u'abus', u'process']
[u'rental', u'market', u'expect', u'remain', u'tight']
[u'research', u'wish', u'earthquak']
[u'resid', u'injur', u'unit']
[u'resid', u'face', u'possibl', u'tougher', u'water']
[u'rogerson', u'plead', u'guilti', u'fals', u'testimoni', u'charg']
[u'rugbi', u'player', u'take', u'hospit', u'suffer']
[u'rumsfeld', u'safer', u'grind', u'despit', u'resign', u'call']
[u'russia', u'reel', u'chechnya', u'assassin']
[u'saint', u'fli', u'gloom', u'gather', u'hawk', u'magpi']
[u'sampi', u'promis', u'tower', u'mark']
[u'schumach', u'make']
[u'scientist', u'nino', u'worsen']
[u'search', u'continu', u'miss', u'fisherman']
[u'sentenc', u'review', u'sell', u'porn', u'pic']
[u'seymour', u'latest', u'injuri', u'blow', u'bronco']
[u'sharon', u'develop', u'gaza', u'withdraw', u'plan']
[u'sindelar', u'break', u'year', u'tour', u'drought']
[u'skywest', u'resum', u'pilbara', u'servic']
[u'snow', u'franc', u'caus', u'power', u'cut', u'road', u'closur']
[u'southern', u'cross', u'offer', u'cours']
[u'sprint', u'king', u'petacchi', u'pip', u'mcewen', u'giro']
[u'steal', u'generat', u'orphanag', u'develop']
[u'sudanes', u'incurs', u'anger', u'neighbour', u'countri']
[u'taiwan', u'begin', u'vote', u'recount']
[u'local', u'council', u'condemn', u'govt', u'chang']
[u'teenag', u'seek', u'home', u'invas']
[u'thai', u'girl', u'grant', u'bridg', u'visa']
[u'thai', u'discuss', u'liverpool', u'specul']
[u'thousand', u'gather', u'union', u'secretari', u'front', u'court']
[u'jail', u'solicitor', u'murder']
[u'thunderbird']
[u'tiger', u'roll', u'campbel']
[u'softwar', u'develop', u'arrest', u'winni', u'file']
[u'town', u'face', u'bread', u'shortag']
[u'trade', u'halt', u'grain', u'compani', u'merg']
[u'treasur', u'defend', u'budget', u'advertis']
[u'tuqiri', u'look', u'bennett', u'advic']
[u'lawyer', u'choos', u'defend', u'saddam']
[u'defenc', u'minist', u'face', u'iraq', u'prison', u'abus']
[u'team', u'look', u'support', u'wast', u'project']
[u'unit', u'church', u'call', u'atsic', u'protest']
[u'upset', u'leav', u'rooster']
[u'athlet', u'tell', u'tone', u'olymp', u'celebr']
[u'detaine', u'father', u'question', u'interrog', u'tactic']
[u'magazin', u'releas', u'iraq', u'prison', u'abus', u'photo']
[u'protest', u'demand', u'extens']
[u'soldier', u'face', u'hear', u'baghdad']
[u'valencia', u'prove', u'spain', u'real', u'deal']
[u'video', u'review', u'snare']
[u'violenc', u'break', u'funer', u'pregnant']
[u'violenc', u'sweep', u'philippin', u'voter', u'head', u'poll']
[u'violinist', u'find', u'wrestl', u'fort']
[u'volunt', u'secret', u'long', u'life', u'studi']
[u'voss', u'doubt', u'duti', u'blue', u'matthew']
[u'vote', u'end', u'india', u'rule', u'coalit', u'struggl']
[u'walsh', u'back', u'murali', u'reach', u'wicket']
[u'west', u'ipswich', u'palac', u'secur', u'play', u'berth']
[u'wild', u'weather', u'caus', u'minor', u'damag', u'region']
[u'wooden', u'pipe', u'excit', u'irish', u'archaeologist']
[u'wool', u'expo', u'format', u'prove', u'win', u'formula']
[u'world', u'largest', u'democraci', u'head', u'poll']
[u'chief', u'welcom', u'budget', u'commit', u'region']
[u'adelaid', u'hill', u'blaze', u'prompt', u'warn']
[u'aerial', u'survey', u'aim', u'diamond']
[u'age', u'care', u'provid', u'anticip', u'favour', u'budget']
[u'alcohol', u'restrict', u'woorabinda', u'crime']
[u'alleg', u'fraud', u'forc', u'closur', u'communiti', u'centr']
[u'allig', u'wad', u'pool', u'insid', u'geelong', u'hous']
[u'pain', u'horizon', u'sugar', u'grower', u'forum']
[u'amnesti', u'accus', u'british', u'soldier', u'kill']
[u'anti', u'basslink', u'group', u'deliv', u'protest', u'letter']
[u'armi', u'act', u'alleg', u'student', u'attack']
[u'armi', u'volunt', u'want', u'say', u'rspca', u'chief']
[u'arroyo', u'look', u'retain', u'philippin', u'presid']
[u'attack', u'kill', u'dutch', u'soldier', u'russian', u'iraq']
[u'aussi', u'grass', u'regain', u'world', u'group']
[u'australian', u'incens', u'british', u'boomerang', u'claim']
[u'billion', u'asid', u'citigroup', u'corpor', u'fraud']
[u'board', u'announc', u'polit', u'retir']
[u'bouncer', u'face', u'hear', u'death', u'cricket', u'coach']
[u'british', u'court', u'women', u'better', u'driver']
[u'bryant', u'accus', u'show', u'court']
[u'budget', u'bonanza', u'prompt', u'talk', u'earli', u'elect']
[u'budget', u'boost', u'drought', u'farmer', u'wineri']
[u'budget', u'boost', u'commonwealth', u'game', u'money']
[u'budget', u'fund', u'extra', u'skill', u'migrat']
[u'budget', u'provid', u'fund', u'carer', u'cochlear', u'implant']
[u'budget', u'affirm', u'iraq', u'commit']
[u'budget', u'shoot', u'product', u'boost']
[u'bush', u'defend', u'rumsfeld', u'iraqi', u'abus']
[u'busi', u'communiti', u'hop', u'cut']
[u'busi', u'blame', u'consum', u'spend', u'slower']
[u'busi', u'welcom', u'budget', u'measur']
[u'calder', u'fund', u'decid', u'bendigo', u'elector']
[u'californian', u'radic', u'sentenc', u'bank', u'death']
[u'go', u'volunt', u'ambul', u'offic']
[u'candid', u'lobbi', u'budget', u'bypass', u'fund']
[u'care', u'allow', u'extend', u'thank', u'woman']
[u'champion', u'leagu', u'place', u'say', u'shearer']
[u'civil', u'libertarian', u'anger', u'sniffer', u'plan']
[u'clean', u'wiranto', u'brush', u'arrest', u'warrant']
[u'club', u'industri', u'ralli', u'poker', u'machin']
[u'commerci', u'fish', u'group', u'safer', u'boat']
[u'competit', u'spark', u'youth', u'farm']
[u'costello', u'budget', u'wast', u'opportun', u'crean']
[u'costello', u'hand', u'famili', u'friend', u'budget']
[u'council', u'consid', u'pipelin', u'water', u'suppli']
[u'council', u'happi', u'speed', u'prevent', u'program']
[u'council', u'wait', u'white', u'paper', u'hume']
[u'crow', u'dynamo', u'hird']
[u'dengu', u'fever', u'threat', u'despit', u'cooler', u'weather']
[u'dept', u'claim', u'grafton', u'loss', u'minimis']
[u'dept', u'concern', u'unlicens', u'tradesmen', u'number']
[u'detect', u'investig', u'essendon', u'doubl', u'murder']
[u'develop', u'watchdog', u'concern', u'coast', u'road']
[u'maul', u'child', u'gold', u'coast']
[u'drug', u'peddler', u'jail']
[u'drug', u'sniffer', u'dog', u'program', u'begin', u'month']
[u'dutch', u'soldier', u'die', u'iraq', u'grenad', u'attack']
[u'engin', u'compani', u'frustrat', u'delay', u'energi']
[u'timor', u'prosecutor', u'seek', u'wiranto', u'warrant', u'revis']
[u'expert', u'reject', u'need', u'bodi', u'armour', u'secur']
[u'extra', u'firefight', u'station', u'tennant', u'creek']
[u'famili', u'support', u'program', u'receiv', u'fund', u'boost']
[u'farmer', u'fear', u'merger', u'affect', u'grain', u'pool']
[u'farmer', u'budget', u'boost', u'competit']
[u'farmer', u'urg', u'budget', u'fund', u'rural', u'health']
[u'farmer', u'welcom', u'drop', u'australian', u'dollar']
[u'diplomat', u'jail', u'abus', u'charg']
[u'union', u'boss', u'admit', u'assault', u'vandal']
[u'week', u'holland', u'tribun', u'get', u'tough']
[u'fund', u'essenti', u'servic', u'cut']
[u'futur', u'cotton', u'industri', u'plan', u'hing']
[u'good', u'turnout', u'meet', u'swan', u'hill', u'women']
[u'govt', u'add', u'school', u'coffer']
[u'govt', u'add', u'research', u'fund']
[u'govt', u'begin', u'sell', u'famili', u'friend', u'budget']
[u'govt', u'know', u'prison', u'abus', u'claim', u'februari']
[u'govt', u'look', u'heritag', u'list', u'nomin']
[u'govt', u'merg', u'media', u'communic', u'watchdog']
[u'govt', u'concern', u'mitsubishi', u'meet', u'delay']
[u'govt', u'review', u'propos', u'flood', u'plain', u'dump', u'site']
[u'govt', u'shift', u'atsic', u'fund', u'communiti']
[u'govt', u'urg', u'boost', u'infrastructur', u'spend']
[u'worri', u'avail', u'date', u'rape', u'drug']
[u'greenpeac', u'continu', u'campaign', u'whale', u'sanctuari']
[u'health', u'budget', u'win', u'ama', u'prais']
[u'health', u'servic', u'hop', u'age', u'care', u'fund']
[u'health', u'servic', u'decid', u'redund']
[u'hick', u'habib', u'treat', u'human', u'say']
[u'honduran', u'troop', u'begin', u'iraq', u'pull']
[u'hoof', u'sport', u'hero', u'benefit', u'hyperbar']
[u'hop', u'cattl', u'drive', u'boost', u'indigen', u'youth']
[u'hospit', u'tell', u'patient', u'wash', u'reus', u'bandag']
[u'illawarra', u'famili', u'expect', u'benefit', u'budget']
[u'indigen', u'women', u'need', u'right', u'forum']
[u'inquest', u'hear', u'revis', u'bushfir', u'predict']
[u'italian', u'opposit', u'demand', u'iraq', u'troop', u'recal']
[u'italian', u'condemn', u'iraq', u'prison', u'abus']
[u'jackman', u'nomin', u'toni', u'award']
[u'jam', u'month', u'knee', u'injuri']
[u'jondaryan', u'shire', u'hous', u'sector', u'remain', u'strong']
[u'jordan', u'editor', u'remand', u'custodi', u'saudi']
[u'journalist', u'die', u'chechen', u'blast', u'buri']
[u'labor', u'call', u'govt', u'dismantl', u'rail', u'line']
[u'lamb', u'industri', u'hop', u'benefit', u'intern']
[u'minut', u'offer', u'avert', u'nurs', u'strike']
[u'legisl', u'formalis', u'forestri', u'manag']
[u'liber', u'leadership', u'specul', u'continu']
[u'light', u'plane', u'crash', u'western', u'queensland']
[u'lion', u'trainer', u'colour', u'chang', u'halt']
[u'local', u'kingfish', u'featur', u'royal', u'wed', u'menu']
[u'mahwir', u'report', u'suspect', u'bowl', u'action']
[u'malaysian', u'arrest', u'immigr', u'raid']
[u'maley', u'resign', u'return', u'practic']
[u'die', u'singl', u'vehicl', u'accid']
[u'guilti', u'bonfir', u'murder']
[u'jail', u'assault', u'taxidriv']
[u'sentenc', u'workmat', u'assault']
[u'shoot', u'perth', u'jewelleri', u'heist']
[u'marathon', u'pack', u'runner', u'athen']
[u'marist', u'priest', u'court', u'alleg', u'sexual']
[u'market', u'close', u'ahead', u'budget']
[u'matern', u'payment', u'rais', u'concern']
[u'mayor', u'welcom', u'council', u'bin', u'reform']
[u'mcgee', u'miss', u'stage', u'regain', u'lead']
[u'mcgrath', u'hope', u'zimbabwean', u'truce']
[u'mclaren', u'suffer', u'wait']
[u'media', u'monitor', u'polic', u'radio', u'sanction']
[u'militari', u'identifi', u'truck', u'british', u'iraq', u'prison']
[u'get', u'life', u'span', u'discoveri']
[u'water', u'contamin', u'report', u'delay']
[u'mine', u'compani', u'reveal', u'plan', u'tennant', u'creek', u'gold']
[u'minist', u'admit', u'radar', u'gun', u'calibr']
[u'molik', u'rome', u'master']
[u'monash', u'student', u'protest', u'hec', u'increas']
[u'monsanto', u'give', u'genet']
[u'intern', u'accolad', u'beachley']
[u'job', u'electrolux', u'downsiz']
[u'mother', u'awar', u'hero', u'son', u'injuri']
[u'near', u'drown', u'prompt', u'call', u'compulsori']
[u'blow', u'malaysia', u'anwar', u'appeal', u'hear']
[u'hous', u'subdivis', u'continu', u'build']
[u'indigen', u'polit', u'parti', u'contest', u'seat']
[u'law', u'victim', u'testimoni', u'easier']
[u'nomin', u'council', u'posit', u'slow', u'come']
[u'govt', u'begin', u'survey', u'border']
[u'hop', u'fund', u'juvenil', u'divers']
[u'oecd', u'give', u'costello']
[u'offici', u'celebr', u'olymp', u'stadium', u'roof', u'begin']
[u'cooker', u'prompt', u'school', u'emerg']
[u'opposit', u'criticis', u'chief', u'minist', u'leak']
[u'pacif', u'million', u'fund', u'boost']
[u'pacif', u'island', u'rugbi', u'team', u'solid', u'sponsorship']
[u'polic', u'search', u'involv', u'raid', u'robberi']
[u'polic', u'review', u'search', u'miss', u'fisherman']
[u'polic', u'unlik', u'charg', u'internet']
[u'pork', u'industri', u'lose', u'appeal', u'stop', u'import']
[u'port', u'corpor', u'continu', u'analys', u'terror', u'risk']
[u'prison', u'abus', u'photo', u'stag', u'militari']
[u'qanta', u'opt', u'fuel', u'surcharg']
[u'frustrat', u'highway', u'construct', u'delay']
[u'rail', u'line', u'futur', u'hing', u'freight', u'project']
[u'rann', u'begin', u'german', u'daimlerchrysl', u'talk']
[u'rate', u'rise', u'fear', u'strong', u'employ', u'prompt', u'equiti']
[u'recreat', u'abalon', u'season', u'close']
[u'cross', u'wit', u'prison', u'abus', u'report']
[u'redistribut', u'delay', u'frustrat', u'north', u'binalong']
[u'refuge', u'benefit', u'albani', u'meet']
[u'report', u'find', u'flinder', u'emerg', u'depart', u'unsaf']
[u'resid', u'urg', u'consid', u'chang', u'council']
[u'resourc', u'compani', u'doubl', u'explor', u'drill']
[u'reverend', u'nile', u'defend', u'senat', u'nomin']
[u'reverend', u'nile', u'tip', u'harradin', u'retir']
[u'road', u'name', u'honour', u'race', u'club', u'stalwart']
[u'rspca', u'applaud', u'cattl', u'transport', u'cruelti', u'verdict']
[u'safin', u'fire', u'philippoussi', u'falter', u'hamburg']
[u'grain', u'grower', u'anticip', u'higher', u'return']
[u'sailor', u'welcom', u'port', u'secur', u'plan']
[u'sar', u'vaccin', u'readi', u'year']
[u'scienc', u'packag', u'hurt', u'aborigin', u'health', u'indigen']
[u'secur', u'scare', u'forc', u'airport', u'evacu']
[u'senat', u'ask', u'condemn', u'iraq', u'prison', u'abus']
[u'senior', u'member', u'jail', u'weapon', u'charg']
[u'shale', u'plant', u'viabil', u'uncertain']
[u'shire', u'urg', u'incent', u'attract', u'experi']
[u'shoot', u'accid', u'bass', u'strait', u'injur']
[u'shortag', u'skill', u'tradespeopl', u'continu']
[u'silt', u'clean', u'begin', u'tamar', u'river']
[u'isra', u'soldier', u'kill', u'gaza', u'incurs']
[u'smyth', u'continu', u'motion', u'confid']
[u'south', u'african', u'experi', u'assist', u'aflca', u'manag']
[u'spain', u'refus', u'hand', u'iraqi', u'cleric']
[u'speed', u'pharmacist', u'get', u'month', u'jail']
[u'studi', u'link', u'testosteron', u'level', u'prostat', u'cancer']
[u'sugar', u'industri', u'tell', u'diversif', u'import']
[u'impostor', u'dupe', u'chines', u'patriot']
[u'support', u'consid', u'court', u'action', u'thai', u'girl']
[u'survey', u'point', u'continu', u'growth', u'busi']
[u'suspens', u'collin', u'super', u'semi', u'final', u'miss']
[u'sydney', u'gold', u'medallist', u'shaki', u'start', u'world']
[u'tahus', u'origin', u'hop', u'injuri']
[u'tamworth', u'region', u'council', u'act', u'general', u'manag']
[u'taskforc', u'examin', u'possibl', u'underworld', u'murder', u'link']
[u'tasmanian', u'parliament', u'danish', u'flag']
[u'nurs', u'postpon', u'strike', u'action']
[u'relief', u'go', u'manufactur']
[u'temporari', u'magistr', u'appoint', u'tasmania']
[u'thai', u'splash', u'liverpool', u'campaign']
[u'tiger', u'unlik', u'final', u'berth']
[u'tiger', u'pair', u'punish', u'nightclub', u'scuffl']
[u'host', u'militari', u'exercis']
[u'toyota', u'post', u'record', u'profit']
[u'travolta', u'head', u'west', u'qanta', u'museum', u'tour']
[u'tribun', u'deal', u'ban', u'fin']
[u'dead', u'costa', u'rica', u'flood']
[u'kill', u'gaza', u'incurs']
[u'court', u'okay', u'unlaw', u'iraqi', u'death', u'challeng']
[u'union', u'boss', u'jail', u'court', u'tell']
[u'union', u'confid', u'avoid', u'nurs', u'strike']
[u'promis', u'thorough', u'prison', u'abus', u'probe']
[u'senat', u'condemn', u'abus', u'iraqi', u'prison']
[u'senat', u'condemn', u'mistreat', u'iraqi', u'prison']
[u'vail', u'meet', u'counterpart']
[u'vanuatu']
[u'slash', u'councillor', u'posit']
[u'vice', u'chancellor', u'fail', u'negoti']
[u'judg', u'rise']
[u'viduka', u'turkey', u'match']
[u'wagga', u'resid', u'face', u'increas', u'rat', u'fee']
[u'govt', u'accus', u'stall', u'financi', u'disclosur']
[u'walker', u'play', u'lower', u'grade']
[u'polic', u'support', u'return', u'escap', u'prison']
[u'cemeteri', u'vandalis', u'gaza']
[u'warn', u'issu', u'zealand', u'kill', u'iraq']
[u'wild', u'dog', u'impact', u'sheep', u'number']
[u'wire', u'rope', u'barrier', u'improv', u'pacif', u'highway', u'safeti']
[u'work', u'underway', u'improv', u'intersect', u'safeti']
[u'young', u'volunt', u'hard', u'come']
[u'zimbabwean', u'rebel', u'cricket', u'chief']
[u'church', u'open', u'internet', u'faith']
[u'accus', u'soldier', u'speak', u'abus', u'charg']
[u'public', u'servic', u'wine', u'industri', u'provid']
[u'say', u'need', u'curfew']
[u'soul', u'search', u'cricket', u'head']
[u'agreement', u'reach', u'return', u'remain', u'isra']
[u'impos', u'fuel', u'surcharg', u'ticket']
[u'aussi', u'readi', u'crush', u'second', u'string', u'zimbabwean']
[u'australia', u'retain', u'rat', u'despit', u'elect']
[u'australia', u'popul', u'increas', u'divers', u'studi']
[u'bali', u'paedophil', u'hang', u'convict']
[u'bamboo', u'extinct', u'devast', u'speci']
[u'bangladesh', u'readi', u'plung']
[u'bateman', u'repres', u'rugbi', u'team']
[u'bathurst', u'thrill', u'budget', u'boost']
[u'baxter', u'main', u'detent', u'centr', u'port', u'hedland']
[u'behead', u'american', u'appal', u'downer']
[u'berrigan', u'name', u'half', u'bronco']
[u'biotechnolog', u'compani', u'close', u'canola', u'program']
[u'boral', u'takeov', u'attract', u'accc']
[u'bosnia', u'expert', u'mass', u'grave']
[u'brazil', u'expel', u'york', u'time', u'correspond']
[u'brumbi', u'host', u'record', u'crowd']
[u'brunswick', u'bodi', u'associ', u'underworld', u'hit']
[u'bryant', u'plead', u'guilti', u'rape', u'charg']
[u'budget', u'mix', u'result', u'indigen', u'peopl', u'atsic']
[u'budget', u'boost', u'road', u'southern']
[u'budget', u'cut', u'affect', u'epa', u'abil']
[u'budget', u'ignor', u'incom', u'earner', u'gallop']
[u'businessman', u'morgan', u'launch', u'rival', u'liverpool']
[u'canada', u'target', u'unwant', u'email']
[u'cane', u'farmer', u'urg', u'embrac', u'chang']
[u'carr', u'hit', u'elect', u'budget']
[u'caus', u'qanta', u'mishap', u'undetermin']
[u'china', u'celebr', u'birth', u'babi', u'freez']
[u'china', u'econom', u'transit', u'australia', u'futur']
[u'citi', u'tri', u'recoup', u'faulti', u'netbal', u'court', u'cost']
[u'coff', u'harbour', u'join', u'fight', u'save', u'rail', u'line']
[u'collingwood', u'appeal', u'imag', u'damag', u'kick']
[u'conrad', u'black', u'associ', u'reach', u'settlement']
[u'conserv', u'group', u'hop', u'wast', u'dump', u'appeal']
[u'cooper', u'breweri', u'benefit', u'danish', u'royal', u'wed']
[u'coron', u'deliv', u'find', u'sleep', u'apnoea', u'case']
[u'costello', u'rush', u'famili', u'payment', u'parliament']
[u'councillor', u'resign', u'prompt', u'elect']
[u'council', u'vote', u'fluorin', u'drink', u'water']
[u'counsel', u'servic', u'claim', u'locat', u'fuel']
[u'crude', u'break', u'barrier']
[u'daimlerchryls', u'commit', u'mitsubishi']
[u'dairi', u'farmer', u'threaten', u'coalit', u'poll', u'support']
[u'danih', u'say', u'struggl', u'club', u'need', u'cash', u'inject']
[u'dept', u'investig', u'aborigin', u'anim', u'trap', u'claim']
[u'desert', u'trek', u'mar', u'experi']
[u'devonport', u'triathlon', u'move', u'south']
[u'downer', u'hail', u'enorm', u'commit', u'pacif']
[u'dozen', u'kill', u'battl', u'sadr', u'militia']
[u'elder', u'cyclist', u'die', u'collis']
[u'evan', u'shire', u'resid', u'threaten', u'withhold', u'rat']
[u'farmer', u'group', u'welcom', u'compani', u'wheat', u'decis']
[u'firefight', u'anger', u'snub', u'canberra']
[u'firefight', u'tell', u'canberra', u'inquest', u'concern']
[u'firi', u'issu', u'smoke', u'alarm', u'warn', u'hous']
[u'fisher', u'helm', u'perth']
[u'filipino', u'kill', u'iraq', u'attack']
[u'kill', u'glasgow', u'factori', u'blast']
[u'fraser', u'suspend', u'attack', u'aquilina']
[u'french', u'guantanamo', u'detaine', u'return', u'home']
[u'girl', u'serious', u'injur', u'road', u'smash']
[u'glasgow', u'blast', u'toll', u'hit', u'seven']
[u'govt', u'alloc', u'fund', u'heat', u'swim', u'pool']
[u'govt', u'fund', u'pneumococc', u'vaccin']
[u'govt', u'ask', u'right', u'question', u'hick', u'lawyer']
[u'govt', u'urg', u'sale', u'promot', u'rail', u'network']
[u'govt', u'work', u'reduc', u'hospit', u'emerg', u'wait']
[u'greec', u'address', u'secur', u'concern', u'fear']
[u'greek', u'govt', u'criticis', u'australian', u'travel', u'warn']
[u'gregan', u'say', u'play']
[u'hewitt', u'down', u'bjorkman', u'hamburg']
[u'holi', u'general', u'link', u'iraq', u'prison', u'scandal']
[u'howard', u'deni', u'elect', u'immin']
[u'howard', u'plead', u'ignor', u'iraq', u'prison', u'abus']
[u'drop', u'match', u'fix', u'case', u'atapattu']
[u'indigen', u'children', u'urg', u'pursu', u'medic', u'career']
[u'investig', u'begin', u'armi', u'abus']
[u'say', u'athen', u'prepar', u'target']
[u'islam', u'websit', u'show', u'behead', u'american']
[u'isra', u'helicopt', u'kill', u'gaza', u'strike']
[u'isra', u'troop', u'search', u'bodi', u'dead', u'soldier']
[u'italian', u'club', u'search', u'amid', u'match', u'fix']
[u'return', u'australian', u'hand']
[u'japan', u'beef', u'look', u'continu']
[u'jewelleri', u'thiev', u'larg', u'perth']
[u'kalgoorli', u'host', u'nation', u'fring', u'dweller', u'forum']
[u'land', u'council', u'review', u'mismanag', u'alleg']
[u'leicest', u'assault', u'case', u'remain', u'open', u'lawyer']
[u'lend', u'figur', u'hous', u'market', u'cool']
[u'want', u'truck', u'driver', u'road', u'toll']
[u'liber', u'backbench', u'critic', u'budget']
[u'limit', u'soccer', u'season', u'ahead']
[u'mackay', u'top', u'state', u'tourism', u'growth']
[u'magpi', u'confirm', u'appeal', u'holland']
[u'jail', u'run', u'teenag']
[u'shoot', u'dead', u'perth']
[u'stab', u'sydney', u'brawl']
[u'unit', u'unveil', u'preseason', u'event']
[u'maroochi', u'mayor', u'consid', u'liabil', u'fall']
[u'master', u'plan', u'approv', u'brisban', u'airport']
[u'mayor', u'chang', u'view', u'forest', u'sale']
[u'medic', u'research', u'institut', u'receiv', u'budget', u'fund']
[u'mexico', u'forc', u'video', u'creat', u'stir']
[u'mill', u'seek', u'commit', u'member', u'quit']
[u'minist', u'confid', u'tugun', u'bypass', u'ahead']
[u'miss', u'plane', u'touch', u'taroom']
[u'mix', u'reaction', u'budget', u'central', u'victoria']
[u'farmer', u'chang', u'manag', u'practic', u'report']
[u'clash', u'budget', u'benefit']
[u'disagre', u'defenc', u'site', u'develop']
[u'welcom', u'budget', u'boost', u'nurs', u'home']
[u'welcom', u'budget', u'initi', u'famili']
[u'welcom', u'fund', u'upgrad', u'polic', u'station']
[u'murali', u'tell', u'bowl', u'doosra', u'ban']
[u'murder', u'suspect', u'accus', u'coercion']
[u'muslim', u'council', u'call', u'british', u'troop', u'withdraw']
[u'head', u'disappoint', u'half', u'year', u'profit']
[u'certainti', u'blue', u'squad', u'gould']
[u'norman', u'happi', u'tiger', u'close', u'record']
[u'north', u'coast', u'pleas', u'budget', u'outcom']
[u'seek', u'medicin', u'cannabi', u'trial']
[u'orchardist', u'frustrat', u'meet', u'discuss']
[u'outback', u'road', u'neglect', u'budget', u'govt']
[u'outrag', u'behead']
[u'pacif', u'island', u'team', u'replac', u'coach']
[u'pakistani', u'charg', u'forg', u'document']
[u'pakistani', u'guantanamo', u'detaine', u'releas']
[u'lament', u'budget', u'fund', u'farmer']
[u'pike', u'admit', u'health', u'pressur']
[u'anoint', u'costello', u'successor']
[u'consid', u'hec', u'deal', u'student']
[u'polic', u'charg', u'doubl', u'murder']
[u'pom', u'rattl', u'aussi', u'ash', u'claim', u'waugh']
[u'poor', u'financ', u'bandag', u'say']
[u'poor', u'leadership', u'iraq', u'prison', u'abus', u'scandal']
[u'poppi', u'price', u'drop']
[u'port', u'confid', u'despit', u'lengthi', u'injuri', u'list']
[u'post', u'mortem', u'carri', u'bodi']
[u'pottharst', u'appeal', u'olymp', u'chanc']
[u'psychiatr', u'nurs', u'disput', u'continu']
[u'public', u'servic', u'best', u'thing', u'canberra']
[u'polic', u'give', u'anti', u'terror', u'power']
[u'queensland', u'divid', u'feder', u'budget']
[u'racq', u'concern', u'petrol', u'price']
[u'radic', u'iraqi', u'cleric', u'offer', u'truce']
[u'rain', u'tip', u'bring', u'good', u'wheat', u'harvest']
[u'redevelop', u'showground', u'maintain', u'high', u'cost']
[u'region', u'highway', u'receiv', u'feder', u'fund']
[u'region', u'rail', u'restor', u'budget', u'track']
[u'rescuer', u'search', u'glasgow', u'rubbl', u'blast', u'survivor']
[u'research', u'warn', u'health', u'pressur']
[u'road', u'fund', u'erupt', u'wake', u'budget']
[u'rural', u'doctor', u'budget', u'mix', u'report']
[u'rural', u'group', u'endors', u'budget']
[u'russian', u'magnat', u'deni', u'bail', u'ahead', u'fraud']
[u'safe', u'hous', u'need', u'itiner', u'aborigin']
[u'govt', u'label', u'budget', u'disappoint']
[u'welcom', u'budget', u'wine', u'break']
[u'seed', u'prove', u'stick', u'point', u'debat']
[u'sharon', u'vow', u'palestinian', u'milit']
[u'simoni', u'take', u'lead', u'itali', u'mountain', u'claim']
[u'slow', u'serena', u'advanc', u'rome']
[u'small', u'busi', u'disappoint', u'budget']
[u'socceroo', u'understudi', u'give', u'chanc', u'shine']
[u'south', u'africa', u'morocco', u'compet', u'africa']
[u'south', u'east', u'famili', u'winner', u'budget']
[u'south', u'korea', u'delay', u'send', u'troop', u'iraq']
[u'spain', u'celebr', u'dali', u'centenari']
[u'staniforth', u'quit', u'waratah']
[u'steel', u'union', u'compani', u'disput', u'sick']
[u'steer', u'fault', u'prompt', u'mass', u'holden', u'recal']
[u'stem', u'cell', u'law', u'step', u'closer']
[u'suspect', u'quick', u'fail', u'bless']
[u'age', u'care', u'wine', u'industri', u'winner', u'budget']
[u'tasmanian', u'wineri', u'welcom', u'relief']
[u'kill', u'youth', u'riot', u'nigeria']
[u'tourism', u'leader', u'surpris', u'qanta', u'surcharg']
[u'tribun', u'suspend', u'green', u'clear', u'heffernan']
[u'appear', u'court', u'cannabi', u'cultiv']
[u'underworld', u'kill', u'suspect', u'order']
[u'unilater', u'sanction', u'unjust', u'unjustifi']
[u'union', u'say', u'student', u'miss', u'budget', u'spend']
[u'staff', u'hold', u'protest']
[u'militari', u'probe', u'claim', u'afghan', u'prison', u'abus']
[u'network', u'video', u'diari', u'iraqi', u'prison']
[u'place', u'sanction', u'syria', u'terror', u'support']
[u'propos', u'maritim', u'secur', u'cooper', u'asia']
[u'vail', u'applaud', u'thailand']
[u'vanuatu', u'opposit', u'appeal', u'parliament', u'dissolut']
[u'vanuatu', u'hold', u'snap', u'elect']
[u'wall', u'street', u'help', u'pump']
[u'western', u'wineri', u'pleas', u'budget', u'outcom']
[u'wine', u'price', u'expect', u'fall', u'follow', u'budget']
[u'wineri', u'toast', u'chang']
[u'woman', u'bodi', u'park']
[u'investig', u'underground', u'mine', u'opportun']
[u'actor', u'travolta', u'head', u'western']
[u'administr', u'appoint', u'local', u'land', u'council']
[u'albatross', u'flight', u'deck', u'trainer']
[u'black', u'collin', u'ban', u'high', u'tackl']
[u'steadi', u'job']
[u'reveal', u'vaccin', u'scheme']
[u'anti', u'freez', u'flounder', u'reveal', u'secret']
[u'apathi', u'blame', u'poor', u'council', u'merger', u'meet']
[u'arianespac', u'win', u'contract', u'launch', u'australian']
[u'armi', u'accus', u'fail', u'stop', u'recruit', u'abus']
[u'artist', u'launch', u'archibald', u'challeng']
[u'australia', u'draw', u'wale', u'world']
[u'australian', u'risk', u'prison', u'abus']
[u'ballarat', u'strateg', u'plan', u'go', u'draw']
[u'bank', u'resourc', u'stock', u'pull']
[u'bath', u'hous', u'redevelop', u'ahead']
[u'bega', u'council', u'seek', u'comment', u'draft', u'plan']
[u'berrigan', u'hamstr', u'scare']
[u'blair', u'reject', u'prison', u'abus', u'cover', u'alleg']
[u'blair', u'say', u'iraqi', u'abus', u'photo', u'certain', u'fake']
[u'blue', u'dismiss', u'kouta', u'injuri', u'rumour']
[u'boomer', u'reli', u'local', u'athen', u'campaign']
[u'brisban', u'psychologist', u'breach', u'ethic', u'guidelin']
[u'broom', u'busi', u'cotton', u'research']
[u'brown', u'accus', u'forestri', u'bracket', u'creep']
[u'budget', u'provid', u'windfal', u'care', u'centr']
[u'burk', u'outer', u'wallabi', u'train', u'squad']
[u'compani', u'develop', u'interact', u'timet']
[u'california', u'porn', u'industri', u'resum', u'product']
[u'riddoch', u'upgrad', u'state', u'budget']
[u'calypso', u'spin', u'twin', u'valentin', u'die', u'age']
[u'cane', u'toad', u'wipe', u'kakadu', u'quoll']
[u'cann', u'roll', u'carpet', u'dark', u'spanish', u'film']
[u'cherbourg', u'plead', u'money']
[u'china', u'jail', u'outspoken', u'journalist']
[u'china', u'jail', u'base', u'dissid']
[u'compani', u'releas', u'rail', u'overpass', u'plan']
[u'costello', u'introduc', u'legisl']
[u'council', u'urg', u'govt', u'fund', u'man', u'river', u'work']
[u'count', u'begin', u'indian', u'elect']
[u'cruis', u'ship', u'compani', u'set', u'sight', u'albani']
[u'bronco', u'point', u'appeal']
[u'death', u'toll', u'scottish', u'blast', u'rise']
[u'deleg', u'demand', u'princ', u'highway', u'upgrad']
[u'democrat', u'leader', u'fume', u'renmark', u'power']
[u'depart', u'declar', u'boulder', u'deodoris']
[u'diesel', u'runoff', u'worri', u'crew']
[u'expect', u'figur']
[u'downer', u'doubt', u'abus', u'guantanamo']
[u'drought', u'effect', u'world', u'psychologist']
[u'elder', u'victim', u'ident', u'elud', u'polic']
[u'electr', u'fault', u'suspect', u'million', u'dollar', u'blaze']
[u'elliot', u'offload', u'rice', u'properti']
[u'ethnic', u'sound', u'unit', u'eurovis']
[u'eurovis', u'kick', u'love', u'stori', u'stomp']
[u'agenc', u'prais', u'interst', u'guidelin']
[u'firefight', u'deni', u'tri', u'concern']
[u'fish', u'boat', u'apprehend', u'coast']
[u'fish', u'fund', u'disappoint', u'group']
[u'fishi', u'diet', u'produc', u'healthier', u'babi', u'studi']
[u'isra', u'soldier', u'kill', u'bomb', u'attack']
[u'teacher', u'charg', u'child', u'offenc']
[u'frost', u'sentenc', u'sever', u'barrist', u'say']
[u'fuel', u'sale', u'boost', u'turnov', u'cole', u'myer']
[u'ganguli', u'advoc', u'tier', u'test']
[u'generous', u'super', u'scheme', u'soon', u'andren']
[u'german', u'polic', u'question', u'sasser', u'worm', u'suspect']
[u'golden', u'outback', u'board', u'urg', u'region', u'cooper']
[u'gould', u'step', u'blue', u'captainci', u'decis']
[u'govern', u'offer', u'rent', u'land', u'hardwood']
[u'govt', u'accus', u'ignor', u'child', u'care', u'requir']
[u'govt', u'challeng', u'reveal', u'hickss', u'stori']
[u'govt', u'pledg', u'fund', u'deep', u'water', u'field']
[u'govt', u'stand', u'child', u'offend', u'program']
[u'govt', u'target', u'adult', u'imag', u'mobil', u'phone']
[u'govt', u'examin', u'hick', u'abus', u'claim']
[u'greec', u'worri', u'extremist', u'warn', u'olymp']
[u'greenough', u'prison', u'escape', u'recaptur']
[u'green', u'union', u'oppos', u'forest', u'privatis']
[u'grow', u'medicin', u'cannabi', u'local', u'brogden']
[u'gunfir', u'rip', u'night', u'iraq', u'footbal', u'team']
[u'harrington', u'say', u'olymp', u'golf', u'tournament']
[u'hart', u'doubt', u'clash', u'bomber']
[u'health', u'clinic', u'minimum', u'staff']
[u'heart', u'break', u'ibrox', u'hoodoo']
[u'hewitt', u'storm', u'germani']
[u'hizbollah', u'slam', u'behead', u'american', u'islam']
[u'rock', u'ventur', u'list']
[u'hous', u'market', u'steadi', u'despit', u'price', u'predict']
[u'hudghton', u'defend', u'feroci', u'saint']
[u'hunter', u'busi', u'seek', u'servic']
[u'icrc', u'report', u'guantanamo', u'hand']
[u'india', u'seek', u'assist', u'queensland', u'rail']
[u'investig', u'find', u'need', u'court']
[u'iraq', u'abus', u'photo', u'shock', u'senat']
[u'iraqi', u'cleric', u'hint', u'deal']
[u'iraq', u'militari', u'command', u'promot']
[u'iraq', u'prison', u'abus', u'photo', u'tame', u'contractor', u'say']
[u'israel', u'hit', u'second', u'armour', u'attack']
[u'kitten', u'tortur', u'soldier', u'sack', u'rspca']
[u'kosciuszko', u'park', u'plan', u'readi']
[u'kouta', u'prove', u'fit']
[u'labor', u'talk', u'august', u'elect', u'prospect']
[u'landown', u'tension', u'threaten']
[u'lara', u'dayer', u'bangladesh']
[u'latham', u'offer', u'wider', u'cut', u'youth', u'jobless', u'plan']
[u'latham', u'prepar', u'budget', u'respons']
[u'lennon', u'llewellyn', u'meet', u'nurs', u'union']
[u'lippi', u'leav', u'juve', u'hand', u'lazio']
[u'littl', u'patti', u'hold', u'evolutionari', u'secret']
[u'loftus', u'road', u'host', u'rugbi', u'leagu', u'nation']
[u'manag', u'posit', u'purchas', u'despit']
[u'arrest', u'fatal', u'shoot']
[u'marin', u'reseach', u'assess', u'solomon', u'island']
[u'mari', u'royal', u'wed', u'cost', u'dane']
[u'mayor', u'angri', u'block', u'cane', u'farm', u'develop']
[u'mayor', u'rail', u'closur', u'protest', u'parliament']
[u'mcgrath', u'past', u'peak', u'heali']
[u'melbourn', u'murder', u'suspect', u'danger']
[u'charg', u'more', u'drug', u'raid']
[u'meninga', u'appear', u'court']
[u'merciless', u'mauresmo', u'make', u'progress', u'rome']
[u'migrant', u'settlement', u'welcom']
[u'mine', u'bodi', u'disappoint', u'explor', u'fund']
[u'minist', u'deni', u'long', u'tenant', u'consum', u'advic', u'delay']
[u'minist', u'council', u'squad', u'spark', u'merger']
[u'minist', u'warn', u'fishermen', u'offer', u'negoti']
[u'monsanto', u'end', u'canola']
[u'monsanto', u'shut', u'riverina', u'program']
[u'moor', u'fahrenheit', u'releas']
[u'fund', u'region', u'partnership', u'scheme']
[u'injuri', u'port', u'ahead', u'kangaroo', u'clash']
[u'mortar', u'fire', u'near', u'italian', u'embassi', u'baghdad']
[u'mother', u'warn', u'sleep', u'babi']
[u'motorist', u'speed', u'despit', u'book', u'drop']
[u'call', u'nambour', u'hospit', u'improv']
[u'defend', u'communiti', u'polici']
[u'seek', u'altern', u'taker', u'feder', u'fund']
[u'urg', u'dairi', u'farmer', u'fight', u'better', u'price']
[u'murali', u'retir', u'world']
[u'nauru', u'threaten', u'protest', u'jail', u'term']
[u'newcastl', u'council', u'consid', u'free', u'train', u'travel']
[u'zealand', u'captain', u'fleme', u'doubt', u'test']
[u'justif', u'behead', u'bush']
[u'children', u'baxter', u'plead']
[u'role', u'flint', u'communic', u'watchdog']
[u'govt', u'launch', u'anti', u'smoke']
[u'teacher', u'condemn', u'govern', u'wage', u'case']
[u'introduc', u'onlin', u'map', u'program', u'mine']
[u'nuclear', u'watchdog', u'call', u'wast', u'dump', u'review']
[u'occi', u'escap', u'minut', u'victori']
[u'older', u'tourist', u'flock', u'outback']
[u'opera', u'hous', u'trespass', u'face', u'jail', u'term']
[u'opposit', u'dismiss', u'hec', u'volunt', u'plan']
[u'orang', u'polic', u'angri', u'upgrad', u'fund']
[u'paedophil', u'leav', u'letter', u'clear']
[u'palestinian', u'return', u'isra', u'soldier', u'remain']
[u'petacchi', u'triumph', u'mcewen', u'simoni', u'pink']
[u'pie', u'lose', u'holland', u'appeal']
[u'consid', u'bond', u'clear', u'debt']
[u'polic', u'confirm', u'dead', u'woman', u'ident']
[u'polic', u'defus', u'incendiari', u'devic', u'athen']
[u'polic', u'search', u'load', u'bomb']
[u'pont', u'talk', u'tough', u'aussi']
[u'postal', u'strike', u'like', u'canberra', u'week']
[u'postal', u'worker', u'strike']
[u'posti', u'strike']
[u'priddi', u'stay', u'panther']
[u'priest', u'ask', u'reliev', u'duti']
[u'princ', u'charl', u'return', u'greek', u'monasteri']
[u'princ', u'highway', u'dub', u'australia', u'danger']
[u'push', u'extend', u'dingo', u'fenc']
[u'queensland', u'warn', u'rabbit', u'fin']
[u'rail', u'group', u'criticis', u'cost', u'blow']
[u'rann', u'lobbi', u'poker', u'machin']
[u'region', u'airlin', u'adopt', u'fuel', u'surcharg']
[u'report', u'recommend', u'free', u'child', u'detaine']
[u'resign', u'shut', u'adelaid', u'matern', u'ward']
[u'roff', u'call']
[u'rspca', u'wait', u'hear', u'kitten', u'tortur']
[u'rule', u'indian', u'parti', u'suffer', u'shock', u'defeat']
[u'rumsfeld', u'make', u'surpris', u'visit', u'baghdad']
[u'rumsfeld', u'visit', u'ghraib', u'prison']
[u'rural', u'australian', u'miss', u'cut', u'democrat']
[u'saint', u'liverpool', u'europ']
[u'scientist', u'discov', u'epilepsi', u'suscept', u'gene']
[u'sculli', u'defend', u'fund', u'princ', u'highway']
[u'search', u'continu', u'glasgow', u'blast', u'survivor']
[u'senat', u'pass', u'budget', u'famili', u'payment']
[u'sikh', u'alleg', u'discrimin', u'adelaid', u'hotel']
[u'smart', u'card', u'pave', u'mother']
[u'smoke', u'class', u'action', u'go', u'court']
[u'soldier', u'tell', u'abus', u'iraq', u'camp', u'bucca']
[u'somar', u'favour', u'polit', u'allianc']
[u'springbok', u'coach', u'play', u'earli', u'mind', u'game']
[u'spi', u'famili', u'challeng', u'govt', u'suicid']
[u'staff', u'meet', u'detent', u'centr', u'closur']
[u'stanhop', u'accus', u'mislead', u'public']
[u'stanhop', u'confid', u'motion', u'chang']
[u'start', u'date', u'ballarat', u'ararat', u'rail']
[u'storm', u'ridicul', u'suggest', u'reloc']
[u'student', u'bitter', u'budget', u'exclus']
[u'supercar', u'chief', u'sign', u'year', u'bathurst', u'deal']
[u'sydney', u'murder', u'suspect', u'admit', u'coincid']
[u'tarantino', u'give', u'thumb', u'movi', u'pirat']
[u'relief', u'say', u'wine', u'maker']
[u'time', u'run', u'gill', u'deal']
[u'toowoomba', u'host', u'wine', u'skill', u'workshop']
[u'tourism', u'oper', u'want', u'fraser', u'great', u'walk']
[u'town', u'divid', u'shop', u'centr', u'propos']
[u'travolta', u'leav', u'longreach', u'resid', u'star', u'strike']
[u'trekker', u'begin', u'desert', u'cross']
[u'tugun', u'bypass', u'receiv', u'nat', u'support']
[u'palestinian', u'kill', u'gaza', u'strike']
[u'charg', u'latrob', u'arm', u'robberi']
[u'concern', u'school', u'budget', u'alloc']
[u'unlicens', u'builder', u'fine']
[u'unrest', u'continu', u'nigeria']
[u'firm', u'pois', u'invest', u'mitsubishi', u'report']
[u'forc', u'kill', u'suspect', u'taliban', u'afghan', u'offici']
[u'price', u'soar', u'record', u'close', u'high']
[u'set', u'prison', u'court', u'martial']
[u'venezuela', u'evict', u'militari']
[u'govt', u'accus', u'influenc', u'local', u'elect']
[u'virgin', u'implement', u'fuel', u'surcharg']
[u'proceed', u'potenti', u'landmark', u'case']
[u'wagga', u'observatori', u'project', u'seek', u'corpor', u'support']
[u'wall', u'steadi', u'despit', u'price', u'hike']
[u'wanganeen', u'line', u'mileston', u'game']
[u'women', u'dub', u'britain', u'hat', u'leav', u'prison']
[u'iraqi', u'militiamen', u'kill', u'najaf', u'sadr', u'spokesman']
[u'abalon', u'closur', u'come', u'forc']
[u'accident', u'poison', u'rise', u'mous', u'plagu', u'begin']
[u'chemist', u'face', u'competit']
[u'criticis', u'vaccin', u'delay']
[u'anderson', u'begin', u'budget', u'sell', u'tamworth']
[u'antibiot', u'direct', u'north', u'marin', u'research']
[u'australia', u'walker', u'stride', u'darwin']
[u'arsenal', u'rewrit', u'record', u'book']
[u'arson', u'rule', u'classroom', u'blaze']
[u'aussi', u'domin', u'rock', u'chart']
[u'aust', u'vet', u'award', u'franc', u'highest', u'decor']
[u'bangladesh', u'caribbean', u'tour', u'open']
[u'barra', u'farm', u'open', u'door', u'tourist']
[u'beatti', u'keep', u'document', u'secret']
[u'behead', u'websit', u'shut']
[u'blue', u'norman', u'troubl']
[u'bomber', u'continu', u'charg']
[u'border', u'warn', u'murali', u'doosra']
[u'brazilian', u'court', u'grant', u'time', u'journalist']
[u'breastfe', u'cut', u'cardiovascular', u'risk', u'studi']
[u'bremer', u'say', u'doesnt', u'stay', u'welcom']
[u'british', u'armi', u'pleas', u'govt', u'photo', u'comment']
[u'british', u'prison', u'escap', u'seek', u'tougher', u'jail']
[u'bronco', u'welcom', u'leader']
[u'budget', u'strip', u'atsic', u'power', u'earli', u'say']
[u'build', u'blitz', u'begin', u'north', u'west']
[u'bulk', u'bill', u'rate', u'rise']
[u'bunburi', u'score', u'boom', u'citi', u'studi']
[u'burmes', u'opposit', u'boycott', u'constitut', u'court']
[u'driver', u'consid', u'industri', u'action']
[u'busi', u'usual', u'trial', u'say', u'bayer']
[u'campbel', u'verg', u'arsenal', u'deal']
[u'theft', u'rise', u'despit', u'polic', u'warn']
[u'centr', u'want', u'uranium', u'report', u'public']
[u'cholesterol', u'drug', u'show', u'promis', u'fight']
[u'blame', u'zarqawi', u'behead']
[u'class', u'close', u'werribe', u'school']
[u'communiti', u'group', u'promot', u'albani', u'invest']
[u'communiti', u'leader', u'seek', u'talk', u'calder', u'fund']
[u'communiti', u'rais', u'issu', u'region', u'tour']
[u'compo', u'claim', u'follow', u'child', u'detent', u'group']
[u'concern', u'staff', u'hospit', u'closur']
[u'concern', u'remain', u'locust', u'riverland']
[u'confer', u'address', u'urban', u'mangrov', u'manag']
[u'congress', u'upset', u'indian', u'poll']
[u'cooma', u'servic', u'return']
[u'costa', u'meet', u'rail', u'worker', u'millennium', u'contract']
[u'costello', u'accus', u'latham', u'polici', u'pinch']
[u'costello', u'urg', u'brack', u'come', u'clean', u'windfal']
[u'council', u'seek', u'age', u'care', u'facil', u'woodgat']
[u'council', u'welcom', u'plan', u'abolish', u'power', u'connect']
[u'court', u'cut', u'predat', u'excess', u'jail', u'term']
[u'court', u'recommend', u'chang', u'mental', u'health']
[u'court', u'reject', u'welsh', u'euro', u'appeal']
[u'cricket', u'comment', u'sidhu', u'get', u'audienc']
[u'crow', u'ladham', u'bomber', u'game']
[u'crow', u'expect', u'rough', u'stuff', u'stenglein']
[u'crusad', u'marshal', u'make', u'miracul', u'recoveri']
[u'cryptic', u'cricket', u'comment', u'find', u'audienc']
[u'dalgeti', u'dress', u'women', u'endur']
[u'dane', u'count', u'royal', u'wed']
[u'dealer', u'turn', u'apart', u'drug', u'den', u'polic']
[u'doctor', u'certifi', u'posit', u'free']
[u'drug', u'court', u'rehab', u'success', u'welfar', u'agenc', u'say']
[u'east', u'germani', u'hop', u'gold', u'rush', u'nugget']
[u'elder', u'face', u'court', u'indec', u'propos']
[u'elector', u'roll', u'plan', u'favour', u'govt']
[u'elliott', u'sell', u'rice', u'hold', u'insolv', u'wake']
[u'eungella', u'park', u'access', u'restrict', u'winter']
[u'falconio', u'brother', u'arriv', u'murdoch', u'trial']
[u'fan', u'tahiti']
[u'farmer', u'bare', u'brunt', u'weed', u'cost']
[u'fast', u'train', u'servic', u'await', u'infrastructur', u'upgrad']
[u'father', u'fertil', u'femal', u'egg']
[u'afghan', u'grant', u'refuge', u'status']
[u'firefight', u'tell', u'tell', u'public']
[u'half', u'athen', u'olymp', u'stadium', u'roof', u'place']
[u'fishermen', u'face', u'illeg', u'net', u'fin']
[u'fli', u'doctor', u'celebr', u'year', u'servic']
[u'hospitalis', u'truck', u'smash']
[u'free', u'iraqi', u'prison', u'tell', u'abus']
[u'frustrat', u'murali', u'bowl', u'doosra']
[u'fuel', u'cost', u'forc', u'airfar', u'increas']
[u'fuel', u'cost', u'forc', u'riverina', u'airfar', u'increas']
[u'fugit', u'businessman', u'forc']
[u'gallop', u'dangl', u'carrot', u'tuqiri']
[u'german', u'part', u'maker', u'head', u'adelaid']
[u'gidley', u'give', u'knight', u'golden']
[u'govt', u'overhaul', u'bankruptci', u'law']
[u'govt', u'releas', u'speed', u'camera', u'report']
[u'govt', u'unconcern', u'nuclear', u'dump', u'delay']
[u'greek', u'terror', u'group', u'olymp', u'warn']
[u'green', u'want', u'detail', u'labor', u'forest', u'pledg']
[u'groom', u'norman', u'stay', u'shanghai', u'content']
[u'group', u'urg', u'builder', u'compli', u'law']
[u'guantanamo', u'detaine', u'contradict', u'abus', u'claim']
[u'hewitt', u'struggl', u'german', u'master']
[u'hill', u'announc', u'middl', u'east', u'chang', u'command']
[u'hotel', u'owner', u'offer', u'sikh', u'apologet', u'meet']
[u'howard', u'echo', u'rumsfeld', u'terror', u'fight', u'bodi', u'blow']
[u'howard', u'visit', u'elector']
[u'human', u'right', u'chief', u'stand', u'detent', u'report']
[u'quit', u'lord', u'year', u'dubai']
[u'inflat', u'continu', u'climb', u'china']
[u'interact', u'scienc', u'team', u'seek', u'remot', u'reaction']
[u'inter', u'desper', u'season', u'high', u'note']
[u'israel', u'give', u'green', u'light', u'gaza', u'demolit']
[u'italian', u'command', u'confirm', u'prison', u'abus', u'knowledg']
[u'italian', u'polic', u'seek', u'pantani', u'drug', u'pusher']
[u'kouta', u'gabba', u'clash']
[u'labor', u'confus']
[u'larsson', u'prepar', u'celtic', u'farewel']
[u'latham', u'dismiss', u'vanston', u'fetch', u'child']
[u'launceston', u'host', u'brain', u'injuri', u'confer']
[u'local', u'citizen', u'honour', u'landmark', u'name']
[u'local', u'decid', u'fate', u'detent', u'centr']
[u'lonard', u'share', u'round', u'lead', u'texa']
[u'lpga', u'veteran', u'scranton', u'lead', u'tennesse']
[u'malaysia', u'ban', u'terror', u'websit']
[u'malthous', u'disappoint', u'holland', u'action']
[u'face', u'extra', u'charg']
[u'jail', u'life', u'scyth', u'kill']
[u'jail', u'sydney', u'aiport', u'bomb', u'hoax']
[u'mari', u'donaldson', u'walk', u'aisl', u'practic']
[u'mass', u'smallpox', u'terror', u'vaccin', u'need', u'report']
[u'matern', u'payment', u'rais', u'teenag', u'pregnanc', u'fear']
[u'maxin', u'carr', u'releas', u'prison']
[u'mayor', u'urg', u'villawood', u'focus', u'despit', u'baxter', u'upgrad']
[u'mcewen', u'edg', u'sprint', u'simoni', u'lead', u'giro']
[u'medibank', u'mislead', u'court', u'find']
[u'medicar', u'plus', u'work', u'abbott', u'say']
[u'midwif', u'fatherhood', u'survey', u'yield', u'unexpect']
[u'investig', u'worker', u'lucki', u'escap']
[u'minist', u'insist', u'rail', u'closur', u'ahead']
[u'minist', u'question', u'local', u'elect', u'lobbi']
[u'modern', u'live', u'fray', u'gene', u'confer', u'hear']
[u'gambier', u'hospit', u'review', u'releas', u'lib']
[u'morgan', u'clean', u'begin']
[u'muslim', u'famili', u'murder', u'pakistan']
[u'navratilova', u'hand', u'french', u'open', u'wildcard']
[u'salari', u'hike']
[u'land', u'law', u'pass', u'upper', u'hous']
[u'gungahlin', u'protest', u'appeal', u'right']
[u'newman', u'promis', u'garbag', u'claim', u'review']
[u'korea', u'marino', u'establish', u'diplomat', u'tie']
[u'north', u'korea', u'crisi', u'talk', u'wholesom', u'note']
[u'probe', u'rooster', u'lockyer', u'approach']
[u'help', u'nyngan', u'cobar', u'water', u'purchas']
[u'price', u'surg', u'record', u'close', u'high']
[u'origin', u'blow', u'barrett', u'thompson']
[u'overfish', u'extinct', u'year']
[u'pakistan', u'shiit', u'famili', u'slay', u'home']
[u'parent', u'respons', u'child', u'crime', u'group']
[u'pentagon', u'conced', u'interrog', u'techniqu', u'illeg']
[u'pentagon', u'want', u'bigger', u'chest']
[u'petrol', u'top', u'litr', u'canberra']
[u'pfizer', u'pay', u'million', u'settl', u'fraud', u'case']
[u'philippin', u'arrest', u'alleg', u'terror', u'middleman']
[u'phoenix', u'swift', u'strong']
[u'pierc', u'creek', u'burn', u'continu']
[u'plantat', u'rais', u'hop', u'timber', u'industri']
[u'provinc', u'seek', u'tedi', u'fund']
[u'polic', u'appeal', u'kalgoorli', u'assault', u'wit']
[u'polic', u'condemn', u'highway', u'rock', u'attack']
[u'polic', u'drown', u'boy', u'bodi']
[u'polic', u'investig', u'alic', u'spring', u'murder']
[u'polic', u'mull', u'murder', u'charg', u'kid', u'death']
[u'polic', u'question', u'stab', u'death']
[u'polic', u'welcom', u'north', u'fund']
[u'poll', u'show', u'isra', u'support', u'gaza', u'pull']
[u'pollut', u'affect', u'unborn', u'children', u'studi']
[u'port', u'confid', u'wanganeen', u'play']
[u'posti', u'seek', u'limit', u'disrupt', u'countri']
[u'posti', u'strike', u'caus', u'mail', u'backlog', u'bundaberg']
[u'princess', u'bride', u'childhood', u'home', u'host', u'parti']
[u'produc', u'angri', u'power', u'station', u'water', u'suppli']
[u'queen', u'mari', u'accid', u'technic', u'problem']
[u'raaf', u'releas', u'fighter', u'plan']
[u'real', u'madrid', u'play', u'pride', u'amidst', u'prejudic']
[u'region', u'airlin', u'impos', u'fuel', u'surcharg']
[u'region', u'airlin', u'threaten', u'fuel', u'price', u'hike']
[u'reid', u'wheeler', u'play', u'french', u'open']
[u'report', u'reveal', u'mudge', u'abattoir', u'debt']
[u'republican', u'admit', u'there', u'mari']
[u'resolut', u'propos', u'extens', u'east', u'timor']
[u'review', u'fuel', u'price', u'differ']
[u'richardson', u'papp', u'zealand', u'control']
[u'rooster', u'slap', u'lockyer', u'report']
[u'salt', u'nightclub', u'lose', u'liquor', u'licenc']
[u'scrub', u'fire', u'deliber']
[u'seafood', u'industri', u'satisfi', u'compo', u'pledg']
[u'secur', u'concern', u'prompt', u'hospit', u'review']
[u'senat', u'committe', u'criticis', u'meat', u'decis']
[u'shark', u'shadow', u'shanghai', u'lead']
[u'smaller', u'cut', u'colon', u'surgeri', u'safer', u'studi']
[u'smoke', u'alarm', u'warn', u'renew', u'labrador']
[u'sonia', u'gandhi', u'work', u'seal', u'govern']
[u'south', u'africa', u'offer', u'haitian', u'leader', u'aristid']
[u'south', u'korean', u'presid', u'impeach', u'overturn']
[u'spur', u'snap', u'robinson', u'fail', u'land', u'milner']
[u'stanhop', u'consid', u'sue', u'bushfir', u'remark']
[u'stock', u'weaker', u'slump']
[u'student', u'threat', u'wireless', u'network']
[u'survey', u'target', u'western', u'locust', u'swarm']
[u'church', u'extend', u'abus', u'compens', u'scheme']
[u'cut', u'latham']
[u'tender', u'call', u'mat', u'cross']
[u'thai', u'buoy', u'liverpool', u'morgan', u'snub']
[u'thoma', u'confid', u'despit', u'ongo', u'shoulder', u'problem']
[u'tower', u'hill', u'project', u'excit', u'council']
[u'ray', u'replac', u'ray', u'wollongong']
[u'truck', u'driver', u'prais', u'miracl', u'accid', u'rescu']
[u'isra', u'solid', u'kill', u'rafah', u'hous']
[u'uneven', u'serena', u'lead', u'seed', u'rome', u'quarter']
[u'inflat', u'fear', u'depress', u'market']
[u'intensifi', u'sadr', u'militia']
[u'marin', u'kill', u'iraq']
[u'missil', u'shield', u'work', u'scientist', u'say']
[u'releas', u'ghraib', u'prison']
[u'treatment', u'poor', u'report']
[u'tank', u'engag', u'najaf', u'cemeteri', u'battl']
[u'vanuatu', u'head', u'earli', u'poll']
[u'dairi', u'farmer', u'look', u'brighter', u'year', u'ahead']
[u'speed', u'camera', u'fin']
[u'viduka', u'exit', u'leav', u'sour', u'tast', u'leed']
[u'villeneuv', u'attend', u'test', u'say', u'manag']
[u'voss', u'keat', u'lion']
[u'waff', u'optimist', u'land', u'clear', u'revis']
[u'meteor', u'crater', u'hint', u'mass', u'extinct']
[u'wine', u'grape', u'grower', u'struggl', u'despit', u'record', u'harvest']
[u'woodward', u'resign', u'wilko']
[u'world', u'bank', u'billion', u'corrupt', u'claim']
[u'join', u'actu', u'famili', u'test', u'case']
[u'doubt', u'sustain', u'bulk', u'level']
[u'anglican', u'focus', u'healthi', u'church']
[u'angri', u'famili', u'buri', u'behead', u'american']
[u'angri', u'houllier', u'defend', u'liverpool', u'record']
[u'atsic', u'abolit', u'disadvantag', u'indigen', u'citizen']
[u'attack', u'fear', u'caus', u'record', u'price']
[u'audit', u'reveal', u'black', u'hole', u'nasa', u'book']
[u'aussi', u'tour', u'help', u'cricket', u'team', u'manag']
[u'australia', u'claim', u'tripl', u'gold', u'sydney', u'track']
[u'australian', u'hold', u'visa', u'laps', u'complic', u'appeal']
[u'develop', u'valley', u'master', u'plan']
[u'blue', u'face', u'tough', u'gabba', u'pagan']
[u'bomber', u'assess', u'hird', u'injuri']
[u'brumbi', u'fight', u'underdog', u'chief']
[u'brumbi', u'face', u'crusad', u'decid']
[u'budget', u'commit', u'eas', u'polic', u'shortag', u'foley']
[u'burn', u'off', u'cast', u'haze', u'perth']
[u'champion', u'valencia', u'slip', u'defeat', u'villarr']
[u'christian', u'flee', u'kano', u'mob']
[u'church', u'join', u'push', u'releas', u'child', u'detaine']
[u'citi', u'dweller', u'tell', u'water']
[u'coalit', u'unlik', u'withdraw', u'request']
[u'crown', u'princ', u'frederik', u'wed', u'mari']
[u'crusad', u'super', u'final']
[u'fire', u'air', u'berg', u'behead', u'scream']
[u'dog', u'strong', u'injuri', u'dragon']
[u'doha', u'round', u'agreement', u'emerg']
[u'doyl', u'accus', u'brack', u'speed', u'camera', u'cover']
[u'eagl', u'send', u'jakovich', u'high']
[u'ebrahim', u'deliv', u'verdict', u'murali']
[u'edward', u'cagey', u'green', u'ludlow', u'concern']
[u'elder', u'predict', u'itiner', u'problem', u'worsen']
[u'firework', u'wed', u'celebr']
[u'flinder', u'rang', u'reveal', u'geolog', u'period']
[u'kill', u'attack', u'iraq', u'armi', u'recruit']
[u'futur', u'parti', u'win', u'caledonia', u'provinci']
[u'gibernau', u'set', u'pace', u'free', u'practic']
[u'govt', u'fail', u'pass', u'gungahlin', u'drive', u'appeal', u'law']
[u'govt', u'move', u'strip', u'prison', u'vote', u'right']
[u'govt', u'say', u'latham', u'ignor', u'veteran']
[u'govt', u'carri', u'hepat', u'immunis']
[u'hewitt', u'set', u'semi', u'final', u'meet', u'feder']
[u'hurst', u'ochoa', u'share', u'lead', u'rain', u'delay', u'lpga']
[u'india', u'congress', u'choos', u'gandhi']
[u'inform', u'seek', u'seal', u'death']
[u'injur', u'cipollini', u'retir', u'giro']
[u'islam', u'jihad', u'vow', u'reveng', u'gaza', u'raid']
[u'island', u'health', u'servic', u'adequ', u'campbel']
[u'isra', u'gunship', u'attack', u'islam', u'jihad', u'offic']
[u'isra', u'soldier', u'kill', u'gaza', u'strip', u'attack']
[u'jabiru', u'like', u'replac', u'mine', u'tourism']
[u'johnson', u'get', u'track']
[u'babi', u'coupl']
[u'nudg', u'england', u'selector']
[u'kosciuszko', u'plan', u'unabl', u'save', u'snowfal']
[u'legal', u'shield', u'school', u'church', u'case']
[u'lion', u'carlton']
[u'lula', u'forgiv', u'report', u'alcohol', u'slur']
[u'mandela', u'plead', u'south', u'african', u'world']
[u'man', u'rocket', u'ship', u'break', u'altitud', u'record']
[u'maradona', u'stay', u'clinic', u'say', u'judg']
[u'media', u'urg', u'reinstat', u'humbl']
[u'mirror', u'oust', u'editor', u'iraq', u'abus', u'hoax']
[u'mugab', u'say', u'quit', u'seek', u'successor']
[u'anti', u'corrupt', u'chief', u'predict', u'success']
[u'greek', u'extremist', u'group', u'claim', u'bomb', u'threaten']
[u'convent', u'boycott', u'disappoint', u'annan']
[u'confid', u'vote', u'leav', u'poland', u'limbo']
[u'norman', u'disqualifi', u'shanghai']
[u'dead', u'sydney', u'shoot']
[u'flight', u'deal', u'boost', u'tourism']
[u'opposit', u'seek', u'back', u'brothel']
[u'outsid', u'edward', u'provision', u'french', u'pole']
[u'palac', u'edg', u'sunderland', u'play']
[u'parliament', u'architect', u'mull', u'secur', u'fenc']
[u'patient', u'threaten', u'nurs', u'iron']
[u'petacchi', u'strike', u'giro', u'simoni', u'lead']
[u'pinochet', u'lawyer', u'say', u'leader', u'retrial']
[u'polic', u'care', u'fatal', u'accid']
[u'powel', u'doubt', u'iraq', u'govt', u'troop', u'leav']
[u'prosecut', u'fight', u'jackson', u'case']
[u'rat', u'worri', u'pull', u'nasdaq']
[u'refuge', u'campaign', u'call', u'zombi']
[u'rescuer', u'scour', u'amazon', u'plane', u'crash', u'survivor']
[u'rfds', u'anniversari', u'celebr', u'flight']
[u'richo', u'rise', u'toppl', u'bulldog']
[u'apologis', u'south', u'korea']
[u'rooster', u'good', u'shark']
[u'saint', u'condemn', u'pie', u'loss']
[u'scholarship', u'program', u'honour', u'veteran']
[u'senat', u'slow', u'meat', u'report', u'truss']
[u'serena', u'face', u'capriati', u'mauresmo']
[u'slow', u'start', u'tourism', u'season']
[u'sneer', u'cheer', u'eurovis', u'final', u'loom']
[u'hillsborough', u'victim', u'liverpool', u'squad']
[u'south', u'africa', u'win', u'battl', u'host', u'world']
[u'south', u'cowboy', u'share', u'point']
[u'stayer', u'line']
[u'studi', u'say', u'budget', u'support', u'incom', u'famili']
[u'tarantino', u'want', u'tackl', u'jam', u'bond']
[u'tasmanian', u'celebr', u'royal', u'wed']
[u'teamwork', u'import', u'safeti', u'busi', u'leader', u'tell']
[u'tear', u'flow', u'alic', u'court', u'find', u'guilti']
[u'tiger', u'grab', u'texa', u'lead']
[u'toxic', u'tide', u'spread', u'east', u'china']
[u'troubl', u'mitsubishi', u'rais', u'capit', u'billion']
[u'soldier', u'kill', u'attack', u'near', u'baghdad']
[u'soldier', u'stand', u'iraq', u'abus', u'claim']
[u'cut', u'east', u'timor', u'peacekeep']
[u'militari', u'fresh', u'prison', u'abus', u'alleg']
[u'name', u'player', u'olymp', u'roster']
[u'releas', u'hundr', u'ghraib', u'prison']
[u'suprem', u'court', u'refus', u'block', u'marriag']
[u'veteran', u'reserv', u'judgment', u'compo', u'scheme']
[u'victoria', u'prison', u'incub', u'hepat']
[u'wander', u'lioness', u'prompt', u'dubbo', u'review']
[u'zimbabw', u'rebel', u'give', u'day', u'return']
[u'cameramen', u'golden', u'tripod']
[u'aceh', u'rebel', u'free', u'detaine']
[u'defend', u'veteran', u'polici']
[u'archaeologist', u'discov', u'neanderth', u'man', u'tooth']
[u'arsenal', u'immort', u'place', u'histori']
[u'aust', u'allianc', u'fight', u'spam']
[u'babi', u'die', u'hous']
[u'hit', u'jone', u'make', u'zealand', u'suffer']
[u'brisban', u'host', u'global', u'traffic', u'control', u'meet']
[u'bronco', u'berrigan', u'season']
[u'bronco', u'hooker', u'berrigan', u'season']
[u'brown', u'label', u'democrat', u'slogan', u'aw']
[u'brumbi', u'wait', u'news', u'mortlock', u'injuri']
[u'budget', u'fail', u'public', u'latham']
[u'bulk', u'bill', u'clinic', u'offer', u'qualiti', u'servic']
[u'bulldog', u'player', u'hand', u'breach', u'notic', u'thurston']
[u'elect', u'test', u'mugab', u'strength']
[u'celebr', u'exempt', u'secur', u'check']
[u'celta', u'valladolid', u'brink', u'spanish']
[u'china', u'assur', u'asia', u'slowdown', u'manag']
[u'competit', u'worri', u'pharmacist']
[u'caus', u'fatal', u'accid']
[u'downer', u'request', u'hick', u'abus', u'evid']
[u'emerg', u'servic', u'tabl', u'legisl']
[u'england', u'faith', u'beat', u'windi']
[u'exhibit', u'hatch', u'graduat', u'career']
[u'falconio', u'murder', u'suspect', u'lawyer', u'call', u'fair']
[u'feder', u'crush', u'hewitt', u'reach', u'hamburg', u'final']
[u'rome', u'titl', u'await', u'mauresmo', u'capriati']
[u'sar', u'high', u'price', u'threaten', u'asian']
[u'kill', u'bloodi', u'weekend', u'road']
[u'forum', u'gulf', u'pollut', u'solut']
[u'garcia', u'take', u'stroke', u'lead', u'wood', u'slip', u'joint']
[u'geelong', u'halt', u'melbourn', u'juggernaut']
[u'gibernau', u'take', u'french', u'pole', u'record']
[u'govt', u'blame', u'petrol', u'price', u'hike']
[u'gut', u'mortlock', u'super', u'final']
[u'hawk', u'snap', u'lose', u'streak']
[u'hick', u'habib', u'report', u'mistreat', u'embassi']
[u'highland', u'brink', u'scottish', u'flight']
[u'high', u'visibl', u'raid', u'target', u'weapon', u'drug']
[u'hotlin', u'field', u'pitch', u'black', u'complaint']
[u'howard', u'say', u'retir', u'agenda']
[u'hundr', u'home', u'demolish', u'isra', u'armi']
[u'impact', u'boardroom', u'brawl', u'unknown']
[u'island', u'hop', u'pepper', u'economi']
[u'israel', u'court', u'lift', u'gaza', u'hous', u'demolit']
[u'isra', u'gunship', u'target', u'milit', u'offic']
[u'isra', u'peac', u'camp', u'ralli', u'gaza', u'pullout']
[u'isra', u'ralli', u'gaza', u'pullout']
[u'jimenez', u'snatch', u'victori', u'shanghai']
[u'kiwi', u'ulmer', u'star', u'sydney', u'track']
[u'labor', u'deni', u'confus']
[u'lampard', u'quit', u'chelsea', u'agent']
[u'latham', u'plan']
[u'coordin', u'hamper', u'whale', u'strand', u'research']
[u'lightn', u'strike', u'tasmanian', u'home']
[u'die', u'strike', u'polic']
[u'man', u'riot', u'hapless', u'warrior']
[u'face', u'court', u'airborn', u'activ']
[u'marsh', u'quit', u'zimbabw', u'coach']
[u'marvel', u'marvan', u'hit', u'doubl', u'lanka']
[u'media', u'brief', u'falconio', u'case']
[u'mexico', u'ochoa', u'edg', u'ahead', u'hurst']
[u'middl', u'east', u'conflict', u'domin']
[u'minist', u'confid', u'resolv', u'nurs', u'disput']
[u'mitsubishi', u'meet', u'demand', u'treasur']
[u'murali', u'hit', u'howard', u'chucker', u'comment']
[u'newspap', u'pledg', u'abus', u'hoax', u'profit', u'chariti']
[u'nigeria', u'detain', u'nobel', u'laureat', u'protest']
[u'mandat', u'gandhi', u'rule', u'hindu', u'leader']
[u'survivor', u'brazil', u'plane', u'crash']
[u'nurs', u'threaten', u'action', u'bed', u'plan']
[u'origin', u'focus', u'mind', u'round']
[u'paltrow', u'babi', u'truli', u'appl']
[u'polic', u'launch', u'drug', u'blitz', u'border']
[u'polic', u'rule', u'falconio', u'link', u'bone']
[u'polic', u'seek', u'inform', u'rescu']
[u'polic', u'appeal', u'kitten', u'abus', u'sentenc']
[u'poll', u'show', u'voter', u'want', u'blair', u'stand']
[u'pope', u'canonis', u'anti', u'abort', u'icon']
[u'powel', u'offer', u'abus', u'apolog']
[u'protest', u'cann', u'film', u'festiv']
[u'qimr', u'celebr', u'cancer', u'research', u'mileston']
[u'hous', u'slowdown', u'worri']
[u'railway', u'celebr', u'pull', u'port', u'elliot']
[u'hunt', u'exempt', u'secur', u'check', u'anderson']
[u'roger', u'sign', u'year', u'rugbi', u'deal']
[u'roo', u'massacr', u'port']
[u'royal', u'wed', u'prompt', u'call', u'close', u'denmark', u'tie']
[u'rumsfeld', u'approv', u'iraq', u'interrog', u'method', u'report']
[u'ruslana', u'danc', u'ukrain', u'eurovis']
[u'saint', u'pie']
[u'sale', u'strip', u'nudist', u'summer', u'camp']
[u'woo', u'skill', u'migrant']
[u'search', u'miss', u'resum']
[u'soldier', u'face', u'iraq', u'abus', u'charg', u'report']
[u'south', u'africa', u'win', u'battl', u'host', u'world']
[u'southgat', u'miss', u'euro', u'say', u'eriksson']
[u'special', u'opec', u'meet', u'boost', u'output']
[u'stage', u'second', u'mcgee', u'cunego', u'seiz', u'giro', u'lead']
[u'storm', u'rocket', u'sixth', u'spot']
[u'tall', u'ship', u'crash', u'tower', u'bridg']
[u'tarver', u'floor', u'jone', u'rematch']
[u'theatr', u'goer', u'injur', u'ceil', u'collaps']
[u'briton', u'alleg', u'guantanamo', u'abus']
[u'tiger', u'continu', u'raider', u'slump']
[u'treasur', u'defend', u'parti', u'donat', u'chang']
[u'typhoon', u'turn', u'england', u'ash']
[u'question', u'soldier', u'iraq', u'abus', u'claim']
[u'battl', u'sadr', u'support']
[u'govt', u'urg', u'commit', u'mental', u'health', u'plan']
[u'site', u'sell', u'worker', u'compens', u'reform']
[u'wenger', u'salut', u'histori', u'make', u'gunner']
[u'west', u'indi', u'scrambl', u'past', u'bangladesh']
[u'world', u'fever', u'sweep', u'south', u'africa']
[u'abattoir', u'sale', u'fail', u'eras', u'creditor', u'debt']
[u'aborigin', u'celebr', u'kosciuszko', u'manag', u'plan']
[u'abus', u'scandal', u'reason', u'iraq', u'pull', u'govt']
[u'level', u'continu', u'fall']
[u'see', u'demon', u'thompson', u'set', u'sight']
[u'albani', u'volunt', u'win', u'victim', u'crime', u'support']
[u'albatross', u'surpris', u'race', u'tactic']
[u'arm', u'hold', u'traumatis', u'takeaway', u'worker']
[u'aussi', u'yacht', u'world', u'titl']
[u'australia', u'appoint', u'diplomat', u'libya']
[u'baggio', u'bow']
[u'barnett', u'deni', u'foss', u'depart', u'term']
[u'bashir', u'sue', u'polic', u'order', u'arrest']
[u'baxter', u'children', u'program', u'win', u'approv']
[u'baxter', u'prepar', u'detaine', u'transfer']
[u'boost', u'roo', u'confid', u'say', u'laidley']
[u'blair', u'condemn', u'iraq', u'kill']
[u'bond', u'pull', u'english', u'test']
[u'bone', u'prompt', u'miss', u'person', u'review']
[u'british', u'bank', u'target', u'turkish', u'blast', u'ahead']
[u'british', u'arriv', u'turkey']
[u'bronco', u'point', u'decis', u'expect', u'today']
[u'budget', u'figur', u'sound', u'despit', u'fuel', u'hike']
[u'burma', u'constitut', u'talk', u'start']
[u'butcher', u'lose', u'accid']
[u'bomb', u'kill', u'iraqi', u'govern', u'council', u'head']
[u'cash', u'level', u'canberra']
[u'chariti', u'walker', u'leav', u'katherin', u'head']
[u'chechen', u'warlord', u'report', u'claim', u'dead', u'stadium']
[u'china', u'find', u'sanctuari', u'endang', u'tiger']
[u'china', u'issu', u'independ', u'warn', u'taiwan']
[u'chirac', u'dismay', u'iraq', u'blast']
[u'sourc', u'iraq', u'deliber', u'mislead']
[u'clinic', u'program', u'result', u'encourag']
[u'coalit', u'promis', u'properti', u'cut']
[u'coal', u'summit', u'boost', u'china', u'hop']
[u'communiti', u'air', u'concern', u'hospit', u'servic']
[u'coral', u'reef', u'damag', u'shock', u'research']
[u'council', u'seek', u'fish', u'ban']
[u'council', u'ahead', u'exhibit', u'centr']
[u'council', u'investig', u'hospit', u'transfer', u'delay']
[u'countri', u'driver', u'urg', u'belt']
[u'court', u'hear', u'falconio', u'girlfriend', u'hold']
[u'crow', u'desper', u'final', u'hop', u'aliv']
[u'dairi', u'confer', u'focus', u'drought']
[u'danger', u'drive', u'crackdown', u'hail', u'success']
[u'darwin', u'crocodil', u'sight', u'prompt', u'warn']
[u'dead', u'tourist', u'famili', u'return', u'inquest']
[u'defenc', u'brief', u'outlin', u'forc', u'base', u'upgrad']
[u'democrat', u'urg', u'bore', u'water', u'ban']
[u'disabl', u'group', u'examin', u'isol', u'solut']
[u'discuss', u'begin', u'fitzroy', u'river', u'upgrad']
[u'drunken', u'stripper', u'spark', u'probe', u'scottish', u'airport']
[u'eagl', u'kerr', u'tribun']
[u'energi', u'effici', u'build', u'win', u'environment', u'award']
[u'prepar', u'export', u'subsidi']
[u'expert', u'demand', u'nation', u'anti', u'smoke', u'law']
[u'falconio', u'hear', u'begin', u'darwin']
[u'falconio', u'brother', u'give', u'evid', u'darwin']
[u'falun', u'dafa', u'member', u'sydney', u'paper', u'defam']
[u'fergi', u'rat', u'gerrard', u'influenti', u'player']
[u'kill', u'dozen', u'wound', u'iraq', u'battl']
[u'fiji', u'cabinet', u'meet', u'militari', u'coup', u'claim']
[u'hondura', u'jail', u'kill']
[u'black', u'flavel', u'face', u'polic', u'probe']
[u'forum', u'push', u'develop', u'free', u'reserv']
[u'kill', u'isra', u'border', u'report']
[u'secur', u'curtain', u'come', u'athen']
[u'gandhi', u'path', u'prime', u'minist', u'clear']
[u'garcia', u'win', u'byron', u'nelson', u'championship', u'play']
[u'german', u'rule', u'sydney', u'track', u'australia']
[u'germani', u'chile', u'win', u'start', u'tenni', u'team']
[u'gold', u'coast', u'properti', u'price', u'hold', u'firm']
[u'goldfield', u'motorist', u'tell', u'belt']
[u'govt', u'fear', u'india', u'share']
[u'govt', u'wheat', u'subsidi', u'decis', u'criticis']
[u'govt', u'ship', u'levi']
[u'govt', u'urg', u'increas', u'polic', u'station', u'fund']
[u'greas', u'bandit', u'slick', u'getaway']
[u'group', u'air', u'concern', u'stall', u'antarct', u'servic']
[u'group', u'decri', u'wheat', u'subsidi', u'remov']
[u'gulf', u'bird', u'number', u'withstand', u'drought']
[u'gulf', u'council', u'expect', u'sign', u'plan']
[u'hall', u'creek', u'hospit', u'boost', u'kimberley', u'care']
[u'hardi', u'crush', u'vintag', u'record']
[u'health', u'chariti', u'action', u'obes']
[u'heavi', u'rain', u'station', u'owner']
[u'herculean', u'effort', u'restor', u'olymp', u'god']
[u'hindu', u'nationalist', u'boycott', u'polit', u'ceremoni']
[u'hornbi', u'bolt', u'blue', u'squad']
[u'hornbi', u'shock', u'origin', u'team', u'name']
[u'howard', u'surpris', u'soldier', u'iraq', u'role']
[u'human', u'remain', u'cattl', u'station', u'identifi']
[u'hume', u'council', u'anticip', u'final', u'meet']
[u'india', u'stock', u'plummet', u'amid', u'fear']
[u'inquest', u'tell', u'cooper', u'urban']
[u'inquiri', u'recommend', u'corpor', u'manslaught', u'law']
[u'insur', u'offer', u'hope', u'unlicens', u'builder']
[u'inter', u'fourth', u'modena', u'empoli']
[u'iraq', u'prison', u'abus', u'hit', u'bush', u'approv', u'rat']
[u'isra', u'chopper', u'arafat', u'fatah', u'offic']
[u'isra', u'forc', u'advanc', u'gaza', u'strip']
[u'jail', u'sentenc', u'canberra', u'drug', u'dealer']
[u'jone', u'prepar', u'launch', u'lawsuit', u'ban']
[u'kangaroo', u'island', u'tour', u'compani', u'urg', u'koala', u'cull']
[u'kerr', u'clear', u'strike', u'charg']
[u'attract', u'lure', u'second', u'australian', u'visit']
[u'labor', u'claim', u'budget', u'cut', u'save', u'buck']
[u'labor', u'wont', u'ditch', u'cut', u'latham']
[u'lamborghini', u'cop', u'anti', u'getaway']
[u'latham', u'confus']
[u'level', u'cross', u'upgrad', u'delay', u'anger', u'mother']
[u'liber', u'pursu', u'east', u'gippsland', u'elect']
[u'lightn', u'strike', u'leav', u'zone', u'wake']
[u'lindsay', u'park', u'school', u'reopen']
[u'lion', u'fine']
[u'liverpool', u'tip', u'announc', u'thailand', u'deal']
[u'load', u'limit', u'eas', u'road', u'wear', u'tear']
[u'local', u'appoint', u'art', u'council']
[u'lockyer', u'give', u'time', u'prove', u'fit', u'origin']
[u'lockyer', u'princ', u'bowman', u'name', u'maroon']
[u'longreach', u'thank', u'long', u'serv', u'mayor']
[u'charg', u'babi', u'tortur']
[u'dead', u'fish', u'lure', u'argument']
[u'man', u'council', u'ban', u'smoke', u'beach']
[u'manslaught', u'sentenc', u'increas', u'oppos']
[u'maritim', u'safeti', u'improv']
[u'mayor', u'dismiss', u'scarborough', u'high', u'rise', u'protest']
[u'mcewen', u'help', u'hand', u'cost', u'giro']
[u'meander', u'decis', u'bring', u'forward']
[u'meat', u'plant', u'fin', u'workplac', u'death']
[u'media', u'warn', u'buy', u'interview', u'falconio', u'case']
[u'mental', u'face', u'jail', u'airlin', u'secur']
[u'middleton', u'beach', u'lead', u'properti', u'price', u'rise']
[u'milit', u'group', u'take', u'russian', u'hostag', u'iraq']
[u'miner', u'foreshadow', u'graduat', u'shortag']
[u'mine', u'emerg', u'competit', u'draw', u'record', u'field']
[u'mine', u'deal', u'set', u'benchmark', u'indigen']
[u'mitsubishi', u'say', u'decis', u'australia']
[u'moor', u'tell', u'documentari', u'pressur']
[u'morley', u'face', u'lengthi']
[u'murali', u'comment', u'earn', u'ebrahim', u'test']
[u'murder', u'inform', u'refus', u'wit', u'protect']
[u'murray', u'bridg', u'contain']
[u'nation', u'park', u'deni', u'hors', u'bait', u'claim']
[u'nauru', u'detaine', u'refuge', u'status']
[u'nepali', u'sherpa', u'set', u'everest', u'climb', u'record']
[u'ballarat', u'dive', u'right']
[u'news', u'corp', u'miner', u'weigh', u'market']
[u'speci', u'fish', u'discov', u'seychell']
[u'toowoomba', u'get', u'busi']
[u'zealand', u'thrash', u'kent', u'final', u'warm', u'match']
[u'decis', u'merger', u'health', u'area', u'minist']
[u'accus', u'hors', u'bait']
[u'defend', u'school', u'repair', u'figur']
[u'nucifora', u'hold', u'name', u'brumbi', u'final']
[u'nurs', u'vote', u'industri', u'campaign']
[u'ochoa', u'claim', u'lpga', u'tour', u'victori']
[u'price', u'hit', u'time', u'high']
[u'flight', u'deal', u'boost', u'goldfield', u'tourism']
[u'opposit', u'promis', u'test', u'landfil', u'sit']
[u'origin', u'focus', u'mind', u'round']
[u'parent', u'disturb', u'abductor']
[u'passeng', u'mackay', u'airport', u'secur']
[u'pentagon', u'deni', u'secret', u'interrog', u'deal']
[u'petrol', u'push', u'inflat']
[u'stand', u'murali', u'chuck']
[u'polic', u'charg', u'unruli', u'behaviour', u'crackdown']
[u'polic', u'foil', u'million', u'pound', u'heist', u'heathrow']
[u'polic', u'foil', u'massiv', u'gold', u'robberi']
[u'polic', u'liaison', u'offic', u'target', u'domest', u'violenc']
[u'polic', u'number', u'blame', u'breath', u'test', u'declin']
[u'polic', u'offic', u'blame', u'redfern', u'riot', u'heroin']
[u'polic', u'search', u'alleg', u'robber']
[u'polic', u'search', u'wind']
[u'polici', u'unclear', u'gandhi', u'lead', u'india']
[u'popov', u'triumph', u'europ']
[u'port', u'star', u'miss', u'tiger', u'clash']
[u'prison', u'abus', u'sign', u'desper', u'intellig']
[u'properti', u'lend', u'suggest', u'rate', u'rise', u'analyst']
[u'protest', u'delay', u'murwillumbah', u'train', u'final']
[u'qanta', u'seal', u'deal']
[u'govern', u'propos', u'tough', u'anti', u'smoke', u'law']
[u'lobbi', u'wrong', u'govern', u'road', u'fund']
[u'racv', u'tip', u'petrol', u'price', u'rise']
[u'radio', u'hill', u'begin', u'underground', u'mine']
[u'rain', u'fail', u'reviv', u'pastur']
[u'real', u'self', u'destruct', u'lowli', u'murcia']
[u'reef', u'tragedi', u'film', u'anger', u'dive', u'industri']
[u'resid', u'urg', u'heater', u'pollut']
[u'rmit', u'hike', u'fee']
[u'roch', u'train', u'afghanistan', u'prosecutor']
[u'rural', u'counsellor', u'warn', u'budget', u'fund', u'inadequ']
[u'scientist', u'engin', u'fatti', u'acid', u'health', u'plant']
[u'scientist', u'prepar', u'scramjet', u'test', u'record']
[u'shadow', u'cabinet', u'meet', u'bunburi']
[u'simul', u'foot', u'mouth', u'exercis', u'begin']
[u'bobbi', u'stay', u'say', u'newcastl', u'chief']
[u'site', u'offic', u'begin', u'wollongong', u'road', u'project']
[u'black', u'player', u'coach', u'white', u'springbok', u'team']
[u'admit', u'help', u'celebr', u'chef', u'commit']
[u'spur', u'swoop', u'celtic', u'oneil']
[u'lanka', u'murali', u'doosra']
[u'stakehold', u'discuss', u'road', u'studi', u'progress']
[u'state', u'origin', u'squad', u'announc', u'today']
[u'sting', u'prompt', u'broom', u'jellyfish', u'warn']
[u'kilda', u'maintain', u'spot']
[u'substanc', u'abus', u'target', u'outback']
[u'sydney', u'council', u'consid', u'beach', u'smoke']
[u'taiwan', u'stock', u'tumbl']
[u'tale', u'migrat', u'win', u'literari', u'award']
[u'tarantino', u'rev', u'spaghetti', u'biker', u'flick']
[u'tasmania', u'serv', u'tourism', u'promot']
[u'cut', u'widen', u'social', u'divid', u'acoss']
[u'teacher', u'strike', u'disput']
[u'teacher', u'threaten', u'strike']
[u'tear', u'larsson', u'sign', u'style']
[u'teenag', u'charg', u'hous']
[u'teen', u'charg', u'recycl', u'yard', u'blaze']
[u'tharwa', u'resid', u'criticis', u'control', u'bushfir']
[u'palestinian', u'kill', u'isra', u'forc', u'near']
[u'timber', u'group', u'examin', u'clear', u'fell', u'ban', u'social']
[u'traffic', u'control', u'meet', u'intern']
[u'tree', u'replant', u'encourag', u'canberra', u'water']
[u'trial', u'begin', u'alleg', u'plot', u'isra']
[u'twin', u'doubl', u'ton', u'lanka', u'past']
[u'union', u'prais', u'polic', u'centr', u'plan']
[u'gay', u'prepar', u'amid', u'cheer', u'protest']
[u'redeploy', u'south', u'korea', u'troop', u'iraq', u'seoul']
[u'speed', u'drug', u'approv', u'process']
[u'vanston', u'rule', u'close', u'nauru', u'detent', u'centr']
[u'polic', u'examin', u'inform', u'murder']
[u'victoria', u'boost', u'fee']
[u'virgin', u'exceed', u'profit', u'expect']
[u'waratah', u'dump', u'burk']
[u'west', u'indi', u'beat', u'bangladesh', u'truncat']
[u'woman', u'fight', u'year', u'arrest', u'warrant']
[u'worker', u'lose', u'confid', u'child', u'protect']
[u'worker', u'threaten', u'work', u'ban', u'nurs', u'home']
[u'cut', u'hospit', u'stay', u'combat', u'shortag']
[u'get', u'environ', u'commission']
[u'advertis', u'child', u'abus', u'doctor']
[u'agassi', u'beat', u'rank', u'serb']
[u'say', u'burk', u'free', u'negoti', u'contract', u'releas']
[u'atapattu', u'laud', u'lankan', u'bowler']
[u'atsic', u'task', u'forc', u'address', u'famili', u'violenc']
[u'aust', u'track', u'plan', u'satellit']
[u'bank', u'resourc', u'fuel', u'market', u'bounc']
[u'beach', u'smoke', u'spark', u'debat']
[u'beach', u'smoke', u'target', u'pollut', u'health']
[u'beckham', u'defi', u'real', u'keown', u'testimoni']
[u'beer', u'brew', u'add', u'school', u'curriculum']
[u'head', u'abound', u'budgi', u'lock', u'beak']
[u'bomb', u'attack', u'kill', u'wound', u'algeria']
[u'britain', u'send', u'troop', u'iraq', u'report']
[u'break', u'hill', u'water', u'group', u'member', u'sack']
[u'brown', u'appeal', u'hear', u'tonight']
[u'brown', u'tribun']
[u'budget', u'provid', u'bounc', u'govt']
[u'budget', u'boost', u'vocat', u'train', u'fund']
[u'bulldog', u'hand', u'coff', u'fin', u'refus']
[u'bulldog', u'player', u'payment', u'fine']
[u'bulldog', u'pay', u'price', u'miss', u'goal', u'shot']
[u'bus', u'replac', u'train', u'kiama', u'bomaderri']
[u'bush', u'extend', u'burma', u'sanction', u'year']
[u'bushfir', u'inquest', u'hear', u'firefight', u'proud']
[u'calder', u'highway', u'blowout', u'cost', u'taxpay']
[u'call', u'polic', u'royal', u'commiss', u'demoralis']
[u'calm', u'clear', u'lizard', u'trap']
[u'cathedr', u'revamp', u'get', u'feder', u'fund']
[u'centr', u'look', u'station', u'access']
[u'charl', u'camilla', u'report']
[u'chechen', u'rebel', u'kill', u'russian', u'troop', u'ambush']
[u'children', u'face', u'court', u'joyrid']
[u'china', u'cancel', u'moon', u'plan', u'focus', u'space', u'station']
[u'china', u'contain', u'latest', u'sar', u'outbreak', u'say']
[u'club', u'feel', u'game', u'increas']
[u'coalit', u'firm', u'iraq', u'handov', u'date']
[u'concern', u'port', u'expans', u'affect', u'radar']
[u'confer', u'tackl', u'child', u'sexual', u'abus']
[u'consum', u'tip', u'feel', u'rise', u'fuel', u'cost']
[u'cook', u'land', u'site', u'consid', u'heritag', u'list']
[u'coron', u'examin', u'fraser', u'death']
[u'costello', u'want', u'rethink', u'zimbabwean', u'tour']
[u'council', u'wont', u'pursu', u'elect', u'interfer', u'claim']
[u'court', u'hear', u'case', u'accus', u'murder']
[u'cowboy', u'surpris', u'hannay', u'origin', u'snub']
[u'currenc', u'swing', u'iraq', u'violenc']
[u'danger', u'rail', u'cross', u'upgrad']
[u'death', u'custodi', u'investig', u'begin']
[u'deputi', u'follow', u'labor', u'leader', u'bundaberg']
[u'differ', u'life', u'signal', u'direct', u'tourism']
[u'downer', u'brussel', u'nato', u'talk']
[u'dun', u'readi', u'razzl', u'dazzl', u'island']
[u'eadi', u'dajka', u'head', u'track', u'cycl', u'squad']
[u'sight', u'cassel', u'appeal']
[u'england', u'leav', u'robinson', u'greenwood']
[u'england', u'turn', u'novic', u'shore', u'euro']
[u'esper', u'view', u'consid', u'school', u'leav']
[u'box', u'champ', u'bow', u'releas', u'prison']
[u'expert', u'play', u'cane', u'toad', u'threat']
[u'fairfax', u'ax', u'herald', u'job']
[u'famili', u'recov', u'tornado']
[u'farmer', u'sheep', u'export']
[u'farm', u'group', u'concern', u'woodland', u'declar']
[u'fifa', u'confirm', u'huge', u'cash', u'prize', u'revamp', u'club']
[u'kill', u'iraq', u'clash']
[u'fiji', u'armi', u'chief', u'investig', u'coup', u'claim']
[u'firm', u'name', u'manag', u'game', u'ceremoni']
[u'surviv', u'olymp']
[u'footbal', u'face', u'court', u'charg']
[u'french', u'rocker', u'appeal', u'jail', u'sentenc']
[u'fuel', u'distributor', u'disput', u'margin']
[u'fuel', u'excis', u'wont', u'reduc', u'anderson']
[u'fuel', u'price', u'hurt', u'compani', u'profit']
[u'gandhi', u'aim']
[u'gandhi', u'meet', u'presid', u'discuss', u'govt']
[u'german', u'film', u'polit', u'messag', u'set', u'cann', u'abuzz']
[u'golden', u'circl', u'plan', u'restructur']
[u'good', u'injuri', u'rais', u'fresh', u'ruck', u'question']
[u'govt', u'oppos', u'juvenil', u'detent', u'centr']
[u'govt', u'optimist', u'mitsubishi', u'futur']
[u'govt', u'reject', u'assembl', u'sit', u'debat', u'road']
[u'grain', u'farmer', u'exodus', u'rural', u'busi']
[u'grain', u'group', u'predict', u'fewer', u'farmer', u'futur']
[u'griffith', u'council', u'reject', u'fumig', u'chamber', u'plan']
[u'griffith', u'resid', u'like', u'rat', u'rise']
[u'gulf', u'council', u'band']
[u'harsh', u'penalti', u'breach', u'abalon']
[u'hayden', u'langer', u'zimbabw', u'tour', u'good', u'start']
[u'head', u'roll', u'govt', u'reshap']
[u'health', u'worker', u'train', u'cut', u'edg', u'equip']
[u'heskey', u'complet', u'birmingham', u'switch']
[u'hous', u'shortfal', u'hurt', u'busi', u'oppn']
[u'howard', u'rule', u'iraq', u'troop', u'increas']
[u'howard', u'seek', u'detail', u'sarin', u'explos']
[u'india', u'face', u'uncertainti', u'gandhi', u'struggl']
[u'indonesia', u'aceh', u'rebel', u'releas', u'hostag']
[u'indonesian', u'chief', u'free', u'snake', u'catch', u'rat']
[u'inquest', u'hear', u'communic', u'problem']
[u'insid', u'play', u'athen', u'whinger', u'claim']
[u'iraqi', u'captor', u'releas', u'russian', u'hostag']
[u'iraqi', u'journalist', u'threat', u'cover', u'report']
[u'israel', u'commit', u'crime', u'rafah', u'palestinian']
[u'japan', u'econom', u'reviv', u'continu']
[u'judg', u'deni', u'motion', u'review', u'wiranto', u'charg']
[u'keat', u'take']
[u'kerri', u'undecid', u'australia', u'free', u'trade', u'pact']
[u'labor', u'accus', u'govt', u'intimid']
[u'labor', u'call', u'scrap', u'pacif', u'solut']
[u'lee', u'face', u'alleg', u'attack']
[u'lee', u'tell', u'falconio', u'moment']
[u'lib', u'warn', u'vote', u'valu', u'risk', u'ahead']
[u'lion', u'nathan', u'profit', u'slump']
[u'liverpool', u'board', u'approv', u'thai', u'offici']
[u'liverpool', u'board', u'approv', u'thai', u'thaksin']
[u'liverpool', u'silent', u'thai']
[u'lobster', u'price', u'rise']
[u'local', u'oppos', u'wittenoom', u'closur']
[u'loud', u'explos', u'rumbl', u'baghdad']
[u'macquari', u'profit', u'near']
[u'maher', u'doubt', u'athen']
[u'charg', u'morecomb', u'abduct', u'extort', u'hoax']
[u'charg', u'murder', u'bodi']
[u'convict', u'million', u'googl', u'stock', u'fraud']
[u'fin', u'attack']
[u'hospitalis', u'trawler', u'blast']
[u'jail', u'rap', u'sister']
[u'remand', u'babi', u'assault', u'charg']
[u'face', u'babi', u'tortur', u'charg']
[u'face', u'bird', u'shoot', u'charg']
[u'face', u'court', u'machet', u'attack']
[u'face', u'trial', u'charg']
[u'stay', u'custodi', u'follow', u'babi', u'tortur']
[u'melbourn', u'council', u'consid', u'beach', u'smoke']
[u'melbourn', u'seminar', u'target', u'terrorist', u'attack', u'respons']
[u'face', u'court', u'money', u'charg']
[u'mental', u'health', u'report', u'call', u'fund', u'boost']
[u'mental', u'ill', u'group', u'criticis', u'assist']
[u'milan', u'snap', u'lazio', u'stam']
[u'miner', u'seek', u'fortun', u'metal', u'west', u'coast', u'site']
[u'minist', u'drive', u'home', u'road', u'fund', u'messag']
[u'minist', u'address', u'ghost', u'woe']
[u'minist', u'unveil', u'civic', u'west', u'develop', u'plan']
[u'minist', u'urg', u'discuss', u'toxic', u'wast', u'dump', u'fear']
[u'mini', u'tornado', u'caus', u'havoc', u'melbourn']
[u'mistak', u'grant', u'prison', u'earli', u'releas']
[u'mitsubishi', u'offer', u'assur']
[u'mix', u'reaction', u'budget']
[u'moor', u'fahrenheit', u'turn', u'heat', u'bush']
[u'morley', u'cop', u'plea', u'peek', u'week']
[u'clash', u'redfern', u'inquiri']
[u'support', u'end', u'exit']
[u'gambier', u'hospit', u'revamp']
[u'councillor', u'prepar', u'duti', u'offic']
[u'pilbara', u'campus', u'open']
[u'snowi', u'servic', u'propos']
[u'zealand', u'antarct', u'base', u'damag', u'winter', u'storm']
[u'nigeria', u'declar', u'state', u'emerg']
[u'chang', u'zimbabw', u'tour', u'sutherland']
[u'prize', u'pageant', u'winner']
[u'aid', u'council', u'disappoint', u'figur']
[u'govt', u'reject', u'highway', u'fund', u'claim']
[u'nurs', u'age', u'care', u'rise']
[u'teacher', u'industri']
[u'continu', u'darwin', u'crocodil', u'search']
[u'treasur', u'label', u'howard', u'turkey']
[u'price', u'turn', u'lower']
[u'olymp', u'green', u'light', u'transsexu', u'athlet']
[u'olymp', u'sport', u'safe']
[u'oppn', u'consid', u'relax', u'busi', u'migrat', u'law']
[u'outback', u'highway', u'backer', u'seek', u'fund']
[u'palac', u'shoot', u'reach', u'divis', u'play']
[u'pell', u'defend', u'cathol', u'school', u'right', u'discrimin']
[u'phoenix', u'swift', u'look', u'good', u'daylight']
[u'physician', u'label', u'media', u'major', u'health', u'concern']
[u'face', u'polit', u'crisi']
[u'polic', u'staff', u'shortag', u'concern']
[u'polic', u'chase', u'death', u'prompt', u'coroni', u'inquest']
[u'polic', u'crash', u'victim']
[u'polic', u'warn', u'fuel', u'thiev']
[u'poll', u'show', u'budget', u'didnt', u'satisfi', u'public', u'latham']
[u'pope', u'celebr', u'birthday']
[u'pratt', u'vienna']
[u'privat', u'school', u'expel', u'student']
[u'proud', u'howard', u'celebr', u'year', u'parliament']
[u'psychologist', u'ban', u'form', u'patient']
[u'quarantin', u'concern', u'chang', u'wheat', u'import']
[u'rail', u'union', u'hop', u'worker', u'deploy']
[u'redfern', u'inquiri', u'hear', u'effort', u'polic']
[u'redfern', u'inquiri', u'fieri', u'start']
[u'reef', u'delay', u'anger', u'commerci', u'fisher']
[u'hampstead', u'hand', u'origin', u'debut']
[u'releg', u'leicest', u'player']
[u'rise', u'prison', u'hepat', u'rat', u'prompt', u'review', u'call']
[u'riverland', u'avoid', u'doctor', u'shortag', u'woe']
[u'robot', u'scour', u'mar', u'crater', u'sign', u'water']
[u'roch', u'trial', u'hear', u'hat', u'muslim']
[u'roddick', u'goal', u'roland', u'garro']
[u'rodriguez', u'shock', u'petacchi', u'giro', u'stage', u'mcewen']
[u'rooster', u'clear', u'lockyer', u'approach', u'claim']
[u'royal', u'secur', u'review', u'scare']
[u'rspca', u'seek', u'stronger', u'desex', u'law']
[u'salim', u'buri', u'amid', u'battl', u'iraq']
[u'secur', u'fear', u'emerg', u'prepar', u'reloc']
[u'shock', u'scud', u'comeback', u'australia', u'hold']
[u'singapor', u'airlin', u'plan', u'fuel', u'surcharg']
[u'soccer', u'place', u'olymp', u'jeopardis', u'dope']
[u'soft', u'drink', u'rais', u'cancer', u'risk', u'studi', u'find']
[u'spald', u'power', u'surg', u'prove', u'cost']
[u'specialist', u'doctor', u'appoint', u'chopper', u'servic']
[u'student', u'die', u'agricultur', u'accid']
[u'student', u'counsel', u'teen', u'burn', u'school']
[u'support', u'warrnambool', u'plastic']
[u'suprem', u'court', u'hold', u'gold', u'coast', u'sit']
[u'surpris', u'surplus', u'budget']
[u'sydney', u'await', u'nigerian', u'scam', u'sentenc']
[u'syria', u'sanction', u'increas', u'tension', u'saudi', u'arabia']
[u'battl', u'takeov']
[u'trade', u'bore', u'jib']
[u'test', u'begin', u'desalin', u'plant']
[u'thailand', u'flag', u'iraq', u'troop', u'pull']
[u'thrupp', u'head', u'paralymp']
[u'tourism', u'whitsunday', u'target', u'america']
[u'truck', u'crash', u'investig', u'continu']
[u'tuna', u'boat', u'owner', u'fish', u'rescu', u'packag']
[u'kill', u'isra', u'refuge', u'camp', u'raid', u'report']
[u'charg', u'babi', u'assault']
[u'umpir', u'wire', u'sound', u'champion', u'trophi']
[u'run', u'short', u'soldier', u'equip', u'money']
[u'cross', u'boss', u'quit', u'amid', u'iraq', u'prison', u'scandal']
[u'releas', u'delay', u'human', u'right', u'report']
[u'use', u'prostitut', u'prosecut', u'greenpeac']
[u'vaughan', u'doubt', u'test']
[u'confid', u'hospit', u'cope', u'winter', u'demand']
[u'wait', u'begin', u'rule', u'babi', u'manslaught']
[u'walker', u'bind', u'brisban', u'brawl']
[u'waltz', u'matilda', u'centr', u'get', u'revamp']
[u'town', u'like', u'base', u'spread', u'word']
[u'zimbabw', u'tour', u'doubt', u'speed']
[u'zimbabw', u'tour', u'doubt', u'speed']
[u'cricket', u'season', u'announc']
[u'aborigin', u'meet', u'discuss', u'murray', u'darl', u'woe']
[u'academ', u'claim', u'push', u'medicin', u'cost', u'higher']
[u'accus', u'redfern', u'inquiri']
[u'aceh', u'martial', u'end']
[u'host', u'counter', u'terror', u'exercis']
[u'age', u'care', u'home', u'open', u'launceston']
[u'age', u'care', u'wage', u'case', u'continu']
[u'alpin', u'resort', u'plan', u'debat']
[u'american', u'sprinter', u'accept', u'year', u'newspap']
[u'anderson', u'talk', u'budget', u'benefit']
[u'arctic', u'temperatur', u'warm', u'rapid', u'polar', u'explor']
[u'aussi', u'return', u'home', u'zimbabw']
[u'aussi', u'warm', u'zimbabw']
[u'australia', u'zealand', u'launch', u'annual', u'tran']
[u'australia', u'call', u'lazaridi']
[u'australia', u'ignor', u'asia', u'favour']
[u'australian', u'train', u'iraqi', u'polic']
[u'aust', u'formalis', u'free', u'trade', u'plan']
[u'babi', u'die', u'follow', u'alleg', u'assault']
[u'bank', u'resourc', u'buoy', u'australian', u'market']
[u'beef', u'quota', u'negoti', u'harder']
[u'black', u'sabbath', u'reunit', u'ozzfest']
[u'blade', u'wallabi', u'assist']
[u'bodi', u'alongsid', u'newel', u'highway']
[u'bodi', u'melbourn', u'road']
[u'die', u'wall', u'collaps']
[u'brando', u'play', u'film']
[u'breed', u'program', u'insur', u'devil', u'extinct']
[u'british', u'soldier', u'arrest', u'fake', u'abus', u'photo']
[u'british', u'soldier', u'arrest', u'fake', u'photo']
[u'budget', u'provid', u'basic', u'door', u'cruis', u'ship']
[u'bumper', u'mullet', u'season', u'forecast']
[u'bushfir', u'inquest', u'hear', u'resid', u'stori']
[u'busi', u'chamber', u'seek', u'support', u'develop', u'port']
[u'canada', u'allow', u'prescript', u'free', u'morn']
[u'canberra', u'spread', u'nation', u'park']
[u'carr', u'offer', u'western', u'sydney']
[u'carr', u'unveil', u'plan', u'sydney']
[u'chief', u'justic', u'concern', u'judiciari']
[u'chuck', u'comment', u'spin']
[u'combin', u'crcs', u'idea', u'gain', u'support']
[u'comet', u'joint', u'appear']
[u'command', u'control', u'focus', u'terror', u'train']
[u'communiti', u'group', u'oppos', u'hospit', u'cutback']
[u'compani', u'profit', u'boost', u'stock']
[u'construct', u'group', u'talk', u'budget']
[u'construct', u'hotel', u'landmark', u'start', u'month']
[u'consum', u'confid', u'slight']
[u'costello', u'agre', u'call']
[u'costello', u'defend', u'oversea', u'trip']
[u'costello', u'kick', u'margin']
[u'council', u'come', u'school', u'follow', u'diseas']
[u'councillor', u'head', u'push', u'oppos', u'appl', u'import']
[u'council', u'monitor', u'man', u'beach', u'smoke', u'cost']
[u'council', u'examin', u'draft', u'heritag', u'schoolhous', u'studi']
[u'council', u'urg', u'chang', u'view', u'hospit']
[u'crew', u'prais', u'quick', u'action', u'trawler']
[u'dairi', u'farmer', u'angri', u'milk', u'price']
[u'downer', u'seek', u'nato', u'secur', u'boost']
[u'downer', u'visit', u'libya', u'renew', u'trade', u'tie']
[u'downer', u'welcom', u'export', u'subsidi', u'offer']
[u'east', u'timor', u'troop', u'stay', u'year']
[u'elder', u'woman', u'killer', u'lose', u'appeal']
[u'employ', u'reject', u'corpor', u'manslaught', u'law']
[u'ethicist', u'call', u'mules', u'sheep']
[u'timor', u'welcom', u'extens']
[u'european', u'patent', u'breast', u'ovarian', u'cancer', u'test']
[u'financ', u'minist', u'tip', u'indian']
[u'falconio', u'murder', u'hear', u'adjourn']
[u'farmer', u'push', u'self', u'relianc', u'focus']
[u'fight', u'continu', u'council', u'amalgam']
[u'damag', u'devonport', u'busi']
[u'fitter', u'armstrong', u'consid', u'retir']
[u'citi', u'run', u'olymp']
[u'fli', u'doctor', u'leav', u'rann', u'port', u'augusta']
[u'forklift', u'accid', u'investig', u'continu']
[u'boyfriend', u'charg', u'sydney', u'teen', u'murder']
[u'teacher', u'convict', u'child', u'porn', u'pic']
[u'arrest', u'behead']
[u'franc', u'honour', u'forman', u'tarantino']
[u'gandhi', u'stand', u'decis']
[u'geena', u'davi', u'give', u'birth', u'twin']
[u'germani', u'chile', u'meet', u'team', u'champ', u'final', u'spot']
[u'giant', u'tree', u'tasmania']
[u'food', u'safe', u'report']
[u'gonzal', u'juri', u'retir', u'begin', u'deliber']
[u'gould', u'give', u'flanneri', u'tick', u'approv']
[u'govt', u'overturn', u'wheat', u'subsidi', u'decis']
[u'govt', u'put', u'cairn', u'compani', u'notic']
[u'govt', u'rule', u'alic', u'spring', u'juvenil', u'detent']
[u'govt', u'slam', u'rais', u'pastor', u'leas', u'rent']
[u'govt', u'upbeat', u'driver', u'drug', u'test']
[u'govt', u'allow', u'salim', u'visit', u'baghdad']
[u'green', u'ban', u'park', u'lift']
[u'greenspan', u'stay', u'chief']
[u'group', u'launch', u'latest', u'marin', u'debri', u'campaign']
[u'hammer', u'face', u'palac', u'premier', u'leagu', u'place']
[u'hawkesburi', u'sydney', u'water']
[u'heal', u'attend', u'boomer', u'train', u'camp']
[u'hospit', u'death', u'investig']
[u'howard', u'margin', u'increas', u'iraq', u'commit']
[u'howard', u'spell', u'iraq', u'plan']
[u'infecti', u'diseas', u'common']
[u'iraqi', u'prison', u'abus', u'trial', u'start']
[u'iraqi', u'reuter', u'staff', u'claim', u'abus']
[u'iraq', u'harder', u'think', u'howard']
[u'isra', u'crowd', u'gaza']
[u'isra', u'sweep', u'gaza', u'camp']
[u'isra', u'troop', u'remain', u'rafah', u'despit', u'protest']
[u'israel', u'kill', u'palestinian', u'gaza', u'raid']
[u'itali', u'pass', u'emerg', u'health', u'care']
[u'japanes', u'tourist', u'visit', u'intern', u'space']
[u'japan', u'sega', u'sammi', u'merg']
[u'joyrid', u'incid', u'sadden', u'polic']
[u'juri', u'consid', u'verdict', u'tare', u'accus']
[u'kenya', u'detain', u'australian', u'terror', u'fear']
[u'kindi', u'teacher', u'strike']
[u'kindi', u'teacher', u'protest', u'melbourn', u'ralli']
[u'leed', u'reject', u'bid', u'smith']
[u'lee', u'resum', u'testimoni', u'falconio', u'case']
[u'leicest', u'citi', u'say', u'trio', u'rape', u'test', u'negat']
[u'lewandowski', u'dead', u'home']
[u'lockyer', u'origin']
[u'guilti', u'sexual', u'assault']
[u'critic', u'condit', u'explos']
[u'kill', u'road', u'crash']
[u'suffer', u'burn', u'caravan']
[u'mayor', u'welcom', u'campaign', u'cubbi', u'station']
[u'media', u'ban', u'redfern', u'inquiri']
[u'mental', u'health', u'plan', u'put', u'focus', u'communiti', u'support']
[u'milit', u'kill', u'nablus', u'clash']
[u'minist', u'manufactur', u'support']
[u'minist', u'look', u'tillegerri', u'polic', u'number']
[u'mitsubishi', u'worker', u'face', u'uncertainti']
[u'rain', u'forecast', u'western', u'victoria']
[u'welcom', u'export', u'market', u'fund', u'pork']
[u'murder', u'hitchhik', u'claim', u'challeng', u'inquest']
[u'nake', u'news', u'break', u'languag', u'barrier']
[u'netbal', u'crowd']
[u'network', u'establish', u'combat', u'ghost', u'net', u'problem']
[u'opposit', u'leader', u'appoint']
[u'plan', u'submit', u'riverland', u'fruit']
[u'research', u'centr', u'benefit', u'rural', u'patient']
[u'offend', u'treatment', u'near', u'complet']
[u'tourism', u'outlook', u'plan', u'kakadu']
[u'nowingi', u'name', u'toxic', u'dump']
[u'seek', u'drought', u'relief', u'chang']
[u'consid', u'prosecut', u'ranger', u'water']
[u'coupl', u'star', u'toni', u'randal', u'die']
[u'opposit', u'criticis', u'forens', u'centr', u'test']
[u'opposit', u'question', u'budget', u'fund', u'island']
[u'pair', u'charg', u'babi', u'harm']
[u'panel', u'find', u'link', u'vaccin', u'autism']
[u'patient', u'mount', u'gambier', u'hospit', u'risk', u'report']
[u'patrick', u'corp', u'boost', u'half', u'year', u'profit']
[u'petrol', u'price', u'hike', u'make', u'attract', u'racv']
[u'bull', u'owner', u'slip', u'registr', u'loophol']
[u'deni', u'influenc', u'literaci', u'plan']
[u'stand', u'oversea', u'trip']
[u'drop', u'constitut', u'chang', u'plan']
[u'review', u'post']
[u'polic', u'point', u'finger', u'jaguar']
[u'polic', u'probe', u'esper', u'robberi']
[u'politician', u'bristl', u'mental', u'health', u'slur']
[u'precious', u'cello', u'save', u'cabinet', u'fate']
[u'preschool', u'teacher', u'march', u'poor', u'condit']
[u'probe', u'say', u'rivalri', u'hamper', u'rescu']
[u'properti', u'council', u'back', u'civic', u'plan']
[u'protest', u'disappoint', u'toxic', u'wast', u'dump', u'meet']
[u'protest', u'hurl', u'petrol', u'bomb', u'embassi', u'iran']
[u'question', u'rais', u'crackdown', u'tenant']
[u'race', u'olymp', u'narrow']
[u'rain', u'fail', u'help', u'riverland', u'malle', u'farmer']
[u'rain', u'give', u'hope', u'western', u'grazier']
[u'ranger', u'water', u'contamin', u'report', u'send', u'lawyer']
[u'rare', u'finch', u'spot', u'south', u'west', u'properti']
[u'redfern', u'inquiri', u'hear', u'drug', u'problem']
[u'wine', u'oversuppli', u'bring', u'hangov']
[u'research', u'confirm', u'univers', u'expand', u'rapid']
[u'resid', u'urg', u'input', u'rat', u'propos']
[u'review', u'mental', u'health', u'unit', u'welcom']
[u'warn', u'danger', u'threat']
[u'second', u'group', u'claim', u'respons', u'salim', u'death']
[u'sexual', u'assault', u'victim', u'servic', u'threat']
[u'shoalhaven', u'popul', u'expand']
[u'smoke', u'protect', u'beach']
[u'sonia', u'gandhi', u'turn', u'post']
[u'southern', u'queensland', u'win', u'stockhors', u'event']
[u'speed', u'head', u'home', u'zimbabw', u'snub']
[u'lankan', u'threaten', u'legal', u'action']
[u'streaki', u'farmer', u'enjoy', u'downpour']
[u'sugar', u'price', u'hit', u'profit']
[u'support', u'plan', u'jail', u'supplier', u'glue']
[u'surgeon', u'letter', u'highlight', u'hospit', u'wait', u'list']
[u'swear', u'featur', u'prompt', u'beatti', u'apolog']
[u'sydney', u'olymp', u'target', u'terrorist', u'court', u'tell']
[u'task', u'forc', u'investig', u'shoot']
[u'oncologist', u'criticis', u'minist', u'wait']
[u'temporari', u'solut', u'nurs', u'home', u'disput']
[u'texa', u'execut', u'mental']
[u'thai', u'debut', u'cann', u'competit', u'bewild', u'critic']
[u'charg', u'iraq', u'abus', u'enter', u'plea']
[u'toowoomba', u'financi', u'institut', u'win', u'nation', u'award']
[u'trust', u'begin', u'coastal', u'safeti', u'campaign']
[u'dead', u'highway', u'crash']
[u'tyson', u'train', u'comeback', u'aussi', u'puncher']
[u'open', u'world', u'stem', u'cell', u'bank']
[u'parliament', u'suspend', u'object', u'hit', u'blair']
[u'underdon', u'henin', u'hardenn', u'confirm', u'starter']
[u'union', u'meet', u'fairfax', u'loss']
[u'union', u'worker', u'react', u'angrili', u'deputi', u'wage']
[u'uniqu', u'geolog', u'format', u'threat']
[u'confid', u'despit', u'star', u'stay', u'home']
[u'guard', u'confess', u'iraqi', u'abus']
[u'guard', u'jail', u'iraqi', u'abus']
[u'guard', u'plead', u'guilti', u'iraq', u'abus']
[u'sadr', u'loyalist', u'clash', u'near', u'karbala', u'shrine']
[u'vanston', u'visit', u'indigen', u'communiti']
[u'vcat', u'presid', u'visit', u'bendigo']
[u'wag', u'growth', u'slow', u'despit', u'predict']
[u'plan', u'beach', u'smoke']
[u'western', u'power', u'investig', u'power', u'surg']
[u'woman', u'die', u'overnight', u'accid']
[u'world', u'bank', u'chief', u'deni', u'corrupt', u'claim']
[u'aust', u'seri', u'lose', u'test', u'status']
[u'year', u'woman', u'die', u'everest', u'descent']
[u'job', u'mitsubishi', u'shutdown']
[u'adelaid', u'netbal', u'leagu', u'record']
[u'alcohol', u'concern', u'spark', u'communiti', u'polic']
[u'chief', u'work', u'faction', u'woe']
[u'applic', u'need', u'drag', u'race', u'quirindi']
[u'associ', u'warn', u'region', u'airlin', u'futur']
[u'atsic', u'rais', u'budget', u'doubt']
[u'aussi', u'taylor', u'share', u'lpga', u'lead']
[u'aussi', u'yachtsman', u'win', u'bronz', u'turkey']
[u'aust', u'move', u'outlaw', u'trade']
[u'australia', u'england', u'pressur', u'bring', u'doosra']
[u'australian', u'happier', u'ident']
[u'australia', u'reopen', u'libya', u'embassi']
[u'babi', u'steal']
[u'beckham', u'stay', u'madrid']
[u'billiton', u'blast', u'halt', u'product']
[u'blue', u'widen', u'gasnier', u'messag', u'probe']
[u'bomb', u'rock', u'istanbul', u'mcdonald', u'park']
[u'die', u'continu', u'rafah', u'unrest']
[u'brazil', u'aust', u'discuss', u'ethanol', u'technolog', u'share']
[u'british', u'envoy', u'injur', u'bangladesh', u'mosqu']
[u'brogden', u'demand', u'answer', u'miss', u'hospit']
[u'bronco', u'point']
[u'brown', u'push', u'habib', u'hick', u'visit']
[u'bullet', u'threat', u'wont', u'stop', u'corrupt', u'probe', u'polic']
[u'bush', u'tri', u'calm', u'nervous', u'republican']
[u'better', u'union', u'behaviour', u'industri']
[u'call', u'dalkeith', u'park', u'facil', u'respit']
[u'oust', u'zimbabw', u'maker']
[u'campaign', u'singl', u'educ', u'site', u'underway']
[u'camper', u'come', u'forward', u'nation', u'park', u'blaze']
[u'cater', u'compani', u'take', u'halliburton', u'iraq']
[u'cathol', u'educ', u'offic', u'lament', u'teacher']
[u'chile', u'defeat', u'germani', u'claim', u'place', u'world', u'team']
[u'clean', u'begin', u'effluent', u'pond']
[u'commiss', u'certifi', u'meatwork', u'employ', u'agreement']
[u'concern', u'job', u'mitsubishi', u'closur']
[u'confirm', u'second', u'voic', u'gasnier', u'phone', u'messag']
[u'council', u'make', u'caretak', u'mode', u'prepar']
[u'council', u'urg', u'join', u'boundari', u'chang', u'campaign']
[u'council', u'debat', u'altern', u'vote']
[u'court', u'hear', u'roch', u'tri', u'warn', u'embassi', u'asio']
[u'crow', u'deni', u'ayr', u'ultimatum']
[u'crude', u'price', u'fuel', u'petrol', u'price', u'rise']
[u'decis', u'loom', u'crop', u'condit']
[u'defenc', u'get', u'million', u'train', u'facil']
[u'dentist', u'shortag', u'reach', u'crisi', u'point']
[u'deputi', u'challeng', u'state', u'spend', u'rail']
[u'doyl', u'call', u'anti', u'corrupt', u'commiss']
[u'dragon', u'romp', u'eel']
[u'produc', u'welcom', u'propos', u'levi']
[u'elect', u'candid', u'leav', u'late']
[u'call', u'belli', u'putter']
[u'emerald', u'beach', u'resid', u'challeng', u'restaur']
[u'commission', u'worri', u'isra', u'gaza', u'oper']
[u'eurobodalla', u'elect', u'date']
[u'euro', u'stadium', u'cost', u'doubl', u'estim']
[u'evid', u'delay', u'falconio', u'case']
[u'priest', u'plead', u'guilti', u'charg']
[u'extens', u'fail', u'forestri', u'review']
[u'famili', u'miss', u'british', u'tourist', u'return']
[u'farmer', u'urg', u'submit', u'toxic', u'wast', u'dump', u'compo']
[u'feder', u'govern', u'launch', u'region', u'marin', u'plan']
[u'feder', u'aim', u'conquer', u'french', u'open', u'jinx']
[u'govt', u'predict', u'mitsubishi', u'loss']
[u'risk', u'prompt', u'bonfir']
[u'food', u'safeti', u'group', u'defend', u'introduct']
[u'priest', u'make', u'court', u'appear', u'assault']
[u'union', u'boss', u'fin', u'rampag']
[u'pick', u'kelsey', u'grammer', u'sketch', u'comedi']
[u'french', u'fee', u'strand', u'refuge']
[u'futur', u'region', u'airlin', u'servic']
[u'gasnier', u'scandal', u'prompt', u'bond', u'rethink']
[u'gerrard', u'say', u'liverpool', u'need', u'trio', u'sign']
[u'govt', u'criticis', u'patient', u'accommod']
[u'govt', u'provid', u'cheaper', u'cancer', u'treatment']
[u'govt', u'move', u'allay', u'toxic', u'wast', u'concern']
[u'govt', u'offer', u'mitsubishi', u'worker', u'packag']
[u'govt', u'investig', u'powerlin', u'mainten', u'law']
[u'govt', u'talk', u'consult', u'state', u'appl']
[u'group', u'form', u'oppos', u'northern', u'foreshor', u'groyn']
[u'health', u'confer', u'address', u'chronic', u'ill']
[u'health', u'worker', u'drive', u'recruit']
[u'hewitt', u'learn', u'love', u'clay']
[u'hop', u'crisi', u'accommod', u'centr', u'open', u'soon']
[u'hospit', u'benefit', u'health', u'spend']
[u'hotel', u'blaze', u'disrupt', u'patron', u'lunch']
[u'incat', u'upbeat', u'latest', u'fast', u'ferri']
[u'incom', u'indian', u'promis', u'stabil']
[u'indonesia', u'fish', u'crew', u'rescu', u'australian', u'coast']
[u'indonesia', u'probe', u'bashir', u'near']
[u'injur', u'surviv', u'roadsid', u'ordeal']
[u'intern', u'diamond', u'thiev', u'bust', u'shanghai']
[u'investig', u'start', u'latest', u'sight']
[u'iran', u'condemn', u'expel', u'report']
[u'iraqi', u'kill', u'militia', u'clash']
[u'irukandji', u'sting', u'prompt', u'renew', u'warn']
[u'isra', u'govt', u'welcom', u'barghouti', u'verdict']
[u'isra', u'troop', u'begin', u'partial', u'pull', u'rafah']
[u'itali', u'bolster', u'iraq', u'troop', u'commit']
[u'jellyfish', u'antivenen', u'carri', u'ambul']
[u'jetstar', u'exec', u'rule', u'earli', u'brisban', u'flight']
[u'judg', u'join', u'call', u'corrupt', u'commiss']
[u'juri', u'consid', u'tare', u'murder', u'verdict']
[u'kiwi', u'perk', u'grab', u'coloni', u'lead', u'senden']
[u'kyoto', u'mitsubishi', u'reviv', u'plan']
[u'largest', u'piec', u'babi', u'boomer']
[u'lawyer', u'say', u'plane', u'incid', u'mistak']
[u'train', u'surgeri']
[u'lee', u'media', u'deal', u'reach', u'stalem']
[u'lennon', u'talk', u'heart', u'gold', u'budget']
[u'local', u'aborigin', u'work', u'hunter', u'coal']
[u'local', u'concern', u'lead', u'real', u'estat', u'law']
[u'local', u'govt', u'issu', u'microscop', u'annual']
[u'local', u'market', u'stronger', u'price', u'dip']
[u'long', u'line', u'fish', u'claim', u'race', u'albatross']
[u'lukewarm', u'respons', u'propos', u'pupil', u'free']
[u'major', u'upgrad', u'plan', u'sanctuari', u'hospit']
[u'jail', u'sell', u'drug']
[u'map', u'centr', u'stay', u'bendigo']
[u'marin', u'paint', u'trial', u'exhibit']
[u'meet', u'target', u'hospit', u'workplac', u'violenc']
[u'meet', u'focus', u'emerg', u'depart', u'rage']
[u'memori', u'spec', u'develop', u'germani']
[u'meteor', u'face', u'tough', u'weekend', u'game', u'coach']
[u'mildura', u'council', u'fight', u'toxic', u'wast', u'site', u'decis']
[u'mill', u'smith', u'leed', u'face']
[u'minichiello', u'dump', u'fin']
[u'minichiello', u'dump', u'blue', u'squad']
[u'mine', u'invest', u'reach', u'seven', u'year', u'high']
[u'minist', u'buy', u'rail', u'line', u'closur', u'debat']
[u'minist', u'close', u'make', u'decis', u'abattoir', u'debt']
[u'minist', u'leav', u'dark', u'patient', u'death']
[u'minist', u'say', u'park', u'prefer', u'site']
[u'minist', u'visa', u'chang']
[u'mitsubishi', u'boss', u'confirm', u'lonsdal', u'closur']
[u'mitsubishi', u'japan', u'announc', u'restructur', u'plan']
[u'mix', u'review', u'spam']
[u'molik', u'vienna', u'semi']
[u'injuri', u'miseri', u'wanganeen']
[u'support', u'habib', u'abus', u'claim']
[u'nasa', u'loan', u'shuttl', u'columbia', u'piec', u'research']
[u'laser', u'cane', u'offer', u'vision', u'impair', u'wide']
[u'crimin', u'charg', u'lay', u'motorcycl', u'death']
[u'prison', u'abus', u'iraq']
[u'north', u'coast', u'name', u'locat', u'skill', u'migrant']
[u'deni', u'hospit', u'stretch']
[u'opec', u'pressur', u'boost', u'suppli']
[u'oper', u'vampir', u'expos', u'bloodi']
[u'oppn', u'seek', u'answer', u'patient', u'death']
[u'opposit', u'commit', u'blackspot', u'road', u'fund']
[u'optus', u'look', u'secur', u'uecomm']
[u'orang', u'council', u'urg', u'water', u'restrict', u'town']
[u'organis', u'urg', u'appli', u'risk', u'children']
[u'pair', u'charg', u'blair', u'flour', u'bomb', u'attack']
[u'palac', u'amus', u'riverina', u'king', u'documentari']
[u'pantani', u'mother', u'highlight', u'son', u'despair']
[u'passport', u'surrend', u'death']
[u'patient', u'richardson', u'put', u'zealand']
[u'picasso', u'paint', u'go', u'miss', u'pari', u'museum']
[u'pie', u'focus', u'build', u'confid']
[u'pie', u'snap', u'lose', u'streak']
[u'plan', u'underway', u'power', u'station', u'accommod']
[u'player', u'interview', u'gasnier', u'messag', u'probe']
[u'poach', u'threaten', u'white', u'rhino']
[u'polic', u'corrupt', u'link', u'underworld', u'slay']
[u'polic', u'identifi', u'roadsid', u'victim']
[u'pont', u'pessimist', u'zimbabw', u'breakthrough']
[u'posit', u'negat', u'flow', u'field']
[u'postpon', u'dalrympl', u'elect', u'ahead']
[u'pregnant', u'woman', u'misdiagnosi', u'lead', u'hospit']
[u'premier', u'criticis', u'forestri', u'profan']
[u'protest', u'closur', u'matern', u'servic']
[u'push', u'maintain', u'tropic', u'darwin']
[u'buy', u'singapor', u'zurich']
[u'rebuild', u'longreach', u'club', u'readi', u'open']
[u'region', u'council', u'elect', u'defer']
[u'region', u'unemploy', u'rate', u'drop']
[u'regul', u'marin', u'plan', u'undetermin']
[u'resid', u'doubt', u'immedi', u'start', u'railway']
[u'resid', u'remind', u'import', u'smoke', u'detector']
[u'reuter', u'slam', u'militari', u'death', u'cameraman']
[u'rilli', u'releas', u'razorback']
[u'samuel', u'bolster', u'real', u'defenc']
[u'santini', u'confid', u'franc', u'strike', u'forc', u'despit']
[u'saudi', u'secur', u'clash', u'claim', u'live']
[u'schu', u'webber', u'monaco']
[u'sella', u'dedic', u'giro', u'pantani']
[u'charg', u'drop', u'leicest', u'player']
[u'shrek', u'earn', u'record']
[u'sick', u'escape', u'jail', u'year', u'later']
[u'sothebi', u'sell', u'belong', u'johnni', u'cash']
[u'spanish', u'coach', u'saez', u'name', u'euro', u'squad']
[u'spanish', u'journalist', u'hold', u'sadr', u'link', u'rebel', u'group']
[u'surveil', u'plane', u'make', u'maiden', u'flight']
[u'survey', u'highlight', u'german', u'drive']
[u'swede', u'urg', u'pull', u'mercuri', u'mouth', u'dead']
[u'swift', u'thunderbird', u'kestrel', u'notch', u'win']
[u'tafe', u'releas', u'restructur', u'propos']
[u'taiwan', u'launch', u'second', u'satellit']
[u'talk', u'toilet', u'inventor', u'flush', u'success']
[u'tare', u'guilti', u'murder', u'wife']
[u'teenag', u'die', u'polic', u'pursuit']
[u'teenag', u'kill', u'motorcycl', u'accid']
[u'teen', u'jail', u'king', u'kidnap']
[u'thousand', u'unknow', u'meat', u'link']
[u'arrest', u'park', u'theft', u'tourist', u'sit']
[u'toothfish', u'boat', u'serv', u'train', u'vessel']
[u'tourist', u'accommod', u'tout', u'cabramurra']
[u'travel', u'visa', u'process', u'question']
[u'truck', u'compani', u'urg', u'pass', u'fuel', u'cost']
[u'truck', u'recal', u'latest', u'blow', u'mitsubishi']
[u'turkey', u'outclass', u'socceroo']
[u'injur', u'penola', u'crash']
[u'arrest', u'elder', u'coupl', u'bash']
[u'typhoon', u'loom', u'japan', u'coast']
[u'union', u'demand', u'answer', u'blast']
[u'unit', u'line', u'heinz', u'boost', u'defenc']
[u'upgrad', u'drive', u'growth']
[u'forc', u'start', u'ghraib', u'releas']
[u'govt', u'anonym', u'sperm', u'doner']
[u'pay', u'chalabi', u'parti', u'report', u'reveal']
[u'paper', u'publish', u'iraq', u'abus', u'photo']
[u'promis', u'investig', u'detaine', u'abus', u'claim']
[u'polic', u'corrupt', u'worst', u'judg', u'say']
[u'villa', u'sign', u'danish', u'defend', u'laursen']
[u'call', u'safeti', u'talk', u'billiton']
[u'wage', u'rise', u'extra', u'budget', u'fund', u'say']
[u'wall', u'stock', u'price', u'start', u'point']
[u'william', u'sister', u'pari', u'collis', u'cours']
[u'wilson', u'name', u'outsid', u'super', u'final']
[u'women', u'golf', u'unifi', u'rank']
[u'zimbabw', u'australia', u'meet', u'discuss', u'crisi']
[u'zimbabw', u'threat', u'cancel', u'test', u'seri']
[u'zimbabw', u'test', u'seri', u'cancel']
[u'truck', u'plung', u'northern', u'india', u'gorg']
[u'abducte', u'children', u'free', u'north', u'korea']
[u'criticis', u'food', u'freight', u'price', u'rise']
[u'advertis', u'emerg', u'manag']
[u'actress', u'helen', u'hunt', u'give', u'birth', u'daughter']
[u'aid', u'wound', u'iraq', u'suicid', u'bomb']
[u'challeng', u'govt', u'releas', u'guantanamo', u'detail']
[u'ambul', u'servic', u'adequ', u'staff']
[u'anglican', u'abus', u'report', u'public']
[u'giro', u'petacchi', u'mcewen']
[u'arab', u'leagu', u'summit', u'open', u'tuni']
[u'arab', u'summit', u'tackl', u'middl', u'east', u'crisi']
[u'asic', u'ban', u'pair', u'give', u'financi', u'advic']
[u'australia', u'stymi', u'zimbabw', u'player']
[u'appoint', u'director', u'general']
[u'belgium', u'maliss', u'beat', u'melzer', u'reach', u'poelten']
[u'belli', u'putter', u'safe', u'say']
[u'crowd', u'expect', u'flock', u'sheep']
[u'bomb', u'explod', u'belfast']
[u'britain', u'probe', u'iraqi', u'civilian', u'kill']
[u'brit', u'pigeon', u'mass', u'destruct', u'reveal']
[u'brown', u'push', u'list', u'devil', u'threaten']
[u'brumbi', u'favourit', u'crusad']
[u'brumbi', u'second', u'super', u'titl']
[u'busi', u'urg', u'worker', u'compens', u'plan']
[u'canadian', u'court', u'uphold', u'monsanto', u'patent']
[u'caucaunibuca', u'join', u'french', u'club', u'report']
[u'cejka', u'shrug', u'injuri', u'lead']
[u'celtic', u'aim', u'doubl', u'par']
[u'chechen', u'voter', u'poll', u'august']
[u'coalit', u'militia', u'withdraw', u'karbala']
[u'comb', u'get', u'laugh', u'raisin', u'doubter']
[u'demon', u'withstand', u'roo', u'fightback']
[u'disney', u'launch', u'digit', u'channel', u'britain']
[u'doubl', u'seal', u'world', u'team', u'final', u'berth']
[u'jone', u'nasdaq', u'close', u'higher']
[u'ekland', u'join', u'alter', u'theron', u'cann', u'carpet']
[u'england', u'strauss', u'elat', u'debut', u'test']
[u'espanyol', u'fight', u'releg', u'bird']
[u'fatal', u'blast', u'suspend', u'billiton', u'work']
[u'feder', u'face', u'tough', u'week', u'french', u'open']
[u'fifa', u'pardon', u'cameroon', u'lift', u'point', u'sanction']
[u'finn', u'releas', u'follow', u'album']
[u'fishermen', u'hold', u'talk', u'marin', u'protect', u'area']
[u'kill', u'baghdad', u'blast']
[u'franc', u'roll', u'australia', u'volleybal', u'champ']
[u'freo', u'humbl', u'underman', u'lion']
[u'futur', u'plant', u'doubt', u'fatal', u'blast']
[u'gallop', u'furi', u'blue', u'night', u'shame']
[u'geelong', u'essendon']
[u'good', u'thief', u'apologis', u'chariti', u'break']
[u'govt', u'ask', u'examin', u'guantanamo', u'abus', u'claim']
[u'govt', u'defend', u'adopt', u'cost']
[u'govt', u'pledg', u'homeless', u'fund']
[u'govt', u'tougher', u'firework', u'restrict']
[u'greenpeac', u'stag', u'nation', u'protest']
[u'height', u'roo', u'laidley']
[u'hospit', u'get', u'promis', u'secur', u'guard']
[u'india', u'swear', u'sikh']
[u'india', u'swear', u'sikh']
[u'ingal', u'take', u'race', u'darwin']
[u'iran', u'threaten', u'australia', u'sanction']
[u'israel', u'vow', u'continu', u'rafah', u'oper']
[u'late', u'tri', u'storm', u'eclips', u'raider']
[u'leadership', u'program', u'refin']
[u'leader', u'portrait', u'vanish', u'turkmen', u'street']
[u'leed', u'turn', u'galatasari', u'offer', u'viduka']
[u'leonard', u'lewi', u'lead', u'coloni']
[u'bulk', u'bill', u'hurt', u'hospit']
[u'serious', u'injur', u'baysid', u'attack']
[u'shoot', u'dead', u'polic']
[u'mediat', u'centr', u'receiv', u'extra', u'fund']
[u'mitsubishi']
[u'mitsubishi', u'employe', u'hunt', u'job']
[u'molik', u'vienna', u'final']
[u'morgan', u'half', u'lpga', u'titl']
[u'korea', u'expect', u'koizumi', u'visit']
[u'north', u'korea', u'japan', u'hold', u'landmark', u'talk']
[u'word', u'outcom', u'japan', u'north', u'korea', u'talk']
[u'criticis', u'increas', u'adopt', u'fee']
[u'plan', u'review', u'origin', u'fiasco']
[u'nude', u'roll', u'record']
[u'price', u'saudi', u'promis', u'suppli', u'boost']
[u'olymp', u'threat', u'soccer', u'lift', u'blatter', u'sign']
[u'ombudsman', u'target', u'council', u'complaint']
[u'origin', u'scandal', u'invok', u'bulldog', u'fine']
[u'panther', u'notch', u'gritti', u'cowboy']
[u'pension', u'happi', u'ticket', u'scheme']
[u'polic', u'alarm', u'rise', u'road', u'toll']
[u'polic', u'conduct', u'raid', u'gang', u'inquiri']
[u'polic', u'investig', u'werribe', u'school', u'blaze']
[u'poll', u'show', u'support', u'wan', u'iraq']
[u'port', u'smash', u'toothless', u'tiger']
[u'probe', u'airport', u'secur', u'breach', u'begin']
[u'lead', u'environ']
[u'raider', u'pair', u'clash', u'outsid', u'casino']
[u'raphael', u'sketch', u'london', u'cupboard']
[u'report', u'free', u'spain', u'complet', u'iraq', u'pullout']
[u'rescu', u'captain', u'face', u'illeg', u'fish', u'charg']
[u'royal', u'wed', u'fever', u'hit', u'spain']
[u'russia', u'ratifi', u'kyoto', u'treati']
[u'sack', u'rebel', u'take', u'case']
[u'schu', u'continu', u'form', u'monaco', u'practic']
[u'scientist', u'impati', u'slow', u'quak']
[u'scientist', u'studi', u'horticultur']
[u'second', u'mitsubishi', u'plant', u'safe']
[u'secur', u'breach', u'delay', u'brisban', u'flight']
[u'seven', u'year', u'chariti', u'adventur', u'end', u'hobart']
[u'spain', u'arrest', u'moroccan', u'train', u'bomb', u'probe']
[u'student', u'welcom', u'decis']
[u'studi', u'examin', u'drought', u'impact', u'farm']
[u'suicid', u'blast', u'checkpoint', u'injur']
[u'sydney', u'woman', u'maul', u'dog']
[u'test', u'player', u'head', u'home', u'zimbabw']
[u'thai', u'liverpool', u'bidder', u'morgan', u'withdraw']
[u'bangladesh', u'shrine', u'blast']
[u'tiger', u'bulldog']
[u'trulli', u'qualifi', u'fastest', u'monaco']
[u'worker', u'accid']
[u'charg', u'cleveland', u'bash']
[u'experi', u'gymnast', u'athen', u'provision']
[u'hold', u'contractor', u'behead']
[u'sit', u'consid', u'teach', u'hospit']
[u'ugandan', u'rebel', u'attack', u'kill', u'civilian']
[u'underdog', u'millwal', u'shock', u'cahil']
[u'union', u'question', u'mitsubishi', u'assist', u'packag']
[u'arrest', u'sadr', u'support', u'northern', u'iraq']
[u'disciplin', u'whistleblow', u'soldier']
[u'extend', u'custodi', u'death', u'investig']
[u'extend', u'almond', u'salmonella', u'warn']
[u'onlin', u'sale', u'climb']
[u'probe', u'chalabi', u'iran', u'link']
[u'soldier', u'die', u'iraq', u'bomb', u'attack']
[u'increas', u'diseas', u'research', u'fund']
[u'worri', u'mitsubishi', u'fallout']
[u'webber', u'face', u'nervous', u'wait', u'monaco']
[u'wed', u'bell', u'spain', u'royal']
[u'windi', u'squad', u'nation', u'seri']
[u'yass', u'arrest', u'bank', u'robberi']
[u'zimbabw', u'retain', u'squad', u'crush', u'lanka']
[u'fear', u'dead', u'bangladeshi', u'boat', u'sink']
[u'ventura', u'win', u'titl', u'appear']
[u'govt', u'address', u'walk', u'fame', u'singl', u'plaqu']
[u'anthoni', u'play', u'elect', u'specul']
[u'asbesto', u'concern', u'stop', u'construct', u'site', u'work']
[u'atsic', u'communiti', u'meet', u'help', u'plan', u'futur']
[u'australia', u'beat', u'world', u'team', u'final']
[u'aust', u'volleybal', u'algeria']
[u'autopsi', u'confirm', u'polic', u'kill']
[u'beagl', u'doom', u'start']
[u'beatti', u'prais', u'gold', u'coast', u'marina']
[u'beckham', u'stick', u'neck', u'tattoo']
[u'blue', u'turmoil', u'ahead', u'origin']
[u'brisban', u'crowd', u'flock', u'paniyiri', u'festiv']
[u'brumbi', u'star', u'samo', u'eye', u'fiji', u'pacif']
[u'bulldog', u'overpow', u'carlton']
[u'busi', u'sign', u'rail', u'contract']
[u'cancer', u'council', u'call', u'task', u'forc']
[u'cann', u'give', u'moor', u'anti', u'bush', u'platform']
[u'celtic', u'scottish']
[u'clown']
[u'colleagu', u'defend', u'draper', u'studi', u'tour']
[u'darwin', u'host', u'croc', u'confer']
[u'degener', u'win', u'daytim', u'emmi', u'talk']
[u'devonport', u'prompt', u'warn']
[u'doctor', u'alleg', u'threat', u'asbesto', u'concern']
[u'draper', u'repay', u'cost', u'oversea', u'trip']
[u'eagl', u'lift', u'steinhauer', u'share', u'lpga', u'lead']
[u'engin', u'advertis', u'aircraft', u'safeti', u'concern']
[u'fatal', u'shoot', u'trigger', u'stun']
[u'fellow', u'rooki', u'netbal', u'squad']
[u'ferri', u'capsiz', u'bangladesh', u'kill']
[u'kill', u'pari', u'airport', u'collaps']
[u'flotilla', u'hope', u'sail', u'nauru']
[u'franc', u'havret', u'take', u'shoot', u'lead']
[u'garbag', u'collector', u'clean', u'trash', u'addict']
[u'german', u'nation', u'shoot', u'dead', u'riyadh']
[u'germani', u'elect', u'presid']
[u'gould', u'quit', u'origin', u'coach']
[u'govt', u'see', u'south', u'aust', u'trade', u'deal', u'boost']
[u'govt', u'warn', u'indonesian', u'terror', u'threat']
[u'great', u'lake', u'plan', u'target', u'rainbow', u'trout', u'fisheri']
[u'green', u'run', u'scorch']
[u'greenpeac', u'delay', u'shipment']
[u'hewitt', u'learn', u'love', u'clay']
[u'honchar', u'beat', u'mcgee', u'giro', u'stage']
[u'independ', u'review', u'probe', u'pilbara', u'work', u'safeti']
[u'islam', u'group', u'say', u'baghdad', u'bomb', u'work']
[u'sharehold', u'want', u'dump', u'chief', u'exec', u'report']
[u'kashmir', u'attack', u'leav', u'soldier', u'dead']
[u'kashmir', u'blast', u'kill', u'peopl']
[u'kelli', u'domin', u'darwin']
[u'langer', u'question', u'seri']
[u'hospitalis', u'bike', u'accid']
[u'injur', u'water', u'wheel', u'accid']
[u'unit', u'silenc', u'brave', u'lion']
[u'mason', u'adhd', u'bulldog']
[u'mccullum', u'steadi', u'zealand']
[u'media', u'harm', u'famili', u'say', u'pope']
[u'melbourn', u'drug', u'overdos', u'spark', u'health', u'warn']
[u'minchin', u'talk', u'navi', u'contract']
[u'minist', u'condemn', u'teacher', u'strike', u'threat']
[u'molik', u'fall', u'final', u'hurdl', u'vienna']
[u'moor', u'win', u'cann', u'prize']
[u'motorway', u'plan', u'drive', u'protest']
[u'say', u'mine', u'review', u'examin', u'cultur', u'fear']
[u'nation', u'park', u'blaze', u'control']
[u'program', u'tackl', u'youth', u'homeless']
[u'indian', u'draw', u'pakistani', u'prais']
[u'iraqi', u'abus', u'detail', u'releas']
[u'night', u'violenc', u'follow', u'crusad', u'loss']
[u'norwegian', u'newspap', u'report', u'strike']
[u'consid', u'neighbour', u'water', u'restrict']
[u'tighten', u'bomb', u'law']
[u'korea', u'suspect', u'suppli', u'uranium', u'libya']
[u'nucifora', u'prais', u'brumbi', u'fli', u'start']
[u'opec', u'opt', u'immedi', u'boost', u'output']
[u'opec', u'talk', u'decis']
[u'miss', u'bangladesh', u'ferri', u'mishap']
[u'pakistan', u'hail', u'return', u'commonwealth']
[u'pakistan', u'rejoin', u'commonwealth', u'fold']
[u'palestinian', u'storm', u'convoy', u'isra', u'raid']
[u'parti', u'meet', u'power', u'disput']
[u'peru', u'block', u'british', u'journalist', u'leav']
[u'polic', u'question', u'restaur', u'blaze']
[u'raider', u'fine', u'pair', u'brawl']
[u'raider', u'meet', u'casino', u'fight']
[u'refuge', u'status', u'nauru', u'afghan', u'asylum', u'seeker']
[u'religion', u'unit', u'help', u'iraqi', u'children']
[u'report', u'fatal', u'blast', u'nablus']
[u'rise', u'petrol', u'revenu', u'fuel', u'boost', u'road']
[u'rumsfeld', u'ban', u'camera', u'phone', u'iraq', u'report']
[u'saint', u'juggernaut', u'roll', u'eagl']
[u'sar', u'vaccin', u'test', u'human']
[u'saudi', u'arabia', u'stand', u'firm', u'opec', u'propos']
[u'scientist', u'mull', u'crocodil', u'futur']
[u'shark', u'hold', u'surg', u'man']
[u'shave', u'optimist', u'futur', u'liber', u'parti']
[u'ship', u'carri', u'car', u'sink']
[u'sizzl', u'lift', u'campbel', u'share', u'lead']
[u'somali', u'warlord', u'step', u'peac']
[u'streak', u'worri', u'impact', u'aussi', u'tour']
[u'swan', u'beat', u'hawk', u'thriller']
[u'swan', u'control', u'hawk']
[u'defend', u'environ', u'fund']
[u'task', u'forc', u'begin', u'hunt', u'mitsubishi', u'replac']
[u'think', u'tank', u'warn', u'kyoto', u'sanction']
[u'indonesian', u'terror', u'suspect', u'acquit']
[u'command', u'present', u'abus']
[u'deni', u'raid', u'wed', u'parti']
[u'forc', u'militia', u'battl', u'kufa']
[u'forc', u'roll', u'karbala']
[u'vlandri', u'clinch', u'polten', u'titl']
[u'volcanologist', u'pink', u'dinosaur', u'remot', u'webcam']
[u'farmer', u'welcom', u'rain']
[u'warrior', u'battl', u'cellar', u'dweller']
[u'webber', u'hop', u'monaco', u'point']
[u'whisper', u'afoot', u'british', u'french', u'communic']
[u'back', u'plan', u'deal', u'weighti', u'problem']
[u'william', u'satisfi', u'port']
[u'woman', u'bash', u'townsvill', u'home', u'invas']
[u'miss', u'bangladesh', u'ferri', u'sink']
[u'administr', u'appoint', u'manag', u'prime', u'land']
[u'afghan', u'refuge', u'grant', u'perman', u'resid']
[u'airport', u'collaps', u'spark', u'homicid', u'investig']
[u'ord', u'lift', u'late', u'trade']
[u'expert', u'review', u'parliamentari', u'collect']
[u'australia', u'qualifi', u'paddler', u'athen']
[u'auto', u'long', u'line', u'fish', u'spotlight']
[u'bellingen', u'council', u'budget', u'surplus']
[u'bendigo', u'drug', u'crackdown', u'net', u'peopl']
[u'billiton', u'pilbara', u'oper', u'safeti']
[u'birthday', u'flesch', u'celebr', u'victori']
[u'boat', u'awash', u'success']
[u'bottl', u'throttl', u'rule', u'compani', u'regul']
[u'offic', u'ogr', u'shrek', u'smash', u'record']
[u'die', u'quad', u'bike', u'accid']
[u'brisban', u'ship', u'set', u'sail', u'nauru', u'flotilla']
[u'brother', u'appear', u'court', u'bash']
[u'burgoyn', u'report', u'repriev', u'koschitzk']
[u'crash', u'kill', u'tunisia']
[u'bus', u'replac', u'train', u'safeti', u'concern']
[u'bushfir', u'victim', u'tell', u'inquest', u'narrow', u'escap']
[u'bushfir', u'wit', u'tell', u'appal', u'leadership']
[u'call', u'polic', u'station', u'georg']
[u'call', u'burn', u'reduc', u'risk', u'fire']
[u'canberra', u'student', u'experi', u'rural', u'medic', u'life']
[u'can', u'domest', u'violenc', u'cost']
[u'chalabi', u'deni', u'pass', u'secret', u'iran']
[u'channel', u'launch', u'falconio', u'case', u'appeal']
[u'clash', u'forc', u'iraqi', u'militia', u'continu']
[u'colli', u'hous', u'shortag', u'concern', u'busi']
[u'commission', u'prais', u'namadgi', u'contain']
[u'communiti', u'urg', u'celebr', u'palliat', u'care']
[u'compani', u'sign', u'nativ', u'titl', u'agreement', u'toomey']
[u'crime', u'get', u'cost']
[u'game', u'classif', u'review']
[u'concern', u'rais', u'over', u'cost', u'aborigin', u'communiti']
[u'council', u'oppos', u'water', u'price', u'increas']
[u'crocodil', u'committe', u'debat', u'safari', u'propos']
[u'crocodil', u'prowl', u'water', u'cabl', u'beach']
[u'dali', u'river', u'refus']
[u'darci', u'plead', u'guilti', u'abus', u'alleg']
[u'democrat', u'guantanamo', u'medic', u'examin']
[u'denmark', u'wind', u'farm', u'closer', u'realiti']
[u'diamond', u'forev', u'jaguar']
[u'dirti', u'spark', u'flap']
[u'downer', u'question', u'mukhla', u'interview']
[u'dozen', u'kill', u'sudanes', u'raid', u'wit']
[u'drink', u'drive', u'decreas', u'carnival']
[u'dump', u'consid', u'cross', u'floor']
[u'bite', u'fitzroy', u'brawl']
[u'partner', u'travel', u'payment', u'independ']
[u'fairfax', u'share', u'jump', u'forecast', u'earn']
[u'farmbi', u'train', u'receiv', u'million', u'fund']
[u'ferrero', u'doubt', u'french', u'open']
[u'ferri', u'capsiz', u'bangladesh', u'hundr', u'fear', u'dead']
[u'fight', u'rag', u'troop', u'sadr']
[u'flood', u'trap', u'chines']
[u'aust', u'worker', u'leav', u'indonesian']
[u'free', u'kick', u'sink', u'socceroo']
[u'french', u'hospit', u'prolaps', u'disc']
[u'french', u'polynesia', u'head', u'poll']
[u'garag', u'giant', u'open', u'door', u'owner']
[u'govt', u'carv', u'hospit']
[u'govt', u'grant', u'furnitur', u'manufactur', u'damag']
[u'govt', u'play', u'moreton', u'health', u'concern']
[u'govt', u'seek', u'habib', u'psych', u'report']
[u'govt', u'sign', u'intern', u'environment', u'treati']
[u'govt', u'consid', u'rat', u'waiver', u'extens']
[u'govt', u'tighten', u'rule', u'draper', u'junket', u'outrag']
[u'grape', u'grower', u'rais', u'money', u'wine', u'colleg']
[u'green', u'introduc']
[u'green', u'challeng', u'riverina', u'elector']
[u'grow', u'injuri', u'list', u'test', u'lion']
[u'handl', u'beach', u'whale', u'focus', u'train']
[u'hast', u'council', u'consid', u'effect']
[u'henin', u'hardenn', u'gambl', u'french', u'open', u'crown']
[u'high', u'profil', u'team', u'defeat', u'polic', u'union']
[u'hollingworth', u'learn', u'abus', u'author']
[u'home', u'invas', u'victim', u'remain', u'stabl', u'condit']
[u'howard', u'deni', u'link', u'mitsubishi', u'closur']
[u'hydrotherapi', u'studi', u'begin', u'month']
[u'icebreak', u'blame', u'antarct', u'pollut']
[u'immelman', u'close', u'birdi', u'victori']
[u'impact', u'john', u'diseas', u'reduc', u'despit']
[u'indigen', u'youth', u'produc', u'respons', u'drink']
[u'investig', u'appoint', u'probe', u'blue', u'misbehaviour']
[u'iran', u'name', u'conserv', u'state', u'broadcast', u'boss']
[u'iraqi', u'scientist', u'die', u'base', u'report']
[u'iraq', u'wed', u'video', u'rais', u'question', u'denial']
[u'isra', u'forc', u'leav', u'rafah', u'neighbourhood']
[u'isra', u'militari', u'partial', u'lift', u'rafah', u'sieg']
[u'isra', u'minist', u'compar', u'rafah', u'holocaust']
[u'japan', u'north', u'korea', u'talk', u'offer', u'fresh', u'hope']
[u'job', u'lose', u'tafe', u'restructur', u'claim']
[u'judg', u'tell', u'expect', u'tough', u'decis']
[u'kabul', u'rocket', u'attack', u'claim', u'peacekeep', u'casualti']
[u'kiwi', u'close', u'finish', u'england']
[u'kookaburra', u'blow', u'goal', u'lead']
[u'labor', u'accus', u'govt', u'jone', u'flint', u'cover']
[u'labor', u'vote', u'rig', u'report', u'head', u'nation']
[u'landhold', u'warn', u'protect', u'pet', u'wild']
[u'spanish', u'troop', u'head', u'home', u'iraq']
[u'lawyer', u'argu', u'falconio', u'suppress', u'order', u'mistak']
[u'lawyer', u'warn', u'falconio', u'court', u'close']
[u'lend', u'leas', u'eye', u'deal']
[u'liquid', u'pursu', u'norman', u'win', u'grower']
[u'liverpool', u'plan', u'announc', u'houllier', u'talk']
[u'locat', u'farmer', u'market']
[u'long', u'jail', u'refurbish', u'open']
[u'lyon', u'trick', u'franc']
[u'mackay', u'port', u'dredg', u'scrap']
[u'magnesium', u'compani', u'scout', u'smelter']
[u'malawi', u'polic', u'warn', u'shot', u'poll', u'stand']
[u'charg', u'hijack']
[u'dead', u'motorcycl', u'smash']
[u'break', u'leg', u'leav', u'highway']
[u'maori', u'parti', u'founder', u'confid', u'support']
[u'medium', u'size', u'wineri', u'lose']
[u'migrant', u'dementia', u'patient', u'better']
[u'mine', u'disput', u'prompt', u'indonesian', u'travel', u'warn']
[u'minist', u'condemn', u'anti', u'forestri', u'ralli']
[u'minist', u'interven', u'woman', u'hospit']
[u'minist', u'say', u'amalgam', u'communiti', u'base']
[u'minist', u'address', u'skill', u'worker', u'shortag']
[u'mitsubishi', u'explain', u'loss', u'figur']
[u'payris', u'contrast', u'communiti', u'servic', u'wage']
[u'call', u'polic', u'princ', u'highway']
[u'say', u'offer', u'affect']
[u'mullewa', u'youth', u'precinct', u'open']
[u'form', u'insur', u'allianc']
[u'nation', u'execut', u'choos', u'labor', u'candid']
[u'nation', u'claim', u'govt', u'want', u'close', u'hospit']
[u'nation', u'govt', u'catch', u'reason']
[u'mind', u'adhd', u'mason', u'focus', u'maroon']
[u'crack', u'hear', u'stricken', u'pari', u'termin']
[u'exhibit', u'year', u'mine', u'expo']
[u'plan', u'control', u'popul', u'growth']
[u'buck', u'fuel', u'cost']
[u'norwegian', u'soldier', u'kill', u'kabul', u'attack']
[u'brother', u'face', u'court', u'bash']
[u'leagu', u'boss', u'cast', u'doubt', u'latest', u'assault']
[u'teacher', u'strike']
[u'back', u'propos', u'legalis', u'year']
[u'arrest', u'cairn', u'heroin', u'bust']
[u'court', u'drug', u'bust']
[u'parliament', u'celebr', u'year']
[u'review', u'swear', u'allegi', u'queen']
[u'field', u'drama', u'take', u'focus', u'footi']
[u'price', u'slide', u'opec', u'talk']
[u'outlook', u'mine', u'industri', u'look']
[u'overnight', u'rain', u'goulburn', u'valley']
[u'pakistan', u'slam', u'militari', u'incurs']
[u'peopl', u'unawar', u'resourc', u'say', u'council']
[u'petacchi', u'equal', u'giro', u'record', u'mcgee']
[u'warn', u'labor', u'travel', u'claim']
[u'plot', u'govern']
[u'polic', u'examin', u'drive', u'shoot', u'link']
[u'polic', u'investig', u'bodi', u'compactor']
[u'polic', u'braveri', u'award', u'redfern', u'riot']
[u'polic', u'probe', u'road', u'rage', u'link', u'noranda', u'accid']
[u'polic', u'contact', u'domest', u'violenc']
[u'polic', u'urg', u'decis', u'euthanasia', u'case']
[u'protest', u'ralli', u'atsic', u'abolish', u'plan']
[u'queenstown', u'hous', u'suspici']
[u'rail', u'transport', u'like', u'toxic', u'wast']
[u'rat', u'increas', u'inevit']
[u'real', u'slump', u'disastr', u'fourth']
[u'reconcili', u'week', u'kick', u'renmark']
[u'rich', u'countri', u'plead']
[u'roch', u'name', u'bashir', u'leader']
[u'rock', u'lobster', u'industri', u'cautious', u'welcom', u'marin']
[u'rooster', u'suspend', u'minichiello', u'wing']
[u'rspca', u'pursu', u'tougher', u'penalti', u'tortur']
[u'anglican', u'vote', u'women', u'bishop']
[u'announc', u'teacher', u'recruit', u'scheme']
[u'salvo', u'issu', u'fundrais', u'warn']
[u'scandal', u'canadian', u'call', u'general', u'elect']
[u'shadow', u'call', u'local', u'govern', u'report', u'author']
[u'sharon', u'pressur', u'disengag', u'plan']
[u'shepparton', u'protest', u'appl', u'import']
[u'shire', u'pay', u'tribut', u'local', u'icon']
[u'silent', u'wit', u'charg', u'contempt']
[u'socceroo', u'chang', u'turkey', u'return', u'match']
[u'sport', u'star', u'mentor', u'indigen', u'youth']
[u'state', u'cabinet', u'meet', u'geraldton']
[u'state', u'agre', u'tugun', u'bypass', u'rout']
[u'steinhauer', u'hold', u'nerv', u'year']
[u'streak', u'call', u'boycott', u'cricket', u'zimbabw']
[u'studi', u'expos', u'palliat', u'carer', u'high', u'stress']
[u'studi', u'examin', u'ineffici', u'pacif', u'transport']
[u'sudan', u'face', u'humanitarian', u'crisi']
[u'suspend', u'player', u'bounc', u'stuart', u'say']
[u'consid', u'holiday', u'cover', u'judg']
[u'taxi', u'compani', u'defend', u'decis', u'refus', u'voucher']
[u'telstra', u'boss', u'snub', u'biggest', u'sharehold', u'labor']
[u'telstra', u'expect', u'line', u'rental', u'windfal']
[u'todd', u'river', u'run']
[u'toppl', u'crane', u'remov', u'hous']
[u'trulli', u'break', u'shumach', u'monopoli', u'victori']
[u'trulli', u'win', u'monaco', u'grand', u'prix']
[u'turtl', u'popul', u'stabilis']
[u'tweed', u'seagul', u'player', u'condit']
[u'briton', u'kill', u'baghdad', u'blast']
[u'hume', u'highway', u'near', u'coolac']
[u'storm', u'player', u'face', u'judiciari']
[u'servicemen', u'kill', u'near', u'fallujah']
[u'soldier', u'kill', u'fallujah', u'ambush']
[u'iraq', u'document', u'leak', u'deliber', u'analyst']
[u'agenc', u'protest', u'isra', u'detent']
[u'allow', u'hick', u'famili', u'attend', u'trial']
[u'deni', u'command', u'know', u'iraq', u'abus']
[u'list', u'suspect', u'fallujah', u'lynch']
[u'paper', u'carri', u'doonesburi', u'cartoon', u'apolog']
[u'network', u'wont', u'bush', u'speech']
[u'venus', u'bank', u'injur', u'ankl']
[u'corrupt', u'fighter', u'tell', u'intimid']
[u'govt', u'plan', u'nurs', u'bulli', u'taskforc']
[u'hospitalis', u'bash']
[u'wangarratta', u'guilti', u'manslaught']
[u'west', u'coast', u'railway', u'receiv', u'safeti', u'certif']
[u'whale', u'expect', u'warrnambool', u'return']
[u'woman', u'injur', u'rugbi', u'match']
[u'work', u'wind', u'farm', u'start']
[u'dead', u'romania', u'truck', u'blast']
[u'rural', u'radio', u'accus', u'bias', u'media', u'watch']
[u'call', u'south', u'east', u'coast', u'protect']
[u'tribun', u'ban', u'burgoyn', u'thompson']
[u'african', u'nation', u'unit', u'peac']
[u'cargo', u'scanner', u'offer', u'breakthrough', u'custom']
[u'black', u'tana', u'umaga', u'captain']
[u'quiz', u'flint', u'jone', u'letter']
[u'restrain', u'good', u'poll', u'news']
[u'qaeda', u'want', u'wmds', u'think', u'tank', u'say']
[u'asio', u'take', u'blame', u'damag', u'water', u'leak']
[u'assembl', u'meet', u'gungahlin', u'drive']
[u'aussi', u'bloom', u'prestigi', u'flower']
[u'aussi', u'crash', u'french', u'open']
[u'australia', u'encourag', u'olymp', u'attack', u'athen']
[u'babi', u'bear', u'sperm', u'freez', u'year']
[u'ballina', u'woman', u'charg', u'attempt', u'murder']
[u'bangladesh', u'ferri', u'death', u'toll', u'rise']
[u'bank', u'lose', u'eftpo', u'hike']
[u'barley', u'farmer', u'urg', u'pressur', u'govt', u'drop']
[u'battl', u'ravag', u'bush', u'outlin', u'iraq', u'plan']
[u'bilo', u'supermarket', u'chain', u'fin', u'breach', u'food']
[u'brack', u'stand', u'firm', u'corrupt', u'commiss']
[u'britain', u'honour', u'tommi']
[u'british', u'adventur', u'set', u'everest', u'record']
[u'bush', u'popular', u'time']
[u'butler', u'make', u'music', u'award', u'histori']
[u'stamp', u'duti', u'refund', u'canberra']
[u'cathol', u'teacher', u'join', u'strike']
[u'cat', u'paus', u'night']
[u'challeng', u'meat', u'import']
[u'champion', u'mine', u'rescu', u'team', u'take', u'world']
[u'child', u'protect', u'group', u'welcom', u'committe']
[u'church', u'consid', u'weep', u'mari', u'statu', u'probe']
[u'cloth', u'drier', u'caus', u'damag']
[u'coke', u'announc', u'plan', u'carb', u'cola']
[u'compens', u'report', u'fishermen', u'present', u'govt']
[u'confer', u'focus', u'improv', u'firefight']
[u'cooper', u'charg', u'hear', u'octob']
[u'councillor', u'plan', u'fight', u'nowingi', u'toxic', u'wast', u'site']
[u'council', u'investig', u'rule']
[u'court', u'hear', u'qaeda', u'train', u'pay', u'roch']
[u'court', u'reject', u'attempt', u'broaden', u'murder']
[u'crick', u'support', u'seek', u'clarif', u'euthanasia']
[u'croc', u'expert', u'back', u'territori', u'safari']
[u'dalbi', u'showground', u'woe', u'solv']
[u'daylesford', u'miss', u'woman']
[u'death', u'inmat', u'say', u'lethal', u'inject', u'cruel']
[u'death', u'toll', u'caribbean', u'flood', u'increas']
[u'detain', u'australian', u'concern', u'iraq']
[u'detent', u'centr', u'detaine', u'transfer']
[u'develop', u'seek', u'legal', u'advic', u'road']
[u'diamond', u'hear', u'adjourn']
[u'diamond', u'top', u'rank', u'ahead', u'court', u'hear']
[u'diver', u'suffer', u'bend', u'rescu']
[u'test', u'delay', u'bait']
[u'downer', u'moot', u'tougher', u'oversea', u'trip', u'guidelin']
[u'doyl', u'upset', u'crime', u'commiss', u'claim']
[u'drive', u'behaviour', u'improv', u'sturt', u'highway']
[u'duffi', u'give', u'ireland', u'chanc', u'springbok']
[u'dump', u'houllier', u'warn', u'liverpool', u'quick']
[u'elect', u'upset', u'french', u'polynesia']
[u'ella', u'sack', u'leinster', u'coach']
[u'emerg', u'accomod', u'lack', u'north', u'coast']
[u'escarp', u'manag', u'plan', u'finalis']
[u'euthanasia', u'support', u'ralli', u'brisban']
[u'kill', u'daughter', u'theft']
[u'eyr', u'peninsula', u'servic', u'resum']
[u'falconio', u'hear', u'adjourn']
[u'farina', u'pick', u'posit', u'socceroo']
[u'farmer', u'welcom', u'best', u'rainfal', u'month']
[u'apologis', u'link', u'madrid', u'bomb']
[u'fear', u'rais', u'fast', u'arctic', u'thaw', u'report']
[u'feder', u'polic', u'chief', u'defend', u'media', u'statement']
[u'author', u'consid', u'disciplinari', u'action']
[u'crew', u'littl', u'help', u'stromlo']
[u'nyse', u'head', u'sue', u'retir', u'benefit']
[u'foseco', u'count', u'cost', u'mitsubishi', u'closur']
[u'tribun']
[u'fruit', u'grower', u'shop', u'shut', u'protest']
[u'fuel', u'reduct', u'burn', u'target', u'say', u'dept']
[u'deal', u'agenda', u'visit']
[u'gene', u'hold', u'cowlick', u'secret']
[u'german', u'audienc', u'savour', u'tasti', u'orchestra', u'perform']
[u'heighten', u'crisi', u'fear']
[u'golf', u'return', u'kabul', u'minus', u'grass', u'green']
[u'govt', u'appeal', u'sentenc']
[u'govt', u'commit', u'child', u'protect']
[u'govt', u'remain', u'commit', u'wimmera', u'malle', u'pipelin']
[u'govt', u'support', u'victim', u'peopl', u'traffic']
[u'govt', u'stall', u'anti', u'domest']
[u'govt', u'urg', u'decid', u'region', u'futur']
[u'grain', u'grower', u'busi', u'recent', u'rain']
[u'group', u'say', u'atsic', u'debat', u'cloud', u'indigen', u'issu']
[u'group', u'say', u'divers', u'need', u'karumba']
[u'grower', u'consid', u'campaign', u'target', u'appl', u'import']
[u'hashish', u'hitch', u'remand', u'custodi']
[u'health', u'minist', u'accus', u'inact']
[u'heater', u'program', u'cut', u'pollut', u'health', u'problem']
[u'high', u'petrol', u'price', u'fuel', u'shop']
[u'hmas', u'brisban', u'sink', u'sunshin', u'coast']
[u'houllier', u'reign', u'merseysid']
[u'hussain', u'consid', u'england', u'exit']
[u'hussain', u'go', u'zero', u'hero', u'england']
[u'india', u'seamer', u'zaheer', u'join', u'surrey']
[u'industri', u'disput', u'shark', u'slaughter', u'claim']
[u'inquiri', u'reveal', u'preschool', u'attend', u'figur', u'wrong']
[u'inquiri', u'tell', u'polic', u'problem', u'redfern', u'riot']
[u'investig', u'begin', u'crane', u'accid']
[u'investig', u'probe', u'baghdad', u'blast']
[u'iraq', u'backlash', u'negat', u'budget', u'bounc', u'poll']
[u'iraqi', u'minist', u'predict', u'swift', u'coalit', u'withdraw']
[u'isra', u'armi', u'take', u'paus', u'rafah']
[u'italian', u'magistr', u'strike', u'legal', u'reform']
[u'jellyfish', u'research', u'underfund', u'expert']
[u'jetstar', u'take', u'flight']
[u'kick', u'weaker', u'team', u'pont']
[u'labor', u'question', u'appoint']
[u'lend', u'leas', u'share', u'tumbl', u'merger', u'plan']
[u'librari', u'remain', u'open', u'despit', u'recommend']
[u'pay', u'worker', u'wage', u'rise']
[u'mackay', u'passeng', u'jetstar', u'thumb']
[u'charg', u'chase']
[u'charg', u'drug', u'haul']
[u'fin', u'prank']
[u'mayor', u'accus', u'favour', u'local', u'airlin']
[u'meli', u'macdougal', u'suspend', u'guilti', u'plea']
[u'minist', u'warn', u'strike', u'help', u'teacher']
[u'miss', u'zealand', u'iraq', u'custodi']
[u'blackout', u'rule']
[u'chang', u'plan', u'traffic', u'control']
[u'pakistan', u'heatwav']
[u'polic', u'patrol', u'bairnsdal', u'rail', u'line']
[u'mottram', u'underlin', u'athen', u'challeng']
[u'mourner', u'gather', u'dead', u'rafah', u'oper']
[u'call', u'barrier', u'reef', u'author']
[u'call', u'govt', u'explain', u'ambul', u'wait', u'time']
[u'behaviour', u'flight', u'boorish', u'bizarr']
[u'defend', u'draper', u'ahead', u'travel', u'entitl']
[u'murder', u'trial', u'tell', u'accus', u'seek', u'mental', u'health']
[u'mysteri', u'surround', u'melbourn', u'man', u'iraq', u'jail']
[u'nation', u'park', u'deni', u'respons', u'buoy', u'hold']
[u'nation', u'trust', u'leas', u'histor', u'properti']
[u'alleg', u'oversea', u'trip']
[u'broom', u'visitor', u'centr', u'cope', u'high']
[u'newcastl', u'market', u'step', u'closer']
[u'iraq', u'resolut', u'need', u'work']
[u'restrict', u'impos', u'flinder', u'nightclub']
[u'pressur', u'monitor', u'bias', u'chief', u'say']
[u'nowingi', u'facil', u'label', u'toxic']
[u'farmer', u'welcom', u'rain']
[u'liber', u'deni', u'misbehav', u'flight']
[u'teenag', u'charg', u'assault', u'central']
[u'hit', u'record', u'despit', u'saudi', u'pledg']
[u'price', u'concern', u'push', u'market']
[u'worri', u'claw', u'wall', u'gain']
[u'oppn', u'call', u'drink', u'spike', u'action']
[u'opposit', u'call', u'govt', u'finalis', u'west', u'coast']
[u'opposit', u'control', u'naurus', u'parliament']
[u'pari', u'court', u'jail', u'frenchman', u'link', u'madrid']
[u'parti', u'combin', u'forc', u'action', u'gungahlin', u'drive']
[u'passeng', u'number', u'ferri', u'expect']
[u'paterson', u'fire', u'aberdeen', u'boss', u'zriller', u'dump']
[u'pentagon', u'flag', u'tank', u'sale', u'australia']
[u'petacchi', u'set', u'record', u'pip', u'mcewen', u'stage']
[u'plastic', u'compani', u'bring', u'task', u'green']
[u'opt', u'tighter', u'travel', u'rule']
[u'treasur', u'warn', u'chang', u'govern']
[u'polic', u'appeal', u'help', u'teen', u'assault']
[u'polic', u'inform', u'farewel', u'melbourn']
[u'polic', u'need', u'immun', u'mission', u'keelti', u'say']
[u'polic', u'open', u'year', u'murder', u'case']
[u'pont', u'lead', u'australia']
[u'port', u'hedland', u'iron', u'plant', u'closur', u'specul']
[u'power', u'upgrad', u'reduc', u'blackout']
[u'produc', u'input', u'seek', u'endosulfan']
[u'prosecutor', u'oppos', u'reduc', u'jackson', u'bail']
[u'firm', u'buy', u'victorian', u'resort']
[u'rain', u'curs', u'bless', u'fink', u'desert', u'race']
[u'rain', u'fail', u'water', u'shortag']
[u'rann', u'chip', u'open', u'ceremoni']
[u'real', u'madrid', u'sack', u'coach', u'queiroz', u'season']
[u'record', u'industri', u'sue', u'music', u'swapper']
[u'replac', u'seek', u'command', u'iraq']
[u'resid', u'fight', u'save', u'bridg']
[u'revamp', u'david', u'go']
[u'riverina', u'cathol', u'school', u'strike']
[u'road', u'safeti', u'group', u'seek', u'fund', u'boost']
[u'russia', u'claim', u'kill', u'organis', u'chechen']
[u'back', u'feder', u'health', u'handov']
[u'samo', u'pick', u'wallabi', u'debut']
[u'search', u'miss', u'woman', u'resum']
[u'shark', u'manag', u'veto', u'fundrais']
[u'shiit', u'holiest', u'shrine', u'damag']
[u'silver', u'citi', u'highway', u'open', u'rain']
[u'small', u'busi', u'activ', u'slow', u'remain', u'strong']
[u'soni', u'cite', u'mgms', u'softwar', u'asset', u'possibl', u'deal']
[u'south', u'east', u'coast', u'receiv', u'need', u'rain']
[u'lanka', u'drop', u'plan', u'murali', u'doosra']
[u'stock', u'rout', u'network', u'review']
[u'student', u'endang', u'live', u'chocol', u'lizard']
[u'sink', u'trawler', u'salvag']
[u'survey', u'highlight', u'fall', u'busi', u'confid']
[u'takeov', u'boost', u'medco', u'energi', u'share']
[u'budget', u'prioriti', u'wrong', u'hid', u'say']
[u'teen', u'charg', u'pharmaci']
[u'texa', u'servic', u'wait', u'telstra']
[u'trulli', u'reviv', u'formula']
[u'tugun', u'resid', u'seek', u'apolog', u'beatti']
[u'turtl', u'tourism', u'worth', u'meat']
[u'isra', u'troop', u'wound', u'central', u'gaza', u'strip']
[u'uncertainti', u'lee', u'evid']
[u'call', u'referendum']
[u'union', u'expect', u'support', u'minimum', u'wage', u'rise']
[u'resolut', u'offer', u'iraqi', u'sovereignti']
[u'give', u'million', u'prop', u'haitian', u'ruler']
[u'hop', u'demolish', u'ghraib', u'jail']
[u'rail', u'scare', u'link', u'sleepi', u'worker', u'terror']
[u'soldier', u'kill', u'iraq', u'rocket', u'attack']
[u'govt', u'urg', u'protect', u'polic', u'corrupt']
[u'victorian', u'preschool', u'poor', u'fund']
[u'lib', u'struggl', u'poll']
[u'hand', u'special', u'entri', u'women', u'open']
[u'wildflow', u'bloom', u'recent', u'rain']
[u'windi', u'recal', u'lawson', u'bangladesh', u'test']
[u'woodward', u'name', u'young', u'squad', u'barbarian', u'game']
[u'abar', u'predict', u'better', u'outlook', u'export', u'earn']
[u'aborigin', u'land', u'council', u'reform']
[u'sayyaf', u'rebel', u'kill', u'philippin']
[u'accommod', u'medic', u'student']
[u'african', u'croc', u'expert', u'support', u'control', u'safari']
[u'servic', u'consid', u'plane', u'notif']
[u'servic', u'criticis', u'tamworth']
[u'amnesti', u'report', u'criticis', u'aust']
[u'appl', u'grower', u'want', u'biosecur', u'decis', u'revers']
[u'aspirin', u'breast', u'cancer', u'risk']
[u'aussi', u'fiji', u'surf']
[u'australia', u'keep', u'olymp', u'volleybal', u'hop', u'aliv']
[u'australian', u'michael', u'take', u'rein', u'william']
[u'australia', u'improv', u'pont']
[u'predict', u'wheat', u'bonanza']
[u'profit', u'help', u'boost', u'market']
[u'bank', u'warn', u'industri', u'reform', u'derail']
[u'bartlett', u'attack', u'media', u'travel', u'rort', u'campaign']
[u'basebal', u'leagu', u'card']
[u'bashir', u'call', u'aust', u'terror', u'attack']
[u'beckham', u'slam', u'press', u'absolut', u'disgrac']
[u'aim', u'overturn', u'redund', u'rule']
[u'blackwel', u'take', u'leed']
[u'bodi', u'south', u'perth']
[u'bond', u'miss', u'second', u'test']
[u'boomer', u'prepar', u'underway', u'southport']
[u'brazil', u'say', u'foreign', u'media', u'distort', u'amazon']
[u'breakwat', u'help', u'seagrass', u'beachport']
[u'britain', u'deni', u'rift', u'iraq', u'plan']
[u'british', u'silverston']
[u'budget', u'spend', u'cost']
[u'test', u'boost']
[u'camacho', u'name', u'real', u'coach']
[u'caribbean', u'flood', u'claim']
[u'smash', u'prompt', u'warn']
[u'charl', u'darwin', u'confirm', u'hike']
[u'charl', u'darwin', u'plan', u'increas']
[u'compani', u'plead', u'guilti', u'safeti', u'breach']
[u'concern', u'futur', u'south', u'coast', u'rail', u'servic']
[u'confus', u'samo', u'futur']
[u'coria', u'cruis', u'round', u'pari']
[u'council', u'express', u'skill', u'migrant']
[u'council', u'introduc', u'user', u'pay', u'water']
[u'council', u'look', u'increas', u'rat']
[u'council', u'introduc', u'mandatori', u'water', u'restrict']
[u'council', u'plan', u'address', u'land', u'shortag']
[u'council', u'report', u'stay', u'secret']
[u'crawford', u'support', u'thompson', u'depress', u'battl']
[u'cyclist', u'high', u'power', u'world']
[u'decis', u'magnesium', u'smelter', u'expect', u'soon']
[u'defenc', u'quiz', u'lee', u'falconio', u'case']
[u'depress', u'forc', u'thompson', u'hawk']
[u'diamond', u'get', u'olymp', u'green', u'light']
[u'director', u'confid', u'young', u'actor', u'complet']
[u'disciplin', u'knife', u'edg', u'champion', u'leagu', u'final']
[u'dixon', u'run', u'william', u'drive']
[u'test', u'open', u'murder', u'investig']
[u'doctor', u'investig', u'golden', u'staph']
[u'documentari', u'demystifi', u'jazeera', u'public']
[u'dragon', u'defend', u'record', u'gasnier', u'fine']
[u'driver', u'smash', u'melbourn', u'build']
[u'driver', u'urg', u'patient', u'corridor']
[u'drought', u'respit', u'help', u'boost', u'profit']
[u'economi', u'head', u'sharp', u'slowdown', u'survey']
[u'emerg', u'beacon', u'compulsori', u'fishermen']
[u'energi', u'compani', u'blame', u'bushfir']
[u'england', u'rooki', u'strauss', u'call', u'nasser', u'stay']
[u'euro', u'pacif', u'final', u'hurdl', u'pipelin']
[u'exhibit', u'boost', u'hill', u'tourism']
[u'policeman', u'bond', u'drug', u'charg']
[u'falconio', u'case', u'resum']
[u'fall', u'price', u'eas', u'wall', u'fear']
[u'farina', u'shrug', u'schwarzer', u'injuri', u'fear']
[u'farmer', u'govt', u'power', u'dividend']
[u'farmer', u'advantag', u'rain']
[u'father', u'call', u'review']
[u'govt', u'criticis', u'ship', u'sink', u'time']
[u'financi', u'advisor', u'jail', u'hobart']
[u'fight', u'jumbo', u'good', u'australia']
[u'fish', u'transport', u'green', u'zone', u'gbrmpa']
[u'atsic', u'chairman', u'die']
[u'minist', u'indonesian', u'hospit']
[u'appear', u'court', u'drug', u'charg']
[u'fund', u'inject', u'morcomb', u'campaign']
[u'gasnier', u'phone']
[u'govern', u'say', u'apolog']
[u'govt', u'attack', u'pullout', u'plan', u'blast']
[u'govt', u'deni', u'legal', u'brothel', u'failur']
[u'govt', u'issu', u'stamp', u'duti', u'relief', u'sugar', u'produc']
[u'govt', u'spend', u'art', u'bodi']
[u'govt', u'urg', u'protect', u'irrig', u'right']
[u'govt', u'urg', u'reconsid', u'petrol', u'excis']
[u'great', u'lake', u'economi', u'lag', u'say', u'research']
[u'gunn', u'consid', u'heritag', u'project']
[u'gusmao', u'meet', u'wiranto', u'timor', u'abus']
[u'hagan', u'hit', u'ahead', u'origin']
[u'hagan', u'hit', u'origin', u'slur']
[u'henderson', u'name', u'wallabi']
[u'heritag', u'hous', u'save']
[u'hewitt', u'plead', u'clay', u'court', u'young', u'gun']
[u'hobart', u'walk', u'free', u'euthanasia', u'case']
[u'holling', u'agre', u'help', u'conrad', u'black', u'legal']
[u'hopper', u'bring', u'haunt', u'solitud', u'london']
[u'hospit', u'age', u'care', u'centr', u'benefit', u'govt']
[u'indonesian', u'boat', u'catch', u'illeg', u'fish']
[u'indonesia', u'sever', u'tie', u'terror', u'research', u'group']
[u'industri', u'predict', u'beef', u'export', u'prospect', u'improv']
[u'injuri', u'forc', u'william', u'return', u'home']
[u'chief', u'say', u'athen', u'readi', u'game']
[u'iraq', u'sovereignti', u'issu', u'caus', u'split']
[u'irrig', u'wari', u'water', u'trade']
[u'japan', u'arrest', u'qaeda', u'probe']
[u'japanes', u'trade', u'surplus', u'rocket']
[u'joey', u'snub', u'code', u'switch', u'deal', u'hagan']
[u'knight', u'battl', u'injuri', u'crisi']
[u'knight', u'number', u'injuri']
[u'kookaburra', u'cruis', u'easi', u'victori']
[u'korea', u'begin', u'histor', u'militari', u'talk']
[u'langer', u'back', u'troubl', u'monti', u'ryder']
[u'lawyer', u'reveal', u'evid', u'jone', u'probe']
[u'leadership', u'debat', u'spark', u'lib', u'infight']
[u'leadership', u'specul', u'coalit', u'favour']
[u'lee', u'question', u'secret', u'relationship']
[u'lee', u'resum', u'testimoni', u'falconio', u'case']
[u'legal', u'team', u'concentr', u'kalgoorli']
[u'lennon', u'discuss', u'island', u'hand', u'back']
[u'livingston', u'councillor', u'vote', u'rise']
[u'love', u'gene', u'beat', u'poverti', u'studi', u'say']
[u'love', u'plead', u'guilti', u'drug', u'offenc']
[u'loxton', u'home', u'valu', u'jump']
[u'major', u'piec', u'lose', u'london']
[u'arrest', u'meat', u'cleaver', u'incid']
[u'charg', u'drug', u'assault', u'daughter']
[u'hospitalis', u'concret', u'pump', u'explos']
[u'improv', u'dead', u'jellyfish', u'sting']
[u'sentenc', u'photo', u'minor']
[u'wound', u'sydney', u'shoot']
[u'master', u'leav', u'derbi', u'challeng']
[u'materi', u'girl', u'reinvent', u'tour']
[u'medic', u'school', u'multi', u'million', u'dollar', u'revamp']
[u'court', u'appear', u'park', u'theft']
[u'vampir', u'death', u'brazil']
[u'mother', u'plead', u'guilti', u'infanticid']
[u'mother', u'say', u'releas', u'daughter', u'killer', u'parol']
[u'mould', u'problemat', u'threat']
[u'question', u'redfern', u'heroin', u'plan']
[u'go', u'free', u'drug', u'blame', u'attempt']
[u'servic', u'exmouth', u'broom']
[u'council', u'creat']
[u'research', u'gold', u'coast', u'hospit']
[u'time', u'send', u'money', u'posti', u'tell', u'brit', u'coupl']
[u'night', u'burn', u'off', u'caus', u'problem', u'servic']
[u'lose', u'falconio', u'suppress', u'appeal']
[u'plan', u'develop', u'block', u'livestock', u'shipment']
[u'olymp', u'terror', u'plan', u'shoot']
[u'dead', u'injur', u'karachi', u'bomb', u'blast']
[u'zimbabw', u'tour', u'chaotic', u'atapattu']
[u'owen', u'sicken', u'houllier', u'sack']
[u'parmalat', u'unveil', u'final', u'rescu', u'plan', u'report']
[u'parti', u'gungahlin', u'drive', u'legisl']
[u'plan', u'practic', u'execut', u'gould', u'recip', u'origin']
[u'plant', u'preserv', u'avenu']
[u'defend', u'upfront', u'payment', u'teen', u'mum']
[u'ramp', u'secur', u'parliamentari', u'sit']
[u'polic', u'arrest', u'perth', u'safe', u'robberi']
[u'polic', u'assist', u'request', u'remov', u'dog']
[u'polic', u'concern', u'miss', u'mother', u'child']
[u'polic', u'drug', u'raid', u'state']
[u'polic', u'number', u'frustrat', u'busi', u'owner']
[u'polic', u'seek', u'arm', u'robber']
[u'polic', u'suspect', u'truck', u'compani', u'drug', u'run']
[u'polic', u'union', u'oppos', u'legal', u'heroin', u'redfern']
[u'price', u'check', u'defenc', u'forc']
[u'prosper', u'meatwork', u'sale']
[u'prostitut', u'law']
[u'public', u'ask', u'check', u'winter', u'power']
[u'public', u'servant', u'consid', u'offer']
[u'public', u'servic', u'worker', u'rise']
[u'putin', u'pledg', u'boost', u'economi', u'reduc', u'poverti']
[u'qanta', u'chief', u'lash', u'govt', u'restrict']
[u'radiat', u'devic', u'seek', u'athen', u'bomb', u'threat']
[u'rain', u'welcom', u'relief', u'mayor']
[u'rain', u'eas', u'pressur', u'grazier']
[u'rain', u'forc', u'road', u'closur']
[u'rain', u'welcom', u'break', u'drought']
[u'ranieri', u'fate', u'unresolv']
[u'ravensthorp', u'seek', u'residenti', u'workforc']
[u'report', u'reveal', u'gambl', u'reform', u'need']
[u'residenti', u'construct', u'close', u'record', u'high']
[u'ask', u'consid', u'overpass']
[u'russian', u'kill', u'spark', u'firm', u'withdraw', u'iraq']
[u'school', u'build', u'replac', u'open']
[u'sculli', u'reject', u'tugun', u'bypass', u'claim']
[u'search', u'begin', u'miss', u'tourist', u'remot']
[u'shevchenko', u'sign', u'year', u'deal', u'milan']
[u'singl', u'voic', u'repres', u'aviat', u'industri']
[u'avoid', u'jail', u'assist', u'suicid']
[u'southern', u'afghanistan', u'bomb', u'kill', u'taliban']
[u'sport', u'academi', u'head', u'condemn', u'bond', u'payment']
[u'springborg', u'invit', u'tour', u'brothel']
[u'state', u'origin', u'end', u'candlelight', u'vigil']
[u'stoush', u'erupt', u'hospit', u'crisi']
[u'teacher', u'clear', u'charg']
[u'test', u'confirm', u'sarin', u'iraq', u'artilleri', u'shell']
[u'thailand', u'uncov', u'bird', u'outbreak']
[u'thai', u'visit', u'aust', u'trade', u'deal', u'sign']
[u'thai', u'secur', u'seat', u'liverpool', u'board']
[u'think', u'tank', u'warn', u'continu', u'qaeda', u'threat']
[u'tiger', u'quit', u'post']
[u'timmin', u'field', u'goal', u'get', u'home']
[u'town', u'cri', u'foul', u'water']
[u'toxic', u'wast', u'site', u'heat']
[u'tree', u'pose', u'potenti', u'safeti', u'risk', u'council']
[u'tribun', u'uphold', u'deport', u'appeal']
[u'parliament', u'limit', u'access', u'secur', u'scare']
[u'unanim', u'support', u'teacher', u'strike']
[u'chief', u'support', u'iraq', u'resolut']
[u'commission', u'slam', u'isra', u'human', u'right']
[u'defer', u'troop', u'immun', u'vote']
[u'welcom', u'build', u'grant']
[u'launch', u'food', u'safeti', u'internet', u'portal']
[u'raid', u'kill', u'taliban', u'offici']
[u'arrest', u'sadr', u'aid']
[u'canadian', u'troop', u'join', u'flood', u'search']
[u'conduct', u'subcrit', u'nuclear', u'test']
[u'deni', u'iraq', u'shrine', u'attack']
[u'forc', u'outsid', u'control', u'sovereign', u'iraq', u'powel']
[u'move', u'nuclear', u'materi']
[u'govt', u'question', u'council', u'dump', u'opposit']
[u'victorian', u'favour', u'poker', u'machin', u'reduct']
[u'virgin', u'begin', u'daili', u'flight', u'sydney']
[u'camel', u'meat', u'push', u'export']
[u'wagerup', u'resid', u'voic', u'concern', u'refineri']
[u'wast', u'water', u'consid', u'lake']
[u'woman', u'face', u'court', u'attempt', u'murder', u'charg']
[u'work', u'begin', u'recycl', u'plant']
[u'worker', u'injur', u'carseldin']
[u'yuryevich', u'call', u'treasur', u'incent']
[u'zinifex', u'upgrad', u'zinc', u'smelter']
[u'teacher', u'strike']
[u'airport', u'oper', u'say', u'opposit', u'rule']
[u'qaeda', u'plot', u'foil', u'south', u'africa']
[u'amnesti', u'see', u'lack', u'progress', u'reconcili']
[u'anti', u'depress', u'fear', u'rais', u'court', u'rule']
[u'review', u'golden', u'point', u'rule']
[u'athlet', u'warn', u'growth', u'hormon', u'test']
[u'atsic', u'ax', u'legisl', u'go', u'parliament']
[u'aussi', u'doubl', u'hop', u'aliv']
[u'australia', u'flat', u'start', u'cycl', u'world', u'champ']
[u'australian', u'hold', u'iraq', u'good', u'health']
[u'australia', u'biggest', u'wind', u'farm', u'run']
[u'australia', u'shift', u'focus', u'south', u'pacif']
[u'aust', u'welcom', u'greek', u'olymp', u'secur', u'effort']
[u'bali', u'bomb', u'prosecutor', u'shoot', u'dead']
[u'ballestero', u'play']
[u'banana', u'grower', u'view', u'supermarket']
[u'bendigo', u'council', u'add', u'voic', u'rise', u'cost', u'outcri']
[u'billboard', u'face', u'music', u'editor', u'leav']
[u'book', u'help', u'emerg', u'art', u'project']
[u'britain', u'bolster', u'iraq', u'troop', u'number']
[u'broom', u'outlin', u'reason', u'space', u'concern']
[u'budget', u'expect', u'offer', u'home', u'buyer', u'relief']
[u'build', u'industri', u'employ', u'down']
[u'burswood', u'sharehold', u'urg', u'reject']
[u'bush', u'administr', u'block', u'assist', u'suicid']
[u'busi', u'invest', u'nosed']
[u'develop', u'maintain', u'estat', u'recreat']
[u'canberra', u'airport', u'seek', u'intern', u'flight']
[u'canberra', u'resid', u'tell', u'anger', u'bushfir']
[u'canegrow', u'welcom', u'stamp', u'duti', u'relief']
[u'caribbean', u'flood', u'toll', u'near']
[u'carr', u'hold', u'brigalow', u'decis']
[u'charl', u'diana', u'escap', u'pact', u'report']
[u'chemic', u'spill', u'caus', u'shop', u'centr', u'evacu']
[u'china', u'sign', u'start', u'trade', u'pact']
[u'claim', u'polic', u'databas', u'breach']
[u'coastal', u'weed', u'spray', u'hinder', u'nation', u'park']
[u'concern', u'parti', u'inspect', u'jeopardis']
[u'confer', u'tell', u'australian', u'immun']
[u'coron', u'critic', u'fatal', u'polic', u'chase']
[u'cosmos', u'shape', u'like', u'eiffel', u'tower', u'scientist']
[u'council', u'push', u'measur', u'slow', u'truck']
[u'council', u'chang', u'concern', u'spotlight']
[u'court', u'hear', u'effort', u'save', u'sydney', u'tree']
[u'crow', u'chang']
[u'csiro', u'warn', u'citi', u'water', u'problem']
[u'darci', u'guilti', u'charg']
[u'death', u'toll', u'caribbean', u'flood', u'climb']
[u'decis', u'reserv', u'bondi', u'damag', u'case']
[u'delay', u'domest', u'violenc', u'campaign', u'readi', u'launch']
[u'democrat', u'lament', u'atsic', u'chief', u'death']
[u'deputi', u'mayor', u'welcom', u'idea', u'insur', u'levi']
[u'develop', u'plead', u'guilti', u'fraud']
[u'defend', u'decis', u'volker', u'case']
[u'draft', u'food', u'safeti', u'standard', u'seafood', u'produc']
[u'drive', u'singh', u'eye', u'tiger', u'titl']
[u'driver', u'shortag', u'forc', u'train', u'timet', u'chang']
[u'england', u'hussain', u'time']
[u'malcolm', u'award', u'medal']
[u'environ', u'network', u'unhappi', u'otway', u'propos']
[u'expert', u'say', u'hobart', u'waterfront', u'world', u'class']
[u'extremist', u'suspect', u'twin', u'bomb', u'attack']
[u'falconio', u'case', u'hear', u'lee', u'second', u'lover']
[u'famili', u'worri', u'iraqi', u'prison']
[u'figur', u'budget', u'forecast', u'cloud']
[u'fish', u'blitz', u'promis', u'manag', u'scheme']
[u'fli', u'kiwi', u'ulmer', u'smash', u'world', u'record']
[u'england', u'captain', u'hussain', u'bow']
[u'lawyer', u'jail', u'sexual', u'assault']
[u'mayor', u'slam', u'local', u'govt', u'reform']
[u'parliamentarian', u'hospitalis', u'indonesia']
[u'drug', u'squad', u'head', u'work']
[u'fortun', u'teller', u'tell', u'perus', u'fujimori', u'flee']
[u'fresh', u'prison', u'abus', u'charg', u'troop']
[u'futur', u'phillip', u'oval', u'secur']
[u'govt', u'fund', u'help', u'shepparton', u'welcom', u'migrant']
[u'govt', u'press', u'senat', u'pass', u'atsic', u'chang']
[u'govt', u'outlaw', u'marriag']
[u'govt', u'spend', u'pacif', u'highway']
[u'govt', u'urg', u'bolster', u'child', u'protect', u'effort']
[u'gower', u'origin']
[u'green', u'unimpress', u'govt', u'energi', u'packag']
[u'hair', u'dead', u'giveaway', u'scientist']
[u'hauritz', u'stay', u'queensland']
[u'hewitt', u'capriati', u'restor', u'order', u'french', u'open']
[u'high', u'court', u'rule', u'split', u'home', u'loan']
[u'high', u'court', u'hear', u'bondi', u'appeal', u'case']
[u'young', u'stellar', u'win', u'cosmic', u'heavyweight', u'titl']
[u'indigen', u'region', u'group', u'urg', u'lobbi', u'govt']
[u'indonesia', u'attack', u'critic']
[u'israel', u'arrest', u'vanunu', u'report']
[u'john', u'pledg', u'futur', u'leagu']
[u'judg', u'comment', u'assist', u'suicid']
[u'juri', u'consid', u'darci', u'verdict']
[u'karachi', u'bomb', u'blast', u'kill', u'injur']
[u'kean', u'justifi', u'decis', u'walk', u'ireland']
[u'kerri', u'target', u'bush', u'terrorist', u'warn']
[u'kerri', u'formal', u'accept', u'presidenti', u'nomin']
[u'kiwi', u'hop', u'bond', u'rule', u'second', u'test']
[u'labor', u'call', u'pont', u'forum', u'probe']
[u'labor', u'quiz', u'govt', u'iraqi', u'abus', u'claim']
[u'lawyer', u'warn', u'ocean', u'harvest', u'danger']
[u'lee', u'fli', u'falconio', u'testimoni']
[u'lee', u'return', u'wit']
[u'lib', u'reject', u'prior', u'prison', u'abus', u'knowledg']
[u'liverpool', u'confirm', u'ciss', u'arriv', u'auxerr']
[u'liverpool', u'line', u'valencia', u'coach', u'benitez']
[u'local', u'govt', u'minist', u'stand', u'merriwa', u'decis']
[u'charg', u'robberi', u'kidnap', u'attempt']
[u'charg', u'shoot', u'truck', u'driver']
[u'jail', u'attempt', u'murder', u'polic', u'inform']
[u'market', u'climb', u'investor', u'welcom', u'takeov']
[u'maroon', u'sore', u'golden', u'point', u'loss']
[u'mayor', u'undecid', u'greater', u'hume', u'nomin']
[u'mcewen', u'say', u'hand', u'tie', u'barley', u'market']
[u'mcgee', u'threaten', u'abandon', u'giro', u'sanction']
[u'charg', u'sydney', u'petrol', u'station', u'shoot']
[u'mine', u'minist', u'call', u'industri', u'makeov']
[u'minist', u'wharf', u'announc', u'appeal']
[u'mix', u'respons', u'indigen', u'fund']
[u'ghraib', u'abus', u'photo', u'reveal']
[u'mourinho', u'sign', u'style', u'porto', u'lift']
[u'launch', u'cabl', u'network']
[u'muslim', u'cleric', u'face', u'death', u'penalti']
[u'finalis', u'deal']
[u'nail', u'fire', u'hous']
[u'nation', u'bushfir', u'warn', u'moot']
[u'nation', u'park', u'plan', u'burn', u'off', u'seabird']
[u'nat', u'question', u'council', u'chang', u'heart', u'dump', u'site']
[u'naval', u'construct', u'program', u'announc']
[u'almond', u'farm', u'cost', u'million']
[u'chief', u'secur', u'plus', u'salari', u'deal']
[u'water', u'restrict', u'forc', u'wash', u'closur']
[u'ireland', u'judg', u'say', u'real', u'ban', u'group']
[u'pledg', u'budget', u'child', u'poverti']
[u'price', u'fall', u'despit', u'tight', u'reserv', u'report']
[u'oklahoma', u'bomb', u'conspir', u'convict', u'murder']
[u'iraqi', u'kill', u'wound', u'bomb', u'blast', u'south']
[u'pacif', u'nation', u'criticis', u'amnesti', u'report']
[u'paint', u'can', u'sniff']
[u'pair', u'refus', u'bail', u'sydney', u'shoot', u'case']
[u'palestinian', u'shoot', u'rafah']
[u'penalti', u'give', u'polic', u'offic', u'corrupt', u'case']
[u'pie', u'welcom', u'senior', u'trio']
[u'plan', u'forward', u'nation', u'water', u'grid']
[u'deni', u'prior', u'knowledg', u'iraq', u'abus']
[u'elect', u'governor', u'general']
[u'govt', u'head', u'vote', u'confid']
[u'opposit', u'leader', u'recognis', u'parliament']
[u'polic', u'consid', u'roadsid', u'bodi', u'suspici']
[u'polic', u'investig', u'possibl', u'gangland', u'execut']
[u'polic', u'investig', u'punchbowl', u'shoot']
[u'polic', u'murder', u'investig', u'attack', u'trial']
[u'polic', u'probe', u'fatal', u'bash']
[u'polic', u'silent', u'wit', u'protect', u'breach', u'claim']
[u'pont', u'chalk', u'dayer']
[u'poppi', u'grower', u'face', u'tough', u'time']
[u'port', u'hedland', u'council', u'expect', u'shortfal']
[u'pratt', u'fall', u'roddick', u'henin', u'hardenn', u'crash', u'pari']
[u'princ', u'highway', u'investig', u'death']
[u'properti', u'crime', u'rate', u'fall']
[u'protest', u'demolit', u'contractor', u'face', u'investig']
[u'qanta', u'meet', u'union', u'job', u'plan']
[u'nat', u'want', u'volker', u'charg', u'pursu']
[u'question', u'rais', u'geneva', u'convent', u'protect']
[u'ralli', u'highlight', u'concern', u'legal']
[u'reconcili', u'aust', u'urg', u'releas', u'fund']
[u'reconcili', u'stall', u'say', u'dean']
[u'refuge', u'avoid', u'taliban', u'recruit']
[u'richmond', u'deni', u'target', u'pagan']
[u'rilli', u'harvey', u'remain', u'free', u'agent', u'list']
[u'road', u'summit', u'hear', u'wagga', u'wagga', u'fatal']
[u'roch', u'deni', u'plot', u'bomb', u'embassi']
[u'roch', u'tell', u'court', u'asio', u'inact']
[u'ruck', u'crisi', u'forc', u'rethink', u'lion']
[u'ruddock', u'move', u'polic', u'access', u'email']
[u'russian', u'pair', u'advanc', u'round']
[u'sadr', u'agre', u'truce', u'offici']
[u'safeti', u'issu', u'road', u'summit']
[u'pass', u'poki', u'freez']
[u'predict', u'budget', u'surplus']
[u'schwarzer', u'hop', u'clash']
[u'scientist', u'decod', u'chimp', u'chromosom']
[u'scientist', u'sweat', u'hippo', u'sunscreen', u'downsid']
[u'scientist', u'wake', u'histamin', u'find']
[u'sentenc', u'bolster', u'euthanasia', u'support', u'hop']
[u'sharon', u'prepar', u'gaza', u'debat']
[u'smith', u'complet', u'switch']
[u'state', u'confer', u'debat', u'councillor', u'wag']
[u'korea', u'accus', u'cyber', u'terror']
[u'student', u'accus', u'terrorist', u'grant', u'bail']
[u'studi', u'dent', u'reliabl', u'prostat', u'cancer', u'test']
[u'sudan', u'foe', u'sign', u'deal', u'end', u'civil']
[u'survey', u'find', u'porsch', u'owner', u'fool']
[u'swimmer', u'question', u'dpps', u'stanc', u'volker', u'case']
[u'swimmer', u'question', u'dpps', u'volker', u'stanc']
[u'accept', u'offer', u'tabcorp']
[u'tamworth', u'council', u'elect', u'reschedul', u'sept']
[u'taylor', u'sue', u'gogh', u'amid', u'nazi']
[u'teacher', u'walk']
[u'teacher', u'strike', u'govt', u'go']
[u'team', u'mat', u'murali', u'boycott', u'threat']
[u'tension', u'surfac', u'nation', u'trust']
[u'terri', u'warn', u'roberto', u'carlo']
[u'there', u'punch']
[u'thompson', u'return', u'hawk']
[u'thompson', u'return', u'hawk']
[u'face', u'court', u'follow', u'interst', u'drug', u'raid']
[u'tighter', u'water', u'restrict', u'livingston', u'shire']
[u'tribut', u'pay', u'atsic', u'chair']
[u'troubl', u'land', u'council', u'appoint', u'administr']
[u'turkish', u'state', u'launch', u'kurdish', u'languag']
[u'expos', u'mercuri', u'shop', u'centr']
[u'investig', u'congo', u'peacekeep', u'abus', u'claim']
[u'union', u'anger', u'respons', u'carer', u'abus']
[u'union', u'part', u'happi', u'train', u'assur']
[u'union', u'anger', u'qanta', u'offshor', u'job', u'plan']
[u'arrest', u'sadr', u'aid']
[u'confid', u'najaf', u'deal']
[u'name', u'seven', u'qaeda', u'alert']
[u'warn', u'loom', u'qaeda', u'attack']
[u'vandal', u'leav', u'koondrook', u'resid', u'water']
[u'nistelrooy', u'pledg', u'futur', u'unit']
[u'vet', u'offer', u'south', u'korea', u'visit']
[u'vizard', u'stand', u'galleri', u'posit']
[u'wale', u'thump', u'barbarian']
[u'wall', u'wari', u'secur', u'fear']
[u'warrnambool', u'dairi', u'factori']
[u'webb', u'great', u'player', u'say', u'golf', u'chief']
[u'weekend', u'train', u'servic']
[u'whale', u'watch', u'fascin', u'good', u'news']
[u'winemak', u'set', u'record', u'crush']
[u'woman', u'charg', u'coupl', u'murder']
[u'work', u'dole', u'communiti', u'servic', u'say', u'acoss']
[u'aborigin', u'drive', u'school', u'target', u'unemploy']
[u'aborigin', u'leader', u'turn', u'sculptur']
[u'administr', u'recommend', u'scrap', u'gympi', u'gold']
[u'alic', u'spring', u'festiv', u'receiv', u'feder', u'fund']
[u'work', u'nation', u'health', u'strategi']
[u'anaesthesia', u'monitor', u'hail', u'breakthrough']
[u'anim', u'group', u'angri', u'crocodil', u'safari']
[u'anim', u'welfar', u'group', u'take', u'croc', u'hunt', u'plan']
[u'offic', u'charg', u'corrupt']
[u'anti', u'boot', u'exhibit', u'show', u'scale', u'death']
[u'aphrodit', u'bird', u'race', u'win']
[u'aplin', u'concern', u'councillor', u'select']
[u'armidal', u'upgrad']
[u'armi', u'reservist', u'barricad', u'madagascan', u'parliament']
[u'asio', u'chief', u'slam', u'bali', u'slur']
[u'finish', u'slight', u'stronger']
[u'atsic', u'leader', u'disappoint', u'bill', u'time']
[u'australia', u'assur', u'medal', u'cycl', u'championship']
[u'bailey', u'stay', u'shark']
[u'bakhtiyari', u'children', u'detent', u'unlaw', u'court', u'tell']
[u'basslink', u'cabl', u'boat', u'set']
[u'bendigo', u'water', u'shortag', u'concern', u'politician']
[u'biomass', u'fuel', u'answer', u'dwindl', u'studi']
[u'blue', u'player', u'clear', u'harass']
[u'bomber', u'knock', u'docker']
[u'bomber', u'seek', u'redempt', u'dockland']
[u'bonner', u'thank', u'work', u'indigen', u'issu']
[u'boy', u'rap', u'church', u'offici', u'barrist', u'say']
[u'british', u'minist', u'face', u'court', u'australian']
[u'british', u'report', u'releas', u'jerusalem', u'jail']
[u'briton', u'davidson', u'upstag', u'schumach']
[u'break', u'hill', u'popul', u'declin']
[u'builder', u'group', u'predict', u'slower', u'market']
[u'calder', u'fund', u'anger', u'bendigo', u'driver', u'gibbon']
[u'cane', u'farmer', u'assist', u'declin']
[u'cannabi', u'grow', u'town', u'main', u'street']
[u'cathol', u'teacher', u'march', u'sydney']
[u'cathol', u'teacher', u'strike', u'disrupt', u'north', u'coast']
[u'check', u'wood', u'heater', u'urg', u'council']
[u'citigroup', u'pay', u'million', u'settl', u'consum', u'probe']
[u'clive', u'fear', u'wilko', u'american', u'dream']
[u'cloncurri', u'doctor', u'shortag', u'need', u'urgent', u'attent']
[u'cont', u'leav', u'juventus', u'kapo', u'arriv']
[u'coughlan', u'stay', u'tigerland']
[u'council', u'reject', u'build', u'poison', u'concern']
[u'council', u'meet', u'chang', u'help', u'public']
[u'court', u'rule', u'adler', u'right', u'appeal']
[u'clean', u'yield', u'car']
[u'darwin', u'hop', u'bandwagon']
[u'defenc', u'know', u'iraq', u'prison', u'claim', u'year']
[u'doomsday', u'cult', u'figur', u'sentenc', u'death']
[u'drug', u'courier', u'sentenc', u'jail', u'cocain', u'import']
[u'dutch', u'date', u'australia', u'india', u'pakistan']
[u'take', u'round', u'lead', u'wentworth']
[u'entir', u'villag', u'submerg', u'haiti']
[u'falconio', u'hear', u'view', u'video', u'scene']
[u'farina', u'settl', u'squad']
[u'farmer', u'deserv', u'better', u'forecast']
[u'farmer', u'unhappi', u'murray', u'revitalis', u'plan']
[u'receiv', u'tip', u'terror', u'suspect']
[u'feder', u'fund', u'target', u'indigen', u'migrant', u'famili']
[u'fiji', u'meet', u'aim', u'combat', u'aid', u'pacif']
[u'captain', u'challeng', u'charg', u'threat']
[u'caus', u'extens', u'damag', u'sydney', u'juic']
[u'french', u'polynesian', u'leader', u'face', u'pressur', u'quit']
[u'marriag', u'intend', u'offend', u'howard']
[u'geologist', u'highlight', u'explor', u'boom']
[u'giant', u'mushroom', u'baffl', u'expert']
[u'gippsland', u'council', u'vote', u'formal', u'elect']
[u'goulburn', u'consid', u'develop', u'support']
[u'govt', u'plan', u'scrap', u'atsic', u'reveng', u'robinson']
[u'govt', u'widen', u'read', u'voucher', u'avail']
[u'greek', u'festiv', u'auction', u'olymp', u'memorabilia']
[u'greek', u'minist', u'say', u'olymp', u'mistak', u'report']
[u'group', u'wadey', u'pipelin', u'infrastructur']
[u'group', u'continu', u'lobbi', u'despit', u'budget']
[u'gun', u'wind', u'farm', u'generat', u'job']
[u'hardi', u'reap', u'record', u'vintag']
[u'health', u'group', u'disappoint', u'countri', u'hospit']
[u'howard', u'call', u'hick', u'habib', u'tri', u'soon']
[u'howard', u'concern', u'iraq', u'poll']
[u'howard', u'reassur', u'farmer', u'wont', u'banana']
[u'howard', u'stay', u'term', u'parti', u'will']
[u'hussain', u'rue', u'ash', u'defeat']
[u'indonesian', u'charg', u'illeg', u'fish']
[u'inquiri', u'urg', u'port', u'botani', u'expans']
[u'integr', u'energi', u'announc', u'upgrad']
[u'investig', u'call', u'prison', u'assault']
[u'iraqi', u'candid', u'pull', u'race']
[u'iraq', u'govern', u'council', u'choos']
[u'italian', u'candid', u'decapit', u'pompeii', u'mysteri']
[u'japanes', u'paper', u'compani', u'refus', u'growth', u'woodchip']
[u'junior', u'warrior', u'jail', u'tri', u'kill', u'unborn']
[u'kean', u'ireland', u'germani', u'crush']
[u'khodorkovski', u'hear', u'adjourn', u'yuko', u'share', u'slump']
[u'kyneton', u'assault', u'victim', u'condit', u'worsen']
[u'manus', u'island', u'detent', u'centr', u'occup']
[u'life', u'saver', u'welcom', u'anniversari', u'grant']
[u'mactier', u'win', u'silver', u'melbourn']
[u'malaysia', u'arrest', u'nuclear', u'part', u'businessman']
[u'arrest', u'student', u'death']
[u'charg', u'murder', u'singaporean', u'student']
[u'jail', u'year', u'publican', u'murder']
[u'kill', u'hunter', u'valley', u'mine', u'accid']
[u'sue', u'claim', u'atkin', u'diet', u'caus', u'heart', u'diseas']
[u'mcguir', u'lead', u'bronco', u'victori']
[u'mersey', u'hospit', u'takeov', u'track']
[u'miner', u'hospit', u'collieri', u'accid']
[u'minist', u'wont', u'comment', u'deer', u'park', u'bypass', u'fund']
[u'more', u'councillor', u'urg', u'indigen', u'peopl', u'vote']
[u'gloom', u'australia', u'track', u'cycl', u'team']
[u'prison', u'releas', u'ghraib']
[u'wit', u'appear', u'falconio', u'case']
[u'criticis', u'pacif', u'fund']
[u'oppos', u'hospit', u'plan']
[u'struggl', u'hospit', u'committe', u'appoint']
[u'murchison', u'telescop', u'fund', u'fall']
[u'musharraf', u'say', u'militari', u'involv', u'assassin']
[u'newcastl', u'cathol', u'school', u'open', u'despit', u'strike']
[u'newcastl', u'port', u'lead', u'secur', u'upgrad']
[u'scanner', u'benefit', u'lismor', u'patient']
[u'diplomat', u'honolulu']
[u'guid', u'help', u'trace', u'indigen', u'famili', u'histori']
[u'newman', u'killer', u'lose', u'appeal']
[u'program', u'aim', u'develop', u'boy', u'confid']
[u'brew', u'second', u'sydney', u'airport', u'option']
[u'newspap', u'guilti', u'contempt', u'snowtown', u'photo']
[u'releas', u'environ', u'report', u'waterfront', u'plan']
[u'nucifora', u'win', u'coach', u'award']
[u'offici', u'shoot', u'dog', u'attack', u'owner']
[u'price', u'slide', u'dollar', u'strengthen']
[u'price', u'slip']
[u'olymp', u'basebal', u'hope', u'test', u'posit', u'steroid']
[u'olymp', u'contract', u'cancel', u'secur']
[u'olymp', u'shooter', u'lick']
[u'american', u'prison', u'data']
[u'nation', u'lose']
[u'opposit', u'want', u'child', u'care', u'benefit', u'review']
[u'orchestra', u'review', u'financi', u'stabil']
[u'outsid', u'henman', u'llodra']
[u'pacif', u'lead', u'world', u'obes', u'rat']
[u'parliament', u'intrud', u'receiv', u'suspend', u'sentenc']
[u'scoff', u'southern', u'highland', u'airport', u'idea']
[u'cooper', u'scheme', u'benefit', u'countri', u'aust']
[u'memori', u'honour', u'australian', u'pilot']
[u'polic', u'launch', u'dandalup', u'bodi', u'investig']
[u'polit', u'heavyweight', u'visit', u'ballarat']
[u'poll', u'show', u'draper', u'lose', u'seat']
[u'port', u'hedland', u'dialysi', u'unit', u'expand']
[u'postcard', u'bandit', u'solitari', u'confin']
[u'princ', u'road', u'upgrad']
[u'properti', u'purchas', u'continu', u'stanbrok', u'sale']
[u'protect', u'wit', u'say', u'felt', u'safe']
[u'protest', u'polic', u'clash', u'embassi', u'tehran']
[u'qanta', u'deni', u'pressur', u'govt', u'bali', u'warn']
[u'appl', u'grower', u'express', u'import', u'concern']
[u'compani', u'sign', u'mildura', u'marina', u'deal']
[u'odd', u'post', u'budget', u'surplus', u'treasur', u'say']
[u'popul', u'hit']
[u'quadrapleg', u'sue', u'local', u'council', u'neglig']
[u'radiograph', u'strike']
[u'rail', u'line', u'inquiri', u'head', u'urg', u'public', u'comment']
[u'reef', u'research', u'target', u'water', u'qualiti']
[u'refuge', u'advoc', u'face', u'child', u'porn', u'charg']
[u'region', u'atsic', u'council', u'prepar', u'servic']
[u'relief', u'oper', u'begin', u'flood', u'ravag', u'caribbean']
[u'relief', u'team', u'scrambl', u'caribbean', u'storm', u'toll', u'grow']
[u'roch', u'face', u'year', u'jail', u'bomb', u'plot']
[u'samo', u'declar', u'allegi', u'australia']
[u'polic', u'drug', u'bust']
[u'treasur', u'deni', u'hoard', u'cash']
[u'saudi', u'suspect', u'sept', u'tie', u'arrest']
[u'schwarzer', u'world', u'qualifi']
[u'secur', u'guard', u'abduct', u'robberi']
[u'selector', u'graveney', u'lead', u'hussain', u'tribut']
[u'serial', u'killer', u'milat', u'refus', u'right', u'appeal']
[u'shift', u'cost', u'hurt', u'local', u'council', u'mayor']
[u'small', u'turnout', u'forc', u'farm', u'bodi', u'postpon']
[u'smoke', u'affect', u'entir', u'bodi']
[u'south', u'african', u'court', u'reserv', u'judgment']
[u'space', u'telescop', u'glimps', u'birth', u'star', u'nasa']
[u'boss', u'say', u'bali', u'intellig', u'limit']
[u'steven', u'return', u'boost', u'crow']
[u'kilda', u'polic', u'power', u'fine', u'tourist']
[u'student', u'research', u'continu', u'despit', u'fund', u'pull']
[u'surrey', u'keeper', u'batti', u'equal', u'world', u'record']
[u'survey', u'reveal', u'inland', u'fishermen', u'spend']
[u'swab', u'test', u'falconio', u'case']
[u'sydney', u'level', u'year']
[u'sydney', u'woman', u'admit', u'kill', u'parent', u'court', u'tell']
[u'tafe', u'releas', u'intern', u'review', u'plan']
[u'tamil', u'tiger', u'lanka', u'fail', u'reach', u'peac']
[u'growth', u'rest', u'countri']
[u'taylor', u'stake', u'earli', u'jude', u'classic', u'lead']
[u'tbird', u'kestrel', u'swift', u'win']
[u'teacher', u'union', u'welcom', u'strike', u'action']
[u'team', u'pursuit', u'give', u'australia', u'cheer']
[u'teenag', u'court', u'assault', u'homeless']
[u'tiger', u'sign', u'coughlan']
[u'tongan', u'call', u'step']
[u'travel', u'advisori', u'issu']
[u'troop', u'clash', u'iraqi', u'militia', u'despit', u'truce']
[u'tumbarumba', u'mayor', u'pleas', u'merger', u'outcom']
[u'decept']
[u'japanes', u'journalist', u'kill', u'iraq']
[u'charg', u'cannabi', u'seizur', u'refus', u'bail']
[u'releas', u'bail', u'extradit']
[u'face', u'court', u'action', u'guantanamo', u'detaine']
[u'alli', u'accus', u'iraq', u'abus']
[u'armi', u'run', u'bullet']
[u'firm', u'invest', u'explor']
[u'iraq', u'command', u'urg', u'australia', u'stay']
[u'polic', u'shock', u'children', u'brutal', u'kill']
[u'sadr', u'truce', u'najaf']
[u'add', u'list', u'tobacco', u'ill']
[u'want', u'open', u'end', u'iraq', u'commit']
[u'will', u'discuss', u'death', u'penalti', u'hamza', u'case']
[u'valdano', u'resign', u'real', u'sport', u'director']
[u'vanston', u'admit', u'atsic', u'dismantl', u'long', u'process']
[u'veteran', u'tonkov', u'claim', u'giro', u'stage', u'mcgee']
[u'address', u'region', u'skill', u'shortag']
[u'vocalist', u'warm', u'bush', u'idol']
[u'volleybal', u'track', u'athen', u'place']
[u'coalit', u'target', u'region', u'woe']
[u'wallabi', u'hope', u'line', u'scotland']
[u'databas', u'lead', u'state', u'number']
[u'target', u'dialysi', u'fund']
[u'west', u'coast', u'regret', u'train', u'safeti', u'disrupt']
[u'woman', u'accus', u'give', u'fals', u'evid']
[u'woman', u'lose', u'appeal', u'neglig', u'case']
[u'woman', u'face', u'court', u'sydney', u'doubl', u'murder']
[u'worker', u'escap', u'unhurt', u'gaza', u'attack']
[u'work', u'dole', u'project', u'benefit', u'illawarra', u'region']
[u'world', u'wide', u'spell', u'world', u'wide', u'crime']
[u'wynyard', u'smithton', u'road', u'wrangl', u'continu']
[u'young', u'male', u'write', u'virus', u'expert']
[u'move', u'clarifi', u'prison', u'abus', u'knowledg']
[u'alaska', u'quak', u'affect', u'yellowston', u'geyser', u'studi']
[u'want', u'brack', u'focus', u'worker']
[u'demand', u'govt', u'solv', u'medic', u'staff', u'shortag']
[u'warn', u'govt', u'vaccin', u'backlash']
[u'aristid', u'pois', u'africa', u'exil']
[u'asio', u'ignor', u'roch', u'phone', u'warn', u'ruddock']
[u'kill', u'saudi', u'attack', u'secur', u'sourc']
[u'australian', u'face', u'terror', u'charg', u'lebanon']
[u'australian', u'soldier', u'injur', u'iraq', u'crash']
[u'australia', u'stun', u'china', u'volleybal']
[u'australia', u'team', u'pursuit', u'titl']
[u'bartlett', u'take', u'shoot', u'duck', u'hunt', u'season']
[u'bashar', u'centuri', u'lift', u'bangladesh']
[u'beatti', u'tackl', u'child', u'abus']
[u'berg', u'interview', u'moor', u'film']
[u'blair', u'desir', u'elect']
[u'bresciano', u'strike', u'give', u'australia', u'victori']
[u'budget', u'wont', u'eas', u'hospit', u'wait', u'time', u'brown']
[u'builder', u'seek', u'feder', u'help', u'train']
[u'burma', u'report', u'dead', u'cyclon', u'say', u'dead']
[u'burni', u'manag', u'head', u'peak', u'bodi']
[u'bush', u'putin', u'negoti', u'iraq', u'resolut']
[u'button', u'send', u'practic', u'warn', u'schu']
[u'car', u'impound', u'shoot', u'probe']
[u'chile', u'withdraw', u'pinochet', u'legal', u'immun']
[u'colombian', u'rebel', u'mark', u'anniversari']
[u'condom', u'cancer', u'risk', u'expos']
[u'conserv', u'iranian', u'parliament', u'speaker']
[u'constitut', u'recognis', u'victoria', u'aborigin']
[u'cool', u'weather', u'delay', u'wine', u'crop']
[u'crawford', u'hawk', u'demolish']
[u'crazi', u'bingo', u'session', u'bond', u'portug', u'player']
[u'crow', u'start', u'strong', u'hawk']
[u'cunego', u'steal', u'simoni', u'limelight', u'mcgee', u'sit']
[u'curtin', u'univers', u'freez', u'hec', u'fee']
[u'cyclist', u'continu', u'pursuit', u'domin']
[u'deforest', u'blame', u'haiti', u'flood']
[u'disabl', u'youth', u'forc', u'age', u'care', u'home', u'network']
[u'dual', u'murder', u'accus', u'remain', u'custodi']
[u'eagl', u'swoop', u'fade', u'tiger']
[u'earthquak', u'hit', u'northern', u'iran']
[u'editor', u'kill', u'spark', u'press', u'freedom', u'fear']
[u'elector', u'commiss', u'tip', u'close', u'poll']
[u'estil', u'edg', u'past', u'sorenstam', u'lpga', u'lead']
[u'famili', u'minist', u'admit', u'staff', u'woe']
[u'famili', u'worker', u'domin', u'confer']
[u'state', u'govt', u'rage', u'road']
[u'fighter', u'part', u'contract', u'boost', u'brisban', u'firm']
[u'destroy', u'sydney', u'plastic', u'factori']
[u'firefight', u'levi', u'drive', u'peopl', u'insur']
[u'foreign', u'attack', u'saudi', u'sector']
[u'flatley', u'injuri', u'spoil', u'red']
[u'flood', u'survivor', u'caribbean', u'nightmar']
[u'conscious', u'indonesian', u'overdos']
[u'frawley', u'talk', u'tiger', u'chanc']
[u'gastroenter', u'outbreak', u'strain', u'hospit']
[u'geneticist', u'back', u'embryo', u'test', u'law', u'propos']
[u'gillespi', u'clark', u'australia', u'seri']
[u'govt', u'attack', u'duck', u'hunt', u'season']
[u'habib', u'lawyer', u'seek', u'guantanamo', u'abus', u'video']
[u'holocaust', u'fear', u'vanunu', u'blow', u'whistl']
[u'hope', u'float', u'spirit', u'tasmania']
[u'hospit', u'violenc', u'measur', u'inadequ']
[u'hostag', u'take', u'qaeda', u'claim', u'saudi', u'attack']
[u'huxley', u'stay', u'red']
[u'iaaf', u'young', u'dope', u'case']
[u'iran', u'steel', u'high', u'quak', u'toll']
[u'iran', u'quak', u'toll', u'mount']
[u'isra', u'soldier', u'kill', u'palestinian', u'gunmen', u'report']
[u'jackson', u'septemb', u'trial']
[u'jail', u'sentenc', u'seek', u'thiev']
[u'japan', u'plan', u'talk', u'north', u'korea', u'report']
[u'kookuburra', u'hold', u'germani']
[u'kuerten', u'oust', u'feder', u'serena', u'capriati']
[u'kurdish', u'separatist', u'ceasefir', u'turkey']
[u'labor', u'seek', u'broad', u'port', u'expans', u'inquiri']
[u'libyan', u'nuclear', u'program', u'link', u'pakistan', u'iran']
[u'literaci', u'voucher', u'inappropri']
[u'magpi', u'roll', u'down', u'kangaroo']
[u'kill', u'sit', u'princ']
[u'mine', u'accid', u'injuri', u'kill']
[u'mine', u'law', u'rock', u'power', u'underground']
[u'miramax', u'founder', u'distribut', u'fahrenheit']
[u'mix', u'econom', u'news', u'weigh']
[u'rain', u'expect']
[u'nevill', u'anxious', u'lose', u'time']
[u'iraqi', u'work', u'govt', u'team']
[u'nightlin', u'second', u'troop', u'honour', u'roll']
[u'incent', u'doctor', u'medicar', u'plus']
[u'pakistan', u'test', u'fire', u'nuclear', u'capabl', u'missil']
[u'palestinian', u'gunmen', u'kill', u'isra', u'soldier']
[u'pie', u'face', u'crunch', u'match', u'roo']
[u'pressur', u'spell', u'prison', u'abus']
[u'detent', u'centr', u'wast', u'tax']
[u'polic', u'investig', u'suspici', u'decept']
[u'polic', u'target', u'student', u'drunken', u'fight']
[u'profil', u'iyad', u'allawi']
[u'protest', u'disrupt', u'mexico', u'summit']
[u'nation', u'choos', u'joyc', u'head', u'senat', u'ticket']
[u'raider', u'centr', u'combin', u'crush', u'man']
[u'raikkonen', u'ahead', u'open']
[u'rain', u'boost', u'crop', u'cattl', u'hop']
[u'shield', u'appeal', u'donat', u'encourag', u'salvo']
[u'rise', u'bloom', u'hang']
[u'ruddock', u'answer', u'roch', u'call', u'claim']
[u'safin', u'final', u'coria', u'storm']
[u'sandakan', u'death', u'march', u'rememb']
[u'school', u'impos', u'exam', u'mark', u'student']
[u'schumach', u'take', u'pole', u'home', u'soil']
[u'seven', u'dead', u'sweep', u'tanker']
[u'shark', u'blitz', u'clean', u'south']
[u'sharon', u'postpon', u'gaza', u'pullout', u'vote']
[u'shiit', u'march', u'support', u'sistani']
[u'shock', u'anger', u'roma', u'capello', u'walk']
[u'shooter', u'defend', u'duck', u'hunt']
[u'shoot', u'investig', u'close', u'adelaid', u'street']
[u'korea', u'regist', u'strongest', u'quak', u'year']
[u'socceroo', u'tell', u'step']
[u'specialist', u'urg', u'countri', u'practic']
[u'storm', u'break', u'duck', u'newcastl']
[u'strong', u'head', u'orchestra', u'review']
[u'swan', u'triumph', u'lacklustr', u'clash']
[u'team', u'boss', u'agre', u'qualifi', u'format']
[u'terror', u'suspect', u'want', u'sydney', u'shoot']
[u'thanksgiv', u'restor', u'christian', u'valu']
[u'thousand', u'attend', u'eclect', u'merrepen', u'festiv']
[u'titl', u'defenc', u'spark', u'tom']
[u'turkish', u'kurd', u'warn', u'investor', u'tourist']
[u'interven', u'congo', u'fight']
[u'concern', u'libyan', u'nuclear', u'program']
[u'consul', u'examin', u'polic', u'harass', u'claim']
[u'endors', u'prime', u'minist', u'allawi']
[u'militia', u'fight', u'erupt', u'iraq', u'citi', u'kufa']
[u'vacanc', u'prompt', u'radiograph', u'strike', u'threat']
[u'venezuela', u'check', u'chavez', u'petit', u'signatur']
[u'viduka', u'spanish', u'hold']
[u'wireless', u'network', u'open', u'hacker']
[u'agenc', u'warn', u'caribbean', u'flood', u'crisi']
[u'qaeda', u'attack', u'kill', u'saudi']
[u'american', u'indebt', u'soldier', u'bush']
[u'antarct', u'link', u'caus', u'tasmanian', u'celebr']
[u'brisban', u'softwar', u'group', u'win', u'chile', u'contract']
[u'canberra', u'plan', u'battl', u'bulg']
[u'chip', u'factori', u'target', u'export', u'market']
[u'coach', u'okay', u'french', u'euro', u'prepar']
[u'communiti', u'centr', u'tackl', u'redfern', u'woe']
[u'companion', u'card', u'eas', u'strain', u'disabl', u'commut']
[u'cunego', u'verg', u'giro', u'triumph']
[u'dead', u'man', u'ident', u'puzzl', u'polic']
[u'dfat', u'visit', u'alleg', u'australian', u'terrorist']
[u'drag', u'sit', u'undergo', u'nois', u'test']
[u'earthquak', u'add', u'flood', u'hispaniola', u'woe']
[u'emerg', u'industri', u'lack', u'invest', u'support']
[u'estil', u'maintain', u'edg', u'sorenstam']
[u'timor', u'presid', u'criticis', u'wiranto', u'meet']
[u'europ', u'gun', u'pois', u'showdown']
[u'food', u'standard', u'forc', u'littl', u'seafood', u'industri', u'chang']
[u'foreign', u'hostag', u'kill', u'saudi', u'rescu']
[u'showcas', u'altern', u'chang']
[u'manag', u'resign', u'amid', u'irish', u'bank', u'scandal']
[u'soldier', u'kill', u'afghanistan']
[u'gallop', u'unhappi', u'polic', u'harass', u'alleg']
[u'school', u'govt', u'urg', u'teacher']
[u'gillespi', u'clark', u'australia', u'seri']
[u'govt', u'dous', u'cold', u'water', u'bushfir', u'memori']
[u'clinic', u'pressur', u'hospit']
[u'group', u'hope', u'vine', u'leaf', u'rust', u'erad']
[u'guantanamo', u'abus', u'inquiri', u'seek', u'howard']
[u'helicopt', u'attack', u'kill', u'palestinian']
[u'hewitt', u'kuerten', u'oust', u'feder']
[u'hick', u'face', u'august', u'trial']
[u'histor', u'qualif', u'volleybal']
[u'howard', u'request', u'cross', u'abus', u'report']
[u'ill', u'alert', u'custom', u'alleg', u'drug', u'smuggler']
[u'indict', u'ignor', u'wiranto', u'hail', u'friend', u'gusmao']
[u'iran', u'urg', u'nuclear', u'watchdog', u'stay', u'imparti']
[u'iraqi', u'wrangl', u'presid', u'succeed', u'saddam']
[u'italian', u'artist', u'luciano', u'minguzzi', u'die']
[u'iraq', u'cabinet', u'post', u'agre', u'chalabi']
[u'labor', u'leav', u'door', u'open', u'adopt']
[u'detaine', u'leav', u'manus', u'island']
[u'lion', u'win', u'way']
[u'magazin', u'groom', u'husband']
[u'mail', u'updat', u'elector', u'roll']
[u'mear', u'take', u'gold', u'world', u'champ', u'wrap']
[u'mental', u'health', u'debat', u'deter', u'peopl', u'need']
[u'music', u'stop', u'portug', u'paus', u'peac']
[u'najaf', u'fight', u'continu', u'despit', u'truce']
[u'newspap', u'editor', u'surviv', u'assassin', u'attempt']
[u'garden', u'varieti', u'shed', u'british', u'display']
[u'injuri', u'bomb', u'damag', u'greek', u'court']
[u'govt', u'angri', u'alleg', u'terrorist', u'give', u'bail']
[u'urg', u'nurs', u'reconnect']
[u'oppn', u'crack', u'corpor', u'greed']
[u'pagan', u'say', u'pressur']
[u'pakistan', u'hold', u'parliamentari', u'hear', u'cricket']
[u'palac', u'promot', u'premier', u'leagu']
[u'panther', u'heart', u'edg', u'bulldog']
[u'bush', u'discuss', u'prison', u'abus', u'claim']
[u'polic', u'arrest', u'danc', u'parti', u'raid']
[u'polic', u'link', u'gypsi', u'joker', u'wallaroo', u'shoot']
[u'polic', u'seek', u'help', u'foil', u'puppi', u'thief']
[u'polic', u'surround', u'chalabi', u'offic']
[u'polic', u'wind', u'search', u'miss', u'fisherman']
[u'port', u'claw', u'cat']
[u'prefer', u'decid', u'council']
[u'princ', u'william', u'contempl', u'career', u'arm', u'forc']
[u'rafiqu', u'plunder', u'maiden', u'bangladesh']
[u'rampant', u'rooster', u'easi', u'warrior']
[u'releas', u'call', u'mark', u'detent', u'anniversari']
[u'rooster', u'demolish', u'woeful', u'warrior']
[u'ruddock', u'concern', u'shoot', u'accus', u'lebanon']
[u'rumsfeld', u'say', u'terror', u'earli', u'stag']
[u'sadr', u'implement', u'najaf', u'truce']
[u'saudi', u'attack', u'pressur', u'price']
[u'saudi', u'cell', u'slaughter', u'italian', u'swede', u'websit']
[u'saudi', u'commando', u'raid', u'hostag', u'compound']
[u'saudi', u'forc', u'milit']
[u'saudi', u'forc', u'free', u'hostag']
[u'saudi', u'forc', u'pois', u'storm', u'hostag', u'taker']
[u'schumach', u'lead', u'ferrari', u'nuerburgr']
[u'scientist', u'breed', u'poison', u'blowfish']
[u'search', u'miss', u'fisherman']
[u'servic', u'station', u'welcom', u'labor', u'petrol', u'plan']
[u'sharon', u'postpon', u'vote', u'gaza', u'plan']
[u'shooter', u'defend', u'duck', u'hunt', u'season']
[u'springborg', u'call', u'action', u'main', u'road']
[u'kilda', u'romp', u'home', u'blue']
[u'strong', u'head', u'orchestra', u'review']
[u'taliban', u'milita', u'step', u'insurg']
[u'taliban', u'support', u'shoot', u'dead', u'karachi']
[u'tasmania', u'win', u'dirti', u'ashtray']
[u'tassi', u'research', u'explor', u'unseen', u'floor']
[u'offic', u'play', u'underworld', u'kill']
[u'thousand', u'respect', u'fiat', u'agnelli']
[u'tiger', u'extend', u'eel', u'slump']
[u'tom', u'seven', u'clear', u'jude', u'classic']
[u'charg', u'bodi', u'discoveri']
[u'charg', u'gypsi', u'joker', u'shoot']
[u'troop', u'seek', u'secur', u'east', u'congo']
[u'vaughan', u'england', u'return']
[u'wasp', u'edg', u'bath', u'complet', u'dream', u'doubl']
[u'watkin', u'tabl', u'extraordinari', u'paedophil', u'track']
[u'act', u'posit', u'smoke', u'scoreboard', u'improv']
[u'all', u'ord', u'climb']
[u'qaeda', u'vow', u'cleans', u'arabian', u'peninsula']
[u'altern', u'rail', u'arrang', u'continu']
[u'arab', u'state', u'condemn', u'saudi', u'attack']
[u'arafat', u'claim', u'palestinian', u'foil', u'reveng']
[u'aussi', u'defend', u'zimbabw', u'seri']
[u'australian', u'agenc', u'consid', u'south', u'pacif', u'project']
[u'australian', u'gear', u'tahiti', u'clash']
[u'australian', u'offic', u'visit', u'ghraib']
[u'australian', u'open', u'receiv', u'financi', u'inject']
[u'australian', u'scientist', u'help', u'rare', u'bird', u'rescu']
[u'australian', u'urg', u'leav', u'saudi', u'arabia']
[u'australia', u'refus', u'hong', u'kong', u'extradit', u'request']
[u'aust', u'resid', u'saudi', u'terror', u'dead']
[u'baghdad', u'gunmen', u'kill', u'hostag']
[u'ballist', u'evid', u'hear', u'murdoch', u'committ']
[u'bangladesh', u'produc', u'highest', u'test', u'total', u'windi']
[u'bendigo', u'hous', u'price', u'rise']
[u'brazilian', u'come', u'friend']
[u'britain', u'consid', u'radic', u'anti', u'terror', u'move']
[u'broom', u'airport', u'casa', u'odd', u'reform']
[u'burma', u'mark', u'year', u'detent']
[u'bushfir', u'inquiri', u'hear', u'concern', u'respons']
[u'busi', u'group', u'back', u'summer', u'seven', u'trade']
[u'butt', u'state', u'case', u'england', u'role', u'franc']
[u'brake', u'speed', u'trucki']
[u'accid', u'victim', u'night']
[u'casaveen', u'knitwear', u'win', u'wool', u'industri', u'servic', u'award']
[u'cheney', u'coordin', u'halliburton', u'iraq', u'contract', u'report']
[u'claim', u'polic', u'taunt', u'american', u'student', u'disturb']
[u'compani', u'fin', u'build', u'site', u'death']
[u'demand', u'major', u'chang', u'govt']
[u'convict', u'bali', u'bomber', u'testifi', u'final', u'suspect']
[u'coria', u'henman', u'french', u'open', u'quarter', u'final']
[u'coron', u'hear', u'begin', u'child', u'care', u'worker']
[u'cosgrov', u'confirm', u'traffic', u'accid', u'injur', u'troop']
[u'council', u'administr', u'share', u'wisdom']
[u'council', u'take', u'issu', u'govt', u'financi', u'woe']
[u'council', u'sink', u'teeth', u'fluorid', u'debat']
[u'crawford', u'target', u'round', u'return']
[u'dairi', u'farmer', u'upbeat', u'milk', u'price']
[u'damn', u'anglican', u'abus', u'report', u'reveal']
[u'dane', u'spurn', u'chanc', u'draw', u'estonia']
[u'democrat', u'seek', u'cigarett', u'vend', u'machin']
[u'deputi', u'open', u'maryborough', u'confer']
[u'deputi', u'urg', u'region', u'peopl', u'trade']
[u'detail', u'william', u'case', u'clear', u'releas']
[u'detaine', u'father', u'sceptic', u'terror', u'trial', u'time']
[u'drought', u'continu', u'flow']
[u'time', u'western', u'victoria']
[u'girlfriend', u'say', u'murdoch', u'shave', u'hair']
[u'exot', u'turtl', u'net', u'reptil', u'amnesti']
[u'falconio', u'case', u'hear', u'hollow', u'near', u'highway']
[u'farmer', u'push', u'compo', u'wheat', u'debt']
[u'fatal', u'helicopt', u'crash', u'probe', u'begin']
[u'fine', u'construct', u'compani', u'welcom']
[u'brigad', u'warn', u'prepar']
[u'servic', u'want', u'public', u'listen', u'warn']
[u'austrian', u'tour', u'boat', u'accid']
[u'flatley', u'miss', u'nation']
[u'forestri', u'seek', u'giant', u'tree', u'detail']
[u'shire', u'job', u'consid', u'safe']
[u'forum', u'allow', u'drought', u'feedback']
[u'found', u'singapor', u'leader']
[u'kill', u'injur', u'baghdad', u'blast']
[u'refus', u'bail', u'drug', u'conspiraci', u'charg']
[u'fresh', u'clash', u'break', u'congo']
[u'gastroenter', u'outbreak', u'hit', u'hospit']
[u'gerrard', u'owen', u'help', u'determin', u'liverpool', u'coach']
[u'govt', u'defend', u'time', u'take', u'decid', u'bushfir']
[u'govt', u'dismiss', u'labor', u'petrol', u'price', u'plan']
[u'govt', u'fund', u'mass', u'power', u'station', u'research']
[u'govt', u'crack', u'builder']
[u'govt', u'tighten', u'cigarett', u'sale', u'restrict']
[u'demand', u'nation', u'anti', u'smoke', u'law']
[u'seek', u'nation', u'smoke', u'law']
[u'green', u'candid', u'reject', u'marriag', u'plan']
[u'green', u'hope', u'council', u'posit']
[u'group', u'air', u'toxic', u'wast', u'transport', u'fear']
[u'group', u'outlin', u'campaign', u'wast', u'facil']
[u'group', u'say', u'seafood', u'plan', u'boost', u'consum']
[u'gulf', u'vincent', u'vital', u'breed', u'grind']
[u'hawk', u'suffer', u'unlucki', u'break']
[u'health', u'group', u'detail', u'smoke', u'impact']
[u'henjak', u'call', u'wallabi']
[u'hickss', u'lawyer', u'renew', u'plea', u'australian', u'trial']
[u'hill', u'stop', u'offic', u'appear', u'iraqi', u'abus']
[u'hinkler', u'oppos', u'pharmaci', u'deregul']
[u'home', u'lend', u'drive', u'privat', u'sector', u'growth']
[u'hospit', u'urg', u'tighten', u'secur']
[u'illawarra', u'hous', u'market', u'soft', u'land', u'report']
[u'indonesia', u'get', u'wise', u'rodent', u'problem']
[u'indonesian', u'polic', u'fear', u'attack', u'elect', u'lead']
[u'inform', u'campaign', u'target', u'parent']
[u'inquest', u'name', u'person', u'murder']
[u'iraq', u'presidenti', u'decis', u'delay']
[u'isra', u'cabinet', u'hit', u'stalem', u'pullout']
[u'istanbul', u'bomb', u'suspect', u'face', u'court']
[u'job', u'tafe', u'shake']
[u'journalist', u'paint', u'bleak', u'pictur', u'media', u'ahead']
[u'zimbabw', u'involv', u'test', u'game', u'pont']
[u'kookaburra', u'lose', u'german', u'seri', u'level']
[u'labor', u'oppos', u'coupl', u'adopt']
[u'labor', u'urg', u'action', u'pacif', u'upgrad']
[u'landhold', u'feel', u'drought', u'effect']
[u'landhold', u'urg', u'park', u'precaut']
[u'chang', u'freez', u'istanbul', u'trial']
[u'leonard', u'lead', u'barbarian', u'rout', u'look', u'england']
[u'let', u'sort']
[u'licuria', u'glass', u'video', u'report']
[u'live', u'murray', u'pois', u'elect', u'issu']
[u'long', u'wait', u'near', u'buninyong', u'sport', u'precinct']
[u'lower', u'deficit', u'remain', u'uncomfort', u'high']
[u'die', u'backyard', u'mishap']
[u'die', u'highway', u'crash']
[u'manus', u'island', u'refuge', u'arriv', u'melbourn']
[u'matthew', u'conced', u'lion', u'finish', u'second']
[u'matthew', u'conced', u'lion', u'fight', u'second']
[u'mayor', u'gather', u'discuss', u'water', u'conserv']
[u'mcgee', u'move', u'gear', u'giro', u'eighth', u'place']
[u'mcgrath', u'want', u'ball']
[u'mcmillan', u'add', u'kiwi', u'injuri', u'woe']
[u'meet', u'consid', u'wild', u'woe']
[u'melbourn', u'life', u'await', u'manus', u'island', u'detaine']
[u'memori', u'commemor', u'vietnam', u'veteran']
[u'ministeri', u'staffer', u'oversea', u'trip', u'question']
[u'fund', u'seek', u'reduc', u'road', u'toll']
[u'pleas', u'princ', u'highway', u'safeti', u'audit']
[u'want', u'monorail', u'scheme', u'explor']
[u'murder', u'abduct', u'rise']
[u'citizen', u'toowoomba', u'home']
[u'librari', u'kimberley', u'histori']
[u'pantani', u'cunego', u'crown', u'giro', u'champion']
[u'scam', u'prompt', u'internet', u'bank', u'warn']
[u'school', u'open', u'eurobodalla']
[u'zealand', u'fishermen', u'stop', u'greenpeac', u'protest']
[u'extradit', u'accus', u'corrupt']
[u'hous', u'market', u'collaps', u'sight', u'report']
[u'record', u'roch', u'ruddock']
[u'norfolk', u'murder', u'inquest', u'begin']
[u'north', u'korean', u'link', u'pong', u'face', u'deport']
[u'crack', u'grappl', u'tackl']
[u'angri', u'health', u'budget', u'cut']
[u'criticis', u'terror', u'suspect', u'court', u'delay']
[u'test', u'respons', u'terrorist', u'attack']
[u'obeid', u'deni', u'opposit', u'lebanon', u'trip', u'claim']
[u'obeid', u'head', u'home', u'lebanon']
[u'market', u'nervous', u'saudi', u'unrest']
[u'onetel', u'case', u'hold', u'hear', u'england']
[u'soldier', u'kill', u'wound', u'south', u'baghdad']
[u'oppn', u'decri', u'obeid', u'lebanon', u'trip']
[u'overland', u'track', u'visitor', u'number', u'limit']
[u'oxley', u'highway', u'revamp', u'start']
[u'pair', u'coast', u'road', u'crash']
[u'pastur', u'catch', u'best', u'rainfal', u'forecast']
[u'perman', u'camper', u'order', u'leav']
[u'plane', u'fall']
[u'plan', u'afoot', u'port', u'piri', u'power', u'station']
[u'say', u'roch', u'mistak', u'regrett']
[u'parliament', u'oust', u'speaker', u'confid', u'vote']
[u'polic', u'fear', u'safeti', u'miss', u'woman']
[u'polic', u'inform', u'dead', u'walk']
[u'polic', u'investig', u'shoot', u'murder']
[u'polic', u'minist', u'fear', u'safeti', u'amid', u'shoot']
[u'polic', u'number', u'review']
[u'polic', u'probe', u'more', u'break']
[u'polic', u'probe', u'wollongong', u'unit', u'blaze']
[u'polic', u'speak', u'lebanes', u'author', u'terror']
[u'polic', u'wit', u'stand', u'falconio', u'case']
[u'polit', u'hamper', u'council', u'fund']
[u'pressur', u'murali', u'announc', u'tour', u'intent']
[u'produc', u'fin', u'fals', u'vendor', u'declar']
[u'land', u'protect', u'futur', u'develop']
[u'rain', u'set', u'record']
[u'figur', u'credit', u'boom']
[u'real', u'presid', u'confid', u'keep', u'roberto', u'carlo']
[u'region', u'work', u'inspir', u'governor']
[u'regul', u'continu', u'region', u'servic']
[u'report', u'recommend', u'stronger', u'tie', u'indonesia']
[u'research', u'highlight', u'theft', u'threat']
[u'retract', u'syring', u'distribut']
[u'saddam', u'display', u'white', u'hous']
[u'saint', u'forward', u'drink', u'drive', u'charg']
[u'saint', u'forward', u'drink', u'drive', u'charg']
[u'saudi', u'hostag', u'drama', u'spark', u'manhunt']
[u'scheme', u'look', u'dairi', u'job']
[u'schwab', u'give', u'blunt', u'assess', u'hawk']
[u'search', u'continu', u'miss', u'esper']
[u'sharon', u'threaten', u'sack', u'delay', u'gaza', u'vote']
[u'shock', u'wentworth', u'outsid', u'drummond']
[u'chidren', u'injur', u'sydney', u'crash']
[u'socceroo', u'face', u'chang', u'tahiti', u'clash']
[u'socceroo', u'mismatch', u'tahiti']
[u'sorenstam', u'win', u'corn', u'classic']
[u'sourc', u'tri', u'warn', u'roch']
[u'south', u'east', u'share', u'black', u'spot', u'fund']
[u'sport', u'group', u'seek', u'bendigo', u'poki']
[u'statu', u'plan', u'caus', u'indigen']
[u'strong', u'fish', u'number', u'morgan']
[u'support', u'portland', u'wind', u'farm', u'blade']
[u'sydney', u'ranger', u'protest', u'park', u'ticket', u'quota']
[u'tasmania', u'tourism', u'chief', u'defend', u'ferri']
[u'teacher', u'share', u'excel', u'award']
[u'tender', u'seek', u'break', u'hill', u'block']
[u'gunmen', u'escap', u'saudi', u'hostag', u'drama']
[u'tom', u'retain', u'jude', u'classic', u'stroke']
[u'tour', u'group', u'forc', u'abandon', u'trip', u'face', u'arrest']
[u'trust', u'chairwoman', u'hop', u'hous', u'compromis']
[u'trust', u'want', u'ental', u'hous', u'leas', u'restor']
[u'tuna', u'farm', u'approv', u'abrolho', u'island']
[u'charg', u'babi', u'murder']
[u'jail', u'heroin', u'import']
[u'soldier', u'kufa', u'clash']
[u'union', u'protest', u'foreign', u'worker', u'abus']
[u'condemn', u'saudi', u'effort', u'terror']
[u'releas', u'palestinian', u'diplomat', u'ghraib']
[u'venezuela', u'elect', u'bodi', u'rule', u'chavez']
[u'databas', u'track', u'offend', u'movement']
[u'polic', u'chief', u'defend', u'wit', u'protect', u'program']
[u'polic', u'watch', u'casino', u'money', u'launder']
[u'war', u'terror', u'impact', u'tourism', u'line']
[u'water', u'restrict']
[u'webber', u'defiant', u'schus', u'accus']
[u'welfar', u'review', u'uncov', u'million', u'cheat']
[u'wild', u'dog', u'blame', u'sheep', u'death']
[u'wind', u'farm', u'work', u'get', u'closer']
[u'woman', u'die', u'road', u'crash']
[u'woman', u'leav', u'children', u'overnight']
[u'young', u'magpi', u'lose', u'licenc', u'speed']
[u'star', u'feet', u'grind', u'game']
[u'traffic', u'control', u'remain', u'iraq']
[u'alderman', u'defend', u'sport', u'complex', u'motion']
[u'alleg', u'drug', u'dealer', u'say', u'leak', u'report']
[u'qaeda', u'win', u'terror', u'analyst']
[u'anglican', u'archbishop', u'wont', u'resign', u'despit', u'damn']
[u'angri', u'shiit', u'mourn', u'kill', u'pakistan', u'blast']
[u'anti', u'chemic', u'spark', u'arctic', u'fear']
[u'appl', u'pear', u'grower', u'highlight', u'fireblight', u'threat']
[u'archbishop', u'irrelev', u'church', u'reform']
[u'arroyo', u'warn', u'plotter', u'presidenti', u'vote', u'count']
[u'aussi', u'terror', u'suspect', u'face', u'lebanon', u'court']
[u'australia', u'review', u'travel', u'advic']
[u'author', u'play', u'reef', u'loss']
[u'banana', u'power', u'appeal', u'grower']
[u'bank', u'boss', u'regret', u'surf', u'porn']
[u'say', u'confid', u'hewitt']
[u'bekel', u'break', u'world', u'metr', u'record']
[u'explos', u'probe', u'month']
[u'board', u'meet', u'decid', u'langmack', u'fate']
[u'bomb', u'kill', u'karachi', u'mosqu']
[u'brack', u'ask', u'leak', u'polic', u'report', u'info']
[u'brack', u'greet', u'passeng', u'avalon', u'airport', u'open']
[u'brazil', u'ronaldinho', u'miss', u'argentina', u'qualifi']
[u'briton', u'injur', u'annual', u'chees', u'chase']
[u'broadbeach', u'convent', u'centr', u'open']
[u'brogden', u'eject', u'chamber']
[u'govt', u'fund', u'whitsunday']
[u'career', u'roll', u'high', u'black', u'elli']
[u'catallini', u'consid', u'european', u'offer']
[u'cathol', u'school', u'teacher', u'action', u'claim']
[u'cattl', u'feedlot', u'abattoir', u'draw', u'board']
[u'caus', u'factori', u'blaze', u'investig']
[u'monitor', u'polic', u'investig']
[u'central', u'aust', u'transport', u'pioneer', u'die', u'age']
[u'chariti', u'needi', u'illawarra', u'children']
[u'chelsea', u'dump', u'ranieri']
[u'cherbourg', u'shelter']
[u'choos', u'prettiest', u'megawati', u'tell', u'voter']
[u'clanci', u'come', u'screen', u'drove']
[u'clean', u'energi', u'need', u'fund']
[u'coalit', u'compet', u'underdog']
[u'compani', u'plead', u'guilti', u'feedlot', u'breach']
[u'compani', u'hop', u'chilean', u'nut', u'product']
[u'concern', u'air', u'crash', u'inquest', u'delay']
[u'convict', u'murder', u'refus', u'court']
[u'council', u'choos', u'iraqi', u'presid']
[u'council', u'appeal', u'plane', u'nois', u'decis']
[u'council', u'seek', u'fund', u'boost', u'manag', u'chang']
[u'council', u'urg', u'tackl', u'wild', u'problem']
[u'court', u'hear', u'evid', u'husband', u'murder', u'trial']
[u'crazi', u'problem', u'spread']
[u'crown', u'seek', u'explan', u'money', u'launder']
[u'dairi', u'farmer', u'seek', u'wooli', u'help']
[u'danger', u'drive', u'penalti', u'strengthen']
[u'dead', u'blast', u'iraq', u'presid', u'name']
[u'devil', u'breed', u'program', u'celebr', u'success']
[u'draft', u'tamworth', u'budget']
[u'draper', u'suggest', u'health', u'servic', u'allianc']
[u'drought', u'dollar', u'hurt', u'dairi', u'farmer']
[u'drought', u'take', u'toll', u'wagga']
[u'friend', u'build', u'join', u'adelaid', u'skylin']
[u'gippsland', u'push', u'tourism', u'attract']
[u'elder', u'coupl', u'trial', u'cannabi', u'possess']
[u'energex', u'defend', u'safeti', u'transform']
[u'expert', u'predict', u'better', u'winter', u'rainfal']
[u'export', u'drag', u'growth']
[u'falconio', u'hear', u'tell', u'vehicl', u'probe']
[u'fall', u'fertil', u'lead', u'coupl', u'long', u'donat']
[u'farina', u'prais', u'player', u'commit']
[u'farmer', u'consid', u'appeal', u'miner', u'sand']
[u'farmer', u'group', u'cast', u'doubt', u'water', u'plan']
[u'farmer', u'watch', u'mice']
[u'farmer', u'optimist', u'world', u'trade', u'talk', u'progress']
[u'farmer', u'feel', u'drought', u'impact']
[u'fitzgerald', u'examin', u'polic', u'report', u'leak']
[u'fluorid', u'debat', u'bring', u'mix', u'respons']
[u'forest', u'close', u'home', u'bushfir', u'inquest', u'tell']
[u'forklift', u'access', u'ghan', u'safe']
[u'liberian', u'presid', u'stand', u'trial']
[u'fruit', u'grower', u'spearhead', u'campaign', u'import']
[u'fund', u'seek', u'railway', u'hall', u'revamp']
[u'danger', u'face', u'flood', u'victim', u'warn', u'cross']
[u'germani', u'need', u'world', u'drive', u'euro', u'kahn']
[u'gillespi', u'talk', u'worth', u'zimbabw', u'seri']
[u'gold', u'coast', u'victim', u'saudi', u'attack', u'consid']
[u'govt', u'board', u'wast', u'money']
[u'govt', u'clarifi', u'wast', u'transport', u'risk']
[u'govt', u'support', u'wider', u'role', u'governor']
[u'govt', u'urg', u'blade', u'contract']
[u'govt', u'urg', u'support', u'unfair', u'dismiss', u'chang']
[u'grain', u'grower', u'unlik', u'regain', u'iraq', u'debt']
[u'green', u'race', u'meter', u'second']
[u'group', u'say', u'brothel', u'plan']
[u'heal', u'hand', u'boomer', u'captainci']
[u'health', u'servic', u'talk', u'babi', u'transfer']
[u'helmut', u'newton', u'buri', u'berlin']
[u'hewitt', u'grind', u'pari']
[u'hewitt', u'french', u'quarter']
[u'high', u'hop', u'north', u'east', u'sugar', u'beet', u'trial']
[u'high', u'petrol', u'cost', u'unlik', u'fuel', u'tourism', u'slump']
[u'howard', u'surg', u'poll', u'posit']
[u'hussain', u'blast', u'zimbabw']
[u'indigen', u'doctor', u'urg', u'leadership', u'role']
[u'indigen', u'tourism', u'group', u'vie', u'award']
[u'indonesian', u'presidenti', u'campaign', u'begin']
[u'industri', u'properti', u'tip', u'provid', u'better']
[u'input', u'seek', u'region', u'tourism', u'plan']
[u'inquest', u'fail', u'shed', u'light', u'canberra', u'murder']
[u'rat', u'tip', u'remain', u'hold']
[u'adopt', u'wada', u'code']
[u'mislead', u'abus', u'howard']
[u'jaguar', u'hit', u'cash', u'drive']
[u'japanes', u'schoolgirl', u'stab', u'classmat']
[u'jone', u'montgomeri', u'presum', u'innoc', u'chief']
[u'kempsey', u'jail', u'begin', u'staff', u'train']
[u'kerang', u'polic', u'clean', u'crime']
[u'king', u'women', u'embarrass', u'boob', u'plan']
[u'kookaburra', u'song', u'germani']
[u'kyoto', u'decis', u'impact', u'farmer']
[u'labor', u'demand', u'inquiri', u'atsic', u'dismantl']
[u'labor', u'decis', u'marriag']
[u'labor', u'sceptic', u'newspol', u'result']
[u'labor', u'stoush', u'brew', u'deputi', u'posit']
[u'lee', u'hypnotis', u'falconio', u'probe']
[u'leonard', u'issu', u'anzac', u'warn']
[u'local', u'govt', u'concern', u'plan', u'mine']
[u'local', u'govt', u'group', u'discuss', u'mechan', u'worker']
[u'lockyer', u'name', u'bench']
[u'mackay', u'fear', u'rise', u'fuel', u'price']
[u'charg', u'morcomb', u'extort', u'attempt']
[u'discov', u'bedroom']
[u'plead', u'guilti', u'mobil', u'phone', u'murder']
[u'sell', u'marijuana', u'wed']
[u'market', u'slowli', u'amid', u'price', u'specul']
[u'mayor', u'reject', u'junket', u'claim']
[u'meat', u'shortag', u'affect', u'wild', u'bait']
[u'meatwork', u'consid', u'vital', u'pipelin']
[u'face', u'court', u'cannabi', u'haul']
[u'worker', u'speed', u'fear']
[u'hurdl', u'nurs', u'home', u'plan']
[u'indonesian', u'face', u'illeg', u'fish', u'charg']
[u'teacher', u'industri', u'unrest', u'like']
[u'reject', u'highway', u'fund', u'inact', u'claim']
[u'suspend', u'pink', u'ladi', u'parliament']
[u'multipl', u'attack', u'suspect', u'canberra', u'murder']
[u'murdoch', u'life', u'detail', u'committ', u'hear']
[u'iraqi', u'presid', u'call', u'sovereignti']
[u'zealand', u'upgrad', u'travel', u'warn']
[u'sight', u'water', u'restrict']
[u'norfolk', u'murder', u'inquest', u'name', u'person']
[u'room', u'crybabi', u'portug', u'squad', u'warn']
[u'norway', u'ban', u'smoke', u'bar']
[u'nrma', u'back', u'highway', u'fund', u'pledg']
[u'fight', u'viral', u'stomach']
[u'opposit', u'move', u'censur', u'travel']
[u'seek', u'injunct', u'water', u'share']
[u'kidney', u'transplant', u'unit', u'viabl']
[u'export', u'fear', u'diseas', u'appl']
[u'occi', u'move', u'fiji']
[u'offic', u'quiz', u'leess', u'statement']
[u'surg', u'saudi', u'hostag', u'drama']
[u'oneil', u'admonish', u'attack']
[u'opec', u'boost', u'product', u'minist']
[u'oppn', u'demand', u'know', u'fast', u'rail', u'cost']
[u'opposit', u'hit', u'govt', u'budget', u'repli', u'speech']
[u'organis', u'admit', u'olymp', u'race', u'time']
[u'pagan', u'back', u'struggl', u'whitnal']
[u'pair', u'charg', u'babi', u'murder', u'refus', u'bail']
[u'abandon', u'senat', u'reform']
[u'back', u'soldier', u'ghraib', u'evid']
[u'head', u'unit', u'state']
[u'polic', u'hunt', u'newcastl', u'theft']
[u'polic', u'offici', u'kill', u'bomb', u'attack']
[u'polic', u'probe', u'port', u'moresbi', u'hotel', u'hold']
[u'polic', u'unit', u'investig', u'child', u'abus', u'claim']
[u'powerlin', u'corridor', u'detail', u'finalis']
[u'pressur', u'obeid', u'return', u'lebanon', u'trip']
[u'probe', u'melbourn', u'rail', u'death']
[u'problem', u'identifi', u'year', u'canberra', u'fire']
[u'public', u'urg', u'rail', u'cross', u'push']
[u'qanta', u'urg', u'rememb', u'oblig']
[u'queanbeyan', u'factori', u'destroy', u'blaze']
[u'railway', u'runaway', u'leav', u'track', u'manag', u'scratch']
[u'ranieri', u'want', u'stay', u'england', u'agent']
[u'research', u'dispel', u'jellyfish', u'myth']
[u'resid', u'plead', u'guilti', u'riot', u'charg']
[u'retail', u'sale', u'stall', u'busi', u'confid', u'high']
[u'review', u'help', u'improv', u'relev', u'orchestra']
[u'richmond', u'richo', u'cop', u'fine', u'wrestl']
[u'richo', u'cop', u'fine', u'wrestl']
[u'rise', u'petrol', u'price', u'fuel', u'tourism', u'fear']
[u'roch', u'await', u'sentenc']
[u'roch', u'jail', u'year']
[u'rocki', u'hotel', u'welcom', u'smoker']
[u'salmon', u'produc', u'sue', u'rival']
[u'premier', u'name', u'chaplain', u'accus', u'abus']
[u'sarwan', u'rock', u'bangladesh', u'late', u'wicket']
[u'second', u'australian', u'offic', u'visit', u'ghraib']
[u'seven', u'injur', u'philippin', u'bomb']
[u'sexual', u'cost', u'chilean', u'woman', u'children']
[u'shanghai', u'polic', u'hunt', u'steal', u'radioact']
[u'shire', u'lose', u'confer', u'vote', u'right']
[u'shoot', u'charg', u'terror', u'judg', u'say']
[u'silverdom', u'sale', u'unlik']
[u'smoke', u'slur', u'warrant', u'minist', u'say']
[u'southcorp', u'star', u'quiet', u'market']
[u'south', u'west', u'involv', u'alcohol', u'drug', u'studi']
[u'sponsor', u'threaten', u'drop', u'pie', u'speed']
[u'stab', u'spark', u'fear', u'doc', u'worker']
[u'steal', u'bike', u'recov', u'death', u'probe']
[u'sugar', u'industri', u'hope', u'surg', u'help', u'sale']
[u'survey', u'highlight', u'dubbo', u'crime', u'statist']
[u'sydney', u'council', u'continu', u'fight', u'save', u'tree']
[u'talk', u'begin', u'land', u'hand', u'plan']
[u'tassal', u'target', u'achiev', u'profit']
[u'teenag', u'sensat', u'shoot', u'boomer', u'squad']
[u'terrorist', u'win', u'malaysian', u'warn']
[u'timber', u'shortag', u'dri', u'work']
[u'tornado', u'storm', u'kill', u'seven', u'midwest']
[u'tourist', u'head', u'south', u'holiday']
[u'townsvill', u'budget', u'focus', u'green', u'issu']
[u'tribun', u'face', u'busi', u'night']
[u'ullrich', u'second', u'tour', u'germani', u'open']
[u'umaga', u'say', u'black', u'work']
[u'probe', u'iraqi', u'assault', u'theft']
[u'vaughan', u'second', u'test']
[u'vettori', u'shin', u'kiwi', u'complet', u'tour']
[u'polic', u'investig', u'corrupt', u'claim']
[u'polic', u'apologis', u'student']
[u'water', u'restrict', u'tighten']
[u'waugh', u'go', u'murali']
[u'weaker', u'demand', u'caus', u'manufactur', u'slowdown']
[u'weather', u'play', u'role', u'miss', u'search']
[u'wheatbelt', u'farmer', u'enjoy', u'rain']
[u'wild', u'woe', u'spark', u'resourc']
[u'wit', u'suggest', u'saudi', u'deal', u'allow', u'gunmen', u'escap']
[u'wit', u'fatal', u'shoot', u'urg', u'come', u'forward']
[u'wollongong', u'council', u'reject', u'lagoon', u'damag', u'claim']
[u'woman', u'steal', u'work']
[u'women', u'intimid', u'chamber']
[u'worri', u'air', u'shire', u'associ']
[u'accc', u'investig', u'termit', u'barrier', u'complaint']
[u'alic', u'intens', u'care', u'unit', u'crisi']
[u'american', u'footbal', u'star', u'kill', u'friend']
[u'american', u'footbal', u'star', u'tillman', u'kill', u'friend']
[u'american', u'surviv', u'saudi', u'attack']
[u'ankl', u'injuri', u'hit', u'beckham', u'euro', u'prepar']
[u'hit', u'time', u'high']
[u'aussi', u'davi', u'miss', u'stage', u'ullrich', u'hold', u'second']
[u'aussi', u'girl', u'crown', u'miss', u'univers']
[u'australian', u'terror', u'case', u'delay', u'lebanon']
[u'australia', u'join', u'french', u'forc', u'joint', u'exercis']
[u'australia', u'play', u'test', u'india']
[u'babi', u'death', u'prompt', u'counsel', u'offer']
[u'babi', u'suffer', u'systemat', u'abus', u'court', u'tell']
[u'bairnsdal', u'myer', u'close', u'door']
[u'bank', u'plan']
[u'best', u'person', u'judg', u'appoint', u'opposit']
[u'goat', u'meat', u'export', u'plan', u'afoot', u'abattoir']
[u'blackout', u'adelaid']
[u'blair', u'hail', u'iraqi', u'cabinet']
[u'blaze', u'prove', u'cost', u'council']
[u'boy', u'charg', u'theft']
[u'brack', u'admit', u'wider', u'fitzgerald', u'investig']
[u'cabinet', u'consid', u'roadsid', u'drug', u'test']
[u'cahil', u'lead', u'fiji', u'rout']
[u'cahil', u'lead', u'socceroo', u'rout', u'fiji']
[u'caley', u'fail', u'scottish', u'premier', u'leagu']
[u'altern', u'way', u'water', u'crisi']
[u'govt', u'maintain', u'pine', u'plantat', u'control']
[u'call', u'investig', u'mainten', u'machin']
[u'call', u'pork', u'industri', u'stop', u'oppos', u'import']
[u'cane', u'farmer', u'fail', u'meet', u'sugar', u'packag', u'criteria']
[u'carey', u'tell', u'crow', u'critic']
[u'chamber', u'reject', u'plan', u'mine', u'chang']
[u'church', u'admit', u'failur', u'paedophil', u'scandal']
[u'church', u'group', u'requir', u'report', u'abus']
[u'coast', u'enjoy', u'rain', u'inland']
[u'coff', u'endur', u'bypass', u'reject']
[u'colleg', u'seek', u'help', u'stop', u'attack']
[u'communiti', u'welcom', u'roch', u'sentenc']
[u'compo', u'come', u'fish', u'closur', u'boswel']
[u'concern', u'air', u'mine', u'review', u'delay']
[u'conserv', u'group', u'hail', u'iceland', u'whale', u'decis']
[u'corangamit', u'shire', u'hous', u'price', u'rise']
[u'coria', u'henman', u'french', u'open', u'semi']
[u'council', u'applaud', u'develop']
[u'council', u'consid', u'voucher']
[u'council', u'like', u'hunter', u'tourism', u'plan']
[u'council', u'push', u'close', u'rail', u'relat']
[u'council', u'reject', u'sandon', u'claim']
[u'council', u'urg', u'desalin', u'trial']
[u'court', u'set', u'free', u'son', u'kill']
[u'creditor', u'meet', u'consid', u'gympi', u'gold', u'futur']
[u'daewoo', u'price', u'tip', u'fall', u'australian']
[u'darwin', u'receiv', u'record', u'break', u'rain']
[u'debat', u'continu', u'river', u'mouth', u'open']
[u'decis', u'immin', u'bakhtiyari']
[u'defenc', u'sum', u'murder', u'trial']
[u'demetriou', u'say', u'extra', u'camera', u'option']
[u'dfat', u'know', u'iraq', u'prison', u'claim']
[u'domest', u'violenc', u'survivor', u'speak']
[u'doubt', u'cast', u'pitjantjatjara']
[u'driver', u'warn', u'avoid', u'dirt', u'road', u'heavi', u'rain']
[u'time', u'break', u'hill']
[u'dutch', u'beat', u'faro', u'fail', u'impress']
[u'econom', u'growth', u'slow', u'rat', u'steadi']
[u'eden', u'wharf', u'log', u'china', u'export']
[u'elder', u'deni', u'have', u'proceed', u'drug', u'sale']
[u'email', u'reviv', u'call', u'probe', u'halliburton', u'cheney']
[u'emerg', u'communic', u'get', u'upgrad']
[u'eriksson', u'blame', u'fatigu', u'lacklustr', u'perform']
[u'exot', u'reptil', u'seiz', u'raid']
[u'falconio', u'hear', u'tell', u'home', u'handcuff']
[u'farina', u'ring', u'chang', u'fiji', u'clash']
[u'farm', u'group', u'seek', u'higher', u'milk', u'price']
[u'fitzgerald', u'appoint', u'critic']
[u'kill', u'hurt', u'baghdad', u'blast']
[u'franc', u'alert', u'anniversari']
[u'fund', u'flow', u'crop', u'research']
[u'gallant', u'bangladesh', u'earn', u'deserv', u'draw']
[u'gaudio', u'roll', u'hewitt', u'reach', u'french', u'open', u'semi']
[u'geraldton', u'fuel', u'price', u'reach', u'near', u'record']
[u'gippsland', u'footi', u'club', u'face', u'shake']
[u'gold', u'coast', u'unfaz', u'land', u'protect', u'plan']
[u'govt', u'dismiss', u'iraq', u'prison']
[u'govt', u'spend', u'iraq', u'grain', u'facil']
[u'govt', u'spend', u'promot', u'medicar']
[u'grain', u'grower', u'await', u'rainfal', u'outcom']
[u'grand', u'prix', u'doctor', u'clear', u'unprofession', u'conduct']
[u'grey', u'lead', u'young', u'waratah', u'scotland']
[u'gunmen', u'trick', u'deal', u'saudi', u'advis']
[u'hall', u'clear', u'strike']
[u'health', u'servic', u'see', u'stomach', u'troubl']
[u'hewitt', u'prepar', u'quarter', u'final']
[u'high', u'wind', u'forc', u'athen', u'roof', u'delay']
[u'hill', u'play', u'water', u'conserv', u'impact']
[u'hop', u'fade', u'miss', u'fisher']
[u'hotel', u'join', u'forc', u'address', u'violenc']
[u'hous', u'project', u'plan', u'gatton']
[u'howard', u'respons', u'mislead', u'iraq', u'advic', u'labor']
[u'hundr', u'cannabi', u'plant', u'seiz', u'raid']
[u'iemma', u'put', u'condit', u'hospit', u'visit']
[u'illeg', u'reptil', u'seiz', u'factori', u'raid']
[u'indigen', u'report', u'recommend', u'radic', u'overhaul']
[u'indonesia', u'expel', u'terror', u'expert']
[u'inmat', u'discov', u'prison', u'plan']
[u'inquest', u'hear', u'bushfir', u'respons', u'plan', u'prepar']
[u'rat', u'leav', u'unchang']
[u'invstig', u'recommend', u'hospit', u'staff']
[u'iraqi', u'unimpress', u'govern']
[u'irish', u'rooki', u'win', u'blue', u'berth']
[u'irrig', u'rais', u'doubt', u'merger', u'plan', u'support']
[u'isra', u'armi', u'launch', u'raid', u'gaza', u'camp']
[u'isra', u'troop', u'shoot', u'dead', u'palestinian', u'gunmen']
[u'japan', u'derail', u'england', u'euro', u'prepar']
[u'japanes', u'girl', u'admit', u'murder', u'intent']
[u'japanes', u'put', u'focus', u'parent']
[u'jordan', u'quest', u'save', u'dead']
[u'julia', u'robert', u'expect', u'twin']
[u'june', u'hop', u'award', u'help', u'case', u'independ']
[u'khazaal', u'know', u'asio']
[u'king', u'kahn', u'trafford', u'target', u'report']
[u'kiwi', u'wait', u'injur', u'pair']
[u'societi', u'unhappi', u'suspect', u'name', u'coroni']
[u'lawyer', u'say', u'year', u'charg', u'unfair']
[u'leak', u'report', u'genuin', u'polic', u'reveal']
[u'leichhardt', u'trace', u'explor', u'journey']
[u'doblo', u'creditor', u'meet']
[u'lib', u'labor', u'criticis', u'roch', u'sentenc']
[u'local', u'govt', u'group', u'see', u'eas', u'council', u'merger']
[u'lockyer', u'hop', u'return', u'shark', u'clash']
[u'long', u'wait', u'school', u'sale', u'end']
[u'critic', u'hurt', u'cotton', u'plant', u'accid']
[u'face', u'court', u'petrol', u'station', u'shoot']
[u'nail', u'remov', u'neck']
[u'court', u'gunfir']
[u'mayor', u'candid', u'question', u'vote', u'count']
[u'mechan', u'join', u'worker', u'shortag', u'list']
[u'meet', u'clarifi', u'rate', u'rise', u'plan']
[u'speed', u'limit', u'disput', u'head']
[u'minist', u'reveal', u'detail', u'pipelin']
[u'miss', u'file', u'worri', u'anti', u'corrupt', u'group']
[u'mitsui', u'invest', u'ethanol', u'plant']
[u'moor', u'anti', u'bush', u'film', u'debut']
[u'mourinho', u'name', u'chelsea', u'manag']
[u'mourinho', u'chelsea', u'ranieri', u'eye', u'valencia']
[u'contest', u'dali', u'elector']
[u'murder', u'accus', u'tell', u'court', u'rememb']
[u'murdoch', u'associ', u'expect', u'evid']
[u'murdoch', u'speak', u'get', u'bodi']
[u'nat', u'question', u'interst', u'contract']
[u'nepal', u'king', u'appoint', u'fire']
[u'newspap', u'adopt', u'compact', u'edit']
[u'fuel', u'price', u'respit', u'sight']
[u'norfolk', u'island', u'inquest', u'reveal', u'victim', u'injuri']
[u'norfolk', u'murder', u'inquest', u'conclus', u'expect']
[u'command', u'deni', u'critic', u'emerg']
[u'give', u'drug', u'treatment', u'jail', u'ahead']
[u'sign', u'read', u'scheme']
[u'teacher', u'consid', u'strike']
[u'nurs', u'claim', u'pressur', u'compromis', u'patient', u'care']
[u'polic', u'continu', u'search', u'miss', u'tourist']
[u'obeid', u'defend', u'time', u'lebanon']
[u'rat', u'help', u'australian', u'market', u'surg']
[u'oppn', u'air', u'forest', u'fear']
[u'panther', u'boss', u'hop', u'rabbitoh']
[u'parent', u'want', u'flexibl', u'budget', u'money']
[u'park', u'scrap', u'say', u'group']
[u'parri', u'earn', u'open', u'exempt']
[u'piston', u'laker', u'titl']
[u'plan', u'boral', u'upgrad', u'promis', u'job', u'boost']
[u'player', u'revolt', u'forc', u'langmack', u'sack']
[u'welcom', u'interim', u'iraqi', u'govern']
[u'cabinet', u'discuss', u'australian', u'polic', u'deal']
[u'polic', u'offic', u'want', u'bail', u'condit', u'chang']
[u'polic', u'search', u'vandal']
[u'polic', u'appeal', u'tortur', u'sentenc']
[u'polic', u'wont', u'toler', u'hoon']
[u'port', u'form', u'ship', u'berth', u'plan']
[u'post', u'mortem', u'cyclist']
[u'prais', u'extend', u'cray', u'season']
[u'egg', u'threaten', u'industri']
[u'raikkonen', u'encourag', u'mclaren']
[u'reibey', u'famili', u'speak', u'ental', u'hous']
[u'reserv', u'bank', u'predict', u'strong', u'global', u'growth']
[u'retail', u'pleas', u'consist', u'spend']
[u'richmond', u'request', u'second', u'opinion', u'financ']
[u'roch', u'lawyer', u'consid', u'terror', u'sentenc', u'appeal']
[u'rower', u'edward', u'set', u'sight', u'athen', u'gold']
[u'scientist', u'job', u'threat']
[u'scientist', u'press', u'allow', u'stem', u'cell', u'research']
[u'scientist', u'recognis', u'frog', u'discoveri']
[u'search', u'call', u'miss', u'walk']
[u'search', u'miss', u'postpon']
[u'second', u'charg', u'court', u'wit', u'kill']
[u'secur', u'boost', u'plan', u'airport']
[u'sewag', u'leak', u'prompt', u'construct', u'worker', u'protest']
[u'slower', u'econom', u'growth', u'tip']
[u'southcorp', u'vintag', u'increas']
[u'state', u'school', u'teacher', u'strike']
[u'studi', u'show', u'mental', u'ill', u'treat']
[u'studi', u'focus', u'water', u'suppli', u'woe']
[u'support', u'show', u'renmark', u'develop', u'plan']
[u'surg', u'price', u'push', u'market', u'higher']
[u'survey', u'show', u'injuri', u'declin']
[u'sydney', u'court', u'grant', u'terror', u'suspect', u'bail']
[u'sydney', u'charg', u'incit', u'terror']
[u'tamil', u'strike', u'journalist', u'slay']
[u'polic', u'face', u'sack', u'cheat', u'scandal']
[u'teacher', u'condemn', u'strike', u'action']
[u'temporari', u'dig', u'ambul']
[u'tender', u'seek', u'second', u'dysart', u'motel']
[u'thailand', u'liverpool', u'plan', u'track', u'offici']
[u'charg', u'petrol', u'station', u'murder']
[u'thorn', u'dump', u'black']
[u'treasur', u'warn', u'effect', u'high', u'price']
[u'trial', u'pest', u'plant', u'export']
[u'tribun', u'decid', u'council', u'rise']
[u'road', u'crash']
[u'saudi', u'arabia', u'open', u'tap']
[u'union', u'will', u'swap', u'better', u'super']
[u'rais', u'question', u'iran', u'nuclear', u'plan']
[u'take', u'haiti', u'peacekeep']
[u'doubl', u'iraq', u'afghanistan', u'misconduct', u'case', u'list']
[u'accus', u'plan', u'apart', u'block', u'attack']
[u'offer', u'resolut', u'iraq']
[u'valencia', u'benitez', u'swap', u'orang', u'red']
[u'vaughan', u'ponder', u'perman', u'order']
[u'vcat', u'clear', u'doctor', u'unprofession', u'conduct']
[u'victim', u'undecid', u'sue', u'cathol', u'church']
[u'victoria', u'push', u'super', u'inclus']
[u'wast', u'regist', u'propos', u'wide', u'busi']
[u'water', u'restrict', u'eurobodalla']
[u'want', u'stay', u'number', u'woodward']
[u'william', u'sister', u'send', u'pack', u'pari']
[u'wine', u'group', u'disgruntl', u'unclear', u'clean', u'skin']
[u'delay', u'sanction', u'rule']
[u'seek', u'ararat', u'energi', u'park']
[u'criticis', u'play', u'school', u'stori', u'time']
[u'aborigin', u'burial', u'tree', u'halt', u'cowra', u'develop']
[u'achiev', u'mabo', u'celebr']
[u'milan', u'humili', u'china']
[u'govt', u'target', u'bushfir', u'communic', u'failur']
[u'offici', u'reject', u'respons', u'critic']
[u'secur', u'emerg', u'servic', u'fund']
[u'adventur', u'target', u'complet', u'solo', u'desert', u'trek']
[u'agronomist', u'hope', u'rain', u'season']
[u'qaeda', u'claim', u'attack', u'militari', u'saudi']
[u'ambul', u'union', u'consid', u'industri', u'unrest']
[u'amnesti', u'seek', u'nation', u'domest', u'violenc', u'strategi']
[u'anderson', u'quit', u'warrior']
[u'anti', u'terror', u'bail', u'law', u'pass', u'parliament']
[u'archbishop', u'say', u'senior', u'church', u'figur']
[u'atsic', u'commission', u'welcom', u'senat', u'inquiri']
[u'aussi', u'wipe', u'surf', u'championship']
[u'australia', u'face', u'fight', u'maintain', u'iraq', u'wheat']
[u'australia', u'respons', u'iraq', u'prison', u'downer']
[u'babi', u'hospit', u'bleach', u'accid']
[u'bakhtiyari', u'children', u'remain', u'detent']
[u'bayer', u'pull', u'canola', u'trial']
[u'beatti', u'prais', u'mackay', u'china', u'export', u'deal']
[u'bewar', u'work', u'home', u'scam', u'asic', u'say']
[u'crowd', u'protest', u'toxic', u'wast', u'dump', u'plan']
[u'blaze', u'destroy', u'unit']
[u'blignaut', u'sign', u'tasmania']
[u'blue', u'coach', u'rule']
[u'bodi', u'spark', u'polic', u'help']
[u'booksel', u'hope', u'clinton', u'book', u'help', u'line']
[u'boro', u'swoop', u'viduka']
[u'britain', u'traffic', u'oper']
[u'british', u'research', u'warn', u'race', u'riot']
[u'burn', u'victim', u'save', u'revolutionari', u'treatment']
[u'chief', u'unhappi', u'driver', u'strike']
[u'bush', u'liken', u'terror', u'wwii']
[u'bush', u'hire', u'lawyer', u'probe', u'leak']
[u'busi', u'warn', u'rise', u'truck', u'transport', u'cost']
[u'byron', u'council', u'boost']
[u'boundari', u'chang', u'rethink']
[u'camel', u'trek', u'hump', u'bump', u'hamper', u'trip']
[u'cattl', u'drive', u'herd', u'tourist', u'birdsvill']
[u'challeng', u'lure', u'richardson', u'rabbitoh']
[u'chamber', u'upbeat', u'gold', u'coast', u'futur']
[u'ask', u'probe', u'decis', u'volker']
[u'coach', u'back', u'england', u'hous', u'pain', u'threshold']
[u'confer', u'tackl', u'urban', u'infrastructur', u'woe']
[u'coron', u'deliv', u'open', u'find', u'norfolk', u'murder']
[u'coron', u'urg', u'chang', u'accid', u'search', u'procedur']
[u'council', u'budget', u'includ', u'rate', u'rise']
[u'council', u'promis', u'reduc', u'budget', u'deficit']
[u'council', u'protest', u'health', u'merger', u'plan']
[u'council', u'want', u'nation', u'park', u'revenu']
[u'crawford', u'say', u'season']
[u'dairi', u'farmer', u'urg', u'opportun']
[u'date', u'privat', u'space', u'flight']
[u'deal', u'strike', u'valuer', u'disput']
[u'defenc', u'commiss', u'earli', u'warn', u'aircraft']
[u'defenc', u'dept', u'investig', u'prison', u'abus']
[u'democrat', u'lobbi', u'senat', u'reject']
[u'destroy', u'villag', u'build']
[u'domest', u'violenc', u'tackl', u'pacif']
[u'downer', u'visit', u'focus', u'program']
[u'appeal', u'terror', u'suspect', u'bail']
[u'congo', u'town', u'fall', u'renegad', u'troop']
[u'drink', u'driver', u'visit', u'die', u'brother']
[u'drop', u'charg', u'polit', u'influenc']
[u'drug', u'fulham']
[u'ecuador', u'send', u'colombia', u'qualifi', u'defeat']
[u'egyptian', u'turk', u'hold', u'hostag', u'iraq', u'footag']
[u'ental', u'hous', u'woe', u'continu']
[u'environment', u'concern', u'blame', u'popul', u'growth']
[u'expect', u'corrupt', u'revel']
[u'expert', u'predict', u'terrorist', u'dirti', u'bomb']
[u'falconio', u'murder', u'hear', u'adjourn', u'august']
[u'famili', u'want', u'mabo', u'public', u'holiday']
[u'farmer', u'welcom', u'west', u'rain']
[u'fewer', u'cattl', u'duf', u'report', u'lucindal']
[u'figur', u'point', u'declin', u'servic', u'sector']
[u'figur', u'predict', u'soft', u'land', u'hous', u'price']
[u'finetun', u'underway', u'lachlan']
[u'lighter', u'hold', u'respons']
[u'fish', u'kill', u'clean', u'prove', u'cost']
[u'worker', u'kill', u'afghanistan', u'ambush']
[u'fli', u'doctor', u'open', u'longreach', u'base']
[u'foursom', u'face', u'court', u'follow', u'drug', u'raid']
[u'freeman', u'proud', u'torchbear']
[u'fruit', u'grower', u'protest', u'appl', u'import']
[u'german', u'outmuscl', u'swiss', u'combat', u'euro', u'warm']
[u'gladston', u'port', u'get', u'boost']
[u'glaxosmithklin', u'sue', u'anti', u'depress']
[u'govt', u'accus', u'gag', u'road', u'safeti', u'taskforc']
[u'govt', u'ahead', u'schedul', u'drop', u'poison']
[u'govt', u'announc', u'child', u'care']
[u'govt', u'defend', u'propos', u'elector', u'roll', u'chang']
[u'govt', u'move', u'parol', u'period', u'convict']
[u'govt', u'unabl', u'iraq', u'detaine', u'agreement']
[u'green', u'endors', u'candid', u'wide']
[u'grey', u'nomad', u'outback', u'work', u'experi']
[u'grower', u'wine', u'grape', u'price', u'hard', u'swallow']
[u'growth', u'slowdown', u'hit', u'dollar']
[u'heathrow', u'flight', u'sever', u'disrupt']
[u'hewitt', u'switch', u'focus', u'grass']
[u'hick', u'habib', u'abus', u'aust', u'offici']
[u'high', u'hop', u'miner', u'explor', u'near', u'zeehan']
[u'hill', u'unabl', u'provid', u'iraq', u'prison', u'protocol']
[u'hobgood', u'near', u'perfect', u'surf', u'championship']
[u'hobgood', u'near', u'perfect', u'surf', u'championship']
[u'hospit', u'target', u'medic', u'overdos']
[u'howard', u'lobbi', u'schwarzenegg']
[u'huge', u'blast', u'rock', u'base', u'kirkuk', u'wit']
[u'improv', u'insur', u'cover', u'public', u'hospit']
[u'india', u'cricket', u'admit', u'tri', u'bribe', u'selector']
[u'indonesian', u'boat', u'master', u'jail', u'illeg', u'fish']
[u'indonesian', u'expuls', u'terror', u'expert', u'outrag']
[u'inquest', u'start', u'firefight', u'death']
[u'ireland', u'silenc', u'regga', u'boyz']
[u'jone', u'win', u'gold', u'mont', u'carlo', u'meet']
[u'korean', u'charg', u'heroin', u'drug', u'bust']
[u'labor', u'lodg', u'bias', u'complaint']
[u'larg', u'jump', u'outlet', u'sell', u'firework']
[u'live', u'export', u'cost', u'taxpay', u'activist']
[u'mackay', u'kill', u'hit', u'tree']
[u'macquari', u'unveil', u'plan', u'radio', u'station']
[u'malaysian', u'call', u'singl', u'asian', u'currenc']
[u'manag', u'appoint', u'bathurst', u'council']
[u'mango', u'grower', u'struggl', u'profit']
[u'market', u'weather', u'high', u'price']
[u'mayor', u'highlight', u'hide', u'amalgam', u'cost']
[u'mccartney', u'admit', u'take', u'heroin', u'cocain']
[u'mcevoy', u'seek', u'maiden', u'european', u'classic']
[u'mcmillan', u'injuri', u'latest', u'blow', u'black', u'cap']
[u'meet', u'discuss', u'kosciuszko', u'plan']
[u'meet', u'fli', u'doctor', u'concern']
[u'megawati', u'face', u'massiv', u'defeat', u'poll']
[u'michael', u'jackson', u'clear', u'child', u'abus']
[u'mine', u'delay', u'creat', u'amec', u'concern']
[u'minist', u'critic', u'bail', u'terror', u'suspect']
[u'miss', u'phone', u'home']
[u'mitsubishi', u'admit', u'cover', u'defect']
[u'time', u'gympi', u'gold', u'rescu']
[u'moroney', u'move', u'appeal', u'khazal', u'bail', u'decis']
[u'mortgag', u'struggl', u'repay', u'report']
[u'claim', u'autism', u'abus']
[u'tell', u'macquari', u'marsh', u'plight']
[u'murder', u'releas', u'prison']
[u'murdoch', u'proceed', u'ahead', u'schedul']
[u'nalbandian', u'oust', u'kuerten', u'hewitt', u'demolish']
[u'nasa', u'consid', u'shuttl', u'plan', u'hubbl']
[u'nation', u'strategi', u'need', u'aborigin', u'child']
[u'nat', u'seek', u'water', u'work', u'parti']
[u'drug', u'colon', u'cancer', u'surgeri', u'surviv', u'rate']
[u'law', u'stop', u'bail', u'terror', u'suspect']
[u'nixon', u'ban', u'alleg', u'drug', u'traffick', u'crown']
[u'place', u'zimbabw', u'team', u'south', u'africa']
[u'plan', u'euthanis', u'sick', u'polar', u'bear']
[u'approv', u'australia', u'drug', u'treatment', u'jail']
[u'obeid', u'absenc', u'spark', u'parliamentari', u'attend']
[u'obeid', u'defend', u'censur']
[u'obeid', u'surviv', u'censur', u'motion']
[u'drop']
[u'olymp', u'flame', u'leav', u'greec', u'bind', u'sydney']
[u'olymp', u'torch', u'touch', u'sydney']
[u'opec', u'agre', u'increas', u'output']
[u'opec', u'expect', u'increas', u'product']
[u'open', u'find', u'expect', u'norfolk', u'murder', u'inquest']
[u'oppn', u'call', u'child', u'support', u'fund']
[u'opposit', u'accus', u'smear', u'defenc', u'forc']
[u'pacif', u'island', u'urg', u'australia', u'greenhous']
[u'parliament', u'hear', u'wagga', u'surgeri', u'woe']
[u'plan', u'target', u'indigen', u'domest', u'violenc']
[u'player', u'assoc', u'time', u'agre']
[u'bush', u'break', u'breakfast']
[u'meet', u'bush', u'abus', u'alleg']
[u'unconvinc', u'iraq', u'troop', u'withdraw', u'deadlin']
[u'disput', u'legal', u'immun', u'australian', u'worker']
[u'polic', u'investig', u'racist', u'graffiti']
[u'polic', u'charg', u'strike', u'forc', u'swoop']
[u'polic', u'raid', u'uncov', u'illeg', u'firearm']
[u'polic', u'probe', u'attempt', u'abduct']
[u'polic', u'tell', u'driver', u'repons']
[u'portug', u'scolari', u'mull', u'mourinho']
[u'potter', u'smash', u'british', u'offic', u'record']
[u'pressur', u'mount', u'inquiri', u'abus', u'claim']
[u'public', u'input', u'seek', u'rail', u'timet']
[u'push', u'rodeo', u'cours', u'region', u'school']
[u'qanta', u'urg', u'lower', u'kalgoorli', u'price']
[u'rain', u'boost', u'grain', u'crop', u'plant']
[u'ranieri', u'valencia']
[u'rebel', u'kill', u'algeria']
[u'resign', u'delay', u'elect', u'surgeri']
[u'rfds', u'stay', u'away', u'communiti', u'meet']
[u'ronaldo', u'penalti', u'trick', u'sink', u'argentina']
[u'ruddock', u'flag', u'nation', u'bail', u'law', u'terror']
[u'russia', u'sell', u'iraq', u'resolut']
[u'consid', u'sexual', u'abus', u'inquiri']
[u'samoa', u'look', u'disciplin', u'claim', u'scottish']
[u'scheme', u'tackl', u'wild', u'woe']
[u'scientist', u'prepar', u'harvest', u'truffl', u'crop']
[u'scot', u'lose', u'streak', u'countri']
[u'search', u'orthopaed', u'surgeon']
[u'share', u'market', u'dip', u'yesterday', u'high']
[u'shire', u'rule', u'worker', u'camp']
[u'south', u'korea', u'olymp', u'offici', u'jail']
[u'specul', u'rife', u'aldi', u'toowoomba', u'store']
[u'speed', u'player', u'jeopardis', u'pie', u'sponsorship']
[u'station', u'owner', u'face', u'attempt', u'murder', u'charg']
[u'strike', u'rail', u'worker', u'expect', u'track']
[u'studi', u'consid', u'indigen', u'settlement']
[u'summit', u'capit', u'citi', u'sustain', u'strategi']
[u'sydney', u'level', u'histor']
[u'govt', u'seek', u'recognit', u'macquari', u'wetland']
[u'tasmania', u'sign', u'zimbabw', u'rounder', u'blignaut']
[u'teacher', u'work', u'industri', u'unrest']
[u'terror', u'suspect', u'victim', u'polit', u'thuggeri']
[u'injur', u'timor', u'chopper', u'crash']
[u'time', u'run', u'rail', u'closur', u'submiss']
[u'triathlet', u'face', u'uphil', u'battl', u'olymp', u'medal']
[u'troop', u'timor', u'mission']
[u'turkey', u'fail', u'protect', u'women', u'report']
[u'career', u'beckham', u'alleg', u'lover', u'stall']
[u'surgic', u'gown', u'fetishist', u'ban', u'hospit']
[u'denounc', u'expuls', u'indonesian', u'analyst']
[u'militari', u'secur', u'extra', u'billion', u'iraq']
[u'move', u'tone', u'prison', u'abus', u'report']
[u'vail', u'outlin', u'case', u'wheat', u'grower', u'compo']
[u'vaughan', u'drop', u'number']
[u'vehicl', u'sale', u'high', u'despit', u'fuel', u'cost']
[u'ombudsman', u'grant', u'power', u'combat']
[u'parliament', u'pass', u'forest', u'unchang']
[u'polic', u'corrupt', u'report', u'tabl', u'parliament']
[u'politician', u'bust', u'booz']
[u'victorian', u'die', u'hospit']
[u'polic', u'anti', u'corrupt', u'power', u'fund']
[u'water', u'restrict', u'remain']
[u'woman', u'acquit', u'boyfriend', u'murder']
[u'woman', u'charg', u'govt', u'offic', u'blaze', u'get', u'bail']
[u'woman', u'get', u'harass', u'payout']
[u'wood', u'singh', u'head', u'star', u'stud', u'field', u'memori']
[u'wood', u'singh', u'head', u'star', u'stud', u'memori', u'field']
[u'zimbabw', u'cricket', u'futur', u'remain', u'unclear']
[u'power', u'station', u'includ', u'coal', u'plan']
[u'aborigin', u'kid', u'closur', u'ceremoni']
[u'hamza', u'face', u'extradit', u'hear']
[u'govt', u'criticis', u'resettl', u'report']
[u'govt', u'urg', u'follow', u'bail', u'chang']
[u'aerial', u'survey', u'highlight', u'illeg', u'land', u'clear']
[u'agreement', u'close', u'program']
[u'ail', u'alaska', u'killer', u'whale', u'protect']
[u'airport', u'master', u'plan', u'promis', u'job', u'aplenti']
[u'akhtar', u'miss', u'asia', u'pakistan', u'plan']
[u'alga', u'increas', u'heat', u'toler', u'coral']
[u'white', u'thrash', u'tahiti']
[u'anger', u'govt', u'respons', u'energi', u'plant']
[u'angri', u'crowd', u'confront', u'minist', u'toxic', u'wast']
[u'kookaburra']
[u'anti', u'demo', u'congo', u'dead', u'capit']
[u'appeal', u'schedul', u'terror', u'suspect', u'grant', u'bail']
[u'archbishop', u'deni', u'approv', u'royal', u'wed']
[u'archbishop', u'deni', u'receiv', u'abus', u'warn']
[u'asia', u'pacif', u'trade', u'chief', u'push', u'agenda']
[u'atsic', u'council', u'chairman', u'welcom', u'inquiri']
[u'auction', u'sell', u'william', u'item']
[u'aussi', u'davi', u'second', u'tour', u'germani']
[u'australian', u'pullout', u'disastr', u'bush']
[u'australian', u'sailor', u'injur', u'solomon', u'mishap']
[u'australian', u'domin', u'mont', u'carlo', u'pool']
[u'member', u'happi', u'corridor', u'contract']
[u'babi', u'eager', u'enter', u'world']
[u'bakhtiari', u'children', u'live', u'mother']
[u'banana', u'disput', u'threaten', u'aust', u'dairi', u'export']
[u'beck', u'back', u'club', u'england', u'euro', u'triumph']
[u'bendigo', u'buddhist', u'templ', u'work', u'begin']
[u'bevan', u'play', u'tiger']
[u'fight', u'mine', u'royalti', u'impos', u'peru']
[u'blind', u'injur', u'robberi']
[u'brack', u'defend', u'oversea', u'trip', u'despit', u'corrupt']
[u'brereton', u'quit', u'polit']
[u'bronco', u'undecid', u'play', u'lockyer']
[u'build', u'approv', u'unexpect', u'rise']
[u'bush', u'accus', u'meddl', u'aust', u'polit']
[u'bush', u'arriv', u'itali']
[u'bush', u'begin', u'europ', u'trip', u'vatican', u'visit']
[u'campaign', u'aim', u'farm', u'death']
[u'capit', u'citi', u'hous', u'price', u'continu', u'rise']
[u'casa', u'step', u'airlin', u'inspect']
[u'central', u'tourism', u'leader', u'quit']
[u'cessna', u'crash', u'victim', u'lucki', u'aliv']
[u'chelsea', u'veron', u'join', u'inter', u'year', u'loan']
[u'china', u'boycott', u'talk', u'taiwan']
[u'china', u'alert', u'tiananmen', u'squar', u'anniversari']
[u'church', u'chariti', u'rider', u'bare', u'nude', u'cyclist']
[u'chief', u'tenet', u'quit']
[u'head', u'push', u'bush']
[u'claim', u'abus', u'disabl', u'investig']
[u'clinton', u'releas', u'memoir']
[u'coach', u'tip', u'harrop', u'olymp', u'glori']
[u'compani', u'charg', u'death', u'worker']
[u'councillor', u'quit', u'chair', u'committe']
[u'council', u'reject', u'ratepay', u'attack']
[u'council', u'urg', u'irrig', u'plan']
[u'council', u'offer', u'loan']
[u'crow', u'blue', u'physic']
[u'crunch', u'time', u'kiwi', u'soccer', u'dream']
[u'crunch', u'time', u'kiwi', u'world', u'dream']
[u'custom', u'seiz', u'huge', u'drug', u'shipment']
[u'cyclon', u'traci', u'name', u'heritag', u'icon']
[u'spillway', u'plan', u'realiti']
[u'decis', u'westralia', u'servic', u'prais']
[u'defenc', u'minist', u'discuss', u'arm', u'control', u'asia']
[u'deputi', u'coff', u'visit']
[u'develop', u'freez', u'anger', u'daintre', u'land']
[u'doblo', u'creditor', u'meet']
[u'doc', u'manag', u'urg', u'improv', u'secur']
[u'draft', u'budget', u'deliv', u'rate', u'rise']
[u'econom', u'growth', u'target', u'macfarlan', u'say']
[u'elder', u'coupl', u'convict', u'cannabi', u'charg']
[u'curti', u'memori', u'pace']
[u'timor', u'open', u'compromis']
[u'explos', u'victim', u'condit', u'improv']
[u'falconio', u'disappear', u'affect', u'tourism']
[u'farmer', u'warn', u'locust', u'outbreak']
[u'fear', u'program', u'damag', u'australia', u'tie']
[u'fear', u'violenc', u'french', u'polynesia', u'presidenti']
[u'fear', u'shearer', u'number', u'declin']
[u'firefight', u'inquest', u'expect', u'today']
[u'fisherman', u'say', u'shark', u'popul', u'risk']
[u'flood', u'threaten', u'disast', u'area', u'fiji']
[u'health', u'servic', u'chairman', u'slam', u'merger', u'plan']
[u'leader', u'green', u'stand', u'senat']
[u'injur', u'plane', u'crash']
[u'frawley', u'play', u'coach', u'specul']
[u'frawley', u'unworri', u'coach', u'specul']
[u'fuel', u'price', u'jump', u'bendigo']
[u'gastro', u'outbreak', u'caus', u'surgeri', u'disrupt']
[u'gladston', u'port', u'author', u'welcom', u'merger']
[u'govt', u'move', u'boost', u'rail', u'freight']
[u'govt', u'urg', u'children', u'detent', u'centr']
[u'group', u'upset', u'rfds', u'meet', u'snub']
[u'propos', u'solv', u'crime', u'crisi']
[u'gun', u'ammunit', u'seiz', u'polic', u'raid']
[u'hawk', u'look', u'break', u'drought', u'bomber']
[u'health', u'servic', u'reject', u'surgeri', u'cancel', u'claim']
[u'hickss', u'father', u'sceptic', u'investig']
[u'houdini', u'exhibit', u'rile', u'magician']
[u'industri', u'action', u'break', u'power', u'disput']
[u'inquest', u'consid', u'fatal', u'crash', u'rescu', u'mishap']
[u'intern', u'club', u'hamilton']
[u'iraq', u'demand', u'foreign', u'forc']
[u'japanes', u'exchang', u'scheme', u'get', u'fund', u'boost']
[u'japanes', u'minist', u'spark', u'kill', u'comment']
[u'jockey', u'want', u'clear', u'year', u'charg']
[u'juri', u'find', u'guilti', u'murder']
[u'kidman', u'need', u'pad', u'produc', u'role']
[u'knight', u'free', u'kennedi', u'transfer', u'talk']
[u'korea', u'agre', u'packag', u'releas', u'border', u'tension']
[u'labor', u'green', u'criticis', u'prison', u'abus', u'probe']
[u'land', u'clear', u'plan']
[u'land', u'right', u'report', u'rubbish', u'aborigin']
[u'launceston', u'coupl', u'look', u'forward', u'torch', u'relay']
[u'laywer', u'attempt', u'stop', u'leski', u'inquest']
[u'lion', u'welcom', u'suspend']
[u'literaci', u'numeraci', u'boost', u'plan', u'riverland']
[u'lyon', u'allow', u'play']
[u'magpi', u'confid', u'mood', u'ahead', u'eagl', u'clash']
[u'arrest', u'canberra', u'casino', u'stab']
[u'rescu', u'boat', u'sink', u'gold', u'coast']
[u'court', u'marijuana', u'haul']
[u'market', u'flat', u'investor', u'wait', u'data']
[u'massacr', u'anniversari', u'pass', u'incid']
[u'mayor', u'reject', u'travel', u'meet']
[u'mexico', u'seek', u'probe', u'offici', u'women', u'murder']
[u'monti', u'banish', u'bogey', u'stake', u'welsh', u'open', u'claim']
[u'moor', u'releas', u'trailer']
[u'mother', u'warn', u'hospit', u'staffer', u'whoop']
[u'moth', u'export', u'zealand', u'combat', u'weed']
[u'critic', u'polic', u'resourc']
[u'reliev', u'elect', u'fight', u'exist']
[u'press', u'ahead', u'sewerag', u'scheme']
[u'upbeat', u'goulburn', u'valley', u'child', u'care', u'place']
[u'want', u'feder', u'payment', u'releas']
[u'want', u'hospit', u'report', u'public']
[u'want', u'indigen', u'job', u'scheme', u'expand']
[u'murder', u'jail', u'indefinit']
[u'myskina', u'dementieva', u'russian', u'final']
[u'nation', u'park', u'camper', u'urg', u'book', u'onlin']
[u'nation', u'blast', u'region', u'public', u'stunt']
[u'nation', u'trust', u'get', u'interst', u'help', u'stay', u'afloat']
[u'airlin', u'darwin']
[u'virus', u'target', u'bank', u'account', u'credit', u'card']
[u'zealand', u'hold', u'firm', u'sagger', u'strike']
[u'threat', u'pose', u'instal', u'asbesto', u'inquiri', u'tell']
[u'baffl', u'smoke', u'implement']
[u'defend', u'speedi', u'anti', u'terror', u'law']
[u'introduc', u'mandatori', u'liquor', u'accord']
[u'lower', u'spook', u'wall', u'street']
[u'oliv', u'harvest', u'near']
[u'olymp', u'cauldron', u'alight', u'sydney']
[u'olymp', u'flame', u'arriv', u'sydney']
[u'olymp', u'torch', u'relay', u'begin', u'australian', u'journey']
[u'pair', u'arrest', u'chase']
[u'pakistan', u'test', u'fire', u'second', u'ballist', u'missil']
[u'panel', u'decid', u'coff', u'fluorid']
[u'pursu', u'burswood', u'takeov']
[u'peponi', u'pledg', u'peac', u'stand']
[u'pie', u'lead', u'eagl', u'excit', u'clash']
[u'harvey', u'warm', u'australian', u'date']
[u'encourag', u'repons']
[u'polic', u'raid', u'uncov', u'gun']
[u'polic', u'accid', u'victim']
[u'pope', u'appeal', u'return', u'iraq', u'sovereignti']
[u'power', u'look', u'forward', u'lion', u'match']
[u'premier', u'hop', u'confer', u'dispel', u'ethanol', u'myth']
[u'princess', u'diana', u'mother', u'die']
[u'public', u'nolan', u'galleri']
[u'give', u'grey', u'water', u'green', u'light']
[u'govt', u'dismiss', u'anti', u'gambl', u'campaign']
[u'allow', u'grey', u'water']
[u'queiroz', u'confirm', u'return', u'trafford']
[u'cross', u'apologis', u'taint', u'blood', u'transfus']
[u'mitchel', u'skipper', u'youngster']
[u'region', u'area', u'expect', u'benefit', u'cheaper']
[u'region', u'hous', u'price', u'climb']
[u'region', u'veggi', u'grower']
[u'rehab', u'clinic', u'build', u'golf', u'cours', u'maradona']
[u'report', u'urg', u'council', u'merger', u'talk']
[u'reserv', u'bank', u'predict', u'hous', u'cool', u'phase']
[u'resid', u'flee', u'fight', u'erupt', u'iraq', u'holi', u'citi']
[u'resid', u'council', u'rat', u'structur']
[u'resid', u'tell', u'inquest', u'fight', u'fire', u'unaid']
[u'resid', u'view', u'seek', u'improv', u'town', u'futur']
[u'rossi', u'look', u'home']
[u'emerg', u'author', u'phone']
[u'ruddock', u'question', u'phone', u'tap']
[u'rumsfeld', u'regret', u'tenet', u'resign']
[u'rumsfeld', u'review', u'guantanamo', u'interrog']
[u'rural', u'issu', u'affect', u'farmer', u'confid']
[u'russian', u'market', u'explos', u'kill']
[u'sadr', u'loyalist', u'start', u'najaf', u'withdraw']
[u'govt', u'urg', u'boost', u'hospit', u'fund']
[u'santini', u'tottenham', u'manag']
[u'public', u'nurs', u'accept', u'offer']
[u'speaker', u'govt']
[u'saudi', u'terror', u'fear', u'overst', u'analyst']
[u'school', u'princip', u'youth', u'worker', u'finalist', u'state']
[u'seagul', u'half', u'tell', u'leagu', u'career']
[u'secur', u'laps', u'chief', u'georg', u'tenet']
[u'shark', u'receiv', u'treatment', u'raaf', u'airlift']
[u'sharon', u'sack', u'minist', u'settlement', u'vote', u'near']
[u'socceroo', u'goali', u'join']
[u'sorri', u'rot', u'hirst']
[u'spell', u'contest', u'lose', u'word']
[u'stab', u'accident', u'say', u'prosecut']
[u'steal', u'crime']
[u'green', u'endors', u'miln', u'senat']
[u'polic', u'boss', u'target', u'unfit', u'offic']
[u'teen', u'jail', u'crossbow', u'shoot']
[u'tenet', u'tenaci']
[u'tenterfield', u'includ', u'growth', u'strategi']
[u'think', u'tank', u'deni', u'influenc', u'donat']
[u'tini', u'fossil', u'complex', u'life', u'evolv', u'earli']
[u'tonga', u'star', u'bulldog', u'rout', u'rooster']
[u'train', u'passeng', u'court', u'drug']
[u'tuqiri', u'announc', u'delay', u'week']
[u'tuqiri', u'code', u'swap', u'deadlin', u'approach']
[u'marin', u'imprison', u'abus', u'iraqi', u'inmat']
[u'troop', u'wound', u'sadr', u'citi', u'ambush']
[u'venezuela', u'chavez', u'face', u'recal', u'vote']
[u'victoria', u'polic', u'ask', u'formul', u'bulli', u'polici']
[u'introduc', u'medic', u'indemn', u'chang']
[u'water', u'author', u'merger', u'expect', u'secur']
[u'weed', u'control', u'measur', u'underway', u'cooloola', u'shire']
[u'what', u'quack']
[u'william', u'clear', u'zimbabw', u'scare']
[u'women', u'children', u'kill', u'iraqi', u'citi', u'kufa']
[u'woodward', u'lament', u'lack', u'prepar', u'black']
[u'young', u'children', u'leav', u'homeless', u'tourist', u'strip']
[u'suspect', u'taliban', u'kill', u'afghanistan', u'report']
[u'survivor', u'award', u'record', u'damag']
[u'adelaid', u'archbishop', u'stay']
[u'chang', u'england', u'eriksson', u'scrap', u'diamond']
[u'prais', u'brereton', u'contribut']
[u'anstey', u'miss', u'athen']
[u'anti', u'bush', u'protest', u'ban', u'pari']
[u'arrest', u'fatal', u'gang', u'fight']
[u'aussi', u'davi', u'win', u'tour', u'germani', u'fifth', u'stage']
[u'australia', u'home', u'plucki', u'vanuatu']
[u'australian', u'veteran', u'receiv', u'legion', u'honour']
[u'babi', u'steal', u'mother', u'womb']
[u'baghdad', u'attack', u'cast', u'shadow', u'najaf', u'truce']
[u'bangladesh', u'tail', u'wag', u'jamaica']
[u'barrett', u'lead', u'bunch', u'leaderboard', u'illinoi']
[u'bevan', u'expect', u'guid', u'tasmanian', u'youngster']
[u'biologist', u'win', u'premier', u'award', u'autism', u'research']
[u'blast', u'rip', u'russian', u'depot']
[u'blue', u'fight', u'crow']
[u'blue', u'steal', u'adelaid']
[u'bomber', u'cruis', u'hawk']
[u'bomber', u'slaughter', u'hawk', u'fieri', u'encount']
[u'brack', u'chase', u'invest', u'confer']
[u'brack', u'offer', u'support', u'embattl', u'polic', u'minist']
[u'brisban', u'lead', u'port']
[u'brumbi', u'fisher', u'coach']
[u'bush', u'aim', u'rapproch', u'pari', u'talk']
[u'bush', u'confid', u'iraq', u'resolut']
[u'bush', u'treat', u'australia', u'like', u'state', u'fraser']
[u'director', u'victim', u'albanian', u'jinx']
[u'contractor', u'kill', u'road', u'baghdad', u'airport']
[u'coria', u'set', u'argentin', u'final']
[u'cowboy', u'grab', u'import', u'road']
[u'dali', u'decid', u'skip', u'open', u'qualifi']
[u'darwin', u'project', u'target', u'greenhous', u'gas']
[u'stir', u'memori', u'forget', u'armi']
[u'veteran', u'return', u'normandi']
[u'death', u'soldier', u'push', u'toll']
[u'debus', u'welcom', u'whale', u'watch', u'season']
[u'downer', u'hail', u'packag']
[u'endeavour', u'staff', u'consid', u'escal', u'campaign']
[u'feder', u'author', u'bust', u'credit', u'card', u'racket']
[u'frawley', u'inject', u'pace', u'tiger', u'line']
[u'french', u'govern', u'move', u'wed']
[u'french', u'teen', u'mix', u'doubl', u'final']
[u'game', u'roof', u'final', u'slide', u'place']
[u'gaudio', u'gallop', u'french', u'open', u'final']
[u'gibernau', u'grab', u'provision', u'pole', u'itali']
[u'green', u'senat', u'put', u'focus', u'harradin']
[u'hawk', u'gain', u'respect', u'schwab']
[u'hill', u'pledg', u'australian', u'help', u'secur']
[u'hong', u'kong', u'host', u'tiananmen', u'anniversari', u'vigil']
[u'howard', u'award', u'liberti', u'medallion']
[u'howard', u'depart', u'defend', u'bush']
[u'howard', u'end', u'visit', u'iraq', u'commit']
[u'hundr', u'expect', u'william', u'auction']
[u'intel', u'job', u'data', u'lower', u'boost', u'stock']
[u'rate', u'stay', u'win', u'builder', u'approv']
[u'intern', u'databas', u'track', u'steal', u'lose']
[u'iraqi', u'call', u'insurg']
[u'iraqi', u'polic', u'captur', u'zarqawi', u'aid']
[u'iraqi', u'polic', u'patrol', u'najaf', u'truce', u'take', u'hold']
[u'itali', u'neri', u'porto', u'coach', u'report']
[u'khan', u'break', u'cours', u'record', u'wale', u'open']
[u'knight', u'lead', u'eel']
[u'korea', u'open', u'cross', u'border', u'road']
[u'labor', u'launch', u'water', u'polici']
[u'minut', u'give', u'point', u'eel']
[u'leader', u'gather', u'anniversari']
[u'lion', u'turn', u'power']
[u'lion', u'turn', u'power', u'gabba', u'clash']
[u'lockyer', u'return', u'give', u'boost']
[u'loom', u'hick', u'charg', u'surpris', u'father', u'say']
[u'macquari', u'clean', u'world', u'environ']
[u'major', u'isra', u'support', u'gaza', u'pullout']
[u'remand', u'child', u'rape', u'charg']
[u'man', u'condit', u'stabl', u'cessna', u'crash']
[u'unit', u'confirm', u'queiroz', u'return']
[u'medhurst', u'score', u'tbird', u'roll', u'phoenix']
[u'merri', u'rule', u'athen', u'game']
[u'mexico', u'nab', u'suspect', u'tijuana', u'drug', u'cartel', u'chief']
[u'worker', u'free', u'machineri']
[u'minist', u'defend', u'extradit']
[u'murali', u'confid', u'doosra', u'clear']
[u'murali', u'select', u'tour', u'doubt', u'linger']
[u'newli', u'arrest', u'wife', u'beat', u'probe']
[u'research', u'station', u'concern', u'agforc']
[u'renew', u'meningococc', u'warn']
[u'studi', u'region', u'alcohol', u'problem']
[u'finalis', u'local', u'council', u'elect', u'result']
[u'charg', u'second', u'test', u'fleme']
[u'price', u'slide', u'tension', u'eas']
[u'olymp', u'torch', u'arriv']
[u'olymp', u'torch', u'leav', u'australia']
[u'peel', u'deviat', u'construct', u'worri']
[u'perth', u'casino', u'stoush', u'heat']
[u'philippin', u'stand', u'firm', u'face', u'terror', u'threat']
[u'pilot', u'hospitalis', u'plane', u'crash']
[u'pilot', u'recov', u'hospit']
[u'packag', u'progress', u'downer']
[u'polic', u'continu', u'hunt', u'road', u'rage', u'incid']
[u'polic', u'investig', u'teen', u'murder']
[u'polic', u'workcov', u'investig', u'airport', u'accid']
[u'portico', u'call', u'council', u'resign']
[u'sign', u'histor', u'land', u'agreement']
[u'queensland', u'host', u'ethanol', u'road']
[u'rampant', u'roo', u'outclass', u'tiger']
[u'william', u'saddl', u'secur', u'dollar']
[u'rocca', u'injur', u'magpi']
[u'rooney', u'shrug', u'pressur']
[u'rise', u'spurn', u'outright', u'lead', u'memori']
[u'row', u'team', u'australia', u'largest']
[u'rumsfeld', u'promis', u'speedi', u'prison', u'review']
[u'rumsfeld', u'tell', u'asia', u'expect', u'terror', u'strike']
[u'scotland', u'thrash', u'samoa']
[u'secur', u'tight', u'franc', u'ceremoni']
[u'shiit', u'elder', u'broker', u'fragil', u'ceasefir', u'iraq']
[u'singapor', u'warn', u'ship', u'attack', u'plan']
[u'stanhop', u'concern', u'hyster', u'terror']
[u'steal', u'children', u'return', u'heal', u'ceremoni']
[u'storm', u'hold', u'tame', u'tiger']
[u'taliban', u'tell', u'osama', u'report']
[u'accus', u'race', u'hijack']
[u'post', u'pulp', u'guidelin', u'internet']
[u'tiger', u'ahead', u'roo']
[u'union', u'consult', u'mine', u'death', u'inquiri']
[u'report', u'highlight', u'risk', u'marin', u'life']
[u'say', u'forc', u'violat', u'iraqi', u'right']
[u'britain', u'offer', u'iraq', u'resolut']
[u'navi', u'plan', u'forc', u'rich', u'west']
[u'hick', u'habib', u'charg']
[u'walter', u'fart', u'film', u'debut']
[u'disast', u'respons', u'readi']
[u'zimbabw', u'rebel', u'abandon', u'struggl']
[u'investig', u'superannu', u'fraud']
[u'alic', u'student', u'snatch', u'nation', u'film', u'award']
[u'apec', u'minist', u'hope', u'restart', u'trade', u'talk']
[u'arson', u'suspect', u'perth', u'church']
[u'aust', u'sign', u'biotechnolog', u'allianc']
[u'australian', u'leader', u'tribut', u'reagan']
[u'australian', u'honour', u'heroic']
[u'bangladesh', u'conced', u'advantag', u'lara', u'sarwan']
[u'barghouti', u'hand', u'life', u'term']
[u'beatti', u'back', u'biotech', u'allianc']
[u'beatti', u'defend', u'gatton', u'research', u'station']
[u'beckham', u'face', u'franc', u'eriksson']
[u'belgian', u'pari', u'doubl', u'crown', u'debut']
[u'blunder', u'help', u'ecuador', u'world', u'qualifi']
[u'book', u'program', u'focus', u'communiti', u'life']
[u'bronco', u'lead', u'shark', u'half', u'time']
[u'burma', u'criticis', u'fail', u'stop', u'forc', u'labour']
[u'bush', u'chirac', u'discuss', u'iraq', u'ahead']
[u'bush', u'rememb', u'reagan', u'ceremoni']
[u'businessman', u'bulldoz', u'level', u'colorado', u'build']
[u'casey', u'take', u'shoot', u'lead', u'wale']
[u'cat', u'bite', u'dog']
[u'cipollini', u'ride', u'tour', u'franc']
[u'unimpress', u'petrol', u'sniff', u'plan']
[u'competit', u'watchdog', u'disagr']
[u'croatia', u'edg', u'denmark', u'copenhagen']
[u'crowd', u'line', u'street', u'homag', u'reagan']
[u'veteran', u'tell', u'scale', u'invas']
[u'demon', u'strong', u'tire', u'docker']
[u'drought', u'take', u'tighter', u'grip']
[u'dutch', u'boo', u'irish', u'revers']
[u'grab', u'memori', u'lead', u'wood', u'lurk']
[u'fallujah', u'clash', u'threaten', u'truce']
[u'fittler', u'put', u'hand', u'origin', u'return']
[u'fittler', u'play', u'state', u'origin']
[u'forest', u'confid', u'gain', u'pulp', u'support']
[u'olymp', u'champion', u'joyner', u'return']
[u'franc', u'honour', u'aust', u'wwii', u'veteran']
[u'geelong', u'demolish', u'histor', u'chimney']
[u'germani', u'join', u'commemor']
[u'gibernau', u'bid', u'tripl', u'treat', u'clinch', u'pole']
[u'gorbachev', u'pay', u'respect', u'reagan']
[u'govt', u'reveal', u'transport', u'plan']
[u'govt', u'unveil', u'domest', u'violenc', u'campaign']
[u'group', u'prais', u'labor', u'plan']
[u'half', u'franc', u'feel', u'moral', u'debt']
[u'hick', u'trial', u'step', u'closer']
[u'howard', u'join', u'celebr']
[u'inspir', u'sweden', u'outclass', u'poland']
[u'interim', u'rebuild', u'iraq', u'militari']
[u'iraq', u'bomb', u'kill', u'injur']
[u'iraq', u'domin', u'howard', u'blair', u'meet']
[u'jennif', u'lopez', u'wed', u'marc', u'anthoni', u'report']
[u'kookaburra', u'easi', u'victor', u'great', u'britain']
[u'kookaburra', u'strong', u'great', u'britain']
[u'labor', u'brush', u'bush', u'critic']
[u'labor', u'pressur', u'releas', u'plan']
[u'latham', u'back', u'garrett', u'possibl', u'labor']
[u'lawyer', u'warn', u'film', u'maker', u'ignor', u'indigen']
[u'leader', u'salut', u'memori', u'fighter']
[u'lebanon', u'trip', u'interview', u'terror', u'suspect', u'stall']
[u'mainland', u'protest', u'oppos', u'woodchip']
[u'malaysia', u'reject', u'troop', u'asia']
[u'mancebo', u'win', u'tour', u'germani', u'sixth', u'stage']
[u'man', u'continu', u'upset']
[u'martian', u'rover', u'face', u'riski', u'crater', u'test']
[u'melbourn', u'protest', u'stage', u'log', u'demonstr']
[u'mourinho', u'lay', u'chelsea', u'star']
[u'myskina', u'claim', u'french', u'crown']
[u'promot', u'countri', u'prospect']
[u'regul', u'privat', u'eye']
[u'oriol', u'open', u'account']
[u'parachut', u'drop', u'begin', u'tribut', u'hero']
[u'parent', u'criticis', u'plan', u'teacher', u'strike']
[u'chastis', u'foolish', u'play', u'school', u'segment']
[u'polic', u'test', u'stab', u'death', u'clue']
[u'portug', u'eas', u'lithuania']
[u'prison', u'free', u'infam', u'ghraib', u'jail']
[u'public', u'hous', u'tenant', u'face', u'uncertain', u'futur']
[u'health', u'research', u'win', u'boost']
[u'rann', u'use', u'biotechnolog', u'confer', u'sell']
[u'reagan', u'help', u'save', u'world']
[u'reagan', u'japan', u'best', u'friend', u'nakason']
[u'rebel', u'general', u'announc', u'bukavu', u'withdraw']
[u'region', u'benefit', u'mobil', u'learn']
[u'audit', u'station', u'upgrad']
[u'roddick', u'agassi', u'relish', u'return', u'grass']
[u'ronald', u'reagan', u'errol', u'flynn', u'movi']
[u'rooney', u'lead', u'england', u'crush']
[u'russian', u'myskina', u'break', u'mould']
[u'safeti', u'bureau', u'interview', u'pilot', u'laguna', u'crash']
[u'eagl', u'fight', u'hard', u'premier']
[u'shark', u'hit', u'green', u'claim']
[u'smarti', u'jone', u'deni', u'tripl', u'crown']
[u'spain', u'stroll', u'andorra']
[u'specul', u'continu', u'elect', u'date']
[u'staff', u'shortag', u'jeopardis', u'public', u'opposit']
[u'steal', u'children', u'come', u'home', u'year']
[u'studi', u'show', u'gene', u'cancer', u'therapi', u'effect']
[u'studi', u'paint', u'portrait', u'stalk', u'impact']
[u'swan', u'saint', u'half', u'time']
[u'swan', u'prepar', u'risk', u'roo']
[u'swan', u'upset', u'saint', u'master', u'display']
[u'tahiti', u'score', u'vanuatu']
[u'tate', u'injur', u'shark', u'overrun', u'bronco']
[u'thatcher', u'pay', u'tribut', u'american', u'hero', u'reagan']
[u'make', u'claim', u'church', u'scandal']
[u'thousand', u'protest', u'gaza', u'withdraw']
[u'timelin', u'reagan', u'year']
[u'trescothick', u'boost', u'england']
[u'rescu', u'fish', u'boat', u'sink']
[u'iraq', u'resolut']
[u'declar', u'sadr', u'defeat']
[u'veteran', u'join', u'princ', u'charl', u'pegasus', u'bridg']
[u'veteran', u'retrac', u'rout', u'normandi']
[u'govt', u'boost', u'fund', u'asylum', u'seeker']
[u'share', u'road', u'fund']
[u'warrior', u'coach', u'dream', u'start']
[u'watch', u'venuss', u'travel', u'onlin', u'doctor', u'warn']
[u'webb', u'top', u'leaderboard', u'illinoi']
[u'world', u'farewel', u'cold', u'warrior', u'reagan']
[u'abus', u'alleg', u'prompt', u'call', u'disabl']
[u'accc', u'move', u'stop', u'adelaid', u'brighton', u'takeov']
[u'extend', u'good', u'gestur', u'timores']
[u'highway', u'overhaul', u'auslink', u'plan']
[u'aldoga', u'site', u'work', u'start', u'month']
[u'allianc', u'stand', u'creation', u'plan']
[u'alli', u'didnt', u'vain', u'schroeder']
[u'ord', u'close', u'record', u'high']
[u'ord', u'hit', u'high']
[u'member', u'block', u'garrett']
[u'place', u'garrett', u'say', u'green', u'leader']
[u'ambul', u'industri', u'unrest', u'remain']
[u'angelucci', u'earn', u'venezuela', u'point', u'peru']
[u'argentina', u'goalless', u'draw', u'paraguay']
[u'arson', u'suspect', u'heritag', u'list', u'build']
[u'astronom', u'prepar', u'rare', u'transit', u'venus']
[u'aust', u'host', u'militari', u'train']
[u'aust', u'push', u'expand', u'marin', u'protect']
[u'australia', u'alli', u'revamp', u'defenc', u'pact']
[u'australia', u'solomon', u'world', u'chanc']
[u'bashir', u'take', u'polic', u'court', u'arrest']
[u'bear', u'draw', u'young', u'gun']
[u'blackout', u'leav', u'king', u'dark']
[u'blaze', u'caus', u'trawler', u'damag']
[u'blaze', u'damag', u'mall', u'shop']
[u'take', u'best', u'actor', u'toni']
[u'brazil', u'ethanol', u'deal', u'lose', u'feder', u'govt']
[u'bundaberg', u'port', u'secur', u'plan', u'track']
[u'burma', u'free', u'member', u'kyi', u'parti']
[u'inland', u'road', u'forget']
[u'campes', u'back', u'minnow', u'host', u'world']
[u'capsicum', u'spray', u'scare', u'prompt', u'casino', u'evacu']
[u'crash', u'victim', u'search', u'frustrat', u'rescu', u'crew']
[u'dump', u'river', u'theft']
[u'cattl', u'properti', u'giant', u'natur', u'refug']
[u'coach', u'connolli', u'destabilis', u'docker']
[u'cold', u'weather', u'come', u'gippsland']
[u'council', u'form', u'safeti', u'committe']
[u'council', u'encourag', u'grey', u'water']
[u'council', u'upbeat', u'energi', u'park', u'fund']
[u'court', u'hear', u'fraudul', u'scheme', u'involv', u'insid']
[u'court', u'hear', u'secur', u'guard', u'casino']
[u'critic', u'injur', u'remain', u'unidentifi']
[u'crocker', u'doubt', u'origin']
[u'crow', u'back', u'ayr']
[u'damag', u'train', u'undergo', u'repair']
[u'demand', u'grow', u'central', u'aust']
[u'diseas', u'drug', u'microscop', u'medic']
[u'dissid', u'general', u'leav', u'east', u'congo', u'town']
[u'doc', u'act', u'child', u'abus', u'report', u'survey']
[u'doctor', u'trial', u'diabet', u'vaccin']
[u'doubt', u'rais', u'liquor', u'accord']
[u'dozen', u'wound', u'papuan', u'tribal', u'battl']
[u'drink', u'water', u'normal', u'mayor']
[u'drought', u'slow', u'fish', u'hatcheri', u'plan']
[u'dump', u'protest', u'claim', u'solid', u'messag', u'govt']
[u'earli', u'season', u'loom']
[u'east', u'timor', u'accus', u'take', u'compani', u'bribe']
[u'ecstasi', u'seiz', u'special', u'mark', u'bag']
[u'captur', u'memori', u'crown']
[u'embattl', u'broadcast', u'watchdog', u'chief', u'resign']
[u'timor', u'welcom', u'revenu', u'plan']
[u'explos', u'mosqu', u'iraqi', u'holi', u'citi']
[u'farm', u'group', u'welcom', u'rainwat', u'plan', u'backdown']
[u'feder', u'fund', u'tackl', u'rural', u'declin']
[u'feder', u'govt', u'urg', u'boost', u'bruce', u'highway']
[u'feldspar', u'custom']
[u'festiv', u'celebr', u'rock', u'roll']
[u'film', u'organis', u'fund', u'boost']
[u'charg', u'lay', u'bomber', u'hawk', u'brawl']
[u'fittler', u'origin', u'return']
[u'fittler', u'make', u'origin', u'return', u'blue']
[u'fittler', u'readi', u'chang', u'past']
[u'footi', u'player', u'form', u'outback']
[u'govt', u'advis', u'head', u'sunday', u'paper']
[u'hotel', u'hous', u'communiti', u'technolog', u'centr']
[u'labor', u'offici', u'accus', u'child']
[u'forum', u'focus', u'address', u'antisoci', u'antic']
[u'fund', u'boost', u'biotechnolog', u'ventur']
[u'fund', u'busi', u'centr']
[u'garrett', u'preselect', u'break', u'parti', u'rule']
[u'gastroenter', u'forc', u'matern', u'ward', u'closur']
[u'gaza', u'withdraw', u'plan', u'threaten', u'right', u'parti']
[u'geal', u'turn', u'miss', u'athen']
[u'germani', u'stun', u'hungari', u'dutch', u'slump', u'ireland']
[u'gibbon', u'unhappi', u'calder', u'fund', u'pledg']
[u'glove', u'church', u'test']
[u'govt', u'pump', u'road', u'rail']
[u'govt', u'releas', u'bypass', u'fund', u'detail']
[u'grey', u'water', u'plan', u'widespread', u'support']
[u'heaven', u'help', u'pacif', u'rugbi', u'play', u'bad', u'coach']
[u'hero', u'gaudio', u'clinch', u'french', u'titl']
[u'hill', u'prove', u'point', u'south']
[u'hodg', u'ax', u'maroon', u'squad']
[u'humbl', u'breaker', u'trounc', u'north']
[u'ilfracomb', u'motel', u'work', u'start', u'soon']
[u'industri', u'unrest', u'wont', u'stop', u'doorknock', u'appeal']
[u'investig', u'begin', u'shop']
[u'iraqi', u'govern', u'strike', u'deal', u'disband', u'militia']
[u'irrig', u'face', u'water', u'alloc']
[u'laneway', u'acdc']
[u'jobless', u'work', u'disabl', u'facil']
[u'johnson', u'confid', u'run', u'athen']
[u'jone', u'lenton', u'franc']
[u'khan', u'win', u'wale', u'open', u'maiden', u'tour']
[u'killer', u'want', u'sentenc', u'reduc']
[u'kiwi', u'collaps', u'leav', u'england']
[u'kookaburra', u'pakistan']
[u'latham', u'join', u'play', u'school', u'critic']
[u'leess', u'compens', u'time']
[u'liber', u'parti', u'releas', u'nativ', u'grass', u'industri', u'plan']
[u'lifelin', u'launch', u'domest', u'violenc', u'hotlin']
[u'live', u'murray', u'studi', u'help', u'flow', u'delay']
[u'lose', u'boy']
[u'mahathir', u'criticis', u'iraq', u'conflict']
[u'bash', u'home', u'theft']
[u'charg', u'casino', u'stab', u'hold', u'custodi']
[u'shoot', u'drug', u'sting']
[u'get', u'suspend', u'sentenc', u'shoot', u'intrud']
[u'mayo', u'win', u'dauphin', u'liber', u'prologu', u'roger', u'fifth']
[u'media', u'escap', u'contempt', u'charg', u'falconio', u'case']
[u'melbourn', u'team', u'trial', u'melanoma', u'vaccin']
[u'millionair', u'sue', u'current', u'affair', u'stori']
[u'minist', u'angri', u'inquiri', u'critic']
[u'miss', u'teen', u'safe']
[u'mix', u'result', u'kennedi', u'asic', u'court', u'action']
[u'hack', u'toddler', u'father', u'death']
[u'charg', u'expect', u'brawl']
[u'claim', u'abus', u'anglican', u'youth', u'worker']
[u'award', u'light', u'heart', u'look', u'hollywood']
[u'murali', u'threaten', u'suit', u'degrad', u'chuck']
[u'museum', u'hunt', u'piec', u'tasmania', u'histori']
[u'navi', u'ship', u'join', u'pacif', u'exercis']
[u'public', u'hospit', u'bed', u'hing', u'staff']
[u'newspap', u'fall', u'second', u'month']
[u'bid', u'custom', u'hous']
[u'north', u'west', u'road', u'target', u'fund']
[u'specialist', u'seek', u'increas']
[u'spell', u'super', u'centr', u'plan']
[u'highway', u'auslink', u'overhaul']
[u'urg', u'generous', u'offer', u'field']
[u'coach', u'take', u'blame', u'shock', u'world', u'exit']
[u'onesteel', u'begin', u'blast', u'furnac', u'work']
[u'outback', u'cattl', u'drive', u'intern', u'spotlight']
[u'outsid', u'gaudio', u'clinch', u'french', u'open']
[u'palestinian', u'milit', u'retali']
[u'parent', u'talk', u'teacher', u'staff']
[u'parent', u'urg', u'look', u'meningococc', u'sign']
[u'pentagon', u'find', u'bush', u'bind', u'tortur', u'law']
[u'petroleum', u'confer', u'focus', u'timor']
[u'phone', u'servic', u'hundr', u'home']
[u'piston', u'stun', u'laker', u'final']
[u'planet', u'push', u'phase', u'growth']
[u'pay', u'tribut', u'heroic']
[u'polic', u'oper', u'target', u'trucki']
[u'polic', u'search', u'miss', u'boy', u'outback']
[u'polic', u'seek', u'inform', u'gambl', u'scam']
[u'polic', u'union', u'welcom', u'tougher', u'screen']
[u'princ', u'highway', u'fund', u'disgrac']
[u'probe', u'continu', u'whitsunday', u'plane', u'crash']
[u'queensland', u'year', u'honour', u'achiev']
[u'racq', u'disappoint', u'road', u'fund']
[u'redfern', u'inquiri', u'hear', u'child', u'abus', u'ignor']
[u'report', u'superbug', u'doubt']
[u'resid', u'evacu', u'volcano', u'erupt']
[u'resort', u'look', u'heaven', u'snowfal']
[u'rossi', u'hail', u'greatest', u'rain', u'home', u'grand']
[u'urg', u'adopt', u'council', u'highway', u'option']
[u'rural', u'health', u'spotlight']
[u'santini', u'prais', u'french', u'resolv']
[u'sarwan', u'hit', u'career', u'best']
[u'saudi', u'milit', u'kill', u'british', u'cameraman']
[u'sharon', u'compromis', u'gaza', u'pullout']
[u'sharon', u'face', u'moment', u'truth', u'gaza', u'plan']
[u'spenc', u'overturn', u'southport', u'station', u'decis']
[u'spray', u'target', u'beach', u'bush']
[u'state', u'target', u'campaign', u'safer', u'window']
[u'steal', u'generat', u'case']
[u'sturt', u'highway', u'improv', u'auslink', u'plan']
[u'superbrat', u'inspir', u'french', u'open', u'titl', u'miracl', u'say']
[u'super', u'safe', u'fund', u'chief', u'vow']
[u'survey', u'highlight', u'poor', u'wetland', u'health']
[u'tafe', u'union', u'disput', u'deepen']
[u'talk', u'consid', u'indigen', u'issu', u'post', u'atsic']
[u'tasmanian', u'tradespeopl', u'urg', u'come', u'home']
[u'receiv', u'road', u'fund']
[u'tourism', u'group', u'unhappi', u'fund']
[u'town', u'shift', u'tonn']
[u'children', u'hous']
[u'union', u'question', u'probe']
[u'peacekeep', u'kill', u'congo', u'ambush']
[u'secur', u'council', u'debat', u'revis', u'iraq', u'resolut']
[u'britain', u'offer', u'iraq', u'draft']
[u'label', u'isra', u'pullout', u'vote', u'courag']
[u'plan', u'state', u'funer', u'reagan']
[u'plan', u'troop', u'south', u'korea']
[u'wiss', u'surviv', u'freez', u'gippsland', u'swim']
[u'polic', u'offic', u'bail', u'drug', u'charg']
[u'vintag', u'cabinet', u'document', u'surfac']
[u'water', u'restrict', u'review', u'seek']
[u'webb', u'captur', u'lpga', u'tour', u'victori']
[u'whale', u'return', u'water', u'warrnambool']
[u'wheelchair', u'bind', u'palestinian', u'kill']
[u'william', u'head', u'coff', u'confer']
[u'winter', u'grain', u'crop', u'outlook', u'look', u'bleak']
[u'woman', u'children', u'escap', u'hous']
[u'woman', u'clarifi', u'surgeri', u'cancel', u'claim']
[u'woman', u'die', u'perth', u'crash']
[u'woman', u'court', u'babi', u'death']
[u'woman', u'kill', u'injur', u'collis']
[u'world', u'pay', u'tribut', u'hero']
[u'young', u'boomer', u'retain', u'reduc', u'squad']
[u'charg', u'weekend', u'brawl']
[u'govt', u'secur', u'public', u'servant', u'deal']
[u'trial', u'send', u'timet', u'mobil']
[u'charg', u'brawl']
[u'rank', u'file', u'condemn', u'garrett', u'plan']
[u'ambul', u'worker', u'strike', u'rise']
[u'anderson', u'hit', u'critic', u'road', u'plan']
[u'anthoni', u'champion', u'northern', u'rail', u'link']
[u'architect', u'compos', u'winner', u'prestigi']
[u'arson', u'fear', u'south', u'coast']
[u'hit', u'high']
[u'august', u'start', u'tip', u'darwin', u'diesel', u'plant']
[u'auslink', u'road', u'fund', u'alloc']
[u'australia', u'murder', u'rate', u'declin']
[u'awar', u'complaint', u'rise', u'brough']
[u'bakhtiyari', u'children', u'reunit', u'mother']
[u'bank', u'robber', u'return', u'crime', u'scene', u'repay', u'cash']
[u'basebal']
[u'chief', u'upset', u'fund']
[u'blue', u'ribbon', u'meat', u'disput', u'move', u'court']
[u'boral', u'proceed', u'adelaid', u'brighton']
[u'save', u'get', u'surgeri', u'tip', u'phone']
[u'breakthrough', u'terror', u'fight']
[u'budget', u'transfer', u'duti']
[u'build', u'shutdown', u'suspicion', u'asbesto']
[u'bush', u'interfer', u'say']
[u'bypass', u'option', u'consid', u'gympi']
[u'calder', u'duplic', u'longer']
[u'cane', u'ethanol', u'viabl', u'say', u'compani']
[u'canoer', u'award', u'help', u'rival']
[u'catchment', u'author', u'air', u'wast', u'plan', u'fear']
[u'cattl', u'drive', u'beef', u'oversea']
[u'cattl', u'polio', u'fear', u'threaten', u'industri']
[u'catt', u'return', u'england', u'line']
[u'caution', u'urg', u'weekend', u'bonfir']
[u'chelsea', u'agre', u'settlement', u'ranieri']
[u'citi', u'sleep', u'want', u'rest']
[u'coag', u'close', u'agreement', u'nation', u'water']
[u'communiti', u'urg', u'help', u'combat', u'indigen', u'abus']
[u'contractor', u'plead', u'guilti', u'mine', u'accid']
[u'council', u'consid', u'botan', u'garden', u'fenc']
[u'council', u'consid', u'rspca']
[u'council', u'look', u'rate', u'rise']
[u'council', u'plan', u'busi', u'rat', u'rise']
[u'council', u'consid', u'altern', u'disput', u'resolut']
[u'council', u'decid', u'fruit', u'fumig', u'plan']
[u'council', u'launch', u'growth', u'strategi']
[u'coupl', u'face', u'sentenc', u'arm', u'robberi']
[u'court', u'hear', u'woman', u'order', u'kill']
[u'crocker', u'rub', u'origin']
[u'cycl', u'termin', u'beat', u'ogradi', u'dauphin']
[u'date', u'yuko', u'tycoon', u'fraud', u'trial']
[u'deer', u'park', u'bypass', u'fund', u'label', u'inadequ']
[u'deputi', u'highway', u'fund']
[u'detent', u'centr', u'manag', u'compani', u'sell']
[u'doubt', u'authent', u'saudi', u'arabia', u'terror']
[u'drought', u'fear', u'grip', u'eyr', u'peninsula']
[u'earli', u'day', u'troop', u'withdraw', u'plan', u'south', u'korea', u'say']
[u'eastern', u'capit', u'council', u'readi', u'chang']
[u'elder', u'coupl', u'avoid', u'jail', u'cannabi']
[u'move', u'number']
[u'emerg', u'servic', u'fund', u'alloc', u'region']
[u'emerg', u'servic', u'practic', u'respons']
[u'emir', u'promulg', u'qatar', u'constitut']
[u'england', u'terri', u'fit', u'cloud']
[u'timor', u'pleas', u'boundari', u'comment']
[u'timor', u'urg', u'reconsid', u'timor', u'regim']
[u'farm', u'bit', u'life', u'technolog']
[u'farmer', u'urg', u'concern', u'derail', u'water']
[u'feder', u'road', u'scheme']
[u'govt', u'offer', u'negoti', u'calder', u'fund', u'time']
[u'fleme', u'say', u'harmison', u'england', u'success']
[u'flint', u'resign', u'surpris']
[u'forecast', u'tip', u'smaller', u'grain', u'harvest']
[u'aristocrat', u'boss', u'lose', u'damag']
[u'forum', u'focus', u'youth', u'rail', u'death']
[u'foster', u'review', u'write', u'wine', u'assest']
[u'fragil', u'north', u'korean', u'economi', u'grow']
[u'fund', u'busi', u'centr', u'close']
[u'fund', u'seek', u'surf', u'club', u'project']
[u'garrett', u'damag', u'relationship', u'downer']
[u'germani', u'spain', u'resolut', u'iraq']
[u'gerrard', u'scotland', u'test']
[u'attend', u'reagan', u'funer']
[u'gold', u'coast', u'communiti', u'forum']
[u'govt', u'admit', u'prison', u'plan', u'theft', u'embarrass']
[u'govt', u'provid', u'palestinian', u'refuge', u'camp']
[u'govt', u'releas', u'booklet', u'iraq', u'handov']
[u'great', u'northern', u'highway', u'receiv', u'fund']
[u'green', u'montgomeri', u'showdown']
[u'hall', u'berri', u'get', u'restrain', u'order', u'stalker']
[u'harri', u'potter', u'film', u'classif', u'downgrad']
[u'henman', u'glad', u'grass']
[u'henri', u'take', u'knife', u'black', u'pack']
[u'hezbollah', u'israel', u'exchang']
[u'high', u'hop', u'bypass', u'fund']
[u'hous', u'retail', u'slowdown', u'confid']
[u'hunter', u'health', u'idea']
[u'illawarra', u'identifi', u'polic', u'spot']
[u'immun', u'therapi', u'stop', u'diabet', u'mous', u'studi']
[u'industri', u'action', u'disrupt', u'ferri', u'servic']
[u'insur', u'industri', u'aim', u'lift', u'standard']
[u'iraq', u'weapon', u'dispos', u'accid', u'kill']
[u'order', u'strike', u'construct', u'worker']
[u'irrig', u'face', u'restrict']
[u'israel', u'attack', u'abandon', u'base', u'lebanon']
[u'italian', u'polic', u'arrest', u'madrid', u'bomb', u'mastermind']
[u'jockey', u'escap', u'fine', u'racist', u'comment']
[u'justic', u'dept', u'memo', u'offer', u'basi', u'tortur', u'report']
[u'kemp', u'reject', u'call', u'control', u'kakadu']
[u'kimberley', u'pilbara', u'nation', u'park', u'receiv']
[u'kimmorley', u'welcom', u'fittler', u'return']
[u'labor', u'slam', u'downer', u'prison', u'abus']
[u'labor', u'stalwart', u'attack', u'garrett', u'plan']
[u'lack', u'hous', u'vacanc', u'affect', u'albani', u'polic']
[u'lake', u'entranc', u'forum', u'expect', u'lure', u'fisher']
[u'latham', u'welcom', u'flint', u'resign']
[u'launceston', u'pollut', u'exceed', u'safe', u'level']
[u'lebanon', u'lodg', u'protest', u'isra', u'raid']
[u'level', u'water', u'restrict', u'possibl', u'coff']
[u'lloyd', u'say', u'excus', u'mele']
[u'local', u'govt', u'group', u'back', u'auslink', u'scheme']
[u'luca', u'claim', u'state', u'short', u'chang', u'auslink', u'fund']
[u'luca', u'reject', u'bypass', u'polit', u'claim']
[u'magnesium', u'intern', u'announc', u'site', u'tomorrow']
[u'bulli', u'girlfriend', u'million', u'dollar']
[u'charg', u'casino', u'secur', u'scare']
[u'die', u'injuri', u'flee', u'polic', u'raid']
[u'stand', u'trial', u'theft', u'million', u'bank']
[u'mayor', u'pleas', u'bridg', u'fund']
[u'mayor', u'upset', u'tamar', u'highway', u'miss', u'fund']
[u'mayor', u'welcom', u'bark', u'highway', u'fund']
[u'meet', u'discuss', u'bypass', u'flood', u'concern']
[u'meet', u'offer', u'littl', u'support', u'methadon', u'clinic']
[u'microsoft', u'appeal', u'anti', u'trust', u'sanction']
[u'militari', u'sexual', u'harass', u'complaint', u'doubl']
[u'industri', u'look', u'indigen', u'reconcili']
[u'owner', u'fin', u'worker', u'death']
[u'minist', u'investig', u'offend', u'prison']
[u'minist', u'promis', u'action', u'neglig']
[u'minist', u'talk', u'midwiv', u'plan']
[u'minist', u'tout', u'harbour', u'bridg', u'illawarra']
[u'miss', u'year', u'month']
[u'modifi', u'reef', u'pontoon', u'get', u'ahead']
[u'monk', u'beat', u'lankan', u'brawl']
[u'mooney', u'attack', u'feder', u'road', u'scheme']
[u'polic', u'need', u'redfern', u'inquiri', u'tell']
[u'rain', u'tip', u'perth']
[u'talk', u'manag', u'hous']
[u'mother', u'remain', u'hospit', u'hous']
[u'narrogin', u'town', u'hall', u'place', u'heritag', u'list']
[u'nation', u'studi', u'leukaemia', u'begin']
[u'inducte', u'hall', u'fame']
[u'potter', u'film', u'strong', u'teen', u'say']
[u'love', u'lose', u'red', u'send', u'valentin', u'south']
[u'chief', u'criticis', u'player', u'associ']
[u'tanker', u'block', u'princ', u'highway']
[u'parker', u'realis', u'boyhood', u'dream']
[u'partnership', u'hop', u'fight', u'poverti']
[u'perth', u'coupl', u'free', u'drug', u'convict']
[u'pilot', u'breach', u'safeti', u'law', u'say', u'casa']
[u'plan', u'aim', u'address', u'bowen', u'water', u'woe']
[u'plan', u'afoot', u'river', u'tourism', u'trail']
[u'polic', u'investig', u'caus', u'rutherglen']
[u'polic', u'investig', u'walkerston', u'fatal']
[u'polic', u'probe', u'hospit', u'drug', u'theft']
[u'polic', u'seek', u'help', u'identifi', u'injur']
[u'polit', u'blame', u'auslink', u'princ', u'highway']
[u'power', u'compani', u'seek', u'suppli']
[u'premier', u'concern', u'garrett', u'possibl']
[u'skin', u'cancer', u'vaccin', u'biotechnolog']
[u'rail', u'standardis', u'fund', u'start']
[u'random', u'test', u'uncov', u'drug', u'user']
[u'rare', u'hors', u'virus', u'queensland']
[u'redfern', u'probe', u'continu', u'oppn', u'say']
[u'chief', u'play', u'privatis', u'concern']
[u'richmond', u'water']
[u'rise', u'damp', u'prove', u'problem', u'asthma', u'suffer']
[u'road', u'crash', u'relat', u'urg', u'govt', u'nightmar']
[u'road', u'fund', u'announc', u'get', u'mix', u'recept']
[u'road', u'fund', u'expect', u'boost', u'hunter', u'job']
[u'road', u'scheme', u'benefit', u'england', u'highway']
[u'nomin', u'south', u'korean']
[u'consid', u'test', u'polic']
[u'teen', u'sign', u'portsmouth']
[u'scot', u'lose', u'test', u'warm']
[u'senat', u'report', u'recommend', u'legal', u'fund', u'review']
[u'seuseu', u'cop', u'seven', u'match']
[u'share', u'market', u'finish', u'flat']
[u'shire', u'presid', u'fear', u'marina', u'meet', u'witch', u'hunt']
[u'sing', u'name', u'second', u'origin']
[u'solomon', u'welcom', u'home', u'soccer', u'hero']
[u'solomon', u'welcom', u'soccer', u'hero']
[u'south', u'east', u'clinic', u'senat', u'hold', u'meet']
[u'south', u'hedland', u'communiti', u'care', u'centr', u'open']
[u'springbok', u'rooki', u'irish', u'favourit']
[u'stabl', u'price', u'drive', u'market', u'higher']
[u'stoner', u'attack', u'busi', u'centr', u'closur']
[u'stosur', u'second', u'round', u'wimbledon', u'warm']
[u'strawberri', u'grower', u'hold', u'meet']
[u'streak', u'call', u'zimbabw']
[u'suspect', u'offend', u'deport', u'thailand']
[u'tahu', u'wari', u'hagan', u'influenc']
[u'tampa', u'win', u'stanley']
[u'settler']
[u'taxpay', u'benefit', u'drug', u'court']
[u'teacher', u'rise', u'decis', u'immin']
[u'teacher', u'threaten', u'stop', u'work', u'meet']
[u'telstra', u'reject', u'loss', u'fear']
[u'dead', u'iraq', u'bomb', u'attack']
[u'thailand', u'crack', u'black', u'market', u'piranha', u'trade']
[u'thousand', u'flee', u'rumbl', u'indonesian', u'volcano']
[u'thunderbird', u'sparkl', u'phoenix', u'fumbl']
[u'world', u'leader', u'gather', u'summit', u'tight']
[u'town', u'tell', u'water', u'prove', u'cost']
[u'transport', u'group', u'critic', u'sturt', u'highway', u'fund']
[u'transport', u'group', u'lament', u'feder', u'fund']
[u'troubl', u'orang', u'lose', u'appeal']
[u'kill', u'second', u'indonesian', u'volcano', u'erupt']
[u'union', u'renew', u'call', u'polic', u'violenc', u'squad']
[u'secur', u'council', u'verg', u'iraq', u'deal']
[u'dope', u'agenc', u'expect', u'finish', u'probe', u'soon']
[u'troop', u'free', u'hostag']
[u'venus', u'event', u'spark', u'astronom']
[u'chief', u'commission', u'face', u'scapegoat', u'claim']
[u'govt', u'want', u'pakenham', u'bypass', u'fund', u'secur']
[u'prosecutor', u'drop', u'corrupt', u'case', u'sourc']
[u'govt', u'attack', u'opposit', u'deputi', u'allow']
[u'polic', u'hunt', u'killer']
[u'warrior', u'sign', u'cowboy', u'util']
[u'shoot']
[u'waterfront', u'home', u'threaten', u'export', u'inquiri', u'tell']
[u'watson', u'clear', u'play', u'bull']
[u'wolf', u'blass', u'wineri', u'creat', u'job', u'barossa']
[u'woman', u'rescu', u'break', u'mount', u'lindsay']
[u'women', u'legal', u'servic', u'win', u'discrimin', u'case']
[u'worker', u'strike', u'plant']
[u'zantuck', u'charg', u'mobil', u'drive']
[u'auditor', u'general', u'ask', u'investig', u'workcov']
[u'increas', u'nurs', u'offer']
[u'activist', u'sue', u'japanes', u'govt', u'iraq', u'ordeal']
[u'afghan', u'taliban', u'fighter', u'kill', u'ambush']
[u'fiji', u'polic', u'seiz', u'drug', u'chemic']
[u'ail', u'slater', u'bow']
[u'pollut', u'fear', u'spark', u'council', u'steel', u'river', u'order']
[u'allawi', u'back', u'bomb', u'campaign', u'report']
[u'black', u'target', u'england', u'line']
[u'fast', u'track', u'garrett', u'membership']
[u'anderson', u'coff', u'talk', u'auslink']
[u'anglican', u'church', u'face', u'renew', u'critic']
[u'arm', u'guard', u'protect', u'journalist']
[u'arm', u'keep', u'firi', u'brisban']
[u'arrest', u'gangland', u'swoop']
[u'arsenal', u'case', u'england', u'defenc', u'french', u'attack']
[u'ashcroft', u'refus', u'hand', u'tortur', u'memo']
[u'auslink', u'plan', u'disappoint', u'transport', u'bodi']
[u'babi', u'bonus', u'abus', u'doctor']
[u'baddeley', u'hend', u'allan', u'earn', u'open', u'spot']
[u'barca', u'ronaldinho']
[u'beckham', u'england', u'terri', u'fit', u'doubt']
[u'bekel', u'dragila', u'break', u'world', u'record']
[u'briton', u'support', u'princ', u'charl', u'remarri', u'poll']
[u'bryant', u'song', u'laker', u'level', u'seri']
[u'budget', u'cut', u'slow', u'capit', u'work', u'project']
[u'firm', u'schedul', u'meet', u'talk', u'chang']
[u'busi', u'centr', u'plan', u'spark', u'fear', u'nowra', u'firm']
[u'health', u'servic', u'merger', u'specul']
[u'worker', u'input', u'north', u'coast', u'rail', u'probe']
[u'call', u'daguilar', u'highway', u'upgrad']
[u'canberra', u'vote', u'hec', u'increas']
[u'canberra', u'univers', u'increas', u'fee']
[u'cancer', u'patient', u'gene', u'tailor', u'treatment']
[u'charg', u'drop', u'polic', u'offic']
[u'chariti', u'liken', u'prison', u'ghraib']
[u'chief', u'minist', u'back', u'region', u'bodi', u'replac']
[u'chirac', u'give', u'lose', u'kiwi', u'veteran', u'lift', u'pari']
[u'commiss', u'halv', u'teacher', u'rise']
[u'communiti', u'input', u'seek', u'fluorid']
[u'congoles', u'govt', u'troop', u'regain', u'control', u'bukavu']
[u'consum', u'sentiment', u'resili', u'hous', u'attract']
[u'coolac', u'bypass', u'consid', u'prioriti']
[u'council', u'back', u'green', u'corridor', u'plan']
[u'council', u'reject', u'fruit', u'fumig', u'plan']
[u'council', u'unhappi', u'wilcannia', u'crime', u'brand']
[u'court', u'reserv', u'decis', u'blue', u'ribbon']
[u'crime', u'finger', u'point', u'armidal', u'more']
[u'cyclist', u'french', u'ban', u'dope', u'offenc']
[u'dane', u'appoint', u'head', u'correct']
[u'demetriou', u'move', u'heat', u'brereton']
[u'dengu', u'fever', u'case', u'declin']
[u'deputi', u'opposit', u'leader']
[u'east', u'coast', u'koala']
[u'effort', u'save', u'mildara', u'wineri']
[u'eighteen', u'anti', u'terror', u'arrest', u'europ']
[u'europ', u'battl', u'voter', u'apathi']
[u'evan', u'lead', u'tour', u'austria']
[u'faldo', u'secur', u'spot', u'open']
[u'fallujah', u'rebel', u'kill', u'iraqi', u'soldier']
[u'farmer', u'look', u'rain', u'boost']
[u'fear', u'air', u'bottl', u'plant', u'closur', u'impact']
[u'feder', u'fund', u'rural', u'transact', u'centr']
[u'feder', u'fund', u'focus', u'highway', u'work']
[u'feder', u'canter', u'hall', u'second', u'round']
[u'sugar', u'payment', u'loom']
[u'fisherman', u'wharf', u'consid', u'rockhampton']
[u'flaki', u'studi', u'target', u'greenhous', u'emiss']
[u'foley', u'church', u'resign', u'hypocrit']
[u'govt', u'advis', u'stand', u'trial']
[u'polic', u'offic', u'face', u'jail', u'insur']
[u'forum', u'focus', u'orang', u'job']
[u'charg', u'underworld', u'murder', u'plot']
[u'free', u'hostag', u'return', u'boost', u'berlusconi']
[u'crucial', u'england', u'black', u'clash']
[u'leader', u'gather', u'meet']
[u'seek', u'help', u'creat', u'world', u'peacekeep', u'forc']
[u'gabon', u'plane', u'crash', u'kill']
[u'gallop', u'face', u'cotton', u'opposit']
[u'game', u'critic', u'prais', u'gameboy', u'rival', u'soni']
[u'gene', u'mutat', u'link', u'bowel', u'diseas']
[u'good', u'thing', u'moot', u'futur', u'hospit']
[u'govt', u'defend', u'rail', u'plan']
[u'govt', u'quiz', u'school', u'build', u'delay']
[u'govt', u'seek', u'student', u'feedback', u'year', u'certif']
[u'greenough', u'shire', u'elect', u'plan']
[u'green', u'share', u'land', u'clear', u'fear']
[u'group', u'rais', u'rise', u'damp', u'health', u'concern']
[u'haas', u'defend', u'auslink', u'road', u'announc']
[u'hear', u'tell', u'defenc', u'complaint', u'process', u'meaningless']
[u'hec', u'like', u'welfar', u'repay', u'propos', u'unveil']
[u'henin', u'hardenn', u'pull', u'wimbledon']
[u'hepat', u'forc', u'pongia', u'retir']
[u'hooray', u'hippo', u'babi']
[u'home', u'loan', u'slump', u'begin', u'slow']
[u'hospit', u'junior', u'medic', u'offic']
[u'howard', u'hold', u'littl', u'hope', u'iraq', u'wheat', u'debt']
[u'humpback', u'whale', u'free', u'rope', u'port', u'macquari']
[u'icrc', u'revisit', u'ghraib']
[u'indian', u'cinema', u'grenad', u'wound']
[u'indigen', u'tour', u'oper', u'win', u'award']
[u'intellig', u'communiti', u'need', u'supervisor', u'think', u'tank']
[u'iran', u'criticis', u'hide', u'nuclear', u'activ']
[u'iraq', u'deal', u'allow', u'prison']
[u'isra', u'helicopt', u'strike', u'gaza', u'workshop']
[u'isra', u'soldier', u'face', u'court', u'peac', u'activist']
[u'judg', u'pleas', u'tidi', u'town', u'work']
[u'kakadu', u'review', u'advis', u'waterfal', u'cultur']
[u'kennedi', u'ponder', u'man', u'offer']
[u'kennedi', u'ponder', u'eagl', u'offer']
[u'koala', u'number', u'bear', u'kemp']
[u'kurd', u'threaten', u'boycott', u'interim', u'govern']
[u'labor', u'promis', u'campbel', u'budget', u'fair', u'hear']
[u'langer', u'skipper', u'chief', u'minist']
[u'latino', u'star', u'silent', u'nuptial']
[u'lawyer', u'fear', u'mislead', u'conduct', u'hardi', u'fund']
[u'lawyer', u'strike', u'affair', u'prison']
[u'life', u'leav', u'warrnambool']
[u'life', u'mountain', u'highway', u'plan']
[u'lightn', u'strike', u'adelaid', u'hous', u'storm']
[u'littl', u'sign', u'drug', u'defenc', u'forc', u'say', u'govt']
[u'long', u'distanc', u'walker', u'track', u'creat', u'record']
[u'lord', u'mayor', u'urg', u'labor', u'brisban', u'budget']
[u'court', u'shopkeep', u'assault']
[u'jail', u'holiday', u'bomb', u'hoax']
[u'stab', u'servic', u'station', u'hold']
[u'stand', u'trial', u'underworld', u'murder']
[u'market', u'buck', u'wall', u'street', u'lead']
[u'market', u'cautious', u'rat', u'specul', u'grow']
[u'mcgrath', u'macgil', u'lanka', u'test']
[u'medic', u'research', u'fund', u'expert']
[u'applic', u'near', u'complet']
[u'miner', u'export', u'earn', u'declin']
[u'minist', u'promis', u'polic', u'redfern']
[u'minist', u'say', u'hour', u'clinic', u'success']
[u'minist', u'seek', u'solut', u'ward', u'share', u'woe']
[u'minist', u'hear', u'case', u'hospit', u'fund', u'boost']
[u'montgomeri', u'accus', u'dope', u'violat']
[u'advic', u'seek', u'council', u'polit', u'donat']
[u'australian', u'overtim', u'free']
[u'fund', u'seek', u'communiti', u'bank']
[u'home', u'hous', u'estat']
[u'mother', u'succumb', u'matravill', u'injuri']
[u'motocross', u'rider', u'critic']
[u'nelson', u'pledg', u'maintain', u'nurs', u'degre', u'place']
[u'nelson', u'support', u'uni', u'nurs', u'cours', u'scrap']
[u'agricultur', u'think', u'tank', u'aim', u'drive', u'rural']
[u'director', u'head', u'nation', u'film', u'sound']
[u'prostat', u'treatment', u'encourag']
[u'virgin', u'blue', u'flight', u'fail', u'worri', u'jetstar']
[u'korea', u'slam', u'reckless', u'south', u'navi']
[u'world', u'record', u'dragila']
[u'ogradi', u'gutierrez', u'take', u'stage', u'overal']
[u'produc', u'monitor', u'nigerian', u'strike']
[u'hospit', u'sale']
[u'olymp', u'flame', u'light', u'china']
[u'oppn', u'accus', u'link', u'aust', u'troop', u'prison']
[u'oppn', u'highlight', u'water', u'restrict', u'worri']
[u'pageant', u'plastic', u'fantast']
[u'pair', u'arrest', u'gangland', u'sting']
[u'pakistan', u'afghan', u'border', u'offens', u'kill']
[u'appoint', u'shake']
[u'pharmacist', u'approv', u'forgeri', u'campaign']
[u'pie', u'lodg', u'tarrant', u'appeal']
[u'plan', u'area', u'health', u'servic', u'board']
[u'player', u'bond', u'booz']
[u'defend', u'bush', u'iraq', u'comment']
[u'welcom', u'resolut', u'iraq']
[u'poki', u'spend', u'fall']
[u'polic', u'lift', u'pullenval', u'emerg', u'declar']
[u'policeman', u'honour', u'braveri']
[u'polic', u'probe', u'attempt', u'theft']
[u'polic', u'question', u'wit', u'granvill', u'shoot']
[u'polic', u'search', u'arm', u'brisban', u'blaze']
[u'portugues', u'candid', u'die', u'campaign']
[u'premier', u'defend', u'suprem', u'court', u'appoint', u'promis']
[u'premier', u'support', u'garret', u'preselect']
[u'prison', u'offic', u'union', u'disgust', u'abus']
[u'properti', u'council', u'give', u'mediat', u'thumb']
[u'boost', u'spend', u'art']
[u'ranieri', u'home', u'valencia']
[u'rat', u'agenc', u'warn', u'elect', u'year', u'spend']
[u'rebat', u'cut', u'fund', u'machin']
[u'record', u'fin', u'brawler']
[u'redfern', u'block', u'seal', u'polic', u'chase']
[u'reef', u'author', u'defend', u'huge', u'pontoon', u'plan']
[u'renew', u'concern', u'launceston', u'qualiti']
[u'rescu', u'team', u'stay', u'clear', u'indonesian', u'volcano']
[u'research', u'oppos', u'platypus', u'kill', u'plan']
[u'russia', u'seek', u'support']
[u'africa', u'reject', u'mercenari', u'home']
[u'tip', u'lose', u'smelter', u'project']
[u'seafood', u'industri', u'air', u'reef', u'line', u'plan', u'concern']
[u'second', u'attack', u'sabotag', u'iraq', u'pipelin']
[u'senat', u'urg', u'govt', u'control', u'water']
[u'sharon', u'need', u'labour', u'support', u'pullout', u'offici']
[u'societi', u'get', u'black']
[u'small', u'island', u'win', u'literari', u'prize']
[u'solar', u'power', u'project', u'receiv', u'feder', u'fund']
[u'south', u'east', u'power', u'upgrad']
[u'specialist', u'team', u'improv', u'sexual', u'health']
[u'spirit', u'find', u'evid', u'water', u'mar']
[u'store', u'blaze', u'consid', u'suspici']
[u'storm', u'leav', u'communiti', u'dark']
[u'suicid', u'bomb', u'iraq', u'claim', u'live']
[u'superhero', u'go', u'onlin']
[u'survey', u'highlight', u'fall', u'farmer', u'number']
[u'suspend', u'policeman', u'plead', u'case', u'sack']
[u'sydney', u'close', u'nurs', u'cours']
[u'tamworth', u'princip', u'die']
[u'student', u'benefit', u'danish', u'scholarship']
[u'tate', u'origin', u'fit', u'scare']
[u'tate', u'succumb', u'injuri']
[u'teacher', u'postpon', u'stop', u'work', u'meet']
[u'teen', u'get', u'detent', u'pilbara', u'crime']
[u'teen', u'shoot', u'hockey', u'club', u'incid']
[u'thailand', u'deporte', u'arriv', u'brisban']
[u'thorp', u'test', u'olymp', u'prepar']
[u'totti', u'azzurri', u'say', u'trapattoni']
[u'tourism', u'group', u'lament', u'orang', u'demis']
[u'train', u'boost', u'rescu', u'chopper', u'servic']
[u'train', u'licenc', u'greyhound', u'kicker']
[u'transport', u'group', u'seek', u'fund', u'detail']
[u'tribut', u'pay', u'soldier']
[u'tutor', u'deni', u'inadequ', u'jail', u'supervis', u'claim']
[u'upgrad', u'queenscliff', u'port', u'state']
[u'convoy', u'drive', u'shoot']
[u'valu', u'hous', u'loan', u'jump']
[u'venezuela', u'chavez', u'face', u'referendum']
[u'vote', u'liber', u'strip', u'hungari', u'girl', u'say']
[u'warn', u'issu', u'pregnanc', u'drug']
[u'domain', u'registr', u'million']
[u'whitsunday', u'driver', u'target', u'drink', u'drive', u'campaign']
[u'wild', u'west', u'rodeo', u'high', u'tail', u'china']
[u'william', u'charg', u'follow', u'arrest']
[u'woman', u'kill', u'mandurah', u'head', u'crash']
[u'workcov', u'disclos', u'contract']
[u'worker', u'return', u'furnac', u'relin', u'begin']
[u'worksaf', u'test', u'fire', u'territori', u'firework']
[u'wrangl', u'continu', u'worker', u'camp']
[u'yakama', u'featur', u'brisban']
[u'young', u'peopl', u'sugar', u'industri']
[u'kill', u'dhaka', u'build', u'collaps']
[u'govt', u'slow', u'foster', u'carer']
[u'team', u'drought', u'applic']
[u'issu', u'warn', u'beachgoer']
[u'agreement', u'reach', u'medic', u'retriev', u'unit']
[u'plan', u'generat', u'support']
[u'ambul', u'servic', u'seek', u'continu', u'independ']
[u'australia', u'boost', u'lankan', u'refuge']
[u'bail', u'allow', u'drug', u'accus', u'return']
[u'bakeri', u'worker', u'redund']
[u'bank', u'england', u'rais', u'rat']
[u'bear', u'hope', u'continu', u'win', u'way']
[u'becker', u'dismiss', u'henman', u'chanc']
[u'beef', u'export', u'japan', u'rise']
[u'gun', u'final', u'open', u'prepar']
[u'boom', u'antarct', u'tourism', u'face', u'regul']
[u'brazil', u'leav', u'star', u'home', u'copa', u'america']
[u'britney', u'undergo', u'knee', u'surgeri', u'injuri']
[u'briton', u'attempt', u'vote', u'sale', u'internet']
[u'brit', u'hook', u'onlin', u'mobil', u'nightclub']
[u'bskyb', u'unveil', u'plan', u'free', u'digit', u'televis']
[u'bush', u'chirac', u'odd', u'nato', u'role', u'iraq']
[u'button', u'schus', u'magnific', u'seven']
[u'car', u'plung', u'river', u'bridg', u'collaps', u'china']
[u'cathol', u'teacher', u'rise', u'disappoint']
[u'centr', u'preserv', u'broom', u'indigen', u'cultur']
[u'cherri', u'king', u'fume', u'council', u'reject']
[u'chines', u'construct', u'worker', u'shoot', u'dead']
[u'client', u'unawar', u'soft', u'dollar', u'bonus', u'asic']
[u'compani', u'face', u'hefti', u'fin', u'hangar', u'collaps']
[u'compani', u'power', u'strike', u'vandal']
[u'compani', u'apologis', u'black', u'coal', u'smoke']
[u'compani', u'deni', u'aquif', u'investig', u'futil']
[u'coron', u'launch', u'brief', u'wall', u'death']
[u'council', u'await', u'light', u'rail', u'probe', u'result']
[u'council', u'consid', u'speed', u'trailer']
[u'council', u'hand', u'archbishop', u'resign', u'deadlin']
[u'council', u'maleni', u'supermarket', u'site']
[u'council', u'snub', u'surgeri', u'plan']
[u'council', u'protest', u'plan', u'elector', u'chang']
[u'council', u'stop', u'work', u'hotel', u'grand', u'site']
[u'council', u'vote', u'water', u'suppli', u'takeov']
[u'court', u'award', u'woman', u'supermarket', u'slip']
[u'croc', u'rilli', u'fin', u'deal']
[u'cruis', u'boat', u'crash', u'river', u'danub', u'bridg']
[u'cultur', u'signific', u'halt', u'wind', u'farm', u'plan']
[u'deadlin', u'releas', u'child', u'detaine', u'pass']
[u'decis', u'reserv', u'soccer', u'player', u'assault']
[u'defenc', u'busi', u'centr', u'boost', u'hunter', u'economi']
[u'devil', u'breed', u'program', u'earli', u'consid']
[u'devil', u'clash', u'werribe', u'devonport']
[u'diver', u'assess', u'darwin', u'princess', u'wreck']
[u'dokic', u'oust', u'american', u'qualifi', u'stosur']
[u'donald', u'duck', u'septuagenarian']
[u'drive', u'penalti', u'doubl', u'long', u'weekend']
[u'dutch', u'chang', u'tactic', u'play', u'winger']
[u'witt', u'cop', u'match']
[u'elder', u'politician', u'attend', u'yirrkala', u'memori']
[u'electr', u'price', u'rise', u'signific', u'burden']
[u'elizabeth', u'taylor', u'settl', u'lawsuit', u'sack']
[u'elus', u'croc', u'free', u'reptil', u'longer']
[u'engelsman', u'hit', u'spanish', u'pool']
[u'england', u'euro', u'henri']
[u'england', u'play', u'australia']
[u'environ', u'protect', u'get', u'multi', u'million', u'dollar']
[u'evan', u'keep', u'austrian', u'lead']
[u'ewingsdal', u'moot', u'possibl', u'hospit', u'site']
[u'farm', u'group', u'hop', u'water', u'share', u'agreement']
[u'farm', u'group', u'support', u'insur', u'levi', u'plan']
[u'father', u'find', u'daughter', u'law', u'bodi', u'fridg']
[u'fish', u'kill', u'caus', u'remain', u'unknown']
[u'flanneri', u'fulli', u'awar', u'fittler', u'factor']
[u'flanneri', u'fulli', u'awar', u'fittler', u'factor']
[u'flinder', u'expect', u'increas', u'fee']
[u'foley', u'play', u'smelter', u'decis']
[u'mitsubishi', u'presid', u'arrest', u'death']
[u'vicar', u'paedophil', u'jail', u'sentenc', u'uphold']
[u'fossil', u'confirm', u'pterosaur', u'lay', u'egg']
[u'face', u'court', u'gangland', u'murder', u'plot', u'charg']
[u'franc', u'play', u'wait', u'trezeguet']
[u'freak', u'second', u'storm', u'hit', u'melb']
[u'fruit', u'grower', u'seek', u'better', u'deal']
[u'fruit', u'grower', u'urg', u'monitor', u'quarantin']
[u'fund', u'hors', u'centr', u'studi']
[u'leader', u'support', u'revis', u'east', u'africa', u'reform']
[u'gallop', u'promis', u'broom', u'age', u'care', u'meet']
[u'gangland', u'arrest', u'save', u'life']
[u'gangland', u'target', u'refus', u'protect']
[u'garrett', u'lurch', u'leav']
[u'garrett', u'nail', u'colour', u'labor', u'mast']
[u'garrett', u'vote', u'australia']
[u'garrett', u'depth', u'carr', u'say']
[u'golf', u'diplomaci', u'signal', u'australia']
[u'govt', u'move', u'address', u'nurs', u'shortag']
[u'govt', u'secret', u'releas', u'children', u'detent']
[u'govt', u'stand', u'kangaroo', u'flat', u'school', u'project']
[u'govt', u'foot', u'york', u'park', u'match']
[u'group', u'find', u'age', u'care', u'crisi']
[u'group', u'suggest', u'tougher', u'mulga', u'clear', u'guidelin']
[u'gunmen', u'attack', u'pakistani', u'general', u'convoy']
[u'hervey', u'airport', u'expans', u'take']
[u'hewitt', u'cruis', u'reid', u'beat', u'queen']
[u'high', u'court', u'chief', u'want', u'peopl', u'train', u'judg']
[u'high', u'hop', u'unlock', u'histori']
[u'high', u'hop', u'north', u'east', u'tourism', u'trail']
[u'hill', u'reject', u'water', u'asset', u'claim']
[u'hockeyroo', u'blow', u'chanc', u'draw']
[u'hop', u'high', u'medicar', u'licenc']
[u'huddersfield', u'swoop', u'raider', u'draw']
[u'human', u'remain', u'burn', u'home']
[u'want', u'stat']
[u'indian', u'forc', u'battl', u'rebel', u'kashmir', u'mosqu']
[u'indigen', u'land', u'agreement', u'say']
[u'indigen', u'leader', u'sign', u'anti', u'violenc', u'alcohol']
[u'time', u'free', u'child', u'detaine', u'howard', u'tell']
[u'jobless', u'rate', u'expect', u'remain']
[u'kalgoorli', u'hear', u'latin', u'american', u'opportun']
[u'kennedi', u'confirm', u'man']
[u'kernot', u'warn', u'garrett', u'cultur']
[u'kerri', u'lead', u'bush', u'latest', u'presidenti']
[u'kite', u'tee', u'open']
[u'lake', u'eyr', u'agreement', u'benefit', u'river']
[u'lake', u'eyr', u'basin', u'meet', u'address', u'challeng']
[u'lend', u'figur', u'concern', u'hous', u'bodi']
[u'lennon', u'admit', u'garrett', u'polici', u'differ']
[u'life', u'leav', u'rural', u'manag', u'faculti']
[u'log', u'group', u'demand', u'clear', u'fell', u'safeti', u'report']
[u'mackay', u'rememb', u'plane', u'crash', u'tragedi']
[u'magnesium', u'plant', u'tip']
[u'appeal', u'murder', u'convict']
[u'arrest', u'thailand', u'sydney', u'acid', u'attack']
[u'die', u'crash']
[u'mango', u'grower', u'pressur', u'good', u'produc']
[u'kill', u'show', u'friend', u'hand', u'grenad']
[u'mayor', u'beckon', u'region', u'industri']
[u'midnight', u'vouch', u'vote', u'record', u'garrett']
[u'militari', u'kill', u'aceh', u'separatist', u'rebel']
[u'minist', u'encourag', u'graduat', u'skill', u'test']
[u'minist', u'say', u'health', u'woe', u'sign', u'time']
[u'minist', u'speak', u'pension', u'payment']
[u'peopl', u'arrest', u'madrid', u'bomb']
[u'motocross', u'champ', u'porter', u'die', u'crash']
[u'motorcyclist', u'prepar', u'odyssey']
[u'health', u'servic', u'delay', u'worri', u'mayor']
[u'stromlo', u'water', u'plant', u'readi', u'decemb']
[u'trial', u'manslaught', u'babi']
[u'murder', u'committ', u'question', u'wit']
[u'murray', u'darl', u'basin', u'river', u'undergo', u'year']
[u'role', u'aborigin', u'legal', u'servic', u'lawyer']
[u'news', u'corp', u'prop', u'share', u'market']
[u'free', u'ride', u'ambul', u'work', u'ban']
[u'health', u'merger', u'confirm']
[u'electr']
[u'ogradi', u'fourth', u'stage', u'mar', u'horror', u'crash']
[u'olymp', u'coverag', u'break', u'record']
[u'olymp', u'organis', u'busi', u'slang', u'match']
[u'olyroo', u'hand', u'tough', u'olymp', u'draw']
[u'ongo', u'beef', u'fear', u'boost', u'aust', u'export']
[u'opal', u'win', u'start']
[u'parent', u'access', u'child', u'medic', u'record', u'backward']
[u'past', u'chang', u'predict', u'futur', u'climat']
[u'perth', u'hous', u'market', u'lead', u'aust']
[u'philippin', u'tornado', u'kill']
[u'picioan', u'tarrant', u'lose', u'appeal']
[u'plane', u'crash', u'haunt', u'survivor']
[u'player', u'associ', u'unhappi', u'tribun', u'time']
[u'aust', u'reach', u'packag', u'agreement']
[u'polic', u'foil', u'alleg', u'gangland']
[u'polic', u'hunt', u'escap', u'perth', u'court', u'break']
[u'polic', u'charg', u'drug', u'raid']
[u'polic', u'quiz', u'journalist', u'gangland', u'stori']
[u'polic', u'releas', u'suspect', u'photo', u'wit', u'appeal']
[u'porter', u'succumb', u'injuri']
[u'powel', u'urg', u'latham', u'drop', u'iraq', u'troop', u'deadlin']
[u'primat', u'dismiss', u'call', u'archbishop']
[u'probe', u'aborigin', u'corp', u'end']
[u'public', u'urg', u'council', u'supermarket', u'land']
[u'public', u'urg', u'consid', u'shoot']
[u'confirm', u'prefer', u'smelter', u'site']
[u'rain', u'help', u'boost', u'cattl', u'sale', u'price']
[u'rat', u'talk', u'push', u'dollar', u'higher']
[u'reagan', u'corteg', u'pass', u'washington']
[u'reef', u'author', u'seek', u'comment', u'visitor', u'propos']
[u'report', u'highlight', u'age', u'care', u'servic', u'shortag']
[u'rescuer', u'watch', u'whale']
[u'resign', u'plung', u'caledonia', u'polit']
[u'rise', u'energi', u'price', u'stall', u'apec', u'economi']
[u'riverland', u'citrus', u'shipment', u'head']
[u'robe', u'provid', u'clinic', u'senat', u'chairman']
[u'rocket', u'scramjet', u'research']
[u'rumsfeld', u'tip', u'replac', u'jail', u'abus', u'investig']
[u'runner', u'jamieson', u'go', u'athen']
[u'church', u'committe', u'plan', u'archbishop', u'resign']
[u'sadr', u'militia', u'polic', u'clash', u'najaf']
[u'samo', u'rathbon', u'hand', u'wallabi', u'debut']
[u'schoolgirl', u'killer', u'parol']
[u'seafood', u'industri', u'warn', u'price', u'rise']
[u'senat', u'slam', u'indigen', u'student', u'fund', u'chang']
[u'assault', u'workshop', u'focus', u'drink', u'spike']
[u'shire', u'adopt', u'council', u'admin', u'build', u'design']
[u'spirit', u'troublesom', u'adventur', u'award']
[u'lanka', u'ask', u'chang', u'bowl', u'rule']
[u'state', u'blame', u'feder', u'govt', u'closur']
[u'streak', u'run', u'amid', u'blue', u'specul']
[u'strong', u'expect', u'hospit', u'site']
[u'survey', u'find', u'increas', u'support', u'leagu']
[u'taliban', u'deni', u'kill', u'chines', u'worker']
[u'talk', u'focus', u'save', u'busi', u'centr']
[u'foot', u'york', u'park', u'match']
[u'teacher', u'rise', u'fuel', u'polit', u'stoush']
[u'teacher', u'feder', u'chief', u'port', u'macquari']
[u'tear', u'dispers', u'strike', u'nigerian', u'worker']
[u'telstra', u'sign', u'deal', u'mobil', u'servic']
[u'terror', u'fear', u'prompt', u'palau', u'secur', u'concern']
[u'terror', u'suspect', u'father', u'object', u'forfeit', u'bail']
[u'terri', u'give', u'time', u'prove', u'fit']
[u'thiess', u'worker', u'wont', u'rule', u'strike', u'action']
[u'charg', u'inner', u'citi', u'polic', u'chase']
[u'injur', u'melbourn', u'smash']
[u'toyn', u'rule', u'forc', u'hospit', u'reappoint']
[u'train', u'run', u'minut', u'late', u'deem', u'time']
[u'trial', u'alleg', u'peopl', u'smuggler', u'begin', u'week']
[u'tribut', u'flow', u'motocross', u'kill', u'accid']
[u'tribut', u'flow', u'motocross', u'porter']
[u'trio', u'olymp', u'fenc', u'team']
[u'trio', u'sentenc', u'caravan', u'blaze']
[u'strike', u'consid', u'repeat']
[u'unemploy', u'drop']
[u'union', u'anger', u'beatti', u'free', u'trade', u'support']
[u'union', u'hour', u'work', u'major', u'issu']
[u'union', u'open', u'age', u'care', u'hotlin']
[u'halv', u'ghraib', u'prison', u'number']
[u'vine', u'scrap', u'tour']
[u'voter', u'garrett', u'refshaug']
[u'minist', u'pressur', u'coalit', u'deputi']
[u'increas', u'australia', u'terror', u'risk']
[u'washington', u'begin', u'farewel', u'reagan']
[u'westfield', u'plan', u'kotara', u'upgrad']
[u'whale', u'earli']
[u'whale', u'spot', u'east', u'gippsland']
[u'wickham', u'point', u'strike', u'worsen']
[u'wood', u'play', u'skin', u'game', u'south', u'korea', u'organis']
[u'yorta', u'yorta', u'land', u'deal', u'shonki']
[u'call', u'oversea', u'nurs', u'boost', u'workforc']
[u'claim', u'iraq', u'withdraw', u'wont', u'hurt', u'relat']
[u'qaeda', u'kingpin', u'direct', u'pakistan', u'convoy', u'attack']
[u'archbishop', u'quit', u'abus', u'scandal']
[u'asean', u'chairmanship', u'pressur', u'burma']
[u'athen', u'judo', u'team', u'name']
[u'athlet', u'happi', u'olymp', u'stadium']
[u'scammer', u'jail']
[u'attempt', u'murder', u'charg', u'surpris', u'hickss', u'father']
[u'auspin', u'tarpeena', u'worker', u'threaten', u'industri', u'unrest']
[u'babi', u'killer', u'sentenc', u'increas']
[u'bacteria', u'blame', u'colli', u'fish', u'kill']
[u'bathurst', u'council', u'reveal', u'logo']
[u'beatl', u'festiv', u'mark', u'australian', u'tour']
[u'beckham', u'knicker', u'knot', u'hotel', u'pictur']
[u'birthday', u'card', u'spark', u'polit']
[u'blue', u'expect', u'face', u'improv', u'maroon', u'attack']
[u'bodi', u'near', u'morwel']
[u'boiler', u'room', u'businessmen', u'avoid', u'jail']
[u'broadbeach', u'accid', u'put', u'hospit']
[u'build', u'industri', u'readi', u'higher', u'home', u'standard']
[u'bush', u'blair', u'play', u'iraq', u'troop', u'disagr']
[u'bush', u'join', u'thousand', u'honour', u'reagan']
[u'busi', u'fight', u'sunday', u'trade']
[u'busi', u'group', u'upbeat', u'magnesium', u'smelter']
[u'cabaret', u'star', u'belt', u'adelaid']
[u'cartwright', u'name', u'gold', u'coast', u'coach']
[u'chair', u'pose', u'weighti', u'problem', u'wimbledon']
[u'chariti', u'donat', u'sallyman', u'memori']
[u'children', u'kill', u'sadr', u'militia', u'troop', u'clash']
[u'church', u'committe', u'chairman', u'resign', u'archbishop']
[u'finalis', u'nomin']
[u'club', u'unhappi', u'gold', u'coast', u'dolphin']
[u'collina', u'blow', u'open', u'whistl']
[u'comment', u'invit', u'best', u'manag', u'money']
[u'committe', u'examin', u'need', u'environment', u'watchdog']
[u'compani', u'upbeat', u'wind', u'farm', u'plan']
[u'concern', u'region', u'domest', u'violenc', u'help']
[u'congo', u'coup', u'ringlead', u'surround', u'kabila']
[u'congo', u'guard', u'stage', u'coup']
[u'council', u'defend', u'phone', u'tower', u'process']
[u'councillor']
[u'council', u'outlin', u'budget', u'detail']
[u'crow', u'dump', u'smart']
[u'curdl', u'milk', u'magic', u'seneg', u'world', u'hop']
[u'dairi', u'countri', u'music', u'festiv', u'monto']
[u'dead', u'woman', u'emerg', u'treatment', u'compromis']
[u'delhi', u'polic', u'unearth', u'school', u'steal']
[u'dementia', u'impact', u'main', u'age', u'care']
[u'desert', u'champ', u'good', u'marriag', u'pledg']
[u'detent', u'centr', u'appeal', u'fail']
[u'develop', u'reveal', u'ental', u'hous']
[u'discrimin', u'law', u'boost', u'alcohol', u'ban', u'case', u'expert']
[u'handler', u'alleg', u'ghraib', u'abus', u'authoris']
[u'dog', u'understand', u'languag', u'research']
[u'appeal', u'jack', u'roch', u'sentenc']
[u'dragon', u'catch', u'panther']
[u'draw', u'light']
[u'drink', u'driver', u'narrowli', u'miss', u'polic', u'offic', u'court']
[u'driver', u'urg', u'enjoy', u'safe', u'long', u'weekend']
[u'dutch', u'risk', u'legal', u'action', u'ballot', u'result']
[u'earli', u'intervent', u'help', u'control', u'weed']
[u'east', u'coast', u'await', u'governor', u'visit']
[u'email', u'sack', u'bungl', u'infuri', u'atsic', u'worker']
[u'england', u'suit', u'franc', u'say', u'zidan']
[u'evan', u'retain', u'yellow', u'brutal', u'climb']
[u'fletcher', u'jone', u'worker', u'await', u'compo', u'decis']
[u'oper', u'iraqi', u'end', u'success']
[u'farmer', u'improv', u'outlook']
[u'fear', u'air', u'breed']
[u'feder', u'fund', u'govt', u'servic']
[u'fight', u'continu', u'save', u'colleg']
[u'woman', u'appoint', u'committe']
[u'fish', u'lure', u'dollar', u'south', u'burnett']
[u'garrett', u'highlight', u'labor', u'forest', u'split', u'brown']
[u'garrett', u'warn', u'tasmanian', u'issu']
[u'germani', u'need', u'confid', u'inject', u'say', u'voeller']
[u'gibernau', u'gun', u'home']
[u'goldfield', u'hear', u'detail']
[u'govt', u'accus', u'put', u'brake', u'road', u'fund']
[u'govt', u'give', u'assur', u'rehab', u'servic']
[u'govt', u'urg', u'open', u'teacher', u'rise', u'case']
[u'greenback', u'declin', u'prompt', u'aust', u'dollar', u'recoveri']
[u'green', u'group', u'seek', u'corindi', u'land', u'clear', u'probe']
[u'group', u'save', u'structur']
[u'group', u'want', u'killer', u'free', u'resum', u'life']
[u'groyn', u'plan', u'unlik']
[u'gucci', u'eas', u'luxuri', u'captiv']
[u'habib', u'charg', u'loom', u'say']
[u'hawk', u'fight']
[u'histori', u'beckon', u'ireland', u'troubl', u'springbok']
[u'hospit', u'death', u'spark', u'coroni', u'inquiri', u'request']
[u'howard', u'seek', u'inform', u'assassin', u'threat']
[u'indonesian', u'dentist', u'arrest', u'wake', u'terror']
[u'indonesian', u'volcano', u'eas', u'fear', u'remain']
[u'inquiri', u'tell', u'job', u'lose', u'follow', u'rail', u'line']
[u'intern', u'rift', u'threaten', u'interim', u'iraqi', u'govern']
[u'ipart', u'decis', u'wont', u'stop', u'hunter', u'power', u'boost']
[u'iran', u'seek', u'tone', u'iaea', u'resolut']
[u'iraq', u'anger', u'result', u'blair', u'poll', u'drub']
[u'jetstar', u'compens', u'passeng', u'strand', u'overnight']
[u'job', u'scheme', u'teach', u'forestri', u'skill']
[u'justic', u'minist', u'refus', u'resign', u'call']
[u'king', u'frame', u'terri', u'battl', u'fit']
[u'knight', u'complain', u'tahu', u'approach']
[u'kookaburra', u'european', u'tour', u'poor', u'note']
[u'labor', u'take', u'garrett', u'preselect', u'begin']
[u'labor', u'fast', u'track', u'garrett', u'membership']
[u'labour', u'agreement', u'help', u'eas', u'nurs', u'shortag']
[u'land', u'seek', u'indigen', u'justic', u'centr']
[u'launceston', u'dirti', u'health', u'issu']
[u'lead', u'zinc', u'product', u'fall']
[u'leagu', u'world', u'mourn', u'refere', u'pearc']
[u'legendari', u'singer', u'charl', u'dead']
[u'levi', u'bigger', u'bite', u'cherri']
[u'librari', u'futur', u'close', u'book', u'mayor']
[u'lib', u'attack', u'revenu', u'rais', u'park', u'fin']
[u'incom', u'earner', u'spend', u'smoke', u'studi', u'say']
[u'magazin', u'order', u'eminem', u'legal', u'fee']
[u'malthous', u'slam', u'tribun']
[u'attack', u'women', u'apart', u'court', u'hear']
[u'charg', u'bash', u'remand', u'custodi']
[u'charg', u'cattl', u'duf']
[u'flee', u'court', u'fail', u'meet', u'bail']
[u'man', u'unfaz', u'kennedi', u'injuri']
[u'manslaught', u'charg', u'get', u'bail']
[u'mayo', u'outclass', u'armstrong', u'time', u'trial']
[u'mcginti', u'back', u'hospit', u'site']
[u'mention', u'hospit', u'death', u'insensit']
[u'merino', u'line', u'record', u'price']
[u'mice', u'chew', u'competit', u'outrag', u'rspca']
[u'industri', u'back', u'push', u'boost', u'job']
[u'montoya', u'unmov', u'mclaren', u'problem']
[u'moruya', u'brawl', u'spark', u'polic', u'arrest']
[u'multi', u'million', u'dollar', u'radar', u'label', u'public']
[u'nebo', u'shire', u'improv', u'growth']
[u'england', u'health', u'fight', u'health']
[u'global', u'mine', u'boom', u'forecast']
[u'milk', u'deal', u'benefit', u'supplier']
[u'machin', u'help', u'treat', u'prematur', u'babi']
[u'visit', u'ophthalmologist', u'wide', u'burnett']
[u'abus', u'watch', u'guantanamo', u'general']
[u'nurs', u'label', u'irrespons', u'strike', u'plan']
[u'obstetrician', u'clear', u'incompet', u'babi']
[u'brother', u'get', u'bore', u'ralf']
[u'ohern', u'doubl', u'mission']
[u'year', u'make', u'littl', u'differ', u'minardi']
[u'opal', u'cruis', u'past', u'china']
[u'pair', u'face', u'drug', u'charg', u'bail']
[u'pakistan', u'attack', u'qaeda', u'hideout']
[u'panda', u'edg', u'brink']
[u'parent', u'want', u'better', u'offer', u'teacher']
[u'dispar', u'anger', u'public', u'school', u'teacher']
[u'petrol', u'bomber', u'pelt', u'polic', u'irish', u'poll']
[u'pilot', u'caution', u'safeti', u'fink', u'desert']
[u'piston', u'send', u'laker', u'time']
[u'plan', u'focus', u'natur', u'resourc', u'manag']
[u'accus', u'latham', u'indiffer', u'allianc']
[u'pneumococc', u'vaccin', u'program', u'target', u'children']
[u'polic', u'investig', u'train', u'derail']
[u'polic', u'drug', u'charg', u'raid']
[u'polic', u'music', u'sooth', u'nigerian', u'striker']
[u'polic', u'identifi', u'truck', u'crash', u'victim']
[u'port', u'piri', u'recov', u'smelter', u'loss']
[u'portug', u'feel', u'pressur', u'greec']
[u'poverti', u'reason', u'cede', u'reserv', u'downer']
[u'premier', u'woo', u'defenc', u'contract']
[u'project', u'offer', u'altern', u'away', u'crime']
[u'qsia', u'back', u'prawn', u'export', u'move']
[u'raikkonen', u'pin', u'hop', u'machin']
[u'rain', u'boost', u'farmer', u'effort']
[u'reef', u'closur', u'creat', u'fish', u'import', u'fear']
[u'research', u'aim', u'attract', u'shearer']
[u'resid', u'plan', u'maleni', u'land', u'talk']
[u'resid', u'water', u'price', u'plan', u'hard', u'swallow']
[u'resourc', u'stock', u'boost', u'ord']
[u'rosal', u'open', u'earli', u'lead', u'delawar']
[u'rural', u'issu', u'aplenti', u'rlpb', u'confer']
[u'sack', u'offic', u'move', u'victoria', u'polic']
[u'sadr', u'loyalist', u'attack', u'najaf', u'polic', u'station']
[u'safeti', u'concern', u'farm']
[u'schole', u'turn', u'heat', u'boast', u'french']
[u'schuettler', u'advanc', u'hall', u'quarter']
[u'scolari', u'attempt', u'portug']
[u'sculli', u'announc', u'local', u'fund']
[u'search', u'continu', u'escap']
[u'search', u'abduct', u'woman', u'continu']
[u'secur', u'tight', u'perth', u'court', u'follow', u'break']
[u'sharapova', u'knock', u'stosur', u'molik']
[u'shark', u'roll', u'surfer', u'underwat', u'attack']
[u'shearer', u'kill', u'itali', u'rumour']
[u'sign', u'spoil', u'sceneri']
[u'singh', u'song', u'york']
[u'appear', u'fiji', u'court', u'drug', u'charg']
[u'smart', u'career', u'hang', u'balanc']
[u'snow', u'shortfal', u'mark', u'season', u'start']
[u'spain', u'seek', u'egyptian', u'extradit']
[u'spanish', u'armada', u'look', u'flood', u'leaki', u'russian']
[u'steven', u'set', u'person', u'best']
[u'steven', u'boost', u'blue', u'price']
[u'steven', u'boost', u'blue', u'price', u'say']
[u'strong', u'crowd', u'tip', u'countri', u'footi']
[u'survey', u'consid', u'stock', u'rout', u'futur']
[u'sydney', u'immigr', u'raid', u'target', u'bar', u'restaur']
[u'sydney', u'mop', u'unexpect', u'storm']
[u'teacher', u'union', u'urg', u'consid', u'work', u'ban']
[u'teen', u'bush', u'attack', u'teacher', u'court']
[u'telco', u'bank', u'mobil', u'money']
[u'terror']
[u'terri', u'franc', u'game']
[u'hurt', u'bomb', u'target', u'convoy']
[u'charg', u'escap']
[u'foil', u'iraq', u'sabotag']
[u'toddler', u'die', u'crash']
[u'toowoomba', u'join', u'child', u'detent', u'protest']
[u'tourism', u'council', u'claim', u'forest', u'protest', u'hurt']
[u'tuqiri', u'stick', u'union']
[u'chief', u'call', u'secur', u'upgrad', u'afghanistan']
[u'union', u'stand', u'free', u'trade', u'protest', u'plan']
[u'compani', u'face', u'iraq', u'abus', u'suit']
[u'franc', u'odd', u'summit', u'wind']
[u'valentin', u'commit', u'red']
[u'van', u'lead', u'dutch', u'attack']
[u'varieti', u'school', u'signal']
[u'vietnam', u'ban', u'report', u'inaccuraci']
[u'minist', u'draw', u'clear', u'line', u'sand']
[u'warn', u'issu', u'legionnair', u'diseas']
[u'white', u'supremacist', u'terreblanch', u'leav', u'jail']
[u'wine', u'export', u'higher']
[u'woman', u'death', u'prevent', u'coron', u'say']
[u'work', u'begin', u'massiv', u'power', u'cabl', u'bass']
[u'worker', u'escap', u'injuri', u'floor', u'collaps']
[u'world', u'leader', u'gather', u'honour', u'reagan']
[u'wreck', u'like', u'darwin', u'princess']
[u'zimbabw', u'postpon', u'test']
[u'abeylegess', u'smash', u'women', u'world', u'record']
[u'aborigin', u'artefact', u'devonport']
[u'abscond', u'sailor', u'undermin', u'secur']
[u'teacher', u'seek', u'rise']
[u'actu', u'aim', u'rais', u'child', u'labour', u'awar']
[u'aircraft', u'fear', u'prove', u'fals', u'alarm']
[u'black', u'england', u'sword']
[u'qaeda', u'slam', u'middl', u'east', u'plan']
[u'defend', u'oversea', u'train', u'doctor']
[u'angri', u'buzzard', u'terroris', u'cyclist']
[u'anti', u'racism', u'strategi', u'light']
[u'archbishop', u'pay', u'high', u'price']
[u'aussi', u'nail', u'biter', u'franc']
[u'australian', u'children', u'face', u'exploit', u'actu']
[u'baquba', u'bomb', u'injur', u'soldier', u'polic']
[u'beckham', u'sound', u'battl', u'franc', u'match']
[u'berlusconi', u'voter', u'anger', u'opposit']
[u'black', u'cap', u'driver', u'seat', u'styri']
[u'blair', u'defiant', u'despit', u'labour', u'pain']
[u'blue', u'erupt', u'virgin', u'credit']
[u'boiler', u'room', u'convict', u'warn', u'investor']
[u'bomb', u'target', u'berlusconi', u'parti', u'headquart']
[u'bomb', u'underlin', u'thai', u'secur', u'need']
[u'border', u'agreement', u'eas', u'korean', u'tension']
[u'bosnian', u'serb', u'admit', u'srebrenica', u'massacr']
[u'brigitt', u'bardot', u'fin', u'incit', u'racial', u'hatr']
[u'british', u'warship', u'crash', u'open']
[u'bulldog', u'bite', u'saint']
[u'bush', u'reject', u'north', u'korean', u'offer', u'danc', u'report']
[u'canberra', u'play', u'host', u'nation', u'poultri']
[u'carnley', u'unhappi', u'archbishop', u'resign']
[u'car', u'bike', u'king', u'desert', u'race']
[u'charg', u'lay', u'monash', u'abduct']
[u'child', u'protect', u'recruit', u'drive', u'begin']
[u'chines', u'cop', u'unhealthi', u'shoddi']
[u'claim', u'howard', u'wont', u'visit', u'princ', u'highway']
[u'colombian', u'anti', u'kidnap', u'school', u'hostag', u'number']
[u'countri', u'hospit', u'await', u'health', u'amalgam']
[u'coupl', u'maintain', u'lead']
[u'coup', u'ringlead', u'flee', u'congo', u'capit']
[u'cowboy', u'streak', u'away', u'knight']
[u'cricket', u'australia', u'wait', u'warn', u'avail']
[u'croatia', u'seek', u'fli', u'start', u'swiss']
[u'dutch', u'troop', u'stay', u'iraq']
[u'eagl', u'subdu', u'disappoint', u'crow']
[u'ebadi', u'bar', u'repres', u'dead', u'journalist']
[u'escap', u'prompt', u'immedi', u'perth', u'court', u'upgrad']
[u'european', u'stock', u'slip']
[u'fashion', u'design', u'egon', u'furstenberg', u'die']
[u'bad', u'damag', u'famili', u'home']
[u'firework', u'law', u'prove', u'inadequ', u'pratt']
[u'fishermen', u'surviv', u'day']
[u'year', u'miss', u'pine', u'plantat']
[u'futur', u'traffic', u'radar', u'uncertain']
[u'futur', u'weigh', u'webber', u'mind']
[u'gibernau', u'take', u'provision', u'pole', u'barcelona']
[u'goward', u'highlight', u'women', u'poverti', u'risk']
[u'board', u'dump']
[u'grog', u'free', u'festiv', u'focus', u'famili']
[u'hewitt', u'face', u'roddick', u'queen', u'semi']
[u'hobart', u'rat', u'valu', u'money']
[u'home', u'buyer', u'urg', u'avoid', u'mortgag', u'wrap']
[u'educ', u'bangladeshi', u'child', u'labour']
[u'immigr', u'dept', u'say', u'suicid', u'report', u'wrong']
[u'industri', u'parti', u'elect']
[u'industri', u'race', u'maintain', u'nation', u'ident']
[u'inexperienc', u'latham', u'listen', u'learn', u'downer']
[u'iran', u'condemn', u'unaccept', u'iaea', u'pressur']
[u'iran', u'free', u'internet', u'journalist', u'bail']
[u'iraqi', u'foreign', u'affair', u'offici', u'assassin']
[u'iraq', u'insurg', u'kill', u'lebanes', u'hostag', u'hold']
[u'iraqi', u'turkish', u'hostag', u'free']
[u'israel', u'demolish', u'vacat', u'settler', u'home', u'sourc']
[u'jackson', u'charg', u'remain', u'secret', u'judg', u'rule']
[u'jone', u'replac', u'read', u'england', u'squad']
[u'katherin', u'hepburn', u'belong', u'auction']
[u'kerri', u'seek', u'republican', u'run', u'mate']
[u'knowl', u'tell', u'water', u'alloc']
[u'labor', u'commit', u'deer', u'park', u'bypass', u'construct']
[u'labor', u'troop', u'iraq', u'latham']
[u'labor', u'remain', u'split', u'garrett']
[u'late', u'chang', u'portug', u'prepar', u'kick']
[u'latham', u'find', u'succour', u'british', u'vote']
[u'life', u'sentenc', u'like', u'oklahoma', u'bomb']
[u'lion', u'rampant', u'dockland']
[u'livingston', u'win', u'second', u'term', u'london', u'mayor']
[u'mandela', u'run', u'olymp', u'flame', u'prison']
[u'man', u'sever', u'nightclub', u'brawl']
[u'meteorit', u'touch', u'home']
[u'methanol', u'lace', u'alcohol', u'kill', u'poison']
[u'mill', u'martin', u'injuri', u'woe']
[u'molik', u'knock', u'edgbaston', u'quarter']
[u'morient', u'readi', u'real', u'return']
[u'mother', u'charg', u'attempt', u'murder', u'children']
[u'motorcyclist', u'die', u'start', u'long', u'weekend']
[u'mourner', u'hear', u'reagan', u'penchant', u'earlob']
[u'myskina', u'rubin', u'wimbledon', u'warm']
[u'naga', u'comeback', u'trail']
[u'navratilova', u'play', u'wimbledon', u'singl']
[u'holiday', u'road', u'toll', u'rise']
[u'opposit', u'want', u'tourism', u'sign', u'revamp']
[u'issu', u'health', u'warn']
[u'ogradi', u'take', u'stage', u'victori']
[u'oper', u'harp', u'lead', u'bank', u'robberi', u'charg']
[u'pakistan', u'bomb', u'blast', u'kill']
[u'pakistan', u'bomb', u'qaeda', u'hideout']
[u'parent', u'prais', u'govt', u'decis', u'vaccin']
[u'peopl', u'ask', u'report', u'tag', u'prawn', u'find']
[u'plane', u'report', u'troubl', u'near', u'adelaid']
[u'polic', u'appeal', u'help', u'attempt', u'murder']
[u'polic', u'investig', u'brutal', u'hotel', u'bash']
[u'polic', u'question', u'alleg', u'abduct']
[u'polic', u'recaptur', u'perth', u'escap']
[u'polic', u'stop', u'ancient', u'skull', u'leav', u'peru']
[u'princ', u'record', u'auction']
[u'prison', u'face', u'perth', u'court', u'recaptur']
[u'pulp', u'environment', u'friend', u'brown']
[u'pumpkin', u'bear', u'brunt', u'road', u'train', u'accid']
[u'member', u'latham', u'garrett']
[u'hors', u'rid', u'event', u'draw', u'global', u'attent']
[u'polic', u'investig', u'rape', u'claim']
[u'union', u'member', u'ralli']
[u'quak', u'jolt', u'japan']
[u'rabbitoh', u'kitina', u'perfect', u'start']
[u'raider', u'deplet', u'shark']
[u'rain', u'set', u'endur', u'test', u'lpga', u'championship']
[u'reagan', u'lay', u'rest']
[u'reef', u'closur', u'mail', u'boost', u'awar']
[u'ricochet', u'bullet', u'injur', u'target', u'shooter']
[u'roberto', u'carlo', u'stay', u'real']
[u'sack', u'board', u'deni', u'lack', u'consult']
[u'sadr', u'call', u'ceas', u'najaf']
[u'salmonella', u'case', u'jump']
[u'sato', u'schus', u'slipstream']
[u'saturn', u'probe', u'focus', u'dark', u'moon']
[u'scientist', u'reloc', u'lone', u'killer', u'whale']
[u'search', u'continu', u'miss', u'plane']
[u'shiit', u'group', u'clash', u'najaf']
[u'skaif', u'take', u'race']
[u'smith', u'set', u'sight', u'maroon', u'fixtur']
[u'smith', u'want', u'maroon', u'fixtur']
[u'soldier', u'hurt', u'iraq', u'helicopt', u'accid']
[u'special', u'privileg', u'timor', u'violenc', u'prison']
[u'storm', u'caus', u'problem', u'perth', u'road']
[u'storm', u'flood', u'hundr', u'nicaraguan', u'home']
[u'success', u'timet', u'hold', u'despit', u'georg']
[u'suicid', u'report', u'boost', u'detent', u'inspector']
[u'superman', u'spearman', u'put', u'grace', u'shade']
[u'sweet', u'sixteen', u'feder', u'hall']
[u'sydney', u'traffic', u'normal', u'bridg', u'accid']
[u'doctor', u'want', u'surgeri', u'wait', u'list', u'slash']
[u'woman', u'kill', u'accid']
[u'thiev', u'bottl', u'shop']
[u'thorp', u'win', u'comfort', u'free', u'california']
[u'hospit', u'legionnair']
[u'thunderbird', u'score', u'easi', u'victori', u'oriol']
[u'traffic', u'chao', u'sydney', u'harbour', u'bridg', u'crash']
[u'truss', u'highlight', u'beatti', u'latham', u'split', u'ethanol']
[u'tunnicliff', u'hold', u'lead', u'scotland']
[u'arrest', u'afghan', u'bomb', u'maker']
[u'bid', u'emot', u'farewel', u'reagan']
[u'embrac', u'nanci', u'set', u'reagan']
[u'govt', u'turn', u'speed', u'fin']
[u'victorian', u'season', u'open']
[u'wallabi', u'look', u'build', u'year', u'gregan']
[u'warn', u'break', u'hand']
[u'swimmer', u'assur', u'shark', u'attack']
[u'wood', u'earli', u'start', u'open']
[u'aqsa', u'claim', u'isra', u'troop', u'target', u'leader']
[u'jazeera', u'air', u'american', u'execut']
[u'american', u'shoot', u'dead', u'riyadh']
[u'anti', u'globalis', u'ralli', u'target', u'meet']
[u'attack', u'israel', u'continu', u'hama']
[u'australian', u'unearth', u'ancient', u'egyptian', u'cemeteri']
[u'bank', u'target', u'worker', u'client']
[u'barbequ', u'explos', u'injur']
[u'brother', u'evicte', u'stag', u'silent', u'refuge', u'protest']
[u'lade', u'bodyguard', u'hold', u'guantanamo', u'report']
[u'birney', u'claim', u'polic', u'district', u'understaf']
[u'black', u'cap', u'pace', u'england']
[u'blue', u'turn', u'fifth', u'choic', u'half']
[u'botha', u'hero', u'springbok', u'upset', u'irish']
[u'bright', u'domin', u'round']
[u'burma', u'arrest', u'parti', u'member']
[u'canberra', u'welcom', u'tourism', u'figur']
[u'bomb', u'hit', u'baghdad', u'assassin']
[u'carr', u'call', u'rail', u'fare', u'freez']
[u'cassini', u'close', u'saturn', u'moon']
[u'cat', u'continu', u'fine', u'form']
[u'china', u'approv', u'rapid', u'sar', u'test']
[u'china', u'provinc', u'recal', u'milk', u'powder', u'poison']
[u'coalit', u'hand', u'boat', u'iraqi', u'guard']
[u'coalit', u'hold', u'prison', u'sovereignti']
[u'commonwealth', u'bank', u'build', u'sale', u'darwin']
[u'connect', u'chang', u'busi', u'oper']
[u'dancer', u'squar']
[u'dignitari', u'join', u'memori', u'atsic', u'leader']
[u'director', u'moor', u'turn', u'len', u'blair']
[u'docker', u'notch', u'rare', u'away']
[u'drug', u'syndic', u'make', u'ingredi']
[u'eel', u'romp', u'record']
[u'ethanol', u'mandat', u'aust', u'wide', u'say', u'beatti']
[u'europrid', u'draw', u'germani']
[u'evan', u'track', u'austria', u'tour']
[u'farmer', u'counteract', u'citi', u'bambi', u'mental']
[u'feder', u'face', u'fish', u'hall', u'final']
[u'damag', u'orthodox', u'church', u'melbourn']
[u'servant', u'admit', u'lie', u'princ', u'charl']
[u'franc', u'england', u'cope', u'late', u'defens', u'chang']
[u'french', u'open', u'champ', u'skip', u'wimbledon']
[u'gallop', u'refus', u'play', u'escap', u'blame', u'game']
[u'garrett', u'forest', u'spotlight']
[u'gibernau', u'captur', u'pole']
[u'govt', u'criticis', u'famili']
[u'govt', u'roll', u'promis', u'famili', u'payment']
[u'greec', u'stun', u'host', u'portug']
[u'green', u'candid', u'stand', u'garrett']
[u'group', u'want', u'stronger', u'focus', u'energi', u'manag']
[u'hewitt', u'question', u'roddick', u'record']
[u'high', u'cancer', u'rat', u'worri', u'submarin', u'veteran']
[u'hundr', u'mourn', u'yolgnu', u'elder']
[u'ikea', u'shop', u'adelaid']
[u'imelda', u'stori', u'award', u'win', u'documentari']
[u'increas', u'insurg', u'add', u'afghanistan']
[u'india', u'question', u'alleg', u'nuclear', u'secret', u'salesman']
[u'insurg', u'saddam', u'baghdad', u'palac']
[u'iran', u'toughen', u'nuclear', u'stanc']
[u'iraqi', u'professor', u'assassin']
[u'irish', u'voter', u'approv', u'tighten', u'citizenship', u'law']
[u'jihadist', u'free', u'turk', u'egyptian', u'hostag']
[u'juvenil', u'escape', u'face', u'court']
[u'kanu', u'keown', u'leav', u'gunner']
[u'kenyan', u'urg', u'disast', u'declar']
[u'kill', u'wont', u'derail', u'iraq', u'handov', u'offici']
[u'kimmorley', u'origin']
[u'larsson', u'hop', u'lift', u'swede', u'victori']
[u'liber', u'polici', u'wont', u'clean', u'graffiti', u'stanhop']
[u'long', u'weekend', u'polic', u'blitz', u'hail', u'success']
[u'long', u'weekend', u'road', u'toll', u'rise']
[u'long', u'weekend', u'sunday', u'danger', u'road']
[u'beat', u'hors', u'race']
[u'mandela', u'shin', u'torch', u'relay']
[u'kill', u'canberra', u'brawl']
[u'metro', u'rail', u'track', u'time']
[u'militari', u'chief', u'approv', u'ghraib', u'tactic', u'report']
[u'minist', u'attack', u'judiciari', u'mass', u'escap']
[u'minist', u'encourag', u'healthi', u'eat', u'communiti']
[u'miss', u'dead', u'river']
[u'mormon', u'pavement', u'deliv', u'cambodian']
[u'mount', u'erupt', u'alert', u'downgrad']
[u'mysteri', u'odour', u'stump', u'polic', u'author']
[u'nation', u'abus', u'inquiri', u'need', u'church', u'tell']
[u'nation', u'holiday', u'road', u'toll', u'reach']
[u'navratilova', u'celebr', u'singl']
[u'navi', u'storm', u'tanker', u'hijack']
[u'neurologist', u'drop', u'public', u'sector']
[u'hospit', u'fund', u'unspent', u'opposit']
[u'technolog', u'improv', u'secur', u'perth']
[u'nightclub', u'evacu', u'toxic', u'scare']
[u'anti', u'corrupt', u'bodi', u'remain', u'separ']
[u'polic', u'warn', u'motorist', u'vigil']
[u'opal', u'sight', u'gold']
[u'plug', u'pull', u'vietnam', u'peac', u'concert']
[u'polic', u'arrest', u'high', u'speed', u'chase']
[u'polic', u'continu', u'search', u'miss', u'woman', u'daughter']
[u'polic', u'investig', u'indec', u'assault', u'perth']
[u'polic', u'kill', u'intercept', u'iraq', u'bomber']
[u'polic', u'drug', u'bust']
[u'polic', u'treat', u'mornington', u'disappear', u'murder']
[u'polici', u'maker', u'attend', u'educ', u'review', u'meet']
[u'poll', u'back', u'labor', u'star', u'recruit']
[u'power', u'destroy', u'swan']
[u'prison', u'die', u'suspect', u'drug', u'overdos']
[u'puma', u'edg', u'past', u'wale']
[u'premier', u'despit', u'union', u'protest']
[u'ralf', u'pip', u'button', u'canada', u'pole']
[u'rasmussen', u'win', u'dauphin', u'stage', u'long', u'solo', u'push']
[u'rescu', u'helicopt', u'make', u'emerg', u'land']
[u'ricochet', u'bullet', u'hit', u'target', u'shooter']
[u'riyadh', u'attack', u'reveng', u'ghraib']
[u'robert', u'storm', u'york', u'lead']
[u'roddick', u'roll', u'hewitt']
[u'countri', u'music', u'award', u'move']
[u'sadr', u'deal', u'expect', u'week']
[u'sadr', u'plan', u'polit', u'parti']
[u'polic', u'deni', u'plan', u'hide', u'speed', u'camera', u'bin']
[u'saudi', u'bind', u'british', u'airway', u'crew', u'sleep', u'kuwait']
[u'woman', u'bash', u'mobil', u'phone']
[u'search', u'resum', u'miss', u'toddler']
[u'second', u'senior', u'iraqi', u'offici', u'assassin']
[u'settler', u'thwart', u'pullout', u'plan']
[u'singl', u'domain', u'moreton', u'save']
[u'kill', u'accid']
[u'snow', u'season', u'sluggish', u'thredbo']
[u'sorenstam', u'target', u'defend', u'major', u'titl']
[u'spanish', u'super', u'valeron', u'sink', u'russia']
[u'sudan', u'rebel', u'leader', u'vow', u'rebuild', u'devast']
[u'supermarket', u'protest', u'injur', u'tree', u'fall']
[u'swift', u'sink', u'phoenix']
[u'switzerland', u'croatia', u'face', u'game']
[u'syring', u'alleg', u'dead', u'prison', u'cell']
[u'teenag']
[u'teen', u'battl', u'edgbaston', u'final']
[u'thai', u'gunmen', u'kill', u'policeman']
[u'thorp', u'target', u'california']
[u'thousand', u'welcom', u'free', u'kurdish', u'activist']
[u'extradit', u'bank', u'robberi']
[u'tiger', u'thrash', u'hapless', u'warrior']
[u'trade', u'agreement', u'final', u'vail']
[u'tragic', u'search', u'miss', u'toddler']
[u'tunnicliff', u'clear', u'scotland']
[u'ullrich', u'claim', u'switzerland', u'stage']
[u'union', u'remind', u'worker', u'height', u'restrict']
[u'union', u'establish', u'age', u'care', u'hotlin']
[u'keep', u'option', u'open', u'rat']
[u'free', u'journalist', u'hold', u'iraq']
[u'govt', u'fund', u'domest', u'violenc', u'court']
[u'vote', u'start', u'final', u'poll']
[u'govt', u'crack', u'drink', u'driver']
[u'wallabi', u'overpow', u'plucki', u'scotland']
[u'warn', u'half', u'chanc', u'play', u'lankan']
[u'water', u'fight', u'continu']
[u'webber', u'head', u'william', u'wish', u'list']
[u'protest', u'clash', u'polic']
[u'white', u'hous', u'tri', u'help', u'howard']
[u'wrong', u'direct', u'leav', u'injur', u'teen', u'strand']
[u'bangladeshi', u'fishermen', u'miss', u'storm']
[u'academ', u'award', u'queen', u'birthday', u'honour']
[u'action', u'take', u'lion', u'doctor']
[u'alcohol', u'plan', u'allow', u'better', u'polic', u'spenc']
[u'democrat', u'oppos', u'elector', u'chang']
[u'analyst', u'predict', u'assur', u'greenspan', u'comment']
[u'angler', u'benefit', u'monster', u'salmon', u'releas']
[u'ansto', u'pin', u'export', u'hop', u'radiograph', u'camera']
[u'antarct', u'film', u'land', u'croc', u'hunter', u'water']
[u'arm', u'clubber', u'face', u'increas', u'penalti']
[u'aussi', u'cyclist', u'shine', u'europ']
[u'bashir', u'lose', u'lawsuit', u'polic']
[u'beatti', u'urg', u'pressur', u'latham', u'ethanol', u'mandat']
[u'beckham', u'take', u'blame', u'england', u'loss']
[u'crowd', u'enjoy', u'countri', u'music', u'festiv']
[u'blair', u'safe', u'moor', u'len']
[u'blast', u'kill', u'baghdad', u'report']
[u'bomb', u'blast', u'kill', u'soldier', u'pakistani']
[u'botch', u'terror', u'report', u'put', u'pressur']
[u'bridal', u'parti', u'splash', u'fail', u'dampen', u'celebr']
[u'britain', u'allow', u'diplomat', u'staff', u'leav', u'saudi']
[u'british', u'entrepreneur', u'branson', u'set', u'cross']
[u'buderus', u'put', u'faith', u'finch']
[u'businessman', u'warn', u'deal', u'danger']
[u'ceas', u'promis', u'exchang', u'jenin']
[u'central', u'queensland', u'honour', u'list']
[u'chines', u'farmer', u'time']
[u'clarenc', u'valley', u'water', u'restrict', u'flow', u'forth']
[u'clijster', u'wrist', u'oper']
[u'communiti', u'effort', u'earn', u'queen', u'birthday', u'honour']
[u'communiti', u'join', u'upper', u'hunter', u'shire']
[u'corrupt', u'claim', u'peak', u'crime', u'fight', u'bodi']
[u'costa', u'urg', u'face', u'north', u'coast', u'rail', u'probe']
[u'cost', u'live', u'australian', u'citi', u'soar']
[u'council', u'welcom', u'deer', u'park', u'bypass', u'pledg']
[u'cowboy', u'prove', u'depth', u'newcastl']
[u'crop', u'duster', u'self', u'regul', u'safeti']
[u'democrat', u'seek', u'central', u'train', u'fund']
[u'demon', u'pull']
[u'driver', u'die', u'road', u'crash']
[u'driver', u'urg', u'long', u'weekend', u'statist']
[u'egyptian', u'islamist', u'go', u'hunger', u'strike']
[u'england', u'recov', u'heartbreak', u'lampard']
[u'timor', u'focus', u'human', u'right', u'violat']
[u'european', u'voter', u'lash', u'govern', u'parti']
[u'expert', u'warn', u'flood', u'increas']
[u'north', u'resid', u'join', u'queen', u'birthday', u'honour']
[u'feder', u'fund', u'farm', u'manag', u'plan']
[u'feder', u'fri', u'fish', u'wimbledon', u'warn']
[u'chief', u'honour', u'queen', u'birthday']
[u'senat', u'presid', u'name', u'queen', u'birthday']
[u'fourteen', u'arrest', u'follow', u'england', u'euro', u'defeat']
[u'garcia', u'win', u'titl', u'play']
[u'garrett', u'urg', u'oppos', u'southern', u'highland', u'airport']
[u'gippsland', u'elect', u'stoush', u'prompt', u'formal', u'complaint']
[u'goldfield', u'woman', u'get', u'queen', u'birthday', u'honour']
[u'govern', u'brace', u'ballot', u'rebuff']
[u'govt', u'reject', u'call', u'overhaul', u'hospit']
[u'govt', u'urg', u'promot', u'territori', u'case', u'train']
[u'green', u'want', u'kimberley', u'cotton', u'trial']
[u'gregan', u'jone', u'honour', u'recipi']
[u'group', u'promis', u'continu', u'fight', u'hospit']
[u'guantanamo', u'video', u'turn', u'offici']
[u'hambali', u'brother', u'friend', u'trial']
[u'harri', u'potter', u'lose', u'potenc', u'atop', u'offic']
[u'highland', u'trek', u'aim', u'steer', u'youth', u'crime']
[u'hollywood', u'award', u'pay', u'tribut', u'meryl', u'streep']
[u'honour', u'roll', u'recognis', u'tasmanian']
[u'hope', u'age', u'care', u'place']
[u'hopoat', u'face', u'lengthi', u'sidelin', u'stint']
[u'illeg', u'shark', u'fin', u'rise', u'minist']
[u'input', u'seek', u'tweed', u'coast', u'plan']
[u'inquest', u'open', u'boy', u'death']
[u'iraqi', u'presid', u'reject', u'ghraib', u'demolit', u'offer']
[u'irwin', u'defend', u'whale']
[u'japan', u'divid', u'royal', u'success']
[u'juri', u'mull', u'verdict', u'belgian', u'paedophil', u'trial']
[u'kakadu', u'tourist', u'walk', u'reopen']
[u'kelpi', u'muster', u'round', u'crowd']
[u'king', u'cross', u'polic', u'road', u'block', u'stop']
[u'labor', u'deni', u'withdraw', u'humili', u'australia']
[u'labor', u'fear', u'trade', u'deal', u'affect']
[u'labor', u'show', u'star', u'recruit']
[u'latest', u'zimbabw', u'newspap', u'closur', u'condemn']
[u'late', u'zidan', u'doubl', u'break', u'english', u'heart']
[u'lightn', u'hit', u'fli', u'doctor', u'plane']
[u'local', u'govt', u'demand', u'infrastructur', u'budget', u'boost']
[u'local', u'featur', u'queen', u'birthday', u'honour']
[u'tunnel', u'emit', u'carbon', u'monoxid', u'oper', u'admit']
[u'mackenroth', u'predict', u'sustain', u'econom', u'growth']
[u'maleni', u'protest', u'rule', u'futur', u'tree']
[u'charg', u'towradgi', u'assault']
[u'charg', u'babysitt', u'assault']
[u'charg', u'manslaught', u'remain', u'custodi']
[u'custodi', u'croydon', u'sieg']
[u'court', u'cabbi', u'assault']
[u'mayor', u'unhappi', u'school', u'cross', u'snub']
[u'west', u'resid', u'queen', u'birthday', u'honour']
[u'minist', u'parent', u'criticis', u'call', u'compulsori']
[u'mundulla', u'farmer', u'recognis', u'innov']
[u'nation', u'trust', u'reform', u'clear', u'confus']
[u'navratilova', u'rethink', u'wimbledon', u'wildcard']
[u'nazi', u'graffiti', u'spray', u'muslim', u'grave']
[u'nepal', u'rebel', u'kill', u'policemen']
[u'council', u'wiluna']
[u'guid', u'come', u'rescu', u'parent', u'host']
[u'home', u'plan', u'chinchilla', u'ambo']
[u'polic', u'unit', u'probe', u'reopen', u'murder', u'case']
[u'unit', u'investig', u'unsolv', u'death']
[u'nightclub', u'fume', u'mysteri', u'odour', u'prank']
[u'queen', u'birthday', u'honour', u'list']
[u'dun', u'say', u'simpson', u'conqueror']
[u'armi', u'come', u'mortar', u'attack', u'iraq']
[u'citizenship', u'harder']
[u'olymp', u'torch', u'parad']
[u'opal', u'fail', u'shine', u'final']
[u'opposit', u'call', u'tree', u'health', u'check']
[u'pakistan', u'arrest', u'qaeda', u'suspect']
[u'patient', u'divers', u'highlight', u'meltdown', u'lib']
[u'pirat', u'kidnap', u'malaysian', u'fishermen', u'report']
[u'piston', u'away', u'titl']
[u'plan', u'heritag', u'list']
[u'polic', u'confirm', u'dead', u'melbourn', u'stab']
[u'polic', u'continu', u'search', u'miss', u'escap']
[u'polic', u'expect', u'charg', u'trucki', u'train', u'crash']
[u'polic', u'hold', u'fear', u'miss']
[u'polic', u'stop', u'car', u'daniel', u'morecomb', u'probe']
[u'polic', u'unhappi', u'think', u'drive', u'start']
[u'polic', u'pedestrian', u'victim']
[u'port', u'secur', u'boost', u'restrict', u'access']
[u'powel', u'prais', u'saudi', u'anti', u'terror', u'effort']
[u'powel', u'warn', u'danger', u'situat', u'saudi', u'arabia']
[u'public', u'urg', u'help', u'fight', u'drug', u'fauna', u'smuggl']
[u'public', u'warn', u'mossi', u'bear', u'virus', u'threat']
[u'quad', u'bike', u'accid', u'claim', u'boy', u'life']
[u'queen', u'birthday', u'honour', u'council', u'staffer']
[u'queen', u'birthday', u'honour', u'merimbula']
[u'queen', u'birthday', u'honour', u'announc']
[u'queen', u'birthday', u'honour', u'north', u'coast']
[u'queen', u'birthday', u'honour', u'south', u'coast', u'resid']
[u'queensland', u'award', u'honour', u'queen']
[u'queensland', u'win', u'campdraft', u'championship']
[u'rabbi', u'firefight', u'queen', u'birthday', u'honour']
[u'racial', u'tension', u'spark', u'congo', u'threat']
[u'riverland', u'malle', u'resid', u'queen', u'birthday']
[u'roddick', u'retain', u'queen', u'club', u'titl']
[u'rossi', u'deni', u'gibernau', u'home', u'victori']
[u'rspca', u'firework', u'law', u'dont']
[u'rugbi', u'leagu', u'stalwart', u'get', u'queen', u'birthday', u'honour']
[u'ruud', u'exploit', u'german', u'woe']
[u'defend', u'wheeli', u'speed', u'camera', u'plan']
[u'sadr', u'citi', u'clash', u'kill']
[u'schumach', u'celebr', u'magnific', u'seven']
[u'level', u'rise', u'make', u'hong', u'kong', u'flood', u'prone']
[u'search', u'break', u'hill', u'asset', u'manag']
[u'effort', u'bring', u'queen', u'birthday', u'honour']
[u'sharapova', u'win', u'battl', u'teen']
[u'skill', u'packag', u'improv', u'industri', u'access']
[u'snail', u'fever', u'outbreak', u'hit', u'china']
[u'snake', u'hold', u'sting', u'indian', u'mountain']
[u'sorenstam', u'eas', u'seventh', u'major', u'victori']
[u'stand', u'continu', u'night', u'violenc']
[u'stand', u'continu', u'melbourn', u'servic', u'station']
[u'stretton', u'receiv', u'queen', u'birthday', u'honour']
[u'studi', u'put', u'focus', u'drought', u'gender', u'issu']
[u'support', u'air', u'health', u'servic', u'merger']
[u'suspect', u'drug', u'smuggler', u'hold', u'turkey']
[u'casino', u'worker', u'stage', u'stop', u'work', u'meet']
[u'tasmania', u'move', u'reassur', u'race', u'industri']
[u'swiss', u'hold', u'croatia', u'goalless', u'draw']
[u'territorian', u'recipi', u'queen', u'birthday']
[u'thai', u'offici', u'worker', u'kill', u'troubl', u'south']
[u'thoma', u'happi', u'olymp', u'prepar']
[u'thorp', u'lead', u'england', u'clean', u'sweep']
[u'tonga', u'appoint', u'liquid', u'airlin']
[u'trial', u'test', u'crohn', u'diseas', u'treatment']
[u'tribun', u'back', u'privat', u'land', u'claim', u'settlement']
[u'tunnicliff', u'triumph', u'scotland', u'ohern']
[u'custodi', u'high', u'speed', u'chase']
[u'launch', u'gulf', u'syndrom', u'inquiri']
[u'umaga', u'black', u'miss', u'train']
[u'nuke', u'watchdog', u'unsur', u'iran', u'come', u'clean']
[u'back', u'iraqi', u'employe', u'shoot']
[u'free', u'score', u'iraqi', u'ghraib', u'jail']
[u'forc', u'captur', u'milit', u'afghanistan']
[u'militari', u'report', u'iraqi', u'abus', u'novemb']
[u'victorian', u'honour', u'queen', u'birthday', u'list']
[u'volunt', u'shortag', u'prompt', u'busi', u'incent']
[u'cancel', u'secur', u'deal', u'prison', u'breakout']
[u'wallabi', u'room', u'improv']
[u'opposit', u'want', u'justic', u'minist', u'stand']
[u'polic', u'fireman', u'featur', u'queen', u'birthday']
[u'wind', u'rain', u'warn', u'south', u'east']
[u'wine', u'industri', u'focus', u'green', u'manag']
[u'woman', u'arrest', u'babi', u'bodi', u'freezer']
[u'woman', u'plead', u'guilti', u'year', u'jail', u'absenc']
[u'wool', u'grower', u'input', u'seek', u'market', u'plan']
[u'zidan', u'doubl', u'break', u'english', u'heart']
[u'abbott', u'drop', u'medic', u'record', u'plan']
[u'accus', u'monash', u'murder', u'think', u'fellow', u'student']
[u'consid', u'futur', u'cracker', u'night']
[u'releas', u'children', u'plan']
[u'million', u'peopl', u'sabotag']
[u'worker', u'attack']
[u'alcoa', u'appear', u'court', u'pollut', u'charg']
[u'anglican', u'church', u'committe', u'member', u'replac']
[u'anzac', u'club', u'consid']
[u'applic', u'ditch', u'plan', u'underworld', u'tour']
[u'asbesto', u'compo', u'director', u'unabl', u'insur']
[u'atsic', u'meet', u'pointer', u'end', u'violenc']
[u'audienc', u'flock', u'cabaret', u'festiv']
[u'aussi', u'vest', u'beat', u'heat', u'athen']
[u'australian', u'choos', u'educ', u'children']
[u'australia', u'thailand', u'sign', u'free', u'trade', u'deal']
[u'author', u'claim', u'extrem', u'makeov', u'idea', u'steal']
[u'babi', u'suffer', u'smoke', u'inhal', u'cafe', u'mishap']
[u'barrist', u'take', u'helm', u'galleri']
[u'biki', u'boost', u'goondiwindi', u'economi']
[u'bjorkman', u'fish', u'withdraw', u'nottingham']
[u'blackwel', u'boost', u'leed', u'play', u'stock']
[u'blair', u'defend', u'take', u'britain']
[u'blair', u'limit', u'iraq', u'nato', u'role', u'train']
[u'blue', u'play', u'rooster', u'style', u'game']
[u'boomer', u'squad', u'warm', u'tour']
[u'brack', u'sign', u'biotech', u'deal', u'israel']
[u'breaker', u'lose', u'player', u'sunnybank', u'clash']
[u'brisban', u'compani', u'provid', u'breakthrough', u'cattl']
[u'british', u'soldier', u'face', u'iraq', u'abus', u'charg']
[u'brothel', u'approv', u'spark', u'develop', u'review']
[u'busi', u'appeal', u'late', u'night', u'lockout']
[u'butt', u'doubt', u'england']
[u'fund', u'boost']
[u'water', u'merger', u'specul']
[u'casino', u'oper', u'move', u'prevent', u'industri', u'action']
[u'central', u'coffe', u'harvest', u'plung']
[u'chairman', u'front', u'panther', u'corrupt', u'probe']
[u'chamber', u'play', u'samag', u'snub', u'impact']
[u'chamber', u'see', u'benefit', u'reopen', u'mall']
[u'chamber', u'help', u'secur', u'camera']
[u'cholesterol', u'lower', u'drug', u'glaucoma', u'risk']
[u'determin', u'qaeda', u'suspect', u'tape']
[u'club', u'blame', u'drunken', u'accid', u'court', u'find']
[u'colac', u'bypass', u'melbourn', u'warrnambool', u'cycl', u'race']
[u'comment', u'seek', u'draft', u'council', u'budget']
[u'communiti', u'anger', u'search', u'miss']
[u'confer', u'hear', u'geologist', u'mine', u'engin']
[u'coria', u'hurri', u'coach']
[u'corrupt', u'claim', u'lead', u'compani', u'timor', u'withdraw']
[u'costa', u'north', u'rail', u'servic']
[u'cotton', u'grower', u'celebr', u'good', u'crop']
[u'council', u'await', u'minist', u'respons', u'dept', u'store']
[u'councillor', u'fight', u'hotel', u'alcohol', u'decis']
[u'council', u'consid', u'water', u'cost', u'concern']
[u'court', u'hear', u'involv', u'teen', u'pagan', u'ritual']
[u'danish', u'compani', u'rethink', u'wind', u'turbin', u'plant']
[u'dead', u'dive', u'see', u'omen', u'lanka']
[u'deep', u'drainag', u'plan', u'microscop']
[u'discount', u'store', u'loom', u'norseman']
[u'test', u'improv', u'steak', u'qualiti']
[u'urg', u'plea', u'chang', u'reason', u'wagga']
[u'drop', u'raul', u'spain', u'think', u'unthink']
[u'drug', u'compani', u'make', u'cocain', u'vaccin']
[u'dubbo', u'host', u'princip', u'gather']
[u'eagl', u'lose', u'embley', u'crow', u'confid', u'bounc']
[u'beat', u'scott']
[u'emerg', u'land', u'prompt', u'safeti', u'investig']
[u'isi', u'down', u'wool', u'properti']
[u'energi', u'spend', u'prompt', u'earli', u'poll', u'talk']
[u'eriksson', u'sweat', u'schole']
[u'european', u'leader', u'firm', u'face', u'vote', u'drub']
[u'everton', u'fan', u'rite', u'buri']
[u'famili', u'highlight', u'hospit', u'treatment', u'fear']
[u'favour', u'weather', u'see', u'record', u'wine', u'product']
[u'out', u'wild', u'weather']
[u'firefight', u'admit', u'start', u'sydney', u'bushfir']
[u'snow', u'transform', u'alp']
[u'fish', u'competit', u'lure', u'crowd']
[u'charg', u'warren', u'brawl']
[u'stand', u'trial', u'melbourn']
[u'diplomat', u'criticis', u'unsaf', u'polici']
[u'play', u'mind', u'game', u'experi']
[u'free', u'pneumococc', u'vaccin', u'offer']
[u'fund', u'bolster', u'school', u'communiti', u'link']
[u'teacher', u'strike', u'like']
[u'gile', u'near', u'quit', u'critic']
[u'gould', u'accus', u'maroon', u'refere', u'pressur']
[u'govt', u'releas', u'energi', u'strategi']
[u'greatest', u'hit', u'tour', u'idea', u'tasteless']
[u'green', u'slam', u'miner', u'welcom', u'energi', u'plan']
[u'grow', u'race', u'crowd', u'spark', u'track', u'narrow']
[u'hadley', u'win', u'rise', u'star', u'nomin']
[u'hamburg', u'beat', u'citi', u'belgian', u'intern']
[u'henman', u'confid', u'wimbledon', u'success']
[u'home', u'staff', u'work']
[u'hop', u'high', u'season', u'snow', u'boost']
[u'hopoat', u'apologis', u'touch', u'judg']
[u'hopoat', u'match']
[u'scapegoat', u'ghraib', u'general']
[u'indigen', u'group', u'fear', u'wind', u'farm']
[u'insur', u'investig']
[u'iraq', u'polit', u'posit', u'howard']
[u'iraqi', u'milit', u'releas', u'video', u'lebanes', u'hostag']
[u'iraq', u'plan', u'crackdown', u'insurg']
[u'iraq', u'readi', u'hold', u'saddam']
[u'isra', u'court', u'allow', u'sale', u'pork']
[u'japanes', u'polic', u'catch', u'colombian', u'thiev']
[u'job', u'water', u'restrict', u'bite']
[u'journalist', u'claim', u'timor', u'conspir']
[u'judg', u'reject', u'jackson', u'lower', u'bail']
[u'juri', u'mull', u'dutroux', u'verdict']
[u'karzai', u'ask', u'nato', u'bolster', u'forc']
[u'korea', u'propaganda', u'broadcast']
[u'labor', u'request', u'senat', u'inquiri', u'atsic', u'futur']
[u'larsson', u'lead', u'swedish', u'rout']
[u'mackenroth', u'hand', u'budget', u'surplus']
[u'applaud', u'estrang', u'wife', u'jail', u'sentenc']
[u'charg', u'crash', u'hous']
[u'free', u'tonn', u'glass']
[u'court', u'hour', u'sieg']
[u'child', u'porn', u'charg', u'remand']
[u'plead', u'guilti', u'caravan', u'park', u'murder']
[u'face', u'court', u'servic', u'station', u'sieg']
[u'court', u'riverland', u'shoot']
[u'market', u'jitteri', u'rate', u'specul']
[u'mayor', u'look', u'improv', u'river', u'flow']
[u'mayor', u'seek', u'better', u'govt', u'represent']
[u'mcgeadi', u'cap', u'ireland', u'debut', u'celtic', u'deal']
[u'want', u'flexibl', u'workplac', u'actu', u'say']
[u'miner', u'minist', u'work']
[u'minist', u'mislead', u'famili', u'benefit', u'payment', u'labor']
[u'minist', u'rememb', u'myall', u'creek', u'massacr']
[u'monto', u'lead', u'push', u'crop']
[u'moor', u'contest', u'fahrenheit', u'rat']
[u'arrest', u'crackdown']
[u'mortlock', u'give', u'clear']
[u'mostovoi', u'ax', u'russian', u'squad']
[u'motorbik', u'group', u'defend', u'safeti', u'record']
[u'seek', u'river', u'open', u'meet']
[u'pollut', u'monitor', u'continu']
[u'muralitharan', u'announc', u'tour', u'withdraw']
[u'murali', u'skip', u'australia', u'tour']
[u'nativ', u'plant', u'provid', u'hope', u'ulcer', u'suffer']
[u'navi', u'ship', u'undergo', u'final', u'touch']
[u'govt', u'urg', u'address', u'ambul', u'concern']
[u'teacher', u'meet', u'industri', u'action']
[u'look', u'improv', u'gravel', u'road']
[u'orang', u'host', u'green', u'rural', u'gather']
[u'owen', u'blame', u'england', u'heartbreak']
[u'palestinian', u'explod', u'gaza']
[u'panther', u'boss', u'face', u'corrupt', u'inquiri']
[u'stoush', u'loom', u'casino', u'oper']
[u'pedestrian', u'die', u'cross', u'goldfield']
[u'pentagon', u'unawar', u'saddam', u'handov', u'plan']
[u'perth', u'escap', u'appear', u'court']
[u'peveril', u'cop', u'heavi', u'fine', u'push', u'doctor']
[u'piano', u'teacher', u'stand', u'trial', u'charg']
[u'pire', u'predict', u'england', u'final']
[u'plan', u'afoot', u'boost', u'communiti', u'bus']
[u'highway', u'comment', u'stun', u'mayor']
[u'polic', u'tougher', u'drink', u'drive', u'law']
[u'polic', u'charg', u'pair', u'golf', u'cours', u'damag']
[u'polic', u'defend', u'light', u'camera']
[u'polic', u'happi', u'long', u'weekend', u'traffic', u'blitz']
[u'polic', u'investig', u'morwel', u'woman', u'death']
[u'polic', u'lament', u'speed', u'driver']
[u'polic', u'probe', u'seymour', u'hous', u'blaze']
[u'portug', u'deni', u'animos', u'deco']
[u'prais', u'aplenti', u'gunnedah']
[u'presid', u'want', u'independ', u'french', u'polynesia']
[u'prison', u'staff', u'complaint', u'concern', u'union']
[u'product', u'slow', u'hous', u'market', u'cool']
[u'open', u'steal', u'wag', u'negoti']
[u'quak', u'jolt', u'turkey']
[u'realiti', u'inx', u'singer']
[u'retir', u'support', u'hurley', u'replac']
[u'roff', u'say', u'line', u'toe']
[u'roff', u'say', u'back', u'toe']
[u'soldier', u'appear', u'perth', u'court']
[u'saturn', u'moon', u'phoeb', u'reveal', u'batter', u'past']
[u'schoolgirl', u'lose', u'muslim', u'gown', u'case']
[u'screen', u'sound', u'archiv', u'chief', u'move', u'reassur']
[u'protect', u'cost', u'fish', u'subsidi']
[u'seatbelt', u'offenc', u'surpris', u'polic']
[u'stagger', u'respons', u'critic']
[u'sharon', u'bomb', u'plot', u'reveal']
[u'shrek', u'take', u'toon', u'titl']
[u'special', u'court', u'like', u'boost', u'domest', u'violenc']
[u'speed', u'drink', u'drive', u'worri', u'polic']
[u'strawberri', u'grower', u'discuss', u'packag', u'chang']
[u'strong', u'visitor', u'number', u'long', u'weekend']
[u'studi', u'find', u'length', u'heart', u'diseas', u'link']
[u'superbrat', u'slam', u'bore', u'tenni', u'star']
[u'support', u'crop', u'duster', u'plan']
[u'survey', u'hint', u'strong', u'employ', u'growth']
[u'swiss', u'england', u'voodoo', u'campaign']
[u'cut', u'senat', u'approv']
[u'taxpay', u'fork', u'bakhtiyari', u'detent']
[u'teacher', u'feder', u'meet', u'hear', u'local', u'concern']
[u'teen', u'jail', u'ebay', u'scam']
[u'thompson', u'wont', u'portfolio', u'garrett']
[u'asylum', u'seeker', u'nauru', u'hunger', u'strike']
[u'surviv', u'lightn', u'strike']
[u'tonga', u'send', u'troop', u'help', u'iraq']
[u'tour', u'oper', u'look', u'budget', u'fund']
[u'toyn', u'face', u'censur', u'motion', u'alic', u'hospit']
[u'train', u'servic', u'normal', u'crash']
[u'treasur', u'promis', u'best', u'budget']
[u'union', u'group', u'highlight', u'child', u'farm', u'accid']
[u'union', u'redund', u'fight', u'worker']
[u'armi', u'unzip', u'combat', u'uniform']
[u'rat', u'specul', u'send']
[u'hand', u'saddam', u'fortnight']
[u'verkerk', u'delight', u'mark', u'grass']
[u'oppn', u'tour', u'plan', u'wast', u'site']
[u'expect', u'announc']
[u'pipelin', u'focus', u'featur', u'film']
[u'prawn', u'market']
[u'warmer', u'weather', u'attract', u'tourist']
[u'water', u'plan', u'anger']
[u'inventor', u'berner', u'win', u'rich', u'tech', u'prize']
[u'whale', u'group', u'warn', u'watch', u'danger']
[u'whale', u'strand', u'harbour']
[u'william', u'apolog', u'ralf']
[u'wind', u'farm', u'start', u'soon']
[u'woman', u'die', u'highway', u'crash']
[u'woman', u'fin', u'prison', u'escap']
[u'woman', u'asbesto', u'relat', u'diseas']
[u'woodward', u'make', u'sweep', u'chang']
[u'youth', u'welfar', u'unfair', u'acoss']
[u'zimbabw', u'criticis', u'newspap', u'closur']
[u'zurich', u'probe', u'wont', u'impact', u'polici', u'holder']
[u'kill', u'injur', u'train', u'derail', u'western']
[u'aceh', u'rebel', u'fight', u'despit', u'leader', u'arrest']
[u'increas', u'offer', u'nurs']
[u'minist', u'reject', u'morn', u'pill']
[u'blast', u'year', u'retent', u'rat', u'boy']
[u'accus', u'ignor', u'countri', u'club']
[u'consid', u'cloth', u'chang', u'doctor']
[u'wont', u'chang', u'rule', u'shove']
[u'alcohol', u'polici', u'limit', u'licens', u'trade']
[u'welcom', u'wide', u'budget', u'boost']
[u'qaeda', u'threaten', u'execut', u'hostag']
[u'anderson', u'back', u'excis', u'chang']
[u'anti', u'depress', u'caus', u'suicid', u'thought']
[u'anti', u'terror', u'law', u'like', u'labor', u'support']
[u'apec', u'mine', u'confer', u'begin', u'chile']
[u'appeal', u'go', u'aborigin', u'blood', u'donor']
[u'australia', u'join', u'rank', u'nation']
[u'australian', u'win', u'british', u'literari', u'award']
[u'australia', u'urg', u'quit', u'bodi']
[u'australia', u'welcom', u'french', u'polynesia', u'presid']
[u'beatti', u'budget', u'face', u'interst', u'critic']
[u'beckham', u'take', u'shirt', u'zidan']
[u'blue', u'maroon', u'rack']
[u'bowman', u'hop', u'maroon', u'origin', u'turnaround']
[u'british', u'airport', u'experi', u'iri', u'scanner']
[u'british', u'teen', u'offer', u'virgin', u'ebay']
[u'budget', u'disappoint', u'tourism', u'oper']
[u'budget', u'includ', u'rocki', u'riverbank', u'work']
[u'budget', u'includ', u'sunshin', u'coast', u'health', u'boost']
[u'budget', u'offer', u'child', u'safeti', u'worker', u'boost']
[u'budget', u'see', u'help', u'famili']
[u'burn', u'smoke', u'choke', u'rockhampton']
[u'busi', u'face', u'rate', u'rise']
[u'busi', u'leader', u'quit', u'board', u'govern']
[u'plan', u'reviv']
[u'report', u'workplac', u'corrupt']
[u'campbel', u'stand', u'kalgoorli', u'independ']
[u'hewitt', u'derail', u'express']
[u'stand', u'truck', u'safeti']
[u'chamber', u'execut', u'offic', u'resign']
[u'china', u'plung', u'lake', u'pilgrim', u'dead']
[u'china', u'execut', u'beij', u'taxi', u'driver', u'serial', u'killer']
[u'church', u'aim', u'heal', u'wound', u'abus', u'victim']
[u'church', u'urg', u'deal', u'child', u'abus', u'issu']
[u'restrict', u'senat', u'report']
[u'citi', u'council', u'librari', u'east', u'timor']
[u'clash', u'mark', u'work', u'west', u'bank', u'barrier']
[u'colombian', u'rebel', u'massacr', u'peasant', u'claim']
[u'commit', u'show', u'lake', u'eyr', u'basin', u'sustain']
[u'communiti', u'involv', u'sentenc', u'recommend']
[u'compani', u'stand', u'hotel', u'demolit', u'work']
[u'consum', u'tenanc', u'advic', u'offic', u'remain']
[u'council', u'happi', u'canopi', u'walk', u'fund']
[u'council', u'debat', u'moruya', u'airport', u'chang']
[u'council', u'tri', u'eas', u'rate', u'swing']
[u'coupl', u'face', u'deport', u'drug', u'convict']
[u'court', u'mull', u'bilal', u'khazal', u'bail', u'appeal']
[u'cricket', u'boss', u'hop', u'murali', u'chang', u'heart']
[u'croat', u'rest', u'player', u'gambl', u'england']
[u'crow', u'smart', u'leav', u'nest', u'good']
[u'detail', u'seek', u'region', u'health', u'servic', u'plan']
[u'diabet', u'group', u'call', u'fund']
[u'dump', u'oper', u'stand', u'green', u'requir']
[u'economi', u'head', u'year', u'trough']
[u'edward', u'viii', u'letter', u'expect', u'fetch', u'king', u'ransom']
[u'emerg', u'drink', u'water', u'plan', u'begin']
[u'energi', u'firm', u'cast', u'doubt', u'feder', u'packag']
[u'england', u'sieg', u'swiss', u'warn', u'beckham']
[u'england', u'wont', u'swiss', u'light', u'jam']
[u'expert', u'concern', u'children', u'mental', u'health']
[u'expert', u'warn', u'whoop', u'cough', u'vigil']
[u'famili', u'privat', u'file', u'leav', u'tram']
[u'fan', u'rampag', u'algarv', u'arrest']
[u'govt', u'laugh', u'rann', u'woomera', u'comment']
[u'govt', u'urg', u'victoria', u'anti', u'corrupt']
[u'mobil', u'phone', u'virus', u'discov']
[u'minist', u'corrupt']
[u'franc', u'jugular', u'cagey', u'croatia']
[u'fruit', u'grower', u'stage', u'fieri', u'protest']
[u'general', u'view', u'shine', u'favour', u'light', u'okan']
[u'geologist', u'start', u'diamond', u'hunt']
[u'gould', u'step', u'origin', u'mind', u'game']
[u'govern', u'argu', u'public', u'hous', u'deal']
[u'governor', u'schwarzenegg', u'return', u'screen']
[u'govt', u'defend', u'record', u'fight', u'slave', u'trade']
[u'govt', u'nation', u'anti', u'corrupt', u'bodi']
[u'group', u'call', u'isol', u'children', u'allow']
[u'hagu', u'court', u'say', u'milosev', u'answer', u'genocid']
[u'hanson', u'focus', u'breaststrok', u'athen']
[u'hantuchova', u'win', u'eastbourn', u'molik']
[u'high', u'hop', u'cloud', u'seed', u'snow']
[u'high', u'worth']
[u'hill', u'regret', u'incorrect', u'prison', u'abus', u'inform']
[u'hoon', u'complaint', u'prompt', u'speed', u'camera', u'request']
[u'hop', u'wildflow', u'season', u'boost', u'tourism']
[u'hospit', u'shortag', u'reach']
[u'hous', u'industri', u'concern', u'cost', u'safeti']
[u'illeg', u'fishermen', u'keep', u'jail', u'boat']
[u'independ', u'inquiri', u'investig', u'prison', u'break']
[u'indigen', u'dept', u'expand', u'kimberley']
[u'initi', u'promot', u'coal', u'benefit']
[u'iraqi', u'cleric', u'order', u'fighter', u'leav', u'najaf']
[u'iraqi', u'secur', u'chief', u'kill', u'export', u'halt']
[u'irishmen', u'releas', u'colombian', u'jail']
[u'isi', u'down', u'ewe', u'sell', u'dollar']
[u'isra', u'troop', u'kill', u'palestinian', u'milit', u'west']
[u'itali', u'trapattoni', u'familiar']
[u'joint', u'militari', u'train', u'facil', u'caus']
[u'joness', u'lawyer', u'ask', u'usada', u'testimoni']
[u'justic', u'dept', u'happi', u'court', u'secur', u'servic']
[u'kakadu', u'swim', u'ludicr', u'say']
[u'lara', u'lead', u'windi', u'england']
[u'latvian', u'fan', u'hail', u'beat', u'hero']
[u'lawyer', u'say', u'hardi', u'wasnt', u'plan', u'remov', u'capit']
[u'lebanes', u'hostag', u'iraq', u'free', u'state']
[u'lee', u'vote', u'energi', u'plan']
[u'licenc', u'restor', u'faulti', u'speed', u'camera']
[u'lion', u'fin', u'peveril', u'incid']
[u'guilti', u'year', u'murder']
[u'jail', u'death', u'unborn', u'babi']
[u'man', u'resist', u'public', u'hang', u'hopoat']
[u'plead', u'guilti', u'horrif', u'rape', u'murder']
[u'plead', u'guilti', u'fraud']
[u'plead', u'guilti', u'attempt', u'murder', u'charg']
[u'court', u'bank', u'theft']
[u'maroon', u'come', u'thriller']
[u'mater', u'bundaberg', u'go', u'digit']
[u'mccaw', u'remain', u'doubt', u'england', u'test']
[u'mcewen', u'win', u'swiss', u'tour', u'fourth', u'stage']
[u'medic', u'famili', u'seek', u'perman', u'resid']
[u'miner', u'council', u'back', u'energi', u'packag']
[u'minist', u'offer', u'gold', u'assur']
[u'minist', u'examin', u'diabet', u'concess', u'card']
[u'mitsubishi', u'await', u'rescu', u'packag', u'news']
[u'mix', u'reaction', u'budget', u'benefit']
[u'action', u'need', u'solomon', u'corrupt', u'polic']
[u'dengu', u'fever', u'case', u'townsvill']
[u'repair', u'rfds', u'lightn', u'damag', u'plane']
[u'teacher', u'industri', u'unrest', u'loom']
[u'mortlock', u'waugh', u'wallabi']
[u'mother', u'admit', u'shake', u'babi', u'rage', u'court']
[u'cast', u'doubt', u'energi', u'paper']
[u'question', u'school', u'support', u'staff', u'rise']
[u'welcom', u'road', u'fund']
[u'murder', u'teen', u'parent', u'welcom', u'move', u'open']
[u'muslim', u'communiti', u'isol', u'vulner', u'report']
[u'nauru', u'hunger', u'striker', u'urg', u'protest']
[u'iraqi', u'forc', u'buy', u'australian', u'plan']
[u'kill', u'west', u'iraq', u'blast', u'medic']
[u'budget', u'fund', u'cruis', u'ship', u'termin']
[u'sight', u'whoop', u'cough', u'outbreak']
[u'eye', u'wild', u'food', u'export', u'industri']
[u'oppn', u'seek', u'polic', u'minist', u'resign', u'speed']
[u'opposit', u'call', u'junk', u'food']
[u'origin', u'kick']
[u'pacif', u'island', u'coach', u'focus', u'disciplin']
[u'pair', u'drug', u'charg', u'refus', u'bail']
[u'paper', u'tip', u'boost', u'local', u'economi']
[u'patient', u'urg', u'hospit', u'servic']
[u'perth', u'escap', u'suspect', u'robberi']
[u'petrol', u'ethanol', u'see', u'right', u'brazil']
[u'piston', u'crush', u'laker', u'claim', u'championship']
[u'hit', u'energi', u'plan', u'oppon']
[u'polic', u'chief', u'discuss', u'superintend', u'futur']
[u'polic', u'consid', u'industri', u'action', u'number']
[u'polic', u'investig', u'attempt', u'shoot']
[u'polic', u'probe', u'multipl', u'store', u'theft']
[u'polic', u'seiz', u'item', u'trigo', u'jorf', u'death']
[u'polic', u'stress', u'speed', u'messag']
[u'probe', u'begin', u'shop', u'centr']
[u'properti', u'fire', u'stretch', u'volunt']
[u'public', u'urg', u'help', u'miss', u'teen']
[u'pub', u'club', u'audit', u'crime', u'program']
[u'quick', u'blow', u'fast', u'cop']
[u'rann', u'warn', u'commonwealth', u'stay', u'wast', u'dump', u'site']
[u'region', u'work']
[u'rehhagel', u'accept', u'greek', u'plaudit']
[u'relax', u'prepar', u'make', u'happi', u'swedish', u'squad']
[u'request', u'ombudsman', u'phone', u'tap', u'power', u'deni']
[u'rescuer', u'work', u'save', u'strand', u'whale']
[u'research', u'benefit', u'fellowship']
[u'review', u'look', u'child', u'lead', u'exposur', u'program']
[u'rusedski', u'brink', u'nottingham']
[u'russia', u'richest', u'go', u'trial']
[u'russia', u'richest', u'trial']
[u'oppn', u'highlight', u'indigen', u'wind', u'farm', u'worri']
[u'saudi', u'arabia', u'bump', u'output', u'capac']
[u'saudi', u'refus', u'qaeda', u'kidnap', u'demand']
[u'schalken', u'make', u'earli', u'exit', u'amsterdam']
[u'school', u'face', u'industri', u'unrest']
[u'scot', u'appeal', u'grime', u'trampl']
[u'scuba', u'diver', u'death', u'investig']
[u'chang', u'bring', u'jobless', u'downsid']
[u'search', u'west', u'diamond']
[u'sept', u'theme', u'screen']
[u'shed', u'blaze', u'consid', u'suspici']
[u'smart', u'hang', u'boot']
[u'soft', u'soft', u'approach', u'tip', u'rat']
[u'solar', u'tower', u'develop', u'unhappi', u'energi', u'white']
[u'spanish', u'admit', u'raul', u'bench']
[u'spanish', u'commiss', u'probe', u'madrid', u'bomb']
[u'spanish', u'judg', u'charg', u'attack']
[u'state', u'urg', u'agre', u'murray', u'darl', u'rescu']
[u'support', u'famili', u'prison', u'lack', u'committe']
[u'swiss', u'face', u'england', u'backlash']
[u'swiss', u'readi', u'rise', u'challeng']
[u'sydney', u'tunnel', u'reach', u'mileston']
[u'takeov', u'aston', u'villa', u'fail']
[u'talk', u'focus', u'climat', u'chang', u'catchment', u'impact']
[u'telstra', u'lead', u'share', u'market', u'record', u'close']
[u'territori', u'announc', u'home', u'loan', u'help']
[u'thai', u'troop', u'leav', u'iraq', u'septemb']
[u'tougher', u'restrict', u'outlin', u'philippin']
[u'tourism', u'budget', u'fund', u'fail', u'impress']
[u'tour', u'reel', u'dope', u'cloud']
[u'train', u'injuri', u'rule', u'butt', u'england']
[u'union', u'hop', u'guid', u'bridg', u'cultur']
[u'univers', u'make', u'offer']
[u'deputi', u'defenc', u'secretari', u'arriv', u'iraq']
[u'vanuatu', u'offer', u'west', u'papuan', u'peac', u'talk']
[u'vesta', u'reconsid', u'wynyard', u'turbin', u'plant']
[u'view', u'buy', u'bronzew', u'gold']
[u'violenc', u'erupt', u'portug']
[u'whale', u'rescu', u'attempt', u'abandon']
[u'whale', u'rescu', u'begin', u'tasmania']
[u'whale', u'trap', u'cray', u'line']
[u'wild', u'hors', u'cull', u'nation', u'park']
[u'william', u'rule', u'lanka', u'test']
[u'wind', u'farm', u'ahead', u'despit', u'govt', u'plan']
[u'wine', u'grape', u'grower', u'form', u'price', u'polici', u'lobbi']
[u'wine', u'region', u'seek', u'diseas', u'free', u'declar']
[u'woman', u'face', u'drug', u'traffic', u'charg']
[u'workload', u'prompt', u'communiti', u'servic', u'staff', u'strike']
[u'young', u'wallabi', u'trounc', u'tonga']
[u'board', u'member', u'warn', u'fragment']
[u'aborigin', u'hit', u'state', u'atsic']
[u'access', u'smoke', u'criticis', u'report']
[u'teacher', u'like', u'accept', u'offer']
[u'administr', u'caravan', u'park']
[u'afghan', u'polic', u'arrest', u'child', u'kidnapp']
[u'accus', u'neglect', u'bush']
[u'agreement', u'enabl', u'aborigin', u'control', u'research']
[u'albani', u'court', u'clerk', u'defend', u'aim', u'servic']
[u'alleg', u'babi', u'killer', u'hear', u'postpon']
[u'ord', u'continu', u'break', u'record']
[u'ord', u'hit', u'record', u'high']
[u'anxious', u'wait', u'injur', u'black', u'mccaw']
[u'applic', u'seek', u'melbourn', u'radio', u'licenc']
[u'archbishop', u'write', u'letter', u'support', u'accus']
[u'argentin', u'collaps', u'kill']
[u'aust', u'indonesia', u'meet', u'counter', u'terror']
[u'bail', u'refus', u'accus', u'bank', u'robber']
[u'banana', u'import', u'restrict', u'delay', u'inevit', u'grower']
[u'beaut', u'bloke', u'planner', u'feast', u'prime', u'malle']
[u'belgium', u'dutroux', u'guilti', u'crime', u'case']
[u'benitez', u'unveil', u'liverpool', u'manag']
[u'bird', u'feather', u'flock', u'rocki']
[u'blair', u'blast', u'shame', u'hooligan']
[u'boati', u'herd', u'whale', u'harbour']
[u'boati', u'urg', u'marin', u'mainten', u'project']
[u'boati', u'warn', u'get', u'close', u'whale']
[u'bolkus', u'trade', u'ballot', u'bouzouki']
[u'britain', u'consid', u'human', u'clone', u'request']
[u'bushfir', u'inquest', u'find', u'delay']
[u'rent', u'repriev', u'drought', u'grazier']
[u'chief', u'magistr', u'legal', u'action', u'cost']
[u'generat', u'project', u'negoti', u'near', u'complet']
[u'concern', u'terror', u'sentenc', u'law']
[u'corrupt', u'watchdog', u'overse', u'public', u'servic']
[u'council', u'staff', u'decid', u'offer']
[u'court', u'hear', u'stepdaught', u'threat', u'millionair']
[u'trial', u'test', u'buri']
[u'custom', u'complaint', u'airlin', u'soar', u'nqca']
[u'deakin', u'move', u'curtail', u'drop', u'rate']
[u'death', u'toll', u'rise', u'baghdad', u'bomb']
[u'democrat', u'welcom', u'plan', u'super', u'chang']
[u'pedro', u'sign', u'blackburn']
[u'disciplinari', u'action', u'recommend', u'child']
[u'discoveri', u'marbl', u'gene', u'boost', u'cattl']
[u'discrimin', u'isol', u'muslim', u'australian']
[u'doubt', u'rais', u'contract']
[u'warn', u'high', u'grade', u'damag', u'fish', u'stock']
[u'eddi', u'doubl', u'magpi', u'fine']
[u'england', u'boost', u'schole', u'join', u'train']
[u'england', u'hand', u'year', u'portuges', u'jail', u'term']
[u'england', u'unhappi', u'frustrat', u'test', u'build', u'say']
[u'evolut', u'theori', u'breed', u'better', u'car']
[u'farmer', u'welcom', u'chang', u'calm', u'prosecut']
[u'feather', u'dead', u'peac', u'dive', u'lanka']
[u'feder', u'serena', u'wimbledon', u'seed']
[u'australian', u'cashew', u'crop', u'plant']
[u'fittler', u'unsur', u'origin']
[u'ford', u'recal', u'car', u'possibl', u'steer', u'problem']
[u'apex', u'member', u'charg', u'child', u'offenc']
[u'garrett', u'nomin', u'kingsford', u'smith']
[u'gidley', u'saddl', u'knight']
[u'glenelg', u'redevelop', u'stop', u'say', u'govt']
[u'global', u'warm', u'tip', u'produc', u'citi', u'night']
[u'gould', u'want', u'origin', u'sack']
[u'gould', u'want', u'refere', u'sack']
[u'govt', u'claim', u'success', u'reduc', u'wait', u'list']
[u'govt', u'dismiss', u'plan', u'food', u'fist']
[u'govt', u'help', u'electrolux', u'worker', u'face']
[u'govt', u'decis', u'restrict', u'contracept', u'condemn']
[u'govt', u'introduc', u'free', u'trade', u'legisl']
[u'govt', u'support', u'brown', u'coal', u'energi']
[u'govt', u'urg', u'better', u'protect', u'launceston', u'water']
[u'govt', u'urg', u'releas', u'area', u'health', u'servic']
[u'grang', u'fetch', u'record', u'price']
[u'greek', u'hold', u'spanish', u'draw']
[u'gungahlin', u'drive', u'vandal', u'report', u'investig']
[u'hawk', u'boss', u'step']
[u'hazard', u'highway', u'tree']
[u'hazzard', u'light', u'mile', u'franklin', u'judg', u'fire']
[u'healthi', u'outlook', u'push', u'dollar', u'higher']
[u'hepat', u'inquiri', u'deliv', u'find']
[u'hepat', u'inquiri', u'rule', u'compo', u'increas']
[u'develop', u'confid', u'project', u'concern', u'address']
[u'high', u'court', u'uphold', u'chief', u'magistr', u'appoint']
[u'highway', u'block', u'spontan', u'protest']
[u'hill', u'admit', u'know', u'amnesti', u'concern']
[u'hill', u'call', u'asia', u'pacif', u'breed', u'grind']
[u'hill', u'forgiv', u'depart', u'keep']
[u'histor', u'homestead', u'destroy']
[u'histor', u'strike', u'equal', u'right', u'rememb']
[u'hockeyroo', u'kiwi']
[u'hoogi', u'festiv', u'stall', u'follow', u'financi', u'loss']
[u'hop', u'wind', u'chang', u'shift', u'whale']
[u'hospit', u'equip', u'birth', u'complic']
[u'host', u'russia', u'euro', u'campaign']
[u'hungari', u'lose', u'soldier', u'violenc', u'iraq']
[u'hunter', u'bag', u'swiss', u'stage', u'ullrich', u'keep', u'lead']
[u'hydro', u'deter', u'retreat', u'energi', u'target']
[u'hype', u'project', u'target', u'juvenil', u'crime', u'rate']
[u'iemma', u'unveil', u'vamp', u'health', u'servic']
[u'illeg', u'worker', u'arrest', u'mildura']
[u'form', u'field', u'leav', u'open', u'wide', u'open']
[u'inject', u'put', u'stop', u'infidel', u'vole']
[u'inquest', u'continu', u'post', u'natal', u'death']
[u'inquiri', u'child', u'protect', u'requir', u'say']
[u'inquiri', u'investig', u'minist', u'oppn', u'claim']
[u'inter', u'island', u'endang', u'bandicoot']
[u'investor', u'seek', u'recoup', u'money', u'mortgag', u'scheme']
[u'iran', u'threaten', u'resum', u'uranium', u'enrich']
[u'iraq', u'rocket', u'attack', u'kill', u'soldier']
[u'isra', u'collabor', u'help', u'melbourn', u'hospit']
[u'itali', u'face', u'swede', u'talisman', u'totti']
[u'jackson', u'pay', u'million', u'accus', u'leak']
[u'japanes', u'seek', u'support', u'iraq', u'deploy']
[u'jone', u'demand', u'public', u'dope', u'inquiri']
[u'jone', u'expect', u'wallabi', u'lift']
[u'kcgm', u'buy', u'time']
[u'kiwi', u'slump']
[u'knee', u'injuri', u'leav', u'olymp', u'softbal', u'shatter']
[u'landhold', u'warn', u'strychnin', u'danger']
[u'landown', u'protest', u'dogmen', u'remov']
[u'leagu', u'return', u'break', u'hill']
[u'busi', u'help', u'space', u'drive', u'bush', u'tell']
[u'lion', u'pick', u'doctor', u'downfal']
[u'lobster', u'fisherman', u'push', u'financi']
[u'mall', u'inspect', u'tour', u'prove', u'worthwhil']
[u'accus', u'child', u'abus', u'grant', u'bail']
[u'charg', u'woman', u'attack']
[u'charg', u'bank', u'fraud']
[u'man', u'sentenc', u'reduc', u'aborigin']
[u'mauresmo', u'stroll', u'eastbourn', u'grass']
[u'meet', u'call', u'disput']
[u'middl', u'eastern', u'royal', u'prefer', u'aust']
[u'minist', u'accus', u'bungl', u'fast', u'rail', u'project']
[u'minist', u'defend', u'prison', u'escap', u'rate']
[u'miss', u'bushwalk']
[u'monash', u'shooter', u'guilti', u'mental', u'impair']
[u'lift', u'open', u'hotham', u'snowfal']
[u'kill', u'baghdad', u'armi', u'base', u'explos']
[u'defend', u'school', u'fund']
[u'murray', u'scot', u'grime', u'lose', u'trampl']
[u'nato', u'chief', u'leav', u'door', u'open', u'iraq', u'role']
[u'navratilova', u'confirm', u'wimbledon', u'return']
[u'nelson', u'criticis', u'tafe', u'increas']
[u'ambassador', u'japan', u'asia', u'specialist']
[u'ambul', u'station', u'gemfield']
[u'artist', u'modern']
[u'target', u'terrorist', u'associ']
[u'law', u'outlaw', u'biodiesel', u'home', u'brew']
[u'method', u'predict', u'speed', u'biolog', u'clock']
[u'abl', u'send', u'digit', u'fingerprint']
[u'test', u'check', u'champagn', u'bona', u'fide']
[u'govt', u'examin', u'damn', u'corrupt', u'report']
[u'rugbi', u'wont', u'rule', u'john']
[u'film', u'director', u'base', u'alic']
[u'olymp', u'coverag', u'gender', u'bias', u'spotlight']
[u'onlin', u'auction', u'help', u'stricken', u'policewoman']
[u'opal', u'win', u'start']
[u'opal', u'test', u'young', u'gun']
[u'analys', u'wood', u'seek', u'elus', u'major']
[u'patient', u'benefit', u'machin']
[u'peopl', u'traffick', u'target', u'fight']
[u'petit', u'protest', u'fund']
[u'pie', u'learn', u'sponsorship', u'fate', u'today']
[u'flag', u'defenc', u'dept', u'chang', u'wake', u'abus']
[u'minist', u'stop', u'chines', u'gain', u'citizenship']
[u'polic', u'commend', u'prevent', u'suicid']
[u'polic', u'head', u'program']
[u'polic', u'hold', u'gangland', u'investig']
[u'polic', u'hope', u'breakthrough', u'perth', u'kill']
[u'polic', u'investig', u'meteorit', u'report']
[u'polic', u'program', u'target', u'alcohol', u'relat', u'crime']
[u'polic', u'raid', u'net', u'dinosaur', u'fossil', u'worth', u'million']
[u'pressur', u'mount', u'govt', u'rehab', u'unit']
[u'prison', u'group', u'welcom', u'report', u'find']
[u'protest', u'prepar', u'bulldoz', u'return']
[u'protest', u'whale', u'chief', u'disrupt', u'captur']
[u'raaf', u'hercul', u'make', u'emerg', u'land']
[u'racetrack', u'propon', u'welcom', u'govt', u'decis']
[u'rain', u'respons', u'bumper', u'grape', u'crop']
[u'report', u'casualti', u'latest', u'baghdad', u'blast']
[u'resid', u'help', u'polic', u'burglari', u'rate']
[u'servic', u'region', u'rout']
[u'roch', u'appeal', u'jail', u'sentenc']
[u'rooster', u'sign', u'firman', u'shore', u'halv']
[u'rusedski', u'paradorn', u'nottingham']
[u'russia', u'boost', u'militari', u'spend']
[u'saint', u'collingwood', u'push', u'good', u'friday', u'game']
[u'polic', u'laser', u'target', u'tailgat']
[u'scientist', u'home', u'platypus', u'radar']
[u'search', u'fail', u'need', u'help']
[u'search', u'fail', u'meteorit']
[u'search', u'trap', u'whale', u'call']
[u'search', u'resum', u'miss', u'hiker']
[u'secur', u'camera', u'moot', u'main', u'street']
[u'senat', u'push', u'renew', u'energi', u'target', u'increas']
[u'sept', u'plot', u'split', u'qaeda']
[u'sept', u'report', u'destroy', u'argument', u'iraq']
[u'knee', u'injuri', u'leav', u'olymp', u'softbal']
[u'shinnecock', u'wind', u'blow', u'open', u'hope', u'away']
[u'slow', u'start', u'scallop', u'season']
[u'sponsor', u'put', u'pie', u'notic']
[u'steal', u'paint', u'garag']
[u'submiss', u'seek', u'bushfir', u'coroni', u'inquiri']
[u'sugar', u'cane', u'trial', u'provid', u'altern', u'incom']
[u'sugar', u'industri']
[u'super', u'wheat', u'beat', u'weed']
[u'teen', u'girl', u'arrest', u'suicid', u'bomb', u'plot']
[u'teleport', u'offer', u'supercomput', u'hope']
[u'thai', u'group', u'replac', u'liverpool']
[u'seed', u'fall', u'holland']
[u'tourist', u'vehicl', u'break', u'desert']
[u'charg', u'underworld', u'investig']
[u'dead', u'sydney', u'shoot']
[u'understaf', u'blame', u'bank', u'queue']
[u'union', u'back', u'princip', u'rise', u'current', u'work']
[u'union', u'secretari', u'tip', u'replac', u'senat', u'bolkus']
[u'union', u'tip', u'loss', u'uni']
[u'offer', u'mildura', u'campus']
[u'univers', u'freez', u'hec', u'fee']
[u'issu', u'indonesia', u'travel', u'warn']
[u'label', u'freez', u'chip', u'fresh', u'veggi']
[u'open', u'hole', u'hole']
[u'soldier', u'charg', u'fatal', u'iraq', u'shoot']
[u'victorian', u'want', u'corrupt', u'commiss', u'poll', u'find']
[u'opposit', u'keep', u'pressur', u'minist']
[u'weather', u'warn', u'driver']
[u'whale', u'swim', u'freeli', u'harbour']
[u'william', u'trial', u'face', u'delay']
[u'wineri', u'cautious', u'orang', u'plan']
[u'woman', u'kidnap', u'knifepoint']
[u'woman', u'question', u'cabramatta', u'death']
[u'woolmer', u'replac', u'miandad', u'pakistan', u'coach']
[u'world', u'meat', u'congress', u'stag', u'brisban']
[u'young', u'women', u'confid', u'financi', u'futur']
[u'alloc', u'industri', u'park', u'work']
[u'rate', u'rise', u'latrob', u'draft', u'budget']
[u'accid', u'spark', u'number', u'probe']
[u'afghan', u'kill', u'foreign', u'troop', u'hurt', u'attack']
[u'conclud', u'leak', u'investig']
[u'black', u'mccaw', u'doubt', u'england', u'test']
[u'ordinari', u'finish', u'close', u'high']
[u'branch', u'oppos', u'health', u'merger']
[u'anthrax', u'kill', u'eleph', u'infect']
[u'apec', u'meet', u'finish', u'indigen', u'declar']
[u'arm', u'bandit', u'target', u'wollongong', u'hotel']
[u'move', u'ensur', u'game', u'futur']
[u'atsic', u'fund', u'court', u'fight', u'unaccept', u'minist']
[u'atsic', u'meet', u'discuss', u'indigen', u'represent']
[u'australia', u'boost', u'sudan']
[u'australian', u'agricultur', u'invent', u'win']
[u'back', u'user', u'pay', u'water']
[u'weather', u'hamper', u'whale', u'rescu', u'effort']
[u'bangladeshi', u'farmer', u'prais', u'magic', u'trap']
[u'belgian', u'newspap', u'devot', u'space', u'rape', u'murder']
[u'berri', u'riverland', u'job']
[u'bone', u'teeth', u'metal', u'ancient', u'tomb']
[u'builder', u'group', u'criticis', u'darwin', u'train']
[u'better', u'women', u'sport', u'facil']
[u'men', u'health', u'scheme', u'fund']
[u'gambl', u'counsel', u'fund']
[u'consid', u'local', u'govt', u'revenu', u'rais', u'option']
[u'waiv', u'leas', u'payment']
[u'casino', u'staff', u'hobart', u'consid', u'strike']
[u'central', u'bushfir', u'threat', u'eas']
[u'central', u'hop', u'natur', u'connect']
[u'ceremoni', u'mark', u'bauxit', u'arriv', u'gladston']
[u'channel', u'warn', u'breach', u'foreign', u'control']
[u'child', u'abus', u'report', u'releas']
[u'childcar', u'centr', u'plan', u'cessnock']
[u'childless', u'coupl', u'rise', u'dramat', u'come']
[u'child', u'prostitut', u'claim', u'investig']
[u'church', u'tribun', u'tell', u'priest']
[u'coff', u'fluorid', u'plan', u'move', u'ahead']
[u'cole', u'chelsea', u'return']
[u'communiti', u'back', u'petrol', u'station']
[u'compani', u'chang', u'supermarket', u'land', u'deadlin']
[u'concern', u'represent', u'compo', u'claim']
[u'coria', u'appoint', u'coach', u'report']
[u'coria', u'grab', u'second', u'grass']
[u'council', u'allianc', u'promis', u'save']
[u'council', u'back', u'perman', u'water']
[u'council', u'put', u'bite', u'irrespons', u'owner']
[u'council', u'urg', u'lessen', u'public', u'hous', u'rat']
[u'court', u'uphold', u'claim', u'yuko']
[u'croatia', u'wari', u'rooney', u'threat']
[u'burk', u'spark', u'chainsaw', u'safeti']
[u'deadlin', u'near', u'hostag', u'saudi']
[u'death', u'tribal', u'leader', u'import', u'success', u'pakistani']
[u'deftero', u'surrend', u'certif']
[u'deja', u'go', u'come']
[u'dept', u'say', u'region', u'plan']
[u'deputi', u'mayor', u'lament', u'vet', u'wall', u'locat']
[u'donkey', u'origin', u'reveal']
[u'dont', u'risk', u'babi', u'life', u'bonus', u'abbott', u'say']
[u'door', u'snake', u'confound', u'parliamentari', u'committe']
[u'doubt', u'cast', u'fish', u'payment', u'claim']
[u'dragon', u'head']
[u'dreamtim', u'film', u'splash']
[u'drive', u'shoot', u'hit', u'fenech', u'home']
[u'dutch', u'run', u'scar', u'advocaat']
[u'east', u'counter', u'west', u'iraqi']
[u'welcom', u'loom', u'iraq', u'handov']
[u'eyr', u'highway', u'reopen', u'accid']
[u'fan', u'line', u'farewel', u'genius', u'soul']
[u'farmer', u'voic', u'wild', u'worri']
[u'fast', u'food', u'fine', u'moder', u'say']
[u'fear', u'tafe', u'rise', u'deter', u'student']
[u'feder', u'hewitt', u'face', u'potenti', u'wimbledon', u'showdown']
[u'ferrari', u'voic', u'qualifi', u'concern']
[u'fisher', u'fin', u'abalon']
[u'fisher', u'warn', u'outlet', u'pip']
[u'armstrong', u'masseus', u'reaffirm', u'dope', u'claim']
[u'athlet', u'appeal', u'decis']
[u'frawley', u'welcom', u'tiger']
[u'freddi', u'fire', u'rooster', u'lead']
[u'free', u'trade', u'wont', u'affect', u'drug', u'price', u'govt', u'say']
[u'frog', u'studi', u'help', u'cattl', u'industri']
[u'plan', u'creat', u'strong', u'region']
[u'gay', u'welcom', u'committe', u'recommend']
[u'gaza', u'moat', u'plan', u'aim', u'stop', u'weapon', u'smuggl']
[u'gibson', u'top', u'forb', u'power', u'celebr', u'list']
[u'gidley', u'tip', u'boost', u'knight', u'chanc']
[u'good', u'feedback', u'albani', u'fisheri', u'patrol', u'base', u'plan']
[u'goorjian', u'sign', u'king', u'deal']
[u'govt', u'back', u'tafe', u'fund', u'record']
[u'govt', u'defend', u'destruct', u'indonesian', u'fish']
[u'govt', u'postpon', u'test', u'radioact', u'wast', u'dump']
[u'govt', u'stand', u'firm', u'teacher', u'rise', u'condit']
[u'govt', u'urg', u'releas', u'dump', u'sit', u'data']
[u'govt', u'consid', u'independ', u'child', u'protect']
[u'gregan', u'warn', u'scot']
[u'harri', u'opt', u'return', u'leagu']
[u'hawk', u'cling', u'shock', u'lead']
[u'hawk', u'embarrass', u'ladder', u'posit']
[u'hawk', u'race', u'shock', u'lead']
[u'high', u'price', u'lead', u'slump', u'sheep', u'industri']
[u'hogg', u'resign', u'boss']
[u'hoon', u'affect', u'bunburi', u'busi']
[u'howard', u'back', u'nation', u'paedophil', u'law']
[u'imelda', u'ask', u'court', u'documentari']
[u'inquiri', u'look', u'fatal', u'accid']
[u'investig', u'continu', u'recov', u'paint']
[u'reopen', u'teacher', u'wage', u'case']
[u'irrig', u'want', u'independ', u'water', u'probe']
[u'island', u'council', u'audit', u'rais', u'manag', u'concern']
[u'isra', u'armi', u'unit', u'stand', u'kill']
[u'itali', u'decid', u'totti', u'appeal']
[u'japan', u'clear', u'multin', u'iraq', u'forc']
[u'take', u'hervey']
[u'jone', u'pass', u'polygraph', u'test', u'demand', u'exoner']
[u'kafelnikov', u'abandon', u'tenni', u'racket', u'golf', u'club']
[u'knight', u'lose', u'gidley', u'rooster', u'clash']
[u'labor', u'pledg', u'resum', u'detent', u'centr', u'control']
[u'lake', u'recharg', u'land', u'hydro', u'water']
[u'lawyer', u'futur', u'hang', u'balanc', u'conspiraci']
[u'lebanes', u'hostag', u'free', u'iraq']
[u'legal', u'action', u'take', u'stop', u'indigen', u'leav']
[u'letter', u'shock', u'interim', u'anglican', u'head']
[u'liverpool', u'fear', u'gerrard', u'departur']
[u'local', u'hero', u'win', u'tour', u'switzerland', u'sixth', u'stage']
[u'accus', u'author', u'caus', u'terror']
[u'extradit', u'face', u'child', u'charg']
[u'melbourn', u'circus', u'centr']
[u'mine', u'rescu', u'team', u'prove', u'abil']
[u'minist', u'issu', u'weed', u'warn']
[u'minist', u'oppos', u'broom', u'school', u'plan']
[u'murali', u'hatr', u'australian']
[u'murder', u'victim', u'father', u'welcom', u'investig', u'review']
[u'nat', u'accus', u'govt', u'fund', u'obscen']
[u'navi', u'rescu', u'trio', u'life', u'raft']
[u'environ', u'manag', u'appoint', u'troubl']
[u'presid', u'elect', u'wiluna', u'council']
[u'zealand', u'issu', u'athen', u'travel', u'warn']
[u'charg', u'lay', u'euthanasia', u'death']
[u'tourist', u'fin', u'breach', u'aborigin', u'alcohol']
[u'suicid', u'rat', u'higher', u'nation']
[u'vote', u'kissabl', u'woman']
[u'offic', u'felt', u'pressur', u'ghraib', u'report']
[u'chief', u'rais', u'greenhous', u'fear']
[u'olymp', u'cyclist', u'dope', u'claim']
[u'goal', u'doubt', u'rooney', u'strike']
[u'perth', u'coupl', u'lose', u'home', u'drug', u'convict']
[u'perth', u'extradit', u'sexual', u'assault', u'charg']
[u'plan', u'promis', u'hospit', u'benefit']
[u'plan', u'moot', u'tweed', u'brand']
[u'total', u'confid', u'hill']
[u'argu', u'continu', u'presenc', u'iraq']
[u'polic', u'call', u'british', u'brother', u'blue']
[u'polic', u'defend', u'drug', u'prevent', u'strategi']
[u'polic', u'poser', u'fremantl', u'jewel']
[u'polic', u'quiz', u'group', u'steal', u'cezann']
[u'polic', u'rethink', u'resourc', u'distribut']
[u'polic', u'hunt', u'attempt', u'hold']
[u'polic', u'crack', u'hoon']
[u'prison', u'escap', u'hospit']
[u'protest', u'polic', u'stand', u'develop']
[u'govt', u'steal', u'wag', u'talk']
[u'queanbeyan', u'defenc', u'base', u'plan', u'examin']
[u'raid', u'illeg', u'plant', u'anim', u'product']
[u'railway', u'sleeper', u'stop', u'train']
[u'rain', u'bolster', u'grain', u'farmer', u'hop']
[u'region', u'nomin', u'seek', u'export', u'award']
[u'report', u'highlight', u'sept', u'chao']
[u'revamp', u'plan', u'armidal']
[u'rooster', u'blitz', u'injuri', u'knight']
[u'russia', u'warn', u'saddam']
[u'saint', u'storm']
[u'saint', u'storm', u'sink', u'hawk']
[u'samo', u'sign', u'brumbi', u'deal']
[u'santini', u'order', u'franc', u'wake']
[u'oppn', u'air', u'court', u'sentenc', u'concern']
[u'park', u'consid', u'seagul', u'cull']
[u'scheme', u'aim', u'address', u'trust', u'fund', u'woe']
[u'schumach', u'pledg', u'indi']
[u'scientist', u'discov', u'prehistor', u'ratfish']
[u'senat', u'confirm', u'greenspan', u'fifth', u'term']
[u'kill', u'iraq', u'clash']
[u'shire', u'urg', u'fight', u'water', u'rat', u'model']
[u'smoke', u'alarm', u'need', u'hear', u'impair', u'coron']
[u'snow', u'fall', u'extra', u'strain', u'stock']
[u'guilti', u'manslaught', u'mother', u'stab']
[u'south', u'korean', u'troop', u'deploy', u'iraq', u'august']
[u'spain', u'abandon', u'ambiti', u'river', u'plan']
[u'status', u'influenc', u'block', u'newspap']
[u'helen', u'pair', u'ban', u'bet']
[u'studi', u'consid', u'lobster', u'chang', u'impact']
[u'sullivan', u'take', u'round', u'lead', u'franc']
[u'support', u'stay', u'connect', u'scheme']
[u'survey', u'find', u'fish', u'sell', u'legal', u'size']
[u'swiss', u'star', u'write', u'predict', u'england']
[u'sydney', u'school', u'shoot', u'leav', u'girl', u'hospit']
[u'princip', u'happi', u'state', u'dept', u'survey']
[u'teacher', u'talk', u'deadlock']
[u'telstra', u'reach', u'deal', u'reach', u'debt']
[u'moana', u'prepar', u'red', u'debut']
[u'tendulkar', u'feel', u'strain', u'long', u'career']
[u'terror', u'suspect', u'remain', u'free', u'pend', u'bail', u'appeal']
[u'theophan', u'fail', u'clear', u'corrupt']
[u'thiev', u'urg', u'return', u'vital', u'equip', u'hospit']
[u'thoma', u'dismiss', u'saint', u'slump', u'talk']
[u'charg', u'drug', u'haul']
[u'iraqi', u'civilian', u'wound', u'roadsid', u'bomb']
[u'stand', u'trial', u'slaveri']
[u'tiger', u'play', u'richo', u'fear']
[u'timelin', u'sept', u'attack', u'respons']
[u'tourist', u'bridg', u'death', u'mysteri']
[u'perth', u'escap', u'recaptur', u'larg']
[u'uefa', u'charg', u'pile', u'miseri', u'russia']
[u'uncertainti', u'olymp', u'region', u'coverag']
[u'chief', u'oppos', u'crime', u'immun']
[u'condemn', u'colombian', u'coca', u'farmer', u'massacr']
[u'union', u'air', u'hec', u'fear']
[u'wrap', u'iran', u'nuclear', u'stanc']
[u'central', u'command', u'admit', u'shortcom', u'iraq']
[u'senat', u'back', u'increas', u'armi', u'troop', u'strength']
[u'opposit', u'concern', u'number', u'train']
[u'vietnames', u'get', u'year', u'thailand', u'bomb', u'plot']
[u'lawyer', u'indigen', u'consider']
[u'welfar', u'group', u'foreign', u'bet']
[u'western', u'endur', u'cold', u'snap']
[u'whitak', u'predict', u'tough', u'pacif', u'challeng']
[u'william', u'doubl']
[u'william', u'sister', u'want']
[u'wind', u'farm', u'plan', u'moot', u'guyraglen', u'inn', u'region']
[u'withdraw', u'increas', u'local', u'terror', u'risk']
[u'woman', u'charg', u'stalk', u'actress', u'catherin', u'zeta']
[u'women', u'urg', u'delay', u'breast', u'check']
[u'woodward', u'laugh', u'player', u'discont', u'claim']
[u'woolmer', u'want', u'miandad', u'help']
[u'haitian', u'demand', u'aristid', u'return']
[u'accus', u'soccer', u'hooligan', u'return', u'home']
[u'school', u'tech', u'upgrad']
[u'adelaid', u'polic', u'investig', u'suspici', u'death']
[u'black', u'whitewash', u'england']
[u'celebr', u'affirm', u'action', u'anniversari']
[u'qaeda', u'chief', u'kill', u'contractor', u'behead']
[u'anglican', u'church', u'adelaid', u'apologis', u'sexual']
[u'anglican', u'synod', u'address', u'victim', u'interest', u'rann']
[u'aphrodit', u'head', u'line', u'honour', u'bird', u'race']
[u'armstrong', u'want', u'dope', u'denial', u'book']
[u'astronaut', u'moon', u'daughter', u'birth']
[u'iraqi', u'kill', u'strike', u'report']
[u'atsic', u'employe', u'fear', u'job']
[u'australia', u'lead', u'scot', u'sydney']
[u'australia', u'commit', u'missil', u'defenc', u'program']
[u'aust', u'commit', u'star', u'war']
[u'boss', u'condemn', u'qualifi', u'rule']
[u'barrichello', u'beat', u'schu', u'practic']
[u'beach', u'whale', u'free']
[u'benitez', u'hail', u'fantast', u'ciss']
[u'blue', u'trot']
[u'bono', u'breach', u'irish', u'smoke']
[u'brazil', u'foot', u'mouth', u'diseas']
[u'british', u'minist', u'see', u'constitut', u'deal', u'soon']
[u'bronco', u'grind', u'tough', u'eel']
[u'bronco', u'lead', u'eel', u'half', u'time', u'rabbitoh', u'leap']
[u'bulldog', u'hold', u'narrow', u'lead', u'raider']
[u'bulldog', u'hold', u'narrow', u'raider']
[u'burmes', u'democraci', u'icon', u'mark', u'birthday']
[u'charg', u'winona', u'ryder', u'reduc']
[u'chelsea', u'gronkjaer', u'birmingham']
[u'clapton', u'auction', u'guitar', u'benefit', u'rehab']
[u'clean', u'continu', u'adelaid', u'storm']
[u'commemor', u'number', u'plat', u'releas']
[u'construct', u'firm', u'seal', u'defenc', u'deal']
[u'level', u'continu', u'drop']
[u'disgrac', u'helen', u'pair', u'face', u'financi', u'miseri']
[u'dont', u'condemn', u'accus', u'lawyer', u'institut']
[u'dozen', u'bust', u'freeway', u'booz']
[u'egyptian', u'striker', u'mido', u'want', u'magpi']
[u'timor', u'daughter', u'graduat', u'darwin']
[u'clinch', u'histor', u'constitut', u'deal']
[u'summit', u'end', u'high']
[u'famili', u'bonus', u'payment', u'flow']
[u'feder', u'prison', u'land', u'offer', u'littl', u'late']
[u'fevola', u'boot', u'blue', u'half', u'time', u'lead']
[u'finmeccanica', u'alcatel', u'sign', u'space', u'allianc']
[u'flotilla', u'hope', u'mark', u'refuge']
[u'frawley', u'season']
[u'fremantl', u'hous', u'develop', u'delay']
[u'german', u'samurai', u'attack', u'hiker']
[u'greek', u'polic', u'bust', u'illeg', u'prostitut', u'ring']
[u'green', u'melbourn', u'candid', u'name']
[u'gronkjaer', u'help', u'kill', u'bulgaria', u'euro', u'dream']
[u'hantuchova', u'oust', u'mauresmo', u'eastbourn']
[u'harrow', u'break', u'nose', u'opal']
[u'hill', u'dismiss', u'censur', u'motion', u'ghraib']
[u'hous', u'slowdown', u'claim', u'agent']
[u'howard', u'hill', u'condemn', u'behead']
[u'hundr', u'protest', u'huge', u'taiwan', u'defenc', u'budget']
[u'hydro', u'tasmania', u'avoid', u'salt', u'lake', u'warn']
[u'india', u'pakistan', u'gear', u'histor', u'nuclear']
[u'indonesia', u'park', u'bar', u'tourist', u'rumbl', u'volcano']
[u'injur', u'blake', u'pull', u'wimbledon']
[u'iran', u'review', u'uranium', u'enrich', u'program']
[u'iraq', u'export', u'resum']
[u'israel', u'arrest', u'teenag', u'girl', u'plan']
[u'isra', u'helicopt', u'attack', u'gaza', u'strip']
[u'itali', u'gut', u'sweden', u'comeback']
[u'itali', u'school', u'foil', u'cheat', u'block', u'mobil']
[u'jackson', u'quit', u'laker', u'coach']
[u'judg', u'ax', u'galapago', u'cucumb', u'fish', u'law']
[u'kid', u'choos', u'fruit', u'offer', u'survey']
[u'lion', u'ahead', u'young', u'cat']
[u'liverpool', u'legend', u'thompson', u'leav', u'anfield']
[u'local', u'govern', u'warn', u'snap', u'audit']
[u'madonna', u'chang', u'esther']
[u'marathon', u'champ', u'support', u'junk', u'food']
[u'marshal', u'star', u'kiwi', u'tour']
[u'mickelson', u'surg', u'open', u'lead']
[u'blast', u'jolt', u'break', u'hill']
[u'england', u'fan', u'arrest', u'portug']
[u'nepal', u'rebel', u'attack', u'polic', u'patrol', u'kill', u'peopl']
[u'engin', u'boost', u'webber']
[u'newman', u'say', u'budget', u'consult', u'fine']
[u'nitschk', u'welcom', u'decis', u'prosecut', u'crick']
[u'proof', u'olymp', u'dope', u'claim', u'cycl', u'australia']
[u'constabl', u'die', u'patrol', u'accid']
[u'say', u'weed', u'need', u'greater', u'attent']
[u'olymp', u'prison', u'controversi', u'stir', u'greec']
[u'kill', u'fatal', u'road', u'accid']
[u'opal', u'seal', u'china', u'seri']
[u'paradorn', u'grasscourt', u'final']
[u'patterson', u'deni', u'homeless', u'fund', u'cut']
[u'philippin', u'journalist', u'kill']
[u'polic', u'breath', u'test', u'boat', u'owner']
[u'polic', u'finish', u'search', u'man', u'remain']
[u'polic', u'rescu', u'boat', u'sink', u'derwent']
[u'policewoman', u'serious', u'injur', u'crash']
[u'porn', u'scandal', u'film', u'domin', u'german', u'award']
[u'port', u'continu', u'subiaco', u'success']
[u'port', u'edg', u'docker', u'west']
[u'powel', u'condemn', u'behead', u'hostag']
[u'public', u'meet', u'hold', u'hospit', u'discuss']
[u'public', u'nolan', u'galleri']
[u'rail', u'union', u'say', u'hunter', u'job']
[u'rain', u'suspend', u'play', u'bosch']
[u'charl', u'mourn']
[u'rooney', u'keep', u'second', u'goal', u'swiss']
[u'russian', u'warn', u'saddam', u'puzzl']
[u'sadr', u'condemn', u'interim', u'govern', u'tie']
[u'sampra', u'comparison', u'feder']
[u'oppn', u'demand', u'better', u'facil', u'femal']
[u'saudi', u'arabia', u'arrest', u'milit']
[u'saudi', u'televis', u'show', u'footag', u'dead', u'qaeda']
[u'senat', u'want', u'histor', u'tree', u'stay']
[u'serga', u'killeen', u'share', u'lpga', u'lead']
[u'south', u'africa', u'coetzer', u'retir']
[u'south', u'home', u'man', u'cliffhang']
[u'south', u'home', u'man', u'cliff', u'hanger']
[u'space', u'shuttl', u'march', u'nasa']
[u'spain', u'scrap', u'controversi', u'water', u'project']
[u'spider', u'banana', u'bunch', u'bite']
[u'sprint', u'claim', u'world', u'speed', u'record', u'internet']
[u'strand', u'whale', u'face', u'fit', u'program']
[u'sudan', u'presid', u'order', u'darfur', u'crackdown', u'arm']
[u'suneson', u'swing', u'practic', u'pay', u'franc']
[u'suspici', u'white', u'powder', u'athen', u'rubbish']
[u'sweden', u'dent', u'itali', u'euro', u'hop']
[u'swift', u'defeat', u'firebird']
[u'send', u'smallgood', u'label', u'remind']
[u'tbird', u'inflict', u'swift', u'loss']
[u'think', u'tank', u'criticis', u'energi', u'packag']
[u'iraq', u'bomb', u'blast']
[u'tighten', u'militari', u'tie', u'tonga', u'china']
[u'triathlet', u'critic', u'injur', u'road', u'accid']
[u'trust', u'wrong', u'styx', u'valley', u'brown', u'say']
[u'tuqiri', u'grab', u'doubl', u'wallabi']
[u'aim', u'prove', u'olymp']
[u'ullrich', u'relinquish', u'tour', u'switzerland', u'lead']
[u'union', u'critic', u'latest', u'nurs', u'deal']
[u'seek', u'home', u'million', u'refuge']
[u'hostag', u'behead', u'saudi', u'arabia']
[u'sign', u'treati', u'save', u'titan']
[u'soldier', u'kill', u'contractor', u'wound', u'iraq']
[u'soldier', u'kill', u'baghdad']
[u'stock', u'quiet', u'ahead', u'announc']
[u'trade', u'deficit', u'explod', u'record']
[u'vatican', u'disappoint', u'christian', u'root']
[u'vaughan', u'call', u'unit', u'test', u'team']
[u'veteran', u'south', u'african', u'journalist', u'klaast', u'die']
[u'govt', u'tell', u'hand', u'firework']
[u'virus', u'put', u'giteau', u'doubt']
[u'virus', u'rule', u'giteau']
[u'push', u'ahead', u'pipelin']
[u'waugh', u'ball', u'steal', u'bonus', u'gregan']
[u'websit', u'deni', u'death', u'saudi', u'qaeda', u'chief']
[u'white', u'wipe', u'record', u'book']
[u'world', u'refuge', u'acknowledg']
[u'find', u'breach', u'trade', u'rule']
[u'young', u'cat', u'shock', u'lion']
[u'yuko', u'order', u'repay', u'tax']
[u'congoles', u'refuge', u'flee', u'burundi', u'offici']
[u'presum', u'dead', u'nepales', u'plung']
[u'abbott', u'say', u'labor', u'bill']
[u'crack', u'crimin']
[u'advoc', u'urg', u'communiti', u'support', u'refuge']
[u'algerian', u'extremist', u'leader', u'kill', u'arm', u'forc']
[u'qaeda', u'confirm', u'muqrin', u'death']
[u'qaeda', u'defiant', u'saudi', u'leader', u'die']
[u'ambul', u'servic', u'say', u'put', u'live', u'risk']
[u'anglican', u'church', u'apologis', u'adelaid', u'servic']
[u'anglicar', u'appeal', u'food', u'cloth', u'donat']
[u'asylum', u'seeker', u'hospitalis', u'overdos']
[u'barrichello', u'lead', u'ferrari']
[u'bartlett', u'say', u'carer', u'payment', u'elect']
[u'blair', u'launch', u'sell', u'charter', u'britain']
[u'blast', u'wound', u'iraq']
[u'booz', u'poll', u'split', u'melbourn', u'suburb']
[u'britain', u'free', u'hooligan', u'jail', u'portug']
[u'britain', u'honour', u'nazi', u'hunter', u'wiesenth']
[u'british', u'accus', u'isra', u'troop', u'fire']
[u'formal', u'antarct', u'tourism', u'manag']
[u'campaign', u'march', u'melbourn', u'world', u'refuge']
[u'campbel', u'town', u'water', u'safe', u'drink', u'say', u'mayor']
[u'canberra', u'space', u'station', u'readi', u'monitor', u'saturn']
[u'centenari', u'inquiri', u'witch', u'hunt', u'labor']
[u'chanderpaul', u'see', u'windi', u'sussex']
[u'chavez', u'media', u'boss', u'grind', u'rule', u'recal']
[u'chines', u'sentenc', u'death', u'babi', u'traffic']
[u'commission', u'pay', u'tribut', u'kill', u'policewoman']
[u'convent', u'play', u'host', u'art', u'cultur', u'centr']
[u'council', u'reject', u'heavi', u'hand', u'tactic', u'critic']
[u'cowboy', u'snatch', u'golden', u'point']
[u'cwealth', u'respons', u'detent', u'centr', u'prison']
[u'democrat', u'criticis', u'govt', u'asylum', u'seeker', u'polici']
[u'democrat', u'star', u'war', u'program']
[u'demon', u'bomber', u'crow', u'bite', u'dog']
[u'demon', u'bomber']
[u'docker', u'secur', u'pavlich', u'servic']
[u'doctor', u'blast', u'nose', u'fund', u'rais']
[u'dougla', u'council', u'confront', u'daintre', u'moratorium']
[u'dragon', u'boat', u'paddler', u'prepar', u'championship']
[u'dragon', u'rout', u'tiger']
[u'egyptian', u'rule', u'parti', u'domin', u'upper', u'hous']
[u'england', u'grewcock', u'ban', u'stamp', u'shaw', u'clear']
[u'extinguish', u'ember', u'proper', u'say', u'brigad']
[u'failur', u'catch', u'lade', u'greatest']
[u'filipino', u'extradit', u'murder', u'charg']
[u'privat', u'rocket', u'readi']
[u'central', u'accid']
[u'peopl', u'miss', u'indonesian', u'plane', u'crash']
[u'minist', u'arrest', u'child', u'swoop']
[u'formula', u'chew', u'appl', u'plan']
[u'teenag', u'girl', u'injur', u'crash']
[u'free', u'whale', u'monitor']
[u'frei', u'charg', u'spit', u'gerrard']
[u'gallop', u'say', u'pipelin', u'need', u'secur', u'power', u'suppli']
[u'gasnier', u'fire', u'dragon', u'rout', u'tiger']
[u'gasnier', u'dragon', u'rout', u'tiger']
[u'german', u'rock', u'latvia', u'prove', u'point']
[u'girl', u'die', u'tragic', u'accid']
[u'goosen', u'edg', u'ahead', u'field', u'falter']
[u'govt', u'deni', u'forest', u'sale', u'fund', u'rail', u'network']
[u'govt', u'say', u'ballist', u'technolog', u'assist', u'crime']
[u'green', u'foreshadow', u'energi', u'white', u'paper', u'attack']
[u'gutsi', u'czech']
[u'harrison', u'stop', u'brave', u'polish', u'fighter', u'bonin']
[u'henman', u'say', u'banish', u'wimbledon', u'blue']
[u'hill', u'work', u'defenc', u'communic']
[u'hospit', u'establish', u'mobil', u'treatment', u'centr']
[u'human', u'right', u'commission', u'mark', u'world', u'refuge']
[u'hundr', u'march', u'mark', u'world', u'refuge']
[u'india', u'pakistan', u'agre', u'reduc', u'risk', u'nuclear']
[u'india', u'pakistan', u'begin', u'nuclear', u'talk']
[u'india', u'pakistan', u'nuclear', u'hotlin']
[u'indonesia', u'megawati', u'draw', u'crowd', u'jakarta']
[u'injuri', u'forc', u'nalbandian', u'wimbledon']
[u'inquiri', u'probe', u'alp', u'centenari', u'hous', u'deal']
[u'iran', u'review', u'nuclear', u'program']
[u'iraq', u'announc', u'defenc', u'strategi']
[u'iraq', u'defend', u'strike', u'kill']
[u'island', u'good', u'red']
[u'isra', u'armi', u'probe', u'british', u'shoot', u'claim']
[u'isra', u'file', u'petit', u'sharon']
[u'bacon', u'die', u'age']
[u'killeen', u'seiz', u'shoot', u'lpga', u'lead']
[u'kimmorley', u'target', u'origin', u'comeback']
[u'kuznetsova', u'continu', u'russian', u'streak']
[u'labor', u'confer', u'continu', u'amid', u'protest']
[u'latham', u'demand', u'bank', u'account']
[u'bar', u'concert']
[u'charg', u'tortur', u'mother']
[u'manhunt', u'underway', u'perth', u'shoot']
[u'kill', u'motorbik', u'crash']
[u'step', u'year']
[u'mcgrath', u'join', u'middlesex']
[u'merlin', u'find', u'voic', u'refuge', u'ralli']
[u'million', u'afghani', u'regist', u'vote', u'histor']
[u'moor', u'plead', u'canada', u'vote', u'tori']
[u'pub', u'club', u'offer', u'free', u'water']
[u'palestinian', u'worker', u'cross', u'gaza', u'strip']
[u'paradorn', u'prevail', u'nottingham']
[u'philippin', u'presid', u'arroyo', u'win', u'elect', u'congress']
[u'pierc', u'win', u'bosch', u'titl']
[u'polic', u'search', u'miss', u'woman', u'child']
[u'polic', u'investig', u'alcohol', u'link', u'boat', u'accid']
[u'polic', u'swoop', u'paedophil', u'network']
[u'priddi', u'spark', u'panther', u'comeback']
[u'protest', u'mark', u'kyi', u'birthday']
[u'celebr', u'anniversari', u'pedal', u'radio']
[u'rail', u'union', u'meet', u'costa']
[u'refuge', u'activist', u'ask', u'leav', u'nauruan', u'water']
[u'refuge', u'activist', u'enter', u'nauruan', u'water', u'report']
[u'roo', u'bounc', u'eagl']
[u'roo', u'grab', u'bounc', u'eagl']
[u'commit', u'reduc', u'school', u'drop', u'rat']
[u'govt', u'commit', u'major', u'road', u'work', u'plan']
[u'sarong', u'spiderman', u'fight', u'hindu', u'demon', u'indian']
[u'search', u'continu', u'miss', u'cyclist']
[u'better', u'cash', u'bank', u'say']
[u'shark', u'lead', u'panther', u'break']
[u'player', u'fight', u'omer', u'lead']
[u'smart', u'leav', u'crow', u'win', u'note']
[u'springbok', u'doubl', u'ireland']
[u'lanka', u'rule', u'sabotag', u'peac', u'dove']
[u'teacher', u'closer', u'deal']
[u'teenag', u'charg', u'crash']
[u'teenag', u'charg', u'father', u'murder']
[u'tiger', u'shock', u'rebuk', u'coach']
[u'triathlet', u'critic', u'condit']
[u'tribut', u'flow', u'bacon']
[u'whale', u'erupt', u'canada']
[u'turinui', u'ax', u'wallabi']
[u'australian', u'fear', u'dead']
[u'million', u'famili', u'receiv', u'lump', u'payment']
[u'surviv', u'light', u'plane', u'crash']
[u'typhoon', u'kill', u'japan']
[u'probe', u'report', u'troop', u'abus', u'dead', u'iraqi']
[u'ullrich', u'race', u'time', u'tour']
[u'strike', u'qaeda', u'safe', u'hous', u'iraq', u'dead']
[u'nistelrooy', u'sick', u'break', u'miser', u'dutch']
[u'vanston', u'displeas', u'detent', u'centr', u'report']
[u'vanston', u'unsway', u'nauru', u'hunger', u'strike']
[u'polic', u'surround', u'hous', u'report', u'shoot']
[u'wed', u'guest', u'chines', u'truck', u'plung']
[u'william', u'trick', u'see', u'wale', u'tame', u'puma']
[u'woman', u'stab', u'melbourn']
[u'yacht', u'crew', u'determin', u'land', u'nauru']
[u'zimbabw', u'wrap', u'nation', u'aid', u'confer']
[u'develop', u'plan', u'bateman']
[u'commission', u'claim', u'iraqi', u'offic', u'qaeda', u'link']
[u'ghraib', u'crime', u'scene', u'say', u'militari', u'judg']
[u'accus', u'soldier', u'lawyer', u'grill', u'head', u'forc']
[u'opposit', u'urg', u'crackdown', u'unruli', u'tenant']
[u'andren', u'outrag', u'super', u'stanc']
[u'angri', u'vieri', u'vow', u'media', u'silenc']
[u'argentin', u'econom', u'collaps', u'trigger', u'violenc']
[u'armi', u'pair', u'dismiss', u'drug']
[u'arroyo', u'win', u'elect', u'vow', u'unit', u'philippin']
[u'author', u'major', u'drug', u'bust']
[u'baggaley', u'pick', u'bronz']
[u'barrier', u'reef', u'basin', u'list', u'explor']
[u'bear', u'prove', u'good', u'ipswich']
[u'berri', u'seek', u'avoid', u'voluntari', u'redund']
[u'boost', u'albani', u'recycl', u'effort']
[u'bridg', u'work', u'begin', u'soon']
[u'britain', u'probe', u'alleg', u'mutil', u'iraqi']
[u'brown', u'urg', u'intervent', u'lawyer', u'harass']
[u'busi', u'urg', u'seek', u'flood', u'relief']
[u'cabin', u'door', u'rip', u'jetstar', u'plane', u'passeng']
[u'cane', u'grower', u'consid', u'hemp', u'industri']
[u'crash', u'put', u'pair', u'hospit']
[u'chamber', u'play', u'flight', u'levi']
[u'chamber', u'attend', u'anti', u'health', u'merger', u'ralli']
[u'chaney', u'appoint', u'board']
[u'church', u'expect', u'clear', u'follow', u'arrest']
[u'promot', u'anti', u'misconduct']
[u'coag', u'discuss', u'indigen', u'problem', u'stanhop']
[u'cold', u'weather', u'hit', u'north', u'coast']
[u'comment', u'seek', u'colli', u'power', u'station', u'plan']
[u'communiti', u'mourn', u'toddler', u'loss']
[u'contract', u'boost', u'roadwork', u'job']
[u'convict', u'babi', u'killer', u'name', u'kiwi', u'olymp', u'team']
[u'councillor', u'divid', u'rat', u'structur']
[u'councillor', u'seek', u'elect', u'probe']
[u'coupl', u'jail', u'heroin', u'robberi']
[u'court', u'hear', u'hospit', u'error', u'leav', u'babi', u'brain']
[u'court', u'tell', u'dolina', u'take', u'go', u'home', u'plastic']
[u'credit', u'union', u'member', u'vote', u'merger', u'plan']
[u'critic', u'pan', u'outback', u'realiti', u'hunk', u'hunt']
[u'crown', u'push', u'indefin', u'jail', u'term', u'rapist']
[u'crow', u'dump', u'ayr']
[u'cabl', u'think', u'phone', u'woe']
[u'cyclist', u'die', u'collis']
[u'czech', u'reserv', u'take', u'light', u'warn']
[u'darwin', u'nativ', u'titl', u'case', u'near']
[u'dead', u'whale', u'caus', u'problem', u'author']
[u'democrat', u'support', u'govt', u'super', u'legisl']
[u'demon', u'welcom', u'break']
[u'deputi', u'urg', u'state', u'sign', u'water', u'deal']
[u'dutch', u'fan', u'burn', u'flag', u'frustrat']
[u'egan', u'promis', u'futur', u'land', u'relief']
[u'energi', u'minist', u'consid', u'protest', u'meet']
[u'england', u'return', u'jail', u'portug']
[u'euro', u'glori', u'unit', u'trebl', u'triumph', u'beckham']
[u'anglican', u'minist', u'report', u'child', u'claim']
[u'feder', u'help', u'seek', u'green', u'centr']
[u'fevola', u'sweat', u'video', u'report']
[u'fevola', u'answer', u'strike', u'charg']
[u'financ', u'group', u'prais', u'super', u'deal']
[u'fiorentina', u'earn', u'fairytal', u'return', u'seri']
[u'fior', u'urg', u'itali', u'forget', u'conspiraci', u'theori']
[u'forc', u'movi', u'goer', u'evacu']
[u'forest', u'lobbi', u'group', u'head', u'canberra']
[u'anglican', u'priest', u'court', u'indec']
[u'partner', u'say', u'dolina', u'owner', u'admit', u'fraud']
[u'deni', u'bail', u'ecstasi', u'powder', u'haul']
[u'soldier', u'kill', u'attack', u'west', u'baghdad']
[u'french', u'ban', u'life', u'kemp', u'announc', u'dope', u'probe']
[u'gasnier', u'dismiss', u'wigan', u'link']
[u'gather', u'focus', u'climat', u'chang']
[u'giant', u'prove', u'strong', u'redback']
[u'gippsland', u'enjoy', u'snowfal']
[u'girl', u'leav', u'hospit', u'child', u'care', u'accid']
[u'goosen', u'captur', u'open', u'crown']
[u'govt', u'criticis', u'provid', u'adequ', u'speed']
[u'govt', u'defend', u'centenari', u'hous', u'deal', u'inquiri']
[u'govt', u'dismiss', u'fortnight', u'famili', u'payment', u'call']
[u'govt', u'urg', u'protect', u'koala']
[u'greec', u'reach', u'despit', u'defeat']
[u'group', u'seek', u'tree', u'clear', u'injunct']
[u'group', u'sting', u'jellyfish', u'woe']
[u'guantanamo', u'prison', u'worst', u'worst', u'report']
[u'buyback', u'trigger', u'opposit', u'doubt']
[u'hargreav', u'stomach', u'croat', u'clash']
[u'hear', u'probe', u'colleg', u'woe']
[u'hepburn', u'welcom', u'refuge']
[u'heritag', u'group', u'promis', u'hospit', u'site', u'review']
[u'hick', u'lawyer', u'harass', u'disput']
[u'high', u'school', u'blaze', u'affect', u'class']
[u'high', u'wind', u'creat', u'work', u'aplenti']
[u'hill', u'censur', u'prison', u'abus', u'scandal']
[u'hockeyroo', u'crush', u'kiwi']
[u'hope', u'dentist', u'eas', u'wait', u'list', u'pressur']
[u'hop', u'rail', u'link', u'boost', u'kimberley', u'tourism']
[u'howard', u'attack', u'latham']
[u'hundr', u'farewel', u'matravill', u'victim']
[u'complet', u'share', u'buyback']
[u'india', u'take', u'manjimup', u'appl']
[u'inform', u'tell', u'court', u'detect']
[u'inform', u'seek', u'cyclist', u'death']
[u'inquiri', u'urg', u'focus', u'futur', u'water', u'suppli']
[u'inquiri', u'urg', u'target', u'improv', u'road', u'strategi']
[u'seek', u'lake', u'argyl', u'revamp']
[u'iran', u'dismiss', u'human', u'right', u'critic']
[u'iran', u'seiz', u'british', u'navi', u'boat']
[u'iraq', u'resum', u'export', u'halt']
[u'israel', u'consult', u'egypt', u'gaza', u'trench', u'plan']
[u'joey', u'waratah', u'switch', u'talk']
[u'jurien', u'urg', u'host', u'bank']
[u'kerr', u'win', u'lpga', u'classic']
[u'landhold', u'protest', u'daintre', u'develop']
[u'larsson', u'prolong', u'intern', u'return']
[u'latham', u'accus', u'govt', u'rush']
[u'latham', u'save', u'plan', u'elect']
[u'lawyer', u'want', u'bush', u'wit', u'stand', u'iraq', u'abus']
[u'lima', u'join', u'elit', u'omer', u'open']
[u'limeston', u'transport', u'start']
[u'macair', u'drop', u'tare', u'grafton', u'flight']
[u'magpi', u'davidson', u'assault', u'investig']
[u'magpi', u'davidson', u'assault', u'probe']
[u'hold', u'adelaid', u'murder']
[u'hospit', u'crash', u'river']
[u'jail', u'incest', u'despit', u'daughter', u'plea']
[u'court', u'tourist', u'attack']
[u'maritim', u'colleg', u'propon', u'site']
[u'matur', u'student', u'face', u'crimin', u'check']
[u'mayor', u'back', u'barrack', u'handov', u'plan']
[u'mayor', u'target', u'beach', u'eros']
[u'melbourn', u'water', u'price', u'rise']
[u'merger', u'plan', u'creat', u'health', u'doubt']
[u'minardi', u'celebr', u'histori', u'baumgartn']
[u'miner', u'face', u'prosecut', u'tremor']
[u'miner', u'urg', u'reject', u'workplac', u'agreement']
[u'mine', u'union', u'safeti', u'legisl']
[u'mix', u'respons', u'govt', u'democrat', u'super', u'deal']
[u'mobil', u'number', u'sale']
[u'skier', u'expect', u'snow']
[u'talk', u'port', u'access', u'road']
[u'join', u'energi', u'polici', u'protest']
[u'say', u'budget', u'wont', u'includ', u'pine', u'forest', u'sell']
[u'nation', u'rise', u'garden', u'step', u'closer', u'complet']
[u'nat', u'talk', u'geraldton', u'candid']
[u'negoti', u'continu', u'resolv', u'ambul', u'disput']
[u'footag', u'show', u'frei', u'spit']
[u'jetstar', u'plan', u'arriv']
[u'chairman', u'focus', u'bank', u'reput']
[u'york', u'time', u'pan', u'clinton', u'memoir']
[u'nida', u'workshop', u'head', u'armidal', u'tamworth']
[u'citi', u'hill', u'rezon', u'plan']
[u'teacher', u'threaten', u'fight']
[u'introduc', u'asbesto', u'demolit', u'safeti', u'check']
[u'olic', u'escap', u'fail', u'drug', u'test']
[u'opal', u'pick', u'porter', u'china', u'tour']
[u'open', u'final', u'round', u'difficult', u'year']
[u'oppn', u'promis', u'protect', u'softwood', u'communiti']
[u'orang', u'seek', u'industri', u'land']
[u'owen', u'fire', u'england', u'say', u'mcclaren']
[u'paint', u'undergo', u'polic', u'test']
[u'parliament', u'hous', u'secur', u'upgrad']
[u'parliament', u'pay', u'tribut', u'bacon']
[u'stock', u'fall', u'news', u'burswood']
[u'casino', u'offer']
[u'plan', u'underway', u'ethanol', u'industri']
[u'plan', u'address', u'school', u'retent', u'rat']
[u'welcom', u'poll', u'boost']
[u'polic', u'clarifi', u'higher', u'domest', u'violenc', u'figur']
[u'polic', u'hunt', u'continu', u'gunman']
[u'polic', u'investig', u'fatal', u'paraglid', u'crash']
[u'polic', u'horror', u'crash', u'victim']
[u'polic', u'prais', u'think', u'driver']
[u'polic', u'probe', u'colleagu', u'road', u'death']
[u'polic', u'target', u'drink', u'driver']
[u'polic', u'urg', u'consid', u'indigen', u'famili', u'grief']
[u'porter', u'make', u'opal', u'squad', u'tour', u'china']
[u'port', u'hedland', u'theft', u'fall']
[u'privat', u'rocket', u'prepar', u'blast']
[u'probe', u'examin', u'mental', u'health', u'servic']
[u'quoll', u'reloc', u'fail', u'impact', u'environ']
[u'rain', u'outlook', u'boost', u'irrig', u'trust', u'hop']
[u'record', u'commod', u'export', u'earn', u'expect']
[u'report', u'recommend', u'militari', u'jump', u'jet']
[u'report', u'portugues', u'polic', u'search']
[u'richard', u'quit', u'west', u'indi', u'selector']
[u'sadr', u'invit', u'iraq', u'nation', u'confer']
[u'santini', u'defend', u'tactic']
[u'sato', u'revel', u'podium', u'finish']
[u'school', u'exercis', u'tie', u'fund', u'nelson']
[u'schumach', u'reliv', u'agoni', u'brother', u'crash']
[u'schumach', u'shrug', u'brother', u'crash', u'claim']
[u'search', u'elus', u'white', u'whale']
[u'search', u'start', u'gold']
[u'senat', u'move', u'censur', u'hill']
[u'senat', u'reject', u'build', u'super', u'regul']
[u'korea', u'demand', u'iraqi', u'milit', u'releas', u'hostag']
[u'korea', u'unsway', u'behead', u'threat']
[u'smart', u'comfort', u'retir']
[u'soldier', u'hear', u'ghraib', u'scandal']
[u'lankan', u'confid', u'despit', u'miss', u'murali']
[u'state', u'energi', u'minist', u'meet', u'feder', u'polici']
[u'state', u'urg', u'lift', u'limit', u'crime', u'case']
[u'steal', u'dinosaur', u'egg', u'return', u'china']
[u'strong', u'veget', u'law']
[u'super', u'gome', u'put', u'portug', u'euro', u'heaven']
[u'switzerland', u'salvag', u'pride', u'franc']
[u'teacher', u'strike', u'gain', u'parent', u'support']
[u'teacher', u'hear', u'claim']
[u'telstra', u'news', u'prompt', u'record', u'market', u'gain']
[u'telstra', u'plan', u'sharehold', u'return']
[u'telstra', u'share', u'push', u'stock', u'market', u'high']
[u'territorian', u'readi', u'spin']
[u'territorian', u'recognis', u'multicultur', u'work']
[u'terror', u'suspect', u'hambali', u'brother', u'deni', u'terror']
[u'test', u'determin', u'cloud', u'seed', u'spark', u'snow']
[u'tighter', u'secur', u'close', u'port', u'access', u'road']
[u'toddler', u'hurt', u'child', u'care', u'centr', u'accid']
[u'twentieth', u'hijack', u'septemb', u'plot', u'hold']
[u'australian', u'kill', u'indonesian', u'plane', u'crash']
[u'ullrich', u'win', u'swiss', u'tour', u'narrowest', u'margin']
[u'umaga', u'sign', u'year', u'zealand']
[u'deni', u'australian', u'elect', u'interfer']
[u'marin', u'die', u'hostil', u'injuri']
[u'vandal', u'caus', u'high', u'school', u'havoc']
[u'consid', u'perman', u'water', u'restrict']
[u'govt', u'resist', u'push', u'chang', u'plate', u'regul']
[u'wallabi', u'back', u'england', u'collis', u'cours']
[u'target', u'paedophil', u'onlin']
[u'watchdog', u'ask', u'produc', u'annual', u'bank', u'report']
[u'water', u'round', u'tabl', u'hear', u'user', u'concern']
[u'wiki', u'high', u'tackl', u'charg']
[u'wiki', u'high', u'tackl', u'charg']
[u'wimbledon', u'begin', u'focus', u'feder']
[u'wind', u'farm', u'monitor', u'ongo']
[u'winter', u'chill', u'bite', u'southern']
[u'woman', u'die', u'ballarat', u'hous']
[u'work', u'begin', u'scallop', u'hatcheri']
[u'workcov', u'confid', u'adequ', u'asbesto', u'fund']
[u'young', u'wallabi', u'cruis', u'world', u'semi']
[u'signatur', u'gather', u'supermarket']
[u'abbott', u'accus', u'latham', u'leav', u'wing', u'hanson']
[u'abbott', u'hope', u'quick', u'passag', u'prescript']
[u'accus', u'paedophil', u'commit', u'suicid']
[u'accus', u'paedophil', u'nat', u'exec']
[u'tighten', u'child', u'exploit', u'law']
[u'drug', u'supermarket']
[u'member', u'urg', u'embrac', u'lennon', u'leadership']
[u'calder', u'fund', u'announc']
[u'qaeda', u'lurk', u'afghanistan', u'hill']
[u'ambul', u'servic', u'month']
[u'ameobi', u'look', u'newcastl', u'start', u'contract']
[u'anderson', u'airport', u'secur', u'announc']
[u'australia', u'help', u'train', u'iraqi', u'elect', u'worker']
[u'bacon', u'legaci', u'confid', u'tasmania']
[u'barrichello', u'posit', u'titl', u'chanc']
[u'bendigo', u'rememb', u'road', u'crash', u'victim']
[u'budget', u'boost', u'newcastl']
[u'blue', u'appeal', u'fevola']
[u'boxer', u'continu', u'train', u'despit', u'threat', u'coach']
[u'britain', u'seek', u'access', u'soldier', u'hold', u'iran']
[u'budget', u'deliv', u'west', u'health', u'boost']
[u'burk', u'welcom', u'renew', u'talk', u'joey']
[u'busi', u'enlist', u'fight', u'terror']
[u'byron', u'case', u'adjourn']
[u'budget', u'deliv', u'region', u'polic', u'boost']
[u'canberra', u'landhold', u'urg', u'control', u'problemat']
[u'bomb', u'kill', u'children', u'western', u'baghdad']
[u'casino', u'talk', u'resum']
[u'chavez', u'media', u'foe', u'hold', u'poll', u'talk']
[u'chees', u'produc', u'chang', u'hand']
[u'chief', u'minist', u'quiz', u'pool', u'fenc']
[u'china', u'tackl', u'year', u'coal']
[u'clinton', u'chide', u'arafat', u'coloss', u'mistak']
[u'cold', u'snap', u'prompt', u'flood', u'blanket', u'anim']
[u'communiti', u'opposit', u'end', u'resort', u'propos']
[u'confer', u'hear', u'nuclear', u'terror', u'threat']
[u'coron', u'urg', u'driver', u'follow', u'polic', u'direct']
[u'corridor', u'builder', u'extra', u'care']
[u'costello', u'mock', u'labor', u'backflip']
[u'council', u'back', u'effluent', u'dispos', u'scheme']
[u'council', u'like', u'refus', u'fund', u'request']
[u'councillor', u'lift', u'daintre', u'develop']
[u'council', u'group', u'worri', u'health', u'merger', u'plan']
[u'council', u'upset', u'plan', u'fund', u'snub']
[u'court', u'order', u'real', u'estat', u'agent', u'repay', u'custom']
[u'court', u'deal', u'corrupt', u'charg', u'brack']
[u'croatian', u'fan', u'uefa', u'spotlight', u'racist']
[u'crow', u'deni', u'approach', u'coach', u'candid']
[u'csiro', u'develop', u'greenhous', u'anti', u'burp', u'vaccin']
[u'cycl', u'drug', u'investig', u'swift', u'anti']
[u'cycl', u'drug', u'investig', u'swift', u'pound']
[u'cyclist', u'declar', u'theyr', u'clean']
[u'daintre', u'hous', u'continu']
[u'dam', u'pose', u'threat', u'yangtz']
[u'deadlin', u'pass', u'news', u'south', u'korean', u'hostag']
[u'dead', u'hous', u'blaze', u'suspici']
[u'democrat', u'queri', u'baxter', u'punish', u'regim']
[u'owner', u'warn', u'fatal', u'diseas']
[u'downer', u'confid', u'nauru', u'detent', u'centr', u'stay']
[u'dozen', u'kill', u'battl', u'near', u'chechnya']
[u'drag', u'race', u'plan', u'green', u'light']
[u'drug', u'action', u'week', u'target', u'alcohol', u'abus']
[u'drug', u'agenc', u'test', u'outsid', u'olymp', u'venu']
[u'dulko', u'overwhelm', u'dokic']
[u'dutch', u'tri', u'hard', u'banish', u'czech', u'ghost']
[u'ead', u'wallac', u'rumour', u'crow']
[u'educ', u'stand', u'scienc', u'teacher']
[u'eel', u'lure', u'riddel', u'dragon']
[u'park', u'resid', u'express', u'prefer']
[u'energi', u'plan', u'spark', u'reef', u'fear']
[u'erect', u'problem', u'signal', u'heart', u'problem']
[u'famili', u'respons', u'overpay', u'patterson']
[u'fevola', u'rub', u'week']
[u'filipino', u'court', u'murder', u'charg']
[u'final', u'wit', u'appear', u'jam', u'hardi', u'inquiri']
[u'flagpol', u'fund', u'scheme', u'anger', u'minist']
[u'forest', u'group', u'happi', u'canberra', u'hear']
[u'senat', u'collin', u'remain', u'critic']
[u'vivendi', u'head', u'hold', u'french', u'polic']
[u'french', u'defend', u'war', u'santini', u'focus']
[u'french', u'judg', u'reject', u'armstrong', u'dope', u'denial']
[u'fruit', u'bonfir', u'mark', u'appl', u'import', u'protest']
[u'fruit', u'grower', u'protest', u'introduc', u'appl']
[u'futur', u'look', u'shaki', u'colleg']
[u'geraldton', u'consid', u'adopt', u'navi', u'ship']
[u'gold', u'coast', u'lifeguard', u'scoop', u'nation', u'award']
[u'goran', u'growl', u'wimbledon']
[u'govt', u'hop', u'continu', u'work', u'road', u'extens']
[u'govt', u'urg', u'improv', u'indigen', u'home', u'ownership']
[u'group', u'push', u'public', u'educ', u'fund']
[u'hagan', u'hope', u'john', u'stay', u'leagu']
[u'halfway', u'hous', u'close', u'shoot']
[u'health', u'report', u'card', u'show', u'australian', u'live', u'longer']
[u'hear', u'postpon', u'soldier', u'iraq', u'leash']
[u'heinrich', u'debut', u'kiwi']
[u'henri', u'doubl', u'send', u'franc']
[u'hewitt', u'lead', u'aussi', u'charg']
[u'high', u'hop', u'highway', u'budget', u'fund']
[u'high', u'school', u'student', u'suspend', u'drug']
[u'hop', u'boost', u'water', u'storag']
[u'hospit', u'pay', u'babi', u'leav', u'brain', u'damag']
[u'hous', u'construct', u'slow']
[u'husband', u'arrest', u'wife', u'daughter']
[u'independ', u'work', u'pass', u'govt', u'super', u'scheme']
[u'injur', u'packer', u'help', u'seagul', u'bond']
[u'inquiri', u'tip', u'middl', u'east', u'trade', u'boost']
[u'iran', u'prosecut', u'british', u'crew', u'report']
[u'iraqi', u'polic', u'train', u'urban', u'warfar']
[u'hear', u'teacher', u'claim']
[u'israel', u'train', u'kurdish', u'commando', u'iraq', u'report']
[u'juri']
[u'labor', u'fear', u'industri']
[u'lamb', u'price', u'reach', u'high']
[u'lamb', u'livestock', u'exchang', u'record']
[u'langer', u'welcom', u'mcgrath']
[u'lara', u'lead']
[u'escape', u'captur']
[u'liverpool', u'council', u'oasi', u'project', u'fold']
[u'accus', u'escap', u'custodi', u'front', u'court']
[u'charg', u'jail', u'drug']
[u'charg', u'tourist', u'rape', u'remand', u'custodi']
[u'charg', u'murder', u'wife', u'babi']
[u'marin', u'bodi', u'recov', u'imag', u'air']
[u'market', u'let', u'steam', u'record']
[u'matilda', u'squad', u'athen', u'announc']
[u'mcgee', u'claim', u'leader', u'jersey']
[u'melbourn', u'jetstar', u'passeng', u'hold', u'sydney']
[u'blast', u'spark', u'complaint']
[u'minist', u'open', u'tower', u'hill', u'suburb']
[u'minist', u'listen', u'local', u'view', u'health']
[u'molik', u'hold', u'hope', u'australian', u'women']
[u'american', u'reject', u'iraq', u'poll']
[u'air', u'budget', u'softwood', u'fear']
[u'tell', u'admir', u'bacon', u'human']
[u'music', u'label', u'launch', u'pocket']
[u'chang', u'seek', u'ethnic', u'affair']
[u'naurus', u'govt', u'toppl']
[u'navratilova', u'roll', u'year', u'wimbledon']
[u'sale', u'continu', u'rise']
[u'program', u'aim', u'guard', u'club']
[u'babi', u'bonus', u'rush', u'expect']
[u'invit', u'iraqi', u'nation', u'confer']
[u'water', u'treatment', u'plant', u'cosgrav', u'reservoir']
[u'deliv', u'essenti', u'fund', u'bush']
[u'govt', u'deliv', u'budget', u'deficit']
[u'erad', u'noxious', u'weed', u'outbreak']
[u'reveal', u'croc', u'safari', u'plan']
[u'nurs', u'union', u'welcom', u'polic', u'find']
[u'olymp', u'ticket', u'sell', u'snail', u'pace']
[u'woman', u'diseas', u'dead']
[u'oppn', u'want', u'train', u'return']
[u'opposit', u'expect', u'vote', u'work']
[u'orang', u'council', u'rat', u'scrutini']
[u'pakistan', u'imran', u'khan', u'divorc', u'jemima']
[u'paradorn', u'fall', u'curs', u'karlov']
[u'parmalat', u'administr', u'submit', u'rescu', u'plan']
[u'boost', u'aim', u'child', u'protect', u'worker']
[u'penrith', u'leagu', u'club', u'boss', u'deni', u'salari']
[u'pentagon', u'releas', u'interrog', u'memo']
[u'plane', u'crash', u'rais', u'question']
[u'unfurl', u'flag', u'fit', u'school']
[u'pipelin', u'look', u'promis', u'report']
[u'polic', u'charg', u'drive', u'shoot']
[u'polic', u'discov', u'drug', u'western', u'sydney']
[u'polic', u'seiz', u'school', u'drug', u'tap']
[u'poll', u'show', u'blitz', u'fool', u'elector', u'labor']
[u'probe', u'launch', u'prison', u'burn']
[u'protest', u'critic', u'nauru', u'gift']
[u'public', u'urg', u'councillor']
[u'push', u'recognit', u'rescuer']
[u'putin', u'want', u'chechen', u'rebel', u'destroy']
[u'qanta', u'base', u'staff', u'offshor']
[u'question', u'rais', u'airstrip', u'consult']
[u'quit', u'smoke', u'halv', u'danger']
[u'rain', u'boost', u'grain', u'harvest', u'forecast']
[u'ralf', u'hospit']
[u'rann', u'announc', u'murray', u'scheme']
[u'report', u'highlight', u'high', u'council', u'rat']
[u'report', u'highlight', u'prostat', u'cancer', u'risk']
[u'report', u'show', u'slide', u'milk', u'product']
[u'resid', u'question', u'rate', u'differ']
[u'rockhampton', u'rat']
[u'rooney', u'fire', u'england', u'euro', u'quarter']
[u'rooney', u'worth', u'million', u'pound', u'say', u'everton']
[u'back', u'plan', u'injur', u'defenc', u'personnel']
[u'rspca', u'reject', u'critic', u'cage', u'chicken', u'live']
[u'seafood', u'group', u'map', u'reef', u'zone', u'concern']
[u'secker', u'seek', u'extra', u'murray', u'flow']
[u'seven', u'olymp', u'live', u'hour']
[u'shepherd', u'probe', u'identifi', u'problem']
[u'skywest', u'profit', u'high']
[u'slow', u'start', u'region', u'airport', u'secur', u'boost']
[u'softwood', u'credit', u'union', u'back', u'polic', u'merger']
[u'south', u'east', u'face', u'cathol', u'priest', u'shortag']
[u'south', u'korean', u'captor', u'extend', u'deadlin']
[u'sparkl', u'venus', u'hit', u'spot']
[u'sprint', u'cycl', u'team', u'respond', u'drug', u'alleg']
[u'stoner', u'air', u'budget', u'worri']
[u'strike', u'forc', u'probe', u'high', u'school', u'blaze']
[u'strike', u'affect', u'milk', u'suppli']
[u'student', u'urg', u'consid', u'scienc', u'career']
[u'studi', u'highlight', u'remot', u'resid', u'cancer', u'risk']
[u'submiss', u'continu', u'darwin', u'nativ', u'titl', u'case']
[u'sugar', u'grant', u'spark', u'ethanol']
[u'summit', u'focus', u'hous', u'afford']
[u'support', u'govt', u'ethanol', u'drive']
[u'teacher', u'sack', u'anglican', u'church', u'inquiri']
[u'tenanc', u'servic', u'dark', u'time', u'offic']
[u'chang', u'black', u'play', u'argentina']
[u'terror', u'suspect', u'ask', u'higher', u'bail', u'sureti']
[u'tibooburra', u'remot', u'polic', u'spotlight']
[u'tongan', u'peacekeep', u'arriv', u'kuwait']
[u'townsvill', u'cobalt', u'end', u'batteri']
[u'turnbul', u'accus', u'electron', u'stalk']
[u'campus', u'moot', u'break', u'hill']
[u'urg', u'investig', u'alarm', u'resurg']
[u'urgent', u'action', u'need', u'control', u'nuclear']
[u'market', u'wari', u'ahead', u'rate', u'decis']
[u'offici', u'doubt', u'iraqi', u'offic', u'qaeda']
[u'vaa', u'back', u'mcgrath', u'rediscov', u'form']
[u'varieti', u'factor', u'take', u'toll', u'abalon']
[u'veteran', u'smith', u'sign', u'raider']
[u'veteran', u'streaker', u'guilti', u'trespass']
[u'virgin', u'atlant', u'australia', u'decemb']
[u'visitor', u'centr', u'back', u'tourist', u'villag', u'push']
[u'govt', u'promis', u'relax', u'poker', u'machin']
[u'labor', u'preselect']
[u'wallabi', u'chanc', u'end', u'lose', u'say']
[u'wallabi', u'chanc', u'end', u'lose', u'woodward']
[u'warn', u'test']
[u'watson', u'run', u'deputi', u'polic']
[u'long', u'say', u'germani', u'kahn']
[u'white', u'whale', u'spot']
[u'wiki', u'ban', u'week']
[u'woman', u'die', u'highway', u'hors', u'crash']
[u'women', u'urg', u'midwif', u'birth']
[u'zimbabw', u'newspap', u'challeng', u'closur', u'court']
[u'journalist', u'lose', u'court', u'case']
[u'accus', u'terrorist', u'appear', u'sydney', u'court']
[u'alleg', u'killer', u'australian', u'cameraman', u'arrest']
[u'member', u'urg', u'report', u'branch', u'stack']
[u'amwu', u'deleg', u'lobbi']
[u'anger', u'unrest', u'south', u'korea', u'execut']
[u'anomali', u'allow', u'priest', u'accus', u'abus', u'stay']
[u'seek', u'assur', u'cycl', u'team', u'select']
[u'apart', u'develop', u'oppos', u'sewerag', u'cost']
[u'argentina', u'admit', u'problem', u'ahead', u'black']
[u'soldier', u'gentleman']
[u'babi', u'bonus', u'fuel', u'indigen', u'violenc', u'atsic']
[u'alert', u'return', u'campaign']
[u'beat', u'safin', u'say', u'hat', u'wimbledon']
[u'beatti', u'accus', u'pressur', u'coast', u'council']
[u'beatti', u'concern', u'ahead', u'coag']
[u'bendigo', u'respect', u'famili']
[u'dylan', u'honour', u'scottish', u'univers']
[u'bolt', u'bridg', u'reopen', u'earlier', u'incid']
[u'british', u'sailor', u'releas', u'soon', u'iranian']
[u'brown', u'urg', u'condemn', u'interrog', u'techniqu']
[u'budget', u'deliv', u'south', u'east', u'health', u'boost']
[u'budget', u'deliv', u'tamworth', u'benefit']
[u'budget', u'get', u'mix', u'review', u'illawarra']
[u'budget', u'provid', u'health', u'boost']
[u'burk', u'hurrah']
[u'burswood', u'director', u'recommend', u'offer']
[u'bush', u'condemn', u'latest', u'behead']
[u'bushmast', u'readi', u'product']
[u'caffein', u'free', u'coffe', u'plant', u'discov']
[u'cagey', u'busi', u'frustrat', u'wage', u'rise']
[u'call', u'patient', u'mistreat', u'investig']
[u'cancer', u'wors', u'remot', u'suffer', u'report']
[u'carr', u'announc', u'extra', u'fund', u'cancer', u'patient']
[u'celebr', u'croc', u'readi', u'home']
[u'child', u'die', u'baghdad', u'blast']
[u'citi', u'game', u'postpon']
[u'coal', u'road', u'product', u'boost']
[u'collin', u'critic', u'condit', u'crash']
[u'convict', u'belgian', u'child', u'killer', u'appeal']
[u'coron', u'clear', u'carer', u'home', u'death']
[u'council', u'back', u'shop', u'plan']
[u'councillor', u'air', u'high', u'rise', u'concern']
[u'council', u'offer', u'nimmitabel', u'water', u'suppli', u'assur']
[u'court', u'hear', u'warrawong', u'shoot', u'detail']
[u'court', u'jail', u'explos']
[u'cyclist', u'french', u'claim', u'innoc']
[u'appeal', u'withdraw', u'threaten', u'speci']
[u'dam', u'threaten', u'world', u'largest', u'river', u'report']
[u'danger', u'drive', u'charg', u'dismiss', u'doubl']
[u'debat', u'continu', u'commemor', u'wall']
[u'boer', u'return', u'troubl', u'dutch']
[u'delay', u'ballarat', u'draft', u'budget']
[u'dorset', u'council', u'consid', u'rate', u'rise']
[u'doubt', u'cast', u'ethanol', u'alloc']
[u'doubt', u'cast', u'region', u'develop', u'board', u'futur']
[u'doubt', u'rais', u'hunter', u'budget', u'fund']
[u'dozen', u'miss', u'strong', u'wind', u'capsiz', u'chines']
[u'draw', u'send', u'sweden', u'denmark']
[u'drought', u'grip']
[u'eal', u'wouldnt', u'risk', u'john', u'sign']
[u'ecuador', u'appeal', u'galapago', u'cucumb', u'rule']
[u'educ', u'fund', u'barwon', u'elector']
[u'england', u'hop', u'rooney', u'high']
[u'environment', u'group', u'hit', u'govt', u'accus']
[u'fahrenheit', u'rat', u'appeal', u'fail']
[u'famili', u'fear', u'miss']
[u'father', u'upset', u'driver', u'sentenc', u'son', u'death']
[u'ferreira', u'set', u'mark', u'slam']
[u'judg', u'probe', u'corrupt', u'claim']
[u'senat', u'fli', u'adelaid', u'specialis']
[u'soldier', u'fin', u'weapon', u'theft']
[u'forum', u'urg', u'discuss', u'indigen', u'servic']
[u'fund', u'snub', u'blow', u'ethanol', u'plant', u'project']
[u'fund', u'help', u'boost', u'airport', u'busi']
[u'gallop', u'mission', u'john']
[u'plan', u'like', u'boost', u'job']
[u'gate', u'offer', u'better', u'river', u'outcom']
[u'gaudoin', u'miss', u'athen']
[u'marriag', u'halt', u'senat', u'inquiri']
[u'geraldton', u'farewel', u'olymp', u'boxer']
[u'germani', u'reli', u'ballack', u'pride', u'decid']
[u'giteau', u'return', u'wallabi', u'start', u'line']
[u'gold', u'work', u'push', u'ahead']
[u'govt', u'accus', u'fail', u'tackl', u'busi']
[u'govt', u'accus', u'suspend', u'famili', u'overpay']
[u'govt', u'deni', u'rspca', u'blackmail', u'claim']
[u'govt', u'seiz', u'labor', u'backflip', u'fallout']
[u'govt', u'urg', u'indigen', u'health']
[u'govt', u'urg', u'remov', u'children', u'detent']
[u'group', u'aim', u'combat', u'drug', u'addict']
[u'henman', u'surviv', u'round', u'scare']
[u'hobart', u'elect', u'surgeri', u'restrict', u'routin']
[u'hobart', u'prepar', u'bacon', u'funer']
[u'holling', u'sell', u'telegraph', u'group', u'billion']
[u'homeless', u'survey', u'show', u'rent', u'home', u'shortag']
[u'home', u'ownership', u'probe', u'urg', u'review']
[u'hous', u'blaze', u'spark', u'smoke', u'alarm', u'remind']
[u'howard', u'host', u'anti', u'terror', u'summit', u'busi']
[u'husband', u'arrest', u'wife', u'fridg']
[u'indigen', u'snapshot', u'show', u'mix', u'news']
[u'inquiri', u'refer', u'ward', u'abus', u'case', u'polic']
[u'irrig', u'lose', u'water', u'sale', u'right']
[u'italian', u'point', u'accus', u'finger', u'swede', u'dane']
[u'itali', u'crash', u'despit', u'beat', u'bulgaria']
[u'johnson', u'surviv', u'horror', u'crash']
[u'junction', u'traffic', u'chang', u'moot']
[u'alli', u'extend', u'iraq', u'troop', u'deploy']
[u'kite', u'riddel', u'depart', u'dragon', u'raider', u'secur', u'smith']
[u'labor', u'rule', u'support', u'disabl', u'pension']
[u'labour', u'motion', u'remov', u'sharon', u'safeti']
[u'langer', u'injuri', u'cloud']
[u'latham', u'challeng', u'howard', u'debat']
[u'lawyer', u'abandon', u'case', u'releas', u'detain', u'children']
[u'doblo', u'futur', u'clearer', u'tomorrow']
[u'lib', u'mine', u'pastor', u'region', u'candid']
[u'long', u'appeal', u'childer', u'hostel', u'blaze']
[u'long', u'jail', u'term', u'seek', u'paedophil']
[u'malthous', u'scath', u'ayr', u'departur']
[u'arrest', u'alleg', u'fraud']
[u'front', u'court', u'murder', u'wife', u'daughter']
[u'court', u'shoot', u'death']
[u'drug', u'charg', u'plead', u'guilti']
[u'mcgee', u'hold', u'franc']
[u'mcgrath', u'readi', u'lankan', u'test']
[u'meatwork', u'plan', u'get', u'chop']
[u'milit', u'decapit', u'south', u'korean', u'hostag', u'iraq']
[u'miner', u'get', u'coal', u'explor', u'licenc']
[u'mix', u'respons', u'labor', u'drug', u'price', u'backflip']
[u'molotov', u'cocktail', u'attack', u'motiv', u'unknown']
[u'area', u'drought', u'status', u'lift']
[u'shepherd', u'woe', u'emerg']
[u'motorcyclist', u'set', u'iron', u'butt', u'trek', u'record']
[u'moy', u'blast', u'eriksson', u'rooney', u'remark']
[u'warn', u'quiet', u'parliament']
[u'unhappi', u'budget', u'highway', u'fund']
[u'nation', u'licens', u'recommend']
[u'nauru', u'govern', u'hop', u'push', u'budget']
[u'coach', u'put', u'focus', u'young', u'crow']
[u'jersey', u'governor', u'anger', u'tyson', u'box']
[u'law', u'target', u'prison', u'mobil', u'phone']
[u'permit', u'resolv', u'hotel', u'redevelop']
[u'news', u'corp', u'face', u'indic', u'exit']
[u'bail', u'abduct', u'accus']
[u'budget', u'criticis', u'transport', u'infrastructur']
[u'govt', u'reliant', u'tax', u'oppn']
[u'teacher', u'cancel', u'stop', u'work', u'meet']
[u'outlin', u'croc', u'hunt', u'plan']
[u'olsen', u'twin', u'treat', u'eat', u'disord']
[u'opposit', u'claim', u'million', u'wast', u'tank']
[u'owen', u'confid', u'end', u'euro', u'goal', u'drought']
[u'palestinian', u'milit', u'kill', u'gaza', u'strip', u'raid']
[u'pele', u'hail', u'wonder', u'rooney']
[u'pilot', u'inquest', u'urg', u'train', u'boost']
[u'pire', u'propos', u'radic', u'strategi', u'chang']
[u'special', u'power', u'accept', u'aust']
[u'polic', u'give', u'increas', u'anti', u'terror', u'power']
[u'polic', u'probe', u'fatal', u'crash']
[u'polic', u'strike', u'forc', u'probe', u'blacktown', u'death']
[u'privat', u'hire', u'owner', u'doubt', u'industri', u'shake']
[u'health', u'urg', u'negoti', u'anaesthetist']
[u'racv', u'urg', u'pressur', u'calder', u'duplic']
[u'ralf', u'unlik', u'french']
[u'ralli', u'oppos', u'englandhunt', u'health', u'merger']
[u'ransom', u'hous', u'director', u'deni', u'knowledg', u'loan']
[u'rate', u'rise', u'beaudesert', u'shire']
[u'rat', u'slight', u'gladston']
[u'rebuild', u'england', u'remain', u'strong', u'woodward']
[u'region', u'share', u'budget', u'fund']
[u'rehhagel', u'tell', u'greek', u'sleep', u'easi']
[u'riddoch', u'highway', u'includ', u'auslink', u'submiss']
[u'ronaldo', u'find', u'jibe', u'hard', u'swallow']
[u'ronaldo', u'keen', u'england', u'scrambl']
[u'rudd', u'step', u'intellig', u'cover', u'claim']
[u'russia', u'accus', u'chechen', u'human', u'right', u'abus']
[u'saddam', u'prison', u'letter', u'say', u'moral', u'high', u'newsweek']
[u'sadr', u'refus', u'attend', u'iraqi', u'nation', u'confer']
[u'african', u'hotel', u'chain', u'settl', u'toilet', u'phobia', u'lawsuit']
[u'school', u'revolt', u'flag', u'plan']
[u'scud', u'track']
[u'scud', u'track', u'wimbledon']
[u'search', u'continu', u'bodi', u'murder', u'victim']
[u'search', u'miss', u'tourist', u'call']
[u'second', u'muslim', u'soccer', u'player', u'tell', u'remov', u'hijab']
[u'senat', u'hitch', u'face', u'free', u'trade']
[u'senat', u'support', u'legisl', u'unclear']
[u'senat', u'clash', u'agenc', u'bali', u'warn']
[u'serena', u'fire', u'wimbledon', u'campaign']
[u'showground', u'moot', u'multi', u'purpos', u'centr']
[u'korea', u'deploy', u'troop', u'despit', u'behead']
[u'slay', u'hostag', u'famili', u'accus', u'govt', u'betray']
[u'slay', u'hostag', u'parent', u'accus', u'govt', u'betray']
[u'small', u'busi', u'benefit', u'competit', u'law']
[u'small', u'surplus', u'bellingen', u'budget']
[u'soldier', u'warn', u'stay', u'polit']
[u'solomon', u'island', u'rich', u'marin', u'life', u'scientist']
[u'soup', u'kitchen', u'plan', u'park']
[u'space', u'station', u'crew', u'readi', u'repair', u'mission']
[u'studi', u'consid', u'energi', u'option']
[u'support', u'budget', u'irrig', u'initi']
[u'support', u'troop', u'iraq', u'rise', u'poll']
[u'survey', u'show', u'dairi', u'farmer', u'road', u'recoveri']
[u'talk', u'begin', u'north', u'korea', u'nuclear', u'crisi']
[u'land', u'go', u'song']
[u'teacher', u'pressur', u'drop', u'action']
[u'telstra', u'lead', u'market', u'forward']
[u'detain', u'ecstasi', u'hide', u'wine', u'bottl']
[u'lift', u'watson', u'media']
[u'tourist', u'miss', u'fall', u'cliff']
[u'townsvill', u'prepar', u'chamber', u'music', u'festiv']
[u'servicemen', u'releas', u'tonight']
[u'union', u'seek', u'stronger', u'mine', u'voic']
[u'strike', u'kill', u'fallujah']
[u'approv', u'dog', u'guantanamo', u'prison']
[u'correct', u'global', u'terror', u'figur']
[u'hand', u'crime', u'proceed', u'payment']
[u'record', u'industri', u'sue', u'hundr', u'piraci']
[u'senat', u'hike', u'broadcast', u'fin', u'tighten', u'ownership']
[u'vaughan', u'look', u'seri']
[u'govt', u'expect', u'increas', u'water', u'price']
[u'govt', u'secur', u'murray', u'river', u'deal', u'farmer']
[u'victorian', u'soccer', u'refere', u'suspend']
[u'water', u'bill', u'rise']
[u'wallac', u'throw', u'hand', u'crow']
[u'wall', u'readi', u'rate', u'rise']
[u'nat', u'alarm', u'polic', u'hold', u'cell']
[u'water', u'pressur', u'rise', u'ahead', u'summit']
[u'water', u'price', u'rise', u'loom']
[u'wimbledon', u'dementieva', u'kuznetsova']
[u'veteran', u'smout', u'die']
[u'aborigin', u'elder', u'score', u'hreoc', u'appoint']
[u'launch', u'water', u'reform']
[u'toughen', u'drug', u'law']
[u'advoc', u'seek', u'wider', u'mandatori', u'child', u'abus']
[u'afl', u'flaw', u'genius', u'forc', u'retir']
[u'help', u'combat', u'welfar', u'fraud']
[u'treati', u'exempt', u'polic', u'rule']
[u'allenbi', u'readi', u'french', u'test']
[u'anger', u'sicki', u'caus', u'energi', u'crisi']
[u'school', u'solar']
[u'arroyo', u'narrowli', u'win', u'presid', u'elect']
[u'asic', u'warn', u'earli', u'releas', u'super', u'scheme']
[u'attack', u'iraqi', u'citi', u'dead']
[u'auspin', u'worker', u'industri', u'unrest', u'hold']
[u'australia', u'open', u'ash', u'tour']
[u'aust', u'viet', u'hold', u'human', u'right', u'talk']
[u'aviat', u'industri', u'equip', u'deal', u'terror']
[u'backbench', u'prepar', u'hand', u'abus', u'evid']
[u'bail', u'grant', u'opera', u'hous', u'slogan']
[u'mull', u'arab', u'channel', u'rival', u'jazeera']
[u'save', u'predict', u'water', u'merger', u'plan']
[u'fuel', u'capit', u'grant', u'decis']
[u'blue', u'ribbon', u'driver', u'stop', u'work', u'safeti']
[u'bogut', u'make', u'boomer', u'debut']
[u'bomb', u'kill', u'istanbul']
[u'boost', u'local', u'medic', u'facil']
[u'brambl', u'restack', u'pallet', u'busi']
[u'bushfir', u'prevent', u'imposs']
[u'kangaroo', u'koala', u'kill']
[u'nativ', u'titl', u'claim', u'detail', u'releas']
[u'polic', u'station', u'privat', u'invest']
[u'campaign', u'build', u'disabl', u'access']
[u'carey', u'call', u'quit']
[u'carey', u'retir']
[u'charg', u'lay', u'theft', u'email', u'address']
[u'chelsea', u'face', u'unit', u'open']
[u'child', u'bonus', u'spend', u'famili', u'discret', u'govt']
[u'childer', u'arsonist', u'lose', u'appeal']
[u'child', u'restraint', u'knowledg', u'prove']
[u'china', u'biggest', u'jailer', u'cyber', u'dissid', u'report']
[u'china', u'deni', u'arrest', u'cathol', u'bishop']
[u'club', u'fear', u'poki', u'rise']
[u'collin', u'stabl', u'crash', u'injuri', u'surgeri']
[u'comment', u'land', u'woodward', u'water']
[u'comment', u'seek', u'south', u'coast', u'green', u'strategi']
[u'committe', u'probe', u'closur']
[u'commonwealth', u'appoint']
[u'communiti', u'group', u'share', u'bank', u'profit']
[u'communiti', u'group', u'share', u'state', u'fund']
[u'communiti', u'urg', u'aboard', u'rail', u'campaign']
[u'condom', u'greet', u'tourist', u'thailand']
[u'conlon', u'quit', u'labor', u'leav', u'bolkus', u'decis']
[u'fear', u'self', u'thwart']
[u'coron', u'highlight', u'need', u'dementia', u'awar']
[u'councillor', u'fear', u'impact']
[u'council', u'cairn', u'plan', u'fight', u'public']
[u'council', u'upset', u'court', u'compo', u'rule']
[u'court', u'rule', u'dump', u'land', u'acquisit', u'illeg']
[u'curtin', u'univers', u'freez', u'hec', u'fee']
[u'cabl', u'affect', u'tweed', u'phone']
[u'dead', u'fish', u'dont', u'pose', u'health', u'threat', u'fisheri']
[u'desper', u'plea', u'blood', u'donat']
[u'detent', u'centr', u'stay', u'nauru', u'govt']
[u'develop', u'happi', u'council', u'plan', u'resolv']
[u'disput', u'home', u'owner', u'grant', u'continu']
[u'test', u'debunk', u'monster', u'myth']
[u'doctor', u'award', u'wife', u'treatment', u'bungl']
[u'downer', u'label', u'labor', u'anti', u'american']
[u'embryon', u'stem', u'cell', u'creat', u'australian']
[u'eriksson', u'demand', u'better', u'defend']
[u'everton', u'warn', u'club', u'rooney']
[u'export', u'grant', u'south', u'east', u'firm']
[u'fahrenheit', u'turn', u'offic', u'heat']
[u'failur', u'condemn', u'prison', u'abus', u'risk', u'live', u'kenni']
[u'govt', u'urg', u'nativ', u'titl', u'claim']
[u'fevola', u'lose', u'appeal']
[u'satisfi', u'handl', u'schumach', u'crash']
[u'fifth', u'polic', u'station', u'attack', u'mosul']
[u'fight', u'break', u'iraqi', u'citi']
[u'extend', u'mine', u'life']
[u'kill', u'indian', u'bomb', u'blast']
[u'flintoff', u'loss', u'hurt', u'england', u'seri']
[u'footbal', u'accus', u'school', u'fast', u'food', u'promot']
[u'foreign', u'terrorist', u'kill', u'fallujah', u'hous', u'strike']
[u'account', u'face', u'court']
[u'arrest']
[u'forum', u'focus', u'indigen', u'tourism']
[u'fossil', u'weight', u'dinosaur', u'extinct', u'theori']
[u'freight', u'council', u'welcom', u'port', u'review']
[u'legisl', u'senat']
[u'germani', u'coach', u'voeller', u'resign']
[u'girl', u'club', u'blame', u'problem', u'health']
[u'govern', u'appeal', u'nuclear', u'dump', u'rule']
[u'govt', u'accus', u'rush', u'upper', u'hous', u'appoint']
[u'govt', u'announc', u'famili', u'court', u'chief', u'justic']
[u'govt', u'introduc', u'second', u'marriag']
[u'govt', u'move', u'reduc', u'dengu', u'fever', u'threat']
[u'govt', u'reject', u'becton', u'develop']
[u'govt', u'appeal', u'court', u'nuclear', u'dump', u'plan']
[u'govt', u'remov', u'fisher', u'compo']
[u'handov', u'detail', u'delay', u'british', u'troop', u'releas']
[u'hardi', u'plan', u'wine', u'product', u'chang']
[u'health', u'merger', u'plan', u'unclear']
[u'hibern', u'lemur', u'start', u'stir']
[u'high', u'bosnian', u'bank', u'euro', u'offer']
[u'hockeyroo', u'prove', u'good', u'japan']
[u'hospit', u'chart', u'electron', u'darwin']
[u'hotel', u'sell', u'liquor', u'outlet', u'wooli']
[u'howard', u'defend', u'armi', u'public', u'pic']
[u'hunt', u'prison', u'farm', u'escap']
[u'iluka', u'green', u'light', u'miner', u'sand', u'project']
[u'immigr', u'dept', u'prais', u'asylum', u'seeker', u'work']
[u'indic', u'decis', u'spark', u'news', u'corp', u'sell']
[u'indigen', u'welfar', u'relianc', u'fall']
[u'ingram', u'welcom', u'lake', u'mokoan', u'decis']
[u'inquiri', u'ask', u'atsic', u'hold']
[u'iran', u'resum', u'talk', u'releas', u'detaine']
[u'iraqi', u'milit', u'use', u'poison', u'allawi']
[u'irish', u'junior', u'wallabi']
[u'irrig', u'question', u'lack', u'subsid', u'solut']
[u'john', u'keep', u'everybodi', u'guess']
[u'jone', u'confid', u'paul']
[u'kemp', u'outlin', u'cycl', u'drug', u'inquiri', u'detail']
[u'labor', u'attack', u'govt', u'anti', u'domest', u'violenc', u'campaign']
[u'langer', u'hit', u'tour', u'match']
[u'late', u'ralli', u'boost', u'market']
[u'leader', u'gather', u'bacon', u'funer']
[u'light', u'train', u'upgrad']
[u'litchfield', u'pool', u'promis', u'drain']
[u'local', u'govt', u'group', u'fight']
[u'london', u'enlist', u'sydney', u'firm', u'game']
[u'long', u'servic', u'spur', u'talli']
[u'long', u'summer', u'holiday', u'suspend', u'british']
[u'lord', u'mayor', u'push', u'ahead', u'secur', u'camera', u'trial']
[u'custodi', u'face', u'fraud', u'charg']
[u'jail', u'crash', u'leav', u'friend', u'quadripleg']
[u'jail', u'shoot']
[u'bond', u'wooli', u'cyanid', u'threat']
[u'mayor', u'upset', u'oppn', u'water', u'stanc']
[u'mayor', u'upset', u'lake', u'mokoan', u'plan']
[u'air', u'fear', u'tafe', u'cours']
[u'meet', u'consid', u'doblo', u'futur']
[u'guilti', u'barker', u'murder']
[u'million', u'zimbabwean', u'need', u'food', u'report']
[u'minist', u'defend', u'backburn']
[u'minist', u'outlin', u'detail', u'cyclist', u'drug', u'inquiri']
[u'miss', u'american', u'tourist']
[u'melt', u'metal', u'explod', u'burn']
[u'montgomeri', u'target', u'lifetim']
[u'mosley', u'determin', u'push', u'chang']
[u'nat', u'attack', u'research', u'station', u'plan']
[u'news', u'corp', u'futur', u'indic', u'question']
[u'news', u'corp', u'slump', u'market', u'follow']
[u'sign', u'point', u'driver']
[u'aussi', u'child', u'live', u'poverti', u'church']
[u'extra', u'fund', u'offer', u'rfds']
[u'north', u'fatal', u'crash', u'investig']
[u'budget', u'pose', u'environ', u'concern']
[u'polic', u'push', u'right', u'retir', u'super']
[u'nurs', u'group', u'offer', u'matern', u'servic', u'plan', u'support']
[u'nurs', u'union', u'push', u'cours', u'stay', u'open']
[u'oppn', u'air', u'tafe', u'worri']
[u'orford', u'stay', u'storm']
[u'pagan', u'hail', u'greatest']
[u'parasit', u'fish', u'kill']
[u'phoeb', u'freez', u'time', u'capsul']
[u'exploit', u'marriag', u'issu', u'right', u'group']
[u'visit', u'northern', u'tasmania']
[u'polic', u'arrest', u'machet', u'incid']
[u'polic', u'warn', u'tailgat', u'danger']
[u'port', u'hedland', u'mayor', u'resign']
[u'public', u'servant', u'reject', u'politicis', u'claim']
[u'push', u'qanta', u'crew']
[u'qanta', u'refus', u'budg', u'london', u'base', u'decis']
[u'regener', u'friend', u'speci', u'reef', u'health']
[u'relat', u'hous', u'deed', u'bail', u'khazal']
[u'relief', u'britain', u'welcom', u'releas', u'captur']
[u'report', u'question', u'benefit']
[u'research', u'station', u'shake']
[u'robert', u'seek', u'greater', u'hous', u'afford']
[u'safin', u'join', u'chorus', u'disapprov', u'olymp']
[u'jail', u'life', u'kill', u'famili', u'friend']
[u'saudi', u'arabia', u'offer', u'qaeda', u'milit', u'amnesti']
[u'school', u'drop', u'rat', u'reinforc', u'poverti', u'cycl']
[u'schooli', u'organis']
[u'school', u'packag', u'infring', u'state']
[u'second', u'tragedi', u'railton']
[u'senat', u'pass']
[u'kill', u'bomb', u'explod', u'mosul']
[u'traffic', u'law', u'committe']
[u'singleton', u'fourth', u'channel']
[u'smart', u'medicar', u'card']
[u'smart', u'medicar', u'card', u'plan', u'rais', u'privaci', u'issu']
[u'smuggl', u'dinosaur', u'egg', u'withdraw', u'auction']
[u'snap', u'tram', u'strike', u'strand', u'commut']
[u'south', u'african', u'aid', u'activist', u'protest', u'militari']
[u'south', u'korea', u'probe', u'behead']
[u'staff', u'shortag', u'problem', u'persist', u'mersey', u'hospit']
[u'hope', u'alma', u'pool']
[u'support', u'show', u'prescrib', u'burn']
[u'support', u'seek', u'sugar', u'mill', u'buyout', u'plan']
[u'survey', u'aim', u'boost', u'indigen', u'train']
[u'swiss', u'admit', u'frei', u'confess', u'spat']
[u'tasmanian', u'await', u'bacon', u'corteg']
[u'tasmanian', u'farewel', u'bacon']
[u'level', u'worri', u'busi', u'survey']
[u'network', u'air', u'record', u'profit', u'hop']
[u'terror', u'bail', u'chang', u'didnt', u'ruddock']
[u'thousand', u'tribut', u'bacon']
[u'kill', u'gaza', u'strip', u'clash']
[u'nepali', u'children', u'kill', u'play', u'bomb']
[u'tourism', u'group', u'welcom', u'campaign']
[u'tram', u'driver', u'return', u'work']
[u'realiti', u'capitalis', u'india', u'pakistan']
[u'showcas', u'limeston', u'coast']
[u'injur', u'turkish', u'bomb', u'blast']
[u'naval', u'personnel', u'releas', u'iran']
[u'union', u'highlight', u'apprentic', u'woe']
[u'union', u'tour', u'focus', u'workplac', u'agreement']
[u'consult', u'break', u'hill', u'campus', u'plan']
[u'unpaid', u'rat', u'forc', u'council', u'consid', u'properti']
[u'drop', u'exempt']
[u'helicopt', u'down', u'clash', u'erupt', u'near', u'fallujah']
[u'launch', u'strike', u'baquba']
[u'launch', u'strike', u'baquba', u'amid', u'heavi']
[u'north', u'korea', u'meet', u'see', u'chanc', u'discuss', u'offer']
[u'north', u'korea', u'negoti', u'begin', u'privat', u'talk']
[u'offer', u'north', u'korea', u'incent', u'scrap', u'nuclear']
[u'satellit', u'launch', u'free', u'mercuri', u'mission']
[u'senat', u'pass', u'billion', u'defenc']
[u'voic', u'congo', u'unrest', u'concern']
[u'goldfield', u'nomin', u'heritag', u'list']
[u'govt', u'hit', u'hous', u'afford', u'claim']
[u'voeller', u'blame', u'striker', u'euro', u'exit']
[u'water', u'author', u'unsur', u'levi', u'impact']
[u'water', u'polici', u'pander', u'green', u'group', u'nation']
[u'eas', u'board', u'boredom']
[u'whale', u'song', u'provid', u'clue', u'suffer']
[u'xstrata', u'talk', u'expans', u'benefit']
[u'arrest', u'theft']
[u'african', u'accid']
[u'abbott', u'dismiss', u'health', u'fund', u'overhaul', u'call']
[u'improv', u'radio', u'servic']
[u'depart', u'merger', u'cost', u'job']
[u'agreement', u'seek', u'nation', u'water', u'initi']
[u'aid', u'fight', u'window', u'close', u'expert']
[u'allawi', u'vow', u'crush', u'milit', u'death', u'toll', u'rise']
[u'ord', u'finish', u'week']
[u'angelina', u'joli', u'adopt', u'agent', u'admit', u'fraud']
[u'anti', u'amalgam', u'candid', u'join', u'fmit']
[u'interact', u'market', u'servic']
[u'aristocrat', u'lose', u'chairman', u'court', u'post']
[u'attack', u'iraq', u'unexpect', u'powel']
[u'author', u'pleas', u'duck', u'hunter']
[u'babysitt', u'jail', u'month']
[u'lade', u'contact', u'iraq', u'report']
[u'blast', u'turn', u'drink', u'machin', u'chemic', u'weapon']
[u'blue', u'scope', u'industri', u'end']
[u'boati', u'navig', u'need']
[u'bomber', u'close', u'sheedi', u'deal']
[u'boomer', u'beat', u'second', u'string', u'croatia']
[u'bowi', u'halt', u'pragu', u'concert']
[u'brack', u'push', u'water', u'conserv', u'polici']
[u'britain', u'label', u'militari', u'trial', u'unaccept']
[u'british', u'press', u'slam', u'ref', u'disgrac']
[u'break', u'hill', u'reflect', u'wast', u'dump', u'rule']
[u'build', u'industri', u'face', u'tasmanian', u'labor', u'shortag']
[u'burk', u'farewel', u'waratah', u'faith']
[u'bushfir', u'awar', u'releas']
[u'bush', u'question', u'leak']
[u'bush', u'seek', u'nato', u'support', u'iraq']
[u'indigen', u'lump', u'payment']
[u'probe', u'prison', u'abus', u'claim']
[u'go', u'blood', u'donat']
[u'camberwel', u'rail', u'station', u'protect']
[u'campaign', u'push', u'meat']
[u'campaign', u'focus', u'homeless']
[u'celesti', u'link', u'star', u'indigen', u'book']
[u'child', u'bonus', u'feed', u'poker', u'machin']
[u'china', u'olymp', u'midst', u'graft', u'scandal']
[u'china', u'europ', u'second', u'satellit', u'launch']
[u'cigarett', u'packet', u'display', u'graphic', u'health']
[u'clapton', u'guitar', u'fetch', u'record', u'price']
[u'coag', u'organis', u'resembl', u'chook', u'yard']
[u'coast', u'budget', u'includ', u'rate', u'rise']
[u'commonwealth', u'bank', u'staff', u'strike']
[u'communic', u'astronaut', u'spacewalk']
[u'compani', u'keen', u'establish', u'trade', u'link']
[u'congo', u'rwanda', u'presid', u'meet']
[u'consum', u'warn', u'internet', u'shop', u'danger']
[u'controversi', u'venus', u'tiebreak']
[u'council', u'back', u'ward', u'reduct']
[u'council', u'hop', u'discount', u'ethanol', u'blend', u'fuel']
[u'council', u'seek', u'lake', u'mokoan', u'wetland', u'fund']
[u'court', u'begin', u'hear', u'maleni', u'supermarket', u'plan']
[u'play', u'role', u'region']
[u'cyclist', u'millar', u'releas', u'night', u'cell']
[u'debt', u'reduct', u'spark', u'sugar', u'fear']
[u'deniliquin', u'age', u'care', u'centr', u'open']
[u'dept', u'restructur', u'spark', u'industri', u'unrest']
[u'doctor', u'group', u'air', u'region', u'cancer', u'concern']
[u'domest', u'violenc', u'law', u'strengthen']
[u'driver', u'warn', u'polic', u'crackdown']
[u'drug', u'smuggler', u'link', u'mexican', u'editor', u'murder']
[u'dump', u'rule', u'undermin', u'nuclear', u'reactor', u'plan']
[u'eagl', u'lift', u'howel', u'stroke', u'lead']
[u'eagl', u'rap', u'cash', u'report']
[u'mail', u'war', u'heat', u'hotmail', u'expand', u'free']
[u'firefight', u'sentenc']
[u'factori', u'agre', u'safeti', u'audit', u'demand']
[u'factori', u'halt', u'employe', u'demand', u'safeti', u'audit']
[u'famili', u'want', u'chemic', u'spill', u'compo']
[u'faster', u'internet', u'download', u'polic', u'doctor']
[u'fear', u'air', u'vineyard', u'invest', u'scheme']
[u'fear', u'babi', u'bonus', u'alcohol']
[u'fear', u'hold', u'posit', u'research', u'shake']
[u'govt', u'fund', u'shortfal', u'blame', u'rate']
[u'firefight', u'contain', u'mosqu', u'blaze']
[u'charg', u'purana', u'task', u'forc', u'raid']
[u'face', u'drug', u'charg', u'polic', u'raid']
[u'flight', u'crew', u'error', u'fatal', u'plane', u'crash', u'report']
[u'flood', u'boost', u'workload']
[u'franc', u'homework', u'greec', u'match']
[u'funer', u'hold', u'horror', u'smash']
[u'futur', u'tipperari', u'station', u'anim', u'unclear']
[u'futur', u'unclear', u'leak']
[u'home', u'english', u'portug', u'take', u'street']
[u'govern', u'ignor', u'hous', u'crisi', u'acoss']
[u'govt', u'consid', u'last', u'tribut', u'bacon']
[u'govt', u'donat', u'paul', u'restor']
[u'govt', u'plan', u'allow', u'male', u'teach', u'scholarship']
[u'govt', u'releas', u'mitsubishi', u'rescu', u'packag']
[u'govt', u'interest', u'wast', u'dump', u'site', u'park', u'plan']
[u'grandpar', u'increas', u'rais', u'grandchildren']
[u'grazier', u'meet', u'beef', u'industri', u'concern']
[u'group', u'unhappi', u'memori', u'fund', u'snub']
[u'guantanamo', u'inmat', u'trial', u'unfair', u'say', u'lawyer']
[u'hewitt', u'set', u'meet', u'bear', u'goran']
[u'highway', u'chemic', u'spill', u'investig']
[u'hinterland', u'resid', u'ask', u'green', u'scheme']
[u'hundr', u'wwii', u'chemic', u'bomb', u'china']
[u'indonesian', u'economi', u'perform', u'region']
[u'indonesian', u'rebel', u'charg', u'teacher', u'death']
[u'inner', u'sydney']
[u'high', u'balloon', u'titl']
[u'iran', u'accus', u'resum', u'uranium', u'program']
[u'iran', u'statement', u'prompt', u'nuke', u'fear']
[u'iran', u'warn', u'border', u'incurs']
[u'iraqi', u'handov', u'ahead', u'bush']
[u'iraq', u'unrest', u'worri', u'market']
[u'istanbul', u'bomb', u'toll', u'rise']
[u'john', u'back', u'huge', u'risk']
[u'john', u'stay', u'leagu']
[u'judg', u'water', u'masturb', u'claim']
[u'khazal', u'bail', u'rule', u'earn', u'govern', u'wrath']
[u'klep', u'remand', u'custodi']
[u'klien', u'freak', u'accid', u'hit', u'jaguar', u'test']
[u'labor', u'deni', u'vote', u'expos', u'divis']
[u'labor', u'premier', u'trade', u'deal']
[u'lankan', u'chase', u'territorian', u'darwin']
[u'laverton', u'group', u'oppos', u'wast', u'dump', u'plan']
[u'leader', u'decid', u'murray', u'fate']
[u'lehmann', u'readi', u'lankan']
[u'lennon', u'scrap', u'plan', u'attend', u'coag', u'meet']
[u'local', u'govt', u'group', u'back', u'port', u'hedland', u'council']
[u'magistr', u'court', u'head', u'replac', u'nicholson']
[u'convict', u'chinchilla', u'manslaught']
[u'massiv', u'secur', u'ireland', u'prepar', u'bush']
[u'mayor', u'talk', u'caloundra', u'budget']
[u'mcgrath', u'wicketless', u'tour', u'match']
[u'meet', u'focus', u'kosciuszko', u'manag', u'plan']
[u'mental', u'health', u'concern', u'state', u'coron']
[u'millar', u'confess', u'dope', u'report']
[u'miseri', u'rage', u'england', u'lose', u'penalti']
[u'miss', u'north', u'west']
[u'mix', u'reaction', u'water', u'legisl']
[u'montgomeri', u'admit', u'report']
[u'rail', u'delay', u'expect']
[u'morton', u'name', u'nation', u'museum', u'head']
[u'mundin', u'aim', u'inspir', u'gambier', u'student']
[u'murray', u'goulburn', u'plant', u'sourc', u'legionnair']
[u'music', u'enthusiast', u'head', u'east', u'coast']
[u'nasal', u'spray', u'protect', u'monkey', u'sar']
[u'nat', u'head', u'dubbo', u'confer']
[u'centr', u'benefit', u'derbi', u'youth']
[u'korea', u'threaten', u'direct', u'nuclear', u'test', u'south', u'korea']
[u'korea', u'threaten', u'nuclear', u'test', u'report']
[u'fund', u'wimmera', u'malle', u'pipelin', u'govt']
[u'northern', u'footbal', u'leagu', u'tribut', u'bacon']
[u'nation', u'highlight', u'problem', u'welfar']
[u'pair', u'stand', u'trial', u'assault', u'charg']
[u'palestinian', u'thiev', u'return', u'shin']
[u'parti', u'celebr', u'return', u'passeng', u'rail', u'servic']
[u'paul', u'england', u'clash']
[u'pike', u'announc', u'health', u'worker', u'fund']
[u'plan', u'begin', u'substanc', u'scheme']
[u'pleasur', u'receptor', u'hold', u'mother', u'child']
[u'prais', u'green', u'reject', u'water', u'deal']
[u'asean', u'summit', u'invit']
[u'polic', u'crack', u'nation', u'cattl', u'duf', u'ring']
[u'polic', u'investig', u'arm', u'robberi', u'link']
[u'polic', u'probe', u'mosqu', u'melbourn']
[u'polic', u'seiz', u'worth', u'drug']
[u'poor', u'mainten', u'lead', u'light', u'plan', u'crash', u'report']
[u'portug', u'progress', u'shoot', u'thriller']
[u'powel', u'pressur', u'sudan', u'arab', u'militia']
[u'priest', u'arrest', u'charg', u'deport']
[u'princess', u'carolin', u'win', u'court', u'case']
[u'prison', u'abus', u'outrag', u'hypocrit', u'burnsid']
[u'public', u'school', u'fund', u'minuscul', u'actu']
[u'puppi', u'prevent', u'canadian', u'kill', u'spree']
[u'push', u'blanket', u'warm', u'cloth']
[u'rain', u'reveal', u'frog', u'speci']
[u'rehab', u'expuls', u'student', u'drug', u'problem']
[u'rehhagel', u'focus', u'success', u'greek', u'hero']
[u'research', u'abuzz', u'find']
[u'seek', u'sourc', u'billion', u'deal']
[u'river', u'arriv', u'coag', u'meet']
[u'road', u'crash', u'investig']
[u'robber', u'forc', u'restaur', u'patron', u'floor']
[u'rooney', u'injuri', u'pretti', u'say', u'sven']
[u'processor', u'secur', u'state', u'fund']
[u'rough', u'terrain', u'hamper', u'cliff', u'rescu', u'effort']
[u'sack', u'wont', u'stop', u'atsic', u'fight', u'commission']
[u'sadr', u'militia', u'call', u'truce', u'fight', u'terrorist']
[u'scienc', u'crack', u'year', u'round', u'muddi']
[u'score', u'kill', u'iranian', u'road', u'accid']
[u'secur', u'measur', u'step', u'pisa']
[u'senat', u'continu', u'clear', u'legisl', u'deck']
[u'senat', u'reduc', u'super', u'cut']
[u'serena', u'roddick']
[u'sharehold', u'approv', u'westfield', u'merger']
[u'shire', u'address', u'mossi', u'number']
[u'shire', u'trial', u'biosolid', u'storag', u'facil']
[u'small', u'tremor', u'felt', u'darwin']
[u'win', u'lose', u'separ', u'defam', u'action']
[u'south', u'releas', u'peter', u'sign', u'cusack']
[u'spacewalk', u'short', u'oxygen', u'problem']
[u'spain', u'gibernau', u'take', u'provision', u'pole']
[u'spain', u'saez', u'quit', u'euro', u'exit']
[u'speed', u'fall', u'pedestrian', u'death']
[u'sport', u'honour', u'beaconsfield', u'polic', u'boss']
[u'srebrenica', u'survivor', u'netherland']
[u'state', u'interest', u'decid', u'gallop', u'water', u'strategi']
[u'state', u'health', u'care', u'shortag', u'concern']
[u'streep', u'take', u'dark', u'matter']
[u'student', u'outrag', u'textbook', u'subsidi', u'scrap']
[u'support', u'electr', u'market', u'access', u'rule']
[u'swift', u'winner', u'circl']
[u'sydney', u'dam', u'level', u'near', u'record', u'low']
[u'talk', u'fail', u'eas', u'qanta', u'concern']
[u'tasmanian', u'warn', u'possibl', u'credit', u'card', u'scam']
[u'teen', u'avoid', u'detent', u'blaze']
[u'terrorist', u'attack', u'financ', u'switzerland', u'task']
[u'test', u'macgil']
[u'thuringowa', u'celebr', u'river', u'festiv']
[u'tiger', u'cream', u'rooster', u'juggernaut']
[u'titl', u'hungri', u'saiki', u'lead', u'tesk', u'pittsford']
[u'tourism', u'council', u'back', u'feder', u'agenc']
[u'turkish', u'polic', u'detain', u'bomb', u'suspect']
[u'marin', u'kill', u'wound', u'afghanistan']
[u'bomb', u'raid', u'target', u'fallujah', u'baqubah']
[u'court', u'block', u'media', u'ownership', u'chang']
[u'open', u'survivor', u'mug', u'french', u'open']
[u'extend', u'iraq', u'prosecut', u'immun']
[u'vail', u'confid', u'labor', u'pass', u'law']
[u'venus', u'down', u'feder', u'fli']
[u'govt', u'ask', u'appl', u'rethink']
[u'jail', u'kill', u'father']
[u'want', u'australian', u'dead', u'thai', u'prison', u'cell']
[u'warrant', u'issu', u'judg']
[u'water', u'board', u'want', u'consumpt', u'figur', u'keep', u'secret']
[u'expand', u'nation', u'park', u'promis']
[u'westfield', u'stay', u'aust', u'say', u'chairman']
[u'wimbledon', u'offici', u'review', u'umpir', u'error']
[u'wolfowitz', u'apologis', u'journalist', u'iraq']
[u'woman', u'unsur', u'husband', u'stab', u'death']
[u'woodward', u'poke', u'ahead', u'replay']
[u'world', u'safer', u'place', u'despit', u'iraq', u'attack', u'bush']
[u'urg', u'state', u'green', u'energi']
[u'afghanistan', u'grow', u'opium', u'trade', u'concern']
[u'afghan', u'opium', u'product', u'control']
[u'algal', u'bloom', u'kill', u'thousand', u'fish', u'swan', u'river']
[u'black', u'bumbl', u'easi', u'puma']
[u'warn', u'water', u'deal', u'pork', u'barrel']
[u'back', u'tougher', u'child', u'abus', u'report', u'law']
[u'annan', u'push', u'nato', u'troop', u'afghanistan']
[u'appl', u'import', u'plan', u'consid', u'diseas', u'free']
[u'arafat', u'commit', u'truce', u'olymp']
[u'assault', u'inmat', u'deem', u'risk', u'govt']
[u'bishop', u'belo', u'embark', u'mozambiqu', u'mission']
[u'blair', u'person', u'plea', u'guantanamo', u'releas']
[u'boomer', u'lord', u'itali']
[u'border', u'monitor', u'eas', u'congo', u'rwanda', u'tension']
[u'bulldog', u'spoil', u'cowboy', u'parti']
[u'canada', u'hunt', u'save']
[u'dealer', u'seek', u'illeg', u'oper', u'crackdown']
[u'clinic', u'hewitt', u'favourit']
[u'clinton', u'fan', u'camp', u'ahead', u'book', u'sign']
[u'confus', u'surround', u'istanbul', u'airport', u'bomb', u'claim']
[u'consum', u'warn', u'oversea', u'real', u'estat']
[u'court', u'rule', u'princess', u'entitl', u'privaci']
[u'court', u'set', u'date', u'bryant', u'rape', u'trial']
[u'crowd', u'protest', u'govt', u'marriag']
[u'czech', u'surviv', u'day', u'buri', u'aliv', u'coffin']
[u'deadlin', u'reviv', u'ireland', u'power', u'deal']
[u'debat', u'flow', u'nation', u'water', u'plan']
[u'diplomat', u'play', u'castro', u'releas', u'dissid']
[u'dockland', u'host', u'hmas', u'ballarat', u'commiss']
[u'merger', u'boost', u'revenu']
[u'east', u'timor', u'threaten', u'deport', u'australian']
[u'effici', u'sophist', u'home', u'earn', u'architectur']
[u'exit', u'showman', u'goran', u'call']
[u'experi', u'lucic', u'sweden', u'return']
[u'explos', u'hear', u'baghdad']
[u'break', u'gold', u'coast', u'theme', u'park']
[u'fisher', u'float', u'reef', u'rezon', u'concern']
[u'fitzroy', u'final', u'receiv', u'premiership']
[u'fli', u'doctor', u'hold', u'dunni', u'door', u'contest']
[u'fli', u'rossi', u'grab', u'dutch', u'pole']
[u'kill', u'attack', u'baquba', u'shiit', u'group']
[u'french', u'press', u'maul', u'fall', u'hero']
[u'garrett', u'tell', u'young', u'labor', u'join']
[u'garrett', u'address', u'young', u'labor', u'confer']
[u'german', u'tell']
[u'good', u'rocca', u'challeng', u'roo']
[u'govern', u'incompet', u'blame', u'jail', u'crowd']
[u'govern', u'contract', u'attract', u'union']
[u'govt', u'listen', u'resid', u'plan', u'tunnel']
[u'govt', u'seek', u'recognis', u'soldier', u'medal']
[u'govt', u'reach', u'deal', u'water', u'resourc']
[u'grazier', u'controversi', u'cotton', u'research']
[u'greek', u'histori', u'maker', u'stun', u'franc']
[u'green', u'french', u'open', u'content']
[u'gunn', u'empt', u'forestri', u'polici', u'chang']
[u'hewitt', u'end', u'ivanisev', u'wimbledon', u'swansong']
[u'hockeyroo', u'japan', u'clash']
[u'huey', u'helicopt', u'retir']
[u'iran', u'push', u'ahead', u'uranium', u'enrich', u'plan']
[u'iraqi', u'shiit', u'condemn', u'filthi', u'infidel', u'terrorist']
[u'irish', u'ralli', u'polici']
[u'wont', u'quit', u'captainci', u'beckham']
[u'jackson', u'judg', u'say', u'fair', u'trial', u'difficult']
[u'judg', u'confid', u'cycl', u'drug', u'probe']
[u'kung', u'grab', u'share', u'lpga', u'lead']
[u'lankan', u'scent', u'victori', u'darwin']
[u'lara', u'look', u'win', u'start']
[u'latham', u'tread', u'light', u'carr']
[u'leav', u'delta', u'warn', u'scud']
[u'liber', u'candid', u'advoc', u'nation', u'educ']
[u'lippi', u'name', u'itali', u'coach']
[u'charg', u'murder', u'death', u'woman']
[u'seek', u'hijack']
[u'millar', u'bar', u'tour', u'franc']
[u'minist', u'reject', u'govt', u'energi', u'polici']
[u'nuclear', u'energi', u'need', u'rais', u'live']
[u'troop', u'leav', u'stabl', u'solomon']
[u'movi', u'theatr', u'washington']
[u'head', u'home', u'amid', u'talk', u'august', u'poll']
[u'nasdaq', u'escap', u'iraq', u'induc', u'stock', u'fall']
[u'nato', u'strike', u'tentat', u'iraq', u'secur', u'deal']
[u'newest', u'naval', u'frigat', u'enter', u'servic']
[u'govt', u'cambodia', u'month', u'elect']
[u'australian', u'hurt', u'mosul', u'mortar', u'attack']
[u'breakthrough', u'north', u'korean', u'nuclear', u'talk']
[u'corrupt', u'charg', u'lay', u'drug', u'squad']
[u'approv', u'home', u'project']
[u'chang', u'stamp', u'duti', u'avoid']
[u'ogradi', u'readi', u'green', u'jersey', u'battl']
[u'olymp', u'flame', u'stop', u'london']
[u'onlin', u'retail', u'strip', u'custom', u'right', u'accc']
[u'panther', u'power', u'home', u'eel']
[u'parliament', u'hold', u'rare', u'saturday', u'sit']
[u'paul', u'england', u'clash']
[u'poki', u'chang', u'toughen', u'licenc', u'process']
[u'queanbeyan', u'councillor', u'face', u'elector', u'test']
[u'queensland', u'better', u'reign', u'beatti']
[u'ralf', u'french', u'decis', u'week']
[u'rathbon', u'spark', u'wallabi', u'reveng']
[u'rooney', u'rule', u'week', u'eriksson']
[u'rusedski', u'loss', u'leav', u'henman']
[u'salt', u'deposit', u'boost', u'mar', u'theori']
[u'sangakkara', u'flay', u'territorian']
[u'score', u'kill', u'yemen', u'clash']
[u'scott', u'snatch', u'maryland', u'lead']
[u'scud', u'leav', u'time']
[u'small', u'busi', u'benefit', u'chang']
[u'soldier', u'claim', u'command', u'present', u'death']
[u'spear', u'marriag', u'second']
[u'storm', u'continu', u'warrior', u'miseri']
[u'stick', u'switch', u'caus', u'spacewalk', u'problem', u'nasa']
[u'sudan', u'deni', u'darfur', u'crisi']
[u'surplus', u'reviv', u'conoco', u'suppli', u'talk']
[u'swan', u'pie', u'final', u'hop']
[u'kill', u'kashmir', u'attack']
[u'blast', u'rock', u'burmes', u'train', u'station']
[u'elect', u'worker', u'kill', u'afghanistan', u'blast']
[u'tight', u'secur', u'ireland', u'bush', u'talk']
[u'kill', u'nablus', u'search', u'oper']
[u'tyson', u'settl', u'lawsuit', u'king']
[u'demand', u'access', u'terror', u'suspect']
[u'denounc', u'isra', u'palestinian', u'violenc']
[u'head', u'meet', u'powel', u'darfur']
[u'unit', u'line', u'rooney', u'report']
[u'take', u'charg', u'haiti', u'secur']
[u'interim', u'iraq', u'govern']
[u'investig', u'suspect', u'case']
[u'name', u'replac', u'iraq', u'abus', u'investig']
[u'nkorea', u'closer', u'crisi', u'talk']
[u'strike', u'zarqawi', u'safe', u'hous']
[u'surfer', u'password', u'bank', u'detail', u'vulner']
[u'wind', u'hamper', u'balloon', u'championship']
[u'xenophon', u'question', u'asbesto', u'report', u'respons']
[u'seek', u'interst', u'koala', u'stanhop']
[u'algal', u'bloom', u'monitor', u'fish']
[u'quiet', u'fairer', u'plan', u'detail']
[u'rethink', u'terror', u'hotlin', u'glitch', u'go']
[u'bomb', u'explod', u'istanbul', u'ahead', u'nato']
[u'australian', u'break', u'countri', u'music', u'drought']
[u'australian', u'gusmao', u'halt', u'deport']
[u'beckham', u'hint', u'media', u'forc', u'real']
[u'blast', u'fail', u'deter', u'regist', u'women']
[u'brisban', u'serv', u'feast']
[u'bung', u'caus', u'hobart', u'sink']
[u'bush', u'declar', u'iraq', u'rift', u'heal']
[u'bush', u'interview', u'cancel', u'broadcast']
[u'call', u'cost', u'hous', u'fund']
[u'carr', u'express', u'faith', u'latham']
[u'carrol', u'report', u'raider', u'break', u'hoodoo']
[u'halt', u'harsh', u'interrog', u'report']
[u'close', u'test', u'aust', u'troop', u'respons']
[u'command', u'tell', u'attack', u'aust', u'troop']
[u'czech', u'govern', u'fall', u'resign']
[u'dead', u'bomb', u'hit', u'southern', u'iraqi', u'citi']
[u'denmark', u'readi', u'czech', u'test']
[u'develop', u'meet', u'flood', u'martha', u'cove', u'resid']
[u'dilshan', u'guid', u'lankan', u'home']
[u'dragon', u'romp']
[u'dutch', u'final', u'shootout', u'reach', u'semi']
[u'earli', u'count', u'put', u'pangallo', u'ahead']
[u'energi', u'generat', u'public']
[u'enron', u'admit', u'respons', u'collaps']
[u'famili', u'appeal', u'help', u'miss']
[u'fan', u'danc', u'street', u'dutch', u'semi']
[u'fertil', u'technolog', u'help', u'save', u'endang', u'speci']
[u'destroy', u'movi', u'studio']
[u'georgia', u'step', u'time']
[u'ghan', u'break', u'length', u'record']
[u'gower', u'face', u'season', u'end', u'surgeri']
[u'greenpeac', u'remov', u'homebush', u'toxic', u'wast']
[u'green', u'challeng', u'garrett', u'port', u'plan']
[u'green', u'quiet', u'elect', u'prefer']
[u'green', u'stay', u'close', u'franc']
[u'grenad', u'attack', u'independ', u'madagascar']
[u'hama', u'aqsa', u'leader', u'kill', u'nablus', u'raid']
[u'health', u'area', u'merger', u'deal']
[u'high', u'standard', u'crocodil', u'hunter']
[u'hockeyroo', u'nation', u'tournament']
[u'hodg', u'eye', u'return', u'brisban']
[u'home', u'owner', u'flood', u'repair']
[u'hospit', u'trial', u'softwar', u'paperless', u'ward']
[u'balloon', u'championship', u'lift']
[u'iaea', u'urg', u'iran', u'reconsid', u'nuclear', u'work']
[u'sport', u'display', u'highlight', u'venu', u'troubl']
[u'indian', u'gay', u'lesbian', u'parad', u'right']
[u'injur', u'boer', u'celebr', u'ting', u'sad']
[u'insurg', u'delay', u'iraqi', u'elect']
[u'intern', u'bank', u'regul', u'set', u'tough', u'rule']
[u'iran', u'blame', u'afghan', u'drug', u'boom']
[u'iraq', u'attack', u'show', u'troop', u'stay']
[u'iraq', u'plan', u'amnesti', u'insurg']
[u'iraq', u'welcom', u'nato', u'train', u'plan']
[u'israel', u'dimiss', u'olymp', u'truce', u'offer']
[u'isra', u'forc', u'nablus', u'incurs']
[u'israel', u'talk', u'nuclear', u'arm', u'elbaradei']
[u'itali', u'down', u'boomer']
[u'kakadu', u'cut', u'lift', u'visitor', u'number']
[u'land', u'pass', u'develop', u'tread', u'cautious']
[u'lankan', u'chase', u'wicket', u'hand']
[u'latham', u'vow', u'parti']
[u'leak', u'reveal', u'babi', u'bonus', u'payment', u'concern']
[u'hospitalis', u'alban', u'shoot']
[u'mcgrath', u'confid', u'despit', u'tour', u'defeat']
[u'microsoft', u'request', u'stay', u'penalti']
[u'see', u'pittman', u'abandon', u'lill', u'race']
[u'museum', u'offer', u'relic', u'assess']
[u'nation', u'parti', u'stick', u'free', u'trade', u'stanc']
[u'navratilova', u'olymp', u'debut']
[u'hugh', u'star', u'knight']
[u'model', u'develop', u'indigen', u'palliat', u'care']
[u'contempt', u'action', u'brack', u'william', u'remark']
[u'offic', u'free', u'pcyc', u'paperwork']
[u'onlin', u'inform', u'improv', u'antarct', u'forecast']
[u'pakistani', u'cabinet', u'dissolv', u'resign']
[u'pakistan', u'resign', u'report']
[u'polic', u'continu', u'hunt', u'jacker']
[u'polic', u'investig', u'overnight', u'shoot']
[u'polic', u'know', u'norfolk', u'island', u'killer', u'ident', u'senat']
[u'pope', u'slam', u'tortur', u'intoler', u'violat']
[u'prospector', u'head', u'goldfield']
[u'protest', u'brussel', u'jewish', u'teenag', u'stab']
[u'protest', u'explos', u'mark', u'bush', u'visit', u'turkey']
[u'public', u'invit', u'inspect', u'ballarat']
[u'pulp', u'plan', u'win', u'feder', u'back']
[u'rain', u'save', u'windi', u'loss']
[u'robben', u'end', u'dutch', u'penalti', u'jinx']
[u'rooney', u'week']
[u'rossi', u'overtak', u'gibernau', u'dutch', u'victori']
[u'russia', u'ship', u'north', u'korea', u'food']
[u'saddam', u'move', u'jail', u'iraq']
[u'saiki', u'near', u'lpga', u'titl']
[u'slight', u'cheaper', u'power']
[u'scott', u'streak', u'ahead', u'maryland']
[u'serbian', u'voter', u'choos', u'presid']
[u'abus', u'critic', u'surpris', u'hollingworth']
[u'shop', u'face', u'closur', u'highway', u'upgrad']
[u'iraq', u'violenc', u'ahead', u'handov']
[u'smelter', u'propos', u'crazi', u'real']
[u'springbok', u'overwhelm', u'wale']
[u'suspect', u'taliban', u'kill', u'peopl', u'regist']
[u'sydney']
[u'sydney', u'observatori', u'threaten', u'budget']
[u'tale', u'prime', u'evil', u'win', u'african', u'literari', u'prize']
[u'move', u'save', u'wind', u'energi', u'plant']
[u'telecom', u'firm', u'launch', u'islam', u'mobil', u'phone']
[u'thunderbolt', u'kill', u'china']
[u'truck', u'driver', u'award', u'condit']
[u'tunnel', u'lobbi', u'group', u'seek', u'broad', u'transport', u'plan']
[u'turkey', u'refus', u'milit', u'demand']
[u'ultralight', u'crash', u'injur']
[u'uluru', u'resort', u'rebuild']
[u'uncap', u'fitter', u'name', u'wallabi', u'squad']
[u'commit', u'geneva', u'convent', u'bush']
[u'green', u'reject', u'nader', u'presidenti', u'nomine']
[u'veteran', u'umpir', u'bail', u'footbal', u'mileston']
[u'promis', u'holiday', u'road', u'blitz']
[u'villeneuv', u'drive', u'father', u'ferrari']
[u'join', u'state', u'base', u'energi', u'strategi']
[u'wallabi', u'want', u'roff', u'play']
[u'armstrong', u'ask', u'bar', u'luca']
[u'wimbledon', u'wash']
[u'wind', u'take', u'balloon', u'championship']
[u'zarqawi', u'support', u'threaten', u'behead', u'turk']
[u'escap', u'cash', u'comment', u'charg']
[u'abattoir', u'close', u'job', u'lose']
[u'local', u'news', u'editor', u'die', u'age']
[u'aborigin', u'coordin', u'council', u'spark']
[u'agreement', u'reach', u'offset', u'alpin', u'document']
[u'underworld', u'sponsorship', u'embarrass']
[u'architect', u'honour', u'citi', u'hall', u'work']
[u'argentin', u'titl', u'littl', u'consol']
[u'armstrong', u'histori', u'dope', u'cloud']
[u'asean', u'sign', u'draft', u'secur', u'plan']
[u'baggaley', u'bag', u'medal']
[u'baro', u'doubl', u'fire', u'czech']
[u'baro', u'vow', u'fight', u'place', u'look', u'liverpool']
[u'blade', u'product', u'plant', u'doubt']
[u'blaze', u'damag', u'mine', u'hous']
[u'boat', u'capsiz', u'india', u'dead']
[u'bonus', u'prompt', u'babi', u'talk', u'princip', u'say']
[u'hospit', u'suspect', u'meningococc']
[u'briton', u'kill', u'wound', u'iraq', u'attack']
[u'bulk', u'bill', u'rat', u'climb']
[u'cabinet', u'consid', u'kimberley', u'cotton', u'research']
[u'strong', u'open', u'milk', u'price']
[u'catchment', u'group', u'happi', u'greater', u'river', u'protect']
[u'china', u'crash', u'kill']
[u'china', u'sentenc', u'dozen', u'drug', u'dealer', u'death']
[u'clean', u'begin', u'high', u'wind']
[u'comic', u'address', u'indigen', u'alcohol', u'abus']
[u'cooma', u'monaro', u'elect', u'count', u'resum']
[u'costello', u'criticis', u'alp', u'diesel', u'excis', u'plan']
[u'costello', u'urg', u'commit', u'resourc', u'project']
[u'council', u'composit', u'unclear']
[u'councillor', u'urg', u'quiet', u'rate', u'rise', u'plan']
[u'council', u'want', u'manag', u'treat', u'fair', u'merger']
[u'court', u'reject', u'discriminatori', u'matern', u'leav', u'claim']
[u'custom', u'test', u'drone']
[u'democrat', u'film', u'attack', u'iraq', u'involv']
[u'doubt', u'cast', u'water', u'trade', u'benefit']
[u'clear', u'misconduct', u'volker', u'case']
[u'draw', u'determin', u'ballot', u'paper', u'rank']
[u'drought', u'forc', u'dairi', u'farmer']
[u'drown', u'bombo', u'beach', u'investig']
[u'ethanol', u'plant', u'court', u'case', u'resum']
[u'timor', u'move', u'deport', u'aust']
[u'suspend', u'anti', u'trust', u'measur', u'microsoft']
[u'factbox', u'iraq', u'interim', u'govern']
[u'factbox', u'power', u'interim', u'iraqi', u'govern']
[u'fahrenheit', u'top', u'north', u'american', u'offic']
[u'feder', u'serena', u'march']
[u'govt', u'urg', u'boost', u'fraser', u'tourism', u'effort']
[u'fight', u'fund', u'rais', u'counter', u'daintre']
[u'fiji', u'treason', u'trial', u'begin']
[u'firefight', u'continu', u'dous', u'movi', u'world', u'blaze']
[u'fittler', u'gasnier', u'tap', u'origin']
[u'forestri', u'need', u'transpar', u'report', u'say']
[u'fiji', u'testifi', u'coup', u'trial']
[u'spend', u'free', u'travel']
[u'teacher', u'guilti', u'child', u'charg']
[u'frawley', u'step', u'season']
[u'freak', u'accid', u'kill', u'garbag', u'collector']
[u'free', u'charg', u'guantanamo', u'prison', u'turkish', u'say']
[u'fund', u'undermin', u'wit', u'protect', u'polic']
[u'fund', u'polic', u'marin', u'fleet']
[u'gallop', u'launch', u'prospector', u'train']
[u'gate', u'target', u'australia', u'digit', u'divid']
[u'gather', u'focus', u'indigen', u'health']
[u'gayl', u'guid', u'west', u'indi', u'england']
[u'girl', u'lose', u'tram', u'accid']
[u'govt', u'rule', u'chang', u'serial', u'killer']
[u'govt', u'urg', u'indigen', u'kidney', u'problem']
[u'govt', u'urg', u'danger', u'toxic', u'wast']
[u'grain', u'handler', u'streamlin', u'export']
[u'great', u'walk', u'attract', u'tourist', u'worldwid', u'beatti']
[u'harradin', u'like', u'quit', u'polit']
[u'tractor', u'travel']
[u'heritag', u'regist', u'list', u'raaf', u'depot']
[u'hill', u'hear', u'push', u'navi', u'base']
[u'hospit', u'admiss', u'length', u'stay']
[u'howard', u'visit', u'herald', u'elect', u'lennon']
[u'howard', u'welcom', u'earli', u'iraq', u'power', u'transfer']
[u'hunter', u'high', u'immunis', u'rate']
[u'india', u'pakistan', u'reopen', u'consul']
[u'indonesian', u'polic', u'arrest', u'bali', u'link', u'terror', u'suspect']
[u'quot', u'iraq', u'handov']
[u'iraqi', u'govt', u'take', u'rein', u'earli']
[u'iraqi', u'presid', u'hail', u'transfer', u'power']
[u'iraqi', u'clear', u'bomb', u'kill', u'south']
[u'iraq', u'say', u'victim', u'terror']
[u'iraq', u'worri', u'dampen', u'share', u'market']
[u'irrig', u'say', u'water', u'return', u'reason']
[u'irrig', u'posit', u'water', u'agreement']
[u'isra', u'helicopt', u'fire', u'missil', u'gaza']
[u'jone', u'defeat', u'women', u'pole', u'vault', u'reach']
[u'kangaroo', u'koala', u'face', u'deport']
[u'labor', u'bring', u'elect', u'forward']
[u'labor', u'promis', u'afford', u'hous']
[u'land', u'negoti', u'build', u'trust', u'tribun']
[u'langer', u'back', u'mcgrath', u'comeback']
[u'leagu', u'club', u'close', u'good']
[u'lengthi', u'wit', u'list', u'doubl', u'murder', u'case']
[u'lib', u'senat', u'face', u'green', u'challeng']
[u'lion', u'favourit', u'flag', u'say', u'matthew']
[u'burn', u'home', u'explos']
[u'face', u'attempt', u'murder', u'charg']
[u'plead', u'guilti', u'help', u'escap']
[u'maroon', u'blue', u'chang', u'ahead', u'seri']
[u'mask', u'iraq', u'gunmen', u'threaten', u'behead', u'pakistani']
[u'mayor', u'seek', u'water', u'agreement', u'benefit']
[u'mcintosh', u'park', u'spotlight']
[u'milit', u'threaten', u'behead', u'marin']
[u'millar', u'rule', u'tour']
[u'infrastructur', u'help', u'remov', u'highway', u'truck']
[u'minist', u'say', u'iraqi', u'better']
[u'minist', u'highlight', u'school', u'disabl', u'access']
[u'minist', u'region', u'health', u'announc']
[u'mitsubishi', u'confirm', u'adelaid', u'sale', u'discuss']
[u'momentum', u'build', u'wimbledon', u'second', u'week']
[u'test', u'fell', u'dragon', u'thompson']
[u'defend', u'art', u'fund', u'effort']
[u'happi', u'privat', u'plantat']
[u'take', u'issu', u'marin', u'surveyor', u'transfer']
[u'nationalist', u'conced', u'defeat', u'serbian']
[u'nation', u'trust', u'accept', u'govt', u'help']
[u'nato', u'agre', u'major', u'expans', u'afghan', u'forc']
[u'nato', u'agre', u'train', u'iraqi', u'forc', u'amid', u'summit']
[u'navi', u'commit', u'remain', u'heavi', u'say', u'command']
[u'crow', u'coach', u'face', u'injuri', u'crisi']
[u'claim', u'water', u'initi']
[u'korea', u'reject', u'unrealist', u'offer']
[u'corrupt', u'probe', u'highlight', u'lack', u'supervis']
[u'scrutinis', u'local', u'council', u'project']
[u'unveil', u'middl', u'diseas', u'strategi']
[u'oecd', u'give', u'australia', u'poor', u'mark', u'equiti']
[u'kill', u'attack', u'raaf', u'hercul']
[u'option', u'limit', u'save', u'snow', u'dome']
[u'optus', u'issu', u'refund', u'mislead', u'promot']
[u'palestinian', u'blow', u'isra', u'armi', u'post', u'gaza']
[u'panel', u'reject', u'workplac', u'death', u'offenc']
[u'perfum', u'corner', u'wacki', u'scent', u'market']
[u'owner', u'warn', u'control', u'dog']
[u'pipelin', u'ocean', u'project', u'progress']
[u'player', u'death', u'sadden', u'footbal', u'leagu']
[u'dismiss', u'latham', u'advertis', u'stunt']
[u'polic', u'appeal', u'help', u'bash']
[u'polic', u'deni', u'budget', u'cost', u'inform', u'life']
[u'polic', u'investig', u'alban', u'shoot']
[u'polic', u'locat', u'steal', u'stock']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'probe', u'south', u'mackay', u'flat', u'blaze']
[u'polic', u'look', u'miss', u'woman']
[u'port', u'augusta', u'polic', u'moral']
[u'produc', u'drought']
[u'protest', u'arrest', u'gungahlin', u'develop']
[u'push', u'greater', u'sick', u'leav', u'flexibl']
[u'push', u'state', u'wineri', u'sale', u'rebat']
[u'qanta', u'passeng', u'strand', u'faulti', u'door']
[u'health', u'defend', u'mental', u'health', u'servic']
[u'question', u'rais', u'aborigin', u'corp', u'review']
[u'question', u'rais', u'bypass', u'delay']
[u'ransom', u'pay', u'italian', u'hostag', u'releas', u'report']
[u'real', u'madrid', u'tire', u'beckham']
[u'reflect', u'strip', u'rail', u'cross', u'safeti']
[u'remesi', u'lead', u'aussi', u'home', u'seal', u'french', u'open']
[u'renmark', u'paringa', u'council', u'rais', u'rat']
[u'report', u'say', u'log', u'water', u'suppli']
[u'research', u'monitor', u'humpback', u'whale', u'number']
[u'research', u'seek', u'crab', u'transit', u'death', u'rate']
[u'review', u'allow', u'work', u'industri', u'park', u'plan']
[u'maker', u'commit', u'expans', u'plan']
[u'saddam', u'haul', u'dock', u'day', u'iraqi']
[u'saddam', u'remain', u'guard']
[u'saiki', u'end', u'year', u'lpga', u'titl', u'drought']
[u'sailor', u'doubt', u'pacif', u'island', u'test']
[u'sandon', u'protest', u'maintain', u'picket', u'line']
[u'savag', u'wind', u'power']
[u'scott', u'hold', u'howel', u'maryland']
[u'scud', u'target', u'henman']
[u'sept', u'rescu', u'worker', u'olymp', u'hope']
[u'snake', u'condom', u'target', u'indigen']
[u'southcorp', u'aim', u'profit', u'boost']
[u'south', u'west', u'support', u'resourc', u'master', u'plan']
[u'spenc', u'plead', u'guilti', u'unlaw', u'death']
[u'springbok', u'recal', u'veteran', u'nation']
[u'stephenson', u'put', u'strong', u'elect', u'perform']
[u'steal', u'cattl', u'recov']
[u'street', u'prostitut', u'stay', u'report', u'say']
[u'summit', u'call', u'huge', u'hous', u'invest']
[u'summit', u'call', u'nation', u'plan', u'home', u'price']
[u'superbik', u'rider', u'airlift', u'wanneroo', u'crash']
[u'support', u'nation', u'water', u'framework']
[u'home', u'evacu', u'cliff', u'collaps']
[u'tasmania', u'trial', u'medicar', u'smart', u'card']
[u'sue', u'mistak', u'patern']
[u'tate', u'crocker', u'maroon']
[u'offic', u'unveil', u'invest', u'properti', u'deduct']
[u'torrington', u'bash', u'rob']
[u'tour', u'franc', u'stag', u'brief', u'descript']
[u'turkey', u'model', u'muslim', u'democraci', u'bush']
[u'children', u'kill', u'baghdad', u'mortar', u'strike']
[u'kill', u'hama', u'carri', u'dead']
[u'unit', u'plan', u'sale', u'financ', u'rooney', u'deal']
[u'predict', u'support', u'iraq']
[u'wheat', u'grower', u'urg', u'hear', u'debt', u'write', u'reason']
[u'william', u'sign', u'season', u'port']
[u'worksaf', u'issu', u'firework', u'warn']
[u'young', u'wallabi', u'finish', u'fourth']
[u'convent', u'centr', u'open', u'door']
[u'wont', u'forc', u'local', u'content']
[u'advisor', u'hold', u'liabl', u'investor', u'loss']
[u'defend', u'norman', u'rise', u'star', u'select']
[u'agricultur', u'product', u'feel', u'drought', u'impact']
[u'alcoa', u'studi', u'reveal', u'high', u'staff', u'cancer', u'rat']
[u'begin', u'wollongong', u'resid']
[u'ambo', u'welcom', u'servic', u'boost']
[u'ambul', u'woe', u'near']
[u'antarct', u'research', u'ship', u'gun', u'fish', u'poacher']
[u'close', u'carrol', u'origin', u'loophol']
[u'asbesto', u'eas', u'hardi', u'fund', u'shortfal']
[u'steadi', u'investor', u'await', u'financi', u'year']
[u'australian', u'iraqi', u'welcom', u'handov']
[u'australian', u'quartet', u'british', u'open', u'place']
[u'australian', u'monitor', u'indonesian', u'poll']
[u'australian', u'tour', u'challeng']
[u'australia', u'post', u'commemor', u'eureka', u'stockad']
[u'bail', u'propos', u'target', u'repeat', u'offend']
[u'baro', u'hop', u'form', u'liverpool']
[u'beatti', u'back', u'hous', u'minist', u'call']
[u'bega', u'weather', u'reach', u'extrem']
[u'bendigo', u'rate', u'rise', u'loom']
[u'besieg', u'advocaat', u'ponder', u'portug', u'clash']
[u'bet', u'suspend', u'rooster', u'wooden', u'spoon']
[u'bipartisan', u'support', u'number', u'increas']
[u'bird', u'mutat', u'deadlier', u'threat', u'studi']
[u'bodi', u'hous', u'blaze']
[u'bomb', u'hit', u'troop', u'baghdad']
[u'boost', u'expect', u'dairi', u'product']
[u'boost', u'wineri', u'capac']
[u'brack', u'probe', u'gambl', u'charg']
[u'bridg', u'work', u'near', u'finish']
[u'british', u'civilian', u'kill', u'iraq']
[u'brogden', u'question', u'murder', u'appeal']
[u'break', u'hill', u'adelaid', u'servic', u'track']
[u'bull', u'land', u'woman', u'hospit']
[u'bush', u'renew', u'push', u'middl', u'east', u'reform']
[u'busi', u'usual', u'queanbeyan', u'elect']
[u'busi', u'expect', u'staff', u'boost']
[u'cactus', u'extract', u'beat', u'hair']
[u'govt', u'compo', u'power', u'surg', u'victim']
[u'isol', u'teacher', u'support']
[u'canada', u'minor', u'rule']
[u'cantona', u'come', u'england']
[u'carr', u'admit', u'corrupt', u'mar', u'polic', u'forc']
[u'casino', u'worker', u'strike', u'wag', u'disput']
[u'chaffey', u'undergo', u'safeti', u'work']
[u'coalit', u'seek', u'tougher', u'sentenc', u'polic']
[u'communiti', u'warn', u'import']
[u'confin', u'ail', u'celebr', u'crocodil']
[u'costello', u'back', u'news', u'corp']
[u'costello', u'consid', u'infrastructur', u'fund', u'plea']
[u'council', u'dean', u'street', u'bridg']
[u'council', u'consid', u'waterfal', u'truck', u'movement']
[u'council', u'spar', u'resid', u'rate', u'rise']
[u'council', u'charg', u'effluent', u'dispos']
[u'court', u'hear', u'shoot', u'offic', u'fear', u'life']
[u'court', u'observ', u'jostl', u'brisban', u'report']
[u'date', u'chang', u'consid', u'agfair']
[u'boer', u'semi', u'final', u'ankl', u'injuri']
[u'democrat', u'question', u'koala']
[u'diplomat', u'deni', u'prais', u'vietnam', u'human', u'right']
[u'doubt', u'cast', u'adequaci', u'level', u'cross']
[u'doubt', u'cast', u'singl', u'birth', u'centr']
[u'appeal', u'mother', u'murder', u'sentenc']
[u'drought', u'cut', u'farm', u'number']
[u'drug', u'case', u'norman', u'rid', u'high']
[u'dutch', u'fan', u'soccer', u'sick']
[u'ead', u'interest', u'richmond', u'post']
[u'eden', u'eye', u'cruis', u'ship', u'tourism', u'potenti']
[u'elect', u'slow', u'employ', u'growth', u'survey']
[u'elliott', u'replac', u'pont', u'darwin', u'test']
[u'elvi', u'station', u'right', u'fan']
[u'emerald', u'budget', u'boost', u'rat']
[u'sight', u'polic', u'industri', u'woe']
[u'england', u'world', u'worst', u'rugbi', u'champion']
[u'english', u'press', u'hound', u'villain', u'uefa']
[u'timor', u'deport', u'australian', u'journalist']
[u'expans', u'unlik', u'barossa', u'impact']
[u'expert', u'fear', u'rise', u'hurt', u'mental']
[u'team', u'slow', u'notic']
[u'factori', u'destroy', u'blaze']
[u'fahrenheit', u'break', u'offic', u'record']
[u'famili', u'prais', u'have', u'emerg', u'beacon']
[u'feder', u'govt', u'urg', u'fund', u'water', u'plant']
[u'figur', u'highlight', u'southern', u'recycl', u'effort']
[u'fiji', u'govt', u'warn', u'coup', u'tell']
[u'caravan', u'park', u'owner', u'fin', u'creek']
[u'freddi', u'warn', u'origin', u'farewel']
[u'fund', u'preserv', u'biodivers', u'spot']
[u'garrett', u'learn', u'forestri', u'issu']
[u'pollut', u'cloud', u'indonesian', u'tell']
[u'gold', u'coast', u'convent', u'centr', u'long', u'overdu']
[u'govt', u'reject', u'claim', u'electr', u'price', u'rise']
[u'govt', u'famili', u'payment', u'bribe']
[u'green', u'brown', u'launch', u'hinkler', u'campaign']
[u'grower', u'flaw', u'appl', u'import', u'plan']
[u'guilti', u'plea', u'leav', u'origin', u'door', u'open', u'carrol']
[u'gunn', u'govt', u'fin', u'forestri', u'breach']
[u'hagan', u'appal', u'blue', u'drop', u'knight']
[u'hampstead', u'dump', u'simpkin', u'origin']
[u'harradin', u'call']
[u'hast', u'council', u'get', u'rate', u'rise']
[u'hick', u'tell', u'court', u'rule']
[u'high', u'protein', u'diet', u'link', u'concept', u'troubl']
[u'high', u'wind', u'grind', u'balloon', u'championship']
[u'howard', u'launch', u'obes', u'fight']
[u'howard', u'offer', u'condit', u'support', u'pulp']
[u'hume', u'confirm', u'prefer', u'jail', u'site']
[u'humpherson', u'seek', u'west', u'jail', u'answer']
[u'hunger', u'hormon', u'act', u'differ', u'studi']
[u'illeg', u'deport']
[u'injur', u'sailor', u'prais', u'rathbon']
[u'interim', u'file', u'plan', u'lure', u'hospit', u'staff']
[u'inventor', u'aim', u'sail', u'record', u'book']
[u'investig', u'continu', u'fatal', u'truck', u'accid']
[u'investig', u'probe', u'cycl', u'drug', u'claim']
[u'iraq', u'handov', u'offer', u'market', u'littl', u'support']
[u'israel', u'hit', u'gaza', u'target', u'hama', u'rocket', u'salvo']
[u'isra', u'shoot', u'dead', u'west', u'bank']
[u'isra', u'troop', u'kill', u'gaza', u'sweep']
[u'jam', u'hardi', u'anticip', u'asbesto', u'legal', u'claim']
[u'jiranek', u'nedv', u'yellow', u'alert', u'czech']
[u'john', u'stalk', u'case', u'accus', u'court']
[u'karzai', u'appeal', u'nato', u'assist']
[u'karzai', u'insist', u'sept', u'elect']
[u'kennedi', u'pleas', u'origin', u'selector', u'show']
[u'klien', u'franc', u'freak', u'accid']
[u'kuwait', u'renew', u'iraq', u'diplomat', u'tie']
[u'lack', u'region', u'knowledg', u'concern']
[u'larg', u'penalti', u'award', u'farm', u'worker', u'death']
[u'lawyer', u'cautious', u'report', u'chang']
[u'lawyer', u'plan', u'speedi', u'hick', u'appeal']
[u'leagu', u'club', u'tonight']
[u'liverpool', u'plain', u'council', u'take', u'shape']
[u'manag', u'upbeat', u'waikeri', u'wineri', u'sale']
[u'charg', u'rape', u'childer']
[u'jail', u'drive', u'offenc']
[u'refus', u'bail', u'virtual', u'prison', u'case']
[u'face', u'court', u'high', u'speed', u'chase']
[u'mildura', u'fight', u'takeov']
[u'milit', u'execut', u'soldier', u'iraq']
[u'attack', u'medicin', u'price', u'rise', u'plan']
[u'molik', u'pull']
[u'monti', u'squeez', u'chase', u'open', u'spot']
[u'carter', u'holt', u'harvey', u'wage', u'talk', u'plan']
[u'mother', u'deni', u'homosexu', u'kill', u'cousin']
[u'moot', u'dean', u'hoon']
[u'pitjantjatjara', u'independ']
[u'nat', u'reactor', u'wast', u'transport']
[u'agreement', u'weapon', u'rang']
[u'chief', u'outback', u'tourism', u'group']
[u'nicaraguan', u'landslid', u'kill']
[u'nightclub', u'risk', u'patron', u'live', u'court', u'tell']
[u'merger', u'croissant', u'council']
[u'noosa', u'consid', u'beach', u'smoke']
[u'cigarett', u'quit']
[u'nrma', u'dump', u'turnbul', u'presid']
[u'base', u'group', u'negoti', u'casino']
[u'ongo', u'spark', u'ward', u'murder', u'review']
[u'packag', u'explod', u'istanbul', u'plane']
[u'philippin', u'nab', u'suspect', u'ahead', u'inaugur']
[u'plane', u'crash', u'studi', u'highlight', u'danger', u'time']
[u'parti', u'surpris', u'canadian', u'vote']
[u'want', u'famili', u'overpay']
[u'pipelin', u'decis', u'delay']
[u'polic', u'await', u'skipper', u'rescu', u'navi']
[u'polic', u'arson', u'flat', u'blaze']
[u'pont', u'darwin', u'test']
[u'pont', u'starter', u'darwin', u'test']
[u'port', u'secur', u'plan', u'develop']
[u'powel', u'urg', u'warn', u'sudan', u'darfur', u'unrest']
[u'previous', u'failur', u'haunt', u'portug', u'netherland']
[u'princip', u'group', u'criticis', u'educ', u'squabbl']
[u'privat', u'hospit', u'lament', u'woe']
[u'prize', u'name', u'rubuntja', u'autobiographi', u'notabl']
[u'public', u'privat', u'partnership', u'creat', u'health']
[u'firm', u'seal', u'iraqi', u'forc', u'deal']
[u'refuge', u'reach', u'australia', u'nauru', u'detent']
[u'region', u'airport', u'plan', u'aliv']
[u'research', u'home', u'asthma', u'vaccin']
[u'saddam', u'face', u'handov', u'wednesday']
[u'sandon', u'aborigin', u'tent', u'embassi', u'stay']
[u'deliveri', u'bendigo', u'build', u'firek']
[u'search', u'continu', u'dump', u'miss', u'women']
[u'senior', u'aborigin', u'sack', u'meet', u'requir']
[u'serena', u'tackl', u'teenag', u'sensat']
[u'rat', u'fast', u'track', u'women', u'aphrodisiac']
[u'sharon', u'narrowli', u'beat', u'confid', u'vote']
[u'sheep', u'industri', u'year', u'recov']
[u'shoot', u'accus', u'assault', u'outsid', u'court']
[u'korea', u'parliament', u'approv']
[u'south', u'east', u'spar', u'southcorp', u'chang']
[u'sport', u'bodi', u'help', u'childhood', u'obes']
[u'state', u'want', u'power', u'transfer', u'terror', u'suspect']
[u'warn', u'commut', u'disrupt']
[u'storm', u'johnson', u'match']
[u'suspect', u'nuclear', u'site', u'research', u'facil', u'iran']
[u'tafe', u'goal', u'home', u'netbal']
[u'tasmanian', u'health', u'need', u'urgent', u'reform']
[u'west', u'coast', u'prepar', u'continu', u'delug']
[u'tate', u'civoniceva', u'berrigan', u'senior', u'stay', u'bronco']
[u'hold', u'polic', u'break', u'nato', u'protest']
[u'threat', u'kill', u'gerrard', u'chelsea']
[u'marin', u'kill', u'baghdad', u'bomb', u'attack']
[u'search', u'mother', u'babi']
[u'rugbi', u'watson', u'hang', u'whistl']
[u'tough', u'pakistan', u'readi', u'australia', u'say', u'inzamam']
[u'tour', u'dope', u'check', u'strike', u'threat']
[u'trade', u'deficit', u'steadi', u'despit', u'favour', u'condit']
[u'tradelink', u'store', u'closur', u'cost', u'job']
[u'trial', u'decis', u'reserv', u'polic', u'shoot', u'case']
[u'tweed', u'council', u'rais', u'rat']
[u'ullrich', u'readi', u'duel', u'armstrong']
[u'union', u'air', u'airport', u'secur', u'concern']
[u'union', u'chief', u'seek', u'tougher', u'region', u'airport', u'secur']
[u'union', u'highlight', u'sack', u'meatwork', u'plight']
[u'union', u'step', u'southcorp', u'worker']
[u'unit', u'offload', u'ruud', u'claim', u'advocaat']
[u'unreleas', u'magna', u'crash', u'adelaid']
[u'lawyer', u'welcom', u'histor', u'guantanamo', u'rule']
[u'resum', u'diplomat', u'tie', u'libya']
[u'valencia', u'benitez', u'file', u'rival', u'financi', u'claim']
[u'water', u'servic', u'cost', u'irrig']
[u'west', u'pilbara', u'seek', u'bigger', u'zone', u'rebat']
[u'whale', u'rider', u'invit', u'join', u'hollywood', u'gun']
[u'wood', u'woe', u'turn', u'spotlight', u'golf', u'gurus']
[u'worker', u'compo', u'premium', u'drop']
[u'taiwanes', u'pilot', u'head', u'toowoomba']
[u'yenda', u'wineri', u'close', u'southcorp', u'shakeup']
[u'yudhoyono', u'take', u'lead', u'indonesia', u'poll']
[u'zarqawi', u'milit', u'free', u'turkish', u'hostag']
[u'boost', u'miner', u'hall', u'fame']
[u'shepparton', u'medic', u'clinic']
[u'serb', u'offici', u'sack', u'karadz']
[u'abus', u'inquiri', u'report', u'month']
[u'accc', u'set', u'sight', u'cheaper', u'call']
[u'budget', u'pass', u'late', u'night', u'sit']
[u'action', u'talk', u'need', u'sudan', u'powel']
[u'wont', u'offer', u'export', u'guarante']
[u'advocaat', u'shrug', u'home', u'advantag']
[u'take', u'schedul', u'clash']
[u'alleg', u'killer', u'aust', u'journalist', u'soon', u'face']
[u'ambo', u'disput', u'escal']
[u'annan', u'deliv', u'sudan', u'ultimatum']
[u'area', u'health', u'servic', u'dark', u'govt', u'plan']
[u'argentina', u'meddl', u'minist']
[u'arroyo', u'swear', u'second', u'term']
[u'artist', u'win', u'court', u'battl', u'risqu', u'barbi', u'photo']
[u'asthma', u'test', u'provid', u'precis', u'diagnosi']
[u'athen', u'olymp', u'secur', u'start', u'roll']
[u'aussi', u'popov', u'pledg', u'futur', u'palac']
[u'australia', u'sign', u'deal']
[u'australia', u'struggl', u'reconcili', u'hreoc']
[u'aust', u'renew', u'tie', u'ghana']
[u'balkan', u'crime', u'suspect', u'tri', u'beat', u'deadlin']
[u'ballist', u'missil', u'launch', u'satellit']
[u'balloon', u'champion', u'name', u'soon']
[u'beazley', u'say', u'claim', u'fals']
[u'billiton', u'upbeat', u'electr', u'trial']
[u'phil', u'portug', u'close', u'renew', u'marriag']
[u'bird', u'kill', u'chicken', u'vietnam']
[u'bolton', u'target', u'portug', u'nuno', u'valent']
[u'booklet', u'outlin', u'green', u'project']
[u'brack', u'take', u'veteran', u'affair']
[u'brazil', u'creat', u'drug']
[u'bruce', u'stay', u'birmingham']
[u'bureau', u'play', u'fear', u'coastal', u'water']
[u'mainten', u'worker', u'industri', u'action', u'condemn']
[u'drip', u'fee', u'babi', u'bonus']
[u'quick', u'plan', u'save', u'softwood', u'industri']
[u'rethink', u'foreign', u'tourism', u'invest']
[u'timber', u'secur', u'boost']
[u'power', u'like', u'fail']
[u'cambodian', u'parti', u'seal', u'coalit', u'deal']
[u'capriati', u'confid', u'serena', u'trick']
[u'carrol', u'miss', u'origin']
[u'child', u'health', u'unit', u'close', u'say', u'labor']
[u'clarenc', u'valley', u'water', u'restrict', u'extend']
[u'costello', u'offer', u'littl', u'zone', u'rebat']
[u'council', u'back', u'librari', u'hour', u'chang']
[u'council', u'indi', u'plan', u'consider']
[u'councillor', u'lament', u'saleyard', u'decis']
[u'council', u'predict', u'singl', u'figur', u'rate', u'rise']
[u'council', u'urg', u'monitor', u'dajarra', u'water']
[u'countri', u'team', u'tackl', u'malacca', u'strait', u'piraci']
[u'court', u'boost', u'secur']
[u'deal', u'deadlin', u'today']
[u'credit', u'growth', u'continu', u'breakneck', u'pace']
[u'critic', u'increas', u'pressur', u'biosecur']
[u'czech', u'want', u'euro', u'poborski']
[u'davenport', u'gear', u'hurrah']
[u'doctor', u'defend', u'public', u'health']
[u'doctor', u'talli', u'green', u'light']
[u'doubt', u'cast', u'water', u'price', u'chang']
[u'drought', u'recoveri', u'time']
[u'eadi', u'qualifi', u'athen', u'squad']
[u'elliott', u'start', u'lanka']
[u'ellison', u'reject', u'corrupt', u'claim']
[u'famili', u'complain', u'gatto', u'prison', u'treatment']
[u'farmer', u'voic', u'anger', u'iraqi', u'debt', u'decis']
[u'fear', u'air', u'park', u'rise', u'impact']
[u'fear', u'cut', u'plan', u'affect', u'polic', u'servic']
[u'firm', u'experi', u'citrus', u'packer', u'shortag']
[u'drug', u'drive', u'test', u'trial', u'delay']
[u'woman', u'pregnant', u'ovarian', u'transplant']
[u'investig', u'offenc']
[u'fund', u'staff', u'age', u'care', u'wish', u'list']
[u'fund', u'alloc', u'strip', u'seal']
[u'game', u'hunt', u'licenc']
[u'game', u'regul', u'investig', u'casino']
[u'garrett', u'announc', u'point', u'nepean', u'park', u'polici']
[u'german', u'polic', u'detain', u'bomb', u'threat', u'plane']
[u'gidley', u'captainci', u'help', u'overcom', u'origin', u'snub']
[u'gidley', u'lead', u'knight']
[u'gilchrist', u'predict', u'torrid', u'darwin', u'test']
[u'gladston', u'back', u'airport', u'secur', u'upgrad']
[u'govt', u'play', u'benefit', u'blunder']
[u'govt', u'expand', u'medicar']
[u'govt', u'limit', u'price', u'increas']
[u'govt', u'abandon', u'speed', u'limit', u'plan']
[u'govt', u'urg', u'seek', u'civil', u'lawyer', u'habib']
[u'greater', u'polic', u'presenc', u'newcastl', u'port']
[u'green', u'encourag', u'young', u'enrol', u'vote']
[u'grey', u'nurs', u'shark', u'face', u'extinct']
[u'guidelin', u'suggest', u'target', u'ebay', u'fraudster']
[u'amnesti', u'deadlin', u'loom']
[u'hackett', u'unfaz', u'thorp', u'withdraw']
[u'hardi', u'director', u'scrutini', u'inquiri']
[u'health', u'author', u'warn', u'meningococc', u'risk']
[u'hendrix', u'relat', u'estat', u'court']
[u'herring', u'orang', u'juic', u'long', u'life', u'oldest', u'woman']
[u'household', u'elig', u'power', u'compens']
[u'katter']
[u'launch', u'oscar', u'style', u'award', u'ceremoni']
[u'independ', u'spark', u'abus']
[u'injur', u'agassi', u'hop', u'rest', u'help']
[u'investig', u'begin', u'high', u'speed', u'crash']
[u'iraqi', u'prime', u'minist', u'chair', u'detaine', u'committe']
[u'iraqi', u'legal', u'charg', u'saddam']
[u'iraq', u'instat', u'death', u'penalti']
[u'iraq', u'wheat', u'debt', u'recoveri', u'uncertain']
[u'irat', u'england', u'fan', u'defac', u'beckham', u'portrait']
[u'isra', u'court', u'order', u'barrier', u'move']
[u'johnson', u'disappoint', u'gold', u'medal', u'risk']
[u'jondaryan', u'shire', u'consid', u'rat', u'issu']
[u'katter', u'urg', u'oppos', u'educ', u'fund', u'condit']
[u'labor', u'unveil', u'coastguard', u'plan']
[u'laidley', u'say', u'friday', u'night', u'alright', u'roo']
[u'larsson', u'complet', u'barca']
[u'latham', u'free', u'trade']
[u'latham', u'talk', u'lake', u'illawarra', u'import']
[u'launceston', u'mayor', u'unabl', u'discuss', u'sport', u'complex']
[u'law', u'squeez', u'builder', u'green']
[u'lib', u'keen', u'commerci', u'hemp']
[u'lobster', u'season']
[u'local', u'anti', u'violenc', u'campaign', u'best', u'minist']
[u'majoli', u'retir']
[u'face', u'second', u'round', u'drug', u'charg']
[u'front', u'court', u'prohibit', u'good', u'charg']
[u'get', u'life', u'sentenc', u'rape', u'murder']
[u'market', u'close', u'year', u'posit', u'note']
[u'maroon', u'unsur', u'line', u'origin', u'decid']
[u'mayor', u'high', u'hop', u'snowi', u'servic']
[u'mayor', u'talk', u'cairn', u'budget']
[u'mayor', u'warn', u'loss']
[u'memori', u'march', u'spark', u'reconcili', u'talk']
[u'mercuri', u'clean', u'oper', u'take', u'time']
[u'meteorit', u'report', u'southern']
[u'minist', u'reject', u'jail', u'claim']
[u'miseri', u'turn', u'hope', u'tasmanian', u'cricket', u'fan']
[u'time', u'dump', u'guidelin']
[u'water', u'central', u'victoria']
[u'mortgag', u'broker', u'tip', u'fall', u'home', u'loan']
[u'confid', u'fish', u'surviv', u'despit']
[u'want', u'sport', u'free']
[u'gambier', u'break', u'rain', u'record']
[u'murder', u'accus', u'face', u'papua', u'communiti', u'meet']
[u'nat', u'closer', u'choos', u'great', u'southern']
[u'score', u'champ', u'mcgradi', u'join', u'rocket']
[u'build', u'accredit', u'rule']
[u'dean', u'focus', u'link', u'uni', u'activ']
[u'hospit', u'ward', u'boost', u'patient', u'flow']
[u'maroochi', u'council']
[u'scheme', u'address', u'weighti', u'problem']
[u'station', u'shed', u'light', u'power', u'woe']
[u'give', u'copper', u'concentr', u'storag', u'shed']
[u'impact', u'forestri', u'breach']
[u'nurs', u'return', u'walk', u'sydney']
[u'origin', u'player', u'say', u'hagan']
[u'oversea', u'doctor', u'adelaid', u'shortfal']
[u'parker', u'injur', u'bowman']
[u'passeng', u'rail', u'announc', u'track']
[u'passiv', u'smoke', u'heart', u'risk', u'doubl', u'earlier', u'estim']
[u'patient', u'tell', u'diabet', u'cure']
[u'paul', u'caution', u'polic']
[u'penguin', u'kill', u'control', u'burn']
[u'philippin', u'polic', u'foil', u'bomb', u'plot']
[u'polic', u'hunt', u'home', u'invad']
[u'polic', u'probe', u'teen', u'slash']
[u'polic', u'search', u'wheelchair', u'thief']
[u'poor', u'qualifi', u'turnout', u'disappoint', u'royal']
[u'propos', u'summit', u'boost', u'austasia', u'relat', u'downer']
[u'push', u'safe', u'bag']
[u'quarantin', u'watchdog', u'defend', u'risk', u'analysi']
[u'ralf', u'miss', u'french', u'report']
[u'ralli', u'driver', u'head', u'roma']
[u'region', u'race', u'offic', u'close']
[u'rfds', u'urg', u'releas', u'port', u'augusta', u'report']
[u'road', u'smash', u'injur']
[u'rocket', u'fall', u'sharon']
[u'erupt', u'highway', u'fund']
[u'russian', u'agent', u'give', u'life', u'chechen', u'leader']
[u'ryle', u'agre', u'stay', u'dragon']
[u'govt', u'announc', u'child', u'abus', u'inquiri']
[u'journalist', u'miss', u'afghanistan']
[u'scheme', u'address', u'murray', u'salin']
[u'world', u'put', u'polar', u'bear', u'kanook']
[u'septemb', u'date', u'sport', u'stadium', u'work']
[u'seven', u'pitcairn', u'face', u'abus', u'trial']
[u'shake', u'expect', u'child', u'sexual', u'assault']
[u'sharpshoot', u'larsson', u'sign', u'barca']
[u'sheedi', u'sign', u'year']
[u'sheedi', u'sign', u'year', u'deal']
[u'slipper', u'highlight', u'cost', u'greater', u'airport', u'secur']
[u'slow', u'pitch', u'tip', u'test']
[u'smelter', u'expans', u'depend', u'power', u'price']
[u'soldier', u'guilti', u'drag', u'race']
[u'sorenstam', u'eye', u'women', u'open', u'crown']
[u'send', u'home', u'briefcas', u'bungl']
[u'state', u'agre', u'paedophil', u'regist']
[u'steel', u'nation', u'fail', u'reach', u'subsidi', u'deal']
[u'strong', u'wind', u'lash', u'northern']
[u'studi', u'show', u'impact', u'economi']
[u'supermodel', u'spark', u'beach', u'stamped']
[u'survey', u'tip', u'moder', u'job', u'growth', u'ahead']
[u'survey', u'tip', u'strong', u'job', u'growth']
[u'suspect', u'shark', u'fish', u'boat', u'seiz']
[u'teacher', u'receiv', u'increas', u'match', u'cathol']
[u'thai', u'troop', u'begin', u'iraq', u'pullout', u'earli']
[u'time', u'prison', u'site', u'announc', u'question']
[u'tottenham', u'chase', u'chelsea', u'pair', u'geremi', u'cole']
[u'tour', u'boss', u'back', u'armstrong', u'amid', u'drug', u'claim']
[u'tyson', u'readi', u'ring', u'return']
[u'uefa', u'say', u'nedv', u'book', u'stand']
[u'underdog', u'hewitt', u'readi', u'feder', u'challeng']
[u'union', u'consid', u'legal', u'action', u'redund']
[u'univers', u'group', u'back', u'hec', u'increas']
[u'unnam', u'hawk', u'quiz', u'assault', u'claim']
[u'call', u'soldier']
[u'confid', u'sap', u'aussi', u'dollar']
[u'find', u'suspect', u'diseas']
[u'valencia', u'benitez', u'breach', u'contract']
[u'vasseur', u'cofidi', u'tour']
[u'vote', u'finish', u'cooma', u'monaro', u'council']
[u'wallabi', u'keep', u'win', u'formula', u'pacif']
[u'wallabi', u'stick', u'win', u'formula']
[u'water', u'filter', u'unit', u'offer', u'aquacultur']
[u'wit', u'compel', u'evid']
[u'woman', u'die', u'road', u'crash']
[u'woman', u'face', u'fraud', u'charg', u'sick', u'scam']
[u'women', u'kill', u'collis']
[u'veteran', u'smout', u'farewel', u'brisban']
[u'young', u'lose', u'sydney', u'relay', u'gold']
[u'zinifex', u'top', u'profit', u'forecast']
[u'rate', u'rise', u'hervey', u'resid']
[u'absent', u'minist', u'put', u'highway', u'talk', u'hold']
[u'realis', u'need', u'support', u'bulldog']
[u'airport', u'lift', u'passeng', u'number', u'high']
[u'airport', u'secur', u'breach', u'concern', u'minist']
[u'ambo', u'consid', u'industri', u'unrest']
[u'ambul', u'membership', u'increas', u'airport']
[u'andrew', u'urg', u'help', u'meatwork']
[u'bowl', u'club', u'closur', u'show', u'rapid', u'declin']
[u'anti', u'gambl', u'campaign', u'name', u'victorian']
[u'assembl', u'debat', u'gungahlin', u'extens']
[u'assist', u'offer', u'debtor']
[u'astronaut', u'complet', u'space', u'walk', u'quick', u'time']
[u'astronaut', u'start', u'spacewalk', u'repair']
[u'attapatu', u'minut', u'decis', u'line']
[u'aussi', u'dollar', u'despit', u'rat', u'decis']
[u'austoft', u'worker', u'help', u'work']
[u'australia', u'edg', u'synchrotron']
[u'babi', u'steal']
[u'babi', u'miss', u'steal', u'sydney']
[u'ballarat', u'council', u'lift', u'rat']
[u'blair', u'expect', u'detail', u'iraq', u'secur', u'plan', u'soon']
[u'blair', u'hit', u'militari', u'tribun']
[u'blair', u'comment', u'reflect', u'bad', u'australia', u'say']
[u'blaze', u'damag', u'beverford', u'school']
[u'bomb', u'threat', u'delay', u'fiji', u'treason', u'trial']
[u'bradford', u'brink', u'extinct']
[u'britain', u'detain', u'moroccan', u'septemb', u'madrid']
[u'british', u'press', u'lay', u'hopeless', u'henman']
[u'broadway', u'show', u'continu', u'contract', u'talk', u'resum']
[u'brown', u'unhappi', u'costello', u'visit']
[u'businessman', u'fight', u'court', u'asic', u'decis']
[u'mainten', u'worker', u'strike']
[u'greater', u'fisheri', u'educ']
[u'special', u'class', u'autist', u'children']
[u'carr', u'warn', u'clarenc', u'valley', u'loss']
[u'cassini', u'space', u'probe', u'enter', u'saturn', u'orbit']
[u'cattl', u'track', u'radio', u'transmitt']
[u'chang', u'nativ', u'scrub', u'harvest']
[u'chelsea', u'releas', u'crowd', u'favourit', u'hasselbaink']
[u'chocol', u'factori', u'caus', u'power', u'outag']
[u'chopper', u'ambul', u'feel', u'feder', u'airport', u'charg']
[u'compani', u'fin', u'worker', u'disabl']
[u'coron', u'say', u'systemat', u'failur', u'exist', u'polic']
[u'costello', u'consid', u'tourism', u'foreign', u'invest']
[u'council', u'foreshadow', u'noosa', u'rate', u'rise']
[u'coupl', u'forc', u'departur', u'australia', u'unfair']
[u'court', u'hear', u'natasha', u'ryan', u'boyfriend', u'charg']
[u'test', u'negat', u'diseas', u'offici']
[u'cross', u'stay', u'rooster']
[u'crow', u'fresh', u'face']
[u'cum', u'donat', u'race', u'museum']
[u'czech', u'defend', u'bolf', u'semi']
[u'dairi', u'industri', u'air', u'drought', u'fear']
[u'dallaglio', u'back', u'england', u'bounc']
[u'danih', u'dismiss', u'contract', u'rumour']
[u'deal', u'reach', u'pilbara', u'ancient', u'rock']
[u'detect', u'uniform', u'duti', u'investig']
[u'dfat', u'seek', u'clarif', u'miss', u'journalist']
[u'diseas', u'control', u'head', u'resign', u'sar', u'outbreak']
[u'donat', u'seek', u'communiti', u'kitchen']
[u'doubt', u'cast', u'livestock', u'scheme']
[u'downer', u'back', u'beazley', u'secur', u'risk', u'claim']
[u'downer', u'meet', u'indonesian', u'religi', u'leader']
[u'guilti', u'plan', u'rape']
[u'dust', u'storm', u'whip', u'land', u'manag', u'claim']
[u'electrician', u'threaten', u'industri', u'action']
[u'elton', u'john', u'take', u'stage', u'footbal', u'club']
[u'elton', u'john', u'take', u'stage', u'watford']
[u'emerg', u'respons', u'author', u'launch']
[u'england', u'recal', u'flintoff', u'seri']
[u'euthanasia', u'campaign', u'convict', u'attempt']
[u'consid', u'extend', u'calendar']
[u'famili', u'bonus', u'caus', u'drop', u'emerg', u'relief', u'salvo']
[u'famili', u'comment', u'collin', u'abus', u'claim']
[u'feder', u'end', u'hewitt', u'wimbledon', u'charg']
[u'govt', u'question', u'energi', u'polici', u'impact']
[u'figo', u'lead', u'portug', u'euro', u'final']
[u'food', u'airlift', u'begin', u'sudan']
[u'french', u'forestri', u'worker', u'admit', u'child', u'murder']
[u'fund', u'boost', u'marin', u'safeti']
[u'fund', u'flood', u'proof', u'causeway']
[u'goosen', u'eye', u'titl']
[u'govt', u'attack', u'gungahlin', u'drive', u'plan']
[u'govt', u'expect', u'green', u'light', u'park', u'clear']
[u'govt', u'wont', u'chase', u'overpay']
[u'grave', u'concern', u'rais', u'yarravill', u'plan']
[u'greek', u'revel', u'semi', u'appear', u'despit', u'pressur']
[u'green', u'law', u'thousand', u'hous', u'cost']
[u'guantanamo', u'prison', u'move', u'soil']
[u'gunman', u'lose', u'mexican', u'stand']
[u'hawk', u'player', u'accus', u'assault', u'schwab']
[u'health', u'report', u'implic', u'discuss']
[u'help', u'request', u'afghan', u'refuge']
[u'hewitt', u'take', u'feder']
[u'high', u'wind', u'blast', u'snowi', u'mountain']
[u'danc', u'doll', u'ridicul', u'saddam']
[u'hong', u'kong', u'mark', u'china', u'anniversari']
[u'howard', u'stern', u'return']
[u'zimbabw', u'test', u'decis']
[u'indigen', u'communiti', u'owe', u'million']
[u'indigen', u'servic', u'continu', u'despit', u'atsic']
[u'indonesia', u'detain', u'bali', u'bomb']
[u'integr', u'ticket', u'kick', u'south', u'east']
[u'internet', u'increas', u'year', u'high']
[u'investig', u'begin', u'secur', u'breach']
[u'iran', u'say', u'britain', u'incorrect', u'captur', u'sailor']
[u'israel', u'send', u'tank', u'jericho']
[u'japanes', u'busi', u'confid', u'improv']
[u'journalist', u'afghanistan', u'safe']
[u'kitten', u'tortur', u'discharg', u'armi']
[u'kookaburra', u'lose', u'veteran', u'campaign']
[u'kuwait', u'say', u'saddam']
[u'labor', u'hit', u'long', u'term', u'unemploy', u'figur']
[u'labor', u'seiz', u'cosgrov', u'iraq', u'comment']
[u'lake', u'georg', u'fish', u'stay']
[u'lara', u'tell', u'player', u'head']
[u'latham', u'say', u'degre', u'outrag']
[u'lifesav', u'coach', u'clear', u'complaint']
[u'loan', u'tip', u'coral', u'reef', u'fisher', u'extra']
[u'die', u'reservoir', u'fall']
[u'jail', u'hijack']
[u'manufactur', u'growth', u'eas']
[u'mayor', u'urg', u'clarifi', u'secur', u'breach', u'claim']
[u'mcgee', u'eye', u'prologu', u'glori']
[u'mcgee', u'protest', u'smear', u'campaign']
[u'mcgrath', u'ensur', u'honour', u'share']
[u'mclaren', u'unveil', u'magni', u'cour']
[u'meet', u'plan', u'avert', u'strike']
[u'minist', u'criticis', u'describ', u'prison', u'assault']
[u'mix', u'fortun', u'mum']
[u'doblo', u'talk', u'today']
[u'protect', u'seahors']
[u'shire', u'possibl', u'central', u'west']
[u'korea', u'accus', u'plan', u'attack']
[u'mysteri', u'baross', u'form', u'brueckner']
[u'sale', u'power', u'station']
[u'ombudsman', u'call', u'account', u'terror', u'law']
[u'kill', u'injur', u'afghanistan', u'blast']
[u'parent', u'jail', u'abalon', u'bust']
[u'passeng', u'report', u'calm', u'emerg', u'land']
[u'pearl', u'industri', u'recognis', u'anniversari']
[u'pilot', u'forc', u'emerg', u'land']
[u'poland', u'troop', u'iraq']
[u'polic', u'confirm', u'labor', u'senat']
[u'polic', u'investig', u'suspect', u'murder']
[u'polic', u'minist', u'oversea', u'trip', u'necessari', u'premier']
[u'polic', u'search', u'taxi', u'driver', u'murder']
[u'polic', u'target', u'paint', u'sniffer']
[u'polic', u'treat', u'school', u'suspici']
[u'port', u'augusta', u'council', u'leav', u'eplga']
[u'port', u'author', u'boost', u'secur']
[u'port', u'readi', u'saint']
[u'power', u'chocol', u'factori']
[u'power', u'price', u'rise']
[u'power', u'station', u'boost']
[u'problem', u'gambler', u'market']
[u'protest', u'ralli', u'chines', u'govern']
[u'ratepay', u'group', u'voic', u'worri']
[u'ratepay', u'angri', u'rate', u'rise']
[u'redfern', u'polic', u'consid', u'industri', u'action']
[u'retail', u'spend', u'bounc']
[u'retir', u'judg', u'take', u'part', u'shoot']
[u'aim', u'weed', u'potenti', u'arsonist']
[u'continu', u'water', u'plan']
[u'rowl', u'reveal', u'harri', u'potter', u'book', u'titl']
[u'rspca', u'brace', u'spook', u'anim', u'influx']
[u'ruud', u'put', u'sale', u'rumour']
[u'saddam', u'appear', u'iraqi', u'court']
[u'saddam', u'defiant', u'court', u'appear']
[u'saddam', u'expect', u'charg', u'baghdad', u'court']
[u'saddam', u'face', u'court']
[u'saddam', u'face', u'justic', u'pleasur', u'palac']
[u'saddam', u'hussein', u'nervous', u'handov']
[u'govt', u'expand', u'growden', u'compo', u'fund']
[u'move', u'attract', u'busi']
[u'sanchez', u'step', u'post', u'iraq']
[u'sanchez', u'vicaro', u'compet', u'fifth', u'olymp']
[u'scheme', u'target', u'young', u'worker', u'right']
[u'schumach', u'roll', u'franc']
[u'seagul', u'face', u'tough', u'young', u'gun', u'challeng']
[u'search', u'miss', u'trail', u'bike', u'rider']
[u'secur', u'boost', u'mildura', u'airport']
[u'senior', u'iraqi', u'financ', u'ministri', u'offici', u'die']
[u'serena', u'destroy', u'capriati', u'mauresmo', u'advanc']
[u'share', u'market', u'start', u'financi', u'year', u'green']
[u'ship', u'emerg', u'spark', u'port', u'procedur', u'question']
[u'shire', u'lament', u'jetti', u'fund', u'deadlin']
[u'silver', u'fern', u'outgun', u'aussi', u'netbal']
[u'small', u'busi', u'reap', u'cut']
[u'smith', u'blue', u'depth']
[u'smaller', u'beach', u'lose', u'patrol']
[u'southcorp', u'shakeup', u'worri', u'union']
[u'south', u'west', u'record', u'june']
[u'spinal', u'fractur', u'rule', u'ralf', u'month']
[u'statist', u'highlight', u'age', u'west', u'popul']
[u'sudan', u'pledg', u'refuge', u'crisi']
[u'sudan', u'humanitarian', u'crisi']
[u'support', u'tourism', u'levi', u'scrap']
[u'survey', u'consid', u'petroleum', u'potenti']
[u'survey', u'highlight', u'farm', u'worker']
[u'tasmania', u'australia', u'safest', u'state']
[u'taxpay', u'warn', u'fraudul', u'claim']
[u'teacher', u'consid', u'rise', u'respons']
[u'terror', u'obscur', u'world', u'crise', u'william', u'say']
[u'tidbinbilla', u'guid', u'cassini', u'saturn', u'orbit']
[u'saudi', u'qaeda', u'spiritu', u'guid', u'kill']
[u'treati', u'clear', u'aust', u'polic', u'deploy']
[u'trump', u'magazin', u'launch', u'septemb']
[u'palestinian', u'kill', u'isra', u'troop', u'detain']
[u'unser', u'junior', u'confirm', u'retir', u'plan']
[u'increas', u'zarqawi', u'bounti']
[u'rais', u'rate', u'percent']
[u'vail', u'stand', u'iraq', u'grain', u'decis']
[u'vasseur', u'tour', u'stand', u'armstrong', u'await', u'book']
[u'walgett', u'council', u'sack']
[u'wallabi', u'awar', u'island', u'threat', u'jone']
[u'pass', u'stem', u'cell', u'law']
[u'stamp', u'duti', u'expect', u'spark', u'mini', u'real']
[u'wast', u'facil', u'replac', u'smaller', u'dump']
[u'water', u'shake', u'pipelin']
[u'whitsunday', u'council', u'consid', u'rat', u'shake']
[u'woman', u'horrif', u'attack', u'identifi']
[u'woman', u'hospit', u'stab']
[u'woman', u'death', u'investig']
[u'women', u'cop', u'ditch', u'cap', u'save', u'coiffur']
[u'wood', u'seek', u'fourth', u'western', u'open', u'titl']
[u'work', u'home', u'council', u'admin', u'staff']
[u'work', u'progress', u'pipelin']
[u'york', u'park', u'tribut', u'premier']
[u'seek', u'boost', u'rural', u'specialist']
[u'consid', u'downer', u'complaint', u'program']
[u'accus', u'cyclist', u'know', u'fate', u'tomorrow']
[u'actu', u'hit', u'monitor', u'worker', u'internet']
[u'administr', u'appoint', u'agenc']
[u'explain', u'blue', u'ribbon', u'futur', u'direct']
[u'allenbi', u'second', u'western', u'open']
[u'ord', u'edg', u'lower', u'lacklustr', u'market']
[u'anger', u'sale', u'evandal', u'unit']
[u'aquat', u'centr', u'weigh', u'mcdonald', u'sponsorship']
[u'arm', u'stand', u'continu', u'sydney']
[u'armstrong', u'remain', u'resolut', u'drug', u'claim']
[u'galleri', u'acquir', u'rare', u'japanes', u'artwork']
[u'athen', u'burn', u'greek', u'semi', u'victori']
[u'aust', u'dollar', u'gain', u'valu', u'strong']
[u'austoft', u'plant', u'shut', u'door']
[u'australia', u'sign', u'asean', u'anti', u'terror', u'agreement']
[u'baghdad', u'hotel', u'come']
[u'bali', u'health', u'centr', u'memori', u'bomb', u'victim']
[u'barrichello', u'quickest', u'montoya', u'crash', u'practic']
[u'beard', u'contest', u'whos', u'rest']
[u'bomber', u'edg', u'roo', u'dockland']
[u'brigadi', u'back', u'report', u'kitten', u'tortur']
[u'bush', u'welcom', u'saddam', u'court', u'appear']
[u'buyer', u'doblo', u'properti']
[u'carter', u'holt', u'harvey', u'worker', u'accept', u'offer']
[u'celebr', u'erupt', u'greec', u'book', u'spot', u'euro']
[u'chao', u'hit', u'peruvian', u'citi', u'protest', u'break']
[u'chief', u'scientist', u'deni', u'conflict']
[u'citrus', u'industri', u'push', u'china', u'access']
[u'collina', u'bow', u'intern', u'footbal']
[u'commonwealth', u'bank', u'staff', u'vote', u'continu']
[u'commonwealth', u'bank', u'worker', u'threaten', u'strike']
[u'coron', u'seek', u'chang', u'pursuit', u'definit']
[u'council', u'administr', u'declar']
[u'council', u'back', u'skill', u'migrant', u'push']
[u'council', u'auslink', u'road', u'fund', u'slash']
[u'council', u'lift', u'rat']
[u'council', u'tackl', u'high', u'cost', u'sick', u'day']
[u'cowboy', u'confid', u'form', u'rooster']
[u'cowboy', u'confid', u'roll', u'rooster']
[u'push', u'health', u'servic', u'retent']
[u'cycl', u'inquiri', u'report', u'hand']
[u'cyclist', u'await', u'dope', u'inquiri', u'find']
[u'darwin', u'pitch', u'bamboozl', u'aussi', u'batsmen']
[u'darwin', u'dili', u'yacht', u'race', u'cancel']
[u'debat', u'seek', u'plan', u'strategi']
[u'demon', u'fin', u'late', u'contract', u'submiss']
[u'demon', u'fin', u'late', u'submiss']
[u'vere', u'loss', u'blow', u'tate']
[u'vere', u'england']
[u'doctor', u'boost', u'south', u'east']
[u'doubt', u'cast', u'train', u'scheme']
[u'dun', u'island', u'clash']
[u'effect', u'perth', u'curfew', u'challeng']
[u'england', u'win', u'way', u'windi']
[u'consid', u'dust', u'pollut', u'problem']
[u'eplga', u'hold', u'crisi', u'meet']
[u'timor', u'assign', u'end', u'aqi', u'offic']
[u'farmer', u'group', u'boost', u'region', u'servic', u'manag']
[u'presid', u'mosley', u'step']
[u'financi', u'counsel', u'servic', u'break', u'hill']
[u'firm', u'gear', u'china', u'export', u'deal']
[u'turkish', u'bomb']
[u'fletcher', u'bomber', u'lion', u'welcom', u'lynch']
[u'clerk', u'convict', u'polic', u'threat']
[u'polic', u'offic', u'win', u'damag', u'lack']
[u'gilchrist', u'set', u'lankan', u'chase']
[u'govt', u'cast', u'welfar', u'lifelin']
[u'govt', u'reject', u'latest', u'long', u'term', u'unemploy', u'figur']
[u'greec', u'book', u'spot', u'euro', u'final']
[u'greec', u'pretti', u'pretti', u'effect']
[u'group', u'rule', u'link', u'long', u'hour']
[u'hegarti', u'sign', u'south']
[u'hitzfeld', u'turn', u'german', u'coach']
[u'home', u'build', u'gain', u'momentum']
[u'hope', u'remain', u'rail', u'job']
[u'howard', u'want', u'hick', u'habib', u'tri']
[u'confirm', u'postpon', u'zimbabw', u'test']
[u'illawarra', u'consid', u'scandinavian', u'age', u'care', u'model']
[u'illeg', u'transact', u'lead', u'good', u'behaviour', u'bond']
[u'health', u'forc', u'postpon', u'milosev', u'defenc']
[u'indigen', u'group', u'unhappi', u'water', u'consult']
[u'irrig', u'miss', u'water', u'alloc']
[u'isra', u'pair', u'tri', u'obtain', u'passport']
[u'jordan', u'consid', u'send', u'troop', u'iraq']
[u'journalist', u'tight', u'lip', u'miss', u'day']
[u'kurdish', u'rebel', u'deni', u'respons', u'turkey']
[u'labor', u'polici', u'threaten', u'growth', u'report']
[u'labor', u'promis', u'telemarket', u'regist']
[u'lacklustr', u'bomber', u'lose', u'straight']
[u'latham', u'accus', u'verbal', u'defenc', u'forc', u'chief']
[u'latham', u'play', u'past', u'alterc']
[u'council', u'call', u'offend', u'regist']
[u'leagu', u'chairman', u'upbeat', u'refere', u'woe']
[u'lion', u'welcom', u'lynch']
[u'liverpool', u'plain', u'shire', u'councillor', u'name']
[u'loan', u'coral', u'reef', u'fisher', u'extra', u'quota']
[u'lucki', u'rossi']
[u'accus', u'abduct', u'babi', u'appear', u'court']
[u'arrest', u'follow', u'prison', u'worker', u'assault']
[u'plead', u'guilti', u'chemist', u'murder']
[u'maroon', u'miss', u'carrol', u'defenc', u'crocker']
[u'matilda', u'clinch', u'china', u'seri', u'draw']
[u'media', u'warn', u'restraint', u'collin']
[u'medicar', u'packag', u'confus', u'amaq']
[u'meet', u'consid', u'help', u'wineri', u'worker']
[u'meet', u'consid', u'bateman', u'foreshor', u'plan']
[u'melbourn', u'landmark', u'receiv', u'world', u'heritag', u'list']
[u'melbourn', u'prepar', u'euro', u'final']
[u'mickleberg', u'clear', u'perth', u'mint', u'swindl']
[u'milit', u'kill', u'alleg', u'palestinian', u'israel']
[u'milk', u'produc', u'vent', u'frustrat']
[u'millar', u'pull', u'british', u'olymp', u'team']
[u'millar', u'face', u'dope', u'probe']
[u'minist', u'highlight', u'need', u'shear', u'industri']
[u'miss', u'motorbik', u'rider', u'safe']
[u'fund', u'seek', u'bowel', u'cancer', u'program']
[u'place', u'alloc', u'griffith', u'parkland']
[u'place', u'announc']
[u'morrison', u'leav', u'cowboy']
[u'mourner', u'gather', u'farewel', u'journalist']
[u'hit', u'embryo', u'research', u'law']
[u'filthi', u'rich', u'buyer']
[u'murali', u'rule', u'later', u'tour']
[u'nauru', u'govt', u'staff', u'evict', u'melbourn', u'offic']
[u'research', u'centr', u'combat', u'tooth', u'decay']
[u'restrict', u'kid']
[u'victorian', u'truck', u'roll']
[u'nightclub', u'pledg', u'clean']
[u'korea', u'agre', u'trust', u'issu', u'thwart', u'progress']
[u'ohern', u'share', u'lead', u'ireland']
[u'panther', u'blitz', u'rag', u'storm']
[u'parkland', u'clear', u'expect', u'soon']
[u'peak', u'tourism', u'season', u'mix']
[u'plan', u'continu', u'energi', u'plant']
[u'wont', u'oppos', u'death', u'penalti', u'saddam']
[u'polic', u'continu', u'stand', u'negoti']
[u'polic', u'investig', u'singl', u'vehicl', u'accid']
[u'polic', u'link', u'arrest', u'terrorist', u'bomb']
[u'polic', u'probe', u'deton', u'theft']
[u'polic', u'probe', u'school', u'blaze']
[u'polic', u'raid', u'collin', u'home']
[u'port', u'augusta', u'announc', u'budget', u'project']
[u'powel', u'meet', u'north', u'korean', u'counterpart']
[u'powel', u'say', u'assum', u'saddam', u'innoc']
[u'prais', u'rock', u'decis']
[u'prison', u'group', u'hit', u'overpay']
[u'prop', u'logan', u'return', u'south']
[u'govt', u'stand', u'burnett', u'river']
[u'electrician', u'consid', u'industri', u'unrest']
[u'queanbeyan', u'crash', u'name', u'releas']
[u'rabi', u'infect', u'organ', u'kill']
[u'radio', u'day', u'outback', u'school']
[u'rail', u'bridg', u'entomb', u'ipswich', u'shop', u'centr']
[u'receiv', u'seal', u'nauru', u'melbourn', u'offic']
[u'relat', u'britain', u'iran', u'continu']
[u'report', u'detail', u'sniffer', u'drug', u'search', u'result']
[u'review', u'prompt', u'museum', u'overhaul']
[u'rezon', u'take', u'pressur', u'reef']
[u'riverland', u'staff', u'wont', u'join', u'strike']
[u'rocklea', u'trot', u'fall', u'victim', u'lack', u'fund']
[u'saddam', u'defiant', u'face', u'genocid', u'charg']
[u'safeti', u'group', u'probe', u'emerg', u'land']
[u'saleyard', u'plan', u'move', u'ahead']
[u'salvo', u'applaud', u'famili', u'payment', u'benefit']
[u'port', u'boost', u'secur']
[u'saturn', u'pictur', u'yield', u'surpris']
[u'scheme', u'help', u'student', u'nurs', u'stay', u'touch']
[u'secur', u'boost', u'port', u'kembla']
[u'secur', u'upgrad', u'tasmanian', u'port']
[u'senat', u'blame', u'polit', u'forest', u'report', u'delay']
[u'serena', u'sharapova', u'wimbledon', u'showdown']
[u'shire', u'reconsid', u'geraldton', u'alloc']
[u'showbag', u'item', u'remov', u'safeti', u'sake']
[u'silver', u'fern', u'secur', u'seri']
[u'hospit', u'infect']
[u'sixteen', u'kill', u'turkish', u'quak', u'report']
[u'wound', u'gaza', u'citi', u'incurs']
[u'small', u'eas', u'water', u'restrict']
[u'smith', u'prayer', u'final', u'answer']
[u'staff', u'stage', u'condit', u'strike']
[u'specialist', u'warn', u'public', u'hospit', u'crisi']
[u'stan', u'laurel', u'souvenir', u'snap', u'auction']
[u'stevedor', u'compani', u'join', u'victoria', u'dock']
[u'studi', u'reveal', u'rain', u'mar']
[u'sudan', u'toll', u'offici', u'warn']
[u'sudan', u'urg', u'urgent', u'action', u'protect']
[u'suspect', u'citrus', u'diseas', u'outbreak', u'investig']
[u'sydney', u'street', u'evacu', u'sieg']
[u'tasmanian', u'casino', u'worker', u'strike']
[u'tasmania', u'receiv', u'record', u'rainfal', u'june']
[u'teacher', u'group', u'worri', u'princip']
[u'telemarket', u'signal', u'need', u'nation', u'regist']
[u'member', u'french', u'paedophil', u'ring', u'jail']
[u'rise', u'fall', u'saddam']
[u'model', u'moot', u'shire', u'merger']
[u'time', u'warner', u'enter', u'bid', u'fray']
[u'saudi', u'milit', u'kill', u'shootout']
[u'tour', u'battl', u'say', u'ullrich']
[u'track', u'clear', u'freight', u'australia', u'acquisit']
[u'traumatis', u'anim', u'rspca', u'busi']
[u'treasur', u'head', u'south', u'korean', u'trade', u'mission']
[u'tree', u'domain', u'say', u'carr']
[u'turkish', u'hostag', u'free', u'iraq']
[u'soldier', u'charg', u'shoot', u'iraq']
[u'unemploy', u'figur', u'prompt', u'train', u'review', u'call']
[u'unherald', u'amateur', u'lead', u'massachusett']
[u'union', u'want', u'better', u'outcom', u'meatwork']
[u'union', u'urg', u'staff', u'walk']
[u'uriarra', u'pierc', u'creek', u'develop', u'halt']
[u'lawyer', u'demand', u'access', u'habib']
[u'releas', u'guantanamo', u'detaine']
[u'turn', u'away', u'ship', u'secur', u'failur']
[u'viduka', u'pois', u'boro']
[u'word', u'erupt', u'lengthi', u'council', u'meet']
[u'water', u'board', u'anti', u'irrig']
[u'prepar', u'indigen', u'market', u'strategi']
[u'wife', u'disgrac', u'admit', u'lie', u'corrupt']
[u'wild', u'deer', u'woe', u'troubl', u'council']
[u'wit', u'seek', u'pedestrian', u'truck', u'accid']
[u'woman', u'die', u'melbourn', u'hous']
[u'woman', u'plead', u'guilti', u'steal', u'bank']
[u'world', u'secur', u'say', u'vice', u'presid']
[u'yudhoyono', u'lead', u'indonesian', u'poll']
[u'taliban', u'fighter', u'kill']
[u'age', u'care', u'phone', u'pressur', u'govern']
[u'aid', u'number', u'grow', u'india']
[u'ambros', u'secur', u'pole']
[u'armstrong', u'lose', u'book', u'appeal']
[u'arrest', u'lawyer', u'murder']
[u'aussi', u'trail', u'illinoi', u'lead']
[u'australia', u'indonesia', u'fight', u'religi', u'mistrust']
[u'australia', u'indonesia', u'open', u'region', u'anti', u'terror']
[u'australia', u'join', u'spam', u'fight']
[u'bahrain', u'terror', u'threat', u'prompt', u'pullout']
[u'bennett', u'slam', u'player', u'trade']
[u'bodi', u'sieg', u'gunman']
[u'builder', u'warn', u'rat', u'rise', u'slow', u'activ']
[u'busi', u'usual', u'despit', u'casino', u'strike']
[u'canadian', u'set', u'pace', u'peac']
[u'canadian', u'rush', u'afghan', u'surgeri']
[u'canberra', u'rainfal', u'near', u'record', u'low']
[u'prompt', u'civic', u'evacu']
[u'cash', u'elder', u'worri', u'crime', u'fighter']
[u'cave', u'hold', u'clue', u'mysteri', u'hare']
[u'urg', u'reveal', u'qaeda', u'interrog', u'method']
[u'council', u'queri', u'ipswich', u'bridg', u'decis']
[u'csiro', u'give', u'wattl', u'boost', u'salin', u'fight']
[u'cyclist', u'clear', u'drug', u'claim']
[u'cyclist', u'pedal', u'drug']
[u'darfur', u'crisi', u'talk', u'begin', u'juli']
[u'develop', u'plan', u'maintain', u'harbour', u'health']
[u'eagl', u'defeat', u'cat', u'dour', u'clash']
[u'fatal', u'accid', u'prompt', u'warn', u'motorist']
[u'feder', u'finish', u'grosjean', u'reach', u'final']
[u'feyenoord', u'deal', u'socceroo', u'brosqu']
[u'filipino', u'rosal', u'lead', u'women', u'open']
[u'dead', u'kansa', u'shoot']
[u'dead', u'kansa', u'shoot', u'spree']
[u'fourth', u'stevedor', u'plan', u'concern']
[u'frawley', u'deadlin', u'endang', u'tiger']
[u'futur', u'head', u'talk']
[u'german', u'win', u'balloon', u'championship']
[u'gibernau', u'take', u'provision', u'pole']
[u'gingin', u'local', u'tell', u'groundwat', u'unsaf']
[u'goosen', u'grab', u'dublin', u'lead']
[u'green', u'empt', u'elect', u'campaign']
[u'gregan', u'readi', u'island', u'rough', u'stuff']
[u'guard', u'suspend', u'prison', u'death']
[u'heat', u'wave', u'kill', u'china', u'await', u'typhoon']
[u'hold', u'victim', u'crime', u'law', u'unfair', u'stanhop']
[u'danger', u'armstrong', u'say', u'mayo']
[u'quot', u'tribut', u'marlon', u'brando']
[u'iraqi', u'govt', u'emerg', u'law']
[u'iraqi', u'tribun', u'want', u'defend', u'split']
[u'iraq', u'export', u'ruptur']
[u'israel', u'thwart', u'suicid', u'bomber']
[u'kashmir', u'bomb', u'kill', u'injur']
[u'kasprowicz', u'captur', u'seven', u'aussi']
[u'kiwi', u'fan', u'spit', u'lion', u'ticket', u'snub']
[u'labor', u'reject', u'critic', u'workplac', u'plan']
[u'land', u'council', u'take', u'control', u'rock', u'site']
[u'lankan', u'limp', u'lunch']
[u'leak', u'suspicion', u'prompt', u'skywest', u'investig']
[u'lion', u'hold', u'tiger']
[u'magpi', u'hammer', u'hawk']
[u'charg', u'nightclub', u'clash']
[u'marlon', u'brando', u'die']
[u'marlon', u'brando', u'method']
[u'mcgee', u'bid', u'doubl', u'tour', u'prologu']
[u'milner', u'join', u'viduka', u'leed', u'exodus']
[u'evacu', u'goldfield', u'explos']
[u'minist', u'deni', u'swindl', u'polic', u'inquiri', u'necessari']
[u'miss', u'friend', u'hous']
[u'modburi', u'shoot', u'lead', u'polic', u'stand']
[u'murdoch', u'welcom', u'lion', u'share', u'fund']
[u'diseas', u'threaten', u'citrus', u'crop']
[u'prison', u'abus', u'claim', u'probe']
[u'farmer', u'diseas', u'track', u'deadlin']
[u'polic', u'work', u'get', u'reward']
[u'goanna', u'suffer', u'cane', u'toad', u'expans']
[u'nurs', u'hear', u'age', u'care', u'grip']
[u'nurs', u'welcom', u'latex', u'allergi', u'compens']
[u'opal', u'tough', u'china']
[u'patienc', u'urg', u'cyclist', u'domin', u'canberra', u'road']
[u'petacchi', u'bring', u'say', u'mcewen']
[u'plan', u'author', u'combat', u'public', u'confus']
[u'polic', u'continu', u'negoti', u'banksia', u'sieg']
[u'polic', u'fear', u'miss', u'boy', u'welfar']
[u'powel', u'get', u'asean', u'forum']
[u'prehistor', u'skull', u'fill', u'human', u'fossil', u'gap']
[u'polic', u'dismiss', u'terror', u'base', u'claim']
[u'raider', u'tame', u'tiger']
[u'rain', u'halt', u'feder', u'roddick']
[u'rooster', u'cowboy']
[u'russian', u'offic', u'arriv', u'yuko']
[u'russian', u'ralli', u'welfar', u'chang']
[u'rwanda', u'open', u'border', u'congo']
[u'second', u'sizzl', u'pittman', u'guerrouj', u'beat']
[u'shelter', u'moot', u'eas', u'homeless']
[u'shoot', u'suspect', u'give', u'polic', u'slip']
[u'sieg', u'continu', u'sydney']
[u'soft', u'job', u'data', u'renew', u'wall', u'street', u'jitter']
[u'spain', u'hold', u'terror', u'suspect', u'indefinit']
[u'lanka', u'rope', u'darwin']
[u'stretch', u'hospit', u'resourc', u'contribut']
[u'strike', u'worker', u'accus', u'hurt', u'tourism']
[u'sudan', u'pledg', u'disarm', u'rebel', u'group']
[u'sunderland', u'saddl', u'possibl', u'tour', u'farewel']
[u'swan', u'blue', u'pois', u'duel']
[u'swan', u'surg', u'home', u'sink', u'blue']
[u'swan', u'advantag', u'long', u'break']
[u'sydney', u'merger', u'approv']
[u'program', u'target', u'famili', u'violenc']
[u'therapist', u'consid', u'latest', u'offer']
[u'team', u'blast', u'darwin', u'pitch']
[u'thousand', u'expect', u'pride']
[u'time', u'zone', u'barrier', u'film', u'collabor']
[u'searcher', u'weekend', u'break']
[u'troop', u'unearth', u'iraq', u'bomb', u'factori']
[u'marin', u'kill', u'near', u'fallujah']
[u'union', u'call', u'educ', u'review', u'guidelin']
[u'regret', u'decis', u'peacekeep']
[u'challeng', u'guantanamo', u'detaine']
[u'charg', u'soldier', u'iraqi', u'death']
[u'job', u'growth', u'slow']
[u'rais', u'spectr', u'sudan', u'sanction']
[u'nistelrooy', u'cop', u'world']
[u'wallabi', u'overcom', u'bruis', u'island']
[u'welcom', u'crime', u'windfal']
[u'lift', u'warrior', u'cellar']
[u'woman', u'charg', u'brutal', u'bash']
[u'woolley', u'chair', u'forest', u'council']
[u'zimbabwean', u'opposit', u'leader', u'escap', u'attack']
[u'alleg', u'abalon', u'poacher', u'face', u'stiff', u'penalti']
[u'alonso', u'put', u'renault', u'pole', u'french']
[u'deni', u'blood', u'busi']
[u'ambros', u'win', u'queensland']
[u'aqi', u'give', u'timor', u'chicken', u'clear']
[u'aussi', u'rider', u'white', u'crash', u'tour']
[u'bahrain', u'reject', u'terror', u'warn']
[u'ban', u'cyclist', u'accus', u'cycl', u'australia']
[u'beat', u'navratilova', u'set', u'sight', u'olymp']
[u'britney', u'spear', u'take', u'role']
[u'brutal', u'roddick', u'set', u'dream', u'final', u'feder']
[u'buckland', u'host', u'massiv', u'armi', u'reserv', u'oper']
[u'tighter', u'child', u'protect', u'law']
[u'cancellara', u'claim', u'tour', u'prologu', u'mcgee', u'fourth']
[u'capsiz', u'tanker', u'right', u'hamburg', u'port']
[u'cassini', u'pictur', u'shatter', u'titan', u'theori']
[u'cheney', u'caution', u'iraq', u'pullout']
[u'children', u'kill', u'east', u'violenc']
[u'chines', u'woman', u'beat', u'death', u'hand']
[u'congest', u'bangkok', u'open', u'subway']
[u'corrupt', u'eat', u'rice', u'subsidi']
[u'council', u'attack', u'wait', u'list']
[u'court', u'grant', u'bail', u'accus', u'involv']
[u'crow', u'destroy', u'demon']
[u'cycl', u'australia', u'anger', u'alleg']
[u'darfur', u'bloodsh', u'test', u'african', u'union', u'peac', u'plan']
[u'darfur', u'rebel', u'boycott', u'talk']
[u'darwin', u'orchestra', u'hop', u'feder', u'fund']
[u'disobedi', u'juror', u'face', u'jail']
[u'docker', u'lead', u'bulldog']
[u'docker', u'dog']
[u'dont', u'worri', u'there', u'come', u'mcgee']
[u'east', u'timor', u'swing', u'portug']
[u'east', u'timor', u'swing', u'portug', u'euro', u'showdown']
[u'egypt', u'minist', u'die', u'heart', u'attack']
[u'estonian', u'coupl', u'take', u'home', u'wife', u'carri', u'world']
[u'ethiopian', u'win', u'gold', u'coast', u'marathon']
[u'euro', u'final', u'slam', u'bias', u'claim']
[u'slim', u'owner']
[u'feder', u'hotel', u'stand', u'firm', u'offer']
[u'blue', u'real', u'problem']
[u'femal', u'astronaut', u'visit', u'canberra', u'track']
[u'gold', u'coast', u'marathon', u'boast', u'record', u'field']
[u'goosen', u'cours', u'european', u'open']
[u'govt', u'support', u'access', u'econom', u'report', u'mean']
[u'group', u'call', u'investig', u'prison']
[u'homeless', u'shelter', u'idea', u'can']
[u'hospit', u'blackout', u'trigger', u'intern', u'disast']
[u'hunt', u'star', u'bronco', u'fest']
[u'india', u'test', u'nuclear', u'capabl', u'missil']
[u'indonesian', u'head', u'home', u'direct']
[u'iran', u'prepar', u'complaint', u'saddam', u'hussein']
[u'iraq', u'announc', u'amnesti', u'insurg']
[u'japan', u'opposit', u'outdo', u'rule', u'parti']
[u'job', u'figur', u'highlight', u'mismanag']
[u'johnson', u'miss', u'olymp', u'mark']
[u'kapsi', u'doubt', u'nikolaidi', u'final']
[u'kashmir', u'explos', u'kill', u'wind']
[u'kenyan', u'polic', u'struggl', u'control', u'protest']
[u'kiwi', u'verg', u'seri', u'final']
[u'klinsmann', u'hail', u'rooney', u'pick', u'star', u'euro']
[u'knee', u'injuri', u'put', u'roff', u'nation']
[u'labor', u'lash', u'govt', u'smear', u'campaign']
[u'lebanon', u'ministri', u'confirm', u'marin', u'hostag', u'dead']
[u'lomu', u'find', u'kidney', u'donor', u'report']
[u'kill', u'kayak']
[u'mclaren', u'boss', u'reject', u'mosley', u'critic']
[u'milit', u'claim', u'soldier', u'behead']
[u'mitsubishi', u'celebr', u'strong', u'sale']
[u'motorcyclist', u'injur', u'tree', u'branch', u'pierc']
[u'muso', u'unearth', u'jazz', u'festiv']
[u'narrow', u'loss', u'opal', u'china']
[u'confirm', u'hostag', u'kill', u'iraq']
[u'need', u'world', u'court', u'involv']
[u'abattoir', u'close', u'job']
[u'begin', u'naidoc', u'celebr']
[u'palestinian', u'kill', u'refuge', u'camp', u'clash']
[u'palestinian', u'shoot', u'attempt', u'ferri']
[u'polic', u'investig', u'claim', u'azaria', u'mysteri']
[u'polic', u'investig', u'riverland', u'fatal']
[u'polic', u'locat', u'prison', u'escape']
[u'polic', u'suspect', u'famili', u'member', u'respons', u'perth']
[u'port', u'power', u'saint']
[u'portug', u'faith', u'pauleta']
[u'power', u'surg', u'saint']
[u'power', u'strong', u'saint']
[u'govt', u'reject', u'critic', u'fisheri']
[u'queiroz', u'lash', u'beckham', u'excus']
[u'rich', u'nation', u'urg', u'help', u'prestigi']
[u'robert', u'power', u'pole', u'brazil', u'grand', u'prix']
[u'rosal', u'lead', u'women', u'open']
[u'costa', u'final']
[u'russian', u'polic', u'raid', u'yuko', u'headquart']
[u'ryan', u'send', u'messag', u'bulldog']
[u'scientist', u'releas', u'elect', u'wish', u'list']
[u'serb', u'general', u'threaten', u'reveng', u'hagu', u'handov']
[u'sharapova', u'apologis', u'wimbledon']
[u'shark', u'hold', u'fast', u'finish', u'knight']
[u'hurt', u'bomb', u'factori', u'discov', u'afghan']
[u'storm', u'confer', u'examin', u'econom', u'impact']
[u'urg', u'lead', u'smoke', u'ban']
[u'teenag', u'die', u'collaps', u'subiaco']
[u'thousand', u'celebr', u'pride', u'europ']
[u'turkish', u'peacekeep', u'withdraw', u'north', u'iraq']
[u'determin', u'merger', u'impact']
[u'urban', u'roo', u'pose', u'threat']
[u'paramed', u'step', u'campaign']
[u'law', u'recognis', u'carer', u'right']
[u'wallabi', u'count', u'cost', u'adelaid', u'batter']
[u'warn', u'continu', u'despit', u'drop', u'water']
[u'wenger', u'believ', u'rooney', u'join']
[u'woman', u'kill', u'perth', u'kebab', u'shop']
[u'woodbridg', u'aim', u'wimbledon', u'glori']
[u'wood', u'content', u'charg', u'aussi']
[u'woyecha', u'win', u'gold', u'coast', u'marathon']
[u'yemen', u'fight', u'leav', u'dead']
[u'afghan', u'famili', u'settl', u'launceston', u'life']
[u'african', u'heir', u'disney', u'lion', u'sleep', u'tonight']
[u'algeria', u'crisi', u'talk', u'independ', u'media']
[u'eye', u'retail', u'close', u'flat']
[u'defend', u'industri', u'polici']
[u'blast', u'govt', u'foreign', u'doctor']
[u'ambul', u'servic', u'disrupt', u'work', u'impos']
[u'anderson', u'open', u'industri', u'road']
[u'atsic', u'demis', u'rememb', u'amidst', u'celebr']
[u'aust', u'dairi', u'farmer', u'reject', u'thai', u'damag', u'claim']
[u'aust', u'pay']
[u'australia', u'host', u'world']
[u'aust', u'thailand', u'sign', u'free', u'trade', u'deal']
[u'award', u'recognis', u'indigen', u'musician']
[u'bank', u'tip', u'rat', u'rise', u'year']
[u'batkov', u'opal']
[u'beatti', u'oppos', u'opposit', u'access', u'document']
[u'brother', u'evicte', u'return', u'error']
[u'bird', u'face', u'judiciari']
[u'blackburn', u'claim', u'elder', u'victim']
[u'boca', u'junior', u'coach', u'bianchi', u'resign']
[u'bomber', u'notic', u'say', u'sheedi']
[u'bremer', u'say', u'iraq', u'democraci', u'wont', u'happen', u'overnight']
[u'budget', u'allow', u'free', u'ferri', u'pass']
[u'cameroon', u'resurrect', u'campaign']
[u'campion', u'ponder', u'bicep', u'injuri', u'impact']
[u'casino', u'worker', u'strike']
[u'casual', u'worker', u'extra', u'leav', u'right']
[u'cement', u'aust', u'prepar', u'plant', u'commiss']
[u'chao', u'greec', u'million', u'celebr', u'dream', u'come']
[u'china', u'drive', u'growth', u'report']
[u'chines', u'fossil', u'mail', u'parcel']
[u'church', u'ask', u'assault', u'victim', u'come', u'forward']
[u'communiti', u'legal', u'servic', u'face', u'fund']
[u'confer', u'focus', u'safeti']
[u'cosmonaut', u'nikolayev', u'die']
[u'costello', u'bonanza', u'mean', u'budget', u'bust', u'report']
[u'council', u'offer', u'irrig']
[u'council', u'question', u'state', u'agreement', u'act']
[u'court', u'hear', u'accus', u'think', u'shes', u'jesus']
[u'court', u'hear', u'underworld', u'rehears']
[u'curfew', u'need', u'polic', u'boost', u'birney']
[u'custom', u'promis', u'better', u'power', u'suppli']
[u'cyclist', u'anna', u'mear', u'athen', u'bind']
[u'dead', u'weekend', u'spark', u'road', u'care']
[u'defenc', u'chief', u'outlin', u'coalit', u'achiev']
[u'develop', u'say', u'delay', u'prove', u'cost']
[u'devonport', u'get', u'monitor', u'station']
[u'diver', u'miss', u'spear', u'fish', u'trip']
[u'doctor', u'temporari', u'visa', u'bypass', u'board', u'exam']
[u'driver', u'face', u'charg', u'highway', u'crash']
[u'drought', u'forc', u'nepales', u'strip', u'farm']
[u'drought', u'stricken', u'farmer', u'offer', u'help']
[u'educ', u'minist', u'heckl', u'teacher', u'confer']
[u'endur', u'ride', u'attract', u'strong', u'number']
[u'father', u'reliev', u'clear', u'cycl', u'drug']
[u'feder', u'spike', u'roddick', u'gun']
[u'feder', u'spike', u'roddick', u'gun', u'glori']
[u'govt', u'urg', u'chang', u'stanc']
[u'firm', u'fin', u'feedlot']
[u'fleme', u'lead', u'kiwi', u'final']
[u'forecast', u'futur', u'storm', u'warn', u'technolog']
[u'chief', u'minist', u'condemn', u'abus']
[u'mayor', u'criticis', u'latham', u'manag', u'skill']
[u'french', u'stand', u'drug', u'claim']
[u'fund', u'cut', u'spark', u'indigen', u'radio', u'concern']
[u'fund', u'shortfal', u'end', u'phone', u'legal', u'servic']
[u'fund', u'address', u'domest', u'violenc']
[u'fund', u'help', u'landhold', u'hurt', u'veget', u'law']
[u'futur', u'uncertain', u'bundaberg', u'austoft', u'worker']
[u'goosen', u'win', u'european', u'open', u'stroke']
[u'govt', u'plan', u'natur', u'resourc', u'manag', u'board']
[u'govt', u'reject', u'alcohol', u'tourism', u'claim']
[u'govt', u'support', u'port', u'phillip', u'dredg', u'plan']
[u'govt', u'urg', u'accept', u'inform', u'commission']
[u'greek', u'communiti', u'revel', u'soccer']
[u'greek', u'fan', u'street', u'australia']
[u'greek', u'complet', u'euro', u'fairytal']
[u'grind', u'zero', u'rebuild', u'begin']
[u'group', u'step', u'rat', u'protest']
[u'guantanamo', u'detaine', u'return', u'saudi', u'deal']
[u'help', u'seek', u'appar', u'drive', u'shoot']
[u'hensbi', u'ame', u'take', u'breakthrough']
[u'problem', u'mcgee', u'tour']
[u'holden', u'plant', u'close', u'upgrad']
[u'hollywood', u'star', u'unit', u'anti', u'bush']
[u'honesti', u'limit', u'sheep', u'diseas', u'spread']
[u'hope', u'plan', u'stop', u'meatwork', u'closur']
[u'hop', u'melt', u'away', u'snowfest']
[u'howard', u'seal', u'thai', u'free', u'trade', u'deal']
[u'increas', u'travel', u'hurt', u'environ']
[u'independ', u'firm', u'verifi', u'cost']
[u'independ', u'ask', u'public', u'bigger', u'medicar']
[u'indigen', u'communiti', u'urg', u'celebr', u'naidoc', u'week']
[u'indonesia', u'begin', u'histor', u'ballot']
[u'indonesia', u'order', u'invalid', u'vote', u'count']
[u'industri', u'woe', u'wont', u'affect', u'power']
[u'inquest', u'redfern', u'teenag', u'death', u'begin']
[u'inquiri', u'recommend', u'overhaul', u'plan', u'bodi']
[u'iraq', u'infrastructur', u'remain', u'threat']
[u'irish', u'scientist', u'plan', u'dial', u'dolphin']
[u'irrig', u'nation', u'water', u'initi']
[u'irrig', u'want', u'river', u'water', u'lift']
[u'israel', u'deni', u'ghraib', u'interrog', u'claim']
[u'isra', u'strike', u'target', u'metal', u'workshop']
[u'japanes', u'dog', u'competit', u'eat']
[u'kearn', u'possibl', u'week']
[u'latham', u'seek', u'quash', u'rumour']
[u'lawyer', u'defend', u'cyclist', u'drug', u'claim']
[u'local', u'firefight', u'take', u'train', u'lead']
[u'long', u'distanc', u'take', u'wind', u'balloon', u'event']
[u'long', u'servic', u'leav', u'casual', u'worker']
[u'lundi', u'welcom', u'plan', u'recommend']
[u'mallon', u'seal', u'shoot', u'women', u'open']
[u'accus', u'partner', u'murder', u'face', u'trial']
[u'plead', u'guilti', u'murder', u'alburi', u'woman']
[u'matthew', u'call', u'protect', u'forward']
[u'mayor', u'back', u'poki', u'plan']
[u'mayor', u'hear', u'worri']
[u'mcewen', u'miss', u'injur', u'mcgee', u'limp', u'home']
[u'mcewen', u'pedal', u'second', u'spot', u'tour', u'stage']
[u'casual', u'worker', u'win', u'long', u'servic', u'leav']
[u'mcrae', u'name', u'south', u'coach']
[u'medic', u'student', u'train', u'overhaul']
[u'milit', u'deni', u'behead', u'hostag']
[u'milosev', u'trial', u'delay', u'health']
[u'minist', u'back', u'merger', u'plan']
[u'interrupt', u'power', u'suppli']
[u'time', u'comment', u'wast', u'plan', u'studi']
[u'motorcyclist', u'die', u'road', u'crash']
[u'mugab', u'rule', u'talk']
[u'neighbour', u'back', u'azaria', u'mysteri', u'claim']
[u'network', u'boost', u'firefight', u'effort']
[u'darwin', u'suburb', u'honour', u'tradit', u'owner']
[u'technolog', u'improv', u'bowel', u'diagnosi']
[u'websit', u'hervey', u'whale', u'watch', u'industri']
[u'earli', u'elect', u'clarenc', u'valley', u'council']
[u'delay', u'hydrotherapi', u'pool', u'studi']
[u'minist', u'say', u'wont', u'stop', u'school', u'visit']
[u'accus', u'travel', u'rort']
[u'offici', u'interview', u'turkish', u'bushland']
[u'olymp', u'gold', u'target', u'feder']
[u'dead', u'injur', u'grafton', u'crash']
[u'organis', u'upbeat', u'naidoc', u'week', u'futur']
[u'pacif', u'countri', u'solomon', u'presenc']
[u'paramed', u'work', u'ban', u'spark', u'patient', u'fear']
[u'park', u'join', u'campaign', u'plastic', u'bag']
[u'perth', u'power', u'shortag', u'risk', u'play']
[u'polic', u'continu', u'lawley', u'murder', u'inquiri']
[u'polic', u'defend', u'port', u'fairi', u'hour', u'decis']
[u'polic', u'deni', u'chase', u'hickey', u'redfern']
[u'polic', u'investig', u'kebab', u'shop', u'death']
[u'polic', u'rescu', u'woman', u'burn', u'hous']
[u'polic', u'azaria', u'claim']
[u'poll', u'close', u'indonesian', u'vote']
[u'poor', u'say', u'boost', u'relianc', u'oversea']
[u'power', u'station', u'worker', u'strike', u'rise', u'claim']
[u'prison', u'plight', u'prompt', u'call', u'mental', u'health']
[u'public', u'urg', u'help', u'control', u'potenti', u'bird', u'problem']
[u'qanta', u'case', u'court']
[u'qanta', u'crew', u'strike', u'london', u'plan']
[u'citrus', u'face', u'diseas', u'discoveri']
[u'rehhagel', u'hail', u'sensat', u'final']
[u'report', u'expos', u'govt', u'elect', u'spree']
[u'richmond', u'council', u'upbeat', u'financ']
[u'river', u'overnight', u'rain']
[u'rooster', u'sign', u'robert', u'year', u'deal']
[u'busi', u'confid', u'continu', u'fall']
[u'defend', u'state', u'school', u'abus', u'record']
[u'urg', u'influenc', u'fli', u'doctor', u'reloc']
[u'scheme', u'highlight', u'heart', u'woe']
[u'pleas', u'extra', u'student', u'place']
[u'search', u'continu', u'miss', u'bargara', u'diver']
[u'servic', u'sector', u'contract', u'report']
[u'urg', u'promot', u'phone', u'number']
[u'seven', u'player', u'tribun']
[u'vehicl', u'major', u'accid', u'pacif']
[u'shire', u'await', u'chemic', u'test', u'result']
[u'shire', u'lament', u'grant', u'situat']
[u'shirvo', u'olymp', u'content']
[u'smaller', u'team', u'head', u'athen', u'paralymp']
[u'snapper', u'tag', u'aim', u'boost', u'sustain', u'stock']
[u'soccer', u'provid', u'indonesian', u'poll', u'worri']
[u'solid', u'job', u'growth', u'forecast']
[u'kid', u'wors', u'govern', u'care']
[u'south', u'face', u'oblivion', u'richardson']
[u'stab', u'put', u'hospit']
[u'stone', u'bros', u'appeal', u'ambros', u'point', u'decis']
[u'stretch', u'resourc', u'caus', u'man', u'death']
[u'sudan', u'plan', u'refuge', u'return']
[u'survey', u'aim', u'offer', u'barcaldin', u'boost']
[u'swimmer', u'warn', u'sewag', u'spill']
[u'sydney', u'host', u'oxfam', u'youth', u'parliament']
[u'talk', u'focus', u'darl', u'flow']
[u'tamada', u'clinch', u'grand', u'prix', u'victori']
[u'tamworth', u'council', u'look', u'budget', u'surplus']
[u'bubbl', u'burst', u'warn', u'forecast']
[u'teacher', u'minist', u'school', u'tafe']
[u'tender', u'call', u'road', u'studi']
[u'thai', u'opposit', u'support', u'inquiri']
[u'thai', u'advoc', u'aust', u'presenc', u'asean']
[u'licenc', u'seek', u'region']
[u'trapattoni', u'name', u'manag', u'benfica']
[u'turkish', u'detain']
[u'ugandan', u'hostag', u'site', u'nation', u'memori']
[u'happi', u'extra', u'student', u'place']
[u'game', u'attract', u'wide']
[u'unstopp', u'schumach', u'win', u'franc']
[u'figur', u'help', u'aussi', u'dollar', u'gain']
[u'baptist', u'investig', u'abus', u'claim']
[u'danger', u'safest', u'biker']
[u'westfield', u'group', u'make', u'solid', u'debut']
[u'wheat', u'grower', u'welcom', u'strong', u'sale']
[u'whitewash', u'leav', u'netbal', u'plenti', u'ponder']
[u'wild', u'weather', u'cut', u'power']
[u'winni', u'mandela', u'give', u'suspend', u'sentenc', u'fraud']
[u'wit', u'claim', u'volker', u'case', u'mishandl']
[u'women', u'team', u'stronger', u'sydney', u'say', u'jone']
[u'woodbridg', u'set', u'men', u'doubl', u'record']
[u'worksaf', u'comb', u'shear', u'shed', u'danger']
[u'yuko', u'loan', u'default', u'share', u'tumbl']
[u'abbott', u'talk', u'medicar', u'chang']
[u'abduct', u'marin', u'aliv', u'famili']
[u'accid', u'fuel', u'slower', u'speed', u'limit']
[u'afghan', u'rememb', u'alic', u'camel', u'race']
[u'african', u'union', u'plan', u'troop', u'sudan']
[u'aid', u'rise', u'contin']
[u'airport', u'protest', u'seek', u'latham', u'meet']
[u'ambul', u'chang', u'boost', u'respons', u'time']
[u'bird']
[u'austrian', u'presid', u'fight', u'life', u'doctor']
[u'aust', u'troop', u'pull', u'straw']
[u'beatti', u'offer', u'prais', u'townsvill']
[u'bendigo', u'slam', u'door', u'killer', u'kitti']
[u'hop', u'inveresk', u'magic', u'million', u'auction']
[u'bird', u'out', u'match']
[u'blair', u'say', u'wmds']
[u'britain', u'compromis', u'smack']
[u'brown', u'consid', u'royalti', u'concess', u'issu']
[u'bulldog', u'cruel', u'kind', u'ax', u'pair']
[u'bulldog', u'thurston', u'move', u'north']
[u'bush', u'hear', u'doubt', u'report']
[u'busi', u'predict', u'econom', u'slowdown', u'survey']
[u'busi', u'suffer', u'lack', u'skill', u'worker']
[u'cabinet', u'approv', u'therapist', u'wage', u'rise']
[u'famili', u'allow', u'smart', u'card']
[u'wilcannia', u'resid', u'road']
[u'call', u'mount', u'releas', u'cycl', u'report']
[u'support', u'naidoc', u'week']
[u'carey', u'tri', u'hand', u'coach']
[u'champion', u'novak', u'advanc', u'swiss', u'open', u'feder']
[u'chief', u'execut', u'stand', u'amidst', u'budget', u'woe']
[u'child', u'kill', u'iraq', u'shoot']
[u'chilean', u'royalti']
[u'citrus', u'canker', u'confirm', u'farm']
[u'petrol', u'price', u'scare', u'campaign']
[u'cold', u'snap', u'sap', u'power']
[u'communiti', u'urg', u'manag', u'plan']
[u'council', u'crack', u'water', u'meter', u'tamper']
[u'council', u'defend', u'feral', u'bounti']
[u'council', u'keep', u'option', u'open', u'porter', u'land']
[u'councillor', u'maintain', u'opposit', u'water', u'price']
[u'council', u'scrap', u'tourism', u'levi', u'plan']
[u'crackdown', u'oversea', u'train', u'countri', u'doctor']
[u'crew', u'strike', u'qantass', u'london', u'plan']
[u'crocker', u'origin']
[u'cult', u'organ', u'donat', u'investig']
[u'death', u'spark', u'greater', u'koala', u'protect']
[u'deco', u'sign', u'year', u'deal', u'barca']
[u'diamond', u'miner', u'look', u'rest']
[u'dive', u'industri', u'pleas', u'safeti', u'effort']
[u'doubt', u'rais', u'lack', u'underworld', u'record']
[u'driver', u'get', u'suspend', u'sentenc', u'woman', u'death']
[u'entek', u'energi', u'join', u'northern', u'explor']
[u'equal', u'opportun', u'issu', u'aris', u'jail', u'compo']
[u'bore', u'say', u'mansel']
[u'farmer', u'want', u'research', u'station', u'retain']
[u'firefight', u'closer', u'extinguish', u'bushfir']
[u'firework', u'worth', u'cracker', u'polic']
[u'firm', u'seek', u'council', u'contract', u'work']
[u'dead', u'west', u'bank', u'clash']
[u'forens', u'expert', u'dubious', u'azaria', u'claim']
[u'forest', u'halv', u'size']
[u'chief', u'take', u'communiti', u'posit']
[u'fitzroy', u'footbal', u'trial', u'rape']
[u'general', u'lead', u'indonesian', u'vote']
[u'freight', u'termin', u'plan', u'boost', u'bypass', u'hop']
[u'fund', u'avail', u'region', u'project']
[u'fund', u'flow', u'water', u'suppli', u'studi']
[u'fund', u'good', u'recept', u'port', u'stephen']
[u'gaddafi', u'daughter', u'join', u'saddam', u'defenc', u'team']
[u'german', u'set', u'iraqi', u'youth', u'radio']
[u'goosen', u'climb', u'sixth', u'world', u'rank']
[u'govt', u'near', u'agreement', u'forest', u'review']
[u'govt', u'offer', u'harden', u'shire', u'support']
[u'govt', u'spend', u'commonwealth', u'game']
[u'govt', u'tighten', u'loop', u'yemen', u'sieg']
[u'govt', u'urg', u'boost', u'kempsey', u'polic']
[u'govt', u'will', u'consid', u'region', u'youth', u'curfew']
[u'grain', u'grower', u'urg', u'maintain', u'iraq', u'debt', u'pressur']
[u'gravel', u'sell', u'field', u'develop']
[u'green', u'plea', u'kelp', u'research', u'fund']
[u'gregan', u'loss', u'wallabi', u'umaga']
[u'gulf', u'fish', u'extend']
[u'hackett', u'send', u'thorp', u'warn', u'perform']
[u'hackett', u'underlin', u'challeng']
[u'hand', u'world', u'worker', u'walk']
[u'help', u'hand', u'land', u'fletcher', u'tribun', u'troubl']
[u'hockeyroo', u'strong', u'korea']
[u'hong', u'kong', u'bind', u'plane', u'return', u'sydney']
[u'hope', u'remain', u'troubl', u'leagu', u'club']
[u'human', u'remain']
[u'hysteria', u'erupt', u'triumphant', u'greek', u'land']
[u'indigen', u'council', u'call', u'allow', u'smart', u'card']
[u'indonesian', u'poll', u'head', u'second', u'round']
[u'industri', u'woe', u'affect', u'council', u'servic']
[u'iraqi', u'lawyer', u'appoint', u'defend', u'saddam']
[u'iraqi', u'milit', u'claim', u'marin', u'take', u'safeti']
[u'iraqi', u'fallujah', u'raid']
[u'item', u'uncov', u'search', u'murder', u'victim']
[u'job', u'focus', u'naidoc', u'week']
[u'kerri', u'pick', u'rival', u'run', u'mate']
[u'klim', u'hit', u'olymp', u'trial', u'schedul']
[u'knight', u'review', u'hagan', u'origin']
[u'korea', u'escap', u'fine', u'secur', u'breach']
[u'labor', u'pledg', u'public', u'hous']
[u'landhold', u'tell', u'water', u'entitl', u'rule']
[u'latham', u'challeng', u'howard', u'dirt', u'unit']
[u'latham', u'drop', u'time', u'poll']
[u'latham', u'isol', u'iraq', u'withdraw']
[u'latham', u'complain']
[u'legal', u'servic', u'fight', u'feder', u'fund']
[u'lisa', u'simpson', u'ralli', u'cornish', u'liber']
[u'liverpool', u'plain', u'council', u'await', u'mayor']
[u'local', u'teacher', u'nomin', u'nation', u'award']
[u'lomu', u'deni', u'readi', u'transplant']
[u'court', u'charg']
[u'maroon', u'rock', u'late', u'injuri', u'scare']
[u'mcewen', u'win', u'stage', u'hushovd', u'yellow']
[u'mcgee', u'surviv', u'fight']
[u'mickelberg', u'policeman', u'slur']
[u'mine', u'council', u'welcom', u'industri', u'review']
[u'minist', u'dismiss', u'prison', u'offic', u'concern']
[u'minist', u'ask', u'resolv', u'multi', u'purpos']
[u'minist', u'urg', u'heed', u'plan', u'recommend']
[u'miss', u'boy', u'spark', u'polic', u'search']
[u'afghan', u'refuge', u'arriv', u'australia']
[u'scan', u'wallabi', u'pair']
[u'place', u'wide']
[u'motorcyclist', u'hospit', u'highway', u'crash']
[u'air', u'malle', u'dump', u'plan', u'fear']
[u'worri', u'schooli', u'plan', u'late']
[u'musharraf', u'warn', u'iron', u'curtain']
[u'music', u'download', u'geek', u'speak']
[u'wastewat', u'facil', u'open']
[u'drill', u'program', u'begin', u'cooper', u'basin']
[u'cricket', u'florida', u'american', u'tell']
[u'norwegian', u'troop', u'exit', u'iraq']
[u'inquiri', u'hear', u'live', u'rent', u'free']
[u'nurs', u'help', u'shape', u'polici', u'research']
[u'nylex', u'futur', u'locat', u'unclear']
[u'oversea', u'doctor', u'need', u'english', u'skill', u'council']
[u'pacif', u'hydro', u'request', u'trade', u'halt']
[u'paramed', u'work', u'ban', u'wont', u'slow', u'respons']
[u'pari', u'roof', u'collaps', u'inquiri', u'releas', u'earli', u'find']
[u'pitcairn', u'recruit', u'guard', u'prison', u'build']
[u'maintain', u'surplus', u'sustain']
[u'promis', u'tape', u'bind', u'small', u'busi']
[u'reveal', u'plan', u'tape']
[u'polic', u'confid', u'find', u'murder', u'victim']
[u'polic', u'consid', u'hickey', u'high', u'risk', u'inquest', u'hear']
[u'polic', u'continu', u'probe', u'fatal', u'highway', u'pile']
[u'polic', u'hunt', u'stab', u'suspect']
[u'polic', u'identifi', u'alleg', u'steal', u'cattl']
[u'polic', u'investig', u'burn', u'car']
[u'pressur', u'mount', u'wider', u'smoke']
[u'protest', u'pull', u'court', u'action']
[u'publican', u'clear', u'sexual', u'assault']
[u'public', u'urg', u'distanc', u'whale']
[u'push', u'foreign', u'train', u'doctor', u'local']
[u'push', u'fish', u'licenc', u'out']
[u'qanta', u'crew', u'meet', u'london', u'reloc']
[u'queen', u'prais', u'diana', u'memori', u'open']
[u'queensland', u'citrus', u'face', u'australia', u'wide']
[u'rate', u'hike', u'adelaid', u'budget']
[u'rate', u'rise', u'horsham', u'resid']
[u'redback', u'captainci']
[u'tiger', u'controversi']
[u'refshaug', u'see', u'distract']
[u'refuge', u'worker', u'halt', u'labour', u'crisi']
[u'region', u'develop', u'board', u'chief', u'upbeat']
[u'region', u'plan', u'shire']
[u'report', u'highlight', u'region', u'broadband', u'demand']
[u'resid', u'plan', u'offend', u'centr']
[u'resourc', u'bank', u'lift', u'ord', u'record', u'high']
[u'rooney', u'reveal', u'near', u'quit']
[u'royal', u'seal', u'approv', u'mcewen']
[u'russian', u'plan', u'nuclear', u'wast', u'dump', u'criticis']
[u'russian', u'youth', u'campaign', u'corrupt', u'foreign', u'news']
[u'saint', u'hard', u'tribun']
[u'sar', u'whistleblow', u'hold', u'tianamen', u'letter']
[u'maintain', u'lead', u'indon', u'count', u'continu']
[u'schulz', u'round', u'rise', u'star']
[u'second', u'staffer', u'give', u'icac', u'evid']
[u'sharapova', u'vault', u'women']
[u'sharon', u'tighten', u'secur', u'amid', u'assassin', u'fear']
[u'return', u'home']
[u'snow', u'isol', u'tasmanian', u'west', u'coast']
[u'solar', u'power', u'plan', u'need', u'shire', u'fund', u'inject']
[u'south', u'east', u'host', u'anim', u'diseas', u'exercis']
[u'stang', u'quit', u'iraq', u'coach']
[u'station', u'owner', u'fin', u'tree', u'clear']
[u'sign', u'miss', u'diver']
[u'stock', u'boost', u'saleyard']
[u'stopwatch', u'fail', u'centenarian', u'smash', u'record']
[u'strathbogi', u'resid', u'face', u'rate', u'rise']
[u'student', u'easier', u'access']
[u'studi', u'highlight', u'knowledg', u'lack']
[u'takov', u'uncertainti', u'put', u'pressur', u'wooli']
[u'tax', u'blame', u'real', u'estat', u'invest', u'slump']
[u'teacher', u'legal', u'action', u'religion']
[u'teen', u'robberi', u'prompt', u'safeti', u'warn']
[u'thorp', u'concern', u'hackett', u'defeat']
[u'thorp', u'concern', u'hackett']
[u'marin', u'kill', u'central', u'iraq']
[u'thumb', u'plan', u'develop', u'staff']
[u'tiger', u'kellaway', u'roger', u'quit', u'footi']
[u'topless', u'protest', u'tackl', u'pamplona', u'bull']
[u'tornado', u'threaten', u'town']
[u'tredrea', u'stay', u'loyal', u'port']
[u'get', u'place', u'campus', u'takeov']
[u'union', u'threaten', u'action', u'power', u'disput']
[u'union', u'unsur', u'newcastl', u'join', u'driver']
[u'pleas', u'extra', u'place']
[u'recognis', u'extra', u'student', u'place']
[u'holiday', u'dampen', u'global', u'trade']
[u'launch', u'dead', u'strike', u'fallujah']
[u'reprimand', u'over', u'thai', u'queen']
[u'releas', u'ghraib', u'prison']
[u'vanuatu', u'vote', u'snap', u'elect']
[u'video', u'show', u'foreign', u'iraq', u'attack']
[u'mental', u'health', u'breach', u'human', u'right', u'forum']
[u'warn', u'optimist', u'snare', u'record']
[u'weed', u'claim', u'young', u'cattl']
[u'wilko', u'close', u'injuri', u'comeback']
[u'woman', u'jail', u'bank', u'theft']
[u'woman', u'drug', u'man', u'sandwich']
[u'woman', u'secur', u'door', u'babi', u'seat']
[u'yuko', u'face', u'bankcruptci', u'threat']
[u'zagoraki', u'name', u'player', u'euro']
[u'contract', u'boost', u'kimberley', u'access']
[u'kill', u'taiwanes', u'flood']
[u'abbott', u'unfaz', u'uni', u'doctor', u'studi']
[u'compani', u'deni', u'monopoli', u'intent']
[u'advocaat', u'quit', u'dutch', u'coach']
[u'defend', u'fletcher', u'suspens']
[u'black', u'star', u'mccaw', u'leav', u'team', u'amidst']
[u'candid', u'want', u'govt', u'servic', u'boost']
[u'anti', u'dope', u'bodi', u'condemn', u'cycl', u'probe']
[u'post', u'scoop', u'pick', u'wrong']
[u'armstrong', u'target', u'robbi', u'yellow']
[u'say', u'wada', u'target', u'critic', u'drug']
[u'break', u'grind']
[u'athlet', u'squad', u'lack', u'experi', u'sydney', u'team']
[u'aussi', u'pace', u'attack', u'wari', u'cairn', u'repeat']
[u'australian', u'tap', u'militari', u'head', u'iraq']
[u'austrian', u'presid', u'die', u'age']
[u'weather', u'continu', u'tasmania']
[u'barnett', u'consid', u'port', u'hedland', u'rescu', u'deal']
[u'beatti', u'await', u'navi', u'ship', u'scuttl']
[u'blaze', u'claim', u'crediton', u'hous']
[u'blue', u'half', u'time', u'origin', u'decid']
[u'brando', u'cremat', u'privat', u'ceremoni']
[u'british', u'threat']
[u'busi', u'taxi', u'rank', u'marshal', u'plan']
[u'candid', u'seek', u'north', u'west', u'power', u'discount']
[u'bomb', u'kill', u'iraqi', u'funer']
[u'examin', u'montgomeri', u'case']
[u'central', u'fuel', u'price', u'expect', u'drop']
[u'chamberlain', u'unconvinc', u'claim']
[u'chamber', u'commerc', u'get', u'chief']
[u'chamber', u'welcom', u'super', u'chang']
[u'charg', u'possibl', u'azaria', u'revel']
[u'chief', u'minist', u'drop', u'legal', u'threat', u'bushfir']
[u'chines', u'ceremoni', u'unveil', u'inglewood', u'wool']
[u'club', u'ask', u'help', u'curb', u'drink', u'drive']
[u'constabl', u'quiz', u'hickey', u'inquiri']
[u'costigan', u'like', u'miss', u'dragon', u'clash']
[u'council', u'chang', u'pool', u'plan']
[u'council', u'reject', u'blame', u'retir', u'villag', u'delay']
[u'council', u'clean', u'sand', u'dun']
[u'court', u'throw', u'microsoft', u'keyboard', u'patent']
[u'creditor', u'overlook', u'lewington', u'debt', u'favour']
[u'daylesford', u'blaze', u'claim', u'bakeri']
[u'deadlin', u'loom', u'miner', u'sand', u'appeal']
[u'dead', u'bird', u'resurfac', u'asia']
[u'deco', u'complet', u'barca']
[u'demograph', u'win', u'prize']
[u'desailli', u'quit', u'chelsea']
[u'diseas', u'citrus', u'crop', u'destroy']
[u'distil', u'firm', u'fear', u'rise', u'impact']
[u'doubt', u'cast', u'plan', u'junk', u'food']
[u'down', u'endur', u'winter']
[u'drought', u'take', u'toll', u'local', u'busi']
[u'guerrouj', u'win', u'way']
[u'eurobodalla', u'face', u'water', u'woe']
[u'everton', u'offer', u'rooney', u'year', u'deal']
[u'explos', u'near', u'iraqi', u'resid', u'wind']
[u'farm', u'group', u'fear', u'research', u'station', u'closur']
[u'feder', u'environ', u'fund', u'fraser']
[u'feder', u'polic', u'chief', u'call', u'polic', u'databas']
[u'ferdinand', u'face', u'return', u'liverpool']
[u'fin', u'tiger', u'magpi']
[u'fisheri', u'shed', u'light', u'lobster', u'oper']
[u'dead', u'colombo', u'suicid', u'blast']
[u'flight', u'delay', u'sydney', u'secur', u'scare']
[u'flower', u'quit', u'redback']
[u'forc', u'retir', u'label', u'ageist']
[u'marin', u'kill', u'iraqi', u'oper']
[u'fresh', u'bird', u'outbreak', u'china']
[u'fund', u'boost', u'home', u'communiti', u'care', u'servic']
[u'gene', u'race', u'silverston']
[u'govt', u'launch', u'apprenticeship', u'scheme']
[u'govt', u'meatwork', u'closur']
[u'govt', u'urg', u'council', u'ward', u'chang']
[u'greec', u'climb', u'world', u'rank', u'euro', u'victori']
[u'hail', u'blue']
[u'handicap', u'children', u'centr', u'investig']
[u'health', u'servic', u'offer', u'job', u'help']
[u'hick', u'movi', u'premier', u'adelaid']
[u'higher', u'dampen', u'market']
[u'hill', u'claim', u'star', u'war', u'success']
[u'hodg', u'appoint', u'leicestershir', u'captain']
[u'hoggard', u'clear', u'west', u'indi', u'test']
[u'home', u'buyer', u'warn', u'rat']
[u'hope', u'lib', u'field', u'cunningham', u'candid']
[u'hope', u'rain', u'boost', u'water', u'storag']
[u'hospit', u'plan', u'orthopaed', u'surgeon']
[u'howard', u'reconsid', u'nuclear', u'dump']
[u'howard', u'urg', u'admit', u'wmds', u'iraq']
[u'hear', u'shoot', u'chamberlain']
[u'india', u'send', u'troop', u'iraq', u'foreign', u'minist']
[u'indonesian', u'fish', u'boat', u'nab', u'melvill']
[u'infrastructur', u'plan', u'region', u'focus']
[u'injuri', u'forc', u'rowett']
[u'inquiri', u'hear', u'landladi', u'worri']
[u'institut', u'launch', u'indigen', u'program']
[u'iraq', u'adopt', u'secur', u'law']
[u'hear', u'council', u'staff', u'woe']
[u'irrig', u'miss', u'alloc']
[u'israel', u'involv', u'iraq', u'interrog']
[u'jetstar', u'announc', u'launceston', u'servic', u'chang']
[u'jetstar', u'delay', u'plan']
[u'judg', u'question', u'plea', u'abil', u'accus', u'thief']
[u'kleberson', u'brazil']
[u'kookaburra', u'turn', u'heat', u'olymp', u'prepar']
[u'kookaburra', u'turn', u'heat', u'olymp']
[u'laidley', u'play', u'premiership', u'aspir']
[u'latham', u'promis', u'mandat', u'ethanol']
[u'launceston', u'radiat', u'therapist', u'accept', u'offer']
[u'lazio', u'releas', u'coach', u'mancini', u'inter']
[u'liquid', u'appoint', u'invest', u'scheme']
[u'local', u'govt', u'group', u'highlight', u'council', u'budget']
[u'long', u'wait', u'portland', u'overpass']
[u'maher', u'clear', u'seri']
[u'give', u'year', u'taxi', u'driver', u'murder']
[u'hospitalis', u'airport', u'scare']
[u'maroon', u'reject', u'talli', u'rumour']
[u'mask', u'iraqi', u'group', u'tell', u'zarqawi', u'leav']
[u'mcewen', u'take', u'tour', u'franc', u'lead']
[u'mickelberg', u'urg', u'polic', u'reinvestig', u'gold', u'theft']
[u'minist', u'open', u'shop']
[u'reform', u'need', u'ensur', u'growth']
[u'place', u'geraldton']
[u'mourinho', u'interest', u'benfica', u'tiago']
[u'cast', u'doubt', u'water', u'figur']
[u'highlight', u'timber', u'harvest', u'benefit']
[u'mudge', u'wineri', u'look', u'thai', u'export']
[u'beat', u'year', u'arrest', u'warrant']
[u'murray', u'goulburn', u'worker', u'work']
[u'murray', u'project', u'lead', u'region', u'drain', u'report']
[u'music', u'festiv', u'pull', u'plug', u'live', u'film']
[u'nappi', u'pram', u'rock', u'roll']
[u'nativ', u'titl', u'claim', u'appeal', u'reject']
[u'inquiri', u'wast', u'time', u'territori']
[u'chief', u'econom', u'develop', u'board']
[u'group', u'tackl', u'domest', u'violenc']
[u'insomnia', u'treatment', u'retrain', u'mind']
[u'chief', u'buy', u'cotton', u'properti']
[u'presid', u'set', u'record', u'properti', u'price']
[u'bone', u'dinosaur', u'prove', u'success']
[u'motiv', u'arson', u'attack', u'car']
[u'norton', u'name', u'cooma', u'monaro', u'mayor']
[u'govt', u'defend', u'child', u'offenc', u'investig']
[u'opposit', u'stunt', u'backfir', u'egan']
[u'cyclist', u'olymp', u'dream', u'doubt']
[u'kill', u'near', u'olymp', u'villag']
[u'opal', u'bounc', u'china']
[u'oppn', u'attack', u'highway', u'trucker', u'bulli']
[u'origin', u'crunch', u'time', u'sydney']
[u'palacio', u'save', u'peru', u'start', u'ref']
[u'perth', u'hospit', u'emerg', u'depart', u'capac']
[u'petit', u'seek', u'kempsey', u'hospit', u'fund']
[u'petrol', u'hike']
[u'phelp', u'unfaz', u'doubter']
[u'philippin', u'extend', u'iraq', u'tour', u'duti']
[u'abbott', u'deni', u'smear', u'campaign', u'claim']
[u'seiz', u'labor', u'candid', u'blunder']
[u'polic', u'badg', u'seiz', u'store']
[u'polic', u'properti', u'organis', u'crime', u'raid']
[u'polic', u'investig', u'orang', u'shoot']
[u'polic', u'prais', u'grisli', u'work']
[u'protest', u'attempt', u'block', u'adelaid']
[u'want', u'jail', u'open', u'door', u'close']
[u'push', u'save', u'histor', u'hall']
[u'cattl', u'price', u'tip', u'rise']
[u'govt', u'agre', u'transfer', u'prison', u'escape', u'perth']
[u'govt', u'claim', u'drop', u'violenc', u'alcohol']
[u'nat', u'question', u'biosecur', u'standard']
[u'quarantin', u'breach', u'possibl', u'sourc', u'citrus', u'diseas']
[u'queensland', u'reject', u'talli', u'rumour']
[u'rain', u'fall', u'ahead', u'origin', u'decid']
[u'ralf', u'hint', u'toyota']
[u'ranger', u'novo', u'newcom']
[u'redfern', u'inquest', u'tell', u'polic', u'discuss', u'teenag']
[u'report', u'highlight', u'need', u'council', u'spend']
[u'republican', u'dismiss', u'kerri', u'run', u'mate']
[u'rogg', u'tell', u'author', u'time']
[u'rural', u'train', u'boost']
[u'saddam', u'nephew', u'arrest', u'iraqi', u'minist']
[u'saint', u'anger', u'claim']
[u'satellit', u'track', u'follow', u'eleph', u'seal']
[u'scientist', u'coastal', u'temperatur']
[u'search', u'bodi', u'continu', u'tomorrow']
[u'search', u'miss', u'diver', u'suspend']
[u'search', u'gunnedah', u'coal', u'basin']
[u'sewag', u'spill', u'threat', u'mayor']
[u'shark', u'speci', u'futur', u'divid', u'communiti']
[u'shepparton', u'resid', u'face', u'rat', u'rise']
[u'shire', u'continu', u'push', u'seal', u'roadwork']
[u'shire', u'debat', u'idea', u'broom', u'plan']
[u'charg', u'cole', u'bomb']
[u'soccer', u'lion', u'want', u'lang', u'park', u'home']
[u'devonport', u'home', u'owner', u'rat', u'slug']
[u'southport', u'coach', u'wari', u'broadbeach', u'talent']
[u'protein', u'substitut', u'hormon', u'studi']
[u'studi', u'consid', u'industri', u'estat']
[u'sudan', u'decre', u'relief', u'restrict']
[u'summit', u'improv', u'safeti', u'canberra']
[u'sydney', u'charg', u'child', u'offenc']
[u'talli', u'ignor', u'origin', u'specul']
[u'teacher', u'consid', u'high', u'court', u'action']
[u'telstra', u'acknowledg', u'room', u'improv']
[u'tenant', u'servic', u'lament', u'hostel', u'closur']
[u'wound', u'explod', u'gaza', u'citi']
[u'tiger', u'magpi', u'receiv', u'fin']
[u'toowoomba', u'gladston', u'rail', u'link', u'track']
[u'tortur', u'claim', u'prompt', u'legal', u'action']
[u'toyota', u'sign', u'year', u'deal', u'ralf', u'schumach']
[u'tram', u'return', u'hobart']
[u'plan', u'law', u'religi', u'hatr']
[u'ullrich', u'humbl', u'unbow', u'armstrong']
[u'discov', u'anti', u'alga', u'compound', u'marin', u'paint']
[u'union', u'move', u'closer', u'auspin', u'tarpeena', u'resolut']
[u'unit', u'complet', u'rossi', u'deal']
[u'offici', u'say', u'organis', u'need', u'reform']
[u'urg', u'action', u'gorilla', u'habitat', u'destroy']
[u'cathol', u'dioces', u'file', u'bankruptci']
[u'pilot', u'fin', u'mistaken', u'bomb', u'canadian']
[u'secret', u'remov', u'iraqi', u'nuclear', u'materi']
[u'vanzella', u'tumut', u'shire', u'mayor']
[u'venezuela', u'invit', u'referendum', u'observ']
[u'polic', u'reopen', u'botch', u'abus', u'case']
[u'refus', u'accept', u'notori', u'prison']
[u'water', u'flow', u'hamper', u'algal', u'bloom', u'effort']
[u'water', u'hardship', u'flow', u'produc', u'communiti']
[u'stop', u'import', u'citrus', u'fruit']
[u'whale', u'strand', u'predict', u'scientist']
[u'widow', u'demand', u'appeal', u'husband', u'killer']
[u'wife', u'accus', u'murder', u'face', u'trial']
[u'windsor', u'back', u'year', u'parliamentari', u'term']
[u'woman', u'die', u'truck', u'mishap']
[u'work', u'begin', u'australia', u'largest', u'wind', u'farm']
[u'youngest', u'dougla', u'dead']
[u'yudhoyono', u'confid', u'ahead', u'second', u'round']
[u'zarqawi', u'brother', u'arrest', u'jordan', u'famili']
[u'abbott', u'promot', u'saturday', u'medicar', u'open']
[u'commit', u'rebuild', u'deek', u'forest']
[u'airport', u'boss', u'label', u'passeng', u'screen']
[u'sharehold', u'urg', u'reject', u'woolworth']
[u'ord', u'continu', u'upward', u'momentum']
[u'alstom', u'transport', u'sale']
[u'analyst', u'reject', u'newcrest', u'takeov', u'rumour']
[u'armstrong', u'yellow', u'jersey', u'collect', u'grow']
[u'aussi', u'troubl', u'tour']
[u'aussi', u'weightlift', u'refus', u'drug', u'test']
[u'australian', u'cinema', u'controversi', u'film']
[u'australia', u'jobless', u'rate', u'rise']
[u'award', u'win', u'scientist', u'say', u'barrier', u'reef']
[u'bash', u'nurs', u'look', u'forward', u'work']
[u'beach', u'close', u'deep', u'outfal', u'work']
[u'beatti', u'fine', u'shoalwat', u'upgrad']
[u'bendigo', u'shop', u'state', u'biggest']
[u'sport', u'complex', u'plan', u'near', u'maitland']
[u'bovey', u'reopen']
[u'buckley', u'readi', u'captainci']
[u'burrengong', u'meat', u'weather', u'market', u'woe']
[u'bush', u'sign', u'renew', u'sanction', u'burma']
[u'strike', u'cancel']
[u'home', u'brew', u'kit']
[u'busi', u'enterpris', u'centr', u'talk']
[u'rethink', u'women', u'health', u'clinic', u'closur']
[u'royal', u'commiss', u'paedophil', u'claim']
[u'canadian', u'star', u'radzinski', u'reject', u'everton', u'deal']
[u'carer', u'lack', u'requir', u'support', u'research']
[u'carr', u'stay', u'tent', u'embassi', u'disput']
[u'chamber', u'attack', u'council', u'eplga', u'pull']
[u'chemic', u'havent', u'affect', u'groundwat']
[u'child', u'convict', u'quash', u'retrial', u'order']
[u'china', u'back', u'search']
[u'chines', u'landmark', u'lose', u'lustr', u'energi']
[u'chistiakov', u'appeal', u'select', u'athen']
[u'citrus', u'market', u'face', u'tougher', u'intern', u'check']
[u'cocain', u'seiz', u'aboard', u'togoles', u'vessel', u'ghana']
[u'coleman', u'commit', u'futur', u'fulham']
[u'communiti', u'unhappi', u'rail', u'branch', u'line', u'closur']
[u'concern', u'air', u'citrus', u'diseas', u'impact']
[u'council', u'consid', u'secur', u'camera']
[u'council', u'merger', u'save', u'dollar']
[u'coupl', u'refus', u'fine', u'festiv', u'live']
[u'court', u'award', u'parapleg', u'timber', u'worker', u'damag']
[u'court', u'hear', u'accus', u'tobin', u'killer', u'grudg', u'list']
[u'dairi', u'farmer', u'milk', u'price', u'rise']
[u'defenc', u'facil', u'upgrad']
[u'democrat', u'face', u'ballot', u'remov']
[u'democrat', u'want', u'atsic', u'region', u'council', u'retain']
[u'dog', u'life', u'jerri']
[u'ask', u'appeal', u'taxi', u'driver', u'killer', u'sentenc']
[u'drought', u'take', u'toll', u'irrig']
[u'edward', u'inexperienc', u'vice', u'presid', u'bush']
[u'dead', u'gaza', u'clash']
[u'mind', u'scottish', u'open', u'defenc']
[u'endeavour', u'worker', u'impos', u'work', u'ban']
[u'enron', u'chief', u'indict', u'surrend']
[u'environ', u'dept', u'probe', u'perilya', u'blast']
[u'extra', u'surveil', u'announc', u'coast']
[u'fairytal', u'freddi']
[u'farmer', u'wont', u'appeal', u'miner', u'sand', u'decis']
[u'fear', u'hold', u'miss']
[u'fear', u'hold', u'sport', u'oval', u'futur']
[u'feder', u'govern', u'queri', u'wada', u'critic']
[u'feder', u'polic', u'help', u'solv', u'rape', u'case']
[u'figur', u'poor', u'bulk', u'bill', u'access']
[u'firefight', u'death', u'accid', u'coron', u'rule']
[u'fisher', u'automat', u'longlin', u'option']
[u'footbal', u'academi', u'get', u'fund', u'help', u'hand']
[u'foreign', u'invest', u'secur', u'gold', u'mine']
[u'baath', u'offici', u'kill', u'bomb']
[u'friend', u'ralli', u'accus', u'senat']
[u'gardin', u'flag', u'hop']
[u'gasnier', u'miss', u'week']
[u'german', u'unearth', u'dinosaur', u'graveyard']
[u'global', u'piraci', u'impact', u'world', u'economi', u'report']
[u'govt', u'accus', u'cycl', u'drug', u'cover']
[u'govt', u'accus', u'drug', u'cover']
[u'govt', u'older', u'worker']
[u'govt', u'give', u'york', u'peninsula', u'wind', u'farm']
[u'govt', u'urg', u'build', u'raceway', u'near', u'airport']
[u'grazier', u'warn', u'grass', u'diseas']
[u'grazier', u'warn', u'check', u'veget', u'map']
[u'group', u'call', u'highway', u'safeti']
[u'habib', u'face', u'militari', u'trial']
[u'hamburg', u'factori', u'order', u'north', u'korea']
[u'helm', u'target', u'doubl', u'gold', u'athen']
[u'hickey', u'inquest', u'adjourn']
[u'high', u'hop', u'murray', u'market', u'plan']
[u'hill', u'cast', u'doubt', u'live', u'murray', u'report']
[u'hockeyroo', u'humbl', u'test']
[u'hospit', u'play', u'impact', u'paramed']
[u'howard', u'outlin', u'vision', u'secur', u'futur']
[u'india', u'pledg', u'billion', u'poverti']
[u'indi', u'music', u'eye', u'onlin', u'triumph']
[u'iraq', u'mortar', u'strike', u'see', u'kill']
[u'isra', u'launch', u'giga', u'free', u'mail']
[u'katherin', u'mayor', u'concer', u'train', u'base']
[u'keat', u'hit', u'dumb', u'comment']
[u'kill', u'man', u'famili', u'shock', u'acquitt']
[u'kookaburra', u'humbl', u'test']
[u'ladi', u'appal', u'state', u'funer', u'comment']
[u'lamb', u'price', u'reach', u'record']
[u'lawyer', u'ensur', u'habib', u'militari', u'tribun']
[u'lead', u'trio', u'broadway', u'monti', u'python']
[u'lion', u'prepar', u'mileston', u'match']
[u'littl', u'doctor']
[u'london', u'talk', u'host', u'grand', u'prix']
[u'lower', u'fuel', u'price', u'wont', u'long', u'racv']
[u'major', u'mine', u'status', u'orang']
[u'mallon', u'hop', u'canadian', u'crown', u'open', u'titl']
[u'fin', u'tree', u'fell', u'accid']
[u'jail', u'ecstasi', u'bust']
[u'jail', u'wilcannia', u'assault']
[u'mayor', u'unhappi', u'level', u'cross', u'safeti', u'delay']
[u'welcom', u'rat']
[u'mcewen', u'drop', u'place', u'armstrong', u'take', u'tour', u'lead']
[u'mental', u'children', u'hold', u'detent', u'centr']
[u'michael', u'moor', u'brand', u'howard', u'disgrac']
[u'milit', u'threaten', u'behead', u'filipino', u'hostag']
[u'miner', u'develop', u'nickel', u'project']
[u'missil', u'shield', u'destabilis', u'region', u'latham', u'say']
[u'miss', u'famili', u'near', u'gippsland']
[u'montero', u'salvag', u'draw', u'uruguay', u'return']
[u'fund', u'seek', u'women', u'health', u'network']
[u'reject', u'doctor', u'train', u'claim']
[u'mudge', u'pair', u'export', u'digit', u'model', u'idea']
[u'murder', u'trial', u'tell']
[u'musician', u'promis', u'digit']
[u'boat', u'safeti', u'chart', u'month']
[u'famili', u'court', u'chief', u'justic', u'plan', u'shake']
[u'hous', u'armi', u'base']
[u'korea', u'deploy', u'intermedi', u'rang', u'missil']
[u'action', u'take', u'gould']
[u'charg', u'lay', u'airport', u'secur', u'scare']
[u'novak', u'reach', u'swiss', u'open', u'quarter']
[u'olymp', u'champ', u'drechsler', u'withdraw', u'game']
[u'opal', u'overpow', u'czech', u'republ']
[u'pacif', u'wont', u'tone', u'physic', u'approach']
[u'pair', u'charg', u'servic', u'station', u'theft']
[u'penni', u'clear', u'thoma', u'fin']
[u'phelp', u'smooth', u'start']
[u'phelp', u'set', u'world', u'mark']
[u'philippin', u'bar', u'worker', u'go', u'iraq']
[u'pike', u'open', u'youth', u'drug', u'withdraw', u'centr']
[u'plan', u'afoot', u'retain', u'lake', u'mokoan']
[u'hint', u'late', u'elect']
[u'outlin', u'plan', u'fourth', u'term']
[u'polic', u'open', u'kenyan', u'anti', u'govt', u'protest']
[u'polic', u'shoot', u'high', u'speed', u'chase']
[u'polic', u'speak', u'pedestrian', u'accid']
[u'pont', u'keen', u'test', u'lankan', u'batsmen']
[u'port', u'author', u'rule']
[u'portland', u'coast', u'water', u'probe', u'thermal', u'energi']
[u'probe', u'begin', u'food', u'factori', u'blast']
[u'public', u'ask', u'smith', u'famili', u'winter', u'appeal']
[u'public', u'second', u'surf', u'club']
[u'push', u'rural', u'medic', u'train', u'boost']
[u'scientist', u'win', u'nation', u'scienc', u'award']
[u'rehhagel', u'stay', u'greek', u'coach']
[u'religi', u'figur', u'criticis', u'atsic', u'scrap']
[u'report', u'support', u'cement', u'plant', u'wast', u'burn']
[u'resort', u'giant', u'pay', u'tribut']
[u'rockhampton', u'rat', u'rise', u'keep', u'minimum']
[u'sign', u'red']
[u'rosali', u'council', u'deliv', u'rate', u'rise']
[u'emerg', u'depart', u'intensifi']
[u'runner', u'dodg', u'gore', u'pamplona', u'bull']
[u'sack', u'meatwork', u'meet', u'entitl']
[u'safeti', u'boost', u'plan', u'turf', u'club', u'road']
[u'hearten', u'nuke', u'dump', u'reconsider']
[u'saint', u'tribun', u'review']
[u'sar', u'claim', u'hong', u'kong', u'health', u'offici']
[u'saviola', u'trick', u'spark', u'argentina', u'rout', u'ecuador']
[u'seagul', u'readi', u'tough', u'dolphin', u'clash']
[u'search', u'continu', u'miss', u'famili']
[u'season', u'sing']
[u'senat', u'select', u'threaten', u'blow']
[u'sharon', u'favour', u'nuke', u'free', u'middl', u'east']
[u'shire', u'look', u'forward', u'search', u'benefit']
[u'shoalhaven', u'hospit', u'revamp', u'cater', u'futur', u'growth']
[u'shoalwat', u'benefit', u'militari', u'deal']
[u'sign', u'signal', u'traffic', u'hazard']
[u'sing', u'season']
[u'size', u'matter', u'ugli', u'yamba']
[u'solomon', u'member', u'ignor', u'protest', u'train']
[u'south', u'east', u'jobless', u'rate', u'continu', u'fall']
[u'lankan', u'unconcern', u'lose', u'record']
[u'stewart', u'rap', u'eccleston', u'silverston', u'threat']
[u'stone', u'welcom', u'live', u'murray', u'studi']
[u'sudan', u'pressur', u'atroc']
[u'swedish', u'court', u'overturn', u'jail', u'term', u'lindh', u'killer']
[u'sydney', u'celebr', u'year', u'power']
[u'sydney', u'lawyer', u'join', u'saddam', u'defenc', u'team']
[u'syphili', u'resist', u'oral', u'antibiot']
[u'tamil', u'tiger', u'deni', u'blast', u'involv']
[u'tamworth', u'furious', u'newcastl', u'street', u'light', u'claim']
[u'consider', u'renew', u'energi']
[u'debt', u'result', u'polic', u'raid', u'russian']
[u'taxi', u'industri', u'want', u'murder', u'sentenc', u'review']
[u'teenag', u'face', u'long', u'battl', u'tram', u'accid']
[u'terror', u'confer', u'hear', u'need', u'reform']
[u'tomb', u'concern']
[u'train', u'boost', u'help', u'geraldton', u'doctor']
[u'troop', u'concern', u'unwarr', u'govt']
[u'turkish', u'ship', u'jumper', u'face', u'deport']
[u'move', u'closer', u'brisban', u'plan']
[u'unlucki', u'punter', u'help', u'navel', u'cadet']
[u'claim', u'labor', u'divid', u'iraqi', u'troop']
[u'forc', u'stretch', u'break', u'point']
[u'investor', u'cautious', u'despit', u'market', u'recoveri']
[u'mull', u'rule', u'guantanamo', u'detaine']
[u'stand', u'aust', u'polit', u'say']
[u'train', u'base', u'plan', u'rais', u'environment']
[u'vaa', u'say', u'bat', u'lankan', u'victori']
[u'vahali', u'snap', u'drought', u'newport', u'grass']
[u'vail', u'question', u'decis']
[u'vermeer', u'paint', u'sell']
[u'governor', u'undergo', u'heart', u'surgeri']
[u'govt', u'consid', u'review', u'hospit', u'death']
[u'virgin', u'boost', u'sunshin', u'coast', u'melbourn', u'servic']
[u'virgin', u'doubl', u'sunshin', u'coast', u'melbourn', u'servic']
[u'wale', u'host', u'australia', u'world']
[u'water', u'weed', u'prove', u'good', u'cane', u'crop']
[u'weiskopf', u'slam', u'american', u'show']
[u'welfar', u'support', u'swan', u'hill', u'campus']
[u'wellshot', u'hotel', u'open', u'door']
[u'wesfarm', u'sell', u'jarrah', u'asset']
[u'william', u'lose', u'lake', u'cowal', u'nativ', u'titl', u'appeal']
[u'wood', u'pressur', u'royal', u'troon', u'challeng']
[u'world', u'church', u'leader', u'visit', u'baxter', u'aborigin']
[u'yahoo', u'doubl', u'profit']
[u'yudhoyono', u'ahead', u'elect', u'count']
[u'yulara', u'get', u'life', u'amidst', u'azaria', u'furor']
[u'zimbabw', u'rebel', u'launch', u'team']
[u'year', u'spar', u'jail', u'kill', u'wife']
[u'abbott', u'announc', u'cheaper', u'servic']
[u'stalwart', u'leav']
[u'acdc', u'street', u'propos', u'get', u'council', u'support']
[u'administr', u'appoint', u'wagga', u'land', u'council']
[u'afghan', u'honour', u'alic', u'annual', u'camel']
[u'allatson', u'quit', u'athlet', u'australia']
[u'qaeda', u'plan', u'major', u'attack', u'ridg']
[u'ambros', u'win', u'point', u'appeal']
[u'armstrong', u'miss', u'athen', u'game']
[u'dip', u'record']
[u'australia', u'withdraw', u'basketbal', u'championship']
[u'aust', u'warn', u'extrem', u'weather']
[u'barrichello', u'set', u'pace', u'ferrari']
[u'penalti', u'york', u'park', u'streaker']
[u'blatter', u'renew', u'qualif', u'pledg']
[u'blue', u'board', u'examin', u'outburst']
[u'boomer', u'blitz', u'tall', u'black']
[u'brack', u'air', u'anger', u'napthin', u'alcoa', u'announc']
[u'brazil', u'edg', u'chile', u'minut', u'strike']
[u'brazil', u'initi', u'child', u'prostitut', u'investig']
[u'bronco', u'bounc']
[u'brown', u'warn', u'gunn']
[u'build', u'site', u'accid', u'worri', u'safeti', u'watchdog']
[u'businessman', u'slam', u'farcic', u'insid', u'trade', u'charg']
[u'canberra', u'high', u'resourc', u'caus']
[u'cat', u'pie']
[u'cezann', u'paint', u'bind', u'london']
[u'chalmer']
[u'chines', u'edg', u'opal']
[u'citrus', u'grower', u'urg', u'precaut']
[u'citrus', u'inspect', u'criticis']
[u'clinic', u'urg', u'canadian', u'sperm', u'travel']
[u'coalit', u'reject', u'dirt', u'file', u'claim']
[u'colli', u'resid', u'river', u'fenc']
[u'comment', u'seek', u'draft', u'bass', u'coast', u'council', u'budget']
[u'committe', u'overse', u'visitor', u'centr']
[u'cooper', u'call', u'address', u'homeless']
[u'negoti', u'milk', u'price', u'boost']
[u'coroni', u'inquest', u'discuss', u'patient', u'confidenti']
[u'cost', u'burden', u'creat', u'rfds', u'concern']
[u'council', u'budget', u'includ', u'rate', u'rise']
[u'council', u'decid', u'buy', u'maleni', u'site']
[u'councillor', u'brief', u'union', u'talk']
[u'court', u'hear', u'evid', u'tobin', u'kill']
[u'dajka', u'olymp', u'dope', u'cloud']
[u'worker', u'demand', u'free', u'travel']
[u'detent', u'centr', u'futur', u'unclear']
[u'diseas', u'citrus', u'tree', u'burn']
[u'door', u'close', u'eden', u'state', u'forest', u'offic']
[u'doubt', u'cast', u'paedophil', u'ring', u'claim']
[u'driver', u'urg', u'slow', u'save', u'wildlif']
[u'dupont', u'fail', u'report', u'teflon', u'health', u'risk']
[u'venabl', u'head', u'australia']
[u'enron', u'proclaim', u'innoc', u'call', u'speedi']
[u'exceed', u'excel', u'fail', u'finish', u'place']
[u'famili', u'choos', u'return', u'baxter']
[u'farmer', u'want', u'mine', u'chang']
[u'feasibl', u'studi', u'consid', u'mine', u'centr', u'plan']
[u'feder', u'leav', u'frustrat', u'rain', u'halt', u'play']
[u'govt', u'question', u'drought', u'fund', u'delay']
[u'govt', u'negoti', u'ravensthorp', u'fund']
[u'govt', u'urg', u'help', u'student', u'cost']
[u'figur', u'highlight', u'coff', u'invest']
[u'figur', u'suggest', u'soft', u'land', u'hous']
[u'station', u'plan', u'bring', u'industri', u'unrest']
[u'champ', u'obrien', u'abandon', u'athen']
[u'jail', u'insur', u'scam']
[u'enron', u'chief', u'indict', u'fraud']
[u'lifesav', u'admit', u'indec', u'deal']
[u'soldier', u'reunit', u'kidnap', u'wife']
[u'french', u'father', u'alleg', u'dope', u'cover']
[u'fund', u'lean', u'tower', u'gingin']
[u'funk', u'watson', u'british', u'open']
[u'garrett', u'attack', u'australia', u'joint', u'train', u'base']
[u'geelong', u'ring', u'chang', u'pie', u'match']
[u'ghana', u'host', u'african', u'nation']
[u'governor', u'landi', u'rest', u'surgeri']
[u'govt', u'offer', u'meatwork', u'help']
[u'govt', u'pan', u'alp', u'fairyland', u'job', u'goal']
[u'govt', u'reinstat', u'reconcili', u'dept']
[u'govt', u'sign', u'deal', u'tank']
[u'govt', u'urg', u'bolster', u'rollout']
[u'gunn', u'buy', u'interst', u'sawmil', u'oper']
[u'gunn', u'see', u'futur', u'sawmil']
[u'hansen', u'break', u'breast', u'stroke']
[u'heart', u'surgeri', u'end', u'bowi', u'tour', u'report']
[u'case', u'climb', u'australia']
[u'hospit', u'urg', u'work', u'guidelin']
[u'howard', u'silent', u'fraser', u'broadsid']
[u'hundr', u'protest', u'lake', u'plan']
[u'indigen', u'call', u'ring', u'alarm', u'bell', u'help', u'line']
[u'iraqi', u'milit', u'threaten', u'kill', u'bulgarian', u'hostag']
[u'iraqi', u'welcom', u'secur']
[u'item', u'mornington']
[u'judg', u'deni', u'martha', u'stewart', u'retrial']
[u'kidnap', u'japanes', u'woman', u'reunit', u'famili']
[u'kosmina', u'name', u'adelaid', u'coach']
[u'labor', u'object', u'militari', u'photo', u'campaign']
[u'langer', u'hayden', u'rampag']
[u'late', u'penalti', u'give', u'paraguay', u'costa', u'rica']
[u'latham', u'accus', u'hypocrisi', u'comment']
[u'latham', u'fear', u'allianc', u'public', u'support']
[u'lindh', u'killer', u'shift', u'psychiatr', u'ward']
[u'livestock', u'transport', u'road', u'decis']
[u'mallon', u'seiz', u'canada', u'lead']
[u'charg', u'woman', u'murder']
[u'charg', u'abus', u'disabl', u'boy']
[u'die', u'highway', u'truck', u'crash']
[u'maryborough', u'mark', u'year']
[u'mayor', u'stand', u'citi', u'heart', u'levi', u'plan']
[u'mcgauran', u'futur', u'grab']
[u'mcgee', u'quit', u'tour', u'doubt', u'olymp']
[u'miner', u'question', u'gold', u'project', u'announc']
[u'mine', u'firm', u'lack', u'job', u'expans']
[u'miss', u'marin', u'arriv', u'beirut', u'embassi']
[u'moor', u'choos', u'countri', u'club']
[u'water', u'need', u'boost', u'storag']
[u'mother', u'thank', u'australian', u'carer', u'save', u'daughter']
[u'mullumbimbi', u'face', u'water', u'restrict']
[u'murder', u'trial', u'hear', u'gunshot', u'wind', u'evid']
[u'mysteri', u'phone', u'unwelcom', u'taliban', u'founder']
[u'nativ', u'anim', u'threaten', u'busi', u'season']
[u'ambul', u'station', u'plan', u'julia', u'creek']
[u'code', u'offer', u'easier', u'choic', u'power']
[u'market', u'scheme', u'focus', u'murray']
[u'techniqu', u'halv', u'nitrogen', u'emiss']
[u'charg', u'child', u'offenc']
[u'orchard', u'inspect', u'canker']
[u'opposit', u'question', u'need', u'euro', u'parti']
[u'windi', u'match', u'wash']
[u'odomet', u'fraud', u'spark', u'consum', u'group', u'outcri']
[u'ogradi', u'captur', u'stage']
[u'ogradi', u'emot', u'roller', u'coaster']
[u'terror', u'warn']
[u'lazi', u'georg', u'michael', u'shut', u'chatroom']
[u'olymp', u'torch', u'spark', u'tension', u'cyprus']
[u'opposit', u'back', u'sniffer', u'dog']
[u'opposit', u'push', u'chang', u'elect', u'date']
[u'orchard', u'owner', u'seek', u'protect', u'properti']
[u'organis', u'fight', u'indigen', u'right']
[u'origin', u'player', u'gear', u'rerun']
[u'origin', u'star', u'gear', u'match']
[u'outback', u'prepar', u'cosmic']
[u'pacif', u'island', u'urg', u'declar', u'disast', u'zone']
[u'pair', u'shoalhaven', u'head', u'crash']
[u'parent', u'children', u'crime']
[u'perth', u'court', u'child', u'charg']
[u'petacchi', u'cipo', u'tour', u'pull', u'out']
[u'philippin', u'work', u'secur', u'hostag', u'releas']
[u'pie', u'crisi', u'hotel', u'bing']
[u'pioneer', u'pastoralist', u'die']
[u'defend', u'draper', u'adelaid', u'visit']
[u'see', u'pros', u'con', u'abort', u'documentari']
[u'pass', u'australian']
[u'polic', u'chief', u'head', u'tamworth']
[u'polic', u'investig', u'huge', u'counterfeit', u'good', u'haul']
[u'polic', u'probe', u'shepparton', u'death']
[u'polic', u'resourc', u'wast', u'sniffer', u'dog']
[u'polic', u'search', u'arm', u'robber']
[u'polic', u'seek', u'daylesford', u'blaze']
[u'polic', u'seek', u'woman', u'hous', u'blaze']
[u'polic', u'seiz', u'comput', u'morcomb', u'investig']
[u'port', u'augusta', u'rfds', u'servic', u'stay']
[u'port', u'author', u'back', u'skill', u'worker', u'push']
[u'priest', u'abus', u'charg', u'releas', u'bail']
[u'privat', u'sector', u'urg', u'fund', u'synchrotron']
[u'probe', u'look', u'rugbi', u'spectat', u'conduct']
[u'citrus', u'partial', u'lift']
[u'race', u'legend', u'attend', u'replica', u'motor', u'garag']
[u'rainfal', u'decreas', u'link', u'hail', u'cannon']
[u'restrict', u'result', u'huge', u'drop', u'paint', u'sniff']
[u'retir', u'naval', u'command', u'franklin']
[u'rfds', u'unfaz', u'increas', u'cost']
[u'romero', u'share', u'lead', u'scotland']
[u'rule', u'isra', u'barrier', u'expect']
[u'runway', u'extens', u'boost', u'coastal', u'surveil']
[u'school', u'allow', u'choos', u'staff']
[u'schumach', u'coulthard', u'london']
[u'senior', u'cleric', u'damn', u'baxter', u'disgrac']
[u'seven', u'dead', u'north', u'gaza', u'fight']
[u'sharon', u'start', u'talk', u'labour', u'nation', u'uniti']
[u'shoalwat', u'upgrad', u'rais', u'cattl', u'concern']
[u'shoot', u'star', u'dazzl', u'sky']
[u'sister', u'name', u'water', u'polo', u'team']
[u'sixer', u'welcom', u'return', u'hero']
[u'smoke', u'research', u'plant', u'germin', u'discoveri']
[u'socceroo', u'cahil', u'head', u'palac']
[u'solar', u'storm', u'tear', u'away', u'mar', u'water', u'nasa']
[u'lankan', u'batsmen', u'pressur', u'perform']
[u'stasi', u'sale', u'bargain', u'price']
[u'state', u'appeal', u'late', u'assault', u'case']
[u'steami', u'joyc', u'love', u'letter', u'fetch', u'high', u'price']
[u'exact', u'lake', u'creek', u'start', u'date']
[u'steal', u'truck', u'recov', u'melbourn']
[u'storm', u'expert', u'urg', u'peopl', u'cyclon', u'proof', u'home']
[u'student', u'boost', u'leadership', u'skill']
[u'sudan', u'halt', u'violenc', u'face', u'action', u'powel']
[u'support', u'west', u'field', u'coal']
[u'survey', u'highlight', u'local', u'tourism', u'figur']
[u'survey', u'tip', u'steadi', u'popul', u'growth']
[u'sweden', u'welcom', u'releas', u'guantanamo', u'detaine']
[u'sydney', u'fin', u'flee', u'lebanon']
[u'tabcorp', u'oper', u'bank', u'strike', u'action']
[u'tahu', u'wiki']
[u'ideal', u'marin', u'pest', u'studi', u'scientist']
[u'teen', u'spend', u'time', u'aboard', u'train', u'ship']
[u'telstra', u'slower', u'fault', u'report']
[u'telstra', u'servic', u'get', u'wors', u'labor']
[u'trucki', u'await', u'level', u'cross', u'crash', u'committ']
[u'union', u'air', u'fear', u'worker']
[u'reject', u'request', u'presidenti', u'poll']
[u'committe', u'approv', u'australia', u'free', u'trade', u'deal']
[u'deni', u'report', u'plane', u'crash']
[u'investig', u'free', u'marin', u'case']
[u'get', u'year', u'plan', u'abort']
[u'plane', u'crash', u'south', u'korea', u'report']
[u'venabl', u'join', u'local', u'leagu']
[u'governor', u'undergo', u'heart', u'surgeri']
[u'viduka', u'complet', u'boro']
[u'warren', u'overwhelm', u'fifa', u'honour']
[u'weak', u'technolog', u'forecast', u'lower', u'stock', u'price']
[u'webber', u'reveal', u'deal']
[u'weightlift', u'strip', u'athen', u'place']
[u'whale', u'strand', u'beach']
[u'wine', u'export', u'record']
[u'winton', u'shine', u'opal']
[u'wollongong', u'council', u'worker', u'work']
[u'woman', u'bodi']
[u'year', u'lead', u'polic', u'high', u'speed', u'chase']
[u'beekeep', u'consid', u'code', u'conduct']
[u'investig', u'whistleblow', u'abus', u'claim']
[u'split', u'gungahlin', u'drive', u'extens', u'liber']
[u'alstom', u'sharehold', u'approv', u'australian', u'sell']
[u'armstrong', u'bruis', u'sixth', u'stage', u'crash']
[u'arrest', u'warrant', u'issu', u'courtney', u'love']
[u'atapattu', u'lead', u'lankan', u'fightback']
[u'auditor', u'fault', u'handl', u'iraqi', u'fund']
[u'australia', u'head', u'drop']
[u'australia', u'go', u'say', u'rudd']
[u'australia', u'go', u'flaw', u'intellig', u'say']
[u'baghdad', u'violenc', u'claim', u'victim']
[u'beach', u'close', u'surfer', u'kill', u'shark', u'attack']
[u'beatti', u'make', u'homeless', u'pledg']
[u'blair', u'come', u'close', u'step']
[u'boonen', u'win', u'crash', u'mar', u'sixth', u'stage']
[u'breaker', u'morant', u'tale', u'intend', u'cheer', u'hick']
[u'bulgaria', u'unsway', u'iraq', u'hostag', u'threat']
[u'burt', u'star', u'eel', u'stun', u'rooster']
[u'bush', u'pledg', u'intellig', u'reform']
[u'bush', u'introduc', u'intellig', u'servic', u'reform']
[u'cahil', u'transfer', u'limbo']
[u'chalmer', u'stay', u'touch', u'illinoi']
[u'child', u'arsonist', u'rule', u'prompt', u'review', u'call']
[u'admit', u'intellig', u'shortcom']
[u'cook', u'come', u'boil']
[u'cool', u'tassi', u'stay', u'straight', u'camel']
[u'court', u'didnt', u'consid', u'isra', u'secur', u'judg']
[u'courtney', u'love', u'hospitalis', u'feminin', u'issu']
[u'court', u'rule', u'israel', u'barrier', u'inappropri', u'say']
[u'date', u'afghan', u'poll']
[u'death', u'threat', u'hang', u'iraq', u'hostag']
[u'denmark', u'press', u'seek', u'probe', u'report']
[u'discount', u'petrol', u'deal', u'get', u'accc', u'green', u'light']
[u'downer', u'defend', u'iraq', u'decis']
[u'downer', u'express', u'concern', u'hick', u'habib']
[u'downturn', u'begin', u'hous', u'industri']
[u'eagl', u'final', u'straight']
[u'egyptian', u'cabinet', u'offer', u'resign']
[u'pressur', u'israel', u'dismantl', u'secur', u'wall']
[u'everton', u'commenc', u'rooney', u'talk']
[u'everybodi', u'seoul', u'olymp', u'drug', u'johnson']
[u'farmer', u'fight', u'research', u'station', u'closur']
[u'feder', u'make', u'tire', u'passag', u'swiss', u'semi']
[u'victori', u'maori', u'parti']
[u'accid', u'kill']
[u'kill', u'pipelin', u'sabotag', u'iraq', u'violenc']
[u'gaudio', u'continu', u'excel', u'swedish', u'open']
[u'govt', u'consid', u'forest', u'anti', u'privatis', u'studi']
[u'grinspoon', u'expect', u'boost', u'darwin', u'festiv']
[u'grower', u'welcom', u'eas', u'citrus', u'ban']
[u'hall', u'kick', u'swan', u'crow']
[u'hasselbaink', u'sign', u'boro']
[u'havret', u'snatch', u'scottish', u'open', u'lead']
[u'hird', u'injuri', u'mar', u'bomber']
[u'indian', u'flood', u'death', u'toll', u'hit']
[u'iraq', u'justifi', u'despit', u'senat', u'report', u'wolfowitz']
[u'island', u'stretch', u'black']
[u'israel', u'ask', u'support', u'barrier']
[u'israel', u'reject', u'secur', u'barrier', u'rule']
[u'johnson', u'launch', u'olymp', u'appeal']
[u'jone', u'sparkl', u'form', u'olymp', u'near']
[u'militari', u'payrol', u'record', u'bush', u'destroy']
[u'kookaburra', u'seri', u'darwin']
[u'kookaburra', u'take', u'seri', u'darwin']
[u'lyon', u'stay', u'waratah']
[u'mallon', u'hold', u'canada', u'lead']
[u'stab', u'home', u'invas']
[u'maori', u'parti', u'expect', u'elect']
[u'marin', u'return', u'militari', u'control']
[u'matilda', u'triumph', u'mexico']
[u'mcdonald', u'face', u'lawsuit']
[u'mcewen', u'tour', u'doubt']
[u'mcewen', u'team', u'mate', u'fail', u'dope', u'test']
[u'minardi', u'mourn', u'death', u'sport', u'director']
[u'leav', u'damag']
[u'minist', u'call', u'teacher', u'ban', u'lift']
[u'minist', u'defend', u'problem', u'gambl', u'fund']
[u'murdoch', u'deni', u'scoop', u'sourc']
[u'fish', u'name', u'clear', u'confus']
[u'charg', u'soldier', u'iraq', u'scandal']
[u'preferenti', u'treatment', u'ralf', u'schumach']
[u'ogradi', u'take', u'green', u'jersey']
[u'price', u'slip', u'opec', u'output', u'pledg']
[u'opposit', u'offer', u'venezuela', u'return', u'free', u'market']
[u'palestinian', u'seek', u'resolut', u'secur', u'barrier']
[u'pentagon', u'offer', u'hick', u'habib', u'detent', u'review']
[u'phelp', u'qualifi', u'campaign']
[u'philip', u'morri', u'settl', u'tobacco', u'smuggl']
[u'pilkington', u'glass', u'close', u'adelaid', u'plant']
[u'pizarro', u'card', u'spoil', u'peruvian', u'parti']
[u'princess', u'diana', u'estat', u'lose', u'court', u'fight']
[u'purpl', u'chocol', u'peak', u'plan', u'prompt', u'protest']
[u'citrus', u'grower', u'start', u'pick']
[u'queensland', u'warn', u'credit', u'card', u'scam']
[u'raider', u'davico', u'announc', u'wigan', u'deal']
[u'raikkonen', u'set', u'pace', u'schumach', u'wobbl']
[u'raikkonen', u'top', u'british', u'practic']
[u'rebound', u'lift', u'wall', u'street', u'recent', u'slide']
[u'refuge', u'group', u'seek', u'independ', u'baxter', u'probe']
[u'report', u'condemn', u'clear', u'bush', u'iraq']
[u'rescuer', u'work', u'retreiv', u'woman']
[u'fire', u'roo', u'shock', u'docker']
[u'maintain', u'lead', u'indonesian', u'vote', u'count']
[u'second', u'milit', u'group', u'threaten', u'zarqawi']
[u'seven', u'kill', u'troubl', u'kashmir']
[u'shark', u'hold', u'spot']
[u'shark', u'hold', u'spot']
[u'shark', u'hold', u'spot']
[u'shipper', u'teach', u'halv', u'greenhous']
[u'smaller', u'club', u'compli', u'smoke', u'law']
[u'speed', u'figur', u'disturb', u'minist']
[u'spur', u'sell', u'postiga', u'porto']
[u'lanka', u'tough', u'time', u'langer']
[u'swift', u'outclass', u'firebird']
[u'swim', u'studi', u'unveil', u'pollut', u'concern']
[u'tall', u'black', u'claim', u'reveng']
[u'busi', u'demand', u'mainland', u'flight']
[u'turkish', u'ship', u'jumper', u'send', u'home', u'second', u'detain']
[u'boss', u'say', u'help', u'sell', u'coca', u'cola']
[u'court', u'design', u'isra', u'secur', u'wall']
[u'unseed', u'rusedski', u'advanc', u'newport']
[u'court', u'uphold', u'nevada', u'nuclear', u'wast', u'site']
[u'editor', u'russian', u'forb', u'kill', u'moscow']
[u'intellig', u'sourc', u'iraq']
[u'vanuatu', u'ballot', u'box', u'burn', u'arm', u'polic', u'send']
[u'vline', u'servic', u'cost', u'criticis']
[u'look', u'attract', u'intern', u'student']
[u'watchdog', u'blog', u'reach', u'techi']
[u'woman', u'hospit', u'attempt', u'murder', u'suicid']
[u'wooli', u'takeov', u'push', u'wineri']
[u'world', u'court', u'rule', u'israel', u'barrier', u'illeg']
[u'zimbabw', u'cricket', u'chief', u'agre', u'talk']
[u'firefight', u'treat', u'smoke', u'inhal']
[u'kill', u'truck', u'crash', u'java', u'wed']
[u'accc', u'examin', u'woolworth', u'liquor']
[u'laud', u'green', u'high', u'school']
[u'percent', u'drought']
[u'qaeda', u'suspect', u'arrest', u'greec', u'visit']
[u'annan', u'warn', u'aid', u'crisi', u'asia', u'pacif']
[u'australian', u'urg', u'organ', u'donor']
[u'aust', u'spend', u'combat', u'aid']
[u'babi', u'boomer', u'urg', u'donat', u'inherit']
[u'barrier', u'rule', u'prompt', u'arab', u'leagu', u'meet']
[u'bomb', u'aviv', u'station', u'kill']
[u'boomer', u'seri']
[u'brigitt', u'return', u'franc', u'law', u'ruddock']
[u'brisban', u'electr', u'upgrad']
[u'break', u'sidelin', u'hird']
[u'brown', u'scarlett', u'tribun']
[u'bulgaria', u'say', u'hop', u'rise', u'hostag', u'iraq']
[u'bulldog', u'storm']
[u'chalmer', u'hensbi', u'close', u'illinoi']
[u'chavez', u'proof', u'interfer']
[u'constitut', u'chang', u'outlaw', u'marriag']
[u'costello', u'challeng', u'crean', u'polici', u'showdown']
[u'disabl', u'group', u'condemn', u'initi']
[u'disney', u'deni', u'lion', u'sleep', u'tonight', u'copyright', u'claim']
[u'escape', u'captur', u'month']
[u'track', u'cow', u'citizen']
[u'expert', u'warn', u'childhood', u'diabet', u'diet', u'link']
[u'feder', u'feel', u'final', u'strain']
[u'kill', u'western', u'afghanistan', u'blast']
[u'trap', u'cliff']
[u'marin', u'kill', u'falluja']
[u'franc', u'perfect', u'start', u'belgium', u'stun', u'spain']
[u'frazer', u'fire', u'scottish', u'open', u'lead']
[u'girl', u'rescu', u'waterfal', u'plung']
[u'govt', u'call', u'better', u'feder', u'public', u'hous']
[u'govt', u'spend', u'million', u'promot']
[u'hakkinen', u'consid', u'comeback', u'say', u'denni']
[u'hick', u'habib', u'famili', u'speak', u'forum']
[u'hobart', u'attract', u'pull', u'increas', u'number']
[u'iraqi', u'judg', u'hand', u'death', u'sentenc']
[u'iraqi', u'milit', u'hour', u'hostag', u'deadlin']
[u'iraq', u'announc', u'ambassador', u'appoint']
[u'iraq', u'troop', u'deploy', u'japanes', u'poll']
[u'jone', u'miss', u'olymp', u'spot']
[u'jone', u'miss', u'spot']
[u'jone', u'world']
[u'kerri', u'attack', u'bush', u'iraq']
[u'lankan', u'pass', u'light', u'fail']
[u'latham', u'rule', u'garrett', u'environ', u'portfolio']
[u'latham', u'rumour', u'unlik', u'influenc', u'voter', u'poll']
[u'lethal', u'leisel', u'world']
[u'lion', u'rout', u'bulldog', u'gabba']
[u'love', u'encourag', u'queensland', u'citrus']
[u'mallon', u'seiz', u'shoot', u'lead', u'canada']
[u'mcdonald', u'chief', u'join', u'diabet', u'australia', u'board']
[u'miller', u'cautious', u'wood', u'studi', u'result']
[u'call', u'school', u'report', u'releas']
[u'moral', u'free', u'kick', u'stun', u'argentina']
[u'tarkin', u'forest', u'heritag', u'list']
[u'defend', u'rais']
[u'ogradi', u'keep', u'green', u'pozzato', u'secur', u'stage']
[u'ogradi', u'throw', u'green', u'jersey', u'challeng']
[u'oppn', u'want', u'year', u'propos', u'servic', u'medal']
[u'opposit', u'accept', u'costello', u'challeng', u'polici']
[u'palestinian', u'milit', u'kill', u'blast']
[u'palestinian', u'delay', u'push', u'secur', u'council']
[u'perth', u'author', u'hunt', u'dead', u'shark']
[u'phelp', u'fli']
[u'philippin', u'reject', u'iraqi', u'milit', u'demand']
[u'phoenix', u'local', u'battl']
[u'polic', u'investig', u'assault', u'care', u'centr']
[u'polic', u'investig', u'drug', u'squad', u'robberi']
[u'polic', u'investig', u'overnight', u'assault']
[u'polic', u'investig', u'scuba', u'dive', u'death']
[u'polic', u'investig', u'sydney', u'stab']
[u'polic', u'patrol', u'video', u'cam']
[u'polic', u'resuscit', u'napoleon', u'dwarf', u'rabbit']
[u'port', u'slaughter', u'abysm', u'blue']
[u'pressur', u'mount', u'blair', u'iraq']
[u'saddam', u'ralli', u'restiv', u'iraqi', u'citi', u'baquba']
[u'quarantin', u'servic', u'sniff', u'recruit']
[u'rabbitoh', u'panther']
[u'rabbitoh', u'shock', u'premier']
[u'raikkonen', u'take', u'silverston', u'pole']
[u'rain', u'postpon', u'swedish', u'open', u'semi']
[u'ralf', u'hop', u'hungari', u'william']
[u'walk', u'fulham', u'farc']
[u'rehhagel', u'snub', u'germani']
[u'research', u'examin', u'croc', u'safari', u'effect']
[u'retail', u'question', u'affect', u'christma', u'trade']
[u'rusedski', u'reach', u'newport', u'final']
[u'safeti', u'expo', u'hop', u'larg', u'crowd']
[u'saint', u'slump']
[u'satellit', u'census', u'begin', u'timor']
[u'saudi', u'deni', u'guantanamo', u'prison', u'swap']
[u'eagl', u'climb']
[u'eagl', u'edg', u'tiger', u'break']
[u'secur', u'tight', u'ahead', u'bangkok', u'world', u'aid']
[u'shark', u'involv', u'fatal', u'attack', u'like', u'great']
[u'sharon', u'condemn', u'aviv', u'bomb']
[u'sudan', u'chad', u'meet', u'darfur', u'crise', u'worsen']
[u'taiwan', u'independ', u'desir', u'region', u'say']
[u'nomin', u'macquari', u'wetland', u'list']
[u'report', u'excel', u'snow', u'season']
[u'thailand', u'nudg', u'australia', u'trapdoor']
[u'thai', u'doom', u'australia', u'drop']
[u'thousand', u'gather', u'rememb', u'srebrenica', u'massacr']
[u'trade', u'power', u'meet', u'deadlin', u'loom']
[u'treasur', u'silent', u'missil', u'defenc', u'cost']
[u'troop', u'stay', u'iraq', u'say', u'democrat']
[u'uruguay', u'edg', u'ecuador']
[u'delay', u'atmospher', u'satellit', u'launch']
[u'press', u'question', u'bush', u'iraq', u'justif']
[u'host', u'intern', u'drill']
[u'vettori', u'send', u'windi', u'final', u'spin']
[u'admit', u'drink', u'drive']
[u'involv', u'smash']
[u'polic', u'divid', u'royal', u'commiss', u'call']
[u'viduka', u'spurn', u'celtic', u'offer']
[u'warn', u'australian', u'victori']
[u'yemen', u'forc', u'battl', u'anti', u'cleric', u'support']
[u'accc', u'scheme', u'wont', u'affect', u'coal', u'shipment']
[u'confid', u'drought', u'relief']
[u'adriano', u'trebl', u'help', u'brazil', u'sink', u'costa', u'rica']
[u'african', u'migrant', u'land', u'itali']
[u'agreement', u'reach', u'camp', u'leas']
[u'aid', u'econom', u'develop']
[u'algerian', u'report', u'appeal', u'fail', u'defam', u'case']
[u'alic', u'mayor', u'call', u'highway', u'money']
[u'alleg', u'cattl', u'duffer', u'appear', u'court']
[u'urg', u'stop', u'import', u'doctor']
[u'annan', u'plead', u'action', u'aid']
[u'aussi', u'chase', u'earli', u'wicket']
[u'aussi', u'kill', u'cairn']
[u'aussi', u'yacht', u'crew', u'perform', u'athen', u'warm']
[u'australia', u'help', u'celebr', u'kiribati', u'independ']
[u'australia', u'post', u'admit', u'mistak', u'matern', u'rule']
[u'austrian', u'destroy', u'navratilova', u'final', u'dream']
[u'author', u'begin', u'destroy', u'infect', u'citrus']
[u'beatti', u'accus', u'panic', u'power', u'report']
[u'beazley', u'defenc', u'portfolio']
[u'crowd', u'expect', u'farewel', u'pioneer']
[u'bleak', u'outlook', u'coral', u'reef', u'warn', u'research']
[u'blind', u'pilot', u'reach', u'record']
[u'breast', u'cancer', u'studi', u'focus', u'survivor']
[u'bush', u'aid', u'polici', u'come', u'attack']
[u'busi', u'week', u'judiciari']
[u'cabinet', u'decis', u'nuclear', u'dump', u'remain', u'unclear']
[u'cabinet', u'extend', u'drought', u'assist', u'program']
[u'camel', u'prove', u'winner']
[u'carr', u'open', u'aldavilla', u'jail']
[u'carr', u'uncertain', u'futur', u'port']
[u'cattl', u'parasit', u'presenc', u'fall', u'gympi']
[u'push', u'ahead', u'port', u'work']
[u'child', u'porn', u'voyeur', u'get', u'good', u'behaviour', u'bond']
[u'citrus', u'farmer', u'consid', u'oversea', u'market']
[u'citrus', u'grower', u'wait', u'canker', u'impact']
[u'close', u'finish', u'draw', u'like']
[u'cloud', u'seeder', u'claim', u'snow', u'success']
[u'conserv', u'council', u'reject', u'fish', u'reloc', u'plan']
[u'coron', u'probe', u'death', u'custodi']
[u'council', u'push', u'communiti', u'hous', u'polici']
[u'council', u'borrow', u'fund', u'hole']
[u'council', u'warn', u'industri', u'woe', u'contract']
[u'court', u'determin', u'face', u'murder', u'trial']
[u'court', u'hear', u'babi', u'death', u'evid']
[u'staff', u'walk', u'australia']
[u'crean', u'accept', u'costello', u'debat', u'challeng']
[u'credit', u'card', u'owner', u'warn', u'phone', u'scam']
[u'custom', u'offic', u'post', u'remot', u'border', u'protect']
[u'democrat', u'urg', u'govt', u'releas', u'school', u'report']
[u'design', u'chang', u'wont', u'stop', u'speed', u'racv']
[u'cours', u'winter', u'regular']
[u'drive', u'aim', u'boost', u'northern', u'tourist', u'number']
[u'drought', u'assist', u'extend']
[u'drought', u'grip', u'hunter']
[u'drought', u'tighten', u'grip']
[u'drug', u'cyclist', u'olymp']
[u'duyfken', u'voyag', u'begin']
[u'eadi', u'deni', u'drug', u'alleg']
[u'eadi', u'drug']
[u'elder', u'back', u'nativ', u'titl', u'appeal', u'reject']
[u'elkington', u'british', u'open']
[u'mail', u'warn', u'put', u'south', u'korean', u'airport', u'alert']
[u'embattl', u'deni', u'icac', u'alleg']
[u'emerg', u'servic', u'honour', u'memori']
[u'escape', u'recaptur', u'newcastl']
[u'exit', u'poll', u'find', u'koizumi', u'fall', u'short', u'target']
[u'execut', u'face', u'court', u'cover', u'charg']
[u'famili', u'unpack', u'miss', u'moggi', u'melbourn']
[u'famili', u'want', u'killer', u'shark', u'spar']
[u'fatal', u'blaze', u'spark', u'safeti', u'warn']
[u'feder', u'final', u'win', u'swiss', u'open']
[u'damag', u'school', u'prepar', u'student', u'return']
[u'firm', u'back', u'mine', u'legisl', u'review']
[u'fisher', u'protest', u'green', u'zone']
[u'forest', u'group', u'highlight', u'clear', u'fell', u'safeti']
[u'intellig', u'chief', u'heap', u'pressur', u'blair']
[u'rescu', u'cliff', u'face']
[u'franc', u'iraq', u'resum', u'diplomat', u'tie']
[u'freighlink', u'help', u'militari', u'equip']
[u'funer', u'director', u'fin', u'unauthoris', u'dispos']
[u'game', u'industri', u'await', u'releas']
[u'gaudio', u'face', u'zabaleta', u'argentin', u'final']
[u'goat', u'export', u'doubl', u'product']
[u'googl', u'hop', u'public', u'month', u'report']
[u'govt', u'reassur', u'public', u'histor', u'garden', u'sale']
[u'govt', u'reject', u'delay', u'attack']
[u'graf', u'edberg', u'enshrin', u'hall', u'fame']
[u'grafton', u'court', u'extradit', u'alleg', u'murder']
[u'green', u'deni', u'select', u'log', u'riski']
[u'gregan', u'nation', u'open']
[u'group', u'consid', u'world', u'heritag', u'list', u'nomin']
[u'hansen', u'claim']
[u'head', u'turn', u'skyward', u'astrofest']
[u'hensbi', u'make', u'breakthrough']
[u'suffer', u'bar', u'aid', u'confer', u'open']
[u'hope', u'remain', u'eagl', u'final', u'chanc']
[u'howard', u'unveil', u'emerg', u'worker', u'memori']
[u'industri', u'action', u'hit', u'environ', u'dept']
[u'injur', u'dragon', u'give', u'time', u'prove', u'fit']
[u'inquiri', u'tell', u'school', u'fund', u'flaw']
[u'internet', u'bank', u'safer']
[u'iran', u'dismiss', u'direct', u'nuclear', u'talk']
[u'iraq', u'syria', u'improv', u'border', u'secur']
[u'isra', u'coalit', u'push', u'gaza', u'withdraw']
[u'israel', u'order', u'snip', u'shrek', u'joke']
[u'itali', u'prevent', u'dock', u'migrant', u'ship']
[u'itsi', u'bitsi', u'spider', u'catch', u'snake']
[u'japanes', u'vow', u'troop', u'remain', u'iraq']
[u'japan', u'opposit', u'push', u'iraq', u'troop', u'withdraw']
[u'julia', u'creek', u'get', u'medic', u'centr', u'librari']
[u'kerri', u'edward', u'campaign', u'fight', u'namesak']
[u'kidnapp', u'extend', u'hostag', u'execut', u'deadlin']
[u'kojonup', u'come', u'financi', u'woe']
[u'labor', u'cost', u'polici', u'base', u'sham', u'say', u'costello']
[u'lane', u'close', u'amidst', u'bridg', u'work']
[u'latham', u'renew', u'iraq', u'withdraw', u'pledg']
[u'lauranc', u'rockefel', u'die', u'age']
[u'lemon', u'juic', u'kill', u'aid', u'virus', u'research']
[u'levet', u'storm', u'home', u'snare', u'scottish', u'open']
[u'liber', u'regret', u'drink', u'drive', u'incid']
[u'long', u'court', u'bail', u'breach']
[u'magpi', u'unfaz', u'aker', u'critic']
[u'major', u'blackout', u'greec']
[u'mallon', u'win', u'canadian', u'women', u'open']
[u'admit', u'guilt', u'abduct']
[u'arrest', u'stab']
[u'charg', u'fatal', u'lakemba', u'stab']
[u'mandela', u'imag', u'display']
[u'die', u'troop', u'destroy', u'gaza', u'home']
[u'fli', u'hospit', u'accid']
[u'injur', u'mine', u'accid']
[u'think', u'miss', u'safe']
[u'grafton', u'court', u'murder', u'charg']
[u'matthew', u'take', u'dictat']
[u'mayor', u'happi', u'candid']
[u'mcewen', u'grab', u'green', u'ogradi']
[u'mcgauran', u'head', u'challeng']
[u'meatwork', u'revamp', u'near', u'start']
[u'mental', u'health', u'council', u'question', u'miss', u'fund']
[u'militari', u'plan', u'creat', u'tourism', u'concern']
[u'million', u'dollar', u'memori', u'unveil']
[u'million', u'battl', u'south', u'asia', u'flood']
[u'mine', u'truck', u'blaze', u'investig']
[u'miss', u'cold', u'night']
[u'montgomeri', u'fail', u'olymp']
[u'child', u'porn', u'charg', u'like']
[u'custom', u'offic', u'boost', u'port', u'secur']
[u'youth', u'listen', u'plea', u'good']
[u'delight', u'rail', u'return']
[u'reject', u'forest', u'sale', u'claim']
[u'want', u'hospit', u'committe', u'elect']
[u'woe', u'wollongong', u'nowra']
[u'navi', u'amphibi', u'plan', u'spark', u'debat']
[u'nepales', u'flood', u'leav', u'dead']
[u'rule', u'allow', u'polic', u'conduct', u'undercov']
[u'word', u'hostag', u'face', u'death', u'iraq']
[u'govt', u'lose', u'decad', u'long', u'fight', u'ballast', u'point']
[u'fashion', u'design', u'know', u'denim']
[u'soccer', u'fan', u'free', u'euro', u'bash']
[u'offic', u'declin', u'evid', u'redfern']
[u'opposit', u'call', u'inquiri', u'strathmont']
[u'patient', u'testifi', u'accus', u'tobin', u'killer']
[u'perez', u'claim', u'victori', u'real', u'elect']
[u'phoenix', u'rise']
[u'pilbara', u'welcom', u'nickel', u'oper']
[u'plan', u'aim', u'help', u'save', u'great', u'lake', u'koala']
[u'plan', u'allow', u'water', u'licenc', u'trade']
[u'plane', u'hijack', u'world', u'devil', u'court', u'tell']
[u'plan', u'afoot', u'bring', u'goldfield']
[u'plenti', u'work', u'rescu', u'chopper']
[u'polic', u'consid', u'charg', u'safe', u'incid']
[u'polic', u'focus', u'crime', u'effort', u'gunnedah']
[u'polic', u'investig', u'child', u'assault', u'claim']
[u'polic', u'investig', u'fatal', u'meatwork', u'accid']
[u'polic', u'investig', u'suspici', u'mornington', u'death']
[u'polic', u'prepar', u'report', u'fatal', u'crash']
[u'polic', u'probe', u'hous', u'blaze']
[u'polic', u'probe', u'leonora', u'brawl']
[u'polic', u'search', u'miss', u'overnight']
[u'port', u'take', u'record', u'coal', u'level']
[u'power', u'station', u'strike', u'extend', u'week']
[u'premier', u'open', u'aldavilla', u'jail']
[u'pressur', u'mount', u'quick', u'highway', u'fund']
[u'price', u'sign', u'warrior']
[u'princ', u'william', u'run', u'chariti']
[u'push', u'greater', u'drought']
[u'opposit', u'want', u'extra', u'road', u'spend']
[u'rail', u'return', u'see', u'tourism', u'winner']
[u'rain', u'delay', u'gymkhana']
[u'rain', u'fail', u'eas', u'drought', u'condit']
[u'rain', u'offer', u'littl', u'pastur', u'relief']
[u'rann', u'expect', u'backdown', u'nuclear', u'dump']
[u'rebuild', u'rubi', u'water']
[u'record', u'turnov', u'livestock', u'saleyard']
[u'recoveri', u'effort', u'launch', u'sink', u'speedboat']
[u'refuge', u'ship', u'dock', u'itali']
[u'rescu', u'begin', u'strand', u'humpback', u'calf']
[u'resid', u'group', u'reliev', u'shop', u'centr', u'start']
[u'road', u'crash', u'victim', u'name']
[u'road', u'congress', u'talk', u'transport', u'plan']
[u'saint', u'form', u'say', u'hudghton']
[u'question', u'citrus', u'decis']
[u'scheme', u'look', u'boost', u'indigen', u'teacher', u'number']
[u'schumach', u'surg', u'seventh', u'titl']
[u'search', u'busi', u'invest', u'opportun']
[u'sharapova', u'opt', u'schedul']
[u'sharon', u'pere', u'meet', u'coalit', u'talk']
[u'skimpi', u'cloth', u'outlaw', u'iranian', u'fashion', u'polic']
[u'sluggish', u'start', u'week', u'market']
[u'lankan', u'pont', u'wicket']
[u'state', u'uphold', u'citrus']
[u'studi', u'tour', u'put', u'focus', u'river', u'murray']
[u'support', u'rail', u'competit', u'push']
[u'surrey']
[u'sydney', u'accid', u'injur', u'elder']
[u'takeov', u'plan', u'littl', u'impact', u'mudge', u'win']
[u'talk', u'begin', u'cabinet', u'reshuffl']
[u'talk', u'focus', u'move', u'sport']
[u'teacher', u'union', u'wari', u'govt', u'chang']
[u'teen', u'court', u'fatal', u'umbrella', u'attack']
[u'thousand', u'aero', u'club', u'open']
[u'tourism', u'fund', u'intensifi']
[u'town', u'shock', u'famili', u'tragedi']
[u'shark', u'kill', u'surfer', u'expert']
[u'soldier', u'kill', u'wound', u'iraq', u'blast']
[u'union', u'slam', u'halv', u'matern', u'payment']
[u'union', u'want', u'prison', u'staff', u'meal', u'issu', u'resolv']
[u'group', u'target', u'copycat', u'aid', u'drug']
[u'ponder', u'elect', u'delay']
[u'pull', u'pitch', u'black', u'exercis']
[u'polic', u'pack', u'semi', u'automat']
[u'white', u'speed', u'ralli', u'burni']
[u'win', u'mix', u'polocross', u'team', u'home']
[u'wit', u'seek', u'fatal', u'road', u'crash']
[u'woman', u'die', u'road', u'smash']
[u'woman', u'drag', u'tanker']
[u'wooli', u'small', u'beer', u'compani']
[u'aborigin', u'keen', u'kangaroo']
[u'ghraib', u'attack', u'insurg']
[u'order', u'kangaroo', u'cull']
[u'afghan', u'refuge', u'arriv', u'nauru']
[u'agassi', u'shrug', u'retir', u'talk']
[u'aid', u'confer', u'mascot', u'kill', u'handler']
[u'aid', u'rob', u'children', u'parent']
[u'alcohol', u'manag', u'chang', u'fail', u'impress']
[u'alleg', u'murder', u'appear', u'southport', u'court']
[u'amaz', u'schu', u'class', u'apart']
[u'ambul', u'locat', u'undecid']
[u'angler', u'redclaw', u'crayfish', u'remind']
[u'annan', u'urg', u'fight', u'aid']
[u'anti', u'social', u'sheep', u'terroris', u'divid']
[u'ban', u'inject', u'dope', u'crackdown']
[u'aphrodit', u'win', u'albatross', u'race']
[u'appl', u'hit', u'million', u'itun', u'mark']
[u'armstrong', u'look', u'forward', u'tour', u'crunch', u'time']
[u'arsenal', u'unbeaten', u'say', u'bergkamp']
[u'athen', u'black', u'ahead', u'olymp']
[u'atlas', u'highlight', u'wine', u'region', u'growth']
[u'aust', u'leav', u'loop', u'bali']
[u'australia', u'help', u'avoid', u'collaps', u'downer', u'say']
[u'australia', u'chase', u'quick', u'run']
[u'austrian', u'airlin', u'order', u'boe']
[u'babi', u'humpback', u'die', u'strand']
[u'beach', u'open', u'fatal', u'shark', u'attack']
[u'beard', u'reclaim', u'breast', u'stroke']
[u'beatti', u'springborg', u'join', u'forc', u'ethanol']
[u'beatti', u'possess', u'navi', u'ship']
[u'beazley', u'rule', u'leadership', u'challeng']
[u'sport', u'facil', u'plan', u'site']
[u'blackburn', u'maradona', u'junior', u'stall']
[u'border', u'protect', u'polici', u'steal', u'latham', u'say']
[u'breen', u'deni', u'rort', u'alleg', u'icac', u'inquiri']
[u'brisban', u'garbo', u'return', u'work']
[u'britain', u'shut', u'float', u'duti', u'free', u'outlet']
[u'brown', u'match']
[u'budget', u'airlin', u'increas', u'airport', u'passeng', u'number']
[u'burma', u'suspect', u'bug', u'indonesian', u'embassi']
[u'bush', u'defend', u'iraq', u'say', u'safer']
[u'button', u'urg', u'pick', u'pace']
[u'cabl', u'moot', u'wellington']
[u'carr', u'outlin', u'reason', u'jail', u'site']
[u'chang', u'applic']
[u'chinchilla', u'second', u'nation', u'farmer', u'award']
[u'citrus', u'ban', u'worri', u'export']
[u'citrus', u'destruct', u'continu', u'central']
[u'citrus', u'diseas', u'put', u'squeez', u'market']
[u'citrus', u'grower', u'want', u'interst', u'access']
[u'citi', u'back', u'plan']
[u'communiti', u'shock', u'death']
[u'concret', u'firm', u'clear', u'contract', u'issu']
[u'conflict', u'evid', u'reveal', u'hickey', u'inquest']
[u'confus', u'surround', u'philippin', u'hostag', u'crisi']
[u'contain', u'maker', u'make', u'park']
[u'coron', u'hear', u'prison', u'death', u'evid']
[u'costello', u'criticis', u'fli', u'visit']
[u'council', u'ask', u'rethink', u'hous', u'plan']
[u'council', u'back', u'push', u'medicar', u'licenc']
[u'council', u'beef', u'water', u'restrict']
[u'councillor', u'upbeat', u'sand', u'dun', u'cooper']
[u'court', u'adjourn', u'reckless', u'pilot', u'case']
[u'custom', u'probe', u'game', u'squad']
[u'cwealth', u'accus', u'state', u'fail', u'canker', u'outbreak']
[u'dead', u'bacteria', u'strike', u'rarest', u'bird']
[u'democrat', u'criticis', u'dump', u'decis', u'delay']
[u'democrat', u'seek', u'kangaroo', u'forestri', u'limit']
[u'dept', u'probe', u'fume', u'incid']
[u'deputi', u'mayor', u'quit', u'leadership', u'concern']
[u'devonport', u'babi', u'make', u'emerg', u'flight']
[u'director', u'fli', u'superman']
[u'doctor', u'hospit', u'merger', u'plan']
[u'doubt', u'rais', u'diabet', u'effort']
[u'downer', u'deni', u'cabinet', u'split', u'dump']
[u'appeal', u'assault', u'sentenc']
[u'draw', u'bolivia', u'put', u'venezuela', u'copa']
[u'drought', u'continu']
[u'drug', u'furor', u'put', u'athen', u'team', u'hold']
[u'drug', u'furor', u'put', u'olymp', u'select', u'hold']
[u'eadi', u'challeng', u'drug', u'alleg']
[u'examin', u'expect', u'confirm', u'murder', u'suicid']
[u'info', u'wouldnt', u'chang', u'bali', u'warn', u'downer']
[u'film', u'accus', u'news', u'bush', u'bias']
[u'fisher', u'protest', u'reef', u'rezon']
[u'forecast', u'spot', u'unusu', u'climat', u'swing']
[u'forecast', u'warmer', u'weather', u'ahead']
[u'player', u'acquit', u'rape']
[u'appear', u'tribun']
[u'tribun']
[u'fund', u'help', u'health', u'hamilton', u'hospit']
[u'ghost', u'heal', u'sick', u'sacr', u'iranian', u'shrine']
[u'goat', u'help', u'manag', u'veget']
[u'googl', u'list', u'nasdaq']
[u'goondiwindi', u'murder', u'trial', u'continu']
[u'govern', u'boost', u'iraq', u'troop', u'number']
[u'govt', u'drop', u'stricter', u'internet', u'gambl', u'propos']
[u'govt', u'overhaul', u'rule', u'resid']
[u'govt', u'shift', u'give', u'refuge', u'hope', u'stay']
[u'govt', u'stand', u'hospit', u'committe', u'process']
[u'govt', u'urg', u'restructur', u'medicar']
[u'great', u'white', u'shark', u'go', u'tiger']
[u'gresford', u'death', u'prompt', u'overhaul', u'call']
[u'groundwat', u'alloc', u'announc']
[u'group', u'consid', u'sport', u'facil', u'plan']
[u'harley', u'pair', u'ride', u'alzheim', u'research']
[u'hijack', u'second', u'attempt', u'court', u'hear']
[u'hobart', u'plan', u'free', u'zone']
[u'homicid', u'actor', u'georg', u'mallabi', u'die']
[u'hundr', u'enter', u'alic', u'prize']
[u'hundr', u'ralli', u'research', u'station', u'futur']
[u'hunt', u'killer', u'shark', u'call']
[u'indigen', u'slam', u'howard', u'health', u'fund']
[u'indigen', u'voter', u'urg']
[u'injur', u'return', u'black', u'line']
[u'inquiri', u'hear', u'feder', u'fund', u'boost', u'privat']
[u'iraq', u'ask', u'nato', u'secur', u'help']
[u'iraqi', u'polic', u'detain', u'crimin']
[u'italian', u'arrest', u'asylum', u'seeker', u'ship', u'captain']
[u'train', u'generat', u'terrorist', u'report']
[u'juri', u'decid', u'attempt', u'hijack', u'fate']
[u'kemp', u'disappoint', u'environ', u'minist']
[u'kemp', u'quit', u'polit']
[u'labor', u'attack', u'govt', u'advertis', u'frenzi']
[u'labor', u'divid', u'dump']
[u'labor', u'pledg', u'reassess', u'banana', u'import']
[u'labor', u'reject', u'cost', u'claim']
[u'labor', u'iraq', u'plan', u'earn', u'prais']
[u'lake', u'creek', u'abattoir', u'reopen']
[u'latham', u'bet', u'iraq']
[u'latham', u'move', u'boost', u'relat']
[u'latham', u'visit', u'focus', u'local', u'issu']
[u'lobsey', u'mayor', u'liverpool', u'plain', u'council']
[u'loss', u'record', u'surpris', u'say', u'jone', u'coach']
[u'loss', u'record', u'surpirisng', u'say', u'jone', u'coach']
[u'lowest', u'sugar', u'pool', u'price', u'year']
[u'lynch', u'reflect', u'ahead', u'game']
[u'charg', u'wodonga', u'stab']
[u'die', u'wyndham', u'stab']
[u'get', u'bail', u'darwin', u'drug', u'raid']
[u'hospitalis', u'uranium', u'accid']
[u'pull', u'burn', u'hous']
[u'mass', u'suicid', u'threaten', u'chines', u'protest']
[u'meet', u'debat', u'council', u'offic', u'futur']
[u'miner', u'urg', u'explain', u'local', u'train', u'plan']
[u'minist', u'meet', u'singapor']
[u'miss', u'teenag']
[u'miss', u'woman']
[u'news', u'break', u'hill']
[u'morgan', u'stanley', u'settl', u'gender', u'bias', u'suit']
[u'say', u'territori', u'consid', u'nuclear', u'dump']
[u'murali', u'lankan', u'squad', u'asia']
[u'muslim', u'activist', u'campaign', u'headscarf', u'rule']
[u'nat', u'cast', u'doubt', u'mildura', u'rail', u'claim']
[u'beatl', u'song', u'victoria']
[u'rural', u'advisori', u'council']
[u'kill', u'african', u'collaps']
[u'deni', u'interfer', u'retail', u'closur']
[u'shift', u'highway', u'focus', u'feder', u'govt']
[u'line', u'nuke', u'dump']
[u'opposit', u'leader', u'embark', u'rural', u'tour']
[u'orang', u'parad', u'end', u'violenc']
[u'paint', u'spark', u'captain', u'cook', u'debat']
[u'pair', u'hold', u'drug', u'charg']
[u'panel', u'urg', u'offer', u'fluorid', u'advic']
[u'pari', u'lose', u'privaci', u'suit']
[u'parkhurst', u'student', u'counsel', u'blaze']
[u'pfizer', u'chief', u'heckl', u'aid', u'confer']
[u'philippin', u'armi', u'await', u'iraq', u'pullout', u'order']
[u'philippin', u'announc', u'iraq', u'pullout']
[u'philippin', u'reiter', u'iraq', u'pullout', u'stanc']
[u'plan', u'underway', u'indigen', u'youth', u'detent']
[u'defend', u'plan', u'visa', u'chang']
[u'polic', u'pleas', u'holiday', u'driver']
[u'polic', u'progress', u'investig', u'child']
[u'polic', u'internet', u'meet', u'robberi']
[u'polic', u'search', u'miss', u'girl']
[u'polic', u'releas', u'detail', u'drug', u'raid']
[u'porn', u'download', u'offend', u'regist']
[u'plot', u'uncov', u'olymp', u'torch', u'relay']
[u'power', u'restor', u'athen']
[u'power', u'station', u'threaten', u'electr', u'suppli']
[u'predict', u'strong', u'futur']
[u'prison', u'escap', u'hospit', u'visit']
[u'protest', u'disrupt', u'aid', u'summit']
[u'push', u'eplga', u'perform', u'review']
[u'qanta', u'flight', u'attend', u'strike', u'plan']
[u'govt', u'urg', u'fuel', u'subsidi']
[u'minist', u'face', u'budget', u'grill']
[u'speaker', u'play', u'miss', u'silverwar']
[u'question', u'hinder', u'govt', u'busi', u'treasur']
[u'radioact', u'threat', u'play', u'theft']
[u'rat', u'talk', u'return', u'busi', u'pick']
[u'realiti', u'channel', u'slat', u'news', u'corp']
[u'region', u'olymp', u'pledg']
[u'region', u'await', u'health', u'merger', u'news']
[u'retail', u'bolster', u'local', u'market']
[u'rooney', u'agent', u'dismiss', u'real', u'talk']
[u'ross', u'donnelli', u'date', u'judiciari']
[u'rural', u'medic', u'colleg', u'appli', u'specialist']
[u'safe', u'radioact', u'materi', u'steal', u'rmit']
[u'sar', u'antibodi', u'offer', u'treatment']
[u'school', u'report', u'highlight', u'problem', u'area']
[u'seabi', u'star', u'rise']
[u'search', u'continu', u'castaway', u'parent']
[u'search', u'capsiz', u'famili', u'call']
[u'search', u'miss', u'castaway', u'doubt']
[u'sharon', u'stone', u'agre', u'basic', u'instinct', u'sequel']
[u'shepparton', u'unlik', u'licenc']
[u'shire', u'seek', u'mine', u'guarante']
[u'short', u'stage', u'prospect', u'rest', u'bunch']
[u'sport', u'minist', u'back', u'silverston', u'futur']
[u'student', u'die', u'misdirect', u'kashmir', u'blast']
[u'submarin', u'spill', u'soot', u'river']
[u'swan', u'open', u'gippsland', u'candid', u'offic']
[u'tech', u'stock', u'fall', u'wall']
[u'thailand', u'battl', u'bird', u'outbreak']
[u'thousand', u'attend', u'clinton', u'book', u'sign']
[u'troubl', u'port', u'hedland', u'council', u'elect', u'mayor']
[u'rider', u'kick', u'tour']
[u'announc', u'iraq', u'envoy']
[u'back', u'plea', u'return', u'rail', u'servic']
[u'union', u'urg', u'tougher', u'workplac', u'law', u'worker']
[u'staff', u'unhappi', u'offer']
[u'defend', u'hospit', u'wait', u'list']
[u'farmer', u'sick', u'govern', u'tape']
[u'woman', u'miss', u'nation', u'park']
[u'warn', u'draw', u'level', u'murali', u'test', u'end', u'draw']
[u'warn', u'equal', u'murali', u'record']
[u'warn', u'equal', u'record', u'australian', u'fall', u'short']
[u'warn', u'level', u'murali', u'test', u'draw']
[u'warn', u'level', u'murali', u'test', u'end', u'draw']
[u'whale', u'popul', u'boom']
[u'whale', u'rescu', u'coast']
[u'woman', u'dead', u'babi']
[u'woolford', u'disappoint', u'player', u'departur']
[u'zabaleta', u'retain', u'swedish', u'open']
[u'predict', u'jump', u'local', u'drama', u'product']
[u'launch', u'campaign', u'combat', u'violenc']
[u'postpon', u'kangaroo', u'cull']
[u'quiet', u'protest']
[u'agassi', u'claim', u'mileston']
[u'aid', u'slash', u'life', u'expect', u'africa']
[u'forc', u'probe', u'plan', u'distress']
[u'albatross', u'race', u'annual']
[u'alcohol', u'vapour', u'sale', u'begin']
[u'aldi', u'bring', u'hop', u'busi', u'invest']
[u'alleg', u'caus', u'princip', u'stand', u'asid']
[u'memori', u'fund', u'pledg']
[u'amalgam', u'council', u'elect', u'mayor']
[u'target', u'chicken', u'polio', u'vaccin']
[u'issu', u'health', u'report', u'card']
[u'argentina', u'sink', u'uruguay', u'figueroa', u'doubl']
[u'armitag', u'india', u'meet']
[u'athen', u'secur', u'spend', u'higher', u'sydney']
[u'aunti', u'tell', u'castaway', u'kid', u'miracul', u'surviv']
[u'aust', u'eye', u'offshor', u'nuclear', u'wast', u'dump']
[u'author', u'reject', u'fish', u'closur', u'claim']
[u'award', u'prove', u'publish', u'right', u'recip', u'success']
[u'baghdad', u'blast', u'kill']
[u'beatti', u'say', u'ship', u'sink', u'wont', u'rush']
[u'beckenbau', u'hint', u'germani', u'choos', u'foreign', u'coach']
[u'lade', u'associ', u'turn']
[u'bjorn', u'plan', u'banish', u'open', u'demon']
[u'blair', u'quot', u'iraq', u'weapon']
[u'blair', u'take', u'blame', u'intellig']
[u'british', u'committe', u'urg', u'overhaul', u'honour']
[u'british', u'govt', u'await', u'iraq', u'intellig', u'report']
[u'briton', u'jail', u'ball']
[u'break', u'hill', u'hit', u'road', u'today']
[u'bulgaria', u'confirm', u'iraq', u'hostag', u'kill']
[u'bulgarian', u'hostag', u'execut', u'report']
[u'bulgaria', u'stay', u'iraq', u'despit', u'behead']
[u'chang', u'player', u'contract', u'talk']
[u'canberra', u'airport', u'meet', u'concern', u'citizen']
[u'casino', u'worker', u'meet', u'offer']
[u'central', u'australian', u'tourism', u'surg']
[u'central', u'citrus', u'tree', u'burn', u'continu']
[u'chamber', u'worri', u'mine', u'guarante']
[u'chariti', u'come', u'roma', u'girl', u'rescu']
[u'chechen', u'leader', u'surviv', u'blast']
[u'china', u'welcom', u'birth', u'panda']
[u'chines', u'polic', u'crack', u'babi', u'traffic', u'ring']
[u'citrus', u'canker', u'sampl', u'test']
[u'clinic', u'school', u'fund', u'student', u'hous']
[u'clone', u'die', u'mastiti', u'infect']
[u'coach', u'demand', u'meet', u'tribun', u'fin']
[u'committe', u'meet', u'council', u'water', u'fluorid']
[u'consum', u'confid', u'hit', u'year', u'high']
[u'council', u'approv', u'hous', u'project', u'develop']
[u'council', u'consid', u'committe', u'meet', u'shake']
[u'council', u'dissatisfact', u'plan', u'ratepay']
[u'council', u'stand', u'develop', u'consent']
[u'court', u'hear', u'gatto', u'unhappi', u'prison', u'condit']
[u'courtney', u'love', u'discharg', u'hospit']
[u'crocker', u'set', u'butterfli', u'world', u'record']
[u'dairi', u'worker', u'meet']
[u'darl', u'down', u'get', u'crcs']
[u'dead', u'blast', u'hit', u'baghdad', u'green', u'zone']
[u'debat', u'continu', u'highway', u'work']
[u'develop', u'commiss', u'welcom', u'refuge', u'polici']
[u'diamond', u'firm', u'plan', u'local', u'worker', u'boost']
[u'dirt', u'road', u'campaign', u'bite', u'dust']
[u'donnelli', u'suspend', u'ross', u'guilti']
[u'doubt', u'cast', u'temporari', u'protect', u'visa', u'chang']
[u'downer', u'ask', u'philippin', u'withdraw', u'troop']
[u'dracula', u'put', u'bite', u'small', u'busi', u'award']
[u'dump', u'decis', u'setback', u'luca', u'height']
[u'eadi', u'gambl', u'chanc', u'appeal']
[u'eadi', u'olymp', u'squad']
[u'take', u'swing', u'golf', u'chief']
[u'ethanol', u'industri', u'hop', u'greater', u'polit']
[u'farmer', u'group', u'question', u'dept', u'plan']
[u'govt', u'urg', u'examin', u'tree', u'clear', u'compo']
[u'filipino', u'hostag', u'safe', u'iraq', u'offici']
[u'firm', u'make', u'maleni', u'woolworth', u'pledg']
[u'firm', u'upbeat', u'gold', u'explor']
[u'firm', u'upbeat', u'organ', u'beef', u'trade']
[u'flood', u'caus', u'havoc', u'south', u'asia']
[u'priest', u'charg', u'offenc']
[u'forum', u'debat', u'syring', u'vend', u'machin']
[u'fossil', u'research', u'challeng', u'earli', u'anim', u'life', u'theori']
[u'fund', u'seek', u'medic', u'centr']
[u'gallop', u'say', u'nuclear', u'wast']
[u'girl', u'die', u'sydney']
[u'goldfield', u'line', u'plan']
[u'gosper', u'lash', u'pound', u'drug', u'critic']
[u'govt', u'deni', u'forc', u'asylum', u'seeker', u'reloc']
[u'govt', u'ditch', u'nuclear', u'dump', u'plan']
[u'govt', u'urg', u'prison', u'transport']
[u'greek', u'urg', u'olymp', u'stadium']
[u'harrop', u'olymp', u'fast', u'track']
[u'heathcot', u'bank', u'secur', u'lender']
[u'hickss', u'lawyer', u'touch', u'cuba']
[u'higher', u'cost', u'toll', u'saleyard']
[u'horticultur', u'industri', u'support', u'visa', u'chang']
[u'hospit', u'pressur', u'caus', u'treatment', u'oversight']
[u'howard', u'reshuffl', u'cabinet']
[u'india', u'pakistan', u'renew', u'cricket', u'rivalri']
[u'indigen', u'diabet', u'rate', u'ring', u'alarm', u'bell']
[u'indigen', u'group', u'form', u'nation', u'coalit']
[u'industri', u'woe', u'unlik', u'affect', u'graduat']
[u'investig', u'begin', u'plan', u'emerg', u'land']
[u'iraqi', u'communiti', u'offer', u'support', u'visa', u'chang']
[u'iraq', u'olymp', u'chief', u'surviv', u'assassin', u'attempt']
[u'order', u'tinto', u'employ', u'worker']
[u'israel', u'kill', u'senior', u'jihad', u'leader']
[u'jail', u'shower', u'screen', u'suicid', u'risk']
[u'jam', u'hardi', u'make', u'asbesto', u'compo', u'offer']
[u'japan', u'rule', u'parti', u'lose', u'spot', u'poll']
[u'jetti', u'remain', u'sport', u'develop']
[u'juri', u'find', u'guilti', u'hijack', u'trial']
[u'find', u'iraq', u'intellig', u'report']
[u'kookaburra', u'scrape', u'home', u'cairn']
[u'labor', u'backflip', u'woomera', u'wast', u'reloc']
[u'lara', u'warm', u'england']
[u'latham', u'focus', u'region', u'social', u'invest']
[u'legal', u'centr', u'cast', u'doubt', u'centr']
[u'lennon', u'meet', u'labor', u'premier', u'uniti']
[u'lewi', u'battl', u'injuri', u'defend', u'olymp', u'titl']
[u'liber', u'pair', u'blue', u'ribbon', u'seat']
[u'lismor', u'council', u'sign']
[u'longreach', u'farewel', u'region', u'leader']
[u'lord', u'butler', u'ultim', u'british', u'establish']
[u'charg', u'woman', u'death']
[u'die', u'road', u'crash']
[u'refus', u'bail', u'philippin', u'child', u'charg']
[u'market', u'subdu', u'profit', u'report']
[u'mayor', u'mark', u'baker', u'deputi', u'posit']
[u'mccaw', u'miss', u'nation', u'open']
[u'mcewen', u'pip', u'ogradi', u'number']
[u'mcgrath', u'fin', u'outburst']
[u'meatwork', u'chief', u'back', u'visa', u'decis']
[u'meet', u'consid', u'taxi', u'marshal', u'effort']
[u'melbourn', u'offic', u'caus', u'major', u'damag']
[u'mexico', u'bautista', u'send', u'ecuador', u'pack']
[u'mickelson', u'look', u'domin', u'troon']
[u'call', u'licenc', u'overhaul']
[u'aid', u'patient', u'move', u'riverina']
[u'money', u'seek', u'crime', u'prevent', u'program']
[u'planner', u'urg', u'overse', u'eden', u'resort', u'plan']
[u'refuge', u'arriv', u'brisban', u'nauru']
[u'murweh', u'budget', u'includ', u'rate', u'rise']
[u'museum', u'hop', u'steer', u'memorabilia']
[u'dive', u'pull']
[u'share', u'slump', u'warn']
[u'nasa', u'aura', u'mission', u'delay', u'time']
[u'council', u'look']
[u'festiv', u'attract', u'architectur', u'lead']
[u'mayor', u'look', u'better', u'council', u'financ']
[u'wide', u'food', u'group', u'name']
[u'nickel', u'project', u'move', u'closer', u'feder', u'fund']
[u'chang', u'commerci', u'abalon', u'catch', u'quota']
[u'nuclear', u'plan', u'propos', u'malle', u'wast', u'site']
[u'govt', u'oppos', u'nuke', u'dump', u'site']
[u'green', u'concern', u'nuke', u'wast', u'head', u'west']
[u'green', u'defend', u'publish', u'allow']
[u'jail', u'sentenc', u'overturn']
[u'implement', u'agricultur', u'research', u'chang']
[u'govt', u'oppos', u'wast', u'dump']
[u'ask', u'azaria', u'apolog']
[u'nurs', u'confer', u'look', u'workplac', u'violenc']
[u'oppn', u'say', u'vline', u'perform', u'rail']
[u'oversea', u'expertis', u'seek', u'chopper', u'crash', u'probe']
[u'parliament', u'hous', u'hous', u'gold', u'coast', u'artwork']
[u'philippin', u'begin', u'iraq', u'pullout']
[u'philippin', u'start', u'iraq', u'troop', u'withdraw']
[u'pilot', u'safe', u'crash', u'land']
[u'polic', u'call', u'tackl', u'dean', u'woe']
[u'polic', u'offer', u'tourist', u'travel', u'warn']
[u'polic', u'relaunch', u'miss', u'case']
[u'polic', u'search', u'grave', u'vandal']
[u'polic', u'seek', u'wit', u'assault']
[u'public', u'warn', u'hous', u'threat']
[u'health', u'defend', u'aid', u'servic', u'tender', u'decis']
[u'rabattoir', u'propon', u'call', u'coonambl', u'home']
[u'rate', u'rise', u'includ', u'murray', u'budget']
[u'refuge', u'group', u'back', u'visa', u'chang']
[u'relat', u'admit', u'see', u'hickey', u'chase', u'media']
[u'releas', u'whale', u'long', u'trip']
[u'renew', u'energi', u'polici']
[u'resid', u'hope', u'stringent', u'refineri', u'probe']
[u'reward', u'offer', u'inform', u'veget']
[u'riverina', u'support', u'visa', u'chang']
[u'robredo', u'crash', u'stuttgart']
[u'rural', u'women', u'motiv', u'talk']
[u'plan', u'nuke', u'wast', u'dump', u'site']
[u'scientist', u'map', u'eucalyptus']
[u'scud', u'fall', u'short']
[u'sharp', u'name', u'australia', u'captain']
[u'sharp', u'name', u'wallabi', u'captain']
[u'shire', u'risk', u'higher', u'year']
[u'smashnova', u'pistolesi', u'advanc', u'stanford']
[u'southern', u'cross', u'sign', u'feder', u'fund']
[u'srichaphan', u'overpow', u'defend', u'champ', u'ferreira']
[u'star', u'fear', u'troon', u'vicious', u'teeth']
[u'state', u'forc', u'govt', u'hand', u'wast', u'dump']
[u'survey', u'highlight', u'bruce', u'highway', u'issu']
[u'swede', u'reignit', u'guantanamo', u'tortur', u'fear']
[u'sydney', u'bronz', u'medallist', u'leav', u'china', u'team']
[u'talk', u'focus', u'power', u'station', u'land', u'sale']
[u'tarzan', u'tiger']
[u'tax', u'gambl', u'surf', u'club', u'fund']
[u'telstra', u'ditch', u'technolog', u'major', u'network']
[u'test', u'confirm', u'tour', u'cyclist', u'methadon']
[u'hurt', u'spanish', u'bull']
[u'jail', u'fraud']
[u'tidi', u'town', u'support', u'campaign', u'plastic']
[u'tiger', u'kill', u'florida', u'escap']
[u'apprentic', u'award', u'kerang', u'dairi', u'farmer']
[u'tour', u'start', u'earnest', u'stage']
[u'victorian', u'sit', u'heritag', u'list']
[u'iraq', u'intellig', u'bad', u'flaw']
[u'scarlett', u'live']
[u'union', u'concern', u'jail', u'food', u'prepar']
[u'unit', u'church', u'welcom', u'refuge', u'polici']
[u'aid', u'ambassador', u'jeer', u'thailand']
[u'reject', u'critic', u'aid', u'fight']
[u'rule', u'elect', u'delay']
[u'urg', u'philippin', u'pullout']
[u'vigilant', u'peacekeep', u'afghanistan']
[u'ventur', u'partner', u'seek', u'bauxit', u'deposit']
[u'minist', u'push', u'nation', u'wast', u'dump']
[u'vicroad', u'defend', u'bendigo', u'traffic', u'effort']
[u'violent', u'protest', u'greet', u'howard', u'melbourn']
[u'virgin', u'canberra', u'sydney', u'link', u'threat']
[u'vline', u'speak', u'warrnambool', u'concern']
[u'recognis', u'origin', u'custodian', u'stall']
[u'govt', u'angri', u'sluggish', u'upper', u'hous']
[u'warn', u'back', u'pont', u'declar']
[u'warn', u'rue', u'lose', u'opportun']
[u'weather', u'station', u'improv', u'bushfir', u'monitor']
[u'dont', u'want', u'nuclear', u'dump', u'beatti']
[u'william', u'readi', u'test', u'tyson']
[u'woman', u'alleg', u'weapon', u'long', u'attack']
[u'worsfold', u'question', u'sheed', u'confid', u'young']
[u'retail', u'sell', u'cigarett', u'minor']
[u'abbott', u'nelson', u'criticis', u'labor', u'pact']
[u'acci', u'rise', u'employ', u'super', u'contribut']
[u'warn', u'govt', u'reviv', u'nuclear', u'dump', u'plan']
[u'see', u'littl', u'chang', u'nuclear', u'wast', u'dispos']
[u'advisori', u'posit', u'requir', u'expertis', u'mayor']
[u'offic', u'recognis', u'outstand', u'servic']
[u'age', u'care', u'nurs', u'need', u'urgent', u'attent']
[u'agribusi', u'confer', u'examin', u'sector', u'outlook']
[u'hole', u'hole', u'look', u'royal', u'troon']
[u'aid', u'vaccin', u'trial', u'label', u'expens', u'flop']
[u'black', u'forc', u'reliv', u'world', u'horror']
[u'night', u'phone', u'flirt', u'cost', u'fortun']
[u'tear', u'beer', u'chines']
[u'dismiss', u'portland', u'midwiferi', u'program']
[u'anderson', u'luca', u'loggerhead', u'tulli', u'bypass']
[u'death', u'prompt', u'train', u'program']
[u'aussi', u'junior', u'pick', u'bronz', u'world', u'champ']
[u'aussi', u'readi', u'tour', u'climb']
[u'aussi', u'win', u'british', u'market']
[u'aust', u'name', u'solomon', u'mission', u'head']
[u'australian', u'arrest', u'peru', u'cocain', u'seizur']
[u'australia', u'kitt', u'bind', u'world']
[u'aust', u'standard', u'live', u'index']
[u'bathurst', u'host', u'univers', u'communiti', u'confer']
[u'beckham', u'ball', u'bid', u'million']
[u'beleagu', u'health', u'servic', u'track']
[u'bendigo', u'welcom', u'fortuna', u'villa', u'list']
[u'billiton', u'investig', u'chemic', u'inhal']
[u'criticis', u'mass', u'sack']
[u'breast', u'screen', u'fund', u'help', u'gippsland', u'women']
[u'bulgaria', u'await', u'news', u'second', u'hostag']
[u'calder', u'upgrad', u'doubt', u'cabinet']
[u'californian', u'wildfir', u'forc', u'evacu']
[u'bomb', u'kill', u'iraq']
[u'carr', u'deni', u'contact', u'westfield', u'chief']
[u'casey', u'levet', u'tie', u'troon', u'lead']
[u'caution', u'urg', u'larg', u'scale', u'drainag', u'project']
[u'centrelink', u'registr', u'fall', u'tableland']
[u'champion', u'sprinter', u'face', u'olymp', u'dope']
[u'chelsea', u'crespo', u'say', u'close', u'milan', u'switch']
[u'cherbourg', u'princip', u'reject', u'student', u'assault', u'claim']
[u'china', u'clean', u'gorg']
[u'convinc', u'terrorist', u'plan']
[u'citrus', u'grower', u'meet', u'gayndah']
[u'citi', u'properti', u'buyer', u'forc', u'region', u'area']
[u'coledal', u'call', u'perman', u'polic']
[u'collina', u'honour', u'english', u'univers']
[u'communiti', u'benefit', u'indigen', u'medic']
[u'compani', u'chang', u'unlik', u'affect', u'network']
[u'confus', u'surround', u'baralaba', u'ferri']
[u'conveyanc', u'go', u'onlin']
[u'costa', u'rica', u'qualifi', u'injuri', u'time', u'winner']
[u'council', u'make', u'hospit', u'site']
[u'council', u'plan', u'region', u'road', u'fund']
[u'council', u'take', u'court', u'action', u'artifici', u'lake']
[u'crow', u'docker', u'reach', u'game', u'mileston']
[u'crude', u'price', u'surg', u'market']
[u'custom', u'warn', u'scam']
[u'custom', u'finish', u'check', u'olympian']
[u'care', u'prove', u'difficult', u'tara', u'famili']
[u'deputi', u'attack', u'independ']
[u'dive', u'compani', u'plead', u'guilti', u'safeti', u'breach']
[u'doctor', u'awar', u'breast', u'cancer']
[u'downer', u'back', u'blair', u'govt', u'iraq']
[u'staff', u'prepar', u'public', u'demonstr']
[u'eadi', u'gambl', u'chanc', u'appeal']
[u'ask', u'probe', u'anti', u'govern', u'websit']
[u'elect', u'like', u'novemb', u'anderson']
[u'favourit', u'open']
[u'famili', u'hear', u'detent']
[u'farmer', u'anger', u'vffs', u'water', u'reform', u'support']
[u'farmer', u'battl', u'aphid', u'damag', u'winter']
[u'fatal', u'accid', u'prompt', u'intersect', u'review', u'call']
[u'festiv', u'fail', u'director']
[u'erad', u'cost']
[u'fisheri', u'alloc', u'anger', u'eden', u'fisherman']
[u'fish', u'struggl', u'quarter', u'final']
[u'banker', u'take', u'rein', u'port']
[u'deputi', u'premier', u'die']
[u'priest', u'expect', u'court', u'face', u'charg']
[u'kill', u'iraq', u'rocket', u'strike']
[u'bait', u'plan', u'divid', u'task', u'forc']
[u'fund', u'expect', u'mackay', u'sport', u'centr']
[u'strike', u'slat', u'murray', u'milker']
[u'girl', u'serious', u'burn', u'sydney', u'park']
[u'gold', u'coast', u'compani', u'win', u'beatti', u'prais']
[u'govern', u'updat', u'travel', u'warn']
[u'governor', u'mosul', u'gun']
[u'govt', u'announc', u'biosecur', u'australia', u'shake']
[u'govt', u'consid', u'polic', u'phone', u'tap', u'power']
[u'govt', u'urg', u'manag', u'babi', u'bonus', u'spend']
[u'green', u'control', u'summit']
[u'group', u'welcom', u'streamlin', u'land', u'transfer']
[u'hagan', u'consid', u'quit', u'maroon']
[u'harvey', u'blast', u'yorkshir']
[u'hick', u'habib', u'inform', u'legal', u'right']
[u'highway', u'zone', u'help', u'busi']
[u'hoggard', u'find', u'form', u'west', u'indi', u'struggl']
[u'hous', u'fund', u'boost', u'allevi', u'refug', u'need']
[u'howard', u'shirk', u'nuclear', u'respons', u'minist']
[u'human', u'remain', u'near', u'darwin', u'hospit']
[u'illawarra', u'health', u'board', u'recommend', u'sydney', u'merger']
[u'illawarra', u'health', u'graduat', u'help', u'communiti']
[u'immunis', u'initi', u'eas', u'clinic', u'strain']
[u'infant', u'blind', u'link', u'music', u'abil']
[u'iraqi', u'vow', u'crush', u'insurg']
[u'irwin', u'applaud', u'antarctica', u'footag', u'find']
[u'irwin', u'clear', u'antarct', u'antic']
[u'jam', u'hardi', u'attack', u'compo', u'plan']
[u'jazzi', u'open', u'mackay', u'art', u'festiv']
[u'judg', u'deni', u'dismiss', u'napster', u'case']
[u'kalgoorli', u'school', u'benefit', u'clinic', u'fund']
[u'kemp', u'cancel', u'north', u'coast', u'meet']
[u'kenya', u'warn', u'impend', u'famin']
[u'labor', u'distanc', u'anti', u'govt', u'websit']
[u'labor', u'question', u'cabinet', u'reshuffl']
[u'labour', u'shortag', u'expect', u'mine', u'expand']
[u'landmark', u'childhood', u'health', u'studi', u'extend']
[u'latham', u'labor', u'leader', u'strike', u'polici', u'pact']
[u'local', u'govern', u'address', u'chang', u'role']
[u'mafia', u'join', u'zeta', u'jone', u'pitt']
[u'maleni', u'supermarket', u'ahead']
[u'arrest', u'angri', u'protest']
[u'charg', u'throw']
[u'mandela', u'urg', u'action']
[u'front', u'court', u'tavern', u'attack']
[u'face', u'court', u'mice', u'chew']
[u'mine', u'compani', u'boost']
[u'minist', u'blame', u'colleg', u'surgeon', u'shortag']
[u'minist', u'confid', u'fishermen', u'support']
[u'ministri', u'elev', u'wont', u'stop', u'represent']
[u'moor', u'incit', u'anger', u'canada', u'elect', u'comment']
[u'nurs', u'place', u'offer', u'student']
[u'motorbik', u'accid', u'claim', u'teen', u'life']
[u'mountain', u'bike', u'rider', u'win', u'appeal']
[u'claim', u'nuclear', u'wast', u'store', u'bushland']
[u'criticis', u'bonvill', u'deviat', u'websit', u'chang']
[u'oppos', u'western', u'wast', u'dump', u'suggest']
[u'trash', u'jervi', u'dump', u'option']
[u'murali', u'lanka']
[u'nasa', u'head', u'vow', u'examin', u'option', u'save']
[u'nasa', u'launch', u'aura', u'satellit']
[u'nation', u'determin', u'kennedi']
[u'nation', u'tribut', u'leader']
[u'navi', u'frigat', u'missil', u'upgrad']
[u'mayor', u'promis', u'solv', u'port', u'hedland', u'financ']
[u'minist', u'seek', u'recognit', u'canberra']
[u'plan', u'outsid', u'prison', u'cook', u'minist']
[u'sell', u'trangi', u'research', u'station', u'land']
[u'launch', u'region', u'health', u'plan', u'katherin']
[u'plan', u'minist', u'hand', u'design', u'award']
[u'wont', u'lead', u'internet', u'bet', u'exchang']
[u'jail', u'isra', u'spi']
[u'older', u'mum', u'face', u'lower', u'ovarian', u'cancer', u'risk']
[u'omalley', u'strike', u'blow', u'troon']
[u'paraguay', u'stun', u'brazil']
[u'phelp', u'olymp', u'gold']
[u'phelp', u'miss', u'athen', u'backstrok', u'report']
[u'philippin', u'hostag', u'aliv']
[u'philippin', u'troop', u'pullout']
[u'pileggi', u'flee', u'fiji', u'train', u'tribun', u'hear']
[u'maintain', u'iraq', u'justifi']
[u'warn', u'wall', u'wall', u'labor', u'govern']
[u'polic', u'investig', u'attempt', u'bomb']
[u'polic', u'investig', u'playground']
[u'polic', u'legitim', u'follow', u'hickey']
[u'polic', u'probe', u'jail', u'bash']
[u'polic', u'work', u'identifi', u'skelet', u'remain']
[u'politician', u'religi', u'powerhous']
[u'power', u'offer', u'museum', u'solid', u'return']
[u'port', u'author', u'welcom', u'secur', u'vessel']
[u'port', u'rule']
[u'pratt', u'bounc', u'shambl']
[u'priest', u'leav', u'school', u'abus', u'alleg']
[u'promis', u'rain', u'fail', u'eventu', u'western']
[u'protest', u'vent', u'anger', u'minist', u'coastal', u'plan']
[u'agent', u'contest', u'world', u'livestock', u'sell', u'titl']
[u'citrus', u'export', u'soon', u'resum']
[u'rare', u'ulcer', u'outbreak', u'concern', u'health', u'offici']
[u'rate', u'hike', u'push', u'hous', u'price']
[u'reiq', u'expect', u'rate', u'rise']
[u'reptil', u'fossil', u'go', u'display']
[u'resid', u'tell', u'check', u'backyard', u'tree', u'diseas']
[u'resili', u'mcewen', u'battl']
[u'tinto', u'order', u'reinstat', u'sack', u'worker']
[u'riverland', u'welcom', u'station', u'heritag', u'list']
[u'road', u'close', u'sydney']
[u'robe', u'plan', u'plastic', u'free', u'futur']
[u'robinson', u'doubt', u'nation', u'clash']
[u'rofe', u'join', u'northant']
[u'grape', u'grower', u'welcom', u'legisl']
[u'saint', u'tiger', u'honour', u'tasmanian']
[u'move', u'protect', u'coastlin']
[u'savag', u'accept', u'birmingham', u'deal']
[u'seiz', u'crimin', u'asset', u'fund', u'polic', u'oper']
[u'shearer', u'threaten', u'leav', u'newcastl']
[u'shooter', u'group', u'call', u'mental', u'health', u'review']
[u'sixth', u'restaur', u'fin', u'weight', u'seafood']
[u'social', u'impair', u'rapist', u'avoid', u'prison']
[u'stanhop', u'criticis', u'premier', u'nuclear', u'dump']
[u'studi', u'aim', u'improv', u'aborigin', u'servic', u'alic']
[u'surg', u'floodwat', u'strand', u'million', u'south', u'asia']
[u'taiwan', u'businessman', u'jail', u'espionag']
[u'talk', u'address', u'hard', u'time', u'harden']
[u'tawana', u'sharehold', u'hope', u'diamond']
[u'technolog', u'provid', u'relief', u'maryval']
[u'teen', u'drag', u'race', u'crash']
[u'iraqi', u'kill', u'citi']
[u'terror', u'white', u'paper', u'releas']
[u'tidi', u'tambo', u'receiv', u'award']
[u'seed', u'schuettler', u'stuttgart']
[u'torr', u'strait', u'leader', u'govt', u'financi']
[u'torr', u'strait', u'local', u'cling', u'hope', u'miss', u'trio']
[u'holder', u'wont', u'automat', u'resid', u'latham']
[u'union', u'warn', u'alter', u'economi']
[u'marriag', u'law', u'stand']
[u'hous', u'back', u'aust', u'free', u'trade', u'deal']
[u'militari', u'offici', u'deni', u'hick', u'habib', u'abus']
[u'pass', u'bioterror', u'antidot', u'fund']
[u'save', u'best', u'athen', u'say', u'nugent']
[u'venus', u'cruis', u'second', u'round', u'stanford']
[u'group', u'fight', u'indigen', u'artefact']
[u'face', u'spencer', u'lawsuit']
[u'victim', u'push', u'jam', u'hardi', u'asbesto', u'charg']
[u'virenqu', u'light', u'bastill']
[u'govt', u'question', u'campbel', u'cabinet']
[u'wait', u'continu', u'fluorid', u'water', u'decis']
[u'wallabi', u'prepar', u'ideal', u'say', u'jone']
[u'terror', u'cost', u'billion', u'downer']
[u'water', u'alloc', u'review', u'call', u'public', u'help']
[u'urg', u'reconsid', u'constitut', u'amend']
[u'weightlift', u'hide', u'drug', u'tester']
[u'west', u'snag', u'teddi']
[u'widow', u'slay', u'aust', u'missionari', u'leav', u'india']
[u'wilcannia', u'choir', u'propos', u'hop', u'cheer', u'resid']
[u'woman', u'assault', u'park']
[u'wood', u'face', u'open', u'battl']
[u'zimbabw', u'rebel', u'champion', u'trophi']
[u'fear', u'dead', u'indian', u'school']
[u'abetz', u'say', u'websit', u'smear', u'proxi']
[u'aborigin', u'landscap', u'name', u'heritag', u'list']
[u'accus', u'rapist', u'enter', u'plea']
[u'govt', u'push', u'ahead', u'milu', u'plan']
[u'agassi', u'quarter', u'final']
[u'agricultur', u'colleg', u'welcom', u'healthi', u'review']
[u'hit', u'biosecur', u'restructur']
[u'alzheim', u'assoc', u'urg', u'better', u'staff']
[u'andr', u'alicia', u'silverston', u'vote', u'sexiest']
[u'anti', u'howard', u'websit', u'face', u'legal', u'action']
[u'attempt', u'trial', u'poison', u'collar', u'wild', u'control']
[u'aust', u'indonesia', u'probe', u'perth', u'man', u'link']
[u'australian', u'dairi', u'cattl', u'lure', u'chines']
[u'australian', u'economi', u'world', u'freest', u'think', u'tank']
[u'away', u'win', u'fremantl', u'success', u'connolli']
[u'battl', u'trainer', u'punt', u'bring', u'payday']
[u'battl', u'trainer', u'punt', u'bring', u'payday']
[u'beatti', u'hail', u'china', u'visit', u'success']
[u'beckham', u'ball', u'reveal', u'fake']
[u'beckham', u'right', u'blame', u'pitch', u'miss', u'ricardo']
[u'shortag', u'predict', u'adelaid', u'medic', u'centr']
[u'betfair', u'push', u'gambl', u'licenc']
[u'bird', u'spread', u'thailand']
[u'blignaut', u'sign', u'durham']
[u'boot', u'factori', u'expand', u'oper']
[u'bronz', u'javelin', u'junior', u'itali']
[u'bryant', u'stay', u'laker']
[u'buderim', u'battl', u'hole', u'road']
[u'bulgaria', u'scrambl', u'news', u'hostag', u'iraq']
[u'bunburi', u'council', u'defend', u'cemeteri', u'claim']
[u'bush', u'approv', u'free', u'trade', u'pact']
[u'busi', u'assess', u'feder', u'award', u'chang', u'impact']
[u'call', u'spray', u'halt', u'water', u'catchment']
[u'carey', u'help', u'coach', u'crow']
[u'carr', u'wont', u'save', u'job']
[u'casey', u'levet', u'tie', u'british', u'open', u'lead']
[u'cessnock', u'hunt']
[u'chamber', u'research', u'ground', u'north']
[u'charlton', u'report', u'chelsea', u'cole', u'loan']
[u'child', u'burn', u'accident', u'polic']
[u'china', u'ban', u'abort', u'base', u'babi', u'gender']
[u'citrus', u'inspector', u'urgent', u'need']
[u'citrus', u'tree', u'destroy']
[u'contend', u'reveal', u'mountain']
[u'crespo', u'join', u'milan', u'loan', u'chelsea']
[u'crown', u'prosecutor', u'visit', u'court']
[u'democrat', u'like', u'nuclear', u'dump']
[u'digit', u'power', u'meter', u'allow', u'cheaper', u'bill']
[u'doco', u'expos', u'racial', u'hatr', u'british', u'right']
[u'doctor', u'region', u'women']
[u'dont', u'panic', u'price', u'home', u'owner', u'tell']
[u'doubt', u'futur']
[u'dozen', u'indian', u'school', u'inferno']
[u'drink', u'drive', u'skate', u'doyl']
[u'driver', u'caution', u'urg', u'crash']
[u'eagl', u'defus', u'bomber']
[u'earli', u'start', u'bushfir', u'season']
[u'emir', u'price', u'tendulkar', u'head']
[u'famili', u'celebr', u'lynch', u'mileston']
[u'famili', u'celebr', u'lynch', u'sport', u'achiev']
[u'feder', u'lead', u'liverpool', u'shop', u'protest']
[u'filipino', u'hostag', u'return', u'home', u'tap', u'messag']
[u'filipino', u'troop', u'begin', u'iraq', u'pullout']
[u'fire', u'feral', u'blame', u'speci', u'declin']
[u'fish', u'strategi', u'target', u'recreat', u'angler']
[u'fletcher', u'lose', u'teeth', u'bomber', u'slump']
[u'tablet', u'purchas', u'lead', u'tare', u'arrest']
[u'chess', u'champion', u'detain', u'japan']
[u'east', u'timor', u'governor', u'refus', u'jail']
[u'polic', u'offic', u'court', u'databas', u'misus']
[u'priest', u'face', u'child', u'charg']
[u'worker', u'charg', u'steal', u'waca']
[u'young', u'nation', u'presid', u'die', u'crash']
[u'forum', u'hear', u'need', u'mental', u'health', u'reform']
[u'french', u'continu', u'tour', u'celebr']
[u'fruit', u'grower', u'want', u'clarif', u'quarantin']
[u'fund', u'cut', u'council', u'water', u'system']
[u'gaudio', u'book', u'place', u'stuttgart', u'quarter']
[u'geraldton', u'port', u'improv', u'mix', u'reaction']
[u'gibson', u'seiz', u'lead', u'open', u'round', u'york']
[u'girl', u'alight', u'polic']
[u'grampian', u'promot', u'criticis', u'cultur']
[u'grower', u'start']
[u'hama', u'milit', u'kill', u'shoot']
[u'hawk', u'black', u'hole', u'backflip']
[u'health', u'catastroph', u'loom', u'sudan']
[u'hickey', u'inquest', u'adjourn']
[u'hous', u'crisi', u'put', u'homeless', u'canva']
[u'howard', u'lie', u'websit', u'deni', u'labor', u'tie']
[u'illawarra', u'call', u'unfair', u'dismiss', u'chang']
[u'indigen', u'council', u'count', u'popul']
[u'indonesia', u'allow', u'newcrest', u'protect', u'forest']
[u'inquiri', u'examin', u'travel', u'claim']
[u'intellig', u'inquiri', u'hamstr', u'rudd', u'say']
[u'ipod', u'sale', u'sweeten', u'appl', u'profit']
[u'iraqi', u'foreign', u'ministri', u'secur', u'chief', u'kill']
[u'israel', u'hop', u'resum', u'tie']
[u'jaguar', u'rule', u'earli', u'releas', u'webber']
[u'jewish', u'headston', u'smash']
[u'jone', u'blast', u'black', u'tactic']
[u'jone', u'leap', u'athen', u'olymp']
[u'kookaburra', u'thrash', u'kiwi', u'cairn']
[u'labor', u'promis', u'extra', u'mris', u'hospit']
[u'labor', u'seek', u'isra', u'brief']
[u'lake', u'creek', u'money', u'hand']
[u'larg', u'turnov', u'vanuatu', u'elect']
[u'legal', u'action', u'threaten', u'cull']
[u'legal', u'action', u'leav', u'last', u'council', u'cost']
[u'lib', u'concern', u'labor', u'public', u'servic', u'plan']
[u'licens', u'problem', u'delay', u'grafton', u'tare', u'flight']
[u'life', u'skill', u'program', u'benefit', u'gambier', u'youth']
[u'lock', u'robinson', u'doubt', u'black']
[u'loan', u'consid', u'rural', u'age', u'care']
[u'luczak', u'pratt', u'crash']
[u'mandela', u'call', u'aid', u'fund']
[u'mandela', u'play', u'editor', u'african', u'newspap']
[u'court', u'collect']
[u'custodi', u'stab', u'incid']
[u'interview', u'extens', u'search']
[u'manou', u'appoint', u'vice', u'captainci']
[u'mat', u'season', u'spark', u'whyalla', u'bait']
[u'media', u'resourc', u'stock', u'lead', u'higher']
[u'murray', u'council', u'sted', u'protest']
[u'minist', u'call', u'rural', u'health', u'studi', u'incent']
[u'minist', u'defend', u'research', u'station', u'closur']
[u'miss', u'document', u'halt', u'nuclear', u'arm', u'research']
[u'monsoon', u'rain', u'wreak', u'havoc', u'south', u'asia']
[u'moratorium', u'need', u'fund', u'cut']
[u'abus', u'case', u'uncov', u'iraq']
[u'bird', u'outbreak', u'vietnam']
[u'morley', u'like', u'australia']
[u'mountain', u'biker', u'ponder', u'olymp', u'appeal']
[u'criticis', u'maritim', u'safeti', u'brief']
[u'dismiss', u'port', u'hedland', u'plant', u'rumour']
[u'gambier', u'welcom', u'newest', u'councillor']
[u'minist', u'reaffirm', u'calder', u'fund']
[u'shepparton', u'track', u'har', u'local', u'race']
[u'alloc', u'murray', u'irrig']
[u'american', u'troop', u'olymp', u'secur']
[u'proof', u'school', u'teacher', u'terror', u'leader']
[u'govt', u'blame', u'sydney', u'rail', u'run', u'time']
[u'health', u'defend', u'girl', u'surgeri', u'cancel']
[u'move', u'coastal', u'clear', u'confus']
[u'redfern', u'polic', u'resourc']
[u'home', u'raid', u'drug', u'oper']
[u'unsatisfi', u'israel', u'respons']
[u'outdat', u'cultur', u'blame', u'male', u'nurs', u'shortag']
[u'palestinian', u'play', u'envoy', u'decis']
[u'palm', u'theft', u'prompt', u'polic', u'call']
[u'paranoid', u'posti', u'fear', u'drug', u'plant', u'team', u'sourc']
[u'extend', u'burswood', u'offer']
[u'secur', u'despit', u'trade', u'deal', u'vail']
[u'perth', u'man', u'conspiraci', u'case', u'flimsi']
[u'philippin', u'begin', u'withdraw', u'iraq', u'forc']
[u'pie', u'rock', u'tarrant', u'injuri']
[u'bait', u'woman', u'cite', u'anim', u'cruelti']
[u'pileggi', u'lose', u'olymp', u'appeal']
[u'pileggi', u'wait', u'olymp', u'verdict']
[u'say', u'philippin', u'give', u'terror']
[u'polic', u'charg', u'escap', u'relat']
[u'polic', u'unsur', u'girl']
[u'polic', u'welcom', u'power']
[u'port', u'secur', u'head', u'ruddock', u'visit']
[u'prison', u'train', u'centr', u'address', u'staff', u'woe']
[u'qraa', u'hold', u'reef', u'zone', u'brief']
[u'rooster', u'dragon']
[u'rural', u'consid', u'specialist', u'upgrad']
[u'russia', u'richest', u'plead', u'innoc', u'fraud']
[u'counter', u'port', u'lincoln', u'school', u'concern']
[u'firm', u'develop', u'shark', u'shield', u'board']
[u'tree', u'farm', u'celebr', u'wood', u'chip', u'export']
[u'second', u'bodi', u'retriev', u'river', u'iraq']
[u'share', u'fall', u'despit', u'optimist', u'data']
[u'shearer', u'deni', u'newcastl', u'ultimatum']
[u'shire', u'confid', u'mincor', u'appeal', u'decis']
[u'slim', u'fast', u'shed', u'whoopi', u'goldberg']
[u'soprano', u'lead', u'emmi', u'nomin']
[u'staff', u'disput', u'aapt', u'centr', u'condit']
[u'surgeon', u'amput', u'patient', u'peni']
[u'suspend', u'fine', u'thoma']
[u'swift', u'sink', u'novocastrian']
[u'taint', u'supplement', u'blame', u'dope', u'test', u'say']
[u'talk', u'resolv', u'cull', u'stand']
[u'taskforc', u'welcom', u'biosecur', u'chang']
[u'teacher', u'concern', u'prep', u'year', u'trial']
[u'tennant', u'creek', u'festiv', u'go', u'alcohol', u'free']
[u'tesk', u'defend', u'classic', u'titl']
[u'tobacco', u'sale', u'research', u'disturb', u'cancer', u'fund']
[u'toddler', u'resuscit', u'hour']
[u'tomato', u'glut', u'prompt', u'grower', u'diversif', u'call']
[u'townsvill', u'worst', u'tobacco', u'sale', u'offend']
[u'trap', u'shortag', u'highlight', u'wild', u'problem']
[u'line', u'defend', u'ticket', u'price', u'jump']
[u'tyson', u'tire', u'train', u'readi', u'fight', u'say', u'trainer']
[u'union', u'call', u'prison', u'guard']
[u'union', u'move', u'kangara', u'sack']
[u'warn', u'impend', u'aid', u'crisi', u'burma']
[u'hurdler', u'fail', u'drug', u'test', u'report']
[u'name', u'armstrong', u'replac', u'athen']
[u'say', u'coalit', u'strong', u'despit', u'philippin']
[u'sprinter', u'admit', u'posit', u'dope', u'test']
[u'dairi', u'worker', u'start', u'indefinit', u'strike']
[u'govt', u'defend', u'rail', u'inquiri']
[u'rail', u'network', u'face', u'independ', u'safeti', u'probe']
[u'virgin', u'gold', u'coast', u'busi', u'forum']
[u'volunt', u'shortag', u'hit', u'landcar']
[u'appoint', u'counter', u'terror', u'polic', u'command']
[u'wallabi', u'readi', u'condit']
[u'western', u'benefit', u'china', u'agreement']
[u'west', u'indi', u'scrape', u'past']
[u'wheat', u'group', u'threaten', u'withdraw', u'iraq', u'debt']
[u'wild', u'deleg', u'pursu', u'minist']
[u'wodonga', u'await', u'rail', u'line', u'decis']
[u'wodonga', u'woman', u'charg', u'son', u'murder']
[u'woman', u'stand', u'trial', u'invent', u'anti', u'semit']
[u'work', u'begin', u'erad', u'yellow', u'crazi', u'ant']
[u'examin', u'drug', u'alcohol', u'claim']
[u'black', u'hold', u'narrow', u'lead', u'wallabi']
[u'black', u'retain', u'bledislo']
[u'armstrong', u'dismay', u'lemond', u'accus']
[u'armstrong', u'strength', u'ogradi', u'plung']
[u'armstrong', u'strength', u'ogradi', u'plung']
[u'aust', u'creat', u'drug', u'label', u'standard']
[u'author', u'ensur', u'write', u'wall']
[u'barclay', u'freez', u'right', u'parti', u'account']
[u'blue', u'hold', u'bounc', u'roo']
[u'blue', u'half', u'time']
[u'boe', u'post', u'recruit', u'drive']
[u'brisban', u'lay', u'welcom', u'timor', u'troop']
[u'byrd', u'shoot', u'vault', u'open', u'lead']
[u'cameroon', u'armi', u'releas', u'journalist']
[u'canberra', u'properti', u'valu', u'climb']
[u'bomb', u'target', u'iraqi', u'minist']
[u'bomb', u'target', u'convoy', u'iraq']
[u'chines', u'prospector', u'stori', u'tell', u'tour', u'rout']
[u'commerci', u'help', u'high']
[u'connolli', u'prais', u'gutsi', u'docker']
[u'costello', u'push', u'labor']
[u'council', u'chang', u'overwhelm']
[u'cowboy', u'round', u'eel']
[u'csiro', u'say', u'kangaroo', u'cull', u'long', u'term', u'focus']
[u'cult', u'leader', u'accus', u'abus']
[u'democrat', u'seek', u'youth', u'viewpoint']
[u'docker', u'edg', u'crow', u'thriller']
[u'docker', u'readi', u'adelaid', u'litmus', u'test']
[u'domin', u'gaudio', u'stuttgart', u'semi']
[u'month', u'jail', u'escape']
[u'atsic', u'deni', u'splurg']
[u'eye', u'labor', u'back', u'trade', u'agreement']
[u'worker', u'higher', u'cancer', u'risk']
[u'fishermen', u'challeng', u'kelp', u'studi']
[u'arrest', u'indian', u'school']
[u'flood', u'affect', u'million', u'asia']
[u'east', u'timor', u'governor', u'begin', u'jail', u'term']
[u'world', u'number', u'rio', u'retir']
[u'kill', u'victorian', u'road']
[u'french', u'worker', u'free', u'gaza', u'abduct']
[u'gaddafi', u'set', u'sight', u'crystal', u'palac', u'report']
[u'ghan', u'help', u'boost', u'tourism', u'manag', u'say']
[u'gibernau', u'take', u'provision', u'pole', u'sachsenr']
[u'govt', u'explain', u'allawi', u'claim', u'brown']
[u'guantanamo', u'tribun', u'start', u'week']
[u'haa', u'stun', u'agassi']
[u'hamilton', u'tour']
[u'happi', u'lion', u'lynch']
[u'heavi', u'dump', u'draw', u'crowd', u'snowi', u'mountain']
[u'heavi', u'snow', u'caus', u'chao', u'road']
[u'heavi', u'snow', u'caus', u'havoc', u'road']
[u'heavi', u'snow', u'cut', u'resort']
[u'india', u'bangladesh', u'cruis', u'easi', u'win']
[u'indigen', u'tasmanian', u'protest', u'legal', u'chang']
[u'iraqi', u'shoot', u'inmat', u'report']
[u'joint', u'union', u'worker']
[u'kendal', u'lead', u'cull', u'cut', u'aussi']
[u'kendal', u'lead', u'cull', u'aussi']
[u'kidnapp', u'releas', u'gaza', u'polic', u'chief', u'offici', u'say']
[u'kidnap', u'spark', u'gaza', u'chao']
[u'kookaburra', u'clinch', u'seri', u'kiwi']
[u'kookaburra', u'complet', u'seri', u'kiwi']
[u'land', u'handov', u'recognis', u'tradit', u'owner']
[u'dope', u'charg', u'athlet', u'end', u'athen']
[u'tape', u'futur', u'civic', u'develop']
[u'live', u'grenad', u'polic', u'station']
[u'love', u'fear', u'olymp', u'drug', u'cheat']
[u'mainten', u'avoid', u'school', u'blast']
[u'charg', u'inter', u'school', u'thredbo', u'fight']
[u'get', u'retrial', u'foster', u'daughter', u'death']
[u'guilti', u'import', u'human', u'growth', u'hormon']
[u'order', u'restor', u'tree', u'clear', u'land']
[u'martha', u'stewart', u'jail', u'month']
[u'mental', u'health', u'need', u'decad', u'work']
[u'milosev', u'health', u'delay', u'trial']
[u'missionari', u'widow', u'arriv', u'aust']
[u'mosley', u'stay', u'presid']
[u'mourinho', u'set', u'deadlin', u'drogba', u'tiago']
[u'murder', u'investig', u'launch', u'woman', u'throw']
[u'nasa', u'shoot', u'mercuri', u'year', u'break']
[u'music', u'lose', u'franc']
[u'minist', u'head', u'asian', u'tour']
[u'opposit', u'say', u'nation', u'wast', u'dump']
[u'aussi', u'troop', u'train']
[u'panther', u'pummel', u'raider']
[u'parent', u'mourn', u'indian', u'school']
[u'park', u'ralli', u'lpga', u'lead', u'tesk', u'troubl']
[u'pie', u'lead', u'lion']
[u'polic', u'investig', u'attempt', u'abduct']
[u'polic', u'investig', u'synagogu', u'attack']
[u'polic', u'seek', u'wit', u'ballarat', u'assault']
[u'polic', u'solv', u'playground', u'mysteri']
[u'prepar', u'destroy', u'citrus', u'tree']
[u'racq', u'want', u'freedom', u'choic', u'motorist']
[u'refuge', u'need', u'help', u'adjust', u'region']
[u'russian', u'magnat', u'slam', u'shame', u'charg']
[u'saint', u'dockland']
[u'saint', u'tame', u'tiger']
[u'scan', u'expos', u'check', u'worker', u'fake', u'robberi']
[u'scientist', u'discov', u'biggest', u'raindrop']
[u'search', u'continu', u'miss', u'yachtsman']
[u'secur', u'gaza', u'review']
[u'serena', u'vow', u'revers', u'form', u'slump']
[u'citi', u'censor', u'singapor']
[u'share', u'goal', u'need', u'buffalo', u'disput']
[u'sharp', u'pois', u'bledislo', u'battl']
[u'sharp', u'readi', u'black']
[u'specialist', u'shortag', u'caus', u'problem']
[u'springbok', u'hold', u'island']
[u'springborg', u'attack', u'beatti', u'grant']
[u'studi', u'find', u'link', u'kid', u'obes']
[u'sweetenham', u'play', u'british', u'pool', u'hop']
[u'synagogu', u'attack', u'unaccept']
[u'hold', u'hostag', u'khan', u'youni']
[u'tour', u'organis', u'lose', u'appeal', u'rider']
[u'traffic', u'offend', u'hop', u'board']
[u'truck', u'driver', u'kill', u'iraq']
[u'sydney', u'women', u'kill']
[u'debat', u'design', u'babi', u'rule']
[u'rethink', u'design', u'babi', u'rule']
[u'say', u'guantanamo', u'prison', u'inform', u'right']
[u'sprinter', u'grime', u'test', u'posit', u'report']
[u'stock', u'fall', u'economi', u'profit', u'worri']
[u'violent', u'incid', u'overlook']
[u'polic', u'captur', u'escape']
[u'weather', u'warn', u'issu']
[u'william', u'davenport', u'reach', u'stanford', u'semi', u'final']
[u'william', u'send', u'tiger', u'stun', u'storm']
[u'william', u'turn', u'pizzonia']
[u'woman', u'die', u'throw']
[u'zarqawi', u'claim', u'attack', u'iraqi', u'minist']
[u'kill', u'fallujah', u'strike', u'report']
[u'accus', u'desert', u'famili', u'head', u'japan']
[u'expand', u'water', u'tank', u'rebat']
[u'agassi', u'scale', u'schedul']
[u'aguilar', u'strike', u'colombia', u'reach']
[u'allawi', u'claim', u'polic', u'matter', u'hill', u'say']
[u'alley', u'victim', u'identifi', u'polic']
[u'teacher', u'undergo', u'crimin', u'check']
[u'ancient', u'tomb', u'uncov', u'crete']
[u'armstrong', u'win', u'stage', u'rival', u'crack']
[u'aussi', u'chase', u'byrd']
[u'australian', u'wife', u'albanian', u'throne', u'pretend', u'die']
[u'intensifi', u'peac', u'talk', u'sudan']
[u'ayala', u'argentina', u'knock', u'host', u'peru']
[u'basso', u'confirm', u'overal', u'credenti', u'second']
[u'beer', u'regatta', u'draw', u'record', u'field']
[u'beij', u'olymp', u'question', u'asian', u'open']
[u'biaggi', u'pole', u'german', u'grand', u'prix']
[u'britain', u'stag', u'terror', u'attack', u'drill']
[u'bronco', u'break', u'newcastl', u'hoodoo']
[u'bulldog', u'sink', u'shark']
[u'butcher', u'return', u'windi', u'seri']
[u'cannon', u'suspend', u'bledislo', u'punch']
[u'cat', u'claw', u'past', u'swan', u'classic']
[u'cat', u'swan', u'lock', u'tight', u'battl']
[u'chelsea', u'draw', u'mourinho', u'friend']
[u'china', u'learn', u'qlds', u'ambul', u'expert']
[u'coal', u'boom', u'provid', u'secur']
[u'communiti', u'fight', u'charm', u'dirt', u'road']
[u'consum', u'dont', u'want', u'telstra', u'privatis', u'democrat']
[u'copi', u'warrior', u'defeat', u'spirit', u'rabbitoh']
[u'csiro', u'say', u'nuclear', u'wast', u'pose', u'threat']
[u'davey', u'injuri', u'mar', u'melbourn']
[u'deleg', u'fear', u'lumber', u'aid', u'road', u'fail']
[u'demon', u'lead', u'dog', u'half', u'time']
[u'director', u'heer', u'get', u'fist', u'film']
[u'diseas', u'expect', u'flood', u'wake']
[u'earthquak', u'hit', u'indonesian', u'island']
[u'exercis', u'pitch', u'black', u'launch', u'darwin']
[u'fender', u'icon', u'strat', u'guitar', u'turn']
[u'gaudio', u'set', u'argentin', u'final', u'stuttgart']
[u'swear', u'govt', u'minist']
[u'govt', u'extend', u'plastic', u'offer']
[u'govt', u'refin', u'telstra', u'legisl']
[u'govt', u'muddl', u'risk', u'job']
[u'greek', u'dancer', u'break', u'world', u'record']
[u'green', u'demand', u'aerial', u'spray', u'catchment']
[u'haa', u'kiefer', u'german', u'final']
[u'hamilton', u'head', u'gun', u'troon', u'climax']
[u'high', u'countri', u'blast', u'heavi', u'snow']
[u'hill', u'defend', u'intellig']
[u'home', u'hope', u'verkerk', u'meet', u'gonzalez', u'amersfoort']
[u'iaaf', u'recommend', u'strip', u'relay', u'gold', u'medal']
[u'iran', u'arrest', u'qaeda', u'backer']
[u'iran', u'court', u'tell', u'canadian', u'tortur', u'death']
[u'iran', u'halt', u'controversi', u'kazemi', u'trial']
[u'iran', u'judiciari', u'ban', u'reform', u'newspap']
[u'iraqi', u'okay', u'strike']
[u'itali', u'deni', u'asylum', u'ship', u'migrant', u'report']
[u'japan', u'make', u'world', u'smallest', u'diamond', u'ring']
[u'japan', u'pledg', u'burma', u'despit', u'detent']
[u'jetstar', u'defend', u'pilot', u'near', u'miss']
[u'klos', u'replac', u'moor', u'ranger', u'captain']
[u'laptop', u'rollout', u'teacher', u'loom']
[u'latham', u'babi', u'rumour']
[u'chang', u'urg', u'race', u'base', u'attack']
[u'lend', u'leas', u'chief', u'play', u'properti']
[u'lister', u'leap', u'olymp', u'team']
[u'local', u'warn', u'rise', u'shark', u'sight']
[u'locatelli', u'win', u'sachsenr']
[u'lovett', u'iron', u'face', u'african', u'surf']
[u'magic', u'mountain', u'close', u'final', u'time']
[u'malaysia', u'releas', u'muslim', u'milit', u'newspap']
[u'mandela', u'mark', u'birthday']
[u'die', u'hit', u'tree']
[u'question']
[u'market', u'organis', u'work', u'park', u'problem']
[u'marvel', u'challeng', u'disney', u'superhero', u'duel']
[u'mayo', u'close', u'call', u'quit']
[u'melbourn', u'artist', u'defend', u'thorp', u'piec']
[u'melbourn', u'eye', u'zorba', u'greek', u'record']
[u'missionari', u'consid', u'return', u'india']
[u'singapor', u'rein', u'month']
[u'major', u'chang', u'expect', u'report']
[u'help', u'bushfir', u'safe', u'home', u'design']
[u'motorist', u'warn', u'hazard', u'condit']
[u'overdos', u'victim', u'mother', u'want', u'methadon', u'figur']
[u'pakistan', u'lanka', u'cruis', u'easi', u'win']
[u'pedestrian', u'injur', u'crash']
[u'philippin', u'complet', u'pullout', u'monday']
[u'polic', u'investig', u'alic', u'assault']
[u'polic', u'investig']
[u'polic', u'probe', u'racist', u'graffiti', u'attack']
[u'power', u'hammer', u'hawk']
[u'prize', u'chicken', u'peck', u'order']
[u'psychologist', u'urg', u'closer', u'scrutini', u'anim', u'abus']
[u'queen', u'knight', u'web', u'inventor']
[u'rebel', u'walk', u'sudan', u'peac', u'talk']
[u'rspca', u'flag', u'kid', u'buy', u'pet']
[u'second', u'russian', u'journalist', u'dead', u'moscow']
[u'sharp', u'leav', u'hollow', u'bledislo', u'defeat']
[u'nanci', u'punk', u'rock', u'histori', u'display']
[u'small', u'busi', u'warn', u'credit', u'card', u'fraud']
[u'snowstorm', u'worst', u'year']
[u'sophist', u'method', u'forg', u'copi', u'proof', u'euro']
[u'south', u'korean', u'polic', u'arrest', u'suspect', u'serial', u'killer']
[u'australian', u'die', u'smash']
[u'thompson', u'land', u'spanish', u'victori']
[u'thousand', u'march', u'gaza', u'secur', u'chief']
[u'tire', u'jone', u'pull', u'trial']
[u'launch', u'fallujah', u'strike']
[u'vail', u'maintain', u'local', u'industri']
[u'venus', u'face', u'davenport', u'stanford', u'final']
[u'govt', u'launch', u'smear', u'campaign']
[u'boati', u'join', u'search', u'miss', u'yacht']
[u'warrior', u'defeat', u'spirit', u'rabbitoh']
[u'warrior', u'lead', u'rabbitoh', u'auckland']
[u'wild', u'weather', u'caus', u'chao']
[u'wmds', u'bush', u'main', u'focus', u'clinton']
[u'world', u'largest', u'commerci', u'satellit', u'provid']
[u'yang', u'estil', u'tie', u'lpga', u'lead']
[u'kill', u'baghdad', u'bomb', u'attack']
[u'wound', u'palestinian', u'clash']
[u'kill', u'indian', u'crash']
[u'accc', u'commit', u'competit', u'fuel', u'market', u'samuel']
[u'advocaci', u'servic', u'threat']
[u'albani', u'council', u'discuss', u'marina', u'recommend']
[u'alburi', u'council', u'reconsid', u'bridg', u'demolit']
[u'concern', u'hour', u'blueprint']
[u'arafat', u'name', u'secur', u'chief', u'demot', u'cousin']
[u'begin', u'week', u'posit']
[u'athlet', u'australia', u'investig', u'alleg', u'drug']
[u'miss', u'boat', u'sink', u'indonesia']
[u'australian', u'hold', u'olymp', u'plan']
[u'author', u'ignor', u'nimbin', u'crime', u'homeless']
[u'award', u'recognis', u'canberra', u'artist']
[u'bait', u'drum', u'line', u'better', u'shark', u'net', u'academ']
[u'bakhtiyari', u'launch', u'legal', u'action']
[u'bangladesh', u'spinner', u'razzaq', u'report', u'suspect']
[u'beer', u'regatta', u'pull', u'spectat']
[u'benalla', u'ratepay', u'spend', u'spree', u'halt']
[u'biaggi', u'close', u'rossi', u'german']
[u'bid', u'close', u'revamp', u'soccer', u'competit']
[u'bolivian', u'presid', u'tip', u'referendum']
[u'bomb', u'attack', u'hit', u'western', u'russia']
[u'bomb', u'kill', u'senior', u'hezbollah', u'figur']
[u'boulia', u'mayor', u'hail', u'camel', u'race', u'success']
[u'brack', u'tour', u'encompass', u'visit']
[u'breez', u'freez', u'break', u'hill']
[u'bronco', u'want', u'protect', u'special']
[u'bunburi', u'hope']
[u'burni', u'mayor', u'ask', u'explain', u'health', u'servic']
[u'bush', u'latham', u'critic', u'unhelp', u'clinton', u'say']
[u'byrd', u'win', u'open']
[u'whale', u'moratorium', u'domin']
[u'canada', u'recal', u'ambassador', u'iran']
[u'canberra', u'supplier', u'push', u'higher', u'price', u'rise']
[u'capit', u'gain', u'cut', u'hurt', u'incom', u'earner']
[u'chef', u'seek', u'cook', u'tasmania']
[u'china', u'economi', u'outstrip', u'energi', u'suppli']
[u'china', u'flood', u'season', u'leav', u'dead']
[u'cold', u'snap', u'push', u'power', u'usag', u'high']
[u'cold', u'weather', u'bring', u'mix', u'bless', u'farmer']
[u'cole', u'shunt', u'fulham', u'free', u'transfer']
[u'coliban', u'defend', u'price', u'restructur']
[u'concern', u'grow', u'miss', u'yachtsman']
[u'concern', u'rise', u'grafton', u'research', u'station', u'futur']
[u'controversi', u'penalti', u'set', u'brazil']
[u'costello', u'hird', u'launch', u'life', u'skill', u'initi']
[u'council', u'approv', u'bridg', u'brisban']
[u'council', u'move', u'increas', u'casual', u'secur']
[u'council', u'warn', u'duck', u'plant', u'closur']
[u'court', u'hear', u'agent', u'pose', u'journalist', u'expos']
[u'dale', u'earnhardt', u'burn', u'crash']
[u'darwin', u'port', u'inadequ', u'olympia', u'resourc']
[u'davenport', u'beat', u'venus', u'time']
[u'detect', u'investig', u'riverina', u'blaze']
[u'dever', u'crawford', u'score', u'olymp', u'trial', u'win']
[u'dinosaur', u'stamped', u'add', u'heritag', u'list']
[u'doctor', u'confirm', u'health', u'servic', u'amalgam', u'plan']
[u'drought', u'end', u'tableland', u'shire']
[u'drug', u'delay', u'prevent', u'alzheim', u'studi']
[u'dunn', u'win', u'career', u'lpga', u'titl']
[u'eadi', u'clear', u'drug', u'traffic']
[u'emerg', u'servic', u'ask', u'explain', u'respons']
[u'energi', u'meter', u'allow', u'cost', u'power', u'access']
[u'specialist', u'recruit', u'hobart', u'say']
[u'environment', u'veranda', u'award', u'honour']
[u'estrogen', u'link', u'male', u'drive']
[u'timor', u'hold', u'better', u'boundari', u'deal']
[u'eucalyptus', u'lure', u'crow', u'australia']
[u'evid', u'mount', u'carr']
[u'father', u'cours', u'earn', u'high', u'prais']
[u'fear', u'racial', u'graffiti', u'attack', u'continu']
[u'feder', u'govt', u'control', u'murray', u'river', u'democrat']
[u'walk', u'mountain', u'pile']
[u'final', u'curtain', u'tosca']
[u'deputi', u'premier', u'lay', u'rest']
[u'foster', u'group', u'sell', u'properti', u'busi']
[u'kill', u'latest', u'aceh', u'violenc']
[u'franc', u'protest', u'sharon', u'emigr', u'jew']
[u'ghan', u'late', u'unusu', u'incid']
[u'gippsland', u'boati', u'welcom', u'safeti', u'fund']
[u'gold', u'coast', u'prepar', u'indi', u'construct']
[u'goldfield', u'tip', u'heritag', u'list', u'inclus']
[u'gonzalez', u'restor', u'spanish', u'tour', u'pride']
[u'govt', u'analys', u'iraq', u'intellig', u'report']
[u'govt', u'backflip', u'save', u'sydney', u'outlet', u'centr']
[u'govt', u'begin', u'negoti', u'indigen', u'fund']
[u'govt', u'formul', u'year', u'sydney', u'water', u'plan']
[u'grampian', u'council', u'lobbi', u'rail', u'chang']
[u'grant', u'council', u'expect', u'adopt', u'budget']
[u'haa', u'beat', u'kiefer', u'claim', u'titl']
[u'hamilton', u'beat', u'open', u'showdown']
[u'harden', u'consid', u'tourism', u'futur']
[u'heathrow', u'airport', u'anti', u'terror', u'plan', u'road']
[u'henin', u'hardenn', u'hope', u'olymp', u'return']
[u'hezbollah', u'vow', u'reveng', u'milit', u'kill']
[u'home', u'hope', u'verkerk', u'claim', u'amersfoort', u'titl']
[u'hous', u'boom', u'busi', u'chinchilla', u'builder']
[u'howard', u'tri', u'crime']
[u'hunter', u'offens', u'world', u'whale', u'talk']
[u'icac', u'wrap', u'parliamentari', u'entitl', u'inquiri']
[u'say', u'regim', u'count', u'india']
[u'illawarra', u'clean', u'wild', u'weather']
[u'indian', u'polic', u'question', u'teacher', u'school']
[u'indigen', u'group', u'celebr', u'wast', u'dump', u'decis']
[u'investig', u'begin', u'men', u'death']
[u'iraq', u'authoris', u'dead', u'strike']
[u'iraqi', u'minist', u'investig', u'allawi', u'execut']
[u'item', u'melbourn']
[u'jetstar', u'reject', u'sweatshop', u'claim']
[u'johnson', u'lose', u'appeal', u'sprint', u'doubl', u'athen']
[u'kabul', u'rocket', u'attack', u'kill']
[u'kakadu', u'scrap', u'cautious', u'welcom']
[u'kakadu', u'park', u'entri', u'fee', u'scrap']
[u'kangaroo', u'face', u'tribun']
[u'karratha', u'resid', u'feel', u'earthquak', u'shudder']
[u'karratha', u'water', u'treatment', u'turn']
[u'knight', u'like', u'lose', u'simpson', u'season']
[u'labor', u'vow', u'boost', u'women']
[u'lake', u'condah', u'push', u'heritag', u'status']
[u'larger', u'life']
[u'latest', u'citrus', u'hurt', u'nurseri']
[u'law', u'revamp', u'target', u'misbehaviour', u'bus']
[u'liber', u'allow', u'olexand', u'stay']
[u'lion', u'need', u'improv', u'fourth', u'quarter', u'focus', u'say']
[u'charg', u'latest', u'norfolk', u'murder']
[u'die', u'helicopt', u'crash']
[u'jail', u'kill', u'girlfriend', u'babi']
[u'man', u'bodi', u'sydney', u'park']
[u'marin', u'expert', u'dismiss', u'shark', u'threat']
[u'marseill', u'lose', u'santo', u'drogba', u'follow']
[u'mayor', u'hope', u'polic', u'staff', u'resolut']
[u'mcewen', u'say', u'green', u'jersey', u'rival', u'cover']
[u'medic', u'student', u'train', u'benefit', u'region', u'area']
[u'meet', u'explain', u'reef', u'rezon', u'program']
[u'trap', u'gold', u'coast', u'accid']
[u'milit', u'offer', u'bounti', u'iraqi', u'head']
[u'minor', u'injuri', u'northam', u'accid', u'spate']
[u'inspector', u'need', u'citrus', u'lift']
[u'call', u'better', u'breast', u'test', u'servic']
[u'museum', u'stoush', u'heat', u'artefact', u'return']
[u'appoint', u'auditor']
[u'england', u'snowfal', u'forc', u'weekend', u'road', u'closur']
[u'immigr', u'polici', u'address', u'labour', u'shortag']
[u'medal', u'recognis', u'emerg', u'servic', u'worker']
[u'mine', u'educ', u'centr', u'open']
[u'link', u'norfolk', u'murder']
[u'appeal', u'murder', u'jail', u'sentenc']
[u'polic', u'target', u'shooter']
[u'nurs', u'action', u'ward', u'overcrowd']
[u'offer', u'rooney', u'joke', u'insist', u'everton', u'boss']
[u'offic', u'investig', u'highway', u'accid']
[u'fear', u'dead', u'hundr', u'evacu', u'flood']
[u'oneil', u'escap', u'injuri', u'william', u'face']
[u'oyster', u'death', u'prompt', u'pesticid', u'spray']
[u'pakistan', u'thrash', u'hong', u'kong']
[u'palestinian', u'suicid', u'bomber', u'abort', u'attack', u'later']
[u'panel', u'confid', u'repay', u'trust', u'fund', u'money']
[u'peopl', u'dangl', u'meat', u'hook']
[u'philippin', u'command', u'iraq', u'arriv', u'home']
[u'pileggi', u'lodg', u'second', u'appeal']
[u'fail', u'rule', u'wast', u'dump']
[u'polic', u'elicit', u'inform', u'jail', u'biki']
[u'polic', u'help', u'babi', u'boy', u'speedi', u'entranc']
[u'polic', u'inspect', u'involv', u'field', u'crash']
[u'polic', u'investig', u'racist', u'graffiti', u'perth']
[u'polic', u'investig', u'warwick', u'death']
[u'polic', u'prais', u'mildura', u'supermarket', u'secur']
[u'polic', u'target', u'speed', u'driver', u'school', u'zone']
[u'port', u'arthur', u'boost', u'tourism', u'number']
[u'prescrib', u'burn', u'close', u'hinchinbrook', u'section']
[u'priest', u'kill', u'indonesia', u'church', u'attack']
[u'prison', u'staff', u'continu', u'industri', u'disput']
[u'public', u'deserv', u'explan', u'cull']
[u'grant', u'bail', u'tablet', u'charg']
[u'radic', u'chang', u'intellig', u'servic', u'unlik']
[u'radic', u'shiit', u'newspap', u'reopen']
[u'report', u'find', u'urgent', u'need', u'palliat', u'care', u'staff']
[u'report', u'prompt', u'need', u'water', u'contamin', u'test']
[u'rfds', u'target', u'rural', u'mental', u'health']
[u'riverland', u'council', u'welcom']
[u'road', u'open', u'weekend', u'snowfal']
[u'rural', u'colleg', u'review', u'spark', u'closur', u'concern']
[u'rustic', u'road', u'tourism', u'garner', u'nation', u'trust', u'support']
[u'safe', u'hous', u'plan', u'address', u'wander', u'kid']
[u'govt', u'accus', u'reneg', u'inquiri', u'head']
[u'govt', u'want', u'assassin', u'game', u'ban']
[u'salt', u'wise', u'garden', u'eas', u'salin', u'woe']
[u'scallop', u'breed', u'compani', u'hope', u'success']
[u'school', u'tackl', u'bulli']
[u'sept', u'hijack', u'pass', u'iran']
[u'sheedi', u'unconcern', u'dockland', u'surfac']
[u'shepparton', u'council', u'question', u'univers', u'futur']
[u'ship', u'compani', u'withdraw', u'anger', u'produc']
[u'showdown', u'loom', u'olymp', u'drug', u'controversi']
[u'silva', u'doubl', u'send', u'uruguay', u'copa', u'semi']
[u'snowi', u'hydro', u'pleas', u'cloud', u'seed', u'success']
[u'social', u'justic', u'group', u'deni', u'push', u'mine', u'fight']
[u'springborg', u'back', u'beatti', u'china', u'negoti']
[u'stanhop', u'call', u'nation', u'boer', u'memori']
[u'stott', u'despoja', u'merlin', u'tour', u'detent', u'centr']
[u'sudan', u'militia', u'rape', u'women', u'amnesti', u'say']
[u'suspect', u'bomb', u'kill', u'iraq']
[u'sweetheart', u'pull', u'year']
[u'taskforc', u'probe', u'perth', u'graffiti', u'attack']
[u'teacher', u'subject', u'check', u'law']
[u'tender', u'call', u'armidal', u'landfil', u'site']
[u'tenni', u'coach', u'deni', u'have', u'teen']
[u'tenni', u'coach', u'trial', u'sexual', u'assault', u'charg']
[u'time', u'lucki', u'cana', u'win', u'stuttgart']
[u'kill', u'arrest', u'jordan', u'border', u'skirmish']
[u'todd', u'hamilton', u'win', u'british', u'open']
[u'tourism', u'campaign', u'pay']
[u'toxin', u'fear', u'halt', u'nurs', u'home', u'develop']
[u'tripl', u'fatal', u'prompt', u'call', u'caution']
[u'triumph', u'hamilton', u'ugli', u'game']
[u'hospit', u'close', u'claim', u'oppn']
[u'vow', u'pursu', u'unfair', u'dismiss', u'case']
[u'desert', u'arriv', u'japan']
[u'vaughan', u'look', u'rediscov', u'bat', u'form']
[u'lib', u'probe', u'travel', u'allow']
[u'vieira', u'irreplac', u'claim', u'bergkamp']
[u'author', u'investig', u'prospector', u'sabotag']
[u'begin', u'polic', u'recruit', u'drive']
[u'whale', u'die', u'shark']
[u'white', u'supremacist', u'deni', u'perth', u'attack']
[u'william', u'receiv', u'support', u'coach']
[u'william', u'say', u'sorri', u'ugli']
[u'woman', u'charg', u'ambul', u'offic', u'threaten']
[u'wooli', u'report', u'strong', u'sale', u'growth']
[u'zoysa', u'star', u'lanka', u'clinch', u'thrill']
[u'kill', u'ukrain', u'explos']
[u'accc', u'take', u'stiff', u'action', u'turpi']
[u'accid', u'kill', u'elder', u'learner', u'driver']
[u'communiti', u'council', u'fund', u'withhold']
[u'forest', u'profit', u'bushfir']
[u'african', u'union', u'tri', u'reviv', u'fail', u'darfur', u'talk']
[u'agforc', u'welcom', u'basin', u'develop', u'halt']
[u'alic', u'tourism', u'oper', u'ralli', u'virgin']
[u'black', u'chang', u'south', u'africa', u'test']
[u'altern', u'weed', u'strategi', u'need', u'combat']
[u'amazon', u'burn', u'make', u'brazil', u'lead', u'pollut']
[u'annual', u'turnov', u'solid', u'harvey', u'norman']
[u'readi', u'eadi']
[u'appl', u'roll', u'cheaper', u'ipod']
[u'releas', u'detail', u'bid', u'leagu']
[u'atsb', u'call', u'fatal', u'chopper', u'crash', u'wit']
[u'australia', u'chip', u'solomon', u'island', u'soccer']
[u'beatti', u'call', u'thursday', u'island', u'naval', u'base']
[u'bendigo', u'call', u'state', u'wide', u'plan', u'control']
[u'bhopal', u'disast', u'victim', u'award', u'compens']
[u'bitou', u'eat', u'moth', u'wont', u'pest', u'research']
[u'blue', u'coach', u'gould', u'pay', u'part', u'shoot']
[u'bodi', u'sydney', u'park', u'identifi']
[u'boomer', u'opal', u'name', u'athen']
[u'british', u'militari', u'helicopt', u'crash', u'iraq']
[u'child', u'porn', u'filter', u'stop']
[u'burk', u'welcom', u'explor', u'land', u'acquisit']
[u'behaviour', u'guidelin', u'similar', u'conduct', u'code']
[u'bushfir', u'season', u'start', u'earli']
[u'public', u'servic', u'youth', u'inject']
[u'casino', u'owner', u'refus', u'budg', u'offer']
[u'cautionari', u'call', u'conserv', u'coliban', u'water']
[u'chanderpaul', u'hit', u'form', u'ahead', u'test']
[u'chelsea', u'agre', u'term', u'drogba']
[u'children', u'arrest', u'tableland', u'crime', u'spree']
[u'china', u'host', u'supercar', u'championship']
[u'chines', u'live', u'cockroach']
[u'chirac', u'tell', u'sharon', u'welcom', u'franc']
[u'cityrail', u'servic', u'weekend']
[u'cobargo', u'meet', u'address', u'water', u'woe']
[u'communiti', u'includ', u'drill', u'committe']
[u'compani', u'satisfi', u'watchdog', u'sale', u'method']
[u'construct', u'chao', u'hamper', u'greec', u'athlet']
[u'council', u'dismiss', u'ecovillag', u'concern']
[u'council', u'divid', u'showground', u'curfew', u'request']
[u'council', u'hop', u'miner', u'develop', u'fund']
[u'council', u'adopt', u'integr', u'approach']
[u'court', u'consid', u'pileggi', u'appeal']
[u'court', u'hear', u'homeless', u'man', u'death', u'accid']
[u'cricket', u'boomerang', u'come']
[u'crow', u'shut', u'lynch']
[u'crow', u'nest', u'welcom', u'record', u'growth']
[u'cycl', u'controversi', u'overshadow', u'olymp', u'team']
[u'date', u'australia', u'india', u'tour']
[u'detaine', u'death', u'spark', u'riot']
[u'develop', u'board', u'search', u'replac']
[u'doctor', u'target', u'dead', u'lung', u'diseas']
[u'dolphin', u'sanctuari', u'step', u'closer']
[u'downer', u'push', u'khmer', u'roug', u'tribun']
[u'dismiss', u'cold', u'weather', u'lamb', u'worri']
[u'dragon', u'refus', u'gasnier', u'releas']
[u'economi', u'survey']
[u'egyptian', u'hostag', u'free', u'filipino', u'fate', u'unknown']
[u'elect', u'surgeri', u'list', u'grow', u'rapid', u'govt']
[u'embassi', u'confirm', u'filipino', u'hostag', u'releas']
[u'approv', u'soni', u'bertelsmann', u'merger']
[u'farmer', u'free', u'play', u'swan']
[u'fatal', u'helicopt', u'crash', u'investig']
[u'feder', u'govt', u'fund', u'marin', u'research', u'centr']
[u'franc', u'ascion', u'advanc', u'indianapoli']
[u'free', u'hostag', u'say', u'arroyo']
[u'futur', u'bleak', u'brisban', u'skyscrap']
[u'futur', u'resolv', u'bathurst', u'coach']
[u'game', u'match', u'wander', u'ferret']
[u'gene', u'defect', u'death', u'case']
[u'govt', u'enterpris', u'better']
[u'govt', u'block', u'reopen', u'christma', u'island', u'casino']
[u'grave', u'fear', u'hold', u'miss', u'yachtsman']
[u'green', u'polici', u'target', u'work', u'condit']
[u'hervey', u'take', u'tidi', u'town', u'award']
[u'hewitt', u'sole', u'aussi', u'tenni']
[u'high', u'prais', u'maritim', u'secur', u'boost']
[u'hird', u'doubt', u'comeback', u'date']
[u'hobart', u'intern', u'undergo', u'facelift']
[u'hous', u'group', u'agre', u'allianc']
[u'howard', u'hint', u'late', u'poll', u'latham', u'shrug', u'slide']
[u'howard', u'reject', u'agenc', u'overhaul']
[u'illawarra', u'busi', u'confid', u'drop']
[u'includ', u'address', u'offend', u'regist', u'polic']
[u'india', u'sack', u'hockey', u'coach', u'olymp']
[u'indigen', u'mainstream', u'face', u'problem', u'senat']
[u'inquest', u'begin', u'transplant', u'patient', u'death']
[u'internet', u'diagnosi', u'concern', u'rural', u'doctor']
[u'island', u'return', u'home', u'year', u'evacu']
[u'isra', u'judg', u'shoot', u'dead']
[u'israel', u'sure', u'palestinian', u'didnt', u'kill', u'judg']
[u'japan', u'seek', u'consider', u'accus']
[u'jetstar', u'consid', u'newcastl', u'mainten']
[u'joint', u'patrol', u'malacca', u'strait', u'underway']
[u'juri', u'tell', u'unfair', u'convict', u'coupl', u'murder']
[u'philippin', u'troop', u'leav', u'iraq']
[u'lie', u'peni', u'size', u'scare', u'smoker']
[u'accus', u'racist', u'attack', u'remand', u'custodi']
[u'face', u'court', u'latest', u'norfolk', u'murder']
[u'maradona', u'junior', u'flee', u'scotland']
[u'mayor', u'request', u'temporari', u'aerial', u'spray']
[u'mayor', u'vow', u'meet', u'golf', u'cours', u'deadlin']
[u'meatwork', u'vow', u'stay', u'open', u'despit', u'sheep', u'price']
[u'meet', u'aim', u'dismiss', u'rail', u'trail', u'project']
[u'methadon', u'program', u'complaint', u'disput']
[u'microsoft', u'lindowscom', u'million']
[u'mine', u'giant', u'expand']
[u'minist', u'consid', u'drug', u'court', u'expans']
[u'minist', u'ignor', u'palliat', u'care', u'plan']
[u'minist', u'open', u'endoscopi', u'unit']
[u'minist', u'promis', u'mine', u'institut', u'fund']
[u'minist', u'weigh', u'artefact', u'stoush']
[u'call', u'crop', u'locat', u'public']
[u'morley', u'out', u'william', u'face', u'judiciari', u'wipe']
[u'mornington', u'search', u'end']
[u'mornington', u'search']
[u'call', u'nowra', u'licenc']
[u'lose', u'car']
[u'gambier', u'servic', u'offer', u'free', u'help']
[u'museum', u'benefit', u'custom', u'hous', u'acquisit']
[u'fallout', u'contribut']
[u'nation', u'indigen', u'bodi', u'essenti', u'committe', u'hear']
[u'nation', u'port', u'secur', u'boost']
[u'nation', u'prostat', u'tissu', u'bank', u'form']
[u'navi', u'doctor', u'guilti', u'improp', u'conduct']
[u'manag', u'investig', u'livestock', u'exchang']
[u'minist', u'review', u'croc', u'safari', u'plan']
[u'nightclub', u'close', u'time', u'rule', u'overturn']
[u'nimbin', u'call', u'sustain', u'polic']
[u'nimmitabel', u'eas', u'water', u'restrict']
[u'minist', u'hail', u'buyback', u'scheme']
[u'polic', u'hunt', u'isra', u'link']
[u'offici', u'shoot', u'dead', u'iraqi', u'citi']
[u'near', u'barrel']
[u'manag', u'resid', u'make', u'heritag', u'list']
[u'oneil', u'judiciari', u'appear', u'defer']
[u'oper', u'wander', u'tourist']
[u'orang', u'sentenc', u'fellow', u'escap', u'murder']
[u'pair', u'convict', u'doubl', u'murder']
[u'palestinian', u'leadership', u'crisi', u'annan']
[u'palestinian', u'withdraw', u'resign']
[u'park', u'victoria', u'chief', u'deni', u'conflict']
[u'patholog', u'compani', u'escap', u'takeov', u'review']
[u'rise', u'tip', u'murray', u'goulburn', u'worker']
[u'save', u'owner', u'hous']
[u'road', u'promis', u'appear', u'pothol']
[u'poetri', u'award', u'receiv', u'entri']
[u'poki', u'threaten', u'club', u'surviv']
[u'polic', u'break', u'dili', u'riot']
[u'port', u'lincoln', u'eplga', u'consid', u'heal', u'rift']
[u'power', u'restor', u'properti']
[u'press', u'watchdog', u'slam', u'iran', u'newspap', u'closur']
[u'prison', u'offic', u'sack', u'inmat', u'murder']
[u'properti', u'valu', u'scam', u'concern', u'council']
[u'pulp', u'burn', u'burni', u'tourism', u'imag']
[u'produc', u'ban', u'move', u'fruit']
[u'race', u'track', u'return', u'alleg', u'cruel', u'greyhound']
[u'racist', u'graffiti', u'worri', u'chines', u'communiti']
[u'rail', u'accid', u'spark', u'union', u'concern']
[u'railway', u'societi', u'plan', u'display', u'vamp']
[u'research', u'assess', u'effect', u'hair', u'loss']
[u'resid', u'mediat', u'doctor', u'disput']
[u'resid', u'protest', u'fish', u'sanctuari', u'propos']
[u'rival', u'weak', u'challeng', u'lanc', u'team', u'boss']
[u'road', u'minist', u'invit', u'calder', u'drive']
[u'roger', u'carri', u'australian', u'yellow', u'jersey', u'hop']
[u'rural', u'communiti', u'emerg', u'respons', u'team']
[u'rusedski', u'outlast', u'johansson', u'indi']
[u'russian', u'bailiff', u'order', u'yuko', u'sale']
[u'debat', u'abus', u'inquiri', u'term']
[u'senior', u'iraqi', u'offici', u'assassin']
[u'shepparton', u'welcom', u'visit']
[u'solar', u'group', u'rule', u'renmark', u'develop']
[u'solomon', u'wipe', u'forest', u'studi', u'warn']
[u'stan', u'birmingham']
[u'africa', u'commit', u'nation', u'super']
[u'strand', u'park', u'close', u'mainten']
[u'streeton', u'paint', u'tour', u'western', u'queensland']
[u'strike', u'disrupt', u'hospit', u'servic']
[u'strike', u'hospit', u'staff', u'reject', u'deal']
[u'subject', u'seek', u'cancer', u'research']
[u'sudanes', u'govt', u'accus', u'link', u'darfur', u'atroc']
[u'sudanes', u'militiamen', u'jail', u'say', u'attack', u'continu']
[u'supercar', u'seal', u'china', u'deal']
[u'tamar', u'river', u'dredg', u'solv', u'silt', u'problem']
[u'tamworth', u'manag', u'criticis', u'rural', u'opportun']
[u'task', u'forc', u'hop', u'quick', u'payment', u'aborigin']
[u'tatura', u'milk', u'rais', u'supplier', u'payment']
[u'teen', u'charg', u'alleg', u'stab', u'bail']
[u'telstra', u'go', u'howard', u'mate', u'say', u'labor']
[u'telstra', u'plan', u'chang']
[u'tenni', u'coach', u'hopper', u'obsess', u'year', u'girl']
[u'terror', u'accus', u'commit', u'stand', u'trial']
[u'time', u'feel']
[u'hospitalis', u'light', u'plane', u'crash']
[u'timber', u'industri', u'improv', u'practic']
[u'torr', u'strait', u'boat', u'accid', u'braveri', u'recognis']
[u'tour', u'target', u'indigen', u'consum', u'right']
[u'tribun', u'deliv', u'good', u'news', u'fremantl']
[u'tribut', u'minist', u'norfolk', u'murder']
[u'charg', u'perth', u'graffiti', u'attack']
[u'offici', u'fail', u'protect', u'asylum', u'seeker']
[u'delay', u'vote', u'isra', u'wall']
[u'continu', u'investig', u'iran', u'terrorist', u'claim']
[u'marin', u'deni', u'desert', u'iraq']
[u'home', u'snow']
[u'legal', u'examin', u'region', u'expans']
[u'victorian', u'polic', u'prepar', u'swim', u'english', u'channel']
[u'violenc', u'flare', u'israel', u'lebanon', u'border']
[u'polic', u'intensifi', u'search', u'miss', u'yachtsman']
[u'warn', u'issu', u'public', u'hous', u'propos']
[u'week', u'open', u'slowli', u'wall', u'street']
[u'wetland', u'protect', u'shouldnt', u'impact', u'farmer', u'waff']
[u'yellow', u'jersey', u'voeckler', u'head', u'athen']
[u'accc', u'wont', u'interven', u'sale']
[u'activist', u'complain', u'threat']
[u'challeng', u'health', u'fund', u'alloc']
[u'chief', u'take', u'malthous']
[u'afma', u'issu', u'warn', u'pelag', u'fish', u'stock']
[u'agreement', u'close', u'olymp', u'park', u'mcguir']
[u'albani', u'adopt', u'marina', u'develop', u'plan']
[u'albani', u'mull', u'late', u'night', u'shop']
[u'consid', u'introduc', u'worker', u'card']
[u'alp', u'dhuez', u'test', u'yellow', u'jersey', u'contend']
[u'say', u'increas', u'surgeri', u'demand', u'wait']
[u'antarct', u'link', u'schedul']
[u'armidal', u'begin', u'redevelop']
[u'armstrong', u'command']
[u'aussi', u'test', u'team', u'class']
[u'aust', u'defend', u'secur', u'barrier', u'vote']
[u'australian', u'reliv', u'role', u'moon', u'land']
[u'babi', u'whale', u'sight', u'continu']
[u'bank', u'expand', u'interst']
[u'bankstown', u'airport', u'bigger', u'passeng', u'plan']
[u'ban', u'hormon', u'eadi', u'bonus']
[u'bargain', u'hunter', u'snap', u'magic', u'icon']
[u'bark', u'ident', u'say', u'atsic', u'aftermath', u'confus']
[u'bendigo', u'get', u'ahead', u'lake', u'tram', u'rout']
[u'benfica', u'tiago', u'sign', u'chelsea']
[u'bhps', u'union', u'workforc', u'win', u'rise']
[u'bodi', u'discoveri', u'prompt', u'polic', u'probe']
[u'bolton', u'quick', u'mark', u'speed']
[u'bosnian', u'serb', u'polic', u'search', u'crime', u'fugit']
[u'brace', u'quicker', u'rate', u'hike', u'inflat', u'rise']
[u'brack', u'say', u'school', u'safeti', u'improv']
[u'bundaberg', u'sugar', u'worker', u'strike', u'skill']
[u'canberra', u'feel', u'winter', u'chill']
[u'cancer', u'studi', u'focus', u'mackay']
[u'carr', u'see', u'need', u'orang', u'grove', u'inquiri']
[u'china', u'unveil', u'olymp', u'squad']
[u'clash', u'whale', u'bodi', u'cruelti', u'issu']
[u'classic', u'music', u'help', u'eas', u'pain', u'doctor', u'say']
[u'club', u'claim', u'poki', u'caus', u'loss']
[u'club', u'lock', u'reduc', u'crime']
[u'coco', u'pop', u'rice', u'bubbl', u'recal']
[u'committe', u'address', u'indigen', u'justic']
[u'cooma', u'review', u'park']
[u'corrupt', u'watchdog', u'look', u'orang', u'grove', u'claim']
[u'council', u'defend', u'talbot', u'mobil', u'librari', u'plan']
[u'council', u'encourag', u'option', u'hunt', u'boandik', u'lodg']
[u'councillor', u'object', u'tacki', u'signag']
[u'council', u'push', u'surgeri', u'reinstat']
[u'council', u'offer', u'indigen', u'traineeship']
[u'council', u'veto', u'mobil', u'tower', u'plan']
[u'court', u'hear', u'detail', u'murder']
[u'court', u'weigh', u'pileggi', u'case']
[u'cycl', u'australia', u'decid', u'eadi', u'fate']
[u'worker', u'reject', u'travel', u'offer']
[u'defenc', u'committe', u'brief', u'pine']
[u'demand', u'dorrigo', u'resid', u'adsl']
[u'detent', u'centr', u'riot', u'spark', u'strike']
[u'vere', u'confid', u'injuri', u'wont', u'harm', u'england', u'plan']
[u'donor', u'pledg', u'billion', u'haiti']
[u'downer', u'rebuff', u'ramo', u'horta', u'talk']
[u'celebr', u'trade', u'mission', u'success']
[u'weather', u'need', u'finish', u'green', u'factori']
[u'eadi', u'athen', u'team']
[u'eadi', u'consid', u'sue']
[u'eadi', u'wait', u'olymp', u'appeal']
[u'electr', u'fault', u'possibl', u'caus', u'shop', u'blaze']
[u'euthanasia', u'societi', u'inquest', u'evid']
[u'experiment', u'vaccin', u'keep', u'cancer', u'patient', u'diseas']
[u'expert', u'warn', u'breed', u'worm']
[u'chang', u'renault', u'approv']
[u'farmer', u'ralli', u'phone', u'rental', u'charg']
[u'farm', u'yield', u'predict', u'rise']
[u'feder', u'polic', u'arriv', u'norfolk', u'island']
[u'fijian', u'soldier', u'guilti', u'mutini']
[u'firefight', u'battl', u'fingal', u'blaze']
[u'olymp', u'medal', u'roll', u'product', u'line']
[u'fish', u'stock', u'monitor', u'acoust', u'technolog']
[u'jail', u'doubl', u'murder']
[u'flintoff', u'assum', u'bat', u'role', u'england']
[u'flower', u'power', u'turn', u'volum', u'japan']
[u'troop', u'kill', u'fallujah']
[u'freier', u'come', u'suspend', u'cannon']
[u'fruit', u'picker', u'shortag', u'prompt', u'call', u'help']
[u'strike', u'like', u'casino']
[u'gatton', u'physio', u'help', u'olymp', u'hors', u'rider']
[u'golf', u'develop', u'garner', u'intern']
[u'govt', u'accus', u'cover', u'prison', u'escap']
[u'govt', u'cuddl', u'nation', u'say', u'labor']
[u'govt', u'test', u'airport', u'secur', u'scanner']
[u'greenspan', u'market', u'lift']
[u'green', u'urg', u'latham', u'forest', u'concern']
[u'green', u'reduc', u'illawarra', u'unemploy']
[u'group', u'battl', u'bottl', u'shop', u'propos']
[u'guyra', u'target', u'outstand', u'rate', u'debt']
[u'haiti', u'promis', u'billion']
[u'help', u'secur', u'border', u'iraq', u'say']
[u'henin', u'hardenn', u'aim', u'olymp', u'comeback']
[u'henin', u'hardenn', u'road', u'recoveri']
[u'hepburn', u'creat', u'heat', u'debat']
[u'heroin', u'addict', u'cure', u'prais']
[u'hoon', u'announc', u'sweep', u'defenc', u'cut']
[u'hopper', u'accus', u'doesnt', u'want', u'money']
[u'hormon', u'shot', u'help', u'tan', u'damag', u'studi']
[u'hospit', u'meat', u'contract', u'anger', u'region', u'butcher']
[u'humpback', u'whale', u'popul', u'increas', u'survey']
[u'internet', u'address']
[u'interst', u'fruit', u'market', u'reopen']
[u'investig', u'fail', u'fatal', u'plane', u'crash', u'caus']
[u'time', u'slogan', u'promot', u'labor', u'event']
[u'japan', u'vow', u'troop', u'iraq']
[u'jeanpierr', u'make', u'lucki', u'break']
[u'jetstar', u'cut', u'hobart', u'flight']
[u'kidnapp', u'treat', u'filipino', u'hostag', u'tell']
[u'knight', u'sign', u'reynoldson']
[u'kyoto', u'ratif', u'benefit', u'say', u'latham']
[u'labor', u'flag', u'card', u'foreign', u'worker']
[u'labor', u'plan', u'chief', u'nurs', u'posit']
[u'labor', u'plan', u'extra', u'hour', u'doctor']
[u'langer', u'issu', u'ryder', u'ralli']
[u'leader', u'grappl', u'underdog']
[u'leader', u'hostag', u'wouldnt', u'sway', u'polici']
[u'leicest', u'sign', u'veteran', u'keown']
[u'live', u'export', u'report', u'mislead', u'rspca']
[u'liverpool', u'striker', u'share', u'limelight']
[u'livestock', u'export', u'death', u'rat', u'fall']
[u'livid', u'festiv', u'cancel']
[u'alamo', u'bar', u'classifi', u'work']
[u'man', u'throw', u'lifelin', u'hopoat']
[u'martian', u'meteor', u'discov', u'antarctica']
[u'mayor', u'call', u'shoalwat', u'inform']
[u'michael', u'jackson', u'deni', u'surrog', u'mother', u'report']
[u'microsoft', u'plan', u'payout']
[u'midwiv', u'protest', u'darwin']
[u'mildura', u'start', u'communiti', u'polic', u'program']
[u'millar', u'punish', u'roger', u'gold']
[u'minist', u'prais', u'fish', u'permit', u'success']
[u'minist', u'reject', u'free', u'babi', u'food', u'idea']
[u'evid', u'econom', u'recoveri']
[u'morn', u'glori', u'research', u'lead', u'better', u'weather']
[u'mother', u'anger', u'polic', u'inquiri', u'delay', u'son']
[u'gambier', u'withdraw', u'servic', u'fund']
[u'mugab', u'accus', u'dead', u'peopl', u'vote']
[u'museum', u'confid', u'cricket', u'boomerang', u'genuin']
[u'museum', u'confid', u'cricket', u'boomerang', u'origin']
[u'news', u'corp', u'help', u'market', u'rebound']
[u'narrabri', u'research', u'station', u'get', u'boost']
[u'sale']
[u'dad', u'need', u'support', u'say', u'research']
[u'decis', u'william', u'sway']
[u'farmer', u'consid', u'milit', u'action']
[u'introduc', u'number', u'plat']
[u'oppn', u'promis', u'local', u'govern', u'assist']
[u'origin', u'target', u'purchas']
[u'oversea', u'train', u'doctor', u'offer', u'hand']
[u'pacif', u'island', u'face', u'super', u'shut']
[u'palmer', u'report', u'disturb', u'abalon', u'fishermen']
[u'paradorn', u'move', u'round', u'indianapoli']
[u'parliament', u'urg', u'arafat', u'accept', u'resign']
[u'passeng', u'number', u'melbourn', u'airport']
[u'philippin', u'weak', u'wont', u'stop', u'terrorist', u'howard']
[u'pileggi', u'appeal', u'hear', u'feder', u'court']
[u'pileggi', u'decis', u'expect', u'thursday']
[u'pileggi', u'decis', u'expect', u'tomorrow']
[u'pinochet', u'face', u'charg', u'secret', u'bank', u'account']
[u'plan', u'begin', u'break', u'hill', u'confer']
[u'polic', u'dismiss', u'robinval', u'racial', u'tension', u'fear']
[u'polic', u'grant', u'extens', u'gangland', u'case']
[u'polic', u'hunt', u'owner', u'distinct']
[u'polic', u'investig', u'boy', u'sexual', u'assault']
[u'polic', u'investig', u'overnight', u'fire']
[u'policeman', u'award', u'braveri']
[u'polic', u'swimmer', u'near', u'franc']
[u'poor', u'moor', u'vessel', u'damag']
[u'pope', u'order', u'inquiri', u'sexual', u'misconduct']
[u'portman', u'increas', u'iron', u'export']
[u'port', u'secur', u'fail', u'address', u'foreign', u'ship']
[u'port', u'secur', u'remot', u'monitor']
[u'privat', u'resid', u'consid', u'ental', u'hous']
[u'psychiatrist', u'plan', u'free', u'sexual', u'sadist']
[u'puckapuny', u'heritag', u'list']
[u'push', u'corrupt', u'prosecut', u'solomon']
[u'compani', u'boost', u'goldfield', u'employ']
[u'union', u'discuss', u'townsvill', u'centr']
[u'queensland', u'resum', u'citrus', u'trade']
[u'real', u'bid', u'striker', u'etoo']
[u'region', u'forest', u'agreement', u'flaw', u'say', u'scientist']
[u'riverina', u'flip', u'kill', u'passeng']
[u'riverina', u'camp', u'hope', u'youth', u'direct']
[u'rock', u'throw', u'incid', u'prompt', u'polic', u'investig']
[u'russian', u'gangster', u'offer', u'realiti']
[u'commit', u'murray', u'dredg', u'fund']
[u'sar', u'whistleblow', u'releas', u'detent']
[u'saudi', u'head', u'slay', u'hostag']
[u'school', u'time', u'capsul', u'disappear', u'ruin', u'garden']
[u'schwab', u'quit', u'hawk', u'season']
[u'search', u'continu', u'miss', u'sailor']
[u'search', u'miss', u'sailor', u'expand']
[u'season', u'vere']
[u'seymour', u'hospit', u'ralli', u'staff', u'woe']
[u'jetti', u'placement', u'propos', u'anger', u'nannup']
[u'south', u'korea', u'strike', u'spread', u'subway']
[u'springbok', u'squad', u'black', u'encount']
[u'statewid', u'fruit', u'inspect', u'begin']
[u'sudan', u'reject', u'human', u'right', u'report', u'darfur']
[u'sugar', u'industri', u'launch', u'biosecur', u'plan']
[u'suspect', u'want', u'activist', u'riyadh', u'clash']
[u'govt', u'urg', u'match', u'highway', u'fund', u'commit']
[u'tasmanian', u'golf', u'cours', u'garner', u'intern']
[u'score', u'histor', u'artwork']
[u'teacher', u'transfer', u'chang', u'wont', u'work', u'union']
[u'teen', u'receiv', u'suspend', u'sentenc', u'polic', u'assault']
[u'tevez', u'strike', u'argentina', u'oust', u'colombia']
[u'thousand', u'greet', u'shaq', u'miami']
[u'timor', u'explor', u'benefit', u'territori']
[u'townsvill', u'top', u'clean', u'energi', u'challeng']
[u'servic', u'tip', u'buchan', u'resid']
[u'milit', u'kill', u'saudi', u'shoot']
[u'question', u'perth', u'racist', u'attack']
[u'vote', u'demand', u'israel', u'tear', u'barrier']
[u'invest', u'guru', u'tell', u'reveal', u'limit']
[u'accept', u'citrus', u'shipment', u'board']
[u'urg', u'arafat', u'power']
[u'welcom', u'hostag', u'releas', u'regret', u'pullout']
[u'vanston', u'unmov', u'woomera', u'case']
[u'venus', u'overwhelm', u'harkleroad']
[u'vibrant', u'communiti', u'healthi', u'town']
[u'preschool', u'teacher', u'start', u'strike']
[u'polic', u'seek', u'identifi', u'bushland', u'bodi']
[u'whale', u'calf', u'sight', u'rais', u'tourism', u'hop']
[u'whale', u'say', u'campbel']
[u'william', u'decis', u'adjourn', u'week']
[u'william', u'futur', u'balanc']
[u'william', u'present', u'concuss', u'defenc']
[u'wit', u'recal', u'ordeal', u'peopl', u'smuggl']
[u'woman', u'drown', u'houseboat', u'fall']
[u'work', u'begin', u'wind', u'farm', u'develop']
[u'give', u'grind', u'cull', u'debat']
[u'action', u'group', u'question', u'fast', u'rail', u'plan']
[u'actu', u'upbeat', u'billiton', u'boost']
[u'albani', u'marina', u'plan', u'continu']
[u'alic', u'court', u'wont', u'increas', u'secur', u'despit']
[u'antarct', u'aircraft', u'germani']
[u'apec', u'consid', u'anti', u'aircraft', u'missil', u'export']
[u'ape', u'anthrax', u'death', u'caus', u'fear', u'human']
[u'armstrong', u'hold', u'strong', u'lead', u'go', u'stage']
[u'assault', u'spark', u'fear', u'footbal', u'club', u'futur']
[u'crack', u'super', u'fund']
[u'auction', u'site', u'doubl', u'profit', u'stock', u'fall']
[u'aussi', u'reid', u'advanc', u'indianapoli']
[u'aust', u'shut', u'spammer']
[u'autopsi', u'beach', u'babi', u'whale']
[u'bail', u'boxer', u'compet', u'athen']
[u'bank', u'resourc', u'drive', u'lower']
[u'head', u'news', u'world', u'servic']
[u'beckham', u'twist', u'ankl', u'train']
[u'behead', u'western', u'bodi', u'iraq']
[u'bendigo', u'bank', u'manag', u'gold', u'mine', u'fund']
[u'bigger', u'breast', u'offer', u'perk', u'soldier']
[u'biodivers', u'trade', u'scheme', u'south', u'east']
[u'blackburn', u'cruis', u'olymp', u'warm']
[u'blackout', u'hit', u'north', u'hobart']
[u'bok', u'lose', u'streak', u'sick']
[u'bomber', u'target', u'young', u'saint', u'say', u'hamil']
[u'brazil', u'edg', u'uruguay', u'copa', u'final']
[u'bush', u'approv', u'arm', u'sale', u'iraq']
[u'bush', u'sign', u'biolog', u'weapon', u'vaccin']
[u'cabinet', u'appoint', u'deliv', u'stabl', u'govt', u'rann']
[u'canadian', u'coupl', u'seek', u'divorc']
[u'canadian', u'pledg', u'decriminalis', u'marijuana']
[u'capsul', u'research', u'target', u'cancer', u'cell']
[u'chemic', u'clean', u'begin']
[u'children', u'rescu', u'burn', u'hous']
[u'citrus', u'grower', u'consid', u'legal', u'action']
[u'costello', u'tip', u'sept', u'elect']
[u'council', u'air', u'poison', u'fear']
[u'councillor', u'censur', u'comment']
[u'councillor', u'fail', u'chang', u'rat', u'plan']
[u'council', u'receiv', u'grant']
[u'council', u'tackl', u'backlog']
[u'court', u'appear', u'alleg', u'racist']
[u'court', u'dismiss', u'pileggi', u'appeal']
[u'court', u'tell', u'bakhtiyari', u'boy', u'live', u'freeli']
[u'court', u'rule', u'pileggi', u'case', u'today']
[u'crow', u'power', u'chang']
[u'crow', u'wont', u'rush', u'search', u'coach']
[u'work', u'affect', u'shire', u'road']
[u'darwin', u'port', u'tighten', u'secur']
[u'darwin', u'expect', u'ten', u'thousand']
[u'david', u'jone', u'share', u'jump', u'profit', u'increas']
[u'defenc', u'probe', u'possibl', u'radioact', u'contamin']
[u'deleg', u'aim', u'grind', u'land', u'fee']
[u'derelict', u'ship', u'owner', u'hit', u'critic']
[u'dont', u'kick', u'say', u'studi']
[u'doubt', u'cast', u'infrastructur', u'pledg']
[u'emerg', u'depart', u'run']
[u'escape', u'court', u'nude']
[u'eurobodalla', u'gear', u'council', u'elect']
[u'expert', u'halv', u'cancer', u'case']
[u'faldo', u'irish', u'open']
[u'famili', u'payment', u'boost', u'david', u'jone', u'figur']
[u'farmer', u'warn', u'misdirect', u'land', u'bill']
[u'court', u'order', u'closur', u'intern', u'financ']
[u'govt', u'stand', u'walk', u'track', u'probe']
[u'filipino', u'hostag', u'return', u'hero', u'welcom']
[u'fisher', u'seek', u'jetti', u'access', u'summit']
[u'foetal', u'thumbsuck', u'give', u'clue', u'hand', u'prefer']
[u'priest', u'plead', u'guilti', u'offenc']
[u'teacher', u'jail', u'indec', u'deal']
[u'fossil', u'come', u'aliv', u'museum', u'open']
[u'fund', u'boost', u'youth', u'justic', u'servic']
[u'fund', u'loss', u'fewer', u'nurs', u'hour']
[u'gaza', u'report', u'tell', u'cover', u'intern', u'strife']
[u'govt', u'consid', u'arm', u'guard', u'athlet']
[u'govt', u'consid', u'arm', u'guard', u'athlet']
[u'govt', u'cut', u'level', u'sulphur', u'petrol']
[u'govt', u'reject', u'mine', u'guarante']
[u'govt', u'stand', u'ambul', u'fund']
[u'govt', u'wast', u'plan', u'consult']
[u'green', u'attack', u'roll', u'failur']
[u'green', u'lash', u'farm', u'lobbi', u'group']
[u'greenspan', u'forecast', u'knock', u'aussi', u'dollar']
[u'green', u'project', u'elect', u'issu']
[u'gregan', u'train', u'wallabi']
[u'gregan', u'train', u'wallabi']
[u'grower', u'citrus', u'export', u'assur']
[u'guilti', u'plea', u'enter', u'melbourn', u'sieg']
[u'gunn', u'accus', u'embark', u'land', u'grab']
[u'hardwick', u'reach', u'mileston']
[u'hopper', u'admit', u'sleep', u'student', u'court', u'hear']
[u'hopper', u'kiss', u'alleg', u'victim', u'court', u'hear']
[u'horticultur', u'worker', u'visa', u'categori']
[u'hospit', u'make', u'secur', u'chang']
[u'howard', u'stern', u'face', u'indec', u'counterclaim']
[u'huddersfield', u'stick', u'injur', u'vere']
[u'india', u'hop', u'hostag', u'releas']
[u'indigen', u'inquiri', u'hear', u'polic', u'problem']
[u'investig', u'launch', u'doubl', u'road', u'death']
[u'italian', u'team', u'offer', u'millar', u'lifelin']
[u'kersten', u'join', u'team', u'oversea', u'manag']
[u'kluivert', u'seal', u'year', u'newcastl', u'deal']
[u'labor', u'health', u'number', u'dont', u'costello']
[u'labor', u'revisit', u'east', u'timor', u'talk']
[u'labor', u'wreck', u'warn']
[u'lake', u'eyr', u'basin', u'group', u'seek', u'fund']
[u'lamb', u'price', u'rise']
[u'latham', u'enforc', u'fair', u'price', u'dairi', u'farmer']
[u'fund', u'riverland', u'festiv', u'share']
[u'limeston', u'coast', u'share', u'tourism', u'fund']
[u'lose', u'frog', u'home']
[u'macklin', u'oppos', u'telstra', u'privatis']
[u'charg', u'larg', u'data', u'theft', u'case']
[u'charg', u'dubbo', u'death']
[u'charg', u'kebab', u'shop', u'murder']
[u'fin', u'mice', u'chew', u'case']
[u'surviv', u'light', u'plane', u'crash']
[u'court', u'child', u'porn', u'charg']
[u'wont', u'hope', u'tiger', u'return']
[u'maradona', u'reject', u'dumfermlin', u'offer']
[u'matilda', u'lose', u'friend']
[u'mayor', u'defend', u'rate', u'rise']
[u'mayor', u'seek', u'fair', u'road', u'fund', u'split']
[u'meekatharra', u'alcohol', u'restrict', u'continu']
[u'meet', u'consid', u'trade', u'debat']
[u'mental', u'ill', u'save', u'jail', u'court', u'tell']
[u'mental', u'charg', u'friend', u'death']
[u'militari', u'industri', u'sonar', u'harm', u'whale', u'report']
[u'miner', u'appeal', u'worker', u'camp', u'snub']
[u'minist', u'mislead', u'public', u'westfield', u'lobbi', u'lib']
[u'minist', u'postpon', u'research', u'station', u'closur']
[u'minist', u'slam', u'labor', u'dairi', u'plan']
[u'mix', u'respons', u'road', u'levi']
[u'highlight', u'school', u'woe']
[u'poke', u'breakaway', u'state']
[u'natur', u'beauti', u'ban', u'pageant']
[u'near', u'kill', u'china', u'flood']
[u'australian', u'arm', u'guard', u'olymp', u'athlet']
[u'foreign', u'arm', u'guard', u'athlet', u'greec']
[u'prosecut', u'green', u'phone', u'demis']
[u'norwegian', u'whale', u'plan']
[u'olymp', u'blow', u'ferguson']
[u'olymp', u'drug', u'concern', u'expect', u'fade']
[u'orang', u'loss', u'microscop']
[u'parlour', u'wife', u'boro']
[u'parti', u'negoti', u'cost', u'outsid', u'court']
[u'patterson', u'rid', u'high', u'south', u'africa']
[u'joint', u'ventur', u'bring', u'bet', u'servic']
[u'petrol', u'sniff', u'child', u'abus', u'major', u'health', u'problem']
[u'photo', u'highlight', u'medic', u'wast', u'concern']
[u'race', u'pull', u'darwin', u'crowd']
[u'plane', u'crash', u'inquest', u'uncertain']
[u'plan', u'underway', u'schooli', u'influx']
[u'player', u'craig', u'crow']
[u'solomon', u'pois', u'sign', u'border', u'deal']
[u'polic', u'appeal', u'help', u'solv', u'sexual', u'assault']
[u'polic', u'campaign', u'tackl', u'drink', u'driver']
[u'polit', u'wrangl', u'delay', u'forest', u'review']
[u'poor', u'staff', u'level', u'blame', u'worker', u'compo']
[u'popov', u'sign', u'palac', u'deal']
[u'port', u'boost', u'trade', u'revenu']
[u'power', u'gippsland', u'storm']
[u'prison', u'secur', u'firm', u'announc', u'overhaul']
[u'privat', u'hospit', u'help', u'public', u'surgeri', u'wait']
[u'project', u'aim', u'boost', u'rail', u'station', u'access']
[u'protest', u'fail', u'stop', u'cull']
[u'air', u'staff', u'cut', u'concern']
[u'public', u'urg', u'overdu', u'rat']
[u'public', u'warn', u'burn', u'danger']
[u'endors', u'reef', u'zone']
[u'forestri', u'hang', u'balanc']
[u'rail', u'mishap', u'unlik', u'affect', u'patronag']
[u'rain', u'disrupt', u'roddick', u'open', u'indianapoli']
[u'rann', u'order', u'probe', u'olympian', u'court', u'delay']
[u'record', u'problem', u'solv', u'hospit', u'say']
[u'report', u'clear', u'govt', u'interfer', u'iraq']
[u'report', u'clear', u'polic', u'databas', u'misus']
[u'research', u'dispel', u'spider', u'bite', u'myth']
[u'review', u'launch', u'websit', u'glitch']
[u'rivaldo', u'arriv', u'olympiako']
[u'river', u'death', u'spark', u'colli', u'meet']
[u'river', u'slime', u'undergo', u'test']
[u'rock', u'star', u'sue', u'frampton', u'bikini']
[u'ronaldo', u'tiago', u'miss', u'premier', u'leagu', u'kick']
[u'schwab', u'deni', u'payout', u'rumour']
[u'search', u'take', u'miss', u'plane']
[u'serena', u'reach', u'round']
[u'sergeant', u'charg', u'duti', u'assault']
[u'shellharbour', u'council', u'black']
[u'small', u'rate', u'rise', u'ilfracomb', u'shire']
[u'snowi', u'river', u'resid', u'prepar', u'vote']
[u'solomon', u'fragil', u'year']
[u'sound', u'music', u'reviv', u'generat']
[u'southern', u'cross', u'await', u'heritag', u'inspect']
[u'speed', u'camera', u'oper', u'steal']
[u'springbok', u'fear', u'black', u'line']
[u'lankan', u'bowler', u'crush', u'pakistan']
[u'staff', u'evacu', u'paper', u'blaze']
[u'statement', u'shin', u'littl', u'light', u'shoalwat', u'upgrad']
[u'storm', u'leav', u'student', u'strand']
[u'strike', u'review']
[u'sugar', u'industri', u'plan', u'pest']
[u'support', u'foreign', u'train', u'doctor', u'push']
[u'support', u'park', u'chang']
[u'busi', u'anger', u'jetstar', u'decis']
[u'teen', u'custodi', u'robberi', u'charg']
[u'teen', u'refus', u'bail', u'alleg', u'sexual']
[u'telstra', u'announc', u'plan']
[u'thai', u'court', u'quash', u'sentenc', u'aust', u'tourist']
[u'thai', u'polic', u'charg', u'teen', u'girl', u'death']
[u'theatr', u'target', u'petrol', u'bomb', u'attack']
[u'stand', u'trial', u'homeless', u'man', u'death']
[u'design', u'await', u'council', u'approv']
[u'titl', u'beckon', u'ferrari', u'germani']
[u'tobacco', u'compani', u'fin', u'destroy', u'document']
[u'honour', u'break', u'hill', u'farmer']
[u'charg', u'adelaid', u'incid']
[u'union', u'call', u'public', u'school', u'fund']
[u'union', u'call', u'extra', u'polic']
[u'unlicens', u'driver', u'jail', u'workmat', u'death']
[u'marin', u'battl', u'insurg', u'ramadi']
[u'militari', u'cook', u'urin', u'ration']
[u'stock', u'fall', u'earli', u'ralli']
[u'terror', u'face', u'billion', u'cost', u'blow']
[u'video', u'show', u'sept', u'hijack', u'breach', u'secur']
[u'waco', u'criticis', u'unfair', u'water', u'charg', u'plan']
[u'wagga', u'princip', u'top', u'award']
[u'photograph', u'document', u'cambodia', u'peac']
[u'water', u'board', u'clarifi', u'role']
[u'weather', u'warm', u'see', u'threat', u'live', u'murray']
[u'webb', u'doubt', u'british', u'open']
[u'woman', u'hop', u'photo', u'shed', u'light', u'outback', u'mysteri']
[u'work', u'appeal', u'lover', u'sens']
[u'zimbabw', u'rebel', u'agre', u'arbitr']
[u'zimbabw', u'court', u'uphold', u'paper', u'closur']
[u'teacher', u'agre', u'deal']
[u'campaign', u'target', u'flag', u'sydney', u'devonport', u'ferri']
[u'afghani', u'detaine', u'face', u'reassess']
[u'station', u'protest', u'ralli', u'plan']
[u'alarm', u'help', u'diabet', u'sleep', u'easi']
[u'grant', u'access', u'classifi', u'report']
[u'offer', u'youth', u'jobless', u'pledg']
[u'amazon', u'report', u'profit', u'share', u'fall']
[u'ambo', u'industri', u'action', u'threaten', u'live']
[u'anim', u'festiv', u'hit', u'road']
[u'arm', u'protect', u'athlet', u'allow', u'outsid']
[u'arm', u'robber', u'drug', u'custodi', u'court', u'hear']
[u'armstrong', u'sprint', u'stage']
[u'asbesto', u'fund', u'director', u'appli', u'exempt']
[u'close']
[u'aussi', u'kiwi', u'play', u'fixtur']
[u'author', u'investig', u'skin', u'ulcer', u'outbreak']
[u'author', u'delay', u'storm', u'repair']
[u'babi', u'whale', u'strand', u'beach']
[u'bali', u'convict', u'throw', u'chao']
[u'base', u'jumper', u'bad', u'injur']
[u'beckham', u'blunder', u'ball', u'sell']
[u'berri', u'spring', u'mother', u'name', u'rural', u'ambassador']
[u'crowd', u'expect', u'camel', u'race']
[u'blaze', u'destroy', u'midland', u'home']
[u'bodi', u'remov', u'appal', u'territori']
[u'bomber', u'surpris', u'hird', u'select']
[u'brigg', u'top', u'crowd', u'milwauke', u'leaderboard']
[u'britain', u'introduc', u'languag', u'test', u'foreign']
[u'break', u'hill', u'hop', u'clean', u'tidi', u'town']
[u'bulldog', u'boss', u'back', u'rohd']
[u'bundaberg', u'hospit', u'defend', u'staff', u'secur']
[u'burn', u'philp', u'sell', u'boost', u'share']
[u'bush', u'move', u'limit', u'report', u'damag']
[u'busi', u'usual', u'heytesburi', u'plant']
[u'cahil', u'bind', u'everton']
[u'auslink', u'includ', u'riddock', u'highway']
[u'mental', u'health', u'counsellor']
[u'surgic', u'theatr']
[u'secur', u'upgrad', u'narrabri']
[u'challeng', u'threaten', u'lib', u'hold', u'margin', u'seat']
[u'chao', u'predict', u'sydney', u'rail', u'passeng']
[u'children', u'arrest', u'villawood', u'heroin', u'bust']
[u'china', u'move', u'protect', u'ancient', u'cave']
[u'christma', u'devast', u'casino', u'decis']
[u'clean', u'staff', u'woe', u'affect', u'cessnock', u'nurs']
[u'communic', u'concern', u'terror', u'threat']
[u'concern', u'air', u'push']
[u'coron', u'speak', u'polic', u'chase']
[u'council', u'question', u'hospit', u'downgrad']
[u'council', u'talk', u'lake', u'develop', u'benefit']
[u'council', u'discuss', u'memori', u'resolut']
[u'court', u'rule', u'bali', u'terrorist', u'convict']
[u'cowboy', u'predict', u'closer', u'knight', u'clash']
[u'dead', u'flash', u'flood', u'vietnam']
[u'dept', u'agre', u'hand', u'joey']
[u'develop', u'get', u'extens', u'railyard', u'deal']
[u'develop', u'plead', u'guilti', u'fraud']
[u'diplomat', u'cull', u'affect', u'intellig', u'dfat', u'head']
[u'disgrac', u'millar', u'lose', u'world', u'titl']
[u'doolan', u'touch', u'franc']
[u'doubt', u'cast', u'surfer', u'seced']
[u'dunstal', u'instal', u'hawk']
[u'masri', u'boot', u'bulldog', u'clear']
[u'england', u'trafford', u'home']
[u'fairfax', u'strike', u'weekend', u'paper']
[u'farmer', u'unimpress', u'water', u'plan']
[u'farmer', u'warn', u'loom', u'mous', u'plagu']
[u'grant', u'bolster', u'hervey', u'pearl', u'industri']
[u'fijian', u'extend', u'oliv', u'branch', u'labour']
[u'flamini', u'join', u'arsenal', u'marseill']
[u'ford', u'worker', u'fear', u'job']
[u'portugues', u'head', u'european', u'commiss']
[u'freightlink', u'appoint']
[u'french', u'singer', u'sacha', u'distel', u'die']
[u'frost', u'take', u'toll', u'cane', u'crop']
[u'futur', u'ambul', u'arriv']
[u'gehrig', u'star', u'saint', u'bomber']
[u'ghan', u'stair', u'inadequ', u'tennant', u'creek', u'mayor', u'say']
[u'govt', u'consid', u'bigger', u'area', u'wild', u'bounti']
[u'govt', u'maintain', u'hope', u'shale', u'plant']
[u'govt', u'scrap', u'bankruptci', u'chang']
[u'govt', u'urg', u'fund', u'conserv', u'program']
[u'green', u'promot', u'drug', u'free', u'credenti']
[u'green', u'ground', u'reject']
[u'green', u'want', u'flood', u'bali', u'inquiri']
[u'grow', u'rais', u'home', u'invas', u'risk', u'warn', u'polic']
[u'guantanamo', u'detent', u'tribun', u'begin']
[u'gunnedah', u'shire', u'eye', u'land', u'corridor']
[u'heaven', u'nightclub', u'appeal', u'refus']
[u'put', u'hospit']
[u'hopper', u'deni', u'schoolgirl', u'claim']
[u'hospit', u'extra', u'winter', u'bed', u'remain', u'close']
[u'hotel', u'want', u'polic', u'check', u'bouncer']
[u'hous', u'fire', u'spark', u'safeti', u'warn']
[u'howard', u'offer', u'guarante', u'athlet', u'safeti']
[u'indigen', u'youth', u'graduat', u'train', u'cours']
[u'injuri', u'heartbreak', u'hope', u'mccarthi']
[u'inquiri', u'begin', u'unauthoris', u'access', u'polic']
[u'inquiri', u'rann', u'nation', u'parti', u'appoint']
[u'iron', u'knock', u'aussi', u'perfect']
[u'johnson', u'lodg', u'athen', u'appeal']
[u'jone', u'accus', u'sydney', u'dope']
[u'jone', u'accus', u'sydney', u'dope', u'report']
[u'kalgoorli', u'resid', u'face', u'small', u'rate', u'rise']
[u'unlock', u'windi', u'attack', u'lord']
[u'kingaroy', u'hop', u'facil']
[u'landhold', u'govt', u'fire', u'line', u'wild']
[u'landhold', u'warn', u'readi']
[u'lib', u'look', u'secur', u'kimberley']
[u'lonard', u'eye', u'irish', u'titl']
[u'lucki', u'escap', u'brick', u'attack']
[u'mackerel', u'tag', u'show', u'earli', u'sign', u'success']
[u'magpi', u'appeal', u'malthous', u'fine']
[u'magpi', u'meet', u'malthous', u'fin']
[u'malthous', u'satisfi', u'meet']
[u'charg', u'carri', u'scissor']
[u'clear', u'supermarket', u'murder']
[u'mandelson', u'land', u'post']
[u'remand', u'woman', u'bail', u'adelaid', u'incid']
[u'serious', u'injur', u'cafe', u'explos']
[u'mcewen', u'favourit', u'green']
[u'melbourn', u'cafe', u'open', u'follow', u'explos']
[u'melbourn', u'drug', u'courier', u'face', u'death', u'singapor']
[u'melbourn', u'weapon', u'charg', u'bail']
[u'microsoft', u'profit', u'jump']
[u'milan', u'inzaghi', u'rule', u'week']
[u'miss', u'hospit', u'patient']
[u'miss']
[u'mix', u'feel', u'reef', u'rezon', u'plan']
[u'montoya', u'predict', u'close', u'race', u'germani']
[u'aborigin', u'communiti', u'polic']
[u'famili', u'receiv', u'payment']
[u'arrest', u'baghdad', u'oper']
[u'movement', u'financi', u'market', u'limit']
[u'movi', u'mood', u'studi', u'find']
[u'question', u'dairi', u'polici']
[u'prompt', u'nation', u'parti', u'split']
[u'murder', u'accus', u'friend', u'alleg', u'victim', u'court']
[u'needl', u'program', u'face', u'cutback']
[u'dig', u'fossil', u'miner', u'museum']
[u'newspap', u'report', u'author', u'bacon']
[u'iraqi', u'kill', u'injur', u'tank', u'accid']
[u'drug', u'scandal', u'come']
[u'opposit', u'go', u'nut', u'remov', u'minist']
[u'palestinian', u'milit', u'isra', u'rocket', u'attack']
[u'partnership', u'address', u'weed', u'woe']
[u'closer', u'casino', u'ownership']
[u'philippin', u'commit', u'fight', u'terror']
[u'pie', u'rocca', u'season']
[u'pizzonia', u'blast', u'jaguar', u'william', u'comeback']
[u'wont', u'blame', u'intellig', u'failur']
[u'polic', u'continu', u'search', u'miss', u'woman']
[u'polic', u'hunt', u'attack', u'teenag']
[u'polic', u'woman', u'river']
[u'polic', u'probe', u'cattl', u'duf', u'claim']
[u'polic', u'charg', u'drug', u'raid']
[u'politician', u'urg', u'help', u'save', u'bridg']
[u'poor', u'weather', u'affect', u'miss', u'sailor', u'search']
[u'portal', u'research', u'win', u'innov', u'award']
[u'posti', u'shape', u'bikki', u'upset', u'postal', u'worker']
[u'powel', u'criticis', u'manila', u'reward', u'milit']
[u'premier', u'launch', u'symmon', u'plain', u'improv']
[u'prison', u'group', u'welcom', u'plan', u'court', u'secur']
[u'probe', u'look', u'nation', u'park', u'timber', u'cut']
[u'push', u'time', u'prospector']
[u'public', u'ask', u'roadsid', u'attract', u'idea']
[u'public', u'look', u'pool', u'report']
[u'public', u'urg', u'report', u'bug']
[u'push', u'lake', u'condah', u'revamp']
[u'push', u'lower', u'central', u'greenhous']
[u'govt', u'play', u'land', u'court', u'decis']
[u'race', u'attack', u'defend', u'refus', u'bail']
[u'racq', u'hit', u'fuel', u'standard']
[u'radio', u'announc', u'fin', u'bulli']
[u'rate', u'rise', u'belyando', u'resid']
[u'reid', u'exit', u'indianapoli', u'event']
[u'remot', u'region', u'volunt', u'ambul', u'team']
[u'report', u'recommend', u'poki', u'restrict']
[u'research', u'centr', u'fund', u'boost']
[u'rivaldo', u'complet', u'olympiako']
[u'roadsid', u'bomb', u'kill', u'soldier']
[u'robert', u'deni', u'communic', u'breakdown']
[u'roddick', u'run', u'indianapoli']
[u'rossi', u'aim', u'check', u'biaggi', u'charg']
[u'rotari', u'ask', u'polic', u'probe', u'abus', u'claim']
[u'sadr', u'chastis', u'milit', u'behead', u'south', u'korean']
[u'school', u'futur', u'open', u'adelaid']
[u'schumach', u'reunit', u'lose', u'lucki', u'charm']
[u'seafood', u'industri', u'teach', u'rais', u'industri']
[u'search', u'crash', u'driver']
[u'search', u'miss', u'tourist']
[u'search', u'underway', u'miss', u'beach']
[u'shire', u'play', u'chemic', u'threat']
[u'snag', u'hit', u'interst', u'trade', u'citrus']
[u'snowi', u'mountain', u'servic']
[u'strong', u'expect', u'countri', u'club', u'plan']
[u'sudanes', u'critic', u'genocid', u'resolut']
[u'support', u'councillor', u'rise']
[u'support', u'power', u'station', u'probe']
[u'surfer', u'accus', u'murder', u'refus', u'bail']
[u'surgeri', u'boost', u'townsvill', u'hospit']
[u'survey', u'highlight', u'grow', u'youth', u'debt']
[u'symond', u'home', u'achill', u'treatment']
[u'talli', u'bronco']
[u'tap', u'reveal', u'fourth', u'sept', u'flight', u'final', u'moment']
[u'forc', u'defend', u'prison', u'polici']
[u'tasmania', u'dentist', u'shortag']
[u'teen', u'shoot', u'charg', u'bail']
[u'telecom', u'energi', u'sector', u'need', u'competit', u'accc']
[u'terror', u'agenda', u'local', u'govern']
[u'tiger', u'readi', u'bounc']
[u'tourist', u'die', u'lasset', u'highway', u'crash']
[u'track', u'athlet', u'clear', u'dope', u'offenc']
[u'track', u'athlet', u'clear', u'drug', u'offenc']
[u'tran', u'tasman', u'maritim', u'boundari', u'deal', u'complet']
[u'trauma', u'research', u'institut', u'open', u'melbourn']
[u'treasuri', u'take', u'hand', u'approach', u'naurus', u'problem']
[u'trucker', u'quit', u'rat']
[u'turkey', u'train', u'derail', u'death', u'toll', u'revis']
[u'consortium', u'offer', u'yuko', u'lifelin']
[u'professor', u'criticis', u'environ', u'report']
[u'declar', u'genocid', u'sudan']
[u'defenc', u'await', u'bush', u'approv']
[u'threaten', u'sudan', u'sanction']
[u'vail', u'tout', u'pend', u'trade', u'breakthrough']
[u'govt', u'monitor', u'ambul', u'union', u'move']
[u'resort', u'creditor', u'fear', u'theyll']
[u'video', u'boost', u'kempsey', u'jail']
[u'virenqu', u'seal', u'king', u'mountain', u'record']
[u'voter', u'poll', u'greenough', u'shire']
[u'govt', u'prepar', u'cook', u'review', u'respons']
[u'william', u'sister', u'advanc']
[u'wiranto', u'legal', u'action', u'elect', u'count']
[u'worker', u'know', u'expos', u'asbesto', u'union']
[u'youth', u'face', u'manslaught', u'trial']
[u'youth', u'support', u'servic', u'worker', u'ralli']
[u'bentley', u'fetch', u'million']
[u'age', u'care', u'sector', u'call', u'cash', u'inject']
[u'alcohol', u'plan', u'critic', u'bleed', u'heart', u'rubbish']
[u'black', u'snatch', u'dramat']
[u'offer', u'overdos', u'reassur']
[u'ambiti', u'middlesbrough', u'sign', u'parlour']
[u'armstrong', u'settl', u'score', u'simeoni']
[u'armstrong', u'undecid', u'tour', u'futur']
[u'australian', u'head', u'nauruan', u'treasuri']
[u'baird', u'take', u'maiden', u'pole']
[u'baird', u'start', u'pole', u'victoria']
[u'bali', u'convict', u'stand', u'indonesian', u'judg']
[u'beatti', u'put', u'power', u'firm', u'notic']
[u'beckham', u'restat', u'real', u'commit']
[u'keeper', u'return', u'boat', u'calm', u'swarm']
[u'lade', u'suicid', u'virus', u'threaten', u'expert']
[u'brazil', u'woman', u'turn', u'gun', u'amnesti']
[u'bridg', u'reunit', u'divid', u'muslim', u'croat', u'citi']
[u'bronco', u'eagl']
[u'burswood', u'takeov', u'win', u'board', u'approv']
[u'button', u'top', u'final', u'practic', u'hockenheim']
[u'cahil', u'radzinski', u'goodison', u'park']
[u'capriati', u'withdraw', u'carlsbad', u'event']
[u'carraz', u'reach', u'indi', u'semi', u'final']
[u'cattl', u'send', u'east', u'timor', u'dairi', u'herd']
[u'chimp', u'studi', u'yawn']
[u'chisholm', u'shop', u'complex', u'draw', u'strong']
[u'cool', u'period', u'sale', u'complaint']
[u'council', u'ban', u'goldfish', u'bowl']
[u'council', u'real', u'role', u'prevent', u'alcohol', u'abus']
[u'lead', u'swift', u'victori']
[u'darfur', u'death', u'toll']
[u'dont', u'kidnapp', u'iraq', u'urg', u'egypt']
[u'downer', u'consult', u'indonesia', u'bali', u'rule']
[u'slip', u'nasdaq', u'fall']
[u'edward', u'compet', u'athen', u'iaaf']
[u'edward', u'complet', u'olymp', u'iaaf']
[u'egyptian', u'diplomat', u'hold', u'hostag', u'iraq']
[u'foreign', u'polici', u'chief', u'tell', u'sudan', u'disarm']
[u'explos', u'leav', u'iraq', u'pipelin', u'ablaz']
[u'expo', u'particip', u'tell', u'invent', u'famili']
[u'fair', u'trade', u'inspect', u'target', u'worst', u'offend']
[u'forbid', u'love', u'author', u'accus', u'fraud']
[u'mexican', u'presid', u'face', u'genocid', u'charg']
[u'franco', u'fire', u'milwauke', u'lead']
[u'frawley', u'snatch', u'raider']
[u'free', u'trade', u'decis', u'hing', u'assur', u'latham']
[u'freo', u'final', u'home']
[u'gambl', u'report', u'find', u'welcom']
[u'gile', u'tripl', u'strike', u'hurt', u'windi']
[u'govern', u'thin', u'veil', u'propaganda', u'smyth']
[u'govt', u'urg', u'test', u'waterway']
[u'gunmen', u'gaza', u'governor', u'offic']
[u'hayden', u'set', u'donington', u'pace']
[u'hollywood', u'mourn', u'death', u'star', u'trek', u'music', u'compos']
[u'homeopathi', u'trial', u'aim', u'drug', u'effect']
[u'hospit', u'record', u'move', u'claim', u'employe']
[u'howard', u'pledg', u'pursu', u'bali', u'convict']
[u'improv', u'figur', u'offer', u'firework', u'night', u'repriev']
[u'internet', u'releas', u'thwart', u'album', u'thiev']
[u'iraq', u'construct', u'group', u'chief', u'seiz', u'baghdad']
[u'jayasuriya', u'star', u'lankan', u'crush', u'bangladesh']
[u'jenkin', u'charg', u'desert']
[u'jone', u'seek', u'charg', u'husband']
[u'kakadus', u'tradit', u'owner', u'criticis', u'howard']
[u'kroger', u'rule', u'stand', u'goldstein']
[u'lampard', u'stay', u'stamford', u'bridg']
[u'latham', u'admit', u'cannabi']
[u'latham', u'pledg', u'playgroup']
[u'lib', u'seek', u'royal', u'commiss', u'gangland', u'kill']
[u'lion', u'destroy', u'crow']
[u'lonard', u'shoot', u'clear', u'ireland']
[u'lose', u'year', u'emerg', u'kimberley']
[u'die', u'injur', u'arthurvill', u'shoot']
[u'mayor', u'call', u'garbag', u'disput', u'resolut']
[u'mersey', u'staff', u'shortag', u'forc', u'surgeri', u'shutdown']
[u'microsoft', u'offer', u'job']
[u'minist', u'tighten', u'prison', u'activ', u'access']
[u'natur', u'reserv', u'protect', u'earless', u'dragon']
[u'bush', u'record', u'fail', u'dispel', u'awol', u'charg']
[u'proof', u'allawi', u'execut', u'claim', u'report']
[u'norfolk', u'prepar', u'farewel', u'murder', u'minist']
[u'obikwelu', u'spoil', u'green', u'birthday', u'parti']
[u'orford', u'seal', u'gasp', u'storm']
[u'patriot', u'miner', u'surrend', u'mous', u'size', u'diamond']
[u'pie', u'outclass', u'bulldog']
[u'pittman', u'fourth', u'pari']
[u'plan', u'intern', u'space', u'station']
[u'poki', u'mark', u'mileston']
[u'polic', u'wit', u'prahran', u'shoot']
[u'polic', u'station', u'raze', u'gaza', u'unrest', u'continu']
[u'powel', u'tour', u'middl', u'east', u'peac', u'push']
[u'premier', u'challeng', u'debat', u'bacon', u'legaci']
[u'prison', u'design', u'start', u'criminologist', u'say']
[u'prison', u'site', u'advic', u'confus', u'queanbeyan', u'resid']
[u'reef', u'zone', u'forc', u'price', u'seafood']
[u'roddick', u'cruis', u'quarter', u'final', u'hrbati']
[u'ronaldo', u'thrill', u'olymp']
[u'roo', u'surg']
[u'rooster', u'surviv', u'rabbitoh', u'scare']
[u'schu', u'fastest', u'twice', u'halt', u'practic', u'session']
[u'schumach', u'lead', u'german', u'practic']
[u'slate', u'onlin', u'magazin', u'sale']
[u'solomon', u'mission', u'coordin']
[u'south', u'east', u'asia', u'win', u'malaysian']
[u'success', u'bacon', u'credit', u'gunn', u'chief']
[u'sudanes', u'rebel', u'agre', u'talk']
[u'tiwi', u'ferri', u'reduc', u'travel', u'cost']
[u'tour', u'reckon', u'roger']
[u'twin', u'push', u'bush', u'elect', u'campaign', u'onlin', u'chat']
[u'overnight', u'smash']
[u'muslim', u'cleric', u'hat', u'court', u'tell']
[u'underwat', u'camera', u'assist', u'whale', u'rescu']
[u'state', u'depart', u'hold', u'sudan', u'genocid']
[u'target', u'milit', u'raid', u'iraqi', u'citi']
[u'troop', u'leav', u'seoul']
[u'updat', u'alleg', u'desert', u'japan']
[u'voter', u'welcom', u'nat', u'labor', u'allianc', u'maywald']
[u'washington', u'freez', u'asset', u'liberian', u'presid']
[u'waterway', u'rule', u'hamper', u'locust', u'prevent', u'farmer']
[u'webb', u'miss', u'british', u'open']
[u'william', u'sister', u'closer', u'showdown']
[u'woman', u'escap', u'abductor']
[u'worker', u'train', u'treat', u'offend']
[u'workplac', u'relat', u'overhaul', u'costello', u'agenda']
[u'adopt', u'regist', u'reopen']
[u'advis', u'court', u'rule', u'wake', u'bank']
[u'worker', u'return', u'chadian', u'refuge', u'camp']
[u'allawi', u'shore', u'support', u'iraq']
[u'alleg', u'ecstasi', u'smuggler', u'remand', u'custodi']
[u'arafat', u'accept', u'quri', u'reform']
[u'armstrong', u'win', u'tour', u'time', u'trial']
[u'athlet', u'unveil', u'olymp', u'swimsuit']
[u'aussi', u'creat', u'histori', u'hole', u'doubl']
[u'australia', u'consid', u'troop', u'darfur']
[u'australia', u'stand', u'terrorist', u'downer']
[u'belconnen', u'age', u'care', u'facil', u'provid', u'bed']
[u'british', u'govt', u'crack', u'anim', u'right']
[u'busi', u'group', u'call', u'airlin', u'subsidi']
[u'cat', u'stay', u'fifth', u'down', u'blue']
[u'charg', u'mexican', u'presid', u'throw']
[u'consum', u'need', u'common', u'voic', u'food', u'choic']
[u'controversi', u'mcconvill']
[u'coulthard', u'role', u'mclaren', u'denni']
[u'crawley', u'toast', u'tripl']
[u'disrupt', u'passeng', u'delay', u'virgin', u'flight']
[u'dividend', u'polici', u'blame', u'power']
[u'door', u'knock', u'underway', u'sexual', u'assault']
[u'downer', u'back', u'drug', u'courier', u'clemenc']
[u'downer', u'play', u'polit', u'timor', u'talk']
[u'drink', u'doolan', u'master']
[u'eadi', u'fli', u'europ']
[u'kill', u'attack', u'tamil', u'safe', u'hous']
[u'electr', u'network', u'report', u'vindic', u'union']
[u'england', u'despit', u'chanderpaul']
[u'enthusiasm', u'hold', u'drought', u'cut', u'tree', u'plant']
[u'explos', u'kill', u'mauritius', u'resort', u'polic']
[u'famili', u'payment', u'criticis', u'boost', u'gambl']
[u'finish', u'highlight', u'say', u'armstrong']
[u'flight', u'coober', u'pedi', u'continu']
[u'flood', u'victim', u'benefit', u'mysteri', u'lotteri', u'winner']
[u'liverpool', u'mayor', u'deni', u'improp', u'conduct']
[u'frustrat', u'ralf', u'eye', u'hungari', u'start']
[u'fund', u'grant', u'maningrida', u'band', u'profession']
[u'good', u'chanc', u'aust', u'troop', u'sudan']
[u'govt', u'plan', u'prison', u'botch']
[u'govt', u'restrict', u'prison', u'condemn']
[u'govt', u'fail', u'homeless', u'acoss', u'say']
[u'govt', u'unsway', u'qaeda', u'threat']
[u'green', u'withhold', u'prefer', u'labor', u'back']
[u'gun', u'play', u'role', u'solomon', u'peac', u'memori']
[u'health', u'minist', u'admit', u'tri', u'didnt', u'inhal']
[u'heidfeld', u'hop', u'william', u'opportun']
[u'hospit', u'need', u'recruit', u'control', u'hid']
[u'pregnant', u'harri', u'potter', u'wont', u'late', u'rowl']
[u'injur', u'lion', u'face', u'scan']
[u'investor', u'demonstr', u'cooma', u'confid']
[u'iranian', u'agent', u'clear', u'kill', u'photograph']
[u'iraq', u'hostag', u'crisi', u'spiral']
[u'iraq', u'syria', u'cooper', u'border', u'secur']
[u'isra', u'minist', u'warn', u'attack', u'jewish']
[u'isra', u'missil', u'attack', u'hit', u'gaza', u'milit', u'home']
[u'kangaroo', u'cull', u'shooter', u'protest']
[u'kennedi', u'distraught', u'cowboy', u'pinch', u'thriller']
[u'kezman', u'strike', u'twice', u'lead', u'chelsea', u'past', u'celtic']
[u'late', u'tri', u'secur', u'dragon', u'triumph']
[u'latham', u'comment', u'forc', u'timor', u'talk', u'halt']
[u'legal', u'ident', u'cast', u'eagl', u'transport']
[u'literaci', u'improv', u'aborigin', u'benefit']
[u'lonard', u'maintain', u'irish', u'open', u'lead']
[u'risk', u'water', u'contamin']
[u'luca', u'acknowledg', u'pay', u'suspens', u'concern']
[u'mcewen', u'pari', u'battl']
[u'motorist', u'help', u'road', u'safer']
[u'murder', u'worker', u'famili', u'make', u'plea', u'attack']
[u'neitz', u'target', u'demon', u'beat', u'tiger']
[u'newspap', u'raid', u'hong', u'kong', u'fraud', u'probe']
[u'crisi', u'english', u'rugbi', u'insist', u'cohen']
[u'north', u'coast', u'popul', u'continu', u'grow']
[u'pakistani', u'fear', u'kidnap', u'iraq']
[u'review', u'rais', u'drug', u'price']
[u'poki', u'creat', u'gambl', u'addict', u'increas', u'say']
[u'polic', u'appeal', u'help', u'person']
[u'polic', u'happi', u'stay', u'union']
[u'polic', u'investig', u'suspici']
[u'polic', u'offic', u'attack', u'capsicum', u'spray']
[u'polic', u'search', u'miss', u'canoeist']
[u'raider', u'deep', u'sink', u'warrior']
[u'rail', u'secur', u'upgrad', u'put', u'vandal', u'notic']
[u'rebel', u'club', u'hous', u'propos', u'overrul']
[u'recount', u'confirm', u'yudhoyono', u'poll']
[u'rescu', u'prompt', u'tourist', u'safeti', u'warn']
[u'road', u'upgrad', u'save', u'live', u'racv']
[u'roddick', u'ralli', u'reach', u'indi', u'final']
[u'rossi', u'pole', u'british']
[u'ruin', u'year', u'hous', u'bulgaria']
[u'russia', u'protest', u'closur', u'belarus']
[u'satellit', u'survey', u'wash', u'away', u'wave', u'theori']
[u'schumach', u'snare', u'german', u'pole']
[u'senat', u'seek', u'clarif', u'lade', u'charter']
[u'serena', u'davenport', u'showdown']
[u'socceroo', u'copa', u'america', u'berth']
[u'stop', u'work', u'meet', u'disrupt', u'perth', u'train', u'servic']
[u'stranger', u'danger', u'program', u'overhaul']
[u'sydney', u'weekend', u'train', u'servic', u'smooth']
[u'health', u'struggl', u'age', u'doctor']
[u'thai', u'bird', u'suspect', u'rule']
[u'arrest', u'turkish', u'train', u'accid']
[u'treati', u'formalis', u'australia', u'ocean', u'border']
[u'tredrea', u'extend', u'port', u'streak']
[u'trio', u'share', u'milwauke', u'lead']
[u'trulli', u'leav', u'renault']
[u'charg', u'arthurvill', u'murder']
[u'overnight', u'smash']
[u'surviv', u'sunshin', u'coast', u'plane', u'crash']
[u'urg', u'citizen', u'alert', u'alarm']
[u'union', u'poll', u'pressur', u'labor', u'reject']
[u'militari', u'aid', u'philippin', u'anti', u'terror', u'push']
[u'report', u'prison', u'abus', u'whitewash']
[u'research', u'develop', u'breast', u'cancer', u'treatment']
[u'polic', u'open', u'murder', u'case']
[u'volandri', u'end', u'moya', u'hop', u'fifth', u'croatian', u'titl']
[u'volunt', u'hand', u'dirti', u'nation', u'tree']
[u'watcher', u'report', u'record', u'whale', u'season']
[u'woman', u'prais', u'kimberley', u'surviv', u'effort']
[u'women', u'urg', u'regular', u'smear']
[u'aborigin', u'paint', u'fail', u'sell']
[u'call', u'polic', u'protect', u'kangaroo', u'cull']
[u'action', u'call', u'inner', u'citi', u'rail', u'line']
[u'acton', u'quit', u'agforc']
[u'age', u'care', u'place', u'predict', u'quick']
[u'age', u'carer', u'urg', u'ignor', u'euthanasia', u'group']
[u'airlin', u'plan', u'alic', u'tennant', u'creek', u'servic']
[u'aker', u'book', u'video', u'evid']
[u'ambul', u'worker', u'refus']
[u'anti', u'terror', u'law', u'dump', u'bali', u'case']
[u'help', u'school', u'studi', u'star']
[u'armstrong', u'doesnt', u'come', u'close', u'cannib']
[u'armstrong', u'make', u'tour', u'histori', u'mcewen', u'win', u'green']
[u'armstrong', u'pedal', u'fame', u'fortun']
[u'armstrong', u'rediscov', u'cycl']
[u'steadi', u'despit', u'bank', u'gain']
[u'auction', u'drive', u'home', u'guyra', u'golf', u'club']
[u'aust', u'publish', u'pull', u'controversi', u'memoir']
[u'australian', u'appeal', u'singapor', u'death', u'sentenc']
[u'australian', u'appeal', u'singapor', u'death', u'sentenc']
[u'australian', u'unwil', u'deal', u'terrorist']
[u'author', u'probe', u'forc', u'jetstar', u'land']
[u'bali', u'victim', u'father', u'downer']
[u'beatti', u'energex', u'clash', u'grid']
[u'turnout', u'digger', u'dealer']
[u'blackburn', u'disqualifi', u'athen', u'lead']
[u'blast', u'hit', u'indonesian', u'elector', u'commiss']
[u'board', u'hostel', u'close', u'door']
[u'brack', u'back', u'travel', u'allow', u'rule']
[u'brazil', u'claim', u'copa', u'america', u'penalti', u'shootout']
[u'brigadi', u'find', u'philippin', u'withdraw', u'unfortun']
[u'broadband', u'rollout', u'town']
[u'bulldog', u'sack', u'club', u'great', u'criticis', u'rhode']
[u'bulldog', u'sack', u'club', u'great', u'criticis', u'rohd']
[u'bushwalk', u'survivor', u'tough', u'bird']
[u'busi', u'ident', u'die']
[u'cabin', u'smoke', u'forc', u'jetstar', u'emerg', u'land']
[u'coober', u'pedi', u'link']
[u'differ', u'plan', u'becton', u'develop']
[u'shark', u'net', u'rethink']
[u'urgent', u'action', u'ring', u'road']
[u'water', u'review', u'ensur', u'region', u'price']
[u'cana', u'win', u'croatia', u'open']
[u'canegrow', u'look', u'sugar', u'reform', u'fund']
[u'caravan', u'crush']
[u'caravan', u'park', u'plan', u'take', u'shape']
[u'bomb', u'explod', u'baghdad']
[u'bomb', u'baghdad', u'mosul']
[u'semi', u'road', u'crash', u'claim', u'life']
[u'chan', u'face', u'judiciari']
[u'charg', u'recommend', u'oasi', u'failur']
[u'christma', u'casino', u'licenc']
[u'collin', u'predict', u'drug', u'free', u'olymp', u'final']
[u'columbian', u'author', u'seiz', u'huge', u'cocain', u'haul']
[u'cop', u'round', u'wander', u'cattl']
[u'costello', u'visit', u'gippsland']
[u'council', u'move', u'closer', u'pass', u'bendigo', u'budget']
[u'court', u'consid', u'johnson', u'appeal']
[u'crow', u'fan', u'feel', u'player', u'pain', u'craig']
[u'darwin', u'stab', u'self', u'inflict']
[u'davenport', u'dump', u'serena', u'titl']
[u'demand', u'grow', u'central', u'welfar', u'servic']
[u'demon', u'finish']
[u'develop', u'flag', u'public', u'input', u'golf', u'resort']
[u'discoveri', u'rewrit', u'chines', u'vehicl', u'histori']
[u'disgrac', u'repay', u'travel', u'allow']
[u'doubt', u'cast', u'footbal', u'leagu', u'futur']
[u'drought', u'assist', u'farmer']
[u'embattl', u'winemak', u'lose', u'home']
[u'seek', u'coal', u'fire', u'power', u'station']
[u'environ', u'minist', u'hear', u'fisher', u'rezon', u'fear']
[u'ethicist', u'confront', u'protest', u'adelaid']
[u'maintain', u'sanction', u'threat', u'sudan']
[u'explos', u'hit', u'indonesian', u'elector', u'commiss']
[u'famili', u'daycar', u'centr', u'open', u'door']
[u'famili', u'plan', u'action', u'journalist', u'murder', u'iran']
[u'govt', u'urg', u'help', u'fund', u'nickel', u'project']
[u'insurg', u'kill', u'iraq', u'shootout']
[u'film', u'financ', u'revamp', u'rejuven', u'industri']
[u'firm', u'rais', u'hop', u'hostag', u'releas', u'iraq']
[u'coach', u'testifi', u'hopper', u'trial']
[u'judg', u'appoint', u'adelaid', u'head']
[u'offic', u'stand', u'trial', u'drug']
[u'fourteen', u'kill', u'turkish', u'train', u'hit', u'minibus']
[u'franc', u'help', u'polic', u'australian', u'water']
[u'franco', u'win', u'milwauke', u'open']
[u'fund', u'clarenc', u'valley', u'plan']
[u'health', u'admin', u'shake', u'predict']
[u'girl', u'sexual', u'assault']
[u'gosford', u'runner', u'put', u'marathon', u'effort']
[u'govt', u'rejig', u'centrelink', u'debt']
[u'green', u'claim', u'trade', u'agreement', u'water', u'risk']
[u'green', u'seek', u'payout', u'wheat', u'farmer']
[u'group', u'flag', u'drag', u'snag']
[u'group', u'highlight', u'small', u'council', u'financi', u'woe']
[u'guard', u'refus', u'interview', u'shoot']
[u'hard', u'time', u'chariti']
[u'hawk', u'tiger', u'need', u'clean', u'break', u'say', u'matthew']
[u'healthi', u'respons', u'survey']
[u'helicopt', u'join', u'search', u'miss', u'paddler']
[u'howard', u'leav', u'green', u'protest', u'wake']
[u'howard', u'stay', u'despit', u'reach', u'retir']
[u'illeg', u'industri', u'prosper', u'brothel', u'owner']
[u'injur', u'charman', u'miss', u'match']
[u'iraq', u'hostag', u'surviv', u'deadlin']
[u'isra', u'court', u'refus', u'lift', u'vanunu', u'travel']
[u'isra', u'form', u'human', u'chain', u'oppos', u'gaza', u'plan']
[u'johnson', u'lose', u'olymp', u'appeal']
[u'johnson', u'appeal', u'dismiss']
[u'junior', u'javelin', u'star', u'take', u'world', u'bronz', u'medal']
[u'knife', u'paper', u'bind', u'emir', u'plane']
[u'labor', u'promis', u'faster', u'access', u'drought', u'assist']
[u'leaflet', u'prepar', u'briton', u'terror', u'attack']
[u'lion', u'wait', u'charman', u'diagnosi']
[u'mackay', u'win', u'rugbi', u'leagu', u'foley', u'shield']
[u'malacca', u'strait', u'piraci', u'rise']
[u'malik', u'power', u'pakistan', u'victori', u'india']
[u'accus', u'break', u'enter', u'face', u'court']
[u'charg', u'fatal', u'mcdonald', u'shoot']
[u'jail', u'bash', u'evil', u'girlfriend', u'death']
[u'jail', u'truck', u'firm', u'fraud']
[u'shoot', u'dead', u'alleg', u'hold']
[u'shoot', u'dead', u'sydney']
[u'court', u'fake', u'death', u'claim']
[u'marathon', u'massu', u'win', u'kitzbuhel']
[u'mcewen', u'ogradi', u'leader', u'pack']
[u'meet', u'back', u'countri', u'club', u'revamp']
[u'milit', u'kill', u'west', u'bank', u'battl']
[u'million', u'strand', u'bangladesh', u'floodwat']
[u'minist', u'defend', u'retail', u'outlet', u'rezon', u'decis']
[u'minist', u'seek', u'talk', u'wast', u'store', u'union', u'ban']
[u'miss', u'sailor', u'search', u'call']
[u'chang', u'possibl', u'health', u'administr']
[u'oppos', u'ningaloo', u'reef', u'heritag', u'list']
[u'want', u'polic', u'boost', u'tackl', u'hoon']
[u'murder', u'trial', u'hear', u'life', u'insur', u'evid']
[u'nativ', u'titl', u'tribun', u'make', u'tamworth', u'region']
[u'newcastl', u'clash', u'see', u'cowboy', u'join']
[u'rail', u'timet', u'work']
[u'decis', u'bathhous']
[u'stand', u'refere', u'amid', u'grow', u'critic']
[u'defend', u'olymp', u'site', u'subsidi']
[u'nurs', u'home', u'longer', u'build']
[u'olyroo', u'track', u'athen', u'campaign']
[u'oneil', u'say', u'australia', u'look', u'copa', u'spot']
[u'open', u'interrog']
[u'oppn', u'put', u'dentist', u'recruit', u'spotlight']
[u'oppn', u'question', u'water', u'charg']
[u'overthrow', u'fijian', u'want']
[u'pair', u'dubbo', u'court', u'murder', u'charg']
[u'pair', u'uninjur', u'plane', u'crash']
[u'paper', u'maker', u'smell', u'money', u'eleph', u'dung']
[u'pitcairn', u'abus', u'accus', u'fight', u'british', u'claim']
[u'plan', u'copper', u'product', u'move', u'ahead']
[u'accus', u'labor', u'play', u'polit', u'trade', u'deal']
[u'polic', u'cover', u'prompt', u'commiss', u'call']
[u'polic', u'crack', u'drink', u'driver']
[u'polic', u'investig', u'darwin', u'stab']
[u'polic', u'tourist', u'road', u'crash', u'victim']
[u'polic', u'probe', u'pedestrian', u'death']
[u'polic', u'suspect', u'mistak', u'mother', u'murder']
[u'politician', u'highlight', u'domest', u'violenc']
[u'portug', u'reject', u'chelsea', u'request', u'spare', u'tiago']
[u'premier', u'hear', u'hospit', u'concern']
[u'probe', u'launch', u'suspici', u'school', u'blaze']
[u'protest', u'continu', u'fight', u'cull']
[u'public', u'offer', u'region', u'ambul', u'assur']
[u'public', u'spar', u'water', u'restrict']
[u'retail', u'trade', u'rise']
[u'electr', u'shake']
[u'rain', u'help', u'lift', u'grain', u'farmer', u'spirit']
[u'rain', u'need', u'dam']
[u'ratepay', u'plan', u'popular', u'elect', u'mayor']
[u'relay', u'team', u'expect', u'record', u'swim', u'defend', u'gold']
[u'renmark', u'host', u'quandong', u'gather']
[u'resid', u'defend', u'bridg', u'petit']
[u'resid', u'face', u'rate', u'rise']
[u'resid', u'want', u'green', u'light', u'traffic', u'safeti', u'boost']
[u'revamp', u'plan', u'coast', u'power', u'suppli']
[u'risdon', u'inmat', u'lock', u'disturb']
[u'roadhous', u'see', u'tourism', u'push']
[u'roddick', u'retain', u'indi', u'crown']
[u'rossi', u'pull', u'clear', u'british', u'victori']
[u'rover', u'thoma', u'paint', u'tip', u'break']
[u'rumford', u'win', u'irish', u'open', u'lonard', u'fourth']
[u'rural', u'australia', u'log']
[u'rural', u'paramed', u'intensifi', u'industri', u'woe']
[u'russian', u'isinbayeva', u'set', u'pole', u'vault', u'world', u'record']
[u'russia', u'great', u'gymnast', u'declin']
[u'compromis', u'yellabinna', u'reserv', u'plan']
[u'nation', u'parti', u'leader', u'deni', u'split']
[u'school', u'offer', u'counsel', u'fatal', u'crash']
[u'schu', u'expect', u'beat', u'season']
[u'schumach', u'equal', u'record', u'germani']
[u'schwab', u'departur', u'immedi']
[u'schwab', u'earli', u'exit']
[u'schwab', u'season']
[u'search', u'begin', u'armstrong', u'successor']
[u'search', u'miss', u'canoeist', u'suspend']
[u'search', u'launch', u'suspect', u'drown', u'victim']
[u'secur', u'tight', u'democrat', u'convent']
[u'vaccin']
[u'sharon', u'defiant', u'gaza', u'pullout']
[u'shire', u'face', u'build', u'boom']
[u'shire', u'face', u'underwat', u'observatori', u'blowout']
[u'spam', u'drain', u'small', u'busi']
[u'springbok', u'concern', u'gregan', u'specul']
[u'staff', u'bank', u'custom', u'servic']
[u'stage', u'winner', u'tour', u'franc']
[u'sudanes', u'milit', u'warn', u'crusad', u'armi']
[u'sudanes', u'refuge', u'flood', u'chad']
[u'sunshin', u'coast', u'retain', u'cycl', u'championship']
[u'surgic', u'chang', u'creat', u'problem']
[u'suspect', u'rebel', u'kill', u'kashmir']
[u'task', u'forc', u'bolster', u'job']
[u'push', u'realist', u'jetstar', u'schedul']
[u'teen', u'jail', u'attempt', u'rape', u'teacher']
[u'tiger', u'board', u'face', u'possibl', u'challeng']
[u'tiger', u'board', u'face', u'possibl', u'challeng']
[u'time', u'run', u'farm', u'fellowship']
[u'tour', u'lanc', u'fact']
[u'townsvill', u'host', u'agforc', u'confer']
[u'train', u'timet', u'necessarili', u'time']
[u'tree', u'clear', u'fine', u'send', u'warn']
[u'trevor', u'take', u'biggest', u'prize']
[u'tuna', u'tast', u'underway', u'port', u'lincoln']
[u'twin', u'vaughan', u'put', u'england']
[u'secur', u'snowi', u'shire', u'seat']
[u'museum', u'arm', u'grab']
[u'underus', u'halfway', u'hous', u'close']
[u'unlaw', u'shoot', u'charg', u'policeman']
[u'militari', u'investig', u'botch', u'afghan', u'raid']
[u'remind', u'pedestrian', u'road', u'risk']
[u'timber', u'get', u'fund', u'grant']
[u'weak', u'dollar', u'blame', u'wholesal', u'inflat', u'hike']
[u'wenger', u'dismiss', u'rumour', u'vieira']
[u'wide', u'secur', u'age', u'care', u'place']
[u'woodsid', u'want', u'timor', u'deal', u'year']
[u'need', u'riddoch', u'highway', u'work']
[u'flee', u'indonesian', u'volcano', u'erupt']
[u'french', u'guantanamo', u'detaine', u'repatri', u'report']
[u'abbott', u'fast', u'track', u'drug', u'list']
[u'aborigin', u'focus', u'natur', u'resourc', u'manag']
[u'activist', u'confid', u'ban', u'stop', u'wast', u'plan']
[u'afghan', u'hospit', u'collaps', u'kill', u'injur']
[u'fin', u'ugli', u'behaviour']
[u'agil', u'agassi', u'aveng', u'loss', u'haa']
[u'aker', u'clear', u'strike', u'charg']
[u'aker', u'appear', u'video', u'link']
[u'ambo', u'disput', u'hurt', u'goulburn', u'valley']
[u'ambul', u'disput', u'put', u'live', u'risk', u'doctor']
[u'america', u'holder', u'sack', u'win', u'skipper']
[u'annan', u'african', u'leader', u'hold', u'sudan', u'talk']
[u'apprenticeship', u'program', u'shame', u'union']
[u'arafat', u'secur', u'power', u'offici']
[u'archer', u'refere', u'despit', u'critic']
[u'arroyo', u'ask', u'answer', u'fraud', u'charg']
[u'australian', u'lead', u'sudan', u'fundrais', u'effort']
[u'author', u'deni', u'fabric', u'forbid', u'love']
[u'bali', u'bomber', u'execut', u'proceed']
[u'beatti', u'reject', u'surfer', u'secess']
[u'get', u'clear', u'grafton', u'tare', u'servic']
[u'bluescop', u'steel', u'fin', u'toxic', u'leak']
[u'bomb', u'messag', u'hoax', u'polic']
[u'bomb', u'threat', u'forc', u'flight', u'sydney']
[u'bosnian', u'mass', u'grave', u'reveal', u'remain', u'muslim']
[u'bulgaria', u'repatri', u'bodi', u'execut', u'hostag']
[u'butcher', u'miss', u'second', u'test']
[u'butler', u'receiv', u'rise', u'star']
[u'butt', u'pois', u'join', u'newcastl']
[u'detent', u'centr', u'hand']
[u'drought', u'polici', u'free', u'polit']
[u'icac', u'probe', u'report', u'leak']
[u'campaign', u'aim', u'land', u'hand']
[u'canberra', u'victim', u'seek', u'counsel']
[u'canyon', u'tragedi', u'famili', u'maintain', u'insur']
[u'centro', u'merger', u'boost']
[u'citrus', u'firm', u'unfaz', u'delay']
[u'cityrail', u'sick', u'leav', u'level', u'extraordinari', u'costa']
[u'civic', u'rejuven', u'project', u'underway']
[u'clinton', u'savag', u'wealth', u'power', u'parti']
[u'coast', u'cruis', u'ship', u'termin', u'plan', u'continu']
[u'code', u'cut', u'financi', u'advis', u'soft', u'dollar', u'payment']
[u'communiti', u'share', u'econom', u'develop', u'idea']
[u'communiti', u'urg', u'comment', u'health', u'merger']
[u'competitor', u'pump', u'volum', u'stereo', u'sound']
[u'convict', u'crimin', u'pois', u'return', u'govern']
[u'coron', u'rule', u'foul', u'play', u'itiner', u'death']
[u'council', u'put', u'brake', u'airport', u'drag', u'plan']
[u'council', u'campaign', u'campus']
[u'court', u'consid', u'philippin', u'vote', u'rig', u'claim']
[u'court', u'uphold', u'convict', u'busi', u'partner']
[u'court', u'void', u'franc', u'marriag']
[u'crouch', u'unfaz', u'past', u'aker', u'critic']
[u'debat', u'continu', u'level', u'cross', u'safeti']
[u'democrat', u'seek', u'region', u'job', u'plan']
[u'downer', u'unmov', u'spanish', u'protest']
[u'elector', u'detail', u'onlin']
[u'ethicist', u'human', u'right', u'view']
[u'fame', u'aborigin', u'artwork', u'pass', u'auction']
[u'farmer', u'stage', u'ordin', u'protest', u'offic']
[u'farmer', u'fight', u'wheat', u'debt', u'compo']
[u'farmer', u'urg', u'appli', u'drought', u'assist']
[u'farmer', u'warn', u'immedi', u'follow', u'rain']
[u'fear', u'hold', u'miss', u'fisher']
[u'fear', u'reserv', u'protect', u'threaten', u'job']
[u'feder', u'fund', u'forestri', u'work']
[u'ferrero', u'quit', u'toronto', u'master', u'pain']
[u'firefight', u'die', u'tri', u'save']
[u'fish', u'limit', u'boost', u'boat', u'sale']
[u'flood', u'chao', u'continu', u'india', u'bangladesh']
[u'foetal', u'brain', u'cell', u'hope', u'stroke', u'victim']
[u'foolhardi', u'rock', u'diver', u'lose', u'payout']
[u'guantanamo', u'prison', u'arriv', u'franc']
[u'freez', u'preserv', u'endang', u'speci']
[u'gallop', u'say', u'work', u'north', u'west', u'right', u'road']
[u'gile', u'spin', u'england', u'victori']
[u'golden', u'time', u'miner', u'norseman']
[u'googl', u'offer', u'estim', u'worth']
[u'gore', u'carter', u'slam', u'bush', u'democrat', u'convent']
[u'govt', u'critic', u'hasten', u'retir', u'judg']
[u'govt', u'open', u'book', u'cairn', u'educ']
[u'govt', u'support', u'portland', u'factori', u'push']
[u'govt', u'revitalis', u'christma', u'island', u'economi']
[u'govt', u'urg', u'rethink', u'croc', u'festiv', u'support']
[u'green', u'want', u'bigger', u'murray', u'flow', u'commit']
[u'group', u'reject', u'breast', u'screen', u'unit', u'claim']
[u'grower', u'fear', u'picker', u'spread', u'canker']
[u'incid', u'trigger', u'year', u'shoot']
[u'har', u'race', u'chief', u'welcom', u'drug', u'crackdown']
[u'health', u'dept', u'stand', u'patient', u'care']
[u'health', u'merger', u'news', u'expect', u'today']
[u'health', u'overhaul', u'cost', u'job']
[u'health', u'summit', u'hear', u'teen', u'pregnanc', u'tale']
[u'heroin', u'accus', u'go', u'trial']
[u'hindu', u'muslim', u'clash', u'result', u'gujarat', u'curfew']
[u'build', u'supercomput', u'militari']
[u'indonesia', u'proceed', u'bashir', u'case']
[u'iraqi', u'kidnapp', u'free', u'egyptian', u'diplomat']
[u'iraqi', u'visit', u'saudi', u'arabia']
[u'irrig', u'disput', u'settl', u'court']
[u'want', u'catch', u'millar']
[u'jackson', u'repeat', u'wnba', u'honour']
[u'jail', u'guard', u'concern', u'prison', u'lockdown']
[u'jail', u'staff', u'clear', u'prison', u'escap']
[u'jetstar', u'explain', u'flight', u'chang']
[u'judiciari', u'refus', u'bring', u'forward', u'william', u'case']
[u'judiciari', u'final', u'hear', u'oneil', u'charg']
[u'karzai', u'nomin', u'afghan', u'elect']
[u'klinsmann', u'accept', u'german', u'coach']
[u'knee', u'injuri', u'end', u'overmar', u'career']
[u'labor', u'dither', u'free', u'trade']
[u'labor', u'democrat', u'debat']
[u'labor', u'senat', u'speak']
[u'landhold', u'urg', u'better', u'understand', u'drought']
[u'latham', u'centrelink', u'gambl', u'line']
[u'lead', u'fear', u'prompt', u'white', u'wing', u'recal']
[u'leagu', u'watch', u'richmond', u'rebel']
[u'libya', u'start', u'entri', u'talk']
[u'live', u'cattl', u'market', u'continu', u'south', u'east', u'asian']
[u'liverpool', u'edg', u'closer', u'owen', u'deal']
[u'liverpool', u'report', u'prove', u'latham', u'unfit']
[u'magpi', u'deni', u'compromis', u'venu']
[u'mayor', u'reject', u'develop', u'claim']
[u'meet', u'discuss', u'option']
[u'melbourn', u'wake', u'coldest', u'year']
[u'meningococc', u'case', u'spark', u'strain', u'concern']
[u'meningococc', u'suspect', u'teenag', u'death']
[u'merger', u'announc', u'fruit', u'grower']
[u'merger', u'creat', u'fifth', u'biggest', u'properti', u'trust']
[u'forum', u'tell', u'flow', u'share', u'scheme', u'snub']
[u'minist', u'blame', u'state', u'entri', u'dispar']
[u'minist', u'fail', u'cave', u'fishermen', u'demand']
[u'minist', u'agre', u'drought', u'assist', u'revamp']
[u'minist', u'urg', u'sign', u'drought', u'chang']
[u'miss', u'fisherman', u'bodi']
[u'polic', u'see', u'answer', u'hoon']
[u'air', u'health', u'merger', u'fear']
[u'oppos', u'kyoto', u'protocol']
[u'age', u'care', u'place', u'announc', u'illawarra']
[u'clash', u'kill', u'seven', u'indonesia', u'aceh', u'provinc']
[u'environ', u'minist', u'meet', u'gladston', u'fisher']
[u'import', u'impress', u'croc', u'coach']
[u'north', u'korean', u'defector', u'arriv', u'south', u'korea']
[u'galleri', u'deserv', u'support', u'dealer', u'say']
[u'nurs', u'ambul', u'crew', u'plan']
[u'outback', u'road', u'open', u'rain']
[u'pair', u'murder', u'charg', u'refus', u'bail']
[u'palliat', u'care', u'facil', u'fail', u'indigen']
[u'pamper', u'pet', u'foreign', u'recipi']
[u'parmalat', u'lay', u'foundat', u'liquid']
[u'parmalat', u'restructur', u'boost', u'aust', u'export']
[u'pension', u'rate', u'rebat', u'complic']
[u'philippin', u'offici', u'complaint', u'iraq']
[u'plan', u'boost', u'region', u'airport', u'secur']
[u'platform', u'risk', u'ghan', u'reput']
[u'polic', u'condemn', u'alcohol', u'abus']
[u'polic', u'investig', u'melbourn', u'terrorist', u'cell']
[u'polic', u'reveal', u'ident', u'shoot', u'guard']
[u'polic', u'urg', u'reopen', u'inquiri', u'prison', u'gang']
[u'polic', u'wait', u'interview', u'secur', u'guard']
[u'polli', u'dont', u'want', u'gambl', u'mildura', u'futur']
[u'pressur', u'mount', u'wild', u'bait']
[u'pride', u'line', u'hawk', u'say', u'vandenberg']
[u'prison', u'face', u'crackdown']
[u'qanta', u'increas', u'melbourn', u'servic']
[u'choos', u'site', u'steel', u'oper']
[u'industri', u'miner', u'secur', u'interim', u'tenur']
[u'qualifi', u'support', u'health', u'region', u'chang']
[u'race', u'attack', u'suspect', u'undergo', u'assess']
[u'richmond', u'presid', u'meet', u'rebel', u'challeng']
[u'richmond', u'rebel', u'challeng', u'casey']
[u'road', u'minist', u'plan', u'calder', u'visit']
[u'cull', u'choic', u'biologist']
[u'issu', u'confront']
[u'sausag', u'skin', u'factori', u'hit', u'snag']
[u'top', u'round', u'indonesia', u'vote']
[u'schwab', u'say', u'board', u'disput', u'hurt', u'hawk']
[u'sharapova', u'court', u'success']
[u'shire', u'budget', u'includ', u'rate', u'rise']
[u'sleep', u'apnoea', u'link', u'stroke', u'death', u'risk']
[u'soak', u'help', u'save', u'crop']
[u'soldier', u'charg', u'hors', u'death']
[u'south', u'korean', u'defenc', u'minist', u'quit']
[u'spain', u'summon', u'aust', u'ambassador', u'iraq']
[u'swan', u'hill', u'get', u'refuge', u'plan']
[u'swan', u'forc', u'play', u'injuri']
[u'sydney', u'hobart', u'organis', u'confid', u'success']
[u'talk', u'focus', u'council', u'medic', u'facil']
[u'talli', u'confid', u'play', u'season']
[u'teenag', u'jail', u'adelaid', u'road', u'incid']
[u'teenag', u'admit', u'hospit', u'meningococc']
[u'teen', u'get', u'life', u'sentenc', u'britain', u'high', u'school']
[u'teen', u'charg', u'home', u'invas']
[u'terror', u'fight', u'need', u'cooper', u'blame']
[u'terrorist', u'group', u'melbourn', u'brack']
[u'thai', u'eleph', u'anticip', u'jumbo', u'sale']
[u'fan', u'stori']
[u'thousand', u'expect', u'schooli', u'influx']
[u'thuram', u'end', u'intern', u'career']
[u'trucki', u'admit', u'assault', u'cameraman']
[u'demand', u'grow', u'bundaberg', u'ginger', u'beer']
[u'highlight', u'help', u'region', u'student']
[u'warn', u'humanitarian', u'crisi', u'bangladesh']
[u'grant', u'peopl', u'mujahedeen', u'member', u'protect']
[u'vaughan', u'hail', u'gile', u'role', u'england']
[u'accept', u'wheatbelt', u'drought', u'reject']
[u'wada', u'unveil', u'weapon', u'fight', u'drug']
[u'wallabi', u'includ', u'bok', u'south', u'african']
[u'wall', u'street', u'finish', u'volatil', u'trade']
[u'oppn', u'question', u'indigen', u'health', u'standard']
[u'tractor', u'convoy', u'make', u'flinder', u'ranger']
[u'windi', u'look', u'collymor']
[u'wire', u'blame', u'jetstar', u'emerg']
[u'wollongong', u'home', u'merg', u'health', u'servic']
[u'worm', u'slow', u'search', u'engin']
[u'youth', u'homeless', u'servic', u'make', u'cut']
[u'zvonareva', u'edg', u'dechi', u'diego']
[u'reef', u'wetland', u'work']
[u'abbott', u'launch', u'medicar', u'smartcard']
[u'acid', u'tortur', u'money', u'court', u'tell']
[u'happi', u'talk', u'club', u'perform']
[u'afro', u'american', u'star', u'shin', u'democrat', u'convent']
[u'airport', u'council', u'loan']
[u'search', u'call', u'miss', u'plane']
[u'alcoa', u'lift', u'game', u'spill', u'prevent']
[u'alleg', u'siev', u'smuggler', u'stand', u'trial']
[u'alo', u'help', u'trauma', u'victim', u'studi', u'find']
[u'amazon', u'fire', u'weather', u'pattern', u'chang']
[u'anti', u'dioxin', u'group', u'reveal', u'document']
[u'begin', u'assess', u'bid', u'revamp', u'leagu']
[u'asbesto', u'fund', u'run', u'cash']
[u'aussi', u'rower', u'world', u'champ']
[u'aust', u'extend', u'border', u'surveil', u'contract']
[u'aust', u'polic', u'deploy']
[u'australian', u'director', u'urg', u'oppos']
[u'author', u'probe', u'hous', u'blaze']
[u'ayr', u'say', u'regret', u'adelaid']
[u'beatti', u'perform', u'bonus']
[u'beatti', u'urg', u'labor', u'approv']
[u'billiton', u'report', u'record', u'output']
[u'blame', u'game', u'begin', u'compani', u'reloc']
[u'bluescop', u'expand', u'port', u'kembla']
[u'bomb', u'board', u'best', u'board']
[u'bomb', u'threat', u'wasnt', u'previous', u'flight']
[u'sneak', u'airport', u'conveyor', u'belt']
[u'brown', u'question', u'late', u'wheat', u'debt', u'stanc']
[u'buderus', u'sorri', u'rant']
[u'burn', u'motor', u'blame', u'medic', u'centr', u'emerg']
[u'businessman', u'urg', u'chang', u'bulldog', u'board']
[u'grain', u'plan', u'bring', u'grower', u'benefit']
[u'canberran', u'urg', u'blood']
[u'chang', u'sceneri', u'bronco']
[u'child', u'protect', u'worker', u'boost', u'break', u'hill']
[u'china', u'criticis', u'star', u'war', u'missil', u'shield']
[u'christma', u'island', u'deceiv', u'casino']
[u'church', u'tell', u'defrock', u'bishop']
[u'clue', u'uncov', u'prevent', u'prematur', u'birth']
[u'commerci', u'space', u'flight', u'plan', u'sept']
[u'communiti', u'farewel', u'late', u'businessman']
[u'compromis', u'end', u'cost', u'burnett', u'river', u'strike']
[u'confer', u'focus', u'renew', u'energi']
[u'coron', u'urg', u'traffic', u'safeti', u'awar', u'campaign']
[u'costa', u'rican', u'hostag', u'drama', u'end', u'bloodsh']
[u'costello', u'applaud', u'inflat', u'figur']
[u'cost', u'counterfeit', u'puzzl', u'polic']
[u'council', u'budget', u'includ', u'water', u'spend']
[u'council', u'tussl', u'dog']
[u'court', u'dismiss', u'terrorist', u'claim', u'appeal']
[u'court', u'rule', u'compo', u'injur', u'tourist']
[u'court', u'uphold', u'death', u'sentenc', u'sarin']
[u'crazi', u'ant', u'face', u'extermin', u'plan']
[u'crow', u'hart', u'option']
[u'crow', u'hold', u'talk', u'ead']
[u'csiro', u'begin', u'rainfal', u'predict', u'project']
[u'cypriot', u'warn', u'laundri', u'public']
[u'darfur', u'civilian', u'burn', u'aliv', u'militia', u'attack']
[u'defenc', u'industri', u'industri', u'woe', u'continu']
[u'egypt', u'deni', u'pay', u'hostag', u'freedom']
[u'emerald', u'seek', u'discount', u'fare']
[u'engag', u'ring', u'squirrel', u'away', u'rooney', u'fiance']
[u'exmouth']
[u'farmer', u'slug', u'rate', u'rise']
[u'farm', u'lobbi', u'urg', u'export', u'subsidi', u'remov']
[u'feder', u'fund', u'seek', u'communiti', u'legal', u'centr']
[u'feder', u'form', u'interrupt', u'rain']
[u'fifth', u'person', u'charg', u'synagogu', u'graffiti']
[u'charg', u'acid', u'murder']
[u'cycl', u'champion', u'injur']
[u'french', u'guantanamo', u'detaine', u'question']
[u'fruit', u'group', u'seek', u'water', u'polici', u'chang']
[u'plant', u'hear', u'schedul', u'septemb']
[u'gold', u'miner', u'take', u'cook', u'review']
[u'govern', u'form', u'age', u'action', u'plan']
[u'govt', u'blame', u'class', u'size', u'blowout']
[u'govt', u'refus', u'pork', u'industri', u'request']
[u'govt', u'fear', u'homeless', u'program', u'futur']
[u'govt', u'stand', u'water', u'plan']
[u'govt', u'snub', u'council', u'meet']
[u'govt', u'meningococc', u'vaccin', u'program']
[u'govt', u'urg', u'boost', u'region', u'mobil', u'phone', u'coverag']
[u'govt', u'urg', u'fund']
[u'grand', u'vision', u'unveil', u'launceston']
[u'greec', u'deploy', u'patriot', u'missil', u'safeguard']
[u'gregan', u'south', u'africa', u'test']
[u'group', u'consid', u'plan', u'health', u'chang']
[u'health', u'merger', u'draw', u'critic']
[u'hepburn', u'bathhous', u'futur', u'unclear']
[u'high', u'tech', u'upgrad', u'courthous']
[u'hoax', u'spark', u'review', u'flight', u'disclosur']
[u'hope', u'youth', u'scheme', u'help', u'transport', u'job']
[u'rock', u'drill', u'begin', u'month']
[u'howard', u'attack', u'latham', u'timor', u'talk']
[u'squirrel', u'away', u'ring']
[u'hundr', u'arrest', u'china', u'internet', u'porn']
[u'increas', u'effort', u'need', u'stamp', u'drug', u'say']
[u'india', u'surviv', u'jayasuriya', u'blitz', u'enter', u'asia']
[u'indigen', u'health', u'servic', u'lead']
[u'indonesia', u'drop', u'bashir', u'bali', u'bomb', u'charg']
[u'industri', u'woe', u'sick', u'hurt', u'rail', u'servic']
[u'iraq', u'death', u'toll', u'rise']
[u'iraqi', u'accus', u'british', u'troop', u'crime']
[u'israel', u'order', u'quicker', u'work', u'barrier']
[u'job', u'expect', u'health', u'shake']
[u'kayak', u'add', u'olymp', u'team']
[u'kerri', u'reveal', u'person', u'democrat']
[u'killer', u'whale', u'turn', u'trainer']
[u'labor', u'figur', u'urg', u'attend', u'liverpool', u'retail']
[u'landhold', u'consult', u'power', u'plan']
[u'lara', u'bank', u'edgbaston', u'memori', u'second', u'test']
[u'lawyer', u'seek', u'bashir', u'releas', u'anti', u'terror']
[u'local', u'health', u'servic', u'state', u'wide', u'shake']
[u'lovesick', u'tomtit', u'fli', u'reunion']
[u'major', u'surgeri', u'health']
[u'marin', u'park', u'get', u'wast', u'water']
[u'mccaw', u'rule', u'nation', u'seri']
[u'mcevoy', u'win', u'european', u'group', u'race']
[u'mcgillivray', u'secur', u'elect']
[u'meatwork', u'talk', u'chemic', u'leak']
[u'medecin', u'san', u'frontier', u'leav', u'afghanistan']
[u'melbourn', u'pair', u'murder', u'greec']
[u'meningococc', u'confirm', u'teenag', u'death']
[u'miner', u'push', u'aussi', u'market', u'higher']
[u'minist', u'talk', u'health', u'servic', u'chang']
[u'miss', u'plane', u'victoria']
[u'call', u'murray', u'water', u'flow', u'increas']
[u'moyn', u'budget', u'includ', u'rate', u'rise']
[u'take', u'issu', u'coorong', u'claim']
[u'murder', u'man', u'famili', u'unhappi', u'govt', u'effort']
[u'murray', u'snowi', u'river', u'benefit', u'lake']
[u'chief', u'look', u'chang', u'face', u'agforc']
[u'back', u'easier', u'drought', u'declar']
[u'final', u'seri', u'free']
[u'outlaw', u'nation', u'nuclear', u'wast', u'dump']
[u'olymp', u'sister', u'brighten', u'sharapova', u'gloom']
[u'onlin', u'spend', u'tip', u'increas']
[u'oppn', u'warn', u'mental', u'health', u'violenc']
[u'palestinian', u'retract', u'resign']
[u'paramed', u'unhappi', u'talk']
[u'park', u'wild', u'dog', u'havent', u'attack', u'peopl', u'npws']
[u'patriot', u'missil', u'instal', u'olymp', u'sit']
[u'perth', u'refus', u'bail', u'murder', u'plot', u'charg']
[u'back', u'downer', u'iraq', u'troop', u'pullout', u'remark']
[u'pole', u'tell', u'indigen', u'stori']
[u'polic', u'lake', u'mishap']
[u'polic', u'link', u'attack']
[u'polic', u'offic', u'face', u'prosecut', u'drink', u'drive']
[u'polic', u'probe', u'chainsaw', u'theft']
[u'polit', u'billboard', u'reach', u'line']
[u'portrait', u'plan', u'thunderbolt', u'rock']
[u'public', u'urg', u'help', u'erad', u'mozzi', u'threat']
[u'govt', u'accus', u'fail', u'protect', u'koala']
[u'insect', u'pest', u'find']
[u'put', u'forward', u'nation', u'child', u'abus', u'strategi']
[u'rain', u'expect', u'boost', u'eastern', u'eyr', u'peninsula', u'crop']
[u'rain', u'ruin', u'program', u'master', u'seri']
[u'rate', u'rise', u'gayndah', u'tiaro', u'resid']
[u'rate', u'rise', u'thuringowa', u'resid']
[u'record', u'profit']
[u'reef', u'rezon', u'plan']
[u'region', u'rail', u'safeti', u'spotlight']
[u'renault', u'confirm', u'fisichella', u'partner', u'alonso']
[u'richmond', u'rival', u'agre', u'compromis']
[u'rise', u'expect', u'figur']
[u'rise', u'suicid', u'embezzl', u'caus', u'problem']
[u'road', u'safeti', u'drive', u'esso', u'phone']
[u'ruddock', u'shepparton', u'talk', u'reform']
[u'rush', u'accept', u'award', u'brisban', u'festiv']
[u'secur', u'boost', u'port', u'augusta', u'jail']
[u'sharapova', u'shin', u'serena', u'struggl', u'diego']
[u'simeoni', u'question', u'armstrong', u'feud']
[u'dead', u'plane', u'crash']
[u'skill', u'speed', u'domin', u'elder', u'buggi', u'race']
[u'event', u'consid', u'insur', u'risk']
[u'springbok', u'surpris', u'wallabi', u'line']
[u'stoner', u'criticis', u'health', u'servic', u'chang']
[u'sudan', u'vow', u'resist', u'darfur', u'intervent']
[u'sunbeam', u'victa', u'sale', u'boost', u'profit']
[u'suspect', u'mercenari', u'plead', u'guilti', u'zimbabw']
[u'tait', u'sign', u'durham']
[u'talk', u'continu', u'picket', u'end']
[u'talk', u'focus', u'aapt', u'wag']
[u'labor', u'sceptic', u'ftas', u'benefit']
[u'taxi', u'driver', u'bash', u'sentenc', u'appeal']
[u'overhaul', u'need', u'household', u'employe', u'bishop']
[u'thousand', u'farewel', u'icon']
[u'charg', u'sydney', u'chase']
[u'tiger', u'oneil', u'face', u'judiciari', u'high', u'tackl']
[u'timor', u'disput', u'threaten', u'project']
[u'tini', u'victorian', u'town', u'prepar']
[u'tougher', u'water', u'restrict', u'moot', u'livingston']
[u'train', u'firm', u'win', u'small', u'busi', u'award']
[u'truce', u'call', u'richmond', u'rival', u'agre', u'compromis']
[u'uncertainti', u'remain', u'health', u'loss']
[u'muslim', u'chariti', u'charg', u'aid', u'hama']
[u'tabl', u'resolut', u'sudan']
[u'venus', u'william', u'withdraw', u'diego']
[u'govt', u'deni', u'hospit', u'bypass', u'claim']
[u'nation', u'park', u'open', u'sport', u'shooter']
[u'ambul', u'trip', u'push', u'region', u'boost']
[u'wallabi', u'south', u'africa', u'clash']
[u'wallabi', u'name', u'south', u'africa', u'clash']
[u'wall', u'ralli', u'consum', u'confid']
[u'newspap', u'confirm', u'fairfax', u'merger', u'talk']
[u'webber', u'sign', u'william']
[u'werribe', u'protest', u'blue', u'line']
[u'wigan', u'sign', u'kiwi', u'centr', u'vaealiki']
[u'wind', u'industri', u'fear', u'miss', u'energi', u'boom']
[u'yasss', u'incorpor', u'kangiara', u'face', u'opposit']
[u'young', u'australian', u'incur', u'danger', u'debt', u'level']
[u'appoint', u'news', u'chief']
[u'activist', u'orang', u'utan', u'kickbox']
[u'stand', u'final']
[u'african', u'union', u'consid', u'sudan', u'peacekeep', u'mission']
[u'second', u'nation', u'defam', u'law']
[u'airport', u'secur', u'camera', u'defect']
[u'alma', u'pool', u'futur', u'take', u'dive']
[u'qaeda', u'link', u'group', u'vow', u'bloodi', u'europ']
[u'anderson', u'switch', u'rugbi', u'wale']
[u'anderson', u'rescu', u'packag', u'comment']
[u'annan', u'urg', u'sudan']
[u'assault', u'charg', u'drop', u'carey', u'brother']
[u'aust', u'criticis', u'support', u'isra', u'barrier']
[u'austrad', u'welcom', u'malaysia', u'trade', u'talk']
[u'bacon', u'critic', u'challeng', u'stand', u'parliament']
[u'barber', u'await', u'green', u'light', u'olymp']
[u'bashir', u'face', u'bali', u'charg', u'despit', u'law', u'rule']
[u'baxter', u'detaine', u'continu', u'hunger', u'strike']
[u'beatti', u'peddl', u'cycl', u'safeti', u'messag']
[u'bendigo', u'bank', u'reach', u'mileston']
[u'bing', u'spend', u'leav', u'young', u'debt', u'stress']
[u'boe', u'plan', u'boost', u'hunter', u'job']
[u'boomer', u'pair']
[u'boost', u'plan', u'steelwork']
[u'busi', u'award', u'launch', u'northern', u'tasmania']
[u'servic', u'undergo', u'month', u'trial']
[u'age', u'care', u'disclosur']
[u'canada', u'reject', u'explan', u'photograph']
[u'carey', u'brother', u'court', u'alleg', u'attack']
[u'celtic', u'surpris']
[u'chamber', u'back', u'mine', u'effort']
[u'cleaner', u'artist', u'council', u'commiss', u'work']
[u'cofidi', u'testimoni', u'tamper', u'claim', u'hand']
[u'nuclear', u'dump', u'opposit']
[u'consum', u'warn', u'bewar', u'listeria']
[u'coolgardi', u'shire', u'air', u'fund', u'concern']
[u'council', u'await', u'park', u'review']
[u'council', u'back', u'school', u'plan']
[u'council', u'dig', u'miner', u'statu']
[u'council', u'govt', u'address', u'fall', u'popul']
[u'council', u'lament', u'gympi', u'gold', u'demis']
[u'council', u'outlin', u'budget', u'spend']
[u'council', u'state', u'agreement', u'consult']
[u'court', u'reserv', u'decis', u'protest', u'appeal']
[u'court', u'view', u'gruesom', u'murder', u'photo']
[u'craig', u'concern', u'ayr', u'comment']
[u'creditor', u'vote', u'wind', u'gympi', u'gold']
[u'croc', u'player', u'excit', u'olymp']
[u'custodi', u'chang', u'divid', u'father', u'group']
[u'custodi', u'overhaul', u'improv', u'men', u'access', u'children']
[u'cycl', u'drug', u'probe', u'releas']
[u'dajka', u'doubt', u'olymp']
[u'dam', u'blue', u'green', u'alga', u'rise']
[u'local', u'govt', u'group']
[u'develop', u'welcom', u'vision', u'launceston']
[u'differ', u'fuel', u'price', u'highlight', u'competit']
[u'unlock', u'secret', u'superior', u'sugarcan', u'varieti']
[u'doctor', u'group', u'cast', u'doubt', u'health', u'chang']
[u'east', u'asian', u'growth', u'peak', u'percent', u'review']
[u'edward', u'accept', u'vice', u'presid', u'nomin']
[u'edward', u'hail', u'decis', u'strong', u'kerri']
[u'embassi', u'confirm', u'behead', u'pakistani', u'hostag']
[u'embattl', u'jone', u'london', u'pull']
[u'energi', u'fund', u'boost', u'wide', u'burnett']
[u'enterpris', u'zone', u'spark', u'job', u'boost']
[u'environ', u'loser', u'athen', u'greenpeac']
[u'execut', u'pakistani', u'hostag', u'iraq', u'confirm']
[u'export', u'rise', u'fail', u'check', u'trade', u'deficit']
[u'farm', u'group', u'fear', u'rail', u'branch', u'line', u'closur']
[u'farm', u'group', u'seek', u'road', u'rent', u'talk']
[u'fifth', u'suspect', u'meningococc', u'infect', u'reveal']
[u'fiji', u'get', u'key', u'armouri']
[u'fli', u'school', u'lament', u'plan', u'dearer', u'land']
[u'fragil', u'peac', u'declar', u'richmond']
[u'freight', u'firm', u'back', u'rail', u'access', u'paper']
[u'fuel', u'plane', u'crash']
[u'fund', u'crazi', u'ant', u'fight']
[u'fund', u'clean', u'abandon', u'fish', u'net']
[u'fund', u'wetland', u'work']
[u'gambl', u'spree', u'end', u'year', u'jail', u'term']
[u'googong', u'kangaroo', u'cull', u'complet']
[u'gould', u'name', u'wallabi', u'back', u'coach']
[u'governor', u'play', u'presid', u'temporarili']
[u'govt', u'accus', u'overst', u'plastic', u'reduct']
[u'grain', u'group', u'back', u'singl', u'desk', u'market']
[u'chew', u'team', u'tell', u'drop', u'habit', u'sing']
[u'hackett', u'confid', u'good', u'show']
[u'health', u'author', u'urg', u'calm', u'meningococc']
[u'health', u'educ', u'key', u'elect', u'say']
[u'health', u'minist', u'reject', u'fund', u'propos']
[u'hewitt', u'reid', u'toronto']
[u'test', u'readi', u'athen']
[u'hobart', u'woman', u'diagnos', u'meningococc', u'diseas']
[u'homeless', u'fund', u'welcom', u'inadequ']
[u'hous', u'market', u'rebound']
[u'howard', u'deni', u'dud', u'wheat', u'farmer']
[u'howard', u'go', u'pacif', u'super', u'deal']
[u'hundr', u'attend', u'duthi', u'funer']
[u'india', u'make', u'effort', u'releas', u'hostag']
[u'industri', u'woe', u'continu', u'crane', u'firm']
[u'inform', u'share', u'program', u'benefit', u'welfar']
[u'intellig', u'offici', u'indonesian', u'ambassador']
[u'investig', u'begin', u'plane', u'crash']
[u'investig', u'light', u'plane', u'cours']
[u'iran', u'ignor', u'nuclear', u'commit']
[u'iraq', u'captor', u'kill', u'pakistani', u'hostag', u'report']
[u'iraqi', u'nation', u'confer', u'delay', u'week']
[u'jam', u'hardi', u'inquiri', u'tell', u'reform', u'need']
[u'jondaryan', u'council', u'outlin', u'budget', u'spend']
[u'joyc', u'savill', u'bolster', u'athen', u'effort']
[u'juri', u'form', u'snowtown', u'murder', u'trial']
[u'juri', u'consid', u'hopper', u'verdict']
[u'juri', u'urg', u'look', u'scapegoat']
[u'labor', u'reject', u'jam', u'hardi', u'donat']
[u'labor', u'confid', u'green', u'support']
[u'labor', u'say', u'divorc', u'plan', u'good']
[u'labor', u'wont', u'rush', u'trade', u'deal', u'latham', u'say']
[u'latham', u'unveil', u'manufactur', u'plan']
[u'lazi', u'book', u'shock', u'french', u'electr', u'compani']
[u'liverpool', u'refut', u'kewel', u'injuri', u'talk']
[u'local', u'govt', u'group', u'put', u'transport', u'spotlight']
[u'face', u'court', u'prostitut', u'charg']
[u'mcdonald', u'look', u'renew', u'effort', u'hawk']
[u'meat', u'lose', u'chemic', u'spill']
[u'medic', u'council', u'unhappi', u'hospit', u'status']
[u'meet', u'debat', u'council', u'merger', u'plan']
[u'meningococc', u'case', u'caus', u'panic']
[u'meteor', u'light', u'central', u'victorian']
[u'mine', u'minist', u'discuss', u'counter', u'terror', u'plan']
[u'minist', u'deni', u'health', u'crisi']
[u'minist', u'agre', u'interst', u'screen', u'polici']
[u'minist', u'stand', u'health', u'servic', u'merger']
[u'minist', u'talk', u'youth', u'apprenticeship']
[u'molik', u'stun', u'mauresmo']
[u'money', u'save', u'relationship', u'servic', u'welfar']
[u'bird', u'confirm', u'thailand']
[u'billboard', u'remain', u'time']
[u'muslim', u'troop', u'moot', u'bomb', u'kill', u'iraqi']
[u'nation', u'trust', u'dump', u'northern', u'chairman']
[u'natur', u'supplier', u'seal', u'japan', u'deal']
[u'drug', u'help', u'hepat']
[u'health', u'servic', u'administr', u'tour', u'hast']
[u'lifeguard', u'supervisor', u'townsvill']
[u'snowi', u'shire', u'council', u'name']
[u'newspap', u'fin', u'run', u'vlassaki', u'photo']
[u'sight', u'ambo', u'strike']
[u'extra', u'motiv', u'gregan', u'say', u'jone']
[u'turn', u'look', u'tyson']
[u'lead', u'child', u'protect', u'work', u'group']
[u'lift', u'rat']
[u'price', u'spike', u'worri', u'investor']
[u'olyroo', u'prepar', u'torrid', u'warm', u'say', u'farina']
[u'oneil', u'guilti', u'suspend']
[u'pantani', u'kill', u'massiv', u'cocain', u'overdos', u'doctor']
[u'perth', u'protest', u'hound']
[u'pilbara', u'miner', u'name', u'digger', u'year']
[u'plane', u'crash', u'recoveri', u'effort', u'day']
[u'plan', u'continu', u'eyr', u'peninsula', u'wind', u'farm']
[u'confid', u'famili', u'centr', u'help', u'separ']
[u'wind', u'pilbara', u'tour']
[u'polic', u'break', u'caledonia', u'wharf', u'disput']
[u'polic', u'probe', u'bateman', u'arson']
[u'pork', u'industri', u'unhappi', u'fund', u'snub']
[u'probe', u'begin', u'accid']
[u'properti', u'raid', u'tongeren', u'probe']
[u'protea', u'snatch', u'australia', u'test', u'crown']
[u'protest', u'call', u'health', u'servic', u'shake']
[u'public', u'tap', u'water', u'idea']
[u'push', u'albani', u'perth', u'passeng', u'train']
[u'push', u'return', u'blood', u'donat', u'gambier']
[u'rain', u'offer', u'littl', u'grain', u'crop']
[u'rate', u'rise', u'boonah', u'shire', u'resid']
[u'record', u'price', u'bailiff', u'move', u'yuko']
[u'region', u'recreat', u'plan', u'aim', u'crime']
[u'remot', u'school', u'debat', u'educ', u'review']
[u'research', u'home', u'acn', u'gene']
[u'resourc', u'energi', u'sector', u'help', u'market', u'hold', u'grind']
[u'rilli', u'excit', u'olymp']
[u'tinto', u'post', u'profit']
[u'rodd', u'expect', u'spring', u'carniv', u'rid']
[u'ruddock', u'urg', u'govt', u'boost', u'legal', u'effort']
[u'saudi', u'arabia', u'moot', u'muslim', u'forc', u'iraq']
[u'scott', u'chase', u'major', u'boost', u'sweden']
[u'scott', u'set', u'skin', u'date', u'tiger']
[u'secur', u'audit', u'target', u'mine', u'energi']
[u'self', u'portrait', u'score', u'prize']
[u'seminar', u'outlin', u'polic', u'recruit', u'requir']
[u'seven', u'trade', u'like', u'remain', u'thorni', u'issu']
[u'shopper', u'boost', u'properti', u'trust', u'line']
[u'kill', u'central', u'afghanistan', u'bomb', u'blast']
[u'snell', u'lead', u'opal', u'spanish']
[u'somali', u'take', u'hostag', u'iraq', u'jazeera']
[u'soni', u'merger', u'receiv', u'green', u'light']
[u'stalker', u'drive', u'actress', u'near', u'nervous', u'breakdown']
[u'stamp', u'duti', u'concess', u'boost', u'build', u'activ']
[u'strong', u'energi', u'bank', u'sector', u'hold', u'share', u'market']
[u'strong', u'expect', u'industri', u'land']
[u'survey', u'chart', u'children', u'wellb']
[u'swastika', u'paint', u'jewish', u'grave']
[u'thorp', u'scold', u'olymp', u'drug', u'claim']
[u'time', u'aust', u'philippin', u'ambassador']
[u'time', u'short', u'leagu', u'club', u'express']
[u'earli', u'specul', u'rape', u'retrial']
[u'troop', u'laugh', u'bash', u'iraqi', u'court', u'hear']
[u'canberra', u'children', u'diagnos', u'meningococc']
[u'kill', u'afghanistan', u'mosqu', u'blast']
[u'palestinian', u'milit', u'leader', u'kill', u'gaza']
[u'court', u'slash', u'sentenc', u'accus', u'bosnian']
[u'debat', u'sudan', u'sanction', u'resolut']
[u'union', u'criticis', u'citibank', u'job', u'decis']
[u'union', u'question', u'labor', u'cut']
[u'union', u'seek', u'wider', u'workplac', u'smoke']
[u'union', u'urg', u'latham', u'block']
[u'uni', u'rise', u'studentstaff', u'ratio', u'caus', u'concern']
[u'unit', u'griffith', u'sign', u'belgian', u'club']
[u'vanuatu', u'elect']
[u'vaughan', u'call', u'rest']
[u'build', u'union', u'boycott', u'hardi', u'product']
[u'wada', u'welcom', u'olymp', u'test']
[u'water', u'boost', u'snowi', u'river']
[u'water', u'plan', u'consult', u'continu']
[u'weep', u'statu', u'miracl']
[u'wide', u'unemploy', u'high', u'fall']
[u'widow', u'urg', u'asbesto', u'warn', u'home']
[u'wind', u'turbin', u'get', u'green', u'light']
[u'wiranto', u'launch', u'challeng', u'indon', u'elect', u'result']
[u'yacht', u'club', u'welcom', u'jetti', u'plan']
[u'aborigin', u'languag', u'teach', u'school']
[u'guilti', u'push', u'friend', u'overpass']
[u'ord', u'bank', u'resourc', u'news', u'corp']
[u'anim', u'right', u'activist', u'rememb', u'dead', u'roo']
[u'showcas', u'mini', u'submarin']
[u'artist', u'brew', u'mostar', u'bridg', u'celebr']
[u'kill', u'belgian', u'pipelin', u'erupt']
[u'attorney', u'general', u'fight', u'ident', u'fraud']
[u'aust', u'compani', u'fighter', u'contract']
[u'aust', u'top', u'convent', u'destin', u'list']
[u'author', u'clean', u'highway', u'chemic', u'spill']
[u'ballarat', u'firm', u'secur', u'hamilton', u'pool', u'contract']
[u'ballarat', u'home', u'fibr', u'optic', u'project']
[u'bangladeshi', u'face', u'wors', u'flood']
[u'barclay', u'brother', u'telegraph', u'newspap']
[u'barrett', u'gasnier', u'unscath', u'crash']
[u'british', u'govt', u'propos', u'plan', u'stop', u'anim', u'right']
[u'british', u'holocaust', u'denier', u'deni', u'entri']
[u'break', u'wont', u'halt', u'mcewen', u'olymp', u'campaign']
[u'bulldog', u'pummel', u'defend', u'premier']
[u'bundaberg', u'coupl', u'face', u'indec', u'deal', u'charg']
[u'busi', u'microscop']
[u'calliop', u'water', u'charg', u'chang']
[u'shear', u'injuri']
[u'carey', u'brother', u'clear', u'assault', u'mick', u'martyn']
[u'central', u'australia', u'face', u'drink', u'drive', u'crackdown']
[u'command', u'kerri', u'report', u'duti']
[u'confer', u'hear', u'teacher', u'isol']
[u'council', u'budget', u'road', u'spend']
[u'council', u'say', u'arboretum', u'sale']
[u'council', u'urg', u'begin', u'water', u'suppli', u'talk']
[u'council', u'urg', u'boost', u'park', u'number']
[u'court', u'decis', u'expect', u'bolster', u'union']
[u'crew', u'escap', u'helicopt', u'crash']
[u'crow', u'bounc', u'kangaroo']
[u'custodi', u'inquiri', u'head', u'satisfi', u'second', u'best']
[u'dairi', u'farmer', u'discuss', u'polici']
[u'dajka', u'drop', u'olymp', u'team']
[u'dajka', u'discov', u'olymp', u'fate', u'afternoon']
[u'decis', u'fluorid']
[u'deegan', u'claim', u'downer', u'hill', u'dodg', u'vietnam']
[u'deegan', u'hand', u'resign']
[u'dept', u'dismiss', u'meningococc', u'diseas', u'outbreak', u'fear']
[u'develop', u'fight', u'build', u'height', u'block']
[u'diesel', u'break', u'tip', u'affect', u'solar', u'power']
[u'digger', u'dealer', u'tip', u'boost', u'busi']
[u'diseas', u'fish', u'kill']
[u'pioneer', u'die']
[u'doubl', u'jeopardi', u'propos', u'divid', u'state']
[u'dozen', u'arrest', u'redfern', u'drug', u'raid']
[u'embattl', u'eriksson', u'break', u'silenc']
[u'england', u'command', u'second', u'test']
[u'profit', u'rise', u'despit', u'shutdown']
[u'chess', u'champ', u'fischer', u'like', u'appeal', u'deport']
[u'famili', u'griev', u'plane', u'crash', u'coupl']
[u'fatal', u'crash', u'black', u'brisban', u'baysid']
[u'fear', u'air', u'rail', u'cut']
[u'fear', u'air', u'conserv', u'park', u'mine']
[u'fear', u'hold', u'patient', u'health', u'specialist']
[u'feder', u'roddick', u'hewitt', u'toronto']
[u'financi', u'woe', u'delay', u'darfur', u'observ', u'team']
[u'charg', u'follow', u'alban', u'drug', u'raid']
[u'forest', u'industri', u'chief', u'seek', u'balanc']
[u'franc', u'welcom', u'sharon', u'prais', u'fight']
[u'fund', u'tree', u'diseas', u'studi']
[u'fund', u'increas', u'riverland', u'tourism']
[u'fund', u'address', u'ballarat', u'black', u'spot']
[u'gather', u'discuss', u'fraser', u'light', u'rail', u'plan']
[u'spar', u'jail', u'cafe', u'assault']
[u'govt', u'reject', u'emerg', u'hous', u'plan']
[u'govt', u'urg', u'rethink', u'polic', u'station', u'plan']
[u'govt', u'welcom', u'hick', u'trial', u'progress']
[u'grain', u'leader', u'quit']
[u'gregan', u'put', u'ahead', u'person', u'mileston']
[u'group', u'team', u'fight', u'substanc', u'abus']
[u'hardi', u'ban', u'dont', u'breach', u'trade', u'law', u'accc']
[u'harri', u'potter', u'websit', u'conquer', u'cyberspac']
[u'health', u'servic', u'shake', u'spark', u'indigen', u'concern']
[u'hewitt', u'feder', u'toronto']
[u'hick', u'direct', u'hear', u'date']
[u'hmas', u'adelaid', u'head', u'persian', u'gulf']
[u'hope', u'boe', u'expans', u'student']
[u'hopper', u'case', u'adjourn']
[u'hospit', u'plan']
[u'hospit', u'owner', u'push', u'replac', u'doctor']
[u'hospit', u'report', u'rule', u'cover']
[u'howard', u'name', u'seat']
[u'howard', u'promis', u'infrastructur']
[u'howel', u'lead', u'malmo']
[u'hunter', u'economi', u'begin', u'cool']
[u'icac', u'summon', u'health', u'minist']
[u'indonesia', u'charg', u'bashir', u'jakarta', u'bomb']
[u'show', u'buronga', u'supermarket']
[u'show', u'southport', u'spit', u'land']
[u'investig', u'continu', u'plane', u'crash']
[u'investig', u'begin', u'construct', u'worker']
[u'investig', u'probe', u'brisban', u'chopper', u'crash']
[u'iranian', u'univers', u'student', u'jail', u'protest']
[u'iraq', u'hostag', u'taker', u'threaten', u'kill']
[u'order', u'ambul', u'offic', u'work', u'ban']
[u'iron', u'boost', u'product']
[u'jam', u'hardi', u'face', u'union', u'pressur']
[u'judg', u'forc', u'deegan', u'resign']
[u'kerri', u'slam', u'bush', u'iraq', u'offer', u'littl']
[u'kersten', u'push', u'olymp', u'select']
[u'kidney', u'transplant', u'give', u'lomu', u'hope']
[u'lansval', u'shoot', u'prompt', u'polic', u'search']
[u'drink', u'grand', u'hotel']
[u'life', u'leav', u'eyr', u'peninsula', u'local', u'govt', u'group']
[u'loan', u'hous', u'approv', u'continu', u'rise']
[u'local', u'hous', u'industri', u'strong']
[u'arrest', u'sydney', u'lawyer', u'murder']
[u'arrest', u'sydney', u'solicitor', u'murder']
[u'charg', u'bank', u'robberi', u'refus', u'bail']
[u'die', u'highway', u'crash']
[u'plead', u'guilti', u'internet', u'charg']
[u'sentenc', u'year', u'doubl', u'murder']
[u'mayor', u'welcom', u'multi', u'million', u'dollar', u'invest']
[u'final', u'schedul', u'wrong', u'say', u'roo']
[u'mcginti', u'threat', u'diminish']
[u'minist', u'meet', u'farmer', u'road', u'reserv', u'rent']
[u'montgomeri', u'hart', u'keat', u'comeback']
[u'focus', u'seek', u'local', u'roadwork']
[u'shoalwat', u'defenc', u'detail', u'releas']
[u'mountain', u'close', u'tast', u'minor', u'premiership']
[u'suggest', u'special', u'road']
[u'mundin', u'chase', u'world', u'titl']
[u'nation', u'galleri', u'head', u'launch', u'exhibit']
[u'nation', u'resolut', u'tire', u'member']
[u'nat', u'urg', u'pull', u'lib', u'line']
[u'hous', u'project', u'plan', u'rockhampton']
[u'explor', u'licenc', u'issu']
[u'news', u'corp', u'end', u'chernin', u'specul']
[u'speci', u'underwat', u'bone', u'eat', u'worm']
[u'dirti', u'hangov', u'wallabi', u'bok', u'say', u'jone']
[u'witch', u'hunt', u'murali', u'say']
[u'price', u'eas', u'volatil', u'trade']
[u'price', u'fresh', u'high']
[u'orchestra', u'deficit', u'predict', u'doubl']
[u'owen', u'hop', u'seal', u'liverpool', u'futur', u'soon']
[u'pacif', u'highway', u'remain', u'prioriti']
[u'pakistan', u'arrest', u'qaeda', u'bomb', u'suspect']
[u'pakistan', u'whip', u'bangladesh', u'dead', u'match']
[u'pension', u'quiet', u'azaria', u'claim']
[u'perilya', u'shift', u'focus', u'potosi', u'deposit']
[u'petroleum', u'firm', u'reach', u'record', u'profit']
[u'philippin', u'move', u'marshmallow', u'stoush']
[u'plane', u'crash', u'victim', u'take', u'melbourn']
[u'weekend', u'plan', u'quash', u'elect', u'rumour']
[u'polic', u'charg', u'drug', u'firearm', u'offenc']
[u'polic', u'disput', u'media', u'radio', u'right']
[u'polic', u'releas', u'liken', u'want']
[u'polic', u'search', u'miss']
[u'port', u'adelaid', u'receiv', u'contain', u'scan', u'boost']
[u'port', u'happi', u'dockland', u'surfac']
[u'port', u'hedland', u'port', u'top', u'tonnag', u'export']
[u'powel', u'prais', u'iraqi', u'presid']
[u'power', u'firm', u'work', u'revamp']
[u'prayer', u'servic', u'rememb', u'highway', u'victim']
[u'price', u'structur', u'target', u'water', u'user']
[u'profit', u'terror', u'hamper', u'game', u'ticket', u'sale']
[u'public', u'urg', u'discuss', u'water', u'develop']
[u'push', u'home', u'care', u'fund']
[u'push', u'port', u'macdonnel', u'health', u'boost']
[u'hous', u'sale', u'expect', u'slow', u'industri']
[u'arrest', u'counterfeit', u'charg']
[u'race', u'hate', u'crime', u'spark', u'gingin', u'search']
[u'rate', u'rise', u'millmerran', u'shire']
[u'record', u'crowd', u'expect', u'netbal', u'doubl', u'header']
[u'region', u'brand', u'hunter', u'produc']
[u'retir', u'footbal', u'brother', u'clear', u'assault']
[u'riverland', u'maintain', u'canker', u'quarantin']
[u'rogerson', u'break', u'wit', u'stand']
[u'rogu', u'sheep', u'outwit', u'road', u'grid']
[u'rosita', u'maryborough']
[u'rspca', u'probe', u'dugong', u'cruelti', u'claim']
[u'saddam', u'lawyer', u'rais', u'health', u'fear']
[u'school', u'oral', u'claim', u'refer', u'child', u'servic']
[u'sharapova', u'hit', u'nation', u'debat']
[u'sheep', u'truck', u'crash']
[u'sheepvent', u'begin', u'fashion', u'parad']
[u'singh', u'sizzl', u'lead', u'michigan']
[u'sixth', u'suspect', u'meningococc', u'infect', u'announc']
[u'smoke', u'ban', u'help', u'poki', u'turnov']
[u'snowi', u'ski', u'injuri', u'remain', u'high']
[u'sober', u'shelter', u'close', u'death']
[u'lanka', u'tiger', u'releas', u'child', u'soldier']
[u'state', u'push', u'east', u'timores', u'input', u'resourc']
[u'stuppl', u'lead', u'women', u'british', u'open']
[u'sudan', u'hail', u'softer', u'resolut', u'word']
[u'support', u'white', u'limit']
[u'support', u'show', u'health', u'servic', u'chang']
[u'test', u'clear', u'helen', u'water', u'suppli']
[u'arrest', u'sydney', u'solicitor', u'death']
[u'time', u'run', u'disput', u'tenanc', u'blacklist']
[u'qaeda', u'resist', u'pakistani', u'interrog']
[u'report', u'warn', u'iraq', u'afghanistan', u'deterior']
[u'slow', u'darfur', u'crisi', u'downer']
[u'lift', u'iraq', u'sanction']
[u'troop', u'insurg', u'battl', u'fallujah']
[u'warn', u'iran', u'nuke', u'plan']
[u'veteran', u'shine', u'opal', u'belgian']
[u'virgin', u'blue', u'boost', u'launceston', u'flight']
[u'wafl', u'back', u'region', u'match']
[u'warn', u'sell', u'record', u'ball', u'rais', u'cash', u'kid']
[u'warn', u'sell', u'record', u'ball', u'rais', u'fund', u'kid']
[u'wast', u'water', u'plan', u'prove', u'cost']
[u'white', u'supremacist', u'threaten', u'perth', u'ident']
[u'woman', u'admit', u'psych', u'ward', u'daughter', u'murder']
[u'woman', u'remand', u'juri', u'fail', u'reach', u'murder']
[u'work', u'start', u'coastal', u'subdivis']
[u'yacht', u'racer', u'clubhous', u'access']
[u'young', u'abattoir', u'fall', u'victim', u'drought']
[u'zeta', u'jone', u'hear', u'postpon', u'take', u'pill']
[u'armstrong', u'aim', u'number', u'seven']
[u'athen', u'declar', u'readi', u'game']
[u'australian', u'miss', u'ski', u'accid']
[u'aust', u'restructur', u'iraq', u'forc']
[u'ballot', u'bungl', u'forc', u'rottnest', u'accommod', u'redraw']
[u'barnett', u'confid', u'liber', u'govern']
[u'bartlett', u'ask', u'labor', u'hold', u'decis']
[u'beatti', u'dismiss', u'energi', u'market', u'concern']
[u'beatti', u'swear', u'dividend', u'power', u'compani']
[u'blast', u'shake', u'isra', u'embassi']
[u'bomber', u'power', u'upset']
[u'brown', u'call', u'transpar', u'disput']
[u'builder', u'predict', u'healthi', u'hous', u'industri']
[u'carlton', u'curtain', u'raiser', u'highlight', u'indigen']
[u'chines', u'dissid', u'head', u'australia', u'report']
[u'climat', u'wrong', u'unreli', u'latham']
[u'cowboy', u'continu', u'final', u'charg']
[u'crow', u'bounc', u'kangaroo', u'sluggish', u'encount']
[u'dajka', u'expel', u'train', u'camp']
[u'dajka', u'fight', u'olymp', u'dump']
[u'deadlin', u'pass', u'agreement', u'global', u'free']
[u'deputi', u'compar', u'latham', u'quack']
[u'diver', u'join', u'search', u'miss']
[u'donald', u'surg', u'scandinavian', u'lead']
[u'drink', u'driver', u'time', u'limit']
[u'elect', u'send', u'troop', u'brown']
[u'environ', u'dept', u'follow', u'whale', u'sight']
[u'environ', u'group', u'air', u'tunnel', u'concern']
[u'feder', u'foil', u'santoro', u'magic']
[u'fisherman', u'lake', u'fyan']
[u'foreign', u'briefli', u'kidnap', u'west', u'bank']
[u'liber', u'parti', u'director', u'nomin']
[u'foster', u'parent', u'charg', u'child', u'offenc']
[u'freo', u'away', u'continu']
[u'blast', u'kill', u'belgium']
[u'govt', u'move', u'regain', u'control', u'mersey', u'hospit']
[u'govt', u'iraq', u'forc', u'restructur', u'criticis']
[u'govt', u'urg', u'consult', u'communiti', u'coco', u'plan']
[u'greek', u'cypriot', u'announc', u'fresh', u'initi', u'boost']
[u'rule', u'odumb', u'come', u'week']
[u'indigen', u'leader', u'discuss', u'higher', u'educ', u'chang']
[u'probe', u'olymp', u'corrupt', u'claim']
[u'iraqi', u'kidnapp', u'extend', u'execut', u'deadlin']
[u'judg', u'decid', u'french', u'guantanamo', u'men', u'fate']
[u'khouri', u'fight', u'credibl']
[u'labor', u'prepar', u'elect']
[u'late', u'tate', u'sink', u'shark']
[u'latham', u'wont', u'speak', u'committe', u'head', u'caucus']
[u'launceston', u'scientist', u'award', u'climat', u'research']
[u'lion', u'miaow', u'swan']
[u'liverpool', u'ahead', u'stadium']
[u'talk', u'polic', u'latest', u'azaria', u'claim']
[u'mar', u'mission', u'learn', u'lesson', u'histori']
[u'minist', u'admit', u'larg', u'scale', u'land', u'grant', u'problem']
[u'minist', u'appeal', u'indigen', u'educ', u'idea']
[u'minist', u'defend', u'juvenil', u'detent', u'secur']
[u'minist', u'push', u'ahead', u'civic', u'develop']
[u'mottram', u'break', u'minut', u'barrier']
[u'mottram', u'break', u'minut', u'barrier']
[u'murder', u'victim', u'memori', u'unveil', u'perth']
[u'nato', u'send', u'advanc', u'team', u'work', u'iraq']
[u'nemmco', u'dismiss', u'power', u'shortag', u'claim']
[u'norwood', u'blaze', u'claim', u'elder', u'man', u'life']
[u'polic', u'drug', u'haul']
[u'olyroo', u'lose', u'olymp', u'warm']
[u'opal', u'complet', u'spanish', u'rout']
[u'pakistani', u'surviv', u'suicid', u'bomb', u'attack']
[u'phoenix', u'triumph', u'record', u'crowd']
[u'phone', u'gaug', u'opinion', u'age', u'care']
[u'pie', u'snatch', u'luckless', u'tiger']
[u'polic', u'charg', u'morayfield', u'kill']
[u'polic', u'link', u'tongeren', u'perth', u'race', u'crime']
[u'powel', u'send', u'green', u'olymp', u'warn']
[u'powel', u'urg', u'sudan', u'meet', u'demand']
[u'princ', u'lead', u'tiger', u'victori']
[u'coalit', u'bicker', u'unhelp', u'comment']
[u'rathbon', u'give', u'wallabi', u'victori']
[u'reiv', u'downplay', u'melbourn', u'hous', u'price', u'fall']
[u'sarwan', u'lara', u'defi', u'england']
[u'search', u'intensifi', u'miss', u'canoeist']
[u'senat', u'committe', u'finalis', u'report']
[u'serena', u'pull', u'diego', u'quarter']
[u'singh', u'leader', u'michigan']
[u'stuppl', u'stretch', u'open', u'lead']
[u'sudan', u'reject', u'resolut', u'darfur']
[u'suicid', u'bomber', u'embassi', u'uzbekistan']
[u'swan', u'hop', u'close', u'contest']
[u'threat', u'spark', u'push', u'tougher', u'anti', u'racism', u'law']
[u'russian', u'reach', u'semi', u'serena', u'withdraw']
[u'charg', u'slave', u'offenc']
[u'crackdown', u'target', u'anim', u'right', u'extremist']
[u'warn', u'sudan', u'darfur', u'atroc']
[u'begin', u'guantanamo', u'prison', u'review']
[u'tongeren', u'deni', u'make', u'death', u'threat']
[u'volunt', u'weed', u'penguin', u'danger']
[u'wallabi', u'prepar', u'tough', u'condit']
[u'wall', u'street', u'make', u'slight', u'gain']
[u'william', u'knock', u'tyson']
[u'plan', u'tighter', u'region', u'defenc', u'tie']
[u'ambul', u'disput', u'head']
[u'warn', u'prescript', u'govern']
[u'athlet', u'tunic', u'real', u'olymp']
[u'aussi', u'rower', u'claim', u'gold', u'spain']
[u'australia', u'close', u'achiev', u'employ']
[u'australia', u'damag', u'cycl', u'drug', u'scandal']
[u'bangladesh', u'flood', u'spark', u'diseas', u'crisi']
[u'biker', u'restaur', u'record']
[u'cat', u'theyr', u'genuin', u'contend']
[u'chief', u'minist', u'promis', u'steadi', u'govern']
[u'child', u'abus', u'report', u'rise']
[u'chines', u'polic', u'rescu', u'kidnap', u'toddler']
[u'chines', u'troop', u'forc', u'hong', u'kong']
[u'clijster', u'open']
[u'consum', u'turn', u'expens', u'lamb']
[u'crash', u'inquiri', u'like', u'examin', u'chopper', u'weight']
[u'dajka', u'leav', u'olymp', u'train', u'camp']
[u'davenport', u'cruis', u'diego', u'final']
[u'democrat', u'hop', u'senat', u'seat']
[u'democrat', u'urg', u'review', u'discrimin']
[u'demon']
[u'demon', u'wari', u'wound', u'hawk']
[u'donald', u'close', u'scandinavian', u'master']
[u'drive', u'teacher', u'nervous', u'licenc']
[u'eagl', u'coast', u'victori']
[u'dead', u'fresh', u'fallujah', u'fight']
[u'feder', u'roddick', u'toronto', u'final']
[u'ferguson', u'focus', u'premiership']
[u'year', u'critic', u'condit', u'metr']
[u'forestri', u'blueprint', u'spark', u'controversi']
[u'kill', u'suspect', u'iraq', u'suicid', u'bomb']
[u'star', u'gile', u'stun', u'windi']
[u'french', u'troop', u'begin', u'darfur', u'mission']
[u'gang', u'rape', u'alleg', u'startl', u'polic']
[u'googl', u'auction', u'websit', u'go', u'live']
[u'govt', u'fund', u'sydney', u'campus']
[u'graffiti', u'squad', u'clean', u'respons', u'time']
[u'green', u'art', u'polici', u'target', u'concern']
[u'gunmen', u'kill', u'soldier', u'south', u'western', u'pakistan']
[u'howard', u'label', u'senat', u'inquiri', u'process', u'shambl']
[u'hundr', u'protest', u'central', u'militari', u'area']
[u'inca', u'observatori', u'uncov', u'peru']
[u'independ', u'fail', u'experi', u'boswel']
[u'indonesian', u'troop', u'kill', u'aceh', u'separatist', u'rebel']
[u'intellig', u'drug', u'find']
[u'iraqi', u'milit', u'extend', u'hostag', u'deadlin']
[u'israel', u'mull', u'restrict', u'jewish', u'extremist']
[u'jetstar', u'investig', u'seatbelt', u'slash']
[u'junior', u'cyclist', u'medal']
[u'knight', u'stay', u'touch']
[u'labor', u'claim', u'signific', u'budget', u'save']
[u'labor', u'choic', u'week']
[u'lomu', u'leav', u'hospit', u'kidney', u'transplant']
[u'inflat', u'ensur', u'flat', u'rat', u'costello']
[u'man', u'climb']
[u'mcewen', u'spearhead', u'team']
[u'mcgrath', u'prim', u'ash', u'battl']
[u'meningococc', u'spate', u'rais', u'public', u'fear']
[u'merger', u'push', u'worri', u'shire', u'associ']
[u'miss', u'person', u'week', u'focus', u'famili', u'trauma']
[u'myskina', u'earn', u'final', u'meet', u'davenport']
[u'keep', u'watch', u'earli', u'bushfir', u'risk']
[u'polic', u'secur', u'guard', u'deadlin']
[u'pakistan', u'vow', u'continu', u'fight', u'terror']
[u'panel', u'examin', u'mental', u'health']
[u'perth', u'record', u'juli']
[u'pittman', u'second', u'belgium']
[u'poland', u'mark', u'anniversari', u'warsaw', u'upris']
[u'polic', u'appeal', u'help', u'miss', u'tourist']
[u'polic', u'investig', u'steal', u'forklift', u'crash']
[u'port', u'remain', u'posit', u'despit', u'defeat']
[u'possibl', u'spurr', u'erupt', u'worri', u'geologist']
[u'promot', u'back', u'william', u'klitschko', u'showdown']
[u'land', u'clear', u'law', u'failur', u'anderson']
[u'put', u'homework', u'review']
[u'young', u'nation', u'membership', u'flounder']
[u'rooster', u'storm']
[u'rooster', u'stay', u'weather', u'storm']
[u'ignor', u'flood', u'risk', u'opposit', u'say']
[u'saint', u'expect', u'physic', u'clash']
[u'charg', u'paedophil', u'offenc']
[u'secur', u'guard', u'fail', u'meet', u'polic', u'deadlin']
[u'seventeen', u'injur', u'pragu', u'explos']
[u'singh', u'pull', u'clear', u'michigan']
[u'stamp', u'duti', u'figur', u'point', u'strong', u'market']
[u'sudan', u'say', u'rebel', u'spread', u'fight', u'east']
[u'sudan', u'accept', u'resolut']
[u'govt', u'accus', u'hord', u'elect', u'chest']
[u'marin', u'communiti', u'celebr', u'shark']
[u'terrorist', u'traine', u'surpris']
[u'tesk', u'share', u'british', u'open', u'lead']
[u'trescothick', u'set', u'edgbaston', u'record']
[u'turkish', u'firm', u'suspend', u'iraqi', u'oper']
[u'turkish', u'hold', u'captiv', u'iraq']
[u'lebanes', u'seiz', u'iraq', u'ministri']
[u'union', u'claim', u'miner', u'hold', u'hostag', u'billiton']
[u'place', u'tough', u'travel', u'restrict', u'cuban']
[u'vatican', u'argu', u'femin', u'undermin', u'famili']
[u'opposit', u'unveil', u'order', u'polici']
[u'west', u'bank', u'verg', u'unpreced', u'chao']
[u'woman', u'kill', u'renov', u'accid']
[u'world', u'trade', u'negoti', u'strike', u'deal']
[u'sight', u'trade', u'deal', u'reviv']
[u'disput', u'plastic', u'reduct', u'claim']
[u'actu', u'seek', u'casual', u'worker', u'right']
[u'airport', u'manag', u'move', u'allay', u'council', u'concern']
[u'black', u'robinson', u'wallabi', u'test']
[u'alleg', u'gang', u'leader', u'threat', u'court', u'tell']
[u'alleg', u'offend', u'refus', u'bail']
[u'make', u'bruce', u'highway', u'flood', u'pledg']
[u'speak', u'doctor', u'fatigu']
[u'ambul', u'ban', u'remain', u'place']
[u'ambul', u'union', u'vow', u'continu', u'fight']
[u'ancient', u'babylon', u'ruin', u'foreign', u'troop', u'iraqi']
[u'asbesto', u'put', u'risk', u'union', u'say']
[u'aust', u'hand', u'baghdad', u'traffic', u'control']
[u'australian', u'warn', u'terror', u'risk']
[u'weather', u'delay', u'nasa', u'mercuri', u'messeng']
[u'bali', u'bomber', u'switch', u'jail']
[u'billit', u'disput', u'escal', u'lock']
[u'continu', u'south', u'east']
[u'bodi', u'near', u'outback', u'rail', u'line']
[u'boomer', u'opal', u'lose', u'olymp', u'warm']
[u'boulder', u'beach', u'black', u'bean', u'blunder']
[u'brumbi', u'upbeat', u'bathhous', u'tender', u'process']
[u'builder', u'insur', u'protest', u'parliament', u'hous']
[u'bushfir', u'danger', u'period', u'begin']
[u'cafe', u'worker', u'diagnos', u'hepat']
[u'diesel', u'includ', u'ethanol', u'debat']
[u'govt', u'help', u'nation', u'trust']
[u'hunter', u'tourism', u'rethink']
[u'camp', u'qualiti', u'call', u'volunt']
[u'bomb', u'target', u'christian', u'iraq']
[u'casual', u'employ', u'hit', u'region', u'hard']
[u'casual', u'invalu', u'tourism']
[u'children', u'care', u'feel', u'need']
[u'citrus', u'canker', u'inspect', u'continu', u'year']
[u'close', u'door', u'blame', u'death']
[u'coal', u'construct', u'start']
[u'coast', u'miss', u'person', u'urg', u'famili']
[u'coat', u'give', u'athen', u'thumb']
[u'cobb', u'reliv', u'outback', u'trek']
[u'communiti', u'urg', u'fight', u'hospit', u'servic']
[u'cop', u'implic', u'alic', u'fight']
[u'coron', u'advis', u'acquit', u'lawyer']
[u'council', u'concern', u'canberra', u'airport', u'freight']
[u'council', u'hesit', u'perman', u'cyclon', u'traci']
[u'council', u'sign', u'cross', u'border', u'deal']
[u'council', u'upbeat', u'renmark', u'plan']
[u'cowra', u'boost', u'water', u'restrict']
[u'crash', u'leav', u'woman', u'critic']
[u'crown', u'open', u'case', u'snowtown', u'murder', u'trial']
[u'danih', u'play', u'spot']
[u'davenport', u'claim', u'titl', u'trick']
[u'death', u'toll', u'mount', u'shop', u'centr']
[u'delay', u'cattl', u'graze', u'report']
[u'dive', u'mishap', u'put', u'hospit']
[u'doctor', u'warn', u'earli', u'birth', u'carri', u'health', u'risk']
[u'dolphin', u'chief', u'shake', u'attack']
[u'donald', u'break', u'european', u'duck']
[u'doubl', u'road', u'fatal', u'childer']
[u'concern', u'secur', u'guard', u'interview']
[u'drink', u'countri', u'footbal', u'cultur', u'carey']
[u'electr', u'blanket', u'blame', u'hous']
[u'chess', u'champ', u'appli', u'asylum', u'japan']
[u'farmer', u'worri', u'agreement', u'loophol']
[u'firm', u'sandgat', u'rail', u'work']
[u'fisheri', u'reopen', u'restrict']
[u'flawless', u'feder', u'take', u'toronto', u'titl']
[u'flinder', u'provid', u'better', u'outlook', u'stroke', u'victim']
[u'flood', u'destroy', u'crop', u'north', u'korea']
[u'gallop', u'promis', u'better', u'mental', u'health', u'servic']
[u'german', u'leader', u'attend', u'warsaw', u'upris']
[u'gile', u'spin', u'england', u'victori']
[u'gippsland', u'builder', u'join', u'insur', u'protest']
[u'girlfriend', u'fear', u'miss', u'english', u'tourist']
[u'goldfield', u'hop', u'relationship', u'centr']
[u'govt', u'open', u'experiment', u'weather', u'bureau', u'shopfront']
[u'govt', u'urg', u'chang', u'indigen', u'legal', u'tender']
[u'govt', u'urg', u'follow', u'feral', u'anim', u'scheme']
[u'govt', u'urg', u'wind', u'farm']
[u'govt', u'want', u'quick', u'passag']
[u'gracetown', u'cliff', u'collaps', u'claim', u'court']
[u'gracetown', u'cliff', u'collaps', u'claim', u'hear', u'court']
[u'grazier', u'set', u'sight', u'shoot', u'gold']
[u'green', u'target', u'hunter', u'bulk', u'bill', u'declin']
[u'group', u'boost', u'farm', u'skill']
[u'group', u'say', u'fish', u'chang', u'ignor', u'net', u'issu']
[u'group', u'worri', u'train', u'timet', u'derail', u'tourism']
[u'gunmen', u'kill', u'afghan', u'soldier', u'elect', u'attack']
[u'gunmen', u'kill', u'suspect', u'collabor', u'gaza', u'hospit']
[u'hardi', u'dump', u'share', u'inquiri', u'hear']
[u'har', u'race', u'trainer', u'disqualifi', u'drug', u'test']
[u'hear', u'probe', u'council', u'elect', u'disput']
[u'help', u'agenc', u'forc', u'downsiz', u'oper']
[u'help', u'offer', u'veget', u'manag', u'law', u'impact']
[u'democraci', u'support', u'talk', u'beij']
[u'hope', u'gympi', u'gold', u'worker']
[u'hope', u'region', u'relationship', u'centr']
[u'hous', u'price', u'fall', u'bendigo']
[u'hundr', u'ralli', u'militari', u'train', u'plan']
[u'industri', u'woe', u'close', u'ambul', u'station']
[u'inquest', u'investig', u'aborigin', u'children', u'death']
[u'iraqi', u'presid', u'blame', u'zarqawi', u'church', u'bomb']
[u'order', u'ambul', u'union', u'lift', u'work', u'ban']
[u'kidnap', u'turkish', u'nation', u'execut', u'iraq']
[u'kingaroy', u'council', u'budget', u'deliv', u'rate', u'rise']
[u'knightley', u'fall', u'domino']
[u'knight', u'raider', u'face', u'battl', u'final', u'spot']
[u'landhold', u'warn', u'bushfir', u'season', u'fin']
[u'lara', u'wont', u'quit', u'despit', u'windi', u'woe']
[u'leader', u'congratul', u'troop']
[u'lebanes', u'hostag', u'free', u'iraq']
[u'lebanes', u'hostag', u'releas', u'iraq']
[u'return', u'champion', u'trophi']
[u'lib', u'offer', u'expand', u'senior', u'concess']
[u'loss', u'concentr', u'cost', u'bok', u'say', u'white']
[u'manufactur', u'activ', u'rise']
[u'matthew', u'say', u'lion', u'sure', u'thing']
[u'mayor', u'lament', u'meatwork', u'woe']
[u'meet', u'consid', u'softwood', u'industri', u'futur']
[u'worker', u'want', u'share', u'resourc', u'boom']
[u'minist', u'promis', u'medicar', u'fund', u'licenc']
[u'miss', u'person', u'urg', u'contact', u'famili']
[u'murali', u'lanka', u'test', u'squad']
[u'murder', u'boy', u'famili', u'video', u'game', u'maker']
[u'nation', u'miss', u'person', u'week', u'launch']
[u'nevill', u'smith', u'merg']
[u'sydney', u'train', u'timet', u'disastr']
[u'norther', u'contest', u'plate']
[u'nurs', u'boost', u'address', u'hospit', u'workload']
[u'builder', u'marri', u'british', u'royalti']
[u'offici', u'enhanc', u'safeti']
[u'ogradi', u'sprint', u'hamburg', u'victori']
[u'opposit', u'youth', u'crime', u'polici']
[u'pair', u'face', u'court', u'trucki', u'shoot']
[u'palio', u'resign', u'chief', u'execut']
[u'defend', u'extravag', u'travel', u'expens']
[u'welcom', u'home', u'troop']
[u'confirm', u'aust', u'pilot', u'death']
[u'poki', u'mean', u'staff', u'port', u'panther']
[u'polic', u'investig', u'melbourn', u'shoot']
[u'polic', u'play', u'station', u'concern']
[u'polic', u'renew', u'plea', u'help', u'miss', u'fruit', u'grower']
[u'polic', u'train', u'death', u'accident']
[u'polic', u'seek', u'help', u'catch', u'school', u'vandal']
[u'port', u'player', u'charg']
[u'public', u'ask', u'help', u'miss', u'local']
[u'public', u'prais', u'crime', u'fight', u'help']
[u'electr', u'upgrad', u'deadlin', u'question']
[u'record', u'number', u'entrant', u'fist', u'film']
[u'report', u'suggest', u'shift', u'redfern', u'needl']
[u'research', u'studi', u'rare', u'shark']
[u'retail', u'sale', u'surg']
[u'retir', u'unit', u'develop', u'consid', u'site']
[u'remain', u'prioriti', u'search', u'industri']
[u'ring', u'cycl', u'rehears', u'resum']
[u'rooney', u'price']
[u'leav', u'polic', u'offic', u'injur']
[u'farmer', u'welcom', u'deal']
[u'hotb', u'paedophil', u'rann']
[u'santo', u'build', u'fetch']
[u'pleas', u'workplac', u'endors']
[u'school', u'adopt', u'olymp', u'swim', u'hope']
[u'search', u'continu', u'miss', u'canoeist']
[u'season', u'charman', u'otten']
[u'secur', u'guard', u'charg', u'murder']
[u'senat', u'inquiri', u'expect', u'releas', u'trade', u'report']
[u'senat', u'recommend', u'labor']
[u'sensor', u'tassi', u'devil', u'declin']
[u'serena', u'miss', u'montreal', u'event']
[u'kill', u'injur', u'afghan', u'border', u'clash']
[u'shake', u'possibl', u'elector', u'boundari']
[u'shark', u'fisher', u'fight', u'industri']
[u'shark', u'lover', u'plung']
[u'singh', u'ralli', u'michigan']
[u'smelli', u'salami', u'poster', u'anger', u'itali']
[u'somali', u'hostag', u'releas', u'report']
[u'lankan', u'lift', u'asia']
[u'stock', u'finish', u'close', u'week', u'high']
[u'studi', u'consid', u'sport', u'stadium', u'plan']
[u'studi', u'excus', u'avoid', u'vietnam']
[u'stuppl', u'hold', u'tesk', u'british']
[u'sudan', u'reject', u'resolut', u'deadlin']
[u'swan', u'boss', u'face', u'fine', u'barrag']
[u'sydney', u'guard', u'face', u'murder', u'charg']
[u'sydney', u'secur', u'guard', u'talk', u'polic']
[u'teen', u'particip', u'self', u'harm', u'studi']
[u'teeth', u'problem', u'prospector']
[u'telstra', u'sign', u'deal', u'tabcorp', u'network']
[u'tenni', u'coach', u'guilti', u'offenc']
[u'tiger', u'deni', u'wallac', u'link']
[u'time', u'come', u'hard', u'decis', u'springborg']
[u'time', u'run', u'power', u'station', u'bid']
[u'toll', u'rise', u'paraguay', u'supermarket', u'inferno']
[u'tunnel', u'ralli', u'workmat', u'widow']
[u'face', u'judiciari']
[u'union', u'happi', u'compani', u'respons', u'workplac']
[u'secur', u'medic', u'school']
[u'rais', u'terror', u'alert', u'financi', u'district']
[u'vanadium', u'submiss', u'close']
[u'vermeulen', u'second', u'superbik', u'championship']
[u'back', u'deal', u'talk']
[u'govt', u'seek', u'lift', u'ambo', u'work', u'ban']
[u'video', u'surveil', u'fuel', u'petrol', u'thief', u'probe']
[u'wait', u'list', u'program', u'work', u'beatti']
[u'test', u'counter', u'terror', u'respons']
[u'websit', u'kill', u'turkish', u'hostag']
[u'week', u'recognis', u'nurs', u'effort']
[u'know', u'malaysian', u'businessman', u'trial', u'fraud']
[u'whale', u'tangl', u'coast']
[u'give', u'pioneer', u'final', u'boost']
[u'wollongong', u'land', u'medic', u'school']
[u'woman', u'face', u'marijuana', u'drive', u'charg']
[u'workcov', u'defend', u'compens', u'requir']
[u'work', u'wind', u'station', u'januari']
[u'fine', u'print', u'worri', u'howard']
[u'yandi', u'oper']
[u'youth', u'sentenc', u'drink', u'drive', u'death']
[u'yuendumu', u'shoot', u'prompt', u'polic', u'probe']
[u'zidan', u'injur', u'real', u'japan', u'tour']
[u'year', u'intellig', u'latest', u'terror']
[u'accus', u'peopl', u'smuggler', u'plead', u'guilti']
[u'acid', u'rain', u'counteract', u'global', u'warm']
[u'milan', u'chelsea', u'friend']
[u'admit', u'child', u'protect', u'failur']
[u'assembl', u'gear', u'elect']
[u'urg', u'report', u'dodgi', u'sale', u'scheme']
[u'airport', u'plan', u'bird', u'turf']
[u'black', u'chang']
[u'ord', u'hit', u'time', u'high']
[u'stanc']
[u'ambul', u'worker', u'lift', u'work', u'ban']
[u'american', u'sprinter', u'hand', u'year', u'dope']
[u'arrest', u'polic', u'drug', u'raid']
[u'close', u'week', u'high']
[u'asylum', u'seeker', u'arriv', u'nauru']
[u'athen', u'offici', u'introduc', u'olymp', u'road', u'rule']
[u'attack', u'halt', u'export', u'northern', u'iraq']
[u'aussi', u'chart', u'record', u'number']
[u'australian', u'domin', u'etchel', u'place']
[u'australia', u'sport', u'develop', u'pacif']
[u'averag', u'harvest', u'tip', u'south', u'east']
[u'bail', u'refus', u'attempt', u'murder', u'charg']
[u'beat', u'tyson', u'face', u'knee', u'surgeri']
[u'beatti', u'match']
[u'beatti', u'urg', u'feder', u'labor']
[u'beatti', u'warn', u'power', u'compani', u'problem']
[u'billiton', u'probe', u'hear', u'evid']
[u'downpour', u'bypass', u'riverland']
[u'brickwork', u'plant', u'hunter']
[u'bushfir', u'inquest', u'narrow', u'say']
[u'bushfir', u'season', u'concern', u'heat']
[u'call', u'releas', u'cycl', u'inquiri', u'report']
[u'canefarm', u'consid', u'ethanol', u'sustain']
[u'cannon', u'feel', u'pressur', u'regain', u'wallabi', u'spot']
[u'bomb', u'north', u'baghdad', u'kill', u'armi']
[u'carr', u'back', u'senat', u'inquiri', u'report']
[u'carr', u'bolster', u'school', u'disciplin']
[u'carr', u'defend', u'redfern', u'riot', u'inquiri']
[u'chess', u'champ', u'search', u'home']
[u'choppi', u'water', u'spain', u'gibraltar']
[u'claw', u'come', u'registr', u'plan']
[u'cleaner', u'strike', u'contract']
[u'coalit', u'pull', u'clear', u'poll']
[u'commonwealth', u'bank', u'staff', u'half', u'strike']
[u'launch', u'joint', u'polici', u'ahead']
[u'council', u'consid', u'communiti', u'fund', u'distribut']
[u'council', u'merger', u'discuss']
[u'council', u'urg', u'invest', u'ferri', u'servic']
[u'court', u'challeng', u'lake', u'cowal', u'nativ', u'titl']
[u'court', u'decis', u'like', u'delay', u'project']
[u'croc', u'captain', u'upbeat', u'come', u'season']
[u'croc', u'upbeat', u'come', u'season']
[u'cult', u'school', u'investig']
[u'dajka', u'lodg', u'appeal', u'expuls']
[u'davenport', u'rise', u'second', u'world', u'rank']
[u'deal', u'green', u'light', u'shark', u'interpret', u'centr']
[u'develop', u'preserv', u'mine', u'heritag']
[u'dingo', u'research', u'reveal', u'histori']
[u'doctor', u'crack', u'year', u'digest', u'puzzl']
[u'doctor', u'urg', u'close', u'watch', u'meningococc', u'symptom']
[u'doubt', u'cast', u'rain', u'predict']
[u'drought', u'fail', u'impact', u'meat', u'qualiti', u'price']
[u'eagl', u'water', u'win', u'rise', u'star']
[u'ekka', u'sleep', u'stoush', u'resolv']
[u'electr', u'disconnect', u'plan', u'unfair', u'say', u'sacoss']
[u'everton', u'confid', u'rooney', u'stay']
[u'expert', u'converg', u'bendigo', u'salin', u'talk']
[u'extra', u'secur', u'isra', u'athlet']
[u'back', u'embattl', u'eriksson']
[u'famili', u'unhappi', u'find', u'death']
[u'farmer', u'lobbi', u'govt', u'sign', u'kyoto']
[u'stretch', u'german', u'relat']
[u'fear', u'air', u'popul', u'boost', u'plan']
[u'firefight', u'battl', u'recycl', u'plant', u'blaze']
[u'fisher', u'await', u'news', u'manag', u'plan']
[u'flight', u'check', u'text', u'away']
[u'isra', u'captiv', u'clear', u'hezbollah', u'tie']
[u'forum', u'consid', u'broadband', u'access']
[u'fund', u'offer', u'rural', u'project']
[u'govt', u'back', u'polic', u'train', u'brogden']
[u'govt', u'defend', u'sydney', u'train', u'run', u'time']
[u'govt', u'examin', u'redevelop', u'option', u'block']
[u'govt', u'urg', u'crack', u'illeg', u'land', u'clear']
[u'govt', u'urg', u'replac', u'land', u'administr']
[u'green', u'bridg', u'face', u'legal', u'challeng']
[u'green', u'light', u'intersect', u'safeti', u'work']
[u'green', u'seek', u'penalti', u'workplac', u'death']
[u'hama', u'threaten', u'bombard', u'isra', u'town']
[u'harri', u'jenkin', u'rememb', u'parliament']
[u'heavi', u'rainfal', u'caus', u'flood']
[u'help', u'offer', u'health', u'servic', u'chang']
[u'henin', u'hardenn', u'compet', u'athen']
[u'hewitt', u'arthur', u'advanc', u'cincinnati']
[u'hobart', u'die', u'mening']
[u'hopper', u'centr', u'alleg']
[u'hurdler', u'send', u'omin', u'warn', u'ahead', u'athen']
[u'indonesia', u'mark', u'border', u'concret', u'pillar']
[u'injuri', u'strike', u'power']
[u'italian', u'cyclist', u'bartoli', u'rule', u'olymp']
[u'jackeroo', u'miss', u'cape', u'york']
[u'jobless', u'level', u'fall', u'gwydir', u'elector']
[u'julian', u'mcmahon', u'play', u'doom']
[u'karaok', u'king', u'queen', u'crown']
[u'kersten', u'snub', u'team', u'mat', u'manag']
[u'recal', u'car']
[u'kill', u'prompt', u'turkish', u'trucker', u'work']
[u'konica', u'minolta', u'take', u'line', u'honour']
[u'labor', u'claim', u'govt', u'massag', u'anti', u'terror', u'spend']
[u'labor', u'offer', u'condit', u'support']
[u'labor', u'urg', u'govt', u'fund', u'infant', u'vaccin']
[u'labor', u'want', u'releas', u'cycl', u'dope', u'report']
[u'languag', u'film', u'take', u'award']
[u'latest', u'terror', u'intellig', u'date']
[u'look', u'forward', u'speedi', u'return']
[u'legal', u'expert', u'discuss', u'anti', u'terror', u'strategi']
[u'local', u'doctor', u'involv', u'medic', u'school']
[u'lownd', u'switch', u'team']
[u'mackay', u'water', u'alloc']
[u'mahwir', u'come', u'right', u'fix', u'suspect', u'bowl']
[u'die', u'farm', u'accid']
[u'court', u'norfolk', u'murder']
[u'kill', u'melbourn', u'hous', u'collaps']
[u'question', u'sydney', u'solicitor', u'murder']
[u'market', u'remain', u'stabl', u'price', u'rise']
[u'mass', u'grave', u'ivori', u'coast']
[u'mass', u'grave', u'uncov', u'ivori', u'coast']
[u'matilda', u'begin', u'zircon', u'explor']
[u'memori', u'park', u'honour', u'westgat', u'disast', u'victim']
[u'million', u'bangladesh', u'flood', u'victim', u'need', u'food']
[u'firm', u'urg', u'consid', u'nativ', u'titl', u'issu']
[u'worker', u'consid', u'improv', u'offer']
[u'mix', u'fortun', u'port', u'tribun']
[u'mooney', u'face', u'rough', u'play', u'charg']
[u'servic', u'cut', u'fear']
[u'citrus', u'tree', u'destroy']
[u'scrap', u'daintre', u'hous', u'fail']
[u'back', u'labor', u'stanc']
[u'back', u'probe', u'reef', u'fish', u'closur']
[u'question', u'medic', u'school', u'locat']
[u'want', u'extens', u'firewood', u'collect']
[u'netbal', u'reloc', u'hit', u'impass']
[u'group', u'suspect', u'iraq', u'church', u'attack']
[u'chang', u'tip', u'rat']
[u'confirm', u'bodi']
[u'north', u'korea', u'call', u'talk']
[u'consid', u'hardi', u'product']
[u'review', u'cult', u'school', u'registr']
[u'offic', u'dead', u'polic']
[u'opal', u'bounc', u'czech']
[u'opposit', u'highlight', u'naracoort', u'doctor', u'woe']
[u'oral', u'cancer', u'awar', u'program', u'launch']
[u'pacif', u'island', u'good', u'world']
[u'paramed', u'tell', u'work', u'ban']
[u'parent', u'contract', u'plan', u'unlik', u'work']
[u'pbls', u'burswood', u'extend']
[u'philippin', u'arrest', u'bomb', u'suspect']
[u'plan', u'continu', u'miner', u'sand', u'plan']
[u'hear', u'veterinari', u'school']
[u'consid', u'labor', u'chang']
[u'polic', u'investig', u'hand', u'theft']
[u'polic', u'tough', u'liquor', u'licens']
[u'post', u'mortem', u'truck', u'accid', u'victim']
[u'pratt', u'move', u'montreal']
[u'produc', u'condemn', u'labor', u'choic']
[u'project', u'put', u'focus', u'malle', u'fowl', u'conserv']
[u'protea', u'tough', u'challeng', u'lanka']
[u'public', u'ask', u'help', u'miss', u'person']
[u'public', u'urg', u'help', u'miss']
[u'public', u'urg', u'safeti', u'respons']
[u'rain', u'dust', u'settler']
[u'campaign', u'target', u'public', u'school', u'fund']
[u'recycl', u'prove', u'posit', u'broom']
[u'cross', u'visit', u'saddam', u'fourth', u'time']
[u'report', u'point', u'strong', u'invest', u'growth']
[u'rescuer', u'free', u'trap', u'whale']
[u'research', u'consid', u'pesticid', u'impact']
[u'resid', u'look', u'inland', u'chang']
[u'resid', u'urg', u'prepar', u'sever', u'bushfir']
[u'rice', u'defend', u'terror', u'alert']
[u'riverland', u'retain', u'citrus']
[u'rural', u'bank', u'report', u'profit', u'good', u'outlook']
[u'clean', u'wild', u'weather']
[u'school', u'confirm', u'agreement', u'victim']
[u'schooli', u'coordin', u'announc', u'soon']
[u'score', u'milit', u'believ', u'kill', u'afghan']
[u'seventh', u'jordanian', u'take', u'hostag', u'iraq', u'say']
[u'sharon', u'approv', u'west', u'bank', u'settlement', u'push']
[u'sight', u'racecours', u'hous', u'festiv', u'fan']
[u'sixteen', u'refuge', u'arriv', u'nauru']
[u'snowdon', u'voic', u'concern']
[u'socceroo', u'skipper', u'moor', u'head', u'rover']
[u'southern', u'coast', u'limit', u'chang', u'possibl']
[u'statu', u'liberti', u'visit', u'resum']
[u'stray', u'dog', u'olymp', u'villag']
[u'strong', u'malle', u'properti']
[u'student', u'risk', u'poor', u'vision', u'studi']
[u'sudan', u'claim', u'declar']
[u'sink', u'treasur', u'exhibit', u'open', u'museum']
[u'suppli', u'fear', u'push', u'high']
[u'survey', u'highlight', u'skill', u'build', u'labour', u'shortag']
[u'survey', u'show', u'support', u'hotel', u'redevelop']
[u'taxi', u'marshal', u'trial', u'consid', u'success']
[u'teen', u'face', u'court', u'prostitut', u'death']
[u'territori', u'enact', u'compani', u'crackdown']
[u'thing', u'better', u'coke']
[u'kill', u'gaza', u'explos']
[u'trap', u'build', u'collaps']
[u'polic', u'offici', u'kill', u'baghdad']
[u'trade', u'deal', u'hit', u'fresh', u'hitch']
[u'trio', u'admit', u'role', u'perth', u'racist', u'attack']
[u'trio', u'rescu', u'burn']
[u'trucki', u'undergo', u'polic', u'drug', u'test']
[u'tuckey', u'seek', u'grain', u'council', u'revamp']
[u'tyson', u'knee', u'surgeri', u'call', u'success']
[u'union', u'angri', u'worker', u'rest', u'break']
[u'unit', u'liverpool', u'confid', u'champion', u'leagu']
[u'network', u'screen', u'polygami', u'drama']
[u'send', u'messeng', u'mercuri']
[u'vandal', u'attack', u'prompt', u'school', u'secur', u'upgrad']
[u'vandal', u'damag', u'launceston', u'school']
[u'wallac', u'pull', u'race', u'adelaid']
[u'walsh', u'ethiopian', u'post']
[u'western', u'town', u'extend', u'area']
[u'west', u'tamar', u'cyclist', u'win', u'world', u'titl']
[u'wide', u'alic', u'land', u'develop']
[u'windi', u'coach', u'back', u'lara']
[u'wit', u'will', u'identifi', u'accus', u'smuggler']
[u'worimi', u'land', u'council', u'woe', u'continu']
[u'world', u'champ', u'outclass', u'boomer']
[u'accus', u'pander', u'govern']
[u'yahoo', u'launch', u'localis', u'search']
[u'youth', u'question', u'break', u'claim']
[u'dead', u'mosul', u'clash']
[u'olymp', u'riddl', u'corrupt', u'report']
[u'injur', u'zimbabw', u'train', u'crash']
[u'reject', u'request', u'abort', u'documentari']
[u'aborigin', u'children', u'focus', u'famili', u'violenc']
[u'academ', u'see', u'benefit', u'alp', u'condit']
[u'accus', u'conspir', u'underworld', u'murder', u'refus']
[u'accus', u'secur', u'guard', u'refus', u'media', u'money']
[u'ban', u'cigarett', u'vend', u'machin']
[u'uni', u'receiv', u'mark']
[u'decid', u'fin', u'umpir', u'critic']
[u'african', u'union', u'send', u'troop', u'darfur']
[u'announc', u'quarantin', u'plan']
[u'back', u'labor', u'stanc']
[u'analyst', u'dubious', u'demand', u'portabl', u'video']
[u'armi', u'chief', u'reject', u'tank', u'critic']
[u'arsenal', u'real', u'madrid', u'agre', u'vieira', u'sale', u'report']
[u'artist', u'expect', u'townsvill']
[u'athen', u'guard', u'accus', u'crew', u'bash']
[u'athen', u'secur', u'guard', u'bash', u'crew', u'report']
[u'atsic', u'inquiri', u'extend', u'submiss', u'deadlin']
[u'attack', u'slash', u'children', u'beij']
[u'aussi', u'domin', u'etchel', u'world', u'champ']
[u'aust', u'invent', u'boon', u'safeti']
[u'australia', u'crack', u'bull', u'semen', u'market']
[u'aust', u'seek', u'dutch', u'treati', u'protect', u'asbesto', u'victim']
[u'belgium', u'mourn', u'explos', u'victim']
[u'bleak', u'futur', u'mental', u'health', u'servic']
[u'boomer', u'beat', u'angola', u'olymp', u'tournament']
[u'boost', u'plan', u'port', u'macdonnel', u'health', u'servic']
[u'break', u'hill', u'rain', u'hop', u'dri']
[u'bulldog', u'sack', u'rohd']
[u'bush', u'sign', u'australia', u'free', u'trade', u'agreement']
[u'bush', u'sign', u'aust', u'debat', u'continu']
[u'canberra', u'airport', u'expans', u'worri', u'resid']
[u'cane', u'crop', u'estim']
[u'cannon', u'wallabi', u'squad']
[u'cervic', u'cancer', u'screen', u'chang', u'risk', u'live']
[u'chang', u'afoot', u'local', u'elector', u'boundari']
[u'charg', u'lay', u'paraguay', u'shop', u'centr']
[u'china', u'asian', u'final']
[u'china', u'pakistan', u'kick', u'anti', u'terror', u'drill']
[u'citrus', u'canker', u'offic', u'plan', u'emerald']
[u'citylink', u'work', u'furious', u'clear', u'melbourn', u'road']
[u'claim', u'sugarcan', u'safe']
[u'clear', u'beatti', u'govt', u'bypass', u'claim']
[u'communiti', u'split', u'land', u'corridor', u'plan']
[u'council', u'seek', u'boost', u'migrant', u'number']
[u'council', u'consid', u'use', u'sturt', u'site']
[u'council', u'chang', u'servic', u'centr', u'role']
[u'council', u'consid', u'beach', u'develop', u'concern']
[u'council', u'upbeat', u'netbal', u'reloc']
[u'countri', u'peopl', u'lose', u'seat', u'chang', u'nation']
[u'court', u'hear', u'driver', u'unawar', u'accus', u'arm']
[u'court', u'hear', u'wine', u'grape', u'suppli', u'disput']
[u'court', u'tell', u'rapist', u'videotap', u'offenc']
[u'cowboy', u'pair', u'await', u'fit', u'test', u'bulldog', u'clash']
[u'creditor', u'pack', u'firm', u'return']
[u'reject', u'student', u'staff', u'ratio', u'figur']
[u'dajka', u'head', u'home', u'appeal']
[u'danish', u'armi', u'captain', u'charg', u'iraq', u'prison']
[u'darwin', u'celebr', u'steam', u'train', u'return']
[u'dead', u'zone', u'spread', u'gulf', u'mexico']
[u'death', u'toll', u'rise', u'india', u'monsoon', u'flood']
[u'decis', u'loom', u'kimberley', u'cotton']
[u'decis', u'loom', u'vietnam', u'veteran', u'memori', u'wall']
[u'defenc', u'worker', u'strike']
[u'test', u'continu', u'worker', u'murder', u'case']
[u'donat', u'flow', u'galleri']
[u'doubt', u'cast', u'dairi', u'plan']
[u'doubt', u'cast', u'cod', u'carrara']
[u'move', u'freez', u'guard', u'interview', u'money']
[u'driver', u'warn', u'condit']
[u'drug', u'addict', u'brew', u'poppi', u'seed', u'buy']
[u'drug', u'maker', u'deni', u'pressur', u'govt']
[u'eel', u'lyon', u'talk', u'panther']
[u'elector', u'boundari', u'chang', u'plan', u'hunter']
[u'emerg', u'crew', u'work', u'avert', u'flood', u'disast']
[u'england', u'schole', u'quit', u'intern', u'footbal']
[u'eriksson', u'grill']
[u'everton', u'sign', u'australian', u'defend']
[u'expand', u'shoe', u'target', u'grow', u'feet']
[u'fear', u'air', u'devonport', u'kindergarten', u'futur']
[u'feder', u'win', u'streak', u'snap']
[u'feder', u'streak', u'snap']
[u'feedback', u'seek', u'ocean', u'trawl', u'draft', u'plan']
[u'figur', u'highlight', u'tourism', u'job']
[u'financi', u'reassur', u'seek', u'cottag']
[u'wilkinson', u'return']
[u'remain', u'deadlock']
[u'garrett', u'tell', u'father', u'death']
[u'gaza', u'violenc', u'prove', u'need', u'reform']
[u'gbrmpa', u'reject', u'rotat', u'fish', u'closur']
[u'gibraltar', u'celebr', u'year', u'british', u'rule']
[u'govt', u'launch', u'elect', u'recycl', u'initi']
[u'govt', u'reveal', u'albani', u'waterfront', u'plan']
[u'govt', u'fast', u'track', u'marriag']
[u'greec', u'stage', u'extraordinari', u'safe', u'game']
[u'group', u'seek', u'saleyard', u'plan', u'rethink']
[u'guantanamo', u'inmat', u'alleg', u'abus', u'humili']
[u'hall', u'back', u'thorp', u'drug', u'claim']
[u'halliburton', u'mislead', u'account']
[u'hattonval', u'bushfir', u'threat', u'eas']
[u'hemp', u'cultiv', u'get', u'green', u'light']
[u'heroin', u'strategi', u'prompt', u'inject', u'room']
[u'high', u'wind', u'toll', u'wollongong', u'area']
[u'identif', u'paramount', u'peopl', u'smuggl', u'case']
[u'ignor', u'hardi', u'cri', u'innoc', u'inquiri', u'tell']
[u'inglewood', u'shire', u'water', u'cost']
[u'rat', u'stay', u'hold']
[u'investig', u'begin', u'meningococc', u'diseas']
[u'iraqi', u'insurg', u'free', u'hostag']
[u'conduct', u'prison', u'probe']
[u'irishman', u'kill', u'riyadh', u'shoot']
[u'isra', u'troop', u'push', u'deeper', u'gaza']
[u'itali', u'stun', u'olymp', u'basketbal', u'exhibit']
[u'jayawarden', u'sangakkara', u'slam', u'fifti', u'south']
[u'karratha', u'face', u'doctor', u'shortag']
[u'kewel', u'hop', u'anfield', u'peac']
[u'labor', u'plan', u'riski', u'warn']
[u'labor', u'vow', u'pay', u'place']
[u'laidley', u'budget', u'deliv', u'rate', u'rise']
[u'lamb', u'loss', u'reach', u'peak']
[u'local', u'govern', u'join', u'hardi']
[u'local', u'return', u'french', u'theatr', u'product']
[u'charg', u'worker', u'death']
[u'mauresmo', u'lead', u'seed', u'player', u'montreal']
[u'mayor', u'question', u'free', u'trade', u'deal', u'benefit']
[u'mildura', u'south', u'plan', u'document', u'releas']
[u'minist', u'want', u'tent', u'embassi', u'close']
[u'miss', u'farmhand', u'safe', u'dehydr']
[u'molik', u'farina', u'elia', u'advanc', u'stockholm']
[u'moor', u'blackburn', u'deal', u'collaps']
[u'communiti', u'join', u'cert']
[u'fund', u'seek', u'taxi', u'plan']
[u'snow', u'predict', u'alpin', u'resort']
[u'women', u'urg', u'stand', u'local', u'govt']
[u'seek', u'fire', u'power', u'station']
[u'napthin', u'join', u'call', u'lower', u'purnim', u'speed', u'limit']
[u'nauran', u'face', u'court', u'worker', u'murder', u'charg']
[u'centr', u'open', u'wollongong']
[u'polic', u'offic', u'kill', u'colombia', u'bomb']
[u'korea', u'missil', u'develop', u'concern']
[u'detail', u'waikeri', u'wineri', u'sale']
[u'compani', u'fin', u'illeg', u'clear']
[u'price', u'hit']
[u'olymp', u'weightlift', u'charg', u'melborn']
[u'olymp', u'weightlift', u'charg', u'prostitut']
[u'dead', u'injur', u'cabramatta', u'shoot']
[u'onlin', u'scam', u'pose', u'kerri', u'campaign', u'fundrais']
[u'opposit', u'youth', u'crime', u'polici']
[u'owen', u'give', u'liverpool', u'win', u'edg', u'roma']
[u'pair', u'plead', u'guilti', u'track', u'case']
[u'paramed', u'resum', u'talk']
[u'parent', u'push', u'uniform', u'school']
[u'parliamentari', u'foe', u'join', u'forc', u'launch', u'book']
[u'passeng', u'boost', u'whitsunday', u'airport']
[u'pfizer', u'seller', u'fake', u'viagra']
[u'polic', u'charg', u'gladston', u'drug', u'oper']
[u'polic', u'counter', u'derbi', u'crime', u'claim']
[u'policeman', u'succumb', u'ill']
[u'polic', u'truck', u'accid', u'victim']
[u'polic', u'probe', u'fuel', u'tanker', u'spill']
[u'polic', u'probe', u'rail', u'worker', u'death']
[u'polic', u'pursu', u'parrot', u'pilfer']
[u'polic', u'seek', u'fatal', u'crash', u'wit']
[u'polic', u'bolster', u'tennant', u'creek', u'number']
[u'polic', u'oppos', u'push', u'extend', u'hour']
[u'poor', u'respons', u'driver', u'fatigu', u'probe']
[u'pragu', u'attack']
[u'school', u'communiti', u'protest']
[u'probe', u'launch', u'train', u'blaze']
[u'push', u'safe', u'shear', u'technolog']
[u'push', u'promot', u'gawler', u'craton']
[u'professor', u'pioneer', u'incontin', u'cure']
[u'rail', u'overpass', u'name', u'honour', u'alic', u'pioneer']
[u'rain', u'aid', u'barossa', u'vineyard']
[u'rain', u'outlook', u'good', u'mitchel', u'grass', u'plain']
[u'recognit', u'council', u'youth', u'effort']
[u'region', u'doubt', u'cast', u'parent', u'contract']
[u'review', u'consid', u'careflight', u'chopper']
[u'warn', u'bushfir', u'threat']
[u'road', u'crash', u'claim', u'teen', u'life']
[u'rush', u'athen', u'ticket']
[u'russia', u'georgia', u'foot', u'separatist']
[u'sand', u'track', u'work', u'continu']
[u'school', u'cleaner', u'protest', u'privatis', u'plan']
[u'search', u'wynyard', u'continu']
[u'search', u'miss', u'student', u'north']
[u'servic', u'sector', u'growth', u'great', u'news', u'busi']
[u'servic', u'index', u'show', u'strong', u'recoveri']
[u'shark', u'bite', u'spear', u'fisherman']
[u'sheedi', u'call', u'improv', u'communic']
[u'shire', u'review', u'prove', u'cost']
[u'shire', u'suggest', u'opium', u'trial']
[u'shop', u'centr', u'owner', u'closur']
[u'charg', u'fatal', u'paraguayan']
[u'kill', u'light', u'plane', u'crash']
[u'sorenstam', u'readjust', u'sight', u'major', u'sweep']
[u'state', u'leader', u'amend']
[u'statu', u'liberti', u'open', u'despit', u'terror', u'fear']
[u'strategi', u'address', u'hospit', u'shortag']
[u'submiss', u'seek', u'daintre', u'hous']
[u'sudan', u'get', u'messag', u'loud', u'clear']
[u'talk', u'restart', u'ambul', u'disput']
[u'accus', u'anti', u'competit', u'poki', u'polici']
[u'galleri', u'unveil', u'unusu', u'victorian', u'paint']
[u'premier', u'urg', u'outlin', u'role', u'governor']
[u'teen', u'flee', u'brisban', u'bodi', u'court']
[u'telstra', u'strike', u'deal']
[u'thailand', u'ban', u'orang', u'utan', u'kickbox']
[u'thailand', u'criticis', u'tough', u'drug', u'polici']
[u'tourism', u'forum', u'discuss', u'voluntari', u'accredit']
[u'tourism', u'support', u'tip', u'elect', u'issu']
[u'tribut', u'flow', u'follow', u'policeman', u'death']
[u'troubl', u'kashmir', u'seek', u'host', u'intern']
[u'polic', u'arrest', u'terror', u'suspicion']
[u'agenc', u'pull', u'foreign', u'staff', u'gaza']
[u'defend', u'year', u'terror', u'alert']
[u'market', u'slide', u'hit', u'high']
[u'pilot', u'punish', u'mistak', u'stand']
[u'press', u'israel', u'settlement', u'expans']
[u'soldier', u'face', u'hear', u'ghraib', u'abus']
[u'soldier', u'abus', u'iraqi']
[u'virgin', u'qanta', u'pull', u'market', u'lower']
[u'wallabi', u'name', u'today']
[u'walsh', u'head', u'chines', u'cycl', u'hop']
[u'water', u'boost', u'flow', u'pipelin', u'work']
[u'addict', u'get', u'finnish', u'conscript', u'armi']
[u'weightlift', u'remand', u'custodi', u'worker']
[u'wildcat', u'challeng', u'croc', u'kalgoorli']
[u'wildlif', u'sanctuari', u'accus', u'manag', u'overfe']
[u'william', u'suspend', u'week']
[u'william', u'judiciari', u'tonight']
[u'world', u'polio', u'free', u'year']
[u'yanco', u'woman', u'face', u'murder', u'trial']
[u'ballan', u'crash', u'victim', u'question', u'treatment']
[u'date', u'tugun', u'bypass', u'work']
[u'kill', u'yemen', u'fight']
[u'accc', u'give', u'soni', u'merger']
[u'accus', u'refus', u'leav', u'cell', u'interview']
[u'consid', u'extra', u'ambul', u'eas', u'health', u'woe']
[u'afghan', u'confess', u'kill', u'journalist']
[u'help', u'bulldog', u'coach']
[u'agassi', u'battl', u'past', u'johansson', u'cincinnati']
[u'dump', u'dajka']
[u'albani', u'await', u'ring', u'road', u'fund']
[u'alcohol', u'chang', u'offer', u'littl', u'polic', u'relief']
[u'alic', u'airport', u'consid', u'intern', u'focus']
[u'black', u'persever', u'flat', u'backlin']
[u'alleg', u'islam', u'milit', u'veteran', u'go', u'trial']
[u'take', u'issu', u'boundari', u'chang', u'plan']
[u'ambassador', u'reject', u'invit', u'radic', u'cleric']
[u'anim', u'great', u'small', u'genom', u'map']
[u'dismiss', u'houllier', u'rumour']
[u'athen', u'budget', u'blow']
[u'athen', u'hotel', u'worker', u'threaten', u'strike']
[u'aust', u'china', u'trade', u'deal', u'hamper', u'local', u'market']
[u'australia', u'step', u'effort', u'combat', u'illeg']
[u'bangladesh', u'put', u'flood', u'cost']
[u'beach', u'volleybal', u'scar', u'dark', u'athen']
[u'lamb', u'loss', u'expect', u'northern', u'tableland']
[u'bogus', u'child', u'porn', u'email', u'spread', u'virus']
[u'bomb', u'kill', u'helicopt', u'shoot', u'iraq']
[u'bridg', u'crack', u'spark', u'speed', u'reduct']
[u'busi', u'group', u'question', u'governor', u'role']
[u'busi', u'group', u'urg', u'impass']
[u'servic', u'trial', u'start', u'month']
[u'cabin', u'odour', u'forc', u'plane', u'turn']
[u'crackdown', u'wild', u'dog']
[u'carr', u'wont', u'tent', u'embassi']
[u'cattl', u'breeder', u'tell', u'kowtow', u'ideal', u'imag']
[u'central', u'soccer', u'refere', u'head', u'athen']
[u'china', u'sweat', u'fit', u'inspir', u'captain']
[u'boost', u'nativ', u'veget']
[u'coach', u'sympathis', u'rohd']
[u'committe', u'consid', u'aluminium', u'smelter', u'plan']
[u'copper', u'disput', u'end']
[u'council', u'consid', u'minist', u'waterfront', u'plan']
[u'council', u'reject', u'region', u'review']
[u'council', u'ask', u'jam', u'hardi']
[u'council', u'share', u'road', u'fund']
[u'council', u'vote', u'develop', u'contribut', u'plan']
[u'dajka', u'appeal', u'postpon']
[u'dajka', u'arriv', u'sydney', u'appeal', u'hear']
[u'deal', u'reach', u'memori', u'wall']
[u'dinosaur', u'bird', u'equip']
[u'docker', u'sign', u'mcpharlin', u'polak']
[u'dog', u'begin', u'search', u'coach']
[u'offer', u'support', u'bushfir', u'coroni', u'inquiri']
[u'edward', u'hear', u'olymp', u'fate', u'week']
[u'elector', u'boundari', u'shake', u'affect', u'south', u'east']
[u'electr', u'project', u'boost', u'isi', u'canegrow']
[u'eriksson', u'shake']
[u'expect', u'high', u'ekka', u'open']
[u'farmer', u'push', u'safeti', u'regul']
[u'fatal', u'shoot', u'link', u'domest']
[u'fear', u'bug', u'bite', u'tourism']
[u'femal', u'tenni', u'player', u'threaten', u'athen', u'boycott']
[u'festiv', u'hop', u'countri', u'star']
[u'fijian', u'vice', u'presid', u'guilti', u'coup', u'court', u'hear']
[u'firefight', u'battl', u'blaze']
[u'fish', u'cell', u'transplant', u'save', u'speci']
[u'guantanamo', u'prison', u'refus', u'hear']
[u'kill', u'accid']
[u'fremantl', u'polic', u'centr', u'miss', u'cannabi']
[u'french', u'photojourn', u'pioneer', u'die']
[u'tip', u'bolster', u'goldfield', u'esper']
[u'fuel', u'price', u'tip', u'rise']
[u'girl', u'hospitalis', u'accid']
[u'girl', u'receiv', u'pool', u'accid']
[u'govern', u'urg', u'boost', u'pipelin', u'fund']
[u'govt', u'labor', u'clash', u'drug', u'scandal']
[u'govt', u'hint', u'end', u'deadlock']
[u'govt', u'know', u'child', u'protect', u'fail', u'say']
[u'govt', u'say', u'deal', u'extra', u'york', u'park']
[u'govt', u'tell', u'renew', u'hour', u'servic', u'fund']
[u'green', u'continu', u'fight', u'wheat', u'debt']
[u'grower', u'welcom', u'opposit', u'appl', u'import']
[u'guantanamo', u'abus', u'claim', u'prompt', u'inquiri', u'call']
[u'health', u'worker', u'organis', u'bateman', u'hospit', u'ralli']
[u'helicopt', u'crash', u'siberia']
[u'herbert', u'candid', u'unhappi', u'senat', u'critic']
[u'hewitt', u'arthur', u'master']
[u'hewitt', u'master']
[u'hick', u'catch', u'polit']
[u'hill', u'storm']
[u'hockeyroo', u'injuri']
[u'houllier', u'link', u'socceroo']
[u'hous', u'boom', u'boost', u'heritag', u'societi', u'profit']
[u'hous', u'suppli', u'balanc', u'shrapnel']
[u'hull', u'back', u'fast', u'track', u'nativ', u'titl']
[u'icac', u'urg', u'probe', u'properti', u'develop']
[u'indonesia', u'conduct', u'execut', u'year']
[u'injur', u'coria', u'pull', u'olymp']
[u'inquest', u'prove', u'electrician', u'death']
[u'promis', u'action', u'corrupt', u'claim']
[u'irish', u'outsid', u'deportivo', u'clash']
[u'israel', u'pull', u'northern', u'gaza', u'town']
[u'jail', u'special', u'care', u'inmat', u'number']
[u'jam', u'hardi', u'white', u'knuckl', u'grasp', u'info']
[u'jam', u'hardi', u'misus', u'liabil', u'estim']
[u'jayawarden', u'doubl', u'centuri', u'frustrat', u'south', u'africa']
[u'take', u'issu', u'guid', u'rat']
[u'plot', u'attack', u'report']
[u'jone', u'talk', u'nation', u'crunch', u'match']
[u'jordanian', u'hostag', u'free', u'iraq']
[u'juvenil', u'romp', u'prompt', u'prison', u'review']
[u'khartoum', u'disarm', u'darfur', u'militia', u'polic', u'chief']
[u'kindi', u'teacher', u'boost', u'fund', u'campaign']
[u'king', u'brother', u'face', u'hear', u'fraud', u'charg']
[u'labor', u'stanc', u'help', u'vote', u'carr']
[u'labor', u'welcom', u'shift', u'climat', u'chang']
[u'can', u'licenc', u'psychic']
[u'legal', u'challeng', u'kangaroo', u'harvest', u'expect']
[u'lizarazu', u'retir', u'intern', u'footbal']
[u'local', u'govt', u'group', u'seek', u'road', u'fund']
[u'fin', u'assault', u'airport', u'secur', u'guard']
[u'pluck', u'rag', u'flood', u'water']
[u'sue', u'trip', u'potato', u'scallop']
[u'face', u'carnarvon', u'murder', u'trial']
[u'fake', u'death', u'await', u'sentenc']
[u'market', u'focus', u'volatil', u'price']
[u'medal', u'servic', u'honour', u'local', u'polic']
[u'meet', u'focus', u'health', u'region']
[u'microsoft', u'launch', u'weblog', u'servic', u'japan']
[u'millar', u'ban', u'year', u'strip', u'titl']
[u'minist', u'hear', u'valuat', u'woe']
[u'attack', u'boundari', u'chang', u'plan']
[u'get', u'teeth', u'fluorid', u'debat']
[u'want', u'baan', u'speed', u'limit', u'reduc']
[u'jail', u'drug', u'trade']
[u'nation', u'park', u'increas', u'caus', u'problem']
[u'claim', u'hick', u'habib', u'abus']
[u'england', u'polic', u'chief', u'move', u'north']
[u'news', u'corp', u'drag', u'ord', u'lower']
[u'charg', u'fraud', u'case']
[u'rebel', u'raid', u'kashmir', u'secur', u'camp']
[u'kill', u'iraq', u'suicid', u'blast']
[u'korean', u'tension', u'prompt', u'downer', u'peac', u'mission']
[u'offer', u'say', u'wallac']
[u'plan', u'gold', u'coast', u'team']
[u'norman', u'hand', u'champ', u'start']
[u'govt', u'defend', u'hospit']
[u'govt', u'urg', u'apologis', u'woman', u'death']
[u'polic', u'investig', u'shoot', u'death', u'raid']
[u'expand', u'electron', u'medic', u'record', u'trial']
[u'program', u'offer', u'confidenti', u'file']
[u'pacif', u'adopt', u'aid', u'strategi']
[u'pair', u'hurt', u'highway', u'head', u'crash']
[u'pakistan', u'armi', u'helicopt', u'crash', u'kill', u'soldier']
[u'seek', u'histor', u'fifth', u'crown', u'lpga', u'event']
[u'group', u'speak', u'rent', u'concern']
[u'pension', u'interview', u'azaria', u'claim']
[u'pension', u'murder', u'inquiri', u'head', u'interst']
[u'philippin', u'pursu', u'banana', u'export', u'case']
[u'plan', u'boundari', u'chang', u'boost', u'alburi', u'elector']
[u'plan', u'charg', u'push', u'fare']
[u'plan', u'offer', u'farmer', u'pest', u'control']
[u'stand', u'firm', u'trade', u'deal']
[u'grind', u'latham']
[u'polic', u'reveal', u'bomb', u'contain', u'devic']
[u'polic', u'seek', u'identifi', u'crash', u'victim']
[u'polic', u'seiz', u'cocain']
[u'poll', u'show', u'labor', u'lead', u'rise']
[u'polli', u'preserv', u'pressur', u'puffer']
[u'prawn', u'fisher', u'suggest', u'compo', u'fish', u'cut', u'plan']
[u'prostitut', u'murder', u'trial', u'hear', u'polic', u'raid']
[u'protect', u'zone', u'reef', u'breach', u'drop']
[u'protest', u'ralli', u'foreign', u'intervent']
[u'public', u'demand', u'militari', u'train', u'answer']
[u'public', u'urg', u'help', u'tackl', u'slimi', u'mangrov']
[u'push', u'boost', u'home', u'tutor', u'allow']
[u'report', u'offer', u'hope', u'basin', u'roo']
[u'revamp', u'boost', u'aluminium', u'smelter', u'product']
[u'ryder', u'battl', u'heat']
[u'salami', u'alert', u'recal']
[u'scheme', u'indigen', u'seeker']
[u'second', u'accid', u'scene', u'level', u'cross', u'crash']
[u'senat', u'committe', u'find', u'littl', u'support', u'atsic']
[u'senat', u'report', u'slam', u'telstra']
[u'senat', u'pressur', u'chief', u'scientist']
[u'serial', u'arsonist', u'blame', u'sunshin', u'coast', u'fire']
[u'sharapova', u'cruis', u'easi', u'montreal', u'victori']
[u'shire', u'back', u'water', u'pipelin', u'benefit']
[u'singtel', u'profit', u'slash']
[u'soccer', u'chief', u'deni', u'court', u'french', u'coach']
[u'solar', u'uniqu', u'astronom']
[u'soldier', u'prison', u'abus']
[u'soldier', u'suicid', u'prevent']
[u'state', u'ward', u'face', u'choic']
[u'strike', u'defenc', u'worker', u'face', u'lockout']
[u'studi', u'focus', u'rural', u'women', u'issu']
[u'sunraysia', u'leagu', u'trial', u'salari', u'replac']
[u'swan', u'fine', u'criticis', u'umpir']
[u'sweet', u'victori', u'cane', u'farmer']
[u'talk', u'shed', u'littl', u'light', u'health', u'merger', u'loss']
[u'thailand', u'human', u'right', u'record']
[u'thiev', u'plunder', u'toxic', u'pepper']
[u'dead', u'melbourn', u'level', u'cross', u'accid']
[u'palestinian', u'kill', u'gaza', u'violenc']
[u'thrupp', u'look', u'gold', u'medal', u'win', u'perform']
[u'oper', u'chang', u'inquiri']
[u'tongan', u'engin', u'help', u'build', u'indigen', u'hous']
[u'train', u'crash', u'victim', u'chanc']
[u'tribut', u'flow', u'melbourn', u'perform']
[u'jail', u'perth', u'racist', u'attack']
[u'union', u'call', u'nurs', u'medicar', u'provid']
[u'union', u'consid', u'nationwid', u'jam', u'hardi']
[u'union', u'demand', u'rail', u'safeti', u'inquiri']
[u'union', u'urg', u'inquiri', u'practic']
[u'uni', u'rate', u'poor', u'attract', u'research', u'fund', u'guid']
[u'univers', u'swan', u'hill', u'campus']
[u'firm', u'claim', u'copi', u'cat']
[u'helicopt', u'shoot', u'iraq']
[u'protect', u'team', u'baghdad']
[u'vatican', u'look', u'soul', u'sport']
[u'virgin', u'blue', u'decis', u'tip', u'spark', u'price']
[u'face', u'critic', u'pipelin', u'deal']
[u'wanganeen', u'keen', u'return']
[u'warn', u'grow', u'tension', u'kosovo', u'ahead']
[u'websit', u'rat', u'environment', u'perform', u'car']
[u'websit', u'help', u'boost', u'indigen', u'health']
[u'west', u'skipper', u'senter', u'announc', u'retir']
[u'wildlif', u'sanctuari', u'cruelti', u'charg', u'drop']
[u'wit', u'identifi', u'accus', u'peopl', u'smuggler', u'court']
[u'worker', u'fear', u'contract', u'clean', u'away', u'job']
[u'world', u'price', u'dive']
[u'young', u'flock', u'viagra']
[u'zonta', u'replac', u'matta', u'toyota']
[u'accus', u'paedophil', u'refus', u'bail']
[u'adopt', u'limit', u'scrap']
[u'airbus', u'seal', u'virgin', u'atlant', u'deal']
[u'airlin', u'welcom', u'virgin', u'servic']
[u'alabama', u'execut', u'year']
[u'alic', u'mayor', u'attend', u'african', u'local', u'govt']
[u'ambul', u'worker', u'upbeat', u'talk']
[u'ancient', u'rock', u'carv', u'tasmania']
[u'arm', u'hold', u'trigger', u'polic', u'hunt']
[u'close', u'secur', u'deal']
[u'asylum', u'seeker', u'return', u'custodi']
[u'aust', u'market', u'lose', u'grind']
[u'aust', u'offer', u'help', u'flood', u'ravag', u'bangladesh']
[u'author', u'call', u'rockhampton', u'chemic', u'spill']
[u'share', u'surg', u'buyout', u'news']
[u'challeng', u'button', u'william']
[u'bellingen', u'join', u'oxley', u'seat']
[u'bell', u'toll', u'drought', u'victim']
[u'speak', u'council', u'worker', u'job']
[u'fin', u'harass', u'paramed']
[u'grain', u'crop', u'certainti']
[u'billion', u'lose', u'super', u'sit', u'idl']
[u'bloke', u'chauvin', u'dud', u'potenti', u'councillor']
[u'blood', u'test', u'extend', u'olymp', u'event']
[u'bodi', u'discov', u'raid', u'suspect', u'cult']
[u'breast', u'best', u'record', u'break', u'babi']
[u'british', u'terror', u'suspect', u'navi', u'plan', u'court']
[u'briton', u'nab', u'london', u'warrant']
[u'break', u'hill', u'host', u'health', u'merger', u'meet']
[u'bulldog', u'player', u'fin', u'polic', u'assault']
[u'busi', u'week', u'emerg', u'chopper']
[u'button', u'move', u'william']
[u'probe', u'cash', u'comment', u'claim']
[u'probe', u'wheat', u'debt', u'write']
[u'improv', u'farm', u'safeti']
[u'canadian', u'rocket', u'enter', u'privat', u'space', u'race']
[u'casino', u'employe', u'urg', u'accept', u'deal']
[u'chemic', u'think', u'fish', u'kill']
[u'chess', u'master', u'renounc', u'nation']
[u'climber', u'trap', u'avalanch', u'kyrgyzstan']
[u'coat', u'deni', u'vote', u'buy', u'alleg']
[u'committe', u'want', u'anti', u'terror', u'law', u'review']
[u'communiti', u'fear', u'downgrad', u'health', u'servic']
[u'communiti', u'back', u'campaign', u'save', u'seat']
[u'conduct', u'committe', u'meet', u'today']
[u'conjoin', u'twin', u'separ', u'york']
[u'convict', u'murder', u'refus', u'leav', u'high', u'court']
[u'coordin', u'consid', u'transport', u'option']
[u'coria', u'olymp', u'chanc']
[u'cosgrov', u'concern', u'committe', u'find']
[u'costello', u'warn', u'busi', u'offshor', u'escap']
[u'council', u'consid', u'land', u'auction']
[u'council', u'take', u'forget', u'trivial']
[u'court', u'fin', u'farmer', u'injur', u'bull']
[u'court', u'reinstat', u'killer', u'sentenc']
[u'court', u'rule', u'asbesto', u'payout', u'continu']
[u'cowboy', u'hope', u'distanc', u'bulldog']
[u'crude', u'shoot', u'higher']
[u'danish', u'armi', u'investig', u'confirm', u'iraqi', u'prison']
[u'deal', u'allow', u'year', u'reef', u'tourism', u'permit']
[u'defenc', u'forc', u'member', u'punish']
[u'delay', u'slow', u'steelwork', u'product']
[u'dragon', u'enjoy', u'half', u'time', u'lead']
[u'dragon', u'giant', u'leap', u'storm']
[u'elector', u'overhaul']
[u'english', u'tourist', u'tri', u'walk', u'help', u'coron']
[u'detect', u'drug', u'offenc', u'investig']
[u'expert', u'assess', u'dam']
[u'militari', u'arrest', u'smuggl', u'ecstasi']
[u'famili', u'children', u'servic', u'worker', u'extrem']
[u'famili', u'push', u'upgrad', u'level', u'cross']
[u'festiv', u'highlight', u'indigen', u'independ']
[u'fiji', u'vice', u'presid', u'jail', u'coup']
[u'firefight', u'alert', u'blaze', u'continu', u'burn']
[u'general', u'predict', u'long', u'haul', u'iraq']
[u'lebanes', u'driver', u'take', u'hostag', u'iraq']
[u'fund', u'seek', u'address', u'woe']
[u'golf', u'club', u'urg', u'fashion', u'dress', u'cod']
[u'govt', u'fast', u'track', u'plan', u'improv', u'level']
[u'govt', u'urg', u'remot', u'educ']
[u'govt', u'urg', u'block', u'moreton', u'fish', u'farm']
[u'govt', u'warn', u'land', u'develop', u'pitfal']
[u'govt', u'win', u'indefinit', u'detent', u'appeal']
[u'green', u'back', u'jone', u'zurich', u'exclus']
[u'green', u'group', u'worri', u'riverland', u'illeg']
[u'green', u'dutch', u'open', u'content']
[u'green', u'offer', u'tour', u'west', u'spot']
[u'gregan', u'focus', u'ahead', u'black', u'clash']
[u'group', u'disput', u'council', u'rat']
[u'group', u'tackl', u'crime', u'clean']
[u'health', u'chief', u'address', u'overcrowd', u'concern']
[u'hiroshima', u'mayor', u'critic', u'egocentr']
[u'drug', u'stop', u'transmiss']
[u'hotlin', u'aim', u'stop', u'alcohol', u'woe']
[u'human', u'right', u'group', u'slam', u'iraqi', u'insurg', u'attack']
[u'hundr', u'kill', u'iraq', u'fight', u'militari']
[u'iaaf', u'decis', u'edward', u'send', u'panel']
[u'india', u'pakistan', u'talk', u'kashmir', u'glacier']
[u'indonesian', u'command', u'acquit', u'timor']
[u'injur', u'zaheer', u'india', u'trophi', u'squad']
[u'iraqi', u'cleric', u'treat', u'heart', u'troubl']
[u'israel', u'open', u'gaza', u'egypt', u'border']
[u'jam', u'hardi', u'find', u'shortfal', u'unsatisfactori']
[u'open', u'sure', u'jest']
[u'jone', u'laud', u'flash', u'halv']
[u'kerri', u'criticis', u'slow', u'respons', u'crisi']
[u'kewel', u'prepar', u'return', u'home', u'play']
[u'labor', u'reveal', u'plan']
[u'lawyer', u'say', u'sourc', u'back', u'azaria', u'claim']
[u'lend', u'leas', u'win', u'takeov', u'battl']
[u'lenton', u'stay', u'relax', u'ahead', u'athen', u'assault']
[u'lib', u'threaten', u'withdraw', u'support', u'butler']
[u'lifestyl', u'chang', u'offer', u'hope', u'alzheim', u'fight']
[u'loch', u'sport', u'get', u'ambul', u'servic']
[u'locust', u'plagu', u'hit', u'west', u'africa']
[u'appear', u'court', u'sydney', u'doubl', u'shoot']
[u'charg', u'cabramatta', u'shoot']
[u'jail', u'accessori', u'murder']
[u'jail', u'doubl', u'stab']
[u'jail', u'fake', u'death']
[u'question', u'arson', u'attack']
[u'surviv', u'wateri', u'crash']
[u'mass', u'grave', u'muslim', u'eastern', u'bosnia']
[u'mauresmo', u'montreal', u'quarter']
[u'mayor', u'want', u'croc', u'festiv', u'fund', u'resum']
[u'medic', u'wast', u'problem', u'spread']
[u'millar', u'accus', u'admit', u'traffic']
[u'miner', u'begin', u'gold', u'drill', u'program']
[u'miss', u'tourist', u'parent', u'plead', u'help']
[u'molik', u'move', u'sweden']
[u'tare', u'grafton', u'servic']
[u'wit', u'identifi', u'peopl', u'smuggler', u'court']
[u'pour', u'cold', u'water', u'desalin', u'plant']
[u'turn', u'heat', u'bathhous', u'handl']
[u'gambier', u'bank', u'food', u'handl', u'plan']
[u'murali', u'recaptur', u'record', u'rudolph', u'dig']
[u'murali', u'take', u'world', u'wicket', u'record']
[u'muslim', u'tomb', u'desecr', u'franc']
[u'nation', u'australia', u'bank', u'see', u'mull', u'irish', u'sale']
[u'nat', u'rais', u'forestri', u'group', u'concern']
[u'newcastl', u'council', u'ban', u'jam', u'hardi', u'build']
[u'heatwav', u'athen', u'game']
[u'ambul', u'decid', u'work', u'ban']
[u'sailor', u'lead', u'etchel']
[u'dead', u'hospit', u'melvill', u'accid']
[u'oppn', u'ask', u'pass', u'atsic', u'legisl']
[u'oprah', u'plan', u'year', u'chat']
[u'pacif', u'island', u'warn', u'nauru', u'risk']
[u'palestinian', u'milit', u'break', u'news', u'confer']
[u'palestinian', u'polic', u'clear', u'carri', u'gun']
[u'pampl', u'stay', u'calm', u'storm']
[u'perth', u'murder', u'rate', u'jump']
[u'pie', u'upset', u'docker']
[u'sens', u'pacif', u'spirit']
[u'consid', u'labor', u'amend']
[u'poison', u'compo', u'payout', u'welcom']
[u'polic', u'charg', u'arson', u'attack']
[u'polic', u'fear', u'miss']
[u'polic', u'investig', u'link', u'vandal', u'assault']
[u'polic', u'teen', u'crash', u'victim']
[u'polic', u'probe', u'arson', u'attack', u'labor', u'offic']
[u'polic', u'question', u'white', u'supremicist', u'leader']
[u'polic', u'seiz', u'illeg', u'firework']
[u'port', u'stephen', u'maintain', u'local', u'area', u'command']
[u'postman', u'keep', u'undeliv', u'letter']
[u'power', u'station', u'decis', u'hold']
[u'probe', u'launch', u'tractor', u'death']
[u'produc', u'warn', u'reject', u'assur', u'scheme']
[u'psychiatr', u'patient', u'second', u'escap']
[u'public', u'ask', u'help', u'murder', u'victim']
[u'public', u'urg', u'readi', u'horror', u'season']
[u'ralf', u'skip', u'hungarian', u'grand', u'prix']
[u'rapist', u'jail', u'videotap', u'crime']
[u'remain', u'shed', u'light', u'disappear']
[u'riverland', u'join', u'nation', u'committe']
[u'rockhampton', u'chemic', u'spill', u'clean']
[u'sadr', u'look', u'resum', u'najaf', u'ceas']
[u'fishermen', u'metr', u'great', u'white']
[u'miguel', u'buy', u'half', u'berri']
[u'scallop', u'ranch', u'propon', u'defend', u'project']
[u'school', u'cleaner', u'step', u'contract', u'protest']
[u'school', u'spirit', u'shin', u'vandal', u'attack']
[u'senior', u'policeman', u'arrest', u'charg']
[u'offend', u'push', u'definit', u'term']
[u'sharapova', u'oust', u'myskina', u'mauresmo']
[u'short', u'circuit', u'blame', u'paraguay', u'supermarket', u'blaze']
[u'skill', u'shortag', u'worri', u'busi']
[u'resort', u'get', u'fund', u'help', u'hand']
[u'sober', u'centr', u'reopen', u'door']
[u'soni', u'complet', u'merger']
[u'speed', u'factor', u'wirrabara', u'tragedi', u'polic']
[u'spirit', u'rover', u'fail', u'lake', u'remnant', u'mar']
[u'springbok', u'rooki', u'nation', u'squad']
[u'springborg', u'confid', u'power', u'debacl', u'undo', u'govt']
[u'springsteen', u'enter', u'polit', u'debat']
[u'staff', u'threaten', u'diamond', u'heist']
[u'stanhop', u'defend', u'drug', u'strategi']
[u'stanhop', u'defend', u'govt', u'wake', u'damn', u'report']
[u'steel', u'compani', u'fin', u'safeti', u'breach']
[u'storm', u'consid', u'william', u'appeal']
[u'stori', u'boy', u'struggl', u'take', u'melbourn']
[u'strong', u'demand', u'hervey', u'land']
[u'studi', u'look', u'balanc', u'fuel', u'reduct', u'habitat']
[u'studi', u'consid', u'altern', u'waterfront', u'plan']
[u'stuppl', u'grab', u'lpga', u'lead']
[u'sudan', u'start', u'disarm', u'militia']
[u'survey', u'highlight', u'care', u'invest']
[u'sydney', u'aborigin', u'tent', u'embassi', u'dismantl']
[u'tarrant', u'magpi']
[u'premier', u'back', u'governor']
[u'tenix', u'worker', u'decid', u'offer']
[u'tenni', u'coach', u'jail', u'crime']
[u'thorp', u'readi', u'year']
[u'face', u'court', u'drug', u'crop']
[u'tierney', u'quit', u'senat', u'post']
[u'tobacco', u'grower', u'killer', u'sentenc', u'year', u'jail']
[u'tokelau', u'move', u'self', u'determin']
[u'saudi', u'milit', u'arrest']
[u'track', u'work', u'affect', u'train', u'time']
[u'train', u'delay', u'spark', u'compo', u'offer']
[u'tree', u'surgeon', u'prepar', u'oper']
[u'troubl', u'predict', u'emerg', u'ward']
[u'trout', u'boost', u'lake', u'barrington']
[u'turner', u'unhappi', u'plan', u'boundari', u'chang']
[u'tutor', u'deni', u'inappropri', u'relationship', u'inmat']
[u'launch', u'fish', u'farm', u'project']
[u'open', u'guantanamo', u'tribun', u'journalist']
[u'nistelrooy', u'month']
[u'detect', u'deni', u'african', u'sexual', u'assault', u'claim']
[u'resort', u'staff', u'fear', u'job']
[u'wagga', u'jobless', u'rate', u'fall']
[u'wall', u'street', u'price']
[u'webck', u'warrior', u'clash']
[u'white', u'hous', u'disown', u'anti', u'kerri', u'record']
[u'whitfield', u'look']
[u'player', u'advis', u'avoid', u'athen', u'boycott']
[u'yemeni', u'troop', u'close', u'rebel', u'leader']
[u'ghraib', u'whistleblow', u'testifi']
[u'qaeda', u'link', u'group', u'threaten', u'itali']
[u'american', u'behead', u'iraq', u'video']
[u'anti', u'terror', u'law', u'need', u'greater', u'safeguard', u'labor']
[u'anti', u'tobacco', u'group', u'welcom', u'vend', u'machin']
[u'aussi', u'athlet', u'olymp', u'spirit']
[u'aussi', u'swimmer', u'struggl', u'ill']
[u'aust', u'extend', u'fiji', u'cloth', u'industri', u'deal']
[u'australia', u'boast', u'second', u'largest', u'olymp', u'team']
[u'aust', u'help', u'solv', u'pacif', u'transport', u'problem']
[u'babi', u'snatch', u'mother']
[u'blue', u'face', u'tough', u'bomber']
[u'boomer', u'bounc', u'angola']
[u'bronco', u'break', u'auckland', u'duck']
[u'bush', u'renam', u'terror']
[u'button', u'defiant', u'despit', u'ultimatum']
[u'canadian', u'author', u'battl', u'dead', u'bacteria']
[u'staff', u'strike']
[u'coat', u'slam', u'ungrat', u'dawn']
[u'cold', u'weather', u'fail', u'deter', u'volunt', u'sleep']
[u'communiti', u'consult', u'help', u'indigen']
[u'council', u'withhold', u'rescu', u'chopper', u'fund']
[u'crew', u'monitor', u'bushfir', u'south', u'east']
[u'curios', u'expect', u'steal', u'jewel', u'auction']
[u'dawn', u'invit', u'olymp', u'game']
[u'neri', u'oust', u'porto', u'coach']
[u'dimarco', u'captur', u'intern', u'lead', u'pampl', u'second']
[u'don', u'suffer', u'case', u'blue']
[u'drought', u'continu']
[u'dutch', u'politician', u'consid', u'lick']
[u'guerrouj', u'beat', u'powel', u'defi', u'green']
[u'english', u'shellfish', u'digger', u'tide']
[u'timor', u'urg', u'listen', u'veteran', u'demand']
[u'aceh', u'separatist', u'rebel', u'kill']
[u'forum', u'chairman', u'question', u'pacif', u'plan']
[u'govt', u'urg', u'asylum', u'seeker', u'compass']
[u'green', u'grab', u'dutch', u'open', u'lead']
[u'greenland', u'win', u'trade', u'radar', u'deal']
[u'hawk', u'break', u'drought']
[u'hewitt', u'agassi', u'advanc', u'cincinnati', u'semi']
[u'hobart', u'nurs', u'struggl', u'emerg', u'demand', u'staff']
[u'indigen', u'festiv', u'address', u'creation']
[u'insur', u'warn', u'busi', u'energi', u'crisi']
[u'iraqi', u'author', u'order', u'jazeera', u'offic', u'shut']
[u'iraqi', u'criticis', u'najaf', u'death']
[u'ireland', u'plato', u'atlanti', u'claim', u'geograph']
[u'jail', u'term', u'welcom', u'fijian', u'coup', u'trial']
[u'kerri', u'aim', u'troop', u'iraq']
[u'kestrel', u'phoenix', u'post', u'win']
[u'knight', u'final', u'calcul']
[u'labor', u'polici', u'step', u'backward', u'howard', u'say']
[u'mauresmo', u'fight', u'lone', u'battl', u'russian']
[u'molik', u'fire', u'stockholm', u'semi']
[u'naval', u'personnel', u'gather', u'reunion']
[u'seek', u'curfew', u'young', u'driver']
[u'plan', u'limit', u'child', u'wit', u'trauma']
[u'price', u'yoyo', u'yuko', u'woe']
[u'opal', u'outshin', u'korea']
[u'oppn', u'call', u'tent', u'embassi', u'deal', u'detail']
[u'oppn', u'support', u'govt', u'trade', u'deal', u'chang']
[u'darfur', u'rebel', u'surrend', u'report']
[u'pacif', u'group', u'endors', u'futur', u'plan']
[u'pacif', u'leader', u'agre', u'nauru', u'assist', u'packag']
[u'pakistan', u'recal', u'afridi', u'champion', u'trophi']
[u'pampl', u'set', u'pace', u'intern']
[u'pelican', u'mess', u'land', u'council', u'sticki', u'situat']
[u'penrith', u'slaughter', u'man']
[u'pittman', u'doubt', u'athen']
[u'pittman', u'prognosi', u'worsen']
[u'pressur', u'mount', u'premier', u'interven']
[u'consid', u'child', u'abduct', u'amber', u'alert']
[u'face', u'rape', u'tortur', u'charg']
[u'roo', u'surg', u'huge', u'comeback']
[u'sadr', u'militia', u'surrend', u'najaf', u'iraqi', u'polic']
[u'saint', u'hold', u'fight', u'crow']
[u'plan', u'tough', u'learner', u'driver', u'law']
[u'kill', u'baghdad', u'clash']
[u'sudan', u'approv', u'plan', u'eas', u'darfur', u'unrest']
[u'swan', u'readi', u'roo']
[u'sydney', u'mayor', u'blame', u'hyster', u'media', u'racist']
[u'oppn', u'hold', u'butler', u'stoush']
[u'charg', u'mona', u'vale', u'road', u'rage', u'clash']
[u'nation', u'clash', u'lock', u'half', u'time']
[u'turkish', u'hostag', u'iraq', u'threaten', u'death']
[u'kill', u'pakistan', u'explos']
[u'palestinian', u'minist', u'tender', u'resign']
[u'ban', u'smile', u'passport', u'crackdown']
[u'investig', u'blame', u'khartoum', u'darfur', u'kill']
[u'union', u'welcom', u'labor', u'plan']
[u'behead', u'video', u'hoax', u'report']
[u'blow', u'inform', u'cover', u'terror', u'alert']
[u'funk', u'star', u'rick', u'jam', u'die']
[u'market', u'plung', u'weak', u'figur']
[u'replac', u'veteran', u'explor', u'submarin']
[u'tongeren', u'front', u'court', u'conspiraci', u'charg']
[u'vieira', u'make', u'mistak', u'join', u'real', u'wenger']
[u'approv', u'controversi', u'ludlow', u'forest']
[u'wada', u'insist', u'complet', u'code', u'fifa']
[u'wallabi', u'nation', u'hop', u'aliv']
[u'school', u'need', u'urgent', u'repair', u'admit', u'minist']
[u'watchdog', u'investig', u'women', u'prison']
[u'webb', u'touch', u'ohio']
[u'white', u'supremacist', u'leader', u'charg', u'perth', u'attack']
[u'zarqawi', u'group', u'threaten', u'kill', u'iraq', u'websit']
[u'abandon', u'boat', u'discov', u'year', u'later']
[u'ghraib', u'abus', u'hear', u'suspend']
[u'worker', u'afghanistan', u'slam']
[u'allawi', u'order', u'fighter', u'najaf']
[u'black', u'umaga', u'springbok', u'test']
[u'qaeda', u'seek', u'launch', u'attack', u'bush', u'aid']
[u'argentina', u'hop', u'fade', u'gaudio', u'injur']
[u'organis', u'sudanes', u'peac', u'talk']
[u'aust', u'pharmaceut', u'chief', u'back']
[u'australian', u'personnel', u'escort', u'iraqi', u'olympian']
[u'bacon', u'award', u'posthum', u'doctor']
[u'see', u'drop', u'heroin', u'substitut']
[u'boomer', u'good', u'brazil']
[u'bulldog', u'claim', u'spot']
[u'canberra', u'unlik', u'meet', u'landfil', u'rubbish', u'target']
[u'cat', u'claw', u'tiger']
[u'crew', u'continu', u'battl', u'blaze']
[u'darwin', u'art', u'profil', u'rise', u'nation']
[u'death', u'toll', u'bangladesh', u'flood', u'reach']
[u'democrat', u'wont', u'labor', u'trade', u'amend']
[u'devast', u'pittman', u'accept', u'dream']
[u'donald', u'duck', u'get', u'star', u'hollywood', u'walk', u'fame']
[u'eagl', u'lead', u'lion', u'half', u'time']
[u'eagl', u'tame', u'lion']
[u'edward', u'lift', u'west', u'indi']
[u'nino', u'pacif', u'month', u'report']
[u'famili', u'parti', u'support', u'marriag']
[u'destroy', u'eriksson', u'secretari']
[u'probe', u'hoax', u'video', u'iraq', u'behead']
[u'fear', u'increas', u'kidnap', u'babi']
[u'firefight', u'battl', u'brisban', u'blaze']
[u'ger', u'stall', u'scottish', u'open']
[u'girl', u'charg', u'fals', u'abduct', u'claim']
[u'govt', u'agre', u'audit', u'drive', u'instructor']
[u'govt', u'prepar', u'locust', u'plagu']
[u'green', u'seat', u'netherland']
[u'green', u'condemn', u'health', u'minist', u'abort', u'view']
[u'hardi', u'face', u'legal', u'action']
[u'health', u'minist', u'concern', u'escap']
[u'hewitt', u'play', u'agassi', u'cincinnati', u'final']
[u'hodg', u'guid', u'leicestershir']
[u'homemad', u'kill', u'soldier', u'afghanistan']
[u'hong', u'kong', u'highest', u'abort', u'rate', u'develop']
[u'howard', u'dismiss', u'public', u'servant', u'critic']
[u'suspend', u'bulgarian', u'offici']
[u'iran', u'north', u'korea', u'advanc', u'nuclear', u'arm']
[u'iraq', u'offer', u'amnesti', u'najaf', u'clash', u'continu']
[u'irish', u'athlet', u'fail', u'drug', u'test']
[u'israel', u'distribut', u'radiat', u'pill', u'resid']
[u'japan', u'sink', u'china', u'heat', u'asia', u'final']
[u'kersten', u'deni', u'drink', u'spike', u'alleg']
[u'labor', u'hail', u'public', u'servant', u'attack', u'govt']
[u'labor', u'plan', u'million', u'dollar', u'fin', u'amend']
[u'lake', u'crescent', u'reopen', u'angler']
[u'latham', u'leav', u'butler', u'issu', u'tasmania']
[u'latham', u'specul', u'olymp', u'elect']
[u'leed', u'win', u'start', u'promot']
[u'liverpool', u'accept', u'tottenham', u'murphi']
[u'mauresmo', u'gun', u'second', u'montreal', u'titl']
[u'mexico', u'find', u'want', u'bar']
[u'mickelberg', u'seek', u'compens']
[u'milit', u'abduct', u'iranian', u'diplomat', u'iraq', u'report']
[u'molik', u'power', u'stockholm', u'decid']
[u'moneghetti', u'run', u'citi', u'surf']
[u'mount', u'polic', u'tell', u'avoid', u'ekka', u'crowd']
[u'olymp', u'hop', u'pittman']
[u'gangland', u'link', u'babi', u'snatch', u'polic']
[u'polic', u'commission', u'push', u'regular', u'driver']
[u'nuclear', u'inspector', u'return', u'iraq']
[u'opal', u'overpow', u'greec']
[u'opposit', u'unsur', u'china', u'benefit']
[u'owen', u'fear', u'eriksson', u'exit']
[u'pacif', u'leader', u'agre', u'tackl', u'hivaid']
[u'pampl', u'grab', u'share', u'lead']
[u'parent', u'warn', u'internet', u'game', u'centr']
[u'philippin', u'journalist', u'critic', u'condit']
[u'pittman', u'accept', u'dream']
[u'pittman', u'hop', u'miracl', u'diagnosi']
[u'win', u'pacif', u'vote']
[u'polic', u'investig', u'human', u'attack', u'croc']
[u'polic', u'releas', u'footag', u'steal', u'babi']
[u'polic', u'seek', u'driver']
[u'power', u'destroy', u'demon']
[u'protea', u'beat', u'lanka']
[u'queanbeyan', u'council', u'dump', u'school', u'child', u'care']
[u'report', u'find', u'canberra', u'dump', u'conflict']
[u'research', u'centr', u'target', u'rural', u'road', u'toll']
[u'secur', u'fear', u'threaten', u'nation']
[u'shark', u'ruffl', u'rooster']
[u'soldier', u'kill', u'colombian', u'presid', u'mark']
[u'south', u'africa', u'apartheid', u'parti', u'merg']
[u'studi', u'aim', u'reduc', u'fish', u'catch']
[u'swan', u'mourn', u'death', u'head', u'trainer']
[u'sydney', u'citi', u'council', u'recognis', u'tent', u'embassi']
[u'opposit', u'threaten', u'withdraw', u'support']
[u'tbird', u'deni', u'spot', u'shock', u'loss']
[u'telemarket', u'compani', u'forc', u'refund', u'voucher']
[u'arrest', u'cocain', u'seiz']
[u'tiger', u'thrash', u'beleagu', u'bunni']
[u'rower', u'rescu', u'atlant', u'storm', u'wreck', u'boat']
[u'offer', u'mediat', u'iraq', u'ceasefir']
[u'realiti', u'tackl', u'death', u'penalti']
[u'victoria', u'move', u'offend', u'sentenc', u'concern']
[u'wallabi', u'inspir', u'aussi', u'olympian']
[u'senat', u'discharg', u'perth', u'hospit']
[u'watchdog', u'blast', u'kuwait', u'ban', u'fahrenheit']
[u'spend', u'million', u'school', u'repair']
[u'weather', u'hamper', u'rescuer', u'kyrgyz', u'mountain']
[u'webb', u'slip', u'ohio', u'leaderboard']
[u'women', u'olymp', u'tenni', u'boycott', u'avert']
[u'woodsid', u'set', u'deadlin', u'timor', u'deal']
[u'wood', u'singh', u'dali', u'draw']
[u'young', u'record', u'posit', u'drug', u'test', u'report']
[u'injur', u'colombian', u'bomb', u'explos']
[u'highway', u'upgrad', u'west', u'tamar']
[u'face', u'fund', u'challeng', u'chairman']
[u'aborigin', u'artefact', u'return', u'communiti']
[u'target', u'illeg', u'drag', u'race']
[u'agassi', u'beat', u'hewitt', u'captur', u'cincinnati', u'titl']
[u'agent', u'expect', u'littl', u'relief', u'region', u'rental']
[u'annan', u'call', u'effort', u'empow', u'indigen']
[u'arab', u'leagu', u'call', u'extend', u'sudan', u'deadlin']
[u'arsenal', u'draw', u'blood', u'unit']
[u'asylum', u'seeker', u'support', u'consid']
[u'aussi', u'gymnast', u'rule', u'game']
[u'australian', u'prais', u'olymp', u'pool']
[u'australian', u'wheat', u'help', u'flood', u'stricken', u'bangladesh']
[u'australia', u'post', u'employe', u'rise']
[u'bank', u'centr', u'staff', u'half', u'strike']
[u'bendigo', u'bank', u'announc', u'profit', u'increas']
[u'drive', u'forc', u'golfer', u'gold', u'coast']
[u'drive', u'forc', u'golfer']
[u'board', u'game', u'trivial', u'matter', u'falconio', u'hear']
[u'boomer', u'complet', u'olymp', u'prepar', u'style']
[u'brisban', u'welcom', u'quin']
[u'bushfir', u'affect', u'farmer', u'disast']
[u'butler', u'resign', u'tasmanian', u'governor']
[u'button', u'meet', u'boss']
[u'autonomi', u'aborigin', u'communiti']
[u'relianc', u'interst', u'locum']
[u'canberra', u'bushfir', u'inquest', u'face', u'delay']
[u'cape', u'byron', u'marin', u'park', u'plan', u'creat', u'fish']
[u'carr', u'consid', u'night', u'curfew', u'young', u'driver']
[u'celtic', u'win', u'start']
[u'chalabi', u'reject', u'alleg', u'counterfeit']
[u'chalabi', u'face', u'outrag', u'counterfeit', u'charg']
[u'chalabi', u'vow', u'fight', u'iraqi', u'charg']
[u'child', u'pornographi', u'charg', u'dismiss']
[u'chimp', u'mogo', u'home']
[u'coalit', u'tell', u'dodder', u'daiquiri', u'diplomat']
[u'communiti', u'bank', u'board', u'hop', u'novemb', u'open']
[u'communiti', u'input', u'seek', u'water', u'storag', u'plan']
[u'communiti', u'split', u'land', u'corridor']
[u'communiti', u'train', u'address', u'island', u'ambul']
[u'confer', u'look', u'prevent', u'health', u'care']
[u'coron', u'criticis', u'jail', u'cell', u'design', u'effort']
[u'council', u'aborigin', u'discuss', u'land', u'right', u'issu']
[u'council', u'back', u'mildura', u'master', u'game']
[u'council', u'defend', u'art', u'stanc', u'amid', u'censorship', u'fear']
[u'council', u'propos', u'communiti', u'art', u'studio']
[u'council', u'unhappi', u'plan', u'strategi', u'respons']
[u'cowboy', u'hope', u'despit', u'weekend', u'loss']
[u'crocodil', u'terri', u'recov', u'youth', u'attack']
[u'crow', u'unfaz', u'favourit']
[u'curfew', u'impos', u'sadr', u'citi']
[u'dajka', u'appeal', u'hear', u'tonight']
[u'deputi', u'consid', u'park', u'fund', u'request']
[u'doctor', u'deni', u'shortag', u'hurt', u'patient', u'care']
[u'doctor', u'criticis', u'propos', u'labour', u'ward', u'closur']
[u'doctor', u'fear', u'health', u'shake', u'hurt', u'servic']
[u'drought', u'rise', u'dri']
[u'drought', u'leav', u'blundston', u'high']
[u'energex', u'storm', u'updat', u'broadcast']
[u'eric', u'danger', u'miss', u'olymp']
[u'eurocorp', u'control', u'afghanistan', u'deploy']
[u'expert', u'dismiss', u'hemp', u'product', u'hop']
[u'export', u'counterfeit', u'cattl']
[u'famili', u'parti', u'launch', u'nation', u'campaign']
[u'famili', u'murder', u'victim', u'throw', u'court', u'hear']
[u'famili', u'sue', u'prematur', u'babi']
[u'fatal', u'raid', u'chase', u'justifi', u'opposit']
[u'respons', u'flow', u'wine', u'grape', u'survey']
[u'fifth', u'heavi', u'fight', u'rock', u'najaf']
[u'firefight', u'brace', u'windi', u'weather']
[u'firefight', u'face', u'test', u'hunt', u'suspect']
[u'flood', u'forc', u'thousand', u'africa', u'shanti']
[u'footpath', u'rider', u'face', u'fin']
[u'foreign', u'doctor', u'shun', u'south', u'adelaid']
[u'defenc', u'chief', u'accept', u'iraq']
[u'forum', u'rais', u'need', u'health', u'boost']
[u'foul', u'play', u'suspect', u'thai', u'orang', u'utan', u'scandal']
[u'kill', u'japanes', u'nuclear', u'accid']
[u'french', u'coach', u'hop', u'convinc', u'zidan', u'stay']
[u'friend', u'famili', u'turn', u'zag', u'funer']
[u'amend', u'drug', u'compani', u'fin']
[u'amend', u'introduc', u'senat']
[u'fundrais', u'shave', u'bring', u'record', u'fund', u'hospit']
[u'geraldton', u'welcom', u'port', u'upgrad', u'fund']
[u'german', u'lose', u'equestrian', u'hope']
[u'gippsland', u'council', u'act', u'casino', u'rumour']
[u'girl', u'die']
[u'glimmer', u'hope', u'injur', u'bronco', u'rooki']
[u'goondiwindi', u'bowl', u'club', u'bowl']
[u'goosen', u'price', u'championship']
[u'govt', u'accus', u'human', u'right', u'breach']
[u'govt', u'boost', u'cancer', u'fund']
[u'govt', u'dismiss', u'christma', u'casino', u'conspiraci']
[u'govt', u'urg', u'rush', u'youth', u'drive', u'curfew']
[u'greek', u'basebal', u'record', u'posit', u'drug', u'test']
[u'green', u'falter', u'hand', u'lynn', u'dutch', u'open']
[u'hellfight', u'die', u'age']
[u'hepburn', u'sale', u'prompt', u'investig', u'call']
[u'hotlin', u'aim', u'stamp', u'grog']
[u'hous', u'fire', u'author', u'busi', u'weekend']
[u'huge', u'ralli', u'boost', u'chavez', u'referendum', u'hop']
[u'hundr', u'bateman', u'hospit']
[u'hunter', u'pig', u'releas']
[u'indonesian', u'court', u'reject', u'wiranto', u'poll', u'case']
[u'indonesian', u'fish', u'boat', u'seiz', u'timor']
[u'initi', u'trial', u'show', u'sar', u'vaccin', u'effect']
[u'inquiri', u'begin', u'labor', u'canberra', u'headquart']
[u'insect', u'pose', u'grave', u'threat', u'chines', u'grassland']
[u'happi', u'athen', u'prepar']
[u'iranian', u'korean', u'hostag', u'free']
[u'iraq', u'reinstat', u'death', u'penalti']
[u'irish', u'runner', u'admit', u'take']
[u'isra', u'missil', u'gaza', u'refuge', u'camp', u'wit']
[u'jam', u'hardi', u'lawyer', u'play', u'surg', u'claim']
[u'jetstar', u'failur', u'leav', u'strand']
[u'hous', u'loan', u'drop']
[u'jone', u'jump', u'victori', u'germani']
[u'karratha', u'clinic', u'hop', u'eas', u'emerg', u'ward', u'woe']
[u'kenya', u'odumb', u'champion', u'trophi', u'squad']
[u'kidnap', u'babi', u'melbourn']
[u'labor', u'outlin', u'amend']
[u'labor', u'prepar', u'free', u'trade', u'amend']
[u'labor', u'senat', u'label', u'sport', u'minist', u'disgrac']
[u'labor', u'encourag', u'fearless', u'public', u'servant']
[u'lazi', u'lion', u'target', u'say', u'matthew']
[u'leader', u'agre', u'increas', u'return', u'tuna', u'fish']
[u'learner', u'driver', u'clock']
[u'lennon', u'tight', u'lip', u'butler', u'controversi']
[u'lewi', u'buy', u'time', u'bankruptci', u'proceed']
[u'local', u'govt', u'call', u'region', u'power', u'improv']
[u'lucki', u'escap', u'patron', u'drive', u'club']
[u'mallon', u'snare', u'ohio', u'lpga', u'titl']
[u'die', u'truck', u'raid']
[u'mauresmo', u'regain', u'montreal', u'titl']
[u'media', u'watchdog', u'criticis', u'iraq', u'jazeera']
[u'menem', u'face', u'argentin', u'accus']
[u'pluck', u'strand', u'yacht']
[u'men', u'club', u'drive', u'shoot']
[u'face', u'court', u'cocain', u'haul']
[u'mine', u'compani', u'contribut', u'miner', u'death']
[u'molik', u'back']
[u'molik', u'doubl', u'sweden']
[u'commerci', u'fisher', u'obey', u'law']
[u'attack', u'arrog', u'child', u'support', u'agenc']
[u'demand', u'specul']
[u'suggest', u'tribut', u'correspond']
[u'discuss', u'disabl', u'servic', u'fund', u'chang']
[u'music', u'project', u'launch', u'garma', u'festiv']
[u'nato', u'soldier', u'intern', u'forc']
[u'nat', u'attack', u'hospit', u'plan']
[u'normal', u'secur', u'ahead', u'nation', u'test']
[u'word', u'butler', u'lennon', u'meet']
[u'charg', u'player']
[u'educ', u'review', u'move', u'final', u'stage']
[u'opal', u'athen', u'warm', u'event']
[u'opec', u'rais', u'quota', u'presid']
[u'opposit', u'call', u'uniform', u'polic']
[u'pair', u'sauna', u'contest', u'sweat']
[u'pampl', u'claim', u'maiden']
[u'parent', u'vote', u'compens', u'home']
[u'parmalat', u'deutsch', u'bank']
[u'passer', u'prevent', u'thiev', u'clean', u'laundromat']
[u'philippin', u'seek', u'patch', u'tie']
[u'pittman', u'embrac', u'second', u'chanc']
[u'plain', u'english', u'vote', u'guid', u'difficult']
[u'plan', u'afoot', u'creat', u'ratepay', u'group']
[u'stand', u'iraq', u'action', u'despit', u'latest', u'critic']
[u'polic', u'hunt', u'newsag', u'robberi']
[u'polic', u'charg', u'derbi', u'drug', u'raid']
[u'polic', u'locat', u'bogong', u'hiker']
[u'polic', u'seek', u'believ', u'involv', u'shoot']
[u'polic', u'warn', u'drug', u'make', u'increas', u'region']
[u'politician', u'pass', u'free', u'trade', u'deal', u'dairi']
[u'pool', u'staff', u'escap', u'disciplin', u'free', u'entri']
[u'postal', u'worker', u'consid', u'strike', u'disput']
[u'properti', u'market', u'cool', u'treasur', u'say']
[u'proud', u'umaga', u'rejoin', u'black']
[u'public', u'urg', u'wide', u'berth', u'migrat', u'whale']
[u'quintuplet', u'bear', u'brisban']
[u'radic', u'iraqi', u'cleric', u'call', u'truce', u'reject']
[u'radic', u'iraqi', u'cleric', u'vow', u'fight', u'najaf', u'occup']
[u'raider', u'stand', u'smith']
[u'raider', u'winger', u'arrest', u'king', u'cross']
[u'rain', u'fail', u'break', u'england', u'drought']
[u'rainfal', u'spark', u'flinder', u'rang', u'floral', u'bloom']
[u'read', u'good', u'book', u'mobil', u'phone', u'late']
[u'reef', u'grow', u'despit', u'alga', u'threat']
[u'rescu', u'spark', u'polic', u'weather', u'warn']
[u'reserv', u'bank', u'say', u'rate', u'rise']
[u'think', u'urg', u'shuttl', u'stallion']
[u'review', u'probe', u'safeti']
[u'riley', u'call', u'support', u'asthma', u'foundat']
[u'riverina', u'firm', u'tourism', u'honour']
[u'robinson', u'stay', u'sale']
[u'sadr', u'milit', u'seek', u'hostag', u'prison', u'swap', u'video']
[u'salem', u'chalabi', u'say', u'charg', u'undermin', u'saddam', u'trial']
[u'shepparton', u'trial', u'singl', u'gender', u'swim']
[u'shire', u'welcom', u'school', u'fund']
[u'kill', u'wound', u'iraq', u'suicid', u'bomb']
[u'face', u'tribun']
[u'face', u'tribun']
[u'slater', u'struggl', u'groin', u'injuri']
[u'small', u'grower', u'blame', u'oliv', u'levi', u'failur']
[u'small', u'radioact', u'leak', u'investig']
[u'smith', u'kalli', u'help', u'protea', u'secur', u'draw']
[u'snow', u'close', u'highway']
[u'soccer', u'offici', u'seek', u'advic', u'parent', u'plan']
[u'kilda', u'polic', u'question', u'alleg', u'kidnapp']
[u'stokel', u'win', u'wakefield', u'park']
[u'steal', u'babi', u'reunit', u'famili']
[u'strike', u'consensus', u'concern', u'mine', u'union']
[u'sudan', u'expect', u'meet', u'demand']
[u'suicid', u'highlight', u'mental', u'health', u'fund', u'crisi']
[u'suppress', u'materi', u'falconio', u'trial', u'prompt']
[u'surf', u'lifesav', u'consid', u'high', u'tech']
[u'sushi', u'shop', u'worker', u'guilti', u'manslaught']
[u'swan', u'grappl', u'trainer', u'death']
[u'talk', u'tribun', u'concern', u'timor']
[u'tamworth', u'council', u'lose', u'elect', u'cost', u'appeal']
[u'premier', u'meet', u'butler']
[u'road', u'open', u'snowfal']
[u'teen', u'jail', u'muswellbrook', u'murder']
[u'face', u'court', u'cocain', u'haul']
[u'toddler', u'kill', u'truck', u'smash']
[u'cruis', u'thriller', u'score', u'offic']
[u'diplomat', u'australia', u'high', u'commission']
[u'townsvill', u'accid', u'claim', u'motorcyclist', u'life']
[u'wilcannia', u'road', u'crash']
[u'custodi', u'abduct', u'babi']
[u'union', u'welcom', u'rule', u'mine', u'disast']
[u'upgrad', u'track', u'tennant', u'creek', u'rail', u'station']
[u'figur', u'pull', u'local', u'sharemarket']
[u'lib', u'uniform', u'road', u'rule']
[u'vieira', u'tell', u'mind']
[u'wage', u'rise', u'tip', u'pressur', u'small', u'busi']
[u'wolv', u'beat', u'return', u'flight']
[u'woman', u'bodi', u'hawthorn', u'flat']
[u'wood', u'match', u'norman', u'record']
[u'worksaf', u'continu', u'illeg', u'firework', u'hunt']
[u'agreement', u'sweet', u'acfa']
[u'ming', u'carri', u'chines', u'flag']
[u'yarwun', u'prompt', u'safeti', u'warn']
[u'yunupingu', u'resign', u'northern', u'land', u'council']
[u'zola', u'bid', u'belat', u'farewel', u'ador', u'chelsea', u'fan']
[u'accus', u'murder', u'say', u'victim', u'incorrect', u'identifi']
[u'aircraft', u'engin', u'continu', u'compens']
[u'albani', u'port', u'seek', u'bomb', u'compo']
[u'alonso', u'seek', u'victori', u'return', u'hungari']
[u'plan', u'pork', u'import', u'probe']
[u'alston', u'defend', u'austereo', u'posit']
[u'ansel', u'clean', u'profit']
[u'student', u'screen', u'tuberculosi', u'case']
[u'arthur', u'get', u'ditch', u'olymp', u'berth']
[u'asbesto', u'victim', u'applaud', u'jam', u'hardi', u'ban']
[u'astronom', u'shed', u'light', u'sight']
[u'asylum', u'seeker', u'polici', u'trigger', u'voter', u'protest']
[u'athen', u'mayor', u'eas', u'tension', u'australia']
[u'athen', u'organis', u'deni', u'hand', u'free', u'ticket']
[u'aust', u'oblig', u'help', u'nauru', u'labor', u'say']
[u'australian', u'agricultur', u'profit', u'climb', u'despit']
[u'backpack', u'bodi', u'sydney', u'harbour']
[u'seed', u'polish', u'open']
[u'bali', u'bomber', u'seek', u'charg', u'dismiss']
[u'barossa', u'forum', u'address', u'develop', u'direct']
[u'basra', u'tens', u'troop', u'militia', u'clash']
[u'beatti', u'end', u'schooli', u'agreement']
[u'beef', u'produc', u'tell', u'work', u'hard', u'market']
[u'beij', u'hotel', u'school', u'turn', u'away', u'aid', u'orphan']
[u'bird', u'jump', u'speci', u'barrier', u'scientist']
[u'blatter', u'back', u'china', u'world', u'host']
[u'blue', u'plan', u'princ', u'park']
[u'surviv', u'truck']
[u'briton', u'william', u'eye', u'bout', u'klitschko']
[u'busi', u'expect', u'continu', u'strong', u'sale']
[u'butler', u'receiv', u'handshak']
[u'cabinet', u'dissent', u'slow', u'palestinian', u'polic', u'plan']
[u'call', u'increas', u'great', u'alpin', u'boost']
[u'crash', u'cut', u'bendigo', u'power']
[u'carr', u'credit', u'brother', u'field', u'tough']
[u'casino', u'worker', u'consid', u'offer']
[u'chinchilla', u'welcom', u'quintuplet']
[u'club', u'drive', u'accus', u'refus', u'bail']
[u'coast', u'firebug', u'enjoy', u'attent', u'expert']
[u'commonwealth', u'bank', u'staff', u'plan', u'stoppag']
[u'compens', u'unlik', u'phone', u'outag']
[u'condit', u'firefight']
[u'cotton', u'accept', u'river', u'crop']
[u'council', u'fight', u'earli', u'train', u'time']
[u'council', u'fear', u'revenu', u'loss', u'util', u'control']
[u'council', u'reform', u'walga']
[u'council', u'welcom', u'qanta', u'flight', u'decis']
[u'coupl', u'remand', u'babi', u'abduct']
[u'coupl', u'face', u'court', u'kidnap']
[u'court', u'tell', u'falconio', u'murder', u'suspect', u'vehicl']
[u'croc', u'look', u'home', u'town', u'support']
[u'cross', u'reward', u'effort', u'hawk']
[u'dajka', u'lose', u'olymp', u'appeal']
[u'damag', u'minimis', u'melbourn', u'tyre', u'centr']
[u'darfur', u'kill', u'genocid']
[u'bruijn', u'say', u'free', u'record']
[u'democrat', u'campaign', u'industri', u'relat']
[u'dept', u'deni', u'pressur', u'council', u'develop']
[u'disabl', u'servic', u'cut', u'spark', u'newcastl', u'protest']
[u'announc', u'profit', u'boost']
[u'doctor', u'group', u'question', u'hour', u'health', u'care']
[u'dog', u'cross', u'rise', u'star', u'run']
[u'driver', u'warn', u'extra', u'care', u'need', u'cane']
[u'spring', u'tip', u'eastern', u'state']
[u'dunedoo', u'divid', u'council', u'merger']
[u'engin', u'troubl', u'forc', u'jetstar', u'turnaround']
[u'eurobodalla', u'water', u'shortag', u'prompt', u'warn']
[u'europ', u'elit', u'seek', u'champion', u'leagu', u'rich']
[u'extens', u'grant', u'northern', u'railyard', u'develop']
[u'wife', u'bite', u'wallet']
[u'falconio', u'hear', u'finish', u'earli']
[u'falconio', u'trial', u'hear', u'evid']
[u'farmer', u'await', u'wetland', u'survey', u'result']
[u'farmer', u'send', u'pack', u'amid', u'udder', u'scandal']
[u'farmer', u'warn', u'prepar', u'spell']
[u'farm', u'group', u'protest', u'health', u'servic', u'chang']
[u'fatal', u'branxton', u'crash', u'prompt', u'wit', u'appeal']
[u'feder', u'close', u'tanker', u'explos']
[u'feder', u'road', u'fund', u'worri', u'council']
[u'govt', u'urg', u'chang', u'propos', u'anti', u'terror', u'law']
[u'feral', u'oliv', u'plan', u'slug', u'grower']
[u'firearm', u'cach', u'inner', u'melbourn']
[u'firefight', u'search', u'factori', u'explos', u'victim']
[u'fluorid', u'recommend', u'north', u'coast', u'water']
[u'mayor', u'signal', u'independ', u'campaign']
[u'priest', u'face', u'court', u'indec', u'deal']
[u'gippsland', u'hous', u'price', u'rocket']
[u'gold', u'coast', u'beenleigh', u'bikeway', u'open']
[u'govt', u'consid', u'appeal', u'union', u'work', u'site']
[u'govt', u'defend', u'water', u'manag', u'record']
[u'govt', u'urg', u'releas', u'process', u'review']
[u'govt', u'urg', u'support', u'domest', u'violenc', u'shelter']
[u'graft', u'rampant', u'malaysian', u'polic']
[u'grave', u'desecr', u'jewish', u'cemeteri', u'franc']
[u'great', u'train', u'robber', u'bigg', u'seek', u'clemenc']
[u'health', u'group', u'seek', u'syring', u'safeti', u'educ']
[u'hewson', u'doubt', u'australian', u'understand']
[u'hickey', u'inquest', u'find', u'bring', u'forward']
[u'hick', u'defenc', u'team', u'like', u'gain', u'time']
[u'hoogi', u'shun', u'limelight', u'athen']
[u'hospit', u'psychiatr', u'staff', u'seek', u'safeti', u'review']
[u'howard', u'latham', u'discuss', u'amend']
[u'huge', u'crowd', u'expect', u'field', u'day']
[u'hunter', u'crime', u'rate', u'fall']
[u'icpa', u'back', u'bigger', u'distanc', u'educ', u'allow']
[u'indian', u'rescuer', u'reach', u'trap', u'tunnel']
[u'industri', u'watchdog', u'glimps', u'rural', u'woe']
[u'predict', u'increas', u'drug', u'cheat']
[u'iraq', u'hostag', u'taker', u'demand', u'ransom', u'jordanian']
[u'jam', u'hardi', u'profit', u'jump', u'amid', u'warn']
[u'japanes', u'nuclear', u'plant', u'admit', u'check']
[u'jone', u'want', u'marshal', u'charg']
[u'juri', u'find', u'magistr', u'guilti', u'offenc']
[u'kerr', u'face', u'tribun']
[u'khouri', u'hand', u'memoir', u'evid']
[u'kindergarten', u'communiti', u'protest']
[u'king', u'kong', u'star', u'wray', u'die']
[u'koopu', u'southern', u'enter', u'guilti', u'plea']
[u'labor', u'play', u'marriag', u'split']
[u'labor', u'pan', u'alston', u'austereo']
[u'labor', u'reject', u'trobe', u'fund', u'fear']
[u'labor', u'chang', u'soft']
[u'lashko', u'splash', u'athen']
[u'privat', u'school', u'princip', u'tell', u'labor']
[u'lebanes', u'hostag', u'free', u'iraq']
[u'lion', u'king', u'roar', u'helpmann', u'award']
[u'locust', u'swarm', u'africa']
[u'lose', u'lead', u'long', u'fundrais', u'walk']
[u'satisfact', u'rat', u'disabl', u'taxi', u'servic']
[u'lucki', u'escap', u'crop', u'spray', u'pilot']
[u'jail', u'sushi', u'shop', u'murder']
[u'lie', u'cover', u'murder', u'court', u'hear']
[u'market', u'dip', u'despit', u'profit', u'report']
[u'mass', u'grave', u'expect', u'reveal', u'muslim', u'bodi']
[u'matfield', u'add', u'south', u'african', u'squad']
[u'mauritania', u'hold', u'soldier', u'coup', u'attempt']
[u'mayor', u'reject', u'mine', u'concern']
[u'media', u'scrum', u'visit', u'athlet', u'villag']
[u'mole', u'creek', u'log', u'illeg']
[u'morley', u'deni', u'england']
[u'mother', u'daughter', u'buri']
[u'defend', u'govt', u'rural', u'record']
[u'fight', u'disabl', u'servic', u'cut']
[u'question', u'indigen', u'tutor', u'fund']
[u'mutu', u'stay', u'chelsea', u'abramovich', u'talk']
[u'mysteri', u'deepen', u'owen', u'futur']
[u'nat', u'issu']
[u'season', u'accommod', u'game']
[u'bendigo', u'bank', u'track']
[u'law', u'allow', u'aust', u'polic', u'work']
[u'go', u'anti', u'dope', u'deal', u'say', u'blatter']
[u'govt', u'accus', u'chang', u'train', u'time', u'definit']
[u'nuclear', u'check', u'requir', u'plant', u'shutdown']
[u'seek', u'support', u'timor', u'crime', u'tribun']
[u'chief', u'predict', u'litr', u'petrol']
[u'hit', u'high', u'iraq', u'ceas', u'product']
[u'oklahoma', u'bomb', u'conspir', u'get', u'life']
[u'oliv', u'grower', u'levi', u'reaction', u'bring', u'prais']
[u'oppn', u'call', u'hepburn', u'probe']
[u'opposit', u'deni', u'influenc', u'butler', u'decis']
[u'owen', u'quit', u'liverpool', u'real', u'report']
[u'pedestrian', u'kill', u'accid']
[u'philippin', u'open', u'fresh', u'iraq', u'deploy']
[u'pilbara', u'base', u'group', u'examin', u'kalgoorli', u'initi']
[u'pilot', u'unharm', u'darwin', u'plane', u'crash']
[u'pittman', u'itali', u'treatment']
[u'quiz', u'turnbul', u'iraq', u'critic']
[u'remain', u'tight', u'lip', u'elect', u'date']
[u'poland', u'transfer', u'najaf', u'control']
[u'polic', u'wilcannia', u'crash', u'victim']
[u'polic', u'probe', u'alleg', u'aborigin', u'heritag', u'breach']
[u'prison', u'entitl', u'clean', u'needl', u'green']
[u'protest', u'prompt', u'tail', u'review']
[u'publish', u'find', u'khouri', u'evid', u'unclear']
[u'putin', u'urg', u'journalist', u'safeti']
[u'question', u'septemb', u'trial']
[u'radiotherapi', u'unit', u'prioriti', u'coff', u'hospit']
[u'region', u'emerg', u'clinic', u'eas', u'hospit']
[u'rescu', u'hiker', u'prais', u'emerg', u'crew']
[u'research', u'project', u'target', u'bushfir', u'control']
[u'growth', u'take']
[u'rooster', u'target', u'minor', u'premiership']
[u'rural', u'fight', u'toxic', u'dump', u'plan']
[u'russia', u'warn', u'star', u'war']
[u'sadr', u'vow', u'fight', u'najaf']
[u'corpor', u'pay', u'bash', u'court', u'hear']
[u'jail', u'plan', u'bash', u'pregnant', u'woman']
[u'scholarship', u'recipi', u'hop', u'help', u'communiti']
[u'scutt', u'bulli', u'claim', u'prompt', u'inquiri']
[u'seafood', u'industri', u'seek', u'scienc', u'base', u'plan']
[u'secur', u'threat', u'close', u'lanka', u'embassi']
[u'sept', u'retrial', u'begin', u'germani']
[u'shopahol', u'get', u'jail', u'sentenc', u'bank', u'robberi']
[u'south', u'africa', u'recal', u'gibb', u'second', u'test']
[u'spotlight', u'fall', u'larapinta', u'trail', u'manag']
[u'spur', u'pull', u'murphi', u'deal']
[u'studi', u'examin', u'region', u'rail', u'chang', u'impact']
[u'studi', u'highlight', u'school', u'speed', u'danger']
[u'super', u'council', u'plan', u'worri', u'noosa', u'council']
[u'suspend', u'member', u'step', u'offici', u'post']
[u'swan', u'train']
[u'address', u'north', u'west', u'health', u'need']
[u'terrorist', u'blast', u'istanbul', u'hotel']
[u'test', u'throw', u'drug', u'case']
[u'thousand', u'homeless', u'cape', u'town', u'storm']
[u'injur', u'factori', u'explos']
[u'thuringowa', u'bushfir', u'test', u'local', u'crew']
[u'tourism', u'bodi', u'welcom', u'hobart', u'adelaid', u'flight']
[u'treasur', u'warn', u'global', u'rat', u'movement']
[u'tribun', u'ban', u'bateman', u'brown']
[u'tuna', u'farm', u'trial', u'get']
[u'critic', u'condit', u'sydney', u'crash']
[u'injur', u'factori', u'blast']
[u'uniform', u'polic', u'preced', u'ellison']
[u'union', u'seek', u'industri', u'manslaught', u'charg']
[u'unit', u'solskjaer', u'miss', u'entir', u'season']
[u'offer', u'fourth', u'indigen', u'scholarship']
[u'workshop', u'target', u'indigen', u'buyer']
[u'helicopt', u'target', u'najaf', u'fighter']
[u'judg', u'uphold', u'media', u'subpoena', u'leak', u'case']
[u'privat', u'space', u'ship', u'blow', u'lift']
[u'secur', u'chief', u'defend', u'terror', u'alert']
[u'sidestep', u'jazeera', u'closur']
[u'slam', u'timor', u'appeal', u'decis']
[u'help', u'pacif', u'tackl', u'money', u'launder']
[u'offic', u'suspend', u'crime', u'probe']
[u'wallabi', u'announc', u'squad', u'springbok', u'test']
[u'wallac', u'coach', u'tiger']
[u'wall', u'street', u'sit', u'tight', u'soar']
[u'wesfarm', u'post', u'record', u'profit']
[u'western', u'market', u'dinosaur', u'region']
[u'william', u'begin', u'appeal', u'process']
[u'william', u'consid', u'option']
[u'william', u'consid', u'option']
[u'woman', u'jail', u'unit', u'blaze']
[u'work', u'death', u'spark', u'review']
[u'yacht', u'race', u'organis', u'hope', u'class', u'event']
[u'seek', u'cost', u'gungahlin', u'protest', u'group']
[u'adult', u'receiv', u'meningococc', u'vaccin']
[u'agreement', u'boost', u'hospit', u'traine', u'doctor']
[u'airlin', u'price', u'war', u'coast', u'airport']
[u'black', u'dump', u'spencer']
[u'alleg', u'abductor', u'brisban']
[u'attack', u'govt', u'age', u'care']
[u'hand', u'hardi', u'donat']
[u'wait', u'legal', u'advic', u'amend']
[u'amara', u'clash', u'kill']
[u'anderton', u'join', u'birmingham']
[u'leader', u'offer', u'silenc', u'bail']
[u'aust', u'give', u'fight', u'pacif', u'aid', u'danger']
[u'aust', u'chang', u'china', u'econom', u'status']
[u'australian', u'injur', u'austrian', u'crash']
[u'author', u'swoop', u'retir', u'home', u'blaze']
[u'babysitt', u'challeng', u'leski', u'inquest']
[u'back', u'button', u'fight']
[u'basslink', u'stand', u'tree', u'plan']
[u'beatti', u'claim', u'sens', u'unnecessari', u'power', u'debat']
[u'beazley', u'hint', u'defenc', u'cutback']
[u'bird', u'outbreak', u'prompt', u'african', u'ostrich', u'cull']
[u'block', u'chimney', u'blame', u'dead', u'paraguay']
[u'bosnian', u'grave', u'reveal', u'bodi']
[u'british', u'lifer', u'win', u'lotto']
[u'burdekin', u'council', u'staff', u'protest']
[u'busi', u'group', u'outlin', u'illawarra', u'plan']
[u'busi', u'group', u'want', u'butler', u'payout']
[u'buyer', u'urg', u'hand', u'illeg', u'gun']
[u'bruce', u'highway', u'fund']
[u'rais', u'asbesto', u'knowledg', u'hous']
[u'capriati', u'pull', u'olymp']
[u'bomb', u'kill', u'isra', u'checkpoint']
[u'cattl', u'firm', u'beef', u'profit']
[u'channel', u'drag', u'alcohol', u'breach', u'trial']
[u'charlestown', u'charg', u'murder']
[u'charlton', u'snap', u'murphi', u'jeffer']
[u'children', u'aplenti', u'involv', u'croc', u'festiv']
[u'coach', u'name', u'wolv', u'state', u'leagu', u'assault']
[u'commodor', u'falcon', u'safest', u'car']
[u'commonwealth', u'post', u'profit', u'increas']
[u'communiti', u'health', u'servic', u'plan']
[u'commut', u'face', u'year', u'rail', u'problem']
[u'confer', u'focus', u'water', u'restrict']
[u'consum', u'confid', u'hit', u'year', u'high']
[u'council', u'continu', u'plan']
[u'council', u'defend', u'event', u'fund']
[u'council', u'map', u'plan', u'defenc', u'site']
[u'council', u'hold', u'merger', u'talk', u'week']
[u'court', u'hear', u'blood', u'road', u'match', u'falconio']
[u'court', u'overturn', u'decis', u'perth', u'doctor']
[u'court', u'hand', u'land', u'clear', u'fin']
[u'cowboy', u'dismiss', u'rabbitoh']
[u'crane', u'recoveri', u'spark', u'road', u'closur']
[u'crown', u'alleg', u'confess', u'murder']
[u'dajka', u'disciplinari', u'hear', u'adjourn']
[u'democrat', u'immigr', u'chang']
[u'detaine', u'hold', u'indefinit', u'lose', u'appeal']
[u'diamond', u'target', u'gold', u'traumat', u'year']
[u'disabl', u'reform', u'prove', u'cost']
[u'help', u'brew', u'better', u'coffe']
[u'doubt', u'cast', u'review']
[u'downer', u'optimist', u'fresh', u'timor', u'talk']
[u'dream', u'team', u'down', u'turk', u'final', u'olymp', u'warm']
[u'drug', u'trade', u'threaten', u'afghan', u'democraci', u'rumsfeld']
[u'dun', u'remain', u'waratah']
[u'dupa', u'defiant', u'face', u'second', u'murder', u'convict']
[u'pull', u'boost', u'baddeley', u'hop']
[u'focus', u'whistl', u'strait', u'tiger']
[u'emerg', u'chief', u'unhappi', u'wait', u'find']
[u'engin', u'share', u'environment', u'research', u'award']
[u'england', u'releas', u'batti', u'test', u'squad']
[u'exercis', u'singaroo', u'begin', u'darwin']
[u'extrem', u'sport', u'team', u'converg', u'kalbarri']
[u'factori', u'evacu', u'ammonia', u'leak']
[u'famili', u'field', u'bendigo', u'candid']
[u'farmer', u'urg', u'appli', u'drought', u'assist']
[u'feder', u'back', u'seek', u'ocean', u'termin', u'plan']
[u'feder', u'fund', u'suicid', u'prevent', u'scheme']
[u'rais', u'rat', u'percent']
[u'ferri', u'fare', u'rise', u'fuel', u'debat']
[u'fund', u'flow', u'hour', u'health', u'servic']
[u'gerrard', u'boost', u'red', u'champion', u'leagu', u'hop']
[u'govt', u'pressur', u'releas', u'kelli', u'reef', u'detail']
[u'govt', u'reveal', u'role', u'butler', u'staff']
[u'govt', u'matur', u'opportun']
[u'grow', u'pain', u'children', u'think']
[u'habib', u'call', u'home']
[u'hackett', u'say', u'phelp', u'disappoint']
[u'help', u'seek', u'save', u'jail']
[u'henri', u'ask', u'jone', u'balanc']
[u'hewitt', u'come', u'home', u'adelaid']
[u'highway', u'crash', u'leav', u'dead']
[u'hinterland', u'blaze', u'burn']
[u'hospit', u'back', u'nurs', u'train']
[u'icac', u'probe', u'build', u'industri', u'corrupt', u'claim']
[u'announc', u'zimbabw', u'investig']
[u'impact', u'manag', u'chang', u'unfold']
[u'independ', u'liber', u'ring', u'beazley', u'say']
[u'injuri', u'forc']
[u'innov', u'target', u'shearer', u'baaad', u'back']
[u'inquiri', u'fail', u'sourc', u'hutton', u'leak']
[u'isra', u'missil', u'hit', u'gaza', u'refuge', u'camp']
[u'jam', u'hardi', u'chairman', u'resign']
[u'jetstar', u'flight', u'delay', u'launceston']
[u'jetstar', u'report', u'plane', u'fault']
[u'job', u'growth', u'rise']
[u'kenya', u'face', u'hunger', u'crisi']
[u'kenyan', u'boxer', u'betray', u'countri', u'rogg']
[u'kenyan', u'fail', u'athen', u'drug', u'test']
[u'kerr', u'clear', u'head', u'butt', u'charg']
[u'kerr', u'clear', u'headbutt', u'charg']
[u'labor', u'idea', u'olymp', u'elect']
[u'lack', u'competit', u'blame', u'petrol', u'price', u'hike']
[u'lack', u'govern', u'fund', u'killer', u'highway']
[u'latham', u'find', u'butler', u'payout', u'sicken']
[u'lenton', u'battl', u'nerv', u'game', u'draw', u'closer']
[u'jump', u'turnbul', u'statement']
[u'local', u'hospit', u'traine', u'doctor']
[u'son', u'accus', u'murder', u'cannib']
[u'die', u'gove', u'power', u'station', u'accid']
[u'electrocut', u'goulburn', u'valley']
[u'jail', u'kill', u'babi']
[u'matern', u'bed', u'retain', u'public', u'outrag']
[u'mayor', u'reflect', u'land', u'rezon', u'import']
[u'mayor', u'welcom', u'altern', u'wind', u'farm', u'sit']
[u'mental', u'string', u'featur', u'ekka', u'peopl']
[u'minist', u'launch', u'plastic', u'famin']
[u'minist', u'upbeat', u'address', u'doctor', u'shortag']
[u'fruit', u'tree', u'destroy', u'follow', u'citrus']
[u'fund', u'seek', u'address', u'tradespeopl', u'shortag']
[u'road', u'fund', u'seek', u'avoid', u'flood']
[u'put', u'brake', u'slower', u'car']
[u'murali', u'face', u'shoulder', u'surgeri']
[u'murdoch', u'worri', u'phone', u'trace', u'court', u'tell']
[u'music', u'festiv', u'eureka', u'celebr']
[u'give', u'chief', u'welcom']
[u'nat', u'criticis', u'doctor', u'rural', u'attitud', u'problem']
[u'nepal', u'launch', u'offens', u'rebel']
[u'canberra', u'chief', u'hop', u'restor', u'faith']
[u'newcastl', u'council', u'impos', u'jam', u'hardi']
[u'news', u'corp', u'bank', u'provid', u'market', u'boost']
[u'news', u'good', u'pack', u'firm', u'unsecur', u'creditor']
[u'norther', u'comeback', u'track']
[u'soldier', u'kill', u'driver', u'train', u'accid']
[u'market', u'continu', u'irrat', u'exuber']
[u'olyroo', u'matilda', u'kick']
[u'oppn', u'back', u'youth', u'bail', u'facil']
[u'oppn', u'call', u'bounti']
[u'opposit', u'claim', u'train', u'turmoil']
[u'opposit', u'vow', u'reinstat', u'darwin', u'festiv', u'parad']
[u'owen', u'miss', u'liverpool', u'game']
[u'page', u'health', u'servic', u'protest', u'march']
[u'park', u'author', u'defend', u'reef', u'rezon']
[u'perth', u'abduct', u'brazen']
[u'petrol', u'bomb', u'throw', u'ireland', u'clash']
[u'philippin', u'withdraw', u'iraq', u'deploy', u'offer']
[u'photograph', u'sue', u'aguilera', u'alleg', u'assault']
[u'pitcairn', u'island', u'urg', u'hand', u'gun']
[u'plan', u'continu', u'swan', u'reach', u'health', u'centr']
[u'plea', u'intensifi', u'bushfir', u'probe']
[u'brush', u'asid', u'turnbul', u'question']
[u'polic', u'assault', u'chase']
[u'polic', u'associ', u'welcom', u'plan']
[u'polic', u'crack', u'school', u'speed']
[u'polic', u'probe', u'fatal', u'hous']
[u'polic', u'search', u'driver']
[u'polic', u'duvet', u'murder', u'mysteri']
[u'polic', u'pepper', u'spray', u'menac', u'bull']
[u'pound', u'say', u'except', u'fifa']
[u'properti', u'boom', u'bring', u'bendigo', u'price', u'line']
[u'protest', u'allawi', u'parti', u'offic']
[u'protest', u'hold', u'death', u'olymp', u'construct']
[u'psychiatrist', u'test', u'accus', u'zeta', u'jone', u'stalker']
[u'push', u'highway', u'fund']
[u'push', u'boost', u'drink', u'spike', u'educ']
[u'radio', u'theft', u'doesnt', u'compromis', u'game', u'secur']
[u'ratepay', u'group', u'begin', u'oper']
[u'region', u'recruit', u'problemat']
[u'research', u'board', u'encourag', u'scienc', u'fund', u'bid']
[u'resid', u'lobbi', u'speed', u'camera']
[u'injuri', u'forc', u'burn', u'retir']
[u'right', u'activist', u'khouri']
[u'robot', u'attempt', u'hubbl', u'repair']
[u'roo', u'lodg', u'appeal', u'brown', u'suspens']
[u'row', u'crew', u'tribut', u'bali', u'victim']
[u'royal', u'show', u'introduc', u'drug', u'test']
[u'rural', u'support', u'farmbi', u'fund', u'plan']
[u'sadr', u'tell', u'fighter', u'carri', u'martyr']
[u'safin', u'open', u'account', u'polish', u'open']
[u'scientist', u'win', u'prize', u'enlighten', u'politician']
[u'second', u'jordanian', u'kidnap', u'iraq', u'offici']
[u'septemb', u'retrial', u'doubt']
[u'serial', u'killer', u'lose', u'murder', u'appeal']
[u'sharehold', u'urg', u'donat', u'jam', u'hardi']
[u'shire', u'seek', u'govt', u'talk', u'wake', u'atsic', u'demis']
[u'solomon', u'prison', u'disturb', u'prompt', u'review']
[u'southern', u'iraq', u'pipelin', u'closur', u'cut', u'export']
[u'stockham', u'gear', u'paralymp']
[u'stosur', u'serena', u'pull']
[u'student', u'sue', u'govt', u'school', u'bash']
[u'studi', u'find', u'airlin', u'servic', u'viabl']
[u'sudan', u'accus', u'ongo', u'atroc']
[u'sudan', u'accus', u'west', u'eye', u'plunder']
[u'support', u'seabird', u'habitat', u'restor', u'plan']
[u'suspici', u'person', u'declin', u'evid']
[u'swim', u'australia', u'versus']
[u'sydney', u'ferri', u'lobbi', u'fare', u'increas']
[u'talk', u'continu', u'miner', u'camp', u'plan']
[u'forest', u'job', u'save']
[u'tasmanian', u'score', u'eureka', u'award']
[u'thorp', u'urg', u'drug', u'test']
[u'thorp', u'urg', u'competit', u'drug', u'test']
[u'dead', u'injur', u'china', u'quak']
[u'tokyo', u'heatwav', u'equal', u'record']
[u'toowoomba', u'crew', u'track', u'silver', u'spike']
[u'tornado', u'kill', u'atlant', u'coast', u'holidaymak']
[u'tougher', u'control', u'tree', u'plantat']
[u'traine', u'doctor', u'boost', u'hunter', u'hospit']
[u'tweed', u'research', u'acid', u'sulphat', u'soil']
[u'children', u'brisban', u'abduct']
[u'tyson', u'conqueror', u'line', u'bout']
[u'scientist', u'human', u'clone', u'licenc']
[u'upbeat', u'wood', u'experi', u'deja']
[u'second', u'aircraft', u'carrier', u'asia', u'pacif']
[u'militari', u'prepar', u'finish', u'moqtada', u'fight']
[u'sailor', u'face', u'rape', u'charg', u'darwin']
[u'test', u'gear']
[u'victorian', u'festiv', u'commemor', u'eureka', u'stockad']
[u'memori', u'crack', u'spark', u'council', u'fear']
[u'webck', u'play', u'grand', u'final', u'hype']
[u'welfar', u'group', u'fund', u'anti', u'wast', u'plan', u'effort']
[u'wigan', u'smith', u'retir', u'season']
[u'wild', u'dog', u'ostrich', u'death']
[u'wilkinson', u'relish', u'return', u'club', u'duti']
[u'windi', u'omit', u'best', u'jacob', u'champion', u'trophi']
[u'wit', u'fail', u'build', u'corrupt']
[u'worker', u'boost']
[u'million', u'project', u'time', u'govt']
[u'accus', u'kidnapp', u'refus', u'bail']
[u'personnel', u'right', u'concern', u'anthrax']
[u'push', u'darwin', u'match']
[u'ainsli', u'prim', u'success', u'gold']
[u'alic', u'sydney', u'flight', u'cut', u'gobsmack', u'tourist', u'oper']
[u'alien', u'discoveri', u'excit', u'russian', u'scientist']
[u'alleg', u'brisban', u'abductor', u'mental']
[u'reveal', u'privat', u'school', u'fund', u'plan']
[u'alston', u'defend', u'austereo', u'appoint']
[u'call', u'extra', u'health', u'fund', u'aborigin']
[u'want', u'indigen', u'health', u'fund', u'boost']
[u'ambros', u'hop', u'luck', u'symmon', u'plain']
[u'ambros', u'hop', u'luck', u'tasmania']
[u'ambul', u'servic', u'get', u'radio', u'boost']
[u'ambul', u'union', u'draw', u'battl', u'line']
[u'anderson', u'urg', u'margaret', u'report']
[u'art', u'educ', u'review']
[u'asean', u'australia', u'trade', u'pact', u'deal']
[u'audit', u'highlight', u'health', u'servic', u'loss']
[u'aussi', u'athlet', u'miss', u'open', u'ceremoni']
[u'award', u'honour', u'benalla', u'pair', u'braveri']
[u'bail', u'stalk', u'charg']
[u'edward', u'olymp']
[u'bathhous', u'staff', u'highlight', u'loss']
[u'beach', u'rescu', u'effort', u'bring', u'award']
[u'beatl', u'grammi', u'hammer']
[u'beazley', u'return', u'defenc', u'failur', u'hill']
[u'threaten', u'industri', u'unrest', u'council', u'job']
[u'blackal', u'resid', u'money', u'limit']
[u'bomb', u'squad', u'call', u'investig', u'backyard', u'blast']
[u'brent', u'crude', u'touch', u'mark']
[u'brewer', u'find', u'tax', u'time', u'hard', u'swallow']
[u'broadcast', u'fin', u'workplac', u'bulli']
[u'bronco', u'crowd', u'safe', u'coast', u'cullen']
[u'brown', u'scott', u'return', u'lion']
[u'bureau', u'say', u'wind', u'eas']
[u'burni', u'alderman', u'seek', u'chang', u'local', u'govt', u'charter']
[u'busi', u'chamber', u'look', u'blood']
[u'busi', u'focus', u'mine', u'opportun']
[u'carr', u'say', u'polic', u'learn', u'redfern', u'riot']
[u'chief', u'minist', u'group', u'recognis', u'braveri']
[u'child', u'internet', u'predat', u'jail', u'year']
[u'church', u'offer', u'abus', u'victim', u'altern']
[u'leader', u'deni', u'leadership', u'rumour']
[u'club', u'group', u'unhappi', u'council', u'game', u'stanc']
[u'coast', u'team', u'wouldnt', u'impact', u'bronco', u'crowd']
[u'cole', u'myer', u'profit', u'ring', u'regist']
[u'committe', u'begin', u'closur', u'hear']
[u'committe', u'urg', u'charg', u'lay']
[u'communiti', u'seek', u'murder', u'answer']
[u'council', u'plan', u'chief', u'execut', u'payout', u'talk']
[u'council', u'ask', u'consid', u'region', u'wast', u'plan']
[u'council', u'staff', u'protest']
[u'council', u'upbeat', u'galleri', u'work']
[u'firefight', u'want', u'manag', u'chang']
[u'crow', u'faith', u'craig']
[u'darwin', u'awash', u'singl']
[u'decid', u'springbrook', u'govt', u'tell']
[u'defam', u'rule', u'wont', u'bankrupt', u'conserv', u'group']
[u'dept', u'predict', u'rural', u'workforc', u'shortag']
[u'disabl', u'ralli', u'train', u'program', u'cut']
[u'buy', u'melbourn', u'licenc']
[u'doubt', u'rais', u'bega', u'get', u'traine', u'doctor', u'plan']
[u'driver', u'urg', u'push', u'better', u'fuel', u'deal']
[u'drink', u'driver', u'order', u'arrest']
[u'elder', u'coupl', u'face', u'drug', u'charg']
[u'employ', u'growth', u'return']
[u'iraq', u'nuclear', u'weapon', u'chief', u'deni', u'program']
[u'eyr', u'peninsula', u'farm', u'death', u'investig']
[u'fals', u'record', u'claim', u'build', u'licenc']
[u'famili', u'crash', u'victim', u'back', u'slower', u'car']
[u'farmer', u'input', u'wild', u'debat']
[u'fear', u'air', u'fraser', u'dingo', u'number']
[u'feder', u'henin', u'hardenn', u'lead', u'athen', u'seed']
[u'fencer', u'slam', u'controversi', u'sabr', u'mask']
[u'firefight', u'prepar', u'warm', u'weekend']
[u'kill', u'turkey', u'train', u'crash']
[u'forens', u'accredit', u'question', u'falconio']
[u'fossil', u'help', u'unveil', u'past']
[u'free', u'killer', u'surveil', u'life']
[u'gene', u'block', u'monkey', u'busi']
[u'georgian', u'leader', u'rais', u'ethnic', u'cleans', u'fear']
[u'gold', u'miner', u'boost', u'job']
[u'goodrem', u'take', u'athen', u'hospit']
[u'govt', u'accus', u'maltreat', u'victorian', u'meat', u'worker']
[u'govt', u'back', u'labor', u'demand']
[u'govt', u'cash', u'aborigin', u'tourist', u'attract', u'need']
[u'govt', u'move', u'streamlin', u'teacher', u'disciplinari']
[u'govt', u'offer', u'truck', u'industri', u'break']
[u'govt', u'urg', u'repay', u'brigad']
[u'west', u'young', u'traine', u'doctor']
[u'greek', u'comeback', u'seal', u'draw', u'south', u'korea']
[u'greek', u'boss', u'resign', u'signal', u'fiasco']
[u'green', u'group', u'celebr', u'cotton', u'crop']
[u'gregan', u'dismiss', u'waratah']
[u'gregan', u'say', u'world', u'loss', u'major', u'motiv']
[u'group', u'highlight', u'gippsland', u'cancer', u'rate']
[u'gypsi', u'joker', u'label', u'wit', u'scumbag']
[u'heavi', u'fight', u'najaf']
[u'hotel', u'review', u'hour', u'incid']
[u'hous', u'demand', u'remain', u'high', u'report']
[u'howard', u'deni', u'secret', u'deal', u'trade', u'agreement']
[u'indonesian', u'court', u'clear', u'general', u'massacr']
[u'investig', u'alcan', u'worker', u'death', u'continu']
[u'iraq', u'deploy', u'make', u'australia', u'terrorist', u'target']
[u'iraqi', u'seek', u'sadr', u'meet', u'najaf', u'fight']
[u'jam', u'hardi', u'boss', u'face', u'fraud', u'charg']
[u'jensen', u'target', u'million', u'dollar', u'hackett']
[u'level', u'western']
[u'job', u'research', u'show', u'surg', u'pay', u'work']
[u'judiciari', u'reserv', u'william', u'decis']
[u'judiciari', u'hear', u'submiss', u'william', u'case']
[u'kimmorley', u'injuri', u'battl', u'continu']
[u'korea', u'aim', u'unifi', u'team', u'game']
[u'labor', u'council', u'seek', u'jam', u'hardi']
[u'lack', u'plagu', u'lake', u'argyl', u'redevelop']
[u'lara', u'name', u'captain', u'champion', u'trophi']
[u'lennon', u'urg', u'recal', u'parliament', u'butler']
[u'lindenow', u'seek', u'connect']
[u'local', u'olympian', u'prepar', u'gold']
[u'mainland', u'media', u'blame', u'butler', u'demis', u'premier']
[u'murder', u'charg', u'undergo', u'mental', u'assess']
[u'rebel', u'star', u'argentina']
[u'market', u'group', u'reject', u'tourism', u'report', u'attack']
[u'mayor', u'seek', u'asbesto', u'answer']
[u'mayor', u'meet', u'toxic', u'dump', u'plan']
[u'militia', u'threaten', u'iraq', u'line', u'najaf', u'attack']
[u'minist', u'accus', u'paper', u'anti', u'govt', u'campaign']
[u'mini', u'tornado', u'hit', u'bunburi']
[u'charg', u'lay', u'child', u'abus', u'probe']
[u'time', u'forecast']
[u'muralitharan', u'head', u'australia', u'surgeri']
[u'museum', u'showcas', u'italian', u'heritag']
[u'cancer', u'treatment', u'go', u'trial']
[u'rule', u'worri', u'china']
[u'news', u'corp', u'announc', u'quarter', u'profit', u'boost']
[u'digger', u'dealer', u'consid', u'junior']
[u'plan', u'alic', u'youth', u'detent', u'centr']
[u'reef', u'rezon', u'detail', u'tabl']
[u'fund', u'minist', u'defam', u'defenc']
[u'nunn', u'forecast', u'track', u'glori']
[u'ogradi', u'favourit', u'olymp', u'road', u'race']
[u'product', u'fear', u'trigger', u'market', u'volatil']
[u'opal', u'confid', u'conquer', u'dream', u'team']
[u'opposit', u'back', u'land', u'coordin']
[u'pagan', u'happi', u'blue', u'despit', u'hawthorn']
[u'passeng', u'escap', u'plane', u'crash', u'unscath']
[u'patholog', u'test', u'reassess', u'doctor', u'suspens']
[u'phelp', u'clam', u'record']
[u'pipelin', u'disput', u'prove', u'cost']
[u'marsh', u'leav', u'warrior']
[u'plan', u'develop', u'hunter', u'manag']
[u'planner', u'administ', u'shop', u'centr', u'work']
[u'polic', u'killer', u'releas', u'prompt', u'opposit', u'critic']
[u'polic', u'offic', u'recognis', u'help', u'rescu', u'bali']
[u'pont', u'love', u'england']
[u'poor', u'rail', u'blame', u'turkey', u'crash']
[u'pound', u'confirm', u'olymp', u'test', u'growth', u'hormon']
[u'pound', u'defend', u'thorp', u'drug', u'claim']
[u'prison', u'upgrad', u'respons', u'ellison']
[u'project', u'tackl', u'childhood', u'develop', u'problem']
[u'prosecutor', u'seek', u'second', u'life', u'term', u'dupa']
[u'water', u'plan', u'boost', u'condamin', u'balonn', u'river']
[u'queensland', u'recognis', u'save', u'truck', u'driver']
[u'question', u'rais', u'karoonda', u'polic', u'presenc']
[u'quilt', u'unlock', u'murder', u'mysteri']
[u'quri', u'take', u'swipe', u'palestinian', u'milit']
[u'raducan', u'demand', u'return', u'gold', u'medal']
[u'rail', u'studi', u'find', u'know', u'soon']
[u'rain', u'aid', u'wheatbelt', u'crop']
[u'rebel', u'attend', u'sudan', u'peac', u'talk']
[u'report', u'show', u'polic', u'unprepar', u'riot', u'brogden']
[u'resid', u'reward', u'brave', u'effort']
[u'russian', u'trio', u'fail', u'drug', u'test']
[u'safin', u'thump', u'myskina', u'poland']
[u'sangakkara', u'put', u'lankan', u'lofti', u'posit']
[u'banish', u'plastic', u'bag']
[u'saudi', u'promis', u'fail', u'cool', u'price']
[u'search', u'bombala', u'idol']
[u'senat', u'inquiri', u'find', u'intellig', u'failur', u'bali']
[u'serial', u'killer', u'sobhraj', u'jail', u'life']
[u'volunt', u'recognis', u'brave', u'effort']
[u'shire', u'group', u'lobbi', u'better', u'public', u'transport']
[u'shire', u'wont', u'oppos', u'marina', u'plan', u'public', u'opinion']
[u'sing', u'final', u'round', u'return']
[u'sing', u'throw', u'shark', u'comeback']
[u'south', u'australian', u'recognis', u'braveri']
[u'southern', u'develop', u'orang']
[u'spanish', u'cyclist', u'fail', u'drug', u'test']
[u'spanish', u'polic', u'bomb', u'search']
[u'state', u'territori', u'agre', u'citrus', u'canker', u'plan']
[u'stosur', u'olymp', u'campaign', u'widen']
[u'studi', u'consid', u'rail', u'freight', u'corridor']
[u'submiss', u'hear', u'william', u'case']
[u'support', u'show', u'friday', u'night', u'mall', u'trade']
[u'syrian', u'hold', u'lebanes', u'hostag', u'captiv']
[u'telstra', u'news', u'corp', u'disappoint', u'market']
[u'telstra', u'post', u'record', u'profit']
[u'telstra', u'work', u'broadband', u'outag']
[u'townsvill', u'deleg', u'tour', u'mall']
[u'tuckey', u'back', u'port', u'author', u'legal', u'fight']
[u'aussi', u'vie', u'glori', u'wisconsin']
[u'court', u'rule', u'evid', u'obtain', u'tortur']
[u'appeal', u'bangladesh', u'flood', u'victim']
[u'underground', u'blaze', u'burn']
[u'conced', u'protocol', u'breach']
[u'union', u'lash', u'specul', u'defenc']
[u'union', u'reject', u'jam', u'hardi', u'offer']
[u'union', u'want', u'manag', u'stand', u'asid']
[u'seek', u'intellectu', u'properti', u'chang']
[u'unit', u'real', u'notch', u'champ', u'leagu', u'win']
[u'univers', u'western', u'sydney', u'vote', u'hec']
[u'deni', u'agent', u'behead', u'iraq']
[u'launch', u'najaf', u'offens']
[u'strike', u'kill', u'fallujah']
[u'veteran', u'sailor', u'beashel', u'carri', u'flag', u'athen']
[u'back', u'bounti', u'call']
[u'victorian', u'dam', u'fill']
[u'victorian', u'recognis', u'braveri']
[u'wada', u'confirm', u'olymp', u'test', u'growth', u'hormon']
[u'walgett', u'shire', u'quit']
[u'memori', u'crack', u'fix', u'soon']
[u'warwick', u'honour', u'braveri', u'award']
[u'whistl', u'strait', u'like', u'produc', u'surpris']
[u'white', u'supremacist', u'deni', u'bail']
[u'wineri', u'secur', u'sustain', u'accredit']
[u'resourc', u'boost', u'profit']
[u'woman', u'bind', u'assault', u'home']
[u'woman', u'surviv', u'crash', u'shop']
[u'woman', u'face', u'court', u'boy', u'abduct']
[u'woman', u'face', u'murder', u'trial']
[u'women', u'wrestler', u'look', u'forward', u'olymp', u'debut']
[u'youth', u'plead', u'guilti', u'school', u'steal', u'charg']
[u'zidan', u'quit', u'french', u'team', u'report']
[u'dead', u'miss', u'atlant', u'capsiz']
[u'grant', u'target', u'disabl', u'project']
[u'adelaid', u'festiv', u'commiss', u'film']
[u'cast', u'doubt', u'bulli', u'fin']
[u'candid', u'seek', u'support', u'jam', u'hardi']
[u'alpin', u'weather', u'warn', u'driver']
[u'anti', u'dope', u'agenc', u'receiv', u'cycl', u'report']
[u'anti', u'dope', u'chief', u'slam', u'athlet', u'boss']
[u'archeri', u'record', u'fall', u'athen']
[u'clinch', u'soccer', u'deal']
[u'asbesto', u'victim', u'knock', u'hardi', u'scheme']
[u'asylum', u'seeker', u'claim', u'maggot', u'food']
[u'athen', u'cheer', u'olymp', u'flame', u'arriv']
[u'aussi', u'close', u'clark', u'set', u'pace']
[u'australia', u'cricket', u'overpay']
[u'australia', u'shake', u'expect', u'epidem']
[u'author', u'outrag', u'creek', u'dump']
[u'babi', u'sigh', u'vital', u'regul', u'breath', u'studi', u'find']
[u'bali', u'blast', u'survivor', u'compo', u'plan']
[u'journalist', u'detain', u'isra', u'oper']
[u'blacklock', u'england']
[u'blizzard', u'strand', u'ski', u'student']
[u'bomber', u'lift', u'final', u'hop']
[u'bomber', u'ring', u'chang']
[u'breast', u'cancer', u'scheme', u'get', u'help', u'hand']
[u'brisco', u'hand', u'toyota', u'test']
[u'british', u'journalist', u'kidnap', u'iraq', u'report']
[u'brown', u'lose', u'strike', u'appeal']
[u'builder', u'warn', u'icac']
[u'butler', u'appoint', u'inappropri', u'howard']
[u'butler', u'confidenti', u'debat', u'continu']
[u'butler', u'disput', u'confidenti', u'claus', u'claim']
[u'educ', u'fund', u'boost', u'west']
[u'chang', u'disabl', u'program', u'reform']
[u'chavez', u'oppon', u'signal', u'tough', u'referendum', u'battl']
[u'child', u'labour', u'paper', u'open', u'comment']
[u'china', u'quak', u'leav', u'homeless']
[u'climat', u'scheme', u'offer', u'help', u'outlook', u'farmer']
[u'clint', u'eastwood', u'drop', u'lawsuit', u'book']
[u'coalit', u'labor', u'pass', u'marriag']
[u'concern', u'estat', u'agent', u'licenc', u'fee']
[u'concert', u'goer', u'surviv', u'cliff', u'fall']
[u'confer', u'tell', u'fraser', u'rail', u'possibl']
[u'council', u'green', u'light', u'unit', u'plan']
[u'councillor', u'remind', u'correct', u'conduct']
[u'council', u'consid', u'buy', u'wind', u'tower']
[u'council', u'gain', u'feder', u'road', u'fund']
[u'council', u'urg', u'chang', u'sceneri']
[u'dajka', u'hear', u'saturday']
[u'defenc', u'worker', u'face', u'lockout']
[u'democrat', u'want', u'land', u'council', u'vote', u'postpon']
[u'dentist', u'sentenc', u'lure', u'child', u'internet']
[u'derail', u'disrupt', u'hamersley', u'export']
[u'dieback', u'threaten', u'south', u'coast']
[u'disabl', u'cut', u'spark', u'protest']
[u'doctor', u'bodi', u'opt', u'voluntari', u'administr']
[u'downer', u'sign', u'polic', u'mission']
[u'downer', u'warn', u'north', u'korea', u'nuclear', u'threat']
[u'drug', u'hear', u'delay', u'spar', u'greec', u'open', u'shame']
[u'drug', u'leav', u'quick', u'rogg']
[u'earthquak', u'dam', u'threaten', u'chines', u'villag']
[u'educ', u'campaign', u'target', u'video', u'pirat']
[u'essex', u'aussi', u'brant', u'fli', u'home', u'surgeri']
[u'presid', u'appoint', u'commission']
[u'excav', u'boost', u'whitehaven', u'effort']
[u'eye', u'focus', u'local', u'olymp', u'hero']
[u'farmer', u'die', u'tractor', u'accid']
[u'farmer', u'warn', u'locust', u'threat']
[u'father', u'abus', u'brutal', u'reign', u'judg']
[u'fierc', u'fight', u'grip', u'najaf']
[u'threat', u'worsen', u'south', u'east']
[u'fisheri', u'dept', u'advertis', u'abrolho', u'island']
[u'council', u'worker', u'get', u'accid', u'payout']
[u'chief', u'head', u'crime', u'bodi']
[u'freeman', u'join', u'live', u'export', u'protest', u'athen']
[u'free', u'trade', u'deal', u'fantast', u'australia', u'howard']
[u'gallop', u'kalgoorli']
[u'game', u'expect', u'impact', u'aust', u'tourism', u'market']
[u'genet', u'materi', u'help', u'nanotechnolog', u'research']
[u'coastal', u'patrol', u'boat', u'speaker']
[u'good', u'behaviour', u'bond', u'indonesian', u'fisherman']
[u'goodrem', u'okay', u'attend', u'open', u'ceremoni']
[u'govt', u'criticis', u'withhold', u'retail', u'outlet']
[u'govt', u'bali', u'downer']
[u'govt', u'urg', u'boost', u'farm', u'safeti', u'fund']
[u'greek', u'athlet', u'miss', u'drug', u'test']
[u'greek', u'sprint', u'champ', u'order', u'appear', u'drug']
[u'greek', u'sprint', u'champ', u'order', u'attend', u'drug', u'hear']
[u'greek', u'sprinter', u'hurt', u'crash', u'miss', u'dope']
[u'greek', u'sprinter', u'drug', u'test', u'hear', u'delay']
[u'hawk', u'captain', u'crawford', u'hospit']
[u'heat', u'wave', u'predict', u'europ', u'north', u'america']
[u'highway', u'servic', u'centr']
[u'high', u'wind', u'caus', u'havoc', u'snowi', u'mountain']
[u'hockeyroo', u'skipper', u'powel', u'recov', u'injuri']
[u'hoggard', u'halt', u'windi', u'reviv']
[u'illeg', u'build', u'rise']
[u'immigr', u'reject', u'baxter', u'maggot', u'claim']
[u'indigen', u'award', u'winner', u'announc']
[u'indonesia', u'timor', u'discuss', u'occup', u'acquitt']
[u'industri', u'lobbi', u'say', u'educ', u'answer']
[u'inform', u'darfur', u'peac', u'talk', u'begin']
[u'injur', u'discov', u'bondi', u'park']
[u'inquiri', u'recommend', u'tighter', u'rule', u'bank']
[u'iranian', u'ralli', u'attack']
[u'iraq', u'down', u'portug', u'olymp', u'fairytal']
[u'iraqi', u'cleric', u'urg', u'hostag', u'journalist', u'releas']
[u'iraq', u'restor', u'flow']
[u'israel', u'armi', u'chief', u'hint', u'golan', u'height']
[u'kostya', u'bout', u'head']
[u'clash', u'leav', u'dead']
[u'vow', u'open', u'singaporean', u'societi']
[u'legal', u'action', u'alcohol', u'plan', u'hold']
[u'lifesav', u'jail', u'offenc']
[u'local', u'state', u'govt', u'discuss', u'servic', u'deliveri', u'post']
[u'local', u'support', u'indigen', u'health', u'boost']
[u'log', u'near', u'nation', u'park', u'investig']
[u'loxton', u'hockey', u'player', u'prepar', u'athen', u'countdown']
[u'magistr', u'demand', u'answer', u'falconio', u'wit']
[u'arrest', u'incid']
[u'market', u'busi', u'week']
[u'market', u'unsettl', u'price', u'reach', u'high']
[u'maroochi', u'consid', u'light', u'rail', u'option']
[u'meet', u'discuss', u'scallop', u'industri', u'plan']
[u'men', u'babi', u'assault', u'charg', u'drop']
[u'mental', u'health', u'campaign', u'gain', u'support']
[u'mix', u'respons', u'water', u'plan']
[u'moor', u'interview', u'expos', u'nomine']
[u'mother', u'reject', u'bali', u'compo', u'plan']
[u'appoint', u'board', u'member']
[u'negoti', u'underway', u'thousand', u'decri', u'najaf']
[u'newcastl', u'port', u'break', u'trade', u'record']
[u'test', u'guidelin', u'advis', u'pregnant', u'women']
[u'shop', u'centr', u'replac', u'mater', u'hospit']
[u'buri', u'avalanch', u'emerg', u'crew']
[u'farmer', u'stop', u'whing', u'anderson']
[u'govt', u'virgin', u'flight']
[u'nurs', u'threat', u'amidst', u'ralli', u'push']
[u'price', u'break', u'record', u'iraq', u'fear']
[u'price', u'soar']
[u'olymp', u'expect', u'break']
[u'orang', u'grove', u'owner', u'evid', u'total', u'lie', u'carr']
[u'palestinian', u'kill', u'ambush', u'settler']
[u'parti', u'urg', u'refus', u'jam', u'hardi', u'donat']
[u'perth', u'mint', u'return', u'mickelberg', u'gold']
[u'petit', u'doesnt', u'faze', u'hepburn', u'mayor']
[u'petit', u'oppos', u'mica', u'unit']
[u'petrol', u'price', u'fuel', u'concern']
[u'plane', u'crash', u'exercis', u'put', u'skill', u'test']
[u'plan', u'join', u'rfds', u'fundrais', u'campaign']
[u'plan', u'indigen', u'secur', u'offic']
[u'plan', u'underway', u'combat', u'locust', u'threat']
[u'seek', u'malaysian', u'free', u'trade', u'deal']
[u'welcom', u'bali', u'bomb', u'inquiri', u'find']
[u'highland', u'brink', u'civil', u'conflict']
[u'polic', u'public', u'assist', u'trentham']
[u'polic', u'consid', u'aggress', u'riot', u'tactic']
[u'polic', u'bendigo', u'crime', u'statist', u'encourag']
[u'polic', u'search', u'tuggeranong', u'arm', u'robber']
[u'polic', u'question', u'driver', u'fatal', u'crash']
[u'polic', u'union', u'welcom', u'appoint']
[u'polli', u'discuss', u'alic', u'intern', u'airport', u'plan']
[u'prawn', u'fisher', u'lobbi', u'compo']
[u'publish', u'pull', u'khouri', u'fabric', u'book']
[u'race', u'club', u'avoid', u'fund']
[u'rebel', u'georgian', u'convoy']
[u'region', u'council', u'queri', u'pilbara', u'fund', u'spend']
[u'research', u'track', u'fraser', u'dingo']
[u'retir', u'villag', u'stay', u'free']
[u'rooster', u'track']
[u'rooster', u'reveng']
[u'sadr', u'unhurt', u'negoti', u'iraqi', u'govt']
[u'sadr', u'wound', u'attack', u'najaf']
[u'sangakkara', u'blaze', u'doubl', u'protea', u'struggl']
[u'satellit', u'photo', u'chart', u'landscap', u'chang']
[u'scud', u'hand', u'tough', u'athen', u'draw']
[u'seafood', u'industri', u'welcom', u'reef', u'compo', u'rethink']
[u'senat', u'pass', u'associ', u'terrorist']
[u'senat', u'pass', u'deal', u'amid', u'warn']
[u'senat', u'report', u'seek', u'control', u'rural', u'water']
[u'senat', u'defend', u'fish', u'boat', u'rescu', u'inquiri']
[u'volunt', u'injur', u'crash', u'hous']
[u'charg', u'highlight', u'need', u'workplac', u'educ']
[u'scandal', u'forc', u'austrian', u'seminari', u'closur']
[u'site', u'choos', u'mar', u'train']
[u'snowboard', u'injuri', u'increas']
[u'south', u'east', u'health', u'talk', u'continu']
[u'south', u'sign', u'spree']
[u'springbok', u'pois', u'black', u'domin']
[u'stab', u'investig', u'halt', u'heathrow', u'tube', u'servic']
[u'state', u'govt', u'cancel', u'cotton', u'agreement']
[u'studi', u'consid', u'rail', u'corridor']
[u'sunday', u'telegraph', u'concern', u'kidnap', u'report']
[u'survey', u'show', u'resid', u'open', u'higher', u'medicar', u'levi']
[u'sydney', u'level', u'continu', u'fall']
[u'technic', u'fault', u'black', u'queensland']
[u'teen', u'injur', u'cracker', u'blast']
[u'teen', u'arrest', u'crocodil', u'attack']
[u'thiev', u'beat', u'novelist', u'return', u'exil']
[u'thousand', u'expect', u'food', u'wine', u'event']
[u'fear', u'trap', u'avalanch']
[u'live', u'fast', u'die', u'young']
[u'troubl', u'entertain', u'centr', u'continu', u'trade']
[u'present', u'expos', u'nake', u'truth']
[u'qaeda', u'suspect', u'captur', u'report']
[u'union', u'criticis', u'policeman', u'unfair', u'sack']
[u'union', u'meet', u'forest', u'cut']
[u'athlet', u'best', u'behaviour', u'notic']
[u'continu', u'fallujah', u'bomb', u'run']
[u'court', u'annul', u'marriag']
[u'governor', u'resign', u'affair']
[u'nomin', u'start', u'date', u'hick', u'trial']
[u'warn', u'australia', u'amend']
[u'govt', u'urg', u'deliv', u'clean', u'coal', u'research', u'fund']
[u'vietnam', u'confirm', u'bird', u'death']
[u'vline', u'blame', u'spencer', u'redevelop', u'delay']
[u'waff', u'move', u'reassur', u'industri', u'follow', u'livecorp']
[u'govt', u'select', u'child', u'protect', u'worker']
[u'wambo', u'urg', u'dalbi', u'regular', u'upkeep']
[u'warburton', u'teenag', u'plead', u'guilti', u'assault']
[u'washington', u'post', u'admit', u'failur', u'iraq', u'coverag']
[u'water', u'dryland', u'initi', u'launch']
[u'union', u'step', u'anti', u'jam', u'hardi', u'campaign']
[u'webber', u'happi', u'team', u'button']
[u'weep', u'virgin', u'collect']
[u'wisher', u'urg', u'olympian', u'unleash', u'hell']
[u'western', u'power', u'chairman', u'deliv', u'ultimatum']
[u'wheel', u'clamp', u'cours', u'offer', u'britain']
[u'white', u'whale', u'make', u'splash']
[u'seek', u'bird', u'sampl']
[u'william', u'judiciari', u'decis', u'hold']
[u'xstrata', u'coal', u'earn', u'half', u'year', u'profit']
[u'xstrata', u'outlook', u'posit', u'strong', u'perform']
[u'young', u'socceroo', u'pull', u'indonesia', u'tour']
[u'zidan', u'call', u'time', u'intern', u'career']
[u'zinifex', u'deal', u'talk', u'reach', u'stalem']
[u'injur', u'cinema', u'blast', u'india']
[u'opposit', u'seek', u'protect', u'mother']
[u'rankl', u'qanta', u'snub']
[u'arnhem', u'land', u'artist', u'win', u'prize']
[u'asbesto', u'group', u'wait', u'compo', u'detail']
[u'athen', u'open', u'bring', u'myth', u'life']
[u'aussi', u'sand']
[u'australian', u'softbal', u'power', u'past', u'japan']
[u'australia', u'world', u'class', u'sailor', u'enter', u'water']
[u'australia', u'challeng', u'women', u'basketbal']
[u'australia', u'join', u'singapor', u'naval', u'exercis']
[u'beach', u'volleybal', u'champion', u'return', u'partner']
[u'bennett', u'expect', u'tough', u'battl', u'bulldog']
[u'blackout', u'state']
[u'blusteri', u'condit', u'slow', u'firefight']
[u'hospit']
[u'brent', u'price', u'soar']
[u'brisban', u'mayor', u'rais', u'doubt', u'generat', u'plan']
[u'butler', u'tight', u'lip', u'resign', u'talk']
[u'carr', u'welcom', u'jam', u'hardi', u'compo', u'propos']
[u'cathol', u'school', u'fund', u'push', u'expect']
[u'cat', u'destroy', u'uninspir', u'docker']
[u'china', u'typhoon', u'kill', u'injur']
[u'chines', u'typhoon', u'destroy', u'home']
[u'coupl', u'attack', u'home', u'invas']
[u'cowboy', u'rabbitoh']
[u'cuban', u'boxer', u'lose', u'grip', u'middleweight', u'class']
[u'dead', u'claim', u'gold']
[u'diamond', u'trick', u'suffer', u'blow']
[u'docker', u'histor', u'kardinia']
[u'doll', u'market', u'take', u'free', u'speech', u'fight', u'arni']
[u'dozen', u'kill', u'warplan', u'strike', u'samarra']
[u'dragon', u'outclass', u'warrior']
[u'driver', u'hit', u'peopl', u'incid']
[u'driver', u'kill', u'smash']
[u'edwardss', u'olymp', u'fate', u'decid', u'hour']
[u'eel', u'slip', u'past', u'shark']
[u'iraqi', u'kill', u'wound', u'hilla', u'fight']
[u'fair', u'trade', u'move', u'shame', u'repair']
[u'famili', u'hit', u'polic', u'raid']
[u'favourit', u'canada', u'face', u'tough', u'draw', u'men']
[u'fenc', u'protect', u'rare', u'desert', u'tree']
[u'fire', u'threaten', u'home', u'brisban']
[u'hockeyroo', u'hope', u'defend', u'gold']
[u'fli', u'doctor', u'reliev', u'rethink']
[u'guantanamo', u'declar', u'enemi', u'combat']
[u'freeman', u'fear', u'pittman', u'pressur', u'olymp']
[u'girl', u'fight', u'life', u'bash']
[u'girl', u'arrest', u'adelaid', u'robberi']
[u'googl', u'stock', u'auction', u'rocki', u'start']
[u'greec', u'suspend', u'dope', u'test', u'sprint', u'pair']
[u'gunmen', u'kill', u'burundi', u'refuge', u'camp']
[u'hardi', u'offer', u'catch', u'victim', u'surpris']
[u'heart', u'attack', u'forc', u'emerg', u'land']
[u'heat', u'factor', u'port', u'play', u'dog', u'darwin']
[u'heavi', u'gunfir', u'baghdad', u'sunni', u'insurg', u'hotspot']
[u'hill', u'back', u'north', u'korea', u'missil', u'statement']
[u'hill', u'farewel', u'iraq', u'bind', u'troop']
[u'hockey', u'win', u'china', u'netherland']
[u'hurrican', u'lash', u'florida', u'coast']
[u'india', u'carri', u'execut', u'near']
[u'iranian', u'judo', u'champion', u'quit', u'game', u'protest']
[u'iraq', u'shut', u'main', u'pipelin']
[u'italian', u'secur', u'forc', u'alert']
[u'japan', u'stand', u'aussi', u'softbal', u'gold']
[u'jetstar', u'investig', u'malfunct']
[u'judo', u'champ', u'hobbl', u'action']
[u'kidnap', u'british', u'journalist', u'free', u'iraq']
[u'labor', u'warn', u'right', u'stanc']
[u'lion', u'winner', u'circl']
[u'longo', u'deject', u'road', u'race', u'cours']
[u'maldiv', u'declar', u'state', u'emerg']
[u'mayor', u'babi', u'spark', u'launceston', u'council', u'disput']
[u'mix', u'result', u'aussi', u'tabl', u'tenni', u'judo']
[u'murali', u'face', u'wait', u'shoulder']
[u'myth', u'technolog', u'welcom', u'game', u'home']
[u'najaf', u'truce', u'allow', u'talk']
[u'najaf', u'truce', u'end']
[u'facil', u'nullarbor', u'whale', u'watcher']
[u'gymnast', u'format', u'leav', u'littl', u'room', u'error']
[u'mistak', u'thorp', u'launch', u'defenc']
[u'commit', u'fund', u'homeless', u'network']
[u'firefight', u'battl', u'north', u'east', u'blaze']
[u'price', u'surg', u'higher']
[u'opal', u'nigeria']
[u'owen', u'leav', u'liverpool', u'real', u'madrid']
[u'phelp', u'cruis', u'olymp', u'open']
[u'philippin', u'emb', u'soldier', u'newsroom']
[u'pittman', u'closer', u'track', u'return']
[u'pittman', u'athen', u'monday']
[u'poland', u'nobel', u'laureat', u'die']
[u'polic', u'dodg', u'stereo', u'speaker', u'chase']
[u'polic', u'metr', u'bridg', u'thief']
[u'poolsid', u'joke', u'hide', u'jitter']
[u'power', u'expect', u'heat', u'battl', u'bulldog']
[u'power', u'surg', u'disappoint', u'dog']
[u'protest', u'march', u'marriag']
[u'reach', u'deal', u'citrus', u'canker', u'watch']
[u'raikkonen', u'surpris', u'schu', u'hungari']
[u'rain', u'wash']
[u'reign', u'sabr', u'champion', u'face', u'tough', u'challeng']
[u'riot', u'polic', u'confront', u'strong', u'crowd']
[u'rock', u'throw', u'kid', u'stir', u'be']
[u'russian', u'suppli', u'ship', u'reach', u'space', u'station']
[u'sadr', u'set', u'condit', u'najaf', u'ceas']
[u'sadr', u'vow', u'fight']
[u'marriag', u'mileston', u'valu']
[u'offend', u'free', u'year']
[u'sexual', u'predat', u'jail', u'year']
[u'shiit', u'cleric', u'stabl', u'condit', u'heart']
[u'singh', u'leonard', u'share', u'lead', u'wood', u'make']
[u'skaif', u'kelli', u'claim']
[u'lanka', u'crush', u'south', u'africa']
[u'stanhop', u'defend', u'commission', u'right', u'comment']
[u'state', u'school', u'teacher', u'work', u'extra', u'hour']
[u'swan', u'sneak']
[u'tasmanian', u'push', u'butler', u'inquiri']
[u'thoma', u'fli', u'semi']
[u'thorp', u'edg', u'hackett', u'gold']
[u'thorp', u'hackett', u'duel', u'loom']
[u'tomkin', u'ginn', u'cruis', u'semi']
[u'troop', u'arriv', u'darfur']
[u'ullrich', u'year', u'road', u'race', u'record', u'sight']
[u'see', u'progress', u'darfur', u'talk']
[u'staff', u'iraq']
[u'bomber', u'strike', u'samarra']
[u'vieira', u'remain', u'gunner']
[u'violent', u'protest', u'plung', u'maldiv', u'chao']
[u'wall', u'street', u'edg']
[u'weigh', u'weightless', u'russia', u'put']
[u'monitor', u'bird', u'outbreak']
[u'health', u'confid', u'matern', u'servic']
[u'ainsli', u'suffer', u'titl', u'blow']
[u'ambros', u'edg', u'skaif', u'victori']
[u'anlezark', u'welcom', u'shoot', u'spotlight']
[u'artist', u'stage', u'galleri']
[u'aussi', u'touch', u'wind', u'sail', u'comp']
[u'aussi', u'slam', u'athen', u'road', u'race', u'time']
[u'aussi', u'winner', u'beach', u'volleybal']
[u'australian', u'sculler', u'world', u'mark']
[u'aust', u'snatch', u'gold', u'pool']
[u'baghdad', u'confer', u'debat', u'interim', u'assembl']
[u'bettini', u'win', u'men', u'road', u'race']
[u'bomb', u'explos', u'hear', u'near', u'iraq', u'nation', u'confer']
[u'bulldog', u'rais', u'bronco']
[u'ceasefir', u'take', u'effect', u'georgia']
[u'chavez', u'predict', u'referendum', u'victori']
[u'china', u'hand', u'internet', u'porn', u'sentenc']
[u'coastal', u'patrol', u'defend', u'divis', u'closur']
[u'code', u'conduct', u'propos', u'cafe']
[u'communiti', u'unprepar', u'emerg']
[u'communiti', u'bank', u'start', u'turn', u'profit']
[u'crew', u'struggl', u'contain', u'bushfir']
[u'crow', u'launch', u'final', u'quarter', u'raid', u'trounc', u'tiger']
[u'cuba', u'good', u'australia']
[u'cyclist', u'brush', u'paint']
[u'darfur', u'rebel', u'urg', u'monitor', u'spread']
[u'dead', u'hurrican', u'sweep', u'florida']
[u'diamond', u'miss', u'trap', u'final']
[u'disgrac', u'kenyan', u'boxer', u'appeal', u'game']
[u'doubl', u'dose', u'bronz', u'aussi', u'synchro', u'diver']
[u'downer', u'shrug', u'pueril', u'missil', u'debat']
[u'dozen', u'dead', u'salvador', u'crash']
[u'promot', u'countri', u'teacher', u'lifestyl']
[u'dwyer', u'star', u'kookaburra', u'trounc']
[u'eagl', u'crush', u'blue']
[u'eagl', u'shape', u'match', u'blue']
[u'eel', u'slip', u'past', u'shark']
[u'stadium', u'spark', u'ticket', u'giveaway', u'plan']
[u'fight', u'resum', u'najaf']
[u'firebug', u'face', u'life', u'jail', u'beatti', u'warn']
[u'fisherman', u'sweep', u'rock']
[u'game', u'secur', u'terrorist', u'dream']
[u'german', u'upset', u'hockeyroo']
[u'germani', u'stun', u'olymp', u'champion', u'cuba']
[u'govt', u'explain', u'labor', u'polici', u'busi']
[u'greek', u'offici', u'angri', u'media', u'mous', u'game']
[u'greek', u'sprint', u'pair', u'pull', u'game']
[u'green', u'probe', u'butler', u'resign']
[u'gungahlin', u'local', u'frustrat', u'broadband']
[u'hackett', u'look', u'silver']
[u'high', u'ball', u'concern', u'hunt', u'bennett', u'say']
[u'hurrican', u'leav', u'devast', u'florida']
[u'hurrican', u'leav', u'cuban', u'capit', u'power']
[u'indigen', u'court', u'prison', u'number', u'report']
[u'iranian', u'judo', u'champ', u'fail', u'weight']
[u'jackson', u'court', u'child', u'molest']
[u'jamaica', u'powel', u'predict', u'world', u'record']
[u'japanes', u'pace', u'chines', u'gymnast', u'struggl']
[u'japan', u'judoka', u'olymp', u'histori']
[u'joubert', u'star', u'springbok', u'black']
[u'kersten', u'unlik', u'race', u'athen', u'coach']
[u'kitajima', u'see', u'hansen', u'eclips', u'olymp', u'mark']
[u'klochkova', u'success', u'defend', u'medley', u'titl']
[u'lion', u'winner', u'circl']
[u'macarthur', u'museum', u'open', u'brisban']
[u'die', u'ship', u'accid']
[u'manhunt', u'spark', u'censorship']
[u'matilda', u'beat', u'greec', u'down', u'brazil']
[u'medicar', u'scheme', u'includ', u'outer', u'suburb']
[u'montano', u'win', u'sabr', u'keep', u'famili']
[u'team', u'aim', u'track']
[u'world', u'record', u'australian', u'rower']
[u'bushfir', u'contain']
[u'crew', u'continu', u'fight', u'north', u'coast']
[u'pray', u'rain']
[u'rejig', u'danger']
[u'public', u'sector', u'expand']
[u'want', u'wider', u'data']
[u'duti', u'policewoman', u'nightclub', u'attack']
[u'offici', u'investig', u'spate', u'fire', u'adelaid']
[u'olyroo', u'good', u'serbia', u'montenegro']
[u'organis', u'pleas', u'ekka', u'turnout']
[u'organis', u'rejig', u'row', u'schedul', u'beat', u'wind']
[u'kill', u'afghan', u'faction', u'clash']
[u'owen', u'unveil', u'real', u'madrid', u'player']
[u'palestinian', u'prison', u'begin', u'hunger', u'strike', u'israel']
[u'perth', u'council', u'develop', u'foreshor', u'plan']
[u'petria', u'thoma', u'win', u'second', u'gold']
[u'phelp', u'start', u'world', u'record', u'victori']
[u'phelp', u'thorp', u'clash', u'free']
[u'pittman', u'percent', u'certain', u'athen']
[u'pittman', u'athen']
[u'hint', u'game', u'elect', u'unlik']
[u'predict', u'close', u'elect', u'result']
[u'urg', u'review', u'nation', u'electr', u'grid']
[u'polic', u'investig', u'man', u'death', u'zeehan']
[u'poll', u'give', u'green', u'senat', u'hope']
[u'pope', u'burden', u'health', u'lourd', u'pilgrimag']
[u'princess', u'eulog', u'rais', u'chariti']
[u'protea', u'chase', u'huge', u'target', u'lanka']
[u'protest', u'ralli', u'church', u'prison', u'support']
[u'firefight', u'battl', u'grass', u'blaze']
[u'relay', u'gold', u'world', u'record', u'australia', u'women']
[u'report', u'show', u'increas', u'drug', u'polic']
[u'rescu', u'worker', u'search', u'miss', u'plane']
[u'rider', u'safe', u'spend', u'night', u'outdoor']
[u'roddick', u'stretch', u'venus', u'soar', u'arthur', u'win']
[u'roll', u'stone', u'drummer', u'battl', u'throat', u'cancer']
[u'rwanda', u'troop', u'start', u'mission', u'darfur']
[u'saint', u'march', u'kangaroo']
[u'assess', u'murray', u'pollut']
[u'schumach', u'claim', u'pole', u'hungari']
[u'sculler', u'world', u'mark']
[u'eagl', u'stun', u'knight']
[u'singh', u'take', u'stroke', u'lead']
[u'small', u'bomb', u'explod', u'spanish', u'port']
[u'solid', u'start', u'aussi', u'shark']
[u'nation', u'recalcitr', u'marin', u'poach']
[u'speargun', u'murder']
[u'speed', u'drink', u'driver', u'pick']
[u'spur', u'hold', u'liverpool', u'bolton', u'rout', u'charlton']
[u'storm', u'outgun', u'raider']
[u'storm', u'row', u'program']
[u'syrian', u'truck', u'driver', u'kidnap', u'northern', u'iraq']
[u'taylan', u'triumph', u'world', u'record', u'break', u'style']
[u'knee', u'need', u'know']
[u'thoma', u'schipper', u'inki']
[u'thorp', u'hackett', u'grab', u'quinella']
[u'thorp', u'fastest', u'freestyl', u'heat']
[u'thorp', u'hackett', u'quinella', u'free']
[u'thorp', u'strauss', u'lead', u'england', u'fightback']
[u'injur', u'crash']
[u'tire', u'pope', u'wind', u'lourd', u'visit', u'mass']
[u'toddler', u'die', u'head', u'injuri']
[u'tourism', u'chief', u'prais', u'adelaid', u'river', u'initi']
[u'tutsi', u'kill', u'burundi', u'refuge', u'camp']
[u'unlucki', u'loss', u'boxer', u'pittman']
[u'move', u'protect', u'burundi', u'refuge']
[u'strike', u'near', u'flashpoint', u'citi', u'fallujah']
[u'australia', u'slow', u'start', u'basketbal']
[u'male', u'gymnast', u'stake', u'claim', u'gold']
[u'vaa', u'steer', u'lanka', u'seri']
[u'vandal', u'daub', u'swastika', u'near', u'notr', u'dame']
[u'vella', u'claim', u'bronz', u'alipov', u'win', u'olymp', u'trap']
[u'vietnam', u'vet', u'march', u'adelaid']
[u'violenc', u'hit', u'indian', u'independ', u'celebr']
[u'wild', u'storm', u'cold', u'victoria']
[u'abbott', u'deni', u'direct', u'medicar', u'scheme']
[u'hour', u'health', u'advic', u'realiti']
[u'propos', u'threaten', u'workingman', u'club', u'futur']
[u'aid', u'reveal', u'children', u'overboard', u'advic']
[u'alleg', u'arsonist', u'tri', u'adult']
[u'alleg', u'offend', u'dead']
[u'dump', u'can', u'candid']
[u'promis', u'secur', u'upgrad', u'region', u'airport']
[u'want', u'kid', u'overboard', u'probe']
[u'ambul', u'respons', u'time', u'slow', u'inquest', u'tell']
[u'arsenal', u'chelsea', u'start', u'victori']
[u'arsonist', u'blame', u'north', u'fire']
[u'arson', u'suspect', u'nowra', u'bushfir']
[u'aussi', u'semi', u'final', u'phelp', u'pool']
[u'aussi', u'team', u'final', u'gymnast']
[u'australia', u'fire', u'shot', u'hockey', u'glori']
[u'aust', u'take', u'swim', u'cycl', u'gold']
[u'balgo', u'track', u'upgrad', u'link', u'communiti', u'tanami']
[u'barbaro', u'case', u'adjourn', u'court']
[u'beazley', u'accus', u'govt', u'scaremong']
[u'blackout', u'caus', u'unknown']
[u'bomber', u'investig', u'player', u'brawl']
[u'bomb', u'threat', u'forc', u'emerg', u'land']
[u'boomer', u'lose', u'greec']
[u'british', u'protest', u'backstrok', u'injur', u'pool']
[u'bronco', u'worri', u'say', u'bennett']
[u'broom', u'plan', u'second', u'water', u'treatment', u'plant']
[u'bulk', u'bill', u'extens', u'benefit']
[u'bulk', u'bill', u'payment', u'increas', u'boost', u'doctor']
[u'bulldog', u'refus', u'permiss', u'wear', u'anti', u'abus']
[u'bundaberg', u'rat']
[u'bush', u'inspect', u'hurrican', u'wreckag']
[u'butterfli', u'gold', u'thoma']
[u'camel', u'drive', u'highlight', u'weed', u'control', u'measur']
[u'cert', u'earn', u'paramed', u'prais']
[u'champion', u'singh', u'celebr', u'career', u'best']
[u'channel', u'seven', u'offic', u'target', u'probe', u'leak']
[u'chavez', u'win', u'venezuelan', u'referendum']
[u'china', u'step', u'crackdown', u'porn']
[u'coast', u'patrol', u'volunt', u'unhappi', u'lock']
[u'coff', u'model', u'townsvill']
[u'coliban', u'seek', u'comment', u'futur', u'water', u'plan']
[u'communiti', u'canvass', u'militari', u'depot']
[u'problem', u'delay', u'licens', u'registr']
[u'council', u'want', u'ratepay', u'charit']
[u'cycl', u'silver', u'medallist', u'arndt', u'fin', u'report']
[u'disast', u'australian', u'tabl', u'tenni']
[u'dazzl', u'iraq', u'storm', u'olymp', u'quarter']
[u'dept', u'admit', u'illeg', u'mill']
[u'doctor', u'critic', u'hospit', u'servic']
[u'doctor', u'criticis', u'emerg', u'chopper', u'promis']
[u'doctor', u'surgeri', u'closur', u'highlight', u'shortag']
[u'dolphin', u'decis', u'short', u'sight']
[u'domin', u'leisel', u'fastest', u'breast', u'stroke', u'final']
[u'dont', u'knock', u'aloisi']
[u'downer', u'discuss', u'trade', u'polit', u'chines']
[u'search', u'tomato', u'virus', u'sign']
[u'drive', u'violat', u'frustrat', u'bendigo', u'polic']
[u'eagl', u'focus', u'form', u'say', u'worsfold']
[u'effort', u'save', u'die', u'gum']
[u'emerg', u'respons', u'affect', u'work', u'ban', u'union']
[u'england', u'thriller']
[u'entek', u'energi', u'list']
[u'involv', u'rogerson', u'case', u'polic']
[u'experi', u'rescu', u'aussi', u'cook']
[u'extend', u'rock', u'lobster', u'season', u'remain', u'undecid']
[u'fairweath', u'shock', u'round', u'loser']
[u'falconio', u'hear', u'tell', u'tape', u'accus']
[u'falconio', u'see', u'aliv', u'disappear', u'court', u'tell']
[u'fight', u'break', u'afghanistan']
[u'firefight', u'contain', u'northern', u'fire']
[u'firefight', u'continu', u'monitor', u'sarina', u'blaze']
[u'firefight', u'blaze', u'control']
[u'fisheri', u'dept', u'halt', u'light', u'boat']
[u'trial', u'stab', u'murder']
[u'advis', u'stand', u'firm', u'children', u'overboard']
[u'health', u'minist', u'conduct', u'icac', u'scrutini']
[u'fraser', u'ambul', u'workload', u'review']
[u'agenda', u'minist', u'visit', u'boot', u'maker']
[u'fund', u'boost', u'asthma', u'research']
[u'german', u'cyclist', u'arndt', u'livid', u'exclus']
[u'germani', u'lead', u'event']
[u'gippsland', u'farmer', u'push', u'trapper']
[u'gold', u'coast', u'dolphin', u'hope', u'berth']
[u'golkar', u'endors', u'megawati', u'presid']
[u'goondiwindi', u'end', u'kingaroy', u'final', u'hop']
[u'govt', u'urg', u'consid', u'break', u'power', u'util']
[u'govt', u'waiv', u'disabl', u'servic', u'debt']
[u'grant', u'help', u'train', u'tourism', u'volunt']
[u'great', u'southern', u'tourism', u'gain', u'grind']
[u'greek', u'sprinter', u'await', u'olymp', u'fat']
[u'greek', u'sprinter', u'delay', u'dope', u'hear']
[u'gwydir', u'council', u'pleas', u'expo', u'success']
[u'hall', u'bartel', u'book', u'tribun', u'date']
[u'health', u'worker', u'test', u'posit']
[u'henman', u'crash', u'olymp', u'flop']
[u'hilton', u'sister', u'marri', u'vega']
[u'hockeyroo', u'sink', u'south', u'african']
[u'hoogi', u'gatecrash', u'popov', u'farewel']
[u'hop', u'remain', u'dump', u'polici', u'chang']
[u'hospit', u'back', u'nurs', u'sack', u'threat']
[u'howard', u'unfit', u'lead']
[u'hydro', u'aluminium', u'work', u'ban', u'tip', u'escal']
[u'iran', u'journalist', u'detain', u'najaf']
[u'iraq', u'nation', u'confer', u'deleg', u'meet', u'shiit']
[u'judo', u'bodi', u'postpon', u'decis', u'sanction']
[u'karratha', u'child', u'care', u'help', u'local', u'employ']
[u'killer', u'give', u'second', u'life', u'sentenc']
[u'kingaroy', u'hospit', u'claim', u'specialist', u'success']
[u'kitajima', u'stike', u'gold', u'breast', u'stroke']
[u'labor', u'parti', u'discuss', u'futur', u'candid']
[u'langham', u'fall', u'khan', u'storm', u'second', u'round']
[u'lara', u'fastest', u'test', u'run']
[u'lithgow', u'compani', u'bathurst', u'coach']
[u'lynda', u'carter', u'reactiv', u'superpow', u'role']
[u'manaudou', u'end', u'franc', u'year', u'wait', u'gold']
[u'charg', u'beer', u'carton', u'brawl']
[u'charg', u'melbourn', u'underworld', u'murder']
[u'charg', u'go', u'arm', u'public']
[u'expect', u'court', u'port', u'lincoln', u'murder']
[u'hold', u'gangland', u'murder']
[u'kill', u'motorcycl', u'race']
[u'kill', u'mungindi', u'crash']
[u'court', u'murder', u'charg']
[u'marathon', u'favourit', u'radcliff', u'stay', u'silent', u'plan']
[u'massiv', u'turnout', u'venezuela', u'referendum']
[u'matthew', u'look', u'forward', u'clash', u'saint']
[u'give', u'birthday', u'present', u'partner']
[u'mayor', u'meet', u'discuss', u'west', u'futur']
[u'mayor', u'stun', u'illeg', u'naracoort', u'worker']
[u'fin', u'illeg', u'deer', u'hunt']
[u'mental', u'health', u'forum', u'spotlight']
[u'miner', u'return', u'work', u'year', u'absenc']
[u'minist', u'deni', u'medic', u'school', u'credit', u'comment']
[u'mitsubishi', u'worker', u'urg', u'north']
[u'mix', u'result', u'aussi', u'team']
[u'molik', u'pratt', u'advanc', u'athen']
[u'swim', u'gold', u'grab']
[u'wit', u'falconio', u'hear']
[u'mortar', u'mark', u'open', u'iraqi', u'summit']
[u'liver', u'cancer', u'prompt', u'independ', u'help']
[u'murray', u'ferri', u'upgrad']
[u'nagi', u'retain', u'women', u'epe', u'titl']
[u'england', u'meet', u'address', u'health', u'servic']
[u'news', u'hospit', u'downgrad', u'draw', u'critic']
[u'nike', u'pull', u'insensit']
[u'put', u'expans', u'plan', u'hold']
[u'town', u'miss', u'golden', u'sound']
[u'sailor', u'injur', u'naval', u'base', u'incid']
[u'near', u'barrel']
[u'price', u'fall', u'record', u'high']
[u'olympian', u'disappoint', u'crowd', u'number']
[u'opposit', u'parti', u'attack', u'lennon', u'butler', u'payout']
[u'patienc', u'urg', u'gunnedah', u'field', u'day']
[u'petrol', u'price', u'fail', u'dampen', u'outback', u'tourism']
[u'plane', u'debri', u'sunshin', u'coast']
[u'plantat', u'help', u'water', u'conserv', u'studi']
[u'polic', u'appeal', u'help', u'fatal', u'accid', u'probe']
[u'polic', u'await', u'diamond', u'heist', u'forens', u'result']
[u'polic', u'bust', u'insect', u'fight', u'gambl', u'ring']
[u'polic', u'hunt', u'nightclub', u'attack']
[u'polic', u'investig', u'alleg', u'boulia', u'murder']
[u'polic', u'investig', u'cabbi', u'robberi']
[u'polic', u'investig', u'griffith', u'school', u'fire']
[u'polic', u'search', u'miss', u'boy']
[u'polic', u'threaten', u'crackdown', u'warrnambool', u'driver']
[u'portug', u'striker', u'mort', u'match']
[u'power', u'station', u'expans', u'investig']
[u'pressur', u'continu', u'govt', u'power', u'problem']
[u'probe', u'continu', u'hous', u'bomb']
[u'public', u'servant', u'reject', u'govt', u'offer']
[u'puerto', u'rico', u'dream', u'team', u'nightmar']
[u'qualiti', u'life', u'aborigin', u'communiti', u'poor']
[u'real', u'estat', u'agent', u'warn', u'scam']
[u'renmark', u'road', u'fund', u'irk', u'council']
[u'repeat', u'drink', u'drive', u'offend', u'jail']
[u'research', u'point', u'cannabi', u'schizophrenia', u'link']
[u'retail', u'want', u'orang', u'grove', u'remain', u'open']
[u'retir', u'general', u'surpris']
[u'brew', u'plan', u'cut', u'disabl']
[u'rule', u'foul', u'cost', u'thai', u'weightlift', u'olymp']
[u'satellit', u'imag', u'help', u'bushfir', u'fight']
[u'scientist', u'zero', u'termit']
[u'search', u'continu', u'eldorado', u'gold']
[u'search', u'miss', u'pilot', u'suspend']
[u'sewerag', u'check', u'prevent', u'futur', u'problem']
[u'share', u'market', u'slip', u'lower']
[u'shoot', u'gold', u'aussi', u'balogh']
[u'singh', u'captur', u'championship']
[u'south', u'africa', u'snatch', u'relay', u'gold', u'world', u'record']
[u'south', u'korean', u'form', u'game', u'homecom']
[u'springbok', u'prais', u'australian', u'pack']
[u'strong', u'wind', u'whip', u'surf', u'northern']
[u'super', u'crash', u'susilo', u'steal']
[u'swim', u'cycl', u'gold', u'australia']
[u'sydney', u'harbour', u'floor', u'heavili', u'pollut']
[u'talli', u'face', u'judiciari']
[u'tara', u'water', u'treatment', u'plant', u'lead', u'rat', u'rise']
[u'teen', u'tell', u'judg', u'plain']
[u'teeth', u'problem', u'fail', u'stop', u'train', u'success']
[u'telstra', u'consid', u'boost', u'mobil', u'phone', u'coverag']
[u'tenix', u'continu', u'worker', u'lockout']
[u'thorp', u'hackett', u'readi', u'roll', u'free']
[u'thorp', u'make', u'histori', u'free']
[u'soldier', u'kill', u'najaf']
[u'tighter', u'control', u'disappoint', u'plantat', u'grower']
[u'tini', u'turk', u'mutlu', u'join', u'great', u'olymp']
[u'manag', u'flag', u'asbestosi', u'worri']
[u'offici', u'concern', u'lack', u'progress']
[u'tour', u'boost', u'stargaz']
[u'tamar', u'top', u'state', u'assess']
[u'hold', u'australian', u'rape', u'ordeal']
[u'kill', u'gaza', u'strike', u'report']
[u'kill', u'caravan']
[u'discuss', u'burundi', u'refuge', u'massacr']
[u'battl', u'race', u'hate', u'campaign']
[u'record', u'increas', u'matur', u'age', u'student', u'number']
[u'unit', u'group', u'share', u'jump', u'profit', u'increas']
[u'seek', u'answer', u'burundi', u'massacr']
[u'urgent', u'action', u'need', u'save', u'turtl']
[u'venezuela', u'presidenti', u'recal', u'vote', u'extend']
[u'approv', u'freight', u'australia', u'sale']
[u'virgin', u'blue', u'cut', u'sydney', u'alic', u'flight']
[u'move', u'aborigin', u'workplac', u'exploit']
[u'warehous', u'damag', u'shepparton']
[u'warn', u'issu', u'despit', u'bushfir', u'control']
[u'watchdog', u'criticis', u'order', u'report', u'leav']
[u'waugh', u'prais', u'lara', u'mileston']
[u'weekend', u'wind', u'whip', u'monaro', u'field']
[u'wilkinson', u'long', u'await', u'return']
[u'william', u'brincat', u'face', u'court', u'gangland']
[u'william', u'lose', u'appeal']
[u'william', u'serv', u'suspens']
[u'winemak', u'stay', u'deadlin', u'pass']
[u'wit', u'recal', u'falconio', u'sight']
[u'wit', u'tell', u'fieri', u'plane', u'crash']
[u'wood', u'hand', u'chanc', u'gold', u'medal', u'sacrific']
[u'wood', u'pass', u'norman', u'number', u'record']
[u'work', u'stop', u'aldoga', u'smelter']
[u'agenda', u'blame', u'nrls', u'expans']
[u'alien', u'predat', u'crush', u'competit']
[u'nomin', u'can', u'candid']
[u'anger', u'remain', u'despit', u'disabl', u'scheme', u'backdown']
[u'archaeologist', u'link', u'cave', u'john', u'baptist']
[u'aussi', u'shark', u'sink', u'itali']
[u'aussi', u'return', u'form', u'taiwan']
[u'aust', u'china', u'trade', u'deal', u'strengthen', u'tie', u'downer']
[u'aust', u'market', u'move', u'higher']
[u'australian', u'help', u'chines', u'reform']
[u'australia', u'tabl', u'tenni', u'pair', u'lose']
[u'award', u'win', u'author', u'thea', u'astley', u'die']
[u'baghdad', u'blast', u'kill', u'seven', u'najaf', u'fight', u'rag']
[u'bartel', u'suspend', u'player', u'fin', u'tribun']
[u'bear', u'coach', u'happi', u'minor', u'premiership']
[u'belling', u'score', u'land', u'ancestor']
[u'fin', u'illeg', u'dump']
[u'blaze', u'come', u'close', u'boat', u'builder']
[u'boenisch', u'upset', u'odd', u'olymp', u'gold']
[u'boomer', u'angola']
[u'breast', u'stroke', u'champion', u'readi']
[u'britain', u'lead', u'equestrian', u'event']
[u'bronco', u'undecid', u'contest', u'talli', u'charg']
[u'bronco', u'undecid', u'talli', u'charg']
[u'burmes', u'weightlift', u'fail', u'drug', u'test']
[u'burnett', u'river', u'industri', u'woe', u'resolv']
[u'bush', u'announc', u'troop', u'realign']
[u'cabl', u'fault', u'creat', u'toowoomba', u'phone', u'woe']
[u'calend', u'girl', u'strip', u'away', u'age', u'mythsagain']
[u'crackdown', u'internet', u'porn']
[u'candid', u'question', u'politician', u'travel']
[u'carter', u'back', u'venezuela', u'recal', u'result']
[u'cat', u'appeal', u'bartel', u'suspens']
[u'charg', u'drop', u'launceston', u'protest']
[u'children', u'overboard', u'claim', u'verifi', u'scrafton']
[u'china', u'chen', u'surviv', u'danish', u'test', u'claim']
[u'citrus', u'canker', u'surveil', u'continu', u'palaszczuk']
[u'clarenc', u'valley', u'begin', u'restructur']
[u'cobain', u'christma', u'card', u'fetch', u'high', u'price', u'auction']
[u'cochlear', u'share', u'fall', u'profit', u'drop']
[u'communiti', u'soak', u'spong', u'benefit']
[u'communiti', u'cabinet', u'extend', u'region', u'visit']
[u'communiti', u'long', u'term', u'ballarat', u'plan']
[u'concern', u'rais', u'drug', u'law']
[u'coron', u'report', u'hickey', u'death']
[u'coron', u'highlight', u'petrol', u'sniff', u'caus']
[u'council', u'own', u'land', u'sale', u'hervey']
[u'council', u'pressur', u'clean', u'gaswork']
[u'council', u'consid', u'industri', u'develop']
[u'council', u'gaug', u'health', u'risk']
[u'custom', u'seiz', u'worth', u'heroin']
[u'dead', u'consid', u'suspici']
[u'death', u'toll', u'climb', u'chines', u'typhoon']
[u'defenc', u'dept', u'damag', u'seagrass', u'bed', u'coral', u'reef', u'flat']
[u'dive', u'gold', u'greec', u'australia', u'take', u'bronz']
[u'doco', u'screen', u'elect']
[u'doctor', u'group', u'back', u'traine', u'specialist']
[u'downer', u'offer', u'north', u'korea', u'opportun']
[u'drag', u'race', u'teen', u'order', u'road']
[u'drought', u'stop', u'field', u'day']
[u'dwyer', u'help', u'aussi', u'hold', u'argentina']
[u'ead', u'offici', u'sign', u'bulldog', u'post']
[u'edward', u'learn', u'fate', u'today']
[u'electr', u'fault', u'spark', u'warehous', u'blaze']
[u'energi', u'brix', u'urg', u'offer', u'worker', u'entitl']
[u'falconio', u'accus', u'gentleman', u'wit', u'say']
[u'famili', u'defend', u'william', u'face', u'murder', u'charg']
[u'famili', u'lose', u'hope', u'search', u'miss', u'pilot']
[u'famili', u'say', u'turkish', u'driver', u'abduct', u'iraq']
[u'fan', u'cheer', u'jackson', u'outsid', u'court', u'hear']
[u'farmer', u'hop', u'wind', u'farm', u'develop']
[u'farmer', u'tell', u'grow', u'food', u'safe']
[u'fear', u'hold', u'magnet', u'overdevelop']
[u'fear', u'school', u'blaze', u'affect', u'student', u'effort']
[u'feder', u'minist', u'call', u'ring', u'road', u'work']
[u'field', u'day', u'plan', u'track']
[u'flash', u'flood', u'english', u'tourist', u'town']
[u'elvi', u'home', u'welcom', u'renter']
[u'sailor', u'sue', u'voyag', u'disast']
[u'fund', u'shortag', u'stop', u'hour', u'clinic']
[u'geraldton', u'boxer', u'strike']
[u'gold', u'nestruev', u'pistol', u'shoot']
[u'googl', u'market', u'debut', u'loom']
[u'govt', u'invest', u'asthma', u'research']
[u'govt', u'offer', u'council', u'militari', u'depot']
[u'govt', u'reject', u'review', u'claim']
[u'govt', u'urg', u'bolster', u'river', u'murray', u'effort']
[u'group', u'criticis', u'paedophil', u'identifi', u'letter', u'drop']
[u'gunn', u'boss', u'leav', u'forestri', u'group']
[u'guyart', u'win', u'physic', u'battl', u'men', u'foil']
[u'gympi', u'muster', u'organis', u'expect', u'record', u'crowd']
[u'hacker', u'enorm', u'challeng']
[u'hewitt', u'advanc', u'washington', u'classic']
[u'histor', u'hotel', u'undergo', u'redevelop']
[u'hobart', u'hospit', u'play', u'fear']
[u'hockeyroo', u'rival', u'cours', u'semi', u'final']
[u'hospit', u'room', u'improv']
[u'hotel', u'work', u'near', u'finish']
[u'hous', u'market', u'boost', u'boral', u'profit']
[u'hoy', u'medal', u'hop', u'dive']
[u'hunter', u'residenti', u'build', u'approv', u'strong']
[u'icac', u'inquiri', u'head', u'call', u'lawyer', u'focus']
[u'drug', u'cheat', u'say', u'kenteri']
[u'iraqi', u'polic', u'releas', u'report', u'najaf']
[u'iron', u'train', u'derail', u'investig']
[u'irrig', u'urg', u'attend', u'workshop']
[u'israel', u'build', u'hous', u'unit', u'west', u'bank']
[u'japanes', u'edg', u'men', u'team', u'gymnast']
[u'jetstar', u'cancel', u'melbourn', u'hobart', u'flight']
[u'jindabyn', u'land', u'releas', u'loom']
[u'judg', u'blast', u'author', u'babi', u'abus', u'case']
[u'judg', u'queri', u'killer', u'driver', u'lesser', u'charg']
[u'judg', u'rule', u'jail', u'drink', u'driver']
[u'juri', u'retir', u'supermarket', u'robberi', u'case']
[u'kenya', u'reject', u'tribal', u'move', u'evict', u'white', u'farmer']
[u'unlock', u'victori', u'england']
[u'khouri', u'admit', u'invent', u'detail']
[u'korean', u'captain', u'bad', u'injur', u'hockey', u'accid']
[u'korean', u'hockey', u'captain', u'hospit']
[u'labor', u'offici', u'deni', u'bulli', u'claim']
[u'landhold', u'urg', u'vigil']
[u'landhold', u'urg', u'boost', u'safeti']
[u'latham', u'shrug', u'posit', u'poll']
[u'lawyer', u'observ', u'hick', u'hear']
[u'lennon', u'suspend', u'butler', u'golden', u'handshak']
[u'lennon', u'face', u'butler', u'inquisit']
[u'lightweight', u'littl', u'box']
[u'long', u'award', u'sore', u'point', u'veteran']
[u'lynch', u'like', u'starter', u'saint']
[u'accus', u'sell', u'squid', u'illeg']
[u'jail', u'assault', u'friend']
[u'court', u'bowen', u'arm', u'robberi']
[u'mayor', u'doesnt', u'support', u'perman', u'slower', u'speed', u'limit']
[u'meet', u'hear', u'hospit', u'masterplan', u'detail']
[u'meet', u'discuss', u'veteran', u'memori', u'design']
[u'meet', u'focus', u'break', u'hill', u'tourism', u'direct']
[u'explor', u'area', u'expand']
[u'miss', u'tourist']
[u'mistral', u'race', u'void', u'resail']
[u'mix', u'respons', u'aldoga', u'smelter', u'halt']
[u'question', u'seven', u'trade', u'plan']
[u'monto', u'miner', u'get', u'lifelin']
[u'problem', u'like']
[u'wit', u'call', u'falconio', u'trial']
[u'mous', u'muncher', u'fin', u'contest']
[u'back', u'govt', u'drink', u'drive', u'fight']
[u'murali', u'month', u'surgeri']
[u'najaf', u'battl', u'continu', u'amid', u'peac', u'push']
[u'nation', u'attack', u'forc', u'council', u'merger']
[u'nat', u'question', u'rail', u'sale']
[u'nephew', u'guilti', u'strangl', u'aunt']
[u'bird', u'speci', u'philippin']
[u'hardi', u'boss', u'note', u'oblig', u'investor']
[u'nickel', u'run']
[u'norri', u'phelp', u'favour']
[u'water', u'alloc', u'respit', u'irrig']
[u'nurs', u'threaten', u'industri', u'action', u'staff']
[u'opal', u'russia']
[u'opposit', u'suggest', u'port', u'hedland']
[u'pair', u'tell', u'falconio', u'kombi', u'sight']
[u'panel', u'hear', u'lake', u'feder', u'submiss']
[u'phelp', u'thorp', u'rejoin', u'gold', u'chase']
[u'phelp', u'upbeat', u'despit', u'seven', u'gold', u'dream']
[u'phiggl', u'scienc', u'lesson']
[u'aid', u'odd', u'overboard', u'advic']
[u'deni', u'children', u'overboard', u'discrep']
[u'poki', u'tax', u'club']
[u'polic', u'amaz', u'tourist', u'good', u'health']
[u'polic', u'clear', u'hickey', u'death']
[u'polic', u'concern', u'miss', u'tourist']
[u'polic', u'continu', u'probe', u'pedestrian', u'death']
[u'polic', u'hunt', u'jail', u'escape']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'readi']
[u'polic', u'search', u'detent', u'centr', u'escap']
[u'polic', u'seiz', u'heritag', u'list', u'item']
[u'poor', u'season', u'maverick', u'discuss', u'futur']
[u'practic', u'make', u'perfect', u'pottharst']
[u'pratt', u'molik', u'face', u'tough', u'ask', u'round']
[u'protest', u'stand', u'tall', u'tuart']
[u'public', u'ask', u'help', u'syring', u'bandit']
[u'public', u'speaker', u'leav', u'speechless']
[u'public', u'mislead', u'orang', u'grove', u'carr']
[u'purana', u'work']
[u'push', u'continu', u'blood', u'collect', u'facil']
[u'energi', u'plan', u'announc', u'parliament']
[u'rebel', u'fighter', u'kill', u'chechnya']
[u'record', u'profit', u'onesteel']
[u'record', u'ticket', u'sale', u'seat']
[u'recuper', u'pittman', u'face', u'final', u'hurdl']
[u'refuel', u'extend', u'chopper', u'rang']
[u'reith', u'speak', u'latham', u'say']
[u'report', u'find', u'household', u'struggl']
[u'salt', u'affect', u'drink', u'water']
[u'polic', u'budget', u'slash']
[u'school', u'board', u'member', u'accus', u'drug', u'smuggl']
[u'school', u'crash', u'hous']
[u'score', u'pig', u'riot', u'highway']
[u'seminar', u'put', u'focus', u'broadband', u'internet']
[u'servic', u'station', u'worker', u'thwart', u'thiev']
[u'share', u'leap', u'pressur', u'eas']
[u'korean', u'equal', u'women', u'olymp', u'record']
[u'super', u'expans', u'consid']
[u'taiwan', u'warn', u'declar', u'independ']
[u'talk', u'plan', u'coal', u'miner', u'disput']
[u'teacher', u'admit', u'schoolboy']
[u'teacher', u'smaller', u'class', u'size']
[u'teenag', u'stab', u'school']
[u'teen', u'face', u'cunnamulla', u'rape', u'charg']
[u'cite', u'cat', u'docker', u'mele']
[u'tent', u'embassi', u'suspici']
[u'tent', u'embassi', u'resid', u'stay']
[u'thirteen', u'kill', u'azerbaijan', u'collis']
[u'thorp', u'cruis', u'semi']
[u'thorp', u'cours', u'trebl', u'take', u'tumbl']
[u'shot', u'athen', u'effort', u'trigger', u'gold']
[u'tree', u'plant', u'aim', u'tackl', u'salt', u'woe']
[u'tutu', u'diver', u'prompt', u'secur', u'shake']
[u'union', u'lament', u'busi', u'bank', u'centr', u'closur']
[u'union', u'want', u'tenix', u'lockout', u'rule', u'unlaw']
[u'end', u'australia', u'reign']
[u'flight', u'vulner', u'attack', u'warn']
[u'wait', u'recognis', u'chavez', u'victori']
[u'vandal', u'forc', u'welcom', u'sign', u'remov']
[u'hoogenband', u'posit', u'defeat']
[u'crime', u'figur', u'shame']
[u'crime', u'rat', u'rise']
[u'worker', u'award', u'benefit']
[u'vietnam', u'confirm', u'bird', u'death']
[u'fin', u'secur', u'firm', u'prison', u'break']
[u'nurs', u'unhappi', u'ambul', u'procedur']
[u'weightlift', u'put', u'greec', u'medal', u'board']
[u'wild', u'poison', u'creat', u'nativ', u'anim', u'fear']
[u'wind', u'farm', u'threaten', u'indigen', u'sit']
[u'wind', u'help', u'firefight']
[u'winemak', u'evict']
[u'wit', u'identifi', u'accus', u'peopl', u'smuggler']
[u'worker', u'await', u'impact', u'forest', u'restructur']
[u'lead', u'china', u'past', u'tall', u'black']
[u'young', u'bomber', u'name', u'rise', u'star']
[u'youth', u'detent', u'centr', u'closur', u'urg']
[u'year', u'jail', u'plan', u'racist', u'attack', u'dump']
[u'abba', u'fire', u'pakistan', u'riot', u'egypt']
[u'aborigin', u'want', u'talk', u'govt', u'tent', u'embassi']
[u'accus', u'backpack', u'killer', u'face', u'trial', u'month']
[u'agassi', u'overcom', u'goldstein', u'washington', u'open']
[u'aldoga', u'interest', u'aurukin', u'deposit']
[u'alleg', u'child', u'offend', u'charg']
[u'report', u'near', u'profit']
[u'ancient', u'citi', u'remot', u'peru', u'jungl']
[u'anlezark', u'power', u'shoot', u'final']
[u'appoint', u'free', u'ambul', u'crew']
[u'arafat', u'admit', u'mistak', u'back', u'quri']
[u'iraqi', u'kill', u'mosul', u'violenc']
[u'target', u'busi', u'properti', u'investor']
[u'basebal', u'shock', u'japan']
[u'aussi', u'beach', u'volleybal']
[u'aussi', u'flyweight', u'go', u'fight']
[u'aussi', u'softbal', u'china']
[u'aussi', u'women', u'song', u'heat']
[u'australian', u'arrest', u'vietnam', u'drug', u'charg']
[u'australia', u'equestrian', u'medal', u'hop', u'slip']
[u'australia', u'softbal', u'itali', u'merci']
[u'australia', u'oldest', u'olympian', u'crash']
[u'beatti', u'admit', u'power', u'cost', u'offic']
[u'win', u'busi', u'advisori', u'servic', u'tender']
[u'belarussian', u'lead', u'women', u'shoot', u'qualifi']
[u'bell', u'miss', u'cano', u'medal']
[u'report', u'record', u'profit']
[u'blanck', u'hold', u'lead', u'europ', u'class']
[u'boost', u'campaign', u'miss', u'teenag']
[u'brazil', u'look', u'australia', u'ethanol', u'partnership']
[u'busi', u'communiti', u'leader', u'rooki']
[u'busi', u'centr', u'combin', u'effort']
[u'bypass', u'help', u'intersect', u'crash']
[u'ballarat', u'tram', u'work']
[u'candid', u'back', u'oakaje', u'report']
[u'crash', u'put', u'hospit']
[u'cartwright', u'dolphin']
[u'china', u'women', u'hockey', u'semi']
[u'china', u'men', u'badminton', u'cupboard', u'look', u'barer']
[u'china', u'badminton', u'hop', u'smoke']
[u'china', u'gang', u'pass', u'test', u'tabl', u'tenni']
[u'chines', u'south', u'korean', u'pair', u'share', u'tabl', u'tenni', u'medal']
[u'comment', u'seek', u'bark', u'develop', u'plan']
[u'committe', u'coordin', u'wast', u'dump', u'fight']
[u'communiti', u'input', u'bendigo', u'plan']
[u'confess', u'guantanamo', u'hear']
[u'conven', u'lament', u'shire', u'expo', u'snub']
[u'council', u'back', u'develop']
[u'council', u'back', u'entertain', u'centr', u'plan']
[u'council', u'crack', u'water']
[u'council', u'grappl', u'intern']
[u'council', u'probe', u'child', u'care', u'woe']
[u'council', u'reject', u'cost', u'shift', u'plan']
[u'council', u'push', u'age', u'care', u'boost']
[u'council', u'decid', u'worker', u'camp']
[u'crime', u'fall', u'room', u'improv']
[u'crime', u'level', u'fall', u'south', u'west']
[u'democrat', u'widen', u'plan']
[u'doctor', u'laud', u'earli', u'meningococc', u'detect']
[u'downer', u'criticis', u'taiwan', u'comment']
[u'downer', u'upbeat', u'north', u'korean', u'nuclear', u'talk']
[u'dutch', u'join', u'china', u'hockey', u'semi']
[u'employ', u'prompt', u'know', u'worker', u'condit']
[u'endur', u'swimmer', u'short', u'chang', u'olymp']
[u'kangaroo', u'dolphin']
[u'lover', u'jail', u'stab']
[u'explos', u'hit', u'hama', u'milit', u'home']
[u'fail', u'peac', u'mission', u'quit', u'najaf']
[u'falconio', u'accus', u'stand', u'trial']
[u'falconio', u'hear', u'near']
[u'fall', u'dash', u'hoy', u'medal', u'hop']
[u'fear', u'air', u'bathurst', u'jail', u'futur']
[u'fear', u'whale', u'catch', u'shark']
[u'dodger', u'spark', u'kidnap', u'alert']
[u'ferri', u'servic', u'face', u'disrupt']
[u'ferri', u'servic', u'resum', u'sydney']
[u'flag', u'order', u'parliament']
[u'fletcher', u'jone', u'shut', u'oper']
[u'health', u'minist', u'conduct', u'honour']
[u'health', u'minist', u'intimid']
[u'public', u'servant', u'back', u'overboard', u'claim']
[u'fuel', u'price', u'rise', u'surpris']
[u'funer', u'today', u'drove', u'pioneer']
[u'open', u'girl', u'school', u'hall']
[u'googl', u'await', u'ahead', u'sell', u'share']
[u'govt', u'insist', u'channel', u'plan', u'examin']
[u'govt', u'name', u'busi', u'train', u'firm']
[u'govt', u'provid', u'assist', u'mitsubishi', u'worker']
[u'govt', u'releas', u'ranger', u'contamin', u'report']
[u'grandma', u'strike', u'meteorit']
[u'greek', u'quit', u'drama', u'overshadow', u'pool', u'duel']
[u'greek', u'sprinter', u'quit', u'olymp']
[u'green', u'hous', u'plan', u'reject']
[u'hayden', u'applaud', u'odumb']
[u'hayden', u'favour', u'match', u'fix']
[u'heaston', u'go', u'histori', u'accid']
[u'heritag', u'law', u'overhaul']
[u'hope', u'clinic', u'school', u'boost', u'medic', u'student']
[u'hospit', u'manag', u'clear', u'blame', u'girl', u'death']
[u'hostel', u'get', u'safeti', u'fund']
[u'howard', u'deni', u'blix', u'claim']
[u'hutchison', u'secur', u'loan']
[u'iliadi', u'take', u'judo', u'gold']
[u'illawarra', u'hous', u'market', u'slow']
[u'india', u'fight', u'resurrect', u'olymp', u'campaign']
[u'inquiri', u'consid', u'region', u'econom', u'impedi']
[u'iraq', u'expect', u'decis', u'battl', u'najaf']
[u'jackson', u'inspir', u'opal', u'easi']
[u'jackson', u'team', u'fail', u'challeng', u'evid']
[u'kalgoorli', u'join', u'school', u'studi']
[u'labor', u'pick', u'can', u'candid']
[u'landhold', u'urg', u'unit', u'tackl', u'wild', u'dog']
[u'latham', u'diagnos', u'pancreat']
[u'latham', u'hospit']
[u'legisl', u'assembl', u'vote', u'work', u'hour']
[u'lend', u'leas', u'profit', u'reach', u'target']
[u'lyon', u'deal', u'helen', u'doubt']
[u'charg', u'shoot']
[u'convict', u'tourist', u'bash']
[u'die', u'copper', u'accid']
[u'plead', u'guilti', u'stadium', u'break']
[u'man', u'bodi', u'fish']
[u'market', u'slide', u'despit', u'profit', u'report']
[u'martin', u'push', u'nuclear', u'dump']
[u'mayor', u'suggest', u'narrandera', u'youth', u'curfew']
[u'mayor', u'welcom', u'onesteel', u'announc']
[u'men', u'coxless', u'pair', u'four', u'final']
[u'mental', u'guilti', u'kill']
[u'power', u'fight', u'life']
[u'miner', u'launch', u'court', u'action', u'xstrata']
[u'minist', u'reject', u'homeless', u'grog', u'link']
[u'minist', u'reject', u'tuart', u'forest', u'claim']
[u'mobil', u'refineri', u'upgrad']
[u'flight', u'option', u'hast']
[u'hear', u'poki', u'chang', u'concern']
[u'hear', u'communic', u'woe']
[u'nat', u'renew', u'attack', u'beatti', u'govt', u'power']
[u'navi', u'gunner', u'break', u'silenc', u'siev']
[u'gasol', u'spark', u'spain', u'past', u'argentina']
[u'newcastl', u'help', u'lift', u'onesteel', u'profit']
[u'drug', u'law', u'bring', u'line', u'nation']
[u'newsag', u'protest', u'deal']
[u'treatment', u'good', u'gold', u'eczema', u'suffer']
[u'nigeria', u'seek', u'approv', u'send', u'peacekeep']
[u'nightclub', u'trade', u'permit', u'scrutini']
[u'map', u'crazi', u'coloni']
[u'like', u'site', u'wast', u'dump']
[u'odumb', u'hand', u'year']
[u'price', u'bubbl', u'record', u'high']
[u'olyroo', u'despit', u'loss']
[u'hurt', u'freeway', u'crash']
[u'oprah', u'select', u'murder', u'juri']
[u'overboard', u'continu']
[u'packer', u'close', u'burswood', u'casino']
[u'paedophil', u'dunn', u'appeal', u'convict']
[u'photo', u'identifi', u'accus', u'peopl', u'smuggler']
[u'pioneer', u'photojournalist', u'carl', u'mydan', u'die']
[u'plan', u'swan', u'reach', u'work']
[u'mingl', u'farmer', u'quip', u'field', u'day']
[u'wish', u'latham', u'speedi', u'recoveri']
[u'polic', u'fear', u'miss', u'fisherman']
[u'polic', u'suspect', u'falconio', u'case']
[u'polic', u'happi', u'fall', u'crime', u'rate']
[u'polic', u'hunt', u'servic', u'station', u'bandit']
[u'policeman', u'charg', u'decept']
[u'polic', u'offic', u'ask', u'student', u'sell', u'drug']
[u'polic', u'predict', u'drug', u'arrest']
[u'port', u'hedland', u'seek', u'public', u'liabil', u'claim']
[u'potato', u'scallop', u'fall', u'case', u'settl', u'court']
[u'potenti', u'brake', u'problem', u'prompt', u'magna', u'recal']
[u'pottharst', u'close', u'medal', u'dream']
[u'protest', u'focus', u'relief', u'teacher', u'shortag']
[u'public', u'get', u'communiti', u'bank', u'plan']
[u'chickpea', u'industri', u'boom']
[u'set', u'plan', u'develop', u'court']
[u'queanbeyan', u'centr', u'take', u'local', u'bec']
[u'racq', u'drive', u'highway', u'fund', u'boost']
[u'rat', u'slug', u'broom', u'resid']
[u'rebel', u'block', u'road', u'kathmandu']
[u'report', u'find', u'ferri', u'master', u'fault', u'port', u'phillip']
[u'rescu', u'worker', u'search', u'storm', u'english', u'villag']
[u'rhode', u'win', u'gold', u'doubl', u'trap']
[u'riddoch', u'galleri', u'boost', u'visit']
[u'roch', u'lawyer', u'evas', u'sentenc', u'deal']
[u'roddick', u'surviv', u'arthur']
[u'romanian', u'storm', u'gymnast', u'victori']
[u'rumsfeld', u'caution', u'intellig', u'reform']
[u'sadr', u'refus', u'meet', u'iraqi', u'deleg']
[u'polic', u'raid', u'hous']
[u'veteran', u'attend', u'memori', u'servic']
[u'scheidt', u'control', u'laser', u'fleet']
[u'seal', u'popul', u'monitor', u'recoveri']
[u'search', u'miss', u'fisherman', u'continu']
[u'shire', u'reject', u'barker', u'bushfir', u'claim']
[u'time', u'take', u'penalti', u'hand', u'tunisia', u'victori']
[u'korean', u'cours', u'sixth', u'straight', u'archeri', u'gold']
[u'smoke', u'reform', u'submiss', u'favour', u'ban']
[u'spacecraft', u'spot', u'saturn', u'moon']
[u'stingray', u'notch', u'kazakhstan']
[u'mari', u'plead', u'guilti', u'murder']
[u'storm', u'batter', u'zealand']
[u'strike', u'power', u'station', u'worker', u'order', u'work']
[u'strong', u'econom', u'growth', u'forecast', u'continu']
[u'strong', u'magpi', u'high', u'perform', u'post']
[u'student', u'charg', u'school', u'stab']
[u'studi', u'highlight', u'region', u'women', u'unemploy']
[u'super', u'centr', u'mean', u'person', u'touch']
[u'support', u'need', u'help', u'improv', u'communiti', u'condit']
[u'survey', u'highlight', u'continu', u'strong', u'spend']
[u'survey', u'highlight', u'lower', u'busi', u'confid']
[u'swedish', u'veteran', u'slay', u'chines', u'second', u'seed']
[u'sydney', u'get', u'drench', u'drought', u'continu']
[u'talli', u'miss', u'match']
[u'coastal', u'patrol', u'servic', u'long', u'term', u'futur']
[u'research', u'examin', u'dead', u'allergi']
[u'taufik', u'upset', u'gade', u'claim', u'badminton', u'semi', u'place']
[u'thanou', u'regist']
[u'thorp', u'look', u'creat', u'histori']
[u'toowoomba', u'archer', u'target', u'olymp', u'quarter']
[u'tourism', u'zone', u'look', u'greater', u'exposur']
[u'tourist', u'flock', u'warrnambool', u'whale']
[u'injur', u'lightn', u'strike', u'hous']
[u'union', u'take', u'issu', u'station', u'staff', u'plan']
[u'union', u'unsur', u'health', u'shake', u'loss']
[u'world', u'say', u'track', u'cyclist', u'bayley']
[u'swiss', u'fenc', u'gold', u'drought']
[u'marin', u'kill', u'iraq']
[u'star', u'edg', u'greec']
[u'share', u'market', u'climb']
[u'studi', u'isra', u'plan', u'jewish', u'settlement']
[u'unlik', u'storm', u'najaf', u'holi', u'sit']
[u'vet', u'hope', u'silenc', u'incess', u'bark']
[u'govt', u'ban', u'tardi', u'payment', u'fee']
[u'vietnam', u'veteran', u'club', u'focus', u'wall', u'dedic']
[u'vujan', u'salvag', u'victori', u'serb']
[u'wage', u'rise', u'remain']
[u'wallabi', u'unchang', u'nation', u'decid']
[u'lower', u'hous', u'back', u'drink', u'drive', u'legisl']
[u'warrant', u'issu', u'rebel', u'accus', u'kill']
[u'whale', u'explor', u'inner', u'sydney', u'harbour']
[u'wilkinson', u'make', u'long', u'await', u'return']
[u'woman', u'plead', u'guilti', u'murder', u'charg']
[u'wood', u'miss', u'dutch', u'master', u'strike', u'gold']
[u'workshop', u'consid', u'retail', u'plan']
[u'assist', u'polic', u'reed', u'murder', u'inquiri']
[u'accid', u'spark', u'demolit', u'firm', u'probe']
[u'accid', u'spark', u'northern', u'spinal', u'unit']
[u'govt', u'asbesto']
[u'action', u'group', u'river', u'mine', u'plan']
[u'action', u'group', u'protest', u'power', u'station']
[u'year', u'phone', u'line', u'request', u'turn']
[u'regul', u'chang', u'delay']
[u'alic', u'resid', u'support', u'water', u'price', u'chang', u'studi']
[u'offer', u'tafe', u'fee', u'pledg']
[u'amaq', u'welcom', u'fluorid', u'commit']
[u'amcor', u'optimist', u'despit', u'profit', u'drop']
[u'anger', u'plan', u'wage', u'rise', u'burnett', u'councillor']
[u'anthoni', u'urg', u'prove', u'clinic', u'fund', u'pledg']
[u'asic', u'ban', u'rivkin', u'life']
[u'audina', u'thank', u'badminton', u'final', u'berth']
[u'aussi', u'pair', u'women', u'backstrok', u'semi']
[u'aussi', u'beach', u'volleybal', u'wait', u'result']
[u'australian', u'arrest', u'vietnam', u'drug', u'charg']
[u'australian', u'govt', u'worker', u'arriv']
[u'australia', u'philippin', u'hold', u'navi', u'exercis']
[u'author', u'choos', u'site', u'emerg']
[u'aziz', u'pakistan']
[u'ballarat', u'swimmer', u'miss', u'relay', u'medal']
[u'bartel', u'free', u'play', u'final']
[u'bayley', u'pump', u'keirin']
[u'birth', u'unnecessarili', u'clog', u'hospit']
[u'blackburn', u'head', u'finish']
[u'blood', u'carpet', u'french', u'fencer', u'advanc']
[u'bluescop', u'profit']
[u'boomer', u'star', u'scare']
[u'boomer', u'urg', u'chang', u'strategi']
[u'box', u'show', u'slug', u'court']
[u'hurt', u'drag']
[u'brack', u'welcom', u'lloyd', u'appoint', u'probe']
[u'brigg', u'line', u'world', u'titl', u'bout']
[u'brown', u'lynch', u'shrug', u'injuri', u'woe']
[u'busi', u'defenc', u'work', u'updat']
[u'butler', u'deni', u'sell', u'stori']
[u'butler', u'negoti', u'pay', u'interview']
[u'butler', u'resign', u'wont', u'investig', u'polic']
[u'butt', u'steer', u'pakistan', u'home', u'south', u'korea']
[u'dubbo', u'emerg', u'servic', u'boost']
[u'campaign', u'aim', u'save', u'histor', u'cinema']
[u'canberra', u'face', u'water', u'restrict']
[u'cape', u'barren', u'visit', u'consid', u'step', u'land', u'handback']
[u'plant', u'adelaid', u'economi']
[u'case', u'murder', u'inform', u'close']
[u'caus', u'latham', u'ill']
[u'chamber', u'back', u'aust', u'china', u'plan']
[u'china', u'south', u'korea', u'play', u'tabl', u'tenni', u'doubl', u'gold']
[u'coff', u'invit', u'enter', u'livabl', u'citi', u'award']
[u'commonwealth', u'bank', u'job', u'union']
[u'competit', u'help', u'horsham', u'fuel', u'price']
[u'convent', u'centr', u'overcom', u'site', u'hurdl']
[u'corbel', u'depress', u'bout']
[u'council', u'agre', u'indigen', u'flag']
[u'council', u'approv', u'hotel', u'demolit', u'permit']
[u'council', u'ask', u'rethink', u'tram', u'viabil']
[u'council', u'back', u'govt', u'cut', u'studi']
[u'council', u'brief', u'militari', u'plan']
[u'council', u'candid', u'brief']
[u'council', u'consid', u'kerbsid', u'recycl']
[u'council', u'happi', u'elector', u'review', u'report']
[u'council', u'like', u'accept', u'elector', u'chang']
[u'council', u'need', u'loan', u'railway', u'revamp']
[u'council', u'promis', u'creek', u'pollut']
[u'council', u'meet', u'golf', u'club', u'request']
[u'court', u'back', u'decis', u'drop', u'sharon', u'case']
[u'court', u'reject', u'appeal', u'train', u'death']
[u'dental', u'clinic', u'upbeat', u'equip', u'upgrad']
[u'dept', u'defend', u'effort', u'relief', u'teacher', u'shortag']
[u'diamantina', u'budget', u'deliv', u'rate', u'rise']
[u'disabl', u'carer', u'begin', u'industri', u'campaign']
[u'disabl', u'support', u'grant', u'reinstat']
[u'doubt', u'cast', u'truck', u'law']
[u'downer', u'wont', u'comment', u'taiwan', u'question']
[u'dutch', u'hockey', u'champ', u'surviv', u'south', u'african', u'scare']
[u'guerrouj', u'shake', u'doubt', u'go', u'gold']
[u'engin', u'problem', u'forc', u'emerg', u'land']
[u'tourism', u'oper', u'seek', u'forest']
[u'escap', u'face', u'charg']
[u'problem', u'cost', u'australia', u'billion', u'report']
[u'farmer', u'conserv', u'incent']
[u'south', u'coast', u'face', u'bushfir', u'threat']
[u'fast', u'rail', u'servic', u'year', u'away']
[u'kill', u'baghdad', u'advanc']
[u'fight', u'hear', u'najaf', u'despit', u'truce']
[u'fisherman', u'throw', u'piranha', u'dutch', u'canal']
[u'remain', u'hospit', u'naval', u'accid']
[u'fuel', u'reduct', u'burn', u'plan', u'today']
[u'german', u'win', u'shoot', u'gold', u'despit', u'poor', u'final']
[u'global', u'warm', u'banish', u'cold', u'winter']
[u'googl', u'price', u'fall', u'short', u'predict']
[u'googl', u'receiv', u'share', u'ahead']
[u'govern', u'agre', u'citrus', u'canker', u'plan']
[u'govern', u'urg', u'chang', u'race', u'hate', u'law']
[u'govt', u'announc', u'illawarra', u'health', u'boost']
[u'govt', u'criticis', u'stall', u'releas', u'bushfir']
[u'govt', u'urg', u'releas', u'ranger', u'inquiri', u'report']
[u'govt', u'urg', u'power', u'break', u'retreat', u'stalem']
[u'grand', u'final', u'ticket', u'caus', u'headach']
[u'greek', u'sprinter', u'fake', u'accid']
[u'group', u'threaten', u'kill', u'journalist', u'iraq']
[u'hansen', u'blame', u'pressur', u'bronz', u'finish']
[u'hanson', u'jone', u'final']
[u'hawk', u'semi', u'hoogi', u'popov']
[u'height', u'rule', u'protect', u'botan', u'garden']
[u'hewitt', u'cruis', u'washington', u'quarter']
[u'hillari', u'featur', u'antarctica', u'documentari']
[u'hop', u'high', u'power', u'surgeri']
[u'howard', u'campaign', u'adelaid', u'margin']
[u'hoy', u'father', u'reflect', u'olymp', u'fall']
[u'huegil', u'power', u'butterfli', u'heat']
[u'deliv', u'increas', u'profit']
[u'icac', u'accus', u'carr', u'contempt']
[u'idol', u'sing', u'virtu', u'farm', u'safeti', u'award']
[u'inadequ', u'staff', u'leav', u'age', u'care', u'union']
[u'inquest', u'hear', u'boat', u'death', u'detail']
[u'interpret', u'misunderstand', u'wit', u'say']
[u'iran', u'warn', u'preemptiv', u'strike', u'forc']
[u'iraqi', u'agricultur', u'deleg', u'train']
[u'judg', u'accus', u'masturb', u'court', u'resign']
[u'judg', u'rob', u'highlight', u'crime', u'problem']
[u'label', u'help', u'australian', u'water', u'effici']
[u'lameroo', u'grain', u'storag', u'centr']
[u'landhold', u'action', u'valuat', u'increas']
[u'landslid', u'flood', u'caus', u'death', u'japan']
[u'liber', u'question', u'oppon', u'select']
[u'likud', u'deliv', u'blow', u'gaza', u'pullout', u'plan']
[u'local', u'push', u'decis', u'leighton', u'beach', u'site']
[u'unemploy', u'fail', u'boost', u'wag']
[u'mackenzi', u'paton', u'miss', u'free']
[u'magistr', u'prison', u'rape', u'comment', u'inappropri']
[u'malaysia', u'studi', u'seek', u'submiss']
[u'malaysia', u'move', u'contain', u'bird', u'outbreak']
[u'jail', u'child', u'charg']
[u'mar', u'offer', u'wateri', u'clue']
[u'martin', u'lawyer', u'attempt', u'head', u'defam', u'suit']
[u'matilda', u'fielder', u'score', u'olymp', u'goal']
[u'matilda', u'midfield', u'score', u'olymp', u'goal']
[u'mayor', u'vow', u'fight', u'health', u'servic', u'demis']
[u'mcconnel', u'take', u'seventh', u'event']
[u'megawati', u'unveil', u'coalit']
[u'men', u'volleybal', u'lose', u'itali']
[u'mersey', u'staff', u'urg', u'accept', u'roster', u'arrang']
[u'mildura', u'shooter', u'face', u'tough', u'olymp', u'target']
[u'million', u'spend', u'road', u'black', u'spot']
[u'miss', u'iranian', u'diplomat', u'report']
[u'mitsubishi', u'order', u'worker', u'holiday']
[u'modifi', u'discoveri', u'readi', u'march', u'launch']
[u'fund', u'ethanol', u'refineri', u'plan']
[u'mortar', u'attack', u'najaf', u'kill', u'wound']
[u'hear', u'disabl', u'fund', u'concern']
[u'question', u'crown', u'land', u'moratorium']
[u'rais', u'worri']
[u'multilingu', u'offer', u'parent', u'support']
[u'evict', u'embattl', u'winemak', u'tenant']
[u'najaf', u'fight', u'intensifi', u'govt', u'warn']
[u'navi', u'doctor', u'escap', u'suspens']
[u'station', u'expect', u'boost', u'remot', u'polic']
[u'water', u'ban', u'loom', u'toowoomba']
[u'nightclub', u'extend', u'trade', u'hour']
[u'council', u'decis', u'plan']
[u'sight', u'whoop', u'cough', u'outbreak']
[u'nurs', u'home', u'resid', u'unabl', u'afford', u'healthcar']
[u'oscar', u'win', u'compos', u'bernstein', u'die']
[u'pakistan', u'polic', u'captur', u'qaeda', u'suspect', u'shoot']
[u'parent', u'preschool', u'teacher', u'wag']
[u'park', u'set', u'archeri', u'record', u'aussi', u'cuddihi']
[u'petrol', u'station', u'link', u'leukaemia']
[u'phelp', u'possibl', u'eighth', u'medal', u'chanc']
[u'pilot', u'bodi', u'wreckag']
[u'pittman', u'declar', u'rare']
[u'pittman', u'rare', u'race']
[u'pittman', u'hawk', u'huegil', u'song']
[u'plan', u'review', u'lawyer', u'appoint', u'welcom']
[u'advis', u'face', u'overboard', u'inquiri', u'labor']
[u'court', u'delay', u'australian', u'challeng']
[u'polic', u'fail', u'flush', u'toilet', u'thiev']
[u'polic', u'probe', u'coast', u'theft']
[u'polic', u'seek', u'school', u'vandal', u'wit']
[u'politician', u'hit', u'chang', u'medal', u'criteria']
[u'portug', u'suffer', u'humili', u'olymp', u'exit']
[u'prison', u'salvador', u'revolt']
[u'public', u'miner', u'camp', u'plan']
[u'qanta', u'profit', u'take']
[u'launch', u'health', u'blueprint']
[u'racist', u'target', u'adelaid', u'shop']
[u'ranger', u'report', u'comment', u'hamper', u'prosecut']
[u'rate', u'rise', u'kolan', u'shire', u'ratepay']
[u'report', u'give', u'hospit', u'site', u'clear']
[u'sadr', u'face', u'final', u'hour', u'iraq', u'govt']
[u'schacht', u'slack', u'norwegian']
[u'school', u'model', u'keep', u'student', u'year']
[u'senior', u'play', u'wood', u'ohio']
[u'sentenc', u'appeal', u'send', u'policeman', u'jail']
[u'sharon', u'press', u'gaza', u'pullout']
[u'shock', u'defeat', u'inou', u'end', u'gold', u'medal', u'dream']
[u'smatter', u'rain', u'eas', u'danger']
[u'southcorp', u'make', u'profit', u'turnaround']
[u'south', u'korea', u'rule', u'parti', u'leader', u'resign']
[u'storm', u'landslid', u'wreak', u'havoc', u'scotland', u'franc']
[u'strong', u'growth', u'predict', u'barossa', u'wine', u'product']
[u'strong', u'expect', u'land', u'releas']
[u'strong', u'profit', u'report', u'lift', u'share', u'market']
[u'strong', u'quak', u'jolt', u'northern', u'japan']
[u'student', u'investig', u'nazi', u'websit']
[u'tall', u'black', u'stun', u'world', u'champion', u'serb']
[u'task', u'forc', u'moot', u'tackl', u'skill', u'shortag']
[u'tear', u'gold', u'vezzali']
[u'thorp', u'short', u'search', u'challeng']
[u'tourism', u'industri', u'urg', u'join', u'forum']
[u'troubl', u'travel', u'firm', u'sell', u'today']
[u'truck', u'spill', u'creat', u'traffic']
[u'aussi', u'row', u'team', u'qualifi', u'final']
[u'kill', u'ghraib', u'report', u'implic']
[u'cooper', u'china', u'semi', u'final']
[u'union', u'order', u'compens']
[u'unseed', u'dane', u'bronz', u'badminton', u'mix']
[u'victim', u'kill', u'rule', u'relev', u'appeal']
[u'vision', u'problem', u'cost', u'communiti', u'billion']
[u'voter', u'turn', u'power', u'debat', u'beatti']
[u'wallabi', u'place', u'hide', u'say', u'jone']
[u'walter', u'cronkit', u'sign']
[u'trade', u'hour', u'extens', u'vote']
[u'site', u'prompt', u'school', u'paedophil', u'investig']
[u'weightlift', u'fail', u'drug', u'test', u'name']
[u'wildcat', u'south', u'croc', u'clash']
[u'win', u'germani', u'england', u'shock', u'defeat']
[u'woman', u'rescu', u'fall']
[u'world', u'learn', u'love', u'insect']
[u'zhang', u'suprem', u'despit', u'hurt']
[u'zhou', u'take', u'women', u'badminton', u'singl', u'bronz']
[u'mitsubishi', u'worker', u'accept', u'offer']
[u'aborigin', u'remain', u'return', u'communiti']
[u'ghraib', u'doctor', u'ignor', u'medic', u'ethic']
[u'debat', u'dragway', u'site']
[u'african', u'staff', u'nurs', u'shortag']
[u'agassi', u'waltz', u'washington', u'quarter', u'final']
[u'alic', u'spring', u'host', u'sustain', u'confer']
[u'deni', u'delay', u'textil', u'invest']
[u'pledg', u'murwillumbah', u'casino', u'rail', u'fund']
[u'promis', u'fund', u'adelaid', u'hospit']
[u'launch', u'shepparton', u'offic']
[u'ambassador', u'deni', u'aust', u'allianc', u'damag']
[u'ambul', u'offic', u'test', u'spark', u'industri', u'woe']
[u'anger', u'reduc', u'court', u'sit']
[u'aussi', u'judoka', u'exit', u'heavyweight', u'competit']
[u'aussi', u'welterweight', u'go', u'athen']
[u'australian', u'medal', u'count', u'expect']
[u'award', u'celebr', u'tourism', u'effort']
[u'ballarat', u'consid', u'spencer', u'display']
[u'bank', u'chang', u'tip', u'hurt', u'region']
[u'barca', u'lui', u'garcia', u'pois', u'join', u'liverpool']
[u'bashir', u'file', u'lawsuit', u'arrest']
[u'berrigan', u'tiger', u'match']
[u'confirm', u'india', u'talk']
[u'bird', u'virus', u'pig']
[u'broadford', u'footbal', u'club', u'warn', u'stop', u'rough', u'play']
[u'colleg', u'stay', u'stand', u'facil']
[u'canberra', u'colleg', u'celebr', u'student', u'olymp']
[u'cancer', u'fight', u'requir', u'person', u'council']
[u'carr', u'retract', u'fail', u'contempt', u'threat']
[u'carr', u'haul', u'icac']
[u'sale', u'revers']
[u'theft', u'decreas']
[u'cataract', u'gorg', u'access', u'improv']
[u'cbas', u'bordertown', u'plan']
[u'chamber', u'seek', u'convent', u'centr', u'detail']
[u'cheap', u'import', u'devonport', u'textil', u'worker', u'job']
[u'cheat', u'stand', u'elect']
[u'china', u'humbl', u'argentina']
[u'china', u'peat', u'campaign', u'falter']
[u'chines', u'gold', u'bronz', u'tabl', u'tenni']
[u'communiti', u'servic', u'extortionist']
[u'communiti', u'urg', u'support', u'mental', u'health', u'patient']
[u'council', u'air', u'boundari', u'chang', u'plan', u'fear']
[u'council', u'chief', u'resign', u'impuls']
[u'council', u'defer', u'wetland', u'decis']
[u'council', u'lay', u'welcom', u'poultri', u'farm']
[u'council', u'rethink', u'rail', u'trail', u'rout']
[u'council', u'speak', u'cost', u'blowout']
[u'council', u'want', u'anim', u'pest', u'kosciuszko']
[u'court', u'jail', u'assault', u'charg']
[u'crow', u'goodwin', u'expect', u'play']
[u'custom', u'unhappi', u'telco', u'servic']
[u'deadlin', u'loom', u'tree', u'clear', u'ballot']
[u'deak', u'walk', u'olymp', u'bronz']
[u'dept', u'watch', u'altern', u'fuel', u'trial', u'emiss']
[u'detaine', u'refus', u'meat', u'maggot']
[u'determin', u'davenport', u'continu', u'win', u'streak']
[u'displac', u'sudanes', u'threaten', u'enter', u'chad']
[u'doctor', u'claim', u'shortag', u'patient', u'risk']
[u'doubt', u'cast', u'tourism', u'forum']
[u'dragon', u'edg', u'fade', u'knight']
[u'driver', u'high', u'speed', u'crash', u'sentenc', u'year']
[u'driver', u'plead', u'guilti', u'fatal', u'chase', u'charg']
[u'east', u'timores', u'perman', u'resid']
[u'engelsman', u'lenton', u'surg', u'semi']
[u'explor', u'well', u'flow', u'prove', u'promis']
[u'farina', u'specul', u'unfound', u'boss']
[u'father', u'face', u'yacht', u'race']
[u'feder', u'health', u'sell', u'pharmaci']
[u'festiv', u'promis', u'broom', u'boost']
[u'festiv', u'right', u'note', u'jazz', u'buff']
[u'field', u'guid', u'fisher']
[u'file', u'share', u'firm', u'round', u'piraci', u'disput']
[u'forum', u'hear', u'region', u'climat', u'threat']
[u'fuel', u'burn', u'continu']
[u'fund', u'seek', u'manag', u'resid', u'revamp']
[u'fund', u'albani', u'heritag', u'sit']
[u'galkina', u'win', u'shoot', u'gold', u'russia']
[u'game', u'thorp', u'relay', u'flop']
[u'garrett', u'temporarili', u'stave', u'evict']
[u'gatto', u'complain', u'prison', u'condit']
[u'govt', u'defend', u'teacher', u'payment', u'reward']
[u'govt', u'play', u'blame', u'game', u'school', u'fund']
[u'govt', u'stand', u'greater', u'bunburi', u'region', u'scheme']
[u'govt', u'urg', u'waiv', u'charg', u'help', u'hous', u'student']
[u'govt', u'wont', u'challeng', u'union', u'site', u'access']
[u'grant', u'boost', u'sawmil', u'equip']
[u'greek', u'unawar', u'dope', u'case']
[u'growth', u'expect', u'ruin', u'barossa', u'charact']
[u'hackett', u'steven', u'final']
[u'handback', u'ceremoni', u'mark', u'wave', u'hill', u'protest']
[u'hawk', u'target']
[u'hobart', u'hospit', u'crisi', u'worsen']
[u'hockeyroo', u'medal', u'hop', u'slip', u'away']
[u'hope', u'aliv', u'eden', u'resort', u'plan']
[u'howard', u'lee', u'unveil', u'biodivers', u'plan']
[u'beer', u'bear', u'bear']
[u'hunter', u'job', u'growth', u'predict', u'slow']
[u'indonesian', u'bronz', u'badminton', u'doubl']
[u'insect', u'base', u'robot', u'like', u'magic']
[u'hear', u'teacher', u'transfer', u'disput']
[u'isra', u'court', u'warn', u'ignor', u'barrier', u'rule']
[u'jackson', u'accus', u'famili', u'offer', u'hous']
[u'japan', u'grab', u'olymp', u'judo', u'gold']
[u'jubile', u'mine', u'strike', u'record', u'profit']
[u'judg', u'maintain', u'peirsol', u'break', u'rule']
[u'katter', u'defend', u'support', u'candid']
[u'kerri', u'challeng', u'discredit', u'militari', u'servic']
[u'kluft', u'take', u'control', u'heptathlon']
[u'knight', u'lose', u'perri', u'parson', u'georg', u'clash']
[u'kookaburra', u'score', u'gasp', u'india']
[u'minut', u'chang', u'worri']
[u'latham', u'confid', u'fit', u'govern']
[u'latham', u'mend']
[u'lead', u'iraqi', u'cleric', u'discharg', u'hospit']
[u'leaflet', u'spark', u'vicious', u'privat', u'public', u'school', u'spat']
[u'warn', u'long', u'term', u'properti', u'valuat']
[u'littl', u'prepar', u'second', u'olymp', u'bout']
[u'local', u'govt', u'group', u'back', u'council', u'miner', u'camp']
[u'local', u'hospit', u'link', u'metropolitan']
[u'macdonald', u'run', u'hawk']
[u'face', u'onlin', u'stalk', u'charg']
[u'jail', u'offenc', u'famili']
[u'place', u'good', u'behaviour', u'bond', u'dump']
[u'face', u'bank', u'robberi', u'trial']
[u'court', u'woman', u'death']
[u'market', u'oper', u'sure', u'vacanc', u'fill']
[u'melbourn', u'reservoir', u'half']
[u'men', u'tabl', u'tenni', u'doubl', u'final', u'china']
[u'micro', u'crustacean', u'eat', u'away', u'dengu', u'fever', u'rat']
[u'minist', u'outrag', u'illeg', u'land', u'clear']
[u'mix', u'respons', u'long', u'term', u'jobless', u'fall']
[u'mother', u'kid', u'rescu', u'burn', u'home']
[u'scuffl', u'interrupt', u'rail', u'polici', u'launch']
[u'najaf', u'fight', u'kill', u'iraqi', u'hour']
[u'nambucca', u'hous', u'quota', u'expans', u'moot']
[u'nation', u'institut', u'better', u'age', u'care']
[u'nauru', u'need', u'million', u'avoid', u'econom', u'ruin']
[u'nerimbera', u'get', u'town', u'water']
[u'widen', u'drug', u'cheat']
[u'microsoft', u'secur', u'flaw']
[u'newton', u'march', u'knight', u'loss']
[u'work', u'agreement', u'seek', u'hospit', u'worker']
[u'resolut', u'jetstar', u'flight', u'impass']
[u'nurseri', u'manag', u'fin', u'plant', u'smuggl']
[u'odour', u'caus', u'citi', u'build', u'evacu']
[u'high', u'iraq', u'violenc', u'escal']
[u'high', u'worri', u'wall', u'street']
[u'price', u'forc', u'qanta', u'fare', u'rise']
[u'ombudsman', u'seek', u'phone', u'impass']
[u'opposit', u'wont', u'pursu', u'butler']
[u'pampl', u'place', u'ohio']
[u'patient', u'benefit', u'industri', u'action']
[u'casino', u'takeov', u'wont', u'chang', u'poki']
[u'wrap', u'burswood', u'casino']
[u'peak', u'age', u'group', u'back', u'committe', u'recommend']
[u'phelp', u'track', u'fifth', u'gold']
[u'phoenix', u'book', u'final', u'showdown', u'swift']
[u'plan', u'hamper', u'farmer', u'develop', u'idea']
[u'deni', u'downer', u'damag', u'tie']
[u'polic', u'probe', u'attempt', u'abduct']
[u'polic', u'raid', u'trigger', u'weapon', u'charg']
[u'polic', u'seek', u'help', u'investig', u'rodeo', u'rape']
[u'poll', u'find', u'australian', u'accept', u'asylum']
[u'port', u'close', u'minor', u'premiership']
[u'port', u'kembla', u'recognis', u'bluescop', u'profit', u'boost']
[u'power', u'tougher', u'unit', u'say', u'malthous']
[u'power', u'util', u'contractor', u'strike', u'worker']
[u'school', u'teacher', u'protest', u'problem']
[u'public', u'health', u'council']
[u'qanta', u'hike', u'disgrac']
[u'council', u'unhappi', u'plan']
[u'queensland', u'rail', u'job']
[u'ract', u'urg', u'motorist', u'shop', u'fuel']
[u'rail', u'defect', u'like', u'case', u'pilbara', u'derail']
[u'rainfal', u'predict', u'worri', u'farmer']
[u'kangaroo', u'number', u'plummet', u'hunter']
[u'report', u'critic', u'health', u'shake']
[u'report', u'shatter', u'healthi', u'countri', u'folk', u'myth']
[u'research', u'work', u'perfect', u'macadamia']
[u'resourc', u'lead', u'market', u'posit', u'finish']
[u'rocki', u'cyclist', u'olymp', u'gold']
[u'crucial', u'liber', u'elect', u'howard']
[u'sadr', u'hand', u'mosqu', u'key', u'aid']
[u'sadr', u'order', u'hostag', u'journalist', u'releas']
[u'school', u'traffic', u'marshal']
[u'school', u'uncertainti', u'cost', u'alic', u'teacher', u'union']
[u'secur', u'tight', u'olyroo', u'iraq', u'clash']
[u'share', u'sale', u'allow', u'fruit', u'debt', u'repay']
[u'share', u'sale', u'allow', u'fruit', u'coop', u'debt', u'repay']
[u'shead', u'win', u'dobel', u'prize']
[u'slovak', u'twin', u'retain', u'cano', u'slalom', u'titl']
[u'grog', u'case', u'hold', u'cameraman', u'seek']
[u'smoke', u'relat', u'ill', u'devast']
[u'soldier', u'think', u'shoot', u'brumbi']
[u'south', u'west', u'share', u'road', u'safeti', u'fund']
[u'state', u'fund', u'traffic', u'black', u'spot']
[u'student', u'high', u'tech', u'trial', u'bring', u'result']
[u'studi', u'consid', u'power', u'plant', u'plan']
[u'stunt', u'pilot', u'snag', u'stardust', u'nasa']
[u'submiss', u'roll', u'malle', u'wast', u'dump', u'plan']
[u'sugar', u'mill', u'sustain', u'question']
[u'survey', u'highlight', u'poor', u'agricultur', u'sale']
[u'suspend', u'sentenc', u'ecstasi', u'dealer']
[u'sydney', u'beach', u'volleybal', u'champ', u'head', u'head']
[u'taufik', u'meet', u'shon', u'badminton', u'final']
[u'teach', u'code', u'ethic', u'develop']
[u'teen', u'fight', u'alleg', u'attack']
[u'teen', u'machin', u'lift', u'dope', u'gloom']
[u'toddler', u'die', u'consider', u'time', u'inquest']
[u'tourki', u'make', u'splash', u'platform', u'preliminari']
[u'tredrea', u'play', u'magpi']
[u'trial', u'date', u'falconio', u'murder', u'accus']
[u'tribe', u'great', u'excus', u'poor', u'math', u'skill']
[u'dead', u'hurt', u'tanker', u'smash']
[u'kill', u'freeway', u'accid']
[u'marin', u'kill', u'iraq', u'anbar', u'provinc']
[u'wound', u'kathmandu', u'bomb', u'blast']
[u'union', u'air', u'concern']
[u'union', u'back', u'public', u'servic', u'reviv', u'plan']
[u'union', u'healthscop', u'agre', u'trial', u'emerg']
[u'scotch', u'rumour', u'cut', u'asset', u'sale']
[u'trio', u'ottey', u'sprint', u'heat']
[u'veteran', u'rememb', u'kokoda', u'ordeal']
[u'victori', u'give', u'softbal', u'shoot', u'medal']
[u'virgin', u'blue', u'reject', u'flight', u'attend']
[u'wallabi', u'anxious', u'nation', u'decid']
[u'opposit', u'fear', u'ningaloo', u'coast', u'tourism', u'plan']
[u'word', u'continu', u'medic', u'clinic', u'promis']
[u'highest', u'pay']
[u'watanab', u'star', u'memoir', u'geisha']
[u'wenger', u'close', u'clough', u'record']
[u'woman', u'accus', u'surgeri', u'sham']
[u'woodgat', u'madrid', u'medic', u'report']
[u'work', u'move', u'ahead', u'stockland', u'centr']
[u'workshop', u'focus', u'plantat', u'strategi']
[u'work', u'start', u'year', u'care', u'line']
[u'world', u'champion', u'tikhon', u'head', u'men', u'hammer', u'qualifi']
[u'aborigin', u'trust', u'fund', u'consult', u'success']
[u'nurseri', u'warn', u'water', u'restrict']
[u'promot', u'cannabi', u'chang']
[u'age', u'care', u'fund', u'unresolv', u'communiti', u'servic']
[u'ainsli', u'win', u'second', u'olymp', u'yacht', u'gold']
[u'alpacca', u'confer', u'draw', u'hobart']
[u'american', u'hold', u'german', u'charg', u'shoot']
[u'american', u'men', u'gold']
[u'aussi', u'rower', u'gold']
[u'aussi', u'volleybal', u'trump']
[u'aussi', u'wheeler', u'heptathlon', u'content']
[u'australia', u'bundl', u'archeri', u'team', u'competit']
[u'author', u'lose', u'plot', u'summerhous', u'theft']
[u'backstrok', u'coventri', u'win', u'gold', u'zimbabw']
[u'balogh', u'civic', u'recept', u'queanbeyan']
[u'bangladesh', u'bomb', u'caus', u'chao', u'dhaka']
[u'basebal', u'stay', u'cours']
[u'bird', u'expert', u'china', u'clue', u'pig']
[u'blanck', u'lead', u'aussi', u'sail', u'pack']
[u'blast', u'hear', u'najaf']
[u'blue', u'upset', u'demon']
[u'bomb', u'help', u'enforc', u'blockad', u'nepales', u'maoist']
[u'boomer', u'sink', u'defeat', u'beat']
[u'briton', u'kill', u'thailand', u'south']
[u'bronco', u'hold', u'tiger']
[u'bulldog', u'break', u'lose', u'streak']
[u'burk', u'readi']
[u'burk', u'say', u'return', u'australia']
[u'carr', u'defend', u'stanc', u'contempt', u'hear']
[u'cat', u'blow', u'chanc', u'secur', u'home', u'final']
[u'cheat', u'contest', u'elect']
[u'checa', u'grab', u'provision', u'pole', u'czech', u'grand', u'prix']
[u'china', u'beat', u'second', u'tabl', u'tenni', u'gold']
[u'china', u'zhang', u'meet', u'north', u'korean', u'gold']
[u'chines', u'women', u'ralli', u'badminton', u'gold']
[u'confus', u'reign', u'strife', u'tear', u'najaf']
[u'confus', u'surround', u'seizur', u'iraqi', u'mosqu']
[u'cook', u'win', u'aussi', u'beach', u'battl']
[u'council', u'ask', u'lock', u'mainten', u'fund']
[u'court', u'delay', u'rule', u'hezbollah']
[u'cuban', u'basebal', u'coach', u'thrive', u'seat']
[u'darwin', u'astronom', u'advantag', u'moon', u'phase']
[u'davenport', u'reach', u'semi', u'cincinnati', u'tenni']
[u'derwent', u'gust', u'boati', u'bath']
[u'desert', u'festiv', u'attract', u'nation']
[u'dever', u'block', u'squeez', u'metr', u'semi']
[u'doubt', u'cast', u'iraqi', u'govt', u'shrine', u'claim']
[u'top', u'holidaymak']
[u'eel', u'strong', u'warrior']
[u'egan', u'step', u'indigen', u'marriag', u'stoush']
[u'elbow', u'injuri', u'sidelin', u'tendulkar']
[u'elect', u'focus', u'futur', u'tell', u'parti']
[u'offici', u'buy', u'teenag', u'prostitut', u'booz']
[u'farmer', u'voic', u'concern', u'locust', u'control']
[u'field', u'wide', u'open', u'women', u'final']
[u'gut', u'derelict', u'hous']
[u'franc', u'win', u'gold', u'kayak']
[u'french', u'shock', u'favourit', u'row', u'gold']
[u'georgia', u'announc', u'troop', u'pull', u'rebel', u'region']
[u'georgian', u'troop', u'leav', u'south', u'ossetia', u'amid', u'hope']
[u'german', u'polic', u'detain', u'nazi', u'hess', u'march']
[u'german', u'win', u'singl', u'scull', u'gold']
[u'germani', u'take', u'lead', u'team', u'dressag']
[u'germani', u'dressag', u'team', u'gold']
[u'germani', u'win', u'women', u'trampolin', u'gold']
[u'ginn', u'tomkin', u'row', u'golden', u'boy']
[u'glorious', u'bekel', u'end', u'gebrselassi', u'olymp', u'reign']
[u'goal', u'india', u'knock', u'hockey']
[u'govt', u'reject', u'critic', u'public', u'hous']
[u'govt', u'taiwan', u'comment', u'unhelp', u'green', u'leader']
[u'greek', u'athlet', u'fail', u'drug', u'test']
[u'greek', u'drug', u'squad', u'raid', u'sprinter', u'coach', u'premis']
[u'greek', u'olymp', u'team', u'chief', u'offer', u'resign']
[u'greek', u'weightlift', u'sampl', u'posit', u'offici']
[u'green', u'urg', u'feder', u'buyback', u'daintre', u'properti']
[u'hall', u'retain', u'metr', u'freestyl', u'titl']
[u'hamm', u'gold', u'score', u'error']
[u'harmison', u'take', u'england', u'near', u'clean', u'sweep']
[u'health', u'research', u'invalu', u'canberra', u'say']
[u'hewitt', u'close', u'agassi', u'rematch']
[u'hewitt', u'step', u'closer', u'rematch', u'agassi']
[u'hid', u'consid', u'butler', u'resign', u'option']
[u'holm', u'court', u'sell', u'final', u'stake', u'cattl', u'compani']
[u'hospit', u'chief', u'foreshadow', u'improv']
[u'hungari', u'fazeka', u'lead', u'discus', u'qualifi']
[u'indonesia', u'bronz', u'men', u'singl', u'badminton']
[u'iraq', u'soccer', u'player', u'slam', u'bush', u'campaign']
[u'irish', u'archaeologist', u'centuri', u'vike', u'bodi']
[u'jackson', u'look', u'home', u'liechtenstein', u'report']
[u'jail', u'incid', u'expect', u'minist', u'say']
[u'japan', u'boost', u'record', u'gold', u'haul', u'judo']
[u'joint', u'naval', u'exercis', u'underway', u'philippin']
[u'kelli', u'miss', u'time', u'trial', u'medal']
[u'kerri', u'complain', u'record']
[u'korean', u'gymnast', u'appeal', u'men', u'round', u'result']
[u'labor', u'accus', u'lie', u'payrol']
[u'labor', u'criticis', u'ambassador', u'comment']
[u'latham', u'leav', u'hospit']
[u'latham', u'releas', u'hospit']
[u'launceston', u'landmark', u'facelift']
[u'lawyer', u'carr', u'contempt', u'hear']
[u'lenton', u'englesman', u'free', u'final']
[u'lewi', u'fail', u'qualifi', u'quest']
[u'massu', u'lead', u'chilean', u'quest', u'year', u'wait']
[u'mcgee', u'race', u'gold']
[u'mear', u'time', u'trial', u'gold', u'triumph']
[u'mear', u'world']
[u'mear', u'win', u'cycl', u'gold', u'australia']
[u'mental', u'patient', u'right', u'privaci', u'scrutinis']
[u'minist', u'oppos', u'industri', u'racecours']
[u'minist', u'address', u'indigen', u'foetal', u'alcohol']
[u'molik', u'fall', u'henin', u'set', u'gold', u'standard']
[u'urg', u'scrutini', u'anim', u'cruelti', u'charg']
[u'mysteri', u'surround', u'prison', u'stand']
[u'najaf', u'mosqu', u'stand', u'unresolv']
[u'support', u'centr', u'open', u'brisban']
[u'norway', u'tuft', u'win', u'olymp', u'singl', u'gold']
[u'twin', u'doubl', u'scull', u'gold']
[u'odumb', u'deni', u'appeal', u'year', u'suspens']
[u'price', u'drop', u'barrel']
[u'olyroo', u'fit', u'trainer', u'suspend', u'offens']
[u'opal', u'continu', u'unbeaten']
[u'kill', u'malaria', u'parasit']
[u'panther', u'trounc', u'cowboy']
[u'phelp', u'make', u'gold', u'triumph']
[u'phelp', u'pull', u'medley', u'relay', u'final']
[u'photo', u'finish', u'give', u'pinsent', u'fourth', u'olymp', u'gold']
[u'pittman', u'clear', u'hurdl']
[u'pittman', u'semi']
[u'plastic', u'user', u'tell']
[u'continu', u'campaign']
[u'dismiss', u'labor', u'anti', u'american', u'rhetor']
[u'polic', u'wing', u'help', u'fight', u'perth', u'burglari']
[u'polic', u'appeal', u'inform', u'freeway', u'smash']
[u'polic', u'detain', u'russian', u'tri', u'enter', u'olymp']
[u'polic', u'hunt', u'melbourn', u'stab']
[u'polic', u'seek', u'inform', u'sydney', u'shoot']
[u'polic', u'seek', u'wit', u'fatal', u'crash']
[u'polish', u'soldier', u'kill', u'iraq', u'bomb', u'attack']
[u'queensland', u'rail', u'worri', u'freight', u'loss']
[u'rebel', u'kill', u'aceh', u'clash']
[u'cross', u'appeal', u'donor']
[u'rockhampton', u'celebr', u'mear', u'win', u'gold']
[u'romanian', u'rower', u'retain', u'women', u'pair', u'titl']
[u'ross', u'go', u'fast', u'heat']
[u'russia', u'lifter', u'drug']
[u'russian', u'boxer', u'winner', u'littl', u'khan', u'win']
[u'russia', u'retain', u'women', u'team', u'epe', u'titl']
[u'schumann', u'snare', u'shoot', u'gold', u'germani']
[u'seafar', u'father', u'rescu', u'twice']
[u'shibata', u'pip', u'manaudou', u'free', u'crown']
[u'shibata', u'win', u'women', u'freestyl']
[u'korean', u'deni', u'china', u'women', u'doubl', u'clean', u'sweep']
[u'softbal', u'book', u'clash']
[u'south', u'korean', u'pair', u'men', u'doubl', u'gold']
[u'south', u'korea', u'win', u'women', u'team', u'gold', u'archeri']
[u'stingray', u'water', u'polo', u'semi']
[u'stop', u'call', u'wacko', u'say', u'jackson']
[u'studi', u'reveal', u'high', u'indigen', u'cancer', u'rat']
[u'suspect', u'rebel', u'kill', u'policeman', u'nepal', u'capit']
[u'swan', u'cement', u'spot']
[u'swede', u'matilda', u'athen', u'dream']
[u'syrian', u'algerian', u'arrest', u'madrid', u'train', u'bomb']
[u'taiwan', u'launch', u'campaign']
[u'tare', u'council', u'rais', u'aborigin', u'flag']
[u'tasrail', u'hop', u'pulp']
[u'tourki', u'women', u'platform']
[u'truck', u'driver', u'die', u'highway', u'crash']
[u'charg', u'murder']
[u'charg', u'flinder', u'street', u'stab']
[u'arrest', u'hama', u'financ', u'case']
[u'hurdler', u'dedic', u'gold', u'disgrac', u'girlfriend']
[u'market', u'gain', u'price', u'retreat']
[u'name', u'head', u'pacif', u'command']
[u'press', u'bow', u'phelpss', u'golden', u'sportsmanship']
[u'women', u'basketbal', u'tough', u'test', u'spain']
[u'uzbek', u'indian', u'posit', u'test', u'game']
[u'vaa', u'inspir', u'lanka', u'wicket']
[u'motorist', u'warn', u'record', u'petrol', u'price']
[u'investig', u'prison', u'stand']
[u'woman', u'die', u'north', u'east', u'smash']
[u'woman', u'save', u'newcastl', u'hous']
[u'women', u'prison', u'group', u'deni', u'strip', u'search', u'data']
[u'woodgat', u'complet', u'england', u'trio', u'real', u'madrid']
[u'wood', u'keep', u'rival', u'cink', u'lead']
[u'age', u'abus', u'rise', u'say', u'chariti']
[u'airlin', u'passeng', u'suffer', u'food', u'poison']
[u'alcohol', u'inhal', u'cut', u'mixer']
[u'argentina', u'secur', u'spot', u'basketbal', u'quarter', u'final']
[u'arm', u'robber', u'steal', u'scream']
[u'arson', u'attack', u'jewish', u'centr', u'pari']
[u'asia', u'generat', u'fight', u'tabl', u'tenni', u'gold']
[u'athen', u'flop', u'ullrich', u'pull', u'zurich', u'world']
[u'audit', u'confirm', u'chavez', u'venezuela']
[u'aussi', u'cyclist', u'miss', u'team', u'sprint', u'medal']
[u'aussi', u'foursom', u'snare', u'row', u'silver']
[u'aussi', u'grab', u'row', u'eight', u'bronz']
[u'aussi', u'fade', u'fourth', u'women', u'doubl', u'scull']
[u'aussi', u'shark']
[u'aussi', u'semi', u'final', u'furious', u'india', u'knock']
[u'aussi', u'sizzl', u'team', u'pursuit', u'qualifi']
[u'aussi', u'women', u'world']
[u'australia', u'basebal', u'medal', u'round']
[u'australia', u'miss', u'medal', u'women', u'quad']
[u'australian', u'forg', u'olymp', u'ident', u'card']
[u'bayley', u'mear', u'lead', u'sprint', u'charg']
[u'beazley', u'warn', u'taiwan', u'specul']
[u'blair', u'wont', u'pick', u'bush', u'honour', u'person', u'report']
[u'britain', u'lewi', u'heptathlon']
[u'brogden', u'flag', u'orang', u'grove']
[u'busi', u'call', u'urgent', u'upgrad', u'convent']
[u'bomb', u'target', u'offici', u'iraq']
[u'sale', u'race', u'ahead']
[u'chelsea', u'target']
[u'chilean', u'pair', u'countri', u'gold']
[u'china', u'celebr', u'deng', u'xiaop', u'achiev']
[u'cink', u'take', u'command', u'lead', u'wood']
[u'concern', u'mount', u'report', u'miss', u'iraq']
[u'welcom', u'water', u'effici', u'label']
[u'critic', u'slam', u'rule', u'guantanamo', u'trial']
[u'darfur', u'war', u'parti', u'meet', u'crucial', u'week']
[u'davenport', u'reach', u'cincinnati', u'final']
[u'democrat', u'slate', u'govt', u'famili', u'polici']
[u'doubl', u'seek', u'lebedeva', u'eas']
[u'drink', u'drive', u'statist', u'target', u'irrespons']
[u'eagl', u'leap']
[u'road', u'iraq', u'pint', u'size', u'fighter']
[u'england', u'complet', u'windi', u'whitewash']
[u'euphoria', u'iraq', u'despair', u'olyroo']
[u'fair', u'trade', u'name', u'dodgi', u'repairman']
[u'close', u'litchfield', u'road']
[u'forestri', u'union', u'threaten', u'action', u'disput']
[u'forsyth', u'carri', u'box', u'hop']
[u'gibernau', u'storm', u'pole', u'czech', u'grand', u'prix']
[u'govt', u'consid', u'benchmark', u'polic', u'respons', u'time']
[u'govt', u'reveal', u'blackout', u'compo', u'plan']
[u'govt', u'urg', u'smoke', u'pub']
[u'greek', u'legend', u'dima', u'pip', u'fourth', u'straight', u'gold']
[u'greek', u'lifter', u'strip', u'medal']
[u'green', u'pip', u'powel', u'heat']
[u'groceri', u'avail', u'despit', u'mall', u'blaze']
[u'hackett', u'push', u'like']
[u'hackett', u'star', u'golden', u'night', u'australia']
[u'hackett', u'win', u'swim', u'marathon']
[u'harmison', u'top', u'bowler', u'rank']
[u'hawk', u'cellar', u'dweller', u'duel']
[u'heartbreak', u'arron', u'ottey', u'miss']
[u'help', u'hand', u'hear', u'impair', u'bub']
[u'henin', u'hardenn', u'win', u'women', u'tenni', u'gold']
[u'heritag', u'group', u'oppos', u'perth', u'apart', u'block']
[u'hewitt', u'washington', u'final']
[u'hick', u'famili', u'visit', u'ahead', u'militari', u'hear']
[u'hockeyroo', u'troubl', u'germani', u'semi']
[u'germani', u'lose', u'equestrian', u'gold']
[u'human', u'remain', u'near', u'perth']
[u'indonesia', u'storm', u'men', u'badminton', u'gold']
[u'iraq', u'clash', u'kill', u'handov', u'talk', u'stall']
[u'iraq', u'clear', u'iran', u'aid', u'sadr', u'upris']
[u'japan', u'elimin', u'china', u'softbal']
[u'japan', u'say', u'slowdown', u'temporari', u'warn']
[u'jeannet', u'hold', u'firm', u'send', u'franc']
[u'labor', u'intensifi', u'attack', u'credibl']
[u'labor', u'promis', u'intellig', u'inquiri']
[u'latham', u'ill', u'setback']
[u'lawyer', u'question', u'pinochet', u'fortun']
[u'lenton', u'win', u'bronz', u'splash', u'dash']
[u'liber', u'target', u'independ', u'poll']
[u'lion', u'thump', u'saint', u'second']
[u'liquor', u'licens', u'complic', u'parliament', u'function']
[u'mactier', u'race', u'gold']
[u'arrest', u'melbourn', u'stab']
[u'charg', u'home', u'invas']
[u'injur', u'homemad', u'bomb', u'blast']
[u'kill', u'perth', u'industri', u'accid']
[u'kill', u'north', u'properti']
[u'undergo', u'surgeri', u'bomb', u'explod']
[u'mcgee', u'win', u'cycl', u'silver']
[u'militia', u'najaf', u'mosqu', u'crack', u'emerg']
[u'mix', u'result', u'aussi', u'beach', u'volleybal']
[u'molik', u'claim', u'bronz', u'australia']
[u'molik', u'make', u'olymp', u'tenni', u'histori']
[u'fight', u'erupt', u'nepal']
[u'staff', u'need', u'prison', u'say', u'union']
[u'violenc', u'ahead', u'chechen', u'elect']
[u'mozambiqu', u'mutola', u'show', u'class', u'women']
[u'nation', u'trust', u'member', u'grassroot', u'focus']
[u'nesterenko', u'win', u'sprint', u'gold', u'belarus']
[u'look', u'develop', u'worker', u'degre']
[u'polic', u'prepar', u'azaria', u'report']
[u'export', u'southern', u'iraq', u'normal']
[u'price', u'fall', u'say']
[u'opal', u'clinch', u'spot']
[u'pacif', u'island', u'tour', u'end', u'debt']
[u'pakistan', u'foil', u'qaeda', u'plot']
[u'pakistan', u'forc', u'attack', u'suspect', u'qaeda', u'hide', u'out']
[u'pakistan', u'spin', u'india', u'defeat']
[u'parent', u'seek', u'fund', u'boost', u'learn', u'program']
[u'petrol', u'top', u'litr', u'brisban']
[u'picnic', u'prompt', u'forestri', u'censorship']
[u'pigeon', u'lover', u'hope', u'foul', u'tast', u'save', u'bird']
[u'plastic', u'famin', u'success']
[u'plenti', u'snowfal', u'result', u'wild', u'problem']
[u'poland', u'retain', u'lightweight', u'doubl', u'titl']
[u'polic', u'investig', u'sydney', u'board', u'hous']
[u'polic', u'seek', u'driver']
[u'polic', u'seek', u'identifi', u'remain']
[u'polic', u'seiz', u'cannabi', u'cash', u'darwin', u'home']
[u'polic', u'warn', u'sailor', u'wild', u'weather']
[u'pont', u'eager', u'dutch', u'test']
[u'power', u'firm', u'boost', u'staff', u'number']
[u'prison', u'charg', u'attempt', u'murder']
[u'prison', u'guard', u'recov', u'stab', u'incid']
[u'prison', u'stab', u'investig', u'continu']
[u'privat', u'health', u'rebat', u'boost']
[u'putin', u'visit', u'chechnya', u'ahead', u'elect']
[u'queanbeyan', u'approv', u'apart', u'plan']
[u'racehors', u'trainer', u'induct', u'hall', u'fame']
[u'racetrack', u'accid', u'injur', u'children']
[u'rail', u'chief', u'promis', u'sack']
[u'rare', u'komodo', u'dragon', u'die', u'love', u'plung']
[u'record', u'relay', u'net', u'phelp', u'eighth', u'medal']
[u'retir', u'club', u'chairman', u'criticis', u'poki']
[u'riot', u'follow', u'dead', u'bomb', u'bangladesh']
[u'romania', u'retain', u'women', u'eight', u'row', u'titl']
[u'rooster', u'down', u'raider']
[u'rural', u'economi', u'high', u'price']
[u'russia', u'stun', u'favourit', u'men', u'quad']
[u'scientist', u'warn', u'beach', u'goer', u'sand', u'danger']
[u'eagl', u'avoid', u'wooden', u'spoon']
[u'shop', u'centr', u'leav', u'damag']
[u'silver', u'bronz', u'complet', u'row', u'program']
[u'kill', u'aceh', u'violenc']
[u'korea', u'win', u'rare', u'tabl', u'tenni', u'bronz']
[u'korea', u'appeal', u'hamm', u'gold']
[u'south', u'korean', u'team', u'archeri', u'gold']
[u'spark', u'kluft', u'take', u'olymp', u'heptathlon', u'gold']
[u'springbok', u'snare', u'nation', u'trophi']
[u'step', u'shadow']
[u'storm', u'rain', u'dog', u'parad']
[u'studi', u'look', u'balanc', u'coastal', u'develop']
[u'tang', u'win', u'china', u'fifth', u'olymp', u'weightlift', u'gold']
[u'foodi', u'tast', u'sweet', u'success']
[u'thoma', u'happi', u'leav', u'high', u'note']
[u'bomb', u'rock', u'thailand', u'troubl', u'south']
[u'ukrainian', u'win', u'men', u'trampolin', u'gold']
[u'ulmer', u'pip', u'aussi', u'mactier', u'pursuit']
[u'expert', u'demand', u'access', u'prison']
[u'knock', u'volleybal']
[u'launch', u'assault', u'rebel', u'najaf']
[u'softbal', u'outclass', u'australia']
[u'soldier', u'face', u'hear', u'alleg', u'prison']
[u'veteran', u'honour', u'parramatta', u'river', u'area']
[u'vietnam', u'veteran', u'come', u'kerri', u'defenc']
[u'seek', u'tougher', u'law', u'offend']
[u'water', u'util', u'bemoan', u'water', u'restrict']
[u'wiggin', u'salut', u'beat', u'mcgee']
[u'woman', u'escap', u'hous']
[u'wrong', u'target', u'drama', u'cost', u'shoot', u'gold']
[u'veteran', u'die', u'age']
[u'zhang', u'gold', u'bring', u'china']
[u'kill', u'venezuelan', u'militari', u'plane', u'crash']
[u'ghraib', u'abus', u'hear', u'begin']
[u'opposit', u'promis', u'greater', u'architectur']
[u'debat', u'auditor', u'general', u'role', u'chang']
[u'adler', u'appeal', u'stay', u'crimin', u'proceed']
[u'adult', u'industri', u'review', u'consid', u'regul']
[u'defend', u'propos', u'power', u'price', u'increas']
[u'promis', u'good', u'faith', u'enterpris', u'bargain']
[u'audit', u'reveal', u'increas', u'workcov', u'claim']
[u'aussi', u'hammer', u'thrower']
[u'aussi', u'shark', u'draw', u'germani']
[u'austereo', u'turn', u'profit', u'volum']
[u'aust', u'ignor', u'indo', u'fijian', u'cane', u'farmer', u'plight']
[u'aust', u'symbol', u'fray', u'costello', u'say']
[u'baggaley', u'semi']
[u'basebal', u'despit', u'canadian', u'thrash']
[u'bear', u'prove', u'strong', u'wynnum']
[u'workplac', u'safeti', u'inquiri', u'begin']
[u'organis', u'schooli']
[u'suspens', u'store', u'newton', u'forearm']
[u'billabong', u'sale', u'splash']
[u'blaze', u'destroy', u'berri', u'supermarket']
[u'boomer', u'oust', u'olymp']
[u'brad', u'thorn', u'return', u'bronco']
[u'build', u'applic', u'popul']
[u'bulgaria', u'appeal', u'ring', u'final', u'result']
[u'busi', u'urg', u'bolster', u'market', u'plan']
[u'oper', u'upbeat', u'break', u'hill', u'adelaid']
[u'region', u'polic']
[u'carinda', u'suffer', u'coli', u'threat']
[u'cessnock', u'council', u'happi', u'court']
[u'chilean', u'alchemist', u'turn', u'dream', u'gold']
[u'china', u'confirm', u'bird', u'virus', u'pig']
[u'china', u'smite', u'golden', u'tenni', u'angel']
[u'cink', u'eas', u'shoot']
[u'classroom', u'plan', u'offer', u'altern']
[u'coalit', u'leader', u'tour', u'north', u'coast']
[u'collaps', u'rower', u'stun', u'team', u'mat', u'reaction']
[u'collaps', u'rower', u'stun', u'team', u'mat', u'reaction']
[u'commission', u'reject', u'call', u'polic', u'respons']
[u'convict', u'murder', u'compens', u'hurt', u'feel']
[u'council', u'worker', u'protest']
[u'cyclist', u'strike', u'gold', u'row', u'controversi']
[u'darfur', u'peac', u'talk', u'begin']
[u'davenport', u'win', u'cincinnati']
[u'death', u'spark', u'polic', u'road', u'toll', u'fear']
[u'deliri', u'swede', u'creat', u'home', u'home']
[u'diamond', u'firm', u'board', u'shake']
[u'digger', u'famili', u'accept', u'state', u'funer']
[u'documentari', u'obsess', u'extrem', u'hobbi']
[u'downer', u'defend', u'terror', u'warn']
[u'driver', u'tip', u'feel', u'higher', u'petrol', u'price']
[u'drought', u'spark', u'cattl', u'sell']
[u'dubbo', u'water', u'spark', u'concern']
[u'elit', u'squad', u'safeguard', u'region', u'airport']
[u'elliott', u'continu', u'bankruptci', u'fight']
[u'energi', u'crisi', u'lead', u'cabinet', u'reshuffl']
[u'exhaust', u'massu', u'outlast', u'fish', u'gold']
[u'expedit', u'shed', u'light', u'undiscov', u'reef']
[u'explos', u'rock', u'najaf']
[u'feder', u'fund', u'local', u'teen']
[u'fiction', u'prize', u'organis', u'controversi', u'free']
[u'fiji', u'court', u'reject', u'vice', u'presid', u'bail', u'applic']
[u'stick', u'return', u'tradit', u'owner']
[u'firm', u'secur', u'softwood', u'site']
[u'flatley', u'roger', u'rejoin', u'wallabi']
[u'forestri', u'tasmania', u'accus', u'log', u'trial']
[u'policeman', u'jail', u'brothel', u'theft']
[u'tasmanian', u'premier', u'angus', u'bethun', u'die']
[u'forsyth', u'font', u'cruis', u'heavyweight', u'semi']
[u'tribun']
[u'bait', u'target', u'east', u'coast']
[u'freak', u'insid', u'stun', u'produc']
[u'french', u'gymnast', u'take', u'khorkina', u'asymmetr', u'crown']
[u'french', u'epe', u'team', u'gold']
[u'fresh', u'call', u'recognit', u'tradit']
[u'gatlin', u'gun', u'rival', u'titl']
[u'gatlin', u'win', u'men', u'sprint']
[u'good', u'start', u'lake', u'creek', u'product']
[u'govt', u'stand', u'firm', u'orang', u'grove', u'retail', u'outlet']
[u'govt', u'fund', u'airport', u'secur', u'boost']
[u'greek', u'guard', u'kill', u'prank', u'go', u'wrong']
[u'greek', u'tampako', u'lord', u'ring']
[u'hackett', u'power', u'home', u'gold']
[u'haddin', u'replac', u'gilli', u'buchanan']
[u'hamm', u'vow', u'gold', u'ask']
[u'hayden', u'schammer', u'doubt', u'bell', u'play']
[u'health', u'insur', u'rebat', u'bribe', u'abbott']
[u'heritag', u'build', u'council', u'discuss']
[u'hewitt', u'move', u'second', u'round']
[u'hewitt', u'stop', u'muller', u'washington', u'titl']
[u'hewitt', u'win', u'washington', u'titl']
[u'hickss', u'lawyer', u'confid', u'fair', u'trial']
[u'higher', u'charg', u'perri', u'shire', u'ratepay']
[u'hockeyroo', u'olymp', u'reign', u'end', u'tear']
[u'honour', u'tasmanian', u'hero']
[u'hope', u'allianc', u'boost', u'reef', u'fund']
[u'hospit', u'push', u'health', u'specialist']
[u'hunter', u'ambul', u'worker', u'continu', u'protest']
[u'illeg', u'fishermen', u'free', u'good', u'behaviour', u'bond']
[u'indonesia', u'arrest', u'suicid', u'squad', u'suspect']
[u'indoor', u'champion', u'take', u'high', u'jump', u'titl']
[u'injuri', u'end', u'dvorak', u'decathlon', u'dream']
[u'inquest', u'begin', u'toddler', u'soccer', u'death']
[u'inquest', u'launch', u'toddler', u'goalpost', u'death']
[u'inspir', u'manus', u'elimin', u'french', u'world', u'champion']
[u'investig', u'return', u'fatal', u'accid', u'scene']
[u'investor', u'confid', u'return', u'price', u'eas']
[u'isra', u'sourc', u'reveal', u'west', u'bank', u'expans']
[u'whistleblow', u'admit', u'gatlin', u'coach']
[u'jazz', u'audienc', u'boost', u'festiv']
[u'korean', u'lawmak', u'demand', u'gymnast', u'award']
[u'labor', u'accus', u'health', u'backflip']
[u'labor', u'mull', u'qanta', u'ownership']
[u'latham', u'work', u'feel', u'percent']
[u'latham', u'reject', u'privat', u'health', u'rebat', u'increas']
[u'livestock', u'transport', u'fuel', u'price', u'pressur']
[u'lobbi', u'group', u'call', u'halt', u'film', u'archiv']
[u'local', u'govt', u'review', u'consid', u'routin']
[u'lowli', u'egypt', u'spain', u'sweat', u'semi', u'final', u'berth']
[u'magistr', u'prescrib', u'jail', u'pretend', u'doctor']
[u'await', u'sentenc', u'mother', u'stab']
[u'charg', u'stab']
[u'court', u'facto', u'stab']
[u'court', u'home', u'invas']
[u'martin', u'apologis', u'anim', u'cruelti', u'case']
[u'matthew', u'beat', u'defend', u'champ', u'lpga', u'play']
[u'mayor', u'cancel', u'meet', u'babi', u'concern']
[u'medic', u'warn', u'bewar', u'fake']
[u'face', u'court', u'seven', u'year', u'murder']
[u'miner', u'group', u'upbeat', u'address', u'skill']
[u'mitcham', u'store', u'owner', u'stock']
[u'mitsubishi', u'worker', u'urg', u'accept', u'redund']
[u'mooroopna', u'polic', u'spotlight']
[u'moroccan', u'lead', u'field', u'final']
[u'mother', u'die', u'yackandandah', u'wodonga', u'crash']
[u'odd', u'indigen', u'child', u'abus', u'claim']
[u'murray', u'start', u'open', u'nativ', u'fish']
[u'mutola', u'face', u'stern', u'challeng']
[u'nation', u'fight', u'save', u'lachlan', u'elector']
[u'nation', u'outlin', u'driver', u'educ', u'plan']
[u'nation', u'trust', u'member', u'unhappi', u'council']
[u'neitz', u'injuri', u'add', u'demon', u'woe']
[u'newberi', u'break', u'year', u'gold', u'drought']
[u'newberi', u'mactier', u'medal']
[u'newberi', u'mactier', u'medal']
[u'newberi', u'athen', u'plung', u'pay', u'gold']
[u'newcastl', u'celebr', u'divers']
[u'technolog', u'help', u'polic', u'combat', u'crime']
[u'tourism', u'model', u'includ', u'outsid', u'help']
[u'tunnel', u'justifi', u'toll', u'racv']
[u'children', u'detent', u'costello']
[u'sight', u'tenix', u'disput']
[u'excus', u'saint', u'loss', u'gabba']
[u'northern', u'doctor', u'seek', u'mission']
[u'crime', u'figur', u'year']
[u'student', u'benefit', u'art', u'grant']
[u'grant', u'help', u'fund', u'desert', u'research']
[u'nuclear', u'talk', u'doubt', u'north', u'korea', u'lash']
[u'wool', u'cross', u'tasman']
[u'ogradi', u'keep', u'fourth', u'flecha', u'win', u'zurich', u'world']
[u'olsson', u'land', u'tripl', u'jump', u'gold']
[u'opposit', u'claim', u'welfar', u'debt', u'rise']
[u'opposit', u'move', u'total', u'club', u'smoke']
[u'orica', u'expand', u'gladston', u'plant']
[u'pair', u'court', u'drug', u'face', u'charg']
[u'panther', u'thrash', u'deplet', u'cowboy']
[u'paramed', u'petit', u'oppos', u'mica', u'transfer']
[u'parent', u'celebr', u'mear', u'gold', u'medal']
[u'parent', u'urg', u'educ', u'children', u'bushfir']
[u'pipelin', u'group', u'welcom', u'appoint']
[u'pittman', u'confid', u'hurdl', u'final', u'loom']
[u'pittman', u'confid', u'hurdl', u'final', u'loom']
[u'pittman', u'storm', u'final']
[u'polic', u'happi', u'hoon', u'campaign']
[u'polic', u'hunt', u'motiv', u'robber', u'scream', u'theft']
[u'polic', u'identifi', u'miss', u'pension', u'remain']
[u'polic', u'offic', u'injur', u'glass', u'attack']
[u'polic', u'probe', u'offer', u'welfar', u'scam']
[u'polic', u'search', u'driver']
[u'post', u'mortem', u'hous', u'victim']
[u'powel', u'announc', u'retir']
[u'power', u'station', u'worker', u'hold', u'return', u'work']
[u'public', u'dark', u'blackout', u'compo', u'beatti']
[u'push', u'better', u'wide', u'burnett']
[u'qanta', u'british', u'airway', u'price', u'fix', u'agreement']
[u'qanta', u'like', u'stay', u'australian', u'control']
[u'radcliff', u'injur', u'british', u'team', u'say']
[u'region', u'rail', u'plan', u'trigger', u'fear']
[u'report', u'fail', u'silenc', u'butler', u'furor']
[u'increas', u'fuel', u'surcharg']
[u'riverfront', u'area', u'treat', u'septic', u'water']
[u'rower', u'exhaust', u'carri', u'team', u'boss']
[u'russian', u'shoot', u'putter', u'strip', u'gold']
[u'sadr', u'broker', u'journalist', u'releas']
[u'savill', u'win', u'walk', u'bronz']
[u'school', u'face', u'suit', u'alleg', u'abus']
[u'senior', u'muslim', u'figur', u'iraqi', u'insurg']
[u'shewfelt', u'tumbl', u'men', u'floor', u'gold']
[u'shoot', u'putter', u'korzhanenko', u'strip', u'gold']
[u'singapor', u'recognis', u'independ', u'taiwan']
[u'somalian', u'parliament', u'swear']
[u'state', u'funer', u'plan', u'veteran']
[u'strike', u'power', u'worker', u'appear', u'defi', u'order']
[u'stronger', u'high', u'produc', u'rain']
[u'strong', u'sale', u'push', u'woolworth', u'profit', u'higher']
[u'studi', u'focus', u'busi', u'retent']
[u'studi', u'identifi', u'help', u'avail', u'problem']
[u'suspici', u'see', u'near', u'drug', u'theft', u'site', u'court']
[u'sydney', u'injur', u'attack']
[u'synthet', u'vaccin', u'target']
[u'talk', u'continu', u'chief', u'minist', u'anim', u'cruelti']
[u'tamworth', u'water', u'rise']
[u'tare', u'stage', u'hydroplan', u'race']
[u'taxi', u'driver', u'tour', u'guid', u'role']
[u'telstra', u'call', u'price', u'cap']
[u'telstra', u'price', u'control', u'review']
[u'tender', u'seek', u'sydney', u'water', u'headquart']
[u'thorn', u'return', u'bronco']
[u'thrill', u'record', u'equal', u'gunner']
[u'tragic', u'weekend', u'darl', u'down', u'road']
[u'tram', u'plan', u'oppon', u'seek', u'council', u'talk']
[u'tree', u'clear', u'upset', u'tour', u'oper']
[u'tree', u'planter', u'need', u'melbourn', u'game']
[u'expans', u'help', u'lift', u'sonic', u'profit']
[u'union', u'air', u'townsvill', u'stab', u'concern']
[u'union', u'threaten', u'industri', u'unrest', u'claim']
[u'warplan', u'hit', u'najaf', u'rebel', u'posit']
[u'industri', u'crack', u'market']
[u'vietnam', u'alleg', u'woman', u'serial', u'killer']
[u'violenc', u'erupt', u'follow', u'bangladesh', u'attack']
[u'virgin', u'lift', u'fuel', u'charg', u'cut', u'rout']
[u'genghi', u'khan', u'mighti', u'sword']
[u'wine', u'maker', u'toast', u'profit', u'increas']
[u'wollongong', u'runner', u'finish', u'marathon']
[u'woman', u'jail', u'bank', u'fraud']
[u'woodsid', u'hop']
[u'wooli', u'threaten', u'walk', u'away']
[u'face', u'grindlay', u'bash', u'committ', u'hear']
[u'chechnyan', u'fighter', u'kill']
[u'accus', u'kidnapp', u'know', u'babi']
[u'move', u'eas', u'pressur', u'hospit']
[u'opposit', u'criticis', u'govt']
[u'administr', u'talk', u'merg', u'health', u'servic']
[u'aerial', u'bait', u'plan', u'spark', u'threaten', u'speci', u'fear']
[u'age', u'care', u'servic', u'spotlight']
[u'airport', u'manag', u'cautious', u'secur', u'plan']
[u'airport', u'secur', u'move', u'consid', u'realist']
[u'alic', u'spring', u'art', u'festiv', u'cancel']
[u'rais', u'doubt', u'rail', u'fund', u'offer']
[u'ambul', u'union', u'angri', u'crew', u'cutback']
[u'american', u'star', u'stutter', u'hurdl']
[u'angler', u'urg', u'share', u'fund']
[u'target', u'record', u'profit']
[u'press', u'extra', u'cycl', u'medal']
[u'ararat', u'council', u'deni', u'polit', u'campaign', u'claim']
[u'aristocrat', u'announc', u'record', u'profit']
[u'arsenal', u'gun', u'record']
[u'arson', u'possibl', u'shop', u'centr']
[u'aussi', u'basebal', u'reach', u'gold', u'medal', u'match']
[u'aussi', u'basebal', u'play', u'gold']
[u'aussi', u'invent', u'assist', u'clearanc']
[u'aussi', u'market', u'creep', u'higher', u'dollar', u'fall']
[u'aussi', u'round', u'cano', u'program']
[u'australian', u'short', u'film', u'pari']
[u'author', u'captur', u'legendari', u'mexican', u'drug', u'lord']
[u'author', u'defend', u'plan', u'consult']
[u'bashir', u'face', u'charg', u'polic']
[u'berrigan', u'expect', u'play', u'rabbitoh', u'game']
[u'berrigan', u'expect', u'play', u'rabbitoh', u'match']
[u'crowd', u'expect', u'flock', u'field', u'day']
[u'refineri', u'upgrad', u'underway']
[u'boo', u'fan', u'shut', u'olymp', u'horizont', u'final']
[u'brand', u'thorp', u'expand']
[u'british', u'govt', u'investig', u'fake', u'bomb', u'claim']
[u'brogden', u'stoner', u'tour', u'station']
[u'broom', u'rodeo', u'year', u'event']
[u'bulgarian', u'gymnast', u'appeal', u'reject']
[u'bush', u'call', u'attack']
[u'butler', u'resign', u'domin', u'parliament']
[u'campbel', u'promis', u'river', u'research']
[u'candid', u'reject', u'email', u'polit', u'stunt', u'claim']
[u'candid', u'seek', u'safeti', u'chang']
[u'captain', u'wait', u'india', u'australia', u'seri']
[u'carpentaria', u'shire', u'upbeat', u'budget']
[u'charg', u'expect', u'robinval', u'brawl']
[u'chinchilla', u'council', u'deliv', u'record', u'budget']
[u'christian', u'withdraw', u'public', u'school', u'immor', u'gibe']
[u'clean', u'king', u'want', u'tanker', u'reef']
[u'confid', u'cuban', u'skip', u'olymp', u'showdown']
[u'congress', u'help', u'direct', u'lobster', u'industri']
[u'conserv', u'park', u'handov', u'help', u'restor']
[u'coroni', u'inquiri', u'like', u'criticis', u'author']
[u'costello', u'immigr', u'comment', u'govt', u'polici']
[u'council', u'hop', u'bridg', u'timber', u'dilemma']
[u'council', u'rethink', u'communiti', u'group', u'meet']
[u'council', u'seek', u'support', u'health', u'servic', u'opposit']
[u'council', u'urg', u'quick', u'child', u'care', u'issu']
[u'council', u'worker', u'strike']
[u'court', u'clear', u'offici', u'child']
[u'court', u'continu', u'murder', u'committ', u'hear']
[u'court', u'lock', u'hick', u'hear']
[u'crew', u'show', u'support', u'collaps', u'rower']
[u'croc', u'adelaid', u'hous']
[u'crop', u'estim', u'news', u'cane', u'industri']
[u'custom', u'seiz', u'fake', u'trade', u'card']
[u'recreat', u'work', u'boost', u'tourism']
[u'design', u'tender', u'seek', u'desert', u'centr']
[u'develop', u'seek', u'apolog']
[u'link', u'year', u'crime']
[u'doctor', u'medicar', u'safeti', u'rais', u'fee']
[u'driver', u'jail', u'pedestrian', u'death']
[u'drought', u'dollar', u'tip', u'shear', u'wool', u'price']
[u'everton', u'reject', u'newcastl', u'rooney']
[u'farmer', u'warn', u'locust', u'threat']
[u'fear', u'strategi', u'link', u'indigen', u'refuge', u'issu']
[u'feder', u'govt', u'pledg', u'casino', u'murwillumbah', u'rail', u'fund']
[u'govt', u'final', u'decis', u'wast', u'dump', u'site']
[u'ferguson', u'look', u'smith', u'brighten', u'dinamo']
[u'figur', u'highlight', u'fall', u'crime', u'level']
[u'fight', u'continu']
[u'liber', u'stalwart', u'launch', u'campaign']
[u'fremantl', u'dock', u'interchang', u'reshuffl']
[u'fryer', u'blame', u'restaur', u'blaze']
[u'fuel', u'price', u'crippl', u'fli', u'doctor']
[u'garrett', u'continu', u'fight', u'adelaid', u'hill', u'home']
[u'gene', u'tweak', u'creat', u'mighti', u'mous']
[u'georgian', u'presid', u'warn', u'russia']
[u'german', u'lead', u'team', u'jump']
[u'gillard', u'stir', u'liber', u'leadership']
[u'good', u'local', u'crime', u'figur']
[u'govt', u'ask', u'explain', u'fare', u'rise']
[u'govt', u'blame', u'nurs', u'shortfal']
[u'govt', u'consult', u'doctor', u'free', u'hospit', u'bed']
[u'govt', u'deni', u'tri', u'replac', u'medicar']
[u'govt', u'dismiss', u'nuclear', u'wast', u'dump', u'site', u'report']
[u'govt', u'say', u'farmer', u'plea', u'fuel', u'relief']
[u'govt', u'say', u'disappear', u'labor']
[u'govt', u'refuge', u'stay']
[u'govt', u'urg', u'streamlin', u'age', u'care', u'facil']
[u'granit', u'belt', u'fruit', u'festiv', u'make', u'loss']
[u'greek', u'judoka', u'die', u'hospit', u'day', u'fall']
[u'group', u'consid', u'orphanag', u'abus', u'lawsuit']
[u'hawk', u'outlin', u'case', u'latham']
[u'headlin', u'act', u'unlik', u'schooli', u'week']
[u'hobart', u'declar', u'refuge', u'welcom', u'zone']
[u'hockeyroo', u'japan']
[u'hospit', u'turn', u'away', u'elder', u'outsid']
[u'hotel', u'license', u'fin', u'nude', u'danc']
[u'hous', u'scheme', u'help', u'home', u'buyer']
[u'howard', u'latham', u'trade', u'blow', u'credibl']
[u'icac', u'hear', u'pearl', u'farm', u'propon', u'complaint']
[u'idri', u'escap', u'punish', u'bali', u'blast']
[u'illawarra', u'south', u'east', u'stage', u'econom', u'confer']
[u'interst', u'final', u'ideal', u'demetriou', u'admit']
[u'investig', u'begin', u'bundaberg', u'murder']
[u'iraq', u'govern', u'warn', u'sadr', u'resist']
[u'iraqi', u'minist', u'escap', u'attack']
[u'iraq', u'issu', u'fresh', u'warn', u'mehdi', u'armi']
[u'isol', u'care']
[u'israel', u'alter', u'west', u'bank', u'barrier']
[u'issu', u'need', u'clear', u'council', u'merg']
[u'jackman', u'final', u'fetch', u'seat']
[u'japan', u'deport', u'fischer']
[u'juror', u'dismiss', u'accus', u'peopl', u'smuggler', u'case']
[u'kingsgat', u'report', u'profit']
[u'korean', u'file', u'gold', u'medal', u'appeal']
[u'krakouer', u'releas']
[u'labor', u'outlin', u'csiro', u'review']
[u'lancast', u'pedal', u'gold', u'medal']
[u'lead', u'wrestl', u'offici', u'call', u'reform']
[u'lennon', u'defend', u'butler', u'decis']
[u'lennon', u'clear', u'butler', u'payout']
[u'lennon', u'cut', u'futur', u'governor']
[u'life', u'leav', u'landmark', u'tree']
[u'lobbi', u'group', u'hop', u'hospit', u'site', u'rethink']
[u'local', u'airport', u'share', u'secur', u'boost']
[u'catch', u'tri', u'smuggl', u'pigeon']
[u'charg', u'drive', u'offenc', u'speed']
[u'charg', u'submachin', u'import']
[u'destroy', u'chines', u'restaur', u'court', u'tell']
[u'jail', u'attempt', u'partner']
[u'jail', u'friend', u'death']
[u'mayor', u'want', u'secur', u'screen', u'flight']
[u'mear', u'hop', u'second', u'olymp', u'medal']
[u'power', u'recuper', u'brisban']
[u'militari', u'limit', u'hick', u'trial', u'coverag']
[u'miller', u'crash']
[u'miner', u'sand', u'project', u'slat', u'year']
[u'minist', u'aim', u'counter', u'cane', u'toad', u'crisi']
[u'minist', u'highlight', u'need', u'fish', u'protect']
[u'mitsubishi', u'worker', u'accept', u'redund', u'packag']
[u'modern', u'munster', u'movi', u'plan']
[u'moomba', u'hit', u'santoss', u'line']
[u'child', u'abus', u'report']
[u'fund', u'urg', u'atsic', u'demis']
[u'region', u'student', u'studi', u'medicin', u'anderson']
[u'wild', u'storm', u'tip', u'perth']
[u'resid', u'ralli', u'toxic', u'wast', u'dump']
[u'talk', u'privat', u'health', u'rebat']
[u'newberi', u'final', u'barnett', u'bow']
[u'councillor', u'seek', u'ratepay', u'guidanc']
[u'discount', u'fuel', u'promot', u'shopper']
[u'newton', u'give', u'time']
[u'zealand', u'beat', u'south', u'korea', u'hockey', u'play']
[u'nylex', u'make', u'splash', u'ventur']
[u'flag', u'stay']
[u'price', u'drop', u'iraqi', u'product', u'resum']
[u'opposit', u'reject', u'north', u'coast', u'rail', u'claim']
[u'organis', u'crime', u'prevent', u'workshop', u'open']
[u'pakistan', u'afghanistan', u'tighten', u'boarder', u'secur']
[u'palestinian', u'prison', u'hunger', u'strike', u'continu']
[u'paramed', u'highlight', u'staff', u'woe']
[u'parent', u'welcom', u'goal', u'post', u'death', u'inquest']
[u'perilya', u'turn', u'profit', u'loss']
[u'perpetu', u'truste', u'record', u'profit', u'rise']
[u'philippin', u'ban', u'malaysian', u'poultri', u'import']
[u'plan', u'focus', u'lift', u'season', u'tourism']
[u'reject', u'labor', u'list', u'lie']
[u'polic', u'rapid', u'creek', u'investig']
[u'polic', u'hunt', u'knife', u'wield', u'bandit']
[u'polic', u'investig', u'rapid', u'creek', u'shoot']
[u'polic', u'fairytal', u'drug', u'bust']
[u'polic', u'recaptur', u'escap', u'prison']
[u'practition', u'public', u'respond', u'health', u'servic']
[u'privatis', u'wouldnt', u'hurt', u'timber', u'deal', u'minist']
[u'probe', u'launch', u'townsvill', u'jail', u'secur']
[u'produc', u'action', u'stop', u'attack']
[u'public', u'water', u'secur']
[u'public', u'want', u'account', u'latham', u'say']
[u'jockey', u'get', u'place', u'race', u'hall', u'fame']
[u'staff', u'brief', u'redund']
[u'racecours', u'prepar', u'track']
[u'back', u'region', u'airport', u'secur', u'upgrad']
[u'riverland', u'danger', u'wast', u'servic']
[u'river', u'plan', u'tip', u'carp', u'number']
[u'rower', u'face', u'censur', u'dump', u'robbin']
[u'ruddock', u'hint', u'releas', u'hick', u'photo']
[u'rumsfeld', u'wont', u'forc', u'testifi', u'iraq', u'abus']
[u'russian', u'lead', u'synchro', u'curtain', u'raiser']
[u'sale', u'help', u'deliv', u'foster', u'profit', u'boost']
[u'lose', u'soccer', u'broadcast', u'right']
[u'school', u'pick', u'litter', u'prevent', u'award']
[u'scientist', u'flesh', u'georg', u'washington']
[u'scott', u'pursu', u'challeng', u'hawk', u'board']
[u'seal', u'road', u'recoveri']
[u'seattl', u'time', u'writer', u'admit', u'plagiar']
[u'slater', u'tumbl', u'beam', u'final']
[u'straw', u'demand', u'effort', u'khartoum', u'stem', u'crisi']
[u'straw', u'talk', u'sudanes', u'darfur', u'crisi']
[u'sudan', u'peac', u'talk', u'start', u'abuja']
[u'sunshin', u'coast', u'softbal', u'score', u'athen', u'silver']
[u'suspect', u'mercenari', u'trial', u'equatori', u'guinea']
[u'swiss', u'readi', u'hang']
[u'talk', u'continu', u'resolv', u'power', u'disput']
[u'tamworth', u'ponder', u'water', u'ban', u'futur']
[u'tasmania', u'hold', u'bird', u'diseas', u'outbreak', u'exercis']
[u'offic', u'evacu', u'water', u'tank', u'burst']
[u'teacher', u'accept', u'govt', u'offer']
[u'teenag']
[u'tiger', u'appeal', u'zantuck', u'suspens']
[u'trainer', u'high', u'hop', u'starcraft']
[u'tribut', u'flow', u'tasmanian', u'premier']
[u'accus', u'insid', u'trade', u'wine', u'merger']
[u'typhoon', u'batter', u'japan', u'taiwan']
[u'chief', u'hail', u'progress', u'east', u'timor']
[u'univers', u'offer', u'place', u'aust', u'student']
[u'begin', u'airborn', u'propaganda', u'broadcast', u'cuba']
[u'iraqi', u'troop', u'deploy', u'najaf', u'shrine']
[u'shrug', u'north', u'korean', u'critic']
[u'vet', u'discuss', u'pet', u'medic', u'need', u'confer']
[u'ombudsman', u'power', u'boost']
[u'rescuer', u'search', u'miss', u'school', u'children']
[u'virgin', u'accc', u'blue', u'fail', u'rout']
[u'whale', u'group', u'unhappi', u'explor', u'plan']
[u'wit', u'seek', u'motorcycl', u'crash']
[u'woman', u'move', u'scorpion']
[u'worker', u'electrocut', u'storm', u'clean']
[u'trawler', u'wharf', u'plan']
[u'accus', u'butler']
[u'accus', u'kidnapp', u'refus', u'bail']
[u'adelaid', u'derbi', u'crucial', u'craig', u'say']
[u'balanc', u'coverag']
[u'balanc', u'coverag']
[u'airport', u'secur', u'risk', u'assess']
[u'alford', u'school', u'close', u'year']
[u'alic', u'host', u'rural', u'health', u'confer']
[u'allianc', u'aim', u'boost', u'farm', u'safeti']
[u'ord', u'lose', u'grind']
[u'appeal', u'slash', u'kmart', u'compo', u'payout']
[u'argentina', u'beat', u'itali', u'place', u'footbal', u'final']
[u'argentin', u'court', u'open', u'door', u'human', u'right', u'case']
[u'arson', u'think', u'servic', u'station', u'blaze']
[u'assembl', u'vote', u'taxi', u'hire', u'industri']
[u'aussi', u'triangular', u'seri', u'final']
[u'baggaley', u'eas', u'final']
[u'banish', u'shoot', u'putter', u'refus', u'return', u'gold', u'medal']
[u'bashir', u'charg', u'hotel', u'bomb']
[u'batchelor', u'back', u'feder', u'wast', u'site']
[u'beef', u'produc', u'face', u'tree', u'clear', u'charg']
[u'benitez', u'back', u'kewel', u'red', u'stumbl']
[u'berestov', u'grab', u'shock', u'weightlift', u'gold', u'russia']
[u'bering', u'blass', u'sell', u'vineyard']
[u'plan', u'afoot', u'hospit']
[u'break', u'hill', u'showcas', u'film', u'potenti']
[u'burial', u'plan', u'fail', u'rise']
[u'busi', u'group', u'air', u'fuel', u'price', u'fear']
[u'butler', u'payout', u'reason', u'doubt']
[u'boost', u'mental', u'ill', u'servic']
[u'councillor', u'salari', u'sacrific']
[u'go', u'blood', u'bank', u'donat']
[u'canola', u'seed', u'fuel', u'diesel', u'unit']
[u'torch', u'break', u'hill']
[u'carlton', u'game', u'negoti']
[u'carr', u'make', u'surpris', u'deniliquin', u'visit']
[u'charl', u'imperson', u'keep', u'licenc']
[u'chechen', u'condemn', u'plane', u'crash']
[u'children', u'hous']
[u'children', u'reward', u'trip', u'school', u'attend']
[u'coal', u'inquiri', u'hear', u'water', u'issu']
[u'collin', u'quit', u'consult', u'role']
[u'commiss', u'hop', u'abus', u'case']
[u'competit', u'keep', u'profit', u'flat']
[u'costello', u'jump', u'crean', u'comment']
[u'council', u'consid', u'talk', u'tram']
[u'council', u'block', u'truck', u'access', u'road']
[u'council', u'ask', u'consid', u'growth', u'need']
[u'council', u'green', u'light', u'draft', u'citi', u'plan']
[u'council', u'warn', u'resid', u'illeg', u'landfil']
[u'cuba', u'stag', u'volleybal', u'comeback']
[u'daintre', u'develop', u'decis', u'soon']
[u'disabl', u'carer', u'protest', u'inact']
[u'disney', u'challeng', u'lion', u'king', u'song', u'claim', u'court']
[u'dope', u'scandal', u'tarnish', u'game']
[u'doubt', u'cast', u'popular', u'elect', u'mayor']
[u'drogba', u'mark', u'chelsea']
[u'dubbo', u'polic', u'urg', u'increas', u'number']
[u'dutch', u'german', u'women', u'hockey', u'final']
[u'guerrouj', u'break', u'jinx']
[u'guerrouj', u'win']
[u'engin', u'troubl', u'forc', u'plan', u'return', u'melbourn']
[u'bishop', u'lose', u'holi', u'order']
[u'expert', u'watch', u'locust', u'migrat']
[u'farmer', u'group', u'urg', u'govt', u'address', u'high', u'fuel']
[u'farmer', u'face', u'trial', u'ekka', u'syring']
[u'fear', u'water', u'scheme', u'prove', u'cost']
[u'final', u'focus', u'say', u'william']
[u'final', u'submiss', u'gulf', u'doubl', u'murder']
[u'destroy', u'refuge', u'famili', u'home']
[u'fischer', u'dodg', u'deport']
[u'fisher', u'angri', u'plan', u'island', u'restrict']
[u'caus', u'airport', u'delay']
[u'frenchwoman', u'merret', u'captur', u'windsurf', u'titl']
[u'fridman', u'gold', u'fulfil', u'israel', u'dream']
[u'gaza', u'intellig', u'chief', u'hurt', u'ambush']
[u'georg', u'weston', u'food', u'fin', u'price', u'fix']
[u'germani', u'clinch', u'jump', u'gold']
[u'germani', u'face', u'russia', u'handbal', u'semi', u'final']
[u'gibbon', u'push', u'abbott', u'hospit', u'licenc']
[u'gippsland', u'share', u'fall', u'prevent', u'fund']
[u'girl', u'hilton', u'brothel', u'case', u'possibl']
[u'gold', u'rush', u'continu', u'aussi', u'cyclist']
[u'good', u'flow', u'water', u'chang']
[u'gould', u'quit', u'wallabi', u'post']
[u'govt', u'disturb', u'idri', u'court', u'decis']
[u'govt', u'tabl', u'cook', u'review', u'repli']
[u'govt', u'pressur', u'bali']
[u'greek', u'athlet', u'tell', u'tribut', u'sham']
[u'group', u'launch', u'goodwood', u'orphanag', u'abus', u'case']
[u'group', u'upbeat', u'alcohol', u'plan', u'impact']
[u'gunnedah', u'council', u'launch', u'birthday', u'blueprint']
[u'hackett', u'deliv', u'mini', u'aussi', u'babi', u'boom']
[u'harrop', u'take', u'silver', u'tight', u'finish']
[u'harrop', u'win', u'silver', u'kayak', u'progress', u'final']
[u'hay', u'win', u'dramat', u'women', u'hurdl']
[u'heal', u'star', u'boomer', u'finish', u'ninth']
[u'health', u'servic', u'urg', u'deliv', u'pregnanc', u'clinic']
[u'healthi', u'profit', u'hospit', u'group']
[u'helicopt', u'rescu', u'bonus', u'student']
[u'heritag', u'precinct', u'build', u'applic', u'withdraw']
[u'hewitt', u'paradorn', u'reach', u'long', u'island', u'second', u'round']
[u'hick', u'famili', u'arriv', u'guantanamo']
[u'hick', u'plead', u'guilti', u'charg']
[u'hick', u'releas', u'guilti', u'say']
[u'high', u'cost', u'blame', u'smorgon', u'profit', u'fall']
[u'higher', u'toll', u'take', u'fail', u'prevent', u'transurban', u'loss']
[u'high', u'hop', u'gold']
[u'hijack', u'fear', u'jet', u'crash', u'russia']
[u'hitman', u'hirer', u'sentenc', u'increas']
[u'hop', u'scheme', u'translat']
[u'injur', u'cook', u'go', u'fight']
[u'isinbayeva', u'world', u'pole', u'vault']
[u'italian', u'govt', u'reject', u'iraq', u'hostag', u'threat']
[u'japan', u'basebal', u'bronz']
[u'kalgoorli', u'take', u'camp', u'action']
[u'kcgm', u'charlott', u'effort']
[u'kenyan', u'clean', u'sweep', u'steeplechas']
[u'khan', u'aim', u'olymp', u'glori']
[u'king', u'inquest', u'begin']
[u'labor', u'coalit', u'spar', u'school', u'fund']
[u'labor', u'vote', u'butler', u'inquiri']
[u'land', u'council', u'oppos', u'atsic', u'abolit']
[u'latham', u'urg', u'govt', u'seek', u'justic', u'bali', u'case']
[u'local', u'stop', u'latest', u'wind', u'farm']
[u'long', u'jump', u'champ', u'target', u'record']
[u'fire', u'polic', u'turn']
[u'jail', u'polic', u'chase']
[u'man', u'bodi', u'skate', u'park']
[u'maradona', u'shed', u'tear', u'drug', u'rehab']
[u'mayor', u'cast', u'doubt', u'magnet', u'report']
[u'mayor', u'welcom', u'iron', u'talk']
[u'mear', u'win', u'sprint', u'bronz']
[u'medic', u'trust', u'offer', u'lectur', u'theatr', u'fund']
[u'minist', u'highlight', u'strong', u'farmer', u'market']
[u'miss', u'student', u'teacher']
[u'unhappi', u'reject', u'aerial', u'bait']
[u'molopo', u'test', u'stratford', u'qualiti']
[u'moorabool', u'air', u'popul', u'budget', u'worri']
[u'protect', u'urg', u'primari', u'industri']
[u'attack', u'hospit', u'bed', u'plan']
[u'fear', u'rail', u'shake', u'cost', u'local', u'job']
[u'reject', u'detent', u'centr', u'maggot', u'claim']
[u'multiplex', u'build', u'solid', u'result']
[u'shame', u'plan', u'illeg', u'tree', u'clearer']
[u'nation', u'cycl', u'race', u'launceston']
[u'advis', u'tackl', u'petrol', u'sniff', u'drug', u'abus']
[u'asbesto']
[u'newberi', u'peng', u'win', u'springboard', u'gold']
[u'energi', u'minist', u'get', u'busi']
[u'hitler', u'movi', u'caus', u'controversi']
[u'newton', u'ban', u'week']
[u'newton', u'plead', u'guilti', u'strike', u'charg']
[u'ventur', u'power', u'transfield', u'profit']
[u'resolut', u'council', u'wag', u'impass']
[u'continu', u'class', u'size', u'reduct']
[u'price', u'fall', u'lift', u'market', u'aust', u'dollar', u'fall']
[u'olymp', u'champion', u'crash', u'hurdl']
[u'airlin', u'crash', u'miss', u'russia']
[u'oper', u'crack', u'money', u'launder', u'scheme']
[u'opposit', u'hold', u'fear', u'child', u'abus', u'victim']
[u'orang', u'grove', u'owner', u'keep', u'door', u'open']
[u'orang', u'grove', u'close', u'court', u'rule']
[u'order', u'strike', u'secur', u'frustrat']
[u'pair', u'court', u'shepparton', u'murder']
[u'paraguay', u'end', u'iraq', u'dream']
[u'parent', u'protest', u'school', u'revamp', u'delay']
[u'parliamentari', u'tribut', u'flow', u'premier']
[u'peopl', u'warn', u'mobil', u'phone']
[u'pittman', u'prepar', u'gold']
[u'elect', u'date']
[u'polic', u'appeal', u'help', u'year', u'murder', u'mysteri']
[u'polic', u'charg', u'year', u'alleg', u'stab']
[u'polic', u'issu', u'warn', u'forc']
[u'polic', u'pair', u'intern', u'rugbi', u'leagu']
[u'polic', u'probe', u'suspect', u'murder', u'suicid']
[u'polic', u'probe', u'suspici', u'retir', u'villag', u'death']
[u'polic', u'weigh', u'option', u'entitl', u'rule']
[u'prison', u'escape', u'wont', u'face', u'charg']
[u'profit', u'jump', u'tran', u'tasman', u'insur']
[u'psychiatrist', u'say', u'accus', u'kidnapp', u'panic']
[u'public', u'warn', u'dodgi', u'roof', u'painter']
[u'push', u'marin', u'pilot', u'torr', u'strait']
[u'putin', u'order', u'secret', u'servic', u'investig', u'plane']
[u'quak', u'jolt', u'athen']
[u'radio', u'cyprus', u'experi', u'technic', u'itch']
[u'ranger', u'coach', u'call', u'fan', u'spurn', u'moor']
[u'rebel', u'lift', u'kathmandu', u'blockad']
[u'reef', u'chief', u'talk', u'rezon', u'benefit']
[u'region', u'airport', u'benefit', u'aviat']
[u'report', u'find', u'human', u'error', u'ship', u'ground']
[u'report', u'recommend', u'alcohol', u'court']
[u'research', u'project', u'probe', u'live', u'work', u'poor']
[u'robot', u'health', u'care']
[u'roo', u'steven', u'call']
[u'rumsfeld', u'contribut', u'iraqi', u'prison', u'chao']
[u'russian', u'hold', u'japanes', u'lead', u'synchro', u'swim']
[u'support', u'region', u'refuge']
[u'search', u'resum', u'miss', u'student']
[u'sebrl', u'win', u'decathlon', u'gold']
[u'sharapova', u'stun', u'haven', u'capriati']
[u'shark', u'score', u'classif']
[u'shoalhaven', u'face', u'water', u'ban']
[u'shock', u'loss', u'aussi', u'stingray']
[u'sistani', u'urg', u'mass', u'march', u'najaf', u'aid']
[u'spear', u'gold', u'feud']
[u'steven', u'call']
[u'strip', u'champion', u'send', u'gold', u'russia']
[u'studi', u'highlight', u'link', u'soft', u'drink']
[u'sudan', u'peac', u'talk', u'deadlock', u'rebel', u'backtrack']
[u'talli', u'comment', u'hearten', u'propon']
[u'taxi', u'driver', u'home', u'raid', u'serial', u'kill', u'probe']
[u'teenag', u'question', u'school', u'stab']
[u'tenix', u'defenc', u'disput']
[u'thatcher', u'arrest', u'coup', u'attempt']
[u'theft', u'toll', u'chariti', u'group', u'volunt']
[u'time', u'run', u'tamworth', u'council', u'nomin']
[u'tini', u'telescop', u'spot', u'giant', u'planet']
[u'trio', u'charg', u'rifl', u'theft']
[u'revenu', u'push', u'southern', u'cross', u'profit']
[u'tweed', u'mayor', u'back', u'feder', u'govt', u'rail', u'offer']
[u'russian', u'passeng', u'plan', u'miss']
[u'underworld', u'ident', u'drug', u'charg', u'pull']
[u'union', u'criticis', u'hospit', u'support', u'staff']
[u'union', u'hop', u'agreement', u'power', u'disput']
[u'union', u'look', u'boost', u'effici', u'amidst', u'cut']
[u'union', u'pleas', u'neglig', u'penalti']
[u'union', u'urg', u'boycott', u'hardi', u'product']
[u'forc', u'close', u'najaf', u'shrine']
[u'journalist', u'end', u'silenc', u'leak', u'case']
[u'highlight', u'poor', u'harvest', u'concern']
[u'offic', u'face', u'sierra', u'leon', u'court']
[u'volunt', u'group', u'seek', u'altern', u'helper']
[u'govt', u'defend', u'action', u'muja', u'disput']
[u'waratah', u'prepar', u'earli', u'super', u'campaign']
[u'william', u'darl', u'claim', u'gold']
[u'wit', u'credibl', u'question', u'bushfir', u'inquest']
[u'youth', u'face', u'court', u'home', u'theft']
[u'kill', u'sistani', u'sadr', u'support', u'fire']
[u'rate', u'rise', u'boulia', u'budget']
[u'accc', u'launch', u'help', u'rural', u'doctor']
[u'age', u'care', u'plan', u'bandaid', u'solut', u'opposit']
[u'alleg', u'grog', u'runner', u'arrest', u'follow']
[u'anderson', u'want', u'rail', u'plan', u'pledg']
[u'atapattu', u'guid', u'lanka', u'wicket']
[u'death', u'inquest', u'tell', u'user', u'ignor', u'guidelin']
[u'aussi', u'cyclist', u'defend', u'haul', u'amid', u'drug', u'slur']
[u'aussi', u'pair', u'progress', u'springboard', u'final']
[u'australia', u'settl', u'basebal', u'silver']
[u'australia', u'win', u'doubl', u'cycl', u'gold']
[u'authoris', u'polic', u'strength', u'rais', u'debnam']
[u'balco', u'prosecutor', u'athen', u'kenteri', u'thanou']
[u'bali', u'bomber', u'face', u'aust', u'court']
[u'ballarat', u'build', u'koala', u'plan', u'success']
[u'betham', u'stand', u'warrior', u'captain']
[u'bladerunn', u'scientist', u'flick']
[u'bluescop', u'reject', u'sack', u'claim']
[u'brazil', u'edg', u'spain', u'semi', u'basketbal', u'spot']
[u'brisk', u'trade', u'defi', u'orang', u'grove', u'court', u'rule']
[u'brothel', u'issu', u'head', u'court']
[u'bush', u'lawyer', u'quit', u'kerri', u'furor']
[u'bush', u'reclaim', u'lead', u'opinion', u'poll']
[u'busi', u'refuge', u'polici']
[u'busi', u'invest', u'rebound']
[u'canberra', u'land', u'asid', u'moder', u'incom', u'earner']
[u'cancer', u'council', u'tackl', u'cancer', u'indigen']
[u'casa', u'investig', u'winton', u'plane', u'crash']
[u'chamber', u'offer', u'mix', u'respons', u'safeti', u'plan']
[u'chariti', u'cross', u'bass', u'strait']
[u'cityrail', u'defend', u'taxi', u'expenditur']
[u'clean', u'product', u'solvent', u'caus', u'asthma']
[u'cleric', u'arriv', u'start', u'najaf', u'ceas']
[u'convent', u'centr', u'boost', u'tourism', u'industri']
[u'coolah', u'coonabarabran', u'council']
[u'coron', u'hit', u'attempt', u'impugn', u'bushfir']
[u'coron', u'find', u'hous', u'blaze', u'tragedi']
[u'costello', u'warn', u'price', u'threaten', u'growth']
[u'council', u'act', u'stamp', u'fire']
[u'council', u'delay', u'eureka', u'holiday', u'decis']
[u'council', u'get', u'tough', u'illeg', u'dump']
[u'council', u'like', u'marina', u'plan', u'tonight']
[u'councillor', u'reject', u'wickham', u'hous', u'plan']
[u'councillor', u'unhappi', u'tourism', u'meet', u'payment']
[u'council', u'reject', u'malcolmson', u'street', u'upgrad']
[u'council', u'sell', u'properti', u'long', u'overdu', u'rat']
[u'council', u'hospit', u'site']
[u'court', u'consid', u'pinochet', u'immun']
[u'critic', u'greet', u'land', u'coordin']
[u'cruis', u'missil', u'worri', u'neighbour', u'howard']
[u'death', u'die', u'author', u'die']
[u'defrock', u'put', u'focus', u'anglican', u'abus']
[u'dementieva', u'surviv', u'cull', u'haven']
[u'depart', u'frawley', u'undecid', u'futur']
[u'develop', u'sector', u'help', u'lift', u'townsvill', u'economi']
[u'dirrel', u'boost', u'american', u'box', u'hop']
[u'disgrac', u'meirhaegh', u'throw', u'open', u'hunt', u'mountain']
[u'domest', u'disput', u'death']
[u'drug', u'penalti', u'promot', u'australian', u'crew', u'bronz']
[u'dutch', u'away', u'golden', u'hockey', u'trick']
[u'earthwork', u'cost', u'land', u'owner', u'mountain', u'fine']
[u'educ', u'review', u'ignor', u'stakehold']
[u'everton', u'will', u'price', u'rooney']
[u'famili', u'candid', u'face', u'riverland', u'challeng']
[u'famili', u'tragedi', u'harrop', u'mind', u'athen']
[u'farmer', u'democrat', u'seek', u'trade', u'practic', u'chang']
[u'farmer', u'wild', u'oat', u'tractor', u'plough']
[u'farm', u'group', u'highlight', u'salin', u'fund', u'import']
[u'fast', u'rail', u'plan', u'track', u'opposit']
[u'fear', u'aerial', u'bait', u'boost', u'wild', u'woe']
[u'fewer', u'assault', u'convict', u'bendigo', u'ballarat']
[u'firework', u'charg', u'drop', u'chang']
[u'caus', u'travel', u'disrupt']
[u'fund', u'beef', u'longreach', u'saleyard']
[u'gambler', u'plead', u'guilti', u'fraud']
[u'reserv', u'power', u'australia', u'year']
[u'gatlin', u'stay', u'cours', u'sprint', u'doubl']
[u'girl', u'die', u'stab', u'wound']
[u'govt', u'paralys', u'land', u'opposit']
[u'govt', u'settl', u'voyag', u'collis', u'lawsuit']
[u'greek', u'box', u'protest', u'reject']
[u'group', u'aim', u'boost', u'season', u'visitor', u'number']
[u'group', u'back', u'exist', u'trade', u'hour']
[u'group', u'pleas', u'hotel', u'sale']
[u'grow', u'accept', u'livestock', u'scheme']
[u'guantanamo', u'inquiri', u'find', u'abus', u'evid']
[u'habib', u'meet', u'appoint', u'lawyer']
[u'harradin', u'blast', u'petrol', u'price']
[u'health', u'group', u'reject', u'number', u'claim']
[u'health', u'rebat', u'rise', u'boost', u'premium', u'latham']
[u'hick', u'clean', u'calm', u'court']
[u'hickss', u'lawyer', u'challeng', u'tribun', u'author']
[u'hilton', u'tell', u'court', u'electro', u'shock', u'therapi']
[u'hockeyroo', u'finish', u'olymp', u'fifth', u'place']
[u'hollywood', u'focus', u'gold', u'coast', u'benefit']
[u'hous', u'victim', u'succumb', u'injuri']
[u'howard', u'associ', u'latham', u'high', u'rat']
[u'howard', u'fuel', u'elect', u'rumour']
[u'howard', u'elect', u'pitch', u'focus', u'futur']
[u'hundr', u'thousand', u'evacu', u'typhoon', u'sweep']
[u'hungarian', u'lifter', u'exclud', u'olymp', u'drug']
[u'iaaf', u'launch', u'probe', u'greek', u'sprinter']
[u'icac', u'recommend', u'charg']
[u'indigen', u'administr', u'spotlight']
[u'indonesia', u'question', u'missil', u'plan', u'wisdom']
[u'industri', u'council', u'odd', u'chamber', u'job']
[u'inflex', u'matern', u'leav', u'hamper', u'women']
[u'itali', u'withdraw', u'iraq', u'request', u'minist']
[u'jackson', u'help', u'opal', u'medal', u'chanc']
[u'john', u'fairfax', u'doubl', u'profit']
[u'johnson', u'dream', u'regain', u'olymp', u'titl', u'bite']
[u'jone', u'make', u'return', u'game']
[u'juninho', u'head', u'celtic']
[u'kasper', u'australia', u'challeng']
[u'kean', u'week']
[u'kiwi', u'men', u'triathlon']
[u'knight', u'decid', u'newton', u'appeal']
[u'kookaburra', u'beat', u'spain', u'reach', u'men', u'final']
[u'kufa', u'bomb', u'kill', u'sistani', u'support']
[u'kuzenkova', u'get', u'hammer', u'gold']
[u'landhold', u'claim', u'separ', u'nation', u'status']
[u'lawyer', u'question', u'alcohol', u'restrict']
[u'lead', u'men', u'singl', u'contend']
[u'levi', u'strauss', u'stitch', u'factori', u'closur']
[u'lower', u'price', u'fuel', u'wall', u'ralli']
[u'charg', u'drug', u'firearm', u'offenc']
[u'mansurov', u'win', u'gold']
[u'mayor', u'call', u'bowen', u'polic']
[u'media', u'compani', u'push', u'market', u'higher']
[u'meet', u'talk', u'cut']
[u'merger', u'lift', u'tabcorp', u'profit']
[u'meteor', u'sight', u'resembl', u'firework', u'display']
[u'micronesian', u'politician', u'ban', u'offic', u'life']
[u'milit', u'kidnap', u'relat', u'iraqi', u'minist']
[u'mincor', u'record', u'profit']
[u'closur', u'cost', u'job']
[u'minist', u'offer', u'river', u'mine', u'pledg']
[u'mix', u'aussi', u'kayak']
[u'mix', u'respons', u'hervey', u'sydney', u'flight']
[u'central', u'medal', u'guarante']
[u'mother', u'charg', u'daughter', u'stab', u'death']
[u'mottram', u'fourth', u'open', u'heat']
[u'back', u'plan', u'creator']
[u'plan', u'impeach', u'blair', u'iraq']
[u'murder', u'prefer', u'death', u'tribal', u'punish']
[u'murray', u'goulburn', u'boost', u'milk', u'price']
[u'najaf', u'polic', u'detain', u'journalist']
[u'nambucca', u'valley', u'get', u'pump', u'restrict']
[u'nasa', u'find', u'predict', u'drought', u'flood']
[u'missil', u'hail', u'region', u'lethal']
[u'missil', u'boost', u'aust', u'strike', u'rang']
[u'newspap', u'printer', u'press', u'case', u'rise']
[u'twist', u'perth', u'serial', u'kill', u'investig']
[u'fight', u'delay', u'basketbal', u'stadium']
[u'nomine', u'name', u'tamworth', u'council', u'poll']
[u'miracl', u'pittman', u'finish', u'fifth']
[u'proof', u'corrupt', u'gang', u'link', u'polic']
[u'nucifora', u'head', u'zealand']
[u'number', u'plat', u'link', u'polic', u'underworld']
[u'price', u'slide']
[u'opal', u'sail', u'basketbal', u'semi']
[u'optus', u'vodafon', u'plan', u'joint', u'network']
[u'orang', u'grove', u'retail', u'defi', u'court', u'order']
[u'pakistan', u'deni', u'aid', u'taliban']
[u'paradorn', u'hunt', u'long', u'island', u'titl', u'trebl']
[u'rise', u'push', u'salari']
[u'report', u'profit', u'lift']
[u'pittman', u'fifth', u'cyclist', u'complet', u'massiv', u'gold', u'haul']
[u'plane', u'incid', u'prompt', u'secur', u'train', u'concern']
[u'plan', u'afoot', u'renmark', u'town', u'centr', u'revamp']
[u'polic', u'station', u'indigen', u'liaison', u'offic']
[u'polic', u'hous', u'victim']
[u'politician', u'polic', u'station', u'data']
[u'powder', u'plane', u'threat', u'passeng']
[u'power', u'station', u'disput', u'remain', u'deadlock']
[u'probe', u'launch', u'manildra', u'plant', u'blaze']
[u'prosser', u'william', u'miss', u'beach', u'volleybal', u'bronz']
[u'queen', u'choirmast', u'jail', u'child']
[u'radcliff', u'leav', u'late', u'decis']
[u'rain', u'threaten', u'triangular', u'final']
[u'ranger', u'crash', u'home', u'draw', u'cska']
[u'real', u'juventus', u'reach', u'champ', u'leagu']
[u'rebel', u'group', u'blame', u'india', u'attack']
[u'record', u'break', u'gunner', u'dream', u'debut']
[u'relief', u'greet', u'voyag', u'settlement']
[u'report', u'beij', u'boycott']
[u'resid', u'group', u'unhappi', u'cook', u'review', u'respons']
[u'lift', u'merimbula', u'sydney', u'number']
[u'rezazadeh', u'reign', u'world', u'strongest']
[u'riverina', u'woman', u'embroil', u'defrock', u'case']
[u'road', u'accid', u'research', u'cost']
[u'roddick', u'aim', u'repeat', u'perform']
[u'rower', u'promot', u'bronz', u'baggaley', u'power']
[u'russia', u'mourn', u'crash', u'victim', u'chechen', u'deni', u'role']
[u'russian', u'plane', u'break', u'midair']
[u'school', u'anti', u'bulli', u'scheme', u'prove', u'success']
[u'search', u'find', u'miss', u'walker']
[u'search', u'miss', u'mental', u'health', u'patient']
[u'secur', u'fear', u'prompt', u'burni', u'hospit', u'strike']
[u'sept', u'movi', u'premier', u'edinburgh']
[u'serial', u'rapist', u'get', u'year', u'jail', u'term']
[u'offenc', u'hear', u'tell', u'parent', u'worst']
[u'shannon', u'subsidi']
[u'shire', u'fund', u'assur']
[u'sistani', u'begin', u'najaf', u'peac', u'talk']
[u'sistani', u'return', u'iraq', u'forc', u'trap', u'mehdi', u'armi']
[u'smoke', u'law', u'tighten', u'debat']
[u'fuel', u'hit', u'litr', u'rockhampton']
[u'spain', u'eas', u'gold']
[u'stab', u'put', u'girl', u'hospit']
[u'statement', u'fuel', u'butler', u'resign']
[u'storm', u'expect', u'kimmorley', u'danger']
[u'storm', u'leav', u'resid', u'dark']
[u'studi', u'show', u'high', u'indigen', u'rheumat', u'diseas', u'rate']
[u'super', u'campbel', u'destroy', u'felix', u'titl']
[u'taiwan', u'typhoon', u'death', u'toll', u'rise']
[u'taliban', u'threaten', u'rumsfeld', u'vow', u'jihad']
[u'task', u'forc', u'design', u'asbesto', u'manag']
[u'taxi', u'stab', u'sentenc', u'lack', u'public', u'deterr']
[u'teacher', u'need', u'moral', u'boost', u'report']
[u'tent', u'resort', u'offer', u'tast', u'indigen', u'life']
[u'territori', u'introduc', u'child', u'law']
[u'thai', u'motorcycl', u'bomb', u'wound']
[u'thiev', u'fleec', u'wedderburn', u'produc']
[u'thiev', u'skim', u'orang', u'bank', u'account']
[u'thompson', u'leap', u'final']
[u'cleric', u'move', u'quell', u'najaf', u'violenc']
[u'tougher', u'water', u'ban', u'loom']
[u'tough', u'open', u'hewitt']
[u'tourist', u'go', u'flame']
[u'townsvill', u'label', u'racist', u'citi']
[u'tuvalu', u'govt', u'fall', u'follow', u'confid', u'motion']
[u'union', u'threaten', u'industri', u'unrest', u'forestri']
[u'armi', u'confirm', u'tortur', u'ghraib']
[u'court', u'overturn', u'yahoo', u'nazi', u'memorabilia', u'rule']
[u'cyclist', u'win', u'tamar', u'valley', u'round', u'nation']
[u'warn', u'bowler', u'reprimand']
[u'white', u'powder', u'spark', u'sydney', u'airport', u'investig']
[u'wind', u'farm', u'propon', u'criticis', u'protest']
[u'woman', u'lose', u'compo', u'fight', u'diseas', u'fear']
[u'youth', u'curfew', u'face', u'court']
[u'zimbabwean', u'opposit', u'boycott', u'elect']
[u'zimbabw', u'opposit', u'scar', u'lose', u'elect']
[u'broadcast', u'digit', u'plan']
[u'ghraib', u'inquiri', u'slam', u'aust', u'soldier']
[u'ghraib', u'lawyer', u'inquiri']
[u'accc', u'address', u'doctor', u'roster', u'price']
[u'acquit', u'biki', u'state']
[u'adelong', u'bank', u'lender']
[u'advertis', u'boom', u'boost', u'prime', u'profit']
[u'airport', u'receiv', u'secur', u'fund', u'boost']
[u'albani', u'adopt', u'adventur', u'theme', u'exhibit']
[u'ord', u'reach', u'record', u'high']
[u'redirect', u'tourism', u'fund', u'region']
[u'anderson', u'upbeat', u'northern', u'rail', u'solut']
[u'assam', u'bomb', u'design', u'trigger', u'panic']
[u'atsb', u'highlight', u'fatal', u'plane', u'crash', u'mistak']
[u'aust', u'name', u'iraq', u'kuwait', u'ambassador']
[u'baggaley', u'pip', u'bronz', u'final']
[u'beatti', u'wont', u'elabor', u'rwandan', u'secur', u'incid']
[u'sign', u'japan', u'deal']
[u'profit', u'gunn', u'timber', u'firm']
[u'biki', u'clear', u'bomb', u'arson', u'attack']
[u'blue', u'determin', u'pie']
[u'blue', u'magpi', u'thriller']
[u'bomber', u'hang', u'boot']
[u'bomb', u'trace', u'russian', u'plane', u'wreck']
[u'brisban', u'parad', u'welcom', u'olympian', u'home']
[u'british', u'support', u'anti', u'log', u'campaign']
[u'briton', u'guilti', u'coup', u'plot', u'charg']
[u'break', u'hill', u'get', u'bigger', u'slice', u'revenu']
[u'bronco', u'lose', u'berrigan', u'bunni', u'clash']
[u'bulk', u'bill', u'rise', u'show', u'polici', u'work', u'abbott']
[u'bulldog', u'humbl', u'hapless', u'knight']
[u'bush', u'admit', u'iraq', u'miscalcul']
[u'plan', u'tackl', u'indigen', u'cancer', u'rate']
[u'caltex', u'profit', u'surg']
[u'campaign', u'intensifi', u'machin']
[u'carr', u'call', u'branch', u'clean']
[u'caus', u'ambul', u'crash']
[u'cemeteri', u'vandal', u'leav', u'resid', u'horrifi']
[u'centroc', u'deal', u'save', u'council', u'thousand']
[u'china', u'end', u'cuban', u'volleybal', u'reign']
[u'chopper', u'firm', u'promis', u'million', u'townsvill']
[u'clark', u'win', u'atsic', u'suspens', u'appeal']
[u'cleaner', u'trash', u'tate', u'artwork']
[u'cloet', u'fli', u'high', u'jump', u'final']
[u'commut', u'warn', u'rail', u'line', u'woe']
[u'compo', u'bring', u'hardship', u'lawyer']
[u'cooper', u'spill', u'declin']
[u'coronor', u'find', u'polic', u'health', u'fail', u'dead']
[u'cosgrov', u'begin', u'china', u'visit']
[u'council', u'hold', u'wind', u'farm', u'zone', u'talk']
[u'councillor', u'odd', u'minist', u'caravan', u'park']
[u'council', u'govt', u'focus', u'powerlin', u'veget']
[u'council', u'struggl', u'veget', u'manag', u'studi']
[u'council', u'upset', u'land', u'advic']
[u'court', u'deni', u'murder', u'contact']
[u'court', u'name', u'launceston', u'danger', u'crimin']
[u'court', u'kimber', u'nativ', u'titl', u'claim']
[u'cowboy', u'slay', u'tiger', u'spot']
[u'cowboy', u'hope', u'slay', u'tiger', u'spot']
[u'crash', u'ordeal', u'put', u'driver', u'hospit']
[u'crawford', u'deni', u'gatlin', u'sprint', u'doubl']
[u'crawford', u'win', u'crowd', u'jeer']
[u'dahl', u'win', u'women', u'mountain', u'bike', u'gold', u'medal']
[u'daintre', u'grant', u'help', u'conserv']
[u'dampier', u'bunburi', u'pipelin', u'sale', u'stall']
[u'deak', u'disqualifi', u'korzeniowski', u'take', u'fourth']
[u'deak', u'assess', u'techniqu']
[u'defend', u'champion', u'capriati', u'oust', u'haven']
[u'diamond', u'reveal', u'australian', u'tour', u'date']
[u'downer', u'believ', u'polic', u'order']
[u'downer', u'bali', u'remark', u'help']
[u'driver', u'get', u'correct', u'order', u'polic', u'chase']
[u'drought', u'rais', u'countri', u'women', u'stress', u'level']
[u'dump', u'plan', u'pose', u'environment', u'threat']
[u'dynamik', u'face', u'illeg', u'test', u'fine']
[u'egyptian', u'boxer', u'disqualifi', u'semi', u'final']
[u'elect', u'avoid', u'parliamentari', u'scrutini']
[u'offici', u'didnt', u'question', u'child', u'prostitut']
[u'exhibit', u'centr', u'tip', u'attract', u'event']
[u'famili', u'hire', u'secur', u'guard', u'protect']
[u'fear', u'air', u'research', u'fund']
[u'fear', u'elect', u'delay', u'wine', u'break']
[u'final', u'round', u'regular', u'season', u'cafl', u'match']
[u'flamboy', u'ibrahim', u'end', u'egypt', u'gold', u'drought']
[u'forget', u'pursuit', u'belat', u'gold']
[u'liber', u'premier', u'farewel']
[u'union', u'boss', u'jail', u'offic', u'rampag']
[u'franc', u'denmark', u'cours', u'handbal', u'final']
[u'fraud', u'lawyer', u'jail', u'year']
[u'gallop', u'rule', u'coral', u'jetti', u'rethink']
[u'govt', u'face', u'compo', u'claim', u'nativ', u'titl', u'deal']
[u'govt', u'offer', u'compo', u'reef', u'fish']
[u'govt', u'compens', u'navi', u'disast', u'victim']
[u'green', u'group', u'air', u'bonnel', u'rezon', u'fear']
[u'hail', u'news', u'stonefruit', u'grower']
[u'heritag', u'offic', u'weigh', u'centuri', u'anchor']
[u'hewitt', u'move', u'long', u'island', u'quarter', u'final']
[u'home', u'sale', u'cosi', u'wwii', u'bunker']
[u'hous', u'group', u'get', u'fund', u'relief']
[u'howard', u'back', u'son', u'polit', u'spam', u'campaign']
[u'human', u'societi', u'attack', u'aerial', u'bait', u'plan']
[u'idol', u'star', u'noll', u'hospitalis', u'farm', u'accid']
[u'indonesia', u'criticis', u'lethal', u'missil', u'plan']
[u'invinc', u'sanchez', u'storm', u'gold']
[u'summon', u'hungarian', u'drug', u'test']
[u'iraqi', u'govt', u'accept', u'najaf', u'peac', u'deal']
[u'iraqi', u'kidnapp', u'kill', u'italian', u'journalist', u'jazeera']
[u'italian', u'govt', u'condemn', u'journalist', u'kill']
[u'jam', u'packer', u'chair', u'burswood', u'board']
[u'judg', u'grant', u'bushfir', u'inquiri', u'document', u'request']
[u'judg', u'reserv', u'gonzal', u'sentenc', u'decis']
[u'kaniva', u'retain', u'petrol', u'station']
[u'kenteri', u'pleas', u'crowd', u'support']
[u'kipket', u'cours', u'glori']
[u'knight', u'simpson', u'return', u'bulldog', u'clash']
[u'lashko', u'bow']
[u'latham', u'mysteri']
[u'lawyer', u'lose', u'appeal', u'drug', u'convict']
[u'lawyer', u'bushfir', u'inquiri', u'challeng']
[u'soccer', u'safeti', u'child', u'death', u'coron']
[u'lead', u'women', u'singl', u'contend']
[u'loom', u'redund', u'prompt', u'joineri', u'strike']
[u'mackay', u'sentenc', u'appeal', u'uphold']
[u'macquari', u'freez', u'hec', u'fee']
[u'die', u'hotel', u'park', u'accid']
[u'jail', u'tri', u'partner']
[u'surviv', u'plung', u'escap', u'train', u'collis']
[u'wound', u'drive', u'shoot']
[u'mayor', u'speak', u'chariti', u'theft']
[u'mental', u'health', u'patient', u'miss']
[u'mental', u'health', u'worker', u'seek', u'boost']
[u'merger', u'cost', u'wipe', u'westfield', u'profit']
[u'mildura', u'council', u'green', u'light', u'marina', u'plan']
[u'milit', u'claim', u'russian', u'blast']
[u'militia', u'welcom', u'pilgrim', u'najaf', u'shrine']
[u'minara', u'record', u'profit', u'turnaround']
[u'group', u'back', u'plan', u'chang']
[u'minist', u'agre', u'power', u'consumpt']
[u'minist', u'extend', u'applianc', u'energi', u'rat']
[u'monti', u'ryder', u'stand']
[u'motorcyclist', u'die', u'truck', u'crash']
[u'muslim', u'cleric', u'question', u'terror', u'charg']
[u'narracan', u'death', u'prompt', u'polic', u'probe']
[u'nation', u'stand', u'individu', u'candid']
[u'newborough', u'death', u'suspici', u'polic']
[u'heat', u'pool', u'open']
[u'jetstar', u'timet', u'boost', u'tourism']
[u'chief', u'seek', u'fairer', u'fund', u'deal']
[u'polic', u'beat']
[u'woorabinda', u'school', u'build', u'open']
[u'compo', u'bunburi', u'blackout']
[u'offic', u'sierra', u'leon', u'abus', u'case', u'adjourn']
[u'price', u'fall', u'despit', u'iraq', u'pipelin', u'attack']
[u'okan', u'find', u'leav', u'look', u'answer']
[u'olympian', u'tickertap', u'honour', u'sydney']
[u'outgo', u'chamber', u'chief', u'highlight', u'challeng']
[u'pakistan', u'confid', u'defeat', u'aussi']
[u'pakistan', u'fifth', u'place', u'men', u'hockey']
[u'paralympian', u'win', u'appeal', u'compet', u'game']
[u'pastoralist', u'welcom', u'kimberley', u'titl', u'rule']
[u'patient', u'incub']
[u'pinochet', u'lose', u'prosecut', u'immun']
[u'plane', u'threat', u'accus', u'charg', u'dismiss']
[u'campaign', u'margin', u'labor', u'seat']
[u'releas', u'children', u'overboard', u'document']
[u'remain', u'elect']
[u'poki', u'revenu', u'growth', u'prove', u'need', u'cull', u'govt']
[u'polic', u'boost', u'england']
[u'polic', u'disrupt', u'chat', u'room', u'teen', u'rendezv']
[u'polic', u'investig', u'lake', u'bodi']
[u'policeman', u'widow', u'repres', u'victim', u'crime']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'question', u'boy', u'school', u'assault']
[u'polic', u'search', u'pair', u'injur', u'child']
[u'polic', u'charg', u'pair', u'umpir', u'assault']
[u'port', u'unchang', u'home', u'derbi']
[u'powel', u'announc', u'retir']
[u'premier', u'oppos', u'cattl', u'plan', u'exempt']
[u'prison', u'tutor', u'affair', u'claim', u'dismiss']
[u'psychiatr', u'report', u'delay', u'theft', u'case']
[u'qantaslink', u'trial', u'extra', u'roma', u'flight']
[u'blame', u'nation', u'grid', u'blackout']
[u'quad', u'bike', u'group', u'reject', u'tour', u'concern']
[u'queensland', u'urg', u'blood']
[u'radcliff', u'metr']
[u'rann', u'challeng', u'futur', u'address', u'climat', u'chang']
[u'rehab', u'drive', u'maradona', u'claim', u'lawyer']
[u'research', u'delv', u'homeless', u'plight']
[u'research', u'har', u'banana', u'power']
[u'review', u'mildura', u'council', u'spotlight']
[u'rmit', u'head', u'resign', u'revenu', u'shortfal']
[u'rogg', u'refus', u'duplic', u'medal', u'request']
[u'rooney', u'hand', u'transfer', u'request']
[u'rwandan', u'presid', u'clear', u'bring', u'arm', u'guard']
[u'sack', u'rohd', u'consid', u'assist', u'role']
[u'sadr', u'hand', u'mosqu', u'key']
[u'union', u'consid', u'join', u'hardi']
[u'search', u'expand', u'miss', u'deckhand']
[u'senat', u'doubt', u'govt', u'heed', u'atsic', u'inquiri']
[u'sentinel', u'fin', u'worker', u'electrocut']
[u'sharapova', u'lead', u'russian', u'charg', u'open']
[u'small', u'asteroid', u'give', u'earth', u'closest', u'shave']
[u'stanozolol', u'taker', u'stupid', u'pound', u'say']
[u'state', u'funer', u'honour', u'veteran']
[u'state', u'blame', u'tasmanian', u'health', u'issu']
[u'resolut', u'forestri', u'disput']
[u'stricter', u'regul', u'govern', u'childcar']
[u'student', u'immunis', u'whoop', u'cough']
[u'sudan', u'dismiss', u'demand', u'disarm', u'militia']
[u'suncorp', u'post', u'record', u'profit']
[u'support', u'grow', u'nation', u'competit', u'polici']
[u'teacher', u'transfer', u'talk', u'fail']
[u'teenag', u'give', u'adult', u'term', u'arm', u'robberi']
[u'tourism', u'plan', u'highlight', u'hunter', u'visitor', u'slump']
[u'townsvill', u'genocid', u'claim', u'laughabl', u'mayor']
[u'track', u'star', u'centr', u'stage']
[u'train', u'program', u'improv', u'indigen', u'healthcar']
[u'truss', u'extend', u'drought', u'assist']
[u'union', u'warn', u'worker', u'awa']
[u'univers', u'aim', u'excel', u'indigen']
[u'seek', u'locust', u'plagu', u'nation']
[u'admit', u'translat', u'error', u'guantanamo']
[u'champ', u'greer', u'head', u'javelin', u'qualifi']
[u'judg', u'rule', u'partial', u'birth', u'abort']
[u'market', u'eas', u'slight']
[u'visa', u'expiri', u'worri', u'injur', u'girl', u'famili']
[u'wallabi', u'lose', u'second', u'coach']
[u'wambach', u'strike', u'give', u'soccer', u'gold']
[u'warburton', u'perman', u'polic', u'station']
[u'word', u'erupt', u'health', u'servic', u'locat']
[u'wilkinson', u'face', u'match', u'test']
[u'wind', u'farm', u'plan', u'undergo', u'test']
[u'wine', u'centr', u'moot', u'gold', u'coast']
[u'wine', u'compani', u'report', u'profit', u'increas']
[u'women', u'face', u'uncertain', u'futur', u'levi', u'closur']
[u'wool', u'sale', u'slight', u'market', u'improv']
[u'veteran', u'farewel']
[u'abbott', u'play', u'elect', u'specul']
[u'absalon', u'give', u'franc', u'cycl', u'gold']
[u'academ', u'shoot', u'dead', u'northern', u'iraq']
[u'allen', u'choos', u'carri', u'austrian', u'flag', u'close']
[u'anzac', u'rescu', u'indonesian', u'freighter', u'crew']
[u'argentina', u'end', u'star', u'olymp', u'reign']
[u'athlet', u'chief', u'scold', u'local', u'fan', u'jeer']
[u'aussi', u'brisco', u'end', u'belgian', u'debut', u'hospit']
[u'aussi', u'kayak', u'finish', u'silver', u'line']
[u'aussi', u'knock', u'taekwondo', u'quarter']
[u'aussi', u'shark', u'edg']
[u'australia', u'final']
[u'australia', u'pakistan', u'merci', u'dizzi']
[u'austrian', u'pair', u'retain', u'tornado', u'titl']
[u'move', u'protect', u'rail', u'network']
[u'merino']
[u'bodi', u'turkish', u'hostag', u'iraq']
[u'brave', u'opal', u'fall', u'short', u'silver']
[u'bulk', u'bill', u'rat', u'mislead', u'latham', u'say']
[u'bush', u'chief', u'temporari', u'expand', u'power']
[u'canberra', u'cop', u'join', u'mission']
[u'canberra', u'driver', u'warn', u'roo']
[u'chelsea', u'readi', u'pile', u'woe', u'southampton']
[u'church', u'woo', u'reluct', u'worshipp', u'chocol']
[u'classi', u'argentina', u'year', u'wait']
[u'cold', u'shower', u'dutch', u'urin', u'public']
[u'commiss', u'recommend', u'water', u'price', u'hike']
[u'cuban', u'power', u'gold', u'medal', u'fight']
[u'denmark', u'scar', u'fraud']
[u'doctor', u'disput', u'abbott', u'bulk', u'bill', u'claim']
[u'doyl', u'point', u'finger', u'govt', u'rmit', u'troubl']
[u'driver', u'clock']
[u'weather', u'bring', u'forward', u'danger', u'period']
[u'dutch', u'abort', u'boat', u'ask', u'enter', u'portugues', u'port']
[u'eagl', u'docker', u'fight', u'final', u'spot']
[u'eagl', u'demon']
[u'egyptian', u'boxer', u'make', u'olymp', u'histori']
[u'nino', u'possibl', u'return', u'rais', u'fear']
[u'eritrean', u'hijack', u'plane', u'expuls', u'libya']
[u'farmer', u'brace', u'locust', u'season']
[u'firefight', u'medal', u'angri']
[u'gallop', u'keep', u'elect', u'option', u'open']
[u'golden', u'goal', u'give', u'germani', u'hockey', u'bronz']
[u'govt', u'deni', u'spam', u'campaign', u'break']
[u'habib', u'laywer', u'cancel', u'visit']
[u'hall', u'fame', u'recognis', u'transport', u'worker', u'report']
[u'hammer', u'throw', u'champion', u'hunt', u'dope', u'test', u'mysteri']
[u'helm', u'pole', u'posit', u'platform', u'final']
[u'helm', u'target', u'aussi', u'platform', u'doubl']
[u'hewitt', u'loom', u'spoiler', u'paradorn', u'mileston']
[u'hid', u'shrug', u'labor', u'attack']
[u'howard', u'warn', u'union', u'power', u'latham']
[u'hungari', u'serbia', u'meet', u'men', u'water', u'polo', u'final']
[u'hungari', u'voro', u'win', u'women', u'pentathlon']
[u'index', u'rank', u'firm', u'social', u'respons']
[u'iraq', u'seek', u'mend', u'relat', u'iran']
[u'ireland', u'oconnor', u'win', u'showjump', u'gold']
[u'irwin', u'impress', u'rabbitoh']
[u'italian', u'stun', u'lithuania', u'reach', u'basketbal', u'final']
[u'itali', u'brazil', u'reach', u'volleybal', u'final']
[u'itali', u'edg', u'iraq', u'soccer', u'bronz']
[u'think', u'say', u'stun', u'runner']
[u'jamaica', u'women', u'relay', u'mistak']
[u'johnson', u'join', u'funk', u'connecticut', u'lead']
[u'khan', u'reach', u'gold', u'medal', u'match']
[u'kookaburra', u'clinch', u'histor', u'gold']
[u'kookaburra', u'laugh', u'golden', u'breakthrough']
[u'labor', u'blame', u'vanston', u'clark', u'bungl']
[u'labor', u'candid', u'join', u'prison', u'protest']
[u'labor', u'plan', u'tropic', u'research', u'centr']
[u'lack', u'oncolog', u'unit', u'traumat', u'patient']
[u'leader', u'trade', u'blow', u'quasi', u'campaign']
[u'lion', u'send', u'warn', u'final', u'rival']
[u'win', u'hurdl', u'gold', u'equal']
[u'loss', u'saint', u'leav', u'freo', u'knife', u'edg']
[u'loss', u'saint', u'leav', u'freo', u'knife', u'edg']
[u'mack', u'go', u'pole', u'vault', u'gold']
[u'major', u'temperatur', u'rise', u'record', u'arctic']
[u'matthew', u'dismiss', u'port', u'game']
[u'matthew', u'dismiss', u'williamss', u'game']
[u'menendez', u'win', u'javelin', u'eas']
[u'microsoft', u'promis']
[u'minist', u'deni', u'conflict', u'poki']
[u'minist', u'question', u'fish', u'packag', u'delay']
[u'natroad', u'back', u'heavi', u'fin', u'speed', u'truck']
[u'navi', u'rescu', u'near', u'singapor']
[u'pakistani', u'elect', u'despit', u'boycott']
[u'poll', u'give', u'labor', u'win', u'lead']
[u'polic', u'review', u'develop', u'weapon', u'check']
[u'price', u'eas', u'fear', u'suppli', u'disrupt', u'fade']
[u'price', u'firm', u'week', u'declin']
[u'opal', u'meet', u'gold']
[u'panther', u'strong', u'eel']
[u'pentagon', u'offici', u'suspect', u'isra']
[u'pilot', u'die', u'ultralight', u'crash']
[u'eye', u'harradin', u'senat', u'seat']
[u'stand', u'firm', u'overboard', u'duel']
[u'polic', u'remov', u'protest']
[u'powel', u'cancel', u'athen', u'visit']
[u'power', u'firm', u'fight', u'week', u'strike', u'court']
[u'prison', u'protest', u'spark', u'polit']
[u'examin', u'secur', u'camera', u'option']
[u'raikkonen', u'lead', u'crash', u'belgian', u'practic']
[u'cross', u'fear', u'outsid', u'darfur', u'camp']
[u'rock', u'act', u'side', u'campaign']
[u'russia', u'complet', u'olymp', u'synchro', u'sweep', u'team']
[u'russian', u'bovina', u'reach', u'haven', u'final']
[u'russian', u'focus', u'passeng', u'crash', u'inquiri']
[u'sadr', u'surrend', u'control', u'shrine']
[u'sangakkara', u'lead', u'belt', u'protea']
[u'korea', u'women', u'handbal', u'final']
[u'south', u'africa', u'deni', u'talk', u'malabo', u'extradit']
[u'south', u'australia', u'plan', u'communiti', u'scienc', u'lesson']
[u'south', u'stand', u'tall', u'thrill', u'draw']
[u'storm', u'outmuscl', u'shark']
[u'student', u'protest', u'attack']
[u'swan', u'lock', u'final']
[u'swift', u'reveng', u'netbal', u'final']
[u'swift', u'titl', u'thriller']
[u'taekwondo', u'gold', u'korea', u'iran']
[u'teacher', u'encourag', u'polic', u'check']
[u'thai', u'bantamweight', u'fight', u'cuban', u'champ', u'gold']
[u'thompson', u'fourth', u'russian', u'clean', u'sweep', u'long', u'jump']
[u'trenton', u'knock', u'taekwondo', u'quarter']
[u'charg', u'perth', u'racist', u'attack']
[u'unherald', u'xing', u'stun', u'ethiopian']
[u'univers', u'build', u'hous', u'hemp']
[u'angri', u'pressur', u'hamm']
[u'women', u'basketbal', u'final']
[u'vandal', u'attack', u'adelaid', u'high', u'school']
[u'weightlift', u'silver', u'medallist', u'fail', u'drug', u'test']
[u'wit', u'warn', u'graphic', u'port', u'arthur', u'video']
[u'world', u'champ', u'croatia', u'reach', u'men', u'handbal', u'final']
[u'yemen', u'jail', u'limburg', u'envoy', u'murder', u'plot']
[u'accus', u'racist', u'friend', u'say']
[u'adelaid', u'host', u'kidney', u'diseas', u'confer']
[u'afghan', u'school', u'blast', u'kill']
[u'argentina', u'toppl', u'itali', u'basketbal', u'gold']
[u'arsonist', u'blame', u'church']
[u'aussi', u'shark', u'croatia']
[u'aussi', u'surpris', u'relay', u'silver']
[u'australian', u'polic', u'mission']
[u'beatti', u'want', u'clean', u'campaign']
[u'bomber', u'muzzl', u'dog', u'scrape']
[u'bomb', u'kill', u'chechnya']
[u'borzakovskiy', u'snatch', u'men', u'gold']
[u'attack', u'melbourn', u'parti']
[u'brave', u'opal', u'silver']
[u'british', u'stun', u'sprint', u'relay']
[u'bush', u'tout', u'intellig', u'move']
[u'capel', u'take', u'relay', u'team', u'posit', u'test']
[u'cat', u'clip', u'meek', u'hawk', u'ahead', u'final']
[u'china', u'land', u'women', u'volleybal', u'gold']
[u'china', u'send', u'envoy', u'korea']
[u'clash', u'athen', u'olymp', u'final']
[u'cowboy', u'final', u'berth']
[u'crowd', u'flock', u'river', u'firework', u'spectacular']
[u'cuba', u'bronz', u'women', u'volleybal']
[u'darfur', u'deleg', u'urg', u'return', u'talk']
[u'dark', u'chocol', u'help', u'blood', u'flow']
[u'democrat', u'announc', u'team', u'elect']
[u'denmark', u'women', u'handbal', u'gold']
[u'disabl', u'children', u'access', u'taxi', u'subsidi']
[u'dragon', u'amaz', u'comeback']
[u'dream', u'team', u'salvag', u'pride', u'basketbal', u'bronz']
[u'egyptian', u'boxer', u'fail', u'medic']
[u'elect', u'wait', u'game', u'continu']
[u'guerrouj', u'beat', u'bekel', u'histor', u'doubl']
[u'experi', u'factor', u'leagu', u'loss', u'lion']
[u'explos', u'crash', u'russian', u'jet']
[u'firefight', u'criticis', u'medal', u'hand']
[u'franc', u'assess', u'iraq', u'hostag', u'claim']
[u'franc', u'scrambl', u'free', u'kidnap', u'journalist']
[u'funk', u'edg', u'ahead', u'connecticut']
[u'protest', u'condemn', u'call', u'heavi']
[u'girl', u'save', u'home']
[u'goodwil', u'visit', u'aim', u'strengthen', u'australia']
[u'govt', u'appeal', u'clark', u'rule']
[u'green', u'push', u'year', u'fix', u'term']
[u'green', u'shoot', u'senat', u'seat']
[u'gunner', u'chelsea', u'march', u'unit', u'falter']
[u'helm', u'snatch', u'dive', u'silver']
[u'hewitt', u'advanc', u'final']
[u'high', u'price', u'stay', u'analyst', u'say']
[u'histor', u'church', u'destroy']
[u'holm', u'pull', u'golden', u'doubl']
[u'hous', u'industri', u'welcom', u'land', u'ballot']
[u'illeg', u'fish', u'boat', u'destroy']
[u'impress', u'russian', u'bovina', u'win', u'haven', u'open']
[u'chief', u'hail', u'awaken', u'asia', u'athen']
[u'iraq', u'group', u'take', u'french', u'citizen', u'hostag', u'report']
[u'iraqi', u'busi', u'prepar', u'trade', u'fair']
[u'iraqi', u'minist', u'meet', u'sistani']
[u'israel', u'deni', u'spi']
[u'time', u'chang', u'latham', u'say']
[u'kerri', u'tour', u'duti', u'heroic', u'bush', u'say']
[u'khan', u'stop', u'cuba', u'finish', u'box', u'gold']
[u'lewinski', u'loo', u'defend', u'sell', u'stori']
[u'liber', u'push', u'compulsori', u'water', u'fluorid']
[u'light', u'plane', u'wreckag', u'salvag']
[u'lose', u'nightmar', u'smith']
[u'margin', u'seat', u'elect', u'result']
[u'milit', u'kill', u'detain', u'afghan', u'oper']
[u'mine', u'compani', u'seek', u'licenc', u'west', u'coast']
[u'minist', u'plan', u'toad', u'block']
[u'minist', u'mission', u'meet', u'sistani', u'najaf']
[u'minor', u'parti', u'govt', u'notic']
[u'moroccan', u'crash', u'kill']
[u'muster', u'expect', u'record', u'crowd']
[u'water', u'treatment', u'plant', u'northern', u'midland']
[u'norwegian', u'outsid', u'win', u'javelin', u'gold']
[u'philippin', u'face', u'huge', u'flood']
[u'call', u'poll']
[u'announc', u'elect']
[u'poker', u'machin', u'tax', u'caus', u'loss', u'club']
[u'poker', u'machin', u'tax', u'cost', u'job']
[u'polic', u'probe', u'port', u'arthur', u'tape', u'sale']
[u'power', u'minor', u'premiership']
[u'premier', u'highlight', u'import', u'margin', u'seat']
[u'russian', u'minist', u'favourit', u'chechen', u'poll']
[u'public', u'servant', u'oppos', u'research', u'station', u'closur']
[u'public', u'servant', u'stand', u'firm', u'rise', u'claim']
[u'queensland', u'shuck', u'runner']
[u'rebel', u'walk', u'sudan', u'peac', u'talk']
[u'rogg', u'give', u'mark', u'athen']
[u'rooster', u'hold', u'warrior']
[u'russia', u'group', u'rhythmic', u'gold']
[u'sanderson', u'lone', u'wrestl', u'gold', u'success']
[u'introduc', u'hoon', u'law']
[u'second', u'charg', u'murder']
[u'secur', u'tight', u'chechen', u'poll']
[u'silver', u'line', u'australia']
[u'hold', u'newcastl', u'street', u'brawl']
[u'polic', u'kill', u'peopl', u'wound', u'iraq']
[u'korea', u'lodg', u'appeal', u'hamm', u'medal']
[u'slesarenko', u'wreck', u'cloet', u'high', u'jump', u'dream']
[u'soli', u'maintain', u'cuban', u'heavyweight', u'grip']
[u'spanish', u'crash', u'kill', u'injur']
[u'suburb', u'push', u'perman', u'polic', u'presenc']
[u'symond', u'lead', u'australia', u'triangular']
[u'tasmania', u'train', u'doctor', u'emerg']
[u'thoma', u'carri', u'flag', u'close', u'ceremoni']
[u'threat', u'demand', u'breed', u'scienc']
[u'tobacco', u'chief', u'say', u'industri', u'cooper']
[u'trulli', u'take', u'pole', u'raini']
[u'children', u'kill', u'road', u'smash']
[u'hold', u'bomb', u'plot']
[u'kill', u'road', u'smash']
[u'typhoon', u'pound', u'southern', u'japan']
[u'conserv', u'leader', u'accus', u'bush', u'protect']
[u'ukrain', u'snatch', u'bronz', u'handbal']
[u'unit', u'rais', u'rooney']
[u'women', u'relay', u'gold']
[u'china', u'taekwondo', u'gold']
[u'veteran', u'famili', u'rememb', u'legaci', u'help']
[u'voic', u'bart', u'simpson', u'enjoy', u'anonym', u'fame']
[u'voter', u'judg', u'credibl', u'lee', u'say']
[u'wilkinson', u'complet', u'game', u'month']
[u'wrestler', u'lifter', u'fail', u'drug', u'test']
[u'yothu', u'yindi', u'bag', u'music', u'prize']
[u'need', u'iran', u'remind']
[u'anti', u'bush', u'protest', u'arrest']
[u'hurt', u'english', u'grandstand', u'collaps']
[u'tree', u'plant', u'sydney', u'domain']
[u'abbott', u'begin', u'health', u'campaign']
[u'accid', u'put', u'pedestrian', u'hospit']
[u'accus', u'nurs', u'aggress', u'patient']
[u'accus', u'underworld', u'killer', u'challeng', u'direct']
[u'advis', u'appear', u'rezon', u'inquiri']
[u'agforc', u'seek', u'certainti', u'feder', u'poll']
[u'alburi', u'member', u'criticis', u'health', u'consult']
[u'alic', u'spring', u'festiv', u'launch']
[u'qaeda', u'taliban', u'claim', u'respons', u'kabul']
[u'amateur', u'archaeologist', u'track', u'lose', u'tomb', u'cheop']
[u'anti', u'bush', u'ralli', u'hit', u'york', u'street']
[u'apologis', u'children', u'abus', u'care', u'report']
[u'argyl', u'court', u'man', u'death']
[u'arm', u'race', u'spiral', u'control']
[u'aussi', u'dollar', u'drop', u'poll', u'call']
[u'austin', u'win', u'sudden', u'death']
[u'australian', u'final', u'cher']
[u'bartlett', u'predict', u'difficult', u'poll', u'democrat']
[u'beatti', u'want', u'electr', u'meet']
[u'beckham', u'expect', u'babi', u'number']
[u'elect', u'battl', u'expect', u'bass']
[u'birdsvill', u'race', u'warn', u'motorist']
[u'brisban', u'hotel', u'occup']
[u'brisban', u'tunnel', u'plan', u'stand']
[u'busi', u'group', u'issu', u'elect', u'wish', u'list']
[u'buyer', u'southern', u'poodl']
[u'rememb', u'outback', u'polic']
[u'campaign', u'begin', u'gippsland']
[u'campaign', u'begin', u'hinkler', u'capricornia']
[u'campaign', u'heat', u'north', u'coast']
[u'canberra', u'communiti', u'experi', u'huge', u'popul']
[u'canberra', u'rain', u'expect', u'eas']
[u'canberra', u'rain', u'continu']
[u'central', u'asia', u'japan']
[u'chechen', u'elect', u'kremlin', u'candid']
[u'chines', u'polic', u'hold', u'australian', u'protest']
[u'close', u'dragon']
[u'cole', u'myer', u'job', u'outsourc']
[u'compani', u'gross', u'oper', u'profit']
[u'concern', u'rail', u'line', u'proxim', u'coast']
[u'concern', u'rais', u'council', u'leader', u'trip']
[u'coron', u'clear', u'hospit', u'death']
[u'costello', u'refus', u'rule', u'leadership']
[u'costello', u'rule', u'leadership']
[u'costello', u'unconcern', u'current', u'account', u'deficit']
[u'costello', u'warn', u'terrorist', u'influenc']
[u'court', u'appear', u'drug', u'raid']
[u'court', u'reject', u'appeal', u'milton', u'develop']
[u'darwin', u'seat', u'elect', u'spotlight']
[u'debat', u'continu', u'north', u'coast', u'rail']
[u'democrat', u'fight', u'opera', u'singer', u'visa']
[u'democrat', u'leader', u'cast', u'view', u'elect']
[u'dept', u'store', u'plan', u'reject', u'zone', u'hitch']
[u'devil', u'good', u'bomber', u'york', u'park', u'thriller']
[u'doctor', u'fluorid', u'queensland']
[u'downer', u'deni', u'islam', u'asia', u'help', u'terrorist']
[u'driveway', u'death', u'suspici', u'polic']
[u'drought', u'extend', u'bourk', u'brewarrina']
[u'dwyer', u'talk', u'surpris', u'silver', u'medal']
[u'east', u'timor', u'mark', u'referendum', u'vote']
[u'elect', u'campaign', u'build', u'illawarra']
[u'elect', u'campaign', u'underway', u'gold', u'coast']
[u'elect', u'spotlight', u'fall', u'margin', u'seat']
[u'employ', u'opportun', u'festiv', u'revamp']
[u'england', u'veteran', u'face', u'squeez']
[u'timor', u'confid', u'secur', u'timor', u'right']
[u'exhibit', u'put', u'focus', u'central', u'aust']
[u'famili', u'croc', u'victim', u'call', u'swim']
[u'farewel', u'athen']
[u'farmer', u'await', u'impend', u'locust', u'threat']
[u'farmer', u'welcom', u'rain']
[u'fatal', u'accid', u'quirindi']
[u'fatal', u'crash', u'spark', u'driver', u'caution']
[u'fear', u'rehabilit', u'ahead']
[u'feder', u'elect', u'campaign', u'barker', u'commenc']
[u'feder', u'poll', u'complic', u'elect']
[u'govt', u'urg', u'decid', u'crocodil', u'manag']
[u'flood', u'warn', u'upper', u'murray', u'river']
[u'push', u'rail', u'access', u'challeng']
[u'food', u'shortag', u'forc', u'dingo', u'town']
[u'footbal', u'season', u'busi']
[u'foster', u'children', u'welcom', u'child', u'abus', u'report']
[u'magistr', u'appeal', u'convict']
[u'face', u'judiciari']
[u'franc', u'stick', u'headscarf']
[u'french', u'minist', u'attempt', u'secur', u'releas']
[u'fund', u'need', u'stop', u'spread', u'cane', u'toad']
[u'gehrig', u'clinch', u'coleman', u'medal']
[u'undergo', u'knee', u'surgeri']
[u'goddard', u'stick', u'saint']
[u'govern', u'reintroduc', u'plat', u'driver']
[u'govt', u'advertis', u'poker', u'machin']
[u'govt', u'plan', u'marina', u'project', u'media', u'blitz']
[u'govt', u'urg', u'fund', u'kidney', u'diseas', u'manag']
[u'green', u'confid', u'elect', u'success']
[u'grower', u'wont', u'bend', u'opposit', u'banana', u'import']
[u'guid', u'offer', u'help', u'fight', u'rural', u'crime']
[u'havilah', u'confid', u'miner']
[u'headless', u'skeleton', u'pacif', u'graveyard']
[u'healthscop', u'seek', u'earli', u'hospit', u'handov']
[u'henti', u'indec', u'assault', u'hear', u'postpon']
[u'heritag', u'list', u'seek', u'luna', u'park']
[u'artist', u'clean', u'award']
[u'hire', u'chang', u'alic', u'airport']
[u'hotlin', u'marin', u'crime', u'crackdown']
[u'howard', u'costello', u'present', u'unit']
[u'howard', u'latham', u'airwav']
[u'hundr', u'evacu', u'taiwan', u'slide']
[u'hunter', u'forum', u'put', u'focus', u'unemploy']
[u'independ', u'school', u'resist', u'curriculum', u'restrict']
[u'inquest', u'begin', u'croc', u'attack']
[u'kalgoorli', u'name', u'john', u'volunt', u'year']
[u'kalgoorli', u'member', u'push', u'mine', u'scheme']
[u'king', u'weigh', u'wentworth', u'option']
[u'knight', u'appeal', u'newton', u'suspens']
[u'knight', u'seek', u'leav', u'appeal', u'newton', u'suspens']
[u'kremlin', u'tip', u'chechen', u'poll']
[u'labor', u'call', u'kid', u'overboard', u'inquiri']
[u'labor', u'promis', u'reef', u'research', u'centr', u'fund']
[u'labor', u'shrug', u'rate', u'specul']
[u'latham', u'accus', u'tell', u'porki']
[u'latham', u'anger', u'question', u'time', u'cancel']
[u'latham', u'lie', u'nation', u'payrol']
[u'latham', u'restat', u'troop', u'home', u'christma', u'pledg']
[u'latham', u'forestri', u'announc']
[u'lawyer', u'launch', u'legal', u'free', u'bashir']
[u'liber', u'like', u'retain', u'seat', u'forrest']
[u'lib', u'hope', u'margin', u'ballarat']
[u'libyan', u'win', u'middl', u'east', u'crown']
[u'lingiari', u'campaign', u'focus', u'indigen', u'issu']
[u'lion', u'better', u'say', u'scott']
[u'lion', u'better', u'say', u'scott']
[u'livestock', u'produc', u'forum', u'glen', u'inn']
[u'local', u'govt', u'gather', u'boost', u'mackay', u'coffer']
[u'log', u'protest', u'form', u'blockad']
[u'jail', u'mother', u'death']
[u'kill', u'road', u'accid']
[u'child', u'charg']
[u'stab', u'alburi']
[u'marina', u'propon', u'pledg', u'environment', u'care']
[u'martin', u'opt', u'renew', u'ombudsman', u'term']
[u'mcewen', u'elector', u'margin', u'seat', u'watch']
[u'meat', u'group', u'upbeat', u'futur']
[u'medal', u'win', u'diver', u'plung', u'famili']
[u'meet', u'hear', u'health', u'merger', u'concern']
[u'minist', u'flag', u'novemb', u'start', u'stuart', u'highway']
[u'minist', u'discuss', u'report', u'ranger', u'leak']
[u'molik', u'open', u'flush', u'meadow', u'campaign']
[u'monti', u'donald', u'name', u'ryder', u'wildcard']
[u'hard', u'time', u'predict', u'timber', u'town']
[u'call', u'poster', u'protect']
[u'question', u'nurs', u'patient', u'ratio']
[u'murray', u'member', u'start', u'campaign']
[u'nation', u'parti', u'leader', u'confirm', u'leadership']
[u'neitz', u'chanc', u'play', u'don']
[u'netbal', u'squad', u'announc', u'tran', u'tasman', u'seri']
[u'england', u'candid', u'begin', u'campaign']
[u'polic', u'unit', u'tackl', u'mildura', u'crime']
[u'psychiatr', u'ward', u'sydney', u'hospit']
[u'nigerian', u'troop', u'darfur', u'peac', u'mission']
[u'immedi', u'plan', u'river']
[u'northern', u'restaur', u'name', u'tasmania', u'best']
[u'give', u'million', u'inform', u'unsolv']
[u'premier', u'pressur', u'parliament', u'resum']
[u'polic', u'seiz', u'weapon']
[u'nuclear', u'wast', u'dump', u'elect', u'issu']
[u'nation', u'founder', u'stand', u'senat']
[u'owen', u'set', u'ronaldo', u'real']
[u'plane', u'crash', u'victim', u'think', u'grazier']
[u'caution', u'voter', u'green']
[u'offer', u'latham', u'debat']
[u'urg', u'king', u'independ']
[u'polic', u'arrest', u'suspect', u'bridg', u'thiev']
[u'policemen', u'escap', u'flood', u'water']
[u'polic', u'probe', u'brawl']
[u'polic', u'question', u'port', u'arthur', u'tape']
[u'polic', u'search', u'arm', u'robberi', u'gang']
[u'polic', u'search', u'miss', u'melbourn']
[u'polic', u'warn', u'vigil', u'amid', u'crime', u'drop']
[u'port', u'confid', u'ahead', u'final', u'seri']
[u'port', u'piri', u'smelter', u'produc']
[u'prais', u'expans', u'justic', u'program']
[u'princ', u'highway', u'vote', u'worst', u'road']
[u'prior', u'charg', u'drop', u'hook', u'accus']
[u'public', u'liabil', u'cost', u'crippl', u'disabl']
[u'public', u'health', u'admin', u'chang']
[u'public', u'urg', u'help', u'shop', u'damag', u'driver']
[u'public', u'urg', u'bigger', u'child', u'abus', u'problem']
[u'rain', u'damag', u'break', u'hill']
[u'rate', u'rise', u'predict', u'regardless', u'elect', u'outcom']
[u'record', u'crowd', u'gympi', u'countri', u'music', u'muster']
[u'road', u'affirm', u'commit', u'calder', u'highway']
[u'robinson', u'win', u'silver']
[u'rockhampton', u'player', u'crucial', u'hockey', u'gold', u'medal']
[u'saint', u'hope', u'hamil', u'recoveri']
[u'seafood', u'market', u'welcom', u'compo', u'deal', u'chang']
[u'senat', u'reopen', u'children', u'overboard', u'inquiri']
[u'sentenc', u'reduc', u'killer']
[u'sexual', u'frustrat', u'chimp', u'take', u'smoke']
[u'shire', u'back', u'motocross', u'track', u'site']
[u'shire', u'give', u'charg', u'mine', u'hous']
[u'soldier', u'find', u'miss', u'woman']
[u'somar', u'push', u'alcohol', u'beer', u'plan']
[u'south', u'east', u'gear', u'elect', u'battl']
[u'southern', u'queensland', u'prepar', u'vote']
[u'sport', u'academi', u'offer', u'boost', u'local', u'athlet']
[u'starcraft', u'prais']
[u'star', u'gazer', u'treat', u'rare', u'blue', u'moon']
[u'georg', u'appoint', u'chairman']
[u'georg', u'faster', u'internet']
[u'stock', u'slide', u'elect', u'concern']
[u'stroke', u'kill', u'perth']
[u'studi', u'reveal', u'youth', u'drug']
[u'sudan', u'talk', u'deadlock']
[u'survey', u'highlight', u'princ', u'highway', u'woe']
[u'sydney', u'final', u'swan']
[u'govt', u'move', u'increas', u'transpar', u'forestri']
[u'recruit', u'interst', u'ambul', u'offic']
[u'time', u'run', u'boundari', u'submiss']
[u'travel', u'controversi', u'issu', u'draper']
[u'tribut', u'tamworth', u'local', u'olympian']
[u'tripodi', u'face', u'orang', u'grove', u'accus']
[u'kill', u'plane', u'crash']
[u'typhoon', u'chaba', u'lash', u'southern', u'japan']
[u'allianc', u'featur', u'elect', u'campaign']
[u'tollway', u'featur', u'elect', u'campaign']
[u'victoria', u'welcom', u'home', u'aussi', u'athlet']
[u'gold', u'insolv']
[u'miner', u'sell', u'gold']
[u'water', u'manag', u'main', u'issu', u'riverina', u'elector']
[u'west', u'prove', u'good', u'feder']
[u'wilki', u'launch', u'bennelong', u'campaign']
[u'wimmera', u'babi', u'inquest', u'continu']
[u'winemak', u'confid', u'bank', u'stoush']
[u'work', u'labor', u'south']
[u'wwii', u'vet', u'kokoda', u'pilgrimag']
[u'youth', u'charg', u'polic', u'assault']
[u'zinc', u'produc', u'post', u'profit']
[u'soldier', u'repatri', u'buri']
[u'accc', u'approv', u'grain', u'merger']
[u'accus', u'killer', u'question', u'underworld']
[u'offici', u'monitor', u'rainfal']
[u'senat', u'alter', u'balanc', u'power']
[u'adelaid', u'sit', u'develop', u'gaudi', u'say', u'nation']
[u'await', u'sydney', u'flag', u'nation', u'success']
[u'agforc', u'beatti', u'discuss', u'livestock', u'scheme']
[u'alleg', u'supermarket', u'thief', u'nab', u'interst']
[u'caus', u'corangamit', u'upset', u'academ']
[u'refus', u'ranger', u'shutdown']
[u'ambul', u'recruit', u'head', u'north', u'west']
[u'kelsey', u'grammer']
[u'asthma', u'suffer', u'urg', u'activ']
[u'aust', u'offer', u'north', u'korea']
[u'australian', u'releas', u'vietnames', u'jail']
[u'babi', u'humpback', u'dead', u'beach']
[u'bendigo', u'tip', u'reflect', u'nation', u'poll', u'result']
[u'bledislo', u'retain', u'match', u'format']
[u'bonlac', u'declar', u'loss']
[u'boss', u'keep', u'plate', u'option', u'open']
[u'brack', u'reject', u'govt', u'offer', u'hand']
[u'broadband', u'uptak', u'pass', u'million', u'mileston']
[u'brown', u'defend', u'kooki', u'drug', u'polici']
[u'busi', u'decid', u'mall', u'traffic']
[u'shake', u'standardis', u'fare']
[u'butler', u'pocket', u'golden', u'handshak']
[u'glen', u'inn', u'freight', u'rail']
[u'canberra', u'airport', u'get', u'navig', u'upgrad']
[u'cancer', u'patient', u'seek', u'compo', u'diagnosi', u'delay']
[u'candid', u'remind', u'road', u'fund', u'import']
[u'carr', u'deni', u'orang', u'grove', u'liabil', u'latham']
[u'comparison', u'anger', u'refuge', u'support']
[u'classi', u'agassi', u'serv', u'late', u'feast']
[u'commiss', u'examin', u'meat', u'industri']
[u'committe', u'propos', u'step', u'republ', u'vote']
[u'costa', u'reject', u'feder', u'rail', u'offer']
[u'council', u'chief', u'lament', u'dept', u'store', u'snub']
[u'court', u'order', u'garrett']
[u'court', u'see', u'fewer', u'civil', u'liabil', u'case']
[u'court', u'tell', u'steal', u'bracelet']
[u'cow', u'munch', u'light', u'aircraft']
[u'crash', u'plane', u'cours', u'report']
[u'croc', u'prepar', u'season']
[u'cunningham', u'like', u'corner', u'contest']
[u'dallaglio', u'quit', u'england', u'team']
[u'deadlin', u'extend', u'captur', u'newsmen']
[u'deal', u'end', u'week', u'power', u'station', u'strike']
[u'defiant', u'milosev', u'call', u'crime', u'charg', u'lie']
[u'develop', u'group', u'member', u'want', u'boundari', u'chang']
[u'director', u'welcom', u'radford']
[u'doubt', u'rais', u'invit', u'health', u'forum']
[u'downpour', u'surpris', u'farmer']
[u'recal', u'port', u'arthur', u'tap']
[u'eas', u'credit', u'growth', u'pleas', u'economist']
[u'elect', u'campaign', u'expect', u'includ', u'tourism']
[u'environment', u'forum', u'test', u'candid']
[u'environ', u'elect', u'issu', u'newspol', u'head']
[u'everton', u'hold']
[u'farina', u'name', u'strength', u'squad', u'train', u'camp']
[u'feder', u'parliament', u'offici', u'prorogu']
[u'firefight', u'contain', u'bushfir']
[u'fittler', u'pay', u'tribut', u'rival', u'talli']
[u'forestri', u'chang', u'fail', u'industri', u'group']
[u'iraqi', u'kill', u'strike']
[u'fraser', u'dingo', u'form', u'super', u'pack']
[u'bodi', u'ray', u'rais', u'cancer', u'risk']
[u'gastroenter', u'patient', u'treat', u'hobart', u'hospit']
[u'gold', u'coast', u'triathlet', u'win']
[u'govt', u'approv', u'helicopt', u'deal']
[u'govt', u'boost', u'hospit', u'psychiatr', u'care']
[u'govt', u'deni', u'plan', u'increas', u'local', u'cost']
[u'govt', u'torpedo', u'controversi', u'fish', u'farm', u'plan']
[u'govt', u'urg', u'subsid', u'victim']
[u'govt', u'urg', u'commit', u'wimmera', u'malle', u'pipelin', u'money']
[u'govt', u'urg', u'prosecut', u'safeti']
[u'green', u'democrat', u'swap', u'senat', u'prefer']
[u'green', u'murray', u'elect', u'spotlight']
[u'group', u'make', u'pipelin']
[u'group', u'continu', u'fight', u'propos', u'hotel']
[u'grower', u'lobbi', u'group', u'score', u'parti']
[u'guilti', u'plea', u'pair', u'season']
[u'trick', u'welshman', u'world', u'snorkel']
[u'heffernan', u'strike', u'final']
[u'hickss', u'father', u'reiter', u'abus', u'claim']
[u'hickss', u'treatment', u'elect', u'issu', u'lawyer']
[u'hilton', u'fate', u'juri', u'hand']
[u'home', u'owner', u'await', u'rat', u'bill']
[u'howard', u'attack', u'green']
[u'icac', u'hear', u'probe', u'plagiar', u'claim']
[u'independ', u'want', u'campaign', u'spend']
[u'indigen', u'council', u'plan', u'hold']
[u'iraqi', u'pipelin', u'attack']
[u'irrig', u'face', u'tougher', u'water', u'restrict']
[u'japan', u'aust', u'sign', u'share', u'market', u'inform']
[u'bacon', u'trust', u'donat', u'chair', u'cancer', u'clinic']
[u'johnson', u'secur', u'lionel', u'johnston', u'medal']
[u'katter', u'katter', u'poll', u'fight']
[u'labor', u'hit', u'dentistri', u'degre', u'cost']
[u'labor', u'urg', u'public', u'health', u'spend', u'boost']
[u'labor', u'reveal', u'blueprint', u'govern']
[u'latham', u'warn', u'elect', u'terror', u'risk']
[u'liber', u'parti', u'silent', u'complaint', u'investig']
[u'liber', u'launch', u'campaign']
[u'lie', u'rodent', u'claim', u'expos', u'children', u'overboard', u'rift']
[u'charg', u'stalk', u'singer', u'avril', u'lavign']
[u'plead', u'guilti', u'racist', u'graffiti', u'attack']
[u'martin', u'announc', u'retir', u'open', u'exit']
[u'mayor', u'want', u'princ', u'highway', u'auslink', u'scheme']
[u'mcgrane', u'undergo', u'liver', u'surgeri']
[u'milosev', u'begin', u'defenc', u'genocid', u'charg']
[u'milosev', u'begin', u'defenc']
[u'minist', u'launch', u'tourism', u'resort', u'work']
[u'minist', u'urg', u'rethink', u'school', u'leav', u'plan']
[u'montagu', u'undergo', u'reveget', u'work']
[u'moor', u'boo', u'republican', u'convent']
[u'fund', u'seek', u'address', u'road', u'woe']
[u'mous', u'chewer', u'sentenc', u'postpon']
[u'highlight', u'delay', u'concern']
[u'hop', u'overcom', u'paterson', u'hoodoo']
[u'want', u'dead', u'highway']
[u'want', u'urgent', u'manilla']
[u'music', u'bait', u'lure', u'whale']
[u'mysteri', u'diseas', u'kill', u'chicken', u'indonesia']
[u'nepales', u'hostag', u'execut', u'iraq', u'websit']
[u'campaign', u'target', u'tire', u'driver']
[u'newcastl', u'sack', u'bobbi']
[u'move', u'gold', u'product']
[u'decis', u'alic', u'base', u'power', u'provid']
[u'guarante', u'western', u'rain']
[u'tighten', u'citizenship', u'law']
[u'offici', u'investig', u'light', u'plane', u'crash']
[u'olymp', u'bronz', u'get', u'molik', u'right', u'track']
[u'orang', u'grove', u'owner', u'exploit', u'worker', u'carr']
[u'pacif', u'brand', u'record', u'posit', u'maiden', u'profit']
[u'pakistan', u'board', u'play', u'shep', u'blast']
[u'pallet', u'provid', u'line', u'profit', u'decreas']
[u'parti', u'push', u'boost', u'local', u'govt', u'fund']
[u'parti', u'urg', u'rethink', u'dairi', u'deregul']
[u'parti', u'urg', u'protest', u'vote', u'grey']
[u'pest', u'fin', u'marathon', u'tackl']
[u'pierc', u'creek', u'expans', u'reject']
[u'challeng', u'labor', u'cost', u'polici']
[u'dismiss', u'labor', u'blueprint']
[u'border', u'reopen', u'fight', u'wan']
[u'polic', u'ask', u'investig', u'council', u'leak']
[u'polic', u'code', u'encourag', u'domest', u'violenc', u'report']
[u'polic', u'follow', u'byron', u'murder', u'lead']
[u'polic', u'investig', u'suspici', u'byron', u'death']
[u'polic', u'question', u'alleg', u'gangland', u'killer']
[u'polit', u'parti', u'urg', u'address', u'rural', u'educ']
[u'posit', u'market', u'defi', u'intern', u'trend']
[u'potenti', u'sport', u'complex', u'sit', u'highlight']
[u'power', u'respect', u'qualiti', u'cat']
[u'prefer', u'vital', u'wide', u'seat']
[u'prison', u'teacher', u'rise']
[u'prison', u'union', u'assur', u'spi']
[u'privat', u'hospit', u'await', u'train', u'survey', u'result']
[u'protest', u'aplenti', u'parliament', u'hous']
[u'public', u'remind', u'emerg', u'number']
[u'punter', u'elect', u'candid']
[u'putin', u'link', u'plane', u'disast', u'qaeda']
[u'health', u'reject', u'hospit', u'closur', u'rumour']
[u'quarantin', u'review', u'make', u'recommend']
[u'quilpi', u'shire', u'resid', u'spar', u'rate', u'rise']
[u'racq', u'back', u'crash', u'reduct', u'plan']
[u'rain', u'boost', u'southern', u'crop']
[u'rain', u'boost', u'crowd']
[u'rain', u'hamper', u'bushfir', u'fight', u'effort']
[u'ralf', u'battl', u'monza', u'fit']
[u'ralli', u'vent', u'merger', u'anger']
[u'ranger', u'owner', u'urg', u'overhaul', u'safeti']
[u'ravensthorp', u'infrastructur', u'fund']
[u'rebel', u'kidnap', u'health', u'worker', u'darfur']
[u'republican', u'convent', u'trigger', u'hestit']
[u'republican', u'leader', u'attack', u'kerri']
[u'resid', u'urg', u'elector', u'roll']
[u'review', u'grant', u'asylum', u'seeker', u'visa']
[u'stewart', u'tour', u'reviv', u'small', u'face']
[u'russia', u'blame', u'terrorist', u'plane', u'crash']
[u'galleri', u'prais', u'outgo', u'director', u'work']
[u'saint', u'lose', u'hamil', u'lion', u'clash']
[u'sale', u'contract', u'sign', u'post', u'offic', u'build']
[u'salvo', u'cast', u'doubt', u'compo', u'scheme', u'abus']
[u'opposit', u'say', u'govt', u'gambl', u'region']
[u'schumach', u'success', u'continu', u'say', u'team', u'chief']
[u'search', u'continu', u'sink', u'sydney']
[u'search', u'resum', u'miss', u'fishermen']
[u'second', u'biggest', u'month', u'trade', u'deficit', u'record']
[u'seven', u'report', u'profit', u'jump']
[u'sharon', u'present', u'tight', u'withdraw', u'timet']
[u'shire', u'tell', u'possibl', u'miss', u'rate', u'revenu']
[u'sikorski', u'unit', u'local', u'firm', u'defenc']
[u'skier', u'revel', u'bumper', u'snow', u'season']
[u'small', u'busi', u'confid', u'decad', u'high', u'level']
[u'smash', u'repair', u'insur', u'investig']
[u'solicitor', u'jail', u'trust', u'fund', u'fraud']
[u'solomon', u'island', u'launch', u'aid', u'test']
[u'southland', u'collieri', u'owner']
[u'sportsground', u'cost', u'soar']
[u'state', u'urg', u'follow', u'lead', u'offenc', u'law']
[u'stosur', u'prepar', u'open']
[u'stress', u'canberran', u'worri', u'job', u'ill']
[u'strong', u'demand', u'lift', u'harvey', u'norman', u'profit']
[u'student', u'entitl', u'cours', u'nelson']
[u'student', u'farewel', u'slay', u'schoolgirl']
[u'studi', u'consid', u'rout', u'feasibl']
[u'stutter', u'studi', u'offer', u'bilingu', u'insight']
[u'swim', u'hurt', u'tourism', u'inquest', u'tell']
[u'sydney', u'real', u'estat', u'boom', u'cool']
[u'tafe', u'campus', u'faster', u'connect']
[u'talli', u'call', u'quit']
[u'talli', u'eye', u'premiership']
[u'teacher', u'strike', u'student', u'escap', u'expuls']
[u'blackout']
[]
[u'torr', u'strait', u'fishermen', u'safe']
[u'tour', u'compani', u'owner', u'awar', u'guid', u'problem']
[u'tuckey', u'take', u'safe', u'seat', u'grant']
[u'twin', u'bomb', u'kill', u'israel']
[u'express', u'chechyna', u'poll', u'concern']
[u'union', u'air', u'fear']
[u'union', u'want', u'action', u'eas', u'ambul', u'strain']
[u'consid', u'sanction', u'sudan']
[u'guard', u'stomp', u'finger', u'iraqi', u'jail', u'detaine']
[u'soldier', u'tri', u'pass', u'info', u'qaeda']
[u'govt', u'pledg', u'art', u'centr']
[u'victim', u'reunit', u'nurs']
[u'virus', u'aim', u'stop', u'cane', u'toad', u'march']
[u'word', u'erupt', u'highway', u'status']
[u'water', u'shortag', u'dri', u'tandou', u'profit']
[u'westpac', u'work', u'onlin', u'bank', u'glitch']
[u'winter', u'england', u'region']
[u'winter', u'record', u'adelaid']
[u'widow', u'sue', u'council', u'husband', u'flood', u'death']
[u'william', u'dazzl', u'feder', u'eas']
[u'wineg', u'bottl', u'return', u'mullan']
[u'woodward', u'switch', u'cod']
[u'woolmer', u'upbeat', u'dutch', u'drench']
[u'workingman', u'club', u'stay']
[u'zinifex', u'profit', u'better', u'expect']
[u'kill', u'strike', u'fallujah']
[u'abar', u'offer', u'local', u'outlook']
[u'accus', u'gangland', u'killer', u'declar', u'innoc']
[u'adelaid', u'killer', u'get', u'year']
[u'aerial', u'search', u'seek', u'miner', u'potenti']
[u'agreement', u'reach', u'disabl', u'worker', u'disput']
[u'airport', u'flick', u'crash', u'venic']
[u'candid', u'oppos', u'chang', u'aborigin', u'legal']
[u'annan', u'call', u'intern', u'troop', u'darfur']
[u'anwar', u'free', u'win', u'final', u'appeal']
[u'aust', u'crime', u'investig', u'jail']
[u'award', u'recognis', u'great', u'lake', u'catchment', u'plan']
[u'babi', u'russian', u'hostag', u'local']
[u'bali', u'bomber', u'coffe', u'out', u'proper', u'procedur']
[u'dung', u'get', u'food']
[u'earmark', u'pilbara', u'natur', u'plant']
[u'record', u'loss']
[u'blast', u'hear', u'near', u'russian', u'hostag', u'school']
[u'blast', u'hear', u'near', u'russian', u'school', u'sieg']
[u'blood', u'suppli', u'reach', u'record']
[u'brack', u'odd', u'latham', u'freeway', u'decis']
[u'brack', u'welcom', u'labor', u'road', u'promis']
[u'brandi', u'accus', u'brace', u'possibl', u'expuls']
[u'brisban', u'chemic', u'control']
[u'brisban', u'host', u'govt', u'offici', u'campaign', u'launch']
[u'atsic', u'demis', u'elect', u'issu']
[u'campaign', u'seek', u'lake', u'area', u'cattl', u'remov']
[u'canberra', u'face', u'court', u'vicious', u'brawl']
[u'candid', u'highlight', u'murray', u'alloc', u'concern']
[u'sale', u'boost', u'financ', u'compani']
[u'catchment', u'group', u'honour', u'award']
[u'central', u'welcom', u'home', u'gold', u'win', u'cyclist']
[u'cereb', u'palsi', u'suffer', u'financi']
[u'cheney', u'cite', u'bush', u'leadership', u'skill', u'vote', u'winner']
[u'investig', u'woocoo', u'shire']
[u'coal', u'boost', u'like', u'lift', u'job']
[u'coastal', u'safeti', u'studi', u'urg', u'better', u'signag']
[u'cold', u'winter']
[u'cole', u'recal', u'delux', u'water', u'bottl']
[u'communiti', u'mobil', u'phone', u'boost']
[u'concern', u'anti', u'bush', u'canoeist', u'unprepar', u'journey']
[u'coorong', u'council', u'snare', u'landcar', u'award']
[u'council', u'want', u'road', u'fund', u'boost']
[u'counterfeit', u'charg', u'drop', u'ahmad']
[u'court', u'impos', u'defenc', u'lawyer', u'milosev']
[u'crawford', u'grant', u'quit', u'captainci', u'post']
[u'cream', u'encourag', u'bodi', u'cancer', u'fight', u'cell']
[u'crimin', u'track', u'machin', u'success', u'polic']
[u'crow', u'stenglein', u'head', u'home']
[u'damag', u'payout', u'spark', u'council', u'safeti', u'review']
[u'defenc', u'firm', u'seek', u'exclud', u'worker', u'base']
[u'delay', u'gold', u'product']
[u'democrat', u'readi', u'tough', u'fight']
[u'demonstr', u'plant', u'tree', u'cement', u'plant']
[u'desper', u'borrow', u'charg']
[u'dino', u'festiv', u'spark', u'hop', u'visitor']
[u'dont', u'phone', u'send', u'encod', u'object']
[u'doubt', u'remain', u'iran', u'nuclear', u'arm', u'program']
[u'dugong', u'monitor', u'project', u'win', u'nation', u'award']
[u'eagl', u'kerr', u'place']
[u'educ', u'dept', u'criticis', u'interfer']
[u'electrolux', u'win', u'union', u'appeal']
[u'emerald', u'north', u'teacher', u'stop', u'work']
[u'emerg', u'declar', u'brisban', u'factori', u'blaze']
[u'eurobodalla', u'council', u'reject', u'jam', u'hardi']
[u'expert', u'probe', u'wilder', u'park', u'plane', u'crash']
[u'expert', u'welcom', u'court', u'recognit', u'tribal']
[u'famili', u'despair', u'russian', u'hostag', u'crisi']
[u'farmer', u'urg', u'patterson', u'curs', u'fight']
[u'farmhous', u'blaze', u'consid', u'suspici']
[u'feder', u'serena', u'advanc', u'flush', u'meadow']
[u'feedback', u'seek', u'trawler', u'plan', u'discuss', u'paper']
[u'ferguson', u'fear', u'record', u'rooney']
[u'exec', u'return']
[u'onetel', u'chairman', u'await', u'settlement', u'decis']
[u'theatr', u'director', u'guilti', u'sexual']
[u'foster', u'carer', u'seek', u'indigen', u'youth']
[u'freightlink', u'price', u'hike', u'hit', u'removalist']
[u'french', u'islam', u'headscarv', u'school']
[u'french', u'headscarf', u'come', u'forc']
[u'fuel', u'price', u'continu', u'climb']
[u'fund', u'council', u'environment', u'plan']
[u'gaze', u'name', u'father', u'year']
[u'good', u'rain', u'forecast', u'south', u'east']
[u'govern', u'accus', u'breach', u'caretak', u'rule']
[u'govt', u'confid', u'scrafton', u'claim', u'discredit']
[u'govt', u'ignor', u'explor', u'fund', u'compani']
[u'govt', u'pass', u'legisl', u'chang']
[u'govt', u'decid', u'water', u'restrict']
[u'green', u'abolish', u'fee']
[u'green', u'super', u'trawler', u'death', u'ship']
[u'group', u'threaten', u'protest', u'kosciuszko', u'access']
[u'hackett', u'urg', u'stick', u'current', u'program']
[u'happi', u'valley', u'work', u'near', u'finish']
[u'harmison', u'trick', u'set', u'england']
[u'har', u'race', u'cost', u'shift', u'council']
[u'haunt', u'mull', u'major', u'failur']
[u'health', u'group', u'urg', u'build', u'communiti']
[u'hewitt', u'make', u'impress', u'start', u'scud', u'molik']
[u'high', u'profil', u'convict', u'highlight', u'homeless']
[u'hilton', u'heiress', u'launch', u'jewelleri', u'line']
[u'hostag', u'prepar', u'night', u'school', u'sieg']
[u'hostag', u'taker', u'free', u'women', u'children']
[u'howard', u'rule', u'ipswich', u'motorway', u'upgrad']
[u'hundr', u'live', u'ribbon', u'rebellion']
[u'hunt', u'tip', u'kangaroo', u'select']
[u'icac', u'urg', u'prison', u'search', u'overhaul']
[u'indigen', u'tourism', u'ventur', u'worri', u'anim']
[u'infect', u'risk', u'prompt', u'drop', u'recal']
[u'award', u'nurs', u'rise']
[u'isra', u'forc', u'suicid', u'attack']
[u'israel', u'threaten', u'syria', u'wake', u'hama', u'bomb']
[u'child', u'potter', u'sporti', u'screeni']
[u'jetstar', u'consid', u'boost', u'newcastl', u'servic']
[u'judg', u'dismiss', u'kobe', u'bryant', u'rape', u'case']
[u'kakadu', u'croc', u'attack', u'unforse']
[u'kingsley', u'montgomeri', u'expect', u'port']
[u'labor', u'air', u'gippsland', u'fear']
[u'labor', u'make', u'indigen', u'hous', u'pledg']
[u'labor', u'say', u'dummi', u'bid', u'review']
[u'labor', u'scrafton', u'strategi', u'backfir', u'say']
[u'labor', u'take', u'cautious', u'approach', u'mobil', u'phone']
[u'latham', u'pledg', u'rat']
[u'latham', u'refus', u'apologis', u'children']
[u'latham', u'stand', u'scrafton', u'children', u'overboard']
[u'lgaq', u'call', u'relax', u'subdivis', u'rule']
[u'lgaq', u'seek', u'crackdown', u'frivol', u'liabil', u'claim']
[u'luck', u'run', u'punter', u'gambl', u'spree']
[u'macquari', u'announc', u'region', u'radio']
[u'arrest', u'jewelleri', u'store', u'robberi']
[u'jail', u'year', u'grandmoth']
[u'manjimup', u'properti', u'export', u'floor']
[u'court', u'castl', u'hill', u'death']
[u'mayor', u'defend', u'travel', u'arrang']
[u'meet', u'focus', u'impact']
[u'miner', u'continu', u'gold', u'search']
[u'minist', u'applaud', u'plastic', u'bag']
[u'mother', u'miss', u'diver', u'plead', u'help']
[u'moot', u'youth', u'curfew']
[u'mysteri', u'surround', u'woodward', u'futur']
[u'nation', u'seek', u'glen', u'inn', u'learn', u'centr']
[u'negoti', u'begin', u'russian', u'hostag', u'crisi']
[u'negoti', u'resum', u'russian', u'hostag', u'crisi']
[u'neitz', u'content', u'bomber', u'clash']
[u'nevill', u'defend', u'sven', u'record']
[u'hepat', u'treatment', u'lead', u'better', u'cure']
[u'rail', u'link', u'boost', u'tourism', u'goldfield']
[u'north', u'west', u'farmer', u'win', u'landcar', u'award']
[u'crack', u'juri', u'sleuth']
[u'get', u'life', u'alic', u'murder']
[u'prison', u'bomb', u'sniff', u'dog']
[u'gold', u'product', u'start', u'ahead', u'schedul']
[u'nurs', u'council', u'disput', u'deadlock']
[u'ocean', u'condit', u'boost', u'chanc', u'nino']
[u'price', u'rise', u'impact', u'share', u'price']
[u'olymp', u'legend', u'call', u'releas', u'detaine']
[u'pair', u'serv', u'minimum', u'year', u'murder']
[u'peopl', u'mental', u'ill', u'urg', u'speak']
[u'pipelin', u'group', u'seek', u'elect', u'candid']
[u'urg', u'wentworth', u'voter', u'support', u'turnbul']
[u'polic', u'hunt', u'tamworth', u'thief']
[u'polic', u'investig', u'bodi', u'near']
[u'polic', u'probe', u'fatal', u'hume', u'highway', u'crash']
[u'polic', u'question', u'assault']
[u'polic', u'seek', u'inform', u'woman', u'dead']
[u'polic', u'action', u'hotel', u'brawl']
[u'polit', u'parti', u'urg', u'boost', u'infrastructur']
[u'politician', u'hand', u'look', u'road', u'woe']
[u'polit', u'asid', u'age', u'care', u'forum']
[u'port', u'arthur', u'video', u'probe', u'spread']
[u'prison', u'escap', u'continu', u'elud', u'polic']
[u'probe', u'consid', u'castl', u'hill', u'death', u'prevent']
[u'probe', u'launch', u'dubai', u'campus', u'plan']
[u'probe', u'launch', u'supermarket', u'blaze']
[u'public', u'urg', u'help', u'tackl', u'underag', u'drink']
[u'coal', u'export', u'high']
[u'liber', u'consid', u'disciplin', u'parti', u'offici']
[u'quadrupl', u'heart', u'bypass', u'recipi', u'walk', u'kokoda', u'track']
[u'rain', u'good', u'news', u'break', u'hill', u'carr']
[u'rare', u'dolphin', u'strand', u'tasmanian', u'shallow']
[u'report', u'flow', u'locust', u'hatchl']
[u'report', u'show', u'slight', u'improv', u'indigen']
[u'rescu', u'deal', u'bowl', u'club', u'green']
[u'resid', u'ask', u'boost', u'blood', u'stock']
[u'rise', u'river', u'crown', u'best', u'rooki']
[u'robot', u'call', u'parliament', u'hous', u'secur']
[u'erupt', u'secur', u'polici']
[u'rspca', u'welcom', u'cruelti', u'fine']
[u'rudd', u'head', u'southern']
[u'russia', u'rule', u'forc', u'hostag', u'crisi']
[u'safe', u'hous', u'propos', u'aborigin', u'children']
[u'saint', u'drop', u'miln', u'keat', u'doubt']
[u'scheme', u'focus', u'boost', u'indigen', u'live']
[u'school', u'recognis', u'literaci', u'numeraci', u'effort']
[u'schumach', u'rubbish', u'retir', u'talk']
[u'scientist', u'identifi', u'jekyl', u'hyde', u'cancer', u'gene']
[u'screen', u'time', u'sap', u'child', u'health', u'report']
[u'sewerag', u'currarong']
[u'share', u'market', u'hit', u'record', u'high']
[u'korea', u'admit', u'rogu', u'uranium', u'experi']
[u'skywest', u'consid', u'takeov']
[u'spain', u'sanz', u'win', u'earli', u'latin', u'grammi', u'best', u'song']
[u'state', u'council', u'rule', u'rodent', u'remark', u'claim']
[u'streaker', u'pay', u'price', u'minut', u'fame']
[u'sunraysia', u'tafe', u'put', u'perform']
[u'suppli', u'worri', u'prompt', u'jump', u'price']
[u'sydney', u'lead', u'hous', u'declin']
[u'forestri', u'probe', u'vital', u'senat', u'committe']
[u'taskforc', u'examin', u'sydney', u'robberi', u'similar']
[u'teen', u'give', u'evid', u'gang', u'rape', u'trial']
[u'year', u'cyberia']
[u'rise', u'fall', u'malaysia', u'anwar']
[u'test', u'hold']
[u'jockey', u'fallon', u'hold', u'race', u'fix', u'probe']
[u'truanci', u'patrol', u'fund', u'ax']
[u'apart', u'build', u'demolish', u'gaza']
[u'arrest', u'dare', u'perth', u'robberi']
[u'demand', u'releas', u'hostag', u'russia']
[u'union', u'stoush', u'mate', u'form']
[u'ralli', u'racist']
[u'order', u'revers', u'terror', u'convict']
[u'farmer', u'demand', u'long', u'term', u'rural', u'polici']
[u'wagga', u'host', u'creditor', u'meet']
[u'water', u'restrict', u'shoalhaven', u'week']
[u'webck', u'join', u'club']
[u'welcom', u'home', u'plan', u'tamworth', u'olympian']
[u'westfield', u'advis', u'accus', u'intimid', u'bulli']
[u'westfield', u'deni', u'orang', u'grove', u'thuggeri', u'claim']
[u'winegrow', u'hail', u'rebat']
[u'wine', u'industri', u'upbeat', u'rebat']
[u'winemak', u'give', u'extens', u'repay', u'debt']
[u'winemak', u'welcom', u'relief']
[u'wood', u'centr', u'open', u'smithton']
[u'woodward', u'resign', u'leav', u'england', u'turmoil']
[u'worker', u'evacu', u'brisban', u'factori']
[u'ray', u'unmask', u'mummi', u'face', u'virtual']
[u'hurt', u'assault', u'russian', u'school', u'report']
[u'absente', u'drain', u'england', u'firepow']
[u'jazeera', u'ventur', u'english', u'languag', u'market']
[u'undecid', u'atsic', u'replac']
[u'anderson', u'expect', u'tough', u'contest', u'kennedi']
[u'apec', u'countri', u'give', u'glow', u'report', u'card']
[u'archaeologist', u'discov', u'tomb', u'near', u'egypt', u'pyramid']
[u'armi', u'investig', u'sexual', u'misconduct', u'claim']
[u'asbesto', u'inspect', u'need', u'union', u'say']
[u'dead', u'russian', u'school', u'raid', u'report']
[u'bear', u'close', u'east', u'clash']
[u'beazley', u'claim', u'underdog', u'status']
[u'beirut', u'reject', u'secur', u'council', u'resolut']
[u'benitez', u'defend', u'liverpool', u'foreign', u'legion']
[u'boost', u'illawarra', u'coal', u'effort']
[u'barri', u'hop', u'swan']
[u'hunter', u'book', u'tip', u'harri', u'potter']
[u'brazilian', u'music', u'produc', u'die', u'motorcycl']
[u'brisban', u'welcom', u'home', u'olympian']
[u'bundaberg', u'paralympian', u'set', u'sight', u'gold']
[u'burglar', u'jail', u'assault', u'woman']
[u'bush', u'accept', u'nomin', u'attack', u'kerri']
[u'bush', u'prais', u'wise', u'counsel']
[u'go', u'blood', u'suppli', u'boost']
[u'cano', u'stunt', u'spark', u'search']
[u'carlton', u'bend', u'chang', u'ground']
[u'cattl', u'scheme', u'promis', u'save']
[u'chang', u'growth', u'log', u'impact', u'job']
[u'chao', u'reign', u'troop', u'russian', u'school', u'sieg']
[u'chees', u'voter', u'tell', u'past', u'best']
[u'child', u'die', u'brisban', u'hous']
[u'civil', u'libertarian', u'reject', u'youth', u'curfew']
[u'cobar', u'host', u'bondi', u'tsunami', u'world', u'premier']
[u'cole', u'remov', u'cook', u'wine', u'alcohol', u'content']
[u'communiti', u'unit', u'wake', u'murder', u'suicid']
[u'communiti', u'urg', u'support', u'injur', u'polic']
[u'concern', u'air', u'rate', u'rise']
[u'cooper', u'return', u'aerial', u'competit']
[u'show', u'town', u'nappi', u'dresser']
[u'coron', u'find', u'secur', u'guard', u'act', u'outsid', u'power']
[u'council', u'offer', u'summer', u'beach', u'pledg']
[u'council', u'ponder', u'manilla', u'option']
[u'council', u'recycl', u'effort', u'better', u'data', u'suggest']
[u'council', u'resourc', u'curb', u'child', u'prostitut']
[u'council', u'take', u'action', u'handl', u'tide']
[u'court', u'hear', u'gassi', u'keep', u'list', u'doctor', u'name']
[u'court', u'order', u'issu', u'massiv', u'tree', u'clear']
[u'cowboy', u'coach', u'face', u'tough', u'choic']
[u'croc', u'taipan', u'clash', u'test', u'game']
[u'crop', u'forecast', u'good', u'south', u'east']
[u'dairi', u'report', u'show', u'fewer', u'farmer', u'produc']
[u'deadlin', u'announc', u'wind', u'farm', u'submiss']
[u'democrat', u'target', u'voter']
[u'deputi', u'turn', u'road', u'fund', u'claim', u'labor']
[u'devast', u'lion', u'hammer', u'saint']
[u'develop', u'secur', u'marina', u'site']
[u'disabl', u'carer', u'agre', u'deal']
[u'disabl', u'worker', u'reach', u'agreement', u'rise']
[u'doubt', u'surround', u'creditor', u'fund']
[u'downer', u'seiz', u'foreign', u'minist', u'iraq']
[u'urg', u'indefint', u'sentenc', u'prison', u'killer']
[u'drink', u'driver', u'crash', u'park', u'polic']
[u'drought', u'decis', u'spark', u'agforc', u'anger']
[u'eagl', u'spread', u'wing', u'kimberley']
[u'elect', u'help', u'dampen', u'canberra', u'hous', u'market']
[u'embri', u'deni', u'countri', u'parti', u'nation', u'clone']
[u'environment', u'group', u'look', u'partisan']
[u'explos', u'possibl', u'rebel', u'hideout']
[u'explos', u'rock', u'site', u'russian', u'sieg']
[u'extremist', u'grenad', u'russian', u'stand']
[u'farmer', u'air', u'locust', u'plagu', u'fear']
[u'north', u'share', u'child', u'protect', u'fund']
[u'fate', u'brandi', u'accus', u'decid']
[u'feder', u'hotel', u'buy', u'cradl', u'mountain', u'resort']
[u'russian', u'hostag', u'school']
[u'firm', u'secur', u'comalco', u'contract']
[u'florida', u'resid', u'urg', u'evacu', u'hurrican']
[u'florida', u'threat', u'monster', u'storm', u'loom']
[u'foreign', u'debt', u'push', u'rat', u'crean']
[u'oil', u'frontman', u'hit', u'note', u'campaign']
[u'forum', u'put', u'focus', u'power', u'access']
[u'kill', u'malaysian', u'chopper', u'crash']
[u'year', u'die', u'hous']
[u'fowler', u'switzerland']
[u'french', u'author', u'optimist', u'hostag']
[u'fund', u'boost', u'landcar', u'insur']
[u'fund', u'rais', u'hop', u'quoll', u'research']
[u'fund', u'upgrad', u'town', u'hall']
[u'gerrard', u'pull', u'england', u'train']
[u'gilchrist', u'fli', u'join', u'champ', u'trophi', u'squad']
[u'gold', u'produc', u'spend', u'explor']
[u'govt', u'run', u'scare', u'campaign', u'crean', u'say']
[u'govt', u'commit', u'drug', u'rehabilit', u'question']
[u'govt', u'urg', u'greater', u'rural', u'consider']
[u'govt', u'urg', u'consider', u'bush']
[u'green', u'campaign', u'wollongong']
[u'green', u'applaud', u'govt', u'possibl', u'log', u'polici']
[u'green', u'candid', u'prefer', u'decis']
[u'grinham', u'squash', u'number']
[u'group', u'probe', u'impact']
[u'hawk', u'deserv', u'better', u'crawford', u'demetriou']
[u'hervey', u'rail', u'link', u'tourism', u'bodi', u'sceptic']
[u'highfield', u'school', u'trial', u'time', u'prep', u'year']
[u'hobart', u'smelter', u'worker', u'rise']
[u'gather', u'cultiv', u'idea']
[u'hospit', u'question', u'patient', u'treatment']
[u'howard', u'hint', u'growth', u'log', u'polici', u'chang']
[u'industri', u'unrest', u'derail', u'handov']
[u'insur', u'group', u'criticis', u'levi', u'decis']
[u'investig', u'begin', u'toddler', u'die']
[u'iraqi', u'presid', u'delay', u'trip', u'franc']
[u'jail', u'trigger', u'rivkin', u'suicid', u'attempt']
[u'kenyan', u'court', u'free', u'australian', u'trespass']
[u'fire', u'springfield', u'lead']
[u'kingsley', u'confirm', u'port']
[u'king', u'stand', u'independ', u'blue', u'ribbon', u'seat']
[u'knight', u'lose', u'right', u'appeal', u'newton']
[u'kookaburra', u'rattl', u'pakistan', u'terror', u'fear']
[u'labor', u'candid', u'criticis', u'follow', u'rail']
[u'labor', u'base', u'indigen', u'polici', u'greater']
[u'labor', u'late', u'school', u'plan', u'nelson', u'say']
[u'latham', u'pledg', u'improv', u'teach', u'standard']
[u'latham', u'want', u'hick', u'releas', u'clear']
[u'lazi', u'govt', u'abandon', u'cane', u'toad', u'opposit', u'say']
[u'legal', u'profession', u'rais', u'concern', u'fund']
[u'libya', u'disco', u'bomb']
[u'life', u'leav', u'bermagui', u'chamber']
[u'mackay', u'hop', u'secur', u'senat', u'spot']
[u'manag', u'chang', u'unlik', u'impact', u'airport']
[u'charg', u'nuclear', u'smuggl']
[u'guilti', u'doubl', u'rape', u'charg']
[u'plead', u'guilti', u'underworld', u'death']
[u'face', u'court', u'accus', u'kidnap', u'salesmen']
[u'mcewen', u'team', u'mate', u'brandt', u'lotto']
[u'mcgradi', u'highlight', u'convent', u'centr', u'boom']
[u'meyer', u'injuri', u'rooki', u'chanc']
[u'mildura', u'lose', u'har', u'race']
[u'mincor', u'start', u'redross', u'product']
[u'miner', u'look', u'gold', u'explor']
[u'mine', u'face', u'rate', u'rise', u'follow', u'review', u'shire']
[u'minist', u'consid', u'orana', u'polic', u'number']
[u'minist', u'urg', u'death', u'ship']
[u'miss', u'univers', u'vow', u'cheeki', u'mishap']
[u'back', u'seek', u'disabl', u'ailment']
[u'harbour', u'user', u'foreshor', u'plan']
[u'mother', u'join', u'search', u'miss', u'daughter', u'fiji']
[u'mourinho', u'recal', u'champ', u'leagu', u'death', u'threat']
[u'warn', u'workplac', u'agreement', u'reject']
[u'nation', u'disput', u'dead', u'murray', u'claim']
[u'nation', u'offer', u'kosciuszko', u'park', u'support']
[u'sale', u'drive', u'record']
[u'fossil', u'fish', u'like', u'reptil', u'arctic']
[u'polic', u'plane', u'servic', u'central', u'australia']
[u'children', u'hurt', u'russian', u'sieg', u'negoti', u'say']
[u'final', u'breakdown', u'glanc']
[u'polic', u'seek', u'elect', u'pledg']
[u'govt', u'part', u'blame', u'breach']
[u'seafood', u'industri', u'concern', u'nativ', u'titl']
[u'price', u'increas', u'cost', u'countri', u'petrol']
[u'price', u'push', u'rat', u'green']
[u'pacif', u'island', u'tour', u'make', u'modest', u'profit']
[u'paralympian', u'leav', u'athen']
[u'penrith', u'secur', u'home', u'final', u'style']
[u'peopl', u'recognis', u'braveri', u'childcar', u'centr']
[u'pirsa', u'begin', u'locust', u'prevent']
[u'hint', u'chang']
[u'seek', u'commit', u'latham', u'industri']
[u'polic', u'appeal', u'wit', u'suspect']
[u'polic', u'seek', u'heavier', u'penalti', u'soldier']
[u'polic', u'review', u'search', u'canoeist']
[u'polic', u'warn', u'hoon', u'watch', u'step']
[u'polli', u'gag', u'olymp', u'homecom']
[u'power', u'line', u'vandal', u'lucki', u'electrocut']
[u'premier', u'defend', u'forest', u'industri']
[u'probe', u'seek', u'murrurundi', u'council']
[u'program', u'begin', u'ensur', u'sawfish', u'surviv']
[u'public', u'paedophilia', u'brief']
[u'public', u'warn', u'slash', u'water']
[u'indigen', u'land', u'law', u'review']
[u'racq', u'call', u'fuel', u'price', u'reduct']
[u'ranger', u'uranium', u'reopen']
[u'recent', u'rainfal', u'sydney', u'catchment']
[u'research', u'explor', u'scienc', u'wine', u'make']
[u'resid', u'seek', u'detail', u'drug', u'rehab', u'expans']
[u'resourc', u'manag', u'group', u'call', u'increas']
[u'retail', u'surpris', u'fall', u'turnov']
[u'rivkin', u'admit', u'hospit']
[u'rivkin', u'hospitalis', u'suicid', u'attempt']
[u'road', u'rage', u'wont', u'toler', u'judg', u'say']
[u'rough', u'terrain', u'hamper', u'recoveri', u'hiker', u'bodi']
[u'ruddock', u'defend', u'russian', u'sieg', u'comment']
[u'rural', u'financi', u'counsel', u'microscop']
[u'russian', u'armi', u'attack', u'gunmen', u'hole', u'hous']
[u'russian', u'forc', u'storm', u'sieg', u'school']
[u'russian', u'hostag', u'number', u'wit']
[u'safeti', u'fear', u'prompt', u'pakistan', u'hockey', u'pull']
[u'form', u'crop', u'advisori', u'group']
[u'school', u'help', u'save', u'murray', u'darl']
[u'schumach', u'unhurt', u'heavi', u'crash', u'monza']
[u'scienc', u'odditi', u'reveal', u'public']
[u'scientist', u'claim', u'success', u'control', u'curs']
[u'scientist', u'earthquak', u'answer']
[u'search', u'american', u'canoeist', u'resum']
[u'secur', u'guard', u'clear', u'bracelet', u'theft']
[u'servic', u'sector', u'continu', u'solid', u'perform']
[u'sharapova', u'venus']
[u'sharehold', u'woe', u'wont', u'affect', u'miner', u'sand', u'plan']
[u'share', u'market', u'retreat', u'record', u'high']
[u'special', u'forc', u'control', u'russian', u'hostag', u'school']
[u'stosur', u'pratt', u'fall', u'york']
[u'strong', u'water', u'suppli', u'workshop']
[u'sudan', u'urg', u'allow', u'intern', u'peacekeep']
[u'sydney', u'plead', u'guilti', u'rape', u'murder']
[u'teacher', u'welcom', u'karratha', u'educ', u'centr']
[u'teen', u'get', u'life', u'video', u'game', u'style', u'murder']
[u'thai', u'team', u'talk', u'chicken', u'arm', u'deal', u'russia']
[u'thoma', u'keep', u'trick', u'sleev']
[u'torren', u'weir', u'investig', u'white', u'water', u'cano']
[u'tourism', u'report', u'highlight', u'cheap', u'capricorn', u'coast']
[u'group', u'tackl', u'campus', u'racism']
[u'union', u'critic', u'high', u'court', u'decis']
[u'order', u'syria', u'withdraw', u'forc', u'lebanon']
[u'call', u'probe', u'south', u'korea', u'nuclear', u'activ']
[u'marin', u'guilti', u'prison', u'abus']
[u'soldier', u'guilti', u'pass', u'inform']
[u'tighten', u'secur', u'flight', u'russia']
[u'victoria', u'olympian', u'honour', u'parad']
[u'wallavill', u'home', u'threaten']
[u'wall', u'investor', u'reliev', u'price', u'wind']
[u'weather', u'favour', u'lion', u'lethal']
[u'windsor', u'seek', u'deputi', u'debat']
[u'wondai', u'man', u'death', u'accident']
[u'woodward', u'continu', u'lion', u'coach']
[u'work', u'begin', u'corridor', u'tunnel']
[u'keeper', u'conduct', u'survey', u'rare', u'wallabi', u'number']
[u'buy', u'rare', u'merced', u'sport']
[u'kill', u'russian', u'school', u'sieg']
[u'accus', u'neglect', u'weed', u'affect', u'land']
[u'allianc', u'attack', u'carr', u'green', u'credenti']
[u'sydney', u'seat', u'analyst']
[u'plan', u'abolish', u'medicar', u'abbott']
[u'asean', u'consid', u'free', u'trade', u'australia']
[u'aussi', u'surfer', u'japan', u'quarter']
[u'australian', u'win', u'british', u'palat']
[u'bodi', u'suspect', u'miss', u'woman']
[u'bomber', u'hang', u'thriller']
[u'booki', u'odd', u'elect', u'tip', u'polit']
[u'builder', u'welcom', u'develop', u'ventur']
[u'bungl', u'upgrad', u'delay', u'virgin', u'flight']
[u'bomb', u'explod', u'kirkuk']
[u'cat', u'easier', u'prey', u'interst', u'say', u'william']
[u'clinton', u'await', u'heart', u'bypass', u'surgeri']
[u'clinton', u'heart', u'bypass', u'surgeri']
[u'clinton', u'undergo', u'heart', u'bypass', u'week']
[u'coalit', u'lead', u'margin']
[u'convict', u'judg', u'resign', u'stand']
[u'courag', u'need', u'kashmir', u'talk', u'begin']
[u'cowboy', u'shark', u'season']
[u'cowboy', u'warm', u'final', u'shark']
[u'dead', u'climber', u'year']
[u'dead', u'school', u'sieg', u'putin', u'arriv']
[u'demand', u'spur', u'second', u'contact', u'centr']
[u'democrat', u'warn', u'region', u'arm', u'race']
[u'demon', u'desper', u'form', u'revers']
[u'digit', u'photo', u'help', u'catch', u'crimin']
[u'dozen', u'kill', u'russian', u'hostag', u'crisi']
[u'driver', u'flee', u'crash', u'scene']
[u'kill', u'mosul', u'clash']
[u'flintoff', u'lead', u'england', u'seri']
[u'florida', u'prepar', u'hurrican', u'approach']
[u'flyer', u'hunt', u'miss', u'woman']
[u'form', u'team', u'readi', u'battl', u'roo']
[u'garcia', u'lead', u'fowler', u'slip', u'switzerland']
[u'group', u'move', u'protect', u'admiralti', u'hous']
[u'hail', u'storm', u'caus', u'accid']
[u'harri', u'potter', u'fan', u'offer', u'sneak', u'peek']
[u'hewitt', u'blossom', u'roddick', u'serena', u'power']
[u'howard', u'challeng', u'cross', u'path']
[u'howard', u'fail', u'educ', u'promis', u'labor']
[u'howard', u'latham', u'offer', u'russian', u'sympathi']
[u'hurrican', u'franc', u'head', u'florida']
[u'hurrican', u'franc', u'lash', u'florida']
[u'warn', u'bari', u'shepherd', u'comment']
[u'intel', u'outlook', u'spark', u'market', u'slide']
[u'pay', u'past', u'accus', u'jackson']
[u'ireland', u'pull', u'plug', u'world', u'plan']
[u'islam', u'armi', u'claim', u'chalabi', u'assassin', u'attempt']
[u'islamist', u'deni', u'russian', u'link']
[u'isra', u'helicopt', u'attack', u'hama', u'build']
[u'ivana', u'apprentic', u'snag', u'prime', u'time']
[u'joint', u'launch', u'help', u'coalit', u'queensland']
[u'increas', u'lead', u'lpga', u'event']
[u'kindergarten', u'teacher', u'strike']
[u'latham', u'hater', u'anderson', u'say']
[u'latham', u'call', u'sept', u'campaign']
[u'latham', u'launch', u'airport', u'secur', u'polici']
[u'latham', u'unveil', u'tasmania', u'packag']
[u'societi', u'lament', u'legisl', u'loss']
[u'librari', u'damag', u'thousand', u'rare', u'book']
[u'log', u'top', u'tasmanian', u'elect', u'agenda']
[u'loom', u'quak', u'deadlin', u'rattl', u'predict']
[u'blood', u'soak', u'matress', u'lane']
[u'injur', u'bike', u'accid']
[u'kill', u'road', u'accid']
[u'meeuw', u'join', u'grow', u'exodus', u'black']
[u'minist', u'honour', u'tracker', u'train', u'award']
[u'mortar', u'land', u'near', u'iraq', u'nation', u'assembl']
[u'mugab', u'warn', u'australia', u'regim', u'chang']
[u'nauru', u'parliament', u'debat', u'money', u'launder', u'law']
[u'game', u'plan', u'sport', u'facil']
[u'onlin', u'magazin', u'groom', u'women', u'jihad']
[u'palmer', u'knock', u'semi', u'final']
[u'panda', u'give', u'birth', u'twin']
[u'parent', u'welcom', u'disabl', u'servic', u'strategi']
[u'polic', u'continu', u'search', u'miss', u'woman']
[u'polic', u'investig']
[u'policeman', u'hurt']
[u'polic', u'seek', u'driver', u'hit', u'hous']
[u'star', u'releas', u'album', u'dafur']
[u'preschool', u'offer', u'fail', u'satisfi', u'teacher']
[u'prosecut', u'plan', u'maroubra', u'babi', u'bash']
[u'putin', u'order', u'border', u'seal']
[u'raider', u'scrape', u'final']
[u'report', u'say', u'cat', u'spread', u'bird']
[u'retest', u'show', u'orford', u'drink', u'water', u'safe']
[u'tinto', u'deni', u'closur', u'threat']
[u'rooney', u'prepar', u'wait', u'unit', u'glori']
[u'rossi', u'snatch', u'provision', u'portug', u'pole']
[u'russian', u'sieg', u'horrifi', u'world', u'leader']
[u'saboteur', u'attack', u'pipelin']
[u'saint', u'shock', u'awe', u'thrash']
[u'turn']
[u'scientist', u'nose', u'ahead', u'battl', u'mosquito']
[u'season', u'tiger']
[u'seven', u'kill', u'mosul', u'clash']
[u'sieg', u'death', u'toll', u'rise']
[u'sieg', u'weapon', u'stash', u'school', u'secur', u'offic']
[u'southampton', u'rule', u'lead', u'role', u'woodward']
[u'spill', u'halt', u'ranger', u'process', u'plant']
[u'stamp', u'duti', u'cut', u'home', u'jump', u'ripper']
[u'studi', u'question', u'long', u'term', u'atkin', u'effect']
[u'swan', u'hold', u'command', u'half', u'time', u'lead']
[u'swan', u'send', u'eagl', u'pack']
[u'govt', u'target', u'communiti', u'educ']
[u'tendulkar', u'doubt', u'champion', u'trophi']
[u'train', u'enthusiast', u'historian', u'celebr', u'birdum']
[u'corner', u'contest', u'issu', u'liber']
[u'kill', u'highway', u'smash']
[u'polic', u'target', u'muslim', u'report']
[u'ukrain', u'iraq', u'troop', u'number']
[u'unemploy', u'influenc', u'margin', u'seat']
[u'union', u'seek', u'mandatori', u'home', u'asbesto', u'check']
[u'urban', u'plan', u'protect', u'park', u'reserv']
[u'fear', u'prompt', u'renew', u'indonesian', u'travel', u'warn']
[u'friend', u'kill', u'iraq']
[u'virgin', u'blue', u'fix', u'glitch']
[u'nation', u'parti', u'elect', u'femal', u'presid']
[u'waterway', u'weevil', u'help', u'clear', u'hawkesburi']
[u'wood', u'lead', u'massachusett']
[u'wood', u'share', u'round', u'lead']
[u'worksaf', u'concern', u'rise', u'death', u'toll']
[u'ray', u'clear', u'bronco', u'pair']
[u'iraqi', u'polic', u'offic', u'kill']
[u'seek', u'ranger', u'prosecut']
[u'engin', u'answer', u'green', u'challeng']
[u'activist', u'claim', u'success', u'cabl', u'sand', u'protest']
[u'hour', u'clinic', u'bulk', u'treatment']
[u'argentina', u'follow', u'olymp', u'gold', u'peru']
[u'seek', u'whistleblow', u'law', u'extens']
[u'australia', u'offer', u'assist', u'russia', u'terrorist', u'hunt']
[u'austria', u'hold', u'scrappi', u'england']
[u'blair', u'invok', u'rare', u'hunt']
[u'bodi', u'egyptian', u'iraq', u'franc', u'wait', u'word']
[u'brisban', u'fail', u'melbourn', u'zorba', u'record']
[u'brisban', u'storm', u'caus', u'blackout']
[u'bush', u'declar', u'major', u'disast', u'florida']
[u'bush', u'give', u'broccoli', u'half', u'heart', u'approv']
[u'bomb', u'kill', u'iraq']
[u'china', u'flood', u'landslid', u'kill']
[u'chines', u'tell', u'busi', u'trip', u'wast', u'time']
[u'coalit', u'commit', u'fight', u'child', u'abus']
[u'curfew', u'impos', u'hurrican', u'near', u'florida']
[u'danih', u'keep', u'chin', u'loss']
[u'parlour', u'thiev', u'search']
[u'doctor', u'polic', u'child', u'protect', u'honour']
[u'doctor', u'condemn', u'govt', u'iraq']
[u'doctor', u'entitl', u'criticis', u'iraq', u'polici', u'howard']
[u'dont', u'panic', u'talli', u'tell', u'bronco']
[u'drought', u'crisi', u'migratori', u'bird']
[u'hospitalis', u'hunter', u'hous']
[u'karkouri', u'score', u'late', u'spare', u'morocco']
[u'expatri', u'sudan', u'intervent']
[u'famili', u'parti', u'call', u'child', u'custodi', u'reform']
[u'corp', u'worri', u'german', u'armi']
[u'feder', u'hit', u'form', u'miseri', u'sharapova']
[u'feder', u'roll', u'sharapova', u'knock']
[u'firefight', u'reject', u'inadequ', u'deal']
[u'storm', u'sweep', u'sydney']
[u'florida', u'hunker', u'franc', u'furi']
[u'join', u'financ', u'ombudsman', u'board']
[u'governor', u'die']
[u'utai', u'run', u'ring', u'warrior']
[u'utai', u'torment', u'warrior']
[u'free', u'speech', u'stake', u'libel', u'case', u'begin']
[u'funer', u'begin', u'russian', u'hostag', u'victim']
[u'gavaskar', u'replac', u'tendulkar']
[u'gaza', u'gunmen', u'seiz', u'governor', u'offic', u'protest']
[u'green', u'call', u'aerial', u'spray']
[u'green', u'target', u'polit', u'donat', u'elect']
[u'grow', u'communiti', u'spirit', u'boost', u'volunt', u'rank']
[u'hobgood', u'edg', u'parkinson', u'japan', u'final']
[u'homicid', u'polic', u'investig', u'alburi', u'hous']
[u'hondura', u'frustrat', u'canada', u'panama', u'stun', u'regga', u'boyz']
[u'hook', u'turn', u'plan', u'spark', u'safeti', u'concern']
[u'howard', u'latham', u'hust', u'sydney']
[u'ierodiaconou', u'world']
[u'form', u'kasper', u'pose', u'select', u'dilemma']
[u'iraq', u'clash', u'leav', u'dozen', u'dead']
[u'iraq', u'extend', u'jazeera', u'indefinit']
[u'jimenez', u'lead', u'european', u'master']
[u'kashmir', u'talk', u'begin', u'amid', u'word']
[u'labor', u'deni', u'green', u'polici', u'influenc']
[u'labor', u'elect', u'worker', u'abus']
[u'labor', u'make', u'youth', u'unemploy', u'pledg']
[u'labor', u'packag', u'focus', u'northern']
[u'latham', u'accus', u'dodg', u'elect', u'debat']
[u'latham', u'use', u'father', u'focus', u'famili']
[u'leader', u'downplay', u'close', u'opinion', u'poll']
[u'lennon', u'welcom', u'labor', u'packag']
[u'girl', u'kill', u'alburi', u'hous']
[u'man', u'finish', u'season', u'flourish']
[u'man', u'lead', u'break']
[u'mcginti', u'expect', u'bipartisan', u'support', u'evid']
[u'nauru', u'sack', u'presid', u'debt', u'tussl']
[u'nauru', u'toughen', u'law', u'money', u'launder']
[u'hoon', u'law', u'tougher', u'say', u'safeti', u'council']
[u'hail', u'anti', u'sledg', u'pledg', u'success']
[u'boost', u'literaci', u'program']
[u'strengthen', u'land', u'clear', u'law']
[u'obes', u'crisi', u'fuel', u'camp', u'surg']
[u'parti', u'pledg', u'budget', u'black']
[u'polic', u'hold', u'children', u'chrome']
[u'polic', u'question', u'mysteri', u'shoot', u'victim']
[u'polic', u'union', u'back', u'propos', u'interview', u'overhaul']
[u'pollut', u'monitor', u'tab', u'emiss']
[u'port', u'turn', u'final', u'form']
[u'power', u'surg', u'ahead', u'half', u'time']
[u'power', u'surg', u'preliminari', u'final']
[u'prefer', u'influenc', u'labor', u'howard']
[u'product', u'boost', u'need', u'price']
[u'queanbeyan', u'council', u'join', u'jam', u'hardi', u'boycott']
[u'record', u'fine', u'tip', u'wardrob', u'malfunct']
[u'redcliff', u'festiv', u'celebr', u'european', u'land']
[u'ring', u'endors', u'phone', u'zone', u'plan']
[u'risk', u'take', u'tasmanian', u'secur', u'survey']
[u'rooster', u'head', u'minor', u'premiership']
[u'rooster', u'wrap', u'minor', u'premiership']
[u'russia', u'mourn', u'death', u'toll', u'rise']
[u'russia', u'prepar', u'sieg', u'funer']
[u'sailor', u'bodi', u'near', u'damag', u'yacht']
[u'search', u'resum', u'miss', u'ipswich', u'woman']
[u'secur', u'scar', u'shut', u'airport']
[u'singh', u'take', u'massachusett', u'lead']
[u'sing', u'minist', u'boost', u'panama', u'tourism']
[u'korean', u'downplay', u'grade', u'nuclear', u'test']
[u'smoke', u'caus', u'blow', u'studi']
[u'lanka', u'upbeat', u'ahead', u'trophi', u'defenc']
[u'statehood', u'committe', u'form', u'year']
[u'strong', u'quak', u'hit', u'west', u'japan', u'tsunami', u'warn']
[u'sudan', u'ask', u'respect', u'african', u'peac', u'effort']
[u'super', u'trawler', u'unlik', u'fish', u'australia']
[u'sweden', u'world', u'flier', u'gun', u'suffer']
[u'symond', u'set', u'aussi']
[u'tamada', u'take', u'portugues', u'pole']
[u'suspect', u'arrest', u'follow', u'russia', u'school']
[u'saddam', u'aid', u'arrest', u'govern']
[u'tough', u'water', u'rule', u'limit', u'tourist', u'pressur']
[u'trust', u'import', u'thing', u'costello']
[u'kill', u'bangladesh', u'bomb', u'blast']
[u'union', u'urg', u'public', u'consid', u'univers']
[u'venabl', u'talk', u'newcastl', u'report']
[u'welfar', u'group', u'warn', u'parti', u'social', u'issu']
[u'wit', u'seek', u'melbourn']
[u'worker', u'bind', u'parlour', u'hold']
[u'acoss', u'seek', u'privat', u'health', u'rebat']
[u'actu', u'launch', u'childcar', u'phone']
[u'adelaid', u'stand', u'end', u'peac']
[u'offic', u'receiv', u'medal', u'bali', u'bomb', u'work']
[u'forc', u'breach', u'right', u'convent', u'hreoc']
[u'reappoint', u'head', u'dive', u'coach']
[u'candid', u'question', u'telstra', u'claim']
[u'candid', u'reject', u'loss', u'claim']
[u'pledg', u'pakenham', u'rail', u'boost']
[u'pledg', u'region', u'airport', u'secur', u'boost']
[u'say', u'labor', u'health', u'focus', u'misplac']
[u'anderson', u'take', u'swipe', u'watermelon', u'green']
[u'anderson', u'underst', u'telstra', u'sale', u'opposit', u'andren']
[u'angler', u'battl', u'report', u'condit']
[u'anim', u'bridg', u'middl', u'east', u'divid']
[u'anwar', u'launch', u'clear']
[u'share', u'rise']
[u'arson', u'vintag', u'blaze']
[u'asylum', u'seeker', u'malaysia', u'launch', u'hunger', u'strike']
[u'australia', u'asean', u'agre', u'free', u'trade', u'talk']
[u'bail', u'grant', u'bomb', u'charg']
[u'bashir', u'stay', u'jail']
[u'beatti', u'prepar', u'japanes', u'trade', u'talk']
[u'beazley', u'challeng', u'govt', u'start', u'work', u'sale']
[u'bellami', u'wari', u'real', u'tough', u'bronco']
[u'bellami', u'wari', u'real', u'tough', u'bronc']
[u'booklet', u'launch', u'combat', u'internet', u'paedophil']
[u'bronco', u'sign', u'lockyer', u'hunt']
[u'brother', u'appeal', u'gang', u'rape', u'convict']
[u'brother', u'lose', u'appeal', u'gang', u'rape', u'convict']
[u'brown', u'face', u'charg']
[u'brown', u'say', u'liber', u'reach', u'control', u'senat']
[u'busi', u'group', u'question', u'labor', u'packag']
[u'cadet', u'report', u'find', u'need', u'enforc']
[u'chang', u'oper']
[u'earli', u'detect', u'child', u'abus']
[u'cambodia', u'senat', u'rubberstamp', u'entri']
[u'campaign', u'wild', u'dog', u'take']
[u'campaign', u'focus', u'parent', u'problem']
[u'canberra', u'resid', u'younger', u'rest', u'countri']
[u'cane', u'toad', u'darwin']
[u'carr', u'eager', u'await', u'snowflak', u'analysi']
[u'child', u'abus', u'accept', u'indigen']
[u'code', u'entic', u'visitor', u'supper']
[u'correct', u'servic', u'monitor', u'rivkin', u'condit']
[u'corrupt', u'polic', u'lose', u'servic', u'medal']
[u'cost', u'health', u'fraud']
[u'council', u'employe', u'nation', u'presid']
[u'council', u'urg', u'sign', u'pipelin', u'plan']
[u'crash', u'russian', u'helicopt', u'near', u'chechnya']
[u'curfew', u'lift', u'nepal']
[u'deadlin', u'pass', u'elector', u'boundari']
[u'death', u'toll', u'rise', u'chines', u'flood']
[u'democrat', u'founder', u'criticis', u'green', u'associ']
[u'democrat', u'indigen', u'affair', u'scandal']
[u'democrat', u'launch', u'indigen', u'polici']
[u'dept', u'cut', u'fund', u'child', u'care']
[u'develop', u'studi', u'port', u'alma']
[u'dialysi', u'unit', u'open', u'surround']
[u'doctor', u'greater', u'protect']
[u'donald', u'give', u'langer', u'perfect', u'ryder', u'tonic']
[u'doubt', u'rais', u'airport', u'secur', u'plan']
[u'doubt', u'rais', u'cook', u'wine', u'withdraw']
[u'dragon', u'hope', u'avoid', u'slay', u'panther', u'match']
[u'driver', u'seiz', u'anti', u'hoon', u'law']
[u'driver', u'warn', u'great', u'alpin', u'delay']
[u'nino', u'threat', u'loom']
[u'employ', u'urg', u'disabl', u'worker']
[u'defend', u'sugar', u'subsidi']
[u'expans', u'plan', u'super', u'nation']
[u'famili', u'urg', u'nation', u'licens', u'mental']
[u'fear', u'water', u'woe', u'harm', u'tourism']
[u'feder', u'fund', u'boost', u'food', u'centr']
[u'feder', u'polic', u'offer', u'help', u'russia']
[u'fiji', u'govt', u'cancel', u'search', u'miss', u'bega', u'woman']
[u'flood', u'kill', u'china']
[u'florida', u'see', u'hurrican']
[u'footi', u'cod', u'secur', u'grand', u'final', u'spot']
[u'fourth', u'australian', u'team', u'expand', u'super']
[u'fractur', u'socket', u'webb']
[u'franc', u'award', u'australian', u'linguist', u'legion', u'honour']
[u'franc', u'leav', u'florida', u'black', u'curfew']
[u'golf', u'club', u'death', u'inquest', u'start']
[u'govt', u'ask', u'shed', u'light', u'fish', u'initi']
[u'govt', u'concess', u'seek', u'argyl', u'diamond']
[u'govt', u'play', u'polit', u'free', u'trade', u'deal']
[u'govt', u'hick', u'concern', u'elect', u'stunt', u'say', u'brown']
[u'govt', u'help', u'fund', u'ballina', u'pass']
[u'govt', u'urg', u'help', u'save']
[u'green', u'candid', u'predict', u'senat', u'boost']
[u'green', u'seek', u'cobb', u'debat']
[u'council', u'question', u'grant', u'discrep']
[u'hewitt', u'blitz', u'lopez']
[u'hickss', u'lawyer', u'question', u'time', u'govt', u'concern']
[u'home', u'loan', u'firm', u'take', u'award', u'honour']
[u'hospit', u'neck', u'wait', u'surgeri', u'time', u'halv']
[u'hous', u'blaze', u'survivor', u'condit', u'improv']
[u'hundr', u'miss', u'beslan', u'sieg']
[u'bounc', u'vow', u'calam', u'jam']
[u'india', u'pakistan', u'continu', u'kashmir', u'ceasefir']
[u'indonesian', u'court', u'reject', u'bashir', u'appeal']
[u'investig', u'continu', u'alburi', u'hous']
[u'iraq', u'captor', u'free', u'jordanian', u'sudanes']
[u'iraqi', u'minist', u'rule', u'intervent', u'saddam']
[u'israel', u'deni', u'bomb', u'latest', u'barrier']
[u'ivori', u'coast', u'world', u'group']
[u'japan', u'guard', u'aftershock', u'quak']
[u'reach', u'highest', u'level', u'year']
[u'keelti', u'hope', u'renew', u'relat', u'vanuatu']
[u'kerin', u'say', u'politician', u'play', u'murray', u'polit']
[u'knight', u'trio', u'name', u'kangaroo', u'squad']
[u'latham', u'call', u'public', u'forum']
[u'latham', u'express', u'hope', u'fair', u'hick', u'trial']
[u'latham', u'promis', u'bulk', u'bill', u'rat', u'boost']
[u'lion', u'head', u'final']
[u'lion', u'like', u'charter', u'plane']
[u'liquor', u'accord', u'pay']
[u'live', u'memori', u'creat', u'canberra']
[u'local', u'industri', u'busi', u'regul']
[u'local', u'russian', u'communiti', u'offer', u'beslan']
[u'loddon', u'malle', u'face', u'weighti', u'problem']
[u'majest', u'brazil', u'close', u'world', u'final']
[u'major', u'parti', u'unveil', u'health', u'strategi']
[u'charg', u'taxi', u'driver', u'hold']
[u'kill', u'greek', u'soccer', u'riot']
[u'face', u'court', u'homemad', u'bomb']
[u'face', u'trial', u'alleg', u'petrol', u'dous']
[u'matthew', u'question', u'brown', u'report']
[u'meat', u'tray', u'thiev', u'bash', u'woman']
[u'meet', u'canva', u'dump', u'design', u'option']
[u'militari', u'action', u'chechnya', u'like', u'say', u'expert']
[u'futur', u'feder', u'decis', u'scienc', u'offic']
[u'mine', u'crush', u'boulder']
[u'minist', u'launch', u'highway', u'work']
[u'minist', u'prais', u'mayor', u'probe']
[u'minist', u'reject', u'claim', u'reef', u'zone', u'threaten']
[u'minist', u'want', u'hate', u'sit', u'block']
[u'moscow', u'bomb', u'toll', u'rise']
[u'put', u'focus', u'boost', u'doctor', u'number']
[u'muppet', u'popular', u'scientist', u'award']
[u'nauruan', u'govt', u'order', u'attend', u'mediat']
[u'child', u'abus', u'claim', u'anglican', u'church']
[u'polic', u'offic', u'start', u'rockhampton']
[u'news', u'corp', u'help', u'prop', u'market']
[u'guarante', u'land', u'clear', u'applic']
[u'time', u'sanction', u'sudan']
[u'govt', u'look', u'increas', u'privat', u'invest']
[u'govt', u'speak', u'racism']
[u'green', u'issu', u'warn', u'major', u'parti']
[u'onetel', u'founder', u'face', u'court']
[u'world', u'flop', u'quit', u'eriksson']
[u'opposit', u'worri', u'wander', u'prison']
[u'pakistan', u'play', u'champ', u'trophi', u'terror', u'fear']
[u'plan', u'blow', u'wind', u'indigen', u'communiti']
[u'polic', u'confid', u'govt', u'fund', u'court', u'case']
[u'polic', u'highlight', u'reduc', u'crash', u'rat']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'offic', u'recommend', u'braveri']
[u'polic', u'probe', u'fatal', u'crash']
[u'polic', u'promis', u'continu', u'drug', u'crackdown']
[u'polic', u'seek', u'inform', u'alleg', u'sexual', u'assault']
[u'politician', u'continu', u'rate', u'debat']
[u'trial', u'hear', u'begin', u'british', u'backpack']
[u'prison', u'stab', u'jail']
[u'properti', u'develop', u'unhappi', u'chief', u'minist']
[u'protest', u'fight', u'ludlow', u'log']
[u'public', u'urg', u'maintain', u'health', u'servic', u'fight']
[u'push', u'elect', u'road', u'fund', u'boost']
[u'push', u'local', u'health', u'admin', u'job']
[u'pub', u'smoke', u'free']
[u'rain', u'offer', u'farmer', u'respit']
[u'ranger', u'restart', u'hing', u'safeti', u'audit']
[u'rauhihi', u'featur', u'canterburi', u'clash']
[u'reynold', u'reject', u'youth', u'curfew', u'plan']
[u'ricketson', u'say']
[u'rioli', u'rule', u'semi', u'final']
[u'rossi', u'eye', u'sixth', u'world', u'titl', u'portugues']
[u'blow', u'wind', u'farm', u'tourist']
[u'russia', u'begin', u'nation', u'mourn']
[u'russia', u'mourn', u'beslan', u'prepar', u'funer']
[u'russia', u'mourn', u'hostag', u'death', u'putin', u'criticis']
[u'russian', u'communiti', u'meet', u'beslan', u'appeal']
[u'russian', u'helicopt', u'report', u'miss']
[u'safeti', u'concern', u'spark', u'weighbridg', u'work']
[u'lose', u'focus', u'telescop']
[u'busi', u'lead', u'spend']
[u'scientist', u'beauti', u'brain']
[u'shire', u'tire', u'plan', u'strategi', u'delay']
[u'shire', u'revamp', u'emerg', u'plan']
[u'shoalhaven', u'crack', u'water']
[u'shop', u'centr', u'centenari', u'event']
[u'singh', u'close', u'rank']
[u'clive', u'say', u'sorri', u'anti', u'club', u'outburst']
[u'site', u'choos', u'peregian', u'school']
[u'marin', u'kill', u'fallujah', u'attack']
[u'smash', u'repair', u'rate', u'increas']
[u'sober', u'honour']
[u'star', u'war', u'target', u'missil', u'launch']
[u'souness', u'quit', u'rover', u'newcastl']
[u'speed', u'driver', u'worri', u'polic']
[u'storm', u'clean', u'continu']
[u'storm', u'bring', u'highway', u'havoc']
[u'strike', u'action', u'stall', u'commodor', u'product']
[u'student', u'enrol', u'democraci', u'cours']
[u'student', u'return', u'class', u'teacher']
[u'super', u'expans', u'announc']
[u'swedish', u'bewild', u'british', u'park', u'ticket']
[u'sydney', u'racehors', u'trainer', u'kill', u'hunt', u'accid']
[u'tasmanian', u'urg', u'lock', u'home']
[u'teacher', u'meet', u'drug', u'expuls', u'decis']
[u'teen', u'hospit', u'motorcycl', u'mishap']
[u'tendulkar', u'champion', u'trophi']
[u'thiev', u'target', u'tare', u'senior']
[u'thompson', u'win', u'italian', u'long', u'jump']
[u'saddam', u'aid', u'custodi']
[u'tropic', u'wasp', u'match', u'cockroach']
[u'turf', u'club', u'oppos', u'super', u'bodi', u'plan']
[u'turkish', u'captiv', u'releas', u'iraq']
[u'turkish', u'truck', u'compani', u'pull', u'iraq', u'save']
[u'injur', u'canberra', u'crash']
[u'teen', u'accid']
[u'soldier', u'kill', u'iraq']
[u'uncertainti', u'captur', u'saddam', u'aid']
[u'hold', u'integr', u'talk']
[u'union', u'attack', u'govt', u'univers', u'fund']
[u'univeristi', u'cleaner', u'secur']
[u'unsettl', u'film', u'surpris', u'venic', u'film']
[u'uruguay', u'world', u'cours', u'brazil', u'down']
[u'school', u'urg', u'reject', u'unhealthi', u'sponsorship']
[u'weed', u'expert', u'converg', u'wagga']
[u'weed', u'pest', u'mistaken', u'mulch']
[u'woman', u'critic', u'injur', u'smash']
[u'woman', u'die', u'nurs', u'home']
[u'woman', u'kill', u'retir', u'villag']
[u'woman', u'kill', u'hume', u'highway']
[u'woman', u'plead', u'guilti', u'theft', u'charg']
[u'woolford', u'doubt', u'final']
[u'woomera', u'host', u'scramjet', u'engin', u'test']
[u'worker', u'continu', u'abattoir', u'industri', u'woe']
[u'worker', u'miss', u'rise']
[u'hit', u'critic', u'role']
[u'wwfs', u'conserv', u'credenti', u'question']
[u'abbott', u'deni', u'fraud', u'medicar']
[u'aborigin', u'elder', u'welcom', u'return', u'remain']
[u'green', u'propos', u'water', u'conserv', u'measur']
[u'liber', u'launch', u'elect', u'polici']
[u'begin', u'pacif', u'mission']
[u'agassi', u'set', u'feder', u'showdown']
[u'albani', u'crucial', u'elect', u'barnett']
[u'alic', u'spring', u'communiti', u'prais', u'east', u'timor']
[u'ord', u'reach', u'record', u'high']
[u'hospit', u'indoor', u'smoke']
[u'anderson', u'face', u'angri', u'elector']
[u'anderson', u'reaffirm', u'telstra', u'sale', u'plan']
[u'anwar', u'spinal', u'surgeri', u'success']
[u'sue', u'olymp', u'ring']
[u'arsenic', u'consid', u'health', u'risk']
[u'australian', u'polic', u'arriv', u'bougainvill']
[u'australia', u'send', u'russia']
[u'balogh', u'featur', u'open']
[u'barbaro', u'court', u'drug', u'charg']
[u'barrack', u'condit', u'worri', u'mayor']
[u'bartlett', u'say', u'democrat', u'green', u'remain', u'distinct']
[u'beach', u'smoke', u'inevit', u'say', u'mayor']
[u'beekeep', u'locust', u'lowdown']
[u'rail', u'access']
[u'border', u'doctor', u'worri', u'medicar', u'quick']
[u'hospit', u'hous', u'blaze', u'ordeal']
[u'britain', u'charg', u'soldier', u'murder', u'iraq']
[u'break', u'fin', u'sell', u'cannabi']
[u'bronco', u'storm', u'recal', u'star']
[u'brown', u'clear', u'kingsley', u'rub']
[u'brown', u'clear', u'technic']
[u'brown', u'dismiss', u'govt', u'call']
[u'buderus', u'name', u'rugbi', u'leagu', u'best']
[u'busi', u'optim', u'remain', u'upbeat']
[u'cabl', u'sand', u'push', u'ahead', u'despit', u'protest']
[u'cairn', u'host', u'blitz']
[u'indigen', u'hous', u'fund']
[u'cleaner', u'strike', u'affect', u'school']
[u'clinton', u'heart', u'surgeri', u'success']
[u'council', u'get', u'endang', u'anim']
[u'council', u'look', u'great', u'ocean', u'strategi', u'fund']
[u'council', u'rezon', u'spin', u'mill', u'site']
[u'court', u'review', u'anwar', u'convict']
[u'croc', u'wildcat', u'match']
[u'cuban', u'doctor', u'help', u'allevi', u'nauru', u'health', u'problem']
[u'custom', u'siez', u'herion', u'post']
[u'dane', u'jail', u'monopoli', u'money', u'defenc']
[u'darwin', u'experi', u'downturn', u'commerci', u'properti']
[u'davi', u'doubt', u'swan']
[u'dingo', u'trap', u'scheme', u'end']
[u'doctor', u'highlight', u'hospit', u'staff', u'shortag', u'woe']
[u'doctor', u'group', u'question', u'parti', u'bulk', u'bill', u'plan']
[u'doctor', u'sceptic', u'elect', u'pledg']
[u'doubt', u'cast', u'bulk', u'bill', u'plan']
[u'driver', u'die', u'vinifera', u'crash']
[u'ask', u'push', u'basslink', u'plant']
[u'emerg', u'servic', u'simul', u'terrorist', u'attack']
[u'england', u'great', u'butcher', u'turn', u'beckham']
[u'claim', u'waterfront', u'project']
[u'european', u'market', u'steadi']
[u'expert', u'stop', u'dengu', u'outbreak']
[u'polic', u'offic', u'win', u'neglig', u'case']
[u'priest', u'face', u'child', u'charg', u'novemb']
[u'famili', u'better', u'labor', u'plan', u'say']
[u'farmer', u'inform', u'locust', u'fight']
[u'farmer', u'highlight', u'water', u'suppli', u'woe']
[u'father', u'plead', u'guilti', u'daughter', u'molest']
[u'fear', u'surfac', u'rise', u'parti', u'drug']
[u'festiv', u'put', u'focus', u'film', u'differ']
[u'fight', u'break', u'shiit', u'forc']
[u'finch', u'hindmarsh', u'buderus', u'lead', u'dalli', u'field']
[u'american', u'come', u'australia', u'studi']
[u'fish', u'farm', u'harvest', u'approach']
[u'dead', u'million', u'power', u'typhoon', u'lash']
[u'florenc', u'celebr', u'david', u'birthday']
[u'site', u'reopen', u'reactor']
[u'forum', u'focus', u'child', u'abus']
[u'fund', u'beef', u'forb', u'livestock', u'handl']
[u'rigger', u'fight', u'work', u'hour']
[u'girl', u'injur', u'leinster', u'attack']
[u'govt', u'labor', u'miss', u'prefer']
[u'govt', u'buy', u'depot', u'tafe']
[u'govt', u'fund', u'upgrad', u'man', u'polic', u'facil']
[u'govt', u'warn', u'possibl', u'recess']
[u'grain', u'harvest', u'forecast']
[u'green', u'thumb', u'urg', u'consid', u'appropri', u'nativ']
[u'group', u'fight', u'plan', u'disabl', u'chang']
[u'hama', u'vow', u'reveng', u'isra', u'missil', u'strike']
[u'harrop', u'train', u'olymp']
[u'henin', u'hardenn', u'crash', u'open']
[u'heritag', u'trail', u'offer', u'environment', u'sight']
[u'hobart', u'redevelop', u'get', u'green', u'light']
[u'hospit', u'contract', u'spark', u'doctor', u'burn', u'fear']
[u'hull', u'maintain', u'telstra', u'sale', u'stanc']
[u'indian', u'cricket', u'seal', u'multi', u'million', u'dollar', u'deal']
[u'india', u'seal', u'multi', u'million', u'dollar', u'deal']
[u'industri', u'woe', u'radiolog', u'clinic']
[u'inquiri', u'plagiar', u'begin', u'take']
[u'insur', u'monitor', u'jam', u'hardi', u'asbesto', u'case']
[u'internet', u'grow', u'farm']
[u'investig', u'link', u'russia', u'want']
[u'iraq', u'group', u'set', u'ransom', u'french', u'hostag', u'releas']
[u'isra', u'launch', u'strike', u'gaza', u'strip']
[u'israel', u'target', u'hama', u'train', u'camp']
[u'jail', u'worker', u'extend', u'strike']
[u'jamiroquai', u'frontman', u'cop', u'drive']
[u'japan', u'boost', u'beef', u'promot']
[u'kidnap', u'babi', u'grant', u'bail']
[u'kidnap', u'babi', u'court', u'drug', u'charg']
[u'labor', u'phase', u'tariff', u'cut', u'vehicl', u'import']
[u'labor', u'warn', u'fuel', u'secur', u'problem']
[u'latham', u'issu', u'bundaberg', u'forum', u'challeng']
[u'latham', u'make', u'pitch', u'middl', u'australia']
[u'latham', u'tri', u'deceiv', u'australian', u'costello', u'say']
[u'latham', u'win', u'australian', u'trust', u'elect']
[u'launceston', u'council', u'enter', u'heritag', u'debat']
[u'launch', u'isra', u'satellit', u'fail']
[u'leader', u'unit', u'commemor']
[u'letter', u'bomb', u'sender', u'launch', u'court', u'action']
[u'lgaq', u'air', u'smoke', u'enforc', u'concern']
[u'liber', u'focus', u'kimberley']
[u'lion', u'ticket', u'ballot']
[u'list', u'childcar', u'compani', u'seek', u'trade', u'halt']
[u'lynch', u'tip', u'preliminari', u'final', u'return']
[u'macek', u'join', u'richmond', u'board', u'tussl']
[u'major', u'parti', u'urg', u'reveal', u'adequ', u'climat']
[u'manag', u'defend', u'dump', u'design', u'consider']
[u'charg', u'homemad', u'bomb', u'get', u'bail']
[u'drown', u'swan', u'river']
[u'custodi', u'outstand', u'warrant']
[u'maradona', u'continu', u'cuban', u'drug', u'treatment']
[u'mayor', u'ponder', u'beach', u'smoke']
[u'mayor', u'pressur', u'letter']
[u'mayor', u'urg', u'rethink', u'hobart', u'waterfront', u'plan']
[u'medicar', u'announc', u'dont']
[u'mine', u'chief', u'outlin', u'futur', u'renew', u'energi']
[u'minist', u'push', u'explos', u'creat', u'water']
[u'minist', u'seek', u'smoke', u'high', u'roller']
[u'motorist', u'catch', u'zone']
[u'murder', u'inquiri', u'underway', u'nina', u'lewiss', u'bodi']
[u'forens', u'techniqu', u'help', u'identifi', u'decompos']
[u'newspap', u'editor', u'fire', u'coverag', u'school']
[u'stem', u'cell', u'therapi', u'offer', u'hope', u'anaemia']
[u'chang', u'expect', u'rat']
[u'class', u'cleaner', u'strike']
[u'norther', u'readi', u'race']
[u'outbreak', u'prompt', u'elect', u'surgeri', u'delay']
[u'surviv', u'parti', u'room', u'lock']
[u'olympian', u'hand', u'key', u'canberra']
[u'opposit', u'seek', u'surgic', u'servic', u'retent']
[u'pakistan', u'board', u'warn', u'chief', u'selector', u'shep']
[u'parent', u'urg', u'form', u'bucket', u'brigad']
[u'parti', u'accus', u'ignor', u'shortag']
[u'parti', u'face', u'medicar']
[u'parti', u'water', u'recycl', u'plan']
[u'place', u'announc', u'nurs', u'cours']
[u'plan', u'moot', u'develop', u'land', u'near', u'jail']
[u'sound', u'warn', u'hang', u'parliament']
[u'polic', u'appeal', u'help', u'offic', u'attack']
[u'polic', u'boost', u'highfield']
[u'polic', u'continu', u'fatal', u'hous', u'blaze', u'probe']
[u'pont', u'hayden', u'run', u'award']
[u'pont', u'quest', u'histor', u'doubl']
[u'port', u'cours', u'crucial', u'final']
[u'presidenti', u'campaign', u'kick', u'afghanistan']
[u'prison', u'camp', u'victim', u'exhum', u'bosnian', u'mass', u'grave']
[u'probe', u'continu', u'fatal']
[u'protea', u'hero', u'say', u'smith']
[u'public', u'speak', u'health', u'servic', u'council']
[u'public', u'support', u'deem', u'vital', u'wind', u'farm']
[u'smoke', u'fire', u'debat']
[u'recycl', u'crush', u'car']
[u'research', u'back', u'need', u'kyoto', u'carr', u'say']
[u'retail', u'win', u'develop', u'hospit', u'site']
[u'ricciuto', u'captain', u'australian', u'team']
[u'riccuito', u'captain', u'australian', u'team']
[u'roadsid', u'bomb', u'target', u'baghdad', u'governor']
[u'meat', u'bound', u'foreign', u'market']
[u'rooster', u'underestim', u'raider']
[u'erupt', u'indigen', u'hous']
[u'russian', u'funer', u'continu', u'pressur', u'mount', u'putin']
[u'doctor', u'unhappi', u'bulk', u'bill', u'focus']
[u'govt', u'oppos', u'giant', u'trawler']
[u'school', u'reject', u'failur', u'claim']
[u'scott', u'singh', u'dethron', u'tiger']
[u'issu', u'warn', u'freak', u'hailstorm']
[u'sheedi', u'say', u'experi', u'essenti', u'final']
[u'shrink', u'wrap', u'skull', u'hit', u'nit']
[u'singh', u'grab', u'tiger', u'spot']
[u'smoke', u'crackdown', u'creat', u'lifesav', u'dilemma']
[u'smoke', u'crackdown', u'overkil', u'mayor']
[u'souness', u'excit', u'newcastl', u'challeng']
[u'south', u'korean', u'russian', u'snap', u'indigen']
[u'spider', u'venom', u'drug', u'claim', u'doubt', u'prison']
[u'student', u'learn', u'eureka', u'rebellion']
[u'talk', u'fail', u'smooth', u'rift', u'vanuatu']
[u'earthquak', u'hit', u'japan']
[u'thousand', u'strand', u'china', u'flood', u'crisi', u'deepen']
[u'thousand', u'ralli', u'moscow', u'nation', u'mourn']
[u'timber', u'industri', u'consid', u'elect', u'candid']
[u'time', u'run', u'plan']
[u'time', u'bat', u'let', u'india', u'say']
[u'time', u'opal', u'star', u'sporn']
[u'train', u'look', u'indigen', u'cancer', u'rat']
[u'trio', u'jail', u'mareeba', u'bash', u'murder']
[u'truss', u'reject', u'meat', u'concern']
[u'ullrich', u'signal', u'retir', u'plan']
[u'unemploy', u'wineri', u'worker', u'train']
[u'union', u'call', u'timber', u'industri', u'train', u'plan']
[u'union', u'accus', u'govt', u'freez', u'tafe', u'fund']
[u'unit', u'gold', u'look', u'list']
[u'soldier', u'kill', u'roadsid', u'bomb', u'attack', u'near']
[u'tank', u'pound', u'fallujah', u'target', u'wit']
[u'venic', u'film', u'festiv', u'organis']
[u'victoria', u'russian', u'communiti', u'mourn', u'beslan', u'victim']
[u'vote', u'enrol', u'deadlin', u'loom']
[u'wastewat', u'propon', u'consid', u'elect', u'lobbi']
[u'whale', u'free', u'shark', u'net']
[u'woman', u'die', u'trailer', u'mishap']
[u'woolford', u'contest', u'high', u'tackl', u'charg']
[u'youth', u'accus', u'rail', u'worker', u'assault']
[u'qanta', u'stake', u'expect', u'spread']
[u'bluescop', u'plant', u'target', u'pollut']
[u'govt', u'slam', u'prevent', u'packag']
[u'swallow', u'brown', u'decis']
[u'ord', u'edg', u'record', u'high', u'close']
[u'candid', u'say', u'iraq', u'wheat', u'debt', u'hurt', u'tuckey']
[u'pledg', u'veteran', u'memori', u'fund']
[u'ambul', u'servic', u'offer', u'respons', u'time', u'assur']
[u'anderson', u'fear', u'soft', u'voter', u'support']
[u'anti', u'hoon', u'law', u'have', u'immedi', u'effect']
[u'anwar', u'lawyer', u'attack', u'clear']
[u'australian', u'polic', u'receiv', u'warm', u'welcom']
[u'australian', u'prison', u'hunger', u'strike', u'thailand']
[u'australian', u'arrest', u'drug', u'investig']
[u'australian', u'arrest', u'global', u'drug', u'syndic', u'bust']
[u'author', u'prepar', u'loom', u'threat']
[u'plan', u'privatis', u'commerci', u'unit', u'report']
[u'beslan', u'video', u'fuel', u'russian', u'grief', u'anger']
[u'bionic', u'innov', u'lead', u'scienc', u'prize']
[u'blair', u'see', u'ireland', u'deal', u'possibl', u'talk']
[u'blaze', u'trap', u'turkish', u'worker', u'tunnel']
[u'british', u'airway', u'sell', u'qanta', u'stake']
[u'bundaberg', u'reef', u'advisori', u'committe']
[u'bushrang', u'kelli', u'gravesit', u'rob']
[u'council', u'delay', u'har', u'race', u'decis']
[u'canberra', u'level', u'begin', u'rise']
[u'capriati', u'dementieva', u'roddick', u'star', u'drama']
[u'capriati', u'edg', u'serena', u'titan', u'quarter', u'final']
[u'carr', u'highlight', u'frighten', u'climat', u'report']
[u'carr', u'question', u'illawarra', u'protest']
[u'castro', u'urg', u'strict', u'father', u'maradona']
[u'china', u'flood', u'death', u'toll', u'rise']
[u'coast', u'host', u'super', u'confer']
[u'communiti', u'push', u'pipelin', u'cost', u'share', u'messag']
[u'communiti', u'support', u'need', u'town', u'centr', u'plan']
[u'confer', u'tell', u'parent', u'innat', u'instinct']
[u'consum', u'confid', u'year', u'high']
[u'convict', u'bali', u'bomber', u'releas', u'autobiographi']
[u'coron', u'call', u'improv', u'train', u'demolit']
[u'councillor', u'meet', u'baxter', u'asylum', u'seeker']
[u'council', u'offer', u'pine', u'vandal', u'reward']
[u'council', u'shop', u'resid']
[u'court', u'hear', u'gold', u'disput']
[u'court', u'rule', u'requir', u'unreason']
[u'custom', u'warn', u'australian', u'oversea', u'medic']
[u'death', u'toll', u'rise', u'china', u'flood', u'worsen']
[u'death', u'toll', u'rise', u'typhoon', u'batter', u'north', u'asia']
[u'dementieva', u'upset', u'second', u'seed', u'mauresmo']
[u'doctor', u'join', u'rfds', u'dubbo', u'base']
[u'document', u'indic', u'govt', u'energi', u'lobbi', u'collus']
[u'dravid', u'name', u'world', u'player', u'year']
[u'edinburgh', u'tattoo', u'play', u'canberra']
[u'energi', u'firm', u'urg', u'reject', u'nirranda', u'wind', u'farm', u'plan']
[u'eriksson', u'confid', u'england', u'perform']
[u'esso', u'shore', u'worker', u'roster', u'fight']
[u'fallujah', u'sadr', u'citi', u'target', u'latest', u'strike']
[u'famili', u'wors', u'labor', u'plan', u'govt']
[u'feder', u'fund', u'heat', u'pool', u'plan']
[u'financi', u'lobbi', u'criticis', u'labor', u'packag']
[u'fishermen', u'plead', u'guilti', u'unlaw', u'hunt']
[u'charg', u'smuggl', u'heroin', u'shoe']
[u'forest', u'mine', u'protest', u'heckl', u'gallop']
[u'forum', u'consid', u'park', u'burn']
[u'forum', u'tell', u'govt', u'fail', u'provid', u'adequ']
[u'arrest', u'britain', u'terror', u'offenc']
[u'franz', u'ferdinand', u'british', u'mercuri', u'award']
[u'flow', u'moranbah', u'project']
[u'govt', u'announc', u'upgrad', u'darwin', u'naval', u'base']
[u'govt', u'ask', u'boost', u'school', u'cross', u'fund']
[u'govt', u'hop', u'japanes', u'invest', u'boost']
[u'govt', u'pledg', u'bush', u'prepar']
[u'clinic', u'expect', u'open', u'month']
[u'green', u'unfaz', u'coalit', u'attack']
[u'group', u'suggest', u'rate', u'debat']
[u'guidelin', u'provid', u'canberra', u'residenti']
[u'gunmen', u'abduct', u'italian', u'iraqi', u'baghdad']
[u'hawk', u'appoint', u'clarkson', u'coach']
[u'hewitt', u'power', u'quarter']
[u'play', u'rate', u'concern']
[u'highway', u'claim', u'life']
[u'hinkler', u'green', u'candid', u'resign']
[u'hockey', u'club', u'manag', u'face', u'shoot', u'trial']
[u'home', u'buyer', u'take', u'advantag', u'condit']
[u'home', u'owner', u'tell', u'worri', u'rate']
[u'hospit', u'chief', u'wont', u'reveal', u'health', u'talk']
[u'hous', u'financ', u'figur', u'rise']
[u'howard', u'attack', u'labor', u'packag']
[u'illawarra', u'take', u'deliveri', u'disast', u'vehicl']
[u'imran', u'khan', u'slam', u'polic', u'offici']
[u'rat', u'hold', u'ahead', u'poll']
[u'investig', u'launch', u'plane', u'lose', u'cabin', u'door']
[u'iraq', u'evid']
[u'irrig', u'want', u'water', u'reform', u'rethink']
[u'israel', u'move', u'troop', u'northern', u'gaza']
[u'labor', u'accus', u'defenc', u'dept', u'election']
[u'latham', u'begin', u'packag', u'pitch']
[u'lawyer', u'condemn', u'polic', u'confess', u'tactic']
[u'lion', u'match', u'confirm']
[u'local', u'builder', u'secur', u'riverway', u'tender']
[u'local', u'support', u'japan', u'beef', u'initi']
[u'log', u'threaten', u'speci', u'extinct']
[u'maintain', u'balanc', u'power', u'essenti', u'bartlett']
[u'accus', u'infect', u'woman']
[u'face', u'court', u'stab', u'charg']
[u'manur', u'mishap', u'provid', u'smell']
[u'walk', u'free', u'caus', u'fatal', u'crash']
[u'medico', u'question', u'need', u'canberra', u'hour']
[u'meet', u'discuss', u'hospit', u'site']
[u'melbourn', u'welcom', u'home', u'olymp', u'athlet']
[u'methan', u'possibl', u'power', u'sourc', u'brisban']
[u'miner', u'sand', u'get', u'green', u'light']
[u'minist', u'support', u'wildlif', u'forestri', u'exist']
[u'minist', u'launch', u'work', u'giant', u'wind', u'farm']
[u'minist', u'unmov', u'health', u'servic']
[u'minist', u'welcom', u'intern', u'demand', u'coal']
[u'moor', u'aim', u'oscar', u'fahrenheit']
[u'fund', u'learn', u'centr']
[u'dig', u'tunnel', u'gold', u'coast']
[u'make', u'rescu', u'chopper', u'pledg']
[u'reject', u'abc', u'energi', u'polici', u'claim']
[u'gambier', u'honour', u'melbourn', u'link']
[u'murder', u'suspect', u'alburi', u'hous']
[u'murray', u'name', u'squad', u'bulldog', u'clash']
[u'nation', u'hospit', u'improv']
[u'nation', u'fear', u'lose', u'margin', u'seat']
[u'nat', u'candid', u'scold', u'comment', u'rival']
[u'sign', u'name', u'right', u'sponsor']
[u'clue', u'help', u'understand', u'breast', u'cancer']
[u'parti', u'candid', u'state']
[u'plan', u'worri', u'green', u'group']
[u'softwar', u'detect', u'illeg', u'arriv', u'monitor']
[u'issu', u'elect', u'wish', u'list']
[u'noffk', u'sign', u'durham']
[u'clean', u'strike', u'continu']
[u'rail', u'whistleblow', u'need', u'greater', u'protect']
[u'govt', u'reject', u'tougher', u'ranger', u'monitor']
[u'opposit', u'seek', u'tougher', u'ranger', u'monitor']
[u'tourism', u'group', u'concern', u'departur']
[u'olympian', u'parad', u'melbourn']
[u'opposit', u'seek', u'jail', u'strike', u'resolut']
[u'palestinian', u'say', u'hama', u'retali', u'justifi']
[u'paramed', u'snub', u'govt', u'offer']
[u'paramed', u'industri', u'woe', u'brack', u'offic']
[u'park', u'candid', u'talk', u'plan']
[u'sydney', u'superdom', u'manag', u'right']
[u'perth', u'unlik', u'face', u'tougher', u'water', u'restrict']
[u'plan', u'focus', u'mental', u'health', u'reform']
[u'plan', u'smoke', u'law', u'cast', u'haze', u'hotel', u'futur']
[u'plaza', u'support', u'rezon', u'plan']
[u'plenti', u'snow', u'predict', u'season']
[u'satisfi', u'earli', u'stag', u'campaign']
[u'urg', u'boost', u'murray', u'flow']
[u'polic', u'probe', u'orchard', u'blaze']
[u'polic', u'releas', u'descript', u'warrnambool', u'murder']
[u'prison', u'escape', u'captur']
[u'produc', u'urg', u'help', u'limit']
[u'provan', u'irvin', u'bath', u'hall', u'famer']
[u'psychologist', u'suspend', u'love', u'letter', u'murder']
[u'psychologist', u'suspend', u'alleg', u'love', u'letter']
[u'public', u'get', u'area', u'health', u'servic']
[u'public', u'urg', u'help', u'fund', u'respit', u'hous']
[u'putin', u'rule', u'public', u'inquiri', u'school', u'sieg']
[u'govt', u'declar', u'zone', u'whale']
[u'rain', u'respit', u'central', u'farmer']
[u'rauhihi', u'win', u'dalli', u'honour']
[u'region', u'govern', u'quit', u'beslan', u'tragedi']
[u'research', u'group', u'offer', u'plan', u'support']
[u'resid', u'urg', u'cross', u'leg', u'power', u'woe']
[u'robinson', u'lay', u'claim', u'england']
[u'roger', u'thaiday', u'suspend']
[u'roger', u'confirm', u'world', u'champion']
[u'russia', u'arrest', u'suspect', u'plane', u'crash']
[u'russia', u'offer', u'bounti', u'chechen', u'rebel', u'leader']
[u'russia', u'warn', u'emptiv', u'strike', u'follow']
[u'govt', u'put', u'public', u'sector', u'execut']
[u'sawmil', u'fear', u'loss', u'support', u'major', u'parti']
[u'school', u'sniff', u'hygien', u'amidst', u'cleaner', u'strike']
[u'scientist', u'make', u'progress', u'anim', u'human']
[u'separatist', u'rebel', u'kill', u'aceh']
[u'sharon', u'deni', u'gaza', u'strike', u'reveng']
[u'south', u'australian', u'shoot', u'high', u'speed', u'chase']
[u'south', u'east', u'consid', u'mobil', u'blood', u'bank']
[u'storm', u'kick', u'dust', u'break', u'hill']
[u'stunt', u'pilot', u'readi', u'deliveri', u'stardust']
[u'sudan', u'reject', u'propos', u'darfur', u'secur']
[u'suspect', u'terrorist', u'captur', u'philippin']
[u'talli', u'downplay', u'final', u'home', u'match']
[u'ten', u'thousand', u'ralli', u'moscow', u'terror']
[u'elect', u'signific', u'hawk']
[u'thousand', u'kosciuszko', u'park', u'plan']
[u'tradespeopl', u'shortag', u'spark', u'home', u'danger', u'fear']
[u'truck', u'driver', u'convoy', u'kill', u'iraq']
[u'tuna', u'associ', u'add', u'trawler', u'fear']
[u'elect', u'campaign', u'region', u'focus']
[u'union', u'feel', u'singl', u'park', u'snub']
[u'union', u'welcom', u'labor', u'import', u'tariff', u'plan']
[u'death', u'iraq', u'reach']
[u'launch', u'strike', u'fallujah']
[u'plan', u'resolut', u'sudan']
[u'share', u'rise', u'german', u'japanes', u'upsw']
[u'vaccin', u'alert', u'contract', u'rare', u'ill']
[u'video', u'port', u'arthur', u'shoot', u'hand', u'polic']
[u'video', u'show', u'hour', u'school', u'sieg']
[u'vietnam', u'shell', u'kill']
[u'vike', u'grave', u'discoveri', u'lifetim']
[u'indigen', u'communiti', u'celebr', u'nativ', u'titl']
[u'weapon', u'drug', u'polic', u'raid']
[u'woman', u'kill', u'vehicl', u'rollov']
[u'woodward', u'lion']
[u'woolford', u'rub', u'match']
[u'youth', u'debt', u'highlight', u'school', u'campaign']
[u'kill', u'embassi', u'attack']
[u'north', u'milk', u'plant']
[u'dead', u'renew', u'attack', u'iraq']
[u'kill', u'turkish', u'tunnel']
[u'report', u'dead', u'blast', u'near', u'australian', u'embassi']
[u'abus', u'report', u'rise', u'prompt', u'disciplin', u'warn']
[u'accus', u'zeta', u'jone', u'stalker', u'trial']
[u'govt', u'begin', u'final', u'offic']
[u'liber', u'pledg', u'cash', u'privat', u'school']
[u'adelaid', u'sieg', u'inquiri', u'begin']
[u'studi', u'judiciari']
[u'play', u'role', u'bomb', u'investig']
[u'anderson', u'call', u'state', u'water', u'share', u'research']
[u'anderson', u'question', u'labor', u'flag', u'chang']
[u'anger', u'deakin', u'highris', u'plan']
[u'conced', u'region', u'bank', u'closur', u'wrong']
[u'aust', u'target', u'limit', u'greenhous', u'emiss']
[u'australian', u'bear', u'child', u'rule', u'citizen']
[u'australian', u'embassi', u'evacu', u'jakarta']
[u'australian', u'high', u'commiss', u'pakistan', u'upgrad']
[u'australian', u'quest', u'breath', u'life', u'champion']
[u'australian', u'school', u'jakarta', u'stay', u'open']
[u'australia', u'post', u'deal', u'agre', u'union', u'reject']
[u'seek', u'unflu', u'heater']
[u'beatti', u'highlight', u'livestock', u'scheme', u'import']
[u'bendigo', u'set', u'locat', u'benefit']
[u'boy', u'bounc', u'world', u'qualifi']
[u'biodiesel', u'plant', u'fund', u'secur']
[u'bird', u'death', u'remain', u'mysteri']
[u'blitz', u'mobil', u'net', u'driver']
[u'board', u'hous', u'benefit', u'incom', u'earner']
[u'brack', u'reject', u'claim', u'wind', u'farm', u'doubl', u'standard']
[u'budget', u'surplus', u'predict', u'spark', u'spend', u'warn']
[u'bush', u'get', u'whip', u'fetish', u'lingeri', u'video']
[u'busi', u'usual', u'mersey', u'hospit']
[u'servic', u'trial', u'offer', u'flexibl']
[u'freeway', u'fund', u'bypass']
[u'campaign', u'hold', u'embassi', u'attack']
[u'carr', u'apologis', u'illawarra', u'comment']
[u'casino', u'assist', u'tobacco', u'chang']
[u'cat', u'sanderson', u'heart', u'scare']
[u'charlevill', u'leap', u'faith', u'meat', u'demand']
[u'chief', u'minist', u'edg', u'elect']
[u'china', u'storm', u'death', u'toll', u'rise', u'thousand', u'injur']
[u'claremont', u'kill', u'raid', u'yield', u'item']
[u'coloni', u'drive', u'mataranka', u'busi', u'batti']
[u'communiti', u'readi', u'footi', u'grand', u'final']
[u'communiti', u'urg', u'tourism', u'plan']
[u'conserv', u'deal', u'forc', u'farmer', u'land']
[u'convoy', u'attack', u'indian', u'kashmir']
[u'coron', u'report', u'influenc', u'secur', u'law']
[u'costa', u'refer', u'rail', u'whistleblow', u'claim', u'polic']
[u'costello', u'foreshadow', u'jobless', u'rate', u'fall']
[u'council', u'consid', u'bigger', u'water', u'alloc']
[u'council', u'push', u'elector', u'boundari', u'chang']
[u'council', u'question', u'elector', u'boundari', u'plan']
[u'council', u'vote', u'eureka', u'holiday']
[u'court', u'refus', u'reduc', u'briberi', u'sentenc']
[u'crow', u'coach', u'cull']
[u'crow', u'rebuild', u'coach', u'cull']
[u'darwin', u'hous', u'sieg', u'leav', u'polic', u'face']
[u'davenport', u'storm', u'rain', u'forc', u'delay']
[u'deal', u'aim', u'cleaner', u'power', u'station']
[u'democrat', u'hold', u'riverland', u'health', u'forum']
[u'desert', u'park', u'put', u'parasit', u'microscop']
[u'dinosaur', u'dot', u'parent']
[u'doctor', u'prepar', u'push', u'rural', u'fund']
[u'door', u'open', u'super', u'submiss']
[u'doubt', u'cast', u'murder', u'evid']
[u'downer', u'blame', u'jakarta', u'bomb']
[u'dynamik', u'face', u'quarter', u'million', u'dollar', u'fine']
[u'econom', u'benefit', u'see', u'road', u'seal']
[u'economist', u'jobless', u'rate', u'drop']
[u'embassi', u'staff', u'account', u'jakarta', u'bomb']
[u'discrimin', u'link', u'econom']
[u'condemn', u'jakarta', u'blast']
[u'exercis', u'test', u'counter', u'terror', u'procedur']
[u'explos', u'hear', u'near', u'australian', u'embassi', u'jakarta']
[u'explos', u'hide', u'close', u'russian', u'cinema']
[u'expo', u'offer', u'youth', u'career', u'guidanc']
[u'extend', u'coal', u'leas', u'boost', u'perman', u'job']
[u'farmer', u'speak', u'wild', u'woe']
[u'fatal', u'crash', u'spark', u'call', u'second', u'rang', u'cross']
[u'kill', u'raid', u'qaeda', u'train', u'camp']
[u'fight', u'break', u'gaza', u'strip']
[u'like', u'sick', u'expect', u'soon']
[u'forens', u'oper', u'begin', u'jakarta', u'bomb', u'site']
[u'governor', u'pass', u'away', u'age']
[u'half', u'year', u'jail', u'sydney', u'stockbrok']
[u'freeway', u'fund', u'pledg', u'stunt', u'latham']
[u'fresh', u'fallujah', u'strike', u'kill']
[u'gallop', u'talk', u'dental', u'wait', u'list', u'plan']
[u'germani', u'kuranyi', u'strike', u'nativ', u'brazil']
[u'giffin', u'lillicrap', u'join', u'wallabi', u'coach', u'staff']
[u'govt', u'consid', u'convent', u'centr', u'fund', u'plea']
[u'govt', u'urg', u'fulli', u'fund', u'medic', u'centr']
[u'green', u'coalit', u'labor', u'democrat']
[u'green', u'reveal', u'woodchip', u'plan']
[u'grower', u'merger', u'plan']
[u'guantanamo', u'prison', u'incorrect', u'detain']
[u'health', u'area', u'plan', u'expect', u'impress', u'minist']
[u'hick', u'habib', u'deni', u'fair', u'amnesti']
[u'hoddl', u'killer', u'vexati', u'litig', u'court', u'hear']
[u'hong', u'kong', u'polit', u'climat', u'toxic']
[u'hous', u'blaze', u'investig', u'murder', u'probe']
[u'howard', u'offset', u'encourag', u'matur', u'worker']
[u'hurrican', u'ivan', u'kill', u'caribbean']
[u'hurrican', u'ivan', u'strengthen', u'maul', u'grenada']
[u'immigr', u'fail', u'tell', u'franc', u'elder']
[u'increas', u'children', u'blood', u'lead', u'level', u'prompt']
[u'indonesian', u'presid', u'cut', u'short', u'trip', u'bomb']
[u'injur', u'panther', u'battl', u'dragon']
[u'intern', u'pressur', u'indigen', u'issu', u'seek']
[u'iran', u'confirm', u'nuclear', u'activ']
[u'enter', u'ambul', u'union', u'meet']
[u'hear', u'public', u'servic', u'wage', u'disput']
[u'jail', u'inmat', u'sleep', u'inflat', u'bed']
[u'jobless', u'rate', u'steadi']
[u'journalist', u'kidnapp', u'deni', u'ransom', u'demand']
[u'kidman', u'birth', u'stir', u'controversi']
[u'labor', u'deni', u'polici', u'ignor', u'sole', u'parent']
[u'labor', u'outlin', u'meat', u'industri', u'plan']
[u'labor', u'textil', u'packag', u'cost', u'lib']
[u'labor', u'maintain', u'foreign', u'ownership', u'rule', u'latham']
[u'latham', u'prepar', u'democraci']
[u'latham', u'receiv', u'warm', u'welcom', u'bundaberg']
[u'lawn', u'bowler', u'court', u'save', u'club']
[u'leader', u'condemn', u'bomb']
[u'lockout', u'continu', u'gladston', u'crane', u'depot']
[u'macgil', u'snub', u'selector', u'hauritz', u'white']
[u'die', u'suspici', u'hous']
[u'face', u'child', u'porn', u'charg']
[u'margin', u'candid', u'declar', u'labor', u'plan', u'winner']
[u'market', u'enjoy', u'record']
[u'market', u'ignor', u'greenspan', u'upbeat', u'testimoni']
[u'mayor', u'welcom', u'econom', u'develop', u'board']
[u'mcgrane', u'cancer', u'oper', u'complet', u'success']
[u'medic', u'journal', u'demand', u'research', u'disclosur']
[u'megawati', u'visit', u'embassi', u'blast', u'scene']
[u'rescu', u'capsiz', u'yacht']
[u'merger', u'announc', u'send', u'childcar', u'stock', u'rise']
[u'merger', u'creat', u'childcar', u'giant']
[u'meet', u'plan', u'approv', u'condit']
[u'minist', u'wind', u'farm', u'honour']
[u'minist', u'shed', u'light', u'heat', u'fund']
[u'bed', u'cut', u'hospit', u'wait', u'list']
[u'voter', u'north', u'coast', u'seat']
[u'movi', u'magician', u'fail', u'catch', u'star', u'dust']
[u'await', u'elector', u'shake', u'detail']
[u'welcom', u'bushfir', u'fund']
[u'mundin', u'stop', u'sullivan', u'track', u'titl', u'bout']
[u'murali', u'furious', u'team', u'year', u'snub']
[u'marin', u'advisori', u'committe', u'fail', u'support']
[u'nightclub', u'pessimist', u'beat', u'lockout']
[u'breakthrough', u'council', u'disput']
[u'final', u'hitch', u'clarkson', u'departur', u'say', u'port']
[u'novemb', u'start', u'like', u'south', u'west', u'polic']
[u'polic', u'heighten', u'secur', u'feder', u'poll']
[u'resort', u'sue', u'ski', u'accid']
[u'administr', u'admit', u'hospit']
[u'lift', u'rat', u'signal', u'rise']
[u'occup', u'rise', u'lift', u'tourism', u'invest']
[u'ocean', u'offic', u'remain', u'tasmania', u'senat']
[u'ombudsman', u'air', u'fund', u'concern']
[u'oversea', u'show', u'boost', u'tweed', u'economi']
[u'ownership', u'rule', u'qanta', u'remain', u'unchang']
[u'palestinian', u'fight', u'camp', u'incurs']
[u'paramed', u'consid', u'strike', u'offer']
[u'perth', u'welcom', u'home', u'olymp', u'hero']
[u'play', u'final', u'begin', u'york']
[u'plea', u'increas', u'jail', u'term', u'terror']
[u'hint', u'relief']
[u'send', u'downer', u'jakarta']
[u'tight', u'lip', u'wimmera', u'malle', u'pipelin']
[u'polic', u'chief', u'deni', u'safeti', u'compromis']
[u'polic', u'investig', u'fatal', u'crash']
[u'polic', u'probe', u'graffiti', u'spree']
[u'polic', u'quiz', u'lewi', u'murder']
[u'pregnanc', u'campaign', u'warn', u'alcohol', u'danger']
[u'probe', u'seek', u'rescu', u'chopper', u'ground']
[u'propos', u'staff', u'cut', u'anger', u'cessnock', u'jail', u'warden']
[u'public', u'urg', u'remain', u'water', u'vigil', u'despit']
[u'qanta', u'return', u'trade', u'sell', u'stakehold']
[u'council', u'alert', u'worker', u'contract']
[u'opposit', u'support', u'year', u'fix', u'term']
[u'unveil', u'blueprint', u'fight', u'lung', u'cancer']
[u'hop', u'second']
[u'rain', u'boost', u'central', u'west', u'dam']
[u'rain', u'bring', u'relief', u'southern']
[u'rain', u'caus', u'open', u'reshuffl']
[u'rain', u'time', u'crop', u'plant']
[u'report', u'highlight', u'fall', u'miner', u'export', u'earn']
[u'reserv', u'bank', u'move', u'regul', u'eftpo']
[u'review', u'consid', u'drink', u'water', u'transport']
[u'rfds', u'boost', u'break', u'hill', u'effort']
[u'rivkin', u'resum', u'detent', u'drug', u'overdos']
[u'russia', u'threaten', u'liquid', u'terrorist', u'base']
[u'saff', u'back', u'land', u'resourc', u'secur', u'focus']
[u'african', u'nuclear', u'smuggl', u'charg', u'drop']
[u'school', u'cleaner', u'strike', u'continu']
[u'search', u'continu', u'aircraft', u'door']
[u'sewag', u'lure', u'meal', u'eat', u'robot']
[u'british', u'soldier', u'kill', u'czech', u'helicopt']
[u'smell', u'decompos', u'corps', u'mistak', u'garbag']
[u'smoke', u'law', u'feder', u'minist']
[u'south', u'korea', u'admit', u'histori', u'nuclear', u'test']
[u'staffer', u'say', u'warn', u'minist', u'orang', u'grove']
[u'steami', u'peacekeep', u'come', u'screen']
[u'strong', u'dollar', u'cut', u'miner', u'export', u'earn']
[u'subsidi', u'rule', u'sweet', u'victori', u'sugar', u'produc']
[u'suicid', u'rat', u'higher', u'homicid']
[u'super', u'trawler', u'ban', u'coast']
[u'suspend', u'sentenc', u'drug', u'traffick']
[u'syria', u'influenc', u'terror', u'israel', u'sharon']
[u'taibu', u'injuri', u'cloud', u'england', u'open']
[u'tasmania', u'fail', u'meet', u'commit', u'govt']
[u'offset', u'matur', u'worker', u'patchwork', u'crean', u'say']
[u'timmin', u'focus', u'penrith', u'showdown']
[u'toll', u'rise', u'bomb', u'blast', u'outsid', u'australian']
[u'traffic', u'jam', u'green', u'light', u'love']
[u'transport', u'cost', u'discourag', u'unemploy', u'renter']
[u'travel', u'warn', u'issu', u'indonesia']
[u'truck', u'close', u'barton', u'highway']
[u'iraqi', u'kill', u'fresh', u'strike']
[u'dead', u'helicopt', u'crash']
[u'year', u'delay', u'eas', u'hunt', u'ban', u'impact']
[u'ugandan', u'forc', u'free', u'hostag']
[u'award', u'recognis', u'newcastl', u'playwright']
[u'offici', u'defend', u'action', u'plagiar']
[u'union', u'back', u'rule']
[u'union', u'call', u'frontlin', u'polic']
[u'general', u'inspect', u'townsvill', u'troop']
[u'open', u'say', u'sorri', u'serena']
[u'urg', u'sanction', u'sudan']
[u'vaughan', u'snub', u'england', u'dream', u'team']
[u'warden', u'threaten', u'forc', u'picket', u'line']
[u'welfar', u'group', u'offer', u'plan', u'support']
[u'wind', u'farm', u'prove', u'energi', u'polici', u'work', u'govt']
[u'launch', u'mexico', u'world']
[u'world', u'want', u'bush', u'poll']
[u'dead', u'fallujah', u'attack', u'continu']
[u'elect', u'campaign', u'hold', u'jakarta']
[u'deni', u'knowledg', u'brown', u'loophol']
[u'aid', u'long', u'term', u'threat', u'secur']
[u'airport', u'secur', u'boost', u'welcom']
[u'alic', u'spring', u'prepar', u'yuendumu', u'influx']
[u'black', u'marshal', u'unhappi', u'expans']
[u'candid', u'deni', u'local', u'faction', u'brawl']
[u'pledg', u'austoft', u'site', u'owner']
[u'anderson', u'flag', u'airport', u'secur', u'increas']
[u'anderson', u'flag', u'eureka', u'debat']
[u'approv', u'give', u'mine', u'expans', u'arnhem', u'land']
[u'auction', u'fund', u'galleri']
[u'burn', u'effort', u'control', u'wetland', u'blaze']
[u'hope', u'retain', u'button']
[u'bathurst', u'heaven', u'monaro', u'buff']
[u'beat', u'agassi', u'vow', u'carri']
[u'beckham', u'sign', u'sponsorship', u'deal']
[u'bendigo', u'bank', u'claim', u'lender', u'face']
[u'bene', u'kick', u'oscar', u'toronto']
[u'bike', u'attack', u'wit', u'urg', u'come', u'forward']
[u'bird', u'buff', u'flock', u'highfield']
[u'blair', u'ahern', u'ditch', u'ireland', u'peac', u'effort']
[u'blood', u'donat', u'reveal', u'court', u'hear']
[u'bomber', u'regain', u'mcphee']
[u'bomber', u'warn', u'polic', u'attack']
[u'bomb', u'elect', u'short', u'liber', u'gather']
[u'bomb', u'link', u'australia', u'indonesia', u'howard']
[u'bowl', u'club', u'wrangl', u'trial']
[u'budget', u'figur', u'help', u'rat', u'say', u'labor']
[u'budget', u'surplus', u'doubl', u'predict']
[u'businesswoman', u'fear', u'jakarta', u'blast', u'econom', u'impact']
[u'stronger', u'tree', u'preserv', u'order']
[u'campaign', u'homophob', u'violenc', u'launch']
[u'carr', u'admit', u'icac', u'act', u'inappropri']
[u'cassini', u'pictur', u'reveal', u'saturn', u'ring']
[u'champion', u'leagu', u'tip', u'provid', u'upset']
[u'chopper', u'crash', u'claim', u'know', u'pastoralist']
[u'cleaner', u'strike', u'tonight']
[u'coffe', u'brew', u'posthum', u'charl']
[u'communiti', u'rat', u'scheme', u'input']
[u'concern', u'air', u'coast', u'accommod', u'shortag']
[u'confer', u'rais', u'alic', u'spring', u'profil']
[u'convict', u'record', u'solar', u'panel']
[u'coron', u'make', u'find', u'toddler', u'death']
[u'council', u'cast', u'wide', u'shark', u'plan']
[u'council', u'crack', u'moranbah', u'water']
[u'council', u'dive', u'pool', u'safeti', u'audit']
[u'council', u'maintain', u'bypass', u'fund', u'plea']
[u'council', u'form', u'plan']
[u'court', u'add', u'contempt', u'penalti', u'stab', u'sentenc']
[u'court', u'jail', u'driver', u'run', u'pair']
[u'court', u'overturn', u'murder', u'convict', u'order', u'trial']
[u'cowper', u'candid', u'look', u'boost', u'green', u'vote']
[u'deputi', u'hint', u'bruce', u'highway', u'flood', u'work']
[u'desper', u'ferguson', u'turn', u'heinz']
[u'dinosaur', u'plant', u'grace', u'japanes', u'garden']
[u'dollar', u'plung', u'terrorist', u'attack']
[u'downpour', u'boost', u'water', u'storag']
[u'dynamik', u'fail', u'stop', u'inquiri']
[u'elbaradei', u'seek', u'iaea', u'term']
[u'elliott', u'appeal', u'bankruptci', u'proceed']
[u'embassi', u'staff', u'surviv', u'miracl', u'downer']
[u'england', u'assess', u'secur', u'zimbabw', u'tour']
[u'expert', u'enter', u'weighti', u'debat']
[u'eyewit', u'report', u'suggest', u'bomb', u'mini']
[u'fake', u'indigen', u'artist', u'million', u'senat']
[u'fatal', u'crash', u'baffl', u'polic']
[u'fear', u'worker', u'compo', u'cost', u'busi', u'migrat']
[u'feedlot', u'owner', u'stand', u'live', u'export', u'standard']
[u'firm', u'guilti', u'workplac', u'death', u'case']
[u'fishermen', u'fin', u'take', u'toothfish']
[u'plan', u'power', u'station', u'woe']
[u'footbal', u'leagu', u'face', u'uncertain', u'futur']
[u'fox', u'threaten', u'tasmanian', u'biodivers']
[u'futur', u'cash', u'surplus', u'help', u'super', u'liabil']
[u'gallop', u'upbeat', u'entertain', u'centr', u'plan']
[u'geal', u'ring']
[u'geal', u'ring', u'olymp', u'disappoint']
[u'send', u'condol', u'indonesian', u'govt']
[u'govt', u'announc', u'billion', u'surplus']
[u'govt', u'consid', u'roundabout', u'option']
[u'govt', u'interst', u'ambul', u'bill']
[u'govt', u'warn', u'possibl', u'follow', u'attack']
[u'ask', u'hour', u'clinic', u'input']
[u'green', u'group', u'seek', u'stop', u'subdivis']
[u'green', u'candid', u'want', u'lower', u'port', u'piri', u'lead', u'level']
[u'green', u'oppos', u'power', u'station', u'plan']
[u'gunmak', u'rifl', u'dealer', u'sniper', u'victim']
[u'hewitt', u'crush', u'haa', u'reach', u'semi']
[u'hewitt', u'face', u'johansson', u'open', u'semi']
[u'hewitt', u'johansson', u'semi', u'final']
[u'high', u'court', u'hear', u'case', u'qanta']
[u'high', u'suicid', u'rate', u'concern', u'lifelin']
[u'hospit', u'strengthen', u'exist', u'servic']
[u'hous', u'shed', u'light', u'solar', u'benefit']
[u'howard', u'govt', u'target', u'deegan']
[u'hurrican', u'ivan', u'leav', u'dead', u'wake']
[u'icac', u'debat', u'carr', u'contempt', u'charg']
[u'icpa', u'gather', u'discuss', u'prep', u'year', u'concern']
[u'independ', u'ranger', u'audit', u'begin', u'monday']
[u'india', u'spin', u'say', u'wright']
[u'indonesian', u'polic', u'warn', u'attack']
[u'injur', u'australian', u'girl', u'move', u'singapor']
[u'injur', u'australian', u'father', u'grate', u'support']
[u'inquest', u'girl', u'death', u'recommend', u'charg']
[u'inquest', u'consid', u'booya', u'wreckag']
[u'institut', u'deliv', u'medic', u'research', u'award']
[u'investig', u'continu', u'zambian', u'plane', u'crash']
[u'iraqi', u'leader', u'condemn', u'worker', u'kidnap']
[u'boast', u'commerci', u'radio', u'station']
[u'israel', u'continu', u'strike', u'gaza']
[u'israel', u'expand', u'gaza', u'strip', u'offens']
[u'italian', u'museum', u'dream', u'realiti']
[u'jamaica', u'brace', u'feroci', u'hurrican', u'ivan']
[u'jam', u'fight', u'england', u'place']
[u'respons', u'jakarta', u'bomb', u'statement']
[u'judg', u'award', u'payout', u'crash', u'injuri']
[u'labor', u'delay', u'indigen', u'polici', u'launch']
[u'landcar', u'repres', u'share', u'idea']
[u'land', u'council', u'coordin', u'stand', u'asid', u'audit']
[u'launceston', u'clear', u'basebal', u'attack']
[u'liber', u'blow', u'budget']
[u'lobbi', u'group', u'anticip', u'budget', u'surplus']
[u'staff', u'number', u'forc', u'ambul', u'station', u'closur']
[u'mall', u'traffic', u'decis', u'pay']
[u'convict', u'know', u'transmit']
[u'stand', u'trial', u'threaten', u'kill']
[u'materi', u'chang', u'town', u'plastic', u'polici']
[u'mirboo', u'north', u'get', u'childhood', u'servic', u'centr']
[u'miss', u'children', u'murder', u'coron']
[u'time', u'rat', u'rebat', u'applic']
[u'time', u'seek', u'bauxit', u'submiss']
[u'urg', u'feder', u'health', u'takeov']
[u'nasa', u'hop', u'salvag', u'star', u'dust']
[u'nation', u'museum', u'unveil', u'flag', u'grind', u'zero']
[u'brussel', u'blow', u'turkey', u'hop']
[u'deal', u'boost', u'region', u'polic', u'presenc']
[u'sight', u'jail', u'strike']
[u'proof', u'bomb', u'claim', u'true']
[u'galah', u'death', u'mysteri']
[u'terrorist', u'target', u'polic']
[u'nuclear', u'talk', u'resum', u'korea']
[u'nurs', u'approv', u'offer']
[u'ohern', u'green', u'start', u'germani']
[u'older', u'men', u'health', u'microscop']
[u'olympian', u'welcom', u'home', u'adelaid']
[u'opposit', u'confid', u'maintain', u'surplus']
[u'pair', u'face', u'court', u'bash']
[u'panther', u'hold', u'dragon']
[u'panther', u'lose', u'galuvao', u'lewi']
[u'paralymp', u'flame', u'foot', u'acropoli']
[u'plan', u'boost', u'region', u'beach', u'safeti']
[u'plea', u'go', u'women', u'refug']
[u'polic', u'happi', u'reduc', u'crime', u'rate']
[u'polic', u'investig', u'melbourn', u'shoot', u'link']
[u'polic', u'lose', u'appeal', u'kitten', u'killer', u'sentenc']
[u'polic', u'probe', u'fatal', u'hinterland', u'crash']
[u'polic', u'seek', u'public', u'help', u'suspici', u'death']
[u'polic', u'warn', u'driver', u'hand', u'hold', u'mobil']
[u'polic', u'warn', u'footi', u'revel', u'behav']
[u'port', u'chief', u'post']
[u'power', u'compani', u'deni', u'bulli', u'claim']
[u'power', u'trio', u'train']
[u'process', u'plant', u'squeez', u'dairyfarm']
[u'bowl', u'club', u'win', u'fight', u'stay', u'open']
[u'radio', u'upgrad', u'improv', u'emerg', u'communic']
[u'rauhihi', u'readi', u'bulldog']
[u'real', u'crocodil', u'hunter', u'deni', u'plot']
[u'recept', u'olymp', u'gold', u'medallist']
[u'resid', u'want', u'rat', u'notic', u'concern', u'resolv']
[u'retract', u'remov', u'contempt', u'carr']
[u'roddick', u'bounc', u'swede', u'johansson']
[u'russian', u'sieg', u'victim', u'remain', u'unidentifi']
[u'govt', u'offer', u'polic', u'medic', u'assist']
[u'saint', u'dump', u'ahead', u'swan', u'clash']
[u'saint', u'march', u'preliminari', u'final']
[u'salmonella', u'restaur', u'reach', u'settlement']
[u'sauber', u'play', u'villeneuv', u'specul']
[u'scheme', u'encourag', u'timber', u'divers']
[u'school', u'cleaner']
[u'schumach', u'sizzl', u'practic']
[u'schu', u'say', u'crash', u'wont', u'chang', u'think']
[u'search', u'chancellor']
[u'senior', u'anticip', u'work', u'incent']
[u'sentenc', u'suspend', u'love', u'father', u'bash']
[u'sentenc', u'policeman', u'killer', u'help', u'famili']
[u'servicemen', u'conscript', u'wake', u'bomb']
[u'seven', u'fear', u'drown', u'rout', u'spain']
[u'share', u'market', u'end', u'week', u'record', u'high']
[u'shellharbour', u'get', u'prais', u'crime', u'fight', u'effort']
[u'sinclair', u'wait', u'brigalow', u'belt', u'decis']
[u'sindelar', u'lead', u'rain', u'canadian', u'open']
[u'pressur', u'jam', u'hardi', u'fund']
[u'warn', u'send', u'indonesian', u'polic', u'prior']
[u'stamp', u'duti', u'rise', u'outstrip', u'hous', u'price']
[u'stroke', u'dream']
[u'strong', u'economi', u'boost', u'territori', u'home', u'ownership']
[u'subdivis', u'creat', u'headach']
[u'sudan', u'genocid', u'claim', u'vote']
[u'sudan', u'sanction', u'divid']
[u'sudan', u'reject', u'genocid', u'declar', u'polit']
[u'sugar', u'grower', u'urg', u'diversifi', u'despit', u'rule']
[u'suicid', u'prevent', u'campaign', u'focus']
[u'survey', u'highlight', u'inner', u'citi', u'concern']
[u'sydney', u'hospit', u'childcar', u'centr']
[u'taiwan', u'polic', u'charg', u'assassin']
[u'tasmanian', u'candid', u'unabl', u'vote']
[u'taxi', u'council', u'put', u'custom', u'servic']
[u'teagu', u'vote', u'carlton', u'best']
[u'sink', u'fang', u'tare', u'green', u'committe']
[u'textil', u'firm', u'pleas', u'plan']
[u'theatr', u'share', u'upgrad', u'fund']
[u'thrill', u'panther', u'hold', u'dragon']
[u'toyota', u'pani', u'retir']
[u'travel', u'agenc', u'panic', u'jakarta', u'bomb']
[u'travel', u'undet', u'jakarta', u'bomb']
[u'tripodi', u'quiet', u'branch', u'stack', u'alleg']
[u'tuart', u'protest', u'violenc', u'alarm', u'polic']
[u'tuckey', u'seek', u'annual', u'farmer']
[u'tupou', u'injur', u'minto']
[u'union', u'welcom', u'meatwork', u'entitl', u'decis']
[u'unit', u'lose', u'fear', u'factor', u'say', u'kean']
[u'vice', u'chancellor', u'evid', u'plagiar']
[u'upgrad', u'showground', u'grandstand']
[u'maker', u'pay', u'sniper', u'victim']
[u'dozen', u'iraqi', u'prison', u'investig']
[u'defeat', u'matter', u'time', u'qaeda']
[u'govt', u'announc', u'south', u'east', u'initi']
[u'famili', u'die', u'zimbabw', u'plane', u'crash']
[u'water', u'shortag', u'possibl', u'problem', u'garden', u'site']
[u'wheelchair', u'taxi', u'target', u'transport', u'plan']
[u'move', u'shorten', u'tour', u'schedul']
[u'predict', u'great', u'white', u'shark', u'extinct']
[u'youth', u'danc', u'storm', u'tennant', u'creek']
[u'zimbabw', u'jail', u'briton', u'year', u'mercenari', u'case']
[u'alcan', u'pipelin', u'survey', u'complet']
[u'alcoa', u'account', u'chemic', u'spill']
[u'reject', u'patholog', u'accredit', u'inquiri']
[u'asian', u'trade', u'deleg', u'tour', u'darwin']
[u'aussi', u'aldous', u'appoint', u'french', u'rugbi', u'leagu', u'coach']
[u'aussi', u'pilkadari', u'lead', u'korea']
[u'aussi', u'pilkadari', u'stay', u'ahead']
[u'aussi', u'face', u'strength', u'morocco', u'fight']
[u'australian', u'lefti', u'menac', u'german', u'lead']
[u'barrichello', u'claim', u'fastest', u'pole']
[u'bauxit', u'agreement', u'extens', u'consider']
[u'escap', u'abductor', u'polic']
[u'boy', u'arrest', u'campbelltown']
[u'bronco', u'ignor', u'gordi', u'factor']
[u'crash', u'northern', u'iran', u'kill']
[u'cabinet', u'consid', u'secur', u'measur']
[u'cab', u'answer', u'disabl', u'servic', u'concern']
[u'campaign', u'halt', u'continu']
[u'canberra', u'firefight', u'consid', u'offer']
[u'candid', u'campbel', u'put', u'privaci', u'concern', u'asid']
[u'cat', u'stay', u'aliv']
[u'cigarett', u'sale', u'restrict', u'implement']
[u'clinton', u'releas', u'hospit']
[u'coalit', u'woo', u'wide', u'road', u'fund']
[u'cold', u'snap', u'surpris', u'driver']
[u'congo', u'launch', u'offens', u'rebel']
[u'cotton', u'plan', u'rekindl', u'water', u'disput']
[u'cowboy', u'produc', u'stun', u'upset']
[u'loom', u'dynamik']
[u'dead', u'hurrican', u'ivan', u'roar', u'ashor', u'jamaica']
[u'deegan', u'urg', u'talk', u'bloodsh']
[u'dementieva', u'set', u'russian', u'open', u'final']
[u'democrat', u'girli', u'doll']
[u'diner', u'escap', u'concret', u'collaps', u'unharm']
[u'discharg', u'patient', u'forc']
[u'disgrac', u'millar', u'drug', u'appeal']
[u'disney', u'thoma', u'die']
[u'doctor', u'push', u'measl', u'shot']
[u'dog', u'snore', u'wors', u'bite']
[u'donat', u'disclos', u'elect', u'lee']
[u'dont', u'write', u'underdog', u'cowboy']
[u'driver', u'fin', u'player']
[u'embassi', u'bomb', u'link', u'foil', u'attack', u'polic']
[u'fall', u'price', u'boost', u'stock']
[u'famer', u'welcom', u'extra', u'trapper']
[u'famili', u'refus', u'maradona', u'leav', u'argentina']
[u'priest', u'face', u'indec', u'assault', u'charg']
[u'test', u'cricket', u'die', u'age']
[u'fund', u'polici', u'privat', u'school', u'advantag', u'parent']
[u'galleri', u'hang', u'upgrad', u'hop', u'sponsorship', u'dollar']
[u'gallop', u'promis', u'sustain', u'budget', u'spend']
[u'gough', u'harmison', u'england', u'rout', u'zimbabw']
[u'govt', u'announc', u'secur', u'review']
[u'greek', u'balco', u'prosecutor', u'kenteri', u'case']
[u'inexperienc', u'medic', u'staff', u'matern', u'ward']
[u'investig', u'probe', u'fatal', u'chopper', u'crash']
[u'isra', u'troop', u'withdraw', u'gaza', u'refuge', u'camp']
[u'italian', u'hold', u'silent', u'vigil', u'captur', u'worker']
[u'ivan', u'strengthen', u'rout', u'jamaica']
[u'jabiru', u'council', u'strip', u'power']
[u'jailer', u'excus', u'suicid', u'rivkin']
[u'kelli', u'secur', u'maiden', u'pole']
[u'kiwi', u'rattl', u'australia', u'fleme']
[u'kiwi', u'eas', u'victori', u'rain', u'halt', u'england']
[u'liber', u'hope', u'good', u'behaviour', u'meet']
[u'locust', u'control', u'centr', u'open']
[u'charg', u'woman', u'murder']
[u'die', u'wall', u'collaps']
[u'kill', u'singl', u'accid']
[u'misinform', u'caus', u'conserv', u'plan', u'fear']
[u'mosqu', u'host', u'multi', u'faith', u'sept', u'servic']
[u'seek', u'heroin', u'cure', u'gambl', u'addict']
[u'nauru', u'opposit', u'seek', u'govt', u'remov']
[u'malaysian', u'bird', u'case', u'offici']
[u'norther', u'fourth', u'track', u'return']
[u'norther', u'comeback', u'perth']
[u'water', u'level', u'rise', u'drought']
[u'nurs', u'home', u'death', u'toll', u'rise']
[u'ogradi', u'fourth', u'petacchi', u'complet', u'spanish']
[u'orford', u'hill', u'lead', u'storm', u'victori']
[u'policeman', u'lose', u'allow', u'case']
[u'polic', u'question', u'bodi']
[u'polic', u'releas', u'video', u'footag', u'jakarta', u'bomb']
[u'polic', u'warn', u'busi', u'theft']
[u'prison', u'trial', u'extend']
[u'elect', u'victori', u'say', u'minchin']
[u'quadripleg', u'win', u'compens', u'payout']
[u'raikkonen', u'take', u'fight', u'schumach']
[u'ranger', u'problem', u'highlight', u'safeti', u'flaw']
[u'religi', u'leader', u'anniversari', u'condemn']
[u'rooney', u'fit', u'battl', u'drag']
[u'rumsfeld', u'doubt', u'south', u'korea', u'maintain', u'nuclear', u'program']
[u'rumsfeld', u'warn', u'escal', u'iraq', u'violenc']
[u'russia', u'blame', u'chechen', u'rebel', u'leader', u'sieg']
[u'sack', u'america', u'skipper', u'break', u'silenc']
[u'sadr', u'citi', u'clash', u'leav', u'dead']
[u'scientist', u'recommend', u'blue', u'tuna']
[u'second', u'terrorist', u'cell', u'pois', u'attack', u'keelti']
[u'secret', u'archbishop', u'short', u'list', u'releas']
[u'septemb', u'victim', u'rememb', u'silenc']
[u'shakespear', u'enter', u'digit']
[u'singh', u'stalk', u'canadian', u'leader', u'weir']
[u'spain', u'finish', u'tanker', u'spill', u'clean']
[u'srebrenica', u'victim', u'bosnia', u'mass', u'grave']
[u'kilda', u'kiosk', u'restor']
[u'atom', u'salvag', u'genesiss', u'ruin']
[u'sydney', u'home', u'lose', u'power']
[u'tasmania', u'congratul', u'olympian']
[u'taxi', u'chase', u'foil', u'west', u'bank', u'bomb', u'plot']
[u'team', u'dynamik', u'fin', u'illeg', u'test']
[u'terror', u'australia', u'greatest', u'challeng', u'latham']
[u'arrest', u'perth', u'sieg', u'end']
[u'lebanes', u'shoot', u'dead', u'baghdad', u'offici']
[u'tiwi', u'timber', u'set', u'sail', u'asian', u'market']
[u'report', u'open', u'discuss']
[u'tourist', u'flock']
[u'train', u'delay', u'earn', u'connex', u'fine']
[u'transport', u'upgrad', u'plan', u'target', u'congest']
[u'bomb', u'explod', u'jeddah']
[u'kill', u'road', u'smash']
[u'umaga', u'defend', u'black', u'backlin', u'tactic']
[u'union', u'appeal', u'allow', u'decis']
[u'desert', u'jenkin', u'surrend', u'japan']
[u'intellig', u'soldier', u'jail', u'ghraib']
[u'secur', u'fear', u'remain', u'anniversari', u'loom']
[u'vet', u'urg', u'check', u'anim', u'tableland']
[u'villa', u'draw', u'end', u'chelsea', u'win']
[u'voter', u'urg', u'indigen', u'repres']
[u'offer', u'indonesia', u'help', u'downer']
[u'william', u'challeng', u'klitschko', u'world', u'titl']
[u'woodbridg', u'molik', u'lose', u'doubl', u'final']
[u'owner', u'saudi', u'arabia', u'attack']
[u'children', u'slash', u'care', u'attack']
[u'target', u'growth', u'log', u'elect', u'issu']
[u'fan', u'flock', u'alic', u'spring']
[u'alleg', u'child', u'abus', u'remand', u'custodi']
[u'ambiti', u'exercis', u'test', u'terror', u'defenc']
[u'ambros', u'lead', u'seri', u'sandown']
[u'anderson', u'deni', u'australia', u'higher', u'terror', u'risk']
[u'anderson', u'urg', u'clarifi', u'terror', u'risk', u'comment']
[u'attack', u'strengthen', u'counter', u'terror', u'resolv']
[u'australian', u'warn', u'bomb', u'risk']
[u'free', u'qanta', u'eye', u'china']
[u'beckham', u'larsson', u'target', u'barca', u'real']
[u'bird', u'area', u'ibi', u'breed', u'undisturb']
[u'blast', u'fight', u'baghdad', u'kill']
[u'bomb', u'fail', u'deter', u'intern', u'travel']
[u'brown', u'warn', u'vote', u'coalit', u'senat']
[u'burnout', u'doctor', u'refus', u'sign', u'hospit', u'contract']
[u'bushfir', u'control']
[u'button', u'contract', u'hear', u'expect', u'week']
[u'cahil', u'card', u'sour', u'everton', u'victori']
[u'communiti', u'snap', u'suburban', u'life']
[u'competit', u'keep', u'attend', u'high']
[u'congo', u'forc', u'clear', u'rwanda', u'flashpoint']
[u'cowboy', u'host', u'histor', u'final']
[u'cuba', u'florida', u'await', u'strengthen', u'hurrican']
[u'custom', u'apprehend', u'bird', u'smuggler']
[u'dawn', u'blast', u'gunfir', u'rock', u'heart', u'baghdad']
[u'decis', u'expect', u'norther', u'carniv', u'plan']
[u'deegan', u'back', u'unseat', u'downer']
[u'democrat', u'green', u'launch', u'victoria', u'campaign']
[u'democrat', u'seek', u'women', u'vote']
[u'derail', u'shut', u'evandal', u'road']
[u'doubl', u'appeal', u'dynamik', u'fine']
[u'draft', u'set', u'deadlin', u'iran', u'nuclear', u'investig']
[u'elector', u'roll', u'open', u'voter']
[u'emerg', u'declar', u'truck']
[u'forestri', u'offic', u'remov', u'illeg', u'bike', u'jump']
[u'kill', u'perth', u'accid']
[u'ganguli', u'toy', u'struggl', u'kenyan']
[u'govt', u'focus', u'water', u'polici']
[u'grove', u'find', u'expans', u'easi']
[u'gunner', u'pull', u'clear', u'chelsea', u'stumbl']
[u'helicopt', u'crash', u'kill', u'alexandria', u'patriarch']
[u'hewitt', u'secur', u'master', u'spot']
[u'hewitt', u'face', u'feder', u'open', u'final']
[u'histori', u'hold', u'solut', u'expert']
[u'hobbi', u'farmer', u'urg', u'check', u'fee', u'level']
[u'howard', u'latham', u'prepar', u'debat']
[u'huge', u'turnout', u'expect', u'hong', u'kong', u'elect']
[u'hurrican', u'lash', u'cayman', u'pound', u'jamaica']
[u'intens', u'fight', u'baghdad', u'leav', u'dead']
[u'iraqi', u'kill', u'british', u'consul', u'bomb']
[u'iraq', u'rais', u'terrorist', u'risk', u'anderson']
[u'itali', u'hope', u'hostag', u'deadlin', u'loom']
[u'kidnapp', u'free', u'turkish', u'journalist']
[u'kuznetsova', u'win', u'open', u'final']
[u'larg', u'explos', u'north', u'korea', u'week', u'report']
[u'latham', u'challeng', u'futur', u'plan']
[u'leader', u'debat', u'restart', u'campaign']
[u'leader', u'squar', u'debat']
[u'lebanes', u'kill', u'fail', u'kidnap', u'attempt', u'polic']
[u'liber', u'urg', u'remain', u'singl', u'mind']
[u'loar', u'claim', u'korean', u'open', u'aussi', u'pilkadari', u'fourth']
[u'charg', u'alleg', u'parramatta', u'kidnap']
[u'charg', u'toddler', u'son', u'murder']
[u'mcdowel', u'retain', u'german', u'master', u'lead']
[u'mental', u'health', u'servic', u'fall', u'apart', u'brown']
[u'neurosurgeon', u'share', u'brain', u'injuri', u'knowledg']
[u'museum', u'pay', u'homag', u'italian', u'influenc']
[u'explan', u'korean', u'blast', u'report', u'offici']
[u'northern', u'suburb', u'power', u'restor']
[u'north', u'korea', u'blast', u'like', u'nuclear']
[u'sign', u'agricultur', u'agreement', u'sabah']
[u'park', u'user', u'concern', u'futur', u'kosciuszko']
[u'perth', u'trial', u'environ', u'friend', u'bus']
[u'photo', u'exhibit', u'kick', u'heritag', u'week']
[u'poll', u'put', u'labor', u'bass', u'braddon']
[u'propos', u'famili', u'violenc', u'law', u'need', u'debat']
[u'region', u'broadcast', u'meet', u'local', u'program', u'quota']
[u'retail', u'fin', u'power', u'cut']
[u'rooster', u'send', u'raider', u'pack']
[u'rspca', u'renew', u'push', u'live', u'export']
[u'runaway', u'tiger', u'elud', u'armi']
[u'santa', u'lose', u'aircraft', u'altitud', u'exempt']
[u'second', u'sydney', u'marathon', u'tanzania', u'revelian']
[u'small', u'team', u'need', u'help', u'hand', u'say', u'ganguli']
[u'sorenstam', u'seiz', u'lpga', u'lead']
[u'sprinkler', u'wash', u'away', u'problem', u'bat']
[u'tale', u'illeg', u'abort', u'win', u'venic', u'honour']
[u'tanzanian', u'take', u'sydney', u'marathon']
[u'critic', u'eat', u'humbl', u'crean']
[u'teenag', u'kill', u'vehicl', u'collis']
[u'kill', u'elect', u'unrest', u'afghanistan']
[u'build', u'attack', u'afghanistan']
[u'union', u'launch', u'anti', u'coalit', u'campaign']
[u'unsuccess', u'bidder', u'challeng', u'stanbrok', u'sale']
[u'tell', u'syria', u'stop', u'interfer', u'lebanon']
[u'end', u'coupl']
[u'viduka', u'keep', u'boro', u'roll', u'go']
[u'violenc', u'grip', u'baghdad']
[u'violenc', u'letter', u'spark']
[u'labor', u'candid', u'die']
[u'continu', u'aerial', u'shark', u'patrol', u'despit']
[u'weir', u'hold', u'canada', u'lead']
[u'weir', u'stretch', u'canadian', u'open', u'lead']
[u'defeat', u'terrorist', u'bush']
[u'wilko', u'impress', u'england', u'boss']
[u'wind', u'grass', u'fire', u'brisban']
[u'woman', u'drown', u'near', u'coff', u'harbour']
[u'young', u'cat', u'readi', u'lion', u'thompson']
[u'kill', u'nepal', u'crash']
[u'accommod', u'pretti', u'bloom', u'short', u'festiv']
[u'agn', u'water', u'parent', u'want', u'high', u'school']
[u'campaign', u'firebomb']
[u'issu', u'murray', u'flow', u'challeng']
[u'seek', u'candid', u'kevin', u'richard', u'die']
[u'choos', u'kalgoorli', u'candid', u'wednesday']
[u'aussi', u'refere', u'hand', u'world', u'qualifi']
[u'aussi', u'whistleblow', u'hand', u'world', u'qualifi']
[u'australia', u'smash']
[u'australia', u'annihil', u'beat', u'rate']
[u'awesom', u'feder', u'demolish', u'hewitt']
[u'banana', u'grower', u'protest', u'philippin']
[u'bank', u'lead', u'stock', u'market', u'climb']
[u'beer', u'flow', u'worker', u'return']
[u'crowd', u'see', u'violent', u'wind']
[u'crowd', u'tip', u'greet', u'gold', u'medal', u'win']
[u'blatter', u'criticis', u'cahil', u'send']
[u'break', u'hill', u'health', u'staff', u'join', u'nation', u'scheme']
[u'break', u'hill', u'share', u'tourism', u'fund']
[u'businessman', u'attack', u'warn']
[u'boost', u'alic', u'spring', u'patient', u'hous']
[u'campaign', u'rais', u'child', u'abus', u'awar']
[u'carr', u'dismiss', u'fear', u'competit']
[u'carr', u'say', u'ninth', u'area', u'health', u'servic']
[u'research', u'help', u'diabet', u'fight']
[u'child', u'care', u'shortag', u'stop', u'riverland', u'move']
[u'china', u'demand', u'boost', u'kimberley']
[u'chines', u'deleg', u'opportun']
[u'death', u'spark', u'hospit', u'alert']
[u'coast', u'patrol', u'asset', u'strip']
[u'woe', u'spark', u'chang']
[u'costello', u'warn', u'labor', u'hike']
[u'council', u'get', u'flight']
[u'council', u'happi', u'road', u'fund']
[u'council', u'seek', u'park', u'fund']
[u'council', u'seek', u'greater', u'plan', u'power']
[u'council', u'seek', u'highway', u'invest']
[u'count', u'continu', u'hong', u'kong', u'poll']
[u'court', u'hear', u'clark', u'challeng', u'rape', u'case']
[u'cowboy', u'await', u'semi', u'final', u'confirm']
[u'cyclist', u'wood', u'clinch', u'world', u'crown']
[u'dairi', u'farmer', u'worri']
[u'darwin', u'nguiu', u'ferri', u'servic', u'benefit', u'children']
[u'democrat', u'attack', u'quarantin', u'polici']
[u'democrat', u'lyne', u'candid', u'unlik']
[u'doctor', u'reassur', u'patient', u'brain', u'diseas']
[u'dragon', u'foursom', u'train']
[u'drought', u'threaten', u'wool', u'industri']
[u'drought', u'tighten', u'grip']
[u'engin', u'seek', u'access', u'embassi', u'ruin']
[u'explos', u'expert', u'check', u'burn', u'truck']
[u'extra', u'resourc', u'aid', u'robberi']
[u'farm', u'confid']
[u'farm', u'benefit', u'recycl', u'effluent', u'water']
[u'father', u'accus', u'son', u'murder', u'face', u'court']
[u'father', u'happi', u'abduct', u'home']
[u'feder', u'demolish', u'hewitt', u'open', u'titl']
[u'feder', u'express', u'roll']
[u'feder', u'fast', u'hewitt', u'grand', u'slam', u'nemesi']
[u'feder', u'steamrol', u'hewitt']
[u'final', u'attack', u'leav', u'umpir', u'stitch']
[u'finch', u'doubt', u'final']
[u'foodland', u'withstand', u'petrol', u'deal', u'pressur']
[u'boss', u'slam', u'unreason']
[u'head', u'jackson', u'slam', u'unreason']
[u'player', u'plead', u'guilti', u'forgeri']
[u'governor', u'farewel', u'public', u'servic']
[u'teen', u'arrest', u'high', u'speed', u'chase']
[u'gallop', u'listen', u'hospit', u'concern']
[u'garrett', u'say', u'environ', u'labor', u'prioriti']
[u'geraldton', u'forum', u'consid', u'mental', u'health']
[u'girl', u'injur', u'embassi', u'bomb', u'part', u'paralys']
[u'govt', u'admit', u'wont', u'impact', u'violent']
[u'govt', u'admit', u'water', u'project', u'skip', u'bid']
[u'govt', u'announc', u'pipelin', u'fund', u'western']
[u'grain', u'grower', u'optimist', u'rain', u'predict']
[u'greec', u'sack', u'forc', u'chief', u'chopper', u'crash']
[u'green', u'leader', u'astound', u'content', u'debat']
[u'green', u'seek', u'uranium', u'review', u'releas']
[u'herat', u'calm', u'weekend', u'violenc']
[u'hewitt', u'fli', u'feder']
[u'voter', u'china', u'politician']
[u'homestead', u'work', u'earn', u'award']
[u'hong', u'kong', u'elect', u'candid', u'question', u'vote']
[u'hospit', u'withdraw', u'instrument', u'death']
[u'hurrican', u'ivan', u'head', u'cuba']
[u'iaea', u'meet', u'iran', u'nuclear', u'plan', u'amid', u'bomb', u'worri']
[u'disciplin', u'liber', u'upset', u'nation']
[u'indigen', u'group', u'say', u'health', u'fund', u'inadequ']
[u'industri', u'council', u'air', u'dental', u'plan', u'concern']
[u'industri', u'land', u'plan']
[u'injuri', u'help', u'mauresmo', u'reach', u'spot']
[u'inquest', u'launch', u'road', u'death']
[u'iraqi', u'elect', u'ahead']
[u'iraqi', u'warn', u'await', u'angel', u'death']
[u'hear', u'health', u'posit', u'disput']
[u'jakarta', u'death', u'toll', u'possibl', u'keelti']
[u'jakarta', u'embassi', u'move']
[u'journalist', u'kill', u'camera', u'iraq']
[u'judiciari', u'worri', u'rooster']
[u'june', u'warden', u'return', u'work']
[u'karzi', u'urg', u'calm', u'governor', u'sack']
[u'kenteri', u'coach', u'hear', u'postpon']
[u'labor', u'plan', u'atsic', u'copi', u'vanston']
[u'labor', u'retreat', u'plan', u'say']
[u'landcar', u'group', u'question', u'lift', u'water', u'ban']
[u'land', u'council', u'look', u'improv', u'island', u'educ']
[u'landslid', u'buri', u'famili', u'ivan', u'wake']
[u'latham', u'buoy', u'debat', u'perform']
[u'latham', u'honour', u'kalgoorli', u'candid']
[u'latham', u'will', u'debat', u'costello']
[u'launceston', u'player', u'win', u'ntfl', u'award']
[u'leav', u'right', u'ear', u'attun', u'differ', u'sound']
[u'liber', u'reiter', u'liquor', u'licens', u'plan']
[u'lobster', u'group', u'reject', u'democrat', u'claim']
[u'lomu', u'run', u'kidney', u'transplant']
[u'luca', u'height', u'reactor', u'licens']
[u'macfarlan', u'dismiss', u'carbon', u'trade', u'call']
[u'accus', u'racist', u'attack', u'seek', u'bail']
[u'admit', u'murder']
[u'face', u'court', u'attempt', u'murder', u'charg']
[u'face', u'court', u'galah', u'death']
[u'marijuana', u'crop', u'steal', u'break']
[u'matthew', u'confid', u'injur', u'lion', u'play']
[u'medic', u'centr', u'cut', u'night', u'oper']
[u'face', u'court', u'anim', u'import']
[u'court', u'attempt', u'murder', u'charg']
[u'merchant', u'remak', u'give', u'fundamentalist', u'warn']
[u'migrat', u'scheme', u'investig']
[u'miner', u'field', u'goal', u'clinch', u'grand', u'final']
[u'minist', u'talk', u'boost', u'coast', u'flight']
[u'say', u'forest', u'fell', u'threaten', u'creatur']
[u'mobil', u'guid', u'lead', u'walk', u'tour']
[u'money', u'need', u'water', u'fund', u'democrat']
[u'motorcyclist', u'die', u'gulnar', u'crash']
[u'air', u'resid', u'heritag', u'plan', u'fear']
[u'murder', u'victim', u'famili', u'back', u'doubl', u'jeopardi', u'review']
[u'murray', u'river', u'polici', u'critic', u'flow']
[u'music', u'student', u'year', u'high', u'note']
[u'netanyahu', u'call', u'referendum', u'gaza', u'pullout', u'plan']
[u'servic', u'expect', u'teeth', u'woe']
[u'highway', u'travel', u'time', u'reduc']
[u'jail', u'vehicl', u'undergo', u'test']
[u'night', u'curfew', u'save', u'driver', u'live', u'expert']
[u'nixon', u'australia', u'power', u'polic', u'chief']
[u'korea', u'say', u'explos', u'control', u'demolit']
[u'norther', u'book', u'spring', u'carniv']
[u'confirm', u'townsvill', u'final']
[u'nurs', u'home', u'death', u'toll', u'increas']
[u'inspir', u'design']
[u'ohern', u'second', u'germani', u'win', u'vijay', u'annika']
[u'olympian', u'enjoy', u'central', u'recept']
[u'opposit', u'tram', u'plan', u'grow']
[u'paramed', u'protest', u'offic']
[u'phone', u'reveal', u'childcar', u'dissatisfact']
[u'plagiar', u'inquiri', u'tell', u'comment', u'inappropri']
[u'announc', u'water', u'fund']
[u'defend', u'releas', u'inform', u'bomb', u'warn']
[u'want', u'cultur', u'shift', u'water']
[u'polic', u'hope', u'display', u'lead', u'killer']
[u'polic', u'investig', u'biki', u'club', u'brawl']
[u'post', u'mortem', u'shed', u'light', u'dolphin', u'death']
[u'post', u'olymp', u'comedown', u'doubl', u'medallist', u'holm']
[u'powel', u'confid', u'iraq', u'elect', u'proceed']
[u'power', u'train', u'privat']
[u'power', u'woe', u'affect', u'tafe', u'class']
[u'primari', u'produc', u'confid', u'increas']
[u'primari', u'produc', u'land', u'clear', u'ballot']
[u'prison', u'manag', u'guarante', u'job']
[u'probe', u'continu', u'sale', u'blackout']
[u'program', u'help', u'school', u'better', u'manag', u'financ']
[u'protea', u'crush', u'bangladesh']
[u'public', u'health', u'servic', u'chang']
[u'public', u'invit', u'candid', u'forum']
[u'putin', u'tighten', u'grip', u'region', u'school', u'sieg']
[u'recov', u'fall', u'rock', u'ledg']
[u'ralf', u'readi', u'work']
[u'ranger', u'audit', u'begin', u'today']
[u'rann', u'want', u'murray', u'flow', u'water', u'plan']
[u'research', u'develop', u'bird', u'vaccin']
[u'reserv', u'bank', u'announc', u'profit']
[u'restor', u'cloncurri', u'hall', u'win', u'award']
[u'rudd', u'address', u'parti', u'faith', u'bathurst']
[u'saint', u'lion', u'battl', u'injuri', u'scar']
[u'school', u'budget', u'help']
[u'school', u'teach', u'wild', u'erad']
[u'secur', u'guard', u'face', u'court', u'murder', u'charg']
[u'urg', u'storm', u'readi']
[u'clive', u'leav', u'england', u'door', u'ajar']
[u'skier', u'hole', u'surviv', u'blizzard']
[u'korea', u'nuke', u'research', u'concern']
[u'snow', u'fall', u'cold', u'septemb', u'weekend']
[u'snow', u'fall', u'victoria', u'high', u'countri']
[u'chief', u'justic', u'charg', u'theft']
[u'son', u'ill', u'forc', u'giffin', u'wallabi', u'tour']
[u'specul', u'govt', u'pipelin', u'fund']
[u'spider', u'charg', u'father', u'right', u'protest']
[u'sport', u'stori']
[u'spur', u'frustrat', u'norwich', u'keeper', u'green']
[u'staff', u'shortag', u'toll', u'paramed']
[u'stanhop', u'conced', u'govt', u'slow', u'age', u'care']
[u'suicid', u'letter', u'reveal', u'deni', u'involv']
[u'surf', u'club', u'say', u'drown', u'highlight', u'beach', u'danger']
[u'sydney', u'prison', u'offic', u'strike']
[u'technolog', u'uncov', u'ibi', u'behaviour']
[u'terror', u'fear', u'increas', u'salvo', u'workload']
[u'terror', u'need', u'balanc', u'respons', u'say', u'keelti']
[u'test', u'identifi', u'river', u'remain']
[u'thatcher', u'lawyer', u'challeng', u'africa', u'coup', u'question']
[u'thiev', u'target', u'hemp', u'plant']
[u'earli', u'excit', u'opinion', u'poll']
[u'tourism', u'oper', u'fear', u'propos', u'increas']
[u'tourism', u'strategi']
[u'tradit', u'owner', u'welcom', u'tourism', u'strategi']
[u'tragic', u'time', u'north', u'east', u'road']
[u'trial', u'start', u'year', u'murder']
[u'troop', u'carrier', u'crash', u'kill', u'cadet']
[u'australian', u'kidnap', u'iraq', u'report']
[u'dead', u'separ', u'north', u'road', u'accid']
[u'confer', u'disabl', u'voic']
[u'offer', u'counsel', u'student', u'drown']
[u'chief', u'defend', u'plagiar', u'inquiri']
[u'ponder', u'civic', u'hall', u'accommod']
[u'airway', u'file', u'bankruptci', u'protect']
[u'call', u'pressur', u'sudan']
[u'launch', u'strike', u'falluja']
[u'vegi', u'truck', u'roll', u'catch']
[u'charg', u'fatal']
[u'violenc', u'escal', u'pound', u'falluja']
[u'visitor', u'cave', u'light']
[u'water', u'fund', u'lack', u'strategi']
[u'water', u'storag', u'rainfal', u'boost']
[u'lure', u'mitsubishi', u'worker', u'west']
[u'week', u'put', u'brain', u'injuri', u'spotlight']
[u'woman', u'face', u'court', u'partner', u'stab']
[u'woodward', u'tip', u'wilko', u'england', u'captainci']
[u'work', u'progress', u'byangum', u'bridg']
[u'youth', u'lack', u'resourc', u'industri', u'knowledg', u'survey']
[u'yuendumu', u'score', u'countri', u'win']
[u'zarqawi', u'milit', u'claim', u'iraq', u'attack']
[u'academ', u'join', u'log', u'protest']
[u'accc', u'urg', u'probe', u'telstra', u'australia', u'post', u'deal']
[u'adelaid', u'seek', u'extend', u'zone']
[u'aid', u'campaign', u'target', u'indigen', u'communiti']
[u'fay', u'lose', u'appeal', u'princess']
[u'australian', u'account', u'downer']
[u'threaten', u'govt', u'legal', u'action']
[u'anderson', u'order', u'realiti', u'check', u'water', u'fund']
[u'anglican', u'converg', u'wagga', u'synod']
[u'anti', u'log', u'group', u'reloc', u'plan']
[u'apologis', u'concert', u'outburst']
[u'anwar', u'say', u'govern', u'corrupt', u'widespread']
[u'argument', u'end', u'shoot', u'stab']
[u'audit', u'highlight', u'highway', u'woe']
[u'australia', u'investig', u'iraq', u'kidnap', u'claim']
[u'australia', u'spi', u'keelti', u'say']
[u'australia', u'negoti', u'terrorist']
[u'oper', u'head', u'southern', u'highland']
[u'batman', u'end', u'buckingham', u'palac', u'ledg', u'protest']
[u'crowd', u'tip', u'farewel', u'hero']
[u'biki', u'court', u'explos', u'charg']
[u'blaze', u'take', u'hold', u'scout', u'hall']
[u'boral', u'expand', u'colorado']
[u'brain', u'surgeri', u'cancel', u'scare']
[u'brazilian', u'thiev', u'bar']
[u'british', u'ambassador', u'visit', u'korean', u'blast', u'site']
[u'brown', u'want', u'forestri', u'packag', u'major', u'parti']
[u'brumbi', u'claim', u'water', u'plan', u'raid', u'state', u'coffer']
[u'bundaberg', u'sugar', u'move', u'home']
[u'busi', u'protest', u'supermarket', u'domin']
[u'enterpris', u'talk']
[u'campaign', u'build', u'reopen', u'theatr']
[u'candid', u'continu', u'campaign', u'despit', u'blast']
[u'bomb', u'explod', u'outsid', u'baghdad', u'polic', u'centr']
[u'bomb', u'kill', u'dozen', u'baghdad']
[u'carpent', u'head', u'teacher', u'industri', u'action']
[u'carr', u'reappoint', u'outstand', u'governor']
[u'car', u'crash', u'home', u'fenc']
[u'chamber', u'back', u'push', u'skill', u'worker']
[u'cheap', u'flight', u'boost', u'border', u'tourism']
[u'children', u'hospit', u'clear', u'scare']
[u'child', u'abus', u'case', u'rise']
[u'chines', u'accid', u'kill']
[u'cinema', u'reopen', u'plus', u'youth']
[u'coastal', u'patrol', u'asset', u'strip']
[u'compani', u'knock', u'wind', u'contract', u'claim']
[u'compens', u'packag', u'approv', u'gaza', u'settler']
[u'coron', u'reject', u'delay', u'bushfir', u'inquest']
[u'council', u'hear', u'plan', u'playground', u'smoke']
[u'council', u'wind', u'farm', u'submiss']
[u'court', u'hear', u'cri', u'help', u'attack']
[u'crowd', u'fear', u'spur', u'townsvill']
[u'cuba', u'brace', u'hurrican', u'ivan']
[u'cycl', u'aust', u'lament', u'modra', u'dump']
[u'daintre', u'hous', u'scrap']
[u'darfur', u'death', u'rat', u'time', u'higher', u'normal']
[u'injur', u'hamil']
[u'debat', u'erupt', u'rail', u'line', u'cost']
[u'deep', u'outfal', u'get', u'fine', u'tune']
[u'detect', u'ask', u'feder', u'polic', u'investig']
[u'develop', u'race', u'beat', u'plan', u'control']
[u'drink', u'spike', u'rise', u'goondiwindi']
[u'drought', u'bring', u'counsel', u'cash']
[u'economi', u'continu', u'acceler']
[u'elect', u'offer', u'wastewat', u'pipelin', u'hope']
[u'emerg', u'specialist', u'patient', u'risk']
[u'employ', u'survey', u'signal', u'job', u'growth']
[u'back', u'west', u'seismic', u'survey']
[u'fisher', u'seek', u'super', u'trawler', u'impact', u'studi']
[u'fit', u'doubt', u'haunt', u'reynoldson', u'anasta']
[u'footi', u'umpir', u'return', u'assault']
[u'forestri', u'industri', u'say', u'feder', u'compens']
[u'fund', u'offer', u'communiti', u'crime', u'fight']
[u'gassi', u'trial', u'reach', u'conclus']
[u'gold', u'coast', u'look', u'boost', u'indigen', u'health', u'worker']
[u'govt', u'commit', u'dragway', u'despit', u'hurdl']
[u'govt', u'deni', u'leav', u'famili', u'limbo']
[u'govt', u'urg', u'drop', u'riverland', u'health', u'plan']
[u'grazier', u'drought', u'concern']
[u'greec', u'mourn', u'patriarch', u'alexandria']
[u'green', u'field', u'hinkler', u'candid']
[u'green', u'want', u'super', u'trawler']
[u'grower', u'urg', u'grain', u'merger']
[u'gympi', u'busi', u'highlight', u'water', u'shortag']
[u'hospit', u'cop', u'despit', u'overcrowd']
[u'hostag', u'claim', u'remain', u'unconfirm']
[u'hotlin', u'allow', u'report', u'alcohol', u'breach']
[u'howard', u'water', u'plan', u'cost', u'state']
[u'hundr', u'seek', u'advic', u'scare']
[u'hurrican', u'hold', u'citrus', u'payment']
[u'hurrican', u'ivan', u'lash', u'cuba']
[u'hydro', u'tasmania', u'talk', u'research', u'partnership']
[u'indigen', u'contractor', u'enter', u'mine', u'industri']
[u'investig', u'launch', u'carpark', u'birth']
[u'investig', u'continu', u'home', u'invas']
[u'delay', u'mitsubishi', u'redund', u'packag']
[u'hear', u'long', u'strike', u'disput']
[u'irrig', u'spray', u'prais', u'water', u'announc']
[u'isra', u'arab', u'leav', u'england']
[u'isra', u'strike', u'kill', u'aqsa', u'leader']
[u'jackman', u'get', u'littl', u'help', u'final']
[u'japan', u'confirm', u'latest', u'case']
[u'jimenez', u'hold', u'ogradi', u'spain']
[u'keegan', u'face', u'citi']
[u'keelti', u'support', u'intellig', u'releas']
[u'kieli', u'save', u'leav', u'saint', u'curs']
[u'king', u'headmast', u'criticis', u'labor', u'school', u'polici']
[u'labor', u'school', u'polici', u'confus', u'lib']
[u'labor', u'arrest', u'declin', u'film', u'industri']
[u'latham', u'admit', u'famili', u'wors', u'labor']
[u'latham', u'redirect', u'privat', u'school', u'fund']
[u'lee', u'welcom', u'water', u'polici']
[u'liber', u'pledg', u'rebuild', u'school']
[u'lobbi', u'group', u'push', u'rural', u'health', u'focus']
[u'lobster', u'industri', u'undergo', u'train']
[u'long', u'wait', u'school', u'review']
[u'look', u'india', u'warn', u'inzamam']
[u'maleni', u'develop', u'clear', u'water', u'breach']
[u'escap', u'injuri', u'lion', u'enclosur']
[u'execut', u'japan', u'school', u'massacr']
[u'court', u'polic', u'slash']
[u'marlin', u'join', u'gun', u'season', u'blitz']
[u'marlin', u'challeng', u'pirat', u'season', u'clash']
[u'maverick', u'focus', u'domest', u'player']
[u'mayor', u'highlight', u'high', u'camel', u'demand']
[u'maywald', u'deni', u'split', u'claim']
[u'media', u'bodi', u'decri', u'ukrain', u'murder', u'inquiri']
[u'melbourn', u'land', u'film', u'deal']
[u'merger', u'spark', u'subdivis', u'headach']
[u'mickelson', u'rat', u'europ', u'ryder', u'favourit']
[u'miner', u'move', u'closer', u'zircon', u'plan']
[u'life', u'leav', u'landfil']
[u'rain', u'need', u'break', u'drought', u'impact']
[u'murder', u'suspect', u'claim', u'self', u'defenc']
[u'netanyahu', u'call', u'gaza', u'pullout', u'vote']
[u'bird', u'case', u'malaysia']
[u'newcastl', u'jockey', u'suspend', u'ban', u'substanc']
[u'look', u'tourism', u'bureau']
[u'newman', u'drive', u'charg', u'lose']
[u'technolog', u'aid', u'polic', u'work']
[u'telescop', u'bring', u'southern', u'closer']
[u'zealand', u'defend', u'player', u'cash']
[u'nolan', u'paint', u'stay', u'lanyon']
[u'milk', u'factori', u'closur', u'plan']
[u'norther', u'win', u'grind']
[u'govt', u'urg', u'rethink', u'cut']
[u'assault', u'rise']
[u'nuclear', u'program', u'suspens', u'temporari', u'say', u'iran']
[u'nurs', u'home', u'toll', u'reach']
[u'paedophilia', u'task', u'forc', u'receiv', u'fund', u'boost']
[u'paramed', u'plan', u'phase', u'campaign']
[u'patient', u'access', u'video', u'conferenc']
[u'perilya', u'search', u'miner', u'near', u'border']
[u'pilot', u'stabl', u'crash']
[u'plan', u'afoot', u'shop', u'centr', u'upgrad']
[u'polic', u'command', u'receiv', u'budget']
[u'polic', u'review', u'alcohol', u'breach']
[u'pont', u'back', u'quick', u'blast', u'australia']
[u'pont', u'fire', u'doubl', u'jibe', u'debacl']
[u'port', u'wari', u'saint', u'forward']
[u'premier', u'announc', u'wynyard', u'tourism', u'boost']
[u'pressur', u'self', u'impos', u'say', u'thoma']
[u'pressur', u'match', u'pipelin', u'fund']
[u'princ', u'highway', u'speed']
[u'public', u'comment', u'seek', u'alcohol', u'rule']
[u'public', u'input', u'hospit', u'site', u'plan']
[u'public', u'servant', u'super', u'protest', u'target', u'margin']
[u'public', u'urg', u'avoid', u'bite']
[u'public', u'urg', u'crim']
[u'public', u'warn', u'chain', u'letter', u'scheme']
[u'push', u'oberon', u'fluorid']
[u'qanta', u'pilot', u'plead', u'guilti', u'airport']
[u'reid', u'injur', u'philippoussi']
[u'renov', u'builder', u'busi']
[u'research', u'claim', u'alcohol', u'increas', u'risk', u'breast']
[u'resid', u'mental', u'health', u'concern']
[u'resourc', u'ord', u'high']
[u'reward', u'offer', u'captur', u'embassi', u'bomber']
[u'road', u'reopen', u'chemic', u'tanker', u'blaze']
[u'rooster', u'dog', u'judiciari', u'damag', u'control']
[u'saddam', u'weapon', u'unlik', u'powel']
[u'safeti', u'devic', u'trial', u'extend']
[u'scientist', u'glimps', u'exoplanet']
[u'search', u'continu', u'miss', u'kempsey', u'teen']
[u'second', u'melbourn', u'case', u'confirm']
[u'shire', u'wont', u'boost', u'absente', u'landown', u'rat']
[u'soccer', u'academi', u'head', u'sunraysia']
[u'solomon', u'feel', u'socceroo']
[u'souness', u'offer', u'guidanc', u'newcastl', u'brat']
[u'state', u'question', u'water', u'plan']
[u'strategi', u'address', u'youth', u'disabl', u'need']
[u'studi', u'back', u'fluorid', u'academ']
[u'suicid', u'bomber', u'wound', u'soldier', u'west', u'bank']
[u'survey', u'show', u'farmer', u'upbeat', u'futur']
[u'talkback', u'critic', u'connect', u'liber']
[u'talk', u'break', u'disput']
[u'famili', u'polici', u'fail', u'boost', u'labor']
[u'teacher', u'parent', u'fail', u'liber', u'school', u'polici']
[u'teenag', u'jail', u'death']
[u'telstra', u'move', u'healthcar']
[u'terrorist', u'victim', u'rememb']
[u'wound', u'west', u'bank', u'suicid', u'bomb']
[u'earli', u'licenc', u'nuclear', u'reactor', u'opposit']
[u'truck', u'crash', u'close', u'king', u'highway']
[u'turkey', u'threaten', u'withdraw', u'iraq']
[u'unit', u'rock', u'nevill', u'injuri']
[u'assault', u'weapon', u'expir']
[u'monitor', u'north', u'korea', u'powel']
[u'current', u'account', u'deficit', u'hit', u'record', u'billion']
[u'fighter', u'crash']
[u'investor', u'focus', u'tech', u'stock']
[u'vail', u'take', u'campaign', u'richmond']
[u'volunt', u'queensland', u'storm', u'readi']
[u'word', u'break', u'telstra', u'sale']
[u'water', u'ban', u'remain', u'despit', u'rain']
[u'water', u'plan', u'govt']
[u'winemak', u'produc', u'million', u'face', u'evict']
[u'work', u'begin', u'soon', u'rural', u'exhibit', u'centr']
[u'yowi', u'chocol', u'maker', u'head', u'head']
[u'yowi', u'say', u'name', u'disput', u'ridicul']
[u'zarqawi', u'group', u'claim', u'attack', u'iraqi', u'polic']
[u'fear', u'dead', u'vietnam', u'landslid']
[u'switch', u'channel', u'region']
[u'aeropelican', u'restart', u'weekend', u'sydney', u'flight']
[u'fault', u'domest', u'violenc', u'rise']
[u'exercis', u'continu', u'crash']
[u'alic', u'council', u'offer', u'reward', u'vandal', u'fight']
[u'alleg', u'parti', u'gunman', u'refus', u'bail']
[u'know', u'australian', u'account', u'iraq']
[u'promis', u'youth', u'centr', u'fund']
[u'senat', u'accus', u'desper', u'polit']
[u'top', u'govt', u'pledg', u'indigen', u'art', u'centr']
[u'amnesti', u'campaign', u'juvenil', u'execut']
[u'anderson', u'announc', u'aviat', u'shake']
[u'anderson', u'unveil', u'govt', u'transport', u'plan']
[u'anwar', u'appeal', u'fail']
[u'apolog', u'fail', u'satisfi', u'anus', u'critic']
[u'arab', u'leagu', u'urg', u'member', u'restor', u'iraq', u'tie']
[u'arazi', u'spearhead', u'morocco', u'australia']
[u'ausbulk', u'merger', u'retain', u'bordertown', u'offic']
[u'australia', u'magnet', u'foreign', u'student', u'oecd']
[u'australia', u'share', u'market', u'continu', u'record']
[u'bangladesh', u'recov', u'record', u'break', u'rain']
[u'bartlett', u'take', u'elect', u'leap', u'faith']
[u'bendigo', u'soccer', u'school', u'kid']
[u'blair', u'make', u'urgent', u'appeal', u'tackl', u'global', u'warm']
[u'bomb', u'drive', u'brit', u'distract']
[u'brigg', u'hand', u'shoot', u'titl', u'belt']
[u'break', u'hill', u'protest', u'health', u'merger']
[u'budget', u'cut', u'threaten', u'adult', u'educ', u'colleg']
[u'bunburi', u'high', u'school', u'adopt', u'memori']
[u'busi', u'fear', u'rule']
[u'cahil', u'serv', u'match']
[u'canada', u'cool', u'world']
[u'chanc', u'upbeat', u'wheatbelt', u'drought']
[u'chemic', u'factori', u'blaze', u'leav']
[u'china', u'deal', u'earn', u'hamersley', u'award', u'nomin']
[u'civic', u'park', u'fountain', u'facelift']
[u'coalit', u'pledg', u'coolac', u'bypass', u'fund']
[u'confus', u'surround', u'polic', u'offic', u'retreat']
[u'constitut', u'chang', u'plan', u'patronis', u'aborigin']
[u'contract', u'tie', u'imparja', u'despit', u'clash']
[u'coron', u'hand', u'death', u'find']
[u'coron', u'withhold', u'drown', u'find']
[u'council', u'hate', u'mail', u'worri', u'chief']
[u'council', u'consid', u'smaller', u'moone', u'develop', u'plan']
[u'counsel', u'need', u'tortur', u'rspca']
[u'court', u'reserv', u'decis', u'landmark', u'peopl']
[u'crash', u'destroy', u'pork', u'lade', u'semi']
[u'cubbi', u'purchas', u'boost', u'river', u'flow', u'green']
[u'cultur', u'centr', u'rais', u'indigen', u'communiti']
[u'decapit', u'bodi', u'north', u'baghdad']
[u'democrat', u'want', u'radio', u'licens', u'fund', u'communiti']
[u'dhaka', u'unpreced', u'flood']
[u'reject', u'cooloola', u'water', u'claim']
[u'doctor', u'fear', u'hospit', u'chang', u'number']
[u'doctor', u'assist', u'take', u'citizenship']
[u'drought', u'draw', u'rural', u'communiti']
[u'drought', u'spell', u'hard', u'time', u'hunter']
[u'east', u'timor', u'popul', u'rise']
[u'eccentr', u'argentina', u'coach', u'bielsa', u'resign']
[u'educ', u'dept', u'commit', u'account', u'chang']
[u'emerg', u'fund', u'seek', u'head', u'water', u'crisi']
[u'deputi', u'urg', u'australia', u'respect', u'timor']
[u'famili', u'candid', u'claim', u'underdog', u'status']
[u'farmer', u'market', u'pocket', u'social', u'live']
[u'fear', u'water', u'fund', u'plan', u'upset', u'council', u'budget']
[u'final', u'secur', u'step', u'jakarta', u'blast']
[u'finch', u'price', u'clear', u'play']
[u'finch', u'price', u'free', u'play']
[u'olympian', u'face', u'jail', u'share', u'fraud']
[u'foster', u'care', u'display', u'spark', u'communiti']
[u'geelong', u'grammar', u'lose', u'fund', u'plan']
[u'gippsland', u'lobbi', u'join', u'jam', u'hardi', u'protest']
[u'govt', u'attack', u'detent', u'centr', u'secur', u'breach']
[u'govt', u'clear', u'suprem', u'court', u'secur', u'upgrad']
[u'govt', u'reject', u'hick', u'trial', u'critic']
[u'govt', u'seek', u'certainti', u'commit', u'oakaje']
[u'govt', u'shrug', u'citylink', u'job', u'boy', u'claim']
[u'govt', u'spend', u'storm', u'water', u'conserv']
[u'great', u'entertain', u'follow', u'botham', u'footstep']
[u'green', u'announc', u'forestri', u'polici']
[u'griffith', u'council', u'oppos', u'health', u'merger', u'push']
[u'grosjean', u'miss', u'davi', u'semi', u'final']
[u'guantanamo', u'process', u'good', u'labor', u'say']
[u'gunn', u'issu', u'pulp', u'threat']
[u'hanson', u'senat', u'seat']
[u'hart', u'back', u'lynch', u'torment', u'cat']
[u'hick', u'unlik', u'fair', u'trial']
[u'high', u'tech', u'chicken', u'manur', u'hold', u'water', u'save', u'hop']
[u'hoon', u'law', u'endang', u'countri', u'resid']
[u'hospit', u'park', u'birth', u'investig']
[u'howard', u'accus', u'labor', u'petti', u'politick', u'iraq']
[u'improv', u'surplus', u'spend', u'treasuri']
[u'indigen', u'group', u'applaud', u'labor', u'polici']
[u'industri', u'predict', u'worst', u'year', u'dairi', u'product']
[u'inquest', u'examin', u'respons', u'firefight']
[u'insur', u'woe', u'toll', u'race', u'club']
[u'investig', u'underway', u'crash']
[u'investor', u'boost', u'bundaberg', u'hous', u'price']
[u'isra', u'troop', u'kill', u'milit', u'west', u'bank']
[u'jam', u'hardi', u'boss', u'report', u'sharehold']
[u'jam', u'hardi', u'commit', u'cover', u'asbesto', u'fund']
[u'japan', u'asama', u'erupt']
[u'kangaroo', u'face', u'fit', u'test']
[u'king', u'highway', u'reopen', u'tanker', u'crash']
[u'knife', u'attack', u'rise', u'melbourn']
[u'kojonup', u'rate', u'rise', u'like', u'upset', u'resid']
[u'kookaburra', u'world', u'rank']
[u'labor', u'announc', u'polici']
[u'labor', u'preselect', u'stephen', u'kalgoorli']
[u'labor', u'promis', u'extra', u'bed', u'public', u'hospit']
[u'labor', u'senat', u'accus', u'mislead', u'voter']
[u'labor', u'announc', u'kalgoorli', u'candid']
[u'land', u'offic', u'ask', u'farmer', u'ignor', u'rent', u'notic']
[u'larsson', u'score', u'celtic', u'homecom']
[u'latham', u'defend', u'labor', u'school', u'polici']
[u'latham', u'fume', u'iraq', u'hostag', u'team', u'snub']
[u'latham', u'reject', u'learner']
[u'lend', u'leas', u'confid', u'grind', u'zero', u'class', u'action']
[u'lennon', u'attack', u'howard', u'growth', u'forest', u'plan']
[u'liber', u'pursu', u'practic', u'reconcili']
[u'lion', u'nathan', u'sell', u'chines', u'oper']
[u'local', u'govt', u'award', u'recognis', u'uralla', u'project']
[u'local', u'welcom', u'footi', u'influx']
[u'locust', u'task', u'forc', u'focus', u'nation', u'park']
[u'locust', u'threat', u'enter', u'critic', u'phase']
[u'temperatur', u'normal', u'spring', u'weather']
[u'luca', u'launch', u'wheelchair', u'taxi', u'servic']
[u'fin', u'name', u'breach']
[u'maleni', u'water', u'rule', u'scrutini']
[u'arrest', u'alterc', u'qanta', u'flight']
[u'marcher', u'demand', u'jam', u'hardi', u'fund']
[u'mcgrane', u'die', u'cancer']
[u'microchip', u'lead', u'illeg', u'fish', u'fine']
[u'minist', u'criticis', u'workcov', u'contract']
[u'minist', u'support', u'daintre', u'hous']
[u'mini', u'tornado', u'caus', u'hobart', u'evacu']
[u'miss', u'soldier', u'return', u'duti']
[u'mourinho', u'ranieri', u'win', u'start', u'club']
[u'back', u'small', u'scale', u'develop', u'near', u'daintre']
[u'seek', u'daylight', u'save', u'referendum']
[u'push', u'noosa', u'plan', u'consult']
[u'mundin', u'say', u'better', u'titl', u'bout', u'loss']
[u'nation', u'seek', u'rainwat', u'tank', u'rebat', u'extens']
[u'nato', u'urg', u'iraq']
[u'nat', u'blast', u'green', u'propos', u'cubbi', u'station']
[u'orlean', u'sight', u'hurrican', u'ivan']
[u'news', u'corp', u'confirm', u'plan']
[u'nickel', u'consider']
[u'sight', u'industri', u'disput']
[u'link', u'nurs', u'home', u'death']
[u'inform', u'gertsch', u'murder']
[u'olymp', u'appeal', u'german', u'equestrian']
[u'govt', u'creat', u'northern', u'council']
[u'coma']
[u'odd', u'shorten', u'robinson', u'england']
[u'ogradi', u'hold', u'point', u'lead', u'spain']
[u'olympian', u'welcom', u'home', u'sydney']
[u'olympian', u'special', u'mullumbimbi', u'welcom']
[u'kill', u'bali', u'earthquak']
[u'nation', u'prefer', u'nation', u'riverina']
[u'seven', u'million', u'tune', u'communiti', u'radio']
[u'permit', u'halt', u'giant', u'trawler']
[u'plane', u'door', u'mishap']
[u'plant', u'emerg', u'burk', u'prefer', u'power', u'solut']
[u'polic', u'hope', u'crime', u'wont', u'mean', u'resourc']
[u'polic', u'interview', u'fatal', u'crash', u'wit']
[u'polic', u'investig', u'offic', u'work', u'iraq']
[u'poll', u'predict', u'landslid', u'defeat', u'megawati']
[u'receiv', u'rat', u'moodi']
[u'reinstat', u'daintre', u'develop']
[u'radcliff', u'vow', u'learn', u'athen', u'heartbreak']
[u'rain', u'boost', u'coliban', u'water', u'alloc']
[u'ralph', u'develop', u'survey', u'releas']
[u'ravensworth', u'shiraz', u'bag', u'wine', u'award']
[u'record', u'trade', u'continu', u'news', u'corp']
[u'renault', u'releas', u'trulli']
[u'rice', u'grower', u'group', u'back', u'coalit', u'water', u'plan']
[u'roger', u'herft', u'elect', u'archbishop', u'perth']
[u'limit', u'anzac', u'servic', u'crowd']
[u'rumsfeld', u'claim', u'media', u'receiv', u'terror', u'off']
[u'run', u'enlighten']
[u'ryder', u'offici', u'warn', u'rowdi', u'fan']
[u'school', u'teacher', u'charg', u'child', u'pornographi']
[u'search', u'continu', u'miss', u'kempsey', u'woman']
[u'search', u'miss', u'woman', u'suspend']
[u'search', u'continu', u'miss', u'teenag']
[u'spong', u'base', u'drug', u'fight', u'cancer']
[u'second', u'tier', u'sydney']
[u'sewag', u'spill', u'pose', u'health', u'risk', u'council']
[u'shepparton', u'ambul', u'concern', u'rais', u'parliament']
[u'shire', u'back', u'victoria', u'hotel', u'reopen']
[u'showground', u'committe', u'canva', u'revamp', u'option']
[u'societi', u'anticip', u'exhibit', u'centr']
[u'singapor', u'extend', u'detent', u'terror', u'suspect']
[u'sinn', u'fein', u'find', u'second', u'belfast']
[u'skill', u'shortag', u'hurt', u'half', u'australia']
[u'smart', u'win', u'year', u'licenc']
[u'smelter', u'blame', u'children', u'blood', u'lead', u'level']
[u'star', u'war', u'flight', u'test', u'delay']
[u'spanish', u'polic', u'arrest', u'terror', u'oper']
[u'spanish', u'polic', u'cannonbal', u'clampdown']
[u'stab', u'attack', u'overnight', u'melbourn']
[u'stanhop', u'unveil', u'justic', u'reform', u'plan']
[u'status', u'unknown', u'australian', u'hostag', u'deadlin']
[u'steadi', u'growth', u'predict', u'australian', u'economi']
[u'stone', u'say', u'coalit', u'dairi']
[u'storm', u'pois', u'doubl', u'dog', u'miseri']
[u'student', u'return', u'school', u'beslan']
[u'sugar', u'project', u'boost', u'lucern', u'industri']
[u'task', u'forc', u'tackl', u'leagu', u'woe']
[u'team', u'unchang', u'townsvill', u'blockbust']
[u'teenag', u'charg', u'highway', u'robberi']
[u'teenag', u'drown', u'adelaid']
[u'telstra', u'sale', u'fund', u'govt', u'forest', u'plan', u'latham']
[u'tendulkar', u'cours', u'face', u'australia']
[u'kill', u'ramadi', u'clash']
[u'thiev', u'hemp', u'industri']
[u'thoma', u'urg', u'harvey', u'play']
[u'injur', u'brighton', u'shoot']
[u'treasur', u'laud', u'home', u'grant']
[u'trio', u'court', u'drug', u'raid']
[u'unemploy', u'rat', u'illawarra']
[u'union', u'reject', u'carr', u'claim']
[u'unit', u'skipper', u'kean', u'golf', u'cours', u'assault', u'probe']
[u'upgrad', u'stop', u'sewerag', u'overflow']
[u'basebal', u'charg', u'chair', u'throw', u'incid']
[u'militari', u'apologis', u'journalist', u'death']
[u'present', u'resolut', u'sudan']
[u'refocus', u'iraq', u'secur']
[u'reveal', u'revis', u'sudan', u'resolut']
[u'vigilant', u'jail', u'afghanistan']
[u'act', u'chain', u'letter']
[u'gangland', u'inform', u'avoid', u'jail', u'sentenc']
[u'govt', u'announc', u'stormwat', u'fund']
[u'volunt', u'driver', u'seek', u'raymond']
[u'volunt', u'bring', u'week', u'ski', u'mount']
[u'weak', u'consum', u'data', u'worri', u'market']
[u'west', u'bank', u'raid', u'leav', u'dead']
[u'workcov', u'rebuk', u'breach', u'contract']
[u'worker', u'ralli', u'jam', u'hardi', u'commit', u'asbesto']
[u'worker', u'stand', u'trial', u'real', u'estat', u'agenc', u'theft']
[u'workshop', u'encourag', u'job', u'growth']
[u'wynyard', u'wonder', u'project', u'attract', u'tourist']
[u'yeppoon', u'pipelin', u'eas', u'water', u'problem']
[u'roadwork', u'contract', u'announc']
[u'job', u'kodak', u'close', u'melbourn', u'plant']
[u'abbott', u'tout', u'medicar', u'safeti', u'figur']
[u'academ', u'urg', u'deeper', u'engag', u'indonesia']
[u'govt', u'announc', u'incent', u'work', u'mother']
[u'action', u'urg', u'save', u'giant', u'freshwat', u'lobster']
[u'liber', u'target', u'health', u'ahead', u'poll']
[u'afridi', u'star', u'pakistan', u'rout', u'kenya']
[u'school', u'polici', u'draw', u'mix', u'respons']
[u'slam', u'major', u'parti', u'indigen', u'health']
[u'anderson', u'label', u'green', u'leader', u'brown']
[u'ararat', u'consolid', u'china', u'relationship']
[u'attorney', u'general', u'appeal', u'suspend', u'sentenc']
[u'aussi', u'lovett', u'down', u'iron', u'california']
[u'aussi', u'sleuth', u'receiv', u'award', u'york']
[u'aussi', u'rare', u'black', u'cap']
[u'australia', u'bowl']
[u'australian', u'sailor', u'rescu', u'english', u'coast']
[u'australia', u'push', u'resolut', u'iran']
[u'author', u'suspend', u'miss', u'teen', u'search']
[u'bank', u'hold', u'trigger', u'polic', u'manhunt']
[u'interview', u'payment', u'challeng']
[u'basslink', u'offer', u'green', u'power', u'boost', u'hydro', u'boss']
[u'crowd', u'attend', u'paedophilia', u'educ', u'forum']
[u'crowd', u'expect', u'silver', u'citi']
[u'blood', u'donat', u'need', u'chicken']
[u'board', u'give', u'thumb', u'riverbank', u'plan']
[u'bouncer', u'undergo', u'drug', u'test']
[u'brogden', u'critic', u'lose', u'fin']
[u'budget', u'cut', u'victorian', u'public', u'school']
[u'bunge', u'busi', u'back', u'insur', u'plan']
[u'bushwalk', u'miss', u'cradl', u'mountain']
[u'calder', u'fund', u'miss', u'road', u'announc']
[u'cost', u'shift', u'elect', u'issu']
[u'wider', u'chemic', u'compo']
[u'canberra', u'stand', u'trial', u'death', u'threat']
[u'carlaw', u'wari', u'form', u'cowboy']
[u'cathol', u'school', u'attack', u'govt', u'fund']
[u'initi', u'aim', u'boost', u'tradespeopl', u'number']
[u'chang', u'legal', u'possibl']
[u'chemic', u'shortag', u'hurt', u'grain', u'crop', u'rust', u'woe']
[u'church', u'vote', u'femal', u'priest']
[u'clijster', u'marri', u'hewitt', u'februari']
[u'congress', u'criticis', u'bush', u'slow', u'iraq', u'progress']
[u'council', u'aim', u'avoid', u'rate', u'rise', u'feder']
[u'council', u'consid', u'bond', u'stop', u'hous', u'eyesor']
[u'council', u'urg', u'jam', u'hardi']
[u'council', u'unsur', u'split', u'affect', u'librari', u'cost']
[u'court', u'order', u'hardi', u'wine', u'grape', u'grower']
[u'deepwat', u'fin', u'neighbour', u'assault']
[u'defenc', u'forc', u'look', u'boost', u'shore']
[u'dental', u'scheme', u'unlik', u'albani', u'wait', u'list']
[u'dillon', u'guid', u'windi', u'victori']
[u'docker', u'dock', u'unlicens', u'drive']
[u'downer', u'stand', u'dfat', u'hostag', u'decis']
[u'downer', u'unawar', u'australian', u'cleric', u'kidnap']
[u'drama', u'rome', u'overshadow', u'real', u'loss']
[u'drone', u'guard', u'australian', u'reserv']
[u'drought', u'spark', u'break']
[u'drought', u'stricken', u'farmer', u'help', u'hand']
[u'dubbo', u'mourn', u'death']
[u'aim', u'entic', u'health', u'staff']
[u'effort', u'focus', u'help', u'fletcher', u'jone', u'worker']
[u'everton', u'hope', u'common', u'sens', u'prevail']
[u'farmer', u'research', u'station', u'fight', u'minist']
[u'north', u'host', u'defenc', u'exercis']
[u'fear', u'super', u'trawler', u'resurfac']
[u'feder', u'secur', u'year', u'spot']
[u'ravag', u'scout', u'hall', u'like', u'demolish']
[u'flood', u'situat', u'worsen', u'bangladesh']
[u'follow', u'nose', u'control']
[u'labor', u'senat', u'hospitalis', u'darwin']
[u'frost', u'affect', u'farmer', u'urg', u'advic']
[u'fund', u'address', u'youth', u'crime']
[u'german', u'broadcast', u'go', u'klingon', u'say', u'qayb']
[u'girlish', u'crush', u'lead', u'trial', u'accus', u'stalker']
[u'gold', u'invest', u'hit']
[u'govt', u'accus', u'devalu', u'doctor']
[u'govt', u'pledg', u'rang', u'cross', u'fund']
[u'govt', u'promis', u'fund', u'wild', u'scheme']
[u'govt', u'appeal', u'atsic', u'chairman', u'reinstat']
[u'grey', u'growth', u'apprentic', u'rank']
[u'haddin', u'skipper', u'blue', u'katich', u'absenc']
[u'hanson', u'battl', u'harden', u'ahead', u'senat', u'race']
[u'hanson', u'lack', u'relev', u'polici', u'say']
[u'hanson', u'sympathi', u'vote']
[u'hanson', u'senat', u'task', u'democrat']
[u'hart', u'admir', u'geelong', u'team', u'spirit']
[u'hat', u'artist', u'award', u'win', u'helmet']
[u'hill', u'want', u'counter', u'terror', u'excercis', u'extend']
[u'histor', u'site', u'earmark', u'townhous', u'project']
[u'hodg', u'accept', u'middl', u'east']
[u'hodg', u'turn', u'counti', u'deal']
[u'homemad', u'road', u'spike', u'wont', u'deter', u'polic']
[u'hope', u'miner', u'secur', u'boost']
[u'hop', u'health', u'forum', u'annual', u'event']
[u'hospit', u'mural', u'recognis', u'reconcili']
[u'howard', u'undecid', u'growth', u'log']
[u'hugh', u'take', u'charg', u'blackburn']
[u'hundr', u'protest', u'health', u'chang']
[u'hurrican', u'ivan', u'lash', u'coast']
[u'indigen', u'group', u'question', u'constitut', u'plan']
[u'indonesia', u'issu', u'embassi', u'bomb', u'suspect', u'list']
[u'indonesian', u'editor', u'jail', u'libel', u'case']
[u'injuri', u'central', u'accid']
[u'investor', u'seek', u'aquacultur', u'plan']
[u'iraq', u'invas', u'entir', u'valid', u'howard', u'say']
[u'iraqi', u'allawi', u'visit', u'britain', u'week']
[u'iraq', u'illeg', u'say', u'annan']
[u'italian', u'deleg', u'tour', u'gambier']
[u'japanes', u'gyudon', u'restaur', u'turn', u'aussi', u'beef']
[u'domin', u'aria', u'nomin']
[u'judg', u'order', u'releas', u'guantanamo', u'record']
[u'karzai', u'cancel', u'campaign', u'stop', u'rocket', u'attack']
[u'kewel', u'delight', u'liverpool', u'spanish', u'influenc']
[u'labor', u'commit', u'upgrad', u'railway', u'secur']
[u'labor', u'earmark', u'darwin', u'port', u'secur', u'boost']
[u'labor', u'place', u'hanson', u'vote', u'card']
[u'labor', u'plan', u'multi', u'million', u'anti', u'smoke', u'campaign']
[u'labor', u'pledg', u'help', u'work', u'mum']
[u'labor', u'rail', u'secur', u'plan', u'advis', u'anderson', u'say']
[u'labor', u'reveal', u'plan', u'save', u'murray']
[u'labor', u'murray', u'plan', u'vagu', u'howard', u'say']
[u'labor', u'slash', u'govt', u'school', u'fund', u'nelson', u'say']
[u'latham', u'launch', u'water', u'polici', u'sunraysia']
[u'latham', u'person', u'debat', u'rag']
[u'pay', u'tribut', u'record', u'break', u'ruud']
[u'liber', u'campaign', u'launch', u'target', u'health', u'educ']
[u'librari', u'forgo', u'late', u'fee']
[u'local', u'govt', u'manag', u'converg', u'bateman']
[u'local', u'govt', u'upset', u'minist', u'daintre']
[u'lynch', u'keat', u'tackl', u'cat']
[u'mackay', u'offer', u'fund', u'incent', u'earli', u'flight']
[u'charg', u'june', u'murder']
[u'jail', u'year', u'marriott', u'bomb']
[u'sentenc', u'life', u'irish', u'finucan', u'murder']
[u'court', u'polic', u'chase']
[u'manufactur', u'activ', u'solid', u'survey']
[u'unhappi', u'polic', u'treatment']
[u'mass', u'reformist', u'cathol', u'priest']
[u'mccardl', u'highlight', u'hospit', u'pressur']
[u'host', u'grand', u'final']
[u'meet', u'debat', u'nation', u'competit', u'polici']
[u'melanoma', u'plagu', u'young', u'western', u'australian']
[u'mickelson', u'prepar', u'ryder']
[u'minist', u'play', u'super', u'trawler', u'fear']
[u'minist', u'reject', u'maleni', u'court', u'challeng', u'attack']
[u'miss', u'tourist', u'locat', u'kimberley']
[u'mitsubishi', u'close', u'plant', u'week', u'shift', u'stock']
[u'moodi', u'upgrad', u'credit', u'rat']
[u'mummi', u'maker', u'anim', u'lover', u'studi', u'find']
[u'murdoch', u'get', u'bonus', u'record', u'break', u'year']
[u'musharraf', u'armi', u'post']
[u'nation', u'deni', u'prefer', u'deal', u'hanson']
[u'newcastl', u'offici', u'welcom', u'home', u'olympian']
[u'unit', u'posit', u'step', u'inquest', u'tell']
[u'helmet', u'design', u'consid', u'safeti', u'debat']
[u'youth', u'arrest', u'wagga', u'stab']
[u'resolut', u'rescu', u'chopper', u'ground']
[u'opec', u'pledg', u'fail', u'satisfi', u'market']
[u'opera', u'hous', u'renov', u'unveil']
[u'opposit', u'ask', u'detail', u'kariong', u'breach']
[u'opposit', u'question', u'council', u'merger', u'consult']
[u'pair', u'surrend', u'suicid', u'bomb', u'plan', u'isra']
[u'paltri', u'fund', u'offer', u'delay', u'highway', u'say']
[u'paramed', u'work', u'woe', u'communiti']
[u'parti', u'ask', u'bolster', u'board', u'school', u'allow']
[u'parti', u'counter', u'hanson', u'return']
[u'parti', u'urg', u'honour', u'log', u'agreement']
[u'pesticid', u'fish', u'kill']
[u'petrol', u'retail', u'squeez', u'candid']
[u'head', u'kalgoorli']
[u'polic', u'arrest', u'pair', u'hunt', u'embassi', u'bomber']
[u'polic', u'hope', u'identifi', u'lancelin', u'bodi']
[u'polic', u'hunt', u'chemist', u'knife', u'bandit']
[u'polic', u'hunt', u'gunman', u'brighton', u'tripl', u'shoot']
[u'polic', u'question', u'brighton', u'tripl', u'shoot']
[u'polic', u'warn', u'driver', u'care']
[u'power', u'prim', u'preliminari', u'final']
[u'protest', u'storm', u'british', u'parliament']
[u'protest', u'strip', u'anti', u'demonstr']
[u'public', u'seek', u'water', u'access']
[u'public', u'warn', u'croc', u'sight']
[u'punk', u'idol', u'die', u'prostat', u'cancer']
[u'back', u'highway', u'fund']
[u'race', u'club', u'face', u'uncertain', u'futur']
[u'rainfal', u'delay', u'murray', u'alloc', u'decis']
[u'rainfal', u'forecast', u'suggest', u'futur', u'perth']
[u'rain', u'like', u'boost', u'blue', u'green', u'alga']
[u'rann', u'welcom', u'opposit', u'murray', u'plan']
[u'right', u'threaten', u'tour', u'india']
[u'riverina', u'candid', u'educ', u'polici']
[u'robbin', u'slap', u'row', u'team', u'mate']
[u'russian', u'airlin', u'employe', u'bribe', u'suicid', u'bomber']
[u'saint', u'recal', u'hamil', u'black']
[u'salvat', u'armi', u'target', u'bing', u'drink']
[u'salvo', u'launch', u'anti', u'bing', u'drink', u'campaign']
[u'sauber', u'sign', u'villeneuv', u'year']
[u'sauvag', u'australian', u'flag']
[u'search', u'kimberley', u'miss', u'tourist']
[u'senior', u'offici', u'kidnap', u'gaza', u'wit']
[u'servo', u'attack', u'supermarket', u'sell']
[u'sharp', u'doubt', u'european', u'tour', u'report']
[u'shell', u'offer', u'comment', u'power', u'station', u'futur']
[u'shoulder', u'injuri', u'blow', u'real', u'zidan']
[u'somar', u'highlight', u'popul', u'problem']
[u'southern', u'coast', u'brace', u'hurrican', u'ivan']
[u'staff', u'woe', u'hamper', u'mental', u'health', u'servic']
[u'starcraft', u'track', u'success']
[u'starcraft', u'tip', u'strong', u'show']
[u'state', u'fume', u'govt', u'water', u'polici']
[u'stockmarket', u'slow', u'record', u'high']
[u'student', u'gear', u'indigen', u'game']
[u'sudan', u'reject', u'sponsor', u'darfur', u'resolut']
[u'surgeri', u'loom', u'kuerten']
[u'branch', u'warn', u'growth', u'log']
[u'honey', u'produc', u'seek', u'elect', u'sweeten']
[u'premier', u'tri', u'sway', u'feder', u'log']
[u'union', u'consid', u'interst', u'poll', u'battl']
[u'territori', u'display', u'suprem', u'court']
[u'arrest', u'miller', u'assault']
[u'arrest', u'geelong', u'raid']
[u'timber', u'firm', u'deliv', u'rail', u'ultimatum']
[u'tourism', u'industri', u'bed', u'plan']
[u'toyota', u'confirm', u'trulli']
[u'train', u'go', u'despit', u'fighter', u'crash']
[u'transport', u'group', u'wont', u'comment', u'plane', u'crash', u'claim']
[u'american', u'briton', u'kidnap', u'iraq']
[u'union', u'stand', u'log', u'ticket']
[u'marin', u'kill', u'iraq', u'sunni', u'stronghold']
[u'postal', u'control']
[u'run', u'short', u'reserv', u'troop', u'report']
[u'vanuatu', u'allow', u'offic', u'condit', u'return']
[u'volunt', u'work', u'group', u'assist', u'indigen']
[u'govt', u'challeng', u'properti']
[u'whale', u'watch', u'season', u'year']
[u'woman', u'lose', u'cliff', u'mishap']
[u'woman', u'court', u'park', u'stab']
[u'work', u'continu', u'combat', u'poor', u'grind', u'water', u'qualiti']
[u'aborigin', u'group', u'retriev', u'remain', u'sweden']
[u'liber', u'refus', u'answer', u'budget', u'question']
[u'warm', u'paralympian', u'centr', u'stage']
[u'alli', u'rebuff', u'annan', u'illeg', u'iraq']
[u'branch', u'stacker', u'latham']
[u'annan', u'say', u'darfur']
[u'asic', u'kill', u'mislead', u'loan', u'calcul']
[u'aussi', u'paralympian', u'carri', u'torch', u'athen']
[u'aussi', u'summer', u'shin', u'taiwan']
[u'aussi', u'summer', u'stumbl', u'taiwan', u'stand']
[u'australian', u'market', u'close', u'higher']
[u'australian', u'market', u'continu', u'march', u'higher']
[u'aust', u'secur', u'iran', u'resolut']
[u'return', u'goldfield']
[u'balogh', u'key', u'citi']
[u'banana', u'grower', u'demand', u'import', u'rule', u'chang']
[u'beatti', u'dismiss', u'call', u'daylight', u'save']
[u'bendigo', u'candid', u'announc', u'today']
[u'benefit', u'flow', u'wine', u'award']
[u'bennett', u'reject', u'talli', u'bench', u'rumour']
[u'turnout', u'expect', u'farewel']
[u'investig', u'massiv', u'spill']
[u'bridgetown', u'councillor', u'face', u'drug', u'charg']
[u'bring', u'paddock', u'masur']
[u'bypass', u'offer', u'chang']
[u'go', u'nation', u'stinger', u'guidelin']
[u'candid', u'confirm', u'announc']
[u'candid', u'quiz', u'refuge', u'polici']
[u'cat', u'complet', u'prepar', u'lion', u'clash']
[u'chechen', u'warlord', u'russian', u'school', u'sieg']
[u'chopper', u'case', u'spark', u'casa', u'rule', u'rethink']
[u'clijster', u'marri', u'hewitt', u'februari']
[u'coalit', u'help', u'fund', u'pakeham', u'bypass']
[u'coastal', u'patrol', u'chief', u'explain', u'account', u'chang']
[u'commonwealth', u'bank', u'chair', u'retir']
[u'compani', u'target', u'hemp', u'factori', u'dalbi']
[u'concern', u'darwin', u'port', u'secur', u'ridicul']
[u'costello', u'announc', u'windfal']
[u'council', u'boost', u'tourism', u'fund']
[u'councillor', u'flag', u'lifeguard', u'concern']
[u'councillor', u'deputi', u'mayor', u'spot']
[u'court', u'drop', u'charg', u'forestri', u'protest']
[u'court', u'hear', u'hammer', u'kill']
[u'court', u'quash', u'murder', u'convict']
[u'cressbrook', u'hop', u'help', u'bear', u'premiership']
[u'csiro', u'put', u'weight', u'sheep', u'technolog']
[u'custom', u'search', u'disrupt', u'steroid', u'smuggl', u'ring']
[u'danish', u'royal', u'famili', u'rock', u'divorc']
[u'dead', u'soil', u'kill']
[u'deleg', u'vie', u'communiti', u'award']
[u'doctor', u'unimpress', u'opposit', u'health', u'packag']
[u'donkey', u'year', u'amor', u'ass']
[u'doubt', u'rais', u'cobden', u'wind', u'farm', u'site']
[u'dozen', u'kill', u'strike']
[u'drought', u'threaten', u'south', u'coast', u'oyster']
[u'earli', u'success', u'cancer', u'vaccin']
[u'effort', u'continu', u'lure', u'citi', u'dweller', u'region']
[u'elliott', u'sign', u'glamorgan']
[u'embassi', u'seek', u'identifi', u'iraq', u'bodi']
[u'embassi', u'suspect', u'releas', u'indonesian', u'polic']
[u'farmer', u'hold', u'hope', u'research', u'station']
[u'feder', u'govt', u'offer', u'pakenham', u'bypass', u'fund']
[u'field', u'offer', u'good', u'social', u'out']
[u'fish', u'group', u'reel', u'liber', u'white', u'move']
[u'fitzgerald', u'face', u'select', u'dilemma']
[u'kill', u'wound', u'bomb']
[u'flower', u'carniv', u'look', u'record', u'visitor']
[u'fund', u'boost', u'tangetyer', u'night', u'patrol']
[u'gonzal', u'give', u'tripl', u'life', u'sentenc']
[u'govt', u'act', u'late', u'kodak', u'shut']
[u'govt', u'ask', u'resolv', u'rescu', u'chopper', u'woe']
[u'govt', u'consid', u'buy', u'rail', u'line', u'amidst', u'chip']
[u'govt', u'fudg', u'medicar', u'figur', u'labor']
[u'govt', u'ignor', u'helicopt', u'rescu', u'issu', u'opposit']
[u'govt', u'urg', u'boost', u'sport', u'facil', u'weight']
[u'govt', u'urg', u'creat', u'farm', u'develop', u'task', u'forc']
[u'govt', u'urg', u'fuel', u'excis']
[u'grampian', u'backpack', u'workshop']
[u'green', u'group', u'back', u'murray', u'effort']
[u'hanson', u'reject', u'beatti', u'racist']
[u'hanson', u'see', u'liven', u'campaign']
[u'health', u'warn', u'issu', u'china', u'smoker']
[u'heater', u'petrol', u'centr', u'inquiri']
[u'hera', u'line', u'tour', u'spain', u'chanc']
[u'hewitt', u'proceed', u'defam', u'action']
[u'high', u'passion', u'delay', u'juri', u'reform']
[u'hill', u'announc', u'navi', u'base', u'upgrad']
[u'holiday', u'keep', u'market', u'check']
[u'hope', u'fade', u'research', u'station']
[u'hopkin', u'take', u'provision', u'pole', u'japan']
[u'huge', u'explos', u'jolt', u'baghdad']
[u'hull', u'rule', u'nation']
[u'hundr', u'flock', u'women', u'gather']
[u'hundr', u'voic', u'macedon', u'rang', u'plan', u'concern']
[u'hunter', u'benefit', u'coal', u'compo']
[u'hunter', u'paralympian', u'prepar', u'game']
[u'hurrican', u'ivan', u'caus', u'havoc']
[u'hurrican', u'ivan', u'pound', u'gulf', u'coast']
[u'indian', u'board', u'desper', u'resolv', u'wrangl']
[u'internet', u'virus', u'turf', u'resum']
[u'ivan', u'slam', u'gulf', u'coast', u'alabama']
[u'jackson', u'accus', u'mission']
[u'jaguar', u'pull', u'formula']
[u'jam', u'hardi', u'target', u'netherland']
[u'judg', u'choos', u'wine']
[u'kluivert', u'give', u'souness', u'stutter', u'start']
[u'labor', u'claim', u'govt', u'neglect', u'famili', u'payment', u'debt']
[u'labor', u'pledg', u'tourism']
[u'labor', u'pursu', u'govt', u'anti', u'terror', u'campaign']
[u'labor', u'slam', u'windfal', u'figur']
[u'latham', u'deni', u'privat', u'school', u'attack']
[u'latham', u'dismiss', u'beazley', u'diplomat', u'post', u'rumour']
[u'latham', u'pledg', u'clean', u'beach']
[u'latham', u'vow', u'stand', u'grind']
[u'lennon', u'urg', u'honour', u'log', u'agreement']
[u'liber', u'slash', u'indigen', u'bureaucraci']
[u'local', u'input', u'seek', u'art', u'confer']
[u'log', u'compani', u'threaten', u'greenpeac']
[u'lotto', u'loser', u'jail', u'fail', u'murder', u'plot']
[u'maffra', u'look', u'grand', u'final', u'trick']
[u'arrest', u'embassi', u'blast']
[u'charg', u'follow', u'murder']
[u'guilti', u'gang', u'rape']
[u'manilla', u'get', u'govt', u'agronomi', u'pledg']
[u'jail', u'attack', u'girlfriend']
[u'mayor', u'seek', u'zone', u'rebat']
[u'mcgrath', u'kasprowicz', u'honest']
[u'media', u'watch', u'win', u'independ', u'journal', u'award']
[u'modra', u'clear', u'compet', u'paralymp']
[u'mother', u'plead', u'guilti', u'kill', u'babi']
[u'move', u'afoot', u'western', u'flight']
[u'gambier', u'join', u'citizenship', u'celebr']
[u'murray', u'rescu', u'plan', u'dont', u'green']
[u'newcastl', u'ignor', u'plagiar', u'lectur', u'say']
[u'confirm', u'health', u'shake', u'loss']
[u'grain', u'truth', u'nation', u'debt', u'claim', u'tuckey']
[u'north', u'korean', u'didnt', u'test', u'nuclear', u'weapon', u'diplomat']
[u'minist', u'grill', u'orang', u'grove', u'project']
[u'opposit', u'rail', u'report']
[u'palestinian', u'offici', u'free', u'gaza', u'kidnap']
[u'parkinson', u'burrow', u'occhi', u'california']
[u'parliament', u'need', u'indigen', u'repres']
[u'express', u'concern', u'kodak', u'worker']
[u'decid', u'hanson', u'prefer', u'latham']
[u'pledg', u'boost', u'apprentic', u'payment']
[u'warn', u'huge', u'cost', u'log']
[u'polic', u'charg', u'theft']
[u'polic', u'crack', u'suspect', u'intern', u'theft', u'ring']
[u'polic', u'probe', u'toormina', u'attack']
[u'polic', u'crack', u'grand', u'final', u'drink']
[u'polic', u'uncov', u'detail', u'miss', u'teen', u'case']
[u'polic', u'threat', u'highway', u'sabotag']
[u'polic', u'warn', u'holiday', u'road', u'crackdown']
[u'polic', u'truck', u'crash', u'victim']
[u'pont', u'hail', u'mcgrath', u'symond']
[u'pont', u'leav', u'door', u'open', u'comeback']
[u'port', u'arthur', u'charg', u'sink', u'yacht']
[u'power', u'final', u'break', u'duck']
[u'power', u'station', u'consid', u'greener', u'technolog']
[u'primari', u'school', u'teacher', u'charg', u'assault']
[u'probe', u'continu', u'mccain', u'leak']
[u'protest', u'fire', u'fluorid', u'debat']
[u'push', u'region', u'scienc', u'career']
[u'threat', u'ivan', u'like', u'condit']
[u'radio', u'announc', u'breach', u'broadcast', u'law']
[u'renault', u'villeneuv', u'wait']
[u'report', u'smuggl', u'fake', u'bomb', u'gear', u'parliament']
[u'report', u'highlight', u'windal', u'wag']
[u'resid', u'odd', u'council', u'develop']
[u'resid', u'question', u'council', u'valuat']
[u'revamp', u'underway', u'histor', u'hotel']
[u'ridgeway', u'urg', u'indigen', u'represent']
[u'right', u'watchdog', u'urg', u'guantanamo', u'commiss']
[u'rivkin', u'sick', u'detent']
[u'roma', u'face', u'uefa', u'wrath']
[u'rossi', u'take', u'titl', u'fight', u'honda', u'backyard']
[u'defend', u'highway', u'effort']
[u'russian', u'tanker', u'explod', u'peopl', u'miss']
[u'saint', u'risk', u'hamil']
[u'school', u'crash', u'melbourn', u'injur']
[u'senat', u'candid', u'go', u'hungri', u'campaign']
[u'slim', u'dusti', u'fan', u'mark', u'anniversari', u'death']
[u'spur', u'wretch', u'stamford', u'bridg', u'record']
[u'lanka', u'handbal', u'team', u'vanish']
[u'state', u'territori', u'foul', u'govt', u'water']
[u'state', u'receiv', u'bonus']
[u'student', u'hurt', u'tunnel', u'crash']
[u'suicid', u'bomber', u'kill', u'baghdad']
[u'symond', u'guid', u'aussi']
[u'serious', u'say', u'senat', u'idol', u'winner']
[u'tender', u'process', u'begin', u'nhulunbuy', u'refineri']
[u'thousand', u'expect', u'alic', u'boat', u'race']
[u'thousand', u'folk', u'tip', u'festiv']
[u'arrest', u'karzai', u'assassin', u'attempt']
[u'marin', u'kill', u'iraq']
[u'tiger', u'pair', u'mickelson', u'ryder']
[u'town', u'communiti', u'award']
[u'accus', u'financ', u'terror']
[u'union', u'fight', u'kodak', u'off']
[u'claim', u'kill', u'strike']
[u'forc', u'strike', u'fallujah', u'sweep', u'ramadi']
[u'intellig', u'offer', u'gloomi', u'outlook', u'iraq']
[u'villeneuv', u'get', u'renault', u'drive']
[u'wangaratta', u'bishop', u'ponder', u'adelaid']
[u'wast', u'control', u'program', u'reveal']
[u'water', u'recycl', u'scheme', u'impress', u'brumbi']
[u'young', u'council', u'wont', u'fund']
[u'youth', u'fund', u'boost', u'central']
[u'strand', u'bangladesh', u'embank', u'burst']
[u'wound', u'mortar', u'strike', u'iraq', u'student']
[u'abbott', u'join', u'sydney', u'hospit', u'protest']
[u'aussi', u'elli', u'lpga', u'event']
[u'aussi', u'hedg', u'perfect', u'california']
[u'beatti', u'pay', u'tribut', u'late', u'energex', u'boss']
[u'blair', u'say', u'agreement', u'ireland', u'talk']
[u'bond', u'join', u'homer', u'club']
[u'clean', u'massiv', u'petrol', u'spill']
[u'brack', u'celebr', u'year', u'offic']
[u'brack', u'sack', u'drive', u'offenc']
[u'cabin', u'crew', u'deal', u'keep', u'alitalia', u'aloft', u'report']
[u'chariti', u'boat', u'race']
[u'child', u'critic', u'injur', u'overnight', u'smash']
[u'china', u'childbirth', u'studi', u'offer', u'australian', u'insight']
[u'prefer', u'democrat', u'green']
[u'coalit', u'grant', u'scheme', u'water', u'conserv']
[u'coalit', u'hold', u'slim', u'poll', u'edg', u'latham', u'gain']
[u'conserv', u'trust', u'warn', u'foreign', u'bumblebe']
[u'costa', u'rica', u'abandon', u'coalit', u'will']
[u'court', u'reject', u'jurisdict', u'challeng', u'coat']
[u'cowboy', u'away', u'grand', u'final']
[u'darwin', u'soldier', u'return', u'iraq']
[u'dead', u'strike', u'hit', u'fallujah']
[u'democrat', u'green', u'clash', u'prefer']
[u'dozen', u'kill', u'nigerian', u'pipelin', u'blast', u'polic']
[u'river', u'race', u'leav', u'anderson']
[u'europ', u'flourish', u'wood', u'mickelson', u'flop']
[u'famili', u'urg', u'voter', u'consid', u'polici']
[u'save', u'snake', u'bite', u'victim', u'life']
[u'partnership', u'victoria', u'hospit', u'open']
[u'flower', u'festiv', u'celebr', u'wonder', u'water']
[u'delay', u'zimbabw', u'cricket', u'hear']
[u'girl', u'bad', u'injur', u'tram', u'accid']
[u'govt', u'confid', u'coast', u'patrol', u'accept', u'offer']
[u'govt', u'bang', u'drum', u'band']
[u'green', u'labor', u'strike', u'prefer', u'deal']
[u'hopkin', u'hoya', u'impress', u'weigh']
[u'howard', u'accus', u'abandon', u'forest', u'worker']
[u'howard', u'prepar', u'forestri', u'polici']
[u'indonesia', u'draft', u'tougher', u'anti', u'terror', u'law']
[u'indonesian', u'polic', u'hold', u'embassi', u'blast']
[u'iraqi', u'airway', u'resum', u'intern', u'flight']
[u'iraq', u'free', u'plan', u'acquisit', u'report']
[u'kalgoorli', u'nightclub', u'owner', u'bash', u'brawl']
[u'kangaroo', u'cull', u'decis', u'right']
[u'kean', u'admit', u'abysm']
[u'porn', u'industri', u'sting', u'condom', u'fin']
[u'latham', u'reject', u'attack', u'econom', u'credenti']
[u'latham', u'woo', u'west']
[u'leed', u'year', u'english', u'titl', u'wait']
[u'liber', u'disappoint', u'king', u'prefer', u'decis']
[u'liber', u'forest', u'offer', u'altern', u'coalit']
[u'light', u'captur', u'antenna', u'reveal']
[u'lion', u'fourth', u'straight', u'decid']
[u'lie', u'rodent', u'stalk', u'howard', u'bennelong']
[u'kill', u'head', u'collis']
[u'maradona', u'return', u'cuba', u'monday', u'drug', u'rehab']
[u'martin', u'defend', u'waterfront', u'redevelop', u'project']
[u'matthew', u'talk', u'cat', u'chanc']
[u'mayor', u'reject', u'diesel', u'generat', u'kangaroo', u'island']
[u'melbourn', u'protest', u'reflect', u'anti', u'abort']
[u'militari', u'advis', u'atherton', u'ordnanc']
[u'mother', u'jackson', u'accus', u'testifi']
[u'continu', u'push', u'abus', u'report', u'releas']
[u'nalbandian', u'suffer', u'beij', u'shock', u'safin']
[u'nation', u'pledg', u'rodeo']
[u'australian', u'celebr', u'citizenship']
[u'korea', u'vow', u'dismantl', u'atom', u'arm']
[u'north', u'pole', u'mussel', u'sign', u'global', u'warm']
[u'cattl', u'export', u'target', u'philippin']
[u'ogradi', u'lose', u'point', u'lead', u'zabel']
[u'panama', u'flood', u'kill']
[u'paralymp', u'underway', u'athen']
[u'patagonian', u'toothfish', u'vessel', u'scuttl']
[u'polic', u'crocodil', u'snake', u'sydney', u'hous']
[u'polic', u'issu', u'sketch', u'possibl', u'embassi', u'mini']
[u'psych', u'ward', u'decis', u'bouy', u'lobbi', u'group']
[u'psych', u'ward', u'escape', u'captur']
[u'guid', u'seek', u'youth', u'commit', u'candid']
[u'rain', u'send', u'england', u'lanka', u'second']
[u'ralf', u'return', u'william', u'china']
[u'rogu', u'sheep', u'face', u'muster']
[u'rspca', u'slither', u'reptil', u'sydney', u'hous']
[u'russian', u'star', u'shine', u'bali']
[u'sack', u'apologis', u'drive', u'offenc']
[u'scientist', u'breakthrough', u'spinal', u'injuri']
[u'senden', u'tie', u'texa']
[u'setback', u'souness', u'dyer', u'rule', u'week']
[u'spadea', u'ancic', u'reach', u'delray', u'beach', u'semi']
[u'starcraft', u'shin', u'zealand']
[u'sublim', u'safin', u'set', u'russian', u'final', u'beij']
[u'sudan', u'peac', u'talk', u'break']
[u'suicid', u'bomb', u'kill', u'kirkuk']
[u'synod', u'consid', u'adelaid', u'archbishop', u'nomine']
[u'tamada', u'grab', u'pole', u'japan']
[u'polic', u'investig', u'death']
[u'team', u'colour', u'disguis', u'alleg', u'tractor', u'thief']
[u'thaworn', u'keep', u'taiwan', u'master', u'lead']
[u'triumphant', u'power', u'thank', u'support']
[u'trust', u'appeal', u'cole', u'approv']
[u'replay', u'necessari', u'india', u'australia', u'seri']
[u'dedic', u'final', u'drown', u'teammat']
[u'death', u'toll', u'hurrican', u'ivan']
[u'death', u'toll', u'hurrican', u'ivan', u'hit', u'report']
[u'prais', u'iran', u'resolut', u'compromis']
[u'polic', u'hunt', u'danger', u'psych', u'ward', u'escap']
[u'weak', u'consum', u'data', u'hit', u'wall', u'street']
[u'webck', u'cours', u'cowboy']
[u'wenger', u'condemn', u'decis', u'abandon', u'roma', u'match']
[u'west', u'coaster', u'entitl', u'hospit', u'inform']
[u'woman', u'die', u'fall']
[u'women', u'work', u'glass', u'ceil']
[u'woodi', u'allen', u'condemn', u'comic', u'tragic', u'bush']
[u'zarqawi', u'group', u'threaten', u'kill', u'hostag']
[u'hospitalis', u'balconi', u'collaps']
[u'hail', u'industri', u'action']
[u'allawi', u'determin', u'hold', u'januari', u'elect']
[u'medal', u'brace', u'highlight', u'paralymp']
[u'aussi', u'rid', u'high', u'california']
[u'beckham', u'bench', u'real', u'slump']
[u'blair', u'deni', u'iraq', u'post', u'chao', u'warn']
[u'bolton', u'gunner', u'citi', u'eas', u'pressur']
[u'brodgen', u'call', u'resign', u'jail', u'incid']
[u'bryant', u'surg', u'texa', u'leaderboard']
[u'bulldog', u'clash', u'panther']
[u'carr', u'urg', u'coalit', u'ratifi', u'kyoto']
[u'chanderpaul', u'steer', u'windi', u'trophi', u'semi']
[u'children', u'recov', u'accid']
[u'chines', u'polit', u'shuffl', u'like']
[u'convent', u'hear', u'abus', u'children']
[u'corpor', u'urg', u'improv', u'public', u'imag']
[u'council', u'hand', u'donat', u'helicopt', u'servic']
[u'croc', u'cruis', u'blitz', u'final']
[u'dementia', u'solut', u'focus', u'week']
[u'democrat', u'lee', u'agre', u'prefer']
[u'democrat', u'pledg', u'rental', u'blacklist', u'reform']
[u'driver', u'destroy', u'speed', u'camera']
[u'dunni', u'featur', u'heritag', u'week', u'display']
[u'eritrea', u'report', u'detent']
[u'appeal', u'sugar', u'rule']
[u'extra', u'accommod', u'eas', u'mental', u'health', u'crisi']
[u'fight', u'underwood', u'elvstroem']
[u'firefight', u'fear', u'snake', u'collect']
[u'firefight', u'train', u'facil', u'get', u'makeov']
[u'safe', u'cigarett', u'save', u'live', u'expert']
[u'flintoff', u'lead', u'england', u'aussi', u'semi', u'final', u'clash']
[u'footbal', u'fan', u'turn', u'attent', u'melbourn']
[u'kill', u'iraqi', u'violenc']
[u'girl', u'die', u'tram']
[u'govt', u'pursu', u'hardi', u'compens', u'treati', u'union']
[u'gypsi', u'joker', u'slater', u'charg', u'nightclub', u'bash']
[u'hail', u'storm', u'bring', u'flood', u'central', u'coast']
[u'harmison', u'boycott', u'zimbabw', u'tour']
[u'hewitt', u'begin', u'davi', u'prepar']
[u'home', u'star', u'arrest', u'drug', u'charg']
[u'hong', u'kong', u'unlik', u'titan', u'wheelchair', u'fenc']
[u'hopkin', u'knock', u'hoya']
[u'hospit', u'fund', u'boost', u'benefit', u'children']
[u'howard', u'cash', u'sydney', u'candid']
[u'howard', u'find', u'labor', u'green', u'deal', u'sicken']
[u'replac', u'jiang', u'china', u'militari', u'chief']
[u'indian', u'christian', u'hindu']
[u'indonesia', u'prepar', u'elect']
[u'insurg', u'kill', u'clash', u'sadr', u'offic']
[u'investig', u'continu', u'hous']
[u'iran', u'reject', u'uranium', u'enrich', u'freez']
[u'iraq', u'hold', u'januari', u'elect', u'iraqi']
[u'ivan', u'remnant', u'continu', u'destruct']
[u'kung', u'kane', u'share', u'portland', u'lead']
[u'labor', u'announc', u'suburban', u'safeti', u'plan']
[u'labor', u'rebuild', u'asian', u'relationship', u'beazley']
[u'labor', u'commit', u'maritim', u'secur']
[u'latham', u'accus', u'famili', u'payment', u'quick']
[u'latham', u'brush', u'dishonest']
[u'latham', u'pitch', u'health', u'educ', u'polici']
[u'latham', u'reject', u'emptiv', u'strike']
[u'leak', u'show', u'child', u'payment', u'quick']
[u'leav', u'son', u'educ', u'latham']
[u'lee', u'acknowledg', u'tough', u'fight', u'seat']
[u'librari', u'heart', u'govt', u'art', u'polici']
[u'lion', u'assess', u'casualti', u'list']
[u'lion', u'fan', u'join', u'grand', u'final', u'ticket', u'rush']
[u'local', u'hero', u'tamada', u'win', u'japan']
[u'log', u'polici', u'determin', u'green', u'prefer']
[u'manhunt', u'underway', u'penguin', u'murder']
[u'mari', u'poppin', u'statu', u'honour', u'author']
[u'maze', u'lure', u'tourist', u'dismal', u'swamp']
[u'megawati', u'pray', u'peac', u'poll']
[u'melbourn', u'team', u'win', u'henley', u'todd', u'regatta']
[u'milit', u'threaten', u'kill', u'hostag']
[u'motorcyclist', u'kill', u'wivenho', u'accid']
[u'everest', u'station', u'examin', u'atmospher', u'exchang']
[u'week', u'hit', u'adelaid', u'newsstand']
[u'norther', u'return', u'romant']
[u'barrist', u'head', u'nation', u'council']
[u'benefit', u'project', u'asia', u'say']
[u'green', u'prefer', u'labor']
[u'nuclear', u'watchdog', u'demand', u'iran', u'freez', u'enrich']
[u'pakistan', u'win', u'releas', u'guantanamo', u'detaine']
[u'paratroop', u'drop', u'innisfail']
[u'parti', u'finalis', u'prefer']
[u'parti', u'wrangl', u'offer', u'forest', u'protect', u'result']
[u'guarante', u'continu', u'bulk', u'incent']
[u'guarante', u'continu', u'bulk', u'bill', u'incent']
[u'turn', u'focus', u'western', u'sydney']
[u'polic', u'appeal', u'help', u'search', u'miss', u'girl']
[u'polic', u'continu', u'hunt', u'psych', u'ward', u'escape']
[u'polic', u'investig', u'balconi', u'collaps']
[u'polic', u'investig', u'suspect', u'doubl', u'murder']
[u'polic', u'investig', u'suspici', u'fire']
[u'polic', u'radio', u'network', u'upgrad']
[u'polic', u'stun', u'bonnet', u'surf', u'accid']
[u'elect', u'afghan', u'tribal', u'chief', u'murder']
[u'record', u'field', u'contest', u'adelaid']
[u'report', u'death', u'exagger', u'say']
[u'rule', u'tempo', u'press', u'restrict']
[u'russian', u'polic', u'intercept', u'explos', u'report']
[u'saddam', u'trial', u'octob', u'allawi']
[u'sanction', u'complet', u'destroy', u'sudan']
[u'declar', u'psych', u'ward', u'escap', u'proof']
[u'senat', u'candid', u'debat', u'issu']
[u'sheep', u'hide', u'mutton', u'cove', u'escap', u'dinner', u'plate']
[u'sixer', u'king', u'blitz', u'final']
[u'snake', u'home', u'wildlif', u'sanctuari']
[u'spadea', u'mello', u'delray', u'beach', u'final']
[u'starcraft', u'shin', u'zealand']
[u'storm', u'bank', u'final', u'experi']
[u'stroke', u'victim', u'offer', u'hope']
[u'sudan', u'abid', u'unfair', u'resolut', u'report']
[u'swift', u'domin', u'australian', u'squad']
[u'teenag', u'rid', u'bonnet']
[u'thompson', u'prais', u'fight', u'cat']
[u'torrensvill', u'clean', u'continu']
[u'troop', u'leav', u'iraq', u'year', u'hill']
[u'tropic', u'storm', u'jeann', u'cut', u'caribbean']
[u'univers', u'recognis', u'littl', u'contribut']
[u'resolut', u'threaten', u'sudan', u'sanction']
[u'strike', u'fallujah', u'kill', u'hospit']
[u'ryder', u'crisi', u'europ', u'turn', u'screw']
[u'plan', u'decemb', u'offens', u'iraqi', u'insurg']
[u'vaughan', u'talk', u'england', u'chanc']
[u'vote', u'independ', u'wast', u'anderson']
[u'west', u'coast', u'resid', u'concern', u'hospit']
[u'wife', u'plead', u'kidnap', u'husband', u'releas']
[u'wind', u'farm', u'propos', u'refer', u'govt']
[u'windi', u'resum', u'chase', u'rain', u'hit']
[u'wotif', u'specul', u'asian', u'hotel', u'market']
[u'disobey', u'franc', u'scarf']
[u'kill', u'pakistan', u'crash']
[u'injur', u'zimbabw', u'militari', u'drill']
[u'candid', u'wide', u'hinkler']
[u'pledg', u'buchanan', u'park', u'work']
[u'accid', u'spark', u'school', u'safeti', u'boost']
[u'afghan', u'vice', u'presid', u'surviv', u'bomb', u'attack']
[u'final', u'boost', u'tourism']
[u'airport', u'disastr']
[u'allawi', u'reveal', u'assassin', u'attempt']
[u'amnesti', u'turn', u'hand', u'end', u'domest', u'violenc']
[u'ampute', u'sue', u'hospit', u'neglig']
[]
[u'asic', u'call', u'wit', u'onetel', u'case']
[u'team', u'play', u'french', u'barbarian']
[u'aust', u'ambassador', u'optimist', u'iraq', u'futur']
[u'aust', u'east', u'timor', u'resum', u'timor', u'resourc', u'talk']
[u'austoft', u'sell', u'local', u'consortium']
[u'ballarat', u'brace', u'port', u'power', u'invas']
[u'ban', u'help', u'jondaryan', u'water']
[u'barca', u'hold', u'real', u'boss', u'camacho', u'offer', u'resign']
[u'bekel', u'isinbayeva', u'name', u'year', u'best', u'athlet']
[u'betel', u'beauti', u'give', u'cover', u'order']
[u'biki', u'court', u'nightclub', u'assault']
[u'birth', u'defect', u'biolog', u'genocid']
[u'blackshirt', u'leader', u'plead', u'guilti', u'stalk']
[u'blast', u'furnac', u'work', u'launch']
[u'blow', u'caus', u'fatal', u'heart', u'condit', u'court', u'hear']
[u'bordertown', u'school', u'rock', u'eisteddfod', u'award']
[u'british', u'polic', u'suspect', u'serial', u'killer']
[u'brown', u'clear', u'injuri']
[u'brownlow', u'winner', u'judd', u'stick', u'eagl']
[u'bryant', u'captur', u'titl']
[u'budget', u'carrier', u'singapor', u'perth', u'rout']
[u'bike', u'incent', u'alp', u'agenda']
[u'bush', u'support', u'critic', u'iraq', u'polici']
[u'bushwalk', u'schoolgirl', u'stumbl', u'remain']
[u'busi', u'welcom', u'snow']
[u'cabl', u'sand', u'plan', u'bunburi', u'boost']
[u'call', u'continu', u'dedic', u'riverina', u'murray']
[u'canberra', u'develop', u'plan', u'revitalis', u'area']
[u'care', u'seek', u'shoalhaven', u'children']
[u'chamber', u'want', u'opposit', u'commit']
[u'children', u'warn', u'heart', u'health']
[u'child', u'surviv', u'day', u'jungl']
[u'china', u'join', u'formula', u'famili']
[u'chinchilla', u'power', u'station', u'worker', u'camp']
[u'circular', u'head', u'council', u'renew', u'partnership', u'deal']
[u'clash', u'hamper', u'effort', u'sudan']
[u'clijster', u'plan', u'belgian', u'return']
[u'prefer', u'labor']
[u'cooper', u'basin', u'open', u'explor']
[u'cooper', u'basin', u'top', u'energi', u'explor']
[u'council', u'alter', u'hous', u'polici']
[u'council', u'meet', u'consid', u'hospit', u'plan']
[u'council', u'hold', u'clark', u'hill', u'wind', u'farm', u'talk']
[u'court', u'hear', u'differ', u'meninga', u'brawl', u'account']
[u'cowboy', u'rid', u'high', u'contain', u'bronco']
[u'custom', u'break', u'anim', u'smuggl', u'ring']
[u'date', u'falconio', u'murder', u'trial']
[u'dead', u'aid', u'murder', u'probe']
[u'delay', u'femal', u'priest', u'vote']
[u'democrat', u'welcom', u'suggest', u'nation', u'water']
[u'chang', u'yield', u'arrest', u'rann']
[u'document', u'hold', u'sydney', u'locat']
[u'doubt', u'cast', u'mental', u'health', u'plan']
[u'doubt', u'remain', u'north', u'korean', u'explos']
[u'eagl', u'west', u'claim', u'premiership']
[u'effort', u'continu', u'contain', u'kimberley', u'fire']
[u'emmi', u'award', u'winner']
[u'energi', u'miner', u'drive', u'record', u'export', u'earn']
[u'england', u'break', u'aussi', u'stranglehold', u'claim', u'gough']
[u'errant', u'bird', u'ground', u'virgin', u'plane']
[u'timor', u'australia', u'talk', u'product']
[u'expo', u'highlight', u'emerg', u'servic', u'work']
[u'consid', u'bin']
[u'final', u'loser', u'add', u'kangaroo', u'squad']
[u'destroy', u'aborigin', u'embassi']
[u'flower', u'carniv', u'bloom', u'success']
[u'forestri', u'specul', u'unsettl', u'investor', u'gunn']
[u'mayor', u'deni', u'connect', u'perth', u'serial']
[u'french', u'cautious', u'optimist', u'hostag', u'news']
[u'gallop', u'pleas', u'rein', u'water']
[u'gate', u'mishap', u'put', u'girl', u'hospit']
[u'geelong', u'johnson', u'tribun', u'charg']
[u'make', u'diabet', u'treatment', u'easier', u'swallow']
[u'gisborn', u'die', u'crash']
[u'govern', u'accus', u'educ', u'review', u'delay']
[u'govern', u'boost', u'mine', u'sector']
[u'govt', u'indigen', u'repres']
[u'govt', u'seek', u'feedback', u'retir', u'home', u'law']
[u'govt', u'toughen', u'fertilis', u'control']
[u'green', u'group', u'feel', u'chipper', u'log', u'protest']
[u'green', u'forc', u'doubl', u'dissolut', u'lee']
[u'green', u'undecid', u'prefer']
[u'green', u'prefer', u'paterson']
[u'hama', u'fire', u'isra', u'strike']
[u'hama', u'threaten', u'aveng', u'liquid']
[u'edg', u'kane', u'lpga', u'play']
[u'hang', u'glider', u'pilot', u'hurt', u'rough', u'weather']
[u'come', u'emmi']
[u'health', u'offici', u'deni', u'whistleblow', u'sack', u'claim']
[u'high', u'court', u'reject', u'qanta', u'allianc']
[u'histor', u'scrapbook', u'donat']
[u'hockeyroo', u'rebuild', u'athen', u'failur']
[u'hostag', u'claim', u'like', u'hoax']
[u'hotel', u'rwanda', u'win', u'heart', u'toronto', u'film', u'festiv']
[u'howard', u'pledg', u'million', u'upgrad', u'darwin']
[u'huge', u'crowd', u'expect', u'mcgrane', u'funer']
[u'hundr', u'hospit', u'matern', u'servic']
[u'hundr', u'farewel', u'richard']
[u'iaea', u'team', u'resum', u'investig', u'south', u'korea']
[u'increas', u'crime', u'train', u'caus', u'concern']
[u'independ', u'fear', u'ballot', u'paper', u'confus']
[u'indian', u'satellit', u'connect', u'remot', u'classroom']
[u'indian', u'look', u'ahead', u'australia', u'challeng']
[u'injuri', u'cloud', u'panther', u'trio']
[u'inquiri', u'tell', u'model', u'fail', u'predict', u'bushfir']
[u'irrig', u'group', u'get', u'voic']
[u'duti', u'protect', u'son', u'latham']
[u'jagger', u'win', u'humanitarian', u'award']
[u'johnson', u'tempt', u'lion', u'tour']
[u'judd', u'lead', u'halfway', u'point']
[u'judd', u'win', u'brownlow', u'medal']
[u'juventus', u'pace', u'itali']
[u'kwinana', u'polic', u'offic', u'reloc']
[u'labor', u'plan', u'battalion', u'townsvill']
[u'labor', u'promis', u'phone', u'rental', u'freez']
[u'labor', u'promis', u'plastic']
[u'labor', u'promis', u'boost', u'public', u'transport']
[u'latham', u'back', u'cinderella', u'stori', u'cowboy']
[u'latham', u'request', u'branch', u'stack', u'candid']
[u'latham', u'patch', u'styx', u'fell']
[u'launceston', u'mayor', u'tell', u'council', u'focus']
[u'lennon', u'open', u'north', u'west', u'tourism', u'ventur']
[u'lethal', u'back', u'riewoldt', u'brownlow']
[u'liber', u'branch', u'favour', u'green', u'vote', u'card']
[u'loxton', u'school', u'rid', u'high', u'pedal', u'prix']
[u'magistr', u'jail', u'offenc']
[u'jail', u'kill', u'neighbour']
[u'trial', u'aunt', u'murder']
[u'market', u'slow', u'record']
[u'megawati', u'confid', u'poll', u'close']
[u'mello', u'break', u'florida']
[u'meninga', u'fight', u'videotap', u'eras']
[u'milit', u'behead', u'afghan', u'soldier']
[u'minist', u'defend', u'ausaid', u'fund', u'effort']
[u'minist', u'defend', u'waterfront', u'effort']
[u'minist', u'fall', u'timber', u'job', u'chop', u'union']
[u'miss', u'see', u'bundaberg']
[u'modra', u'take', u'paralymp', u'gold']
[u'money', u'tasmanian', u'health', u'napier']
[u'mother', u'call', u'son', u'transfer']
[u'moura', u'plan', u'deal', u'attract', u'doctor']
[u'accus', u'govt', u'freez', u'indigen', u'fund']
[u'reject', u'alleg', u'post', u'seat', u'offer']
[u'say', u'labor', u'promis']
[u'navi', u'hunt', u'darwin', u'seahors']
[u'law', u'ensur', u'crime', u'doesnt']
[u'delay', u'zimbabw', u'racism', u'hear']
[u'injuri', u'concern', u'port']
[u'nois', u'summit', u'brisban']
[u'plan', u'iraq', u'deploy', u'say']
[u'poll', u'start']
[u'price', u'rise', u'yuko', u'slow', u'export']
[u'opposit', u'back', u'stay', u'sydney', u'airport']
[u'orphan', u'polar', u'bear', u'gold', u'coast', u'home']
[u'parent', u'group', u'concern', u'labor', u'school', u'polici']
[u'personalis', u'medicin', u'studi', u'launch']
[u'photojournalist', u'eddi', u'adam', u'die', u'age']
[u'pilbara', u'take', u'polic', u'academi', u'posit']
[u'polic', u'charg', u'rave', u'drug', u'bust']
[u'polic', u'hunt', u'dairi', u'farm', u'vandal']
[u'polic', u'hunt', u'home', u'invad']
[u'polic', u'investig', u'north', u'sydney', u'stab']
[u'polic', u'swoop', u'copi', u'dvds']
[u'polic', u'interview', u'disgrac']
[u'power', u'look', u'experi', u'perform']
[u'emptiv', u'strike', u'undermin', u'cooper']
[u'pregnant', u'woman', u'forc', u'return', u'husband']
[u'pressur', u'mount', u'health', u'servic', u'rethink']
[u'priest', u'face', u'court', u'rwandan', u'massacr']
[u'prison', u'step', u'closer', u'govt', u'say']
[u'probe', u'launch', u'cairn', u'brawl']
[u'public', u'urg', u'health', u'council']
[u'qanta', u'rule', u'allianc', u'appeal']
[u'race', u'driver', u'kill', u'crash']
[u'real', u'coach', u'camacho', u'quit']
[u'resid', u'form', u'anti', u'biodiesel', u'plant', u'strategi']
[u'feel', u'airport', u'squeez']
[u'termin', u'claim', u'scaremong', u'airport']
[u'saddam', u'distraught', u'depress']
[u'saddam', u'trial', u'like', u'month']
[u'sadr', u'call', u'releas', u'hostag']
[u'safin', u'end', u'year', u'wait', u'beij', u'kuznetsova']
[u'prison', u'diseas', u'prevent', u'scrutini']
[u'sawmil', u'propos', u'nativ', u'forest', u'clear']
[u'school', u'share', u'secur', u'boost']
[u'shake', u'plan', u'jail', u'staff', u'level']
[u'shark', u'poacher', u'plead', u'guilti']
[u'shark', u'net', u'suspect', u'seal', u'declin']
[u'sheep', u'fee', u'accus', u'seek', u'trial', u'chang']
[u'south', u'african', u'rugbi', u'athen', u'storm']
[u'strict', u'bail', u'condit', u'jail', u'magistr']
[u'sunni', u'cleric', u'kill', u'baghdad']
[u'survey', u'highlight', u'need', u'belt']
[u'survey', u'highlight', u'tougher', u'tourism', u'market']
[u'suspend', u'vanuatu', u'command', u'arrest', u'replac']
[u'tackl', u'terror', u'latham', u'agenda']
[u'taiwan', u'rang', u'china', u'test', u'cruis', u'missil']
[u'team', u'celebr', u'weekend', u'final', u'success']
[u'teenag', u'charg', u'attack', u'boy']
[u'thousand', u'mourn', u'mcgrane']
[u'year', u'jail', u'greedi', u'thief']
[u'tibooburra', u'name', u'communiti']
[u'timber', u'group', u'appeal', u'chip', u'reject']
[u'bear', u'defenc', u'secur', u'grand', u'final']
[u'tour', u'oper', u'reject', u'market', u'campaign']
[u'transperth', u'servic', u'suspend', u'union', u'meet']
[u'tredrea', u'lead', u'brownlow', u'bet']
[u'troop', u'free', u'jordanian', u'hostag', u'iraq']
[u'tropic', u'storm', u'pound', u'haiti']
[u'turkish', u'truck', u'driver', u'target', u'iraq']
[u'arrest', u'anti', u'nuclear', u'protest']
[u'gather', u'discuss', u'hunger', u'poverti']
[u'univers', u'benefit', u'liber']
[u'univers', u'reopen', u'despit', u'hail', u'damag']
[u'look', u'restor', u'pride', u'davi']
[u'vaccin', u'offer', u'hope', u'cancer', u'patient']
[u'vandal', u'target', u'shepparton', u'firm']
[u'video', u'footag', u'help', u'catch', u'cracker', u'starter']
[u'accid', u'leav', u'burn']
[u'wilkinson', u'kick', u'newcastl']
[u'winemak', u'garrett', u'evict']
[u'woman', u'die', u'picton', u'crash']
[u'work', u'begin', u'robinval', u'euston', u'bridg']
[u'year', u'student', u'quiz', u'school', u'fund']
[u'yudhoyono', u'eye', u'presid', u'count', u'begin']
[u'yudhoyono', u'lead', u'indonesian', u'vote']
[u'zahra', u'reject', u'call', u'resign', u'vote', u'blunder']
[u'year', u'jail', u'murder', u'arson']
[u'kill', u'haiti', u'storm']
[u'aborigin', u'seek', u'consult', u'forest', u'debat']
[u'chang', u'allow', u'transfer', u'norfolk']
[u'unveil', u'grand', u'final', u'umpir']
[u'gain', u'grind', u'poll']
[u'boost', u'bioterror', u'prevent']
[u'alzheim', u'librari', u'support', u'carer']
[u'artist', u'rais', u'fund', u'hous', u'collect']
[u'asic', u'investig', u'jam', u'hardi', u'breach']
[u'atkinson', u'deni', u'elect', u'interfer', u'claim']
[u'aussi', u'cyclist', u'blitz', u'paralymp', u'field']
[u'aust', u'terror', u'fear', u'prioriti']
[u'author', u'investig', u'coober', u'pedi', u'mine', u'death']
[u'award', u'recognis', u'timber', u'plantat', u'pioneer']
[u'babi', u'quoll', u'lithgow', u'home']
[u'beazley', u'question', u'emptiv', u'strike', u'polici']
[u'beer', u'leav', u'bitter', u'tast']
[u'blair', u'monitor', u'iraq', u'kidnap']
[u'blood', u'test', u'predict', u'diabet', u'heart', u'diseas', u'risk']
[u'boss', u'starcraft', u'plate', u'decis']
[u'branch', u'stack', u'claim', u'credibl', u'latham']
[u'brazilian', u'miss', u'qlds', u'highest', u'peak']
[u'brownlow', u'winner', u'judd', u'stick', u'eagl']
[u'bundaberg', u'local', u'win', u'award']
[u'driver', u'stab', u'chines', u'children']
[u'bush', u'kerri', u'agre', u'elect', u'debat']
[u'bush', u'lift', u'libyan', u'trade', u'embargo']
[u'joint', u'care']
[u'camera', u'offer', u'insight', u'condit']
[u'candid', u'forum', u'highlight', u'educ', u'issu']
[u'explod', u'baghdad']
[u'cash', u'strap', u'candid', u'can', u'campaign']
[u'dupe', u'bush', u'militari', u'memo']
[u'china', u'resum', u'live', u'export', u'middl', u'east']
[u'chines', u'ship', u'jumper', u'custodi']
[u'coast', u'forg', u'china', u'trade', u'link']
[u'coast', u'tourism', u'chief', u'quit']
[u'promis', u'log', u'fight']
[u'corbel', u'hail', u'wait', u'list', u'cut']
[u'council', u'await', u'report', u'choos', u'bathhous']
[u'council', u'consid', u'futur', u'growth']
[u'council', u'clear', u'smoke', u'enforc']
[u'council', u'urg', u'return', u'supercar', u'race']
[u'council', u'subdivis', u'snub']
[u'council', u'post', u'decis', u'letterbox']
[u'crackdown', u'seek', u'crook']
[u'cranebrook', u'sell', u'break', u'promis']
[u'crop', u'contamin', u'seed', u'scandal']
[u'debat', u'consid', u'matur', u'educ', u'cut']
[u'defenc', u'work', u'promis', u'newcastl', u'job', u'boost']
[u'democrat', u'want', u'school', u'voluntari', u'fee', u'abolish']
[u'disqualifi', u'driver', u'petit', u'governor']
[u'doctor', u'bolster', u'south', u'west', u'health']
[u'doubl', u'entendr', u'arous', u'regul']
[u'earli', u'morn', u'mackay', u'brisban', u'flight']
[u'elector', u'roll', u'rort', u'ignor', u'claim', u'senat']
[u'embassi', u'bomb', u'suspect', u'custodi']
[u'england', u'toss', u'bowl', u'australia']
[u'entri', u'seek', u'design', u'rural', u'learn', u'centr']
[u'european', u'hail', u'latest', u'data', u'mar']
[u'exit', u'dampen', u'hous', u'market']
[u'farmer', u'urg', u'avoid', u'fever']
[u'farm', u'product', u'scheme', u'aim', u'right', u'match']
[u'fear', u'isol', u'famili', u'leav', u'educ']
[u'forest', u'misinform', u'influenc']
[u'forum', u'put', u'reconcili', u'spotlight']
[u'forum', u'discuss', u'highway', u'bypass', u'flood']
[u'fulham', u'charg', u'west', u'brom', u'brawl']
[u'fund', u'lifelin', u'cooma', u'busi', u'centr']
[u'gambl', u'initi', u'earn', u'prais']
[u'game', u'take', u'prostat', u'cancer']
[u'german', u'worri', u'nazi', u'parti', u'support']
[u'ghost', u'ship', u'landfil']
[u'gippsland', u'green', u'declin', u'prefer', u'deal']
[u'gorg', u'galaxi', u'aid', u'format', u'studi']
[u'govt', u'urg', u'provid', u'indian', u'ocean', u'drive', u'fund']
[u'grain', u'compani', u'merger', u'benefit', u'grower']
[u'grazier', u'get', u'tree', u'clear', u'fine']
[u'group', u'want', u'upgrad', u'dead', u'highway']
[u'gutnick', u'share', u'sale', u'rule', u'uphold']
[u'hanson', u'lodg', u'complaint', u'unfair', u'ballot']
[u'hardi', u'execut', u'breach', u'corpor']
[u'hart', u'unsur', u'play', u'futur']
[u'home', u'invad', u'jail', u'year']
[u'hope', u'adopt', u'fluid', u'fertilis']
[u'hope', u'weather', u'bushfir', u'fight']
[u'hostag', u'famili', u'seek', u'blair', u'intervent']
[u'howard', u'pledg', u'reef', u'research', u'fund']
[u'howard', u'announc', u'reef', u'packag']
[u'howard', u'sniff', u'labor', u'polici']
[u'ill', u'forc', u'hand', u'rear', u'cheetah', u'cub']
[u'independ', u'say', u'nation', u'pressur']
[u'indian', u'claim', u'australia', u'pull', u'tour']
[u'indigen', u'claimant', u'sign', u'deal']
[u'indonesian', u'vote', u'chang']
[u'injuri', u'end', u'hogg', u'trophi']
[u'iran', u'convert', u'uranium', u'offici', u'say']
[u'iraqi', u'milit', u'behead', u'hostag']
[u'jam', u'hardi', u'ask', u'halt', u'share', u'trade']
[u'jam', u'hardi', u'inquiri', u'find', u'releas']
[u'japanes', u'discoveri', u'help', u'combat', u'diseas']
[u'offer', u'crime', u'say']
[u'journal', u'expert', u'moot', u'press', u'logo']
[u'judg', u'recommend', u'arsonist', u'meet', u'victim']
[u'kerri', u'slam', u'bush', u'coloss', u'failur', u'iraq']
[u'kidnap', u'babi', u'father', u'face', u'drug', u'charg']
[u'kiwi', u'dump', u'mcmillan']
[u'knock', u'scent', u'ghost', u'fear']
[u'labor', u'await', u'costello', u'plan', u'critiqu']
[u'labor', u'instal', u'ravlich', u'gallop', u'govern']
[u'labor', u'make', u'stand', u'eureka', u'centr']
[u'labor', u'saliv', u'hang', u'parliament']
[u'landhold', u'pipelin', u'rout']
[u'langer', u'hail', u'overwhelm', u'ryder']
[u'late', u'recoveri', u'leav', u'market', u'black']
[u'legal', u'action', u'solut', u'safeti', u'labor']
[u'liber', u'better', u'prison', u'support']
[u'libya', u'welcom', u'trade', u'sanction']
[u'magistr', u'leav', u'violenc', u'order']
[u'malaysia', u'reject', u'howard', u'terror', u'plan']
[u'stand', u'trial', u'fatal', u'spear']
[u'maradona', u'leav', u'cuba']
[u'maroochi', u'lifeguard']
[u'meninga', u'stand', u'trial', u'assault', u'charg']
[u'milit', u'extend', u'execut', u'deadlin']
[u'creditor', u'urg', u'payout', u'deal']
[u'group', u'unfaz', u'goldfield', u'return']
[u'minist', u'defend', u'polic', u'staff', u'level']
[u'mitchel', u'hoil', u'wallabi']
[u'molik', u'slip']
[u'monitor', u'brand', u'indonesian', u'vote', u'honest']
[u'dead', u'fish', u'waterway']
[u'port', u'arthur', u'tap', u'like', u'polic']
[u'support', u'urg', u'wine', u'oper', u'plan']
[u'work', u'urg', u'power', u'facil']
[u'attack', u'water', u'impact']
[u'musician', u'valley', u'entertain', u'zone']
[u'nation', u'park', u'fuel', u'reduct', u'burn', u'underway']
[u'neighbour', u'weigh', u'emptiv', u'strike', u'debat']
[u'attack', u'afghan', u'leadership']
[u'hospit', u'manag', u'focus', u'staff']
[u'bail', u'kidnap', u'charg']
[u'rift', u'camacho', u'player', u'say', u'beckham']
[u'research', u'help', u'address', u'child', u'abus']
[u'price', u'dampen', u'wall', u'trade']
[u'opal', u'agreement', u'pave', u'mine']
[u'page', u'candid', u'elect', u'forum']
[u'palestinian', u'farmer', u'injur', u'alleg', u'attack']
[u'palestinian', u'gunmen', u'kill', u'suspect', u'inform']
[u'palestinian', u'arrest', u'jenin', u'raid']
[u'paralympian', u'follow', u'bronz', u'silver']
[u'parent', u'lament', u'librari', u'demis']
[u'parent', u'away', u'meningococc', u'vaccin']
[u'parent', u'urg', u'vote', u'educ', u'chang']
[u'park', u'oper', u'welcom', u'wast', u'dispos', u'facil']
[u'parrot', u'seiz', u'custom', u'raid']
[u'partnership', u'target', u'stanley', u'tourism', u'potenti']
[u'peopl', u'smuggler', u'jail']
[u'ping', u'ping', u'leav', u'coast', u'china', u'olymp', u'role']
[u'playstat', u'get', u'makeov']
[u'deni', u'knowledg', u'alleg', u'elector', u'bribe']
[u'reassur', u'neighbour', u'emptiv', u'strike']
[u'polic', u'seiz', u'gun']
[u'polic', u'warn', u'footi', u'fan', u'behav', u'road']
[u'pont', u'back', u'pace', u'blitz']
[u'pont', u'ignor', u'england', u'hype']
[u'pool', u'death', u'prompt', u'swim', u'star', u'campaign']
[u'port', u'author', u'face', u'flinder', u'truck']
[u'probe', u'urg', u'region', u'develop', u'board']
[u'public', u'servant', u'ralli', u'collect', u'bargain']
[u'putin', u'call', u'resumpt', u'north', u'korea', u'nuclear', u'talk']
[u'rabbi', u'escap', u'charg', u'curs', u'isra', u'leader']
[u'real', u'estat', u'institut', u'reform', u'price', u'record']
[u'rescu', u'chopper', u'return', u'servic']
[u'resid', u'voic', u'opposit', u'warner', u'plan']
[u'unhappi', u'airport', u'termin', u'offer']
[u'rspca', u'aim', u'address', u'shelter', u'misconcept']
[u'russia', u'begin', u'beslan', u'investig']
[u'rwanda', u'genocid', u'priest', u'trial']
[u'sadr', u'support', u'releas', u'hostag']
[u'sanfl', u'player', u'charg', u'hopoat', u'style', u'incid']
[u'scientist', u'hop', u'sar', u'cure']
[u'search', u'continu', u'miss', u'murder', u'weapon']
[u'ship', u'desert', u'deport']
[u'silver', u'citi', u'forgo', u'sunday']
[u'silvestr', u'doubl', u'sink', u'liverpool', u'return']
[u'charg', u'gosford', u'attack']
[u'soak', u'build', u'remain', u'limit', u'student']
[u'staff', u'stand', u'asid', u'mental', u'hospit', u'abus', u'probe']
[u'stanhop', u'dismiss', u'liber', u'food', u'festiv', u'plan']
[u'support', u'super', u'school', u'plan']
[u'syria', u'coordin', u'lebanon', u'redeploy']
[u'pub', u'smoke', u'free']
[u'thousand', u'tip', u'flock', u'field', u'day']
[u'tougher', u'limit', u'cigarett', u'sale', u'expect']
[u'tragic', u'rest', u'wrong', u'tree', u'wrong', u'time']
[u'tribut', u'pour', u'legendari', u'manag', u'clough']
[u'truss', u'agricultur', u'dept', u'claim', u'fanci']
[u'turkish', u'compani', u'suspend', u'activ', u'iraq']
[u'sharehold', u'approv', u'grain', u'merger']
[u'beg', u'releas', u'hostag']
[u'undercov', u'polic', u'target', u'scalper']
[u'union', u'campaign', u'margin']
[u'univers', u'split', u'medic', u'school']
[u'urg', u'action', u'child', u'abus']
[u'arrest', u'sadr', u'aid']
[u'tackl', u'anti', u'muslim', u'percept', u'musharraf']
[u'sell', u'israel', u'bunker', u'buster']
[u'verdict', u'date', u'zimbabw', u'treason', u'case']
[u'terror', u'tackl', u'child', u'abus', u'say']
[u'water', u'wont', u'itemis', u'bill']
[u'wentworth', u'candid', u'focus', u'log']
[u'windsor', u'prepar', u'briber']
[u'wolfenden', u'follow', u'bronz', u'silver']
[u'woman', u'fall', u'window']
[u'women', u'bishop', u'plan', u'expect', u'face', u'opposit']
[u'workshop', u'look', u'bolster', u'backpack', u'number']
[u'wrong', u'classif', u'cost', u'iranian', u'paralymp', u'gold']
[u'boost', u'defenc', u'technolog']
[u'nelson', u'build', u'get', u'plan']
[u'slash', u'china', u'internet', u'cafe']
[u'accc', u'pursu', u'decept', u'salesman']
[u'acupunctur', u'help', u'eas', u'post', u'surgic', u'ill']
[u'announc', u'rise', u'offici', u'figur']
[u'defend', u'staffer', u'union', u'elect', u'claim']
[u'urg', u'draft', u'domest', u'violenc']
[u'alcohol', u'foundat', u'open', u'facil']
[u'promis', u'bushfir', u'repair']
[u'qaeda', u'leader', u'grant', u'tourist', u'visa']
[u'back', u'hospit', u'manag', u'appoint']
[u'ambul', u'review', u'restor', u'credibl']
[u'anasta', u'dog', u'lewi', u'panther']
[u'anderson', u'step', u'nation', u'lose', u'seat']
[u'anderson', u'warn', u'tight', u'elect']
[u'angler', u'seek', u'reef', u'rezon', u'review']
[u'arafat', u'deserv', u'sharon']
[u'arsenal', u'confid', u'keep', u'wenger']
[u'artefact', u'stoush', u'prompt', u'legal', u'threat']
[u'asic', u'begin', u'jam', u'hardi', u'investig']
[u'audit', u'find', u'govt', u'fee', u'excess']
[u'australian', u'hostag', u'team', u'remain', u'iraq']
[u'australian', u'jaqu', u'sign', u'yorkshir']
[u'australia', u'qaeda', u'proof', u'ruddock']
[u'author', u'miss', u'woman', u'safe']
[u'baghdad', u'bomb', u'kill']
[u'bali', u'remark', u'spark', u'dump', u'candid']
[u'ballarat', u'atop', u'gold']
[u'barrichello', u'readi', u'finish', u'season', u'high', u'note']
[u'beatti', u'await', u'feder', u'pipelin', u'pledg']
[u'beckham', u'give', u'real', u'win', u'start', u'regim']
[u'beckham', u'tabloid']
[u'bigger', u'push', u'promot', u'western']
[u'parti', u'urg', u'cultiv', u'rural', u'vote']
[u'blue', u'chip', u'drive', u'market', u'record']
[u'brack', u'urg', u'coalit', u'match', u'cancer', u'fund']
[u'builder', u'urg', u'renov', u'seek', u'advic']
[u'build', u'union', u'criticis', u'howard', u'apprentic', u'plan']
[u'bulldog', u'sweat', u'anasta', u'fit']
[u'bureaucrat', u'blame', u'graze']
[u'bush', u'call', u'israel', u'freez', u'settlement']
[u'busi', u'fear', u'bypass', u'impact']
[u'busi', u'role', u'child', u'abus', u'fight', u'expert']
[u'busi', u'honour', u'coast', u'professor']
[u'mental', u'health', u'fund', u'boost']
[u'cambodia', u'find', u'fresh', u'bird', u'case']
[u'canunda', u'wind', u'farm', u'take', u'shape']
[u'capel', u'receiv', u'warn', u'posit', u'test']
[u'carr', u'contempt', u'avoid', u'charg']
[u'carr', u'leav', u'countri', u'ahead', u'icac', u'rule']
[u'castro', u'back', u'maradona', u'drug', u'battl']
[u'steven', u'deni', u'entri']
[u'investig', u'improprieti', u'claim']
[u'child', u'offend', u'track', u'trial']
[u'china', u'awash', u'wast']
[u'china', u'begin', u'olymp', u'countdown']
[u'claim', u'free', u'scientist', u'reject']
[u'cleaner', u'reach', u'contract', u'agreement']
[u'cole', u'myer', u'sale', u'drive', u'record', u'profit']
[u'compani', u'detail', u'iron', u'project', u'impact']
[u'concern', u'air', u'rail', u'line', u'futur']
[u'costello', u'find', u'raft', u'error', u'plan']
[u'council', u'back', u'ethanol', u'blend', u'fuel']
[u'council', u'ban', u'bondi', u'butt']
[u'council', u'hear', u'methadon', u'clinic', u'worri']
[u'councillor', u'urg', u'heed', u'rate', u'rise', u'concern']
[u'council', u'plan', u'main', u'revamp']
[u'council', u'seek', u'confirm', u'nylex', u'expans']
[u'council', u'welcom', u'rate', u'rise', u'question']
[u'court', u'case', u'rais', u'tree', u'clear', u'permit', u'fear']
[u'crash', u'highway', u'leav', u'dead']
[u'darwin', u'record', u'coolest', u'septemb', u'night']
[u'deadlin', u'approach', u'retail', u'law', u'review']
[u'delay', u'alzheim', u'onset', u'save', u'billion']
[u'democrat', u'focus', u'vocat', u'train', u'cost']
[u'democrat', u'focus', u'seachang']
[u'owner', u'warn', u'tick', u'outbreak']
[u'dont', u'write', u'panther', u'girdler']
[u'drink', u'drive', u'bill', u'referr', u'anger', u'mcginti']
[u'drug', u'summit', u'show', u'communiti', u'concern', u'leader']
[u'east', u'timor', u'australia', u'near', u'boundari', u'agreement']
[u'eden', u'forum', u'discuss', u'indigen', u'book']
[u'elect', u'pledg', u'surpris', u'say']
[u'emerg', u'confus', u'caus', u'rescu']
[u'emus', u'launch', u'revamp', u'servic']
[u'epidem', u'prompt', u'dialysi', u'fund', u'plea']
[u'timor', u'protest', u'warship', u'intrus']
[u'farmer', u'remind', u'powerlin', u'hazard']
[u'fear', u'mount', u'tourist', u'remain', u'miss']
[u'feder', u'poll', u'spook', u'forestri', u'lender']
[u'figur', u'highlight', u'alcohol', u'relat', u'crime']
[u'fiji', u'threaten', u'quit', u'island', u'tour']
[u'hamper', u'accid', u'clean']
[u'fisheri', u'revis', u'lobster']
[u'footi', u'season', u'end', u'fewer', u'player', u'misconduct']
[u'bardot', u'manag', u'win', u'damag', u'dismiss']
[u'detect', u'rogerson', u'collaps']
[u'franc', u'host', u'festiv', u'australian']
[u'frost', u'leav', u'farmer', u'plead', u'compass']
[u'fulham', u'fine', u'cole', u'diop', u'west', u'brom', u'brawl']
[u'galleri', u'extend', u'hour', u'minut', u'rush']
[u'gerrard', u'month', u'break', u'foot']
[u'gladston', u'hear', u'china', u'alumina', u'opportun']
[u'gold', u'coast', u'settlement', u'nation', u'park']
[u'goulburn', u'water', u'suppli', u'run']
[u'govt', u'move', u'strip', u'theophan', u'super']
[u'govt', u'pledg', u'motor', u'sport']
[u'govt', u'allow', u'death', u'sentenc', u'extradit', u'say']
[u'green', u'target', u'privat', u'school']
[u'hairi', u'competit', u'honour', u'german', u'explor']
[u'haiti', u'mourn', u'storm', u'victim']
[u'heat', u'hurt', u'wimmera', u'malle', u'crop']
[u'helicopt', u'carri', u'politician', u'crash', u'east']
[u'tech', u'court', u'plan', u'high', u'profil', u'trial']
[u'horan', u'join', u'wallabi', u'select', u'team']
[u'hostag', u'team', u'leav', u'middl', u'east']
[u'howard', u'deni', u'health', u'polici', u'vote']
[u'howard', u'urg', u'older', u'australian', u'work']
[u'vote', u'card', u'spark', u'confus']
[u'icac', u'prepar', u'carr', u'contempt', u'rule']
[u'illawarra', u'group', u'welcom', u'jam', u'hardi', u'report']
[u'independ', u'school', u'fear', u'mediocr']
[u'indian', u'cricket', u'deal', u'fall']
[u'indian', u'cricket', u'right', u'deal', u'fall']
[u'india', u'final', u'frontier', u'australia', u'langer']
[u'indigen', u'communiti', u'burn']
[u'indonesian', u'presidenti', u'hope', u'plan', u'peac', u'aceh']
[u'injur', u'tendulkar', u'miss', u'australian', u'seri']
[u'internet', u'messag', u'renew', u'hostag', u'threat']
[u'iraqi', u'hand', u'bodi', u'embassi']
[u'irrig', u'say', u'murray', u'health', u'improv']
[u'jam', u'hardi', u'asbesto', u'report', u'bring', u'mix', u'feel']
[u'japan', u'push', u'perman', u'secur', u'council']
[u'jockey', u'club', u'face', u'racecours', u'sale', u'critic']
[u'jordanian', u'hostag', u'releas', u'iraq']
[u'kean', u'charg', u'assault']
[u'kidnap', u'babi', u'father', u'refus', u'bail']
[u'knowl', u'take', u'whistleblow', u'claim', u'serious']
[u'labor', u'offer', u'hospit', u'cancer', u'centr']
[u'latham', u'promis', u'hospit']
[u'liber', u'return', u'hardi', u'donat']
[u'lion', u'port', u'final', u'prepar']
[u'lion', u'power', u'complet', u'home', u'prepar']
[u'lion', u'readi', u'histori']
[u'local', u'solut', u'urg', u'creat', u'reconcili']
[u'extradit', u'face', u'theft', u'charg']
[u'market', u'welcom', u'rate', u'increas']
[u'mayor', u'reject', u'council', u'complaint', u'list']
[u'mayor', u'unhappi', u'complaint', u'rank']
[u'mcdonald', u'move', u'kangaroo']
[u'mcrae', u'plan', u'council', u'return']
[u'partner', u'face', u'parliamentari', u'committe']
[u'minist', u'tell', u'justic', u'centr', u'assault']
[u'minist', u'unhappi', u'state', u'senior']
[u'moder', u'locust', u'outbreak', u'predict']
[u'modra', u'continu', u'athen', u'charg']
[u'modra', u'continu', u'paralymp', u'charg']
[u'morrocan', u'prepar', u'huge', u'challeng']
[u'motorcyclist', u'die', u'highway', u'crash']
[u'reject', u'claim', u'super', u'school', u'snub']
[u'nation', u'accus', u'intent', u'bribe']
[u'estat', u'law']
[u'look', u'capit', u'readi', u'wnbl', u'season']
[u'pilot', u'train', u'cours']
[u'nickel', u'produc', u'share', u'price', u'take']
[u'experi', u'better', u'costello']
[u'forest', u'polici', u'prefer', u'brown']
[u'opposit', u'enter', u'wrangl']
[u'parmalat', u'eye', u'stock', u'exchang', u'list']
[u'parti', u'pressur', u'return', u'hardi', u'donat']
[u'penguin', u'kill', u'leav', u'resid', u'fear']
[u'penguin', u'murder', u'investig', u'continu']
[u'phelp', u'go', u'gold', u'shortcours', u'champ']
[u'philippin', u'deleg', u'consid', u'council', u'valuat']
[u'pilot', u'blame', u'canberra', u'scare', u'bureau']
[u'ask', u'immigr', u'centr', u'open']
[u'polic', u'fear', u'jakarta', u'bomber', u'capabl', u'strike']
[u'polic', u'hunt', u'serial', u'offend']
[u'polic', u'minist', u'crack', u'privat']
[u'polic', u'focus', u'alcohol', u'relat', u'crime']
[u'polic', u'recov', u'bodi', u'miss', u'woman']
[u'polic', u'hold', u'inaugur', u'confer', u'centr', u'function']
[u'pont', u'back', u'england', u'champion', u'trophi']
[u'premier', u'defer', u'report', u'energex', u'chief', u'death']
[u'public', u'welcom', u'greater', u'polic', u'presenc']
[u'qanta', u'confirm', u'canberra', u'incid']
[u'rail', u'line', u'report', u'public']
[u'rann', u'back', u'hardi', u'boycott']
[u'rescuer', u'train', u'possibl']
[u'retail', u'oppos', u'market', u'power', u'limit']
[u'ridgeway', u'moot', u'hanson', u'hold', u'balanc', u'power']
[u'rivkin', u'complet', u'jail', u'term', u'block']
[u'roof', u'collaps', u'newcastl', u'student']
[u'erupt', u'paralymp', u'final']
[u'russia', u'consid', u'terror', u'law']
[u'jockey', u'club', u'face', u'racecours', u'sale', u'critic']
[u'scienc', u'minist', u'catch', u'graze', u'licenc']
[u'level', u'rise', u'glacier', u'escap', u'shelv']
[u'trial', u'threaten', u'pitcairn', u'island']
[u'shadow', u'accus', u'inappropri', u'behaviour']
[u'shire', u'seek', u'retain', u'ward', u'structur']
[u'short', u'cours', u'champ', u'showcas', u'olymp', u'medallist']
[u'sierra', u'leon', u'deni', u'bail', u'aust', u'policeman']
[u'skydiv', u'death', u'investig']
[u'speed', u'lead', u'polic', u'cannabi', u'haul']
[u'spread', u'grass', u'rais', u'fear', u'crossbre']
[u'student', u'rescu', u'mountain', u'fall']
[u'support', u'show', u'homeless', u'youth', u'scheme']
[u'taiwanes', u'urg', u'arm']
[u'tasmanian', u'smoke', u'australian']
[u'teenag', u'tri', u'adult', u'road', u'death']
[u'thiess', u'govt', u'talk', u'port', u'delay']
[u'tiger', u'withdraw', u'event', u'ryder', u'flop']
[u'timber', u'crucial', u'prosper', u'tasmania', u'lennon']
[u'tourism', u'campaign', u'grampian', u'spotlight']
[u'tourism', u'chief', u'upbeat', u'futur']
[u'travolta', u'autobiographi']
[u'tszyu', u'line', u'titl', u'showdown']
[u'road', u'crash']
[u'uefa', u'come', u'hard', u'roma']
[u'union', u'expect', u'jam', u'hardi', u'compo', u'talk']
[u'upgrad', u'plan', u'dead', u'intersect']
[u'free', u'afghan', u'guantanamo', u'detaine']
[u'launch', u'sadr', u'citi', u'strike']
[u'releas', u'iraq', u'germ']
[u'take', u'tobacco', u'industri']
[u'doctor', u'move', u'interst']
[u'vogel', u'put', u'debut', u'novelist', u'road', u'success']
[u'warm', u'weather', u'put', u'crop', u'doubt']
[u'warship', u'incid', u'prompt', u'explain', u'east']
[u'weed', u'effort', u'earn', u'region', u'award']
[u'wentworth', u'voter', u'turn', u'liber', u'poll']
[u'wild', u'histor', u'trial', u'stag', u'sydney']
[u'winton', u'host', u'supercar']
[u'work', u'group', u'consid', u'tram', u'option']
[u'xerox', u'worker', u'strike', u'satellit', u'track']
[u'zarqawi', u'cleric', u'alli', u'kill', u'strike', u'famili']
[u'choic', u'voter']
[u'accommod', u'respit', u'cancer', u'patient']
[u'aerial', u'check', u'spot', u'locust']
[u'candid', u'back', u'wife', u'bali', u'claim']
[u'candid', u'defend', u'miss', u'court']
[u'right', u'accus', u'polici', u'dodgi', u'howard']
[u'ambul', u'wait', u'put', u'live', u'risk', u'opposit']
[u'anderson', u'virgin', u'secur', u'comment', u'anger', u'union']
[u'apolog', u'seek', u'parliament', u'grope']
[u'appoint', u'eas', u'coast', u'health', u'crisi']
[u'arson', u'squad', u'investig', u'fatal']
[u'arthur', u'get', u'moroccan', u'clash']
[u'atsic', u'leader', u'welcom', u'land', u'return']
[u'australian', u'hous', u'boom', u'perplex']
[u'balanc', u'need', u'risk', u'children', u'care', u'depart']
[u'bankwest', u'offer', u'farmer', u'frost', u'pledg']
[u'beatti', u'call', u'airport', u'secur', u'upgrad']
[u'bendigo', u'power', u'outag', u'plan']
[u'bevan', u'prepar', u'challeng', u'tasmania']
[u'blackburn', u'exit', u'leagu', u'everton', u'enjoy', u'lucki']
[u'blackmail', u'investig', u'lead', u'drug']
[u'blaze', u'rip', u'takeaway', u'shop']
[u'blood', u'dope', u'test', u'develop', u'sydney', u'research']
[u'boat', u'ramp', u'upgrad', u'make', u'wet', u'line', u'easier']
[u'brazil', u'crash', u'kill', u'children']
[u'britney', u'spear', u'fake', u'wed', u'report']
[u'break', u'hill', u'commerc', u'websit']
[u'bulldog', u'anasta', u'strong', u'chanc']
[u'bushfir', u'destroy', u'kimberley', u'pastur']
[u'businessman', u'await', u'drug', u'sentenc']
[u'button', u'contract', u'decis', u'delay']
[u'byron', u'council', u'save', u'biodivers']
[u'elect', u'spotlight', u'glow', u'rural', u'age']
[u'caloundra', u'firm', u'look', u'strong', u'christma', u'sale']
[u'bomb', u'kill', u'soldier']
[u'carr', u'reiter', u'support', u'icac']
[u'steven', u'deport', u'amid', u'terror', u'fear']
[u'fin', u'jackson', u'wardrob', u'malfunct']
[u'central', u'australia', u'come', u'map', u'microscop']
[u'ceremoni', u'welcom', u'magistr']
[u'cheaper', u'rail', u'prospect', u'excit', u'train', u'group']
[u'cirqu', u'soleil', u'unveil', u'record', u'label']
[u'coalit', u'pledg', u'machin', u'mackay']
[u'protest', u'land', u'transfer']
[u'costello', u'stake', u'credibl', u'cost']
[u'council', u'consid', u'har', u'race', u'compo']
[u'council', u'consult', u'grave', u'structur']
[u'council', u'decid', u'trade', u'hour']
[u'councillor', u'push', u'high', u'school', u'defens', u'drive']
[u'coupl', u'guilti', u'defraud', u'medicar']
[u'court', u'delay', u'sentenc', u'fraud', u'case']
[u'cowboy', u'fan', u'prepar', u'send']
[u'crean', u'slap', u'costello', u'incompet', u'analysi']
[u'czech', u'give', u'beer', u'return', u'blood', u'donat']
[u'develop', u'board', u'work', u'manag']
[u'diseas', u'expert', u'converg', u'darwin']
[u'diseas', u'fear', u'haiti', u'death', u'toll', u'rise']
[u'aid', u'arm', u'robberi', u'investig']
[u'doctor', u'concern', u'hear', u'medicar', u'pledg']
[u'doctor', u'train', u'squeez', u'worri', u'govt']
[u'downer', u'scoff', u'separatist', u'invit']
[u'drug', u'cheat', u'repay', u'educ', u'cost']
[u'drug', u'run', u'suspect', u'arrest', u'bali']
[u'environ', u'group', u'wider']
[u'eriksson', u'rule', u'real', u'run']
[u'explos', u'devic', u'virgin', u'plane']
[u'policeman', u'guilti', u'child', u'porn', u'charg']
[u'psychiatrist', u'guilti', u'health', u'chief', u'murder']
[u'farmer', u'tell', u'expect', u'grain', u'merger', u'chang']
[u'farm', u'group', u'back', u'airport']
[u'fatal', u'melbourn', u'suspici']
[u'fear', u'air', u'cape', u'york', u'plan']
[u'fertil', u'drug', u'blame', u'record', u'multipl', u'birth']
[u'fisheri', u'group', u'stand', u'ghost', u'ship', u'decis']
[u'fisher', u'fight', u'retain', u'foreshor', u'access']
[u'footi', u'fan', u'flock', u'melbourn']
[u'franci', u'sprint', u'paralymp', u'silver']
[u'french', u'hostag', u'free']
[u'fund', u'forc', u'theophan', u'forego', u'lawyer']
[u'gallop', u'shout']
[u'gaza', u'withdraw', u'start']
[u'govt', u'refus', u'tackl', u'greenhous', u'issu', u'dunda']
[u'govt', u'urg', u'adopt', u'differ', u'chemic', u'compo', u'model']
[u'govt', u'urg', u'speed', u'bridg', u'work']
[u'greek', u'sprinter', u'order', u'face', u'prosecutor']
[u'green', u'swap', u'prefer', u'kalgoorli']
[u'green', u'democrat', u'clash', u'jam', u'hardi', u'donat']
[u'green', u'push', u'better', u'pension', u'deal']
[u'haiti', u'prepar', u'mass', u'grave', u'flood', u'victim']
[u'hawk', u'picioan']
[u'hill', u'promis', u'base', u'upgrad']
[u'hodg', u'call', u'pont', u'return', u'home']
[u'home', u'start', u'australian', u'super', u'team']
[u'hotlin', u'offer', u'prostat', u'cancer', u'help']
[u'howard', u'deni', u'cancel', u'tasmania', u'trip']
[u'howard', u'liber', u'pile', u'run']
[u'import', u'worker', u'short', u'term', u'solut']
[u'indian', u'cricket', u'chief', u'hunt', u'channel']
[u'inquest', u'open', u'truck', u'driver', u'death']
[u'iraqi', u'refus', u'hostag', u'taker', u'demand']
[u'italian', u'hostag', u'kill', u'claim', u'iraqi', u'milit']
[u'itali', u'anguish', u'fate', u'worker', u'iraq']
[u'japan', u'fear', u'north', u'korea', u'missil', u'test']
[u'jazz', u'famili', u'patriarch', u'marsali', u'die']
[u'judg', u'appeal', u'assault', u'sentenc']
[u'judg', u'inspect', u'dead', u'cliff', u'collaps', u'site']
[u'judg', u'uncov', u'pinochet', u'dump']
[u'labor', u'address', u'alic', u'bulk', u'bill', u'shortag']
[u'landhold', u'urg', u'bushfir', u'readi']
[u'latham', u'challeng', u'costello', u'debat']
[u'latham', u'stand', u'bali', u'claim', u'candid']
[u'lawyer', u'gap', u'worker', u'privaci']
[u'leaflet', u'drop', u'hunt', u'embassi', u'bomber']
[u'liber', u'target', u'disabl', u'servic', u'fund']
[u'lifelin', u'announc', u'volunt', u'coastal', u'patrol']
[u'limber', u'citi', u'rule', u'allow', u'nake', u'yoga']
[u'smoke', u'lung', u'damag', u'link', u'scrutini']
[u'lynch', u'focus', u'final']
[u'mari', u'kathleen', u'lodg', u'sell']
[u'medium', u'skill', u'dissip', u'scrutini']
[u'megawati', u'apologis', u'reign', u'shortcom']
[u'michelangelo', u'final', u'fresco', u'facelift']
[u'minist', u'hear', u'case', u'riverina', u'murray', u'health']
[u'minist', u'unlik', u'overrid', u'artefact', u'decis']
[u'miramax', u'financ', u'moor', u'film', u'report']
[u'miss', u'tourist', u'surviv', u'diet', u'wild', u'berri']
[u'morphin', u'free', u'poppi', u'hold', u'pain', u'killer']
[u'mysteri', u'benalla', u'train', u'derail']
[u'nepales', u'buddhist', u'seek', u'hollywood', u'film']
[u'drive', u'fin', u'enforc', u'year']
[u'news', u'corp', u'price', u'depress', u'market']
[u'water', u'ban', u'start']
[u'support', u'global', u'hardi']
[u'consid', u'jam', u'hardi', u'boycott']
[u'nurs', u'assault', u'spark', u'hospit', u'secur', u'review']
[u'open', u'sanction', u'european', u'tour']
[u'iraq', u'troop', u'return', u'home']
[u'oliv', u'plant', u'offer', u'benefit']
[u'opposit', u'fight', u'hospit', u'surgeri']
[u'paedophil', u'law', u'dont', u'liber']
[u'papua', u'guinean', u'accus', u'assault']
[u'paralympian', u'powerlift', u'hand', u'life', u'ban']
[u'phone', u'survey', u'council', u'plan']
[u'criticis', u'latham', u'union', u'pledg']
[u'outrag', u'candid', u'bali', u'claim']
[u'polic', u'defend', u'hoon', u'crackdown', u'effort']
[u'polic', u'hold', u'threat', u'call']
[u'policeman', u'face', u'disciplin', u'racist', u'email']
[u'polic', u'probe', u'grampian', u'bone', u'mysteri']
[u'polic', u'search', u'dickson', u'abductor']
[u'polic', u'seek', u'penguin', u'murder', u'probe']
[u'polic', u'probe', u'chopper', u'rescu']
[u'polic', u'zero', u'alcohol', u'relat', u'crime']
[u'polici', u'fail', u'consid', u'high', u'cost', u'school']
[u'politician', u'visit', u'blame', u'aborigin', u'riot']
[u'pont', u'test']
[u'power', u'lion', u'grand', u'final', u'line']
[u'privat', u'drift', u'threaten', u'public', u'school', u'studi']
[u'probe', u'launch', u'benalla', u'derail']
[u'prototyp', u'vaccin', u'target', u'livestock', u'greenhous']
[u'psych', u'report', u'seek', u'death', u'threat', u'case']
[u'public', u'fund', u'seek', u'discoveri', u'centr']
[u'rann', u'beatti', u'flag', u'challeng']
[u'reluct', u'cardena', u'reward', u'stage']
[u'report', u'highlight', u'domest', u'tourism', u'spend']
[u'rescu', u'chopper', u'flight']
[u'rescu', u'oper', u'return', u'sink', u'boat']
[u'research', u'fear', u'hide', u'drug', u'death', u'toll']
[u'termin', u'disput', u'refer', u'accc']
[u'open', u'unit', u'golden', u'say', u'kean']
[u'rise', u'price', u'unnerv', u'market']
[u'roadwork', u'make', u'path', u'hotel', u'easier']
[u'rooster', u'cautious', u'cowboy', u'form']
[u'rooster', u'cautious', u'cowboy']
[u'rooster', u'wari', u'confid', u'cowboy']
[u'listen', u'resid', u'flood', u'fear']
[u'rugbi', u'minnow', u'japan', u'bid', u'world']
[u'african', u'aid', u'rate', u'stabilis', u'report']
[u'sailor', u'grant', u'right', u'melbourn']
[u'sanfl', u'poki', u'exempt']
[u'sauvag', u'settl', u'silver']
[u'scent', u'sensit', u'mobil', u'phone', u'detect', u'breath']
[u'search', u'continu', u'mountain', u'tourist']
[u'secur', u'guard', u'attack', u'catch', u'tape']
[u'secur', u'prioriti', u'south', u'korea', u'deploy', u'iraq']
[u'serviceman', u'stand', u'trial', u'darfur', u'right', u'abus']
[u'silver', u'sauvag', u'australia', u'climb', u'medal', u'talli']
[u'sniffer', u'rat', u'seek', u'quak', u'survivor']
[u'specialist', u'shortag', u'breast', u'screen', u'closur']
[u'stroke', u'delay', u'rogerson', u'sentenc']
[u'strong', u'dollar', u'boost', u'colorado', u'profit']
[u'strong', u'expect', u'stuttl', u'murder', u'trial']
[u'strong', u'show', u'swan', u'hill', u'work', u'scheme']
[u'sudan', u'say', u'plan', u'disarm', u'arab', u'tribe']
[u'syrian', u'withdraw', u'troop', u'lebanon']
[u'tag', u'law', u'vote', u'appal', u'govt']
[u'tasmanian', u'ferri', u'record', u'passeng', u'drop']
[u'team', u'suspend', u'olymp', u'champion', u'hamilton']
[u'teenag', u'charg', u'petrol', u'station', u'murder']
[u'teenag', u'charg', u'stab', u'death']
[u'telstra', u'question', u'extend', u'phone', u'coverag', u'viabil']
[u'timor', u'deal', u'christma']
[u'leav', u'pilbara']
[u'tripl', u'transplant', u'recipi', u'attack', u'sorri']
[u'dead', u'miss', u'china', u'boat', u'accid']
[u'gunnedah', u'road', u'crash']
[u'gunmen', u'soldier', u'kill', u'settlement']
[u'unassail', u'schumach', u'plan', u'race']
[u'union', u'school', u'cleaner', u'contract']
[u'union', u'govt', u'dump', u'hardi', u'share']
[u'union', u'welcom', u'school', u'clean', u'agreement']
[u'union', u'virgin', u'discuss', u'safeti', u'concern']
[u'predict', u'flood', u'affect', u'build', u'woe']
[u'unmark', u'polic', u'car', u'catch', u'speedster']
[u'regul', u'investig', u'jam', u'hardi']
[u'releas', u'guantanamo', u'prison']
[u'senat', u'confirm', u'head']
[u'send', u'terror', u'suspect', u'saudi', u'arabia']
[u'veteran', u'accus', u'labor', u'senat', u'abus']
[u'rock', u'climber', u'kill', u'accid']
[u'victorian', u'region', u'invest', u'skyrocket']
[u'virgin', u'claim', u'airport', u'secur', u'breach']
[u'virgin', u'prank', u'renew', u'airport', u'secur', u'fear']
[u'voter', u'miss', u'latham', u'way']
[u'word', u'continu', u'cattl', u'graze']
[u'warwick', u'lose', u'chees', u'factori']
[u'william', u'wont', u'rule', u'chang']
[u'windi', u'reach', u'champion', u'trophi', u'final']
[u'wine', u'open', u'door', u'boutiqu', u'wine', u'produc']
[u'woman', u'escap', u'polic', u'medic', u'exam']
[u'worker', u'escap', u'tonn', u'slab', u'collaps']
[u'work', u'underway', u'underwat', u'observatori']
[u'yass', u'council', u'warn', u'state', u'hospit', u'debat']
[u'year', u'leav', u'iron', u'mine']
[u'youth', u'coerc', u'adelaid', u'raid', u'polic']
[u'youth', u'see', u'prescript', u'pharmacist', u'shortag']
[u'youth', u'benefit', u'whitten', u'oval', u'redevelop']
[u'yudhoyono', u'make', u'sulawesi']
[u'zeehan', u'plead', u'guilti', u'murder', u'charg']
[u'abus', u'senat', u'apologis', u'veteran']
[u'accc', u'warn', u'busi', u'illeg', u'onlin', u'trade']
[u'accc', u'warn', u'onlin', u'firm', u'warranti', u'rort']
[u'forc', u'crash', u'inquiri', u'continu']
[u'alic', u'host', u'parliament']
[u'alleg', u'drink', u'driver', u'set', u'record']
[u'allenbi', u'second', u'pennsylvania']
[u'brand', u'apprentic', u'scheme', u'littl', u'late']
[u'plan', u'increas', u'preschool', u'hour']
[u'lodg', u'complaint', u'labor']
[u'anderson', u'upbeat', u'nation', u'prospect']
[u'anti', u'terror', u'delay', u'labor']
[u'review', u'focus', u'research', u'enrol']
[u'arthur', u'win', u'open', u'rubber', u'morocco']
[u'aussi', u'skier', u'sprint']
[u'australian', u'arrest', u'bali', u'drug', u'bust']
[u'australian', u'cricket', u'boss', u'review', u'kenyan']
[u'australia', u'posit', u'buck', u'indian', u'trend']
[u'aviat', u'worri', u'aerodrom', u'futur']
[u'baffl', u'creek', u'blaze', u'threaten', u'hous']
[u'ballarat', u'olympian', u'unlik', u'compet', u'beij']
[u'drop', u'pogo', u'pope', u'seri', u'complaint']
[u'beatti', u'dismiss', u'energex', u'whistleblow', u'claim']
[u'beatti', u'stand', u'molloy']
[u'behead', u'broadcast', u'draw', u'viewer']
[u'bird', u'leav', u'thousand', u'dark']
[u'bishop', u'say', u'femal', u'clergi', u'issu', u'need', u'nation', u'vote']
[u'bold', u'labor', u'erad', u'youth', u'unemploy']
[u'bridg', u'plan', u'chang', u'threaten', u'tree', u'resid']
[u'british', u'hostag', u'mother', u'plead', u'son', u'releas']
[u'british', u'polic', u'hunt', u'scottish', u'palac', u'intrud']
[u'brown', u'doubt', u'decid']
[u'brownlow', u'dress', u'sale']
[u'bush', u'stay', u'cours', u'iraq']
[u'butt', u'hand', u'match', u'euro']
[u'review', u'health', u'servic', u'chang']
[u'school', u'educ', u'includ', u'indigen']
[u'cancer', u'polici', u'close', u'heart']
[u'steven', u'philosoph', u'ridicul']
[u'catwoman', u'claw', u'villag', u'roadshow', u'profit']
[u'chechen', u'rebel', u'leader', u'vow', u'warlord', u'trial']
[u'china', u'execut', u'head', u'babi', u'traffic', u'ring']
[u'class', u'action', u'tobacco', u'firm', u'throw']
[u'coalit', u'offer', u'rural', u'voter', u'boost']
[u'coalit', u'plan', u'boost', u'apprenticeship']
[u'coalit', u'region', u'project', u'boost', u'busi']
[u'colgat', u'palmol', u'recal', u'dental', u'product']
[u'communiti', u'mourn', u'truck', u'crash', u'victim']
[u'coron', u'encourag', u'babi', u'death', u'inquiri']
[u'cosmic', u'stormi', u'weather', u'clear', u'scientist']
[u'cotton', u'grind', u'job', u'land']
[u'council', u'green', u'light', u'sport', u'master', u'plan']
[u'councillor', u'say', u'toll', u'park', u'road']
[u'councillor', u'suspend', u'pecuniari']
[u'council', u'boost', u'residenti', u'land', u'avail']
[u'court', u'consid', u'carlton', u'petit', u'valid']
[u'cowboy', u'earn', u'rooster', u'respect']
[u'cricket', u'depart', u'punter', u'arriv', u'home']
[u'crime', u'victim', u'appli', u'regist', u'inclus']
[u'dog', u'smell', u'cancer', u'patient']
[u'dole', u'recipi', u'number', u'year', u'govt']
[u'dollar', u'climb', u'price', u'creep', u'record']
[u'doubl', u'murder', u'prompt', u'polic', u'extend', u'hour']
[u'downer', u'expect', u'portfolio']
[u'drink', u'drive', u'law', u'return', u'parliament']
[u'bush', u'track', u'survivor', u'muster']
[u'boss', u'question', u'futur', u'jordan', u'minardi']
[u'fifth', u'embassi', u'bomb', u'suspect', u'arrest']
[u'fiji', u'coup', u'leader', u'apologis', u'detaine']
[u'footi', u'fan', u'grand', u'final', u'pilgrimag']
[u'footi', u'fever', u'final', u'hit', u'melbourn']
[u'anti', u'drug', u'campaign', u'escap', u'jail', u'term']
[u'frost', u'damag', u'spark', u'crop', u'insur']
[u'gascoyn', u'murchison', u'strategi', u'near']
[u'globetrott', u'challeng', u'olymp', u'hoop', u'champ']
[u'golden', u'time', u'paralympian', u'thrupp']
[u'golf', u'club', u'strip', u'clubhous', u'manag']
[u'good', u'behaviour', u'bond', u'defraud']
[u'green', u'reject', u'cost', u'claim', u'greenhous', u'plan']
[u'green', u'grow', u'organ', u'farm', u'profil']
[u'grenfel', u'medic', u'centr', u'wait', u'room']
[u'grey', u'thompson', u'take', u'paralymp', u'gold']
[u'haitian', u'death', u'toll', u'jeann', u'pass']
[u'hamilton', u'olymp', u'gold']
[u'harass', u'deni', u'passport', u'seizur']
[u'hewitt', u'claim', u'record', u'aussi', u'lead']
[u'hewitt', u'eye', u'davi', u'histori']
[u'surgeri', u'sidelin', u'kuerten']
[u'hobart', u'waterfront', u'trader', u'develop', u'concern']
[u'hous', u'estat', u'get', u'heritag']
[u'howard', u'attack', u'labor', u'secret', u'agenda']
[u'scheme', u'spark', u'fear', u'festiv', u'look', u'sheep']
[u'indonesia', u'hold', u'australian', u'mine', u'execut']
[u'inquiri', u'chief', u'critic', u'closur']
[u'invest', u'outlook', u'good', u'south', u'west']
[u'iraqi', u'milit', u'kidnap', u'egyptian']
[u'iraqi', u'receiv', u'invit', u'australia']
[u'iraq', u'mortar', u'explos', u'wind']
[u'ireland', u'advis', u'stick', u'burger', u'wrapper']
[u'irish', u'singer', u'plead', u'privaci', u'newspap']
[u'israel', u'claim', u'iran', u'terror', u'sourc']
[u'isra', u'kill', u'gaza', u'mortar', u'attack', u'armi']
[u'japanes', u'nurs', u'get', u'death', u'sentenc']
[u'link', u'grind', u'sydney']
[u'kangaroo', u'ferri', u'take', u'water']
[u'kean', u'court', u'assault', u'charg']
[u'fire', u'lead', u'california', u'lpga', u'tournament']
[u'king', u'island', u'fuel', u'price', u'climb']
[u'kojonup', u'shire', u'vote', u'councillor']
[u'kyneton', u'develop', u'plan', u'wind']
[u'labor', u'challeng', u'howard', u'school', u'claim']
[u'lara', u'play', u'champion', u'final']
[u'latham', u'accus', u'coalit', u'school', u'privatis']
[u'latham', u'hop', u'kick', u'win', u'goal', u'labor']
[u'latham', u'threaten', u'jam', u'hardi', u'boycott']
[u'liber', u'nation', u'famili', u'prefer']
[u'lion', u'sweat', u'brown', u'mcrae']
[u'long', u'term', u'health', u'reli', u'earli', u'start', u'allianc']
[u'mackay', u'group', u'unfaz', u'rocki', u'mine', u'push']
[u'manchest', u'citi', u'brace', u'arsenal', u'visit']
[u'face', u'court', u'fatal', u'park', u'crash']
[u'face', u'tourist', u'murder', u'trial']
[u'meet', u'focus', u'kimberley', u'bushfir']
[u'melbourn', u'reclaim', u'fountain']
[u'miner', u'want', u'govern', u'roadwork']
[u'mine', u'legisl', u'attack']
[u'minist', u'argu', u'rail', u'line', u'remov']
[u'minist', u'disput', u'detent', u'centr', u'claim']
[u'mislead', u'good', u'guy', u'water']
[u'mission', u'extend', u'mar', u'robot']
[u'mountain', u'mishap', u'spark', u'search', u'cost', u'debat']
[u'school', u'fee', u'comment', u'misrepres']
[u'speak', u'polic', u'briberi', u'claim']
[u'beauti', u'skier', u'sprint', u'world', u'record']
[u'bear', u'paralympian', u'win', u'swim', u'bronz']
[u'nation', u'trust', u'presid', u'pleas', u'talk']
[u'grain', u'compani', u'debut']
[u'korea', u'missil', u'test', u'immin']
[u'bail', u'alleg', u'drug', u'import']
[u'ninth', u'area', u'health', u'servic', u'plan']
[u'north', u'west', u'medic', u'specialist']
[u'norwegian', u'artwork', u'prompt', u'isra', u'envoy', u'protest']
[u'advis', u'consid', u'sydney', u'water', u'recycl']
[u'fund', u'improv', u'harbour', u'access']
[u'administr', u'call', u'better', u'health', u'program']
[u'nurs', u'home', u'upgrad', u'get']
[u'offici', u'sidelin', u'prostitut', u'soccer', u'squad']
[u'oshan', u'stand', u'asid', u'charg', u'hear']
[u'otten', u'walk', u'tiger']
[u'paralympian', u'grab', u'gold']
[u'pascual', u'rodriguez', u'win', u'stage']
[u'penniless', u'disappoint', u'newcastl', u'stadium']
[u'perpetu', u'cut', u'fidel', u'tie']
[u'perth', u'boast', u'cheapest', u'hous', u'price']
[u'promis', u'citi', u'wide', u'high', u'speed', u'internet']
[u'polic', u'campaign', u'stop', u'underag', u'drink']
[u'polic', u'prepar', u'footi', u'influx']
[u'polic', u'target', u'airport', u'worker', u'secur', u'scare']
[u'polic', u'threaten', u'redfern', u'inquiri', u'offic']
[u'politician', u'warn', u'forest', u'debat']
[u'portug', u'consid', u'extend', u'iraq', u'mission']
[u'public', u'school', u'fee', u'polici']
[u'public', u'urg', u'fluorid']
[u'rail', u'servic', u'track', u'soon']
[u'rann', u'prais', u'asbesto', u'hotlin', u'propos']
[u'rebel', u'pledg', u'sieg', u'warlord']
[u'research', u'station', u'protest', u'hear']
[u'resid', u'closur']
[u'resid', u'vote', u'fluorid']
[u'revel', u'rais', u'stradbrok', u'crime', u'rate']
[u'chief', u'issu', u'burn', u'off', u'warn']
[u'richmond', u'see', u'elect']
[u'rise', u'price', u'spark', u'stock', u'sell']
[u'saff', u'upbeat', u'nation', u'competit', u'polici', u'talk']
[u'salt', u'leach', u'fear', u'air']
[u'salvadoran', u'jail', u'gang', u'hostag']
[u'scheme', u'help', u'beef', u'produc', u'profit']
[u'school', u'reviv', u'indigen', u'languag']
[u'seagrass', u'confer', u'focus', u'conserv']
[u'search', u'continu', u'miss', u'swimmer']
[u'world', u'keeper', u'meet', u'polar', u'bear', u'star']
[u'secur', u'guard', u'attack', u'identifi']
[u'shire', u'fend', u'elect', u'interfer', u'claim']
[u'sierra', u'leon', u'trial', u'begin', u'australian', u'policeman']
[u'small', u'chanc', u'upset', u'bennelong']
[u'spear', u'hit', u'fake', u'wed', u'claim']
[u'specialist', u'join', u'hospit', u'neonat', u'unit']
[u'state', u'agreement', u'act', u'microscop']
[u'strong', u'alic', u'elect', u'forum']
[u'survey', u'say', u'open', u'mall', u'slow', u'traffic']
[u'suspect', u'support', u'appeal', u'passport']
[u'suspend', u'sentenc', u'fish', u'fraca']
[u'inmat', u'number', u'rise']
[u'tasmania', u'claim', u'australia', u'largest', u'wind', u'farm']
[u'teen', u'homemad', u'firecrack', u'spark', u'virgin', u'scare']
[u'thousand', u'cheer', u'power', u'lion', u'grand', u'final']
[u'nurs', u'home', u'virus', u'outbreak']
[u'peak', u'champion', u'die']
[u'futur', u'uncertain']
[u'toddler', u'kill', u'sydney', u'hous']
[u'townsvill', u'prepar', u'farewel', u'cowboy']
[u'tuna', u'plan', u'spark', u'mix', u'respons']
[u'arrest', u'bali', u'drug', u'bust']
[u'iraq', u'stand', u'firm', u'kidnapp', u'demand']
[u'union', u'back', u'labor', u'educ', u'polici']
[u'union', u'say', u'worker', u'shortag', u'affect', u'defenc']
[u'union', u'enter', u'rescu', u'chopper']
[u'nuclear', u'inspector', u'head', u'brazil']
[u'offici', u'urg', u'sudan', u'grant', u'autonomi', u'darfur']
[u'strike', u'iraqi', u'rebel', u'town', u'fallujah', u'resid']
[u'record', u'tourist', u'boom']
[u'walker', u'quit', u'posit', u'drug', u'test']
[u'weak', u'blue', u'chip', u'drag', u'market']
[u'succeed', u'iraq', u'tell', u'congress']
[u'lift', u'panther', u'say', u'price']
[u'whoop', u'cough', u'outbreak', u'spark', u'concern']
[u'winemak', u'garrett', u'declar', u'bankrupt']
[u'winter', u'go', u'gold']
[u'wolfenden', u'lap', u'gold']
[u'woman', u'avoid', u'jail', u'pension', u'fraud']
[u'woman', u'give', u'birth', u'ovarian', u'tissu', u'transplant']
[u'youth', u'enjoy', u'sport', u'exchang']
[u'grand', u'final', u'underway']
[u'worker', u'warn', u'diseas', u'follow', u'storm']
[u'allawi', u'seek', u'help', u'defeat', u'forc', u'terror']
[u'produc', u'report', u'card', u'health', u'polici']
[u'anasta', u'return', u'boost', u'bulldog']
[u'anti', u'smoke', u'coalit', u'call', u'feder', u'money']
[u'armitag', u'face', u'hostil', u'question', u'iraq', u'elect']
[u'aurora', u'complet', u'transmiss', u'line']
[u'aussi', u'cricket', u'arriv', u'india']
[u'aussi', u'cyclist', u'lose', u'french', u'race', u'prankster']
[u'aussi', u'clean', u'sweep', u'morocco']
[u'australia', u'davi', u'kill']
[u'australia', u'athen', u'sullivan', u'eye']
[u'barrichello', u'take', u'pole', u'schumach', u'spin']
[u'billionair', u'play', u'catch', u'gate']
[u'birmingham', u'citi', u'manag', u'attack', u'street']
[u'brisban', u'face', u'drug', u'charg', u'bali']
[u'british', u'envoy', u'head', u'baghdad']
[u'british', u'govt', u'sceptic', u'websit', u'claim']
[u'bulldog', u'book', u'grand', u'final', u'berth']
[u'california', u'get', u'tough', u'emiss']
[u'campaign', u'forestri', u'log']
[u'canberra', u'futur', u'water', u'suppli', u'scrutini']
[u'cath', u'cautious', u'welcom', u'educ', u'packag']
[u'child', u'pornograph', u'get', u'year']
[u'coalit', u'region', u'plan', u'describ', u'pork']
[u'concern', u'rais', u'effect', u'alcohol', u'unborn']
[u'dinosaur', u'long', u'neck', u'reason', u'expert']
[u'doctor', u'push', u'larg', u'scale', u'hospit', u'improv']
[u'downer', u'unfit', u'offic', u'latham', u'say']
[u'edmiston', u'equal', u'breast', u'stroke']
[u'energex', u'chairman', u'defend', u'ceo', u'integr']
[u'environment', u'group', u'appeal', u'gungahlin', u'drive']
[u'envi', u'power', u'port', u'william']
[u'famili', u'devast', u'sydney', u'unit']
[u'fear', u'bird', u'transmit']
[u'final', u'ticket', u'avail']
[u'financ', u'compani', u'guilti', u'breach', u'credit']
[u'firecrack', u'incid', u'spark', u'airport', u'secur']
[u'florida', u'brace', u'hurrican']
[u'french', u'bohemian', u'writer', u'francois', u'sagan', u'die']
[u'govt', u'accus', u'promot', u'user', u'pay', u'educ']
[u'govt', u'announc', u'boost', u'biotechnolog', u'precinct']
[u'grand', u'final', u'countdown', u'underway']
[u'half', u'million', u'urg', u'leav', u'home', u'ahead']
[u'human', u'bone', u'perth']
[u'india', u'pakistan', u'leader', u'seek', u'kashmir', u'settlement']
[u'insur', u'group', u'seek', u'labor', u'guarante', u'privat']
[u'investig', u'begin', u'fatal', u'unit']
[u'israel', u'destroy', u'palestinian', u'home', u'gaza']
[u'jimi', u'hendrix', u'brother', u'lose', u'lawsuit']
[u'judg', u'arriv', u'pitcairn', u'sexual', u'abus', u'trial']
[u'labor', u'deni', u'delay', u'anti', u'terror']
[u'labor', u'flag', u'chang', u'art', u'polici']
[u'labor', u'make', u'cancer', u'pledg']
[u'land', u'council', u'seek', u'alcohol', u'permit']
[u'latham', u'shrug', u'latest', u'poll']
[u'leader', u'babi', u'traffic', u'group', u'execut']
[u'lib', u'promis', u'loan', u'scheme', u'energi', u'effici']
[u'lion', u'claw', u'half', u'time', u'lead']
[u'lion', u'defi', u'year', u'jinx']
[u'locust', u'plagu', u'worsen']
[u'lone', u'woman', u'get', u'vote', u'station', u'india']
[u'charg', u'alleg', u'bomb', u'threat']
[u'die', u'hang', u'glider', u'crash']
[u'kill', u'isra', u'rocket', u'attack', u'wit']
[u'swim', u'safeti', u'boat', u'capsiz']
[u'appear', u'court', u'drug', u'charg']
[u'media', u'deni', u'oshan', u'hear', u'document']
[u'mental', u'health', u'group', u'urg', u'boycott', u'pizza', u'chain']
[u'michael', u'jackson', u'father', u'hospitalis', u'ulcer']
[u'uncertainti', u'indian', u'tour']
[u'shakespear', u'folio']
[u'categori', u'add', u'tourism', u'award']
[u'law', u'compel', u'maker', u'greenhous']
[u'zealand', u'iraq', u'forc', u'return', u'home']
[u'afghan', u'soldier', u'kill', u'attack']
[u'oliv', u'face', u'hear', u'robbin', u'slap']
[u'oliv', u'hand', u'year', u'suspend', u'robbin']
[u'paramed', u'defend', u'drug', u'charg']
[u'plane', u'crash', u'fraser', u'island']
[u'respond', u'iraq', u'warn', u'report']
[u'heed', u'warn', u'iraq', u'latham', u'say']
[u'polic', u'seek', u'inform', u'miss', u'coupl']
[u'poll', u'show', u'rise', u'coalit', u'support']
[u'pont', u'avoid', u'surgeri', u'break', u'thumb']
[u'pont', u'hop', u'dodg', u'surgeri']
[u'port', u'head', u'victori']
[u'power', u'head', u'victori']
[u'power', u'surg', u'earli', u'lead']
[u'power', u'surg', u'maiden', u'flag']
[u'research', u'point', u'heart', u'muscl', u'regrowth']
[u'riewoldt', u'name', u'valuabl']
[u'rossi', u'formula']
[u'schumach', u'ferrari', u'china']
[u'schumach', u'tame', u'shanghai', u'twister']
[u'seven', u'kill', u'brazilian', u'reformatori', u'violenc']
[u'sierra', u'leon', u'court', u'set', u'bail', u'aust', u'polic']
[u'singh', u'stay', u'track', u'fifth', u'start']
[u'student', u'notic', u'unruli', u'behaviour']
[u'studi', u'highlight', u'birth', u'weight', u'suicid', u'link']
[u'tasmanian', u'volunt', u'await', u'endang', u'parrot']
[u'troubl', u'walker', u'rue', u'cocain', u'mad']
[u'ukrainian', u'attack', u'thrower']
[u'union', u'criticis', u'govt', u'educ', u'packag']
[u'unhappi', u'rumsfeld', u'iraq', u'elect', u'comment']
[u'strike', u'target', u'milit', u'fallujah']
[u'democrat', u'target', u'iraq', u'secur', u'kidnap']
[u'launch', u'strike', u'fallujah']
[u'stockmarket', u'close', u'high']
[u'troop', u'leav', u'iraq', u'peac', u'rumsfeld']
[u'virenqu', u'hang', u'pedal']
[u'compani', u'welcom', u'slow', u'chines', u'economi']
[u'webb', u'hunt', u'california']
[u'welsh', u'domin', u'short', u'cours', u'champ']
[u'wenger', u'pledg', u'futur', u'gunner']
[u'wife', u'malaysian', u'leader', u'question', u'bomb']
[u'india', u'career', u'say', u'langer']
[u'australia', u'england', u'vaughan']
[u'kill', u'weekend', u'accid']
[u'academ', u'truth', u'account', u'govt']
[u'democrat', u'launch', u'justic', u'polici']
[u'armi', u'chopper', u'make', u'emerg', u'land']
[u'assault', u'pizza', u'deliveri', u'dial', u'rescu']
[u'aussi', u'break', u'india', u'jinx']
[u'aussi']
[u'barrichello', u'win', u'chines']
[u'blair', u'say', u'hell', u'help', u'british']
[u'brunei', u'parliament', u'reopen', u'year', u'break']
[u'burrow', u'advanc', u'franc']
[u'bush', u'reveal', u'plan', u'stabilis', u'iraq']
[u'busi', u'council', u'condemn', u'labor', u'industri']
[u'candid', u'shoot', u'mouth', u'cannon', u'prank']
[u'coalit', u'launch', u'vocat', u'educ']
[u'coalit', u'boost', u'access', u'hour', u'doctor']
[u'cole', u'myer', u'explor', u'hypermart', u'possibl']
[u'concern', u'rais', u'fund', u'cut']
[u'costello', u'challeng', u'labor', u'releas', u'independ']
[u'costello', u'tight', u'lip', u'leadership', u'aspir']
[u'darfur', u'refuge', u'fear', u'return', u'home']
[u'disband', u'iraqi', u'armi', u'mistak', u'say', u'blair']
[u'edmiston', u'break', u'world', u'record']
[u'envoy', u'iraq', u'mission', u'save', u'british', u'hostag']
[u'kill', u'perth', u'collis']
[u'florida', u'resid', u'batten']
[u'foreign', u'troop', u'answer', u'iraq', u'musharraf']
[u'forestri', u'polici', u'wont', u'democrat', u'packag']
[u'accc', u'head', u'call', u'hospit', u'revamp']
[u'mainten', u'worker', u'suspici']
[u'arrest', u'london', u'anti', u'terror']
[u'fuel', u'pump', u'spar', u'roadhous']
[u'giant', u'asteroid', u'pass', u'close', u'earth']
[u'gilchrist', u'sound', u'cautious', u'note']
[u'govt', u'pledg', u'famili']
[u'govt', u'urg', u'address', u'rural', u'health', u'issu']
[u'green', u'champion', u'fair', u'campaign', u'launch']
[u'group', u'question', u'govt', u'reloc', u'plan']
[u'gunner', u'stay', u'clear', u'unit', u'reviv', u'gather', u'steam']
[u'hook', u'memori', u'launch', u'transplant', u'game']
[u'hotel', u'employe', u'wit', u'fatal', u'fall']
[u'howard', u'creat', u'skill', u'shortag', u'say', u'actu']
[u'howard', u'outlin', u'term', u'vision']
[u'howard', u'pledg', u'term']
[u'hurrican', u'jeann', u'batter', u'bahama']
[u'hurrican', u'jeann', u'pound', u'florida']
[u'injur', u'price', u'talk', u'grand', u'final', u'chanc']
[u'iran', u'call', u'european', u'negoti', u'nuclear']
[u'iraq', u'film', u'scoop', u'spanish', u'festiv', u'prize']
[u'israel', u'blame', u'hama', u'milit', u'kill', u'syria']
[u'janett', u'howard', u'stand']
[u'jeann', u'pound', u'coast']
[u'charg', u'robberi']
[u'die', u'road', u'accid']
[u'stab', u'parti', u'scuffl']
[u'matthew', u'keep', u'faith', u'beat', u'lion']
[u'minist', u'urg', u'apologis', u'follow', u'airport']
[u'mix', u'result', u'aussi', u'todd']
[u'kill', u'iraq', u'attack']
[u'motorbik', u'accid', u'leav', u'hospit']
[u'nat', u'promis', u'better', u'servic', u'bush']
[u'group', u'fight', u'develop', u'residenti', u'area']
[u'meet', u'open']
[u'pickett', u'claim', u'norm', u'smith', u'medal']
[u'pinochet', u'question', u'polit', u'kill']
[u'announc', u'dementia']
[u'spend', u'spree', u'reckless', u'latham', u'say']
[u'unveil', u'school', u'boost']
[u'polic', u'appeal', u'wit']
[u'polic', u'investig', u'accid', u'king']
[u'port', u'adelaid', u'parti']
[u'port', u'celebr', u'power']
[u'power', u'emot', u'homecom']
[u'protest', u'clash', u'liber', u'support']
[u'racq', u'back', u'polic', u'motorist', u'slow']
[u'real', u'slump']
[u'reid', u'stumbl', u'davi', u'debut']
[u'rooster', u'lead', u'cowboy', u'fieri', u'half']
[u'rooster', u'reach', u'grand', u'final']
[u'sauvag', u'bow', u'silver']
[u'schumach', u'chang', u'engin']
[u'seven', u'kill', u'wound', u'fresh', u'airstrik']
[u'shanghai', u'experi', u'popul', u'boom']
[u'singapor', u'transsexu', u'beauti', u'pageant', u'sell']
[u'dead', u'road', u'accid']
[u'separ', u'accid', u'road']
[u'small', u'busi', u'incent', u'coalit']
[u'specialist', u'urg', u'govt', u'declar', u'water']
[u'stab', u'victim', u'die', u'hospit']
[u'struggl', u'singh', u'stay', u'ahead']
[u'stuart', u'prais', u'cowboy', u'defenc']
[u'support', u'tafe', u'democrat', u'tell', u'howard']
[u'turkey', u'prepar', u'marathon', u'reform']
[u'teenag', u'remand', u'custodi', u'alleg']
[u'soldier', u'get', u'year', u'murder', u'iraqi']
[u'soldier', u'give', u'year', u'sentenc', u'iraqi']
[u'davi', u'final']
[u'voller', u'quit', u'roma', u'debacl']
[u'warn', u'issu', u'child', u'diagnos', u'buruli']
[u'webb', u'fourth', u'lpga']
[u'weekend', u'road', u'toll', u'worst']
[u'windi', u'stun', u'england', u'trophi', u'triumph']
[u'young', u'socceroo', u'fieri', u'chile']
[u'accus', u'plead', u'guilti', u'backpack', u'murder', u'case']
[u'liber', u'target', u'elder', u'activ', u'age', u'polici']
[u'traffic', u'blitz', u'prove', u'busi', u'time', u'polic']
[u'alcohol', u'seiz', u'north']
[u'coalit', u'freight', u'logist', u'centr', u'plan']
[u'liber', u'ignor', u'northern', u'river', u'green']
[u'anderson', u'back', u'speed', u'limit', u'driver']
[u'anti', u'terror', u'draw', u'latham', u'concern']
[u'aquacultur', u'industri', u'eye', u'market']
[u'arab', u'nation', u'aid', u'assassin', u'hama']
[u'arson', u'think', u'yeppoon', u'blaze']
[u'aussi', u'luxford', u'win', u'japan', u'triathlon']
[u'australian', u'polic', u'thai', u'heroin', u'bust']
[u'author', u'recov', u'swimmer', u'bodi']
[u'aviat', u'museum', u'step', u'closer', u'fruition']
[u'bash', u'port', u'wake', u'coma']
[u'bash', u'power', u'support', u'wake', u'coma']
[u'beatti', u'eat', u'humbl', u'port', u'flag', u'fli']
[u'beatti', u'miss', u'press', u'confer', u'surpris', u'media']
[u'beatti', u'play', u'smoke', u'crackdown', u'club', u'impact']
[u'bigley', u'aliv', u'say', u'brother']
[u'black', u'spot', u'fatal', u'fail', u'stop', u'speedster']
[u'brack', u'bounc', u'poll']
[u'branson', u'launch', u'thousand', u'astronaut']
[u'breath', u'test', u'blitz', u'result', u'disappoint', u'polic']
[u'britain', u'readi', u'write', u'world', u'debt']
[u'british', u'cabl', u'custom', u'ear']
[u'british', u'nurs', u'charg', u'murder', u'patient']
[u'businessman', u'deni', u'nauru', u'loan', u'bribe']
[u'greater', u'environment', u'regul']
[u'rescu', u'chopper', u'manag', u'probe']
[u'reveal', u'secret', u'canola', u'site']
[u'carcoar', u'student', u'put', u'marathon', u'effort', u'gold']
[u'cautious', u'investor', u'market']
[u'china', u'target', u'corrupt']
[u'church', u'sorri', u'institut', u'care', u'suffer']
[u'communiti', u'station', u'effort']
[u'continu', u'fund', u'woe', u'outgo', u'atsic']
[u'controversi', u'drive', u'test']
[u'copi', u'say', u'costello']
[u'councillor', u'question', u'wast', u'plant', u'find']
[u'council', u'consid', u'salin', u'myth']
[u'council', u'consid', u'hotel', u'plan']
[u'countri', u'race', u'share', u'fund']
[u'court', u'blow', u'india', u'australia', u'test', u'seri']
[u'cowboy', u'reward', u'kangaroo']
[u'hand', u'australian', u'vice', u'captainci']
[u'crean', u'take', u'hydro', u'tasmania', u'post']
[u'custom', u'benefit', u'border', u'protect', u'plan']
[u'date', u'chang', u'rate', u'rise', u'forum']
[u'doggi', u'care', u'tire', u'pet']
[u'doubt', u'cast', u'road', u'toll', u'plan']
[u'doubt', u'cast', u'white', u'regul']
[u'doubt', u'rais', u'coal', u'ration']
[u'driver', u'drug', u'test', u'fatal', u'crash']
[u'driver', u'speed', u'past', u'fatal', u'accid', u'site']
[u'dylan', u'bar', u'soul', u'memoir']
[u'earli', u'trend', u'emerg', u'council', u'vote', u'count']
[u'emerg', u'agreement', u'boost', u'cooper']
[u'energi', u'effici', u'requir', u'propos']
[u'fall', u'soldier', u'name', u'add', u'memori']
[u'famili', u'forestri', u'worker', u'ralli', u'job']
[u'famili', u'seek', u'probe', u'pilot', u'murder']
[u'famili', u'critic', u'condit', u'unit']
[u'farm', u'group', u'seek', u'tape']
[u'fear', u'wast', u'dump', u'plan', u'threaten', u'horticultur']
[u'ferguson', u'pois', u'blood', u'rooney']
[u'fijian', u'soldier', u'guard', u'iraq']
[u'destroy', u'perth', u'hous']
[u'firefight', u'game', u'heat', u'tourism']
[u'dead', u'dubai', u'airport', u'build', u'site', u'collaps']
[u'flanneri', u'add', u'rooster', u'woe']
[u'flood', u'hamper', u'bangladesh', u'econom', u'growth']
[u'satellit', u'head', u'invest', u'trial', u'begin']
[u'fuel', u'monitor', u'predict', u'sydney', u'price', u'spike']
[u'fund', u'seek', u'hospit', u'wait', u'list']
[u'fund', u'seek', u'stop', u'woe']
[u'galleri', u'paint', u'gloomi', u'pictur', u'polici']
[u'gallop', u'dismiss', u'skill', u'shortag', u'plan']
[u'gallop', u'warn', u'marin', u'manag', u'consult']
[u'tank', u'roof', u'engin', u'feat']
[u'gigant', u'mushroom', u'stun', u'swiss', u'scientist']
[u'gilchrist', u'tell', u'team', u'mat', u'stay', u'focus']
[u'gold', u'coast', u'mayor', u'boycott', u'indi']
[u'goldfield', u'prison', u'possibl']
[u'goulburn', u'water', u'year']
[u'govern', u'urg', u'rethink', u'road', u'fund']
[u'govt', u'abolish', u'fisheri', u'tariff', u'protect']
[u'govt', u'urg', u'deliv', u'south', u'coast', u'hospit']
[u'greek', u'give', u'clear', u'bomb', u'threat']
[u'green', u'patch', u'open']
[u'green', u'aerial', u'spray', u'inquiri']
[u'green', u'differ']
[u'grower', u'offer', u'grain', u'merger', u'assur']
[u'gungahlin', u'drive', u'appeal', u'decis', u'reserv']
[u'hama', u'activist', u'detain', u'west', u'bank', u'incurs']
[u'hama', u'claim', u'rocket', u'attack', u'israel']
[u'health', u'boost', u'bathurst', u'dubbo']
[u'hera', u'win', u'record', u'equal', u'tour', u'spain']
[u'hous', u'price', u'rise', u'labor', u'govt']
[u'hundr', u'daintre', u'area', u'develop']
[u'hundr', u'mourn', u'slay', u'penguin', u'pair']
[u'india', u'kick', u'birthday', u'mahal']
[u'inquest', u'present', u'suicid', u'open']
[u'insurg', u'attack', u'baghdad', u'polic', u'academi']
[u'intellig', u'suggest', u'lade', u'aliv', u'musharraf']
[u'irrig', u'water', u'alloc', u'rais']
[u'italian', u'grandfath', u'awash', u'adopt', u'offer']
[u'jail', u'term', u'cannabi', u'courier']
[u'forg', u'link', u'chechen', u'rebel', u'expert']
[u'kariong', u'woe', u'prompt', u'overhaul', u'plan']
[u'kelli', u'unhappi', u'reloc', u'plan']
[u'kewel', u'champion', u'clash']
[u'escap', u'webb', u'challeng', u'california']
[u'king', u'investig', u'continu']
[u'kosciusko', u'bushfir', u'inquiri', u'begin']
[u'labor', u'offer', u'free', u'childcar', u'packag']
[u'labor', u'slam', u'crazi', u'john', u'career', u'clearanc']
[u'latham', u'releas', u'child', u'care', u'polici']
[u'chang', u'offer', u'reveget', u'hope']
[u'leagu', u'team', u'protest', u'poki']
[u'lion', u'seek', u'help', u'brown', u'tribun', u'habit']
[u'lumber', u'plant', u'plan', u'move', u'ahead']
[u'charg', u'steal', u'sack']
[u'mander', u'control', u'decid']
[u'face', u'court', u'film', u'beach', u'children']
[u'medal', u'haul', u'newcastl', u'paralympian']
[u'merger', u'tip', u'earth', u'sanctuari', u'head', u'retir']
[u'migrat', u'bird', u'secur']
[u'miss', u'diver', u'famili', u'creat', u'site']
[u'miss', u'walker', u'night', u'spend', u'camp']
[u'moneybag', u'singh', u'break', u'tiger', u'record']
[u'charg', u'expect', u'grand', u'final', u'bust']
[u'more', u'figur', u'shortag', u'profil']
[u'prison', u'bed', u'bunburi']
[u'question', u'medicar', u'safeti', u'benefit']
[u'say', u'rebat', u'boost', u'child', u'mind', u'place']
[u'gambier', u'name', u'senior', u'year']
[u'distanc', u'cannonbal']
[u'multiplex', u'unveil', u'billion', u'dollar', u'ronin']
[u'narrow', u'escap', u'explod']
[u'nation', u'admit', u'bunburi', u'scheme', u'mistak']
[u'home', u'anim']
[u'magistr', u'head', u'kalgoorli', u'boulder']
[u'reef', u'tourism', u'ventur', u'announc']
[u'parol', u'period', u'urg', u'gassi', u'trial']
[u'north', u'west', u'nomin', u'tourism', u'award']
[u'hit', u'school', u'fund', u'plan']
[u'nude', u'requir', u'restor', u'accid']
[u'price', u'near', u'record', u'high']
[u'olsen', u'twin', u'sign', u'distribut', u'deal']
[u'pacemen', u'snub', u'indian', u'contract']
[u'pakistan', u'arrest', u'terror', u'suspect']
[u'pakistan', u'kill', u'milit', u'want', u'musharraf', u'plot']
[u'penguin', u'gather', u'murder', u'men', u'funer']
[u'pileggi', u'drop', u'appeal', u'plan']
[u'refuge', u'leav', u'limbo']
[u'polic', u'offic', u'stand', u'trial', u'drug', u'charg']
[u'polic', u'probe', u'hanwood', u'bash']
[u'polic', u'probe', u'king']
[u'polic', u'search', u'youth', u'weekend', u'ransack']
[u'polic', u'look', u'deeper', u'babi', u'death']
[u'polic', u'unhappi', u'traffic', u'infring']
[u'polic', u'wont', u'rule', u'teen', u'candid', u'attack']
[u'port', u'play', u'sponsor', u'rift']
[u'post', u'offic', u'robber', u'descript', u'releas']
[u'premiership', u'prove', u'profit', u'port']
[u'price', u'rat', u'chanc']
[u'prize', u'artwork', u'chloe', u'damag']
[u'probe', u'continu', u'underground', u'blast']
[u'protest', u'chip', u'away', u'garrett', u'forest', u'stanc']
[u'protest', u'confront', u'drill', u'crew']
[u'psycho', u'serena', u'celebr', u'china']
[u'public', u'help', u'seek', u'servic', u'station', u'hold']
[u'push', u'north', u'drought']
[u'racq', u'say', u'govt', u'need', u'increas', u'road', u'spend']
[u'receiv', u'sell', u'lee', u'store']
[u'recruit', u'fear', u'prompt', u'tour', u'duti', u'rethink']
[u'renal', u'dialysi', u'program', u'begin', u'communiti']
[u'reshuffl', u'boost', u'japan', u'popular']
[u'resid', u'ralli', u'zoo', u'helicopt', u'plan']
[u'consid', u'scrap', u'canberra', u'sydney']
[u'ricketson', u'face', u'grand', u'final', u'wipe']
[u'roadsid', u'bomb', u'kill', u'near', u'baquba']
[u'road', u'train', u'spill', u'tonn', u'explos', u'chemic']
[u'rocket', u'injur', u'pakistani', u'troop', u'near', u'afghan', u'border']
[u'rspca', u'campaign', u'link', u'anim', u'cruelti', u'violenc']
[u'rspca', u'launch', u'campaign', u'anim', u'cruelti']
[u'respons', u'fatal', u'crash']
[u'salin', u'think', u'anderson']
[u'white', u'law', u'ineffect', u'say', u'opposit']
[u'search', u'grave', u'vandal']
[u'secur', u'fear', u'boost', u'price']
[u'shevchenko', u'strike', u'milan', u'beat', u'lazio']
[u'children', u'kill', u'greec', u'crash']
[u'skill', u'fund', u'misdirect', u'school', u'bodi']
[u'spanish', u'hero', u'nadal', u'face', u'davi', u'final', u'snub']
[u'speed', u'limit', u'call', u'upset', u'politician']
[u'strand', u'coupl', u'unprepar', u'bush', u'ordeal']
[u'stress', u'disord', u'delay', u'underworld', u'drug', u'trial']
[u'student', u'protest', u'poor', u'servic']
[u'stuttl', u'murder', u'bungl', u'robberi', u'prosecut']
[u'sudan', u'sentenc', u'death', u'darfur', u'crime']
[u'support', u'show', u'nation', u'wine', u'bodi']
[u'survey', u'rais', u'water', u'awar']
[u'sweden', u'return', u'indigen', u'remain']
[u'industri', u'concern', u'train', u'pledg']
[u'teen', u'face', u'court', u'assault', u'charg']
[u'telstra', u'confirm', u'share', u'buyback']
[u'tenant', u'union', u'push', u'afford', u'hous']
[u'thailand', u'play', u'human', u'human', u'bird', u'fear']
[u'unhurt', u'helicopt', u'crash']
[u'townsvill', u'experi', u'oversea', u'tourism', u'boost']
[u'tragic', u'weekend', u'local', u'road']
[u'train', u'flight', u'end', u'emerg', u'land']
[u'transplant', u'game', u'underway', u'adelaid']
[u'tuckey', u'attack', u'leav', u'wing', u'nation']
[u'turtl', u'nab', u'sebastian', u'gold', u'shell']
[u'palestinian', u'milit', u'kill', u'northern', u'gaza']
[u'union', u'call', u'electr', u'protect', u'law']
[u'pledg', u'darfur']
[u'drug', u'smuggler', u'jail', u'melbourn', u'import']
[u'valencia', u'barca', u'pull', u'clear', u'atop', u'liga']
[u'vanuatu', u'escap', u'contempt', u'charg']
[u'victoria', u'boost', u'firefight', u'resourc']
[u'vote', u'begin', u'end', u'vast', u'elector']
[u'warn', u'eye', u'tilt', u'indian', u'glori']
[u'warn', u'hop', u'hurrah', u'india']
[u'warn', u'bushwalk', u'ahead', u'weather']
[u'water', u'concern', u'spark', u'test']
[u'water', u'test', u'reassur', u'tasmanian']
[u'weather', u'help', u'firefight', u'effort']
[u'west', u'bank', u'barrier', u'guard', u'die', u'suspect', u'suicid']
[u'windsor', u'name', u'alleg', u'briber']
[u'woman', u'critic', u'injur', u'dead', u'crash']
[u'woman', u'die', u'bargara', u'crash']
[u'work', u'progress', u'wickham', u'point', u'project']
[u'young', u'commut', u'right', u'thing']
[u'youth', u'allow', u'pledg', u'win', u'support']
[u'boost', u'mental', u'health', u'servic']
[u'charg', u'drug', u'syndic', u'bust']
[u'abandon', u'hanson', u'song', u'case']
[u'aborigin', u'detail', u'polit', u'journey']
[u'sayyaf', u'spiritu', u'advis', u'captur']
[u'best', u'magazin', u'market']
[u'addit', u'sentenc', u'jail', u'stash']
[u'agforc', u'declar', u'elect', u'result']
[u'alleg', u'drug', u'ring', u'muscl', u'face', u'court']
[u'alleg', u'plutonium', u'smuggler', u'arrest']
[u'alleg', u'abus', u'victim', u'sue', u'anglican', u'church']
[u'want', u'raaf', u'worker', u'compo']
[u'seek', u'nation', u'drink', u'water', u'polici']
[u'arafat', u'order', u'releas', u'kidnap', u'produc']
[u'arafat', u'lobbi', u'british', u'hostag', u'releas']
[u'architect', u'head', u'roebourn', u'shire']
[u'armidal', u'sieg', u'enter', u'fifth', u'hour']
[u'aussi', u'driver', u'fuel', u'indi']
[u'beatti', u'face', u'parliament', u'energex', u'debacl']
[u'bewar', u'latham', u'liverpool', u'account', u'govt']
[u'billiton', u'doubl', u'iron', u'sale', u'china']
[u'bird', u'perman', u'threat']
[u'blackshirt', u'leader', u'guilti', u'stalk']
[u'offer', u'hous', u'block']
[u'boyfriend', u'tell', u'stuttl', u'final']
[u'brack', u'defend', u'delahunti', u'mitcham', u'high', u'rise']
[u'british', u'soldier', u'kill', u'basra', u'ambush']
[u'break', u'hill', u'pursu', u'solar', u'tower', u'idea']
[u'brown', u'tribun', u'bind', u'grand', u'final', u'loss']
[u'bypass', u'prompt', u'karuah', u'plan', u'manag']
[u'eas', u'pressur', u'south', u'coast', u'hospit']
[u'candi', u'maker', u'downsiz', u'imag', u'issu']
[u'cautious', u'welcom', u'region', u'race', u'chang']
[u'continu', u'dwarf', u'digit', u'download']
[u'charlton', u'edg', u'rover']
[u'china', u'warn', u'interfer', u'activist']
[u'club', u'drive', u'accus', u'bail']
[u'cold', u'weather', u'forc', u'oktoberfest', u'switch', u'wine']
[u'communiti', u'boost', u'paedophil', u'awar']
[u'communiti', u'pay', u'tribut', u'penguin']
[u'contamin', u'sit', u'spotlight']
[u'council', u'back', u'hotel', u'plan']
[u'council', u'back', u'warner', u'stanc']
[u'council', u'campaign', u'auslink', u'fund']
[u'council', u'consid', u'zone']
[u'council', u'contribut', u'home', u'dementia', u'wing']
[u'council', u'get', u'teeth', u'fluorid', u'debat']
[u'council', u'green', u'light', u'feedlot', u'expans']
[u'councillor', u'deliv', u'corrupt', u'warn']
[u'councillor', u'unhappi', u'virgin', u'fund']
[u'council', u'rethink', u'sign', u'polici']
[u'council', u'pressur', u'upgrad']
[u'court', u'hear', u'william', u'incit', u'moran', u'murder']
[u'cowboy', u'player', u'choos', u'nation']
[u'croc', u'hunter', u'chop', u'flight', u'peac']
[u'daughter', u'probabl', u'pass', u'bird']
[u'david', u'jone', u'report', u'profit']
[u'democrat', u'critic', u'telstra', u'buyback']
[u'democrat', u'deplor', u'lack', u'indigen', u'fund']
[u'democrat', u'offer', u'latham', u'qualifi', u'support']
[u'democrat', u'welcom', u'church', u'apolog']
[u'develop', u'consid', u'post', u'surgeri', u'resort']
[u'dolli', u'creator', u'want', u'clone', u'human', u'cell']
[u'doubt', u'cast', u'roadhous', u'plan']
[u'drought', u'take', u'heavi', u'toll', u'farmer']
[u'educ', u'comment', u'plagu', u'hull']
[u'educ', u'minist', u'check', u'possibl', u'elector']
[u'energex', u'chair', u'authoris', u'unjustifi', u'payment']
[u'energex', u'chairman', u'beatti', u'scapegoat']
[u'england', u'player', u'admit', u'cocain']
[u'england', u'player', u'agonis', u'zimbabw', u'tour']
[u'director', u'say', u'didnt', u'overse', u'invest']
[u'farina', u'keep', u'kewel', u'viduka']
[u'fear', u'hold', u'queanbeyan', u'blast', u'victim']
[u'feder', u'court', u'trial', u'gold', u'coast', u'sit']
[u'govt', u'reject', u'secret', u'dump', u'list', u'claim']
[u'govt', u'urg', u'wast', u'dump', u'plan']
[u'financ', u'manag', u'guilti', u'chariti', u'robberi']
[u'fish', u'farm', u'harvest', u'showcas', u'potenti']
[u'flanneri', u'add', u'rooster', u'woe']
[u'flow', u'chart', u'wait', u'list']
[u'delay', u'rescu', u'injur', u'skier']
[u'disrupt', u'flight', u'melbourn', u'airport']
[u'forestri', u'overshadow', u'issu', u'democrat']
[u'energex', u'head', u'dishonest']
[u'fund', u'deal', u'leav', u'uluru', u'short', u'tourism', u'bodi']
[u'fund', u'access', u'centr']
[u'game', u'leav', u'hoteli', u'uncertain']
[u'ganguli', u'hope', u'tendulkar', u'chanc']
[u'leak', u'trigger', u'queanbeyan', u'explos']
[u'marriag', u'like', u'releas', u'virus']
[u'golf', u'club', u'flag', u'tournament', u'event']
[u'gonzal', u'upset', u'parko', u'french', u'surf']
[u'govt', u'ask', u'explain', u'nuclear', u'wast', u'dump', u'plan']
[u'govt', u'cynic', u'nation', u'backflip']
[u'govt', u'dismiss', u'nuclear', u'wast', u'dump', u'site', u'list']
[u'govt', u'pledg', u'wast', u'treatment', u'plant']
[u'govt', u'relax', u'irrig', u'water', u'restrict']
[u'govt', u'favour', u'shore', u'nuclear', u'dump']
[u'green', u'offer', u'prefer', u'pledg']
[u'green', u'play', u'role', u'richmond']
[u'grosser', u'hold', u'polic', u'injuri', u'payout']
[u'gunn', u'spray', u'contamin', u'drink', u'water']
[u'health', u'boost', u'eurobodalla']
[u'height', u'restrict', u'caus', u'develop', u'headach']
[u'hickey', u'outlin', u'safeti', u'review']
[u'hick', u'lawyer', u'demand', u'charg', u'detail']
[u'howard', u'defend', u'ipswich', u'bypass', u'plan']
[u'hurrican', u'blow', u'singh', u'irish', u'event']
[u'husband', u'seek', u'drop', u'oshan', u'assault', u'charg']
[u'hydro', u'appoint', u'mat', u'deal']
[u'independ', u'school', u'group', u'air', u'elect', u'polici']
[u'indian', u'wall', u'australia']
[u'india', u'test', u'doubt', u'right', u'hear', u'adjourn']
[u'injur', u'skier', u'rescu', u'alp']
[u'input', u'seek', u'pipelin', u'rout']
[u'isra', u'troop', u'kill', u'jenin', u'curfew', u'breaker']
[u'fiscal', u'grand', u'final', u'treasur']
[u'jail', u'chines', u'restaur', u'arsonist']
[u'jam', u'hardi', u'execut', u'stand', u'asid']
[u'jimmi', u'carter', u'fear', u'fair', u'florida', u'vote']
[u'johnston', u'label', u'senat', u'challeng', u'clueless']
[u'jordan', u'king', u'doubt', u'iraqi', u'elect', u'possibl']
[u'kidnap', u'iranian', u'diplomat', u'safe', u'baghdad']
[u'labor', u'go', u'environ', u'vote']
[u'labor', u'hold', u'poll', u'lead']
[u'labor', u'oppos', u'nuclear', u'dump', u'snowdon']
[u'labor', u'promis', u'mental', u'health', u'servic']
[u'labor', u'lift', u'ferri', u'subsidi']
[u'labor', u'unveil', u'green', u'push', u'canberra']
[u'latham', u'challeng', u'govt', u'alleg', u'energi']
[u'latham', u'dismiss', u'latest', u'poll']
[u'latham', u'howard', u'spar', u'molloy', u'issu']
[u'forc', u'brazilian', u'polic', u'releas', u'biopir']
[u'restrict', u'brew', u'kit', u'indigen']
[u'societi', u'call', u'extra', u'judg', u'reappoint']
[u'lenton', u'hanson', u'rais', u'brisban']
[u'liber', u'vote', u'card', u'draw', u'protest']
[u'suffer', u'burn', u'mysteri', u'queanbeyan', u'blast']
[u'meet', u'focus', u'hospit', u'asbesto', u'concern']
[u'milit', u'free', u'egyptian', u'hostag']
[u'minist', u'back', u'koizumi', u'shrine', u'visit']
[u'minist', u'say', u'takai', u'petit']
[u'minist', u'turn', u'bush', u'hospit', u'site']
[u'firefight', u'south', u'west']
[u'indigen', u'teacher', u'need', u'democrat']
[u'rail', u'woe', u'commut']
[u'time', u'vote', u'fluorid']
[u'musician', u'drum', u'anti', u'bush', u'sentiment']
[u'music', u'produc', u'spector', u'indict', u'murder', u'charg']
[u'nation', u'deni', u'gippsland', u'pledg', u'pork', u'barrel']
[u'navig', u'acquir', u'son', u'gwalia', u'mine']
[u'newbridg', u'trump', u'woolworth']
[u'develop', u'look', u'water', u'sustain']
[u'law', u'speed', u'asic', u'hardi', u'inquiri']
[u'specif', u'site', u'choos', u'technic', u'school']
[u'program', u'address', u'prison', u'violenc']
[u'senat', u'want', u'immigr', u'centr', u'sell']
[u'nurs', u'disput', u'arbitr']
[u'nurs', u'home', u'open', u'virus', u'outbreak']
[u'deport', u'isra', u'spi']
[u'price', u'break', u'mark']
[u'price', u'hit', u'barrel']
[u'price', u'spike', u'hurt', u'econom', u'growth']
[u'author', u'moot', u'kimberley']
[u'opposit', u'suspect', u'maddock', u'smear', u'campaign']
[u'pharmaceut', u'founder', u'front', u'court']
[u'parmalat', u'founder', u'releas', u'ahead', u'hear']
[u'parti', u'health', u'effort']
[u'pension', u'fund', u'criticis', u'news', u'corp', u'shift']
[u'pinochet', u'blame', u'militari', u'human', u'right', u'abus']
[u'pitcairn', u'accus', u'refus', u'restor', u'justic']
[u'clarifi', u'nanni', u'issu']
[u'downplay', u'telstra', u'vote', u'comment']
[u'polic', u'raid', u'home', u'drug', u'bust']
[u'polic', u'unsur', u'fatal', u'crash', u'caus']
[u'polic', u'urg', u'greater', u'secur']
[u'port', u'fight', u'carr']
[u'price', u'firm', u'final']
[u'priest', u'scuffl', u'holi', u'sepulchr']
[u'probe', u'launch', u'sugar', u'blaze']
[u'probe', u'launch', u'west', u'coast', u'chopper', u'crash']
[u'program', u'help', u'parent', u'cope']
[u'prosecut', u'open', u'case', u'accus', u'backpack']
[u'prosecutor', u'request', u'vizard', u'theft', u'case', u'delay']
[u'public', u'urg', u'help', u'fight', u'arson']
[u'push', u'better', u'health', u'servic', u'access']
[u'push', u'organ', u'donor']
[u'queanbeyan', u'trial', u'wont', u'shorten', u'wait', u'list', u'doctor']
[u'rain', u'outlook', u'good', u'south', u'east', u'farmer']
[u'rain', u'take', u'toll', u'dairi', u'factori', u'product']
[u'record', u'price', u'market']
[u'resid', u'unhappi', u'ambul', u'consult']
[u'resourc', u'stock', u'push', u'market']
[u'ricketson', u'plead', u'guilti', u'argu', u'downgrad']
[u'road', u'safeti', u'guid', u'impart', u'local', u'knowledg']
[u'road', u'upgrad', u'help', u'grape', u'grower']
[u'roger', u'carpet', u'club', u'jibe']
[u'roger', u'fin', u'club', u'rugbi', u'jibe']
[u'rural', u'colleg', u'upbeat', u'review']
[u'rural', u'doctor', u'seek', u'quarantin', u'health', u'fund']
[u'rural', u'servic', u'share']
[u'regain', u'credit', u'rat']
[u'saudi', u'arabia', u'hike', u'product', u'capac']
[u'school', u'polici', u'make', u'church', u'uncomfort']
[u'scientist', u'monitor', u'volcano']
[u'crash', u'spark', u'crew', u'qualif']
[u'shield', u'consid', u'contest', u'dubbo', u'liber']
[u'sixth', u'paralymp', u'medal', u'bundi', u'swimmer']
[u'sixth', u'paralymp', u'medal', u'wolfenden']
[u'argument', u'speed', u'limit', u'democrat']
[u'spaceshipon', u'fli', u'prize']
[u'special', u'unit', u'small', u'busi', u'govt']
[u'sport', u'forum', u'tackl', u'ugli', u'parent', u'syndrom']
[u'spratt', u'open', u'australia', u'cycl', u'world', u'campaign']
[u'stress', u'test', u'predict', u'heart', u'attack', u'earli']
[u'summit', u'consid', u'plan', u'fight', u'substanc', u'abus']
[u'sydney', u'unit', u'claim', u'second', u'life']
[u'teen', u'charg', u'assault', u'face', u'court', u'today']
[u'test', u'doubt', u'right', u'hear', u'adjourn']
[u'kill', u'fallujah', u'airstrik']
[u'tourism', u'council', u'play', u'limit', u'award', u'entri']
[u'tragic', u'crash', u'overshadow', u'paralymp']
[u'trio', u'automat', u'ironman', u'entri']
[u'truffl', u'grower', u'hope', u'bigger', u'crop']
[u'tuckey', u'stoush', u'coalit', u'candid']
[u'arrest', u'forb', u'editor', u'murder']
[u'union', u'threaten', u'work', u'ban', u'secur', u'concern']
[u'unrest', u'forc', u'price', u'higher']
[u'upper', u'hous', u'histor', u'kalgoorli', u'sit']
[u'captur', u'iraqi', u'milit', u'cell', u'leader']
[u'pressur', u'indonesia', u'pollut', u'arrest']
[u'vandal', u'desecr', u'bendigo', u'grave']
[u'victorian', u'worker', u'copi', u'xerox', u'strike']
[u'warren', u'women', u'defend', u'pitcairn']
[u'watchdog', u'ban', u'invest', u'fraud']
[u'wentworth', u'green', u'prefer', u'labor']
[u'year', u'live', u'danger', u'air', u'indonesia']
[u'radio', u'promis', u'boost']
[u'activist', u'dont', u'understand', u'middl', u'east', u'trade']
[u'liber', u'blame', u'labor', u'small', u'busi', u'declin']
[u'adult', u'trial', u'teenag', u'frighten', u'record']
[u'announc', u'season', u'comp']
[u'alleg', u'isra', u'agent', u'releas', u'jail']
[u'see', u'hull', u'respons', u'proof', u'govt', u'want', u'telstra']
[u'hail', u'excit', u'medicar', u'gold', u'plan']
[u'american', u'taliban', u'appeal', u'sentenc']
[u'angler', u'urg', u'avoid', u'estuari']
[u'resign', u'hit', u'energex']
[u'argentin', u'teen', u'shoot', u'dead', u'classmat']
[u'armidal', u'sieg', u'charg']
[u'australia', u'india', u'urg', u'oper']
[u'australian', u'stock', u'record', u'high']
[u'australian', u'senior', u'legal', u'post']
[u'australia', u'foreign', u'exchang', u'market', u'boom']
[u'bash', u'death', u'spark', u'church', u'heal', u'servic']
[u'crowd', u'hop', u'horsham']
[u'put', u'lighthous', u'liabil', u'issu']
[u'brown', u'seek', u'legal', u'advic', u'rival']
[u'bulldog', u'plea', u'fan']
[u'bullet', u'predict', u'titl']
[u'burglari', u'trial', u'hear', u'evid', u'video', u'link']
[u'busi', u'leader', u'forest', u'protect']
[u'buy', u'frenzi', u'creat', u'market', u'record']
[u'migrat', u'chang', u'protect', u'children']
[u'kalgoorli', u'road', u'fund']
[u'canberra', u'lead', u'plastic', u'free', u'nation']
[u'candid', u'quiz', u'woodchip', u'plan']
[u'candid', u'odd', u'polici']
[u'candid', u'want', u'age', u'care', u'bed', u'issu', u'address']
[u'carr', u'keep', u'port', u'fan', u'guess']
[u'carter', u'question', u'hospit', u'surgeri', u'decis']
[u'cliff', u'collaps', u'case', u'near']
[u'coach', u'suspend', u'cairn', u'brawl']
[u'communiti', u'honour', u'fall', u'polic']
[u'upgrad', u'improv', u'manag']
[u'council', u'detail', u'esplanad', u'develop', u'work']
[u'council', u'green', u'light', u'meter', u'park', u'plan']
[u'councillor', u'oppos', u'rate', u'rise', u'link', u'home']
[u'council', u'offer', u'reward', u'catch', u'coff', u'vandal']
[u'criteria', u'potenti', u'solid', u'storag']
[u'croc', u'remov', u'recreat', u'area']
[u'crow', u'announc', u'overhaul', u'coach', u'staff']
[u'democrat', u'green', u'leader', u'sign', u'anti', u'live', u'export']
[u'democrat', u'pressur', u'asylum', u'seeker']
[u'design', u'seek', u'salt', u'intercept', u'scheme']
[u'disappoint', u'lenient', u'term', u'policeman']
[u'identifi', u'jakarta', u'embassi', u'bomber']
[u'doctor', u'close', u'servic', u'risk', u'mum']
[u'door', u'shut', u'local', u'bec']
[u'doubl', u'gold', u'hanson', u'brisban']
[u'drought', u'boost', u'continu', u'dairi', u'farmer']
[u'earli', u'intervent', u'urg', u'asthma', u'woe']
[u'ecstasi', u'tablet', u'handgun', u'melbourn']
[u'energex', u'turmoil', u'continu', u'beatti']
[u'charg', u'ranger', u'contamin']
[u'export', u'recoveri', u'fail', u'meet', u'expect']
[u'extra', u'age', u'care', u'bed', u'bundaberg']
[u'famili', u'give', u'prefer', u'trish', u'worth']
[u'fan', u'vote', u'candlestick', u'park', u'renam']
[u'farm', u'group', u'pleas', u'candid', u'forum']
[u'author', u'find', u'tent', u'embassi', u'blaze']
[u'chief', u'deni', u'brigad', u'upgrad']
[u'flintoff', u'trescothick', u'miss', u'zimbabw', u'tour']
[u'probe', u'delv', u'nurs', u'home', u'death']
[u'forb', u'pool', u'plan', u'move', u'ahead']
[u'free', u'italian', u'worker', u'arriv', u'home']
[u'frost', u'crop', u'damag', u'like', u'hurt', u'albani', u'port']
[u'fume', u'caus', u'polic', u'station', u'closur']
[u'gallop', u'talk', u'billiton', u'china', u'iron']
[u'garret', u'receiv', u'green', u'prefer', u'default']
[u'gaza', u'restrict', u'affect', u'food', u'suppli']
[u'gippsland', u'koala', u'head', u'home']
[u'girl', u'deni', u'alleg', u'sierra', u'leon', u'sexual']
[u'goldfield', u'research', u'salin', u'fight']
[u'govern', u'urg', u'support', u'alpin', u'park', u'plan']
[u'govt', u'plan', u'extend', u'lobster', u'season']
[u'govt', u'play', u'opposit', u'pension', u'claim']
[u'govt', u'pressur', u'eas', u'water', u'woe']
[u'govt', u'rule', u'goldfield', u'hazard', u'wast']
[u'govt', u'rule', u'weaker', u'control']
[u'govt', u'urg', u'rule', u'western', u'dump', u'site']
[u'grandpar', u'feel', u'child', u'care', u'squeez']
[u'green', u'offer', u'herbert', u'prefer']
[u'gwydir', u'council', u'member', u'name']
[u'hacker', u'attack', u'qaeda', u'link', u'websit']
[u'health', u'group', u'play', u'asbesto', u'fear']
[u'hemingway', u'manuscript', u'remain', u'unpublish']
[u'hemp', u'parti', u'prefer', u'smoke']
[u'driver', u'aim', u'victim']
[u'home', u'evacu', u'typhoon', u'hit', u'japan']
[u'readi', u'lead', u'latham']
[u'incred', u'rooney', u'gun', u'turk']
[u'indigen', u'australian', u'protest', u'cruelti']
[u'indigen', u'council', u'face', u'tough', u'standard']
[u'indigen', u'mortal', u'rate', u'fall']
[u'intern', u'charter', u'gold']
[u'invest', u'scheme', u'chief', u'quiz', u'money']
[u'investor', u'fund', u'histor', u'home', u'purchas', u'court', u'hear']
[u'israel', u'push', u'gaza', u'strip']
[u'jackson', u'give', u'time', u'recoveri']
[u'job', u'growth', u'outlook', u'good', u'hunter']
[u'joke', u'ground', u'singapor', u'airlin', u'passeng']
[u'kakadu', u'environ', u'debat', u'heat']
[u'labor', u'leader', u'prais', u'latham', u'vision']
[u'labor', u'reaffirm', u'back', u'allianc']
[u'latham', u'take']
[u'lee', u'outlin', u'murray', u'plan']
[u'lehmann', u'name', u'gilli', u'deputi']
[u'liber', u'democrat', u'seek', u'reduc', u'burden']
[u'liber', u'claim', u'environ']
[u'life', u'return', u'newsstand']
[u'lille', u'head', u'waca', u'board']
[u'livestock', u'group', u'dismiss', u'celebr', u'protest']
[u'locust', u'fight', u'take', u'sky']
[u'give', u'suspend', u'term', u'steroid', u'case']
[u'mayor', u'hope', u'get', u'confid']
[u'mcdonald', u'boss', u'hospit', u'cancer']
[u'medic', u'staff', u'shortag', u'widen']
[u'medicar', u'gold', u'best', u'thing', u'slice', u'bread']
[u'miner', u'sign', u'pilbara', u'nativ', u'titl', u'agreement']
[u'minist', u'look', u'waterfront', u'plan', u'accept']
[u'mix', u'result', u'aussi', u'surf', u'tour']
[u'fund', u'council', u'apprentic']
[u'mosul', u'bomb', u'wound']
[u'motorola', u'staff', u'adelaid']
[u'move', u'afoot', u'boost', u'mobil', u'phone', u'coverag']
[u'put', u'brake', u'driver', u'curfew', u'plan']
[u'mysteri', u'disord', u'threaten', u'sunflow', u'industri']
[u'name', u'reveal', u'pitcairn', u'island', u'abus', u'trial']
[u'nation', u'galleri', u'masterpiec', u'stay', u'display']
[u'nation', u'polic', u'memori', u'plan', u'canberra']
[u'nigerian', u'rebel', u'threaten', u'attack', u'worker']
[u'korean', u'break', u'canadian', u'embassi']
[u'norwegian', u'pilot', u'land', u'plane', u'attack']
[u'growth', u'predict', u'outstrip', u'nation']
[u'deport', u'alleg', u'secret', u'agent']
[u'oat', u'seek', u'bail', u'trial', u'abort']
[u'orbit', u'worker', u'like', u'halt', u'strike']
[u'pair', u'injur', u'break', u'hill', u'shoot']
[u'pakistan', u'confid', u'win', u'seri']
[u'palestinian', u'activist', u'kill', u'nablus']
[u'paralymp', u'boss', u'signal', u'classif', u'review']
[u'paralymp', u'gold', u'medallist', u'key', u'citi']
[u'parent', u'adopt', u'cost']
[u'parti', u'urg', u'help', u'independ', u'fuel', u'oper']
[u'pension', u'approv', u'medicar', u'gold']
[u'petit', u'oppos', u'storag', u'site']
[u'pilot', u'fli', u'crash', u'report']
[u'pitcairn', u'prosecut', u'dismiss', u'judici', u'bias', u'claim']
[u'expect', u'match', u'contribut', u'water']
[u'polic', u'offic', u'rememb', u'servic']
[u'polic', u'seek', u'clue', u'school', u'fire']
[u'polic', u'upbeat', u'despit', u'miss', u'convict']
[u'polocross', u'advoc', u'enter', u'hall', u'fame']
[u'poultri', u'power', u'station', u'protest', u'pooh', u'pooh', u'plan']
[u'poverti', u'cycl', u'address', u'ridgeway']
[u'primat', u'disavow', u'stanc', u'labor', u'school', u'polici']
[u'probe', u'launch', u'drown', u'death']
[u'push', u'stand', u'rescu', u'chopper', u'servic']
[u'qanta', u'unveil', u'jetstar', u'asia']
[u'phase', u'hurrican', u'claim']
[u'queanbeyan', u'blast', u'victim', u'undergo', u'surgeri']
[u'queen', u'honour', u'republican', u'hero']
[u'queensland', u'treat', u'heart', u'attack']
[u'race', u'ident', u'launch', u'spring', u'carniv']
[u'rail', u'woe', u'spark', u'forest', u'polici', u'attack']
[u'ralf', u'race', u'william', u'final', u'race']
[u'rann', u'energi', u'record']
[u'region', u'rail', u'commut', u'remind', u'station', u'work']
[u'region', u'summit', u'consid', u'airport', u'right']
[u'report', u'say', u'work', u'prospect', u'good']
[u'seek', u'airport', u'access', u'guarante']
[u'ricketson', u'face', u'judiciari', u'tonight']
[u'ricketson', u'miss', u'grand', u'final']
[u'riewoldt', u'name', u'saint', u'best']
[u'rise', u'temperatur', u'spark', u'warn']
[u'roadhous', u'reject', u'grog', u'run', u'link']
[u'rspca', u'seiz', u'sick', u'dog', u'woocoo', u'properti']
[u'rush', u'crow', u'join', u'eucalyptus', u'cast']
[u'russian', u'contest', u'hamilton', u'gold', u'medal']
[u'school', u'sign', u'rule', u'polit']
[u'scientist', u'lectur', u'bush']
[u'scientist', u'skin', u'dung', u'track', u'ivori']
[u'second', u'bomb', u'threat', u'greek', u'airlin']
[u'sixer', u'launch', u'season']
[u'smother', u'sentenc', u'decis', u'reserv']
[u'soccer', u'boss', u'pois', u'nation', u'leagu', u'decis']
[u'spain', u'pick', u'sevill', u'davi', u'final']
[u'spring', u'carniv', u'launch', u'melbourn']
[u'state', u'deal', u'wast', u'democrat']
[u'strike', u'earn', u'north', u'cairn', u'coach', u'season']
[u'stuttl', u'trial', u'tell', u'wit', u'hear', u'scream']
[u'sydney', u'council', u'manag', u'abandon', u'contract']
[u'sydney', u'woman', u'die', u'honeymoon']
[u'symond', u'unhappi', u'india', u'test', u'tour', u'snub']
[u'symond', u'unhappi', u'test', u'tour', u'snub']
[u'taliban', u'ambush', u'leav', u'dead']
[u'tare', u'servic', u'slash']
[u'ship', u'builder', u'keen', u'captur', u'armi', u'market']
[u'tech', u'giant', u'unit', u'stop', u'phish']
[u'telstra', u'sale', u'caus', u'dissent', u'anderson']
[u'tendulkar', u'give', u'test']
[u'tendulkar', u'plot', u'aussi', u'downfal']
[u'terror', u'peacekeep', u'endang', u'polic']
[u'thai', u'offici', u'analys', u'bird', u'fluke']
[u'hurt', u'truck', u'crash', u'shop']
[u'time', u'file', u'lawsuit', u'protect', u'sourc']
[u'time', u'honour', u'fall', u'polic']
[u'judg', u'face', u'charg', u'unauthoris']
[u'tourism', u'award', u'nomin', u'pioneer', u'settlement']
[u'tourism', u'deal', u'rid', u'high', u'cowboy', u'effort']
[u'tradit', u'remedi', u'wive', u'tale']
[u'refus', u'bail', u'assault', u'charg']
[u'cole', u'bomber', u'sentenc', u'death']
[u'iraq', u'hostag', u'renew', u'appeal', u'blair']
[u'uncl', u'sticker', u'add', u'molloy', u'woe']
[u'underworld', u'murder', u'plot', u'self', u'defenc']
[u'urg', u'quick', u'start', u'darfur', u'monitor', u'forc']
[u'warn', u'iraqi', u'malnutrit']
[u'market', u'gain']
[u'militari', u'reserv', u'baulk', u'iraq', u'afghanistan']
[u'poll', u'bush', u'lead']
[u'vass', u'villag', u'promis', u'excit', u'chang']
[u'victorian', u'queen', u'birthday', u'honour', u'winner', u'receiv']
[u'word', u'erupt', u'wast', u'dump', u'issu']
[u'wast', u'dump', u'assur', u'fail', u'convinc', u'govt']
[u'water', u'assur', u'fail', u'convinc', u'northern', u'pair']
[u'water', u'breakthrough', u'nation']
[u'warn', u'fuel', u'price', u'rise']
[u'welsh', u'aim', u'short', u'cours', u'titl']
[u'welsh', u'swim', u'histori', u'titl']
[u'wollongong', u'rememb', u'fall', u'polic']
[u'wood', u'ninth', u'world', u'time', u'trial']
[u'worksaf', u'crack', u'truck', u'driver', u'fatigu']
[u'zimbabw', u'cricket', u'union', u'deni', u'racism', u'charg']
[u'face', u'charg', u'nation', u'child']
[u'abbott', u'unconvinc', u'labor', u'medicar', u'mirag']
[u'abus', u'child', u'trust', u'stagger', u'scale', u'child']
[u'academ', u'expect', u'child', u'pornographi', u'arrest']
[u'accus', u'see', u'bridg', u'attack', u'wit']
[u'acdc', u'electrifi', u'melbourn', u'lane']
[u'adelaid', u'withdraw', u'enter']
[u'spam', u'spim', u'time', u'spit']
[u'bid', u'push', u'market', u'higher']
[u'alli', u'plan', u'iraq', u'despit', u'denial']
[u'appl', u'pear', u'grower', u'welcom', u'import', u'reject']
[u'arsenic', u'offer', u'hope', u'leukaemia', u'suffer']
[u'surpris', u'adelaid', u'unit', u'withdraw']
[u'auction', u'cash', u'alic']
[u'author', u'abalon', u'poach', u'arrest']
[u'autist', u'children', u'parent', u'protest', u'parliament']
[u'averag', u'gold', u'coast', u'hous', u'price', u'fall']
[u'bec', u'promis', u'stay', u'aliv', u'amidst', u'fund', u'cut']
[u'benefit', u'flow', u'water', u'pump', u'revamp']
[u'crowd', u'boost', u'horsham']
[u'blair', u'readi', u'respond', u'negoti']
[u'blair', u'readi', u'talk', u'hostag', u'taker']
[u'boss', u'ask', u'starcraft', u'plate', u'confirm']
[u'boss', u'ask', u'confirm', u'plate', u'ride']
[u'botox', u'offer', u'hope', u'stroke', u'patient']
[u'brack', u'back', u'medicar', u'gold']
[u'brain', u'surgeri', u'delay', u'stress', u'famili']
[u'british', u'opposit', u'accus', u'blair', u'lie', u'iraq']
[u'brown', u'see', u'attack', u'green']
[u'brown', u'tribun', u'hear', u'defer']
[u'drop', u'trivial', u'offenc']
[u'caloundra', u'document', u'plan', u'futur']
[u'camera', u'focus', u'gambier', u'spot']
[u'candid', u'invit', u'poverti', u'polici']
[u'candid', u'outlin', u'polici', u'forum']
[u'bomb', u'iraq', u'kill', u'wind']
[u'cat', u'saint', u'reward', u'draw']
[u'chief', u'justic', u'escap', u'jail', u'time']
[u'childcar', u'centr', u'owner', u'charg', u'child', u'porn']
[u'childcar', u'centr', u'owner', u'fight', u'child', u'porn']
[u'china', u'hint', u'hong', u'kong', u'involv']
[u'chip', u'forestri', u'polici']
[u'clijster', u'make', u'win', u'return']
[u'contracept', u'plan', u'aim', u'koala', u'number']
[u'council', u'consid', u'trade', u'hour', u'plan']
[u'councillor', u'consid', u'specif', u'area', u'need']
[u'council', u'reject', u'sneath', u'claim']
[u'council', u'seek', u'health', u'servic', u'local', u'represent']
[u'council', u'suggest', u'farm', u'futur', u'forum']
[u'council', u'woe', u'attribut', u'communic', u'breakdown']
[u'court', u'fin', u'dairi', u'distributor', u'milk', u'claim']
[u'court', u'hear', u'pitcairn', u'mayor', u'rap', u'woman', u'time']
[u'croc', u'forc', u'closur', u'waterhol']
[u'custom', u'seiz', u'fake', u'swap', u'card']
[u'dairi', u'fin', u'bogus', u'milk', u'claim']
[u'dakar', u'winner', u'sainct', u'kill', u'ralli', u'pharaoh']
[u'free', u'train', u'travel', u'perth', u'resid']
[u'develop', u'board', u'review', u'hamper', u'project']
[u'find', u'dinosaur', u'bone']
[u'disco', u'deter', u'petrol', u'sniff']
[u'docket', u'tip', u'fuel', u'region', u'servic']
[u'doctor', u'warn', u'anti', u'inflammatori', u'drug', u'risk']
[u'doubt', u'cast', u'marin', u'park', u'plan']
[u'energi', u'australia', u'boss', u'resign']
[u'energi', u'retail', u'play', u'custom', u'grip']
[u'environ', u'group', u'welcom', u'labor', u'forest', u'polici']
[u'farmer', u'ask', u'report', u'locust', u'threat']
[u'fatal', u'hallucinogen', u'arriv']
[u'father', u'unhappi', u'polic', u'killer', u'sentenc']
[u'fear', u'hold', u'dubbo', u'detent', u'centr']
[u'fenc', u'aim', u'protect', u'children', u'dead', u'river']
[u'hop', u'avoid', u'year', u'poor', u'season', u'start']
[u'fisher', u'lip', u'seal', u'millic', u'meet']
[u'fish', u'releas', u'aim', u'bolster', u'river', u'health']
[u'fitzgerald', u'seed', u'fourth']
[u'bond', u'head', u'wait', u'bail', u'decis']
[u'polic', u'marksman', u'win', u'neglig', u'suit']
[u'fresh', u'push', u'market', u'record']
[u'fund', u'cut', u'forc', u'trim', u'servic']
[u'gallop', u'welcom', u'medicar', u'gold', u'polici']
[u'gigg', u'warn', u'rooney', u'burnout']
[u'global', u'warm', u'spark', u'poor', u'outlook', u'bendigo']
[u'govt', u'demand', u'elect', u'cost', u'lib']
[u'govt', u'give', u'nuclear', u'dump', u'assur']
[u'govt', u'hail', u'child', u'porn', u'arrest', u'polic', u'victori']
[u'govt', u'interest', u'goldfield', u'salin', u'research']
[u'govt', u'promis', u'bank', u'servic', u'rural', u'area']
[u'govt', u'appeal', u'paedophil', u'compens', u'rule']
[u'govt', u'urg', u'forget', u'state', u'agreement', u'act', u'studi']
[u'govt', u'urg', u'rethink', u'mine', u'leas', u'payment']
[u'satellit', u'phone', u'illeg', u'fish', u'boat']
[u'green', u'lose', u'ranger', u'licenc']
[u'group', u'submiss', u'chopper', u'review']
[u'harradin', u'set', u'suitabl', u'questionnair']
[u'hart', u'hang', u'boot']
[u'hart', u'hang', u'boot']
[u'hayden', u'return', u'land', u'rebirth']
[u'heckler', u'jeer', u'downer', u'foreign', u'affair', u'debat']
[u'henin', u'hardenn', u'shake', u'virus']
[u'high', u'hop', u'hold', u'wind', u'farm', u'plan']
[u'holbrook', u'hous', u'hume', u'shire', u'administr']
[u'hop', u'appeal', u'rais', u'fund', u'fight', u'deport']
[u'horan', u'highlight', u'turf', u'club', u'inequ']
[u'hospit', u'run', u'capac']
[u'hospit', u'surgeri', u'plan', u'baffl', u'council']
[u'hous', u'shortag', u'forc', u'feedlot', u'oper', u'build']
[u'human', u'bone', u'grampian']
[u'hunter', u'export', u'safeti', u'idea', u'china']
[u'warn', u'rate', u'hike', u'growth', u'soar']
[u'injur', u'firefight', u'die', u'hospit']
[u'investor', u'fund', u'wed', u'card', u'debt']
[u'iraq', u'group', u'take', u'hostag', u'includ', u'women']
[u'iraq', u'train', u'slow', u'say', u'think', u'tank']
[u'isra', u'palestinian', u'kill', u'clash']
[u'jordan', u'realign', u'iraq']
[u'kashmiri', u'separatist', u'escal', u'violenc']
[u'knee', u'hold', u'price']
[u'labor', u'jam', u'hardi', u'boss', u'resign']
[u'lake', u'closur', u'spark', u'oyster', u'threat']
[u'landhold', u'urg', u'report', u'fire']
[u'latham', u'call', u'admit', u'mistak']
[u'latham', u'grey', u'vote', u'pitch', u'draw', u'mix', u'respons']
[u'leader', u'outlin', u'vision', u'territori']
[u'legisl', u'council', u'end', u'kalgoorli', u'sit']
[u'lgaq', u'offer', u'support', u'indigen', u'transit']
[u'lille', u'honour', u'waca', u'presid']
[u'lobbi', u'group', u'call', u'increas', u'fund']
[u'locust', u'hatch', u'rise', u'weather', u'heat']
[u'locust', u'west']
[u'machin', u'help', u'meatwork', u'boost', u'goat', u'meat', u'export']
[u'accus', u'plane', u'bomb', u'claim', u'front', u'court']
[u'charg', u'shoot', u'partner']
[u'die', u'booyal', u'tractor', u'accid']
[u'die', u'head', u'road', u'crash']
[u'die', u'railway', u'crash']
[u'drive', u'japan', u'parliament']
[u'tell', u'court', u'abus', u'murder', u'wife']
[u'martha', u'stewart', u'serv', u'sentenc', u'camp', u'cupcak']
[u'mayor', u'unhappi', u'minist', u'waterfront', u'plan']
[u'medicar', u'gold', u'fulli', u'fund', u'latham']
[u'medicar', u'gold', u'polici', u'need', u'examin', u'democrat']
[u'medicar', u'gold', u'blame', u'game', u'say', u'minist']
[u'million', u'imag', u'child', u'porn', u'raid']
[u'minist', u'reject', u'poultri', u'power', u'station', u'claim']
[u'minist', u'say', u'surgeri', u'decis']
[u'montgomeri', u'hear', u'novemb']
[u'land', u'seek', u'develop']
[u'arrest', u'child', u'porn', u'raid']
[u'mourinho', u'down', u'porto', u'gunner', u'hold', u'draw']
[u'say', u'elector', u'shake', u'sensic']
[u'nation', u'wide', u'oper', u'crack', u'child']
[u'nauru', u'parliament', u'vote', u'minist', u'suspens']
[u'near', u'charg', u'child', u'porn', u'crackdown']
[u'drug', u'hope', u'skin', u'cancer', u'patient']
[u'newman', u'host', u'plan', u'confer']
[u'technolog', u'provid', u'seat', u'driver', u'assist']
[u'centuri', u'fastest', u'human', u'woman']
[u'bond', u'say', u'busi', u'usual']
[u'north', u'famili', u'celebr', u'footbal', u'honour']
[u'squad', u'open']
[u'roadhous', u'lash', u'violent', u'storm']
[u'price', u'eas', u'posit', u'news', u'nigeria']
[u'owner', u'doubl', u'ident', u'car']
[u'photo', u'fingerprint', u'need', u'visit']
[u'plea', u'forest', u'region', u'tourism', u'fund']
[u'accus', u'latham', u'decept', u'medicar', u'gold']
[u'label', u'medicar', u'gold', u'hoax']
[u'governor', u'escap', u'prosecut', u'attempt']
[u'polic', u'arrest', u'child', u'porn', u'oper']
[u'polic', u'bust', u'nationwid', u'child', u'porn', u'ring']
[u'polic', u'rememb', u'fall', u'colleagu']
[u'polic', u'launch', u'road', u'crackdown']
[u'polic', u'teacher', u'charg', u'child', u'porn', u'bust']
[u'polic', u'target', u'major', u'highway', u'long', u'weekend']
[u'pont', u'india', u'test']
[u'prison', u'underworld', u'figur', u'reach', u'lawyer']
[u'privat', u'health', u'group', u'welcom', u'medicar', u'gold']
[u'research', u'prostat', u'cancer', u'advanc']
[u'quarantin', u'watchdog', u'independ']
[u'racism', u'inquiri', u'face', u'earli', u'bouncer']
[u'ranger', u'warn', u'contamin']
[u'rawl', u'win', u'barker', u'medal']
[u'region', u'road', u'toll', u'probe', u'take', u'submiss']
[u'research', u'gong', u'academ']
[u'residenti', u'zone', u'rais', u'communiti', u'group']
[u'retail', u'figur', u'baffl', u'economist']
[u'retail', u'figur', u'bless', u'homeown']
[u'retir', u'lynch', u'cop', u'match']
[u'ricketson', u'rub', u'king']
[u'roger', u'retain', u'time', u'trial', u'crown']
[u'row', u'australia', u'announc', u'coach', u'shake']
[u'rspca', u'question', u'anim', u'welfar', u'penalti']
[u'russia', u'approv', u'kyoto', u'protocol']
[u'russia', u'expect', u'ratifi', u'kyoto']
[u'scholarship', u'tourism', u'student', u'wide']
[u'scientist', u'tune', u'earth', u'vibe']
[u'scout', u'leader', u'jail', u'year', u'abus']
[u'chang', u'haven', u'idyl']
[u'chang', u'like', u'boost', u'tweed', u'resort']
[u'searcher', u'gippsland', u'trio']
[u'search', u'resum', u'miss', u'gippsland', u'trio']
[u'second', u'blast', u'target', u'rescuer', u'iraq']
[u'secur', u'concern', u'grind', u'british', u'airway', u'flight']
[u'seven', u'arrest', u'nation', u'child', u'porn', u'crackdown']
[u'sexual', u'abus', u'trial', u'underway', u'pitcairn']
[u'dead', u'gaza', u'violenc']
[u'sixer', u'sink', u'breaker', u'open']
[u'spaceshipon', u'make', u'success', u'flight']
[u'stuart', u'tight', u'lip', u'chang']
[u'survey', u'highlight', u'nlis', u'databas', u'eas']
[u'sydney', u'hospitalis', u'gunshot', u'wound']
[u'syria', u'agre', u'border', u'secur', u'upgrad']
[u'talk', u'progress', u'timor', u'talk']
[u'smoke', u'legisl', u'head', u'upper', u'hous']
[u'teacher', u'polic', u'offic', u'charg', u'child', u'porn']
[u'teen', u'kill', u'attack']
[u'teen', u'coober', u'pedi', u'race']
[u'typhoon', u'lash', u'japan']
[u'typhoon', u'leav', u'dead', u'miss', u'japan']
[u'uncertainti', u'wagga', u'polic', u'station', u'builder']
[u'launch', u'haiti', u'campaign']
[u'crude', u'reserv', u'calm', u'market']
[u'friend', u'report', u'insidi', u'cover']
[u'raid', u'fallujah', u'safe', u'hous']
[u'fingerprint', u'visitor']
[u'court', u'consid', u'dynamik', u'appeal']
[u'koala', u'pill']
[u'victorian', u'injur', u'hang', u'glide', u'accid']
[u'virgin', u'introduc', u'newcastl', u'gold', u'coast', u'flight']
[u'polic', u'arrest', u'child', u'porn']
[u'west', u'coast', u'famili', u'anxious', u'surgeri', u'delay']
[u'woolworth', u'trump', u'newbridg', u'bid']
[u'wreck', u'webcam']
[u'zimbabw', u'option', u'say', u'flintoff']
[u'face', u'court', u'follow', u'child', u'porn', u'crackdown']
[u'resid', u'face', u'child', u'porn', u'charg']
[u'abalon', u'fisher', u'warn', u'care']
[u'abbott', u'deni', u'urg', u'pell', u'criticis', u'labor']
[u'summon', u'issu', u'pornographi', u'crackdown']
[u'water', u'polici', u'gain', u'liber', u'attent']
[u'adelaid', u'fatal']
[u'consid', u'tribun', u'overhaul']
[u'albani', u'includ', u'child', u'porn', u'arrest']
[u'pledg', u'needi', u'school', u'fund']
[u'promis', u'radio', u'australia', u'fund', u'boost']
[u'short', u'chang', u'govt', u'labor']
[u'appl', u'grower', u'seek', u'mandatori', u'conduct', u'code']
[u'keen', u'adelaid', u'team']
[u'aussi', u'touch', u'ireland']
[u'australia', u'back', u'indonesia']
[u'author', u'destroy', u'killer', u'dog']
[u'baker', u'rise', u'occas', u'award']
[u'beatti', u'call', u'media', u'ombudsman', u'energex']
[u'benigni', u'iraq', u'comedi']
[u'crowd', u'turn', u'hear', u'council', u'rate', u'rise']
[u'name', u'uefa', u'group', u'stage']
[u'blair', u'undergo', u'treatment', u'heart', u'palpit']
[u'bond', u'licens', u'kill', u'hold']
[u'brisban', u'firm', u'begin', u'vioxx', u'class', u'action']
[u'british', u'airway', u'bomb', u'threat', u'hoax']
[u'british', u'drop', u'championship']
[u'build', u'approv', u'slump', u'year']
[u'bullet', u'newcastl']
[u'bulli', u'hospit', u'lose', u'doctor']
[u'bush', u'kerri', u'battl', u'iraq']
[u'candid', u'defend', u'doctor', u'plan']
[u'candid', u'seek', u'kalgoorli', u'ambul', u'boost']
[u'candid', u'urg', u'pledg', u'gippsland', u'fund']
[u'chamber', u'welcom', u'weekend', u'bank']
[u'childcar', u'centr', u'sale', u'owner', u'charg']
[u'child', u'porn', u'arrest', u'small', u'defenc']
[u'child', u'pornographi', u'sicken', u'latham']
[u'child', u'porn', u'raid', u'prompt', u'polic', u'check', u'review']
[u'child', u'porn', u'suspect', u'dead']
[u'cook', u'undergo', u'shoulder', u'surgeri']
[u'cost', u'fuel', u'expect', u'boost', u'crop', u'demand']
[u'council', u'administr', u'seek', u'recount']
[u'council', u'back', u'tent', u'embassi', u'retent']
[u'council', u'launch', u'internet', u'tourism', u'plan']
[u'council', u'rezon', u'riverland', u'fruit']
[u'custodi', u'battl', u'end', u'embassi', u'bomb', u'blast', u'victim']
[u'darwin', u'seat', u'draw', u'high', u'profil', u'lobbi']
[u'dawson', u'candid', u'prefer']
[u'dead', u'clash', u'escal', u'gaza']
[u'dozen', u'kill', u'samarra', u'offens']
[u'appeal', u'inadequ', u'crime', u'sentenc']
[u'driver', u'remind', u'holiday', u'traffic', u'blitz']
[u'island', u'possibl', u'nuclear', u'wast', u'dump']
[u'fallon', u'give', u'flame', u'spark']
[u'fijian', u'indian', u'minist', u'resign', u'amid', u'money', u'abus']
[u'final', u'oral', u'submiss', u'boundari', u'shake']
[u'firebug', u'urg', u'rethink', u'behaviour']
[u'fish', u'boat', u'tonn', u'hash']
[u'fitzgerald', u'draw', u'austria']
[u'flanneri', u'give', u'deadlin', u'prove', u'fit']
[u'flinder', u'home', u'search', u'child', u'porn', u'raid']
[u'probe', u'intensifi', u'sixth', u'nurs', u'home']
[u'bond', u'execut', u'grant', u'bail']
[u'champ', u'slam', u'ax', u'british']
[u'school', u'chaplain', u'arrest', u'child']
[u'school', u'chaplain', u'remand', u'child']
[u'fund', u'combat', u'petrol', u'sniff']
[u'fund', u'announc', u'miner', u'explor', u'centr']
[u'garrett', u'slam', u'coalit', u'approach', u'nuclear', u'wast']
[u'geraldton', u'seiz', u'child', u'porn', u'oper']
[u'govt', u'sign', u'central', u'deal']
[u'group', u'drive', u'home', u'push', u'road', u'fund']
[u'grower', u'welcom', u'appl', u'knockback']
[u'gympi', u'gold', u'sale', u'near', u'complet']
[u'hart', u'hang', u'footi', u'boot', u'promot', u'famili']
[u'hayden', u'find', u'form', u'tour', u'open']
[u'heritag', u'site', u'conserv', u'plan']
[u'high', u'court', u'back', u'nsws', u'special', u'crimin', u'restrict']
[u'high', u'court', u'decis', u'delay', u'backpay', u'public']
[u'highway', u'tragedi', u'rule', u'accident']
[u'hop', u'rain', u'delay', u'water', u'crackdown']
[u'hotlin', u'help', u'address', u'youth', u'homeless', u'plight']
[u'howard', u'costello', u'attack', u'labor', u'cost']
[u'howard', u'latham', u'tight', u'lip', u'forestri', u'polici']
[u'howard', u'pitch', u'grey', u'vote']
[u'indian', u'board', u'reach', u'deal']
[u'indigen', u'health', u'fund', u'need', u'increas']
[u'indonesia', u'name', u'embassi', u'suicid', u'bomber']
[u'intersect', u'upgrad', u'get', u'green', u'light']
[u'ipswich', u'welcom', u'home', u'troop', u'iraq']
[u'israel', u'begin', u'open', u'end', u'gaza', u'offens']
[u'jam', u'hardi', u'actu', u'upbeat', u'talk']
[u'jam', u'hardi', u'union', u'begin', u'asbesto', u'talk']
[u'jetstar', u'boost', u'local', u'flight', u'melbourn']
[u'john', u'kerri', u'win', u'presidenti', u'debat', u'poll']
[u'judg', u'order', u'releas', u'lennon', u'file']
[u'judg', u'success', u'appeal', u'assault']
[u'judg', u'weigh', u'penalti', u'microsoft']
[u'keown', u'place', u'transfer', u'list']
[u'killer', u'dog', u'destroy']
[u'kyoto', u'support', u'jubil', u'russia', u'back']
[u'kyoto', u'hurt', u'aust', u'industri']
[u'labor', u'pledg', u'improv', u'wag']
[u'land', u'near', u'pcyc', u'consid', u'polic', u'station']
[u'drink', u'tini', u'town', u'resid']
[u'latham', u'brand', u'abbott', u'liar', u'pell', u'comment']
[u'latham', u'defend', u'medicar', u'gold', u'plan']
[u'latham', u'make', u'age', u'care', u'pledg']
[u'lawyer', u'say', u'hunter', u'top', u'asbesto', u'victim', u'list']
[u'leader', u'court', u'grey', u'vote']
[u'liber', u'parti', u'flyer', u'draw', u'angri', u'respons']
[u'lobbi', u'seek', u'club', u'smoke', u'deadlin']
[u'lynch', u'remors', u'grand', u'final', u'brawl']
[u'magistr', u'wont', u'face', u'assault', u'charg', u'stand']
[u'intend', u'guilti', u'plea', u'child', u'porn', u'charg']
[u'manufactur', u'sector', u'maintain', u'growth']
[u'market', u'end', u'record']
[u'martin', u'confid', u'govt', u'regul', u'ranger']
[u'martyn', u'score', u'mumbai']
[u'mayor', u'stand', u'tourism', u'levi']
[u'mediocr', u'liverpool', u'face', u'exact', u'test', u'chelsea']
[u'meeuw', u'unavail', u'black', u'tour']
[u'metal', u'gain', u'dollar', u'sell']
[u'midlif', u'crise', u'male', u'menopaus', u'research']
[u'miner', u'analysi', u'lure', u'mine', u'investor']
[u'minist', u'reject', u'opposit', u'detaine', u'claim']
[u'arrest', u'expect', u'child', u'porn', u'crackdown']
[u'feder', u'seek', u'pesticid', u'author']
[u'snare', u'child', u'porn', u'crackdown']
[u'time', u'bauxit', u'plan']
[u'motocycl', u'bodi', u'criticis', u'rider', u'death']
[u'museum', u'reloc', u'save', u'council', u'million']
[u'narooma', u'prepar', u'blue']
[u'nation', u'trust', u'execut', u'offic', u'back', u'work']
[u'nauruan', u'presid', u'declar', u'state', u'emerg']
[u'nauru', u'speaker', u'evict', u'offic']
[u'newman', u'face', u'court', u'child', u'porn', u'raid']
[u'nigeria', u'start', u'nuclear', u'reactor', u'amid', u'unrest']
[u'charg', u'fatal', u'attack']
[u'fund', u'council', u'youth', u'coordin']
[u'candid', u'debat', u'doctor', u'shortag']
[u'price', u'climb']
[u'spill', u'clean', u'underway', u'north', u'coast']
[u'opposit', u'call', u'govt', u'kyoto']
[u'owen', u'keen', u'action']
[u'pair', u'face', u'bunburi', u'court', u'child', u'porn', u'raid']
[u'parent', u'children', u'centr', u'despit', u'porn']
[u'parti', u'urg', u'maintain', u'sydney', u'airport', u'region']
[u'pinochet', u'undergo', u'psychiatr', u'evalu']
[u'condemn', u'child', u'porn', u'ring']
[u'restat', u'iraq', u'commit']
[u'reveal', u'plan', u'latham']
[u'urg', u'rethink', u'kyoto', u'stanc']
[u'protest', u'caus', u'high', u'commiss', u'disrupt']
[u'polic', u'arrest', u'drug', u'traffic', u'charg']
[u'polic', u'campaign', u'help', u'road', u'death']
[u'polic', u'recognis', u'brave', u'effort']
[u'polic', u'seek', u'wit', u'stuttl', u'murder', u'trial']
[u'polic', u'seiz', u'drug', u'swan', u'hill', u'raid']
[u'polic', u'warn', u'driver', u'long', u'weekend', u'traffic', u'blitz']
[u'posti', u'bike', u'deliv', u'outback', u'challeng']
[u'premiership', u'bust', u'say', u'price']
[u'protest', u'high', u'commiss']
[u'push', u'toxic', u'wast', u'rail', u'option']
[u'rapist', u'stay', u'jail', u'indefinit']
[u'raid', u'spark', u'plea', u'public', u'report', u'child', u'porn']
[u'rain', u'stop', u'water', u'ban']
[u'rain', u'welcom', u'break', u'hill']
[u'razzaq', u'centuri', u'sink', u'zimbabw']
[u'region', u'develop', u'board', u'converg']
[u'report', u'show', u'public', u'valu', u'weed', u'control']
[u'rhode', u'peninsula', u'develop', u'creat', u'job']
[u'rock', u'lifter', u'agre', u'return', u'megalith']
[u'rooster', u'boss', u'fin', u'ricketson', u'outburst']
[u'rural', u'servic', u'prepar', u'season']
[u'ryan', u'lead', u'dog', u'price', u'pull']
[u'driver', u'warn', u'flood', u'danger']
[u'scientist', u'crack', u'eat', u'alga', u'genet', u'code']
[u'second', u'jail', u'kill', u'earn', u'prison', u'indefinit']
[u'second', u'pitcairn', u'face', u'court', u'charg']
[u'senden', u'soar', u'mississippi', u'lead']
[u'sewag', u'spill', u'spark', u'creek', u'warn']
[u'shark', u'death', u'prompt', u'net', u'rethink']
[u'solomon', u'candid', u'debat', u'post', u'atsic', u'polici']
[u'south', u'africa', u'confirm']
[u'studi', u'end', u'gold', u'hop']
[u'studi', u'highlight', u'nation', u'park', u'tourism', u'benefit']
[u'suicid', u'bomber', u'kill', u'pakistani']
[u'supermarket', u'compani', u'ventur', u'fuel', u'region']
[u'sweden', u'return', u'aborigin', u'remain']
[u'sydney', u'teacher', u'child', u'porn', u'charg', u'refus', u'bail']
[u'seek', u'offshor', u'nuclear', u'dump', u'assur']
[u'unveil', u'waterfront', u'author', u'propos']
[u'thiev', u'steal', u'bike', u'australian', u'cycl', u'team']
[u'tiwi', u'program', u'target', u'role', u'model', u'footbal']
[u'triumphant', u'paralympian', u'arriv', u'home']
[u'indonesian', u'women', u'take', u'hostag', u'iraq']
[u'underworld', u'figur', u'tri', u'fals', u'passport']
[u'union', u'meet', u'cqpa', u'impass']
[u'union', u'warn', u'custom', u'cut', u'threaten', u'check']
[u'unlead', u'fuel', u'clear', u'adelaid']
[u'risk', u'slide', u'irrelev', u'australia']
[u'begin', u'offens', u'samarra']
[u'compani', u'recal', u'arthriti', u'drug']
[u'scientist', u'sound', u'warn', u'volcano']
[u'victorian', u'polic', u'investig', u'fatal', u'shoot']
[u'introduc', u'holiday', u'doubl', u'demerit', u'point']
[u'watchdog', u'monitor', u'apart', u'plan']
[u'wild', u'weather', u'lash', u'central', u'coast']
[u'wind', u'farm', u'power', u'year']
[u'xaus', u'claim', u'provision', u'pole', u'qatar']
[u'zarqawi', u'group', u'claim', u'iraq', u'suicid', u'attack']
[u'zimbabw', u'race', u'probe', u'scrap']
[u'suspect', u'milit', u'catch', u'afghanistan']
[u'aborigin', u'warn', u'lock', u'forest', u'away']
[u'liber', u'pledg', u'earli', u'childhood', u'servic']
[u'qaeda', u'tape', u'urg', u'muslim', u'alli']
[u'qaeda', u'threat', u'tape', u'authent', u'downer']
[u'anglican', u'synod', u'address', u'child', u'abus']
[u'aussi', u'danz', u'join', u'palac']
[u'aussi', u'mccoy', u'return', u'motogp']
[u'aussi', u'england', u'clash']
[u'australia', u'warn', u'india', u'backlash']
[u'balmus', u'upset', u'starcraft']
[u'beach', u'plaqu', u'urg', u'surfer', u'line']
[u'beatti', u'get', u'honorari', u'doctor']
[u'beazley', u'fear', u'seat', u'green', u'prefer']
[u'free', u'french', u'journalist', u'founder']
[u'blair', u'exit', u'strategi', u'spark', u'success', u'fever']
[u'blast', u'india', u'kill']
[u'brazil', u'court', u'appeal', u'athen', u'marathon', u'gold']
[u'brownlow', u'dress', u'auction', u'sick', u'kid']
[u'camera', u'fault', u'forc', u'speed', u'fin', u'refund']
[u'champion', u'medal', u'judd', u'bell']
[u'chariti', u'urg', u'action', u'poverti', u'margin', u'seat']
[u'child', u'porn', u'crackdown', u'continu', u'despit', u'suicid']
[u'church', u'tighten', u'secur', u'check']
[u'club', u'dish', u'champion', u'accolad']
[u'coalit', u'fund', u'juvenil', u'diabet', u'research']
[u'democrat', u'child', u'abus', u'royal', u'commiss']
[u'democrat', u'launch', u'senat']
[u'desert', u'make', u'gai']
[u'driest', u'district', u'miss', u'rain']
[u'dutch', u'intellig', u'agent', u'arrest', u'treason']
[u'eldest', u'pitcairn', u'rape', u'suspect', u'tri']
[u'elvstroem', u'take', u'turnbul', u'stake']
[u'eriksson', u'warn', u'owen', u'england', u'place']
[u'extra', u'polic', u'call', u'grand', u'final']
[u'farm', u'output', u'quadrupl', u'eas', u'poverti']
[u'fashion', u'photograph', u'avedon', u'die']
[u'father', u'fight', u'doctor', u'babi', u'aliv']
[u'ferencvaro', u'deni', u'uefa', u'charg', u'millwal']
[u'destroy', u'hous']
[u'fit', u'program', u'encourag', u'famili', u'activ']
[u'flanneri', u'chanc', u'make', u'grand', u'final']
[u'foreign', u'recruit', u'eas', u'child', u'protect', u'crisi']
[u'forest', u'spray', u'breach', u'unpunish']
[u'armstrong', u'sport', u'doctor', u'get', u'suspend']
[u'arrest', u'multipl', u'stab']
[u'mull', u'plan', u'eas', u'crisi']
[u'gibson', u'pray', u'stalker', u'leav']
[u'green', u'bicycl', u'summit', u'propos']
[u'guantanamo', u'detaine', u'alleg', u'abus', u'tortur']
[u'gunmen', u'shoot', u'dead', u'cross', u'gaza', u'border', u'fenc']
[u'hama', u'milit', u'kill', u'gaza', u'raid']
[u'hawk', u'tame', u'tiger']
[u'heart', u'order', u'blair', u'eye', u'term']
[u'high', u'speed', u'chase', u'end', u'arrest']
[u'hospit', u'staff', u'await', u'test', u'asbesto', u'scare']
[u'hostag', u'offer', u'return', u'bashir']
[u'hurrican', u'forc', u'nasa', u'delay', u'flight']
[u'indefinit', u'detent', u'rule']
[u'indian', u'board', u'reach', u'deal']
[u'india', u'alert', u'cyclon', u'approach']
[u'indigen', u'health', u'servic', u'approach', u'capac']
[u'indonesia', u'appeal', u'nation', u'releas']
[u'iraqi', u'behead', u'work']
[u'israel', u'expand', u'gaza', u'strike', u'kill', u'palestinian']
[u'israel', u'urg', u'avoid', u'civilian', u'death', u'gaza']
[u'jordanian', u'princ', u'request', u'bush', u'brain', u'view']
[u'judiciari', u'improv', u'public', u'imag', u'chief', u'justic']
[u'kewel', u'warn', u'chelsea', u'liverpool', u'backlash']
[u'labor', u'dodg', u'financi', u'check', u'say', u'costello']
[u'labor', u'pledg', u'place']
[u'latham', u'sorri', u'campaign']
[u'latham', u'kirribilli', u'hous', u'peopl']
[u'lewi', u'nation', u'seri']
[u'liber', u'sprinkler', u'plan', u'disadvantag', u'elder']
[u'lightn', u'strike', u'fallon', u'fire', u'flame']
[u'kill', u'accid']
[u'mcgrath', u'langer', u'shine', u'draw', u'tour', u'open']
[u'megawati', u'appeal', u'hostag', u'releas']
[u'melbourn', u'polic', u'buller', u'search']
[u'microsoft', u'confid', u'appeal', u'hear', u'end']
[u'milit', u'palestinian', u'sack']
[u'miss', u'fisherman', u'bodi', u'wash', u'ashor']
[u'miss', u'mount', u'buller', u'bushwalk']
[u'motorcyclist', u'gain', u'road', u'safeti', u'repres']
[u'chinatown', u'gateway', u'open']
[u'nigeria', u'militia', u'pledg', u'ceas']
[u'norther', u'flemington', u'return']
[u'offens', u'samarra', u'leav', u'dead']
[u'offshor', u'dump', u'safest', u'nuclear', u'wast', u'option', u'senat']
[u'price', u'hold']
[u'pace', u'club', u'penalis', u'cut', u'debt']
[u'paradorn', u'power', u'feder', u'test']
[u'peoplesoft', u'shake', u'pleas', u'wall', u'street']
[u'perth', u'resid', u'ask', u'consid', u'river', u'health']
[u'phallic', u'polit', u'artwork', u'rais', u'eyebrow']
[u'polic', u'search', u'driver', u'cotteslo']
[u'pont', u'target', u'test']
[u'powel', u'deni', u'bungl', u'lade', u'hunt']
[u'premiership', u'mind', u'doggi', u'folk']
[u'promin', u'women', u'bare', u'cancer', u'fund']
[u'public', u'servant', u'review']
[u'punter', u'coalit', u'poll', u'loom']
[u'qanta', u'deni', u'secret', u'cabin', u'crew', u'train']
[u'rail', u'termin', u'track', u'nation', u'build']
[u'ranger', u'hunt', u'massiv', u'croc']
[u'reformist', u'prefer', u'chang']
[u'refurbish', u'rottnest', u'accommod']
[u'revitalis', u'birdi', u'blitz']
[u'roo', u'sign']
[u'rural', u'doctor', u'seek', u'indigen', u'health', u'commit']
[u'russia', u'arrest', u'suspect', u'milit']
[u'welcom', u'labor', u'dolphin', u'sanctuari', u'plan']
[u'senden', u'second', u'mississippi']
[u'serbian', u'court', u'receiv', u'crime', u'case']
[u'continu', u'storm', u'clean']
[u'seven', u'kill', u'strike']
[u'sharapova', u'advanc', u'korea', u'open', u'final']
[u'sharapova', u'storm', u'past', u'stosur']
[u'shopper', u'welcom', u'howard', u'polici']
[u'singl', u'puff', u'damag', u'smoker']
[u'hospitalis', u'incid']
[u'soccer', u'club', u'snag', u'spectat']
[u'socceroo', u'close', u'strength', u'farina']
[u'south', u'africa', u'zealand', u'japan', u'rugbi']
[u'space', u'explos', u'point', u'supernova']
[u'spain', u'move', u'approv', u'marriag']
[u'teacher', u'minist', u'face', u'child', u'porn', u'charg']
[u'teen', u'charg', u'hill', u'stab']
[u'tendulkar', u'name', u'india']
[u'tens', u'calm', u'samarra', u'iraqi', u'offens']
[u'thailand', u'propos', u'south', u'east', u'asian', u'wildlif']
[u'pitcairn', u'trial', u'begin']
[u'thousand', u'shiit', u'youth', u'riot', u'pakistan']
[u'charg', u'dirti', u'bomb', u'sting']
[u'tighter', u'porn', u'law', u'consider', u'govt']
[u'lead', u'alleg', u'alcohol', u'runner', u'arrest']
[u'aloisi', u'osasuna', u'mileston']
[u'kill', u'injur', u'gaza', u'camp', u'strike']
[u'hostag', u'brother', u'claim', u'home', u'raid']
[u'condemn', u'pakistan', u'mosqu', u'bomb']
[u'captiv', u'presidenti', u'debat']
[u'confid', u'qaeda', u'threat', u'tape', u'authent']
[u'destroy', u'deploy', u'near', u'north', u'korea']
[u'investig', u'guantanamo', u'tortur', u'claim']
[u'volcano', u'blow', u'steam']
[u'woman', u'charg', u'oxygen', u'equip', u'theft']
[u'workplac', u'death', u'law', u'enhanc', u'busi', u'govt']
[u'kill', u'factori', u'blast']
[u'black', u'hole', u'medicar', u'gold', u'andrew', u'say']
[u'abus', u'victim', u'criticis', u'church', u'curriculum']
[u'actcoss', u'welcom', u'labor', u'polici']
[u'afghan', u'author', u'arrest', u'milit', u'ahead', u'poll']
[u'alleg', u'embassi', u'bomber', u'widow', u'put', u'faith']
[u'anim', u'right', u'activist', u'receiv', u'intern']
[u'arson', u'squad', u'investig', u'fatal']
[u'aussi', u'touch', u'mississippi']
[u'beachley', u'crash', u'world', u'champ', u'reign', u'danger']
[u'beatti', u'deni', u'energex', u'boss', u'conspiraci', u'theori']
[u'bulldog', u'gatecrash', u'freddi', u'farewel', u'parti']
[u'burrow', u'hobgood', u'elimin', u'franc']
[u'cahil', u'socceroo', u'horror', u'tackl']
[u'cana', u'cruis', u'shanghai', u'titl']
[u'carr', u'want', u'head', u'west']
[u'child', u'porn', u'penalti', u'rais']
[u'church', u'offer', u'counsel', u'child', u'porn']
[u'coastlin', u'scrutini', u'beach', u'competit']
[u'confer', u'cover', u'women', u'issu']
[u'costello', u'resign', u'wrong', u'labor', u'cost']
[u'council', u'seek', u'nuclear', u'dump', u'veto']
[u'countri', u'music', u'suicid', u'studi', u'top', u'ignobel', u'award']
[u'crump', u'break', u'australian', u'speedway', u'drought']
[u'custom', u'offic', u'kill', u'antiqu', u'miss']
[u'danih', u'extend', u'stay', u'demon']
[u'darwin', u'council', u'eureka', u'flag']
[u'death', u'gandhi', u'anniversari']
[u'debat', u'boost', u'kerri', u'poll', u'chanc']
[u'doctor', u'nurs', u'attack', u'coalit', u'medicar', u'lie']
[u'doubt', u'rais', u'defenc', u'contract', u'flip']
[u'dream', u'start', u'wildcat', u'coach', u'fisher']
[u'drought', u'fundrais', u'music', u'farmer', u'ear']
[u'stay', u'clear', u'ireland']
[u'england', u'squash', u'australia', u'take', u'world', u'titl']
[u'suspect', u'detain', u'franc']
[u'father', u'toddler', u'miss']
[u'express', u'run', u'paradorn']
[u'fight', u'continu', u'fallujah']
[u'aristid', u'counterpart', u'arrest', u'stand']
[u'energex', u'chairman', u'straight', u'shooter']
[u'fresh', u'blast', u'north', u'east', u'india']
[u'nation', u'agre', u'iraq', u'debt']
[u'ganguli', u'talk', u'indian', u'fear', u'factor']
[u'gibernau', u'win', u'qatar', u'rossi', u'crash']
[u'grand', u'final', u'countdown', u'underway']
[u'grand', u'final', u'countdown']
[u'green', u'propos', u'child', u'protect', u'law']
[u'gunner', u'cruis', u'magic']
[u'health', u'fund', u'call', u'indigen', u'support']
[u'howard', u'rule', u'increas']
[u'polici', u'maker', u'open', u'annual', u'meet', u'heavi']
[u'immunis', u'drive', u'african', u'polio', u'case']
[u'investig', u'launch', u'man', u'bodi']
[u'israel', u'claim', u'milit', u'vehicl']
[u'israel', u'seek', u'remov', u'unwra', u'head']
[u'itali', u'flag', u'troop', u'pullout', u'iraqi', u'elect']
[u'jerilderi', u'resid', u'warn', u'water', u'qualiti']
[u'latham', u'clear', u'wait', u'list', u'elder']
[u'lennon', u'murder', u'parol']
[u'liber', u'childcar', u'plan', u'lack', u'govt']
[u'light', u'aircraft', u'make', u'emerg', u'land']
[u'lightn', u'strike', u'boomer', u'bounc']
[u'lone', u'greek', u'board', u'love']
[u'charg', u'wed', u'recept', u'shoot']
[u'mcginti', u'keen', u'extend', u'child', u'porn', u'penalti']
[u'mcgrath', u'langer', u'shine', u'draw', u'tour', u'open']
[u'hospitalis', u'boat', u'accid']
[u'mental', u'health', u'pledg', u'short']
[u'mildura', u'investig', u'continu']
[u'motorcyclist', u'die', u'road', u'accid']
[u'mount', u'helen', u'pois', u'erupt']
[u'ancestor', u'secur', u'world', u'healer']
[u'ball', u'soar', u'secret', u'black', u'test']
[u'injuri', u'crisi', u'clijster']
[u'grand', u'final', u'underway']
[u'price', u'threaten', u'global', u'recoveri']
[u'onlin', u'medic', u'sit', u'caus', u'cyberchondria']
[u'ozon', u'layer', u'hole', u'shrink']
[u'palestinian', u'declar', u'state', u'emerg']
[u'parti', u'empt', u'petrol', u'sniff', u'report']
[u'peopl', u'evacu', u'area', u'near', u'mount', u'helen']
[u'pitcairn', u'island', u'pray', u'trial', u'continu']
[u'polic', u'sniff', u'chase', u'driver']
[u'polic', u'seek', u'info', u'botan', u'garden', u'assault']
[u'poll', u'tight', u'race', u'margin']
[u'pope', u'beatifi', u'controversi', u'cathol', u'figur']
[u'prescript', u'plan', u'benefit', u'australian']
[u'price', u'season', u'come', u'close']
[u'privat', u'colleg', u'moot', u'eas', u'skill', u'shortag']
[u'protest', u'truth', u'govern']
[u'ranger', u'dous', u'gasp']
[u'rebel', u'leader', u'hold', u'despit', u'nigerian', u'ceas', u'deal']
[u'region', u'airlin', u'report', u'recommend', u'ignor']
[u'rise', u'cost', u'grind']
[u'rooster', u'half', u'time']
[u'rugbi', u'net', u'council', u'sport', u'award']
[u'screensound', u'anniversari', u'reviv', u'independ']
[u'seal', u'hunt', u'norwegian', u'tourist']
[u'search', u'injur', u'toddler', u'father', u'call']
[u'sharapova', u'captur', u'korea', u'open']
[u'sharon', u'move', u'widen', u'gaza', u'offens']
[u'sharon', u'vow', u'rocket', u'strike']
[u'growth', u'log', u'polici', u'forest', u'group']
[u'high', u'happi', u'john', u'protest', u'target']
[u'submerg', u'truck', u'pose', u'pollut', u'risk']
[u'syria', u'brand', u'report', u'inaccur']
[u'thai', u'girl', u'infect', u'bird']
[u'transplant', u'game', u'organis', u'prais', u'adelaid']
[u'tulip', u'festiv', u'bloom']
[u'bodi', u'iraq']
[u'unbeaten', u'chievo', u'lecc']
[u'nuclear', u'watchdog', u'arriv', u'south', u'korea']
[u'upgrad', u'leader', u'grave', u'promis']
[u'iraqi', u'forc', u'tighten', u'grip', u'samarra']
[u'tighten', u'hold', u'samarra']
[u'warplan', u'kill', u'fallujah', u'raid']
[u'warm', u'welcom', u'sailor', u'home', u'iraq']
[u'wast', u'valencia', u'hold', u'draw']
[u'belt', u'india', u'spinner', u'say', u'gilchrist']
[u'whistleblow', u'prais', u'pursuit', u'alleg', u'paedophil']
[u'wilder', u'societi', u'warn', u'launceston', u'water', u'risk']
[u'wit', u'locat', u'backpack', u'murder', u'case']
[u'woman', u'die', u'fall', u'train']
[u'women', u'slip', u'equiti', u'fight']
[u'aborigin', u'ignor', u'forest', u'debat', u'democrat']
[u'accus', u'polic', u'offic', u'threaten', u'inform', u'court']
[u'actu', u'join', u'health', u'worker', u'support', u'medicar']
[u'attack', u'major', u'parti', u'indigen', u'health']
[u'anderson', u'uncertain', u'hold', u'eden', u'monaro']
[u'angler', u'think', u'fall', u'boat']
[u'anglican', u'church', u'screen', u'priest', u'worker']
[u'anglican', u'discuss', u'friendship', u'priest']
[u'arnhem', u'land', u'incom', u'go', u'drug']
[u'author', u'urg', u'labor', u'match', u'dementia', u'fund']
[u'bathurst', u'continu', u'push', u'bendigo', u'bank']
[u'battl', u'erni', u'wipe', u'major', u'miseri', u'tiger', u'slump']
[u'beachley', u'face', u'world', u'championship', u'wipe']
[u'beckham', u'stay', u'charg', u'say', u'sven']
[u'bigley', u'hand', u'group']
[u'black', u'rhino', u'hunt', u'lift']
[u'boati', u'urg', u'help', u'crime']
[u'box', u'champ', u'anyo', u'consid', u'titl']
[u'break', u'hill', u'doc', u'case', u'worker']
[u'brown', u'cop', u'match']
[u'buchanan', u'lash', u'terribl', u'wicket']
[u'build', u'group', u'consid', u'merger', u'plan']
[u'bulldoz', u'mishap', u'put', u'hospit']
[u'bull', u'rider', u'belt', u'golden', u'ride']
[u'bundaberg', u'welcom', u'home', u'paralymp', u'gold', u'medallist']
[u'nation', u'standard', u'assess', u'oversea']
[u'cambodia', u'approv', u'khmer', u'roug', u'tribun']
[u'cambodia', u'concern', u'crime', u'trial', u'cost']
[u'candid', u'want', u'half', u'town', u'resid']
[u'bomb', u'kill', u'iraq']
[u'crash', u'leav', u'burn']
[u'carr', u'want', u'head', u'west']
[u'chamber', u'showcas', u'parti', u'workplac', u'differ']
[u'chines', u'demand', u'give', u'cattl', u'export', u'boost']
[u'christian', u'parti', u'green']
[u'clark', u'hodg', u'wait', u'selector']
[u'move', u'strengthen', u'anti', u'nuclear', u'dump', u'law']
[u'coalit', u'commit', u'veteran', u'care']
[u'coalit', u'keep', u'elect', u'win', u'lead']
[u'coalit', u'extend', u'bowel', u'cancer', u'screen', u'program']
[u'cole', u'strike', u'keep', u'chelsea', u'touch']
[u'council', u'consid', u'beach']
[u'council', u'consid', u'immedi', u'airport', u'expans']
[u'council', u'seek', u'solut', u'abandon', u'home']
[u'council', u'weigh', u'build', u'plan']
[u'countri', u'music', u'fan', u'break', u'attend', u'record']
[u'court', u'ask', u'throw', u'lewi', u'neglig', u'case']
[u'crump', u'speed', u'world', u'championship']
[u'darwin', u'cabbi', u'concern', u'drug', u'hous']
[u'death', u'toll', u'continu', u'rise', u'isra', u'offens']
[u'detect', u'face', u'court', u'drug', u'theft']
[u'dog', u'celebr', u'fairytal', u'tumultu', u'year']
[u'driver', u'remind', u'doubl', u'demerit', u'point']
[u'drogba', u'sidelin', u'groin', u'injuri']
[u'earli', u'trade', u'talk', u'focus']
[u'effort', u'save', u'chees', u'factori']
[u'clear', u'meatwork', u'chemic', u'spill']
[u'leader', u'hold', u'french', u'swoop']
[u'eyr', u'peninsula', u'wilder', u'area', u'gain', u'protect']
[u'famili', u'distinct', u'church', u'candid', u'say']
[u'farm', u'breakthrough', u'offer', u'higher', u'yield']
[u'father', u'daughter', u'hurt', u'shed', u'blaze']
[u'feder', u'roll', u'roddick', u'thailand', u'titl']
[u'ferdinand', u'rooney', u'campbel', u'england', u'squad']
[u'figur', u'highlight', u'wild', u'respons']
[u'firm', u'offer', u'apprentic', u'incent']
[u'footbal', u'team', u'cri', u'racism', u'refere', u'snub']
[u'forestri', u'group', u'attack', u'labor', u'polici', u'announc']
[u'cricket', u'face', u'fraud', u'charg']
[u'news', u'admit', u'publish', u'fake', u'kerri', u'stori']
[u'friendli', u'pip', u'price', u'custom', u'loyalti']
[u'fruit', u'grower', u'claim', u'victori', u'code']
[u'funk', u'win', u'mississippi']
[u'gaddafi', u'ask', u'help', u'secur', u'british', u'hostag']
[u'gaza', u'offens', u'continu']
[u'girl', u'latest', u'thai', u'bird', u'victim']
[u'glider', u'converg', u'dalbi', u'event']
[u'govt', u'depart', u'urg', u'improv', u'custom', u'servic']
[u'govt', u'promis', u'film', u'industri']
[u'govt', u'urg', u'prevent', u'rural', u'campus', u'closur']
[u'green', u'hour', u'work', u'week']
[u'green', u'delay', u'eden', u'monaro', u'prefer', u'decis']
[u'hama', u'command', u'kill', u'isra', u'strike']
[u'hospit', u'staff', u'defer', u'industri', u'action']
[u'howard', u'confid', u'win', u'elect']
[u'huge', u'arriv', u'south', u'coast']
[u'india', u'order', u'troop', u'quell', u'north', u'eastern', u'violenc']
[u'strong', u'miner', u'sand', u'plan']
[u'isra', u'raid', u'target', u'hama', u'leader']
[u'itali', u'put', u'asylum', u'seeker', u'flight', u'home']
[u'elect', u'countdown']
[u'kit', u'help', u'identifi', u'domest', u'violenc', u'victim']
[u'labor', u'rule', u'wholesal', u'loss', u'public']
[u'labor', u'promis', u'power', u'station', u'latrob', u'valley']
[u'labor', u'promis', u'tafe', u'place', u'eas', u'skill', u'shortag']
[u'labor', u'unveil', u'forest', u'polici']
[u'land', u'council', u'member', u'financi', u'updat']
[u'larsson', u'fire', u'barca', u'real', u'collaps']
[u'latham', u'expect', u'announc', u'forest', u'polici']
[u'latham', u'hit', u'medicar', u'gold', u'critic']
[u'latham', u'pledg', u'save', u'tree', u'job']
[u'doblo', u'shut', u'rocki', u'shop']
[u'liber', u'boost', u'polic', u'number']
[u'lib', u'borrow', u'fund', u'capit', u'work']
[u'lobster', u'season', u'open', u'price', u'high']
[u'lockyer', u'lead', u'kangaroo', u'timmin', u'miss']
[u'longer', u'creek', u'fish', u'impos']
[u'longford', u'bakeri', u'take', u'cake', u'award']
[u'charg', u'bundaberg', u'assault']
[u'escap', u'fieri', u'crash']
[u'injur', u'drive', u'shoot', u'outsid']
[u'injur', u'hous', u'explos']
[u'manni', u'releas', u'hospit']
[u'murder', u'charg', u'hang', u'cell']
[u'court', u'caloundra', u'death']
[u'market', u'hit', u'high', u'despit', u'holiday']
[u'mayor', u'deputi', u'clear', u'elect', u'irregular']
[u'medicar', u'gold', u'polici', u'unsustain']
[u'minist', u'reject', u'launceston', u'water', u'claim']
[u'miss', u'girl', u'bike', u'mishap']
[u'miss', u'motorcyclist', u'safe']
[u'miss', u'trail', u'bike', u'rider']
[u'mobil', u'phone', u'vulner', u'hacker', u'secur']
[u'quarantin', u'restrict', u'lift', u'canker']
[u'violenc', u'hit', u'north', u'east', u'india']
[u'motorist', u'warn', u'long', u'weekend', u'road', u'death']
[u'call', u'immedi', u'good', u'samaritan', u'protect']
[u'nation', u'question', u'extens']
[u'natur', u'reserv', u'open', u'croc', u'scare']
[u'injuri', u'end', u'clijster', u'season']
[u'tamworth', u'council', u'select', u'mayor']
[u'nida', u'showcas', u'teach', u'program', u'whyalla']
[u'nightclub', u'cast', u'doubt', u'lockout']
[u'review', u'rehabilit', u'program', u'young']
[u'govt', u'introduc', u'tougher', u'child', u'porn', u'law']
[u'offici', u'result', u'declar', u'winner']
[u'ogradi', u'pip', u'fourth', u'italian', u'world']
[u'opposit', u'pledg', u'psychiatr', u'facil', u'solv']
[u'traffic', u'fin', u'issu', u'long', u'weekend']
[u'owen', u'doubt', u'wale', u'match']
[u'pitcairn', u'rape', u'complain', u'evid', u'doubt']
[u'judg', u'water', u'alleg', u'threaten']
[u'polic', u'investig', u'mildura', u'bodi']
[u'polic', u'investig', u'parti', u'attack']
[u'polic', u'arrest', u'bomaderri', u'stab']
[u'polic', u'drink', u'drive', u'arrest']
[u'polic', u'probe', u'hotel', u'assault']
[u'polic', u'rule', u'truck', u'crash', u'river', u'contamin']
[u'porn', u'suspect', u'suicid', u'spark', u'polic', u'review']
[u'psycho', u'actress', u'leigh', u'die']
[u'rann', u'confid', u'destroy', u'contract']
[u'rebel', u'georgian', u'region', u'elect', u'leader']
[u'record', u'reward', u'offer', u'morecomb', u'case']
[u'redknapp', u'say', u'sorri', u'cahil', u'horror', u'tackl']
[u'region', u'airlin', u'hope', u'resolv', u'airport']
[u'resid', u'urg', u'fear', u'newri', u'plan']
[u'retrial', u'begin', u'hindu', u'religi', u'riot', u'suspect']
[u'rhiannon', u'campaign', u'coal', u'plan']
[u'roma', u'fight', u'inter', u'juve', u'stay']
[u'rural', u'adjust', u'author', u'reach', u'year']
[u'safeti', u'breach', u'expos', u'farm']
[u'salvo', u'ponder', u'bega', u'blaze', u'damag']
[u'schwarzer', u'heroic', u'spur', u'chanc', u'trafford']
[u'scientist', u'claim', u'sar', u'vaccin', u'breakthrough']
[u'scientist', u'warn', u'volcano', u'erupt', u'immin']
[u'seaplan', u'land', u'mishap', u'mysteri']
[u'search', u'continu', u'miss', u'girl']
[u'search', u'resum', u'miss', u'trail', u'bike', u'rider']
[u'sewerag', u'woe', u'spark', u'plea', u'avoid', u'beach']
[u'spark', u'airport', u'scare']
[u'share', u'market', u'start', u'trade', u'week', u'strong']
[u'singapor', u'plane', u'divert', u'bomb', u'threat']
[u'slovenian', u'conced', u'defeat']
[u'solomon', u'candid', u'stress', u'parti', u'differ']
[u'space', u'ship', u'prize', u'win', u'flight']
[u'spotlight', u'carr', u'trade', u'underway']
[u'student', u'exam']
[u'studi', u'highlight', u'student', u'board', u'anxieti']
[u'sudan', u'consid', u'tribal', u'troubl', u'darfur']
[u'sunday', u'trade', u'trial', u'nowra']
[u'minist', u'question', u'hypocrit', u'forestri']
[u'teacher', u'charg', u'child', u'porn', u'crackdown']
[u'test', u'telecast', u'right', u'deal', u'final', u'strike']
[u'toddler', u'desert', u'trek']
[u'chief', u'call', u'gaza', u'offens']
[u'strike', u'kill', u'fallujah']
[u'enjoy', u'sweet', u'smell', u'nobel', u'success']
[u'plan', u'strike', u'insurg', u'fallujah']
[u'ute', u'rewrit', u'muster', u'record', u'book']
[u'govt', u'reject', u'concern', u'gift', u'student']
[u'viduka', u'join', u'socceroo', u'sick', u'list']
[u'charg', u'possess', u'child', u'pornographi']
[u'world', u'screen', u'product']
[u'photograph', u'reward']
[u'water', u'author', u'highlight', u'cost', u'water', u'move']
[u'trial', u'electron', u'prison', u'track']
[u'weekend', u'bank', u'expect', u'boost', u'region']
[u'western', u'farmer', u'welcom', u'rain']
[u'woman', u'remand', u'attempt', u'doubl', u'murder', u'charg']
[u'women', u'wheatbelt', u'crash']
[u'youni', u'malik', u'lead', u'pakistan', u'narrow']
[u'youth', u'custodi', u'armidal', u'break']
[u'arrest', u'sydney', u'real', u'estat', u'fraud']
[u'boost', u'plan', u'electr', u'suppli']
[u'abbott', u'give', u'tweed', u'hour', u'clinic']
[u'academ', u'predict', u'dawson', u'hold', u'seat']
[u'academ', u'predict', u'livermor']
[u'accus', u'shoebomb', u'accomplic', u'face', u'trial']
[u'protest', u'ralli', u'canadian', u'asbesto']
[u'aerial', u'spray', u'oppon', u'seek', u'feder', u'probe']
[u'agenc', u'say', u'buyer', u'tell']
[u'criticis', u'vail']
[u'promis', u'dubbo', u'machin']
[u'review', u'steal', u'indigen', u'wag', u'issu']
[u'say', u'medicar', u'gold', u'plan', u'conceiv']
[u'anglican', u'church', u'vote', u'women', u'bishop']
[u'arab', u'nation', u'demand', u'isra', u'raid']
[u'arthur', u'japan', u'open', u'round']
[u'australian', u'injur', u'china', u'base', u'jump']
[u'australian', u'open', u'opt', u'night', u'final']
[u'australian', u'question', u'mysteri', u'land']
[u'bash', u'victim', u'say', u'assault', u'unprovok']
[u'bet', u'agenc', u'highlight', u'trend']
[u'push', u'market', u'higher']
[u'blair', u'africa', u'day', u'heart']
[u'blignaut', u'miss', u'tiger', u'match']
[u'boat', u'carri', u'illeg', u'immigr', u'sink', u'tunisia']
[u'bog', u'aircraft', u'free']
[u'bog', u'stump', u'airport', u'author']
[u'bosnian', u'muslim', u'command', u'face', u'crime', u'charg']
[u'kill', u'latest', u'east', u'violenc', u'medic']
[u'reveal', u'delay', u'detect', u'kwinana', u'spill']
[u'brack', u'accus', u'lie', u'freeway', u'toll']
[u'breath', u'test', u'declin', u'proof', u'polic', u'need']
[u'bull', u'sale', u'live']
[u'bunburi', u'urg', u'gear', u'head', u'influx']
[u'busi', u'confid', u'grow', u'despit', u'sale', u'slump']
[u'cahil', u'injuri', u'relief']
[u'continu', u'drought']
[u'cath', u'comment', u'spark', u'union', u'concern']
[u'cat', u'assist', u'lion']
[u'children', u'hospit', u'employe', u'question', u'porn']
[u'chines', u'industri', u'region', u'leav', u'cold']
[u'church', u'reject', u'regist', u'critic']
[u'clark', u'wait', u'test', u'debut']
[u'clijster', u'futur', u'peril', u'injuri', u'setback']
[u'criticis', u'latham', u'grant', u'comment']
[u'chief', u'highlight', u'amphetamin', u'concern']
[u'coalit', u'forc', u'peddl', u'comment']
[u'coalit', u'boost', u'galleri', u'fund']
[u'coalit', u'encourag', u'hydrogen', u'fuel', u'cell', u'usag']
[u'council', u'chang', u'beach', u'warn']
[u'council', u'chief', u'see', u'benefit', u'report']
[u'council', u'decid', u'phone', u'tower']
[u'court', u'approv', u'live', u'telecast', u'test', u'seri']
[u'court', u'hear', u'accus', u'struggl', u'backpack']
[u'crane', u'driver', u'refus', u'statement', u'coron']
[u'croc', u'wont', u'deter', u'tourist', u'say', u'industri', u'bodi']
[u'darwin', u'defend', u'iraq', u'troop', u'comment']
[u'delahunti', u'reject', u'moratorium', u'plan']
[u'demand', u'famili', u'contact', u'servic', u'leav', u'parent']
[u'democrat', u'polici', u'call', u'extra', u'educ']
[u'derbi', u'crime', u'drop', u'liquor', u'ban']
[u'develop', u'sign', u'hous', u'plan']
[u'disabl', u'scheme', u'starv', u'fund']
[u'docker', u'juggl', u'trade', u'option']
[u'drop', u'explor', u'concern', u'mine', u'industri']
[u'eagl', u'midfield', u'kerr', u'face', u'prescript']
[u'eagl', u'midfield', u'kerr', u'face', u'prescript', u'charg']
[u'electron', u'seat', u'driver', u'improv', u'road', u'safeti']
[u'elton', u'john', u'tirad', u'denounc', u'mime', u'madonna']
[u'farm', u'chief', u'question', u'nativ', u'veget', u'law']
[u'farmer', u'look', u'rain', u'boost']
[u'farrer', u'candid', u'outlin', u'prioriti']
[u'safeti', u'law', u'prove', u'cost', u'hotel', u'motel']
[u'fisher', u'seek', u'reef', u'licenc', u'out']
[u'fish', u'industri', u'concern', u'tuna']
[u'flow', u'good', u'river', u'prof']
[u'zimbabw', u'cricket', u'chief', u'drop', u'race']
[u'garden', u'barrier', u'spark', u'frogwatch', u'warn']
[u'ghost', u'ship', u'mysteri', u'remain']
[u'gippsland', u'independ', u'mcgauran', u'prefer']
[u'gippsland', u'support', u'women', u'bishop']
[u'govt', u'accus', u'encourag', u'greenpeac', u'legal', u'action']
[u'govt', u'pledg', u'small', u'busi']
[u'govt', u'promis', u'polic', u'crackdown', u'wayward', u'schooli']
[u'govt', u'urg', u'studi', u'result', u'rethink']
[u'greek', u'archaeologist', u'preserv', u'fruit']
[u'green', u'extra', u'indigen', u'health']
[u'group', u'upbeat', u'rail', u'return']
[u'group', u'want', u'defenc', u'area', u'test', u'radium', u'uranium']
[u'haas', u'defend', u'indigen', u'health', u'spend']
[u'hawker', u'stand', u'bypass', u'fund', u'offer']
[u'health', u'minist', u'hospit']
[u'hid', u'flag', u'chang', u'forest', u'polici']
[u'imag', u'help', u'studi', u'climat', u'chang']
[u'israel', u'call', u'agenc', u'head', u'remov']
[u'kangaroo', u'snap', u'thompson']
[u'kemp', u'apologis', u'miss', u'bendigo', u'visit']
[u'kewel', u'lead', u'prong', u'socceroo', u'attack']
[u'kumbl', u'chase', u'mileston', u'bangalor', u'crumbler']
[u'labor', u'candid', u'outlin', u'water', u'pipelin', u'plan']
[u'labor', u'lash', u'parti', u'forestri']
[u'labor', u'promis', u'fund', u'child', u'protect']
[u'labor', u'promis', u'halt', u'hec', u'increas']
[u'land', u'council', u'chairman', u'lose', u'close', u'elect']
[u'latham', u'expand', u'higher', u'educ', u'packag']
[u'latham', u'focus', u'nation', u'forestri']
[u'latham', u'say', u'document', u'discredit', u'rubbish']
[u'latham', u'slam', u'support', u'anti', u'muslim', u'comment']
[u'latham', u'leav', u'phone', u'hook']
[u'latt', u'sipper', u'hold', u'forest', u'ransom']
[u'lawri', u'hayden']
[u'lawyer', u'object', u'bushfir', u'report']
[u'lehmann', u'eye', u'happi', u'return', u'bangalor']
[u'liber', u'order', u'remov', u'mislead', u'campaign']
[u'liber', u'branch', u'stack', u'complaint']
[u'liver', u'diseas', u'epidem', u'sweep', u'australia', u'expert']
[u'local', u'govt', u'group', u'get']
[u'locust', u'fight', u'get', u'crucial']
[u'lyon', u'give', u'tour', u'squad', u'seal', u'approv']
[u'male', u'nurs', u'stand', u'child', u'porn', u'charg']
[u'accus', u'kill', u'wife', u'break', u'court']
[u'face', u'court', u'partner', u'assault']
[u'mayor', u'outrag', u'telstra', u'eyr', u'peninsula', u'decis']
[u'mayor', u'reject', u'opposit', u'elector', u'complaint']
[u'mayor', u'speak', u'fluorid', u'debat']
[u'megawati', u'accept', u'elect', u'result']
[u'mix', u'respons', u'anglican', u'regist']
[u'modest', u'gain', u'wall', u'price', u'slip']
[u'moor', u'add', u'farina', u'casualti', u'list']
[u'mortgag', u'broker', u'account']
[u'driver', u'heed', u'polic', u'traffic', u'blitz']
[u'motel', u'blaze', u'clean', u'continu']
[u'leav', u'elect', u'specul', u'booki']
[u'reject', u'industri', u'relat', u'polici', u'critic']
[u'dynamit', u'arrest', u'assault', u'alleg']
[u'poll', u'show', u'bush', u'kerri', u'dead', u'heat']
[u'tamworth', u'council', u'choos', u'mayor']
[u'charg', u'sydney', u'real', u'estat', u'fraud']
[u'complaint', u'priest', u'child', u'porn', u'swoop']
[u'fear', u'bangalor', u'track', u'say', u'gilchrist']
[u'cricket', u'domest', u'summer']
[u'review', u'anti', u'racism', u'law']
[u'ntfl', u'discuss', u'footbal', u'plan']
[u'surg', u'record', u'high']
[u'opposit', u'promis', u'dead', u'road']
[u'opposit', u'pursu', u'mackenroth', u'energex']
[u'opposit', u'say', u'govt', u'defenc', u'polici', u'outdat']
[u'palac', u'mark']
[u'parent', u'meet', u'teacher', u'charg', u'child', u'porn']
[u'park', u'candid', u'consid', u'elect', u'chanc']
[u'parmalat', u'consid', u'sell', u'warwick', u'factori']
[u'parti', u'propos', u'polic', u'reserv', u'gap']
[u'perth', u'plead', u'guilti', u'child', u'porn', u'charg']
[u'philippoussi', u'flop']
[u'physic', u'nobel', u'go', u'theori', u'trio']
[u'pioneer', u'astronaut', u'die']
[u'pitcairn', u'island', u'plead', u'guilti', u'crime']
[u'play', u'poland', u'troop', u'pullout']
[u'releas', u'letter', u'thank', u'iraqi', u'govt']
[u'phone', u'messag', u'target', u'margin', u'voter']
[u'announc', u'intellig', u'plan']
[u'establish', u'school']
[u'poland', u'signal', u'iraq', u'troop', u'deploy']
[u'polic', u'bulldog', u'fan', u'bondi', u'stand']
[u'polic', u'discov', u'decapit', u'iraqi']
[u'polic', u'hold', u'drink', u'drive', u'blitz']
[u'polic', u'hope', u'reel', u'seafood', u'thiev']
[u'polic', u'lament', u'number', u'speed', u'driver']
[u'policeman', u'disciplin', u'take', u'bali', u'bomber']
[u'poll', u'put', u'coalit', u'ahead']
[u'pooch', u'power', u'rule', u'griffith']
[u'prefer', u'announc', u'kennedi']
[u'priest', u'sack', u'child', u'porn', u'arrest']
[u'privat', u'spacecraft', u'begin', u'prize', u'seek', u'flight']
[u'probe', u'underway', u'marin', u'protect', u'area']
[u'prosecut', u'say', u'pitcairn', u'guilti', u'plea', u'signific']
[u'public', u'water', u'plan']
[u'punter', u'flock', u'sheep', u'race', u'sheer']
[u'qanta', u'flight', u'attend', u'strike']
[u'rainfal', u'boost', u'hunter', u'region']
[u'rare', u'aborigin', u'photo', u'hammer']
[u'redknapp', u'charg', u'cahil', u'crunch', u'tackl']
[u'remot', u'communiti', u'opportun', u'vote']
[u'renmark', u'poll', u'vote', u'centr', u'open']
[u'rumsfeld', u'cast', u'doubt', u'saddam', u'qaeda', u'link']
[u'rural', u'doctor', u'urg', u'increas', u'fee']
[u'rural', u'women', u'lack', u'access', u'basic', u'servic', u'studi']
[u'scientist', u'warn', u'shrink', u'tibetan', u'glacier']
[u'servic', u'sector', u'activ', u'return', u'strong', u'level']
[u'sharehold', u'billiton']
[u'sienna', u'museum', u'uncov', u'centuri', u'fresco']
[u'singapor', u'airlin', u'end', u'cost', u'foray']
[u'spaceshipon', u'claim', u'million', u'flight', u'prize']
[u'speed', u'driver', u'defi', u'polic', u'warn']
[u'stanhop', u'spruce', u'footpath']
[u'starcraft', u'face', u'uphil', u'battl', u'plate']
[u'kilda', u'crash', u'claim', u'second', u'life']
[u'straw', u'meet', u'kurdish', u'leader', u'iraq']
[u'studi', u'reveal', u'high', u'level', u'atmospher', u'iron']
[u'teenag', u'girl', u'kill', u'gaza', u'strip']
[u'tendulkar', u'rule', u'test']
[u'tenni', u'boss', u'defend', u'open', u'price', u'hike']
[u'test', u'telecast', u'right', u'deal', u'final', u'strike']
[u'timber', u'guarante', u'offer', u'industri', u'relief']
[u'tougher', u'penalti', u'child', u'porn']
[u'court', u'rule', u'britain', u'guantanamo']
[u'understrength', u'socceroo', u'readi', u'solomon']
[u'studi', u'consid', u'drug', u'drive']
[u'unit', u'share', u'soar', u'takeov', u'specul']
[u'unit', u'oversuppli', u'caus', u'concern']
[u'grind', u'troop', u'iraq', u'bremer']
[u'scientist', u'prepar', u'volcano', u'erupt']
[u'soldier', u'charg', u'iraqi', u'general', u'death']
[u'troop', u'militia', u'clash', u'sadr', u'citi']
[u'urg', u'maximum', u'restraint', u'israel', u'palestinian']
[u'wiss', u'oppos', u'wast', u'plan']
[u'veteran', u'australian', u'pilot', u'ditch', u'pacif']
[u'polic', u'chief', u'sack', u'drug', u'squad', u'detect']
[u'video', u'show', u'milit', u'kill', u'italianturk']
[u'visa', u'chang', u'hurt', u'canberra']
[u'voter', u'happi', u'phone', u'messag']
[u'voyag', u'mark', u'start', u'antarct', u'research', u'program']
[u'wait', u'list', u'grow', u'water', u'tank']
[u'wilko', u'skipper', u'england']
[u'wit', u'tell', u'bushfir', u'inquiri', u'system', u'failur']
[u'abbott', u'leav', u'hospit', u'kidney', u'stone', u'surgeri']
[u'test', u'commentari', u'broadcast', u'time']
[u'hospit', u'bypass', u'figur']
[u'senat', u'candid', u'head', u'head', u'debat']
[u'clear', u'postal', u'vote', u'backlog']
[u'afghan', u'elect', u'candid', u'final', u'pitch']
[u'alleg', u'pitcairn', u'rapist', u'admit', u'have', u'consensu']
[u'candid', u'unimpress', u'phone', u'messag']
[u'reject', u'cost', u'claim']
[u'anderson', u'say', u'forest', u'plan', u'compens', u'worker']
[u'anim', u'welfar', u'group', u'honour', u'albani', u'woman']
[u'seiz', u'anti', u'hoon', u'law']
[u'arthur', u'stosur', u'japan']
[u'asbesto', u'hospit', u'site', u'deem', u'risk']
[u'chang', u'help', u'navi', u'contract']
[u'asic', u'probe', u'lose', u'invest', u'fund']
[u'aussi', u'toss', u'bangalor']
[u'aust', u'base', u'jumper', u'undergo', u'treatment', u'accid']
[u'australian', u'pilot', u'rescu', u'pacif', u'crash']
[u'australian', u'travel', u'risk', u'health', u'studi']
[u'aviat', u'polici', u'radar', u'nation']
[u'azaria', u'case', u'wont', u'open']
[u'azaria', u'death', u'certif', u'chang', u'request']
[u'babi', u'whale', u'death', u'spark', u'research']
[u'backpack', u'father', u'bundaberg', u'murder', u'trial']
[u'council', u'welcom', u'fund', u'increas']
[u'chang', u'seek', u'avoid', u'rise', u'doctor', u'fee']
[u'price', u'drop', u'capricorn', u'coast', u'properti']
[u'bishop', u'consid', u'ordain', u'women', u'despit', u'rule']
[u'blair', u'issu', u'sudan', u'list', u'demand']
[u'blaze', u'sweep', u'huge', u'properti']
[u'boat', u'safe', u'moor', u'despit', u'distress', u'court', u'tell']
[u'brack', u'deni', u'freeway', u'affect', u'feder']
[u'braidwood', u'resid', u'wari', u'develop', u'propos']
[u'break', u'hill', u'polic', u'join', u'argentina', u'rugbi', u'leagu']
[u'broom', u'ghost', u'ship']
[u'forestri', u'issu', u'rethink']
[u'effort', u'boost', u'polic', u'respons', u'time']
[u'effort', u'tackl', u'indigen']
[u'abandon', u'light', u'rail', u'studi']
[u'canadian', u'drift', u'powerless']
[u'cancer', u'group', u'question', u'travel', u'scheme']
[u'candid', u'apologis', u'endors', u'gaff']
[u'candid', u'address', u'wagga', u'forum']
[u'candid', u'endors', u'claim', u'draw', u'complaint']
[u'candid', u'view', u'higher', u'educ']
[u'cape', u'town', u'launch']
[u'bomb', u'kill', u'iraq']
[u'carr', u'consid', u'give', u'polic', u'power', u'tackl']
[u'cathol', u'justic', u'bodi', u'pan', u'come', u'elect']
[u'chang', u'say', u'address', u'shop', u'centr', u'traffic']
[u'chemistri', u'nobel', u'go', u'kiss', u'death', u'team']
[u'childer', u'timelin', u'decor', u'main', u'street']
[u'child', u'porn', u'accus', u'like', u'plead', u'guilti']
[u'child', u'porn', u'accus', u'releas', u'bail']
[u'find', u'zarqawi', u'saddam', u'link']
[u'clark', u'gilchrist', u'australia', u'control']
[u'clark', u'katich', u'steadi', u'australian', u'inning']
[u'cleaner', u'face', u'child', u'porn', u'charg', u'pass', u'polic']
[u'clijster', u'injuri', u'career', u'threaten', u'hewitt']
[u'comic', u'rodney', u'dangerfield', u'die']
[u'contract', u'woe', u'spark', u'beirut', u'hospit', u'claim']
[u'control', u'sar', u'easier', u'think']
[u'council', u'interven', u'earli', u'schooli']
[u'council', u'win', u'appeal', u'payout']
[u'court', u'halt', u'carlton', u'fail']
[u'court', u'hear', u'drug', u'traffick', u'doubl', u'agent']
[u'critic', u'attack', u'howard', u'forest', u'polici']
[u'crosisca', u'guid', u'north', u'ballarat', u'rooster']
[u'custom', u'crush', u'hong', u'kong', u'bank', u'bungl']
[u'death', u'prompt', u'parti', u'drug', u'warn']
[u'death', u'toll', u'climb', u'israel', u'continu', u'gaza']
[u'diabet', u'group', u'question', u'elect', u'fund']
[u'disengag', u'plan', u'freez', u'peac', u'process']
[u'drought', u'spark', u'nation', u'park', u'closur']
[u'eagl', u'kerr', u'fin', u'forg', u'valium', u'prescript']
[u'ellison', u'defend', u'govt', u'border', u'protect', u'polici']
[u'seek', u'sourc', u'slick']
[u'farmer', u'elect', u'yield', u'poor']
[u'farmer', u'strike', u'rent', u'deal']
[u'field', u'day', u'record', u'strong', u'start']
[u'time', u'lucki', u'malaysian', u'groom']
[u'figur', u'highlight', u'gippsland', u'visitor', u'boost']
[u'fli', u'doctor', u'promot', u'healthi', u'live']
[u'food', u'extract', u'enhanc', u'cancer', u'drug', u'studi', u'find']
[u'commission', u'voic', u'despair', u'land']
[u'policeman', u'plead', u'guilti', u'pervert']
[u'gold', u'coast', u'surfer', u'battl', u'stay', u'content']
[u'govt', u'promis', u'power', u'station', u'announc', u'soon']
[u'govt', u'staffer', u'order', u'scoresbi']
[u'access', u'worst', u'territorian', u'studi', u'reveal']
[u'clinic', u'fail', u'eas', u'pressur', u'emerg', u'ward']
[u'green', u'campaign', u'cleaner', u'pulp', u'mill']
[u'green', u'prefer', u'corangamit']
[u'group', u'unfaz', u'saleyard', u'announc']
[u'gunnedah', u'honour', u'gold', u'medal', u'winner']
[u'habib', u'releas', u'immin', u'lawyer']
[u'health', u'allianc', u'back', u'medicar', u'gold']
[u'heat', u'creat', u'crop', u'concern']
[u'hervey', u'step', u'recycl', u'centr']
[u'hop', u'deal', u'boost', u'creswick', u'develop']
[u'horsham', u'launch', u'visitor', u'guid']
[u'hostag', u'grant', u'irish', u'passport', u'releas']
[u'howard', u'unveil', u'tasmanian', u'forest', u'plan']
[u'inquest', u'launch', u'attack', u'death']
[u'rat', u'remain', u'steadi']
[u'iraq', u'domin', u'vice', u'presidenti', u'debat']
[u'iron', u'domin', u'spanish', u'surf']
[u'israel', u'arrest', u'worker', u'gaza']
[u'itali', u'halt', u'asylum', u'seeker', u'expuls']
[u'john', u'lennon', u'killer', u'deni', u'parol']
[u'joint', u'approach', u'need', u'address', u'homeless', u'plight']
[u'kalgoorli', u'campaign', u'enter', u'negat', u'phase']
[u'karzai', u'run', u'mate', u'escap', u'explos']
[u'kewel', u'doubt', u'solomon', u'clash']
[u'kewel', u'lead', u'attack']
[u'kimmorley', u'lead', u'kangaroo', u'nation', u'warm']
[u'kindi', u'teacher', u'delay', u'strike']
[u'labor', u'back', u'coastguard', u'illeg', u'fish']
[u'labor', u'plan', u'ocean', u'offic', u'real', u'author']
[u'labor', u'say', u'howard', u'phone', u'messag', u'unauthoris']
[u'labor', u'sign', u'kyoto', u'protocol', u'elect']
[u'latham', u'accus', u'bias', u'medicar', u'critic']
[u'latham', u'pitch', u'school', u'polici', u'margin', u'seat']
[u'latham', u'set', u'jobless', u'target']
[u'laxman', u'step', u'sachin', u'shoe']
[u'lead', u'milit', u'kill', u'isra', u'strike']
[u'liver', u'diseas', u'breath', u'test', u'showcas', u'brisban']
[u'local', u'govt', u'chief', u'enthusiast']
[u'logi', u'dump', u'windi', u'coach']
[u'lung', u'cancer', u'rat', u'high', u'kalgoorli']
[u'major', u'parti', u'urg', u'address', u'environ']
[u'burn', u'port', u'macquair', u'blast']
[u'die', u'electr', u'blanket', u'start']
[u'plead', u'guilti', u'murder', u'partner']
[u'continu', u'fight', u'extradit', u'order']
[u'mayor', u'oppos', u'lead']
[u'mayor', u'seek', u'calder', u'fund']
[u'minist', u'defend', u'plan', u'longtail', u'tuna']
[u'minist', u'tear', u'radio', u'interview']
[u'fund', u'seek', u'indigen', u'health']
[u'resourc', u'seek', u'highway', u'patrol', u'polic']
[u'taxi', u'licenc', u'fund', u'secur', u'camera']
[u'seek', u'north', u'newsradio', u'coverag']
[u'coot', u'signal', u'come']
[u'murali', u'sign', u'lancashir']
[u'muscat', u'intent', u'play', u'despit', u'injuri']
[u'nation', u'challeng', u'tight', u'result']
[u'nativ', u'bird', u'shoot', u'prove', u'cost']
[u'nativ', u'titl', u'claim', u'drop', u'lack', u'fund']
[u'news', u'corp', u'consid', u'retain', u'sharehold']
[u'news', u'corp', u'disgruntl', u'sharehold']
[u'newspap', u'close', u'ahead', u'plan', u'belarus']
[u'law', u'impact', u'folk', u'festiv', u'act']
[u'niue', u'popul', u'shrink', u'secret']
[u'safeti', u'alert', u'plane', u'mishap', u'report']
[u'polic', u'seiz', u'worth', u'cannabi']
[u'lift', u'statut', u'limit', u'child', u'porn']
[u'tasmanian', u'auxiliari', u'worker', u'honour']
[u'power', u'win', u'appeal', u'pawa']
[u'nurs', u'disput', u'hamper', u'mental', u'health']
[u'admit', u'vietnam', u'vet', u'expos', u'agent', u'orang']
[u'valley', u'recognis', u'townsvill', u'suburb']
[u'oat', u'releas', u'prison', u'face', u'retrial']
[u'price', u'higher', u'suppli', u'worri']
[u'price', u'rate']
[u'suppli', u'fear', u'weigh', u'heavi', u'market']
[u'opinion', u'emerg', u'respons', u'consult', u'odd']
[u'opposit', u'pledg', u'rewrit', u'canberra', u'master', u'plan']
[u'opposit', u'pledg', u'transport', u'fund']
[u'opposit', u'promis', u'flood', u'manag']
[u'opposit', u'say', u'govt', u'forest', u'polici', u'hoax']
[u'owen', u'track', u'crack', u'critic', u'wale']
[u'parti', u'urg', u'target', u'indigen', u'diabet']
[u'patchi', u'hewitt', u'stosur', u'bow']
[u'patienc', u'australia']
[u'patienc', u'australia', u'say', u'gilchrist']
[u'peopl', u'need', u'energi', u'effici', u'lee']
[u'perth', u'top', u'home', u'build', u'survey']
[u'pilot', u'land', u'water', u'unauthoris']
[u'formalis', u'famili', u'prefer', u'deal']
[u'promis', u'forest', u'polici', u'cost', u'job']
[u'boat', u'drama', u'sink', u'deeper', u'uncertainti']
[u'polic', u'continu', u'probe', u'unauthoris', u'land']
[u'polic', u'investig', u'attack', u'candid', u'offic']
[u'polic', u'raid', u'redfern', u'hous', u'child', u'porn', u'crackdown']
[u'polic', u'road', u'crackdown', u'prove', u'success']
[u'polic', u'stand', u'sniffer', u'oper']
[u'polic', u'search', u'miss']
[u'popul', u'declin', u'prove', u'tax', u'outback', u'town']
[u'princip', u'stand', u'child', u'porn', u'probe']
[u'push', u'continu', u'chees', u'factori', u'stay', u'open']
[u'nat', u'want', u'compulsori', u'jail', u'term', u'paedophil']
[u'rain', u'help', u'river', u'flow']
[u'rare', u'aborigin', u'photo', u'privat', u'collector']
[u'mitsubishi', u'blame', u'teenag', u'death']
[u'resid', u'happi', u'motorcycl', u'track', u'snub']
[u'rooney', u'fifa', u'player', u'year', u'award']
[u'rove', u'build', u'go', u'smoke']
[u'rule', u'redefin', u'nation', u'competit', u'polici']
[u'rural', u'group', u'threaten', u'action', u'lack', u'rural']
[u'sack', u'kodak', u'worker', u'accept', u'redund']
[u'compani', u'get', u'forc', u'contract']
[u'doctor', u'hope', u'boost', u'work', u'condit']
[u'school', u'cleaner', u'charg', u'child', u'porn', u'offenc']
[u'scientist', u'trawl']
[u'scud', u'guarante', u'open', u'wildcard']
[u'ship', u'owner', u'fin', u'slick']
[u'stage', u'short', u'cours', u'swim']
[u'stenglein', u'happi', u'eagl', u'nest']
[u'stenglein', u'eagl']
[u'strong', u'employ', u'growth', u'predict']
[u'sunroc', u'chief', u'highlight', u'road', u'fund', u'import']
[u'synod', u'support', u'women', u'anglican', u'bishop']
[u'talk', u'focus', u'port', u'geograph', u'work', u'concern']
[u'teenag', u'injur', u'cliff', u'fall']
[u'teen', u'court', u'high', u'speed', u'chase']
[u'telstra', u'news', u'corp', u'help', u'market', u'record', u'high']
[u'injur', u'perth', u'ride', u'accid']
[u'thompson', u'look', u'resurrect', u'career', u'roo']
[u'palestinian', u'thai', u'kill', u'gaza']
[u'timber', u'worker', u'ralli', u'visit']
[u'season', u'draw']
[u'tourism', u'award', u'honour', u'easter', u'festiv']
[u'treloar', u'name', u'tamworth', u'council', u'mayor']
[u'trial', u'begin', u'parmalat', u'collaps']
[u'trio', u'deputi', u'mayor', u'spot']
[u'youth', u'hospitalis', u'accid']
[u'union', u'consid', u'legal', u'action', u'polic', u'offic']
[u'say', u'sudan', u'take', u'action', u'violenc']
[u'block', u'gaza', u'offens']
[u'corpor', u'watchdog', u'urg', u'investig', u'jam']
[u'iraqi', u'troop', u'storm', u'rebel', u'hold', u'stronghold']
[u'reject', u'iraqi', u'administr', u'claim']
[u'target', u'zarqawi', u'safe', u'hous', u'strike']
[u'veto', u'resolut', u'gaza']
[u'vote', u'draft']
[u'gecko', u'puzzl', u'scientist']
[u'resid', u'urg', u'brace', u'high', u'wind']
[u'word', u'indi', u'health']
[u'wit', u'seek', u'teen', u'attack']
[u'wollongong', u'host', u'nrma', u'gather']
[u'woman', u'die', u'coast', u'crash']
[u'aborigin', u'remain', u'welcom', u'home']
[u'academ', u'predict', u'coalit']
[u'liber', u'promis', u'better', u'account']
[u'adelaid', u'unit', u'join', u'premier', u'leagu', u'comp']
[u'afghan', u'attack', u'spur', u'elect', u'violenc', u'fear']
[u'afghan', u'children', u'lose', u'high', u'court', u'battl']
[u'hand', u'pick', u'athlet', u'skeleton', u'winter']
[u'allawi', u'strike', u'deal', u'iraqi', u'milit']
[u'bodi', u'bosnian', u'grave']
[u'candid', u'question', u'drought', u'review', u'time']
[u'miss', u'green', u'prefer', u'eden', u'monaro']
[u'applebi', u'defend', u'titl']
[u'resum', u'talk', u'adelaid', u'unit']
[u'hit', u'fourth', u'consecut', u'record']
[u'australian', u'base', u'jumper', u'pronounc', u'brain', u'dead']
[u'australian', u'golf', u'cream', u'play', u'centenari', u'open']
[u'australia', u'secur', u'wheat', u'deal', u'iraq']
[u'australia', u'take', u'stranglehold', u'test']
[u'australia', u'stranglehold', u'test']
[u'austrian', u'jelinek', u'win', u'nobel', u'literatur', u'prize']
[u'author', u'monitor', u'brisban', u'fire']
[u'baker', u'break', u'hill', u'deputi', u'mayor']
[u'beatti', u'dismiss', u'mandatori', u'jail', u'term', u'child']
[u'beazley', u'spark', u'health', u'fund', u'debat']
[u'blast', u'prompt', u'refuel', u'warn']
[u'bodi', u'brighton', u'hous']
[u'bomb', u'kill', u'dozen', u'pakistani', u'ralli']
[u'british', u'save']
[u'british', u'ship', u'reach', u'strand']
[u'burk', u'shire', u'demand', u'emerg', u'poll', u'booth']
[u'bushfir', u'coordin', u'centr', u'brisban']
[u'bushfir', u'expert', u'accus', u'take', u'side']
[u'busi', u'chamber', u'form', u'council']
[u'higher', u'gold', u'coast', u'rat']
[u'elect', u'focus', u'rural', u'issu']
[u'train', u'incent']
[u'cambodian', u'king', u'threaten', u'quit']
[u'camera', u'improv', u'cabbi', u'secur']
[u'camera', u'offer', u'cabbi', u'secur', u'boost']
[u'candid', u'remov', u'univers']
[u'candid', u'odd', u'environ']
[u'carr', u'bateman', u'hospit', u'announc']
[u'child', u'pornographi', u'investig']
[u'clark', u'chalk', u'debut', u'australia', u'build']
[u'clark', u'make', u'dazzl', u'debut']
[u'clark', u'target', u'debut']
[u'clark', u'track', u'debut']
[u'coke', u'seal', u'crusta', u'fruit', u'juic', u'deal']
[u'cole', u'doubl', u'video', u'review']
[u'concern', u'rais', u'damag', u'flinder', u'rang', u'road']
[u'consult', u'consid', u'pool', u'heat', u'cost']
[u'coral', u'reef', u'fish', u'spawn']
[u'costello', u'hail', u'job', u'growth']
[u'council', u'back', u'offic', u'upgrad']
[u'council', u'give', u'unit', u'develop']
[u'councillor', u'attack', u'local', u'govt', u'report']
[u'council', u'oppos', u'tavern', u'poki', u'plan']
[u'council', u'seek', u'theatr', u'revamp', u'detail']
[u'council', u'meet', u'wind', u'farm', u'rat']
[u'council', u'spell', u'death', u'knell', u'tree']
[u'council', u'revamp', u'environ', u'plan']
[u'dairi', u'industri', u'sow', u'seed', u'doubt', u'cloud']
[u'dalla', u'plan', u'open', u'oswald', u'kill', u'site']
[u'damag', u'hamper', u'investig']
[u'davenport', u'destroy', u'molik', u'germani']
[u'disgrac', u'stockbrok', u'releas']
[u'docker', u'fin', u'drive', u'offenc']
[u'doctor', u'predict', u'crisi', u'loom', u'rural', u'area']
[u'attack', u'inquest', u'spark', u'crackdown']
[u'downpour', u'downsid', u'denman']
[u'drug', u'squad', u'detect', u'charg', u'traffic']
[u'firefight', u'tackl', u'hinterland', u'blaze']
[u'fisher', u'warn', u'oper', u'rule']
[u'resign', u'amid', u'briberi', u'investig']
[u'teacher', u'stand', u'child', u'porn']
[u'fuel', u'price', u'prompt', u'power', u'rethink', u'outback']
[u'fund', u'secur', u'hervey', u'tourist', u'road']
[u'gaddafi', u'join', u'call', u'british', u'hostag', u'releas']
[u'gash', u'apologis', u'support', u'claim']
[u'pipelin', u'decis', u'time']
[u'pipelin', u'work', u'begin']
[u'plan', u'oppon', u'unlik', u'chang', u'site']
[u'gerrard', u'oper', u'speed', u'recoveri']
[u'gillard', u'question', u'liber', u'leaflet', u'claim']
[u'giteau', u'player', u'year', u'gong']
[u'golf', u'club', u'flag', u'apart', u'complex', u'work']
[u'govt', u'blitz', u'focus', u'work', u'condit']
[u'govt', u'commit', u'hospit', u'stay', u'open']
[u'govt', u'stand', u'firm', u'cotton']
[u'grain', u'grower', u'lobbi', u'criticis', u'labor', u'polici']
[u'graingrow', u'discuss', u'chang']
[u'green', u'revers', u'eden', u'monaro', u'prefer', u'decis']
[u'guidelin', u'see', u'hurt', u'riverland', u'doctor']
[u'gunn', u'give', u'thumb', u'forestri', u'plan']
[u'histor', u'desert', u'prove', u'hard']
[u'hobart', u'council', u'consid', u'water', u'meter']
[u'howard', u'defend', u'growth', u'forest', u'plan']
[u'howard', u'visit', u'litmus', u'test', u'elector']
[u'howard', u'warn', u'latham', u'mean', u'chang', u'wors']
[u'hunter', u'candid', u'industri', u'relat', u'stoush']
[u'iraq', u'wmds', u'say', u'inspector']
[u'jackson', u'lead', u'storm', u'wnba', u'final']
[u'kewel', u'aloisi', u'qualifi']
[u'kewel', u'keen', u'embarrass', u'critic']
[u'kumbl', u'join', u'club']
[u'labor', u'plan', u'lower', u'electr', u'price']
[u'labor', u'promis', u'canberra', u'surgic', u'centr']
[u'labor', u'slam', u'liber', u'plan', u'propos']
[u'labor', u'reap', u'prefer', u'tasmanian', u'forest']
[u'labor', u'lower', u'unemploy', u'latham']
[u'land', u'agreement', u'defus', u'nativ', u'titl', u'litig']
[u'latham', u'predict', u'bennelong', u'elect']
[u'latham', u'promot', u'tafe', u'polici']
[u'latham', u'rais', u'race', u'issu', u'howard']
[u'local', u'ident', u'fear', u'dead', u'melbourn']
[u'local', u'media', u'ignor', u'issu', u'say', u'candid']
[u'locust', u'hatch', u'near', u'wentworth']
[u'long', u'drive', u'mother']
[u'major', u'support', u'intervent', u'boundari']
[u'mango', u'grower', u'support', u'propos', u'eas', u'worker']
[u'court', u'replica']
[u'manufactur', u'centr', u'plan', u'austoft']
[u'maranoa', u'candid', u'allot', u'prefer']
[u'market', u'optimist', u'despit', u'rocket', u'price']
[u'mayor', u'overjoy', u'xstrata', u'park', u'donat']
[u'metal', u'group', u'sign', u'china', u'iron', u'deal']
[u'minist', u'outlin', u'schooli', u'week', u'detail']
[u'minist', u'reject', u'border', u'secur', u'critic']
[u'echo', u'call', u'bail', u'supervis', u'scheme']
[u'fund', u'announc', u'calder', u'highway']
[u'reject', u'pork', u'barrel', u'claim']
[u'machin', u'promis', u'campaign', u'countdown']
[u'negoti', u'continu', u'coastal', u'patrol', u'futur']
[u'news', u'corp', u'strengthen', u'corpor', u'govern']
[u'chang', u'nation', u'prefer', u'capricornia']
[u'norther', u'pastur']
[u'polic', u'worker', u'charg', u'child', u'porn']
[u'opposit', u'unhappi', u'tape', u'evid']
[u'occi', u'knock', u'earli', u'spain']
[u'price', u'hit']
[u'opera', u'jetti', u'plan', u'streaki']
[u'owen', u'track', u'world', u'qualifi']
[u'pakistan', u'seri', u'final']
[u'parti', u'accus', u'fund', u'mental', u'health']
[u'parti', u'need', u'focus', u'rural', u'women', u'academ']
[u'pitcairn', u'councillor', u'court', u'assault', u'charg']
[u'phone', u'campaign', u'ring', u'alarm', u'bell']
[u'unapologet', u'despit', u'iraq', u'weapon', u'report']
[u'australia', u'pipelin', u'project', u'get', u'major', u'boost']
[u'polic', u'fear', u'firebug', u'pose', u'dead', u'threat']
[u'polic', u'offic', u'suspend', u'child', u'porn', u'probe']
[u'polic', u'upbeat', u'locat', u'assault', u'wit']
[u'port', u'agre', u'carr', u'trade']
[u'postal', u'vote', u'concern', u'spark', u'seat', u'challeng']
[u'pungent', u'smell', u'flower', u'expect', u'draw', u'crowd']
[u'puppet', u'theatr', u'aim', u'rais', u'profil']
[u'govt', u'get', u'tough', u'race', u'industri']
[u'treasur', u'energex', u'apolog', u'draw', u'critic']
[u'ratepay', u'slow', u'payment']
[u'resid', u'oppos', u'phone', u'tower', u'locat']
[u'resid', u'ralli', u'fluorid']
[u'retail', u'credit', u'card', u'scam', u'warn']
[u'rivkin', u'walk', u'free', u'complet', u'sentenc']
[u'rove', u'build', u'cost']
[u'brew', u'airport', u'upgrad']
[u'seaman', u'die', u'canadian', u'blaze']
[u'sharon', u'back', u'peac', u'road']
[u'shire', u'administr', u'lament', u'dept', u'closur']
[u'shire', u'seek', u'draft', u'wetland', u'polici', u'chang']
[u'sixer', u'sink', u'croc']
[u'socceroo', u'underestim', u'solomon']
[u'takeov', u'specul', u'spark', u'fear']
[u'storm', u'bring', u'littl', u'rain', u'goulburn', u'valley']
[u'stosur', u'lose', u'russian', u'japan', u'open']
[u'stricter', u'safeti', u'measur', u'slat', u'perth', u'royal']
[u'sulli', u'build', u'natur', u'galleri']
[u'supermarket', u'ordeal', u'trigger', u'manhunt']
[u'support', u'show', u'youth', u'driver', u'train']
[u'suprem', u'court', u'case', u'includ', u'verbal', u'verdict']
[u'green', u'labor', u'prefer']
[u'thousand', u'tip', u'attend', u'launceston']
[u'tiger', u'tie', u'knot']
[u'timmin', u'injur', u'kangaroo', u'crocker']
[u'townsvill', u'teacher', u'arrest', u'child', u'porn', u'charg']
[u'trap', u'sailor', u'free', u'crane']
[u'treasur', u'lose', u'control', u'budget', u'liber']
[u'troubl', u'surround', u'indigen', u'corp', u'unclear']
[u'turkey', u'step', u'closer', u'join']
[u'botch', u'train', u'exercis', u'coast']
[u'unemploy', u'fall', u'lift', u'rate', u'rise', u'expect']
[u'union', u'move', u'greater', u'school', u'asbesto', u'awar']
[u'union', u'say', u'ambul', u'truck', u'woe', u'ongo']
[u'urg', u'maintain', u'region', u'campus']
[u'univers', u'say', u'white', u'whale', u'male']
[u'staffer', u'want', u'iraq']
[u'alleg', u'habib', u'train', u'hijack']
[u'launch', u'iraqi', u'secur', u'forc']
[u'lower', u'volcano', u'warn']
[u'overhaul', u'agenc']
[u'soldier', u'kill', u'near', u'fallujah']
[u'vein', u'camera', u'design', u'eas', u'inject', u'pain']
[u'vettori', u'captain', u'squad']
[u'victoria', u'high', u'wind', u'flash', u'flood']
[u'villawood', u'detaine', u'hunger', u'strike']
[u'wage', u'wrangl', u'continu', u'despit', u'public', u'servant']
[u'water', u'chang', u'afoot', u'nimbin']
[u'woman', u'refus', u'bail', u'wild', u'chase']
[u'wentworth', u'club', u'forgo', u'race', u'meet']
[u'wine', u'bodi', u'take', u'wait', u'approach', u'govt']
[u'wit', u'seek', u'fatal', u'tweed', u'crash']
[u'woman', u'quintuplet', u'lanka']
[u'workshop', u'consid', u'mall', u'option']
[u'work', u'start', u'enhanc', u'lake', u'district', u'entranc']
[u'wrap', u'come', u'kalgoorli', u'bus']
[u'dead', u'egypt', u'hotel', u'blast']
[u'academ', u'forecast', u'tough', u'time', u'nation']
[u'assault', u'figur', u'rise']
[u'attempt', u'correct', u'postal', u'vote', u'mishap']
[u'airport', u'mishap', u'close', u'runway']
[u'alleg', u'crime', u'boss', u'arrest', u'sydney', u'raid']
[u'accus', u'blind', u'self']
[u'say', u'labor', u'health', u'plan', u'fall', u'short']
[u'amcor', u'plead', u'guilti', u'worker', u'death']
[u'analysi', u'find', u'medicar', u'gold', u'underfund']
[u'anderson', u'anger', u'rural', u'ballot', u'problem']
[u'appeal', u'court', u'extend', u'renmark', u'manslaught', u'sentenc']
[u'athlet', u'converg', u'coast', u'triathlon']
[u'atsb', u'offic', u'probe', u'port', u'hedland', u'train', u'death']
[u'aussi', u'india', u'fight']
[u'australia', u'breakthrough']
[u'australia', u'nervous', u'start', u'inning']
[u'australian', u'paedophil', u'suspect', u'arrest', u'vietnam']
[u'australian', u'princ', u'want', u'unauthoris', u'flight']
[u'australian', u'snooker', u'star', u'face', u'assault', u'charg']
[u'australia', u'philippin', u'build', u'counter', u'terror', u'tie']
[u'australia', u'philippin', u'boost', u'defenc', u'cooper']
[u'bankstown', u'resid', u'ralli', u'airport']
[u'barker', u'candid', u'upbeat', u'chanc']
[u'barra', u'track', u'beij', u'olymp']
[u'beazley', u'pledg', u'monitor', u'militari', u'compo']
[u'bendigo', u'chicken', u'farm', u'hatch', u'plan']
[u'crowd', u'turn', u'field', u'day', u'final']
[u'boost', u'marin', u'environ']
[u'blair', u'minist', u'say', u'sorri', u'iraq', u'intellig']
[u'blast', u'resort']
[u'blaze', u'claim', u'point', u'boat']
[u'bluescop', u'lose', u'money', u'strike', u'say']
[u'bomb', u'blast', u'rock', u'resort']
[u'boundari', u'chang', u'tip', u'chang', u'vote']
[u'british', u'hostag', u'bigley', u'behead', u'report']
[u'bulldog', u'masri', u'offer', u'tip', u'youngster']
[u'bull', u'kill', u'elder']
[u'bull', u'prepar', u'battl', u'blue']
[u'burk', u'slam', u'labor', u'radioact', u'wast']
[u'bush', u'defend', u'iraq', u'despit', u'report']
[u'campaign', u'countdown', u'begin', u'eden', u'monaro']
[u'campaign', u'enter', u'final']
[u'canberra', u'charg', u'child', u'porn']
[u'candid', u'enter', u'final', u'phase', u'campaign']
[u'candid', u'pitch', u'margin']
[u'carr', u'deliv', u'hospit', u'assur']
[u'carrol', u'take', u'bronz', u'australia']
[u'cat', u'secur', u'otten']
[u'cat', u'secur', u'otten', u'frenzi', u'trade', u'end']
[u'cazali', u'boost', u'effort', u'goldfield']
[u'centenari', u'celebr']
[u'central', u'queensland', u'prepar', u'vote']
[u'cfmeu', u'wont', u'independ', u'timber', u'lobbi', u'candid']
[u'chang', u'afoot', u'region', u'develop', u'commiss']
[u'chang', u'better', u'mental', u'health', u'servic', u'safeti']
[u'child', u'death', u'spark', u'warn', u'quad', u'bike']
[u'church', u'open', u'christian', u'ministri', u'centr']
[u'citrus', u'canker', u'strike']
[u'clark', u'debut', u'centuri', u'put', u'heat', u'lehmann']
[u'clean', u'need', u'hous', u'work', u'begin']
[u'club', u'continu', u'negoti', u'trade', u'deadlin', u'loom']
[u'club', u'continu', u'talk', u'trade', u'deadlin', u'loom']
[u'coast', u'fire', u'investig']
[u'communiti', u'emerg', u'respons', u'team']
[u'condit', u'worsen', u'crewman', u'stricken']
[u'confer', u'focus', u'illawarra', u'escarp']
[u'cooktown', u'jail', u'child', u'abus', u'video']
[u'costello', u'predict', u'close', u'race', u'ballarat']
[u'costello', u'credibl', u'tatter', u'labor', u'say']
[u'costello', u'stand', u'remark', u'despit', u'treasuri']
[u'council', u'back', u'hors', u'rid']
[u'council', u'push', u'speed', u'limit', u'chang']
[u'council', u'play', u'role', u'grey', u'water', u'control']
[u'council', u'oppos', u'poki', u'plan']
[u'council', u'fresh', u'look', u'heavi', u'vehicl', u'bypass']
[u'court', u'grant', u'access', u'abort', u'record']
[u'court', u'order', u'herald', u'return', u'backyard']
[u'court', u'rule', u'forc', u'doctor', u'prolong']
[u'crayfish', u'research', u'industri']
[u'darwin', u'barra', u'health', u'harbour']
[u'deadlin', u'pass', u'megawati', u'challeng']
[u'death', u'toll', u'mount', u'egypt', u'bomb', u'attack']
[u'democrat', u'loss', u'weaken', u'senat', u'warn', u'bartlett']
[u'democrat', u'prison', u'deni', u'vote', u'right']
[u'democrat', u'want', u'show', u'canberra']
[u'director', u'deni', u'cash', u'reef', u'mysteri']
[]
[u'screen', u'help', u'diagnos', u'iron', u'diseas']
[u'dont', u'write', u'democrat', u'warn', u'ridgeway']
[u'doubt', u'rais', u'indigen', u'educ', u'plan']
[u'dress', u'code', u'tighten', u'member', u'adelaid', u'oval']
[u'drink', u'driver', u'jail', u'fatal', u'crash']
[u'driver', u'ask', u'avoid', u'roo']
[u'edmiston', u'eas', u'semi', u'final']
[u'educ', u'dept', u'defend', u'screen', u'procedur']
[u'baradei', u'favourit', u'nobel', u'peac', u'prize']
[u'elect', u'situat', u'patient', u'say']
[u'elect', u'fever', u'grip', u'antarctica']
[u'elector', u'offic', u'issu', u'postal', u'vote', u'remind']
[u'emus', u'accus', u'caus', u'crash']
[u'endeavour', u'get', u'fund', u'respit']
[u'explos', u'rock', u'indonesian', u'embassi', u'pari']
[u'welcom', u'memori', u'fund']
[u'priest', u'plead', u'guilti', u'teen', u'charg']
[u'farina', u'say', u'lose', u'option']
[u'farmer', u'say', u'trial', u'secret']
[u'farmer', u'chemic', u'help', u'locust', u'fight']
[u'fingleton', u'appeal', u'convict']
[u'crew', u'busi', u'south', u'east']
[u'crew', u'investig', u'suspici', u'death']
[u'firm', u'sell', u'horticultur', u'farm']
[u'flee', u'giraff', u'injur', u'tourist']
[u'forestri', u'polici', u'sure', u'coalit']
[u'austoft', u'site', u'offer', u'youth', u'train', u'boost']
[u'boss', u'blame', u'women', u'dumb', u'program']
[u'fruit', u'vege', u'group', u'rank', u'coalit', u'equal']
[u'fund', u'seek', u'riverina', u'airlin', u'plan']
[u'gather', u'fail', u'chang', u'fluorid', u'plan']
[u'gaza', u'violenc', u'continu']
[u'gilchrist', u'warn', u'complac']
[u'gold', u'coast', u'choos', u'film', u'marin']
[u'govt', u'lawyer', u'seek', u'withdraw', u'coron', u'comment']
[u'govt', u'pledg', u'newsradio', u'boost']
[u'govt', u'receiv', u'advic', u'jam', u'hardi', u'legal', u'action']
[u'govt', u'mental', u'health', u'fund']
[u'great', u'lake', u'fight', u'retain', u'ironman', u'event']
[u'green', u'criticis', u'church', u'marriag', u'decis']
[u'green', u'expect', u'million', u'vote']
[u'grey', u'elect', u'campaign', u'draw']
[u'gunmen', u'target', u'tahmoor', u'hotel']
[u'hanson', u'back', u'howard', u'elect']
[u'harvest', u'outlook', u'posit']
[u'hewitt', u'japan', u'open', u'semi']
[u'hewitt', u'reach', u'japan', u'quarter']
[u'higher', u'temperatur', u'toll', u'crop']
[u'high', u'tech', u'aim', u'boost', u'safeti']
[u'high', u'wind', u'toll', u'central', u'victoria']
[u'home', u'destroy', u'bushfir']
[u'howard', u'warn', u'undecid', u'voter', u'labor', u'risk']
[u'human', u'right', u'group', u'peac', u'plea', u'tamil']
[u'hunter', u'valley', u'drop', u'wine']
[u'immigr', u'thank', u'public', u'help', u'stay']
[u'india', u'aussi', u'horror', u'start']
[u'india', u'fight', u'troubl', u'australian']
[u'inquest', u'lead', u'tougher', u'law']
[u'investig', u'probe', u'port', u'hedland', u'train', u'exercis']
[u'iraq', u'rebel', u'pledg', u'disarm']
[u'carniv', u'time']
[u'land', u'council', u'celebr', u'year']
[u'latham', u'return', u'root', u'werriwa']
[u'leader', u'final', u'campaign', u'pitch', u'voter']
[u'legal', u'advic', u'open', u'hardi', u'proceed']
[u'liber', u'promis', u'support', u'age', u'care']
[u'licens', u'premis', u'scheme', u'look', u'boost', u'women']
[u'lonard', u'second', u'scotland']
[u'mackay', u'pair', u'charg', u'child', u'porn']
[u'major', u'parti', u'silent', u'kakadu', u'wast', u'storag']
[u'mango', u'grower', u'look', u'oversea', u'worker']
[u'market', u'snap', u'record']
[u'mayor', u'odd', u'popul', u'claim']
[u'mcgauran', u'await', u'gippsland', u'vote']
[u'medicar', u'gold', u'offer', u'littl', u'benefit', u'indigen']
[u'fund', u'invest', u'locust', u'battl']
[u'motor', u'histori', u'drive', u'plan', u'museum']
[u'murphi', u'lead', u'qualifi', u'bathurst']
[u'murphi', u'magic', u'continu', u'panorama']
[u'murphi', u'set', u'panorama', u'pace']
[u'muslim', u'lose', u'battl', u'absent', u'leav']
[u'nation', u'parti', u'attack', u'region', u'hospit', u'servic']
[u'nato', u'agre', u'plan', u'iraq', u'train', u'mission']
[u'tourism', u'bait', u'seek', u'centr']
[u'nigerian', u'email', u'scam', u'forfeit', u'asset']
[u'nigerian', u'offici', u'reveal', u'bloodi', u'toll']
[u'nippi', u'fear', u'market', u'share']
[u'nobel', u'peac', u'prize', u'go', u'kenyan']
[u'surpris', u'rural', u'voter']
[u'receiv', u'support', u'bargain', u'agreement']
[u'child', u'protect', u'debat', u'get', u'heat']
[u'nurs', u'plan', u'industri', u'action', u'offer']
[u'offic', u'face', u'court', u'divulg', u'data']
[u'ogilvi', u'touch', u'vega']
[u'hit', u'time']
[u'price', u'help', u'push', u'aussi', u'dollar']
[u'price', u'rise', u'hit', u'cattl', u'oper']
[u'orang', u'relax', u'water', u'ban']
[u'pair', u'refus', u'bail', u'sydney', u'girl', u'death']
[u'palestinian', u'shoot', u'dead', u'gaza']
[u'paterson', u'candid', u'look', u'secur', u'minut']
[u'peac', u'talk', u'resum', u'sudan']
[u'polic', u'investig', u'fatal', u'stab']
[u'polic', u'investig', u'inner', u'citi', u'assault', u'young', u'girl']
[u'polic', u'minist', u'back', u'child', u'protect', u'squad']
[u'polic', u'offic', u'arrest', u'russian', u'school', u'sieg']
[u'polic', u'offic', u'tip', u'child', u'porn', u'suspect']
[u'popov', u'confeder', u'qualifi']
[u'properti', u'threat', u'wind', u'fan', u'fire']
[u'rocket', u'attack', u'hit', u'kabul', u'embassi', u'area']
[u'rove', u'build', u'caus', u'rodent']
[u'russia', u'finish', u'kyoto', u'approv', u'year']
[u'sadr', u'aid', u'releas', u'detent']
[u'polic', u'refus', u'identifi', u'child', u'porn', u'suspect']
[u'schumach', u'quickest', u'rain', u'soak', u'suzuka']
[u'scienc', u'town', u'mosaic', u'make', u'cost', u'mistak']
[u'screen', u'process', u'work', u'children']
[u'second', u'plead', u'guilti', u'pitcairn', u'trial']
[u'secur', u'tighten', u'lead', u'bali', u'anniversari']
[u'look', u'forward', u'communiti', u'emerg', u'respons']
[u'strike', u'push', u'price', u'record']
[u'saharan', u'child', u'mortal', u'wors']
[u'superbug', u'emerg', u'perth', u'hospit']
[u'surf', u'photograph', u'drown', u'franc']
[u'sydney', u'hospitalis', u'stab', u'wind']
[u'test', u'legend', u'open', u'longreach', u'club']
[u'famili', u'member', u'die', u'sydney', u'hous']
[u'tiger', u'furious', u'fail', u'zantuck', u'trade']
[u'timor', u'support', u'green', u'plan', u'mango', u'picker']
[u'toowoomba', u'macabr', u'sign', u'stay']
[u'trade', u'minist', u'support', u'pipelin']
[u'face', u'charg', u'drug', u'death']
[u'suspect', u'arrest', u'spain']
[u'typhoon', u'threaten', u'japan']
[u'tyrel', u'take', u'drop', u'adelaid']
[u'govern', u'defend', u'invas', u'iraq']
[u'underground', u'water', u'offer', u'citi', u'suppli', u'hop']
[u'union', u'welcom', u'carer', u'rule']
[u'union', u'tell', u'worker', u'abandon', u'labor']
[u'union', u'threaten', u'scuttl', u'offshor', u'nuclear', u'wast']
[u'union', u'urg', u'kodak', u'distribut', u'worker']
[u'student', u'drive', u'home', u'road', u'safeti', u'messag']
[u'unusu', u'land', u'owner', u'jail']
[u'strike', u'hit', u'fallujah']
[u'journalist', u'jail', u'leak', u'probe']
[u'villawood', u'detaine', u'hunger', u'strike']
[u'villawood', u'hunger', u'strike', u'weaken']
[u'weather', u'outlook', u'good', u'firefight']
[u'webber', u'optimist', u'jaguar', u'futur']
[u'tipster']
[u'wildlif', u'offici', u'concern', u'toad', u'impact']
[u'woman', u'plead', u'guilti', u'murder', u'partner']
[u'woodgat', u'suffer', u'injuri', u'setback']
[u'work', u'normal', u'elect', u'candid']
[u'adelaid', u'raid', u'spate', u'continu']
[u'afghan', u'elect', u'end', u'confus', u'boycott']
[u'afghan', u'secur', u'foil', u'bomb', u'plot']
[u'alcoa', u'licenc', u'tighten', u'despit']
[u'conced', u'defeat', u'gippsland']
[u'aussi', u'close', u'test', u'victori']
[u'aussi', u'control', u'test']
[u'aussi', u'look', u'build', u'lead', u'fourth', u'resum']
[u'aussi', u'indian', u'fight']
[u'australia', u'hold', u'card']
[u'australia', u'kill']
[u'australian', u'poll']
[u'bartlett', u'sound', u'warn', u'senat', u'result']
[u'battl', u'line', u'draw', u'seat']
[u'bigley', u'escap', u'briefli', u'kill']
[u'bigley', u'wife', u'talk', u'agoni', u'death', u'iraq']
[u'brough', u'claim', u'longman']
[u'campaign', u'wentworth', u'give', u'king', u'satisfact']
[u'candid', u'halt', u'afghan', u'elect']
[u'candid', u'wait', u'margin', u'elector', u'vote']
[u'solomon', u'hold', u'lingiari']
[u'coalit', u'perform']
[u'coalit', u'increas', u'major']
[u'commiss', u'rule', u'breach', u'liber', u'forest']
[u'count', u'begin', u'tasmania']
[u'count', u'begin']
[u'crean', u'disappoint', u'result']
[u'democrat', u'fade', u'black']
[u'downer', u'talk', u'prospect', u'hang', u'parliament']
[u'earli', u'count', u'show', u'upset', u'south', u'west']
[u'earli', u'count', u'show', u'swing', u'liber']
[u'famili', u'confirm', u'british', u'hostag', u'death']
[u'famili', u'make', u'impact', u'senat', u'race']
[u'famili', u'coalit', u'control']
[u'famili', u'perform', u'dickson']
[u'farmer', u'worri', u'extens', u'plan']
[u'test']
[u'damag', u'smithton']
[u'vote', u'cast', u'afghan', u'poll']
[u'forest', u'bombshel', u'blame', u'labor', u'loss']
[u'green', u'leader', u'elect', u'senat']
[u'shoot', u'dead', u'gaza']
[u'face', u'court', u'organis', u'crime', u'probe']
[u'freedman', u'notch', u'group']
[u'gallop', u'green', u'sydney', u'premiership']
[u'gallop', u'predict', u'close', u'poll']
[u'garrett', u'victori', u'kingsford', u'smith']
[u'interven', u'postal', u'ballot', u'bungl']
[u'gilchrist', u'declin', u'follow', u'trap']
[u'govt', u'agre', u'reconsid', u'nurs', u'claim']
[u'shortag', u'affect', u'indigen', u'health', u'say', u'group']
[u'green', u'smile', u'despit', u'coalit']
[u'hanson', u'claim', u'gold', u'injur', u'phelp', u'pull']
[u'hewitt', u'mcleod', u'tokyo', u'underwear', u'dash']
[u'hewitt', u'sharapova', u'win', u'japan']
[u'hollywood', u'appeal', u'internet', u'file', u'share']
[u'hors', u'fail', u'olymp', u'dope', u'test']
[u'howard', u'claim', u'victori']
[u'howard', u'return', u'histor', u'fourth', u'term']
[u'increas', u'major', u'tip', u'coalit']
[u'india', u'claim', u'earli', u'australian', u'wicket']
[u'indian', u'polic', u'question', u'gibb', u'boje', u'match']
[u'rat', u'scare', u'campaign', u'hurt', u'labor', u'mcmullan']
[u'iraq', u'domin', u'second', u'presidenti', u'debat']
[u'iraqi', u'behead', u'barbar', u'downer']
[u'iraq', u'scrap', u'plan', u'elect', u'census']
[u'iraq', u'secur', u'boost', u'ahead', u'poll', u'rumsfeld']
[u'jaguar', u'webber', u'free', u'test', u'william']
[u'kangaroo', u'crush', u'kumul']
[u'kangaroo', u'readi', u'bounc', u'kumul']
[u'labor', u'conced', u'defeat', u'solomon']
[u'labor', u'confid', u'win', u'margin', u'seat']
[u'labor', u'hope', u'despit', u'fear', u'margin', u'seat', u'loss']
[u'labor', u'troubl', u'mcmillan']
[u'labor', u'like', u'hold', u'tassi', u'seat', u'pundit', u'say']
[u'labor', u'retain', u'brisban']
[u'labor', u'solomon', u'candid', u'quiet', u'confid']
[u'labor', u'victori', u'ballarat']
[u'latham', u'conced', u'defeat', u'vow', u'return']
[u'trobe', u'contest', u'tight']
[u'liber', u'claim', u'victori', u'mcmillan']
[u'liber', u'vote', u'card', u'anger', u'green']
[u'liber', u'seek', u'investig', u'phoney', u'elect']
[u'liber', u'bass', u'braddon', u'labor']
[u'liber', u'braddon', u'bass']
[u'liber', u'hasluck', u'can']
[u'lib', u'claim', u'seat']
[u'locust', u'warn', u'issu', u'riverland', u'resid']
[u'lonard', u'fade', u'howel', u'take', u'charg']
[u'escap', u'crash', u'bedroom']
[u'guilti', u'canberra', u'assault', u'case']
[u'martha', u'stewart', u'report', u'camp', u'cupcak']
[u'mcgauran', u'claim', u'victori', u'gippsland']
[u'mcgauran', u'face', u'threat', u'gippsland']
[u'molik', u'confirm', u'hopman', u'place']
[u'nobel', u'peac', u'laureat', u'claim', u'deliber']
[u'fight', u'potenti', u'locust', u'plagu']
[u'water', u'critic', u'despit', u'recent', u'rain']
[u'reveal', u'radioact', u'wast', u'detail']
[u'ogilvi', u'hang', u'vega']
[u'owen', u'henri', u'world', u'pressur']
[u'parti', u'close', u'seat']
[u'pirat', u'edg', u'tiger']
[u'make', u'plea', u'tasmanian', u'voter']
[u'polic', u'foil', u'man', u'attempt', u'wife']
[u'polic', u'investig', u'redfern', u'death']
[u'poll', u'divid', u'elect', u'outcom']
[u'crew', u'prepar', u'windi', u'afternoon']
[u'ranger', u'roll']
[u'rescuer', u'search', u'survivor', u'sinai', u'blast']
[u'resid', u'flee', u'author', u'fight', u'fire']
[u'richard', u'start', u'pole', u'bathurst']
[u'rocket', u'attack', u'hit', u'afghan', u'poll', u'booth']
[u'rossi', u'pole', u'malaysian']
[u'rural', u'vote', u'back', u'govt', u'say', u'anderson']
[u'sadr', u'militia', u'disarm', u'iraq', u'peac', u'deal']
[u'independ', u'foot', u'vote', u'card']
[u'snowdon', u'take', u'grant']
[u'socceroo', u'brace', u'honiara', u'heat']
[u'socceroo', u'honiara', u'goal', u'spree']
[u'socceroo', u'thrash', u'solomon', u'island']
[u'spanish', u'coach', u'henri', u'race', u'slur']
[u'lanka', u'thrash', u'zimbabw', u'seri']
[u'strongest', u'typhoon', u'decad', u'bear', u'tokyo']
[u'surveil', u'begin', u'second', u'citrus', u'canker']
[u'teen', u'kill', u'gaza', u'strike']
[u'tight', u'contest', u'seat']
[u'kill', u'warwick', u'crash']
[u'palestinian', u'kill', u'gaza', u'strike']
[u'typhoon', u'lash', u'tokyo']
[u'typhoon', u'shut', u'japanes', u'qualifi']
[u'exchang', u'messag', u'bigley', u'captor']
[u'council', u'adopt', u'anti', u'terror', u'resolut']
[u'judg', u'dismiss', u'suit', u'media', u'mogul']
[u'soldier', u'kill', u'northern', u'iraq']
[u'green', u'hope', u'senat', u'seat']
[u'voter', u'jostl', u'solomon']
[u'voter', u'complain', u'unauthoris', u'vote']
[u'wall', u'tumbl', u'pass']
[u'warmer', u'weather', u'spark', u'lizard', u'warn']
[u'wit', u'seek', u'dandenong']
[u'woman', u'detain', u'bali', u'alleg', u'drug', u'smuggl']
[u'worth', u'draper', u'troubl']
[u'yudhoyono', u'deliv', u'victori', u'speech']
[u'kill', u'plung', u'chines', u'river']
[u'aborist', u'scorn', u'council', u'tree']
[u'senat', u'return']
[u'afghan', u'prepar', u'count', u'vote', u'despit', u'boycott']
[u'aghan', u'vote', u'turnout', u'massiv', u'say']
[u'back', u'latham', u'despit', u'loss']
[u'argentina', u'underlin', u'world', u'challeng']
[u'aussi', u'close', u'victori']
[u'aussi', u'close', u'victori', u'indian', u'give']
[u'aussi', u'stolz', u'second', u'vega']
[u'aussi', u'swimmer', u'lead', u'world', u'fightback']
[u'aussi', u'wrap', u'test', u'despit', u'indian']
[u'aussi', u'women', u'smash', u'world', u'mark', u'short', u'cours']
[u'blind', u'pilot', u'make', u'outback', u'odyssey']
[u'bosnian', u'crime', u'suspect', u'surrend']
[u'breaker', u'king', u'razorback', u'shoot', u'bullet']
[u'bull', u'blue', u'kick', u'domest', u'comp']
[u'bull', u'season', u'open']
[u'bull', u'open', u'season', u'excit']
[u'bushwalk', u'stumbl', u'human', u'remain']
[u'busi', u'prepar', u'wishlist', u'govt']
[u'charg', u'lay', u'fatal', u'gold', u'coast', u'accid']
[u'child', u'kill', u'roma', u'hous']
[u'coalit', u'celebr', u'impend', u'senat']
[u'concern', u'miss', u'nigerian', u'trade', u'union', u'presid']
[u'cooler', u'weather', u'help', u'firefight']
[u'count', u'begin', u'afghan', u'elect']
[u'cricket', u'play', u'indian', u'fame', u'game']
[u'custom', u'offic', u'threaten', u'strike', u'action']
[u'democrat', u'rebuild', u'bartlett', u'say']
[u'donald', u'take', u'lead', u'link', u'titl', u'chase']
[u'economist', u'welcom', u'coalit', u'senat', u'result']
[u'eden', u'monaro', u'attribut', u'health', u'woe']
[u'eden', u'monaro', u'confid', u'retain', u'seat']
[u'egypt', u'place', u'bomb', u'suspect', u'surveil']
[u'elect', u'result', u'warn', u'labor', u'beatti', u'say']
[u'england', u'disast', u'euro', u'gun']
[u'famili', u'maul', u'toddler']
[u'famili', u'candid', u'undaunt', u'senat', u'role']
[u'famili', u'deni', u'rubber', u'stamp', u'critic']
[u'famili', u'rule', u'back', u'telstra', u'sale']
[u'fire', u'australia', u'close', u'victori']
[u'arrest', u'melbourn', u'nightclub', u'drug', u'raid']
[u'dead', u'typhoon', u'hit', u'japan']
[u'garrett', u'win', u'kingsford', u'smith', u'comfort']
[u'govt', u'eye', u'control', u'senat']
[u'govt', u'senat', u'control', u'hurt', u'bush', u'warn']
[u'green', u'accus', u'labor', u'betray', u'senat', u'voter']
[u'green', u'hope', u'gain', u'senat', u'seat']
[u'green', u'beat', u'despit', u'appar', u'seat', u'loss']
[u'haddin', u'lift', u'blue']
[u'hanson', u'fail', u'senat']
[u'hawk', u'bullet', u'tiger', u'bite', u'croc']
[u'healthi', u'live', u'fertil', u'expert']
[u'howard', u'win', u'histor', u'fourth', u'term']
[u'india', u'condemn', u'order', u'failur']
[u'jayasuriya', u'set', u'sight', u'play', u'scotland']
[u'salvag', u'world', u'point', u'wast', u'cameroon']
[u'kewel', u'aloisi', u'line', u'sydney', u'farina']
[u'khartoum', u'student', u'burn', u'build', u'riot', u'fee']
[u'kidnapp', u'threaten', u'kill', u'chines', u'engin']
[u'king', u'campaign', u'fail', u'unseat', u'liber', u'wentworth']
[u'labor', u'fight', u'hold', u'swan']
[u'labor', u'hope', u'victori', u'richmond']
[u'labor', u'prospect', u'brighter', u'cunningham']
[u'labor', u'senat', u'elect', u'disappoint', u'parti']
[u'liber', u'affect', u'elect', u'warn', u'barnett']
[u'lib', u'gain', u'margin']
[u'lownd', u'earli', u'leader', u'panorama']
[u'major', u'parti', u'consolid', u'lead', u'seat']
[u'charg', u'stab']
[u'charg', u'make', u'death', u'threat']
[u'drown', u'fall', u'yacht']
[u'melbourn', u'arrest', u'child', u'porn', u'offenc']
[u'midwiv', u'push', u'better', u'bush', u'matern', u'servic']
[u'blame', u'lennon', u'lose', u'seat']
[u'murphi', u'ahead', u'bathurst']
[u'murphi', u'kelli', u'lead', u'bathurst']
[u'murphi', u'kelli', u'repeat', u'bathurst']
[u'nation', u'confid', u'retain', u'richmond']
[u'nigerian', u'labour', u'leader', u'releas', u'union']
[u'novak', u'win', u'japan', u'open', u'titl']
[u'nrma', u'admit', u'overcharg', u'custom']
[u'dead', u'isra', u'aircraft', u'fire', u'hous']
[u'economi', u'fear', u'campaign', u'effect', u'martin']
[u'polic', u'concern', u'miss', u'man', u'safeti']
[u'polic', u'hunt', u'group', u'bolivar', u'robberi']
[u'polic', u'investig', u'attack', u'costello', u'offic']
[u'polic', u'investig', u'perth', u'stab']
[u'polic', u'rugbi', u'team', u'tackl', u'flight', u'disturb']
[u'senat', u'result', u'time']
[u'voter', u'swing', u'liber']
[u'rann', u'blame', u'rat', u'scare', u'campaign']
[u'result', u'disappoint', u'indigen', u'candid']
[u'rossi', u'win', u'malaysian', u'grand', u'prix']
[u'rumsfeld', u'arriv', u'iraq']
[u'sadr', u'militia', u'agre', u'ceas', u'baghdad']
[u'schumach', u'storm', u'victori', u'japan']
[u'sciacca', u'readi', u'conced', u'bonner']
[u'sciacca', u'refus', u'conced']
[u'scientist', u'search', u'chines', u'site', u'evid']
[u'sehwag', u'fin', u'misconduct']
[u'sehwag', u'haul', u'dissent']
[u'slim', u'margin', u'separ', u'candid']
[u'slow', u'minardi', u'joke', u'fear', u'stoddart']
[u'somali', u'begin', u'cast', u'ballot', u'presid']
[u'state', u'issu', u'irrelev', u'say', u'labor']
[u'sudan', u'pledg', u'work', u'panel', u'darfur']
[u'suicid', u'bomber', u'kill', u'baghdad']
[u'taiwanes', u'leader', u'call', u'talk', u'china']
[u'polic', u'attend', u'violent']
[u'teen', u'surviv', u'train']
[u'tender', u'receiv', u'antarct', u'adventur', u'site', u'sale']
[u'injur', u'crash']
[u'charg', u'backpack', u'bash']
[u'iraqi', u'kill', u'rocket', u'hit', u'central', u'baghdad']
[u'turban', u'confid', u'indian', u'fightback']
[u'blaze']
[u'kill', u'gaza', u'strike']
[u'victorian', u'voter', u'punish', u'labor']
[u'video', u'show', u'bigley', u'appeal']
[u'volunt', u'descend', u'adelaid', u'game']
[u'polic', u'believ', u'human', u'remain', u'hastili', u'conceal']
[u'webber', u'japan', u'grid']
[u'zarqawi', u'group', u'claim', u'iraq', u'bomb']
[u'aborigin', u'represent', u'fall', u'victim', u'elect']
[u'govt', u'accus', u'consult', u'cost', u'blow']
[u'adam', u'quit', u'leicest', u'manag']
[u'maintain', u'newcastl', u'domin']
[u'ararat', u'polic', u'probe', u'bomb', u'threat']
[u'ashfield', u'lead', u'asbesto', u'reform']
[u'asia', u'greet', u'aussi', u'elect', u'result', u'mix']
[u'australian', u'die', u'fiji', u'gang', u'attack']
[u'australian', u'face', u'year', u'jail', u'bali', u'drug', u'bust']
[u'australia', u'prepar', u'asian', u'militari', u'exercis']
[u'author', u'probe', u'weekend', u'hous', u'fire']
[u'baldwin', u'break', u'paterson', u'tradit']
[u'beamish', u'appeal', u'reli', u'serial', u'killer', u'confess']
[u'beatti', u'say', u'famili', u'present', u'state', u'threat']
[u'beazley', u'commit', u'term']
[u'bedouin', u'admit', u'help', u'egypt', u'bomber', u'offici']
[u'bedouin', u'detain', u'suspect', u'hotel', u'bomb']
[u'bennett', u'back', u'minichiello', u'despit', u'bowen', u'trick']
[u'bias', u'concern', u'rais', u'inquest']
[u'bloodsh', u'continu', u'rumsfeld', u'visit', u'iraq']
[u'hospitalis', u'attack']
[u'brack', u'deni', u'freeway', u'toll', u'impact', u'feder']
[u'brent', u'crude', u'hit', u'record']
[u'brothel', u'manag', u'plead', u'guilti', u'child', u'porn', u'charg']
[u'buchan', u'grantvill', u'cert', u'team']
[u'go', u'blood', u'suppli', u'boost']
[u'campaign', u'highlight', u'croc', u'danger']
[u'campaign', u'pay', u'forrest']
[u'camp', u'leas', u'closer', u'realiti']
[u'canberra', u'veteran', u'furner', u'want', u'english', u'grand', u'final']
[u'candid', u'question', u'coverag', u'indigen', u'issu']
[u'cardiac', u'societi', u'predict', u'wait', u'list', u'blow']
[u'cash', u'boost', u'club']
[u'causley', u'increas', u'major', u'page']
[u'china', u'australia', u'militari', u'exercis', u'start']
[u'china', u'tune', u'tiger', u'match']
[u'coalit', u'candid', u'return', u'coast', u'wide']
[u'coalit', u'hold', u'famili', u'talk']
[u'coalit', u'riverina', u'park', u'hume']
[u'coalit', u'target', u'unfair', u'dismiss', u'law']
[u'coalit', u'fuel', u'market', u'record']
[u'cobb', u'home', u'easili', u'park']
[u'concern', u'rais', u'inform', u'murder', u'probe']
[u'confer', u'put', u'spotlight', u'burnett', u'river']
[u'confus', u'continu', u'afghan', u'poll', u'count']
[u'cooler', u'weather', u'bring', u'fighter', u'relief']
[u'coulthard', u'readi', u'retir']
[u'council', u'get', u'catch', u'vandal']
[u'count', u'begin', u'afghan', u'elect']
[u'count', u'continu', u'undecid', u'seat']
[u'crew', u'safe', u'stricken', u'dock', u'scotland']
[u'cricket', u'legend', u'miller', u'die']
[u'crocodil', u'attack', u'north', u'queensland']
[u'croc', u'find', u'feet', u'coach']
[u'crow', u'nest', u'resid', u'urg', u'boost']
[u'dancer', u'guid', u'kookaburra', u'beij']
[u'davenport', u'close', u'spot']
[u'dead', u'fall', u'power', u'pole']
[u'debutant', u'deni', u'troop', u'burni']
[u'democrat', u'accus', u'govt', u'cover']
[u'democrat', u'fund', u'mental', u'health']
[u'disqualifi', u'driver', u'arrest', u'drink', u'drive']
[u'driver', u'urg', u'steer', u'clear', u'wander', u'roo']
[u'drug', u'increas', u'head', u'injuri', u'death', u'risk']
[u'elect', u'offer', u'hope', u'wind', u'farm', u'oppon']
[u'dope', u'tester', u'target', u'premiership', u'player']
[u'farrer', u'bolster', u'posit']
[u'father', u'charg', u'babi', u'death']
[u'festiv', u'offer', u'whale', u'watch', u'opportun']
[u'final', u'curtain', u'superman', u'star']
[u'danger', u'delay', u'nation', u'park', u'burn']
[u'firefight', u'race', u'time']
[u'firefight', u'refus', u'recycl', u'water']
[u'servic', u'warn', u'landown', u'bushfir', u'threat']
[u'flash', u'flood', u'kill', u'india']
[u'forest', u'plan', u'worri', u'hunter', u'develop']
[u'forestri', u'high', u'agenda', u'tasmanian', u'member']
[u'kangaroo', u'debut']
[u'kill', u'pakistan', u'suicid', u'bomb']
[u'gascoign', u'chang', u'escap', u'past']
[u'explos', u'injur']
[u'gash', u'surpris', u'elect', u'result']
[u'gilchrist', u'leap', u'warn', u'defenc']
[u'gold', u'rush', u'continu', u'hanson']
[u'govt', u'urg', u'stop', u'rise', u'fuel', u'price']
[u'grain', u'grower', u'discuss', u'plan', u'constitut']
[u'grandfath', u'face', u'charg']
[u'green', u'initi', u'launch', u'south', u'africa']
[u'green', u'hope', u'final', u'victorian', u'senat', u'seat']
[u'green', u'launch', u'health', u'polici']
[u'gregan', u'miss', u'camp', u'wallabi']
[u'group', u'stand', u'obstetr', u'unit', u'plan']
[u'guid', u'offer', u'youth']
[u'gunn', u'boss', u'high', u'hop', u'pulp']
[u'haas', u'pledg', u'pursu', u'reform']
[u'hair', u'salon', u'owner', u'rest', u'busi']
[u'hartsuyk', u'secur', u'cowper']
[u'heaven', u'plant', u'pose', u'risk', u'rare', u'shrub']
[u'honourari', u'doctor', u'make', u'helfgott', u'shine']
[u'hors', u'deliv', u'fatal', u'kick']
[u'hospit', u'extend', u'screen', u'superbug', u'number', u'rise']
[u'hous', u'financ', u'figur', u'weaker']
[u'hundr', u'protest', u'land', u'sale', u'plan']
[u'india', u'sweat', u'tendulkar', u'fit']
[u'india', u'posit', u'away', u'bangalor', u'defeat']
[u'indigen', u'program', u'aim', u'traffic', u'offenc']
[u'injur', u'motorcyclist', u'endur', u'long', u'rescu']
[u'input', u'seek', u'bendigo', u'plan']
[u'inquest', u'begin', u'polic', u'hang', u'death']
[u'inquiri', u'begin', u'polic', u'murder', u'convict']
[u'investig', u'continu', u'remain']
[u'iraq', u'sadr', u'militia', u'give', u'day', u'turn']
[u'kerri', u'attack', u'bush', u'middl', u'east', u'polici']
[u'kewel', u'sydney']
[u'kidnap', u'chines', u'tribe', u'embassi']
[u'labor', u'feder', u'poll', u'say', u'minist']
[u'labor', u'claim', u'cunningham']
[u'labor', u'fail', u'counter', u'scare', u'campaign', u'lawrenc']
[u'labor', u'launch', u'campaign']
[u'labor', u'launch', u'campaign', u'lib', u'heart']
[u'latham', u'say', u'poll', u'winnabl']
[u'latham', u'tell', u'support', u'want', u'remain', u'leader']
[u'lebanes', u'hostag', u'iraq', u'releas']
[u'lennon', u'say', u'polici', u'blame', u'tasmanian', u'loss']
[u'lentil', u'farmer', u'urg', u'spray', u'moth', u'pest']
[u'liber', u'look', u'forward', u'poll']
[u'liber', u'matuschka', u'give', u'away', u'ballarat']
[u'liber', u'suggest', u'forestri', u'deal', u'restart']
[u'lib', u'promis', u'polic', u'boost']
[u'lindsay', u'highlight', u'inform', u'vote', u'worri']
[u'livermor', u'retain', u'capricornia']
[u'lobster', u'manag', u'option', u'debat']
[u'local', u'member', u'return', u'central', u'west']
[u'vote', u'doesnt', u'deter', u'lingiari', u'independ']
[u'charg', u'mackay', u'murder']
[u'charg', u'polic', u'struggl']
[u'attempt', u'murder', u'charg', u'extradit']
[u'reappear', u'child', u'porn', u'charg']
[u'kill', u'mother', u'walk', u'free']
[u'mayor', u'lament', u'citrus', u'canker', u'outbreak']
[u'mcgauran', u'offer', u'telstra', u'sale', u'assur']
[u'minor', u'parti', u'decid', u'seat']
[u'tasmanian', u'look', u'oversea', u'adopt']
[u'tree', u'clear', u'investig']
[u'nairn', u'tradit', u'continu', u'eden']
[u'nation', u'member', u'oppos', u'telstra', u'sell']
[u'nauruan', u'elect', u'challeng', u'dismiss']
[u'nervous', u'wait', u'candid']
[u'bass', u'member', u'elect', u'push', u'pulp']
[u'fisheri', u'endang', u'shark', u'environ', u'group']
[u'norwegian', u'american', u'nobel', u'econom', u'prize']
[u'observ', u'endors', u'afghan', u'elect', u'despit']
[u'ogradi', u'close', u'europ']
[u'price', u'eas', u'treasuri', u'say']
[u'opposit', u'foreshadow', u'grow', u'public', u'hous', u'list']
[u'pain', u'relief', u'human', u'right']
[u'panopoulo', u'boost', u'indi', u'stronghold']
[u'parti', u'sign', u'north', u'west', u'nativ', u'titl']
[u'philosoph', u'jacqu', u'derrida', u'die']
[u'keen', u'work']
[u'polic', u'accus', u'crime', u'boss', u'public', u'stunt']
[u'polic', u'gather', u'evid', u'bash', u'murder']
[u'polic', u'hunt', u'assault', u'robberi']
[u'policeman', u'draw', u'blank', u'fake', u'raid']
[u'policeman', u'rubbish', u'kidnap', u'extort', u'talk']
[u'polic', u'probe', u'mosqu', u'arson', u'attack']
[u'port', u'hedland', u'focus', u'town', u'plan']
[u'publish', u'remov', u'swastika', u'german', u'book', u'releas']
[u'punter', u'vote', u'race', u'win', u'hoop']
[u'ralli', u'driver', u'plead', u'guilti', u'bourn', u'death', u'crash']
[u'rescu', u'travel', u'hospitalis', u'dehydr']
[u'return', u'gibbon', u'pressur', u'coalit']
[u'rice', u'defend', u'iraq', u'invas']
[u'richmond', u'result', u'day']
[u'roma', u'mourn', u'kill', u'hous']
[u'ronaldo', u'target', u'brazil', u'hammer', u'venezuela']
[u'defend', u'school', u'zone', u'speed', u'fin']
[u'sack', u'vogt', u'say', u'scotland', u'great', u'mcqueen']
[u'sadr', u'militia', u'begin', u'weapon', u'hand']
[u'sadr', u'militia', u'await', u'word', u'disarm']
[u'labor', u'attack', u'feder', u'focus']
[u'school', u'endur', u'second', u'blaze']
[u'schultz', u'win', u'term', u'hume']
[u'sciacca', u'hang', u'bonner', u'count', u'continu']
[u'scot', u'gallach', u'stun', u'andrew']
[u'secker', u'boost', u'support', u'barker']
[u'second', u'mass', u'break', u'brazilian', u'jail']
[u'senat', u'slam', u'labor', u'lack', u'indigen', u'focus']
[u'seneg', u'south', u'africa', u'race']
[u'seven', u'kill', u'pakistan', u'mosqu', u'attack']
[u'shepparton', u'enter']
[u'south', u'west', u'vote', u'reflect', u'nation', u'trend']
[u'spencer', u'join', u'black', u'sick', u'list']
[u'springborg', u'propos', u'conserv', u'reunif']
[u'lanka', u'final', u'rain', u'scupper', u'zimbabw']
[u'starcraft', u'pois', u'final', u'appear']
[u'state', u'issu', u'help', u'coalit', u'result', u'entsch']
[u'status', u'look', u'remain', u'england', u'gwydir']
[u'stephen', u'turn', u'attent', u'state', u'polit']
[u'stinger', u'close', u'strand']
[u'stone', u'consid', u'portfolio', u'opportun']
[u'strife', u'tear', u'somalia', u'elect', u'presid']
[u'strong', u'economi']
[u'stuttl', u'trial', u'focus', u'park', u'bench', u'graffiti']
[u'swing', u'fail', u'emerg', u'corangamit']
[u'tree', u'research', u'find', u'scabi', u'killer']
[u'technolog', u'help', u'polic', u'child', u'porn', u'oper']
[u'tent', u'attack', u'croc', u'shoot', u'dead']
[u'wound', u'fresh', u'jabaliya', u'strike']
[u'throsbi', u'lament', u'lose', u'opportun']
[u'train', u'ordeal', u'teen', u'transfer', u'brisban']
[u'tribut', u'flow', u'keith', u'miller']
[u'turkish', u'hostag', u'free', u'compani', u'halt', u'iraq']
[u'unherald', u'aussi', u'stolz', u'hit', u'vega', u'jackpot']
[u'vail', u'hold', u'seat', u'boost', u'major']
[u'victoria', u'remain', u'alp', u'mainland', u'stronghold']
[u'voter', u'return', u'katter', u'scott']
[u'voter', u'return', u'nation', u'hinkler', u'wide']
[u'elect', u'tip', u'februari', u'despit', u'power']
[u'wakelin', u'celebr', u'grey']
[u'polic', u'crack', u'gold', u'steal', u'ring']
[u'watch', u'keep', u'fire', u'high', u'danger', u'period']
[u'western', u'sydney', u'blaze', u'bright', u'howard']
[u'westfield', u'brogden', u'inquiri', u'tell']
[u'winchest', u'murder', u'trial', u'inquiri', u'adjourn']
[u'wineri', u'squeez', u'grape', u'grower', u'industri']
[u'wit', u'say', u'policeman', u'fake', u'raid', u'steal']
[u'woman', u'jail', u'steal', u'termin']
[u'women', u'rescu', u'strand', u'overnight']
[u'woodchip', u'export', u'plan', u'move', u'ahead']
[u'world', u'champion', u'johnson', u'miss', u'aussi', u'record']
[u'worshipp', u'insid', u'mosqu', u'arson', u'attack']
[u'bring', u'news']
[u'actu', u'prepar', u'fight', u'industri', u'relat', u'reform']
[u'adam', u'attack', u'latham', u'forestri', u'polici']
[u'adelaid', u'swelter', u'octob', u'heat']
[u'hero', u'peac']
[u'airport', u'plan', u'agn', u'water']
[u'alert', u'issu', u'blue', u'green', u'alga', u'outbreak']
[u'alfi', u'player', u'cancer', u'chariti']
[u'appoint', u'unlik', u'satisfi', u'doctor']
[u'asteroid', u'dinosaur', u'scientist']
[u'aussi', u'head', u'pari']
[u'aussi', u'market', u'hit', u'record']
[u'aussi', u'sheep', u'export', u'fall', u'china', u'pick']
[u'australian', u'gather', u'bali', u'bomb', u'memori']
[u'australia', u'good', u'outclass', u'solomon']
[u'beckham', u'admit', u'book', u'deliber']
[u'bodi', u'king', u'canyon']
[u'breakthrough', u'afghan', u'elect']
[u'break', u'glass', u'close', u'galleri']
[u'bushfir', u'remain', u'uncontrol']
[u'busi', u'confid', u'surg']
[u'crackdown', u'young', u'driver']
[u'canada', u'hold', u'inquiri', u'submarin']
[u'canberra', u'australia', u'youngest', u'citi']
[u'canegrow', u'chief', u'seek', u'ethanol', u'answer']
[u'carbon', u'dioxid', u'spike', u'renew', u'global', u'warm', u'fear']
[u'rego', u'rise']
[u'cemeteri', u'vandal', u'leav', u'trail', u'destruct']
[u'ceremoni', u'honour', u'bali', u'victim']
[u'china', u'develop', u'tast']
[u'china', u'sign']
[u'chines', u'girl', u'band', u'idea', u'worth']
[u'chines', u'compani', u'buy', u'southland', u'collieri']
[u'church', u'group', u'oppos', u'shop', u'plan']
[u'announc', u'shadow', u'cabinet', u'shake']
[u'comment', u'seek', u'narooma', u'plan']
[u'council', u'forgo', u'wild', u'levi', u'plan']
[u'councillor', u'challeng', u'tribun', u'rule']
[u'council', u'engin', u'student', u'plan']
[u'council', u'adopt', u'child', u'care', u'plan', u'build']
[u'council', u'urg', u'reject', u'hous', u'plan']
[u'court', u'hear', u'detail', u'break', u'hill', u'shoot', u'case']
[u'cricket', u'honour', u'miller']
[u'croc', u'attack', u'investig']
[u'cycl', u'great', u'armstrong', u'inspir', u'indian']
[u'deadlin', u'announc', u'reef', u'rainforest', u'crcs']
[u'debat', u'flare', u'locust', u'control', u'fund']
[u'delay', u'announc', u'hospit', u'work']
[u'democrat', u'robertson', u'take', u'heart', u'elect', u'result']
[u'department', u'fund', u'promis', u'lib']
[u'dinosaur', u'track', u'swiss', u'mountain']
[u'drug', u'research', u'alarm', u'ecstasi', u'survey']
[u'dubbo', u'rider', u'saddl', u'youth', u'olymp']
[u'ducati', u'dump', u'bayliss', u'report']
[u'eastman', u'trial', u'procedur', u'confus']
[u'energex', u'chairman', u'resign', u'person', u'alleg']
[u'energex', u'leav', u'custom', u'powerless']
[u'agre', u'plan', u'replac', u'nato', u'bosnia']
[u'call', u'isra', u'oper', u'palestin']
[u'lift', u'libyan', u'arm', u'embargo']
[u'expert', u'probe', u'coal', u'line', u'derail']
[u'fals', u'alarm', u'flood', u'shop', u'centr']
[u'faulkner', u'resign', u'labor', u'senat', u'leader']
[u'feedback', u'seek', u'natur', u'resourc', u'plan']
[u'feed', u'croc', u'attack', u'bushman', u'say']
[u'feel', u'high', u'gold', u'theft', u'probe']
[u'festiv', u'inject', u'childer', u'economi']
[u'fiji', u'militari', u'protect', u'iraq']
[u'finnish', u'consum', u'watchdog', u'hit', u'broadcast']
[u'firefight', u'battl', u'blaze', u'border']
[u'firefight', u'gain', u'upper', u'hand']
[u'firefight', u'take', u'control', u'coast', u'blaze']
[u'firefight', u'warn', u'bushfir', u'season', u'potenti']
[u'fire', u'toll', u'livestock']
[u'forestri', u'polici', u'rush', u'labor', u'presid', u'say']
[u'forrest', u'reject', u'retir', u'claim']
[u'charg', u'group', u'attack']
[u'gallop', u'elect', u'trail', u'bunburi']
[u'gold', u'coast', u'rememb', u'bali', u'blast', u'anniversari']
[u'group', u'leav', u'hospit', u'strand', u'ordeal']
[u'hanson', u'chase', u'number']
[u'hanson', u'mida', u'touch']
[u'hawker', u'comment', u'energis', u'ararat', u'mayor']
[u'high', u'price', u'slow', u'fuel', u'demand', u'growth']
[u'hill', u'galleri', u'get', u'offici', u'open']
[u'hobart', u'introduc', u'butt', u'subsidi']
[u'hope', u'questionnair', u'spark', u'daniel', u'morcomb']
[u'weather', u'put', u'crop', u'growth', u'doubt']
[u'howard', u'attend', u'bali', u'remembr', u'ceremoni']
[u'howard', u'pay', u'tribut', u'boyhood', u'hero', u'miller']
[u'icac', u'dismiss', u'sydney', u'water', u'corrupt', u'claim']
[u'independ', u'call']
[u'indonesia', u'confront', u'terror', u'outgo']
[u'injur', u'beckham', u'play', u'weekend', u'real', u'doctor']
[u'inquest', u'launch', u'death']
[u'iraq', u'weapon', u'handov', u'slow', u'start']
[u'judg', u'sentenc', u'despic', u'attack']
[u'king', u'canyon', u'walk', u'claim', u'victim']
[u'kookaburra', u'defend', u'pakistan', u'pull']
[u'kookaburra', u'pull', u'pakistan', u'trip']
[u'labor', u'urg', u'decid', u'futur', u'direct']
[u'landhold', u'urg', u'boost', u'readi']
[u'landhold', u'warn', u'readi']
[u'latham', u'conced', u'campaign', u'fail']
[u'latham', u'pay', u'tribut', u'faulkner']
[u'leicest', u'wilkinson']
[u'locust', u'number', u'rise']
[u'lone', u'bomber', u'think', u'respons', u'aust', u'embassi']
[u'charg', u'crash', u'hous']
[u'die', u'highway', u'crash']
[u'jail', u'testifi', u'detect']
[u'plead', u'guilti', u'child', u'porn', u'charg']
[u'send', u'psychiatr', u'hospit', u'crime']
[u'face', u'sentenc', u'stadium', u'break']
[u'specul', u'schwarzer']
[u'marin', u'engag', u'heavili', u'mosqu', u'damag']
[u'mayor', u'push', u'ergon', u'centr']
[u'mental', u'health', u'advoc', u'fund']
[u'milosev', u'trial', u'resum']
[u'mirvac', u'make', u'friend', u'offer', u'jam', u'field']
[u'bodi', u'recov', u'india', u'north', u'east']
[u'mosul', u'suicid', u'bomb', u'kill', u'soldier', u'iraqi']
[u'mother', u'bali', u'blast', u'victim', u'forgiv', u'terrorist']
[u'mourner', u'rememb', u'bali', u'victim']
[u'mullumbimbi', u'resid', u'face', u'water', u'ban']
[u'mundin', u'readi', u'fight']
[u'mundin', u'talk', u'chanc']
[u'mysteri', u'earli', u'death', u'basebal', u'star']
[u'mystifi', u'bank', u'lose']
[u'nigerian', u'union', u'extend', u'fuel', u'strike']
[u'japanes', u'dead', u'suspect', u'suicid', u'pact']
[u'northam', u'fish', u'farm', u'lure', u'interst']
[u'push', u'commonwealth', u'kakadu', u'uranium', u'wast']
[u'nuclear', u'equip', u'miss', u'iraq', u'say']
[u'price', u'near']
[u'price', u'hold', u'steadi']
[u'opposit', u'want', u'green', u'light', u'give', u'school', u'zone']
[u'pakistan', u'test', u'fire', u'nuclear', u'capabl', u'missil']
[u'parramatta', u'give', u'leas', u'life']
[u'pitcairn', u'accus', u'secur', u'jurisdict', u'appeal']
[u'plan', u'begin', u'outback', u'celebr']
[u'playground', u'smoke', u'free', u'zone']
[u'polic', u'charg', u'drink', u'drive']
[u'polic', u'investig', u'fatal', u'crash']
[u'polic', u'airport', u'vandal']
[u'polic', u'prais', u'life', u'save', u'effort']
[u'polic', u'probe', u'miss', u'mysteri']
[u'polic', u'probe', u'letterbox', u'blast']
[u'polic', u'public', u'memori', u'assault']
[u'port', u'lincoln', u'mayor', u'issu', u'telstra', u'sale', u'warn']
[u'public', u'urg', u'join', u'anti', u'wast', u'dump', u'campaign']
[u'public', u'warn', u'avoid', u'snake', u'bite', u'victim']
[u'push', u'tackl', u'western', u'pest']
[u'qanta', u'merger', u'decis', u'expect']
[u'qanta', u'flag', u'fuel', u'surcharg', u'hike']
[u'qanta', u'move', u'allianc', u'idea']
[u'qanta', u'win', u'appeal', u'merger']
[u'govt', u'confid', u'canker', u'free', u'christma']
[u'miss', u'magnesium', u'project']
[u'rain', u'boost', u'level']
[u'renal', u'support', u'group', u'come']
[u'report', u'consid', u'hospit', u'futur']
[u'rude', u'wake', u'coma', u'patient']
[u'russia', u'plan', u'sale', u'yuko', u'asset']
[u'ryan', u'tip', u'omeley', u'bounc', u'select']
[u'brace', u'unusu', u'spring']
[u'debat', u'smoke']
[u'safeti', u'review', u'melbourn', u'landmark']
[u'salin', u'scheme', u'result', u'know', u'year']
[u'scriptwrit', u'sue', u'soni', u'film']
[u'chang', u'group', u'call', u'infrastructur', u'fund']
[u'search', u'miss', u'coupl', u'continu']
[u'season', u'tire', u'henin', u'hardenn']
[u'secker', u'maintain', u'telstra', u'sale', u'stanc']
[u'shannon', u'creek', u'review']
[u'sharon', u'cling', u'withdraw', u'plan']
[u'shear', u'hard', u'work', u'find', u'local', u'worker']
[u'shire', u'introduc', u'water', u'charg', u'scheme']
[u'kill', u'african', u'world', u'tragedi']
[u'socceroo', u'hammer', u'solomon', u'book', u'confeder']
[u'soccer', u'chang', u'oval', u'plan']
[u'solicitor', u'face', u'child', u'porn', u'charg']
[u'stab', u'put', u'hospit']
[u'stanhop', u'condemn', u'lib', u'jail', u'polici']
[u'state', u'issu', u'blame', u'drop', u'support']
[u'student', u'paramed', u'deliv', u'mackay', u'babi']
[u'studi', u'show', u'shift', u'kimberley', u'pilbara']
[u'superman', u'death', u'shock', u'gold', u'coast', u'friend']
[u'suspend', u'policeman', u'admit', u'accept', u'money']
[u'sydney', u'base', u'jumper', u'critic', u'condit']
[u'sydney', u'lord', u'mayor', u'defend', u'dual', u'role']
[u'tasmania', u'get', u'credit', u'rat']
[u'tasmania', u'implement', u'hoon', u'law']
[u'teen', u'face', u'drive', u'charg']
[u'thiev', u'adelaid', u'bank']
[u'thompson', u'leav', u'pool', u'golden', u'career']
[u'track', u'favour', u'elvstroem', u'say', u'trainer']
[u'track', u'favour', u'elvstroem', u'say', u'trainer']
[u'tribut', u'flow', u'keith', u'miller']
[u'tribut', u'flow', u'hors', u'breeder']
[u'turkish', u'contractor', u'translat', u'behead']
[u'plead', u'guilti', u'child', u'porn', u'charg']
[u'unbeat', u'hanson', u'win', u'sixth', u'gold']
[u'unhappi', u'ratepay', u'consid', u'reject', u'council']
[u'union', u'hoteli', u'disagre', u'smoke']
[u'unit', u'fan', u'readi', u'beat', u'frazer', u'takeov']
[u'accus', u'breach', u'intern']
[u'invas', u'iraq', u'plagu', u'tech', u'glitch']
[u'precis', u'strike', u'hit', u'fallujah', u'restaur']
[u'throw', u'free', u'trade', u'deal', u'launch', u'doubt']
[u'vardi', u'hang', u'boot']
[u'victoria', u'announc', u'smoke', u'plan']
[u'wall', u'creep', u'despit', u'fear']
[u'mourner', u'rememb', u'bali', u'victim']
[u'wife', u'choker', u'plead', u'guilti']
[u'wildlif', u'servic', u'warn', u'snake', u'risk']
[u'wilkinson', u'england', u'action']
[u'woman', u'nake', u'detent', u'concern', u'ombudsman']
[u'workshop', u'damag', u'industri']
[u'wright', u'wait', u'bullet']
[u'ralli', u'melbourn', u'nowingi', u'wast', u'dump']
[u'power', u'sydney']
[u'evacu', u'sydney', u'substat']
[u'academ', u'question', u'state', u'liber', u'profil']
[u'accommod', u'lead', u'green', u'educ', u'polici']
[u'liber', u'releas', u'polici', u'cost']
[u'alinghi', u'take', u'thousand', u'guinea']
[u'athlet', u'australia', u'lose', u'head', u'coach']
[u'australia', u'good', u'outclass', u'solomon']
[u'author', u'monitor', u'hinterland', u'fire']
[u'bali', u'ceremoni', u'rememb', u'bomb', u'victim']
[u'bank', u'strengthen', u'market', u'record', u'break']
[u'beatti', u'plead', u'chang', u'govt', u'educ']
[u'beckham', u'face', u'captainci']
[u'beckham', u'foul', u'bring', u'england', u'disreput', u'hurst']
[u'bega', u'firm', u'seek', u'chees']
[u'bemax', u'move', u'miner', u'sand', u'product']
[u'beslan', u'end', u'mourn', u'amid', u'reveng', u'concern']
[u'reduc', u'poker', u'machin', u'number', u'step', u'closer']
[u'blackout', u'forc', u'melbourn']
[u'blast', u'baghdad', u'kill', u'soldier']
[u'blatter', u'blast', u'beckham', u'card', u'trick']
[u'bok', u'deni', u'arrog', u'claim']
[u'box', u'legend', u'hurt', u'crash']
[u'box', u'legend', u'hurt', u'gippsland', u'crash']
[u'brisban', u'tremor', u'rattl', u'resid']
[u'bushfir', u'contain', u'central', u'coast']
[u'bushfir', u'threat', u'prompt', u'total']
[u'busi', u'group', u'pleas', u'coalit']
[u'cahil', u'tip', u'earli', u'return']
[u'cairn', u'prepar', u'schooli', u'influx']
[u'calala', u'hous', u'plan', u'look', u'head', u'court']
[u'polic', u'stun', u'gun', u'wake', u'melbourn']
[u'camera', u'mobil', u'phone', u'ban', u'council']
[u'car', u'confisc', u'hoon', u'law']
[u'caufield', u'barrier', u'draw', u'go', u'favourit']
[u'chamber', u'back', u'alter', u'holiday', u'trade', u'hour']
[u'chamber', u'highlight', u'opposit', u'seven', u'trade']
[u'china', u'spurn', u'taiwan', u'peac', u'talk']
[u'chloe', u'return', u'hotel', u'home']
[u'club', u'fear', u'smoke', u'impact']
[u'cobar', u'court', u'child', u'charg']
[u'cole', u'myer', u'enter', u'bid', u'fray']
[u'concern', u'air', u'smoke', u'club', u'impact']
[u'concern', u'miss', u'iraq', u'weapon', u'part']
[u'convict', u'murder', u'guilt', u'unlik', u'court', u'hear']
[u'costello', u'keen', u'elect', u'promis', u'pass', u'soon']
[u'council', u'back', u'justic', u'precinct']
[u'councillor', u'put', u'brake', u'garag', u'consult', u'plan']
[u'council', u'allianc', u'save', u'thousand']
[u'council', u'seek', u'involv', u'govt', u'decis']
[u'council', u'consid', u'speed', u'limit']
[u'court', u'fin', u'owner', u'attack']
[u'court', u'finalis', u'land', u'right']
[u'crean', u'shadow', u'treasuri', u'role']
[u'crean', u'urg', u'calm', u'wake', u'elect', u'defeat']
[u'croc', u'attack', u'rescu', u'spark', u'govt', u'prais']
[u'sugar', u'test', u'worker', u'drug']
[u'defenc', u'open', u'case', u'backpack', u'murder', u'trial']
[u'delay', u'north', u'footi', u'brawl', u'report']
[u'democrat', u'push', u'youth', u'issu']
[u'dfat', u'investig', u'report', u'tourist', u'injur']
[u'doctor', u'group', u'urg', u'govt', u'rural', u'support']
[u'dolphin', u'kill', u'research', u'accid']
[u'talk', u'owner', u'infect', u'citrus', u'orchard']
[u'drug', u'raid', u'cannabi', u'haul']
[u'dump', u'protest', u'voic', u'concern', u'bendigo']
[u'elder', u'disabl', u'miss', u'home', u'care']
[u'emerg', u'equip', u'dedic', u'fall', u'firefight']
[u'energex', u'resign', u'fail', u'deter', u'beatti']
[u'energex', u'revel', u'overshadow', u'appoint']
[u'blame', u'caus', u'sonic', u'boom']
[u'famili', u'hop', u'contest', u'elect']
[u'famili', u'senat', u'role', u'worri', u'faulkner']
[u'farmer', u'urg', u'tackl', u'locust', u'earli']
[u'faulti', u'smoke', u'detector', u'spark', u'centr', u'evacu']
[u'fear', u'smoke', u'plan', u'news', u'club']
[u'impos', u'bushfir', u'threat', u'mount']
[u'firefight', u'boost', u'resourc', u'blaze', u'near']
[u'firefight', u'control', u'illawarra', u'blaze']
[u'firefight', u'watch', u'forest', u'scrub', u'blaze']
[u'firefight', u'watch', u'gippsland', u'wind', u'condit']
[u'fire', u'destroy', u'abandon', u'board', u'hous']
[u'charg', u'fiji', u'murder']
[u'kill', u'troop', u'clash', u'insurg']
[u'forum', u'focus', u'indigen', u'studi']
[u'gallop', u'hint', u'home', u'buyer', u'relief']
[u'connect', u'wait', u'frustrat', u'resid']
[u'german', u'tourist', u'lose', u'belong', u'berri', u'spring']
[u'govern', u'rule', u'croc', u'cull']
[u'govt', u'accus', u'public', u'fund', u'polit']
[u'govt', u'give', u'court', u'power', u'test', u'customari']
[u'grain', u'farmer', u'push', u'china']
[u'hama', u'milit', u'kill', u'strike', u'gaza']
[u'heat', u'spell', u'disast', u'crop']
[u'hepburn', u'council', u'reappoint', u'chief']
[u'heritag', u'centr', u'honour', u'mine', u'victim']
[u'hide', u'crack', u'blame', u'helicopt', u'crash']
[u'home', u'evacu', u'bushfir', u'rage', u'state']
[u'home', u'evacu', u'fire', u'rage']
[u'weather', u'spark', u'total']
[u'icac', u'clear', u'sydney', u'water', u'manag']
[u'icpa', u'prais', u'news', u'decis']
[u'dont', u'want', u'captainci', u'say', u'gilchrist']
[u'lose', u'bangalor', u'warn', u'admit']
[u'israel', u'admit', u'ambul', u'claim', u'wrong']
[u'jackson', u'bevilaqua', u'claim', u'wnba', u'titl']
[u'jackson', u'miss', u'second', u'award']
[u'judg', u'reserv', u'decis', u'eastman', u'inquiri']
[u'kewel', u'sydney', u'test']
[u'kiwi', u'ponder', u'hockey', u'pull']
[u'knight', u'premier', u'leagu', u'coach']
[u'labor', u'claim', u'victori', u'bendigo']
[u'labor', u'promis', u'water', u'strategi']
[u'labor', u'edward', u'closer', u'win', u'cowan']
[u'lawson', u'dodemaid', u'name', u'lilac', u'hill']
[u'lehmann', u'gilchrist']
[u'lehmann', u'readi', u'fall', u'sword']
[u'lennon', u'defend', u'forestri', u'stand']
[u'lennon', u'talk', u'pulp', u'prospect']
[u'lennon', u'warn', u'feder', u'colleagu', u'green']
[u'liber', u'defend', u'educ', u'polici']
[u'liber', u'pledg', u'meet', u'greenhous', u'emiss', u'target']
[u'liberia', u'coach', u'quit', u'destroy', u'home']
[u'littl', u'taibu', u'reveal', u'ambit']
[u'lobbi', u'group', u'cast', u'doubt', u'review', u'plan']
[u'alleg', u'anglican', u'priest', u'prostitut']
[u'die', u'crash', u'gympi', u'woolooga']
[u'kill', u'gyrocopt', u'crash']
[u'sentenc', u'year', u'theft']
[u'shoot', u'dead', u'polic', u'melbourn']
[u'market', u'continu', u'focus', u'price']
[u'mccoy', u'hope', u'return']
[u'michael', u'jackson', u'decri', u'eminem', u'video']
[u'miller', u'receiv', u'state', u'funer']
[u'minist', u'hit', u'plan', u'lobbi', u'group', u'scare']
[u'minist', u'order', u'probe', u'paramed', u'ambul']
[u'minist', u'probe', u'volunt', u'sack', u'claim']
[u'mitsubishi', u'commit', u'australian', u'oper']
[u'suffer', u'osteoporosi']
[u'seek', u'riverina', u'focus', u'health', u'servic']
[u'super', u'entitl']
[u'murray', u'coach', u'hockeyroo']
[u'nation', u'highlight', u'ballot', u'bungl', u'woe']
[u'nation', u'sound', u'warn', u'telstra', u'sale']
[u'nativ', u'titl', u'recognis', u'peopl', u'cape', u'york']
[u'energex', u'chairman', u'appoint']
[u'scan', u'detect', u'alzheim']
[u'team', u'bathurst', u'winner', u'murphi']
[u'warn', u'govt', u'chang']
[u'buffalo', u'demand', u'malaysia']
[u'outback', u'ordeal', u'fail', u'grind', u'coupl']
[u'outlook', u'improv', u'cane', u'grower']
[u'palestinian', u'secur', u'chief', u'surviv', u'bomb', u'attack']
[u'paralympian', u'receiv', u'warm', u'recept']
[u'parti', u'step', u'health', u'fund', u'campaign']
[u'phone', u'jam', u'appeas', u'french', u'filmgoer']
[u'plane', u'owner', u'strand', u'unauthoris', u'land']
[u'play', u'prospect', u'emptiv', u'strike']
[u'polic', u'hunt', u'serial', u'robber']
[u'polic', u'investig', u'melbourn', u'fatal', u'shoot']
[u'polic', u'crash', u'victim']
[u'polic', u'probe', u'fatal', u'crash']
[u'polic', u'probe', u'theori', u'penguin', u'murder']
[u'polic', u'child', u'porn', u'raid', u'possibl']
[u'polic', u'check', u'comput', u'child', u'porn']
[u'politician', u'ask', u'singl', u'desk', u'commit']
[u'power', u'sydney', u'north']
[u'elect', u'econom', u'predict', u'optimist']
[u'premier', u'say', u'standard', u'block', u'smelter']
[u'probe', u'launch', u'supermarket', u'blaze']
[u'prosecut', u'wrap', u'case', u'stuttl', u'murder', u'trial']
[u'public', u'urg', u'seek', u'bush', u'boost']
[u'public', u'warn', u'wari', u'door', u'door', u'tradesmen']
[u'firefight', u'rais', u'equip', u'concern']
[u'real', u'estat', u'agent', u'give', u'deposit', u'murder']
[u'record', u'nice', u'home', u'better', u'say']
[u'redback', u'gambl', u'youth']
[u'region', u'link', u'assess', u'price', u'impact']
[u'report', u'highlight', u'good', u'time', u'ahead', u'coal']
[u'research', u'uncov', u'stress', u'substanc', u'abus', u'link']
[u'resid', u'ask', u'gympi', u'bypass', u'rout']
[u'resid', u'meet', u'gold', u'theft', u'probe']
[u'richmond', u'outcom', u'week', u'away']
[u'richmond', u'hang', u'balanc']
[u'harvest', u'conserv', u'plan']
[u'rumsfeld', u'appeal', u'nato', u'help', u'iraq']
[u'saddam', u'undergo', u'hernia', u'oper']
[u'search', u'pipelin', u'custom']
[u'senat', u'chang', u'threaten', u'workplac', u'law', u'govt']
[u'smoke', u'ban', u'predict', u'small', u'pub', u'hardest']
[u'smoke', u'draw']
[u'snake', u'scorpion', u'seiz', u'perth', u'raid']
[u'socceroo', u'readi', u'fulfil', u'potenti', u'farina']
[u'stamp', u'duti', u'concess', u'boost', u'hous', u'market']
[u'stanhop', u'indigen', u'issu', u'democrat']
[u'state', u'funer', u'keith', u'miller']
[u'studi', u'reveal', u'asbesto', u'relat', u'lung']
[u'suspend', u'polic', u'offic', u'fake', u'raid', u'wit', u'say']
[u'sydney', u'swelter', u'hottest', u'octob', u'record']
[u'talk', u'focus', u'skill', u'shortag']
[u'tasmania', u'brace', u'possibl', u'danger', u'bushfir']
[u'tasmanian', u'polic', u'domest', u'violenc']
[u'relief', u'tip', u'home', u'buyer']
[u'tendulkar', u'chennai', u'hop', u'fade', u'black']
[u'hope', u'media', u'chang']
[u'report', u'million', u'profit']
[u'tougher', u'water', u'ban', u'possibl']
[u'trade', u'deal', u'ahead', u'time', u'vail']
[u'trapper', u'hunt', u'wild', u'dog', u'kosciuszko']
[u'trenorden', u'upbeat', u'biomass', u'plant', u'plan']
[u'convict', u'crimin', u'deport', u'vietnam']
[u'union', u'welcom', u'casual', u'worker', u'deal']
[u'uruguay', u'hold', u'precious', u'point', u'bolivia']
[u'criticis', u'loss', u'materi', u'iraq']
[u'forc', u'attempt', u'hostag', u'rescu', u'report']
[u'get', u'tough', u'guam', u'tree', u'snake']
[u'photograph', u'free', u'abduct']
[u'vandal', u'toll', u'local', u'school']
[u'venus', u'win', u'russian', u'domin', u'kremlin', u'action']
[u'govt', u'doubl', u'budget', u'surplus']
[u'govt', u'unmov', u'pipelin', u'fund']
[u'victoria', u'power', u'station']
[u'govt', u'speed', u'smoke', u'measur']
[u'shire', u'recycl', u'option']
[u'water', u'exempt', u'good', u'news', u'ballarat']
[u'weapon', u'inspector', u'welcom', u'iraq']
[u'weather', u'woe', u'affect', u'malle', u'crop']
[u'wind', u'hamper', u'firefight']
[u'wit', u'seek', u'aussi', u'tourist', u'mysteri', u'mishap']
[u'yambulla', u'forest', u'brew']
[u'investig', u'begin', u'follow', u'woman']
[u'soldier', u'kill', u'iraq', u'violenc']
[u'journalist', u'name', u'walkley', u'finalist']
[u'account', u'help', u'fight', u'problem', u'gambl']
[u'afghanistan', u'vote', u'count', u'begin']
[u'airlin', u'consid', u'respons', u'rise', u'price']
[u'staff', u'strike']
[u'ambul', u'servic', u'apologis', u'woman', u'death']
[u'angler', u'urg', u'worri', u'research', u'boat']
[u'anglican', u'bishop', u'distanc', u'dean']
[u'angri', u'go']
[u'labor', u'quit', u'frontbench']
[u'arthur', u'metz', u'tournament']
[u'associ', u'back', u'recycl', u'plan']
[u'aussi', u'determin', u'prevent', u'indian', u'fight']
[u'aussi', u'wealth', u'exceed', u'trillion']
[u'australian', u'death', u'solomon', u'suspici']
[u'award', u'honour', u'boulder', u'senior']
[u'axeman', u'hall', u'fame', u'upgrad', u'complet']
[u'bali', u'polic', u'charg', u'woman']
[u'bank', u'queensland', u'post', u'record', u'profit']
[u'beckham', u'apologis', u'deliber', u'book']
[u'blair', u'deni', u'misrepres', u'iraq', u'intellig']
[u'escap', u'jail', u'term', u'attack', u'croc']
[u'brisban', u'welcom', u'crew', u'reinforc']
[u'build', u'firm', u'ask', u'help', u'redress', u'skill']
[u'bushfir', u'spark', u'hous', u'safeti']
[u'bushfir', u'smoulder']
[u'byron', u'watch', u'crucial', u'beach', u'develop', u'talk']
[u'footbal', u'leagu', u'shake']
[u'probe', u'hospit', u'closur']
[u'cambodia', u'pick', u'king']
[u'camplin', u'world', u'titl', u'hop', u'dash']
[u'candid', u'claim', u'bias', u'shire', u'websit', u'articl']
[u'cane', u'blaze', u'land', u'hospit']
[u'carr', u'seek', u'probe', u'corrupt', u'offic', u'case']
[u'cattl', u'council', u'unfaz', u'vaccin', u'storag']
[u'choke', u'risk', u'prompt', u'fake', u'dummi']
[u'chopper', u'fatal', u'crash', u'unsaf', u'say', u'famili']
[u'christma', u'pageant', u'return']
[u'claremont', u'kill', u'task', u'forc', u'readi', u'disband']
[u'classif', u'process', u'concern', u'ruddock', u'wake']
[u'cocain', u'smuggl', u'journalist', u'jail']
[u'cocain', u'smuggl', u'trial', u'open']
[u'comeback', u'king', u'edg', u'tiger', u'wildcat', u'stay']
[u'commis', u'report', u'nomin', u'literari', u'award']
[u'complaint', u'delay', u'afghanistan', u'vote', u'count']
[u'connecteast', u'win', u'freeway', u'contract']
[u'conserv', u'group', u'releas', u'report', u'card']
[u'conserv', u'group', u'welcom', u'nuclear', u'dump']
[u'consum', u'protect', u'construct', u'law']
[u'corrupt', u'offic', u'deni', u'break']
[u'corrupt', u'offic', u'deni', u'take', u'cover', u'money']
[u'council', u'consid', u'main', u'street', u'alcohol']
[u'council', u'consid', u'super', u'bodi']
[u'council', u'case', u'merger']
[u'council', u'taxi', u'marshal', u'scheme']
[u'council', u'maintain', u'pressur', u'medic', u'centr']
[u'council', u'urg', u'mediat', u'histor', u'societi']
[u'council', u'decid', u'club', u'poki', u'plan']
[u'countri', u'take', u'prioriti', u'club', u'bennett']
[u'crop', u'despit', u'heat']
[u'davenport', u'world']
[u'dean', u'outburst', u'unhelp']
[u'develop', u'board', u'reject', u'water', u'plan', u'concern']
[u'distinct', u'caulfield']
[u'doubt', u'cast', u'child', u'porn', u'bungl', u'claim']
[u'draw', u'match', u'leav', u'south', u'american', u'race', u'wide', u'open']
[u'driver', u'face', u'murder', u'charg']
[u'drought', u'grip', u'illawarra', u'shoalhaven']
[u'drunken', u'talk', u'spark', u'parliamentari']
[u'dead', u'baghdad', u'blast']
[u'european', u'constitut', u'threaten', u'spell']
[u'exot', u'newt', u'seiz', u'melbourn', u'hous']
[u'fallujah', u'negoti', u'question', u'zarqawi', u'ultimatum']
[u'fear', u'asbesto', u'worker', u'win', u'landmark', u'rule']
[u'fear', u'global', u'warm', u'harm', u'wine', u'industri']
[u'ferrari', u'pope']
[u'amidst', u'rise', u'temperatur']
[u'crew', u'battl', u'blaze']
[u'forc', u'camper', u'evacu']
[u'fire', u'threaten', u'springbrook', u'home']
[u'fletcher', u'jone', u'shut', u'shop', u'gambier']
[u'foil', u'bank', u'robber', u'target', u'custom']
[u'media', u'boss', u'clear', u'improp', u'gain', u'charg']
[u'foster', u'clear', u'sell', u'stake']
[u'stand', u'trial', u'slave', u'ring']
[u'fund', u'increas', u'drop', u'properti', u'crime']
[u'gangren', u'cure', u'free', u'lunch', u'maggot']
[u'gibbin', u'refus', u'bendigo']
[u'firm', u'award']
[u'gold', u'coast', u'bushfir', u'threat', u'intensifi']
[u'govt', u'reject', u'saltwat', u'storag', u'basin', u'sit']
[u'gregan', u'play', u'world']
[u'gundagai', u'continu', u'pursu', u'fund']
[u'haddin', u'ask', u'blue', u'batsmen', u'stand']
[u'hama', u'leader', u'arrest', u'milit', u'kill', u'gaza']
[u'hama', u'milit', u'kill', u'renew', u'threat']
[u'hat', u'alinghi']
[u'hayden', u'langer', u'brilliant', u'start']
[u'heat', u'news', u'wimmera', u'malle', u'crop']
[u'heritag', u'list', u'recognis', u'bathurst', u'bell']
[u'histori', u'promis', u'memor', u'chennai', u'encount']
[u'hospit', u'say', u'chopper', u'chang', u'wont', u'affect', u'patient']
[u'weather', u'blame', u'sydney', u'blackout']
[u'howard', u'congratul', u'elect', u'victori']
[u'hundr', u'motorcycl', u'grand', u'prix']
[u'look', u'racism', u'alleg', u'program']
[u'ident', u'theft', u'expert', u'converg', u'canberra']
[u'indian', u'line', u'remain', u'mysteri']
[u'ingram', u'upbeat', u'health', u'servic', u'fund']
[u'insecticid', u'theft', u'spark', u'health', u'warn']
[u'investig', u'begin', u'dolphin', u'death']
[u'iraq', u'break', u'presidenti', u'debat']
[u'iraqi', u'issu', u'ultimatum', u'fallujah', u'milit']
[u'iraq', u'fuel', u'terror', u'say', u'weapon']
[u'isra', u'offic', u'criticis', u'gaza', u'oper']
[u'israel', u'overreact', u'palestinian', u'attack', u'straw']
[u'jam', u'tip', u'red', u'resurg']
[u'morgan', u'close', u'adelaid', u'oper']
[u'judg', u'highlight', u'long', u'road', u'nativ', u'titl']
[u'kaif', u'recal', u'bolster', u'indian', u'bat']
[u'kirner', u'want', u'women', u'frontbench']
[u'kumbl', u'get', u'martyn']
[u'lava', u'bubbl', u'volcano', u'surfac']
[u'lawyer', u'complain', u'guantanamo', u'trial']
[u'liber', u'accus', u'fraudul', u'polici', u'cost']
[u'locust', u'march', u'western']
[u'give', u'suspend', u'sentenc', u'poker', u'attack']
[u'kill', u'boat', u'hit', u'airport', u'runway']
[u'mayor', u'warn', u'water']
[u'mccoy', u'say', u'doohan', u'record', u'reach']
[u'meet', u'spark', u'matern', u'action', u'group']
[u'risk', u'osteoporosi']
[u'milit', u'kill', u'papua']
[u'minist', u'discuss', u'trade', u'shortag', u'solut']
[u'minor', u'injuri', u'australian', u'catch', u'cairo']
[u'mobil', u'phone', u'doubl', u'nerv', u'tumour', u'risk', u'studi']
[u'feedback', u'hospit', u'plan']
[u'motorcycl', u'death', u'spark', u'polic', u'safeti', u'warn']
[u'motorcyclist', u'accus', u'clock']
[u'question', u'council', u'appoint']
[u'mundin', u'earn', u'world', u'titl', u'fight']
[u'sell', u'irish', u'busi']
[u'nation', u'confid', u'senat', u'seat']
[u'princ', u'video', u'stir', u'controversi']
[u'night', u'redempt', u'world', u'hitmen']
[u'polic', u'minist', u'corrupt', u'polic']
[u'number', u'drought', u'declar', u'area', u'declin']
[u'ogradi', u'confirm', u'tour']
[u'price', u'increas', u'amid', u'suppli', u'fear']
[u'organis', u'claim', u'wast', u'dump', u'ralli', u'success']
[u'pakistan', u'allow', u'musharraf', u'uniform']
[u'pakistani', u'blast', u'kookaburra', u'pull']
[u'parti', u'trade', u'blow', u'polici', u'cost']
[u'parti', u'urg', u'address', u'chronic', u'staff']
[u'perilya', u'disagre', u'valuat']
[u'petit', u'seek', u'goldfield', u'juvenil', u'detent', u'centr']
[u'petit', u'seek', u'return', u'cross', u'servic']
[u'pickett', u'charg', u'accid']
[u'plan', u'underway', u'breakaway', u'rescu', u'chopper']
[u'plan', u'put', u'focus', u'koala', u'preserv']
[u'polic', u'accus', u'bungl', u'child', u'porn', u'crackdown']
[u'polic', u'boost', u'nimbin', u'effort']
[u'polic', u'deni', u'exist', u'infring', u'quota']
[u'polic', u'investig', u'volunt', u'firefight', u'death']
[u'polit', u'wrangl', u'surround', u'energex', u'controversi']
[u'pont', u'test']
[u'power', u'delist', u'trio']
[u'power', u'restor', u'sydney', u'blackout']
[u'probe', u'continu', u'fatal', u'lifeboat', u'mishap']
[u'psychiatrist', u'shortag', u'rais', u'treatment', u'fear']
[u'public', u'servic', u'accus', u'financi', u'mismanag']
[u'public', u'plan', u'health', u'chang']
[u'public', u'urg', u'avoid', u'skin', u'fungus']
[u'pupil', u'warn', u'gambl', u'danger']
[u'real', u'estat', u'chang', u'hurt', u'vendor', u'warn']
[u'recherch', u'secur', u'heritag', u'status']
[u'refineri', u'spill', u'anger', u'perth', u'resid']
[u'renew', u'hope', u'kidnap', u'french', u'journalist']
[u'research', u'focus', u'lower', u'indigen', u'crash', u'rate']
[u'resid', u'threaten', u'legal', u'action', u'govt']
[u'resid', u'urg', u'abandon', u'secess', u'plan']
[u'resourc', u'stock', u'halt', u'market', u'surg']
[u'review', u'critic', u'deet', u'central', u'aust', u'offic']
[u'review', u'probe', u'council', u'structur']
[u'rise', u'price', u'boost', u'travel', u'cost']
[u'riverina', u'care', u'provid', u'boost', u'profit']
[u'rocket', u'enter', u'orbit', u'space', u'station', u'mission']
[u'roof', u'tiler', u'strike', u'caus', u'build', u'delay']
[u'rossi', u'cautious', u'verg', u'fourth', u'titl']
[u'russia', u'name', u'seed', u'hopman']
[u'govt', u'chang']
[u'santo', u'readi', u'pipelin', u'work']
[u'second', u'tourist', u'die', u'trail']
[u'secret', u'oper', u'fail', u'north', u'korean', u'sub']
[u'secur', u'guard', u'media', u'money', u'hold', u'trust']
[u'injur', u'whitsunday', u'freak', u'wave']
[u'shultz', u'implant']
[u'silverston', u'get', u'date']
[u'slight', u'eas', u'water', u'ban']
[u'speed', u'camera', u'locat', u'leak']
[u'speed', u'retir', u'intern', u'soccer']
[u'strong', u'wind', u'tweed']
[u'studi', u'reveal', u'learn', u'languag', u'chang', u'brain']
[u'stuttl', u'juri', u'hear', u'close', u'argument']
[u'teen', u'accus', u'ram', u'polic']
[u'teen', u'die', u'cliff', u'fall']
[u'temperatur', u'hit', u'high', u'illawarra']
[u'tougher', u'water', u'ban', u'possibl', u'rain']
[u'trade', u'plan', u'spark', u'mini', u'mart', u'concern']
[u'trio', u'jail', u'heroin', u'distribut']
[u'lebanes', u'hostag', u'free', u'fallujah']
[u'agenc', u'demand', u'israel', u'apolog']
[u'union', u'offici', u'dump', u'elect', u'fallout']
[u'uranium', u'level', u'water', u'safe']
[u'hurrican', u'spell', u'cyclon', u'woe']
[u'charg', u'explos']
[u'vogt', u'get', u'vote', u'confid', u'scottish']
[u'warm', u'weather', u'trigger', u'earli', u'coral']
[u'warn', u'equal', u'record', u'kumbl', u'star']
[u'western', u'medicin', u'meet', u'altern', u'health']
[u'wide', u'firi', u'help', u'southern', u'counterpart']
[u'winemak', u'qualiti', u'quibbl']
[u'woman', u'murder', u'typic', u'serial', u'killer', u'cook']
[u'women', u'children', u'iraq', u'mass', u'grave']
[u'woodburn', u'blaze', u'control']
[u'work', u'expert', u'criticis', u'elect', u'campaign', u'focus']
[u'wound', u'radcliff', u'target', u'beij']
[u'present', u'remark', u'prompt', u'apolog']
[u'adelaid', u'conced', u'defeat']
[u'adler', u'lose', u'appeal', u'legal', u'action']
[u'aim', u'criticis', u'prison', u'suicid']
[u'airport', u'taxi', u'group', u'discuss', u'levi', u'propos']
[u'airport', u'locat']
[u'alburi', u'defend', u'brogden', u'polic', u'comment']
[u'candid', u'look', u'hard', u'work', u'ahead']
[u'ambul', u'servic', u'question', u'medic', u'agreement']
[u'amphibian', u'face', u'extinct', u'studi', u'warn']
[u'anaesthetist', u'quit', u'administr', u'arrog']
[u'annan', u'say', u'rich', u'nation', u'tackl', u'poverti']
[u'associ', u'call', u'assess', u'indigen']
[u'atapattus', u'vain', u'pakistan', u'beat']
[u'kill', u'iraq', u'violenc']
[u'aussi', u'davi', u'win', u'tour', u'piedmont']
[u'author', u'probe', u'boat', u'blaze']
[u'ballist', u'databas', u'hail', u'class']
[u'reduc', u'fulham', u'cole']
[u'bashir', u'face', u'terror', u'charg']
[u'bashir', u'face', u'terror', u'indict']
[u'bendigo', u'mayor', u'seek', u'elect']
[u'better', u'weather', u'aid', u'east', u'coast', u'firefight', u'effort']
[u'blue', u'bat', u'brisban']
[u'blue', u'lunch']
[u'close', u'can', u'petrol', u'sniff']
[u'brack', u'attack', u'toll', u'remov', u'promis']
[u'break', u'hill', u'host', u'tidi', u'town', u'gather']
[u'bull', u'inning', u'point']
[u'bull', u'inning', u'point']
[u'bull', u'look', u'blue', u'open']
[u'businessman', u'defend', u'tennant', u'creek', u'reput']
[u'caulfield', u'tip']
[u'chris', u'rock', u'host', u'oscar']
[u'coff', u'firefight', u'offer', u'respit', u'gold', u'coast']
[u'commod', u'price', u'caus', u'alarm', u'analyst', u'say']
[u'communiti', u'sink', u'teeth', u'fluorid', u'debat']
[u'communiti', u'back', u'plan', u'local', u'bank']
[u'communiti', u'rememb', u'chopper', u'crash', u'victim']
[u'control', u'line', u'help', u'fight', u'east', u'coast', u'fire']
[u'controversi', u'freeway', u'help', u'state', u'brack', u'say']
[u'council', u'back', u'nurs', u'home']
[u'council', u'govt', u'sign', u'indigen', u'land', u'agreement']
[u'council', u'reject', u'kemmiss', u'hill', u'wind', u'farm', u'plan']
[u'council', u'share', u'road', u'fund']
[u'council', u'discuss', u'veget', u'issu']
[u'council', u'form', u'econom', u'develop', u'unit']
[u'count', u'continu', u'perth', u'margin']
[u'cricket', u'australia', u'hail', u'warn', u'monument']
[u'crisi', u'meet', u'call', u'lobster', u'price', u'sink']
[u'date', u'klitschko', u'william', u'titl', u'fight']
[u'daw', u'grab', u'roll', u'cheapli']
[u'mark', u'rural', u'women', u'achiev']
[u'decis', u'pend', u'terror', u'suspect']
[u'dept', u'premier', u'take', u'aborigin', u'affair']
[u'doctor', u'warn', u'shortag', u'launceston']
[u'dolphin', u'death', u'go', u'unreport']
[u'driver', u'remind', u'indi', u'road', u'chang']
[u'dump', u'oppon', u'heart', u'wind', u'farm']
[u'dump', u'transform', u'marina']
[u'earli', u'intervent', u'scheme', u'announc', u'chang']
[u'elkington', u'touch', u'greensboro', u'classic']
[u'confirm', u'defenc', u'heineken', u'classic', u'titl']
[u'elvstroem', u'hors', u'beat']
[u'emerg', u'servic', u'quiz', u'communic']
[u'evid', u'proceed', u'jackson', u'case', u'judg']
[u'expert', u'say', u'child', u'porn', u'investig', u'iceberg']
[u'famili', u'optimist', u'senat', u'upset']
[u'final', u'presidenti', u'debat', u'close']
[u'firefight', u'brace', u'extrem', u'danger']
[u'firefight', u'expect', u'tough', u'northern']
[u'firefight', u'look', u'hunter', u'blaze']
[u'fletcher', u'jone', u'close', u'factori']
[u'foreign', u'poll', u'favour', u'kerri', u'bush']
[u'depart', u'head', u'resign', u'amid', u'scandal']
[u'drug', u'squad', u'offic', u'appear', u'drug', u'charg']
[u'teacher', u'walk', u'free', u'plead', u'guilti']
[u'treasur', u'defend', u'corpor', u'handout']
[u'franc', u'lead', u'push', u'syrian', u'troop']
[u'fundrais', u'aim', u'helipad', u'plan']
[u'gallop', u'highlight', u'mental', u'health', u'effort']
[u'girl', u'hurt', u'rockhampton', u'attack']
[u'goosen', u'sparkl', u'match', u'play', u'rain']
[u'govern', u'water', u'woe']
[u'govt', u'call', u'clarifi', u'child', u'porn', u'law']
[u'govt', u'urg', u'reveal', u'unfit', u'region', u'polic']
[u'avoid', u'jail', u'despit', u'suppli', u'drug', u'addict']
[u'green', u'doubt', u'win', u'tassi', u'senat', u'seat']
[u'green', u'seek', u'gallop', u'resign', u'chemic', u'compo']
[u'green', u'zone', u'bomb', u'toll', u'rise']
[u'gregan', u'point', u'perth', u'super', u'posit']
[u'hervey', u'growth', u'boom']
[u'houllier', u'reckon', u'wale']
[u'hous', u'boom', u'put', u'pressur', u'water', u'deliveri']
[u'hous', u'plan', u'hurt', u'battler', u'opposit', u'say']
[u'hunter', u'jobless', u'rate', u'rise']
[u'immigr', u'detain', u'visa', u'breach']
[u'india', u'produc', u'stun', u'turnaround']
[u'indigen', u'teach', u'scholarship', u'offer']
[u'industri', u'park', u'move', u'closer', u'realiti']
[u'inmat', u'assist', u'firefight', u'effort']
[u'iraqi', u'insurg', u'claim', u'turkish', u'hostag', u'behead']
[u'iron', u'titl', u'slater', u'crash']
[u'isra', u'offic', u'suspend', u'gaza', u'girl', u'kill']
[u'israel', u'scale', u'gaza', u'offens']
[u'jail', u'staff', u'inmat', u'expos', u'legionnair', u'diseas']
[u'jam', u'say', u'media', u'underr', u'ordinari']
[u'jazz', u'mildura', u'festiv']
[u'jobless', u'news', u'richmond', u'tweed', u'region']
[u'juri', u'retir', u'stuttl', u'murder', u'trial']
[u'kangaroo', u'finalis', u'prepar', u'kiwi', u'clash']
[u'kangaroo', u'sidestep', u'wada', u'drug', u'polici']
[u'katter', u'want', u'govt', u'help', u'combat', u'doctor', u'shortag']
[u'langer', u'stun', u'singh', u'world', u'match', u'play']
[u'larg', u'turnout', u'poll']
[u'liber', u'claim', u'polic', u'enforc', u'speed', u'camera', u'quota']
[u'lingiari', u'vote', u'count', u'continu']
[u'local', u'win', u'judg']
[u'woman', u'injur', u'gang', u'assault']
[u'market', u'price', u'hike']
[u'marsh', u'hit', u'tassi', u'beat', u'warrior']
[u'melbourn', u'attack', u'region', u'campus', u'plan']
[u'men', u'drink', u'spike', u'puzzl', u'polic']
[u'minist', u'disappoint', u'smoke', u'delay']
[u'minist', u'hear', u'health', u'merger', u'opposit']
[u'monaro', u'stock', u'water', u'short', u'suppli']
[u'moran', u'doubl', u'put', u'venezuela', u'world', u'hunt']
[u'booth', u'featur', u'electron', u'vote']
[u'pipelin', u'compo', u'claim', u'possibl']
[u'mother', u'plea', u'help', u'son', u'bodi']
[u'speak', u'chemic', u'comment']
[u'upset', u'financi', u'slug', u'volunt', u'group']
[u'nairn', u'claim', u'eden', u'monaro']
[u'consid', u'take', u'game', u'china']
[u'nerv', u'edg', u'field', u'prepar']
[u'northern', u'employ', u'figur', u'improv']
[u'child', u'porn', u'charg', u'proceed', u'despit', u'oppn']
[u'nurs', u'highlight', u'recent', u'attack']
[u'price', u'fail', u'dampen', u'ord']
[u'soar']
[u'onlin', u'telescop', u'put', u'focus', u'bathurst', u'night']
[u'opposit', u'question', u'salt', u'dispos', u'site']
[u'opposit', u'urg', u'govt', u'chang', u'campus', u'plan']
[u'opposit', u'want', u'plan', u'spell', u'grafton', u'jail']
[u'palau', u'airlin', u'suspend', u'darwin', u'servic']
[u'park', u'honour', u'westgat', u'bridg', u'collaps', u'victim']
[u'pioneer', u'winemak', u'die']
[u'poki', u'legisl', u'creat', u'fear']
[u'poland', u'iraq', u'troop', u'number']
[u'polic', u'drug', u'oper', u'spark', u'charg']
[u'polic', u'launch', u'arson', u'train', u'centr']
[u'polic', u'minist', u'face', u'energex', u'probe']
[u'polic', u'offer', u'protect', u'famili', u'follow', u'gang']
[u'polic', u'union', u'call', u'brogden', u'apolog']
[u'polit', u'leader', u'focus', u'attent', u'geraldton']
[u'previt', u'give', u'life', u'stuttl', u'murder']
[u'probe', u'continu', u'cliff', u'fall']
[u'properti', u'group', u'call', u'propos', u'prison', u'upgrad']
[u'push', u'rental', u'properti', u'smoke', u'alarm']
[u'push', u'south', u'west', u'road', u'boost']
[u'qanta', u'increas', u'fuel', u'surcharg']
[u'rail', u'author', u'stand', u'weekend', u'work']
[u'rain', u'help', u'eas', u'crop', u'concern']
[u'realiti', u'tear', u'british', u'eyesor']
[u'redback', u'bushrang', u'rememb', u'hook']
[u'reptil', u'park', u'owner', u'criticis', u'teen', u'attack', u'sentenc']
[u'rise', u'fuel', u'unlik', u'stop', u'caravan', u'trip']
[u'robinson', u'confirm', u'time', u'england', u'coach']
[u'rossi', u'take', u'provision', u'pole']
[u'rossi', u'take', u'provision', u'pole', u'phillip', u'island']
[u'rower', u'receiv', u'belat', u'bronz', u'medal']
[u'royal', u'lash', u'cheat', u'claim']
[u'russian', u'govt', u'undervalu', u'yuko', u'asset', u'bank', u'say']
[u'school', u'close', u'bushfir', u'near']
[u'school', u'concern', u'student', u'villawood']
[u'scientist', u'transfer', u'breakthrough']
[u'scientist', u'trial', u'major', u'advanc', u'malaria', u'vaccin']
[u'sculli', u'back', u'independ']
[u'second', u'darwin', u'tip', u'ghan']
[u'sehwag', u'aussi', u'strike']
[u'senat', u'face', u'charg', u'mislead', u'polic']
[u'sentenc', u'increas', u'culpabl', u'drive']
[u'bushfir', u'threaten', u'home']
[u'face', u'summer', u'blackout', u'opposit', u'say']
[u'seven', u'dead', u'cargo', u'plane', u'crash', u'canada']
[u'drug', u'mcenro', u'expos', u'tatum', u'tell']
[u'sharon', u'consid', u'cut', u'gaza', u'armi', u'deploy']
[u'silenc', u'best', u'eriksson', u'tell', u'sorri', u'beckham']
[u'simon', u'ax', u'protea', u'coach', u'jen', u'appoint']
[u'singapor', u'truck', u'water', u'exercis']
[u'respit', u'south', u'east', u'firefight']
[u'stanhop', u'play', u'major', u'govern', u'hop']
[u'strike', u'expect', u'minim', u'impact']
[u'student', u'enrol', u'scam', u'draw', u'icac', u'attent']
[u'surfer', u'stand', u'trial', u'relat', u'underworld']
[u'survey', u'tap', u'central', u'queensland', u'view']
[u'sydney', u'teen', u'plead', u'guilti', u'manslaught']
[u'syring', u'robber', u'give', u'year', u'sentenc']
[u'tafe', u'fee', u'increas']
[u'tall', u'skinni', u'teen', u'face', u'higher', u'breast', u'cancer', u'risk']
[u'shower', u'firefight']
[u'teen', u'appear', u'court', u'murder', u'charg']
[u'teen', u'stand', u'trial', u'monash', u'parti', u'bash']
[u'teller', u'laugh', u'attempt', u'robberi']
[u'tendulkar', u'leav', u'squad', u'treatment']
[u'thousand', u'voter', u'disenfranchis', u'union', u'say']
[u'thousand', u'protest', u'gaza', u'withdraw']
[u'thousand', u'attend', u'mine', u'expo']
[u'tight', u'race', u'continu', u'richmond']
[u'face', u'petrol', u'sniff', u'epidem']
[u'trucki', u'succumb', u'injuri']
[u'truck', u'ident', u'plan', u'corpor', u'retreat']
[u'trust', u'economi', u'domin', u'final', u'day']
[u'unit', u'anxious', u'close', u'titl', u'rival']
[u'agre', u'iraq', u'audit']
[u'strike', u'fallujah', u'continu']
[u'armi', u'worker', u'arrest', u'okinawa', u'rape']
[u'forc', u'arrest', u'fallujah', u'negoti', u'jihad']
[u'health', u'offici', u'attempt', u'restock', u'vaccin']
[u'investig', u'soldier', u'afghanistan', u'death']
[u'launch', u'strike', u'fallujah']
[u'retail', u'ban', u'australian', u'wool']
[u'want', u'gaza', u'oper', u'soon', u'possibl']
[u'util', u'lose', u'appeal', u'fine', u'worker', u'death']
[u'wide', u'wast', u'water', u'treatment', u'moot']
[u'virgin', u'blue', u'mull', u'follow', u'qanta', u'fuel', u'surcharg']
[u'visitor', u'urg', u'bunni', u'face', u'fine']
[u'volunt', u'group', u'disput', u'see', u'fund', u'pull']
[u'warn', u'eye', u'outright', u'record']
[u'warn', u'find', u'calm', u'world']
[u'warn', u'readi', u'claim', u'histori']
[u'warn', u'snare', u'record', u'india']
[u'warn', u'take', u'world', u'record']
[u'wave', u'mishap', u'consid', u'rare', u'event']
[u'wildcat', u'hawk', u'notch', u'win']
[u'wilkinson', u'declar', u'club', u'action']
[u'woman', u'walk', u'record']
[u'woolworth', u'block', u'rival']
[u'world', u'agoni', u'spur', u'gregan']
[u'youngster', u'dark', u'merci', u'dash', u'save']
[u'zimbabw', u'opposit', u'leader', u'acquit', u'treason']
[u'plung', u'river', u'northern', u'india']
[u'abandon', u'girl', u'famili', u'come', u'forward']
[u'accus', u'norfolk', u'murder', u'fli', u'sydney']
[u'poll', u'count', u'begin']
[u'african', u'union', u'send', u'soldier', u'quell', u'sudan']
[u'african', u'union', u'send', u'troop', u'darfur']
[u'anthoni', u'trail', u'richmond', u'count']
[u'author', u'swoop', u'illeg', u'worker']
[u'bashir', u'face', u'bali', u'charg']
[u'blue', u'fight', u'bull', u'inning']
[u'brown', u'hop', u'prefer', u'push', u'miln', u'quota']
[u'bull', u'inning', u'point']
[u'bull', u'trail', u'blue', u'lunch']
[u'bushrang', u'redback', u'lunch']
[u'canberran', u'head', u'poll']
[u'church', u'target', u'iraq', u'bomb', u'blast']
[u'club', u'gather', u'discuss', u'legisl']
[u'cook', u'tour', u'doubl']
[u'czar', u'paper', u'pass', u'melbourn', u'woman']
[u'danc', u'troup', u'help', u'suicid', u'prevent']
[u'darfur', u'demand', u'troop', u'envoy', u'say']
[u'davenport', u'kremlin', u'semi', u'william']
[u'doctor', u'plan', u'rise']
[u'downer', u'welcom', u'bashir', u'terror', u'charg']
[u'drug', u'addict', u'give', u'suspend', u'sentenc', u'robberi']
[u'dubai', u'team', u'debut']
[u'westwood', u'final', u'showdown']
[u'elvstroem', u'claim', u'caulfield']
[u'appeal', u'sugar', u'rule']
[u'court']
[u'fallujah', u'religi', u'leader', u'threaten', u'holi']
[u'farmer', u'accus', u'peta', u'emot', u'blackmail']
[u'faulti', u'parachut', u'link', u'genesi', u'crash']
[u'firefight', u'compet', u'honour']
[u'fire', u'threaten', u'popular', u'tourist', u'area']
[u'fire', u'control', u'northern']
[u'fishermen', u'die', u'sweep', u'rock']
[u'florida', u'voter', u'registr', u'case', u'begin']
[u'forecast', u'condit', u'help', u'bushfir', u'fight']
[u'gibernau', u'grab', u'pole', u'phillip', u'island']
[u'gould', u'auckland', u'heart', u'scare']
[u'greenspan', u'temper', u'shock', u'fear']
[u'grower', u'theyr', u'take', u'brunt', u'water', u'pain']
[u'hardi', u'chief', u'asset', u'seiz']
[u'hewitt', u'roddick', u'moya', u'feder', u'leav', u'madrid', u'master']
[u'higher', u'retail', u'sale', u'market', u'nudg']
[u'horniman', u'museum', u'fall', u'foul', u'smut', u'filter']
[u'independ', u'propos', u'region', u'rehabilit']
[u'india', u'warn', u'clean', u'tail']
[u'india', u'continu', u'build', u'lead']
[u'india', u'control', u'test']
[u'india', u'control', u'second', u'test']
[u'iran', u'reject', u'deal', u'uranium', u'enrich']
[u'iraqi', u'photograph', u'shoot', u'dead', u'iraq']
[u'israel', u'begin', u'troop', u'withdraw']
[u'beazley']
[u'jimenez', u'end', u'langer', u'match', u'play']
[u'jogger', u'best', u'foot', u'forward', u'trailblaz']
[u'kangaroo', u'kiwi', u'draw', u'open', u'test']
[u'kangaroo', u'kiwi', u'half', u'time']
[u'kiwi', u'prepar', u'warm', u'welcom', u'carrol']
[u'kumbl', u'star', u'india', u'seiz', u'control']
[u'labor', u'ahead', u'earli', u'count']
[u'labor', u'eye', u'major', u'poll']
[u'labor', u'tip', u'prepar', u'vote']
[u'leader', u'cast', u'vote', u'poll']
[u'liber', u'candid', u'cameron', u'conced', u'parramatta']
[u'liber', u'labor', u'victori', u'poll']
[u'jail', u'wife', u'kill']
[u'margaret', u'river', u'resid', u'upset', u'rate', u'rise']
[u'marshal', u'atol', u'sue', u'nuclear', u'damag']
[u'marsh', u'hit', u'tassi', u'beat', u'warrior']
[u'melbourn', u'lord', u'mayor', u'troop']
[u'myskina', u'down', u'davenport', u'reach', u'moscow', u'final']
[u'airlin', u'link', u'south', u'west', u'sydney']
[u'runner', u'domin', u'master', u'marathon']
[u'palestinian', u'pick', u'piec', u'isra', u'offens']
[u'parkinson', u'shadow', u'iron', u'spanish', u'surf', u'titl', u'hunt']
[u'perth', u'polic', u'seek', u'suspect', u'stab']
[u'pinochet', u'suffer', u'mild', u'dementia']
[u'polic', u'arrest', u'perth', u'stab', u'suspect']
[u'polic', u'investig', u'armidal', u'street', u'brawl']
[u'polic', u'search', u'girraween', u'miss']
[u'polic', u'identifi', u'dump', u'girl']
[u'razorback', u'dodg', u'bullet']
[u'razorback', u'dodg', u'bullet', u'tiger', u'edg', u'king']
[u'real', u'estat', u'predict', u'differ']
[u'redback', u'fight', u'bushrang']
[u'relentless', u'close', u'match', u'play', u'record']
[u'report', u'reveal', u'shame', u'abus', u'queensland', u'home']
[u'rescu', u'team', u'rush', u'rescu', u'fisherman']
[u'russian', u'craft', u'dock', u'space', u'station']
[u'scene', u'decis']
[u'sciacca', u'ponder', u'life', u'post', u'polit']
[u'sehwag', u'stand', u'overshadow', u'warn']
[u'leagu']
[u'smyth', u'conced', u'poll']
[u'soccer', u'boss', u'beckham', u'explain']
[u'stanhop', u'claim', u'unpreced', u'victori']
[u'tasmanian', u'govt', u'defend', u'tafe', u'hike']
[u'taxi', u'littl', u'relief', u'fare', u'increas']
[u'telstra', u'sale', u'unlik']
[u'tender', u'open', u'navi', u'shipbuild', u'contract']
[u'train', u'solo', u'ride', u'end', u'derail']
[u'trucker', u'pass', u'cost', u'custom']
[u'soldier', u'kill', u'afghanistan']
[u'consid', u'request', u'help', u'iraq']
[u'troop', u'baghdad']
[u'union', u'question', u'energex', u'chairman', u'role', u'disput']
[u'union', u'threaten', u'action', u'power', u'sack']
[u'report', u'arrest', u'fallujah', u'negoti']
[u'scrap', u'million', u'infect', u'vaccin', u'dose']
[u'soldier', u'refus', u'iraq', u'mission']
[u'tycoon', u'glazer', u'unit', u'share', u'swoop']
[u'vet', u'procedur', u'despit', u'wool', u'boycott']
[u'word', u'win', u'histori', u'prize']
[u'weather', u'aid', u'firefight']
[u'worksaf', u'investig', u'crane', u'death']
[u'young', u'peopl', u'warn', u'anti', u'depress', u'risk']
[u'zarqawi', u'order', u'disrupt', u'iraq', u'fuel', u'import']
[u'zimbabwean', u'govt', u'appeal', u'opposit', u'leader']
[u'aussi', u'competit', u'total']
[u'aussi', u'gritti', u'resist']
[u'bichel', u'symond', u'bull', u'charg']
[u'bishop', u'make', u'pitch', u'speaker']
[u'blind', u'pilot', u'complet', u'chariti', u'flight']
[u'blue', u'build', u'lead']
[u'brack', u'consid', u'anti', u'hoon', u'law']
[u'brack', u'fli', u'chines', u'market']
[u'brazil', u'allow', u'forc', u'target', u'drug', u'plan']
[u'british', u'polic', u'reopen', u'lord', u'lucan', u'case']
[u'buchanan', u'order', u'middl', u'order', u'stand']
[u'bull', u'close', u'victori', u'blue']
[u'bush', u'kerri', u'margin', u'state']
[u'bushrang', u'slow', u'steadi', u'adelaid']
[u'carr', u'admit', u'desalin', u'backflip']
[u'chennai', u'india', u'take']
[u'club', u'launch', u'code', u'practis']
[u'coastal', u'close', u'contain']
[u'court', u'decid', u'abandon', u'girl', u'fate']
[u'prize', u'caulfield', u'favourit']
[u'custom', u'thwart', u'anim', u'smuggler']
[u'darfur', u'troop', u'deploy', u'delay']
[u'dead', u'weekend', u'queensland', u'road']
[u'deco', u'keep', u'barca', u'fli', u'high', u'ronaldo', u'rescu']
[u'democrat', u'look', u'wipeout']
[u'dfat', u'staff', u'help', u'regener', u'bare', u'canberra', u'slop']
[u'down', u'pilot', u'worri', u'wait', u'rescu']
[u'down', u'lead', u'tour']
[u'down', u'lead', u'tour', u'evan', u'fourth', u'itali']
[u'drink', u'driver', u'blow', u'seven', u'time', u'legal', u'limit']
[u'egan', u'triumph', u'spanish', u'surf', u'parko', u'world', u'titl']
[u'westwood', u'squar', u'halfway', u'stage']
[u'erot', u'gherkin', u'take', u'design', u'gong']
[u'nomine', u'creat', u'stir', u'singl', u'mum']
[u'fallujah', u'bombard', u'continu']
[u'ferguson', u'look', u'anger', u'ahead', u'gunner']
[u'firefight', u'hone', u'high', u'tech', u'servic']
[u'flame', u'continu', u'win']
[u'crow', u'cat', u'pedal', u'chariti']
[u'gallop', u'extend', u'growth', u'invit', u'lennon']
[u'garden', u'hose', u'cool', u'power', u'substat']
[u'govt', u'outlin', u'telstra', u'sale', u'timet']
[u'govt', u'play', u'talk', u'free']
[u'govt', u'ponder', u'indon', u'secur', u'deal']
[u'gunner', u'extend', u'lead', u'blue', u'slump', u'citi']
[u'harbhajan', u'dent', u'aussi', u'fight']
[u'health', u'warn', u'swan', u'river', u'sewag', u'spill']
[u'israel', u'launch', u'oper', u'gaza', u'strip']
[u'jayasuriya', u'lead', u'lanka', u'victori']
[u'karzai', u'take', u'earli', u'lead', u'afghan', u'elect']
[u'kerri', u'promis', u'lift', u'stem', u'cell', u'research']
[u'king', u'ban', u'liber', u'parti']
[u'king', u'shoot', u'bullet']
[u'kiwi', u'british', u'base', u'player']
[u'kosciuszko', u'wildlif', u'bounc']
[u'labor', u'look', u'right', u'frontbench']
[u'lacklustr', u'juve', u'stretch', u'lead', u'itali']
[u'leed', u'hold', u'nerv', u'super', u'leagu', u'drought']
[u'liber', u'emptiv', u'merger']
[u'loeb', u'clinch', u'world', u'ralli', u'titl']
[u'malik', u'report', u'suspect', u'action']
[u'martyn', u'lead', u'australian', u'fight']
[u'martyn', u'set', u'thrill', u'final']
[u'attack', u'tennant', u'creek', u'financi', u'doubter']
[u'warn', u'postal', u'scam']
[u'myskina', u'captur', u'kremlin']
[u'mango', u'varieti', u'launch']
[u'hand', u'aborigin', u'remain']
[u'honour', u'emerg', u'servic', u'volunt']
[u'kill', u'wound', u'rogu', u'bear']
[u'polic', u'seek', u'inform', u'perth', u'stab']
[u'pope', u'look', u'ahead', u'anniversari']
[u'post', u'elect', u'violenc', u'spread', u'afghanistan']
[u'liber', u'reject', u'nation', u'merger', u'plan']
[u'record', u'field', u'chariti', u'ride']
[u'redback', u'bushrang']
[u'report', u'claim', u'gulf', u'syndrom', u'exist']
[u'resid', u'invit', u'tour', u'embassi']
[u'reward', u'offer', u'miss', u'toddler', u'case']
[u'richmond', u'slip', u'away', u'anthoni']
[u'rossi', u'wrap', u'world', u'championship']
[u'satellit', u'crush', u'hous', u'china']
[u'search', u'fisherman', u'bodi', u'continu']
[u'seventh', u'madrid', u'bomber', u'identifi']
[u'stanhop', u'celebr', u'histor']
[u'stoner', u'phillip', u'island']
[u'sydney', u'shop', u'centr', u'evacu', u'leak']
[u'tah', u'argentin', u'tour', u'winner']
[u'teen', u'catch', u'speed', u'twice', u'hour']
[u'thousand', u'stroll', u'diabet']
[u'tiger', u'lunch']
[u'tini', u'town', u'take', u'tidi', u'town', u'honour']
[u'bad', u'injur', u'melbourn', u'smash']
[u'dead', u'helicopt', u'crash', u'iraq']
[u'continu', u'assault', u'fallujah']
[u'deni', u'zarqawi', u'captur']
[u'forc', u'pound', u'fallujah']
[u'paper', u'split', u'presidenti', u'prefer']
[u'victorian', u'locust', u'watch']
[u'warrior', u'strike', u'tiger']
[u'warrior', u'tiger', u'share', u'honour']
[u'water', u'truck', u'armi', u'exercis']
[u'accus', u'draw', u'blank', u'fatal', u'accid']
[u'actu', u'criticis', u'elect', u'campaign']
[u'actu', u'expect', u'radic', u'workplac', u'chang']
[u'actu', u'fight', u'industri', u'relat', u'reform']
[u'tip', u'rais', u'fuel', u'surcharg']
[u'airport', u'forc', u'rule', u'land']
[u'alcohol', u'ban', u'boost', u'communiti', u'health']
[u'bid', u'battl', u'domin', u'market']
[u'alleg', u'lawnmov', u'thief', u'face', u'court']
[u'anglican', u'report', u'criticis', u'church', u'leader']
[u'anthoni', u'limbo', u'richmond', u'count', u'continu']
[u'anti', u'poverti', u'week', u'highlight', u'health', u'woe']
[u'arsenal', u'vieira', u'doubt', u'champion', u'leagu', u'trip']
[u'attack', u'prey', u'cereb', u'palsi', u'suffer']
[u'australia', u'reject', u'troop', u'request']
[u'australia', u'thump', u'dublin']
[u'asia', u'pacif', u'reject', u'parent', u'takeov']
[u'ballarat', u'wont', u'boost', u'offer', u'despit', u'strike']
[u'chang', u'urg', u'athlet', u'australia']
[u'blast', u'hit', u'cafe', u'near', u'aust', u'embassi']
[u'treat', u'snake', u'bite']
[u'brogden', u'stand', u'porn', u'charg', u'claim']
[u'break', u'hill', u'adelaid', u'servic', u'evalu', u'ongo']
[u'bull', u'notch', u'thrill', u'outright']
[u'bureau', u'look', u'loom', u'cyclon', u'season']
[u'burrup', u'peninsula', u'get', u'emerg', u'servic', u'boost']
[u'busi', u'welcom', u'internet', u'technolog']
[u'cat', u'delist', u'sprigg', u'foster']
[u'champion', u'leagu', u'get', u'gun', u'meet']
[u'chariti', u'urg', u'howard', u'tackl', u'poverti']
[u'colanda', u'complex', u'upgrad']
[u'cold', u'cross', u'blood', u'stock']
[u'consumpt', u'boost', u'wool', u'export', u'china']
[u'cook', u'claim', u'tour', u'stage']
[u'cooper', u'bribe', u'hear', u'begin']
[u'coron', u'report', u'teacher', u'death']
[u'council', u'blame', u'illeg', u'dump', u'increas']
[u'council', u'crack', u'water']
[u'council', u'fast', u'rail', u'scheme', u'brief']
[u'count', u'point', u'labor', u'major']
[u'court', u'hear', u'cash', u'claim', u'exchang']
[u'crash', u'claim', u'mundubbera', u'locum', u'pharmacist']
[u'crash', u'spark', u'polic', u'mobil', u'phone', u'warn']
[u'croc', u'coach', u'panic', u'weekend', u'loss']
[u'crown', u'lawyer', u'appear', u'eastman', u'inquiri']
[u'cunningham', u'result', u'declar']
[u'darwin', u'student', u'celebr', u'democraci']
[u'dean', u'jensen', u'say', u'comment', u'take', u'context']
[u'dentist', u'shortag', u'hit']
[u'dentist', u'support', u'fluorid', u'plan']
[u'dept', u'seek', u'communiti', u'input', u'futur', u'educ']
[u'develop', u'consid', u'latest', u'setback']
[u'doctor', u'defend', u'increas']
[u'doctor', u'rais', u'fee', u'despit', u'recommend']
[u'dump', u'child', u'stay', u'grandpar', u'care']
[u'dunda', u'warn', u'feder', u'territori', u'power', u'struggl']
[u'dust', u'fire', u'storm', u'blame', u'power', u'pole', u'fire']
[u'dutch', u'soldier', u'acquit', u'iraqi', u'death']
[u'emerg', u'servic', u'improv', u'communic']
[u'emerson', u'quit', u'frontbench']
[u'evan', u'conced', u'wakefield', u'liber']
[u'explos', u'caus', u'kenyan', u'airport', u'collaps']
[u'fallujah', u'fight', u'eas', u'troop', u'pull']
[u'fallujah', u'peac', u'talk', u'call']
[u'farmer', u'assembl', u'govt', u'bushfir']
[u'farmer', u'watch', u'locust']
[u'fatal', u'highway', u'crash', u'disrupt', u'sydney', u'traffic']
[u'firefight', u'effort', u'continu', u'east', u'coast']
[u'rip', u'venezuelan', u'skyscrap']
[u'fisher', u'angri', u'marin', u'park', u'zone', u'plan']
[u'milit', u'kill', u'opposit', u'gaza']
[u'rescu', u'boat', u'sink', u'torr', u'strait']
[u'footbal', u'analog', u'bring', u'indigen', u'firm', u'closer']
[u'forecast', u'tip', u'recess']
[u'worker', u'admit', u'skim', u'thousand']
[u'franc', u'consid', u'recherch', u'protect']
[u'fraser', u'accid', u'land', u'tourist', u'hospit']
[u'fuel', u'price', u'offer', u'mix', u'outlook', u'driver']
[u'fund', u'boost', u'disabl', u'scheme']
[u'garag', u'destroy', u'truck', u'crash']
[u'ghan', u'season', u'servic', u'doubl']
[u'ghan', u'servic', u'expans', u'prompt', u'accomod']
[u'gilchrist', u'rue', u'rain', u'ruin', u'chennai', u'classic']
[u'gold', u'coast', u'home', u'damag', u'downpour']
[u'good', u'weather', u'boost', u'floriad', u'visitor', u'number']
[u'govern', u'reach', u'carer']
[u'governor', u'tour', u'west']
[u'govt', u'happi', u'reef', u'fish', u'spawn', u'closur', u'respons']
[u'govt', u'urg', u'sack']
[u'govt', u'urg', u'probe', u'anaesthetist', u'resign']
[u'green', u'confid', u'win', u'assembl', u'seat']
[u'health', u'servic', u'minimis', u'nois', u'level']
[u'hussey', u'power', u'inning', u'point']
[u'clear', u'zimbabw', u'racism']
[u'say', u'plan', u'drop', u'nation', u'test', u'circuit']
[u'india', u'china', u'turn', u'crop', u'battl', u'fee']
[u'indonesia', u'step', u'secur', u'swear']
[u'industri', u'manslaught', u'gain', u'union', u'support']
[u'industri', u'face', u'increas', u'water', u'cost']
[u'infect', u'bear', u'spark', u'romania', u'rabi', u'alert']
[u'iraq', u'milit', u'confirm', u'qaeda', u'link', u'statement']
[u'iraq', u'plan', u'countrywid', u'arm', u'amnesti']
[u'iraq', u'protest', u'london', u'street']
[u'irish', u'women', u'keen', u'learn', u'agricultur']
[u'israel', u'kill', u'gaza', u'infiltr']
[u'itali', u'start', u'iraq', u'troop', u'pullout', u'elect']
[u'soar', u'aria']
[u'joli', u'vote', u'sexiest', u'woman', u'aliv']
[u'kangaroo', u'promis', u'lift', u'london']
[u'karzai', u'lead', u'afghan', u'vote']
[u'kidnapp', u'threaten', u'kill', u'say']
[u'knife', u'bandit', u'spark', u'polic', u'manhunt']
[u'landhold', u'urg', u'readi']
[u'landhold', u'urg', u'share', u'drought', u'experi']
[u'landmark', u'rule', u'clear', u'magazin', u'libel']
[u'societi', u'presid', u'vow', u'fight', u'govt', u'chang']
[u'lennon', u'stand', u'firm', u'forestri', u'job']
[u'like', u'father', u'like', u'tour']
[u'face', u'court', u'coolamon', u'blaze']
[u'mcmullan', u'quit', u'latham', u'frontbench']
[u'merger', u'shake', u'retir', u'sector']
[u'mildura', u'mayor', u'happi', u'council', u'structur']
[u'mildura', u'rider', u'put', u'strong', u'grand', u'prix', u'finish']
[u'miner', u'secur', u'miner', u'sand', u'fund']
[u'fund', u'seek', u'devonport', u'visitor', u'centr']
[u'rain', u'predict', u'northern', u'tableland']
[u'mount', u'welcom', u'olympian']
[u'say', u'telstra', u'sell', u'happen']
[u'murder', u'hear', u'tell', u'fail', u'suicid', u'attempt']
[u'servic', u'step', u'closer']
[u'newcastl', u'miss', u'chanc', u'fourth']
[u'inform', u'lead', u'polic', u'murder', u'victim', u'bodi']
[u'leas', u'life', u'seek', u'town', u'hall']
[u'news', u'bridg', u'makeov', u'welcom']
[u'theatr', u'compani', u'head', u'aim', u'high']
[u'altern', u'mules', u'farmer']
[u'guarante', u'bush', u'servic', u'telstra', u'sale']
[u'panic', u'say', u'croc', u'coach', u'stacker']
[u'consid', u'urban', u'renew', u'plan']
[u'price', u'surg']
[u'ombudsman', u'call', u'nation', u'credit', u'regul']
[u'opposit', u'question', u'govt', u'busi', u'polic']
[u'optic', u'bewild', u'galleri', u'goer']
[u'optometrist', u'child', u'sight', u'problem', u'go']
[u'outback', u'town', u'water', u'crisi', u'shame']
[u'paraglid', u'hurt', u'hit', u'powerlin']
[u'park', u'close', u'cattl', u'round']
[u'partnership', u'pay', u'seeta', u'award']
[u'pedestrian', u'die', u'truck', u'accid']
[u'pedestrian', u'car']
[u'pitcairn', u'accus', u'remain', u'free', u'month']
[u'welcom', u'liber']
[u'warn', u'parti', u'complac']
[u'polic', u'crack', u'cannabi']
[u'polic', u'memo', u'support', u'child', u'porn', u'concern', u'brogden']
[u'polic', u'promis', u'indi', u'crackdown']
[u'polic', u'seek', u'order', u'destroy']
[u'poll', u'bush', u'elect', u'edg']
[u'prison', u'encourag', u'offend', u'cell', u'mat']
[u'probe', u'launch', u'illeg', u'freshwat', u'fish']
[u'public', u'urg', u'water', u'week']
[u'qanta', u'flight', u'attend', u'talk', u'deadlock']
[u'qanta', u'head', u'strike', u'breaker']
[u'qanta', u'union', u'order', u'talk']
[u'race', u'face', u'interst', u'boycott']
[u'race', u'chief', u'dismiss', u'bet', u'claim']
[u'race', u'chief', u'dismiss', u'fix', u'claim']
[u'set', u'harsh', u'smoke', u'fin']
[u'radio', u'problem', u'polic', u'risk', u'opposit']
[u'rail', u'passeng', u'servic', u'delay']
[u'rain', u'eas', u'queensland', u'threat']
[u'rain', u'forc', u'draw', u'chennai']
[u'rain', u'prevent', u'bull', u'chase']
[u'rain', u'provid', u'relief', u'water', u'restrict', u'remain']
[u'rain', u'repriev', u'parch', u'wide', u'burnett']
[u'record', u'tumbl', u'master', u'game']
[u'redback', u'place', u'outright', u'victori']
[u'relentless', u'seal', u'record', u'sixth', u'match', u'play', u'titl']
[u'rescu', u'servic', u'attend', u'hors', u'fall', u'accid']
[u'riverina', u'town', u'clean', u'award']
[u'riverland', u'winemak', u'miss', u'gong']
[u'journalist', u'detain', u'iraq']
[u'second', u'string', u'milan', u'close', u'juve']
[u'sehwag', u'warn', u'final']
[u'selector', u'ban', u'criticis', u'umpir']
[u'senat', u'candid', u'gold', u'coast']
[u'settler', u'label', u'gaza', u'pullout', u'meet', u'disgrac']
[u'sewag', u'spill', u'close', u'swan', u'river', u'reach']
[u'shadow', u'cabinet', u'head', u'coast']
[u'shire', u'council', u'resist', u'confid', u'vote']
[u'korea', u'seek', u'astronaut', u'mission']
[u'smelter', u'death', u'investig']
[u'landown', u'delay', u'wild', u'dog', u'aerial', u'bait']
[u'sorenstam', u'vault', u'past', u'park', u'captur', u'lpga', u'event']
[u'spotlight', u'shine', u'norseman', u'social', u'issu']
[u'springborg', u'anticip', u'parti', u'merger', u'support']
[u'springborg', u'offer', u'evid', u'need', u'parti']
[u'strickland', u'famili', u'deni', u'suicid', u'rumour']
[u'student', u'prepar', u'exam']
[u'studi', u'determin', u'chemotherapi', u'effect']
[u'slow', u'cane', u'grower', u'bail', u'packag']
[u'talk', u'continu', u'broom', u'board', u'school']
[u'investig', u'road', u'worker', u'diseas', u'concern']
[u'task', u'forc', u'seek', u'help', u'maintain', u'colleg', u'servic']
[u'tasmania', u'await', u'approv', u'water', u'test']
[u'teacher', u'give', u'bail', u'child', u'porn', u'charg']
[u'telstra', u'broadband', u'growth', u'ahead', u'schedul']
[u'test', u'flow', u'encourag', u'santo']
[u'valencia', u'loss', u'let', u'barca', u'race']
[u'time', u'action', u'lobbi', u'group', u'tell', u'govt']
[u'toddler', u'disappear', u'prompt', u'polic', u'reward']
[u'tourism', u'boost', u'south', u'coast']
[u'trial', u'date', u'bashir']
[u'trucki', u'road', u'train', u'record']
[u'tune', u'begin', u'road', u'red', u'comeback']
[u'turkish', u'delight', u'greek', u'world', u'record', u'holder']
[u'separ', u'road', u'crash']
[u'academi', u'condemn', u'bush', u'clone']
[u'deni', u'troop', u'deploy', u'shore', u'bush']
[u'union', u'highlight', u'teacher', u'hous', u'woe']
[u'union', u'dismay', u'hardi', u'attitud']
[u'univers', u'union', u'question', u'deregul', u'cours', u'fee']
[u'lift', u'foie', u'gras', u'import']
[u'valv', u'blame', u'swan', u'sewag', u'spill']
[u'polic', u'sound', u'mini', u'motorbik', u'warn']
[u'victorian', u'town', u'select', u'site', u'children', u'film']
[u'victoria', u'put', u'telco', u'notic']
[u'warn', u'mission', u'stop', u'india']
[u'water', u'compani', u'push', u'effluent']
[u'water', u'conserv', u'sacrific', u'profit']
[u'weed', u'want', u'dead', u'aliv']
[u'william', u'take', u'lewi', u'tip', u'titl', u'showdown']
[u'wit', u'tell', u'victim', u'alcohol', u'induc', u'violenc']
[u'wool', u'boycott', u'fail', u'gain', u'rspca', u'support']
[u'youth', u'arrest', u'steal', u'spree']
[u'accommod', u'develop', u'meet', u'ghan', u'demand']
[u'acupunctur', u'boost', u'arthriti', u'relief']
[u'celebr', u'anniversari']
[u'agreement', u'reach', u'veteran', u'wall']
[u'alleg', u'bird', u'smuggler', u'charg']
[u'allianc', u'pressur', u'govt', u'toxic', u'wast', u'dump']
[u'bicker', u'faction', u'influenc']
[u'altern', u'energi', u'machin']
[u'amnesti', u'challeng', u'singapor', u'execut']
[u'arid', u'call', u'compulsori', u'rain', u'water', u'tank']
[u'arni', u'wife', u'termin', u'bush', u'speech']
[u'arrest', u'foil', u'spain', u'court', u'attack', u'sourc']
[u'artifici', u'heart', u'win', u'approv']
[u'fatal', u'rate', u'concern', u'coron']
[u'australia', u'join', u'exercis', u'japan', u'despit', u'north', u'korea']
[u'australian', u'injur', u'cairo', u'crash']
[u'australia', u'shift', u'baghdad', u'embassi']
[u'author', u'investig', u'fatal', u'plane', u'crash']
[u'ballarat', u'staff', u'strike']
[u'bangladeshi', u'order', u'demolish', u'session']
[u'bank', u'sector', u'help', u'lift', u'market']
[u'bevan', u'clear', u'injuri']
[u'brother', u'bash', u'screen', u'brawl']
[u'biosecur', u'help', u'prevent', u'cane', u'toad', u'spread']
[u'bolton', u'mentor', u'reward', u'year', u'deal']
[u'british', u'troop', u'iraq', u'tip', u'help']
[u'bulldog', u'strength', u'england']
[u'burmes', u'hous', u'arrest']
[u'bushfir', u'coron', u'dismiss']
[u'bushrang', u'troubl', u'final']
[u'bush', u'sign', u'north', u'korea', u'law']
[u'bush', u'grudg', u'accept', u'islam', u'state', u'iraq']
[u'busi', u'council', u'concern', u'water', u'plan', u'cost']
[u'tourism', u'bodi', u'demis']
[u'cancer', u'council', u'get', u'smoke', u'ban']
[u'cattl', u'mishap', u'prompt', u'wharf', u'safeti', u'boost']
[u'acquir', u'macquari', u'wool', u'hedg', u'busi']
[u'chariti', u'director', u'jail', u'rig', u'raffl']
[u'chef', u'free', u'inquiri']
[u'chelsea', u'striker', u'admit', u'cocain']
[u'clinic', u'facil', u'inadequ', u'coron', u'tell']
[u'coal', u'termin', u'charg']
[u'communiti', u'urg', u'pressur', u'govt', u'machin']
[u'communiti', u'worker', u'receiv', u'rise']
[u'confer', u'consid', u'region', u'medic', u'crisi']
[u'confid', u'high', u'despit', u'skill', u'shortag']
[u'cop', u'defeat', u'light', u'soccer', u'team']
[u'corretja', u'davenport', u'warn', u'tenni', u'burnout']
[u'council', u'mine', u'river', u'damag']
[u'council', u'defer', u'water', u'decis']
[u'council', u'push', u'ahead', u'beach', u'walk', u'plan']
[u'council', u'seek', u'walk', u'track', u'fund']
[u'council', u'decid', u'legal', u'represent']
[u'court', u'hear', u'land', u'valuat', u'disput']
[u'bet', u'suspend', u'shes', u'archi', u'specul']
[u'custom', u'strike', u'travel']
[u'davenport', u'number', u'open']
[u'deal', u'expect', u'boost', u'dairi', u'industri', u'profit']
[u'democrat', u'polic', u'badg', u'explan']
[u'design', u'push', u'recycl', u'water', u'campaign']
[u'doubt', u'rais', u'rural', u'exhibit', u'centr', u'plan']
[u'driver', u'seek', u'adelaid', u'shoot']
[u'begin', u'fuel', u'reduct', u'burn']
[u'nino', u'threat', u'fade', u'summer', u'loom']
[u'england', u'wagg', u'ban', u'cocain']
[u'english', u'cricket', u'plead', u'guilti', u'paralymp']
[u'english', u'hors', u'face', u'carniv']
[u'escap', u'king', u'leav', u'dummi', u'jail', u'break']
[u'exhibit', u'celebr', u'raphael']
[u'famili', u'payment', u'rich', u'poor', u'steadi']
[u'inform', u'court', u'accus', u'afford', u'trial']
[u'fear', u'higher', u'fish', u'fee', u'drive', u'oper']
[u'fire', u'coron', u'presid', u'debat', u'futur']
[u'fitzgibbon', u'line', u'face', u'kiwi']
[u'kill', u'injur', u'iraq', u'attack']
[u'fleme', u'support', u'struggl', u'bangladesh']
[u'flood', u'busi', u'north', u'coast']
[u'delay', u'perth', u'flight']
[u'archiv', u'director', u'admit', u'financi', u'decept']
[u'forum', u'focus', u'crime', u'prevent']
[u'fund', u'enhanc', u'experi']
[u'gibbin', u'close', u'conced', u'bendigo']
[u'glazer', u'rais', u'manchest', u'unit', u'stake', u'sourc']
[u'govern', u'fund', u'transfer', u'warrant', u'inquiri']
[u'govt', u'consid', u'urban', u'sprawl', u'plan']
[u'grazier', u'fear', u'ongo', u'drought']
[u'green', u'group', u'air', u'concern', u'island', u'plan']
[u'guilti', u'verdict', u'bring', u'closur', u'bundaberg', u'mayor']
[u'gulf', u'syndrom', u'remain', u'mysteri']
[u'gympi', u'school', u'name', u'qlds', u'school']
[u'hail', u'storm', u'rock', u'southern']
[u'heritag', u'list', u'mason', u'lodg']
[u'howard', u'play', u'indonesian', u'emptiv', u'strike']
[u'hull', u'rule', u'confisc', u'driver', u'phone']
[u'hundr', u'look', u'narooma', u'plan']
[u'iaea', u'prepar', u'brazil', u'inspect']
[u'tip', u'econom', u'boom', u'iraq']
[u'india', u'want', u'bandit', u'kill', u'shoot']
[u'indonesian', u'volcano', u'awaken']
[u'indi', u'buff', u'prepar', u'buck', u'track']
[u'injur', u'crouch', u'fli', u'home']
[u'inquest', u'fatal', u'polic', u'shoot', u'adjourn']
[u'inquiri', u'prompt', u'submiss', u'portabl', u'goal', u'post']
[u'iron', u'produc', u'expand', u'oper']
[u'jaguar', u'solv', u'webber', u'seat', u'problem']
[u'japanes', u'firm', u'accus', u'whale', u'aust', u'water']
[u'jone', u'say', u'tour', u'decis', u'gregan']
[u'kakadu', u'tourism', u'plan', u'complet']
[u'kenya', u'rule', u'terror', u'airport', u'blast']
[u'labor', u'pull', u'ahead', u'richmond']
[u'lawyer', u'testifi', u'eastman', u'unfit', u'plead']
[u'leas', u'loophol', u'cost', u'local', u'council']
[u'leed', u'skipper', u'drop', u'lion']
[u'liber', u'await', u'child', u'abus', u'report']
[u'liber', u'extend', u'lead', u'bonner']
[u'liverpool', u'spaniard', u'edg', u'say', u'irureta']
[u'local', u'govt', u'group', u'urg', u'support', u'jam', u'hardi']
[u'love', u'lose', u'injuri', u'replac', u'nash']
[u'malfunct', u'prompt', u'search', u'rescu', u'mission']
[u'injur', u'boat']
[u'margin', u'seat', u'wire']
[u'mass', u'murder', u'ban', u'legal', u'action']
[u'meet', u'consid', u'hall', u'safeti']
[u'miner', u'glimps', u'melbourn']
[u'miner', u'restructur', u'divis', u'amid', u'takeov', u'offer']
[u'mine', u'town', u'thrive', u'export', u'price']
[u'minist', u'accept', u'disallow', u'white', u'limit']
[u'minist', u'offer', u'shoalhaven', u'river', u'assur']
[u'minist', u'push', u'upper', u'hous', u'clear', u'backlog']
[u'miss', u'hunter', u'safe']
[u'molik', u'zurich']
[u'polic', u'combat', u'goonellabah', u'crime']
[u'rain', u'forecast', u'england']
[u'say', u'local', u'issu', u'hurt', u'port', u'hedland', u'vote']
[u'gambier', u'hotel', u'win', u'best', u'award']
[u'murder', u'lawyer', u'court', u'set', u'danger']
[u'mutu', u'agent', u'confirm', u'posit', u'drug', u'test']
[u'myskina', u'look', u'eras', u'olymp', u'nightmar']
[u'nation', u'decid', u'dubbo', u'candid']
[u'nehra', u'replac', u'injur', u'pathan', u'nagpur', u'test']
[u'beef', u'feedlot', u'get', u'green', u'light']
[u'drug', u'give', u'hope', u'mesothelioma', u'patient']
[u'equip', u'help', u'firefight']
[u'law', u'jam', u'hardi', u'investig']
[u'newmont', u'seek', u'releas', u'detain', u'staff']
[u'nile', u'return', u'parliament']
[u'korea', u'crisi', u'talk', u'resum']
[u'nois', u'alert', u'sleep', u'woman', u'hous']
[u'back', u'child', u'porn', u'loophol']
[u'float', u'emir', u'export', u'hop']
[u'nurs', u'criticis', u'lack', u'job', u'graduat']
[u'ogradi', u'shadow', u'armstrong', u'world', u'rank']
[u'price', u'boost', u'market']
[u'origin', u'plan', u'ramp', u'power', u'generat']
[u'overexpos', u'britney', u'wont', u'year']
[u'parti', u'unchang', u'elect', u'count', u'progress']
[u'perth', u'fuel', u'price', u'remain', u'competit', u'despit', u'rise']
[u'phone', u'thrower', u'prove', u'talk', u'cheap']
[u'pittman', u'remain', u'titl', u'hope']
[u'plan', u'wind', u'help', u'gassi', u'cow']
[u'declin', u'peacekeep', u'request']
[u'deni', u'gatecrash', u'sbys', u'parti']
[u'visit', u'embassi', u'bomb', u'site']
[u'polic', u'offic', u'acquit', u'danger', u'drive']
[u'polic', u'support', u'anti', u'hoon', u'legisl', u'plan']
[u'polic', u'urg', u'communiti', u'join', u'drug', u'fight']
[u'polic', u'visibl', u'help', u'lower', u'crime']
[u'pont', u'get', u'thumb', u'fourth', u'test']
[u'pont', u'give', u'thumb', u'fourth', u'test']
[u'port', u'lincoln', u'foster', u'care', u'famili', u'need']
[u'public', u'help', u'tackl', u'weed', u'pest']
[u'public', u'help', u'seek', u'catch', u'escap']
[u'public', u'servant', u'warn', u'rise', u'delay']
[u'public', u'murray', u'plan']
[u'public', u'urg', u'storm', u'readi']
[u'qanta', u'accus', u'safeti', u'train', u'shortcut']
[u'budget', u'surplus', u'exceed', u'expect']
[u'plane', u'crash', u'claim', u'pilot', u'life']
[u'quarantin', u'rule', u'disadvantag', u'darwin', u'port']
[u'question', u'rais', u'rail', u'servic', u'timet']
[u'race', u'cronj', u'join', u'harlequin']
[u'radic', u'cleric', u'face', u'charg']
[u'rain', u'hail', u'blackout', u'wide', u'burnett']
[u'rain', u'help', u'eas', u'ban']
[u'reduc', u'crop', u'affect', u'canegrow', u'incom']
[u'region', u'public', u'health', u'consult', u'cancel']
[u'region', u'benefit', u'nation', u'senat', u'power']
[u'reject', u'muslim', u'forc', u'joint', u'decis']
[u'resid', u'urg', u'railway', u'station']
[u'reject', u'claim', u'lack', u'support']
[u'rise', u'fuel', u'cost', u'blow', u'line', u'budget']
[u'riverland', u'tourism', u'rise']
[u'sack', u'iraqi', u'judg', u'liken', u'govt', u'saddam']
[u'consid', u'tough', u'drink', u'drive', u'law']
[u'sciacca', u'lose', u'grip', u'bonner']
[u'scientist', u'sail', u'greenhous', u'studi']
[u'search', u'begin', u'miss', u'deer', u'hunter']
[u'secur', u'beef', u'fijian', u'mutini', u'trial']
[u'sever', u'weather', u'warn', u'issu', u'hunter']
[u'shake', u'plan', u'council', u'audit', u'committe']
[u'shanghai', u'secur', u'guard', u'suicid', u'watch']
[u'shire', u'back', u'childcar', u'centr', u'plan']
[u'smelter', u'death', u'spark', u'union', u'safeti', u'pledg']
[u'spur', u'portsmouth']
[u'starcraft', u'rail', u'plate']
[u'starcraft', u'pull', u'clear', u'plate', u'bet']
[u'starcraft', u'readi', u'savabeel']
[u'stevedor', u'claim', u'port', u'plan', u'jeopardis', u'growth']
[u'storm', u'sweep', u'central']
[u'strategi', u'curb', u'year', u'antisoci', u'woe']
[u'surcharg', u'fuel', u'ticket', u'price', u'rise']
[u'sydney', u'water', u'plan', u'focus', u'reduc', u'demand']
[u'tait', u'spree', u'see', u'victoria', u'bushwhack', u'redback']
[u'tanner', u'join', u'labor', u'frontbench', u'exodus']
[u'accept', u'antarct', u'adventur']
[u'tassi', u'fight', u'warrior']
[u'relief', u'tip']
[u'telstra', u'sale', u'boost', u'infrastructur']
[u'telstra', u'job', u'offshor']
[u'tendulkar', u'resum', u'train']
[u'money', u'spend', u'terror', u'protect']
[u'worker', u'kidnap', u'iraq']
[u'tough', u'time', u'leav', u'commerci', u'fisher', u'reel']
[u'toyn', u'prove', u'good', u'master']
[u'train', u'program', u'address', u'skill', u'shortag']
[u'truck', u'accid', u'caus', u'highway', u'delay']
[u'trust', u'bodi', u'maintain', u'recherch', u'campaign']
[u'hold', u'mysteri', u'flight']
[u'unemploy', u'help', u'fruit', u'picker', u'shortag']
[u'strike', u'fallujah']
[u'vaccin', u'shortag', u'strain', u'canadian', u'suppli']
[u'vandal', u'target', u'council', u'car']
[u'victoria', u'bushwhack', u'redback']
[u'vieira', u'greek', u'trip']
[u'watchdog', u'cool', u'aircondition', u'claim']
[u'week', u'put', u'weed', u'woe', u'spotlight']
[u'western', u'greater', u'risk', u'iraq', u'report']
[u'whitak', u'rule', u'wallabi', u'tour']
[u'william', u'break', u'tasmania']
[u'mind', u'florida', u'resid', u'vote', u'earli']
[u'worksaf', u'find', u'safeti', u'breach']
[u'govt', u'properti', u'post']
[u'vote', u'finalis', u'week']
[u'call', u'firefight', u'overhaul']
[u'agforc', u'air', u'concern']
[u'worker', u'husband', u'make', u'plea', u'kidnapp']
[u'airasia', u'eye', u'australian', u'market']
[u'crash', u'expert', u'arriv', u'georg']
[u'increas', u'fuel', u'surcharg']
[u'alderman', u'defend', u'decis', u'withdraw', u'group']
[u'candid', u'conced', u'defeat', u'eden', u'monaro']
[u'alpha', u'perman', u'stock', u'inspector']
[u'increas', u'lead', u'perth', u'seat']
[u'alvin', u'follow', u'calvin', u'dope', u'oblivion']
[u'anim', u'group', u'interven', u'aerial', u'bait']
[u'land', u'aborigin', u'caus', u'citi']
[u'applic', u'seek', u'villag', u'redevelop']
[u'asia', u'pacif', u'face', u'aid', u'crisi', u'warn']
[u'asic', u'keep', u'close', u'watch']
[u'associ', u'say', u'sight', u'hous', u'woe']
[u'determin', u'solut', u'darfur', u'crisi']
[u'aussi', u'tour', u'squad', u'remain', u'unchang']
[u'aust', u'apparatchik', u'tori', u'campaign']
[u'aust', u'polic', u'investig', u'spanish', u'terror', u'link']
[u'australian', u'help', u'eas', u'nauru', u'crisi']
[u'australian', u'cano', u'overhaul', u'head', u'coach']
[u'australian', u'lose', u'singapor', u'death', u'sentenc', u'appeal']
[u'australian', u'miner', u'secur', u'china', u'steel', u'deal']
[u'babi', u'killer', u'get', u'life', u'sentenc']
[u'beatti', u'join', u'carr', u'call', u'health']
[u'bellingen', u'coff', u'harbour', u'declar', u'disast', u'area']
[u'bellingen', u'say', u'fluorid']
[u'bendigo', u'frontbench', u'run']
[u'bias', u'claim', u'halt', u'canberra', u'inquest']
[u'birth', u'scandal', u'highlight', u'hospit', u'woe', u'say']
[u'blair', u'undecid', u'iraq', u'troop', u'movement']
[u'lose', u'famili', u'injuri']
[u'britain', u'warn', u'iran', u'stop', u'uranium', u'scheme']
[u'brother', u'bump', u'year', u'apart']
[u'burrup', u'back', u'reef', u'heritag', u'list']
[u'bush', u'kerri', u'trade', u'blow', u'vaccin', u'shortag']
[u'canberra', u'driver', u'danger']
[u'care', u'suspend', u'oper', u'iraq']
[u'carlton', u'continu', u'delist', u'cull']
[u'carr', u'float', u'trade', u'power']
[u'casa', u'review', u'qanta', u'safeti', u'train']
[u'cathol', u'archbishop', u'criticis', u'politician']
[u'cavort', u'coupl', u'careen', u'cliff']
[u'group', u'fear', u'crew', u'safeti']
[u'citrus', u'canker', u'inspect', u'bring', u'forward']
[u'club', u'group', u'say', u'anti', u'smoke', u'timefram', u'borderlin']
[u'coff', u'harbour', u'storm', u'fell', u'tree', u'powerlin']
[u'coff', u'mayor', u'thrill', u'livabl', u'citi', u'award']
[u'collett', u'wont', u'recontest', u'mayor', u'spot']
[u'communiti', u'smoke', u'ban', u'say', u'govern']
[u'condello', u'deni', u'bail', u'underworld', u'case']
[u'confer', u'consid', u'boom', u'south', u'west', u'industri']
[u'confer', u'hear', u'price', u'tip', u'stabilis']
[u'confer', u'target', u'assault', u'prevent']
[u'construct', u'delay', u'govt', u'employe', u'hous']
[u'consum', u'confid', u'dip', u'year', u'high']
[u'control', u'burn', u'respons', u'smoke']
[u'cook', u'tour']
[u'cool', u'reaction', u'health', u'reform', u'propos']
[u'cooper', u'need', u'attack', u'wild', u'woe', u'minist']
[u'coron', u'releas', u'fatal', u'crash', u'find']
[u'corridor', u'work', u'expect', u'hamper', u'grain']
[u'council', u'crack', u'mossi']
[u'councillor', u'air', u'local', u'govt', u'polit', u'fear']
[u'councillor', u'happier', u'revis', u'signag', u'plan']
[u'councillor', u'play', u'caravan', u'park', u'revamp']
[u'council', u'reveget', u'reserv', u'poison']
[u'croc', u'face', u'crunch', u'road', u'trip', u'stacker']
[u'crop', u'home', u'damag', u'central', u'hail', u'storm']
[u'long', u'crawl', u'featur', u'master', u'game']
[u'disgrac', u'bosnich', u'target', u'soccer', u'comeback']
[u'dokic', u'comeback', u'trail']
[u'eccleston', u'end', u'silverston', u'hop', u'report']
[u'ecstasi', u'tablet', u'discoveri', u'rais', u'perth', u'polic', u'fear']
[u'evacu', u'underway', u'floodwat', u'rise']
[u'export', u'warn', u'wild', u'ride', u'ahead']
[u'ban', u'eas', u'cooloola', u'kilkivan', u'shire']
[u'firefight', u'reviv', u'macaw']
[u'firm', u'urg', u'wari', u'fake', u'money']
[u'florida', u'vote', u'strong', u'presidenti', u'race']
[u'forecast', u'predict', u'hotter', u'southern', u'summer']
[u'policeman', u'escap', u'jail', u'term', u'stupid']
[u'fund', u'skate', u'park', u'work']
[u'deal', u'pave', u'pipelin', u'sale']
[u'novel', u'win', u'booker', u'prize']
[u'govt', u'ask', u'throw', u'insur', u'lifelin']
[u'govt', u'urg', u'address', u'basic', u'human', u'servic']
[u'govt', u'unveil', u'reef', u'marin', u'park', u'plan']
[u'govt', u'urg', u'boost', u'vline', u'perform']
[u'green', u'criticis', u'fine']
[u'green', u'seek', u'cyanid']
[u'tree', u'prompt', u'nativ', u'parrot', u'concern']
[u'gutsi', u'ashra', u'keep', u'bangladesh', u'fight']
[u'high', u'fuel', u'cost', u'blame', u'fewer', u'race', u'nomin']
[u'summer', u'spark', u'firefight', u'boost']
[u'hunter', u'valley', u'prepar', u'wild', u'weather']
[u'titl', u'bout', u'toughest', u'tszyu']
[u'indonesian', u'leader', u'finalis', u'cabinet']
[u'industri', u'action', u'loom', u'darwin', u'univers']
[u'iran', u'test', u'fire', u'long', u'rang', u'missil']
[u'judg', u'label', u'condello', u'jail', u'condit']
[u'kennedi', u'fitzgibbon', u'kangaroo']
[u'kenteri', u'case', u'journalist', u'stab', u'beat', u'athen']
[u'outlet', u'win', u'appeal', u'neglig']
[u'kookaburra', u'goalkeep', u'call']
[u'latham', u'downplay', u'frontbench', u'exodus']
[u'latham', u'ministri', u'woe', u'disappoint', u'carr']
[u'lead', u'scientist', u'advoc', u'nation', u'diseas', u'centr']
[u'lennon', u'face', u'revolt', u'forest', u'polici']
[u'lennon', u'reserv', u'decis', u'carr', u'health', u'propos']
[u'liber', u'ask', u'explain', u'call', u'silent']
[u'mallacoota', u'lake', u'level', u'fall']
[u'malle', u'poll', u'result', u'near', u'finalis']
[u'rescu', u'hike', u'mishap']
[u'rush', u'hospit', u'nail', u'emb', u'heart']
[u'melbourn', u'drug', u'traffick', u'learn', u'fate', u'today']
[u'mildura', u'teen', u'plead', u'guilti', u'case']
[u'miner', u'weigh', u'market']
[u'minist', u'interven', u'rate', u'rise']
[u'model', u'ball', u'girl', u'madrid']
[u'gold', u'theft', u'charg', u'come']
[u'rain', u'possibl', u'central', u'week']
[u'storm', u'like', u'mackay', u'area']
[u'mourner', u'farewel', u'cricket', u'great', u'miller']
[u'move', u'employ', u'teacher', u'support', u'offic']
[u'hit', u'council', u'plan', u'rerout', u'rail', u'line']
[u'murrayland', u'build', u'export', u'scheme']
[u'nail', u'remov', u'gold', u'coast', u'man', u'heart']
[u'nanotechnolog', u'centr', u'open', u'adelaid']
[u'nation', u'confid', u'keep', u'cabinet', u'posit']
[u'nation', u'elect', u'anderson', u'vail']
[u'festiv', u'high', u'note', u'juli']
[u'indonesian', u'presid', u'flag', u'strengthen', u'anti']
[u'law', u'remedi', u'obstetr', u'shortag']
[u'newmont', u'indonesia', u'detent']
[u'studi', u'link', u'coffe', u'cardiovascular']
[u'prospect', u'scrap', u'paper', u'shortag', u'yuendumu']
[u'norfolk', u'island', u'head', u'poll']
[u'rumbl', u'jungl', u'frazier']
[u'fast', u'track', u'plan', u'pacif', u'upgrad']
[u'reject', u'carr', u'health', u'care', u'propos']
[u'tell', u'apologis', u'roadsid', u'weapon', u'check']
[u'nurs', u'health', u'propos', u'riski']
[u'control', u'franklin', u'trick']
[u'oliv', u'unsur', u'runner', u'distinct']
[u'oliv', u'unsur', u'distinct', u'decis']
[u'olymp', u'scandal', u'journalist', u'stab', u'beat', u'athen']
[u'outrag', u'releas', u'teen', u'rapist']
[u'pacif', u'dancer', u'win', u'geelong']
[u'paedophil', u'supervis', u'say', u'minist']
[u'pair', u'plead', u'guilti', u'ballan', u'train', u'crash', u'case']
[u'pakistani', u'action', u'malik', u'deliveri']
[u'perth', u'plead', u'guilti', u'child', u'porn', u'charg']
[u'perth', u'melbourn', u'fight', u'super', u'place']
[u'petrol', u'boost', u'woolworth', u'sale']
[u'polic', u'disciplin', u'alic', u'brawl']
[u'polic', u'mobil', u'catch', u'drink', u'driver']
[u'polic', u'urg', u'address', u'drug', u'drive', u'problem']
[u'port', u'problem', u'trade', u'risk']
[u'power', u'station', u'plan', u'involv', u'communiti']
[u'power', u'station', u'worker', u'stop', u'work', u'asbesto']
[u'presid', u'say', u'iran', u'readi', u'talk', u'nuclear', u'issu']
[u'probe', u'launch', u'onesteel', u'blaze']
[u'public', u'urg', u'panic', u'water', u'discolour']
[u'race', u'tight', u'seat']
[u'rain', u'deepen', u'fear', u'miss']
[u'rain', u'help', u'boost', u'hinz']
[u'rat', u'rise', u'slay', u'incom', u'home', u'owner']
[u'reform', u'group', u'welcom', u'prison', u'vote', u'move']
[u'report', u'offer', u'hope', u'better', u'water', u'suppli']
[u'report', u'releas', u'entertain', u'centr', u'futur']
[u'report', u'suggest', u'silenc', u'wit']
[u'report', u'urg', u'develop', u'countri', u'grip']
[u'restor', u'raphael', u'work', u'church', u'audit']
[u'rider', u'prepar', u'gruell', u'tour']
[u'riot', u'break', u'western', u'china']
[u'riverina', u'immun', u'road', u'rage', u'incid']
[u'robot', u'sale', u'boom', u'labour', u'cost', u'rise']
[u'robot', u'saddl', u'camel', u'jockey']
[u'rspca', u'say', u'prosecut', u'resort']
[u'rudd', u'deni', u'threat', u'leav', u'frontbench']
[u'russian', u'town', u'blacklist', u'languag']
[u'saff', u'chief', u'stanc']
[u'govt', u'warn', u'travel', u'measl', u'risk']
[u'samaraweera', u'lead', u'lankan', u'recoveri']
[u'mental', u'health', u'disgrac']
[u'trucker', u'defend', u'fuel', u'levi']
[u'truck', u'compani', u'charg', u'fuel', u'levi']
[u'scheme', u'focus', u'construct', u'skill', u'shortag']
[u'scientist', u'hail', u'dengu', u'breakthrough']
[u'seventh', u'latham', u'frontbench', u'jump', u'ship']
[u'shadow', u'cabinet', u'embark', u'south', u'east', u'tour']
[u'shire', u'push', u'ahead', u'justic', u'precinct', u'plan']
[u'smoke', u'clear', u'upper', u'hous']
[u'soldier', u'plead', u'guilti', u'ghraib', u'charg']
[u'south', u'bulga', u'coal', u'close']
[u'speed', u'teen', u'cop', u'fine']
[u'stanhop', u'back', u'carr', u'power', u'trade', u'plan']
[u'storm', u'inund', u'tweed', u'region']
[u'storm', u'flood', u'northern']
[u'strong', u'riverway', u'develop']
[u'super', u'bid', u'viabl', u'say']
[u'super', u'contend', u'unveil']
[u'survey', u'highlight', u'need', u'better', u'town', u'plan']
[u'swiss', u'scientist', u'bone', u'breakthrough']
[u'talk', u'focus', u'showground', u'revamp']
[u'firefight', u'rise']
[u'green', u'road', u'worker', u'health']
[u'teen', u'suicid', u'prompt', u'doc', u'question']
[u'telstra', u'defend', u'move', u'job', u'offshor']
[u'telstra', u'lift', u'revenu', u'mobil', u'internet', u'growth']
[u'tenterfield', u'consid', u'fluorid']
[u'tile', u'compani', u'close', u'melbourn', u'door']
[u'timefram', u'announc', u'tare', u'elect']
[u'tougher', u'penalti', u'racist', u'crime', u'clear', u'hurdl']
[u'walk', u'walk', u'question']
[u'truck', u'industri', u'feel', u'pinch', u'price']
[u'typhoon', u'pound', u'japan', u'dead']
[u'consid', u'region', u'option', u'shake']
[u'union', u'warn', u'airport', u'delay', u'custom', u'strike']
[u'raid', u'report', u'kill', u'iraqi', u'famili']
[u'criticis', u'oust', u'burmes', u'leader']
[u'group', u'revers', u'decis', u'kerri', u'documentari']
[u'plane', u'crash', u'kill']
[u'member', u'urg', u'permit']
[u'victorian', u'parent', u'opposit', u'teacher']
[u'virgin', u'hold', u'fuel', u'surcharg', u'steadi']
[u'vline', u'rule', u'bendigo', u'echuca', u'rail', u'boost']
[u'govt', u'reject', u'carr', u'health', u'care', u'pitch']
[u'wall', u'street', u'stock', u'lose', u'grind']
[u'mine', u'compani', u'resum', u'congo', u'oper']
[u'polic', u'promis', u'skyshow', u'crackdown']
[u'warrior', u'cruis', u'victori', u'tiger']
[u'wool', u'boycott', u'gain', u'australian', u'group', u'support']
[u'woomera', u'escape', u'trial', u'hear', u'year']
[u'zarqawi', u'network', u'add', u'terror', u'list']
[u'zimbabw', u'racism', u'verdict', u'joke', u'carlisl']
[u'aerial', u'bait', u'wild', u'dog', u'continu', u'snowi']
[u'african', u'union', u'increas', u'darfur', u'deploy']
[u'regain', u'hindmarsh', u'lead']
[u'altern', u'water', u'suppli', u'consider']
[u'amnesti', u'join', u'fight', u'save', u'drug', u'traffick', u'life']
[u'anderson', u'doubt', u'coalit', u'futur', u'chanc']
[u'anderson', u'want', u'apolog', u'roadsid', u'weapon', u'check']
[u'antibiot', u'breakthrough', u'boost', u'alchemia', u'share']
[u'anti', u'kerri', u'film', u'wont']
[u'aplin', u'offer', u'qualifi', u'support', u'health', u'plan']
[u'aust', u'iraq', u'work', u'hassan', u'releas']
[u'australia', u'leagu', u'stay', u'wrap']
[u'australia', u'tibet', u'right', u'program']
[u'author', u'offer', u'locust', u'drug', u'assur']
[u'bail', u'renew', u'biki', u'gang', u'member']
[u'bangladesh', u'face', u'defeat', u'mccullum', u'maiden']
[u'better', u'ordin', u'aid', u'cane', u'toad', u'fight']
[u'maintain', u'record', u'product', u'level']
[u'chang', u'afoot', u'kotara', u'shop', u'complex']
[u'crowd', u'farewel', u'legend']
[u'black', u'face', u'lengthi', u'stint', u'sidelin']
[u'blair', u'pressur', u'iraq', u'troop', u'deploy']
[u'bomb', u'wound', u'soldier', u'afghan']
[u'bowen', u'basin', u'catchment', u'work', u'begin']
[u'brain', u'dead', u'diver', u'return', u'australia']
[u'britain', u'agre', u'iraq', u'troop']
[u'british', u'organis', u'meet', u'save', u'race']
[u'builder', u'licens', u'need', u'lobbi']
[u'bullet', u'look', u'turn', u'season']
[u'button', u'bar', u'go', u'william']
[u'go', u'bendigo', u'council', u'nomin']
[u'canberra', u'doctor', u'trial', u'herp', u'vaccin']
[u'catch', u'releas', u'studi', u'improv', u'surviv', u'rat']
[u'chamber', u'echo', u'call', u'devonport', u'visitor']
[u'charg', u'lay', u'bali', u'drug']
[u'chequ', u'scam', u'organis', u'good', u'intent']
[u'children', u'depart', u'worker', u'charg', u'porn']
[u'china', u'coal', u'blast', u'kill']
[u'china', u'blast', u'toll', u'reach']
[u'computershar', u'pois', u'corner', u'market']
[u'coulthard', u'farewel', u'mclaren', u'brazil']
[u'council', u'chang', u'speedway', u'nois', u'plan']
[u'council', u'consid', u'boot', u'camp']
[u'cours', u'choos', u'adventur', u'race']
[u'court', u'hand', u'pair', u'suspend', u'jail', u'term', u'rail']
[u'court', u'rule', u'move', u'south', u'korean', u'capit']
[u'court', u'rule', u'whale', u'dolphin', u'bush']
[u'custom', u'strike', u'caus', u'airport', u'delay']
[u'cycl', u'tour', u'wentworth', u'question']
[u'dentist', u'back', u'fluorid', u'push']
[u'digit', u'qaeda', u'hideout', u'make', u'turner', u'shortlist']
[u'disgrac', u'flee', u'agricultur']
[u'doctor', u'accus', u'medic', u'board', u'bulli']
[u'dont', u'expect', u'besnard', u'warn']
[u'doubt', u'rais', u'mildura', u'futur']
[u'downer', u'renew', u'attack', u'journalist']
[u'downer', u'want', u'clemenc', u'condemn']
[u'annoy', u'juror', u'forc', u'trial']
[u'drought', u'spark', u'sheep', u'sell']
[u'elder', u'back', u'cyanid']
[u'elder', u'sentenc', u'assault', u'suppli']
[u'english', u'stayer', u'doubt', u'melbourn']
[u'enrol', u'restrict', u'forc', u'close', u'campus']
[u'threaten', u'speci']
[u'esso', u'contract', u'worker', u'disput', u'widen']
[u'execut', u'buttiglion']
[u'issu', u'chanc', u'iran', u'nuclear', u'plan']
[u'express', u'seek', u'aurukun', u'bauxit']
[u'boss', u'vote', u'qualifi', u'plan']
[u'faction', u'snub', u'crean', u'frontbench', u'reshuffl']
[u'fall', u'castro', u'reassur', u'sob', u'support']
[u'feder', u'back', u'carr', u'hospit', u'plan']
[u'feder', u'polic', u'honour', u'ceremoni']
[u'ferrero', u'lead', u'spanish', u'slump', u'madrid']
[u'fiji', u'protect', u'iraq', u'mission']
[u'firefight', u'test', u'championship']
[u'instal', u'game', u'villag', u'open']
[u'fisheri', u'dept', u'lure', u'angler', u'research', u'scheme']
[u'plead', u'guilti', u'child', u'porn', u'charg']
[u'flood', u'close', u'waterfal']
[u'minist', u'kill', u'suspect', u'rebel']
[u'fossil', u'feather', u'weight', u'evolut', u'theori']
[u'kill', u'baghdad', u'attack']
[u'freeway', u'request', u'scrutini']
[u'french', u'student', u'expel', u'wear', u'headscarv']
[u'fund', u'help', u'rehabilit', u'mine']
[u'gambl', u'survey', u'examin', u'famili', u'impact']
[u'get', u'help', u'home', u'come', u'luck']
[u'gippsland', u'lake', u'host', u'marsh', u'experi']
[u'govt', u'back', u'salt', u'intercept', u'scheme']
[u'govt', u'criticis', u'bushfir', u'inquest', u'action']
[u'govt', u'like', u'mortlak', u'power', u'station', u'plan']
[u'govt', u'maintain', u'winegrow', u'subsidi']
[u'govt', u'resum', u'talk', u'democrat']
[u'green', u'friend', u'hous', u'assess']
[u'gregan', u'tour', u'europ']
[u'group', u'endeavour', u'worker', u'job']
[u'group', u'worri', u'marin', u'park', u'fish']
[u'guantanamo', u'detaine', u'right', u'privat', u'meet']
[u'guyra', u'hydropon', u'farm']
[u'escap', u'fine', u'trampolin', u'fall']
[u'hawk', u'perfect', u'start', u'continu']
[u'health', u'handov', u'plan', u'arous', u'suspicion']
[u'high', u'commiss', u'petit', u'malaysia', u'boy', u'return']
[u'hobart', u'organis', u'consid', u'overhaul']
[u'hotlin', u'help', u'seafood', u'industri', u'futur']
[u'howard', u'consid', u'essenti', u'servic', u'strike']
[u'human', u'gene', u'number', u'slash']
[u'idea', u'flow', u'water', u'forum']
[u'indo', u'relat', u'minist', u'list']
[u'indi', u'driver', u'take', u'busi', u'approach', u'championship']
[u'inject', u'chip', u'destroy', u'cancer', u'cell']
[u'inquest', u'electrician', u'death', u'end']
[u'inquiri', u'fail', u'confirm', u'weed', u'chemic', u'death', u'link']
[u'inquiri', u'probe', u'race', u'concern']
[u'iron', u'deal', u'seal', u'analyst', u'say']
[u'israel', u'destroy', u'milit', u'west', u'bank', u'home']
[u'jail', u'term', u'thief', u'destroy', u'friend', u'busi']
[u'cours', u'wont', u'begin', u'earli']
[u'judgment', u'loom', u'pitcairn', u'accus']
[u'kangaroo', u'lightn', u'unusu']
[u'karzai', u'cours', u'afghanistan']
[u'koscuiszko', u'bait', u'program', u'review']
[u'labor', u'faction', u'carv', u'frontbench']
[u'labor', u'frontbench', u'see', u'swing', u'away', u'mortgag', u'belt']
[u'labor', u'want', u'rethink', u'boundari']
[u'latham', u'call', u'anderson', u'resign']
[u'latham', u'hint', u'crean']
[u'lennon', u'confid', u'forestri', u'compens']
[u'lightn', u'blame', u'restaur']
[u'macadamia', u'produc', u'happi', u'rain']
[u'arrest', u'thai', u'slave', u'charg']
[u'remand', u'sexual', u'assault', u'charg']
[u'medic', u'staff', u'health', u'reform']
[u'meet', u'focus', u'region', u'campus', u'shake']
[u'meet', u'highlight', u'land', u'council', u'financi', u'woe']
[u'milan', u'club', u'chelsea', u'stage']
[u'milosev', u'trial', u'stall', u'defenc', u'argument']
[u'mine', u'school', u'danger', u'close']
[u'minist', u'confid', u'miner', u'problem']
[u'minist', u'open', u'high', u'school', u'redevelop']
[u'molik', u'upset', u'zvonareva', u'zurich']
[u'council', u'pleas', u'boundari', u'decis']
[u'disappoint', u'elector', u'boundari', u'decis']
[u'question', u'carr', u'hospit', u'plan']
[u'nation', u'buoy', u'hope', u'worker', u'releas']
[u'unfair', u'state']
[u'sale', u'speed']
[u'nikol', u'clear', u'plate', u'ride']
[u'evid', u'charg', u'granni', u'basher']
[u'clear', u'jam', u'hardi', u'probe']
[u'polic', u'give', u'greater', u'anti', u'terror', u'power']
[u'remain', u'undef', u'netbal', u'championship']
[u'rule', u'tighter', u'cyanid', u'law']
[u'nurs', u'face', u'influx', u'violent', u'patient']
[u'lacklustr', u'profit', u'subdu', u'wall', u'street']
[u'price', u'rise', u'tip', u'econom', u'growth']
[u'ignor', u'sydney', u'water', u'crisi']
[u'opposit', u'air', u'hospit', u'fear']
[u'opposit', u'spit', u'chip', u'carr', u'snack', u'attack']
[u'pack', u'shed', u'offer', u'boost', u'fruit', u'export']
[u'parent', u'tell', u'school', u'kid']
[u'parliament', u'rememb', u'dubbo']
[u'paul', u'gazza']
[u'pilot', u'kill', u'black', u'hawk', u'crash']
[u'pilot', u'lose', u'plane', u'releas']
[u'pint', u'size', u'greco', u'paint', u'auction']
[u'polic', u'investig', u'drive', u'shoot']
[u'polic', u'appeal', u'disciplinari', u'action']
[u'polic', u'resolv', u'unfair', u'dismiss', u'case']
[u'pollut', u'studi', u'finish', u'barramundi', u'sampl']
[u'pont', u'urg', u'chin']
[u'prefer', u'count', u'begin']
[u'prison', u'embrac', u'jail', u'educ', u'program']
[u'protest', u'shut', u'indian', u'state']
[u'qanta', u'rais', u'approv', u'despit', u'union', u'mischief']
[u'qanta', u'readi', u'union', u'stoush', u'dixon']
[u'allow', u'communiti', u'home', u'brew']
[u'quarantin', u'screen', u'step', u'xmas']
[u'queensland', u'urg', u'year', u'term', u'referendum']
[u'dismiss', u'call', u'speed', u'limit', u'cut']
[u'rain', u'expect', u'clear', u'wide']
[u'rainfal', u'fail', u'eas', u'sydney', u'water', u'woe']
[u'record', u'manag', u'team', u'announc', u'lion', u'tour']
[u'record', u'petrol', u'price', u'prompt', u'hold']
[u'redsox', u'beat', u'yanke', u'creat', u'histori']
[u'reluct', u'guest', u'sell', u'wed', u'invit', u'onlin']
[u'rescu', u'work', u'underway', u'typhoon', u'toll', u'rise']
[u'resid', u'warn', u'expect', u'tighter', u'water']
[u'farewel', u'great', u'firefight']
[u'riesl', u'challeng', u'boost', u'wine', u'industri']
[u'robberi', u'plan', u'fall', u'apart']
[u'robinson', u'signal', u'start']
[u'russian', u'armi', u'bulli', u'irrelev', u'report', u'find']
[u'sadr', u'citi', u'buyback', u'program', u'hand']
[u'saff', u'chief', u'defend', u'comment']
[u'warn', u'cabinet', u'graft']
[u'search', u'unmin', u'lead', u'deposit']
[u'shark', u'bite', u'surfer', u'foot']
[u'shire', u'consid', u'communiti', u'bank', u'plan']
[u'small', u'compani', u'star', u'market', u'rise']
[u'snake', u'bite', u'schoolgirl', u'excurs']
[u'question', u'licenc', u'father', u'kill', u'freeway']
[u'speed', u'restrict', u'save', u'live', u'studi', u'say']
[u'speedway', u'seek', u'licenc', u'expans']
[u'springborg', u'introduc', u'phone']
[u'lanka', u'bowler', u'fight', u'pakistan']
[u'stab', u'occur', u'self', u'defenc', u'court', u'tell']
[u'steelwork', u'prove', u'cost']
[u'storm', u'damag', u'million']
[u'strategi', u'clean', u'tamar', u'valley', u'releas']
[u'strike', u'threat', u'fail', u'univers']
[u'student', u'muck', u'warn']
[u'suspend', u'policeman', u'face', u'murder', u'charg']
[u'telstra', u'welcom', u'govt', u'review', u'phone', u'tower']
[u'thousand', u'lose', u'power', u'thunderstorm', u'strike']
[u'toadbust', u'discuss', u'strategi']
[u'tougher', u'water', u'ban', u'like', u'warwick', u'shire']
[u'tourism', u'industri', u'watch', u'ministeri', u'chang']
[u'train', u'servic', u'resum', u'reduc', u'speed']
[u'treasur', u'defend', u'qlds']
[u'typhoon', u'leav', u'japan', u'kill']
[u'uganda', u'open', u'groundbreak', u'hivaid', u'treatment']
[u'unit', u'approach', u'seek', u'boost', u'river', u'health']
[u'univers', u'put', u'weight', u'penguin', u'research']
[u'soap', u'opera', u'actor', u'superman', u'cape']
[u'victoria', u'back', u'push', u'save', u'condemn', u'man', u'life']
[u'virgin', u'offer', u'extra', u'holiday', u'period', u'flight']
[u'wallac', u'continu', u'ax', u'richmond', u'list']
[u'waratah', u'thump', u'tucuman']
[u'enact', u'worker', u'compens', u'chang']
[u'welcom', u'rain', u'caus', u'traffic', u'chao', u'sydney']
[u'wheatbelt', u'rain', u'littl', u'late']
[u'whitlam', u'open', u'student', u'photo', u'collect']
[u'william', u'clear', u'ligament', u'damag']
[u'wine', u'industri', u'drink', u'expert', u'advic']
[u'wit', u'robberi', u'seek']
[u'woman', u'charg', u'babi', u'hospit', u'death']
[u'woman', u'fall', u'melbourn']
[u'woman', u'suffer', u'suspect', u'insecticid', u'poison']
[u'younger', u'worker', u'money', u'drive', u'confer', u'tell']
[u'crash', u'close', u'sydney', u'freeway']
[u'year', u'woodlawn', u'worker', u'collect', u'entitl']
[u'reject', u'kingston', u'count', u'request']
[u'age', u'care', u'nurs', u'approv', u'rise']
[u'organis', u'call', u'help', u'fee', u'north', u'korea']
[u'worker', u'plead', u'british', u'troop', u'withdraw']
[u'arsenal', u'trio', u'injuri', u'race', u'trafford', u'summit']
[u'asst', u'princip', u'face', u'child', u'porn', u'charg']
[u'astronom', u'proof', u'einstein', u'theori']
[u'auditor', u'general', u'air', u'concern']
[u'aussi', u'price', u'equal', u'second', u'madrid']
[u'australia', u'live', u'mean']
[u'australian', u'travel', u'head', u'oversea']
[u'barolo', u'melbourn']
[u'beatl', u'interview', u'uncov', u'year']
[u'beckham', u'escap', u'action', u'deliber']
[u'bega', u'offer', u'train', u'boost', u'canberra', u'surgeon']
[u'bevan', u'mat']
[u'urg', u'leav', u'nepean', u'river']
[u'billabong', u'surf', u'profit', u'rise']
[u'blair', u'accus', u'endang', u'kidnap', u'worker']
[u'bourdai', u'provision', u'indi', u'pole']
[u'bourdai', u'take', u'provision', u'pole', u'indi']
[u'bowen', u'face', u'fruit', u'picker', u'shortag']
[u'bowen', u'tri', u'corral', u'joyc']
[u'hospit', u'throw']
[u'brisban', u'airport', u'busi', u'usual', u'despit', u'custom']
[u'brisban', u'airport', u'cop', u'custom', u'strike']
[u'button', u'kiss']
[u'chang', u'water', u'alloc']
[u'focus', u'indigen', u'fisher', u'right']
[u'call', u'generat', u'stop', u'blackout']
[u'cardin', u'secur', u'world', u'seri', u'showdown']
[u'carr', u'defend', u'polic', u'terror', u'law']
[u'castro', u'undergo', u'surgeri', u'fall']
[u'china', u'arrest', u'journalist', u'resign', u'report']
[u'china', u'provid', u'product', u'boost']
[u'colbeck', u'welcom', u'secretari', u'posit']
[u'conflict', u'report', u'hama', u'milit', u'death']
[u'cooper', u'stand', u'trial', u'charg']
[u'coron', u'conclud', u'babi', u'death', u'inquiri']
[u'coulthard', u'pin', u'hop', u'william']
[u'council', u'consid', u'shop', u'submiss']
[u'council', u'push', u'rat', u'reform']
[u'council', u'urg', u'resolv', u'har', u'race', u'club', u'woe']
[u'court', u'challeng', u'imped', u'packag']
[u'plate', u'tip']
[u'crean', u'secur', u'frontbench', u'posit']
[u'cricket', u'chief', u'didnt', u'support', u'race']
[u'cricket', u'give', u'suspend', u'sentenc', u'assault']
[u'crop', u'grub', u'rampag']
[u'custom', u'strike', u'affect', u'cairn', u'flight']
[u'death', u'toll', u'climb', u'accid']
[u'defenc', u'chief', u'head', u'townsvill']
[u'doctor', u'air', u'hospit', u'admiss', u'concern']
[u'dozen', u'claimant', u'join', u'ward', u'state', u'abus', u'case']
[u'driver', u'report', u'high', u'level', u'harass']
[u'drought', u'urg', u'malle', u'farmer']
[u'eccleston', u'get', u'tough', u'silverston']
[u'elder', u'lead', u'gold', u'protest']
[u'embassi', u'bomber', u'second', u'choic', u'keelti']
[u'emerald', u'grower', u'citrus', u'tree', u'remov']
[u'engin', u'fall', u'plane', u'flight']
[u'ergon', u'move', u'skill', u'worker']
[u'esso', u'contractor', u'protest']
[u'aborigin', u'polic', u'liaison', u'offic', u'guilti']
[u'expert', u'inspect', u'waterfal', u'damag']
[u'fail', u'investor', u'guilti', u'mislead', u'conduct']
[u'famili', u'reunion', u'excit', u'carr']
[u'farmer', u'search', u'bandit', u'king', u'fortun']
[u'ban', u'loom', u'grip', u'bendigo']
[u'firefight', u'monitor', u'blaze']
[u'food', u'plan', u'look', u'lift', u'export', u'job']
[u'frenchman', u'kill', u'iraq', u'insurg', u'name']
[u'fund', u'bolster', u'crime', u'victim', u'support']
[u'funer', u'close', u'twin', u'fall']
[u'gayndah', u'citrus', u'grower', u'count', u'hail', u'damag', u'cost']
[u'geolog', u'cadetship', u'boost', u'mine', u'industri']
[u'gold', u'coast', u'fin', u'child', u'abus', u'game']
[u'googl', u'profit', u'sale', u'doubl']
[u'govern', u'measur', u'slow', u'china', u'growth']
[u'govt', u'consult', u'indigen', u'communiti', u'bauxit']
[u'govt', u'demonstr', u'fast', u'train']
[u'govt', u'dept', u'wont', u'appeal', u'maleni', u'supermarket', u'rule']
[u'govt', u'releas', u'scalefish', u'plan', u'chang']
[u'govt', u'rate', u'rise']
[u'govt', u'sewerag', u'woe']
[u'govt', u'urg', u'deliv', u'bushfir', u'recoveri', u'fund']
[u'green', u'group', u'loggerhead', u'govt', u'rare', u'frog']
[u'green', u'threaten', u'legal', u'challeng', u'senat']
[u'hama', u'vow', u'sever', u'repli', u'assassin']
[u'hamm', u'olymp', u'round', u'gold']
[u'hardi', u'men', u'payout', u'victim']
[u'head', u'collis', u'kill']
[u'health', u'servic', u'take', u'blanket', u'approach']
[u'heavi', u'machineri', u'blaze', u'prove', u'cost']
[u'height', u'treatment', u'impair', u'women', u'fertil', u'studi']
[u'help', u'avail', u'storm', u'batter', u'banana', u'grower']
[u'hensbi', u'hend', u'orlando']
[u'hewitt', u'clijster', u'love', u'match']
[u'hospit', u'fund']
[u'howard', u'shuffl', u'public', u'servic', u'chief']
[u'howard', u'unveil', u'cabinet']
[u'huge', u'crowd', u'enjoy', u'indi', u'second']
[u'illawarra', u'experi', u'weather']
[u'indonesian', u'terror', u'chief', u'resign']
[u'industri', u'back', u'furnitur', u'export', u'crackdown']
[u'inquiri', u'begin', u'tassi', u'devil', u'suspici', u'death']
[u'investig', u'train', u'collis', u'begin']
[u'iran', u'nuclear', u'talk', u'reason']
[u'jackson', u'choos', u'wnba', u'aussi', u'leagu', u'mother']
[u'jam', u'hardi', u'appoint', u'interim']
[u'jam', u'hardi', u'resign', u'cheer', u'union']
[u'justic', u'minist', u'defend', u'record', u'crime']
[u'kangaroo', u'prepar', u'match']
[u'kerri', u'hunt', u'gees', u'vote']
[u'kirbi', u'attack', u'system', u'detractor']
[u'labor', u'claim', u'victori', u'swan', u'cowan']
[u'labor', u'win', u'hindmarsh']
[u'latham', u'shoulder', u'blame', u'reveal', u'frontbench']
[u'lismor', u'flush', u'water', u'save', u'success']
[u'literaci', u'flag', u'bush']
[u'local', u'hors', u'featur', u'silver', u'citi']
[u'lyon', u'take', u'australian', u'rugbi', u'gong']
[u'maiden', u'gulli', u'natur', u'boost']
[u'major', u'delay', u'avert', u'custom', u'offic', u'continu']
[u'malaysia', u'join', u'battl', u'best', u'foreign', u'film', u'oscar']
[u'convict', u'wife', u'murder', u'time']
[u'jail', u'con', u'elder']
[u'jail', u'australia', u'post', u'theft']
[u'plead', u'guilti', u'child', u'porn', u'charg']
[u'mayor', u'prais', u'previous', u'council', u'minim', u'flood']
[u'mayor', u'want', u'proof', u'indi', u'econom', u'benefit']
[u'medic', u'emerg', u'delay', u'devonport', u'sydney', u'ferri']
[u'melbourn', u'airport', u'run', u'smooth', u'despit', u'strike']
[u'meteor', u'shower', u'light', u'night']
[u'mexico', u'plan', u'race']
[u'midwiv', u'seek', u'back', u'law', u'protest']
[u'mine', u'neighbour', u'seek', u'blast', u'guarante']
[u'mine', u'expo', u'weather', u'storm', u'heat']
[u'minist', u'highlight', u'colleg', u'financi', u'fear']
[u'missil', u'hit', u'milit', u'leader', u'home']
[u'industri', u'fund', u'seek', u'tackl', u'fruit']
[u'morient', u'sale', u'defiant', u'real']
[u'mornington', u'council', u'retent', u'spotlight']
[u'call', u'sign', u'dredg', u'elliott', u'river', u'mouth']
[u'murrumbidge', u'give', u'carr', u'finger', u'salut']
[u'navi', u'goodwil', u'visit', u'spark', u'fals', u'alarm']
[u'newcastl', u'boro', u'notch', u'uefa', u'win']
[u'lebanes', u'wont', u'promis', u'miracl']
[u'korean', u'seek', u'asylum', u'beij', u'school']
[u'nurs', u'right', u'cours', u'renew']
[u'oliv', u'face', u'tough', u'choic', u'melbourn']
[u'kill', u'sydney', u'freeway', u'crash']
[u'opposit', u'question', u'campus', u'consult']
[u'passeng', u'fin', u'rage', u'incid']
[u'pentagon', u'dump', u'guantanamo', u'tribun', u'offic']
[u'perilya', u'experi', u'product', u'fall']
[u'perth', u'airport', u'carri', u'despit', u'strike']
[u'phone', u'call', u'renew', u'year', u'murder', u'inquiri']
[u'pilot', u'plead', u'guilti', u'land', u'charg']
[u'piraci', u'tip', u'cost', u'film', u'industri', u'billion']
[u'plung', u'fail', u'dent', u'starcraft', u'favourit']
[u'confid', u'keep', u'elect', u'promis']
[u'talk', u'relat', u'malaysia']
[u'polic', u'brush', u'domest', u'violenc', u'law']
[u'polic', u'prepar', u'esper']
[u'polic', u'probe', u'fatal', u'crash']
[u'polic', u'speak', u'street', u'assault']
[u'postal', u'vote', u'loosen', u'grip', u'swan']
[u'prosecut', u'ask', u'polic', u'verifi', u'newmont', u'evid']
[u'public', u'get', u'detail', u'candid', u'donat']
[u'queanbeyan', u'council', u'accus', u'develop', u'backflip']
[u'raid', u'uncov', u'illeg', u'worker']
[u'redback', u'chang', u'bull', u'clash']
[u'region', u'hold', u'prosper', u'kerin']
[u'research', u'confirm', u'alcohol', u'risk', u'pregnanc']
[u'resourc', u'stock', u'return', u'centr', u'stage']
[u'ruddock', u'stand', u'guantanamo', u'trial']
[u'russian', u'armi', u'reject', u'bulli', u'critic']
[u'journo', u'clarifi', u'iraq', u'kidnap', u'comment']
[u'school', u'offer', u'counsel', u'porn']
[u'sciacca', u'conced', u'bonner']
[u'search', u'begin', u'perfect', u'toad', u'trap']
[u'searcher', u'miss', u'nurs', u'home', u'resid']
[u'second', u'sydney', u'charg', u'drink', u'spike']
[u'shower', u'bare', u'regist', u'canberra']
[u'skiff', u'steroid', u'favourit', u'sydney', u'hobart']
[u'skywest', u'oper']
[u'sport', u'arbitr', u'judg', u'olymp']
[u'lanka', u'take', u'slender', u'lead', u'pakistan']
[u'starcraft', u'connect', u'wari', u'aggress', u'tactic']
[u'student', u'master', u'virtual', u'tourism']
[u'student', u'target', u'whoop', u'cough', u'fight']
[u'surfer', u'warn', u'shark', u'attack', u'risk']
[u'surviv', u'hop', u'dwindl', u'bodi', u'recov']
[u'tamworth', u'clean', u'flash', u'flood']
[u'chang', u'tip', u'curb', u'vineyard', u'develop']
[u'tech', u'stock', u'boost', u'ebay']
[u'tertiari', u'educ', u'applic', u'fall']
[u'test', u'dayer', u'stay']
[u'test', u'subject']
[u'thousand', u'expect', u'flock', u'sale']
[u'charg', u'haul']
[u'danish', u'soldier', u'injur', u'iraq', u'blast']
[u'timber', u'group', u'critic', u'delay', u'forest', u'decis']
[u'lead', u'immigr', u'illeg', u'worker']
[u'tobacco', u'smuggler', u'avoid', u'jail']
[u'toll', u'fast', u'track', u'pacif', u'highway', u'upgrad']
[u'traci', u'kelli', u'lead', u'indi', u'practic']
[u'tuckey', u'wont', u'past', u'speaker']
[u'jail', u'term', u'fatal', u'attack', u'famili']
[u'chief', u'back', u'therapeut', u'clone']
[u'underworld', u'figur', u'wife', u'await', u'sentenc']
[u'union', u'voic', u'concern', u'onesteel', u'repair', u'work']
[u'unit', u'look', u'birthday', u'rooney', u'halt', u'arsenal']
[u'univers', u'staff', u'threaten', u'industri', u'action']
[u'armi', u'want', u'femal', u'combat', u'zone']
[u'deni', u'involv', u'mosqu', u'violenc']
[u'kill', u'fallujah', u'girl', u'rescuer']
[u'warn', u'asean', u'summit', u'plot']
[u'vettori', u'spin', u'zealand', u'inning', u'victori']
[u'violenc', u'break', u'mosqu', u'raid']
[u'violent', u'escape', u'extradit']
[u'deni', u'damag', u'agent', u'orang', u'kill', u'worker']
[u'word', u'erupt', u'albani']
[u'water', u'price', u'complex']
[u'webber', u'make', u'light', u'button', u'undo']
[u'whan', u'defend', u'resort', u'endors']
[u'winter', u'rain', u'fail', u'eas', u'threat']
[u'winton', u'soak', u'movi', u'make', u'experi']
[u'wither', u'return', u'raider']
[u'woman', u'face', u'court', u'babi', u'son', u'murder']
[u'woodlawn', u'miner', u'entitl']
[u'yudhoyono', u'hold', u'cabinet', u'meet', u'amid', u'media']
[u'yudhoyono', u'shock', u'tactic', u'corrupt']
[u'hop', u'rhino', u'embryo', u'effort', u'deliv', u'result']
[u'kill', u'bomb', u'attack', u'iraq', u'polic', u'academi']
[u'accc', u'vow', u'crack', u'decept', u'practition']
[u'acoss', u'cautious', u'human', u'servic', u'ministri']
[u'seek', u'countri', u'club', u'buyer']
[u'agassi', u'face', u'safin', u'madrid', u'semi']
[u'arson', u'squad', u'probe', u'target', u'blaze']
[u'kill', u'injur', u'japan', u'quak']
[u'australia', u'warn', u'travel', u'philippin', u'terror']
[u'author', u'confid', u'avert', u'water', u'qualiti']
[u'backbench', u'pleas', u'latham', u'rebuild']
[u'baird', u'take', u'halfway', u'lead', u'florida']
[u'barrichello', u'delight', u'home', u'crowd', u'practic']
[u'base', u'jumper', u'die', u'injuri']
[u'bashar', u'second', u'test']
[u'bono', u'find', u'long', u'lose', u'lyric']
[u'bourdai', u'pick', u'leav']
[u'brack', u'china', u'trade', u'mission']
[u'britain', u'foreign', u'minist', u'distress', u'kidnap']
[u'bullet', u'king']
[u'bull', u'outclass', u'redback', u'gabba']
[u'burma', u'scrap', u'militari', u'intellig', u'power']
[u'bush', u'sign', u'billion', u'corpor']
[u'sensit', u'approach', u'indigen']
[u'calzagh', u'win', u'brawl']
[u'care', u'plead', u'hostag', u'releas']
[u'search', u'lead', u'ecstasi', u'charg']
[u'chainsaw', u'attack', u'leav', u'serious', u'injur']
[u'child', u'safeti', u'organis', u'face', u'financi', u'crisi']
[u'china', u'arrest', u'york', u'time', u'research']
[u'china', u'toll', u'rise', u'dead', u'miss']
[u'withdraw', u'iraq', u'claim']
[u'confer', u'consid', u'human', u'right', u'decad']
[u'confer', u'tell', u'health', u'fail', u'refuge']
[u'dead', u'award', u'honour', u'indigen', u'achiev']
[u'elder']
[u'blaze', u'control']
[u'financ', u'half', u'african', u'mission']
[u'expert', u'meet', u'suspect', u'bowl', u'action']
[u'fire', u'threaten', u'home', u'south', u'east']
[u'freeway', u'reopen', u'fatal', u'pile']
[u'gaze', u'honour', u'basketbal', u'australia']
[u'girl', u'die', u'fall', u'power', u'station']
[u'take', u'life', u'snail', u'pace']
[u'govt', u'probe', u'taint', u'polio', u'jab', u'report']
[u'govt', u'unsway', u'russia', u'kyoto', u'lead']
[u'gunmen', u'kill', u'turkish', u'truck', u'driver', u'iraq']
[u'hardi', u'execut', u'tell', u'clean', u'victim', u'bedpan']
[u'heat', u'ambros', u'extend', u'seri', u'lead']
[u'hird', u'receiv', u'death', u'threat', u'test']
[u'indian', u'cricket', u'game', u'have', u'not']
[u'investig', u'begin', u'hamilton', u'store']
[u'iraqi', u'say', u'deal', u'care', u'hostag']
[u'luck', u'oliv']
[u'jayasuriya', u'put', u'lanka', u'command']
[u'karzai', u'lead', u'slip', u'afghan', u'elect']
[u'keegan', u'readi', u'quit']
[u'kosovo', u'vote', u'begin']
[u'labor', u'liber', u'secur', u'seat']
[u'arrest', u'woman', u'death']
[u'arrest', u'internet', u'charg']
[u'charg', u'man', u'shoot']
[u'detain', u'stab']
[u'shoot', u'polic', u'offic']
[u'media', u'savvi', u'nazi', u'worri', u'german', u'polic', u'report']
[u'mehrten', u'shin', u'canterburi', u'titl']
[u'mesothelioma', u'scientist', u'win', u'premier', u'award']
[u'molik', u'sharapova', u'zurich']
[u'mortar', u'blast', u'hear', u'central', u'baghdad']
[u'mortar', u'blast', u'kill', u'central', u'baghdad']
[u'music', u'industri', u'face', u'radio', u'playlist', u'probe']
[u'mysteri', u'potteri', u'show', u'true', u'face']
[u'liber', u'vagu', u'pyramid', u'scheme', u'role']
[u'win', u'long', u'await', u'netbal', u'titl']
[u'predict', u'record', u'cruis', u'season']
[u'microsoft', u'push', u'year']
[u'price', u'surg', u'higher']
[u'dead', u'smash']
[u'opposit', u'union', u'offic', u'defenc', u'fund']
[u'pakistan', u'record', u'chase']
[u'pakistan', u'sami', u'doubt', u'second', u'test']
[u'palestinian', u'collabor', u'kill', u'hama']
[u'passeng', u'face', u'delay', u'freight', u'train']
[u'polic', u'loss', u'explain', u'fatal', u'fern', u'crash']
[u'polic', u'investig', u'cherbourg', u'death']
[u'polic', u'second', u'arrest', u'man', u'shoot']
[u'reev', u'appear', u'stem', u'cell', u'campaign']
[u'revitalis', u'broadhurst', u'lead', u'spain']
[u'russia', u'move', u'ratifi', u'kyoto', u'protocol']
[u'savabeel', u'cruis', u'stun', u'plate']
[u'secur', u'tighten', u'hird', u'receiv', u'death']
[u'serb', u'refuge', u'boycott', u'kosovo', u'vote']
[u'pill', u'posit', u'drug', u'test', u'mutu']
[u'somalia', u'ask', u'peacekeep']
[u'starcraft', u'connect', u'stay', u'confid']
[u'strong', u'quak', u'aftershock', u'northern', u'japan']
[u'suicid', u'bomber', u'hit', u'kabul', u'market', u'injur']
[u'suicid', u'bomber', u'kill', u'iraqi', u'checkpoint']
[u'support', u'network', u'open', u'door', u'famili', u'busi']
[u'suspect', u'islamist', u'milit', u'kill', u'algeria']
[u'timber', u'group', u'eye', u'forestri', u'merger']
[u'tendulkar', u'play', u'test']
[u'traci', u'set', u'second', u'gold', u'coast', u'titl']
[u'train', u'servic', u'return', u'normal']
[u'truck', u'driver', u'question', u'fatal', u'freeway', u'crash']
[u'turkish', u'hostag', u'escap', u'help', u'captor']
[u'macedonian', u'confirm', u'execut', u'iraq']
[u'appeal', u'forc', u'return', u'iraqi', u'refuge']
[u'union', u'offici', u'face', u'forestri', u'polici']
[u'odd', u'alli', u'human', u'clone']
[u'captur', u'senior', u'zarqawi', u'member']
[u'claim', u'guantanamo', u'prison', u'return']
[u'reject', u'north', u'korean', u'condit', u'talk']
[u'vote', u'begin', u'nauru']
[u'govern', u'play', u'rail', u'project', u'delay']
[u'wanga', u'robert', u'mundin', u'dead', u'honour']
[u'wilkinson', u'hold', u'hope', u'novemb', u'test']
[u'woman', u'critic', u'condit', u'cliff', u'fall']
[u'woman', u'emerg', u'surgeri', u'cliff', u'fall']
[u'wwii', u'fighter', u'squadron', u'honour']
[u'kill', u'ambush', u'iraqi', u'armi', u'recruit']
[u'ambros', u'murphi', u'clash', u'race']
[u'american', u'woman', u'afghan', u'girl', u'kabul', u'blast']
[u'anti', u'gambl', u'campaign', u'plan']
[u'australian', u'mine', u'offici', u'free', u'indonesian']
[u'australian', u'servic', u'honour']
[u'australia', u'target', u'antarct', u'poach']
[u'awar', u'week', u'highlight', u'plight', u'refuge']
[u'bangladesh', u'journalist', u'shoot', u'dead']
[u'barrichello', u'grab', u'brazil', u'pole']
[u'bellhorn', u'homer', u'give', u'boston', u'world', u'seri', u'lead']
[u'brack', u'hail', u'fruit', u'china', u'trip']
[u'brazil', u'launch', u'space', u'rocket']
[u'british', u'arm', u'forc', u'recognis', u'satanist']
[u'commission', u'demand', u'human', u'right']
[u'coron', u'tackl', u'unaccept', u'workplac', u'death', u'toll']
[u'crane', u'oper', u'face', u'skill', u'review']
[u'croc', u'festiv', u'aim', u'point', u'student', u'right']
[u'death', u'toll', u'mount', u'japan', u'quak']
[u'defenc', u'confirm', u'drug', u'soldier', u'sick']
[u'earli', u'result', u'favour', u'govern', u'nauru', u'poll']
[u'fallujah', u'insurg', u'deni', u'hold', u'worker']
[u'gillard', u'favourit', u'treasuri', u'portfolio']
[u'gold', u'coast', u'expect', u'indi', u'turnout']
[u'govt', u'toughen', u'anti', u'terror', u'law']
[u'gudjohnsen', u'trick', u'fire', u'blue', u'victori']
[u'gutwein', u'claim', u'polic', u'traffic', u'offenc', u'quota', u'witch']
[u'hardi', u'face', u'protest', u'execut', u'payout']
[u'headless', u'bodi', u'float', u'north', u'iraq', u'river']
[u'hotlin', u'target', u'seafood', u'label']
[u'indonesian', u'polic', u'patrol', u'stop', u'muslim', u'nightclub']
[u'iran', u'reject', u'nuclear', u'propos']
[u'iraqi', u'milit', u'behead', u'collabor', u'websit']
[u'iraq', u'milit', u'lebanes', u'child', u'hostag']
[u'iraq', u'suicid', u'bomb', u'kill', u'zarqawi', u'aid']
[u'nomine', u'giteau', u'tout', u'team', u'mat']
[u'isra', u'cabinet', u'approv', u'compens', u'gaza']
[u'isra', u'forc', u'enter', u'nablus', u'refuge', u'camp']
[u'japan', u'quak', u'kill', u'injur', u'hundr']
[u'japan', u'quak', u'leav', u'dead', u'injur', u'polic']
[u'junqueira', u'win', u'indi', u'besnard', u'seventh']
[u'karzai', u'campaign', u'team', u'claim', u'victori', u'afghan', u'vote']
[u'king', u'edg', u'pirat', u'croc', u'flog', u'bullet']
[u'light', u'shed', u'mysteri', u'caucasian', u'communiti']
[u'lockyer', u'injuri', u'mar', u'kangaroo']
[u'macklin', u'rule', u'treasuri', u'post']
[u'die', u'accident', u'stab', u'self']
[u'molik', u'reach', u'zurich', u'final']
[u'stromlo', u'reopen', u'public']
[u'health', u'centr', u'redfern']
[u'water', u'plant', u'pilbara']
[u'apolog', u'princ', u'harri', u'nightclub']
[u'observ', u'disappoint', u'serb', u'shun', u'kosovo', u'poll']
[u'ogilvi', u'touch', u'florida']
[u'owen', u'get', u'leagu', u'goal', u'real', u'madrid']
[u'pair', u'share', u'quilti']
[u'perth', u'pride', u'parad', u'draw', u'record', u'crowd']
[u'pitcairn', u'abus', u'verdict', u'week']
[u'polic', u'injur', u'nowra', u'brawl']
[u'pont', u'hope', u'end', u'india', u'drought']
[u'premier', u'urg', u'date', u'dubbo', u'elect']
[u'protest', u'block', u'sheep', u'deliveri', u'fremantl']
[u'rain', u'fail', u'eas', u'farmer', u'pain']
[u'rogerson', u'shonki', u'salesman', u'genius']
[u'rumford', u'readi', u'pounc', u'madrid']
[u'safin', u'overpow', u'agassi', u'reach', u'madrid', u'final']
[u'scotti', u'govern', u'win', u'landslid', u'nauru', u'elect']
[u'senat', u'control', u'hold']
[u'senior', u'offic', u'make', u'speedi', u'camera', u'share', u'sale']
[u'sever', u'storm', u'warn', u'darl', u'down', u'boonah']
[u'sixer', u'storm', u'home', u'breaker']
[u'hurt', u'turkish', u'bomb', u'blast']
[u'kill', u'strike', u'fallujah']
[u'skipper', u'night', u'adrift']
[u'space', u'station', u'crew', u'return', u'earth']
[u'lanka', u'complet', u'crush', u'pakistan']
[u'lanka', u'control', u'jayasuriya', u'doubl']
[u'suicid', u'bomber', u'kill', u'iraqi', u'secur', u'offic']
[u'surviv', u'nazi', u'crimin', u'flush']
[u'sweden', u'ljungblad', u'reign', u'suprem', u'victoria']
[u'taiwan', u'presid', u'hope', u'talk', u'china']
[u'taliban', u'suicid', u'bomber', u'hit', u'kabul']
[u'teenag', u'charg', u'kill', u'smash']
[u'teenag', u'leav', u'steal', u'crash']
[u'teenag', u'question', u'fatal', u'smash']
[u'tendulkar', u'mcgrath', u'light', u'test']
[u'thiev', u'hotel', u'cleaner']
[u'rescu', u'swim']
[u'tiger', u'blue', u'remain', u'unbeaten']
[u'hors', u'endur', u'race']
[u'palestinian', u'milit', u'kill', u'isra']
[u'secur', u'council', u'hold', u'special', u'sudan', u'session']
[u'diplomat', u'kill', u'iraq', u'attack']
[u'rail', u'delay', u'surpris', u'opposit']
[u'watchdog', u'warn', u'psychic', u'offer']
[u'wild', u'boar', u'maul', u'hong', u'kong', u'golf', u'cours']
[u'woman', u'arrest', u'stab']
[u'zarqawi', u'group', u'renam', u'qaeda', u'pledg']
[u'academ', u'issu', u'environ', u'warn']
[u'accus', u'plead', u'guilti', u'fatal']
[u'reject', u'child', u'porn', u'list', u'alleg']
[u'year', u'arko', u'fli', u'eagl', u'coop']
[u'agreement', u'reach', u'bougainvill', u'draft']
[u'crash', u'hit', u'nascar', u'team']
[u'alic', u'spring', u'darwin', u'rail', u'oper', u'defend']
[u'oppos', u'pharmacist', u'expans', u'plan']
[u'ambros', u'cop', u'fine', u'post', u'race', u'brake']
[u'architect', u'assess', u'govt', u'hous', u'ceil', u'collaps']
[u'aussi', u'readi', u'tendulkar', u'return']
[u'australian', u'driver', u'give', u'start', u'champ', u'seri']
[u'aust', u'troop', u'join', u'intercept', u'drill']
[u'author', u'recal', u'showbag', u'drink', u'bottl']
[u'satisfi', u'onesteel', u'respons']
[u'aziz', u'visit', u'india', u'region', u'tour']
[u'barca', u'stay', u'spain']
[u'deni', u'report', u'workforc', u'cut']
[u'beatti', u'urg', u'push', u'tourism']
[u'bega', u'chees', u'win', u'export', u'award']
[u'crowd', u'celebr']
[u'fundrais', u'effort', u'boost', u'oncolog', u'unit']
[u'blaze', u'claim', u'emmavill', u'hous']
[u'blaze', u'claim', u'properti', u'fee']
[u'bollywood', u'head']
[u'bomb', u'explod', u'near', u'aust', u'embassi', u'baghdad']
[u'busi', u'plan', u'promot', u'push']
[u'busi', u'urg', u'custom', u'safe']
[u'butcher', u'catch', u'meat', u'substitut', u'crackdown']
[u'cabinet', u'leak', u'polic', u'matter']
[u'bomb', u'kill', u'tribal', u'leader']
[u'crash', u'leav', u'trap', u'vehicl']
[u'wipe', u'fenc', u'adelaid', u'smash']
[u'cat', u'excit', u'snare', u'ablett']
[u'causley', u'miss', u'ministeri', u'posit']
[u'cessnock', u'medic', u'centr', u'open', u'door']
[u'chalet', u'worker', u'find', u'bodi']
[u'cherbourg', u'princip', u'get', u'accolad']
[u'china', u'rebuff', u'powel', u'taiwan', u'recommend']
[u'clarenc', u'council', u'introduc', u'perman', u'water', u'ban']
[u'clean', u'begin', u'storm']
[u'climat', u'expert', u'meet', u'hobart']
[u'clinton', u'bypass', u'recuper', u'join', u'campaign']
[u'coach', u'say', u'prove', u'croc', u'structur', u'work']
[u'code', u'chang', u'indigen', u'women', u'peac', u'mind']
[u'commission', u'unveil', u'organis', u'crime', u'squad']
[u'concern', u'rais', u'possibl', u'polio', u'vaccin']
[u'confer', u'aim', u'improv', u'crime', u'fight', u'network']
[u'confer', u'consid', u'age', u'popul', u'need']
[u'confer', u'tackl', u'student', u'wellb', u'issu']
[u'coulthard', u'leav', u'mclaren', u'disappoint', u'fashion']
[u'council', u'defend', u'substat', u'asbesto', u'decis']
[u'council', u'turn', u'area', u'dairi', u'process']
[u'credit', u'windfal', u'give', u'health', u'boost']
[u'custom', u'lodg', u'fewer', u'bank', u'complaint']
[u'deal', u'reach', u'delay', u'test', u'drill']
[u'debat', u'loom', u'gaza', u'pull', u'plan']
[u'democrat', u'consid', u'refin', u'senat', u'role']
[u'democrat', u'founder', u'devast', u'parti', u'perform']
[u'democrat', u'leader', u'face', u'possibl', u'challeng']
[u'disabl', u'iraqi', u'hassan', u'releas']
[u'disgrac', u'hammer', u'thrower', u'hand', u'olymp', u'gold']
[u'district', u'isol', u'anthrax', u'outbreak']
[u'downer', u'urg', u'nauruan', u'reform']
[u'downer', u'welcom', u'indonesian', u'counterpart', u'secur']
[u'dozen', u'injur', u'thai', u'protest', u'turn', u'violent']
[u'draft', u'bushfir', u'manag', u'plan', u'releas']
[u'earli', u'detect', u'best', u'mean', u'tackl', u'breast']
[u'eastman', u'inquiri', u'hear', u'inadmiss', u'evid']
[u'guerrouj', u'map', u'retir', u'plan']
[u'emerg', u'chief', u'demand', u'action', u'inquiri']
[u'energex', u'scandal', u'claim', u'scalp']
[u'suspend', u'trade', u'sanction']
[u'evi', u'dominikov', u'win', u'rocki', u'tenni', u'tournament']
[u'expert', u'say', u'iraqi', u'elect', u'time']
[u'fewer', u'cane', u'farm', u'predict', u'burnett', u'region']
[u'firefight', u'monitor', u'coast', u'blaze']
[u'aborigin', u'senat', u'wife', u'die']
[u'fish', u'parti', u'issu', u'warn', u'reef', u'review', u'deal']
[u'arrest', u'hotel', u'bomb']
[u'seek', u'address', u'hous', u'woe']
[u'fletcher', u'retir', u'polit']
[u'prosecutor', u'maintain', u'eastman', u'plead']
[u'foster', u'defend', u'pub', u'sale']
[u'fresh', u'blood', u'northern', u'land', u'council']
[u'fuel', u'hike', u'forc', u'balanc', u'taxi', u'fare']
[u'fuel', u'price', u'spark', u'outback', u'tourism', u'fear']
[u'fund', u'compo', u'foundat', u'asbesto', u'victim', u'group', u'plead']
[u'gallop', u'promis', u'sustain', u'econom', u'growth']
[u'gillard', u'wont', u'contest', u'treasuri', u'posit']
[u'govt', u'announc', u'boat', u'grant']
[u'govt', u'pump', u'cash', u'tackl', u'child', u'obes']
[u'govt', u'stand', u'sewerag', u'rank']
[u'govt', u'urg', u'pressur', u'asylum', u'seeker', u'leav']
[u'govt', u'urg', u'suspend', u'fuel']
[u'group', u'look', u'lake', u'albert', u'project']
[u'grower', u'group', u'welcom', u'tree', u'cull', u'plan']
[u'heavi', u'rain', u'spark', u'sewerag', u'concern']
[u'hotel', u'group', u'claim', u'inequ', u'poki', u'plan']
[u'index', u'regist', u'inflat', u'leap']
[u'india', u'level', u'seri', u'nagpur']
[u'india', u'look', u'nagpur', u'level', u'seri']
[u'indonesian', u'polic', u'uncov', u'bomb', u'cach']
[u'iraq', u'lose', u'tonn', u'explos']
[u'iraq', u'benefici', u'philippin']
[u'ireland', u'complet', u'intern', u'rule', u'seri', u'sweep']
[u'isra', u'forc', u'kill', u'gaza', u'incurs']
[u'isra', u'incurs', u'kill', u'crucial', u'vote']
[u'offici', u'platypus', u'weird']
[u'jam', u'hardi', u'discuss', u'compens', u'fear']
[u'japanes', u'director', u'win', u'grudg']
[u'jungl', u'rumbl', u'talk', u'turn']
[u'karzai', u'main', u'rival', u'conced', u'defeat', u'afghan', u'poll']
[u'kelli', u'ministeri', u'appoint', u'consid', u'good']
[u'labor', u'look', u'reveng', u'leak', u'freeway']
[u'lawyer', u'slam', u'tasmanian', u'asbesto', u'compens', u'law']
[u'lawyer', u'push', u'record', u'damag', u'botch']
[u'letter', u'highlight', u'hospit', u'budget', u'shortfal']
[u'lib', u'silent', u'unlist', u'number', u'elect', u'call']
[u'lobster', u'fisher', u'boost', u'zone', u'sustain']
[u'lockyer', u'fitzgibbon', u'rule', u'kangaroo']
[u'long', u'swim', u'spark', u'boat', u'rescu']
[u'admit', u'girlfriend', u'murder']
[u'drown', u'near', u'nowra']
[u'escap', u'burn']
[u'rescu', u'boat', u'mishap']
[u'sentenc', u'plastic', u'explos']
[u'talk', u'glazer']
[u'shoot', u'gunner', u'record']
[u'maryborough', u'man', u'movement', u'mysteri']
[u'mcgrath', u'aim', u'mark', u'test']
[u'industri', u'urg', u'invest', u'diesel', u'fuel']
[u'miner', u'take', u'heart', u'kangaroo', u'flat', u'approv']
[u'mine', u'issu', u'featur', u'state', u'elect']
[u'minist', u'upbeat', u'privat', u'hospit', u'servic']
[u'charg', u'lay', u'fatal', u'sydney', u'crash']
[u'moseley', u'come', u'short', u'euro', u'tour', u'card']
[u'motorist', u'warn', u'fuel', u'price', u'hike']
[u'murdoch', u'give', u'key', u'adelaid']
[u'museum', u'goer', u'quiz', u'brain', u'surgeon']
[u'music', u'label', u'site', u'owner']
[u'muslim', u'threaten', u'indonesian', u'nightclub', u'attack']
[u'nagpur', u'test', u'fit', u'mileston', u'mcgrath']
[u'nairn', u'get', u'parliamentari', u'secretari', u'appoint']
[u'narrogin', u'student', u'attend', u'gallipoli', u'anzac']
[u'nauru', u'observ', u'declar', u'vote', u'free', u'fair']
[u'medic', u'school', u'start', u'accept', u'student']
[u'scheme', u'seek', u'check', u'illeg', u'worker']
[u'super', u'team', u'need', u'wallabi', u'jone']
[u'hit', u'high', u'norwegian', u'labour', u'disput']
[u'trafford', u'injustic', u'stronger', u'wenger']
[u'opposit', u'reject', u'school', u'drug', u'search', u'claim']
[u'pair', u'riverina', u'crash']
[u'pair', u'road', u'crash']
[u'papa', u'wemba', u'face', u'peopl', u'smuggl', u'charg']
[u'perilya', u'look', u'cash', u'boost']
[u'perth', u'court', u'hear', u'franchis', u'test', u'case']
[u'pharmacist', u'look', u'extend', u'role']
[u'pipe', u'mishap', u'prompt', u'effluent', u'dispos', u'warn']
[u'polic', u'hope', u'club', u'curb', u'youth', u'crime']
[u'polic', u'hunt', u'syring', u'bandit']
[u'polic', u'investig', u'counterfeit', u'note']
[u'polic', u'probe', u'orient', u'point', u'brawl']
[u'polic', u'reject', u'claim', u'forc', u'strength']
[u'polic', u'search', u'miss']
[u'polic', u'trim', u'violent', u'crime', u'task', u'forc']
[u'polic', u'gold', u'arrest']
[u'polic', u'want', u'braveri', u'award', u'wollongong', u'offic']
[u'probe', u'begin', u'target', u'store', u'blaze']
[u'probe', u'launch', u'fatal', u'loader', u'accid']
[u'protest', u'delay', u'livestock', u'shipment', u'fremantl']
[u'public', u'quiz', u'dengu', u'fever']
[u'public', u'urg', u'water', u'safe']
[u'push', u'femal', u'councillor']
[u'opposit', u'back', u'canker', u'compo', u'propos']
[u'list', u'nation', u'child', u'offend']
[u'ranger', u'lose', u'grind', u'celtic']
[u'record', u'field', u'vie', u'book', u'prize']
[u'lead', u'cardin']
[u'relay', u'rais', u'cancer', u'research', u'fund']
[u'report', u'rat', u'best', u'perform', u'state']
[u'rescu', u'effort', u'continu', u'follow', u'japan', u'quak']
[u'resid', u'worri', u'wildlif', u'protest']
[u'rooki', u'win', u'event', u'hensbi', u'tie', u'sixth']
[u'rspca', u'distress', u'chicken', u'case', u'dismiss']
[u'russian', u'station', u'tell', u'parti', u'line']
[u'sachin']
[u'safin', u'close', u'houston', u'spot']
[u'prepar', u'night', u'poki', u'debat']
[u'investig', u'fund', u'transfer']
[u'savabeel', u'elvstroem', u'unlik']
[u'searcher', u'man', u'bodi']
[u'secker', u'offici', u'recognis', u'barker']
[u'seven', u'goal', u'thriller', u'give', u'souness', u'palpit']
[u'shire', u'presid', u'pour', u'cold', u'water', u'bushfir', u'plan']
[u'singl', u'vehicl', u'crash', u'claim', u'casino']
[u'site', u'worker', u'die', u'cut', u'live', u'wire']
[u'pitcairn', u'guilti', u'crime']
[u'socceroo', u'strength', u'norway', u'clash']
[u'soldier', u'join', u'malaria', u'drug', u'lawsuit']
[u'space', u'probe', u'close', u'titan']
[u'spi', u'suspect', u'iraq', u'polic', u'massacr']
[u'starcraft', u'connect', u'weigh', u'oversea', u'option']
[u'starcraft', u'connect', u'weigh', u'oversea', u'option']
[u'steal', u'plane', u'report', u'spark', u'emerg', u'respons']
[u'strong', u'quak', u'shake', u'northern', u'japan']
[u'strong', u'wind', u'hamper', u'firefight', u'effort']
[u'student', u'die', u'embassi', u'bomb', u'injuri']
[u'survey', u'find', u'staff', u'stifl']
[u'task', u'forc', u'upbeat', u'bait']
[u'tasmania', u'trail', u'state', u'state', u'report']
[u'teen', u'clear', u'anim', u'cruelti', u'charg']
[u'teen', u'grant', u'bail', u'fatal', u'crash']
[u'telstra', u'move', u'restor', u'phone', u'servic']
[u'australian', u'soldier', u'wound', u'baghdad', u'blast']
[u'palestinian', u'kill', u'hurt', u'missil']
[u'toll', u'rise', u'isra', u'missil', u'strike']
[u'trainer', u'hop', u'privat', u'steer', u'autumn']
[u'transport', u'cost', u'fuel', u'smaller', u'grower', u'return']
[u'trawl', u'river', u'entranc']
[u'central', u'road']
[u'union', u'air', u'redund', u'fear']
[u'union', u'urg', u'step', u'hardi', u'disput']
[u'beef', u'menu', u'japan']
[u'pay', u'hefti', u'reward', u'terror', u'inform']
[u'visit', u'restart', u'north', u'korea', u'weapon', u'talk']
[u'vinni', u'doubt', u'melbourn']
[u'violent', u'offend', u'law', u'amend']
[u'wall', u'street', u'drag']
[u'watchdog', u'confirm', u'theft', u'iraqi', u'high', u'explos']
[u'water', u'author', u'probe', u'reservoir', u'claim']
[u'water', u'ban', u'longreach']
[u'water', u'tank', u'prompt', u'school', u'safeti', u'concern']
[u'webber', u'gut', u'jaguar', u'collid']
[u'western', u'power', u'sign', u'contract']
[u'westfield', u'funer', u'workplac', u'death']
[u'wineri', u'region', u'export', u'push']
[u'woman', u'die', u'crash']
[u'work', u'begin', u'darwin', u'jail', u'wing']
[u'yunkingcol', u'prove', u'good']
[u'agreement', u'reach', u'botch', u'birth', u'case']
[u'seek', u'end', u'esso', u'picket', u'line']
[u'albani', u'join', u'chang', u'task', u'forc']
[u'halt', u'share', u'trade']
[u'alic', u'confer', u'put', u'focus', u'crime', u'fight']
[u'criticis', u'nurs', u'poach']
[u'amnesti', u'plan', u'illeg', u'child', u'care', u'oper']
[u'anim', u'right', u'activist', u'threaten', u'farm', u'minist']
[u'announc', u'record', u'profit']
[u'appeal', u'fund', u'avail', u'victim']
[u'arafat', u'minor', u'exploratori', u'surgeri']
[u'ashle', u'simpson', u'take', u'sync', u'blame']
[u'asio', u'head', u'say', u'invas', u'help', u'qaeda']
[u'aussi', u'edmond', u'bag', u'french', u'rugbi', u'award']
[u'australia', u'bat', u'nagpur']
[u'australia', u'mini', u'collaps', u'nagpur']
[u'australia', u'suffer', u'mini', u'collaps', u'nagpur']
[u'bank', u'seek', u'casino', u'atm']
[u'beach', u'plan', u'subject', u'council', u'develop']
[u'beatti', u'pay', u'tribut', u'export', u'award', u'winner']
[u'billiton', u'expand', u'pilbara', u'oper']
[u'border', u'boost', u'aim', u'curb', u'weed', u'spread']
[u'brisban', u'refineri', u'step', u'green']
[u'bulloch', u'lead', u'scotland', u'australia']
[u'bushfir', u'inquiri', u'hold', u'year']
[u'busi', u'manag', u'cast', u'doubt', u'seven', u'trade']
[u'busi', u'optim', u'rid', u'high']
[u'tough', u'stanc', u'citrus', u'canker']
[u'canberra', u'fare', u'rise']
[u'canefarm', u'consid', u'futur', u'post', u'harvest']
[u'centuri', u'stand', u'put', u'australia']
[u'chamber', u'back', u'suppli', u'contract']
[u'child', u'porn', u'investig', u'hit', u'school', u'moral']
[u'china', u'mine', u'accid', u'death', u'toll', u'hit']
[u'china', u'releas', u'prison', u'figur']
[u'church', u'fail', u'abus', u'concern']
[u'colonel', u'say', u'armi', u'train', u'save', u'soldier', u'live']
[u'coron', u'drown', u'report']
[u'council', u'consid', u'desalin', u'solut']
[u'council', u'face', u'develop', u'boom']
[u'council', u'seek', u'inform', u'tree', u'remov']
[u'council', u'sniff', u'opportun', u'improv', u'sewerag']
[u'council', u'urg', u'plan', u'age', u'popul']
[u'council', u'view', u'wind', u'farm', u'plan']
[u'court', u'order', u'seizur', u'murder', u'gangland', u'figur']
[u'court', u'sentenc', u'hambali', u'brother', u'marriott']
[u'crash', u'probe', u'find', u'plan', u'wing', u'fell']
[u'cricket', u'australia', u'confirm', u'taster']
[u'cuba', u'circul', u'dollar']
[u'custom', u'offic', u'seiz', u'fill', u'candl']
[u'custom', u'seiz', u'radioact', u'kitchen', u'handl']
[u'cycl', u'star', u'adelaid', u'showcas']
[u'dajka', u'disqualifi', u'drive']
[u'darwin', u'resid', u'warn', u'dodgi', u'door', u'door']
[u'death', u'spark', u'union', u'question', u'workplac', u'safeti']
[u'death', u'toll', u'explod', u'thai', u'protest']
[u'doctor', u'pioneer', u'umbil', u'cord', u'blood', u'cancer']
[u'dont', u'michael', u'real', u'coach']
[u'doubt', u'cast', u'china', u'goat', u'deal']
[u'doubt', u'cast', u'indigen', u'fund', u'maleni', u'site']
[u'downer', u'float', u'media', u'scenario', u'baghdad']
[u'dust', u'settl', u'leinster', u'storm']
[u'east', u'timor', u'ant', u'border', u'disput']
[u'educ', u'campaign', u'target', u'child', u'welfar', u'offici']
[u'rooki', u'black', u'squad']
[u'elect', u'surgeri', u'rat', u'wait', u'rise']
[u'energex', u'board', u'posit', u'fill', u'beatti']
[u'expert', u'confid', u'nation', u'water', u'initi']
[u'expert', u'discuss', u'tasmania', u'biotech', u'futur']
[u'crew', u'expos', u'danger', u'chemic']
[u'mainten', u'crew', u'push', u'compo']
[u'fair', u'trade', u'chief', u'meet', u'council', u'fuel', u'fear']
[u'feder', u'govt', u'consid', u'citrus', u'remov', u'plan']
[u'ferri', u'servic', u'push', u'port', u'profit', u'higher']
[u'fever', u'put', u'turban', u'doubt']
[u'ban', u'follow', u'downpour']
[u'destroy', u'brisban', u'restaur', u'kitchen']
[u'gut', u'print', u'factori']
[u'bull', u'coach', u'tip', u'west', u'indi', u'post']
[u'deputi', u'lord', u'mayor', u'enter', u'mayor', u'elect']
[u'prosecutor', u'say', u'eastman', u'enter', u'plea']
[u'formula', u'mexican', u'return']
[u'fuel', u'reduct', u'burn']
[u'boost', u'plan', u'camperdown', u'port', u'fairi']
[u'glimmer', u'twin', u'lead', u'labor', u'econom', u'charg']
[u'glitch', u'wren', u'repriev', u'deal']
[u'govt', u'announc', u'chang', u'juvenil', u'parol', u'board']
[u'govt', u'deni', u'cruis', u'facil', u'inadequ']
[u'govt', u'stand', u'reef', u'fish', u'closur']
[u'govt', u'unlik', u'reduc', u'workcov', u'premium']
[u'govt', u'urg', u'boost', u'access']
[u'green', u'sixth', u'senat', u'seat']
[u'high', u'hop', u'nation', u'livestock', u'scheme']
[u'hors', u'trainer', u'fin', u'ban', u'substanc']
[u'iaea', u'inform', u'miss', u'iraq', u'explos']
[u'maiden', u'track']
[u'administr', u'seek', u'unpaid', u'fund']
[u'india', u'snare', u'late', u'wicket', u'martyn']
[u'indonesian', u'fish', u'boat', u'nab']
[u'infrastructur', u'upgrad', u'need', u'coastal', u'mine']
[u'inzamam', u'savag', u'pakistan', u'batsmen']
[u'isra', u'forc', u'withdraw', u'gaza']
[u'isra', u'suprem', u'court', u'demand', u'armi', u'justifi']
[u'israel', u'resum', u'gaza', u'pull', u'debat']
[u'japan', u'earthquak', u'toll', u'rise']
[u'japan', u'quak', u'death', u'toll', u'push', u'higher']
[u'juvenil', u'detent', u'centr', u'manag', u'stand']
[u'juventus', u'offici', u'face', u'jail', u'dope']
[u'kangaroo', u'bounc', u'admit', u'coach']
[u'plead', u'privaci', u'hewitt', u'split']
[u'labor', u'ministri', u'earn', u'busi', u'group', u'prais']
[u'labor', u'parti', u'member', u'hit', u'latham', u'leadership']
[u'latham', u'unveil', u'labor', u'frontbench']
[u'firm', u'ahead', u'malaria', u'drug', u'class', u'action']
[u'leader', u'porn', u'gang', u'sentenc', u'year', u'jail']
[u'lifesav', u'make', u'boost', u'support', u'base']
[u'lovelorn', u'japanes', u'gangster', u'offer', u'sever', u'pinki']
[u'jail', u'record', u'fraud']
[u'martyn', u'give', u'australia', u'upper', u'hand']
[u'mcgradi', u'warn', u'swim']
[u'melbourn', u'firm', u'announc', u'tassi', u'splurg']
[u'melbourn', u'strand', u'spain', u'seek', u'help']
[u'melbourn', u'mayor', u'candid', u'begin', u'campaign']
[u'melbourn', u'mum', u'track', u'south', u'pole']
[u'minist', u'lobster', u'season', u'announc']
[u'molik', u'leap', u'rank']
[u'candid', u'nomin', u'council', u'poll']
[u'locust', u'hatch', u'emerg']
[u'polic', u'workmat']
[u'murali', u'hop', u'bowl', u'doosra']
[u'musharraf', u'call', u'approach', u'kashmir', u'disput']
[u'nagpur', u'track', u'play', u'aussi', u'hand', u'ganguli']
[u'nasa', u'craft', u'pass', u'close', u'saturn', u'moon']
[u'nation', u'confid', u'secur', u'final', u'senat', u'spot']
[u'nativ', u'veget', u'legisl', u'debat']
[u'nauru', u'parliament', u'elect', u'presid']
[u'author', u'clean', u'redfern']
[u'howard', u'ministri', u'take', u'oath']
[u'judg', u'appoint', u'counti', u'court']
[u'news', u'corp', u'begin', u'adelaid']
[u'news', u'corp', u'close']
[u'news', u'corp', u'lead', u'market', u'rebound']
[u'news', u'corp', u'sharehold', u'support']
[u'nomin', u'seek', u'council', u'spot']
[u'north', u'korea', u'rat', u'world', u'worst', u'nation', u'press']
[u'total', u'central', u'west']
[u'trial', u'domest', u'violenc', u'court']
[u'seek', u'role', u'greater', u'sunris', u'process']
[u'number', u'boost', u'predict', u'saff', u'power']
[u'price', u'push', u'perth', u'petrol', u'record', u'high']
[u'project', u'expect', u'green', u'impact']
[u'opposit', u'claim', u'violent', u'crime', u'chang']
[u'opposit', u'grill', u'govt', u'doc', u'oper']
[u'opposit', u'polic', u'commission']
[u'optus', u'seal', u'deal', u'dfat']
[u'organis', u'world', u'longest', u'golf', u'cours']
[u'oust', u'polynesian', u'leader', u'begin', u'hunger', u'strike']
[u'oyster', u'death', u'prompt', u'health', u'concern']
[u'pacif', u'highway', u'plan', u'ahead']
[u'pakistan', u'adopt', u'death', u'penalti', u'honour', u'kill']
[u'parent', u'urg', u'monitor', u'children', u'swim']
[u'promis', u'sharehold', u'strong', u'growth']
[u'petit', u'seek', u'return', u'free', u'park']
[u'pink', u'add', u'colour', u'french', u'media', u'scene']
[u'plan', u'afoot', u'time', u'aussi', u'indi', u'driver']
[u'polic', u'suspect', u'murder', u'victim', u'vehicl']
[u'polic', u'investig', u'maidston', u'bodi']
[u'polic', u'ramadan', u'violenc', u'suspect']
[u'polic', u'recaptur', u'berrima', u'escap']
[u'polic', u'seek', u'help', u'miss', u'babi', u'case']
[u'polic', u'urg', u'club', u'street', u'crime']
[u'posit', u'result', u'vaccin']
[u'power', u'sydney']
[u'power', u'restor', u'sydney']
[u'privat', u'surgeri', u'centr', u'prompt', u'matern']
[u'problem', u'aris', u'polic', u'station', u'plan']
[u'program', u'target', u'aborigin', u'domest', u'violenc']
[u'public', u'open', u'space', u'plan']
[u'rag', u'bull', u'remov', u'communiti']
[u'rann', u'renew', u'threat', u'boycott', u'jam', u'hardi']
[u'record', u'break', u'fleme', u'put', u'kiwi', u'command']
[u'rise', u'diesel', u'cost', u'fuel', u'uncertainti', u'fisher']
[u'rise', u'fuel', u'cost', u'impact', u'busi']
[u'rise', u'petrol', u'cost', u'fuel', u'tourism', u'fear']
[u'roadwork', u'chang', u'park', u'boundari']
[u'rogerson', u'savabeel', u'push']
[u'rosedal', u'blaze', u'threaten', u'home']
[u'rucker', u'award', u'player', u'week']
[u'rural', u'lesse', u'welcom', u'draft', u'bushfir', u'plan']
[u'ruud', u'plead', u'guilti', u'attack']
[u'sale', u'soldier', u'injur', u'baghdad', u'blast']
[u'move', u'toughen', u'child', u'porn', u'law']
[u'scheme', u'aim', u'boost', u'communiti', u'safeti']
[u'scotland', u'boss', u'decid', u'vogt', u'futur']
[u'serial', u'speedster', u'get', u'jail', u'term', u'fatal', u'accid']
[u'shes', u'archi', u'face', u'fit', u'deadlin']
[u'shire', u'aim', u'retain', u'ward']
[u'shire', u'name', u'hospit', u'concern']
[u'shire', u'plan', u'long', u'term', u'energi', u'save']
[u'shoalhaven', u'water', u'ban', u'remain']
[u'sister', u'tell', u'fear', u'injur', u'soldier']
[u'korea', u'alert', u'possibl', u'border', u'breach']
[u'south', u'east', u'rain', u'welcom', u'need']
[u'south', u'korea', u'lower', u'infiltr', u'alert']
[u'statist', u'highlight', u'indigen', u'road', u'death']
[u'studi', u'find', u'school', u'spic', u'span']
[u'swan', u'river', u'open', u'massiv', u'sewag', u'spill']
[u'sydney', u'driver', u'arrest', u'twice', u'hit']
[u'sydney', u'hospit', u'face', u'surgeri', u'chang']
[u'talk', u'bundaberg', u'train', u'facil']
[u'tasmanian', u'green', u'introduc', u'chemic', u'trespass']
[u'fast', u'track', u'pulp']
[u'taxi', u'council', u'flag', u'price', u'rise']
[u'drink', u'help', u'alzheim', u'fight']
[u'test', u'reveal', u'seiz', u'tablet', u'dont', u'contain', u'dead']
[u'thousand', u'turn', u'flemington', u'breakfast']
[u'thwait', u'defend', u'suppress', u'princip']
[u'trap', u'catch', u'cranki', u'croc']
[u'tribut', u'album', u'launch', u'burma']
[u'charg', u'nimbin', u'drug', u'bust']
[u'unregist', u'truck', u'involv', u'fatal', u'mooney', u'mooney']
[u'appli', u'geneva', u'except', u'iraq']
[u'beef', u'expect', u'bring', u'price', u'volatil']
[u'claim', u'zarqawi', u'alli', u'kill', u'fallujah', u'strike']
[u'face', u'fight', u'japanes', u'beef']
[u'tighten', u'fallujah']
[u'charg', u'probe', u'trafford', u'controversi']
[u'employ', u'seek', u'lower', u'worker', u'comp', u'premium']
[u'wall', u'street', u'stock', u'slight']
[u'water', u'author', u'hold', u'merger', u'talk']
[u'webber', u'champion', u'wait', u'say', u'jaguar', u'boss']
[u'white', u'hous', u'play', u'lose', u'iraq', u'explos']
[u'william', u'sister', u'shoot', u'gangster', u'defend', u'crack']
[u'woman', u'serv', u'home', u'detent', u'bank', u'theft']
[u'woohoo', u'homer', u'simpson', u'win', u'presidenti', u'race']
[u'yacht', u'crash', u'near', u'sydney', u'opera', u'hous']
[u'yarrawonga', u'run', u'hour', u'polic', u'station']
[u'yudhoyono', u'convinc', u'exist']
[u'gabor', u'sonni', u'chiba', u'join', u'movi', u'hall', u'fame']
[u'year', u'bega', u'resid', u'die']
[u'elect', u'result', u'declar', u'friday']
[u'action', u'group', u'want', u'residenti', u'plan', u'shelv']
[u'refus', u'swan', u'recount']
[u'age', u'care', u'fund', u'question', u'rais']
[u'agreement', u'reach', u'island', u'nativ', u'titl']
[u'akhtar', u'doubt', u'second', u'test', u'lanka']
[u'frontbench', u'vers', u'local', u'issu', u'say']
[u'qaeda', u'prais', u'zarqawi', u'allegi', u'pledg']
[u'ambul', u'criticis', u'respons', u'indigen']
[u'amnesti', u'condemn', u'tortur', u'tactic']
[u'aussi', u'quartet', u'india', u'foot']
[u'australia', u'boss', u'dismiss', u'breakaway', u'group']
[u'australia', u'bowler', u'terroris', u'india']
[u'news', u'boss', u'slam', u'media', u'bias']
[u'bendigo', u'count', u'complet']
[u'propos', u'jail', u'neglig', u'employ']
[u'blueprint', u'growth', u'releas']
[u'british', u'radio', u'john', u'peel', u'die']
[u'british', u'tourist', u'dead', u'outback']
[u'buderus', u'warn', u'roo', u'watch', u'mcguir']
[u'build', u'applic', u'rise']
[u'bush', u'accus', u'hide', u'iraq', u'news']
[u'independ', u'probe', u'campus']
[u'nambucca', u'valley', u'natur', u'disast']
[u'chief', u'minist', u'urg', u'inquest', u'delay']
[u'child', u'surviv', u'day', u'quak', u'rubbl']
[u'child', u'worker', u'screen', u'law', u'pass', u'lower', u'hous']
[u'china', u'issu', u'sar', u'caution']
[u'chines', u'polic', u'foil', u'korean', u'asylum']
[u'church', u'gag', u'abus', u'victim']
[u'citrus', u'canker', u'forc', u'farmer', u'sell']
[u'communiti', u'servic', u'child', u'porn', u'owner']
[u'concern', u'air', u'natur', u'resourc', u'fund']
[u'concern', u'remain', u'propos', u'surfer', u'tower']
[u'confer', u'examin', u'region', u'plan']
[u'cooma', u'host', u'rural', u'counsellor']
[u'costello', u'reject', u'budget', u'figur', u'delay', u'claim']
[u'council', u'consid', u'committe', u'merger']
[u'council', u'play', u'park', u'rezon', u'concern']
[u'council', u'reject', u'seven', u'trade', u'plan']
[u'council', u'crack', u'illeg', u'worker', u'camp']
[u'darwin', u'jail', u'drug', u'make']
[u'long', u'search', u'fail', u'miss', u'seaman']
[u'deadlock', u'threaten', u'timor', u'deal']
[u'dicker', u'rival', u'hawk', u'challeng', u'head']
[u'doctor', u'group', u'air', u'obstetr', u'servic', u'fear']
[u'doubl', u'breakthrough', u'india', u'nagpur']
[u'dravid', u'india', u'continu', u'slide']
[u'driver', u'slam', u'citylink', u'charg', u'drop']
[u'drug', u'dealer', u'deduct']
[u'drunk', u'defenc', u'wipe']
[u'east', u'coast', u'storm', u'busi']
[u'elvstroem', u'delzao', u'melbourn']
[u'elvstroem', u'chase', u'caulfield', u'melbourn', u'doubl']
[u'email', u'fail', u'dent', u'aust', u'post', u'profit']
[u'energi', u'centr', u'make', u'solar', u'resourc']
[u'england', u'recal', u'world', u'winner']
[u'errat', u'latham', u'caus', u'labor', u'loss', u'liber']
[u'esso', u'worker', u'step', u'roster', u'demand']
[u'presid', u'elect', u'withdraw', u'team']
[u'hunter', u'policeman', u'braveri', u'recognis']
[u'farmer', u'group', u'support', u'breakaway', u'firefight']
[u'farmer', u'prayer', u'rain', u'answer']
[u'feder', u'critic', u'push', u'recruit', u'oversea']
[u'feder', u'face', u'fit', u'race']
[u'feedlot', u'cattl', u'sale', u'increas']
[u'period', u'bring', u'forward']
[u'fleme', u'smack', u'doubl', u'kiwi', u'declar']
[u'flemington', u'unsaf', u'race', u'say']
[u'florida', u'revisit', u'grappl', u'elector']
[u'jockey', u'award', u'damag', u'race', u'fall']
[u'public', u'servant', u'appear', u'court']
[u'frustrat', u'drive', u'mcclure']
[u'gallop', u'announc', u'cut']
[u'plant', u'busi']
[u'gaza', u'withdraw', u'road']
[u'money', u'take', u'wizard', u'home', u'loan']
[u'gibb', u'unavail', u'india', u'tour']
[u'goat', u'produc', u'highlight', u'export', u'hurdl']
[u'godolphin', u'chase', u'elus', u'melbourn']
[u'gold', u'miner', u'play', u'pollut', u'fear']
[u'govt', u'make', u'effort', u'assist', u'strand']
[u'govt', u'quiz', u'lose', u'birth', u'unit']
[u'govt', u'role', u'inquest', u'delay', u'question']
[u'govt', u'urg', u'declar', u'muswellbrook', u'natur', u'disast']
[u'graham', u'leav', u'cat', u'career']
[u'grain', u'receiv', u'depot', u'boost', u'busi']
[u'green', u'govt', u'loggerhead', u'pulp']
[u'griev', u'relat', u'besieg', u'thai', u'armi', u'base']
[u'heavi', u'rain', u'caus', u'power', u'commut', u'delay']
[u'hewitt', u'recov', u'break', u'say', u'team']
[u'high', u'court', u'reject', u'peopl', u'smuggler', u'appeal']
[u'india', u'earli', u'troubl', u'chase']
[u'india', u'troubl']
[u'india', u'test', u'nuclear', u'capabl', u'missil']
[u'insur', u'stock', u'lead', u'market', u'ralli']
[u'intercept', u'drill', u'wind']
[u'investig', u'promis', u'thai', u'protest', u'death']
[u'investor', u'warn', u'awar', u'fraudster']
[u'iraq', u'deni', u'explos', u'disappear']
[u'iraq', u'rous', u'terrorist', u'asio', u'say']
[u'israel', u'approv', u'gaza', u'pullout']
[u'jackson', u'undergo', u'ankl', u'surgeri']
[u'jail', u'term', u'attack', u'appal', u'case']
[u'jam', u'hardi', u'say', u'compens', u'agreement', u'close']
[u'japan', u'fail', u'budg', u'hostag', u'threat']
[u'japan', u'televis', u'appeal', u'hostag', u'releas']
[u'jockey', u'get', u'licenc', u'suspend', u'northam', u'race']
[u'judg', u'deni', u'bias', u'onetel', u'case']
[u'katherin', u'council', u'ban', u'plastic', u'bag']
[u'labor', u'aim', u'cours']
[u'labor', u'polici', u'scare', u'pulp', u'backer']
[u'labor', u'agenda', u'econom', u'polici']
[u'latham', u'begin', u'promot', u'team']
[u'law', u'chang', u'expand', u'paedophil', u'regist']
[u'law', u'clear', u'mine', u'explor']
[u'lebanon', u'adopt', u'syrian', u'govern']
[u'legal', u'servic', u'critic', u'forens', u'delay']
[u'lehmann', u'return', u'home', u'treatment']
[u'limit', u'chang', u'benefit', u'asbesto', u'victim']
[u'lobster', u'fishermen', u'welcom', u'season', u'extens']
[u'local', u'govern', u'rail', u'servic', u'upgrad']
[u'local', u'govt', u'firefight', u'plan']
[u'long', u'lose', u'picasso', u'arrest']
[u'lord', u'mayor', u'want', u'block', u'futur', u'address']
[u'malign', u'martyn', u'rise', u'challeng']
[u'rescu', u'marin', u'accid']
[u'meet', u'air', u'mine', u'shift', u'worri']
[u'meet', u'support', u'council', u'confid', u'motion']
[u'meet', u'address', u'water', u'suppli', u'myth']
[u'melbourn', u'mop', u'year', u'rain']
[u'melbourn', u'motorist', u'warn', u'windi', u'weather']
[u'memori', u'program', u'boost', u'happi', u'studi', u'find']
[u'mental', u'health', u'group', u'happi', u'clubhous', u'approv']
[u'milosev', u'lawyer', u'leav', u'case']
[u'mine', u'industri', u'get', u'guidelin', u'sustain']
[u'miss', u'explos', u'prove', u'bush', u'incompet', u'kerri']
[u'motorcycl', u'bomber', u'kill', u'iraq', u'convoy', u'attack']
[u'mullumbimbi', u'water', u'ban', u'eas']
[u'nasa', u'cassini', u'close', u'encount', u'titan']
[u'chang', u'water', u'ban']
[u'nrma', u'stronger', u'financi', u'grind', u'sharehold', u'tell']
[u'price', u'inflat', u'costello']
[u'opposit', u'point', u'report', u'competit', u'reform']
[u'panther', u'inquiri', u'tell', u'contract', u'confus']
[u'petrol', u'price', u'expect', u'weigh', u'inflat']
[u'pilbara', u'benefit', u'chines', u'growth']
[u'pilot', u'error', u'blame', u'crash']
[u'pipelin', u'sale', u'secur', u'electr', u'suppli']
[u'plan', u'afoot', u'plastic', u'free', u'alic', u'spring']
[u'polic', u'boost', u'plan', u'warburton']
[u'polic', u'chase', u'earn', u'driver', u'suspend', u'jail', u'term']
[u'polic', u'chief', u'charg', u'beslan', u'sieg']
[u'policewoman', u'play', u'braveri', u'award']
[u'prize', u'money', u'affect', u'australasian', u'tour', u'say']
[u'product', u'commiss', u'call', u'health', u'review']
[u'product', u'commiss', u'urg', u'telstra', u'review']
[u'public', u'warn', u'threat']
[u'putin', u'signatur', u'bring', u'kyoto', u'protocol', u'forc']
[u'urban', u'plan', u'blueprint', u'draw', u'mix', u'respons']
[u'radcliff', u'look', u'forget', u'athen', u'heartbreak']
[u'read', u'prove', u'tasmanian', u'student', u'strong', u'point']
[u'redback', u'unchang', u'line', u'bushrang']
[u'away', u'world', u'seri', u'titl']
[u'report', u'find', u'financ', u'stretch']
[u'report', u'support', u'daintre', u'develop', u'mayor']
[u'rockhampton', u'tri', u'attract', u'coal', u'busi']
[u'santo', u'profit', u'increas', u'product']
[u'program', u'provid', u'choic', u'termin']
[u'satellit', u'help', u'scientist', u'pinpoint', u'algal', u'bloom']
[u'school', u'get', u'clear', u'reservoir']
[u'search', u'begin', u'miss', u'torr', u'strait']
[u'search', u'underway', u'miss', u'british', u'tourist']
[u'senat', u'control', u'hing', u'prefer']
[u'senior', u'hend', u'head', u'field']
[u'senior', u'hend', u'head', u'field']
[u'sharon', u'reject', u'pullout', u'referendum', u'call']
[u'shes', u'archi', u'elvstroem']
[u'shes', u'shes', u'archi']
[u'sinclair', u'stay', u'kangaroo']
[u'singapor', u'defenc', u'minist', u'visit', u'rockhampton']
[u'south', u'korea', u'call', u'search']
[u'storm', u'lash', u'southern', u'queensland']
[u'strong', u'wind', u'caus', u'havoc']
[u'strong', u'wind', u'power', u'suppli']
[u'studi', u'consid', u'kalgoorli']
[u'sullivan', u'name', u'paralympian', u'year']
[u'surfer', u'get', u'tough', u'butt']
[u'survey', u'reveal', u'child', u'health', u'improv']
[u'tailor', u'risk', u'fish', u'report', u'warn']
[u'tare', u'council', u'seek', u'flood', u'damag', u'fund']
[u'temperatur', u'rise', u'western']
[u'test', u'time', u'ahead', u'princip']
[u'thailand', u'say', u'muslim', u'die', u'armi', u'custodi']
[u'thing', u'wors']
[u'timber', u'group', u'welcom', u'veget', u'manag', u'code']
[u'timor', u'east', u'timores', u'agenda']
[u'toddler', u'dead', u'bath']
[u'honour', u'whitsunday', u'cours']
[u'townsvill', u'honour', u'olympian']
[u'tuna', u'farm', u'trial', u'delay']
[u'ukrain', u'journalist', u'hunger', u'strike']
[u'union', u'criticis', u'garden', u'australia']
[u'union', u'threaten', u'zimbabw', u'blockad', u'deport']
[u'student', u'warn', u'fund', u'risk']
[u'ask', u'clarifi', u'taiwan', u'polici']
[u'introduc', u'passport', u'restrict']
[u'reprimand', u'general', u'christian', u'battl', u'remark']
[u'nistelrooy', u'accept', u'match']
[u'veget', u'drug', u'help', u'inflat']
[u'govt', u'reject', u'road', u'fund', u'critic']
[u'villa', u'suffer', u'upset']
[u'busi', u'leader', u'labor', u'appoint']
[u'wait', u'final', u'senat', u'seat']
[u'wall', u'generat', u'market', u'record']
[u'warn', u'brace', u'storm']
[u'wast', u'water', u'studi', u'chees', u'compani']
[u'water', u'ban', u'remain', u'despit', u'downpour']
[u'water', u'merger', u'idea', u'spark', u'resign']
[u'wed', u'come', u'clean', u'invit', u'sale']
[u'wenger', u'deni', u'knowledg', u'food', u'fight']
[u'wenger', u'extend', u'arsenal', u'contract']
[u'west', u'brom', u'approach', u'robson', u'manag']
[u'west', u'brom', u'manag', u'sack', u'refus', u'sign']
[u'wild', u'weather', u'hit', u'south', u'east']
[u'wind', u'damag', u'keep', u'busi']
[u'wind', u'farm', u'plan', u'woodlawn']
[u'wine', u'industri', u'form', u'peak', u'bodi']
[u'wound', u'soldier', u'return', u'home']
[u'question', u'minist', u'reef', u'claim']
[u'yudhoyono', u'order', u'ratio', u'hike']
[u'zarqawi', u'group', u'threaten', u'japanes', u'hostag', u'iraq']
[u'confirm', u'dead', u'russian', u'blast']
[u'crew', u'dead', u'aboard', u'drift', u'trawler']
[u'miner', u'trap', u'russian', u'blast']
[u'inject', u'seek', u'industri']
[u'acn', u'drug', u'contribut', u'teen', u'depress']
[u'technolog', u'help', u'remot', u'emerg', u'respons']
[u'adelaid', u'host', u'amateur', u'championship']
[u'algeria', u'nab', u'milit', u'want', u'kidnap']
[u'alic', u'spring', u'jail', u'child', u'offenc']
[u'amcor', u'fin', u'worker', u'death']
[u'arafat', u'critic', u'condit']
[u'arafat', u'sick']
[u'armi', u'muslim', u'claim', u'kabul', u'kidnap']
[u'arson', u'target', u'store', u'blaze']
[u'aussi', u'look', u'earli', u'wicket']
[u'aussi', u'cusp', u'histori']
[u'aussi', u'test']
[u'author', u'defend', u'kimberley', u'nurs', u'withdraw']
[u'autopsi', u'carri', u'british', u'tourist']
[u'ballestero', u'assault', u'investig']
[u'bashir', u'plead', u'innoc', u'terror', u'charg']
[u'bashir', u'trial', u'open', u'jakarta']
[u'bass', u'strait', u'worker', u'threaten', u'strike']
[u'bendigo', u'gear', u'swap', u'meet']
[u'bank', u'pay', u'heritag', u'boss', u'say']
[u'hail', u'hit', u'taroom']
[u'bjorkman', u'battl', u'past', u'arthur']
[u'bomb', u'kill', u'southern', u'thailand']
[u'bowden', u'stay', u'dog']
[u'brack', u'impos', u'height', u'restrict']
[u'brazilian', u'player', u'die', u'collaps', u'pitch']
[u'britain', u'consid', u'forc', u'marriag']
[u'buderim', u'babi', u'keen', u'enter', u'world']
[u'driver', u'refus', u'fare', u'disput']
[u'bush', u'dismiss', u'critic', u'miss', u'explos']
[u'bush', u'websit', u'inaccess', u'australia']
[u'extra', u'suprem', u'court', u'judg']
[u'cambodia', u'begin', u'swear', u'king']
[u'camel', u'food', u'bait', u'fish', u'hook']
[u'care', u'urg', u'locust', u'control']
[u'carolin', u'kennedi', u'tell', u'bush', u'stop', u'invok']
[u'cat', u'felin', u'stress', u'studi', u'say']
[u'cat', u'disappoint', u'graham', u'take', u'punt']
[u'chief', u'minist', u'open', u'gillen', u'club']
[u'china', u'rate', u'rise', u'year']
[u'clean', u'begin', u'storm']
[u'wad', u'process', u'debat']
[u'complaint', u'icac', u'rise']
[u'coron', u'shock', u'doctor', u'bedsid', u'bicker']
[u'council', u'renew', u'freehold', u'land', u'worri']
[u'council', u'seek', u'wind', u'farm', u'environ', u'probe']
[u'council', u'want', u'dental', u'servic', u'trial', u'asap']
[u'courtney', u'love', u'pinch', u'woman', u'court', u'tell']
[u'crash', u'survivor', u'kill', u'second', u'accid']
[u'currumbin', u'tallebudgera', u'creek', u'healthi', u'report']
[u'death', u'toll', u'pass', u'china', u'mine', u'disast']
[u'death', u'toll', u'rise', u'russian', u'blast']
[u'desper', u'seek', u'singl']
[u'develop', u'play', u'plan', u'blueprint', u'concern']
[u'doctor', u'consid', u'hospit', u'arafat']
[u'document', u'cast', u'doubt', u'miss']
[u'doubt', u'rais', u'lighthous', u'tourism']
[u'egan', u'defend', u'util', u'fund']
[u'england', u'clear', u'tour', u'zimbabw']
[u'investig', u'sugar', u'syrup', u'spill']
[u'turmoil', u'execut', u'team', u'withdraw']
[u'expert', u'warn', u'grow', u'speed']
[u'explor', u'group', u'welcom', u'law']
[u'investig', u'violenc']
[u'fleme', u'doubl', u'put', u'victori', u'path']
[u'flight', u'attend', u'rais', u'cosmic', u'radiat', u'fear']
[u'fli', u'health']
[u'forestri', u'manag', u'eucalypt', u'woe']
[u'judg', u'head', u'icac']
[u'foskey', u'welcom', u'cross', u'bench', u'role']
[u'fund', u'support', u'accommod']
[u'ganguli', u'doubt', u'fourth', u'test']
[u'germani', u'play', u'world', u'open']
[u'gillespi', u'katich', u'continu', u'australia', u'domin']
[u'global', u'premium', u'cask', u'wine']
[u'govt', u'appoint', u'anti', u'discrimin', u'commission']
[u'govt', u'clear', u'kidney', u'transplant']
[u'govt', u'hous', u'worker', u'comp', u'claim', u'prompt', u'question']
[u'govt', u'outlin', u'health', u'advisori', u'council', u'plan']
[u'govt', u'pledg', u'ring', u'road']
[u'govt', u'stand', u'nurs', u'home', u'decis']
[u'govt', u'drought', u'affect', u'farmer']
[u'govt', u'scrutini', u'develop', u'roadsid']
[u'govt', u'urg', u'alter', u'workcov', u'arrang']
[u'govt', u'work', u'hour', u'guidelin']
[u'greec', u'attack', u'asylum', u'seeker', u'treatment']
[u'greek', u'sprinter', u'kenteri', u'switch', u'coach']
[u'green', u'accus', u'govt', u'collus', u'pulp']
[u'green', u'tourism', u'group', u'meet']
[u'group', u'form', u'matern', u'action', u'group']
[u'group', u'consid', u'citrus', u'canker', u'plan']
[u'group', u'warn', u'petrol', u'sniff', u'danger']
[u'growth', u'spark', u'need', u'sport', u'land']
[u'gunn', u'studi', u'back', u'pulp']
[u'hackett', u'join', u'deleg', u'beij']
[u'hawk', u'razorback', u'toppl', u'taipan']
[u'health', u'servic', u'advisori', u'council']
[u'high', u'school', u'placement', u'test', u'bring', u'forward']
[u'high', u'wind', u'caus', u'havoc', u'south', u'east']
[u'hockeyroo', u'lose', u'major', u'sponsor']
[u'hospit', u'boost', u'medic', u'access']
[u'hous', u'loan', u'underpin', u'credit', u'union', u'build', u'societi']
[u'howard', u'govt', u'win', u'senat', u'major']
[u'husband', u'guilti', u'wife', u'death']
[u'impact', u'statement', u'step', u'gunn', u'pulp']
[u'india', u'aussi', u'stranglehold']
[u'indigen', u'group', u'plan', u'roebourn', u'cultur', u'centr']
[u'injur', u'shoaib', u'miss', u'lanka', u'test']
[u'injuri', u'forc', u'aussi', u'bear', u'mower', u'retir']
[u'iraqi', u'doctor', u'find', u'life', u'famili', u'grenfel']
[u'iraqi', u'news', u'anchor', u'kill', u'drive', u'attack']
[u'jackson', u'undergo', u'ankl', u'reconstruct']
[u'japan', u'enlist', u'intern', u'help', u'save', u'hostag']
[u'karzai', u'await', u'offici', u'declar', u'landslid']
[u'katich', u'miss', u'aussi']
[u'katich', u'push', u'australia', u'lead']
[u'faith', u'telstra', u'chief', u'tell', u'investor']
[u'kimmorley', u'star', u'anzac', u'victori']
[u'leagu', u'match', u'accord', u'script']
[u'learn', u'grind', u'propos', u'druitt', u'school']
[u'local', u'govt', u'law', u'stay', u'despit', u'shire', u'presid']
[u'mackay', u'crack', u'water']
[u'jail', u'cinema', u'murder']
[u'threaten', u'controversi', u'elect']
[u'market', u'hit', u'high']
[u'meatwork', u'expans', u'boost', u'job']
[u'media', u'report', u'surfac', u'leed', u'takeov']
[u'melbourn', u'council', u'test', u'height', u'restrict']
[u'mental', u'health', u'chief', u'killer', u'jail']
[u'merced', u'get', u'board', u'gold', u'coast', u'firm']
[u'miner', u'offer', u'spill', u'clean', u'assur']
[u'minist', u'reject', u'fish', u'studi', u'claim']
[u'minist', u'urg', u'patienc', u'polic', u'station', u'start']
[u'miss', u'teen', u'parent', u'head', u'north']
[u'miss', u'teen', u'parent', u'urg', u'airport', u'campaign']
[u'mix', u'respons', u'develop', u'plan']
[u'air', u'poultri', u'litter', u'power', u'station', u'concern']
[u'question', u'highway', u'toll', u'idea']
[u'seek', u'support', u'transport', u'plan']
[u'nation', u'food', u'reject', u'takeov']
[u'nation', u'park', u'remain', u'identifi']
[u'newborn', u'babi', u'drop', u'relat']
[u'law', u'bolster', u'polic', u'integr', u'commiss']
[u'sign', u'recognis', u'kalkadoon', u'peopl']
[u'risk', u'graham']
[u'case']
[u'consid', u'law', u'pursu', u'jam', u'hardi', u'compo']
[u'nurs', u'home', u'resid', u'tell', u'pack']
[u'firm', u'target', u'nation', u'food', u'takeov']
[u'price', u'plung', u'wild', u'trade']
[u'opposit', u'queri', u'rise', u'govt', u'hous', u'cost']
[u'opposit', u'welcom', u'vail', u'free', u'trade', u'statement']
[u'outdat', u'raptor', u'go', u'servic']
[u'outgo', u'chair', u'tune', u'attack', u'govt']
[u'parent', u'warn', u'child', u'porn', u'threat']
[u'plan', u'propos', u'state', u'wide', u'infrastructur', u'plan']
[u'plan', u'afoot', u'boost', u'ballina', u'boat']
[u'plung', u'price', u'good', u'news', u'inflat']
[u'poker', u'machin', u'number', u'shock', u'confer', u'hear']
[u'poker', u'machin', u'number', u'long', u'debat']
[u'polic', u'defend', u'underworld', u'murder', u'reward']
[u'polic', u'investig', u'melbourn', u'death']
[u'polic', u'issu', u'teen', u'flasher', u'warn']
[u'polic', u'british', u'tourist', u'autopsi', u'forward']
[u'polic', u'suspect', u'serial', u'offend', u'sydney']
[u'polic', u'shed', u'light', u'bone', u'discoveri']
[u'prohibit', u'notic', u'remov', u'arthur', u'seat']
[u'public', u'nurs', u'home', u'design']
[u'public', u'urg', u'water', u'wise']
[u'public', u'urg', u'report', u'chain', u'letter']
[u'consid', u'citrus', u'tree', u'remov', u'plan']
[u'question', u'rais', u'rail', u'servic']
[u'question', u'rais', u'plan', u'malle', u'wast', u'site']
[u'rain', u'offer', u'boost', u'water', u'storag']
[u'rain', u'prompt', u'plung', u'european', u'hors']
[u'rain', u'prompt', u'plung', u'european', u'raider']
[u'razzaq', u'haul', u'inspir', u'pakistan', u'reviv']
[u'world', u'seri', u'curs']
[u'wine', u'protect', u'lung', u'cancer', u'studi']
[u'refineri', u'emiss', u'possibl', u'caus', u'chemic']
[u'report', u'highlight', u'murrurundi', u'council', u'mismanag']
[u'report', u'reveal', u'train', u'fall', u'death', u'tragic', u'accid']
[u'resid', u'protest', u'mindil', u'beach', u'develop']
[u'revis', u'tour', u'offer', u'armstrong', u'rival', u'glimmer']
[u'reward', u'offer', u'murder', u'inform', u'wife']
[u'rodent', u'caus', u'china', u'plagu', u'outbreak']
[u'runaway', u'truck', u'crash', u'hous']
[u'smoke', u'ban', u'final', u'approv']
[u'scheme', u'aim', u'indigen', u'youth', u'best', u'start']
[u'schwarzenegg', u'find', u'happi', u'medium', u'bush', u'campaign']
[u'search', u'miss', u'caravan', u'park']
[u'senat', u'prompt', u'warn', u'power']
[u'senat', u'salut', u'unsuccess', u'elect', u'rival']
[u'plan', u'increas', u'wide', u'develop']
[u'serena', u'lose', u'qualifi', u'linz']
[u'shell', u'sorri', u'handl', u'servic', u'station', u'closur']
[u'shire', u'share', u'train', u'fund']
[u'singapor', u'hop', u'renew', u'shoalwat', u'contract']
[u'solarium', u'accus', u'disregard', u'skin', u'cancer']
[u'southcorp', u'name', u'qanta', u'chairman', u'board']
[u'stanhop', u'challeng', u'role']
[u'stanhop', u'consid', u'frontbench', u'team']
[u'african', u'rugbi', u'chief', u'slam', u'media', u'racist']
[u'african', u'rugbi', u'chief', u'slam', u'racist', u'media']
[u'storm', u'batter', u'victoria']
[u'storm', u'spark', u'muswellbrook', u'disast', u'declar']
[u'student', u'evict', u'box']
[u'studi', u'consid', u'hunter', u'age', u'process']
[u'suicid', u'gene', u'carp', u'infest']
[u'support', u'survey', u'extend', u'trade']
[u'swimmer', u'warn', u'algal', u'bloom']
[u'sydney', u'market', u'accus', u'cherri', u'pick']
[u'tasmania', u'record', u'whale', u'strand']
[u'teen', u'shoot', u'famili', u'sudden', u'idea', u'kill']
[u'telstra', u'chairman', u'dismiss', u'resign', u'call']
[u'telstra', u'chairman', u'face', u'hardi', u'heat']
[u'tenni', u'tour', u'roll', u'safe', u'supplement']
[u'don', u'home', u'expect', u'heritag', u'list']
[u'don', u'home', u'heritag', u'list']
[u'elect', u'worker', u'kidnap', u'afghanistan']
[u'kill', u'strike', u'fallujah']
[u'unknown', u'kidnap', u'group', u'hold', u'polish', u'woman']
[u'demand', u'thai', u'probe', u'protest', u'death']
[u'vail', u'offici', u'secur', u'lyne']
[u'vcat', u'green', u'light', u'oval', u'upgrad', u'stage']
[u'vettori', u'push', u'bangladesh', u'defeat']
[u'waratah', u'sweep', u'argentina', u'tour']
[u'slash', u'stamp', u'duti']
[u'water', u'commiss', u'heighten', u'pipelin', u'hop']
[u'watson', u'home', u'match', u'practic']
[u'declin', u'takeov', u'offer']
[u'woodgat', u'sewerag', u'august']
[u'woodsid', u'strike', u'suppli', u'deal']
[u'suicid', u'attack', u'train', u'target', u'russia']
[u'assembl', u'member', u'offici', u'declar']
[u'govt', u'urg', u'bushfir', u'report', u'find']
[u'honour', u'firefight']
[u'reject', u'critic', u'industri', u'manslaught']
[u'adelaid', u'internet', u'compani', u'tip', u'possibl', u'merger']
[u'qaeda', u'threaten', u'immin', u'attack']
[u'ambul', u'wider', u'impact']
[u'anthoni', u'reject', u'state', u'leadership', u'claim']
[u'arafat', u'head', u'franc', u'treatment']
[u'arafat', u'temporarili', u'relinquish', u'power']
[u'armstrong', u'keep', u'cycl', u'world', u'guess']
[u'asian', u'bodi', u'iraq']
[u'aussi', u'anderson', u'happi', u'tour', u'franc']
[u'aussi', u'pilkadari', u'sanya', u'open', u'lead']
[u'aussi', u'cusp', u'histori']
[u'aussi', u'india', u'mammoth', u'chase']
[u'australia', u'clinch', u'histor', u'seri']
[u'australian', u'lose', u'faith', u'local', u'film']
[u'austrian', u'firm', u'consid', u'narrandera', u'diesel', u'fuel']
[u'award', u'recognis', u'outback', u'tourism']
[u'bank', u'stock', u'lead', u'australian', u'market', u'higher']
[u'base', u'jumper', u'die', u'cliff', u'fall']
[u'beach', u'council', u'clear']
[u'beach', u'petroleum', u'post', u'quarter', u'revenu']
[u'beatti', u'urg', u'lobbi', u'harder', u'senat']
[u'bendigo', u'take', u'shoot', u'liber', u'candid']
[u'blackout', u'taroom']
[u'britain', u'polic', u'chief', u'make', u'anti', u'terror']
[u'british', u'tourist', u'autopsi', u'inconclus']
[u'british', u'troop', u'badland', u'posit', u'iraq']
[u'bullet', u'tiger', u'breaker', u'king', u'triumphant']
[u'bush', u'say', u'kerri', u'wrong', u'white', u'hous']
[u'busi', u'forum', u'focus', u'skill', u'worker', u'shortag']
[u'highway', u'patrol', u'number', u'boost']
[u'caloundra', u'council', u'recognis', u'financi', u'skill']
[u'candid', u'confid', u'websit', u'profil', u'remov']
[u'caus', u'chemic', u'leak', u'unknown']
[u'review', u'handl', u'store', u'blaze']
[u'chamber', u'see', u'posit', u'stamp', u'duti']
[u'chariti', u'worker', u'killer', u'guilti']
[u'chelsea', u'sack', u'disgrac', u'mutu']
[u'chemic', u'leak', u'affect', u'melbourn', u'worker']
[u'chequ', u'mail', u'year', u'late']
[u'china', u'woe', u'pressur', u'goat', u'produc']
[u'chines', u'rat', u'rise', u'sap', u'crude', u'price']
[u'citi', u'harm', u'children']
[u'conman', u'promis', u'money', u'fall', u'like', u'rain']
[u'coonan', u'aim', u'seal', u'telstra', u'deal']
[u'cosgrov', u'open', u'redback']
[u'costello', u'discount', u'nation', u'claim', u'balanc']
[u'costello', u'rule', u'fish', u'chang']
[u'council', u'leav', u'tidi', u'shire', u'financi', u'woe']
[u'covert', u'oper', u'rise']
[u'crisi', u'erupt', u'romanian', u'newspap', u'fire', u'boss']
[u'david', u'hasselhoff', u'sentenc', u'drink', u'drive']
[u'deal', u'aim', u'encourag', u'ghan', u'season', u'travel']
[u'derbi', u'tip']
[u'dibbler', u'home', u'nation', u'park']
[u'doubt', u'rais', u'develop', u'halt']
[u'drug', u'dealer', u'return', u'prompt', u'review']
[u'drug', u'block', u'alzheim']
[u'emot', u'gilchrist', u'salut', u'aussi', u'spirit']
[u'european', u'newspap', u'endors', u'candid']
[u'explos', u'go', u'miss', u'saddam', u'fall', u'iaea']
[u'fairfax', u'flag', u'horizon', u'media', u'chang']
[u'fairytal', u'start', u'dreamwork', u'share']
[u'fear', u'air', u'fish', u'quota', u'plan']
[u'fear', u'mount', u'miss']
[u'film', u'villain', u'year', u'georg', u'bush']
[u'caus', u'major', u'damag', u'blackburn', u'offic', u'block']
[u'firm', u'extend', u'tinto', u'pilbara', u'rail']
[u'flore', u'skeleton', u'keep', u'desk', u'draw']
[u'florida', u'counti', u'play', u'miss', u'ballot', u'scare']
[u'fonterra', u'fail', u'ardmona', u'takeov']
[u'forrest', u'stand', u'region', u'effort']
[u'news', u'present', u'settl', u'harass', u'suit']
[u'franchis', u'convict', u'illeg', u'trade']
[u'fund', u'rethink', u'tourism', u'plan']
[u'goolagong', u'cawley', u'quit', u'captain']
[u'goulburn', u'rain', u'eas', u'water', u'restrict']
[u'govt', u'admit', u'mistak', u'handl', u'refineri', u'fear']
[u'govt', u'plan', u'test', u'latham']
[u'green', u'fourth', u'senat', u'seat']
[u'gregan', u'welcom', u'wallabi', u'depth']
[u'group', u'worri', u'terror', u'crackdown', u'boost', u'farmer']
[u'gunn', u'consid', u'time', u'frame', u'pulp', u'plan']
[u'health', u'advisori', u'committe', u'detail', u'emerg']
[u'health', u'centr', u'renal', u'dialysi', u'machin']
[u'heart', u'boss', u'link', u'leicest']
[u'highway', u'reopen', u'dead', u'crash']
[u'holiday', u'time', u'worri', u'horticultur', u'group']
[u'slam', u'dirti', u'dozen', u'chemic', u'list']
[u'hostag', u'fate', u'unknown', u'deadlin', u'pass']
[u'hous', u'plan', u'healthier', u'option', u'consult']
[u'india', u'slide', u'crush', u'defeat']
[u'inexperi', u'blame', u'road', u'death']
[u'injuri', u'forc', u'norman', u'retir']
[u'inmat', u'earn', u'duke', u'edinburgh', u'award']
[u'invest', u'bikki', u'ballarat']
[u'iraq', u'bodi', u'unlik', u'japanes', u'hostag']
[u'iraqi', u'civilian', u'death']
[u'plan', u'polit', u'stunt', u'labor']
[u'plan', u'polit', u'stunt', u'say', u'labor']
[u'jazz', u'festiv', u'right', u'note', u'wangaratta']
[u'kabul', u'kidnapp', u'warn', u'rescu', u'attempt']
[u'kerri', u'bask', u'seri']
[u'kerri', u'write', u'star', u'astrolog']
[u'kimmorley', u'ryan', u'name', u'great', u'britain', u'clash']
[u'king', u'sihamoni', u'reign', u'begin']
[u'king', u'skip', u'tiger']
[u'kiwi', u'crush', u'bangladesh', u'wrap', u'seri']
[u'labor', u'challeng']
[u'labor', u'rule', u'contest', u'dubbo']
[u'labor', u'scrap', u'forest', u'polici']
[u'labor', u'caus', u'immigr', u'stir']
[u'labor', u'take', u'senat', u'seat']
[u'land', u'refug', u'admit', u'arafat', u'hospit']
[u'leader', u'sign', u'constitut']
[u'legal', u'group', u'join', u'forc', u'fight', u'polic', u'power']
[u'light', u'rail', u'plan', u'certainti', u'mayor']
[u'luna', u'park', u'lie', u'tree', u'remov', u'say', u'mayor']
[u'die', u'ralli', u'accid']
[u'jail', u'brisban', u'high', u'rise', u'fraud']
[u'show', u'hand', u'flinder']
[u'maroochi', u'river', u'degrad', u'continu']
[u'master', u'chief', u'angri', u'wave', u'withdraw']
[u'mayor', u'air', u'child', u'safeti', u'resourc', u'concern']
[u'mildura', u'moot', u'secess', u'wast', u'dump', u'plan']
[u'miner', u'rais', u'fund', u'xstrata']
[u'minist', u'defend', u'role', u'despit', u'iraq', u'toll']
[u'minist', u'name', u'special', u'forc', u'head']
[u'minist', u'seek', u'support', u'safeti', u'rep']
[u'mongia', u'replac', u'hodg', u'cleari', u'sign']
[u'releas', u'chemic', u'spill']
[u'move', u'afoot', u'regent', u'theatr', u'heritag', u'list']
[u'criticis', u'parti', u'delay', u'properti', u'deal']
[u'muralitharan', u'return']
[u'murder', u'face', u'extra', u'prison', u'time']
[u'murder', u'investig', u'welcom', u'gassi', u'sentenc']
[u'museum', u'urg', u'learn', u'shear', u'outback', u'woe']
[u'nation', u'urg', u'ponder', u'rais', u'legal', u'drink']
[u'network', u'urg', u'pool', u'news', u'resourc']
[u'hous', u'sale', u'slump']
[u'newton', u'volatil', u'reunion', u'kangaroo']
[u'weed', u'pest', u'report', u'tamworth']
[u'communiti', u'centr', u'woe']
[u'rossi']
[u'north', u'tri', u'lure', u'bollywood']
[u'murder', u'get', u'releas', u'approv']
[u'omalley', u'touch', u'spanish', u'leader']
[u'pampl', u'fight', u'tour', u'championship', u'spot']
[u'parliament', u'pass', u'offend', u'report']
[u'perth', u'citi', u'council', u'move', u'protect', u'hospit']
[u'perth', u'super', u'receiv', u'fund', u'boost']
[u'pire', u'criticis', u'franc', u'coach', u'domenech']
[u'pitcairn', u'jail', u'assault']
[u'plan', u'boost', u'natur', u'reserv', u'protect']
[u'spell', u'agenda', u'state']
[u'polic', u'camera', u'trial', u'snap', u'hundr', u'car']
[u'polic', u'hunt', u'airli', u'beach', u'attack']
[u'polic', u'hunt', u'liquor', u'store', u'knife', u'bandit']
[u'polic', u'hunt', u'attempt', u'jack']
[u'polic', u'teen', u'road', u'crash', u'victim']
[u'polic', u'search', u'miss', u'tourist']
[u'power', u'station', u'help', u'fight', u'exot', u'diseas']
[u'power', u'station', u'rule', u'set', u'greenhous', u'preced']
[u'press', u'council', u'uphold', u'slum', u'complaint']
[u'price', u'right', u'telstra', u'sale', u'costello', u'say']
[u'prison', u'psychologist', u'lose', u'appeal', u'suspens']
[u'probe', u'launch', u'prison', u'farm', u'drug']
[u'public', u'sector', u'train', u'regim', u'come']
[u'ract', u'demand', u'danger', u'road', u'fund']
[u'region', u'tie', u'terror', u'fight', u'keelti', u'say']
[u'renew', u'call', u'lockyer', u'valley', u'wast', u'water']
[u'report', u'back', u'brown', u'coal', u'mine']
[u'republican', u'list', u'inelig', u'florida', u'voter']
[u'resid', u'water', u'respit']
[u'resid', u'march', u'sexual', u'violenc']
[u'retir', u'villag', u'plan', u'clifton']
[u'russal', u'take', u'stake']
[u'savabeel', u'trainer', u'undecid', u'start']
[u'sawmil', u'fin', u'burn', u'breach']
[u'scientist', u'reject', u'reef', u'rezon', u'inquiri']
[u'senat', u'result', u'hasten', u'atsic', u'demis']
[u'shes', u'archi', u'face', u'hurdl']
[u'shes', u'archi']
[u'shire', u'share', u'flood', u'damag', u'fund']
[u'money', u'leed', u'tell', u'takeov', u'hope']
[u'soldier', u'home', u'iraq', u'train', u'mission']
[u'storm', u'damag', u'ancient', u'tree']
[u'strand', u'tourist', u'return', u'home']
[u'submiss', u'close', u'reef', u'plan']
[u'sudan', u'govt', u'reject', u'separ', u'religion', u'state']
[u'summer', u'blackout', u'expect', u'sydney']
[u'surgeri', u'success', u'say', u'jackson']
[u'talk', u'jordan', u'toyota']
[u'court', u'order', u'lawsuit', u'ransom', u'director']
[u'lawyer', u'criticis', u'limit', u'amend']
[u'deadlin', u'approach', u'fast']
[u'teacher', u'recruit', u'drive', u'begin']
[u'teen', u'die', u'trail', u'bike', u'truck', u'accid']
[u'test', u'confirm', u'canker', u'strain', u'second', u'outbreak']
[u'arrest', u'afghanistan', u'kidnap']
[u'timber', u'industri', u'back', u'ring', u'road']
[u'titan', u'rich', u'life', u'give', u'carbon', u'nasa', u'say']
[u'tourism', u'board', u'resign', u'spark', u'anger']
[u'troop', u'prepar', u'decis', u'assault', u'fallujah']
[u'truck', u'driver', u'refus', u'bail', u'fatal', u'crash']
[u'trucki', u'protest', u'industri', u'road', u'death']
[u'turkey', u'accus', u'violat', u'greek', u'territori']
[u'turkish', u'truck', u'driver', u'kill', u'mosul']
[u'twin', u'bomb', u'rock', u'southern', u'thailand']
[u'umbil', u'blood', u'predict', u'allergi']
[u'condemn', u'cuba', u'embargo', u'time']
[u'underworld', u'coupl', u'jail', u'drug', u'traffic']
[u'close', u'dairi', u'farm']
[u'union', u'use', u'teacher', u'highlight', u'exodus']
[u'unit', u'look', u'build', u'arsenal']
[u'dealer', u'top', u'poll', u'world', u'power']
[u'diplomat', u'injur', u'pakistani', u'hotel', u'blast']
[u'network', u'air', u'damn', u'iraqi', u'arm', u'video']
[u'vandal', u'attack', u'kokoda', u'memori']
[u'societi', u'question', u'drink', u'drive', u'law']
[u'warn', u'sydney', u'like', u'real', u'estat', u'price']
[u'watchdog', u'investig', u'uranium', u'incid']
[u'waterbird', u'number', u'lowest', u'year']
[u'water', u'guidelin', u'comment']
[u'expand', u'prison']
[u'weld', u'want', u'rain', u'flemington']
[u'wildlif', u'hospit', u'plan', u'gold', u'coast']
[u'windi', u'legend', u'back', u'king', u'coach']
[u'share', u'surg', u'takeov']
[u'woman', u'get', u'suspend', u'jail', u'term', u'facto', u'death']
[u'woman', u'jail', u'amphetamin', u'suppli']
[u'woodward', u'take', u'time', u'lion', u'skipper']
[u'youni', u'hit', u'pakistan', u'control']
[u'aborigin', u'issu', u'agenda', u'yunupingu']
[u'flip', u'somersault']
[u'agassi', u'overcom', u'verdasco', u'power']
[u'agassi', u'say', u'drug', u'cheat', u'imposs', u'tenni']
[u'jazeera', u'lade', u'tape']
[u'american', u'intimid', u'bush']
[u'arafat', u'diagnosi', u'day', u'away']
[u'arroyo', u'meet', u'hostag', u'famili', u'send', u'team', u'kabul']
[u'asda', u'chief', u'quit', u'post']
[u'aussi', u'exorcis', u'demon']
[u'australian', u'set', u'dive', u'record', u'find', u'skeleton']
[u'ban', u'chemic', u'food', u'crop']
[u'bennett', u'attack', u'appoint', u'kiwi', u'refere']
[u'berlusconi', u'back', u'justic', u'post']
[u'lade', u'roam', u'afghanistan', u'pakistan']
[u'lade', u'threaten', u'attack']
[u'blackout', u'hit']
[u'black', u'quit', u'post', u'strategi']
[u'bodi', u'iraq', u'unlik', u'japanes', u'hostag']
[u'bok', u'grand', u'slam', u'highlight', u'novemb']
[u'kill', u'guard', u'wound', u'west', u'bank', u'unrest']
[u'british', u'troop', u'begin', u'patrol', u'hostil', u'region']
[u'bushrang', u'control', u'redback']
[u'bush', u'reject', u'lade', u'threat']
[u'chelsea', u'boss', u'defend', u'mutu', u'sack']
[u'citi', u'board', u'suggest', u'cape', u'indigen']
[u'defenc', u'forc', u'hous', u'deal', u'caus', u'conflict']
[u'downer', u'welcom', u'thai', u'protest', u'death', u'inquiri']
[u'driver', u'pull', u'ralli', u'follow', u'death']
[u'environ', u'minist', u'unveil', u'protect', u'plan']
[u'fals', u'hoon', u'compens']
[u'foster', u'care', u'studi', u'focus', u'long', u'term', u'support']
[u'garcia', u'stag', u'stun', u'fight']
[u'growth', u'economist', u'expect']
[u'gibernau', u'set', u'pace', u'spain']
[u'grand', u'arme', u'end', u'gai', u'drought']
[u'hall', u'fame', u'financi', u'troubl']
[u'henman', u'fall', u'unseed', u'novak', u'basel']
[u'hundr', u'charg', u'thai', u'protest']
[u'hussey', u'lead', u'bushrang']
[u'iaea', u'offer', u'guarante', u'iran', u'nuclear', u'fuel', u'suppli']
[u'leed', u'money', u'say', u'sainsburi']
[u'india', u'feel', u'heat', u'aussi', u'celebr']
[u'india', u'wield', u'mumbai']
[u'injur', u'feder', u'confirm', u'pari']
[u'intern', u'assist', u'drought', u'stricken']
[u'itali', u'buttiglion', u'resign', u'eas', u'crisi']
[u'japanes', u'hostag', u'probabl', u'kill', u'iraq']
[u'jazeera', u'pakistan', u'bureau', u'receiv', u'lade', u'tape']
[u'latham', u'conced', u'forestri', u'polici', u'damag']
[u'latham', u'face', u'forestri', u'post', u'mortem', u'confer']
[u'launceston', u'cycl', u'classic', u'cancel']
[u'levein', u'confirm', u'leicest', u'boss']
[u'makyb', u'diva', u'draw', u'barrier', u'seven']
[u'die', u'brawl']
[u'sunbak', u'driveway']
[u'melbourn', u'factori', u'damag']
[u'molik', u'luxembourg', u'semi', u'final']
[u'montgomeri', u'gain', u'dope', u'case', u'postpon']
[u'mooney', u'mooney', u'crash', u'prompt', u'inquiri']
[u'motor', u'ralli', u'death', u'investig']
[u'moya', u'fifth', u'master', u'qualifi']
[u'nasa', u'aim', u'space', u'shuttl', u'launch']
[u'chang', u'travel', u'advic', u'despit', u'lade']
[u'govt', u'lobbi', u'patrick', u'white', u'resid']
[u'oldest', u'british', u'royal', u'die', u'age']
[u'injur', u'ultralight', u'crash']
[u'opera', u'singer', u'husband', u'arrest', u'take', u'baxter']
[u'pampl', u'florida']
[u'plaster', u'seal', u'derbi']
[u'offici', u'chair', u'meet', u'arafat']
[u'polic', u'rape', u'claim', u'investig']
[u'star', u'hop', u'video', u'prove', u'copyright']
[u'public', u'urg', u'oppos', u'kosciuszko', u'propos']
[u'ranger', u'stay', u'open', u'despit', u'yellowcak', u'spill']
[u'rioter', u'burn', u'liberian', u'school', u'church']
[u'road', u'reopen', u'truck', u'pile']
[u'rspca', u'probe', u'possibl', u'cattl', u'neglect']
[u'rude', u'awaken', u'brisban', u'hotel', u'guest']
[u'russia', u'clear', u'elector', u'chang']
[u'savabeel', u'silenc', u'critic']
[u'second', u'woman', u'go', u'miss', u'sydney']
[u'seiz', u'hostag', u'taker', u'famili', u'russian', u'general']
[u'lanka', u'fight', u'inzamam']
[u'swiss', u'radio', u'trade', u'wave']
[u'text', u'laden', u'messag', u'america']
[u'time', u'achangin']
[u'union', u'green', u'donat', u'herring', u'labor', u'offici']
[u'unitab', u'want', u'bet', u'exchang']
[u'strike', u'kill', u'fallujah']
[u'deploy', u'militari', u'satellit', u'jam']
[u'fail', u'suppress', u'lade', u'tape']
[u'say', u'munit', u'destroy', u'iraqi', u'complex']
[u'univers', u'move', u'adelaid']
[u'consid', u'harvey', u'norman', u'rule', u'appeal']
[u'wallabi', u'coach', u'want', u'consist']
[u'wall', u'street', u'slip', u'investor', u'elect']
[u'warn', u'issu', u'internet', u'worm']
[u'wenger', u'welcom', u'probe', u'trafford', u'food', u'fight']
[u'wicket', u'suit', u'australia', u'say', u'dravid']
[u'woman', u'stab', u'shoot', u'north']
[u'worksaf', u'warn', u'fake', u'inspector']
[u'adelaid', u'orchestra', u'feder', u'respons']
[u'afghan', u'hostag', u'taker', u'deadlin']
[u'agassi', u'face', u'johansson', u'stockholm', u'final']
[u'age', u'popul', u'blame', u'hospit']
[u'dig', u'forestri', u'polici']
[u'beat', u'elect', u'prospect']
[u'anwar', u'thank', u'malaysian', u'releas']
[u'warn', u'economi', u'turn']
[u'arafat', u'meal', u'check', u'hospit']
[u'arafat', u'ill', u'curabl']
[u'arafat', u'spokesperson', u'deni', u'leukaemia', u'possibl']
[u'launch', u'soccer', u'leagu', u'today']
[u'aussi', u'pilkadari', u'chase', u'chines', u'doubl']
[u'australia', u'free', u'status', u'polit', u'fiction']
[u'backpack', u'check', u'email']
[u'beatti', u'defend', u'main', u'road', u'probe']
[u'lade', u'video', u'nation', u'secur', u'remind']
[u'lade', u'video', u'inflam', u'elect', u'race']
[u'blair', u'elect', u'februari', u'report']
[u'breaker', u'regist', u'win']
[u'ciss', u'miss', u'rest', u'season']
[u'dampier', u'creek', u'croc', u'alert']
[u'decapit', u'bodi', u'iraq']
[u'doctor', u'rais', u'fee', u'poll']
[u'marin', u'kill', u'near', u'fallujah']
[u'criticis', u'alpin', u'graze']
[u'fergi', u'call', u'henri', u'investig']
[u'firefight', u'offer', u'counsel', u'colleagu']
[u'furor', u'fuhrer', u'costum', u'school', u'halloween']
[u'govt', u'urg', u'review', u'data', u'process', u'contract']
[u'govt', u'undermin', u'medicar', u'academ', u'say']
[u'gunner', u'hold', u'draw', u'unit', u'suffer', u'shock', u'loss']
[u'hewitt', u'brace', u'pari', u'storm']
[u'human', u'right', u'lawyer', u'blair', u'criticis']
[u'hundr', u'gatecrash', u'teen', u'birthday', u'parti']
[u'indigen', u'board', u'get', u'lukewarm', u'recept']
[u'iranian', u'parliament', u'back', u'nuclear', u'energi', u'drive']
[u'italian', u'ralli', u'iraq']
[u'japan', u'confirm', u'hostag', u'kill', u'troop', u'stay']
[u'japan', u'mourn', u'hostag', u'amid', u'spiral', u'iraq', u'violenc']
[u'japan', u'win', u'swiss', u'chees', u'prize']
[u'jayasuriya', u'lead', u'lankan', u'fight']
[u'jayasuriya', u'notch', u'centuri']
[u'johansson', u'pari', u'master']
[u'kangaroo', u'nation', u'thriller']
[u'king', u'appoint', u'west', u'indi', u'coach']
[u'labor', u'flunk', u'industri', u'relat', u'test']
[u'target', u'milit', u'muslim', u'jail']
[u'loud', u'blast', u'hear', u'central', u'baghdad']
[u'macgil', u'close', u'mileston']
[u'macgil', u'close', u'wicket', u'mileston']
[u'accident', u'run', u'infant']
[u'mauresmo', u'reach', u'linz', u'final']
[u'molik', u'eye', u'second', u'success', u'titl']
[u'respons', u'time', u'seek', u'perish', u'resort']
[u'mutu', u'consid', u'retir']
[u'nalbandian', u'face', u'novak', u'basel', u'final']
[u'natur', u'forestri', u'polici', u'mistak', u'labor']
[u'peacekeep', u'airlift', u'darfur']
[u'pirat', u'dodg', u'bullet', u'breaker', u'sixer']
[u'pitcairn', u'mayor', u'sack', u'follow', u'rape', u'convict']
[u'plaster', u'earn', u'rest', u'derbi']
[u'polic', u'enforc', u'coitus', u'interruptus', u'public']
[u'polic', u'follow', u'lead', u'miss', u'tourist', u'case']
[u'polish', u'hostag', u'plead', u'iraq', u'troop', u'pullout']
[u'poll', u'open', u'ukrain']
[u'princess', u'alic', u'die']
[u'probe', u'continu', u'ultralight', u'crash']
[u'ranger', u'maintain', u'unbeaten', u'record']
[u'research', u'muscular', u'dystrophi', u'breakthrough']
[u'respect', u'communiti', u'servic', u'worker', u'die', u'age']
[u'rival', u'plaster', u'champion']
[u'road', u'toll', u'continu', u'rise']
[u'secret', u'agenda', u'opera', u'singer', u'baxter', u'detent']
[u'secur', u'tight', u'elect']
[u'senat', u'major', u'worri', u'right', u'campaign']
[u'sharon', u'rule', u'jerusalem', u'burial', u'arafat']
[u'singh', u'song', u'florida']
[u'smullen', u'defend', u'ride', u'vinni']
[u'sydney', u'hobart', u'boast', u'strong', u'fleet']
[u'tamada', u'snare', u'valencia', u'pole']
[u'telstra', u'chairman', u'oblig', u'hardi']
[u'iraqi', u'kill', u'wound', u'ramadi', u'clash']
[u'thai', u'human', u'right', u'group', u'end', u'fact', u'find', u'trip']
[u'track', u'decid', u'vinni', u'roe', u'fate']
[u'track', u'seal', u'vinni', u'roe', u'fate']
[u'troop', u'stay', u'iraq', u'christma']
[u'tszyu', u'camp', u'confid', u'victori']
[u'unherald', u'scot', u'surg', u'clear', u'spain']
[u'law', u'open', u'aust', u'record']
[u'voge', u'smash', u'record', u'centuri']
[u'warrior', u'hold', u'thrill']
[u'youzhni', u'beck', u'saint', u'petersburg', u'final']
[u'abbott', u'concern', u'abort', u'epidem']
[u'aceh', u'violenc', u'ahead', u'militari', u'review']
[u'aceh', u'violenc', u'claim', u'live']
[u'adopt', u'case', u'hear', u'mother', u'sedat']
[u'alic', u'welcom', u'virgin', u'adelaid', u'flight']
[u'anniversari', u'race', u'attract', u'intern', u'competitor']
[u'announc', u'expect', u'cycl', u'race', u'futur']
[u'lead', u'market', u'high']
[u'arab', u'station', u'deni', u'bias', u'accus']
[u'arafat', u'condemn', u'dead', u'aviv', u'blast']
[u'arafat', u'stabl', u'curabl']
[u'arroyo', u'seek', u'help', u'free', u'kidnap', u'diplomat']
[u'launch', u'soccer', u'leagu', u'today']
[u'asio', u'mole', u'fear', u'reveal']
[u'asio', u'mole', u'sell', u'secret']
[u'australia', u'china', u'sign', u'olymp', u'agreement']
[u'bargara', u'tourist', u'centr', u'open', u'today']
[u'barra', u'closur', u'begin']
[u'beachport', u'blaze', u'claim', u'garag']
[u'bolton', u'regain', u'fourth', u'spot', u'newcastl', u'end']
[u'bore', u'flow', u'drought']
[u'braveheart', u'applaud', u'abduct', u'alert']
[u'brilliant', u'tasmanian', u'craft', u'fair', u'end']
[u'builder', u'want', u'contractor', u'licens']
[u'bushfir', u'spark', u'warn', u'camper']
[u'bush', u'kerri', u'hour', u'race', u'elect', u'finish']
[u'bush', u'kerri', u'finish', u'touch', u'campaign']
[u'canberra', u'rainfal', u'averag']
[u'car', u'push', u'trade', u'deficit']
[u'chariti', u'cherri', u'break', u'australian', u'record']
[u'cheap', u'microchip', u'offer', u'rockhampton']
[u'chelsea', u'italian', u'trio', u'pois', u'progress']
[u'chelsea', u'clinton', u'join', u'kerri', u'campaign', u'trail']
[u'chelsea', u'destroy', u'complain', u'mutu']
[u'clarif', u'seek', u'region', u'plan']
[u'coalit', u'comment', u'fuel', u'abort', u'debat']
[u'councillor', u'renew', u'call', u'close']
[u'councillor', u'legal', u'brief']
[u'councillor', u'suggest', u'schooli']
[u'council', u'reconsid', u'katherin', u'art', u'precinct', u'site']
[u'court', u'deni', u'meet', u'discuss', u'judg', u'futur']
[u'cricket', u'australia', u'begin', u'search', u'academi']
[u'cum', u'forc', u'chang', u'strasbourg', u'jockey']
[u'punter', u'expect', u'gambl', u'million']
[u'cycl', u'classic', u'kick', u'maryborough']
[u'darfur', u'rebel', u'group', u'threaten', u'quit', u'peac', u'talk']
[u'date', u'jam', u'hardi', u'compo', u'fund', u'case']
[u'death', u'threat', u'milat', u'famili', u'feud']
[u'delfin', u'mitchel', u'creek', u'develop']
[u'dettori', u'look', u'rain', u'improv', u'mamool', u'chanc']
[u'doctor', u'fee', u'increas']
[u'downer', u'condemn', u'iraqi', u'politician', u'assassin']
[u'driver', u'urg', u'steer', u'clear', u'wander', u'anim']
[u'drop', u'abort', u'polit', u'latham', u'say']
[u'drug', u'reform', u'group', u'critic', u'govt', u'polici']
[u'caus', u'grain', u'concern']
[u'deni', u'breach', u'privaci']
[u'fallujah', u'stand', u'enter', u'final', u'phase']
[u'famili', u'award', u'botch', u'birth']
[u'farmer', u'offer', u'extend', u'drought', u'hope']
[u'feedback', u'seek', u'develop', u'plan']
[u'pont', u'vow', u'india', u'bash']
[u'forest', u'agreement', u'offer', u'land', u'protect']
[u'forum', u'focus', u'abus', u'sport', u'parent']
[u'franc', u'call', u'resolv', u'french', u'polynesia']
[u'ganguli', u'miss', u'fourth', u'test']
[u'nearest', u'rival', u'substanti']
[u'activist', u'urg', u'revers']
[u'girl', u'kill', u'train', u'accid', u'die']
[u'girl', u'death', u'spark', u'ethnic', u'unrest', u'china']
[u'govt', u'confid', u'despit', u'miss', u'deadlin']
[u'govt', u'consid', u'workplac', u'death', u'law']
[u'govt', u'stand', u'nativ', u'titl', u'agreement']
[u'govt', u'consid', u'cruis', u'ship', u'termin', u'site']
[u'govt', u'tackl', u'skill', u'worker', u'shortag']
[u'govt', u'urg', u'hasten', u'drought', u'effort']
[u'govt', u'urg', u'offer', u'option', u'atsic', u'demis']
[u'govt', u'urg', u'tackl', u'shoalhaven', u'hous', u'shortag']
[u'govt', u'wont', u'reef', u'protect']
[u'group', u'ballarat', u'fluorid']
[u'group', u'welcom', u'billiton', u'pilbara', u'fund']
[u'grower', u'unlik', u'boost', u'water', u'alloc']
[u'gunnedah', u'rememb', u'light', u'hors', u'charg']
[u'hargreav', u'join', u'stanhop', u'frontbench']
[u'hick', u'close', u'lose', u'saniti', u'father', u'say']
[u'hope', u'meatwork', u'return', u'work']
[u'hospit', u'parti', u'set', u'challeng', u'sit']
[u'icac', u'investig', u'plagiar', u'claim', u'newcastl']
[u'incom', u'estim', u'advic', u'uncommon', u'centrelink']
[u'indonesian', u'fisherman', u'guilti', u'illeg']
[u'injur', u'aust', u'soldier', u'return', u'home']
[u'injuri', u'forc', u'grey', u'fava', u'australia']
[u'invest', u'construct', u'growth', u'put', u'canberra', u'ahead']
[u'iranian', u'parliament', u'want', u'nuclear', u'program']
[u'iraqi', u'kill', u'hotel', u'rocket', u'attack']
[u'curtain', u'picasso', u'parad']
[u'johansson', u'novak', u'youzhni', u'tenni', u'titl']
[u'judg', u'futur', u'review', u'crash']
[u'kaneria', u'spin', u'pakistan', u'victori']
[u'kenteri', u'deni', u'fake', u'bike', u'crash']
[u'kerri', u'bush', u'exchang', u'lade', u'video', u'barb']
[u'labor', u'work', u'govt', u'bali', u'marijuana', u'arrest']
[u'landhold', u'warn', u'loom', u'threat']
[u'landmark', u'adopt', u'case', u'begin']
[u'land', u'owner', u'protest', u'govt', u'zone', u'plan']
[u'latham', u'criticis', u'union', u'forestri', u'stanc']
[u'latham', u'shock', u'centrelink', u'claim']
[u'lennon', u'disput', u'latham', u'forestri', u'disput', u'claim']
[u'level', u'cross', u'safeti', u'report', u'draw', u'critic']
[u'liber', u'toll', u'plan', u'risk', u'budget', u'say', u'treasur']
[u'literaci', u'rate', u'indigen', u'communiti']
[u'liverpool', u'confirm', u'ciss', u'season']
[u'local', u'govt', u'consid', u'effici', u'boost']
[u'lockout', u'cut', u'servic', u'western', u'sydney']
[u'magazin', u'closur', u'see', u'sign', u'chang', u'time']
[u'die', u'goldfield', u'road', u'accid']
[u'manufactur', u'activ', u'increas']
[u'mari', u'tehan', u'die', u'age']
[u'master', u'class', u'poulter', u'beat', u'garcia', u'play']
[u'maykb', u'diva', u'better', u'year', u'boss']
[u'mayor', u'foreshadow', u'museum', u'plan']
[u'float', u'unemploy', u'hous', u'build', u'plan']
[u'mcmillan', u'miss', u'squad']
[u'mcrae', u'return', u'tourism', u'chief']
[u'meat', u'firm', u'beef', u'plant', u'facil']
[u'meet', u'tell', u'support', u'euthanasia', u'grow']
[u'melbourn', u'tip']
[u'miller', u'retir', u'shock', u'team', u'mat']
[u'molik', u'brink']
[u'molik', u'secur', u'titl']
[u'hospit', u'join', u'smoke']
[u'polic', u'seek', u'wangaratta']
[u'parmalat', u'worker', u'milk', u'redund', u'fund']
[u'move', u'afoot', u'stop', u'leather', u'factori', u'closur']
[u'stand', u'council', u'critic']
[u'nevill', u'humbl', u'support']
[u'drug', u'give', u'hope', u'heart', u'transplant', u'patient']
[u'evid', u'spark', u'plea', u'fire', u'inform']
[u'film', u'poke', u'bushism']
[u'flight', u'servic', u'expand']
[u'boundari', u'releas']
[u'report', u'rank', u'australian', u'hard', u'worker']
[u'transmitt', u'improv', u'firefight']
[u'nigerian', u'strike', u'rise', u'fuel', u'cost']
[u'nigerian', u'union', u'threaten', u'strike']
[u'charg', u'teacher', u'pornographi', u'claim']
[u'fund', u'rail', u'station', u'disabl', u'access']
[u'charg', u'child', u'porn']
[u'mayor', u'accus', u'beatti', u'time', u'zone', u'arrog']
[u'member', u'reject', u'call', u'indigen', u'board']
[u'oversea', u'visitor', u'boom', u'tip']
[u'owen', u'ronaldo', u'rescu', u'real']
[u'parent', u'greater', u'role', u'cathol', u'school']
[u'perth', u'record', u'averag', u'rainfal', u'octob']
[u'pilkadari', u'continu', u'good', u'form', u'asia']
[u'pilot', u'injur', u'helicopt', u'crash']
[u'polic', u'confer', u'scrutinis', u'high', u'tech', u'crime']
[u'polic', u'hunt', u'elder', u'woman', u'attack']
[u'polic', u'arrest', u'mildura', u'brawl']
[u'polic', u'seek', u'arm', u'robberi']
[u'polic', u'seek', u'traralgon', u'attack', u'wit']
[u'politician', u'shoot', u'dead', u'iraq']
[u'portland', u'highlight', u'wind', u'farm', u'benefit']
[u'pride', u'line', u'india']
[u'princip', u'support', u'teacher', u'polic', u'check']
[u'protest', u'clash', u'polic', u'china', u'land']
[u'public', u'help', u'seek', u'captur', u'serial', u'arm', u'robber']
[u'public', u'urg', u'heatwav', u'awar']
[u'public', u'urg', u'hospit', u'pressur']
[u'introduc', u'anti', u'terror', u'fertilis', u'restrict']
[u'senat', u'elect', u'defend']
[u'quarantin', u'servic', u'seek', u'consum', u'help', u'mango']
[u'race', u'fan', u'cheer', u'star']
[u'rain', u'heighten', u'mossi', u'virus', u'concern']
[u'recent', u'indonesian', u'unrest', u'deter', u'tourist']
[u'region', u'driver', u'urg', u'buckl']
[u'review', u'probe', u'attempt', u'jail', u'escap']
[u'rocket', u'attack', u'kill', u'tikrit']
[u'rossi', u'reign', u'spain', u'bayliss']
[u'rural', u'doctor', u'hint', u'rise', u'fee']
[u'ryan', u'discuss', u'disabl', u'fund']
[u'second', u'sewag', u'spill', u'anger', u'minist']
[u'face', u'water', u'crisi']
[u'shes', u'archi', u'give', u'clear']
[u'shop', u'ban', u'children', u'tag', u'racist']
[u'singh', u'golf']
[u'soccer', u'leagu', u'aim', u'sport', u'list']
[u'lankan', u'tail', u'frustrat', u'pakistan', u'victori']
[u'georg', u'post', u'record', u'profit']
[u'street', u'sweeper', u'secur', u'guard', u'billboard']
[u'studi', u'show', u'slow', u'growth', u'rate']
[u'submiss', u'seek', u'north', u'coast', u'polic', u'boost']
[u'sunbak', u'croc', u'caus', u'chao', u'cairn', u'road']
[u'support', u'saleyard', u'stay', u'open']
[u'talk', u'focus', u'communiti', u'centr', u'futur']
[u'task', u'forc', u'meet', u'minist', u'campus', u'futur']
[u'whale', u'sight', u'encourag', u'scientist']
[u'teenag', u'die', u'sydney', u'road', u'accid']
[u'telstra', u'propos', u'light', u'black', u'mountain', u'tower']
[u'tension', u'mount', u'tahitian', u'presidenti', u'stoush']
[u'thailand', u'king', u'urg', u'restraint', u'wake', u'muslim']
[u'road', u'crash']
[u'tourism', u'push', u'benefit', u'goldfield', u'esper']
[u'town', u'share', u'econom', u'fund']
[u'tree', u'branch', u'claim', u'boy', u'life']
[u'kill', u'isra', u'palestinian', u'trade']
[u'fertil', u'scientist', u'permit', u'hand', u'pick']
[u'give', u'green', u'light', u'embryo', u'screen']
[u'call', u'onlin', u'polic', u'presenc']
[u'ultralight', u'crash', u'probe', u'continu']
[u'ultralight', u'pilot', u'injur', u'crash']
[u'appeal', u'afghanistan', u'hostag', u'safeti']
[u'union', u'reaffirm', u'labor', u'support']
[u'unit', u'water', u'play', u'second', u'sewag', u'spill']
[u'uruguay', u'leftist', u'clinch', u'histor', u'presidenti']
[u'vandal', u'threaten', u'fish', u'access']
[u'voge', u'vogu', u'warrior']
[u'vogt', u'step', u'scottish', u'manag', u'report']
[u'cabinet', u'meet', u'bunburi']
[u'water', u'author', u'claim', u'support', u'conserv']
[u'weld', u'call', u'emerg']
[u'whale', u'museum', u'secur', u'tourism', u'encourag', u'award']
[u'widespread', u'violat', u'ukrain', u'elect']
[u'windi', u'coach', u'king', u'hop', u'reviv', u'flag', u'career']
[u'work', u'begin', u'port', u'expans']
[u'abalon', u'diver', u'jail', u'forg', u'docket']
[u'abus', u'forc', u'vogt', u'scotland']
[u'academ', u'examin', u'boost', u'plan']
[u'aid', u'arafat', u'improv', u'exhaust']
[u'alcohol', u'blame', u'stunt', u'kidney', u'aborigin']
[u'anti', u'smoke', u'group', u'crackdown']
[u'push', u'cambodian', u'market']
[u'armaguard', u'offer', u'reward', u'miss']
[u'armi', u'chopper', u'crew', u'stand', u'indi', u'lark']
[u'arson', u'blame', u'adelaid', u'school', u'blaze']
[u'australia', u'tough', u'test', u'pakistan', u'batsmen', u'coach']
[u'australian', u'punter', u'pick', u'bush']
[u'award', u'recognis', u'bushfir', u'recoveri', u'effort']
[u'bangladesh', u'crash', u'mill', u'pace']
[u'barra', u'introduc', u'fish', u'farm']
[u'beij', u'plan', u'tough', u'dope', u'regim']
[u'resort', u'plan', u'afoot', u'field']
[u'lade', u'vow', u'bankrupt']
[u'blue', u'lunch']
[u'board', u'school', u'late', u'indigen', u'literaci']
[u'british', u'soldier', u'iraq', u'die', u'gunshot', u'wind']
[u'build', u'boom', u'increas', u'vacanc', u'rat']
[u'burger', u'name', u'springbok', u'player', u'year']
[u'burston', u'injur', u'ankl', u'wildcat']
[u'bush', u'kerri', u'neck', u'neck', u'campaign', u'final']
[u'bush', u'kerri', u'wrap', u'campaign']
[u'bush', u'return', u'texa', u'elect']
[u'bush', u'win', u'midnight', u'voter', u'support']
[u'busi', u'truck', u'concern']
[u'busi', u'urg', u'bolster', u'china', u'effort']
[u'call', u'suitabl', u'birth', u'centr']
[u'canada', u'fresh', u'cannabi']
[u'canberra', u'delug', u'catch', u'guard']
[u'cervic', u'cancer', u'vaccin', u'trial', u'yield', u'posit']
[u'cheney', u'includ', u'hawaii', u'minut', u'campaign', u'stop']
[u'china', u'attack', u'foreign', u'polici', u'elect']
[u'china', u'ban', u'civet', u'cook', u'stop', u'sar', u'spread']
[u'chubb', u'confid', u'court', u'rule', u'wont', u'affect', u'busi']
[u'coalit', u'begin', u'forestri', u'polici', u'implement']
[u'command', u'sack', u'protest', u'death']
[u'controversi', u'film', u'maker', u'murder', u'amsterdam']
[u'council', u'air', u'wall', u'fear']
[u'council', u'fear', u'merger', u'relat', u'water', u'price', u'rise']
[u'council', u'finalis', u'puppi', u'farm', u'probe']
[u'council', u'look', u'reopen', u'lake']
[u'council', u'shoot', u'paintbal', u'plan']
[u'council', u'consid', u'methadon', u'clinic', u'plan']
[u'crash', u'spark', u'plea', u'better', u'mark', u'power', u'wire']
[u'cunderdin', u'hospit', u'health', u'director']
[u'fever', u'grip', u'eyr', u'peninsula']
[u'delfin', u'defend', u'mitchel', u'creek', u'develop']
[u'demolit', u'firm', u'fin', u'wast', u'dump']
[u'dettori', u'face', u'steward', u'inquiri']
[u'develop', u'board', u'reject', u'workforc', u'crisi', u'claim']
[u'resign', u'prompt', u'health', u'dept', u'critic']
[u'disabl', u'servic', u'play', u'supervis', u'hous']
[u'dive', u'oper', u'like', u'welcom', u'safeti', u'move']
[u'doctor', u'recal', u'take', u'lose', u'blood', u'sampl']
[u'downer', u'defend', u'support', u'bush']
[u'elit', u'club', u'leader', u'get', u'year', u'jail', u'gang', u'rap']
[u'energex', u'report', u'improv', u'network', u'reliabl']
[u'esso', u'contract', u'worker', u'work']
[u'europ', u'santa', u'compet', u'olymp', u'gold']
[u'fahrenheit', u'screen', u'fan', u'anti', u'bush', u'flame']
[u'farmer', u'lose', u'drought']
[u'govt', u'eye', u'total', u'univers', u'control']
[u'ferguson', u'hop', u'arsenal', u'action', u'fade']
[u'firefight', u'contain', u'wonanngatta', u'blaze']
[u'firefight', u'farewel', u'thursday']
[u'firm', u'high', u'hop', u'seahors', u'speci']
[u'kill', u'bomber', u'target', u'baghdad', u'ministri']
[u'foreign', u'seiz', u'baghdad', u'kidnap']
[u'champ', u'jone', u'link', u'seri']
[u'french', u'polynesian', u'govt', u'aim', u'crisi']
[u'fuge', u'star', u'campaign', u'peac', u'haiti']
[u'court', u'hear', u'bushfir', u'inquiri', u'bias', u'claim']
[u'gilli', u'game', u'great']
[u'gold', u'worker', u'strike', u'safeti']
[u'govt', u'pledg', u'dental', u'clinic', u'bunburi']
[u'govt', u'reject', u'malle', u'drought', u'claim']
[u'govt', u'urg', u'wharf', u'fund', u'shortfal']
[u'govt', u'correct', u'centrelink', u'overpay']
[u'govt', u'urg', u'rethink', u'school', u'staff', u'formula']
[u'griffith', u'chancellor', u'play', u'govt', u'reform']
[u'group', u'launch', u'hotlin', u'inform', u'british']
[u'health', u'region', u'audit', u'measur', u'save']
[u'health', u'servic', u'chief', u'announc']
[u'heart', u'specialist', u'better', u'servic']
[u'hickss', u'lawyer', u'seek', u'panel', u'decis']
[u'hopkin', u'craigi', u'england']
[u'icac', u'probe', u'soon']
[u'illeg', u'immigr', u'face', u'deport']
[u'india', u'attempt', u'regain', u'pride']
[u'indian', u'maker', u'put', u'slipper', u'govern']
[u'intern', u'shorten', u'rain', u'batter', u'flemington']
[u'israel', u'destroy', u'bomber', u'hous']
[u'isra', u'forc', u'kill', u'west', u'bank']
[u'athen', u'gold', u'collaps', u'lung', u'hackett']
[u'jail', u'polic', u'assault']
[u'jail', u'term', u'cape', u'alcohol', u'restrict', u'breach']
[u'jam', u'hardi', u'fund', u'provis']
[u'jone', u'tell', u'england', u'like', u'champion']
[u'journalist', u'arrest', u'outsid', u'florida', u'vote', u'offic']
[u'kerri', u'urg', u'voter', u'hold', u'bush', u'account']
[u'khatami', u'rule', u'halt', u'iran', u'uranium', u'enrich']
[u'kidnap', u'iraqi', u'guard', u'releas']
[u'labor', u'continu', u'attack', u'govt', u'plan']
[u'labor', u'council', u'push', u'legal', u'centr', u'fund']
[u'lake', u'macquari', u'plan', u'identifi', u'area', u'need']
[u'landhold', u'intensifi', u'effort', u'region']
[u'leas', u'detail', u'slow', u'bathhous', u'work']
[u'liberian', u'riot', u'leav', u'dead']
[u'lion', u'gold', u'coast', u'link']
[u'lodg', u'aim', u'loss', u'merger']
[u'main', u'road', u'finalis', u'malcolmson', u'report']
[u'makyb', u'diva', u'look', u'world', u'stage']
[u'makyb', u'diva', u'win', u'consecut', u'cup']
[u'malik', u'steer', u'pakistan', u'seri', u'level']
[u'die', u'highway', u'crash']
[u'jail', u'newcastl', u'shoot']
[u'sue', u'compani', u'injuri']
[u'march', u'start', u'date', u'like', u'gold']
[u'market', u'stabl', u'ahead', u'poll']
[u'mcewen', u'back', u'south', u'east']
[u'mcgrath', u'langer', u'give', u'black']
[u'melbourn', u'hospit', u'bypass', u'investig', u'underway']
[u'melbourn', u'tab', u'target', u'vandal', u'rampag']
[u'mental', u'assess', u'mother', u'accus', u'kill']
[u'miner', u'stress', u'need', u'avoid', u'fatigu']
[u'minist', u'tour', u'cape', u'york', u'gulf']
[u'minist', u'wont', u'comment', u'ground']
[u'miss', u'man', u'bodi']
[u'model', u'play', u'storm', u'surg', u'threat']
[u'fluorid', u'inform', u'seek']
[u'fund', u'need', u'mental', u'health', u'expert']
[u'frequent', u'aust', u'india', u'seri']
[u'warn', u'freeway', u'toll', u'remov']
[u'mutu', u'accept', u'lawyer']
[u'nader', u'defiant', u'elect']
[u'nation', u'play', u'deal', u'telstra', u'sale', u'support']
[u'nation', u'trust', u'staff', u'lodg', u'bulli', u'complaint']
[u'prospector', u'train', u'soon']
[u'speed', u'limit', u'childer']
[u'wast', u'servic', u'plan', u'wollondilli', u'shire']
[u'korea', u'accus', u'south', u'naval', u'provoc']
[u'korea', u'pose', u'challeng', u'say', u'nuclear']
[u'nobel', u'laureat']
[u'north', u'east', u'prepar', u'storm']
[u'north', u'west', u'hospit', u'get']
[u'norwich', u'draw', u'rise', u'foot']
[u'extradit', u'fatal', u'stab']
[u'polic', u'minist', u'concern', u'miss', u'blood']
[u'offic', u'arm', u'suspens']
[u'trader', u'kerri', u'drive', u'price', u'lower']
[u'pari', u'furious', u'agassi', u'pull']
[u'pepper', u'nbls', u'player', u'week']
[u'period', u'jail', u'term', u'dishonest', u'financ', u'director']
[u'perth', u'admit', u'arson', u'conspiraci']
[u'perth', u'plead', u'guilti', u'child', u'pornographi']
[u'shrug', u'journalist', u'detent']
[u'polic', u'issu', u'driver', u'safeti', u'remind']
[u'polic', u'probe', u'gun', u'theft']
[u'polic', u'probe', u'rail', u'station', u'attack']
[u'polic', u'probe', u'truck', u'school', u'crash']
[u'polic', u'voic', u'deton', u'danger']
[u'port', u'lincoln', u'hail', u'makyb', u'own', u'local']
[u'power', u'station', u'propon', u'rule', u'exot', u'diseas']
[u'privat', u'oper', u'alvernia', u'merci', u'hospit']
[u'probe', u'continu', u'school', u'asbesto']
[u'product', u'start', u'onesteel', u'plant']
[u'public', u'urg', u'report', u'turtl', u'breed', u'activ']
[u'qanta', u'flight', u'attend', u'settl', u'disput']
[u'hop', u'ride', u'high', u'warrior']
[u'lion', u'plan', u'gold', u'coast', u'match']
[u'quota', u'rise', u'pilchard', u'fisher']
[u'rabbitoh', u'look', u'recruit', u'british', u'test', u'star']
[u'racego', u'head', u'echuca']
[u'racego', u'rock', u'frock', u'flemington']
[u'rain', u'fail', u'spoil', u'flemington', u'parti']
[u'rainfal', u'woe', u'continu', u'albani']
[u'rare', u'dolphin', u'remain', u'kangaroo', u'island']
[u'rare', u'whale', u'byron', u'beach']
[u'record', u'rainfal', u'coff']
[u'reef', u'author', u'content', u'ship', u'aground', u'fine']
[u'report', u'slam', u'fail', u'mar', u'mission']
[u'resid', u'wait', u'compo']
[u'reuter', u'cameraman', u'kill', u'ramadi']
[u'rockhampton', u'hors', u'owner', u'hold', u'hop']
[u'erupt', u'council', u'travel']
[u'sabotag', u'threaten', u'weaken', u'suppli']
[u'govt', u'seek', u'look', u'propos', u'chang']
[u'sangakkara', u'fin', u'abus']
[u'schoolboy', u'queri', u'tax', u'british', u'offici', u'year']
[u'school', u'evacu', u'vineyard', u'blaze']
[u'scientist', u'mous', u'lean', u'gene']
[u'second', u'charg', u'child', u'porn']
[u'serial', u'offend', u'blame', u'sydney', u'break']
[u'shes', u'archi', u'look', u'strong', u'show', u'final']
[u'short', u'term', u'medic', u'transport', u'woe']
[u'singh', u'extend', u'lead', u'golf', u'rank']
[u'smyth', u'vow', u'cabinet', u'member', u'account']
[u'socceroo', u'group', u'germani']
[u'somersault', u'score', u'screen', u'music', u'accolad']
[u'stock', u'rid', u'high', u'despit', u'distract']
[u'strike', u'action', u'threat', u'plan']
[u'student', u'express', u'worri', u'privat', u'plan']
[u'substanc', u'abus', u'blame', u'crime']
[u'sink', u'ship', u'owner', u'get', u'salvag', u'extens']
[u'forestri', u'compens', u'uncertain']
[u'govt', u'introduc', u'curriculum']
[u'technolog', u'boost', u'cotton', u'plant']
[u'tendulkar', u'open', u'bowl']
[u'thai', u'villag', u'leader', u'decapit', u'retali']
[u'thorn', u'doubl', u'dig', u'blue', u'hole']
[u'train', u'worker', u'union', u'deni', u'caus', u'delay']
[u'tribun', u'hear', u'final', u'evid', u'misconduct', u'case']
[u'ukrain', u'elect', u'scratch']
[u'rat', u'indigen', u'health', u'poor']
[u'claim', u'journalist', u'kill', u'fight']
[u'increas', u'troop', u'iraq', u'ahead', u'poll']
[u'lawyer', u'prepar', u'elect', u'battl']
[u'soldier', u'kill', u'afghanistan']
[u'voter', u'poll']
[u'vazquez', u'claim', u'victori', u'uruguay', u'elect']
[u'vinni', u'catch', u'weight']
[u'vinni', u'contest']
[u'coalit', u'offer', u'pool', u'centr', u'fund']
[u'govt', u'accus', u'lack', u'leadership']
[u'opposit', u'doubt', u'premier', u'credenti']
[u'opposit', u'govt', u'scuffl', u'propos', u'polic']
[u'work', u'anti', u'terror', u'fertilis', u'licens']
[u'weather', u'success']
[u'weighti', u'problem', u'shearer', u'prompt', u'tranquillis']
[u'westbus', u'servic', u'return', u'normal']
[u'wild', u'woe', u'spark', u'nation', u'park', u'bait']
[u'wolv', u'jone']
[u'yudhoyono', u'rule', u'allow', u'emptiv', u'strike']
[u'abort', u'debat', u'divid', u'liber', u'parti']
[u'academ', u'await', u'finer', u'detail', u'plan']
[u'aceh', u'guerilla', u'clash', u'troop']
[u'coron', u'want', u'immedi', u'bushfir', u'safeti', u'audit']
[u'review', u'feder', u'elect', u'process']
[u'afford', u'hous', u'project', u'near', u'complet']
[u'alderman', u'censur', u'council', u'leak']
[u'black', u'confess', u'wear']
[u'ambros', u'remain', u'ford']
[u'warrior', u'owner', u'tackl', u'year']
[u'anti', u'hoon', u'legisl', u'declar', u'success']
[u'atsb', u'fail', u'uncov', u'caus', u'fatal', u'helicopt']
[u'australian', u'democrat', u'elect', u'leader']
[u'australia', u'strike', u'earli', u'hauritz', u'debut']
[u'author', u'back', u'land', u'releas', u'lake', u'protect']
[u'author', u'welcom', u'mersey', u'hospit', u'commit']
[u'beatti', u'highlight', u'import', u'nativ', u'titl']
[u'black', u'resign', u'holling']
[u'brigg', u'sign', u'king']
[u'british', u'soldier', u'face', u'trial', u'kill', u'iraqi']
[u'brumbi', u'pair', u'doubt', u'scottish', u'test']
[u'compani', u'reject', u'minist', u'blackmail', u'claim']
[u'bush', u'ahead', u'kerri', u'like', u'state']
[u'bush', u'camp', u'claim', u'victori']
[u'bush', u'tip', u'pick', u'florida']
[u'elect', u'nomin', u'open']
[u'cadetship', u'offer', u'kalgoorli', u'boulder', u'youth']
[u'hors', u'rider', u'help', u'control', u'kosciuszko']
[u'campus', u'chief', u'take', u'wait', u'approach']
[u'candid', u'say', u'lamington', u'fundrais', u'uncool']
[u'care', u'renew', u'appeal', u'worker', u'releas']
[u'carniv', u'selector', u'young', u'blood']
[u'centr', u'chemotherapi', u'treatment', u'long', u'time', u'come']
[u'chang', u'trainer', u'success', u'boss']
[u'chelsea', u'undef', u'champion', u'leagu']
[u'cherbourg', u'social', u'worker', u'call', u'alcohol']
[u'children', u'advoc', u'call', u'background', u'check']
[u'church', u'minist', u'plead', u'guilti', u'indec', u'behaviour']
[u'clash', u'titan', u'creat', u'race', u'age']
[u'win', u'fund', u'labor']
[u'club', u'welcom', u'gambl', u'research', u'result']
[u'emiss', u'melt', u'arctic', u'centuri', u'report']
[u'complaint', u'servic', u'aid', u'young', u'employe']
[u'council', u'author', u'test', u'court']
[u'council', u'look', u'fluorid', u'benefit']
[u'council', u'reject', u'methadon', u'clinic', u'plan']
[u'council', u'rethink', u'water', u'pip']
[u'council', u'refus', u'jam', u'hardi', u'item', u'vlga']
[u'council', u'work', u'region', u'promot']
[u'council', u'tackl', u'weed', u'woe']
[u'council', u'urg', u'boost', u'account']
[u'council', u'want', u'probe', u'corner', u'accid']
[u'court', u'allow', u'republican', u'challeng', u'ohio', u'voter']
[u'court', u'urg', u'lengthen', u'cabbi', u'killer', u'sentenc']
[u'crash', u'victim', u'forgo', u'seatbelt']
[u'croc', u'charg', u'strike', u'fear', u'offici']
[u'punter', u'flock', u'mackay', u'turf', u'club']
[u'delay', u'african', u'dentist', u'arriv']
[u'dettori', u'receiv', u'month', u'suspens']
[u'dirti', u'soil', u'affect', u'resid', u'home']
[u'condit', u'toll', u'wineri']
[u'place', u'plan', u'cherbourg']
[u'ead', u'put', u'dog', u'pace']
[u'edward', u'pledg', u'fight', u'vote']
[u'elton', u'john', u'marri', u'long', u'time', u'companion']
[u'meet', u'govt', u'forestri', u'polici']
[u'esso', u'offshor', u'worker', u'hold', u'mass', u'meet']
[u'famili', u'secur', u'senat', u'posit']
[u'farmer', u'celebr', u'rainfal']
[u'father', u'make', u'plea', u'inform', u'miss']
[u'feedback', u'seek', u'fluorid', u'plan']
[u'fifth', u'african', u'american', u'elect', u'senat']
[u'fisher', u'quiz', u'lobster', u'industri']
[u'fisher', u'urg', u'realist', u'licenc']
[u'florida', u'voter', u'report', u'minor', u'glitch']
[u'forest', u'area', u'remov', u'burn', u'program']
[u'weed', u'sprayer', u'press', u'right']
[u'fresh', u'violenc', u'hit', u'baghdad']
[u'marriag', u'ban', u'stem', u'cell', u'adopt']
[u'gender', u'issu', u'cost', u'australian', u'busi', u'studi']
[u'govt', u'commit', u'bega', u'hospit', u'replac']
[u'govt', u'seek', u'comment', u'older', u'workforc', u'plan']
[u'govt', u'urg', u'ramp', u'boat', u'facil', u'fund']
[u'greek', u'face', u'charg']
[u'green', u'wont', u'rule', u'challeng', u'senat', u'result']
[u'group', u'unveil', u'tourism', u'plan', u'today']
[u'gunmen', u'kidnap', u'american', u'contractor', u'baghdad']
[u'health', u'merger', u'offer', u'local', u'control']
[u'health', u'minist', u'tour', u'north', u'coast']
[u'heat', u'exchang', u'hick', u'militari', u'hear']
[u'heritag', u'take', u'swipe', u'card', u'skimmer']
[u'hewitt', u'round', u'pari']
[u'hollow', u'bullet', u'favourit', u'oak']
[u'home', u'urg', u'upgrad', u'train', u'patient']
[u'melt', u'aust', u'swamp']
[u'index', u'show', u'healthi', u'servic', u'sector']
[u'indigen', u'student', u'irrelev']
[u'injur', u'reidi', u'hurt']
[u'high', u'karumba', u'land']
[u'iran', u'offer', u'temporari', u'suspens', u'nuclear']
[u'iraqi', u'armi', u'offic', u'behead', u'video']
[u'isra', u'troop', u'kill', u'taxi', u'driver', u'gaza', u'wit']
[u'jenkin', u'plead', u'guilti', u'north', u'korea', u'defect']
[u'joint', u'team', u'log', u'boundari']
[u'jordanian', u'truck', u'driver', u'kidnap', u'iraq']
[u'karzai', u'win', u'afghan', u'poll']
[u'kerri', u'delusion', u'ohio', u'bush', u'aid']
[u'kerri', u'white', u'hous', u'dream', u'fade']
[u'kerri', u'win', u'state', u'close']
[u'kidnapp', u'threaten', u'hand', u'worker', u'zarqawi']
[u'latest', u'lade', u'tape', u'cheap', u'propaganda', u'say', u'asio']
[u'lawyer', u'urg', u'judg', u'withhold', u'blood', u'sampl']
[u'liber', u'seek', u'famili', u'preselect']
[u'life', u'ban', u'drug', u'cheat', u'hackett']
[u'makyb', u'diva', u'world', u'best', u'stayer', u'freedman']
[u'burn', u'canberra', u'hous']
[u'die', u'singl', u'vehicl', u'crash']
[u'jail', u'partner', u'kill']
[u'mark', u'declin', u'retail', u'hous', u'measur']
[u'mayor', u'join', u'critic', u'councillor', u'conduct']
[u'memori', u'honour', u'policeman', u'kill', u'duti']
[u'milit', u'extend', u'deadlin', u'captiv', u'worker']
[u'miner', u'move', u'bolster', u'collaps', u'wall']
[u'misfir', u'gunner', u'hold', u'draw']
[u'mitcham', u'freeway', u'contract', u'outlin', u'toll']
[u'soldier', u'leav', u'iraq']
[u'mourner', u'hold', u'noisi', u'wake', u'slay', u'film', u'maker']
[u'air', u'fear', u'arm', u'robber', u'releas']
[u'echo', u'phone', u'tower', u'review']
[u'rais', u'wangaratta', u'polic', u'station', u'concern']
[u'plead', u'guilti', u'daughter', u'kill']
[u'museum', u'lament', u'limit', u'public']
[u'museum', u'return', u'indigen', u'remain', u'object']
[u'magistr', u'start', u'week']
[u'person', u'test', u'help', u'farmer']
[u'cut', u'riverland', u'surgeri', u'obstetr']
[u'transfer', u'detent', u'centr', u'respons']
[u'observ', u'claim', u'monitor', u'bar']
[u'ohio', u'tight', u'elect']
[u'opposit', u'highlight', u'region', u'hospit', u'woe']
[u'orica', u'tripl', u'annual', u'profit']
[u'paramount', u'studio', u'chairman', u'step']
[u'partnership', u'help', u'forest', u'arson']
[u'patagonian', u'toothfish', u'pirat', u'fear', u'govt']
[u'make', u'peac']
[u'pilot', u'accus', u'govt', u'abandon', u'elect', u'promis']
[u'pilot', u'safe', u'emerg', u'plane', u'land']
[u'plan', u'move', u'ahead', u'smelter', u'demolit']
[u'polic', u'judg', u'hand', u'blood', u'sampl']
[u'polic', u'hunt', u'arm', u'bank', u'bandit']
[u'polic', u'investig', u'man', u'death', u'remot', u'station']
[u'polic', u'lack', u'court', u'support', u'union']
[u'polic', u'need', u'help', u'deal', u'homeless']
[u'polic', u'watchdog', u'probe', u'miss', u'blood', u'sampl']
[u'possibl', u'bush', u'victori', u'push']
[u'post', u'mortem', u'student']
[u'power', u'return', u'central', u'west']
[u'presidenti', u'elect', u'dampen', u'market']
[u'privat', u'develop', u'secur', u'jail']
[u'produc', u'reject', u'cheap', u'wine', u'claim']
[u'propos', u'prison', u'site', u'vulner', u'bushfir']
[u'public', u'remind', u'loom', u'ban']
[u'public', u'urg', u'help', u'control', u'beetl', u'pest']
[u'qanta', u'plan', u'bigger', u'craft', u'region', u'rout']
[u'queen', u'recognis', u'german', u'wartim', u'suffer']
[u'queensland', u'quiz', u'fish']
[u'rail', u'deal', u'provid', u'secur', u'maryborough']
[u'rain', u'halt', u'aussi', u'charg', u'mumbai']
[u'rain', u'help', u'eas', u'water', u'ban']
[u'rain', u'wash', u'session', u'mumbai']
[u'ranger', u'contamin', u'case', u'adjourn']
[u'ranger', u'oper', u'face', u'licenc', u'charg']
[u'rare', u'whale', u'excit', u'scientist']
[u'hold', u'cash', u'rate', u'steadi']
[u'republican', u'domin', u'hous', u'rep']
[u'republican', u'tip', u'control', u'senat']
[u'warn', u'farmer', u'fire']
[u'rise', u'debt', u'level', u'prompt', u'credit', u'reform']
[u'roadwork', u'fund', u'announc']
[u'saddam', u'famili', u'dismiss', u'lawyer']
[u'safeti', u'establish', u'heart', u'diseas', u'team']
[u'scheme', u'aim', u'boost', u'women', u'local', u'govt']
[u'seminar', u'consid', u'thai', u'export', u'opportun']
[u'senat', u'fin', u'firearm', u'charg']
[u'shooter', u'ask', u'help', u'control', u'fox']
[u'singapor', u'brisban', u'best', u'citi']
[u'sixer', u'look', u'maintain', u'win', u'form']
[u'small', u'wineri', u'continu', u'growth', u'apac']
[u'soldier', u'fin', u'replica', u'gun']
[u'spare', u'bullfight', u'charg', u'carmen']
[u'spotlight', u'fall', u'council', u'general', u'manag']
[u'stone', u'argu', u'restrict', u'abort']
[u'stosur', u'quebec', u'event']
[u'student', u'fold', u'shelter', u'homeless']
[u'student', u'group', u'foreshadow', u'lose', u'servic']
[u'studi', u'echo', u'earlier', u'youth', u'alcohol', u'find']
[u'studi', u'consid', u'plan', u'miner', u'plant']
[u'sydney', u'peac', u'prize', u'winner', u'urg', u'iraqi', u'resist']
[u'taiwan', u'posit', u'strengthen', u'vanuatu']
[u'wind', u'farm', u'develop', u'ceas']
[u'teen', u'injur', u'lightn', u'strike']
[u'telstra', u'budget', u'blowout', u'restrict', u'servic', u'union']
[u'telstra', u'deni', u'forc', u'staff', u'holiday']
[u'tender', u'call', u'line', u'load', u'asset']
[u'test', u'identifi', u'chemic', u'river']
[u'thai', u'politician', u'punch', u'colleagu']
[u'thornley', u'put', u'control']
[u'tidi', u'town', u'ponder', u'wast', u'dump', u'ironi']
[u'tight', u'race', u'kerri', u'win', u'state']
[u'tollner', u'push', u'control', u'indigen', u'land']
[u'trade', u'hall', u'council', u'asbesto', u'plan']
[u'troop', u'rebel', u'clash', u'kashmir', u'mosqu']
[u'north', u'west', u'crash']
[u'elect', u'littl', u'impact', u'surg', u'market']
[u'elect', u'close']
[u'network', u'accuraci', u'ahead', u'speed']
[u'poll', u'station', u'begin', u'close']
[u'senat', u'leader', u'daschl', u'lose', u'seat']
[u'soldier', u'escap', u'jail', u'term', u'ghraib', u'abus']
[u'util', u'vow', u'pipelin', u'failur', u'wont', u'interrupt', u'power']
[u'opposit', u'question', u'toll', u'cost']
[u'vicroad', u'worker', u'blame', u'speed', u'camera', u'fault']
[u'villa', u'charg', u'beatti', u'approach']
[u'violenc', u'hinder', u'sudan', u'effort']
[u'vote', u'specul', u'pull', u'price']
[u'govt', u'urg', u'lift', u'region', u'art', u'fund']
[u'wale', u'faith', u'jone', u'boy']
[u'warn', u'doubt', u'brisban', u'test']
[u'warn', u'fourth', u'test']
[u'warn', u'milk', u'price', u'hike', u'christma']
[u'warrior', u'forc', u'follow']
[u'wimmera', u'take', u'heart', u'govt', u'letter']
[u'work', u'continu', u'highway', u'landslip']
[u'work', u'bridg']
[u'young', u'politician', u'join', u'norfolk', u'assembl']
[u'abbott', u'renew', u'abort', u'debat']
[u'colleg', u'face', u'cash', u'flow', u'woe']
[u'aid', u'say', u'arafat', u'life', u'danger']
[u'analyst', u'rais', u'prospect', u'strike', u'iran']
[u'andren', u'renew', u'elect', u'fund']
[u'arafat', u'suffer', u'health', u'setback']
[u'asbesto', u'incid', u'disrupt', u'darwin', u'school']
[u'asian', u'leader', u'cautious', u'welcom', u'bush', u'victori']
[u'aussi', u'mumbai']
[u'aussi', u'control']
[u'aussi', u'summer', u'shin', u'vietnam']
[u'aust', u'democrat', u'focus', u'elect', u'debacl']
[u'australia', u'bowl', u'mumbai']
[u'australian', u'leader', u'congratul', u'bush']
[u'babi', u'death', u'prompt', u'child', u'servic', u'review']
[u'bait', u'program', u'cull', u'exot', u'number']
[u'balco', u'suppli', u'greek', u'sprinter']
[u'bashir', u'defiant', u'bomb', u'trial']
[u'beer', u'honour', u'black', u'senat']
[u'border', u'search', u'overdu', u'tourist']
[u'tech', u'fund', u'assist', u'canberra', u'project']
[u'blackout', u'spark', u'power', u'suppli', u'scrutini']
[u'blue', u'warrior', u'sword']
[u'boje', u'pull', u'indian', u'tour']
[u'book', u'royalti', u'benefit', u'tasmanian', u'devil']
[u'die', u'lightn', u'strike']
[u'brake', u'emerg', u'qanta']
[u'brekki', u'boost', u'men', u'relationship']
[u'burleigh', u'clean', u'beach', u'award']
[u'bush', u'flag', u'taxat', u'public', u'educ', u'chang']
[u'bush', u'spell', u'second', u'term', u'agenda']
[u'bush', u'boost', u'terror', u'fight']
[u'busi', u'accept', u'disrupt', u'long', u'term']
[u'nation', u'anti', u'corrupt', u'bodi']
[u'call', u'chang', u'irrespons', u'advertis']
[u'cana', u'win', u'battl', u'bruis', u'pari']
[u'central', u'highland', u'escap', u'major', u'storm', u'damag']
[u'chairman', u'reassur', u'staff', u'shake']
[u'chang', u'afoot', u'south', u'coast', u'fish', u'plan']
[u'charg', u'croc', u'reloc', u'breed', u'program']
[u'church', u'goer', u'forgiv', u'blaze']
[u'civil', u'libertarian', u'rais', u'concern', u'screen']
[u'competit', u'drain', u'lion', u'nathan', u'profit']
[u'conflict', u'report', u'arafat', u'condit']
[u'confus', u'surround', u'vanuatus', u'posit', u'taiwan']
[u'consum', u'affair', u'warn', u'pool', u'build', u'problem']
[u'coron', u'investig', u'sweat', u'lodg', u'death']
[u'costa', u'weigh', u'disput']
[u'coulthard', u'put', u'case', u'william', u'report']
[u'council', u'extend', u'rezon', u'consult', u'time']
[u'council', u'get', u'spend', u'warn']
[u'councillor', u'urg', u'partial', u'clear']
[u'council', u'toll', u'upgrad', u'road']
[u'council', u'investig', u'sport', u'field', u'sit']
[u'council', u'unhappi', u'boundari', u'plan']
[u'court', u'escape', u'get', u'increas', u'sentenc']
[u'court', u'order', u'govt', u'cooper', u'bomb', u'clean']
[u'crash', u'judg', u'provid', u'polic', u'statement']
[u'croc', u'calvari', u'cop', u'match']
[u'cull', u'cut', u'wild', u'number']
[u'democrat', u'search', u'clinton']
[u'desert', u'jenkin', u'give', u'dishonour', u'discharg']
[u'doctor', u'murder', u'charg', u'drop']
[u'doctor', u'mislead', u'medic', u'council', u'suspend']
[u'doomadge', u'get', u'perman', u'doctor']
[u'driver', u'jail', u'friend', u'death']
[u'drought', u'assist', u'extendend']
[u'drought', u'blame', u'disappoint', u'grain', u'harvest']
[u'drug', u'awar', u'campaign', u'target', u'young', u'peopl']
[u'prompt', u'greater', u'water', u'tank', u'demand']
[u'eccleston', u'back', u'south', u'african']
[u'endang', u'wallabi', u'releas', u'worri', u'farmer']
[u'european', u'leader', u'patch', u'divis', u'bush']
[u'famili', u'win', u'damag', u'husband', u'drown']
[u'farmer', u'seek', u'mine', u'concern', u'meet']
[u'farm', u'firm', u'fin', u'jackeroo', u'death']
[u'fast', u'eat', u'moroccan', u'wallet']
[u'favourit', u'win', u'photo', u'oak']
[u'ferguson', u'get', u'ruud', u'respons', u'plea', u'goal']
[u'financi', u'jail', u'client', u'cash', u'scam']
[u'stinger', u'strand']
[u'fisher', u'catch', u'quota', u'worri']
[u'florey', u'caus', u'unknown']
[u'kill', u'afghanistan', u'bomb', u'attack']
[u'french', u'recal', u'hooker', u'wallabi', u'test']
[u'french', u'rugbi', u'boss', u'bankrol', u'world', u'glori']
[u'talk', u'resum', u'elect', u'dust', u'settl']
[u'fund', u'help', u'event']
[u'garden', u'australia', u'staff', u'heel']
[u'leak', u'contain', u'wantirna']
[u'leak', u'repair']
[u'giteau', u'thorn', u'add', u'barbarian', u'squad']
[u'govt', u'consid', u'fund', u'plan']
[u'govt', u'sound', u'highway', u'safeti']
[u'govt', u'vet', u'protest']
[u'gracemer', u'host', u'quarter', u'hors', u'sale']
[u'greec', u'summon', u'ambassador', u'macedonia']
[u'group', u'maintain', u'lake', u'save', u'effort']
[u'gympi', u'water', u'woe', u'upset']
[u'harri', u'scarf', u'apologis', u'mislead']
[u'hauritz', u'look', u'forward', u'turn', u'pitch']
[u'hickss', u'lawyer', u'trial', u'delay']
[u'histor', u'cottag', u'owner', u'face', u'demolit', u'legal']
[u'hotel', u'charg', u'proper', u'mainten']
[u'import', u'keen', u'shanghai', u'darwin', u'trial']
[u'india', u'face', u'tough', u'chase', u'mumbai']
[u'india', u'skittl', u'mumbai', u'track', u'turn', u'nasti']
[u'show', u'sign', u'wind', u'monitor']
[u'irish', u'intern', u'cite', u'alleg', u'racial', u'abus']
[u'jail', u'offic', u'recognis', u'weapon', u'discoveri']
[u'judg', u'reserv', u'decis', u'volker', u'case']
[u'karzai', u'revamp', u'cabinet', u'poll']
[u'katter', u'warn', u'nation', u'compromis']
[u'kemosab', u'racist', u'court', u'rule']
[u'kerri', u'look', u'support', u'forward', u'uniti']
[u'reject', u'broom', u'land', u'deal', u'worri']
[u'kosovar', u'refuge', u'abl', u'appeal', u'visa', u'decis']
[u'krill', u'declin', u'threaten', u'antarct', u'wildlif']
[u'kyli', u'launch', u'line', u'leg']
[u'labor', u'time', u'latham', u'say']
[u'latham', u'urg', u'judg', u'provid', u'blood', u'sampl']
[u'launceston', u'mayor', u'say', u'debt', u'manag']
[u'lehman', u'name', u'ryder', u'captain']
[u'lockyer', u'return', u'franc']
[u'loss', u'squeez', u'citrus', u'properti']
[u'lotteri', u'fund', u'leisur', u'centr']
[u'lyon', u'ruud', u'star', u'perform']
[u'maher', u'predict', u'long', u'test', u'career', u'hauritz']
[u'marin', u'pois', u'fallujah', u'strike']
[u'martin', u'pressur', u'freightlink', u'price', u'rise']
[u'mayor', u'back', u'citrus', u'tree', u'remov', u'plan']
[u'middl', u'east', u'leader', u'offer', u'bush', u'cautious']
[u'milit', u'parad', u'kidnap', u'truck', u'driver', u'video']
[u'miner', u'offer', u'rescu', u'comp', u'safeti', u'assur']
[u'miner', u'park', u'plan', u'blackwat']
[u'minist', u'canva', u'juvenil', u'justic', u'concern']
[u'minist', u'probe', u'hospit', u'treatment', u'claim']
[u'miss', u'tourist', u'possibl', u'spot', u'outback']
[u'mitcham', u'frankston', u'freeway', u'debacl', u'take']
[u'molik', u'continu', u'win', u'form']
[u'moral', u'valu', u'see', u'drawcard', u'bush']
[u'needi', u'access', u'region', u'public', u'hous']
[u'approv', u'compens', u'gaza', u'settler']
[u'pursu', u'quarri', u'blast', u'complaint']
[u'nake', u'canadian', u'jump', u'move', u'qanta']
[u'nation', u'food', u'open', u'takeov']
[u'book', u'warn', u'quarantin', u'risk']
[u'love', u'nest', u'amor', u'wombat']
[u'campus', u'plan', u'richmond', u'vale']
[u'cours', u'promis', u'game']
[u'quick', u'evid', u'rail', u'disput']
[u'rule', u'council', u'author', u'test', u'case']
[u'retain', u'credit', u'rat']
[u'opposit', u'propos', u'develop', u'chang']
[u'oak', u'fashion', u'highlight', u'ladi']
[u'octob', u'profit', u'month', u'sale']
[u'boost', u'daili', u'product']
[u'opposit', u'consid', u'albani', u'convent', u'centr']
[u'opposit', u'hear', u'riverland', u'farm', u'issu']
[u'optus', u'post', u'quarter', u'profit']
[u'oust', u'presid', u'refus', u'leav', u'offic']
[u'pie', u'mcgough']
[u'plan', u'botan', u'garden', u'revamp', u'target', u'tourist']
[u'polic', u'paint', u'sniff']
[u'polic', u'warn', u'monkey', u'bike', u'rider']
[u'pool', u'builder', u'seek', u'water', u'polici']
[u'presid', u'oust', u'spark', u'strife', u'french']
[u'probe', u'launch', u'illeg', u'tree', u'clear']
[u'profit', u'rise', u'news', u'corp', u'move', u'offshor']
[u'proud', u'bush', u'call', u'trust', u'uniti']
[u'public', u'urg', u'book', u'train', u'travel', u'earli']
[u'public', u'urg', u'know', u'asbesto', u'danger']
[u'push', u'maintain', u'rugbi', u'leagu', u'presenc']
[u'qanta', u'emerg', u'land', u'prompt', u'investig']
[u'firi', u'want', u'recognit', u'fight', u'canberra']
[u'quota', u'help', u'boost', u'fish', u'sustain']
[u'ranger', u'safeti', u'audit', u'continu']
[u'region', u'airlin', u'seek', u'major', u'airport', u'access']
[u'region', u'airlin', u'discuss', u'airport', u'woe']
[u'rescu', u'chopper', u'group', u'form', u'trust', u'fund']
[u'research', u'uncov', u'ancient', u'roman', u'cosmet']
[u'retir', u'villag', u'blaze', u'claim', u'woman', u'life']
[u'road', u'seal', u'bring', u'benefit']
[u'roddick', u'safin', u'pari']
[u'roddick', u'plan', u'davi', u'assault', u'plug', u'grand', u'slam']
[u'name', u'ahead', u'lyon', u'scotland', u'test']
[u'saddam', u'evid', u'lose', u'taint', u'say', u'human', u'right']
[u'econom', u'outlook', u'tip', u'growth', u'slowdown']
[u'school', u'asbesto', u'accid', u'prompt', u'urgent', u'review']
[u'senat', u'stress', u'need', u'telstra', u'effici']
[u'seven', u'kill', u'thai', u'unrest']
[u'sever', u'storm', u'blow', u'central', u'australia']
[u'shake', u'increas']
[u'sit', u'day', u'rais', u'democrat']
[u'uae', u'found', u'father', u'assum', u'presid']
[u'south', u'australian', u'urg', u'prepar', u'earthquak']
[u'springbok', u'grand', u'slam']
[u'stanhop', u'hail', u'histor', u'govt']
[u'strong', u'earthquak', u'shake', u'northern', u'japan']
[u'strong', u'show', u'news', u'corp']
[u'studi', u'consid', u'tourism', u'heritag', u'link']
[u'studi', u'find', u'economi', u'withstand', u'steelwork', u'demis']
[u'sweat', u'lodg', u'man', u'condit', u'improv']
[u'sweat', u'lodg', u'survivor', u'deni', u'bizarr', u'practic']
[u'swimmer', u'seek', u'privat', u'prosecut', u'volker']
[u'sydney', u'polic', u'clear', u'serial', u'rap']
[u'sydney', u'polic', u'crack', u'ident', u'fraud', u'ring']
[u'taiwan', u'high', u'court', u'uphold', u'elect']
[u'takeov', u'rumour', u'put', u'demand']
[u'town', u'leav', u'place']
[u'teacher', u'abus', u'complaint', u'rise']
[u'teacher', u'admit', u'underag', u'student']
[u'tiger', u'bullish', u'bail', u'bushrang']
[u'time', u'run', u'oversea', u'adopt', u'applic']
[u'tourism', u'bodi', u'confid', u'improv', u'facil', u'ahead']
[u'tourism', u'campaign', u'gold', u'coast']
[u'track', u'work', u'affect', u'vline', u'servic']
[u'treasur', u'welcom', u'credit', u'rat']
[u'treasuri', u'promis', u'recruit', u'desk', u'work']
[u'ugandan', u'govt', u'agre', u'talk', u'rebel']
[u'scientist', u'propos', u'beagl', u'mission']
[u'union', u'agre', u'construct', u'work', u'long']
[u'union', u'fight', u'virgin', u'blue', u'roster', u'chang']
[u'ambassador', u'encourag', u'latham', u'visit', u'washington']
[u'ambassador', u'step', u'asid', u'year']
[u'elect', u'jitter', u'strengthen', u'aussi', u'dollar']
[u'farmer', u'defend', u'agricultur', u'spend']
[u'iraqi', u'troop', u'prepar', u'fallujah', u'assault']
[u'voter', u'marriag']
[u'buck', u'build', u'approv', u'trend']
[u'warn', u'half', u'chanc', u'play', u'brisban']
[u'warrior', u'clark', u'consid', u'retir']
[u'water', u'board', u'repair', u'swan', u'river', u'sewag', u'pipe']
[u'whale', u'boat', u'tour', u'oper', u'air', u'regul', u'worri']
[u'white', u'powder', u'forc', u'mail', u'centr', u'evacu']
[u'workshop', u'snub', u'plan', u'port', u'hedland']
[u'workshop', u'promot', u'femal', u'leadership']
[u'yachti', u'arriv', u'lord', u'howe', u'mishap']
[u'boost', u'plan', u'alic', u'shop', u'centr']
[u'charg', u'relat', u'dutch', u'film', u'maker']
[u'abetz', u'call', u'region', u'fund', u'inquiri']
[u'abort', u'debat', u'unsettl', u'counsel', u'client']
[u'afghan', u'kidnapp', u'grow', u'impati']
[u'unveil', u'uniform', u'defam', u'law']
[u'airport', u'close', u'plane', u'mishap']
[u'alcan', u'sign', u'deal', u'produc']
[u'clear', u'give', u'white', u'powder', u'scare']
[u'anderson', u'seek', u'futur', u'proof', u'ahead', u'telstra']
[u'crash', u'spark', u'highway', u'revamp', u'call']
[u'arafat', u'life', u'death']
[u'aspir', u'doctor', u'happi', u'doubl']
[u'asset', u'sale', u'blame', u'longer', u'public', u'hous', u'wait']
[u'aussi', u'touch', u'tour', u'championship']
[u'aust', u'hail', u'agreement', u'antarct', u'fish']
[u'aust', u'plane', u'remain', u'ground']
[u'australian', u'univers', u'world', u'best']
[u'weather', u'forecast', u'cray', u'season', u'start']
[u'banker', u'warn', u'person', u'risk', u'constrain', u'board', u'member']
[u'bore', u'arazi', u'ponder', u'retir']
[u'bowditch', u'lead', u'queensland', u'open']
[u'bridg', u'mishap', u'caus', u'traffic', u'chao']
[u'brother', u'acquit', u'armour', u'driver', u'murder']
[u'brundl', u'blundel', u'team', u'man']
[u'bullet', u'play', u'injur', u'feeman']
[u'burn', u'appoint', u'scotland', u'caretak', u'boss']
[u'bush', u'ponder', u'cabinet', u'chang']
[u'canadian', u'elect', u'marri', u'disgruntl', u'american']
[u'chairman', u'dismiss', u'union', u'propos']
[u'chelsea', u'face', u'everton', u'manchest', u'derbi']
[u'chelsea', u'slam', u'weak', u'mutu']
[u'china', u'ban', u'brain', u'surgeri', u'drug', u'addict', u'cure']
[u'citrus', u'canker', u'decis', u'need', u'today', u'truss']
[u'claremont', u'review', u'polic', u'feel', u'public', u'pressur']
[u'clark', u'leav', u'india', u'troubl']
[u'coal', u'group', u'get', u'boost', u'capac', u'distribut']
[u'comic', u'book', u'scene', u'come', u'life', u'movi']
[u'commission', u'cut', u'busi', u'disput', u'cost']
[u'compani', u'rep', u'cast', u'invest', u'forb']
[u'confer', u'focus', u'visitor', u'centr']
[u'constitut', u'chang', u'recognis', u'indigen']
[u'coron', u'flag', u'advers', u'casa', u'rule']
[u'councillor', u'want', u'exempt']
[u'council', u'mull', u'smoke']
[u'council', u'beat', u'water', u'merger', u'plan']
[u'court', u'fin', u'driver', u'hoon']
[u'court', u'grant', u'injuct', u'halt', u'student', u'deport']
[u'crash', u'judg', u'hand', u'blood', u'sampl']
[u'cruis', u'ship', u'limp', u'port']
[u'dairi', u'industri', u'urg', u'boost', u'campus', u'effort']
[u'darfur', u'brink', u'anarchi']
[u'death', u'spark', u'mutton', u'bird', u'protect', u'plan']
[u'defenc', u'say', u'deal', u'sign', u'weapon', u'test']
[u'democrat', u'green', u'merger', u'unlik', u'allison']
[u'dept', u'investig', u'caus', u'accid']
[u'doctor', u'palestinian', u'deni', u'arafat', u'die']
[u'doctor', u'scaremong', u'hospit', u'budget']
[u'doctor', u'border', u'pull', u'iraq']
[u'drug', u'traffick', u'give', u'year', u'jail', u'term']
[u'edwardss', u'wife', u'diagnos', u'cancer']
[u'elect', u'success', u'spark', u'reform']
[u'elland', u'road', u'stage', u'leagu', u'club', u'showpiec']
[u'emot', u'servic', u'farewel', u'minist']
[u'reject', u'blair', u'anti', u'bush', u'claim']
[u'farrel', u'succumb', u'virus', u'ahead', u'nation']
[u'father', u'unhappi', u'wife', u'jail', u'sentenc']
[u'feder', u'polic', u'receiv', u'award', u'bali', u'servic']
[u'fighter', u'pilot', u'mistaken', u'target', u'school']
[u'fire', u'bullet', u'look', u'razorback']
[u'firefight', u'death', u'felt', u'servic']
[u'fletcher', u'reappoint', u'rabbitoh', u'skipper']
[u'east', u'timor', u'governor', u'convict', u'overturn']
[u'forum', u'boost', u'polic', u'public', u'relat']
[u'freeway', u'speed', u'limit', u'chang', u'condit']
[u'fungus', u'threaten', u'tasmanian', u'frog']
[u'gold', u'coast', u'council', u'drop', u'artifici', u'reef', u'plan']
[u'hauritz', u'make', u'breakthrough']
[u'hawk', u'look', u'extend', u'ladder', u'lead']
[u'health', u'author', u'offer', u'water', u'assur']
[u'health', u'worker', u'offer', u'grant', u'boost', u'breast']
[u'help', u'avail', u'struggl', u'farmer']
[u'hewitt', u'reach', u'pari', u'quarter']
[u'hockey', u'plan', u'hurt', u'council', u'financ']
[u'hollywood', u'go', u'onlin', u'file', u'swapper']
[u'hundr', u'battl', u'firework', u'factori', u'blaze']
[u'hunter', u'valley', u'face', u'obes', u'epidem']
[u'iaea', u'chief', u'deni', u'damag', u'bush', u'campaign']
[u'immigr', u'dept', u'appeal', u'man', u'releas']
[u'independ', u'bodi', u'complet', u'ranger', u'audit']
[u'india', u'australia', u'even', u'pois', u'lunch']
[u'india', u'notch', u'memor', u'mumbai']
[u'indonesian', u'face', u'court', u'bomb', u'workshop']
[u'insur', u'council', u'criticis', u'govt']
[u'insur', u'report', u'offer', u'littl', u'support', u'premium']
[u'israel', u'continu', u'block', u'arafat', u'jerusalem', u'burial']
[u'isra', u'tank', u'shell', u'kill', u'gaza']
[u'israel', u'tighten', u'secur']
[u'ivori', u'coast', u'govt', u'bomb', u'rebel', u'hold', u'citi']
[u'jackson', u'lose', u'remov', u'prosecutor']
[u'jone', u'stump', u'scotland']
[u'kalgoorli', u'extend', u'christma', u'trade', u'hour']
[u'karzai', u'vow', u'stamp', u'afghan', u'militia']
[u'grow', u'sperm', u'father', u'babi', u'mice']
[u'labor', u'endors', u'hardi', u'asbesto', u'victim', u'legisl']
[u'labor', u'urg', u'govt', u'step', u'reconcili', u'effort']
[u'langer', u'hayden', u'rewrit', u'record', u'book']
[u'leader', u'pitch', u'job', u'south', u'australian']
[u'lebanes', u'hostag', u'free', u'return', u'home']
[u'lgaq', u'warn', u'council', u'exempt', u'scam']
[u'lightn', u'kill', u'nigerian', u'coach']
[u'locust', u'spray', u'continu', u'south']
[u'macedonia', u'recognit', u'infuri', u'greec']
[u'women', u'view', u'ultrasound', u'abort']
[u'sign', u'brown', u'deal']
[u'marin', u'await', u'order', u'fallujah', u'assault']
[u'market', u'finish', u'week', u'posit', u'note']
[u'martin', u'highlight', u'ghan', u'shortcom']
[u'melbourn', u'switch', u'doubl', u'book', u'crusad']
[u'jail', u'valley', u'bash']
[u'midwif', u'caus', u'babi', u'death']
[u'minist', u'promis', u'crackdown', u'develop', u'site']
[u'minist', u'reject', u'bushfir', u'claim']
[u'minist', u'wont', u'specul', u'schooli']
[u'mobil', u'internet', u'grow', u'telecom', u'profit']
[u'mogg', u'stay', u'canberra']
[u'molik', u'continu', u'unbeaten']
[u'question', u'moor', u'applic', u'reject']
[u'murder', u'charg', u'drop', u'shoot', u'case']
[u'mutu', u'suspend', u'seven', u'month']
[u'naturopath', u'sweat', u'lodg', u'warn', u'danger']
[u'newcastl', u'doubl', u'stop', u'dynamo']
[u'inshor', u'fish', u'zone', u'forc']
[u'north', u'open']
[u'vaccin', u'halt', u'spread']
[u'nicotin', u'sensit', u'mice', u'smoke', u'research']
[u'jail', u'term', u'kill', u'autist']
[u'fight', u'river', u'weed', u'infest']
[u'odd', u'centenarian', u'collect', u'birthday']
[u'price', u'slide', u'resum']
[u'opera', u'hous', u'trespass', u'face', u'penalti']
[u'opposit', u'accus', u'govt', u'reduc', u'parliament']
[u'opposit', u'call', u'polic', u'station', u'fund']
[u'opposit', u'bunburi', u'focus']
[u'palestinian', u'dismiss', u'fear', u'power', u'struggl']
[u'palestinian', u'secur', u'servic', u'alert']
[u'palestinian', u'pray', u'arafat', u'aqsa', u'mosqu']
[u'parkinson', u'go', u'brazil']
[u'parkinson', u'studi', u'shed', u'light', u'dopamin', u'learn']
[u'peugeot', u'citroen', u'ralli', u'race']
[u'polic', u'chase', u'grog', u'runner']
[u'polic', u'seek', u'suspect', u'church', u'blaze']
[u'politician', u'request', u'limit', u'icac', u'power']
[u'poll', u'show', u'brack', u'govt', u'lose', u'support']
[u'port', u'author', u'beat', u'bomb', u'compo', u'chanc']
[u'port', u'kembla', u'take', u'deliveri', u'wave', u'energi', u'power']
[u'powder', u'indentifi', u'navi', u'base', u'scare']
[u'power', u'author', u'kimberley', u'delay']
[u'problem', u'squeez', u'fruit', u'firm', u'profit']
[u'project', u'offic', u'boost', u'school', u'retent', u'rat']
[u'prolif', u'spammer', u'give', u'year', u'jail']
[u'public', u'urg', u'tree', u'vandal']
[u'puppi', u'farm', u'owner', u'reject', u'cruelti', u'claim']
[u'push', u'region', u'psychiatrist']
[u'putin', u'sign', u'kyoto', u'protocol']
[u'race', u'club', u'secur', u'melbourn', u'meet']
[u'rain', u'band', u'bring', u'good', u'fall', u'western']
[u'rain', u'delay', u'minist', u'visit', u'tarkin']
[u'rain', u'expect', u'worsen', u'farmer', u'prospect']
[u'rain', u'fail', u'lift', u'sydney', u'level']
[u'rainfal', u'fail', u'lift', u'water', u'suppli']
[u'rain', u'offer', u'relief', u'parch', u'farmer']
[u'rain', u'late', u'farmer']
[u'raul', u'close', u'record', u'real', u'relief']
[u'remot', u'road', u'give', u'facelift']
[u'rental', u'hous', u'expens', u'worker']
[u'rocket', u'kill', u'children', u'iraq']
[u'rspca', u'happi', u'cruelti', u'rule']
[u'africa', u'wide', u'protest', u'aid', u'drug']
[u'scot', u'leav', u'second', u'stringer', u'wallabi']
[u'search', u'miss', u'nurs', u'home', u'resid']
[u'secur', u'guard', u'charg', u'elder', u'man', u'death']
[u'sehwag', u'indian', u'reviv']
[u'seven', u'network', u'poor', u'rat', u'prompt', u'share', u'dive']
[u'smart', u'bomb', u'unwelcom', u'smart', u'state']
[u'smyth', u'shuffl', u'frontbench']
[u'snowi', u'angler', u'prize']
[u'social', u'plan', u'target', u'specialis', u'servic']
[u'stanhop', u'call', u'self', u'govern', u'review']
[u'state', u'jam', u'hardi', u'law']
[u'basil', u'scratch']
[u'kilda', u'pier', u'arsonist', u'jail']
[u'strand', u'highlight', u'need', u'servic']
[u'strike', u'gold', u'miner', u'work']
[u'tabcorp', u'consolid', u'casino', u'manag', u'effort']
[u'tah', u'sign', u'oyoung', u'cover', u'whitak']
[u'talk', u'avert', u'virgin', u'blue', u'strike']
[u'ferri', u'cut', u'cross']
[u'offic', u'net', u'near', u'crackdown', u'rorter']
[u'tendulkar', u'laxman', u'lead', u'recoveri']
[u'tesk', u'place', u'japan']
[u'dead', u'iraq', u'bomb']
[u'redeploy', u'troop', u'kill', u'iraq']
[u'tourism', u'impact', u'marin', u'mammal', u'prompt', u'review']
[u'track', u'declar', u'safe', u'close', u'spring', u'carniv']
[u'trial', u'help', u'address', u'farmer', u'frost', u'woe']
[u'truck', u'accid', u'claim', u'pedestrian', u'life']
[u'truck', u'crash', u'fatal', u'local', u'accid']
[u'trucki', u'get', u'suspend', u'jail', u'term']
[u'tszyu', u'aim', u'shut', u'sharmba']
[u'tourist', u'bodi', u'fli', u'home']
[u'approv', u'australian', u'resolut', u'weapon']
[u'uncertainti', u'surround', u'citrus', u'canker', u'plan']
[u'union', u'dump', u'labor', u'improv', u'imag']
[u'union', u'promis', u'coal', u'mine', u'accid', u'crackdown']
[u'union', u'want', u'esso', u'input', u'disput']
[u'trial', u'smart', u'bomb', u'aust', u'exercis']
[u'recognis', u'macedonia', u'offici']
[u'syria', u'embassi', u'temporarili', u'close']
[u'stock', u'rise', u'price', u'fall']
[u'warn', u'immin', u'terrorist', u'attack', u'uzbekistan']
[u'vanuatu', u'push', u'friendship', u'taiwan']
[u'venus', u'surviv', u'scare', u'philadelphia']
[u'villeneuv', u'check', u'sauber']
[u'voter', u'reject', u'english', u'devolut']
[u'farmer', u'welcom', u'drought', u'relief', u'plan']
[u'policeman', u'admit', u'possess', u'child', u'porn']
[u'propos', u'drought', u'relief', u'fund', u'overhaul']
[u'score', u'china', u'back', u'iron', u'project']
[u'watercolour', u'collect', u'excit', u'galleri']
[u'watson', u'keen', u'impress', u'bull']
[u'wheat', u'deal', u'boon', u'farmer']
[u'wilkinson', u'canada', u'match']
[u'woman', u'convict', u'hire', u'hitman', u'appeal']
[u'woman', u'die', u'wander', u'nurs', u'home']
[u'young', u'patriot', u'destroy', u'ivori', u'coast', u'media', u'offic']
[u'yudhoyono', u'pledg', u'action', u'illeg', u'logger']
[u'million', u'mice', u'invad', u'bulgarian', u'region']
[u'urg', u'garden', u'program']
[u'afghan', u'milit', u'hope', u'hostag', u'talk']
[u'ahm', u'claim', u'bangladesh', u'scare', u'kiwi']
[u'alcoa', u'record', u'eighth', u'refineri', u'spill']
[u'allawi', u'reject', u'annan', u'fallujah', u'warn']
[u'allawi', u'urg', u'nato', u'train', u'support']
[u'annan', u'warn', u'fallujah', u'attack', u'undermin']
[u'arafat', u'condit', u'deterior']
[u'atsic', u'attack', u'nation', u'indigen', u'council']
[u'aussi', u'squash', u'champ', u'british', u'final']
[u'aussi', u'lose', u'battl']
[u'australian', u'troop', u'shoot', u'baghdad']
[u'author', u'issu', u'rubella', u'vaccin', u'remind']
[u'beatti', u'disturb', u'liber', u'fraud']
[u'beck', u'comeback', u'trail']
[u'black', u'watch', u'relat', u'troop', u'withdraw']
[u'brando', u'link', u'jackson', u'alleg', u'abduct']
[u'carol', u'come', u'cost', u'year']
[u'chilean', u'militari', u'take', u'blame', u'human', u'right']
[u'china', u'coal', u'blast', u'kill']
[u'citi', u'boss', u'fin', u'refere', u'insult']
[u'crayfish', u'stock', u'remain', u'stabl']
[u'death', u'toll', u'rise', u'samarra', u'violenc']
[u'disillus', u'american', u'zealand']
[u'dutch', u'navi', u'seiz', u'million', u'cocain', u'haul']
[u'earli', u'inspect', u'clear', u'flemington', u'race']
[u'emerg', u'talk', u'expect', u'ivori', u'coast', u'violenc']
[u'farmer', u'group', u'anger', u'propos', u'landlin']
[u'fear', u'grow', u'hostag', u'afghanistan']
[u'financi', u'stabil', u'leagu', u'success', u'oneil']
[u'freeman', u'return', u'blunt', u'razor']
[u'communiti', u'brave', u'weather', u'march']
[u'georgia', u'commit', u'troop', u'iraq']
[u'govt', u'announc', u'indigen', u'council']
[u'govt', u'deni', u'aborigin', u'educ', u'crisi']
[u'govt', u'urg', u'tenant', u'collect', u'unclaim', u'bond', u'money']
[u'gregan', u'call', u'longer', u'break']
[u'haa', u'hold', u'halfway', u'lead', u'tiger', u'loom']
[u'readi', u'buri', u'feet']
[u'henri', u'say', u'wenger']
[u'hurrican', u'rebuild', u'fuel', u'growth']
[u'australia', u'admit', u'hewitt']
[u'intern', u'perspect', u'inform', u'stem', u'cell']
[u'investig', u'unearth', u'bosnian', u'mass', u'grave']
[u'iran', u'win', u'back', u'china', u'nuclear', u'stand']
[u'iraqi', u'rebel', u'kill', u'helicopt', u'strike']
[u'israel', u'fear', u'violenc', u'arafat']
[u'israel', u'say', u'troop', u'kill', u'gaza', u'milit']
[u'ivorian', u'militari', u'renew', u'attack', u'rebel', u'french']
[u'journalist', u'death', u'fault', u'armi']
[u'king', u'overcom', u'breaker', u'pirat', u'stun', u'hawk']
[u'kiwi', u'happi', u'wear', u'underdog']
[u'late', u'rain', u'harvest', u'difficult']
[u'legal', u'ecstasi', u'test', u'seek', u'danc', u'fest']
[u'local', u'govern', u'campaign', u'elect']
[u'kill', u'bundaberg', u'speed', u'boat', u'accid']
[u'mauresmo', u'oust', u'venus', u'philadelphia']
[u'merck', u'disput', u'vioxx', u'claim']
[u'midwiv', u'meet', u'discuss', u'crisi']
[u'moor', u'tell', u'democrat', u'look', u'bright']
[u'council', u'need', u'long', u'term', u'support', u'atsic']
[u'newspap', u'report', u'vote', u'error', u'ohio']
[u'opposit', u'back', u'shaw', u'judgement']
[u'palestinian', u'faction', u'meet', u'prevent', u'post']
[u'peruvian', u'maoist', u'trial', u'throw', u'chao']
[u'pitch', u'insult', u'player']
[u'polic', u'defend', u'dead', u'chase', u'record']
[u'polic', u'discov', u'bodi', u'miss', u'woman']
[u'polic', u'diver', u'girl', u'bodi']
[u'polic', u'investig', u'liber', u'fraud', u'alleg']
[u'policeman', u'die', u'accid', u'injuri']
[u'policeman', u'face', u'dismiss', u'child', u'porn']
[u'polic', u'releas', u'detail', u'fail', u'abduct', u'attempt']
[u'pont', u'blast', u'mumbai', u'pitch']
[u'pont', u'condemn', u'mumbai', u'pitch']
[u'radar', u'upgrad', u'assist', u'storm', u'predict']
[u'rare', u'bird', u'success', u'migrat', u'tasmania']
[u'rare', u'dolphin', u'autopsi', u'excit', u'scientist']
[u'rebel', u'attack', u'militari', u'camp', u'kashmir', u'dead']
[u'republican', u'seek', u'australian', u'vote']
[u'rocket', u'launch', u'satellit', u'florida']
[u'russian', u'nuclear', u'incid', u'caus', u'panic']
[u'russian', u'product', u'million', u'tonn']
[u'safin', u'hammer', u'hewitt', u'pari']
[u'samarra', u'bomb', u'kill', u'wind']
[u'santini', u'quit', u'tottenham']
[u'scientist', u'track', u'urban', u'crocodil', u'movement']
[u'search', u'girl', u'wash', u'road']
[u'seven', u'fresh', u'violenc', u'indian', u'minist']
[u'sharapova', u'exact', u'reveng', u'molik']
[u'cuddl', u'emir', u'stake', u'boilov']
[u'snowsil', u'prim', u'noosa', u'triathlon']
[u'socceroo', u'great', u'warren', u'die']
[u'sorenstam', u'streak', u'ahead', u'japan']
[u'spirit', u'tasmania', u'blame', u'airfar', u'cut']
[u'statement', u'call', u'hassan', u'releas']
[u'stem', u'cell', u'law', u'debat', u'intern', u'confer']
[u'sweat', u'lodg', u'facilit', u'deni', u'danger']
[u'tallest', u'build', u'hold', u'despit', u'object']
[u'terror', u'charg', u'expect', u'film', u'maker', u'death']
[u'tiger', u'score', u'easi', u'bushrang']
[u'tiger', u'hard', u'target']
[u'tszyu', u'readi', u'care', u'unfinish', u'busi']
[u'share', u'alic', u'prize', u'honour']
[u'confid', u'takeov', u'impact']
[u'union', u'demand', u'cut', u'consult']
[u'suspend', u'ivori', u'coast', u'oper', u'amidst', u'violenc']
[u'unvers', u'offici', u'miss']
[u'artilleri', u'pound', u'fallujah']
[u'counter', u'terror', u'chief', u'resign']
[u'detail', u'punish', u'guantanamo', u'interrog']
[u'give', u'guantanamo', u'human', u'right', u'deadlin']
[u'market', u'continu', u'post', u'bush', u'victori', u'surg']
[u'troop', u'tell', u'civilian', u'flee', u'fallujah']
[u'troop', u'urg', u'resid', u'leav', u'fallujah']
[u'oppos', u'ecstasi', u'test']
[u'victorian', u'town', u'mourn', u'polic', u'offic', u'death']
[u'victori', u'put', u'smile', u'indian', u'face']
[u'polic', u'expect', u'arrest', u'follow', u'drug', u'raid']
[u'window', u'close', u'fallujah', u'settlement', u'allawi']
[u'yass', u'matern', u'ward', u'close']
[u'decid', u'alic', u'broadcast', u'licenc', u'year']
[u'arafat', u'condit', u'critic', u'leader', u'urg', u'uniti']
[u'arafat', u'condit', u'unchang']
[u'arafat', u'death', u'peac', u'process']
[u'arm', u'gang', u'kill', u'policemen', u'iraq']
[u'armstrong', u'hint', u'miss', u'tour']
[u'atsic', u'figur', u'say', u'south', u'miss']
[u'aussi', u'squash', u'star', u'complet', u'open', u'doubl']
[u'australian', u'face', u'fire', u'squad', u'vietnam']
[u'australia', u'spearhead', u'seabird', u'protect', u'campaign']
[u'beachsid', u'council', u'owner', u'short', u'leash']
[u'beatti', u'move', u'quell', u'develop', u'fear']
[u'beckham', u'eager', u'play', u'shoot', u'owen']
[u'bird', u'research', u'hope', u'parrot', u'releas']
[u'black', u'watch', u'command', u'fear', u'baghdad']
[u'black', u'watch', u'move', u'insurg', u'suppli']
[u'boomer', u'cruis', u'victori', u'lynx']
[u'bull', u'destroy', u'redback', u'awesom', u'display']
[u'burma', u'accus', u'corrupt']
[u'bush', u'reach', u'foreign', u'leader']
[u'caravan', u'park', u'owner', u'prepar', u'boom']
[u'blast', u'kill', u'west', u'bank', u'milit']
[u'chariti', u'call', u'generos']
[u'chelsea', u'palac', u'hold', u'gunner']
[u'china', u'claim', u'panda', u'breed', u'breakthrough']
[u'cola', u'take', u'pest', u'indian', u'farmer']
[u'commonwealth', u'game', u'campaign', u'unveil']
[u'concern', u'rais', u'exclus', u'indigen']
[u'construct', u'crackdown', u'christma']
[u'councillor', u'launch', u'elect', u'campaign']
[u'cricket', u'home', u'histor', u'seri']
[u'death', u'toll', u'rise', u'train', u'derail']
[u'domest', u'violenc', u'program', u'see', u'jump', u'prosecut']
[u'domest', u'violenc', u'servic', u'tragic', u'state']
[u'downer', u'hint', u'troop', u'pull', u'iraqi', u'armi']
[u'downer', u'say', u'palestinian', u'need', u'control', u'milit']
[u'french', u'troop', u'kill', u'ivori', u'coast', u'violenc']
[u'chief', u'push', u'alarm', u'escap', u'blaze']
[u'destroy', u'motor', u'east', u'coast']
[u'fleme', u'link', u'match', u'claim', u'indian', u'booki']
[u'fond', u'memori', u'drought', u'break', u'tour']
[u'captain', u'join', u'pitch', u'inquiri']
[u'franc', u'send', u'troop', u'ivori', u'coast']
[u'french', u'reinforc', u'arriv', u'ivori', u'coast']
[u'french', u'school', u'expel', u'sikh']
[u'futur', u'australia', u'continu', u'bright']
[u'galleri', u'disappoint', u'artist', u'absenc']
[u'ganguli', u'return', u'pakistan', u'dayer']
[u'german', u'edg', u'hockeyroo']
[u'govt', u'challeng', u'reveal', u'abort', u'plan']
[u'govt', u'commit', u'redevelop', u'ocean', u'reef', u'marina']
[u'great', u'britain', u'fight', u'sink', u'kiwi']
[u'gunman', u'kill', u'isra', u'shoot']
[u'hakkinen', u'merced']
[u'hope', u'fade', u'wash', u'yarra', u'river']
[u'india', u'test', u'fire', u'nuclear', u'capabl', u'missil']
[u'insurg', u'invit', u'media', u'emb', u'offens']
[u'internet', u'near', u'record', u'level']
[u'investig', u'comb', u'wreckag', u'british', u'train', u'crash']
[u'iraqi', u'interim', u'govern', u'declar', u'martial']
[u'iraqi', u'offic', u'desert', u'fallujah', u'battl', u'plan']
[u'john', u'holland', u'secur', u'perth', u'mandurah', u'contract']
[u'want', u'spur', u'time']
[u'jone', u'slam', u'scottish', u'tactic']
[u'kidnapp', u'afghan', u'day', u'free', u'taliban']
[u'aim', u'reclaim', u'test', u'spot']
[u'locust', u'say']
[u'lightn', u'hit', u'qanta', u'jet']
[u'lobbi', u'seek', u'singl', u'public', u'work', u'unit']
[u'mandurah', u'get', u'tourism', u'gong']
[u'hospitalis', u'drive', u'shoot']
[u'martyn', u'move', u'test', u'rank']
[u'matern', u'coalit', u'pressur', u'govt', u'midwif']
[u'mauresmo', u'philli', u'final']
[u'mix', u'tourism', u'news']
[u'mutu', u'say', u'sorri', u'chelsea', u'fan']
[u'nomin', u'close', u'search', u'archbishop']
[u'scud', u'warn', u'coach']
[u'organis', u'extend', u'sydney', u'hobart', u'nomin']
[u'palestinian', u'leader', u'decid', u'order', u'plan']
[u'palestinian', u'urg', u'conflict']
[u'paralympian', u'offer', u'speedi', u'wheelchair']
[u'penguin', u'monitor', u'return', u'bicheno']
[u'pirat', u'scuttl', u'eminem', u'releas', u'plan']
[u'polic', u'appeal', u'help', u'attack', u'clergyman']
[u'polic', u'investig', u'suspici', u'death']
[u'polic', u'recov', u'bodi', u'second', u'drown', u'girl']
[u'polic', u'search', u'yarra', u'miss']
[u'polic', u'identifi', u'drown']
[u'preliminari', u'nuclear', u'deal', u'reach', u'iran', u'say']
[u'liber', u'deni', u'fraud', u'investig']
[u'railcorp', u'train', u'worker', u'deal', u'passeng']
[u'rain', u'caus', u'havoc', u'road']
[u'rampant', u'itali', u'crush', u'canada']
[u'rare', u'dolphin', u'male', u'scientist']
[u'redback', u'struggl', u'bull']
[u'report', u'say', u'region', u'need', u'infrastructur', u'surviv']
[u'inspector', u'give', u'drug', u'bust', u'power']
[u'safin', u'eye', u'pari', u'titl']
[u'scientist', u'challeng', u'hobbit', u'theori']
[u'search', u'resum', u'bodi', u'drown', u'girl']
[u'secur', u'council', u'denounc', u'ivorian', u'attack']
[u'silver', u'line', u'south', u'east', u'get', u'drench']
[u'soccer', u'world', u'mourn', u'captain', u'socceroo']
[u'sorenstam', u'achiev', u'histor', u'peat', u'japan']
[u'springbok', u'edg', u'past', u'wale']
[u'statement', u'claim', u'dead', u'samarra', u'attack']
[u'student', u'identifi', u'cyclon', u'safe', u'tree']
[u'sudanes', u'govt', u'baulk', u'peac', u'protocol']
[u'territori', u'mango', u'ship']
[u'test', u'improv', u'cancer', u'surviv', u'rat']
[u'tiger', u'readi', u'pounc']
[u'torrenti', u'rain', u'hit', u'south', u'east']
[u'tour', u'oper', u'unconcern', u'ferri', u'cut']
[u'train', u'derail', u'kill', u'southern', u'england']
[u'tszyu', u'crush', u'mitchel', u'retain', u'world', u'titl']
[u'tyson', u'chase', u'fight']
[u'franc', u'demand', u'ivori', u'coast', u'violenc']
[u'forc', u'pound', u'fallujah', u'destroy', u'hospit']
[u'govt', u'warn', u'power', u'station', u'privatis']
[u'wallabi', u'scottish', u'challeng']
[u'walton', u'snowsil', u'claim', u'win', u'noosa']
[u'youth', u'drug', u'alcohol', u'program']
[u'gold', u'oper', u'soon']
[u'aborigin', u'murder', u'trial', u'get', u'websit', u'remembr']
[u'access', u'woe', u'hamper', u'bushfir', u'effort']
[u'account', u'jail', u'warn', u'illeg']
[u'actress', u'shock', u'ravag', u'darfur']
[u'act', u'workforc', u'skill', u'lead', u'countri']
[u'actu', u'say', u'costello', u'wrong', u'wage', u'rise', u'impact']
[u'actu', u'seek', u'minimum', u'wage', u'rise']
[u'allawi', u'ditch', u'fallujah', u'talk']
[u'marathon', u'runner', u'deserv', u'medal']
[u'qaeda', u'video', u'show', u'suicid', u'attack', u'british']
[u'amnesti', u'report', u'detail', u'solomon', u'abus']
[u'anger', u'plan', u'rat', u'fund', u'mayor']
[u'anti', u'nuclear', u'protest', u'train', u'franc']
[u'arafat', u'wife', u'critic', u'palestinian', u'deputi']
[u'asbesto', u'licens', u'guidelin', u'chang']
[u'australia', u'choos', u'grass', u'austrian']
[u'australian', u'divorc']
[u'australian', u'continu', u'domin', u'gillespi']
[u'australia', u'continu', u'domin', u'gillespi']
[u'ban', u'mutu', u'offer', u'romania', u'coach']
[u'bishop', u'say', u'elect', u'result', u'voter', u'want']
[u'boati', u'urg', u'cyclon', u'readi']
[u'bourdai', u'captur', u'champ', u'crown']
[u'critic', u'truck']
[u'bundi', u'beat', u'skin', u'cancer']
[u'bush', u'plan', u'marriag']
[u'bushrang', u'tiger']
[u'caligne', u'girl', u'design', u'coin']
[u'boost', u'region', u'council', u'infrastructur']
[u'govt', u'incent', u'draw', u'teacher']
[u'camera', u'rais', u'revenu', u'lower', u'road', u'toll']
[u'cane', u'farmer', u'cop', u'land', u'clear', u'fine']
[u'bomb', u'kill', u'baghdad']
[u'carr', u'interven', u'rail', u'disput']
[u'central', u'charl', u'perkin', u'carniv']
[u'child', u'safeti', u'worker', u'brush', u'counsel', u'skill']
[u'chines', u'offici', u'face', u'punish', u'babi', u'death']
[u'church', u'shock', u'attack', u'anglican', u'dean']
[u'council', u'impos', u'limit', u'mckenzi', u'river', u'bridg']
[u'council', u'eas', u'water', u'ban']
[u'council', u'jam', u'hardi', u'boycott']
[u'council', u'urg', u'delay', u'industri', u'plan']
[u'counsel', u'mundubbera', u'student', u'sister']
[u'countri', u'energi', u'announc', u'merger', u'plan']
[u'court', u'approv', u'esso', u'compens']
[u'crayfish', u'number', u'stabilis', u'concern', u'remain']
[u'croc', u'maintain', u'home', u'advantag']
[u'croc', u'warn', u'follow', u'fish', u'spot', u'captur']
[u'celebr', u'flow']
[u'dalla', u'star', u'howard', u'keel', u'die']
[u'darwin', u'mayor', u'disagre', u'council', u'hardi', u'boycott']
[u'depart', u'say', u'standard', u'test', u'limit', u'fine']
[u'detent', u'centr', u'chang', u'alter', u'detaine', u'behaviour']
[u'downpour', u'boost', u'novemb', u'rainfal', u'figur']
[u'downpour', u'wash', u'away', u'profit']
[u'dutch', u'islam', u'school', u'blast']
[u'east', u'coast', u'dredg', u'start', u'christma']
[u'economist', u'warn', u'rate', u'rise', u'like']
[u'effort', u'help', u'reduc', u'cherbourg', u'child', u'abus']
[u'email', u'scammer', u'jail', u'year']
[u'employe', u'urg', u'wari', u'work', u'agreement']
[u'make', u'footbal', u'blatter']
[u'ergon', u'readi', u'storm', u'challeng']
[u'eurobodalla', u'shin', u'train', u'award']
[u'farina', u'base', u'europ']
[u'farmer', u'hope', u'rain']
[u'farmer', u'need', u'greenhous', u'studi']
[u'feder', u'parliament', u'place', u'abort']
[u'firefight', u'battl', u'contain', u'nation', u'park', u'blaze']
[u'time', u'show', u'rope']
[u'fischer', u'want', u'camera', u'stuart', u'highway']
[u'foreign', u'fighter', u'parad', u'iraq', u'televis']
[u'forest', u'group', u'dismiss', u'call', u'scrap']
[u'forum', u'gaug', u'public', u'sentiment', u'educ']
[u'kill', u'south', u'african', u'prison', u'clash']
[u'freight', u'train', u'crash', u'abandon']
[u'gatton', u'mayor', u'see', u'benefit', u'ipswich', u'allianc']
[u'glori', u'snare', u'young', u'leagu']
[u'goal', u'unit', u'stumbl']
[u'golden', u'grove', u'win', u'underground', u'rescu', u'event']
[u'govt', u'quiz', u'speed', u'camera', u'revenu']
[u'govt', u'say', u'furnitur', u'plan', u'boost', u'job']
[u'locat', u'asbesto', u'dump']
[u'griffith', u'rip', u'bushrang']
[u'hauritz', u'confid', u'keep', u'test', u'spot']
[u'hawk']
[u'health', u'group', u'beat', u'govt', u'pledg']
[u'health', u'manag']
[u'henri', u'race', u'melbourn', u'world', u'meet']
[u'hezbollah', u'send', u'drone', u'israel']
[u'high', u'hop', u'latest', u'wild', u'bait', u'scheme']
[u'hockeyroo', u'suffer', u'second', u'champion', u'loss']
[u'hope', u'disput', u'notif', u'stop', u'ax', u'rural']
[u'hundr', u'home', u'damag', u'rainstorm']
[u'indigen', u'council', u'member', u'urg', u'stay', u'touch']
[u'indigen', u'hunt', u'spark', u'dugong', u'extinct', u'fear']
[u'internet', u'child', u'porn', u'fuel', u'abus']
[u'iraqi', u'financ', u'minist', u'surviv', u'bomb', u'attack']
[u'iraqi', u'give', u'ahead', u'fallujah', u'assault']
[u'ivorian', u'presid', u'appeal', u'calm']
[u'rise']
[u'john', u'train']
[u'like', u'spur', u'boss']
[u'jone', u'urg', u'wallabi', u'maintain', u'intens']
[u'kalgoorli', u'support', u'indigen', u'council']
[u'killer', u'request', u'lower', u'secur', u'studi']
[u'lehmann', u'keen', u'play', u'test', u'cricket']
[u'lennon', u'await', u'report', u'spirit', u'tasmania']
[u'librari', u'transact', u'centr', u'fund']
[u'lobbi', u'unhappi', u'possibl', u'landlin']
[u'local', u'public', u'educ']
[u'macgil', u'hope', u'test', u'recal']
[u'jail', u'attempt']
[u'man', u'suicid', u'threat', u'danger', u'polic']
[u'market', u'slip']
[u'mauresmo', u'retain', u'philadelphia', u'titl']
[u'mayor', u'lobbi', u'state', u'bathhous', u'fund']
[u'mayor', u'reject', u'councillor', u'rise']
[u'mayor', u'seek', u'defenc', u'minist', u'meet']
[u'mclinden', u'quit', u'raider']
[u'mechan', u'woe', u'fatal', u'speed', u'boat', u'mishap']
[u'melbourn', u'water', u'catchment', u'half']
[u'arrest', u'dutch', u'religi', u'tension', u'increas']
[u'milat', u'say', u'brother', u'innoc']
[u'manag', u'secur', u'award']
[u'minist', u'gather', u'nuclear', u'secur', u'talk']
[u'mitsubishi', u'motor', u'half', u'loss']
[u'montella', u'strike', u'roma', u'stall', u'milan']
[u'seek', u'black', u'river', u'water', u'fund']
[u'morgan', u'prepar', u'mayor', u'elect']
[u'nelson', u'fear', u'nation', u'literaci']
[u'pool', u'plan', u'offer', u'dongara', u'save']
[u'chang', u'iraq', u'commit', u'downer']
[u'loss', u'follow', u'credit', u'union', u'merger']
[u'plan', u'probe', u'tweed', u'shire', u'polit', u'donat']
[u'nuclear', u'watchdog', u'warn', u'global', u'danger']
[u'complet', u'bangladesh', u'sweep']
[u'welcom', u'surg', u'migrat']
[u'win', u'trade', u'disput']
[u'oakey', u'airport', u'passeng', u'flight']
[u'opposit', u'educ', u'question', u'literaci', u'review']
[u'owen', u'find', u'real', u'second']
[u'palestinian', u'chief', u'visit', u'arafat']
[u'palestinian', u'leader', u'visit', u'arafat']
[u'palestinian', u'isra', u'kill', u'fight']
[u'pirat', u'win', u'formula']
[u'pitcairn', u'get', u'femal', u'mayor']
[u'planet', u'urg', u'better', u'recycl', u'effort']
[u'polic', u'teen', u'crash', u'victim']
[u'polic', u'search', u'gunmen', u'random', u'shoot']
[u'polic', u'start', u'search', u'unsolv', u'doubl', u'murder']
[u'polic', u'capsicum', u'spray', u'outsid', u'mildura', u'nightspot']
[u'pollut', u'cold', u'snap', u'link', u'heart', u'death']
[u'price', u'rise', u'follow', u'fish', u'quota']
[u'euthanasia', u'group', u'plan', u'peac', u'pill', u'workshop']
[u'professor', u'propos', u'collect', u'fin']
[u'public', u'input', u'seek', u'educ', u'plan']
[u'quak', u'forum', u'consid', u'build', u'method']
[u'radcliff', u'bounc', u'marathon']
[u'radcliff', u'bounc']
[u'rail', u'station', u'work', u'derail', u'train', u'time']
[u'rain', u'affect', u'burn', u'off', u'time']
[u'see', u'press', u'need', u'rat', u'rise']
[u'reason', u'aust', u'soldier', u'shoot', u'iraqi', u'unclear']
[u'report', u'find', u'european', u'bird', u'speci', u'face', u'extinct']
[u'research', u'show', u'children', u'parent', u'sick']
[u'robinson', u'england', u'captainci', u'report']
[u'roger', u'investig', u'field', u'incid']
[u'russel', u'bomber', u'seek', u'transfer']
[u'safin', u'sweep', u'past', u'stepanek', u'pari', u'crown']
[u'screen', u'socceroo', u'game']
[u'scheme', u'consid', u'passiv', u'smoke', u'impact']
[u'scott', u'allenbi', u'confirm', u'australian', u'master']
[u'seventh', u'person', u'die', u'british', u'train', u'crash']
[u'shaw', u'carr']
[u'snooker', u'great', u'eddi', u'charlton', u'die']
[u'springborg', u'warn', u'beatti', u'street', u'deceit']
[u'stab', u'sentenc', u'short']
[u'storm', u'caus', u'hail', u'damag', u'power', u'loss', u'south', u'east']
[u'storm', u'lash', u'second']
[u'taiwan', u'stag', u'mock', u'invas', u'drill']
[u'aborigin', u'lack', u'represent']
[u'tent', u'embassi', u'observ', u'shellcov', u'work']
[u'test', u'selector', u'face', u'bat', u'line', u'dilemma']
[u'test', u'highlight', u'good', u'townsvill', u'qualiti']
[u'thousand', u'sign', u'petit', u'kuranda', u'road']
[u'weekend', u'accid', u'hunter', u'road']
[u'tiger', u'slip', u'goosen', u'surg', u'victori']
[u'toddler', u'die', u'truck']
[u'tourism', u'confer', u'consid', u'natur', u'asset']
[u'tree', u'plant', u'help', u'offset', u'plant', u'emiss']
[u'trenorden', u'demand', u'region', u'health', u'spend', u'answer']
[u'troop', u'warn', u'suicid', u'bomber', u'fallujah']
[u'tszyu', u'look', u'fight']
[u'shoot', u'carlton']
[u'uncertainti', u'surround', u'visit', u'arafat', u'aid']
[u'union', u'seek', u'minimum', u'wage', u'rise']
[u'union', u'wont', u'blame', u'policeman', u'death']
[u'delay', u'agricultur', u'cours', u'closur', u'opposit']
[u'iraqi', u'troop', u'storm', u'fallujah', u'hospit']
[u'plan', u'strike', u'fallujah']
[u'pound', u'fallujah', u'battl', u'insurg']
[u'troop', u'enter', u'leav', u'fallujah']
[u'opposit', u'suggest', u'report', u'includ', u'fit']
[u'victorian', u'armi', u'reservist', u'duti', u'malaysia']
[u'volunt', u'clean', u'scenic', u'gibb', u'river']
[u'politician', u'charg', u'mislead', u'polic']
[u'warn', u'right', u'brisban', u'pont']
[u'warren', u'leav', u'legaci', u'wont', u'forget']
[u'warren', u'receiv', u'state', u'funer']
[u'week', u'honour', u'volunt', u'effort']
[u'westpac', u'deliv', u'profit']
[u'whale', u'caus', u'slick']
[u'wigan', u'sign', u'aussi', u'moran']
[u'wine', u'corp', u'highlight', u'chemic', u'spray', u'impact']
[u'woman', u'expect', u'tribal', u'punish', u'partner', u'murder']
[u'star', u'long', u'declin', u'indigen', u'role']
[u'ahoy', u'pirat', u'preval', u'terrorist']
[u'takeov', u'see', u'lose', u'council', u'opportun']
[u'anim', u'right', u'group', u'maintain', u'mules', u'campaign']
[u'arafat', u'condit', u'worsen']
[u'arafat', u'lieuten', u'arriv', u'franc']
[u'arm', u'hold', u'rise', u'canberra']
[u'aust', u'govt', u'play', u'guantanamo', u'rule']
[u'australia', u'longer', u'classless', u'societi', u'research']
[u'ban', u'mutu', u'fire', u'romanian', u'agent']
[u'bigger', u'custom', u'budget', u'need', u'intern']
[u'respons', u'trust', u'fund', u'compo']
[u'ethic', u'meet', u'consid', u'moral', u'dilemma']
[u'bomb', u'blast', u'shake', u'gaza', u'citi']
[u'bomb', u'baghdad', u'fallujah', u'assault', u'begin']
[u'brack', u'call', u'speedo', u'limit']
[u'buddhist', u'behead', u'shoot', u'dead', u'southern']
[u'bush', u'clear', u'mandat', u'aggress', u'foreign']
[u'bushrang', u'control', u'tiger', u'clash']
[u'busi', u'condit', u'strong']
[u'greater', u'prioriti', u'bega', u'bypass']
[u'studi', u'toxic', u'wast', u'storag']
[u'go', u'albani', u'legal', u'offic']
[u'cattl', u'properti', u'price', u'rise']
[u'chancellor', u'admit', u'knowledg', u'plagiar', u'report']
[u'coastal', u'develop', u'assess', u'hold']
[u'coast', u'host', u'bulldog', u'home', u'match']
[u'competit', u'fierc', u'sydney', u'hobart']
[u'conflict', u'report', u'surround', u'lao', u'explos']
[u'council', u'consid', u'better', u'sign', u'creek', u'tragedi']
[u'councillor', u'proud', u'support', u'jam', u'hardi']
[u'council', u'move', u'playground', u'smoke']
[u'council', u'probe', u'bunker', u'hill', u'tree', u'clear']
[u'council', u'probe', u'meal', u'wheel', u'complaint']
[u'council', u'forc', u'rethink', u'hardi']
[u'council', u'show', u'apprenticeship']
[u'council', u'lead', u'highlight', u'asbesto']
[u'deliv', u'posit', u'share', u'price', u'result']
[u'date', u'announc', u'warren', u'state', u'funer']
[u'delay', u'announc', u'medic', u'degre']
[u'develop', u'institut', u'back', u'infrastructur', u'call']
[u'dictionari', u'aim', u'preserv', u'indigen', u'languag']
[u'earli', u'stag', u'timber', u'plantat', u'plan']
[u'economist', u'back', u'north', u'west', u'infrastructur', u'claim']
[u'energi', u'brix', u'probe', u'control', u'room']
[u'press', u'ahead', u'case', u'microsoft']
[u'execut', u'share', u'loss', u'costello']
[u'exhibit', u'show', u'concentr', u'camp', u'experi']
[u'expert', u'examin', u'shark', u'slick']
[u'fallujah', u'assault', u'justifi', u'sadr']
[u'fallujah', u'resid', u'clinic', u'bomb']
[u'farmer', u'acquit', u'dope', u'alleg']
[u'farmer', u'call', u'mass', u'citrus', u'tree', u'remov']
[u'farmer', u'escap', u'punish', u'docker']
[u'farmer', u'consid', u'drought', u'option']
[u'fear', u'region', u'lose', u'mine', u'benefit']
[u'ferrari', u'skip', u'meet']
[u'fisher', u'part', u'blame', u'fall', u'dugong', u'number']
[u'fish', u'blame', u'albatross', u'death', u'year']
[u'aussi', u'golf']
[u'fleme', u'tour', u'match']
[u'flood', u'damag', u'estim', u'reach', u'million', u'dollar']
[u'footbal', u'player', u'murder', u'trial', u'begin']
[u'waca', u'employe', u'jail']
[u'forum', u'hear', u'barra', u'feedback']
[u'franc', u'recal', u'marsh', u'face', u'australia']
[u'futur', u'look', u'brighter', u'wimmera', u'campus']
[u'gardin', u'event', u'tune']
[u'global', u'warm', u'affect', u'anim', u'migrat', u'breed']
[u'govt', u'reject', u'polic', u'station', u'delay', u'claim']
[u'govt', u'step', u'canker', u'inspect']
[u'grain', u'harvest', u'outlook', u'good']
[u'grampian', u'ambul', u'staff', u'boost']
[u'gregan', u'want', u'wallabi', u'think', u'like', u'cricket']
[u'group', u'want', u'peanut', u'tuckshop', u'menu']
[u'hardi', u'criticis', u'boycott', u'prematur']
[u'health', u'chief', u'oppos', u'cord', u'blood', u'storag']
[u'high', u'school', u'plan', u'move', u'ahead']
[u'hockey', u'revamp', u'underway']
[u'home', u'damag', u'storm']
[u'honour', u'share', u'redback', u'bull']
[u'hospit', u'anaesthetist']
[u'hospit', u'ward', u'reopen', u'bird', u'lice', u'woe']
[u'hoteli', u'hope', u'return', u'politician', u'improv']
[u'predict', u'growth', u'australia']
[u'indec', u'photo', u'spark', u'search', u'girl']
[u'industri', u'bodi', u'urg', u'tailor', u'secur', u'airport']
[u'ineffici', u'condition', u'ban']
[u'injur', u'aloisi', u'miss', u'norway', u'friend']
[u'injur', u'soldier', u'treat', u'hobart', u'barrack']
[u'insurg', u'violenc', u'escal', u'baquba']
[u'interst', u'buyer', u'flock', u'sale']
[u'iran', u'confirm', u'medium', u'rang', u'missil', u'product']
[u'iraq', u'violenc', u'claim', u'live']
[u'irrig', u'alloc', u'boost']
[u'islam', u'parti', u'pull', u'iraqi', u'govt']
[u'isra', u'sentenc', u'drug', u'bust']
[u'japan', u'world', u'frame']
[u'jetstar', u'spanner', u'forseen', u'spirit']
[u'confirm', u'spur', u'coach']
[u'jone', u'sack', u'long', u'time', u'coach']
[u'kashmir', u'rebel', u'attack', u'indian', u'politician', u'home']
[u'king', u'continu', u'win', u'streak']
[u'king', u'good', u'taipan']
[u'kirkuk', u'bomb', u'blast', u'kill']
[u'labour', u'shortag', u'affect', u'goldfield', u'growth']
[u'lawyer', u'hail', u'unlaw', u'rule', u'guantanamo', u'trial']
[u'legendari', u'hawk', u'contest', u'club', u'presid']
[u'lender', u'court']
[u'letterbox', u'bomb', u'trigger', u'polic', u'fear']
[u'long', u'await', u'woollen', u'mill', u'settlement', u'contract']
[u'cross', u'countri', u'kite', u'power', u'skateboard']
[u'jail', u'videotap', u'girl']
[u'manual', u'target', u'corrupt']
[u'mash', u'potato', u'casserol', u'soft', u'drink', u'shelv']
[u'mauresmo', u'davenport', u'fight', u'spot']
[u'medico', u'threaten', u'action', u'work', u'hour']
[u'melbourn', u'question', u'children', u'death']
[u'melbourn', u'music', u'festiv', u'get', u'revamp']
[u'miner', u'sand', u'explor', u'focus', u'west']
[u'minist', u'echo', u'bush', u'concern', u'landlin', u'futur']
[u'molik', u'set', u'sight', u'grand', u'slam', u'titl']
[u'cast', u'doubt', u'energi', u'plan']
[u'charg', u'shoot']
[u'sour', u'famili', u'dump']
[u'monitor', u'indigen', u'scheme', u'post', u'atsic']
[u'murray', u'dredg', u'long', u'haul']
[u'murray', u'report', u'consid', u'use']
[u'nauru', u'pass', u'act', u'combat', u'money', u'launder']
[u'network', u'snub', u'ash', u'seri']
[u'news', u'corp', u'drive', u'market', u'higher']
[u'nois', u'drive', u'fli', u'fox', u'batti']
[u'rail', u'worker', u'deliv', u'ultimatum', u'govt']
[u'govt', u'creat', u'asbesto', u'taskforc']
[u'number', u'region', u'phone']
[u'price', u'fluctuat', u'continu', u'say', u'chief']
[u'omeley', u'injur', u'ryle']
[u'palestinian', u'leadership', u'hing', u'arafat', u'fortun']
[u'palestinian', u'leader', u'discuss', u'arafat', u'condit']
[u'palestinian', u'offici', u'arriv', u'arafat', u'hospit']
[u'patient', u'travel', u'refund', u'wait', u'unaccept']
[u'phelp', u'face', u'possibl', u'jail', u'term']
[u'phelp', u'face', u'drink', u'drive', u'charg']
[u'plan', u'track', u'train', u'station', u'mural']
[u'polic', u'deploy', u'solomon']
[u'polic', u'defend', u'delay', u'assault', u'detail']
[u'polic', u'hunt', u'petrol', u'station', u'arm', u'bandit']
[u'polic', u'meet', u'nightspot', u'weekend', u'unrest']
[u'power', u'disput', u'spark', u'wide', u'outag']
[u'premier', u'seek', u'ferri', u'busi', u'answer']
[u'protest', u'rais', u'mine', u'chief']
[u'public', u'hear', u'probe', u'bash', u'case']
[u'public', u'urg', u'bendigo', u'industri']
[u'public', u'urg', u'care', u'near', u'flood', u'waterway']
[u'public', u'warn', u'illeg', u'firewood', u'collect']
[u'publish', u'win', u'court', u'battl', u'cross', u'inject']
[u'punter', u'saddl', u'bendigo']
[u'quarantin', u'servic', u'frustrat', u'region', u'report']
[u'question', u'rais', u'drink', u'voucher']
[u'race', u'finish', u'revamp', u'box', u'test']
[u'rain', u'doesnt', u'help', u'eas', u'drought', u'woe']
[u'rathbon', u'clear', u'french', u'clash']
[u'redback', u'bushrang', u'control']
[u'retail', u'group', u'criticis', u'box', u'plan']
[u'review', u'clear', u'controversi', u'mine', u'method']
[u'ricketson', u'lead', u'rooster']
[u'rilli', u'nbls', u'player', u'week']
[u'robinson', u'confirm', u'england', u'rugbi', u'captain']
[u'roger', u'field', u'incid', u'confirm']
[u'roger', u'investig', u'field', u'incid']
[u'ruddock', u'play', u'guantanamo', u'trial', u'unlaw', u'rule']
[u'rumsfeld', u'predict', u'civilian', u'death', u'toll']
[u'russian', u'bomb', u'kill']
[u'doctor', u'test', u'smoke', u'inhal', u'drug']
[u'sale', u'austoft', u'site', u'finalis']
[u'scandia', u'target', u'handicap', u'line', u'honour']
[u'school', u'get', u'bottl', u'water', u'amidst', u'bacteria', u'scare']
[u'scotland', u'captain', u'defend', u'narrow', u'pitch', u'polici']
[u'septemb', u'payout']
[u'servic', u'standard', u'power', u'compani']
[u'sewag', u'spill', u'prompt', u'concern', u'migratori', u'bird']
[u'shoot', u'death', u'prompt', u'review', u'law']
[u'shot', u'fire', u'policeman']
[u'snake', u'lose', u'charm', u'veteran', u'reptil', u'handler']
[u'south', u'american', u'qualifi', u'overhaul']
[u'south', u'west', u'face', u'water', u'ban']
[u'lanka', u'overlook', u'murali', u'dayer']
[u'state', u'funer', u'announc', u'warren']
[u'studi', u'highlight', u'high', u'river', u'sediment']
[u'studi', u'consid', u'plan', u'giant', u'wast', u'recycl']
[u'suez', u'canal', u'open', u'tanker', u'free']
[u'tafe', u'teacher', u'group', u'air', u'educ', u'forum', u'concern']
[u'tatiara', u'council', u'question', u'jam', u'hardi', u'product']
[u'telco', u'slam', u'fee', u'servic']
[u'telstra', u'hit', u'ombudsman', u'report']
[u'threaten', u'speci', u'worri', u'green', u'group']
[u'tourism', u'talk', u'expect', u'deliv', u'result']
[u'townsvill', u'enterpris', u'beat', u'lindsay', u'meet']
[u'travel', u'warn', u'ivori', u'coast', u'upgrad']
[u'tree', u'nativ', u'speci']
[u'tribal', u'payback', u'reduc', u'jail', u'time', u'woman']
[u'troop', u'fallujah', u'railway', u'station']
[u'trucki', u'gear', u'australia', u'trip']
[u'tszyu', u'hint', u'fight', u'gatti']
[u'turf', u'industri', u'seek', u'clariti', u'water', u'restrict']
[u'can', u'plan', u'region', u'campus', u'closur']
[u'head', u'hear', u'workplac', u'relat', u'chang']
[u'moot', u'gippstaf', u'cours', u'plan']
[u'univers', u'vice', u'chancellor', u'voic', u'fund', u'concern']
[u'unlaw', u'rule', u'delay', u'hick', u'trial']
[u'deni', u'chopper', u'fallujah']
[u'face', u'stiff', u'resist', u'fallujah']
[u'iraqi', u'forc', u'control', u'fallujah', u'marin']
[u'judg', u'halt', u'guantanmo', u'trial']
[u'market', u'focus', u'rat', u'weak', u'dollar']
[u'vanston', u'defend', u'indigen', u'council']
[u'opposit', u'slam', u'child', u'protect', u'delay']
[u'violenc', u'flare', u'ivori', u'coast', u'ahead']
[u'wallabi', u'jekyl', u'hyde', u'perform']
[u'warn', u'turkey', u'shortag', u'christma']
[u'wast', u'water', u'help', u'boost', u'lake', u'wendoure']
[u'water', u'plan', u'rais', u'river', u'life', u'concern']
[u'wenger', u'charg', u'post', u'unit', u'comment']
[u'west', u'brom', u'size', u'star', u'robson']
[u'wildlif', u'park', u'look', u'boost', u'financi', u'viabil']
[u'windeward', u'bind', u'trust', u'seek', u'berth']
[u'wool', u'industri', u'seek', u'stop', u'peta', u'call']
[u'wool', u'industri', u'stop', u'mules']
[u'wool', u'produc', u'criticis', u'mules', u'phase']
[u'workshop', u'brake', u'road', u'crash']
[u'zarqawi', u'call', u'jihad', u'attack', u'fallujah']
[u'abbott', u'admit', u'uncertainti', u'abort', u'figur']
[u'access', u'port', u'face', u'increas', u'terrorist', u'risk']
[u'accus', u'illeg', u'fisherman', u'clear']
[u'accus', u'evid', u'snowtown', u'hear']
[u'act', u'break', u'zellweg', u'life', u'experi']
[u'mortgag', u'high']
[u'strike', u'kill', u'civilian', u'ivori', u'coast']
[u'arafat', u'critic', u'egypt', u'offer', u'funer']
[u'arafat', u'suffer', u'brain', u'haemorrhag']
[u'arctic', u'thaw', u'open', u'ship', u'lane', u'risk', u'high']
[u'ashcroft', u'quit', u'bush', u'cabinet', u'shake', u'begin']
[u'asio', u'pay', u'refuge', u'bungl']
[u'atsic', u'chief', u'question', u'represent']
[u'aust', u'bank', u'face', u'foreign', u'exchang', u'proceed']
[u'baghdad', u'church', u'blast', u'wound', u'hospit']
[u'bali', u'investig', u'chief', u'tackl', u'polic']
[u'ballarat', u'ponder', u'partnership', u'plan']
[u'bank', u'teller', u'order', u'repay', u'money']
[u'batchelor', u'staff', u'strike', u'hour']
[u'beasti', u'boy', u'sampl', u'court', u'case']
[u'beckham', u'friend', u'sign', u'hollywood']
[u'boe', u'northrop', u'team', u'spaceship']
[u'bomb', u'kill', u'iraqi', u'nation', u'guard', u'soldier']
[u'borbidg', u'back', u'conserv', u'parti']
[u'box', u'shop', u'approv']
[u'burrow', u'win', u'australian', u'final']
[u'bushrang', u'bull']
[u'bushrang', u'cruis', u'victori', u'bull']
[u'byron', u'prepar', u'teen', u'invas']
[u'region', u'magistr', u'liais']
[u'region', u'play', u'role', u'indigen']
[u'calm', u'play', u'shark', u'algal', u'bloom', u'fear']
[u'campaign', u'seek', u'tourism', u'focus', u'mine']
[u'child', u'drown', u'hors', u'trough']
[u'china', u'trade', u'deal', u'increas', u'beef', u'export']
[u'civilian', u'kill', u'ivori', u'coast', u'protest']
[u'clark', u'katich']
[u'communiti', u'meet', u'hear', u'ambul', u'fear']
[u'consum', u'confid', u'elect']
[u'council', u'consid', u'rais', u'wall']
[u'council', u'critic', u'local', u'govt', u'gather']
[u'council', u'green', u'light', u'industri', u'develop']
[u'councillor', u'maintain', u'foreshor', u'referendum', u'push']
[u'councillor', u'adult', u'entertain']
[u'council', u'appoint', u'cultur', u'develop', u'offic']
[u'countri', u'race', u'overhaul', u'withdraw']
[u'crackdown', u'marin', u'misdemenour']
[u'cricket', u'australia', u'miss', u'point']
[u'curtain', u'fall', u'cinema', u'plan']
[u'jail', u'tortur', u'daughter']
[u'darl', u'down', u'homeless', u'hide', u'problem']
[u'databas', u'show', u'increas', u'beef', u'industri']
[u'date', u'clash', u'forc', u'cancel', u'women', u'open']
[u'delta', u'energi', u'wind', u'farm', u'give', u'green', u'light']
[u'dingo', u'stalk', u'babi', u'fraser', u'island']
[u'director', u'highlight', u'legal', u'option']
[u'diseas', u'asid', u'obes', u'weigh', u'heart']
[u'dodgi', u'ecstasi', u'schooli', u'risk']
[u'dolphin', u'hunt', u'junior', u'talent']
[u'dutch', u'polic', u'mount', u'major', u'anti', u'terror', u'raid']
[u'expert', u'criticis', u'dingo', u'death', u'sentenc']
[u'expert', u'urg', u'better', u'nation', u'water']
[u'extend', u'trade', u'hour', u'expect', u'hurt', u'region']
[u'fallujah', u'refuge', u'situat', u'dire', u'cross']
[u'farmer', u'urg', u'beat', u'drought', u'assist', u'deadlin']
[u'fatal', u'crash', u'close', u'picton']
[u'help', u'sydney', u'polic', u'catch', u'serial', u'rapist']
[u'fear', u'grow', u'diesel', u'cost', u'affect', u'good']
[u'fee', u'shouldnt', u'fund', u'student', u'polit', u'nelson']
[u'figur', u'drop', u'eurobodalla', u'jobless', u'rate']
[u'fisher', u'inshor', u'fish', u'zone', u'map']
[u'fleme', u'face', u'fit', u'race']
[u'fool', u'costa', u'wear', u'rail', u'anger']
[u'forecast', u'qlds', u'stormi', u'weather']
[u'england', u'captain', u'robson', u'confirm', u'baggi']
[u'fresh', u'talk', u'hold', u'afghan', u'hostag', u'taker']
[u'fund', u'shortfal', u'put', u'hydrotherapi', u'pool', u'doubt']
[u'general', u'appoint', u'fallujah', u'region', u'governor']
[u'golden', u'globe', u'embrac', u'passion', u'ignor', u'fahrenheit']
[u'good', u'condit', u'bendigo']
[u'govt', u'back', u'ranger', u'safeti', u'upgrad']
[u'govt', u'opposit', u'vote', u'cyanid']
[u'govt', u'quiz', u'toxic', u'wast', u'dump', u'plan']
[u'govt', u'uranium', u'mine', u'report']
[u'grey', u'nomad', u'unfaz', u'petrol', u'price']
[u'group', u'fight', u'tourism', u'levi', u'consid', u'legal', u'action']
[u'growth', u'pressur', u'bundaberg', u'infrastructur']
[u'hail', u'affect', u'farmer', u'urg', u'seek', u'compo']
[u'hawk', u'breaker']
[u'hockeyroo', u'keeper', u'nomin', u'world', u'gong']
[u'home', u'loan', u'fall', u'reflect', u'cool', u'market']
[u'hotel', u'room', u'dingo']
[u'houseboat', u'blaze', u'ruin', u'retir', u'plan']
[u'hunter', u'research', u'share']
[u'iag', u'success', u'financi']
[u'icrc', u'issu', u'humanitarian', u'warn', u'fallujah', u'battl']
[u'injuri', u'traill', u'tribul', u'franc']
[u'inquiri', u'announc', u'judg', u'miss', u'blood', u'sampl']
[u'inquiri', u'probe', u'tweed', u'corrupt', u'claim']
[u'interchang', u'mast', u'commemor', u'light', u'horsemen']
[u'islamist', u'threaten', u'kill', u'allawi', u'relat']
[u'isra', u'armi', u'shoot', u'islam', u'jihad', u'milit']
[u'israel', u'militari', u'issu', u'string']
[u'jail', u'impact', u'famili', u'bodi', u'prioriti']
[u'jail', u'wish', u'come', u'true', u'arm', u'bandit']
[u'jetstar', u'asia', u'prepar', u'launch']
[u'jone', u'track', u'say', u'coach']
[u'kangaroo', u'wont', u'soft', u'great', u'britain']
[u'keat', u'remain', u'lion']
[u'keat', u'remain', u'lion', u'caracella', u'depart']
[u'keith', u'urban', u'take', u'countri', u'music', u'prize']
[u'labor', u'offici', u'admit', u'campaign', u'fail', u'rat', u'debat']
[u'latham', u'back', u'femal', u'high', u'court', u'judg']
[u'lawyer', u'critic', u'famili', u'violenc', u'time']
[u'hop', u'avoid', u'carri', u'drink']
[u'lehmann', u'reliev', u'gabba']
[u'lehmann', u'reliev', u'gabba']
[u'liberti', u'friend', u'news', u'corp', u'sharehold']
[u'liverpool', u'legend', u'emlyn', u'hugh', u'die']
[u'lobster', u'catch', u'predict', u'rise', u'slight']
[u'local', u'knowledg', u'essenti', u'bushfir', u'plan']
[u'phase', u'fuel', u'price', u'rise', u'older', u'car']
[u'charg', u'woman', u'murder']
[u'deni', u'snowtown', u'murder', u'involv']
[u'media', u'bank', u'push', u'ord', u'record', u'territori']
[u'meet', u'debat', u'nativ', u'veget', u'plan']
[u'minardi', u'boss', u'say', u'british', u'french', u'save']
[u'miner', u'pleas', u'earli', u'sign', u'nickel', u'project']
[u'minist', u'deni', u'teenag', u'abort', u'rate', u'soar']
[u'model', u'downsiz', u'veteran', u'wall', u'display']
[u'backpack', u'ventur']
[u'mourner', u'farewel', u'chariti', u'legend']
[u'oppos', u'plan', u'halv', u'landlin', u'run', u'time']
[u'mules', u'heed', u'buyer', u'concern']
[u'nab', u'profit', u'unaccept']
[u'nation', u'food', u'merger', u'talk']
[u'petrol', u'provid', u'high', u'sniffer']
[u'tourism', u'appoint', u'boost', u'intern']
[u'nitschk', u'plan', u'peac', u'pill', u'retreat']
[u'euthanasia', u'arafat', u'minist']
[u'guarante', u'power', u'disput']
[u'nuclear', u'fusion', u'talk', u'agreement']
[u'price', u'drop', u'reach', u'adelaid', u'bowser']
[u'opposit', u'concern', u'follow', u'child', u'death', u'review']
[u'opposit', u'offer', u'extend', u'parliament', u'sit']
[u'petrol', u'sniffer', u'recov', u'brain', u'damag']
[u'pharmaci', u'board', u'dispens', u'region', u'warn']
[u'pilot', u'fin', u'inadequ', u'flight', u'record']
[u'pilot', u'narrowli', u'avoid', u'crash', u'port', u'phillip']
[u'pipelin', u'studi', u'profil', u'east', u'west']
[u'plan', u'council', u'flexibl']
[u'pledg', u'deal', u'abort']
[u'poison', u'program', u'step', u'war', u'escal']
[u'polic', u'help', u'steal', u'heroin', u'say', u'wit']
[u'polic', u'seek', u'help', u'find', u'hotel', u'attack']
[u'pont', u'blame', u'standard', u'mumbai', u'pitch']
[u'powercor', u'urg', u'readi']
[u'power', u'earthquak', u'shake', u'solomon']
[u'primari', u'industri', u'loss', u'surpris']
[u'settler', u'parti', u'abandon', u'sharon', u'coalit']
[u'public', u'communiti', u'bank', u'plan']
[u'public', u'fluorid', u'plan']
[u'futur', u'super', u'benefit']
[u'quarri', u'seek', u'extend', u'life']
[u'race', u'club', u'hop', u'secur', u'meet']
[u'racq', u'hop', u'driver', u'feel', u'eas', u'price']
[u'rain', u'pose', u'prawn', u'harvest', u'threat']
[u'ranger', u'chang', u'scientist']
[u'rebel', u'govt', u'sign', u'landmark', u'sudan', u'peac', u'deal']
[u'redfern', u'author', u'focus', u'job', u'growth']
[u'referendum', u'settl', u'shop', u'hour', u'debat']
[u'resid', u'worri', u'polic', u'station']
[u'respons', u'driver', u'road', u'toll']
[u'retail', u'oppos', u'holiday', u'period', u'closur', u'plan']
[u'retir', u'high', u'court', u'judg', u'want', u'femal', u'successor']
[u'riverina', u'airlin', u'plan']
[u'roger', u'assault', u'probe', u'hold']
[u'continu', u'speaker']
[u'rspca', u'urg', u'prison', u'sentenc', u'anim']
[u'ruddock', u'unveil', u'famili', u'propos']
[u'govt', u'toughen', u'law', u'seiz', u'crimin', u'asset']
[u'sale', u'talk', u'review', u'telstra', u'bush', u'servic']
[u'wind', u'farm', u'power']
[u'search', u'miss', u'tourist']
[u'signatori', u'consid', u'albatross', u'secretariat', u'offer']
[u'korea', u'warn', u'north', u'incurs']
[u'sleep', u'surviv', u'cliff', u'plung']
[u'smith', u'fisher', u'month', u'gong']
[u'spain', u'strength', u'davi', u'final']
[u'special', u'diet', u'dont', u'help', u'weight', u'loss', u'studi']
[u'speedo', u'limit', u'cautious', u'support']
[u'sport', u'communiti', u'group', u'benefit']
[u'spur', u'gunner', u'leagu', u'quarter']
[u'lankan', u'keeper', u'kaluwitharana', u'quit']
[u'statist', u'highlight', u'region', u'wealth', u'divid']
[u'storm', u'wreak', u'havoc', u'northern']
[u'student', u'villag', u'closur', u'doesnt']
[u'sunni', u'cleric', u'urg', u'iraq', u'poll', u'boycott']
[u'sunspot', u'explos', u'light', u'australian']
[u'support', u'govt', u'slump']
[u'surgeri', u'sidelin', u'donnelli', u'month']
[u'tap', u'prove', u'treasuri', u'bulli', u'energex', u'chief', u'nat']
[u'tare', u'elder', u'run', u'aust', u'year', u'award']
[u'teacher', u'avoid', u'jail', u'schoolboy']
[u'telstra', u'launch', u'mobil', u'internet', u'servic']
[u'thoroughbr', u'ray', u'prompt', u'cancer', u'fear']
[u'thousand', u'biker', u'thunder', u'snowi']
[u'iraqi', u'relat', u'kidnap']
[u'quarter', u'adhd', u'diagnos', u'wrong']
[u'tough', u'task', u'recruit', u'mental', u'health', u'worker']
[u'train', u'driver', u'strike', u'avert']
[u'trap', u'croc', u'kill']
[u'like', u'human']
[u'understrength', u'kiwi', u'remain', u'confid']
[u'chief', u'nelson', u'backdown', u'student', u'fee']
[u'union', u'challeng', u'firm', u'sack']
[u'unlucki', u'katich', u'miss', u'tour', u'match']
[u'reach', u'agreement', u'ivori', u'coast', u'sanction']
[u'expect', u'fallujah', u'fight', u'intensifi']
[u'market', u'steadi', u'ahead', u'meet']
[u'meet', u'fierc', u'resist', u'fallujah']
[u'mine', u'firm', u'reject', u'indonesian', u'arsenic', u'claim']
[u'polic', u'shoot', u'consul', u'hostag', u'taker']
[u'resum', u'assault', u'fallujah']
[u'suspect', u'zarqawi', u'flee', u'fallujah']
[u'work', u'arafat', u'successor', u'powel']
[u'vatican', u'probe', u'inquisit', u'horror']
[u'victim', u'group', u'slam', u'child', u'sentenc', u'teacher']
[u'wag', u'wimmera', u'malle']
[u'word', u'erupt', u'rock', u'remov']
[u'water', u'human', u'kind', u'keep', u'runner', u'hydrat']
[u'whistleblow', u'hospit', u'patient', u'victimis']
[u'windblown', u'tourist', u'surviv', u'highway', u'mishap']
[u'wind', u'farm', u'decis', u'expect', u'affect', u'gippsland']
[u'women', u'polic', u'hope', u'increas', u'number']
[u'advoc', u'cautious', u'welcom', u'mental', u'health', u'packag']
[u'group', u'warn', u'ivori', u'coast', u'humanitarian', u'crisi']
[u'alic', u'spring', u'say', u'citi', u'titl']
[u'highlight', u'shift', u'illawarra', u'wealth']
[u'aquarium', u'owner', u'warn', u'toxic', u'seawe']
[u'armi', u'klan', u'pictur', u'racist', u'say', u'photograph']
[u'armi', u'launch', u'review', u'soldier', u'death']
[u'arsonist', u'target', u'turkish', u'school']
[u'australia', u'get', u'wetter', u'csiro']
[u'australian', u'evacu', u'ivori', u'coast']
[u'ban', u'mutu', u'meet', u'juventus', u'offici']
[u'beatti', u'deni', u'vile', u'claim', u'treasuri']
[u'beckham', u'spain', u'friend']
[u'bellingen', u'shire', u'join', u'jam', u'hardi']
[u'beat', u'countri', u'energi', u'merger']
[u'gun', u'reach', u'leagu', u'quarter']
[u'turnout', u'brisban', u'remembr']
[u'black', u'cap', u'build', u'total', u'blue']
[u'black', u'cap', u'dismiss', u'sydney']
[u'black', u'cap', u'kick', u'tour', u'blue']
[u'blaze', u'destroy', u'classroom', u'turkish', u'school']
[u'bluescop', u'cost', u'port', u'kembla', u'job']
[u'boycott', u'slam', u'chuck', u'propos']
[u'brack', u'announc', u'memori', u'fund']
[u'british', u'futur', u'look', u'brighter']
[u'bulldoz', u'prepar', u'burial', u'site', u'arafat']
[u'bush', u'look', u'peac', u'arafat', u'near', u'death']
[u'bush', u'name', u'attorney', u'general']
[u'fund', u'model', u'review']
[u'central', u'crime', u'figur', u'drop']
[u'childcar', u'centr', u'sale', u'benefit', u'children', u'group']
[u'children', u'wreath', u'remembr', u'shrine']
[u'coalit', u'urg', u'stand', u'firm', u'iraq']
[u'coff', u'harbour', u'host', u'ban', u'photo', u'exhibit']
[u'cole', u'myer', u'track', u'profit']
[u'cole', u'sell', u'alcohol', u'supermarket']
[u'committe', u'form', u'deal', u'woe']
[u'communiti', u'group', u'welcom', u'tweed', u'council', u'probe']
[u'communiti', u'mourn', u'respect', u'polic', u'offic']
[u'compani', u'defend', u'addit', u'fee']
[u'compani', u'face', u'death', u'penalti']
[u'therapi', u'help', u'treat', u'depress']
[u'concern', u'rais', u'devil', u'cancer']
[u'cooler', u'weather', u'help', u'control', u'locust', u'number']
[u'council', u'reject', u'childcar', u'centr', u'plan']
[u'council', u'road', u'worker', u'expos', u'asbesto']
[u'council', u'seek', u'crime', u'plan', u'feedback']
[u'council', u'seek', u'greater', u'holiday', u'let', u'regul']
[u'coupl', u'catch', u'chase']
[u'court', u'allow', u'accus', u'terrorist', u'testifi']
[u'courtney', u'love', u'legal', u'woe', u'escal']
[u'court', u'order', u'wineri', u'grape', u'payment']
[u'court', u'reject', u'bashir', u'holiday', u'request']
[u'creek', u'get', u'clear', u'sewerag', u'spill']
[u'croc', u'warn', u'issu', u'take']
[u'dead', u'bomb', u'explod', u'baghdad']
[u'death', u'toll', u'rise', u'baghdad', u'bomb']
[u'desert', u'volleybal', u'plan', u'indigen', u'communiti']
[u'devil', u'diseas', u'appear', u'spread']
[u'dog', u'blame', u'sheep', u'death']
[u'dog', u'dragon', u'kick', u'start']
[u'probe', u'cage', u'placement']
[u'drug', u'haul', u'underl', u'jail']
[u'emerg', u'plan', u'utilis', u'volunt', u'knowledg']
[u'expert', u'debat', u'anti', u'salin', u'measur']
[u'extens', u'locust', u'spray', u'need']
[u'fail', u'entic', u'ambros']
[u'famili', u'lose', u'life', u'support']
[u'fan', u'flock', u'vivienn', u'westwood', u'exhibit']
[u'farm', u'theft', u'spark', u'warn']
[u'fear', u'rais', u'cyclon', u'build', u'standard']
[u'feder', u'polic', u'raid', u'indigen', u'paper', u'leak']
[u'lift', u'rat']
[u'fee', u'firm', u'sign', u'export', u'deal']
[u'sting', u'prompt', u'safeti', u'warn']
[u'franc', u'snub', u'surpris', u'pire']
[u'frost', u'take', u'toll', u'wine', u'grape', u'vine', u'damag']
[u'gippsland', u'flood', u'watch']
[u'govern', u'apologis', u'srebrenica', u'massacr']
[u'govt', u'announc', u'histor', u'shipwreck', u'protect']
[u'govt', u'opposit', u'wrangl', u'hospit', u'fund']
[u'green', u'light', u'give', u'foreshor', u'bait']
[u'green', u'fear', u'guantanamo', u'like', u'prison']
[u'green', u'happi', u'territori', u'perform']
[u'grower', u'assess', u'hail', u'damag', u'impact']
[u'hama', u'vow', u'attack']
[u'harri', u'like', u'miss', u'nation', u'clash']
[u'hear', u'expert', u'skill', u'develop', u'world']
[u'hewitt', u'clash', u'feder']
[u'historian', u'seek', u'decor', u'execut', u'pow']
[u'histori', u'judg', u'arafat', u'harsh', u'howard']
[u'hotel', u'urg', u'treat', u'schooli', u'fair']
[u'howard', u'warn', u'punish', u'smoker']
[u'hundr', u'brave', u'rain', u'remembr', u'servic']
[u'clear', u'murali', u'bowl', u'doosra']
[u'indigen', u'council', u'mandat']
[u'indigen', u'council', u'celebr', u'year']
[u'indigen', u'payment', u'link', u'behaviour']
[u'indigen', u'welfar', u'reform', u'step', u'backward']
[u'indonesian', u'polic', u'arrest', u'drug', u'possess']
[u'inquest', u'open', u'road', u'death']
[u'internet', u'link', u'age', u'patient']
[u'iraq', u'boost', u'remembr', u'attend']
[u'iraq', u'boost', u'remembr']
[u'iron', u'plant', u'face', u'uncertain', u'futur']
[u'israel', u'say', u'good', u'riddanc', u'arafat']
[u'ivori', u'coast', u'leader', u'deni', u'start', u'conflict']
[u'ivori', u'coast', u'unrest', u'toll', u'rise']
[u'jail', u'develop', u'consid', u'public', u'worri']
[u'japanes', u'deleg', u'tour']
[u'jobless', u'rate', u'hit', u'histor']
[u'job', u'growth', u'indic', u'wage', u'pressur']
[u'journalist', u'kill', u'nicaragua', u'vote', u'count', u'fight']
[u'kingaroy', u'question', u'club', u'disabl', u'access']
[u'kintor', u'celebr', u'dialysi', u'machin']
[u'latham', u'ponder', u'scari', u'spice', u'speaker']
[u'legal', u'princess', u'diana', u'fund', u'settl']
[u'liber', u'wast', u'facil', u'plan', u'fear']
[u'littl', u'long', u'term', u'popul', u'growth', u'tip']
[u'liverpool', u'order', u'kewel', u'work', u'fit']
[u'lomu', u'hope', u'black', u'return']
[u'lower', u'hous', u'pass', u'cut']
[u'luczak', u'win', u'open', u'wildcard']
[u'convict', u'stuttl', u'murder', u'appeal']
[u'die', u'rail', u'mishap']
[u'guilti', u'cocain', u'import']
[u'jail', u'child', u'porn', u'possess']
[u'kill', u'train', u'derail', u'bruce', u'highway', u'smash']
[u'plead', u'guilti', u'possess', u'child', u'porn']
[u'marathon', u'runner', u'wont', u'meet', u'athen', u'assail']
[u'mayor', u'present', u'histor', u'charter', u'parliament']
[u'meet', u'discuss', u'residenti', u'develop']
[u'melandri', u'leav', u'yamaha', u'honda']
[u'migrat', u'whale', u'number', u'dwindl']
[u'miner', u'identifi', u'gold', u'reserv']
[u'minist', u'endors', u'ambul', u'inquiri', u'recommend']
[u'minist', u'urg', u'address', u'busselton', u'school', u'concern']
[u'reject', u'ningaloo', u'marin', u'zone', u'plan']
[u'rain', u'need', u'boost', u'dam']
[u'nationwid', u'ceremoni', u'honour', u'soldier']
[u'newcastl', u'head', u'disappoint', u'plagar']
[u'lobster', u'firm', u'beat', u'futur']
[u'local', u'govern', u'law', u'approv']
[u'probe', u'launch', u'armi', u'racism', u'claim']
[u'tribun', u'hear', u'challeng', u'govt']
[u'luck', u'search', u'darwin', u'croc']
[u'surrend', u'bank', u'robber']
[u'nuclear', u'whistleblow', u'vanunu', u'arrest', u'jerusalem']
[u'offic', u'deni', u'corrupt', u'relationship', u'inform']
[u'open', u'sourc', u'browser', u'challeng', u'microsoft']
[u'palestinian', u'leader', u'arafat', u'die']
[u'palestinian', u'attack', u'settlement', u'arafat', u'die']
[u'palestinian', u'criticis', u'howard', u'funer', u'snub']
[u'pansi', u'wine', u'target', u'australian', u'gay']
[u'peacekeep', u'need', u'timor', u'annan']
[u'pilbara', u'iron', u'infrastructur', u'agreement', u'reach']
[u'pixi', u'plan', u'instant', u'live']
[u'player', u'disput', u'windi', u'tour']
[u'let', u'ash', u'coverag', u'debat', u'keeper']
[u'govt', u'split', u'telikom', u'sale']
[u'polic', u'arrest', u'chilean', u'apec', u'protest']
[u'polic', u'happi', u'bendigo', u'punter']
[u'polic', u'highlight', u'fall', u'gold', u'coast', u'prostitut']
[u'polic', u'offic', u'admit', u'involv', u'drug', u'robberi']
[u'pont', u'stun', u'like', u'ash', u'snub']
[u'star', u'name', u'peac']
[u'premier', u'urg', u'save', u'disabl', u'job', u'scheme', u'fund']
[u'prosecut', u'request', u'foreign', u'testifi']
[u'public', u'servic', u'stress', u'claim', u'tip', u'soar']
[u'govt', u'ban', u'sale', u'bong']
[u'ranger', u'owner', u'allay', u'radioact', u'incid', u'concern']
[u'remembr', u'crowd', u'reflect', u'terror']
[u'resourc', u'stock', u'fuel', u'ord', u'record']
[u'retir', u'sainz', u'ralli', u'australia']
[u'review', u'show', u'fall', u'northern', u'crime']
[u'road', u'benefit', u'shire', u'asset']
[u'rooney', u'escap', u'injuri', u'crash']
[u'presid', u'issu', u'warn', u'commit', u'troop']
[u'russian', u'hostel', u'kill']
[u'plant', u'anim', u'face', u'extinct']
[u'search', u'begin', u'unit', u'blaze', u'clue']
[u'search', u'underway', u'resort', u'dingo']
[u'shane', u'warn', u'chuck', u'plan', u'caus', u'confus']
[u'sharapova', u'deni', u'chang', u'ball']
[u'sharon', u'see', u'arafat', u'death', u'possibl', u'turn', u'point']
[u'silent', u'reflect', u'honour', u'dead']
[u'snowtown', u'accus', u'tell', u'move', u'bodi', u'barrel']
[u'socceroo', u'leap', u'world']
[u'soldier', u'avoid', u'jail', u'term']
[u'soldier', u'die', u'train', u'mission']
[u'soldier', u'accus', u'iraqi', u'prison', u'tortur', u'face']
[u'spotlight', u'herbicid', u'mango', u'product']
[u'stage', u'shock', u'court']
[u'state', u'fund', u'seek', u'tamworth', u'respit', u'centr']
[u'stress', u'trigger', u'miscarriag']
[u'strong', u'growth', u'secur', u'council', u'budget', u'surplus']
[u'studi', u'urg', u'expand', u'water', u'fluorid']
[u'sudanes', u'polic', u'raid', u'darfur', u'camp']
[u'survey', u'highlight', u'busi', u'tape', u'worri']
[u'talk', u'focus', u'teacher', u'transfer', u'concern']
[u'govt', u'pressur', u'feder', u'hotel', u'deal']
[u'threat', u'allawi', u'fail', u'halt', u'fallujah', u'attack']
[u'throw', u'rule', u'need', u'clarif', u'warn', u'say']
[u'thunder', u'storm', u'drench']
[u'tiger', u'frustrat', u'bushrang', u'rain', u'rule']
[u'timelin', u'life', u'yasser', u'arafat']
[u'tobacco', u'law', u'bong']
[u'legisl', u'name', u'interim', u'palestinian', u'presid']
[u'tourism', u'closur', u'forc', u'singapor', u'visit', u'cancel']
[u'travel', u'urg', u'heed', u'updat', u'travel', u'advic']
[u'tribut', u'flow', u'arafat']
[u'trucki', u'die', u'crash', u'freight', u'train']
[u'tweed', u'councillor', u'doesnt', u'want', u'blanket', u'sack']
[u'arrest', u'hagu', u'sieg', u'end']
[u'seek', u'callous', u'attack']
[u'union', u'offici', u'take', u'plane', u'alleg', u'bomb']
[u'unit', u'gunner', u'pair', u'leagu', u'quarter']
[u'lower', u'terror', u'alert', u'level', u'york']
[u'share', u'price', u'drop', u'rate', u'rise']
[u'tighten', u'grip', u'fallujah']
[u'valu', u'seasid', u'land', u'graze', u'properti', u'rise']
[u'vanuatu', u'withdraw', u'taiwanes', u'diplomat', u'tie', u'china']
[u'veteran', u'dignitari', u'rememb', u'australia', u'fall']
[u'vic', u'tassi', u'drought']
[u'victoria', u'back', u'plan', u'shift', u'smoke', u'cost']
[u'viduka', u'socceroo']
[u'wallabi', u'unchang', u'french', u'battl']
[u'warn', u'confid', u'thumb', u'recoveri']
[u'word', u'erupt', u'kangara', u'food', u'sack']
[u'water', u'corp', u'doubt', u'recoveri', u'plan', u'viabil']
[u'western', u'rememb', u'veteran']
[u'arafat', u'legaci']
[u'winemak', u'fear', u'water', u'cap', u'impact']
[u'urg', u'declar', u'roxbi', u'down', u'water', u'sourc']
[u'woman', u'critic', u'picton', u'crash']
[u'workplac', u'servic', u'investig', u'onesteel', u'accid']
[u'yasser', u'arafat', u'natur', u'leader', u'master', u'myth', u'maker']
[u'young', u'ban', u'life', u'second', u'dope', u'offenc']
[u'arriv', u'boost', u'creditor']
[u'help', u'grow', u'broccoli', u'technolog']
[u'aborigin', u'elder', u'attack', u'welfar', u'plan', u'racist']
[u'aborigin', u'group', u'back', u'fring', u'dweller', u'camp']
[u'job', u'figur', u'flaw', u'treasur']
[u'african', u'union', u'plan', u'ivori', u'coast', u'crisi', u'meet']
[u'albanes', u'reject', u'attack']
[u'alic', u'chef', u'win', u'scholarship', u'studi']
[u'ambul', u'staff', u'level', u'rais', u'safeti', u'fear']
[u'american', u'kidnap', u'iraq', u'report']
[u'offer', u'entrepreneur', u'cours']
[u'apec', u'leader', u'urg', u'support', u'exclus', u'free', u'trade']
[u'arafat', u'make', u'final', u'journey', u'home', u'west', u'bank']
[u'arsenic', u'dead', u'indonesian', u'right', u'campaign']
[u'asbesto', u'contamin', u'shock', u'council', u'worker']
[u'aussi', u'cricket', u'condemn', u'chuck', u'chang']
[u'aussi', u'champion', u'content']
[u'aust', u'pilot', u'save', u'chopper', u'attack', u'iraq']
[u'aust', u'pledg', u'bangladesh', u'flood', u'relief']
[u'australian', u'diplomat', u'attend', u'arafat', u'funer']
[u'australian', u'warn', u'israel', u'travel', u'risk']
[u'australian', u'warn', u'ivori', u'coast', u'strife']
[u'australia', u'offer', u'condol', u'palestinian']
[u'author', u'reject', u'devil', u'project', u'critic']
[u'baddaginni', u'upset', u'toxic', u'dump']
[u'barbaro', u'face', u'trial', u'drug', u'charg']
[u'battl', u'rag', u'near', u'fallujah', u'mosqu']
[u'bavaria', u'ban', u'teacher', u'wear', u'head', u'scarv']
[u'bichel', u'peer', u'test', u'bowl', u'crystal', u'ball']
[u'black', u'cap', u'fox', u'waugh', u'warn', u'aussi']
[u'blind', u'run', u'rais', u'fund']
[u'blood', u'donat', u'unit', u'return']
[u'blue', u'black', u'cap']
[u'boati', u'nautic', u'chart']
[u'boom', u'time', u'motogp', u'rossi', u'get', u'faster']
[u'bowl', u'alley', u'caus', u'damag']
[u'break', u'hill', u'aim', u'boost', u'tourism', u'link']
[u'break', u'hill', u'oliv', u'edg', u'competit']
[u'bronco', u'unhappi', u'draw']
[u'brothel', u'billboard', u'offend', u'council']
[u'bull', u'readi', u'finish', u'redback']
[u'bull', u'resist', u'south', u'australian', u'fightback']
[u'busi', u'time', u'ahead', u'colleg', u'task', u'forc']
[u'cairo', u'funer', u'await', u'arafat']
[u'better', u'murray', u'river', u'bridg', u'plan']
[u'west', u'includ', u'trade', u'hour']
[u'cancer', u'servic', u'focus', u'improv', u'surviv', u'rat']
[u'cartwheel', u'cop', u'suspend', u'student']
[u'casey', u'head', u'museum']
[u'err', u'arafat', u'broadcast']
[u'chamber', u'say', u'blackout', u'prove', u'cost', u'busi']
[u'children', u'hospitalis', u'school', u'crash']
[u'china', u'coal', u'blast', u'kill']
[u'coca', u'cola', u'launch']
[u'communiti', u'move', u'ahead', u'healthi', u'eat', u'plan']
[u'coron', u'urg', u'better', u'induct', u'volunt']
[u'council', u'ask', u'consid', u'main', u'street', u'speed']
[u'council', u'determin', u'build', u'town', u'squar']
[u'council', u'highlight', u'toowoomba', u'rang', u'worri']
[u'councillor', u'get', u'high', u'rank', u'local', u'govt', u'appoint']
[u'council', u'appeal', u'mitcham', u'develop']
[u'council', u'unhappi', u'flood', u'leve', u'meet', u'attend']
[u'darwin', u'wharfi', u'exot', u'snail']
[u'discrimin', u'common', u'militari', u'cultur', u'academ']
[u'doctor', u'misconduct', u'claim', u'complaint']
[u'dolphin', u'fish', u'trauma']
[u'doubt', u'rais', u'calder', u'fund']
[u'jone', u'settl', u'gutnick', u'action']
[u'drink', u'spike', u'report', u'spark', u'law', u'push']
[u'driver', u'blue', u'break']
[u'drought', u'end', u'heroin', u'make', u'comeback']
[u'dutch', u'arrest', u'fals', u'threaten', u'letter']
[u'elbow', u'bend', u'common', u'test', u'cricket', u'murali']
[u'electrolux', u'worker', u'strike', u'disput']
[u'electron', u'tag', u'monitor', u'young', u'offend']
[u'emerg', u'beacon', u'mandatori', u'fisher']
[u'employ', u'figur', u'boost', u'aussi', u'dollar']
[u'eric', u'rakim', u'greatest', u'album', u'list']
[u'tag', u'crimin', u'wont', u'work', u'say', u'expert']
[u'timor', u'travel', u'warn', u'issu', u'strong', u'quak']
[u'expert', u'stand', u'effort', u'manag', u'bedevil']
[u'factori', u'blaze', u'challeng', u'melbourn', u'firefight']
[u'factori', u'destroy', u'special', u'school', u'facil']
[u'fail', u'presidenti', u'candid', u'seek', u'recount']
[u'fallujah', u'assault', u'spark', u'iraq', u'wide', u'attack']
[u'fallujah', u'attack', u'kill', u'hundr', u'insurg']
[u'famili', u'mourn', u'dead', u'soldier']
[u'fear', u'adelaid', u'hospit', u'blow', u'hurt', u'region']
[u'fear', u'custom', u'crackdown', u'hurt', u'lobster', u'industri']
[u'fiji', u'lose', u'appeal', u'coup', u'jail', u'term']
[u'case', u'proceed', u'despit', u'inquest', u'suspens']
[u'fleme', u'chanc', u'gabba', u'test']
[u'fli', u'doctor', u'get', u'fund', u'boost']
[u'attack', u'target', u'middl', u'penguin']
[u'fraser', u'resort', u'dingo', u'kill']
[u'gippsland', u'popul', u'rise']
[u'glen', u'inn', u'famili', u'unit', u'church']
[u'global', u'factor', u'toll', u'wimmera', u'malle', u'farmer']
[u'govern', u'anderson', u'licenc', u'check', u'polic']
[u'govt', u'rule', u'freeway', u'toll']
[u'govt', u'crack', u'drink', u'spike']
[u'green', u'fear', u'threaten', u'speci']
[u'gronholm', u'lead', u'ralli', u'australia']
[u'gunner', u'spur', u'turmoil']
[u'hardi', u'picket', u'stay', u'compens', u'pay']
[u'highway', u'upgrad', u'feedback', u'session', u'start', u'tonight']
[u'drug', u'kill', u'malaria', u'parasit']
[u'hobart', u'host', u'albatross', u'conserv', u'centr']
[u'hockeyroo', u'break', u'lose', u'drought']
[u'hold', u'leongatha', u'pool', u'open']
[u'human', u'diseas', u'take', u'differ', u'form']
[u'iaea', u'confirm', u'south', u'korea', u'nuclear', u'experi']
[u'indian', u'announc', u'troop', u'reduct', u'kashmir']
[u'indigen', u'welfar', u'plan', u'breach', u'race']
[u'insurg', u'rampag', u'mosul']
[u'interpret', u'servic', u'get', u'state', u'contract']
[u'iran', u'nuclear', u'deal', u'definit']
[u'iraqi', u'prison', u'abus', u'trial', u'move']
[u'irrig', u'group', u'beat', u'abil']
[u'japan', u'finger', u'china', u'incurs']
[u'japan', u'send', u'research', u'whale', u'ship', u'antarct']
[u'japan', u'slow', u'growth', u'shock', u'economist']
[u'jet', u'hope', u'snare', u'venabl']
[u'jone', u'tip', u'return', u'attack', u'rugbi']
[u'judg', u'shaw', u'resign', u'health', u'problem']
[u'kiwi', u'french', u'challeng']
[u'labor', u'stick', u'forestri', u'principl']
[u'land', u'agreement', u'pave', u'opal', u'mine']
[u'leader', u'blast', u'welfar', u'plan']
[u'legal', u'action', u'threat', u'fraser', u'dingo', u'hunt']
[u'get', u'year', u'wife', u'bash', u'death']
[u'mangi', u'albanes', u'sack']
[u'jail', u'indefinit', u'offenc']
[u'chang']
[u'marantz', u'make', u'bright', u'start', u'qualifi', u'final']
[u'market', u'break', u'high']
[u'mauresmo', u'thrash', u'zvonareva']
[u'medicar', u'chang', u'boost', u'bulk', u'bill', u'abbott']
[u'microsoft', u'search', u'engin', u'ramp', u'internet']
[u'minist', u'say', u'anti', u'hoon', u'law', u'effect']
[u'minist', u'recommit', u'vanuatu', u'china', u'polici']
[u'citrus', u'canker', u'central']
[u'seek', u'list', u'telstra', u'benefit']
[u'trial', u'chang', u'point', u'rule']
[u'cereb', u'palsi', u'clinic', u'spenc']
[u'north', u'west']
[u'rise', u'railcorp', u'execut']
[u'urg', u'confront', u'player', u'exodus']
[u'polic', u'drug', u'amnesti', u'review']
[u'odorama', u'celebr', u'itali', u'white', u'diamond']
[u'price', u'lose', u'renew', u'declin']
[u'opposit', u'air', u'mental', u'health', u'fund', u'concern']
[u'oversea', u'worker', u'help', u'bush']
[u'palestinian', u'famili', u'welcom', u'yasser', u'arafat']
[u'palestinian', u'prepar', u'buri', u'arafat']
[u'peopl', u'smuggl', u'suspect', u'face', u'charg', u'perth']
[u'philip', u'morri', u'discov', u'passiv', u'smoke', u'risk']
[u'philippin', u'train', u'crash', u'kill']
[u'philippin', u'train', u'crash', u'ravin']
[u'pittman', u'join', u'race', u'save', u'wombat']
[u'pole', u'danc', u'class', u'children', u'ax']
[u'polic', u'charg', u'dash', u'rugbi']
[u'polic', u'custom', u'smash', u'duti', u'free', u'racket']
[u'polic', u'hold', u'fear', u'miss', u'teen']
[u'polic', u'hunt', u'basebal', u'thiev']
[u'polic', u'probe', u'yeppoon', u'stab']
[u'polic', u'chopper', u'drug', u'crackdown']
[u'post', u'mortem', u'trucker', u'train', u'crash']
[u'powerco', u'face', u'prosecut', u'mishap']
[u'power', u'station', u'report', u'expect', u'year']
[u'cannabi', u'group', u'cast', u'doubt', u'driver', u'drug']
[u'program', u'tackl', u'public', u'servic', u'stress', u'govt']
[u'push', u'attract', u'japanes', u'tourist']
[u'queen', u'elizabeth', u'lead', u'poignant', u'tribut', u'britain']
[u'report', u'highlight', u'olymp', u'potenti']
[u'head', u'gear', u'swap', u'meet', u'heaven']
[u'rider', u'descend', u'adelaid', u'hors', u'trial']
[u'robust', u'economi', u'hint', u'wage', u'pressur']
[u'roddick', u'lead', u'davi', u'final']
[u'rubbl', u'dump', u'distress', u'resid']
[u'saudi', u'arabia', u'releas', u'milit', u'siez']
[u'schofield', u'quit', u'power']
[u'school', u'condit', u'heat']
[u'search', u'aim', u'shed', u'light', u'reef', u'micro', u'organ']
[u'world', u'urg', u'fund', u'bear', u'facil', u'china']
[u'seven', u'candid', u'contest', u'tare', u'elect']
[u'shire', u'leader', u'see', u'merit', u'indigen', u'welfar', u'plan']
[u'sibl', u'death', u'prompt', u'foster', u'care', u'rule']
[u'silver', u'fern', u'faze', u'record', u'crowd']
[u'sinclair', u'shin', u'kiwi', u'toppl']
[u'snowi', u'work', u'boost', u'water', u'storag']
[u'sponsor', u'stick', u'phelp']
[u'springborg', u'releas', u'conserv', u'parti', u'plan']
[u'lanka', u'say', u'rule', u'buri', u'murali', u'controversi']
[u'storm', u'take', u'toll', u'dirranbandi']
[u'storm', u'wreak', u'havoc', u'bathurst']
[u'strong', u'quak', u'kill', u'indonesia']
[u'student', u'hostel', u'unabl', u'appeal', u'balconi', u'fall']
[u'support', u'west', u'doctor', u'plan']
[u'support', u'mooroopna', u'freight', u'centr', u'plan']
[u'support', u'show', u'milk', u'price', u'negoti']
[u'surgeon', u'catch', u'child', u'porn', u'continu', u'work']
[u'tamil', u'tiger', u'reviv', u'peac', u'talk']
[u'tanzania', u'like', u'coelacanth', u'spot', u'scientist']
[u'taser', u'trial', u'rais', u'communiti', u'concern']
[u'task', u'forc', u'beat', u'port', u'hedland', u'job']
[u'parliament', u'pass', u'raft', u'legisl']
[u'teach', u'plan', u'doesnt', u'faze']
[u'technolog', u'stock', u'lead', u'market', u'higher']
[u'tendulkar', u'dismiss', u'critic', u'style']
[u'tenni', u'australia', u'reject', u'call', u'overhaul']
[u'hospitalis', u'canberra', u'crash']
[u'hurt', u'south', u'coast', u'crash']
[u'toad', u'target', u'island', u'campaign']
[u'tourism', u'accolad', u'newcastl']
[u'track', u'studi', u'aim', u'learn', u'turtl']
[u'troop', u'evacu', u'expat', u'ivori', u'coast']
[u'truck', u'firm', u'random', u'drug', u'test']
[u'station', u'burn', u'nigeria', u'violenc']
[u'chief', u'appeal', u'calm', u'ivori', u'coast']
[u'union', u'time', u'job', u'need']
[u'launch', u'appeal', u'forget', u'tragedi']
[u'citrus', u'firm', u'suspend', u'oper']
[u'eye', u'complet', u'control', u'fallujah']
[u'forc', u'control', u'fallujah', u'saturday']
[u'vatican', u'prais', u'arafat', u'palestinian', u'vision']
[u'vaughan', u'look', u'forward', u'zimbabw', u'tour']
[u'polic', u'dismiss', u'stun', u'concern']
[u'violenc', u'crackdown', u'prompt', u'resourc', u'plea']
[u'govt', u'confid', u'win', u'super']
[u'warhol', u'mustard', u'draw']
[u'water', u'boost', u'plan', u'central', u'coast']
[u'welfar', u'plan', u'label', u'mission', u'mental']
[u'william', u'davenport', u'win', u'start']
[u'wineri', u'hefti']
[u'woman', u'avoid', u'jail', u'kill', u'husband']
[u'woman', u'hurt', u'orbost', u'crash']
[u'woodsid', u'energi', u'pioneer', u'search', u'bight']
[u'world', u'leader', u'farewel', u'arafat']
[u'world', u'leader', u'gather', u'arafat', u'funer']
[u'zimbabw', u'court', u'uphold', u'land', u'law']
[u'abus', u'victim', u'angri', u'govt', u'claim', u'payout']
[u'push', u'cinema', u'anti', u'smoke']
[u'reject', u'stamp', u'duti', u'reduct']
[u'deni', u'know', u'judg', u'alcohol', u'problem']
[u'ambros', u'quickest', u'symmon', u'plain', u'practic']
[u'amnesti', u'condemn', u'haitian', u'human', u'right', u'failur']
[u'arafat', u'lay', u'rest', u'ramallah']
[u'armi', u'green', u'ant', u'guard', u'mango', u'crop']
[u'asbesto', u'removalist', u'suspend', u'worksaf']
[u'ashcroft', u'derid', u'judici', u'meddl', u'terror']
[u'aussi', u'netbal', u'play', u'pride']
[u'aussi', u'soldier', u'save', u'black', u'watch', u'helicopt', u'iraq']
[u'aust', u'minist', u'risk', u'defam', u'action', u'terri', u'hick']
[u'australia', u'look', u'regain', u'lose', u'pride', u'elli']
[u'australia', u'upset', u'silver', u'fern']
[u'baghdad', u'airport', u'close', u'indefinit']
[u'beckham', u'leav', u'door', u'open', u'return']
[u'black', u'cap', u'collaps', u'blue', u'charg']
[u'black', u'cap', u'solid', u'start', u'second', u'inning']
[u'blair', u'attend', u'servic', u'murder', u'iraq', u'hostag']
[u'blue', u'rocket', u'blast', u'award']
[u'bodi', u'north', u'east', u'victoria']
[u'bootylici', u'dummi', u'fashion', u'debut']
[u'surviv', u'flight', u'hide', u'land', u'gear']
[u'bulgarelli', u'deni', u'drug', u'link']
[u'bush', u'blair', u'chanc', u'peac']
[u'canberra', u'bulk', u'bill', u'rat', u'increas']
[u'canberra', u'level', u'rise']
[u'canberra', u'host', u'home', u'brew', u'championship']
[u'chelsea', u'stick', u'mutu', u'bosnich']
[u'chemist', u'distanc', u'euthanasia']
[u'church', u'slam', u'abus', u'victim', u'repay', u'demand']
[u'compani', u'express', u'port', u'hedland', u'iron']
[u'secur', u'begin', u'home']
[u'corrupt', u'investig', u'air', u'bash', u'threat', u'claim']
[u'council', u'seek', u'garbolog', u'offic']
[u'council', u'weigh', u'fate']
[u'court', u'hear', u'berlusconi', u'briberi', u'claim']
[u'crowd', u'pack', u'adelaid', u'christma', u'pageant']
[u'custom', u'nab', u'alleg', u'parrot', u'smuggler']
[u'dane', u'protest', u'fallujah', u'attack']
[u'death', u'toll', u'indonesian', u'quak', u'rise']
[u'death', u'toll', u'rise', u'fallujah', u'battl']
[u'diaz', u'lead', u'alabama']
[u'disabl', u'pluck', u'rise', u'flood']
[u'dutch', u'troop', u'leav', u'iraq', u'march']
[u'elect', u'strategi', u'top', u'agenda']
[u'european', u'flee', u'ivori', u'coast', u'violenc']
[u'festiv', u'honour', u'young', u'film', u'maker']
[u'guantanamo', u'trial', u'postpon']
[u'fleme', u'clear', u'test']
[u'flesch', u'leonard', u'lead', u'napl', u'shoot']
[u'fourteen', u'hurt', u'bomb', u'rock', u'thailand']
[u'shanklin', u'fire', u'wale', u'past', u'sorri', u'romania']
[u'gastro', u'outbreak', u'prompt', u'nagambi', u'fish', u'warn']
[u'govt', u'call', u'feedback', u'train', u'initi']
[u'govt', u'parti', u'drug', u'test', u'kit']
[u'green', u'camp', u'hope', u'secur', u'titl', u'bout', u'perth']
[u'gronholm', u'set', u'sizzl', u'pace', u'ralli', u'australia']
[u'gronholm', u'spin', u'ralli', u'australia']
[u'haiti', u'issu', u'aristid', u'arrest', u'warrant']
[u'heavi', u'rain', u'strong', u'wind', u'melbourn']
[u'hezbollah', u'warn', u'israel', u'drone', u'attack']
[u'classroom', u'spark', u'teacher', u'threat']
[u'humanitarian', u'crisi', u'fallujah', u'crescent']
[u'india', u'open', u'kashmir', u'negoti']
[u'indonesia', u'tri', u'infiltr', u'asi', u'spymast', u'say']
[u'insurg', u'fight', u'fallujah', u'south']
[u'iran', u'respond', u'pressur', u'nuclear', u'activ']
[u'irregular', u'swab', u'prompt', u'plaster', u'investig']
[u'itali', u'anchor', u'remov', u'polit', u'pressur', u'fear']
[u'katich', u'hurt', u'test', u'ax']
[u'kelli', u'win', u'start', u'tasmania']
[u'labor', u'bicker', u'forest', u'trip']
[u'leed', u'sell', u'grind', u'deal', u'collaps']
[u'loeb', u'take', u'titl', u'gronholm', u'crash']
[u'lombard', u'continu', u'burn']
[u'lynx', u'remain', u'winless', u'ranger']
[u'magistr', u'worship', u'honour']
[u'charg', u'sick', u'partner', u'death']
[u'face', u'court', u'sick', u'partner', u'death']
[u'media', u'watchdog', u'deplor', u'iraq', u'govt', u'threat']
[u'milit', u'control', u'part', u'mosul']
[u'miln', u'accus', u'undermin', u'devil', u'diseas', u'effort']
[u'fund', u'need', u'mental', u'health', u'report']
[u'mourn', u'palestinian', u'pledg', u'vote', u'replac', u'arafat']
[u'myskina', u'down', u'davenport', u'champ']
[u'mysteri', u'surround', u'arafat', u'ill']
[u'nation', u'cautious', u'parti', u'merger', u'plan']
[u'base', u'respons', u'time']
[u'bowl', u'rule', u'increas', u'varieti', u'buchanan']
[u'news', u'corp', u'complet']
[u'barrist', u'lament', u'loss', u'shaw']
[u'face', u'christma', u'turkey', u'shortag']
[u'polic', u'union', u'drug', u'amnesti', u'abolit']
[u'cancel', u'asbesto', u'removalist', u'licenc']
[u'price', u'eas', u'despit', u'cold', u'snap']
[u'omeley', u'get', u'bench', u'spot']
[u'oram', u'mop', u'blue', u'tail']
[u'outrag', u'alcohol', u'relat', u'death', u'rat', u'criticis']
[u'park', u'ax', u'hugh', u'show', u'hard', u'nose', u'approach']
[u'phone', u'blitz', u'rais', u'public', u'transport', u'awar']
[u'quiet', u'judg', u'alcohol', u'read']
[u'polic', u'investig', u'dubbo', u'drive']
[u'polic', u'probe', u'toowoomba', u'murder']
[u'polic', u'reveal', u'second', u'attempt', u'abduct', u'detail']
[u'polic', u'interview', u'roger', u'alleg', u'assault']
[u'polic', u'welcom', u'increas', u'death', u'cover']
[u'problem', u'gambl', u'affect', u'salvo']
[u'beekeep', u'fear', u'industri', u'futur']
[u'busi', u'back', u'unifi', u'conserv', u'parti']
[u'liber', u'dismiss', u'nation', u'merger', u'plan']
[u'rain', u'eas', u'drought', u'situat']
[u'rogg', u'say', u'athen', u'standard', u'beij']
[u'sack', u'raider', u'player', u'deni', u'drug', u'link']
[u'sexual', u'abus', u'victim', u'face', u'repay', u'medicar', u'rebat']
[u'kill', u'peruvian', u'lightn', u'strike']
[u'south', u'korea', u'warn', u'hard', u'line', u'north']
[u'strong', u'wind', u'sydney', u'north', u'coast']
[u'taliban', u'leader', u'pledg', u'liber', u'afghanistan']
[u'record', u'residenti', u'lend']
[u'tender', u'process', u'begin', u'indigen', u'legal']
[u'toshack', u'appoint', u'wale', u'manag']
[u'toxic', u'agent', u'probabl', u'caus', u'gulf', u'syndrom']
[u'travel', u'plan', u'smart', u'opposit', u'say']
[u'arrest', u'adelaid', u'brawl']
[u'union', u'want', u'govt', u'step', u'wage', u'disput']
[u'claim', u'missil', u'shield', u'laser', u'test', u'success']
[u'deni', u'snub', u'arafat']
[u'polic', u'stun', u'year']
[u'video', u'reveal', u'french', u'hostag', u'good', u'health']
[u'wallabi', u'look', u'forward', u'french', u'test']
[u'wall', u'street', u'make', u'slim', u'gain']
[u'polic', u'offic', u'face', u'ecstasi', u'charg']
[u'research', u'spell', u'blood', u'glucos', u'prick']
[u'webster', u'eye', u'tassal', u'salmon', u'merger']
[u'woman', u'kill', u'fall', u'tree']
[u'workshop', u'focus', u'child', u'rear']
[u'zarqawi', u'tape', u'call', u'rebel', u'fight', u'forc']
[u'mazen', u'favourit', u'fatah']
[u'brew', u'blitz', u'championship']
[u'agreement', u'reach', u'volunt', u'group', u'disput']
[u'albanes', u'ignor', u'forestri', u'issu', u'union']
[u'vow', u'stand', u'firm', u'issu']
[u'chase', u'robson', u'houllier']
[u'beckham', u'consid', u'england', u'retir', u'world']
[u'beckham', u'return', u'spain', u'friend']
[u'bhopal', u'contamin', u'probe', u'find']
[u'hitter', u'smash', u'cricket', u'match']
[u'black', u'cap', u'capabl', u'test', u'boilov', u'say', u'fleme']
[u'black', u'cap', u'knuckl', u'heavi', u'defeat']
[u'blue', u'verg', u'victori']
[u'blue', u'thump', u'zealand']
[u'injur', u'play']
[u'boy', u'charg', u'veteran', u'murder']
[u'braidwood', u'get', u'radio', u'station']
[u'brave', u'butt', u'ruin', u'indian', u'parti', u'maiden', u'centuri']
[u'britain', u'shock', u'kangaroo', u'book', u'final', u'berth']
[u'fire', u'arafat', u'report', u'produc']
[u'cheney', u'hospit', u'short', u'breath']
[u'china', u'order', u'inspect', u'disast']
[u'church', u'concern', u'abus', u'compens', u'letter']
[u'communiti', u'develop', u'dugong', u'turtl', u'plan']
[u'councillor', u'death', u'shock']
[u'council', u'slam', u'domest', u'violenc']
[u'campaign', u'target']
[u'crimin', u'file', u'relat']
[u'cyprus', u'atlanti']
[u'dali', u'donofrio', u'seiz', u'stroke', u'lpga', u'lead']
[u'davenport', u'dismiss', u'open', u'door', u'mauresmo']
[u'dolphin', u'death', u'prompt', u'feder', u'action']
[u'drink', u'drive', u'blitz', u'pleas', u'polic']
[u'driver', u'flee', u'scene', u'fatal', u'accid']
[u'drought', u'blame', u'rise', u'chariti', u'request']
[u'egypt', u'hop', u'solv', u'king', u'riddl']
[u'eurostar', u'celebr', u'birthday']
[u'fate', u'iraqi', u'kidnap', u'relat', u'unknown']
[u'feder', u'focus', u'master', u'success']
[u'explos', u'rock', u'southern', u'thailand']
[u'fli', u'doctor', u'experi', u'surg', u'demand']
[u'dead', u'sailor', u'miss', u'violent', u'storm']
[u'ganguli', u'pathan', u'return', u'india', u'test', u'squad']
[u'goleo', u'lion', u'confirm', u'world']
[u'green', u'hope', u'melbourn', u'mayor', u'race']
[u'half', u'perth', u'year', u'old', u'suffer', u'asthma']
[u'trick', u'hero', u'robinson', u'star', u'canada', u'rout']
[u'histor', u'figur', u'greet', u'return', u'politician']
[u'hockeyroo', u'earn', u'crack', u'bronz']
[u'hospit', u'give', u'cheney', u'clear']
[u'howard', u'quiet', u'asi', u'bug', u'claim']
[u'ingal', u'take', u'tassi', u'tripl', u'challeng']
[u'iraq', u'eye', u'fallujah', u'fight']
[u'iraqi', u'crescent', u'convoy', u'enter', u'fallujah']
[u'ireland', u'wreck', u'bok', u'grand', u'slam', u'dream']
[u'ivori', u'coast', u'accus', u'franc', u'shoot', u'civilian']
[u'ivori', u'coast', u'leader', u'defiant', u'summit', u'conven']
[u'japanes', u'princess', u'marri', u'common']
[u'jellyfish', u'delay', u'troubl', u'cruis', u'ship', u'departur']
[u'joint', u'ventur', u'target', u'communiti', u'literaci', u'numeraci']
[u'jone', u'lament', u'wallabi', u'mistak', u'rate']
[u'journalist', u'death', u'toll', u'pass']
[u'kuehn', u'sluman', u'grab', u'share', u'florida', u'lead']
[u'laser', u'scan', u'provid', u'eye']
[u'liber', u'reject', u'merger', u'plan']
[u'live', u'sheep', u'export', u'tip', u'slide']
[u'loeb', u'equal', u'record', u'ralli', u'australia', u'victori']
[u'loeb', u'cours', u'record', u'equal', u'ralli', u'victori']
[u'loeb', u'cours', u'record', u'equal', u'victori']
[u'seek', u'attempt', u'abduct']
[u'marin', u'caucasian', u'woman', u'bodi', u'fallujah']
[u'martin', u'japanes', u'investor']
[u'melbourn', u'water', u'deni', u'health', u'risk', u'tast']
[u'milit', u'spread', u'fight', u'iraq']
[u'minist', u'prais', u'melbourn', u'winter', u'event', u'windfal']
[u'mourinho', u'mock', u'arsenal', u'disgrac', u'defenc']
[u'asbesto', u'risk', u'civic', u'squar', u'site', u'mayor']
[u'northern', u'irish', u'protest', u'group', u'pledg']
[u'angri', u'surgeon', u'train', u'place']
[u'artist', u'take', u'richest', u'landscap', u'prize']
[u'encourag', u'teacher', u'scholarship']
[u'pakistan', u'claim', u'border', u'milit']
[u'perth', u'turn', u'support', u'super']
[u'dismiss', u'push', u'abort', u'inquiri']
[u'polic', u'investig', u'hervey', u'assault']
[u'polic', u'record', u'ecstasi', u'bust']
[u'polic', u'releas', u'drug', u'hous', u'arrest', u'figur']
[u'polic', u'station', u'host', u'birth']
[u'polic', u'interview', u'collis', u'driver']
[u'powel', u'like', u'meet', u'palestinian', u'leader']
[u'power', u'return', u'lockyer', u'valley', u'plane', u'crash']
[u'merger', u'vote', u'springborg', u'urg', u'liber']
[u'rampant', u'black', u'outclass', u'itali']
[u'rise', u'fee', u'deter', u'student']
[u'sailor', u'stabl', u'condit', u'rescu']
[u'sailor', u'rescu', u'submarin', u'accid']
[u'scotland', u'rout', u'japan']
[u'secur', u'tight', u'apec', u'meet']
[u'spanish', u'separatist', u'peac']
[u'suntan', u'see', u'healthi']
[u'surgeon', u'colleg', u'blame', u'place', u'shortag', u'lack']
[u'thousand', u'european', u'protest', u'isra']
[u'train', u'worker', u'strike', u'fail', u'disrupt', u'pageant']
[u'tropic', u'wetland', u'threat', u'confer', u'tell']
[u'block', u'reach', u'fallujah', u'resid']
[u'plan', u'ambiti', u'wireless', u'militari', u'network']
[u'troop', u'tackl', u'rebel', u'redoubt', u'fallujah']
[u'demand', u'urgent', u'surgeon', u'train', u'talk']
[u'warrior', u'bat', u'shorten', u'clash']
[u'warrior', u'rain', u'reduc', u'match']
[u'tell', u'bite', u'bullet', u'water', u'project']
[u'warn', u'diabet', u'epidem']
[u'wildcat', u'break', u'sydney', u'drought']
[u'wildcat', u'complet', u'sydney', u'clean', u'sweep']
[u'abort', u'debat', u'touchi', u'subject', u'canberra']
[u'abus', u'victim', u'repay', u'medicar', u'rebat', u'govt']
[u'access', u'predict', u'budget', u'surplus', u'econom']
[u'emerg', u'servic', u'cooper']
[u'afghanistan', u'hostag', u'taker', u'renew', u'deadlin']
[u'airlin', u'stowaway', u'prove', u'hard', u'track']
[u'airnorth', u'say', u'decis', u'flight', u'take']
[u'airport', u'doubt', u'dragway', u'green', u'light']
[u'doubt', u'bishop', u'speaker']
[u'ambros', u'hail', u'symmon', u'plain', u'attend']
[u'amcor', u'fine', u'outrag', u'union']
[u'american', u'music', u'award', u'usher']
[u'assault', u'investig']
[u'astl', u'like', u'play', u'brisban']
[u'attorney', u'general', u'refus', u'weigh', u'magistr']
[u'aussi', u'pace', u'trio', u'bowl', u'illeg', u'say', u'murali']
[u'aussi', u'confid', u'lehmann', u'right', u'test']
[u'australia', u'get', u'hotter', u'warn', u'scientist']
[u'australia', u'waiv', u'ethiopian', u'debt']
[u'aust', u'join', u'fight', u'stamp', u'illeg', u'log']
[u'baildon', u'pay', u'tribut', u'robbin']
[u'barca', u'unbeaten', u'run', u'end', u'real', u'crush', u'albacet']
[u'beach', u'tragedi', u'prompt', u'uniform', u'signag']
[u'beer', u'gut', u'tick', u'time', u'bomb']
[u'bellevu', u'hotel', u'develop', u'plan', u'council']
[u'coffer', u'grow', u'amid', u'sale', u'discoveri']
[u'citi', u'chase', u'magic', u'formula']
[u'blaze', u'spark', u'warn']
[u'blind', u'predict', u'destroy', u'wallabi']
[u'burnett', u'busi', u'brainstorm', u'idea', u'growth']
[u'bush', u'nurs', u'win', u'recognit']
[u'bushrang', u'suit', u'armour', u'exhibit']
[u'cancer', u'council', u'remind', u'peopl', u'cover', u'home']
[u'candid', u'line', u'speaker']
[u'carr', u'green', u'credenti']
[u'chef', u'jail', u'heroin', u'traffic']
[u'china', u'plan', u'world', u'tallest', u'tower']
[u'china', u'say', u'taiwan', u'conflict', u'unavoid']
[u'civil', u'libertarian', u'question', u'famili', u'violenc']
[u'close', u'build', u'safer', u'cyclon', u'research']
[u'leak', u'spark', u'scare']
[u'communiti', u'get', u'number', u'plat']
[u'compani', u'confid', u'fitzroy', u'river', u'plan']
[u'confer', u'aim', u'improv', u'indigen', u'educ']
[u'confer', u'promot', u'hazelnut', u'grower']
[u'confer', u'show', u'refuge', u'cultur']
[u'conspiraci', u'rumour', u'abound', u'follow', u'arafat', u'death']
[u'coron', u'seek', u'help', u'famili', u'drown']
[u'council', u'tell', u'constitut', u'amend', u'requir']
[u'council', u'welcom', u'olymp', u'product', u'propos']
[u'court', u'hear', u'mokbel', u'money', u'cocain']
[u'court', u'tell', u'hook', u'throw', u'punch']
[u'crayfish', u'surfer', u'coast']
[u'croc', u'face', u'challeng', u'perform', u'away']
[u'croc', u'home', u'put', u'pressur', u'away']
[u'dali', u'donofrio', u'win', u'tournament', u'champion']
[u'david', u'hawker', u'name', u'speaker']
[u'defenc', u'offici', u'deni', u'lie', u'fatal', u'accid']
[u'piero', u'keep', u'juventus', u'clear']
[u'democrat', u'seek', u'limit', u'coalit', u'senat', u'control']
[u'detect', u'investig', u'fatal', u'road', u'rage', u'stab']
[u'disabl', u'group', u'ramp', u'club', u'access', u'complaint']
[u'doctor', u'surgeon', u'health', u'sector']
[u'dog', u'take', u'aback', u'croft', u'claim']
[u'dont', u'caus', u'headach', u'railcorp']
[u'jone', u'purchas', u'marketwatch']
[u'drought', u'condit', u'eas', u'region']
[u'drought', u'figur', u'improv']
[u'earli', u'start', u'bushfir', u'season', u'prevent', u'backburn']
[u'arrest', u'joint', u'polic', u'drug', u'oper']
[u'elli', u'rule', u'second', u'netbal', u'test']
[u'condemn', u'water', u'canal']
[u'environ', u'dept', u'pleas', u'spray', u'outcom']
[u'mobster', u'rejoin', u'communiti', u'pinki', u'time']
[u'expedit', u'head', u'coldest', u'spot', u'earth']
[u'farina', u'say', u'kewel', u'return', u'form']
[u'fewer', u'offend', u'catch', u'drink', u'drive', u'crackdown']
[u'destroy', u'hobart', u'hous']
[u'propos', u'tunnel', u'expect']
[u'fisher', u'adjust', u'submiss', u'today']
[u'fisher', u'concern', u'threat', u'beacon']
[u'fisher', u'suspect', u'weir', u'pollut']
[u'fish', u'surviv', u'day', u'iranian', u'fridg']
[u'fleme', u'prepar', u'play', u'fit']
[u'fli', u'visit', u'brighten', u'sick', u'kid']
[u'republ']
[u'seek', u'babi', u'bash', u'charg', u'stay']
[u'franc', u'ivori', u'coast', u'relat', u'worsen']
[u'french', u'polic', u'unwit', u'aid', u'jewelleri', u'thief']
[u'fresh', u'fight', u'break', u'fallujah']
[u'friend', u'famili', u'urg', u'confisc', u'key', u'drink']
[u'funer', u'director', u'call', u'regul']
[u'ganguli', u'ban', u'south', u'africa', u'test', u'slow']
[u'giggss', u'unit', u'futur', u'finalis']
[u'demonstr', u'heighten', u'awar']
[u'poppi', u'offer', u'anti', u'malari', u'hope']
[u'govern', u'fund', u'schooli', u'safeti']
[u'govt', u'urg', u'begin', u'work', u'highway', u'deviat']
[u'green', u'accus', u'referendum', u'dishonesti']
[u'gretley', u'disast']
[u'group', u'say', u'tape', u'threaten', u'candi', u'plant']
[u'hardi', u'compens', u'negoti', u'stall']
[u'hardwood', u'timber', u'busi', u'merg']
[u'hear', u'begin', u'hook', u'death']
[u'hear', u'tell', u'shaw', u'disappear', u'hospit']
[u'henman', u'seek', u'elus', u'titl', u'greatest', u'season']
[u'hewitt', u'prepar', u'moya', u'challeng']
[u'hockeyroo', u'miss', u'bronz', u'controversi', u'fashion']
[u'hop', u'rest', u'work', u'group', u'council', u'disput']
[u'horticultur', u'industri', u'legal', u'claim', u'increas']
[u'hospit', u'retain', u'surgeon', u'access', u'child', u'porn']
[u'hotel', u'redevelop', u'plan', u'like', u'reject']
[u'hundr', u'tribut', u'captain', u'socceroo']
[u'injuri', u'recoveri', u'easier', u'studi']
[u'inquest', u'expect', u'holt', u'investig']
[u'inquiri', u'hear', u'shaw', u'blood', u'sampl']
[u'inquiri', u'probe', u'judg', u'miss', u'blood', u'sampl']
[u'investig', u'begin', u'sexual', u'assault']
[u'investig', u'continu', u'violent', u'jack']
[u'iran', u'curb', u'uranium', u'program']
[u'iran', u'suspend', u'uranium', u'enrich']
[u'iraq', u'rift', u'threaten', u'nato', u'mission', u'say', u'chief']
[u'iraq', u'open', u'embassi', u'australia']
[u'ivori', u'coast', u'peac', u'talk', u'begin']
[u'judg', u'deni', u'take', u'blood', u'sampl']
[u'knowl', u'nestor', u'secur', u'year', u'rank']
[u'kuehn', u'sluman', u'defend', u'shoot', u'titl']
[u'labor', u'look', u'candid', u'contest']
[u'landown', u'struggl', u'tax', u'opposit']
[u'lehmann', u'deni', u'player', u'abus', u'night', u'hook', u'die']
[u'liber', u'promis', u'fairer', u'land']
[u'lion', u'record', u'straight', u'profit']
[u'live', u'singl', u'get', u'revamp']
[u'lobster', u'fisher', u'expect', u'good', u'season']
[u'die', u'truck', u'crash']
[u'get', u'year', u'attempt', u'murder']
[u'jail', u'hotel', u'murder']
[u'walk', u'free', u'admit', u'child', u'porn']
[u'martin', u'woo', u'japanes', u'investor']
[u'mayor', u'hope', u'croweat']
[u'mayor', u'urg', u'clarifi', u'defam', u'expens', u'comment']
[u'mcmanus', u'stay', u'docker']
[u'media', u'stock', u'enjoy', u'market', u'record']
[u'melbourn', u'stem', u'cell', u'line', u'freeli', u'avail']
[u'milit', u'releas', u'allawi', u'relat']
[u'darwin', u'soldier', u'affect', u'heat', u'stress']
[u'motorcyclist', u'die', u'head', u'collis']
[u'gather', u'sit', u'parliament']
[u'mutu', u'join', u'romania', u'squad', u'travel', u'armenia']
[u'negoti', u'continu', u'palm', u'island', u'alcohol']
[u'park', u'plan', u'stall']
[u'newcastl', u'souness', u'fight', u'improp', u'conduct', u'charg']
[u'council', u'general', u'manag', u'juggl', u'job']
[u'shop', u'complex', u'complement', u'citi', u'centr']
[u'train', u'program', u'unveil', u'rural', u'doctor']
[u'question', u'suitabl', u'drought', u'relief']
[u'robson', u'reviv', u'baggi', u'boro']
[u'face', u'critic', u'airnorth', u'servic', u'suspens']
[u'oper', u'gumbl', u'target', u'drunken', u'street']
[u'oyster', u'industri', u'expect', u'purler']
[u'padthaway', u'stag', u'success', u'festiv']
[u'pair', u'arrest', u'europ', u'record', u'ecstasi', u'haul']
[u'parent', u'defend', u'spend', u'abus', u'payout']
[u'perth', u'jail', u'child', u'porn', u'offenc']
[u'plan', u'highway', u'upgrad', u'caus', u'concern']
[u'leader', u'attack', u'elect', u'date']
[u'court', u'halt', u'legal', u'appoint']
[u'polic', u'associ', u'lobbi', u'earlier', u'retir']
[u'polic', u'follow', u'european', u'lead', u'record', u'aust']
[u'polic', u'probe', u'drive', u'shoot']
[u'polic', u'communiti', u'help', u'solv', u'crime']
[u'powel', u'hold', u'west', u'bank', u'talk']
[u'pump', u'iron', u'deliv', u'result', u'patient']
[u'rain', u'boost', u'water', u'storag', u'level']
[u'rain', u'prompt', u'locust', u'warn']
[u'redback', u'intent', u'make', u'strong', u'start']
[u'bull', u'boss', u'confirm', u'jaguar', u'takeov', u'report']
[u'bull', u'confirm', u'takeov', u'jaguar']
[u'region', u'busi', u'look', u'offshor']
[u'retail', u'close', u'box']
[u'cheer', u'profit', u'boost']
[u'rfds', u'take']
[u'rise', u'commod', u'spur', u'market', u'high']
[u'rooney', u'doubl', u'sink', u'newcastl']
[u'rural', u'children', u'learn', u'beach', u'safeti']
[u'saff', u'clarifi', u'mules', u'stanc']
[u'govt', u'say', u'link', u'citi', u'countri']
[u'school', u'take', u'stock', u'blaze']
[u'seashift', u'council', u'develop', u'industri', u'estat']
[u'seven', u'detaine', u'injur']
[u'shaw', u'deni', u'flee', u'blood', u'sampl']
[u'sibl', u'money', u'argument', u'spark', u'fatal']
[u'strict', u'water', u'limit', u'impos']
[u'sunshin', u'state', u'top', u'tourist']
[u'survey', u'illumin', u'cancer', u'myth']
[u'support', u'river', u'bank', u'develop']
[u'place', u'nation', u'trust', u'administr']
[u'telstra', u'complet', u'share']
[u'territori', u'showcas', u'mobil', u'preschool']
[u'thai', u'free', u'trade', u'treati', u'gain', u'support']
[u'think', u'tank', u'review', u'telstra', u'sale', u'issu']
[u'thorp', u'blast', u'offici', u'zimbabw', u'tour']
[u'timber', u'yard', u'protest', u'arrest']
[u'time', u'kind', u'word', u'not']
[u'titan', u'threaten', u'tourist', u'say', u'explor']
[u'toll', u'compani', u'driver', u'wont', u'rule']
[u'price', u'guid', u'win', u'nation', u'award']
[u'victorian', u'honour', u'braveri']
[u'injur', u'ultra', u'light', u'crash']
[u'uganda', u'declar', u'temporari', u'truce', u'rebel']
[u'triumphant', u'annual', u'aussi', u'rule', u'match']
[u'union', u'employ', u'wrangl', u'workplac', u'safeti', u'law']
[u'uralla', u'commemor', u'bushrang', u'death']
[u'death', u'number', u'decreas']
[u'death', u'toll', u'rise', u'fallujah']
[u'forc', u'fail', u'captur', u'zarqawi']
[u'hunt', u'fallujah', u'rebel', u'block']
[u'senat', u'slam', u'dysfunct', u'rogu']
[u'plan', u'target', u'iraq', u'rebel']
[u'weed', u'fallujah', u'resist']
[u'veteran', u'accus', u'murder', u'remain', u'custodi']
[u'consid', u'tough', u'workplac', u'safeti', u'law']
[u'mine', u'industri', u'boom']
[u'visitor', u'flock', u'nation', u'swap', u'meet']
[u'warn', u'name', u'fleme', u'brisban', u'target']
[u'warren', u'funer', u'hold', u'today']
[u'weve', u'definit', u'atlanti', u'research', u'say']
[u'william', u'hand', u'davenport', u'number']
[u'tang', u'star', u'dead']
[u'accc', u'call', u'increas', u'port', u'capac', u'invest']
[u'prepar', u'water', u'suppli']
[u'actu', u'critic', u'propos', u'workplac', u'law']
[u'european', u'base']
[u'alcohol', u'drug', u'chief', u'concern', u'youth']
[u'algal', u'bloom', u'creat', u'myrtleford', u'water', u'woe']
[u'anti', u'bush', u'sentiment', u'fuel', u'apec', u'protest']
[u'announc', u'incent', u'program', u'elit', u'athlet']
[u'appeal', u'athen', u'result']
[u'launch', u'roger', u'medal', u'appeal']
[u'applebi', u'predict', u'boom', u'australian', u'golf']
[u'armidal', u'airport', u'take']
[u'armi', u'farewel', u'trooper']
[u'dip', u'point']
[u'safeguard', u'supplement']
[u'attorney', u'general', u'defend', u'famili', u'violenc']
[u'aussi', u'dollar', u'gain', u'euro', u'sell']
[u'aussi', u'netbal', u'shoot', u'seri']
[u'australia', u'lodg', u'huge', u'seab', u'claim']
[u'ban', u'ganguli', u'play', u'protea']
[u'beckham', u'scotch', u'earli', u'retir', u'rumour']
[u'black', u'hole', u'discoveri', u'excit', u'scientist']
[u'bouncer', u'grab', u'hook', u'throat', u'wit']
[u'bowler', u'avoid', u'hayden']
[u'bushrang', u'consist', u'ambush']
[u'busi', u'prepar', u'return', u'shop', u'centr']
[u'defend', u'bowler', u'murali', u'chuck', u'claim']
[u'hepburn', u'dental', u'care', u'probe']
[u'ballina', u'bypass', u'fund']
[u'canal', u'plan', u'gain', u'liber', u'candid', u'support']
[u'cane', u'toad', u'close', u'darwin']
[u'chanc', u'lament', u'lobster', u'agreement']
[u'child', u'care', u'crisi', u'loom', u'roxbi', u'down']
[u'spi', u'quit', u'amid', u'reform']
[u'coliban', u'defend', u'eas', u'water', u'ban']
[u'communiti', u'angri', u'wind', u'farm', u'plan']
[u'confus', u'surround', u'fare', u'action']
[u'coomealla', u'club', u'lift', u'profit', u'year', u'high']
[u'council', u'consid', u'lake', u'fish', u'option']
[u'councillor', u'rais', u'doubt', u'plan', u'site']
[u'council', u'ponder', u'yarrawonga', u'rezon']
[u'council', u'weigh', u'develop', u'issu']
[u'court', u'case', u'test', u'indigen', u'fish', u'right']
[u'court', u'rule', u'soldier', u'sarin', u'death', u'unlaw']
[u'credit', u'card', u'fraud', u'earn', u'woman', u'longer', u'jail', u'term']
[u'crow', u'pair', u'give', u'fit', u'deadlin']
[u'cut', u'urg', u'person', u'rate']
[u'death', u'threat', u'target', u'sniffer']
[u'death', u'toll', u'rise', u'indonesian', u'quak']
[u'debat', u'rag', u'cotton', u'test']
[u'democrat', u'play', u'grain', u'export', u'fear']
[u'ring', u'strong', u'quarter']
[u'drink', u'drive', u'studi', u'show', u'parent', u'role']
[u'driver', u'die', u'crash', u'road', u'train']
[u'edmond', u'extend', u'contract', u'perpignan']
[u'england', u'recal', u'worsley', u'face', u'springbok']
[u'ethnic', u'food', u'industri', u'worth']
[u'european', u'probe', u'lunar', u'orbit']
[u'expert', u'evid', u'drown', u'inquest']
[u'fall', u'media', u'mogul', u'charg', u'fraud']
[u'famili', u'arafat', u'medic', u'record']
[u'farina', u'name', u'strong', u'line', u'norway', u'clash']
[u'februari', u'date', u'carnarvon', u'wharf', u'work']
[u'feder', u'elect']
[u'feder', u'open', u'master', u'defenc', u'victori']
[u'serious', u'injur', u'tilt', u'train', u'derail']
[u'flatley', u'lead', u'australia']
[u'focus', u'region', u'health', u'servic', u'deliveri']
[u'yeoval', u'student', u'villag', u'doctor']
[u'injur', u'accid']
[u'franc', u'rule', u'french', u'polynesia', u'elect', u'invalid']
[u'fund', u'hang', u'balanc', u'cane', u'plant']
[u'gebrselassi', u'target', u'februari', u'comeback']
[u'global', u'warm', u'aust', u'uninhabit']
[u'governor', u'general', u'open', u'parliament']
[u'govt', u'ask', u'consid', u'south', u'east', u'technic', u'colleg']
[u'govt', u'back', u'clemenc', u'kazakh', u'prison']
[u'govt', u'back', u'review', u'sexual', u'abus', u'investig']
[u'govt', u'undermin', u'nation', u'trust', u'say', u'opposit']
[u'govt', u'urg', u'speed', u'bridg', u'studi']
[u'grain', u'deliveri']
[u'grain', u'harvest']
[u'green', u'group', u'confid', u'whale', u'rule']
[u'group', u'reject', u'schooli', u'week', u'critic']
[u'group', u'want', u'buck', u'rodeo', u'trend']
[u'hank', u'crack', u'code']
[u'hast', u'council', u'ponder', u'chang']
[u'hayden', u'disappoint', u'murali', u'alleg']
[u'health', u'expert', u'visit', u'asbesto', u'contamin', u'site']
[u'health', u'group', u'welcom', u'fund']
[u'health', u'servic', u'aim', u'avert', u'hospit', u'board']
[u'holyfield', u'receiv', u'medic', u'suspens']
[u'hook', u'push', u'shove', u'bouncer', u'court', u'tell']
[u'hope', u'water', u'option', u'flow', u'talk']
[u'illeg', u'fish', u'land', u'indonesian', u'jail']
[u'indian', u'armi', u'kashmir', u'troop', u'number']
[u'indigen', u'patient', u'miss', u'medic', u'follow']
[u'industri', u'relat', u'report', u'prompt', u'opposit']
[u'injur', u'kalli', u'doubt', u'india', u'test']
[u'insurg', u'attack', u'iraq', u'pipelin']
[u'investig', u'comb', u'train', u'wreckag']
[u'iran', u'sanction', u'threat', u'eas', u'nuclear', u'report']
[u'japan', u'say', u'china', u'apologis', u'intrus']
[u'cut', u'help', u'electrolux', u'remain', u'competit']
[u'judg', u'criticis', u'william', u'hear', u'delay']
[u'judg', u'awar', u'blood', u'sampl', u'say']
[u'karzai', u'hope', u'hostag', u'releas']
[u'kiwi', u'declar', u'fit', u'gabba', u'test']
[u'labor', u'critic', u'tourism', u'chief', u'appoint']
[u'labor', u'rebel', u'kimberley', u'water', u'plan']
[u'labor', u'support', u'textil', u'assist', u'packag']
[u'labor', u'welcom', u'employ', u'group', u'reform', u'propos']
[u'lectur', u'warn', u'drought', u'stress']
[u'claim', u'world', u'broadband', u'multimedia', u'phone']
[u'lobster', u'industri', u'take', u'whale', u'precaut']
[u'lobster', u'season', u'beach', u'price', u'go']
[u'macedonian', u'quit']
[u'macquari', u'bank', u'lift', u'half', u'year', u'profit']
[u'await', u'sentenc', u'partner', u'attack']
[u'jail', u'infect', u'teen']
[u'mawson', u'pioneer', u'gather', u'year', u'reunion']
[u'recognis', u'braveri', u'plane', u'drama']
[u'migrat', u'whale', u'south']
[u'million', u'coast', u'motorway']
[u'miner', u'await', u'miner', u'sand', u'explor', u'approv']
[u'miner', u'urg', u'lift', u'apprentic', u'number']
[u'drought', u'assist', u'farmer']
[u'kill', u'mosul', u'clash']
[u'push', u'riverland', u'technic', u'colleg']
[u'nation', u'exclud', u'nation', u'merger', u'plan']
[u'newcastl', u'rent', u'like', u'higher']
[u'cattl', u'chief', u'seek', u'mend', u'split']
[u'drug', u'herald', u'breast', u'cancer', u'hope']
[u'law', u'combat', u'drink', u'spike']
[u'offens', u'begin', u'mosul']
[u'news', u'crew', u'find', u'miss', u'woman']
[u'speaker', u'swear', u'parliament', u'open']
[u'nigerian', u'strike', u'abandon']
[u'jail', u'convict', u'possess', u'child', u'porn']
[u'rest', u'british', u'hero', u'dead', u'match']
[u'nrma', u'back', u'cessnock', u'road', u'fund', u'push']
[u'ombudsman', u'probe', u'handl', u'abus', u'case']
[u'omeley', u'cite', u'brawl']
[u'opposit', u'air', u'health', u'budget', u'worri']
[u'optus', u'biggest', u'australia']
[u'oversea', u'prais', u'local', u'educ']
[u'paper', u'woodchip', u'help', u'forest', u'product', u'export', u'growth']
[u'parliament', u'reopen', u'speaker']
[u'enter', u'joint', u'game', u'ventur']
[u'pest', u'mistaken', u'promot', u'brochur']
[u'petit', u'oppos', u'hunt', u'zone', u'plan']
[u'plan', u'fuel', u'petrol', u'sniff']
[u'plan', u'begin', u'temora', u'festiv']
[u'ship', u'compani', u'deni', u'crew', u'mistreat']
[u'ship', u'crew', u'deni', u'basic', u'right', u'union']
[u'poker', u'face', u'kafelnikov', u'prove', u'card']
[u'polic', u'chief', u'deni', u'hush', u'money', u'claim']
[u'polic', u'chief', u'play', u'staff', u'concern']
[u'polic', u'investig', u'fatal', u'crash']
[u'polic', u'ponder', u'fatal', u'crash', u'caus']
[u'polic', u'seek', u'fatal', u'crash', u'wit']
[u'polic', u'urg', u'mirboo', u'north', u'contact', u'famili']
[u'post', u'mortem', u'bundarra', u'bodi']
[u'powel', u'work', u'hard', u'successor', u'confirm']
[u'power', u'return', u'sydney', u'home']
[u'protest', u'ralli', u'refuge', u'treatment']
[u'public', u'warn', u'explos', u'danger']
[u'qanta', u'worker', u'appeal', u'public', u'support']
[u'crash', u'spark', u'central', u'fast', u'rail', u'fear']
[u'govt', u'fingleton', u'compo', u'decis']
[u'train', u'accid', u'investig']
[u'quak', u'hit', u'colombian', u'coast']
[u'radio', u'broadcast', u'kill', u'philippin']
[u'rain', u'postpon', u'hewitt', u'moya', u'clash']
[u'rann', u'beat', u'biomass', u'power', u'station']
[u'crescent', u'fail', u'deliv']
[u'redknapp', u'stay', u'portsmouth']
[u'refuge', u'protest', u'gather', u'adelaid']
[u'report', u'highlight', u'region', u'legal', u'fear']
[u'report', u'show', u'tourism', u'econom', u'impact']
[u'review', u'help', u'shape', u'airport', u'futur']
[u'fear', u'gate', u'woe', u'hurt', u'futur', u'profit']
[u'rice', u'replac', u'powel', u'secretari', u'state']
[u'rilli', u'win', u'consecut', u'award']
[u'ring', u'cycl', u'earn', u'audienc', u'prais']
[u'runner', u'track', u'round', u'world', u'record']
[u'scholarship', u'help', u'young', u'artist']
[u'score', u'injur', u'train', u'derail']
[u'scotland', u'extend', u'squad', u'wallabi', u'match']
[u'chang', u'prove', u'cost', u'local']
[u'search', u'continu', u'miss', u'swimmer']
[u'seccomb', u'lay', u'month']
[u'senat', u'push', u'finish', u'atsic', u'abolit', u'hear']
[u'senior', u'look', u'world', u'challeng']
[u'serial', u'offend', u'plead', u'guilti', u'indec']
[u'sharapova', u'take', u'champ']
[u'slow', u'go', u'tiger', u'beller']
[u'snowtown', u'accus', u'tell', u'life', u'wife', u'death']
[u'snowi', u'restor', u'work', u'continu']
[u'south', u'african', u'woman', u'take', u'shark']
[u'speaker', u'hop', u'minist', u'account']
[u'stanhop', u'open', u'deal', u'pierc', u'creek', u'rebuild']
[u'steward', u'probe', u'symmon', u'plain', u'result']
[u'strong', u'build', u'activ', u'push', u'rinker', u'profit']
[u'sunshin', u'coast', u'join', u'premier', u'rugbi', u'comp']
[u'surgeon', u'fin', u'child', u'porn', u'face', u'medic', u'board']
[u'survey', u'highlight', u'good', u'hunter', u'economi']
[u'survey', u'highlight', u'local', u'firm', u'competit']
[u'surveyor', u'hunt', u'stone', u'formalis']
[u'sydney', u'unit', u'resid', u'lock', u'upgrad']
[u'amend', u'offenc']
[u'firm', u'hail', u'broadband', u'power', u'line']
[u'govt', u'order', u'construct', u'firm']
[u'polic', u'seek', u'lock', u'horn', u'thiev']
[u'teen', u'shoot', u'murder', u'charg', u'chang', u'plea']
[u'thorni', u'reef', u'problem', u'move', u'south']
[u'tiger', u'redback']
[u'tiger', u'collaps', u'redback']
[u'tiger', u'lunch', u'redback']
[u'tourism', u'chief', u'defend', u'appoint']
[u'townsvill', u'get', u'smart', u'state']
[u'train', u'crash', u'passeng', u'receiv', u'treatment']
[u'train', u'crash', u'probe', u'turn', u'black']
[u'union', u'question', u'temporari', u'mine', u'camp', u'condit']
[u'union', u'warn', u'cut']
[u'vote', u'impos', u'arm', u'embargo', u'ivori', u'coast']
[u'command', u'say', u'fallujah', u'percent', u'secur']
[u'forc', u'launch', u'assault', u'mosul']
[u'investig', u'kill', u'fallujah']
[u'network', u'footag', u'insurg', u'shoot']
[u'secretari', u'state', u'powel', u'quit']
[u'vend', u'machin', u'offer', u'music', u'download']
[u'victim', u'fail', u'mortgag', u'scheme', u'compens']
[u'wagner', u'ring', u'draw', u'groupi', u'adelaid']
[u'strike', u'hit', u'mandurah', u'rail', u'project']
[u'worker', u'readi', u'erad', u'dengu', u'mosquito']
[u'zarqawi', u'messag', u'tell', u'support', u'prepar']
[u'zimbabw', u'tour', u'import', u'step', u'stone', u'vaughan']
[u'abandon', u'safeti', u'chang', u'dick', u'smith', u'say']
[u'age', u'care', u'plan', u'offer', u'high', u'hop']
[u'albani', u'miss', u'chang', u'task', u'forc']
[u'jazeera', u'hold', u'hassan', u'kill', u'video']
[u'hail', u'virgin', u'mari', u'sandwich']
[u'anderson', u'question', u'windsor', u'claim']
[u'angri', u'aragon', u'defend', u'henri', u'remark']
[u'artist', u'take', u'roundabout', u'art', u'promot']
[u'aust', u'aim', u'aid', u'corrupt', u'apec', u'agenda']
[u'australia', u'put', u'barbarian', u'sword']
[u'barrist', u'testimoni', u'odd', u'shaw']
[u'unit', u'block', u'plan', u'civic']
[u'black', u'move', u'privatis', u'holling']
[u'bouncer', u'punch', u'hook', u'wit']
[u'bouncer', u'punch', u'hook', u'wit', u'tell']
[u'britain', u'unveil', u'anti', u'smoke', u'propos']
[u'bulldog', u'fan', u'delay', u'ambul']
[u'bush', u'appoint', u'rice', u'replac', u'powel']
[u'busi', u'scheme', u'incub', u'success']
[u'busi', u'survey', u'draw', u'mix', u'reaction']
[u'extend', u'drought']
[u'go', u'speedi', u'road', u'widen']
[u'call', u'govt', u'agenc', u'consolid']
[u'camera', u'monitor', u'dysart', u'crime']
[u'accid', u'victim', u'murder', u'polic']
[u'care', u'australia', u'mourn', u'hassan', u'murder']
[u'central', u'retain', u'drive', u'market', u'tourism', u'push']
[u'chamber', u'support', u'chang', u'unfair', u'dismiss', u'law']
[u'charter', u'tower', u'host', u'region', u'women', u'forum']
[u'chief', u'justic', u'meet', u'cape', u'york', u'indigen', u'leader']
[u'child', u'care', u'worker', u'clear', u'misconcept']
[u'chirac', u'doubt', u'world', u'safer', u'post', u'saddam']
[u'citrus', u'canker', u'inspect', u'extend', u'backyard']
[u'citylink', u'oper', u'offer', u'earli', u'payment']
[u'climber', u'rescu', u'trap', u'fall', u'rock']
[u'council', u'hop', u'head', u'phone', u'tower', u'disput']
[u'council', u'push', u'skill', u'worker']
[u'council', u'sell', u'break', u'hill', u'land']
[u'court', u'hear', u'evid', u'kane', u'mason', u'murder']
[u'court', u'reject', u'charg', u'theophan']
[u'crash', u'spark', u'level', u'cross', u'safeti']
[u'croc', u'king', u'prepar', u'settl', u'differ', u'court']
[u'croc', u'increas', u'darwin', u'harbour']
[u'davenport', u'top', u'rank']
[u'debat', u'aborigin', u'land', u'defer']
[u'dollar', u'push', u'cent']
[u'downer', u'condemn', u'appar', u'hassan', u'murder']
[u'driver', u'warn', u'road', u'reseal']
[u'kill', u'afghan', u'clash']
[u'emphysema', u'preval', u'think', u'research', u'say']
[u'ergon', u'stop', u'work', u'discuss']
[u'ergon', u'worker', u'vote', u'industri', u'campaign']
[u'esso', u'play', u'asbesto', u'fear']
[u'famili', u'call', u'ultrasound', u'abort']
[u'farina', u'rue', u'defens', u'error']
[u'farmer', u'extend', u'drought']
[u'farmer', u'urg', u'drought', u'offer']
[u'feder', u'minist', u'back', u'singl', u'conserv']
[u'firm', u'promis', u'reliabl', u'suppli']
[u'forestri', u'letter', u'fall', u'deaf', u'ear', u'adam', u'say']
[u'fraser', u'coast', u'get', u'fewer', u'intern', u'backpack']
[u'govt', u'agenc', u'urg', u'help', u'fight', u'youth', u'crime']
[u'govt', u'announc', u'research', u'fund']
[u'govt', u'move', u'implement', u'agenda']
[u'govt', u'prepar', u'deliv', u'elect', u'promis']
[u'govt', u'close', u'speed', u'camera', u'loophol']
[u'govt', u'urg', u'increas', u'midwiferi', u'servic', u'fund']
[u'group', u'deliv', u'rfds', u'fund']
[u'battl', u'erupt', u'kashmir']
[u'gunn', u'submit', u'formal', u'pulp', u'propos']
[u'hardi', u'commit', u'interim', u'compens', u'fund']
[u'hardi', u'fund', u'get', u'cautious', u'welcom']
[u'hatton', u'aim', u'tszyu', u'showdown']
[u'health', u'chief', u'continu', u'push', u'care']
[u'henri', u'celebr', u'award']
[u'hewitt', u'down', u'moya']
[u'high', u'speed', u'aircraft', u'patrol', u'northern', u'australia']
[u'holm', u'look', u'strong', u'caloundra', u'perform']
[u'hop', u'wane', u'miss', u'swimmer']
[u'hospit', u'board', u'defend', u'amidst', u'possibl', u'sack']
[u'hospit', u'meet', u'tip', u'volatil']
[u'hous', u'evacu', u'pool', u'blast']
[u'howard', u'latham', u'clash', u'rat']
[u'consult', u'captain', u'chuck', u'law']
[u'iemma', u'apologis', u'faulti', u'hospit', u'equip']
[u'index', u'point', u'strong', u'econom', u'growth']
[u'indigen', u'cricket', u'contest', u'expand']
[u'insurg', u'attack', u'iraqi', u'pipelin']
[u'seek', u'hunter', u'technic', u'colleg']
[u'intern', u'leader', u'condemn', u'hassan', u'murder']
[u'iraqi', u'hostag', u'hassan', u'probabl', u'kill', u'famili', u'say']
[u'hear', u'push', u'region', u'sunday', u'trade']
[u'japan', u'examin', u'chang', u'militari', u'limit', u'report']
[u'katich', u'blame', u'test', u'spot', u'loss']
[u'kean', u'strike', u'see', u'ireland', u'home']
[u'kiwi', u'yawn', u'test', u'taunt']
[u'latham', u'attack', u'abbott', u'abort', u'issu']
[u'lend', u'standard', u'remain', u'high', u'bank']
[u'lockyer', u'track', u'test', u'recoveri']
[u'hold', u'dead', u'shop', u'shoot']
[u'kill', u'street', u'sweeper', u'accid']
[u'face', u'mountain', u'landmark']
[u'stab', u'melbourn']
[u'stab', u'mele', u'award']
[u'marin', u'park', u'rais', u'indigen', u'fear']
[u'maritim', u'union', u'oppos', u'stevedor', u'firm']
[u'mark', u'thatcher', u'stand', u'trial']
[u'mcmillan', u'gabba', u'recal']
[u'media', u'stock', u'drive', u'market', u'rebound']
[u'migrat', u'agenc', u'set', u'vote', u'iraqi']
[u'minist', u'cautious', u'chang', u'tenanc', u'law']
[u'minist', u'hear', u'case', u'better', u'health', u'servic']
[u'delay', u'build']
[u'fund', u'avail', u'literaci', u'boost']
[u'talk', u'highway', u'construct']
[u'moseley', u'regain', u'european', u'berth']
[u'highlight', u'plight', u'special', u'need', u'child']
[u'push', u'local', u'medic', u'train']
[u'navi', u'patrol', u'boat', u'ram']
[u'user', u'greater', u'flexibl']
[u'head', u'swim', u'coach', u'aim', u'reclaim', u'spot']
[u'plane', u'offer', u'extrem', u'rid']
[u'news', u'corp', u'mark']
[u'zealand', u'detect', u'slow', u'earthquak']
[u'nightclub', u'odd', u'council', u'condit']
[u'chang', u'river', u'murray', u'water', u'alloc']
[u'govt', u'close', u'speed', u'fine', u'loophol']
[u'govt', u'union', u'join', u'forc', u'hardi', u'talk']
[u'move', u'ahead', u'child', u'offend', u'databas']
[u'ombudsman', u'back', u'prison', u'complaint', u'drug', u'fine']
[u'open', u'offer', u'glimps', u'council', u'spend']
[u'opposit', u'call', u'certainti', u'rehabilit']
[u'opposit', u'pay', u'tribut', u'powel', u'welcom', u'rice']
[u'orchardist', u'reject', u'takeov', u'worri']
[u'paintbal', u'game', u'give', u'green', u'light']
[u'pakistan', u'veteran', u'dump', u'australian', u'tour']
[u'papa', u'wemba', u'walk', u'free', u'peopl', u'smuggl']
[u'paper', u'giant', u'accus', u'illeg', u'log', u'china']
[u'parliament', u'debat', u'thai', u'free', u'trade', u'deal']
[u'concern', u'guidelin', u'govt']
[u'perk', u'juvenil', u'prison', u'rule', u'tighten']
[u'perth', u'breast', u'cancer', u'servic', u'upgrad']
[u'pharmaci', u'rob', u'polic', u'offic', u'metr', u'away']
[u'watch', u'video', u'footag', u'shaw', u'accid']
[u'plan', u'continu', u'ethanol', u'refineri']
[u'plaster', u'declar', u'derbi', u'winner', u'negat']
[u'boat', u'crew', u'deni', u'condit']
[u'polanski', u'wrap', u'oliv', u'twist']
[u'polic', u'hear', u'suburban', u'concern']
[u'polic', u'hunt', u'arm', u'robberi']
[u'polic', u'charg', u'drink', u'drive', u'crackdown']
[u'polic', u'seek', u'drink', u'spike', u'wit']
[u'polic', u'seek', u'help', u'probe', u'bendigo', u'crash']
[u'polic', u'hunt', u'armidal', u'carjack']
[u'polic', u'hous', u'away', u'schooli']
[u'pont', u'confid', u'boof', u'mental', u'readi']
[u'pont', u'confid', u'boof', u'mental', u'readi', u'black']
[u'pont', u'fleme', u'unsur', u'chuck', u'detail']
[u'port', u'delay', u'affect', u'toowoomba', u'firm']
[u'powel', u'deputi', u'armitag', u'quit', u'state', u'depart']
[u'powel', u'visit', u'israel', u'palestinian', u'territori']
[u'press', u'watchdog', u'criticis', u'indigen', u'newspap', u'raid']
[u'prison', u'chief', u'acknowledg', u'inmat', u'mental', u'health']
[u'public', u'warn', u'threat']
[u'economi', u'retain', u'rat']
[u'push', u'nation', u'child', u'abduct', u'alert']
[u'racist', u'attack', u'suspect', u'court']
[u'rail', u'accid', u'report', u'month', u'away']
[u'rail', u'group', u'echo', u'safeti', u'fear']
[u'rainforest', u'growth', u'sign', u'global', u'warm']
[u'rann', u'propos', u'magistr']
[u'warn', u'lower', u'lend', u'standard']
[u'redback', u'steadi', u'start', u'beller']
[u'refuge', u'advoc', u'seek', u'chang']
[u'report', u'examin', u'western', u'tourism', u'strategi']
[u'report', u'plant', u'closur', u'away']
[u'research', u'receiv', u'grant', u'teenag', u'motherhood']
[u'research', u'stimul', u'aid', u'antibodi']
[u'resid', u'campaign', u'save', u'wildlif', u'sanctuari']
[u'roddick', u'dispatch', u'henman']
[u'rural', u'skill', u'shortag', u'spark', u'oversea', u'search']
[u'russia', u'acquir', u'nuke', u'putin']
[u'ryan', u'air', u'calder', u'highway', u'duplic', u'concern']
[u'saboteur', u'cut', u'iraq', u'export']
[u'saint', u'south', u'africa']
[u'scheme', u'put', u'focus', u'matur', u'worker']
[u'school', u'close', u'door']
[u'school', u'uniform', u'plan', u'draw', u'critic']
[u'scramjet', u'near', u'mach', u'set', u'record']
[u'search', u'wwii', u'shipwreck', u'begin']
[u'search', u'nation', u'park', u'miss']
[u'seismic', u'test', u'prompt', u'firm', u'confus']
[u'shaw', u'lawyer', u'stop', u'hear']
[u'shire', u'welcom', u'northern', u'bypass', u'pledg']
[u'silver', u'fern', u'level', u'netbal', u'seri']
[u'singer', u'wife', u'charg', u'bathroom', u'beauti', u'clinic']
[u'soldier', u'face', u'punish', u'iraq', u'insubordin']
[u'soldier', u'remain', u'return']
[u'state', u'agre', u'nation', u'child', u'porn', u'law']
[u'state', u'urg', u'adopt', u'nation', u'abduct', u'alert']
[u'studi', u'focus', u'premmi', u'babi', u'oxygen', u'level']
[u'sturt', u'diari', u'expect', u'fetch']
[u'support', u'extend', u'drought']
[u'survey', u'determin', u'extent', u'fish', u'pest']
[u'tailend', u'lead', u'tiger', u'fightback']
[u'tasmanian', u'town', u'fight', u'public', u'phone']
[u'teen', u'driver', u'want', u'brake', u'curfew', u'plan']
[u'teen', u'plead', u'guilti', u'handl', u'madrid', u'explos']
[u'fin', u'catch', u'patagonian', u'toothfish']
[u'investig', u'probe', u'train', u'crash']
[u'tiger', u'second', u'honour', u'beller']
[u'tilt', u'train', u'speed', u'say']
[u'toilet', u'forget', u'human', u'right']
[u'extend', u'east', u'timor', u'mission', u'final', u'time']
[u'right', u'boss', u'urg', u'fallujah', u'abus', u'probe']
[u'armi', u'offic', u'charg', u'murder', u'iraq']
[u'inflat', u'push', u'market', u'greenback']
[u'forc', u'retak', u'mosul', u'polic', u'station']
[u'marin', u'ralli', u'round', u'comrad']
[u'govt', u'plan', u'sack', u'hospit', u'board']
[u'video', u'say', u'hassan', u'murder']
[u'virgin', u'blue', u'announc', u'profit']
[u'wage', u'index', u'growth', u'restrain', u'despit', u'record']
[u'waratah', u'unfaz', u'possibl', u'competit']
[u'school', u'secur', u'indigen', u'educ', u'award']
[u'watkin', u'reject', u'polic', u'number', u'claim']
[u'weather', u'favour', u'farmer']
[u'windsor', u'name', u'anderson', u'bribe']
[u'windsor', u'name', u'bribe', u'claim']
[u'woman', u'labour', u'birth', u'better', u'hospit']
[u'woman', u'shoot', u'dead', u'adelaid', u'myer', u'centr']
[u'woman', u'shoot', u'dump', u'rubbish']
[u'zimbabw', u'rebel', u'withdraw', u'disput', u'process']
[u'dead', u'nigerian', u'cholera', u'outbreak']
[u'score', u'school', u'care', u'place']
[u'alburi', u'wodonga', u'woo', u'retrench', u'mitsubishi', u'worker']
[u'ord', u'high']
[u'member', u'join', u'campaign', u'coal', u'plan']
[u'anderson', u'deni', u'windsor', u'bribe', u'claim']
[u'anderson', u'quiz', u'bribe', u'claim']
[u'anim', u'right', u'group', u'urg', u'better', u'understand']
[u'arsenal', u'player', u'charg', u'rape']
[u'defend', u'safeti', u'reform']
[u'chairman', u'say', u'drug', u'report', u'clear', u'cycl']
[u'atsic', u'abolit', u'caus', u'confus']
[u'aussi', u'dollar', u'reach', u'month', u'high']
[u'australia', u'take', u'honour']
[u'australia', u'tighten', u'grip', u'kiwi']
[u'aust', u'seal', u'trade', u'deal']
[u'author', u'welcom', u'fitzroy', u'cross', u'hospit', u'plan']
[u'baghdad', u'bomb', u'kill']
[u'beatti', u'consid', u'coal', u'mine', u'camp', u'concern']
[u'beeri', u'reward', u'offer', u'jesus', u'hostag', u'drama']
[u'fail', u'remov', u'board', u'director']
[u'bum', u'allow', u'human']
[u'black', u'cap', u'lose', u'franklin', u'gain', u'mcmillan']
[u'black', u'cap', u'reli', u'underdog', u'status']
[u'blue', u'great', u'franci', u'die']
[u'border', u'negat', u'respons']
[u'bouncer', u'upset', u'hook', u'fight']
[u'breakthrough', u'allow', u'hardi', u'talk']
[u'break', u'hill', u'rout', u'help', u'lift', u'profit']
[u'maroochi', u'bridg', u'work', u'includ', u'lane']
[u'probe', u'dairi', u'market', u'director']
[u'campaign', u'aim', u'boost', u'peopl', u'protect']
[u'children', u'writer', u'festiv', u'open']
[u'chilean', u'polic', u'protest', u'ahead', u'apec', u'summit']
[u'china', u'crash', u'world']
[u'citi', u'make', u'headway', u'headfram', u'plan']
[u'club', u'fear', u'govern', u'doubl']
[u'cole', u'myer', u'predict', u'strong', u'earn', u'growth']
[u'colleagu', u'anderson', u'windsor', u'claim']
[u'colleg', u'concern', u'hurt', u'student']
[u'comet', u'provid', u'cosmic', u'light']
[u'comment', u'seek', u'biosolid', u'storag', u'facil', u'trial']
[u'communiti', u'urg', u'consid', u'tourism', u'altern']
[u'communiti', u'hous', u'fund', u'investig']
[u'council', u'set', u'sight', u'bring', u'navi', u'ship', u'home']
[u'council', u'sign', u'cattl', u'feedlot']
[u'court', u'deni', u'pinochet', u'amnesti', u'crime']
[u'court', u'hear', u'threat', u'kill', u'hook']
[u'croc', u'snap', u'away', u'hoodoo']
[u'croc', u'snap', u'away', u'hoodoo', u'taipan', u'upset', u'tiger']
[u'crow', u'save', u'pick', u'preseason', u'draft']
[u'cycl', u'drug', u'scandal', u'storm', u'teacup']
[u'deal', u'aim', u'protect', u'saltmarsh', u'wetland']
[u'dinosaur', u'fossil', u'china']
[u'disabl', u'dolphin', u'get', u'artifici']
[u'dominion', u'mine', u'start', u'explor', u'program']
[u'drown', u'inquest', u'hear', u'dive', u'pressur']
[u'dylan', u'classic', u'roll', u'number']
[u'earli', u'indigen', u'artist', u'billiamook', u'honour']
[u'ecuador', u'stun', u'brazil']
[u'elli', u'half', u'chanc', u'test']
[u'energi', u'compani', u'project', u'comment', u'worri']
[u'european', u'choos', u'wool']
[u'fake', u'euro', u'circul', u'australia']
[u'famili', u'homeless', u'blaze']
[u'famili', u'walk', u'away', u'plane', u'crash']
[u'feder', u'thump', u'hewitt', u'continu', u'unbeaten']
[u'firefight', u'search', u'hospit', u'leak']
[u'firm', u'criticis', u'rescu', u'plane', u'plan']
[u'histor', u'deal', u'howard', u'say']
[u'fuel', u'tanker', u'crash', u'block', u'bruce', u'highway']
[u'futur', u'bleak', u'endang', u'frog']
[u'gippsland', u'unemploy', u'rise']
[u'girl', u'success', u'divorc', u'mother']
[u'gold', u'coast', u'urg', u'schooli', u'rein']
[u'gold', u'trader', u'reunit', u'lose', u'nugget']
[u'govt', u'defend', u'record', u'illeg', u'fish', u'fight']
[u'govt', u'deni', u'rehab', u'servic', u'shutdown']
[u'govt', u'hire', u'guard', u'protect', u'aborigin', u'hous']
[u'govt', u'futur', u'plan', u'sydney']
[u'govt', u'urg', u'commut', u'train', u'servic']
[u'govt', u'address', u'rural', u'surgeon', u'shortag']
[u'green', u'question', u'riebel', u'ningaloo', u'stanc']
[u'gunn', u'confid', u'pulp', u'plan', u'grant']
[u'high', u'wind', u'predict', u'north', u'east']
[u'hospit', u'focus', u'surgeri']
[u'howard', u'bush', u'hold', u'talk', u'apec']
[u'illeg', u'fish', u'get', u'tech']
[u'indian', u'take', u'peac', u'messag', u'kashmir']
[u'inquiri', u'urg', u'recognit', u'gulf', u'syndrom']
[u'investor', u'blow', u'wind', u'farm', u'sale']
[u'isra', u'soldier', u'accus', u'mistreat', u'bodi']
[u'isra', u'tank', u'kill', u'egyptian', u'troop']
[u'ivorian', u'presid', u'sue', u'peacekeep', u'death']
[u'japan', u'export', u'opportun', u'buckwheat', u'grower']
[u'kasper', u'gabba']
[u'kiwi', u'rope']
[u'kojonup', u'council', u'sack']
[u'labor', u'give', u'cautious', u'welcom']
[u'labor', u'question', u'windsor', u'bribe', u'investig']
[u'lawyer', u'mandatori', u'sentenc']
[u'lennon', u'vote', u'number', u'music', u'icon']
[u'liber', u'parti', u'merger']
[u'licens', u'urg', u'join', u'secur', u'patrol', u'plan']
[u'locust', u'hatch', u'report', u'rise']
[u'lyon', u'start', u'wallabi']
[u'magistr', u'call', u'abolit', u'mandatori']
[u'maitland', u'nurs', u'industri', u'unrest', u'hold']
[u'die', u'crash']
[u'face', u'court', u'myer', u'murder']
[u'hospit', u'truck', u'crash']
[u'melbourn', u'hospit', u'run']
[u'melbourn', u'charg', u'qaeda', u'link']
[u'melbourn', u'terror', u'suspect', u'remand', u'custodi']
[u'mercenari', u'testifi', u'thatcher', u'coup']
[u'minist', u'attend', u'west', u'tamar', u'highway', u'ralli']
[u'miss', u'fishermen', u'torr', u'strait']
[u'mitchel', u'keen', u'aust', u'super', u'coach']
[u'mitsubishi', u'secur', u'deal', u'report']
[u'mobil', u'phone', u'boost', u'outback', u'travel']
[u'moma', u'reopen', u'facelift']
[u'moya', u'keep', u'master', u'hop', u'aliv']
[u'muralitharan', u'censur', u'throw', u'remark']
[u'mutu', u'forc', u'chelsea', u'foot', u'appeal']
[u'myer', u'boss', u'express', u'sympathi', u'adelaid', u'shoot']
[u'nation', u'park', u'plan', u'spark', u'hors', u'rider', u'safeti', u'fear']
[u'nation', u'candid', u'say', u'deal']
[u'nato', u'approv', u'iraq', u'train', u'plan']
[u'newcastl', u'monitor', u'pollut']
[u'design', u'boost', u'green', u'power', u'plan']
[u'governor', u'swear', u'month']
[u'imag', u'plan', u'berridal']
[u'law', u'allow', u'midwiv', u'attend', u'home', u'birth']
[u'microsoft', u'search', u'engin', u'rival', u'googl']
[u'multi', u'million', u'dollar', u'saleyard', u'bathurst']
[u'korea', u'nuclear', u'capac', u'grow']
[u'north', u'west', u'await', u'locust', u'impact']
[u'word', u'possibl', u'health', u'board', u'sack']
[u'nurs', u'shortag', u'put', u'strain', u'retir', u'home', u'staff']
[u'lap', u'woman', u'special', u'attent']
[u'olymp', u'champion', u'confirm', u'tour']
[u'omeley', u'hear', u'delay']
[u'kill', u'bueno', u'air', u'bank', u'attack']
[u'opposit', u'highlight', u'highway', u'woe']
[u'palestinian', u'order', u'probe', u'arafat', u'death']
[u'parliament', u'hous', u'celebr', u'centenari']
[u'parliament', u'overtim', u'clear', u'elect']
[u'parliament', u'pass', u'thai', u'free', u'trade', u'deal']
[u'patrick', u'report', u'rise', u'profit']
[u'petit', u'seek', u'corowa', u'park', u'boost']
[u'hand', u'shaw', u'case', u'polic']
[u'plan', u'begin', u'courthous']
[u'poison', u'alcohol', u'kill', u'pakistan']
[u'polar', u'bear', u'cub', u'world', u'home']
[u'polic', u'station', u'staff', u'worri']
[u'polic', u'hunt', u'suspect', u'cape', u'york']
[u'polic', u'investig', u'echuca', u'attack']
[u'polic', u'seiz', u'ecstasi', u'bind', u'schooli']
[u'premier', u'wont', u'specul', u'tilt', u'train', u'compo']
[u'public', u'urg', u'report', u'farm', u'mistreat']
[u'push', u'greater', u'fuel']
[u'putin', u'promis', u'wave', u'missil']
[u'train', u'driver', u'strike', u'loom']
[u'reject', u'tilt', u'train', u'speed', u'limit']
[u'racist', u'taunt', u'spain', u'england']
[u'rain', u'frustrat', u'master', u'combat']
[u'refug', u'offer', u'shelter', u'homeless']
[u'report', u'find', u'corrupt', u'violenc', u'rife', u'polic']
[u'report', u'say', u'hospit', u'meet', u'benchmark']
[u'resid', u'tell', u'focus', u'solut', u'complaint']
[u'accus', u'lose', u'region', u'focus']
[u'rock', u'lobster', u'breed', u'hatcheri']
[u'rodeo', u'group', u'defend', u'sport']
[u'rural', u'australian', u'urg', u'fight', u'telstra', u'sale']
[u'schoolgirl', u'killer', u'bail', u'spark', u'opposit', u'outcri']
[u'search', u'widen', u'miss', u'torr', u'strait']
[u'world', u'take', u'polar', u'bear', u'orphan']
[u'secker', u'beat', u'vocat', u'train', u'talk']
[u'shield', u'aim', u'reduc', u'shark', u'death']
[u'shipwreck', u'search', u'plan', u'move', u'ahead']
[u'sidebottom', u'public', u'payrol']
[u'skate', u'park', u'get', u'council']
[u'smash', u'repair', u'insur', u'urg', u'patch']
[u'asbesto', u'victim', u'embark', u'marathon', u'ride']
[u'srebrenica', u'survivor']
[u'state', u'look', u'expand', u'offend', u'regist']
[u'street', u'fight', u'detail', u'emerg', u'murder', u'trial']
[u'stress', u'caus', u'pain', u'period', u'studi']
[u'strike', u'forc', u'seek', u'combat', u'hunter', u'hold']
[u'stripperg', u'engulf', u'canadian', u'govern']
[u'studi', u'probe', u'indigen', u'gambl']
[u'sudan', u'govt', u'rebel', u'pledg', u'peac', u'accord']
[u'suspect', u'silent', u'terror', u'charg', u'lay']
[u'swimmer', u'urg', u'bluebottl', u'wari']
[u'syring', u'fatal', u'accid', u'inquest', u'hear']
[u'telstra', u'stand', u'phone', u'tower', u'plan']
[u'thai', u'royal', u'famili', u'interven', u'southern', u'conflict']
[u'theatr', u'heritag', u'list', u'overturn']
[u'threaten', u'speci', u'status', u'seek', u'devil']
[u'tiger', u'build', u'healthi', u'lead']
[u'tiger', u'control', u'beller']
[u'tiger', u'verg', u'inning', u'point']
[u'tiger', u'inning', u'point']
[u'tini', u'town', u'pull', u'name', u'rock', u'festiv']
[u'hama', u'member', u'releas', u'jail']
[u'train', u'drag', u'truck', u'track', u'collis']
[u'train', u'driver', u'threaten', u'strike', u'speed']
[u'cocain', u'syndic', u'member', u'jail']
[u'ukrain', u'stun', u'turk', u'portug', u'goal', u'crazi']
[u'reject', u'iraq', u'civilian', u'death', u'estim']
[u'ultrasound', u'help', u'dissolv', u'dead', u'blood', u'clot']
[u'investig', u'iraq', u'abus', u'claim']
[u'union', u'join', u'sydney', u'fare']
[u'focus', u'rural', u'crime']
[u'request', u'protest', u'death', u'investig']
[u'secur', u'council', u'begin', u'nairobi', u'session']
[u'secur', u'council', u'member', u'arriv', u'kenya']
[u'dead', u'baiji', u'attack']
[u'court', u'expedit', u'guantanamo', u'appeal']
[u'pound', u'fallujah', u'violenc', u'flare']
[u'tackl', u'afghan', u'drug', u'problem']
[u'tour', u'unveil', u'schedul']
[u'vandal', u'deliv', u'letterbox', u'blast']
[u'opposit', u'air', u'corrupt', u'claim']
[u'virgin', u'mari', u'grill', u'sandwich', u'auction', u'draw', u'cheesi']
[u'lead', u'countri', u'resourc', u'project']
[u'warrior', u'ronchi', u'bull', u'clash']
[u'warwick', u'feel', u'build', u'inspector', u'shortag']
[u'widow', u'call', u'landmin']
[u'water', u'expert', u'research', u'sever']
[u'wiki', u'rule', u'kiwi']
[u'windsor', u'defend', u'messeng']
[u'woman', u'appeal', u'daughter', u'return']
[u'wood', u'take', u'earli', u'lead', u'japan']
[u'wool', u'produc', u'fight', u'boycott', u'threat']
[u'worcestershir', u'sign', u'shoaib']
[u'worksaf', u'probe', u'chicken', u'factori', u'death']
[u'academ', u'accept', u'rise', u'offer']
[u'adventur', u'close', u'glide', u'globe']
[u'annan', u'call', u'urgent', u'action', u'sudan']
[u'antiqu', u'store', u'sue', u'jackson', u'unpaid', u'bill']
[u'apec', u'tackl', u'north', u'korean', u'nuclear', u'issu']
[u'argument', u'break', u'sink', u'treasur']
[u'artist', u'masterpiec', u'launceston']
[u'aussi', u'launch', u'resist', u'black', u'cap']
[u'aussi', u'steadi', u'inning']
[u'australia', u'ireland', u'austria', u'grab', u'world']
[u'australian', u'cattl', u'strand', u'jordanian', u'port']
[u'australian', u'risk', u'long', u'work', u'hour']
[u'australia', u'rat', u'best', u'countri']
[u'aust', u'unlik', u'reduc', u'north', u'korea', u'downer']
[u'champ', u'name', u'tasmanian']
[u'banana', u'industri', u'worker', u'order', u'return']
[u'baro', u'injuri', u'blight', u'liverpool']
[u'bat', u'condit', u'eas', u'sinclair']
[u'bega', u'chees', u'record', u'profit']
[u'beslan', u'local', u'seek', u'action', u'putin']
[u'wind', u'farm', u'properti', u'stay', u'local', u'hand']
[u'bomb', u'blast', u'hit', u'venezuelan', u'offici']
[u'stab', u'sydney', u'school']
[u'brack', u'promis', u'stadium', u'super', u'team']
[u'british', u'parliament', u'ban', u'hunt']
[u'break', u'hill', u'firm', u'favourit', u'ghost', u'rider']
[u'bruton', u'add', u'king', u'sick', u'list']
[u'bull', u'target', u'waca']
[u'businessman', u'deni', u'offer', u'bribe']
[u'cabbi', u'licenc', u'grab', u'alic']
[u'camouflag', u'oust', u'cross', u'dress', u'school']
[u'canadian', u'sack', u'anti', u'rant']
[u'canberra', u'runway', u'extens']
[u'cane', u'toad', u'invad', u'northern', u'nation', u'park']
[u'canker', u'affect', u'properti', u'destroy', u'tree']
[u'warn', u'drug', u'cocktail', u'danger']
[u'coalit', u'call', u'windsor', u'resign']
[u'colleg', u'boost', u'surgic', u'train', u'place']
[u'communiti', u'seek', u'simpler', u'drought', u'scheme']
[u'conman', u'jail', u'promot', u'scam']
[u'coron', u'find', u'die', u'result', u'knee', u'surgeri']
[u'corrupt', u'polic', u'offic', u'sack']
[u'council', u'consid', u'wast', u'water', u'treatment', u'plan']
[u'court', u'rule', u'adler', u'trial', u'proceed']
[u'croc', u'look', u'clip', u'hawk', u'wing']
[u'detect', u'scour', u'waikeri', u'hous', u'murder']
[u'develop', u'urg', u'report', u'indigen', u'remain']
[u'doctor', u'back', u'beach', u'stinger', u'suit', u'sale']
[u'dollar', u'hold', u'near', u'month', u'high']
[u'drought', u'fund', u'caus', u'farmer', u'confus']
[u'snub', u'start', u'farmer', u'fear']
[u'elli', u'chanc', u'tran', u'tasman', u'decid']
[u'emerald', u'face', u'harsher', u'water', u'ban']
[u'energi', u'firm', u'west', u'explor']
[u'england', u'finish', u'wound', u'bok']
[u'estat', u'agent', u'doff', u'guilti', u'insid', u'trade']
[u'surgeon', u'plead', u'guilti', u'child', u'porn', u'charg']
[u'famili', u'surviv', u'region', u'plane', u'crash']
[u'fatal', u'accid', u'underpass', u'open']
[u'feder', u'continu', u'hard', u'fight']
[u'fierc', u'clash', u'erupt', u'baghdad']
[u'fifa', u'launch', u'probe', u'spanish', u'racism']
[u'fight', u'fallujah', u'ongo', u'mosul', u'attack', u'plan']
[u'servic', u'train', u'home', u'owner']
[u'ford', u'issu', u'debat', u'challeng']
[u'premier', u'letter', u'critic', u'famili', u'violenc']
[u'sport', u'coach', u'jail', u'sexual', u'assault']
[u'fossil', u'ancestor', u'ape']
[u'futur', u'gun', u'test', u'skill', u'townsvill']
[u'gale', u'aflpa']
[u'ganguli', u'kalli', u'play', u'test']
[u'govt', u'dept', u'probe', u'sacr', u'site', u'destruct', u'claim']
[u'govt', u'urg', u'sexual', u'abus', u'victim', u'submit', u'stori']
[u'habib', u'lawyer', u'worri', u'egypt']
[u'health', u'merger', u'oppon', u'meet', u'minist']
[u'heat', u'respit', u'sight', u'western']
[u'high', u'rise', u'develop', u'boost', u'queanbeyan']
[u'highway', u'fund', u'claim', u'puzzl', u'brack']
[u'highway', u'reopen', u'multi', u'vehicl', u'crash']
[u'civil', u'action', u'hold']
[u'hook', u'punch', u'face', u'wit', u'say']
[u'human', u'error', u'blame', u'council', u'budget', u'blunder']
[u'icpa', u'want', u'claughton', u'hous', u'stay', u'open']
[u'indigen', u'leader', u'push', u'nativ', u'languag', u'food']
[u'junior', u'champ', u'perkin', u'cop', u'dope']
[u'kangaroo', u'meat', u'south', u'korean', u'market']
[u'issu', u'canvass', u'stem', u'cell', u'talk']
[u'kiwi', u'walk', u'gabba', u'treacl']
[u'kyoto', u'protocol', u'start', u'date']
[u'labor', u'dump', u'forest', u'medicar', u'polici']
[u'labor', u'polici', u'leadership', u'scrutini']
[u'labor', u'senat', u'critic', u'polici', u'releas', u'time']
[u'latham', u'outlin', u'econom', u'agenda']
[u'laureat', u'hear', u'australian', u'nativ', u'titl']
[u'lawyer', u'claim', u'qaeda', u'suspect', u'evid', u'taint']
[u'lee', u'welcom', u'nation', u'water', u'strategi']
[u'letter', u'arriv', u'year', u'late']
[u'lockyer', u'clear', u'face', u'franc']
[u'luca', u'urg', u'train', u'driver', u'stay']
[u'pose', u'assault', u'student']
[u'martyn', u'clark', u'lift', u'aussi', u'inning']
[u'measl', u'outbreak', u'spark', u'health', u'warn']
[u'member', u'seek', u'health', u'advisori', u'council']
[u'meningococc', u'insur', u'scheme', u'investig']
[u'merredin', u'back', u'recreat', u'centr', u'plan']
[u'microsoft', u'boss', u'world', u'spam', u'person']
[u'miner', u'urg', u'lift', u'explor', u'spend']
[u'minist', u'reject', u'opposit', u'health', u'claim']
[u'minist', u'sack', u'gippsland', u'health', u'board']
[u'minist', u'agre', u'nation', u'road', u'safeti', u'plan']
[u'miss', u'fishermen', u'bodi']
[u'mix', u'reaction', u'signag', u'issu']
[u'drought', u'upper', u'north']
[u'bushfir', u'compo', u'claim', u'settl']
[u'mother', u'jail', u'year', u'babi', u'death']
[u'air', u'health', u'servic', u'locat', u'worri']
[u'sharehold', u'urg', u'accept', u'takeov', u'offer']
[u'gambier', u'communiti', u'station']
[u'nation', u'trust', u'ditch', u'author', u'white']
[u'nativ', u'dingo', u'speci', u'threat']
[u'negat', u'submiss', u'dont', u'faze', u'albani', u'chief']
[u'nephew', u'arafat', u'medic', u'file']
[u'sale', u'percent']
[u'aim', u'improv', u'farm', u'safeti']
[u'polic', u'action', u'roger']
[u'north', u'korea', u'deni', u'leader', u'portrait', u'remov']
[u'north', u'stand', u'vain', u'bull', u'march']
[u'throw', u'william', u'suspens']
[u'govt', u'deni', u'suppress', u'kariong', u'evid']
[u'obelisk', u'step', u'closer', u'ethiopian', u'home']
[u'older', u'women', u'like', u'victim', u'crime']
[u'opposit', u'push', u'appropri', u'public']
[u'optus', u'vodafon', u'bind', u'network']
[u'oram', u'centuri', u'give', u'black', u'cap', u'hope']
[u'outkast', u'usher', u'prize', u'award']
[u'perth', u'apologis', u'child', u'porn', u'imag']
[u'plan', u'aim', u'address', u'wollongong', u'power', u'woe']
[u'discuss', u'trade', u'secur', u'apec']
[u'focus', u'trade', u'secur', u'apec']
[u'polic', u'hunt', u'servic', u'station', u'bandit']
[u'polic', u'minist', u'confid', u'afp', u'abil']
[u'polic', u'drug', u'dealer']
[u'polic', u'seek', u'extradit', u'victorian', u'stab']
[u'polic', u'tight', u'lip', u'collin', u'investig']
[u'port', u'author', u'lift', u'profit']
[u'portland', u'lead', u'submarin', u'navig', u'test']
[u'powel', u'inform', u'iran', u'unverifi', u'report']
[u'power', u'deal', u'help', u'boost', u'pipelin', u'capac']
[u'prefer', u'fardel']
[u'prison', u'farm', u'rais', u'resid', u'concern']
[u'problem', u'gambler', u'say', u'hotel', u'send', u'voucher']
[u'profit', u'take', u'push', u'lower']
[u'industri', u'cautious', u'welcom', u'drink', u'law']
[u'public', u'ask', u'report', u'beach', u'pervert']
[u'public', u'servic', u'job', u'wont', u'senat', u'say']
[u'public', u'water', u'ban', u'respit']
[u'driver', u'concern', u'derail', u'inquiri']
[u'polic', u'search', u'stab', u'suspect']
[u'meet', u'train', u'driver', u'avert', u'hour', u'strike']
[u'question', u'rais', u'fair', u'work', u'rural', u'impact']
[u'racq', u'question', u'high', u'petrol', u'price']
[u'remorseless', u'driver', u'jail', u'passeng', u'death']
[u'retail', u'urg', u'employ', u'indigen', u'worker']
[u'revis', u'plan', u'allow', u'kitchen']
[u'ripper', u'talk', u'south', u'west']
[u'roddick', u'down', u'safin', u'claim', u'master', u'semi', u'spot']
[u'rodeo', u'rider', u'sight', u'goondiwindi']
[u'rogg', u'plan', u'australian', u'visit']
[u'runner', u'clock', u'kilometr', u'chariti']
[u'russia', u'confirm', u'yuko', u'break']
[u'sack', u'mitsubishi', u'worker', u'eastern', u'job']
[u'schoolgirl', u'strike', u'train', u'kill']
[u'schooli', u'celebr', u'loom', u'year', u'finish']
[u'schooli', u'urg', u'consid', u'resid']
[u'schooli', u'warn', u'drug']
[u'scientif', u'survey', u'draw', u'indigen', u'knowledg']
[u'senior', u'sadr', u'aid', u'arrest', u'iraq']
[u'seven', u'injur', u'mock', u'emerg', u'go', u'wrong']
[u'shaw', u'face', u'drink', u'drive', u'charg']
[u'singaporean', u'tourist', u'die', u'dive', u'near', u'ladi', u'musgrav']
[u'skill', u'shortag', u'threaten', u'mine', u'project']
[u'soccer', u'club', u'presid', u'take', u'road', u'rage', u'pitch']
[u'soldier', u'return', u'iraq']
[u'sport', u'coach', u'jail', u'abus', u'boy']
[u'stab', u'suspect', u'north']
[u'stab', u'suspect', u'extradit', u'delay']
[u'storm', u'cut', u'power', u'moranbah']
[u'strict', u'life', u'jacket', u'law', u'drown']
[u'strong', u'entri', u'magic', u'million']
[u'student', u'prepar', u'celebr', u'school', u'year']
[u'sudan', u'peac', u'pact', u'weak']
[u'super', u'bid', u'hand']
[u'swim', u'pool', u'sink', u'council', u'profit']
[u'sydney', u'commut', u'travel', u'free', u'monday']
[u'tare', u'reject', u'chang', u'group', u'membership']
[u'opposit', u'question', u'work', u'bacon', u'trust']
[u'resid', u'report', u'earth', u'tremor']
[u'agent', u'jail', u'fraudul', u'return']
[u'team', u'dynamik', u'penalti', u'increas']
[u'teenag', u'ignor', u'boom', u'gate', u'polic']
[u'teenag', u'strike', u'train', u'kill']
[u'teen', u'murder', u'jail', u'year']
[u'terror', u'suspect', u'arrest', u'washington']
[u'thailand', u'deport', u'german', u'centr', u'scare']
[u'thief', u'make', u'jesus', u'figur']
[u'thorp', u'miss', u'world', u'champ']
[u'tiger', u'keep', u'grip', u'lead', u'japan']
[u'tiger', u'outright', u'point']
[u'time', u'frame', u'moot', u'sawmil', u'boost']
[u'treasur', u'say', u'economi', u'good', u'shape']
[u'tremor', u'leav', u'tour', u'oper', u'shake']
[u'complain', u'alleg', u'iraq', u'abus']
[u'back', u'sudan', u'peac', u'promis']
[u'unemploy', u'fall', u'see', u'proof', u'stronger', u'economi']
[u'offer', u'child', u'protect', u'cours']
[u'dollar', u'weak', u'worri']
[u'expert', u'make', u'damn', u'vioxx', u'claim']
[u'report', u'give', u'beef', u'market', u'jitter']
[u'militari', u'blame', u'media', u'death', u'iraq']
[u'report', u'convict', u'contempt']
[u'suggest', u'world', u'style', u'attract']
[u'polic', u'abl', u'stun', u'gun']
[u'submit', u'super', u'nomin']
[u'vietnam', u'vet', u'unhappi', u'facil', u'loss']
[u'vindic', u'anderson', u'demand', u'apolog']
[u'look', u'oversea', u'mental', u'health', u'worker', u'shortag']
[u'nickel', u'miner', u'share', u'tripl']
[u'water', u'author', u'review', u'start', u'soon']
[u'whan', u'reject', u'opposit', u'polic', u'claim']
[u'william', u'retain', u'scot', u'second']
[u'windsor', u'call', u'handl', u'briberi', u'claim']
[u'wit', u'differ', u'hook', u'fight']
[u'wit', u'seek', u'school', u'blaze']
[u'woodcarv', u'industri', u'call', u'support']
[u'work', u'afoot', u'rice', u'owner']
[u'world', u'vision', u'aust', u'pull', u'iraq']
[u'world', u'vision', u'withdraw', u'indigen', u'communiti']
[u'wudinna', u'hospit', u'review']
[u'kill', u'philippin', u'strike', u'militari']
[u'kill', u'attack', u'iraq']
[u'kill', u'captur', u'mosul', u'raid']
[u'afghanistan', u'poppi', u'crop', u'jump', u'percent']
[u'afghan', u'kill', u'aust', u'journalist']
[u'african', u'leader', u'sign', u'peac', u'pact']
[u'alexand', u'great', u'bisexu', u'greek']
[u'elli']
[u'apec', u'wide', u'trade', u'deal']
[u'appeal', u'fund', u'save', u'devil']
[u'aussi', u'netbal', u'clinch', u'seri', u'thriller']
[u'aussi', u'tail', u'break', u'black', u'cap', u'spirit']
[u'aussi', u'tail', u'bring']
[u'aust', u'indonesia', u'enter']
[u'australian', u'arrest', u'gun', u'boat']
[u'australia', u'embarrass']
[u'australia', u'rat', u'near', u'world', u'high']
[u'band', u'demand', u'politician', u'africa']
[u'berlusconi', u'trial', u'hear', u'damag', u'claim']
[u'lade', u'zarqawi', u'attempt', u'communic']
[u'spear', u'head']
[u'brazil', u'legend', u'socrat', u'play', u'yorkshir']
[u'bribe', u'claim', u'owe', u'anderson', u'apolog']
[u'casey', u'donald', u'storm', u'clear', u'world']
[u'central', u'african', u'leader', u'urg', u'commit', u'peac']
[u'china', u'south', u'korea', u'urg', u'patienc', u'north', u'korea']
[u'citi', u'hall', u'sculptur', u'offend', u'indigen', u'australian']
[u'clark', u'gilli', u'go', u'make', u'ton']
[u'clark', u'test', u'euphoria', u'show', u'sign', u'abat']
[u'club', u'discuss', u'smoke', u'ban', u'problem', u'gambl']
[u'confus', u'surround', u'king', u'river', u'clean', u'deal']
[u'creditor', u'write', u'iraq', u'debt']
[u'hope']
[u'death', u'highlight', u'need', u'train']
[u'deegan', u'confirm', u'anti', u'corrupt', u'branch', u'inquiri']
[u'deledio', u'richmond', u'draft', u'begin']
[u'deledio', u'richmond', u'draft', u'number']
[u'dfat', u'confirm', u'egypt', u'habib']
[u'dont', u'mollycoddl', u'say', u'princ', u'william']
[u'drink', u'driver', u'share']
[u'dubbo', u'elect', u'vote']
[u'elli', u'declar', u'silver', u'fern', u'clash']
[u'england', u'veteran', u'gough', u'pledg', u'play']
[u'exoner', u'snaggletooth', u'killer', u'get', u'extrem']
[u'fardel', u'win', u'dubbo', u'elect']
[u'ferdinand', u'readi', u'walk', u'race', u'abus']
[u'crew', u'contain', u'mandurah', u'bushfir']
[u'fish', u'threaten', u'shark']
[u'contest', u'katherin', u'elect']
[u'fund', u'squeez', u'prevent', u'asbesto', u'hous', u'demolit']
[u'ginger', u'gadget', u'improv', u'antarct', u'transport']
[u'glover', u'paint', u'auction']
[u'grandfath', u'convict', u'tourism', u'law']
[u'hawk']
[u'heritag', u'protect', u'consid', u'pine', u'creek']
[u'hewitt', u'crush', u'gaudio', u'reach', u'master', u'semi']
[u'hewitt', u'face', u'roddick', u'master', u'semi']
[u'hezbollah', u'link', u'station', u'broadcast']
[u'home', u'threaten', u'mandurah', u'bushfir']
[u'honda', u'claim', u'stake', u'team']
[u'hunter', u'health', u'investig', u'meningococc', u'case']
[u'icrc', u'criticis', u'civilian', u'death', u'iraq']
[u'immigr', u'learn', u'european', u'valu']
[u'indigen', u'condem', u'welfar', u'reform', u'propos']
[u'hear', u'fail', u'halt', u'rail', u'strike']
[u'ivori', u'coast', u'appoint', u'provok', u'rebel', u'franc']
[u'japanes', u'research', u'develop', u'malaria', u'vaccin']
[u'kumbl', u'strike', u'earli', u'south', u'africa']
[u'labor', u'school', u'fund', u'polici', u'stay', u'latham']
[u'latham', u'seek', u'broaden', u'labor', u'appeal']
[u'latham', u'stick', u'medicar', u'gold', u'principl']
[u'london', u'unveil', u'olymp']
[u'loom', u'midwif', u'shortag', u'top', u'confer', u'agenda']
[u'loud', u'blast', u'rock', u'central', u'baghdad']
[u'dead', u'nightclub', u'stab']
[u'island', u'shelter', u'jesus', u'christ', u'bird']
[u'match', u'pois', u'black', u'cap']
[u'mcgrath', u'final', u'arriv']
[u'minist', u'play', u'propos', u'age', u'care', u'chang']
[u'murder', u'riverland', u'stab']
[u'murdoch', u'join', u'privat', u'univers', u'board']
[u'music', u'store', u'hide', u'eminem', u'world', u'view']
[u'drug', u'hope', u'kid']
[u'motiv', u'obvious', u'riverland', u'murder']
[u'schooli', u'arrest', u'festiv']
[u'north', u'stand', u'vain', u'bull', u'march']
[u'health', u'worker', u'face', u'drug', u'test']
[u'price', u'jump', u'suppli', u'worri']
[u'kill', u'baghdad', u'bomb']
[u'peepshow', u'star', u'steal', u'gnome', u'park']
[u'polic', u'investig', u'death', u'custodi']
[u'polic', u'seek', u'woman', u'stab']
[u'polic', u'target', u'apec', u'protest']
[u'pork', u'barrel', u'blame', u'bypass', u'delay', u'schultz']
[u'privat', u'school', u'deni', u'bulli', u'cover']
[u'promin', u'burmes', u'polit', u'prison', u'free']
[u'polic', u'investig', u'death', u'custodi']
[u'quiet', u'start', u'schooli', u'celebr']
[u'rapper', u'arrest', u'stab', u'music', u'award', u'brawl']
[u'renew', u'concern', u'shark', u'poach']
[u'riot', u'polic', u'disband', u'apec', u'protest']
[u'rural', u'doctor', u'seek', u'specialist', u'registr']
[u'rural', u'resid', u'challeng', u'hunt']
[u'schooli', u'festiv', u'begin']
[u'schu', u'vote', u'germani', u'star', u'centuri']
[u'punish', u'card', u'brawl']
[u'sorenstam', u'benefit', u'mother', u'shot']
[u'spanish', u'apologis', u'racist', u'fan']
[u'stem', u'cell', u'transplant', u'help', u'brazilian', u'walk']
[u'submarin', u'kill', u'prevent', u'wors', u'accid', u'report']
[u'taylor', u'find', u'fatal', u'ill', u'bore']
[u'teenag', u'charg', u'school', u'stab']
[u'tenni', u'australia', u'split', u'execut', u'role']
[u'thatcher', u'extradit', u'coup', u'trial', u'seek']
[u'kill', u'baghdad', u'clash']
[u'kill', u'overnight', u'road', u'accid']
[u'tilt', u'train', u'servic', u'track']
[u'clark', u'sizzl', u'gabba']
[u'battl', u'houston', u'semi']
[u'tuna', u'ranch', u'propos', u'worri', u'conserv', u'group']
[u'sydney', u'begin', u'broadcast', u'march']
[u'ugandan', u'rebel', u'match', u'govern', u'ceas']
[u'union', u'want', u'labor', u'econom', u'agenda']
[u'staff', u'commit', u'crime', u'congo', u'annan']
[u'staff', u'manag', u'annan']
[u'push', u'clone', u'crumbl']
[u'budget', u'declin', u'investor']
[u'stock', u'drop', u'currenc', u'movement']
[u'veteran', u'compos', u'coleman', u'die']
[u'violent', u'storm', u'caus', u'chao', u'europ']
[u'homeown', u'embrac', u'solar', u'power']
[u'region', u'road', u'fund', u'welcom']
[u'word', u'leav', u'warn', u'unscath']
[u'widow', u'obtain', u'arafat', u'medic', u'file']
[u'wilkinson', u'australia', u'match']
[u'windsor', u'stand', u'briberi', u'alleg']
[u'woodbridg', u'down', u'master', u'doubl']
[u'wood', u'step', u'away', u'japan']
[u'yuko', u'sell', u'draw', u'critic']
[u'alcan', u'gove', u'begin', u'recruit', u'drive']
[u'anderson', u'clear', u'briberi', u'alleg']
[u'anti', u'apec', u'demonstr', u'continu']
[u'arafat', u'overse', u'network', u'report']
[u'lover', u'queue', u'review', u'revamp', u'moma']
[u'asbesto', u'hamper', u'firefight', u'abattoir', u'blaze']
[u'astl', u'play', u'walk', u'debat']
[u'australia', u'philippin', u'boost', u'anti', u'terror']
[u'barca', u'humili', u'lacklustr', u'real']
[u'batter', u'wallabi', u'face', u'back', u'crisi']
[u'birt', u'bevan', u'lead', u'tiger', u'crush']
[u'blue', u'beat', u'bushrang', u'thrill', u'finish']
[u'blue', u'chase', u'junction', u'oval']
[u'britain', u'fight', u'kiwi']
[u'bush', u'meet', u'alli', u'north', u'korea', u'apec']
[u'carr', u'lobbi', u'lebanon', u'extradit', u'treati']
[u'carr', u'wrong', u'lebanon', u'extradit', u'treati', u'ellison']
[u'casey', u'win', u'idol', u'crown']
[u'dump', u'overwhelm', u'rspca']
[u'chelsea', u'arsenal', u'slip', u'premiership', u'banana', u'skin']
[u'chernobyl', u'fallout', u'rais', u'sweden', u'cancer', u'rat']
[u'china', u'await', u'stabil', u'free', u'yuan']
[u'china', u'plane', u'crash', u'kill']
[u'cooma', u'histor', u'display', u'restor']
[u'council', u'urg', u'appli', u'disast', u'fund']
[u'crespo', u'mark', u'milan', u'edg', u'palermo']
[u'crew', u'fight', u'melbourn', u'factori', u'blaze']
[u'curs', u'puma', u'hit', u'franc']
[u'derail', u'freight', u'train', u'narrowli', u'miss', u'home']
[u'detain', u'skipper', u'carri', u'gun', u'protect', u'famili']
[u'detain', u'skipper', u'hire', u'legal', u'team']
[u'develop', u'foot', u'chang']
[u'dubbo', u'prioriti', u'averag', u'person', u'need']
[u'eagl', u'aviari', u'shelter', u'speci']
[u'kill', u'itali', u'explos']
[u'elder', u'woman', u'death', u'deem', u'suspici']
[u'elvi', u'record', u'shake', u'auction']
[u'environ', u'centr', u'seek', u'clean', u'review']
[u'expand', u'emir', u'deni', u'unfair', u'advantag']
[u'extradit', u'plan', u'stab']
[u'fall', u'confid', u'fail', u'dent', u'land', u'sale']
[u'fear', u'prevent', u'sudanes', u'return', u'darfur']
[u'feder', u'triumph', u'break', u'marathon']
[u'caus', u'damag', u'perth', u'home']
[u'destroy', u'smash', u'repair', u'shop']
[u'trap', u'chines', u'miner']
[u'time', u'competitor', u'beat', u'race', u'favourit']
[u'fish', u'industri', u'deni', u'risk', u'shark', u'popul']
[u'bomb', u'explod', u'southern', u'thailand']
[u'democrat', u'leader', u'janin', u'hain', u'die']
[u'hostag', u'return', u'iraq']
[u'headless', u'bodi', u'mosul']
[u'injur', u'smash']
[u'googl', u'founder', u'offload', u'million', u'share']
[u'govt', u'offer', u'help', u'detain', u'sailor']
[u'grandmoth', u'earn', u'adult', u'learn', u'award']
[u'hall', u'frustrat', u'india', u'maiden']
[u'hall', u'lift', u'protea', u'kumbl', u'strike']
[u'hewitt', u'face', u'feder', u'master', u'final']
[u'hodgson', u'heroic', u'sink', u'bok']
[u'hong', u'kong', u'democrat', u'leader', u'resign']
[u'howard', u'add', u'voic', u'north', u'korea', u'critic']
[u'howard', u'call', u'action', u'aid']
[u'howard', u'talk', u'trade', u'liberalis']
[u'india', u'debat', u'man', u'space', u'flight']
[u'inform', u'seek', u'murder', u'man', u'movement']
[u'investig', u'begin', u'dead', u'chines', u'plane']
[u'iraq', u'elect']
[u'kiwi', u'verg', u'massiv', u'defeat']
[u'labor', u'judg', u'perform']
[u'lenton', u'clean', u'skin', u'meet']
[u'malaysia', u'rap', u'secur', u'focus', u'australia']
[u'injur', u'shoot']
[u'kill', u'follow', u'friend', u'train', u'roof']
[u'kill', u'dairi', u'farm', u'accid']
[u'children', u'dead']
[u'mcgrath', u'gillespi', u'watch', u'gabba', u'sky']
[u'mcgrath', u'warn', u'kiwi', u'rope']
[u'meet', u'fail', u'decid', u'yass', u'oper', u'theatr']
[u'melbourn', u'factori', u'blaze', u'caus', u'damag']
[u'hope', u'certainti', u'adelaid', u'recoveri']
[u'hop', u'phone', u'influenc', u'poki', u'debat']
[u'telstra', u'sale', u'howard']
[u'suspend', u'player', u'brawl']
[u'nelson', u'critic', u'labor', u'posit', u'educ']
[u'kill', u'china', u'blaze']
[u'nomin', u'open', u'palestinian', u'elect']
[u'crime', u'court', u'distract', u'say', u'opposit']
[u'nurs', u'hear', u'foreign', u'recruit', u'difficulti']
[u'spi', u'target', u'maori', u'leader', u'report']
[u'obstetr', u'unit', u'closur', u'skill', u'doctor']
[u'olymp', u'champion', u'manaudou', u'set', u'metr']
[u'partnership', u'smooth', u'indigen', u'fund', u'transit']
[u'pittman', u'set', u'busi', u'schedul', u'commonwealth', u'game']
[u'hose', u'voluntari', u'vote', u'debat']
[u'pohamba', u'win', u'namibia', u'elect']
[u'polic', u'probe', u'train', u'derail']
[u'polish', u'hostag', u'free', u'iraq']
[u'pont', u'hail', u'mighti', u'turnaround']
[u'princ', u'charl', u'deni', u'snobberi']
[u'ranger', u'firm', u'blow', u'titl', u'race', u'open']
[u'razorback', u'track']
[u'report', u'find', u'lack', u'support', u'releas', u'prison']
[u'restaur', u'owner', u'tackl', u'robber']
[u'return', u'date', u'uncertain', u'fallujah', u'resid']
[u'robinson', u'wari', u'wallabi']
[u'rocknrol', u'blast', u'frontier']
[u'govt', u'urg', u'seiz', u'winemak', u'properti']
[u'schooli', u'overdos', u'prompt', u'polic', u'warn']
[u'schooli', u'problem', u'alcohol']
[u'search', u'begin', u'miss', u'yacht']
[u'search', u'continu', u'miss', u'year']
[u'injuri', u'scot']
[u'seven', u'kill', u'shoot']
[u'sixer', u'edg', u'wildcat']
[u'wound', u'baiji', u'samarra', u'clash']
[u'sorenstam', u'threat', u'florida']
[u'spain', u'golf', u'world', u'lead']
[u'stab', u'suspect', u'nab', u'attempt', u'flee', u'countri']
[u'stem', u'cell', u'save', u'diseas', u'teeth']
[u'kilda', u'pavilion', u'upgrad', u'cost']
[u'storm', u'kill', u'philippin']
[u'swift', u'trawl', u'space', u'gamma', u'explos']
[u'task', u'forc', u'develop', u'crime', u'court']
[u'tassi', u'redback', u'massiv', u'chase']
[u'teenag', u'kill', u'nablus', u'clash']
[u'kill', u'separ', u'road', u'accid']
[u'togo', u'stamped', u'kill']
[u'athlet', u'event', u'melbourn', u'game']
[u'toss', u'decis', u'backfir', u'bull']
[u'troop', u'concern', u'snag', u'intellig', u'reform']
[u'crane', u'collaps', u'shop', u'centr']
[u'mummi', u'discov', u'croatia']
[u'govern', u'consid', u'tough', u'anti', u'terror', u'law']
[u'asian', u'nation', u'common', u'voic', u'north', u'korea']
[u'rule', u'trade', u'deal', u'chang']
[u'soldier', u'kill', u'baghdad']
[u'steward', u'revers', u'tasmanian', u'result']
[u'valiant', u'wale', u'pip', u'post', u'black']
[u'volunt', u'close', u'damp', u'revel']
[u'vote', u'begin', u'ukrain', u'presidenti', u'elect']
[u'warn', u'mcgrath', u'bowl', u'australia', u'massiv']
[u'warrior', u'bull']
[u'windsor', u'call', u'inquiri', u'bribe', u'claim']
[u'wood', u'seiz', u'strokeplay', u'titl', u'year']
[u'yuko', u'sharehold', u'challeng', u'asset', u'sell']
[u'zarqawi', u'harder', u'catch', u'saddam']
[u'nation', u'draft', u'list']
[u'stand', u'star', u'comment', u'gay']
[u'safeti', u'boost', u'road', u'lead', u'daylesford']
[u'accus', u'plead', u'guilti', u'forens', u'bomb', u'charg']
[u'author', u'welcom', u'rain']
[u'opposit', u'urg', u'restraint', u'wag']
[u'airport', u'attack', u'trale', u'estat', u'plan']
[u'apec', u'leader', u'russia', u'vietnam', u'membership']
[u'applebi', u'set', u'record', u'runway', u'drive', u'contest']
[u'arafat', u'nephew', u'get', u'medic', u'report', u'ill']
[u'arafat', u'widow', u'challeng', u'nephew', u'right', u'medic']
[u'architect', u'firm', u'stand', u'waterfront', u'develop']
[u'arsenal', u'face', u'champ', u'leagu', u'crunch']
[u'artifici', u'intellig', u'focus', u'hobart']
[u'asbesto', u'troubl', u'hardi', u'line']
[u'astl', u'play', u'walk', u'debat']
[u'atsb', u'probe', u'fatal', u'helicopt', u'crash']
[u'aust', u'nuclear', u'shipment', u'head', u'franc']
[u'australia', u'assist', u'bali', u'drug', u'investig']
[u'australian', u'polic', u'face', u'hard', u'work']
[u'clinch', u'tough', u'china', u'deal']
[u'baptista', u'strike', u'help', u'sevilla', u'climb']
[u'barbecu', u'blast', u'injur', u'woman']
[u'barcelona', u'larsson', u'week']
[u'basslink', u'burn', u'spark', u'bushfir']
[u'beachley', u'win', u'event', u'lose', u'titl']
[u'bend', u'case', u'prompt', u'warn', u'recreat', u'diver']
[u'bipartisan', u'support', u'urg', u'derail', u'wit']
[u'blatter', u'odd', u'england', u'walk']
[u'bouncer', u'stand', u'trial', u'hook', u'death']
[u'brazilian', u'gunmen', u'kill', u'land', u'activist']
[u'bridg', u'collaps', u'spark', u'detour']
[u'break', u'hill', u'get', u'time', u'deal', u'health']
[u'bull', u'fight', u'waca']
[u'busi', u'welcom', u'meatwork', u'job', u'boost']
[u'campbel', u'centuri', u'put', u'warrior', u'foot']
[u'canberra', u'hobart', u'home', u'australia', u'worst', u'litter']
[u'kill', u'lie', u'road']
[u'carr', u'talk', u'crime', u'statist']
[u'central', u'record', u'road', u'death']
[u'china', u'toll', u'reach']
[u'church', u'celebr', u'christian', u'servic', u'anniversari']
[u'churchil', u'jersey', u'go', u'hammer']
[u'probe', u'palm', u'death']
[u'coalit', u'attack', u'wetland', u'polici']
[u'committe', u'citrus', u'canker', u'recommend']
[u'communiti', u'upset', u'custodi', u'death']
[u'conflict', u'evid', u'hear', u'hook', u'case']
[u'consum', u'watchdog', u'block', u'origin']
[u'council', u'call', u'ratepay', u'cough', u'unpaid']
[u'council', u'consid', u'green', u'wast', u'recycl']
[u'council', u'consid', u'hors', u'restrict']
[u'council', u'push', u'great', u'ocean', u'extens']
[u'council', u'beat', u'hostel', u'pass', u'safeti', u'check']
[u'crime', u'fight', u'project', u'work', u'carnarvon']
[u'cultur', u'pressur', u'play', u'indigen', u'retail']
[u'danger', u'good', u'aboard', u'derail', u'freight', u'train']
[u'derail', u'prompt', u'call', u'rail', u'line']
[u'detain', u'sailor', u'famili', u'hope', u'releas']
[u'detain', u'skipper', u'deni', u'traffic', u'claim']
[u'develop', u'group', u'happi', u'shire', u'independ']
[u'dizzi', u'back', u'rotat', u'polici']
[u'driver', u'unlik', u'charg', u'pedestrian', u'death']
[u'drown', u'spark', u'perman', u'beach', u'patrol']
[u'drown', u'victim', u'name', u'releas']
[u'time', u'prompt', u'earli', u'ban']
[u'enrol', u'drop', u'uni', u'mildura', u'campus']
[u'entri', u'brisban', u'film', u'goer']
[u'offici', u'lose', u'bail', u'child']
[u'farmer', u'group', u'attack', u'govt', u'iraqi', u'debt', u'write']
[u'feder', u'polic', u'dismiss', u'windsor', u'bribe', u'claim']
[u'feder', u'stroll', u'past', u'hewitt', u'master', u'titl']
[u'feder', u'take']
[u'fergi', u'laud', u'nistelrooy', u'best']
[u'financ', u'shortcom', u'prompt', u'defenc', u'dept', u'overhaul']
[u'firefight', u'urg', u'safe', u'powerboard']
[u'fitzi', u'faith', u'free', u'fall', u'scud']
[u'offici', u'guilti', u'child', u'prostitut']
[u'franklin', u'join', u'black', u'cap', u'second', u'test']
[u'gene', u'discoveri', u'rett', u'syndrom', u'diagnosi']
[u'geologist', u'excit', u'discoveri']
[u'girl', u'kill', u'guadeloup', u'earthquak']
[u'gold', u'explor', u'worri', u'lorinna', u'resid']
[u'govt', u'back', u'eastern', u'rout', u'river', u'cross']
[u'govt', u'mistak', u'leav', u'hick', u'habib', u'oversea']
[u'govt', u'urg', u'boost', u'power', u'fund']
[u'govt', u'urg', u'chang', u'land', u'acquisit', u'legisl']
[u'govt', u'urg', u'continu', u'schooli', u'role']
[u'govt', u'urg', u'live', u'murray', u'plan']
[u'hawk', u'sign', u'coach', u'panel']
[u'health', u'servic', u'echo', u'call', u'play', u'centr']
[u'helicopt', u'crash', u'kill']
[u'highway', u'fear', u'spark', u'ministeri', u'council']
[u'hill', u'explain', u'defenc', u'budget', u'problem']
[u'driver', u'spend', u'time', u'jail']
[u'hop', u'fade', u'miss', u'filipino', u'fishermen']
[u'hors', u'remov', u'townsvill', u'amidst', u'welfar']
[u'howard', u'reject', u'briberi', u'senat', u'inquiri']
[u'illeg', u'tobacco', u'earn', u'jail', u'time']
[u'immigr', u'deni', u'detaine', u'deport']
[u'independ', u'seek', u'dubbo', u'seat', u'chang']
[u'india', u'cut', u'troop', u'number', u'srinagar']
[u'indonesian', u'schoolgirl', u'await', u'deport', u'rule']
[u'inmat', u'go', u'display']
[u'intellig', u'bill', u'failur', u'disappoint', u'bush']
[u'inter', u'hard', u'work', u'bologna']
[u'intern', u'group', u'join', u'fight', u'protect', u'burrup']
[u'iran', u'win', u'iaea', u'prais']
[u'iraqi', u'cousin', u'releas']
[u'iraq', u'welcom', u'creditor', u'decis', u'slash', u'debt']
[u'begin', u'hear', u'landmark', u'sever', u'claim']
[u'island', u'koala', u'home']
[u'isra', u'forc', u'kill', u'palestinian', u'milit']
[u'jetstar', u'fli', u'closer', u'launch']
[u'assassin', u'game', u'despic']
[u'kabul', u'home', u'raid', u'hunt', u'hostag']
[u'knife', u'waikeri', u'murder', u'weapon', u'search']
[u'konica', u'minolta', u'arriv', u'sydney', u'hobart']
[u'labor', u'probe', u'briberi', u'alleg']
[u'law', u'price', u'tell', u'apologis', u'ridicul', u'gay']
[u'lewi', u'bushrang']
[u'lifesav', u'effort', u'boost', u'schooli']
[u'litter', u'survey', u'find', u'hard', u'believ']
[u'long', u'fight', u'ahead', u'rail', u'improv']
[u'lung', u'diseas', u'patient', u'suffer', u'silenc']
[u'die', u'dairi', u'farm', u'tragedi']
[u'dead', u'unit', u'blaze']
[u'manufactur', u'tape', u'cost']
[u'marin', u'shoot', u'insurg', u'play', u'dead']
[u'martin', u'deni', u'wharf', u'high', u'rise', u'block', u'view']
[u'mayor', u'urg', u'greater', u'remot', u'relief']
[u'melbourn', u'water', u'restrict', u'stay', u'despit', u'rain']
[u'minist', u'say', u'underground', u'power', u'cure']
[u'bodi', u'iraqi', u'soldier', u'mosul']
[u'call', u'tackl', u'petrol', u'sniff']
[u'flight', u'seek', u'boost', u'tourist', u'sector']
[u'morwel', u'volunt', u'road', u'rescu', u'challeng']
[u'mose', u'pip', u'rickard', u'durban', u'pool']
[u'air', u'staff', u'concern']
[u'back', u'doctor', u'push']
[u'urg', u'minist', u'rethink', u'transport', u'plan']
[u'murrumbateman', u'bypass', u'deni', u'fund']
[u'brawler', u'hand', u'game', u'suspens']
[u'wont', u'action', u'alleg', u'head', u'butt']
[u'busi', u'seek', u'rice', u'site']
[u'newc', u'fitzi', u'slam', u'tenni', u'australia', u'youth', u'develop']
[u'fund', u'eas', u'tasmanian', u'land', u'degrad']
[u'site', u'seek', u'whoa']
[u'nicorett', u'receiv', u'mast']
[u'guarante', u'power', u'despit', u'substat']
[u'norwegian', u'die', u'mundubbera', u'crash']
[u'trace', u'poison', u'arafat', u'nephew']
[u'hall', u'champion', u'welcom', u'member']
[u'eye', u'export', u'boost', u'china', u'trade', u'deal']
[u'deni', u'agenc', u'target', u'maori']
[u'owner', u'look', u'reopen', u'damag', u'meatwork']
[u'parliament', u'consid', u'public', u'holiday']
[u'parliament', u'hear', u'letter', u'hospit', u'fear']
[u'pilot', u'advic', u'weather', u'storm']
[u'plan', u'continu', u'privat', u'surgeri', u'centr']
[u'plan', u'afoot', u'legal', u'lismor', u'brothel']
[u'play', u'bogey', u'bring', u'sorenstam', u'lpga', u'crown']
[u'flag', u'progress', u'china', u'trade', u'talk']
[u'prais', u'apec', u'summit']
[u'polic', u'ask', u'investig', u'billboard']
[u'polic', u'crime', u'figur', u'crown', u'casino']
[u'polic', u'boost', u'plan', u'youth', u'game']
[u'polic', u'concern', u'schooli']
[u'polic', u'consid', u'drive', u'penalti']
[u'polic', u'hope', u'question', u'miss', u'yacht', u'crew', u'member']
[u'polic', u'hunt', u'currimundi', u'stab']
[u'polic', u'greater', u'alcohol', u'confisc', u'power']
[u'polic', u'probe', u'murder', u'man', u'internet']
[u'polic', u'trace', u'elder', u'woman', u'hour']
[u'polic', u'search', u'waikeri', u'murder', u'weapon']
[u'polic', u'struggl', u'retriev', u'drown', u'sailor', u'bodi']
[u'powel', u'pledg', u'support', u'palestinian', u'elect']
[u'powel', u'win', u'isra', u'pledg', u'palestinian', u'vote']
[u'prize', u'win', u'book', u'distort', u'histori', u'aborigin']
[u'public', u'remind', u'vote', u'council', u'poll']
[u'public', u'respons', u'hearten', u'miss', u'boy', u'famili']
[u'public', u'brief', u'work']
[u'public', u'brief', u'handl', u'danger', u'good']
[u'public', u'highway', u'revamp', u'plan']
[u'push', u'intensifi', u'attract', u'sack', u'worker']
[u'push', u'waterfront', u'work']
[u'urg', u'consid', u'health', u'develop']
[u'rain', u'affect', u'grain', u'harvest']
[u'real', u'estat', u'institut', u'urg', u'stamp', u'duti', u'review']
[u'report', u'highlight', u'environment', u'pressur']
[u'report', u'highlight', u'health', u'crisi', u'concern']
[u'resid', u'final', u'shop', u'plan']
[u'rural', u'doctor', u'fear', u'bush', u'servic']
[u'govt', u'accus', u'abandon', u'transport', u'blueprint']
[u'sailor', u'kill', u'shore', u'leav']
[u'schooli', u'assault', u'investig']
[u'servic', u'honour', u'westralia', u'victim']
[u'settl', u'watch', u'profit', u'drop', u'union', u'tell', u'jam']
[u'shepherd', u'drive', u'flock', u'central', u'madrid']
[u'shire', u'plan', u'wild', u'strategi']
[u'skase', u'widow', u'arriv', u'australia']
[u'skywest', u'prepar', u'flight']
[u'stab', u'mar', u'schooli', u'celebr']
[u'stab', u'suspect', u'return', u'melbourn']
[u'state', u'govt', u'fund', u'asbesto', u'educ', u'program']
[u'stepfath', u'plead', u'guilti', u'abus', u'charg']
[u'strand', u'live', u'export', u'cattl', u'offload', u'jordan']
[u'strickland', u'statu', u'unveil']
[u'suburban', u'hous', u'caus', u'workmen']
[u'suburban', u'satellit', u'dish', u'prompt', u'council', u'action']
[u'sudanes', u'rebel', u'welcom', u'troop', u'plan']
[u'surf', u'music', u'produc', u'terri', u'melcher', u'die']
[u'survey', u'aim', u'inform', u'fish', u'trend']
[u'sydney', u'train', u'commut', u'travel', u'free']
[u'polic', u'urg', u'vigil', u'weekend', u'road', u'death']
[u'tiger', u'fan', u'patient']
[u'tortur', u'sit', u'fallujah', u'say']
[u'tourism', u'award', u'aplenti', u'limeston', u'coast']
[u'tuna', u'farm', u'propon', u'reject', u'environment', u'concern']
[u'year', u'jail', u'illeg', u'tobacco', u'salesman']
[u'action', u'puzzl', u'fish']
[u'child', u'offend', u'seek', u'home']
[u'ukrain', u'challeng', u'alleg', u'ballot', u'flaw']
[u'union', u'brand', u'opposit', u'claim', u'shallow']
[u'unlock', u'slide', u'door', u'foil', u'robberi', u'attempt']
[u'plan', u'troop', u'deploy', u'sudan']
[u'dollar', u'specul', u'boost', u'aussi', u'currenc']
[u'reject', u'egyptian', u'custodi', u'request', u'habib']
[u'boat', u'accid', u'kill']
[u'detect', u'step', u'extradit', u'attempt']
[u'victim', u'group', u'get', u'fund', u'pledg']
[u'wallabi', u'black', u'carri', u'southern', u'reput']
[u'wall', u'street', u'drop', u'hit', u'australian', u'share']
[u'waratah', u'recruit', u'psychologist', u'hunt', u'elus']
[u'senat', u'plead', u'guilti', u'drive', u'charg']
[u'weekend', u'win', u'elud', u'croc']
[u'york', u'spark', u'racist', u'controversi']
[u'youth', u'group', u'want', u'bigger', u'subsidi', u'high', u'free']
[u'detain', u'apec', u'chile']
[u'academ', u'urg', u'cooper', u'water', u'manag']
[u'nomin', u'raaf', u'offic', u'australian']
[u'opposit', u'clean', u'school', u'tender']
[u'airlin', u'put', u'schedul']
[u'amcor', u'flag', u'possibl', u'competit', u'breach']
[u'anderson', u'defend', u'elect', u'margin', u'seat', u'fund']
[u'land', u'inquest', u'begin']
[u'arrest', u'airli', u'beach', u'schooli']
[u'auditor', u'general', u'criticis', u'oversight', u'feder']
[u'australian', u'armi', u'chief', u'visit', u'kashmir']
[u'author', u'record', u'water', u'breach']
[u'baddeley', u'aim', u'aust', u'open']
[u'beatti', u'reject', u'indi', u'schooli', u'comparison']
[u'best', u'newcom', u'accolad', u'sonni']
[u'blore', u'hill', u'bushfir', u'accid']
[u'blue', u'bushrang', u'share', u'honour']
[u'blue', u'melbourn']
[u'bodi', u'brisban', u'creek']
[u'bogus', u'prey', u'asian', u'women']
[u'bomb', u'iraq', u'commerci', u'flight']
[u'bracewel', u'blame', u'media', u'walk', u'controversi']
[u'britain', u'launch', u'iraq', u'shoot', u'probe']
[u'buchanan', u'guard', u'bowler', u'rotat', u'plan']
[u'budget', u'airlin', u'boost', u'gold', u'coast', u'flight']
[u'bull', u'waca', u'batter', u'paradis']
[u'bull', u'secur', u'inning', u'point']
[u'burglar', u'steal', u'jewelleri', u'ozzi', u'osbourn', u'home']
[u'bush', u'deni', u'nuclear', u'bunker', u'buster', u'fund']
[u'bush', u'sceptic', u'iran', u'uranium', u'claim']
[u'feguson', u'park', u'reloc', u'support']
[u'milk', u'sponsorship', u'deal', u'year']
[u'campaign', u'push', u'afford', u'rural', u'hous']
[u'canada', u'talk', u'hepat', u'compens']
[u'canberra', u'hospit', u'wait', u'list', u'longer']
[u'cancer', u'drug', u'control', u'diseas']
[u'cancer', u'drug', u'restrict', u'concern', u'doctor']
[u'cane', u'toad', u'discoveri', u'prompt', u'warn']
[u'crash', u'victim', u'north']
[u'park', u'area', u'free']
[u'carr', u'tour', u'break', u'hill']
[u'census', u'find', u'plenti', u'fish']
[u'chanc', u'want', u'greater', u'nation', u'support', u'grain']
[u'charg', u'drop', u'william', u'sister', u'murder', u'case']
[u'child', u'abus', u'commiss', u'motion', u'caus', u'lib']
[u'china', u'talk', u'offer', u'potenti', u'australian']
[u'church', u'play']
[u'cleric', u'return', u'sydney', u'iraq', u'kidnap']
[u'cocoa', u'ingredi', u'provid', u'cough', u'remedi']
[u'commonwealth', u'game', u'campaign', u'launch', u'london']
[u'communiti', u'earn', u'prais', u'arson', u'affect']
[u'conserv', u'group', u'rebut', u'dingo', u'claim']
[u'head', u'lobster', u'meat', u'plan']
[u'coron', u'seek', u'licens', u'user']
[u'coroni', u'inquest', u'spark', u'danger', u'review']
[u'councillor', u'seek', u'chang', u'develop', u'fund']
[u'council', u'race', u'finish', u'riverscap', u'boardwalk']
[u'council', u'consid', u'park', u'option']
[u'council', u'rais', u'wall']
[u'cricket', u'australia', u'consid', u'rest', u'bowler']
[u'danc', u'train', u'go', u'microscop']
[u'death', u'demonstr', u'import', u'life', u'jacket']
[u'death', u'spark', u'call', u'lifesav', u'club', u'chang']
[u'deputi', u'mayor', u'beat', u'council', u'direct']
[u'desalin', u'plant', u'flow', u'olymp', u'plan']
[u'dog', u'croft', u'court', u'threat']
[u'dog', u'deal', u'croft', u'claim']
[u'dolphin', u'protect', u'lifeguard', u'great', u'white']
[u'drug', u'drive', u'studi', u'saliva', u'sampl']
[u'earthquak', u'hit', u'zealand']
[u'electr', u'fault', u'fatal', u'hous', u'blaze']
[u'electr', u'worker', u'threaten', u'strike', u'action']
[u'nino', u'unlik', u'say', u'bureau']
[u'energex', u'woe', u'continu', u'plagu', u'treasur']
[u'english', u'polic', u'launch', u'york', u'investig']
[u'harden', u'stanc', u'belarus']
[u'expert', u'criticis', u'nation', u'indigen', u'council']
[u'russian', u'blame', u'nato', u'kosovo', u'exodus']
[u'fall', u'jobless', u'rate', u'blame', u'centrelink', u'cut']
[u'fardel', u'reject', u'claim', u'windsor', u'help']
[u'farmer', u'blame', u'dingo', u'stock', u'loss']
[u'farmer', u'urg', u'join', u'class', u'action', u'fire']
[u'farm', u'group', u'support', u'china', u'wheat', u'contract']
[u'fatah', u'name', u'abba', u'presidenti', u'candid']
[u'feder', u'fund', u'devonport', u'fish', u'plan']
[u'fijian', u'chief', u'guilti', u'incit', u'mutini']
[u'free', u'melbourn']
[u'fli', u'doctor', u'australian', u'citizen']
[u'french', u'leagu', u'coach', u'predict', u'bright', u'futur']
[u'fund', u'help', u'improv', u'replica']
[u'bid', u'tip']
[u'generat', u'african', u'affect', u'aid']
[u'gladston', u'report', u'recommend', u'fitzroy', u'river', u'pipelin']
[u'govt', u'seek', u'feder', u'fund', u'road', u'project']
[u'govt', u'opinion', u'seek', u'illeg', u'whale', u'case']
[u'govt', u'stress', u'fund', u'marina', u'plan']
[u'govt', u'want', u'block', u'offend']
[u'gregan', u'close', u'world', u'record']
[u'hardi', u'win', u'intern', u'support']
[u'harsh', u'time', u'farmer', u'diversifi']
[u'helicopt', u'crash', u'prompt', u'review']
[u'hilton', u'lawyer', u'appeal', u'jail', u'term']
[u'hope', u'aborigin', u'return', u'bass', u'strait']
[u'hors', u'centr', u'committe', u'deni', u'condit']
[u'hors', u'rider', u'trot', u'protest', u'past', u'parliament', u'hous']
[u'hotel', u'deni', u'knowledg', u'cyclist', u'assault']
[u'hotel', u'deni', u'knowledg', u'french', u'bash']
[u'hundr', u'tuna', u'farm', u'plan']
[u'indigen', u'council', u'highlight', u'hous', u'shortag']
[u'inform', u'session', u'prospect', u'student']
[u'injur', u'mortlock', u'fli', u'home', u'flatley', u'larkham']
[u'inzamam', u'upbeat', u'despit', u'kiwi', u'gabba', u'meltdown']
[u'iraq', u'confer', u'call', u'inclus', u'elect']
[u'iraqi', u'govt', u'confid', u'januari', u'elect']
[u'jakarta', u'embassi', u'bomb', u'suspect', u'arrest']
[u'crash', u'pick', u'bush']
[u'labor', u'review', u'elect', u'loss']
[u'labor', u'overhaul', u'campaign', u'strategi']
[u'larsson', u'month', u'barca', u'doctor']
[u'lehmann', u'rule', u'retir']
[u'local', u'govt', u'group', u'cast', u'doubt', u'inquiri', u'impact']
[u'local', u'group', u'urg', u'appli', u'emerg', u'fund']
[u'lonard', u'hop', u'form', u'revers', u'aust', u'open']
[u'londonderri', u'inquiri', u'draw', u'close']
[u'long', u'walk', u'open', u'politician', u'ear']
[u'magistr', u'oshan', u'return', u'bench']
[u'maitland', u'nurs', u'consid', u'closur']
[u'malaysian', u'court', u'uphold', u'school', u'muslim', u'turban']
[u'escap', u'jail', u'term', u'secur', u'scuffl']
[u'mcdonald', u'chief', u'step', u'cancer', u'treatment']
[u'mcmillan', u'lash', u'righteous', u'gilli']
[u'measl', u'case', u'prompt', u'communiti', u'vaccin']
[u'meet', u'call', u'limit', u'macedon', u'rang']
[u'melbourn', u'train', u'night', u'year']
[u'opposit', u'adult', u'entertain', u'approv']
[u'jail', u'tobacco', u'traffic']
[u'michael', u'moor', u'name', u'intrigu', u'star']
[u'miner', u'see', u'problem', u'transport']
[u'mine', u'dept', u'highlight', u'good', u'indigen', u'relat']
[u'mine', u'sector', u'fuel', u'market', u'recoveri']
[u'minist', u'defend', u'hospit', u'christma', u'closur']
[u'minist', u'reject', u'resourc', u'firm']
[u'minist', u'reject', u'hospit', u'wait', u'list', u'critic']
[u'citrus', u'canker']
[u'time', u'health', u'consult', u'see']
[u'year', u'old', u'drink', u'alcohol']
[u'yeppoon', u'schooli', u'behav']
[u'mother', u'confess', u'daughter', u'murder']
[u'weigh', u'futur', u'ningaloo', u'reef', u'plan']
[u'mum', u'bear', u'brunt', u'child', u'care', u'duti', u'report']
[u'muslim', u'cleric', u'fight', u'deport', u'move']
[u'naura', u'face', u'sale', u'proceed']
[u'rehab', u'scheme', u'alburi']
[u'firm', u'date', u'alic', u'practic', u'match']
[u'gypsi', u'joker', u'inquest', u'need', u'court', u'tell']
[u'discuss', u'ambul', u'fund', u'shortfal']
[u'caravan', u'park', u'site', u'leas', u'life']
[u'paedophil', u'link', u'embarrass', u'footbal', u'club']
[u'palestinian', u'get', u'life', u'sentenc', u'kill']
[u'palmer', u'thomson', u'devlin', u'sydney']
[u'polic', u'crack', u'canberra', u'cannabi', u'syndic']
[u'polic', u'effort', u'lower', u'crime', u'rate']
[u'polic', u'probe', u'daniel', u'morecomb', u'lead']
[u'polic', u'inforc', u'maintain', u'palm', u'island', u'calm']
[u'polic', u'resum', u'search', u'miss', u'fisherman']
[u'polic', u'seek', u'help', u'find', u'attack']
[u'polic', u'confirm', u'durston', u'knife', u'link']
[u'power', u'grid', u'withstand', u'demand', u'perth', u'spell']
[u'program', u'aim', u'improv', u'drug', u'alcohol', u'treatment']
[u'propos', u'tuna', u'farm', u'boost', u'economi']
[u'protest', u'fail', u'stop', u'koala', u'reloc']
[u'parliament', u'round', u'final', u'legisl']
[u'random', u'drug', u'test', u'tip', u'driver']
[u'rare', u'collect', u'hammer']
[u'ratepay', u'group', u'air', u'albert', u'hall', u'concern']
[u'reef', u'rezon', u'consult', u'report', u'soon']
[u'reiwa', u'say', u'regul', u'address', u'dodgi', u'agent']
[u'resid', u'meet', u'seek', u'club', u'pub', u'curfew']
[u'resid', u'seek', u'urban', u'deer', u'cull']
[u'roger', u'clear', u'assault', u'probe']
[u'roger', u'wait', u'verdict', u'assault', u'claim']
[u'rural', u'land', u'ranger', u'surviv', u'dead', u'chopper', u'crash']
[u'ryan', u'maintain', u'support', u'health', u'board', u'sack']
[u'safeti', u'bureau', u'investig', u'helicopt', u'crash']
[u'govt', u'stop', u'offend']
[u'withdraw']
[u'school', u'use', u'scheme', u'water', u'bulli']
[u'scot']
[u'seahors', u'number', u'monitor']
[u'sehwag', u'gambhir', u'india']
[u'sehwag', u'regal', u'crowd', u'india', u'inflat', u'total']
[u'abus', u'victim', u'group', u'back', u'inquiri']
[u'sheryl', u'crow', u'recount', u'stalk', u'affair', u'trial']
[u'shire', u'say', u'tidal', u'power', u'plant']
[u'silent', u'major', u'oakaje', u'plan']
[u'korea', u'seek', u'extend', u'iraq', u'troop', u'deploy']
[u'snake', u'collect', u'caus', u'headach', u'firefight']
[u'state', u'funer', u'honour', u'democrat', u'leader']
[u'steal', u'generat', u'prompt', u'long', u'walk']
[u'steal', u'wag', u'payout', u'reach', u'near']
[u'stowaway', u'serpent', u'get', u'free', u'return']
[u'strong', u'demand', u'greet', u'connecteast', u'debut']
[u'sutherland', u'play', u'walk', u'debat']
[u'sydney', u'centr', u'help', u'problem', u'gambler']
[u'sydney', u'polic', u'join', u'hunter', u'hold', u'probe']
[u'tah', u'finalis', u'squad', u'red', u'head', u'gold', u'coast']
[u'teenag', u'jail', u'chapel']
[u'temporari', u'miner', u'villag', u'plan', u'west', u'wyalong']
[u'toxic', u'scare', u'prompt', u'care', u'centr', u'evacu']
[u'treat', u'yorker']
[u'ukrain', u'face', u'street', u'protest']
[u'ullrich', u'hit', u'lanc', u'lazi', u'jibe']
[u'clone', u'plan', u'empt', u'australian', u'debat']
[u'hostag', u'releas', u'afghanistan']
[u'union', u'ban', u'school', u'clean']
[u'question', u'campus', u'poll']
[u'revis', u'darfur', u'displac', u'estim']
[u'send', u'food', u'convoy', u'darfur', u'refuge']
[u'urg', u'support', u'timor']
[u'unwelcom', u'land', u'fine']
[u'await', u'final', u'nuclear', u'report', u'iran']
[u'deer', u'hunter', u'territori', u'shootout']
[u'dollar', u'stock', u'weather', u'pressur']
[u'soldier', u'wound', u'milit', u'kill', u'afghan', u'clash']
[u'villa', u'fifth', u'tumbl', u'tottenham']
[u'virgin', u'mari', u'sandwich', u'fetch']
[u'water', u'boost', u'good', u'news', u'eurobodalla', u'shire']
[u'water', u'safeti', u'plan', u'reduc', u'drown']
[u'webber', u'pois', u'william', u'out']
[u'weighti', u'woe', u'worsen', u'asthma', u'say', u'council']
[u'flatley', u'recal', u'world']
[u'william', u'maintain', u'water', u'stanc', u'despit', u'protest']
[u'windsor', u'defiant', u'bribe', u'claim']
[u'reject', u'xstrata', u'takeov']
[u'wood', u'close', u'singh']
[u'wool', u'factori', u'put', u'superfin', u'effort']
[u'wool', u'product', u'drop', u'sheep', u'number', u'fall']
[u'say', u'river', u'nation', u'icon']
[u'yacht', u'owner', u'hop', u'reunit', u'miss', u'craft']
[u'young', u'driver', u'safe', u'drive', u'advic']
[u'youth', u'bodi', u'link', u'death', u'petrol', u'sniff']
[u'power', u'station', u'open', u'today']
[u'accc', u'announc', u'cartel', u'crackdown']
[u'announc', u'tribun', u'overhaul']
[u'offic', u'face', u'court', u'inform', u'leak']
[u'urg', u'withdraw', u'suprem', u'court', u'judg', u'remark']
[u'airport', u'trial', u'soon']
[u'alcohol', u'factor', u'magistr', u'accid']
[u'black', u'ring', u'chang', u'franc', u'test']
[u'ord', u'record', u'form']
[u'want', u'shorter', u'elect', u'surgeri', u'shutdown']
[u'anderson', u'deni', u'region', u'fund', u'discrimin']
[u'atsic', u'move', u'closer', u'high', u'court', u'challeng']
[u'auditor', u'general', u'ask', u'probe', u'region', u'fund']
[u'aussi', u'test']
[u'author', u'intend', u'file', u'charg', u'brawl']
[u'award', u'come', u'marshal']
[u'award', u'speak', u'volum', u'indigen', u'languag']
[u'barca', u'sign', u'injur', u'larsson']
[u'closur', u'affect', u'elect', u'surgeri', u'union']
[u'benaud', u'go']
[u'roadwork', u'pave', u'develop']
[u'blair', u'target', u'crime', u'terror', u'elect']
[u'blue', u'look', u'katich', u'build', u'total']
[u'boat', u'mishap', u'spark', u'weather', u'warn']
[u'brack', u'await', u'report', u'magistr', u'park']
[u'british', u'media', u'deni', u'accredit', u'zimbabw']
[u'bull', u'happi', u'inning', u'point']
[u'bush', u'order', u'inquiri', u'paramilitari', u'oper']
[u'danger', u'tree', u'save']
[u'condit', u'basslink', u'burn']
[u'kyoto', u'protocol', u'action', u'save', u'reef']
[u'castrat', u'child', u'offend']
[u'canberran', u'save', u'recycl', u'water']
[u'career', u'advis', u'industri', u'lowdown']
[u'carr', u'reject', u'chemic', u'castrat', u'offend']
[u'casa', u'give', u'temora', u'runway']
[u'caterpillar', u'lobbi', u'bulldoz', u'sale', u'israel']
[u'consid', u'break', u'hill', u'boost']
[u'chang', u'seek', u'birth', u'servic', u'resourc']
[u'chappel', u'lament', u'lille', u'resign']
[u'charg', u'drop', u'footag', u'illeg', u'drink']
[u'chaudhri', u'lead', u'fiji', u'opposit']
[u'coal', u'owner', u'close', u'share', u'offer']
[u'coast', u'firm', u'run', u'export', u'award']
[u'committe', u'criticis', u'nepean', u'river', u'longwal', u'mine']
[u'communiti', u'invit', u'wind', u'farm', u'meet']
[u'compani', u'keen', u'brisban', u'tunnel', u'council', u'say']
[u'compani', u'urg', u'discuss', u'disput', u'rail']
[u'cooma', u'monaro', u'land', u'valu', u'skyrocket']
[u'council', u'move', u'ahead', u'palm', u'alcohol', u'plan']
[u'council', u'push', u'ahead', u'land', u'releas', u'plan']
[u'council', u'panel', u'beat', u'busi']
[u'council', u'want', u'plan', u'blueprint', u'extend']
[u'court', u'committ', u'date', u'barg', u'aground', u'case']
[u'court', u'hear', u'lade', u'recruit', u'thoma']
[u'court', u'uphold', u'defam', u'decis']
[u'crayfish', u'risk', u'log', u'say', u'expert']
[u'crew', u'battl', u'adelaid', u'blaze']
[u'crime', u'rat', u'climb', u'say', u'expert']
[u'cycl', u'australia', u'lose', u'high', u'perform', u'manag']
[u'death', u'prompt', u'perman', u'alexandria']
[u'democrat', u'wont', u'forc', u'windsor', u'inquiri']
[u'doctor', u'confirm', u'taxpay', u'fund', u'holiday']
[u'downer', u'give', u'latham', u'month']
[u'downer', u'seek', u'advic', u'plan', u'transfer']
[u'downer', u'warn', u'aussi', u'drug', u'possess']
[u'downer', u'welcom', u'embassi', u'bomb', u'arrest']
[u'dragway', u'increas', u'street', u'race', u'studi']
[u'farm', u'plan', u'bring', u'benefit']
[u'electron', u'barrier', u'away', u'shark', u'net']
[u'nino', u'absent', u'pacif']
[u'england', u'unchang', u'wallabi', u'clash']
[u'excav', u'plan', u'help', u'save', u'fish']
[u'farmer', u'brand', u'canola', u'failur']
[u'farmer', u'develop', u'green', u'guidelin']
[u'farmer', u'vent', u'regulatori', u'worri']
[u'ferguson', u'celebr', u'game', u'win', u'style']
[u'festiv', u'season', u'like', u'bring', u'elect', u'surgeri']
[u'fiji', u'high', u'chief', u'get', u'life', u'jail', u'incit']
[u'fiji', u'high', u'chief', u'guilti', u'incit', u'mutini']
[u'damag', u'adelaid']
[u'account', u'jail', u'fraud']
[u'chief', u'execut', u'remain', u'payrol']
[u'policeman', u'welcom', u'speed', u'camera', u'decis']
[u'winner', u'seek', u'sydney', u'hobart', u'success']
[u'forum', u'put', u'focus', u'gulf', u'fish', u'stock']
[u'arrest', u'jakarta', u'embassi', u'bomb']
[u'fund', u'boost', u'address', u'suburban', u'shortag']
[u'garcia', u'injuri', u'blow', u'liverpool']
[u'goosen', u'grab', u'grand', u'slam', u'lead']
[u'govern', u'urg', u'stop', u'children', u'smoke']
[u'govt', u'deni', u'trade', u'hour', u'referendum', u'compromis']
[u'govt', u'determin', u'disabl', u'pension']
[u'govt', u'probe', u'light', u'patrol']
[u'govt', u'stand', u'elect', u'surgeri', u'shutdown']
[u'govt', u'hold', u'probe', u'state', u'agreement', u'act']
[u'govt', u'age', u'care', u'invest']
[u'govt', u'urg', u'brake', u'plate', u'night', u'plan']
[u'gulf', u'plan', u'worri', u'seafood', u'group']
[u'haddin', u'katich', u'blue', u'lead']
[u'haddin', u'push', u'blue', u'lead']
[u'heritag', u'conserv', u'effort']
[u'hewitt', u'face', u'swedish', u'challeng', u'adelaid']
[u'vaccin', u'discoveri', u'distant', u'research']
[u'hospit', u'helipad', u'fund', u'hold']
[u'properti', u'clark', u'keep', u'ball']
[u'houllier', u'impress', u'chelsea']
[u'hull', u'talk', u'hostel', u'care']
[u'hunter', u'public', u'outlin', u'plan', u'issu']
[u'india', u'tour', u'bangladesh', u'decemb']
[u'indonesian', u'fishermen', u'rescu', u'shipwreck']
[u'indonesian', u'face', u'court', u'illeg', u'fish']
[u'inmat', u'help', u'clean', u'crime']
[u'inquiri', u'order', u'maori', u'spi', u'claim']
[u'inspect', u'mount', u'todd', u'gold']
[u'iranian', u'nuclear', u'program', u'stay']
[u'ireland', u'revert', u'beater', u'puma', u'test']
[u'iron', u'road', u'rage', u'incid']
[u'italian', u'team', u'lampr', u'caffita', u'head']
[u'judgment', u'delay', u'eccleston', u'legal', u'battl']
[u'kalgoorli', u'ask', u'court', u'jail', u'term']
[u'kanpur', u'test', u'end', u'draw']
[u'katich', u'blue', u'chase', u'inning', u'lead']
[u'knight', u'releas', u'wooden', u'fitzgerald']
[u'labor', u'call', u'indigen', u'hous', u'fund']
[u'labor', u'stick', u'close', u'root', u'hawk']
[u'labor', u'warn', u'analysi', u'paralysi']
[u'larder', u'want', u'payback', u'wallabi']
[u'latham', u'dismiss', u'leadership', u'rumour']
[u'latham', u'slam', u'govt', u'disabl', u'pension', u'propos']
[u'lehmann', u'rule', u'retir']
[u'libya', u'reward', u'reject', u'nuke']
[u'lille', u'walk', u'away', u'cricket', u'academi']
[u'lion', u'swan', u'lose', u'locat', u'allow']
[u'livingston', u'shire', u'releas', u'water', u'report']
[u'magistr', u'urg', u'job']
[u'charg', u'chermsid', u'bodi']
[u'charg', u'murder', u'melbourn', u'club']
[u'jail', u'attack']
[u'jail', u'kill', u'aunt']
[u'mayor', u'back', u'close', u'brief']
[u'mayor', u'defend', u'privat', u'fund', u'cotteslo', u'report']
[u'meatwork', u'promis', u'entitl']
[u'meet', u'aim', u'resolv', u'disabl', u'dilemma']
[u'melbourn', u'terror', u'suspect', u'deni', u'bail']
[u'melbourn', u'train', u'face', u'safeti', u'upgrad']
[u'like', u'smoke']
[u'miner', u'trap', u'chines', u'coal']
[u'miss', u'boy']
[u'charg', u'expect', u'shoplift', u'ring']
[u'mornington', u'alcohol', u'ban', u'review']
[u'question', u'region', u'fund', u'scheme']
[u'nation', u'park', u'blaze', u'continu', u'burn']
[u'airport', u'baggag', u'screen', u'unveil']
[u'mast', u'nicorett']
[u'decis', u'alcoholpetrol', u'outlet']
[u'north', u'western', u'tasmania', u'face', u'dentist', u'shortag']
[u'firefight', u'honour', u'canberra', u'fire']
[u'seek', u'oversea', u'skill', u'labour']
[u'tree', u'speci', u'conserv']
[u'boost', u'franklin', u'return']
[u'price', u'surg']
[u'olymp', u'mine', u'deposit', u'larger']
[u'ombudsman', u'seek', u'child', u'abus', u'review', u'extens']
[u'oneil', u'urg', u'aussi', u'talent', u'return', u'home']
[u'onlin', u'casino', u'buy', u'virgin', u'mari', u'sandwich']
[u'outlook', u'good', u'matur', u'bendigo', u'tree']
[u'palmer', u'take', u'aussi', u'great', u'exhibit', u'match']
[u'parent', u'urg', u'rotavirus']
[u'peac', u'india', u'hing', u'kashmir', u'pakistan', u'say']
[u'petrol', u'compani', u'urg', u'lower', u'price']
[u'plan', u'move', u'ahead', u'foreshor', u'referendum']
[u'plan', u'continu', u'busi', u'trader', u'group']
[u'plan', u'predict', u'boost', u'ocean', u'properti', u'price']
[u'plan', u'protocol', u'indigen']
[u'tropic', u'diseas', u'reappear', u'near', u'tedi']
[u'polic', u'investig', u'human', u'remain']
[u'polic', u'hous', u'victim']
[u'polic', u'renew', u'plea', u'help', u'catch', u'girl', u'attack']
[u'polic', u'search', u'miss', u'boy']
[u'polic', u'warn', u'schooli', u'drink', u'spike', u'threat']
[u'port', u'sign', u'rhode', u'mickan', u'backroom', u'staff']
[u'poverti', u'threaten', u'south', u'african', u'secur', u'tutu', u'say']
[u'powerlin', u'blaze', u'compo', u'offer']
[u'protea']
[u'public', u'urg', u'power', u'safe']
[u'public', u'urg', u'offer', u'cemeteri', u'idea']
[u'race', u'minist', u'hear', u'gladston', u'concern']
[u'rain', u'help', u'eas', u'water', u'ban']
[u'real', u'link', u'latest', u'brazilian', u'star']
[u'relief', u'avail', u'hailstorm', u'affect', u'farmer']
[u'reward', u'boost', u'unsolv', u'gold', u'coast', u'crime']
[u'legisl', u'hamper', u'age', u'care', u'plan']
[u'challeng', u'boof', u'battl', u'slow', u'poke']
[u'rise', u'freight', u'cost', u'upsid']
[u'rocki', u'coal', u'push', u'see', u'competit', u'mackay']
[u'russia', u'ditch', u'communist', u'holiday']
[u'russia', u'loom', u'overwhelm', u'favourit']
[u'rwanda', u'threaten', u'attack', u'rebel', u'congo']
[u'blackout', u'rise']
[u'sale', u'patrick', u'white', u'hous', u'postpon']
[u'scheme', u'help', u'youth', u'crime']
[u'schoolgirl', u'attack', u'claim', u'prove', u'fals']
[u'scientist', u'seek', u'unlock', u'reveget', u'secret']
[u'stress', u'quadrupl', u'asthma', u'risk', u'research']
[u'stuart', u'appl', u'booki', u'eye']
[u'tate', u'kennedi', u'expand', u'kangaroo', u'squad']
[u'telstra', u'target', u'wollongong', u'wireless', u'internet']
[u'test', u'suspect', u'murder', u'weapon']
[u'thatcher', u'face', u'south', u'african', u'court']
[u'help', u'power', u'ballarat']
[u'toodyay', u'firm', u'win', u'surg', u'wall', u'contract']
[u'twin', u'polar', u'bear', u'home', u'gold', u'coast']
[u'ukrain', u'demonstr', u'renew', u'street', u'protest']
[u'ukrainian', u'demonstr', u'continu', u'protest']
[u'ukrainian', u'protest', u'confront', u'polic']
[u'uluru', u'close', u'mourn']
[u'union', u'fear', u'suncorp', u'worker', u'health']
[u'iraqi', u'sweep', u'triangl', u'death']
[u'venezuelan', u'bomb', u'suspect', u'die', u'shoot']
[u'veteran', u'news', u'anchor', u'resign']
[u'volcano', u'threat', u'upgrad']
[u'go', u'motion']
[u'warrior', u'dour', u'draw']
[u'warrior', u'draw', u'immin']
[u'wenger', u'contest', u'improp', u'conduct', u'charg']
[u'wheat', u'export', u'reap', u'profit']
[u'survivor', u'work', u'album', u'year']
[u'woman', u'die', u'highway', u'crash']
[u'worker', u'die', u'truck', u'mishap']
[u'worksaf', u'concern', u'ferri', u'safeti']
[u'yachtsman', u'custodi', u'move', u'ship']
[u'yuendumu', u'servic', u'boost']
[u'arm', u'attack', u'teenag', u'polic']
[u'accc', u'revenu', u'transend', u'return']
[u'advoc', u'warn', u'detent', u'centr', u'riot', u'risk']
[u'african', u'nation', u'block', u'motion', u'sudan']
[u'albani', u'urg', u'match', u'govt', u'oval', u'fund']
[u'alcohol', u'relat', u'road', u'death', u'increas']
[u'alic', u'blackout', u'hard', u'prevent']
[u'jazeera', u'launch', u'english', u'languag', u'servic']
[u'ambul', u'servic', u'defend', u'road', u'crash']
[u'anti', u'discrimin', u'complaint', u'rise', u'north']
[u'anti', u'woolworth', u'protest', u'target']
[u'univers', u'melbourn', u'tertiari', u'studi']
[u'arctic', u'state', u'agre', u'small', u'step', u'slow', u'thaw']
[u'armi', u'play', u'soldier']
[u'attempt', u'abduct', u'trigger', u'polic', u'hunt']
[u'aussi', u'unchang', u'adelaid']
[u'australian', u'uni', u'unlik', u'world', u'leader']
[u'australia', u'kick', u'hors', u'race', u'sprint', u'seri']
[u'ballot', u'disput', u'edg', u'ukrain', u'civil']
[u'bank', u'outsourc', u'chequ', u'process']
[u'barn', u'surg', u'surpris', u'open', u'lead']
[u'barnett', u'pledg', u'stamp', u'duti', u'cut']
[u'better', u'fisheri', u'manag', u'timor', u'fisher']
[u'black', u'cap', u'hope', u'host', u'deliv']
[u'boost', u'plan', u'xstrata', u'copper', u'smelter']
[u'border', u'blitz', u'target', u'danger', u'drive']
[u'hurt', u'ambros', u'properti', u'accid']
[u'brack', u'reject', u'clemenc', u'jail', u'unionist']
[u'bradman', u'melbourn', u'wardrob']
[u'branson', u'sink', u'rat']
[u'brazil', u'win', u'approv', u'uranium', u'enrich']
[u'britney', u'beatl', u'memorabilia', u'auction', u'list']
[u'bug', u'enlist', u'fight', u'terror']
[u'bushrang', u'crash', u'embarrass', u'defeat']
[u'bushrang', u'struggl', u'blue']
[u'cabinet', u'kick', u'stockad', u'celebr']
[u'canberra', u'polic', u'trial', u'stun', u'gun', u'marshal']
[u'carr', u'ask', u'hellicar', u'stand', u'advisori']
[u'chalmer', u'forg', u'earli', u'lead']
[u'chariti', u'pocket', u'cash', u'leav', u'jacket']
[u'cholesterol', u'drug', u'benefit', u'outweigh', u'risk', u'doctor']
[u'clark', u'say', u'dollar', u'wind', u'farm', u'definit']
[u'club', u'clear', u'smoke', u'ban', u'impact']
[u'committe', u'investig', u'fadden', u'drug', u'centr']
[u'communiti', u'support', u'see', u'bank', u'open']
[u'concern', u'rais', u'osteopathi', u'cours']
[u'council', u'air', u'bendigo', u'bank', u'fear']
[u'council', u'defend', u'night', u'toilet', u'polici']
[u'council', u'surplus']
[u'council', u'increas', u'water', u'allow']
[u'council', u'remov', u'unsaf', u'lake', u'slide']
[u'council', u'want', u'bruce', u'highway', u'upgrad', u'soon']
[u'court', u'rule', u'bashir', u'trial', u'proceed']
[u'crash', u'prompt', u'rlpb', u'chopper']
[u'dept', u'work', u'contain', u'remot']
[u'desert', u'hold', u'solut', u'china', u'water', u'shortag']
[u'doctor', u'increas', u'fail', u'benefit', u'patient']
[u'doctor', u'speak', u'obstetr', u'servic', u'cut']
[u'domest', u'violenc', u'shelter', u'receiv', u'fund']
[u'downer', u'back', u'skipper', u'self', u'defenc', u'claim']
[u'energi', u'dept', u'coal', u'plan']
[u'england', u'cancel', u'zimbabw', u'flight', u'media']
[u'england', u'hold', u'emerg', u'talk']
[u'england', u'wallabi', u'top', u'weekend', u'final']
[u'kitchen', u'sink', u'council', u'sale']
[u'health', u'board', u'member', u'maintain', u'hospit']
[u'fin', u'ban', u'racial', u'abus', u'york']
[u'farmer', u'warn', u'terror', u'risk']
[u'film', u'industri', u'polic', u'combin', u'tackl', u'piraci']
[u'firefight', u'battl', u'blaze', u'north', u'west']
[u'firefight', u'contain', u'nation', u'park', u'blaze']
[u'firm', u'hop', u'spark', u'desalin']
[u'fisher', u'hear', u'drill', u'plan', u'detail']
[u'fish', u'firm', u'reject', u'tuna', u'farm', u'fear']
[u'flight', u'plan', u'includ', u'airport', u'sale']
[u'franc', u'crush', u'spain', u'reach', u'final']
[u'franc', u'russia', u'edg', u'showdown']
[u'friend', u'relat', u'farewel', u'train', u'accid', u'victim']
[u'fund', u'boost', u'north', u'west', u'hospit']
[u'gene', u'think', u'influenc', u'femal', u'infidel']
[u'gibbon', u'seek', u'senat', u'probe', u'feder', u'fund']
[u'canola', u'crop', u'threat', u'bayer']
[u'cotton', u'plan', u'north', u'west', u'victoria']
[u'gold', u'copper', u'shape']
[u'golden', u'day', u'return', u'telfer']
[u'govern', u'roadwork', u'updat']
[u'govt', u'defend', u'south', u'beach', u'develop', u'process']
[u'govt', u'stand', u'line', u'despit', u'loss']
[u'govt', u'consid', u'sell', u'spirit', u'tasmania']
[u'govt', u'urg', u'giant', u'trawler']
[u'govt', u'win', u'support', u'move', u'swiss', u'account']
[u'graincorp', u'black']
[u'green', u'group', u'join', u'road', u'talk']
[u'hanson', u'forc', u'short', u'cours', u'open']
[u'hardi', u'chief', u'dismiss', u'foundat', u'liquid']
[u'havilah', u'upgrad', u'valu', u'gold', u'copper', u'deposit']
[u'health', u'energex', u'domin', u'parliament']
[u'histor', u'headston', u'undergo', u'restor']
[u'hobbit', u'catch', u'academ', u'crossfir']
[u'holyfield', u'appeal', u'medic', u'suspens']
[u'hospit', u'demolit', u'begin']
[u'india', u'name', u'ganguli', u'appeal', u'permit']
[u'indian', u'charmer', u'threaten', u'unleash', u'snake']
[u'industri', u'continu', u'citrus', u'tree', u'destruct']
[u'intern', u'plaudit', u'coast', u'polar', u'bear']
[u'invest', u'pick', u'tip', u'despit', u'caution']
[u'iraq', u'sunni', u'muslim', u'parti', u'boycott', u'elect']
[u'jail', u'unionist', u'thank', u'protest', u'support']
[u'jone', u'tell', u'super', u'english', u'lesson']
[u'jordan', u'set', u'zarqawi', u'surrend', u'deadlin']
[u'land', u'clear', u'law', u'protect', u'environ', u'minist']
[u'landhold', u'urg', u'remain', u'vigil']
[u'latham', u'remind', u'detractor', u'disun', u'death']
[u'latham', u'tri', u'bulli', u'premier']
[u'law', u'enforc', u'liquor', u'accord', u'penalti']
[u'local', u'liquor', u'accord', u'compulsori']
[u'locust', u'wont', u'cure', u'diabet', u'saudi', u'tell']
[u'profit', u'forc', u'oper', u'south', u'east']
[u'research', u'rank', u'doesnt', u'faze']
[u'magnet', u'beak', u'lead', u'pigeon', u'home']
[u'die', u'kingscliff', u'road', u'crash']
[u'fin', u'illeg', u'fish', u'kakadu']
[u'fin', u'kill', u'croc']
[u'market', u'continu', u'record', u'high']
[u'mexican', u'polic', u'arrest', u'public', u'lynch']
[u'mickelson', u'snare', u'grand', u'slam']
[u'milan', u'barca', u'progress', u'champion', u'leagu']
[u'minist', u'promis', u'resourc', u'combat', u'child']
[u'moder', u'flood', u'like', u'weemelah']
[u'montoya', u'fastest', u'webber', u'fifth', u'test']
[u'mother', u'jail', u'babi', u'daughter', u'death']
[u'mother', u'top', u'survey', u'english', u'beauti', u'word']
[u'motorsport', u'council', u'disput', u'dragway', u'research']
[u'front', u'court', u'shoot']
[u'demand', u'swift', u'report', u'arafat', u'death']
[u'urg', u'support', u'random', u'drug', u'drive', u'test']
[u'urg', u'public', u'transit', u'centr']
[u'nato', u'agre', u'fund', u'train', u'mission', u'iraq']
[u'council', u'allianc', u'boost', u'resourc', u'share']
[u'game', u'figur', u'alarm', u'welfar', u'group']
[u'market', u'pool', u'poor', u'wheat', u'crop']
[u'north', u'korea', u'look', u'signal', u'talk']
[u'verdict', u'reach', u'babi', u'manslaught']
[u'seek', u'strengthen', u'tie', u'timor']
[u'detain', u'children', u'state']
[u'downgrad', u'solomon', u'travel', u'warn']
[u'opposit', u'call', u'answer', u'energex']
[u'opposit', u'question', u'power', u'station', u'viabil']
[u'opposit', u'communiti', u'foundat', u'plan', u'attack']
[u'peacock', u'recov', u'heart', u'surgeri']
[u'pension', u'medicar', u'plus', u'scrap']
[u'petrol', u'sniff', u'outbreak', u'fear', u'indigen']
[u'pinochet', u'asset', u'freez']
[u'pioneer', u'heart', u'diseas', u'research', u'die', u'age']
[u'plan', u'crash', u'land', u'investig']
[u'plan', u'begin', u'medic', u'centr', u'expans']
[u'polic', u'apologis', u'child', u'porn', u'email']
[u'polic', u'hunt', u'attempt', u'child', u'abduct']
[u'polic', u'schooli', u'arrest']
[u'polic', u'offic', u'accident', u'email', u'child', u'porn']
[u'polic', u'plea', u'action', u'prevent', u'domest', u'violenc']
[u'polic', u'reopen', u'probe', u'angela', u'meal', u'death']
[u'politician', u'quiz', u'geraldton', u'issu']
[u'pont', u'hope', u'best', u'windi', u'team', u'tour']
[u'pool', u'oper', u'hour', u'normal']
[u'postal', u'vote', u'flow', u'bendigo', u'poll']
[u'probe', u'continu', u'bendigo', u'stab']
[u'prostat', u'cancer', u'treatment', u'turn', u'gold']
[u'protein', u'help', u'heart', u'attack', u'damag', u'mice']
[u'public', u'hous', u'includ', u'land', u'releas']
[u'public', u'sussex', u'inlet', u'develop']
[u'public', u'vent', u'prison', u'farm', u'worri']
[u'push', u'grow', u'aborigin', u'radio', u'station']
[u'putin', u'meet', u'amid', u'tension', u'ukrain', u'vote']
[u'rail', u'cut', u'report', u'today']
[u'rank', u'put', u'near', u'global', u'research']
[u'rare', u'vase', u'smash', u'museum', u'accid']
[u'real', u'condemn', u'racism', u'deni', u'knowledg', u'chant']
[u'cross', u'make', u'fifth', u'visit', u'saddam']
[u'redknapp', u'quit', u'portsmouth', u'manag']
[u'renmark', u'earmark', u'cotton', u'releas']
[u'rescu', u'chopper', u'wont', u'remot', u'option']
[u'research', u'wave', u'goodby', u'technolog']
[u'resid', u'claim', u'victori', u'nepean', u'river', u'fight']
[u'restrict', u'save', u'month', u'water']
[u'robinson', u'target', u'aussi', u'doubl']
[u'rock', u'expert', u'join', u'death', u'investig']
[u'roger', u'confirm', u'tour']
[u'rooki', u'spinner', u'name', u'bull', u'squad']
[u'govt', u'pass', u'worker', u'right']
[u'secur', u'camera', u'crime']
[u'shire', u'say', u'suffer', u'councillor', u'overload']
[u'slingshot', u'vandal', u'spend', u'month', u'jail']
[u'soar', u'elect', u'cost', u'concern', u'shire']
[u'socceroo', u'pair', u'join', u'newcastl', u'jet']
[u'sorenstam', u'face', u'tiger', u'scott', u'skin', u'showdown']
[u'spain', u'seek', u'clemenc', u'convict', u'afghan', u'killer']
[u'sponsorship', u'disput', u'deplet', u'windi', u'line']
[u'lanka', u'board', u'caution', u'murali', u'comment']
[u'straw', u'hold', u'talk', u'west', u'bank']
[u'stricter', u'exclus', u'zone', u'worri', u'lobster', u'fisher']
[u'student', u'question', u'burn', u'kitten']
[u'swim', u'great', u'back', u'thorp', u'sabbat']
[u'tasmania', u'bailey', u'award', u'menzi', u'scholarship']
[u'taxi', u'reform', u'eas', u'oper', u'restrict']
[u'thatcher', u'trial', u'postpon']
[u'theatr', u'circus', u'featur', u'hobart', u'festiv']
[u'timber', u'firm', u'close']
[u'track', u'profil', u'whale', u'habit']
[u'trio', u'sentenc', u'nightclub', u'fight']
[u'trucki', u'hospit', u'roll']
[u'trundl', u'maintain', u'push', u'doctor', u'resid']
[u'arrest', u'schooli', u'gather']
[u'child', u'killer', u'want']
[u'join', u'effort', u'reviv', u'middl', u'east', u'peac', u'process']
[u'politician', u'launch', u'blair', u'impeach']
[u'troop', u'raid', u'rebel', u'stronghold', u'south', u'baghdad']
[u'unchart', u'rock', u'blame', u'ship', u'damag']
[u'union', u'await', u'find', u'fatal', u'truck', u'mishap']
[u'unionist', u'seek', u'pardon', u'jail', u'leader']
[u'union', u'discuss', u'educ', u'polici']
[u'plagiar', u'woe', u'spark', u'intern', u'debat']
[u'unlicens', u'driver', u'jail', u'crime', u'spree', u'fatal']
[u'probe', u'report', u'rwanda', u'attack']
[u'dollar', u'continu', u'slide']
[u'volcano', u'erupt', u'forc', u'evacu']
[u'chang', u'save']
[u'wallabi', u'match', u'english', u'muscl']
[u'warn', u'threat', u'loom', u'beleagu', u'kiwi']
[u'wast', u'dump', u'environment', u'effect', u'guidelin']
[u'woodward', u'watch', u'french', u'prepar']
[u'workshop', u'prepar', u'agenc', u'disast']
[u'work', u'start', u'rail', u'cross', u'bridg']
[u'zeffirelli', u'award', u'honorari', u'british', u'knighthood']
[u'zimbabw', u'lift', u'cricket', u'journalist']
[u'offer', u'communiti', u'base', u'project']
[u'kill', u'fallujah', u'offens']
[u'activist', u'accus', u'incit', u'detent', u'centr']
[u'releas', u'preseason', u'draw']
[u'claim', u'proper', u'approv', u'bush', u'centr']
[u'appeal', u'court', u'tell', u'babi', u'killer', u'sentenc', u'barbar']
[u'showcas', u'indigen', u'tourism']
[u'asean', u'host', u'lao', u'emerg', u'shadow']
[u'asean', u'pressur', u'emptiv', u'strike', u'polici']
[u'asean', u'treati', u'push', u'spark', u'word']
[u'aussi', u'lose', u'hayden']
[u'aussi', u'reach', u'lunch', u'loss']
[u'australia', u'bat', u'adelaid']
[u'australian', u'luxuri', u'properti']
[u'author', u'arthur', u'hailey', u'die']
[u'autopsi', u'driver']
[u'award', u'honour', u'effort', u'curb', u'domest', u'violenc']
[u'backpack', u'fin', u'shrine', u'vandal']
[u'backyard', u'explor', u'plan', u'upset', u'orbost']
[u'ballina', u'marina', u'plan']
[u'bayley', u'crown', u'stellar', u'year', u'oppi']
[u'beach', u'closur', u'spark', u'union', u'lifeguard', u'talk']
[u'benitez', u'face', u'role', u'model', u'wenger']
[u'bhoy', u'look', u'barcelona', u'bounc']
[u'billiton', u'river', u'mine']
[u'crowd', u'rememb', u'asbesto', u'victim']
[u'crowd', u'tip', u'wodonga']
[u'toughen', u'tasmania', u'famili', u'violenc', u'law']
[u'blix', u'play', u'chemic', u'laboratori', u'claim']
[u'bone', u'year', u'mysteri']
[u'british', u'radio', u'program', u'focus', u'bush', u'bachelor']
[u'break', u'hill', u'deposit', u'rais', u'hop']
[u'brush', u'tail', u'wallabi', u'program', u'get', u'recruit']
[u'burma', u'free', u'prison']
[u'bark', u'highway', u'revamp']
[u'campaign', u'target', u'bendigo', u'drink', u'drive']
[u'canberra', u'hous', u'price', u'downward', u'slide']
[u'cathol', u'church', u'weigh', u'abort', u'debat']
[u'centrelink', u'probe', u'albani', u'fraud']
[u'charg', u'drop', u'john', u'stalk', u'case']
[u'child', u'abus', u'investig', u'month']
[u'club', u'foot', u'court', u'stoush']
[u'cobar', u'face', u'dental', u'wait']
[u'colonel', u'add', u'sauc', u'award']
[u'council', u'invest', u'condamin', u'guid', u'boat', u'tour']
[u'council', u'finish', u'secess', u'plan']
[u'council', u'seek', u'oliv', u'grove', u'soil', u'sampl']
[u'counter', u'strike', u'robber', u'guilti', u'murder']
[u'countri', u'music', u'buff', u'prepar', u'launch', u'tamworth']
[u'coupl', u'offer', u'care', u'displac']
[u'court', u'dismiss', u'indonesian', u'girl', u'visa']
[u'court', u'reserv', u'decis', u'babi', u'killer', u'appeal']
[u'court', u'hear', u'truck', u'stop', u'opposit']
[u'croc', u'hope', u'turn', u'wildcat', u'record']
[u'darwin', u'rememb', u'cyclon', u'traci']
[u'dept', u'investig', u'alleg', u'boy', u'casino']
[u'develop', u'ask', u'excav', u'park']
[u'digger', u'club', u'plan', u'revamp']
[u'doctor', u'increas', u'fail', u'benefit']
[u'doctor', u'group', u'beat', u'litig', u'law']
[u'dog', u'determin', u'pay', u'graduat']
[u'driver', u'urg', u'shop', u'cheapest', u'fuel']
[u'worker', u'walk']
[u'kill', u'chines', u'high', u'school', u'knife', u'attack']
[u'einstein', u'essay', u'sell']
[u'england', u'arriv', u'zimbabw']
[u'question', u'impact', u'wind', u'farm']
[u'timor', u'lose', u'faith', u'talk']
[u'aim', u'ukrain', u'crisi']
[u'falconio', u'case', u'evid', u'examin']
[u'fallujah', u'rebel', u'claim', u'regroup']
[u'father', u'guilti', u'partner', u'murder']
[u'father', u'jail', u'lure', u'teen', u'internet']
[u'father', u'prais', u'son', u'abduct', u'fight']
[u'feder', u'fund', u'beef', u'meatwork', u'oper']
[u'fisher', u'propos', u'permit']
[u'fisher', u'discuss', u'loom', u'tabl', u'fish', u'shortag']
[u'ford', u'stand', u'elect', u'debat', u'challeng']
[u'freez', u'extend', u'fisheri', u'boat']
[u'prison', u'releas', u'slat', u'burma']
[u'gang', u'rapist', u'sentenc', u'year', u'jail']
[u'giardia', u'case', u'rise']
[u'gold', u'coast', u'pois', u'russian', u'invas']
[u'govt', u'close', u'finalis', u'narungga', u'compo']
[u'govt', u'get', u'activ', u'boost', u'student', u'fit']
[u'govt', u'push', u'ahead', u'airspac', u'plan']
[u'govt', u'urg', u'address', u'age', u'popul', u'impact']
[u'govt', u'urg', u'rail', u'servic', u'track']
[u'green', u'aust', u'secur', u'contract']
[u'hain', u'farewel', u'strain', u'strauss']
[u'henri', u'piersol', u'splash', u'melbourn']
[u'howard', u'reject', u'asean', u'aggress', u'treati']
[u'howard', u'forc', u'jam', u'hardi', u'carr']
[u'howard', u'warn', u'fall', u'dollar', u'export']
[u'hundr', u'film', u'lose', u'bangladesh']
[u'hunter', u'face', u'whoop', u'cough', u'outbreak']
[u'hurst', u'surf']
[u'icac', u'hold', u'orang', u'grove', u'public', u'hear']
[u'immigr', u'raid', u'net', u'illeg', u'worker']
[u'indonesia', u'free', u'australian', u'hold', u'death']
[u'indonesian', u'quak', u'rock', u'darwin', u'cairn']
[u'iran', u'seek', u'exempt', u'nuclear', u'deal']
[u'iraqi', u'minist', u'claim', u'troop', u'discov', u'chemic']
[u'iraq', u'canberra', u'embassi', u'open']
[u'israel', u'downplay', u'meet', u'hama']
[u'isra', u'soldier', u'kill', u'palestinian', u'milit']
[u'italian', u'race', u'shame', u'overshadow', u'uefa']
[u'jail', u'fatah', u'leader', u'palestinian']
[u'jone', u'blow', u'time', u'refere', u'talk']
[u'jone', u'break', u'commonwealth', u'record', u'melbourn']
[u'kalbarri', u'await', u'student', u'influx']
[u'bayley', u'eye', u'dutch', u'grudg', u'match']
[u'kilkenni', u'factori', u'caus', u'damag']
[u'labor', u'latham', u'rudd']
[u'langer', u'close', u'centuri']
[u'langer', u'lead', u'charg']
[u'langer', u'notch', u'aussi', u'build', u'total']
[u'langer', u'star', u'aussi', u'control']
[u'latham', u'expect', u'sack', u'conroy']
[u'latrob', u'name', u'tasmania', u'tidiest', u'town']
[u'liber', u'ask', u'explain', u'media', u'virus', u'plan']
[u'lightn', u'think', u'caus', u'nation', u'park']
[u'lion', u'scent', u'kangaroo', u'blood']
[u'littl', u'pebbl', u'face', u'assault', u'trial']
[u'locust', u'grind', u'aerial', u'display']
[u'long', u'term', u'care', u'disabl', u'review']
[u'profil', u'polic', u'help', u'control', u'schooli']
[u'maleni', u'resid', u'protest', u'woolworth']
[u'mandela', u'launch', u'anti', u'aid', u'concert', u'book']
[u'back', u'windi', u'ridicul', u'board']
[u'minist', u'reject', u'power', u'station', u'viabil', u'claim']
[u'minist', u'stay', u'papunya', u'disput']
[u'minist', u'beat', u'murray', u'flow']
[u'mobil', u'phone', u'boost', u'bellingen']
[u'moon', u'solv', u'earth', u'energi', u'crisi']
[u'mother', u'talk', u'realiti', u'teenag', u'pregnanc']
[u'myskina', u'stand', u'firm', u'sharapova', u'feud']
[u'natur', u'caus', u'fish', u'kill']
[u'armi', u'helicopt', u'undergo', u'test']
[u'board', u'member']
[u'gatton', u'look', u'forward', u'task']
[u'hospit', u'plan', u'draw', u'critic']
[u'nurs', u'accept', u'offer', u'hospit', u'workload']
[u'opposit', u'highlight', u'school', u'repair', u'woe']
[u'opposit', u'seek', u'resign', u'casino', u'boy']
[u'opsm', u'posit', u'remain', u'share']
[u'oversea', u'adopt', u'reach', u'year', u'high']
[u'pakistani', u'militari', u'find', u'sign', u'lade']
[u'pakistan', u'akhtar', u'optimist', u'australia', u'tour']
[u'palm', u'island', u'crisi', u'eas']
[u'pampl', u'take', u'halfway', u'lead']
[u'papua', u'earthquak', u'kill']
[u'papua', u'earthquak', u'kill']
[u'parliament', u'anti', u'kimberley', u'water', u'plan']
[u'peacock', u'recov', u'heart', u'surgeri']
[u'pedestrian', u'hurt', u'intersect', u'mishap']
[u'plan', u'continu', u'tree', u'supermarket']
[u'happi', u'meet', u'indigen', u'campaign', u'long']
[u'happi', u'meet', u'long']
[u'vow', u'hardi', u'meet', u'legal', u'oblig']
[u'podiatrist', u'shortag', u'impact', u'older', u'peopl']
[u'polic', u'associ', u'highlight', u'offic', u'shortag']
[u'polic', u'blunder', u'see', u'school', u'email', u'child', u'porn']
[u'polic', u'chief', u'clarifi', u'meet', u'absenc']
[u'polic', u'identifi', u'shoot', u'suspect']
[u'polic', u'issu', u'danger', u'drug', u'warn']
[u'polic', u'reflect', u'troubl', u'free', u'schooli']
[u'polic', u'scrutinis', u'schooli', u'celebr']
[u'polic', u'unhappi', u'public']
[u'poor', u'hous', u'spread', u'rheumat', u'fever', u'studi']
[u'port', u'neill', u'power']
[u'promis', u'outlook', u'late', u'rice', u'crop']
[u'promis', u'start', u'tiger', u'look', u'good']
[u'protest', u'nurs', u'vote', u'hunter', u'health', u'plan']
[u'public', u'upset', u'ambul', u'reloc', u'process']
[u'consid', u'port', u'charg', u'submiss']
[u'communiti', u'australian', u'militari']
[u'parliament', u'end', u'year', u'jolli', u'note']
[u'racist', u'chant', u'overshadow', u'lazio', u'draw']
[u'racv', u'question', u'speed', u'camera', u'accuraci']
[u'remot', u'hous', u'cost']
[u'report', u'highlight', u'hous', u'shortcom']
[u'research', u'tackl', u'holi', u'grail', u'code']
[u'research', u'highlight', u'biodivers', u'dampier']
[u'resourc', u'stock', u'lead', u'market', u'high']
[u'restrict', u'lift', u'ukrain', u'channel']
[u'rioter', u'burn', u'palm', u'polic', u'station']
[u'rise', u'dollar', u'cut', u'export', u'margin']
[u'rise', u'temperatur', u'rais', u'fear']
[u'road', u'upgrad', u'need', u'sugar', u'industri', u'deregul']
[u'russia', u'franc', u'storm', u'final']
[u'samarra', u'bomb', u'attack', u'kill', u'wind']
[u'schoolgirl', u'killer', u'parol', u'revok']
[u'schooli', u'celebr', u'troubl', u'free']
[u'schooli', u'urg', u'stay', u'behav']
[u'seafood', u'industri', u'critic', u'reef', u'closur']
[u'second', u'legionnair', u'settlement', u'approv']
[u'second', u'suspect', u'kill', u'venezuela', u'bomb', u'probe']
[u'secur', u'guard', u'charg', u'firearm', u'offenc']
[u'separatist', u'blow', u'line', u'soldier', u'injur']
[u'shire', u'back', u'resort', u'plan']
[u'sister', u'urg', u'murder', u'releas']
[u'smelli', u'blame', u'health', u'woe']
[u'spain', u'accus', u'guantanamo', u'style', u'detent']
[u'speargun', u'shoot', u'bring', u'suspend', u'jail', u'term']
[u'spirit', u'democraci', u'debat', u'eureka']
[u'state', u'territori', u'urg', u'disabl', u'care']
[u'state', u'urg', u'recommit', u'water', u'initi']
[u'streetscap', u'work', u'aim', u'boost', u'traffic', u'flow']
[u'student', u'effort', u'adorn', u'christma', u'card']
[u'swanbourn', u'school', u'suspici']
[u'tasmania', u'join', u'world', u'seed', u'program']
[u'technic', u'glitch', u'leav', u'public', u'dark']
[u'tender', u'seek', u'pump', u'station']
[u'test', u'vine', u'okay', u'class', u'wine']
[u'think', u'tank', u'want', u'warn', u'label']
[u'thousand', u'expect', u'kannamaroo', u'festiv']
[u'time', u'add', u'paedophil', u'sentenc']
[u'time', u'run', u'council', u'elect', u'vote']
[u'fish', u'limit', u'review']
[u'tourist', u'arduous', u'field']
[u'traffic', u'polic', u'investig', u'driverless']
[u'trucki', u'remind', u'interchang', u'limit']
[u'arrest', u'drug', u'bust']
[u'small', u'bomb', u'rock', u'lao']
[u'stab', u'liverpool', u'fight']
[u'uefa', u'probe', u'real', u'racism', u'claim']
[u'arrest', u'aid', u'hostag', u'releas']
[u'ukrain', u'opposit', u'support', u'surround']
[u'dollar', u'continu', u'slide']
[u'verdict', u'epilept', u'driver', u'serv']
[u'govt', u'adopt', u'inquiri', u'recommend']
[u'water', u'concern', u'flow', u'cotton', u'plan']
[u'water', u'fund', u'fight', u'delay', u'murray', u'project']
[u'westburi', u'hagley', u'bypass', u'disput', u'take', u'twist']
[u'woman', u'die', u'crash']
[u'woolworth', u'predict', u'profit', u'growth']
[u'yudhoyono', u'call', u'halt', u'aceh', u'violenc']
[u'charg', u'palm', u'island', u'riot']
[u'free', u'room', u'mari', u'joseph']
[u'aftershock', u'shake', u'papuan', u'provinc']
[u'concern', u'wait', u'list', u'prune']
[u'asian', u'minist', u'urg', u'howard', u'sign', u'treati']
[u'aussi', u'advanc', u'round', u'sunset', u'beach']
[u'aussi', u'massiv', u'total']
[u'australia', u'lag', u'onlin', u'geographi', u'quiz']
[u'australia', u'post', u'deni', u'rural', u'agenc', u'unviabl']
[u'baghdad', u'bomb', u'kill']
[u'bayley', u'crown', u'stellar', u'year', u'oppi']
[u'bird', u'see', u'greatest', u'pandem', u'risk']
[u'black', u'cap', u'face', u'mountain', u'challeng']
[u'black', u'cap', u'troubl', u'chase', u'begin']
[u'boy', u'bodi', u'lake']
[u'builder', u'consid', u'cross', u'train', u'apprentic']
[u'burma', u'prison', u'releas', u'complet', u'sourc']
[u'bushfir', u'sweep', u'hectar']
[u'bush', u'weigh', u'ireland', u'peac', u'process']
[u'china', u'approv', u'test', u'potenti', u'aid', u'vaccin']
[u'china', u'free', u'jail', u'dissid', u'earli']
[u'chines', u'polic', u'arrest', u'school', u'stab', u'suspect']
[u'chirac', u'urg', u'resumpt', u'ivori', u'coast', u'peac', u'talk']
[u'christma', u'parad', u'adopt', u'true', u'blue', u'theme']
[u'civic', u'rejuven', u'need', u'long', u'term', u'view', u'corbel']
[u'court', u'battl', u'loom', u'kazaa']
[u'cyclist', u'great', u'ocean', u'road']
[u'deceas', u'palm', u'island', u'man', u'famili', u'speak']
[u'depart', u'uphold', u'year', u'student', u'suspens']
[u'detain', u'yachtsmen', u'await', u'decis', u'fate']
[u'disgrac', u'bulgarian', u'face', u'olymp', u'expuls']
[u'elvi', u'live', u'canberra']
[u'england', u'tindal', u'battl']
[u'erupt', u'forc', u'island', u'flee']
[u'ansett', u'worker', u'renew', u'entitl', u'call']
[u'finit', u'fuel', u'threaten', u'life', u'know']
[u'destroy', u'power', u'transform']
[u'shanghai', u'shipment', u'darwin']
[u'fitzgibbon', u'bench', u'nation', u'crunch']
[u'flat', u'india', u'face', u'heat']
[u'flintoff', u'get', u'ring']
[u'secur', u'guard', u'kill', u'baghdad', u'attack']
[u'french', u'report', u'reach', u'hostag']
[u'garrett', u'collaps', u'sydney', u'beach']
[u'garrett', u'releas', u'hospit']
[u'general', u'advoc', u'bold', u'move', u'rout', u'terrorist']
[u'gilchrist', u'guid', u'australia']
[u'govern', u'deni', u'deal', u'driver', u'train']
[u'govt', u'rule', u'fish', u'quota', u'compens']
[u'group', u'say', u'mental', u'health', u'servic', u'miss', u'third']
[u'gulpilil', u'honour', u'australian', u'year']
[u'hanson', u'quit', u'short', u'cours', u'campaign']
[u'helicopt', u'ground', u'hamper', u'locust', u'fight']
[u'wit', u'seek']
[u'hospit', u'staff', u'treat', u'follow', u'chemic', u'spill']
[u'human', u'societi', u'seek', u'measur', u'protect']
[u'lift', u'ganguli']
[u'iran', u'say', u'honour', u'enrich', u'suspens']
[u'iraqi', u'parti', u'push', u'elect', u'delay']
[u'island', u'leader', u'prevent', u'riot', u'beatti']
[u'jail', u'fatah', u'leader']
[u'judg', u'beatl', u'esqu', u'rule', u'anger', u'famili']
[u'juventus', u'club', u'doctor', u'jail', u'dope']
[u'landmark', u'risk', u'love', u'death']
[u'langer', u'hit', u'doubl']
[u'langer', u'hit', u'doubl', u'aussi', u'build', u'total']
[u'langer', u'play', u'hayden', u'walk']
[u'leisel', u'set', u'commonwealth', u'record']
[u'lenton', u'take', u'fourth']
[u'lifesav', u'volunt', u'patrol']
[u'drown', u'perth', u'beach']
[u'martial', u'art', u'spar', u'golf', u'china', u'olymp']
[u'melbourn', u'win', u'head', u'yarra']
[u'motorcyclist', u'kill', u'collis']
[u'muslim', u'lifestyl', u'channel', u'launch']
[u'nauru', u'million', u'windfal']
[u'record', u'icon', u'pianist', u'unearth']
[u'ningaloo', u'marin', u'park', u'extend']
[u'nurs', u'aim', u'increas', u'organ', u'donat']
[u'price', u'stabilis', u'suppli', u'fear', u'remain']
[u'organ', u'report', u'card', u'predict', u'growth']
[u'pacif', u'student', u'celebr', u'homebush']
[u'palestinian', u'dismantl', u'death', u'group', u'militia']
[u'palm', u'island', u'help', u'identifi', u'rioter']
[u'pampl', u'hold', u'slender', u'aust', u'open', u'lead']
[u'polic', u'seek', u'help', u'miss']
[u'polic', u'seek', u'semi', u'trailer', u'fatal', u'accid']
[u'polic', u'suggest', u'island', u'riot', u'plan']
[u'polic', u'underestim', u'palm', u'island', u'crisi']
[u'rann', u'announc', u'health', u'boost']
[u'research', u'herald', u'recycl', u'water']
[u'resid', u'ask', u'prepar', u'plan', u'earli']
[u'riot', u'plan', u'palm', u'leader']
[u'govt', u'consid', u'energi', u'summit']
[u'schoolgirl', u'killer', u'abl', u'appeal', u'parol', u'decis']
[u'schooli', u'behaviour', u'win', u'prais']
[u'schooli', u'secur', u'satisfi', u'attack', u'victim', u'father']
[u'senat', u'urg', u'join', u'long', u'walk']
[u'senat', u'urg', u'join', u'reconcili', u'walk']
[u'senat', u'urg', u'prong', u'approach', u'health', u'care']
[u'korea', u'welcom', u'iaea', u'rule', u'atom', u'experi']
[u'south', u'african', u'jail', u'year', u'coup']
[u'sport', u'club', u'investig', u'poki', u'encourag']
[u'sprinter', u'prepar', u'queanbeyan', u'gift']
[u'steadi', u'pampl', u'hold', u'australian', u'open', u'lead']
[u'stiffer', u'fin', u'like', u'driver', u'mobil']
[u'student', u'sing', u'pink', u'floyd', u'chase', u'royalti']
[u'survey', u'deep', u'confirm', u'border']
[u'suspici', u'damag', u'factori']
[u'ferri', u'chief', u'confid', u'profit']
[u'tasmanian', u'bankruptci']
[u'teenag', u'crash', u'driver', u'blood', u'alcohol', u'limit']
[u'road', u'accid']
[u'tourism', u'award', u'reflect', u'queensland', u'divers']
[u'tourist', u'town', u'celebr', u'birthday']
[u'tragic', u'tale', u'win', u'inaugur', u'indigen', u'write', u'award']
[u'kill', u'light', u'plane', u'crash']
[u'ukrain', u'parliament', u'debat', u'disput', u'elect']
[u'ukrain', u'presidenti', u'contend', u'meet', u'mediat']
[u'ukrain', u'opposit', u'leader', u'push', u'fresh', u'vote']
[u'ukrain', u'call', u'mass', u'protest']
[u'ukrainian', u'candid', u'renounc', u'violenc']
[u'ukrainian', u'polic', u'join', u'protest']
[u'univers', u'music', u'trial', u'digit', u'servic']
[u'urg', u'review', u'foreign', u'suspect', u'detent']
[u'urin', u'caus', u'bridg', u'collaps']
[u'ambassador', u'stick', u'januari', u'iraq', u'poll', u'date']
[u'captur', u'insurg', u'suspect', u'south', u'baghdad']
[u'desert', u'releas', u'japanes', u'prison']
[u'stock', u'edg', u'higher', u'trade']
[u'visit', u'media', u'urg', u'expos', u'lao', u'right', u'abus']
[u'polic', u'offic', u'kill', u'smash']
[u'welsh', u'massacr', u'hapless', u'japan']
[u'wildcat', u'lose', u'croc']
[u'worker', u'stumbl', u'decompos', u'bodi']
[u'approv', u'trade', u'sanction']
[u'zimmer', u'break', u'backstrok', u'record']
[u'abba', u'frontrunn', u'replac', u'arafat']
[u'actor', u'vanessa', u'redgrav', u'launch', u'polit', u'parti']
[u'adventur', u'hillari', u'object', u'road']
[u'airlin', u'reconsid', u'freight', u'servic']
[u'aqsa', u'brigad', u'endors', u'abba', u'palestinian']
[u'ambul', u'servic', u'say', u'assault', u'pressur']
[u'anglican', u'urg', u'eas', u'critic']
[u'anniversari', u'parti', u'celebr', u'liber', u'success']
[u'asean', u'member', u'urg', u'tourist']
[u'asean', u'want', u'burma', u'membership', u'strip']
[u'aussi', u'hussein', u'lose', u'titl', u'fight']
[u'aussi', u'turn', u'heat']
[u'ballarat', u'crash', u'take', u'road', u'toll']
[u'barca', u'extend', u'spanish', u'lead']
[u'beach', u'drown', u'prompt', u'summer', u'warn']
[u'beatti', u'tour', u'palm', u'island']
[u'birdse', u'wed', u'dress', u'featur', u'darwin']
[u'black', u'cap']
[u'bok', u'dismantl', u'woeful', u'scot']
[u'arrow', u'smuggl', u'mobil', u'phone']
[u'breaker', u'snap', u'lose', u'streak', u'lightn', u'strike']
[u'bushland', u'spark', u'murder', u'investig']
[u'busi', u'leader', u'regular', u'darwin', u'trade']
[u'canadian', u'activist', u'polar', u'bear', u'export']
[u'carter', u'gun', u'french', u'black', u'romp']
[u'chelsea', u'gear']
[u'colombia', u'reveal', u'bush', u'assassin', u'plot']
[u'conroy', u'head', u'latham', u'apolog']
[u'cord', u'blood', u'stem', u'cell', u'cure', u'paralysi']
[u'costello', u'look', u'forward', u'long', u'meet']
[u'costello', u'promis', u'look', u'long']
[u'council', u'test', u'park', u'death']
[u'crafti', u'cassano', u'inspir', u'resurg', u'roma']
[u'cyclist', u'tackl', u'rid', u'toughest']
[u'darwin', u'convent', u'centr', u'work', u'begin', u'march']
[u'disabl', u'need', u'network', u'care']
[u'downer', u'expect', u'progress', u'asian', u'free', u'trade']
[u'driver', u'warn', u'watch', u'grain', u'vehicl']
[u'earthquak', u'let', u'volcano', u'blow', u'steam']
[u'edmiston', u'lead', u'final', u'aussi', u'charg', u'pool']
[u'england', u'teach', u'pain', u'lesson', u'say', u'robinson']
[u'explos', u'trap', u'chines']
[u'father', u'die', u'plane', u'crash']
[u'chang', u'victorian', u'council', u'elect']
[u'fleme', u'lead', u'fight']
[u'foresti', u'union', u'consid', u'blacklist', u'labor']
[u'frontbench', u'criticis', u'elect']
[u'rescu', u'china', u'explos']
[u'french', u'polynesia', u'hold', u'elect']
[u'girl', u'repeat', u'sexual', u'assault']
[u'gold', u'coast', u'athlet', u'shine', u'ironman']
[u'govt', u'deni', u'asian', u'tie', u'risk']
[u'govt', u'flag', u'possibl', u'trawl', u'fisheri', u'restructur']
[u'govt', u'pledg', u'rural', u'sight', u'hear']
[u'green', u'propos', u'hardi', u'share', u'levi']
[u'hike', u'counter', u'product', u'costello']
[u'hayden', u'reach', u'mileston', u'fourth', u'year']
[u'hostel', u'upgrad', u'improv', u'youth', u'servic']
[u'weather', u'spark', u'season', u'warn']
[u'hous', u'sector', u'predict', u'solid', u'growth']
[u'hurst', u'prove', u'ironman']
[u'india', u'south', u'africa', u'despit', u'kalli']
[u'indigen', u'leader', u'funer', u'prompt', u'uluru', u'closur']
[u'indonesian', u'ralli', u'fallujah', u'assault']
[u'indonesian', u'troop', u'kill', u'rebel', u'aceh', u'militari']
[u'iraqi', u'powerbrok', u'reject', u'elect', u'delay']
[u'iraq', u'raid', u'suspect', u'insurg']
[u'ireland', u'accus', u'argentina', u'player', u'goug']
[u'japan', u'win', u'back', u'secur', u'council']
[u'kangaroo', u'romp', u'seri']
[u'kangaroo', u'punish', u'patriot', u'punter', u'purs']
[u'kiwi', u'fight', u'warn', u'vettori']
[u'lenton', u'neethl', u'swimmer', u'meet']
[u'lonard', u'claim', u'australian', u'open', u'titl']
[u'lonard', u'take', u'control', u'australian', u'open']
[u'macklin', u'confid', u'labor', u'feud']
[u'die', u'truck', u'smash']
[u'melbourn', u'ukrainian', u'protest', u'elect', u'result']
[u'mexican', u'polic', u'chief', u'fire', u'agent', u'lynch']
[u'motorcycl', u'gunman', u'kill', u'philippin', u'photojournalist']
[u'murali', u'clear', u'resum', u'train']
[u'muslim', u'centr', u'offer', u'educ', u'social', u'activ']
[u'myilli', u'point', u'resid', u'maintain', u'develop', u'protest']
[u'myskina', u'keep', u'russian', u'hop', u'aliv']
[u'zealand', u'allow', u'minor', u'crimin', u'buri']
[u'beef', u'water', u'polic']
[u'mark', u'anniversari', u'antarct', u'plane', u'disast']
[u'ogara', u'seal', u'gasp', u'ireland']
[u'opposit', u'rais', u'concern', u'hospit', u'procedur']
[u'pacemen', u'australia', u'power', u'posit']
[u'pakistan', u'ban', u'hurt', u'public']
[u'palestinian', u'hold', u'legisl', u'poll', u'abba']
[u'palm', u'resid', u'criticis', u'polic', u'tactic']
[u'parisian', u'march', u'domest', u'violenc']
[u'plane', u'search', u'fail', u'miss']
[u'polic', u'deni', u'heavi', u'hand', u'approach', u'palm']
[u'polic', u'hunt', u'arm', u'robber']
[u'polic', u'investig', u'offic', u'death', u'smash']
[u'polic', u'investig', u'overnight', u'road', u'accid']
[u'policeman', u'kill', u'colleagu', u'kashmir']
[u'pope', u'return', u'steal', u'relic', u'ecumen', u'orthodox']
[u'port', u'arthur', u'walk', u'heritag', u'tourism', u'tightrop']
[u'rain', u'chanc', u'zealand']
[u'crescent', u'fight', u'offer']
[u'research', u'build', u'case', u'aneurysm', u'screen']
[u'research', u'earli', u'intervent', u'scheme']
[u'rise', u'dollar', u'hit', u'wool', u'produc']
[u'rival', u'camp', u'discuss', u'ukrainian', u'polit', u'crisi']
[u'robinson', u'win', u'queanbeyan', u'gift']
[u'rollerblad', u'compens', u'uphold']
[u'rspca', u'applaud', u'effort', u'livestock', u'heat', u'stress']
[u'float', u'marin', u'protect', u'blueprint']
[u'sar', u'vaccin', u'trial', u'near', u'complet']
[u'saudi', u'author', u'kill', u'suspect', u'milit']
[u'scienc', u'academi', u'seek', u'recherch', u'protect']
[u'senat', u'step', u'push', u'mandatori', u'class']
[u'sharon', u'abba', u'readi', u'meet']
[u'sixer', u'wildcat', u'share', u'second', u'spot']
[u'small', u'busi', u'advocaci', u'chang', u'good', u'sign']
[u'sorenstam', u'birdi', u'cost', u'scott', u'dear']
[u'speed', u'train', u'kill', u'central', u'india']
[u'spong', u'fish', u'bring', u'cultur']
[u'studi', u'collat', u'bird', u'impact', u'crop']
[u'sudan', u'lift', u'restrict', u'north', u'darfur']
[u'swiss', u'firefight', u'kill', u'park', u'collaps']
[u'tamil', u'tiger', u'threaten', u'violenc', u'deadlock']
[u'busi', u'welcom', u'plan', u'workplac', u'chang']
[u'tasmania', u'celebr', u'year', u'music']
[u'outlin', u'sport', u'spend']
[u'teenag', u'face', u'excav', u'damag', u'charg']
[u'teen', u'arrest', u'schooli', u'festiv']
[u'tidbinbilla', u'come', u'life']
[u'tight', u'budget', u'increas', u'wait', u'list', u'surgeon']
[u'toad', u'tip', u'indigen', u'food', u'sourc']
[u'trade', u'bloc', u'deal', u'benefit', u'busi']
[u'tradit', u'power', u'fuel', u'aid', u'epidem']
[u'parramatta', u'jailbreak']
[u'typhoon', u'flood', u'kill', u'vietnam']
[u'minist', u'blunkett', u'deni', u'fast', u'track', u'visa']
[u'ukrain', u'crisi', u'talk', u'stall', u'say', u'outgo']
[u'ukrainian', u'declar', u'vote', u'invalid']
[u'ukrainian', u'parliament', u'leader', u'propos', u'declar']
[u'coast', u'guard', u'battl', u'spill']
[u'forc', u'work', u'saddam', u'commando']
[u'vietnam', u'flood', u'toll', u'rise']
[u'govt', u'announc', u'smoke', u'ban']
[u'wallabi', u'twickenham', u'thriller']
[u'mart', u'warn', u'overshadow', u'holiday', u'sale', u'figur']
[u'walsh', u'hawaii', u'punter', u'stump']
[u'smoke', u'win', u'wide', u'prais']
[u'water', u'polic', u'upgrad', u'terror', u'fight']
[u'quit', u'meet', u'mugab', u'warn', u'england']
[u'quit', u'tour', u'meet', u'mugab', u'warn']
[u'whale', u'dolphin', u'coast']
[u'woolmer', u'talk', u'pakistan', u'chanc', u'australia']
[u'inject', u'generat', u'plant', u'plan']
[u'academ', u'question', u'age', u'report']
[u'water', u'restrict', u'stay']
[u'aggress', u'sehwag', u'lead', u'indian', u'repli']
[u'aid', u'awar', u'put', u'focus', u'women']
[u'albanes', u'urg', u'union', u'join', u'forestri', u'debat']
[u'albani', u'long', u'wait', u'dentist', u'near']
[u'algal', u'bloom', u'pose', u'danger', u'health', u'dept']
[u'angri', u'scene', u'palm', u'court', u'hear']
[u'anim', u'activist', u'want', u'live', u'like']
[u'arafat', u'death', u'certif', u'prompt', u'complaint']
[u'arch', u'rival', u'clash', u'leagu']
[u'asian', u'leader', u'press', u'aust', u'secur', u'pact']
[u'aussi', u'open', u'embrac', u'asia']
[u'aussi', u'build', u'lead', u'lose', u'open']
[u'aussi', u'massiv', u'total']
[u'australia', u'verg', u'clean', u'sweep']
[u'aust', u'share', u'record', u'high']
[u'award', u'recognis', u'whitsunday', u'tourism']
[u'backpack', u'face', u'deport', u'anzac']
[u'beatti', u'highlight', u'china', u'export', u'import']
[u'bell', u'guid', u'england', u'comfort']
[u'bendigo', u'colleg', u'energis', u'win', u'way']
[u'black', u'cap', u'stumbl', u'defeat']
[u'black', u'cap', u'deep', u'troubl']
[u'black', u'cap', u'stumbl', u'defeat']
[u'blaze', u'rip', u'hectar', u'bushland']
[u'blaze', u'affect', u'recycl', u'collect']
[u'bodi', u'river', u'miss', u'parti', u'goer']
[u'bok', u'domin', u'award']
[u'bowditch', u'upbeat', u'australian']
[u'british', u'home', u'secretari', u'deni', u'abus', u'posit']
[u'brogden', u'say', u'plan', u'water', u'polic', u'upgrad']
[u'break', u'hill', u'woman', u'die', u'crash']
[u'broom', u'celebr', u'histori']
[u'bull', u'start', u'steadili', u'tiger']
[u'bushrang', u'chang', u'warrior', u'clash']
[u'effort', u'boost', u'indigen', u'job']
[u'boost', u'age', u'care', u'accommod']
[u'cheaper', u'foreign', u'prawn', u'forc', u'market', u'rethink']
[u'chile', u'compens', u'tortur', u'victim']
[u'china', u'coal', u'blast', u'kill']
[u'coff', u'water', u'polic', u'boost']
[u'communiti', u'rememb', u'chopper', u'crash', u'victim']
[u'continu', u'growth', u'predict', u'hous', u'sector']
[u'councillor', u'say', u'local', u'snub', u'year']
[u'coupl', u'skin', u'tiger', u'scott']
[u'croc', u'coach', u'consid', u'line', u'chang']
[u'dogfight', u'skill', u'display']
[u'dollar', u'rise', u'hit', u'export', u'costello', u'say']
[u'doubt', u'cast', u'riverland', u'cotton', u'industri']
[u'downer', u'back', u'ukrain', u'protest']
[u'downer', u'meet', u'iraqi', u'ambassador']
[u'earthquak', u'hit', u'japan', u'northern', u'island']
[u'elect', u'cast', u'doubt', u'tourist', u'tramway', u'plan']
[u'emerg', u'servic', u'confid', u'season', u'near']
[u'escap', u'ladder', u'scale', u'prison', u'wall']
[u'eurobodalla', u'shire', u'newslett']
[u'extinct', u'fear', u'hold', u'fli']
[u'farmer', u'urg', u'prevent', u'livestock', u'theft']
[u'fear', u'hunger', u'strike', u'detaine']
[u'fear', u'smoke', u'hurt', u'region', u'pub']
[u'govt', u'threaten', u'forc', u'mental', u'health']
[u'fenc', u'farmer', u'quoll']
[u'kill', u'iraq', u'death', u'triangl', u'oper']
[u'fleme', u'face', u'test', u'realiti']
[u'fluctuat', u'price', u'rockmelon', u'grower']
[u'minist', u'head', u'asbesto', u'task', u'forc']
[u'guilti', u'bash', u'murder']
[u'french', u'hostag', u'iraq', u'good', u'spirit', u'report']
[u'fume', u'hamper', u'rescu', u'china']
[u'fund', u'bring', u'cool', u'school', u'plan', u'closer']
[u'furnac', u'problem', u'cost', u'onesteel']
[u'geraldton', u'join', u'graffiti', u'clean', u'scheme']
[u'gerrard', u'set', u'sight', u'premiership', u'surg']
[u'girl', u'claim', u'teacher', u'cover', u'gang', u'rape']
[u'govt', u'extend', u'darwin', u'waterfront', u'develop']
[u'govt', u'industri', u'forecast', u'trade', u'rout', u'success']
[u'govt', u'outlin', u'mine', u'buffer', u'zone', u'chang']
[u'govt', u'ask', u'murray', u'settl', u'water']
[u'govt', u'say', u'redfern', u'redevelop', u'forc']
[u'grain', u'farmer', u'learn', u'contamin', u'test']
[u'grass', u'spark', u'burn', u'warn']
[u'green', u'leader', u'back', u'region', u'fund', u'inquiri']
[u'gundaroo', u'post', u'offic', u'close']
[u'heart', u'break', u'ranger']
[u'high', u'hop', u'underground', u'reticul', u'trial']
[u'howard', u'govt', u'ask', u'help', u'fund', u'schooli']
[u'howard', u'say', u'asian', u'trade', u'aggress', u'separ']
[u'hurst', u'happi', u'ironman', u'qualifi']
[u'illeg', u'worker', u'detain', u'immigr', u'raid']
[u'imagist', u'artist', u'paschk', u'die']
[u'inter', u'fight', u'stall', u'juventus']
[u'iran', u'withdraw', u'nuclear', u'research', u'exempt', u'demand']
[u'isra', u'barrier', u'west', u'bank', u'land']
[u'isra', u'hit', u'gaza', u'strip']
[u'topsi', u'turvi', u'north', u'south', u'debat']
[u'ivori', u'coast', u'want', u'franc', u'world', u'court']
[u'jail', u'sentenc', u'child', u'abus', u'suspend']
[u'jordanian', u'crown', u'princ', u'strip', u'titl']
[u'kazaa', u'accus', u'global', u'music', u'piraci']
[u'labor', u'plan', u'region', u'fund', u'inquiri']
[u'landmin', u'summit', u'open', u'kenya']
[u'latham', u'apologis', u'labor', u'disun']
[u'lee', u'seek', u'windsor', u'alleg', u'probe']
[u'limeston', u'quarri', u'get', u'leas', u'life']
[u'liverpool', u'mellor', u'floor', u'arsenal']
[u'live', u'desert', u'boost', u'sculptur', u'number']
[u'lobbi', u'group', u'question', u'student', u'work', u'hour', u'plan']
[u'maher', u'hit', u'bull', u'control']
[u'maher', u'star', u'bull', u'tiger']
[u'jail', u'shoot', u'truck']
[u'mayor', u'attack', u'resourc', u'takeov', u'plan']
[u'medic', u'school', u'open']
[u'melbourn', u'line', u'formula', u'showcas']
[u'melbourn', u'secur', u'guard', u'die', u'shoot']
[u'minist', u'admit', u'progress', u'slow', u'indigen', u'justic']
[u'mitsubishi', u'pleas', u'plant']
[u'mother', u'visit', u'drug', u'accus', u'bali']
[u'dismiss', u'govt', u'palm', u'island', u'plan']
[u'predict', u'cut', u'polic', u'number']
[u'rule', u'quit', u'labor', u'reef', u'plan']
[u'ousley', u'blaze', u'immedi', u'threat']
[u'myskina', u'lead', u'russia', u'titl']
[u'nation', u'park', u'expans', u'plan', u'consider']
[u'needi', u'bank', u'gambier', u'food', u'facil']
[u'council', u'speak', u'public', u'hous', u'tenant']
[u'face', u'join', u'bendigo', u'council']
[u'technolog', u'allow', u'polic', u'come', u'face', u'face']
[u'restrict', u'plan', u'plate', u'driver']
[u'nrma', u'flag', u'challeng', u'driver', u'restrict']
[u'alert', u'ahead', u'scorcher']
[u'health', u'urg', u'region', u'doctor', u'plan']
[u'opposit', u'say', u'plate', u'curfew', u'unfair']
[u'nurs', u'student', u'clinic', u'experi']
[u'trap', u'china', u'blast']
[u'pair', u'walk', u'uninjur', u'chopper', u'crash']
[u'pakistan', u'test', u'nuclear', u'capabl', u'missil']
[u'palm', u'island', u'face', u'court']
[u'perth', u'beach', u'clear', u'alga', u'dissip']
[u'organis', u'confid', u'cours', u'readi']
[u'piggeri', u'protest', u'prompt', u'polic', u'presenc']
[u'head', u'asean']
[u'polic', u'probe', u'alic', u'spring', u'death']
[u'polic', u'probe', u'drink', u'spike', u'report']
[u'polic', u'probe', u'warragul', u'shop', u'blaze']
[u'polic', u'knowledg', u'onlin', u'crime']
[u'polic', u'unhappi', u'drink', u'driver']
[u'politician', u'tribut', u'janin', u'hain']
[u'pont', u'prolong', u'kiwi', u'agoni']
[u'poor', u'harvest', u'outlook', u'wimmera', u'farmer']
[u'public', u'urg', u'season', u'readi']
[u'push', u'citrus', u'diseas', u'agreement']
[u'real', u'crush', u'levant', u'second', u'half', u'salvo']
[u'rescuer', u'herd', u'surviv', u'whale', u'dolphin']
[u'rescuer', u'headway', u'whale', u'dolphin', u'rescu']
[u'rescu', u'worker', u'save', u'beach', u'whale']
[u'resid', u'urg', u'cyclon', u'awar']
[u'richardson', u'lehmann', u'adelaid', u'slowdown']
[u'william', u'bush', u'centr', u'propon', u'undet']
[u'roadsid', u'bomb', u'kill', u'samarra']
[u'robert', u'give', u'birth', u'twin']
[u'scientist', u'investig', u'whale', u'dolphin']
[u'scientist', u'track', u'footprint', u'thought']
[u'search', u'find', u'miss', u'group', u'safe']
[u'second', u'opinion', u'seek', u'palm', u'death']
[u'second', u'report', u'releas', u'fatal', u'plane', u'crash']
[u'second', u'whale', u'strand', u'report']
[u'second', u'yulara', u'resort', u'see', u'possibl']
[u'secur', u'guard', u'shoot', u'club', u'robberi']
[u'senat', u'candid', u'face', u'traffic', u'offenc']
[u'seventi', u'job', u'smorgon', u'steel', u'close', u'plant']
[u'sharp', u'spot', u'horticultur', u'threat']
[u'small', u'busi', u'remain', u'upbeat', u'survey']
[u'soar', u'deficit', u'econom', u'growth']
[u'speaker', u'support', u'broadcast', u'parliament', u'onlin']
[u'student', u'escap', u'injuri', u'crash']
[u'student', u'work', u'cap', u'concern', u'youth', u'group']
[u'studi', u'highlight', u'weighti', u'problem']
[u'stun', u'gun', u'palm', u'arrest']
[u'sudan', u'expel', u'repres', u'group']
[u'suicid', u'bomber', u'kill', u'iraq']
[u'swiss', u'voter', u'stem', u'cell']
[u'tabcorp', u'rid', u'melbourn', u'race', u'carniv', u'success']
[u'takeaway', u'hold', u'spark', u'plea', u'wit']
[u'talk', u'fail', u'resolv', u'rail', u'problem']
[u'swim', u'coach', u'hold', u'birchip', u'clinic']
[u'train', u'driver', u'charg', u'fail', u'suppli', u'breath']
[u'ukrain', u'rift', u'widen', u'parti', u'await', u'court', u'decis']
[u'ukrainian', u'court', u'conven', u'poll', u'crisi']
[u'union', u'upbeat', u'rail', u'talk']
[u'union', u'warn', u'action', u'staff', u'shortag']
[u'command', u'rais', u'iraq', u'elect', u'doubt']
[u'valencia', u'crop', u'demand']
[u'vet', u'weed', u'affect', u'fewer', u'hors']
[u'victoria', u'introduc', u'valu', u'school', u'curriculum']
[u'voter', u'return', u'south', u'west', u'councillor']
[u'doubl', u'fin', u'sell', u'smoke', u'kid']
[u'govt', u'awar', u'femal', u'prison', u'problem']
[u'sledg', u'right', u'warn', u'inzamam']
[u'westfield', u'chief', u'deni', u'improp', u'conduct']
[u'whale', u'dolphin', u'mass', u'strand']
[u'windi', u'meet', u'train', u'camp', u'amid', u'contract']
[u'windsor', u'call', u'fund', u'inquiri']
[u'women', u'group', u'air', u'brothel', u'patron', u'fear']
[u'woodbridg', u'choos', u'bhupathi', u'partner']
[u'work', u'continu', u'draft', u'resourc', u'oper', u'plan']
[u'world', u'junior', u'champ', u'end', u'aust', u'open', u'spot']
[u'young', u'driver', u'road', u'rule']
[u'govt', u'consid', u'health', u'hotlin', u'privatis']
[u'black', u'vintag', u'novemb']
[u'submiss', u'consid', u'marin', u'park']
[u'back', u'gold', u'coast', u'medic', u'school']
[u'welcom', u'medic', u'school']
[u'anti', u'berlusconi', u'strike', u'crippl', u'itali']
[u'arnhem', u'land', u'doco', u'competit', u'sundanc']
[u'asic', u'probe', u'insur', u'broker', u'disclosur']
[u'aussi', u'close', u'victori']
[u'aussi', u'readi', u'akhtar', u'antic', u'pont', u'say']
[u'aussi', u'rule', u'roost']
[u'aussi', u'sweep', u'seri']
[u'australia', u'close', u'victori']
[u'australian', u'chariti', u'target', u'poverti', u'aid']
[u'australian', u'spend', u'earn']
[u'australia', u'pressur', u'neighbour', u'landmin']
[u'australia', u'unleash', u'seri']
[u'award', u'name', u'gippsland', u'firm', u'chees']
[u'bank', u'resourc', u'push', u'market', u'higher']
[u'bashir', u'speak', u'attack', u'court', u'tell']
[u'bichel', u'rearguard', u'tiger', u'bite']
[u'discoveri', u'possibl', u'great', u'australian']
[u'botox', u'botul', u'link', u'investig']
[u'brain', u'abnorm', u'link', u'hyperact', u'disord']
[u'brisban', u'church', u'notic', u'unconvent']
[u'bull', u'control', u'tiger', u'collaps']
[u'bundaberg', u'mater', u'expand', u'nose', u'throat', u'surgeri']
[u'busi', u'struggl', u'staff']
[u'murray', u'water', u'measur', u'consist']
[u'showground', u'certainti']
[u'canal', u'estat', u'plan', u'goondiwindi']
[u'canberran', u'prais', u'water', u'conserv']
[u'bomb', u'kill', u'seven', u'iraq']
[u'manufactur', u'urg', u'instal', u'impact']
[u'central', u'weather', u'predict', u'stabilis']
[u'chelsea', u'rich', u'unbal', u'soccer', u'say', u'newcastl']
[u'chemic', u'cach', u'fallujah', u'say']
[u'chile', u'tortur', u'victim', u'compens', u'lack']
[u'citrus', u'canker', u'clear', u'spark', u'inspect']
[u'club', u'meet', u'smoke', u'poki', u'impact']
[u'call', u'probe', u'transit', u'centr', u'sale']
[u'cold', u'freight', u'rail', u'servic', u'stay']
[u'congo', u'base', u'rebel', u'repeat', u'incurs', u'claim']
[u'propos', u'whale', u'rescu', u'plan']
[u'coron', u'rule', u'inquest', u'fisherman', u'death']
[u'council', u'continu', u'plan', u'certifi']
[u'court', u'hear', u'truck', u'stop', u'wrangl']
[u'despit', u'fall', u'price', u'remain', u'expens']
[u'detaine', u'hunger', u'strike', u'take', u'hospit']
[u'detent', u'centr', u'escap', u'avoid', u'penalti']
[u'driver', u'test', u'drug']
[u'drive', u'rule', u'amnesti', u'end', u'trucki']
[u'east', u'timor', u'expel', u'indonesian', u'immigr']
[u'electrolux', u'improv', u'safeti', u'effort']
[u'eureka', u'flag', u'senat', u'chamber']
[u'eureka', u'flag', u'canberra']
[u'expert', u'investig', u'onesteel', u'furnac', u'problem']
[u'extra', u'staff', u'lake', u'creek', u'meatwork']
[u'farmer', u'harvest', u'tip']
[u'farmer', u'warn', u'labour', u'relat']
[u'fear', u'hold', u'lake', u'futur']
[u'festiv', u'organis', u'regret', u'river', u'death']
[u'expert', u'monitor', u'wilder', u'fire']
[u'fleme', u'exasper', u'australia', u'domin']
[u'fli', u'doctor', u'servic', u'claim', u'victimis']
[u'soldier', u'acquit', u'murder', u'charg']
[u'french', u'expert', u'probe', u'plane', u'crash']
[u'french', u'polynesia', u'crisi', u'talk', u'suspend']
[u'fund', u'intersect']
[u'detent', u'fail', u'dent', u'kyi', u'spirit']
[u'garrett', u'work', u'health', u'scare']
[u'global', u'economi', u'weather', u'headwind', u'oecd']
[u'godzilla', u'stomp', u'walk', u'fame']
[u'govt', u'bank', u'partnership', u'tackl', u'public', u'hous']
[u'govt', u'defend', u'anderson', u'elector', u'handout']
[u'govt', u'industri', u'sponsor', u'studi', u'back', u'crop']
[u'govt', u'save', u'forest', u'labor', u'say']
[u'govt', u'reject', u'claim', u'fast', u'rail', u'budget', u'track']
[u'govt', u'releas', u'detail', u'educ', u'inquiri']
[u'govt', u'support', u'uranium', u'enrich', u'research']
[u'govt', u'forc', u'releas', u'hardi', u'file']
[u'govt', u'miss', u'log', u'deadlin']
[u'govt', u'restrict', u'union', u'right', u'entri']
[u'govt', u'spend', u'ghost', u'remov']
[u'govt', u'urg', u'support', u'women', u'justic']
[u'grain', u'compani', u'expand', u'perth', u'plant']
[u'grain', u'crop', u'forecast', u'spell']
[u'gregan', u'prais', u'giteau', u'wallabi', u'touch']
[u'group', u'deliveri', u'transport', u'accommod']
[u'gundaroo', u'posti']
[u'gunner', u'fight', u'warn', u'vieira']
[u'high', u'temperatur', u'prompt', u'total']
[u'hill', u'warn', u'compani', u'possibl', u'export']
[u'investig', u'identifi', u'type']
[u'hospit', u'offer', u'holiday', u'surgeri', u'assur']
[u'hotel', u'icon', u'close']
[u'howard', u'hail', u'histor', u'asian', u'trade', u'pact']
[u'howard', u'warm', u'asean', u'meet']
[u'india', u'launch', u'second', u'missil', u'test']
[u'intern', u'firm', u'search', u'bass', u'strait']
[u'iran', u'say', u'nuclear', u'freez', u'wont']
[u'iran', u'welcom', u'nuclear', u'watchdog', u'resolut']
[u'downturn', u'hit', u'monash']
[u'jail', u'releas', u'loom', u'arm', u'bandit']
[u'john', u'holland', u'win', u'green', u'bridg', u'contract']
[u'judg', u'reject', u'legal', u'action', u'liber', u'parti']
[u'katich', u'name', u'squad']
[u'kazaa', u'say', u'law', u'intent']
[u'labor', u'back', u'workplac', u'legisl']
[u'labor', u'stick', u'privat', u'school', u'fund', u'cut']
[u'landown', u'win', u'build', u'height', u'legal', u'challeng']
[u'landslip', u'worri', u'prompt', u'road', u'link', u'think']
[u'latham', u'call', u'greater', u'uniti']
[u'liber', u'seek', u'mandatori', u'weapon', u'check']
[u'literaci', u'inquiri', u'attack', u'teacher']
[u'demand', u'good', u'news', u'north', u'west']
[u'log', u'blame', u'philippin', u'flood', u'toll', u'rise']
[u'long', u'walk', u'short', u'agre', u'meet']
[u'lower', u'build', u'approv', u'sustain', u'costello']
[u'releas']
[u'manganes', u'promis', u'econom', u'boost']
[u'plead', u'guilti', u'child', u'porn', u'offenc']
[u'martin', u'defend', u'waterfront', u'develop', u'view']
[u'mass', u'whale', u'strand', u'north', u'island']
[u'mayor', u'back', u'year', u'mayor', u'term']
[u'melbourn', u'perth', u'argu', u'case', u'super', u'spot']
[u'mother', u'confid', u'daughter', u'bali', u'drug']
[u'eject', u'region', u'fund', u'stoush']
[u'fear', u'local', u'nurs', u'shortag']
[u'mysteri', u'tremor', u'shake', u'hervey']
[u'agenda', u'seek', u'reconcili', u'plan']
[u'newcastl', u'join', u'anti', u'bulli', u'scheme']
[u'newmont', u'execut', u'face', u'pollut', u'charg']
[u'servic', u'offer', u'drunken', u'dialler']
[u'shire', u'exmouth']
[u'korea', u'consid', u'nuclear', u'talk', u'import', u'china']
[u'nation', u'claim', u'bill', u'jone']
[u'norman', u'defend', u'open']
[u'norman', u'tip', u'scott', u'golf', u'great']
[u'northern', u'french', u'locat', u'choos', u'louvr']
[u'citi', u'healthier', u'bush']
[u'prepar', u'scorcher']
[u'remain', u'alert']
[u'busi', u'profit', u'survey']
[u'nude', u'photo', u'blacken', u'snow', u'white', u'reput']
[u'look', u'posit', u'asean', u'treati']
[u'oecd', u'predict', u'rate', u'rise', u'growth']
[u'food', u'program', u'alleg', u'annan']
[u'onesteel', u'work', u'whyalla', u'shutdown']
[u'time', u'lotteri', u'conman', u'hit', u'jackpot']
[u'opposit', u'endors', u'textil', u'tariff', u'reduct']
[u'opposit', u'quiz', u'otway', u'log', u'polici']
[u'pakistan', u'enshrin', u'musharraf', u'dual', u'role']
[u'philippin', u'storm', u'kill']
[u'plantat', u'firm', u'begin', u'blue', u'harvest']
[u'polic', u'appeal', u'palm', u'funer', u'calm']
[u'polic', u'continu', u'probe', u'boat', u'theft']
[u'polic', u'search', u'miss']
[u'polic', u'tell', u'steer', u'clear', u'palm', u'funer']
[u'polic', u'union', u'play', u'firearm']
[u'polit', u'crisi', u'ukrain', u'continu']
[u'pont', u'defend', u'team', u'tactic']
[u'post', u'mortem', u'channel']
[u'project', u'focus', u'communiti', u'base', u'counter']
[u'publican', u'work', u'smoke', u'law']
[u'public', u'ask', u'help', u'toad', u'number']
[u'public', u'remind', u'backyard', u'oblig']
[u'public', u'highway', u'upgrad', u'brief']
[u'public', u'health', u'servic', u'plan']
[u'push', u'breakaway', u'emerg', u'chopper', u'servic']
[u'question', u'rais', u'darl', u'anabranch', u'pipelin']
[u'question', u'rais', u'driver', u'train']
[u'rann', u'defend', u'child', u'protect', u'perform']
[u'realiti', u'clear', u'bestial']
[u'reconcili', u'australia', u'see', u'opportun']
[u'region', u'doubt', u'cast', u'parent', u'support', u'scheme']
[u'research', u'call', u'studi', u'hec', u'debt']
[u'research', u'highlight', u'pollut', u'heart', u'attack', u'link']
[u'retail', u'join', u'forc', u'trade', u'hour', u'fight']
[u'retail', u'trade', u'debat', u'rage']
[u'review', u'deliv', u'region', u'birth', u'concern']
[u'secur', u'sydney', u'airport', u'termin', u'space']
[u'richardson', u'win', u'battl', u'slow']
[u'ronaldinho', u'shevchenko', u'henri', u'tussl', u'fifa', u'award']
[u'erupt', u'dubbo', u'staff', u'sack']
[u'rspca', u'call', u'stiff', u'bait', u'penalti']
[u'rudd', u'urg', u'govt', u'embrac', u'asian', u'trade', u'deal']
[u'consid', u'test', u'driver', u'drug']
[u'school', u'name', u'alleg', u'rape', u'cover', u'case']
[u'school', u'ostracis', u'girl', u'rape', u'court', u'hear']
[u'school', u'decid', u'issu']
[u'screensav', u'spammer', u'sit']
[u'search', u'continu', u'miss']
[u'search', u'miss', u'aircraft', u'continu']
[u'search', u'rescu', u'whale']
[u'search', u'show', u'sign', u'rescu', u'whale']
[u'seismic', u'test', u'halt', u'urg', u'whale']
[u'senat', u'call', u'alcohol', u'inquiri']
[u'servic', u'commiss', u'cut', u'power', u'bill']
[u'indigen', u'cultur', u'centr', u'plan']
[u'shire', u'maintain', u'opposit', u'reef', u'boat', u'plan']
[u'shock', u'fall', u'retail', u'turnov', u'hit', u'aust', u'dollar']
[u'shop', u'centr', u'oppon', u'question']
[u'socceroo', u'assist', u'coach', u'join', u'hall', u'fame']
[u'south', u'african', u'rule', u'pave', u'marriag']
[u'south', u'head', u'north']
[u'specialist', u'slam', u'public', u'hospit', u'manag']
[u'special', u'law', u'target', u'drink', u'spike']
[u'stem', u'cell', u'procedur', u'offer', u'incontin', u'suffer']
[u'sudanes', u'refuge', u'receiv', u'specif', u'assist']
[u'exposur', u'infant', u'year', u'blame', u'skin']
[u'support', u'grow', u'region', u'fund', u'inquiri']
[u'support', u'march', u'player', u'reconcili', u'walk']
[u'survey', u'highlight', u'support', u'driver', u'drug', u'test']
[u'sydney', u'ferri', u'fare', u'rise']
[u'tiger', u'troubl', u'gabba']
[u'tiger', u'stumbl', u'earli', u'chase']
[u'shop', u'take', u'heart', u'council']
[u'tourist', u'attract']
[u'mental', u'ill', u'drug', u'add', u'list']
[u'ukrain', u'presid', u'elect', u'offer', u'rival', u'post']
[u'defend', u'anim', u'welfar', u'effort']
[u'black', u'hawk', u'helicopt', u'crash', u'kill', u'seven']
[u'dollar', u'firm', u'ahead', u'growth', u'data']
[u'move', u'closer', u'har', u'hydrogen', u'power']
[u'vandal', u'leav', u'trail', u'damag']
[u'polic', u'trial', u'drug', u'test', u'program']
[u'wallabi', u'play', u'franc', u'south', u'africa', u'winter']
[u'walter', u'smith', u'offer', u'scotland', u'coach']
[u'word', u'erupt', u'scienc', u'precinct']
[u'trucki', u'threaten', u'strike']
[u'stream', u'provid', u'see', u'vantag', u'point']
[u'western', u'power', u'look', u'lower', u'risk']
[u'whale', u'meat', u'menu', u'japanes', u'school']
[u'whale', u'review', u'begin']
[u'wildlif', u'shelter', u'face', u'uncertain', u'futur']
[u'windi', u'train', u'camp', u'delay', u'contract']
[u'work', u'begin', u'polic', u'station']
[u'wwii', u'carrier', u'pigeon', u'medal', u'auction']
[u'youth', u'feedback', u'seek', u'road', u'safeti']
[u'plea', u'return', u'larri', u'monkey']
[u'abbott', u'defend', u'chang', u'prosthesi', u'insur']
[u'abbott', u'put', u'onus', u'aid', u'prevent', u'individu']
[u'aborigin', u'parent', u'urg', u'particip']
[u'abort', u'drama', u'sweep', u'independ', u'film', u'award']
[u'ghraib', u'tortur', u'complaint', u'name', u'rumsfeld']
[u'roof', u'appeal', u'dismiss']
[u'afghan', u'hostag', u'taker', u'disband', u'ransom', u'disput']
[u'afghan', u'grant', u'perman', u'visa']
[u'alleg', u'peopl', u'smuggler', u'face', u'charg']
[u'alston', u'post', u'rais', u'opposit', u'hackl']
[u'alston', u'tip', u'high', u'commission']
[u'art', u'centr', u'site', u'announc']
[u'asbesto', u'awar', u'campaign', u'launch']
[u'asbesto', u'victim', u'unit', u'compo', u'fund']
[u'australia', u'formal', u'launch', u'asean', u'trade']
[u'aust', u'scheme', u'target', u'spammer']
[u'aust', u'win', u'invit', u'year', u'asean', u'summit']
[u'awesom', u'aussi', u'happi', u'share', u'say', u'bracewel']
[u'beatti', u'outlin', u'polici', u'mine']
[u'better', u'servic', u'reduc', u'abort', u'rate', u'say']
[u'billiton', u'esso', u'lose', u'profit']
[u'esso', u'longford', u'explos']
[u'boom', u'boat', u'industri', u'reach', u'high', u'water', u'mark']
[u'brain', u'scan', u'abl', u'catch', u'liar']
[u'british', u'win', u'court', u'fight', u'help', u'wife']
[u'buddhist', u'leader', u'hear', u'nepal', u'peac', u'talk', u'offer']
[u'budget', u'endang', u'sharon', u'coalit']
[u'builder', u'unconcern', u'hous', u'drop']
[u'bull', u'enforc', u'follow']
[u'bull', u'need', u'beat', u'tiger']
[u'bull', u'complet', u'rout', u'tiger']
[u'bushrang', u'rain', u'warrior', u'parad']
[u'busi', u'confid', u'rid', u'high', u'region']
[u'campaign', u'aim', u'fish', u'safeti', u'cours']
[u'canberra', u'school', u'recov', u'damag']
[u'canberra', u'student', u'oxford']
[u'chemic', u'scare', u'close', u'nestl', u'factori']
[u'china', u'confirm', u'kill', u'explos']
[u'china', u'presid', u'shake', u'hand', u'aid', u'patient']
[u'church', u'deacon', u'plead', u'guilti', u'child', u'charg']
[u'club', u'discuss', u'futur', u'amidst', u'smoke', u'poki']
[u'club', u'want', u'clear', u'outsid']
[u'consortium', u'buy', u'build']
[u'consum', u'spend', u'forecast', u'econom', u'growth']
[u'council', u'buy', u'karuah', u'waterfront', u'land']
[u'council', u'critic', u'marina', u'develop', u'beach', u'effort']
[u'council', u'delay', u'hotel', u'plan', u'talk']
[u'council', u'develop', u'decis', u'worri', u'resid']
[u'council', u'look', u'open', u'lake', u'entranc', u'soon']
[u'councillor', u'approv', u'shop', u'centr', u'plan']
[u'council', u'move', u'shellcov', u'tent', u'embassi']
[u'council', u'urg', u'film', u'hunter']
[u'countri', u'zone', u'reappear', u'draft']
[u'crew', u'battl', u'fire']
[u'darwin', u'highris', u'approv']
[u'defenc', u'dept', u'hire', u'account', u'team']
[u'dental', u'ray', u'help', u'detect', u'osteoporosi']
[u'detain', u'australian', u'sailor', u'lose', u'bail']
[u'devonport', u'brawl', u'nightclub', u'hour']
[u'diouf', u'ban', u'match', u'spit']
[u'disabl', u'worker']
[u'dissid', u'congreg', u'stand', u'baptism', u'sacrament']
[u'dollar', u'dip', u'follow', u'econom', u'outlook']
[u'downer', u'wont', u'press', u'tortur', u'report']
[u'driver', u'get', u'suspend', u'jail', u'term']
[u'drug', u'firm', u'defend', u'trial', u'children', u'care']
[u'time', u'toll', u'grain', u'grower']
[u'econom', u'growth', u'grind', u'year']
[u'elect', u'promis', u'inquiri', u'polit', u'motiv']
[u'emerg', u'declar', u'bushfir', u'lick', u'alectown']
[u'farmer', u'safeti', u'warn']
[u'farmer', u'unhappi', u'milk', u'price']
[u'farmer', u'urg', u'branch', u'tree', u'farm']
[u'farmer', u'write', u'support', u'seek', u'class', u'action']
[u'father', u'face', u'contempt', u'charg']
[u'feral', u'turtl', u'threaten', u'waterway']
[u'ferrero', u'count', u'clay', u'hold', u'roddick']
[u'french', u'regul', u'seek', u'pull', u'hezbollah', u'link']
[u'frustrat', u'farmer', u'form', u'lobbi', u'group']
[u'gangland', u'foe', u'move', u'jail']
[u'gibbon', u'back', u'region', u'fund', u'probe']
[u'busi', u'discuss', u'main', u'street', u'upgrad', u'plan']
[u'googl', u'complicit', u'chines', u'internet', u'control']
[u'govt', u'fund', u'geraldton', u'mental', u'health', u'boost']
[u'govt', u'urg', u'appoint', u'aborigin', u'educ', u'post']
[u'green', u'warn', u'politicis', u'terror', u'trial']
[u'gregan', u'back', u'perth', u'super', u'race']
[u'work', u'coincid', u'season', u'start']
[u'group', u'want', u'site', u'heritag', u'list']
[u'guantanamo', u'tortur', u'claim', u'check', u'ruddock']
[u'hama', u'boycott', u'palestinian', u'elect']
[u'heat', u'rise', u'continu']
[u'hick', u'father', u'lead', u'ballarat', u'eureka', u'walk']
[u'high', u'hop', u'return', u'christma', u'pageant']
[u'hollywood', u'star', u'john', u'barrymor', u'die']
[u'iaea', u'rule', u'south', u'korea', u'disgust', u'north']
[u'icrc', u'find', u'guantanamo', u'tactic', u'like', u'tortur', u'report']
[u'illawarra', u'hospit', u'wait', u'list', u'expect', u'grow']
[u'india', u'begin', u'trial', u'vaccin', u'human']
[u'indigen', u'australian', u'face', u'alarm', u'murder', u'risk']
[u'indigen', u'repres', u'stage', u'hunger', u'strike']
[u'indonesian', u'plane', u'crash', u'kill']
[u'kangaroo', u'surviv', u'scare']
[u'kangaroo', u'statesid', u'foray']
[u'korean', u'parent', u'birth', u'memori', u'gold']
[u'kouta', u'keep', u'blue', u'captainci']
[u'labor', u'accus', u'speaker', u'doubl', u'standard']
[u'lake', u'bennett', u'resid', u'reach', u'compens']
[u'lampard', u'fire', u'chelsea']
[u'lawyer', u'urg', u'caution', u'roadsid', u'drug', u'test']
[u'leak', u'cross', u'report', u'alleg', u'tortur']
[]
[u'jail', u'life', u'murder', u'childhood', u'friend']
[u'serv', u'jail', u'term', u'despit', u'murder', u'acquitt']
[u'martin', u'keep', u'darwin', u'waterfront', u'land', u'valu']
[u'mater', u'oncolog', u'facil']
[u'mayor', u'sympathis', u'speed', u'limit', u'woe']
[u'lead', u'beach', u'death', u'toll']
[u'militiaman', u'jail', u'east', u'timor', u'attack']
[u'mincor', u'look', u'product', u'boost']
[u'mine', u'sector', u'welcom', u'govt', u'rehabilit', u'plan']
[u'minist', u'attack', u'council', u'coral', u'stanc']
[u'minist', u'offer', u'polic', u'number', u'assur']
[u'miss', u'tourist', u'safe']
[u'mitsubishi', u'tackl', u'public', u'percept', u'problem']
[u'nation', u'unhappi', u'limit', u'detail', u'toxic']
[u'navig', u'cours', u'tour']
[u'date', u'consid', u'gold', u'carniv']
[u'norwegian', u'rat', u'invad', u'sweden', u'town']
[u'danger', u'remain', u'high']
[u'opposit', u'attack', u'loom', u'releas']
[u'agre', u'sign', u'asian', u'aggress', u'treati']
[u'oecd', u'tip', u'limit', u'price', u'drop']
[u'olymp', u'champion', u'hamilton', u'sack']
[u'opposit', u'promis', u'bolster', u'youth', u'advisori']
[u'opposit', u'want', u'compulsori', u'driver', u'educ']
[u'pair', u'admit', u'conceal', u'murder']
[u'palm', u'island', u'claim', u'polic', u'harass']
[u'palm', u'payback', u'emot', u'talk']
[u'parliament', u'sack', u'ukrain', u'govern']
[u'patient', u'dravid', u'put', u'india', u'ahead']
[u'payback', u'warn', u'wake', u'palm', u'riot']
[u'disput', u'threaten', u'emerg', u'surgeri']
[u'pilot', u'face', u'compulsori', u'secur', u'check']
[u'plan', u'focus', u'sugar', u'industri', u'viabil']
[u'accus', u'ditch', u'emptiv', u'strike', u'polici']
[u'economi', u'shrink', u'report']
[u'polic', u'investig', u'alleg', u'goondiwindi', u'assault']
[u'polic', u'look', u'forward', u'driver', u'drug', u'test']
[u'polic', u'case', u'malle', u'driver', u'drug', u'test']
[u'polic', u'search', u'miss', u'tourist']
[u'pont', u'play', u'lee', u'waca', u'chanc']
[u'premier', u'reject', u'call', u'electr']
[u'profit', u'take', u'drag', u'ord', u'lower']
[u'properti', u'boom', u'drive', u'incom', u'earner']
[u'push', u'navi', u'boat', u'port', u'hedland', u'home']
[u'pyne', u'confid', u'costello']
[u'polic', u'consid', u'action', u'aborigin']
[u'polic', u'terroris', u'kid', u'aborigin']
[u'raid', u'illeg', u'immigr']
[u'rape', u'victim', u'contact', u'famili', u'court']
[u'refer', u'group', u'tackl', u'sexual', u'diseas']
[u'refuge', u'group', u'back', u'woomera', u'escap', u'rule']
[u'relat', u'riot', u'china', u'death']
[u'research', u'want', u'screen', u'mother']
[u'research', u'probe', u'link', u'teen', u'drink']
[u'resid', u'face', u'power', u'woe']
[u'resid', u'sussex', u'inlet']
[u'resid', u'urg', u'look', u'injur', u'eagl']
[u'resid', u'warn', u'prepar', u'bushfir', u'risk']
[u'revamp', u'black', u'face', u'barbarian']
[u'crew', u'assess', u'hunter', u'valley', u'bushfir']
[u'rogerson', u'suffer', u'possibl', u'dementia']
[u'romanian', u'offici', u'confirm', u'poll', u'result']
[u'rwanda', u'hint', u'congo', u'assault']
[u'school', u'settl', u'gang', u'rape', u'case']
[u'scotland', u'smith', u'manag']
[u'scott', u'eye', u'major']
[u'screensound', u'put', u'archiv']
[u'seed', u'solv', u'throwaway', u'phone', u'problem']
[u'senat', u'debat', u'aborigin', u'death', u'custodi']
[u'senat', u'seek', u'limit', u'ocean', u'nois', u'whale', u'sake']
[u'serbian', u'presid', u'surviv', u'assassin', u'attempt']
[u'shire', u'hold', u'xstrata', u'talk', u'amidst', u'takeov', u'fear']
[u'shop', u'centr', u'revamp', u'open']
[u'american', u'kill', u'afghan', u'plane', u'crash']
[u'skin', u'cancer', u'expert', u'urg', u'parent', u'protect']
[u'smoke', u'chang', u'caus', u'hotel', u'concern']
[u'soap', u'opera', u'small', u'screen']
[u'softwar', u'reconstruct', u'extinct', u'anim']
[u'respit', u'loom', u'amidst', u'rise', u'temperatur']
[u'south', u'west', u'rock', u'look', u'lifesav', u'tourism', u'boost']
[u'strong', u'wind', u'batter', u'coast']
[u'sunshin', u'shoot', u'victim', u'deliber', u'target']
[u'swan', u'wallabi', u'resolv', u'schedul', u'clash']
[u'tamworth', u'businessman', u'reject', u'windsor', u'latest']
[u'govt', u'help', u'dairi', u'industri', u'meet', u'target']
[u'teen', u'face', u'gang', u'rape', u'charg']
[u'telstra', u'ahead', u'sale']
[u'telstra', u'chief', u'leav', u'earli', u'payout']
[u'temperatur', u'rise', u'summer', u'scorcher']
[u'termit', u'forc', u'childcar', u'centr']
[u'terror', u'suspect', u'lawyer', u'condemn', u'jail', u'condit']
[u'thorp', u'name', u'nswiss', u'athlet', u'year']
[u'thousand', u'welcom', u'youth', u'game']
[u'tiger', u'fold', u'bull', u'press', u'victori']
[u'transport', u'fare', u'increas']
[u'treasur', u'search', u'budget', u'save']
[u'women', u'charg', u'island', u'riot']
[u'wound', u'melbourn', u'shoot']
[u'minist', u'criticis', u'guantanamo']
[u'ukrain', u'court', u'meet', u'elect', u'crisi']
[u'ukrain', u'parliament', u'vote', u'yanukovich', u'motion']
[u'underag', u'gambler', u'lose', u'casino']
[u'union', u'call', u'singl', u'offic', u'ambul', u'crew']
[u'union', u'urg', u'resolv', u'hospit', u'secur']
[u'panel', u'propos', u'criteria', u'legitim', u'militari']
[u'spot', u'suspect', u'rwandan', u'troop']
[u'kill', u'philippin', u'storm']
[u'homeland', u'secur', u'chief', u'resign']
[u'know', u'ghraib', u'abus', u'report']
[u'continu', u'struggl', u'rain', u'melbourn']
[u'govt', u'deliv', u'albani', u'legal', u'fund']
[u'destroy', u'iraq', u'health', u'report']
[u'warn', u'issu', u'northern', u'tableland', u'blaze']
[u'water', u'author', u'review']
[u'water', u'polic', u'crack', u'drunken', u'boati']
[u'protect', u'australian', u'costello']
[u'whale', u'autopsi', u'result', u'month', u'away']
[u'whale', u'dump', u'plan', u'anger', u'abalon', u'diver']
[u'whale', u'strand', u'link', u'quak']
[u'wife', u'jail', u'hire', u'hitman']
[u'wild', u'weather', u'move', u'coast']
[u'wilko', u'european', u'comeback']
[u'young', u'peopl', u'warn', u'mobil', u'phone', u'debt', u'risk']
[u'abba', u'find', u'peac', u'deal', u'possibl']
[u'journalist', u'blitz', u'broadcast', u'award']
[u'resid', u'urg', u'water', u'wise']
[u'traffic', u'climb', u'steepli']
[u'want', u'osteoporosi', u'drug', u'wide', u'avail']
[u'ambassador', u'steer', u'clear', u'decis', u'recherch']
[u'anderson', u'wont', u'face', u'region', u'fund', u'inquiri']
[u'armi', u'revis', u'soldier', u'heat', u'exhaust', u'figur']
[u'arson', u'hous']
[u'asbesto', u'fund', u'win', u'repriev']
[u'aust', u'polic', u'begin', u'patrol', u'capit']
[u'australian', u'consortium', u'buy', u'broadcast', u'busi']
[u'aust', u'skipper', u'charg', u'say', u'famili']
[u'aust', u'snooker', u'star', u'charg', u'assault']
[u'aust', u'sign', u'live', u'anim', u'trade', u'agreement']
[u'baghdad', u'mortar', u'attack', u'kill']
[u'barghouthi', u'palestinian', u'presid', u'wife']
[u'bashir', u'play', u'marriott', u'bomb', u'inmat']
[u'bashir', u'trial', u'hear', u'lade', u'messag']
[u'bashir', u'visit', u'militari', u'train', u'camp', u'court', u'hear']
[u'basketbrawl', u'player', u'face', u'polic', u'charg']
[u'bean', u'grower', u'financi', u'incent']
[u'beekeep', u'hope', u'good', u'season']
[u'belconnen', u'welcom', u'art', u'centr']
[u'bendigo', u'cyclist', u'rid', u'youth', u'game', u'gold']
[u'blue', u'charg', u'bracken', u'rout', u'redback']
[u'bodi', u'iraq', u'margaret', u'hassan']
[u'bracken', u'destroy', u'redback']
[u'bracken', u'rip', u'redback']
[u'bull', u'cruis', u'gabba', u'victori']
[u'bungl', u'bungl', u'rang', u'reach', u'icon', u'status']
[u'bushrang', u'seat']
[u'bushrang', u'slump', u'inning', u'defeat']
[u'bystand', u'intervent', u'stop', u'bulli', u'studi']
[u'canberra', u'surgeri', u'wait', u'list', u'increas']
[u'child', u'abus', u'report', u'fall', u'cherbourg']
[u'coff', u'reap', u'benefit', u'greater', u'visitor', u'number']
[u'communiti', u'group', u'challeng', u'redfern', u'renov']
[u'condom', u'tight']
[u'costello', u'move', u'open', u'hardi', u'inquiri', u'document']
[u'council', u'await', u'govt', u'respons']
[u'councillor', u'want', u'snappi', u'decis', u'croc']
[u'council', u'play', u'hick', u'eureka', u'march', u'role']
[u'council', u'beat', u'job', u'zone']
[u'court', u'hear', u'asbesto', u'fund', u'liquid', u'case']
[u'court', u'reject', u'extend', u'paedophil', u'jail', u'term']
[u'crew', u'battl', u'contain', u'central', u'west']
[u'crowd', u'expect', u'flock', u'bird', u'exhibit']
[u'cyclist', u'die', u'truck', u'accid']
[u'action', u'palm', u'death']
[u'disabl', u'fund', u'consid', u'inadequ']
[u'disabl', u'fund', u'hunter']
[u'marker', u'track', u'shark', u'popul']
[u'pirat', u'fin']
[u'england', u'ash', u'say', u'wasim']
[u'england', u'hammer', u'zimbabw', u'second']
[u'environ', u'crisi', u'head', u'warn']
[u'est', u'lead', u'record', u'round']
[u'est', u'take', u'clubhous', u'lead', u'coolum']
[u'estrada', u'win', u'leav', u'knee', u'surgeri']
[u'take', u'control', u'bosnia', u'peacekeep', u'mission']
[u'goldfield', u'policeman', u'acquit', u'assault']
[u'farmer', u'cast', u'doubt', u'ban']
[u'farm', u'group', u'adopt', u'constitut']
[u'fatal', u'crash', u'close', u'western', u'highway']
[u'feder', u'fund', u'bolster', u'timber']
[u'feder', u'threat', u'grand', u'slam', u'record', u'sampra']
[u'feyenoord', u'steaua', u'reach', u'uefa']
[u'holden', u'plant', u'investig']
[u'ban', u'loom', u'central', u'victoria']
[u'fire', u'shoaib', u'throw', u'gauntlet']
[u'firefight', u'save', u'lakesid', u'estat', u'hous']
[u'leav', u'burn', u'asbesto', u'discoveri']
[u'footbal', u'leagu', u'say', u'player', u'bing', u'drink', u'limit']
[u'forget', u'famili', u'emerg', u'jungl']
[u'french', u'prime', u'minist', u'win', u'reduc', u'sentenc']
[u'feast', u'bite', u'hunt', u'debat']
[u'franc', u'defend', u'troop', u'ivori', u'coast', u'kill']
[u'ganguli', u'fin', u'dissent']
[u'gene', u'discoveri', u'schizophrenia', u'treatment']
[u'goodwin', u'lead', u'fight']
[u'govt', u'form', u'age', u'care', u'plan']
[u'govt', u'mock', u'labor', u'leadership', u'problem']
[u'govt', u'reviv', u'unfair', u'dismiss']
[u'govt', u'urg', u'engag', u'indigen', u'curb']
[u'govt', u'fund', u'matern', u'ward', u'improv']
[u'govt', u'bunburi', u'land', u'plan']
[u'govt', u'urg', u'indigen', u'secur', u'patrol']
[u'govt', u'urg', u'inject', u'fund', u'rural', u'rail', u'servic']
[u'govt', u'urg', u'delay', u'wage', u'case']
[u'grant', u'help', u'gympi', u'firm', u'boost', u'oper']
[u'groom', u'take', u'earli', u'lead', u'hong', u'kong', u'open']
[u'hackett', u'focus']
[u'harbhajan', u'clinch', u'seri', u'india']
[u'high', u'risk', u'central']
[u'high', u'hop', u'waikeri', u'limeston']
[u'hingi', u'comeback']
[u'hobart', u'lure', u'australian', u'open', u'star']
[u'holiday', u'unit', u'build', u'workingman', u'club']
[u'hope', u'inquest', u'help', u'combat', u'petrol', u'sniff']
[u'hous', u'price', u'fall', u'end', u'year']
[u'howard', u'deni', u'slush', u'fund', u'claim']
[u'howard', u'refus', u'rule', u'alston', u'plum', u'post']
[u'india', u'scent', u'victori', u'harbhajan', u'wreck']
[u'indonesian', u'scientist', u'borrow', u'flore', u'bone']
[u'injur', u'eagl', u'return', u'wild']
[u'injur', u'jockey', u'face', u'lengthi', u'wait', u'race']
[u'wasnt', u'ask', u'cancel', u'china', u'trip', u'haermey']
[u'jail', u'high', u'secur', u'visitor', u'centr', u'open']
[u'joint', u'ventur', u'optimist', u'long', u'term', u'prospect']
[u'juri', u'dismiss', u'toothfish', u'poach', u'trial']
[u'kakadu', u'entri', u'scrap']
[u'king', u'tale', u'stray', u'win', u'heart', u'thailand']
[u'kurdish', u'parti', u'join', u'forc', u'iraq', u'elect']
[u'labor', u'attack', u'nation', u'milk', u'link']
[u'labor', u'cast', u'doubt', u'latham', u'leadership']
[u'labor', u'seek', u'apolog', u'long', u'flag']
[u'latham', u'accus', u'journalist', u'unreason', u'conduct']
[u'latham', u'join', u'long', u'walk']
[u'latrob', u'flight']
[u'launceston', u'schoolgirl', u'name', u'junior', u'historian']
[u'lobster', u'fisher', u'view', u'seek', u'bank', u'futur']
[u'locust', u'control', u'effort', u'cover', u'huge', u'area']
[u'long', u'road', u'ahead', u'ravag', u'meatwork']
[u'long', u'want', u'howard', u'visit', u'indigen', u'communiti']
[u'long', u'want', u'visit', u'indigen', u'communiti']
[u'lord', u'mayor', u'look', u'forward', u'second', u'term']
[u'theft', u'rate', u'draw', u'neighbourhood', u'watch', u'prais']
[u'loyalti', u'take', u'backseat', u'men', u'tenni', u'doubl']
[u'hospitalis', u'tree', u'branch', u'lodg']
[u'jail', u'child', u'porn']
[u'jail', u'kill', u'mother']
[u'slash', u'machet', u'yeppoon']
[u'beat', u'arsenal', u'reach', u'leagu', u'semi']
[u'marin', u'plan', u'unlik', u'spark', u'compo']
[u'market', u'reach', u'record', u'high']
[u'marshal', u'look', u'forward', u'face', u'haka']
[u'mayor', u'maintain', u'retir', u'villag', u'push']
[u'mayor', u'challeng', u'govt', u'provid', u'better', u'transport']
[u'mayor', u'worri', u'portabl', u'pool', u'pose', u'safeti', u'risk']
[u'militari', u'kill', u'aceh', u'rebel']
[u'minist', u'play', u'contamin', u'threat']
[u'minist', u'respons', u'retail', u'trade', u'hour']
[u'caravan', u'buff', u'road']
[u'council', u'fund', u'target', u'vandal']
[u'peopl', u'need', u'say', u'busi']
[u'motorist', u'urg', u'care', u'smoki', u'highway']
[u'movi', u'tell', u'stori', u'disgrac', u'cricket', u'cronj']
[u'cast', u'doubt', u'anti', u'freeway', u'petit']
[u'unhappi', u'minist', u'respons', u'fisher']
[u'music', u'chair', u'fame', u'conductor']
[u'typhoon', u'hit', u'philippin']
[u'nicorett', u'test', u'water']
[u'noos', u'incid', u'fuel', u'racial', u'tension', u'fear']
[u'govt', u'fight', u'petrol', u'sniff']
[u'palmer', u'see', u'defend', u'squash', u'champ', u'shabana']
[u'paper', u'order', u'stop', u'publish', u'terrorist', u'sermon']
[u'patient', u'warn', u'emerg', u'dept', u'woe']
[u'peac', u'park', u'plan', u'get', u'fund', u'boost']
[u'petrol', u'phase', u'fuel', u'racv', u'concern']
[u'picasso', u'engrav', u'set', u'record', u'auction']
[u'pickett', u'plead', u'guilti', u'drive', u'offenc']
[u'pig', u'croc', u'sixth']
[u'oppos', u'merger', u'conserv', u'parti']
[u'polic', u'appeal', u'detail', u'secur', u'guard', u'death']
[u'polic', u'drop', u'child', u'porn', u'case']
[u'polic', u'investig', u'attempt', u'abduct']
[u'polic', u'issu', u'apolog', u'goondiwindi', u'assault']
[u'polic', u'probe', u'aborigin', u'bash', u'rope', u'claim']
[u'polic', u'shoot', u'arm', u'unit']
[u'port', u'volum', u'target']
[u'powel', u'safe', u'gunbattl', u'haiti', u'visit']
[u'power', u'author', u'seek', u'blackout', u'answer']
[u'presid', u'elect', u'challeng', u'ukrain', u'poll', u'result']
[u'princ', u'charl', u'rememb', u'queen', u'mother', u'song']
[u'print', u'factori', u'worker', u'walk', u'disput']
[u'public', u'time', u'reef', u'nation', u'park']
[u'public', u'urg', u'wari', u'solarium', u'danger']
[u'qanta', u'urg', u'improv', u'servic', u'disabl']
[u'race', u'relat', u'agreement', u'sign']
[u'radiolog', u'depart', u'makeov']
[u'region', u'fund', u'inquiri', u'ahead']
[u'region', u'pub', u'unlik', u'liquor', u'vend']
[u'report', u'give', u'lower', u'hunter', u'clean', u'health']
[u'retir', u'caus', u'coastal', u'plan', u'problem']
[u'crew', u'contain', u'blaze', u'near', u'park']
[u'rodd', u'face', u'lengthi', u'wait', u'race']
[u'rodeo', u'rider', u'saddl', u'toowoomba', u'event']
[u'rise', u'garden', u'open', u'parliament', u'hous']
[u'opposit', u'urg', u'attorney', u'general', u'step']
[u'scott', u'aim']
[u'sharon', u'oppos', u'syria', u'peac', u'talk']
[u'sharon', u'woo', u'labour', u'save', u'pullout', u'plan']
[u'shire', u'okay', u'review', u'outcom']
[u'singapor', u'airlin', u'offer', u'flight', u'broadband']
[u'snooker', u'star', u'hann', u'charg', u'assault']
[u'south', u'west', u'pacif', u'meet', u'concentr']
[u'sport', u'club', u'patron', u'drink', u'excess', u'survey']
[u'star', u'sing', u'sudan', u'refuge', u'supper']
[u'stock', u'rise', u'price', u'slump']
[u'student', u'anger', u'result', u'delay']
[u'swedish', u'minist', u'killer', u'jail', u'life']
[u'tafe', u'teacher', u'ministeri', u'blast', u'withhold']
[u'task', u'forc', u'put', u'focus', u'hous', u'shortag']
[u'task', u'forc', u'deliv', u'port', u'hedland', u'report']
[u'opposit', u'target', u'elder']
[u'technic', u'glitch', u'dri', u'drought', u'hop']
[u'team', u'line', u'season']
[u'contest', u'palestinian', u'elect']
[u'thief', u'pursu', u'unfair', u'dismiss', u'claim']
[u'thorp', u'name', u'nswis', u'athlet', u'year']
[u'timelin', u'disast', u'bhopal']
[u'tobacco', u'treati', u'pois', u'come', u'forc']
[u'toddler', u'save', u'call', u'ambul']
[u'toyota', u'issu', u'alert', u'hose', u'flaw']
[u'troop', u'target', u'baath', u'parti', u'retreat']
[u'trucki', u'surviv', u'crash']
[u'face', u'court', u'noos', u'claim']
[u'ukrain', u'head', u'closer', u'poll']
[u'underwood', u'swear', u'chief', u'justic']
[u'union', u'air', u'concern', u'travel', u'licens', u'deal']
[u'union', u'carbid', u'disast', u'haunt', u'bhopal']
[u'union', u'want', u'push', u'wage', u'case']
[u'argu', u'guantanamo', u'detaine']
[u'death', u'toll', u'fallujah', u'reach']
[u'delay', u'start', u'jenkin', u'life']
[u'rais', u'forc', u'level', u'iraq']
[u'vandal', u'attack', u'ambul', u'plan']
[u'vass', u'hous', u'lot', u'snap']
[u'inmat', u'number', u'rais', u'concern']
[u'whale', u'souvenir', u'earn', u'fine']
[u'wine', u'industri', u'checklist', u'aim', u'avoid', u'contract', u'woe']
[u'worker', u'critic', u'mine', u'accid']
[u'actu', u'outrag', u'govern', u'seek', u'wage', u'case', u'delay']
[u'age', u'disabl', u'resid', u'stretch', u'tweed', u'resourc']
[u'airlin', u'moot', u'alburi', u'flight', u'plan']
[u'airlin', u'urg', u'improv', u'treatment', u'disabl']
[u'angri', u'palmer', u'squash', u'world', u'open']
[u'case', u'citrus', u'canker', u'central']
[u'applebi', u'leader', u'citi']
[u'argyl', u'welcom', u'govt', u'pledg', u'support']
[u'armi', u'chopper', u'make', u'emerg', u'land']
[u'aussi', u'domin', u'cricket', u'rat']
[u'australian', u'fund', u'philippin', u'storm', u'relief']
[u'australia', u'team', u'protect', u'reef']
[u'autist', u'featur', u'govt', u'calendar', u'face']
[u'babe', u'go']
[u'baghdad', u'attack', u'claim', u'victim']
[u'bank', u'card', u'cut', u'credit', u'sabbath']
[u'bendigo', u'host', u'telstra', u'countri', u'wide', u'board']
[u'bigger', u'plan', u'care', u'centr']
[u'move', u'afoot', u'retir', u'villag']
[u'blue', u'crush', u'redback', u'underfoot']
[u'border', u'relat', u'delic', u'amidst', u'bash', u'claim']
[u'bore', u'woe', u'trigger', u'compo']
[u'brack', u'talk', u'youth', u'game']
[u'british', u'win', u'damag', u'saddam', u'slur']
[u'chief', u'beat', u'despit', u'servic', u'financi', u'woe']
[u'bushrang', u'face', u'uphil', u'battl']
[u'bushrang', u'massiv', u'chase']
[u'bush', u'refus', u'chief']
[u'busi', u'usual', u'administr', u'look']
[u'cain', u'return', u'tiger']
[u'busi', u'blackout', u'compo']
[u'drought', u'shake']
[u'go', u'volunt', u'firefight']
[u'camera', u'focus', u'state', u'forest', u'fire']
[u'bomb', u'gunmen', u'kill', u'iraq']
[u'carr', u'open', u'stun', u'shoot']
[u'carr', u'urg', u'introduc', u'guidelin', u'retir']
[u'cat', u'extend', u'thompson', u'contract']
[u'ceremoni', u'rememb', u'accid', u'victim']
[u'chelsea', u'preserv']
[u'claremont', u'killer', u'organis', u'method']
[u'clark', u'crash', u'indigen', u'affair', u'minist', u'meet']
[u'clark', u'expect', u'black', u'cap', u'dayer']
[u'clark', u'gatecrash', u'resolv', u'amic', u'vanston']
[u'clean', u'continu', u'post', u'bushfir']
[u'continu', u'interview', u'wit', u'palm']
[u'comment', u'seek', u'propos', u'asia', u'trade', u'deal']
[u'commod', u'fall', u'weigh', u'market']
[u'concern', u'rais', u'indigen', u'student', u'numeraci']
[u'coron', u'recommend', u'mental', u'health', u'assess', u'review']
[u'council', u'call', u'tourist', u'centr', u'applic']
[u'council', u'give', u'wast', u'dump', u'protest', u'right', u'advic']
[u'council', u'seek', u'good', u'relat', u'countri', u'energi']
[u'council', u'seek', u'toughen', u'bark', u'law']
[u'crash', u'spark', u'eas', u'pressur', u'trucki']
[u'crow', u'faith', u'steven', u'begley']
[u'dead', u'storm', u'leav', u'philippin', u'reel']
[u'disabl', u'worker', u'face', u'fear', u'unknown']
[u'doc', u'move', u'resolv', u'women', u'refug', u'crisi']
[u'doubt', u'cast', u'plan', u'second', u'econom', u'zone']
[u'doubt', u'surround', u'jam', u'hardi', u'compo', u'offer']
[u'jone', u'dip', u'investor', u'dump', u'energi']
[u'drop', u'hous', u'price', u'expect']
[u'dylan', u'play', u'prophet', u'label']
[u'near', u'australia', u'fruit', u'wineri']
[u'english', u'nation', u'ballet', u'mourn', u'founder', u'markova']
[u'eureka', u'stockad', u'rememb', u'solemn', u'ceremoni']
[u'eurobodalla', u'mayor', u'join', u'chang', u'task', u'forc']
[u'expo', u'beef', u'rocki', u'economi']
[u'fallujah', u'refuge', u'desper', u'need']
[u'farm', u'group', u'upset', u'deregul', u'fund']
[u'farm', u'worker', u'target', u'alic', u'raid']
[u'fertil', u'servic', u'boost', u'wimmera']
[u'fibreboard', u'plant', u'futur', u'doubt']
[u'firefight', u'extinguish', u'blaze']
[u'firefight', u'ravag', u'hous']
[u'fish', u'chang', u'protect', u'tuna', u'stock']
[u'flare', u'think', u'prank']
[u'fleme', u'confid', u'team', u'perform']
[u'flood', u'plan', u'includ', u'communiti', u'consult']
[u'kelli', u'staffer', u'deni', u'wrongdo', u'grant']
[u'frog', u'fungus', u'tasmania']
[u'gold', u'coast', u'host', u'special', u'olymp']
[u'govt', u'chang', u'school', u'tutori', u'fund', u'stupid']
[u'govt', u'investig', u'accid']
[u'greek', u'sprinter', u'face', u'drug', u'ban']
[u'gregan', u'win', u'medal', u'excel']
[u'hawk', u'head', u'kokoda', u'track']
[u'hobart', u'hospit', u'launch', u'neonat', u'support', u'group']
[u'hope', u'shark', u'fin', u'fine', u'stop']
[u'hospit', u'boost', u'orthopaed', u'surgeri']
[u'weather', u'worsen', u'alga', u'outbreak']
[u'hous', u'price', u'fall', u'gold', u'coast']
[u'hous', u'sale', u'wollongong']
[u'howard', u'urg', u'heed', u'long', u'messag']
[u'immigr', u'confus', u'review', u'vanston']
[u'india', u'pakistan', u'agre', u'reopen', u'second', u'rail', u'link']
[u'india', u'rise', u'australia', u'lead', u'test', u'rank']
[u'indigen', u'opposit', u'voic', u'dump', u'plan']
[u'inquiri', u'probe', u'windsor', u'briberi', u'claim']
[u'insur', u'chang', u'tip', u'swim', u'class', u'size']
[u'iran', u'arrest', u'fake', u'nuclear', u'compani']
[u'irrig', u'outrag', u'govt', u'water', u'figur']
[u'isra', u'troop', u'kill', u'islam', u'jihad', u'member']
[u'jaqu', u'power', u'blue', u'massiv', u'lead']
[u'jone', u'accus', u'drug', u'cheat']
[u'jone', u'tie', u'japan', u'lead']
[u'kakadu', u'entri', u'fee', u'scrap', u'sooner', u'expect']
[u'kakadu', u'owner', u'want', u'greater', u'consult']
[u'kelli', u'deni', u'breach', u'code', u'conduct']
[u'landown', u'warn', u'resurrect', u'bunburi', u'scheme']
[u'landslid', u'hit', u'mountain', u'villag', u'china']
[u'societi', u'back', u'albani', u'legal', u'boost']
[u'lawyer', u'request', u'delay', u'sexual', u'assault', u'trial']
[u'return', u'mcgrath', u'take', u'break']
[u'play', u'mcgrath', u'stay', u'sydney']
[u'librari', u'refus', u'hand', u'eureka', u'flag', u'fragment']
[u'locust', u'outbreak', u'threaten', u'peach', u'crop']
[u'long', u'say', u'journey']
[u'believ', u'nato', u'soldier', u'secur']
[u'die', u'ultralight', u'crash']
[u'guilti', u'macksvill', u'shoot']
[u'marin', u'life', u'plan', u'spark', u'tourism', u'fear']
[u'marion', u'jone', u'accus', u'drug', u'cheat']
[u'mayor', u'conced', u'elect', u'nerv']
[u'mayor', u'brainstorm', u'region', u'issu']
[u'mcgrath', u'rest', u'open', u'door']
[u'men', u'swim', u'stock', u'look', u'cotterel']
[u'mental', u'attack', u'stab', u'chines', u'children']
[u'minist', u'consid', u'disabl', u'boy', u'resid']
[u'minist', u'hand', u'council', u'fund']
[u'moomba', u'blast', u'loss', u'recover', u'say', u'santo']
[u'industri', u'woe', u'possibl']
[u'firm', u'suppli', u'vaccin']
[u'back', u'council', u'rail', u'plan']
[u'outrag', u'record', u'phone', u'convers']
[u'mugab', u'call', u'rule', u'parti', u'uniti']
[u'napster', u'founder', u'launch', u'music', u'firm']
[u'dinosaur', u'speci', u'go', u'display', u'brazil']
[u'richmond', u'air', u'gold', u'coast', u'concern']
[u'trial', u'order', u'blue', u'mountain', u'murder']
[u'typhoon', u'batter', u'philippin']
[u'wallabi', u'turn', u'barbarian']
[u'year', u'jail', u'brawl', u'killer']
[u'nitti', u'clubhous', u'leader']
[u'nitti', u'lead', u'scott', u'miss']
[u'nitti', u'clubhous', u'leader']
[u'quick', u'relief', u'fuel', u'price']
[u'northern', u'rail', u'bridg', u'recognis', u'heritag', u'site']
[u'hous', u'minist', u'fight', u'feder', u'fund']
[u'offici', u'sign', u'race', u'relat', u'agreement']
[u'price', u'tumbl', u'suppli', u'fear', u'fade']
[u'pakistan', u'humili', u'perth']
[u'parent', u'warn', u'domest', u'violenc', u'impact']
[u'peopl', u'urg', u'nativ', u'titl', u'claim']
[u'perilya', u'accid', u'probe', u'continu']
[u'pinochet', u'face', u'trial', u'general', u'death']
[u'polic', u'chief', u'role']
[u'polic', u'crack', u'driver']
[u'polic', u'hunt', u'knife', u'wield']
[u'polic', u'issu', u'christma', u'warn', u'shopper']
[u'polic', u'probe', u'fatal', u'sydney', u'shoot']
[u'polic', u'question', u'fatal', u'stab']
[u'polic', u'raid', u'european', u'champion', u'porto']
[u'polic', u'shoot', u'dog', u'tyre']
[u'polic', u'farewel', u'crash', u'victim']
[u'power', u'compani', u'launch', u'bushfir', u'probe']
[u'probe', u'darwin', u'crane', u'accid']
[u'probe', u'launch', u'freight', u'load', u'death']
[u'public', u'feedback', u'seek', u'coff', u'plan']
[u'public', u'invit', u'comment', u'tran', u'territori']
[u'public', u'servant', u'vow', u'tell', u'secret', u'hide']
[u'public', u'urg', u'fight', u'health', u'servic']
[u'public', u'urg', u'speak', u'region', u'partnership']
[u'public', u'warn', u'avoid', u'mossi', u'virus']
[u'resort', u'happi', u'jetstar', u'clientel']
[u'quarri', u'closur', u'protect', u'indigen', u'heritag']
[u'redback', u'slide', u'crush', u'defeat']
[u'region', u'cooper', u'high', u'agenda', u'south', u'west']
[u'resid', u'action', u'group', u'focus', u'wetland', u'polici']
[u'river', u'cross', u'death', u'result', u'huge', u'mistak']
[u'riverland', u'mental', u'health', u'resourc', u'question']
[u'rlpb', u'ranger', u'recov', u'chopper', u'crash']
[u'roger', u'give', u'warrior', u'advantag']
[u'rudd', u'back', u'latham', u'current', u'term']
[u'school', u'condit', u'debat', u'heat']
[u'second', u'autopsi', u'delay', u'palm', u'island', u'funer']
[u'servic', u'sector', u'activ', u'climb']
[u'slaveri', u'suspect', u'face', u'court']
[u'share', u'dealer', u'success', u'sue', u'pension']
[u'shark', u'spotter', u'return', u'adelaid', u'sky']
[u'skill', u'shortag', u'impact', u'southern', u'firm']
[u'sleepov', u'vital', u'parent', u'child', u'relat']
[u'close', u'charter', u'tower', u'mine']
[u'smith', u'confirm', u'scotland', u'manag']
[u'spain', u'bank', u'youth', u'davi', u'decid']
[u'special', u'olymp', u'torch', u'arriv', u'launceston']
[u'lanka', u'close', u'rebel', u'border', u'amid', u'safeti', u'fear']
[u'storm', u'caus', u'havoc', u'crow', u'nest']
[u'strike', u'print', u'group', u'employe', u'resum', u'work']
[u'strong', u'prospect', u'forecast', u'cane', u'farmer']
[u'sugar', u'chief', u'reject', u'page', u'richmond', u'pork', u'barrel']
[u'support', u'group', u'highlight', u'increas', u'domest']
[u'surfer', u'face', u'trial', u'murder', u'relat', u'charg']
[u'sydney', u'mayor', u'deni', u'play', u'christma', u'grinch']
[u'sydney', u'polic', u'shoot', u'dead']
[u'tafe', u'teacher', u'vote', u'withhold', u'student']
[u'thousand', u'flee', u'congo', u'clash']
[u'track', u'shed', u'light', u'fli', u'orchard', u'impact']
[u'train', u'crash', u'injur', u'itali']
[u'trust', u'account', u'inquiri', u'tell', u'public', u'servant']
[u'tumut', u'cootamundra', u'rail', u'line', u'futur']
[u'charg', u'slaveri', u'offenc']
[u'ukrainian', u'court', u'consid', u'verdict', u'elect']
[u'ukrainian', u'wait', u'court', u'rule']
[u'ultrasound', u'harm', u'babi']
[u'union', u'call', u'industri', u'manslaught', u'law']
[u'union', u'hail', u'dismiss', u'assault', u'charg']
[u'open', u'inquiri', u'pardon', u'offici']
[u'lawyer', u'want', u'inquiri', u'hick', u'trial', u'process']
[u'scientist', u'get', u'reef', u'name', u'honour']
[u'victim', u'hold', u'bhopal', u'plant', u'vigil']
[u'memori', u'unveil', u'latest', u'drysdal', u'paint']
[u'word', u'erupt', u'dredg', u'impact']
[u'warrior', u'grind', u'bushrang', u'defeat']
[u'whitak', u'retain', u'waratah', u'captainci']
[u'wilko', u'return', u'delay']
[u'wimmera', u'aim', u'dive', u'record', u'book']
[u'wireless', u'north', u'boost', u'mobil', u'phone', u'recept']
[u'woman', u'die', u'tewantin', u'crash']
[u'women', u'outshin', u'pool']
[u'yanner', u'lack', u'faith', u'palm', u'inquiri']
[u'youth', u'mentor', u'scheme', u'target', u'drink', u'woe']
[u'ziggi', u'say', u'telstra', u'board', u'instig', u'departur']
[u'dead', u'bomb', u'target', u'iraqi', u'polic']
[u'test', u'corbi', u'cannabi', u'haul']
[u'accus', u'fiddl', u'hous', u'woe']
[u'survey', u'highlight', u'doctor', u'shortag', u'fear']
[u'ambros', u'clinch', u'success', u'titl']
[u'applebi', u'break', u'lead', u'citi']
[u'aussi', u'sheehan', u'second', u'japan']
[u'australian', u'urg', u'russia', u'stay', u'ukrain']
[u'babe', u'ruth', u'hit', u'million', u'dollar', u'homer']
[u'dupe', u'cruel', u'bhopal', u'hoax']
[u'brazil', u'appeal', u'sugar', u'export', u'rule']
[u'briton', u'die', u'landmark', u'euthanasia', u'rule']
[u'bull', u'tiger', u'ring', u'chang']
[u'bull', u'total', u'tiger', u'reach']
[u'bull', u'travel', u'nice', u'elect']
[u'bush', u'name', u'homeland', u'secur', u'chief', u'rumsfeld', u'stay']
[u'busi', u'leader', u'threaten', u'liber', u'fund']
[u'california', u'cathol', u'dioces', u'settl', u'abus', u'case']
[u'carr', u'accus', u'break', u'guidelin', u'promis']
[u'cheap', u'land', u'sale', u'help', u'incom', u'earner']
[u'china', u'resum', u'landslid', u'rescu', u'effort']
[u'chocol', u'nativ', u'leav', u'italian', u'mouth', u'water']
[u'colombian', u'drug', u'kingpin', u'extradit', u'unit', u'state']
[u'communiti', u'discuss', u'palm', u'island', u'action']
[u'congest', u'port', u'choke', u'export', u'opposit']
[u'cont', u'say', u'montgomeri', u'drug', u'cheat']
[u'crazi', u'hors', u'spaceman', u'battl', u'sceptic']
[u'crazi', u'hors', u'spaceman', u'crash', u'earth']
[u'customari', u'evid', u'chang', u'slow', u'court']
[u'dead', u'fungus', u'threaten', u'frog']
[u'deaflymp', u'team', u'win', u'govern', u'fund']
[u'democrat', u'membership', u'rise']
[u'diseas', u'risk', u'rise', u'philippin', u'typhoon']
[u'dope', u'hors', u'cost', u'germani', u'jump', u'medal']
[u'drink', u'driver', u'charg', u'fatal', u'accid']
[u'elder', u'urg', u'peac', u'protest', u'custodi']
[u'elliott', u'close', u'vic', u'chase', u'victori']
[u'est', u'overtak', u'nitti']
[u'blame', u'madrid', u'explos']
[u'garbag', u'collector', u'threaten', u'strike', u'talk', u'stall']
[u'genet', u'test', u'reveal', u'shark', u'speci']
[u'giant', u'park', u'offer', u'vari', u'facil']
[u'govern', u'wont', u'oppos', u'tortur', u'evid']
[u'greenpeac', u'target', u'woolworth', u'anti', u'fight']
[u'guatemala', u'crash', u'kill']
[u'hama', u'leader', u'detain', u'raid', u'wit']
[u'hawk', u'thrash', u'breaker']
[u'hill', u'arriv', u'iraq', u'reconstruct', u'talk']
[u'hmas', u'adelaid', u'return', u'home']
[u'hobart', u'strike', u'affili', u'brisban', u'lion']
[u'hook', u'widow', u'sue', u'bouncer', u'hotel']
[u'imperialist', u'monitor', u'poll', u'mugab']
[u'iraq', u'attack', u'leav', u'seven', u'dead']
[u'ivorian', u'seek', u'french', u'troop', u'withdraw']
[u'japanes', u'face', u'court', u'hostel', u'murder']
[u'japanes', u'tourist', u'charg', u'stab']
[u'accid', u'leav', u'hospit']
[u'jone', u'cont', u'dope', u'claim']
[u'kidman', u'citizen', u'world']
[u'larsson', u'knee', u'surgeri', u'success', u'barca']
[u'lawyer', u'abandon', u'alexand']
[u'lead', u'sunni', u'cleric', u'condon', u'iraqi', u'resist']
[u'long', u'upbeat', u'meet']
[u'long', u'upbeat', u'meet']
[u'lucki', u'lotteri', u'number', u'dent', u'italian', u'treasuri']
[u'macgil', u'star', u'blue', u'crush', u'redback']
[u'magpi', u'unsettl', u'gigg', u'report']
[u'arrest', u'adelaid', u'stab']
[u'match', u'fix', u'claim', u'spark', u'uefa', u'inquiri']
[u'mcgrath', u'gillespi', u'leav', u'australian']
[u'mear', u'set', u'sibl', u'rivalri']
[u'nadal', u'nail', u'roddick', u'spain']
[u'nativ', u'indian', u'pursu', u'suit', u'canadian']
[u'newcastl', u'hope', u'venabl', u'deal']
[u'youth', u'polici', u'group', u'watchdog']
[u'nitti', u'hold', u'lead']
[u'nitti', u'hold', u'lead', u'final', u'hole', u'birdi']
[u'korea', u'await', u'bush', u'look', u'team']
[u'norgren']
[u'govt', u'deni', u'volunt', u'firefight', u'wait']
[u'palm', u'island', u'communiti', u'lose', u'faith', u'legal']
[u'disput', u'prompt', u'truck', u'driver', u'blockad', u'threat']
[u'perren', u'set', u'bull']
[u'phelp', u'beat', u'peirsol', u'thorp', u'swim', u'award']
[u'philippin', u'suspend', u'log', u'storm']
[u'plant', u'ferguson', u'stop', u'redback', u'slide']
[u'polic', u'raid', u'michael', u'jackson', u'neverland', u'ranch']
[u'pont', u'look', u'indoor', u'advantag', u'dockland']
[u'port', u'look', u'list', u'schofield', u'place']
[u'porto', u'presid', u'face', u'corrupt', u'charg']
[u'privat', u'caravan', u'park', u'land', u'exempt']
[u'progress', u'drought', u'reform', u'say', u'truss']
[u'rann', u'back', u'stash', u'cash', u'affair']
[u'shot', u'fire', u'sydney', u'polic', u'oper']
[u'springborg', u'confid', u'parti', u'back', u'merger', u'plan']
[u'springborg', u'win', u'execut', u'back', u'merger']
[u'supermarket', u'petrol', u'push', u'price', u'higher', u'ract']
[u'toddler', u'drown', u'famili']
[u'women', u'arrest', u'tree', u'protest']
[u'ukrain', u'court', u'order', u'vote']
[u'ukrain', u'prepar', u'poll']
[u'ukranian', u'communiti', u'call', u'elect', u'deleg']
[u'fee', u'deter', u'student', u'opposit']
[u'allow', u'evid', u'gain', u'tortur']
[u'declar', u'death', u'triangl', u'sweep']
[u'probe', u'detaine', u'abus', u'photo']
[u'polic', u'book', u'drink', u'driver']
[u'health', u'chief', u'reject', u'shortag', u'claim']
[u'warn', u'aim', u'year']
[u'warrior', u'hold', u'victorian', u'chase']
[u'warrior', u'hold', u'thrill']
[u'waterfront', u'author', u'recruit', u'begin']
[u'weak', u'job', u'data', u'leav', u'market', u'flat']
[u'western', u'power', u'clear', u'wheat', u'belt']
[u'western', u'power', u'wait', u'bushfir', u'investig']
[u'workcov', u'polic', u'investig', u'truck', u'leak']
[u'yanukovich', u'vow', u'ukrain', u'poll']
[u'zimmer', u'morrison', u'notch', u'win', u'korea']
[u'kill', u'kashmir', u'landmin', u'blast']
[u'million', u'devot', u'flock', u'saint', u'remain']
[u'insurg', u'target', u'iraqi']
[u'milan', u'late', u'ralli', u'keep', u'pressur', u'juve']
[u'resid', u'warn', u'renov', u'rush']
[u'airport', u'offici', u'detain', u'zimbabw', u'opposit', u'leader']
[u'alcohol', u'seiz', u'north']
[u'ambros', u'complet', u'clean', u'sweep']
[u'applebi', u'slip', u'westwood', u'take', u'citi', u'lead']
[u'arnhem', u'land', u'turtl', u'industri', u'expans']
[u'artist', u'put', u'collect', u'scholarship']
[u'author', u'warn', u'fairi', u'light', u'danger']
[u'barca', u'open', u'point', u'lead', u'spain']
[u'barnett', u'pledg', u'restor', u'censorship', u'power']
[u'black', u'cap', u'pull', u'thrill']
[u'black', u'cap', u'restrict', u'aussi']
[u'bok', u'eas', u'past', u'wound', u'puma']
[u'brisban', u'woman', u'pip', u'miss', u'world', u'titl']
[u'burn', u'specialist', u'honour', u'award']
[u'bomb', u'kill', u'iraqi', u'soldier']
[u'carr', u'accus', u'ignor', u'rural', u'rail', u'need']
[u'carr', u'seek', u'drive', u'commut', u'road']
[u'chelsea', u'jugular']
[u'child', u'die', u'highway', u'accid']
[u'china', u'approv', u'print', u'foreign', u'newspap']
[u'commut', u'unsur', u'wheelchair', u'access', u'bus']
[u'coulthard', u'hint', u'bull']
[u'croc', u'snap', u'match', u'lose', u'streak']
[u'darwin', u'head', u'gulf']
[u'darwin', u'high', u'rise', u'plan', u'worri']
[u'dob', u'program', u'deter', u'illeg', u'fish']
[u'drink', u'driver', u'concern', u'minist']
[u'drought', u'blame', u'teacher', u'loss']
[u'elder', u'injur', u'glider', u'accid']
[u'draw', u'near', u'north', u'south', u'fundrais', u'trek']
[u'est', u'stalk']
[u'explos', u'devic', u'injur', u'teenag']
[u'flood', u'kill', u'indonesia']
[u'foot', u'sever', u'tractor', u'accid']
[u'french', u'train', u'exercis', u'lead', u'explos', u'mistak']
[u'gale', u'injur', u'japan']
[u'hama', u'deni', u'truce', u'immin']
[u'hardman', u'muscat', u'violenc']
[u'hartson', u'doubl', u'fire', u'celtic', u'clear']
[u'hawthorn', u'stalwart', u'die']
[u'hickss', u'father', u'heckl', u'eureka', u'ceremoni']
[u'home', u'burn', u'famili', u'absenc']
[u'home', u'evacu', u'bushfir', u'rag']
[u'howard', u'invit', u'asian', u'summit', u'doubt']
[u'iaea', u'chief', u'deni', u'iran', u'influenc', u'report']
[u'india', u'seal', u'flashpoint', u'mosqu', u'town']
[u'iran', u'oblig', u'allow', u'militari', u'site', u'inspect']
[u'islam', u'group', u'threaten', u'kill', u'indian', u'cricket']
[u'accid', u'prompt', u'water', u'sport', u'warn']
[u'jimenez', u'seal', u'hong', u'kong', u'open']
[u'juve', u'ignor', u'down', u'oppon']
[u'kazakhstan', u'coal', u'blast', u'kill']
[u'kersten', u'world', u'titl']
[u'kewel', u'hit']
[u'kiev', u'hold', u'round', u'ukrain', u'crise', u'talk']
[u'king', u'upset', u'hawk']
[u'kumbl', u'laxman', u'annoy', u'rest']
[u'labor', u'accus', u'govt', u'condon', u'tortur']
[u'labor', u'leadership', u'talk', u'continu']
[u'labor', u'seek', u'petrol', u'price', u'probe']
[u'late', u'slim', u'dusti', u'nomin', u'golden', u'guitar']
[u'lawyer', u'argu', u'ghraib', u'guard', u'scapegoat']
[u'lonard', u'win', u'titl']
[u'malaysia', u'warn', u'fallout', u'asian', u'pact']
[u'charg', u'brisban', u'parti', u'stab']
[u'mcmullan', u'give', u'latham', u'februari']
[u'momentum', u'swing', u'australia']
[u'child', u'care', u'place', u'need', u'carr', u'say']
[u'mosul', u'suicid', u'bomb', u'hit', u'kurdish', u'fighter']
[u'muslim', u'gather', u'end', u'prayer', u'peac']
[u'nation', u'offici', u'talk', u'merger', u'plan']
[u'newmont', u'rule', u'deal', u'indonesian', u'pollut', u'case']
[u'observatori', u'prepar', u'season']
[u'observ', u'pressur', u'mozambiqu', u'poll', u'transpar']
[u'pakistan', u'admit', u'laden', u'trail', u'cold']
[u'pavin', u'snatch', u'lead']
[u'welcom', u'shift', u'aborigin', u'welfar']
[u'polic', u'probe', u'okin', u'beach', u'drown']
[u'polic', u'slow', u'emerg', u'opposit']
[u'power', u'deal', u'boost', u'renew', u'energi', u'invest']
[u'pow', u'sayonara', u'changi']
[u'pakistan', u'rebel', u'claim', u'kashmir', u'attack']
[u'public', u'back', u'katherin', u'art', u'precinct']
[u'radic', u'chang', u'need', u'indigen', u'affair', u'say']
[u'ranger', u'flame', u'score', u'victori']
[u'readi', u'steadi', u'wrap']
[u'reserv', u'black', u'crush', u'barbarian']
[u'retail', u'urg', u'present', u'love']
[u'right', u'group', u'urg', u'karzai', u'sidelin', u'warlord']
[u'senat', u'call', u'uniform', u'childcar', u'standard']
[u'sheehan', u'win', u'season', u'end', u'event', u'japan']
[u'solanki', u'lead', u'england', u'crush']
[u'soldier', u'rush', u'suppli', u'storm', u'filipino']
[u'spanish', u'polic', u'defus', u'bomb', u'blame']
[u'stoner', u'deni', u'leadership', u'challeng', u'report']
[u'thailand', u'tackl', u'unrest', u'origami', u'bird']
[u'dead', u'road']
[u'miss', u'remot']
[u'toowoomba', u'rang', u'accid', u'kill']
[u'command', u'rais', u'concern', u'iraqi', u'forc']
[u'touch', u'screen', u'trial', u'begin', u'emerg']
[u'trio', u'safe', u'outback', u'search']
[u'star', u'beat', u'ancient', u'beauti', u'miss', u'digit', u'titl']
[u'twin', u'davi', u'hop', u'aliv']
[u'treat', u'overdos', u'adelaid', u'rave']
[u'polic', u'chief', u'back', u'forc', u'intrud']
[u'ukrain', u'parliament', u'fail', u'agre', u'elect']
[u'russia', u'china', u'pressur', u'landmin']
[u'vanston', u'ask', u'approv', u'disabl', u'famili']
[u'secur', u'measur', u'prevent', u'forgeri']
[u'veteran', u'ralli', u'site', u'dump']
[u'join', u'forc', u'defenc', u'contract']
[u'join', u'forc', u'defenc', u'contract']
[u'women', u'firefight', u'target', u'onlin', u'survey']
[u'yellow', u'bowl', u'help', u'vision', u'impair', u'player']
[u'yushchenko', u'famili', u'hide', u'crisi', u'continu']
[u'zimbabw', u'elect', u'woman', u'vice', u'presid']
[u'water', u'plant', u'near', u'finish']
[u'aborigin', u'communiti', u'welcom', u'stanc', u'alcohol']
[u'aborigin', u'slam', u'curfew', u'alcohol', u'ban']
[u'abus', u'investig', u'compromis', u'opposit']
[u'accus', u'letter', u'bomber', u'face', u'court']
[u'accus', u'palm', u'island', u'rioter', u'return', u'court']
[u'accus', u'palm', u'riot', u'ringlead', u'bail']
[u'accus', u'rioter', u'miss', u'palm', u'island', u'funer']
[u'accus', u'teen', u'abus', u'suicid', u'watch']
[u'adelaid', u'sieg', u'end', u'peac']
[u'offer', u'park', u'victim']
[u'allianc', u'meet', u'unlik', u'hear', u'unfair', u'dismiss']
[u'anti', u'semit', u'incid', u'remain', u'high', u'australia']
[u'aquacultur', u'farm', u'plan', u'darwin', u'outskirt']
[u'armi', u'probe', u'cadet', u'drug', u'claim']
[u'asylum', u'seeker', u'protest', u'baxter', u'roof']
[u'olymp', u'chief', u'warn', u'jone', u'alleg']
[u'aussi', u'lead', u'fight', u'camel', u'race', u'slave']
[u'aust', u'target', u'meet', u'greenhous', u'target']
[u'australian', u'chase', u'tour', u'berth']
[u'australian', u'pick', u'lord', u'ring', u'book']
[u'award', u'jogger', u'babi', u'montana']
[u'bass', u'strait', u'island', u'lead', u'renew']
[u'beatti', u'urg', u'concentr', u'state', u'polit']
[u'beatti', u'warn', u'leadership', u'problem', u'hurt']
[u'join', u'forc']
[u'crowd', u'attend', u'lagoon', u'protest']
[u'grass', u'control']
[u'boat', u'capsiz', u'sydney', u'harbour']
[u'boilermak', u'buck', u'rodeo']
[u'breakthrough', u'floricultur', u'industri']
[u'canberra', u'nurs', u'home', u'trial', u'medic']
[u'candl', u'shed', u'light', u'iraq', u'casualti']
[u'accid', u'kill', u'passeng']
[u'chang', u'possibl', u'liquor', u'accord']
[u'child', u'abus', u'victim', u'receiv', u'compens']
[u'christma', u'busi', u'time', u'ambul', u'crew']
[u'christma', u'pageant', u'prove', u'popular']
[u'coastal', u'develop', u'plan', u'spark', u'mix', u'feel']
[u'communiti', u'group', u'share', u'poki', u'fund']
[u'communiti', u'support', u'mine', u'festiv']
[u'compani', u'move', u'mobil', u'phone', u'workplac']
[u'compani', u'bigger', u'slice', u'market']
[u'confirm', u'freighter', u'unchart', u'rock']
[u'coron', u'recommend', u'review', u'search', u'procedur']
[u'corpor', u'cash', u'swing', u'melbourn', u'super']
[u'council', u'face', u'pool', u'upkeep']
[u'councillor', u'oppos', u'kath', u'plan']
[u'council', u'rethink', u'beach', u'plan']
[u'council', u'reveal', u'water', u'price', u'plan']
[u'council', u'decid', u'brothel']
[u'count', u'continu', u'council', u'poll']
[u'court', u'seek', u'clemenc', u'bali', u'bomber']
[u'crane', u'work', u'stop', u'plant']
[u'dodson', u'attack', u'back', u'mutual', u'oblig']
[u'driver', u'fatigu', u'alarm', u'develop']
[u'duntroon', u'cadet', u'face', u'drug', u'investig']
[u'dwyer', u'defend', u'barbarian']
[u'bash', u'eminem', u'jackson', u'video']
[u'elect', u'date', u'achiev', u'world', u'help', u'iraqi']
[u'employ', u'remain', u'strong', u'despit', u'small', u'drop']
[u'eureka', u'organis', u'revel', u'event', u'success']
[u'european', u'urg', u'observ', u'ukrain', u'poll']
[u'festiv', u'season', u'fare', u'begin']
[u'dead', u'chines', u'accid']
[u'firefight', u'get', u'period', u'detent', u'arson']
[u'firefight', u'gain', u'control', u'blaze']
[u'fire', u'spark', u'bushfir', u'readi']
[u'fish', u'plant', u'see', u'great', u'catch', u'bermagui']
[u'free', u'ticket', u'benefit', u'remot', u'town']
[u'fund', u'boost', u'lifesav', u'club', u'effort']
[u'golf', u'cours', u'effluent', u'fish', u'kill']
[u'goosen', u'win', u'citi', u'titl', u'applebi', u'tie', u'second']
[u'govt', u'urg', u'eas', u'hear', u'backlog']
[u'govt', u'wont', u'blackmail', u'beatti', u'say']
[u'griffith', u'airport', u'crack', u'secur']
[u'gulf', u'river', u'studi', u'time']
[u'hewitt', u'cope', u'media', u'scrutini', u'say', u'sister']
[u'high', u'rank', u'fisheri', u'export']
[u'tech', u'gambler', u'allow', u'win']
[u'hospit', u'cleaner', u'strike', u'concern']
[u'hundr', u'miss', u'philippin', u'storm']
[u'iaaf', u'plan', u'joint', u'dope', u'research', u'wada']
[u'ibrahimov', u'complet', u'juve', u'recoveri']
[u'iceland', u'bath', u'warn', u'quak']
[u'indian', u'tour', u'hold', u'terror', u'threat']
[u'indigen', u'advis', u'call', u'look', u'land']
[u'internet', u'auction', u'eas', u'boy', u'haunt', u'fear']
[u'inventor', u'honour', u'water', u'save', u'devic']
[u'iraqi', u'crescent', u'order', u'fallujah']
[u'iraq', u'seek', u'help', u'train', u'intellig', u'offic']
[u'islam', u'group', u'threaten', u'kill', u'indian', u'cricket']
[u'jackson', u'give', u'sampl', u'polic', u'report']
[u'japan', u'plan', u'deploy', u'repel', u'spi', u'report']
[u'journalist', u'celebr', u'zimbabwean', u'minist', u'demot']
[u'judg', u'rule', u'windi', u'sponsorship']
[u'kasper', u'hop', u'forget', u'wayward']
[u'kasper', u'rest', u'second']
[u'kid', u'comp', u'australian', u'tenni', u'coach']
[u'kite', u'sail', u'debut', u'sydney', u'hobart']
[u'lacklustr', u'real', u'lose', u'grind']
[u'langer', u'happi', u'miss', u'rawalpindi', u'express']
[u'langer', u'reliev', u'shoaib', u'absenc']
[u'troubl', u'polic', u'earli', u'nightclub']
[u'lobster', u'fisher', u'see', u'back', u'bank', u'chang']
[u'local', u'coupl', u'hous']
[u'locust', u'invad', u'wagga', u'wagga']
[u'lonard', u'seek', u'medic', u'exempt', u'money', u'list']
[u'level', u'caus', u'concern']
[u'maitland', u'council', u'play', u'develop', u'concern']
[u'majest', u'moya', u'win', u'davi', u'spain']
[u'malaysian', u'face', u'credit', u'card', u'fraud', u'charg']
[u'jail', u'year']
[u'lose', u'foot', u'tractor', u'mishap']
[u'surrend', u'polic', u'negoti']
[u'face', u'court', u'nude', u'stroll']
[u'face', u'polic', u'assault', u'charg']
[u'market', u'hit', u'record', u'despit', u'mix', u'fortun']
[u'marshal', u'confid', u'kiwi', u'upset', u'aussi']
[u'mask', u'cover', u'sexual', u'health', u'issu']
[u'mayor', u'joint', u'approach', u'liquor', u'licens']
[u'metcash', u'make', u'foodland']
[u'mexican', u'rebel', u'debut', u'crime', u'writer']
[u'milan', u'awash', u'scala', u'fever']
[u'miner', u'outlin', u'miner', u'sand', u'time', u'frame']
[u'mix', u'opinion', u'need', u'ningi', u'bypass']
[u'fund', u'urg', u'assess', u'child', u'behaviour']
[u'mother', u'plead', u'guilti', u'drown', u'babi']
[u'mother', u'drown', u'babi', u'escap', u'jail', u'term']
[u'move', u'afoot', u'secur', u'mental', u'health', u'facil']
[u'fear', u'murray', u'find', u'hide']
[u'attack', u'labor', u'malcont']
[u'musician', u'split', u'file', u'share']
[u'muslim', u'believ', u'blair', u'creat', u'climat', u'fear']
[u'plan', u'manag', u'ski']
[u'smoke', u'law']
[u'coast', u'awak', u'mysteri', u'light', u'rumbl']
[u'govt', u'ponder', u'border', u'rail', u'line', u'plan']
[u'nurs', u'union', u'continu', u'fight', u'wage', u'deal']
[u'oper', u'vike', u'crack', u'dubbo', u'crime']
[u'origami', u'peac', u'bomb', u'fail', u'sooth', u'thai', u'violenc']
[u'oversea', u'tourism', u'rep', u'experi', u'outback']
[u'palac', u'rommedahl', u'sucker', u'punch']
[u'palm', u'riot', u'wasnt', u'alcohol', u'fuel', u'council', u'say']
[u'parliament', u'debat', u'coupl', u'right']
[u'disput', u'affect', u'result', u'darwin']
[u'petrol', u'station', u'sieg']
[u'plan', u'fire', u'power', u'station']
[u'polic', u'schooli', u'grip']
[u'polic', u'hunt', u'teen', u'attack']
[u'polic', u'leav', u'delay', u'harass', u'case']
[u'policeman', u'honour', u'lifesav', u'award']
[u'polic', u'crash', u'victim']
[u'polic', u'stage', u'drink', u'drive', u'blitz']
[u'polic', u'crack', u'drink', u'driver']
[u'polic', u'warn', u'explos', u'surpris', u'airlin']
[u'pont', u'defend', u'wayward', u'kasper']
[u'power', u'station', u'worker', u'ponder', u'offer']
[u'priest', u'guilti', u'abus']
[u'princ', u'highway']
[u'prison', u'exchang', u'enhanc', u'egypt', u'israel', u'tie']
[u'public', u'remind', u'ban']
[u'public', u'submiss', u'close', u'draft', u'plan']
[u'public', u'safe', u'boat', u'messag']
[u'public', u'transport', u'see', u'address']
[u'radcliff', u'call', u'tougher', u'drug', u'penalti']
[u'ranger', u'sting', u'thistl']
[u'receiv', u'appoint', u'blue', u'mountain', u'project']
[u'lonard', u'take', u'master']
[u'religi', u'leader', u'urg', u'join', u'terror', u'fight']
[u'report', u'flag', u'electr', u'levi', u'power', u'plant']
[u'report', u'highlight', u'need', u'doctor', u'boost']
[u'resid', u'urg', u'restrict', u'water']
[u'resid', u'worri', u'phone', u'tower', u'plan']
[u'retail', u'trade', u'slow', u'novemb']
[u'rich', u'countri', u'accus', u'reneg', u'promis']
[u'rival', u'ticket', u'drop', u'challeng', u'hawthorn']
[u'robot', u'afford']
[u'rocket', u'blast', u'injur', u'teen']
[u'roger', u'back', u'lion', u'beat', u'black']
[u'roger', u'great', u'turn', u'tenni', u'head']
[u'saudi', u'forc', u'kill', u'gunmen', u'mission', u'attack']
[u'school', u'lockdown', u'polic', u'surround', u'suspect']
[u'senat', u'queri', u'feder', u'kakadu', u'fund', u'pledg']
[u'senat', u'threaten', u'basebal', u'dope', u'crack']
[u'shark', u'number', u'increas', u'canal']
[u'soldier', u'plead', u'guilti', u'drink', u'drive']
[u'storm', u'leav', u'resid', u'dark']
[u'strong', u'reform', u'agenda', u'perform', u'economi']
[u'sudan', u'accus', u'rebel', u'break', u'ceas']
[u'sudan', u'agre', u'talk', u'darfur', u'rebel', u'group']
[u'exposur', u'cut', u'lymphoma', u'risk']
[u'support', u'region', u'fund', u'probe']
[u'support', u'mount', u'indonesian', u'islam', u'extremist']
[u'bandit', u'trigger', u'polic', u'hunt']
[u'tascoss', u'talk', u'aurora', u'late', u'fee']
[u'gonorrhoea', u'case', u'doubl']
[u'appear', u'parol', u'hear']
[u'teenag', u'nadal', u'beat', u'cash', u'davi', u'record']
[u'telstra', u'announc', u'intern', u'split']
[u'tomahawk', u'confirm', u'penguin', u'murder', u'weapon']
[u'tourism', u'award', u'winner', u'name']
[u'tree', u'fear', u'prompt', u'council', u'rethink']
[u'australian', u'guilti', u'safeti']
[u'ukrain', u'opposit', u'support', u'ralli']
[u'offici', u'warn', u'iraq', u'violent', u'elect']
[u'unseason', u'rain', u'forecast']
[u'marin', u'express', u'regret', u'romanian', u'rock', u'star']
[u'mission', u'saudi', u'citi', u'attack']
[u'sailor', u'deni', u'darwin', u'rape', u'charg']
[u'sailor', u'face', u'court', u'rape', u'charg']
[u'senat', u'threaten', u'basebal', u'dope', u'crack']
[u'vaughan', u'baffl', u'rebel', u'absenc']
[u'polic', u'want', u'civil', u'liberti', u'law', u'chang']
[u'villag', u'evacu', u'soldier', u'threaten', u'explos']
[u'bushfir', u'caus', u'minor', u'damag']
[u'govt', u'promis', u'boost', u'polic', u'number']
[u'weekend', u'blitz', u'nab', u'drink', u'driver']
[u'wheat', u'qualiti', u'better', u'expect']
[u'youth', u'game', u'inject', u'million', u'bendigo', u'coffer']
[u'abus', u'victim', u'give', u'option', u'testifi', u'ombudsman']
[u'accus', u'underworld', u'killer', u'fight', u'committ']
[u'govt', u'push', u'committe', u'structur']
[u'seek', u'power', u'interrog', u'terror']
[u'target', u'minist', u'region', u'grant']
[u'qaeda', u'claim', u'attack', u'consul']
[u'amcor', u'boss', u'resign', u'suspect', u'cartel']
[u'annan', u'food', u'program']
[u'asx', u'record', u'end']
[u'aust', u'doubl', u'anti', u'terror', u'fund', u'indonesia']
[u'australian', u'pair', u'guilti', u'safeti']
[u'australian', u'school', u'score', u'oecd', u'report']
[u'australia', u'prepar', u'crunch']
[u'aust', u'send', u'humanitarian', u'papua']
[u'aviat', u'industri', u'honour', u'canberra', u'scientist']
[u'award', u'recognis', u'policeman', u'lifesav', u'attempt']
[u'bash', u'pregnant', u'woman', u'spark', u'reform']
[u'baxter', u'detaine', u'continu', u'rooftop', u'protest']
[u'bayley', u'mear', u'lead', u'australia', u'world', u'charg']
[u'job']
[u'beatti', u'prepar', u'work', u'futur', u'mayor']
[u'beatti', u'reject', u'widow', u'plea', u'tap']
[u'win', u'case', u'asbesto', u'claim', u'hear']
[u'bid', u'gramp', u'ghost', u'skyrocket']
[u'blair', u'spin', u'king', u'get', u'lion', u'role']
[u'blue', u'ribbon', u'worker', u'lengthi', u'disput']
[u'bluescop', u'steel', u'expans', u'india']
[u'bodi', u'sydney', u'sand', u'pile']
[u'brack', u'urg', u'state', u'join', u'greenhous', u'scheme']
[u'bryon', u'teen', u'look', u'winter', u'paralymp']
[u'bundaberg', u'port', u'author', u'diversifi', u'invest']
[u'doctor', u'run']
[u'govt', u'dust', u'diseas', u'tribun']
[u'firm', u'appoint', u'administr']
[u'central', u'town', u'clean', u'fierc', u'hailstorm']
[u'chelsea', u'warn', u'porto']
[u'chief', u'minist', u'advis', u'join', u'legal']
[u'civil', u'libertarian', u'oppos', u'extra', u'polic', u'power']
[u'coke', u'pepsi', u'tell', u'print', u'pesticid', u'warn']
[u'coron', u'criticis', u'polic', u'search', u'miss']
[u'costello', u'say', u'state', u'tax']
[u'council', u'issu', u'tree', u'vandal', u'warn']
[u'councillor', u'highlight', u'water', u'breach']
[u'council', u'ponder', u'infrastructur', u'levi']
[u'courthous', u'take', u'action', u'combat', u'skateboard']
[u'crowd', u'rememb', u'daniel', u'morcomb']
[u'crunch', u'time', u'loom', u'europ', u'gun']
[u'cuthbert', u'coach', u'lay', u'rest']
[u'daniel', u'morcomb', u'rememb', u'year']
[u'defenc', u'associ', u'back', u'remov', u'cadet']
[u'doctor', u'perform', u'australia', u'liver', u'cell']
[u'doctor', u'testifi', u'sailor', u'rape', u'hear']
[u'downer', u'discuss', u'detain', u'pair', u'indonesian']
[u'drink', u'driver', u'jail', u'kill', u'best', u'friend']
[u'drug', u'baron', u'cocain', u'report']
[u'dutch', u'polic', u'arrest', u'alleg', u'link']
[u'eccleston', u'lose', u'board', u'court', u'case']
[u'effort', u'control', u'lightn', u'fire']
[u'enjoy', u'prawn', u'fishermen', u'warn']
[u'esper', u'harvest', u'near']
[u'evid', u'earli', u'winemak', u'china']
[u'execut', u'expect', u'sale', u'profit', u'drop']
[u'offic', u'admit', u'tip', u'suspect']
[u'expert', u'studi', u'method', u'monitor', u'anaesthetis']
[u'team', u'reject', u'ferrari', u'test', u'propos']
[u'famili', u'cliff', u'victim', u'devast', u'damag']
[u'fardel', u'investig', u'park', u'petrol', u'station', u'claim']
[u'farm', u'group', u'seek', u'earli', u'wheat', u'debt', u'payment']
[u'report', u'abus', u'guantanamo']
[u'fear', u'heritag', u'list', u'stifl', u'develop']
[u'fear', u'sugar', u'woe', u'sour', u'potenti', u'farmer']
[u'hike', u'blame', u'drop', u'applic']
[u'fergi', u'question', u'chelsea', u'titl', u'stamina']
[u'firearm', u'money', u'seiz', u'drug', u'raid']
[u'burn', u'scrap', u'metal', u'yard']
[u'firefight', u'struggl', u'contain', u'industri']
[u'blast', u'report', u'spain', u'threat']
[u'forecast', u'good', u'region', u'economi']
[u'austoft', u'site', u'prepar', u'multipl']
[u'pastor', u'guilti', u'charg']
[u'fugit', u'qaeda', u'member', u'sentenc', u'iran']
[u'fund', u'manilla', u'work']
[u'visit', u'solomon', u'east', u'timor']
[u'giteau', u'prepar', u'wait', u'half', u'role']
[u'governor', u'enjoy', u'gambier', u'hospit']
[u'govt', u'admit', u'tech', u'student', u'fee']
[u'govt', u'ask', u'boost', u'mental', u'health', u'worker', u'fund']
[u'govt', u'block', u'motion', u'stash', u'cash', u'inquiri']
[u'govt', u'introduc', u'free', u'pneumococc', u'vaccin']
[u'govt', u'appeal', u'rule', u'drug', u'test']
[u'govt', u'pledg', u'rais', u'plant', u'hop']
[u'govt', u'pledg', u'cover', u'veteran', u'specialist']
[u'govt', u'urg', u'kosciuszko', u'develop', u'plan']
[u'govt', u'urg', u'hasten', u'perman', u'water', u'suppli']
[u'govt', u'urg', u'indigen', u'communiti', u'polic']
[u'great', u'barrier', u'reef', u'world', u'healthiest', u'coral']
[u'green', u'energi', u'rise']
[u'hailstorm', u'caus', u'havoc', u'central', u'queensland']
[u'hawthorn', u'boss', u'peac', u'rebel']
[u'hend', u'scrap', u'school']
[u'high', u'hop', u'dogger', u'pest', u'number']
[u'hill', u'visit', u'indonesia']
[u'hoddl', u'take', u'wolv', u'manag']
[u'hunger', u'strike', u'fail', u'spark', u'baxter', u'asylum', u'review']
[u'indigen', u'polici', u'implement', u'criticis']
[u'inquest', u'spark', u'fisher', u'boost', u'safeti']
[u'rat', u'like', u'remain', u'unchang']
[u'ivori', u'coast', u'group', u'endors', u'peac', u'plan']
[u'judg', u'dismiss', u'cliff', u'collaps', u'damag', u'claim']
[u'juri', u'find', u'atsic', u'commission', u'guilti', u'defam']
[u'karzai', u'swear', u'afghan', u'leader']
[u'kosmina', u'lure', u'beltram', u'adelaid']
[u'labor', u'back', u'releas', u'hardi', u'document']
[u'langer', u'happi', u'miss', u'rawalpindi', u'express']
[u'latham', u'say', u'sorri', u'labor', u'voter']
[u'latham', u'warn', u'bicker']
[u'push', u'test', u'place']
[u'lennox', u'back', u'william', u'stop', u'klitschko']
[u'letter', u'bomber', u'await', u'court', u'decis']
[u'liber', u'accus', u'nation', u'pork', u'barrel']
[u'lightn', u'spark', u'nation', u'park', u'blaze']
[u'local', u'knowledg', u'seek', u'boost', u'break', u'hill', u'water']
[u'lonard', u'inelig', u'order', u'merit']
[u'loss', u'cost', u'australia', u'world', u'match']
[u'macarthur', u'cours', u'round', u'world', u'record']
[u'magistr', u'face', u'retrial', u'convict']
[u'hospit', u'dive', u'accid']
[u'injur', u'train', u'collid', u'tractor']
[u'argument', u'driver']
[u'manufactur', u'lead', u'econom', u'expans']
[u'manufactur', u'sector', u'skill', u'shortag', u'survey']
[u'mayor', u'caus', u'offenc', u'arafat', u'imperson']
[u'mayor', u'see', u'good', u'chang']
[u'melbourn', u'drench', u'overnight', u'storm']
[u'melbourn', u'storm', u'affect', u'transport', u'power']
[u'mexican', u'polic', u'chief', u'sack', u'lynch']
[u'mildura', u'leader', u'shed', u'light', u'solar', u'plan']
[u'miss', u'gerringong', u'safe']
[u'mitchel', u'stay', u'galleri', u'chief']
[u'council', u'worker', u'test', u'asbesto']
[u'motley', u'crue', u'reunit', u'world', u'tour']
[u'talk', u'industri', u'law', u'shake']
[u'unhappi', u'council', u'decis']
[u'murali', u'miss', u'zealand', u'tour']
[u'nativ', u'titl', u'proceed', u'faster', u'judg', u'say']
[u'canberra', u'polli', u'maiden', u'speech']
[u'farm', u'incom', u'forecast', u'promis', u'drought']
[u'poll', u'show', u'labor', u'support', u'wan']
[u'heat', u'respit', u'student']
[u'news', u'health', u'merger', u'cut']
[u'northern', u'japan', u'power', u'quak']
[u'parliament', u'approv', u'smoke']
[u'goanna', u'number', u'drop', u'cane', u'toad', u'arriv']
[u'price', u'rebound', u'fear', u'opec', u'output']
[u'opposit', u'disput', u'candid', u'evict']
[u'pakistan', u'win', u'toss', u'elect']
[u'parmalat', u'job', u'darwin']
[u'plan', u'marin', u'industri', u'precinct']
[u'attend', u'anzac', u'anniversari']
[u'polic', u'defend', u'action', u'catch', u'arsonist']
[u'polic', u'happi', u'seiz', u'hoon', u'car']
[u'polic', u'hunt', u'bowl', u'club', u'bandit']
[u'polic', u'probe', u'ballarat', u'vandal', u'attack']
[u'polic', u'probe', u'bathurst', u'woman', u'disappear']
[u'priest', u'guilti', u'teen', u'charg']
[u'probe', u'order', u'franc', u'search', u'explos']
[u'propaganda', u'text', u'reveal', u'phallus', u'tree']
[u'push', u'nation', u'drought', u'polici', u'decis']
[u'wool', u'industri', u'show', u'sign', u'recoveri']
[u'rain', u'pose', u'problem', u'farmer']
[u'rain', u'predict', u'central']
[u'rape', u'case', u'hear', u'condom', u'wrapper', u'bedroom']
[u'recycl', u'plant', u'cut', u'darwin', u'greenhous']
[u'remot', u'teacher', u'multi', u'media', u'boost']
[u'renew', u'gaza', u'fight', u'claim', u'victim']
[u'report', u'put', u'valu', u'region', u'tourism']
[u'resid', u'urg', u'turn', u'aircondition']
[u'restrict', u'lift', u'citrus', u'grower']
[u'retail', u'warn', u'soft', u'christma', u'sale']
[u'reward', u'launch', u'inform', u'miss', u'airman']
[u'reward', u'offer', u'case', u'murder']
[u'rich', u'countri', u'provid', u'relief', u'agenc']
[u'rumsfeld', u'say', u'stay']
[u'russia', u'reveal', u'missil', u'program']
[u'saddam', u'trial', u'iraq', u'poll', u'minist', u'say']
[u'salman', u'smash', u'centuri', u'pakistan']
[u'saudi', u'attack', u'show', u'terrorist']
[u'saudi', u'forc', u'mission', u'attack']
[u'saudi', u'blame', u'fallujah', u'brigad', u'embassi', u'attack']
[u'secur', u'tight', u'karzai', u'inaugur', u'loom']
[u'sentenc', u'increas', u'assault', u'pregnant', u'woman']
[u'seven', u'blast', u'report', u'spain', u'threat']
[u'abus', u'investig', u'resign']
[u'shanghai', u'lock', u'seven', u'year', u'moto', u'deal']
[u'singh', u'name', u'tour', u'player', u'year']
[u'skywest', u'accept', u'offshor', u'takeov']
[u'south', u'east', u'share', u'state', u'health', u'fund']
[u'speaker', u'refus', u'apologis', u'long', u'flag', u'incid']
[u'strong', u'back', u'age', u'care', u'centr']
[u'studi', u'highlight', u'rural', u'doctor', u'experi']
[u'veteran', u'interst', u'surgeri']
[u'test', u'begin', u'vex', u'malle', u'dump', u'site']
[u'texa', u'video', u'tour', u'win', u'turner', u'prize']
[u'think', u'control']
[u'rescu', u'moreton', u'boat', u'mishap']
[u'tink', u'accus', u'lobbi', u'offend']
[u'shop', u'get', u'longer', u'contract']
[u'tourism', u'industri', u'back', u'cane', u'toad', u'fight']
[u'townsvill', u'hous', u'market', u'tip', u'slow']
[u'train', u'track', u'storm']
[u'trucker', u'union', u'seek', u'revamp', u'forestri', u'contract']
[u'trucki', u'die', u'highway', u'crash']
[u'tulimbar', u'villag', u'hous', u'plan', u'releas']
[u'dead', u'rail', u'cross', u'crash']
[u'ukrain', u'leader', u'wont', u'sack', u'govt']
[u'ukrainian', u'foe', u'fail', u'reach', u'compromis']
[u'unemploy', u'rate', u'drop', u'southern']
[u'union', u'angri', u'cancel', u'china', u'talk']
[u'univers', u'sign', u'theft', u'disrupt', u'hawkin', u'tribut']
[u'honour', u'dame', u'joan', u'sutherland']
[u'market', u'close', u'lower', u'saudi', u'attack']
[u'resist', u'kyoto', u'talk', u'climat', u'summit', u'begin']
[u'vaughan', u'hint', u'zimbabw', u'stay', u'ban']
[u'ombudsman', u'examin', u'databas', u'abus', u'claim']
[u'viduka', u'doubl', u'sink', u'citi']
[u'volunt', u'thank', u'rescu', u'effort']
[u'liber', u'plan']
[u'warn', u'leav', u'comeback', u'open']
[u'watch', u'keep', u'park', u'fire']
[u'western', u'council', u'host', u'member']
[u'wildcat', u'king', u'singapor']
[u'wild', u'plan', u'near', u'complet']
[u'winter', u'harvest', u'near']
[u'consid', u'outsid', u'investor', u'expans']
[u'plan', u'uranium', u'train', u'darwin']
[u'world', u'urg', u'confront', u'root', u'caus', u'terror']
[u'zimbabw', u'get', u'femal', u'vice', u'presid']
[u'aborigin', u'artefact', u'cave', u'tasmania']
[u'accus', u'palm', u'rioter', u'custodi']
[u'catch', u'fresh', u'robbin', u'controversi']
[u'applebi', u'scott', u'defend', u'bore', u'golf']
[u'arab', u'isra', u'accus', u'spi', u'iran']
[u'artefact', u'tradit', u'owner']
[u'art', u'bodi', u'scrap', u'media', u'communiti', u'develop']
[u'aussi', u'prevail', u'thriller']
[u'australian', u'stock', u'close', u'lower']
[u'australia', u'push', u'victori']
[u'australia', u'recov', u'post']
[u'aust', u'strengthen', u'surveil', u'law']
[u'aust', u'spend', u'secur', u'embassi']
[u'author', u'consid', u'warn']
[u'bassendean', u'caus', u'traffic', u'delay']
[u'baxter', u'detaine', u'lip']
[u'bigger', u'babi', u'healthier', u'adult', u'studi']
[u'boag', u'open', u'packag', u'line']
[u'bushfir', u'inquiri', u'flare']
[u'busi', u'welcom', u'lake', u'entranc', u'reopen']
[u'businessman', u'seek', u'offset', u'alpin', u'probe']
[u'calvari', u'hospit', u'cleaner', u'strike']
[u'captiv', u'devil', u'insur', u'killer', u'diseas']
[u'central', u'town', u'lose', u'power', u'fierc', u'storm']
[u'chemic', u'compani', u'order', u'extend', u'grind', u'water']
[u'china', u'build', u'monument', u'unknown', u'mous']
[u'paint', u'bleak', u'pictur', u'iraq', u'report']
[u'coerciv', u'wit', u'protect', u'program', u'flaw']
[u'coulthard', u'test', u'bull', u'spain']
[u'council', u'give', u'motel', u'plan']
[u'council', u'give', u'rebat', u'water', u'friend', u'dishwash']
[u'council', u'rethink', u'jam', u'hardi']
[u'council', u'stick', u'coastal', u'ridegeway', u'option']
[u'council', u'decid', u'year', u'tram', u'extens']
[u'court', u'rule', u'put', u'defenc', u'drug', u'test', u'doubt']
[u'crematorium', u'seek', u'boost', u'bodi', u'process']
[u'definit', u'asthma', u'attack', u'unclear']
[u'develop', u'group', u'back', u'power', u'station', u'plan']
[u'diana', u'video', u'reveal', u'desir', u'flee', u'palac']
[u'dissent', u'calam', u'ann']
[u'downpour', u'need', u'restor', u'water', u'alloc']
[u'drainag', u'studi', u'determin', u'roadwork', u'impact']
[u'gippsland', u'blaze', u'near', u'control']
[u'employ', u'group', u'fear', u'emiss', u'trade', u'plan']
[u'energi', u'stock', u'fall', u'price', u'drop']
[u'game', u'wanga']
[u'offic', u'face', u'contempt', u'charg']
[u'fear', u'polit', u'threaten', u'ethanol', u'plan']
[u'ban', u'loom', u'south', u'west']
[u'flash', u'flood', u'busi']
[u'help', u'spread', u'meningococc']
[u'pastor', u'jail', u'abus']
[u'kookaburra', u'nomin', u'world', u'award']
[u'franc', u'move', u'lebanes', u'channel']
[u'free', u'public', u'transport', u'christma']
[u'fund', u'seek', u'perenjori', u'power', u'plan']
[u'ganguli', u'look', u'secur', u'fear']
[u'garrett', u'deliv', u'maiden', u'speech', u'parliament']
[u'ghost', u'sell', u'ebay']
[u'gillespi', u'remov', u'danger', u'cairn']
[u'gold', u'coast', u'flash', u'flood']
[u'gold', u'coast', u'mop', u'flash', u'flood']
[u'good', u'rain', u'fall', u'north', u'west']
[u'govt', u'accus', u'gag', u'indigen', u'council']
[u'govt', u'deni', u'indigen', u'council', u'gag']
[u'govt', u'investig', u'solar', u'power', u'uluru']
[u'govt', u'plan', u'land', u'clear', u'applic', u'shake']
[u'govt', u'promis', u'transpar', u'fuel', u'price']
[u'gracetown', u'famili', u'avoid', u'legal', u'bill']
[u'grazier', u'offer', u'parcel', u'land', u'avoid', u'jail']
[u'greek', u'farmer', u'uncov', u'roman', u'monument']
[u'group', u'call', u'constitut', u'chang', u'protect']
[u'gunmen', u'name', u'qaeda', u'strike', u'mission']
[u'hardi', u'want', u'annual', u'compens']
[u'hazard', u'item', u'remov', u'shop']
[u'healthi', u'reef', u'threat', u'loom']
[u'high', u'court', u'recognis', u'island', u'nativ', u'titl', u'right']
[u'sell', u'busi', u'chines', u'firm']
[u'idea', u'flow', u'save', u'ballarat', u'water', u'suppli']
[u'india', u'tour', u'secur', u'check']
[u'indigen', u'corp', u'want', u'fund', u'question', u'answer']
[u'indigen', u'educ', u'fund', u'chang', u'refer']
[u'insur', u'giant', u'face', u'massiv', u'payout', u'world']
[u'rat', u'stay', u'hold']
[u'investig', u'continu', u'gold', u'coast', u'shoot']
[u'launch', u'balco', u'probe']
[u'work', u'plant', u'open', u'rann']
[u'worker', u'face', u'uncertain', u'futur']
[u'worker', u'seek', u'assur', u'christma']
[u'iraq', u'head']
[u'italian', u'polic', u'swoop', u'napl', u'mafia']
[u'itali', u'scala', u'reopen', u'sparkl', u'gala']
[u'kalgoorli', u'expect', u'bumper', u'christma', u'trade']
[u'knocker', u'threaten', u'bendigo', u'sign']
[u'labor', u'potenti', u'leader', u'lawrenc']
[u'labor', u'prepar', u'continu', u'pressur', u'hawker']
[u'labor', u'slam', u'tuckey', u'hardi', u'comment']
[u'labor', u'turn', u'amateur', u'hour']
[u'leak', u'document', u'highlight', u'health', u'author', u'fund']
[u'lockyer', u'webck', u'tour', u'think']
[u'locust', u'hatch', u'wan']
[u'lonard', u'inelig', u'order', u'merit']
[u'lower', u'speed', u'bundaberg']
[u'releas', u'today']
[u'walk', u'free']
[u'magistr', u'dismiss', u'industri', u'manslaught', u'case']
[u'council', u'announc']
[u'die', u'tractor', u'accid']
[u'fin', u'forest', u'tree', u'clear']
[u'injur', u'hous']
[u'jail', u'attempt', u'murder', u'wife']
[u'rescu', u'trap', u'tractor']
[u'shoot', u'gold', u'coast']
[u'court', u'anim', u'cruelti', u'charg']
[u'mayor', u'talk', u'thuringowa', u'technic', u'colleg']
[u'mcewen', u'warn', u'tour', u'rival']
[u'readi', u'box', u'test']
[u'meet', u'canva', u'gate', u'stock', u'grid', u'plan']
[u'miner', u'energi', u'export']
[u'minist', u'acknowledg', u'mental', u'health', u'servic']
[u'minist', u'lash', u'nation', u'newspap']
[u'minist', u'shed', u'light', u'power', u'spend']
[u'minist', u'delay', u'grant']
[u'racist', u'citi', u'ink', u'harmoni', u'deal']
[u'lofti', u'power', u'woe', u'investig']
[u'murder', u'get', u'life', u'sentenc', u'reduc']
[u'nativ', u'titl', u'right', u'recognis', u'torr', u'strait']
[u'agreement', u'bolster', u'indigen', u'mine', u'relat']
[u'indigen', u'bodi', u'meet']
[u'smoke', u'law', u'pass', u'upper', u'hous']
[u'ningaloo', u'reef', u'manag', u'get', u'thumb']
[u'ireland', u'deal', u'hing', u'disarma']
[u'delay', u'bruce', u'highway', u'roadwork']
[u'north', u'coast', u'record', u'higher', u'averag', u'cancer', u'rate']
[u'govt', u'wont', u'oppos', u'uranium', u'train', u'trial']
[u'octob', u'home', u'loan', u'approv', u'fall']
[u'olymp', u'plan', u'prompt', u'uranium', u'transport', u'fear']
[u'opposit', u'expos', u'airport', u'secur', u'breach']
[u'orang', u'await', u'dentist']
[u'overnight', u'recreat', u'fish', u'ban']
[u'pakistan', u'test', u'second', u'nuclear', u'capabl', u'missil']
[u'piraci', u'investig', u'raid', u'jukebox', u'warehous']
[u'plan', u'continu', u'altern', u'rescu', u'chopper']
[u'plan', u'forum', u'hear', u'bunburi', u'scheme', u'appeal']
[u'plan', u'address', u'pilbara', u'youth', u'servic']
[u'back', u'hous', u'speaker']
[u'defend', u'public', u'servant', u'kelli', u'grant', u'affair']
[u'court', u'hear', u'challeng', u'immun', u'aust']
[u'polic', u'hunt', u'suspect', u'gold', u'coast', u'shoot']
[u'polic', u'investig', u'death', u'boot']
[u'polic', u'probe', u'riverina', u'rail', u'death']
[u'polic', u'warn', u'revel', u'drink', u'spike', u'danger']
[u'porto', u'stay', u'aliv', u'late', u'goal', u'arsenal', u'stroll']
[u'postman', u'hoard', u'letter']
[u'post', u'mortem', u'bowen', u'bodi']
[u'pressur', u'lonard', u'titl', u'allenbi']
[u'priest', u'convict', u'spark', u'appoint']
[u'probe', u'find', u'cadet', u'drug']
[u'properti', u'market', u'strong', u'architect']
[u'protea', u'cap', u'face', u'england']
[u'public', u'servant', u'blame', u'kelli', u'letter', u'controversi']
[u'govt', u'urg', u'boost', u'weed', u'control', u'fund']
[u'qpws', u'review', u'fraser', u'sign', u'tourist', u'death']
[u'racv', u'cast', u'doubt', u'fuel', u'reform', u'plan']
[u'rapper', u'kany', u'west', u'star', u'lead', u'grammi', u'nomine']
[u'report', u'highlight', u'hospit', u'posit']
[u'report', u'show', u'increas', u'school', u'absente']
[u'resid', u'fuel', u'kaniva', u'petrol', u'station', u'plan']
[u'saddam', u'loyalist', u'direct', u'insurg', u'syria']
[u'sadist', u'paedophil', u'abus', u'state', u'ward', u'inquiri']
[u'salman', u'press', u'test', u'case']
[u'salvo', u'seek', u'christma', u'gift', u'donat']
[u'jail', u'valley', u'stab']
[u'state', u'care', u'abus', u'inquiri', u'begin']
[u'scientist', u'develop', u'rapid', u'bird', u'test']
[u'scientist', u'salmon', u'take', u'sein', u'rout']
[u'scot', u'snare', u'world', u'eleph', u'polo', u'titl']
[u'scrap', u'metal', u'continu', u'burn']
[u'secur', u'concern', u'rais', u'propos', u'famili']
[u'secur', u'council', u'dismiss', u'annan', u'resign', u'call']
[u'sever', u'weather', u'warn', u'western']
[u'sign', u'waiver', u'cost', u'abus', u'victim', u'medicar']
[u'skipper', u'face', u'rbts']
[u'smart', u'add', u'crow', u'board']
[u'spotlight', u'fall', u'mayor', u'general', u'manag', u'relat']
[u'storm', u'leav', u'wide', u'burnett', u'resid', u'dark']
[u'studi', u'reveal', u'speci', u'live', u'water']
[u'support', u'separ', u'telstra', u'wholesal', u'busi']
[u'surpris', u'drop', u'consum', u'confid']
[u'survey', u'assess', u'possibl', u'wallaroo', u'declin']
[u'taliban', u'rank', u'file', u'heed', u'arm', u'amnesti']
[u'major', u'reach', u'norman', u'admit']
[u'toothless', u'let', u'cheat', u'hook']
[u'record', u'higher', u'popul', u'growth']
[u'torr', u'strait', u'singer', u'die']
[u'tougher', u'action', u'need', u'illeg', u'fish', u'labor']
[u'tuckey', u'tell', u'stop', u'pick', u'hardi']
[u'tweed', u'council', u'probe', u'begin', u'soon']
[u'teacher', u'sack', u'misconduct']
[u'ukrain', u'turmoil', u'agreement', u'crumbl']
[u'ukrain', u'parliament', u'break', u'elect', u'deadlock']
[u'union', u'air', u'fear', u'trucki', u'drive', u'condit']
[u'union', u'expect', u'labor', u'stand', u'firm', u'worker', u'right']
[u'union', u'fear', u'plan', u'close', u'hospit']
[u'union', u'govt', u'save', u'job']
[u'union', u'shock', u'asbesto', u'exposur', u'extent']
[u'union', u'threaten', u'industri', u'woe', u'hospit']
[u'union', u'vow', u'fight', u'save', u'job']
[u'death', u'toll', u'mount', u'iraqi', u'elect', u'near']
[u'document', u'report', u'abus', u'iraq', u'prison']
[u'hous', u'pass', u'intellig', u'reform']
[u'marin', u'claim', u'unit', u'kill', u'iraqi', u'civilian']
[u'sailor', u'stand', u'trial', u'rape', u'charg']
[u'south', u'korea', u'press', u'nuclear', u'talk']
[u'vandal', u'attack', u'memori']
[u'venabl', u'specul', u'ploy', u'jet']
[u'crime', u'suspect', u'karadz', u'surrend']
[u'weather', u'bureau', u'warn', u'thunderstorm']
[u'get', u'darfur']
[u'fund', u'crisi', u'put', u'sudanes', u'refuge', u'risk']
[u'wildlif', u'group', u'disagre', u'devil', u'plan']
[u'wit', u'call', u'tenterden', u'inquest']
[u'woolmer', u'say', u'pakistan', u'readi', u'field', u'team']
[u'worker', u'overhaul', u'age', u'care']
[u'boost', u'plan', u'wine', u'firm']
[u'abbott', u'dismiss', u'offici', u'claim', u'uneth']
[u'aborigin', u'offer', u'fuel', u'exchang', u'wash']
[u'seek', u'clarifi', u'fit', u'plead', u'law']
[u'director', u'surpris', u'departur']
[u'alleg', u'moran', u'hitman', u'name']
[u'alleg', u'hama', u'funder', u'order', u'kill']
[u'allenbi', u'make', u'earli', u'master', u'run']
[u'alli', u'engin', u'lay', u'worker']
[u'ancient', u'roman', u'artefact', u'steal']
[u'architect', u'want', u'mall', u'retain', u'focal', u'point']
[u'court', u'asia']
[u'auditor', u'general', u'concern', u'rugbi', u'world']
[u'aussi', u'unleash', u'prong', u'pace', u'attack']
[u'aust', u'dollar', u'dive', u'greenback', u'ralli']
[u'product', u'remain']
[u'barghouti', u'offer', u'withdraw', u'elect', u'nomin']
[u'chief', u'larger', u'share', u'stake']
[u'british', u'helicopt', u'carri', u'plung']
[u'broadband', u'subscript', u'doubl', u'month']
[u'brothel', u'owner', u'defend', u'billboard']
[u'busi', u'welcom', u'plan', u'canberra']
[u'butler', u'talk', u'difficult', u'day', u'governor']
[u'chamber', u'back', u'scienc', u'technolog', u'precinct']
[u'church', u'goer', u'face', u'lockout']
[u'church', u'leader', u'decri', u'celebr', u'worship']
[u'clijster', u'australian', u'open']
[u'clijster', u'hope', u'australian', u'open']
[u'candid', u'expel', u'indigen', u'communiti']
[u'compani', u'back', u'mildura', u'region', u'solar', u'citi', u'push']
[u'council', u'dementia', u'project', u'fund']
[u'council', u'vote', u'dump', u'tip']
[u'crew', u'battl', u'chemic', u'warehous']
[u'critic', u'gene', u'fight']
[u'detaine', u'urg', u'abandon', u'rooftop', u'protest']
[u'discoveri', u'coast', u'high', u'speed', u'internet', u'boost']
[u'dissent', u'labor', u'expel', u'union']
[u'code', u'reveal', u'chicken', u'odyssey']
[u'fight', u'caus', u'death']
[u'dwyer', u'crown', u'world', u'best', u'player']
[u'elect', u'surgeri', u'wait', u'list', u'fall', u'hunter']
[u'road', u'drink', u'driver']
[u'excav', u'uncov', u'histor', u'hotel', u'remain']
[u'expert', u'monitor', u'crazi', u'impact']
[u'famili', u'earlier', u'board', u'school', u'allow']
[u'fear', u'holiday', u'season', u'fuel', u'petrol', u'price', u'rise']
[u'feder', u'fund', u'leve', u'work']
[u'kill', u'shoot', u'heavi', u'metal']
[u'palestinian', u'kill', u'cross', u'gaza', u'egypt', u'border']
[u'player', u'fan', u'charg', u'brawl']
[u'forest', u'raid', u'weed', u'cannabi', u'haul']
[u'forgac', u'employe', u'work']
[u'admit', u'disclos', u'confidenti']
[u'sixer', u'avoid', u'jail']
[u'fuel', u'deal', u'idea', u'communiti', u'say']
[u'fund', u'crisi', u'cost', u'montreal', u'world', u'swim', u'titl']
[u'fund', u'seek', u'servic', u'trial']
[u'fund', u'seek', u'boost', u'hour', u'women', u'refug']
[u'fund', u'sustain', u'farm']
[u'belli', u'torvil', u'dean']
[u'galleri', u'offer', u'reward', u'boyd', u'paint', u'return']
[u'giant', u'move', u'closer', u'yuko', u'purchas']
[u'govt', u'ask', u'extend', u'world', u'heritag', u'area']
[u'govt', u'ask', u'provid', u'region', u'free', u'game']
[u'govt', u'direct', u'pacif', u'govern', u'secur']
[u'govt', u'offer', u'opposit', u'biosecur', u'brief']
[u'govt', u'reject', u'einem', u'prison', u'sexual', u'abus', u'claim']
[u'govt', u'resist', u'call', u'enter', u'jam', u'hardi', u'talk']
[u'govt', u'fibr', u'optic', u'technolog']
[u'govt', u'urg', u'continu', u'drought']
[u'graduat', u'flick']
[u'hamm', u'retir', u'greatest', u'women', u'player']
[u'hatton', u'sight', u'oliveira', u'tszyu']
[u'hayden', u'doubt', u'hamstr', u'strain']
[u'hayden', u'gabba', u'dayer']
[u'health', u'author', u'play', u'vmos', u'survey']
[u'health', u'servic', u'record', u'budget', u'deficit']
[u'homemad', u'plan', u'ground', u'wake', u'fatal', u'accid']
[u'hospit', u'staff', u'expect', u'face', u'disciplinari', u'action']
[u'hugh', u'lead', u'rain', u'mar', u'master']
[u'hundr', u'join', u'march', u'palm', u'island', u'death']
[u'india', u'clear', u'play', u'chittagong']
[u'inquiri', u'find', u'unfair', u'deal', u'centenari']
[u'inquiri', u'find', u'mislead', u'public', u'children']
[u'alburi', u'plant', u'sell', u'soon']
[u'asset', u'sell', u'begin']
[u'japan', u'extend', u'iraq', u'deploy']
[u'jellyfish', u'robot', u'practic', u'beauti']
[u'lag', u'applebi', u'master', u'assault']
[u'jobless', u'rate', u'fall', u'histor']
[u'journalist', u'condemn', u'cut']
[u'juri', u'find', u'guilti', u'mildura', u'murder']
[u'kasper', u'gabba']
[u'kidman', u'rank', u'number', u'dollar', u'stake']
[u'killer', u'provoc', u'defenc', u'spark', u'outcri']
[u'labor', u'take', u'kelli', u'parliament', u'wind']
[u'landhold', u'warn', u'flood', u'threat']
[u'landslid', u'survivor', u'rescu', u'day']
[u'region', u'ambul', u'communic', u'centr']
[u'latham', u'remain', u'oppos', u'awa']
[u'latham', u'want', u'branch', u'stack', u'issu', u'deal']
[u'leak', u'part', u'close', u'timor', u'oilfield']
[u'lewi', u'bushrang']
[u'long', u'wait', u'factori', u'blast', u'settlement']
[u'die', u'nimbin', u'road', u'crash']
[u'damag', u'payout', u'accid']
[u'asylum', u'seeker', u'scar', u'detent', u'report']
[u'market', u'drop', u'straight']
[u'mayor', u'defend', u'reduc', u'councillor', u'number']
[u'mccullum', u'styri', u'guilti', u'conduct', u'breach']
[u'mcgrath', u'danger', u'say', u'pakistan', u'yousuf']
[u'meet', u'discuss', u'bendigo', u'bank', u'redevelop']
[u'arrest', u'hair', u'beauti', u'arson', u'attack']
[u'merger', u'spark', u'childcar', u'price', u'rise', u'warn']
[u'miner', u'industri', u'tip', u'growth']
[u'mine', u'honour', u'safeti', u'effort']
[u'minist', u'reveal', u'teacher', u'sack']
[u'fund', u'wild', u'fight']
[u'properti', u'evacu', u'chemic']
[u'australian', u'health', u'improv', u'indigen']
[u'move', u'properti', u'drug', u'arrest']
[u'lament', u'timet', u'highway', u'work']
[u'worri', u'desalin', u'plant', u'futur']
[u'mutual', u'oblig', u'work', u'chief']
[u'mysteri', u'whale', u'song', u'baffl', u'biologist']
[u'nato', u'avoid', u'high', u'level', u'contact', u'ukrain']
[u'nato', u'russia', u'joint', u'appeal', u'fair', u'ukrain', u'poll']
[u'ncoss', u'worri', u'disabl', u'disput', u'impact']
[u'chief', u'maroochi', u'shire']
[u'drug', u'help', u'prevent', u'breast', u'cancer', u'relaps']
[u'law', u'tackl', u'truck', u'industri', u'safeti']
[u'mayor', u'put', u'focus', u'popul']
[u'mayor', u'maintain', u'bypass', u'push']
[u'newmont', u'execut', u'face', u'court', u'indonesia']
[u'rule', u'crackdown', u'violenc', u'health']
[u'irish', u'deal', u'stall', u'arm', u'photo']
[u'promis', u'shorter', u'tour']
[u'test', u'refere', u'interchang']
[u'govt', u'predict', u'volatil', u'hous', u'market']
[u'ombudsman', u'slam', u'doc', u'childhood', u'death']
[u'offer', u'reward', u'cane', u'toad', u'trap']
[u'recognis', u'partnership']
[u'offic', u'quit', u'escap', u'mickelberg', u'case']
[u'offic', u'investig', u'caus', u'chemic']
[u'oyster', u'leas', u'inspect', u'high', u'tech']
[u'paedophil', u'guilti', u'greenacr', u'assault']
[u'pakistan', u'shaki']
[u'pakistan', u'unconvinc']
[u'palestinian', u'elect', u'nomin', u'drop']
[u'palm', u'island', u'fail', u'bail']
[u'palm', u'ralli', u'peac', u'organis']
[u'panther', u'club', u'benefit', u'report']
[u'parent', u'urg', u'rememb', u'water', u'safeti']
[u'parliament', u'call', u'year', u'christma', u'wish']
[u'parliament', u'pass', u'govt', u'elect', u'promis']
[u'pirat', u'taipan', u'newcastl']
[u'admit', u'kelli', u'breach', u'code', u'conduct']
[u'back', u'push', u'encourag', u'indigen', u'land']
[u'polic', u'investig', u'suspici', u'death']
[u'polic', u'investig', u'virgin', u'luggag', u'disappear']
[u'polic', u'keen', u'interview', u'hope', u'shoot', u'victim']
[u'polic', u'recov', u'bodi', u'flood']
[u'polic', u'releas', u'man', u'descript', u'attempt']
[u'polic', u'rescu', u'women', u'flood', u'road']
[u'pont', u'prais', u'brave', u'harri']
[u'music', u'icon', u'dick', u'clark', u'suffer', u'stroke']
[u'power', u'plan', u'wind', u'high', u'countri']
[u'prawn', u'fisher', u'look', u'rain']
[u'publican', u'remind', u'loom', u'smoke', u'ban']
[u'public', u'patienc', u'urg', u'sewerag', u'work']
[u'scrutini', u'spirit', u'measur']
[u'pygmi', u'chimpanze', u'brink', u'extinct']
[u'polic', u'alert', u'media', u'internet']
[u'real', u'liverpool', u'reach', u'champion', u'leagu']
[u'cross', u'meet', u'offici', u'detent']
[u'redknapp', u'join', u'club', u'arch', u'enemi']
[u'region', u'petrol', u'station', u'urg', u'pass', u'cheaper']
[u'report', u'give', u'thumb', u'hunter', u'coal', u'mine']
[u'resid', u'grid', u'gate']
[u'riverland', u'winemak', u'look', u'german', u'opportun']
[u'robinson', u'deni', u'indigen', u'bodi', u'miss', u'fund']
[u'ruddock', u'foreshadow', u'terror', u'law']
[u'sakata', u'factori', u'worker', u'expect', u'strike']
[u'jobless', u'rate', u'hit', u'record']
[u'seafood', u'group', u'plan', u'joint', u'effort']
[u'sermanni', u'return', u'coach', u'matilda']
[u'servic', u'spark', u'daniel', u'morecomb', u'call']
[u'demand', u'coast', u'downpour']
[u'sharon', u'defend', u'isra', u'armi', u'despit', u'civilian', u'death']
[u'silverston', u'secur', u'grand', u'prix', u'deal']
[u'smoke', u'cut', u'studi']
[u'snow', u'remain', u'treasuri', u'head']
[u'stanhop', u'criticis', u'govt', u'indigen', u'deal']
[u'state', u'fund', u'art', u'centr']
[u'stockland', u'residenti', u'properti']
[u'storm', u'affect', u'locust', u'fight']
[u'storm', u'toll', u'riverland']
[u'storm', u'wreak', u'havoc', u'melbourn']
[u'student', u'special', u'need', u'benefit']
[u'student', u'wont', u'appeal', u'deport', u'order']
[u'sydney', u'sign', u'marathon', u'great']
[u'sydney', u'unit', u'sign', u'marathon', u'great']
[u'tasmanian', u'wait', u'longest', u'elect', u'surgeri']
[u'teenag', u'young', u'warn', u'laptop', u'health', u'risk']
[u'tender', u'call', u'hervey', u'airport', u'work']
[u'thoma', u'reward', u'sport', u'inspir']
[u'arrest', u'york', u'racism', u'probe']
[u'traine', u'specialist', u'head', u'tamworth']
[u'transit', u'centr', u'ramp']
[u'troop', u'cheer', u'south', u'korean', u'presid', u'surpris', u'visit']
[u'trucki', u'threaten', u'action']
[u'union', u'support', u'teacher', u'code', u'conduct']
[u'commit', u'stronger', u'tie', u'india']
[u'congress', u'give', u'final', u'approv', u'intellig']
[u'congress', u'pass', u'intellig', u'reform']
[u'fight', u'geneva', u'protect', u'guantanamo', u'detaine']
[u'iraq', u'pledg', u'fund', u'rebuild', u'fallujah']
[u'soldier', u'punish', u'iraqi', u'prison', u'stun']
[u'troop', u'complaint', u'rumsfeld']
[u'vanston', u'defend', u'ask', u'aborigin', u'wash', u'fuel']
[u'govt', u'urg', u'releas', u'health', u'servic', u'report']
[u'ombudsman', u'suppress', u'report', u'region', u'health']
[u'warrior', u'expos', u'pakistani', u'batsmen']
[u'western', u'power', u'stand', u'inquest', u'effort']
[u'weather', u'put', u'gabba', u'match', u'doubt']
[u'wilkinson', u'weekend', u'comeback']
[u'william', u'question', u'klitschko', u'fight', u'spirit']
[u'wind', u'farm', u'promis', u'cost', u'cut', u'west', u'firm']
[u'predict', u'record', u'profit']
[u'say', u'move', u'busi', u'usual']
[u'wodonga', u'guilti', u'stab', u'murder']
[u'woman', u'die', u'cross', u'flood', u'creek']
[u'woman', u'lose', u'appeal', u'jail', u'sentenc']
[u'boost', u'centr']
[u'aaco', u'purchas', u'aim', u'domest', u'market']
[u'aborigin', u'skull', u'cast', u'return', u'tasmania']
[u'actu', u'head', u'lead', u'intern', u'union', u'bodi']
[u'adelaid', u'brace', u'storm']
[u'adler', u'fail', u'delay', u'crimin', u'trial']
[u'declar', u'rent', u'case', u'close']
[u'demand', u'answer', u'tourism', u'grant']
[u'amnesti', u'want', u'nation', u'plan', u'fight', u'domest']
[u'assess', u'secur', u'artefact', u'theft']
[u'arm', u'bandit', u'target', u'bottleshop']
[u'climb', u'amid', u'news', u'corp', u'rumour']
[u'ballarat', u'enrol', u'rise']
[u'bash', u'victim', u'famili', u'plead', u'inform']
[u'beatti', u'reject', u'ambul', u'levi', u'protest']
[u'beef', u'produc', u'extend', u'drought']
[u'black', u'cap', u'richardson', u'retir']
[u'bodi', u'believ', u'flood', u'victim']
[u'bomb', u'kill', u'pakistani', u'citi']
[u'bomb', u'scare', u'increas', u'taiwan', u'elect', u'tension']
[u'brisban', u'weather', u'rain', u'chappel', u'hadle', u'parad']
[u'british', u'safe', u'silverston']
[u'brumbi', u'open', u'gippsland', u'wineri', u'galleri']
[u'bullet', u'freeman', u'wright', u'deni', u'rift']
[u'bush', u'administr', u'back', u'annan']
[u'bush', u'defend', u'soldier', u'right', u'question', u'rumsfeld']
[u'bush', u'finalis', u'cabinet']
[u'busi', u'urg', u'hold', u'respons', u'christma']
[u'cabl', u'mishap', u'cut', u'phone', u'servic']
[u'indigen', u'recognit', u'constitut']
[u'calvari', u'nurs', u'urg', u'remain']
[u'canadian', u'court', u'pave', u'marriag']
[u'capit', u'good']
[u'cathol', u'bodi', u'call', u'baxter', u'protest']
[u'central', u'aust', u'artist', u'featur', u'interst']
[u'centrelink', u'investig', u'raid']
[u'chang', u'plan', u'supermarket', u'develop']
[u'chappel', u'hadle', u'decid', u'call']
[u'charg', u'lay', u'year', u'murder', u'case']
[u'cheech', u'chong', u'unit', u'art', u'festiv']
[u'chelsea', u'form', u'break', u'arsenal', u'jinx']
[u'china', u'accid', u'kill']
[u'church', u'youth', u'leader', u'jail', u'abus']
[u'clark', u'bolling', u'blue']
[u'communiti', u'brief', u'power', u'station', u'plan']
[u'condamin', u'bell', u'icon']
[u'council', u'air', u'drainag', u'delay', u'woe']
[u'council', u'look', u'fuel', u'spill', u'perpetr']
[u'council', u'push', u'hous', u'power', u'plan']
[u'council', u'seek', u'remov', u'shellharbour', u'tent', u'embassi']
[u'council', u'consid', u'wind', u'farm', u'plan']
[u'council', u'consid', u'lismor', u'brothel', u'plan']
[u'crech', u'care', u'shop', u'hubbi']
[u'crewmen', u'bodi', u'british', u'helicopt']
[u'crew', u'keep', u'busi', u'storm', u'lash']
[u'crocodil', u'hunter', u'win', u'tourism', u'gong']
[u'crowd', u'protest', u'aborigin', u'death', u'custodi']
[u'crowd', u'say', u'transit', u'centr', u'sale']
[u'dallaglio', u'eager', u'lion']
[u'doc', u'defend', u'handl', u'child', u'abus', u'case']
[u'doctor', u'close', u'book', u'patient']
[u'domest', u'tourist', u'spend']
[u'doomadge', u'bodi', u'releas', u'burial']
[u'drought', u'boost', u'eastern', u'malle', u'farmer']
[u'drown', u'spark', u'beach', u'safeti', u'warn']
[u'eidsvold', u'council', u'timber', u'suppli', u'concern']
[u'england', u'compound', u'south', u'africa', u'miseri']
[u'esten', u'kilroy', u'share', u'human', u'right', u'medal']
[u'invit', u'boost', u'embattl', u'chief']
[u'exclus', u'link', u'cours', u'open', u'tasmania']
[u'emerald', u'mayor', u'get', u'local', u'govt', u'spot']
[u'exhibit', u'pay', u'tribut', u'foodi']
[u'explos', u'trap', u'chines', u'miner']
[u'fair', u'zimbabw', u'elect', u'requir', u'judici', u'reform']
[u'farmer', u'happi', u'latest', u'drench']
[u'farmer', u'urg', u'monitor', u'mous', u'number']
[u'fear', u'govt', u'tape', u'hurt', u'farmer']
[u'flood', u'toll', u'north', u'west']
[u'govt', u'hold', u'account', u'leas']
[u'harri', u'scarf', u'boss', u'stand', u'trial']
[u'oper']
[u'foster', u'offload', u'properti', u'compani']
[u'fuel', u'deal', u'damag', u'indigen', u'relat']
[u'fund', u'help', u'impact', u'hedland', u'plant']
[u'furnitur', u'school', u'beat', u'futur']
[u'game', u'mark', u'year', u'alic', u'basebal', u'group']
[u'govt', u'accus', u'intellig', u'cover']
[u'govt', u'cast', u'doubt', u'hick', u'abus', u'claim']
[u'govt', u'releas', u'tugun', u'bypass', u'draft']
[u'govt', u'accus', u'fail', u'deliv', u'children']
[u'govt', u'support', u'network', u'referr']
[u'govt', u'urg', u'slow', u'develop', u'approv']
[u'hawk', u'suffer', u'second', u'straight', u'loss']
[u'health', u'merger', u'worri']
[u'health', u'plan']
[u'inquiri', u'chairman', u'stand', u'dissent', u'motion']
[u'hick', u'detail', u'abus', u'claim']
[u'high', u'hop', u'rain', u'boost', u'rambutan', u'crop']
[u'howard', u'dismiss', u'scrafton', u'inquiri', u'find']
[u'hugh', u'lead', u'allenbi', u'melbourn']
[u'indigen', u'council', u'head', u'hit', u'mutual']
[u'indigen', u'leader', u'prais', u'polic', u'effort']
[u'industri', u'estat', u'hous', u'work', u'depot']
[u'inquiri', u'back', u'armi', u'intellig', u'failur', u'claim']
[u'iraqi', u'shiit', u'exclud', u'sadr', u'elect', u'allianc']
[u'isra', u'strike', u'target', u'gaza', u'milit', u'home']
[u'japan', u'make', u'protest', u'chines', u'ship']
[u'japan', u'revis', u'defenc', u'guidelin']
[u'karzai', u'declar', u'jihad', u'poppi', u'cultiv']
[u'kashmiri', u'polic', u'detain', u'right', u'protest']
[u'katherin', u'resid', u'warn', u'vote']
[u'killer', u'whale', u'hamper', u'fishermen']
[u'king', u'call', u'progress', u'tour']
[u'offer', u'domest', u'violenc', u'educ']
[u'landcar', u'group', u'weed', u'bush', u'pest']
[u'lawrenc', u'demand', u'action', u'branch', u'stack']
[u'replac', u'batsman', u'perth', u'test']
[u'likud', u'hold', u'vote', u'israel']
[u'liverpool', u'millwal', u'charg', u'crowd', u'troubl']
[u'liverpool', u'gerrard']
[u'local', u'govt', u'keep', u'check', u'minist']
[u'local', u'winemak', u'win', u'export', u'gong']
[u'accus', u'slaveri', u'grant', u'bail']
[u'fin', u'eski', u'cannabi', u'crop']
[u'jail', u'abalon', u'poach']
[u'win', u'compens', u'infect']
[u'marin', u'hostag', u'charg', u'desert']
[u'gibson', u'buy', u'person', u'pacif', u'island', u'report']
[u'metal', u'industri', u'welcom', u'increas', u'tafe', u'place']
[u'west', u'focus', u'secur', u'telescop']
[u'minist', u'hear', u'lake', u'cathi', u'school']
[u'minist', u'notch', u'travel', u'expens']
[u'minist', u'urg', u'state', u'forest', u'plan']
[u'fire', u'broadsid', u'bendigo', u'licenc']
[u'nato', u'agre', u'boost', u'iraq', u'train', u'forc']
[u'netbal', u'pay', u'bonus', u'beat', u'silver', u'fern']
[u'hous', u'rep', u'speaker', u'heavi', u'scrutini']
[u'nhulunbuy', u'attempt', u'rape', u'convict', u'quash']
[u'nolan', u'stepdaught', u'lose', u'fight', u'paint']
[u'governor', u'undergo', u'surgeri']
[u'driver', u'ignor', u'road', u'safeti', u'messag', u'polic']
[u'opposit', u'grow', u'highway', u'plan']
[u'opposit', u'question', u'govt', u'school', u'retent', u'figur']
[u'rat', u'flow', u'council', u'coffer']
[u'pakistani', u'cleric', u'face', u'hundr', u'child', u'abus']
[u'pakistan', u'rope', u'tour', u'match']
[u'pathan', u'scalp', u'bangladesh', u'fall', u'cheapli']
[u'path', u'clear', u'bendigo', u'bank', u'redevelop']
[u'pearc', u'put', u'hand', u'citi']
[u'perth', u'melbourn', u'super', u'decis', u'today']
[u'perth', u'host', u'super', u'team']
[u'philippin', u'rescu', u'worker', u'halt', u'search']
[u'plan', u'put', u'focus', u'flood', u'prone', u'land']
[u'play', u'chanc', u'recess']
[u'polic', u'station', u'upgrad', u'pledg']
[u'polic', u'hunt', u'bottleshop', u'knife', u'bandit']
[u'polic', u'involv', u'shoot', u'return', u'clean', u'drug', u'test']
[u'polic', u'pleas', u'station', u'revamp', u'plan']
[u'polic', u'probe', u'urg', u'sack', u'hospit', u'board']
[u'polic', u'releas', u'photo', u'suspect', u'coast', u'shoot']
[u'polic', u'search', u'escape']
[u'polic', u'sight', u'drink', u'driver']
[u'polic', u'station', u'facelift']
[u'polic', u'tackl', u'sloppi', u'driver']
[u'psychologist', u'plead', u'guilti', u'child', u'porn', u'charg']
[u'public', u'remind', u'cast', u'vote', u'kingaroy']
[u'push', u'boost', u'region', u'dentist', u'number']
[u'campaign', u'target', u'young', u'male', u'driver']
[u'race', u'club', u'har', u'fund']
[u'rain', u'news', u'stone', u'fruit', u'grower']
[u'rain', u'delay', u'start', u'decid']
[u'rain', u'doesnt', u'stop', u'water', u'ban']
[u'rain', u'help', u'boost', u'local', u'reservoir']
[u'rain', u'leav', u'eastern', u'central', u'australia', u'awash']
[u'rann', u'frustrat', u'anti', u'hoon', u'complaint']
[u'rejuven', u'hugh', u'grab', u'master', u'jump']
[u'resid', u'extend', u'recycl', u'option']
[u'resid', u'push', u'birth', u'servic', u'return']
[u'rickett', u'oust', u'power', u'pakistan', u'open', u'squash']
[u'rift', u'deni', u'bullet', u'freeman']
[u'riverland', u'avoid', u'major', u'storm', u'incid']
[u'road', u'safeti', u'crackdown', u'begin']
[u'roam', u'hippo', u'final', u'captur']
[u'robert', u'defend', u'commission', u'mint', u'swindl']
[u'rural', u'famili', u'group', u'get', u'fund', u'boost']
[u'schwab', u'head', u'match', u'review', u'committe']
[u'schwab', u'head', u'revamp', u'match', u'review', u'committe']
[u'scout', u'hall', u'sale', u'draw', u'mayor', u'anger']
[u'search', u'continu', u'woman', u'flood', u'mishap']
[u'seven', u'nomin', u'preseason', u'draft']
[u'seventh', u'person', u'arrest', u'hair', u'beauti', u'arson']
[u'sharon', u'invit', u'labour', u'coalit', u'talk']
[u'sharon', u'win', u'likud', u'vote']
[u'slow', u'start', u'turtl', u'lay', u'season']
[u'soldier', u'home', u'east', u'timor']
[u'south', u'australia', u'toughen', u'child', u'protect', u'law']
[u'spiritu', u'spam', u'make', u'inbox']
[u'steelwork', u'clean', u'plan']
[u'storm', u'pelt', u'melbourn']
[u'sunshin', u'coast', u'rain', u'return']
[u'super', u'size', u'astronaut', u'food', u'suppli']
[u'sydney', u'hold', u'northern', u'iraq']
[u'tafe', u'teacher', u'withhold', u'exam', u'result']
[u'tafe', u'wage', u'deal', u'seal']
[u'petrol', u'price', u'queri', u'wake', u'market']
[u'tast', u'tasmania', u'festiv', u'offer', u'flavour']
[u'milit', u'wound', u'isra', u'strike']
[u'tindal', u'miss', u'start', u'nation']
[u'torr', u'strait', u'island', u'return', u'indigen']
[u'tourist', u'spend', u'alic', u'spring']
[u'tractor', u'train', u'crash', u'spark', u'train', u'review']
[u'trade', u'deficit', u'widen']
[u'trawler', u'oper', u'hope', u'fuel', u'respit']
[u'trio', u'appear', u'court', u'york', u'racial', u'abus', u'charg']
[u'truck', u'disput', u'resolv', u'christma']
[u'truck', u'driver', u'confid', u'resolv', u'rat', u'disput']
[u'tweed', u'look', u'lure', u'film', u'maker']
[u'tyson', u'face', u'jail', u'term']
[u'underground', u'wall', u'design', u'steelwork']
[u'envoy', u'sceptic', u'resolut', u'talk', u'sudan']
[u'currenc', u'buy', u'continu']
[u'tool', u'monkey', u'busi', u'brazil']
[u'report', u'confin', u'home', u'refus']
[u'soldier', u'guilti', u'murder', u'wound', u'iraqi']
[u'verona', u'ask', u'visitor', u'pledg', u'love']
[u'vibrat', u'research', u'wake', u'trucki']
[u'visit', u'anwar', u'heap', u'prais', u'indonesia']
[u'creat', u'marin', u'park']
[u'warragamba', u'hit', u'lowest', u'level']
[u'warrior', u'pakistan', u'rope']
[u'warrior', u'pakistani', u'attack']
[u'welfar', u'group', u'call', u'overhaul', u'child']
[u'western', u'drench']
[u'william', u'tip', u'scale', u'record', u'weight']
[u'winemak', u'vine', u'diseas', u'advic']
[u'work', u'begin', u'bargara', u'unit']
[u'zimbabw', u'cricket', u'face', u'fresh', u'crisi']
[u'zimbabw', u'rein', u'right', u'group']
[u'venezuela', u'crash']
[u'tourism', u'bodi', u'target', u'queensland']
[u'afghan', u'milit', u'arrest']
[u'alaska', u'fear', u'massiv', u'spill', u'ship', u'snap']
[u'black', u'cowan', u'ban', u'roger', u'tackl']
[u'allenbi', u'predict', u'master', u'surg']
[u'amateur', u'astronom', u'return', u'observatori']
[u'anim', u'right', u'group', u'widen', u'attack', u'aussi', u'wool']
[u'anti', u'graft', u'offici', u'investig', u'suharto', u'daughter']
[u'armi', u'target', u'pakistan', u'bomb']
[u'australia', u'congratul', u'vanuatu']
[u'babi', u'white', u'rhino', u'make', u'debut', u'melbourn']
[u'berlusconi', u'alli', u'jail', u'mafia', u'associ']
[u'biker', u'cruis', u'hobart']
[u'black', u'watch', u'troop', u'home', u'christma']
[u'blue', u'chase', u'easi', u'target', u'canberra']
[u'blue', u'redback', u'clash', u'short']
[u'swamp', u'land']
[u'brazilian', u'polic', u'crack', u'tourist', u'attack']
[u'burrow', u'head', u'intern', u'union', u'group']
[u'bush', u'pick', u'homeland', u'secur', u'withdraw']
[u'rage', u'iron', u'mike']
[u'carr', u'govt', u'fail', u'howard', u'say']
[u'cat', u'headston', u'prove', u'centuri', u'artefact']
[u'chemic', u'spill', u'clean', u'continu']
[u'children', u'ban', u'scari', u'mari', u'poppin', u'play']
[u'clijster', u'hop', u'play', u'open']
[u'communiti', u'isol', u'flood', u'eastern']
[u'communiti', u'group', u'welcom', u'drop', u'insur', u'cost']
[u'count', u'begin', u'taiwan', u'elect']
[u'court', u'quash', u'berlusconi', u'corrupt', u'charg']
[u'take', u'player', u'year', u'award']
[u'democrat', u'weigh', u'univers', u'disput']
[u'doctor', u'urg', u'protect', u'abus', u'patient']
[u'dont', u'write', u'pakistan', u'say', u'lille']
[u'doomadge', u'bodi', u'arriv', u'palm', u'island']
[u'elder', u'hospit', u'road', u'rage', u'attack']
[u'elder', u'invit', u'inspect', u'custodi', u'program']
[u'kill', u'pakistan', u'bomb', u'blast']
[u'give', u'galileo', u'project', u'green', u'light']
[u'fair', u'trade', u'keep', u'close', u'club', u'pub']
[u'flood', u'clean', u'continu', u'eastern', u'state']
[u'sprint', u'champ', u'collin', u'get', u'year']
[u'french', u'troop', u'ivorian', u'crowd']
[u'futur', u'darwin', u'mall', u'spark', u'debat']
[u'game', u'organis', u'dismiss', u'complaint', u'villag']
[u'ghanian', u'presid', u'elect']
[u'global', u'right', u'pledg', u'consider', u'strain']
[u'global', u'vaccin', u'bank', u'fight', u'terror']
[u'golden', u'circl', u'sharehold', u'agre', u'board']
[u'govern', u'rebel', u'accus', u'break', u'darfur']
[u'govt', u'buyback', u'protect', u'reef']
[u'govt', u'fund', u'counsel', u'state', u'ward']
[u'greec', u'porto', u'success', u'memor']
[u'heidfeld', u'sizzl', u'race', u'william', u'place']
[u'driver', u'urg']
[u'hundr', u'attend', u'doomadge', u'funer']
[u'mammoth', u'flute', u'german', u'cave']
[u'india', u'draw', u'kiwi', u'meet', u'pakistan', u'bronz']
[u'iraqi', u'kidnapp', u'releas', u'south', u'asian', u'hostag']
[u'jam', u'brown', u'battl', u'cancer']
[u'journalist', u'death', u'highest', u'decad']
[u'journalist', u'deni', u'report', u'troop', u'risk']
[u'kashmir', u'rebel', u'kill', u'policemen']
[u'kenya', u'tunisia', u'seven', u'heaven', u'australia']
[u'lazio', u'stadium', u'real', u'fin', u'racism']
[u'lonard', u'make', u'huntingdal']
[u'charg', u'road', u'rage', u'incid']
[u'shoot', u'foil', u'robberi']
[u'marsh', u'quit', u'england']
[u'mckenzi', u'leap', u'master', u'lead']
[u'detaine', u'join', u'baxter', u'hunger', u'strike']
[u'mother', u'hospit', u'light', u'plane', u'crash']
[u'urg', u'local', u'leadership', u'share', u'respons']
[u'mugab', u'rise', u'zimbabwean', u'live', u'poverti']
[u'murray', u'bridg', u'home', u'flood', u'heavi', u'rain']
[u'nasa', u'telescop', u'planet', u'construct']
[u'law', u'forc', u'zimbabw', u'ngos', u'hide']
[u'nigerian', u'mother', u'escap', u'stone', u'sentenc']
[u'hospit', u'lack', u'resourc', u'opposit']
[u'minist', u'defend', u'depart']
[u'nurs', u'reject', u'govern', u'offer']
[u'price', u'drop', u'trader', u'brush', u'opec']
[u'opec', u'reassur', u'market', u'surplus', u'cut']
[u'opec', u'excess', u'suppli']
[u'pakistani', u'polic', u'arrest', u'bomb', u'suspect']
[u'pakistan', u'struggl', u'warrior']
[u'palm', u'island', u'farewel', u'cameron', u'doomadge']
[u'palm', u'island', u'prepar', u'funer']
[u'pearson', u'give', u'cautious', u'support', u'share']
[u'phelp', u'shin', u'brightest', u'biggest', u'stage']
[u'volcano', u'risk', u'eas']
[u'pont', u'wake']
[u'port', u'cooge', u'redevelop', u'fight', u'go', u'court']
[u'protestor', u'ralli', u'brisban', u'death']
[u'push', u'introduc', u'racial', u'vilif', u'law']
[u'attract', u'film', u'product']
[u'escap', u'jail', u'term', u'illeg', u'land']
[u'rattlesnak', u'hamper', u'effort', u'dous', u'film']
[u'redback', u'record', u'unlik', u'victori', u'blue']
[u'restor', u'world', u'beauti', u'urg', u'peac', u'prize', u'winner']
[u'school', u'need', u'smoke', u'detector', u'opposit']
[u'senden', u'earli', u'master', u'charg']
[u'shark', u'kill', u'spearfisherman', u'north']
[u'storm', u'continu', u'lash', u'victoria', u'clean']
[u'strong', u'turnout', u'katherin', u'elect']
[u'sydney', u'ibi', u'popul', u'monitor']
[u'taiwan', u'begin', u'vote', u'parliament']
[u'compani', u'look', u'build', u'wind', u'farm']
[u'tasmania', u'search', u'interst', u'prison', u'worker']
[u'teenag', u'arrest', u'polic', u'pursuit']
[u'tendulkar', u'equal', u'world', u'mark', u'india', u'domin']
[u'tendulkar', u'record', u'knock', u'cement', u'india', u'lead']
[u'tension', u'high', u'brisban', u'protest', u'ralli']
[u'test', u'spare', u'cancer', u'patient', u'chemo']
[u'thai', u'politician', u'urg', u'stop', u'show', u'riot', u'video']
[u'polic', u'injur', u'hervey', u'parti']
[u'tiger', u'hold', u'wildcat']
[u'turkey', u'silverston', u'race', u'calendar']
[u'charg', u'year', u'murder']
[u'face', u'court', u'year', u'murder']
[u'palestinian', u'kill', u'gaza']
[u'detaine', u'detail', u'guantanamo', u'abus', u'claim']
[u'union', u'warn', u'qanta', u'staff', u'shortag']
[u'court', u'hear', u'appeal', u'music', u'swap', u'copyright']
[u'soldier', u'jail', u'murder', u'iraqi', u'teenag']
[u'stock', u'slight']
[u'consid', u'treat', u'wast', u'water', u'drink']
[u'govt', u'target', u'cane', u'toad', u'campaign']
[u'warrior', u'thrash', u'pakistan', u'insid', u'day']
[u'wool', u'task', u'forc', u'play', u'boycott', u'claim']
[u'yacht', u'legend', u'polic', u'chase']
[u'yushchenko', u'hospit', u'test']
[u'yushchenko', u'stand', u'poison', u'claim']
[u'govt', u'look', u'prison', u'staff']
[u'grape', u'grower', u'fear', u'record', u'crop']
[u'alga', u'toxin', u'blame', u'tanzania', u'flamingo', u'death']
[u'arab', u'nation', u'resist', u'reform', u'call']
[u'australian', u'spend', u'billion', u'christma']
[u'barca', u'snatch', u'late', u'winner']
[u'betrand', u'wife', u'recov', u'jack']
[u'biker', u'ride', u'rememb', u'daniel', u'morcomb']
[u'bomb', u'explod', u'outsid', u'spanish', u'busi']
[u'bowden', u'call', u'gentleman', u'agreement']
[u'bruni', u'island', u'ferri', u'mark', u'year', u'servic']
[u'burma', u'free', u'prison']
[u'bushrang', u'tiger']
[u'bushrang', u'tame', u'tiger']
[u'child', u'sexual', u'abus', u'summit']
[u'clash', u'erupt', u'bangladeshi', u'form', u'human', u'chain']
[u'clean', u'continu', u'victoria', u'brace']
[u'committe', u'advis', u'govt', u'harbour', u'protect']
[u'communist', u'contest', u'iraq', u'elect']
[u'council', u'share', u'idea', u'beach', u'manag']
[u'crisi', u'call', u'expect', u'rise', u'christma']
[u'darfur', u'crisi', u'talk', u'resum']
[u'darwin', u'honour', u'east', u'timor', u'braveri']
[u'dental', u'wait', u'list', u'long', u'opposit']
[u'doctor', u'suspect', u'foul', u'play', u'yushchenko', u'poison']
[u'eckstein', u'take', u'open', u'round', u'ironman', u'seri']
[u'england', u'humbl', u'south', u'africa']
[u'everton', u'liverpool', u'derbi']
[u'famili', u'escap', u'injuri', u'light', u'plane', u'crash']
[u'fan', u'protest', u'hawk', u'evict']
[u'drown', u'malaysia', u'flood']
[u'funer', u'servic', u'honour', u'peacemak', u'hassan']
[u'gallop', u'govern', u'lose', u'patienc', u'nurs', u'union']
[u'gavaskar', u'tendulkar', u'test', u'centuri']
[u'govt', u'warn', u'youth', u'unpaid', u'work', u'trap']
[u'green', u'machin', u'german', u'titl', u'showdown']
[u'green', u'win', u'master', u'play', u'thriller']
[u'heavi', u'rain', u'eas', u'drought', u'condit']
[u'tszyu', u'warn', u'hatton']
[u'indonesian', u'volcano', u'blanket', u'town', u'villag']
[u'infight', u'grip', u'congo', u'armi']
[u'inmat', u'climb', u'human', u'ladder', u'freedom']
[u'insurg', u'target', u'high', u'rank', u'iraqi', u'polic']
[u'investig', u'begin', u'fatal', u'shark', u'attack']
[u'isra', u'troop', u'gaza']
[u'israel', u'releas', u'prison', u'ahead', u'palestinian']
[u'kiwi', u'japan', u'discuss', u'world', u'host', u'deal', u'report']
[u'klitschko', u'batter', u'william', u'retain', u'crown']
[u'labour', u'likud', u'israel', u'coalit', u'talk']
[u'post', u'sound', u'netherland', u'buri', u'princ']
[u'lead', u'sydney', u'restauranteur', u'die']
[u'arrest', u'polic', u'pursuit']
[u'bash', u'death', u'cricket']
[u'die', u'sydney', u'road', u'rage', u'attack']
[u'custodi', u'sydney', u'road', u'rage', u'death']
[u'mcewen', u'chase', u'surfer']
[u'mcgee', u'triumph', u'gold', u'coast']
[u'medic', u'exam', u'declar', u'bush', u'duti']
[u'memori', u'plan', u'shark', u'attack', u'victim']
[u'monti', u'move', u'closer', u'breakthrough', u'triumph']
[u'monti', u'tame', u'tiger', u'tournament']
[u'nanni', u'problem', u'derail', u'bush', u'homeland', u'secur']
[u'nephew', u'hand', u'arafat', u'medic', u'record']
[u'bridg', u'brisban', u'river']
[u'opposit', u'anger', u'jenolan', u'cave']
[u'govt', u'will', u'consid', u'racial', u'vilif']
[u'nurs', u'vote', u'govern', u'offer']
[u'opposit', u'call', u'road', u'safeti', u'legisl']
[u'origin', u'bridget', u'jone', u'diari', u'sale']
[u'paedophil', u'ferguson', u'releas']
[u'pere', u'authoris', u'begin', u'israel', u'coalit', u'talk']
[u'polic', u'chief', u'urg', u'calm', u'road', u'rage', u'death']
[u'polic', u'hunt', u'servic', u'station', u'robberi']
[u'polic', u'investig', u'attack']
[u'polic', u'investig', u'overnight', u'arm', u'robberi']
[u'polic', u'search', u'miss']
[u'portugues', u'govern', u'resign', u'ahead', u'elect']
[u'powel', u'say', u'arab', u'forum', u'success', u'despit', u'deleg']
[u'power', u'watchdog', u'head', u'resign']
[u'china', u'parti', u'major', u'taiwan', u'elect']
[u'rain', u'boost', u'coastal', u'dam', u'inland', u'miss']
[u'rain', u'leav', u'part', u'awash']
[u'ranger', u'dunde', u'demolit']
[u'rare', u'plant', u'bushland']
[u'report', u'eavesdrop', u'atom', u'agenc', u'chief']
[u'resid', u'sleep', u'easier', u'flood', u'water', u'subsid']
[u'road', u'crash', u'victim', u'rememb']
[u'rural', u'doctor', u'unhappi', u'indigen', u'health']
[u'govt', u'offer', u'flood', u'victim', u'assist']
[u'salman', u'readi', u'aussi', u'attack']
[u'search', u'continu', u'miss', u'fisherman']
[u'sixer']
[u'sixer', u'maintain', u'unbeaten', u'home', u'record']
[u'somali', u'parliament', u'dissolv', u'govern']
[u'studi', u'delv', u'mind', u'arsonist']
[u'busi', u'benefit', u'cruis', u'tourism']
[u'telstra', u'accus', u'direct', u'consum', u'pay']
[u'tendulkar', u'cement', u'place', u'histori']
[u'tendulkar', u'record', u'india', u'turn', u'screw']
[u'thirteen', u'dead', u'wound', u'philippin', u'bomb']
[u'tibetan', u'struggl', u'global', u'spotlight', u'dalai', u'lama']
[u'tiger', u'chase', u'victori']
[u'tough', u'topic', u'triumph', u'euro', u'oscar']
[u'kill', u'colombo', u'concert', u'blast']
[u'udines', u'cement', u'place', u'canio', u'inspir', u'lazio']
[u'ukrain', u'govern', u'silent', u'poison']
[u'ukrain', u'reopen', u'poison', u'probe']
[u'union', u'green', u'group', u'push', u'clean', u'job']
[u'lead', u'offens', u'taliban']
[u'militari', u'clarifi', u'iraq', u'death']
[u'soldier', u'kill', u'wound', u'iraq', u'fight']
[u'govt', u'buy', u'helicopt']
[u'wilkinson', u'match', u'winner', u'return']
[u'winner', u'emerg', u'katherin', u'eleciton']
[u'woolmer', u'defend', u'struggl', u'pakistan']
[u'yushchenko', u'poison', u'doctor']
[u'kill', u'malaysian', u'flood']
[u'abar', u'tip', u'record', u'commod', u'export']
[u'abba', u'apologis', u'kuwait', u'iraq', u'support']
[u'aborigin', u'remain', u'wind', u'farm', u'construct']
[u'abus', u'victim', u'ask', u'repay', u'compens']
[u'academ', u'claim', u'be', u'invad', u'remot']
[u'begin', u'review', u'plan', u'law']
[u'campaign', u'target', u'drink', u'driver', u'loser']
[u'australian', u'obes', u'drug', u'final', u'test']
[u'alleg', u'babi', u'kidnapp', u'elect', u'face', u'trial']
[u'ord', u'edg', u'higher']
[u'anaesthetist', u'contract', u'wont', u'renew']
[u'seek', u'compo', u'stromlo', u'bushfir', u'damag']
[u'appeal', u'launch', u'tent', u'embassi', u'evict']
[u'arab', u'actor', u'turn', u'hollywood', u'stereotyp']
[u'arm', u'hold', u'trigger', u'crime', u'forum']
[u'australian', u'generos', u'record', u'level']
[u'australia', u'wari', u'pakistan', u'say', u'gilchrist']
[u'aust', u'respond', u'iraqi', u'militari', u'train', u'request']
[u'aust', u'detain', u'illeg', u'fishermen', u'onshor']
[u'author', u'caus', u'scrap', u'yard']
[u'bangladesh', u'coach', u'lash', u'critic']
[u'ban', u'electrician', u'move']
[u'barghouti', u'withdraw', u'palestinian', u'elect']
[u'barn', u'fin', u'master', u'outburst']
[u'baxter', u'protest', u'deni', u'water', u'sleep']
[u'plan', u'ahead', u'limeston', u'mine']
[u'biker', u'hand', u'fund']
[u'blaze', u'claim', u'farm', u'hous']
[u'blind', u'use', u'sixth', u'sens', u'detect', u'emot']
[u'breakthrough', u'tafe', u'teacher']
[u'brisban', u'mayor', u'vote', u'disgrac']
[u'bullet', u'triumph', u'hawk']
[u'driver', u'secur', u'crowbar']
[u'driver', u'threaten', u'strike', u'safeti']
[u'busi', u'urg', u'fight', u'domest', u'violenc']
[u'busi', u'warn', u'christma', u'theft']
[u'calder', u'highway', u'duplic', u'year', u'away']
[u'calvari', u'help', u'croc', u'bite', u'taipan']
[u'cellar', u'door', u'sale', u'drop', u'wineri']
[u'celtic', u'regain', u'spot']
[u'chelsea', u'forc', u'draw', u'despit', u'henri', u'doubl']
[u'china', u'get', u'readi', u'artifici', u'beauti', u'contest']
[u'china', u'beauti', u'line']
[u'christma', u'spirit', u'take', u'communiti']
[u'church', u'outrag', u'devil', u'christma', u'grotto']
[u'cocain', u'smuggler', u'give', u'year', u'jail']
[u'communiti', u'farewel', u'rita', u'mill']
[u'condobolin', u'halt', u'develop', u'pend', u'flood', u'studi']
[u'consortium', u'choos', u'build', u'meander']
[u'corrupt', u'polic', u'offic', u'jail', u'theft']
[u'cotton', u'oversuppli', u'hit', u'aust', u'export']
[u'council', u'back', u'coastal', u'walk', u'plan']
[u'council', u'back', u'subdivis']
[u'councillor', u'claim', u'support', u'transit', u'centr', u'sale']
[u'count', u'tare', u'elect']
[u'cpsu', u'leader', u'tip', u'head', u'union', u'movement']
[u'crime', u'rate', u'fall', u'alic', u'spring', u'katherin']
[u'defeat', u'strike', u'belmont', u'world', u'hop']
[u'democrat', u'green', u'merger', u'tabl']
[u'detaine', u'access', u'food', u'water', u'immigr']
[u'develop', u'board', u'form', u'corpor', u'govern']
[u'downer', u'silent', u'nuke', u'offer']
[u'downer', u'turn', u'nuke', u'offer', u'report']
[u'driver', u'face', u'drug', u'test', u'regim']
[u'drought', u'grip', u'hunter']
[u'east', u'timor', u'turn', u'china', u'energi', u'explor']
[u'come', u'fever']
[u'elder', u'woman', u'lead', u'polic', u'chase']
[u'elliott', u'bankruptci', u'declar', u'loom']
[u'elliott', u'creditor', u'offer']
[u'email', u'show', u'region', u'program', u'slush', u'fund']
[u'england', u'danger', u'warm', u'defeat']
[u'etoo', u'okocha', u'drogba', u'african', u'award', u'shortlist']
[u'fan', u'cautious', u'welcom', u'child', u'abus', u'summit']
[u'fear', u'train', u'delay', u'derail', u'student', u'studi', u'plan']
[u'feder', u'fund', u'boost', u'bush', u'hostel']
[u'firefight', u'clean', u'ammunit', u'diesel', u'spill']
[u'fisherman', u'miracul', u'surviv']
[u'flood', u'make', u'work', u'aplenti']
[u'floodwat', u'bring', u'river', u'benefit']
[u'foot', u'surgeri', u'sidelin', u'buderus']
[u'franc', u'hopman']
[u'fund', u'women', u'refug', u'futur']
[u'decis', u'govt', u'hand']
[u'goldfield', u'arrest', u'murder']
[u'govt', u'clarifi', u'rise', u'number', u'assault']
[u'govt', u'prepar', u'spend', u'labor', u'say']
[u'govt', u'reef', u'fish', u'licenc']
[u'green', u'hail', u'dream', u'come', u'true']
[u'green', u'democrat', u'merger', u'card']
[u'grower', u'monitor', u'split', u'grape']
[u'grow', u'privat', u'health', u'option']
[u'hear', u'begin', u'underworld', u'murder', u'case']
[u'heat', u'wave', u'expect', u'drain', u'power', u'suppli']
[u'henri', u'award', u'shoo', u'wenger']
[u'hoon', u'rule', u'troop', u'commit']
[u'icac', u'focus', u'westfield', u'orang', u'grove', u'hear']
[u'illeg', u'tobacco', u'transport', u'incred', u'gullibl']
[u'immigr', u'dept', u'wont', u'sway', u'hunger', u'strike']
[u'india', u'cruis', u'victori', u'bangladesh']
[u'indigen', u'council', u'discuss', u'atsic', u'option']
[u'indonesian', u'soldier', u'shoot', u'separatist', u'aceh']
[u'investig', u'launch', u'timber', u'yard', u'blaze']
[u'fail', u'year', u'worker', u'tell']
[u'worker', u'condemn', u'bank', u'manag']
[u'iran', u'impend', u'nuclear', u'threat', u'baradei']
[u'isra', u'helicopt', u'gaza', u'missil', u'strike']
[u'isra', u'troop', u'kill', u'tunnel', u'bomb']
[u'katherin', u'council', u'consid', u'fin', u'voter']
[u'kindergarten', u'fee', u'year']
[u'kiwi', u'play', u'japan', u'host', u'report']
[u'lack', u'flight', u'hamper', u'antarct', u'research']
[u'lawyer', u'say', u'saddam', u'hunger', u'strike']
[u'mactier', u'win', u'pursuit', u'gold']
[u'charg', u'murder', u'follow', u'extradit']
[u'hold', u'custodi', u'road', u'rage', u'death']
[u'honour', u'east', u'timor', u'rescu', u'role']
[u'maui', u'surf', u'event', u'shape', u'australian', u'affair']
[u'mear', u'take', u'silver']
[u'mediat', u'finalis', u'agreement', u'evan', u'asset']
[u'meet', u'shed', u'light', u'alburi', u'worker', u'job']
[u'migrat', u'bird', u'arriv', u'byron']
[u'mine', u'explor', u'drop', u'prompt', u'break', u'push']
[u'indigen', u'public', u'servant']
[u'rain', u'riverland']
[u'motiv', u'philippin', u'market', u'explos', u'unclear']
[u'possibl', u'post', u'christma', u'pageant']
[u'echo', u'esso', u'roster', u'concern']
[u'renew', u'hospit', u'boost']
[u'nedv', u'strike', u'keep', u'juve', u'point', u'clear']
[u'korea', u'lash', u'hate']
[u'korea', u'want', u'south', u'answer', u'nuclear', u'question']
[u'noffk', u'defend', u'cricket', u'australia', u'contract']
[u'minist', u'visit', u'flood', u'damag', u'area']
[u'plan', u'levi', u'truck', u'sydney']
[u'nurs', u'union', u'stand', u'firm', u'despit', u'govt', u'mail']
[u'nurs', u'union', u'demand', u'wage', u'disput']
[u'offic', u'investig', u'appar', u'croc', u'attack']
[u'opposit', u'parti', u'begin', u'talk', u'coalit']
[u'paper', u'worker', u'hope', u'loss', u'rethink']
[u'paramed', u'challeng', u'judg', u'opinion', u'kelli']
[u'partnership', u'aim', u'boost', u'tourism', u'hospit']
[u'rise', u'deal', u'tafe', u'student', u'result']
[u'perman', u'suspens', u'nuclear', u'program']
[u'perth', u'look', u'grind', u'run']
[u'perth', u'close', u'tiger', u'snake']
[u'pilkadari', u'lose', u'asian', u'master', u'play']
[u'asic', u'urg']
[u'pocket', u'maxi', u'face', u'scratch', u'sydney', u'hobart']
[u'polic', u'theft', u'worri']
[u'polic', u'expand', u'search', u'miss', u'fisherman']
[u'polic', u'hold', u'road', u'safeti', u'crackdown']
[u'polic', u'injur', u'hervey', u'parti']
[u'polic', u'injur', u'tomahawk', u'attack']
[u'polic', u'search', u'miss', u'diver']
[u'polic', u'seek', u'theft']
[u'public', u'ask', u'help', u'subsidis', u'fee', u'transport']
[u'public', u'say', u'street', u'closur']
[u'public', u'urg', u'spread', u'christma', u'cheer']
[u'govt', u'defend', u'cost', u'anti', u'smoke']
[u'face', u'child', u'charg']
[u'ract', u'ask', u'member', u'petrol', u'price']
[u'ract', u'join', u'petrol', u'pump']
[u'rain', u'doesnt', u'chang', u'drought', u'status']
[u'rain', u'eas', u'drought', u'concern']
[u'real', u'madrid', u'stadium', u'evacu', u'bomb', u'scare']
[u'real', u'match', u'abandon', u'bomb', u'threat', u'valencia']
[u'region', u'hous', u'afford', u'wan']
[u'relief', u'canberra', u'home', u'buyer']
[u'report', u'highlight', u'lifeboat', u'safeti', u'issu']
[u'research', u'progress', u'psoriasi', u'caus']
[u'rilli', u'win', u'player', u'month', u'award']
[u'roadsid', u'drug', u'test', u'earli', u'result']
[u'romanian', u'opposit', u'head', u'score', u'upset', u'poll', u'victori']
[u'romanian', u'vote', u'close']
[u'sabotag', u'suspect', u'iraq', u'blackout']
[u'initi', u'target', u'adelaid', u'youth', u'unemploy']
[u'nation', u'trust', u'head', u'help', u'struggl', u'orchestra']
[u'school', u'happi', u'overal', u'result']
[u'search', u'call', u'take', u'croc']
[u'search', u'fail', u'miss', u'fisherman']
[u'search', u'miss', u'diver', u'resum', u'morn']
[u'seven', u'kill', u'baghdad', u'suicid', u'blast']
[u'seven', u'marin', u'kill', u'iraq']
[u'sever', u'storm', u'leav', u'travel', u'strand']
[u'sideway', u'snatch', u'film', u'award', u'marrakesh']
[u'soccer', u'ball', u'caus', u'build', u'evacu']
[u'south', u'east', u'malle', u'get', u'interim', u'drought']
[u'spain', u'dethron', u'dutch', u'champion', u'trophi']
[u'spanish', u'stadium', u'evacu', u'bomb', u'scare']
[u'stabl', u'rat', u'help', u'eas', u'hous', u'squeez']
[u'storm', u'bring', u'delug', u'western', u'victoria']
[u'storm', u'grind', u'plan', u'sydney', u'airport']
[u'storm', u'lash', u'part', u'sydney']
[u'storm', u'lash', u'sydney', u'hunter', u'valley']
[u'stroke', u'risk', u'greater', u'migrain', u'suffer', u'studi']
[u'student', u'accompani', u'lennon', u'european', u'tour']
[u'studi', u'claim', u'climat', u'chang', u'foster', u'reef', u'growth']
[u'studi', u'profil', u'aborigin']
[u'sudan', u'oxfam', u'head', u'leav', u'countri']
[u'swimmer', u'warn', u'summer', u'danger']
[u'sword', u'wield', u'bandit', u'hold', u'servo']
[u'tafe', u'teacher', u'student', u'result']
[u'retail', u'target', u'safeti', u'campaign']
[u'teen', u'help', u'rescu', u'famili', u'mishap']
[u'teen', u'remain', u'custodi', u'follow', u'jack']
[u'thiev', u'ruin', u'christma', u'sick', u'kid']
[u'town', u'remain', u'isol', u'floodwat', u'reced']
[u'tradit', u'custodian', u'fight', u'develop', u'plan']
[u'truck', u'crash', u'claim', u'victorian']
[u'truck', u'crash', u'block', u'highway']
[u'turtl', u'nest', u'season', u'begin']
[u'rescu', u'schouten', u'island']
[u'underworld', u'victim', u'corner', u'court', u'tell']
[u'union', u'seek', u'hospit', u'secur', u'boost']
[u'union', u'welcom', u'holden', u'offer']
[u'deni', u'saddam', u'hunger', u'strike']
[u'film', u'institut', u'pick', u'year', u'flick']
[u'missil', u'defenc', u'test', u'delay']
[u'virtual', u'build', u'test', u'develop', u'impact']
[u'move', u'major', u'conserv', u'plan']
[u'word', u'erupt', u'olymp']
[u'warwick', u'saddl', u'polocross']
[u'waterfront', u'develop', u'boost', u'economi']
[u'watson', u'symond', u'return', u'bull', u'line']
[u'wife', u'killer', u'get', u'year', u'bar']
[u'woman', u'jail', u'street', u'stab']
[u'wood', u'take', u'world', u'challeng', u'california']
[u'approv', u'iraq', u'afghan', u'bid', u'membership', u'talk']
[u'yushchenko', u'return', u'campaign', u'trail']
[u'zdrilic', u'sign', u'sydney']
[u'test', u'dead', u'hendra', u'virus']
[u'arrest', u'high', u'speed', u'chase']
[u'bian', u'quit', u'parti', u'chief', u'poll', u'loss']
[u'aborigin', u'communiti', u'seek', u'wash', u'fuel', u'deal']
[u'accus', u'underworld', u'killer', u'score', u'court']
[u'urg', u'touchi', u'feeli', u'indigen', u'affair']
[u'anderson', u'deni', u'telstra', u'sale', u'immin']
[u'anderson', u'dismiss', u'pork', u'barrel', u'evid', u'claim']
[u'anim', u'cell', u'transplant', u'decis', u'disappoint']
[u'babi', u'earli', u'xmas', u'present', u'democrat', u'senat']
[u'beckham', u'nativ', u'scene', u'attack', u'london']
[u'beef', u'milk', u'earn', u'tip', u'rise']
[u'birth', u'servic', u'see', u'crucial', u'rural', u'area']
[u'blackout', u'hamper', u'christma', u'trade']
[u'board', u'uphold', u'complaint', u'corner']
[u'boorowa', u'ponder', u'wind', u'farm', u'plan']
[u'plan', u'hunter', u'fuel', u'project']
[u'busi', u'confid', u'drop', u'despit', u'strong', u'economi']
[u'cadet', u'clear', u'drug', u'claim', u'graduat']
[u'cheaper', u'local', u'govt', u'elect']
[u'cathol', u'church', u'apologis', u'abus', u'victim']
[u'see', u'posit', u'council', u'demis']
[u'chilean', u'judg', u'charg', u'pinochet']
[u'chinatown', u'site', u'decis', u'like', u'defer']
[u'clean', u'continu', u'backpack']
[u'climat', u'research', u'help', u'predict', u'coral', u'bleach']
[u'colleg', u'surpris', u'hors', u'talk', u'snub']
[u'communiti', u'pray', u'palm', u'reconcili']
[u'cook', u'council']
[u'coulthard', u'edg', u'closer', u'bull', u'deal']
[u'council', u'floor', u'brake', u'transit', u'centr', u'poll']
[u'council', u'hervey', u'industri', u'estat', u'plan']
[u'council', u'put', u'focus', u'drain', u'mainten']
[u'council', u'question', u'nation', u'park', u'plan']
[u'council', u'see', u'benefit', u'rat', u'respit']
[u'council', u'consid', u'charlestown', u'develop']
[u'court', u'offer', u'repriev', u'disabl', u'carer']
[u'court', u'recognis', u'torr', u'strait', u'nativ', u'titl']
[u'croc', u'rilli', u'score', u'player', u'month', u'award']
[u'darl', u'down', u'form', u'local', u'govt', u'super', u'group']
[u'date', u'gold', u'unlik', u'chang']
[u'deadlin', u'multipli', u'risk', u'heart', u'attack']
[u'death', u'babi', u'girl', u'accid', u'coron', u'find']
[u'debrief', u'consid', u'storm', u'fallout']
[u'doctor', u'agre', u'rise']
[u'doubt', u'cast', u'crop', u'land', u'rehab']
[u'downer', u'arriv', u'talk']
[u'downer', u'interest', u'iaea', u'post']
[u'dozen', u'kill', u'indian', u'train', u'crash']
[u'eckstein', u'look', u'forward', u'hurst', u'challeng']
[u'egypt', u'israel', u'partial', u'free', u'trade', u'deal']
[u'eighteen', u'dead', u'china', u'disast']
[u'elliott', u'plan', u'sale']
[u'journalist', u'face', u'rape', u'charg']
[u'famili', u'face', u'deport', u'son', u'disabl']
[u'fergi', u'rue', u'miss', u'catch', u'chanc']
[u'spark', u'better', u'power', u'author']
[u'safeti', u'blitz', u'target', u'busi']
[u'fish', u'farmer', u'save', u'seahors', u'exhibit']
[u'hayden', u'relish', u'pakistani', u'pace', u'challeng']
[u'flood', u'littl', u'boost', u'dam']
[u'aussi', u'globe', u'race']
[u'fourteen', u'execut', u'bodi', u'iraq']
[u'franc', u'unveil', u'world', u'tallest', u'bridg']
[u'french', u'court', u'ban', u'hezbollah', u'satellit']
[u'fund', u'slide', u'away', u'jetti']
[u'fund', u'tackl', u'bushfir', u'threat']
[u'furnitur', u'worker', u'sack', u'compani', u'collaps']
[u'leak', u'prompt', u'refineri', u'evacu']
[u'gatto', u'fire', u'self', u'defenc', u'court', u'tell']
[u'georgeson', u'down', u'fellow', u'aussi', u'hawaii', u'final']
[u'giant', u'sculptur', u'sydney', u'year']
[u'gilchrist', u'say', u'pace', u'battl', u'good', u'game']
[u'govt', u'agenc', u'urg', u'boost', u'wiluna', u'effort']
[u'govt', u'heed', u'advic', u'intellig', u'appoint']
[u'govt', u'issu', u'travel', u'warn']
[u'govt', u'plan', u'thousand', u'home', u'sydney']
[u'govt', u'reconsid', u'telstra', u'foreign', u'ownership']
[u'govt', u'sack', u'embattl', u'health', u'fund', u'board']
[u'govt', u'seek', u'suppress', u'order', u'terror', u'case']
[u'govt', u'urg', u'reinstat', u'petrol', u'watchdog', u'report']
[u'govt', u'want', u'slow', u'global', u'warm']
[u'govt', u'wont', u'negoti', u'protest', u'asylum', u'seeker']
[u'great', u'aust', u'bight', u'search', u'pose', u'challeng']
[u'green', u'catapult', u'golf', u'rank']
[u'gregan', u'jersey', u'auction', u'rais']
[u'group', u'critic', u'prison', u'expans', u'plan']
[u'group', u'urg', u'prosecut', u'prison', u'death']
[u'grower', u'hope', u'sugar', u'predict', u'signal', u'recoveri']
[u'gunn', u'sue', u'green', u'leader', u'environ', u'group']
[u'high', u'temp', u'pressur', u'power', u'suppli']
[u'hinz', u'level', u'rise']
[u'hobart', u'look', u'defin', u'nuisanc', u'bark']
[u'hospit', u'equip', u'handl', u'christma', u'toyn']
[u'hospit', u'join', u'snake', u'bite', u'research', u'effort']
[u'hostel', u'blaze', u'spark', u'evacu']
[u'weather', u'drain', u'power', u'suppli']
[u'howard', u'defend', u'region', u'fund', u'scheme']
[u'human', u'victim', u'longer', u'termin']
[u'hunter', u'club', u'urg', u'boost', u'secur']
[u'iaea', u'assum', u'spi', u'listen']
[u'consid', u'away', u'lord']
[u'inquiri', u'call', u'trail', u'near', u'kosciuszko']
[u'need', u'cash', u'creditor', u'tell']
[u'iraq', u'elect', u'bodi', u'say', u'bloc', u'enter', u'poll']
[u'iraqi', u'presid', u'say', u'armi', u'dismantl', u'huge']
[u'iraq', u'press', u'elect', u'help']
[u'israel', u'pull', u'palestinian', u'elect']
[u'jobless', u'rate', u'drop']
[u'keelti', u'confid', u'polic', u'issu', u'resolv']
[u'kyoto', u'stanc', u'hurt', u'aust', u'reput', u'say']
[u'labor', u'critic', u'intellig', u'appoint']
[u'late', u'fulham', u'level', u'stun', u'unit']
[u'latham', u'keep', u'visit']
[u'levi', u'boost', u'port', u'kembla', u'plan']
[u'licenc', u'buyout', u'expect', u'inund', u'boat', u'market']
[u'long', u'spell', u'stormi', u'weather']
[u'major', u'blackout', u'mercuri', u'rise', u'brisban']
[u'malik', u'free', u'play', u'perth', u'test']
[u'arrest', u'tomahawk', u'attack']
[u'get', u'month', u'child', u'porn']
[u'get', u'suspend', u'jail', u'term', u'chop', u'chop', u'cargo']
[u'injur', u'chainsaw', u'accid']
[u'jail', u'child', u'porn']
[u'maritim', u'colleg', u'increas', u'student', u'number']
[u'mayor', u'pleas', u'airport', u'upgrad']
[u'mercuri', u'rise', u'perth']
[u'microsoft', u'launch', u'desktop', u'search', u'tool']
[u'minist', u'back', u'address', u'indigen', u'health']
[u'minist', u'inspect', u'afp', u'work']
[u'miss', u'water', u'wont', u'spark', u'reprimand']
[u'mossad', u'accus', u'syrian', u'bomb']
[u'fear', u'futur', u'train', u'servic']
[u'muralitharan', u'smile', u'setback']
[u'announc', u'irish', u'bank', u'sale']
[u'nasa', u'chief', u'resign']
[u'nation', u'park', u'plan', u'crack', u'pest']
[u'nation', u'school', u'holiday', u'chang']
[u'newcastl', u'boss', u'hand', u'match']
[u'rule', u'begin', u'today']
[u'page', u'open', u'tamworth', u'histori']
[u'servic', u'lift', u'adelaid', u'airport', u'profit']
[u'north', u'coast', u'storm', u'bring', u'clean']
[u'trace', u'miss', u'fisherman']
[u'boati', u'help', u'search', u'miss', u'fisher']
[u'face', u'budget', u'blow']
[u'treasur', u'accus', u'cook', u'book']
[u'offic', u'focus', u'attent', u'erad', u'noxious']
[u'pakistan', u'india', u'talk', u'avert', u'nuclear', u'havoc']
[u'park', u'anim', u'shelter', u'state']
[u'penguin', u'protect', u'make', u'inroad']
[u'perth', u'admit', u'rathbon']
[u'plan', u'put', u'focus', u'indigen', u'consum', u'right']
[u'turn', u'hall', u'fame', u'honour']
[u'want', u'downer', u'stay']
[u'disintegr', u'think', u'tank', u'warn']
[u'polic', u'diver', u'complet', u'cyclon', u'traci', u'wreck']
[u'policeman', u'award', u'compo']
[u'polic', u'probe', u'high', u'school', u'blaze']
[u'polic', u'probe', u'highway', u'death']
[u'polic', u'seiz', u'drug', u'properti']
[u'polic', u'station', u'technolog', u'upgrad']
[u'polic', u'forc', u'holiday']
[u'polic', u'unhappi', u'break', u'driver']
[u'politician', u'ask', u'apologis', u'youth', u'group']
[u'princip', u'see', u'reason', u'good', u'result']
[u'program', u'target', u'weighti', u'problem']
[u'properti', u'council', u'look', u'canberra', u'role']
[u'public', u'urg', u'readi', u'blackout']
[u'push', u'boost', u'north', u'number']
[u'storm', u'damag', u'million', u'dollar']
[u'rail', u'safeti', u'add', u'cost', u'blow']
[u'ask', u'aust', u'read', u'riot']
[u'real', u'finish', u'bomb', u'hoax', u'game', u'januari']
[u'recov', u'bodi', u'believ', u'miss', u'policeman']
[u'redback', u'head', u'right', u'direct']
[u'redfern', u'waterloo', u'author', u'board', u'name']
[u'reduc', u'forest', u'access', u'baffl', u'kilkivan', u'shire']
[u'refere', u'defend', u'decis', u'henri', u'free', u'kick']
[u'refuge', u'darl', u'down', u'home']
[u'rescu', u'fisherman', u'go', u'tough', u'time']
[u'rescuer', u'home', u'strand', u'student']
[u'resourc', u'push', u'aust', u'market', u'higher']
[u'reward', u'seek', u'catch', u'rock', u'thrower']
[u'roddick', u'split', u'coach']
[u'saddam', u'trial', u'start', u'year']
[u'safe', u'drive', u'scheme', u'target', u'plate', u'driver']
[u'wont', u'tougher', u'milit', u'presid', u'warn']
[u'scandal', u'mitsubishi', u'delay', u'reviv', u'plan']
[u'school', u'join', u'healthi', u'live', u'scheme']
[u'scratch', u'sniff', u'test', u'detect', u'alzheim']
[u'second', u'string', u'protea', u'thump', u'complac', u'england']
[u'shevchenko', u'milan', u'secret', u'weapon']
[u'shevchenko', u'net', u'golden', u'ball']
[u'shopper', u'offer', u'chanc', u'lord']
[u'sign', u'lure', u'north', u'angler']
[u'supermarket', u'open', u'christma']
[u'spirit', u'find', u'evid', u'martian', u'water']
[u'storm', u'disrupt', u'south', u'coast', u'train', u'travel']
[u'storm', u'power', u'dampen', u'danger']
[u'strand', u'dolphin', u'rescu']
[u'strike', u'parent', u'continu', u'protest']
[u'student', u'enjoy', u'result']
[u'studi', u'predict', u'major', u'earthquak', u'japan']
[u'suicid', u'bomb', u'kill', u'wound', u'baghdad']
[u'survey', u'highlight', u'confid', u'rural']
[u'sydney', u'mop', u'sever', u'storm']
[u'taliban', u'leader', u'secur', u'chief', u'captur']
[u'taxpay', u'foot', u'opposit', u'leader', u'legal', u'bill']
[u'teacher', u'charg', u'alleg', u'student', u'relationship']
[u'telstra', u'sale', u'move', u'step', u'closer']
[u'terror', u'case', u'open', u'sydney', u'court']
[u'tiger', u'select', u'knobel', u'pie', u'claim', u'caracella']
[u'tiger', u'snatch', u'knobel']
[u'tourism', u'group', u'flag', u'support', u'beach', u'safeti']
[u'tram', u'derail', u'squar']
[u'ray', u'detect', u'wmds', u'cancer']
[u'tszyu', u'deni', u'deal', u'fight', u'hatton']
[u'tszyu', u'fight', u'hatton', u'manchest', u'promot', u'claim']
[u'tszyu', u'win', u'russian', u'sport', u'gong']
[u'baxter', u'detaine', u'hospitalis']
[u'sign', u'leagu', u'glori']
[u'marin', u'kill', u'iraq']
[u'hall', u'fame', u'class']
[u'court', u'back', u'probe', u'iraqi', u'death']
[u'right', u'leader', u'hold', u'racial', u'hatr', u'case']
[u'ukrainian', u'deni', u'knowledg', u'poison']
[u'union', u'seek', u'greater', u'timber', u'commit']
[u'urg', u'swift', u'halt', u'congo', u'fight']
[u'market', u'post', u'moder', u'gain']
[u'militari', u'confirm', u'afghan', u'death']
[u'vaccin', u'prevent', u'onset', u'diabet']
[u'hospit', u'wait', u'list', u'wors']
[u'compani', u'hand', u'record', u'fine', u'workplac', u'death']
[u'urg', u'export', u'safeti']
[u'western', u'power', u'confid', u'meet', u'demand']
[u'wilkinson', u'glad', u'year', u'torment']
[u'wolf', u'slither', u'write', u'award']
[u'worm', u'help', u'treat', u'crohn', u'diseas']
[u'youth', u'transport', u'issu', u'drive', u'forum']
[u'yowi', u'win', u'trademark', u'challeng']
[u'abba', u'call', u'palestinian', u'ceas']
[u'aim', u'greenhous', u'emiss']
[u'bounc', u'rule', u'save', u'ruckmen']
[u'agenc', u'appeal', u'philippin', u'flood']
[u'armi', u'defend', u'train', u'method']
[u'arsenal', u'ljungberg', u'neurologist']
[u'asia', u'fuel', u'global', u'boom']
[u'athen', u'hijack', u'threaten', u'blow']
[u'aussi', u'golfer', u'mark', u'world', u'stage']
[u'aussi', u'wood', u'win', u'junior', u'surf', u'titl']
[u'australian', u'arrest', u'indonesia', u'drug', u'charg']
[u'aust', u'reject', u'pngs', u'season', u'work', u'visa', u'request']
[u'bank', u'media', u'push', u'market', u'higher']
[u'baxter', u'detaine', u'face', u'drug', u'charg']
[u'beauti', u'exhibit', u'cancel']
[u'bevan', u'hope', u'return']
[u'bosnian', u'croat', u'plead', u'guilti', u'crime']
[u'cardiac', u'wait', u'list', u'report']
[u'respit', u'caravan', u'park', u'oper']
[u'chamber', u'fear', u'jobless', u'rise', u'actu', u'plan']
[u'chemic', u'tri']
[u'china', u'offer', u'tourism', u'potenti']
[u'chines', u'charg', u'import', u'illeg']
[u'chines', u'talk', u'ban']
[u'compassion', u'bush', u'wide', u'misunderstand', u'schieffer']
[u'concord', u'crash', u'caus', u'defect', u'plane', u'metal']
[u'consum', u'confid', u'jump']
[u'corrupt', u'polic', u'offic', u'give', u'year', u'jail']
[u'council', u'feel', u'leav', u'timber', u'plan']
[u'council', u'hop', u'boost', u'year', u'profit']
[u'council', u'media', u'campaign', u'seek', u'mine', u'royalti']
[u'council', u'continu', u'transpac']
[u'council', u'say', u'water', u'revenu', u'wont', u'rise', u'user']
[u'council', u'push', u'govt', u'manag', u'schooli']
[u'council', u'unfaz', u'icac', u'probe']
[u'council', u'vote', u'curfew']
[u'swear', u'governor']
[u'crime', u'frustrat', u'lennox', u'head', u'communiti']
[u'croc', u'darwin', u'harbour', u'increas']
[u'defend', u'fight', u'gunn', u'legal', u'action']
[u'democrat', u'fear', u'detent', u'centr', u'death']
[u'detox', u'clinic', u'offer', u'rang', u'drug', u'treatment']
[u'save', u'drown', u'babi']
[u'downer', u'condemn', u'mugab', u'anti']
[u'downer', u'confid', u'cooper', u'program']
[u'congo', u'armi', u'kill', u'rebel']
[u'driver', u'urg', u'stay', u'safe', u'christma', u'lead']
[u'drive', u'instructor', u'air', u'doubt', u'plate', u'scheme']
[u'drug', u'test', u'consid', u'sue', u'polic']
[u'drink', u'driver', u'give', u'year', u'kill']
[u'surviv', u'ultralight', u'plane', u'crash']
[u'eidsvold', u'mayor', u'fear', u'closur']
[u'elect', u'monitor', u'need', u'ukrain', u'politician', u'say']
[u'eurobodalla', u'get', u'water', u'respit']
[u'minist', u'appoint', u'york', u'commission']
[u'expert', u'play', u'hendra', u'virus', u'threat']
[u'face', u'recognit', u'discoveri', u'offer', u'treatment', u'hope']
[u'launch', u'inquiri', u'cech', u'comment']
[u'farmer', u'ask', u'spray', u'drift', u'care']
[u'farmer', u'unhappi', u'telstra', u'rural', u'progress']
[u'fenech', u'attack', u'jail']
[u'ansett', u'worker', u'share']
[u'wallabi', u'kafer', u'quit', u'saracen']
[u'corner', u'team', u'apologis', u'timber', u'group', u'say']
[u'ask', u'adopte', u'whos', u'daddi']
[u'fresh', u'reserv', u'bass', u'strait']
[u'report', u'mall', u'plan']
[u'gang', u'rapist', u'jail', u'sydney', u'murder']
[u'georg', u'michael', u'hit', u'elton', u'john']
[u'googl', u'librari', u'book', u'onlin']
[u'govt', u'accus', u'gag', u'nation', u'youth', u'bodi']
[u'govt', u'back', u'citi', u'rail', u'servic', u'shake']
[u'govt', u'grant', u'close', u'court', u'lodhi', u'terror', u'trial']
[u'govt', u'plan', u'secur', u'zone', u'port']
[u'govt', u'warn', u'indon', u'terrorist', u'attack']
[u'green', u'group', u'question', u'plan', u'scheme']
[u'green', u'leader', u'defiant', u'gunn', u'writ']
[u'group', u'form', u'drive', u'giant', u'golf', u'cours', u'plan']
[u'groyn', u'work', u'see', u'harbour', u'plus']
[u'gunmen', u'hijack', u'greek']
[u'health', u'fund', u'member', u'benefit', u'assur']
[u'hezbollah', u'link', u'channel', u'stop', u'broadcast']
[u'high', u'number', u'youth', u'drug', u'drive', u'survey', u'find']
[u'highway', u'reopen', u'blaze']
[u'founder', u'plead', u'guilti', u'charg']
[u'home', u'firm', u'leas', u'depot']
[u'hospit', u'call', u'nation', u'drug', u'overdos', u'regist']
[u'howard', u'join', u'barnett', u'campaign', u'trail']
[u'hunt', u'continu', u'alic', u'escape']
[u'inact', u'shark', u'remain', u'richest']
[u'india', u'reserv', u'second', u'test']
[u'insur', u'woe', u'spark', u'council', u'pool', u'rethink']
[u'intens', u'care', u'chief', u'make', u'hospit', u'pledg']
[u'iraqi', u'polic', u'kill', u'ambush']
[u'iraq', u'seek', u'help', u'miss', u'peopl']
[u'jackson', u'seek', u'trial', u'delay']
[u'juri', u'consid', u'verdict', u'final', u'bodi']
[u'juri', u'retir', u'snowtown', u'trial']
[u'katich', u'urg', u'remain', u'patient']
[u'kelli', u'reject', u'improprieti', u'claim']
[u'wit', u'miss', u'australian', u'sierra', u'leon']
[u'kosciuszko', u'fire', u'report', u'spark', u'mix', u'respons']
[u'kournikova', u'enriqu', u'report']
[u'kyoto', u'refus', u'damag', u'australia', u'minist', u'say']
[u'landcar', u'fund', u'target', u'northern']
[u'landhold', u'warn', u'fever', u'threat']
[u'latham', u'head', u'goldfield']
[u'lawyer', u'want', u'baxter', u'detaine', u'releas', u'treatment']
[u'select', u'pont']
[u'legal', u'threat', u'remain', u'marina']
[u'lennon', u'consid', u'steal', u'generat', u'apolog', u'compo']
[u'liber', u'stand', u'murchison', u'eyr', u'effort']
[u'lobbi', u'group', u'back', u'fast', u'rail', u'safeti', u'boost']
[u'locust', u'unlik', u'pose', u'north', u'west', u'woe']
[u'magnet', u'shark', u'bite', u'compass', u'theori']
[u'give', u'year', u'rape', u'murder']
[u'jail', u'melbourn', u'servic', u'station', u'sieg']
[u'face', u'court', u'drug', u'raid']
[u'mcgrath', u'tip', u'drink', u'duti']
[u'melbourn', u'polic', u'look', u'reduc', u'assault']
[u'minist', u'deni', u'zone', u'oper', u'plan']
[u'mobil', u'blood', u'perman', u'fixtur']
[u'phone', u'market', u'irrelev']
[u'mother', u'give', u'babi', u'methadon', u'court', u'tell']
[u'fear', u'hospit', u'specialist', u'chang']
[u'fight', u'join', u'eastern', u'time', u'zone']
[u'feud', u'extend', u'age', u'care', u'plaqu']
[u'neglig', u'blame', u'indian', u'train', u'crash']
[u'internet', u'worm', u'disguis', u'christma', u'card']
[u'law', u'tackl', u'launceston', u'qualiti', u'problem']
[u'life', u'possibl', u'convent']
[u'roster', u'anger', u'centrelink', u'staff']
[u'team', u'bolster', u'darl', u'down', u'competit']
[u'quebec', u'trip', u'tour', u'franc']
[u'north', u'korea', u'furious', u'possibl', u'japan', u'sanction']
[u'decid', u'plat', u'fast', u'car', u'dont']
[u'pledg', u'repay', u'indigen', u'wag']
[u'frog', u'eat', u'cane', u'toad']
[u'town', u'ban', u'plastic', u'bag']
[u'objection', u'game', u'earn', u'communiti', u'servic']
[u'opposit', u'defend', u'night', u'patrol', u'youth', u'servic']
[u'pakistan', u'bowl', u'waca', u'toss']
[u'parramatta', u'jail', u'escape', u'catch']
[u'perth', u'compani', u'tiwi', u'island']
[u'owner', u'storm', u'advic']
[u'petrol', u'price', u'come', u'martin', u'say']
[u'pickett', u'lose', u'licenc', u'drive', u'offenc']
[u'plan', u'put', u'focus', u'reduc', u'bushfir']
[u'platypus', u'tree', u'tribun', u'judgement']
[u'unhappi', u'techno', u'nation', u'anthem']
[u'polic', u'impound', u'car', u'drag', u'race', u'incid']
[u'polic', u'children', u'kill', u'hous']
[u'polic', u'probe', u'result', u'breach']
[u'polic', u'question', u'student', u'bomb', u'school']
[u'polic', u'seek', u'fresh', u'lead', u'murder', u'investig']
[u'polic', u'tell', u'babi', u'bird', u'golf', u'club']
[u'polic', u'monitor', u'convict', u'paedophil', u'movement']
[u'polish', u'soldier', u'kill', u'iraq', u'chopper', u'crash']
[u'portsmouth', u'share', u'point', u'liverpool']
[u'power', u'bush', u'bond', u'camp']
[u'plate', u'passeng', u'restrict', u'save', u'live']
[u'plater', u'extra', u'train']
[u'christma', u'rush', u'delay', u'surgeri']
[u'premier', u'leagu', u'back', u'refere', u'henri', u'free', u'kick']
[u'privat', u'steer', u'race']
[u'protea', u'fit', u'race', u'england', u'test']
[u'turn', u'film', u'product', u'woe']
[u'rain', u'littl', u'lift', u'water', u'storag']
[u'region', u'storm', u'relief', u'fund']
[u'report', u'advis', u'meat', u'produc']
[u'report', u'pinpoint', u'merger', u'mistak']
[u'rescu', u'fisher', u'releas', u'hospit']
[u'reserv', u'bank', u'see', u'slow', u'growth']
[u'resid', u'give', u'summer', u'water', u'exempt']
[u'resid', u'score', u'lane', u'sale']
[u'rise', u'temp', u'creat', u'ideal', u'condit']
[u'saddam', u'aid', u'trial']
[u'sand', u'provid', u'beach', u'boost']
[u'school', u'get', u'help', u'hand']
[u'scud', u'stosur', u'hand', u'sydney', u'wildcard']
[u'search', u'doctor', u'continu', u'trundl']
[u'senior', u'zarqawi', u'aid', u'kill', u'iraqi', u'polic']
[u'get', u'storm', u'call']
[u'shark', u'attack', u'victim', u'rememb']
[u'shark', u'roam', u'wide', u'search', u'food']
[u'shark', u'victim', u'group', u'fish', u'legal']
[u'sheep', u'trade', u'campaign', u'get', u'court', u'case', u'move']
[u'shire', u'upset', u'defenc', u'train', u'area', u'blaze']
[u'silverlea', u'govt', u'contract']
[u'sister', u'generos']
[u'skin', u'test', u'detect', u'earli', u'onset', u'alzheim']
[u'slater', u'near', u'perfect', u'pipelin', u'heat']
[u'star', u'war', u'missil', u'test', u'fail']
[u'storm', u'bring', u'flood', u'crop', u'insur', u'claim']
[u'student', u'access', u'result', u'earli']
[u'survey', u'highlight', u'murray', u'wetland', u'woe']
[u'teenag', u'steal']
[u'teen', u'drink', u'link', u'parent', u'exampl']
[u'children', u'kill', u'hous']
[u'timber', u'industri', u'crisi', u'deepen']
[u'tourist', u'rescu', u'remot', u'road']
[u'ukrain', u'deni', u'call', u'forc']
[u'uncertainti', u'surround', u'fatal', u'polic', u'pursuit']
[u'civilian', u'honour', u'award', u'offici']
[u'marin', u'iraqi', u'polic', u'kill']
[u'rat', u'rise']
[u'share', u'gain', u'wake', u'rat', u'rise']
[u'troop', u'mock', u'execut', u'electr', u'shock']
[u'vanuatu', u'reward', u'revok', u'taiwan', u'pact']
[u'govt', u'revis', u'budget', u'surplus']
[u'westpac', u'index', u'point', u'strong', u'growth']
[u'wetland', u'road', u'plan', u'spark', u'green', u'fear']
[u'wollongong', u'land', u'valu', u'rise']
[u'wurz', u'tall', u'mclaren']
[u'yuko', u'file', u'bankruptci']
[u'bushfir', u'plan', u'januari', u'releas']
[u'adam', u'scott', u'rat', u'high', u'sport', u'rich', u'list']
[u'affidavit', u'reveal', u'alleg', u'amcor', u'price', u'fix']
[u'discourag', u'travel', u'indonesia', u'follow']
[u'airservic', u'australia', u'appoint', u'chairman']
[u'allawi', u'confirm', u'candidaci', u'iraq', u'elect']
[u'amalgam', u'health', u'servic', u'januari', u'launch']
[u'anlezark', u'battl', u'post', u'olymp', u'ill']
[u'chief', u'begin', u'defam', u'action', u'jone']
[u'armidal', u'test', u'foot', u'mouth', u'prepared']
[u'dump', u'soccer', u'footbal']
[u'aust', u'help', u'philippin', u'bomb', u'investig']
[u'aust', u'maritim', u'zone', u'touch', u'coast']
[u'aust', u'defenc', u'forc', u'strengthen', u'tie']
[u'aust', u'solomon', u'polic', u'comission']
[u'bakhtiyari', u'famili', u'launch', u'stay']
[u'balanc', u'seek', u'polic', u'protest', u'plan']
[u'benetton', u'reject', u'protest', u'aussi', u'wool']
[u'oversea', u'magic', u'million']
[u'bird', u'bash', u'spark', u'secur', u'patrol']
[u'blackout', u'spark', u'power', u'probe']
[u'blue', u'chip', u'stock', u'push', u'market', u'record', u'high']
[u'blue', u'hold', u'tiger']
[u'blunkett', u'resign', u'blair', u'govern']
[u'boffin', u'build', u'smart', u'scarecrow']
[u'britain', u'profit', u'buri', u'foreign', u'wast']
[u'britain', u'warn', u'travel', u'indonesia', u'terror']
[u'bundaberg', u'isi', u'suggest', u'sugar', u'reform', u'plan']
[u'bush', u'wag', u'twin', u'deficit']
[u'busi', u'group', u'back', u'earli', u'alga', u'studi']
[u'bypass', u'fund', u'issu', u'rais']
[u'cadet', u'program', u'encourag', u'school', u'attend']
[u'stop', u'south', u'sister', u'log', u'plan']
[u'cambodian', u'guilti', u'wife', u'murder']
[u'cameron', u'doomadge', u'mother', u'die']
[u'help', u'fight', u'domest', u'violenc']
[u'chamber', u'back', u'safeti', u'export']
[u'christma', u'wont', u'disadvantag', u'client', u'centrelink']
[u'citrus', u'grower', u'vent', u'frustrat']
[u'commit', u'smoker', u'cremat', u'fag']
[u'committe', u'releas', u'final', u'report', u'redfern', u'riot']
[u'conserv', u'strategi', u'protect', u'tuart']
[u'costa', u'reject', u'interchang', u'claim']
[u'council', u'elect', u'offici']
[u'council', u'assess', u'hous', u'shop', u'centr', u'plan']
[u'council', u'celebr', u'staff', u'merger', u'effort']
[u'council', u'want', u'rail', u'freight', u'line', u'track']
[u'counsel', u'servic', u'critic', u'bankruptci', u'plan']
[u'csiro', u'play', u'role', u'bolster', u'alic', u'spring']
[u'dead', u'pet', u'threaten', u'beij', u'green', u'olymp']
[u'death', u'toll', u'rise', u'karbala', u'bomb']
[u'demand', u'grow', u'salvo', u'christma', u'servic']
[u'democrat', u'seek', u'urgent', u'inquiri', u'forest']
[u'dizzi', u'go', u'langer', u'fight']
[u'doubt', u'rais', u'fast', u'train', u'speed']
[u'downer', u'discuss', u'concern', u'vanuatu']
[u'dubbo', u'start', u'sofa']
[u'earli', u'photo', u'sell']
[u'england', u'coach', u'best', u'world', u'marsh']
[u'timor', u'threaten', u'campaign', u'aust']
[u'urg', u'begin', u'membership', u'talk', u'turkey']
[u'extra', u'crew', u'send', u'battl', u'bushfir']
[u'fear', u'wild', u'threat', u'spread']
[u'forest', u'contractor', u'gunn', u'lawsuit']
[u'offici', u'appeal', u'bail', u'refus']
[u'gorman', u'win', u'gold', u'china']
[u'govern', u'anger', u'ansett', u'worker']
[u'govt', u'appoint', u'minist', u'children']
[u'govt', u'unsway', u'secur', u'zone', u'concern']
[u'want', u'retrain', u'scheme', u'entic', u'doctor']
[u'greek', u'hijack', u'end']
[u'group', u'take', u'issu', u'rate', u'charg', u'chang']
[u'guantanamo', u'prison', u'clear', u'challeng', u'detent']
[u'gunmen', u'kill', u'senior', u'iraqi', u'ministri', u'offici']
[u'harper', u'name', u'sydney', u'chief']
[u'health', u'minist', u'hear', u'case', u'rescu', u'chopper']
[u'henman', u'upbeat', u'babi']
[u'hewitt', u'davenport', u'head', u'sydney', u'field']
[u'hewitt', u'rashe', u'book', u'doubl', u'date']
[u'homeswest', u'cop', u'flak', u'indigen', u'tenanc']
[u'hospit', u'beat', u'anaesthetist', u'appoint']
[u'hous', u'construct', u'rat', u'plummet']
[u'iceland', u'offer', u'sanctuari', u'chess', u'legend', u'fischer']
[u'industri', u'land', u'shortag', u'prompt', u'council', u'review']
[u'injur', u'eagl', u'releas', u'rehabilit']
[u'injur', u'harri', u'miss', u'lanka', u'dayer']
[u'iraqi', u'elect', u'campaign', u'begin']
[u'italian', u'kidnap', u'iraq', u'report']
[u'jackson', u'lawyer', u'seek', u'dismiss', u'charg']
[u'jakarta', u'hotel', u'play', u'terror', u'alert']
[u'japanes', u'steelmak', u'australian', u'coal', u'mine']
[u'jone', u'sue', u'drug', u'accus']
[u'juri', u'deliber', u'crash', u'trial']
[u'karbala', u'bomb', u'kill', u'wound']
[u'kewel', u'expect', u'miss', u'socceroo', u'friend']
[u'peopl', u'smuggl', u'convict', u'overturn']
[u'wit', u'bashir', u'trial', u'withdraw', u'confess']
[u'khartoum', u'agre', u'stop', u'darfur', u'militari', u'offens']
[u'kiwi', u'recal', u'tuffey']
[u'langer', u'gilchrist', u'ralli', u'australia']
[u'langer', u'gilchrist', u'turn', u'tide']
[u'langer', u'spoil', u'pakistan', u'pace', u'parti']
[u'lawyer', u'warn', u'mobil', u'phone', u'pitfal']
[]
[u'play', u'say', u'chappel']
[u'lennon', u'reject', u'call', u'forestri', u'inquiri']
[u'liber', u'say', u'connecteast', u'share', u'profit']
[u'liber', u'prefer', u'solut', u'compo']
[u'lismor', u'expect', u'seek', u'storm', u'repair', u'fund']
[u'lodhi', u'lawyer', u'attempt', u'discredit', u'wit']
[u'long', u'term', u'unemploy', u'rate', u'dive']
[u'magnet', u'sewerag', u'treatment', u'plant']
[u'magnific', u'langer', u'rescu', u'australia']
[u'die', u'victoria', u'stab']
[u'get', u'life', u'murder', u'children']
[u'plead', u'guilti', u'kidnap', u'teen']
[u'martin', u'back', u'water', u'panel', u'appoint']
[u'master', u'champ', u'green', u'play', u'open']
[u'mayor', u'talk', u'childcar', u'centr', u'benefit']
[u'hotel', u'facelift']
[u'melbourn', u'bali', u'jail', u'offer', u'consular']
[u'west', u'iron', u'deposit', u'suppli', u'china']
[u'minist', u'defend', u'polic', u'driver', u'drug', u'test']
[u'missil', u'expert', u'cast', u'doubt', u'star', u'war']
[u'fear', u'telstra', u'privatis', u'region', u'impact']
[u'paranoid', u'phone', u'tap']
[u'ponder', u'nation', u'arsonist', u'regist']
[u'reject', u'feder', u'fund', u'bias', u'claim']
[u'rogu', u'trader', u'face', u'crimin', u'charg']
[u'newcastl', u'jobless', u'rate', u'rise']
[u'aquacultur', u'industri', u'expans']
[u'govt', u'plan', u'random', u'drug', u'test']
[u'say', u'telstra', u'improv', u'servic']
[u'minist', u'reject', u'australian', u'move', u'deport']
[u'okay', u'aust', u'maritim', u'secur', u'zone']
[u'regul', u'investig', u'packag', u'firm']
[u'oberon', u'rule', u'fluorid', u'water']
[u'price', u'wall', u'street', u'share', u'climb']
[u'spill', u'pollut', u'suez', u'canal']
[u'onesteel', u'furnac', u'action']
[u'paedophil', u'ferguson', u'arriv', u'brisban']
[u'pair', u'custodi', u'weapon', u'drug', u'charg']
[u'pakistan', u'coach', u'hit', u'miandad', u'critic']
[u'pakistani', u'give', u'year', u'jail', u'peopl', u'smuggl']
[u'palestinian', u'hardlin', u'reject', u'ceas', u'plea']
[u'palestinian', u'milit', u'kill', u'suspect', u'isra']
[u'paralymp', u'legend', u'rule', u'beij', u'appear']
[u'pasta', u'maker', u'kyabram', u'home']
[u'pilbara', u'fund', u'roll', u'shire', u'project']
[u'pilot', u'error', u'play', u'mackay', u'plane', u'scare']
[u'pitcairn', u'island', u'elect', u'mayor']
[u'plan', u'minist', u'assess', u'wind', u'farm', u'plan']
[u'plan', u'afoot', u'unit', u'colleg']
[u'polic', u'bust', u'luxuri', u'import', u'gang']
[u'polic', u'continu', u'health', u'servic', u'probe']
[u'polic', u'investig', u'adelaid', u'shark', u'attack', u'report']
[u'polic', u'launch', u'fatal', u'hous', u'probe']
[u'policeman', u'plead', u'guilti', u'possess', u'child', u'porn']
[u'prais', u'palm', u'polic', u'riot']
[u'probe', u'begin', u'tweed', u'council']
[u'product', u'ramp', u'timor', u'leak']
[u'promot', u'insist', u'tszyu', u'fight', u'hatton']
[u'public', u'servant', u'rais', u'concern', u'employ']
[u'public', u'urg', u'readi']
[u'public', u'urg', u'comment', u'propos', u'busway']
[u'purport', u'lade', u'tape', u'releas']
[u'qanta', u'offer', u'refund', u'ticket', u'indonesian']
[u'queen', u'plan', u'tour', u'mercuri', u'death']
[u'question', u'rais', u'biodri', u'plant', u'fund']
[u'rail', u'union', u'accept', u'deal', u'agreement']
[u'rain', u'prove', u'miss', u'grazier']
[u'ranger', u'exit', u'uefa']
[u'ratepay', u'council', u'consult']
[u'razorback', u'rout', u'understrength', u'wildcat']
[u'reef', u'fish', u'compo', u'enter', u'stage']
[u'report', u'show', u'rise', u'foster', u'care', u'bulli']
[u'resid', u'fear', u'casino', u'plan']
[u'resid', u'appeal', u'truck', u'depot']
[u'ridley', u'jacob', u'reveal', u'retir', u'plan']
[u'roddick', u'link', u'coach']
[u'rudd', u'back', u'govt', u'terror', u'warn']
[u'sami', u'strike', u'waca']
[u'scott', u'rat', u'high', u'sport', u'rich', u'list']
[u'sept', u'conspiraci', u'theorist', u'pose', u'challeng']
[u'shop', u'centr', u'upgrad']
[u'shoot', u'putter', u'recov', u'athen']
[u'singh', u'win', u'europ', u'award']
[u'sleep', u'habit', u'dead', u'jellyfish', u'reveal']
[u'lanka', u'urg', u'offer', u'support', u'norway']
[u'strong', u'trade']
[u'student', u'high', u'school', u'result', u'releas']
[u'studi', u'uncov', u'ant', u'degre', u'navig']
[u'sudan', u'govt', u'agre', u'stop', u'militari', u'offens']
[u'sydney', u'hobart', u'suffer', u'late', u'withdraw']
[u'sydney', u'terror', u'case', u'hear', u'wit']
[u'univers', u'play', u'role', u'saturn', u'mission']
[u'taylor', u'prompt', u'beach', u'fear']
[u'teen', u'kill', u'adelaid', u'shark', u'attack']
[u'temporari', u'heavi', u'haulag', u'rout', u'spark', u'blame', u'game']
[u'tenterden', u'fire', u'inquest', u'adjourn']
[u'test', u'combat', u'wage', u'speed']
[u'tiger', u'troubl', u'earli']
[u'tiger', u'make', u'slow', u'progress']
[u'time', u'warner', u'settl', u'fraud', u'charg']
[u'tourist', u'sting', u'irukandji', u'jellyfish']
[u'town', u'plan', u'woe', u'expect', u'worsen']
[u'toxicologist', u'call', u'drink', u'spike', u'evid']
[u'track', u'highlight', u'roam', u'hungri', u'shark']
[u'trundl', u'access', u'doctor', u'park']
[u'turtl', u'passeng', u'luggag']
[u'tweed', u'lose', u'movi']
[u'charg', u'ecstasi', u'haul']
[u'announc', u'world', u'wide', u'embassi', u'overhaul']
[u'court', u'reject', u'anti', u'terror', u'detent', u'polici']
[u'ukrain', u'vow', u'protest', u'poll', u'result']
[u'union', u'back', u'meatwork', u'revamp']
[u'deni', u'afghan', u'abus', u'despit', u'prison', u'death']
[u'eas', u'sanction', u'cuba', u'iran', u'sudan']
[u'embassi', u'indonesia', u'warn', u'increas', u'risk']
[u'warn', u'plan', u'milit', u'attack', u'kuwait']
[u'boost', u'miner', u'explor']
[u'film', u'delay', u'pipelin']
[u'wearabl', u'solar', u'panel', u'charg', u'mobil']
[u'werri', u'creek', u'more', u'rail', u'servic', u'return']
[u'western', u'power', u'admit', u'breach', u'regul']
[u'westpac', u'test', u'employe', u'fake', u'rogu', u'trade']
[u'wild', u'oat', u'sow', u'sydney', u'hobart', u'warn']
[u'woman', u'lose', u'prosecut', u'swim', u'coach']
[u'yass', u'water', u'restrict', u'lift']
[u'zarqawi', u'trial', u'begin', u'jordan']
[u'zimbabwean', u'charg', u'call', u'mugab', u'head']
[u'surplus', u'half', u'year', u'budget', u'review']
[u'campaign', u'target', u'christma', u'drink', u'driver']
[u'probe', u'schofield', u'west']
[u'alleg', u'lade', u'tape', u'target', u'saudi', u'ruler']
[u'allianc', u'breath', u'life', u'coal']
[u'ord', u'break', u'mark']
[u'alston', u'award', u'london', u'post']
[u'alston', u'welcom', u'london', u'challeng']
[u'amcor', u'settl', u'employe']
[u'increas', u'sudan', u'conting']
[u'aussi', u'atkinson', u'join', u'world', u'ralli', u'circuit']
[u'aussi', u'claim', u'earli', u'wicket']
[u'australia', u'ask', u'deeper', u'program']
[u'australian', u'barrack', u'iraq']
[u'bangladesh', u'small', u'target', u'ahead', u'second', u'india']
[u'bankruptci', u'wont', u'halt', u'yuko', u'asset', u'sale']
[u'bartlett', u'plan', u'hunger', u'strike', u'baxter', u'detaine']
[u'baxter', u'detaine', u'rooftop', u'protest']
[u'bhutan', u'ban', u'tobacco', u'sale']
[u'blue', u'tiger', u'even', u'pois']
[u'blue', u'tiger', u'lock', u'tight', u'clash']
[u'brown', u'vow', u'continu', u'growth', u'forest', u'campaign']
[u'bull', u'slump', u'defeat', u'season']
[u'bumbl', u'batsmen', u'pakistan']
[u'bushrang', u'face', u'undef', u'bull', u'gabba']
[u'extend', u'tamworth', u'rescu', u'chopper', u'servic']
[u'campaign', u'aim', u'fight', u'newcastl', u'drink', u'drive']
[u'campaign', u'highlight', u'famili', u'violenc', u'law']
[u'central', u'west', u'student', u'cream', u'crop']
[u'chariti', u'makeshift', u'rubbish']
[u'chelsea', u'look', u'clip', u'canari', u'wing']
[u'chopper', u'pilot', u'surviv', u'ipswich', u'crash', u'land']
[u'secret', u'detent', u'camp', u'guantanamo']
[u'clean', u'bosnich', u'target', u'lower', u'leagu', u'comeback']
[u'clergymen', u'face', u'court', u'abus', u'alleg']
[u'coast', u'put', u'focus', u'sustain', u'tourism']
[u'competit', u'prompt', u'chief', u'increas']
[u'connor', u'boost', u'british', u'tenni']
[u'coonan', u'deni', u'telstra', u'cut', u'link']
[u'correct', u'offic', u'begin', u'work', u'women']
[u'cosmet', u'surgeri', u'compani', u'back', u'surgeon', u'warn']
[u'councillor', u'question', u'tweed', u'council', u'probe']
[u'council', u'want', u'carr', u'meet', u'rail']
[u'counsellor', u'hand', u'listen', u'christma', u'time']
[u'coupl', u'poison', u'sofa', u'award', u'damag']
[u'court', u'throw', u'cash', u'lifelin', u'kay', u'victim']
[u'crew', u'stretch', u'bushfir', u'rage', u'esper']
[u'darchinyan', u'say', u'goodnight', u'iren']
[u'darwin', u'storm', u'ground', u'qanta']
[u'dept', u'consid', u'support', u'accommod', u'option']
[u'dismal', u'pakistan', u'rope']
[u'downer', u'deni', u'indonesia', u'terror', u'snub']
[u'downer', u'hail', u'franc', u'role', u'pacif']
[u'downer', u'posit', u'meet', u'vanuatu']
[u'draper', u'dilemma', u'tenni', u'golf']
[u'draper', u'show', u'sport', u'specialist']
[u'dravid', u'gambhir', u'plunder', u'bangladesh']
[u'driver', u'urg', u'christma', u'statist']
[u'drive', u'regist', u'exil', u'iraqi', u'elect']
[u'educ', u'plan', u'help', u'road', u'crash']
[u'kill', u'afghan', u'prison', u'sieg']
[u'ellison', u'welcom', u'year', u'sentenc', u'peopl']
[u'esper', u'fire', u'continu', u'burn']
[u'timor', u'cabinet', u'pass', u'landmark', u'petroleum']
[u'offer', u'octob', u'date', u'turkey', u'talk']
[u'exot', u'moth', u'combat', u'mimosa', u'infest']
[u'fin', u'wenger', u'ruud', u'comment']
[u'farmer', u'urg', u'photograph', u'dodgi', u'power', u'pole']
[u'fast', u'consid', u'answer', u'plater', u'woe']
[u'feder', u'minist', u'flag', u'rate', u'hike']
[u'fiji', u'reshuffl', u'cabinet']
[u'final', u'give', u'armidal', u'polic', u'station']
[u'victim', u'injuri', u'consid', u'suspici']
[u'charg', u'man', u'bodi']
[u'french', u'algerian', u'jail', u'plot', u'market', u'bomb']
[u'fish', u'licenc', u'buyout', u'unlik']
[u'gambhir', u'dravid', u'steadi', u'india']
[u'germani', u'overwhelm', u'japan', u'tour', u'open']
[u'govt', u'encount', u'websit', u'problem']
[u'govt', u'rais', u'power', u'compani']
[u'govt', u'bluefin', u'tuna', u'conserv']
[u'grazier', u'fin', u'clear', u'heritag', u'list', u'land']
[u'group', u'jail', u'strasbourg', u'bomb', u'plot']
[u'amnesti', u'deadlin', u'trigger', u'remind']
[u'happi', u'tune', u'eager', u'super', u'return']
[u'hawk', u'halt', u'slide', u'sixer', u'narrowli']
[u'henin', u'hardenn', u'play', u'exhibit', u'match']
[u'hill', u'defend', u'maritim', u'secur', u'zone']
[u'hill', u'tri', u'sooth', u'indonesian', u'concern']
[u'homeless', u'shelter', u'unabl', u'cope', u'demand']
[u'hous', u'committe', u'call', u'independ', u'board']
[u'student', u'urg', u'consid', u'option']
[u'icac', u'clear', u'corrupt', u'alleg']
[u'indonesian', u'polic', u'bomb']
[u'indonesia', u'reject', u'maritim', u'secur', u'zone']
[u'iraq', u'poll', u'contest', u'bloc']
[u'iraq', u'crime', u'tribun', u'flaw', u'right', u'group']
[u'kasper', u'kill', u'pakistan', u'hop']
[u'kempsey', u'council', u'look', u'chang']
[u'langer', u'eye', u'doubl', u'aussi', u'push']
[u'langer', u'eye', u'doubl', u'australia', u'push']
[u'gasp', u'foul', u'king', u'past', u'pirat']
[u'latham', u'ponder', u'japanes', u'offer']
[u'latham', u'seek', u'brief', u'terrorist', u'warn']
[u'latham', u'talk', u'industri', u'relat', u'miner']
[u'lennon', u'encourag', u'respons', u'abus', u'payout']
[u'liverpool', u'step', u'hunt', u'morient']
[u'locust', u'threat', u'predict', u'increas', u'summer']
[u'long', u'wait', u'rescu', u'chopper']
[u'disabl', u'council', u'announc']
[u'arrest', u'alleg', u'drug', u'sale']
[u'die', u'highway', u'crash']
[u'extradit', u'perth', u'drug', u'charg']
[u'fin', u'alcohol', u'sale', u'indigen']
[u'give', u'year', u'strangl', u'aunt']
[u'jail', u'fatal', u'crash']
[u'marion', u'jone', u'challeng', u'accus', u'detector']
[u'mar', u'mission', u'hail', u'breakthrough']
[u'maverick', u'smith', u'contest', u'eyr']
[u'melbourn', u'christian', u'group', u'vilifi']
[u'melbourn', u'terror', u'suspect', u'make', u'second', u'bail']
[u'outnumb', u'women', u'die', u'injuri']
[u'million', u'dollar', u'reward', u'offer', u'halvagi']
[u'minist', u'outlin', u'technic', u'colleg', u'plan']
[u'minist', u'yanner', u'plan']
[u'mitsubishi', u'motor', u'sell', u'japanes', u'report']
[u'mourinho', u'rule', u'januari', u'shop', u'spree']
[u'admit', u'lobbi', u'orang', u'grove', u'rezon']
[u'air', u'health', u'servic', u'debt', u'concern']
[u'attack', u'kosciuszko', u'fire', u'inquiri', u'find']
[u'review', u'agenc', u'power']
[u'beat', u'servic', u'success']
[u'technolog', u'address', u'flood', u'woe']
[u'polit', u'parti', u'monitor', u'develop']
[u'chang', u'water', u'alloc', u'cut']
[u'busi', u'oper', u'heed', u'terror', u'warn']
[u'murder', u'investig', u'turn']
[u'nundl', u'recognis', u'adventur', u'tourism']
[u'onlin', u'dictionari', u'breath', u'life', u'english']
[u'pakistan', u'disarray']
[u'pakistan', u'slide', u'continu']
[u'palm', u'island', u'want', u'accus', u'rioter', u'home']
[u'sell', u'televis', u'station']
[u'petit', u'put', u'case', u'highway', u'bypass', u'option']
[u'owner', u'warn', u'danger']
[u'pngs', u'futur', u'look', u'bright', u'chief', u'say']
[u'polic', u'arrest', u'major', u'drug', u'bust']
[u'polic', u'confirm', u'arsenic', u'indonesia', u'soup']
[u'polic', u'investig', u'latrob', u'death']
[u'polic', u'offic', u'charg', u'fatal', u'crash']
[u'polic', u'probe', u'fatal', u'cliff', u'crash']
[u'polic', u'search', u'miss']
[u'polic', u'worri', u'imperson', u'antic']
[u'hitler', u'spark', u'outrag']
[u'protea', u'coach', u'urg', u'kalli', u'gibb', u'deliv']
[u'public', u'urg', u'avoid', u'christma', u'panic']
[u'record', u'industri', u'sue', u'hundr', u'onlin', u'song', u'swap']
[u'redund', u'continu', u'seven', u'network']
[u'report', u'say', u'wollongong', u'rescu', u'chopper']
[u'research', u'blow', u'whistl', u'complex', u'offsid', u'rule']
[u'ax', u'canberra', u'sydney', u'servic']
[u'river', u'sight', u'prompt', u'shark', u'warn']
[u'russian', u'analys', u'martian', u'soil']
[u'saddam', u'loyalist', u'direct', u'rebel', u'syria']
[u'saddam', u'meet', u'lawyer', u'time']
[u'saddam', u'tri']
[u'saliva', u'drug', u'test', u'come', u'critic']
[u'order', u'destruct', u'killer', u'shark']
[u'scientist', u'reason', u'declin', u'seal']
[u'search', u'resum', u'fatal', u'shark', u'attack']
[u'share', u'respons', u'deal', u'success']
[u'shark', u'attack', u'victim', u'famili', u'kill', u'order']
[u'shark', u'spot', u'near', u'attack', u'site']
[u'sharon', u'hail', u'breakthrough', u'year', u'peac']
[u'shoaib', u'fin', u'hayden', u'send']
[u'shop', u'centr', u'expans', u'council']
[u'sixer', u'hold', u'breaker', u'nail', u'bite']
[u'snowtown', u'murder', u'juri', u'retir', u'night']
[u'soldier', u'return', u'timor']
[u'south', u'africa', u'target', u'harmison']
[u'springbok', u'reviv', u'light', u'rugbi', u'year']
[u'georg', u'forecast', u'increas', u'home', u'lend']
[u'stop', u'order', u'leski', u'inquest']
[u'strict', u'danc', u'host', u'unrepent', u'gympi', u'gripe']
[u'sydney', u'beach', u'declar', u'smoke', u'free']
[u'tafe', u'staff', u'exorcis', u'budget', u'demon']
[u'tailend', u'hang', u'perth']
[u'tailend', u'spark', u'victorian', u'recoveri', u'bull']
[u'taroom', u'get', u'water', u'meter']
[u'telstra', u'slash', u'manag', u'job']
[u'terror', u'suspect', u'refus', u'access', u'materi']
[u'opposit', u'audit', u'offic']
[u'fan', u'ban', u'racial', u'abus', u'york']
[u'hold', u'melbourn', u'drug', u'raid']
[u'timber', u'giant', u'accus', u'intimid', u'tactic']
[u'surf', u'forc', u'pipelin', u'postpon']
[u'tottenham', u'keep', u'ambul', u'station']
[u'tourist', u'recov', u'stinger', u'attack']
[u'uefa', u'final', u'decid']
[u'warship', u'captain', u'lose', u'post', u'bulli', u'probe']
[u'investig', u'bug', u'european', u'headquart']
[u'offer', u'place', u'scholar']
[u'million', u'pay', u'elvi', u'presley', u'estat']
[u'dollar', u'climb', u'wake', u'deficit', u'data']
[u'marin', u'kill', u'near', u'baghdad']
[u'trade', u'deficit', u'hit', u'record', u'high']
[u'villa', u'boss', u'oleari', u'sign', u'contract', u'extens']
[u'violenc', u'answer', u'pope', u'say']
[u'violent', u'storm', u'caus', u'darwin', u'blackout']
[u'effort', u'stop', u'cane', u'toad', u'march']
[u'word', u'erupt', u'locust', u'control', u'effort']
[u'warrior', u'competit', u'total']
[u'shoot', u'suspect']
[u'water', u'author', u'probe', u'discharg']
[u'water', u'law', u'expect', u'hurt', u'local', u'shire']
[u'sour', u'william', u'injuri']
[u'west', u'indi', u'close', u'finalis', u'tour', u'squad']
[u'whaler', u'shark', u'blame', u'barrier', u'reef', u'attack']
[u'woman', u'jail', u'theft', u'employ']
[u'woman', u'jail', u'daughter', u'manslaught']
[u'women', u'centr', u'expect', u'yuletid', u'domest', u'violenc']
[u'thief', u'payout', u'restor']
[u'yacht', u'club', u'look', u'long', u'term', u'leas']
[u'actab', u'plan', u'gungahlin']
[u'activist', u'enrag', u'kenyan', u'allow', u'kill']
[u'agenc', u'shock', u'gambian', u'correspond', u'murder']
[u'arthriti', u'drug', u'link', u'heart', u'attack', u'risk']
[u'arthriti', u'drug', u'stay', u'aust', u'market']
[u'aussi', u'squash', u'oppon', u'world', u'doubl', u'champ']
[u'aussi', u'taylor', u'champ']
[u'australian', u'suspect', u'arrest']
[u'australia', u'tighten', u'grip', u'test']
[u'babi', u'womb', u'aliv']
[u'bakhtiyari', u'famili', u'move']
[u'barnett', u'leap', u'ahead', u'poll']
[u'bartlett', u'join', u'hunger', u'strike']
[u'beatti', u'defend', u'minist', u'accus', u'cover']
[u'blair', u'meet', u'palestinian', u'leadership', u'ramallah']
[u'blue', u'close', u'victori', u'tiger']
[u'blue', u'inning', u'point']
[u'british', u'billionair', u'doubl', u'band', u'profit']
[u'bull', u'slump', u'defeat', u'season']
[u'bush', u'approv', u'intellig', u'overhaul']
[u'busload', u'kid', u'visit', u'jackson', u'neverland', u'ranch']
[u'canberra', u'seek', u'jetstar', u'servic']
[u'captur', u'journalist', u'driver']
[u'celebrex', u'stay', u'sale']
[u'chelsea', u'draw', u'barca']
[u'china', u'crown', u'miss', u'plastic', u'surgeri']
[u'clark', u'palm', u'island', u'ticket', u'furor']
[u'climat', u'chang', u'confer', u'run', u'overtim']
[u'cuba', u'christma', u'decor']
[u'deadlin', u'issu', u'sudan', u'time', u'bomb']
[u'deal', u'reach', u'isra', u'coalit']
[u'deal', u'strike', u'negoti']
[u'depart', u'nasa', u'chief', u'defend', u'hubbl', u'decis']
[u'dippenaar', u'score', u'test', u'centuri']
[u'owner', u'warn', u'cane', u'toad', u'poison']
[u'dravid', u'ganguli', u'india', u'command']
[u'dubbo', u'firefight', u'honour', u'braveri']
[u'england', u'honour', u'port', u'elizabeth']
[u'journalist', u'appeal', u'assault', u'sentenc']
[u'father', u'kill', u'say']
[u'feral', u'reindeer', u'brisban', u'suburb', u'xmas']
[u'crew', u'battl', u'bushfir']
[u'firefight', u'battl', u'black', u'hill', u'blaze']
[u'firefight', u'contain', u'bushfir']
[u'test', u'go', u'accord', u'script']
[u'violent', u'french', u'storm']
[u'flame', u'turn', u'heat']
[u'freak', u'storm', u'kill', u'franc']
[u'futur', u'climat', u'talk', u'deal', u'agre']
[u'futur', u'australian', u'pop', u'orchestra']
[u'garden', u'guru', u'heinz', u'sign']
[u'gollum', u'precious', u'littl', u'regard', u'health']
[u'greek', u'sprinter', u'submit', u'dope', u'explan']
[u'green', u'bodi', u'want', u'polit', u'donat', u'chang']
[u'haddin', u'steer', u'blue', u'inning', u'point']
[u'hawk', u'halt', u'slide']
[u'histor', u'turkey', u'deal', u'welcom']
[u'hobart', u'get', u'public', u'cemeteri', u'space']
[u'hunt', u'killer', u'shark', u'continu']
[u'indigen', u'legal', u'servic', u'review']
[u'islamist', u'group', u'claim', u'kill', u'intellig']
[u'israel', u'declin', u'attend', u'london', u'confer']
[u'isra', u'troop', u'target', u'khan', u'yuni', u'milit']
[u'juri', u'deadlock', u'snowtown', u'murder', u'trial']
[u'juri', u'retir', u'snowtown', u'trial']
[u'long', u'wait', u'compo', u'say', u'western', u'power']
[u'swim', u'accid', u'die']
[u'involv', u'nedland', u'sieg', u'recaptur']
[u'sentenc', u'boy', u'rape']
[u'martyn', u'hit', u'aussi', u'declar']
[u'minist', u'warn', u'year', u'debt', u'hangov']
[u'monti', u'withdraw', u'ryder', u'captainci', u'race']
[u'murdoch', u'eye']
[u'musharraf', u'confirm', u'militari', u'role']
[u'win', u'tiger', u'king', u'cat', u'taipan']
[u'union', u'chief', u'slam', u'gunn', u'lawsuit']
[u'need', u'investig', u'airfar', u'scandal', u'beatti']
[u'offici', u'play', u'risk', u'deeper', u'port']
[u'palestinian', u'rescu', u'gaza', u'tunnel', u'collaps']
[u'patrol', u'step', u'search', u'killer', u'shark']
[u'polic', u'investig']
[u'policeman', u'burn', u'station', u'attack']
[u'polic', u'question', u'hous', u'stab']
[u'polic', u'search', u'involv', u'nedland', u'sieg']
[u'minist', u'accus', u'airfar', u'cover']
[u'ract', u'step', u'petrol', u'price', u'push']
[u'rafiqu', u'mortaza', u'strike', u'india', u'pass']
[u'reclus', u'austrian', u'writer', u'collect', u'nobel']
[u'bull', u'give', u'coulthard', u'wing']
[u'richmond', u'fan', u'endors', u'casey', u'ticket']
[u'russian', u'anti', u'terror', u'pass', u'hurdl']
[u'secur', u'video', u'travel']
[u'palestinian', u'kill', u'gaza', u'raid']
[u'korea', u'japan', u'urg', u'north', u'resum', u'nuclear', u'talk']
[u'snowtown', u'juri', u'undecid']
[u'soldier', u'sue', u'govern', u'alleg', u'abus']
[u'speaker', u'campaign', u'princ', u'visit']
[u'sport', u'rage', u'advic', u'offer', u'volunt', u'coach']
[u'sting', u'hop', u'continu', u'proud', u'tradit']
[u'sudan', u'govern', u'launch', u'darfur', u'offens']
[u'sudan', u'withdraw', u'troop', u'darfur']
[u'turkey', u'embark', u'road', u'entri']
[u'burundi', u'peacekeep', u'suspend']
[u'union', u'refus', u'repay', u'western', u'power', u'donat']
[u'formal', u'write', u'iraqi', u'debt']
[u'work', u'free', u'hostag', u'baghdad']
[u'vanston', u'defend', u'decis', u'bakhtiyari']
[u'appeal', u'homeless', u'fund', u'decis']
[u'wait', u'result']
[u'wall', u'street', u'slip', u'price', u'leap']
[u'sour', u'william', u'injuri']
[u'wind', u'farm', u'referr', u'plan', u'gain', u'council', u'support']
[u'woman', u'die', u'braybrook', u'stab']
[u'woolmer', u'slam', u'disgrac', u'bat', u'perform']
[u'adelaid', u'shark', u'patrol', u'continu']
[u'agent', u'fin', u'keep', u'hous', u'histori', u'buyer']
[u'alleg', u'tile', u'thrower', u'treat', u'appropri', u'mcginti']
[u'time', u'best', u'australian', u'bowl', u'figur']
[u'ancelotti', u'claim', u'moral', u'victori', u'juve', u'surviv']
[u'angri', u'sikh', u'storm', u'theatr', u'england']
[u'appeal', u'wit', u'brawl']
[u'ashra', u'defi', u'india', u'gutsi', u'half', u'centuri']
[u'ashra', u'slam', u'unbeaten', u'spur', u'bangladesh']
[u'aussi', u'close', u'victori']
[u'australia', u'constant', u'chang', u'year']
[u'aust', u'scientist', u'renew', u'call', u'antarct', u'link']
[u'bartlett', u'pledg', u'support', u'baxter', u'detaine']
[u'baxter', u'protest', u'wan', u'vanston']
[u'beckinsal', u'book']
[u'blast', u'hear', u'indonesia']
[u'blue', u'tiger', u'clash', u'end', u'draw']
[u'brisban', u'charg', u'wide', u'hotel']
[u'bull', u'boost', u'hop', u'centuri']
[u'bush', u'confid', u'isra', u'palestinian', u'peac']
[u'bomb', u'explod', u'karbala']
[u'carol', u'event', u'merri', u'success']
[u'centurion', u'hogg', u'save']
[u'chelsea', u'extend', u'premiership', u'lead']
[u'chemic', u'face', u'crime', u'hear']
[u'communiti', u'club', u'condemn', u'loan', u'magazin']
[u'communiti', u'devast', u'bakhtiyari', u'move']
[u'crew', u'contain', u'kangaroo']
[u'croc', u'sixer', u'home', u'streak']
[u'darfur', u'peac', u'deal', u'doubt']
[u'doctor', u'issu', u'warn', u'drive', u'tire']
[u'fight', u'resum', u'eastern', u'congo', u'say']
[u'fleme', u'continu', u'battl', u'virus']
[u'indian', u'cricket', u'captain', u'hazar', u'die']
[u'franc', u'launch', u'generat', u'satellit']
[u'fraser', u'court', u'resid', u'want', u'secur']
[u'french', u'home', u'power', u'dead', u'storm']
[u'fresh', u'violenc', u'throw', u'sudanes', u'ceas']
[u'gambian', u'journalist', u'strike', u'editor', u'death']
[u'greec', u'surpris', u'packet']
[u'green', u'group', u'unhappi', u'climat', u'chang', u'talk']
[u'green', u'taunt', u'beyer', u'rematch', u'loom']
[u'gunn', u'writ', u'free', u'speech', u'abetz']
[u'helicopt', u'search', u'miss', u'bushwalk']
[u'henin', u'hardenn', u'cautious', u'open', u'return']
[u'indian', u'onlin', u'auction', u'chief', u'hold', u'teen', u'tape']
[u'indonesia', u'blast', u'meteor', u'shower']
[u'injur', u'shoaib', u'hop', u'posit', u'news']
[u'iraq', u'facil', u'target', u'lade']
[u'isra', u'forc', u'withdraw', u'gaza', u'camp']
[u'israel', u'free', u'palestinian', u'prison']
[u'italian', u'soprano', u'renata', u'tebaldi', u'die']
[u'laundri', u'world', u'record', u'wash']
[u'lead', u'jazz', u'saxophonist', u'heckstal', u'smith', u'die']
[u'london', u'polic', u'moor', u'prison', u'ship', u'thame']
[u'malaysia', u'wari', u'australia', u'maritim', u'plan']
[u'arrest', u'brisban', u'newsag', u'assault']
[u'charg', u'fatal', u'geraldton', u'stab']
[u'charg', u'fatal', u'melbourn', u'stab']
[u'custodi', u'hour', u'stand']
[u'kill', u'tractor', u'accid']
[u'martyn', u'magic', u'aussi', u'kill']
[u'makeov', u'complet']
[u'mcgrath', u'hunt', u'scalp']
[u'mcgrath', u'rout', u'pakistan']
[u'mcgrath', u'take', u'test', u'scalp']
[u'melbourn', u'christma', u'sweat']
[u'melburnian', u'ride', u'free']
[u'migrant', u'wall', u'unveil']
[u'mine', u'compani', u'make', u'strong', u'gain']
[u'minist', u'sign', u'tran', u'tasman', u'secur', u'deal']
[u'minist', u'palm', u'island', u'airfar']
[u'miss', u'walker', u'bodi']
[u'motorcyclist', u'kill', u'central', u'coast']
[u'nation', u'museum', u'fight', u'fall', u'visitor', u'number']
[u'ncoss', u'seek', u'communiti', u'own', u'school', u'trial']
[u'perform', u'rais', u'chariti', u'fund']
[u'verdict', u'reach', u'final', u'snowtown', u'trial']
[u'polic', u'introduc', u'video']
[u'oliv', u'twist', u'voic', u'dub', u'girl', u'report']
[u'pair', u'behead', u'traffic']
[u'parent', u'warn', u'pocket', u'rocket', u'bike']
[u'perren', u'lead', u'bull', u'charg']
[u'pinochet', u'hospit', u'stroke']
[u'polic', u'appeal', u'wit', u'assault']
[u'polic', u'charg', u'alleg', u'tile', u'thrower']
[u'post', u'mortem', u'start', u'spineless', u'pakistan']
[u'opposit', u'issu', u'deadlin', u'govt', u'sack']
[u'queensland', u'sting', u'pride', u'wnsl', u'grand', u'final']
[u'real', u'seiz', u'gasp', u'barca', u'salvag', u'draw']
[u'restaur', u'leav', u'truffl']
[u'deni', u'ingor', u'volunt', u'opinion']
[u'royal', u'request', u'prompt', u'hypocrisi', u'claim']
[u'emerg', u'servic', u'discuss', u'shark', u'secur']
[u'scientist', u'target', u'cancer', u'drug', u'effect']
[u'scot', u'ralli', u'armi', u'shake']
[u'shark', u'sight', u'beach']
[u'small', u'quak', u'hit', u'eastern']
[u'south', u'africa', u'fight', u'test']
[u'strauss', u'centuri', u'give', u'england', u'edg']
[u'stun', u'gun', u'save', u'live', u'polic', u'union', u'say']
[u'sudan', u'govt', u'ignor', u'deadlin']
[u'syria', u'pull', u'troop', u'lebanon']
[u'tait', u'put', u'warrior', u'foot']
[u'task', u'forc', u'tackl', u'brisban', u'flood', u'woe']
[u'tender', u'open', u'garden', u'remembr']
[u'kill', u'iraq', u'blast']
[u'territorian', u'chase', u'alcan', u'job']
[u'thai', u'alleg', u'milit', u'train', u'malaysia']
[u'iraqi', u'elect', u'staff', u'kill']
[u'tiger', u'fight', u'blue']
[u'trial', u'extend', u'aborigin', u'court']
[u'turkish', u'hail', u'hero', u'talk']
[u'nistelrooy', u'face', u'long', u'injuri']
[u'victim', u'surpris', u'talk', u'deal']
[u'victoria', u'plant', u'seed', u'green', u'game']
[u'bushfir', u'threaten', u'home']
[u'crew', u'battl', u'bushfir']
[u'warrior', u'earli', u'troubl']
[u'warrior', u'rack', u'redback']
[u'weekend', u'detaine', u'turn', u'record', u'number']
[u'wenger', u'reignit', u'ruud']
[u'wild', u'storm', u'lash', u'sydney']
[u'woman', u'charg', u'babi', u'womb']
[u'women', u'shelter', u'expect', u'extra', u'demand']
[u'worst', u'speed', u'offend', u'expos']
[u'yuko', u'sale', u'expect', u'today']
[u'kill', u'chines', u'explos']
[u'detain', u'iraq', u'bomb']
[u'dead', u'latest', u'iraq', u'violenc']
[u'acoss', u'welcom', u'propos', u'welfar', u'overhaul']
[u'forc', u'buy', u'tanker']
[u'alleg', u'babi', u'kidnapp', u'face', u'committ', u'hear']
[u'armi', u'say', u'base', u'cultur', u'improv', u'soldier']
[u'aussi', u'crash', u'hawaii', u'surf']
[u'australia', u'focus', u'game', u'buchanan']
[u'australian', u'firm', u'launch', u'uranium', u'project', u'malawi']
[u'author', u'remov', u'fitzroy', u'river', u'croc', u'trap']
[u'autopsi', u'conduct', u'dead', u'hiker']
[u'bakhtiyari', u'make', u'fool', u'australian']
[u'bangladesh', u'face', u'defeat', u'despit', u'ashra']
[u'bank', u'pull', u'australian', u'market', u'lower']
[u'baptist', u'colleg', u'get', u'campus', u'fund']
[u'bartlett', u'continu', u'hunger', u'strike']
[u'beatti', u'get', u'robber', u'mix']
[u'beatti', u'tell', u'yanner', u'grow', u'airfar']
[u'benitez', u'back', u'kewel']
[u'biggenden', u'die', u'head', u'crash']
[u'blair', u'say', u'middl', u'east', u'peac', u'person', u'prioriti']
[u'blaze', u'leav', u'famili', u'homeless']
[u'bloomfield', u'host', u'orang', u'hospit']
[u'brack', u'govern', u'protest', u'welfar', u'cut']
[u'brand', u'contest', u'murchison', u'eyr']
[u'brawl', u'like', u'spark', u'polic', u'charg']
[u'brawl', u'prompt', u'secur', u'review']
[u'brisban', u'face', u'court', u'hotel', u'blaze']
[u'bull', u'enforc', u'follow']
[u'bull', u'enforc', u'follow', u'bushrang']
[u'burnett', u'shire', u'resid', u'town', u'plan']
[u'bushfir', u'spark', u'remind', u'readi']
[u'bush', u'name', u'magazin', u'person', u'year']
[u'bushrang', u'fight', u'bull']
[u'bushrang', u'struggl', u'brisban']
[u'busi', u'time', u'emerg', u'servic']
[u'butcher', u'beef', u'support', u'secur', u'mayor', u'spot']
[u'canberra', u'look', u'reviv', u'tourism']
[u'canberra', u'surgeri', u'wait', u'list', u'grow']
[u'cantona', u'come', u'glazer']
[u'capsicum', u'spray', u'prank', u'close', u'nightclub']
[u'clark', u'pay', u'palm', u'island', u'airfar']
[u'coal', u'termin', u'deni', u'expans', u'necessari']
[u'cole', u'issu', u'sultana', u'recal']
[u'congo', u'unrest', u'forc', u'thousand', u'home']
[u'consortium', u'propos', u'friend', u'pipelin', u'option']
[u'consum', u'urg', u'forgiv', u'perfect', u'produc']
[u'coron', u'rule', u'drown', u'death', u'unnatur']
[u'council', u'come', u'rescu', u'lifeguard', u'fund']
[u'council', u'maintain', u'highway', u'bypass', u'stanc']
[u'council', u'plan', u'servic', u'boost']
[u'council', u'combin', u'effort', u'weed', u'pest']
[u'council', u'assess', u'flood', u'feedback']
[u'cricket', u'australia', u'hop', u'box', u'crowd']
[u'custom', u'vessel', u'rescu', u'sick', u'fisherman']
[u'dinosaur', u'perman', u'home', u'queen']
[u'doubt', u'rais', u'student', u'public', u'hous', u'decis']
[u'downer', u'set', u'record', u'foreign', u'affair', u'minist']
[u'drink', u'driver', u'charg', u'polic', u'chase']
[u'driver', u'jail', u'friend', u'crash', u'death']
[u'driver', u'warn', u'river', u'cross', u'danger']
[u'echuca', u'student', u'seek', u'school', u'incent']
[u'electr', u'boss', u'defend', u'power', u'report']
[u'energex', u'boss', u'xmas', u'bonus', u'slash']
[u'espanyol', u'claim', u'second', u'place', u'sevilla', u'beat', u'beti']
[u'esso', u'shift', u'chang', u'safeti', u'risk', u'worker']
[u'famili', u'friend', u'say', u'bakhtiyari', u'remain', u'posit']
[u'fare', u'chang', u'cost', u'fair', u'costa']
[u'farmer', u'alert', u'locust', u'swarm']
[u'father', u'face', u'court', u'son', u'stab']
[u'fear', u'traffic', u'hurt', u'bird', u'rehab', u'effort']
[u'ferrari', u'boss', u'rev', u'revenu']
[u'fifa', u'approv', u'doubl']
[u'fifa', u'reject', u'mexican', u'club', u'request', u'sign', u'femal']
[u'fight', u'continu', u'sudan', u'despit', u'ceas']
[u'financ', u'director', u'beat', u'health', u'servic']
[u'crew', u'battl', u'blaze', u'outer', u'perth']
[u'firefight', u'warn', u'resid', u'alert']
[u'fluorid', u'plan', u'debat']
[u'charg', u'corrim', u'drug', u'raid']
[u'fraser', u'dingo', u'fenc', u'near', u'complet']
[u'fund', u'offer', u'natur', u'resourc', u'project']
[u'gallop', u'condemn', u'govt', u'control', u'uni']
[u'game', u'organis', u'confid', u'asia', u'tune']
[u'generat', u'come', u'line', u'year']
[u'govt', u'award', u'medal', u'long', u'term', u'canberran']
[u'govt', u'date', u'childcar', u'rebat']
[u'govt', u'defend', u'cut', u'emerg', u'support', u'servic']
[u'govt', u'delay', u'cash', u'phase', u'toll', u'road']
[u'govt', u'offer', u'support', u'mine', u'ventur']
[u'govt', u'say', u'compens', u'isnt', u'answer', u'steal']
[u'govt', u'warn', u'credit', u'card', u'danger']
[u'grant', u'help', u'showcas', u'tasmanian', u'technolog']
[u'grenad', u'jakarta', u'hilton', u'park']
[u'homicid', u'investig', u'death']
[u'jintao', u'public', u'slam', u'hong', u'kong', u'leader']
[u'hydrogen', u'power', u'posti', u'bike', u'tassi', u'trial']
[u'hide', u'say', u'iaea', u'chief']
[u'imran', u'deplor', u'pakistan', u'cricket', u'humili']
[u'india', u'complet', u'bangladesh', u'demolit']
[u'indonesian', u'polit', u'twist', u'see', u'oppon']
[u'israel', u'uniti', u'govern', u'talk', u'stall']
[u'jail', u'maximum', u'secur', u'wing', u'reopen']
[u'kakadu', u'entri', u'fee', u'scrap']
[u'kimberley', u'tourism', u'industri', u'continu', u'growth']
[u'hamstr', u'duti']
[u'stick', u'limbo']
[u'leisur', u'centr', u'get', u'fund', u'grant']
[u'local', u'group', u'disput', u'lobster', u'pot']
[u'long', u'term', u'save', u'see', u'cost', u'livestock', u'scheme']
[u'plate', u'supervisor', u'fail', u'breath', u'test']
[u'lump', u'payout', u'worker']
[u'mackay', u'doctor', u'face', u'practic', u'condit']
[u'charg', u'yuendumu', u'hous', u'blaze']
[u'dead', u'motorway', u'smash']
[u'jail', u'child', u'porn', u'imag']
[u'like', u'charg', u'stab']
[u'sledg', u'faulti']
[u'mayor', u'reject', u'pool', u'librari', u'closur', u'claim']
[u'mayor', u'stand', u'pend', u'corrupt', u'probe']
[u'melbourn', u'victori', u'coach']
[u'mine', u'tribun', u'settl', u'govt', u'land', u'disput']
[u'mitchel', u'put', u'hand', u'perth']
[u'moth', u'take', u'wing', u'threaten', u'weed']
[u'welcom', u'princ', u'highway', u'fund']
[u'nelson', u'propos', u'govt', u'control', u'univers']
[u'nelson', u'propos', u'count', u'state', u'fund']
[u'clubhous', u'target', u'boost', u'event']
[u'law', u'restrict', u'nitrat', u'fertilis', u'sale']
[u'advantag', u'local', u'smartcard', u'tender']
[u'north', u'west', u'surviv', u'storm']
[u'nowra', u'die', u'motorcycl', u'crash']
[u'appeal', u'sack', u'teacher', u'compens']
[u'ntini', u'burst', u'put', u'protea', u'content']
[u'worker', u'protest', u'roster', u'chang']
[u'orang', u'grove', u'develop', u'want', u'carr']
[u'organis', u'sing', u'public', u'prais', u'carol']
[u'pakistan', u'coach', u'seek', u'strategi']
[u'pakistan', u'scar', u'waca', u'massacr', u'pont']
[u'parent', u'urg', u'tackl', u'whoop', u'cough']
[u'patient', u'win', u'payout', u'health']
[u'pfizer', u'stop', u'advertis', u'painkil', u'report']
[u'pinochet', u'recov', u'stroke']
[u'pipelin', u'special', u'approv', u'process']
[u'plan', u'afoot', u'longer', u'council', u'term']
[u'polic', u'imperson', u'strike']
[u'polic', u'investig', u'doubl', u'stab']
[u'polic', u'issu', u'holiday', u'behaviour', u'remind']
[u'polic', u'cannabi', u'bust']
[u'polic', u'arrest', u'tennant', u'brawl']
[u'polic', u'probe', u'teen', u'death']
[u'polic', u'improv', u'respons', u'shark', u'sight']
[u'pompey', u'confirm', u'strachan', u'refus']
[u'propos', u'roll', u'chang', u'lock', u'indigen', u'voter']
[u'public', u'warn', u'blue', u'green', u'alga', u'outbreak']
[u'push', u'unifi', u'australia', u'evid', u'law']
[u'drought', u'status', u'remain', u'unchang', u'despit']
[u'rare', u'campbel', u'strike', u'keep', u'arsenal', u'touch']
[u'recycl', u'water', u'longer', u'grey', u'area', u'canberran']
[u'refuge', u'action', u'group', u'consid', u'hunger', u'strike']
[u'report', u'highlight', u'hospit', u'woe']
[u'unlik', u'ditch', u'countri', u'rout']
[u'roch', u'knock', u'feder', u'offer']
[u'rumsfeld', u'criticis', u'condol', u'letter']
[u'ryder', u'star', u'open']
[u'saddam', u'urg', u'iraqi', u'peopl', u'wari', u'elect']
[u'face', u'court', u'cannabi']
[u'polic', u'look', u'recruit']
[u'scientist', u'light', u'emit', u'diod', u'cost']
[u'senat', u'air', u'north', u'coast', u'jobless', u'rate', u'fear']
[u'continu', u'storm', u'clean']
[u'shark', u'sight', u'forc', u'gold', u'coast', u'beach', u'closur']
[u'shiit', u'urg', u'turn', u'cheek', u'iraq', u'attack']
[u'shire', u'presid', u'contest', u'elect']
[u'shoaib', u'urg']
[u'shoot', u'victim', u'famili', u'seek', u'mental', u'health']
[u'showcas', u'highlight', u'nolan', u'divers']
[u'soccer', u'reach', u'youth', u'leagu', u'goal']
[u'soldier', u'kill', u'nepal', u'unrest']
[u'soldier', u'communiti', u'servic', u'hors', u'shoot']
[u'stinger', u'incid', u'spark', u'time', u'warn']
[u'survivor', u'provid', u'entertain', u'cyclon']
[u'swan', u'hail', u'million', u'plus', u'turnaround']
[u'sydney', u'publican', u'die', u'hotel', u'brawl']
[u'sydney', u'publican', u'remain', u'critic']
[u'tasmania', u'reject', u'univers', u'power', u'grab']
[u'teen', u'jail', u'kill', u'homeless']
[u'test', u'regim', u'tri', u'reduc', u'grain', u'contamin']
[u'totti', u'break', u'record', u'udines', u'close']
[u'travel', u'warn', u'prompt', u'qanta', u'crew', u'chang']
[u'tszyu', u'meet', u'russian', u'presid', u'putin']
[u'separ', u'crash']
[u'ukrain', u'candid', u'debat']
[u'underworld', u'figur', u'father', u'face', u'traffic', u'charg']
[u'chief', u'fear', u'nelson', u'plan', u'divers']
[u'union', u'cut', u'deal', u'charl', u'darwin']
[u'union', u'urg', u'govt', u'game', u'contract', u'local']
[u'upgrad', u'announc', u'kariong', u'correct', u'centr']
[u'tie', u'australia', u'region', u'clout', u'downer']
[u'vanston', u'defend', u'time', u'bakhtiyari']
[u'waca', u'seek', u'govt', u'bail']
[u'govt', u'provid', u'hospit', u'equip']
[u'labor', u'candid', u'confid', u'govt', u'health', u'polici']
[u'opposit', u'pan', u'desper', u'medic', u'spend']
[u'warrior', u'redback']
[u'warrior', u'shaki', u'inning']
[u'warrior', u'charg', u'redback']
[u'water', u'bomber', u'limit', u'calm']
[u'west', u'coast', u'busi']
[u'wheat', u'board', u'say', u'test', u'reduc', u'contamin']
[u'woman', u'face', u'tamworth', u'court', u'murder', u'charg']
[u'wool', u'industri', u'win', u'support', u'peta', u'suit']
[u'woolmer', u'look', u'answer']
[u'xmas', u'sale', u'expect', u'push', u'retail', u'figur']
[u'yuko', u'core', u'asset', u'sell']
[u'thing', u'christma']
[u'abalon', u'compani', u'unit', u'boost', u'sale']
[u'accc', u'investig', u'price', u'fix', u'claim']
[u'accc', u'wont', u'stop', u'takeov', u'xstrata']
[u'govt', u'revis', u'civic', u'develop', u'plan']
[u'acupunctur', u'improv', u'arthrit', u'knee']
[u'patrol', u'appeas', u'shark', u'fear']
[u'albani', u'council', u'consid', u'hand', u'gull', u'rock', u'reserv']
[u'arnberg', u'lead', u'victoria', u'fight']
[u'aspir', u'ethiopian', u'footbal', u'darwin', u'debut']
[u'break', u'point', u'barrier']
[u'aurora', u'penalti', u'power', u'bill']
[u'australian', u'swim', u'offici', u'concern', u'thorp']
[u'author', u'plan', u'better', u'handl', u'mental', u'health']
[u'bank', u'charg', u'excess', u'penalti', u'fee', u'centr']
[u'basqu', u'parliament', u'vote', u'favour', u'autonomi', u'plan']
[u'benitez', u'reveal', u'kewel', u'help']
[u'hick', u'document', u'fail']
[u'gun', u'weigh', u'ahead', u'sydney', u'hobart']
[u'blair', u'make', u'surpris', u'visit', u'baghdad']
[u'blewett', u'redback', u'chanc']
[u'avoid', u'jail', u'hous', u'blaze']
[u'brake', u'appli', u'sale']
[u'brazil', u'fifa', u'world', u'rank', u'australia']
[u'broom', u'forc', u'mcdonald', u'furl', u'flag']
[u'brothel', u'owner', u'welcom', u'report']
[u'bush', u'conced', u'guantanamo', u'hurt', u'reput']
[u'bushrang', u'build', u'lead', u'bull']
[u'bushrang', u'fight', u'gabba']
[u'strathfield', u'mayor', u'stand', u'asid']
[u'brake', u'higher', u'fare']
[u'calm', u'take', u'step', u'avoid', u'spread', u'veget']
[u'camp', u'site', u'open', u'asbesto', u'scare']
[u'canberra', u'magistr', u'back', u'aborigin', u'court']
[u'children', u'chariti', u'pull', u'darfur']
[u'moot', u'innov', u'domest', u'violenc', u'reform']
[u'coastal', u'care', u'plan', u'includ', u'public', u'input']
[u'costello', u'howard', u'lead']
[u'council', u'approv', u'north', u'east', u'wind', u'farm', u'applic']
[u'council', u'leve', u'work', u'track']
[u'council', u'consid', u'park', u'sale', u'option']
[u'court', u'uphold', u'charg', u'pinochet']
[u'craigieburn', u'bypass', u'travel', u'time']
[u'cyclist', u'die', u'freeway', u'accid']
[u'decis', u'expect', u'kenteri', u'case']
[u'desert', u'come', u'citi', u'exhibit']
[u'donat', u'seek', u'separ', u'abandon', u'siames']
[u'doomadge', u'arrest', u'offic', u'transfer', u'gold']
[u'educ', u'reform', u'higher', u'educ']
[u'england', u'notch', u'record', u'break', u'victori']
[u'eros', u'problem', u'divid', u'citi', u'council']
[u'export', u'award', u'winner', u'see', u'benefit', u'stay']
[u'fatal', u'crash', u'driver', u'speed', u'polic']
[u'feder', u'fund', u'boost', u'research', u'centr']
[u'feder', u'myskina', u'world']
[u'filipino', u'guerilla', u'reciprocr', u'christma', u'ceas']
[u'author', u'shed', u'light', u'christma', u'danger']
[u'break', u'sydney', u'hous', u'complex']
[u'burn', u'bush', u'track', u'south', u'perth']
[u'damag', u'histor', u'build']
[u'fear', u'fuel', u'reservoir', u'studi']
[u'fire', u'continu', u'blaze', u'southern']
[u'minist', u'admit', u'lie', u'icac']
[u'fuel', u'price', u'climb']
[u'fund', u'target', u'outback', u'activ']
[u'turbin', u'deliveri', u'delay']
[u'gate', u'shut', u'final', u'time', u'beechworth', u'jail']
[u'gatto', u'stand', u'trial', u'murder']
[u'giant', u'salt', u'farm', u'look', u'unlik']
[u'glazer', u'line']
[u'govt', u'offer', u'disabl', u'fund']
[u'govt', u'predict', u'higher', u'surplus', u'slower', u'growth']
[u'govt', u'finalis', u'payment', u'worker']
[u'govt', u'updat', u'budget', u'forecast']
[u'govt', u'urg', u'olymp']
[u'govt', u'urg', u'canberra', u'tourism']
[u'greek', u'probe', u'hamilton', u'blunder']
[u'grenad', u'jakarta', u'hilton', u'inact']
[u'hall', u'name', u'wheelchair', u'tenniss', u'player']
[u'happi', u'valley', u'charlton', u'fulham']
[u'harbhajan', u'report', u'doosra']
[u'hardi', u'agre', u'year', u'compens', u'deal']
[u'hardi', u'ask', u'halt', u'share', u'trade']
[u'hardi', u'expect', u'sign', u'compens', u'deal']
[u'hardi', u'sign', u'record', u'compens', u'agreement']
[u'heritag', u'order', u'delay', u'plan']
[u'holiday', u'season', u'prompt', u'lose', u'warn']
[u'hope', u'feder', u'fund', u'beef', u'arthriti', u'drug']
[u'hop', u'organ', u'sugar', u'mackay', u'fade']
[u'hospit', u'elect', u'surgeri', u'hold']
[u'howard', u'achiev', u'polit', u'mileston']
[u'improv', u'wool', u'handl', u'skill', u'equal', u'bigger']
[u'inquiri', u'find', u'carr', u'interfer', u'orang', u'grove']
[u'inquiri', u'spark', u'call', u'orang', u'grove', u'rezon']
[u'interpret', u'troubl', u'hinder', u'terror', u'case']
[u'iraqi', u'forc', u'readi', u'bush']
[u'iraq', u'round', u'suspect']
[u'jail', u'sentenc', u'reduc', u'notori', u'paedophil']
[u'leader', u'tell', u'court', u'bashir', u'visit']
[u'jone', u'bowl', u'england', u'brink']
[u'judg', u'dismiss', u'quash', u'jackson', u'charg']
[u'kasper', u'come', u'shoaib', u'defenc']
[u'labor', u'critic', u'childcar', u'rebat', u'chang']
[u'throw', u'team', u'lifelin']
[u'lewi', u'surpris', u'hop', u'delight']
[u'lightn', u'strike', u'servic', u'station', u'retir']
[u'littl', u'movement', u'market']
[u'liverpool', u'face', u'battl', u'morient', u'agent']
[u'local', u'campaign', u'boost', u'littl', u'tern', u'number']
[u'jail', u'breach', u'alcohol', u'restrict']
[u'child', u'porn', u'charg']
[u'ministeri', u'meet', u'touch', u'palm', u'alcohol', u'plan']
[u'minist', u'sack', u'diari', u'shred']
[u'mouth', u'shot', u'display', u'tabocco', u'shop']
[u'predict', u'tougher', u'fight', u'nation']
[u'parent', u'tell', u'orang', u'grove', u'standov', u'tactic']
[u'nation', u'leader', u'critic', u'bypass', u'remov']
[u'nativ', u'fish', u'surviv', u'lake', u'forb', u'carp', u'kill']
[u'star', u'team', u'name']
[u'boat', u'ramp', u'eas', u'lake', u'kununurra', u'congest']
[u'websit', u'push', u'illawarra', u'invest']
[u'nigeria', u'determin', u'fate', u'falter', u'darfur', u'talk']
[u'progress', u'french', u'journalist', u'releas']
[u'report', u'back', u'player', u'educ']
[u'set', u'desalin', u'studi']
[u'ask', u'bakhtiyari', u'famili']
[u'reject', u'request', u'bakhtiyari', u'famili']
[u'offic', u'block', u'damag']
[u'older', u'australian', u'urg', u'step', u'melanoma', u'check']
[u'owner', u'beat', u'renison', u'mine', u'reopen']
[u'pakistan', u'court', u'cancel', u'bail', u'husband']
[u'pastor', u'charg', u'shop', u'centr', u'carol', u'stoush']
[u'person', u'trainer', u'hone', u'shearer', u'skill']
[u'peru', u'crash', u'kill']
[u'pest', u'devast', u'grape', u'grower']
[u'chief', u'hail', u'etern', u'arafat']
[u'favourit', u'celebr', u'mileston']
[u'polic', u'hunt', u'arm', u'hotel', u'robber']
[u'polic', u'search', u'miss', u'teen']
[u'polic', u'seek', u'attempt', u'sexual', u'assault', u'wit']
[u'polic', u'tight', u'lip', u'collin', u'inquiri', u'find']
[u'polic', u'unhappi', u'danger', u'driver']
[u'polic', u'urg', u'driver', u'belt']
[u'polic', u'warn', u'hotel', u'brawler', u'catch']
[u'power', u'plant', u'think', u'hous', u'boom']
[u'prosecutor', u'alleg', u'obsess', u'blake', u'shoot', u'wife']
[u'public', u'flood', u'advic']
[u'qanta', u'flight', u'crew', u'stay', u'darwin', u'indonesia']
[u'home', u'power', u'storm']
[u'redback', u'troubl', u'adelaid']
[u'region', u'miss', u'free', u'year']
[u'remain', u'year']
[u'repeat', u'offend', u'jail', u'theft']
[u'revamp', u'playhous', u'theatr', u'council', u'prais']
[u'review', u'brake', u'dodgi', u'drive', u'instructor']
[u'rhino', u'number', u'dwindl']
[u'robber', u'caus', u'headach', u'pharmaci', u'staff']
[u'ronaldinho', u'name', u'footbal', u'year']
[u'saboteur', u'crippl', u'iraqi', u'pip', u'ablaz']
[u'salvo', u'appeal', u'christma', u'hamper', u'donat']
[u'salvo', u'suppli', u'fail', u'meet', u'increas', u'demand']
[u'polic', u'search']
[u'sensi', u'acquir', u'lead', u'map', u'publish']
[u'settlement', u'reach', u'wrong', u'arrest', u'case']
[u'singer', u'cancel', u'indonesian', u'concert', u'terror']
[u'south', u'korean', u'minist', u'china', u'north', u'korea', u'talk']
[u'sport', u'broadcast', u'adelaid', u'airway']
[u'stockland', u'order', u'elder', u'court', u'cost']
[u'peter', u'basilica', u'serv', u'heaven', u'coffe']
[u'stray', u'dog', u'lead', u'villag', u'mass', u'grave', u'iraq']
[u'studi', u'find', u'youth', u'feel', u'disillus']
[u'studi', u'consid', u'mine', u'impact']
[u'subdivis', u'put', u'pressur']
[u'support', u'seek', u'countri', u'bakhtiyari']
[u'tare', u'council', u'reject', u'conserv', u'critic']
[u'tasmania', u'introduc', u'tougher', u'child', u'porn', u'penalti']
[u'teenag', u'die', u'melbourn', u'smash']
[u'teen', u'die', u'highway', u'crash']
[u'timber', u'bolster', u'process', u'capac']
[u'tourist', u'cancel', u'indonesian', u'holiday', u'terror']
[u'townsvill', u'record', u'better', u'averag', u'rain']
[u'travel', u'advis', u'avoid', u'fast', u'food']
[u'trial', u'end', u'reduc', u'scallop', u'size', u'limit']
[u'tuckey', u'seek', u'support', u'case', u'anim']
[u'turtl', u'nest', u'northern']
[u'move', u'closer', u'introduct', u'card']
[u'theatr', u'scrap', u'sikh', u'play', u'violent', u'protest']
[u'uncertain', u'christma', u'taxi', u'centr', u'worker']
[u'uncertainti', u'surround', u'drought', u'applic']
[u'boost', u'scholarship', u'scheme']
[u'univers', u'deal', u'seal', u'civic', u'west', u'develop', u'plan']
[u'unlicens', u'driver', u'involv', u'fatal', u'crash']
[u'unlicens', u'driver', u'jail', u'kill', u'motorcyclist']
[u'militari', u'find', u'mass', u'grave', u'northern', u'iraq']
[u'oppos', u'talk', u'commonwealth', u'control']
[u'compani', u'urg', u'employ', u'local', u'tradespeopl']
[u'govt', u'call', u'deliv', u'railway', u'promis']
[u'victim', u'warn', u'hardi', u'fight']
[u'victoria', u'popul', u'reach', u'million']
[u'govt', u'fund', u'probe', u'indigen', u'own', u'station']
[u'wallabi', u'stay', u'park', u'releas']
[u'warn', u'issu', u'ecstasi', u'pill']
[u'warrior', u'wrap', u'victori', u'redback']
[u'water', u'suppli', u'woe', u'prompt', u'council', u'advic']
[u'clear', u'bairnsdal', u'pipelin']
[u'woman', u'face', u'court', u'drug', u'charg']
[u'work', u'progress', u'wild', u'kill', u'devic']
[u'world', u'celebr', u'china', u'christma']
[u'youth', u'survey', u'highlight', u'communiti', u'issu']
[u'yushchenko', u'yanukovich', u'clash', u'presidenti', u'debat']
[u'abalon', u'poach', u'prompt', u'polic', u'crackdown']
[u'accus', u'gangland', u'killer', u'refus', u'bail']
[u'accus', u'greek', u'sprinter', u'learn', u'drug', u'fate']
[u'afghan', u'embassi', u'make', u'bakhtiyari', u'inquiri']
[u'appoint', u'tribun', u'head']
[u'tribun', u'panel', u'grade', u'offenc']
[u'oper', u'launch', u'fallujah']
[u'leagu', u'differ', u'say', u'despotovski']
[u'alic', u'newspap', u'encourag', u'youth', u'submiss']
[u'altern', u'seek', u'canberra', u'water', u'conserv']
[u'annan', u'admit', u'tough', u'year']
[u'asbesto', u'shop', u'centr', u'build', u'site']
[u'reach', u'high']
[u'attack', u'base', u'mosul', u'leav', u'dead', u'pentagon']
[u'aust', u'boost', u'solomon', u'forc']
[u'australian', u'kill', u'solomon']
[u'bank', u'staff', u'safe', u'heist']
[u'bartlett', u'end', u'hunger', u'strike']
[u'blunkett', u'speed', u'nanni', u'visa', u'applic', u'inquiri', u'find']
[u'brazil', u'robber', u'demand', u'impot', u'pill']
[u'bush', u'condem', u'mosul', u'attack']
[u'closer', u'examin', u'control', u'propos']
[u'tour', u'oper', u'licens', u'fatal', u'croc']
[u'campaign', u'plan', u'fight', u'duck', u'shoot', u'season']
[u'chang', u'alic', u'airport', u'master', u'plan']
[u'chief', u'justic', u'critic', u'court', u'facil']
[u'child', u'drown', u'prompt', u'safeti', u'warn']
[u'citrus', u'grower', u'berri', u'increas', u'payment']
[u'citrus', u'market', u'reopen', u'canker', u'scare']
[u'clark', u'reach', u'match', u'mileston']
[u'clean', u'continu', u'barcaldin', u'storm']
[u'coast', u'attract', u'backpack', u'market']
[u'communiti', u'group', u'form', u'opposit', u'bypass']
[u'concern', u'ramif', u'hick', u'failur']
[u'corn', u'brother', u'stay', u'power']
[u'council', u'consid', u'extern', u'disput', u'resolut']
[u'council', u'knock', u'oceanfront', u'subdivis']
[u'council', u'plead', u'guilti', u'sewag', u'spill']
[u'council', u'program', u'aim', u'reduc', u'hoon']
[u'council', u'urg', u'museum', u'sit']
[u'council', u'want', u'pulp', u'bell']
[u'decis', u'meat', u'processor', u'futur', u'loom']
[u'defenc', u'hous', u'spend', u'queanbeyan']
[u'depart', u'say', u'natur', u'reserv', u'sell', u'point']
[u'dermatologist', u'shortag', u'affect', u'region', u'area']
[u'design', u'driver', u'free', u'soft', u'drink']
[u'england', u'wait', u'say', u'gilchrist']
[u'ergon', u'centr', u'maintain', u'speedi', u'respons']
[u'esper', u'group', u'govt', u'fund']
[u'ethanol', u'blend', u'fuel', u'trial', u'extend']
[u'expert', u'say', u'sit', u'cultur']
[u'farmer', u'urg', u'govt', u'address', u'nativ', u'veget']
[u'email', u'reveal', u'guantanamo', u'abus', u'claim']
[u'fear', u'dungog', u'school', u'childcar', u'centr']
[u'feder', u'policeman', u'murder', u'honiara']
[u'fifa', u'spain', u'racial', u'abus', u'england']
[u'crew', u'bring', u'bushfir', u'control']
[u'damag', u'popular', u'orang', u'restaur']
[u'firefight', u'work', u'blaze', u'sydney', u'west']
[u'servic', u'contain', u'week', u'long', u'bushfir']
[u'femal', u'line', u'person', u'apprentic', u'hop']
[u'franc', u'deni', u'pay', u'ransom', u'free', u'journalist']
[u'franklin', u'award', u'judg', u'resign', u'disput']
[u'french', u'report', u'free', u'iraq']
[u'gang', u'steal', u'robberi']
[u'germani', u'wrap', u'asia', u'tour', u'thump', u'thailand']
[u'gilchrist', u'sure', u'thing', u'world', u'record', u'say']
[u'govt', u'call', u'costello', u'reject', u'xstrata']
[u'govt', u'criticis', u'region', u'hospit', u'shortag']
[u'govt', u'dedic', u'thousand', u'ravensthorp']
[u'govt', u'give', u'research', u'facil']
[u'govt', u'poki', u'deal', u'anti', u'competit']
[u'govt', u'say', u'island', u'riot', u'polic', u'matter']
[u'govt', u'seek', u'public', u'comment', u'water', u'manag']
[u'govt', u'support', u'sydney', u'canberra', u'flight']
[u'govt', u'urg', u'address', u'skill', u'worker', u'shortag']
[u'hardi', u'confid', u'sharehold', u'agre', u'deal']
[u'heroin', u'death', u'australia', u'drop']
[u'homeless', u'scheme', u'fund', u'outrag']
[u'hostel', u'improv', u'indigen', u'access', u'educ']
[u'imperson', u'polic', u'offic']
[u'incom', u'onesteel', u'chief', u'prais', u'workforc']
[u'india', u'upbeat', u'despit', u'harbhajan', u'report']
[u'indigen', u'leader', u'claim', u'cover', u'airfar']
[u'industri', u'group', u'council', u'lobbi', u'technic', u'colleg']
[u'industri', u'prop', u'govt', u'assist', u'report']
[u'insomnia', u'manag', u'honour', u'award']
[u'inzamam', u'shoaib', u'clear', u'box', u'test']
[u'iraqi', u'australia', u'vote', u'januari', u'elect']
[u'isra', u'polic', u'chief', u'warn', u'settler', u'thwart']
[u'israel', u'raid', u'gaza', u'camp', u'mortar', u'attack']
[u'jilt', u'bride', u'sue', u'runaway', u'groom']
[u'judg', u'uphold', u'penalti', u'microsoft']
[u'laughter', u'best', u'medicin', u'clown', u'doctor']
[u'lightn', u'strike', u'servic', u'station']
[u'lithgow', u'council', u'consid', u'religi', u'retreat']
[u'local', u'council', u'say', u'staff', u'problem']
[u'longreach', u'water', u'treatment', u'plant', u'run']
[u'loud', u'explos', u'shot', u'baghdad']
[u'retail', u'price', u'hinder', u'seafood', u'sale']
[u'macarthur', u'target', u'world', u'record']
[u'malaysia', u'close', u'thai', u'border']
[u'drown', u'lake', u'jindabyn']
[u'get', u'seven', u'year', u'jail', u'taxi', u'driver', u'assault']
[u'jail', u'abus', u'grandchildren']
[u'jail', u'help', u'conceal', u'murder']
[u'jail', u'sexual', u'assault', u'young', u'girl']
[u'jail', u'view', u'child', u'porn', u'cafe']
[u'kill', u'crash', u'brief', u'polic', u'chase']
[u'appear', u'court', u'fraud', u'charg']
[u'mcdonald', u'happi', u'remov', u'flag']
[u'mcgrath', u'world']
[u'media', u'appeal', u'assault', u'convict']
[u'middl', u'east', u'peac', u'process', u'continu', u'blair']
[u'minist', u'deni', u'involv', u'polic', u'direct']
[u'consult', u'need', u'alcohol', u'plan']
[u'morgan', u'withdraw', u'liverpool']
[u'mourner', u'goodby', u'forkin', u'cousin']
[u'movi', u'star', u'campaign', u'pig']
[u'call', u'extens', u'drug', u'court', u'trial']
[u'claim', u'polic', u'offic', u'abus', u'staff', u'member']
[u'urg', u'christma', u'blood', u'donat']
[u'mysteri', u'martian', u'clean', u'space', u'buggi']
[u'ahead', u'bank', u'sale', u'despit', u'robberi']
[u'neck', u'injuri', u'forc', u'wallabi', u'bond', u'retir']
[u'nineteen', u'soldier', u'kill', u'mosul']
[u'indemn', u'hardi', u'deal', u'say']
[u'continu', u'drug', u'drive', u'check']
[u'oakey', u'supermarket', u'construct', u'begin']
[u'parent', u'urg', u'supervis', u'children', u'play']
[u'park', u'leagu', u'club', u'save', u'amalgam', u'deal']
[u'pilot', u'forget', u'land', u'gear', u'tire', u'distract']
[u'vow', u'solomon', u'mission']
[u'polic', u'clamp', u'darl', u'down', u'crime']
[u'polic', u'closer', u'suspect', u'patton', u'murder']
[u'polic', u'hunt', u'arm', u'robberi']
[u'polic', u'investig', u'counterfeit', u'note']
[u'polic', u'prais', u'mental', u'health', u'patient', u'strategi']
[u'polic', u'inexperi', u'caus', u'denmark', u'crash']
[u'polic', u'subdu', u'capsicum', u'spray']
[u'polic', u'warn', u'festiv', u'season', u'fraudster']
[u'polit', u'erupt', u'homeless', u'problem']
[u'polit', u'diseas', u'continu']
[u'port', u'hedland', u'facelift']
[u'postal', u'vote', u'overhaul']
[u'pressur', u'mount', u'riverina', u'tech', u'colleg']
[u'program', u'deliv', u'extra', u'train', u'nurs']
[u'prosecutor', u'warn', u'resumpt', u'gangland', u'kill']
[u'protest', u'bakhtiyari', u'famili']
[u'public', u'submiss', u'flag', u'odour', u'land', u'impact']
[u'consid', u'reduc', u'scallop', u'size', u'limit']
[u'lose', u'maher', u'chase', u'vic']
[u'reliabl', u'drug', u'drive', u'test', u'doubt']
[u'research', u'offer', u'telephon', u'counsel', u'smoker']
[u'resid', u'fight', u'protect', u'boat', u'harbour', u'land']
[u'robot', u'help', u'scientist', u'predict', u'ocean', u'chang']
[u'ruddock', u'want', u'guantanamo', u'abus', u'claim', u'test']
[u'rugbi', u'secur', u'futur', u'news', u'deal']
[u'salt', u'plan', u'worri', u'lobbi', u'group']
[u'schoolboy', u'error', u'hurt', u'west', u'brom', u'say', u'robson']
[u'second', u'driver', u'clear', u'drug', u'take']
[u'shark', u'attack', u'victim', u'rememb']
[u'sixteen', u'graduat', u'join', u'fight']
[u'sixth', u'harri', u'potter', u'cast', u'spell', u'juli']
[u'stand', u'strauss', u'keep', u'enjoy', u'fairytal']
[u'sydney', u'hobart', u'favourit', u'measur', u'race', u'spec']
[u'sydney', u'hobart', u'favourit', u'dismiss', u'weight']
[u'sydney', u'hobart', u'favourit', u'overcom', u'weight']
[u'teen', u'get', u'suspend', u'jail', u'term', u'crash']
[u'telco', u'giant', u'featur', u'contest', u'game']
[u'thai', u'govt', u'claim', u'proof', u'malaysian', u'milit', u'camp']
[u'tiger', u'admit', u'frustrat', u'swing', u'struggl']
[u'tough', u'xmas', u'woman', u'hold', u'bali', u'drug', u'charg']
[u'townsvill', u'croc', u'player', u'name', u'star']
[u'toxic', u'packag', u'scare', u'forc', u'closur']
[u'trade', u'focus', u'global', u'currenc', u'market']
[u'transfield', u'buy', u'french', u'own', u'areva']
[u'union', u'optimist', u'worker', u'job']
[u'militari', u'enforc', u'curfew', u'mosul']
[u'vaughan', u'hail', u'record', u'england']
[u'veniamin', u'offer', u'kill', u'gatto', u'court', u'hear']
[u'defeat', u'histor', u'comeback']
[u'govt', u'consid', u'law', u'protect', u'feotus']
[u'pulp', u'wont', u'affect', u'gunn', u'analyst', u'say']
[u'vic', u'defeat', u'histor', u'comeback']
[u'vic']
[u'terror', u'suspect', u'remain', u'custodi']
[u'grain', u'harvest', u'exceed', u'expect']
[u'warrior', u'wrap', u'victori', u'redback']
[u'water', u'author', u'seek', u'resid', u'view', u'lake']
[u'webb', u'confirm', u'master', u'appear']
[u'western', u'hardwood', u'region', u'plan', u'fail']
[u'west', u'indi', u'tour', u'despit', u'contract']
[u'wildfir', u'threaten', u'pine', u'tree']
[u'willbriggi', u'face', u'court', u'drug', u'charg']
[u'wingecarribe', u'council', u'fear', u'delay', u'hinder']
[u'wit', u'nervous', u'council', u'inquiri', u'retribut']
[u'wit', u'scar', u'evid', u'road', u'rage']
[u'woman', u'kill', u'accid']
[u'woman', u'lose', u'compens', u'forc', u'adopt']
[u'women', u'refug', u'report', u'expect', u'soon']
[u'fault', u'europ', u'food', u'protect']
[u'xmas', u'angler', u'warn', u'unlicenc', u'fish']
[u'xstrata', u'unhappi', u'stanc']
[u'youth', u'help', u'select', u'indigen', u'communiti', u'project']
[u'zajec', u'confirm', u'pompey', u'manag']
[u'chines', u'miner', u'kill', u'poison']
[u'kill', u'indonesian', u'forc', u'helicopt', u'crash']
[u'aapt', u'skipper', u'play', u'weigh', u'woe']
[u'abba', u'see', u'israel', u'talk', u'palestinian', u'vote']
[u'aborigin', u'land', u'council', u'get', u'execut', u'offic']
[u'govt', u'propos', u'chang', u'child', u'protect']
[u'heroin', u'overdos', u'seven', u'year', u'high']
[u'adelaid', u'rape', u'suspect', u'arrest']
[u'albani', u'defer', u'gull', u'rock', u'reserv', u'decis']
[u'anim', u'tranquillis', u'mistak', u'ecstasi']
[u'australian', u'market', u'slide']
[u'australia', u'increas', u'presenc', u'solomon', u'island']
[u'austrian', u'koubek', u'dope']
[u'author', u'warn', u'ross', u'river', u'threat']
[u'bail', u'revok', u'charg', u'offenc']
[u'bank', u'robber', u'homework', u'heist']
[u'better', u'asthma', u'manag', u'lower', u'death', u'rate']
[u'binnington', u'take', u'athlet', u'coach']
[u'biosecur', u'vet', u'unavail', u'holiday', u'outbreak']
[u'bird', u'spread', u'human', u'japan']
[u'blair', u'host', u'palestinian', u'confer']
[u'bullet', u'hawk', u'clash']
[u'inclus', u'communiti', u'group']
[u'social', u'respons', u'corpor', u'law']
[u'call', u'attorney', u'general', u'resign']
[u'cambodian', u'polic', u'arrest', u'alleg', u'chines', u'drug']
[u'bomb', u'explod', u'iraq']
[u'carl', u'williamss', u'father', u'refus', u'bail']
[u'chopper', u'send', u'battl', u'blaze']
[u'cigar', u'land', u'citi', u'player', u'water']
[u'citi', u'west', u'plan', u'link', u'inner', u'brisban', u'sit']
[u'coke', u'worker', u'shoot']
[u'cole', u'readi', u'arsenal', u'talk', u'agent']
[u'concern', u'air', u'dairi', u'farm', u'futur']
[u'confid', u'yushchenko', u'address', u'mass', u'ralli']
[u'construct', u'worker', u'continu', u'action', u'asbesto']
[u'council', u'agre', u'origin', u'park', u'land', u'price']
[u'council', u'coastal', u'manag', u'plan', u'rais', u'communiti']
[u'council', u'face', u'backlash', u'plan', u'lift', u'water', u'ban']
[u'councillor', u'seek', u'disclosur', u'elect', u'fund']
[u'councillor', u'stand', u'firm', u'wetland', u'issu']
[u'council', u'say', u'hand', u'tie', u'boat', u'harbour', u'land', u'sale']
[u'council', u'prepar', u'age', u'onslaught']
[u'croc', u'unabl', u'bullet']
[u'current', u'sydney', u'hobart', u'fleet']
[u'deleg', u'appeal', u'nimbin', u'polic']
[u'dieback', u'spread', u'fund', u'calm', u'say']
[u'docker', u'clear', u'draft', u'tamper']
[u'reject', u'emerald', u'canker', u'spread']
[u'duck', u'hunt', u'protest', u'warn', u'risk']
[u'dugong', u'turtl', u'hunt', u'restrict']
[u'england', u'wait', u'say', u'gilchrist']
[u'english', u'unimpress', u'spanish', u'racism', u'fine']
[u'entir', u'cairn', u'team', u'ban', u'brawl']
[u'decri', u'fish', u'limit']
[u'fallujah', u'resid', u'prepar', u'return']
[u'fast', u'rail', u'servic', u'boost', u'welcom']
[u'feder', u'govt', u'accus', u'ignor', u'green', u'research']
[u'clue', u'ireland', u'polic', u'probe', u'bank', u'heist']
[u'firefight', u'finnish', u'sauna']
[u'firefight', u'sydney', u'blaze']
[u'fisherman', u'rescu', u'victorian', u'coast']
[u'forecast', u'predict', u'christma', u'break', u'farmer']
[u'forestri', u'deadlin', u'unlik']
[u'minist', u'fin', u'lie', u'icac']
[u'french', u'journalist', u'arriv', u'pari', u'hostag']
[u'fund', u'inject', u'region', u'research', u'facil']
[u'gallop', u'pan', u'opposit', u'budget', u'plan']
[u'gatto', u'investig', u'crimin', u'network', u'court', u'tell']
[u'gibb', u'boje', u'south', u'africa']
[u'break', u'say', u'woolmer']
[u'govern', u'accus', u'play', u'polit', u'cane']
[u'govt', u'expect', u'announc', u'ethanol', u'fund', u'boost']
[u'govt', u'get', u'tough', u'nativ', u'anim', u'pet']
[u'govt', u'opposit', u'odd', u'fast', u'train', u'work']
[u'govt', u'reject', u'call', u'reform', u'inquiri']
[u'govt', u'reject', u'drought', u'climat']
[u'govt', u'scrutinis', u'qantass', u'canberra', u'sydney', u'fare']
[u'govt', u'albani', u'jail', u'secur']
[u'greek', u'sprinter', u'provision', u'suspend']
[u'green', u'group', u'question', u'hous', u'develop']
[u'green', u'govt', u'soft', u'pollut']
[u'health', u'industri', u'benefit', u'japan', u'tech']
[u'health', u'team', u'fight', u'spread', u'stis', u'indigen']
[u'hepburn', u'pool', u'option', u'consider']
[u'hobart', u'lose', u'major', u'ship', u'servic']
[u'hotel', u'provid', u'free', u'soft', u'drink', u'design']
[u'indian', u'fishermen', u'miss', u'pirat', u'attack']
[u'indonesian', u'jail', u'illeg', u'fish']
[u'injuri', u'sidelin', u'kelli', u'devonport', u'carniv']
[u'insur', u'firm', u'urg', u'patienc', u'crop', u'claim']
[u'investig', u'begin', u'sydney', u'factori']
[u'irish', u'woman', u'keep', u'sexual', u'servitud', u'court', u'tell']
[u'jam', u'cook', u'ausaid', u'student', u'graduat']
[u'jone', u'elect', u'swan', u'hill', u'mayor']
[u'kangaroo', u'bushfir', u'control']
[u'keelti', u'reject', u'claim', u'militari', u'support', u'need']
[u'langer', u'doubt', u'second', u'test']
[u'launceston', u'airport', u'plan', u'take']
[u'letterhead', u'confus', u'continu', u'kelli']
[u'life', u'support', u'user', u'electr', u'rebat']
[u'local', u'govt', u'consid', u'lift', u'hardi']
[u'local', u'seafood', u'select', u'christma']
[u'locust', u'north']
[u'loggerhead', u'turtl', u'popul', u'stabilis']
[u'maher', u'dismiss', u'respect', u'claim', u'vic']
[u'accus', u'plot', u'kill', u'saddam', u'support']
[u'accus', u'death', u'partner', u'grant', u'bail']
[u'charg', u'cruelti', u'burglari']
[u'critic', u'injur', u'firework', u'accid']
[u'face', u'child', u'porn', u'charg']
[u'court', u'imperson', u'polic', u'offic']
[u'jail', u'year', u'bash']
[u'jail', u'year', u'gang', u'rape']
[u'medic', u'worker', u'kill', u'sudan', u'troop']
[u'microsoft', u'order', u'reveal', u'trade', u'secret']
[u'mildura', u'sport', u'centr', u'creditor', u'leav', u'want']
[u'mine', u'compani', u'fin', u'pollut']
[u'moor']
[u'motorcyclist', u'succumb', u'injuri']
[u'air', u'doubt', u'postal', u'vote', u'probe']
[u'seek', u'wagga', u'polic', u'station', u'detail']
[u'urg', u'govt', u'restor', u'disabl', u'servic', u'fund']
[u'welcom', u'govt', u'hospit', u'contract']
[u'nativ', u'titl', u'tribun', u'welcom', u'fish']
[u'fight', u'decis', u'trim', u'oneal', u'time']
[u'near', u'drown', u'prompt', u'beach', u'safeti', u'warn']
[u'tribun', u'head', u'talk']
[u'facil', u'meet', u'construct', u'skill', u'shortag']
[u'north', u'east', u'brace', u'locust', u'influx']
[u'polic', u'number']
[u'polic', u'probe', u'fatal', u'crash']
[u'prison', u'number', u'nation', u'averag']
[u'compani', u'slam', u'lack', u'info']
[u'dip', u'upgrad']
[u'dead', u'injur', u'london', u'stab', u'rampag']
[u'opposit', u'reject', u'claim', u'reduc', u'ambul']
[u'organis', u'expect', u'sydney', u'hobart', u'yacht', u'join']
[u'origin', u'seek', u'price', u'rise']
[u'pakistan', u'latif', u'seek', u'comeback', u'cricket']
[u'palestinian', u'teenag', u'kill', u'gaza']
[u'parker', u'blame', u'break', u'foot', u'stamford', u'bridg']
[u'pastor', u'charg', u'shop', u'carol', u'incid']
[u'pinochet', u'leav', u'hospit', u'treatment']
[u'plan', u'tamar', u'river', u'resort']
[u'polic', u'fatal', u'stab']
[u'polic', u'interrog', u'suspect', u'norwegian', u'heist']
[u'polic', u'investig', u'attempt', u'abduct']
[u'polic', u'investig', u'geelong', u'robberi']
[u'polic', u'drug', u'bust', u'follow', u'burglari']
[u'polic', u'forc', u'oper', u'safe', u'arriv']
[u'polic', u'target', u'countri', u'spot']
[u'polic', u'question', u'fatal', u'polic', u'chase']
[u'polic', u'urg', u'driver', u'care', u'crash', u'spot']
[u'polic', u'warn', u'driver', u'doubl', u'demerit', u'point']
[u'port', u'fairi', u'resid', u'celebr', u'park']
[u'port', u'stepen', u'council', u'adopt', u'plan']
[u'school', u'propos', u'concern', u'union']
[u'prison', u'escap', u'correct', u'centr']
[u'prison', u'number', u'rise']
[u'propos', u'timet', u'mean', u'train', u'gippsland']
[u'putin', u'defend', u'state', u'purchas', u'main', u'yuko', u'asset']
[u'reef', u'author', u'seek', u'public', u'help', u'identifi']
[u'relaid', u'readi', u'box', u'action']
[u'research', u'welcom', u'evolut', u'cane', u'toad']
[u'resid', u'denham', u'jetti', u'upgrad']
[u'resid', u'lobbi', u'wetland', u'polici']
[u'retail', u'figur']
[u'roadwork', u'put', u'live', u'risk', u'opposit', u'say']
[u'rumsfeld', u'say', u'iraq', u'elect', u'wont', u'quell', u'violenc']
[u'opposit', u'claim', u'elect', u'surgeri', u'figur']
[u'servic', u'rememb', u'young', u'hous', u'blaze', u'victim']
[u'slay', u'offic', u'bodi', u'return', u'canberra']
[u'smoke', u'haze', u'prompt', u'warn', u'motorist']
[u'socceroo', u'skipper']
[u'solomon', u'memori', u'servic', u'hold', u'slay', u'australian']
[u'solomon', u'prepar', u'slay', u'australian', u'memori']
[u'spacecraft', u'see', u'infant', u'galaxi', u'age', u'univers']
[u'spanish', u'polic', u'arrest', u'morrocan', u'terror', u'suspect']
[u'storm', u'leav', u'destruct', u'path', u'roma']
[u'suicid', u'bomber', u'think', u'respons', u'mosul', u'blast']
[u'suspect', u'insurg', u'arrest', u'iraq']
[u'tamworth', u'council', u'get']
[u'tanzanian', u'court', u'free', u'embassi', u'bomb', u'suspect']
[u'thiev', u'steal', u'bridg']
[u'thorp', u'guest', u'honour', u'year', u'time']
[u'firm', u'defenc', u'shipbuild', u'contract']
[u'timber', u'face', u'cut']
[u'titl', u'agreement', u'reach', u'land', u'right', u'birthplac']
[u'tourism', u'group', u'call', u'stricter', u'control']
[u'troop', u'head', u'solomon']
[u'tweed', u'council', u'inquiri', u'stoush', u'continu']
[u'explos', u'south', u'baghdad', u'kill']
[u'injur', u'crash', u'wall']
[u'kill', u'accid']
[u'unreleas', u'harri', u'potter', u'top', u'bestsel', u'list']
[u'transport', u'compani', u'pull', u'iraq']
[u'veteran', u'ambul', u'worker', u'sack', u'john']
[u'govt', u'warn', u'farmer', u'locust', u'plagu']
[u'victoria', u'rat', u'reaffirm']
[u'vodafon', u'face', u'fin']
[u'lung', u'transplant', u'hail', u'success']
[u'warn', u'confid', u'success', u'homecom']
[u'warren', u'insist', u'tszyu', u'fight', u'hatton']
[u'ash', u'say', u'stewart']
[u'weekend', u'detent', u'corrupt']
[u'western', u'landown', u'warn', u'locust', u'outbreak']
[u'sharehold', u'urg', u'ignor', u'xstrata', u'offer']
[u'wollongong', u'brisban', u'score', u'win']
[u'woman', u'face', u'attempt', u'murder', u'charg']
[u'woodford', u'gear', u'festiv']
[u'world', u'biggest', u'cockroach', u'discov', u'indonesian']
[u'young', u'yachti', u'talk', u'sydney', u'hobart', u'chanc']
[u'upgrad', u'orang', u'utan', u'exhibit']
[u'kill', u'nigerian', u'fuel', u'pipelin', u'blaze']
[u'kill', u'hondura', u'attack']
[u'abduct', u'alert', u'come', u'forc']
[u'accc', u'warn', u'occi', u'strap', u'danger']
[u'accid', u'delay', u'sydney', u'train']
[u'african', u'asylum', u'seeker', u'dead', u'spanish', u'coast']
[u'alexand', u'take', u'helm']
[u'back', u'water', u'fluorid']
[u'antarct', u'expedition', u'unscath', u'earthquak']
[u'archaeologist', u'uncov', u'remain', u'miracl', u'site']
[u'architect', u'design', u'home', u'hawk']
[u'arson', u'attack', u'destroy', u'famili', u'home']
[u'asthma', u'research', u'centr', u'get', u'feder', u'grant']
[u'aussi', u'soldier', u'christma', u'iraq']
[u'aust', u'diplomat', u'await', u'decis', u'child', u'porn', u'charg']
[u'australian', u'domin', u'good', u'game', u'mcgrath']
[u'australian', u'soldier', u'support', u'polic', u'solomon']
[u'aust', u'troop', u'celebr', u'christma', u'iraq']
[u'award', u'honour', u'best', u'british', u'comedi']
[u'aziz', u'refus', u'testifi', u'saddam']
[u'bacteria', u'level', u'prompt', u'swim', u'hole', u'closur']
[u'bakhtiyari', u'deport', u'weekend']
[u'balanc', u'tank', u'blame', u'wagga', u'water', u'loss']
[u'staff', u'show', u'door']
[u'biofuel', u'compani', u'beat', u'challeng']
[u'bishop', u'urg', u'australian', u'help', u'reliev', u'poverti']
[u'bishop', u'urg', u'reflect', u'unsettl', u'time']
[u'blackout', u'blue', u'mountain', u'central', u'coast']
[u'buddhist', u'thai', u'teacher', u'strike', u'death', u'fear']
[u'bumper', u'christma', u'sale', u'tasmanian', u'retail']
[u'common', u'sens', u'firework', u'explos']
[u'chess', u'champ', u'fischer', u'hop', u'iceland']
[u'christma', u'gift', u'hatch', u'earli', u'wildlif', u'park']
[u'christma', u'shopper', u'extend', u'hour']
[u'citi', u'star', u'hand', u'record', u'fine', u'xmas', u'parti', u'outrag']
[u'clash', u'return', u'fallujah', u'resid']
[u'consult', u'forecast', u'strong', u'hors', u'breed', u'industri']
[u'coron', u'deliv', u'open', u'find', u'drown']
[u'correct', u'servic', u'tip', u'declin', u'prison']
[u'council', u'consid', u'lennox', u'head', u'retir', u'plan']
[u'council', u'say', u'hand', u'tie', u'chemic', u'warehous']
[u'council', u'say', u'fund', u'need', u'propos']
[u'council', u'sound', u'lose', u'pet']
[u'court', u'rule', u'union', u'coal', u'strike', u'unlaw']
[u'court', u'decis', u'favour', u'newmont']
[u'crew', u'clean', u'perth', u'chemic', u'spill']
[u'open', u'weed', u'threat', u'eas']
[u'darwin', u'electrocut']
[u'darwin', u'pray', u'cyclon', u'traci', u'victim']
[u'delay', u'southland', u'collieri', u'close', u'christma']
[u'dirti', u'water', u'woe', u'south', u'east']
[u'driver', u'patienc', u'urg', u'crop', u'harvest']
[u'drug', u'support', u'group', u'urg', u'substitut', u'program']
[u'ecolog', u'declar', u'recognis', u'swamp']
[u'energex', u'settl', u'late', u'ceo', u'famili']
[u'expert', u'consid', u'locust', u'impact']
[u'expert', u'monitor', u'blue', u'green', u'alga', u'outbreak']
[u'explos', u'remov', u'sieg', u'hotel']
[u'fallujah', u'resid', u'return', u'home']
[u'famili', u'maintain', u'gracetown', u'cliff', u'compo', u'fight']
[u'farmer', u'want', u'govt', u'share', u'cost', u'fertilis']
[u'firefight', u'battl', u'suspici', u'swampland', u'blaze']
[u'servic', u'warn', u'christma', u'complac']
[u'death', u'begin', u'nation', u'road', u'toll']
[u'malaysian', u'crash']
[u'food', u'suppli', u'rush']
[u'forb', u'upgrad', u'matern', u'suit']
[u'diplomat', u'clear', u'child', u'porn', u'charg']
[u'sailor', u'win', u'abus', u'compens']
[u'kill', u'victorian', u'road']
[u'sight', u'prompt', u'monitor']
[u'fund', u'pledg', u'mark', u'theatr', u'year']
[u'activist', u'renew', u'right']
[u'gerrard', u'long', u'liverpool']
[u'gold', u'coast', u'sieg', u'end', u'peac']
[u'gold', u'coast', u'wildcard', u'hewitt', u'welford']
[u'govern', u'deni', u'cut', u'place']
[u'govern', u'miss', u'forestri', u'deadlin']
[u'govt', u'await', u'rail', u'studi', u'find']
[u'govt', u'confirm', u'tuna', u'cage', u'right', u'spot']
[u'govt', u'get', u'prais', u'duck', u'hunt', u'stanc']
[u'green', u'group', u'look', u'plantat', u'timber', u'pros']
[u'green', u'rais', u'burn', u'issu']
[u'greenwood', u'nation']
[u'gunmen', u'attack', u'baghdad', u'polic', u'station']
[u'high', u'temp', u'spark', u'safeti', u'warn']
[u'home', u'invad', u'hit', u'machet']
[u'hospit', u'record', u'extra', u'case']
[u'hospit', u'structur', u'crack', u'forc', u'road', u'closur']
[u'hungari', u'pull', u'troop', u'iraq']
[u'huygen', u'probe', u'titan', u'touchdown']
[u'indonesian', u'priest', u'surviv', u'machet', u'attack']
[u'injur', u'motorcyclist', u'stabl', u'condit']
[u'deni', u'involv', u'belfast', u'heist']
[u'iraq', u'blast', u'kill', u'marin']
[u'island', u'charg', u'solomon', u'shoot']
[u'island', u'mayor', u'call', u'electr', u'price', u'relief']
[u'time']
[u'japan', u'warn', u'north', u'korea', u'abduct', u'claim']
[u'judg', u'rise', u'outrag', u'govt']
[u'kaif', u'slam', u'india', u'scrape', u'past', u'bangladesh']
[u'karzai', u'remov', u'warlord', u'afghan', u'cabinet']
[u'land', u'disput', u'leav', u'dead', u'ivori', u'coast']
[u'landown', u'avoid', u'prosecut', u'demolit']
[u'langer', u'put', u'xmas', u'hold']
[u'larg', u'quak', u'strike', u'tasmanian', u'coast']
[u'minut', u'buyer', u'canberra', u'shop']
[u'lawrenc', u'hargrav', u'drive', u'cost', u'jump']
[u'truck', u'disput', u'roll']
[u'escap', u'melbourn', u'hous']
[u'critic', u'condit', u'firework', u'accid']
[u'question', u'gun', u'ammo']
[u'market', u'high', u'ahead', u'christma', u'break']
[u'martin', u'call', u'land', u'right', u'reform']
[u'massiv', u'sea', u'gale', u'pound', u'sydney', u'hobart', u'fleet']
[u'maxi', u'taxi', u'driver', u'strike']
[u'mayor', u'back', u'coastal', u'protect', u'plan', u'amidst']
[u'mayor', u'happi', u'blackal', u'hous', u'market']
[u'mayor', u'reject', u'water', u'warn']
[u'mcgrath', u'harmison', u'tumbl']
[u'minardi', u'dutchman', u'alber']
[u'minist', u'overse', u'power', u'station', u'plan']
[u'miss', u'defenc', u'gun', u'worri']
[u'miss', u'fear', u'drown']
[u'miss', u'medic', u'polic']
[u'motorist', u'continu', u'ignor', u'drink', u'drive', u'warn']
[u'mysteri', u'ill', u'stalk', u'world', u'rarest', u'penguin']
[u'negoti', u'continu', u'gold', u'coast', u'hotel', u'stand']
[u'newcastl', u'stock', u'exchang', u'say', u'asic', u'issu', u'address']
[u'england', u'north', u'west', u'escap', u'storm', u'damag']
[u'polic', u'urg', u'driver', u'care']
[u'upgrad', u'philippin', u'travel', u'warn']
[u'duti', u'polic', u'offic', u'assault']
[u'kill', u'karratha', u'crash']
[u'oper', u'safe', u'arriv', u'begin']
[u'origin', u'plan', u'roma', u'power', u'station']
[u'owner', u'get', u'copi']
[u'oxfam', u'urg', u'goat', u'christma']
[u'palestinian', u'vote', u'histor', u'council', u'elect']
[u'pari', u'hospit', u'open', u'door', u'troubl', u'teen']
[u'park', u'prepar', u'cricket', u'fever']
[u'plan', u'forward', u'wagga', u'hospit']
[u'urg', u'nation', u'rememb', u'fortun']
[u'polic', u'appeal', u'extra', u'care', u'remot', u'road']
[u'polic', u'charg', u'teenag', u'park', u'bash']
[u'polic', u'chief', u'satisfi', u'solomon', u'murder', u'probe']
[u'polic', u'examin', u'devic', u'gold', u'coast', u'sieg']
[u'polic', u'investig', u'poppi', u'crop', u'theft']
[u'polic', u'investig', u'stab', u'incid']
[u'polic', u'lock', u'gold', u'coast', u'hotel', u'stand']
[u'polic', u'negoti', u'barricad', u'hotel']
[u'polic', u'question', u'scream', u'suspect']
[u'polic', u'raid', u'uncov', u'drug']
[u'polic', u'uncov', u'major', u'cannabi', u'plot']
[u'polic', u'urg', u'driver', u'safeti', u'christma', u'break']
[u'prison', u'rule', u'chang', u'guard', u'gangland']
[u'ract', u'fuel', u'cheaper', u'petrol', u'station']
[u'refineri', u'grant', u'failur', u'blame', u'senat', u'inquiri']
[u'rescu', u'portugues', u'fisherman', u'take', u'hospit']
[u'retail', u'report', u'mix', u'xmas', u'trade', u'result']
[u'rumsfeld', u'make', u'surpris', u'visit', u'iraq']
[u'rumsfeld', u'visit', u'troop', u'fallujah']
[u'santo', u'sell', u'carpentaria', u'pipelin', u'stake']
[u'scheme', u'reward', u'safe', u'driver']
[u'seven', u'injur', u'ballina', u'crash']
[u'shark', u'spot', u'perth', u'beach']
[u'shoaib', u'showman', u'say', u'mcgrath']
[u'snow', u'storm', u'blanket', u'part']
[u'solomon', u'island', u'urg', u'shoot', u'inquiri']
[u'spinal', u'injuri', u'awar', u'campaign', u'launch']
[u'spot', u'fruit', u'inspect', u'target', u'travel']
[u'student', u'dig', u'secur', u'month']
[u'surf', u'lifesav', u'swimmer', u'help']
[u'surgeri', u'effect', u'diet', u'studi']
[u'swim', u'czar', u'popov', u'call']
[u'sydney', u'hobart', u'fleet', u'brace', u'bass', u'strait', u'past']
[u'sydney', u'polic', u'beef', u'number']
[u'sydney', u'refus', u'academ', u'redund']
[u'teacher', u'face', u'assault', u'stalk', u'charg']
[u'thai', u'general', u'face', u'probe', u'muslim', u'death']
[u'thailand', u'bomb', u'blast', u'kill', u'wound']
[u'prospector', u'train', u'track']
[u'tourism', u'industri', u'warn', u'plan', u'ahead']
[u'townsvill', u'soldier', u'spend', u'christma', u'solomon']
[u'train', u'centr', u'solv', u'skill', u'shortag']
[u'transport', u'bureau', u'highlight', u'plane', u'fuel', u'oversight']
[u'tullamor', u'kill', u'singl', u'vehicl', u'crash']
[u'kill', u'gaza', u'blast']
[u'govt', u'accus', u'excess', u'file', u'shred']
[u'union', u'probe', u'reason', u'sack']
[u'report', u'list', u'ivori', u'coast', u'atroc', u'daili']
[u'doctor', u'recommend', u'prescrib', u'celebrex']
[u'marshal', u'surpris', u'eas', u'arrest', u'adelaid']
[u'probe', u'iraq', u'armi', u'base', u'bomb']
[u'stock', u'edg', u'higher', u'light', u'xmas', u'trade']
[u'nistelrooy', u'week']
[u'court', u'refus', u'custodi', u'babi', u'father']
[u'polic', u'search', u'miss', u'woman']
[u'virgin', u'blue', u'win', u'samoa', u'tender']
[u'vline', u'reject', u'fast', u'rail', u'timet', u'attack']
[u'record', u'xmas', u'road', u'death']
[u'water', u'polic', u'urg', u'spectat', u'caution']
[u'water', u'price', u'doubl', u'tamworth', u'council']
[u'woman', u'injur', u'accid']
[u'woman', u'face', u'court', u'burglari', u'drug', u'charg']
[u'xmas', u'come', u'earli', u'katich']
[u'youth', u'kill', u'accid']
[u'zimbabw', u'farmer', u'cut', u'agricultur', u'land']
[u'adelaid', u'crew', u'celebr', u'christma']
[u'adelaid', u'sudanes', u'communiti', u'celebr', u'christma']
[u'afghan', u'cabinet', u'offici', u'swear']
[u'ail', u'pope', u'pray', u'peac', u'holi', u'land']
[u'alexand', u'hop', u'bigger', u'role', u'player']
[u'half', u'million', u'hous', u'bushfir', u'risk', u'studi']
[u'aust', u'forc', u'remain', u'vigil', u'despit', u'arrest']
[u'australia', u'block', u'brazilian', u'beef']
[u'bakhtiyari', u'famliy', u'pack', u'bag', u'deport']
[u'baxter', u'detaine', u'hunger', u'strike']
[u'bishop', u'send', u'condol', u'dun', u'famili']
[u'british', u'cardin', u'condemn', u'money', u'spend']
[u'accid', u'pakistan', u'kill', u'injur']
[u'bushfir', u'break', u'south', u'perth']
[u'bush', u'sign', u'sudan', u'sanction']
[u'independ', u'medic', u'review', u'baxter']
[u'canada', u'femal', u'world', u'veteran', u'die']
[u'church', u'leader', u'christma', u'uniti']
[u'resolv', u'palm', u'island', u'complaint']
[u'coalit', u'maintain', u'lead', u'labor']
[u'court', u'decis', u'affect', u'ukrain', u'elect']
[u'darwin', u'rememb', u'cyclon', u'traci']
[u'european', u'stock', u'close', u'higher', u'christma']
[u'crew', u'battl', u'blaze', u'grampian']
[u'firefight', u'save', u'christma', u'melbourn', u'famili']
[u'gang', u'link', u'hondura', u'massacr']
[u'penguin', u'japanes', u'aquarium']
[u'german', u'paper', u'print', u'good', u'news', u'xmas']
[u'green', u'speed', u'limit', u'reduct', u'truck']
[u'hurt', u'pakistan', u'bounc', u'say', u'woolmer']
[u'indonesian', u'forc', u'kill', u'aceh', u'rebel']
[u'investig', u'launch', u'newborn', u'death']
[u'israel', u'detain', u'nuclear', u'whistleblow']
[u'katich', u'readi', u'injur', u'langer']
[u'katich', u'readi', u'langer']
[u'critic', u'smash']
[u'hold', u'custodi', u'gold', u'coast', u'seig']
[u'kill', u'children', u'injur', u'marbl', u'crash']
[u'musharraf', u'attack', u'sentenc', u'death']
[u'najaf', u'bomber', u'arrest', u'governor']
[u'nation', u'road', u'toll', u'rise']
[u'dead', u'baghdad', u'fuel', u'tanker', u'blast']
[u'nuclear', u'whistleblow', u'free', u'charg']
[u'palestinian', u'leader', u'attend', u'christma', u'mass']
[u'polic', u'investig', u'adelaid', u'bash']
[u'polic', u'seek', u'public', u'assist', u'sydney', u'train', u'death']
[u'polic', u'target', u'bank', u'heist', u'investig']
[u'power', u'restor', u'blue', u'mountain', u'thunderstorm']
[u'plate', u'driver', u'condit', u'crash']
[u'queen', u'call', u'religi', u'toler']
[u'queen', u'send', u'christma', u'messag', u'troop']
[u'religi', u'leader', u'bush', u'christma', u'messag']
[u'rocker', u'climb', u'stairway', u'heaven']
[u'russia', u'launch', u'survey', u'satellit']
[u'salvo', u'provid', u'christma', u'lunch', u'countri']
[u'scientist', u'keen', u'studi', u'tassi', u'quak']
[u'senior', u'palestinian', u'milit', u'kill']
[u'slower', u'boat', u'bear', u'brunt', u'weather']
[u'soldier', u'enjoy', u'christma', u'lunch', u'baghdad']
[u'space', u'probe', u'head', u'titan']
[u'spiderman', u'climb', u'world', u'tallest', u'build']
[u'troop', u'honour', u'christma', u'messag']
[u'turk', u'ship', u'magnat', u'kidnap', u'iraq']
[u'drown', u'miss', u'waterfal']
[u'freez', u'asset', u'saudi', u'group', u'link', u'qaeda']
[u'armi', u'arrest', u'mosul']
[u'shell', u'kill', u'vietnam']
[u'yushchenko', u'confid', u'elect', u'victori']
[u'lankan', u'convict', u'escap', u'tsunami', u'destroy']
[u'dead', u'south', u'india', u'indonesian', u'quak']
[u'fear', u'dead', u'quak', u'tsunami', u'hit', u'southern']
[u'anglican', u'head', u'claim', u'nation', u'ignor', u'global']
[u'dead', u'aceh', u'quak']
[u'fear', u'dead', u'sumatran', u'quak']
[u'attack', u'kill', u'iraqi', u'bush', u'thank', u'troop']
[u'australian', u'urg', u'recycl', u'christma', u'card']
[u'australia', u'strike', u'late', u'wicket']
[u'bakhtiyari', u'departur', u'uncertain']
[u'blaze', u'perth', u'crew', u'busi']
[u'british', u'paper', u'christma']
[u'british', u'tourist', u'die', u'tidal', u'wave', u'devast']
[u'cairn', u'take', u'wicket', u'lanka', u'slump']
[u'bomb', u'kill', u'near', u'najaf']
[u'confess', u'reveal', u'gang', u'hondura', u'shoot']
[u'consum', u'urg', u'awar', u'refund', u'right']
[u'cost', u'forc', u'snow', u'white', u'dwarf', u'number']
[u'danger', u'drive', u'prompt', u'polic', u'warn']
[u'trip', u'homeless', u'boost', u'self', u'esteem']
[u'death', u'toll', u'near', u'quak', u'tsunami', u'strike']
[u'death', u'toll', u'rise', u'quak', u'tsunami', u'strike']
[u'dismiss', u'director', u'return', u'helm', u'river', u'queen']
[u'donat', u'salvo', u'black']
[u'driver', u'park', u'rev', u'road', u'rage']
[u'earthquak', u'tsunami', u'kill', u'thousand', u'asia']
[u'easi', u'start', u'sydney', u'hobart', u'fleet']
[u'economist', u'predict', u'share', u'market', u'rise']
[u'elector', u'law', u'overrul', u'ukrain', u'vote', u'loom']
[u'england', u'boost', u'jone', u'shrug']
[u'enrol', u'spark', u'skill', u'shortag', u'fear']
[u'urg', u'aust', u'embrac', u'export', u'opportun']
[u'fewer', u'tasmanian', u'need', u'chariti', u'salvo']
[u'crew', u'continu', u'grampian', u'blaze', u'battl']
[u'destroy', u'histor', u'guyana', u'church']
[u'drown', u'nation', u'park', u'rockpool']
[u'girl', u'die', u'motorbik', u'hit', u'tree']
[u'global', u'warm', u'bushfir', u'risk', u'investig']
[u'grief', u'hang', u'quak', u'mourn', u'end']
[u'gunmen', u'kill', u'baghdad', u'univers', u'dean']
[u'hous', u'market', u'tip', u'soften']
[u'investig', u'begin', u'unit']
[u'karzai', u'oppon', u'form', u'polit', u'parti']
[u'lara', u'lead', u'west', u'indi', u'australia']
[u'lifesav', u'urg', u'water', u'safeti', u'vigil']
[u'question', u'servic', u'station', u'incid']
[u'rescu', u'jump', u'ferri']
[u'maoist', u'blockad', u'prompt', u'anti', u'hoard', u'law']
[u'milit', u'tell', u'yemeni', u'court', u'lade', u'tie']
[u'minist', u'examin', u'penalti', u'polic', u'anim']
[u'minist', u'urg', u'buyer', u'bewar']
[u'miss', u'man', u'bodi', u'bribi', u'island']
[u'dead', u'quak', u'tsunami', u'indonesia']
[u'brand', u'sydney', u'polic', u'number', u'unfair']
[u'mum', u'divert', u'hospit']
[u'nake', u'german', u'freez', u'health']
[u'nepales', u'ralli', u'peac']
[u'zealand', u'thrash', u'lanka', u'seri', u'open']
[u'offici', u'investig', u'possibl', u'australian', u'quak']
[u'kill', u'lanka', u'tsunami']
[u'pakistan', u'return', u'form', u'box', u'test']
[u'palestinian', u'presidenti', u'contest', u'begin']
[u'pitch', u'improv', u'pakistan', u'chanc', u'pont']
[u'polic', u'search', u'stab', u'suspect']
[u'polic', u'urg', u'caution', u'congest', u'road']
[u'pope', u'express', u'concern', u'world', u'conflict']
[u'race', u'favourit', u'lead', u'bluewat', u'classic']
[u'rain', u'add', u'grazier', u'christma', u'cheer']
[u'record', u'turn', u'free', u'christma', u'lunch']
[u'retail', u'anticip', u'post', u'christma', u'splurg']
[u'retail', u'hope', u'box', u'success']
[u'rspca', u'warn', u'festiv', u'treat', u'pet']
[u'rushdi', u'condemn', u'lack', u'protect', u'playwright']
[u'safeti', u'campaign', u'reduc', u'marin', u'collis']
[u'shark', u'sight', u'prompt', u'beach', u'closur']
[u'shopper', u'warn', u'guard', u'thiev']
[u'specul', u'continu', u'bakhtiyari', u'deport']
[u'stand', u'skipper', u'pakistan']
[u'sumatra', u'quak', u'rais', u'richter', u'scale']
[u'suppli', u'ship', u'end', u'astronaut', u'food', u'crisi']
[u'support', u'fear', u'detaine', u'restart', u'hunger', u'strike']
[u'swimmer', u'ignor', u'flag', u'warn']
[u'sydney', u'hobart', u'fli', u'start']
[u'thousand', u'fear', u'dead', u'huge', u'asian', u'quak']
[u'tidal', u'wave', u'kill', u'south', u'india', u'home', u'minist']
[u'tight', u'squeez', u'charit', u'donor']
[u'toddler', u'drown', u'backyard', u'pool']
[u'reshuffl', u'british', u'agenc', u'report']
[u'tourist', u'diver', u'miss', u'south', u'thai', u'island']
[u'tsunami', u'flood', u'maldiv']
[u'tsunami', u'kill', u'malaysia']
[u'turkey', u'mobilis', u'kidnap', u'businessman']
[u'dead', u'hurt', u'wave', u'indian', u'island']
[u'father', u'right', u'group', u'target', u'queen']
[u'ukrainian', u'begin', u'vote', u'poll']
[u'forc', u'claim', u'captur', u'zarqawi', u'alli']
[u'weight', u'prove', u'safe', u'pari', u'resid', u'valuabl']
[u'woman', u'die', u'crash', u'darl', u'down']
[u'women', u'urg', u'heed', u'rubella', u'warn']
[u'youth', u'attack', u'greek', u'polic', u'station']
[u'kill', u'iraqi', u'bomb']
[u'kill', u'iraq', u'base', u'bomb', u'video', u'releas']
[u'kill', u'french', u'apart', u'blast']
[u'aceh', u'death', u'toll', u'spiral', u'tidal', u'wave']
[u'aceh', u'tsunami', u'death', u'toll', u'mount']
[u'adelaid', u'surviv', u'tsunami']
[u'agenc', u'launch', u'tsunami', u'appeal']
[u'alburi', u'bushfir', u'threaten', u'hous']
[u'appoint', u'announc', u'health', u'servic']
[u'arthur', u'gain', u'hardcourt', u'wildcard']
[u'asbestosi', u'suffer', u'tell', u'healthi']
[u'asbestosi', u'suffer', u'healthi', u'compo']
[u'aussi', u'cricket', u'safe', u'india']
[u'australia', u'safe', u'tidal', u'wave', u'threat', u'scientist']
[u'aust', u'seek', u'citizen', u'pledg', u'tsunami', u'relief']
[u'bangladesh', u'shock', u'india']
[u'post', u'christma', u'sale', u'tip']
[u'bodi', u'line', u'south', u'india', u'beach', u'killer']
[u'bowler', u'keep', u'pakistan', u'pictur']
[u'bureau', u'predict', u'year', u'rain']
[u'educ', u'ombudsman']
[u'cancer', u'council', u'welcom', u'fall', u'smoke', u'death']
[u'crash', u'put', u'toddler', u'hospit']
[u'celtic', u'finish', u'scotland']
[u'chelsea', u'arsenal', u'forg']
[u'chines', u'defenc', u'polici', u'aim', u'crush', u'taiwan']
[u'coastal', u'patrol', u'drama', u'end']
[u'court', u'hear', u'arm', u'destroy', u'build']
[u'cricket', u'australia', u'honour', u'pioneer', u'indigen']
[u'darwin', u'lankan', u'communiti', u'fear', u'relat']
[u'dead', u'wave', u'african', u'coast']
[u'death', u'come']
[u'demand', u'beef', u'cattl', u'genet']
[u'dfat', u'warn', u'maldiv', u'travel']
[u'diseas', u'fear', u'hold', u'tsunami', u'survivor']
[u'drink', u'drive', u'rat', u'disappoint', u'polic']
[u'drown', u'victim', u'famili', u'fenc', u'plea']
[u'emot', u'clark', u'take', u'latrob', u'wheelrac']
[u'england', u'smith', u'gambl', u'pay']
[u'exit', u'poll', u'yushchenko', u'ukrain']
[u'exit', u'poll', u'yushchenko', u'ukrain', u'vote']
[u'famili', u'wait', u'news', u'miss']
[u'fleet', u'mebourn', u'hobart', u'challeng']
[u'fleet', u'melbourn', u'hobart', u'challeng']
[u'australian', u'miss', u'tidal', u'wave']
[u'grampian', u'blaze', u'burn']
[u'grampian', u'drown', u'spark', u'water', u'safeti', u'review']
[u'india', u'look', u'aveng', u'bangladesh', u'loss']
[u'india', u'lanka', u'warn', u'tsunami']
[u'insurg', u'famili', u'kill', u'accident', u'bomb']
[u'iraqi', u'foreign', u'minist', u'signal', u'violenc']
[u'iraqi', u'kurd', u'petit', u'independ', u'poll']
[u'isra', u'woman', u'charg', u'collabor', u'enemi']
[u'israel', u'releas', u'palestinian', u'prison']
[u'kalli', u'pollock', u'south', u'africa', u'upper', u'hand']
[u'konica', u'minolta', u'skandia', u'neck', u'neck', u'approach']
[u'langer', u'relish', u'battl', u'shoaib']
[u'late', u'surg', u'see', u'tiger', u'past', u'pig']
[u'maldiv', u'declar', u'emerg', u'tsunami']
[u'die', u'jump', u'semi', u'trailer']
[u'mcewen', u'pois', u'launceston', u'defenc']
[u'honour', u'pioneer', u'indigen']
[u'melbourn', u'teen', u'miss', u'phuket', u'tsunami']
[u'melbourn', u'hobart', u'racer', u'stop', u'help', u'struggl']
[u'melbourn', u'race', u'organis', u'hop', u'better']
[u'merci', u'hospit', u'reopen', u'month']
[u'miss', u'girl', u'contact', u'parent']
[u'miss', u'girl', u'spark', u'polic', u'search']
[u'miss', u'tourist', u'bodi']
[u'retir', u'expect', u'bluewat', u'classic']
[u'nation', u'rise', u'garden', u'upgrad', u'consider']
[u'navratilova', u'play', u'hardcourt', u'championship']
[u'warn', u'place', u'tsunami']
[u'cane', u'toad', u'trap', u'prize', u'criticis']
[u'road', u'death', u'push', u'toll', u'higher']
[u'ogradi', u'mcewen', u'upstag', u'local', u'win', u'launceston']
[u'opposit', u'seek', u'shaw', u'blood', u'sampl', u'inquiri']
[u'pakistan', u'ahead', u'second', u'test']
[u'pakistan', u'australia']
[u'pakistan', u'put', u'heat', u'aussi', u'batsmen']
[u'paper', u'caus', u'damag']
[u'phuket', u'count', u'cost', u'tidal', u'wave', u'devast']
[u'offer', u'sympathi', u'tsunami', u'victim']
[u'polic', u'hunt', u'servic', u'station', u'bandit']
[u'polic', u'investig', u'accid', u'death', u'caus']
[u'polic', u'maintain', u'road', u'crackdown']
[u'polic', u'prais', u'fall', u'crime', u'rat']
[u'polic', u'search', u'miss', u'japanes', u'tourist']
[u'post', u'christma', u'sale', u'spark', u'consum', u'warn']
[u'privat', u'road', u'decis', u'anger', u'station', u'owner']
[u'probe', u'launch', u'toddler', u'drown']
[u'race', u'leader', u'press', u'bass', u'strait']
[u'cross', u'set', u'target', u'tsunami', u'appeal']
[u'rough', u'sea', u'predict', u'melbourn', u'launceston']
[u'rough', u'weather', u'cut', u'bluewat', u'classic']
[u'rspca', u'issu', u'christma', u'leftov', u'warn']
[u'scientist', u'revis', u'dead', u'quak', u'rat']
[u'scientist', u'warn', u'tsunami', u'threat']
[u'search', u'mount', u'miss', u'tourist']
[u'south', u'africa', u'strike', u'send', u'england']
[u'lanka', u'appeal', u'food', u'medic', u'suppli']
[u'lankan', u'cricket', u'ponder', u'tour', u'pull']
[u'lanka', u'tidal', u'wave', u'toll', u'hit']
[u'lanka', u'tsunami', u'kill', u'million', u'affect']
[u'stinger', u'attack', u'leav', u'person', u'hospit']
[u'storm', u'caus', u'power', u'outag']
[u'summernat', u'hop', u'inquiri', u'communiti', u'support']
[u'sunni', u'muslim', u'parti', u'withdraw', u'iraq', u'januari']
[u'super', u'maxi', u'high', u'sea', u'duel']
[u'survivor', u'tell', u'wall', u'water']
[u'tasmania', u'appoint', u'assist', u'polic', u'commission']
[u'thousand', u'flock', u'woodford', u'folk', u'festiv']
[u'tidal', u'surg', u'coast']
[u'tidal', u'surg', u'prompt', u'polic', u'warn']
[u'tidal', u'wave', u'kill', u'thousand', u'asia']
[u'trucki', u'escap', u'injuri', u'fieri', u'crash']
[u'tsunami', u'kill', u'central', u'burma']
[u'australian', u'dead', u'phuket', u'tsunami']
[u'bodi', u'discov', u'sydney', u'home']
[u'horrif', u'crash']
[u'injur', u'brisban', u'blaze']
[u'snorkel', u'dead', u'rescu', u'thai', u'cave']
[u'seek', u'role', u'sunni', u'iraq', u'govern', u'report']
[u'team', u'see', u'sign', u'rig', u'vote', u'ukrain']
[u'victoria', u'lankan', u'contact', u'famili']
[u'economi', u'remain', u'strong', u'despit', u'slump', u'studi']
[u'weather', u'delay', u'locust', u'influx']
[u'weather', u'forc', u'melbourn', u'hobart']
[u'whale', u'tasmanian', u'beach']
[u'world', u'rush', u'offer', u'tidal', u'wave', u'victim']
[u'yushchenko', u'proclaim', u'ukrain']
[u'yushchenko', u'win', u'ukrain', u'poll']
[u'kill', u'tidal', u'wave', u'strike', u'tanzania']
[u'million', u'displac', u'tsunami', u'cross']
[u'facil', u'power', u'north', u'west']
[u'aceh', u'separatist', u'declar', u'ceasefir', u'tsunami']
[u'aceh', u'tsunami', u'victim', u'await']
[u'driver', u'earn', u'polic', u'prais']
[u'agenc', u'call', u'aust', u'tsunami']
[u'agenc', u'critic', u'govt', u'effort']
[u'alga', u'woe', u'deter', u'noosa', u'beach', u'goer']
[u'amazon', u'report', u'record', u'christma', u'sale']
[u'ambul', u'call', u'pakistan', u'team', u'hotel']
[u'amend', u'give', u'tasmanian', u'time']
[u'report', u'spam', u'declin']
[u'arrest', u'polic', u'chase']
[u'asian', u'offici', u'fear', u'miss']
[u'australia', u'lead', u'pakistan']
[u'australia', u'test']
[u'australia', u'rattl']
[u'australia', u'test', u'victori']
[u'australia', u'tighten', u'grip', u'second', u'test']
[u'australia', u'send', u'tsunami', u'clean']
[u'aust', u'welcom', u'record', u'tourist', u'visit']
[u'author', u'monitor', u'fire']
[u'author', u'prais', u'brave', u'hous', u'blaze', u'rescu']
[u'author', u'assist', u'famili', u'babi', u'girl']
[u'babi', u'float', u'safeti', u'mattress', u'tsunami']
[u'sheffield', u'come', u'home']
[u'beach', u'drown', u'prompt', u'safeti', u'warn']
[u'beach', u'whale', u'femal']
[u'beach', u'goer', u'time', u'safeti', u'remind']
[u'behead', u'video', u'show', u'japanes', u'rock', u'concert']
[u'beij', u'group', u'launch', u'olymp', u'newspap']
[u'lade', u'call', u'iraqi', u'poll', u'boycott']
[u'blood', u'bank', u'renew', u'donat', u'appeal']
[u'bodi', u'pile', u'india', u'govt', u'warn', u'toll']
[u'bogus', u'onlin', u'auction', u'catch', u'shopper']
[u'radiat', u'explod', u'boy', u'face']
[u'china', u'scrap', u'olymp', u'stadium', u'plan']
[u'coastal', u'patrol', u'monitor', u'whale', u'beach']
[u'coco', u'island', u'spar', u'dead', u'wave']
[u'commonwealth', u'countri', u'discuss', u'tidal', u'wave']
[u'crude', u'price', u'plung']
[u'damag', u'road', u'hinder', u'lankan', u'effort']
[u'darwin', u'role', u'tsunami', u'effort']
[u'diego', u'garcia', u'militari', u'base', u'undamag', u'tsunami']
[u'diseas', u'threaten', u'tsunami', u'stricken', u'countri']
[u'downer', u'defend', u'aust', u'tsunami', u'respons']
[u'drahm', u'answer', u'saint', u'prayer']
[u'eighth', u'australian', u'dead', u'tsunami']
[u'elder', u'woman', u'tsunami', u'dead']
[u'elect', u'fall', u'prompt', u'democrat']
[u'welcom', u'ukrain', u'elect', u'result']
[u'famili', u'prepar', u'return', u'tsunami', u'victim']
[u'fate', u'andaman', u'island', u'unknown']
[u'father', u'team', u'win', u'melbourn', u'launceston']
[u'fergi', u'defend', u'rooney', u'push', u'incid']
[u'injur', u'pacif', u'highway', u'collis']
[u'fund', u'allow', u'boost', u'scholarship']
[u'greenback', u'drag', u'share', u'price']
[u'hama', u'leader', u'zahar', u'reject', u'abba']
[u'health', u'servic', u'director', u'name', u'ahead', u'merger']
[u'high', u'wind', u'lash', u'melbourn', u'central', u'victoria']
[u'hmas', u'darwin', u'head', u'persian', u'gulf']
[u'hobart', u'festiv', u'prove', u'punter', u'tast']
[u'indian', u'bat', u'blitz', u'sink', u'bangladesh']
[u'india', u'pakistan', u'talk', u'breakthrough']
[u'indonesia', u'fear', u'death', u'toll', u'reach']
[u'indonesian', u'warn', u'death', u'toll', u'reach']
[u'indonesia', u'set', u'tsunami', u'relief', u'agenc']
[u'word']
[u'iraqi', u'expatri', u'allow', u'vote', u'abroad']
[u'israel', u'armi', u'blame', u'profession', u'failur']
[u'japan', u'test', u'tourism', u'guid']
[u'keel', u'damag', u'forc', u'skandia', u'retir']
[u'killer', u'quak', u'rattl', u'earth', u'orbit', u'scientist']
[u'konica', u'minolta', u'crew', u'disappoint', u'retir']
[u'konica', u'skandia', u'sydney', u'hobart']
[u'malaysian', u'villag', u'mourn', u'coupl', u'lose']
[u'melbourn', u'footbal', u'miss', u'thailand']
[u'melbourn', u'prepar', u'year', u'spectacular']
[u'minist', u'call', u'tsunami', u'warn', u'scheme']
[u'miss', u'spark', u'polic', u'fear']
[u'talk', u'north', u'coast', u'transport', u'servic']
[u'murali', u'lucki', u'aliv', u'tsunami', u'disast']
[u'nacho', u'sizzl', u'ranger', u'close']
[u'nicorett', u'close', u'hobart']
[u'nicorett', u'cruis', u'hobart']
[u'nicorett', u'lead', u'dash', u'hobart']
[u'northern', u'aust', u'tsunami', u'risk', u'expert']
[u'north', u'assist', u'polic']
[u'somali', u'fishermen', u'fear', u'kill', u'tsunami']
[u'pair', u'hurt', u'eyr', u'highway', u'crash']
[u'pakistan', u'stumbl', u'fail', u'pounc']
[u'palestinian', u'elect', u'candid', u'arrest']
[u'parishion', u'urg', u'offer', u'support', u'tsunami']
[u'peopl', u'gather', u'celebr', u'proclam']
[u'reject', u'critic', u'relief', u'effort']
[u'polic', u'behead', u'bodi', u'slum', u'turf']
[u'polic', u'hunt', u'hotel', u'bandit']
[u'polic', u'investig', u'aborigin', u'theft']
[u'polic', u'investig', u'engadin', u'death']
[u'polic', u'investig', u'stawel', u'bodi']
[u'polic', u'issu', u'holiday', u'crime', u'warn']
[u'polic', u'brake', u'young', u'speedster']
[u'polic', u'seek', u'wit', u'truck', u'jump', u'death']
[u'post', u'christma', u'sale']
[u'post', u'mortem', u'japanes', u'tourist']
[u'powel', u'push', u'sunni', u'presenc', u'iraqi']
[u'power', u'return', u'central', u'west', u'resid']
[u'pump', u'save', u'sink', u'trawler']
[u'store', u'regist', u'strong', u'sale']
[u'razzaq', u'rush', u'hospit', u'play', u'delay', u'melbourn']
[u'resid', u'brief', u'return', u'fallujah']
[u'road', u'crash', u'victim', u'hospit']
[u'roadsid', u'bomb', u'kill', u'soldier', u'iraq']
[u'bounc', u'stun', u'offic']
[u'search', u'continu', u'miss', u'gold', u'coast']
[u'search', u'continu', u'miss', u'woman']
[u'shoaib', u'malik', u'illeg', u'doosra']
[u'shoaib', u'take', u'australia', u'build', u'lead']
[u'shop', u'centr', u'blaze', u'investig']
[u'australian', u'confirm', u'kill', u'tsunami']
[u'skandia', u'crew', u'abandon', u'ship', u'konica']
[u'skandia', u'keel', u'damag']
[u'speed', u'driver', u'caus', u'polic', u'concern']
[u'lankan', u'clean', u'year']
[u'lankan', u'indian', u'communiti', u'plan', u'fundrais']
[u'lanka', u'postpon', u'match', u'tour', u'ahead']
[u'starvat', u'loot', u'report', u'aceh']
[u'storm', u'decim', u'fleet']
[u'swimmer', u'evacu', u'shark', u'sight']
[u'teenag', u'kill', u'road', u'crash', u'wasnt', u'wear', u'seat']
[u'thailand', u'appeal', u'tsunami']
[u'thailand', u'declar', u'day', u'mourn']
[u'thousand', u'seek', u'post', u'christma', u'bargain']
[u'tidal', u'surg', u'blame', u'tsunami']
[u'tourist', u'bear', u'brunt', u'tsunami', u'thailand']
[u'town', u'seek', u'famili', u'boost', u'kindi', u'class']
[u'traffic', u'stop', u'bypass', u'gridlock']
[u'trescothick', u'strauss', u'centuri', u'boost', u'england']
[u'tsunami', u'flight', u'leav', u'darwin']
[u'tsunami', u'disast', u'hit', u'economi', u'market']
[u'tsunami', u'expert', u'call', u'improv', u'warn']
[u'tsunami', u'survivor', u'criticis', u'aust', u'rescu', u'effort']
[u'kill', u'attack', u'iraqi', u'polic']
[u'ukrain', u'refus', u'conced', u'defeat']
[u'prepar', u'tsunami', u'effort']
[u'team', u'head', u'lanka', u'maldiv']
[u'britain', u'hold', u'prison', u'iraq']
[u'uzbek', u'elect', u'intern', u'standard']
[u'road', u'toll', u'hit']
[u'woman', u'stab', u'park', u'fight']
[u'woodford', u'folk', u'festiv', u'offici', u'begin']
[u'youth', u'face', u'court', u'school', u'blaze']
[u'yuko', u'default', u'miss', u'payment']
[u'yushchenko', u'say', u'time', u'need', u'rebuild', u'russia', u'tie']
[u'aapt', u'second', u'hobart']
[u'academ', u'question', u'redund', u'decis']
[u'adelaid', u'doctor', u'tsunami', u'devast']
[u'adelaid', u'charg', u'attempt', u'murder']
[u'identif', u'team', u'arriv', u'thailand']
[u'help', u'hand']
[u'alcohol', u'link', u'teen', u'death']
[u'american', u'win', u'launceston', u'cycl', u'race']
[u'angler', u'unabl', u'save', u'sink', u'boat']
[u'collect', u'tsunami', u'donat']
[u'asia', u'tsunami', u'leav', u'swede', u'miss']
[u'attenborough', u'granddaught', u'kill', u'quak']
[u'australia', u'boost', u'tsunami', u'effort']
[u'australia', u'clinch', u'seri', u'wicket']
[u'australia', u'cruis', u'fourth', u'victori']
[u'australian', u'doctor', u'assist', u'tsunami', u'victim']
[u'australian', u'survivor', u'arriv', u'darwin']
[u'australian', u'tsunami', u'toll', u'expect', u'rise']
[u'baghdad', u'blast', u'kill']
[u'baker', u'set', u'sight', u'devonport', u'gift']
[u'biologist', u'fear', u'water', u'suppli', u'maldiv']
[u'british', u'soldier', u'dead', u'iraq']
[u'broadbridg', u'miss', u'phuket']
[u'broadbridg', u'miss', u'thailand']
[u'caloundra', u'seek', u'polic', u'inform']
[u'canberra', u'rememb', u'tsunami', u'victim']
[u'cathol', u'counsel', u'abort', u'rate']
[u'chelsea', u'extend', u'lead', u'unit']
[u'china', u'spend', u'coal', u'safeti']
[u'christma', u'shopper', u'remind', u'refund', u'right']
[u'chronolog', u'tsunami', u'past', u'centuri']
[u'concern', u'rais', u'speed', u'tsunami']
[u'condit', u'hinder', u'identif', u'tsunami', u'victim']
[u'council', u'reduc', u'residenti', u'subdivis']
[u'court', u'hear', u'phnom', u'penh', u'bomb', u'plot']
[u'driver', u'caution', u'extra', u'traffic']
[u'drought', u'polit', u'frustrat', u'rural', u'counsellor']
[u'export', u'seek', u'suppli', u'tsunami', u'relief', u'plan']
[u'fear', u'thousand', u'tsunami', u'toll', u'mount']
[u'feder', u'polic', u'begin', u'identif', u'thai']
[u'crew', u'monitor', u'scene', u'bindoon', u'blaze']
[u'foreign', u'insur', u'tip', u'escap', u'tsunami', u'unscath']
[u'forestri', u'firm', u'accus', u'pollut', u'melvill', u'island']
[u'fourteen', u'tsunami', u'survivor', u'return', u'home']
[u'free', u'draw', u'wide', u'barrier', u'perth']
[u'friend', u'tribut', u'adelaid', u'tsunami', u'victim']
[u'general', u'face', u'crimin', u'probe', u'thai', u'muslim']
[u'girl', u'savag', u'north', u'attack']
[u'govt', u'hotlin', u'medico', u'offer', u'tsunami']
[u'grave', u'fear', u'thousand', u'aceh']
[u'hospit', u'pleas', u'nurs']
[u'hospit', u'cop', u'holiday', u'demand']
[u'readi', u'listen', u'lankan', u'concern']
[u'indian', u'event', u'ahead']
[u'indonesia', u'lanka', u'hardest', u'tsunami']
[u'ingval', u'warn', u'sydney', u'hobart']
[u'insur', u'travel', u'stock', u'drag', u'australian', u'market']
[u'intrud', u'break', u'wrong', u'hous', u'apologis']
[u'isra', u'airstrik', u'hit', u'palestinian', u'gaza']
[u'jam', u'lift', u'trap', u'super', u'keen', u'adelaid', u'shopper']
[u'japan', u'mull', u'femal', u'heir', u'throne']
[u'langer', u'go', u'chase', u'start']
[u'launceston', u'yachti', u'melbourn', u'launceston', u'line']
[u'lobbi', u'group', u'disput', u'transport', u'claim']
[u'charg', u'pizza', u'theft']
[u'charg', u'polic']
[u'plan', u'speed', u'riverina', u'gold', u'explor']
[u'martin', u'call', u'tsunami', u'warn']
[u'martyn', u'thank', u'aussi', u'selector']
[u'melbourn', u'lankan', u'collect', u'victim']
[u'mini', u'crash', u'central', u'aust']
[u'miracl', u'indian', u'girl', u'surviv', u'tsunami', u'wooden', u'door']
[u'molotov', u'cocktail', u'spark', u'hous']
[u'nasa', u'finish', u'redesign', u'shuttl', u'fuel', u'tank']
[u'navi', u'seal', u'publish', u'iraq', u'photo']
[u'govt', u'take', u'shape', u'romania']
[u'newmont', u'say', u'indonesian', u'civil', u'suit', u'withdraw']
[u'nicorett', u'take', u'sydney', u'hobart', u'line', u'honour']
[u'nicorett', u'contest', u'pittwat', u'coff', u'race']
[u'peopl', u'kill', u'kashmir', u'unrest']
[u'ninth', u'australian', u'confirm', u'dead', u'tsunami']
[u'govt', u'pledg', u'tsunami', u'victim']
[u'offici', u'monitor', u'plagu', u'locust', u'south', u'west']
[u'oldfield', u'leav', u'nation']
[u'kill', u'wollongong', u'crash']
[u'confirm', u'dead', u'thailand']
[u'bodi', u'beach', u'island']
[u'pakistan', u'fight', u'life']
[u'seek', u'comment', u'wagga', u'polic', u'claim']
[u'polic', u'alleg', u'plater', u'doubl', u'speed', u'limit']
[u'polic', u'hunt', u'pair', u'tulli', u'knife', u'attack']
[u'polic', u'investig', u'adelaid', u'fire']
[u'polic', u'probe', u'booral', u'crash']
[u'polic', u'recov', u'miss', u'man', u'bodi']
[u'polic', u'target', u'alcohol', u'relat', u'crime']
[u'pont', u'back', u'lehmann', u'sydney', u'test']
[u'pont', u'guid', u'australia', u'victori']
[u'post', u'tsunami', u'diseas', u'kill', u'thousand']
[u'power', u'station', u'deal', u'show', u'faith']
[u'quetzalcoatl', u'hold', u'slight', u'lead']
[u'quetzalcoatl', u'lead', u'melbourn', u'hobart', u'fleet', u'home']
[u'racv', u'prais', u'lower', u'petrol', u'price', u'christma']
[u'rain', u'fail', u'dampen', u'threat']
[u'razzaq', u'releas', u'hospit']
[u'reid', u'give', u'adelaid', u'wildcard']
[u'report', u'link', u'bank', u'robberi']
[u'rex', u'canberra', u'servic', u'finish']
[u'rotari', u'call', u'tsunami', u'donat']
[u'saudi', u'polic', u'kill', u'milit', u'riyadh', u'shootout']
[u'seminar', u'mean', u'busi', u'musician']
[u'shoaib', u'razzaq', u'fall']
[u'korea', u'defect', u'communist', u'north']
[u'lanka', u'buri', u'dead', u'mass', u'grave']
[u'lankan', u'tsunami', u'survivor', u'survey', u'devast']
[u'lanka', u'continu', u'tour']
[u'state', u'territori', u'pledg', u'tsunami']
[u'georg', u'sell', u'network']
[u'strong', u'consum', u'confid', u'boost', u'share']
[u'susan', u'sontag', u'battler', u'literatur', u'human']
[u'swimmer', u'warn', u'beach', u'danger']
[u'tasmania', u'pledg', u'tsunami', u'relief']
[u'telstra', u'rebat', u'cost', u'tsunami', u'victim']
[u'thailand', u'miss', u'tourist', u'offici']
[u'thai', u'looter', u'cash', u'tsunami', u'destruct']
[u'timelin', u'year', u'dead', u'tsunami']
[u'tire', u'novak', u'scratch', u'open']
[u'tour', u'oper', u'account', u'tsunami', u'region', u'client']
[u'trescothick', u'strauss', u'open', u'stand']
[u'tsunami', u'death', u'toll', u'near']
[u'tsunami', u'toll', u'maldiv', u'rise']
[u'tsunami', u'weigh', u'aust', u'stock']
[u'australian', u'safe', u'tsunami', u'zone']
[u'charg', u'chase', u'water']
[u'kill', u'vietnam', u'shell']
[u'charg', u'penguin', u'doubl', u'murder']
[u'ukrain', u'govern', u'cancel', u'meet', u'amid', u'protest']
[u'ukrain', u'pull', u'conting', u'iraq', u'minist']
[u'deni', u'stingi', u'tsunami']
[u'give', u'palestinian', u'author']
[u'medico', u'bind', u'tsunami', u'region']
[u'merchant', u'venic']
[u'student', u'receiv', u'high', u'school', u'result']
[u'wave', u'terror']
[u'whale', u'autopsi', u'continu']
[u'wildcard', u'confirm', u'hardcourt', u'champ']
[u'win', u'skipper', u'warn', u'speed', u'safeti']
[u'woman', u'hurt', u'roll']
[u'woodford', u'organis', u'plan', u'indigen', u'festiv']
[u'woolnorth', u'pastor', u'properti', u'tender']
[u'writer', u'critic', u'susan', u'sontag', u'die']
[u'xmas', u'road', u'toll', u'reach']
[u'yushchenko', u'call', u'govern', u'blockad']
[u'abba', u'press', u'remov', u'isra', u'barrier']
[u'aceh', u'toll']
[u'govt', u'pledg', u'tsunami', u'victim']
[u'aera', u'firm', u'handicap', u'favourit']
[u'aera', u'handicap', u'honour']
[u'group', u'overwhelm', u'tsunami', u'donat']
[u'shipment', u'begin', u'arriv', u'aceh']
[u'alaska', u'spill', u'wors', u'fear']
[u'qaeda', u'link', u'rebel', u'kill', u'seven', u'algeria']
[u'assist', u'offer', u'return', u'tsunami', u'victim']
[u'aussi', u'domin', u'world', u'rugbi', u'team']
[u'aust', u'forens', u'team', u'begin', u'work', u'thailand']
[u'aust', u'join', u'bush', u'tsunami', u'coalit']
[u'australian', u'effort', u'identifi', u'tsunami', u'dead']
[u'australia', u'send', u'navi', u'ship', u'chopper', u'indonesia']
[u'aust', u'send', u'suppli', u'expert', u'tsunami', u'zone']
[u'bakhtiyari', u'debat', u'beli', u'refuge', u'program', u'vanston']
[u'bakhtiyari', u'bind', u'pakistan']
[u'bishop', u'urg', u'tsunami']
[u'blue', u'welcom', u'warrior', u'clash']
[u'boati', u'urg', u'patient', u'year']
[u'rescu', u'cliff', u'face']
[u'break', u'hard', u'brain']
[u'burglari', u'suspect', u'catch', u'polic', u'chase']
[u'bush', u'vow', u'victim', u'tsunami']
[u'businessman', u'stick', u'riverina', u'airlin', u'plan']
[u'byron', u'traffic', u'woe', u'continu']
[u'cambodian', u'court', u'sentenc', u'terror', u'suspect', u'life']
[u'park', u'deal', u'seal', u'wollongong', u'hotel', u'develop']
[u'chariti', u'urg', u'think', u'lone', u'australian']
[u'children', u'bear', u'brunt', u'tsunami', u'disast']
[u'christma', u'road', u'toll', u'reach']
[u'cloncurri', u'water', u'suppli', u'get', u'boost']
[u'consum', u'warn', u'credit', u'card', u'crook']
[u'council', u'launch', u'tsunami', u'appeal']
[u'court', u'reject', u'south', u'west', u'rock', u'subdivis']
[u'cricket', u'donat', u'win', u'help', u'tsunami', u'victim']
[u'cricket', u'shock', u'india', u'disast']
[u'water', u'forc', u'household', u'bill']
[u'dept', u'promis', u'continu', u'water', u'licenc', u'crackdown']
[u'doctor', u'offer', u'servic', u'tsunami', u'victim']
[u'issu', u'tick', u'warn', u'hors', u'owner']
[u'driver', u'warn', u'polic', u'crackdown']
[u'dubbo', u'famili', u'safe', u'tsunami']
[u'fall', u'pilgrim', u'line', u'rout', u'festiv', u'site']
[u'north', u'resid', u'ask', u'help', u'tsunami', u'victim']
[u'feder', u'puzzl', u'tenni', u'dope']
[u'crew', u'contain', u'nation', u'park', u'blaze']
[u'firefight', u'urg', u'public', u'report', u'countri', u'blaze']
[u'million', u'need', u'food', u'water']
[u'fluoresc', u'polic', u'car', u'boost', u'road', u'safeti']
[u'socceroo', u'criticis', u'youth', u'develop']
[u'freight', u'train', u'mishap', u'block', u'passeng', u'line']
[u'fresh', u'resign', u'report']
[u'friend', u'wondai', u'shire', u'attract', u'famili']
[u'govt', u'deni', u'restrain', u'bakhtiyari']
[u'govt', u'surplus', u'tsunami']
[u'group', u'focus', u'polic', u'communic', u'centr']
[u'gunner', u'chelsea', u'sight']
[u'health', u'servic', u'job', u'uncertain', u'ahead', u'merger']
[u'healthi', u'holiday', u'book', u'whitsunday']
[u'helicopt', u'patrol', u'power', u'upgrad', u'program']
[u'heritag', u'bodi', u'administr']
[u'hewitt', u'slam', u'australian', u'open', u'organis']
[u'holiday', u'theft', u'rise']
[u'hundr', u'tribut', u'slay', u'polic', u'offic']
[u'hundr', u'protest', u'land', u'bill']
[u'hunter', u'famili', u'surviv', u'tsunami']
[u'hunter', u'substat', u'build', u'ahead', u'time']
[u'illawarra', u'group', u'fundrais', u'tsunami', u'victim']
[u'indian', u'author', u'search', u'aborigin', u'tribe']
[u'indian', u'death', u'toll', u'pass']
[u'india', u'spend', u'tsunami', u'warn', u'system']
[u'indonesia', u'death', u'reach', u'offici']
[u'injur', u'davenport', u'fight', u'sydney', u'fit']
[u'inzamam', u'razzaq', u'expect', u'play', u'sydney', u'test']
[u'iraq', u'clash', u'kill', u'insurg']
[u'iraq', u'say', u'senior', u'zarqawi', u'aid', u'captur', u'baghdad']
[u'israel', u'charg', u'relic', u'ring', u'fraud']
[u'jackson', u'case', u'potenti', u'juror', u'call']
[u'judg', u'challeng', u'postpon']
[u'kapow', u'superhero', u'food', u'fight', u'frenzi']
[u'katich', u'play', u'test', u'chanc']
[u'kingaroy', u'policeman', u'die', u'holiday']
[u'king', u'break', u'zealand']
[u'kmart', u'recal', u'kid', u'bike']
[u'larg', u'blast', u'hear', u'saudi', u'capit']
[u'launceston', u'runner', u'win', u'devonport', u'gift']
[u'order', u'star', u'jerri', u'orbach', u'die']
[u'lehmann', u'stay', u'macgil', u'drop']
[u'lightn', u'play', u'havoc', u'radio', u'recept']
[u'light', u'wind', u'hinder', u'melbourn', u'hobart', u'progess']
[u'light', u'wind', u'slow', u'yacht', u'melbourn', u'hobart']
[u'lismor', u'man', u'friend', u'avoid', u'tsunami']
[u'livestock', u'produc', u'adapt', u'market', u'demand']
[u'mackay', u'yachti', u'learn', u'sydney', u'hobart']
[u'maldiv', u'tsunami', u'death', u'toll', u'rise']
[u'court', u'hous', u'blaze']
[u'court', u'tavern', u'blaze']
[u'maoist', u'transport', u'blockad', u'nepal']
[u'market', u'finish', u'high', u'despit', u'light', u'trade']
[u'mayor', u'refus', u'year', u'celebr']
[u'melbourn', u'hobart', u'fleet', u'hamper', u'light', u'wind']
[u'melbourn', u'support', u'miss', u'team', u'mate']
[u'melbourn', u'tsunami', u'victim', u'parent', u'arriv', u'home']
[u'miliari', u'lead', u'lankan', u'relief', u'effort']
[u'mirza', u'get', u'aust', u'open', u'wildcard']
[u'molik', u'pair', u'sugiyama']
[u'aftershock', u'felt', u'aceh']
[u'more', u'sydney', u'rail', u'servic', u'track']
[u'time', u'comment', u'wauchop', u'masterplan']
[u'myall', u'lake', u'want', u'greater', u'polic', u'presenc']
[u'myskina', u'focus', u'win', u'hopman']
[u'newcastl', u'pray', u'tsunami', u'victim']
[u'measur', u'target', u'year', u'troubl']
[u'polic', u'unit', u'target', u'crime']
[u'turbin', u'boost', u'alic', u'power', u'suppli']
[u'nigeria', u'buy', u'patrol', u'boat', u'combat', u'theft']
[u'charg', u'expect', u'doubl', u'murder']
[u'famili', u'wait', u'hear', u'relat']
[u'price', u'jump', u'riyadh', u'bomb']
[u'pakistan', u'injuri', u'crisi']
[u'pantri', u'raid', u'forc', u'astronaut', u'sweet', u'bing']
[u'paraglid', u'look', u'break', u'record', u'manilla']
[u'pere', u'sharon', u'deputi', u'isra']
[u'phelp', u'probat', u'drink', u'drive']
[u'pierc', u'doubt', u'sydney', u'intern']
[u'prais', u'australian', u'tsunami', u'respons']
[u'poki', u'advertis', u'loom']
[u'polic', u'catch', u'speed', u'driver', u'christma']
[u'polic', u'investig', u'kill', u'penguin', u'parti']
[u'polic', u'lament', u'holiday', u'road', u'offenc']
[u'polic', u'link', u'solomon', u'murder', u'second', u'shoot']
[u'polic', u'kill', u'truck', u'ride']
[u'polic', u'probe', u'suspici', u'more', u'death']
[u'polic', u'search', u'miss']
[u'polic', u'warn', u'privat', u'year', u'firework']
[u'polic', u'warn', u'coast', u'driver', u'follow', u'rule']
[u'post', u'ukrain', u'elect', u'wrangl', u'continu']
[u'prepar', u'return', u'bodi']
[u'produc', u'urg', u'fever', u'vaccin']
[u'public', u'urg', u'recycl', u'christma', u'card']
[u'rain', u'counter', u'lightn', u'threat']
[u'rain', u'offer', u'hope', u'produc']
[u'record', u'dakar', u'ralli']
[u'rescuer', u'tsunami', u'survivor', u'thailand']
[u'road', u'toll', u'remain', u'zero', u'southern', u'road']
[u'road', u'toll', u'rise', u'newcastl', u'crash']
[u'robberi', u'victim', u'arrest', u'attack']
[u'rooney', u'charg', u'violent', u'conduct']
[u'salvo', u'urg', u'continu', u'christma', u'donat']
[u'saudi', u'capit', u'rock', u'twin', u'bomb']
[u'scientist', u'head', u'south', u'test', u'lightn', u'theori']
[u'seven', u'milit', u'kill', u'saudi', u'bomb']
[u'sharon', u'order', u'zero', u'toler', u'gaza', u'pullout']
[u'ship', u'bind', u'sumatra', u'stock', u'donat']
[u'shire', u'give', u'childcar', u'centr', u'leas', u'life']
[u'skandia', u'skipper', u'call', u'greater', u'yacht', u'safeti']
[u'skandia', u'handicap', u'contend', u'come', u'home']
[u'snake', u'guid', u'woman', u'children', u'safeti']
[u'speed', u'driver', u'worri', u'north', u'coast', u'polic']
[u'lanka', u'call', u'foreign']
[u'lankan', u'player', u'anxious', u'return', u'home']
[u'lanka', u'scrap', u'tour', u'tsunami']
[u'survivor', u'tsunami', u'difficult', u'accept']
[u'swimmer', u'warn', u'guard', u'stinger']
[u'sydney', u'polic', u'issu', u'year', u'warn']
[u'taiwan', u'court', u'reject', u'presidenti', u'elect', u'suit']
[u'tamworth', u'local', u'ask', u'blood']
[u'task', u'forc', u'investig', u'sight']
[u'technolog', u'aid', u'strand', u'tourist', u'rescu']
[u'result', u'nice', u'esper', u'student']
[u'tenth', u'australian', u'dead', u'tsunami']
[u'thiev', u'target', u'jewelleri', u'shop', u'time']
[u'thorp', u'put', u'england', u'power', u'posit']
[u'thousand', u'flock', u'rocki', u'year', u'celebr']
[u'airlift', u'troop', u'carrier', u'crash']
[u'stab', u'sydney', u'parti']
[u'time', u'work', u'christma', u'kilo']
[u'tourism', u'job', u'boost', u'matur', u'age', u'worker']
[u'townsvill', u'firework', u'fund', u'tsunami', u'victim']
[u'traffic', u'fine', u'issu', u'year', u'incid']
[u'travel', u'agent', u'staff', u'surviv', u'tsunami', u'client', u'fate']
[u'troubl', u'windi', u'leav', u'australia']
[u'tsunami', u'team', u'face', u'devast']
[u'tsunami', u'death', u'toll', u'thailand', u'near']
[u'tsunami', u'relief', u'effort', u'step']
[u'tsunami', u'toll']
[u'tsunami', u'toll', u'pass']
[u'tsunami', u'victim', u'malaysian', u'demand', u'quick']
[u'kill', u'gaza', u'strike']
[u'lebanes', u'businessmen', u'kidnap', u'baghdad']
[u'milit', u'kill', u'gaza', u'raid']
[u'uncertainti', u'remain', u'health', u'merger', u'loss']
[u'chief', u'overse', u'tsunami', u'relief']
[u'share']
[u'locust', u'plagu']
[u'polic', u'forc', u'year']
[u'vietnames', u'girl', u'contract', u'bird']
[u'volunari', u'code', u'improv', u'parti', u'safeti']
[u'water', u'level', u'sydney', u'main', u'drop']
[u'watson', u'hope', u'start', u'sydney', u'test']
[u'wave', u'sweep', u'camper']
[u'women', u'advoc', u'back', u'pregnanc', u'support', u'scheme']
[u'yemeni', u'qaeda', u'member', u'kill', u'riyadh', u'shootout']
[u'american', u'dead', u'tsunami']
[u'briton', u'dead', u'asia', u'tsunami', u'disast']
[u'extend', u'million', u'tsunami', u'countri']
[u'adelaid', u'revel', u'urg', u'public', u'transport']
[u'aera', u'secur', u'handicap', u'trophi']
[u'tip', u'fair', u'troubl', u'free', u'year']
[u'albani', u'ralli', u'offer', u'tsunami', u'relief']
[u'annan', u'warn', u'long', u'term', u'commit', u'need', u'asia']
[u'locust', u'outbreak']
[u'australian', u'generous', u'tsunami', u'victim']
[u'australian', u'warn', u'tsunami', u'toll', u'reach']
[u'light', u'thwart', u'england', u'durban']
[u'baghdad', u'refineri', u'alight']
[u'ban', u'malik', u'say', u'pakistan', u'lack', u'matur']
[u'beer', u'flow', u'wellshot', u'hotel']
[u'crowd', u'tip', u'enjoy', u'great', u'lake', u'year']
[u'boro', u'battl', u'schwarzer']
[u'bremer', u'polic', u'prepar', u'year']
[u'breweri', u'switch', u'bottl', u'water', u'tsunami']
[u'british', u'yacht', u'honour']
[u'broom', u'hop', u'clean', u'litter', u'woe']
[u'bush', u'crash', u'kill', u'pakistan']
[u'bushfir', u'pose', u'threat', u'endang', u'parrot']
[u'byron', u'polic', u'crack', u'public', u'drink']
[u'camp', u'area', u'reopen', u'asbesto', u'scare']
[u'canberra', u'light', u'year']
[u'chelsea', u'babayaro', u'move', u'newcastl']
[u'cherri', u'grower', u'push', u'picker', u'camp', u'grind']
[u'child', u'killer', u'jail', u'year', u'crime']
[u'chubb', u'fin', u'trade', u'practic', u'breach']
[u'commod', u'price', u'rise', u'tip']
[u'communiti', u'prais', u'support', u'meatwork', u'blaze']
[u'concern', u'mount', u'australian']
[u'concert', u'tsunami', u'devast', u'villag']
[u'council', u'offer', u'tsunami', u'fund']
[u'council', u'plan', u'orang', u'airport', u'revamp']
[u'council', u'combin', u'effort', u'help', u'tsunami', u'victim']
[u'court', u'reject', u'yanukovich', u'appeal']
[u'cricket', u'offici', u'plan', u'tsunami', u'fundrais']
[u'croc', u'take', u'breaker', u'grant']
[u'dairi', u'takeov', u'battl', u'push', u'share', u'price']
[u'dairi', u'takeov', u'benefit', u'farmer']
[u'desper', u'hamper', u'relief', u'work', u'aceh']
[u'drought', u'blame', u'tourism', u'declin']
[u'emot', u'scene', u'tsunami', u'survivor', u'return', u'home']
[u'england', u'boost', u'vickeri', u'comeback']
[u'europ', u'dig', u'deep', u'tsunami']
[u'lankan', u'resid', u'reflect', u'tsunami', u'impact']
[u'fan', u'ask', u'tsunami', u'appeal']
[u'fan', u'ask', u'tsunami', u'fundrais', u'drive']
[u'farmer', u'urg', u'tackl', u'locust', u'earli']
[u'lead', u'jewelleri', u'store', u'theft']
[u'firefight', u'tackl', u'bendigo', u'hous', u'blaze']
[u'see', u'backpack', u'hostel', u'evacu']
[u'folk', u'festiv', u'crowd', u'offer', u'tsunami', u'fund']
[u'food', u'drop', u'begin', u'aceh']
[u'free', u'bus', u'darwin', u'revel']
[u'freight', u'train', u'come', u'track']
[u'gay', u'lesbian', u'head', u'north', u'coast', u'year', u'parti']
[u'gazza', u'chase', u'leagu', u'coach', u'report']
[u'gold', u'coast', u'offer', u'tsunami', u'fund']
[u'golovin', u'look', u'rank']
[u'govt', u'boost', u'tsunami']
[u'govt', u'bakhtiyari', u'detent']
[u'govt', u'urg', u'match', u'public', u'tsunami', u'donat']
[u'govt', u'urg', u'target', u'underag', u'drink']
[u'grass', u'fire', u'think', u'work', u'arsonist']
[u'grave', u'fear', u'australian']
[u'green', u'group', u'unhappi', u'fisheri', u'certif']
[u'green', u'tell', u'tsunami', u'terror']
[u'humanitarian', u'respons', u'hamper', u'effort']
[u'hundr', u'kill', u'nightclub']
[u'hunter', u'health', u'profession', u'offer', u'tsunami']
[u'india', u'revis', u'tsunami', u'death', u'toll']
[u'indonesian', u'militari', u'resum', u'rebel', u'raid', u'aceh']
[u'indonesian', u'offici', u'acknowledg', u'toll', u'assess']
[u'indonesia', u'host', u'intern', u'relief', u'summit']
[u'injur', u'kewel', u'month']
[u'isra', u'strike', u'kill', u'gaza', u'gunmen']
[u'japan', u'north', u'korea', u'relat', u'worsen']
[u'jazz', u'giant', u'arti', u'shaw', u'die']
[u'jenner', u'back', u'twin', u'spin', u'scenario']
[u'judg', u'settl', u'custodi', u'disput', u'toss', u'coin']
[u'langer', u'kumbl', u'test', u'list']
[u'langer', u'issu', u'ash', u'warn']
[u'laser', u'track', u'commerci']
[u'local', u'road', u'death', u'compar']
[u'longreach', u'local', u'urg', u'offer', u'tsunami']
[u'luxemburgo', u'name', u'real', u'coach']
[u'charg', u'gold', u'coast']
[u'charg', u'riverland', u'slay']
[u'mansel', u'welcom', u'bicentenari']
[u'marin', u'life', u'centuri', u'recov']
[u'market', u'quiet', u'year', u'approach']
[u'mayor', u'issu', u'tsunami', u'challeng']
[u'molik', u'target', u'grand', u'slam', u'glori']
[u'australian', u'survivor', u'arriv', u'home', u'treatment']
[u'morient', u'plan', u'liverpool']
[u'murder', u'peacekeep', u'perman', u'memori']
[u'myskina', u'join', u'safin', u'race', u'number']
[u'nation', u'best', u'young', u'cricket', u'converg', u'hobart']
[u'navi', u'ship', u'leav', u'aceh']
[u'credit', u'growth', u'slow']
[u'year', u'time', u'spiritu', u'reflect', u'say']
[u'year', u'revel', u'rememb', u'tsunami', u'victim']
[u'year', u'parti', u'goer', u'invad', u'surfer']
[u'year', u'festiv', u'rememb', u'tsunami', u'victim']
[u'year', u'gong', u'british', u'olympian']
[u'year', u'usher', u'smoke']
[u'nightclub', u'kill', u'argentina']
[u'nightclub', u'toll', u'rise']
[u'kill', u'gaza', u'raid']
[u'polic', u'tell', u'expect', u'visit', u'princ', u'charl']
[u'slip', u'averag', u'higher']
[u'dead', u'tasmanian', u'hostel']
[u'pakistan', u'readi', u'spin', u'attack', u'woolmer']
[u'parliament', u'deadlock', u'delay', u'extend', u'south', u'korean']
[u'rise', u'loom', u'victorian', u'worker']
[u'penn', u'see', u'worth', u'stori', u'assassin']
[u'peopl', u'warn', u'check', u'chariti', u'collector', u'ident']
[u'philippoussi', u'reject', u'pressur']
[u'polic', u'fear', u'holiday', u'road', u'death']
[u'polic', u'promis', u'year', u'crackdown']
[u'polic', u'search', u'fatal']
[u'port', u'church', u'pray', u'tsunami', u'victim']
[u'probe', u'continu', u'fatal', u'hostel']
[u'public', u'donat', u'flow', u'tsunami', u'victim']
[u'public', u'get', u'boon', u'chariti', u'trek']
[u'public', u'warn', u'avoid', u'illeg', u'firework']
[u'minist', u'fear', u'worker', u'miss', u'phuket']
[u'smoker', u'remind', u'law']
[u'quetzalcoatl', u'retain', u'melbourn', u'hobart', u'lead']
[u'quiet', u'record', u'year', u'market']
[u'radic', u'iraqi', u'group', u'threaten', u'strike']
[u'rail', u'upgrad', u'melbourn', u'port']
[u'red', u'readi', u'chelsea', u'year', u'hangov']
[u'remov', u'firm', u'get', u'tsunami', u'effort']
[u'revel', u'paus', u'tsunami', u'victim']
[u'road', u'toll', u'gold', u'coast']
[u'rooney', u'match']
[u'safeti', u'regul', u'defend', u'uranium', u'transport', u'trial']
[u'saudi', u'forc', u'kill', u'suspect', u'qaeda', u'leader']
[u'scud', u'reject', u'pressur']
[u'servic', u'farewel', u'canberra', u'tsunami', u'victim']
[u'shire', u'tell', u'govt', u'woe']
[u'shire', u'fundrais', u'tsunami', u'victim']
[u'shoalhaven', u'get', u'tsunami', u'relief', u'effort']
[u'skandia', u'owner', u'face', u'repair']
[u'smoker', u'urg', u'butt', u'year']
[u'social', u'crisi', u'loom', u'tsunami', u'trauma', u'take', u'effect']
[u'sombr', u'vigil', u'replac', u'year', u'celebr']
[u'sore', u'bear', u'italian', u'smash']
[u'lanka', u'mourn', u'tsunami', u'toll', u'near']
[u'strauss', u'ash', u'threat', u'warn', u'langer']
[u'sydney', u'buyer', u'snap', u'south', u'coast', u'properti']
[u'sydney', u'polic', u'look', u'miss', u'tourist']
[u'taxi', u'compani', u'flag', u'rank', u'scheme']
[u'teen', u'die', u'horror', u'road', u'crash']
[u'thai', u'tsunami', u'death', u'toll']
[u'thousand', u'flock', u'newcastl', u'year', u'parti']
[u'tiger', u'dump', u'keeper', u'gambl']
[u'tourist', u'flock', u'coast', u'theme', u'park']
[u'townsvill', u'doctor', u'offer', u'tsunami', u'help']
[u'travel', u'agent', u'confirm', u'client', u'okay', u'tsunami']
[u'tsunami', u'death', u'toll', u'top']
[u'hospit', u'boat']
[u'stab', u'fight']
[u'unwant', u'pet', u'dump', u'shelter']
[u'uranium', u'ship', u'darwin', u'rail']
[u'deleg', u'assess', u'need', u'asia']
[u'public', u'donat', u'larg', u'sum', u'tsunami', u'victim']
[u'cyclon', u'watch']
[u'wheel', u'fortun', u'spin', u'kersten']
[u'wife', u'health', u'staffer', u'miss', u'phuket']
[u'wilkinson', u'hodgson', u'showdown']
[u'world', u'sport', u'ralli', u'help', u'tsunami', u'victim']
[u'youth', u'anti', u'cannabi', u'campaign', u'extend']
[u'youth', u'custodi', u'adelaid', u'chase']
[u'zimbabw', u'confid', u'success', u'test', u'return']
[u'kill', u'kashmir', u'year', u'parti', u'call']
[u'aftershock', u'continu', u'rattl', u'aceh']
[u'aceh', u'survivor', u'week', u'away']
[u'pour', u'indonesia']
[u'american', u'gordon', u'make', u'dakar', u'ralli', u'histori']
[u'ancic', u'llodra', u'hardcourt', u'champ']
[u'archiv', u'reveal', u'educ', u'boost']
[u'archiv', u'reveal', u'concern', u'colour']
[u'armi', u'chopper', u'relief', u'effort']
[u'aussi', u'runner', u'triumph', u'madrid']
[u'australian', u'effort', u'constant', u'review']
[u'australian', u'busi', u'urg', u'join', u'tsunami', u'relief']
[u'australia', u'free', u'trade', u'agreement', u'take', u'effect']
[u'australia', u'work', u'improv', u'intern']
[u'brave', u'polic', u'earn', u'prais', u'rescu']
[u'burma', u'rais', u'tsunami', u'toll']
[u'busi', u'welcom', u'trade', u'deal']
[u'cabinet', u'paper', u'brisban', u'flood', u'plan']
[u'canberra', u'resid', u'deep', u'tsunami', u'victim']
[u'clark', u'hop', u'test', u'bring', u'run']
[u'club', u'owner', u'arrest', u'dead', u'disco', u'blaze']
[u'conserv', u'group', u'call', u'uranium', u'mine', u'closur']
[u'crew', u'work', u'free', u'revel', u'stick', u'mineshaft']
[u'cyclon', u'traci', u'test', u'cabinet', u'experi', u'archiv']
[u'dalbi', u'death', u'push', u'road', u'toll', u'higher']
[u'darwin', u'airport', u'expans']
[u'death', u'toll', u'grow', u'world', u'rush', u'help']
[u'defiant', u'navratilova', u'say', u'barrier']
[u'director', u'deni', u'disco', u'ball', u'disappoint', u'revel']
[u'door', u'lock', u'dead', u'nightclub', u'blaze']
[u'dutch', u'secur', u'hopman', u'place']
[u'export', u'set', u'sail', u'tsunami', u'donat']
[u'hit', u'ferguson', u'rooney']
[u'fear', u'hold', u'miss', u'australian']
[u'lucki', u'escap', u'melbourn']
[u'gilbert', u'catch', u'guard', u'roddick', u'split']
[u'gile', u'say', u'england', u'improv']
[u'govt', u'archiv', u'reveal', u'whitlam', u'clash', u'treasuri']
[u'graphic', u'news', u'report', u'prompt', u'parent', u'warn']
[u'grief', u'mute', u'world', u'year', u'celebr']
[u'hewitt', u'hop', u'return', u'home', u'provid', u'tonic']
[u'hewitt', u'play', u'qualifi', u'adelaid']
[u'holiday', u'road', u'toll', u'rise']
[u'holiday', u'road', u'toll', u'rise']
[u'announc', u'tsunami', u'relief', u'match']
[u'amin', u'eye', u'northern', u'ireland', u'peac', u'role']
[u'india', u'bar', u'agenc', u'join', u'relief', u'effort']
[u'indian', u'toll', u'rais']
[u'indian', u'tsunami', u'survivor', u'lopsid']
[u'indonesia', u'enter', u'year', u'mourn']
[u'internet', u'site', u'aid', u'identif', u'tsunami']
[u'inzamam', u'miss', u'test']
[u'chief', u'want', u'dope', u'test']
[u'israel', u'kill', u'palestinian', u'gaza']
[u'jail', u'competit', u'aid', u'tsunami', u'appeal']
[u'leak', u'document', u'link', u'prozac', u'suicid', u'journal']
[u'impress', u'selector']
[u'lehmann', u'kasper', u'macgil', u'watson']
[u'die', u'fall', u'balconi']
[u'aliv', u'day', u'rubbl']
[u'marin', u'join', u'aceh', u'relief', u'effort']
[u'medicin', u'price', u'increas']
[u'melbourn', u'host', u'tsunami', u'fundrais', u'cricket', u'match']
[u'minist', u'laud', u'public', u'transport', u'success']
[u'nation', u'road', u'toll', u'continu', u'rise']
[u'navi', u'reach', u'devast', u'sumatran', u'town']
[u'law', u'address', u'water', u'recycl', u'problem']
[u'russian', u'dead', u'crash', u'latvia']
[u'korea', u'year', u'messag', u'urg', u'peac']
[u'north', u'warn', u'prepar', u'cyclon']
[u'road', u'toll', u'drop']
[u'aim', u'simplifi', u'tender', u'process']
[u'outlaw', u'henchoz', u'blast', u'benitez']
[u'plan', u'oper', u'ash', u'underway']
[u'expect', u'thai', u'tsunami', u'toll']
[u'prais', u'tsunami', u'generos', u'year', u'messag']
[u'polic', u'arrest', u'darwin', u'celebr']
[u'polit', u'erupt', u'power', u'price', u'hike']
[u'pollock', u'pass', u'test']
[u'pope', u'sadden', u'bueno', u'air', u'nightclub', u'death']
[u'pressur', u'build', u'lehmann']
[u'properti', u'price', u'boom', u'reach', u'rural', u'properti']
[u'qualifi', u'kick', u'hopman', u'action']
[u'queen', u'elizabeth', u'offer', u'sympathi', u'tsunami', u'victim']
[u'quetzalcoatl', u'claim', u'line', u'honour']
[u'record', u'year', u'prompt', u'brisban', u'airport', u'upgrad']
[u'rescuer', u'reach', u'revel', u'stick', u'mineshaft']
[u'rspca', u'call', u'desex']
[u'rule', u'chang', u'restrict', u'high', u'court', u'case']
[u'crowd', u'warn', u'best', u'behaviour']
[u'search', u'continu', u'caus', u'fatal', u'hostel']
[u'selector', u'dump', u'lehmann', u'test']
[u'seven', u'kill', u'iraqi', u'suicid', u'attack']
[u'seven', u'kill', u'somali', u'militia', u'clash']
[u'silica', u'exposur', u'halv', u'worker']
[u'sixer', u'stun', u'king']
[u'somali', u'tsunami', u'toll', u'climb']
[u'sombr', u'tone', u'year', u'celebr']
[u'souness', u'back', u'boumsong', u'king', u'defend']
[u'lanka', u'mourn', u'tsunami', u'victim']
[u'lanka', u'tsunami', u'refuge', u'camp', u'flood']
[u'strong', u'aftershock', u'record', u'sumatra']
[u'sudan', u'deal', u'pave', u'peac']
[u'sydney', u'hobart', u'scari', u'moment', u'say', u'veteran']
[u'aborigin', u'challeng', u'leader', u'issu']
[u'hotel', u'prepar', u'smoke', u'law']
[u'tasmanian', u'volunt', u'servic', u'tsunami', u'victim']
[u'kill', u'nepal', u'clash']
[u'thai', u'vigil', u'see', u'sombr', u'year']
[u'trust', u'administr', u'consid', u'heritag', u'build']
[u'tsunami', u'death', u'toll', u'near']
[u'arrest', u'drug', u'smuggl']
[u'behead', u'bodi', u'dump', u'baghdad']
[u'ugandan', u'presid', u'order', u'renew', u'attack', u'rebel']
[u'ukrain', u'resign']
[u'broaden', u'tortur', u'definit']
[u'increas', u'tsunami']
[u'marin', u'kill', u'iraq']
[u'sprinter', u'grime', u'suspend', u'year']
[u'stock', u'slip', u'post', u'second', u'year', u'gain']
[u'send', u'marin', u'lanka', u'relief', u'work']
[u'holiday', u'road', u'toll', u'reach']
[u'villa', u'everton', u'battl', u'beatti']
[u'volunt', u'polic', u'search', u'cairn']
[u'move', u'closer', u'smoke']
[u'whitlam', u'deni', u'support', u'militari', u'action']
[u'uranium', u'announc', u'shame']
[u'worker', u'charg', u'steal', u'hostel']
[u'world', u'class', u'rooney', u'get', u'better']
[u'kidnapp', u'narrowli', u'avoid', u'princesss', u'punch']
[u'allawi', u'predict', u'decis', u'year', u'iraq']
[u'alleg', u'robber', u'polic', u'chase']
[u'argentina', u'itali', u'hopman', u'round']
[u'armi', u'helicopt', u'leav', u'indonesia']
[u'armi', u'medic', u'head', u'tsunami', u'disast', u'zone']
[u'australia', u'grab', u'second', u'wicket']
[u'australian', u'tsunami', u'death', u'toll', u'rise']
[u'australia', u'pakistan', u'crumbl']
[u'condit', u'hamper', u'tsunami', u'worker']
[u'weather', u'hamper', u'lanka', u'effort']
[u'beach', u'visitor', u'urg', u'awar', u'nativ']
[u'broadbridg', u'wife', u'recount', u'moment', u'tsunami']
[u'brown', u'wheel', u'victori']
[u'bull', u'restrict', u'tiger', u'launceston']
[u'bull', u'thump', u'tiger', u'gain', u'doubl', u'bonus', u'point']
[u'bushfir', u'moreton', u'forc', u'camper']
[u'bush', u'order', u'flag', u'tribut', u'tsunami', u'victim']
[u'bushrang', u'bail', u'redback']
[u'canberra', u'doctor', u'prais', u'thai', u'medic', u'team']
[u'cancer', u'studi', u'bring', u'bleak', u'news', u'bush']
[u'bomb', u'attack', u'kill', u'iraqi', u'nation', u'guard']
[u'cole', u'keep', u'chelsea', u'titl', u'track']
[u'comedian', u'pick', u'peter', u'cook', u'world', u'comic']
[u'crew', u'volunt', u'scour', u'miss']
[u'crown', u'prosecutor', u'claim', u'perth']
[u'daniilidou', u'look', u'auckland']
[u'diseas', u'outbreak', u'lanka', u'india', u'watch']
[u'dog', u'sniff', u'drug', u'polic', u'oper']
[u'downer', u'polic', u'chief', u'visit', u'tsunami', u'area']
[u'dutch', u'secur', u'hopman', u'place']
[u'elbaradei', u'unchalleng', u'nuclear', u'watchdog', u'head']
[u'baradei', u'unoppos', u'nuclear', u'watchdog']
[u'fall', u'festiv', u'declar', u'success']
[u'farina', u'elia', u'make', u'solid', u'start', u'hardcourt', u'champ']
[u'festiv', u'folk']
[u'firefight', u'contain', u'bushfir', u'near', u'adelaid']
[u'firefight', u'monitor', u'overturn', u'fuel', u'tanker']
[u'firefight', u'save', u'perth', u'hous']
[u'footbal', u'wife', u'recount', u'moment', u'tsunami']
[u'drown', u'victorian', u'coast']
[u'fear', u'drown', u'victorian', u'coast']
[u'girl', u'seek', u'hijack']
[u'gazza', u'hospitalis', u'pneumonia', u'report']
[u'giza', u'pyramid', u'reopen', u'restor']
[u'govt', u'offici', u'kill', u'near', u'baghdad']
[u'grant', u'boost', u'chines', u'cultur', u'centr', u'develop']
[u'guantanamo', u'detaine', u'alleg', u'handcuff', u'tortur', u'report']
[u'hawk', u'thrash', u'pig', u'king', u'pirat', u'breaker']
[u'holiday', u'delay', u'ranger', u'audit']
[u'india', u'tsunami', u'death', u'toll', u'jump']
[u'insurg', u'crippl', u'iraqi', u'industri']
[u'isra', u'raid', u'undermin', u'palestinian', u'elect']
[u'isra', u'troop', u'pull', u'gaza', u'refuge', u'camp']
[u'japanes', u'princess', u'return', u'public']
[u'japan', u'pledg', u'million', u'tsunami', u'area']
[u'yacht', u'crawl', u'finish', u'line']
[u'lebanes', u'bakeri', u'deliber']
[u'lehmann', u'lead', u'redback', u'solid', u'total']
[u'charg', u'stand', u'polic']
[u'die', u'quad', u'bike', u'accid']
[u'recov', u'fall', u'shaft']
[u'martyn', u'win', u'mcgilvray', u'medal']
[u'want', u'milit', u'riyadh', u'suicid', u'bomber']
[u'murder', u'worker', u'hassan', u'award', u'irish', u'peac']
[u'deploy', u'boost', u'mosul', u'secur']
[u'word', u'island', u'tribe', u'fate']
[u'otway', u'fund', u'eas', u'log', u'phase']
[u'pakistan', u'bat', u'sydney']
[u'pakistan', u'collaps', u'australia', u'strike']
[u'pakistan', u'collaps', u'australia', u'strike']
[u'pakistan', u'implod']
[u'palestinian', u'accus', u'israel', u'poll', u'sabotag']
[u'player', u'pledg', u'chennai', u'win', u'tsunami', u'relief']
[u'urg', u'busi', u'deep', u'tsunami', u'victim']
[u'polic', u'catch', u'drink', u'diver', u'year']
[u'polic', u'continu', u'probe', u'fatal', u'hostel']
[u'polic', u'imperson', u'ransack', u'gold', u'coast', u'hous']
[u'polic', u'investig', u'assault']
[u'polic', u'minist', u'hail', u'drop', u'crime']
[u'polic', u'seek', u'help', u'fatal', u'dalbi']
[u'pont', u'back', u'spin', u'combin']
[u'pont', u'prais', u'matur', u'watson']
[u'port', u'macquari', u'death', u'bring', u'road', u'toll']
[u'rain', u'help', u'eas', u'reserv', u'threat']
[u'rebel', u'kill', u'colombia']
[u'road', u'safeti', u'panel', u'take', u'action', u'reduc', u'danger']
[u'russia', u'favourit', u'hopman']
[u'sieg', u'forc', u'peru', u'declar', u'state', u'emerg']
[u'singaporean', u'tsunami', u'convoy', u'leader', u'die']
[u'charg', u'drug', u'discoveri']
[u'lanka', u'confid', u'tourism', u'rebound']
[u'lankan', u'toll', u'near']
[u'alban', u'hous', u'damag', u'overnight', u'blaze']
[u'stosur', u'face', u'tough', u'task', u'sprem']
[u'sunshin', u'coast', u'charg', u'streak']
[u'sweden', u'finland', u'norway', u'hold', u'mourn']
[u'thailand', u'tsunami', u'death', u'toll', u'top']
[u'theft', u'forc', u'comt', u'dakar', u'stage']
[u'threaten', u'bird', u'risk']
[u'tiger', u'warrior', u'bushrang', u'host', u'clash']
[u'tourist', u'aliv', u'remot', u'indonesian', u'island']
[u'tsunami', u'grow', u'survivor', u'face', u'wait']
[u'tsunami', u'pledg', u'jump', u'billion']
[u'tsunami', u'caus', u'mental', u'health', u'catastroph']
[u'tsunami', u'recoveri', u'decad', u'annan']
[u'plan', u'lifetim', u'detent', u'terror', u'suspect']
[u'releas', u'detaine', u'iraq']
[u'soldier', u'kill', u'afghanistan']
[u'wakeboard', u'power', u'boat']
[u'warn', u'make', u'return', u'tsunami', u'chariti']
[u'warn', u'retir', u'tsunami', u'fundrais']
[u'wenger', u'warn', u'chelsea', u'gunner']
[u'windi', u'arriv', u'dayer']
[u'trial', u'doubl', u'uranium', u'transport']
[u'aceh', u'short', u'medic', u'equip']
[u'player', u'bodi', u'thailand']
[u'agenc', u'halt', u'tsunami', u'appeal']
[u'swimmer', u'rescu', u'perth', u'beach']
[u'seek', u'drug', u'donat', u'tsunami', u'victim']
[u'annan', u'visit', u'aceh', u'lanka']
[u'offer', u'tsunami', u'affect', u'student']
[u'aquaculturist', u'urg', u'cherabin', u'industri']
[u'argentinian', u'nightclub', u'blaze', u'toll', u'rise']
[u'arthur', u'baccanello', u'readi', u'adelaid', u'test']
[u'asia', u'begin', u'work', u'tsunami', u'warn']
[u'asian', u'economi', u'tip', u'endur', u'tsunami', u'turmoil']
[u'asian', u'tsunami', u'death', u'toll', u'pass']
[u'aussi', u'seat']
[u'aust', u'medic', u'begin', u'treat', u'tsunami', u'survivor']
[u'australia', u'seat', u'pakistan']
[u'australia', u'control', u'test']
[u'australia', u'pakistan']
[u'australian', u'kill', u'climb', u'accid']
[u'australian', u'bring', u'clean', u'water', u'aceh']
[u'australia', u'win', u'hopman', u'thriller']
[u'baccanello', u'arthur', u'adelaid']
[u'baccanello', u'bow', u'adelaid']
[u'bakhtiyari', u'famili', u'arriv', u'pakistan']
[u'beach', u'sign', u'review', u'drown']
[u'beatti', u'toffe', u'club', u'record', u'deal']
[u'blue', u'triumph']
[u'bomb', u'blast', u'near', u'allawi', u'baghdad', u'kill']
[u'breakthrough', u'centuri', u'skipper', u'pont']
[u'briton', u'birthday', u'earn', u'windfal']
[u'broadbridg', u'bodi', u'thailand']
[u'bushrang', u'strength', u'windi', u'match']
[u'cabbi', u'death', u'mark', u'grim', u'start', u'road', u'toll']
[u'cameraman', u'critic', u'wound', u'gaza', u'incurs']
[u'canada', u'confirm', u'second', u'case']
[u'canada', u'doubl', u'tsunami']
[u'cane', u'toad', u'infiltr', u'town']
[u'bomb', u'kill', u'near', u'allawi', u'baghdad']
[u'crash', u'put', u'hospit']
[u'celt', u'clear', u'scotland']
[u'child', u'traffic', u'fear', u'rais', u'aceh']
[u'contamin', u'risk', u'sydney', u'bore']
[u'cult', u'call', u'water', u'train', u'death']
[u'cyclon', u'raymond', u'cross', u'coast']
[u'demon', u'come', u'term', u'broadbridg', u'disappear']
[u'dept', u'defend', u'teacher', u'number']
[u'dfat', u'name', u'latest', u'tsunami', u'victim']
[u'downer', u'warn', u'toll', u'rise', u'despit', u'good', u'news']
[u'driver', u'surviv', u'collis', u'train']
[u'drop', u'catch', u'see', u'blue', u'scrape', u'home']
[u'emerg', u'servic', u'defend', u'chopper', u'safeti']
[u'experiment', u'treatment', u'save', u'rabi', u'patient']
[u'famili', u'struggl', u'cope', u'backpack', u'death']
[u'fear', u'hold', u'miss', u'cairn']
[u'ferdinand', u'leav', u'bolton']
[u'ban', u'place', u'await', u'weather']
[u'fire', u'rage', u'southern']
[u'pictur', u'leupung']
[u'fretign', u'win', u'stage', u'dakar', u'ralli', u'caldecott']
[u'frustrat', u'grow', u'effort', u'ramp']
[u'bottl', u'blame', u'shop']
[u'generous', u'fan', u'deep']
[u'girl', u'save', u'tourist', u'rais', u'tsunami', u'warn']
[u'golovin', u'cruis', u'gold', u'coast', u'victori']
[u'govt', u'urg', u'open', u'door', u'tsunami', u'victim']
[u'grant', u'help', u'long', u'term', u'unemploy']
[u'hectar', u'conserv', u'park', u'burn', u'scrub']
[u'hewitt', u'hit', u'dung', u'court']
[u'hewitt', u'plot', u'rank', u'charg']
[u'high', u'cut', u'women', u'marriag', u'prospect']
[u'hoaxer', u'arrest', u'tsunami', u'death', u'notif']
[u'holiday', u'road', u'toll', u'rise']
[u'hundr', u'suspect', u'insurg', u'detain', u'iraq']
[u'retir', u'monti']
[u'incumb', u'woman', u'croatian', u'presid']
[u'india', u'untouch', u'gather', u'tsunami', u'dead']
[u'indonesia', u'offer', u'thank', u'tsunami', u'donat']
[u'indonesia', u'discuss', u'foreign', u'troop', u'movement']
[u'isra', u'renew', u'incurs', u'rocket', u'attack']
[u'kalli', u'smith', u'south', u'africa', u'solid', u'start']
[u'kaneria', u'fin', u'match', u'obscen', u'languag']
[u'lara', u'clear', u'play', u'tsunami', u'relief', u'match']
[u'yacht', u'pull', u'hobart']
[u'lightn', u'blame', u'port', u'vincent', u'grassfir']
[u'macgil', u'prais', u'inspir', u'coach']
[u'road', u'statist']
[u'die', u'roll']
[u'miss', u'alic', u'boy', u'safe']
[u'miss', u'spark', u'polic', u'search']
[u'miss', u'footbal', u'team', u'mat', u'offer', u'counsel']
[u'molik', u'give', u'australia', u'earli', u'advantag']
[u'monsoon', u'chao', u'hamper', u'lankan', u'effort']
[u'like', u'downer', u'say']
[u'australian', u'team', u'tsunami', u'victim']
[u'moreton', u'island', u'forc', u'camper', u'evacu']
[u'women', u'like', u'undergo', u'smear', u'follow']
[u'motorcycl', u'accid', u'rais', u'road', u'toll']
[u'neurosurgeon', u'resign', u'put', u'govt', u'pressur']
[u'windi', u'coach', u'play', u'lara', u'clash']
[u'road', u'toll', u'reach', u'record']
[u'order', u'slowli', u'return', u'thai', u'beach', u'resort']
[u'pair', u'injur', u'boat', u'mishap']
[u'pakistan']
[u'pakistan', u'claim', u'second', u'wicket']
[u'peru', u'deni', u'attack', u'rebel', u'immin']
[u'polic', u'fear', u'miss', u'devonport']
[u'polic', u'investig', u'tsunami', u'websit']
[u'polic', u'return', u'holidaymak']
[u'polic', u'kill', u'peruvian', u'sieg', u'shoot']
[u'polic', u'probe', u'lyndhurst', u'explos']
[u'polic', u'probe', u'boat', u'blaze']
[u'polic', u'search', u'adelaid', u'home', u'intrud']
[u'polic', u'tackl', u'hoon']
[u'pont', u'reliev', u'break', u'centuri', u'drought']
[u'power', u'problem', u'put', u'monument', u'risk', u'say']
[u'power', u'restor', u'home']
[u'protest', u'ralli', u'gunnamatta', u'beach', u'sewag']
[u'public', u'servant', u'urg', u'infrastructur', u'spend']
[u'rain', u'flood', u'hinder', u'tsunami', u'relief', u'effort']
[u'ralli', u'demand', u'argentin', u'mayor', u'quit', u'dead']
[u'cross', u'plan', u'long', u'term', u'tsunami', u'relief']
[u'relief', u'effort', u'fall', u'indonesia']
[u'relief', u'worker', u'reach', u'indian', u'island']
[u'religi', u'leader', u'debat', u'god', u'role', u'tsunami']
[u'retail', u'decri', u'box', u'trade']
[u'relief', u'fund', u'generat']
[u'search', u'miss', u'boy']
[u'search', u'resum', u'miss', u'victorian']
[u'servic', u'rememb', u'thai', u'tsunami', u'victim']
[u'issu', u'sever', u'storm', u'warn']
[u'shark', u'hook', u'design', u'turtl', u'friend']
[u'shark', u'menac', u'south', u'coast']
[u'slovak', u'republ', u'level', u'australia']
[u'lanka', u'effort', u'gather', u'pace']
[u'lankan', u'fishermen', u'fear', u'tsunami']
[u'storm', u'power', u'home']
[u'stosur', u'hewitt', u'action', u'gold', u'coast']
[u'stosur', u'sink', u'fourth', u'seed', u'sprem']
[u'studi', u'consid', u'fish', u'releas', u'surviv']
[u'suicid', u'bomber', u'kill', u'iraqi', u'troop']
[u'sydney', u'priest', u'open', u'aceh', u'orphanag']
[u'tear', u'pae', u'survey', u'tsunami', u'damag']
[u'teen', u'drown', u'river', u'accid']
[u'territorian', u'begin', u'fundrais', u'tsunami', u'victim']
[u'thailand', u'cut', u'miss', u'person', u'list']
[u'aceh', u'rebel', u'clash', u'militari']
[u'shoot', u'dead', u'aceh', u'report']
[u'toddler', u'attack', u'rottweil']
[u'tsunami', u'fear', u'spark', u'panic', u'east', u'timor']
[u'tsunami', u'good', u'samaritan', u'arrest', u'return', u'home']
[u'tsunami', u'hurt', u'generat']
[u'hurt', u'york', u'peninsula', u'crash']
[u'concert', u'tsunami', u'victim']
[u'union', u'seek', u'meet', u'dairi', u'redund']
[u'unspectacular', u'year', u'tip', u'european', u'stock']
[u'helicopt', u'airlift', u'disast', u'survivor', u'aceh']
[u'soldier', u'kill', u'afghan', u'ambush']
[u'vaughan', u'take', u'hospit', u'finger', u'injuri']
[u'victoria', u'defend', u'rescu', u'system', u'drown']
[u'group', u'continu', u'collect', u'tsunami', u'victim']
[u'wasim', u'akram', u'back', u'england', u'ash', u'chanc']
[u'wilkinson', u'edg', u'battl', u'england', u'halv']
[u'prepar', u'uranium', u'rail', u'transport', u'trial']
[u'woman', u'die', u'intersect', u'crash']
[u'worker', u'slow', u'inroad', u'logjam']
[u'world', u'bank', u'chief', u'signal', u'reign']
[u'world', u'vision', u'reject', u'donat', u'club']
[u'zarqawi', u'follow', u'claim', u'nation', u'guard', u'attack']
[u'briton', u'fear', u'kill', u'tsunami', u'straw']
[u'abba', u'condemn', u'milit', u'rocket', u'attack']
[u'aceh', u'effort', u'hit', u'fresh', u'snag']
[u'aceh', u'airport', u'reopen', u'accid']
[u'aceh', u'refuge', u'camp', u'swell', u'trickl']
[u'acoust', u'sens', u'save', u'anim', u'tsunami']
[u'remain', u'despit', u'summer', u'rain']
[u'adelaid', u'woman', u'bodi', u'thailand']
[u'agricultur', u'firm', u'donat', u'tsunami', u'relief']
[u'agenc', u'work', u'reduc', u'overhead']
[u'effort', u'turn', u'health', u'rebuild']
[u'airport', u'bodi', u'question', u'merit', u'rapid', u'respons']
[u'albani', u'rainfal', u'hit', u'year']
[u'fin', u'sale', u'year', u'festiv']
[u'back', u'claim', u'kakadu', u'servic', u'suffer']
[u'warn', u'specialist', u'resign']
[u'annan', u'announc', u'manag', u'shake']
[u'aust', u'medic', u'team', u'aceh']
[u'armi', u'chopper', u'tsunami', u'sumatra']
[u'aussi', u'complet', u'control']
[u'aussi', u'thriller', u'hit', u'paydirt', u'debut']
[u'australia', u'control', u'test']
[u'australian', u'team', u'gather', u'deaflymp']
[u'australia', u'fast', u'track', u'visa', u'tsunami', u'victim']
[u'babi', u'unhurt', u'chase', u'crash']
[u'baghdad', u'governor', u'assassin']
[u'baker', u'finch', u'consid', u'comeback']
[u'bakhtiyari', u'vanish', u'arriv', u'pakistan']
[u'bendigo', u'polic', u'happi', u'start']
[u'birmingham', u'hand', u'savag', u'blow']
[u'blake', u'wrap', u'hopman']
[u'boy', u'death', u'prompt', u'polic', u'warn']
[u'boy', u'death', u'rais', u'road', u'toll']
[u'bremer', u'invas', u'prompt', u'polic', u'concern']
[u'bunburi', u'driver', u'clock']
[u'burma', u'tsunami', u'toll', u'question']
[u'bush', u'predecessor', u'lead', u'fundrais', u'drive']
[u'govt', u'ship', u'transport', u'tsunami', u'relief']
[u'worker', u'compo', u'review']
[u'call', u'crackdown', u'illeg', u'abalon', u'export']
[u'cancer', u'fund', u'beat', u'smoke', u'enforc']
[u'bomb', u'explod', u'baghdad']
[u'casa', u'consid', u'night', u'helicopt', u'flight', u'review']
[u'castlemain', u'miss', u'tsunami']
[u'child', u'traffic', u'concern', u'tsunami', u'woe']
[u'coast', u'helicopt', u'plan', u'unwork', u'minist']
[u'communiti', u'urg', u'nation', u'park']
[u'commut', u'travel']
[u'cowra', u'resid', u'fight', u'hour', u'polic', u'station']
[u'crush', u'injuri', u'pose', u'post', u'tsunami', u'challeng']
[u'dajka', u'fold']
[u'darwin', u'orchestra', u'await', u'fund', u'review']
[u'demon', u'griev', u'broadbridg']
[u'dent', u'down', u'ginepri', u'adelaid']
[u'downer', u'keelti', u'assess', u'tsunami', u'relief']
[u'downer', u'view', u'devast', u'thailand']
[u'drink', u'drive', u'messag', u'sink']
[u'dual', u'chamber', u'pacemak', u'worth', u'cost', u'studi']
[u'dusti', u'tourist', u'threaten', u'delic', u'david']
[u'elder', u'man', u'death', u'think', u'suspici']
[u'emerton', u'use', u'head', u'deni', u'charlton']
[u'export', u'hope', u'resum', u'saudi', u'sheep', u'trade']
[u'extra', u'polic', u'monitor', u'holiday', u'traffic']
[u'famili', u'pray', u'miss', u'mcgradi', u'staffer', u'return']
[u'famili', u'rescu', u'derwent', u'river']
[u'farewel', u'tsunami', u'relief', u'concert']
[u'farmer', u'feder', u'predict', u'tough', u'year', u'ahead']
[u'father', u'lace', u'jogger', u'cancer', u'fundrais']
[u'figur', u'highlight', u'club', u'plight']
[u'firefight', u'watch', u'moreton', u'blaze']
[u'firm', u'offer', u'donat', u'tsunami', u'sensor']
[u'flash', u'gordon', u'take', u'dakar', u'stage']
[u'forb', u'ambul', u'offic', u'reliev']
[u'charg', u'seizur']
[u'gallop', u'offer', u'expertis', u'effort']
[u'ganguli', u'lead', u'asian', u'murali']
[u'prais', u'australian', u'generos']
[u'gilchrist', u'blast', u'pakistan', u'punter', u'near', u'doubl']
[u'gilchrist', u'take', u'game', u'level']
[u'goulburn', u'valley', u'join', u'tsunami', u'effort']
[u'govt', u'offer', u'compens', u'privat', u'compani']
[u'govt', u'pledg', u'ongo', u'tsunami', u'australian']
[u'govt', u'reject', u'claim', u'servic', u'suffer', u'kakadu']
[u'govt', u'say', u'allow', u'adopt', u'tsunami']
[u'govt', u'urg', u'scrap', u'wetland', u'polici']
[u'govt', u'wari', u'terrorist', u'capitalis', u'tsunami']
[u'heatwav', u'warn', u'issu']
[u'heroin', u'traffick', u'jail', u'year']
[u'hewitt', u'put', u'court', u'gripe', u'asid']
[u'hewitt', u'start', u'summer', u'shaki', u'adelaid']
[u'holiday', u'road', u'toll', u'rise']
[u'holiday', u'road', u'toll', u'rise']
[u'illawarra', u'face', u'harsher', u'water', u'ban']
[u'indian', u'tribespeopl', u'chopper']
[u'india', u'turn', u'island']
[u'indonesia', u'tighten', u'secur', u'tsunami', u'meet']
[u'indonesia', u'town', u'inland']
[u'injur', u'pratt', u'pull', u'gold', u'coast']
[u'injur', u'pratt', u'pull', u'gold', u'coast', u'event']
[u'insurg', u'target', u'allawi', u'attack', u'increas']
[u'investig', u'continu', u'bondi', u'blast']
[u'invinc', u'danni', u'song', u'scotland']
[u'iraqi', u'truck', u'bomb', u'kill']
[u'isra', u'troop', u'kill', u'seven', u'palestinian']
[u'jankov', u'open', u'account', u'auckland']
[u'kakadu', u'entri', u'pressur', u'park', u'oper']
[u'kaneria', u'want', u'warn', u'game', u'best']
[u'katherin', u'doctor', u'lankan', u'villag', u'destroy']
[u'koizumi', u'flag', u'chang', u'japan', u'pacif']
[u'kuwait', u'hold', u'soldier', u'plan', u'attack']
[u'lebanes', u'hostag', u'iraq', u'plead', u'freedom']
[u'lennox', u'head', u'popular', u'year', u'parti', u'peopl']
[u'lifesav', u'expect', u'perth', u'beach', u'danger', u'eas']
[u'liverpool', u'clip', u'canari', u'wing']
[u'llewellyn', u'play', u'claim', u'crisi', u'royal']
[u'madonna', u'ritchi', u'renew', u'vow']
[u'safe', u'mimosa', u'rock', u'search']
[u'plead', u'guilti', u'hoax', u'email']
[u'remain', u'serious', u'bash']
[u'court', u'incid']
[u'manufactur', u'sector', u'receiv', u'year', u'boost']
[u'meander', u'river', u'irrig', u'restrict', u'place']
[u'mix', u'signal', u'weigh', u'stock']
[u'moral', u'high', u'solomon', u'mission']
[u'australian', u'arriv', u'aceh']
[u'moreton', u'island', u'bushfir', u'burn']
[u'napster', u'shed', u'pirat', u'imag', u'nasdaq', u'list']
[u'year', u'revel', u'drift', u'away', u'byron']
[u'need', u'say', u'powel']
[u'north', u'korea', u'sell', u'weapon', u'extremist', u'group']
[u'broker', u'deal', u'privat', u'compani']
[u'holiday', u'road', u'toll', u'hit']
[u'ntini', u'langeveldt', u'destroy', u'england']
[u'confirm', u'tsunami', u'death']
[u'ocean', u'polar', u'express', u'million']
[u'orang', u'council', u'say', u'water', u'contamin']
[u'oversea', u'adopt', u'unsuit', u'tsunami', u'orphan']
[u'peruvian', u'rebel', u'leader', u'arrest', u'negoti']
[u'peruvian', u'town', u'curfew', u'sieg', u'continu']
[u'play', u'final', u'underway']
[u'polic', u'appeal', u'bushfir', u'vigil']
[u'polic', u'appeal', u'inform', u'attack']
[u'polic', u'continu', u'tsunami', u'site', u'probe']
[u'polic', u'crash', u'victim']
[u'polic', u'pleas', u'driver', u'road']
[u'polic', u'seek', u'info', u'clair', u'assault']
[u'polic', u'seek', u'inform', u'dalbi']
[u'pont', u'gilchrist', u'drive', u'home', u'advantag']
[u'powel', u'reinforc', u'support', u'tsunami', u'relief']
[u'prayer', u'servic', u'reflect', u'tsunami', u'victim']
[u'protea', u'england', u'collaps']
[u'push', u'highlight', u'outback', u'tourism', u'benefit']
[u'quiet', u'start', u'year', u'south', u'east']
[u'quiksilv', u'eye', u'equip', u'maker']
[u'race', u'save', u'tsunami', u'trap', u'dolphin']
[u'rain', u'forc', u'delay']
[u'rain', u'hamper', u'locust', u'spot']
[u'rain', u'wash', u'morn', u'session']
[u'rapid', u'respons', u'team', u'strengthen', u'airport', u'secur']
[u'rare', u'fight']
[u'real', u'claim', u'brazil', u'star', u'robinho']
[u'redknapp', u'look', u'beat', u'drop']
[u'region', u'urg', u'tsunami', u'relief', u'effort']
[u'rescu', u'chopper', u'boss', u'defend', u'pilot']
[u'review', u'plan', u'drink', u'drive', u'campaign']
[u'river', u'death', u'prompt', u'polic', u'warn']
[u'riverland', u'pilot', u'join', u'push', u'night', u'vision']
[u'roch', u'coach', u'feder']
[u'rover', u'longev', u'extend', u'mar', u'explor']
[u'club', u'worker', u'await', u'news']
[u'rspca', u'take', u'duck', u'hunt']
[u'russia', u'down', u'safin', u'slump']
[u'lout', u'forc', u'beer', u'sale', u'rethink']
[u'search', u'fail', u'miss']
[u'search', u'resum', u'miss', u'victorian']
[u'second', u'townsvill', u'doctor', u'head', u'tsunami']
[u'renew', u'plea', u'storm', u'prepar']
[u'share', u'market', u'open', u'year', u'record', u'high']
[u'sheryl', u'crow', u'plan', u'album']
[u'shopper', u'benefit', u'harri', u'scarf', u'flood']
[u'children', u'miss', u'emot', u'cue']
[u'sikh', u'communiti', u'continu', u'tsunami', u'relief', u'effort']
[u'snitzel', u'draw', u'middl', u'barrier', u'magic', u'million']
[u'snitzel', u'shoo', u'magic', u'million', u'say', u'rival']
[u'somali', u'tsunami', u'victim', u'prove', u'hard', u'reach']
[u'south', u'east', u'dig', u'deep', u'tsunami', u'victim']
[u'lanka', u'cricket', u'tour', u'disast', u'zone']
[u'lankan', u'high', u'commission', u'prais', u'aust']
[u'lanka', u'rebuild', u'campaign', u'rais']
[u'stem', u'cell', u'revers', u'parkinson', u'symptom', u'monkey']
[u'storm', u'leav', u'thousand', u'power']
[u'stormi', u'condit', u'suit', u'sydney', u'hobart']
[u'student', u'defend', u'sell', u'tsunami', u'relief']
[u'student', u'assess', u'newcastl', u'prospect']
[u'suspect', u'thief', u'drive', u'polic']
[u'suspici', u'site', u'author', u'act', u'good', u'faith']
[u'teen', u'injur', u'breath', u'attempt']
[u'tenni', u'australia', u'hit', u'hewitt', u'critic']
[u'thailand', u'sack', u'chief', u'meteorologist']
[u'thorp', u'hurri', u'pool', u'return']
[u'thousand', u'protest', u'fatal', u'club']
[u'briton', u'kill', u'baghdad', u'blast']
[u'tilba', u'chip', u'tsunami', u'appeal']
[u'tram', u'extend', u'dockland', u'precinct']
[u'trot', u'club', u'financi', u'shatter']
[u'truck', u'collis', u'caus', u'delay']
[u'tsunami', u'donor', u'fulfil', u'pledg']
[u'tsunami', u'relief', u'gather', u'momentum']
[u'tsunami', u'victim', u'townsvill', u'suppli', u'medicin']
[u'uluru', u'host', u'australia', u'launch']
[u'union', u'air', u'doubt', u'teacher', u'boost']
[u'unit', u'telstra', u'sale', u'senat']
[u'hopman', u'rubber']
[u'wait', u'near', u'person', u'alarm']
[u'water', u'plant', u'problem', u'prompt', u'restrict']
[u'west', u'bank', u'settler', u'clash', u'isra', u'troop']
[u'western', u'athlet', u'prepar', u'deaflymp']
[u'western', u'dig', u'deep', u'tsunami', u'victim']
[u'west', u'indi', u'keen', u'blow', u'away', u'cobweb']
[u'wilcannia', u'welcom', u'liquid', u'gold']
[u'wildcat', u'coach', u'fin', u'courtsid', u'outburst']
[u'wild', u'oat', u'secur', u'pittwat', u'coff', u'line', u'honour']
[u'resourc', u'reject', u'takeov']
[u'wollongong', u'resid', u'pray', u'tsunami', u'victim']
[u'world', u'bank', u'coordin', u'long', u'term', u'tsunami']
[u'young', u'drink', u'driver', u'spark', u'polic', u'concern']
[u'firefight', u'battl', u'sydney', u'blaze']
[u'abandon', u'shaft', u'face', u'inspect', u'mishap']
[u'abba', u'denounc', u'zionist', u'enemi']
[u'academ', u'ponder', u'tsunami', u'polit', u'impact']
[u'accc', u'call', u'anti', u'dump', u'chang']
[u'accc', u'urg', u'investig', u'shipbuild', u'forg']
[u'accus', u'palm', u'island', u'rioter', u'jail', u'breach']
[u'aceh', u'clean', u'month']
[u'aceh', u'rebel', u'deni', u'attack', u'relief', u'convoy']
[u'african', u'mahogani', u'trial', u'plantat', u'plan']
[u'effort', u'australian', u'doctor', u'requir']
[u'algerian', u'milit', u'kill', u'ambush']
[u'allianc', u'foster', u'businesswomen', u'opportun']
[u'ambul', u'servic', u'consid', u'helicopt', u'tender']
[u'aussi', u'complet', u'whitewash']
[u'aust', u'quak', u'agenc', u'admit', u'limit']
[u'australia', u'verg', u'victori']
[u'aust', u'tsunami', u'base', u'malaysia']
[u'aust', u'tsunami', u'donat', u'pass']
[u'author', u'target', u'wagga', u'locust', u'hatch']
[u'bekel', u'strike', u'tragedi', u'fiance', u'die']
[u'shop', u'squeez', u'corner', u'store']
[u'board', u'stand', u'foreign', u'fruit', u'picker', u'plan']
[u'boss', u'determin', u'seiz', u'million', u'chanc']
[u'breakthrough', u'macgil', u'watson']
[u'builder', u'push', u'tsunami', u'barrow']
[u'burma', u'relat', u'unscath', u'say']
[u'burma', u'remain', u'quiet', u'tsunami', u'effect']
[u'burn', u'program', u'mind', u'bird', u'habitat']
[u'bushrang', u'thrash', u'rusti', u'windi']
[u'busi', u'usual', u'clinic', u'australian']
[u'busker', u'rais', u'fund', u'tsunami', u'victim']
[u'buyer', u'come', u'wide', u'esper', u'cattl']
[u'caldecott', u'win', u'dakar', u'stage', u'second', u'overal']
[u'canberra', u'univers', u'round', u'offer']
[u'bomb', u'target', u'iraq', u'polic', u'academi']
[u'casa', u'tighten', u'check', u'chopper', u'pilot']
[u'caus', u'nation', u'park', u'blaze', u'unknown']
[u'cave', u'enthusiast', u'flock', u'hobart', u'confer']
[u'church', u'collect', u'fund', u'tsunami', u'victim']
[u'club', u'tsunami', u'effort', u'reach', u'near']
[u'coastal', u'green', u'belt', u'protect', u'surg']
[u'concern', u'tsunami', u'generat', u'increas']
[u'coria', u'level', u'hopman']
[u'council', u'back', u'mobil', u'phone', u'base']
[u'council', u'offer', u'drink', u'water', u'assur']
[u'council', u'seek', u'tourism', u'board', u'member']
[u'court', u'rule', u'pimp', u'caption', u'complimentari']
[u'crocodil', u'countri', u'rescu', u'challeng', u'polic']
[u'crocodil', u'sight', u'scar', u'surfer']
[u'cycl', u'australia', u'appoint', u'high', u'perform']
[u'danc', u'showcas', u'piqu']
[u'danish', u'leav', u'dayer']
[u'darfur', u'rebel', u'threaten', u'commiss', u'boycott']
[u'dept', u'reject', u'perman', u'teacher', u'shortag', u'claim']
[u'dfat', u'lower', u'number', u'miss', u'australian']
[u'diet', u'prove', u'hard', u'stick']
[u'sampl', u'take', u'miss', u'victorian', u'home']
[u'test', u'confirm', u'rise', u'australian', u'toll']
[u'doctor', u'claim', u'africa', u'aid', u'drug', u'trial', u'flaw']
[u'driver', u'ask', u'rememb', u'tasman', u'bridg', u'disast']
[u'drogba', u'destroy', u'chelsea', u'pull', u'clear']
[u'drought', u'relief', u'moni', u'unspent']
[u'economist', u'offic', u'evacu']
[u'tree', u'safe', u'predatori', u'beetl']
[u'expert', u'urg', u'chicken', u'vaccin', u'adult']
[u'fan', u'snap', u'tsunami', u'fundrais', u'ticket']
[u'fatal', u'hous', u'suspici']
[u'fifield', u'plan', u'resum']
[u'firefight', u'save', u'tower', u'bushfir']
[u'foot', u'injuri', u'rule', u'clark', u'seri']
[u'forb', u'ralli', u'nation', u'caravan', u'event']
[u'forens', u'team', u'reopen', u'bodi', u'bag']
[u'freight', u'firm', u'cop', u'fuel', u'spill', u'fine']
[u'fund', u'help', u'realis', u'eudunda', u'growth', u'plan']
[u'gaudio', u'stun', u'french', u'prodigi']
[u'gayndah', u'mundubberra', u'canker', u'surveil', u'near']
[u'gere', u'urg', u'palestinian', u'vote']
[u'german', u'press', u'home', u'hopman', u'challeng']
[u'goldfield', u'join', u'tsunami', u'relief', u'effort']
[u'govt', u'overhaul', u'worker', u'compo', u'payment']
[u'grammi', u'honour', u'zeppelin', u'joplin']
[u'graphic', u'novel', u'pioneer', u'eisner', u'die']
[u'group', u'maintain', u'rescu', u'chopper', u'fight']
[u'group', u'monitor', u'coal', u'mine', u'green', u'effort']
[u'higher', u'price', u'eas', u'sugar', u'industri', u'woe']
[u'hospit', u'crisi', u'forc', u'patient', u'interst']
[u'hostel', u'manag', u'face', u'arson', u'murder', u'charg']
[u'howard', u'design', u'nation', u'mourn']
[u'howard', u'touch', u'jakarta', u'tsunami', u'summit']
[u'hunter', u'grape', u'crop', u'look', u'promis']
[u'hunter', u'medic', u'suppli', u'leav', u'lanka']
[u'indonesia', u'roll', u'heavi', u'secur', u'tsunami']
[u'indonesia', u'thank', u'tsunami', u'generos']
[u'iraq', u'commit', u'elect', u'date']
[u'iraqi', u'prison', u'abus', u'continu', u'scandal', u'break']
[u'iraqi', u'protest', u'poll', u'decis']
[u'iraqi', u'challeng', u'placement', u'aust', u'poll']
[u'israel', u'reprimand', u'offic', u'milit', u'death']
[u'katherin', u'elder', u'target', u'anti', u'social', u'behaviour']
[u'langeveldt', u'beat', u'pain', u'humbl', u'england']
[u'libya', u'order', u'telescop']
[u'local', u'want', u'tini', u'town', u'histor', u'open']
[u'mackay', u'council', u'tsunami', u'donat']
[u'charg', u'avondal', u'drug', u'raid']
[u'media', u'person', u'face', u'discrimin', u'complaint']
[u'melbourn', u'welcom', u'australia', u'deaflymp', u'team']
[u'mine', u'sector', u'drag', u'market']
[u'miss', u'coupl', u'dinghi']
[u'miss', u'safe', u'australia']
[u'mix', u'respons', u'council', u'work', u'hour', u'plan']
[u'monti', u'confirm', u'heineken', u'classic']
[u'monument', u'blunder', u'fire', u'video', u'decis']
[u'detail', u'emerg', u'miss', u'case']
[u'water', u'treatment', u'equip', u'go', u'indonesia']
[u'mother', u'honour', u'daughter', u'miss', u'tsunami']
[u'mourner', u'farewel', u'cricket', u'kill', u'lankan']
[u'mourner', u'farewel', u'cricket', u'kill', u'tsunami']
[u'eye', u'second', u'devonport']
[u'start', u'tsunami', u'appeal']
[u'yarra', u'boat', u'servic', u'begin']
[u'consid', u'tsunami', u'victim']
[u'sailor', u'beat', u'canberran', u'regatta']
[u'opposit', u'criticis', u'govt', u'park', u'plan']
[u'nurs', u'step', u'industri', u'action', u'disput']
[u'obes', u'decreas', u'children', u'qualiti', u'life']
[u'knievel', u'pimp', u'court', u'rule']
[u'kill', u'hous', u'blaze']
[u'paint', u'auction', u'rais', u'fund', u'hospit']
[u'pair', u'death', u'south', u'east', u'road']
[u'pakistan', u'australia', u'paltri', u'chase']
[u'pakistan', u'steadi']
[u'park', u'law', u'offer', u'nativ', u'titl', u'certainti']
[u'peru', u'sieg', u'end', u'rebel', u'leader', u'arrest']
[u'back', u'plan', u'saudi', u'live', u'sheep', u'trade', u'resumpt']
[u'pinochet', u'rule', u'face', u'right', u'charg']
[u'plan', u'afoot', u'weather', u'alic', u'airport', u'runway']
[u'hesit', u'asian', u'debt', u'freez']
[u'join', u'world', u'leader', u'tsunami', u'summit']
[u'urg', u'press', u'burma', u'tsunami', u'damag']
[u'polic', u'fake', u'loui', u'vuitton', u'canva']
[u'polic', u'hunt', u'servic', u'station', u'arm', u'bandit']
[u'polic', u'seek', u'shepparton', u'assault', u'wit']
[u'powel', u'hop', u'improv', u'imag', u'muslim']
[u'powel', u'shock', u'scale', u'destruct']
[u'polic', u'renew', u'plea', u'driver', u'obey', u'law']
[u'question', u'rais', u'council', u'tender', u'plan']
[u'racv', u'want', u'brake', u'countri', u'road', u'toll']
[u'rain', u'hamper', u'lanka', u'relief']
[u'rann', u'call', u'urgent', u'climat', u'chang', u'meet']
[u'region', u'hop', u'wetter', u'earli']
[u'remov', u'firm', u'inund', u'tsunami', u'relief']
[u'report', u'highlight', u'northern', u'river', u'incom', u'woe']
[u'research', u'focus', u'feral', u'deer', u'problem']
[u'rice', u'processor', u'consid', u'tsunami']
[u'riverina', u'search', u'phuket', u'miss', u'sister']
[u'russia', u'hopman']
[u'rusti', u'moya', u'paradorn', u'chennai']
[u'schu', u'donat', u'million', u'tsunami', u'fund']
[u'schumach', u'donat', u'million', u'tsunami', u'fund']
[u'search', u'resum', u'elder', u'coupl', u'miss']
[u'rescu', u'radio', u'vandal', u'draw', u'polic']
[u'seed', u'safe', u'gold', u'coast']
[u'sell', u'hit', u'technolog', u'stock']
[u'shift', u'halv', u'orang', u'electrolux', u'factori']
[u'shoaib', u'doubt', u'chariti', u'match']
[u'sister', u'town', u'plan', u'moot', u'tsunami', u'affect', u'region']
[u'sixer', u'shoot', u'bullet']
[u'smuggler', u'heroin', u'puppi', u'belli', u'polic']
[u'snake', u'drug', u'seiz', u'applecross', u'raid']
[u'south', u'africa', u'strike', u'earli', u'declar']
[u'spam', u'king', u'agre', u'suspend', u'bulk', u'email']
[u'spin', u'twin', u'shine']
[u'stage', u'spin', u'twin', u'shine']
[u'star', u'pledg', u'million', u'tsunami', u'victim']
[u'state', u'cooper', u'seek', u'stop', u'illeg', u'abalon']
[u'strong', u'respons', u'build', u'societi', u'tsunami', u'appeal']
[u'sunshin', u'coast', u'join', u'tsunami', u'relief', u'effort']
[u'swede', u'johansson', u'enqvist', u'advanc', u'adelaid']
[u'sydney', u'council', u'tsunami', u'effort']
[u'tassi', u'tiger', u'fossil', u'kimberley']
[u'tear', u'bartoli', u'overcom', u'pain', u'barrier', u'auckland']
[u'thai', u'govt', u'tsunami', u'effort']
[u'soldier', u'kill', u'iraq']
[u'seed', u'safe', u'gold', u'coast']
[u'townsvill', u'soldier', u'head', u'tsunami', u'devast']
[u'tsunami', u'effort', u'make', u'extraordinari', u'progress']
[u'tsunami', u'increas', u'threat', u'wildlif']
[u'tsunami', u'survivor', u'save', u'day', u'adrift']
[u'tuna', u'fisher', u'season', u'assess']
[u'want', u'debt', u'relief', u'tsunami', u'countri']
[u'deni', u'tsunami', u'respons', u'lack']
[u'express', u'concern', u'latest', u'gaza', u'kill']
[u'union', u'consid', u'redund', u'challeng']
[u'unstopp', u'stosur']
[u'monitor', u'children', u'aceh']
[u'seek', u'help', u'asian', u'fishermen']
[u'accident', u'drop', u'packag']
[u'lawmak', u'visit', u'north', u'korea']
[u'wolv', u'endang', u'list']
[u'valuat', u'prove', u'xstrata', u'offer']
[u'govt', u'focus', u'long', u'term', u'tsunami']
[u'offer', u'counsel', u'tsunami', u'victim']
[u'govt', u'attack', u'elect']
[u'water', u'woe', u'loom', u'horticultur', u'industri']
[u'weather', u'extrem', u'continu']
[u'west', u'indi', u'disappoint', u'bushrang']
[u'west', u'indi', u'bushrang']
[u'wind', u'farm', u'support', u'blame', u'govt', u'project', u'demis']
[u'wine', u'invest', u'fund', u'member', u'debat', u'shake']
[u'wollongong', u'see', u'tsunami', u'chao', u'hand']
[u'woodsid', u'allianc', u'focus', u'gulf', u'mexico']
[u'worker', u'compens', u'cover', u'tsunami', u'team']
[u'xstrata', u'stand', u'takeov', u'offer']
[u'youth', u'driver', u'train', u'scheme', u'propos']
[u'guerrilla', u'kill', u'nepal']
[u'iraqi', u'worker', u'dead', u'mosul']
[u'victim', u'die', u'sydney', u'hospit']
[u'record', u'road', u'death']
[u'adelaid', u'team', u'aceh', u'mission']
[u'adsl', u'access', u'england', u'resid']
[u'afghan', u'turn', u'fake', u'visa', u'ploy', u'minist']
[u'agassi', u'hungri', u'grand', u'slam', u'success']
[u'agenc', u'welcom', u'packag']
[u'group', u'want', u'tsunami', u'summit']
[u'alic', u'hospit', u'declar', u'babi', u'friend']
[u'alleg', u'polic', u'imperson', u'court']
[u'alleg', u'desert', u'hassoun', u'lebanon']
[u'annan', u'want', u'tsunami', u'pledg', u'honour']
[u'antibiot', u'prevent', u'nerv', u'damag']
[u'arsonist', u'target', u'merbein', u'polic', u'station']
[u'asic', u'ban', u'canberra', u'insur', u'agent']
[u'aussi', u'look', u'ash', u'challeng']
[u'aussi', u'teenag', u'give', u'sydney', u'wildcard']
[u'australia', u'tsunami', u'survivor']
[u'aust', u'ramp', u'trade', u'promot']
[u'aust', u'show', u'packag']
[u'aust', u'tsunami', u'death', u'toll', u'rise']
[u'babi', u'rhino', u'zoo', u'drawcard']
[u'bakhtiyari', u'support', u'ralli', u'adelaid']
[u'bangladesh', u'strong', u'start', u'zimbabw']
[u'bendigo', u'council', u'rais', u'tsunami', u'fund']
[u'bendigo', u'polic', u'target', u'drink', u'driver']
[u'bleak', u'futur', u'predict', u'capricorn', u'pineappl']
[u'brack', u'ask', u'explain', u'rescu']
[u'broom', u'artist', u'record', u'song', u'tsunami', u'victim']
[u'bush', u'donat', u'tsunami', u'relief']
[u'market', u'set', u'sale', u'record']
[u'chela', u'adelaid']
[u'church', u'servic', u'rememb', u'tsunami', u'victim']
[u'compass', u'aust', u'assist', u'aceh', u'relief', u'effort']
[u'consmin', u'announc', u'relianc', u'takeov', u'plan']
[u'council', u'govt', u'talk', u'focus', u'transport', u'fund']
[u'councillor', u'warn', u'shonki', u'tsunami', u'fundrais']
[u'council', u'push', u'favour', u'site', u'marin', u'project']
[u'council', u'seek', u'thwait', u'wast', u'dump', u'talk']
[u'council', u'seek', u'info', u'smoke', u'law']
[u'counsellor', u'urg', u'offer', u'free', u'tsunami', u'support']
[u'cricket', u'earn', u'break']
[u'fish', u'stock', u'appear', u'healthi']
[u'darwin', u'concert', u'plan', u'tsunami', u'fundrais']
[u'darwin', u'regiment', u'prepar', u'kanimbla', u'departur']
[u'data', u'point', u'bumper', u'christma', u'retail']
[u'dead', u'jackeroo', u'father', u'call', u'farm', u'safeti']
[u'dead', u'year', u'journalist']
[u'dementieva', u'upset', u'sharapova', u'open']
[u'dept', u'warn', u'summer', u'campfir', u'danger']
[u'diver', u'join', u'search', u'miss', u'coupl']
[u'doctor', u'recount', u'tsunami', u'grief']
[u'document', u'reveal', u'habib', u'tortur', u'alleg']
[u'down', u'hors', u'prove', u'good', u'silk', u'stock']
[u'duck', u'shooter', u'unfaz', u'rspca']
[u'elder', u'drown', u'fish', u'spot']
[u'nino', u'predict', u'bring', u'day']
[u'emerg', u'servic', u'prais', u'hostel', u'blaze']
[u'england', u'face', u'defeat', u'cape', u'town']
[u'esper', u'concert', u'organis', u'tsunami', u'victim']
[u'europ', u'pay', u'respect', u'tsunami', u'victim']
[u'famili', u'appeal', u'inform', u'year']
[u'farmer', u'want', u'grain', u'freight', u'servic', u'retain']
[u'feder', u'fire', u'qatar', u'quarter']
[u'fifa', u'set', u'fund', u'tsunami', u'victim']
[u'fifa', u'trial', u'ball', u'devic', u'amid', u'video', u'replay']
[u'firefight', u'contain', u'sydney']
[u'fire', u'threaten', u'properti', u'near', u'perth']
[u'freight', u'charg', u'increas', u'late']
[u'funer', u'tomorrow', u'teen', u'drown', u'victim']
[u'tsunami', u'victim', u'identif']
[u'gallop', u'hose', u'prospect', u'sprinkler']
[u'germani']
[u'govt', u'fund', u'tamworth', u'weed', u'erad']
[u'monitor', u'asbesto', u'orang']
[u'haan', u'sydney']
[u'habib', u'alleg', u'tortur', u'wit', u'govt']
[u'harbour', u'master', u'call', u'sailor', u'drug', u'alcohol', u'test']
[u'heat', u'rais', u'demand', u'gold', u'coast', u'water']
[u'hewitt', u'advanc', u'adelaid']
[u'hopman', u'wide', u'open', u'slovak']
[u'hospit', u'boost', u'resourc', u'festiv']
[u'hospit', u'staff', u'loss', u'prompt', u'renew', u'talk']
[u'weather', u'sign', u'global', u'warm']
[u'howard', u'outlin', u'detail', u'packag']
[u'howard', u'pledg', u'indonesian', u'recoveri']
[u'howard', u'rule', u'aceh', u'visit']
[u'hunter', u'chees', u'maker', u'vie', u'women', u'award']
[u'iceberg', u'reappear', u'zealand', u'water']
[u'indonesia', u'call', u'relief', u'coordin']
[u'indonesian', u'consul', u'close', u'door', u'donat']
[u'insur', u'broker', u'busi', u'western', u'storm']
[u'iraq', u'push', u'ahead', u'elect', u'plan']
[u'isi', u'shire', u'back', u'tsunami', u'appeal']
[u'jakarta', u'tsunami', u'summit', u'begin']
[u'cut', u'electrolux', u'effici', u'union']
[u'kuwaiti', u'soldier', u'charg', u'anti', u'plot']
[u'latham', u'confin']
[u'latrob', u'council', u'join', u'tsunami', u'donat', u'drive']
[u'launceston', u'show', u'fate', u'remain', u'undecid']
[u'liber', u'promis', u'boost', u'beach', u'access']
[u'accus', u'tsunami', u'collect', u'fraud']
[u'accus', u'tsunami', u'collect', u'fraud', u'grant']
[u'arrest', u'brisban', u'stab']
[u'charg', u'cannabi', u'plantat']
[u'mandela', u'die']
[u'face', u'attempt', u'murder', u'charg', u'stab']
[u'fin', u'girlfriend', u'phone', u'attack']
[u'give', u'year', u'jail', u'paedophil', u'ring']
[u'maradona', u'return', u'cuba', u'drug', u'treatment']
[u'mildura', u'air', u'concern', u'toxic', u'wast', u'facil']
[u'million', u'dollar', u'payout', u'attack']
[u'industri', u'focus', u'skill', u'worker']
[u'train', u'centr', u'plan', u'mackay']
[u'miss', u'victorian', u'safe', u'thailand']
[u'monk', u'offer', u'sell', u'templ', u'tsunami', u'relief']
[u'enjoy', u'irish', u'book', u'name']
[u'uranium', u'explor', u'plan']
[u'deni', u'power', u'plant', u'claim']
[u'fear', u'wyndham', u'hospit', u'closur']
[u'lament', u'rise', u'countri', u'road', u'toll']
[u'navi', u'ship', u'prepar', u'leav', u'sumatra']
[u'ncoss', u'seek', u'north', u'coast', u'fund']
[u'netherland', u'level', u'hopman']
[u'newcastl', u'build', u'industri', u'tip', u'remain', u'strong']
[u'green', u'corp', u'project', u'announc']
[u'home', u'sale', u'rebound']
[u'nkala', u'lead', u'zimbabwean', u'fight', u'test']
[u'north', u'boost', u'tsunami', u'appeal', u'effort']
[u'continu', u'wait', u'region', u'airport', u'secur']
[u'nuclear', u'element', u'arriv', u'reprocess', u'franc']
[u'look', u'world', u'seri', u'india', u'declin']
[u'oberon', u'quarri', u'get', u'ahead', u'court', u'battl']
[u'price', u'retreat']
[u'price', u'fall']
[u'perth', u'univers', u'test', u'shoaib', u'malik', u'action']
[u'owner', u'warn', u'slug', u'death']
[u'philippoussi', u'hope', u'play', u'australian', u'open']
[u'philippoussi', u'like', u'miss', u'australian', u'open']
[u'pinochet', u'hous', u'arrest']
[u'plan', u'continu', u'nation', u'park', u'hunt', u'plan']
[u'concern', u'burma', u'tsunami', u'toll']
[u'polic', u'continu', u'search', u'miss', u'cairn']
[u'polic', u'fear', u'miss', u'gulf']
[u'polic', u'hunt', u'gang', u'arm', u'robberi']
[u'polic', u'mount', u'search', u'sydney', u'prison', u'escap']
[u'polic', u'search', u'miss', u'czech', u'tourist']
[u'polic', u'search', u'river', u'miss']
[u'polic', u'union', u'unhappi', u'dump', u'month', u'station']
[u'port', u'macquari', u'feral', u'deer', u'cull', u'approv']
[u'port', u'macquari', u'pair', u'provid', u'medic', u'relief']
[u'produc', u'pick', u'incred', u'film']
[u'project', u'aim', u'prevent', u'wind', u'storm', u'damag']
[u'public', u'servant', u'ask', u'donat', u'hour', u'asia']
[u'public', u'urg', u'donat', u'lankan', u'appeal']
[u'public', u'urg', u'regist', u'dodgi', u'power', u'pole']
[u'rain', u'good', u'news', u'drought', u'western', u'grazier']
[u'rain', u'halt', u'play', u'auckland']
[u'ranatunga', u'hospitalis', u'heart', u'problem']
[u'real', u'madrid', u'snare', u'point', u'resum', u'match']
[u'bull', u'complet', u'driver', u'line']
[u'cross', u'begin', u'tsunami', u'survivor', u'regist']
[u'reign', u'dakar', u'champ', u'win', u'sixth', u'stage', u'mcrae']
[u'resid', u'opposit', u'fail', u'stop', u'bungendor']
[u'resid', u'warn', u'bewar', u'intrud']
[u'resourc', u'sector', u'drag', u'stock', u'market']
[u'retail', u'surviv', u'shop', u'centr', u'competit']
[u'richard', u'gere', u'elect', u'appeal', u'perplex']
[u'river', u'flow', u'boost', u'irrig', u'alloc']
[u'road', u'toll', u'rise']
[u'rower', u'rescu', u'yarra', u'river']
[u'safeti', u'fear', u'prompt', u'cattl', u'yard', u'remov']
[u'safeti', u'offic', u'consid', u'curb', u'road', u'toll']
[u'safeti', u'remind', u'issu', u'employ']
[u'samsung', u'unveil', u'speech', u'text', u'mobil']
[u'scientist', u'conduct', u'post', u'mortem', u'dead', u'whale']
[u'scud', u'hope', u'play', u'australian', u'open']
[u'scud', u'injuri', u'scuttl', u'australia', u'hopman']
[u'scud', u'injuri', u'scuttl', u'australia', u'hopman', u'chanc']
[u'search', u'continu', u'miss', u'boy', u'bodi']
[u'servic', u'reflect', u'tsunami', u'impact']
[u'servic', u'sector', u'record', u'growth']
[u'defend', u'tsunami', u'warn', u'decis']
[u'make', u'beelin', u'unusu', u'truck', u'crash', u'cargo']
[u'sharon', u'clinch', u'deal', u'gaza', u'pull', u'support']
[u'shoaib', u'rule', u'chariti', u'match']
[u'year', u'armidal', u'break', u'enter']
[u'slovak', u'republ', u'lead']
[u'slovak', u'republ', u'hopman']
[u'southcorp', u'tip', u'takeov', u'target']
[u'specialist', u'test', u'shoaib', u'malik', u'action']
[u'lanka', u'estim', u'tsunami', u'damag']
[u'lankan', u'cricket', u'launch', u'tsunami', u'relief', u'fund']
[u'stalem', u'leav', u'southhampton', u'root', u'releg']
[u'storm', u'claim', u'histor', u'woolsh']
[u'stosur', u'prepar', u'quarter', u'final', u'showdown']
[u'stosur', u'gold', u'coast', u'semi']
[u'strong', u'aussi', u'conting', u'contest', u'hawaiian']
[u'studi', u'throw', u'weight', u'snack', u'impact']
[u'stunt', u'sue', u'show', u'contest', u'eat']
[u'sydney', u'hottest', u'year', u'record']
[u'sydney', u'student', u'link', u'russian', u'internet', u'fraud']
[u'consid', u'halt', u'hospit', u'resign']
[u'job', u'growth', u'push', u'drive', u'skill', u'worker']
[u'teenag', u'footbal', u'hop', u'impress', u'england', u'elit']
[u'test', u'seaspray', u'good', u'qualiti']
[u'tourist', u'expect', u'flock', u'birdsvill', u'cattl']
[u'townsvill', u'troop', u'prepar', u'tsunami', u'worst']
[u'tsunami', u'victim', u'rememb', u'thailand']
[u'fee', u'blame', u'drop', u'student', u'number']
[u'say', u'darfur', u'rebel', u'threat', u'spell', u'disast']
[u'unseed', u'gimelstob', u'toppl', u'bjorkman', u'india']
[u'inspect', u'iran', u'site']
[u'warn', u'fight', u'tsunami', u'strike', u'area']
[u'urin', u'test', u'predict', u'pregnanc', u'complic']
[u'archaeologist', u'accus', u'plagiar']
[u'command', u'warn', u'militari', u'reserv', u'near', u'break']
[u'marin', u'kill', u'western', u'iraq']
[u'market', u'slide', u'inflat', u'fear']
[u'probe', u'guantanamo', u'abus', u'claim']
[u'studi', u'point', u'protein', u'role', u'heart', u'attack']
[u'versac', u'line', u'madonna']
[u'warn', u'gain', u'support', u'tsunami', u'summit']
[u'weather', u'bureau', u'scale', u'flood', u'warn']
[u'west', u'indi', u'prepar', u'australia', u'clash']
[u'wildlif', u'group', u'unsur', u'payout', u'appeal']
[u'offer', u'olymp', u'assur']
[u'women', u'tenni', u'clinch', u'major', u'sponsorship', u'deal']
[u'zarina', u'win', u'devonport']
[u'aerial', u'spray', u'group', u'join', u'plane', u'crash', u'probe']
[u'plead', u'patienc']
[u'agforc', u'warn', u'loom', u'locust', u'plagu']
[u'distribut', u'caus', u'lanka']
[u'effort', u'zero', u'sumatran', u'provinc']
[u'annan', u'stun', u'tsunami', u'destruct', u'indonesia']
[u'annan', u'survey', u'aceh', u'tsunami', u'devast']
[u'defend', u'excess', u'student', u'quota']
[u'appeal', u'launch', u'tsunami', u'industri']
[u'armi', u'target', u'summernat', u'fan', u'recruit', u'drive']
[u'aussi', u'win', u'shoot', u'silver', u'deaflymp']
[u'aussi', u'win', u'shoot', u'putt', u'silver', u'deaflymp']
[u'australian', u'tsunami', u'death', u'toll', u'offici']
[u'aust', u'troop', u'prepar', u'iraqi', u'elect']
[u'author', u'crash', u'pilot', u'bodi']
[u'author', u'investig', u'construct', u'worker', u'death']
[u'weather', u'slow', u'tsunami', u'effort']
[u'bail', u'grant', u'tsunami', u'donat', u'fraud', u'case']
[u'ballroom', u'transform', u'tsunami', u'donat', u'centr']
[u'bangladesh', u'captain', u'fall', u'short', u'centuri']
[u'barrow', u'fill', u'tsunami', u'victim']
[u'basebal', u'young', u'gun', u'converg', u'lismor']
[u'bash', u'prompt', u'polic', u'secur', u'remind']
[u'beach', u'whale', u'dead']
[u'blaze', u'damag', u'track', u'mainten', u'train']
[u'bodi', u'search', u'miss', u'coupl']
[u'boje', u'pollock', u'wreck', u'england', u'unbeaten']
[u'bradtk', u'star', u'tiger', u'escap', u'hunter']
[u'break', u'spark', u'polic', u'secur', u'remind']
[u'britain', u'outlin', u'marshal', u'plan', u'poverti']
[u'build', u'approv', u'declin']
[u'busi', u'night', u'alic', u'polic']
[u'camper', u'holiday', u'safeti', u'remind']
[u'camper', u'rescu', u'teenag', u'buri', u'sand']
[u'carr', u'popular', u'stay', u'year']
[u'ceremoni', u'urg', u'heal', u'tsunami', u'grief']
[u'probe', u'list', u'failur', u'report']
[u'claim', u'northern', u'river', u'woe']
[u'classmat', u'farewel', u'tsunami', u'victim']
[u'clijster', u'confirm', u'australian', u'open', u'withdraw']
[u'coalit', u'backbench', u'push', u'relief']
[u'concert', u'asia', u'broadcast', u'radio']
[u'contamin', u'concern', u'vanadium']
[u'council', u'offer', u'tsunami', u'relief', u'fund']
[u'counsellor', u'offer', u'tsunami', u'help']
[u'crash', u'wwii', u'plan', u'bounti', u'south', u'coast', u'water']
[u'crespo', u'trick', u'move', u'milan', u'closer', u'juve']
[u'croc', u'dethron', u'king', u'hawk', u'taipan', u'triumph']
[u'crowd', u'expect', u'cygnet', u'folk', u'festiv']
[u'csiro', u'join', u'virus', u'fight']
[u'czech', u'tourist', u'whereabout', u'remain', u'unknown']
[u'capac', u'drop', u'illawarra']
[u'danish', u'academ', u'slam', u'tsunami', u'warn', u'plan']
[u'davenport', u'hungri', u'grand', u'slam', u'success']
[u'death', u'renew', u'call', u'taxi', u'rank', u'secur']
[u'defend', u'champ', u'grab', u'stage', u'dakar', u'lead']
[u'denham', u'health', u'centr', u'get', u'plan', u'approv']
[u'dent', u'knock', u'hewitt', u'adelaid']
[u'depart', u'defend', u'albani', u'justic', u'complex', u'contract']
[u'dizzi', u'look', u'forward', u'ash', u'seri']
[u'epilepsi', u'gene', u'discoveri', u'peopl']
[u'door', u'manag', u'danni', u'sugerman', u'die']
[u'driver', u'face', u'court', u'policeman']
[u'drought', u'condit', u'favour', u'hang', u'glider']
[u'eastwood', u'scorses', u'director', u'award']
[u'elvi', u'fan', u'gyrat', u'park', u'festiv']
[u'europ', u'ask', u'clarif', u'tsunami', u'mass']
[u'famili', u'school', u'friend', u'farewel', u'tsunami', u'victim']
[u'farmer', u'face', u'mix', u'weather', u'fortun']
[u'fear', u'hold', u'rare', u'bird']
[u'feder', u'cruis', u'qatar', u'semi', u'final']
[u'femal', u'prison', u'escape', u'recaptur']
[u'ferrari', u'play', u'race', u'boycott', u'report']
[u'fewer', u'speedster', u'record', u'polic', u'oper']
[u'firefight', u'continu', u'battl', u'perth', u'blaze']
[u'fisheri', u'dept', u'warn', u'marron', u'limit']
[u'fish', u'farm', u'hop', u'lure', u'tourist']
[u'flood', u'cut', u'road']
[u'priest', u'plead', u'guilti', u'charg']
[u'frazier', u'reach', u'auckland', u'semi', u'final']
[u'french', u'journalist', u'miss', u'iraq']
[u'frustrat', u'councillor', u'bypass', u'regul']
[u'gene', u'determin', u'risk', u'hivaid']
[u'germain', u'greer', u'take', u'brother', u'challeng']
[u'glori', u'sign', u'leagu']
[u'cotton', u'kimberley']
[u'good', u'start', u'smoke', u'law']
[u'govt', u'ask', u'abandon', u'wag', u'tribun', u'plan']
[u'govt', u'hear', u'toxic', u'wast', u'dump', u'protest']
[u'govt', u'urg', u'fish', u'gear', u'tsunami']
[u'govt', u'urg', u'state', u'land', u'mossi', u'control']
[u'gunn', u'eye', u'histor', u'properti', u'wine', u'ventur']
[u'haa', u'injur', u'hopman']
[u'haa', u'injuri', u'put', u'argentina', u'perth']
[u'hawk', u'taipan', u'score', u'victori']
[u'health', u'chief', u'unsur', u'job']
[u'high', u'court', u'bring', u'forward', u'gang', u'rape', u'appeal', u'hear']
[u'hill', u'confirm', u'request', u'search']
[u'hill', u'jefferi', u'farewel', u'indonesia', u'bind', u'troop']
[u'hill', u'farewel', u'troop', u'indonesia', u'visit']
[u'hmas', u'kanimbla', u'set', u'sail', u'indonesia']
[u'horticultur', u'inject', u'million', u'coastal']
[u'hospit', u'reopen', u'aceh']
[u'howard', u'send', u'latham', u'wish']
[u'hurst', u'hop', u'swell']
[u'hurst', u'hop', u'wave', u'portsea']
[u'world', u'say', u'serena']
[u'indigen', u'council', u'back', u'student', u'retent', u'plan']
[u'injur', u'haa', u'expect', u'australian', u'open']
[u'iraq', u'extend', u'emerg', u'elect']
[u'jet', u'hope', u'convinc', u'venabl', u'stay']
[u'jet', u'work', u'longer', u'term', u'venabl', u'commit']
[u'johansson', u'adelaid', u'semi']
[u'kalgoorli', u'aim', u'rais', u'tsunami', u'victim']
[u'lake', u'boost', u'consid', u'fish', u'kill', u'cure']
[u'lara', u'concern', u'australia']
[u'leader', u'billion', u'work', u'tsunami', u'summit']
[u'expect', u'remain', u'gulf']
[u'magic', u'million', u'outgrow', u'turf', u'club']
[u'major', u'illeg', u'drug', u'uncov', u'sydney']
[u'charg', u'servic', u'station', u'hold']
[u'mandela', u'aid', u'fight', u'get', u'person']
[u'die', u'fall', u'backpack', u'hostel']
[u'drown', u'eildon']
[u'hold', u'tsunami', u'fraud', u'charg']
[u'injur', u'fight', u'perth']
[u'kill', u'taxi', u'rank', u'fight']
[u'marshal', u'sign', u'leed']
[u'microsoft', u'offer', u'spywar', u'protect']
[u'worker', u'consid', u'job', u'recommend']
[u'miner', u'await', u'diamond', u'search', u'result']
[u'monsanto', u'pay', u'fine', u'bribe']
[u'aust', u'assist', u'aceh', u'maldiv']
[u'troop', u'join', u'tsunami', u'mission']
[u'motorist', u'warn', u'hoon', u'summernat']
[u'call', u'insolv', u'law', u'chang']
[u'muralitharan', u'play', u'tsunami', u'chariti', u'match']
[u'fuel', u'tank', u'bring', u'nasa', u'closer', u'shuttl', u'launch']
[u'technolog', u'save', u'farmer', u'travel']
[u'troop', u'kill', u'iraq']
[u'polic', u'collect', u'data', u'tsunami', u'miss']
[u'nuclear', u'watchdog', u'seek', u'global', u'enrich', u'freez']
[u'number', u'slump', u'charl', u'darwin']
[u'opposit', u'attack', u'premium']
[u'opposit', u'fear', u'rat', u'chang', u'legal', u'problem']
[u'pair', u'charg', u'fraud']
[u'paradorn', u'roll', u'chennai', u'quarter']
[u'parliament', u'hear', u'kangaroo']
[u'parri', u'second', u'place', u'hawaii']
[u'chairman', u'back', u'woolmer', u'inzamam']
[u'perth', u'firefight', u'hope', u'better', u'condit']
[u'pilbara', u'iron', u'project', u'delay']
[u'pittman', u'split', u'coach', u'king']
[u'call', u'minut', u'silenc', u'mourn']
[u'pleas', u'world', u'tsunami', u'effort']
[u'polic', u'dog', u'drug']
[u'polic', u'hunt', u'driver', u'chase']
[u'polic', u'investig', u'woman', u'death', u'gulf', u'town']
[u'polic', u'prais', u'kimberley', u'motorist']
[u'polic', u'prepar', u'countri', u'music', u'influx']
[u'polic', u'rule', u'boat', u'hit', u'teen']
[u'polic', u'rule', u'sydney', u'attack', u'link']
[u'polic', u'target', u'driver', u'head']
[u'polyclin', u'work', u'begin', u'year']
[u'presidenti', u'public', u'premier']
[u'protest', u'fail', u'save', u'golden']
[u'public', u'urg', u'donat', u'legitim', u'tsunami']
[u'public', u'urg', u'help', u'miss']
[u'push', u'gum', u'nation', u'park']
[u'polic', u'assist', u'tsunami', u'victim', u'identif']
[u'rail', u'timet', u'plan', u'track']
[u'razzaq', u'replac', u'akhtar', u'chariti', u'match']
[u'realiti', u'find']
[u'religi', u'leader', u'gather', u'rememb', u'tsunami']
[u'resourc', u'sector', u'push', u'market', u'high']
[u'retail', u'figur', u'fall', u'short']
[u'rise', u'level', u'undo', u'post', u'tsunami']
[u'roadsid', u'blast', u'kill', u'soldier']
[u'rudd', u'defend', u'latham', u'silenc', u'tsunami']
[u'sandiland', u'extend', u'docker', u'contract']
[u'sarina', u'council', u'pledg', u'tsunami', u'fund']
[u'sartor', u'hold', u'water', u'restrict']
[u'crack', u'recycl', u'border', u'run']
[u'scientist', u'detect', u'massiv', u'space', u'explos']
[u'scientist', u'excit', u'antarct', u'servic']
[u'scientist', u'warn', u'tsunami', u'danger']
[u'sewerag', u'pipe', u'work', u'continu']
[u'sharehold', u'group', u'clarifi', u'tsunami', u'donat']
[u'sharehold', u'group', u'oppos', u'tsunami', u'donat']
[u'shire', u'look', u'better', u'year']
[u'sober', u'centr', u'prove', u'popular']
[u'south', u'africa', u'beat', u'england']
[u'south', u'africa', u'recal', u'boucher']
[u'lanka', u'ban', u'adopt', u'amid', u'child', u'snatch']
[u'stargaz', u'close', u'view', u'saturn']
[u'stosur', u'gold', u'coast', u'final']
[u'stray', u'hippo', u'find', u'unlik', u'mother']
[u'sunshin', u'coast', u'academ', u'enter', u'fee', u'debat']
[u'suppli', u'fear', u'spark', u'price', u'rise']
[u'suprem', u'court', u'throw', u'ukrain', u'elect', u'challeng']
[u'surat', u'basin', u'product', u'rise']
[u'sydney', u'avoid', u'water', u'restrict']
[u'teacher', u'retrain', u'plan', u'help', u'western', u'school']
[u'teen', u'charg', u'beach', u'assault']
[u'thailand', u'insist', u'foreign', u'mass', u'grave']
[u'thousand', u'expect', u'lavend', u'harvest']
[u'charg', u'hindmarsh', u'brawl']
[u'tini', u'organ', u'blame', u'fish', u'kill']
[u'trucki', u'deliv', u'tsunami', u'donat']
[u'trust', u'embarrass', u'close', u'properti']
[u'tsunami', u'add', u'woe', u'poverti', u'stricken', u'somali']
[u'tsunami', u'chariti', u'cricket', u'intern', u'sell']
[u'tsunami', u'death', u'toll', u'pass']
[u'tsunami', u'survivor', u'pick', u'piec']
[u'indonesia', u'plan', u'camp', u'tsunami', u'homeless']
[u'rais', u'tsunami', u'relief', u'fund']
[u'defeat', u'australia', u'hopman']
[u'soldier', u'accus', u'kill', u'iraqi', u'await']
[u'venus', u'struggl', u'open']
[u'airport', u'host', u'region', u'counter', u'terror']
[u'viduka', u'doubt', u'socceroo']
[u'volunt', u'doctor', u'urg', u'prepar']
[u'popul', u'approach', u'million']
[u'rule', u'uranium', u'mine']
[u'water', u'tower', u'inquest', u'begin', u'april']
[u'water', u'woe', u'prompt', u'swim']
[u'water', u'woe', u'plagu', u'bombala', u'shire']
[u'western', u'medic', u'staff', u'help', u'tsunami', u'victim']
[u'weather', u'leav', u'wide']
[u'wildcat', u'grace', u'miss', u'game']
[u'william', u'hail', u'inspir', u'webber']
[u'wintergarden', u'theatr', u'sale']
[u'attorney', u'general', u'grill']
[u'young', u'abattoir', u'rebuild']
[u'youth', u'support', u'scheme', u'like', u'help']
[u'zoellick', u'tip', u'state', u'dept', u'post']
[u'kill', u'italian', u'train', u'crash']
[u'achiev', u'offic', u'monitor', u'school']
[u'field', u'hospit', u'arriv', u'banda', u'aceh']
[u'afghan', u'judg', u'arrest', u'kabul', u'bomb']
[u'annan', u'tour', u'lanka', u'pledg', u'support']
[u'arafat', u'head', u'poll']
[u'armstrong', u'hint', u'sidestep', u'tour']
[u'australian', u'detain', u'desecr', u'argentin', u'flag']
[u'bangladesh', u'place', u'test']
[u'barrow', u'load', u'cash', u'boost', u'tsunami', u'appeal']
[u'beach', u'collaps', u'victim', u'remain', u'hospit']
[u'beach', u'dead', u'whale', u'pose', u'shark', u'attack', u'threat']
[u'brad', u'pitt', u'jennif', u'aniston', u'announc', u'split']
[u'british', u'tsunami', u'toll', u'doubl']
[u'build', u'approv', u'fall']
[u'burnley', u'postpon']
[u'canada', u'hasten', u'immigr', u'applic']
[u'canathon', u'promis', u'collector', u'beeri', u'good', u'time']
[u'church', u'seek', u'govt', u'help', u'deliv', u'tsunami']
[u'clark', u'injuri', u'watch', u'selector', u'resist']
[u'conflict', u'hamper', u'aceh', u'hill']
[u'cruis', u'ship', u'mishap', u'spark', u'search']
[u'dakar', u'ralli', u'ground']
[u'death', u'toll', u'rise', u'italian', u'train', u'crash']
[u'detent', u'centr', u'cost', u'blow']
[u'dfat', u'appeal', u'fresh', u'info', u'miss', u'peopl']
[u'elder', u'surviv', u'day', u'tsunami', u'rubbl']
[u'england', u'ash', u'gough']
[u'extra', u'cost', u'slow', u'hous', u'construct']
[u'famili', u'await', u'news', u'tsunami', u'zone']
[u'fifa', u'uefa', u'stage', u'tsunami', u'benefit']
[u'fifa', u'discuss', u'offsid', u'chang']
[u'flawless', u'feder', u'reach', u'qatar', u'final']
[u'french', u'journalist', u'urg', u'stay', u'away', u'iraq']
[u'nation', u'freez', u'tsunami', u'nation', u'debt']
[u'galleri', u'extend', u'hour', u'munch', u'exhibit']
[u'govt', u'build', u'compani', u'check', u'inadequ', u'opposit']
[u'govt', u'defend', u'student', u'hous', u'option']
[u'govt', u'doubl', u'servic', u'indigen', u'famili']
[u'group', u'form', u'help', u'prevent', u'dolphin', u'catch']
[u'henin', u'hardenn', u'australian', u'open', u'sydney', u'intl']
[u'hewitt', u'put', u'adelaid', u'loss']
[u'hiker', u'strand', u'marin', u'fall']
[u'hind', u'triangular', u'seri']
[u'hingi', u'ponder', u'tour', u'comeback']
[u'hopman', u'final', u'promis', u'tight', u'contest']
[u'hussey', u'lead', u'australia', u'fight']
[u'indian', u'visit', u'slow', u'tsunami', u'work']
[u'indonesia', u'revis', u'death', u'toll']
[u'indonesia', u'revis', u'tsunami', u'death', u'toll']
[u'inzamam', u'depress', u'imran', u'critic']
[u'bank', u'robberi', u'polic']
[u'iraq', u'turn', u'perth', u'poll', u'booth', u'fund', u'offer']
[u'israel', u'check', u'report', u'palestinian', u'shoot']
[u'israel', u'threaten', u'cancel', u'palestinian', u'elect']
[u'johansson', u'play', u'dent', u'adelaid', u'final']
[u'juri', u'select', u'ghraib', u'abus', u'trial']
[u'katherin', u'girl', u'tamworth', u'stage']
[u'kava', u'licenc', u'approv', u'croker', u'outlet']
[u'keith', u'urban', u'tour', u'australia']
[u'lara', u'turn', u'style']
[u'take', u'british', u'citizenship']
[u'malaysia', u'suvivor', u'rescu']
[u'arrest', u'drug', u'lab', u'uncov', u'sydney']
[u'kill', u'highway', u'crash']
[u'pledg', u'fund', u'rebuild', u'gall', u'stadium']
[u'organis', u'tsunami', u'fundrais', u'lord']
[u'million', u'pledg', u'tsunami', u'benefit', u'telethon']
[u'monfil', u'open', u'franc', u'name', u'wildcard']
[u'mortaza', u'put', u'bangladesh', u'zimbabw', u'test']
[u'motorcyclist', u'kill', u'truck', u'collis']
[u'moya', u'srichaphan', u'cours', u'final', u'match']
[u'asia', u'host', u'tsunami', u'relief', u'benefit']
[u'murder', u'charg', u'lay', u'taxi', u'queue', u'brawl']
[u'murder', u'beauti', u'queen', u'parent', u'lose', u'defam', u'suit']
[u'net', u'method', u'reduc', u'catch']
[u'road', u'reduc', u'citi', u'travel', u'time']
[u'road', u'toll', u'hit', u'decad']
[u'price', u'steadi', u'sharp', u'rise']
[u'palestinian', u'candid', u'eject']
[u'palestinian', u'candid', u'kick', u'jerusalem']
[u'patient', u'leav', u'wait', u'region', u'hospit']
[u'pedestrian', u'warn', u'headphon', u'risk']
[u'return', u'tsunami', u'summit']
[u'polic', u'continu', u'search', u'miss']
[u'polic', u'scale', u'search', u'miss', u'doctor']
[u'powel', u'tour', u'tsunami', u'devast', u'lanka']
[u'princ', u'william', u'harri', u'help', u'tsunami', u'effort']
[u'probe', u'fail', u'stop', u'abus', u'troop']
[u'rescu', u'mission', u'launch', u'injur', u'aust', u'seaman']
[u'hous', u'industri', u'remain', u'healthi', u'despit', u'trend']
[u'schnyder', u'edg', u'stosur', u'gold', u'coast', u'final']
[u'search', u'continu', u'miss', u'cruis', u'ship', u'passeng']
[u'search', u'suspend', u'overboard', u'cruis', u'ship']
[u'sharon', u'stone', u'repris', u'basic', u'instinct', u'role']
[u'singh', u'halfway', u'leader', u'hawaii']
[u'slovak', u'captur', u'second', u'hopman']
[u'slovak', u'hopman', u'advantag']
[u'slovak', u'second', u'hopman']
[u'srebotnik', u'prevail', u'classic', u'marathon']
[u'straw', u'tour', u'scene', u'thai', u'tsunami', u'disast']
[u'summernat', u'weekend', u'rev']
[u'superb', u'lara', u'inspir', u'windi', u'victori']
[u'suspect', u'member', u'plead', u'guilti', u'murder']
[u'tasmanian', u'cadet', u'compet', u'team', u'challeng']
[u'tasmania', u'fisheri', u'expertis', u'tsunami']
[u'tenant', u'urg', u'disregard', u'smoke', u'detector', u'advic']
[u'thousand', u'expect', u'attend', u'festiv', u'open']
[u'tindal', u'creek', u'resid', u'warn', u'possibl', u'flood']
[u'aust', u'diplomat', u'fiji', u'bash']
[u'train', u'good', u'drive', u'skill']
[u'tsunami', u'info', u'pack', u'help', u'student']
[u'tsunami', u'inspir', u'volunt', u'work']
[u'tsunami', u'relief', u'experi', u'chang', u'perth', u'medic']
[u'charg', u'street', u'race']
[u'injur', u'sydney', u'shoot']
[u'strand', u'hiker', u'rescu']
[u'chief', u'alarm', u'darfur', u'crisi']
[u'armi', u'sergeant', u'clear', u'kill', u'iraqi']
[u'claim', u'arrest', u'zarqawi', u'alli', u'mosul']
[u'job', u'data', u'point', u'steadi', u'growth']
[u'nuclear', u'run', u'aground', u'near', u'guam']
[u'space', u'mission', u'test', u'repair', u'procedur']
[u'review', u'iraq', u'militari', u'oper']
[u'venus', u'scrap', u'final', u'sharapova']
[u'victoria', u'road', u'toll', u'year']
[u'vietnam', u'confirm', u'bird', u'death']
[u'zoellick', u'name', u'deputi', u'secretari', u'state']
[u'abba', u'rival', u'claim', u'palestinian', u'vote', u'irregular']
[u'annan', u'seek', u'return', u'lanka']
[u'asian', u'tourism', u'industri', u'larg', u'unhurt', u'tsunami']
[u'atapattu', u'pull', u'tsunami', u'fundrais']
[u'team', u'fight', u'beat', u'windi']
[u'aussi', u'helper', u'return', u'home']
[u'aust', u'diver', u'presum', u'dead', u'african', u'cave']
[u'australia', u'fight', u'beat', u'windi']
[u'australian', u'diver', u'disappear', u'africa', u'cave']
[u'australia', u'releas', u'warn', u'world', u'seri']
[u'babi', u'good', u'news', u'tsunami', u'indian', u'tribe']
[u'bangladesh', u'close', u'histor']
[u'bat', u'claim', u'second', u'manchest', u'track']
[u'bewild', u'lankan', u'pull', u'tsunami', u'rubbl']
[u'boystown', u'offer', u'counsel', u'tsunami', u'victim']
[u'brisban', u'charg', u'rape']
[u'brother', u'find', u'miss', u'adelaid']
[u'caldecott', u'slip', u'dakar', u'place']
[u'cattlemen', u'seek', u'heritag', u'list', u'alpin', u'graze']
[u'cautious', u'trade', u'tip', u'dollar', u'steadi']
[u'charg', u'expect', u'north', u'west', u'fire']
[u'charg', u'lay', u'perth', u'robberi']
[u'china', u'growth', u'impact', u'aust', u'economi']
[u'critic', u'honour', u'million', u'dollar', u'babi', u'sideway']
[u'death', u'toll', u'italian', u'train', u'crash', u'rise']
[u'dellacqua', u'chase', u'open', u'wildcard']
[u'dementieva', u'stop', u'venus', u'hong', u'kong', u'titl']
[u'canio', u'face', u'probe', u'alleg', u'fascist', u'salut']
[u'diver', u'search', u'miss', u'year']
[u'dominikov', u'bow', u'hobart']
[u'drought', u'expect', u'continu', u'part']
[u'kill', u'storm', u'pound', u'northern', u'europ']
[u'electr', u'fault', u'blame', u'school']
[u'embarrass', u'fergi', u'say', u'sorri', u'fan']
[u'execut', u'target', u'broadcast', u'protest']
[u'fiji', u'polic', u'probe', u'aust', u'diplomat', u'bash']
[u'firefight', u'urg', u'parent', u'leav', u'kid']
[u'ferrero', u'fire', u'open']
[u'injur', u'crash']
[u'flawless', u'singh', u'retain', u'hawaii', u'lead']
[u'launceston', u'win', u'marathon']
[u'germani', u'offer', u'lead', u'tsunami', u'warn']
[u'govt', u'communiti', u'urg', u'help', u'needi']
[u'group', u'map', u'rare', u'pine', u'tree', u'popul']
[u'gunfir', u'report', u'banda', u'aceh']
[u'hang', u'glider', u'die', u'world', u'championship']
[u'hewitt', u'defend', u'coach', u'rashe']
[u'hezbollah', u'attack', u'isra', u'patrol']
[u'histor', u'peac', u'deal', u'sign', u'sudan']
[u'holiday', u'road', u'toll', u'continu', u'rise']
[u'hondura', u'claim', u'foil', u'plot', u'presid']
[u'hope', u'concert', u'rais', u'tsunami', u'fund']
[u'hopman', u'organis', u'target', u'feder']
[u'hurst', u'cameron', u'portsea', u'round']
[u'hussey', u'fall', u'beller']
[u'hussey', u'rescu', u'mission']
[u'indonesian', u'offic', u'blame', u'aceh', u'shoot']
[u'injur', u'bushwalk', u'rescu', u'near', u'lithgow']
[u'iraq', u'insurg', u'boost', u'power', u'explos']
[u'israel', u'launch', u'strike', u'hezbollah', u'attack']
[u'johansson', u'down', u'dent', u'adelaid', u'final']
[u'journalist', u'releas', u'bail', u'kuwait']
[u'kennedi', u'sibl', u'die']
[u'lara', u'second', u'dayer']
[u'leader', u'meet', u'ahead', u'sudan', u'peac', u'deal']
[u'light', u'plane', u'roll', u'melbourn', u'runway']
[u'malaysian', u'airport', u'boost', u'aceh', u'effort']
[u'charg', u'fatal', u'stab']
[u'charg', u'recreat', u'park']
[u'injur', u'hous', u'blaze']
[u'injur', u'skydiv', u'mishap']
[u'minist', u'apologis', u'teacher', u'student', u'comment']
[u'minnow', u'exet', u'defi', u'citi', u'villa', u'crash']
[u'motorcyclist', u'urg', u'chang', u'behaviour']
[u'moya', u'paradorn', u'chennai', u'final', u'rematch']
[u'seek', u'support', u'aceh', u'orphanag', u'project']
[u'use', u'greenpeac', u'ship', u'transport']
[u'music', u'light', u'herald', u'festiv', u'open']
[u'armi', u'cadet', u'rise', u'challeng']
[u'net', u'million', u'proceed', u'crime']
[u'admit', u'suppli', u'agent', u'orang']
[u'offici', u'aust', u'tsunami', u'death', u'toll', u'remain', u'unchang']
[u'offenc', u'overshadow', u'drink', u'drive', u'drop']
[u'palestinian', u'begin', u'vote', u'amid', u'access', u'disput']
[u'palestinian', u'claim', u'israel', u'break', u'elect']
[u'palestinian', u'prepar', u'vote', u'leader']
[u'pledg', u'ongo', u'tsunami']
[u'polic', u'appeal', u'info', u'miss', u'tourist']
[u'polic', u'diver', u'recov', u'bodi', u'miss', u'teenag']
[u'polit', u'muddi', u'tsunami', u'relief', u'effort']
[u'properti', u'quarantin', u'crazi', u'outbreak']
[u'ralf', u'see', u'toyota', u'better', u'william']
[u'russian', u'troop', u'kill', u'rebel', u'battl', u'near', u'chechnya']
[u'deploy', u'diseas', u'tsunami', u'zone']
[u'sailor', u'die', u'aboard', u'nuclear', u'accid']
[u'saudi', u'polic', u'kill', u'gunmen']
[u'scud', u'withdraw', u'sydney', u'intern']
[u'search', u'miss', u'cruis', u'passeng', u'suspend']
[u'search', u'resum', u'miss']
[u'shelter', u'help', u'summernat', u'spectat', u'sober']
[u'shot', u'fire', u'nimbin', u'stand']
[u'lankan', u'radio', u'retract', u'tiger', u'leadership', u'death']
[u'strong', u'wind', u'predict', u'cyclon', u'move']
[u'submarin', u'crew', u'injur', u'vessel', u'run', u'aground']
[u'taibu', u'miss', u'fight', u'zimbabw']
[u'tamil', u'tiger', u'deni', u'leader', u'dead', u'tsunami']
[u'telethon', u'donat', u'overwhelm', u'world', u'vision']
[u'terror', u'train', u'exercis', u'focus', u'railway']
[u'upset']
[u'tourist', u'rescu', u'spend', u'night']
[u'tszyu', u'sign', u'deal', u'fight', u'hatton', u'report']
[u'straight', u'feder']
[u'drown']
[u'underground', u'farm', u'plan', u'tokyo']
[u'untrain', u'volunt', u'urg', u'help']
[u'tsnuami', u'snub', u'harm', u'peac', u'process', u'tamil', u'tiger']
[u'militari', u'admit', u'bomb', u'wrong', u'hous', u'iraq']
[u'soldier', u'give', u'month', u'sentenc', u'iraq']
[u'soldier', u'kill', u'baghdad']
[u'troop', u'kill', u'iraqi', u'polic', u'civilian']
[u'valencia', u'straight']
[u'vibrat', u'record', u'indian', u'ocean']
[u'warn', u'plan', u'lankan', u'mission']
[u'warn', u'plan', u'travel', u'lanka']
[u'windi', u'chase']
[u'windi', u'toss', u'bowl']
[u'women', u'hospit', u'reopen', u'switchboard']
[u'xmas', u'road', u'campaign', u'fail', u'impact', u'darwin']
[u'injuri', u'wilkinson']
[u'kill', u'southern', u'philippin', u'clash', u'militari']
[u'year', u'later', u'quixot', u'rid']
[u'kill', u'crash', u'india']
[u'abba', u'claim', u'victori', u'palestinian', u'elect']
[u'abba', u'tip', u'palestinian', u'elect']
[u'aborigin', u'servic', u'begin', u'rout']
[u'aborigin', u'soul', u'group', u'reviv', u'sydney', u'festiv']
[u'aborigin', u'seek', u'licenc', u'export', u'nativ', u'anim']
[u'academ', u'lend', u'expertis', u'lankan', u'rebuild']
[u'accid', u'hous', u'claim', u'live']
[u'aceh', u'militari', u'role', u'pure']
[u'actor', u'newman', u'escap', u'daytona', u'smash']
[u'space', u'station', u'track', u'titan', u'probe']
[u'pledg', u'tsunami', u'appeal']
[u'queensland', u'consid', u'cairn', u'brawl', u'appeal']
[u'group', u'reach', u'aceh', u'west', u'coast']
[u'hit', u'road', u'beat', u'aceh', u'airport']
[u'amend', u'train', u'servic', u'oper', u'smooth']
[u'annan', u'urg', u'cooper', u'lanka']
[u'applebi', u'defend', u'hawaii', u'titl']
[u'arthur', u'claim', u'sydney', u'open']
[u'asian', u'chase', u'massiv', u'total']
[u'associ', u'back', u'aerial', u'night', u'spray', u'despit']
[u'attack', u'transmitt', u'leav', u'station']
[u'aussi', u'start', u'sydney', u'campaign']
[u'aussi', u'start', u'sydney', u'campaign']
[u'aust', u'medic', u'team', u'unconcern', u'aceh', u'tension']
[u'aust', u'see', u'irregular', u'palestinian', u'vote']
[u'author', u'examin', u'whale', u'carcass']
[u'baghdad', u'deputi', u'polic', u'chief', u'assassin']
[u'bangladesh', u'break', u'test']
[u'bowl', u'club', u'look', u'amalgam']
[u'brisban', u'sudanes', u'communiti', u'celebr', u'peac', u'deal']
[u'builder', u'finish', u'push', u'tsunami', u'barrow']
[u'build', u'compani', u'creditor', u'meet', u'administr']
[u'busi', u'group', u'chief', u'warn', u'region']
[u'busi', u'group', u'seek', u'rate', u'reduct']
[u'canathon', u'promis', u'collector', u'beeri', u'good', u'time']
[u'canberra', u'track', u'water']
[u'carr', u'defend', u'labor', u'tsunami', u'respons']
[u'celtic', u'firm', u'battl']
[u'citrus', u'canker', u'surveil', u'program', u'track']
[u'citycat', u'switch', u'greener', u'fuel']
[u'coalit', u'soldier', u'polic', u'kill', u'iraq']
[u'comic', u'chameleon', u'campbel', u'mccoma', u'die']
[u'cooper', u'set', u'forens', u'standard']
[u'council', u'wast', u'manag', u'cost']
[u'court', u'allow', u'beater', u'chicken']
[u'cyclon', u'kerri', u'move']
[u'cyclon', u'threat', u'lanka', u'dissip']
[u'darwin', u'coupl', u'share', u'tsunami', u'stori']
[u'demon', u'rememb', u'heart', u'broadbridg']
[u'niro', u'stiller', u'combin', u'prove', u'offic']
[u'diplomat', u'secur', u'review', u'fiji']
[u'doctor', u'girl', u'utero']
[u'doctor', u'urg', u'peopl', u'avoid', u'eat', u'larg', u'reef', u'fish']
[u'doctor', u'voic', u'anger', u'concess', u'card', u'valid']
[u'donat', u'tarpaulin', u'head', u'lanka']
[u'dont', u'compass', u'stop', u'gilchrist']
[u'dont', u'write', u'warn', u'injuri', u'wilkinson']
[u'dragon', u'play', u'trial', u'match', u'man']
[u'earli', u'childhood', u'program', u'fund', u'east', u'kimberley']
[u'elect', u'specul', u'continu']
[u'export', u'fight', u'propos', u'cartel', u'chang']
[u'farmer', u'hope', u'summer', u'plant', u'season']
[u'feder', u'jet']
[u'femal', u'prison', u'studi', u'highlight', u'crime', u'drug', u'link']
[u'caus', u'damag', u'outsid', u'perth']
[u'destroy', u'airli', u'beach', u'hous']
[u'firefight', u'battl', u'grass']
[u'firefight', u'battl', u'townhous', u'blaze']
[u'fourteen', u'storm', u'batter', u'europ']
[u'fresh', u'quak', u'rock', u'aceh']
[u'concert', u'rais', u'thousand', u'tsunami', u'relief']
[u'die', u'singl', u'accid']
[u'girl', u'burn', u'accident', u'polic']
[u'glori', u'hunt', u'coach']
[u'govt', u'award', u'gunn', u'hous', u'contract']
[u'govt', u'look', u'fish', u'group', u'tuna', u'farm', u'concern']
[u'green', u'group', u'oppos', u'lobster', u'fisheri', u'approv']
[u'green', u'seek', u'warn', u'rail', u'disput']
[u'group', u'appeal', u'council', u'adult', u'supermarket']
[u'gulf', u'victim', u'overpay', u'auditor']
[u'hewitt', u'reject', u'aust', u'open', u'choker']
[u'hospit', u'staff', u'receiv', u'similar', u'work', u'condit']
[u'ierodiaconou', u'lead', u'aerial', u'canada']
[u'immigr', u'year', u'high']
[u'indonesia', u'confirm', u'soldier', u'respons', u'aceh']
[u'indonesia', u'deni', u'limit', u'worker', u'movement']
[u'indonesian', u'death', u'toll']
[u'internet', u'figur', u'suggest', u'worker', u'demand']
[u'inzamam', u'shoaib', u'face', u'fit', u'race']
[u'revers', u'nation', u'trend']
[u'biggest', u'drop', u'month']
[u'johnson', u'make', u'long', u'await', u'return', u'bull']
[u'juve', u'extend', u'lead']
[u'keelti', u'warn', u'aust', u'tsunami', u'toll', u'rise']
[u'king', u'croc']
[u'latham', u'miss', u'labor', u'tsunami', u'brief']
[u'speed']
[u'legend', u'pilot', u'world', u'record', u'jump']
[u'light', u'plane', u'crash', u'melbourn', u'airport']
[u'local', u'council', u'critic', u'wast', u'standard']
[u'macqueen', u'dismiss', u'role', u'perth', u'team']
[u'magic', u'million', u'sale', u'record']
[u'arrest', u'aust', u'diplomat', u'bash']
[u'charg', u'stab']
[u'charg', u'polic', u'imperson']
[u'die', u'alburi', u'crash']
[u'hospitalis', u'incid', u'cape', u'barren']
[u'surviv', u'day', u'lose', u'bush']
[u'surviv', u'hang', u'glide', u'accid']
[u'maryborough', u'kick', u'anniversari', u'celebr']
[u'mayor', u'put', u'support', u'rail', u'transport', u'timber']
[u'meatwork', u'oper']
[u'monaro', u'drought', u'coastal', u'region', u'improv']
[u'mother', u'happi', u'longer', u'miss']
[u'moya', u'retain', u'chennai', u'open', u'titl', u'donat', u'prize']
[u'newman', u'make', u'narrow', u'escap', u'burn', u'race']
[u'tram', u'plan', u'bendigo', u'lake']
[u'upset', u'arsenal', u'newcastl']
[u'need', u'carer', u'law', u'review', u'find']
[u'shark', u'cull', u'gold', u'coast', u'canal']
[u'pharmacist', u'train', u'deal', u'depress']
[u'list', u'expect', u'boost', u'profil']
[u'donat', u'tonn', u'indonesia']
[u'livestock', u'export', u'jump']
[u'nurs', u'reject', u'govt', u'offer']
[u'compani', u'deni', u'agent', u'orang', u'claim']
[u'compani', u'blame', u'high', u'region', u'petrol']
[u'oliv', u'breast', u'cancer', u'fight', u'studi']
[u'opposit', u'seek', u'clariti', u'home', u'buyer']
[u'outback', u'hotel', u'sale', u'garner']
[u'penguin', u'fare', u'better', u'expect', u'iceberg']
[u'peplin', u'happi', u'drug', u'trial', u'result']
[u'pharmacist', u'join', u'rural', u'depress', u'crusad']
[u'polic', u'continu', u'search', u'miss', u'tourist']
[u'polic', u'follow', u'diver', u'request', u'rescu', u'mission']
[u'polic', u'investig', u'campsi', u'arm', u'robberi']
[u'polic', u'investig', u'cape', u'barren', u'island', u'shoot']
[u'polic', u'investig', u'disappear', u'coupl']
[u'polic', u'scale', u'search', u'miss']
[u'polic', u'seek', u'help', u'miss', u'woman']
[u'powel', u'urg', u'rethink', u'tsunami']
[u'press', u'amid', u'tsunami', u'devast']
[u'properti', u'owner', u'advis', u'obtain', u'permit']
[u'public', u'hous', u'rent', u'hike', u'notic', u'mistak']
[u'pub', u'close', u'follow', u'brawl']
[u'lib', u'govt', u'sell', u'airport', u'stake']
[u'radcliff', u'london', u'marathon']
[u'rain', u'eas', u'move', u'west']
[u'rat', u'demonstr', u'languag', u'skill']
[u'real', u'mark', u'barca', u'slump']
[u'record', u'tourism', u'caus', u'south', u'coast', u'strain']
[u'cross', u'overwhelm', u'tsunami', u'relief', u'respons']
[u'repeat', u'drink', u'drive', u'offend', u'get', u'month', u'sentenc']
[u'rise', u'sea', u'threaten', u'port', u'island']
[u'rotari', u'focus', u'rebuild', u'tsunami', u'devast']
[u'rural', u'polic', u'station', u'readi']
[u'diseas', u'expert', u'head', u'aceh']
[u'salvo', u'help', u'farm', u'children', u'return', u'school']
[u'probe', u'bird', u'death', u'olymp']
[u'scientist', u'declar', u'rice', u'trial', u'safe']
[u'scientist', u'rule', u'link', u'decemb', u'quak']
[u'search', u'resum', u'miss', u'cruis', u'ship', u'passeng']
[u'volunt', u'recognis', u'festiv', u'work']
[u'shire', u'defend', u'health', u'plan']
[u'sinn', u'fein', u'know', u'bank', u'heist', u'irish', u'say']
[u'skydiv', u'critic', u'condit', u'accid']
[u'stock', u'market', u'post', u'record', u'high']
[u'summernat', u'clean', u'begin']
[u'sydney', u'kill', u'north', u'west', u'crash']
[u'taskforc', u'track', u'fox']
[u'nurs', u'help', u'maldiv', u'tsunami', u'relief', u'effort']
[u'opposit', u'seek', u'smaller', u'class', u'size']
[u'teacher', u'compil', u'tsunami', u'resourc', u'student']
[u'teenag', u'die', u'bird']
[u'teen', u'critic', u'crash']
[u'thai', u'court', u'approv', u'extradit']
[u'thai', u'restart', u'identifi', u'tsunami', u'victim']
[u'thiev', u'strike', u'bowl', u'club']
[u'velodrom', u'gold', u'bat']
[u'lebanon', u'israel', u'border', u'clash']
[u'hunter', u'valley', u'road']
[u'townsvill', u'respond', u'tsunami', u'relief', u'appeal']
[u'tsunami', u'brief', u'labor', u'minus', u'latham']
[u'tsunami', u'support', u'concert', u'declar', u'success']
[u'kill', u'separ', u'road', u'accid']
[u'ukrain', u'plan', u'iraq', u'pullout', u'soldier', u'kill']
[u'concern', u'student', u'tsunami', u'affect']
[u'peacekeep', u'kill', u'lebanon', u'border', u'clash']
[u'seek', u'million', u'sudan']
[u'deni', u'troop', u'kill', u'iraqi', u'polic', u'civilian']
[u'helicopt', u'crash', u'aceh']
[u'mull', u'home', u'grow', u'militia', u'iraq']
[u'releas', u'prison', u'ghraib']
[u'vet', u'urg', u'help', u'tsunami', u'anim', u'victim']
[u'residenti', u'tower']
[u'stockbrok', u'ban', u'life']
[u'doctor', u'prais', u'tsunami', u'relief', u'work']
[u'warn', u'plan', u'lankan', u'mission']
[u'weather', u'bureau', u'keep', u'cyclon', u'kerri']
[u'weather', u'warn', u'issu', u'lanka']
[u'western', u'power', u'issu', u'profit', u'warn']
[u'westfield', u'group', u'acquir', u'shop', u'complex']
[u'white', u'spadea', u'embarrass', u'sanchez']
[u'woodsid', u'submit', u'plan', u'expans']
[u'worksaf', u'assess', u'shear', u'shed']
[u'world', u'team', u'charg']
[u'world', u'tsunami', u'chariti', u'match']
[u'promot', u'green', u'reconstruct', u'tsunami']
[u'xstrata', u'defend', u'shutdown']
[u'youth', u'input', u'seek', u'technic', u'colleg', u'need']
[u'youth', u'radio', u'come', u'broom']
[u'fund', u'tsunami', u'victim']
[u'abba', u'savour', u'victori', u'israel', u'urg', u'action']
[u'aborigin', u'death', u'custodi', u'case', u'return', u'court']
[u'aborigin', u'seek', u'role', u'fight', u'pest']
[u'ghraib', u'pyramid', u'like', u'cheerlead']
[u'accc', u'rule', u'primus', u'telstra', u'disput']
[u'convoy', u'reach', u'isol', u'indonesian', u'town']
[u'transport', u'cost', u'mount']
[u'albanes', u'tour', u'tarkin']
[u'alic', u'communiti', u'gather', u'tsunami', u'appeal']
[u'advoc', u'multipl', u'vaccin', u'infant']
[u'analyst', u'say', u'nurs', u'minor', u'factor', u'elect']
[u'antarct', u'conqueror', u'return', u'home']
[u'applebi', u'climb', u'world', u'rank']
[u'armstrong', u'set', u'deadlin', u'tour', u'decis']
[u'armi', u'confid', u'indonesian', u'protect', u'aceh']
[u'assist', u'cricket', u'coach', u'head', u'program']
[u'astronom', u'largest', u'know', u'star']
[u'team', u'confid', u'despit', u'loss']
[u'atlant', u'ocean', u'island', u'mail', u'send', u'south', u'america']
[u'aussi', u'wildcard', u'knock', u'hobart']
[u'aust', u'give', u'seychell']
[u'australian', u'share', u'market', u'end', u'record']
[u'aust', u'snooker', u'player', u'deni', u'assault', u'claim']
[u'black', u'hole', u'observ', u'astronom', u'spin']
[u'boati', u'warn', u'rough', u'sea']
[u'bureau', u'keep', u'watch']
[u'burnett', u'shire', u'place', u'chang']
[u'sack', u'erron', u'bush', u'stori']
[u'central', u'banker', u'global', u'growth']
[u'charg', u'drink', u'driver', u'seven', u'time']
[u'chilean', u'judg', u'grant', u'pinochet', u'bail']
[u'china', u'billionth', u'babi', u'pooh', u'pooh', u'commerci']
[u'commiss', u'dive', u'vessel', u'man', u'river']
[u'want', u'underwat', u'mountain']
[u'coria', u'rise', u'occas', u'zealand']
[u'corrug', u'iron', u'steal', u'roof', u'histor']
[u'sleep', u'beat', u'obes']
[u'council', u'look', u'clear', u'tyre']
[u'council', u'flag', u'rate', u'rise', u'fund', u'land', u'handback']
[u'pipelin', u'expect', u'boost', u'electr', u'suppli']
[u'crew', u'confid', u'contain', u'wangari']
[u'crew', u'fight', u'hobart', u'blaze']
[u'cricket', u'post', u'score', u'chariti']
[u'cyclon', u'kerri', u'make', u'presenc', u'felt']
[u'darl', u'water', u'wont', u'reach']
[u'deep', u'water', u'diver', u'own', u'more', u'properti']
[u'devaugh', u'head', u'devast', u'compani', u'collaps']
[u'diabet', u'doctor', u'acquit', u'danger', u'drive']
[u'deep', u'tsunami', u'anim', u'victim', u'rspca']
[u'doctor', u'hope', u'unborn', u'surgeri', u'success']
[u'downer', u'congratul', u'abba', u'victori']
[u'drop', u'rate', u'factor', u'enrol']
[u'drug', u'seiz', u'polic', u'raid', u'home']
[u'dulko', u'advanc', u'hobart']
[u'earli', u'disast', u'warn', u'island', u'meet', u'agenda']
[u'dead', u'bushfir']
[u'guerrouj', u'rare', u'cross', u'countri', u'appear']
[u'explos', u'steal', u'satellit', u'dish', u'bomb']
[u'windfal', u'exet']
[u'fals', u'passport', u'charg', u'withdraw', u'sydney']
[u'feder', u'emphasis', u'time', u'role', u'roch']
[u'guantanamo', u'intellig', u'valu', u'offici']
[]
[u'declar', u'victoria']
[u'firefight', u'battl', u'grass', u'blaze']
[u'firefight', u'contain', u'mount', u'osmond', u'blaze']
[u'fire', u'caus', u'power', u'cut']
[u'fire', u'close', u'south', u'eastern', u'freeway']
[u'food', u'drop', u'bind', u'burketown']
[u'forens', u'team', u'face', u'daunt', u'task', u'thailand']
[u'forget', u'hrbati', u'fin', u'mandarin', u'mistak']
[u'bash', u'tavern', u'worker', u'basebal']
[u'gold', u'price', u'expect', u'bounc']
[u'govt', u'defend', u'focus', u'countri', u'road']
[u'govt', u'deni', u'generat', u'fund', u'claim']
[u'govt', u'hose', u'aceh', u'secur', u'concern']
[u'govt', u'increas', u'weed', u'fund', u'grant']
[u'govt', u'rebuk', u'staff', u'member', u'letter']
[u'govt', u'probe', u'council', u'fund', u'function']
[u'govt', u'put', u'commerci', u'crab', u'fish']
[u'govt', u'seek', u'public', u'comment', u'energi', u'polici']
[u'green', u'scheme', u'push', u'power', u'price']
[u'group', u'want', u'parti', u'environment', u'vision']
[u'guantanamo', u'translat', u'plead', u'guilti']
[u'hayden', u'rest', u'dayer']
[u'health', u'dept', u'warn', u'ross', u'river', u'threat']
[u'heat', u'kill', u'linger', u'locust']
[u'hewitt', u'breez', u'sydney', u'second', u'round']
[u'honda', u'complet']
[u'hospit', u'defend', u'traine', u'intak', u'number']
[u'hospit', u'disput', u'intensifi']
[u'hunter', u'hit', u'higher', u'countri', u'petrol', u'price']
[u'illawarra', u'health', u'chief', u'resign']
[u'imposs', u'mean', u'test', u'school', u'allow']
[u'india', u'crash', u'kill']
[u'indigen', u'leader', u'say', u'prison', u'answer']
[u'indonesia', u'ban', u'milit', u'group', u'offer']
[u'indonesian', u'armi', u'face', u'aceh']
[u'indonesia', u'warn', u'safeti', u'worker', u'aceh']
[u'injur', u'butcher', u'south', u'africa', u'tour']
[u'iraq', u'insurg', u'kill', u'string', u'attack']
[u'isra', u'parliament', u'approv', u'govern', u'coalit']
[u'italian', u'smoker', u'forc', u'outdoor']
[u'jordan', u'confid', u'readi', u'melbourn']
[u'kolkata', u'like', u'venu', u'return', u'game']
[u'labor', u'downplay', u'latham', u'resign', u'talk']
[u'lake', u'wetherel', u'soon', u'open', u'fisher']
[u'latham', u'offic', u'cagey', u'whereabout']
[u'life', u'save', u'grant', u'welcom']
[u'local', u'student', u'boost', u'hospit', u'servic']
[u'lower', u'eyr', u'peninsula', u'fire', u'burn', u'control']
[u'manag', u'team', u'appoint', u'health', u'servic']
[u'charg', u'cape', u'barren', u'island', u'shoot']
[u'manganes', u'assess']
[u'manganes', u'generat']
[u'surrend', u'polic', u'assault']
[u'face', u'court', u'fiji', u'diplomat', u'mug']
[u'acehnes', u'food', u'suppli']
[u'matthew', u'impress', u'aker', u'season', u'form']
[u'mildura', u'microscop']
[u'milit', u'musharraf', u'assassin', u'escap']
[u'minist', u'defend', u'travel', u'expens']
[u'molik', u'advanc', u'sydney']
[u'british', u'troop', u'bind', u'iraq']
[u'morn', u'pill', u'sale']
[u'myskina', u'bow', u'sydney']
[u'natur', u'come', u'onlin', u'launceston']
[u'navi', u'ship', u'reach', u'indonesia', u'friday']
[u'milit', u'attack', u'pose', u'earli', u'challeng', u'abba']
[u'news', u'corp', u'chase', u'stock']
[u'year', u'consult', u'strategi', u'pay']
[u'crew', u'alert', u'temperatur', u'rise']
[u'polic', u'continu', u'search', u'miss', u'tourist']
[u'opposit', u'critic', u'qlds', u'juvenil', u'offend', u'law']
[u'control', u'bushfir', u'kill']
[u'peterhansel', u'despr', u'prevail', u'dakar', u'stage']
[u'pilot', u'error', u'factor', u'hang', u'glider', u'death']
[u'player', u'avail', u'question', u'return', u'appeal']
[u'question', u'vanadium', u'closur']
[u'polic', u'prison', u'escape']
[u'polic', u'plaudit', u'driver']
[u'polic', u'suspect', u'miss', u'burni', u'murder']
[u'power', u'station', u'oper', u'confid', u'goldfield']
[u'pratt', u'bounc', u'canberra', u'classic']
[u'professor', u'advoc', u'cancer', u'research', u'aborigin']
[u'psychiatrist', u'wish', u'help', u'tsunami']
[u'ralli', u'hear', u'iranian', u'persecut']
[u'rebel', u'guarante', u'worker', u'safeti', u'aceh']
[u'research', u'monkey', u'gene', u'link', u'block']
[u'resid', u'complain', u'wine', u'compani', u'smell']
[u'right', u'wing', u'extremist', u'plead', u'guilti', u'arson']
[u'rilli', u'rule', u'player', u'week', u'award']
[u'rooney', u'chelsea', u'recal']
[u'ruddock', u'announc', u'habib', u'releas', u'guantanamo']
[u'aim', u'curb', u'organis', u'crime']
[u'seek', u'advic', u'aceh', u'conflict']
[u'want', u'indonesia', u'charg', u'relief']
[u'school', u'brace', u'traumatis', u'student', u'return']
[u'school', u'support', u'program', u'receiv', u'fund', u'boost']
[u'second', u'dun', u'murder', u'suspect', u'arrest']
[u'seven', u'kill', u'california', u'storm']
[u'sharon', u'issu', u'challeng', u'palestinian', u'leader']
[u'sink', u'swim', u'montreal', u'world', u'titl']
[u'korea', u'launch', u'mobil', u'satellit']
[u'springborg', u'campaign', u'parti']
[u'lanka', u'releas', u'quartet', u'world', u'seri']
[u'lanka', u'tour', u'zealand', u'april']
[u'standardis', u'medic', u'chart', u'patient']
[u'stawel', u'polic', u'station', u'reduc', u'open', u'hour']
[u'studi', u'look', u'type', u'diabet', u'prevent']
[u'submiss', u'seek', u'draft', u'coastal', u'manag']
[u'sudanes', u'communiti', u'celebr', u'peac', u'agreement']
[u'sydney', u'escap', u'drug', u'charg']
[u'tactic', u'crime', u'squad', u'start', u'post']
[u'tasmanian', u'firefight', u'alert']
[u'alic', u'give', u'local', u'industri', u'need', u'boost']
[u'kill', u'kuwait', u'citi', u'shootout']
[u'timber', u'worker', u'accept', u'loss']
[u'time', u'run', u'cert', u'volunt']
[u'tourism', u'flourish', u'east', u'gippsland']
[u'tourism', u'hous', u'develop', u'approv', u'tweed']
[u'tourist', u'number', u'increas']
[u'trade', u'deficit', u'widen', u'billion']
[u'tribut', u'honour', u'ambul', u'servic']
[u'trio', u'bail', u'trampl', u'argentin', u'flag']
[u'tsunami', u'domin', u'island', u'state', u'talk']
[u'tsunami', u'toll', u'rise', u'offici']
[u'charg', u'transmitt', u'attack']
[u'kill']
[u'ukrain', u'confirm', u'yushchenko', u'presid']
[u'ukrain', u'order', u'troop', u'iraq']
[u'soldier', u'face', u'iraq', u'abus', u'court', u'martial']
[u'unit', u'play', u'boro']
[u'court', u'uphold', u'klux', u'klan', u'appeal']
[u'marin', u'boost', u'aceh', u'relief', u'effort']
[u'releas', u'habib', u'charg']
[u'health', u'stress']
[u'vigil', u'urg', u'avoid', u'tsunami', u'relat', u'corrupt']
[u'volker', u'sexual', u'assault', u'case', u'drop']
[u'arriv', u'aceh']
[u'defend', u'arbitr', u'decis']
[u'wall', u'street', u'sneak', u'ahead']
[u'warn', u'leav', u'door', u'open']
[u'warn', u'anim', u'owner', u'temperatur', u'rise']
[u'warn', u'issu', u'offic', u'email', u'scam']
[u'weight', u'loss', u'warn', u'dementia']
[u'wit', u'seek', u'shepparton', u'assault']
[u'acknowledg', u'tail', u'danger', u'bird']
[u'women', u'tour', u'return', u'bell', u'beach']
[u'work', u'rail', u'upgrad', u'begin']
[u'wwii', u'monument', u'seek', u'canberra']
[u'year', u'look', u'bright', u'cattl', u'produc']
[u'kill', u'iraq', u'attack', u'elect', u'loom']
[u'aborigin', u'communiti', u'hold', u'tsunami', u'benefit']
[u'ghraib', u'detaine', u'testifi', u'prison', u'abus']
[u'accc', u'ask', u'probe', u'gambier', u'fuel', u'price']
[u'accc', u'clear', u'coke']
[u'accus', u'murder', u'releas', u'bail']
[u'emerg', u'servic', u'high', u'alert']
[u'adelaid', u'court', u'close', u'incid']
[u'aerial', u'search', u'miss', u'czech', u'tourist']
[u'aerial', u'search', u'miss', u'tourist', u'call']
[u'unveil', u'drug', u'rule']
[u'worker', u'face', u'aceh', u'restrict']
[u'alga', u'outbreak', u'threaten', u'eurobodalla', u'water', u'suppli']
[u'black', u'wilson', u'recal', u'cricket']
[u'apart', u'accus', u'run', u'facto', u'hotel']
[u'appl', u'launch', u'itsi', u'bitsi', u'ipod']
[u'australia', u'chase', u'competit', u'total']
[u'australia', u'celebr', u'plan']
[u'australian', u'arrest', u'cambodia', u'drug', u'charg']
[u'australian', u'offici', u'watch', u'habib']
[u'australia', u'role', u'provid']
[u'aust', u'tsunami', u'toll', u'rise']
[u'author', u'ponder', u'search', u'option']
[u'bashir', u'warn', u'long', u'term', u'deploy', u'aceh']
[u'gun', u'line', u'kooyong']
[u'tide', u'prove', u'troublesom', u'life', u'saver']
[u'blanchett', u'nomin', u'award']
[u'bok', u'boot', u'camp', u'whistleblow', u'dead']
[u'britain', u'revis', u'tsunami', u'toll']
[u'bundaberg', u'paramed', u'help', u'tsunami', u'victim']
[u'bush', u'allawi', u'discuss', u'elect', u'prepar']
[u'bush', u'nomin', u'homeland', u'secur', u'chief']
[u'cadet', u'tour', u'battl', u'field']
[u'canada', u'confirm', u'case', u'diseas']
[u'capriati', u'australian', u'open']
[u'intrus', u'make', u'rude', u'awaken']
[u'carl', u'williamss', u'father', u'bail', u'poor', u'health']
[u'chopper', u'servic', u'seek', u'govt', u'fund']
[u'christian', u'leader', u'urg', u'opposit', u'brothel']
[u'condom', u'crusad', u'rise', u'aid', u'fight']
[u'confid', u'rock', u'lobster', u'industri', u'meet', u'ecolog']
[u'consum', u'confid', u'get', u'year', u'bounc']
[u'council', u'await', u'anim', u'review']
[u'council', u'urg', u'unit', u'tsunami', u'effort']
[u'council', u'discuss', u'rebel', u'club', u'develop']
[u'council', u'work', u'open', u'hepburn', u'spring', u'pool']
[u'courier', u'put', u'parcel', u'destroy']
[u'crash', u'land', u'fear', u'prompt', u'emerg']
[u'cyclon', u'kerri', u'move', u'coast']
[u'cyclon', u'kerri', u'weaken']
[u'death', u'hit', u'dakar', u'ralli']
[u'dent', u'advanc', u'sydney']
[u'discount', u'store', u'damag']
[u'diseas', u'threat', u'lanka', u'small']
[u'dominikov', u'crash', u'canberra']
[u'drink', u'driver', u'escap', u'jail', u'term']
[u'miss', u'dead', u'bushfir']
[u'emerg', u'chief', u'inspect', u'damag']
[u'timor', u'nation', u'compani']
[u'european', u'wasp', u'nest', u'alic', u'spring']
[u'expert', u'warn', u'whoop', u'cough', u'epidem']
[u'farmer', u'forc', u'kill', u'stock', u'injur', u'fire']
[u'farmer', u'welcom', u'darl', u'river', u'flow']
[u'feder', u'open', u'kooyong', u'account']
[u'fiji', u'militari', u'challeng', u'govt', u'coup', u'fallout']
[u'firefight', u'battl', u'balmor', u'blaze']
[u'firm', u'audit', u'tsunami', u'relief', u'effort']
[u'gale', u'claim', u'kent', u'wooden', u'fielder']
[u'gallop', u'stick', u'state', u'issu']
[u'gaze', u'celebr', u'style']
[u'gerrard', u'give', u'liverpool', u'leagu', u'edg']
[u'giant', u'bank', u'import']
[u'govt', u'council', u'work', u'eros']
[u'govt', u'boost', u'flower', u'festiv', u'fund']
[u'govt', u'stand', u'highway', u'upgrad', u'plan']
[u'govt', u'follow', u'nation', u'trauma', u'centr']
[u'govt', u'urg', u'stop', u'crop', u'trial']
[u'govt', u'warn', u'travel', u'aceh']
[u'grandstand', u'destroy']
[u'grazier', u'face', u'jail', u'land', u'clear', u'case']
[u'group', u'call', u'councillor', u'code', u'conduct']
[u'group', u'seek', u'explan', u'indigen']
[u'harvey', u'norman', u'sale', u'growth', u'cool']
[u'hast', u'back', u'australia', u'celebr']
[u'heart', u'scrap', u'tynecastl', u'sale', u'liverpool', u'everton']
[u'hewitt', u'molik', u'lead', u'sydney', u'charg']
[u'hewitt', u'sydney', u'quarter']
[u'hickss', u'lawyer', u'claim', u'doubl', u'standard']
[u'high', u'demand', u'forc', u'colleg', u'close', u'cours']
[u'homicid', u'squad', u'investig', u'toronto', u'man', u'death']
[u'host', u'activ', u'australia']
[u'hotel', u'truck', u'crash', u'block', u'highway']
[u'howard', u'sadden', u'bushfir']
[u'hunter', u'valley', u'win', u'fetch', u'dollar']
[u'hussey', u'readi', u'answer', u'duti']
[u'indonesia', u'give', u'foreign', u'troop', u'exit', u'deadlin']
[u'injur', u'wilkinson', u'desper', u'tour', u'zealand']
[u'insur', u'compani', u'centr', u'storm']
[u'iraqi', u'plan', u'boost', u'secur', u'forc']
[u'itali', u'prepar', u'euro']
[u'johansson', u'underlin', u'slam', u'credenti']
[u'jone', u'name', u'squad']
[u'katich', u'clark', u'doubt']
[u'labor', u'launch', u'elect', u'blitz']
[u'landown', u'urg', u'control', u'locust', u'number']
[u'latham', u'consid', u'futur']
[u'council', u'urg', u'govt', u'leav', u'habib']
[u'lawyer', u'urg', u'govt', u'bring', u'hick', u'home']
[u'leather', u'compani', u'sell', u'oper']
[u'lobster', u'compani', u'confid', u'futur']
[u'local', u'fishermen', u'help', u'rebuild', u'fish', u'industri']
[u'dead', u'woman', u'injur', u'collis']
[u'jail', u'internet', u'bank', u'scam']
[u'kill', u'crash', u'adelong', u'hotel']
[u'masur', u'target', u'scud', u'davi']
[u'memori', u'servic', u'celebr', u'makgatho', u'mandela', u'life']
[u'mildura', u'sport', u'centr', u'creditor', u'miss']
[u'molik', u'stosur', u'continu', u'form']
[u'mountain', u'road', u'repair', u'start']
[u'call', u'gordon', u'estat', u'complaint']
[u'call', u'surf', u'lifesav', u'fund']
[u'stromlo', u'assist', u'space', u'blob', u'research']
[u'musician', u'miriam', u'hyde', u'die', u'age']
[u'narromin', u'offer', u'practic', u'help', u'tsunami']
[u'nasa', u'comet', u'probe', u'launch']
[u'neighbour', u'take', u'wind', u'develop', u'sail']
[u'mobil', u'shake', u'dial']
[u'plastic', u'help', u'surgeon', u'rebuild', u'face']
[u'nicorett', u'gold', u'coast']
[u'dead', u'fire']
[u'apolog', u'habib']
[u'northern', u'cyclon', u'watch']
[u'brace', u'bushfir', u'condit']
[u'central', u'coast', u'control']
[u'danger', u'continu', u'day']
[u'govt', u'fail', u'upgrad', u'danger', u'intersect']
[u'govt', u'readi', u'habib', u'return', u'carr']
[u'jail', u'assault', u'bundaberg', u'polic']
[u'offer', u'help', u'crew']
[u'plan', u'exclus', u'zone', u'dolphin']
[u'face', u'doctor', u'shortag']
[u'sniffer', u'dog', u'drug', u'bust']
[u'price', u'bubbl', u'higher']
[u'spill', u'follow', u'fatal', u'truck', u'crash']
[u'oil', u'silverchair', u'star', u'tsunami']
[u'ombudsman', u'reject', u'robertss', u'claim', u'lose', u'record']
[u'overwhelm', u'respons', u'tsunami', u'appeal']
[u'pakistan', u'bat', u'adelaid']
[u'pakistan', u'snatch', u'thrill']
[u'parent', u'program', u'prove', u'popular']
[u'peopl', u'urg', u'comment', u'coal', u'expans']
[u'picker', u'accommod', u'shortag', u'anger', u'grape', u'grower']
[u'suspend', u'abus', u'victim', u'repay']
[u'polic', u'dismiss', u'sight', u'miss']
[u'polic', u'pleas', u'great', u'southern', u'driver', u'conduct']
[u'polic', u'prepar', u'dismantl', u'forest', u'blockad']
[u'polic', u'question', u'suspect', u'secur', u'guard']
[u'polic', u'search', u'miss', u'fire']
[u'polic', u'urg', u'calm', u'miss']
[u'power', u'storm', u'kill']
[u'explor', u'mission', u'fail']
[u'marin', u'expert', u'help', u'rehabilit', u'maldiv']
[u'predict', u'budget', u'surplus']
[u'rain', u'eas', u'drought', u'condit']
[u'realiti', u'brother', u'greer']
[u'region', u'polic', u'chang', u'work', u'focus']
[u'report', u'urg', u'care', u'mobil', u'phone']
[u'retail', u'drag', u'ord']
[u'rich', u'jump', u'hospit', u'queue', u'opposit']
[u'rough', u'sea', u'forc', u'suspens', u'coast', u'search']
[u'roxon', u'fear', u'latham', u'sick', u'damag', u'labor']
[u'rumsfeld', u'dismiss', u'salvador', u'option', u'iraq']
[u'russian', u'repriev', u'public', u'beer']
[u'russian', u'wonder', u'happen', u'general', u'winter']
[u'santo', u'end', u'explor', u'hand']
[u'scientist', u'review', u'ramp', u'propos']
[u'second', u'death', u'hit', u'dakar', u'race']
[u'sharon', u'congratul', u'abba']
[u'softwar', u'firm', u'sue']
[u'spray', u'man', u'arrest']
[u'state', u'dental', u'health', u'western', u'mediev']
[u'steam', u'second', u'engin', u'refurbish']
[u'stosur', u'continu', u'form']
[u'student', u'deter', u'orang', u'campus', u'transfer']
[u'submiss', u'seek', u'public', u'boatsh']
[u'sudan', u'peac', u'pact', u'fail', u'stop', u'darfur', u'violenc']
[u'tamworth', u'water', u'restrict', u'continu']
[u'crew', u'fight', u'grass', u'fire']
[u'distilleri', u'export', u'vodka', u'russia']
[u'deliber']
[u'heritag', u'council', u'approv', u'develop']
[u'tasmanian', u'rememb', u'tsunami', u'dead', u'friday']
[u'team', u'head', u'lanka', u'assess', u'damag']
[u'team', u'save', u'burn', u'livestock']
[u'teen', u'fall', u'metr']
[u'temperatur', u'soar', u'south', u'east']
[u'tennant', u'dengu', u'inspect', u'continu']
[u'thailand', u'seek', u'speed', u'tsunami', u'recoveri', u'effort']
[u'theft', u'prompt', u'review', u'secur']
[u'court', u'drug']
[u'kill', u'miss', u'landslid']
[u'toddler', u'drown', u'belconnen', u'pool']
[u'tori', u'websit', u'conserv']
[u'tourist', u'escap', u'crash', u'minor', u'injuri']
[u'tour', u'worth', u'armstrong', u'doesnt', u'ride']
[u'travel', u'compani', u'appoint', u'administr']
[u'trust', u'believ', u'water', u'restrict', u'sustain']
[u'trust', u'propos', u'altern', u'tourist', u'tram', u'rout']
[u'tsunami', u'death', u'toll', u'revis']
[u'tsunami', u'leav', u'thousand', u'place']
[u'tsunami', u'boost', u'prawn', u'sale']
[u'brother', u'charg', u'secur', u'guard', u'death']
[u'wound', u'gaza', u'explos']
[u'guantanamo', u'detaine', u'free']
[u'univers', u'flat', u'rippl']
[u'turn', u'donor', u'attent', u'forget', u'crise']
[u'firm', u'portman']
[u'market', u'dip', u'amid', u'negat', u'profit', u'report']
[u'soldier', u'kill', u'western', u'iraq']
[u'vedder', u'grohl', u'tenaci', u'play', u'benefit']
[u'crew', u'continu', u'bushfir', u'battl']
[u'seek', u'rais', u'fund', u'vessel']
[u'admit', u'lack', u'offend', u'placement', u'protocol']
[u'nurs', u'seek', u'action', u'disput']
[u'opposit', u'promis', u'finish', u'freeway', u'extens']
[u'warn', u'murali', u'team', u'world']
[u'weather', u'chang', u'help', u'firefight', u'effort']
[u'webber', u'scorch', u'test', u'track']
[u'search', u'iraq', u'report']
[u'woman', u'good', u'behaviour', u'bond', u'centrelink', u'fraud']
[u'youth', u'charg', u'attack', u'train']
[u'zimbabw', u'press', u'regul']
[u'aceh', u'rebel', u'seek', u'ceas', u'talk']
[u'offer', u'help', u'bushfir', u'clean']
[u'agassi', u'injuri', u'crisi']
[u'aircraft', u'join', u'battl', u'fire']
[u'alleg', u'satellit', u'dish', u'bomber', u'court']
[u'annan', u'call', u'decis', u'action', u'climat', u'chang']
[u'anti', u'forestri', u'protest', u'blockad', u'weld', u'valley', u'road']
[u'assess', u'wetland', u'polici', u'welcom']
[u'atletico', u'fin', u'race', u'chant']
[u'aussi', u'ref', u'chase', u'world', u'spot']
[u'australia', u'romp', u'histor']
[u'australian', u'diver', u'bodi', u'recov', u'south', u'africa']
[u'burn', u'start', u'contain', u'west']
[u'box', u'promot', u'king', u'sue', u'espn']
[u'british', u'unveil', u'billion', u'dollar', u'plan', u'fight']
[u'broadband', u'plan', u'concern', u'radio', u'ham']
[u'bushfir', u'smoke', u'waft', u'melbourn']
[u'bushfir', u'team', u'talli', u'damag']
[u'caller', u'confirm', u'mount', u'osmond', u'deliber']
[u'chines', u'interest', u'hope', u'rail', u'boost']
[u'clark', u'volunt', u'fire', u'line']
[u'cloth', u'furnitur', u'donat', u'victim']
[u'coal', u'strategi', u'secur', u'industri']
[u'comet', u'crasher', u'probe', u'solar', u'system', u'origin']
[u'communiti', u'drive', u'tsunami', u'appeal', u'success', u'mayor']
[u'concern', u'express', u'skill', u'shortag']
[u'construct', u'start', u'gympi', u'polic', u'station']
[u'coria', u'auckland', u'open']
[u'council', u'consid', u'tough', u'water', u'control']
[u'councillor', u'donat', u'wag', u'tsunami', u'appeal']
[u'court', u'adjourn', u'policeman', u'neglig', u'drive', u'case']
[u'crash', u'pilot', u'suffer', u'heart', u'attack']
[u'crew', u'hope', u'contain', u'western', u'blaze']
[u'cricket', u'plan', u'walk', u'gall', u'relief', u'fund']
[u'crow', u'exhibit', u'innat', u'abil', u'tool']
[u'cyclon', u'kerri', u'move', u'slowli', u'south']
[u'cyclon', u'kerri', u'cross', u'coast', u'tomorrow']
[u'davenport', u'pull', u'send', u'stosur']
[u'death', u'toll', u'landslid', u'rise']
[u'dent', u'forc', u'sydney']
[u'depardieu', u'quiz', u'link', u'fugit', u'businessman']
[u'villier', u'post', u'stage', u'dakar', u'mourn', u'meoni']
[u'dodemaid', u'back', u'evolut']
[u'predict', u'citrus', u'restrict', u'lift', u'march']
[u'driver', u'escap', u'road', u'train', u'accid', u'minor']
[u'driver', u'charg', u'drug', u'offenc', u'roadsid']
[u'driver', u'death', u'prompt', u'fresh', u'call', u'intersect']
[u'dulko', u'hobart', u'final']
[u'ecstasi', u'dealer', u'place', u'good', u'behaviour', u'bond']
[u'engin', u'frustrat', u'aceh', u'secur']
[u'fairfax', u'assess', u'option', u'purchas']
[u'fairfax', u'quiet', u'network', u'rumour']
[u'fals', u'emerg', u'alarm', u'frustrat', u'author']
[u'famili', u'unharm', u'drive', u'shoot']
[u'farmer', u'receiv', u'assist', u'follow', u'sever']
[u'feder', u'govt', u'back', u'leve', u'bank', u'upgrad']
[u'feder', u'davenport', u'name', u'seed', u'open']
[u'fesa', u'urg', u'communiti', u'prepar', u'season']
[u'firefight', u'hope', u'bring', u'hobart', u'blaze']
[u'firefight', u'work', u'contain', u'great', u'lake', u'blaze']
[u'servic', u'fear', u'danger', u'season']
[u'fish', u'trawler', u'tow', u'safe', u'hervey']
[u'plead', u'guilti', u'burn', u'chicken']
[u'flintoff', u'bowl', u'fourth', u'test']
[u'forecast', u'warn', u'kerri', u'erod', u'beach']
[u'fergi', u'assist', u'line', u'sydney', u'post']
[u'head', u'bail', u'condit', u'modifi']
[u'fossil', u'fuel', u'cut', u'warm', u'earth']
[u'fossil', u'prove', u'mammal', u'lunch', u'babi', u'dinosaur']
[u'foster', u'renew', u'southcorp', u'specul']
[u'foul', u'smell', u'put', u'griffith', u'resid', u'nose']
[u'palestinian', u'isra', u'dead']
[u'fourth', u'bird', u'death', u'vietnam']
[u'gallop', u'reluct', u'wish', u'latham']
[u'gilchrist', u'hint', u'warn', u'return']
[u'gilchrist', u'sceptic', u'futur']
[u'gloucest', u'grant', u'improv', u'local', u'busi', u'websit']
[u'govern', u'tripl', u'fund', u'contribut']
[u'govt', u'ask', u'reassur', u'race', u'develop']
[u'govt', u'ask', u'industri', u'pitch', u'technic']
[u'govt', u'fund', u'fish', u'count']
[u'govt', u'discuss', u'habib', u'transfer']
[u'govt', u'face', u'nation', u'water', u'shortag']
[u'griev', u'mother', u'flower', u'tsunami', u'memori']
[u'health', u'servic', u'announc', u'execut']
[u'heritag', u'bodi', u'condit', u'approv', u'smith']
[u'hewitt', u'continu', u'sydney', u'titl', u'push']
[u'hewitt', u'sydney', u'semi']
[u'high', u'tech', u'surveil', u'gambier', u'prison']
[u'highway', u'wire', u'rope', u'barrier']
[u'hiker', u'warn', u'grampian', u'danger']
[u'hmas', u'kanimbla', u'arriv', u'banda', u'aceh']
[u'homecom', u'lucki', u'tourist']
[u'hong', u'kong', u'polic', u'seek', u'cash', u'wield', u'stranger']
[u'hous', u'livestock', u'lose']
[u'hubbl', u'help', u'astronom', u'star', u'hatcheri']
[u'hunter', u'hors', u'fetch', u'dollar', u'magic', u'million']
[u'indonesia', u'say', u'relief', u'effort', u'go']
[u'indonesia', u'send', u'troop', u'aceh']
[u'industri', u'experi', u'fast', u'track', u'program']
[u'inquiri', u'examin', u'support', u'option', u'depress']
[u'investor', u'confid', u'record', u'high']
[u'iranian', u'judiciari', u'summon', u'nobel', u'laureat']
[u'iran', u'school', u'kill']
[u'iraqi', u'minist', u'resign', u'protest']
[u'find', u'childcar', u'worker', u'deserv', u'rise']
[u'provid', u'need', u'servic', u'region', u'allianc']
[u'jakarta', u'readi', u'talk', u'aceh', u'rebel']
[u'jobless', u'rate', u'hit', u'histor']
[u'judd', u'sign', u'eagl']
[u'juventus', u'snap', u'chelsea', u'discard', u'mutu']
[u'kalgoorli', u'tourist', u'centr', u'state']
[u'kanimbla', u'arriv', u'aceh', u'today']
[u'kiss', u'offend', u'delay', u'sentenc', u'hear']
[u'laser', u'spark', u'sunshin', u'coast', u'airport', u'alert']
[u'latham', u'stay', u'despit', u'ill']
[u'lender', u'assess', u'tsunami', u'damag', u'tamil', u'area']
[u'lifesav', u'report', u'posit', u'start', u'smoke']
[u'liquid', u'consid', u'creeda', u'sell']
[u'littl', u'support', u'nationwid', u'speed', u'penalti']
[u'lobbi', u'group', u'demand', u'tight', u'safeti', u'check']
[u'log', u'resum', u'protest', u'arrest']
[u'arrest', u'camp', u'brawl']
[u'critic', u'condit', u'adelaid', u'court']
[u'mareeba', u'fear', u'dead', u'thailand', u'arriv', u'home']
[u'mayor', u'deni', u'councillor', u'influenc']
[u'measur', u'protect', u'urangan', u'beach', u'eros']
[u'mental', u'health', u'profession', u'urg', u'tsunami']
[u'merg', u'health', u'servic', u'restructur', u'workforc']
[u'motiv', u'hospit', u'break', u'unknown']
[u'back', u'govern', u'aborigin', u'trust']
[u'confid', u'albani', u'justic', u'complex', u'proceed']
[u'urg', u'fair', u'latham']
[u'sling', u'begin', u'elect', u'campaign']
[u'sydney', u'council', u'name']
[u'declar', u'ban']
[u'govt', u'defend', u'hospit', u'queue', u'jumper']
[u'govt', u'support', u'local', u'council', u'noxious', u'weed']
[u'opposit', u'rais', u'speed', u'camera', u'concern']
[u'prepar', u'bushfir', u'risk']
[u'film', u'maker', u'shine', u'sundanc']
[u'offici', u'count', u'cost', u'fire']
[u'price', u'rise']
[u'oneil', u'battl', u'celtic', u'star']
[u'oneil', u'resign']
[u'opposit', u'join', u'mental', u'health', u'debat']
[u'palestinian', u'kill', u'take', u'pregnant', u'woman']
[u'pari', u'club', u'agre', u'tsunami', u'debt', u'freez']
[u'peak', u'bodi', u'investig', u'hostel', u'escap', u'claim']
[u'polic', u'inform', u'man', u'assault']
[u'polic', u'incur', u'credit', u'card', u'fee']
[u'polic', u'investig', u'hospit', u'mismanag', u'claim']
[u'polic', u'investig', u'tweed', u'crash']
[u'polic', u'seek', u'oper', u'murder', u'suspect']
[u'polic', u'mull', u'grind', u'search', u'miss', u'tourist']
[u'polic', u'probe', u'death', u'local', u'crime', u'figur']
[u'polic', u'promis', u'inquiri']
[u'polic', u'seek', u'help', u'investig', u'hotel']
[u'polic', u'seek', u'wit', u'dubbo', u'shoot']
[u'polic', u'suspect', u'miss', u'murder']
[u'poll', u'put', u'carr', u'govt', u'support', u'time']
[u'pope', u'guard', u'bemoan', u'mission', u'imposs']
[u'portman', u'takeov', u'talk', u'prompt', u'foreign', u'ownership']
[u'power', u'failur', u'black', u'kuala', u'lumpur']
[u'power', u'struggl', u'grip', u'scottish', u'rugbi']
[u'princ', u'harri', u'apologis', u'nazi', u'fanci', u'dress']
[u'princip', u'train', u'program', u'opposit']
[u'prison', u'commiss', u'control', u'room']
[u'prostat', u'cancer', u'treatment', u'make', u'bone', u'brittl']
[u'public', u'help', u'seek', u'solv', u'fire', u'tasmania']
[u'wine', u'toast', u'korea']
[u'racq', u'anger', u'toowoomba', u'high', u'fuel', u'price']
[u'regul', u'prostitut', u'law', u'finalis']
[u'road', u'rage', u'leav', u'hospit']
[u'rower', u'begin', u'peru', u'tahiti', u'journey']
[u'russian', u'billionair', u'give', u'yuko', u'share']
[u'safeti', u'campaign', u'warn', u'railway', u'cross']
[u'sale', u'magic', u'million', u'auction']
[u'saudi', u'dissid', u'sentenc', u'prison', u'lash']
[u'schumach', u'love']
[u'scientist', u'urg', u'govt', u'weed', u'concern']
[u'scud', u'open']
[u'second', u'hospit', u'cut', u'surgeri']
[u'secur', u'scare', u'see', u'bind', u'plane', u'turn']
[u'shark', u'spotter', u'govern', u'fund']
[u'shell', u'refineri', u'leak', u'control']
[u'shoaib', u'seri', u'inzamam']
[u'celebr', u'mileston']
[u'skandia', u'skipper', u'sue', u'hydraul', u'failur']
[u'speed', u'cost', u'darwin', u'licenc']
[u'spielberg', u'bring', u'lincoln', u'biopic', u'screen']
[u'spiritu', u'vital', u'indigen', u'health']
[u'sprint', u'test', u'measur', u'cane', u'toad', u'toxic']
[u'lankan', u'envoy', u'deni', u'tamil', u'claim']
[u'lankan', u'militari', u'stop', u'deliveri', u'tamil']
[u'sting', u'send', u'thailand', u'world']
[u'stock', u'rise', u'despit', u'balloon', u'trade', u'deficit']
[u'strauss', u'notch', u'protea', u'toil']
[u'studi', u'show', u'busi', u'support', u'port', u'expans']
[u'sudanes', u'presid', u'promis', u'peac', u'darfur']
[u'support', u'gallop', u'govern', u'drop']
[u'support', u'swing']
[u'takeov', u'specul', u'fail', u'market']
[u'teenag', u'plead', u'guilti', u'light', u'bushfir']
[u'tenni', u'unit', u'rais', u'tsunami', u'cash']
[u'tenterfield', u'look', u'fluorid', u'water', u'suppli']
[u'thailand', u'seek', u'diver', u'pick', u'fall', u'reef']
[u'thatcher', u'plead', u'guilti', u'coup', u'role']
[u'thatcher', u'admit', u'coup', u'role', u'sourc', u'say']
[u'escap', u'dickson', u'hous']
[u'time', u'govt', u'admit', u'mistak', u'labor']
[u'toddler', u'drown', u'prompt', u'supervis']
[u'tree', u'lopper', u'admit', u'threaten', u'group', u'chainsaw']
[u'tribe', u'protector', u'demand', u'journalist', u'surrend']
[u'tsunami', u'project', u'increas', u'opportun']
[u'tsunami', u'predict', u'impoverish', u'million']
[u'tsunami', u'warn']
[u'turk', u'kidnap', u'seven', u'employe', u'kill']
[u'iraqi', u'shiit', u'cleric', u'aid', u'kill']
[u'uncompetit', u'gold', u'coast', u'cost', u'local', u'motorist']
[u'unit', u'hold', u'chelsea']
[u'give', u'hunt', u'iraq']
[u'pressur', u'indonesia', u'bashir', u'jail']
[u'vandal', u'target', u'tamworth', u'school']
[u'victorian', u'ask', u'donat', u'sperm']
[u'vietnames', u'fishermen', u'kill', u'territori', u'disput']
[u'doctor', u'send', u'suppli', u'lanka']
[u'warn', u'consid', u'world', u'comeback', u'pont']
[u'surf', u'break', u'close', u'crayfish', u'trawler']
[u'swimmer', u'warn', u'danger', u'condit']
[u'water', u'restrict', u'remain', u'ballarat']
[u'webber', u'fastest']
[u'west', u'indi', u'deserv', u'respect', u'say', u'pont']
[u'william', u'brim', u'confid', u'ahead', u'open']
[u'expect', u'strong']
[u'xstrata', u'sharehold', u'meet', u'takeov']
[u'youth', u'bail', u'assault', u'year']
[u'soldier', u'colombian', u'helicopt', u'crash']
[u'weed', u'erad', u'list']
[u'actu', u'fear', u'child', u'care', u'rise', u'hurt', u'parent']
[u'woman', u'help', u'bushfir', u'recoveri', u'centr']
[u'adelaid', u'dethron', u'king']
[u'administr', u'beat', u'nation', u'trust', u'futur']
[u'african', u'refuge', u'bind', u'australia']
[u'agassi', u'test', u'injur', u'practic', u'match']
[u'albani', u'group', u'put', u'forward', u'altern', u'hospit', u'site']
[u'albani', u'resid', u'mark', u'tsunami', u'remembr']
[u'alic', u'spring', u'magistr', u'pleas', u'appeal']
[u'risk', u'riot', u'rodeo']
[u'altern', u'water', u'sourc', u'actew']
[u'annan', u'appoint', u'special', u'envoy', u'tsunami', u'relief']
[u'arson', u'suspect', u'spate']
[u'asian', u'tsunami', u'toll', u'reach']
[u'asic', u'mull', u'vessel', u'buyout', u'tsunami', u'victim']
[u'attack', u'forc', u'gaza', u'cross', u'closur']
[u'aussi', u'motorcyclist', u'win', u'second', u'dakar', u'stage']
[u'australia', u'record', u'histor']
[u'australia', u'face', u'execut', u'skill', u'shortag']
[u'australia', u'grab', u'wicket', u'lara']
[u'australian', u'open', u'celebr', u'year']
[u'australian', u'need', u'tsunami', u'victim']
[u'australian', u'telescop', u'track', u'huygen', u'descent']
[u'australia', u'tsunami', u'death', u'toll', u'rise']
[u'australia', u'thrash', u'windi', u'seri', u'open']
[u'burn', u'continu', u'grampian', u'blaze']
[u'ball', u'gam', u'court', u'govern', u'make', u'contact']
[u'bank', u'outlook', u'drag', u'market']
[u'bendigo', u'servic', u'rememb', u'tsunami', u'victim']
[u'bevan', u'lead']
[u'biki', u'link', u'suspect', u'mogriguy', u'shoot']
[u'bomb', u'threat', u'jakarta', u'embassi']
[u'boot', u'scooter', u'converg', u'tamworth']
[u'britain', u'lower', u'tsunami', u'toll']
[u'british', u'embassi', u'bomb', u'threat', u'hoax']
[u'bundaberg', u'leak', u'prompt', u'evacu']
[u'bushfir', u'victim', u'receiv', u'gratia', u'payment']
[u'calcul', u'risk', u'let', u'prison', u'attend', u'daughter']
[u'caldecott', u'win', u'second', u'dakar', u'stage']
[u'park', u'decis', u'anger', u'cabarita', u'resid']
[u'car', u'impound', u'wollongong', u'street', u'race']
[u'cataract', u'gorg', u'host', u'extrem', u'kayak', u'event']
[u'chainsaw', u'vandal', u'trash', u'access', u'bridg']
[u'chariti', u'promis', u'account', u'tsunami']
[u'contract', u'problem', u'blame', u'station', u'construct']
[u'cooler', u'weather', u'help', u'boost', u'hunter', u'tourism', u'say']
[u'cosgrov', u'say', u'aceh', u'deadlin', u'concern']
[u'council', u'announc', u'australia', u'program']
[u'council', u'servic', u'reflect', u'tsunami', u'tragedi']
[u'council', u'urg', u'affect', u'landhold', u'seek']
[u'cowra', u'investig', u'emerg', u'water', u'suppli', u'option']
[u'bundaberg', u'campus', u'regist', u'decreas', u'offer']
[u'cray', u'fishermen', u'protest', u'surf', u'break', u'ban']
[u'cream', u'world', u'soccer', u'play', u'tsunami', u'benefit']
[u'czink', u'advanc', u'canberra', u'final']
[u'darl', u'flow', u'wilcannia']
[u'darwin', u'troop', u'threat', u'aceh']
[u'detect', u'head', u'tourist', u'search']
[u'down', u'power', u'line', u'hinder', u'driver', u'escap']
[u'driver', u'escap', u'train']
[u'condit', u'prompt', u'bushfir', u'warn']
[u'dubbo', u'doctor', u'quit', u'frustrat']
[u'elect', u'delay', u'nurs', u'disput']
[u'push', u'hear']
[u'eurobodalla', u'water', u'woe', u'draw', u'govt', u'respons']
[u'father', u'brother', u'visit']
[u'feder', u'beat']
[u'feder', u'face', u'roddick', u'kooyong', u'final']
[u'final', u'challeng', u'ukrain', u'poll', u'file']
[u'caus', u'traffic', u'delay', u'pacif', u'highway']
[u'destroy', u'more', u'home']
[u'firefight', u'continu', u'battl', u'southern', u'blaze']
[u'firefight', u'contain', u'grampian', u'blaze', u'overnight']
[u'victim', u'mother', u'tell', u'heartbreak']
[u'year', u'girl', u'latest', u'dakar', u'ralli', u'death']
[u'folk', u'gather', u'tamar', u'valley', u'festiv']
[u'financ', u'offic', u'jail', u'chariti', u'theft']
[u'arrest', u'simultan', u'drug', u'raid']
[u'honolulu', u'flounder']
[u'wicket', u'ntini', u'rock', u'england', u'gloom']
[u'fruit', u'treatment', u'caus', u'concern']
[u'fume', u'incid', u'prompt', u'smelter', u'investig']
[u'gallop', u'defend', u'health', u'polici']
[u'gaza', u'milit', u'defi', u'peac']
[u'general', u'cheer', u'andaman', u'island', u'relief', u'effort']
[u'gerrard', u'demand', u'improv', u'unit']
[u'gold', u'coast', u'teen', u'win', u'gold', u'pac']
[u'gold', u'coast', u'return', u'aceh', u'devast']
[u'gondola', u'leav', u'high', u'venic']
[u'governor', u'tour', u'zone', u'burn', u'continu']
[u'govt', u'pledg', u'elder', u'home']
[u'grant', u'fund', u'tropic', u'research', u'laboratori']
[u'grind', u'search', u'continu', u'miss', u'tourist']
[u'group', u'welcom', u'barrington', u'top', u'rule']
[u'group', u'welcom', u'surg', u'tourism']
[u'grower', u'hope', u'lift', u'grape', u'price']
[u'gunnedah', u'hospit', u'close', u'chemic', u'scare']
[u'gunn', u'invest', u'fingal', u'valley', u'properti']
[u'haqu', u'restrict', u'zimbabw', u'second', u'test']
[u'hervey', u'teen', u'charg', u'tsunami', u'fraud']
[u'hervey', u'hold', u'memori', u'servic', u'tsunami']
[u'hewitt', u'bigger', u'meaner']
[u'hewitt', u'fight']
[u'hewitt', u'racquet', u'rais', u'money', u'tsunami', u'appeal']
[u'hewitt', u'stosur', u'sydney', u'final']
[u'hewitt', u'sydney', u'final']
[u'high', u'commiss', u'staff', u'rob', u'fiji']
[u'holiday', u'period', u'see', u'rise', u'prison', u'contraband']
[u'weather', u'news', u'servic']
[u'hypertens', u'case', u'increas', u'year']
[u'indigen', u'star', u'ooz', u'talent', u'say', u'long']
[u'indigen', u'star', u'ooz', u'talent', u'say', u'long']
[u'indonesia', u'want', u'perman', u'ceas', u'rebel']
[u'interim', u'bushfir', u'plan', u'releas']
[u'ioc', u'appeal', u'reject']
[u'isra', u'coalit', u'bolster', u'peac', u'process', u'abba']
[u'skier', u'drown']
[u'judd', u'stay', u'eagl', u'nest']
[u'kabbalah', u'centr', u'holocaust']
[u'kimberley', u'archiv', u'project', u'gain', u'support']
[u'kimberley', u'servic', u'mourn', u'tsunami', u'victim']
[u'kraft', u'pull', u'aim', u'kid']
[u'kyabram', u'sieg', u'end', u'peac']
[u'labor', u'look', u'depos', u'latham']
[u'lake', u'wetherel', u'remain', u'close']
[u'land', u'sale', u'expect', u'eas', u'snowi', u'hous', u'pressur']
[u'languag', u'teacher', u'vote', u'offer', u'week']
[u'latham', u'didnt', u'plan', u'reveal', u'ill']
[u'latham', u'sign', u'red']
[u'latham', u'successor', u'talk', u'respons']
[u'lawyer', u'seek', u'accompani', u'habib', u'home']
[u'leav', u'harri', u'fergi', u'say']
[u'lightn', u'caus', u'fire']
[u'littl', u'know', u'iraqi', u'group', u'claim', u'cleric', u'kill']
[u'llewellyn', u'focus', u'health', u'portfolio', u'opposit']
[u'locust', u'spray', u'risk', u'export', u'agforc', u'warn']
[u'lowan', u'tour', u'region']
[u'arrest', u'water', u'rage', u'incid']
[u'meninde', u'region', u'record', u'tourism', u'boom']
[u'north', u'coast', u'share', u'disast', u'mitig', u'fund']
[u'miller', u'profit', u'warn', u'cut', u'stock', u'valu']
[u'mine', u'group', u'reject', u'foreign', u'ownership', u'critic']
[u'miss', u'tourist', u'behaviour', u'unusu']
[u'mobil', u'phone', u'stalk', u'rise', u'polic']
[u'molik', u'hewitt', u'boost', u'open', u'draw']
[u'molik', u'hewitt', u'stosur', u'prepar', u'face', u'heat']
[u'molik', u'set', u'australian', u'final']
[u'molik', u'shoulder', u'weight', u'expect']
[u'morient', u'wrap', u'liverpool']
[u'motorist', u'save', u'monto', u'accid']
[u'mourinho', u'face', u'wrath', u'fergi']
[u'offer', u'pick', u'fundrais']
[u'seek', u'certainti', u'health', u'servic', u'amalgam']
[u'network', u'reveal', u'testimoni', u'jackson', u'case']
[u'feral', u'bait', u'develop']
[u'kill', u'russian', u'plane', u'crash']
[u'korea', u'resum', u'nuclear', u'talk']
[u'norseman', u'polic', u'increas', u'beat']
[u'locust', u'threaten', u'victoria']
[u'polic', u'shoot', u'break']
[u'polic', u'welcom', u'home', u'phuket']
[u'telescop', u'play', u'role', u'space', u'probe']
[u'offic', u'shoot', u'sydney', u'jewel', u'robberi']
[u'opinion', u'poll', u'cost', u'latham', u'leadership', u'alli']
[u'opposit', u'defend', u'privat', u'health', u'care', u'comment']
[u'palm', u'island', u'bail', u'applic', u'adjourn']
[u'payrol', u'increas', u'fuel', u'region', u'fear']
[u'physic', u'attack', u'rise']
[u'pitt', u'press', u'confer', u'japanes', u'eye']
[u'polar', u'bear', u'count', u'find', u'arctic', u'europ']
[u'polic', u'appeal', u'inform', u'miss']
[u'polic', u'hunt', u'suspect', u'agn', u'water', u'death']
[u'polic', u'investig', u'belconnen', u'death']
[u'policeman', u'courag', u'prais', u'melbourn', u'chase']
[u'polic', u'return', u'tsunami', u'mission']
[u'polic', u'seiz', u'worth', u'ecstasi']
[u'port', u'hedland', u'second', u'polic', u'station']
[u'plate', u'fasten', u'caus', u'dashboard', u'burn']
[u'princ', u'harri', u'rule', u'auschwitz', u'visit']
[u'probe', u'make', u'descent', u'titan']
[u'project', u'shed', u'light', u'coastal', u'water', u'qualiti']
[u'protea', u'strauss', u'centuri']
[u'banana', u'tip', u'compet', u'lismor', u'market']
[u'survey', u'household', u'spend', u'habit']
[u'prepar', u'western', u'fire']
[u'road', u'fatal', u'figur', u'drop']
[u'rochus', u'gonzalez', u'meet', u'auckland', u'final']
[u'fire', u'devast', u'nativ', u'speci']
[u'grant', u'help', u'develop', u'loxton', u'riverfront']
[u'sale', u'hospit', u'clear', u'financi', u'mismanag']
[u'serial', u'rapist', u'link', u'attack']
[u'shark', u'warn', u'issu', u'fleurieu', u'peninsula']
[u'kill', u'taliban', u'attack']
[u'south', u'burnett', u'begin', u'vintag', u'harvest']
[u'stock', u'lose', u'grind', u'price', u'jump']
[u'strawberri', u'field', u'forev']
[u'surfer', u'gather', u'mourn', u'tsunami', u'victim']
[u'swell', u'pump', u'cyclon', u'kerri', u'wont', u'cross']
[u'tasmanian', u'gather', u'rememb', u'tsunami', u'victim']
[u'teen', u'charg', u'sheep', u'kill']
[u'thai', u'tsunami', u'trauma', u'spark', u'foreign', u'ghost', u'sight']
[u'thousand', u'expect', u'riverland', u'rodeo']
[u'thousand', u'turn', u'coonawarra']
[u'timor', u'talk', u'seek', u'sunris', u'project', u'shelv']
[u'total']
[u'treatment', u'plant', u'address', u'water', u'qualiti', u'woe']
[u'troop', u'arriv', u'home', u'iraq']
[u'tsunami', u'effort', u'unit', u'australian', u'howard']
[u'tsunami', u'vessel', u'hit', u'shipwreck']
[u'museum', u'return', u'indigen', u'remain']
[u'underground', u'cabl', u'failur', u'cut', u'shop', u'centr']
[u'union', u'warn', u'nurs', u'exodus', u'region', u'payment']
[u'nuclear', u'team', u'visit', u'iran']
[u'abus', u'undermin', u'intern', u'report']
[u'make', u'round', u'offer']
[u'support', u'aceh', u'exit', u'deadlin']
[u'wagga', u'hear', u'investig', u'polic', u'brutal']
[u'wait', u'list', u'tip', u'increas', u'theatr']
[u'nation', u'launch', u'elect']
[u'terrorist', u'jail', u'sentenc', u'uphold']
[u'wetland', u'blame', u'strong', u'smell']
[u'windi', u'chase']
[u'xstrata', u'sharehold']
[u'young', u'liber', u'reject', u'queensland', u'merger', u'plan']
[u'zheng', u'win', u'hobart', u'titl']
[u'zimbabw', u'bright', u'start', u'bangladesh']
[u'year', u'retriev', u'antarct']
[u'act', u'labor', u'leader', u'ask', u'privaci', u'latham']
[u'adelaid', u'darwin', u'railway', u'pull', u'weight']
[u'agassi', u'cours', u'aust', u'open']
[u'ancient', u'babylon', u'wreck', u'forc', u'british']
[u'annan', u'urg', u'iraqi', u'leader', u'encourag', u'sunni', u'vote']
[u'anxious', u'girlfriend', u'embassi', u'bomb', u'threat']
[u'arm', u'robber', u'target', u'food', u'store']
[u'atheist', u'lose', u'presidenti', u'prayer', u'protest']
[u'australia', u'play', u'role', u'titan', u'probe', u'mission']
[u'backburn', u'threat']
[u'bangladesh', u'haqu', u'youngest', u'seven']
[u'bichel', u'kill', u'blue', u'final', u'hop']
[u'bodi', u'iraqi', u'roadsid']
[u'britain', u'pledg', u'eas', u'develop', u'countri']
[u'licens', u'overhaul', u'crane', u'oper']
[u'canadian', u'politician', u'resign', u'stripperg']
[u'carr', u'urg', u'quick', u'resolut', u'leadership', u'woe']
[u'cash', u'boost', u'hobart', u'intern']
[u'cole', u'rule', u'spain', u'racial', u'abus']
[u'colombian', u'soldier', u'kill', u'sleep', u'comrad']
[u'consum', u'watchdog', u'record', u'festiv', u'period']
[u'council', u'uncertain', u'propos', u'tech', u'colleg']
[u'crew', u'contain', u'goulburn', u'bushfir']
[u'canio', u'salut', u'polit', u'racist', u'italian']
[u'driver', u'suspect', u'accident', u'start', u'fire']
[u'easi', u'blue']
[u'educ', u'minist', u'order', u'report', u'school']
[u'iraqi', u'kill', u'tank', u'collis']
[u'electr', u'worker', u'basslink', u'project', u'disput']
[u'seek', u'donat', u'fight', u'gunn']
[u'feder', u'beat', u'hewitt']
[u'feder', u'roll', u'roddick', u'kooyong', u'final']
[u'fergi', u'hit', u'mourinho']
[u'film', u'historian', u'unveil', u'year', u'soccer']
[u'chines', u'leader', u'coma']
[u'geraldton', u'control']
[u'geraldton', u'resid', u'evacu', u'bushfir', u'approach']
[u'gilchrist', u'gillespi', u'miss', u'dayer']
[u'gonzalez', u'captur', u'titl']
[u'govt', u'blame', u'brain', u'drain']
[u'govt', u'claim', u'deliveri', u'elect', u'indigen']
[u'govt', u'play', u'lobster', u'fish', u'ban']
[u'gravesen', u'complet', u'real', u'madrid']
[u'heidfeld', u'quicker', u'william', u'test']
[u'henman', u'quit', u'british', u'davi', u'team']
[u'hewitt', u'triumph', u'earli', u'scare']
[u'home', u'evacu', u'california', u'seep']
[u'hondo', u'check', u'bangladesh', u'haqu', u'clean']
[u'hondo', u'handl', u'bangladesh']
[u'hornsbi', u'train', u'station', u'upgrad']
[u'hundr', u'gather', u'funer', u'mandela']
[u'icac', u'investig', u'patient', u'inform']
[u'iceberg', u'collis', u'good', u'news', u'penguin']
[u'ierodiaconou', u'finish', u'second']
[u'indonesia', u'clarifi', u'aceh', u'relief', u'deadlin', u'comment']
[u'indonesia', u'seek', u'peac', u'talk', u'aceh', u'rebel']
[u'insur', u'urg', u'encourag', u'bushfir', u'safeti']
[u'iraqi', u'govern', u'announc', u'elect', u'secur']
[u'iraqi', u'prison', u'escap', u'ghraib', u'transfer']
[u'ivanov', u'win', u'canberra', u'classic']
[u'jazz', u'lover', u'ask', u'public', u'transport']
[u'kiwi', u'hold', u'nation', u'revamp', u'leagu', u'boss']
[u'labor', u'leav', u'downplay', u'latham', u'leadership', u'talk']
[u'lightn', u'strike', u'put', u'hospit']
[u'macklin', u'expect', u'latham', u'healthi', u'return']
[u'face', u'court', u'polic', u'chase']
[u'kill', u'coupl', u'serious', u'injur', u'collis']
[u'marley', u'remain', u'stay', u'jamaica']
[u'maruyama', u'grab', u'hawaii', u'lead', u'miss']
[u'mcewen', u'win', u'road', u'race', u'championship']
[u'melbourn', u'park', u'form', u'guid']
[u'molik', u'set', u'australian', u'final']
[u'molik', u'win', u'aussi', u'battl', u'sydney', u'crown']
[u'palestinian', u'presid', u'swear']
[u'danger', u'tsunami', u'region', u'fish']
[u'prison', u'time', u'teenag', u'counterfeit']
[u'north', u'casson', u'steer', u'warrior', u'victori']
[u'price', u'rise', u'suppli', u'worri']
[u'olymp', u'rower', u'break', u'silenc', u'slap', u'suspens']
[u'opposit', u'critic', u'yarra', u'river', u'health']
[u'opposit', u'leader', u'shock', u'bushfir', u'devast']
[u'opposit', u'seek', u'action', u'patient', u'record']
[u'pacifist', u'stage', u'anti', u'protest', u'bush']
[u'palestinian', u'presid', u'swear']
[u'polic', u'associ', u'prais', u'offic', u'action']
[u'polic', u'concern', u'miss']
[u'polic', u'continu', u'search', u'murder', u'firearm']
[u'polic', u'enlist', u'help', u'search', u'miss']
[u'polic', u'murder', u'weapon', u'roadsid']
[u'polic', u'python', u'crocodil', u'bondi', u'unit']
[u'polic', u'releas', u'murder', u'victim']
[u'princ', u'harri', u'reject', u'demand', u'apolog']
[u'safeti', u'equip', u'bind', u'china']
[u'road', u'histor', u'jetti', u'upgrad']
[u'victim', u'consid', u'legal', u'action']
[u'saturn', u'moon', u'probe', u'reveal', u'possibl', u'shorelin']
[u'schneider', u'take', u'golden', u'guitar']
[u'sharon', u'sever', u'contact', u'palestinian', u'govt']
[u'singapor', u'airlin', u'beef', u'flight', u'schedul']
[u'lankan', u'peac', u'hop', u'elev']
[u'supertrawl', u'ban', u'water']
[u'sweden', u'halv', u'number', u'miss', u'tsunami']
[u'sydney', u'kill', u'explos']
[u'tamworth', u'countri', u'music', u'festiv']
[u'thai', u'shop', u'kill']
[u'save', u'boat', u'blaze']
[u'tidbinbilla', u'lend', u'hand', u'titan', u'mission']
[u'titan', u'probe', u'transmit', u'data']
[u'trade', u'deleg', u'leader', u'die', u'darwin']
[u'agenc', u'celebr', u'millionth', u'intern']
[u'unit', u'film', u'air', u'time']
[u'soldier', u'guilti', u'ghraib', u'abus']
[u'soldier', u'guilti', u'murder', u'iraqi', u'teenag']
[u'troop', u'shoot', u'dead', u'seven', u'iraqi']
[u'vaughan', u'hit', u'umpir', u'light', u'decis']
[u'venezuela', u'cut', u'colombian', u'tie', u'kidnap']
[u'wall', u'street', u'rebound', u'inflat', u'news']
[u'wheel', u'problem', u'caldecott', u'dakar', u'challeng']
[u'women', u'championship', u'shape', u'open']
[u'bodi', u'dump', u'iraq', u'roadsid']
[u'ghraib', u'abus', u'give', u'year', u'jail']
[u'assist', u'aceh', u'hospit', u'repair']
[u'african', u'sniff', u'mozambiqu', u'landmin']
[u'afridi', u'lift', u'pakistan', u'competit', u'total']
[u'agassi', u'confirm', u'starter', u'open']
[u'algeria', u'berber', u'sign', u'peac', u'deal']
[u'urg', u'cultur', u'awar', u'train']
[u'ansar', u'islam', u'post', u'deni', u'kill', u'iraqi', u'cleric']
[u'aussi', u'prevail', u'hobart']
[u'aust', u'open', u'worth', u'slam', u'hewitt']
[u'australian', u'open', u'worth', u'slam', u'say', u'hewitt']
[u'australian', u'troop', u'paus', u'relief', u'work', u'reflect']
[u'australia', u'prevail', u'hobart']
[u'australia', u'rememb', u'tsunami', u'victim']
[u'booni', u'put', u'feet', u'chariti', u'walk']
[u'booni', u'put', u'feet', u'chariti', u'walk']
[u'bosnian', u'serb', u'crime', u'suspect', u'surrend']
[u'die', u'camp', u'accid']
[u'brack', u'urg', u'labor', u'resolv', u'leadership', u'woe']
[u'brisban', u'mourner', u'hope', u'good', u'come', u'tsunami']
[u'bushfir', u'threat', u'prompt', u'develop', u'applic']
[u'bushrang', u'troubl', u'warrior']
[u'caldecott', u'dakar', u'sixth', u'overal']
[u'crash', u'bedroom', u'injur', u'sleep', u'coupl']
[u'chelsea', u'sight', u'glori', u'gunner', u'stumbl']
[u'cherri', u'orchard', u'close', u'tsunami', u'donat']
[u'china', u'comment', u'leader', u'health']
[u'china', u'push', u'steel', u'industri', u'record', u'output']
[u'colombia', u'refus', u'apologis', u'venezuelan']
[u'compass', u'servic']
[u'concert', u'church', u'servic', u'tsunami', u'victim']
[u'worri', u'busway']
[u'convict', u'ghraib', u'abus', u'make', u'final', u'plea']
[u'cosgrov', u'tight', u'lip', u'length', u'aceh', u'deploy']
[u'council', u'propos', u'camera', u'bondi']
[u'darwin', u'church', u'hit', u'snag', u'distribut']
[u'davenport', u'australian', u'open']
[u'mourn', u'tsunami', u'victim']
[u'death', u'toll', u'asian', u'tsunami', u'disast', u'pass']
[u'dehydr', u'kill', u'bog', u'driver', u'polic']
[u'dementieva', u'doubt', u'open']
[u'denomin', u'unit', u'rememb', u'tsunami', u'disast']
[u'educ', u'union', u'critic', u'colleg', u'plan']
[u'elect', u'victori', u'ratifi', u'iraq', u'stanc', u'bush']
[u'consid', u'talk', u'spanish', u'govern']
[u'feder', u'wari', u'hewitt', u'threat']
[u'crew', u'monitor', u'uluru', u'blaze']
[u'servic', u'chief', u'criticis', u'reckless', u'driver']
[u'servic', u'warn', u'eyr', u'flare', u'danger']
[u'victim', u'urg', u'access', u'relief', u'fund']
[u'russian', u'commando', u'kill', u'stand']
[u'garden', u'polici', u'worri', u'disabl']
[u'gibb', u'hammer', u'centuri', u'england', u'wilt']
[u'govt', u'defend', u'indigen', u'cancer', u'treatment', u'abil']
[u'govt', u'join', u'council', u'protect', u'bird', u'habitat']
[u'gunmen', u'kill', u'philippin']
[u'hang', u'glider', u'die', u'sorrento', u'crash']
[u'heat', u'wave', u'hit', u'west']
[u'hollywood', u'music', u'star', u'join', u'forc', u'tsunami']
[u'honour', u'tsunami', u'dead', u'commit', u'futur']
[u'hous', u'explos', u'investig', u'continu']
[u'huygen', u'reveal', u'titan', u'creme', u'brule', u'centr']
[u'investig', u'launch', u'tree', u'crush']
[u'inzi', u'warn', u'shoaib', u'speed', u'showdown']
[u'iranian', u'nobel', u'peac', u'laureat', u'snub', u'summon']
[u'iraq', u'govt', u'announc', u'elect', u'restrict']
[u'iraqi', u'guard', u'worker', u'kill']
[u'israel', u'disappoint', u'abba', u'speech']
[u'isra', u'armi', u'give', u'free', u'rein', u'tackl', u'milit']
[u'isra', u'helicopt', u'fire', u'weapon', u'workshop']
[u'kava', u'licenc', u'control', u'black', u'market']
[u'land', u'water', u'asset', u'separ', u'difficult', u'issu']
[u'point', u'hous', u'develop', u'give', u'ahead']
[u'malaga', u'snatch', u'moral', u'boost', u'sevilla']
[u'die', u'boat', u'accid']
[u'drown', u'gold', u'coast', u'beach']
[u'maruyama', u'hawaii']
[u'milit', u'storm', u'stadium', u'complex', u'indian', u'kashmir']
[u'minibus', u'plummet', u'ditch', u'injur']
[u'nervous', u'night', u'firefight']
[u'opera', u'soprano', u'victoria', u'angel', u'die']
[u'opposit', u'welcom', u'govt', u'accept', u'program']
[u'palestinian', u'vote', u'offici', u'resign', u'alleg', u'cheat']
[u'perth', u'mourner', u'cast', u'grief', u'adrift']
[u'physicist', u'count', u'einstein', u'relat']
[u'pig', u'slump']
[u'pole', u'vault', u'record', u'fall']
[u'polic', u'arrest', u'uluru', u'bushfir']
[u'polic', u'charg', u'shoot', u'murder']
[u'polic', u'detain', u'shoot', u'death']
[u'polic', u'bodi', u'adelaid']
[u'polic', u'investig', u'stab', u'death']
[u'polic', u'investig', u'suspici', u'warehous']
[u'polic', u'rescu', u'burn', u'build']
[u'politician', u'seek', u'european', u'swastika']
[u'portug', u'withdraw', u'forc', u'iraq']
[u'ranger', u'scotland']
[u'ranger', u'triumph']
[u'rebel', u'group', u'claim', u'abduct', u'iraqi', u'nation']
[u'right', u'interven', u'rwanda', u'iraq']
[u'rome', u'polic', u'claim', u'christi', u'auction', u'paint', u'steal']
[u'rudd', u'assur', u'indonesia', u'support', u'effort']
[u'safin', u'look', u'breez', u'earli', u'round']
[u'saudi', u'arabia', u'deploy', u'secur']
[u'serena', u'feder', u'centr', u'court']
[u'sharapova', u'play', u'feud', u'talk']
[u'taibu', u'taylor', u'zimbabw', u'hop', u'aliv']
[u'indigen', u'communiti', u'seek', u'return', u'ancestr']
[u'tasmanian', u'join', u'nation', u'mourn']
[u'tasmanian', u'urg', u'reflect', u'tsunami', u'victim']
[u'reggina', u'frustrat', u'inter']
[u'thai', u'embassi', u'host', u'tsunami', u'servic']
[u'theft', u'polic', u'investig']
[u'thousand', u'join', u'mandela', u'son', u'funer']
[u'tractor', u'roll', u'kill']
[u'tsunami', u'memori', u'hold', u'brisban']
[u'tsunami', u'mourner', u'strength']
[u'tsunami', u'relief', u'effort', u'macklin', u'say']
[u'injur', u'parti', u'brawl']
[u'target', u'tsunami', u'victim', u'remot', u'indonesia']
[u'flag', u'aceh', u'militari', u'relief', u'effort']
[u'investig', u'claim', u'prison', u'abus']
[u'releas', u'detaine', u'afghanistan']
[u'vaughan', u'fin', u'match', u'umpir', u'outburst']
[u'victorian', u'reflect', u'tsunami', u'disast']
[u'bushfir', u'forc', u'home', u'evacu']
[u'warrior', u'bushrang']
[u'wilkinson', u'face', u'nation', u'wipe']
[u'young', u'liber', u'dismiss', u'amalgam', u'nation']
[u'zimbabw', u'second', u'test']
[u'charg', u'albani', u'drug', u'blitz']
[u'abba', u'order', u'halt', u'anti', u'israel', u'attack']
[u'consid', u'cancel', u'militari', u'exercis']
[u'administr', u'appoint', u'indigen', u'communiti']
[u'africa', u'unpay', u'debt', u'wipe']
[u'agassi', u'record', u'easi']
[u'alic', u'darwin', u'train', u'celebr', u'anniversari']
[u'anti', u'smoke', u'law', u'impact', u'game', u'venu']
[u'arson', u'suspect', u'toilet', u'block']
[u'aussi', u'doctor', u'head', u'aceh']
[u'australia', u'chase', u'africa', u'windi', u'test', u'tour']
[u'australian', u'iraqi', u'regist', u'histor']
[u'australian', u'offici', u'tell', u'habib', u'hell', u'free']
[u'australian', u'open', u'worth', u'slam', u'say', u'hewitt']
[u'author', u'patrol', u'north', u'west', u'forest', u'area']
[u'babi', u'injur', u'fall', u'train']
[u'backlash', u'agenc', u'possibl']
[u'bafta', u'nomin', u'winslet', u'winslet']
[u'ballina', u'council', u'promis', u'fund', u'tsunami', u'relief']
[u'bangkok', u'subway', u'crash', u'injur']
[u'bangladesh', u'posit', u'start', u'chase']
[u'bat', u'depth', u'aussi', u'domin', u'say', u'lehmann']
[u'beatti', u'tire', u'watch', u'labor', u'bleed']
[u'beazley', u'best', u'latham', u'go', u'beatti']
[u'beazley', u'capabl', u'polit', u'comeback']
[u'bendigo', u'rememb', u'tsunami', u'victim']
[u'bird', u'number', u'coorong', u'drop']
[u'bluescop', u'disput', u'put', u'job', u'risk']
[u'bomb', u'southern', u'thailand', u'kill']
[u'boon', u'keen', u'chariti', u'walk']
[u'british', u'conserv', u'defect', u'labour', u'parti']
[u'brochur', u'highlight', u'problem', u'worker', u'face']
[u'bronco', u'premiership', u'say', u'lockyer']
[u'broom', u'rememb', u'tsunami', u'victim', u'flower']
[u'bumblebe', u'infiltr', u'tasmania']
[u'busi', u'answer', u'help', u'farmer']
[u'button', u'pledg', u'commit', u'track']
[u'elect', u'loom', u'councillor', u'quit']
[u'cahil', u'equalis', u'earn', u'everton', u'draw']
[u'extra', u'fund', u'hospit', u'probe']
[u'input', u'age', u'care', u'plan']
[u'quick', u'action', u'propos']
[u'call', u'independ', u'inquiri', u'mine', u'debacl']
[u'carr', u'support', u'hospit', u'review']
[u'carr', u'urg', u'feder', u'labor', u'problem']
[u'central', u'australian', u'fire', u'bring', u'control']
[u'defend', u'firefight']
[u'cleari', u'miss', u'rest', u'season']
[u'closer', u'actor', u'earli', u'golden', u'globe']
[u'claim', u'hous', u'figur', u'slow', u'economi']
[u'coach', u'carter', u'score', u'offic']
[u'communiti', u'support', u'candelo', u'festiv']
[u'communiti', u'walkathon', u'boost', u'tsunami']
[u'concern', u'african', u'fish', u'infest']
[u'contamin', u'scare', u'forc', u'kindi', u'closur']
[u'council', u'seek', u'solut', u'stink', u'alga']
[u'coupl', u'return', u'home', u'sumatra', u'tsunami', u'ordeal']
[u'croatian', u'voter', u'return', u'presid', u'offic']
[u'crowd', u'number', u'folk', u'festiv']
[u'cruis', u'boat', u'look', u'tsunami']
[u'montreal', u'world', u'champ']
[u'deal', u'reach', u'jetti', u'manag', u'plan']
[u'denmark', u'warn', u'threat', u'tsunami', u'worker']
[u'depress', u'go', u'unnot', u'elder']
[u'detail', u'habib', u'return', u'negoti']
[u'develop', u'optimist', u'scamand', u'bridg', u'project']
[u'dubbo', u'bat', u'world', u'record', u'inning']
[u'dust', u'cover', u'western']
[u'earthquak', u'regist', u'micronesia']
[u'eighteen', u'iraq', u'attack']
[u'elvi', u'king', u'number']
[u'emerg', u'servic', u'unit', u'black']
[u'etoo', u'bail', u'sluggish', u'barcelona']
[u'cyclon', u'fail', u'deliv', u'rain']
[u'extra', u'crew', u'send', u'eyr', u'peninsula']
[u'farmer', u'ask', u'help', u'curb', u'noxious', u'weed']
[u'probe', u'premier', u'leagu', u'brawl']
[u'crew', u'battl', u'blaze']
[u'firefight', u'watch', u'arsonist']
[u'trainload', u'uranium', u'arriv']
[u'kill', u'mosul', u'clash']
[u'flight', u'attend', u'furious', u'qanta', u'foreign']
[u'chines', u'communist', u'parti', u'head', u'die']
[u'storm', u'player', u'receiv', u'scotland']
[u'foster', u'launch', u'southcorp']
[u'foster', u'wont', u'answer']
[u'french', u'secur', u'dakar', u'doubl', u'caldecott', u'sixth']
[u'gallop', u'sunday', u'trade', u'backflip', u'astound']
[u'gayl', u'injuri', u'cloud', u'pakistan', u'clash']
[u'gene', u'invers', u'make', u'iceland', u'fertil']
[u'gippsland', u'kick', u'tsunami', u'appeal']
[u'gold', u'rush', u'geoffrey', u'globe']
[u'govt', u'consid', u'fund', u'anti', u'prostitut', u'brochur']
[u'govt', u'consid', u'health', u'warn', u'plan', u'yarra']
[u'grain', u'harvest', u'predict', u'grim']
[u'great', u'lake', u'council', u'set', u'hotlin']
[u'griffith', u'council', u'plan', u'chang', u'tourism', u'scheme']
[u'group', u'gain', u'fund', u'control', u'weed', u'damag']
[u'group', u'urg', u'bendigo', u'line', u'stay', u'open']
[u'hawk', u'croc', u'stop', u'tiger']
[u'heritag', u'railway', u'second', u'locomot']
[u'hobart', u'airport', u'woe', u'prompt', u'apolog']
[u'hous', u'financ']
[u'hussey', u'help', u'warrior', u'lead']
[u'ierodiaconou', u'second']
[u'impress', u'safin', u'open', u'melbourn', u'account']
[u'indigen', u'youth', u'circus', u'fund', u'boost']
[u'indonesia', u'clarifi', u'aceh', u'relief', u'deadlin', u'comment']
[u'indonesian', u'vice', u'presid', u'thank', u'gold', u'coast']
[u'inquiri', u'hear', u'killer', u'manipul', u'trial']
[u'iraqi', u'australia', u'prepar', u'vote']
[u'isra', u'troop', u'kill', u'gaza', u'gunmen', u'clash']
[u'jakarta', u'grate', u'aust', u'troop', u'hill']
[u'japan', u'continu', u'devour', u'australian', u'beef']
[u'japanes', u'photojournalist', u'die']
[u'japan', u'rememb', u'earthquak', u'victim', u'year']
[u'kuznetsova', u'denounc', u'dope', u'claim']
[u'labor', u'tell', u'consid', u'leadership', u'decis']
[u'lake', u'resid', u'face', u'water', u'suppli', u'shortag']
[u'lomu', u'miracl', u'comeback']
[u'charg', u'seri', u'burglari']
[u'charg', u'yulara']
[u'critic', u'rock', u'throw']
[u'face', u'court', u'polic', u'assault', u'alleg']
[u'front', u'court', u'shoot', u'murder', u'charg']
[u'court', u'dramat', u'melbourn', u'chase']
[u'face', u'danger', u'drive', u'charg']
[u'face', u'mildura', u'court', u'brawl']
[u'mayor', u'defend', u'public', u'park', u'leas']
[u'mcdonald', u'die', u'cancer']
[u'mickelberg', u'want', u'polic']
[u'mine', u'compani', u'strike', u'workforc', u'deal']
[u'minist', u'promot', u'coal', u'export', u'mexico']
[u'miss', u'bushwalk', u'safe']
[u'motorcyclist', u'fall', u'bike']
[u'doctor', u'head', u'west']
[u'ecosystem', u'map', u'releas']
[u'firefight', u'helicopt', u'unveil']
[u'home', u'assess', u'bushfir', u'risk']
[u'nation', u'galleri', u'chief', u'start']
[u'nixon', u'greet', u'tsunami', u'relief', u'team']
[u'nordic', u'urg', u'tsunami', u'warn', u'probe']
[u'govt', u'widen', u'alga', u'alert']
[u'oakey', u'armi', u'team', u'provid', u'support', u'aceh']
[u'ogradi', u'face', u'vintag', u'challeng', u'tour']
[u'open', u'move', u'familiar', u'rhythm']
[u'peopl', u'urg', u'continu', u'tsunami', u'donat']
[u'perth', u'juri', u'decid', u'stab', u'justifi']
[u'philippin', u'cast', u'blanket', u'jaywalk']
[u'pipe', u'theft', u'music', u'health', u'offici', u'ear']
[u'call', u'attack']
[u'wife', u'undergo', u'medic', u'test']
[u'polic', u'rebel', u'sieg', u'indian', u'kashmir']
[u'polic', u'investig', u'teen', u'attack']
[u'polic', u'search', u'tourist', u'nimbin', u'drug', u'oper']
[u'politician', u'criticis', u'eyr', u'fight']
[u'pressur', u'mount', u'latham']
[u'probe', u'begin', u'kingscliff', u'construct', u'death']
[u'public', u'meet', u'tackl', u'crime', u'west', u'dubbo']
[u'qanta', u'confirm', u'plan', u'job', u'offshor']
[u'opposit', u'resum', u'clark', u'assault']
[u'woman', u'face', u'traffic', u'trial', u'bali']
[u'hit', u'govt', u'technic', u'colleg', u'plan']
[u'rain', u'fuel', u'power', u'pole', u'fire']
[u'rann', u'urg', u'ratepay', u'remov', u'hazard']
[u'regular', u'open', u'gabba', u'return']
[u'research', u'build', u'bot']
[u'resid', u'lobbi', u'western', u'bypass', u'plan']
[u'resid', u'voic', u'concern', u'chicken', u'farm', u'approv']
[u'riverina', u'resid', u'demand', u'truck', u'bypass', u'crash']
[u'road', u'work', u'begin', u'waterfal']
[u'rock', u'lobster', u'wont', u'affect', u'industri', u'govt']
[u'romanian', u'woman', u'give', u'birth']
[u'rooney', u'fate', u'polic', u'hand']
[u'rudd', u'doubt', u'tsunami', u'bring', u'aceh', u'peac']
[u'polic', u'lookout', u'rock', u'thrower']
[u'search', u'continu', u'miss', u'tourist']
[u'search', u'miss', u'bushwalk', u'continu']
[u'serena', u'cruis', u'second', u'round']
[u'servic', u'plan', u'program', u'bundaberg', u'youth']
[u'sharapova', u'straight', u'set']
[u'singh', u'hold', u'honolulu']
[u'smoke', u'alarm', u'save', u'stroke', u'victim', u'life']
[u'somali', u'mayor', u'plead']
[u'southcorp', u'reject', u'foster', u'offer']
[u'lankan', u'govt', u'reloc', u'displac', u'famili']
[u'lanka', u'rais', u'tsunami', u'death', u'toll']
[u'lanka', u'build', u'town', u'tsunami', u'zone']
[u'stosur', u'match', u'mauresmo']
[u'stosur', u'readi', u'upset', u'mauresmo']
[u'student', u'express', u'desir', u'help', u'tsunami', u'victim']
[u'surf', u'condit', u'remain', u'wild']
[u'surgic', u'servic', u'closur', u'communiti', u'best']
[u'sydney', u'ferri', u'price', u'slash']
[u'taibu', u'taylor', u'boost', u'zimbabw', u'hop', u'record']
[u'takeov', u'push']
[u'target', u'recal', u'hamper']
[u'defi', u'nation', u'hous', u'trend']
[u'technolog', u'tsunami', u'relief', u'work']
[u'teen', u'math', u'whiz', u'get', u'immers', u'liquid', u'anim']
[u'teen', u'trio', u'surviv', u'roll']
[u'kill', u'separ', u'accid']
[u'tiger', u'strike', u'earli', u'bull']
[u'toowoomba', u'join', u'elit', u'list']
[u'tourist', u'room', u'occup', u'rat', u'whitsunday']
[u'townsvill', u'health', u'worker', u'boost', u'tsunami', u'effort']
[u'townsvill', u'host', u'ceremoni', u'tsunami', u'victim']
[u'traffic', u'woe', u'expect', u'bridg', u'upgrad']
[u'trescothick', u'half', u'centuri', u'build', u'england', u'lead']
[u'trescothick', u'hit', u'centuri', u'england', u'build', u'advantag']
[u'true', u'believ', u'roll', u'riverland', u'rodeo']
[u'tsunami', u'relief', u'team', u'welcom', u'home']
[u'tsunami', u'relief', u'worker', u'offer', u'counsel']
[u'charg', u'theft', u'tsunami', u'donat', u'bucket']
[u'dead', u'miss', u'cargo', u'ship', u'sink']
[u'testifi', u'sexual', u'assault', u'trial']
[u'forc', u'secret', u'mission', u'iran', u'report']
[u'eas', u'militari', u'restrict', u'indonesia']
[u'minist', u'criticis', u'cull', u'place']
[u'victim', u'rememb', u'tsunami', u'fundrais', u'concert']
[u'wagga', u'land', u'council', u'reopen', u'door']
[u'wagga', u'look', u'special', u'court', u'open']
[u'labor', u'urg', u'quick', u'feder', u'woe']
[u'warwick', u'offic', u'aceh', u'clean']
[u'teen', u'accus', u'light', u'scrub', u'blaze']
[u'water', u'expert', u'visit', u'kimberley', u'area']
[u'waterfal', u'report', u'find', u'lack', u'safeti', u'cultur']
[u'water', u'restrict', u'unlik', u'level', u'hold']
[u'weather', u'hamper', u'firefight', u'effort', u'perth']
[u'wentworth', u'welcom', u'improv', u'internet', u'servic']
[u'west', u'indi', u'intent', u'gabba', u'victori']
[u'wind', u'drop', u'help', u'perth', u'firefight']
[u'wine', u'tempt', u'hollywood', u'visit', u'hunter', u'region']
[u'woman', u'charg', u'sydney', u'man', u'murder']
[u'woodsid', u'energi', u'invest', u'gulf', u'mexico']
[u'report', u'urg', u'greater', u'govern', u'involv']
[u'zarqawi', u'follow', u'renew', u'threat', u'secur']
[u'zola', u'give', u'milan', u'help', u'hand', u'titl', u'race']
[u'journalist', u'kill']
[u'injur', u'bangkok', u'subway', u'crash']
[u'kill', u'poll', u'violenc']
[u'accc', u'probe', u'bakeri', u'price', u'deal']
[u'aceh', u'rebuild', u'cost']
[u'deni', u'culpabl', u'report', u'delay']
[u'actress', u'virginia', u'mayo', u'die']
[u'admin', u'cut', u'boost', u'region', u'hospit', u'servic']
[u'airbus', u'unveil', u'overweight', u'superjumbo']
[u'airli', u'concert', u'rais', u'thousand', u'tsunami', u'caus']
[u'ambul', u'offic', u'fresh']
[u'anderson', u'wish', u'latham', u'quick', u'recoveri']
[u'aspir', u'countri', u'music', u'star', u'make', u'grand', u'final']
[u'aurora', u'australi', u'spectacular', u'light']
[u'australia', u'report']
[u'australia', u'sign', u'energi', u'deal', u'mexico']
[u'bangladesh', u'post', u'seri']
[u'bank', u'stock', u'market', u'record']
[u'beach', u'camera', u'issu', u'state', u'govt']
[u'beazley', u'readi', u'lead']
[u'beazley', u'tight', u'lip', u'leadership']
[u'bendigo', u'back', u'latham']
[u'bendigo', u'univers', u'offer', u'extra', u'place', u'student']
[u'bleak', u'outlook', u'darl', u'river']
[u'blue', u'bat', u'redback']
[u'blue', u'redback', u'match', u'even', u'pois']
[u'bore', u'provid', u'extra', u'water', u'lachlan', u'shire']
[u'bosnian', u'serb', u'jail', u'srebrenica', u'massacr']
[u'escap', u'abduct', u'attempt']
[u'trial', u'stepfath', u'stab', u'death']
[u'broadbridg', u'bodi', u'arriv', u'home']
[u'bull', u'troubl', u'lunch']
[u'bull', u'control', u'hobart']
[u'bushrang', u'struggl', u'hussey', u'doubl']
[u'bush', u'trail', u'place', u'say']
[u'donat', u'post', u'help', u'farmer']
[u'tighten', u'harvest', u'rule']
[u'toughen', u'stock', u'steal', u'law']
[u'canberran', u'rebuild', u'bushfir']
[u'casa', u'confirm', u'complaint', u'griffith', u'airport']
[u'cathol', u'priest', u'kidnap', u'iraq']
[u'child', u'death', u'highlight', u'problem', u'hospit']
[u'chilean', u'spook', u'fals', u'tsunami']
[u'china', u'asia', u'predict', u'increas', u'demand']
[u'coastal', u'group', u'rais', u'conflict', u'concern']
[u'commiss', u'dismiss', u'complaint']
[u'communiti', u'invit', u'step', u'cabinet', u'visit']
[u'communiti', u'rememb', u'bushfir']
[u'concern', u'cours', u'accredit']
[u'cooloola', u'council', u'plan', u'industri', u'estat', u'expans']
[u'cooma', u'dedic', u'servic', u'wwii', u'veteran']
[u'face', u'forc', u'child', u'porn']
[u'coria', u'make', u'confid', u'start']
[u'cosgrov', u'retir', u'juli']
[u'councillor', u'disagre', u'tsunami', u'fund']
[u'council', u'plan', u'water', u'reservoir']
[u'council', u'push', u'tourism', u'market', u'plan']
[u'custom', u'seiz', u'potenti', u'harm', u'collar']
[u'date', u'polic', u'offic', u'arriv']
[u'davenport', u'thrash', u'martinez', u'venus', u'advanc']
[u'dechi', u'dementieva', u'overcom', u'drug', u'taint', u'advanc']
[u'design', u'bushfir', u'memori', u'unveil']
[u'develop', u'continu', u'plan', u'site']
[u'dhaka', u'test', u'even', u'pois', u'taibus', u'maiden']
[u'disney', u'play', u'stori', u'script']
[u'dominikov', u'aussi', u'second', u'round']
[u'dust', u'haze', u'increas', u'risk', u'asthma', u'suffer']
[u'elder', u'woman', u'murder']
[u'emerg', u'equip', u'fail', u'despit', u'upgrad']
[u'exet', u'gear', u'sequel', u'greatest']
[u'extradit', u'order', u'murder', u'suspect']
[u'extra', u'polic', u'crack', u'speed', u'driver']
[u'extra', u'polic', u'guard', u'court', u'face', u'assault']
[u'famili', u'alleg', u'drug', u'runner', u'criticis', u'govt']
[u'reveal', u'posit', u'dope', u'test']
[u'farmer', u'urg', u'continu', u'fight', u'locust']
[u'feder', u'swap', u'tenni', u'racquet', u'cricket']
[u'ferrari', u'honour', u'pole', u'posit', u'pope']
[u'firefight', u'battl', u'blaze', u'near', u'perth']
[u'firefight', u'abil', u'untouch', u'power', u'outag']
[u'caus', u'pile', u'poland']
[u'foodbank', u'centr', u'get', u'feder', u'fund', u'boost']
[u'bank', u'manag', u'jail', u'fraud']
[u'rescu', u'sink', u'houseboat']
[u'fraud', u'squad', u'handl', u'alleg', u'health', u'servic']
[u'fresh', u'outbreak', u'test', u'perth', u'firefight']
[u'glastonburi', u'break', u'cow', u'rest']
[u'global', u'market', u'quiet', u'holiday']
[u'gold', u'coast', u'stosur', u'look', u'futur']
[u'golf', u'club', u'land', u'develop', u'get', u'green', u'light']
[u'govt', u'deni', u'ignor', u'bali', u'drug', u'accus']
[u'govt', u'inform', u'communiti', u'propos', u'pulp']
[u'govt', u'blame', u'waterfal', u'disast', u'survivor', u'say']
[u'grafton', u'teen', u'win', u'starmak', u'titl']
[u'grape', u'expect', u'shatter', u'barossa', u'grower']
[u'hantuchova', u'battl', u'past', u'morigami']
[u'harvey', u'strike', u'warrior', u'lead']
[u'heavi', u'smoke', u'hinder', u'fight']
[u'hec', u'blame', u'drop', u'applic', u'govt']
[u'hoggard', u'magnific', u'seven', u'give', u'england', u'victori']
[u'howard', u'honour', u'fast', u'food', u'chief']
[u'indian', u'embassi', u'guard', u'shoot', u'colleagu']
[u'form', u'mcewen', u'sprint', u'stage']
[u'ingham', u'matern', u'ward', u'close']
[u'investig', u'yacht', u'ferri', u'collis']
[u'iraqi', u'patriot', u'excit', u'vote']
[u'iraq', u'close', u'border', u'elect']
[u'slam', u'drug', u'test', u'out', u'kuznetsova']
[u'janett', u'howard', u'releas', u'hospit']
[u'janett', u'howard', u'test', u'caus', u'concern']
[u'janett', u'howard', u'take', u'hospit']
[u'jaqu', u'thorn', u'lift', u'blue']
[u'jetstar', u'push', u'plan', u'townsvill', u'rout']
[u'jordan', u'talk', u'sale', u'russian', u'billionair']
[u'kean', u'admit', u'titl', u'chelsea', u'lose']
[u'kidnapp', u'free', u'iraqi', u'archbishop']
[u'kingscliff', u'worker', u'strike', u'fatal', u'accid']
[u'kuwait', u'arrest', u'suspect', u'milit']
[u'kuznetsova', u'reject', u'drug', u'claim']
[u'labor', u'farewel', u'latham', u'look', u'futur']
[u'lara', u'issu', u'mcgrath', u'world', u'warn']
[u'latham', u'decis', u'close', u'say', u'carr']
[u'latham', u'soon', u'carr']
[u'latham', u'quit']
[u'latham', u'break', u'silenc']
[u'laver', u'miss', u'aust', u'open', u'trophi', u'present']
[u'lawyer', u'unlik', u'join', u'habib', u'flight', u'home']
[u'local', u'compani', u'win', u'contract', u'runway', u'expans']
[u'mackay', u'build', u'industri', u'jump']
[u'appear', u'court', u'drug', u'import']
[u'arrest', u'capsicum', u'spray', u'scuffl']
[u'arrest', u'sydney', u'murder']
[u'charg', u'offic', u'trap']
[u'convict', u'caus', u'death', u'neglig', u'drive']
[u'hospitalis', u'accident', u'stab']
[u'mayor', u'push', u'garden', u'develop']
[u'minist', u'refus', u'apologis', u'kuznetsova', u'drug']
[u'mix', u'respons', u'gallop', u'sunday', u'trade', u'backflip']
[u'molik', u'home', u'centr', u'court']
[u'molik', u'make', u'bright', u'start']
[u'molik', u'rubbish', u'dope', u'furor']
[u'molik', u'open', u'campaign', u'begin', u'victori']
[u'black', u'player', u'includ', u'super', u'squad']
[u'dump', u'babi', u'hospit']
[u'murder', u'conduct', u'reduc', u'chanc', u'acquitt']
[u'myskina', u'reach', u'second', u'round']
[u'furnac', u'boost', u'smelter', u'effici']
[u'highway', u'stop', u'plan', u'releas', u'public', u'comment']
[u'countri', u'attack', u'iran', u'say']
[u'promot', u'whirlwind', u'afridi']
[u'treasur', u'bow', u'polit']
[u'labor', u'figur', u'latham', u'resign']
[u'host', u'eel', u'home', u'game']
[u'pakistan', u'bank', u'spin', u'coin']
[u'parent', u'welcom', u'educ', u'allow', u'boost']
[u'pentagon', u'slam', u'iran', u'raid', u'report']
[u'perth', u'firefight', u'battl', u'outbreak']
[u'philipson', u'nash', u'lead', u'bull', u'fight']
[u'pike', u'pleas', u'publicis', u'medic', u'mistak']
[u'plan', u'berri', u'event', u'address', u'financi']
[u'pocket', u'rocket', u'spark', u'complaint']
[u'polic', u'face', u'tortur', u'charg']
[u'polic', u'investig', u'melbourn', u'man', u'death']
[u'polic', u'probe', u'rock', u'throw', u'incid']
[u'polic', u'releas', u'drown']
[u'polic', u'superintend', u'appoint']
[u'polic', u'thank', u'volunt', u'crew']
[u'probe', u'tilt', u'train', u'derail', u'continu']
[u'protest', u'scuffl', u'outsid', u'noos', u'attack', u'hear']
[u'protest', u'scuffl', u'outsid', u'court']
[u'rain', u'mar', u'world', u'record', u'inning', u'attempt']
[u'rain', u'keep', u'bushfir', u'threat']
[u'redback', u'exorcis', u'demon', u'blue']
[u'redback', u'restrict', u'blue', u'adelaid']
[u'redund', u'talk', u'continu', u'merg', u'health']
[u'region', u'resourc', u'stretch', u'perth', u'fire', u'rage']
[u'repeat', u'tsunami', u'effort', u'combat', u'hunger', u'food']
[u'report', u'demand', u'council', u'enforc', u'dog', u'polici']
[u'research', u'offer', u'sage', u'advic', u'drinker']
[u'resid', u'voic', u'concern', u'highway', u'bypass']
[u'river', u'flow', u'flush', u'alga', u'lake']
[u'roddick', u'bludgeon', u'georgian', u'submiss']
[u'rspca', u'temporarili', u'close', u'door', u'devonport']
[u'rudd', u'committ', u'leadership', u'aspir']
[u'ruddock', u'move', u'protect', u'tsunami', u'victim', u'famili']
[u'rusedski', u'exorcis', u'demon', u'bjorkman']
[u'rychart', u'win', u'week', u'gong']
[u'count', u'cost', u'bushfir']
[u'fire', u'burn']
[u'drought', u'affect', u'farmer', u'forget']
[u'satellit', u'glitch', u'cut', u'island']
[u'school', u'rank', u'meaningless']
[u'school', u'author', u'downplay', u'rank', u'concern']
[u'scientist', u'work', u'impact', u'natur', u'wrath']
[u'second', u'person', u'charg', u'sydney', u'man', u'murder']
[u'slide', u'rais', u'teen', u'drug', u'awar']
[u'blood', u'bank', u'servic']
[u'springborg', u'want', u'detail', u'energex', u'payout']
[u'state', u'figur', u'beazley']
[u'steadi', u'number', u'sale', u'rockhampton', u'research']
[u'steel', u'disput', u'affect', u'custom']
[u'studi', u'link', u'gene', u'mutat', u'parkinson']
[u'sugar', u'produc', u'assess', u'option']
[u'suicid', u'bomber', u'target', u'shiit', u'parti', u'offic']
[u'swimmer', u'warn', u'mullet', u'season', u'draw', u'shark']
[u'sydney', u'prepar', u'launch', u'massiv', u'airlin']
[u'play', u'australia', u'match']
[u'temporari', u'villag', u'construct', u'begin']
[u'territorian', u'generous', u'tsunami', u'appeal']
[u'thailand', u'tsunami', u'warn', u'month']
[u'tight', u'secur', u'surround', u'hajj', u'pilgrim']
[u'tour', u'franc', u'chief', u'say', u'australia', u'yellow']
[u'tourism', u'council', u'welcom', u'cheaper', u'ferri', u'fare']
[u'tourist', u'number']
[u'tsunami', u'collect', u'tin', u'steal', u'servo']
[u'tsunami', u'commemor', u'propos']
[u'tsunami', u'donat', u'steal', u'roadhous', u'counter']
[u'charg', u'drug', u'raid']
[u'find', u'rich', u'lack', u'generous']
[u'union', u'consid', u'action', u'rural', u'nurs', u'sack']
[u'univers', u'offer', u'small', u'gain']
[u'lift', u'self', u'impos', u'aceh']
[u'unawar', u'aceh', u'terrorist', u'threat']
[u'valuer', u'assess', u'carpentaria', u'shire', u'asset']
[u'violenc', u'continu', u'ahead', u'iraq', u'poll']
[u'coalit', u'split', u'referendum']
[u'polic', u'send', u'team', u'phuket']
[u'warrior', u'round', u'bushrang']
[u'watchdog', u'queri', u'consum', u'protect', u'law']
[u'weed', u'damag', u'grape', u'vine']
[u'western', u'urg', u'cover', u'sandfli']
[u'white', u'wipe', u'star', u'match']
[u'wildcat', u'grace', u'father', u'death']
[u'woman', u'charg', u'stab']
[u'woman', u'hurt', u'snatch']
[u'wright', u'flyer', u'replica', u'launch']
[u'yacht', u'sink', u'coast']
[u'zhao', u'famili', u'forgo', u'state', u'funer']
[u'kill', u'injur', u'highway', u'smash']
[u'year', u'bicycl', u'roll', u'display']
[u'abba', u'fire', u'dozen', u'arafat', u'advis']
[u'engin', u'head', u'maldiv']
[u'advis', u'thank', u'gold', u'coast', u'communiti', u'tsunami']
[u'agassi', u'crush', u'schuettler', u'open', u'final', u'repeat']
[u'airlin', u'worri', u'drag', u'stock']
[u'alleg', u'palm', u'rioter', u'consid', u'legal', u'action']
[u'develop', u'earthi', u'water', u'purifi']
[u'astronaut', u'warn', u'radiat', u'risk']
[u'audit', u'offic', u'find', u'taxpay', u'money', u'misspend']
[u'aussi', u'dollar', u'firm', u'overnight']
[u'australia', u'ask', u'kiribati', u'support', u'whale']
[u'australia', u'urg', u'help', u'liberian', u'refuge']
[u'aust', u'seek', u'renew', u'timor', u'boundari', u'talk']
[u'caramba', u'strike', u'threaten', u'spanish', u'simpson']
[u'barossa', u'valley', u'host', u'cycl', u'event']
[u'beazley', u'remain', u'sole', u'labor', u'contend']
[u'beckham', u'contempl', u'unit', u'return']
[u'belgian', u'minist', u'slam', u'rotten']
[u'bird', u'claim', u'vietnames', u'victim']
[u'blue', u'bat', u'rout', u'redback']
[u'blue', u'head', u'point', u'adelaid']
[u'bomb', u'target', u'aust', u'barrack']
[u'escap', u'punish', u'kill', u'stepfath']
[u'break', u'hill', u'hospit', u'bring', u'smoke', u'polici']
[u'broom', u'welcom', u'dozen', u'cruis', u'ship', u'visit']
[u'bull', u'inning', u'point']
[u'bull', u'remov', u'tasmanian', u'open']
[u'bushfir', u'blanket', u'perth', u'smoke']
[u'bushfir', u'threaten', u'township', u'near', u'perth']
[u'bush', u'nomine', u'attorney', u'general', u'condemn', u'tortur']
[u'california', u'execut', u'prison', u'year']
[u'cross', u'reconsid', u'blood', u'bank']
[u'carr', u'appoint', u'refshaug', u'treasur']
[u'carr', u'host', u'west', u'dubbo', u'meet']
[u'cathol', u'church', u'consid', u'funer', u'music']
[u'chainsaw', u'moranbah', u'break']
[u'china', u'seek', u'releas', u'kidnap', u'build', u'worker']
[u'cinema', u'complex', u'plan', u'lithgow']
[u'coal', u'wast', u'clean', u'program', u'begin']
[u'congo', u'capsiz', u'kill']
[u'congo', u'ferri', u'accid', u'kill']
[u'cooma', u'jail', u'capac']
[u'cosgrov', u'rule', u'career', u'polit']
[u'council', u'make', u'motorhom', u'park', u'free', u'wynyard']
[u'council', u'promis', u'fund', u'bushfir', u'appeal']
[u'council', u'rule', u'referendum', u'plan']
[u'council', u'set', u'deadlin', u'servic', u'fund']
[u'coupl', u'recognis', u'communiti', u'work']
[u'sell', u'bioscienc']
[u'cudal', u'showjump', u'repres', u'australia']
[u'davenport', u'strength']
[u'develop', u'prove', u'tiananmen', u'action', u'right', u'china']
[u'diamond', u'unearth', u'mine', u'potenti']
[u'digger', u'wound', u'iraq', u'attack']
[u'doubl', u'aussi', u'silver', u'stockholm', u'pool']
[u'downer', u'surpris', u'latham', u'resign']
[u'drought', u'condit', u'continu', u'region']
[u'town', u'hop', u'search', u'water']
[u'dust', u'storm', u'caus', u'panic', u'eyr', u'peninsula']
[u'economi', u'look', u'good', u'survey']
[u'educ', u'union', u'pan', u'tech', u'colleg']
[u'emerton', u'henri', u'ronaldo', u'invit', u'tsunami', u'game']
[u'eros', u'forc', u'car', u'beach']
[u'bomb', u'quash', u'ceas', u'hop']
[u'bank', u'manag', u'jail', u'fraud', u'convict']
[u'pastor', u'front', u'court', u'child', u'charg']
[u'charg', u'everton', u'boro', u'brawl']
[u'farmer', u'look', u'market']
[u'farmer', u'welcom', u'financi', u'help']
[u'feder', u'overcom', u'spirit', u'suzuki']
[u'ferguson', u'shoulder', u'hop']
[u'fewer', u'australian', u'miss', u'tsunami']
[u'fight', u'ferguson', u'fall', u'short']
[u'fingleton', u'appeal', u'convict', u'high', u'court']
[u'crew', u'battl', u'blaze', u'near', u'perth']
[u'crew', u'contain', u'danger', u'perth', u'break']
[u'firefight', u'rescu', u'burn', u'hous']
[u'homebuy', u'flood', u'market', u'research', u'show']
[u'flintoff', u'face', u'possibl', u'ankl', u'surgeri']
[u'idol', u'star', u'plead', u'guilti', u'drink', u'drive']
[u'riverina', u'candid', u'support', u'rudd']
[u'fraser', u'coast', u'tourist', u'room', u'book', u'highest']
[u'gaddafi', u'lead', u'libyan', u'tour', u'australia']
[u'gallop', u'hold', u'poll']
[u'gaudio', u'reel', u'fish', u'round']
[u'gayl', u'hind', u'windi', u'underway']
[u'gillespi', u'clear', u'gabba', u'clash']
[u'gillespi', u'medic', u'watch', u'gilli', u'hayden']
[u'glen', u'inn', u'seek', u'ident']
[u'goondiwindi', u'communiti', u'divid', u'noos', u'attack']
[u'govt', u'finalis', u'habib', u'repatri']
[u'grape', u'grower', u'fear', u'impact', u'southcorp', u'takeov']
[u'great', u'keppel', u'famili', u'market']
[u'grower', u'urg', u'object', u'grape', u'price', u'offer']
[u'hairdress', u'train', u'counsellor']
[u'health', u'centr', u'construct', u'begin']
[u'heat', u'wind', u'hamper', u'perth', u'firefight', u'effort']
[u'hemp', u'parti', u'seek', u'support']
[u'highway', u'reopen', u'fatal', u'accid']
[u'hospit', u'begin', u'chemotherapi', u'servic']
[u'hospit', u'board', u'wont', u'reinstat', u'pike', u'say']
[u'hous', u'destroy']
[u'india', u'face', u'loss', u'commonwealth', u'game']
[u'indonesia', u'plan', u'peac', u'talk', u'aceh', u'rebel']
[u'indonesia', u'seek', u'tsunami', u'relief', u'packag', u'detail']
[u'insurg', u'attack', u'spark', u'ramadi', u'fight']
[u'deni', u'bank', u'robberi']
[u'iranian', u'asylum', u'seeker', u'face', u'deport']
[u'iraqi', u'expat', u'enrol', u'poll']
[u'island', u'look', u'coconut', u'price', u'rise']
[u'isra', u'offic', u'kill', u'gaza', u'attack']
[u'japanes', u'sea', u'normal', u'despit', u'tsunami', u'warn']
[u'japan', u'lift', u'tsunami', u'warn']
[u'kamran', u'star', u'pakistan', u'victori']
[u'kuznetsova', u'chase', u'shadow']
[u'kuznetsova', u'serena', u'cruis', u'round']
[u'labor', u'leadership', u'hope', u'count', u'number']
[u'labor', u'split', u'leader']
[u'latham', u'exit', u'remov', u'elect', u'hurdl', u'gallop']
[u'light', u'plane', u'make', u'emerg', u'land', u'carnarvon']
[u'light', u'plane', u'make', u'forc', u'land', u'near', u'adelaid']
[u'littl', u'shire', u'make', u'donat', u'tsunami', u'appeal']
[u'lloyd', u'webber', u'empir', u'song']
[u'malaysian', u'women', u'charg', u'heroin', u'traffic']
[u'malaysia', u'honour', u'aust', u'servicemen', u'women']
[u'challeng', u'stepson', u'kill', u'court', u'hear']
[u'charg', u'bodi']
[u'extradit', u'murder']
[u'coma', u'rock', u'attack']
[u'hospit', u'sieg', u'end', u'peac']
[u'plead', u'guilti', u'food', u'case']
[u'refus', u'bail', u'cold', u'case', u'murder']
[u'rob', u'gold', u'coast', u'bank']
[u'appear', u'court', u'indec', u'exposur']
[u'matern', u'ward', u'closur', u'signal', u'declin', u'head', u'say']
[u'mauresmo', u'surviv', u'scare']
[u'mcewen', u'prepar', u'yellow', u'jersey']
[u'measur', u'place', u'protect', u'justic', u'staff', u'dept']
[u'melbourn', u'prepar', u'superjumbo']
[u'innat', u'edg', u'scienc', u'chief']
[u'mine', u'memori', u'fund', u'get', u'donat']
[u'minnow', u'burnley', u'dump', u'liverpool']
[u'molik', u'step', u'ring']
[u'montagu', u'island', u'lighthous', u'open', u'visitor']
[u'mother', u'help', u'help', u'son', u'avoid', u'arrest', u'prosecut']
[u'mayor', u'outlin', u'xstrata', u'issu']
[u'multipl', u'drown', u'prompt', u'water', u'safeti', u'scheme']
[u'modifi', u'tackl', u'rule']
[u'hospit', u'score', u'rat']
[u'offici', u'inspect', u'kingscliff', u'site', u'fatal']
[u'blotchi', u'fame', u'spot']
[u'outcri', u'senior', u'polic', u'transfer', u'plan']
[u'paedophil', u'plan', u'live', u'toowoomba']
[u'palestinian', u'milit', u'halt', u'attack', u'israel']
[u'palestinian', u'warm', u'state', u'solut']
[u'parent', u'seek', u'answer', u'child', u'care', u'centr']
[u'poet', u'win', u'tamworth', u'bush', u'vers', u'competit']
[u'polic', u'hunt', u'post', u'offic', u'robber']
[u'polic', u'investig', u'belconnen', u'murder']
[u'polic', u'investig', u'taxi', u'driver', u'stab']
[u'polic', u'offic', u'hospitalis', u'chase']
[u'polic', u'probe', u'fruit', u'shop']
[u'polic', u'seiz', u'ecstasi']
[u'port', u'hedland', u'hous', u'project', u'get', u'green', u'light']
[u'probe', u'continu', u'smelter', u'fume', u'exposur']
[u'protest', u'escap', u'tree', u'canopi']
[u'puerto', u'rican', u'name', u'world', u'oldest']
[u'punter', u'award', u'move', u'owen', u'closer', u'bond', u'role']
[u'ranger', u'face', u'final', u'audit']
[u'rare', u'success', u'british', u'women', u'melbourn', u'park']
[u'redback', u'rope']
[u'remot', u'health', u'servic', u'staff', u'boost']
[u'research', u'track', u'squid', u'movement']
[u'reward', u'offer', u'inform', u'lunat', u'arsonist']
[u'rice', u'pledg', u'focus', u'democraci']
[u'rice', u'say', u'middl', u'east', u'peac', u'goal']
[u'richmond', u'look', u'futur']
[u'tinto', u'report', u'uranium', u'product', u'boost']
[u'road', u'close', u'continu', u'burn']
[u'rubbish', u'dump', u'near', u'reef', u'stun']
[u'ruddock', u'count', u'cost', u'habib', u'return']
[u'rudd', u'view', u'aceh', u'reconstruct', u'effort']
[u'rural', u'school', u'access', u'nurs']
[u'safin', u'sweep', u'open', u'round']
[u'crew', u'high', u'alert']
[u'santo', u'grant', u'victorian', u'licenc']
[u'sarwan', u'gayl', u'guid', u'windi', u'competit', u'total']
[u'sarwan', u'guid', u'windi', u'competit', u'total']
[u'schroeder', u'launch', u'einstein', u'year']
[u'sharapova', u'dig', u'deep', u'advanc', u'round']
[u'shock', u'murali', u'call', u'tsunami']
[u'solar', u'flare', u'set', u'stage', u'aurora', u'australi']
[u'solomon', u'chief', u'collector', u'charg', u'fraud']
[u'sell', u'storag', u'centr']
[u'special', u'author', u'overse', u'aceh', u'reconstruct']
[u'spray', u'begin', u'limit', u'locust', u'swarm']
[u'stage', u'reflect', u'etern', u'man', u'legaci']
[u'strong', u'earthquak', u'shake', u'japan']
[u'student', u'eager', u'await', u'tertiari', u'offer']
[u'suicid', u'blast', u'near', u'aust', u'embassi', u'baghdad']
[u'suicid', u'bomb', u'cloud', u'abba', u'visit']
[u'switch', u'stop', u'collect', u'beauti', u'go', u'unseen']
[u'sydney', u'host', u'north', u'south', u'chariti', u'rugbi', u'match']
[u'tamworth', u'singer', u'win', u'nation', u'countri', u'music']
[u'musician', u'perform', u'world', u'expo']
[u'scientist', u'help', u'understand', u'jewfish']
[u'teenag', u'drown', u'maribyrnong', u'river']
[u'teen', u'critic', u'brutal', u'bash']
[u'teen', u'face', u'trial', u'fatal', u'crash']
[u'tiger']
[u'toddler', u'kill', u'cobram', u'crash']
[u'tonga', u'polic', u'chief', u'join', u'democraci']
[u'tsunami', u'forens', u'team', u'record', u'earli', u'success']
[u'tsunami', u'survivor', u'look', u'futur']
[u'soldier', u'deni', u'iraq', u'abus', u'charg']
[u'underworld', u'killer', u'jail', u'secret', u'hear']
[u'develop', u'biodegrad', u'mozzi', u'trap']
[u'union', u'want', u'labor', u'leader', u'support', u'forestri']
[u'place']
[u'unstopp', u'mcewen', u'rule', u'tour']
[u'citizen', u'border', u'patrol', u'hand']
[u'court', u'dismiss', u'charg', u'saudi', u'govt']
[u'court', u'sidestep', u'guantanamo', u'detaine', u'case']
[u'keep', u'locat', u'iraqi', u'vote', u'booth', u'secret']
[u'oppos', u'climat', u'refer', u'disast', u'talk']
[u'vacant', u'gold', u'coast', u'block', u'fetch']
[u'watch']
[u'resum', u'drug', u'drive', u'test']
[u'victorian', u'urg', u'look', u'ant']
[u'vietnam', u'ban', u'poultri', u'import', u'bird', u'fight']
[u'virgin', u'blue', u'issu', u'profit', u'warn']
[u'virgin', u'blue', u'passeng', u'arrest', u'bomb', u'claim']
[u'virgin', u'blue', u'passeng', u'face', u'court', u'explos']
[u'warn', u'exot', u'plant', u'cost', u'cane', u'toad']
[u'tertiari', u'offer', u'releas', u'today']
[u'white', u'supremacist', u'lawyer', u'dismiss', u'charg']
[u'wind', u'chang', u'eas', u'perth', u'bushfir', u'risk']
[u'woodsid', u'benefit', u'price', u'hike']
[u'rebel', u'kill', u'aceh', u'general']
[u'averag', u'temperatur', u'predict', u'mackay']
[u'accc', u'keep', u'close', u'wagga', u'fuel', u'price']
[u'address', u'hinder', u'emerg', u'crew']
[u'afghan', u'strongman', u'surviv', u'assassin', u'attempt']
[u'agforc', u'fear', u'sorghum', u'price', u'fall']
[u'alic', u'facil', u'reduc', u'anti', u'social', u'behaviour']
[u'alic', u'hostel', u'get', u'upgrad']
[u'alic', u'play', u'featur', u'sydney', u'festiv']
[u'anderson', u'rule', u'iraq', u'troop', u'withdraw']
[u'call', u'swim', u'champ', u'financ', u'rethink']
[u'appl', u'size', u'hail', u'hammer', u'adelaid']
[u'asic', u'make', u'inroad', u'financi', u'report']
[u'continu', u'tumbl']
[u'attempt', u'guinea', u'presid', u'life', u'fail']
[u'aussi', u'healey', u'bow', u'open']
[u'aussi', u'rider', u'lead', u'tour', u'head', u'south']
[u'australia', u'challeng', u'movi', u'piraci', u'fight']
[u'australia', u'rule', u'swim', u'world']
[u'aust', u'suppli', u'iraq', u'elect', u'ballot', u'paper']
[u'author', u'back', u'expans']
[u'bali', u'bomber', u'deni', u'cleric', u'attack', u'role']
[u'barnett', u'attack', u'industri', u'action', u'claim']
[u'bendigo', u'council', u'rule', u'tram', u'project']
[u'offer', u'women', u'revolut']
[u'blake', u'walkov', u'hewitt']
[u'blue', u'chase', u'outright', u'point', u'adelaid']
[u'blue', u'dock', u'slow', u'rate']
[u'blue', u'total', u'control']
[u'bodi', u'river']
[u'british', u'soldier', u'prison', u'abus', u'trial', u'halt']
[u'broadbridg', u'farewel', u'privat', u'servic']
[u'break', u'hill', u'oliv', u'grower', u'save', u'water']
[u'broom', u'blood', u'bank', u'plead', u'donor']
[u'budget', u'constrain', u'polic', u'opposit', u'say']
[u'bull', u'claim', u'inning', u'point']
[u'bushfir', u'smoke', u'pose', u'perth', u'health', u'risk']
[u'busi', u'ask', u'comment', u'bateman', u'retail']
[u'govern', u'improv', u'south', u'coast', u'school']
[u'local', u'candid', u'latham', u'seat']
[u'upgrad', u'patrol', u'bruce', u'highway']
[u'call', u'grow', u'rudd', u'step']
[u'canberra', u'die', u'aboard', u'divert', u'plane']
[u'candid', u'bicker', u'work', u'practic']
[u'carter', u'holt', u'harvey', u'report', u'profit', u'turnaround']
[u'showcas', u'townsvill', u'lifestyl']
[u'charlott', u'come', u'australia']
[u'china', u'consid', u'south', u'pole', u'post', u'offic']
[u'china', u'hold', u'funer', u'depos', u'leader', u'zhao']
[u'comment', u'invit', u'break', u'hill', u'plan']
[u'communiti', u'polic', u'smoke', u'rule', u'council']
[u'compani', u'fail', u'address', u'aid', u'risk', u'survey']
[u'coonawarra', u'face', u'rationalis']
[u'corpor', u'america', u'pay', u'bush', u'parti']
[u'council', u'consid', u'border', u'road', u'plan']
[u'council', u'plan', u'opal', u'tourist', u'rout']
[u'council', u'ask', u'support', u'volunt', u'plan']
[u'council', u'revis', u'dog', u'polici']
[u'court', u'dismiss', u'challeng', u'road', u'extens']
[u'court', u'reject', u'telco', u'tower', u'applic']
[u'cyclon', u'develop', u'near', u'cape', u'york']
[u'dalbi', u'hospit', u'gain', u'doctor']
[u'darl', u'river', u'peak', u'earli']
[u'defenc', u'exercis', u'affect', u'tsunami']
[u'depart', u'sorri', u'pass', u'away', u'letter']
[u'doctor', u'embryo', u'select', u'prevent', u'rhesus']
[u'doctor', u'learn', u'fever', u'outbreak']
[u'drug', u'accus', u'danger', u'bail']
[u'drug', u'user', u'curs', u'popular', u'lubric']
[u'dubbo', u'plead', u'guilti', u'cattl', u'theft']
[u'eagl', u'mcdougal', u'knife']
[u'educ', u'cite', u'child', u'abus', u'report', u'rise']
[u'embryo', u'test', u'prevent', u'rhesus', u'factor', u'diseas']
[u'emot', u'schett', u'bow', u'world', u'tenni']
[u'north', u'cyclon', u'watch']
[u'fiji', u'releas', u'coup', u'plotter', u'despit', u'militari']
[u'firefight', u'test', u'techniqu']
[u'worldcom', u'chief', u'fraud', u'trial', u'begin']
[u'fossil', u'help', u'human', u'evolut']
[u'gallop', u'prais', u'firefight', u'volunt']
[u'gillard', u'consult', u'leadership', u'prospect']
[u'gillespi', u'clear', u'gabba', u'clash']
[u'gillespi', u'medic', u'watch', u'gilchrist']
[u'tsunami', u'dollar', u'local', u'actu']
[u'govt', u'vow', u'consult', u'open', u'rout']
[u'green', u'warn', u'protest', u'energi']
[u'hafeez', u'report', u'bowl', u'action']
[u'helicopt', u'oper', u'accus', u'council', u'vendetta']
[u'henman', u'cruis', u'round']
[u'hewitt', u'stop', u'blake', u'comeback']
[u'hewitt', u'overcom', u'blake', u'advanc', u'round']
[u'hewitt', u'overcom', u'tenaci', u'blake']
[u'driver', u'acquit', u'conceal', u'evid']
[u'hous', u'crack', u'canadian', u'cold', u'spell']
[u'rank', u'offici']
[u'illeg', u'dump', u'anger', u'fisher']
[u'indian', u'collector', u'threaten', u'tsunami', u'fundrais']
[u'indigen', u'leader', u'criticis', u'palm', u'island', u'alcohol']
[u'indonesia', u'hope', u'peac', u'talk']
[u'indonesian', u'effort', u'hamper', u'flood']
[u'indonesian', u'wont', u'increas', u'despit', u'revis', u'toll']
[u'inform', u'shed', u'light', u'gangland', u'kill']
[u'investig', u'begin', u'industri', u'accid']
[u'isra', u'palestinian', u'resum', u'talk']
[u'juri', u'prais', u'manslaught', u'acquitt']
[u'kearn', u'return', u'storm', u'captainci']
[u'kuznetsova', u'belgian', u'minist']
[u'late', u'winner', u'see', u'heart']
[u'lead', u'asbesto', u'campaign', u'die']
[u'liber', u'decid', u'stirl', u'candid']
[u'local', u'doctor', u'return', u'aceh']
[u'magistr', u'seek', u'prison', u'altern', u'remot']
[u'maher', u'centuri', u'put', u'queensland', u'seat']
[u'major', u'think', u'bush', u'make', u'world', u'danger', u'poll']
[u'drown', u'melbourn', u'river']
[u'drown', u'save']
[u'kill', u'industri', u'accid']
[u'kill', u'singl', u'accid']
[u'marron', u'warn', u'issu', u'fishermen']
[u'matilda', u'down', u'shanghai']
[u'mcguigan', u'grower', u'urg', u'protest', u'price']
[u'meet', u'discuss', u'golf', u'cours', u'develop', u'plan']
[u'merger', u'plan', u'springborg', u'anderson', u'say']
[u'minist', u'disagre', u'embassi', u'bomb']
[u'mix', u'reaction', u'mine', u'agreement', u'chang']
[u'molik', u'storm', u'round']
[u'montreal', u'strip', u'world', u'swim', u'championship']
[u'moran', u'friend', u'clear', u'drug', u'involv']
[u'mourner', u'farewel', u'broadbridg']
[u'myskina', u'round']
[u'nadal', u'oust', u'youzhni', u'epic']
[u'nasa', u'rover', u'find', u'meteorit', u'mar']
[u'nation', u'eye', u'open', u'rang', u'enclosur']
[u'sale', u'drop', u'record']
[u'newcastl', u'grain', u'export', u'doubl']
[u'newcastl', u'group', u'seek', u'hous', u'african', u'refuge']
[u'sponsor', u'bathurst', u'race']
[u'year', u'race', u'stay', u'longford']
[u'alcohol', u'beer', u'show', u'potenti', u'cancer', u'shield']
[u'polic', u'welcom', u'minist']
[u'investig', u'join', u'tsunami', u'team', u'phuket']
[u'farm', u'committe', u'shock', u'sack']
[u'olymp', u'champion', u'massu', u'limp', u'open']
[u'passeng', u'uninjur', u'crash']
[u'polic', u'clear', u'sudanes', u'refuge', u'crime', u'wave', u'claim']
[u'polic', u'fear', u'miss', u'mother']
[u'polic', u'probe', u'lennox', u'sexual', u'assault']
[u'polic', u'probe', u'luxuri', u'boat']
[u'polic', u'seek', u'coward', u'tortur', u'kitten']
[u'polic', u'provid', u'industri', u'liaison', u'offic']
[u'pont', u'say', u'unresolv', u'deal', u'wont', u'distract']
[u'pont', u'welcom', u'suspect', u'action', u'report']
[u'poor', u'profit', u'report', u'drive', u'market', u'lower']
[u'popular', u'campsit', u'vandalis']
[u'priest', u'admit', u'indec', u'assault', u'parishion']
[u'qanta', u'reaffirm', u'profit', u'outlook']
[u'qanta', u'rub', u'salt', u'virgin', u'wound']
[u'cattl', u'live', u'export', u'expect', u'year']
[u'rape', u'sentenc', u'matter', u'stirl']
[u'rare', u'giant', u'panda', u'comeback']
[u'record', u'sale', u'show', u'waterfront', u'gold']
[u'record', u'student', u'offer', u'wollongong']
[u'refshaug', u'busi']
[u'region', u'worker', u'safeti', u'risk', u'cfmeu']
[u'relief', u'effort', u'get', u'eyr', u'peninsula']
[u'report', u'look', u'posit', u'outback', u'live']
[u'restaur', u'shut', u'food', u'poison', u'outbreak']
[u'return', u'digger', u'tell', u'iraq', u'attack']
[u'rockhampton', u'struggl', u'attract', u'doctor']
[u'roma', u'council', u'oppos', u'feedlot', u'plan']
[u'ronaldo', u'rooney', u'sink', u'brave', u'exet']
[u'rural', u'doctor', u'crisi', u'link', u'intak']
[u'safeti', u'inspector', u'lack', u'special', u'knowledg', u'audit']
[u'focus', u'shift', u'relief', u'effort']
[u'fire']
[u'sanchez', u'turn', u'heat', u'tour']
[u'savag', u'saga', u'end', u'blackburn']
[u'school', u'holiday', u'blame', u'festiv', u'chang']
[u'scottish', u'golfer', u'unveil', u'centuri']
[u'scottish', u'golfer', u'unveil', u'centuri']
[u'search', u'miss', u'tourist', u'call']
[u'secondari', u'student', u'school', u'cape', u'barren']
[u'serial', u'rock', u'thrower', u'strike', u'rann', u'offer', u'reward']
[u'shaki', u'davenport', u'advanc', u'round']
[u'shark', u'spot', u'robe']
[u'shire', u'offer', u'volunt', u'tsunami', u'caus']
[u'shortag', u'forc', u'resid', u'cart', u'water']
[u'slow', u'year', u'ahead', u'live', u'sheep', u'trade', u'associ']
[u'snapshot', u'reveal', u'educ', u'economi', u'improv']
[u'stalin', u'imag', u'return', u'moscow', u'street']
[u'stone', u'marley', u'work', u'enter', u'grammi', u'hall', u'fame']
[u'sudanes', u'inquiri', u'deni', u'darfur', u'genocid']
[u'super', u'tail', u'prompt', u'licenc', u'review']
[u'surf', u'life', u'save', u'competit', u'begin', u'today']
[u'swimmer', u'urg', u'heed', u'warn']
[u'talk', u'continu', u'burnett', u'head', u'boat', u'harbour']
[u'child', u'abus', u'notif', u'increas']
[u'tasmania', u'chase', u'victori', u'beller']
[u'river', u'monitor', u'plan']
[u'test', u'begin', u'wild', u'spray']
[u'thai', u'banker', u'jail', u'crisi', u'trigger', u'fraud']
[u'thailand', u'confirm', u'bird', u'outbreak']
[u'thirteen', u'year', u'driver', u'passeng', u'kill', u'crash']
[u'thousand', u'celebr', u'festiv', u'sacrific']
[u'tiger', u'warrior', u'confirm', u'clash']
[u'tote', u'tasmania', u'say', u'delorain', u'race', u'safe']
[u'tourism', u'group', u'upbeat', u'despit', u'lower', u'market']
[u'tourism', u'industri', u'welcom', u'rise', u'japanes', u'visitor']
[u'tradesmen', u'shortag', u'delay', u'hervey', u'develop']
[u'tsunami', u'survivor', u'eat', u'leav']
[u'appear', u'court', u'mayfield', u'murder']
[u'offer']
[u'upgrad', u'renmark', u'hospit', u'begin', u'oper']
[u'judg', u'dismiss', u'guantanamo', u'legal', u'challeng']
[u'landlord', u'slam', u'guantanamo', u'violat']
[u'offer', u'renew', u'tie', u'aceh', u'conflict', u'resolv']
[u'scale', u'tsunami', u'relief', u'effort']
[u'victoria', u'scrap', u'provoc', u'defenc', u'murder']
[u'govt', u'fear', u'environment', u'cost', u'bushfir']
[u'liber', u'criticis', u'govt', u'propaganda']
[u'south', u'west', u'face', u'tougher', u'water', u'restrict']
[u'watkin', u'awar', u'difficult', u'task', u'ahead']
[u'western', u'power', u'face', u'prosecut', u'child', u'death']
[u'whitsunday', u'support', u'project']
[u'wild', u'storm', u'lash']
[u'william', u'overcom', u'peng', u'second']
[u'woman', u'charg', u'ararat', u'stab']
[u'worker', u'consid', u'option', u'fatal', u'accid']
[u'work', u'resum', u'fatal', u'accid']
[u'xstrata', u'consid', u'deadlin', u'extens']
[u'xstrata', u'extend', u'offer']
[u'yachti', u'mourn', u'sydney', u'hobart', u'veteran']
[u'young', u'peopl', u'seek', u'govt', u'advis']
[u'yushchenko', u'clear', u'offic']
[u'zimbabw', u'file', u'suit', u'coup', u'plot', u'claim']
[u'releas', u'popul', u'outlook']
[u'get', u'answer', u'liber', u'silent', u'number', u'access']
[u'cricket', u'suspend', u'posit', u'drug', u'test']
[u'agassi', u'face', u'tough', u'test']
[u'agassi', u'move', u'fourth', u'round']
[u'alburi', u'polic', u'investig', u'woman', u'death']
[u'anti', u'terror', u'equip', u'roll']
[u'asbesto', u'campaign', u'lay', u'rest']
[u'asbesto', u'sit', u'pose', u'increas', u'health', u'risk', u'report']
[u'aust', u'team', u'survey', u'tsunami', u'damag', u'maldiv']
[u'aust', u'send', u'nuclear', u'wast']
[u'beazley', u'woo', u'victorian']
[u'bega', u'specialist', u'workload']
[u'assist', u'tsunami', u'victim']
[u'bird', u'evolv', u'epidem']
[u'blue', u'claim', u'outright', u'point', u'adelaid']
[u'blue', u'close', u'outright', u'point']
[u'brisban', u'prison', u'worker', u'strike']
[u'brochur', u'aim', u'discourag', u'teen', u'prostitut']
[u'brothel', u'owner', u'plan', u'expans']
[u'builder', u'attack', u'govt', u'devaugh', u'collaps']
[u'bull', u'near', u'victori', u'beller']
[u'bull', u'point', u'tasmania']
[u'bush', u'take', u'oath', u'pledg', u'spread', u'freedom']
[u'busi', u'win', u'liber', u'endors', u'stirl']
[u'canberra', u'popul', u'tip', u'approach']
[u'canberra', u'surgeri', u'wait', u'list', u'grow']
[u'candid', u'fail', u'address', u'social', u'crisi', u'say']
[u'caperte', u'die', u'accid']
[u'cape', u'york', u'cyclon', u'watch', u'cancel']
[u'cape', u'york', u'intensifi']
[u'bomb', u'target', u'shiit', u'iraqi']
[u'carr', u'tout', u'econom', u'record', u'minist', u'swear']
[u'centr', u'expect', u'iraqi', u'regist']
[u'chlorin', u'kununurra', u'plant']
[u'church', u'defrock', u'olymp', u'marathon', u'pest']
[u'communiti', u'adopt', u'school', u'pool', u'rule']
[u'jail', u'child', u'porn', u'collect']
[u'council', u'claim', u'rat', u'issu']
[u'council', u'question', u'bushfir', u'zone']
[u'council', u'revolt', u'smoke', u'patrol']
[u'counterpart', u'hope', u'dialogu', u'bush', u'second', u'term']
[u'crash', u'command', u'reassign']
[u'crew', u'applaud', u'hard', u'work', u'fight', u'perth', u'fire']
[u'custodian', u'continu', u'develop', u'protest']
[u'dairi', u'farmer', u'expect', u'profit', u'rise']
[u'disput', u'continu', u'hardwar', u'store', u'develop']
[u'downer', u'welcom', u'bush', u'inaugur', u'speech']
[u'drag', u'race', u'organis', u'hope', u'thousand']
[u'earli', u'sign', u'posit', u'takeov']
[u'earthquak', u'shake', u'capit']
[u'ebay', u'result', u'hit', u'market']
[u'elder', u'step', u'defus', u'brawl']
[u'embassi', u'face', u'difficulti', u'iraq']
[u'defend', u'phone', u'test']
[u'extra', u'fund', u'ensur', u'power', u'line', u'underground']
[u'extra', u'terrestri', u'squid', u'wash', u'beach']
[u'eyr', u'peninsula', u'visitor', u'catch', u'emot', u'bind']
[u'feder', u'cruis', u'fourth', u'round']
[u'feder', u'enter', u'fourth', u'round', u'walkov']
[u'fergi', u'wenger', u'buri', u'hatchet']
[u'ferguson', u'back', u'gillard', u'labor', u'leader']
[u'firework', u'warn', u'ahead', u'australia']
[u'flood', u'guyana', u'disast', u'zone']
[u'forestri', u'associ', u'fear', u'fibreboard', u'plant']
[u'forestri', u'group', u'concern', u'fibreboard', u'compani']
[u'french', u'probe', u'armstrong', u'dope', u'claim']
[u'fund', u'flow', u'eyr', u'bushfir', u'farmer']
[u'gallop', u'chastis', u'desert', u'campaign']
[u'gender', u'bend', u'tajik', u'snow', u'queen', u'ballet']
[u'global', u'warm', u'link', u'great', u'die']
[u'govt', u'accus', u'delay', u'habib', u'repatri']
[u'govt', u'accus', u'isol', u'indigen', u'public']
[u'grant', u'money', u'help', u'catchment', u'protect']
[u'group', u'watch', u'south', u'west', u'rock']
[u'guard', u'shoot', u'prison', u'face', u'charg']
[u'gulf', u'readi', u'cyclon']
[u'health', u'author', u'close', u'sourc', u'food']
[u'heartfelt', u'thank', u'alic', u'tsunami', u'fundrais']
[u'histor', u'seedl', u'sale']
[u'hondo', u'burst', u'fire', u'zimbabw', u'victori']
[u'hrbati', u'outlast', u'gaudio', u'epic', u'duel']
[u'ident', u'plan', u'australia', u'card', u'ruddock']
[u'iluka', u'resid', u'catch', u'illeg', u'fish', u'dump']
[u'indonesian', u'armi', u'take', u'hard', u'line', u'aceh', u'rebel']
[u'inquiri', u'hear', u'call', u'eastman', u'psychopath']
[u'name', u'oneil', u'replac']
[u'iran', u'prepar', u'defend', u'interest', u'attack']
[u'iraqi', u'hostag', u'taker', u'offer', u'china', u'deal']
[u'jail', u'term', u'unchang', u'predatori', u'scout', u'master']
[u'kalgoorli', u'hospit', u'get', u'staff']
[u'king', u'pirat', u'croc', u'triumph']
[u'kirra', u'group', u'take', u'heart', u'minist', u'visit']
[u'kuznetsova', u'battl', u'fourth', u'round']
[u'latham', u'make', u'resign', u'formal']
[u'lehman', u'fire', u'lead', u'diego']
[u'liber', u'urg', u'commit', u'poison', u'victim']
[u'liquid', u'bodi', u'odour', u'repel', u'mosquito']
[u'love', u'nest', u'build', u'platypus']
[u'lucki', u'escap', u'south', u'coast', u'storm', u'lash']
[u'magic', u'nanni', u'lead', u'olivi', u'award', u'nomin']
[u'magistr', u'reserv', u'decis', u'dugong', u'cruelti', u'case']
[u'charg', u'onlin', u'role', u'teen', u'suicid']
[u'convict', u'rap', u'teenag', u'girl']
[u'die', u'adelaid', u'boat', u'accid']
[u'drown', u'peregian']
[u'matilda', u'fleec', u'go', u'chariti']
[u'mauresmo', u'second', u'tussl']
[u'media', u'caution', u'british', u'prison', u'abus', u'case']
[u'arrest', u'steal', u'sale']
[u'question', u'overnight', u'assault']
[u'molik', u'storm', u'round']
[u'urg', u'public', u'join', u'ambul', u'letter', u'campaign']
[u'safin', u'rumbl']
[u'bombard', u'hit', u'kashmir']
[u'look', u'cabinet', u'swear']
[u'medal', u'honour', u'malaysian', u'veteran']
[u'british', u'soldier', u'injur', u'basra', u'blast']
[u'nobl', u'call', u'leagu', u'nation', u'rethink']
[u'donat', u'tsunami']
[u'govt', u'monitor', u'citizen', u'collect']
[u'nurs', u'permit', u'conduct', u'smear', u'test']
[u'discoveri', u'boost']
[u'outlook', u'grape', u'grower', u'appear', u'brighter']
[u'overhead', u'cabl', u'inappropri', u'mayor', u'rule']
[u'pakistan', u'manag', u'say', u'rape', u'claim', u'comment', u'take']
[u'pakistan', u'team', u'boss', u'probe', u'rape', u'claim']
[u'palestin', u'exhibit', u'draw', u'complaint']
[u'palestinian', u'forc', u'deploy', u'gaza']
[u'palestinian', u'offer', u'plan', u'halt', u'attack', u'israel']
[u'palm', u'deflect', u'attent', u'townsvill']
[u'perth', u'firefight', u'blaze']
[u'perth', u'fire', u'affect', u'fruit', u'crop']
[u'pilbara', u'wast', u'treatment', u'plant']
[u'pirat', u'plunder', u'breaker']
[u'polic', u'search', u'fake', u'chariti', u'worker']
[u'polic', u'seek', u'public', u'help', u'deliber']
[u'polic', u'reveal', u'youth', u'tortur', u'kitten']
[u'polit', u'imped', u'tsunami', u'warn', u'plan']
[u'prison', u'abus', u'trial', u'judg', u'caution', u'comment']
[u'protest', u'target', u'bush', u'inaugur']
[u'prove', u'your', u'worth', u'hugh', u'tell', u'savag']
[u'public', u'urg', u'watch']
[u'govt', u'vet', u'consid', u'industri', u'action']
[u'queensland', u'beatti']
[u'raaf', u'pilot', u'return', u'sumatra']
[u'rain', u'rob', u'windi', u'victori']
[u'rann', u'outlin', u'proviso', u'takeov', u'support']
[u'ravensthorp', u'water', u'woe', u'worri', u'author']
[u'redford', u'kick', u'sundanc', u'polit', u'note']
[u'region', u'busi', u'econom', u'outlook', u'confid']
[u'research', u'diabet', u'drug', u'studi']
[u'resid', u'meet', u'field', u'plan']
[u'resid', u'urg', u'stand', u'race', u'hate']
[u'riverina', u'resid', u'inspect', u'storm', u'damag']
[u'roddick', u'down', u'rusedski', u'serv', u'battl']
[u'roller', u'coaster', u'real', u'look', u'recov', u'shock']
[u'roulett', u'crash']
[u'rudd', u'consult', u'colleagu', u'leadership']
[u'rural', u'clinic', u'boost', u'intern', u'number']
[u'russia', u'congratul', u'ukrain', u'presid']
[u'safin', u'surviv', u'injuri', u'scare', u'advanc', u'round']
[u'govt', u'cut', u'fee', u'victim']
[u'sanchez', u'lead', u'tour', u'head', u'hill']
[u'santo', u'share', u'surg', u'discoveri']
[u'urg', u'shatter', u'aceh', u'rebuild']
[u'second', u'tsunami', u'match', u'confirm', u'kolkata']
[u'begin', u'clean', u'storm']
[u'call', u'storm', u'prepar']
[u'firefight', u'assist', u'narrabri', u'clean']
[u'sharapova', u'breez', u'fourth', u'round']
[u'shaw', u'fail', u'drink', u'drive', u'charg']
[u'smith', u'rule', u'labor', u'leadership']
[u'sole', u'omagh', u'bomb', u'convict', u'overturn']
[u'solomon', u'soldier', u'rotat', u'week']
[u'south', u'coast', u'bear', u'brunt', u'storm']
[u'southcorp', u'investor', u'hop', u'recoup', u'loss']
[u'south', u'korean', u'soldier', u'alleg', u'forc']
[u'spongebob', u'song', u'offend', u'christian', u'group']
[u'lanka', u'clear', u'drunken', u'misconduct']
[u'lanka', u'includ', u'rebel', u'area', u'reconstruct']
[u'steal', u'wag', u'submiss', u'lodg', u'mackenroth']
[u'stone', u'satan', u'end', u'hajj', u'pilgrimag']
[u'storm', u'power']
[u'sugar', u'leader', u'fail', u'embrac', u'reform', u'say', u'kelli']
[u'suspect', u'court', u'secur', u'guard', u'death']
[u'sydney', u'resid', u'encourag', u'conserv', u'water']
[u'symond', u'line', u'promot']
[u'hous', u'price', u'increas', u'faster', u'averag']
[u'tasmanian', u'devil', u'tumour', u'diseas', u'spread']
[u'teen', u'turn', u'kitten', u'tortur']
[u'territori', u'get', u'gillard']
[u'theft', u'prompt', u'warn', u'properti', u'owner']
[u'thiev', u'sacrific', u'loot', u'mythic', u'getaway']
[u'thirsti', u'patron', u'antic', u'land', u'court']
[u'train', u'accus', u'spark', u'bushfir']
[u'travel', u'advisori', u'hamper', u'lanka', u'tourism', u'plan']
[u'trust', u'call', u'review', u'tram', u'project']
[u'tsunami', u'decim', u'aceh', u'child', u'popul']
[u'custodi', u'murder', u'charg']
[u'calcul', u'tsunami', u'massiv', u'environment', u'cost']
[u'union', u'safeti', u'audit', u'inaccur', u'workcov', u'say']
[u'union', u'swing', u'beazley']
[u'univers', u'look', u'rectifi', u'math']
[u'univers', u'report', u'high', u'demand', u'psycholog']
[u'asbestosi', u'victim', u'die', u'proud']
[u'blood', u'stock', u'unaffect', u'blood', u'bank', u'closur']
[u'voter', u'registr', u'extend', u'expat', u'iraqi']
[u'warn', u'murali', u'loom']
[u'watchdog', u'consid', u'nuclear', u'wast', u'deal']
[u'welfar', u'group', u'seek', u'live', u'export']
[u'west', u'indi', u'provid', u'tough', u'resist']
[u'west', u'indi', u'suffer', u'contenti', u'decis']
[u'west', u'indi', u'control']
[u'wild', u'storm', u'lash', u'western']
[u'say', u'xstrata', u'deadlin', u'extens', u'predict']
[u'woolgrow', u'join', u'action', u'anim', u'right', u'group']
[u'zarqawi', u'warn', u'insurg', u'victori', u'year']
[u'zone', u'plan', u'releas', u'propos', u'marin', u'park']
[u'food', u'poison', u'case', u'confirm']
[u'south', u'african', u'face', u'travel', u'rort', u'charg']
[u'akhtar', u'fli', u'home', u'treatment']
[u'zarqawi', u'loyalist', u'behead', u'iraqi', u'soldier']
[u'armstrong', u'assist', u'dope', u'investig']
[u'arson', u'attack', u'caus', u'million', u'damag']
[u'kill', u'baghdad', u'bomb', u'attack']
[u'australian', u'prepar', u'tough', u'battl']
[u'bardot', u'decri', u'polar', u'bear', u'hunt']
[u'beslan', u'resid', u'ralli', u'sieg', u'cover']
[u'race', u'promot', u'albatross', u'awar']
[u'bird', u'kill', u'vietnam']
[u'blogger', u'world', u'storm']
[u'brisban', u'ambul', u'bind']
[u'burn', u'dinner', u'prompt', u'backpack', u'evacu']
[u'canada', u'pass', u'legisl', u'marriag']
[u'canberra', u'stadium', u'go']
[u'chines', u'media', u'report', u'hostag', u'releas']
[u'chisel', u'star', u'stop', u'thief']
[u'expect', u'jump', u'enrol']
[u'clijster', u'confirm', u'antwerp', u'return']
[u'call', u'timor', u'memorandum']
[u'confer', u'draw', u'disast', u'action', u'plan']
[u'coria', u'swat', u'lacklustr', u'mosquito']
[u'curious', u'student', u'damag', u'dali', u'homag', u'newton']
[u'damp', u'patch', u'concern', u'water']
[u'dane', u'charg', u'prison', u'abus', u'iraq']
[u'davenport', u'strong', u'teenag', u'vaidisova']
[u'davydenko', u'thrash', u'lame', u'henman']
[u'dementieva', u'battl', u'past', u'hantuchova']
[u'dial', u'trial', u'weston', u'creek']
[u'see', u'posit', u'sign', u'bush', u'inaugur', u'speech']
[u'eyr', u'student', u'prepar', u'return', u'school']
[u'father', u'warn', u'copi', u'rock', u'thrower']
[u'fear', u'devil', u'diseas', u'affect', u'ecolog']
[u'iraqi', u'aust', u'regist', u'vote']
[u'firefight', u'battl', u'perth', u'blaze']
[u'fleme', u'blitz', u'murali', u'romp', u'home']
[u'windi', u'star', u'battl', u'cancer']
[u'gebrselassi', u'london', u'marathon']
[u'gilchrist', u'give', u'game', u'break']
[u'global', u'bank', u'apologis', u'slaveri', u'link']
[u'govt', u'quiz', u'rail', u'project']
[u'gypsi', u'joker', u'founder', u'die', u'age']
[u'hewitt', u'advanc', u'russian', u'storm', u'melbourn']
[u'hewitt', u'take', u'lead']
[u'hmas', u'ballarat', u'run', u'aground']
[u'iceland', u'apologis', u'iraqi', u'invas']
[u'imposs', u'protect', u'iraq', u'elect', u'allawi', u'say']
[u'indian', u'miss', u'oxfam']
[u'iraq', u'arrest', u'elect', u'candid', u'chalabi']
[u'israel', u'welcom', u'effort', u'stem', u'palestinian', u'attack']
[u'italian', u'soldier', u'kill', u'iraq']
[u'kidnapp', u'china', u'citizen', u'iraq']
[u'labor', u'leadership', u'contend', u'shore', u'number']
[u'launceston', u'leav', u'million', u'dollar', u'damag']
[u'lehman', u'lead', u'lonard', u'trail']
[u'lonard', u'touch', u'diego']
[u'luxemburgo', u'lash', u'real', u'flop']
[u'macgil', u'captain', u'blue', u'haddin', u'get', u'australia']
[u'maher', u'motiv', u'select', u'snub']
[u'malawi', u'judg', u'strike', u'demand', u'wheel']
[u'arrest', u'wake', u'turn', u'ugli']
[u'market', u'jitter', u'prompt', u'late', u'sell']
[u'milit', u'israel', u'ceas']
[u'molik', u'set', u'clash', u'venus']
[u'motorist', u'surrend']
[u'myskina', u'advanc', u'raymond', u'withdraw']
[u'navi', u'launch', u'patrol', u'boat']
[u'slam', u'bush', u'report']
[u'newcastl', u'resid', u'ralli', u'racism']
[u'gunner', u'deal', u'campbel', u'lauren']
[u'newspol', u'show', u'beazley', u'prefer', u'leader']
[u'nimbin', u'tour', u'oper', u'warn', u'drug', u'tour']
[u'govt', u'slug', u'farmer', u'locust', u'levi', u'increas']
[u'lead', u'lifesav', u'comp']
[u'medic', u'student', u'fire', u'bike', u'ride']
[u'older', u'mother', u'push', u'caesarean', u'birth', u'rate']
[u'pari', u'sight', u'star', u'vinci', u'code', u'film']
[u'peacekeep', u'disput', u'delay', u'sudan', u'mission']
[u'polic', u'charg', u'alleg', u'kitten', u'tortur']
[u'polic', u'injur', u'brisban', u'brawl']
[u'polic', u'investig', u'ambul', u'servic', u'employe']
[u'polic', u'offic', u'sack', u'duti', u'fight']
[u'polic', u'pour', u'cold', u'water', u'scam']
[u'polic', u'probe', u'death', u'brisban']
[u'polic', u'probe', u'samurai', u'sword', u'attack']
[u'polic', u'search', u'prison', u'escap']
[u'polic', u'seek', u'canberra', u'jacker']
[u'polic', u'union', u'criticis', u'offic', u'sack']
[u'power', u'storm']
[u'price', u'taxi', u'driver', u'knowledg', u'open', u'negoti']
[u'council', u'wont', u'enforc', u'smoke', u'ban']
[u'queanbeyan', u'mother', u'turndown', u'pain', u'killer', u'birth']
[u'rain', u'delay', u'start', u'centurion', u'test']
[u'roddick', u'breez']
[u'roulett', u'aust', u'appoint']
[u'rudd', u'decid', u'soon', u'leadership']
[u'scheiffer', u'leav', u'ambassador', u'post', u'tokyo']
[u'second', u'youth', u'charg', u'kitten', u'tortur']
[u'sensat', u'sanchez', u'end', u'ogradi', u'hop']
[u'singh', u'nomin', u'hall', u'fame']
[u'storm', u'power', u'south', u'east']
[u'storm', u'wine', u'harvest']
[u'tamworth', u'festiv', u'hail', u'success']
[u'bushfir', u'threaten', u'shack']
[u'sight', u'plummet']
[u'govt', u'urg', u'sell', u'spirit']
[u'thorp', u'back', u'indigen', u'swim', u'scheme']
[u'minut', u'labour', u'leav', u'hold', u'babi']
[u'tiger', u'enter', u'theatrett', u'cruelti']
[u'titan', u'probe', u'reveal', u'flammabl', u'world']
[u'tsunami', u'relief', u'effort', u'enter', u'second', u'phase']
[u'tunarama', u'kick', u'port', u'lincoln']
[u'send', u'data', u'collect', u'ship', u'aceh', u'epicentr']
[u'union', u'secur', u'work', u'parti', u'public', u'sector']
[u'unit', u'face', u'mammoth', u'task', u'titl', u'admit', u'fergi']
[u'prais', u'palestinian', u'secur', u'effort']
[u'author', u'investig', u'food', u'poison', u'outbreak']
[u'extradit', u'rape', u'charg']
[u'waterhous', u'bushfir', u'threaten', u'shack']
[u'white', u'break', u'year', u'drought']
[u'white', u'hous', u'scrap', u'coalit', u'will', u'list']
[u'world', u'bank', u'call', u'africa']
[u'world', u'stutter', u'tsunami', u'appeal', u'match']
[u'yarra', u'contamin', u'stir', u'polit', u'stink']
[u'dead', u'iraq', u'hospit']
[u'abba', u'fail', u'talk', u'hama', u'leader', u'join']
[u'agassi', u'set', u'feder', u'clash']
[u'agassi', u'wari', u'johansson', u'serv']
[u'age', u'public', u'servic', u'problem', u'opposit', u'say']
[u'alcohol', u'target', u'tourist']
[u'alic', u'get', u'world', u'tourism', u'talk']
[u'qaeda', u'link', u'group', u'claim', u'kill', u'iraqi']
[u'armi', u'help', u'bushfir', u'clean']
[u'australia', u'cours', u'victori']
[u'australia', u'tighten', u'grip']
[u'backburn', u'continu', u'waterhous', u'reserv']
[u'backpack', u'flee', u'hostel', u'blaze']
[u'barca', u'extend', u'lead']
[u'beazley', u'backer', u'run', u'smear', u'campaign', u'gillard']
[u'beazley', u'remain', u'unchalleng']
[u'berlusconi', u'empir', u'buy', u'radio', u'group']
[u'bevan', u'power', u'tiger', u'victori']
[u'music', u'lover']
[u'blair', u'call', u'labour', u'faith', u'occupi', u'polit']
[u'blewett', u'lead', u'redback', u'victori']
[u'blewett', u'put', u'good', u'posit']
[u'blue', u'take', u'gong', u'french', u'music', u'award']
[u'boati', u'fewer', u'risk', u'tsunami']
[u'brisban', u'child', u'attack', u'offend']
[u'brisban', u'unit', u'price', u'report']
[u'bungendor', u'educ', u'need', u'survey']
[u'crash', u'kill', u'passeng', u'nepal']
[u'bush', u'pledg', u'push', u'fight', u'terror']
[u'celtic', u'point', u'clear']
[u'chela', u'fin', u'spit', u'spat']
[u'chelsea', u'record', u'seventh', u'straight']
[u'children', u'dead', u'miss', u'ugandan']
[u'china', u'confirm', u'hostag', u'releas', u'iraq']
[u'clark', u'centuri', u'steer', u'australia', u'victori']
[u'communic', u'compani', u'develop', u'navi']
[u'concern', u'number', u'birth', u'ambul']
[u'confus', u'middl', u'east', u'ceas']
[u'council', u'say', u'dope', u'damag', u'communiti']
[u'court', u'recognis', u'aust', u'woman', u'rape', u'serviceman']
[u'cricket', u'walk', u'tsunami', u'victim']
[u'crowd', u'expect']
[u'death', u'link', u'pot']
[u'expat', u'iraqi', u'wari', u'elect']
[u'eyr', u'phone', u'fulli', u'reconnect', u'bushfir']
[u'feder', u'march', u'baghdati', u'win', u'heart']
[u'film', u'screen', u'tsunami', u'appeal']
[u'crew', u'high', u'alert']
[u'firefight', u'continu', u'battl', u'blaze']
[u'firefight', u'control', u'waterhous', u'reserv', u'blaze']
[u'flintoff', u'lead', u'england', u'fight']
[u'flood', u'restrict', u'traffic', u'near', u'townsvill']
[u'flood', u'bruce', u'highway']
[u'fli', u'tuna', u'earn', u'windfal', u'bushfir', u'victim']
[u'councillor', u'relat', u'runner']
[u'road', u'weekend']
[u'gallop', u'call', u'poll']
[u'gallop', u'prepar', u'poll']
[u'gilchrist', u'break', u'open', u'door', u'clark']
[u'gillard', u'hold', u'leadership', u'declar']
[u'govt', u'push', u'elector', u'reform']
[u'hewitt', u'easiest', u'barrack']
[u'hewitt', u'play', u'chela', u'spit', u'spat']
[u'hewitt', u'histrion', u'upset']
[u'hubbl', u'fate']
[u'indonesia', u'tsunami', u'toll']
[u'injur', u'robinson', u'upbeat', u'nation', u'chanc']
[u'investig', u'say', u'carramar', u'deliber']
[u'iran', u'warn', u'attack']
[u'iraq', u'secur', u'increas']
[u'king', u'silent', u'briberi', u'claim']
[u'kuznetsova', u'win', u'russian', u'battl']
[u'liber', u'deni', u'offer', u'candid', u'oversea', u'post']
[u'lonard', u'second', u'stall', u'invit']
[u'lyon', u'refus', u'releas', u'player', u'tsunami', u'game']
[u'charg', u'alleg', u'rape']
[u'escap', u'sink', u'truck']
[u'hospitalis', u'home', u'invas']
[u'maningrida', u'resist', u'sell', u'kava']
[u'rescu', u'burn', u'unit']
[u'marin', u'park', u'protect', u'commerci', u'fish']
[u'mauresmo', u'beat', u'injuri', u'power', u'quarter']
[u'molik', u'readi', u'step', u'venus']
[u'monkey', u'busi', u'african', u'open']
[u'medic', u'head', u'aceh']
[u'navi', u'investig', u'ground', u'caus']
[u'prosecut', u'dutch', u'babi', u'euthanasia', u'studi']
[u'north', u'east', u'prepar', u'snow', u'storm']
[u'opera', u'crowd', u'rais', u'fund', u'tsunami', u'victim']
[u'opposit', u'seek', u'ambul', u'servic', u'theft']
[u'opposit', u'seek', u'public', u'hous', u'overhaul']
[u'opposit', u'welcom', u'traine', u'seek', u'hospit']
[u'piper', u'pip', u'mose', u'south', u'african', u'swimmer', u'record']
[u'polic', u'continu', u'search', u'prison', u'escap']
[u'polic', u'hunt', u'sexual', u'assault', u'case']
[u'polic', u'investig', u'drive', u'shoot']
[u'polic', u'investig', u'hous']
[u'polic', u'prais', u'confront', u'assault']
[u'polic', u'search', u'chase']
[u'polic', u'search', u'miss', u'albani', u'woman']
[u'polic', u'meet', u'gypsi', u'joker', u'funer', u'plan']
[u'polic', u'resum', u'search', u'miss']
[u'pope', u'say', u'abstin', u'fidel', u'best', u'stop', u'aid']
[u'star', u'unit', u'wale', u'tsunami', u'victim']
[u'produc', u'guild', u'name', u'aviat', u'best', u'film']
[u'queanbeyan', u'busi', u'communiti', u'form', u'lobbi', u'group']
[u'research', u'uncov', u'rare', u'smoke', u'posit']
[u'rosewal', u'lament', u'grass']
[u'ross', u'batman', u'post', u'qualifi', u'time']
[u'ross', u'batman', u'post', u'qualifi', u'time']
[u'rotten', u'wood', u'get', u'mushroom', u'cave', u'ordeal']
[u'rudd', u'remain', u'tight', u'lip', u'leadership']
[u'rusti', u'serena', u'overcom', u'petrova']
[u'safin', u'overcom', u'demon', u'reach', u'quarter']
[u'africa', u'commit', u'polic', u'darfur']
[u'like', u'extradit', u'thailand']
[u'sanchez', u'win', u'tour', u'mcewen', u'strike']
[u'search', u'suspend', u'miss', u'canyon']
[u'sharapova', u'come']
[u'ship', u'compani', u'play', u'strike', u'impact']
[u'solar', u'storm', u'disrupt', u'mobil', u'phone', u'televis']
[u'storm', u'batter', u'sydney']
[u'sudanes', u'rebel', u'leader', u'get', u'hero', u'welcom']
[u'surgeon', u'number', u'boost']
[u'sweet', u'symphoni', u'attract', u'crowd', u'thousand']
[u'dentist', u'tell', u'time', u'tsunami', u'devast']
[u'tasmanian', u'govt', u'defend', u'health', u'spend']
[u'tassi', u'rout', u'indonesia']
[u'thailand', u'rock', u'poll', u'violenc']
[u'thousand', u'comment', u'plan']
[u'tiger', u'restrict', u'warrior', u'devonport']
[u'tiger', u'hawk']
[u'tsunami', u'survivor', u'rescu', u'day']
[u'tullamarin', u'factori', u'investig']
[u'hospitalis', u'nightclub', u'violenc']
[u'tori', u'inspir', u'aust', u'immigr']
[u'expand', u'explor', u'alaska']
[u'wildcat', u'snap', u'lose', u'streak']
[u'wine', u'festiv', u'get', u'fruiti']
[u'wit', u'seek', u'jack']
[u'wood', u'catch', u'lehman', u'foggi', u'invit']
[u'young', u'hope', u'attack']
[u'yushchenko', u'call', u'uniti', u'ahead', u'inaugur']
[u'yushchenko', u'take', u'oath', u'ukrain', u'presid']
[u'zarqawi', u'declar', u'iraq', u'vote']
[u'abba', u'close', u'secur', u'milit', u'ceas']
[u'cameraman', u'catch', u'baghdad', u'blast']
[u'academ', u'warn', u'iraq', u'elect', u'difficulti']
[u'accc', u'investig', u'telstra', u'advantag', u'sport']
[u'packag', u'offer', u'boodari', u'worker']
[u'airport', u'passeng', u'number']
[u'alcohol', u'safeti', u'scheme', u'target', u'houseboat']
[u'allawi', u'confid', u'voter', u'wont', u'deter']
[u'anim', u'welfar', u'group', u'want', u'duck', u'plant', u'shut']
[u'arson', u'possibl', u'south', u'west', u'fire']
[u'art', u'festiv', u'hijack', u'oper', u'green']
[u'player', u'strike', u'deal']
[u'astl', u'centuri', u'anchor', u'zealand', u'inning']
[u'athlet', u'readi', u'dive', u'gold', u'coast', u'event']
[u'atsic', u'chairman', u'silent', u'asset', u'sale']
[u'award', u'tribut', u'documentari', u'maker', u'orourk']
[u'baghdad', u'bomb', u'wound']
[u'beach', u'goer', u'urg', u'disregard', u'sting']
[u'beatti', u'quiet', u'maddock', u'payout', u'detail']
[u'beazley', u'deni', u'dirti', u'trick', u'claim']
[u'bergkamp', u'strike', u'keep', u'gunner', u'hunt']
[u'blaze', u'forc', u'flat', u'evacu']
[u'booz', u'ban', u'busi', u'hard']
[u'brack', u'unveil', u'look', u'cabinet']
[u'british', u'navi', u'survey', u'tsunami', u'epicentr']
[u'brosnan', u'costner', u'career', u'turn', u'sundanc']
[u'burni', u'retail', u'develop']
[u'bushfir', u'report', u'highlight', u'need', u'nation']
[u'bushfir', u'inquest', u'continu']
[u'busi', u'baulk', u'main', u'street', u'fund']
[u'businessman', u'front', u'court', u'charg']
[u'busi', u'outlook', u'remain', u'restrain']
[u'byron', u'consid', u'tax', u'visitor', u'develop']
[u'candid', u'get', u'confid']
[u'carson', u'keep', u'american', u'late', u'year']
[u'celebr', u'chef', u'fin', u'drink', u'drive']
[u'chang', u'arrest', u'law', u'violat', u'redress', u'right']
[u'chariti', u'staff', u'posit', u'despit']
[u'chavez', u'claim', u'colombian', u'rebel', u'arrest']
[u'clark', u'happi', u'open', u'slot']
[u'coalit', u'backbench', u'push', u'welfar', u'reform']
[u'coalit', u'promis', u'kalgoorli', u'hospit', u'boost']
[u'coff', u'citi', u'centr', u'speed']
[u'commod', u'price', u'hop', u'push', u'market', u'higher']
[u'communiti', u'assist', u'polic', u'serial', u'rape', u'case']
[u'concern', u'tafe', u'servic', u'downgrad', u'western']
[u'council', u'elect', u'prefer', u'count', u'begin']
[u'council', u'drive', u'home', u'driveway', u'standard']
[u'councillor', u'want', u'food', u'drink', u'spend', u'detail']
[u'council', u'reject', u'smoke', u'enforc', u'role']
[u'crew', u'brace', u'bushfir', u'weather', u'loom']
[u'croc', u'cocki', u'play', u'off']
[u'davenport', u'march']
[u'davydenko', u'progress', u'quarter', u'final']
[u'dechi', u'stun', u'myskina', u'reach', u'quarter', u'final']
[u'diseas', u'threaten', u'aceh', u'warn']
[u'document', u'expos', u'nation', u'galleri', u'staff', u'cancer']
[u'attack', u'kill', u'famili', u'donkey']
[u'dog', u'audit', u'broadway', u'glori']
[u'downpour', u'spark', u'flood', u'woe']
[u'east', u'coast', u'step', u'closer']
[u'elton', u'john', u'play', u'pari', u'tsunami', u'victim']
[u'criticis', u'franc']
[u'ethanol', u'blend', u'fuel', u'flow', u'darl', u'down']
[u'expert', u'shed', u'light', u'indigen', u'tourism']
[u'famili', u'anger', u'shortag', u'prompt', u'patient']
[u'feder', u'agassi', u'sight']
[u'destroy', u'fleet']
[u'safeti', u'talk', u'track']
[u'firm', u'start', u'limeston', u'drill']
[u'flood', u'rain', u'put', u'north', u'author', u'alert']
[u'forecast', u'predict', u'econom', u'slowdown']
[u'forecast', u'predict', u'rain', u'queensland']
[u'franc', u'launch', u'pacif', u'reef', u'protect', u'plan']
[u'fraser', u'eye', u'nrma', u'presid']
[u'fruit', u'free', u'status', u'offer', u'greater', u'export']
[u'galleri', u'cancer', u'claim', u'need', u'investig']
[u'gallop', u'fail', u'fli', u'start']
[u'geraldton', u'consid', u'seat', u'elect']
[u'pledg', u'support', u'mentor', u'program']
[u'talk', u'reconcili', u'uluru', u'ceremoni']
[u'gillard', u'urg', u'parti', u'support', u'leader']
[u'glenelg', u'lake', u'clean', u'continu', u'fish', u'kill']
[u'govt', u'shell', u'turtl', u'display', u'fund']
[u'grant', u'control', u'tackl', u'communiti', u'woe']
[u'group', u'renew', u'call', u'communiti', u'liaison']
[u'group', u'share', u'export', u'push', u'fund']
[u'health', u'worker', u'consid', u'industri', u'action']
[u'heritag', u'council', u'support', u'preserv', u'public']
[u'hewitt', u'fight']
[u'hewitt', u'fight', u'fourth']
[u'hewitt', u'quarter', u'dramat']
[u'hewitt', u'prim', u'nadal', u'showdown']
[u'contest', u'predict', u'albani', u'bunburi']
[u'hundr', u'flee', u'kenyan', u'land', u'clash']
[u'impot', u'drug', u'reduc', u'heart', u'failur']
[u'incat', u'employe', u'return', u'work']
[u'indonesian', u'militari', u'urg', u'hand', u'effort']
[u'inspir', u'molik', u'upset', u'venus']
[u'intern', u'team', u'probe', u'filipino', u'journalist']
[u'iraqi', u'minist', u'fear', u'fraud', u'landmark', u'elect']
[u'israel', u'deputi', u'welcom', u'abba', u'peac', u'effort']
[u'japanes', u'militari', u'deploy', u'tsunami', u'indonesia']
[u'juve', u'extend', u'lead', u'livorno', u'stun', u'milan']
[u'kitten', u'attack', u'sicken', u'polic']
[u'labor', u'announc', u'katherin', u'candid']
[u'labor', u'backbench', u'throw', u'support', u'beazley']
[u'lee', u'slow', u'over', u'cost', u'money', u'boof']
[u'legal', u'servic', u'highlight', u'polic', u'interview', u'right']
[u'lifesav', u'standardis', u'surf', u'signag']
[u'lightn', u'blame', u'grafton', u'power', u'woe']
[u'lithgow', u'council', u'ponder', u'budget', u'blowout']
[u'lobster', u'fisher', u'tip', u'catch', u'plan']
[u'low', u'like', u'bring', u'central', u'rain']
[u'mackay', u'host', u'ethanol', u'workshop']
[u'magistr', u'exchang', u'program', u'begin']
[u'charg', u'tourist', u'theft']
[u'die', u'maaroom', u'crash']
[u'face', u'court', u'gang', u'stoush']
[u'surviv', u'slash', u'arteri']
[u'face', u'court', u'jail', u'break']
[u'marathon', u'polic', u'chase', u'end', u'safe']
[u'market', u'plan', u'delay', u'miss', u'tourist', u'visitor', u'peak']
[u'martyn', u'rest', u'katich', u'frame']
[u'miner', u'offer', u'creek', u'clean', u'plan']
[u'mine', u'firm', u'consid', u'marandoo', u'roster', u'option']
[u'minist', u'talk', u'traine', u'surgeon', u'plan']
[u'miss', u'toddler', u'reunit', u'famili']
[u'miss', u'woman', u'case', u'frustrat', u'polic']
[u'molik', u'quarter', u'final']
[u'molik', u'win', u'open', u'venus']
[u'geraldton', u'base', u'tsunami', u'victim']
[u'nation', u'bushfir', u'report', u'long', u'come']
[u'nation', u'galleri', u'reject', u'claim', u'cancer', u'cover']
[u'navi', u'investig', u'base', u'complaint']
[u'nbls', u'asian', u'push', u'gather', u'steam']
[u'netanyahu', u'reject', u'palestinian', u'truce', u'call']
[u'hope', u'osteoarthr', u'pain', u'suffer']
[u'resid', u'group', u'focus', u'crime', u'fight']
[u'echuca', u'bridg', u'debat']
[u'north', u'west', u'resid', u'prepar', u'poll']
[u'nrma', u'presid', u'oust', u'board', u'coup']
[u'scientist', u'head', u'aceh']
[u'kill', u'earthquak', u'spark', u'sulawesi', u'tsunami']
[u'opal', u'reactor', u'ramp', u'nuclear', u'product']
[u'opposit', u'want', u'waterfal', u'recommend']
[u'pair', u'charg', u'home', u'invas']
[u'pakistan', u'close', u'investig', u'rape', u'alleg']
[u'patriot', u'book', u'super', u'bowl', u'clash', u'eagl']
[u'petit', u'seek', u'armidal', u'hospit', u'boost']
[u'philli', u'break', u'super', u'bowl', u'drought']
[u'pike', u'issu', u'health', u'servic', u'probe', u'warn']
[u'plan', u'afoot', u'greater', u'waltz', u'matilda', u'centr']
[u'polic', u'appeal', u'help', u'catch', u'toddler']
[u'polic', u'arrest', u'drug', u'bust']
[u'polic', u'call', u'children', u'attack', u'crew']
[u'polic', u'hunt', u'servic', u'station', u'bandit']
[u'polic', u'probe', u'fatal', u'crash']
[u'polic', u'probe', u'port', u'germein', u'shoot']
[u'polic', u'search', u'arm', u'hold']
[u'polic', u'seek', u'clue', u'slay']
[u'princip', u'meet', u'educ']
[u'prison', u'farm', u'escap']
[u'probe', u'widen', u'roulett', u'crash']
[u'public', u'hous', u'head', u'defend', u'record']
[u'public', u'remind', u'danger']
[u'ranger', u'outlast', u'battl', u'don']
[u'real', u'return', u'form', u'valencia', u'lose']
[u'redevelop', u'plan', u'spark', u'green', u'concern']
[u'region', u'health', u'servic', u'alarm', u'number']
[u'report', u'find', u'economi', u'quieter', u'period']
[u'research', u'probe', u'dementia', u'fall']
[u'resourc', u'wast', u'miss', u'woman', u'ring', u'famili']
[u'retail', u'lobbi', u'longer', u'shop', u'hour']
[u'say', u'canberra', u'pull', u'posit', u'region']
[u'rise', u'land', u'valu', u'spark', u'rat', u'review']
[u'roddick', u'safe', u'quarter', u'final']
[u'rudd', u'delay', u'leadership', u'decis']
[u'rudd', u'wont', u'contest', u'labor', u'leadership']
[u'backbench', u'back', u'rudd', u'leadership', u'race']
[u'region', u'servic', u'doubt']
[u'scheme', u'boost', u'tourist', u'awar', u'alcohol', u'ban']
[u'school', u'base', u'apprenticeship', u'rise']
[u'school', u'return', u'student']
[u'search', u'resum', u'miss', u'canyon']
[u'servic', u'deliveri', u'see', u'issu', u'kimberley']
[u'shanghai', u'plan', u'space', u'citi']
[u'shattock', u'confid', u'port', u'success']
[u'shepparton', u'iraqi', u'defi', u'global', u'trend']
[u'singapor', u'claim', u'near', u'open', u'sky', u'deal']
[u'singer', u'secur', u'citizen', u'year', u'honour']
[u'snowstorm', u'caus', u'travel', u'chao']
[u'state', u'fund', u'cover', u'storm', u'damag']
[u'statist', u'highlight', u'fast', u'region', u'growth']
[u'storm', u'clean', u'keep', u'busi']
[u'strand', u'tourist', u'rescu', u'flood']
[u'strauss', u'thorp', u'weather', u'thwart', u'south', u'africa']
[u'strong', u'aftershock', u'shake', u'nicobar', u'island']
[u'student', u'school']
[u'student', u'readi', u'medic', u'school']
[u'sudanes', u'support', u'outnumb', u'anti', u'immigr']
[u'supermarket', u'shopper', u'avoid', u'crash']
[u'taiwan', u'cabinet', u'resign', u'pave', u'reshuffl']
[u'tara', u'drink', u'water', u'scheme']
[u'teacher', u'await', u'sentenc', u'affair', u'schoolgirl']
[u'teacher', u'plead', u'guilti', u'schoolgirl']
[u'teacher', u'suspend', u'polic', u'check']
[u'temperatur', u'rise', u'central']
[u'iraqi', u'kill', u'violenc', u'north', u'baghdad']
[u'test', u'measur', u'crash', u'damag', u'navi', u'ship']
[u'hospit', u'sydney', u'hous']
[u'tour', u'chase', u'offici', u'status']
[u'townsvill', u'land', u'sale']
[u'trade', u'tax', u'campaign', u'agenda']
[u'transport', u'firm', u'cop', u'heavi', u'fine', u'overload', u'truck']
[u'trochus', u'shell', u'harvest', u'continu']
[u'troop', u'near', u'home', u'solomon', u'stint']
[u'tsunami', u'aid', u'storm', u'surg', u'research']
[u'tsunami', u'toll', u'exceed']
[u'tuna', u'festiv', u'help', u'eas', u'woe']
[u'johnni', u'carson', u'die', u'age']
[u'bruce', u'highway', u'crash']
[u'hold', u'germani', u'iraq', u'bomb', u'plot']
[u'kill', u'bendigo', u'crash']
[u'women', u'plead', u'guilti', u'boy', u'assault']
[u'union', u'say', u'public', u'school', u'fund', u'fall']
[u'chang', u'unfair', u'student']
[u'accus', u'bulli', u'canada', u'defenc', u'plan']
[u'confirm', u'iraq', u'money', u'investig']
[u'enlist', u'robo', u'soldier']
[u'north', u'east', u'emerg', u'record', u'snowstorm']
[u'leader', u'campaign', u'trail']
[u'tear', u'afghanistan', u'give', u'help', u'hand', u'aceh']
[u'yachtsman', u'face', u'bali', u'court']
[u'yachtsman', u'appear', u'indonesian', u'court']
[u'weather', u'tip', u'wine', u'grape', u'harvest']
[u'wood', u'cruis', u'victori']
[u'world', u'beat', u'zealand', u'wicket']
[u'world', u'win', u'toss', u'bowl']
[u'young', u'smoker', u'quit']
[u'youth', u'meet', u'star', u'central', u'west']
[u'zarqawi', u'group', u'claim', u'kill', u'elect', u'candid']
[u'zarqawi', u'milit', u'execut', u'hostag', u'iraqi', u'street']
[u'guantanamo', u'detaine', u'attempt', u'suicid']
[u'resort', u'approv', u'agn', u'water']
[u'abba', u'order', u'demolit', u'illeg', u'build']
[u'abbott', u'deni', u'consum']
[u'accommod', u'shortag', u'prompt', u'roster', u'rethink']
[u'adelaid', u'film', u'festiv', u'program', u'unveil']
[u'aid', u'drug', u'test', u'cameroon', u'prostitut']
[u'alexand', u'catwoman', u'lead', u'razzi', u'nomin']
[u'annan', u'urg', u'intern', u'vigil', u'hate']
[u'arab', u'candid', u'pull', u'iraq', u'vote', u'kirkuk']
[u'atkinson', u'alleg', u'race', u'jibe']
[u'baghdad', u'embassi', u'shoot', u'investig']
[u'barnett', u'defend', u'fiscal', u'record']
[u'bash', u'woman', u'undergo', u'emerg', u'caesarean']
[u'beatti', u'didnt', u'order', u'gold', u'coast', u'home']
[u'beazley', u'welcom', u'rudd', u'support']
[u'beetl', u'nose', u'north']
[u'bega', u'face', u'doctor', u'shortag']
[u'belmont', u'vote', u'world', u'best', u'bowler']
[u'benefit', u'flow', u'noosa', u'river', u'plan', u'beatti']
[u'bird', u'like', u'jump', u'human']
[u'blaze', u'forc', u'man', u'flat', u'evacu']
[u'brack', u'attack', u'kitten', u'abus']
[u'british', u'media', u'blame', u'rise', u'anti', u'semit']
[u'bundaberg', u'celebr', u'australia']
[u'burn', u'doctor', u'name', u'australian', u'year']
[u'bush', u'seek', u'billion', u'militari', u'oper']
[u'businessman', u'name', u'gold', u'coast', u'citizen']
[u'candid', u'state', u'case', u'albani']
[u'childer', u'arsonist', u'plead', u'guilti', u'assault']
[u'china', u'measur', u'everest', u'amid', u'shrinkag', u'fear']
[u'christian', u'slater', u'escap', u'knife', u'attack', u'london']
[u'claim', u'govt', u'reject', u'bushfir', u'helicopt', u'rescu']
[u'cold', u'snap', u'grip', u'western', u'europ']
[u'commod', u'sale', u'expect', u'boost', u'market']
[u'contamin', u'hamper', u'stem', u'cell', u'research']
[u'costello', u'plan', u'beazley']
[u'costello', u'say', u'inflat', u'target', u'rang']
[u'council', u'defend', u'australia', u'balanc']
[u'council', u'endors', u'wind', u'farm']
[u'council', u'focus', u'launceston', u'infrastructur']
[u'council', u'hold', u'tourism', u'plan', u'talk']
[u'council', u'plan', u'residenti', u'land', u'boost']
[u'council', u'speak', u'wast', u'contract']
[u'council', u'motorcycl', u'event']
[u'council', u'cross', u'tsunami', u'debrief']
[u'council', u'lobbi', u'costa', u'highway', u'meet']
[u'darwin', u'council', u'consid', u'shower', u'dirti']
[u'darwin', u'delay', u'speed', u'chang', u'march']
[u'defenc', u'finish', u'assess', u'damag', u'frigat']
[u'democrat', u'claim', u'australia', u'council']
[u'democrat', u'sight', u'upper', u'hous', u'seat']
[u'canio', u'face', u'disciplinari', u'hear', u'fascist']
[u'diouf', u'steal', u'blackburn']
[u'doctor', u'urologist', u'resign']
[u'drug', u'industri', u'flag', u'concern']
[u'duck', u'lwrong', u'libber', u'claim', u'deni']
[u'dump', u'nrma', u'chief', u'prepar', u'face', u'board']
[u'educ', u'dept', u'offer', u'queenstown', u'tafe', u'assur']
[u'injur', u'melbourn', u'tram', u'collis']
[u'escap', u'catch', u'prison']
[u'expert', u'monitor', u'mango', u'diseas']
[u'explos', u'ronchi', u'lift']
[u'farm', u'accid', u'high']
[u'feder', u'humbl', u'agassi', u'reach', u'semi']
[u'feder', u'step', u'pressur', u'agassi']
[u'danger', u'eastern', u'tasmania']
[u'servic', u'back', u'claim', u'elvi', u'overr']
[u'dead', u'miss', u'thai', u'tourist', u'boat', u'tragedi']
[u'soldier', u'kill', u'iraq', u'accid']
[u'fli', u'fox', u'danger', u'despit', u'aerial', u'grid']
[u'food', u'poison', u'investig', u'finger', u'dip']
[u'freeway', u'work', u'like', u'boost', u'alburi', u'construct']
[u'french', u'actress', u'sign', u'vinci', u'code']
[u'gallop', u'govt', u'cough', u'sack', u'miner']
[u'gate', u'give', u'vaccin', u'fund', u'shoot']
[u'gold', u'coast', u'woman', u'face', u'indonesian', u'court']
[u'gorgon', u'tender', u'cost', u'job', u'green']
[u'govern', u'look', u'prevent', u'habib', u'sell', u'stori']
[u'govern', u'question', u'climat', u'chang', u'recommend']
[u'govern', u'unfurl', u'school', u'flagpol', u'plan']
[u'green', u'low', u'join', u'kimberley', u'contest']
[u'group', u'lobbi', u'boost', u'region', u'social', u'servic']
[u'grower', u'feder', u'drought']
[u'guard', u'fear', u'life', u'bash']
[u'gympi', u'gold', u'histori', u'shin', u'centenari']
[u'hervey', u'trawler', u'skipper', u'fin', u'illeg']
[u'hewitt', u'antic', u'good', u'tenni', u'say', u'nalbandian']
[u'hewitt', u'shrug', u'injuri', u'concern']
[u'hmas', u'adelaid', u'complet', u'persian', u'gulf', u'mission']
[u'hospit', u'mental', u'health', u'servic']
[u'hous', u'shortag', u'hinder', u'indigen', u'educ']
[u'howard', u'warn', u'elect', u'complac']
[u'best', u'say', u'beat', u'venus']
[u'incat', u'worker', u'stage', u'strike']
[u'indian', u'politician', u'murder', u'trigger', u'riot']
[u'indigen', u'communiti', u'eye', u'telescop', u'plan']
[u'indonesia', u'appoint', u'anti', u'money', u'launder', u'envoy']
[u'indonesia', u'send', u'team', u'rebel', u'talk']
[u'injur', u'flintoff', u'dayer']
[u'inquiri', u'chair', u'lament', u'lack', u'action', u'bushfir']
[u'grow', u'sheep', u'market']
[u'iran', u'rule', u'talk']
[u'iraqi', u'exil', u'littl', u'enthusiasm', u'vote']
[u'iraqi', u'forc', u'accus', u'tortur', u'detaine']
[u'iraqi', u'judg', u'assassin', u'baghdad']
[u'irrig', u'eas', u'water', u'ban']
[u'israel', u'consid', u'gaza', u'west', u'bank', u'train']
[u'girl', u'author', u'rowl']
[u'jilt', u'lover', u'admit', u'burn', u'girlfriend']
[u'johnson', u'retir', u'immens', u'reput', u'intact']
[u'katich', u'hogg', u'mcgrath', u'rotat', u'polici', u'continu']
[u'lack', u'specialist', u'servic', u'hinder', u'palsi']
[u'lion', u'roar', u'say', u'johnson']
[u'littl', u'show', u'skill', u'migrant', u'scheme']
[u'local', u'govt', u'reveal', u'elect', u'wish', u'list']
[u'lomu', u'hit', u'comeback', u'trail']
[u'fin', u'beckham', u'lose', u'head']
[u'mayor', u'open', u'wind', u'farm', u'plan']
[u'mayor', u'seek', u'releas', u'boost', u'creek']
[u'mcguigan', u'simeon', u'secur', u'mildara', u'wineri']
[u'mcmahon', u'bind', u'glori']
[u'mcmahon', u'bind', u'perth']
[u'meet', u'highlight', u'student', u'retent', u'fear']
[u'meet', u'discuss', u'oper', u'theatr', u'closur']
[u'melbourn', u'blitz', u'snare', u'drink', u'driver']
[u'mexico', u'seal', u'prison', u'murder']
[u'miner', u'hop', u'treasur', u'trash']
[u'minist', u'gloss', u'economi', u'warn']
[u'miss', u'expect', u'tsunami', u'toll', u'past']
[u'miss', u'man', u'bodi', u'river']
[u'miss', u'man', u'famili', u'happi', u'toowoomba', u'visit']
[u'seek', u'chang', u'lord', u'howe', u'visitor', u'law']
[u'murder', u'lose', u'parol', u'applic', u'shadow']
[u'trade', u'case', u'adjourn']
[u'netbal', u'unveil', u'busi', u'test', u'schedul']
[u'complex', u'focus', u'entertain']
[u'law', u'chang', u'communiti', u'base', u'sentenc']
[u'leas', u'life', u'possibl', u'nickel', u'project']
[u'minist', u'offer', u'rescu', u'chopper', u'hope']
[u'obes', u'mask', u'prostat', u'cancer', u'symptom']
[u'opera', u'great', u'bronhil', u'die']
[u'oper', u'resum', u'brisban', u'airport']
[u'orang', u'grove', u'inquiri', u'hear', u'corrupt']
[u'pakistan']
[u'palestinian', u'faction', u'fuel', u'optim', u'ceasefir']
[u'pentagon', u'offici', u'lift', u'veil', u'team']
[u'perilya', u'look', u'underground', u'develop']
[u'pilot', u'receiv', u'suspend', u'sentenc', u'safeti', u'breach']
[u'plan', u'begin', u'return', u'hospit', u'public', u'hand']
[u'player', u'associ', u'rais', u'leagu', u'concern']
[u'cut', u'citizenship', u'present', u'list', u'half']
[u'welcom', u'iraq', u'bomber', u'arrest']
[u'polic', u'alarm', u'yamba', u'attack']
[u'polic', u'hunt', u'wagga', u'hotel', u'bandit']
[u'polic', u'interview', u'kidman', u'bug', u'devic']
[u'polic', u'probe', u'drive', u'shoot']
[u'polic', u'seek', u'crash', u'wit']
[u'polic', u'vehicl', u'ram', u'perth', u'robberi']
[u'power', u'author', u'seek', u'inquest', u'answer']
[u'program', u'boost', u'option', u'indigen', u'school']
[u'public', u'warn', u'dodgi', u'chariti', u'collector']
[u'public', u'warn', u'loom', u'danger']
[u'cyclon', u'fear', u'dissip', u'move', u'south', u'east']
[u'rail', u'talk', u'consid', u'loss']
[u'rain', u'bring', u'dengu', u'fever', u'alert']
[u'rain', u'like', u'boost', u'locust', u'hatch']
[u'ranger', u'oper', u'confid', u'water', u'contamin']
[u'region', u'play', u'manag', u'growth']
[u'registr', u'chang', u'unqualifi', u'teacher']
[u'report', u'delay', u'trial', u'miner', u'death']
[u'report', u'admit', u'make', u'yahoo', u'babi', u'name']
[u'research', u'warn', u'age', u'popul', u'impact']
[u'restructur', u'north', u'west', u'vote', u'wide', u'rang']
[u'risk', u'factor', u'alzheim', u'heart', u'diseas', u'similar']
[u'roulett', u'pilot', u'clear']
[u'roulett', u'clear', u'australia']
[u'runaway', u'driver', u'face', u'court']
[u'runway', u'mishap', u'caus', u'brisban', u'airport', u'chao']
[u'rural', u'industri', u'workplac', u'accid', u'rise']
[u'safin', u'breez', u'past', u'hrbati']
[u'salvo', u'eyr', u'peninsula', u'donat', u'concern']
[u'speaker', u'avoid', u'bankruptci', u'action']
[u'taxpay', u'benefit', u'santo', u'share', u'price']
[u'remain', u'premier', u'wine', u'produc']
[u'second', u'teen', u'charg', u'bottl', u'shop', u'break']
[u'send', u'archbishop', u'draw', u'critic']
[u'senior', u'judg', u'shoot', u'dead', u'baghdad']
[u'senior', u'labor', u'colleagu', u'urg', u'gillard']
[u'serena', u'crush', u'mauresmo', u'reach', u'semi']
[u'sharapova']
[u'sharapova', u'semi']
[u'share', u'close', u'lower', u'wall', u'street']
[u'shark', u'set', u'sight', u'rifl', u'rang']
[u'snowi', u'mountain', u'tourism', u'boom', u'season']
[u'southwood', u'name', u'suprem', u'court', u'judg']
[u'squash', u'palmer', u'cop', u'year', u'long']
[u'lankan', u'cricket', u'help', u'darwin', u'tsunami']
[u'stab', u'put', u'woman', u'hospit']
[u'stanhop', u'back', u'emerg', u'servic', u'shift']
[u'surfer', u'want', u'surf', u'break', u'craypot']
[u'surf', u'signag', u'photo', u'plan', u'invad', u'privaci']
[u'survey', u'turn', u'sign', u'citrus', u'canker', u'spread']
[u'rescu', u'flood']
[u'thai', u'tourist', u'boat', u'capsiz', u'kill', u'miss']
[u'thai', u'tourist', u'boat', u'crash', u'kill', u'miss']
[u'thousand', u'expect', u'enjoy', u'australia']
[u'tibetan', u'monk', u'order', u'support', u'panchen', u'lama']
[u'tourism', u'bodi', u'say', u'council', u'lobbi', u'state']
[u'tourism', u'oper', u'ask', u'support', u'spirit']
[u'toxic', u'wast', u'activist', u'welcom', u'cabinet', u'reshuffl']
[u'trio', u'arrest', u'alleg', u'credit', u'card', u'scam']
[u'troop', u'shoot', u'suspici', u'outsid', u'baghdad', u'embassi']
[u'tsunami', u'brutal', u'warn', u'environment', u'crisi']
[u'tsunami', u'ship', u'arriv', u'townsvill']
[u'tsunami', u'countri', u'struggl', u'cope', u'dead']
[u'tune', u'determin', u'song', u'brumbi']
[u'ukrain', u'russian', u'leader', u'discuss', u'differ']
[u'student', u'outcom', u'rank']
[u'union', u'back', u'galleri', u'cancer', u'investig']
[u'union', u'concern', u'workplac', u'accid', u'probe']
[u'back', u'diplomaci', u'iran', u'straw', u'say']
[u'confirm', u'pentagon', u'intellig', u'team']
[u'troop', u'iraq']
[u'vettori', u'rule', u'world', u'match']
[u'opposit', u'cast', u'doubt', u'polic', u'minist']
[u'vic', u'outgo', u'polic', u'minist', u'defend', u'record']
[u'victoria', u'cabinet', u'swear']
[u'visi', u'consid', u'rail', u'invest']
[u'airlin', u'troubl', u'region', u'flight']
[u'contend', u'target', u'apprenticeship', u'child']
[u'nightclub', u'metal', u'detector', u'snub']
[u'weather', u'condit', u'boost', u'wine', u'grape', u'product']
[u'weird', u'worm', u'captur', u'attenborough', u'attent']
[u'western', u'queensland', u'bounc', u'idea']
[u'women', u'vote', u'right', u'reach', u'year']
[u'worker', u'oppos', u'plan']
[u'xstrata', u'drill', u'continu']
[u'xstrata', u'push', u'takeov', u'plan']
[u'xstrata', u'welcom', u'lobbi', u'takeov']
[u'youth', u'face', u'court', u'backpack', u'assault']
[u'australia', u'base', u'iraqi', u'vote']
[u'tasmanian', u'receiv', u'australia', u'award']
[u'govt', u'plan', u'reward', u'young', u'driver']
[u'aceh', u'tsunami', u'toll', u'continu', u'mount']
[u'can', u'alic', u'season', u'match']
[u'pour', u'rebuild', u'ravag', u'eyr', u'peninsula']
[u'alcan', u'investig', u'chemic', u'spill']
[u'allawi', u'reject', u'deadlin', u'foreign', u'troop']
[u'team', u'ferrari', u'sign', u'test', u'deal']
[u'ancient', u'indigen', u'remain']
[u'annan', u'question', u'food', u'program']
[u'arson', u'suspect', u'abattoir', u'site', u'blaze']
[u'aussi', u'sailor', u'abandon', u'round', u'world', u'race']
[u'aust', u'honour', u'journalist']
[u'aust', u'honour', u'recognis', u'central']
[u'australia', u'eas', u'victori', u'west', u'indi']
[u'australian', u'complac', u'democraci']
[u'australia', u'reli', u'tailend', u'stand']
[u'australia', u'victori']
[u'award', u'honour', u'ordinari', u'australian', u'beatti']
[u'award', u'win', u'fli', u'doctor', u'prais', u'troubl']
[u'weather', u'dampen', u'beachgoer', u'australia']
[u'weather', u'hamper', u'firefight']
[u'barnett', u'apologis', u'joke']
[u'barnett', u'cost', u'attack']
[u'bathurst', u'urg', u'govt', u'fund', u'elect']
[u'beach', u'close', u'rough', u'surf', u'pound', u'coast']
[u'beatti', u'cast', u'doubt', u'tacki', u'beach', u'sign']
[u'beazley', u'get', u'australia']
[u'beazley', u'shrug', u'drop', u'republ', u'support']
[u'beazley', u'take', u'gillard', u'advic', u'board']
[u'bike', u'ride', u'aim', u'boost', u'tsunami']
[u'blair', u'signal', u'secur', u'handov', u'iraq']
[u'blast', u'rock', u'india', u'republ', u'celebr']
[u'blue', u'deni', u'chase', u'carey', u'coach', u'role']
[u'bone', u'marrow', u'cell', u'restor', u'heart', u'function']
[u'british', u'guantanamo', u'detaine', u'return', u'home']
[u'break', u'hill', u'funer', u'honour', u'bronhil']
[u'break', u'hill', u'seek', u'return', u'opera', u'great', u'bodi']
[u'pacif', u'highway', u'fund', u'boost']
[u'boost', u'fund', u'speed', u'limit', u'awar']
[u'price', u'movi', u'snack']
[u'blaze', u'close', u'highway']
[u'carey', u'reunit', u'premiership', u'coach', u'pagan']
[u'cat', u'string']
[u'church', u'talk', u'controversi', u'farewel', u'plan']
[u'cole', u'celebr', u'local', u'hero', u'award']
[u'collin', u'wreck', u'australia', u'order']
[u'commission', u'oppos', u'sale', u'uluru', u'handov', u'poster']
[u'communiti', u'member', u'honour', u'australia']
[u'compos', u'australia', u'mark', u'proud', u'career']
[u'council', u'claim', u'palm', u'unrest', u'ignor']
[u'coupl', u'kill', u'attend', u'brother', u'wake']
[u'crew', u'save', u'woman', u'maroon', u'roof', u'flood']
[u'cricket', u'test', u'tenac', u'effort', u'bowl']
[u'darwin', u'welcom', u'citizen']
[u'davenport', u'overcom', u'brave', u'molik']
[u'davydenko', u'default', u'roddick', u'open']
[u'dechi', u'upset', u'schnyder', u'reach']
[u'detail', u'hold', u'habib', u'releas']
[u'deton', u'steal', u'maryborough', u'rail', u'depot']
[u'doctor', u'honour', u'work', u'disabl']
[u'doctor', u'reward', u'aust', u'honour']
[u'domest', u'disput', u'suspect', u'caus', u'immol']
[u'down', u'lead', u'british', u'open', u'qualifi']
[u'driver', u'urg', u'care', u'condit']
[u'drought', u'farmer', u'remind', u'loan', u'deadlin']
[u'dun', u'accus', u'killer', u'remand']
[u'earli', u'settler', u'fire', u'australian', u'desert']
[u'earthquak', u'kill', u'turkey']
[u'endang', u'bird', u'speci', u'return']
[u'england', u'year', u'drought', u'south', u'africa']
[u'eurobodalla', u'water', u'ban', u'relax']
[u'mayor', u'honour', u'aust', u'award']
[u'fan', u'join', u'australian', u'open', u'birthday', u'parti']
[u'farmer', u'remind', u'drought', u'offer']
[u'clean', u'volunt', u'tell', u'insur']
[u'firefight', u'tackl', u'blaze']
[u'fire', u'forc', u'closur', u'glenelg', u'highway']
[u'fischer', u'get', u'aust', u'honour']
[u'flood', u'water', u'inund', u'murray', u'bridg']
[u'politician', u'give', u'australia', u'award']
[u'wide', u'burnett', u'resid', u'oam']
[u'fowler', u'diaz', u'doyl', u'flanagan', u'open']
[u'music', u'chief', u'urg', u'better', u'film', u'tune']
[u'fund', u'help', u'boost', u'natur', u'refug']
[u'fund', u'boost', u'home', u'medic', u'care', u'access']
[u'gallop', u'talk', u'govt', u'geraldton', u'effort']
[u'gear', u'box', u'sacrific', u'australia', u'celebr']
[u'georg', u'bass', u'drive', u'roadwork', u'track']
[u'gerrard', u'fire', u'liverpool', u'leagu', u'final']
[u'giant', u'lamington', u'rais', u'tsunami', u'fund']
[u'gillard', u'give', u'beazley', u'clear']
[u'gillard', u'announc', u'leadership', u'intent']
[u'govt', u'tackl', u'rowdi', u'yandina', u'teen']
[u'govt', u'block', u'atsic', u'asset', u'sale']
[u'govt', u'urg', u'cane', u'toad', u'trap']
[u'green', u'seek', u'brief', u'hospit', u'staff', u'crisi']
[u'gunn', u'quell', u'pulp', u'site', u'specul']
[u'hawk', u'manag', u'fli', u'nest']
[u'hawk', u'manag', u'quit']
[u'hewitt', u'semi', u'thrill']
[u'hockey', u'champ', u'award', u'aust', u'medal']
[u'hope', u'region', u'rout', u'carrier']
[u'howard', u'prais', u'aust', u'troop', u'iraq']
[u'howard', u'welcom', u'citizen']
[u'hugh', u'biopic', u'top', u'oscar', u'nomin']
[u'hunter', u'rail', u'make', u'record', u'coal', u'haulag']
[u'illawarra', u'resid', u'join', u'aust', u'award']
[u'india', u'plan', u'lunar', u'mission', u'success']
[u'indigen', u'communiti', u'reflect', u'past', u'abus']
[u'insurg', u'continu', u'elect', u'drive', u'attack']
[u'invas', u'protest', u'highlight', u'injustic']
[u'iran', u'promis', u'astonish', u'respons', u'attack']
[u'iraq', u'elect', u'result', u'day']
[u'irrig', u'hail', u'reduct', u'water']
[u'isra', u'troop', u'kill', u'gaza', u'toddler', u'wit']
[u'israel', u'lift', u'peac', u'talk']
[u'israel', u'send', u'soldier', u'jail', u'defi']
[u'israel', u'stop', u'target', u'kill', u'calm', u'sector']
[u'italian', u'polic', u'arrest', u'major', u'mafia', u'oper']
[u'jordan', u'announc', u'russian', u'takeov']
[u'latrob', u'valley', u'plan', u'tsunami', u'effort']
[u'lizard', u'rescu', u'hong', u'kong', u'cook', u'pot']
[u'local', u'number', u'rise']
[u'local', u'featur', u'aust', u'award']
[u'arrest', u'alleg', u'stab', u'neighbour']
[u'die', u'ablaz']
[u'die', u'taxi', u'motorcycl', u'collid']
[u'face', u'extradit', u'charg']
[u'guilti', u'rap', u'daughter', u'bundaberg']
[u'face', u'court', u'drive', u'shoot']
[u'mawson', u'nation', u'heritag', u'site']
[u'mayor', u'honour', u'aust', u'medal']
[u'meteorit', u'arous', u'cambodian', u'superstit']
[u'mickelberg', u'lawyer', u'humbl', u'australia', u'award']
[u'north', u'resid', u'honour', u'aust', u'award']
[u'militari', u'reflect', u'australia', u'celebr']
[u'miner', u'safe', u'siberian', u'scare']
[u'minist', u'urg', u'jail', u'open']
[u'minor', u'flood', u'warn', u'belling', u'river']
[u'mishap', u'highlight', u'need', u'airport', u'extens']
[u'missil', u'protect', u'plan', u'cost', u'instal']
[u'miss', u'tourist', u'relat', u'head', u'thailand']
[u'mitsubishi', u'record', u'loss', u'report']
[u'molik', u'bow', u'thriller']
[u'molik', u'hewitt', u'determin', u'australia']
[u'molik', u'join', u'rank', u'valiant', u'vanquish']
[u'monarchist', u'heart', u'opinion', u'poll']
[u'resid', u'urg', u'join', u'rural', u'ambul']
[u'murali', u'name', u'train', u'squad', u'tour']
[u'navi', u'offic', u'iraq', u'servic', u'recognis', u'australia']
[u'navi', u'urg', u'personnel', u'lodg', u'beryllium', u'claim']
[u'australian', u'bask', u'warm', u'glow', u'citizenship']
[u'newcastl', u'fine', u'bellami', u'pound']
[u'citizen', u'embrac', u'life', u'australia']
[u'zealand', u'beat', u'world', u'chariti', u'seri', u'decid']
[u'govern', u'support', u'whale', u'case']
[u'north', u'coast', u'join', u'aust', u'award']
[u'flag', u'school', u'fund']
[u'retain', u'credit', u'rat']
[u'offici', u'probe', u'cargo', u'plane', u'steer', u'failur']
[u'oram', u'doubt', u'australia', u'seri']
[u'oscar', u'snub', u'michael', u'moor', u'gibson']
[u'oxfam', u'criticis', u'qualiti', u'tsunami']
[u'palestinian', u'forc', u'demolish', u'gaza', u'home']
[u'palestinian', u'forc', u'prevent', u'mortar', u'attack', u'israel']
[u'perth', u'fire']
[u'picnic', u'train', u'chug', u'life', u'year']
[u'plastic', u'campaign', u'declar', u'local', u'hero']
[u'jail', u'australian', u'smuggl', u'charg']
[u'polic', u'inform', u'sexual', u'assault']
[u'polic', u'river']
[u'polic', u'probe', u'elder', u'tourist', u'dive', u'death']
[u'polic', u'quiz', u'egyptian', u'indonesia', u'aust', u'entri']
[u'polic', u'suspect', u'kangaroo', u'steal', u'food']
[u'polic', u'tackl', u'cyber', u'child', u'crime', u'global', u'oper']
[u'polish', u'court', u'fin', u'editor', u'insult', u'pope']
[u'priest', u'urg', u'vatican', u'rethink', u'marriag']
[u'professor', u'polic', u'offic', u'honour']
[u'public', u'urg', u'stop', u'defenc', u'land', u'sale']
[u'rain', u'cloud', u'hang', u'adelaid', u'dayer']
[u'record', u'number', u'australian', u'citizenship']
[u'region', u'polic', u'offic', u'win', u'citizen', u'year']
[u'bushfir', u'victim', u'lay', u'rest']
[u'sad', u'loss', u'major', u'dairi']
[u'safin', u'dilemma', u'stop', u'runaway', u'feder']
[u'safin', u'set', u'test', u'sublim', u'feder']
[u'govt', u'mental', u'health', u'servic']
[u'scheme', u'boost', u'public', u'dental', u'servic']
[u'search', u'fail', u'miss', u'boat', u'passeng']
[u'senior', u'australian', u'year', u'keen', u'help']
[u'rescu', u'injur', u'bushwalk']
[u'shark', u'spot', u'close', u'beach']
[u'shire', u'seek', u'water', u'defici', u'declar']
[u'sibl', u'infect', u'protect', u'studi']
[u'sierra', u'leon', u'trial', u'resum', u'offic']
[u'chang', u'south', u'african', u'squad']
[u'sixer', u'good', u'tiger']
[u'small', u'island', u'win', u'britain', u'whitbread', u'award']
[u'snake', u'aliv', u'deliv', u'unwant', u'guest']
[u'social', u'servic', u'deputi', u'die', u'famili', u'holiday']
[u'southern', u'share', u'aust', u'honour']
[u'space', u'station', u'crew', u'ventur', u'outsid']
[u'speedboat', u'driver', u'charg', u'capsiz']
[u'lankan', u'mourn', u'tsunami', u'dead', u'silenc']
[u'stoll', u'miller', u'mark', u'waugh', u'name', u'honour', u'list']
[u'storm', u'caus', u'chao', u'south', u'western', u'victoria']
[u'studi', u'find', u'region', u'live', u'satisfi']
[u'sunshin', u'beach', u'surpris', u'aust', u'award']
[u'supermarket', u'recal', u'contamin', u'sausag']
[u'support', u'strong', u'ravag', u'citi', u'mission']
[u'sydney', u'doctor', u'work', u'mental', u'health', u'recognis']
[u'teen', u'charg', u'get', u'bail']
[u'thailand', u'want', u'separatist', u'arrest']
[u'injur', u'separ', u'boat', u'accid']
[u'tiger', u'review', u'blignaut', u'contract']
[u'toilet', u'vandal', u'upset', u'council']
[u'citizen', u'award', u'recognis', u'volunt', u'work']
[u'tourism', u'industri', u'strong', u'despit', u'reduc']
[u'tsunami', u'toll', u'count', u'continu', u'month']
[u'miss', u'thai', u'ferri', u'accid']
[u'union', u'air', u'nurs', u'hour', u'fear']
[u'union', u'welcom', u'health', u'worker', u'rise']
[u'helicopt', u'crash', u'iraq']
[u'open', u'introduc', u'electron', u'replay']
[u'crew', u'continu', u'fight', u'lightn', u'strike', u'fire']
[u'video', u'show', u'kidnap', u'american', u'iraq']
[u'wall', u'street', u'welcom', u'profit', u'report']
[u'warrior', u'match']
[u'western', u'featur', u'aust', u'honour']
[u'western', u'resid', u'honour', u'australia', u'list']
[u'aid', u'drug', u'goal']
[u'woman', u'charg', u'immol', u'murder']
[u'wool', u'scour', u'prove', u'popular']
[u'world', u'dismiss']
[u'wwii', u'veteran', u'return', u'darwin', u'bomb']
[u'xstrata', u'tri', u'sell']
[u'call', u'time', u'servic']
[u'acci', u'want', u'privaci', u'exempt', u'small', u'busi']
[u'accus', u'drug', u'traffick', u'face', u'bali', u'court']
[u'aceh', u'peac', u'talk', u'relaunch']
[u'opposit', u'question', u'wait', u'list', u'reduct']
[u'seek', u'fund', u'indigen', u'health']
[u'ancient', u'tablet', u'coin', u'greec']
[u'anti', u'monarchi', u'protest', u'hold', u'swaziland']
[u'anti', u'paedophil', u'unit', u'investig', u'websit']
[u'architect', u'philip', u'johnson', u'die']
[u'attenborough', u'flush', u'giant', u'earthworm']
[u'attract', u'invest', u'elect', u'issu', u'mine']
[u'audit', u'offic', u'find', u'medicar', u'databas', u'date']
[u'aust', u'kid', u'good', u'saver', u'survey']
[u'australia', u'honour', u'western']
[u'australia', u'honour', u'recognis', u'gippsland']
[u'australian', u'ferri', u'victim', u'bodi', u'recov']
[u'australian', u'troop', u'germani', u'treatment']
[u'aust', u'troop', u'specif', u'bomb', u'target', u'command']
[u'background', u'check', u'see', u'school', u'employe', u'suspend']
[u'ballarat', u'region', u'share', u'aust', u'honour']
[u'bashir', u'walk', u'terror', u'trial']
[u'beach', u'condit', u'danger']
[u'beagl', u'administr', u'face', u'challeng']
[u'beazley', u'prepar', u'caucus', u'meet']
[u'billiton', u'achiev', u'record', u'output']
[u'crowd', u'celebr', u'australia']
[u'tourism', u'plan', u'wind']
[u'bilbi', u'educ', u'centr', u'plan']
[u'bird', u'bega', u'valley', u'blackout']
[u'bishop', u'back', u'push', u'overhaul', u'celibaci', u'law']
[u'brack', u'deni', u'transurban', u'renegoti']
[u'british', u'research', u'predict', u'time', u'ahead']
[u'break', u'hill', u'share', u'australia', u'honour']
[u'buchanan', u'back', u'hayden']
[u'buchanan', u'back', u'sort', u'hayden']
[u'bulldog', u'captainci', u'grab']
[u'bush', u'encourag', u'iraqi', u'voter', u'defi', u'insurg']
[u'teacher', u'train', u'address', u'neglect', u'abus']
[u'york', u'communiti', u'work']
[u'cancel', u'match', u'prove', u'cost']
[u'cape', u'jaffa', u'marina', u'plan', u'move', u'ahead']
[u'chelsea', u'beat', u'leagu', u'final']
[u'child', u'abus', u'protect', u'websit', u'launch']
[u'child', u'killer', u'minimum', u'secur', u'status', u'question']
[u'china', u'crack', u'zhao', u'mourner', u'wit']
[u'chines', u'dive', u'star', u'sanction', u'chase']
[u'communiti', u'leadership', u'disput', u'see', u'tension', u'boil']
[u'communiti', u'rais', u'fund', u'hous', u'victim']
[u'concert', u'rais', u'tsunami', u'fund']
[u'convent', u'centr', u'hold', u'elect']
[u'corbi', u'trial', u'adjourn', u'ahead', u'wit', u'account']
[u'council', u'adopt', u'road', u'revamp', u'concept', u'plan']
[u'council', u'move', u'artifici', u'reef', u'plan']
[u'council', u'plan', u'traffic', u'flow', u'improv']
[u'council', u'citizen']
[u'court', u'hear', u'drink', u'cultur', u'build']
[u'defenc', u'forc', u'help', u'bushfir', u'clean']
[u'deporte', u'incid', u'caus', u'human', u'right', u'concern']
[u'dept', u'plan', u'worker', u'face', u'corrupt', u'charg']
[u'domino', u'bigger', u'slice', u'market']
[u'driver', u'salari', u'cost', u'cut', u'agenda']
[u'dubbo', u'cricket', u'bowl', u'record']
[u'eagl', u'give', u'damron', u'share', u'hope', u'lead']
[u'eastern', u'tullamarin', u'link', u'govt', u'agenda']
[u'ember', u'blame', u'grass']
[u'england', u'savour', u'victori', u'complac']
[u'entri', u'aplenti', u'desert', u'race']
[u'esper', u'enjoy', u'australia', u'activ']
[u'expert', u'discuss', u'global', u'warm', u'threat']
[u'eyr', u'peninsula', u'fire', u'spark', u'water', u'tank', u'plan']
[u'famili', u'face', u'council', u'wrangl', u'backyard', u'burial']
[u'feedlot', u'plan', u'divid', u'council']
[u'festiv', u'aplenti', u'australia']
[u'fire', u'near', u'casterton', u'contain']
[u'archbishop', u'cancel', u'farewel', u'public']
[u'teacher', u'plead', u'guilti', u'student']
[u'fraser', u'defend', u'open', u'line', u'call']
[u'fresh', u'roddick', u'loom', u'weari', u'hewitt']
[u'fund', u'eas', u'road', u'closur', u'impact']
[u'gold', u'rush', u'dig', u'includ', u'heritag', u'list']
[u'govt', u'approv', u'oakey', u'polic', u'station']
[u'govt', u'highlight', u'troop', u'risk', u'elect', u'lead']
[u'govt', u'urg', u'relax', u'nude', u'beach', u'law']
[u'green', u'health', u'polici', u'focus', u'prevent']
[u'gunn', u'mission', u'help', u'chariti']
[u'habib', u'wont', u'arrest', u'keelti']
[u'hardi', u'compenst', u'benefit', u'australian']
[u'heavi', u'storm', u'caus', u'damag', u'geelong']
[u'mogul', u'accus', u'money', u'launder']
[u'histor', u'gaff', u'tourism', u'brochur']
[u'hope', u'code', u'stop', u'council', u'snip']
[u'india', u'confer', u'award', u'australian', u'widow']
[u'inquiri', u'prompt', u'townsvill', u'prison', u'upgrad']
[u'inquiri', u'tell', u'eastman', u'mental', u'trial']
[u'insurg', u'iraqi', u'militari', u'convoy']
[u'investig', u'interview', u'mine', u'accid']
[u'iraqi', u'forc', u'control', u'year', u'general']
[u'iraqi', u'urg', u'vote']
[u'kalgoorli', u'australia', u'event', u'best']
[u'kidman', u'win', u'restrain', u'order', u'photograph']
[u'kimberley', u'sister', u'get', u'australia', u'honour']
[u'labor', u'faction', u'urg', u'unit', u'beazley']
[u'labor', u'figur', u'urg', u'uniti', u'beazley']
[u'labor', u'infight', u'continu', u'beazley', u'return']
[u'societi', u'welcom', u'communiti', u'sentenc', u'chang']
[u'life', u'jacket', u'save', u'yachtsman', u'life']
[u'lightn', u'spark', u'conserv', u'park', u'blaze']
[u'lightn', u'strike', u'continu', u'pose', u'threat']
[u'local', u'teen', u'get', u'young', u'citizen', u'gong']
[u'locust', u'pose', u'risk']
[u'lung', u'roll', u'orang']
[u'beg', u'wife', u'forgiv']
[u'die', u'fall', u'overboard', u'southern']
[u'give', u'month', u'child', u'pornographi']
[u'jail', u'pungent', u'morcomb', u'hoax']
[u'jail', u'underag', u'onlin', u'attempt']
[u'kill', u'pin', u'jetti']
[u'overboard', u'incid', u'spark', u'coroni']
[u'plead', u'guilti', u'pornographi', u'charg']
[u'market', u'jump', u'record', u'high']
[u'meet', u'focus', u'surgic', u'servic']
[u'mentor', u'scheme', u'founder', u'get', u'aust', u'honour']
[u'milat', u'mention', u'miss', u'woman', u'inquest']
[u'mildura', u'consid', u'timores', u'partnership']
[u'miner', u'charg', u'drug']
[u'minist', u'back', u'riverina', u'highland', u'invest']
[u'stall', u'launceston', u'festival']
[u'moscow', u'world', u'swim', u'titl']
[u'attack', u'locust', u'levi', u'plan']
[u'back', u'iraq', u'invas']
[u'criticis', u'lack', u'marin', u'park', u'consult']
[u'push', u'republican', u'caus']
[u'suggest', u'marin', u'park', u'fish', u'chang']
[u'tafe', u'get', u'director']
[u'neighbour', u'help', u'rescu', u'woman', u'catch', u'hous']
[u'plan', u'airport', u'bird', u'woe']
[u'newberi', u'task', u'mix', u'sport', u'studi']
[u'drug', u'hope', u'breast', u'cancer', u'suffer']
[u'nrma', u'boss', u'promis', u'financi', u'success']
[u'nightcliff', u'bash', u'put', u'teen', u'hospit']
[u'nimbin', u'smoker', u'ralli', u'polic', u'harass']
[u'bail', u'drive', u'shoot', u'accus']
[u'north', u'west', u'enjoy', u'australia', u'celebr']
[u'nrma', u'board', u'appoint', u'presid']
[u'govt', u'fund', u'famili', u'assist', u'program']
[u'govt', u'hail', u'child', u'offend', u'regist']
[u'labor', u'figur', u'say', u'gillard', u'treat', u'unfair']
[u'landcar', u'council', u'criticis', u'spend']
[u'opposit', u'back', u'flag', u'plan']
[u'nurs', u'strike', u'wage', u'deal', u'opposit']
[u'nurs', u'home', u'revamp', u'continu']
[u'zealand', u'ask', u'indonesia', u'probe', u'tsunami', u'flight']
[u'parent', u'need', u'vigil', u'watch', u'kid']
[u'parti', u'urg', u'state', u'agreement']
[u'portrait', u'men', u'semi', u'finalist']
[u'portrait', u'women', u'semi', u'finalist']
[u'pheromon', u'spray', u'post', u'menopaus', u'romanc']
[u'philippin', u'launch', u'strike', u'milit']
[u'pilot', u'odd', u'plane', u'crash', u'critic']
[u'pilot', u'deni', u'culpabl', u'whitsunday', u'crash']
[u'depart', u'world', u'econom', u'forum']
[u'polic', u'seiz', u'video', u'nightclub', u'gang', u'shoot']
[u'polic', u'tackl', u'wheatbelt', u'hoon']
[u'polic', u'warn', u'driver', u'school', u'speed']
[u'politician', u'weigh', u'hobart', u'hospit', u'crisi']
[u'port', u'chief', u'start']
[u'powerlin', u'promis', u'better', u'reliabl']
[u'power', u'offic', u'deni', u'respons', u'inquest']
[u'princess', u'mari', u'princ', u'tour']
[u'profit', u'report', u'push', u'market', u'higher']
[u'public', u'whitsunday', u'vision']
[u'public', u'urg', u'storm', u'safe']
[u'govt', u'studi', u'child', u'abus', u'report']
[u'quak', u'record', u'sumatra']
[u'queanbeyan', u'council', u'chase', u'unpaid', u'rat']
[u'radio', u'station', u'pull', u'tsunami', u'slur']
[u'rain', u'boost', u'northern', u'water', u'resourc']
[u'rain', u'soak', u'part', u'wide', u'burnett']
[u'report', u'highlight', u'region', u'busi', u'tape']
[u'resid', u'voic', u'religi', u'retreat', u'opposit']
[u'riverland', u'join', u'australia', u'celebr']
[u'rock', u'throw', u'victim', u'unawar', u'incid']
[u'ronaldo', u'iraq', u'hostag', u'appeal']
[u'rumsfeld', u'advis', u'quit', u'post']
[u'rumsfeld', u'warn', u'iraq', u'violenc', u'continu']
[u'russian', u'polic', u'launch', u'attack', u'suspect', u'milit']
[u'govt', u'accus', u'procrastin', u'rail', u'safeti']
[u'health', u'face', u'specialist', u'resign']
[u'saleyard', u'wont', u'rais', u'charg']
[u'santo', u'keen', u'futur', u'powerwat', u'suppli']
[u'scientist', u'discov', u'secret', u'venus', u'flytrap', u'snap']
[u'scuderi', u'help', u'cricket', u'toehold', u'itali']
[u'seafood', u'group', u'highlight', u'reef', u'rezon', u'mistak']
[u'search', u'overboard', u'antarct']
[u'seawal', u'protect', u'toogoom', u'shorelin', u'eros']
[u'seaworld', u'releas', u'snake']
[u'second', u'hous', u'blaze', u'investig']
[u'senat', u'want', u'cockfight', u'glove']
[u'serena', u'battl', u'past', u'sharapova']
[u'serena', u'face', u'davenport', u'open', u'final']
[u'seventeen', u'england', u'say', u'maynard']
[u'offend', u'extradit']
[u'sharon', u'satisfi', u'palestinian', u'measur']
[u'shire', u'seek', u'fund', u'danger', u'river', u'cross']
[u'sluggish', u'davenport', u'set', u'serena', u'final']
[u'springbok', u'cronj', u'month']
[u'stanhop', u'prais', u'australia', u'celebr']
[u'starbuck', u'plan', u'outlet']
[u'state', u'fail', u'help', u'women', u'victim', u'indian']
[u'stockyard', u'plain', u'fire', u'control']
[u'task', u'forc', u'aim', u'protect', u'children', u'onlin']
[u'teen', u'hacker', u'good', u'behaviour', u'bond']
[u'teen', u'rapist', u'avoid', u'jail', u'term']
[u'thailand', u'cull', u'pigeon', u'bird', u'fear']
[u'threat', u'diseas', u'tsunami', u'area']
[u'hostag', u'hold', u'iraq', u'offici']
[u'timber', u'industri', u'lament', u'region', u'lockout']
[u'time', u'run', u'health', u'servic', u'sack']
[u'tini', u'town', u'rais', u'thousand', u'tsunami', u'victim']
[u'toddler', u'leav', u'perth', u'skyshow']
[u'citizen', u'boyl', u'year', u'ahead']
[u'tsunami', u'fear', u'hold', u'bateman']
[u'turnbul', u'fail', u'retain', u'nrma', u'posit']
[u'free', u'guantanamo', u'detaine']
[u'look', u'student', u'quota']
[u'union', u'govt', u'hold', u'bell', u'plant', u'talk']
[u'union', u'prioritis', u'hardi', u'settlement']
[u'union', u'discuss', u'disput']
[u'soldier', u'shoot', u'dead', u'north', u'baghdad']
[u'govt', u'agre', u'freeway', u'upgrad', u'deal']
[u'medic', u'team', u'head', u'indonesia']
[u'vietnam', u'armi', u'helicopt', u'crash', u'dead']
[u'volunt', u'derinallum', u'victim']
[u'volunt', u'need', u'replica', u'whale', u'boat']
[u'charg', u'polic', u'stand']
[u'waterfal', u'train', u'derail', u'avoid']
[u'treasur', u'rip', u'barnett', u'cost']
[u'wellington', u'tourist', u'centr', u'home']
[u'wilkinson', u'hope', u'nation', u'return']
[u'woman', u'die', u'suspect', u'meningococc']
[u'wooli', u'lift', u'half', u'year', u'sale']
[u'world', u'leader', u'rememb', u'auschwitz', u'atroc']
[u'wrangl', u'continu', u'hospit', u'site']
[u'digger', u'die']
[u'zelic', u'tip', u'socceroo', u'return']
[u'abbott', u'reject', u'indigen', u'health', u'fund', u'appeal']
[u'abbott', u'unmov', u'hospit', u'fund']
[u'adelaid', u'urg', u'basic']
[u'advis', u'warn', u'orang', u'grove', u'inquiri', u'tell']
[u'aftershock', u'rattl', u'tsunami', u'ravag', u'island']
[u'agforc', u'releas', u'bush', u'blueprint']
[u'know', u'stash', u'cash', u'inquiri', u'tell']
[u'secur', u'downer', u'european', u'agenda']
[u'alga', u'outbreak', u'water', u'clear']
[u'govt', u'disagre', u'state', u'health', u'sector']
[u'anelka', u'turkey', u'citi', u'agre']
[u'author', u'closer', u'find', u'abandon', u'boy', u'famili']
[u'backbench', u'give', u'beazley', u'month', u'notic']
[u'barca', u'player', u'face', u'tough', u'test', u'sevilla']
[u'barnett', u'deni', u'nurs', u'deal', u'put', u'financ', u'risk']
[u'journalist', u'brand', u'ignor']
[u'beach', u'bone', u'evan', u'head']
[u'beazley', u'hop', u'unit', u'labor']
[u'beazley', u'order', u'colleagu', u'infight']
[u'beazley', u'rule', u'bench', u'shuffl']
[u'beazley', u'take', u'iraq']
[u'beazley', u'weigh', u'habib', u'media', u'debat']
[u'crowd', u'protest', u'hospit', u'surgeri', u'cut']
[u'billion', u'dollar', u'expans', u'moura']
[u'birthday', u'safin', u'stun', u'feder', u'great']
[u'blood', u'bank', u'panda']
[u'blue', u'steadi', u'start', u'bull']
[u'blue', u'bull']
[u'braham', u'stand', u'braitl']
[u'british', u'soldier', u'accus', u'iraq', u'abus']
[u'driver', u'hospit', u'crash']
[u'driver', u'concern', u'skyshow', u'secur']
[u'bushrang', u'bail', u'redback']
[u'bushrang', u'bowl', u'redback']
[u'businessman', u'fraud', u'earn', u'jail', u'time']
[u'elect', u'focus', u'indigen', u'health']
[u'greater', u'rail', u'prevent']
[u'cancel', u'archbishop', u'farewel', u'servic', u'spark']
[u'bomb', u'kill', u'iraqi', u'south', u'baghdad']
[u'caucus', u'pick', u'beazley', u'labor', u'leader']
[u'chelsea', u'quadrupl', u'cost', u'million', u'booki']
[u'child', u'protect', u'worker', u'face', u'challeng']
[u'china', u'process', u'tsunami', u'dead']
[u'cia', u'ghost', u'prison', u'spark', u'right', u'concern']
[u'member', u'deni', u'go', u'grind']
[u'coalit', u'make', u'hospit', u'revamp', u'pledg']
[u'councillor', u'suggest', u'residenti', u'develop', u'levi']
[u'council', u'urg', u'scrap', u'state', u'agreement']
[u'council', u'weigh', u'shop', u'centr', u'plan']
[u'court', u'order', u'extra', u'payment', u'cop', u'land']
[u'creditor', u'reject', u'elliott', u'repay', u'offer']
[u'crew', u'contain', u'fire']
[u'croft', u'captain', u'red', u'brumbi']
[u'conquest', u'give', u'lowli', u'atalanta', u'hope']
[u'success', u'wont', u'distract', u'mourinho', u'premier']
[u'custom', u'seiz', u'stun', u'gun', u'disguis', u'torch']
[u'detent', u'centr', u'construct', u'begin']
[u'direct', u'hear', u'hold', u'falconio', u'murder', u'trial']
[u'doco', u'focus', u'western', u'drought']
[u'downer', u'defend', u'legitimaci', u'iraq', u'vote']
[u'drive', u'record', u'enact', u'rais', u'fund']
[u'drought', u'farmer', u'face', u'levi', u'slug']
[u'eagl', u'send', u'ogilvi', u'clear', u'hope', u'classic']
[u'economi', u'secur', u'uniti', u'beazley', u'agenda']
[u'electrolux', u'boost', u'factori', u'safeti']
[u'elliott', u'vow', u'comeback', u'despit', u'bankruptci']
[u'esso', u'roster', u'unrest', u'near']
[u'health', u'servic', u'chief', u'sign', u'travel', u'cost']
[u'famili', u'prepar', u'habib', u'homecom']
[u'feder', u'fund', u'dri', u'fruit', u'grower']
[u'feder', u'pest', u'manag', u'inquiri', u'continu']
[u'fidget', u'studi']
[u'figur', u'farmer', u'road', u'recoveri']
[u'film', u'maker', u'pay', u'tribut', u'digger']
[u'firefight', u'hope', u'wind', u'help', u'manag', u'park', u'blaze']
[u'firefight', u'look', u'contain', u'ngarkat', u'blaze']
[u'fire', u'close', u'tassi', u'walk', u'track']
[u'fire', u'burn', u'gippsland']
[u'fisheri', u'servic', u'explain', u'oper', u'chang']
[u'flintoff', u'vow', u'time', u'ash']
[u'fli', u'doctor', u'say', u'bronhil', u'flight', u'fit']
[u'footag', u'brawl', u'releas']
[u'media', u'exec', u'critic']
[u'south', u'african', u'give', u'england', u'warm', u'victori']
[u'arrest', u'kill', u'rare', u'fresh', u'water']
[u'freeway', u'interchang', u'work', u'bring', u'driver', u'benefit']
[u'fund', u'boost', u'flood', u'damag', u'road']
[u'gallop', u'label', u'opposit', u'deal', u'nurs', u'reckless']
[u'gang', u'rape', u'case', u'blame', u'court', u'budget', u'blow']
[u'german', u'refere', u'admit', u'match', u'fix']
[u'goldfield', u'tourism', u'job', u'rise']
[u'govt', u'attack', u'crime', u'statist']
[u'govt', u'make', u'polic', u'pledg']
[u'govt', u'bushfir', u'report', u'delay']
[u'govt', u'urg', u'boost', u'riverina', u'polic']
[u'grazier', u'fin', u'cattl']
[u'habib', u'arriv', u'sydney', u'airport']
[u'habib', u'reunit', u'famili']
[u'hayek', u'robbin', u'sign', u'oscar']
[u'henri', u'launch', u'anti', u'racist', u'campaign', u'europ']
[u'hewitt', u'move', u'australian', u'open', u'final']
[u'hewitt', u'verg', u'open', u'dream']
[u'hingi', u'tipto', u'year', u'absenc']
[u'hospit', u'defend', u'meningococc', u'diseas', u'death']
[u'hous', u'price', u'rise']
[u'hubbard', u'step', u'union', u'spokesman']
[u'independ', u'probe', u'launch', u'nurs', u'sack']
[u'indonesia', u'probe', u'alleg', u'misus', u'tsunami', u'fund']
[u'iraqi', u'poll', u'australia']
[u'itali', u'return', u'ethiopian', u'obelisk', u'april']
[u'job', u'scheme', u'get', u'fund', u'lift']
[u'kidney', u'stone', u'appear', u'end', u'rescu']
[u'kimberley', u'shire', u'highlight', u'elect', u'want']
[u'landhold', u'angri', u'insect', u'levi', u'rise']
[u'lara', u'centuri', u'put', u'west', u'indi', u'control']
[u'lara', u'lead', u'west', u'indi', u'maiden', u'victori']
[u'warwick', u'chees', u'factori']
[u'lewi', u'put', u'redback', u'foot']
[u'louvr', u'pay', u'record', u'price', u'bust']
[u'mackay', u'properti', u'crime', u'fall']
[u'charg', u'brawl', u'death']
[u'die', u'truck']
[u'extradit', u'pitcairn', u'sexual', u'assault', u'charg']
[u'fin', u'suspend', u'fatal']
[u'jail', u'incest', u'offenc']
[u'market', u'stumbl', u'despit', u'virgin', u'flurri']
[u'mayor', u'seek', u'minist', u'meet', u'stop', u'rock', u'throw']
[u'media', u'blame', u'rise', u'sexual', u'offend']
[u'student', u'bush']
[u'meet', u'arrang', u'great', u'western', u'aloft']
[u'member', u'nrma', u'result']
[u'meningococc', u'death', u'unrel', u'health']
[u'microsoft', u'post', u'super', u'profit']
[u'middl', u'east', u'peac', u'breakthrough', u'immin']
[u'mildura', u'sydney', u'servic', u'boost']
[u'death', u'spark', u'billiton', u'safeti', u'boost']
[u'miner', u'say', u'drug', u'abus', u'communiti', u'issu']
[u'mitsubishi', u'australia', u'confirm', u'bail']
[u'mitsubishi', u'motor', u'scrambl', u'reviv', u'plan']
[u'molik', u'kuznetsova', u'women', u'doubl', u'titl']
[u'molik', u'face', u'davenport', u'doubl', u'final']
[u'montgomeri', u'charg', u'clear', u'singapor']
[u'moruya', u'get', u'obstetr', u'boost']
[u'mother', u'son', u'guilti', u'fraud']
[u'mother', u'daughter', u'escap', u'burn', u'hous']
[u'motorcyclist', u'tri', u'lure', u'girl', u'worri', u'polic']
[u'beat', u'inter', u'govt', u'agenc', u'gather']
[u'want', u'crackdown', u'street', u'drink', u'law']
[u'target', u'borroloola', u'dog']
[u'chief', u'elect']
[u'nrma', u'boss', u'promis', u'thing']
[u'ngarkat', u'blaze', u'raze', u'hectar']
[u'north', u'korea', u'buy', u'nuclear', u'bomb']
[u'back', u'indigen', u'health', u'fund']
[u'nurs', u'union', u'criticis', u'elect', u'deal']
[u'offici', u'discuss', u'tsunami', u'warn']
[u'slick', u'cover', u'baghdad', u'river']
[u'kill', u'french', u'avalanch']
[u'opposit', u'accus', u'hospit', u'ruin', u'doctor']
[u'opposit', u'highlight', u'declin', u'polic', u'number']
[u'opposit', u'seiz', u'educ', u'figur']
[u'pair', u'face', u'multipl', u'anim', u'cruelti', u'charg']
[u'pakistan', u'rope', u'adelaid']
[u'past', u'champion', u'progress', u'shoot', u'glori']
[u'patrick', u'launch', u'virgin', u'blue', u'takeov']
[u'patrick', u'make', u'perfect', u'virgin']
[u'pest', u'control', u'cost', u'soar']
[u'piper', u'doubl', u'silver', u'talli']
[u'pixi', u'skase', u'fight', u'citizenship', u'decis']
[u'congratul', u'beazley']
[u'australia', u'sign', u'media', u'develop', u'deal']
[u'polic', u'accus', u'harass', u'cannabi', u'user']
[u'polic', u'interview', u'crew', u'death']
[u'polic', u'investig', u'kitten', u'tortur', u'case']
[u'polic', u'investig', u'playground', u'photo', u'websit']
[u'polic', u'probe', u'kallangur', u'murder']
[u'polic', u'warn', u'fake', u'money']
[u'poppi', u'harvest', u'pick']
[u'power', u'outag', u'put', u'live', u'risk', u'katherin']
[u'elect', u'violenc', u'iraq', u'intensifi']
[u'prison', u'director', u'write', u'woman', u'deverel']
[u'produc', u'accommod', u'buyer', u'seek', u'unmules', u'wool']
[u'professor', u'director']
[u'public', u'opposit', u'like', u'caravan', u'park', u'plan']
[u'govern', u'upbeat', u'respons', u'smoke']
[u'team', u'fight', u'diseas', u'spread', u'aceh']
[u'quak', u'shake', u'tokyo']
[u'queanbeyan', u'stanhop']
[u'rain', u'bless', u'horticultur']
[u'redknapp', u'factor', u'spice', u'south', u'coast', u'clash']
[u'report', u'highlight', u'fall', u'road', u'death']
[u'research', u'pinpoint', u'schizophrenia', u'gene']
[u'retail', u'want', u'stop', u'flood', u'woe']
[u'roddick', u'stand', u'hewitt', u'open', u'final']
[u'salvo', u'defend', u'sack', u'time', u'frame']
[u'seafood', u'industri', u'back', u'great', u'sandi', u'fish']
[u'search', u'continu', u'miss']
[u'seychell', u'found', u'presid', u'quit', u'polit']
[u'ship', u'bring', u'drown', u'crewman']
[u'nation', u'favourit', u'fall', u'ireland']
[u'slow', u'respons', u'water', u'swim', u'record', u'hop']
[u'smoke', u'link', u'pancreat', u'cancer']
[u'snappi', u'croc', u'look', u'dodg', u'bullet']
[u'snowi', u'tourism', u'boom']
[u'see', u'chang', u'ticket', u'elect', u'success']
[u'southcorp', u'seek', u'outsid', u'help', u'squash', u'foster']
[u'spear', u'injuri', u'self', u'inflict', u'say']
[u'special', u'effort', u'bushfir', u'schoolchildren']
[u'lankan', u'panic', u'tsunami', u'alarm', u'confus']
[u'lanka', u'tiger', u'closer', u'deal', u'tsunami']
[u'stockyard', u'plain', u'blaze']
[u'strong', u'show', u'hama', u'gaza', u'local', u'poll']
[u'studi', u'find', u'calcium', u'cut', u'women', u'colorect', u'cancer']
[u'suspect', u'ghraib', u'abus', u'plea', u'bargain', u'deal']
[u'sydney', u'sentenc', u'ecstasi', u'suppli']
[u'lead', u'prison', u'escap', u'figur']
[u'teacher', u'jail', u'student', u'affair']
[u'team', u'review', u'townsvill', u'jail', u'upgrad']
[u'teenag', u'diver', u'spring', u'surpris', u'newberi']
[u'tenni', u'need', u'embrac', u'technolog']
[u'tiger', u'charg', u'hobart']
[u'tiger', u'slump', u'earli', u'warrior']
[u'toddler', u'miss', u'famili']
[u'level', u'talk', u'hold', u'bell', u'plant']
[u'truck', u'driver', u'injur', u'escap', u'approach']
[u'tsunami', u'victim', u'famili', u'return', u'wellington']
[u'tweed', u'council', u'solicitor', u'inquiri']
[u'unit', u'develop', u'plan', u'lithgow']
[u'market', u'falter']
[u'vanston', u'move', u'protect', u'atsic', u'asset']
[u'victim', u'group', u'question', u'teen', u'rapist', u'sentenc']
[u'vietnam', u'deploy', u'bird', u'riot', u'polic']
[u'virgin', u'blue', u'share', u'jump', u'patrick']
[u'virgin', u'share', u'high', u'takeov', u'news']
[u'wagga', u'bishop', u'back', u'marriag', u'debat']
[u'watkin', u'visit', u'casino', u'murwillumbah', u'rail', u'issu']
[u'william', u'charg', u'drug', u'ring']
[u'worksaf', u'review', u'aquacultur', u'project']
[u'zarqawi', u'group', u'kill', u'allawi', u'aid']
[u'zelic', u'readi', u'socceroo', u'comeback']
[u'kill', u'filipino', u'troop', u'battl', u'milit']
[u'iraqi', u'turn', u'vote', u'australia']
[u'polic', u'number', u'opposit']
[u'actu', u'back', u'beazley', u'uniti']
[u'afghan', u'right', u'watchdog', u'demand', u'crime', u'justic']
[u'agenc', u'watch', u'habib']
[u'antarct', u'plan', u'discov', u'frontier']
[u'australian', u'join', u'tsunami', u'alert', u'talk']
[u'beat', u'generat', u'muse', u'carr', u'die']
[u'beazley', u'retain', u'current', u'shadow', u'ministri']
[u'beazley', u'urg', u'avoid', u'iraq', u'civil']
[u'berlin', u'moscow', u'swim', u'world']
[u'bevan', u'marsh', u'record', u'stand', u'tiger']
[u'bird', u'claim', u'vietnames', u'victim']
[u'breast', u'cancer', u'cluster', u'link', u'crop', u'chemic']
[u'break', u'hill', u'farewel', u'outback', u'diva']
[u'brown', u'win', u'stage', u'tour', u'langkawi']
[u'bull', u'rope', u'jaqu', u'reign', u'suprem']
[u'bushrang', u'struggl']
[u'bushwalk', u'hike', u'nation', u'park', u'fire']
[u'databas', u'anim', u'abus']
[u'killer', u'feel', u'law', u'weight']
[u'china', u'stand', u'firm', u'zhao', u'legaci']
[u'claim', u'govt', u'plan', u'bomb', u'darfur']
[u'comment', u'period', u'energi', u'save', u'plan', u'extend']
[u'davenport', u'leav', u'ponder']
[u'davenport', u'serena', u'final']
[u'defenc', u'deni', u'star', u'war', u'report']
[u'destini', u'loom', u'larg', u'australian', u'open', u'final']
[u'dont', u'scapegoat', u'say', u'shoaib']
[u'eyr', u'peninsula', u'farewel', u'mother', u'children']
[u'famili', u'take', u'opera', u'great', u'home']
[u'fear', u'hama', u'influenc', u'abba', u'polici']
[u'ferrari', u'team', u'shun', u'meet']
[u'firefight', u'alert', u'lightn', u'spark', u'blaze']
[u'taiwan', u'china', u'flight', u'year', u'take']
[u'injur', u'stab', u'incid']
[u'friend', u'accident', u'shoot', u'hand']
[u'gallop', u'student', u'fare']
[u'gilli', u'confid', u'hayden', u'bounc']
[u'habib', u'strong', u'case', u'compens', u'lawyer']
[u'habib', u'spend', u'night', u'freedom', u'famili']
[u'habib', u'support', u'fight', u'justic']
[u'helicopt', u'crash', u'kill', u'soldier']
[u'henchoz', u'leav', u'liverpool', u'celtic']
[u'hewitt', u'verg', u'fulfil', u'lifelong', u'dream']
[u'hewitt', u'verg', u'open', u'dream']
[u'hewitt', u'wari', u'safin', u'threat']
[u'leav', u'pedestrian', u'injur']
[u'hors', u'doesnt', u'impress', u'shopper']
[u'howard', u'attack', u'wheat', u'subsidi']
[u'hundr', u'attend', u'gypsi', u'joker', u'founder', u'funer']
[u'iraq', u'closer', u'captur', u'zarqawi', u'arrest']
[u'iraqi', u'australian', u'turn', u'elect']
[u'iraqi', u'suicid', u'attack', u'kill']
[u'iraqi', u'urg', u'vote', u'despit', u'attack']
[u'iraqi', u'voter', u'display', u'mark', u'freedom']
[u'israel', u'handov', u'gaza', u'secur', u'oper']
[u'jackson', u'accus', u'face', u'star', u'court']
[u'jaqu', u'punish', u'bull']
[u'jaqu', u'reign', u'suprem', u'declar']
[u'secur', u'fear', u'deter', u'mother']
[u'king', u'singapor']
[u'lake', u'clair', u'park', u'facil', u'upgrad']
[u'lobbi', u'group', u'urg', u'barbar', u'shark', u'fin']
[u'lonard', u'grab', u'outright', u'second']
[u'diseas', u'goat']
[u'rescu', u'kayak', u'ordeal']
[u'matilda', u'upset', u'germani']
[u'meningococc', u'death', u'investig']
[u'miss', u'bind', u'gag', u'freeway']
[u'mitsubishi', u'sell', u'stockpil', u'adelaid']
[u'mourinho', u'improp', u'conduct', u'charg']
[u'nation', u'deni', u'branch', u'defect', u'member']
[u'nepal', u'shut', u'dalai', u'lama', u'offic']
[u'cautious', u'respons', u'farm', u'product', u'figur']
[u'afghan', u'polic', u'kill', u'blast', u'report']
[u'arrest', u'alleg', u'heroin', u'ring']
[u'mules', u'sheep', u'wool', u'make', u'sale', u'histori']
[u'duti', u'offic', u'help', u'drink', u'driver']
[u'opec', u'expect', u'maintain', u'product', u'level']
[u'passiv', u'smoke', u'tripl', u'children', u'cancer', u'risk']
[u'perth', u'player', u'hunt', u'disrupt', u'super', u'mckenzi']
[u'pole', u'problem', u'ring']
[u'polic', u'probe', u'tripl', u'fatal', u'victoria']
[u'elect', u'curfew', u'forc', u'iraq']
[u'rain', u'frustrat', u'struggl', u'bushrang']
[u'rain', u'prevent', u'play']
[u'rebel', u'chines', u'leader', u'lay', u'rest']
[u'recherch', u'decis', u'spineless', u'brown']
[u'roddick', u'unhappi', u'jackass']
[u'russian', u'offic', u'arrest', u'beslan', u'sieg']
[u'safin', u'upset', u'set', u'excit', u'year', u'say', u'vanquish']
[u'polic', u'fund', u'nation', u'averag', u'opposit']
[u'shoulder', u'surgeri', u'sidelin', u'capriati', u'indefinit']
[u'steal', u'cattl', u'truck', u'ablaz']
[u'stone', u'rais', u'million', u'net', u'minut']
[u'storm', u'hit', u'alic', u'spring']
[u'student', u'await', u'revamp', u'pass']
[u'sydney', u'gear', u'free', u'opera', u'perform']
[u'sydney', u'man', u'bodi', u'recov', u'speedboat', u'accid']
[u'prison', u'secur']
[u'teen', u'serious', u'injur', u'balconi', u'fall']
[u'thousand', u'turn', u'wave']
[u'pile', u'kill']
[u'detain', u'doubl', u'stab']
[u'tindal', u'miss', u'england', u'nation', u'campaign']
[u'tire', u'england', u'look', u'young', u'gun']
[u'toon', u'outcast', u'bellami', u'birmingham', u'switch']
[u'tsunami', u'devast', u'nation', u'divid', u'tsunami']
[u'tsunami', u'relief', u'worker', u'improv']
[u'hospit', u'stab', u'railway', u'station']
[u'troop', u'kill', u'baghdad', u'attack']
[u'coordin', u'asia', u'tsunami', u'warn', u'centr']
[u'econom', u'growth', u'slow', u'inflat']
[u'teen', u'sentenc', u'unleash', u'blaster', u'worm']
[u'versatil', u'draper', u'swap', u'tenni', u'raquet', u'golf', u'club']
[u'begin', u'inning']
[u'violenc', u'continu', u'iraq', u'poll']
[u'govt', u'irrig', u'scheme']
[u'warrior', u'chase', u'total']
[u'water', u'report', u'address', u'strategi', u'implement']
[u'william', u'fight', u'australian', u'open']
[u'xstrata', u'appeal', u'anger', u'victim', u'famili']
[u'zimbabwean', u'doubl', u'final']
[u'report', u'kill', u'sudan', u'ralli']
[u'abba', u'continu', u'talk', u'secur', u'palestinian']
[u'african', u'union', u'summit', u'open']
[u'armi', u'answer', u'eyr', u'peninsula', u'help']
[u'australia', u'breakthrough']
[u'australia', u'victori']
[u'author', u'attend', u'train', u'derail']
[u'author', u'probe', u'shop', u'mall']
[u'bangladesh', u'squar', u'seri']
[u'barca', u'tighten', u'grip', u'sevilla']
[u'beazley', u'hunt', u'east', u'coast', u'properti']
[u'beazley', u'want', u'aust', u'embassi', u'move', u'green', u'zone']
[u'bevan', u'continu', u'hobart', u'feast']
[u'bhutan', u'fear', u'nepal', u'insurg', u'escal']
[u'blue', u'control', u'despit', u'perren']
[u'bresciano', u'provid', u'parma', u'boost', u'surviv']
[u'brown', u'hold', u'slender', u'langkawi', u'lead']
[u'bull', u'chase', u'limp']
[u'bushfir', u'soot', u'caus', u'perth', u'black']
[u'boost', u'atroci', u'indigen', u'health']
[u'springborg', u'drop', u'singl', u'parti', u'idea']
[u'cancer', u'stricken', u'journalist', u'end', u'tumour', u'diari']
[u'chelsea', u'face', u'record', u'loss', u'report']
[u'china', u'boost', u'role', u'venezuela', u'sector']
[u'council', u'exercis', u'control', u'park']
[u'cpsu', u'seek', u'inform', u'famili', u'violenc', u'law']
[u'crocodil', u'clear', u'darwin', u'swim', u'pool']
[u'cultur', u'violenc', u'put', u'filipino', u'journalist']
[u'director', u'prize', u'boost', u'eastwood', u'oscar', u'hop']
[u'draper', u'stosur', u'mix', u'doubl']
[u'excit', u'build', u'open', u'final', u'loom']
[u'ferri', u'fear', u'unsettl', u'tasmanian', u'investor']
[u'fifth', u'want', u'doubl', u'stab']
[u'firefight', u'begin', u'cross', u'border', u'train', u'exercis']
[u'gut', u'hous', u'mundar']
[u'hospit', u'rollov']
[u'kill', u'kuwait', u'shootout']
[u'food', u'demand', u'aceh', u'rise', u'agenc']
[u'fourth', u'person', u'die', u'gippsland', u'accid']
[u'free', u'detaine', u'describ', u'guantanamo', u'tortur']
[u'freight', u'train', u'derail']
[u'gallop', u'plan', u'world', u'class', u'hospit']
[u'garrett', u'keep', u'polit', u'wave']
[u'gilchrist', u'wari', u'volatil', u'pakistan']
[u'goodwin', u'keep', u'warrior', u'afloat']
[u'govt', u'defend', u'measur', u'save', u'tassi', u'devil']
[u'govt', u'carpark', u'accid']
[u'grow', u'debt', u'reason']
[u'habib', u'famili', u'thank', u'support']
[u'hawk', u'fli', u'high']
[u'health', u'domin', u'elect', u'campaign']
[u'hewitt', u'fall', u'safin']
[u'hewitt', u'wari', u'safin', u'threat']
[u'hodg', u'harvey', u'victoria']
[u'hodg', u'warn', u'torment', u'redback']
[u'hop', u'african', u'summit', u'boost', u'health']
[u'hop', u'organ', u'donat', u'chang', u'wait', u'list']
[u'indonesia', u'aceh', u'peac', u'talk', u'posit', u'note']
[u'inquiri', u'probe', u'high', u'petrol', u'price']
[u'insurg', u'hold', u'embassi', u'attack']
[u'iraq', u'expat', u'vote', u'world']
[u'iraqi', u'expat', u'cast', u'vote']
[u'iraqi', u'vote', u'mortar', u'kill']
[u'iraqi', u'presid', u'say', u'peopl', u'wont', u'vote']
[u'iraqi', u'vote', u'amid', u'tight', u'secur']
[u'iraqi', u'voter', u'turnout', u'higher', u'predict', u'say']
[u'iraq', u'poll', u'mar', u'violenc']
[u'iraq', u'free', u'elect', u'begin']
[u'isra', u'troop', u'shoot', u'dead', u'palestinian']
[u'israel', u'readi', u'hand', u'west', u'bank', u'town']
[u'klitschko', u'rahman', u'showdown', u'firm', u'york']
[u'labor', u'distanc', u'habib', u'compens', u'talk']
[u'nation', u'consid', u'independ']
[u'lloyd', u'accus', u'vaughan', u'dismiss', u'rude']
[u'lonard', u'face', u'desert', u'shoot']
[u'plat', u'forc']
[u'apologis', u'parent', u'websit']
[u'arrest', u'walk', u'citi', u'street']
[u'charg', u'darwin', u'disturb']
[u'man', u'bodi', u'bridg', u'collaps']
[u'tsunami', u'victim', u'mortician']
[u'mass', u'potenti', u'juror', u'call', u'jackson', u'trial']
[u'minist', u'offend', u'releas']
[u'nation', u'play', u'candid', u'defect']
[u'beachgoer', u'warn', u'weekend', u'drown']
[u'dead', u'attack', u'near', u'iraq', u'poll', u'station']
[u'opec', u'chart', u'chang', u'output', u'limit']
[u'opec', u'keep', u'output', u'steadi']
[u'opposit', u'creat', u'hotlin', u'address', u'skill']
[u'opposit', u'warn', u'chang', u'coroni', u'process']
[u'pakistan', u'bowler', u'troubl', u'australia']
[u'pakistan', u'want', u'england', u'play', u'test']
[u'palestinian', u'polic', u'train', u'egypt']
[u'patrick', u'spark', u'virgin', u'share']
[u'pedestrian', u'kill', u'driver', u'die', u'wheel']
[u'adopt', u'wait', u'approach', u'iran']
[u'question', u'defend', u'econom', u'forum']
[u'polic', u'milit', u'exchang', u'gunfir', u'kuwait']
[u'polic', u'probe', u'adelaid', u'stab']
[u'polic', u'stand', u'drug', u'drive', u'statist']
[u'poverti', u'star', u'power', u'sidelin', u'busi']
[u'push', u'crack', u'competit']
[u'ranger', u'hammer', u'livingston']
[u'rebel', u'shoot', u'aceh', u'talk', u'progress']
[u'retail', u'donat', u'day', u'profit', u'tsunami', u'victim']
[u'rooney', u'shoot', u'boro', u'arsenal', u'edg', u'wolv']
[u'safin', u'crush', u'hewitt', u'dream']
[u'scientif', u'gather', u'assess', u'global', u'warm']
[u'suicid', u'bomber', u'attack', u'baghdad', u'poll', u'station']
[u'suicid', u'bomber', u'kill', u'iraq']
[u'sundanc', u'honour', u'polit', u'film']
[u'sydney', u'resid', u'turn', u'opera', u'domain']
[u'thailand', u'rais', u'number', u'tsunami', u'orphan']
[u'drown', u'savag', u'sea']
[u'tougher', u'child', u'porn', u'penalti', u'introduc']
[u'trade', u'fight', u'poverti', u'tell', u'forum']
[u'transmiss', u'upgrad', u'reduc', u'power', u'cut']
[u'tune', u'score', u'ballymor', u'comeback']
[u'dead', u'plane', u'crash']
[u'kill', u'baghdad', u'embassi', u'attack']
[u'third', u'expat', u'iraqi', u'vote', u'elect']
[u'umpir', u'bucknor', u'receiv', u'centurion', u'death', u'threat']
[u'name', u'asia', u'pacif', u'command', u'forc']
[u'urg', u'discuss', u'nuclear', u'issu', u'iran']
[u'vet', u'ralli', u'communiti', u'focus', u'anim', u'abus']
[u'voter', u'kill', u'iraq', u'elect', u'attack']
[u'warlord', u'trial', u'solomon']
[u'wave', u'rais', u'million', u'tsunami', u'victim']
[u'warn', u'temperatur', u'chang', u'year']
[u'young', u'make', u'histori', u'melbourn']
[u'civilian', u'work', u'iraq']
[u'abstract', u'landscap', u'scoop', u'bendigo', u'prize']
[u'govt', u'trial', u'household', u'debt', u'initi']
[u'complet', u'tribun', u'chang']
[u'african', u'union', u'condemn', u'darfur', u'attack']
[u'ahm', u'seal', u'bangladesh', u'seri']
[u'airlin', u'say', u'spirit', u'complement', u'servic']
[u'allianc', u'bolster', u'opportun']
[u'promis', u'pilbara', u'polic', u'complex']
[u'annan', u'appeal', u'iraqi', u'reconcili']
[u'annan', u'urg', u'africa', u'develop', u'goal']
[u'applebi', u'ripe', u'success']
[u'appl', u'brand', u'googl', u'jazeera', u'surpris']
[u'australian', u'kill', u'iraq', u'crash']
[u'aust', u'review', u'troop', u'baghdad', u'role']
[u'autopsi', u'dead', u'swan']
[u'school', u'student']
[u'bali', u'bomb', u'suspect', u'narrowli', u'escap', u'captur']
[u'bathurst', u'adopt', u'alcohol', u'free', u'zone']
[u'beatti', u'beazley', u'pledg', u'greater', u'cooper']
[u'beckham', u'target', u'real']
[u'swell', u'prompt', u'surf', u'safeti', u'warn']
[u'border', u'tip', u'martyn', u'medal']
[u'britain', u'prais', u'iraq', u'elect', u'effort']
[u'broadway', u'magic', u'hard', u'quantifi']
[u'broker', u'fin', u'thousand', u'luxuri', u'scam']
[u'bronhil', u'ash', u'scatter', u'break', u'hill']
[u'brown', u'lose', u'langkawi', u'lead']
[u'bull', u'blue']
[u'bull', u'tail', u'ender', u'deni', u'blue']
[u'bushrang', u'stay', u'aliv', u'redback', u'rout']
[u'busi', u'urg', u'cater', u'grow', u'tourist']
[u'review', u'polic', u'station', u'surveil']
[u'canberra', u'school', u'reopen', u'door']
[u'group', u'urg', u'rehab', u'tortur']
[u'china', u'crack', u'phone', u'soothsay']
[u'chines', u'local', u'offici', u'investig', u'corrupt']
[u'christma', u'detent', u'centr', u'condemn']
[u'clark', u'win', u'allan', u'border', u'medal']
[u'candid', u'float', u'fuel', u'reduct', u'idea']
[u'coastal', u'park', u'blaze', u'pose', u'problem']
[u'concern', u'suicid', u'rate', u'mental', u'health', u'patient']
[u'concern', u'rais', u'camera', u'propos']
[u'confus', u'mayor', u'accept', u'bribe', u'icac', u'hear']
[u'consmin', u'launch', u'relianc', u'takeov']
[u'council', u'aim', u'shake', u'griffith', u'drug', u'imag']
[u'council', u'consid', u'carer', u'role']
[u'council', u'defend', u'asia', u'invest', u'trip']
[u'council', u'drop', u'tanker', u'plan']
[u'councillor', u'question', u'transit', u'centr', u'consult']
[u'council', u'plan', u'woodgat', u'beach']
[u'council', u'urg', u'consid', u'rat', u'find']
[u'creditor', u'welcom', u'elliott', u'bankruptci']
[u'darfur', u'rebel', u'african', u'union', u'interven']
[u'darwin', u'rail', u'link', u'deem', u'uncompetit']
[u'dead', u'mushroom', u'public', u'garden']
[u'doctor', u'group', u'play', u'pesticid', u'cancer', u'risk']
[u'doubt', u'cast', u'north', u'west', u'drought']
[u'doubt', u'cast', u'wheat', u'incom']
[u'drop', u'gang', u'rape', u'charg']
[u'drink', u'like', u'fish', u'say', u'china', u'entrepreneur']
[u'remand', u'robberi', u'spree']
[u'exercis', u'consid', u'histor', u'bridg', u'preserv']
[u'export', u'potenti', u'remot', u'area', u'knowledg']
[u'extra', u'uranium', u'wont', u'extend', u'ranger', u'life', u'say']
[u'falconio', u'murder', u'trial', u'like']
[u'famili', u'flee', u'burn', u'hous']
[u'farmer', u'work', u'milk', u'price', u'agenc']
[u'fear', u'queenstown', u'hospit', u'downgrad']
[u'fierc', u'kununurra', u'storm', u'damag', u'properti']
[u'financi', u'woe', u'squeez', u'grape', u'grower']
[u'firefight', u'continu', u'battl', u'coastal', u'park']
[u'ravag', u'hous', u'alight']
[u'fishermen', u'push', u'year', u'round', u'access', u'mari', u'river']
[u'flight', u'centr', u'agre', u'drop', u'slogan']
[u'food', u'shortag', u'threaten', u'phillip', u'penguin']
[u'harri', u'scarf', u'chief', u'front', u'court']
[u'mayor', u'face', u'icac']
[u'forum', u'focus', u'leeton', u'crime']
[u'milit', u'kill', u'kuwait', u'clash']
[u'fund', u'help', u'drug', u'fight', u'darl', u'down']
[u'gaddafi', u'feel', u'betray', u'deal']
[u'glencor', u'pull', u'plug', u'henri', u'walker', u'eltin']
[u'govt', u'appoint', u'tasmania', u'femal', u'judg']
[u'govt', u'promis', u'coal', u'infrastructur', u'boost']
[u'govt', u'review', u'rail', u'safeti', u'law']
[u'govt', u'ask', u'childcar', u'centr', u'plan']
[u'govt', u'stand', u'elmor', u'health', u'chang']
[u'govt', u'hospit', u'renov', u'delay']
[u'govt', u'urg', u'leav', u'disabl', u'pension']
[u'govt', u'wont', u'local', u'elect']
[u'greek', u'sprinter', u'hope', u'escap']
[u'group', u'fight', u'retain', u'area', u'heritag', u'charact']
[u'grower', u'welcom', u'horticultur', u'code', u'conduct']
[u'habib', u'media', u'interview', u'lawyer', u'say']
[u'hardi', u'fund', u'liquid', u'dismiss']
[u'hayden', u'certainti', u'border']
[u'health', u'chief', u'highlight', u'corangamit', u'bing', u'drink']
[u'health', u'worker', u'head', u'home', u'offer', u'tsunami']
[u'hewitt', u'cartwright']
[u'high', u'commission', u'return', u'fiji']
[u'high', u'court', u'swear', u'near', u'barrist']
[u'high', u'turnout', u'regist', u'iraqi', u'expat']
[u'posit', u'charg', u'alleg', u'sexual']
[u'hope', u'traine', u'doctor', u'return', u'bundaberg']
[u'hotel', u'park', u'remain', u'unsurfac']
[u'human', u'stem', u'cell', u'nerv', u'cell', u'studi']
[u'illeg', u'fishermen', u'hous', u'vamp']
[u'incred', u'clean', u'cartoon', u'award']
[u'injur', u'digger', u'toll', u'climb']
[u'interim', u'derail', u'report', u'expect', u'month']
[u'investig', u'probe', u'train', u'derail']
[u'invinc', u'blunder', u'hand', u'celtic']
[u'iranian', u'hail', u'iraq', u'great', u'step']
[u'iraq', u'elect', u'blame', u'sydney', u'brawl']
[u'iraqi', u'coupl', u'marathon', u'vote', u'vain']
[u'iraq', u'lock', u'count', u'begin']
[u'iraq', u'poll', u'hail', u'success']
[u'irregular', u'northern', u'iraq', u'poll']
[u'isi', u'mill', u'cane', u'suppli', u'boost', u'grower', u'confid']
[u'islam', u'school', u'open', u'delay']
[u'jackson', u'trial', u'begin']
[u'juve', u'tighten', u'grip', u'titl', u'milan', u'slip']
[u'keke', u'front', u'court', u'solomon', u'island', u'murder']
[u'keke', u'prepar', u'face', u'court', u'solomon', u'island']
[u'koala', u'plan', u'aim', u'regul', u'develop']
[u'labor', u'pledg', u'specialist', u'teacher', u'high']
[u'lara', u'confid', u'claim', u'final', u'berth']
[u'profess', u'begin', u'court', u'year', u'church']
[u'lawyer', u'criticis', u'surveil', u'habib']
[u'leagu', u'rooki', u'behaviour', u'boot', u'camp']
[u'liber', u'reject', u'port', u'privatis', u'claim']
[u'liberti', u'concern', u'electron', u'bracelet']
[u'link', u'suspect', u'gang', u'violenc', u'woman']
[u'lobbi', u'group', u'say', u'rail', u'replac', u'nonsens']
[u'lonard', u'fourth', u'leonard', u'win', u'hope', u'classic']
[u'longreach', u'centrelink', u'offic']
[u'fli', u'flag', u'bureaucraci', u'go']
[u'remain', u'critic', u'condit', u'refineri']
[u'remand', u'custodi', u'alleg', u'gang', u'repris']
[u'remand', u'child', u'kidnap', u'pornographi', u'charg']
[u'face', u'court', u'photograph', u'children']
[u'feud', u'bitter', u'person', u'say', u'campbel']
[u'mayor', u'run', u'latham', u'seat']
[u'meet', u'focus', u'halliday', u'develop']
[u'miner', u'threaten', u'action', u'workplac', u'safeti', u'case']
[u'mine', u'group', u'launch', u'health', u'safeti', u'test', u'case']
[u'minist', u'back', u'hospit', u'return', u'public']
[u'minist', u'condemn', u'indigen', u'memori', u'vandal']
[u'minist', u'readi', u'releas', u'sandon']
[u'minist', u'vow', u'tugun', u'bypass', u'project', u'continu']
[u'monkey', u'hang', u'home', u'despit', u'damag']
[u'motorist', u'warn', u'extra', u'care', u'drive', u'past']
[u'motorway', u'takeov', u'bump']
[u'doubt', u'gordon', u'estat', u'secur', u'guard', u'plan']
[u'urg', u'come', u'good', u'elect', u'promis']
[u'nation', u'park', u'blaze', u'sixth']
[u'doctor', u'head', u'mudge']
[u'hook', u'reel', u'flathead']
[u'station', u'hop', u'rival', u'sydney']
[u'suprem', u'court', u'judg', u'swear']
[u'substanc', u'bucknor', u'death', u'threat', u'polic']
[u'nrma', u'ramp', u'princ', u'highway', u'effort']
[u'kill', u'tajikistan', u'bomb']
[u'opposit', u'say', u'region', u'look', u'chang']
[u'pakistan', u'declar', u'upper', u'hand', u'crunch', u'match']
[u'palestinian', u'girl', u'report', u'shoot', u'dead', u'gaza']
[u'park', u'begin', u'quest', u'save', u'tassi', u'devil']
[u'parti', u'splash', u'fund', u'hall', u'creek', u'pool']
[u'parti', u'urg', u'infrastructur', u'spend']
[u'patrick', u'challeng', u'match', u'virgin', u'blue', u'offer']
[u'perth', u'kalgoorli', u'line', u'reopen', u'weekend']
[u'petrol', u'price', u'inquiri', u'stunt', u'opposit', u'say']
[u'phoni', u'polic']
[u'physicist', u'gather', u'intern', u'brainstorm']
[u'pilot', u'kill', u'chopper', u'crash']
[u'polic', u'continu', u'maritim', u'death', u'investig']
[u'polic', u'interview', u'young', u'theft']
[u'polic', u'launch', u'probe', u'lake', u'macquari', u'death']
[u'polic', u'maintain', u'help', u'miss']
[u'polic', u'heroin', u'cocain', u'drug', u'bust']
[u'polic', u'probe', u'heritag', u'shed', u'blaze']
[u'polic', u'team', u'return', u'tsunami', u'relief', u'effort']
[u'pope', u'suffer', u'cancel', u'audienc']
[u'premier', u'play', u'ama', u'cancer', u'fear']
[u'privat', u'sector', u'credit', u'rise']
[u'privat', u'sector', u'nab', u'council', u'build', u'plan', u'job']
[u'public', u'servant', u'vote', u'union', u'workplac']
[u'question', u'ask', u'presenc', u'palm', u'secur']
[u'question', u'hang', u'futur', u'sit']
[u'retrench', u'mitsubishi', u'employe', u'job']
[u'review', u'recommend', u'inspector', u'icac', u'complaint']
[u'robinson', u'accus', u'gambl', u'public', u'moni']
[u'row', u'club', u'launch', u'clubhous', u'renov']
[u'rspca', u'prais', u'cockatoo', u'killer', u'sentenc']
[u'safin', u'celebr', u'melbourn']
[u'govt', u'delay']
[u'sediment', u'blame', u'dirti', u'water']
[u'self', u'confess', u'child', u'abductor', u'deni', u'indec']
[u'seminar', u'probe', u'motiv', u'kill']
[u'servic', u'usual', u'despit', u'compani', u'money', u'woe']
[u'shark', u'fisher', u'case', u'sustain']
[u'shark', u'spot', u'near', u'coff', u'beach']
[u'shiit', u'spiritu', u'leader', u'hail', u'iraq', u'elect']
[u'soldier', u'home', u'iraqi', u'train', u'mission']
[u'stanhop', u'say', u'percept', u'bias', u'bushfir']
[u'state', u'play', u'season']
[u'stinger', u'attack', u'forc', u'beach', u'closur']
[u'steal', u'distress', u'beacon', u'prompt', u'polic', u'search']
[u'studi', u'wont', u'endang', u'albani', u'tourism', u'fund']
[u'suspect', u'victim', u'die', u'hospit']
[u'join', u'fibr', u'optic', u'trial', u'outsid', u'japan']
[u'teen', u'rid', u'deep']
[u'timber', u'worker', u'shortag', u'spark', u'forestri', u'concern']
[u'treasur', u'silent', u'relief']
[u'tsunami', u'death', u'toll', u'pass']
[u'tsunami', u'countri', u'urg', u'tourist', u'return']
[u'tweed', u'council', u'probe', u'spark', u'submiss', u'influx']
[u'kill', u'crash']
[u'underworld', u'figur', u'front', u'court', u'drug', u'charg']
[u'union', u'barnett', u'hand']
[u'british', u'troop', u'kill', u'hercul', u'crash']
[u'cadet', u'pose', u'nazi', u'costum']
[u'mismanag', u'billion', u'iraq', u'fund', u'auditor']
[u'vandenberg', u'skipper', u'hawk']
[u'victoria', u'move', u'electron', u'track', u'paedophil']
[u'victori', u'safin', u'beat', u'demon']
[u'vietnames', u'girl', u'die', u'bird']
[u'vivienn', u'westwood', u'end']
[u'warrior', u'chase', u'outright', u'point']
[u'warrior', u'claim', u'spot', u'record', u'chase']
[u'water', u'cart', u'ravensthorp']
[u'waterfal', u'victim', u'rememb', u'year']
[u'weather', u'hamper', u'mozzi', u'control', u'effort']
[u'weather', u'woe', u'barrier', u'enjoy']
[u'sorri', u'chief', u'tell', u'sharehold']
[u'william', u'charg', u'second', u'moran', u'murder']
[u'woman', u'deni', u'own', u'alleg', u'danger']
[u'workcov', u'crack', u'retail']
[u'youni', u'head', u'home', u'famili', u'bereav']
[u'reward', u'halvagi', u'murder', u'inform']
[u'adelaid', u'jetstar', u'schedul']
[u'audit', u'famili', u'donat']
[u'africa', u'bore', u'geldof', u'say']
[u'jazeera', u'public']
[u'alp', u'werriwa', u'candid', u'wari', u'task', u'ahead']
[u'urg', u'look', u'wider', u'cancer', u'probe']
[u'anelka', u'move', u'istanbul']
[u'argentinian', u'nightclub', u'owner', u'charg', u'dead']
[u'armi', u'dig', u'eyr', u'peninsula']
[u'armi', u'short', u'bullet']
[u'atsic', u'hand', u'shop', u'centr', u'local']
[u'australia', u'seek', u'sanction', u'darfur', u'atroc']
[u'author', u'monitor', u'timor', u'dengu', u'outbreak']
[u'barnett', u'warn', u'independ', u'invit', u'join']
[u'bashir', u'criticis', u'islamist', u'attack', u'indonesia']
[u'beach', u'goer', u'safeti', u'warn']
[u'beatti', u'expos', u'nude', u'beach', u'fear']
[u'beazley', u'wont', u'rule', u'budget', u'deficit']
[u'bega', u'council', u'seek', u'holiday', u'leas', u'respons']
[u'beij', u'game', u'benefit', u'human', u'right', u'china']
[u'bendigo', u'hous', u'market', u'predict', u'grow']
[u'biki', u'gang', u'member', u'charg', u'grievous', u'bodili', u'harm']
[u'birdbrain', u'doesnt', u'equal', u'stupid', u'scientist', u'argu']
[u'bluescop', u'disput', u'wont', u'disrupt', u'assembl', u'plant']
[u'brack', u'attack', u'campaign', u'reduc', u'abort']
[u'britain', u'open', u'churchil', u'museum']
[u'britain', u'free', u'palestinian', u'terror', u'suspect']
[u'bump', u'crocodil', u'scar', u'beach', u'walker']
[u'bureau', u'reveal', u'high', u'kalgoorli', u'temp']
[u'busi', u'confid', u'wan']
[u'busi', u'fight', u'tourism', u'levi']
[u'businessman', u'sole', u'nomin', u'latham', u'seat']
[u'central', u'train', u'posit']
[u'canada', u'counter', u'patriot', u'data', u'report']
[u'cancer', u'convoy', u'particip', u'warn', u'obey', u'road']
[u'capit', u'consol', u'wnbl', u'award']
[u'secur', u'chip', u'crack', u'research']
[u'catchment', u'group', u'fear', u'river', u'health', u'swan']
[u'chief', u'justic', u'want', u'juri', u'involv', u'sentenc']
[u'chopper', u'crash', u'victim', u'identifi']
[u'clark', u'prepar', u'time']
[u'coach', u'safin', u'say', u'russian', u'chief']
[u'coalit', u'talk', u'workplac', u'agreement']
[u'confer', u'help', u'lure', u'fish', u'river']
[u'develop', u'unhappi', u'draft']
[u'council', u'like', u'reject', u'bottl', u'shop', u'plan']
[u'council', u'offer', u'drought']
[u'council', u'reveal', u'beach', u'resort']
[u'council', u'wait', u'hear', u'health', u'merger']
[u'counsellor', u'hop', u'court', u'case', u'wont', u'deter']
[u'court', u'tell', u'fingleton', u'immun']
[u'court', u'tell', u'robinson', u'place', u'bet']
[u'darl', u'down', u'landhold', u'score', u'valuat']
[u'demand', u'forc', u'cost', u'ghan']
[u'dept', u'urg', u'help', u'resolv', u'mental', u'health', u'nurs']
[u'derail', u'expect', u'hurt', u'prospector']
[u'distress', u'fingleton', u'take', u'hospit']
[u'electr', u'worker', u'receiv', u'increas']
[u'probe', u'river', u'chemic', u'spill']
[u'hop', u'extend', u'ranger', u'life']
[u'esso', u'contractor', u'celebr', u'roster']
[u'ethiopia', u'marley', u'inspir', u'rasta', u'invas']
[u'famili', u'declar', u'donat']
[u'farmer', u'warn', u'locust', u'return']
[u'final', u'vote', u'count', u'begin', u'iraq']
[u'firefight', u'control', u'tullamarin', u'blaze']
[u'flight', u'centr', u'chang', u'slogan']
[u'freez', u'develop', u'plan']
[u'french', u'govt', u'prop', u'struggl', u'wine', u'industri']
[u'fund', u'school', u'hors', u'rid', u'program', u'ensur']
[u'good', u'look', u'jobless', u'want', u'german', u'trade']
[u'goondiwindi', u'get', u'drug', u'fight', u'boost']
[u'govt', u'consid', u'icac', u'shake']
[u'govt', u'criticis', u'sugar', u'industri', u'reform', u'comment']
[u'govt', u'defend', u'tugun', u'bypass', u'environment', u'effort']
[u'govt', u'fast', u'track', u'albani', u'hospit', u'work']
[u'govt', u'commit', u'giant', u'marin', u'park']
[u'govt', u'broaden', u'elder', u'carer', u'scheme']
[u'greec', u'arrest', u'gang', u'peopl', u'smuggler']
[u'group', u'rais', u'flag']
[u'haitian', u'poll', u'novemb']
[u'hamilton', u'drop', u'australia']
[u'hardi', u'payout', u'review', u'complet', u'march']
[u'heavi', u'snow', u'hit', u'afghanistan', u'pakistan']
[u'hercul', u'crash', u'investig', u'continu']
[u'hick', u'lawyer', u'welcom', u'guantanamo', u'rule']
[u'high', u'demand', u'see', u'sport', u'field', u'share']
[u'hospit', u'staff', u'assur']
[u'howard', u'outlin', u'share', u'futur', u'asia']
[u'howard', u'reject', u'beazley', u'iraq', u'pullout']
[u'take', u'step', u'power', u'comput']
[u'ill', u'interrupt', u'milosev', u'trial']
[u'immigr', u'dept', u'blame', u'refuge', u'death']
[u'india', u'karthikeyan', u'histori']
[u'indonesia', u'cast', u'doubt', u'alleg', u'bali', u'bomber']
[u'insur', u'rebat', u'impact', u'hospit', u'wait', u'list']
[u'iraqi', u'politician', u'warn', u'civil', u'troop']
[u'iraq', u'vote', u'count', u'enter', u'second', u'phase']
[u'island', u'face', u'nation', u'giant']
[u'januari', u'rain', u'averag', u'sydney']
[u'keegan', u'dalglish', u'play', u'anfield', u'tsunami', u'benefit']
[u'kyoto', u'stop', u'global', u'warm', u'expert', u'say']
[u'leprosi', u'infect', u'stigma', u'persist']
[u'iraq', u'solv', u'problem', u'beazley', u'say']
[u'littl', u'rain', u'spark', u'tougher', u'water', u'ban']
[u'loser', u'forget', u'titl', u'warn', u'wenger']
[u'admit', u'kill', u'wife', u'daughter']
[u'plead', u'guilti', u'manslaught']
[u'rescu', u'hous']
[u'manufactur', u'growth', u'slow']
[u'market', u'challeng', u'tourism', u'industri']
[u'martin', u'stand', u'port', u'trade']
[u'mayor', u'defend', u'capricorn', u'coast', u'futur']
[u'mayor', u'want', u'fish', u'kill']
[u'maywald', u'will', u'work', u'govt']
[u'mediat', u'visit', u'ivori', u'coast', u'rebel']
[u'mildura', u'hospit', u'plan', u'servic']
[u'mildura', u'region', u'driver', u'undergo', u'drug', u'test']
[u'militari', u'funer', u'hold', u'kill', u'canyon']
[u'miner', u'beat', u'miner', u'sand', u'market']
[u'minist', u'echo', u'plan', u'health', u'shake']
[u'minist', u'pledg', u'chang', u'flag', u'fli', u'law']
[u'molik', u'crack']
[u'mooney', u'back', u'greater', u'council', u'account']
[u'fund', u'seek', u'tackl', u'indigen', u'health', u'woe']
[u'mother', u'angri', u'son', u'death', u'iraq']
[u'want', u'abort', u'decis', u'leav', u'women']
[u'gambier', u'await', u'timber', u'invest', u'news']
[u'cours', u'record', u'safe']
[u'natur', u'refug', u'creat']
[u'navratilova', u'edg', u'sele', u'exhibit', u'match']
[u'navi', u'ship', u'join', u'south', u'coast', u'exercis']
[u'nepal', u'king', u'sack', u'govern', u'assum', u'power']
[u'north', u'east']
[u'home', u'sale', u'decemb']
[u'leas', u'life', u'soon', u'nickel', u'tenement']
[u'nick', u'whitlam', u'take', u'action', u'retir', u'benefit']
[u'norman', u'embrac', u'rooki', u'status']
[u'begin', u'inquiri', u'juvenil', u'sentenc']
[u'cabinet', u'post', u'fill']
[u'odonnel', u'stick', u'cowboy']
[u'opposit', u'claim', u'hospit', u'servic', u'declin']
[u'outback', u'council', u'want', u'nation', u'smoke']
[u'paedophil', u'forc', u'town']
[u'pakistan', u'book', u'final', u'berth']
[u'pakistan', u'cruis', u'strong', u'total']
[u'parti', u'urg', u'crop']
[u'pegasus', u'director', u'stand', u'trial', u'alleg', u'fraud']
[u'appeal', u'life', u'convict', u'drug', u'traffick']
[u'visit', u'aceh']
[u'urg', u'calm', u'abort', u'debat']
[u'polic', u'continu', u'fatal', u'crash', u'probe']
[u'polic', u'investig', u'fatal', u'chopper', u'crash']
[u'polic', u'investig', u'letter', u'explos']
[u'polic', u'charg', u'south', u'more', u'riot']
[u'polic', u'safeti', u'prioriti', u'say', u'opposit']
[u'polic', u'station', u'stay', u'open', u'clock']
[u'polit', u'donat', u'lay', u'bare']
[u'polli', u'unifi', u'sale', u'hospit', u'support']
[u'power', u'chao', u'say', u'trenorden']
[u'pressur', u'mount', u'bendigo', u'polic', u'station', u'work']
[u'profession', u'canberra', u'danc', u'compani', u'possibl']
[u'protest', u'interrupt', u'howard', u'singapor', u'speech']
[u'public', u'urg', u'avoid', u'heat', u'stress']
[u'public', u'warn', u'blue', u'green', u'alga', u'concern']
[u'push', u'shoalhaven', u'emerg', u'specialist']
[u'barra', u'season', u'begin']
[u'rain', u'help', u'eas', u'water', u'ban']
[u'rann', u'faze', u'appoint', u'critic']
[u'rapper', u'snoop', u'dogg', u'accus', u'sexual', u'assault']
[u'ravensthorp', u'water', u'woe', u'highlight', u'year']
[u'receiv', u'call', u'lincraft']
[u'record', u'rain', u'adelaid']
[u'reev', u'get', u'star', u'walk', u'fame']
[u'rescu', u'chopper', u'protest']
[u'resourc', u'bank', u'stock', u'boost']
[u'revolutionari', u'nuclear', u'plant', u'card']
[u'rice', u'concentr', u'middl', u'east', u'peac']
[u'riot', u'high', u'secur', u'iraqi', u'prison', u'leav', u'dead']
[u'road', u'author', u'seek', u'remov', u'danger', u'tree']
[u'rooney', u'everton', u'return']
[u'erupt', u'feedlot', u'decis']
[u'ruddock', u'play', u'guantanamo', u'rule']
[u'sail', u'health']
[u'scientist', u'parlay', u'global', u'warm', u'crisi']
[u'scottish', u'rocker', u'award', u'nomin']
[u'search', u'continu', u'steal', u'yacht']
[u'senat', u'committe', u'probe', u'indigen', u'administr']
[u'sharapova', u'make', u'wimbledon', u'prioriti']
[u'shark', u'happi', u'wire', u'sound']
[u'shark', u'studi', u'aim', u'help', u'preserv', u'speci']
[u'shire', u'help', u'fund', u'wast', u'facil']
[u'sign', u'boost', u'fraser', u'tourist', u'safeti']
[u'singapor', u'consid', u'clemenc', u'melbourn']
[u'smoke', u'harm', u'women', u'studi']
[u'socceroo', u'strength', u'iraq', u'match', u'oneil']
[u'socceroo', u'confirm', u'iraq', u'fixtur']
[u'south', u'africa', u'japan', u'world']
[u'speaker', u'posit', u'guarante', u'martin']
[u'specialist', u'give', u'packag']
[u'springborg', u'urg', u'maintain', u'parti', u'plan']
[u'sterl', u'predict', u'return']
[u'steal', u'yacht', u'elud', u'polic']
[u'strand', u'dolphin', u'rescu']
[u'studi', u'get', u'jump', u'rage']
[u'studi', u'consid', u'iron', u'export', u'plan']
[u'studi', u'focus', u'bruce', u'highway', u'work']
[u'sudan', u'accus', u'systemat', u'abus', u'darfur']
[u'sunni', u'parti', u'urg', u'help', u'write', u'iraq', u'constitut']
[u'sunraysia', u'access', u'digit', u'channel']
[u'aquacultur', u'compani', u'merg']
[u'teenag', u'tait', u'pick', u'england', u'face', u'wale']
[u'telstra', u'custom', u'await', u'phone']
[u'telstra', u'rural', u'servic', u'improv', u'report', u'say']
[u'terri', u'hick', u'talk', u'habib']
[u'kill', u'georgia', u'explos']
[u'uninjur', u'light', u'plane', u'crash']
[u'marin', u'kill', u'south', u'baghdad']
[u'tourism', u'chief', u'back', u'road', u'renam']
[u'trade', u'deficit', u'stay']
[u'tsunami', u'rescuer', u'face', u'assault', u'charg']
[u'seek', u'shore', u'entitl', u'compani']
[u'call', u'world', u'support', u'iraq']
[u'tourism', u'bodi', u'open', u'emerg', u'session', u'thailand']
[u'outstrip', u'state', u'agricultur']
[u'vietnames', u'firm', u'offer', u'bird', u'insur']
[u'govt', u'promis', u'increas', u'hospit', u'bed']
[u'walk', u'theft', u'rise']
[u'wallabi', u'return', u'red']
[u'minist', u'deni', u'strike', u'claim']
[u'word', u'erupt', u'rail', u'line']
[u'warrior', u'ignit', u'final', u'charg']
[u'strike', u'capit', u'aust', u'andrew', u'say']
[u'william', u'tell', u'judg', u'hell', u'vindic']
[u'winemak', u'hold', u'price', u'talk']
[u'woman', u'get', u'probat', u'duff', u'beer', u'scam']
[u'women', u'lawyer', u'welcom', u'suprem', u'court', u'appoint']
[u'veteran', u'farewel']
[u'youhana', u'lead', u'pakistan', u'past']
[u'zimbabw', u'exil', u'launch', u'week', u'newspap']
[u'abba', u'meet', u'sharon', u'egypt']
[u'account', u'plead', u'guilti', u'fraud']
[u'landhold', u'pray', u'good', u'rain']
[u'alcohol', u'relat', u'injuri', u'caus', u'goldfield', u'worri']
[u'alic', u'spring', u'hospit', u'get', u'upgrad']
[u'waratah', u'red']
[u'ambul', u'offic', u'danger', u'union', u'say']
[u'anim', u'right', u'activist', u'sell', u'skin', u'chariti']
[u'armi', u'get', u'clear', u'peninsula', u'work']
[u'athen', u'firm', u'favourit', u'swim']
[u'australian', u'bali', u'drug', u'trial', u'delay']
[u'austrian', u'domin', u'empir', u'state', u'eldest', u'entrant']
[u'beatti', u'call', u'calm', u'paedophil', u'hunt']
[u'beazley', u'defend', u'eyr', u'peninsula', u'visit']
[u'benitez', u'bullish', u'reviv']
[u'brown', u'win', u'langkawi', u'stage']
[u'buchanan', u'step', u'hayden', u'defenc']
[u'bulldog', u'scope', u'talent']
[u'busi', u'usual', u'cockatoo']
[u'canada', u'unveil', u'plan', u'legalis', u'marriag']
[u'carmak', u'renault', u'boss']
[u'castl', u'add', u'heritag', u'regist']
[u'cattl', u'station', u'swelter', u'januari']
[u'cessnock', u'council', u'abandon', u'hous', u'plan']
[u'cheaper', u'fuel', u'price', u'predict']
[u'correct', u'iraq', u'assess']
[u'cmon', u'hit', u'tenni', u'circuit']
[u'communiti', u'fund', u'bank', u'feasibl', u'studi']
[u'consortium', u'appoint', u'build', u'student', u'dig']
[u'contrit', u'mutu', u'relish', u'juventus', u'challeng']
[u'convict', u'child', u'killer', u'quiz', u'unsolv']
[u'costello', u'deni', u'abort', u'debat', u'damag', u'coalit']
[u'council', u'crack', u'smelli', u'treatment', u'plant']
[u'council', u'hear', u'fall', u'rate', u'base']
[u'council', u'hop', u'ramp', u'harbour', u'dredg', u'fund']
[u'councillor', u'warn', u'privat', u'memo', u'comment']
[u'council', u'beat', u'technic', u'colleg']
[u'court', u'approv', u'food', u'poison', u'action', u'settlement']
[u'court', u'reserv', u'decis', u'fingleton', u'case']
[u'cream', u'reunion', u'ticket', u'fetch', u'huge', u'sum']
[u'crikey', u'mayn', u'take', u'life']
[u'develop', u'approv', u'spark', u'indigen', u'protest']
[u'develop', u'plan', u'consid', u'environ']
[u'dickov', u'doubt', u'chelsea', u'clash']
[u'test', u'order', u'custodi', u'battl', u'tsunami']
[u'drug', u'chief', u'hunt', u'trace', u'design', u'steroid']
[u'dust', u'storm', u'caus', u'havoc', u'western']
[u'earthquak', u'rule', u'caus', u'tremor']
[u'kill', u'iraq', u'insurg', u'attack']
[u'employe', u'warn', u'seek', u'super', u'advic']
[u'esso', u'roster', u'union']
[u'ethiopia', u'celebr', u'marley', u'birthday']
[u'fall', u'tree', u'kill', u'teen', u'school', u'camp']
[u'fan', u'brave', u'cold', u'ticket']
[u'farmer', u'ask', u'storm', u'damag']
[u'farmer', u'look', u'state', u'drought']
[u'fear', u'resid', u'continu', u'punish', u'free']
[u'feder', u'fund', u'probe']
[u'femal', u'coalit', u'dont', u'want', u'abort', u'debat']
[u'fergi', u'point', u'finger', u'vieira', u'tunnel']
[u'fifa', u'set', u'beach', u'soccer', u'world']
[u'final', u'submiss', u'hear', u'fingleton', u'appeal']
[u'crew', u'battl', u'booragoon', u'blaze']
[u'fishway', u'declar', u'success']
[u'execut', u'die', u'plane', u'crash']
[u'stoner', u'chief', u'staff']
[u'fourth', u'teen', u'charg', u'year', u'assault']
[u'fruit', u'outbreak', u'prompt', u'trap']
[u'futur', u'uncertain', u'construct', u'compani', u'worker']
[u'gavaskar', u'head', u'rest', u'world', u'select', u'panel']
[u'german', u'footbal', u'scandal', u'widen', u'includ', u'second']
[u'german', u'presid', u'lay', u'wreath', u'isra', u'holocaust']
[u'gold', u'coast', u'council', u'face', u'growth', u'challeng']
[u'govern', u'adopt', u'holist', u'approach', u'cross', u'media']
[u'govt', u'ask', u'bolster', u'worker', u'entitl']
[u'govt', u'deliv', u'sugar', u'reform', u'labor', u'say']
[u'govt', u'depart', u'review', u'water', u'shortag']
[u'govt', u'urg', u'spell', u'voluntari', u'school', u'fee']
[u'green', u'group', u'highlight', u'differ', u'report']
[u'grower', u'unhappi', u'citrus', u'canker', u'measur']
[u'hawk', u'visit', u'seat', u'girrawheen']
[u'health', u'centr', u'tender', u'call']
[u'heavi', u'rain', u'caus', u'flood', u'melbourn', u'area']
[u'help', u'away', u'rubbish', u'good']
[u'high', u'cost', u'bendigo', u'newspap', u'print']
[u'home', u'owner', u'wound', u'burglari']
[u'hope', u'facil', u'bring', u'graduat']
[u'hous', u'trust', u'chase', u'rent']
[u'gilchrist', u'say', u'england', u'jone']
[u'rat', u'remain']
[u'iraq', u'eas', u'secur', u'poll']
[u'iraqi', u'presid', u'fight', u'demand', u'pullout']
[u'kelli', u'defend', u'govt', u'withhold', u'sugar', u'fund']
[u'kelli', u'fast', u'track', u'elect', u'fund', u'request']
[u'knight', u'contest', u'dali', u'seat']
[u'labor', u'say', u'cartel', u'crackdown', u'overdu']
[u'landhold', u'urg', u'alert', u'burn']
[u'lara', u'tip', u'pakistan', u'beat', u'australia']
[u'larger', u'budget', u'surplus', u'forecast']
[u'lawyer', u'ask', u'client', u'wear', u'civilian', u'cloth']
[u'lightn', u'confid', u'flame']
[u'local', u'snap', u'broom', u'land', u'releas']
[u'lonard', u'share', u'lead', u'heineken']
[u'accus', u'make', u'fals', u'polic', u'report']
[u'front', u'court', u'bushfir']
[u'come', u'arsenal']
[u'maritim', u'museum', u'aim', u'return', u'visit']
[u'matilda', u'thrash', u'russia', u'lose', u'china']
[u'mayor', u'beat', u'river', u'develop']
[u'melbourn', u'shiver', u'temperatur', u'plung']
[u'microsoft', u'enter', u'search', u'engin', u'battl']
[u'ministeri', u'advic', u'withhold', u'rort', u'inquiri']
[u'minist', u'reveal', u'drop', u'abort']
[u'minist', u'talk', u'nativ', u'titl', u'agreement']
[u'miss', u'plane', u'wilder']
[u'miss', u'yacht']
[u'hear', u'caravan', u'park', u'concern']
[u'multicultur', u'festiv', u'spread', u'suburb']
[u'murali', u'injuri', u'think']
[u'nation', u'seek', u'high', u'school', u'driver', u'train']
[u'nepales', u'rebel', u'strike', u'king', u'assum']
[u'nepal', u'king', u'unveil', u'emerg', u'cabinet']
[u'newcastl', u'quarantin', u'manag', u'win', u'award']
[u'drug', u'confirm', u'sport', u'worst', u'fear']
[u'ngarkat', u'control']
[u'nightclub', u'tripl', u'murder', u'link', u'clash']
[u'sight', u'bun']
[u'sight', u'rescu', u'chopper']
[u'need', u'chang', u'abort', u'law', u'carr', u'say']
[u'resolut', u'taxi', u'centr', u'disput']
[u'overhaul', u'pain', u'manag', u'servic']
[u'review', u'petrol', u'price']
[u'announc', u'schedul', u'tsunami', u'delay']
[u'open', u'kill', u'duck', u'cull']
[u'firm', u'continu', u'multi', u'million', u'dollar', u'deal']
[u'opposit', u'highlight', u'legal', u'cost', u'blowout']
[u'opposit', u'question', u'poki', u'plan', u'job', u'impact']
[u'paedophil', u'protest', u'spark', u'polit']
[u'pentagon', u'want', u'bunker', u'buster', u'fund']
[u'perth', u'bushfir', u'contain']
[u'petit', u'seek', u'vietnam', u'memori', u'wall']
[u'phonak', u'allow', u'cycl', u'tour']
[u'pike', u'ask', u'sale', u'hospit', u'explain']
[u'pike', u'hear', u'hospit', u'concern', u'hand']
[u'pirat', u'road', u'spot']
[u'plane', u'land', u'safe', u'dump', u'fuel']
[u'plan', u'continu', u'tamworth', u'centr']
[u'player', u'donat', u'cash', u'broadbridg', u'memori']
[u'pledg', u'support', u'aceh']
[u'touch', u'aceh']
[u'polic', u'hunt', u'conveni', u'store', u'bandit']
[u'polic', u'investig', u'gordon', u'estat', u'child', u'attack']
[u'polic', u'shoot', u'woman']
[u'polic', u'search', u'miss', u'surfer']
[u'polic', u'station', u'cell', u'inquest', u'hear', u'evid']
[u'polic', u'uncov', u'bunker', u'hydropon']
[u'polic', u'identifi', u'pedestrian', u'victim']
[u'polli', u'damag', u'hand']
[u'pope', u'stabl', u'condit']
[u'pope', u'health', u'caus', u'alarm', u'say', u'vatican']
[u'pope', u'take', u'hospit', u'vatican', u'say']
[u'power', u'home']
[u'prawn', u'stock', u'spotlight']
[u'profit', u'report', u'push', u'wall', u'higher']
[u'proud', u'iraqi', u'get', u'elect', u'spirit']
[u'consid', u'tighter', u'paedophil', u'control']
[u'medic', u'team', u'arriv', u'home', u'indonesia']
[u'raaf', u'seek', u'foster', u'home', u'pup']
[u'rail', u'propos', u'boost', u'coal', u'industri']
[u'rain', u'boost', u'warragamba', u'level']
[u'rain', u'increas', u'fish', u'pest', u'threat']
[u'rain', u'put', u'dampen', u'heineken', u'classic']
[u'region', u'port', u'urg', u'effici', u'competit']
[u'region', u'rout', u'unlik', u'carrier']
[u'region', u'broadband', u'boost']
[u'reptil', u'seiz', u'golden', u'home']
[u'research', u'develop', u'biolog', u'pacemak']
[u'resid', u'creativ', u'develop']
[u'revamp', u'bridg', u'open']
[u'riverina', u'air', u'later', u'term', u'abort', u'worri']
[u'robinson', u'stand', u'patch', u'england']
[u'rumsfeld', u'consid', u'crime', u'prosecut', u'risk']
[u'warn', u'climat', u'chang', u'impact']
[u'schizophrenia', u'bipolar', u'drug', u'list']
[u'school', u'honour', u'iraq', u'plane', u'crash', u'victim']
[u'scrambl', u'world', u'ticket', u'begin']
[u'seller', u'charg', u'steal', u'good', u'ebay']
[u'begin', u'clean', u'wild', u'sydney', u'storm']
[u'clean', u'goulburn', u'valley', u'storm', u'damag']
[u'solomon', u'minist', u'describ', u'ramsi', u'overkil']
[u'marathon', u'legend', u'sign', u'sydney']
[u'south', u'pacif', u'island', u'report', u'volcan']
[u'specul', u'bacteria', u'death']
[u'spinal', u'cord', u'sexual', u'dysfunct']
[u'statist', u'highlight', u'high', u'indigen', u'sid', u'rate']
[u'stock', u'market', u'continu', u'record']
[u'storm', u'bring', u'damag', u'north', u'west', u'victoria']
[u'swiss', u'stargaz', u'spin', u'cosmic', u'monster']
[u'group', u'plead', u'child', u'abus', u'inquiri']
[u'test', u'chemic', u'spill']
[u'chaser', u'print']
[u'delay', u'mawson', u'station', u'suppli']
[u'thorp', u'unlik', u'nation', u'trial']
[u'thousand', u'power', u'storm', u'sweep', u'sydney']
[u'kill', u'iraq', u'insurg', u'attack']
[u'mark', u'townsvill', u'emerg', u'medicin']
[u'tour', u'oper', u'suspect', u'chemic', u'fish', u'kill']
[u'toyota', u'fli', u'steel', u'meet', u'order']
[u'treasur', u'threaten', u'cartel', u'jail', u'fin']
[u'treasur', u'consid', u'foe', u'tax', u'request']
[u'tsunami', u'prompt', u'visa', u'applic']
[u'turkish', u'runner', u'ayhan', u'dope']
[u'children', u'injur', u'smash']
[u'soldier', u'admit', u'ghraib', u'abus']
[u'choos', u'clinton', u'tsunami', u'envoy']
[u'colleg', u'form', u'wine', u'tourism', u'partnership']
[u'union', u'claim', u'teacher', u'oversuppli']
[u'union', u'outrag', u'meat', u'worker', u'limbo']
[u'host', u'natur', u'hazard', u'confer']
[u'tighten', u'ivori', u'coast', u'arm', u'embargo']
[u'hostag', u'doll']
[u'stand', u'firm', u'sudan', u'genocid', u'claim']
[u'vatican', u'delay', u'updat', u'pope', u'health']
[u'vendor', u'failur', u'say', u'properti', u'council']
[u'virgin', u'appoint', u'independ', u'director']
[u'govern', u'opposit', u'argu', u'drug', u'polici']
[u'govt', u'rego', u'fee']
[u'wallabi', u'reveal', u'novemb', u'tour', u'detail']
[u'veteran', u'label', u'flag', u'oppon', u'australian']
[u'water', u'qualiti', u'boost', u'bombala']
[u'western', u'power', u'expert', u'bushfir', u'inquest']
[u'night', u'central', u'victoria']
[u'forger', u'admit', u'fraud']
[u'winemak', u'payment', u'price']
[u'sharehold', u'ask', u'calm']
[u'woman', u'float', u'face', u'bondi', u'beach']
[u'woman', u'happi', u'suicid', u'inquest', u'hear']
[u'worker', u'train']
[u'worker', u'prais', u'fibreboard', u'plant', u'commit']
[u'world', u'potenti', u'bush', u'tucker', u'moot', u'alic']
[u'xstrata']
[u'power', u'melbourn']
[u'adelaid', u'rememb', u'late', u'chairman']
[u'airport', u'effici', u'manag', u'scheme']
[u'rat', u'hospit', u'staff', u'higher', u'build', u'woe']
[u'analyst', u'tinto', u'result']
[u'anim', u'clue', u'weather', u'watcher', u'trend']
[u'farewel', u'longest', u'serv', u'board', u'member']
[u'australian', u'admit', u'own', u'drug', u'wit']
[u'australian', u'coach', u'thompson', u'moscow', u'concern']
[u'australian', u'fisher', u'offer', u'tsunami']
[u'australian', u'flag', u'high', u'launceston']
[u'australian', u'bodi', u'recov', u'plane', u'wreck']
[u'aust', u'student', u'sing', u'wonderwal', u'pope']
[u'author', u'accus', u'plagiaris', u'agatha', u'christi']
[u'gate', u'present', u'european', u'research', u'plan']
[u'blunkett', u'lover', u'give', u'birth', u'babi']
[u'brack', u'stand', u'rail', u'closur']
[u'brawl', u'spark', u'polic', u'better', u'plan']
[u'break', u'threaten', u'pool', u'futur']
[u'brother', u'escap', u'trial', u'gang', u'rape', u'case']
[u'build', u'approv', u'rebound']
[u'telstra', u'sale', u'profit', u'boost', u'rural', u'appeal']
[u'carr', u'promis', u'tattoo', u'traffic', u'chao']
[u'chechen', u'rebel', u'leader', u'order', u'ceas', u'websit']
[u'chelsea', u'strengthen', u'titl', u'stranglehold']
[u'face', u'pressur', u'divulg', u'nazi', u'tie']
[u'clemenc', u'suffer', u'prostat', u'cancer']
[u'club', u'employe', u'charg', u'gang', u'violenc']
[u'coalit', u'promis', u'canal', u'solv', u'water']
[u'coke', u'takeov']
[u'cold', u'snap', u'hit', u'western']
[u'compani', u'fire', u'worker', u'present']
[u'conflict', u'reason', u'give', u'high', u'fuel', u'price']
[u'consist', u'need', u'feder', u'offenc', u'group']
[u'corrigan', u'criticis', u'virgin', u'blue', u'strategi']
[u'costello', u'claim', u'oecd', u'report', u'back', u'govt', u'polici']
[u'councillor', u'want', u'surf', u'hous', u'demolish']
[u'council', u'meet', u'chang', u'pressur']
[u'council', u'releas', u'afford', u'hous', u'plan']
[u'council', u'investig', u'anim', u'welfar']
[u'criminalis', u'petrol', u'sniff', u'say', u'communiti', u'worker']
[u'cyclon', u'season', u'return', u'north', u'coast']
[u'doctor', u'return', u'tsunami', u'work']
[u'dog', u'urg', u'grab', u'chanc', u'lifetim']
[u'drug', u'seiz', u'polic', u'raid']
[u'elliott', u'file', u'bankruptci', u'paper']
[u'famili', u'regain', u'custodi', u'abandon']
[u'fatigu', u'airport', u'near', u'miss', u'report', u'find']
[u'ferri', u'servic', u'cancel', u'wild', u'storm']
[u'rebuff', u'claim', u'favour', u'ferrari']
[u'damag', u'canberra', u'hous']
[u'fish', u'kill', u'remain', u'mysteri']
[u'local', u'charg', u'child', u'porn']
[u'frog', u'genit', u'deem', u'okay', u'british']
[u'steam', u'ahead', u'alic', u'civic', u'centr']
[u'georgia', u'prime', u'minist', u'dead']
[u'german', u'bind', u'australia']
[u'german', u'presid', u'declar', u'nazi', u'shame']
[u'german', u'radar', u'polic', u'stump', u'park', u'ticket']
[u'golden', u'bear', u'jet', u'pokolbin', u'resort', u'talk']
[u'golden', u'bowerbird', u'risk', u'global', u'warm']
[u'googl', u'amazon', u'deliv', u'stellar', u'profit']
[u'govt', u'offer', u'help', u'boost', u'lake', u'wendoure']
[u'govt', u'put', u'littl', u'emphasi', u'environ']
[u'govt', u'urg', u'approv', u'rail', u'safeti', u'legisl']
[u'govt', u'clarifi', u'caravan', u'park', u'tenant', u'right']
[u'govt', u'urg', u'rethink', u'polic', u'legal', u'protect']
[u'govt', u'ignor', u'rural', u'need', u'cherri', u'warn']
[u'gunnedah', u'host', u'timber', u'talk']
[u'harbour', u'park', u'walkway', u'plan']
[u'hear', u'aircraft', u'explos', u'claim', u'adjourn']
[u'help', u'hand', u'offer', u'lift', u'tourism']
[u'henri', u'seek', u'black', u'tsunami', u'match']
[u'high', u'wind', u'bring', u'cool', u'chang']
[u'high', u'wind', u'predict', u'accompani', u'downpour']
[u'hill', u'dous', u'specul', u'warship', u'tender']
[u'hotel', u'project', u'get', u'preliminari', u'develop', u'permit']
[u'hunter', u'escap', u'worst', u'storm']
[u'worker', u'abl', u'appli', u'govt', u'help']
[u'discuss', u'throw']
[u'immelman', u'maintain', u'lead', u'heineken']
[u'indonesia', u'deni', u'strike', u'kill', u'alleg', u'bali']
[u'indonesian', u'aceh', u'conflict']
[u'intern', u'divis', u'cannabi', u'law']
[u'inzamam', u'play', u'final', u'error']
[u'iraqi', u'soldier', u'replac', u'mosul']
[u'withdraw', u'offer', u'destroy', u'weapon']
[u'jetstar', u'asia', u'await', u'approv', u'rout']
[u'justic', u'adjourn', u'transfer', u'baxter', u'detaine']
[u'juve', u'lead', u'slash', u'sampdoria', u'defeat']
[u'kalbarri', u'seek', u'power']
[u'kidnap', u'swedish', u'businessman', u'aliv']
[u'labor', u'flag', u'plan']
[u'langer', u'go', u'hayden']
[u'langer', u'nighter', u'redback']
[u'lonard', u'share', u'lead', u'heineken']
[u'macarthur', u'battl', u'marathon', u'attempt']
[u'madrid', u'stop', u'olymp', u'inspector']
[u'magistr', u'dismiss', u'school', u'stab', u'charg']
[u'malle', u'farmer', u'financi', u'woe']
[u'fin', u'child', u'porn']
[u'plead', u'guilti', u'child', u'porn', u'charg']
[u'face', u'court', u'carpark', u'accid']
[u'court', u'sheep', u'duf']
[u'maoist', u'tell', u'negoti', u'risk', u'altern', u'step']
[u'market', u'mute', u'rat', u'rise']
[u'master', u'builder', u'play', u'approv', u'figur']
[u'mayor', u'councillor', u'review', u'plan']
[u'melbourn', u'weather', u'eas']
[u'middl', u'east', u'peac', u'sight', u'bush']
[u'mini', u'crash', u'land', u'hospit']
[u'mitsubishi', u'sale', u'profit', u'record', u'strong']
[u'back', u'justic', u'complex', u'return', u'work']
[u'monsoon', u'trough', u'strengthen']
[u'time', u'comment', u'wind', u'farm', u'rezon']
[u'unhappi', u'drought', u'snub']
[u'want', u'port', u'hedland', u'council', u'administr']
[u'mundin', u'panamanian']
[u'napster', u'unveil', u'portabl', u'servic']
[u'nation', u'west', u'visit']
[u'trial', u'order', u'accus', u'prostitut', u'killer']
[u'appeal', u'plan', u'jail', u'driver']
[u'guarante', u'hayden', u'say', u'pont']
[u'probe', u'highburi', u'tunnel', u'bust']
[u'assess', u'storm', u'damag']
[u'govt', u'urg', u'reject', u'tugun', u'bypass', u'rout']
[u'join', u'german', u'backpack']
[u'polici', u'capitalis', u'cultur', u'divers']
[u'reject', u'abort', u'law', u'debat']
[u'nurs', u'shock', u'staff', u'status']
[u'host', u'lanka', u'april']
[u'oecd', u'report', u'expos', u'govern', u'fail']
[u'opposit', u'predict', u'spring', u'elect']
[u'optus', u'quarter', u'profit', u'increas']
[u'pair', u'rescu', u'swell', u'creek']
[u'pakistan', u'form', u'say', u'buchanan']
[u'paperboy', u'offload', u'gold', u'edit', u'copi']
[u'patterson', u'back', u'medicar', u'fund', u'abort']
[u'pietersen', u'hit', u'centuri', u'england', u'africa']
[u'pig', u'pirat']
[u'plan', u'maintain', u'therapi', u'pool', u'access']
[u'polic', u'follow', u'lead', u'rock', u'throw', u'case']
[u'polic', u'hunt', u'girl', u'attack']
[u'polic', u'investig', u'fatal', u'smash']
[u'polic', u'think', u'meatwork', u'blaze', u'insid']
[u'polic', u'probe', u'fatal', u'chopper', u'crash']
[u'pope', u'medic', u'test', u'satisfactori']
[u'port', u'test', u'youngster', u'intern', u'trial']
[u'port', u'cater', u'grow', u'demand']
[u'princ', u'charl', u'visit', u'australia']
[u'prison', u'donat', u'tsunami', u'appeal']
[u'privat', u'crisi', u'loom']
[u'public', u'ask', u'art', u'centr', u'plan']
[u'public', u'ask', u'help', u'cane', u'toad', u'popul']
[u'public', u'warn', u'wari', u'wasp']
[u'quarantin', u'requir', u'amend']
[u'rain', u'boost', u'level']
[u'rain', u'stretch', u'resourc']
[u'ranger', u'hope', u'catch', u'croc']
[u'rebel', u'ambush', u'kill', u'iraqi', u'soldier']
[u'record', u'breaker', u'riou', u'win', u'round', u'world', u'yacht', u'race']
[u'region', u'fund', u'inquiri', u'wit', u'oath']
[u'rescuer', u'tribespeopl', u'miss', u'tsunami']
[u'research', u'launch', u'dust', u'watch', u'websit']
[u'tinto', u'buyback', u'heighten', u'takeov', u'specul']
[u'tinto', u'share', u'uranium', u'iran']
[u'ripper', u'defend', u'brookton', u'time']
[u'robinson', u'trial', u'review', u'casino', u'record']
[u'rspca', u'rue', u'record']
[u'sand', u'sculptur', u'wash', u'away']
[u'school', u'bus', u'vandalis']
[u'second', u'person', u'die', u'fall', u'tree']
[u'serbian', u'crime', u'suspect', u'leav', u'hagu']
[u'servic', u'sector', u'growth', u'slow']
[u'crew', u'work', u'night', u'storm']
[u'flat', u'storm', u'lash', u'victoria']
[u'sharon', u'consid', u'goodwil', u'gestur', u'ahead', u'summit']
[u'shire', u'buy', u'land', u'futur']
[u'shire', u'look', u'catchment', u'author']
[u'shoaib', u'question', u'fit']
[u'lodg', u'approv', u'thredbo', u'disast', u'site']
[u'slow', u'rain', u'polic', u'warn']
[u'solomon', u'sack', u'confid', u'threat']
[u'solid', u'crew', u'rapper', u'face', u'murder', u'trial']
[u'south', u'east', u'cool', u'chang']
[u'south', u'consid', u'cross', u'town']
[u'sharehold', u'tip', u'accept', u'coke', u'offer']
[u'lanka', u'put', u'tsunami', u'babi', u'guard']
[u'sting', u'special', u'tsunami', u'victim']
[u'storm', u'damag', u'clean']
[u'storm', u'caus', u'widespread', u'blackout', u'tasmania']
[u'storm', u'leav', u'trail', u'damag', u'gippsland']
[u'storm', u'leav', u'widespread', u'damag', u'wake']
[u'strategi', u'launch', u'increas', u'wine', u'industri', u'revenu']
[u'strong', u'support', u'dalbi', u'pool', u'plan']
[u'student', u'honour', u'indigen', u'veteran']
[u'student', u'fractur', u'conservatorium']
[u'student', u'share', u'drug', u'experi', u'corbi', u'lawyer']
[u'sudan', u'plane', u'crash', u'kill']
[u'summer', u'snow', u'fall', u'thredbo']
[u'takeov', u'bid', u'drive', u'market', u'record']
[u'tamworth', u'airport', u'alert', u'plane', u'emerg']
[u'teenag', u'appear', u'court', u'babi', u'murder', u'charg']
[u'temperatur', u'plummet', u'england']
[u'thailand', u'elect', u'death', u'toll', u'rise']
[u'thorn', u'blue']
[u'tree', u'crash', u'bedroom', u'storm']
[u'tree', u'fall', u'classroom', u'injur']
[u'tribut', u'flow', u'lead', u'businessman']
[u'truck', u'crash', u'leav', u'driver', u'hang', u'waterway']
[u'trump', u'martha', u'stewart', u'your', u'hire']
[u'truss', u'support', u'call', u'agricultur', u'polici']
[u'tsunami', u'relief', u'troop', u'home', u'fair', u'soon']
[u'turin', u'winter', u'game', u'organis', u'short', u'cash']
[u'soldier', u'charg', u'iraqi', u'death']
[u'union', u'ask', u'blue', u'ribbon', u'reinstat', u'worker']
[u'hold', u'tropic', u'scienc', u'precinct', u'talk']
[u'judg', u'order', u'releas', u'guantanamo', u'record']
[u'tsunami', u'warn', u'need', u'repair', u'expert']
[u'vail', u'tip', u'coalit']
[u'victoria', u'quiet', u'child', u'killer', u'interrog']
[u'vietnam', u'appeal', u'help', u'bird', u'fight']
[u'violenc', u'rock', u'eastern', u'india', u'ahead', u'poll']
[u'liber', u'gag', u'canal', u'pledg']
[u'walter', u'construct', u'project', u'threat']
[u'waratah', u'releas', u'waugh', u'tsunami', u'fundrais']
[u'wild', u'weather', u'caus', u'landslip', u'flood']
[u'wild', u'weather', u'continu']
[u'windsor', u'accus', u'grant', u'inquiri', u'wit', u'lie']
[u'windsor', u'staffer', u'bribe', u'claim']
[u'wind', u'whip', u'sand', u'headland']
[u'wit', u'prais', u'apprehend', u'alleg']
[u'reject', u'latest', u'xstrata', u'takeov', u'offer']
[u'woman', u'horrifi', u'latest', u'child', u'abus', u'claim']
[u'work', u'harder', u'support', u'age', u'popul', u'oecd']
[u'world', u'vision', u'thank', u'australia', u'tsunami']
[u'yacht', u'theft', u'suspect', u'descript', u'releas']
[u'yacht', u'thief', u'experi', u'sailor', u'polic']
[u'young', u'sign', u'brumbi']
[u'youth', u'group', u'back', u'stronger', u'cannabi', u'law']
[u'zimbabw', u'halt', u'african', u'fact', u'find', u'mission']
[u'abbott', u'consid', u'kidney', u'donor', u'compo']
[u'abbott', u'want', u'abort', u'debat']
[u'busi', u'urg', u'bolster', u'recycl', u'effort']
[u'adelaid', u'clip', u'hawk']
[u'afghan', u'flight', u'miss', u'amid', u'winter', u'storm']
[u'chief', u'predict', u'touch', u'increas', u'help']
[u'airport', u'rule', u'rais', u'shop', u'centr', u'group']
[u'alcohol', u'dead', u'smoke', u'studi']
[u'annan', u'disciplin', u'food', u'program', u'head']
[u'australian', u'tsunami', u'death', u'confirm']
[u'armi', u'chopper', u'shoot', u'nepali', u'student', u'report']
[u'aust', u'pledg', u'volcano', u'victim']
[u'australia', u'lose', u'quick', u'wicket']
[u'australia', u'win', u'start', u'wellington', u'seven']
[u'australia', u'pakistan']
[u'australia', u'readi', u'strike', u'final']
[u'australia', u'steadi', u'inning', u'nervous', u'start']
[u'australia', u'play', u'indonesia', u'tsunami', u'chariti']
[u'australia', u'urg', u'nepal', u'return', u'democraci']
[u'australia', u'win', u'final']
[u'barca', u'close', u'championship']
[u'barnett', u'promis', u'drag', u'race', u'facil']
[u'beatti', u'back', u'coast', u'keep']
[u'beazley', u'call', u'anderson', u'face', u'bribe', u'inquiri']
[u'berni', u'lewiss', u'funer', u'hold', u'basketbal']
[u'briton', u'battl', u'save', u'round', u'world', u'dream']
[u'buckley', u'doubt', u'season']
[u'busi', u'urg', u'boost', u'apprentic', u'number']
[u'cambodian', u'opposit', u'leader', u'flee', u'countri']
[u'canal', u'plan', u'rais', u'nativ', u'titl', u'question']
[u'cancer', u'treatment', u'servic', u'coordin']
[u'candid', u'fear', u'canal', u'plan', u'threaten', u'work']
[u'candid', u'suggest', u'pipelin', u'eas', u'water', u'woe']
[u'carr', u'defend', u'sexual', u'assault', u'chang']
[u'central', u'australian', u'casual', u'approach']
[u'chelsea', u'host', u'sole', u'conqueror', u'manchest', u'citi']
[u'china', u'jail', u'journalist', u'watchdog']
[u'citrus', u'group', u'oppos', u'emerald', u'market']
[u'civic', u'leader', u'seek', u'restrict', u'telco', u'dig']
[u'class', u'move', u'tree', u'mishap']
[u'clydesdal', u'tough', u'armi', u'base', u'train']
[u'coastal', u'council', u'seek', u'chang', u'burden', u'fund']
[u'cold', u'weather', u'take', u'toll', u'stock']
[u'commonwealth', u'link', u'marijuana', u'law', u'organis']
[u'compani', u'collaps', u'prompt', u'site', u'picket']
[u'construct', u'firm', u'devaugh']
[u'contractor', u'like', u'lose', u'money', u'walter', u'demis']
[u'cooma', u'aid', u'sydney', u'storm', u'clean']
[u'corpor', u'australia', u'urg', u'maintain', u'tsunami']
[u'cosmonaut', u'wari', u'space', u'station', u'haven', u'plan']
[u'costello', u'wad', u'canal', u'debat']
[u'council', u'ask', u'subdivis']
[u'council', u'call', u'king', u'highway', u'safeti', u'action']
[u'council', u'defer', u'contract', u'decis']
[u'council', u'elect', u'wish', u'list']
[u'council', u'say', u'rail', u'agreement', u'loom']
[u'council', u'ongo', u'tsunami', u'donat']
[u'council', u'watch', u'park', u'meter', u'impact']
[u'countri', u'energi', u'review', u'imperi', u'lake', u'swim', u'plan']
[u'court', u'deni', u'rapist', u'question', u'victim']
[u'cyclon', u'sweep', u'past', u'american', u'samoa']
[u'cyclon', u'threat', u'loom', u'northern']
[u'davenport', u'encourag', u'hingi', u'comeback']
[u'deadlin', u'loom', u'council', u'speed', u'limit', u'decis']
[u'dengu', u'fever', u'hit', u'record', u'high', u'singapor']
[u'dfat', u'updat', u'nepal', u'travel', u'advic']
[u'doctor', u'urg', u'govt', u'regul', u'box']
[u'driver', u'die', u'highway', u'truck', u'crash']
[u'east', u'west', u'rail', u'line', u'track']
[u'econom', u'news', u'send', u'jitter', u'market']
[u'endang', u'wallabi', u'releas']
[u'england', u'trip', u'wale', u'tone', u'nation']
[u'eurobodalla', u'resid', u'help', u'water']
[u'fairymead', u'sugar', u'shut', u'door']
[u'fairi', u'penguin', u'wash', u'storm', u'wake']
[u'farmer', u'anxious', u'drought', u'uncertainti']
[u'fatal', u'crash', u'prompt', u'highway', u'fund', u'plea']
[u'liber', u'royal', u'snub']
[u'ferri', u'return', u'servic', u'high', u'sea', u'drama']
[u'victim', u'urg', u'watch', u'delay', u'stress']
[u'foster', u'parent', u'reconsid', u'role', u'associ', u'say']
[u'seal', u'popul', u'stabl']
[u'georgian', u'dead', u'leak']
[u'gippsland', u'road', u'crash', u'claim', u'live']
[u'gonzal', u'approv', u'attorney', u'general']
[u'govt', u'promis', u'walter', u'project', u'finish']
[u'govt', u'propos', u'screen', u'nightclub', u'patron']
[u'govt', u'help', u'shire', u'insur', u'shortfal']
[u'govt', u'urg', u'underground', u'rail', u'line']
[u'govt', u'urg', u'kidney', u'donor']
[u'habib', u'plan', u'tribun', u'fight', u'passport']
[u'hart', u'tame', u'wind', u'phoenix', u'open', u'lead']
[u'heater', u'warn', u'issu', u'mawson', u'hous']
[u'high', u'beef', u'price', u'predict']
[u'hospit', u'nurs', u'plan']
[u'hospit', u'upgrad', u'cancer', u'treatment', u'machin']
[u'target', u'fiction', u'claim', u'jackson', u'say']
[u'immelman', u'take', u'lead', u'royal', u'melbourn']
[u'immigr', u'dept', u'free', u'detain', u'australian']
[u'immigr', u'dept', u'swoop', u'swan', u'hill', u'worker']
[u'indonesia', u'revis', u'tsunami', u'death', u'toll']
[u'investig', u'iraq', u'hercul', u'crash', u'site', u'search']
[u'iran', u'attack', u'agenda', u'rice']
[u'iran', u'syria', u'deni', u'bush', u'accus']
[u'iraqi', u'villag', u'kill', u'insurg']
[u'irrig', u'deal', u'eas', u'perth', u'water', u'woe']
[u'isra', u'hurt', u'shoot', u'attack', u'armi', u'say']
[u'italian', u'journalist', u'abduct', u'baghdad']
[u'jandowa', u'goer']
[u'japan', u'charter', u'flight', u'touch', u'alic']
[u'japan', u'confirm', u'human', u'diseas', u'case']
[u'japanes', u'patient', u'test', u'diseas']
[u'judg', u'allow', u'appeal', u'guantanamo']
[u'lake', u'albert', u'fish', u'rescu']
[u'latham', u'turn', u'north', u'south', u'tsunami', u'match']
[u'littl', u'benefit', u'telstra', u'sale', u'foxtel', u'share']
[u'lonard', u'monti', u'share', u'heineken', u'lead']
[u'madrid', u'claim', u'inspect', u'boost']
[u'accus', u'kill', u'endang', u'shark', u'face']
[u'mandela', u'demand', u'freedom', u'slave', u'poverti']
[u'fin', u'sewag', u'dump']
[u'send', u'jail', u'kill']
[u'matur', u'cannabi', u'plant', u'nation', u'park']
[u'mayor', u'seek', u'catchment', u'author', u'levi']
[u'mayor', u'plan', u'china', u'trip', u'baffl']
[u'mckenzi', u'extend', u'waratah', u'contract']
[u'melbourn', u'flight', u'resum']
[u'melbourn', u'lightn', u'delay', u'flight']
[u'miner', u'collaps', u'spark', u'derbi', u'busi', u'fear']
[u'minist', u'defend', u'armi', u'base', u'bottl', u'shop']
[u'minist', u'reject', u'council', u'sack', u'call']
[u'minist', u'decid', u'evan', u'shire', u'asset']
[u'minist', u'green', u'snub']
[u'miss', u'matter', u'question', u'whim']
[u'monti', u'catch', u'royal', u'melbourn']
[u'larcom', u'hear', u'plan', u'huge', u'water', u'rat', u'rise']
[u'irrig', u'suspend', u'peak']
[u'york', u'factori', u'studio', u'close']
[u'rise', u'dairi', u'farmer']
[u'sign', u'miss', u'afghan', u'plane']
[u'riverina', u'farmer', u'share', u'drought']
[u'trial', u'light', u'lismor']
[u'opposit', u'leader', u'step']
[u'nurs', u'stand', u'elect', u'candid']
[u'nurs', u'home', u'resid', u'evacu', u'leak']
[u'olymp', u'contractor', u'fear', u'financi', u'slump']
[u'opposit', u'question', u'judiciari', u'appoint']
[u'opposit', u'urg', u'beatti', u'probe', u'staff', u'transfer']
[u'oversea', u'worker', u'fill', u'farm', u'job']
[u'pakistan', u'want', u'malik', u'clear', u'medic', u'ground']
[u'palm', u'await', u'coron', u'inquest', u'visit']
[u'parmalat', u'report', u'profit', u'hike']
[u'patriot', u'passer', u'brink', u'super', u'bowl', u'histori']
[u'perth', u'investor', u'push', u'properti', u'demand']
[u'pitcairn', u'challeng', u'crime', u'convict']
[u'plan', u'afoot', u'dunnart', u'icon', u'status']
[u'polic', u'consid', u'industri', u'unrest', u'staff', u'drain']
[u'polic', u'fall', u'tree', u'victim']
[u'polic', u'probe', u'girl', u'death', u'childcar', u'centr']
[u'polic', u'crack', u'yobbo']
[u'pope', u'appear', u'mend']
[u'pope', u'improv', u'eat', u'regular', u'vatican']
[u'posti', u'award', u'botch', u'inject']
[u'pottharst', u'consid', u'coach', u'futur']
[u'premier', u'consid', u'paedophil', u'hous', u'issu']
[u'prescript', u'drug', u'error', u'hospitalis', u'thousand']
[u'prison', u'quiz', u'unsolv', u'murder', u'canberra']
[u'prison', u'farm', u'stakehold', u'meet']
[u'propos', u'rape', u'retrial', u'evid', u'chang', u'flaw']
[u'public', u'divid', u'broule', u'pathway', u'plan']
[u'public', u'urg', u'avoid', u'beach', u'downpour']
[u'rain', u'take', u'toll', u'south', u'east', u'grapegrow']
[u'ramsay', u'health', u'buy', u'gippsland', u'age', u'care', u'home']
[u'ranger', u'oper', u'face', u'charg']
[u'robinson', u'guilti', u'fraud']
[u'rescu', u'packag', u'fail', u'stop', u'urologist', u'resign']
[u'retail', u'spend', u'weak', u'surpris', u'economist']
[u'rice', u'blair', u'discuss', u'middl', u'east', u'issu']
[u'road', u'worker', u'wipe', u'rare', u'wildflow']
[u'roar', u'intent', u'leagu', u'success']
[u'robben', u'scare', u'chelsea']
[u'robinson', u'fraud', u'trial', u'juri', u'retir']
[u'robinson', u'trial', u'juri', u'seek', u'redirect']
[u'rumsfeld', u'offer', u'resign', u'ghraib']
[u'rumsfeld', u'prais', u'iraqi', u'secur', u'forc']
[u'school', u'uni', u'rank', u'femal', u'friend', u'stake']
[u'remind', u'public', u'storm', u'plan']
[u'assault', u'task', u'forc', u'tour', u'north']
[u'worker', u'reinstat', u'strike', u'threat']
[u'small', u'tribut', u'pay', u'larger', u'life', u'rocker', u'kiss']
[u'spread', u'candid', u'council', u'spot']
[u'spud', u'attack', u'spark', u'polic', u'warn']
[u'lanka', u'free', u'prison', u'celebr', u'independ']
[u'lankan', u'rebel', u'free', u'child', u'soldier']
[u'stock', u'market', u'end', u'week', u'high']
[u'storm', u'clean', u'cost', u'insur']
[u'studi', u'say', u'blue', u'mountain', u'highway', u'bypass', u'viabl']
[u'studi', u'consid', u'coal', u'seam', u'plan']
[u'surviv', u'rat', u'improv', u'victorian', u'cancer']
[u'sydney', u'water', u'restrict', u'stay']
[u'tasmanian', u'devil', u'move', u'secur', u'area']
[u'tasmanian', u'premier', u'keep', u'royal', u'debat']
[u'storm', u'damag', u'million']
[u'teen', u'court', u'polic', u'pursuit']
[u'telecom', u'profit', u'exceed', u'expect']
[u'tennant', u'creek', u'face', u'long', u'wait', u'dengu']
[u'test', u'time', u'turin', u'year']
[u'lodg', u'hous', u'beazley']
[u'time', u'shift', u'save', u'daylight', u'democrat']
[u'tini', u'anim', u'spi', u'deep', u'trench']
[u'toowoomba', u'discount', u'store', u'lose', u'trade']
[u'treasur', u'back', u'longer', u'trade', u'hour']
[u'uefa', u'want', u'homegrown', u'player', u'quota']
[u'militari', u'open', u'mind', u'alien', u'visit']
[u'union', u'air', u'build', u'site', u'asbesto', u'worri']
[u'union', u'worri', u'colleg', u'bleed', u'exist']
[u'shelter', u'thousand', u'flee', u'congo', u'violenc']
[u'agenc', u'drive', u'publish', u'research', u'onlin']
[u'firm', u'process', u'major', u'bank', u'chequ']
[u'maintain', u'troop', u'number', u'iraq']
[u'releas', u'guantanamo', u'detaine']
[u'halt', u'adopt', u'sniper', u'fundrais']
[u'victorian', u'savag', u'storm']
[u'victorian', u'storm', u'damag', u'tip']
[u'water', u'boost', u'help', u'power', u'station', u'longev']
[u'waterg', u'journalist', u'note', u'public']
[u'woman', u'kill', u'prime', u'mover', u'accid']
[u'worker', u'continu', u'strike', u'dismiss']
[u'worker', u'happi', u'hous']
[u'nurs', u'miss', u'place', u'labor', u'say']
[u'wreck', u'barg', u'hous', u'tsunami', u'memori']
[u'writer', u'reject', u'plagiar', u'claim']
[u'dead', u'iraq', u'violenc']
[u'improv', u'phone']
[u'actor', u'ossi', u'davi', u'die']
[u'albani', u'lobbi', u'iron', u'worker']
[u'alleg', u'bash', u'wit', u'action']
[u'artist', u'chip', u'tsunami', u'relief']
[u'australian', u'baxter', u'detent', u'mental', u'health', u'care']
[u'beatti', u'urg', u'palm', u'calm']
[u'beckenbau', u'call', u'life', u'match', u'fix']
[u'beckham', u'want', u'career', u'real', u'madrid']
[u'behead', u'slow', u'iraqi', u'secur', u'forc', u'build']
[u'bite', u'incid', u'mar', u'seven']
[u'blackburn', u'chelsea', u'charg', u'ewood', u'park', u'brawl']
[u'british', u'newspap', u'group', u'journalist', u'job']
[u'chopper', u'rescu', u'camper', u'strand', u'flood']
[u'concert', u'open', u'sydney', u'mardi', u'gras']
[u'climb', u'langkawi', u'lead']
[u'decis', u'loom', u'gunn', u'pulp']
[u'doctor', u'highlight', u'rural', u'cancer', u'death', u'rate']
[u'rise', u'despit', u'weak', u'job', u'report']
[u'pressur', u'govt', u'assault', u'trial', u'law']
[u'driver', u'govt', u'meet', u'westbus', u'futur']
[u'drought', u'fund', u'decis', u'disappoint', u'farmer']
[u'drug', u'overdos', u'drop']
[u'dyson', u'join', u'royal', u'melbourn', u'lead']
[u'endang', u'cheetah', u'cub', u'debut']
[u'evolutionari', u'biologist', u'ernst', u'mayr', u'die']
[u'gadaffi', u'mix', u'footbal', u'polit', u'australia']
[u'gallop', u'want', u'power', u'imprison', u'paedophil', u'life']
[u'game', u'villag', u'decis', u'anger', u'resid', u'group']
[u'gilchrist', u'throw', u'support', u'dump', u'hayden']
[u'govt', u'look', u'promot', u'sport', u'indigen']
[u'govt', u'make', u'habib', u'terror', u'claim', u'report']
[u'green', u'minist', u'devil', u'list', u'deadlin']
[u'green', u'werriwa', u'candid']
[u'hall', u'chase', u'reveng', u'paralymp', u'defeat']
[u'harri', u'potter', u'battl', u'great', u'internet', u'scam']
[u'hayden', u'vow', u'comeback', u'cost']
[u'chang', u'chuck', u'law']
[u'indonesia', u'deliv', u'food', u'tsunami', u'area']
[u'intern', u'probe', u'clear', u'polic', u'assault', u'claim']
[u'iraq', u'demand', u'justic', u'wake', u'food', u'report']
[u'isra', u'embassi', u'quiet', u'diplomat', u'exit']
[u'itali', u'work', u'secur', u'releas', u'iraq', u'report']
[u'jacko', u'court', u'appear', u'cancel']
[u'kenyan', u'cricket', u'screech', u'halt', u'bank']
[u'labor', u'demand', u'brief', u'diplomat', u'expuls']
[u'latrob', u'ask', u'storm', u'clean', u'assist']
[u'mcgrath', u'stun', u'pakistan']
[u'lennon', u'surpris', u'lack', u'state', u'care', u'abus', u'claim']
[u'charg', u'polic', u'assault']
[u'mandela', u'tell', u'rich', u'nation', u'cancel', u'african', u'debt']
[u'mickelson', u'shoot', u'grab', u'share', u'lead']
[u'minist', u'blame', u'labor', u'campaign', u'drop']
[u'nato', u'suspend', u'search', u'miss', u'afghan', u'airlin']
[u'nigerian', u'upset', u'aussi', u'sprinter']
[u'nigerian', u'upset', u'aussi', u'sprint', u'hop']
[u'japan', u'suicid', u'pact']
[u'iraqi', u'kill', u'attack', u'north', u'baghdad']
[u'survivor', u'afghan', u'plane', u'wreckag']
[u'opposit', u'call', u'court', u'room', u'camera']
[u'opposit', u'prepar', u'replac', u'leader']
[u'ohern', u'surg', u'heineken', u'lead']
[u'opposit', u'seek', u'assault', u'trial', u'law', u'chang']
[u'outrag', u'mount', u'detent', u'centr', u'case']
[u'paedophil', u'make', u'stalk', u'complaint']
[u'pakistan', u'razzaq', u'clear', u'dissent']
[u'polic', u'wit', u'violent', u'disput']
[u'polic', u'concern', u'miss', u'woman']
[u'polic', u'discov', u'marijuana', u'crop', u'near']
[u'pope', u'deliv', u'sunday', u'bless']
[u'power', u'restor', u'enter']
[u'quinlan', u'confid', u'convent', u'centr', u'facelift']
[u'ranger', u'wnbl', u'final']
[u'record', u'number', u'candid', u'enter', u'poll']
[u'redback', u'bite', u'warrior']
[u'rhino', u'hold', u'bulldog']
[u'rhino', u'lead', u'bulldog']
[u'rice', u'press', u'russia', u'iran', u'nuke', u'fuel', u'deal']
[u'rice', u'use', u'europ', u'trip', u'tough', u'iran']
[u'right', u'group', u'seek', u'urgent', u'immigr', u'centr', u'review']
[u'ripper', u'admit', u'power', u'blackout', u'unaccept']
[u'robinson', u'welcom', u'legal', u'cost', u'claim']
[u'search', u'resum', u'miss', u'timber', u'creek']
[u'search', u'resum', u'miss', u'afghan', u'plane']
[u'secur', u'tight', u'lord', u'misrul', u'kick']
[u'shiit', u'coalit', u'maintain', u'lead', u'iraqi']
[u'smith', u'hit', u'maiden', u'south', u'africa']
[u'sport', u'beat', u'prejudic', u'farmer']
[u'springborg', u'pin', u'leadership', u'parti', u'merger']
[u'lanka', u'tsunami', u'survivor', u'protest', u'corrupt']
[u'stanhop', u'order', u'nurs', u'home', u'abus', u'claim', u'probe']
[u'orchard', u'clear', u'citrus', u'canker']
[u'teen', u'fin', u'late', u'night', u'cooki', u'drop']
[u'thailand', u'prepar', u'poll']
[u'thai', u'prime', u'minist', u'tip', u'second', u'term']
[u'tiger', u'blue', u'clash', u'abandon']
[u'time', u'warner', u'profit', u'rise', u'high', u'speed', u'subscrib']
[u'timoshenko', u'confirm', u'ukrain']
[u'toxic', u'detect', u'helen', u'river', u'catchment']
[u'tram', u'accid', u'talk', u'phone', u'polic']
[u'tribut', u'flow', u'german', u'boxer', u'defi', u'hitler']
[u'troop', u'wreckag', u'miss', u'afghan', u'plane']
[u'troop', u'search', u'afghan', u'plane', u'crash', u'site']
[u'trump', u'case', u'cost', u'robinson']
[u'hospitalis', u'wanniassa']
[u'kill', u'adelaid', u'final', u'hop']
[u'union', u'blame', u'hec', u'labor', u'slump']
[u'warn', u'guantanamo', u'worsen', u'terror']
[u'europ', u'fail', u'agre', u'develop']
[u'govt', u'lose', u'tobacco', u'cash']
[u'vanston', u'defend', u'handl', u'detain', u'woman']
[u'water', u'miser', u'tap', u'govt', u'fund']
[u'weather', u'caus', u'havoc', u'farmer']
[u'westbus', u'driver', u'fear', u'job']
[u'worri', u'davenport', u'call', u'shorter', u'season']
[u'yemen', u'court', u'sentenc', u'limburg', u'bomb', u'leader', u'death']
[u'zidan', u'quit']
[u'afghan', u'plane', u'wreckag', u'fear', u'dead']
[u'african', u'leader', u'hold', u'rainforest', u'summit']
[u'african', u'nation', u'protect', u'congo', u'rainforest']
[u'africa', u'longest', u'serv', u'leader', u'die']
[u'age', u'hubbl', u'telescop', u'spark', u'debat']
[u'airport', u'recycl', u'advoc']
[u'star', u'dog', u'darwin']
[u'argentinian', u'player', u'ban', u'bite', u'seven']
[u'athlet', u'chief', u'probe', u'freeman', u'comeback', u'report']
[u'aussi', u'skier', u'make', u'histori', u'japan']
[u'australia', u'victori']
[u'australia', u'wrap', u'seri']
[u'australia', u'wrap', u'seri']
[u'associ', u'dismiss', u'concern', u'princ', u'shooter']
[u'beazley', u'accus', u'liber', u'desert', u'werriwa']
[u'bennif', u'ring', u'resal']
[u'best', u'itali', u'carneval']
[u'blanchett', u'fli', u'award']
[u'bodi', u'victoria', u'river']
[u'brown', u'win', u'langkawi', u'stage']
[u'bureaucraci', u'blossom', u'victoria']
[u'bushrang', u'crush', u'bull']
[u'bushrang', u'face', u'crunch', u'match']
[u'bush', u'tucker', u'group', u'move', u'closer', u'realiti']
[u'cabinet', u'boss', u'visit', u'australian', u'polic']
[u'phone', u'abduct', u'italian']
[u'cambodia', u'govt', u'tri', u'elimin', u'opposit']
[u'captain', u'marvel', u'keep', u'unit', u'titl', u'hunt']
[u'congo', u'call', u'airlift', u'rare', u'white', u'rhino']
[u'cook', u'island', u'evacu', u'super', u'cyclon', u'approach']
[u'cours', u'expand', u'jackaroo', u'jillaroo']
[u'cyclon', u'harvey', u'grow', u'gulf']
[u'davenport', u'sharapova', u'fight', u'final']
[u'deak', u'set', u'australian', u'record']
[u'discharg', u'pose', u'threat', u'govt', u'say']
[u'dozen', u'power', u'storm']
[u'egyptian', u'engin', u'kidnap', u'baghdad']
[u'energex', u'ergon', u'worker', u'meet', u'deal']
[u'environment', u'commission', u'need', u'support']
[u'timor', u'ask', u'germani', u'lobbi', u'canberra', u'deal']
[u'firefight', u'battl', u'blaze', u'ipswich', u'hospit']
[u'firefight', u'contain', u'ipswich', u'hospit', u'blaze']
[u'ghraib', u'guard', u'jail']
[u'premier', u'claim', u'unfair', u'jail']
[u'franc', u'scrape', u'lucki', u'brave', u'scot']
[u'french', u'worker', u'protest', u'labour', u'law']
[u'debt', u'pledg', u'fall', u'short', u'demand']
[u'govt', u'snub', u'anger', u'devil', u'expert']
[u'henson', u'hero', u'wale', u'beat', u'england']
[u'hous', u'bushfir', u'resist']
[u'howard', u'leav', u'door', u'open', u'abort', u'debat']
[u'howard', u'pleas', u'iraq', u'elect']
[u'howard', u'target', u'industri', u'relat']
[u'incat', u'worker', u'walk']
[u'inquiri', u'promis', u'detent', u'centr', u'case']
[u'investig', u'fatal', u'smash']
[u'judah', u'stop', u'spink', u'seiz', u'titl']
[u'juror', u'shouldnt', u'sentenc', u'lawyer', u'say']
[u'labor', u'wari', u'flag', u'workplac', u'chang']
[u'libya', u'snub', u'brisban', u'rock', u'missionari']
[u'lifesav', u'flag', u'fund', u'problem']
[u'local', u'govt', u'lobbi', u'share', u'feder', u'revenu']
[u'lovesick', u'diseas', u'expert', u'say']
[u'luxuri', u'car', u'accid', u'studi']
[u'lyle', u'melbourn']
[u'charg', u'booz', u'incid']
[u'charg', u'cannabi', u'haul']
[u'charg', u'child', u'porn']
[u'mango', u'industri', u'unsustain', u'grower', u'group', u'say']
[u'train']
[u'kill', u'strike', u'train']
[u'mickelson', u'take', u'control', u'phoenix', u'open']
[u'mobil', u'phone', u'group', u'launch', u'anti', u'bulli']
[u'violenc', u'iraq', u'vote', u'count', u'continu']
[u'motorcyclist', u'kill', u'road', u'smash']
[u'secur', u'boost', u'expert', u'say']
[u'namadgi', u'road', u'close', u'year', u'bushfir']
[u'crackdown', u'cannabi', u'grower']
[u'move', u'combat', u'skill', u'worker', u'shortag']
[u'nurs', u'group', u'concern', u'agenc', u'chang']
[u'ohern', u'bullish', u'ahead', u'final', u'round']
[u'opposit', u'allud', u'plan']
[u'paedophil', u'move', u'away', u'school']
[u'pakistan', u'troubl', u'australia']
[u'palestinian', u'detain', u'milit', u'chief', u'gaza']
[u'parri', u'win', u'royal', u'melbourn', u'dogfight']
[u'wont', u'commit', u'canal']
[u'polic', u'launch', u'public', u'hous', u'crackdown']
[u'poll', u'open', u'thailand']
[u'pope', u'deliv', u'bless', u'hospit', u'window']
[u'power', u'firm', u'deni', u'respons', u'blackout']
[u'power', u'restor', u'continu']
[u'random', u'drug', u'test', u'plan', u'school']
[u'rann', u'urg', u'chang', u'prevent', u'detent', u'mistak']
[u'real', u'estat', u'agent', u'fin', u'auction', u'breach']
[u'real', u'hors', u'race']
[u'red', u'romp', u'tah']
[u'rice', u'press', u'russia', u'democrat', u'reform', u'prais']
[u'rice', u'readi', u'middl', u'east', u'tour']
[u'rice', u'scold', u'russia']
[u'secreci', u'blame', u'raus', u'ordeal']
[u'sharapova', u'dash', u'davenport', u'record', u'tokyo']
[u'sixer', u'fight', u'edg', u'taipan']
[u'sudan', u'agre', u'stop', u'antonov', u'flight', u'darfur']
[u'super', u'bowl', u'citi', u'struggl', u'deal', u'invad']
[u'taliban', u'deni', u'shoot', u'afghan', u'plane']
[u'thai', u'leader', u'poll']
[u'thai', u'head', u'landslid', u'victori']
[u'thai', u'poll', u'close', u'tip', u'thaksin']
[u'thaksin', u'claim', u'victori', u'thai', u'poll']
[u'thaksin', u'expect', u'domin', u'thai', u'elect']
[u'tiger', u'croc', u'notch', u'win']
[u'titl', u'race', u'throw', u'wide', u'open', u'juve', u'stumbl']
[u'togo', u'urg', u'elect', u'leader', u'presid']
[u'tsunami', u'death', u'toll', u'rise']
[u'coupl', u'arrest', u'child', u'tortur']
[u'drop', u'charg', u'ghraib', u'accus']
[u'vanston', u'seek', u'brief', u'detent', u'centr', u'case']
[u'weather', u'hamper', u'replica', u'whale', u'boat', u'departur']
[u'young', u'auction', u'talk', u'final']
[u'dead', u'iraq', u'violenc', u'north', u'south']
[u'accus', u'murder', u'threaten', u'kill', u'wit']
[u'aceh', u'relief', u'effort', u'hing', u'open', u'border', u'ausaid']
[u'govt', u'urg', u'reject', u'coron', u'appeal']
[u'adler', u'face', u'crimin', u'case']
[u'administr', u'sell', u'troubl', u'compani']
[u'alcoa', u'continu', u'investig']
[u'anim', u'right', u'campaign', u'target', u'sheep', u'shipment']
[u'arm', u'bosnian', u'lead', u'polic', u'countri']
[u'arrog', u'stall', u'action', u'case']
[u'atletico', u'shock', u'barca', u'throw', u'titl', u'race', u'open']
[u'aussi', u'super', u'bowl', u'come', u'adelaid']
[u'australia', u'welcom', u'farm', u'subsidi', u'cut']
[u'discuss', u'industri', u'relat', u'concern']
[u'ballarat', u'ceremoni', u'honour', u'pow']
[u'barnett', u'defend', u'canal', u'plan']
[u'barnett', u'outlin', u'vision']
[u'bassett', u'basin', u'face', u'green', u'assess']
[u'beatti', u'apologis', u'detain', u'australian']
[u'beatti', u'urg', u'patienc', u'coron', u'probe', u'death']
[u'blue', u'nativ', u'titl', u'claim', u'success']
[u'blue', u'look', u'gun', u'stop', u'bushrang']
[u'bolton', u'socceroo']
[u'boogeyman', u'climb', u'offic']
[u'bookmak', u'inflat', u'odd', u'benefit', u'inquiri']
[u'surviv', u'waterfal', u'mishap']
[u'britain', u'plan', u'chang', u'immigr', u'polici']
[u'british', u'make', u'guantanamo', u'abus', u'claim']
[u'broom', u'park', u'join', u'quoll', u'rescu', u'effort']
[u'brothel', u'madam', u'kalgoorli', u'candid']
[u'brown', u'streak', u'continu', u'tour', u'langkawi']
[u'buchanan', u'call', u'rethink']
[u'bundaberg', u'council', u'refus', u'polic', u'smoke', u'law']
[u'burk', u'return', u'opposit', u'leader']
[u'busker', u'festiv', u'number', u'year']
[u'servic', u'demis', u'end', u'free', u'transport', u'plan']
[u'canal', u'compani', u'assess', u'environment', u'issu']
[u'cancer', u'patient', u'travel', u'review', u'hold']
[u'cane', u'farmer', u'face', u'exit', u'grant', u'difficulti']
[u'carnley', u'maintain', u'women', u'bishop', u'stanc']
[u'catchment', u'author', u'focus', u'wild', u'weather']
[u'centrelink', u'fraud', u'earn', u'woman', u'good', u'behaviour', u'bond']
[u'chelsea', u'lose', u'fourth', u'point', u'citi']
[u'chicken', u'farm', u'bring', u'job', u'wellington']
[u'chines', u'scientist', u'develop', u'bird', u'vaccin']
[u'clean', u'teeth', u'link', u'slender', u'bodi']
[u'comet', u'smart', u'storm', u'thrash']
[u'confus', u'surround', u'spanish', u'consul', u'hostag', u'drama']
[u'cook', u'island', u'escap', u'worst', u'cyclon', u'meena']
[u'cool', u'sven', u'tell', u'rooney']
[u'costello', u'play', u'likelihood', u'cut']
[u'council', u'act', u'backyard', u'burial', u'law']
[u'council', u'highlight', u'water', u'bill', u'mistak']
[u'councillor', u'restrain', u'mayor']
[u'council', u'push', u'higher', u'speed', u'limit']
[u'council', u'consid', u'expo', u'boost', u'bush', u'appeal']
[u'council', u'stand', u'saleyard', u'sale']
[u'council', u'celebr', u'antarct', u'adventur']
[u'council', u'hold', u'meet', u'gordon', u'estat', u'woe']
[u'council', u'warn', u'boat', u'ramp', u'danger']
[u'crespo', u'clincher', u'put', u'heat', u'juve']
[u'cyclon', u'harvey']
[u'dairi', u'farmer', u'feel', u'drought', u'impact']
[u'deadlin', u'loom', u'drought', u'applic']
[u'deadlin', u'pass', u'elect', u'candid']
[u'dentist', u'urg', u'mudge', u'fluorid', u'water']
[u'dept', u'hop', u'fish', u'pest', u'plan', u'good', u'result']
[u'dept', u'rethink', u'south', u'hedland', u'public', u'hous']
[u'doubt', u'remain', u'launceston', u'societi']
[u'eighteen', u'spanish', u'teen', u'poison', u'accid']
[u'engin', u'demand', u'onlin', u'rise']
[u'eriksson', u'call', u'brown', u'england', u'squad']
[u'expert', u'enter', u'wine']
[u'farm', u'group', u'bolster', u'eyr', u'peninsula', u'presenc']
[u'fatah', u'call', u'ceas']
[u'father', u'european', u'space', u'program', u'die', u'age']
[u'feasibl', u'studi', u'hydro', u'power', u'plant']
[u'feder', u'govt', u'drink', u'power', u'beatti', u'say']
[u'truck', u'pizza', u'alarm', u'sound']
[u'longreach', u'court', u'rape', u'charg']
[u'presid', u'pitch', u'tsunami', u'relief']
[u'foster', u'owner', u'cliff', u'ordeal']
[u'gallop', u'launch', u'kimberley', u'cruis', u'ship']
[u'gallop', u'promis', u'comput', u'school']
[u'pipelin', u'potenti', u'strong']
[u'gaudio', u'overcom', u'gonzalez', u'chile', u'final']
[u'german', u'ministeri', u'visit', u'highlight', u'environment']
[u'gibb', u'centuri', u'set', u'target', u'england']
[u'global', u'demand', u'grow', u'indigen']
[u'golf', u'club', u'work', u'attack', u'arm', u'robberi']
[u'govt', u'keep', u'close', u'bali', u'drug', u'trial']
[u'govt', u'reject', u'intens', u'care', u'claim']
[u'govt', u'rule', u'random', u'school', u'drug', u'test']
[u'govt', u'port', u'macquari', u'hospit', u'deal']
[u'govt', u'reveal', u'educ', u'plan']
[u'govt', u'hospit', u'wait', u'list']
[u'govt', u'urg', u'follow', u'water', u'test', u'result']
[u'green', u'highlight', u'albani', u'mine', u'worri']
[u'grower', u'decid', u'citrus', u'canker', u'protest']
[u'gulf', u'coast', u'brace', u'cyclon', u'wind']
[u'habib', u'charg']
[u'hayden', u'kasper', u'turn', u'bull']
[u'health', u'dept', u'help', u'seek', u'hospit', u'nurs']
[u'health', u'scare', u'close', u'berri', u'pool']
[u'henri', u'walker', u'eltin', u'chairman', u'die', u'crash']
[u'high', u'tide', u'warn', u'harvey', u'near', u'northern', u'coast']
[u'histor', u'hospit', u'build', u'destroy']
[u'home', u'cigar', u'tell', u'smoker', u'butt']
[u'hull', u'seek', u'simpler', u'drought', u'review', u'process']
[u'icebreak', u'return', u'fail', u'resuppli', u'mission']
[u'indonesia', u'commit', u'account', u'tsunami']
[u'indonesian', u'worker', u'fin', u'talk', u'proper']
[u'inquest', u'look', u'gambier', u'asthma', u'death']
[u'rat', u'hing', u'law', u'costello']
[u'iran', u'reject', u'critic']
[u'iran', u'stand', u'firm', u'atom', u'program']
[u'iraqi', u'shia', u'leader', u'demand', u'sharia']
[u'hear', u'ambul', u'staff', u'issu']
[u'job', u'drop']
[u'kersten', u'claim', u'time', u'trial', u'victori']
[u'kersten', u'mear', u'claim', u'time', u'trial', u'victori']
[u'king', u'offer', u'nepales', u'rebel', u'uncondit', u'talk']
[u'knee', u'injuri', u'sidelin', u'eagl', u'rooki']
[u'labor', u'seek', u'judici', u'inquiri', u'case']
[u'laverton', u'pleas', u'prison', u'camp', u'approv']
[u'target', u'test', u'return']
[u'liverpool', u'rais', u'stake', u'gerrard']
[u'local', u'contractor', u'miss', u'school', u'revamp']
[u'lyle', u'gun', u'confirm', u'adelaid']
[u'macarthur', u'close', u'round', u'world', u'record']
[u'maliss', u'captur', u'elus', u'titl']
[u'charg', u'weapon', u'stash']
[u'fin', u'illeg', u'spud']
[u'man', u'bodi', u'recov', u'swell', u'river']
[u'face', u'charg', u'brawl']
[u'mcgauran', u'offic', u'ballarat']
[u'meet', u'focus', u'coast', u'transport']
[u'meet', u'focus', u'workplac', u'safeti', u'legisl']
[u'melbourn', u'storm', u'bring', u'comet']
[u'menz', u'return', u'galleri']
[u'mickelson', u'cruis', u'phoenix']
[u'mine', u'boost', u'geraldton', u'port', u'author']
[u'minist', u'ask', u'hospit', u'woe']
[u'minist', u'flag', u'move', u'standard', u'year', u'test']
[u'mourinho', u'pour', u'scorn', u'cole', u'inquiri']
[u'circul', u'abort', u'propos']
[u'look', u'expand', u'busi']
[u'nelson', u'accus', u'bulli', u'year', u'plan']
[u'nelson', u'educ', u'plan', u'unwork', u'say', u'labor']
[u'breed', u'crimin', u'spark', u'polic', u'review']
[u'nimmitabel', u'boost', u'visitor', u'number']
[u'sight', u'dairi', u'industri', u'woe']
[u'consid', u'challeng', u'govt', u'plan']
[u'ohern', u'look', u'europ', u'heartbreak', u'loss']
[u'orang', u'resign', u'amidst', u'corrupt', u'claim']
[u'peopl', u'face', u'drug', u'charg']
[u'pakistan', u'call', u'neutral', u'umpir']
[u'pastor', u'colleg', u'beat']
[u'patriot', u'titl', u'year']
[u'piallamor', u'subdivis', u'plan', u'draw', u'opposit']
[u'plan', u'continu', u'tarana', u'valley', u'natur', u'reserv']
[u'refus', u'apologis']
[u'polic', u'investig', u'break', u'habib', u'home']
[u'polic', u'probe', u'nightclub', u'slash']
[u'polic', u'probe', u'darl', u'down', u'crash']
[u'polic', u'unhappi', u'weekend', u'troublemak']
[u'polic', u'wait', u'question', u'road', u'racer']
[u'pope', u'improv', u'suffer', u'doctor']
[u'pope', u'hospit', u'stay', u'extend']
[u'prawn', u'fisher', u'beat', u'season']
[u'presid', u'order', u'probe', u'lanka', u'tsunami']
[u'priest', u'shortag', u'forc', u'merger', u'cathol', u'parish']
[u'probe', u'killer', u'violent', u'pic']
[u'psych', u'drug', u'trick', u'rat', u'cocain', u'addict']
[u'public', u'urg', u'flood', u'readi']
[u'public', u'urg', u'evid', u'race', u'inquiri']
[u'public', u'warn', u'penalti', u'break', u'ban']
[u'examin', u'challeng', u'feder', u'plan']
[u'find', u'nelson', u'year', u'plan', u'outdat']
[u'rann', u'bow', u'pressur', u'land']
[u'rat', u'rise', u'like', u'warn']
[u'case', u'highlight', u'neglect', u'mental', u'health']
[u'inquiri', u'public', u'labor']
[u'resid', u'batten', u'cyclon', u'harvey', u'approach']
[u'rice', u'begin', u'middl', u'east', u'peac', u'mission']
[u'rice', u'label', u'iran', u'obstacl', u'middl', u'east', u'peac']
[u'rice', u'meet', u'palestinian', u'leader']
[u'rice', u'urg', u'hard', u'decis', u'east', u'peac']
[u'roger', u'say', u'perth', u'interest', u'leagu']
[u'rural', u'resid', u'like', u'cervic']
[u'local', u'govt', u'group', u'seek', u'toxic', u'dump', u'talk']
[u'search', u'continu', u'riverina', u'bishop']
[u'seven', u'candid', u'nomin', u'geraldton']
[u'shark', u'sight', u'spark', u'swimmer', u'evacu']
[u'signal', u'boost', u'give', u'radio', u'station', u'edg']
[u'nation', u'grab', u'tens', u'open']
[u'south', u'east', u'jail', u'futur', u'undecid']
[u'spain', u'offer', u'illeg', u'migrant', u'amnesti']
[u'spanish', u'consul', u'surround', u'amid', u'sieg', u'fear']
[u'state', u'base', u'flexibl', u'opposit', u'say']
[u'sign', u'miss', u'uralla']
[u'strong', u'support', u'alcohol', u'manag', u'plan']
[u'superbowl', u'molecul', u'offer', u'size', u'advantag']
[u'surf', u'club', u'seek', u'fund', u'lifelin']
[u'swim', u'australia', u'reinstat', u'team', u'captain', u'role']
[u'teacher', u'mark', u'nelson', u'test', u'plan']
[u'telstra', u'news', u'corp', u'buoy', u'ord']
[u'tendulkar', u'sidelin', u'india', u'tune', u'pakistan']
[u'injur', u'drag', u'race', u'crash']
[u'thai', u'opposit', u'leader', u'resign']
[u'thirteen', u'kill', u'injur', u'pakistan', u'kite']
[u'thorp', u'hype', u'olymp', u'super', u'bowl']
[u'star', u'celt', u'doubl', u'dream', u'aliv']
[u'timor', u'bishop', u'oppos', u'crime', u'deal']
[u'transport', u'plan', u'aim', u'drunken', u'crime']
[u'troop', u'reach', u'afghan', u'plane', u'crash', u'site']
[u'tsunami', u'unlik', u'affect', u'econom', u'growth']
[u'tweed', u'turtl', u'sight', u'rise']
[u'pledg', u'debt', u'relief', u'countri']
[u'union', u'meet', u'bundaberg', u'sugar', u'closur']
[u'union', u'busi', u'odd', u'plan']
[u'union', u'want', u'asbesto', u'clear', u'build', u'site']
[u'pledg', u'palestinian']
[u'tycoon', u'unit', u'takeov']
[u'valuabl', u'parrot', u'target', u'theft']
[u'vatican', u'deni', u'pope', u'messag', u'record']
[u'victoria', u'brace', u'sever', u'wind']
[u'victoria', u'see', u'need', u'nelson', u'year', u'chang']
[u'govt', u'oppos', u'nelson', u'year', u'plan']
[u'govt', u'signal', u'opposit', u'plan']
[u'warn', u'deni', u'cricket', u'tire']
[u'whitlam', u'offer', u'condit', u'support', u'reform']
[u'wind', u'blow', u'slick', u'egyptian', u'coast']
[u'wit', u'sexual', u'assault', u'seek']
[u'wodonga', u'develop', u'boom', u'loom']
[u'woman', u'surviv', u'train', u'ordeal']
[u'york', u'return', u'intern', u'action']
[u'zarqawi', u'claim', u'dead', u'suicid', u'blast']
[u'garden', u'lure', u'tourist']
[u'kill', u'sayyaf', u'base', u'philippin']
[u'abattoir', u'recruit', u'reopen']
[u'accc', u'press', u'educ', u'compani']
[u'appoint', u'small', u'busi', u'commission']
[u'teacher', u'littl', u'support', u'year', u'plan']
[u'agassi', u'davi', u'return']
[u'agreement', u'reach', u'council', u'wage', u'talk']
[u'ord', u'dip', u'record', u'end']
[u'candid', u'upset', u'green', u'prefer']
[u'reject', u'costello', u'rat', u'claim']
[u'archaeolog', u'survey', u'preserv', u'jetti', u'sit']
[u'armi', u'investig', u'websit', u'link']
[u'clear', u'mitchel', u'perth']
[u'backpack', u'group', u'consid', u'coff', u'branch']
[u'barnett', u'deni', u'canal', u'cost']
[u'barnett', u'cost', u'cut', u'plan', u'risk', u'servic', u'gallop', u'say']
[u'barnett', u'trump', u'govern', u'tourism', u'pledg']
[u'beazley', u'demand', u'govt', u'apologis']
[u'bellami', u'name', u'countri', u'coach']
[u'betsen', u'twickenham', u'place', u'hang', u'disciplinari']
[u'bet', u'agenc', u'moot', u'australia', u'wide', u'bookmak']
[u'blair', u'brand', u'iran', u'sponsor', u'terror']
[u'blair', u'tour', u'benefit', u'promot', u'chariti']
[u'brogden', u'step', u'scrutini', u'mental', u'health', u'servic']
[u'bush', u'deliv', u'lean', u'budget']
[u'bush', u'seek', u'cash', u'bunker', u'buster', u'nuke']
[u'busi', u'survey', u'declin', u'surpris', u'economist']
[u'busi', u'upbeat', u'despit', u'inflat', u'worri']
[u'cahil', u'miss', u'durban', u'friend']
[u'camera', u'dysart', u'crime']
[u'canal', u'debat', u'prompt', u'water', u'audit']
[u'canal', u'plan', u'fantast', u'aborigin']
[u'cancer', u'council', u'clear', u'parent', u'smoke']
[u'carr', u'reject', u'hospit', u'comparison']
[u'cattlemen', u'forese', u'strong', u'demand']
[u'chemic', u'spill', u'forc', u'council', u'evacu']
[u'china', u'plan', u'pebbl', u'nuclear', u'reactor', u'report']
[u'china', u'welcom', u'year', u'rooster']
[u'citrus', u'grower', u'continu', u'tree', u'remov']
[u'citi', u'walk', u'upgrad', u'begin']
[u'communiti', u'rais', u'fund', u'poverti', u'stricken']
[u'communiti', u'group', u'attack', u'council', u'solicitor', u'gag']
[u'cook', u'island', u'tourism', u'sit', u'spar', u'cyclon', u'near']
[u'coron', u'rule', u'locat', u'death']
[u'council', u'approv', u'pambulong', u'forest', u'hous', u'estat']
[u'council', u'back', u'hold', u'peak', u'water']
[u'councillor', u'threaten', u'quit', u'meet', u'standard']
[u'council', u'rule', u'free', u'trial']
[u'council', u'reject', u'phone', u'tower', u'site']
[u'council', u'consid', u'free', u'pool', u'access']
[u'countri', u'music', u'impresario', u'merl', u'kilgor', u'die']
[u'court', u'hear', u'coron', u'field', u'trip', u'indic', u'bias']
[u'crime', u'drop', u'wellington', u'gippsland', u'polic']
[u'crisi', u'hous', u'servic', u'face', u'grow', u'demand']
[u'deadlin', u'loom', u'jail', u'tender']
[u'detent', u'centr', u'inquiri', u'open', u'refuge', u'group']
[u'detent', u'centr', u'privat', u'inquiri', u'condemn']
[u'devil', u'transfer', u'threaten', u'island', u'anim']
[u'disabl', u'servic', u'launch', u'industri', u'action']
[u'dongara', u'face', u'water', u'power', u'woe']
[u'drink', u'drive', u'blitz', u'find', u'women', u'worst', u'offend']
[u'driver', u'flip', u'roof']
[u'dubbo', u'council', u'urg', u'hire', u'aborigin', u'liaison']
[u'egypt', u'clean', u'tanker', u'crash', u'slick']
[u'egyptian', u'twin', u'skull', u'surgeri']
[u'energi', u'worker', u'seek', u'pariti', u'contract', u'talk']
[u'cyclon', u'impact', u'central', u'unclear']
[u'fall', u'gold', u'price', u'put', u'expans', u'plan', u'hold']
[u'farmer', u'group', u'back', u'subsidi']
[u'farmer', u'lung', u'punctur', u'accid']
[u'farm', u'group', u'back', u'subsidi', u'plan']
[u'fiji', u'govt', u'sell', u'share', u'local', u'daili']
[u'firefight', u'stop', u'hillston', u'blaze', u'spread']
[u'fisher', u'lake', u'wetherel', u'clear']
[u'fli', u'kangaroo', u'keep', u'european']
[u'polic', u'chief', u'head', u'inquiri']
[u'priest', u'convict', u'child', u'rape']
[u'foster', u'half', u'year', u'profit', u'slight']
[u'year', u'borrow', u'mum', u'rent', u'video', u'game']
[u'gallop', u'offer', u'better', u'region', u'cancer', u'patient', u'care']
[u'gangland', u'trial', u'wit', u'admit', u'hitman', u'experi']
[u'generos', u'recognis', u'tsunami', u'condol', u'motion']
[u'global', u'warm', u'ignor']
[u'gold', u'plan', u'promis', u'coolgardi', u'boost']
[u'govt', u'announc', u'tafe', u'boost']
[u'govt', u'rule', u'privatis', u'public', u'hospit']
[u'govt', u'urg', u'address', u'gippsland', u'unemploy', u'rate']
[u'govt', u'urg', u'reopen', u'council', u'probe']
[u'govt', u'urg', u'start', u'alstonvill', u'bypass']
[u'granni', u'plead', u'guilti', u'polic', u'pursuit']
[u'green', u'group', u'want', u'power', u'boat']
[u'gulf', u'communiti', u'avoid', u'cyclon', u'damag']
[u'owner', u'jail', u'steroid', u'import']
[u'henri', u'walker', u'eltin', u'chief', u'quit', u'troubl', u'firm']
[u'patient', u'plead', u'guilti', u'unprotect']
[u'hormon', u'combat', u'life', u'depress', u'studi', u'find']
[u'hospit', u'reject', u'patient', u'care', u'claim']
[u'human', u'right', u'group', u'monitor', u'palm', u'inquest']
[u'hundr', u'ralli', u'support', u'bushfir', u'coron']
[u'hussey', u'lead', u'warrior', u'bull']
[u'independ', u'issu', u'prefer', u'deal', u'warn']
[u'injuri', u'reliev', u'pressur', u'lehmann']
[u'injuri', u'worri', u'pile', u'sven']
[u'insur', u'uncertainti', u'cloud', u'riverwatch', u'patrol']
[u'iraq', u'captor', u'releas', u'egyptian', u'engin']
[u'iraq', u'group', u'releas', u'italian', u'websit']
[u'iron', u'sale']
[u'isol', u'cattl', u'station', u'use', u'internet', u'contact']
[u'jackson', u'trial', u'delay', u'week']
[u'join', u'oasi', u'tour']
[u'labor', u'reject', u'costello', u'rat', u'link']
[u'land', u'cut', u'disappear', u'properti', u'price']
[u'liber', u'plan', u'bendigo', u'assault']
[u'long', u'film', u'clear', u'misconcept']
[u'macarthur', u'break', u'solo', u'round', u'world', u'record']
[u'macarthur', u'sail', u'histori']
[u'macarthur', u'sail', u'record', u'book']
[u'macarthur', u'stay', u'cours', u'round', u'world']
[u'decapit', u'industri', u'accid']
[u'plead', u'guilti', u'give', u'teen', u'cannabi']
[u'tie', u'home', u'invas']
[u'maryborough', u'youth', u'crisi', u'accommod']
[u'medic', u'student', u'bush']
[u'medicin', u'polici', u'shift', u'reneg', u'elect', u'promis']
[u'meet', u'focus', u'kangaroo', u'flat', u'crime']
[u'meet', u'target', u'transport', u'job', u'prioriti']
[u'mehrten', u'hoeft', u'join', u'umaga', u'tsunami', u'chariti']
[u'mildura', u'jail', u'strangl', u'wife']
[u'miner', u'union', u'beat', u'despit', u'whyalla', u'fear']
[u'mine', u'merger', u'give', u'approv']
[u'minist', u'blame', u'vegetarian', u'anti', u'live', u'export']
[u'miss', u'toddler', u'return', u'mother']
[u'mitsubishi', u'motor', u'report', u'massiv', u'loss']
[u'molik', u'head', u'europ', u'overcom']
[u'doesnt', u'support', u'abort', u'debat']
[u'question', u'costello', u'xstrata']
[u'music', u'giant', u'slash', u'year', u'outlook']
[u'nation', u'heat', u'school', u'condit', u'debat']
[u'nelson', u'educ', u'plan', u'late', u'night', u'muse']
[u'guid', u'detail', u'indigen', u'tourism', u'experi']
[u'reason', u'habib', u'sell', u'stori', u'beazley']
[u'parliament', u'hold', u'sit']
[u'nurs', u'candid', u'question', u'union']
[u'omeley', u'confid', u'injuri', u'return']
[u'opposit', u'put', u'govt', u'notic', u'rat']
[u'paedophil', u'choos', u'treatment', u'jail']
[u'palm', u'island', u'host', u'death', u'custodi', u'inquest']
[u'paper', u'highlight', u'indigen', u'hous', u'fund', u'shortfal']
[u'parti', u'urg', u'clarifi', u'cotton', u'canal', u'link']
[u'pinochet', u'offer', u'million', u'tax']
[u'piquet', u'junior', u'test']
[u'pittman', u'readi', u'track', u'return']
[u'pittman', u'undecid', u'commonwealth', u'game', u'program']
[u'playstat', u'demonstr', u'concern', u'high', u'court']
[u'prais', u'australia', u'tsunami', u'respons']
[u'polic', u'charg', u'attack']
[u'polic', u'chief', u'ponder', u'revamp', u'station']
[u'polic', u'deni', u'releas', u'habib', u'address']
[u'polic', u'steal', u'yacht', u'dinghi']
[u'polic', u'evid', u'cell', u'death', u'inquiri']
[u'polic', u'monitor', u'flood', u'harvey', u'dissip']
[u'polic', u'driver', u'licenc']
[u'polic', u'plea', u'clue', u'wodonga', u'babi', u'death']
[u'polic', u'prepar', u'snow', u'season', u'strategi']
[u'polic', u'probe', u'huge', u'motorcycl', u'heist']
[u'polic', u'quiet', u'result', u'magistr', u'complaint']
[u'pont', u'tiger']
[u'port', u'author', u'sue', u'commonwealth', u'wwii', u'bomb']
[u'port', u'author', u'dredg', u'monitor']
[u'power', u'boat', u'churn', u'murray', u'river', u'eros', u'angst']
[u'plate', u'driver', u'charg', u'hit', u'policeman']
[u'pressur', u'mount', u'costello', u'oppos', u'xstrata']
[u'princip', u'defend', u'video', u'monitor', u'teacher']
[u'prosecutor', u'seek', u'year', u'jail', u'bashir']
[u'protest', u'delay', u'live', u'sheep', u'export']
[u'quak', u'shake', u'coast']
[u'question', u'mark', u'second', u'davi', u'place']
[u'question', u'rais', u'doctor', u'accredit']
[u'rain', u'lengthen', u'bushfir', u'season']
[u'rain', u'put', u'dampen', u'shoot', u'hollywood', u'film']
[u'rate', u'rise', u'squeez', u'hous', u'market']
[u'famili', u'open', u'inquiri']
[u'real', u'estat', u'institut', u'investig', u'claim']
[u'record', u'power', u'usag', u'swelter']
[u'resid', u'ask', u'prevent', u'fruit', u'spread']
[u'rise', u'hous', u'price', u'leav', u'famili', u'homeless']
[u'rocki', u'trial', u'nightclub', u'lockout', u'plan']
[u'promot', u'contain', u'deposit', u'law']
[u'schoolgirl', u'assault', u'rescu', u'young', u'child']
[u'secur', u'guard', u'tri', u'murder', u'charg']
[u'seven', u'dead', u'sin', u'fall', u'time']
[u'singapor', u'eye', u'open', u'sky', u'deal']
[u'sleep', u'hormon', u'affect', u'organ']
[u'smelter', u'demolit', u'soon']
[u'solar', u'power', u'park', u'meter', u'driver']
[u'spain', u'mourn', u'leak', u'victim']
[u'special', u'school', u'upset', u'fund', u'formula']
[u'state', u'ask', u'nation', u'miss', u'person']
[u'sting', u'think', u'global', u'perform', u'local', u'tsunami']
[u'strike', u'avert', u'burnett', u'river']
[u'studi', u'link', u'autism', u'mother', u'ill']
[u'studi', u'seek', u'young', u'peopl', u'whove', u'return', u'bush']
[u'stuntman', u'say', u'actor', u'robert', u'blake', u'want', u'wife', u'dead']
[u'suicid', u'bomb', u'blast', u'kill', u'baghdad']
[u'sydney', u'rule', u'cost', u'busi', u'centr', u'survey']
[u'symond', u'leav', u'space', u'lehmann']
[u'tafe', u'beat', u'xstrata', u'apprenticeship', u'scheme']
[u'talk', u'speed', u'timor', u'trial', u'process']
[u'teen', u'hit', u'right', u'note', u'roman', u'opera']
[u'teacher', u'escap', u'jail', u'cash', u'grade', u'case']
[u'technic', u'colleg', u'consult', u'success']
[u'thief', u'jail', u'steal', u'griev', u'widow']
[u'togo', u'presid', u'swear', u'amid', u'critic']
[u'toowoomba', u'draw', u'parallel', u'women']
[u'townsvill', u'see', u'benefit', u'ocean', u'cruis', u'ship']
[u'truce', u'hop', u'high', u'middl', u'east', u'peac', u'summit']
[u'turnbul', u'break', u'rank', u'apolog']
[u'twin', u'bear', u'month', u'apart']
[u'union', u'label', u'forestrysa', u'corrupt']
[u'union', u'prais', u'teacher', u'distanc', u'educ']
[u'union', u'fear', u'retrench', u'walter', u'worker']
[u'union', u'seek', u'worker', u'entitl', u'assur']
[u'union', u'surpris', u'barnett', u'public', u'sector', u'audit']
[u'unit', u'docker', u'determin', u'play', u'final', u'footi']
[u'suspend', u'head', u'food', u'program']
[u'keeper', u'friedel', u'announc', u'intern']
[u'tri', u'iraq', u'prison', u'mudwrestl', u'parti', u'goer']
[u'polic', u'launch', u'murder', u'investig']
[u'seek', u'road', u'fund', u'build', u'code', u'turnaround']
[u'wall', u'street', u'lack', u'direct']
[u'walter', u'administr', u'meet', u'creditor']
[u'walter', u'group', u'collaps', u'cost', u'job']
[u'parti', u'stamp', u'duti']
[u'warratah', u'airlin', u'hold']
[u'werriwa', u'elect', u'date', u'announc']
[u'william', u'murder', u'plot', u'wit', u'turn', u'inform']
[u'wit', u'evid', u'longreach', u'rape', u'case']
[u'wollongong', u'record', u'legionnair', u'case']
[u'woomera', u'detaine', u'escap', u'convict']
[u'work', u'visa', u'chang', u'immigr', u'overhaul']
[u'work', u'begin', u'charlevill', u'meatwork']
[u'work', u'scheme', u'help', u'drought', u'farmer']
[u'kill', u'truck', u'slam', u'crowd', u'angola']
[u'abort', u'debat', u'provok', u'educ', u'question']
[u'accus', u'speedster', u'face', u'court']
[u'adelaid', u'schedul', u'chariti']
[u'black', u'engulf', u'drink', u'cultur']
[u'audit', u'enhanc', u'visitor', u'experi']
[u'tour', u'toughen', u'pakistan']
[u'australasian', u'tour']
[u'babi', u'undergo', u'crucial', u'test']
[u'bat', u'edg', u'athen', u'champ', u'pursuit', u'victori']
[u'bat', u'edg', u'athen', u'champ', u'pursuit', u'victori']
[u'beazley', u'attack', u'elect', u'region', u'grant']
[u'bega', u'council', u'wont', u'oppos', u'land', u'claim']
[u'bega', u'lift', u'water', u'ban']
[u'biggenden', u'farmer', u'recov', u'stick', u'mishap']
[u'blair', u'hope', u'back', u'climat', u'chang']
[u'bodi', u'australian', u'kill', u'iraq', u'return']
[u'book', u'australian', u'architect', u'honour']
[u'bowden', u'deni', u'overaw', u'aussi']
[u'brack', u'say', u'foster', u'care', u'boy', u'assault', u'disturb']
[u'brickwork', u'owner', u'reject', u'union', u'attack']
[u'britain', u'welcom', u'dame', u'ellen', u'home']
[u'brumbi', u'wari', u'hungri', u'challeng', u'say', u'mortlock']
[u'bushfir', u'studi', u'prove', u'lifesav']
[u'bushfir', u'victim', u'face', u'slug']
[u'bushfir', u'victim', u'face', u'bill', u'emerg']
[u'go', u'studi', u'lake', u'yabbi', u'impact']
[u'carr', u'baulk', u'apec', u'secur', u'cost']
[u'carr', u'open', u'lithgow', u'librari']
[u'cassel', u'bushrang']
[u'fail', u'halt', u'market', u'fall']
[u'ceas', u'bring', u'isra', u'palestinian', u'closer']
[u'children', u'hospitalis', u'diseas', u'outbreak']
[u'china', u'see', u'signific', u'rise', u'execut']
[u'chines', u'welcom', u'lunar', u'year']
[u'chopper', u'pilot', u'take', u'home', u'deliveri', u'height']
[u'coalit', u'highlight', u'region', u'power', u'woe']
[u'commonwealth', u'bank', u'reveal', u'profit']
[u'communiti', u'help', u'polic', u'goonellabah', u'crime']
[u'confer', u'focus', u'remot', u'issu']
[u'consum', u'confid', u'remain', u'posit']
[u'corridor', u'dust', u'rais', u'health', u'fear']
[u'councillor', u'anna', u'hous', u'plan']
[u'councillor', u'defend', u'depart']
[u'councillor', u'seek', u'kirra', u'hill', u'consult']
[u'council', u'eas', u'mackay', u'water', u'ban']
[u'council', u'minist', u'odd', u'flag', u'controversi']
[u'council', u'need', u'fund', u'legal', u'fee']
[u'council', u'probe', u'attack', u'sheep']
[u'council', u'consid', u'conserv', u'base', u'rat']
[u'council', u'sell', u'fletcher', u'jone', u'site']
[u'crash', u'chook', u'ruffl', u'resid', u'feather']
[u'crash', u'spark', u'snowi', u'mountain', u'highway', u'safeti', u'boost']
[u'critic', u'intensifi', u'liber', u'canal', u'propos']
[u'dairi', u'union', u'meet', u'enterpris', u'agreement']
[u'debat', u'continu', u'memori', u'wall', u'site']
[u'derbi', u'gain', u'revitalis', u'boost']
[u'devil', u'survivor', u'research']
[u'doctor', u'boost', u'aim', u'surgeri', u'wait', u'list']
[u'doctor', u'give', u'evid', u'footbal', u'carniv', u'rape']
[u'doctor', u'hail', u'fund', u'boost', u'rural', u'cancer']
[u'dolli', u'creator', u'grant', u'human', u'clone', u'licenc']
[u'dominikov', u'india']
[u'dubbo', u'council', u'approv', u'aborigin', u'liaison', u'offic']
[u'emerg', u'staff', u'temperatur', u'hot']
[u'emerton', u'agostino', u'spearhead', u'socceroo']
[u'employ', u'angri', u'govt', u'long', u'servic', u'leav', u'plan']
[u'england', u'hit', u'rugbi']
[u'expert', u'help', u'beef', u'livestock', u'diseas', u'manag']
[u'famili', u'earli', u'bonus']
[u'farina', u'expect', u'strong', u'south', u'africa']
[u'farina', u'stay', u'posit', u'amid', u'familiar', u'injuri', u'woe']
[u'farmer', u'meet', u'sheep', u'profit']
[u'father', u'jail', u'drug', u'offenc']
[u'fear', u'medicin', u'hurt', u'toogoolawah', u'age', u'care']
[u'govt', u'deni', u'mislead', u'road', u'fund']
[u'disrupt', u'chines', u'year', u'celebr']
[u'fletcher', u'interest', u'south', u'african']
[u'foreign', u'fish', u'boat', u'cape', u'york']
[u'foreign', u'minist', u'elect', u'presid', u'greec']
[u'harri', u'scarf', u'chief', u'admin', u'offic', u'go']
[u'fund', u'boost', u'riverland', u'age', u'care']
[u'gallop', u'promis', u'renew', u'power', u'boost']
[u'gibbon', u'renew', u'calder', u'fund', u'critic']
[u'goorjian', u'eye']
[u'govt', u'call', u'nation', u'child', u'care', u'regul']
[u'govt', u'defend', u'remot', u'high', u'school', u'effort']
[u'govt', u'deni', u'fund', u'shortfal', u'palliat', u'care']
[u'govt', u'dismiss', u'public', u'sector', u'fraud', u'claim']
[u'govt', u'insur', u'public', u'servant', u'court']
[u'govt', u'make', u'splash', u'pool', u'fund']
[u'govt', u'call', u'releas', u'asylum', u'seeker']
[u'govt', u'studi', u'assess', u'telstra', u'privatis']
[u'govt', u'strap', u'seatbelt', u'law']
[u'govt', u'privat', u'inquiri']
[u'govt', u'urg', u'guarante', u'walter', u'worker', u'entitl']
[u'govt', u'urg', u'recognis', u'kiss']
[u'green', u'rais', u'wast', u'plant', u'expans', u'fear']
[u'grower', u'welcom', u'canker', u'loan', u'offer']
[u'gungahlin', u'drive', u'extens', u'return', u'court']
[u'hawk', u'reject', u'costello', u'industri', u'relat', u'claim']
[u'hick', u'sack', u'australian', u'lawyer']
[u'highway', u'reopen', u'fatal', u'crash']
[u'histor', u'cottag', u'restor']
[u'hobart', u'offic', u'space', u'vacanc', u'hit', u'year']
[u'howard', u'welcom', u'middl', u'east', u'ceas']
[u'knight', u'life', u'buderus']
[u'india', u'bow', u'anim', u'right', u'group', u'eleph']
[u'indonesian', u'pair', u'face', u'illeg', u'fish', u'charg']
[u'indonesian', u'tsunami', u'dead', u'miss']
[u'iraqi', u'journalist', u'fund', u'network', u'kill']
[u'israel', u'palestinian', u'declar', u'violenc']
[u'israel', u'plan', u'releas', u'palestinian', u'prison']
[u'labor', u'claim', u'govt', u'break', u'childcar', u'rebat', u'promis']
[u'labor', u'question', u'protect', u'abandon', u'embassi']
[u'labor', u'worri', u'onlin', u'medic', u'degre']
[u'leader', u'hope', u'middl', u'east', u'peac']
[u'tide', u'spark', u'tsunami', u'panic']
[u'madrid', u'bomb', u'blast', u'injur']
[u'charg', u'involv', u'omagh', u'explos']
[u'charg', u'premier', u'yacht', u'theft']
[u'die', u'farm', u'machineri', u'mishap']
[u'jail', u'stab', u'partner']
[u'stab', u'death', u'sydney']
[u'face', u'court', u'samurai', u'sword', u'attack']
[u'mayor', u'bridg', u'plan', u'draw', u'littl', u'support']
[u'mayor', u'talk', u'bypass', u'benefit']
[u'minist', u'apologis', u'vegetarian', u'follow']
[u'minist', u'reject', u'fund', u'rort', u'claim']
[u'minist', u'stay', u'portland', u'hospit', u'woe']
[u'minist', u'urg', u'council', u'rethink']
[u'moomba', u'gear', u'celebr', u'birthday']
[u'mourner', u'respect', u'fall', u'airmen']
[u'moya', u'down', u'luczak']
[u'accus', u'child', u'support', u'agenc', u'anti', u'male', u'bias']
[u'call', u'program', u'reduc', u'abort']
[u'seek', u'nimbin', u'polic', u'boost']
[u'support', u'anim', u'cruelti', u'task', u'forc']
[u'nation', u'archiv', u'make', u'migrat', u'record', u'avail']
[u'natur', u'pipelin', u'extens', u'doubt', u'labor']
[u'apprentic', u'start', u'ergon']
[u'lameroo', u'nurs', u'quit']
[u'owner', u'detail', u'plan']
[u'plan', u'scrap', u'select', u'polici', u'hohn']
[u'north', u'coast', u'face', u'age', u'plan', u'challeng']
[u'north', u'mackay', u'play', u'gabba', u'clash']
[u'polic', u'fear', u'miss', u'tourist']
[u'oberon', u'want', u'brake', u'drag', u'race']
[u'odriscol', u'darci', u'ireland', u'scotland']
[u'olymp', u'drug', u'hungrier', u'eadi']
[u'opposit', u'give', u'govt', u'poor', u'report', u'card']
[u'opposit', u'hit', u'rail', u'claim']
[u'opposit', u'promis', u'close', u'luxuri', u'style', u'women']
[u'opposit', u'put', u'waterfront', u'develop']
[u'opposit', u'say', u'maggot', u'case', u'show', u'disabl']
[u'outcast', u'star', u'escap', u'milki', u'galaxi']
[u'parent', u'worker', u'attend', u'asbesto', u'forum']
[u'parti', u'focus', u'health', u'campaign', u'hit', u'halfway']
[u'partner', u'question', u'woman', u'disappear']
[u'plan', u'fuel', u'emerg', u'prompt', u'investig']
[u'say', u'water', u'canal', u'bold', u'idea']
[u'support', u'improv', u'educ', u'reduc']
[u'offic', u'clear', u'illeg', u'gambl', u'charg']
[u'policeman', u'releas', u'hospit']
[u'polic', u'probe', u'begin', u'babi', u'assault', u'foster']
[u'polic', u'pursu', u'lead', u'suspect', u'murder']
[u'polic', u'raid', u'target', u'bike', u'gang', u'expans']
[u'polic', u'raid', u'uncov', u'pirat', u'oper']
[u'polic', u'uncov', u'south', u'east', u'cannabi', u'crop']
[u'poll', u'govt', u'support', u'slip']
[u'pont', u'snub', u'tiger']
[u'pope', u'miss', u'wednesday', u'prayer']
[u'prison', u'transcript', u'confirm', u'give', u'fals']
[u'probe', u'launch', u'disabl']
[u'probe', u'search', u'water', u'mar']
[u'public', u'help', u'seek', u'hold']
[u'public', u'keen', u'hear', u'wash', u'hospit', u'talk']
[u'public', u'meet', u'focus', u'marin', u'park', u'plan']
[u'public', u'warn', u'redback', u'bite']
[u'blood', u'product', u'firm', u'take', u'market']
[u'dismiss', u'separ', u'inquiri']
[u'releas', u'prison', u'interview', u'transcript']
[u'quadripleg', u'regain', u'compo', u'beach', u'accid']
[u'ordeal', u'prompt', u'separ', u'inquiri']
[u'recreat', u'angler', u'protest', u'marin', u'park']
[u'recycl', u'welcom', u'council', u'rat', u'decis']
[u'regular', u'tooth', u'brush', u'benefit', u'heart']
[u'rice', u'speech', u'aim', u'repair', u'europ', u'relat']
[u'road', u'fund', u'commut', u'corridor', u'freez']
[u'robben', u'blow', u'chelsea', u'barca', u'clash']
[u'roger', u'return', u'waratah', u'line']
[u'ronaldo', u'miss', u'brazil', u'hong', u'kong', u'mismatch']
[u'rotari', u'seek', u'lifeguard', u'tower', u'fund']
[u'rural', u'shire', u'oppos', u'merger']
[u'russian', u'blast', u'kill']
[u'sack', u'lawyer', u'vow', u'fight', u'hickss', u'freedom']
[u'farmer', u'tax', u'bushfir', u'relief', u'fund']
[u'samba', u'school', u'danc', u'rio', u'final', u'parad']
[u'school', u'compulsori', u'despit', u'heatwav']
[u'scott', u'focus', u'master', u'perform', u'augusta']
[u'selector', u'need', u'time', u'lehmann', u'declar']
[u'sharon', u'readi', u'meet', u'abba', u'ramallah']
[u'shoaib', u'face', u'pakistan', u'inquisit']
[u'launceston']
[u'small', u'busi', u'commission', u'urg', u'independ']
[u'socceroo', u'play', u'world', u'qualifi']
[u'solomon', u'front', u'court', u'facto', u'murder']
[u'southcorp', u'post', u'percent', u'jump', u'profit']
[u'strike', u'forc', u'investig', u'babi', u'death']
[u'student', u'charg', u'teacher', u'scissor', u'attack']
[u'studi', u'consid', u'wast', u'dump', u'export', u'impact']
[u'vinni', u'look', u'doorknock', u'appeal', u'volunt']
[u'sugar', u'slam', u'raid', u'lawyer', u'offic']
[u'superfin', u'wool', u'fetch', u'dollar', u'launceston']
[u'sydney', u'host', u'apec', u'talk']
[u'get', u'parliamentari', u'elect', u'bodi']
[u'tendulkar', u'play', u'pakistan']
[u'tour', u'promot', u'deni', u'cheri', u'blair', u'payment', u'deal']
[u'finalis', u'univers', u'place']
[u'underworld', u'trial', u'star', u'wit', u'seek', u'expos', u'drug']
[u'union', u'overse', u'collaps', u'compani', u'futur']
[u'free', u'french', u'guantanamo', u'detaine']
[u'soldier', u'kill', u'northern', u'iraq']
[u'blaze', u'destroy', u'mail']
[u'virus', u'strike', u'student', u'school', u'camp']
[u'vline', u'defend', u'ballarat', u'rail', u'line', u'effort']
[u'vline', u'play', u'near', u'miss', u'safe', u'procedur']
[u'vogt', u'german']
[u'wall', u'street', u'placid', u'ahead', u'profit', u'report']
[u'walter', u'contractor', u'seek', u'payment', u'guarante']
[u'opposit', u'launch', u'health', u'polici', u'amid', u'protest']
[u'watkin', u'highlight', u'rail', u'revamp']
[u'windsor', u'back', u'council', u'boost', u'plan']
[u'releas', u'billion', u'profit']
[u'woman', u'arrest', u'club', u'break']
[u'work', u'women', u'carri', u'burden', u'home', u'goward']
[u'wright', u'phillip', u'right', u'england']
[u'zimbabw', u'rebel', u'hold', u'talk', u'board']
[u'bodi', u'driver', u'near', u'baghdad']
[u'abba', u'issu', u'order', u'halt', u'attack', u'gaza']
[u'aborigin', u'know', u'feed', u'health', u'product', u'industri']
[u'accommod', u'shortag', u'leav', u'woman', u'camp']
[u'accus', u'plead', u'guilti', u'supermarket', u'arson', u'charg']
[u'actu', u'reject', u'water', u'comment']
[u'administr', u'revis', u'nation', u'trust', u'debt']
[u'footbal', u'commit', u'stand', u'trial']
[u'african', u'leader', u'slam', u'togo', u'coup']
[u'agoni', u'wright', u'phillip', u'dutch', u'hold', u'england']
[u'albani', u'host', u'energi', u'polici', u'unveil']
[u'alleg', u'boat', u'thief', u'charg', u'offenc']
[u'dissent', u'palm', u'island', u'surpris', u'beatti']
[u'make', u'goldfield', u'solar', u'generat', u'promis']
[u'admit', u'doctor', u'prescrib', u'adhd', u'drug']
[u'anglican', u'leader', u'endors', u'princ', u'charless', u'wed']
[u'kill', u'snow', u'avalanch', u'kashmir']
[u'arthriti', u'drug', u'carri', u'heart', u'warn']
[u'asbesto', u'foundat', u'seek', u'site', u'guarante']
[u'attitud', u'chang', u'need', u'prevent', u'youth', u'fatal']
[u'aussi', u'triathlet', u'return', u'posit', u'test']
[u'baghdad', u'bomb', u'kill']
[u'beatti', u'releas', u'interview']
[u'beryllium', u'coverag', u'prompt', u'govt', u'contact', u'veteran']
[u'betsen', u'free', u'play', u'england']
[u'blair', u'tour', u'prompt', u'fundrais', u'review']
[u'bomb', u'like', u'caus', u'hercul', u'crash', u'report']
[u'bookmak', u'admit', u'break', u'thoroughbr', u'race', u'rule']
[u'british', u'coupl', u'shower']
[u'broadband', u'help', u'push', u'telstra', u'profit']
[u'brogden', u'question', u'attack', u'footag', u'delay']
[u'broom', u'generos', u'tsunami', u'victim', u'hostel']
[u'brothel', u'owner', u'hop', u'author', u'bendigo', u'plan']
[u'brown', u'head', u'japan', u'kyoto', u'ratif']
[u'budget', u'increas', u'fail', u'improv', u'educ']
[u'bush', u'boost', u'tsunami', u'nation']
[u'bushfir', u'coron', u'close', u'wit', u'court', u'hear']
[u'busi', u'report', u'stress', u'custom', u'servic']
[u'feder', u'fund', u'calder', u'work']
[u'focus', u'region', u'prostat', u'cancer']
[u'canal', u'success', u'depend', u'dam', u'fitzroy', u'river']
[u'canberra', u'capac', u'host', u'apec', u'meet']
[u'changi', u'liber', u'bedsid', u'tabl']
[u'chines', u'chemist', u'give', u'crow']
[u'chopper', u'pilot', u'surviv', u'muster', u'crash']
[u'chopper', u'rescu', u'servic', u'seek', u'fund']
[u'citrus', u'industri', u'despair', u'packag', u'polit']
[u'clever', u'octopus', u'shed', u'light', u'evolut']
[u'claim', u'behaviour', u'program', u'fail']
[u'coal', u'corp', u'highlight', u'conserv', u'effort']
[u'coalit', u'promis', u'probe', u'port', u'sack']
[u'commonwealth', u'subsidis', u'age', u'care', u'place']
[u'coron', u'adjourn', u'inquest', u'newcrest', u'properti']
[u'costello', u'question', u'sustain', u'energex']
[u'council', u'choos', u'aquat', u'centr', u'site']
[u'council', u'group', u'back', u'bush', u'region', u'plan']
[u'countri', u'lobbi', u'save', u'electr', u'subsidi']
[u'court', u'hear', u'evid', u'snowtown', u'killer']
[u'creditor', u'extend', u'administr', u'launceston']
[u'deathb', u'confess', u'solv', u'year', u'robberi', u'case']
[u'demand', u'perth', u'offic', u'space', u'strong']
[u'doctor', u'begin', u'separ', u'mermaid', u'babi', u'leg']
[u'doctor', u'donat', u'rout', u'tsunami', u'victim']
[u'doctor', u'lookout', u'break', u'heart']
[u'dominikov', u'bow', u'india']
[u'drink', u'driver', u'jail', u'crash', u'death']
[u'dugong', u'cruelti', u'charg', u'strike']
[u'eager', u'nation', u'elect', u'trail']
[u'kill', u'venezuelan', u'flood']
[u'england', u'chang', u'franc', u'clash']
[u'enrol', u'overwhelm', u'wadey', u'school']
[u'eurobodalla', u'plan', u'develop', u'strategi', u'meet']
[u'wheat', u'refund', u'undermin', u'global', u'trade', u'talk']
[u'extra', u'worker', u'assist', u'storm', u'clean']
[u'famili', u'cell', u'death', u'victim', u'comfort', u'polic']
[u'feder', u'state', u'plan', u'boost', u'respit', u'care', u'servic']
[u'policeman', u'guilti', u'harass', u'colleagu']
[u'teacher', u'face', u'teen', u'assault', u'charg']
[u'freeman', u'comeback', u'unlik', u'athlet', u'offici']
[u'talk', u'malaysia', u'begin']
[u'gallop', u'promis', u'brake', u'road', u'rage']
[u'genet', u'barcod', u'identifi', u'world', u'speci']
[u'germani', u'argentina', u'play', u'draw']
[u'district', u'busi', u'form', u'organis']
[u'goorjian', u'stirl', u'retain', u'job']
[u'govt', u'accus', u'sneaki', u'famili']
[u'govt', u'accus', u'stall', u'senat', u'bill']
[u'govt', u'assess', u'oper', u'theatr', u'reopen']
[u'govt', u'depart', u'doctor']
[u'govt', u'subcontractor', u'delay']
[u'govt', u'consid', u'canal', u'propos', u'say', u'minchin']
[u'greener', u'albani', u'head', u'coalit', u'energi', u'polici']
[u'green', u'group', u'air', u'foreign', u'ownership', u'fear']
[u'green', u'group', u'cast', u'doubt', u'townsvill']
[u'green', u'choos', u'candid']
[u'guard', u'union', u'call', u'chang', u'jail']
[u'theft', u'alarm', u'polic', u'chief']
[u'hackett', u'back', u'team', u'captain', u'meet']
[u'hama', u'fire', u'mortar', u'gaza', u'settlement']
[u'hawk', u'come', u'dethron', u'king']
[u'high', u'level', u'group', u'monitor', u'work']
[u'hungri', u'hayden', u'confid', u'ahead', u'tour']
[u'hunter', u'highlight', u'lose', u'export', u'earn']
[u'hussey', u'thrill', u'join', u'squad']
[u'immigr', u'raid', u'spark', u'farmer', u'anger']
[u'incat', u'staff', u'accept', u'deal', u'halt', u'protest']
[u'inciner', u'plant', u'upgrad', u'plan', u'stage']
[u'indigen', u'leader', u'seek', u'canal', u'answer']
[u'inexperi', u'threaten', u'plan', u'councillor']
[u'injur', u'worker', u'releas', u'hospit']
[u'inquest', u'fail', u'determin', u'caus', u'board', u'hous']
[u'insur', u'fraud', u'earn', u'weekend', u'detent']
[u'iran', u'refus', u'nuclear', u'program']
[u'isra', u'palestinian', u'secur', u'talk', u'postpon']
[u'jazz', u'organ', u'pioneer', u'jimmi', u'smith', u'die']
[u'kate', u'moss', u'portrait', u'fetch']
[u'kempsey', u'make', u'colleg', u'plan']
[u'kennett', u'find', u'inquiri', u'want']
[u'labor', u'reveal', u'coral', u'power', u'plan']
[u'lehmann', u'drop', u'squad']
[u'lehmann', u'face', u'uncertain', u'futur']
[u'lehmann', u'face', u'uncertain', u'futur']
[u'liber', u'candid', u'unfaz', u'green', u'prefer']
[u'liber', u'promis', u'power', u'station', u'approv', u'review']
[u'life', u'saver', u'review', u'beach', u'accid', u'compo', u'rule']
[u'local', u'govt', u'group', u'echo', u'transport', u'fund', u'concern']
[u'long', u'term', u'studi', u'identifi', u'risk', u'factor']
[u'mackay', u'relax', u'water', u'ban']
[u'accus', u'attack', u'parent', u'court']
[u'charg', u'child', u'assault']
[u'take', u'hospit', u'ferri', u'blaze']
[u'marriag', u'wake', u'republican']
[u'mayor', u'defend', u'tumbi', u'creek', u'region', u'grant']
[u'media', u'challeng', u'secreci', u'jackson', u'case']
[u'mentor', u'scheme', u'aim', u'bolster', u'indigen', u'educ']
[u'miner', u'search', u'gold', u'base', u'metal']
[u'miner', u'urg', u'rethink', u'china', u'shipment']
[u'minist', u'defend', u'dredg', u'grant', u'email']
[u'minist', u'defend', u'govt', u'scrap', u'region', u'plan']
[u'ministeri', u'advis', u'yamba', u'crime', u'woe']
[u'minist', u'review', u'plan', u'creek']
[u'tasmanian', u'help', u'tsunami', u'aftermath']
[u'label', u'child', u'support', u'agenc', u'anti', u'male']
[u'question', u'kalgoorli', u'rail', u'line', u'safeti']
[u'seek', u'chang', u'charg', u'drop']
[u'murder', u'suspect', u'confess', u'polic', u'court', u'tell']
[u'nation', u'consid']
[u'camera', u'turn', u'night']
[u'corpor', u'park', u'threat', u'redfern', u'facil']
[u'law', u'allow', u'construct', u'worker', u'transfer']
[u'korea', u'deepen', u'isol', u'nuclear', u'stanc']
[u'korea', u'halt', u'nuclear', u'talk']
[u'opposit', u'cast', u'doubt', u'power', u'pledg']
[u'opposit', u'echo', u'yeppoon', u'hospit', u'delay', u'concern']
[u'orang', u'elect', u'tape', u'send', u'green']
[u'parent', u'alleg', u'remov', u'babi', u'brain']
[u'parent', u'warn', u'danger']
[u'parol', u'board', u'keep', u'schoolgirl', u'killer', u'bar']
[u'pentagon', u'deni', u'medic', u'complic', u'abus']
[u'perth', u'hospit', u'abus', u'alleg', u'spark', u'staff', u'check']
[u'seek', u'talk', u'ash', u'broadcast']
[u'unveil', u'commonwealth', u'game', u'relay', u'baton']
[u'polic', u'agre', u'speed', u'camera', u'monitor', u'increas']
[u'polic', u'apologis', u'bungl', u'rape', u'investig']
[u'polic', u'concern', u'miss', u'woman']
[u'polic', u'concern', u'speed', u'northern']
[u'polic', u'consid', u'temporari', u'taxi', u'rank', u'avoid']
[u'polic', u'miss', u'tourist']
[u'polic', u'hunt', u'servic', u'station', u'knife', u'bandit']
[u'policeman', u'fin', u'access', u'child', u'porn']
[u'polic', u'probe', u'nabiac', u'man', u'death']
[u'pool', u'revamp', u'like', u'march']
[u'pope', u'readi', u'leav', u'hospit', u'vatican', u'say']
[u'power', u'station', u'unveil', u'busi', u'plan']
[u'princ', u'charl', u'camilla', u'marri']
[u'protest', u'firefight', u'wont', u'disciplin']
[u'public', u'comment', u'seek', u'heritag', u'studi']
[u'pull', u'dack', u'face', u'fine']
[u'health', u'probe', u'student', u'sick']
[u'race', u'gender', u'jumper']
[u'race', u'inquiri', u'hear', u'bookmak', u'recal']
[u'racq', u'want', u'road', u'fund', u'string', u'attach']
[u'rail', u'chief', u'deni', u'cityrail', u'siesta', u'claim']
[u'apolog', u'hard', u'deliv']
[u'region', u'resid', u'complain', u'phone']
[u'rescu', u'chopper', u'servic', u'move', u'sydney']
[u'research', u'accus', u'govt', u'smear', u'campaign']
[u'research', u'releas', u'open', u'sourc', u'technolog']
[u'riebel', u'beat', u'north', u'west', u'coastal', u'chanc']
[u'road', u'fund', u'law', u'break', u'spend', u'promis']
[u'ronaldinho', u'magic', u'brazil', u'trounc', u'hong', u'kong']
[u'cement', u'maker', u'report', u'profit']
[u'stop', u'releas', u'murder']
[u'saudi', u'arabia', u'poll', u'kick', u'riyadh']
[u'scientist', u'reveal', u'earth', u'natur', u'temperatur', u'swing']
[u'scissor', u'sister', u'steal', u'brit']
[u'search', u'find', u'strand', u'indonesian', u'fisher']
[u'second', u'rang', u'cross', u'move', u'closer']
[u'senat', u'probe', u'cancer', u'treatment']
[u'shield', u'repair', u'cost']
[u'shire', u'assess', u'hall', u'resort', u'plan']
[u'singapor', u'airlin', u'offer', u'travel', u'junket']
[u'smith', u'centuri', u'steer', u'protea', u'dramat']
[u'socceroo', u'attack', u'say', u'farina']
[u'south', u'coast', u'label', u'mental', u'health', u'black', u'hole']
[u'spray', u'make', u'better']
[u'steal', u'good', u'alleg', u'boat', u'thief', u'warehous']
[u'storm', u'cost', u'energi', u'firm']
[u'subdivis', u'plan', u'rais', u'green', u'fear']
[u'sydney', u'chase', u'york']
[u'talk', u'focus', u'walter', u'wollongong', u'job']
[u'consid', u'incent', u'live', u'export']
[u'arrang', u'satisfi', u'bushfir', u'relief', u'chief']
[u'tech', u'stock', u'push', u'market', u'lower']
[u'telstra', u'result', u'fail', u'lift', u'share', u'market']
[u'thoma', u'ask', u'qaeda', u'sleeper', u'court', u'hear']
[u'toll', u'affect', u'pakenham', u'bypass', u'fund']
[u'toowoomba', u'discuss', u'sunday', u'trade']
[u'town', u'brace', u'flood']
[u'show', u'tortur', u'realiti']
[u'navi', u'show', u'seab', u'ruptur', u'tsunami', u'quak']
[u'ban', u'peacekeep', u'congoles']
[u'unemploy', u'rate', u'remain', u'year']
[u'hold', u'inform', u'session', u'parent']
[u'urolog', u'clinic', u'succumb', u'hospit', u'staff', u'crisi']
[u'alli', u'voic', u'regret', u'north', u'korean', u'statement']
[u'aviat', u'author', u'receiv', u'warn']
[u'senat', u'introduc', u'shield', u'report']
[u'strategi', u'aim', u'outsourc', u'nuclear', u'strike']
[u'vanston', u'reject', u'smear', u'campaign', u'claim']
[u'vera', u'drake', u'actor', u'overwhelm', u'posit', u'reaction']
[u'vera', u'drake', u'clean', u'london', u'award']
[u'govt', u'announc', u'disabl', u'fund']
[u'villeneuv', u'suggest', u'chang', u'drive', u'style']
[u'volunt', u'seek', u'memori', u'loss', u'studi']
[u'industri', u'relat', u'basket', u'case']
[u'worker', u'head', u'creditor', u'list', u'insolv']
[u'yushchenko', u'probabl', u'poison', u'govern']
[u'advoc', u'report', u'highlight', u'disabl', u'home', u'concern']
[u'alic', u'host', u'princ', u'chuck', u'buck']
[u'ord', u'finish', u'week', u'slight', u'higher']
[u'ancient', u'bone', u'provid', u'evolutionari', u'insight']
[u'anti', u'porn', u'group', u'attack', u'brothel', u'plan']
[u'artist', u'touch', u'turn', u'central', u'park', u'gold']
[u'riewoldt', u'lead', u'saint']
[u'aussi', u'dollar', u'hit', u'high']
[u'aust', u'congratul', u'charl', u'camilla']
[u'australia', u'japan', u'consid', u'free', u'trade', u'agreement']
[u'author', u'press', u'concern', u'write']
[u'baldrick', u'want', u'blackadd', u'comeback']
[u'beatti', u'aim', u'shoot', u'chelsea']
[u'beatti', u'defend', u'blue', u'card', u'child', u'arrest']
[u'bellami', u'doubl', u'blast', u'critic']
[u'blair', u'brown', u'kick', u'elect', u'campaign']
[u'brack', u'see', u'victori', u'fair', u'navi', u'tender', u'process']
[u'breaker', u'women', u'final']
[u'brisban', u'rock', u'missionari', u'plan', u'return', u'trip', u'libya']
[u'offer', u'solut', u'spread', u'dengu']
[u'bulk', u'bill', u'hit', u'half', u'year', u'high']
[u'busi', u'want', u'replac', u'ax', u'advisori']
[u'busi', u'group', u'seek', u'action', u'skill', u'tasmanian']
[u'camden', u'hospit', u'matern', u'ward', u'downgrad']
[u'canberra', u'bushfir', u'inquest', u'farc']
[u'gippsland', u'murder', u'probe']
[u'centr', u'warn', u'whoop', u'cough', u'complac']
[u'chang', u'allow', u'pension', u'cheaper', u'region', u'rail']
[u'charg', u'drop', u'assault', u'accus']
[u'charg', u'recommend', u'camden', u'hospit', u'babi', u'death']
[u'charl', u'camilla', u'public', u'appear']
[u'chest', u'injuri', u'like', u'davico', u'career']
[u'child', u'support', u'agenc', u'reject', u'anti', u'claim']
[u'chinchilla', u'prepar', u'melon', u'mad']
[u'citrus', u'grower', u'welcom', u'canker', u'relief', u'packag']
[u'citi', u'wreck', u'unit', u'titl', u'hop']
[u'clarenc', u'valley', u'polic', u'consid', u'industri', u'action']
[u'execut', u'seat', u'iraq', u'claim']
[u'comment', u'seek', u'orang', u'revamp']
[u'commonwealth', u'reveal', u'canker', u'deal']
[u'communiti', u'input', u'seek', u'updat', u'educ', u'law']
[u'compani', u'pump', u'million']
[u'concert', u'take', u'sting', u'tsunami', u'impact']
[u'contamin', u'concern', u'prompt']
[u'corbi', u'urg', u'judg', u'view', u'airport', u'video', u'footag']
[u'coron', u'find', u'patient', u'overdos', u'death', u'prevent']
[u'coron', u'question', u'polic', u'cell', u'fund']
[u'costello', u'rubber', u'stamp', u'takeov']
[u'council', u'form', u'brothel', u'develop', u'agreement']
[u'council', u'launch', u'recycl', u'centr']
[u'council', u'ponder', u'rat', u'relief', u'plan']
[u'council', u'seek', u'fund', u'match', u'tourism', u'growth']
[u'council', u'polic', u'concern', u'govt']
[u'council', u'beat', u'bellambi', u'resolut']
[u'courtney', u'love', u'legal', u'saga', u'end']
[u'crespo', u'strike', u'fail', u'dampen', u'german', u'optim']
[u'croc', u'coach', u'highlight', u'shortcom']
[u'dajka', u'sprint']
[u'defenc', u'contract', u'promis', u'riverina', u'murray', u'busi']
[u'delay', u'mackay', u'water', u'scheme']
[u'dept', u'defend', u'immigr', u'raid', u'conduct']
[u'disabl', u'servic', u'strike', u'continu', u'despit', u'talk']
[u'dive', u'accid', u'victim', u'speedier', u'legal', u'process']
[u'dog', u'terror', u'battl']
[u'downer', u'urg', u'north', u'korea', u'return', u'talk']
[u'driver', u'jail', u'road', u'rage', u'incid']
[u'driver', u'prais', u'naracoort', u'crash']
[u'england', u'learn', u'curv', u'slipperi', u'slope']
[u'england', u'franc', u'longer', u'game', u'town']
[u'english', u'rugbi', u'link', u'swoop', u'leagu', u'superstar']
[u'environ', u'dept', u'happi', u'dust', u'control', u'effort']
[u'child', u'star', u'claim', u'jackson', u'show', u'nude', u'photo']
[u'springbok', u'skipper', u'krige', u'quit']
[u'fail', u'build', u'firm', u'sack', u'worker']
[u'farm', u'group', u'want', u'road', u'rent', u'rethink']
[u'fasth', u'lead', u'open']
[u'fear', u'hold', u'bird', u'coloni', u'leak']
[u'feder', u'fund', u'indigen', u'student', u'digit']
[u'fiji', u'armi', u'withdraw', u'secur']
[u'kill', u'north', u'west', u'iran']
[u'flotilla', u'get', u'wooden', u'boat', u'festiv']
[u'detect', u'stand', u'werriwa']
[u'satellit', u'group', u'jail', u'year']
[u'fund', u'turn', u'scientist', u'idea', u'busi']
[u'general', u'properti', u'trust', u'post', u'profit']
[u'gibson', u'soften', u'passion', u'easter', u'releas']
[u'govt', u'unveil', u'smoke', u'report']
[u'habib', u'fear', u'harass', u'campaign', u'break']
[u'hackett', u'readi', u'world']
[u'hayden', u'look', u'form', u'lehmann', u'leav', u'hop']
[u'hayden', u'strike']
[u'health', u'author', u'issu', u'legionnair', u'alert']
[u'hemp', u'diet', u'alpin', u'cow']
[u'herbal', u'extract', u'effect', u'remedi', u'depress']
[u'high', u'indigen', u'jail', u'rate', u'worri', u'legal', u'servic']
[u'hindu', u'fundamentalist', u'damag', u'test', u'pitch']
[u'hitler', u'mail', u'get']
[u'hoax', u'victim', u'rey', u'say', u'happi', u'arsenal']
[u'hotel', u'manag', u'murder', u'victim', u'asian']
[u'hous', u'figur', u'lend', u'weight', u'rate']
[u'howard', u'admit', u'habib', u'allow', u'sell', u'stori']
[u'howard', u'eye', u'budget', u'line']
[u'consid', u'pakistan', u'plea', u'neutral', u'umpir']
[u'indian', u'pakistani', u'govern', u'decid', u'test']
[u'inform', u'tell', u'underworld', u'trial', u'reloc', u'deal']
[u'home', u'meter', u'trial', u'seek', u'power', u'usag']
[u'injur', u'odriscol', u'ireland', u'face', u'scot']
[u'injur', u'seag', u'prepar', u'knight', u'return']
[u'inquest', u'prompt', u'safeti', u'recommend']
[u'inquiri', u'probe', u'school', u'safeti']
[u'board', u'call', u'vice', u'presid', u'expuls']
[u'iraq', u'alleg', u'smear', u'xstrata', u'takeov']
[u'iraq', u'group', u'demand', u'itali', u'pullout', u'save', u'hostag']
[u'isra', u'financ', u'minist', u'netanyahu', u'target']
[u'jail', u'robber', u'aim', u'babi']
[u'januari', u'memo', u'warn', u'bush', u'qaeda', u'threat']
[u'judg', u'clarifi', u'court', u'backlog', u'caus']
[u'justic', u'question', u'valid', u'bushfir', u'inquest']
[u'kasper', u'peg', u'warrior']
[u'kidman', u'photograph', u'tell', u'settl', u'court']
[u'kidman', u'reach', u'agreement', u'photograph']
[u'kyoto', u'protocol', u'come', u'forc']
[u'launceston', u'administr', u'explor', u'legal', u'action']
[u'say', u'rotat', u'polici', u'doesnt', u'work']
[u'liber', u'canal', u'plan', u'boost', u'pilbara', u'industri']
[u'local', u'knowledg', u'boost', u'wetland', u'conserv']
[u'life', u'thiev', u'plunder', u'victim', u'properti']
[u'number', u'order', u'open']
[u'luxuri', u'yacht', u'owner', u'reunit']
[u'magnetit', u'geraldton', u'pellet', u'plant']
[u'charg', u'drug']
[u'face', u'court', u'polic', u'pursuit']
[u'mayor', u'consid', u'pool', u'prospect']
[u'mcginti', u'promis', u'fund', u'surgeri', u'wait', u'list']
[u'mcgradi', u'talk', u'industri', u'area']
[u'mental', u'ill', u'overwhelm', u'prison', u'system']
[u'crew', u'battl', u'second', u'glass', u'factori']
[u'microsoft', u'pfizer', u'tackl', u'fake', u'viagra', u'sale']
[u'minist', u'heed', u'cerebr', u'palsi', u'suffer', u'plea']
[u'mix', u'news', u'zone', u'farmer']
[u'montreal', u'swim', u'world']
[u'mosley', u'blame', u'ferrari', u'rival', u'rubbish']
[u'moot', u'chang', u'oath']
[u'seek', u'stop', u'asbesto', u'tsunami']
[u'gambier', u'shortag', u'investig']
[u'murder', u'sentenc', u'outrag', u'victim', u'children']
[u'nasa', u'debat', u'space', u'shuttl', u'flight', u'repair']
[u'nation', u'leader', u'back', u'wind', u'farm', u'plan']
[u'nation', u'parti', u'plan', u'dead', u'buri']
[u'nation', u'seek', u'region', u'ambul', u'fund']
[u'nevill', u'queri', u'sponsor', u'anti', u'racism', u'motiv']
[u'newcastl', u'secur', u'jetstar', u'mainten', u'deal']
[u'staff', u'boost', u'cancer', u'support']
[u'kill', u'baghdad', u'bakeri', u'attack']
[u'ombudsman', u'analys', u'handl', u'sexual', u'assault']
[u'nation', u'candid', u'fight', u'indigen']
[u'opposit', u'reject', u'canal', u'link']
[u'pakistan', u'flash', u'flood', u'leav', u'dead']
[u'palm', u'island', u'member', u'urg', u'join', u'liber']
[u'patient', u'leav', u'emerg', u'ward', u'care']
[u'plan', u'age', u'care', u'facil', u'reveal']
[u'call', u'north', u'korea', u'bluff']
[u'polanski', u'win', u'right', u'testifi', u'video', u'british']
[u'polar', u'aviat', u'disput', u'casa', u'ground']
[u'polic', u'probe', u'fatal', u'hunter', u'crash']
[u'polic', u'releas', u'imag', u'bushfir', u'suspect']
[u'polic', u'seek', u'wit', u'toilet', u'attack']
[u'polic', u'seiz', u'chemic']
[u'port', u'author', u'deni', u'polit', u'involv']
[u'poultri', u'produc', u'fee']
[u'prawn', u'farm', u'redevelop', u'ahead', u'schedul']
[u'prize', u'win', u'embark']
[u'probe', u'launch', u'buderim', u'crash']
[u'public', u'help', u'seek', u'catch', u'serial', u'rapist']
[u'rann', u'hear', u'grape', u'grower', u'price', u'concern']
[u'record', u'breaker', u'pietersen', u'motiv', u'hostil']
[u'ref', u'ban', u'romp', u'train', u'camp']
[u'report', u'claim', u'sinn', u'fein', u'back', u'bank', u'raid']
[u'report', u'highlight', u'homeless', u'scheme', u'shortfal']
[u'rescu', u'chopper', u'decis', u'bring', u'disappoint']
[u'rey', u'eye', u'real']
[u'rivkin', u'associ', u'fin', u'insid', u'trade']
[u'rockhampton', u'hospit', u'servic', u'review']
[u'roddick', u'agassi', u'struggl', u'jose']
[u'rooney', u'want', u'world', u'centr', u'stage']
[u'russia', u'express', u'hope', u'north', u'korea', u'talk', u'resum']
[u'russia', u'iran', u'close', u'nuclear', u'agreement']
[u'sack', u'electr', u'worker', u'reflect', u'joh']
[u'safeti', u'statist', u'highlight', u'road', u'danger']
[u'schoolboy', u'steer', u'control', u'safeti']
[u'secur', u'firm', u'union', u'meet', u'industri']
[u'sept', u'warn', u'ignor', u'report']
[u'charg', u'magistr', u'drop']
[u'site', u'await', u'clear', u'chines', u'templ', u'work']
[u'snail', u'offer', u'astronaut', u'mental', u'support']
[u'somalia', u'vow', u'overcom', u'journalist', u'murder']
[u'pakistan', u'cricket', u'chief', u'eye', u'brisban']
[u'south', u'sign', u'faalogo', u'contract', u'extens']
[u'sport', u'figur', u'unit', u'eyr', u'peninsula']
[u'straight', u'talk', u'gillespi', u'dismiss', u'rotat']
[u'strong', u'red', u'line', u'tackl', u'crusad']
[u'suicid', u'bomb', u'shiit', u'mosqu', u'kill', u'iraqi']
[u'tape', u'add', u'weight', u'call', u'orang', u'council']
[u'teacher', u'arrest', u'child', u'porn', u'charg']
[u'teacher', u'union', u'wont', u'mandatori', u'child', u'abus']
[u'technolog', u'expo', u'benefit', u'disabl']
[u'telstra', u'talk', u'region', u'servic']
[u'thiev', u'target', u'farmer']
[u'thirti', u'fight', u'polic', u'station']
[u'togo', u'face', u'ultimatum', u'presid']
[u'trap', u'saltwat', u'crocodil', u'see', u'head', u'south']
[u'union', u'fear', u'hospit', u'witch', u'hunt', u'abus']
[u'union', u'seek', u'menstrual', u'leav', u'toyota', u'worker']
[u'mexico', u'captur', u'away', u'win', u'world']
[u'lawyer', u'convict', u'aid', u'terror']
[u'marin', u'charg', u'murder', u'iraqi']
[u'offer', u'guidelin', u'commerci', u'space', u'travel']
[u'virginia', u'withdraw', u'droopi', u'drawer']
[u'visit', u'bolster', u'albani', u'gallipoli', u'link']
[u'wall', u'street', u'trade', u'mix']
[u'nation', u'accus', u'tuckey', u'dirti', u'campaign']
[u'polit', u'parti', u'wari', u'takeov']
[u'warn', u'murali', u'help', u'lankan', u'tsunami', u'victim']
[u'warrior', u'bull']
[u'sell', u'decis', u'say', u'premier']
[u'water', u'legisl', u'spark', u'council', u'revenu', u'worri']
[u'waugh', u'back', u'india', u'pakistan']
[u'win', u'defenc', u'contract']
[u'western', u'council', u'fear', u'develop', u'restrict']
[u'wirrpunda', u'set', u'youth', u'foundat']
[u'sharehold', u'snub', u'xstrata', u'offer']
[u'work', u'begin', u'wharf', u'plan']
[u'work', u'condit', u'stress', u'baxter', u'guard', u'union']
[u'workcov', u'audit', u'find', u'littl', u'awar']
[u'worker', u'karumba', u'incent']
[u'yachtsman', u'packer', u'free', u'month']
[u'kill', u'attack', u'shiit']
[u'abba', u'urg', u'milit', u'abid', u'truce']
[u'absenc', u'tasmanian', u'famili', u'court', u'judg', u'caus']
[u'academ', u'fail', u'return', u'hobbit', u'bone']
[u'aceh', u'indonesia', u'peac', u'talk', u'head', u'second', u'round']
[u'actor', u'fail', u'drug', u'test', u'fake', u'peni']
[u'african', u'order', u'togo', u'compli', u'threaten', u'sanction']
[u'anger', u'talk', u'restart', u'bushfir', u'inquest']
[u'anna', u'win', u'battl', u'mear', u'sister']
[u'argentinian', u'prison', u'riot', u'leav', u'dead']
[u'australian', u'women', u'trail', u'world', u'lead']
[u'australia', u'wont', u'lobbi', u'china', u'arm', u'embargo']
[u'austria', u'melzer', u'upset', u'agassi', u'jose']
[u'blue', u'card', u'back', u'despit', u'arrest']
[u'bodi', u'charg', u'murder']
[u'broadbridg', u'widow', u'return', u'thailand']
[u'brumbi', u'chief']
[u'bulleen', u'wnbl', u'hop', u'flame']
[u'burger', u'avail', u'tsunami', u'match']
[u'burgess', u'set', u'pole', u'vault', u'record']
[u'burma', u'militari', u'leader', u'warn', u'colonialist']
[u'businessman', u'charg', u'firearm', u'offenc']
[u'review', u'compulsori', u'vote']
[u'canberra', u'prepar', u'multicultur', u'celebr']
[u'bomb', u'attack', u'kill', u'south', u'baghdad']
[u'cheri', u'blair', u'arriv', u'sydney', u'fundrais', u'tour']
[u'claim', u'homesick', u'send', u'doctor', u'home']
[u'execut', u'quit', u'iraq', u'remark']
[u'coastal', u'town', u'clash', u'coke', u'promot']
[u'cold', u'weather', u'claim', u'live', u'afghanistan']
[u'collector', u'cash', u'corni', u'quarter']
[u'congo', u'militia', u'forc', u'thousand', u'home']
[u'coupl', u'brace', u'kiss', u'record']
[u'court', u'rule', u'prison', u'releas']
[u'dutch', u'bring', u'sunb', u'rhino']
[u'elder', u'jail', u'molest', u'seven', u'year']
[u'elvstroem', u'triumph', u'superstar', u'field']
[u'farmer', u'plan', u'protest', u'greet', u'minist']
[u'ferrari', u'delay']
[u'fight', u'save', u'devil', u'step']
[u'arrest', u'servic', u'station', u'brawl']
[u'injur', u'hit', u'bystand']
[u'fourth', u'contract', u'legionnair', u'wollongong']
[u'french', u'polic', u'question', u'serena', u'stalker']
[u'french', u'polynesia', u'readi', u'poll']
[u'govt', u'bring', u'prescript', u'shop', u'hotlin']
[u'govt', u'extend', u'defenc', u'assist', u'bushfir', u'clean']
[u'govt', u'put', u'limit', u'coastal', u'high', u'rise', u'build']
[u'govt', u'roll', u'infrastructur', u'defenc', u'plan']
[u'green', u'group', u'oppos', u'propos', u'botani', u'treatment']
[u'gulpilil', u'releas', u'hospit', u'health', u'scare']
[u'gunmen', u'kill', u'senior', u'judg', u'southern', u'iraq']
[u'heavi', u'rain', u'pakistan', u'burst', u'dam']
[u'henri', u'blitz', u'field', u'pool', u'return']
[u'hobart', u'dock', u'swell', u'histor', u'boat', u'festiv']
[u'streak', u'lift', u'croc']
[u'india', u'race']
[u'indigen', u'communiti', u'band', u'conserv']
[u'indigen', u'youth', u'offer', u'swim', u'train']
[u'indonesian', u'navi', u'plan', u'fleet', u'expans']
[u'inform', u'seek', u'bash']
[u'investig', u'georgian', u'death']
[u'israel', u'exil', u'palestinian', u'milit', u'return']
[u'kean', u'quit', u'season']
[u'king']
[u'malaysian', u'offici', u'arrest', u'peopl', u'smuggl']
[u'die', u'crash', u'street', u'light']
[u'injur', u'brisban', u'plant', u'explos']
[u'mexican', u'report', u'hide', u'machin', u'attack']
[u'minist', u'defend', u'matern', u'ward', u'closur']
[u'canberran', u'servic']
[u'mugab', u'launch', u'zimbabw', u'elect', u'campaign']
[u'murali', u'chucker', u'warn']
[u'nation', u'museum', u'win', u'best', u'tourist', u'attract', u'award']
[u'neethl', u'continu', u'record', u'break']
[u'nepali', u'activist', u'hold', u'anti', u'king', u'protest', u'despit']
[u'opposit', u'urg', u'govt', u'action', u'rat']
[u'playwright', u'arthur', u'miller', u'die']
[u'polic', u'appeal', u'public', u'help', u'search']
[u'polic', u'arrest', u'internet', u'suicid', u'pact']
[u'polic', u'arrest', u'teen', u'attempt', u'murder']
[u'polic', u'charg', u'woman', u'pork', u'chop', u'assault']
[u'protea', u'seal', u'seri', u'rain', u'england', u'hop']
[u'protest', u'push', u'open', u'inquiri', u'detent']
[u'puerta', u'mow', u'seed', u'moya']
[u'rain', u'waterlog', u'venezuelan', u'state']
[u'redback', u'fall', u'short', u'despit', u'lehmann', u'half']
[u'redback', u'tame', u'tiger']
[u'rumsfeld', u'land', u'iraq', u'insurg', u'target', u'shiit']
[u'scottish', u'teen', u'murder', u'sentenc', u'year']
[u'script', u'drama', u'delay', u'eucalyptus', u'shoot']
[u'seven', u'hope', u'olymp', u'return']
[u'sexual', u'activ', u'queen', u'ant', u'enjoy', u'longer', u'life']
[u'spirit', u'level', u'women', u'cricket', u'final', u'seri']
[u'chief', u'join', u'raider', u'board']
[u'star', u'cricket', u'drop', u'asian', u'game']
[u'star', u'gather', u'british', u'film', u'award']
[u'student', u'enact', u'ride', u'indigen', u'freedom']
[u'swan', u'good', u'bomber']
[u'telstra', u'drop', u'lifelin', u'fund']
[u'togo', u'armi', u'kill', u'protest']
[u'troop', u'surround', u'rebel', u'southern', u'philippin']
[u'charg', u'palm', u'incid']
[u'troop', u'kill', u'vehicl', u'accid']
[u'ukrainian', u'presid', u'switzerland', u'check']
[u'union', u'boss', u'confirm', u'farrel', u'talk']
[u'unit', u'board', u'snub', u'latest', u'glazer', u'propos']
[u'refus', u'north', u'korea', u'demand', u'talk']
[u'stock', u'turn', u'higher']
[u'valentin', u'brand', u'cultur', u'corrupt']
[u'opposit', u'call', u'mental', u'health', u'fund']
[u'back', u'takeov']
[u'declar', u'farm', u'sector', u'powerhous']
[u'waratah', u'count', u'cost', u'trial', u'loss']
[u'warrior', u'bull']
[u'water', u'pollut', u'fear', u'curb', u'festiv', u'event']
[u'weather', u'devic', u'assist', u'pilot']
[u'wed', u'fever', u'cool', u'charl', u'camilla', u'retreat']
[u'wilson', u'open', u'seat']
[u'woman', u'hospit', u'stab']
[u'woman', u'lie', u'babi', u'toss']
[u'woolmer', u'face', u'umpir']
[u'worker', u'tool', u'asbesto', u'hospit']
[u'world', u'unit', u'fight', u'terror', u'rumsfeld', u'say']
[u'academ', u'disput', u'canal', u'price']
[u'collat', u'data', u'child', u'death']
[u'alic', u'spring', u'nurs', u'strike', u'loom']
[u'allardyc', u'hail', u'schwarzer', u'display']
[u'american', u'shoot', u'dead', u'brazil', u'amazon']
[u'anderson', u'ethanol', u'plant', u'grant']
[u'annan', u'rule', u'resign', u'food', u'scandal']
[u'record', u'mickelson', u'singh', u'miss']
[u'aussi', u'atkinson', u'sweden', u'ralli']
[u'aust', u'offici', u'wit', u'tortur', u'habib', u'say']
[u'australia', u'reach', u'seven', u'quarter']
[u'australia', u'singapor', u'discuss', u'open', u'sky', u'agreement']
[u'australia', u'women', u'world']
[u'barca', u'bounc']
[u'barnett', u'promis', u'tough', u'jail', u'sentenc']
[u'blair', u'renew', u'effort', u'persuad', u'climat']
[u'blanchett', u'win', u'best', u'support', u'actress', u'bafta']
[u'braveheart', u'founder', u'hand', u'paedophil', u'tape', u'polic']
[u'carr', u'reject', u'call', u'inquiri', u'hickey']
[u'china', u'push', u'round', u'north', u'korea', u'nuclear']
[u'chines', u'skier', u'extend', u'lead', u'ierodiaconou']
[u'church', u'damag', u'overnight', u'attack']
[u'coalit', u'infight', u'intensifi', u'labor']
[u'coastal', u'town', u'struggl', u'tidal', u'popul']
[u'cop', u'swoop', u'disgrac', u'german']
[u'costello', u'apologis', u'ordeal']
[u'crop', u'spray', u'review', u'second']
[u'cyclist', u'pedal', u'hobart']
[u'dead', u'ball', u'specialist', u'mihajlov', u'lift', u'inter']
[u'death', u'toll', u'rise', u'venezuela', u'rain']
[u'defo', u'brace', u'see', u'spur']
[u'effort', u'continu', u'protect', u'french', u'observatori']
[u'emerg', u'crew', u'clean', u'diesel', u'spill']
[u'england', u'webster', u'shoot', u'cours', u'record', u'open']
[u'farmer', u'confront', u'minist', u'charlevill']
[u'fasth', u'win', u'open', u'play']
[u'fear', u'collaps', u'ravag', u'huge', u'madrid']
[u'hurt', u'blast', u'hit', u'pari', u'theatr']
[u'injur', u'polic', u'chase', u'end', u'crash']
[u'franklin', u'lead', u'pirat', u'upset']
[u'gaudio', u'beat', u'martin', u'argentin', u'final']
[u'german', u'mark', u'anniversari', u'dresden']
[u'gough', u'doubt', u'england', u'final', u'dayer']
[u'govt', u'offer', u'public', u'inform', u'night']
[u'govt', u'support', u'random', u'drug', u'test', u'school']
[u'green', u'wont', u'prefer', u'labor', u'seat']
[u'gudjohnsen', u'fire', u'chelsea', u'point', u'clear']
[u'habib', u'unlik', u'passport', u'downer', u'say']
[u'haddin', u'put', u'blue', u'strong', u'posit']
[u'hall', u'win', u'australian', u'wheelchair', u'tenni', u'open']
[u'hama', u'promis', u'calm', u'ponder', u'ceas']
[u'hewitt', u'doubl', u'davi', u'fitzi']
[u'hill', u'admit', u'tortur', u'resist', u'train']
[u'human', u'rainbow', u'brighten', u'cancer', u'fundrais']
[u'human', u'remain', u'identifi']
[u'ill', u'hayden', u'doubt']
[u'india', u'mirza', u'make', u'tenni', u'histori']
[u'injuri', u'beset', u'black', u'cap']
[u'iran', u'refus', u'heavi', u'water', u'nuclear', u'reactor']
[u'ireland', u'surg', u'thump', u'scotland']
[u'israel', u'let', u'gaza', u'worker', u'cross', u'gestur']
[u'juri', u'select', u'start', u'jackson', u'case']
[u'knife', u'wield', u'want', u'attempt', u'robberi']
[u'labor', u'push', u'australia', u'join', u'kyoto', u'protocol']
[u'larg', u'central', u'madrid']
[u'lead', u'banker', u'downplay', u'rat', u'rise', u'fear']
[u'zeppelin', u'award', u'lifetim', u'achiev', u'grammi']
[u'lucki', u'hong', u'kong', u'tree', u'unlucki']
[u'arriv', u'britain', u'pakistan', u'charg']
[u'charg', u'attempt', u'murder']
[u'marcher', u'rememb', u'hickey']
[u'mauresmo', u'meet', u'safina', u'pari', u'final']
[u'mcgrath', u'macgil', u'victoria', u'final', u'hop']
[u'mear', u'continu', u'win']
[u'migrant', u'problem', u'domin', u'malaysia', u'indonesia']
[u'mine', u'propos', u'environment', u'scrutini']
[u'minist', u'hint', u'nation', u'teacher', u'train', u'inquiri']
[u'miss', u'woman', u'boot']
[u'nation', u'park', u'upgrad']
[u'neethl', u'finish', u'gold']
[u'netbal', u'enlist', u'union', u'push']
[u'note', u'provid', u'plain', u'english', u'version']
[u'opposit', u'call', u'action', u'surgeri', u'wait', u'list']
[u'pakistan', u'step', u'rescu', u'rain', u'casualti', u'mount']
[u'rule', u'workplac', u'rampag']
[u'polic', u'probe', u'babi', u'girl', u'death']
[u'polic', u'union', u'random', u'drug', u'test', u'offic']
[u'pope', u'call', u'iraqi', u'insurg', u'releas', u'hostag']
[u'pope', u'appear', u'sunday', u'angelus']
[u'star', u'christina', u'aguilera', u'engag', u'report']
[u'power', u'restor', u'perth', u'home']
[u'prso', u'put', u'ranger']
[u'govt', u'stand', u'firm', u'tree', u'clear']
[u'rain', u'humid', u'leav', u'thousand', u'power']
[u'rampant', u'wale', u'overwhelm', u'itali']
[u'refuge', u'prepar', u'sudan', u'return']
[u'rise', u'star', u'krogh', u'shin', u'canberra']
[u'roddick', u'meet', u'saulnier', u'jose', u'final']
[u'rossi', u'expect', u'tough', u'season']
[u'russia', u'urg', u'north', u'korea', u'remain', u'nuclear', u'talk']
[u'serbian', u'presid', u'make', u'landmark', u'visit', u'kosovo']
[u'teenag', u'recov', u'assault']
[u'teen', u'rape', u'victim', u'deni', u'special', u'exam', u'consider']
[u'telstra', u'chief', u'urg', u'board', u'successor']
[u'thiev', u'steal', u'firearm', u'hous']
[u'thousand', u'sail', u'australia', u'biggest', u'wooden']
[u'traffic', u'slow', u'trickl', u'nepal', u'rebel']
[u'treasur', u'ask', u'allow', u'super', u'hous', u'deposit']
[u'offic', u'assault', u'gold', u'coast', u'scuffl']
[u'unrest', u'shadow', u'french', u'polynesia', u'elect', u'result']
[u'warn', u'congo', u'crisi']
[u'upgrad', u'european', u'rocket', u'blast']
[u'democrat', u'vote', u'parti', u'chief']
[u'europ', u'agre', u'renew', u'secur', u'vow']
[u'fli', u'drone', u'iran', u'report']
[u'warn', u'drug', u'resist', u'strain']
[u'victoria', u'break', u'south', u'wale', u'spirit']
[u'victoria', u'break', u'south', u'waless', u'spirit']
[u'violenc', u'continu', u'iraq', u'await', u'elect', u'result']
[u'lead', u'nation', u'femal', u'execut']
[u'waratah', u'impress', u'crusad']
[u'welfar', u'reform', u'mobilis', u'russian']
[u'wodonga', u'babi', u'death', u'murder', u'investig']
[u'woman', u'stab', u'broomstick']
[u'zimbabwean', u'women', u'arrest', u'love', u'march']
[u'talk', u'ash', u'right']
[u'accident', u'caus', u'like', u'explos', u'pari']
[u'accus', u'bali', u'bomber', u'wife', u'remain', u'detent']
[u'milan', u'juve', u'sight']
[u'adelaid', u'princip', u'face', u'court', u'child', u'charg']
[u'deni', u'suggest', u'tokenist', u'propos']
[u'deni', u'token']
[u'agricultur', u'offici', u'seek', u'stop', u'spread', u'cane']
[u'alleg', u'chief', u'investig', u'air']
[u'anderson', u'examin', u'open', u'sky', u'request']
[u'atkinson', u'sweden', u'ralli']
[u'australia', u'brunei', u'sign', u'agreement', u'terror']
[u'australia', u'tsunami', u'death', u'toll', u'rise']
[u'author', u'investig', u'dead', u'fish', u'lachlan', u'river']
[u'bairnsdal', u'public', u'hous', u'list', u'continu', u'grow']
[u'bank', u'drag']
[u'barnett', u'target', u'region', u'train', u'strategi']
[u'control', u'resign']
[u'beatti', u'applaud', u'windorah', u'power', u'plant']
[u'beatti', u'call', u'palm', u'island', u'violenc']
[u'beatti', u'signal', u'chang', u'blue', u'card', u'law']
[u'beatti', u'wont', u'tree', u'clear', u'law']
[u'beirut', u'blast', u'hit', u'lebanes', u'motorcad']
[u'bell', u'western', u'derbi']
[u'blade', u'book', u'showdown', u'arsenal']
[u'blaze', u'damag', u'surfboard', u'shop']
[u'blaze', u'destroy', u'blackwat', u'caravan']
[u'drown', u'wheatbelt', u'farm']
[u'brack', u'track', u'despit', u'latest', u'poll']
[u'british', u'press', u'lash', u'hodger', u'bodger']
[u'british', u'report', u'kill', u'greek']
[u'brown', u'defend', u'decis', u'shun', u'senat', u'hear']
[u'brown', u'wag', u'anti', u'log', u'campaign', u'japan']
[u'brungl', u'fund', u'help', u'stop', u'sewag', u'problem']
[u'bundaberg', u'die', u'trail', u'bike', u'crash']
[u'bushrang', u'inconsist', u'season']
[u'busi', u'chamber', u'seek', u'geraldton', u'polic', u'boost']
[u'busi', u'look', u'chang', u'byron', u'parti', u'town', u'imag']
[u'cabinet', u'hear', u'ferri', u'recommend']
[u'cann', u'river', u'resid', u'ambul', u'assur']
[u'bomb', u'hit', u'central', u'beirut']
[u'crash', u'injur', u'trio']
[u'hit', u'supermarket']
[u'carr', u'overrid', u'sydney', u'speed', u'limit', u'plan']
[u'charlevill', u'step', u'wild', u'control', u'effort']
[u'chemic', u'biolog', u'attack', u'pose', u'real', u'danger', u'expert']
[u'chines', u'high', u'tech', u'espionag', u'grow']
[u'chopper', u'rescu', u'sick', u'ship']
[u'coalit', u'order', u'polici']
[u'coal', u'train', u'driver', u'walk']
[u'confer', u'focus', u'local', u'govt', u'merger']
[u'council', u'seek', u'public', u'feedback', u'bega', u'plan']
[u'council', u'face', u'hard', u'budget', u'decis']
[u'count', u'begin', u'french', u'polynesia', u'elect']
[u'cricket', u'boss', u'confirm', u'hayden', u'decis', u'today']
[u'croc', u'prove', u'good', u'breaker']
[u'cupid', u'arrow', u'hit', u'home', u'internet', u'studi']
[u'decis', u'loom', u'fibreboard', u'plant', u'futur']
[u'defenc', u'lawyer', u'want', u'polic', u'trial']
[u'demon', u'wait', u'play', u'list', u'request']
[u'dept', u'back', u'ruddock', u'denial', u'habib', u'tortur', u'claim']
[u'discard', u'recal', u'world']
[u'diseas', u'loom', u'pakistan', u'flood', u'kill']
[u'test', u'vindic', u'parent', u'tsunami', u'babi']
[u'dont', u'wast', u'time', u'drug', u'test', u'carr']
[u'drought', u'situat', u'eas', u'south', u'coast']
[u'effort', u'control', u'wasp', u'number']
[u'elect', u'balanc', u'french', u'polynesia']
[u'electr', u'rebat', u'boost', u'region', u'victoria']
[u'eucalyptus', u'film', u'delay', u'disappoint', u'local']
[u'expat', u'hail', u'elect', u'victori', u'iraq']
[u'expert', u'critic', u'hospit', u'woman', u'death']
[u'rooster', u'line', u'rabbitoh']
[u'famili', u'gather', u'hickey', u'memori', u'servic']
[u'farm', u'group', u'air', u'drought', u'worri']
[u'faulti', u'wire', u'spark', u'farm', u'suppli', u'blaze']
[u'feder', u'parliament', u'secur', u'upgrad', u'cost', u'million']
[u'fiat', u'billion', u'split']
[u'fifth', u'contract', u'legionnair', u'wollongong']
[u'shoot', u'shop', u'mall']
[u'fli', u'doctor', u'reject', u'meekatharra', u'pull', u'claim']
[u'archbishop', u'forc', u'offic', u'report']
[u'rugbi', u'leagu', u'player', u'illeg']
[u'face', u'court', u'hamilton', u'brawl']
[u'french', u'polynesian', u'poll']
[u'repriev', u'illeg', u'immigr', u'malaysia']
[u'gallop', u'open', u'drug', u'test', u'school']
[u'gallop', u'pledg', u'hospit', u'wait', u'list']
[u'gallop', u'promis', u'extra', u'wait', u'list']
[u'gaudio', u'clinch', u'second', u'titl', u'week']
[u'gippsland', u'port', u'slipway', u'upgrad']
[u'govt', u'commit', u'indigen', u'employ']
[u'govt', u'condemn', u'tortur']
[u'govt', u'defi', u'kyoto', u'ratif', u'call']
[u'govt', u'dark', u'habib', u'releas']
[u'govt', u'loos', u'truth', u'iraq', u'rudd', u'say']
[u'govt', u'urg', u'shift', u'fund', u'deer', u'park', u'bypass']
[u'grammi', u'honour', u'charl', u'prize']
[u'green', u'critic', u'xstrata', u'takeov', u'approv']
[u'habitat', u'caus', u'concern', u'endang', u'owl']
[u'hawk', u'dogfight', u'second', u'place']
[u'hayden', u'give', u'time', u'overcom', u'virus']
[u'hick', u'high', u'school', u'studi', u'guantanamo']
[u'highland', u'snowstorm', u'hit', u'celtic', u'game']
[u'hillari', u'clinton', u'receiv', u'german', u'media', u'prize']
[u'howard', u'await', u'report', u'consid', u'apolog']
[u'howard', u'talk', u'trade', u'zealand']
[u'husband', u'tell', u'away', u'wife', u'ordeal']
[u'illawarra', u'club', u'recognis', u'tsunami']
[u'indigen', u'student', u'complet', u'educ', u'local']
[u'inquiri', u'knock', u'jam', u'hardi', u'profit']
[u'internet', u'kill', u'video', u'store']
[u'islam', u'school', u'open', u'door']
[u'italian', u'foot', u'daytim', u'scooter']
[u'japan', u'take', u'women', u'world']
[u'johnson', u'look', u'crown']
[u'judg', u'uphold', u'mous', u'chew', u'fin']
[u'juri', u'dismiss', u'child', u'abus', u'trial']
[u'juri', u'visit', u'scene', u'worker', u'doubl', u'murder']
[u'koala', u'foundat', u'criticis', u'kangaroo', u'program']
[u'koala', u'sterilis', u'number', u'increas']
[u'labor', u'pledg', u'squad', u'region', u'citi']
[u'wit', u'fatima', u'apparit', u'die']
[u'leagu', u'player', u'sue', u'illeg', u'tackl']
[u'liber', u'sight', u'bendigo']
[u'licenc', u'chang', u'consid', u'curb', u'road', u'death']
[u'littl', u'show', u'vandal', u'reward']
[u'loretta', u'lynn', u'win', u'grammi', u'year']
[u'macedon', u'rang', u'council', u'oppos', u'poki']
[u'maker', u'illus', u'home', u'oscar']
[u'accus', u'steal', u'yacht', u'admit', u'mental']
[u'die', u'tare', u'hous', u'blaze']
[u'marin', u'park', u'plan', u'worri', u'aquacultur', u'aquarium']
[u'maroochi', u'mayor', u'withdraw', u'legal', u'threat']
[u'mcginti', u'criticis', u'opposit', u'plan', u'chang']
[u'mickelson', u'go', u'wire', u'wire', u'pebbl', u'beach']
[u'molik', u'wildcard', u'select', u'puzzl']
[u'molik', u'miss', u'qualifi']
[u'improv', u'plan', u'port', u'kembla']
[u'wollongong', u'patient', u'legionnair', u'symptom']
[u'mother', u'enter', u'mental', u'ill', u'plea', u'son', u'murder']
[u'moy', u'punish', u'beatti', u'galla', u'headbutt']
[u'want', u'servic', u'competit']
[u'newcastl', u'univers', u'signific', u'staff', u'cut']
[u'radar', u'improv', u'weather', u'forecast']
[u'zealand', u'claim', u'seven', u'titl']
[u'deadlin', u'chicken', u'fee']
[u'sign', u'port', u'hedland', u'croc']
[u'world', u'thorp']
[u'south', u'east', u'film', u'product', u'boost']
[u'korea', u'nuclear', u'weapon', u'state', u'seoul']
[u'nurs', u'group', u'chang', u'recognis', u'midwiferi']
[u'obstetrician', u'shortag', u'risk', u'live', u'doctor']
[u'offic', u'disciplin', u'jailbreak']
[u'shoot', u'shop', u'mall', u'york', u'state']
[u'pakistan', u'nawaz', u'fear', u'indian', u'spin', u'whitewash']
[u'palestinian', u'shoot', u'hebron']
[u'parti', u'negoti', u'iraq', u'govern']
[u'parti', u'urg', u'consid', u'rural', u'water', u'issu']
[u'perth', u'woman', u'jail', u'centrelink', u'fraud']
[u'petit', u'target', u'shack', u'ownership']
[u'urg', u'telstra', u'renew', u'lifelin', u'sponsorship', u'deal']
[u'polic', u'criticis', u'cage', u'transport']
[u'polic', u'examin', u'suspici', u'envelop']
[u'polic', u'identifi', u'float', u'bodi']
[u'polic', u'constitut']
[u'polic', u'motorcycl', u'accid', u'victim']
[u'polic', u'drug', u'bust', u'airport']
[u'polic', u'releas', u'photo', u'murder', u'victim', u'steal']
[u'polic', u'return', u'scene', u'kidnap']
[u'polic', u'seek', u'fatal', u'hous', u'wit']
[u'prais', u'aplenti', u'cross', u'border', u'bushfir', u'control']
[u'prefer', u'deal', u'spark', u'coalit', u'fight']
[u'public', u'ask', u'help', u'motel', u'bandit']
[u'public', u'help', u'seek', u'polic', u'attack']
[u'push', u'super', u'fund', u'deposit', u'home']
[u'question', u'rais', u'gallop', u'lower', u'hous', u'seat']
[u'racetrack', u'limit', u'underworld', u'figur']
[u'rag', u'bull', u'play', u'toothless', u'tiger']
[u'rain', u'littl', u'reliev', u'south', u'east', u'drought']
[u'rann', u'counter', u'attack', u'lucrat', u'navi', u'contract']
[u'ransom', u'pay', u'free', u'kidnap', u'woman']
[u'refuge', u'job', u'scheme', u'get', u'fund', u'boost']
[u'remot', u'communiti', u'vote']
[u'report', u'question', u'benefit', u'drug', u'test', u'school']
[u'right', u'group', u'issu', u'room', u'rental', u'warn']
[u'rise', u'stds', u'prompt', u'valentin', u'health', u'warn']
[u'riverina', u'farmer', u'seek', u'relief', u'fund']
[u'roddick', u'defend', u'jose', u'titl']
[u'stewart', u'final', u'win', u'grammi']
[u'ross', u'confirm', u'stawel', u'gift', u'return']
[u'rotari', u'number', u'fall', u'rural', u'victoria']
[u'ryan', u'voic', u'gippsland', u'wind', u'farm', u'opposit']
[u'saboteur', u'attack', u'pipelin', u'iraq']
[u'safina', u'upset', u'mauresmo', u'pari', u'titl']
[u'scientist', u'breed', u'life', u'endang', u'fish']
[u'secker', u'enter', u'winegrap', u'price', u'wrangl']
[u'seri', u'loss', u'give', u'fals', u'impress', u'vaughan']
[u'chechen', u'fighter', u'kill', u'russia', u'say']
[u'race', u'unrest', u'spark', u'arrest']
[u'snooker', u'chief', u'reject', u'sauci', u'chang']
[u'speed', u'hump', u'slow', u'polli']
[u'stanhop', u'say', u'court', u'bushfir', u'inquiri', u'comment']
[u'studi', u'warn', u'small', u'town', u'tourism', u'depend']
[u'sudan', u'criticis', u'darfur', u'intervent']
[u'supersub', u'owen', u'rescu', u'real']
[u'survey', u'expos', u'indigen', u'hous', u'woe']
[u'suspect', u'canker', u'expect', u'affect', u'area']
[u'swim', u'coach', u'play', u'russian', u'roulett']
[u'symond', u'hop', u'tour', u'zealand']
[u'symond', u'hop', u'tour']
[u'syria', u'deni', u'rendit']
[u'teen', u'arsonist', u'jail', u'bushfir']
[u'telstra', u'review', u'lifelin', u'pullout']
[u'terror', u'suspect', u'jack', u'thoma', u'grant', u'bail']
[u'thousand', u'flock', u'festival']
[u'southern', u'crash']
[u'injur', u'south', u'west', u'crash']
[u'tiger', u'claim', u'underdog']
[u'trade', u'hall', u'council', u'criticis', u'cut', u'bendigo']
[u'train', u'driver', u'strike']
[u'train', u'driver', u'meet', u'discus', u'speed', u'limit', u'plan']
[u'tribun', u'rule', u'allow', u'polar']
[u'tsunami', u'sap', u'african', u'food', u'say']
[u'uncertainti', u'remain', u'biomass', u'power', u'plant']
[u'meet', u'focus', u'financi', u'woe']
[u'union', u'reject', u'plan', u'teacher', u'train', u'inquiri']
[u'student', u'gear', u'week', u'kick']
[u'unit', u'hope', u'ruud', u'return']
[u'talk', u'seek', u'compromis', u'human', u'clone']
[u'soldier', u'kill', u'iraq', u'pipelin', u'ablaz']
[u'vanston', u'reject', u'farm', u'worker', u'card', u'plan']
[u'veteran', u'hope', u'heal', u'memori', u'wall', u'rift']
[u'volunt', u'firefight', u'pleas', u'meet', u'outcom']
[u'wagga', u'parent', u'celebr', u'quad', u'birth']
[u'walter', u'collaps', u'cast', u'doubt', u'tafe', u'cours']
[u'wind', u'take', u'clark', u'hill', u'plan']
[u'woman', u'boot', u'critic', u'condit']
[u'yacht', u'race', u'organis', u'close', u'boat', u'studi']
[u'yoga', u'help', u'gigg', u'beat', u'pain']
[u'arrest', u'goulburn', u'valley', u'immigr', u'raid']
[u'govt', u'defend', u'budget', u'credenti', u'surplus']
[u'opposit', u'seek', u'brief', u'feder']
[u'join', u'philippin', u'investig']
[u'hand', u'petit', u'reopen', u'hickey', u'inquest']
[u'aid', u'virus', u'hold', u'cancer', u'cure']
[u'amnesti', u'slam', u'govt', u'posit', u'trial']
[u'armi', u'cadet', u'declin', u'asbesto', u'exposur', u'counsel']
[u'arroyo', u'vow', u'crush', u'qaeda', u'group']
[u'arsenal', u'foreign', u'legion', u'palac', u'massacr']
[u'arsenal', u'foreign', u'legion', u'massacr', u'palac']
[u'asio', u'confirm', u'habib', u'hold', u'egypt']
[u'tri', u'advantag', u'rise', u'beatti']
[u'aust', u'post', u'christma', u'spirit', u'question']
[u'australia', u'brunei', u'agre', u'fight', u'terror']
[u'australia', u'return', u'hospit', u'indonesia']
[u'australia', u'abid', u'result', u'koubek', u'appeal']
[u'australia', u'urg', u'press', u'tortur', u'claim']
[u'bail', u'hear', u'cathol', u'cleric', u'adjourn']
[u'bald', u'hill', u'wind', u'farm', u'ahead', u'despit', u'protest']
[u'overnight', u'park', u'devonport', u'spot']
[u'beatti', u'open', u'palm', u'communiti', u'centr', u'despit']
[u'beazley', u'buoy', u'poll', u'rebound']
[u'bega', u'council', u'lift', u'jam', u'hardi']
[u'bell', u'skipper', u'docker']
[u'bendigo', u'bank', u'turn', u'profit']
[u'blame', u'game', u'emerg', u'brazil', u'beef']
[u'blogger', u'watch', u'journalist']
[u'brickbat', u'breakthrough', u'disput']
[u'briton', u'charg', u'bomb', u'plot']
[u'break', u'hill', u'anger', u'council', u'censorship']
[u'bureaucraci', u'hold', u'snowi', u'develop', u'mayor']
[u'call', u'public', u'probe', u'state', u'forest', u'log']
[u'camera', u'footag', u'fatal', u'assault', u'brisban']
[u'carr', u'disappoint', u'eucalyptus', u'delay']
[u'china', u'coal', u'blast', u'kill']
[u'chines', u'media', u'block', u'report', u'mine']
[u'coach', u'urg', u'caution', u'menzi', u'claim']
[u'cochlear', u'rais', u'profit', u'forecast']
[u'council', u'approv', u'north', u'wallarah', u'hous', u'plan']
[u'council', u'plan', u'servic', u'boundari', u'chang']
[u'council', u'say', u'exhibit', u'decis', u'censorship']
[u'council', u'eas', u'bite', u'pest', u'burden']
[u'court', u'fin', u'mackay', u'fishermen', u'breach']
[u'darl', u'down', u'ethanol', u'blend', u'fuel']
[u'death', u'put', u'polic', u'focus', u'speed', u'biker']
[u'democrat', u'propos', u'popul', u'shift']
[u'democrat', u'want', u'develop', u'candid']
[u'dept', u'pulp', u'chain', u'letter']
[u'disabl', u'group', u'seek', u'input', u'welfar', u'chang']
[u'evid', u'prompt', u'murder', u'plea', u'rethink']
[u'doubt', u'throw', u'qualiti', u'murder', u'tape']
[u'dust', u'trigger', u'librari', u'alarm']
[u'east', u'timor', u'want', u'spill', u'explan']
[u'link', u'blood', u'lead', u'level', u'smelter', u'licenc']
[u'european', u'court', u'back', u'activist', u'mclibel', u'case']
[u'councillor', u'stand', u'council']
[u'expert', u'look', u'fall', u'grape', u'price', u'impact']
[u'famili', u'minist', u'encourag', u'adopt', u'ralli']
[u'feasibl', u'studi', u'begin', u'chines', u'heritag', u'trail']
[u'feder', u'polic', u'discount', u'habib', u'tortur', u'claim']
[u'firm', u'face', u'action', u'healthier', u'cigarett']
[u'bodi', u'recov', u'afghan', u'crash']
[u'flatley', u'croft', u'sign', u'red', u'deal']
[u'flight', u'group', u'allow', u'gyroplan']
[u'foreign', u'invest', u'help', u'creat', u'charlevill', u'job']
[u'forest', u'compani', u'fibreboard', u'plant', u'remain', u'open']
[u'leagu', u'player', u'say', u'illeg', u'tackl']
[u'minster', u'defend', u'adelaid', u'shipbuild']
[u'franc', u'protest', u'villawood', u'detent', u'bungl']
[u'friend', u'testifi', u'woman', u'murder']
[u'fund', u'avail', u'protect', u'promot']
[u'fund', u'earmark', u'classroom', u'acoust']
[u'relief', u'measur', u'eyr', u'peninsula']
[u'futur', u'look', u'posit']
[u'shortag', u'hamper', u'tissu', u'product']
[u'gippsland', u'record', u'bulk', u'bill', u'boost']
[u'gladston', u'council', u'put', u'wrong']
[u'govt', u'accus', u'break', u'famili', u'elect', u'promis']
[u'govt', u'claim', u'strong', u'support', u'learner', u'driver', u'law']
[u'govt', u'join', u'council', u'bilbi', u'save', u'effort']
[u'govt', u'pressur', u'australian', u'hold', u'iraq']
[u'govt', u'respond', u'age', u'care', u'abus', u'claim']
[u'govt', u'say', u'coalit', u'confus', u'polic', u'station']
[u'govt', u'shell', u'bundaberg', u'turtl', u'centr', u'fund']
[u'govt', u'urg', u'address', u'region', u'obstetr', u'woe']
[u'govt', u'forc', u'telstra', u'cover', u'lifelin', u'cost']
[u'govt', u'urg', u'rethink', u'psych', u'patient', u'hospit', u'care']
[u'green', u'prepar', u'distanc', u'beyer']
[u'green', u'identifi', u'wrong', u'detent', u'case']
[u'green', u'want', u'uranium', u'mine']
[u'green', u'weigh', u'beyer', u'mind']
[u'offer', u'outlet', u'meekatharra', u'youth']
[u'hawk', u'join', u'mourner', u'businessman', u'funer']
[u'hayden', u'clear', u'tour']
[u'hayden', u'confid', u'pass', u'medic']
[u'health', u'council', u'back', u'parti']
[u'hibbert', u'name', u'leagu', u'star']
[u'hill', u'deni', u'australian', u'interrog', u'iraqi']
[u'hinchcliff', u'deni', u'wrongdo', u'contact']
[u'hodg', u'name', u'centr', u'bronco', u'trial']
[u'hornbi', u'lead', u'dragon', u'chariti', u'shield']
[u'howard', u'confid', u'lib', u'poll']
[u'hutchison', u'upbeat', u'despit', u'loss']
[u'hothead', u'say', u'rooney']
[u'indigen', u'communiti', u'interest', u'statehood']
[u'indigen', u'group', u'seek', u'altern', u'atsic']
[u'insect', u'levi', u'sting', u'dairi', u'farmer']
[u'investig', u'launch', u'shoot', u'death']
[u'israel', u'plan', u'west', u'bank', u'settlement']
[u'jackson', u'lawyer', u'reveal', u'star', u'stud', u'wit', u'list']
[u'kean', u'hint', u'retir', u'rethink']
[u'kewel', u'return', u'action', u'liverpool']
[u'labor', u'backbench', u'deni', u'power', u'rebat', u'stunt']
[u'labor', u'give', u'condit', u'back', u'uranium', u'export']
[u'labor', u'welcom', u'mcgauran', u'turn', u'public', u'fund']
[u'landmark', u'build', u'sell']
[u'land', u'kill', u'busi', u'opposit']
[u'langer', u'help', u'tsunami', u'relief']
[u'latest', u'australian', u'tsunami', u'victim', u'identifi']
[u'lawyer', u'deni', u'habib', u'kidnap', u'stori']
[u'leader', u'wish']
[u'lebanes', u'armi', u'mobilis', u'hariri', u'assassin']
[u'lebanes', u'mourn', u'death']
[u'hungri', u'test', u'return']
[u'lifelin', u'confid', u'mackay', u'servic', u'continu']
[u'lifelin', u'offer', u'assur', u'amidst', u'fund', u'doubt']
[u'lifelin', u'phone', u'counsel', u'continu', u'despit']
[u'lifelin', u'break', u'hill', u'door', u'open']
[u'local', u'govt', u'group', u'seek', u'better', u'region', u'public']
[u'lyle', u'cherish', u'moment', u'return']
[u'lyle', u'cherish', u'moment', u'return']
[u'mackay', u'resid', u'urg', u'report', u'park', u'vandal']
[u'macquari', u'buy', u'shop', u'centr']
[u'charg', u'illeg', u'weapon', u'seizur']
[u'maryborough', u'wont', u'enforc', u'smoke', u'law']
[u'mauresmo', u'leap', u'second', u'molik', u'hold']
[u'see', u'benefit', u'train', u'pledg']
[u'media', u'retail', u'stock', u'drive', u'market']
[u'meninga', u'deni', u'assault', u'charg']
[u'owner', u'promis', u'reduc', u'nois', u'dust', u'impact']
[u'mobil', u'phone', u'person', u'music', u'devic']
[u'mokbel', u'stand', u'trial', u'drug', u'traffic', u'charg']
[u'molik', u'absenc', u'problem', u'say', u'stosur']
[u'test', u'hold', u'fish', u'kill', u'site']
[u'defend', u'immigr', u'raid']
[u'reject', u'hospit', u'crisi', u'claim']
[u'urg', u'reef']
[u'museum', u'ditch', u'thylacin', u'clone', u'project']
[u'organ', u'come', u'embryo', u'studi']
[u'break', u'promis', u'famili', u'benefit', u'scullion']
[u'prosecut', u'ethanol', u'tank', u'blast']
[u'resolut', u'devaugh', u'subcontractor', u'wrangl']
[u'northern', u'airport', u'sale', u'boost', u'southern', u'link']
[u'like', u'corporatis', u'state', u'forest', u'carr']
[u'polic', u'warn', u'complac']
[u'ombudsman', u'investig', u'aborigin', u'youth']
[u'plane', u'crash', u'victim', u'farewel', u'adelaid']
[u'occi', u'retir', u'season']
[u'opposit', u'call', u'jail', u'smoke']
[u'opposit', u'deni', u'stall', u'crimin', u'neglect']
[u'opposit', u'question', u'rail', u'project']
[u'parliament', u'delay', u'businessman', u'funer']
[u'parti', u'call', u'address', u'aborigin', u'issu']
[u'parti', u'reject', u'xstrata', u'licenc']
[u'pirat', u'franklin', u'captur', u'week', u'best', u'award']
[u'quiet', u'iraq', u'abus', u'claim']
[u'urg', u'answer', u'iraq', u'interrog', u'claim']
[u'poki', u'maker', u'unveil', u'merger', u'plan', u'loss']
[u'polic', u'dont', u'consid', u'armidal', u'death', u'suspici']
[u'polic', u'hold', u'fear', u'miss', u'tourist']
[u'polic', u'pleas', u'justic', u'precinct', u'plan']
[u'polic', u'probe', u'death', u'boot', u'case']
[u'polic', u'seek', u'help', u'miss']
[u'polic', u'union', u'threaten', u'action', u'disarm', u'plan']
[u'port', u'stephen', u'look', u'develop', u'preced']
[u'poultri', u'produc', u'rethink', u'fee']
[u'privat', u'health', u'insur', u'year', u'high']
[u'prosecut', u'threat', u'deter', u'council', u'safeti']
[u'protest', u'shoot', u'dead', u'togo', u'ralli']
[u'public', u'deserv', u'answer', u'habib', u'beazley']
[u'public', u'help', u'seek', u'catch', u'eden', u'firebug']
[u'public', u'warn', u'internet', u'scam']
[u'quit', u'smoke', u'extend', u'life', u'hour']
[u'raaf', u'investig', u'fuel', u'tank', u'leak']
[u'rat', u'postpon', u'plan']
[u'regul', u'probe', u'leav', u'market', u'flat']
[u'report', u'highlight', u'council', u'administr', u'cost']
[u'rfds', u'escap', u'airport', u'rise']
[u'roo', u'prim', u'showdown', u'mentor', u'ead']
[u'ross', u'expect', u'peak', u'commonwealth', u'game']
[u'rspca', u'investig', u'death']
[u'sharehold', u'reap', u'reward', u'record', u'profit']
[u'shoaib', u'face', u'disciplinari', u'committe', u'india']
[u'hospit', u'pneumonia']
[u'parti', u'process', u'best', u'nuke', u'talk', u'downer']
[u'skipper', u'warn', u'sydney', u'hobart', u'arm', u'race']
[u'south', u'african', u'sheep', u'western']
[u'south', u'pacif', u'island', u'brace', u'twin', u'cyclon']
[u'springborg', u'demand', u'answer', u'energex', u'alleg']
[u'stosur', u'beat']
[u'studi', u'find', u'build', u'sit', u'unsaf']
[u'studi', u'find', u'north', u'western', u'farmer', u'vulner']
[u'summer', u'crop', u'boost', u'late', u'rain']
[u'coast', u'look', u'boost', u'visitor', u'number']
[u'sydney', u'expect', u'decis', u'york']
[u'sydney', u'unit', u'expect', u'decis', u'york']
[u'talk', u'continu', u'futur', u'walter', u'project']
[u'govt', u'reject', u'claim', u'inact', u'fibreboard']
[u'teenag', u'court', u'school', u'emerg']
[u'telfer', u'overcom', u'hurdl']
[u'tiger', u'assum', u'underdog', u'status']
[u'tiger', u'intent', u'restor', u'fight', u'spirit']
[u'treasur', u'uncov', u'dubious', u'account']
[u'truss', u'attack', u'canker', u'respons']
[u'line', u'boss', u'urg', u'speedi', u'decis', u'troubl']
[u'radio', u'suspend', u'burglari', u'stunt']
[u'union', u'reach', u'deal', u'walter', u'worker']
[u'union', u'manag', u'milk', u'disput']
[u'envoy', u'want', u'north', u'korea', u'nuclear', u'talk']
[u'float', u'peacekeep', u'plan', u'sudan']
[u'missil', u'shield', u'test', u'fail']
[u'soldier', u'kill', u'wound', u'iraq']
[u'vanston', u'defend', u'time', u'take', u'case']
[u'villawood', u'detaine', u'stage', u'hunger', u'strike', u'lobbi', u'group']
[u'water', u'author', u'clarifi', u'resign']
[u'water', u'prove', u'econom']
[u'uranium', u'limit', u'mine', u'gallop']
[u'waveaid', u'boost', u'chariti', u'coffer']
[u'westmar', u'resid', u'water', u'relief']
[u'wit', u'deni', u'offer', u'kill', u'drug', u'traffick']
[u'wollongong', u'record', u'suspect', u'legionnair']
[u'woman', u'die', u'truck', u'crash']
[u'academ', u'univers', u'financ', u'audit']
[u'accc', u'take', u'action', u'union', u'power', u'station']
[u'wont', u'chang', u'speed', u'law']
[u'adelaid', u'airport', u'mark', u'year', u'commerci']
[u'adelaid', u'host', u'climat', u'chang', u'confer']
[u'adler', u'plead', u'guilti', u'charg']
[u'alcohol', u'foundat', u'rais', u'bing', u'drink', u'concern']
[u'anglican', u'commiss', u'await', u'broom', u'school', u'land']
[u'annan', u'join', u'call', u'syria', u'leav', u'lebanon']
[u'armidal', u'rugbi', u'leagu', u'club', u'administr']
[u'armstrong', u'undecid', u'tour']
[u'asian', u'trade', u'talk', u'loom']
[u'australia', u'rank', u'second', u'shark', u'attack']
[u'austrian', u'friesach', u'sign', u'minardi']
[u'barnett', u'quiet', u'polici']
[u'bathurst', u'administr', u'hold', u'meet']
[u'beat', u'nalbandian', u'plead', u'colour', u'blind']
[u'boast', u'bumper', u'half', u'year', u'profit']
[u'fire', u'gender', u'debat']
[u'black', u'cap', u'fight']
[u'boe', u'unveil', u'long', u'rang', u'rival', u'airbus']
[u'bun', u'opposit', u'wan']
[u'bushfir', u'threaten', u'perth', u'home']
[u'jail', u'smoke', u'prompt', u'mix', u'reaction']
[u'campaign', u'protest', u'abort', u'fund']
[u'canberra', u'airport', u'expans', u'give', u'green', u'light']
[u'canberra', u'worker', u'report', u'highest', u'burnout', u'rate']
[u'boot', u'case', u'husband', u'girlfriend', u'hold']
[u'carey', u'reunit', u'pagan', u'carlton']
[u'steven', u'win', u'libel', u'case', u'british', u'paper']
[u'central', u'victoria', u'reflect', u'wednesday', u'fire']
[u'announc', u'perth', u'super', u'franchis']
[u'chariti', u'fin', u'asbesto', u'exposur']
[u'chines', u'rescuer', u'blast', u'survivor']
[u'clijster', u'make', u'light', u'work', u'comeback', u'match']
[u'club', u'expans', u'promis', u'thing', u'alburi']
[u'coalit', u'prefer', u'emerg']
[u'coastwatch', u'council', u'discuss', u'code', u'conduct']
[u'collingwood', u'leav', u'experi']
[u'council', u'await', u'resort', u'develop', u'applic']
[u'council', u'face', u'tender', u'process', u'question']
[u'councillor', u'push', u'wind', u'farm', u'rat']
[u'council', u'stay', u'clear', u'sunday', u'trade', u'debat']
[u'council', u'urg', u'stay', u'art', u'issu']
[u'court', u'hear', u'worker', u'throw', u'river', u'aliv']
[u'court', u'tell', u'tree', u'like', u'surviv', u'resort', u'plan']
[u'coward', u'bouncer', u'jail', u'hotel', u'attack']
[u'crow', u'cock', u'record', u'enrag', u'neighbour']
[u'cruis', u'passeng', u'break', u'bone', u'land', u'itali']
[u'custom', u'seiz', u'counterfeit', u'good', u'shipment']
[u'defenc', u'chief', u'share', u'abus', u'concern']
[u'dengu', u'death', u'toll', u'timor', u'climb']
[u'dental', u'group', u'push', u'fluorid']
[u'develop', u'team', u'north', u'coast', u'issu']
[u'disabl', u'appoint', u'rais', u'opposit', u'worri']
[u'doctor', u'stabl', u'frail']
[u'dollar', u'gain', u'rate', u'rise', u'specul', u'academ']
[u'doubt', u'cast', u'toll', u'road', u'contract', u'chang']
[u'appeal', u'terror', u'suspect', u'bail']
[u'earthquak', u'shake', u'tokyo', u'peopl', u'hurt']
[u'australian', u'interview', u'iraqi']
[u'elder', u'attack', u'home']
[u'england', u'readi', u'ash', u'trescothick']
[u'approv', u'mirambeena', u'rezon']
[u'etoo', u'retain', u'african', u'footbal', u'year', u'titl']
[u'fallon', u'flag', u'possibl', u'retir']
[u'famili', u'tsunami', u'death']
[u'famili', u'polic', u'boy', u'tell', u'reloc']
[u'famili', u'farewel', u'tsunami', u'victim']
[u'feder', u'polic', u'examin', u'wentworth', u'briberi', u'claim']
[u'finegan', u'join', u'burk', u'newcastl']
[u'finger', u'cross', u'hayden', u'pont']
[u'firebug', u'blame', u'perth', u'blaze']
[u'fisher', u'await', u'abrolho', u'island', u'camp', u'leas']
[u'fix', u'german', u'match', u'replay']
[u'forecast', u'factor', u'rat', u'rise']
[u'isra', u'soldier', u'win', u'aust', u'prize']
[u'tour', u'chief', u'warn', u'modern', u'gear', u'threaten']
[u'fund', u'boost', u'environ', u'project']
[u'fundrais', u'ahead', u'despit', u'sponsorship', u'woe']
[u'gallop', u'deni', u'turn', u'elector']
[u'garden', u'pest', u'threaten', u'bushland']
[u'german', u'say', u'penguin', u'stay']
[u'govern', u'offici', u'tell', u'avoid', u'hariri', u'funer']
[u'govt', u'defend', u'decis', u'detain', u'korean', u'woman']
[u'govt', u'expect', u'decid', u'airport', u'expans', u'plan']
[u'govt', u'extend', u'life', u'ferri', u'servic']
[u'govt', u'offer', u'shortag', u'assur']
[u'govt', u'take', u'step', u'open', u'sky', u'polici']
[u'govt', u'heavi', u'hand', u'approach']
[u'govt', u'urg', u'apologis', u'mistreat', u'armi', u'cadet']
[u'grape', u'grower', u'group', u'unhappi', u'price', u'result']
[u'green', u'group', u'ralli', u'support', u'kyoto', u'protocol']
[u'group', u'find', u'potenti', u'export', u'increas']
[u'guilti', u'plea', u'end', u'adler', u'investig']
[u'helmet', u'save', u'teen', u'shredder', u'mishap']
[u'hill', u'confirm', u'defenc', u'contract', u'adelaid', u'compani']
[u'hill', u'face', u'question', u'iraq']
[u'hill', u'stand', u'firm', u'interrog', u'disput']
[u'hop', u'fade', u'miss', u'miner', u'china']
[u'howard', u'attend', u'gallipoli', u'dawn', u'servic']
[u'hockey', u'leagu', u'face', u'shutdown', u'salari']
[u'india', u'pakistan', u'ahead']
[u'industri', u'group', u'back', u'call', u'import', u'skill']
[u'inquest', u'hear', u'dead', u'teenag', u'take', u'speed']
[u'inquest', u'hear', u'rail', u'cross', u'risk', u'take']
[u'inquest', u'tell', u'mother', u'poison', u'newborn']
[u'jackson', u'hospitalis']
[u'jackson', u'sign', u'capit', u'deal']
[u'japanes', u'economi', u'slide', u'recess']
[u'job', u'brick', u'plant', u'close']
[u'justic', u'complex', u'subcontractor', u'return', u'work']
[u'katter', u'seek', u'airport', u'explan']
[u'khmer', u'man', u'sentenc', u'stand', u'backpack', u'murder']
[u'kimberley', u'pilbara', u'candid', u'debat', u'issu']
[u'law', u'price', u'order', u'apologis']
[u'leav', u'dragway', u'head', u'autumn', u'legisl', u'program']
[u'lebanes', u'rest']
[u'legendari', u'spider', u'turn', u'fossil']
[u'leighton', u'hold', u'predict', u'healthi', u'result']
[u'lennon', u'defend', u'govt', u'poll', u'result']
[u'lifelin', u'pleas', u'telstra', u'fund', u'outcom']
[u'local', u'govt', u'group', u'continu', u'water', u'land', u'separ']
[u'luczak', u'shock', u'seed', u'gonzalez']
[u'hurt', u'grape', u'harvest', u'mishap']
[u'mayor', u'tweed', u'council', u'inquiri']
[u'mayor', u'reject', u'visitor', u'centr', u'sale', u'claim']
[u'medibank', u'cut', u'cost', u'patient', u'hospit', u'group']
[u'medic', u'tribun', u'consid', u'year', u'old', u'death']
[u'melbourn', u'apart', u'plan', u'reject']
[u'year', u'report', u'prompt', u'mini', u'budget', u'call']
[u'minist', u'distanc', u'director', u'general']
[u'seek', u'rail', u'freight', u'price']
[u'mourner', u'farewel', u'lebanes']
[u'ralli', u'howard', u'interrog', u'claim']
[u'help', u'form', u'palm', u'liber', u'parti', u'branch']
[u'urg', u'pneumococc', u'shot']
[u'mudge', u'park', u'smoker', u'face', u'fin']
[u'murray', u'entitl', u'rumour', u'spark', u'irrig', u'worri']
[u'nelson', u'corpor', u'parti']
[u'netbal', u'australia', u'stress', u'commit', u'player']
[u'north', u'west', u'identifi', u'child', u'abus']
[u'doctor', u'forc', u'surgeri', u'cancel']
[u'speed', u'fin', u'drop']
[u'wait', u'indigen', u'educ', u'scheme']
[u'oberon', u'take', u'look', u'fluorid']
[u'occi', u'readi', u'cold', u'turkey', u'surf']
[u'opposit', u'criticis', u'council', u'boundari', u'review']
[u'orchard', u'owner', u'await', u'canker', u'confirm']
[u'discoveri', u'add', u'shine', u'silver', u'citi']
[u'pay', u'weekend', u'park', u'delay', u'market', u'open']
[u'pair', u'face', u'charg', u'boot', u'case']
[u'palm', u'mayor', u'say', u'beatti', u'welcom', u'mourn']
[u'palm', u'pest', u'prove', u'problemat', u'north', u'coast']
[u'passer', u'quiz', u'woman', u'boot', u'investig']
[u'pastoralist', u'plan', u'kimberley', u'meatwork']
[u'pietersen', u'good', u'england', u'tour']
[u'defend', u'region', u'rail', u'grant']
[u'polic', u'charg', u'teen', u'gold', u'coast', u'man', u'murder']
[u'polic', u'hunt', u'pair', u'runcorn', u'school', u'blaze']
[u'polic', u'oper', u'spark', u'racist', u'claim']
[u'polic', u'probe', u'mountain', u'creek', u'stab']
[u'polic', u'transport', u'case', u'caus', u'procedur']
[u'popov', u'confirm', u'retir']
[u'power', u'station', u'reloc', u'improv', u'suppli']
[u'pregnant', u'women', u'prefer', u'healthi']
[u'pressur', u'remain', u'australia', u'kyoto', u'take', u'effect']
[u'psychiatrist', u'see', u'sign', u'habib', u'tortur']
[u'public', u'ask', u'help', u'catch', u'killer']
[u'public', u'outcri', u'stop', u'biosolid', u'storag', u'trial']
[u'public', u'vote', u'chang']
[u'push', u'second', u'kakadu', u'uranium']
[u'push', u'drive', u'flood', u'causeway']
[u'govt', u'label', u'incompet', u'coal', u'port']
[u'rail', u'industri', u'seek', u'nation', u'strategi']
[u'cross', u'allay', u'tsunami', u'donat', u'concern']
[u'reef', u'fisheri', u'closur', u'help', u'avail']
[u'report', u'find', u'speed', u'factor', u'tilt', u'train', u'crash']
[u'rescuer', u'send', u'strand', u'whale']
[u'rilli', u'sign', u'year', u'croc', u'deal']
[u'robinval', u'fluorid', u'plan', u'ahead']
[u'ronaldinho', u'etoo', u'turn', u'style', u'tsunami']
[u'rspca', u'duck', u'plant', u'probe', u'find']
[u'sand', u'excav', u'prove', u'cost']
[u'santo', u'share', u'slump', u'revel']
[u'pressur', u'higher', u'renew', u'energi', u'target']
[u'scallop', u'season', u'chang', u'boost', u'shark', u'catch']
[u'school', u'busi', u'close', u'cyclon', u'olaf', u'approach']
[u'scientist', u'consid', u'global', u'tsunami', u'warn']
[u'scud', u'fit', u'cloud']
[u'scud', u'warn', u'shape']
[u'senat', u'examin', u'approv', u'beef', u'import']
[u'sharon', u'determin', u'complet', u'gaza', u'pullout']
[u'shiit', u'firm', u'iraqi']
[u'sign', u'kyoto', u'virtual', u'worthless']
[u'smelter', u'commit', u'cut', u'blood', u'lead', u'level']
[u'speed', u'fin', u'put', u'focus', u'safeti']
[u'state', u'forest', u'fear', u'follow', u'corporatis']
[u'strike', u'indonesian', u'fisherman', u'send', u'jail']
[u'strong', u'result', u'boost', u'ord']
[u'strong', u'retail', u'sale', u'push', u'stock', u'higher']
[u'suppli', u'gather', u'cyclon', u'threaten', u'island']
[u'support', u'grow']
[u'support', u'grow', u'cricket']
[u'swan', u'reappoint', u'maxfield', u'captain']
[u'sydney', u'wait', u'news', u'york']
[u'tabcorp', u'singaporean', u'resort']
[u'tamworth', u'develop', u'step', u'closer']
[u'tasmanian', u'poll', u'survey', u'point', u'hang', u'parliament']
[u'tasmania', u'propos', u'plan', u'chang', u'paper']
[u'teacher', u'resign', u'offenc', u'reveal']
[u'legionnair', u'case', u'emerg', u'wollongong']
[u'train', u'scheme', u'benefit', u'coast']
[u'trucki', u'urg', u'miss', u'award', u'benefit']
[u'twin', u'cyclon', u'batter', u'south', u'pacif', u'island']
[u'twin', u'cyclon', u'bear', u'south', u'pacif', u'island']
[u'face', u'court', u'boot', u'case']
[u'hold', u'woman', u'boot', u'case']
[u'palestinian', u'kill', u'near', u'nablus']
[u'look', u'boost', u'age', u'care', u'worker', u'skill']
[u'union', u'angri', u'fund', u'drama']
[u'union', u'disagre', u'juvenil', u'justic', u'inquiri']
[u'union', u'fear', u'job', u'forest', u'corporatis']
[u'plead', u'innoc', u'train', u'crash', u'death']
[u'recal', u'ambassador', u'syria', u'hariri']
[u'report', u'face', u'jail', u'agent', u'case']
[u'senat', u'confirm', u'homeland', u'secur', u'chief']
[u'send', u'guantanamo', u'detaine', u'home']
[u'escap', u'remain']
[u'vanston', u'express', u'deep', u'regret', u'detent']
[u'vline', u'admit', u'melbourn', u'ballarat', u'rail', u'effort']
[u'parti', u'ignor', u'indigen', u'issu']
[u'water', u'report', u'underpin', u'fund', u'request']
[u'whistleblow', u'focus', u'studi']
[u'wigan', u'deni', u'sonni']
[u'wildcat', u'tiger', u'point', u'thriller']
[u'winemak', u'order', u'revis', u'price']
[u'wit', u'falter', u'sydney', u'terror', u'case']
[u'wood', u'chip', u'protest', u'log', u'advoc', u'face']
[u'woodsid', u'petroleum', u'doubl', u'profit']
[u'worker', u'compo', u'premium', u'council', u'budget']
[u'zimbabw', u'polic', u'raid', u'journalist', u'offic']
[u'cattl', u'dead', u'abandon', u'properti']
[u'abbott', u'refus', u'rule', u'privat', u'health', u'cover']
[u'accc', u'put', u'heat', u'potenti', u'cartel']
[u'elector', u'review']
[u'govt', u'break', u'energi', u'effici', u'promis']
[u'laud', u'child', u'protect', u'reform']
[u'accus', u'spi', u'defenc', u'forc']
[u'adler', u'driver', u'reprimand']
[u'sell', u'western', u'victoria', u'lifestyl']
[u'increas', u'size', u'commiss']
[u'highlight', u'unfulfil', u'elect', u'promis']
[u'amcor', u'profit', u'drop', u'search', u'continu']
[u'amnesti', u'call', u'suspens', u'militari']
[u'bounc', u'profit']
[u'armi', u'helicopt', u'return', u'tsunami', u'relief']
[u'arthur', u'press', u'davi', u'case']
[u'asio', u'offic', u'face', u'court']
[u'associ', u'defend', u'caravan', u'safeti']
[u'australia', u'china', u'uranium', u'sale', u'negoti']
[u'australian', u'killer', u'free', u'despit', u'court', u'rule']
[u'australia', u'histor', u'match']
[u'aust', u'soldier', u'alert', u'dengu', u'fever']
[u'babi', u'injur', u'preschool']
[u'barnett', u'face', u'storm', u'beachfront', u'build']
[u'baxter', u'detaine', u'receiv', u'acut', u'mental', u'health', u'care']
[u'beatti', u'defiant', u'palm', u'island', u'pcyc']
[u'beatti', u'stand', u'palm', u'island', u'itinerari']
[u'beatti', u'urg', u'enter', u'marin', u'park', u'issu']
[u'bega', u'offer', u'educ']
[u'bendigo', u'go', u'public', u'open', u'space', u'plan']
[u'bevan', u'shape', u'tiger']
[u'bowditch', u'kresg', u'share', u'lead', u'open']
[u'brack', u'say', u'opi', u'problem', u'resolv']
[u'british', u'hop', u'record', u'book']
[u'break', u'hill', u'pool', u'sit', u'identifi']
[u'bulki', u'good', u'land', u'rezon', u'near', u'approv']
[u'bureau', u'predict', u'warmer', u'autumn']
[u'bushfir', u'contain', u'northern', u'tasmania']
[u'price']
[u'call', u'halt', u'region', u'rail', u'declin']
[u'canal', u'plan', u'wash', u'barnett']
[u'canberra', u'local', u'consid', u'bulk', u'bill']
[u'candid', u'want', u'shelter', u'convert', u'child', u'safe']
[u'carr', u'blast', u'employ', u'penalti', u'rat']
[u'carr', u'criticis', u'work', u'hour', u'propos']
[u'cash', u'threat', u'wont', u'stop', u'code', u'jumper', u'player']
[u'chemic', u'accus', u'shiit', u'massacr']
[u'china', u'surpass', u'world', u'biggest', u'consum']
[u'christian', u'parti', u'want', u'answer', u'right', u'law']
[u'head', u'warn', u'continu', u'qaeda', u'threat']
[u'clijster', u'set', u'venus', u'showdown']
[u'deni', u'govern', u'hack', u'claim']
[u'voic', u'support', u'uranium']
[u'coalit', u'promis', u'region', u'health', u'boost']
[u'coast', u'council', u'clean', u'sewag', u'spill']
[u'coff', u'harbour', u'welcom', u'extra', u'virgin', u'flight']
[u'cole', u'myer', u'sale', u'rise']
[u'commonwealth', u'urg', u'victoria', u'replac']
[u'conlon', u'stand', u'firm', u'grid', u'cost']
[u'conserv', u'trust', u'admit', u'defeat', u'freycinet', u'dam']
[u'construct', u'worker', u'walk', u'walter']
[u'council', u'approv', u'mackay', u'apart']
[u'councillor', u'reject', u'transit', u'centr', u'develop']
[u'council', u'order', u'clean', u'contamin', u'dump']
[u'council', u'pleas', u'shire', u'shake', u'plan']
[u'council', u'seek', u'comment', u'streetscap', u'plan']
[u'council', u'flood', u'manag', u'fund']
[u'council', u'decid', u'fluorid']
[u'countri', u'labor', u'focus', u'troubl', u'dubbo', u'estat']
[u'court', u'cut', u'murder', u'mother', u'sentenc']
[u'creek', u'access', u'restrict', u'byfield', u'nation', u'park']
[u'defibril', u'cabl', u'replac', u'death']
[u'deliveri', u'driver', u'attack', u'sydney']
[u'dept', u'give', u'princip', u'control', u'teacher', u'hire']
[u'desalin', u'plant', u'plan', u'ahead']
[u'develop', u'take', u'council', u'court', u'resort', u'safeti']
[u'disturb', u'ban', u'worker', u'murder', u'trial']
[u'doctor', u'defend', u'earli', u'hospit', u'departur']
[u'doctor', u'deni', u'neglig', u'compo', u'decis']
[u'doyl', u'dismiss', u'liber', u'disun', u'claim']
[u'doyl', u'want', u'beggar', u'move', u'game']
[u'drug', u'rife', u'palm', u'beatti', u'tell']
[u'durum', u'wheat', u'offic', u'base', u'tamworth']
[u'eadl', u'appeal', u'elliot', u'head', u'develop']
[u'east', u'timor', u'move', u'independ', u'industri']
[u'educ', u'program', u'fund', u'scullion']
[u'stop', u'woodchip', u'blockad']
[u'farm', u'group', u'seek', u'rural', u'water', u'scheme', u'fund']
[u'feder', u'buri', u'australian', u'open', u'setback']
[u'fish', u'gear', u'seek', u'tsunami', u'victim']
[u'flight', u'centr', u'expand', u'india']
[u'policeman', u'plead', u'guilti', u'power', u'abus']
[u'umpir', u'warn', u'brownlow', u'rule', u'chang']
[u'fund', u'tackl', u'child', u'abus', u'western']
[u'gallop', u'deni', u'howard', u'deserv', u'credit', u'economi']
[u'gallop', u'detail', u'alloc', u'fund']
[u'gallop', u'push', u'nurs', u'strike', u'boycott']
[u'georg', u'michael', u'farewel', u'music', u'world']
[u'gippsland', u'smoke', u'death', u'averag']
[u'gippsland', u'voter', u'receiv', u'enrol', u'check']
[u'govt', u'accus', u'inact', u'environ', u'law']
[u'govt', u'downplay', u'leak', u'hospit', u'memo']
[u'govt', u'ask', u'help', u'fund', u'stormwat', u'project']
[u'govt', u'promis', u'juvenil', u'detent', u'centr']
[u'govt', u'help', u'grape', u'price', u'case']
[u'govt', u'suppli', u'unsniff', u'fuel']
[u'govt', u'urg', u'allow', u'candid', u'aborigin', u'land']
[u'govt', u'vet', u'decid', u'return', u'work']
[u'greenspan', u'comment', u'leav', u'market', u'flat']
[u'green', u'question', u'plan', u'shell', u'turtl', u'centr']
[u'grower', u'look', u'forward', u'bumper', u'grape', u'harvest']
[u'hariri', u'death', u'spark', u'polit', u'backlash']
[u'hobart', u'juri', u'convict', u'child', u'rape']
[u'hospit', u'put', u'patient', u'care', u'medibank', u'contract']
[u'hundr', u'endur', u'eurobodalla', u'dental', u'wait', u'list']
[u'illawarra', u'featur', u'tourism']
[u'india', u'pakistan', u'reach', u'link', u'deal']
[u'india', u'scrap', u'ahmedabad', u'pakistani', u'test']
[u'industri', u'urg', u'address', u'packag', u'wast']
[u'inquiri', u'find', u'brokenshir', u'unlaw', u'divert', u'fund']
[u'intel', u'make', u'silicon', u'laser', u'breakthrough']
[u'investor', u'cross', u'border', u'flee']
[u'israel', u'approv', u'gaza', u'compens', u'packag']
[u'italian', u'orchestr', u'conductor', u'die']
[u'jackson', u'home', u'hospit', u'stay']
[u'jetstar', u'consid', u'townsvill', u'flight']
[u'kean', u'hit', u'diver']
[u'kresg', u'grab', u'adelaid', u'lead']
[u'labor', u'declin', u'habib', u'offer', u'appear', u'senat']
[u'latham', u'expect', u'super', u'open']
[u'injuri', u'scare']
[u'legionnair', u'case', u'climb', u'wollongong']
[u'lennon', u'resist', u'pressur', u'spend', u'surplus']
[u'long', u'time', u'come', u'bendigo', u'clock']
[u'lung', u'visit', u'asbesto', u'worker']
[u'mackay', u'sport', u'precinct', u'plan', u'gather', u'support']
[u'marin', u'scientist', u'win', u'prestigi', u'fellowship']
[u'mayor', u'reject', u'council', u'industri', u'rule']
[u'mayor', u'nazi', u'jibe', u'overshadow', u'london', u'olymp']
[u'media', u'deni', u'access', u'skase', u'citizenship', u'document']
[u'melbourn', u'silo', u'clock', u'restor']
[u'mentor', u'encourag', u'student', u'studi']
[u'minist', u'deni', u'inquiri', u'attack', u'teacher']
[u'miss', u'tourist', u'search', u'uncov', u'bodi']
[u'council', u'claim']
[u'claim', u'australian', u'interrog', u'iraqi']
[u'mother', u'jail', u'attempt', u'murder', u'children']
[u'fear', u'lack', u'consult', u'charlestown']
[u'say', u'time', u'late', u'latrob', u'valley', u'train']
[u'tell', u'accus', u'killer']
[u'gateway', u'bridg', u'brisban', u'begin', u'year']
[u'accid', u'strike', u'china']
[u'zealand', u'encourag', u'start']
[u'elect', u'tasmania', u'lennon']
[u'opposit', u'seek', u'forest', u'plan', u'detail']
[u'nurs', u'plan', u'elect', u'strike']
[u'search', u'ship', u'miss', u'cyclon', u'olaf']
[u'obsess', u'grandfath', u'jail', u'child', u'abus']
[u'opposit', u'promis', u'esper', u'hospit', u'revamp']
[u'pair', u'fight', u'boot', u'case', u'charg']
[u'paper', u'ask', u'seek', u'feder', u'fund']
[u'pcyc', u'await', u'land', u'sale', u'decis']
[u'food', u'firm', u'fin', u'natur', u'conserv', u'breach']
[u'philippin', u'polic', u'releas', u'sketch', u'bomb']
[u'pittman', u'win', u'melbourn']
[u'plug', u'pull', u'farnham', u'gallipoli']
[u'lambast', u'opposit', u'hill', u'critic']
[u'polic', u'accus', u'pay', u'wit', u'underworld']
[u'polic', u'complaint', u'investig', u'redford']
[u'polic', u'probe', u'alburi', u'bash']
[u'polic', u'probe', u'fail', u'raid']
[u'polic', u'suspect', u'arson', u'patholog', u'centr', u'blaze']
[u'polic', u'want', u'brake', u'speed', u'driver']
[u'poor', u'decis', u'boost', u'council', u'legal', u'fee']
[u'port', u'augusta', u'author', u'bail', u'move']
[u'port', u'augusta', u'chief', u'accus', u'racist', u'comment']
[u'port', u'chief', u'claim', u'polit', u'bias', u'sack']
[u'profit', u'report', u'boost', u'share', u'market']
[u'protest', u'interrupt', u'corbi', u'drug', u'trial']
[u'push', u'second', u'river', u'cross', u'gundagai']
[u'qanta', u'profit', u'soar']
[u'govt', u'urg', u'rural', u'council', u'paperwork']
[u'woman', u'head', u'beef', u'export', u'review']
[u'refuge', u'centr', u'feel', u'rise', u'demand']
[u'report', u'find', u'unfulfil', u'health', u'promis']
[u'rescu', u'mission', u'wake', u'cyclon', u'olaf']
[u'resid', u'defend', u'domest', u'violenc', u'exhibit']
[u'resid', u'clean', u'wind', u'hail']
[u'royal', u'ancient', u'open', u'door', u'women']
[u'rspca', u'urg', u'releas', u'duck', u'plant', u'find']
[u'russia', u'lobbi', u'north', u'korea', u'resum', u'nuclear', u'talk']
[u'russian', u'advis', u'reject', u'yushchenko', u'poison', u'claim']
[u'ryan', u'take', u'windfarm', u'concern', u'govt']
[u'farmland', u'probe', u'sparkler']
[u'safeti', u'task', u'forc', u'seek', u'driver', u'care']
[u'schizophrenia', u'breakthrough', u'lead', u'earli']
[u'scientist', u'southern', u'ocean', u'cooler', u'salti']
[u'second', u'seal', u'shoot', u'crossbow']
[u'senat', u'want', u'govt', u'sell', u'medibank', u'privat']
[u'sharon', u'charg', u'campaign', u'fund', u'scandal']
[u'shire', u'upbeat', u'secur', u'flood', u'prevent', u'fund']
[u'singapor', u'set', u'timelin', u'open', u'sky', u'chang']
[u'soldier', u'charg', u'link', u'websit']
[u'southcorp', u'tell', u'sharehold', u'reject', u'foster']
[u'strong', u'aftershock', u'continu', u'shake', u'aceh']
[u'student', u'school', u'cape', u'barren', u'island']
[u'studi', u'find', u'organ', u'vege', u'bolster', u'immun']
[u'telstra', u'continu', u'lifelin', u'support']
[u'territori', u'beef', u'season', u'road', u'closur']
[u'thorn', u'expect', u'talli']
[u'thorn', u'expect', u'talli']
[u'cyclon', u'survivor']
[u'tiger', u'recent', u'form', u'irrelev', u'say', u'hauritz']
[u'tourist', u'die', u'surf', u'mishap']
[u'tsunami', u'babi', u'final', u'reunit', u'parent']
[u'tweed', u'mayor', u'see', u'conflict', u'develop', u'donat']
[u'charg', u'warragul', u'man', u'murder']
[u'dozen', u'twin', u'turn', u'school']
[u'fin', u'anti', u'terror', u'law']
[u'kill', u'smash']
[u'uefa', u'greec', u'implic', u'match', u'fix']
[u'union', u'reject', u'rise', u'claim']
[u'urgent', u'go', u'fruit', u'picker']
[u'accus', u'spi', u'iran', u'nuclear', u'sit']
[u'indec', u'progress', u'senat']
[u'plan', u'guantanamo', u'upgrad', u'intern']
[u'vaccin', u'tame', u'jack', u'jumper', u'sting']
[u'valencia', u'begin', u'uefa', u'defenc']
[u'vandal', u'damag', u'ergon', u'electr', u'equip']
[u'veteran', u'affair', u'establish', u'beryllium', u'hotlin']
[u'victim', u'hospitalis', u'brunswick', u'housefir']
[u'parti', u'major', u'abattoir', u'plan']
[u'wheatbelt', u'road', u'group', u'fund', u'return']
[u'wildcat', u'grace', u'announc', u'retir']
[u'woman', u'admit', u'offenc', u'lone', u'heart']
[u'woman', u'charg', u'stab']
[u'wood', u'chanc', u'regain', u'spot']
[u'work', u'start', u'rodeo', u'centr', u'bull']
[u'youth', u'captur', u'escapad']
[u'start', u'gunnedah', u'work']
[u'approv', u'channel', u'transmiss', u'upgrad']
[u'aborigin', u'site', u'offic', u'overse', u'roadwork']
[u'actu', u'push', u'wage', u'increas', u'pay', u'worker']
[u'adelaid', u'hotel', u'oper', u'warn', u'robberi']
[u'laud', u'indigen', u'film', u'maker', u'berlin', u'success']
[u'albani', u'await', u'cruis', u'ship']
[u'albani', u'play', u'greater', u'higher', u'educ', u'role']
[u'ambul', u'industri', u'action', u'stop', u'ahead']
[u'anthrax', u'kill', u'hippo', u'uganda']
[u'arnhem', u'thunder', u'rattl', u'katherin']
[u'ashura', u'attack', u'kill', u'wound']
[u'highlight', u'chop', u'chop', u'jail', u'sentenc']
[u'atsic', u'commission', u'criticis', u'land', u'privatis']
[u'aust', u'hotb', u'illicit', u'download']
[u'australia', u'draw', u'blood', u'tour', u'get']
[u'australian', u'urg', u'organ', u'donor']
[u'australian', u'yachtsman', u'walk', u'free', u'bali']
[u'aust', u'militari', u'train', u'examin', u'darwin']
[u'babi', u'hippo', u'name', u'yacht', u'star']
[u'badu', u'prawn', u'farm', u'plan', u'get', u'fund', u'boost']
[u'barnett', u'stay', u'lose', u'elect']
[u'beij', u'agenda', u'klim']
[u'age', u'care', u'centr', u'plan', u'inverloch']
[u'screen', u'deliv', u'game', u'action', u'ballarat']
[u'bowditch', u'clear', u'leader', u'open']
[u'bowditch', u'control', u'open']
[u'bowditch', u'earli', u'press', u'home', u'advantag']
[u'brazil', u'plan', u'vast', u'amazon', u'reserv', u'stem', u'log']
[u'brick', u'factori', u'demis', u'puzzl', u'mayor']
[u'bridg', u'plaza', u'facelift']
[u'brumbi', u'lock', u'chisholm']
[u'bullet', u'basic', u'tiger']
[u'bull', u'focus', u'form', u'bevan']
[u'bush', u'pressur', u'syria', u'pull', u'lebanon']
[u'busi', u'learn', u'reef', u'rezon']
[u'candid', u'decid', u'preferenc']
[u'cane', u'toad', u'waterway', u'make', u'presenc', u'felt']
[u'charl', u'camilla', u'chang', u'wed', u'venu']
[u'chelsea', u'like', u'face', u'barcelona', u'drogba']
[u'child', u'abus', u'alleg', u'skyrocket']
[u'chippi', u'set', u'record', u'biggest', u'order']
[u'coal', u'extens', u'plan', u'ahead']
[u'come', u'stay', u'london', u'tell', u'olymp', u'famili']
[u'commit', u'seek', u'serco', u'worker', u'job']
[u'committe', u'form', u'discuss', u'pulp', u'plan']
[u'conduct', u'committe', u'monitor', u'councillor', u'behaviour']
[u'cook', u'island', u'prepar', u'batter']
[u'council', u'hop', u'fast', u'fletcher', u'jone', u'site', u'sale']
[u'council', u'outlaw', u'public', u'gambl']
[u'council', u'discuss', u'local', u'issu', u'countri', u'labor']
[u'council', u'urg', u'adopt', u'uniform', u'beach', u'safeti', u'sign']
[u'council', u'urg', u'wider', u'distribut', u'unsniff']
[u'court', u'tell', u'murder', u'accus', u'trip', u'brisban']
[u'croc', u'look', u'snap', u'taipan']
[u'crunch', u'time', u'head', u'play', u'off']
[u'davi', u'seiz', u'earli', u'lead']
[u'demon', u'wari', u'understrength', u'lion']
[u'dentist', u'shortag', u'extend', u'north', u'west', u'wait', u'list']
[u'detect', u'happi', u'folbigg', u'sentenc', u'finalis']
[u'detect', u'stay', u'forc', u'despit', u'explos', u'threat']
[u'develop', u'keen', u'longreach', u'sport', u'facil']
[u'devil', u'quarantin']
[u'doctor', u'concern', u'hospit', u'review']
[u'doctor', u'identifi', u'broad', u'rang', u'bird', u'symptom']
[u'doubt', u'rais', u'uni', u'rural', u'campus', u'commit']
[u'confirm', u'canker', u'case']
[u'driver', u'bail', u'unlaw', u'kill', u'case']
[u'drought', u'cut', u'stock', u'number']
[u'dump', u'liber', u'backbench', u'blast', u'canal', u'plan']
[u'eddi', u'want', u'decid', u'play', u'light']
[u'take', u'trade', u'beef']
[u'everton', u'look', u'year', u'unit', u'itch']
[u'falconio', u'murder', u'trial', u'april']
[u'famili', u'reliev', u'settlement']
[u'fish', u'chip', u'help', u'power', u'communiti']
[u'charg', u'alleg', u'breach']
[u'hunt', u'go', u'forc', u'england', u'wale']
[u'gallop', u'wont', u'commit', u'prostitut', u'reform']
[u'genom', u'improv', u'treatment']
[u'govt', u'consid', u'extend', u'sniff', u'fuel', u'program']
[u'govt', u'deni', u'fashion', u'conserv', u'high', u'court']
[u'govt', u'detail', u'river', u'murray', u'flood', u'trial']
[u'govt', u'boost', u'jail', u'staff']
[u'govt', u'urg', u'recognis', u'bradman', u'birthplac']
[u'puzzl', u'baxter', u'injuri']
[u'grain', u'grower', u'board', u'member', u'surviv', u'remov']
[u'green', u'reject', u'vote', u'valu', u'concess', u'claim']
[u'group', u'say', u'smoke', u'doesnt']
[u'habib', u'offer', u'right', u'repli']
[u'hardwar', u'blame', u'star', u'war', u'test', u'failur']
[u'hobart', u'prison', u'author', u'criticis', u'inmat']
[u'hong', u'kong', u'enlist', u'australian', u'help', u'save', u'lucki']
[u'hop', u'inquiri', u'improv', u'mental', u'health', u'servic']
[u'hunter', u'wine', u'name', u'nation', u'drop']
[u'increas', u'casual', u'workforc', u'caus', u'concern']
[u'indigen', u'group', u'back', u'land', u'ownership', u'privatis']
[u'indonesia', u'say', u'journalist', u'seiz', u'iraq']
[u'inquiri', u'hear', u'councillor', u'didnt', u'report', u'conflict']
[u'inquiri', u'help', u'improv', u'teacher', u'qualiti', u'union']
[u'isra', u'reject', u'diplomat', u'post', u'controversi']
[u'israel', u'allow', u'palestinian', u'exil', u'return', u'home']
[u'israel', u'halt', u'polici', u'demolish', u'milit', u'home']
[u'judg', u'magistr', u'decid', u'fit', u'plead']
[u'kenyan', u'cricket', u'suffer', u'blow']
[u'koala', u'cull', u'public', u'relat', u'disast']
[u'labor', u'blame', u'complac', u'like', u'rate', u'rise']
[u'put', u'hand', u'test', u'berth']
[u'lennon', u'hold', u'land', u'hand', u'meet']
[u'lifesav', u'chopper', u'servic', u'retain', u'heliport', u'leas']
[u'macgil', u'advoc', u'doubl', u'delight']
[u'magpi', u'score', u'tiger']
[u'deni', u'murder', u'termin', u'partner']
[u'die', u'murray', u'valley', u'highway', u'crash']
[u'fli', u'wire', u'suffer', u'collaps', u'lung']
[u'market', u'slight', u'rate', u'rise', u'talk']
[u'martin', u'rule', u'action', u'parliament']
[u'melbourn', u'conductor', u'add', u'london', u'post', u'repertoir']
[u'melon', u'mad', u'grip', u'chinchilla']
[u'merger', u'lift', u'southern', u'cross', u'board', u'number']
[u'millar', u'year', u'drug', u'uphold']
[u'promis', u'break', u'hill', u'boost']
[u'minist', u'defend', u'road', u'fund', u'alloc']
[u'minist', u'accus', u'ignor', u'plea', u'raus']
[u'live', u'game', u'broadcast']
[u'molik', u'mauresmo', u'antwerp', u'quarter']
[u'monkey', u'tourism', u'resort', u'sale']
[u'australian', u'regist', u'organ', u'donor']
[u'moseley', u'pilkadari', u'tie', u'second', u'malaysia']
[u'call', u'extra', u'school', u'fund']
[u'remark', u'reignit', u'behaviour', u'debat']
[u'mussel', u'leas', u'plan', u'face', u'late', u'opposit']
[u'nepal', u'media', u'suffoc']
[u'promot', u'south', u'coast', u'tourism']
[u'newcastl', u'boro', u'sight', u'uefa']
[u'back', u'call', u'boost', u'rail', u'fund']
[u'miss', u'samoa', u'wake', u'cyclon', u'olaf']
[u'predict', u'townsvill', u'invest']
[u'long', u'servic', u'elder', u'casual', u'worker']
[u'real', u'distract', u'juve', u'emerson']
[u'north', u'flood', u'relief', u'fund']
[u'walter', u'strike', u'plan']
[u'announc', u'park', u'ownership', u'shake']
[u'nun', u'killer', u'elud', u'brazilian', u'author']
[u'nurs', u'accept', u'offer', u'actu', u'chief']
[u'tweak', u'like', u'brownlow']
[u'oscar', u'host', u'chris', u'rock', u'vow', u'clean']
[u'packer', u'await', u'sentenc', u'bali']
[u'pakistan', u'yield', u'use', u'lead', u'qaeda']
[u'pakistan', u'agre', u'play', u'dayer', u'ahmedabad']
[u'pakistan', u'akhtar', u'fin', u'australian', u'disco', u'jaunt']
[u'parent', u'disabl', u'dilemma', u'concern']
[u'parent', u'fear', u'school', u'violenc', u'spark', u'death']
[u'pension', u'smile', u'dental', u'appoint']
[u'pension', u'cop', u'council', u'fine', u'good', u'deed']
[u'pension', u'face', u'year', u'wait', u'dentur']
[u'perth', u'plead', u'guilti', u'sick', u'partner', u'murder']
[u'phillip', u'island', u'host', u'motogp']
[u'pilot', u'error', u'blame', u'near', u'miss']
[u'plan', u'dept', u'back', u'smaller', u'port', u'botani', u'expans']
[u'give', u'hope', u'ethanol', u'plant']
[u'pngs', u'crisi', u'shock', u'aid', u'bodi', u'chief']
[u'struggl', u'illeg', u'trade']
[u'polic', u'begin', u'murder', u'probe', u'hous', u'blaze']
[u'polic', u'kill', u'melbourn', u'raid']
[u'policeman', u'charg', u'trial', u'verdict', u'delay']
[u'polic', u'promis', u'continu', u'speed', u'crackdown']
[u'polic', u'reach', u'agreement', u'staff', u'concern']
[u'polic', u'seek', u'public', u'help', u'solv', u'toddler', u'death']
[u'post', u'mortem', u'lismor', u'park', u'bodi']
[u'prison', u'deni', u'kill', u'melbourn', u'crime', u'boss']
[u'project', u'manag', u'apologis', u'hous', u'wait']
[u'properti', u'council', u'say', u'asbesto', u'law', u'unclear']
[u'public', u'urg', u'bushfir', u'awar']
[u'push', u'chang', u'judgment']
[u'pyrmont', u'develop', u'disast', u'claim', u'reject']
[u'woman', u'take', u'rein', u'telstra', u'rural', u'board']
[u'governor', u'vagu', u'rate', u'rise', u'time']
[u'refuge', u'continu', u'enter', u'darfur', u'camp', u'worker']
[u'rehab', u'play', u'major', u'role', u'juvenil', u'centr', u'gallop']
[u'reserv', u'bank', u'chief', u'brief', u'parliamentari', u'committe']
[u'review', u'find', u'violent', u'media', u'affect', u'kid', u'behaviour']
[u'rogerson', u'jail', u'lie', u'corrupt', u'hear']
[u'ronaldo', u'injuri', u'blow', u'owen', u'real', u'chanc']
[u'ruddock', u'deni', u'diplomat', u'expuls', u'link']
[u'ruddock', u'link', u'isra', u'diplomat', u'expuls']
[u'rugbi', u'prepar', u'tough', u'game']
[u'rumsfeld', u'defend', u'sensibl', u'bunker', u'buster', u'studi', u'fund']
[u'ruud', u'readi', u'stay', u'unit']
[u'african', u'diamond', u'miner', u'explor', u'kimberley']
[u'pressur', u'chang', u'oversea', u'train', u'doctor']
[u'deepen', u'nepot', u'claim']
[u'scientist', u'global', u'warm', u'undeni']
[u'secur', u'agenda', u'aceh', u'peac', u'talk']
[u'abus', u'victim', u'seek', u'damag', u'anglican', u'church']
[u'shaw', u'plead', u'guilti', u'neglig', u'drive']
[u'shire', u'cast', u'doubt', u'safe', u'hous', u'plan']
[u'shoaib', u'pull', u'pakistan', u'india', u'tour']
[u'siren', u'joke', u'backfir', u'polic']
[u'mend']
[u'solomon', u'polic', u'minist', u'charg', u'theft']
[u'space', u'confer', u'explor', u'benefit', u'joint', u'project']
[u'spanish', u'footbal', u'embroil', u'racist']
[u'stanhop', u'wont', u'foot', u'airport']
[u'sydney', u'hobart', u'chang', u'increas', u'entri']
[u'sydney', u'mother', u'clear', u'son', u'murder']
[u'teen', u'sentenc', u'toddler', u'assault']
[u'terrorist', u'attack', u'wont', u'stop', u'govt', u'carr']
[u'thailand', u'arrest', u'bomb', u'suspect']
[u'thorp', u'need', u'flee', u'fish', u'bowl', u'beij']
[u'toddler', u'hospit']
[u'stand', u'offic', u'amidst', u'bash', u'claim']
[u'troop', u'timor', u'face', u'dengu', u'threat']
[u'truck', u'driver', u'ram', u'car', u'drag', u'race', u'anger']
[u'turnbal', u'tour', u'put', u'styx', u'spotlight']
[u'turnbul', u'set', u'prove', u'green', u'credenti']
[u'twin', u'baghdad', u'attack', u'kill', u'wind']
[u'ullrich', u'eager', u'armstrong', u'tour']
[u'union', u'claim', u'minist', u'offic', u'know', u'walter', u'woe']
[u'union', u'court', u'worsley', u'woe']
[u'armi', u'paper', u'abus', u'claim']
[u'limit', u'class', u'action', u'lawsuit']
[u'rat', u'outlook', u'drag', u'stock']
[u'readi', u'resum', u'militari', u'tie', u'indonesia']
[u'victorian', u'farmer', u'locust', u'watch']
[u'waratah', u'impress', u'super', u'warm']
[u'word', u'erupt', u'maitland', u'plan']
[u'warrumbungl', u'fluorid', u'town', u'water']
[u'wide', u'lender', u'post', u'near', u'half', u'year', u'profit']
[u'wildeloo', u'rock', u'victim']
[u'willi', u'nelson', u'cancel', u'region', u'victorian']
[u'wine', u'grower', u'join', u'forc', u'improv', u'busi']
[u'xstrata', u'extend', u'share', u'offer']
[u'youth', u'sentenc', u'brisban', u'street', u'brawl']
[u'yuschenko', u'phone', u'tap', u'elect', u'campaign']
[u'afghan', u'children', u'fear', u'dead', u'cold', u'snap']
[u'clear', u'question', u'lebanon', u'bomb']
[u'question', u'sydney', u'hariri', u'bomb']
[u'worker', u'aceh', u'warn', u'possibl', u'terrorist']
[u'allenbi', u'content']
[u'anderson', u'show', u'exit', u'door', u'wale']
[u'anzac', u'trade', u'howard', u'agenda']
[u'argentin', u'forc', u'chief', u'sack', u'amid', u'drug']
[u'armidal', u'rescu', u'seven', u'week']
[u'arsenal', u'stick', u'foreign', u'legion']
[u'atsic', u'move', u'away', u'asset']
[u'author', u'shortlist', u'intern', u'booker']
[u'bodi', u'miss', u'walker']
[u'bowditch', u'remain', u'cautious', u'open']
[u'bowditch', u'rid', u'rollercoast', u'lead', u'open']
[u'brisban', u'lord', u'mayor', u'felt', u'safer', u'york']
[u'bullet', u'grab', u'home', u'final']
[u'burgess', u'hit', u'high', u'spot', u'adelaid']
[u'bush', u'wont', u'rule', u'militari', u'action', u'iran']
[u'central', u'market', u'draw', u'crowd']
[u'centuri', u'dynam', u'robot', u'feet']
[u'champion', u'triathlet', u'final', u'race', u'hobart']
[u'charg', u'reduc', u'ghraib', u'guard', u'england']
[u'chines', u'offici', u'push', u'north', u'korea', u'talk']
[u'clean', u'storm', u'lash', u'sydney']
[u'council', u'tackl', u'alga', u'torren', u'lake']
[u'court', u'rule', u'doctor', u'overrid', u'patient', u'wish']
[u'croc']
[u'croc', u'king']
[u'darwin', u'rememb', u'japanes', u'bomb']
[u'dog', u'good', u'understrength', u'swan']
[u'eagl', u'earn', u'brag', u'right', u'west']
[u'eagl', u'western', u'derbi']
[u'leader', u'begin', u'tsunami', u'tour']
[u'flame', u'resist', u'ranger', u'wnbl', u'crown']
[u'forest', u'endang', u'list', u'concern', u'busi']
[u'kill', u'suicid', u'bomb', u'baghdad']
[u'french', u'polynesian', u'leader', u'oust']
[u'coat', u'wig', u'donat', u'lankan', u'tsunami']
[u'gallop', u'welcom', u'nurs', u'strike', u'repriev']
[u'govt', u'urg', u'assist', u'atsic', u'asset', u'transfer']
[u'healthi', u'devil', u'seek', u'breed', u'program']
[u'howard', u'deni', u'break', u'rat', u'promis']
[u'howard', u'touch']
[u'indonesia', u'appeal', u'journalist']
[u'inner', u'citi', u'light', u'concern', u'premier']
[u'iran', u'agre', u'putin', u'nuclear', u'weapon', u'demand']
[u'iran', u'nuclear', u'weapon', u'plan', u'russia']
[u'iraq', u'group', u'releas', u'video', u'abduct', u'indonesian']
[u'isinbayeva', u'break', u'world', u'indoor', u'record']
[u'kersten', u'claim', u'world', u'crown']
[u'kiwi']
[u'klien', u'name', u'bull', u'second', u'driver']
[u'luczak', u'brazil', u'open']
[u'magic', u'mcgrath', u'clean', u'kiwi']
[u'magpi', u'score', u'tiger']
[u'major', u'disast', u'declar', u'american', u'samoa']
[u'charg', u'mother', u'murder']
[u'die', u'tree', u'accid']
[u'dead', u'frankston']
[u'sever', u'burn', u'farm', u'accid']
[u'man', u'nose', u'bite', u'attempt', u'robberi']
[u'mcgrath', u'break', u'later', u'order', u'partnership']
[u'molik', u'antwerp', u'semi']
[u'monster', u'star', u'burst', u'detect']
[u'mosul', u'attack', u'kill', u'soldier']
[u'nasa', u'set', u'shuttl', u'launch', u'date']
[u'fuel', u'initi', u'welcom', u'indigen']
[u'york', u'diner', u'hang']
[u'chang', u'uranium', u'mine', u'gallop', u'say']
[u'look', u'nurs']
[u'kill', u'injur', u'perth', u'crash']
[u'packer', u'releas', u'bali', u'jail']
[u'patriot', u'bruschi', u'leav', u'hospit']
[u'pere', u'propos', u'sell', u'gaza', u'strip', u'settlement']
[u'polic', u'charg', u'amid', u'ireland', u'money', u'launder']
[u'polic', u'investig', u'apart', u'fire']
[u'polic', u'investig', u'gold', u'coast', u'park', u'attack']
[u'polic', u'link', u'money', u'launder', u'suspect']
[u'polic', u'melbourn', u'shoot', u'victim']
[u'polic', u'search', u'miss', u'walker']
[u'polic', u'hold', u'intern', u'investig']
[u'public', u'invit', u'view', u'water', u'suppli', u'solut']
[u'quak', u'caus', u'panic', u'indonesia']
[u'quak', u'hit', u'sulawesi', u'region', u'report']
[u'question', u'rais', u'ozon', u'legisl', u'delay']
[u'road', u'train', u'caus', u'highway', u'closur']
[u'africa', u'aid', u'death', u'rise']
[u'saint', u'classi', u'gutsi', u'hawk']
[u'score', u'kill', u'attack', u'iraq', u'shiit']
[u'secur', u'tighten', u'iraq', u'shiit', u'festiv']
[u'serco', u'driver', u'strike']
[u'serco', u'driver', u'hour', u'strike']
[u'servic', u'commemor', u'darwin', u'bomb']
[u'seven', u'kill', u'bomb', u'near', u'baghdad']
[u'sexi', u'scent', u'conquer', u'cockroach']
[u'situat', u'deterior', u'darfur', u'say']
[u'south', u'dragon', u'sword']
[u'teen', u'charg', u'taxi', u'robberi']
[u'tendulkar', u'comeback']
[u'thongchai', u'lead', u'malaysian', u'open']
[u'tourist', u'lightn', u'bolt']
[u'releas', u'melbourn', u'shoot', u'death']
[u'chief', u'embroil', u'scandal', u'vow']
[u'union', u'call', u'child', u'protect', u'worker']
[u'staff', u'agre', u'deal']
[u'unitab', u'announc', u'half', u'year', u'profit']
[u'panel', u'back', u'plea', u'human', u'clone']
[u'market', u'rise', u'despit', u'news', u'inflat']
[u'senat', u'russia', u'suspens']
[u'supermen', u'chelsea', u'boss', u'mourinho']
[u'rush', u'team', u'congo', u'plagu', u'outbreak']
[u'smith', u'pucker', u'journo']
[u'worker', u'celebr', u'mint', u'birthday']
[u'arrest', u'violenc']
[u'drown', u'ferri', u'accid']
[u'lose', u'power', u'increas']
[u'australia', u'owe', u'habib', u'beazley']
[u'aust', u'take', u'senior', u'command', u'post', u'iraq']
[u'babayaro', u'doubt', u'chelsea', u'clash']
[u'barca', u'boost', u'confid', u'madrid', u'moral', u'slump']
[u'barnett', u'flag', u'inmat', u'prison']
[u'beazley', u'demand', u'region', u'grant', u'program']
[u'beazley', u'insist', u'pretti']
[u'beehiv', u'vandal', u'concern', u'keeper']
[u'bird', u'pandem', u'potenti']
[u'bodi', u'wait', u'formal']
[u'boss', u'dutch', u'domin', u'world']
[u'bowditch', u'increas', u'royal', u'adelaid', u'lead']
[u'bowditch', u'lead', u'seven', u'royal', u'adelaid']
[u'bowditch', u'win', u'open']
[u'break', u'hand', u'sidelin', u'giteau']
[u'bull', u'halt', u'tiger', u'momentum']
[u'bush', u'clinton', u'aceh', u'damag']
[u'bush', u'clinton', u'land', u'lanka']
[u'bush', u'say', u'europ', u'pillar', u'free', u'world']
[u'busi', u'warn', u'scam']
[u'cabinet', u'consid', u'restructur']
[u'care', u'flood', u'restor', u'iraq', u'marsh']
[u'carlton', u'bomber', u'blue']
[u'carlton', u'hand', u'bomber', u'blue']
[u'clark', u'howard', u'agre', u'gallipoli', u'servic']
[u'clone', u'success', u'thailand']
[u'communiti', u'approach', u'urg', u'child', u'road', u'safeti']
[u'concern', u'rais', u'plan', u'law']
[u'coptic', u'manuscript', u'unearth', u'egyptian', u'tomb']
[u'demon', u'outgun', u'underman', u'lion']
[u'depos', u'haitian', u'offici', u'escap', u'prison']
[u'doctor', u'search', u'solut', u'rural', u'shortag']
[u'dozen', u'die', u'bangladesh', u'ferri', u'capsiz']
[u'earthquak', u'shake', u'central', u'japan']
[u'egyptian', u'doctor', u'oper', u'head', u'babi']
[u'eleph', u'fetch', u'jumbo', u'price']
[u'eleph', u'crush', u'keeper', u'austrian']
[u'everton', u'missil', u'thrower']
[u'ferguson', u'bank', u'guard', u'unit', u'titl', u'push']
[u'film', u'maker', u'return', u'berlin', u'festiv', u'award']
[u'form', u'doesnt', u'matter', u'tiger', u'bull', u'contest']
[u'player', u'smart', u'seek', u'select']
[u'haitian', u'offici', u'captur']
[u'presid', u'tour', u'tsunami', u'sumatra']
[u'gallop', u'base', u'campaign', u'launch', u'trust']
[u'girl', u'injur', u'smash', u'backyard']
[u'global', u'warm', u'worsen', u'pollut', u'report']
[u'govt', u'consid', u'nightclub', u'curfew', u'curb', u'violenc']
[u'green', u'seek', u'reduc', u'super']
[u'habib', u'centrelink', u'payment']
[u'highway', u'reopen', u'road', u'train']
[u'hill', u'warn', u'troop', u'protect', u'worker']
[u'hopkin', u'remain', u'undisput', u'middleweight', u'king']
[u'hull', u'win', u'alpg', u'player', u'championship']
[u'india', u'sport', u'star', u'lend', u'hand', u'tsunami', u'victim']
[u'investig', u'continu', u'melbourn', u'shoot']
[u'israel', u'cabinet', u'vote', u'gaza', u'withdraw']
[u'italian', u'ralli', u'iraq', u'hostag']
[u'japanes', u'studi', u'tsunami', u'warn']
[u'kiwi', u'prove', u'theyr', u'australia', u'class']
[u'krajicek', u'tell', u'dont', u'want', u'like', u'want']
[u'liber', u'wont', u'candid', u'werriwa']
[u'madonna', u'sue', u'consult']
[u'maher', u'steer', u'bull']
[u'charg', u'frankston', u'assault']
[u'die', u'tree']
[u'mauresmo', u'end', u'molik', u'antwerp']
[u'mclaren', u'tempt', u'rebel', u'championship']
[u'mear', u'win', u'second', u'gold', u'sydney']
[u'milan', u'overshadow', u'shevchenko', u'injuri']
[u'motorcyclist', u'hit', u'fenc', u'die']
[u'begin', u'drive', u'nurs']
[u'south', u'coast', u'lash', u'storm']
[u'warn', u'attack', u'aceh', u'worker']
[u'olymp', u'commiss', u'give', u'london', u'boost']
[u'opposit', u'call', u'radiologist']
[u'packer', u'quiet', u'releas', u'money']
[u'packer', u'speak', u'jail', u'ordeal']
[u'packer', u'wait', u'permiss', u'leav', u'bali']
[u'pair', u'injur', u'smash']
[u'pakistan', u'recal', u'khan', u'india', u'akhtar', u'pull']
[u'polic', u'confirm', u'cash', u'belfast', u'bank', u'robberi']
[u'polic', u'investig', u'adelaid', u'shoot']
[u'polic', u'investig', u'central', u'coast', u'death']
[u'polic', u'seek', u'help', u'secur', u'guard', u'robber']
[u'portugues', u'poll', u'socialist', u'expect']
[u'power', u'local', u'derbi']
[u'push', u'coordin', u'approach', u'tourism']
[u'doctor', u'campaign', u'safer', u'work', u'hour']
[u'race', u'inquiri', u'head', u'seek', u'extens']
[u'rain', u'wash', u'play']
[u'region', u'tour', u'aim', u'reduc', u'anim', u'cruelti']
[u'repair', u'indigen', u'hous', u'monitor']
[u'rooney', u'make', u'win', u'return', u'unit', u'march']
[u'roo', u'cat', u'canberra']
[u'ruddock', u'deni', u'daughter', u'relationship', u'lati']
[u'sack', u'worker', u'alleg', u'gorilla', u'breast']
[u'school', u'fear', u'fund', u'increas', u'truanci', u'rate']
[u'scud', u'davi', u'career', u'hang', u'balanc']
[u'secur', u'review', u'announc', u'australian', u'tour']
[u'continu', u'sydney', u'storm', u'clean']
[u'sever', u'storm', u'warn', u'sydney', u'southern']
[u'shiit', u'holi', u'bomb']
[u'someon', u'go', u'hurt', u'pont', u'tell', u'kiwi']
[u'african', u'carmen', u'win', u'berlin', u'golden', u'bear']
[u'storm', u'damag', u'drench']
[u'storm', u'sweep']
[u'tafe', u'look', u'teacher']
[u'taipan', u'sixer', u'thriller']
[u'thompson', u'take', u'hobart', u'triathlon']
[u'thongchai', u'cours', u'retain', u'malaysian', u'titl']
[u'thongchai', u'retain', u'malaysian', u'open', u'titl']
[u'thousand', u'attend', u'mardi', u'gras', u'fair']
[u'thousand', u'ralli', u'britain', u'hunt']
[u'iraqi', u'kill', u'twin', u'blast']
[u'tiger', u'snatch', u'long', u'await', u'trophi']
[u'timor', u'vet', u'rememb', u'fall', u'comrad']
[u'togo', u'face', u'sanction']
[u'dead', u'wagin', u'smash']
[u'rescu', u'catamaran', u'sink']
[u'marin', u'kill', u'combat', u'iraq']
[u'violenc', u'mark', u'iraq', u'shiit', u'festiv']
[u'woman', u'trap', u'collis']
[u'yudhoyono', u'play', u'aceh', u'terror', u'warn']
[u'zvonareva', u'defend', u'memphi', u'crown', u'roddick', u'withdraw']
[u'abbott', u'appeal', u'son', u'privaci']
[u'abbott', u'reunit', u'long', u'lose']
[u'acoss', u'target', u'high', u'incom', u'earner']
[u'govt', u'defend', u'crime', u'spend']
[u'women', u'urg', u'maintain', u'breast', u'screen']
[u'advertis', u'revenu', u'boost', u'fairfax']
[u'forc', u'plane', u'close', u'comfort']
[u'airport', u'fume', u'disrupt', u'thousand']
[u'airport', u'reopen', u'mysteri', u'leak']
[u'black', u'wilson', u'injur', u'styri']
[u'qaeda', u'leader', u'warn', u'attack', u'unstopp']
[u'ambul', u'servic', u'offic', u'recognis', u'bushfir']
[u'anzac', u'medic', u'team', u'exit', u'aceh', u'deadlin', u'near']
[u'appl', u'island', u'savour', u'fruit', u'victori']
[u'asian', u'invest', u'eat', u'axa', u'profit']
[u'assuncao', u'song', u'beti', u'streak']
[u'atsic', u'commission', u'slam', u'seizur']
[u'aust', u'asean', u'free', u'trade', u'talk', u'begin']
[u'australian', u'complaint', u'tactic', u'coach']
[u'australian', u'help', u'rehabilit', u'tsunami', u'damag', u'reef']
[u'bangladesh', u'ferri', u'capsiz', u'dead']
[u'basslink', u'damag', u'report', u'day']
[u'beatti', u'unhappi', u'race', u'inquiri', u'cost', u'blow']
[u'beckham', u'celebr', u'arriv']
[u'berri', u'relish', u'red']
[u'bodi', u'identifi', u'miss', u'german', u'backpack']
[u'brack', u'put', u'brake', u'reduc', u'drive', u'plan']
[u'brave', u'action', u'recognis']
[u'brave', u'polic', u'recognis', u'plane', u'crash', u'rescu']
[u'build', u'compani', u'tight', u'lip', u'safeti', u'concern']
[u'driver', u'strike']
[u'bush', u'say', u'europ', u'tie', u'surviv', u'iraq', u'disput']
[u'support', u'mental']
[u'canberra', u'secur', u'nation', u'teach', u'honour']
[u'canberra', u'water', u'hold', u'despit', u'bushfir']
[u'carlsen', u'stun', u'mirnyi', u'captur', u'memphi', u'titl']
[u'chalabi', u'claim', u'number', u'iraqi']
[u'claim', u'global', u'warm', u'threaten', u'australia', u'water']
[u'clinton', u'bush', u'visit', u'lanka', u'tsunami', u'damag', u'coast']
[u'coalit', u'promis', u'extra', u'polic']
[u'cole', u'recal', u'beef', u'rissol']
[u'colleg', u'warn', u'bush', u'birth', u'threat']
[u'costa', u'invit', u'hear', u'bypass', u'rout', u'fear']
[u'council', u'consid', u'cenotaph', u'secur', u'upgrad']
[u'council', u'urg', u'rethink', u'mussel', u'leas', u'motion']
[u'council', u'urg', u'rethink', u'water', u'plan', u'support']
[u'cowra', u'petit', u'seek', u'polic', u'number', u'boost']
[u'craigi', u'blacklock', u'shine', u'widn', u'hull']
[u'croc', u'attack', u'rescu', u'earn', u'pair', u'braveri', u'award']
[u'croc', u'coach', u'confid', u'play', u'off']
[u'death', u'toll', u'rise', u'bangladesh', u'ferri', u'capsiz']
[u'demolit', u'show', u'appreci', u'progress']
[u'develop', u'breath', u'life', u'dept', u'hous']
[u'dozen', u'treat', u'suspect', u'airport', u'leak']
[u'extinct', u'plant', u'reviv', u'seed']
[u'keep', u'possibl', u'nino', u'weather', u'pattern']
[u'fall', u'giant', u'leed', u'fight']
[u'fall', u'home', u'sale', u'match', u'fall', u'price']
[u'farm', u'group', u'take', u'telstra', u'sale', u'protest', u'region']
[u'fatal', u'rescu', u'earn', u'braveri', u'recognit']
[u'feder', u'reclaim', u'win', u'feel']
[u'out', u'panel']
[u'socceroo', u'foster', u'appoint', u'player', u'union']
[u'foster', u'revis', u'southcorp']
[u'sentenc', u'casino', u'brawl']
[u'freedom', u'recreat', u'histori']
[u'gaza', u'pullout', u'hardest', u'decis', u'career', u'sharon']
[u'gidget', u'actress', u'sandra', u'die']
[u'giteau', u'injuri', u'open', u'door', u'rooki']
[u'glori', u'coach', u'defend', u'son', u'sign']
[u'gonzo', u'journalist', u'hunter', u'thompson', u'die']
[u'govt', u'ask', u'hospit', u'plan']
[u'govt', u'criticis', u'confer', u'cost']
[u'govt', u'defend', u'aceh', u'travel', u'warn']
[u'govt', u'hop', u'support', u'collect', u'bargain']
[u'govt', u'move', u'send', u'workplac', u'death', u'coron']
[u'govt', u'pledg', u'tutor', u'program', u'track']
[u'govt', u'seek', u'jail', u'phone', u'trial', u'stop', u'terror', u'plan']
[u'govt', u'see', u'crack', u'opposit', u'parol', u'plan']
[u'govt', u'stand', u'indigen', u'jail', u'rat']
[u'govt', u'releas', u'paper', u'indigen', u'welfar']
[u'govt', u'subsidis', u'cattl', u'tag']
[u'govt', u'work', u'busi', u'manag', u'secur', u'risk']
[u'govt', u'urg', u'sack', u'minist', u'north', u'west', u'road']
[u'back', u'claim', u'rural', u'doctor', u'exploit']
[u'hadden', u'challeng', u'clarifi', u'independ', u'claim']
[u'harbhajan', u'benefit', u'chuck', u'law']
[u'harrass', u'alleg', u'claim', u'refuge', u'chief']
[u'harrison', u'back', u'best', u'perth']
[u'hear', u'begin', u'polic', u'misconduct', u'claim']
[u'henri', u'walker', u'eltin', u'administr', u'grant', u'extens']
[u'howard', u'clark', u'discuss', u'dignifi', u'anzac', u'commemor']
[u'howard', u'continu', u'econom', u'tour']
[u'hunt', u'hoax', u'accid']
[u'hunt', u'pharmaci', u'bandit']
[u'hussey', u'replac', u'katich', u'middl', u'order']
[u'hockey', u'game', u'make', u'record', u'book']
[u'run', u'scar', u'say', u'shoaib']
[u'inact', u'leav', u'kimberley', u'kid', u'wander', u'civic']
[u'indonesian', u'journalist', u'free', u'iraq']
[u'iraqi', u'present', u'abduct', u'mosul']
[u'israel', u'free', u'palestinian', u'prison']
[u'isra', u'cabinet', u'approv', u'gaza', u'plan']
[u'justic', u'complex', u'subbi', u'work']
[u'kewel', u'target', u'champion', u'leagu', u'return']
[u'knight', u'fine', u'player']
[u'knight', u'question', u'player', u'claim']
[u'labor', u'elect', u'promis', u'cost']
[u'landslid', u'rescu', u'earn', u'braveri', u'award']
[u'lennon', u'muse', u'sydney', u'devonport', u'ferri', u'futur']
[u'lennon', u'set', u'limit', u'hospit', u'rescu', u'packag']
[u'line', u'load', u'board', u'plan', u'lift', u'number']
[u'kill', u'china', u'skate', u'rink']
[u'plead', u'guilti', u'tram', u'rock', u'attack']
[u'market', u'record', u'slight', u'rise']
[u'mauresmo', u'deni', u'venus']
[u'mayor', u'defend', u'sydney', u'workshop', u'attend']
[u'mayor', u'fear', u'wine', u'merger', u'plan']
[u'mayor', u'question', u'basin', u'water', u'licenc', u'moratorium']
[u'mayor', u'beat', u'review']
[u'melbourn', u'host', u'region', u'convent']
[u'mental', u'health', u'expert', u'seek', u'support', u'fund', u'boost']
[u'minist', u'say', u'sinn', u'fein', u'leader', u'boss']
[u'mitchel', u'promis', u'help', u'australian', u'rugbi']
[u'moyn', u'council', u'consid', u'port', u'fairi']
[u'overse', u'start', u'highway', u'work']
[u'reveal', u'moruya', u'riot', u'fear']
[u'mysteri', u'ill', u'close', u'termin']
[u'napthin', u'pleas', u'rescu', u'chopper', u'plan']
[u'final', u'format', u'come', u'critic']
[u'burn', u'unit', u'unveil']
[u'sale', u'soar']
[u'newcastl', u'end', u'chelsea', u'quadrupl']
[u'tool', u'predict', u'benefit', u'mammogram']
[u'water', u'restrict', u'melbourn']
[u'nicholson', u'return', u'crunch', u'match']
[u'nightclub', u'curfew', u'see', u'resort']
[u'excus', u'queensland', u'say', u'maher']
[u'stop', u'mcgrath', u'comeback', u'bandwagon']
[u'victoria', u'clean', u'storm']
[u'play', u'polit', u'indigen', u'educ', u'fund']
[u'opposit', u'attack', u'draft', u'workplac', u'death']
[u'opposit', u'attack', u'gallop', u'educ', u'polici']
[u'opposit', u'claim', u'homeland', u'secur', u'fragment']
[u'opposit', u'say', u'high', u'hec', u'fee', u'deter', u'student']
[u'parti', u'offer', u'derbi', u'wharf', u'fund']
[u'hold', u'region', u'public', u'hear']
[u'pickett', u'send', u'direct', u'tribun']
[u'plan', u'welfar', u'overhaul']
[u'govt', u'warn', u'polic', u'stamp', u'corrupt']
[u'pocket', u'ashtray', u'campaign', u'target', u'butt', u'hazard']
[u'polic', u'charg', u'gold', u'coast', u'bouncer']
[u'polic', u'defend', u'action', u'case', u'miss', u'backpack']
[u'polic', u'evid', u'knight', u'probe']
[u'policeman', u'join', u'braveri', u'award', u'recognit']
[u'polic', u'plan', u'charg', u'driver']
[u'polic', u'seek', u'help', u'catch', u'flasher']
[u'portug', u'socialist', u'absolut', u'major']
[u'portugues', u'socialist', u'outright', u'major', u'exit']
[u'posthum', u'award', u'recognis', u'brother', u'braveri']
[u'price', u'squeez', u'anger', u'citrus', u'grower']
[u'protest', u'seek', u'north', u'east', u'log']
[u'fight', u'forest', u'corporatis']
[u'public', u'develop', u'idea', u'boost', u'tourism']
[u'public', u'brief', u'health', u'servic', u'chang']
[u'public', u'wall', u'silenc']
[u'quak', u'time', u'prove', u'hard', u'predict']
[u'question', u'rais', u'clean', u'arrest', u'scene']
[u'race', u'probe', u'cost']
[u'ract', u'back', u'road', u'rule']
[u'ranger', u'break', u'parkhead', u'jinx']
[u'record', u'half', u'year', u'profit', u'bluescop', u'steel']
[u'region', u'cooper', u'stop', u'bioterror', u'hill']
[u'report', u'pressur', u'govt', u'transport', u'fund']
[u'resid', u'emerg', u'phone', u'number', u'remind']
[u'rest', u'kalli', u'sole', u'absente', u'strong', u'squad']
[u'reward', u'offer', u'melbourn', u'loch', u'ness']
[u'road', u'fund', u'realloc']
[u'ruddock', u'busi', u'terrorist', u'warn']
[u'rule', u'get', u'player', u'knight']
[u'safeti', u'concern', u'rais', u'darwin', u'plant']
[u'sampdoria', u'press', u'champion', u'leagu', u'claim']
[u'scheme', u'address', u'bird', u'strike', u'blackout']
[u'scientist', u'warn', u'depriv', u'youngster']
[u'scott', u'claim', u'share', u'lead', u'raini']
[u'second', u'suspect', u'murder', u'arrest', u'brazil']
[u'senat', u'odd', u'colleagu', u'green', u'zone']
[u'sideway', u'win', u'writer', u'guild', u'award']
[u'remain', u'hospit']
[u'skill', u'centr', u'see', u'secur', u'defenc']
[u'earn', u'braveri', u'award', u'rescu', u'father']
[u'spain', u'say', u'constitut', u'exit', u'poll']
[u'spotlight', u'fall', u'employe', u'sharehold', u'scheme']
[u'stat', u'expos', u'seri', u'cheat']
[u'steel', u'giant', u'announc', u'record', u'profit']
[u'studi', u'consid', u'communiti', u'farm', u'plan']
[u'surfwear', u'icon', u'rid', u'profit', u'wave']
[u'telstra', u'repay', u'wholesal', u'broadband']
[u'tendulkar', u'pakistan', u'seri']
[u'test', u'begin', u'wild', u'control']
[u'thousand', u'sick', u'chile', u'seafood', u'bacteria', u'outbreak']
[u'milit', u'kill', u'russian', u'forc']
[u'tiger', u'arriv', u'home', u'hero', u'welcom']
[u'tissu', u'giant', u'help', u'eas', u'demand']
[u'trio', u'recognis', u'brave', u'effort']
[u'dead', u'indonesian', u'landslid']
[u'uni', u'fiji', u'campus', u'spark', u'door', u'claim']
[u'impos', u'curfew', u'rebelli', u'ramadi']
[u'militari', u'hold', u'secret', u'meet', u'iraqi']
[u'export', u'stop', u'bush', u'kill', u'chavez']
[u'victim', u'protest', u'onlin', u'bushfir', u'inquiri', u'delay']
[u'virgin', u'blue', u'termin', u'evacu', u'staff', u'fall']
[u'canal', u'wors', u'franklin', u'brown']
[u'elect', u'campaign', u'enter', u'final', u'week']
[u'waratah', u'prefer', u'palu', u'hoil']
[u'waratah', u'shed', u'blood', u'sweat', u'tear']
[u'watchdog', u'highlight', u'bigger', u'elector', u'slush', u'fund']
[u'watson', u'bull']
[u'wead', u'burn', u'bush', u'secret', u'dope', u'tap']
[u'weight', u'gain', u'link', u'dementia']
[u'whistleblow', u'question', u'xstrata', u'independ']
[u'william', u'hail', u'francou', u'comeback']
[u'worker', u'strike', u'submarin', u'manufactur']
[u'write', u'wall', u'age', u'lehmann', u'waugh']
[u'youth', u'curfew', u'plan', u'unlik']
[u'youth', u'help', u'revitalis', u'countri', u'show']
[u'zimbabw', u'opposit', u'launch', u'elect', u'race']
[u'kill', u'indonesian', u'plane', u'crash']
[u'abus', u'case', u'rise', u'news', u'payout']
[u'accc', u'target', u'spam', u'scam']
[u'aceh', u'peac', u'talk', u'struggl', u'autonomi', u'secur']
[u'seek', u'chang', u'mental', u'health']
[u'troop', u'return', u'home', u'african', u'mission']
[u'airport', u'leak', u'baffl', u'author']
[u'promis', u'high', u'school', u'revamp', u'fund']
[u'alp', u'hospit', u'plan', u'consid', u'overdu']
[u'arrest', u'follow', u'discoveri', u'cannabi', u'plant']
[u'drop', u'despit', u'bank', u'strength']
[u'aust', u'offic', u'jail', u'sierra', u'leon', u'indec']
[u'australian', u'chines', u'polic', u'join', u'forc']
[u'australia', u'step', u'iraq', u'commit']
[u'award', u'win', u'journalist', u'succumb', u'cancer']
[u'barnett', u'challeng', u'guarante', u'canal', u'cost']
[u'beazley', u'admit', u'tough', u'fight', u'loom']
[u'beazley', u'offer', u'albani', u'candid', u'support']
[u'beazley', u'popular', u'edg', u'poll']
[u'beazley', u'take', u'succour', u'poll', u'result']
[u'beirut', u'protest', u'pressur', u'syria', u'withdraw']
[u'benitez', u'blast', u'farina', u'kewel', u'claim']
[u'bomb', u'attack', u'kill', u'soldier', u'iraq']
[u'brighter', u'sign', u'hunter', u'jobless']
[u'brown', u'issu', u'upper', u'hous', u'warn']
[u'bushfir', u'affect', u'resid', u'start', u'legal']
[u'bush', u'push', u'europ', u'middl', u'east', u'democraci']
[u'busi', u'lose', u'centr', u'demis']
[u'californian', u'mudslid', u'kill']
[u'go', u'victorian', u'polic', u'offic']
[u'camera', u'equip', u'spec', u'restor', u'sight']
[u'canal', u'plan', u'spark', u'aborigin', u'opposit']
[u'bomb', u'kill', u'iraqi', u'soldier']
[u'cigarett', u'sale', u'kid', u'rise']
[u'conserv', u'group', u'call', u'marin', u'protect']
[u'council', u'back', u'summerhil', u'wast', u'plan']
[u'council', u'bicker', u'continu', u'tsunami', u'donat']
[u'council', u'consid', u'croc', u'concern']
[u'council', u'consid', u'hous', u'delay', u'compo', u'offer']
[u'council', u'consid', u'trademark', u'byron']
[u'council', u'debat', u'like', u'drink', u'water', u'plan']
[u'council', u'look', u'extend', u'alcohol', u'ban']
[u'council', u'look', u'restrict', u'aborigin', u'migrat']
[u'councillor', u'like', u'yarriambiack', u'council']
[u'council', u'polic', u'see', u'palm', u'youth', u'club']
[u'council', u'say', u'pool', u'cost', u'blowout']
[u'council', u'consid', u'increas', u'lake', u'water', u'level']
[u'council', u'crack', u'holiday', u'rental']
[u'council', u'follow', u'polic', u'station', u'worri']
[u'council', u'urg', u'rethink', u'rural', u'build', u'restrict']
[u'council', u'want', u'bypass', u'interchang']
[u'crew', u'contain', u'smithton']
[u'custom', u'seiz', u'fight', u'knife']
[u'cyclon', u'rush', u'american', u'samoa']
[u'dead', u'quak', u'rock', u'southern', u'iran']
[u'disabl', u'home', u'complet', u'year']
[u'disagr', u'emerg', u'iraq', u'wheat', u'debt']
[u'divid', u'opposit', u'get', u'readi']
[u'doubt', u'remain', u'aeropelican', u'futur']
[u'vet', u'prepar', u'strike']
[u'english', u'hooligan', u'jail', u'month']
[u'probe', u'perilya', u'blast']
[u'servicemen', u'benefit', u'coffe', u'deal']
[u'famili', u'mermaid', u'freak']
[u'farr', u'jone', u'tackl', u'global', u'game']
[u'feder', u'fund', u'alloc', u'eurobodalla', u'privat']
[u'feedlot', u'work', u'rais', u'sacr', u'land', u'fear']
[u'damag', u'timber']
[u'fish', u'parti', u'open', u'hervey', u'branch']
[u'digger', u'receiv', u'franc', u'highest', u'honour']
[u'forestri', u'deni', u'green', u'south', u'sister', u'log']
[u'foster', u'defend', u'southcorp', u'offer']
[u'fraser', u'remain', u'indigen']
[u'freedom', u'ride', u'head', u'bowravill']
[u'galleri', u'risk', u'worker', u'health', u'say', u'union']
[u'general', u'surrend', u'crime', u'tribun']
[u'geraldton', u'get', u'custom', u'boost']
[u'gibb', u'river', u'plan', u'see', u'tourism', u'plus']
[u'gilchrist', u'earli', u'christchurch']
[u'global', u'factor', u'contribut', u'wine', u'price']
[u'govt', u'accept', u'major', u'waterfal', u'recommend']
[u'govt', u'ask', u'boost', u'drought']
[u'govt', u'offer', u'earli', u'ring', u'road', u'compo']
[u'govt', u'plot', u'post', u'juli', u'strategi']
[u'govt', u'stand', u'parliamentari', u'sit']
[u'govt', u'implement', u'icac', u'review', u'recommend']
[u'govt', u'slow', u'address', u'nurs', u'shortag', u'say']
[u'govt', u'simplifi', u'seizur', u'rat', u'materi']
[u'govt', u'urg', u'fund', u'fish', u'permit', u'buyout']
[u'govt', u'urg', u'stick', u'devonport', u'sydney', u'ferri']
[u'help', u'eas', u'bendigo', u'doctor', u'shortag']
[u'green', u'demand', u'inquiri', u'council', u'misconduct']
[u'group', u'fear', u'power', u'station', u'refus']
[u'group', u'beat', u'meet', u'sugar', u'submiss']
[u'grower', u'ask', u'consid', u'buy', u'sell']
[u'growth', u'south', u'east', u'underestim', u'say', u'properti']
[u'gulf', u'marin', u'green', u'zone', u'fair']
[u'hayden', u'lift', u'aussi', u'massiv', u'total']
[u'hayden', u'star', u'aussi', u'victori']
[u'hepburn', u'spring', u'school', u'real', u'beauti']
[u'hill', u'reject', u'call', u'defenc', u'white', u'paper', u'rewrit']
[u'hospit', u'fill', u'anaesthetist', u'posit']
[u'hospit', u'stint', u'slow']
[u'hous', u'project', u'enhanc', u'prospect']
[u'hundr', u'kill', u'iran', u'quak']
[u'indigen', u'communiti', u'boycott', u'elect']
[u'indigen', u'work', u'program', u'reform', u'scrutini']
[u'infantri', u'get', u'combat', u'gear']
[u'inquest', u'hear', u'driver', u'drink', u'passeng', u'jump']
[u'iran', u'say', u'nuclear', u'capabl', u'sale']
[u'iraqi', u'interrog', u'didnt', u'happen', u'hill', u'say']
[u'iraq', u'wag', u'propaganda', u'interrog']
[u'japan', u'consid', u'women', u'imperi', u'throne']
[u'jetstar', u'offer', u'virgin', u'passeng', u'backlog', u'deal']
[u'journalist', u'leav', u'zimbabw', u'polic', u'probe']
[u'khmer', u'roug', u'backpack', u'killer', u'taunt', u'author']
[u'knight', u'player', u'sack', u'alleg']
[u'knight', u'scandal', u'kick', u'gut', u'leagu']
[u'knockout', u'round', u'reviv', u'champion', u'leagu', u'sparkl']
[u'labor', u'oppos', u'iraq', u'troop', u'increas']
[u'labor', u'question', u'accc', u'effect']
[u'labor', u'seek', u'tighter', u'regul', u'oversea']
[u'labor', u'urg', u'follow', u'remand', u'centr']
[u'landfil', u'site', u'spark', u'river', u'fear']
[u'legionnair', u'outbreak', u'appear', u'control']
[u'liabil', u'fear', u'limit', u'inquiri']
[u'liber', u'councillor', u'seek', u'audit', u'riverwalk', u'cost']
[u'liber', u'promis', u'goldfield', u'polic', u'boost']
[u'lion', u'generat', u'chang', u'leader']
[u'london', u'mayor', u'defiant', u'nazi', u'jibe']
[u'longreach', u'reveal', u'pool', u'plan']
[u'malaysian', u'bureaucrat', u'tell', u'mind', u'manner']
[u'die', u'perth', u'polic', u'chase']
[u'man', u'bodi', u'exhum']
[u'mar', u'subterranean', u'freez']
[u'rais', u'devaugh', u'question']
[u'meet', u'push', u'free', u'farm', u'loan']
[u'million', u'dollar', u'babi', u'pois', u'strike', u'oscar', u'blow']
[u'minist', u'rais', u'technic', u'colleg', u'question']
[u'mitsubishi', u'launch', u'press']
[u'molik', u'edg', u'rank']
[u'avalanch', u'kashmir']
[u'criticis', u'tax', u'properti', u'market', u'impact']
[u'pan', u'liber', u'parti', u'leadership', u'talk']
[u'urg', u'wind', u'farm', u'hear', u'venu', u'chang']
[u'wind', u'window', u'fin']
[u'snub', u'wollongong', u'hospit']
[u'nation', u'attack', u'stanc', u'tollway']
[u'nation', u'oppos', u'decis', u'scrap', u'freeway', u'toll']
[u'navi', u'frigat', u'ground', u'inquiri', u'begin']
[u'newcastl', u'knightmar', u'polic', u'matter']
[u'fli', u'doctor', u'plan', u'rockhampton']
[u'york', u'launch', u'olymp', u'pitch']
[u'korea', u'say', u'nuclear', u'talk', u'resum']
[u'grudg', u'rivalri', u'zealand', u'pont']
[u'north', u'west', u'prefer', u'decis', u'worri', u'chanc']
[u'player', u'liabl', u'spear', u'tackl']
[u'busi', u'confid', u'slump']
[u'govt', u'pressur', u'parliament', u'return']
[u'busi', u'confid', u'rise']
[u'onesteel', u'profit', u'soar', u'strong', u'demand']
[u'opposit', u'grill', u'clark', u'palm', u'island', u'visit']
[u'opposit', u'urg', u'releas', u'elect', u'cost']
[u'ozjet', u'select', u'adelaid', u'base']
[u'pacif', u'island', u'confirm', u'rugbi', u'test', u'schedul']
[u'pakistan', u'tour', u'doubt', u'indian', u'right']
[u'palestinian', u'revamp', u'cabinet']
[u'parent', u'face', u'court', u'stick', u'chase', u'claim']
[u'parliament', u'set', u'stage', u'togo', u'poll']
[u'pearson', u'help', u'develop', u'govt', u'welfar', u'plan']
[u'pickett', u'face', u'lone', u'trip', u'tribun']
[u'pickett', u'out', u'match']
[u'pilbara', u'technic', u'colleg', u'plan']
[u'pitt', u'aniston', u'separ']
[u'plan', u'afoot', u'paedophil', u'regist']
[u'player', u'wait', u'davi']
[u'govt', u'accus', u'sanction', u'illeg', u'fish']
[u'polic', u'investig', u'alleg', u'knight', u'assault']
[u'policeman', u'conced', u'mistak', u'violent', u'arrest']
[u'polic', u'offic', u'uninjur', u'drag']
[u'port', u'chairman', u'say', u'chief', u'sack', u'board']
[u'port', u'piri', u'smelter', u'help', u'boost', u'zinifex', u'profit']
[u'probe', u'launch', u'melbourn', u'airport', u'emerg']
[u'promina', u'profit', u'jump']
[u'promot', u'truth', u'trash', u'pope', u'tell', u'media']
[u'prosecutor', u'wrap', u'case', u'bashir']
[u'public', u'urg', u'wind', u'farm', u'develop']
[u'spot', u'interst', u'migrat']
[u'qualifi', u'worker', u'elud', u'small', u'busi', u'employ']
[u'rat', u'specul', u'loom', u'retail', u'outlook']
[u'rebel', u'blignaut', u'sign', u'zimbabw', u'deal']
[u'record', u'solo', u'sail', u'attempt', u'end', u'disappoint']
[u'rey', u'charg', u'violent', u'conduct']
[u'river', u'death', u'inquest', u'hear', u'evid']
[u'road', u'delay', u'develop', u'liber']
[u'royal', u'wed', u'open', u'public']
[u'rspca', u'organis', u'tour', u'focus', u'reduc', u'anim']
[u'rugbi', u'chief', u'aim', u'game', u'inclus']
[u'russian', u'metal', u'giant', u'clear', u'queensland']
[u'russia', u'ukrain', u'fail', u'relationship']
[u'birth', u'rate', u'lowest', u'countri']
[u'safin', u'lead', u'russian', u'davi', u'team']
[u'scott', u'rank', u'surg']
[u'scott', u'win', u'play']
[u'scud', u'davi']
[u'scud', u'snub', u'davi']
[u'senior', u'star', u'bronco', u'trial', u'match']
[u'offend', u'monitor', u'releas']
[u'sinn', u'fein', u'leader', u'chief']
[u'stock', u'loss', u'creat', u'eyr', u'peninsula', u'work', u'concern']
[u'strong', u'dollar', u'eat', u'fisheri', u'export', u'valu']
[u'student', u'face', u'committ', u'terror', u'charg']
[u'strike', u'drag', u'union', u'meet', u'abandon']
[u'survey', u'show', u'adequ', u'swan', u'hill', u'park']
[u'opposit', u'pressur', u'govt', u'delay']
[u'technic', u'colleg', u'year', u'start']
[u'teen', u'driver', u'accus', u'show', u'autopsi', u'photo']
[u'termit', u'toll', u'gladston', u'tree']
[u'face', u'court', u'gippsland', u'murder']
[u'time', u'run', u'plate', u'plan', u'comment']
[u'tissu', u'compani', u'boost', u'suppli']
[u'toll', u'hold', u'half', u'year', u'profit', u'jump']
[u'toowoomba', u'get', u'machin', u'relief']
[u'tune', u'red']
[u'turnbul', u'leav', u'shorthand', u'growth', u'forest']
[u'warn', u'afghanistan', u'slide', u'chao']
[u'fuel', u'aristocrat', u'record', u'profit']
[u'holiday', u'leav', u'market', u'flat']
[u'vanston', u'defend', u'atsic', u'seizur']
[u'venezuela', u'see', u'dirti', u'say', u'safe']
[u'virgin', u'compens', u'passeng', u'delay']
[u'warrnambool', u'host', u'refuge', u'settlement', u'scheme']
[u'say', u'knight', u'chairman']
[u'wildcat', u'elli', u'win', u'week', u'gong']
[u'woman', u'win', u'damag', u'bike', u'accid']
[u'year', u'wait', u'bendigo', u'machin']
[u'fear', u'dead', u'landslid']
[u'acceler', u'hous', u'blaze']
[u'alex', u'header', u'give', u'eindhoven', u'slender', u'advantag']
[u'alleg', u'palm', u'island', u'rioter', u'appli', u'bail']
[u'allenbi', u'want', u'match', u'play', u'move', u'soggi', u'diego']
[u'ord', u'finish', u'point']
[u'ambassador', u'defend', u'dutch', u'troop', u'withdraw', u'iraq']
[u'ancient', u'mangrov', u'forest', u'reef']
[u'arthur', u'upset', u'dent', u'arizona']
[u'australia', u'claim', u'upper', u'hand']
[u'australia', u'stand', u'iran', u'nuclear', u'plan']
[u'aust', u'readi', u'help', u'iranian', u'quak', u'victim']
[u'aust', u'deport', u'year', u'report']
[u'barcoo', u'centr', u'build', u'start']
[u'barnett', u'push', u'canal', u'plan', u'despit']
[u'basslink', u'act', u'minimis', u'damag', u'delay']
[u'beatti', u'anticip', u'misconduct', u'claim']
[u'beazley', u'press', u'iraq', u'plan']
[u'benitez', u'happi', u'kewel', u'return']
[u'bennett', u'coach', u'decis', u'captain']
[u'bennett', u'stay', u'kangaroo', u'coach']
[u'berlin', u'film', u'festiv', u'shine', u'spotlight', u'indigen']
[u'support', u'supermarket', u'alcohol', u'sale']
[u'bird', u'confer', u'open', u'vietnam']
[u'brambl', u'half', u'profit', u'jump']
[u'breast', u'cancer', u'death', u'rate', u'fall']
[u'breeder', u'plan', u'alpaca', u'extravaganza', u'showcas']
[u'brigad', u'readi', u'iraq', u'deploy']
[u'bucknor', u'umpir', u'test']
[u'bullet', u'readi', u'elimin', u'final']
[u'bush', u'arriv', u'germani', u'talk', u'schroeder']
[u'bushfir', u'rebuild', u'coordin', u'pass', u'baton']
[u'busi', u'chamber', u'freight', u'corridor', u'plan']
[u'camera', u'thorn', u'rise', u'thiev', u'side']
[u'campaign', u'happi', u'promis', u'establish']
[u'candid', u'back', u'communiti', u'elect', u'boycott']
[u'candid', u'furious', u'leak', u'polic', u'record']
[u'carr', u'announc', u'bridg', u'protect', u'packag']
[u'carr', u'deni', u'conflict', u'icac', u'decis']
[u'carr', u'reveal', u'land', u'option']
[u'cattl', u'drive', u'ensur', u'organ', u'beef', u'produc']
[u'centenni', u'austral', u'coal', u'merg']
[u'china', u'kill']
[u'chirac', u'cite', u'aust', u'exampl', u'china', u'arm', u'sale']
[u'citrus', u'grower', u'pest', u'free', u'status']
[u'coalit', u'pledg', u'southern', u'polic']
[u'compromis', u'seek', u'gorg', u'water', u'flow']
[u'council', u'look', u'sister', u'citi', u'benefit']
[u'councillor', u'get', u'miss', u'meet']
[u'councillor', u'scuttl', u'shire', u'plan']
[u'council', u'opt', u'bush', u'bursari', u'program']
[u'council', u'reject', u'limeston', u'quarri', u'plan']
[u'council', u'seek', u'safe', u'land', u'roadsid', u'sale']
[u'council', u'share', u'feder', u'fund']
[u'council', u'ask', u'confirm', u'visitor', u'centr']
[u'council', u'join', u'tribut', u'murder', u'german']
[u'court', u'award', u'super', u'nrma', u'chairman']
[u'dept', u'address', u'moruya', u'public', u'hous', u'woe']
[u'dept', u'deni', u'plan', u'deport', u'centenarian']
[u'deregul', u'forc', u'liquor', u'price']
[u'doubt', u'rais', u'darwin', u'waterfront', u'plan']
[u'downer', u'concern', u'halloran', u'case']
[u'vet', u'wide', u'strike']
[u'draw', u'help', u'west', u'brom', u'saint']
[u'dudek', u'slip', u'mar', u'liverpool', u'parti']
[u'lose', u'opera', u'hous', u'anti', u'protest', u'appeal']
[u'improv', u'person', u'safeti', u'awar']
[u'earthquak', u'rock', u'andaman', u'island']
[u'surviv', u'dead', u'plane', u'crash']
[u'employ', u'urg', u'offer', u'danger', u'leav']
[u'ethiopia', u'food', u'stock', u'run', u'warn']
[u'timor', u'seek', u'extens', u'peacekeep', u'mission']
[u'ferguson', u'keep', u'ruud', u'return']
[u'fiji', u'govt', u'clear', u'backdoor', u'student', u'claim']
[u'firm', u'keen', u'establish', u'trader', u'group']
[u'fisher', u'seek', u'marin', u'park', u'transit', u'lane']
[u'fossil', u'unearth', u'turtl', u'ancestor']
[u'gallop', u'distanc', u'underdog', u'label']
[u'leak', u'prompt', u'school', u'evacu']
[u'glue', u'pitch', u'great', u'tell']
[u'good', u'vibrat', u'rule', u'termit', u'world']
[u'govt', u'approv', u'eden', u'mussel', u'leas']
[u'govt', u'consid', u'chang', u'land', u'council']
[u'govt', u'consid', u'atsic', u'move', u'away', u'asset']
[u'govt', u'consid', u'speedier', u'coal', u'export']
[u'govt', u'deliv', u'step', u'curriculum']
[u'govt', u'make', u'wiluna', u'meekatharra', u'road', u'fund', u'pledg']
[u'govt', u'reject', u'detent', u'centr', u'claim']
[u'govt', u'beef', u'export', u'quota', u'question']
[u'govt', u'fluorid', u'stanc']
[u'govt', u'urg', u'reject', u'councillor', u'plan']
[u'hayden', u'confid', u'recoveri', u'chanc']
[u'health', u'servic', u'investig', u'surgeri', u'wait']
[u'hear', u'tell', u'public', u'crime', u'scene', u'clean']
[u'heavi', u'snow', u'close', u'pari', u'airport']
[u'hedland', u'polic', u'accus', u'petrol', u'steal']
[u'helguera', u'give', u'real', u'edg']
[u'high', u'hop', u'drainag', u'studi']
[u'high', u'price', u'fuel', u'santo', u'profit', u'jump']
[u'holden', u'hit', u'disloy', u'claim']
[u'holden', u'local', u'supplier']
[u'homeless', u'korean', u'step', u'style']
[u'howard', u'tightlip', u'canal', u'propos']
[u'icac', u'chang', u'allow', u'public', u'comment']
[u'india', u'ban', u'flag', u'sport', u'outfit']
[u'investig', u'tight', u'lip', u'melbourn', u'airport']
[u'iranian', u'quak', u'survivor', u'spend', u'night', u'cold']
[u'iran', u'jail', u'editor', u'year']
[u'iran', u'open', u'talk', u'nuclear', u'program']
[u'iraq', u'troop', u'link', u'trade', u'deal', u'brown', u'say']
[u'iron', u'price', u'skyrocket']
[u'isra', u'court', u'order', u'halt', u'ramallah', u'secur']
[u'italian', u'rocker', u'get', u'year', u'satan', u'kill']
[u'jackson', u'court', u'ill']
[u'junior', u'rugbi', u'leagu', u'launch', u'behaviour', u'campaign']
[u'kafer', u'pull', u'perth', u'race']
[u'kelli', u'pressur', u'investig']
[u'corp', u'record', u'profit', u'jump']
[u'drive', u'scott']
[u'lawyer', u'pose', u'health', u'risk', u'studi']
[u'lebanes', u'readi', u'resign']
[u'liber', u'toll', u'remov', u'decis']
[u'local', u'return', u'plain', u'leak']
[u'loch', u'ness', u'frighten', u'tourist']
[u'lord', u'mayor', u'keen', u'action', u'brisban', u'tunnel']
[u'lord', u'chief', u'time', u'tavern', u'drink']
[u'manilla', u'economi', u'paraglid']
[u'jail', u'charg']
[u'jail', u'syring', u'threat']
[u'face', u'committ', u'hear', u'terror']
[u'martin', u'avoid', u'back', u'iraq', u'troop', u'commit']
[u'masur', u'leav', u'door', u'open', u'scud']
[u'mayn', u'maintain', u'asset']
[u'memori', u'readi', u'anzac']
[u'migrant', u'disadvantag', u'childcar', u'place']
[u'miner', u'prehistor', u'croc']
[u'minist', u'criticis', u'govt', u'port', u'delay']
[u'monk', u'glue', u'eye', u'shut']
[u'call', u'costa', u'hear', u'highway', u'bypass', u'fear']
[u'reject', u'benefit']
[u'fight', u'asylum', u'seeker', u'wodonga']
[u'airlin', u'base', u'mainten', u'victoria']
[u'build', u'hous', u'aqi', u'staff']
[u'guidelin', u'croc', u'handler']
[u'model', u'lenton', u'bristl', u'confid']
[u'waterfront', u'unit', u'demand']
[u'parliament', u'hear', u'dubbo', u'concern']
[u'magistr', u'resign']
[u'nurs', u'claim', u'staff', u'shortag', u'hurt', u'alic', u'spring']
[u'tourist', u'stab', u'sydney']
[u'surg', u'push', u'dollar', u'month', u'high']
[u'onesteel', u'record', u'half', u'year', u'profit']
[u'opal', u'fever', u'grip', u'coober', u'pedi']
[u'opposit', u'see', u'ongo', u'problem', u'canberra']
[u'opposit', u'freight', u'plan', u'wont', u'work', u'gallop']
[u'pacif', u'dunlop', u'sale', u'slide']
[u'palac', u'deni', u'queen', u'snub', u'princ', u'wed']
[u'palestinian', u'parliament', u'delay', u'vote', u'cabinet']
[u'palm', u'island', u'council', u'rais', u'beatti']
[u'palm', u'island', u'petit', u'vanston', u'royal']
[u'palm', u'island', u'petit', u'hand', u'vanston']
[u'panda', u'skeleton', u'ancient', u'tomb']
[u'pentagon', u'probe', u'iraq', u'rape', u'claim']
[u'perilya', u'boost', u'profit']
[u'philippoussi', u'shock']
[u'pickett', u'appeal', u'hold', u'week']
[u'pickett', u'tribun', u'scapegoat', u'power']
[u'say', u'elect', u'tight', u'contest']
[u'polic', u'charg', u'tare', u'murder']
[u'polic', u'fear', u'miss', u'wiluna', u'woman']
[u'polic', u'investig', u'babi', u'death', u'orang']
[u'polic', u'raid', u'marijuana', u'plant']
[u'polic', u'receiv', u'fresh', u'lead', u'death', u'german']
[u'polic', u'remov', u'anti', u'log', u'protest']
[u'polic', u'boost', u'jigalong', u'presenc']
[u'polic', u'crack', u'speed', u'driver']
[u'poll', u'find', u'support', u'north', u'west', u'pulp']
[u'pope', u'book', u'assail', u'marriag', u'abort']
[u'power', u'launch', u'pickett', u'appeal']
[u'quak', u'shift', u'phuket']
[u'queen', u'wont', u'attend', u'charl', u'camilla', u'wed']
[u'rebuild', u'maldiv', u'cost', u'million']
[u'rescuer', u'continu', u'search', u'avalanch', u'survivor']
[u'resid', u'expect', u'dust', u'storm', u'relief']
[u'roger', u'throw', u'injuri', u'scare', u'tah', u'camp']
[u'round', u'world', u'yacht', u'dock', u'fremantl']
[u'row', u'club', u'reveal', u'renov', u'plan']
[u'rspca', u'open', u'dig']
[u'ruthless', u'bayern', u'expos', u'arsenal', u'flaw']
[u'safin', u'round', u'victim', u'dubai']
[u'resist', u'nationwid', u'plan']
[u'saturday', u'night', u'fever', u'dancefloor', u'sale']
[u'schultz', u'trip', u'seek', u'child', u'support', u'agenc']
[u'scud', u'breath', u'easier', u'final', u'earn']
[u'setback', u'state', u'electr', u'plan']
[u'sharehold', u'slowli', u'portman', u'takeov']
[u'shoulder', u'knock', u'hayden', u'doubt']
[u'home', u'hospit']
[u'iraq', u'violenc']
[u'soldier', u'kill', u'truck', u'rollov']
[u'solo', u'sailor', u'head', u'hobart', u'repair']
[u'souness', u'want', u'year', u'shearer']
[u'spotlight', u'fall', u'forster', u'tuncurri', u'high', u'rise']
[u'stockland', u'stand', u'firm', u'takeov', u'offer']
[u'worker']
[u'survey', u'show', u'wage', u'pressur', u'impact', u'busi']
[u'suspici', u'packag', u'danger', u'polic']
[u'teen', u'hurt', u'trail', u'bike', u'fall']
[u'thompson', u'want', u'ash', u'fire', u'cannon']
[u'tiger', u'termin', u'blignaut', u'contract']
[u'tiger', u'parti']
[u'tils', u'sack', u'drunken', u'rampag', u'hasti']
[u'trade', u'post', u'get', u'makeov']
[u'tradit', u'owner', u'give', u'kakadu']
[u'transfield', u'buy', u'stake', u'perth', u'power', u'station']
[u'transurban', u'reveal', u'citylink', u'toll', u'revenu', u'increas']
[u'tsunami', u'delay', u'frustrat', u'mayor']
[u'rescu', u'iran', u'rubbl', u'death', u'toll', u'rise']
[u'fear', u'iraq', u'illeg', u'report']
[u'union', u'back', u'owner', u'centr']
[u'union', u'fight', u'smelter', u'job']
[u'shoalhaven', u'campus', u'founder', u'die']
[u'univers', u'combin', u'effort']
[u'call', u'chavez', u'kill', u'plot', u'charg', u'ridicul']
[u'citizen', u'face', u'bush', u'assassin', u'plot', u'charg']
[u'market', u'knock', u'price']
[u'militari', u'deni', u'conduct', u'flight', u'iran']
[u'parliament', u'region', u'sit']
[u'virgin', u'count', u'cost', u'oper', u'return', u'normal']
[u'wage', u'creep', u'add', u'rat', u'chatter']
[u'wag', u'press', u'rat', u'opposit', u'say']
[u'wangaratta', u'feel', u'bite', u'grow', u'dental', u'wait']
[u'waratah', u'sign', u'fring', u'player']
[u'word', u'erupt', u'dubbo', u'machin']
[u'welcom', u'record', u'iron', u'price', u'deal']
[u'welcom', u'brutal', u'world']
[u'world', u'unprepar', u'biolog', u'attack']
[u'chelsea', u'lead', u'english', u'tale', u'champion']
[u'lockout', u'help', u'nightclub', u'violenc']
[u'aceh', u'peac', u'talk', u'breakthrough']
[u'actu', u'talk', u'overhaul', u'construct', u'andrew']
[u'advertis', u'revenu', u'lift', u'pbls', u'half', u'year', u'profit']
[u'aircon', u'innov', u'halv', u'energi', u'consumpt']
[u'earn', u'dive', u'competit']
[u'voss', u'lion']
[u'civilian', u'trap', u'kashmir', u'attack', u'rescu']
[u'alleg', u'killer', u'worker', u'phone', u'court']
[u'green', u'effort']
[u'anti', u'gunghalin', u'drive', u'group', u'provid']
[u'aussi', u'rule', u'club', u'appeal', u'coach']
[u'aussi', u'lead', u'world', u'share', u'ownership']
[u'australian', u'face', u'deport', u'botswana']
[u'aust', u'seek', u'defer', u'timor', u'boundari', u'rule']
[u'want', u'boost', u'goldfield', u'presenc']
[u'barnett', u'cost', u'blunder']
[u'barramundi', u'farmer', u'welcom', u'feder', u'guidelin']
[u'basslink', u'delay', u'spark', u'blackout', u'fear']
[u'bishop', u'rais', u'anglican', u'church']
[u'blackburn', u'admit', u'charg', u'chelsea', u'deni', u'breach']
[u'blaze', u'forc', u'preschool', u'evacu']
[u'blue', u'steadi', u'start']
[u'blue', u'slip', u'perth']
[u'book', u'sing', u'drug', u'smuggl', u'prais', u'withdraw']
[u'bowditch', u'lead', u'zealand']
[u'brisban', u'violenc', u'go', u'taxi', u'rank', u'govt', u'tell']
[u'brumbi', u'crusad', u'renew', u'super', u'hostil']
[u'bull', u'flop']
[u'busi', u'invest', u'remain', u'strong']
[u'businessman', u'offer', u'corbi', u'legal', u'help']
[u'cane', u'toad', u'menac', u'prompt', u'scienc', u'think', u'tank']
[u'bomb', u'kill', u'tikrit']
[u'carr', u'criticis', u'propos', u'chang']
[u'chamber', u'want', u'quick', u'refineri', u'strike']
[u'china', u'rais', u'qualiti', u'control', u'concern', u'produc']
[u'china', u'suspend', u'leader', u'dead', u'mine', u'disast']
[u'coalit', u'promis', u'gascoyn', u'servic', u'boost']
[u'coal', u'termin', u'restrain', u'prim', u'profit']
[u'colleg', u'win', u'damag', u'contamin', u'land']
[u'compani', u'fin', u'toxic', u'spill']
[u'compani', u'head', u'cook', u'organ', u'beef']
[u'consult', u'start', u'wast', u'dump', u'export', u'studi']
[u'council', u'allow', u'sign', u'trial']
[u'council', u'offer', u'revel', u'late', u'night']
[u'council', u'feel', u'feder', u'fund']
[u'court', u'dismiss', u'pipelin', u'legal']
[u'crash', u'probe', u'find', u'black', u'hawk', u'tree']
[u'critic', u'iraq', u'deploy', u'confus', u'howard']
[u'csiro', u'build', u'evacu', u'leak']
[u'dajka', u'recal', u'australian', u'team']
[u'decis', u'loom', u'rail', u'line']
[u'disabl', u'advocaci', u'group', u'ask']
[u'doyl', u'hit', u'liber', u'rat']
[u'consid', u'contempt', u'charg', u'articl']
[u'congo', u'plagu', u'outbreak', u'spread']
[u'driver', u'face', u'court', u'high', u'blood', u'alcohol']
[u'drogba', u'dismiss', u'sour', u'mourinho', u'barca', u'return']
[u'eagl', u'drop', u'cousin', u'welcom', u'gardin']
[u'excess', u'water', u'prove', u'cost']
[u'exil', u'somali', u'visit', u'homeland']
[u'farmer', u'feder', u'downgrad', u'field']
[u'fatal', u'tanker', u'crash', u'investig']
[u'fear', u'air', u'special', u'shop', u'impact']
[u'feder', u'struggl', u'past', u'qualifi', u'dubai']
[u'crew', u'clean', u'chemic', u'spill']
[u'fluorid', u'debat', u'intensifi']
[u'magistr', u'want']
[u'frail', u'pope', u'hospit', u'relaps']
[u'freez', u'bacterium', u'add', u'mar', u'specul']
[u'fund', u'approv', u'lake', u'eyr', u'basin', u'manag']
[u'fund', u'offer', u'save', u'bushland']
[u'gallop', u'defend', u'govt', u'mental', u'health', u'record']
[u'goalkeep', u'curs', u'return', u'haunt', u'unit']
[u'govt', u'ask', u'locust', u'levi', u'explain']
[u'govt', u'criticis', u'staff', u'decis']
[u'govt', u'deliv', u'attack', u'birth', u'suit', u'pledg']
[u'govt', u'ditch', u'plan', u'coorong', u'access']
[u'govt', u'maintain', u'goldfield', u'solar', u'power', u'push']
[u'govt', u'quiz', u'detent', u'centr', u'claim']
[u'govt', u'mussel', u'decis']
[u'green', u'happi', u'coalit', u'chemic', u'offer']
[u'griffith', u'council', u'rethink', u'loan', u'polici']
[u'group', u'bowl', u'blood']
[u'grower', u'winemak', u'profit', u'boost', u'hard']
[u'gunn', u'choos', u'bell', u'pulp', u'site']
[u'gunn', u'site', u'billion', u'dollar', u'pulp']
[u'haemophilia', u'drug', u'stroke', u'recoveri']
[u'head', u'wind', u'delay', u'solo', u'sailor', u'arriv']
[u'health', u'dept', u'say', u'hospit', u'staff', u'shortag', u'fix']
[u'victim', u'father', u'seek', u'chang', u'drug', u'test']
[u'hodg', u'put', u'bushrang']
[u'hollywood', u'actor', u'slater', u'divorc']
[u'hunter', u'divis', u'merg']
[u'wide', u'growth', u'doubl', u'half', u'year', u'profit']
[u'identif', u'sept', u'victim', u'finish']
[u'indian', u'right', u'resolv']
[u'indonesia', u'revis', u'tsunami', u'death', u'toll']
[u'investig', u'clear', u'real', u'estat', u'agent', u'improp']
[u'iran', u'quak', u'toll', u'reach']
[u'iran', u'reject', u'idea', u'talk']
[u'isol', u'major', u'hurdl', u'indigen', u'educ']
[u'jackson', u'stay', u'storm']
[u'john', u'admit', u'fear', u'knight', u'sponsorship', u'deal']
[u'johnston', u'barnett', u'loggerhead', u'canal']
[u'kakadu', u'proper', u'promot', u'report', u'say']
[u'karratha', u'pub', u'reopen', u'violent', u'brawl']
[u'kashmir', u'avalanch', u'death', u'toll', u'reach']
[u'khazal', u'jail', u'lebanon', u'bail', u'sydney']
[u'labor', u'attack', u'barnett', u'indian', u'ocean', u'drive']
[u'labor', u'question', u'safeti', u'troop', u'deploy']
[u'landcorp', u'reject', u'land', u'releas', u'delay', u'claim']
[u'polic', u'secur', u'inform', u'death']
[u'legionella', u'bacteria', u'iron']
[u'liabil', u'chang', u'endang', u'case', u'kirbi']
[u'liber', u'highlight', u'industri', u'woe']
[u'liverpool', u'depth', u'gerrard', u'say', u'kewel']
[u'lobbi', u'group', u'critic', u'plan', u'chang']
[u'local', u'author', u'condemn', u'dredg', u'applic']
[u'local', u'charg', u'await', u'australian', u'jail', u'lebanon']
[u'lockyer', u'happi', u'captainci', u'limbo']
[u'lukewarm', u'respons', u'lift', u'hardi']
[u'lyon', u'crush', u'bremen']
[u'jail', u'life', u'relat', u'murder']
[u'jail', u'teen', u'girl', u'shoot']
[u'jail', u'underag']
[u'releas', u'jail', u'sentenc', u'downgrad']
[u'surrend', u'polic', u'school', u'stand']
[u'court', u'murder', u'arm', u'robberi']
[u'marin', u'escap', u'charg', u'fallujah', u'shoot']
[u'market', u'end']
[u'meet', u'look', u'eas', u'port', u'augusta', u'racial', u'tension']
[u'melbourn', u'factori', u'evacu', u'chemic', u'spill']
[u'melbourn', u'freeway', u'open', u'tanker', u'blaze']
[u'melbourn', u'resid', u'face', u'game', u'secur', u'crackdown']
[u'charg', u'assault', u'outsid', u'parliament']
[u'milit', u'jail', u'indonesia', u'bomb']
[u'miner', u'urg', u'site', u'plan']
[u'miner', u'welcom', u'iron', u'price', u'rise']
[u'minist', u'confid', u'stay', u'timor']
[u'minotaur', u'opt', u'chang']
[u'miyazato', u'scorch', u'master', u'field']
[u'miyazato', u'show', u'class', u'ladi', u'master']
[u'soldier', u'face', u'iraq', u'abus', u'trial']
[u'mother', u'charg', u'murder', u'children']
[u'mother', u'evid', u'partner']
[u'highlight', u'fall', u'break', u'hill', u'popul']
[u'seek', u'disabl', u'park', u'permit']
[u'murder', u'trial', u'tell', u'miss', u'batteri']
[u'mushroom', u'factori', u'defend', u'feder', u'award']
[u'mutat', u'find', u'boost', u'vaccin', u'research']
[u'nation', u'candid', u'admit', u'hospit', u'embarrass']
[u'navi', u'come', u'drift', u'contain', u'ship']
[u'newcrest', u'find', u'profit', u'increas']
[u'newspap', u'columnist', u'appoint', u'board']
[u'normal', u'vline', u'timet', u'resum', u'soon']
[u'dead', u'trap', u'kashmir', u'milit', u'attack']
[u'opposit', u'introduc', u'complet', u'shaw']
[u'opposit', u'promis', u'land', u'review', u'elect']
[u'opposit', u'queri', u'public', u'servant', u'feder']
[u'outgo', u'liber', u'prais', u'labor']
[u'palestinian', u'parliament', u'give', u'overwhelm', u'back']
[u'palm', u'island', u'council', u'futur', u'uncertain']
[u'parent', u'ralli', u'child', u'care', u'shortag']
[u'partnership', u'focus', u'wheatbelt', u'health', u'need']
[u'patterson', u'wont', u'commit', u'childcar', u'rebat', u'chang']
[u'petit', u'seek', u'hospit', u'board', u'reinstat']
[u'pivot', u'class', u'match', u'begin']
[u'cautious', u'canal', u'plan']
[u'pipelin', u'project', u'push', u'ahead']
[u'polic', u'hunt', u'miss', u'jewelleri', u'move']
[u'polic', u'hunt', u'doubl', u'stab']
[u'polic', u'investig', u'tourist', u'slay', u'seek', u'man', u'help']
[u'polic', u'post', u'mortem', u'result', u'wrap']
[u'policeman', u'deni', u'crime', u'scene', u'cover']
[u'polic', u'stand', u'station']
[u'pool', u'centr', u'year', u'away']
[u'porto', u'share', u'honour', u'inter']
[u'possum', u'problem', u'hit', u'high', u'school']
[u'plate', u'driver', u'kill', u'crash']
[u'premier', u'say', u'water', u'price', u'rise', u'spread']
[u'withstand', u'tsunami', u'claim', u'report', u'profit']
[u'reef', u'reopen', u'angler']
[u'report', u'link', u'inform', u'death']
[u'rescu', u'chopper', u'fli', u'teen', u'burn', u'victim', u'hospit']
[u'rescu', u'chopper', u'propon', u'wont', u'confirm', u'woodsid']
[u'retail', u'trade', u'group', u'deni', u'superannu', u'rort']
[u'richmond', u'face', u'hard', u'traeger', u'park', u'decis']
[u'rock', u'attack', u'rattl', u'suburban', u'adelaid']
[u'safeti', u'upgrad', u'take', u'council', u'surpris']
[u'scan', u'clear', u'hayden', u'shoulder', u'bone', u'damag']
[u'school', u'evacu', u'enter', u'ground']
[u'schooli', u'urg', u'avoid', u'accommod', u'off']
[u'schu', u'suffer', u'self', u'doubt']
[u'scud', u'comeback', u'trail', u'end', u'arizona']
[u'seatbelt', u'possibl', u'factor', u'armi', u'truck', u'death']
[u'seatbelt', u'wear', u'fatal', u'crash', u'polic']
[u'seat', u'virgin', u'flight']
[u'secret', u'tap', u'give', u'bush']
[u'smoke', u'cost', u'year']
[u'snow', u'caus', u'chao', u'europ']
[u'speed', u'camera', u'rack', u'revenu']
[u'state', u'starv', u'mental', u'health', u'sector', u'fund']
[u'steadi', u'go', u'bushrang']
[u'strong', u'region', u'growth', u'share', u'ownership']
[u'strong', u'sale', u'boost', u'southern', u'cross', u'profit']
[u'studi', u'consid', u'longreach', u'rocki', u'servic']
[u'studi', u'examin', u'gambl', u'habit']
[u'subdivis', u'plan', u'expect', u'face', u'tough', u'water']
[u'suspend', u'sentenc', u'ecstasi', u'traffick']
[u'tabcorp', u'predict', u'futur', u'growth']
[u'tafe', u'sign', u'agreement', u'coff']
[u'talk', u'break', u'palestinian', u'cabinet', u'deadlock']
[u'avoid', u'scheme', u'crackdown', u'loom']
[u'teacher', u'miss', u'comput', u'despit', u'fund']
[u'telstra', u'protest', u'arriv', u'more']
[u'canker', u'outbreak', u'citrus', u'tree']
[u'thornley', u'help', u'blue', u'post', u'competit', u'total']
[u'time', u'run', u'meander', u'project', u'opposit']
[u'tote', u'ponder', u'rider', u'fall', u'consequ']
[u'toyn', u'urg', u'listen', u'alic', u'nurs']
[u'trenorden', u'see', u'potenti', u'address', u'power', u'woe']
[u'troop', u'help', u'aceh', u'resid', u'normal']
[u'tweed', u'council', u'probe', u'hear', u'slush', u'fund', u'detail']
[u'soldier', u'kill', u'north', u'baghdad']
[u'find', u'rape', u'murder', u'rife', u'congo']
[u'union', u'submarin', u'corp', u'begin', u'disput', u'avoid', u'scheme']
[u'germani', u'joint', u'environ', u'declar']
[u'welcom', u'australia', u'iraq', u'deploy']
[u'vanston', u'treat', u'centenarian', u'compass']
[u'vanuatu', u'govt', u'dismiss', u'mismanag', u'claim']
[u'vella', u'recov', u'cancer', u'surgeri']
[u'wag', u'growth', u'rise']
[u'wagga', u'polic', u'studi', u'chase', u'video']
[u'websit', u'seek', u'help', u'break', u'heart']
[u'wicket', u'tumbl', u'gabba']
[u'winemak', u'profit', u'leav', u'grower', u'bitter', u'tast']
[u'group', u'welcom', u'safer', u'croc', u'encount']
[u'afghan', u'troop', u'kill', u'gunmen']
[u'benefit', u'high', u'grain', u'product']
[u'actor', u'sizemor', u'tell', u'beat', u'drug', u'face', u'death']
[u'post', u'half', u'profit']
[u'airport', u'expans']
[u'alderman', u'step', u'happi', u'green', u'progress']
[u'anderson', u'continu', u'push', u'open', u'sky']
[u'anglican', u'church', u'face', u'split', u'issu']
[u'appoint', u'boost', u'region', u'busi']
[u'aquacultur', u'plant', u'plan', u'loxton']
[u'arson', u'hotel', u'blaze']
[u'aussi', u'boil', u'california']
[u'australia', u'cultur', u'gem', u'tour', u'world']
[u'australia', u'thump', u'england', u'netbal', u'test']
[u'barnett', u'take', u'blame', u'cost', u'mistak']
[u'bashir', u'trial', u'wrap', u'fieri', u'fashion']
[u'beatti', u'defend', u'action', u'palm', u'stoush']
[u'blue', u'knock', u'highland']
[u'book', u'tackl', u'rural', u'male', u'suicid']
[u'brack', u'welcom', u'crime', u'prevent', u'paper']
[u'brazilian', u'landown', u'pay', u'nun', u'murder', u'polic']
[u'breed', u'bat', u'stop', u'bridg', u'work']
[u'bulldog', u'bite', u'saint']
[u'bullet', u'book', u'showdown', u'king']
[u'bullet', u'progress', u'past', u'sixer']
[u'bull', u'hold', u'command', u'lead', u'gabba']
[u'bull', u'inning', u'point']
[u'driver', u'seek', u'updat', u'contract', u'negoti']
[u'bushrang', u'turn', u'screw']
[u'busi', u'chamber', u'lament', u'airport']
[u'canberra', u'prepar', u'record', u'crowd']
[u'driver', u'blame', u'sydney', u'crash']
[u'carer', u'disput']
[u'charg', u'drop', u'mother', u'babi', u'kill', u'case']
[u'chelsea', u'search', u'silver', u'line', u'week']
[u'climat', u'chang', u'expert', u'issu', u'plan', u'warn']
[u'coalit', u'pledg', u'kimberley', u'servic', u'boost']
[u'coke', u'plant', u'develop', u'optimist']
[u'communiti', u'elect', u'boycott', u'expect', u'hurt']
[u'confus', u'surround', u'public', u'servant', u'employ']
[u'cool', u'weather', u'see', u'water', u'restrict', u'eas']
[u'cost', u'move', u'central', u'kimberley', u'pilbara']
[u'council', u'move', u'tree', u'remov', u'recommend']
[u'council', u'seek', u'tender', u'kempsey', u'shire', u'recycl']
[u'council', u'union', u'prais', u'pulp', u'decis']
[u'council', u'discuss', u'measur', u'curb', u'unruli']
[u'court', u'ban', u'coupl', u'publish', u'magazin']
[u'croc', u'prepar', u'sudden', u'death', u'showdown']
[u'croc', u'prepar', u'tiger', u'sudden', u'death', u'showdown']
[u'cyclon', u'perci', u'threaten', u'tokelau']
[u'dallaglio', u'cohen', u'confirm', u'tsunami', u'match']
[u'danc', u'town', u'hall', u'vote']
[u'darwin', u'waterfront', u'revamp', u'detail', u'chang']
[u'democrat', u'urg', u'assist', u'corbi']
[u'doctor', u'support', u'coalit', u'poison', u'review', u'fund']
[u'refus', u'comment', u'rape', u'case']
[u'east', u'timor', u'ask', u'japan', u'support', u'continu']
[u'economi', u'suppli', u'problem', u'surpris']
[u'elli', u'celebr', u'australia', u'thump', u'england']
[u'sign', u'jabiluka', u'uranium', u'agreement']
[u'kalgoorli', u'policeman', u'fin', u'fraud']
[u'famili', u'servic', u'chief', u'defend', u'depart']
[u'farmer', u'drought', u'chang']
[u'farmer', u'water', u'trade', u'lesson']
[u'farm', u'group', u'unhappi', u'elect', u'bypass', u'agricultur']
[u'fear', u'deport', u'thai', u'student', u'futur']
[u'flood', u'indic', u'return']
[u'hancock', u'mansion', u'demolish']
[u'suspect', u'legionnair', u'case', u'discount']
[u'fraud', u'charg', u'wont', u'affect', u'secur', u'grand', u'prix']
[u'freight', u'withdraw', u'wake', u'govt']
[u'french', u'compani', u'eye', u'olymp']
[u'gallop', u'dark', u'accident', u'candid']
[u'gallop', u'question', u'coalit', u'west', u'promis']
[u'garden', u'investig', u'aquif', u'option']
[u'gassi', u'appeal', u'convict', u'health', u'boss']
[u'gladston', u'coal', u'termin']
[u'goalpost', u'mishap', u'father', u'welcom', u'standard']
[u'govt', u'cut', u'swath', u'ballina', u'council', u'fine']
[u'govt', u'help', u'region', u'tune']
[u'govt', u'opposit', u'wont', u'stop', u'fluorid', u'campaign']
[u'govt', u'pledg', u'cyclon', u'ravag', u'cook', u'island']
[u'govt', u'pledg', u'affect', u'farmer']
[u'govt', u'set', u'adopt', u'review', u'panel']
[u'grazier', u'win', u'cattl', u'price', u'court', u'confront']
[u'guidelin', u'chang', u'access', u'compo']
[u'haze', u'shroud', u'malaysian', u'capit', u'forest', u'burn']
[u'hid', u'call', u'lennon', u'ferri', u'futur', u'public']
[u'victim', u'father', u'welcom', u'chang']
[u'hobart', u'csiro', u'leak', u'remain', u'mysteri']
[u'hockeyroo', u'frustrat', u'lack', u'sponsorship']
[u'hodg', u'lead', u'vic', u'total']
[u'hong', u'kong', u'cover', u'smog']
[u'hospit', u'intern', u'research', u'centr', u'open']
[u'howard', u'puzzl', u'centenarian', u'visa', u'decis']
[u'howard', u'unfaz', u'leadership', u'specul']
[u'hydro', u'chief', u'ask', u'join']
[u'icac', u'accus', u'opportun', u'respond']
[u'indigen', u'train', u'boost', u'confid', u'research']
[u'injuri', u'put', u'line', u'koubek', u'davi']
[u'injuri', u'put', u'steven', u'trial', u'campaign', u'doubt']
[u'inquiri', u'tell', u'suspect', u'sabotag', u'beaudesert']
[u'insur', u'cold', u'comfort', u'wemen', u'region', u'grower']
[u'iraq', u'bind', u'troop', u'readi', u'hill']
[u'isra', u'presid', u'visit', u'australia']
[u'jackson', u'trial', u'begin', u'week']
[u'japan', u'consid', u'lift', u'beef']
[u'katich', u'injur', u'hayden']
[u'dinner', u'fridg']
[u'kiwi', u'boast', u'proud', u'sport', u'tradit']
[u'knight', u'sponsor', u'uneasi']
[u'labor', u'cast', u'doubt', u'ring', u'road', u'fund']
[u'lake', u'leas', u'end']
[u'land', u'council', u'crack', u'rock', u'thrower']
[u'langer', u'cruis', u'control', u'lunch']
[u'langer', u'lead', u'inning', u'point']
[u'langer', u'put', u'warrior', u'control']
[u'scala', u'fire', u'exec', u'amid', u'budget']
[u'lawyer', u'seek', u'court', u'appear', u'serial', u'killer']
[u'leonora', u'doctor', u'return', u'hospit']
[u'lord', u'mayor', u'keen', u'increas', u'secur']
[u'die', u'gippsland', u'log', u'mishap']
[u'get', u'jail', u'time', u'knife', u'attack']
[u'jail', u'ecstasi', u'traffic']
[u'martin', u'deni', u'threat', u'legal', u'action']
[u'mayor', u'play', u'council', u'role', u'tourist', u'train']
[u'mayor', u'offic', u'alcohol', u'free', u'zone']
[u'meatwork', u'stand', u'yanco']
[u'jail', u'diamond', u'ring', u'murder']
[u'mental', u'health', u'critic', u'unfound', u'say']
[u'mess', u'get', u'lucki', u'barrymor']
[u'million', u'dollar', u'babi', u'warm', u'oscar', u'knockout']
[u'minist', u'swamp', u'support', u'ambul', u'station']
[u'miyazato', u'hold', u'stroke', u'master', u'lead']
[u'mortgag', u'choic', u'post', u'profit', u'rise', u'despit', u'hous']
[u'mortlock', u'doubt', u'brumbi', u'open']
[u'want', u'ulladulla', u'school', u'announc']
[u'murder', u'tourist', u'famili', u'seek', u'justic']
[u'nation', u'maintain', u'unit', u'approach']
[u'board', u'member', u'deni', u'conflict']
[u'newcastl', u'boro', u'rescu', u'english', u'pride']
[u'year', u'outback', u'focus', u'youth']
[u'econom', u'crash', u'like', u'howard']
[u'sight', u'bun', u'wrangl']
[u'northlin', u'abandon', u'adelaid', u'darwin', u'railway']
[u'aborigin', u'cricket', u'hop', u'final', u'spot']
[u'omalley', u'lyle', u'share', u'lead']
[u'oneil', u'deni', u'rift', u'qualifi', u'venu']
[u'ramp', u'close', u'tanker', u'blaze']
[u'opal', u'excit', u'miner']
[u'open', u'plan', u'camberwel']
[u'opposit', u'blast', u'health', u'servic', u'sack']
[u'opposit', u'want', u'beatti', u'apologis', u'palm']
[u'oversea', u'demand', u'push', u'caltex', u'profit']
[u'parent', u'welcom', u'life', u'sentenc', u'daughter', u'killer']
[u'parkinson', u'diseas', u'increas', u'risk', u'ail', u'pope']
[u'passion', u'trust', u'twin', u'element', u'york']
[u'patient', u'threaten', u'kill', u'hospit', u'staff']
[u'peak', u'hour', u'crash', u'injur']
[u'pedestrian', u'kill', u'road', u'accid']
[u'plan', u'begin', u'class', u'autist', u'children']
[u'invit', u'royal', u'wed']
[u'polic', u'await', u'babi', u'post', u'mortem', u'result']
[u'polic', u'hunt', u'albani', u'bank', u'bandit']
[u'polic', u'increas', u'presenc', u'hindley', u'street']
[u'polic', u'investig', u'hospit', u'drug', u'theft']
[u'polic', u'charg', u'schooli', u'fake']
[u'polic', u'seek', u'investig', u'babi']
[u'polic', u'uncov', u'jewelleri', u'heist']
[u'polli', u'urg', u'address', u'pilbara', u'indigen']
[u'pope', u'condit', u'satisfi', u'doctor']
[u'pope', u'rest', u'advis', u'speak', u'day']
[u'portabl', u'weather', u'station', u'fuel', u'reduct']
[u'port', u'delay', u'hamper', u'miner', u'expans']
[u'port', u'hedland', u'want', u'dust', u'problem', u'solv']
[u'possum', u'put', u'teacher', u'sick', u'leav']
[u'profit', u'half', u'year', u'suncorp']
[u'protest', u'demand', u'growth', u'log']
[u'pulp', u'critic', u'unhappi', u'propos', u'bleach']
[u'urg', u'daylight', u'save']
[u'rail', u'project', u'sabotag', u'inquiri', u'tell']
[u'record', u'turnov', u'rev', u'adtran', u'profit']
[u'repair', u'delay', u'clune', u'water', u'suppli']
[u'repat', u'hospit', u'safe', u'servic']
[u'research', u'reveal', u'languag', u'skill', u'want']
[u'resid', u'timber', u'truck', u'bypass']
[u'result', u'resourc', u'lift', u'market']
[u'retent', u'reduc', u'flood', u'damag']
[u'rickett', u'make', u'final', u'tournament']
[u'rockhampton', u'hospit', u'surgeon']
[u'roger', u'star', u'waratah', u'away', u'lacklustr', u'chief']
[u'roger', u'star', u'waratah']
[u'set', u'adelaid', u'captainci', u'record']
[u'rural', u'resid', u'risk', u'beach', u'tragedi']
[u'russia', u'order', u'chechen', u'death']
[u'seven', u'network', u'announc', u'profit', u'rise']
[u'shark', u'net', u'stay', u'sydney', u'beach']
[u'go', u'despit', u'stab']
[u'sick', u'leav', u'affect', u'polic', u'number']
[u'sixteeen', u'nomin', u'werriwa', u'elect']
[u'state', u'fight', u'reform']
[u'statist', u'drop', u'state', u'school', u'enrol']
[u'lawrenc', u'celebr', u'year']
[u'storm', u'declar', u'natur', u'disast']
[u'storm', u'prompt', u'disast', u'assist', u'offer']
[u'student', u'burn', u'camp', u'accid']
[u'studi', u'cast', u'doubt', u'shot']
[u'summit', u'address', u'violenc', u'public', u'drunken']
[u'surf', u'girl', u'recognis', u'volunt', u'effort']
[u'sweet', u'victori', u'small', u'german', u'brewer']
[u'swift', u'gilsenan', u'netbal', u'test', u'debut']
[u'tandou', u'record', u'loss']
[u'tasmanian', u'turn', u'mental', u'health', u'help']
[u'tavern', u'manag', u'hop', u'shutdown', u'teach', u'lesson']
[u'teacher', u'jail', u'student']
[u'teen', u'health', u'improv', u'sand', u'mishap']
[u'teen', u'throw', u'prostitut', u'bridg', u'clear', u'drug']
[u'thai', u'teenag', u'fail', u'deport', u'repriev']
[u'thing', u'get', u'easier', u'black', u'cap']
[u'tracheotomi', u'surgeri', u'eas', u'breath']
[u'tradit', u'owner', u'give', u'veto', u'jabiluka']
[u'travel', u'warn', u'upgrad', u'diseas', u'hit', u'thailand']
[u'troop', u'leav', u'aceh']
[u'unit', u'gunner', u'crank', u'pressur', u'chelsea']
[u'extend', u'presenc', u'east', u'timor']
[u'court', u'dismiss', u'yuko', u'bankruptci']
[u'soldier', u'tri', u'iraqi', u'civilian', u'murder']
[u'vicroad', u'urg', u'address', u'black', u'spot', u'intersect']
[u'vietnam', u'confirm', u'bird', u'case']
[u'leader', u'pitch', u'voter']
[u'wallabi', u'genet', u'code', u'offer', u'human', u'insight']
[u'welfar', u'group', u'oppos', u'youth', u'dispers', u'plan']
[u'western', u'power', u'plan', u'blackout']
[u'wind', u'farm', u'plan', u'fuel', u'airstrip', u'concern']
[u'woman', u'plead', u'guilti', u'rape']
[u'worksaf', u'want', u'brake', u'trucki', u'fatigu']
[u'world', u'bank', u'increas', u'tsunami', u'lanka']
[u'world', u'respons', u'crisi', u'stingi', u'despit', u'tsunami']
[u'hurt', u'aviv', u'blast']
[u'abba', u'call', u'emerg', u'meet', u'aviv', u'blast']
[u'stand', u'chang']
[u'african', u'union', u'suspend', u'togo']
[u'bevan', u'keep', u'tiger', u'hop', u'aliv']
[u'arrest', u'aviv', u'bomb']
[u'arthur', u'arizona']
[u'aussi', u'seal', u'seri']
[u'australia', u'put', u'zarqawi', u'network', u'black', u'list']
[u'australia', u'set', u'competit', u'total']
[u'barnett', u'place', u'faith', u'lucki', u'cufflink']
[u'british', u'soldier', u'jail', u'iraq', u'abus', u'trial']
[u'brumbi', u'strong', u'crusad']
[u'brutal', u'afghan', u'winter', u'kill']
[u'budget', u'airlin', u'greyhound']
[u'accid', u'kill']
[u'busi', u'upbeat', u'chang']
[u'busi', u'night', u'polic']
[u'cabinet', u'consid', u'nightclub', u'lock', u'plan']
[u'cardin', u'declar', u'pope', u'seren']
[u'command', u'prais', u'aust', u'train', u'iraq', u'forc']
[u'communiti', u'win', u'review', u'sewag', u'infrastructur']
[u'council', u'pledg', u'land', u'health', u'centr', u'plan']
[u'count', u'begin', u'poll']
[u'croc', u'power', u'semi']
[u'cyclon', u'perci', u'continu', u'threaten', u'pacif', u'island']
[u'dalai', u'lama', u'attend', u'pakistan', u'india', u'tour', u'open']
[u'detaine', u'claim', u'treatment', u'transfer']
[u'detent', u'chang', u'real', u'solut']
[u'deterg', u'infect', u'risk', u'surgeri']
[u'diamond', u'steal', u'airport', u'heist']
[u'dog', u'rabbitoh', u'trial', u'match']
[u'domin', u'australia', u'search', u'trifecta']
[u'driver', u'question', u'freeway', u'accid']
[u'drug', u'traffick', u'overrun', u'ancient', u'mayan', u'citi']
[u'earli', u'result', u'boost', u'liber', u'hop']
[u'european', u'scientist', u'believ', u'life', u'mar']
[u'famili', u'jackson', u'death', u'grandmoth']
[u'fourth', u'cyclon', u'threaten', u'pacif', u'island']
[u'gallop', u'cast', u'vote']
[u'german', u'tip', u'sydney']
[u'govt', u'disput', u'mental', u'health', u'claim']
[u'green', u'confid', u'improv', u'perform']
[u'hobart', u'airport', u'upgrad', u'fast', u'track']
[u'hundr', u'evacu', u'tanker', u'accid']
[u'hunter', u'thompson', u'wife', u'hear', u'suicid']
[u'hurrican', u'muscl', u'red']
[u'hyde', u'park', u'anzac', u'memori', u'vandalis']
[u'israel', u'presid', u'visit', u'australia', u'amid']
[u'jackson', u'defenc', u'attack', u'accus', u'mother']
[u'japan', u'confirm', u'case', u'diseas']
[u'japan', u'launch', u'space', u'rocket']
[u'joey', u'save', u'knight']
[u'knight', u'experiment', u'mood']
[u'labor', u'deni', u'mislead', u'candid', u'stand']
[u'labor', u'elect', u'despit', u'swing']
[u'labor', u'pois', u'elect']
[u'late', u'error', u'cost', u'omalley', u'outright', u'lead']
[u'lehmann', u'launch', u'bat', u'onslaught']
[u'farmer', u'work', u'smarter', u'report', u'say']
[u'liber', u'director', u'shrug', u'poll']
[u'liber', u'ahead', u'bunburi']
[u'littbarski', u'coach', u'sydney']
[u'kill', u'injur', u'freeway', u'accid']
[u'mcrae', u'deni', u'fraudul', u'enrol', u'claim']
[u'medic', u'expert', u'fear', u'pope']
[u'melbourn', u'polic', u'stand', u'arm']
[u'melbourn', u'stand', u'end', u'arrest']
[u'miss', u'dead']
[u'mitchel', u'tip', u'perth']
[u'molik', u'dump', u'mauresmo', u'doha']
[u'nation', u'confid', u'strong', u'show']
[u'nation', u'council', u'decid', u'parti', u'merger', u'debat']
[u'insur', u'rule', u'protest', u'overkil']
[u'virus', u'come', u'monkey', u'expert']
[u'nickel', u'explor', u'flag', u'oper', u'studi']
[u'peacekeep', u'ambush', u'congo']
[u'north', u'korea', u'urg', u'nuclear', u'talk']
[u'ohern', u'down', u'tiger', u'quarter']
[u'ohern', u'dump', u'tiger']
[u'ombudsman', u'probe', u'land', u'valuat']
[u'ordinari', u'red', u'hurrican']
[u'polic', u'hunt', u'driver', u'chase', u'death']
[u'polic', u'investig', u'opiat', u'farm', u'product']
[u'polic', u'probe', u'gold', u'coast', u'street', u'parti']
[u'pont', u'say', u'pitch', u'favour', u'kiwi']
[u'pope', u'deleg', u'sunday', u'bless', u'duti', u'time']
[u'princess', u'mari', u'arriv', u'australia']
[u'govt', u'consid', u'distribut']
[u'nation', u'consid', u'anti', u'junki', u'vaccin']
[u'case', u'move', u'vanston', u'chang', u'detent', u'rule']
[u'record', u'bequest', u'bring', u'multi', u'million', u'chariti']
[u'redback', u'collaps', u'hand', u'bull', u'victori']
[u'relentless', u'brumbi', u'overpow', u'crusad']
[u'roo', u'eagl', u'clash', u'semi']
[u'russian', u'iran', u'nuclear', u'fuel', u'deal', u'hit', u'snag']
[u'sanction', u'lift', u'togo', u'presid', u'resign']
[u'singl', u'lone', u'women']
[u'south', u'africa', u'hammer', u'zimbabw']
[u'spous', u'nation', u'wife', u'carri', u'glori']
[u'springbok', u'wing', u'lead', u'stormer', u'victori']
[u'springborg', u'conced', u'merger', u'plan', u'dead', u'water']
[u'streak', u'end', u'zimbabw', u'exil']
[u'aviv', u'blast', u'shatter', u'truce']
[u'aviv', u'bomber', u'brother', u'arrest']
[u'injur', u'boat', u'explos']
[u'tiger', u'flog', u'bomber', u'lion', u'hammer', u'swan']
[u'togo', u'armi', u'instal', u'presid', u'resign']
[u'general', u'see', u'last', u'iraq', u'insurg']
[u'zarqawi', u'aid', u'captur', u'iraq']
[u'tsunami', u'relief', u'billion']
[u'charg', u'million', u'ecstasi', u'raid']
[u'china', u'accid', u'kill']
[u'polic', u'chase']
[u'hospit', u'suburban', u'shoot']
[u'teen', u'question', u'shoot', u'death']
[u'union', u'fear', u'tabcorp', u'centr', u'job']
[u'team', u'lebanon', u'probe', u'hariri', u'kill']
[u'urg', u'china', u'review', u'labour', u'camp']
[u'block', u'plan', u'environ', u'bodi']
[u'market', u'rise', u'growth', u'forecast']
[u'say', u'missil', u'shield', u'intercept', u'success']
[u'soldier', u'iraqi', u'die', u'attack']
[u'valencia', u'sack', u'ranieri', u'uefa', u'flop']
[u'vic', u'despit', u'bevan']
[u'elect', u'expect', u'wire']
[u'leader', u'cast', u'vote']
[u'poll', u'open', u'labor', u'tip']
[u'warrior', u'head', u'outright']
[u'warrior', u'pile', u'miseri', u'perth']
[u'webb', u'breath', u'miyazato', u'neck']
[u'wife', u'stepson', u'question', u'man', u'death']
[u'woodward', u'unveil', u'tsunami', u'squad']
[u'worker', u'kill', u'tractor', u'accid']
[u'yemen', u'uphold', u'cole', u'blast', u'death', u'sentenc']
[u'countri', u'sign', u'anti', u'smoke', u'treati']
[u'amnesti', u'intern', u'founder', u'die']
[u'arthur', u'arizona', u'final']
[u'australian', u'clergi', u'critic', u'north', u'american']
[u'australian', u'troop', u'open', u'iraq']
[u'barca', u'hold', u'numancia', u'real', u'slump']
[u'barnett', u'conced', u'defeat']
[u'barnett', u'ponder', u'futur', u'amid', u'elect', u'loss']
[u'barnett', u'step']
[u'beatti', u'vow', u'cooper']
[u'birney', u'return', u'kalgoorli']
[u'blue', u'exorcis', u'demon']
[u'bomb', u'kill', u'near', u'iraqi', u'town', u'mosul']
[u'botswana', u'crown', u'miss']
[u'bunburi', u'seat', u'wire']
[u'bush', u'berri', u'share', u'worst', u'film', u'honour']
[u'bushrang', u'final', u'hop', u'aliv']
[u'cahil', u'fire', u'everton', u'brink', u'champion', u'leagu']
[u'carr', u'anger', u'attack', u'polic']
[u'clean', u'continu', u'tanker', u'accid']
[u'clean', u'oper', u'continu', u'tanker', u'spill']
[u'cosgrov', u'confid', u'troop', u'return', u'year']
[u'countri', u'show', u'forc', u'polic', u'presenc']
[u'crew', u'continu', u'mop', u'tanker', u'spill', u'emerg']
[u'cyclon', u'perci', u'devast', u'tokelau']
[u'darl', u'rang', u'stay', u'liber']
[u'deflat', u'black', u'cap', u'dump', u'tuffey']
[u'disappoint', u'solo', u'sailor', u'arriv', u'hobart']
[u'earli', u'count', u'show', u'support', u'trade', u'hour']
[u'egypt', u'announc', u'landmark', u'democrat', u'reform']
[u'english', u'suspend', u'onlin', u'racehors']
[u'fear', u'govt', u'plan', u'push', u'workplac', u'agreement']
[u'feder', u'advis', u'gallop', u'consolid']
[u'feder', u'overwhelm', u'agassi', u'reach', u'dubai', u'final']
[u'british', u'troop', u'face', u'prosecut', u'crime']
[u'polic', u'chief', u'join', u'inquiri', u'team']
[u'gallop', u'claim', u'victori']
[u'gallop', u'flag', u'cabinet', u'reshuffl']
[u'goosen', u'restor', u'order', u'aussi', u'crash']
[u'govt', u'fail', u'promot', u'railway', u'opposit', u'say']
[u'greenpeac', u'stop', u'dolphin', u'kill', u'trawler']
[u'green', u'nomin', u'devil', u'threaten', u'speci']
[u'gregan', u'hail', u'gutsi', u'brumbi']
[u'greyhound', u'sustain', u'region', u'run']
[u'health', u'servic', u'urg', u'greater', u'communiti', u'consult']
[u'hezbollah', u'deni', u'involv', u'aviv', u'suicid']
[u'hop', u'elect', u'boost', u'feder', u'moral']
[u'hunt', u'violent', u'kilda', u'attack']
[u'hussey', u'shape', u'bevan', u'pont']
[u'indian', u'archaeologist', u'discov', u'ancient', u'port', u'citi']
[u'indian', u'villag', u'teen', u'nasa', u'claim', u'crash', u'earth']
[u'indigen', u'histori', u'project', u'aim', u'women']
[u'indonesian', u'soldier', u'kill', u'aceh', u'violenc']
[u'injur', u'pollock', u'second', u'dayer']
[u'islam', u'jihad', u'beirut', u'claim', u'aviv', u'bomb']
[u'island', u'overlook', u'world', u'windfal']
[u'japan', u'excit', u'satellit', u'success']
[u'job', u'slash', u'holden', u'ford', u'compon', u'contract']
[u'kiwi', u'issu', u'court', u'threat', u'beamer']
[u'labor', u'like', u'retain', u'albani']
[u'labor', u'retain', u'hold', u'state']
[u'labor', u'take', u'central', u'kimberley', u'pilbara']
[u'labor', u'tip', u'hold', u'mindari']
[u'land', u'ballot', u'net', u'million', u'sale']
[u'legendari', u'band', u'reform', u'melbourn', u'tsunami']
[u'consid', u'donat', u'polici', u'overhaul']
[u'liber', u'deni', u'labor', u'take', u'murray']
[u'littbarski', u'predict', u'bright', u'futur', u'leagu']
[u'macqueen', u'confid', u'team']
[u'mail', u'defi', u'warrior']
[u'charg', u'student', u'assault']
[u'die', u'stab', u'incid']
[u'give', u'ireland', u'murder']
[u'mari', u'sail', u'victori', u'ahead', u'princ']
[u'mcrae', u'hold', u'riverton', u'despit', u'trickeri', u'claim']
[u'melbourn', u'organis', u'hail', u'webber', u'sydney', u'drive']
[u'museum', u'extrem', u'exhibit', u'offer', u'desert', u'snapshot']
[u'nation', u'anti', u'junki', u'vaccin', u'plan', u'bizarr']
[u'nation', u'liber', u'greenough']
[u'polic', u'station', u'need', u'urgent', u'overhaul']
[u'ogilvi', u'grab', u'share', u'tucson', u'lead']
[u'omalley', u'claim', u'play']
[u'shoot', u'stab', u'melbourn', u'hous', u'attack']
[u'opposit', u'demand', u'brief', u'troop', u'deploy']
[u'pacemen', u'return', u'india', u'squad']
[u'palestinian', u'wipe', u'milit', u'group', u'sharon']
[u'polic', u'investig', u'steal', u'ballot', u'paper']
[u'polic', u'task', u'forc', u'form', u'violent', u'attack']
[u'pope', u'appear', u'hospit', u'window', u'bless']
[u'pretorius', u'lead', u'cat', u'bull']
[u'princ', u'charl', u'deserv', u'respect', u'costello']
[u'radisich', u'increas', u'swan', u'hill', u'margin']
[u'ranger', u'stretch', u'scottish', u'lead']
[u'red', u'tune']
[u'relentless', u'brumbi', u'overpow', u'crusad']
[u'riot', u'polic', u'arrest', u'clash']
[u'road', u'remain', u'close', u'tanker', u'spill', u'clean']
[u'rooney', u'doubl', u'keep', u'unit', u'hunt', u'arsenal', u'hold']
[u'saddam', u'half', u'brother', u'captur', u'iraq', u'govt']
[u'film', u'industri', u'get', u'fund', u'boost']
[u'sampdoria', u'beat', u'brescia', u'seri']
[u'scientist', u'produc', u'cancer', u'kill']
[u'scot', u'beat', u'itali', u'avoid', u'nation', u'whitewash']
[u'sehwag', u'wari', u'inexperienc', u'pakistan', u'pacer']
[u'serena', u'davenport', u'name', u'team']
[u'serial', u'killer', u'suspect', u'arrest', u'kansa']
[u'sharapova', u'tame', u'molik', u'doha', u'final']
[u'stranglehold', u'tighten', u'zarqawi', u'iraq', u'secur']
[u'syria', u'deni', u'role', u'aviv', u'bomb', u'blame', u'israel']
[u'taiwan', u'high', u'rise', u'blaze', u'kill']
[u'green', u'push', u'govt', u'cover', u'protest', u'liabil']
[u'tasmanian', u'urg', u'help', u'refuge', u'jail']
[u'tiger', u'deni', u'bushrang']
[u'tom', u'dimarco', u'book', u'american', u'match', u'play', u'final']
[u'treasur', u'downplay', u'rate', u'fear']
[u'case', u'polio', u'ethiopia']
[u'kill', u'suspect', u'murder', u'suicid', u'shoot']
[u'armi', u'unit', u'return', u'iraq']
[u'marin', u'kill', u'central', u'iraq']
[u'resum', u'indonesian', u'militari', u'train']
[u'vietnam', u'veteran', u'rememb', u'fall', u'friend']
[u'warrior', u'reclaim', u'competit', u'lead']
[u'warrior', u'easi', u'chase']
[u'webber', u'conced', u'home']
[u'webb', u'reel', u'miyazato', u'master']
[u'welsh', u'dethron', u'franc']
[u'woman', u'assault', u'sword', u'smash', u'window']
[u'zimbabw', u'author', u'shut', u'independ', u'week']
[u'abbott', u'urg', u'privat', u'sector', u'simplifi', u'charg']
[u'alcohol', u'free', u'prove', u'winner']
[u'ararat', u'hous', u'blaze', u'consid', u'suspici']
[u'aussi', u'cyclist', u'world', u'podium', u'clean', u'sweep']
[u'australia', u'china', u'join', u'forc', u'transnat', u'crime']
[u'australian', u'academ', u'fight', u'botswana', u'deport']
[u'action', u'confront']
[u'bali', u'bomber', u'move', u'java', u'jail']
[u'bellami', u'open', u'celtic', u'account']
[u'birney', u'tip', u'opposit', u'leader']
[u'blanchett', u'win', u'oscar', u'aviat']
[u'botswanan', u'court', u'hand', u'australian', u'academ', u'repriev']
[u'bowler', u'take', u'comfort', u'murchison', u'eyr']
[u'jab', u'play', u'kilda', u'beach']
[u'broom', u'stage', u'nation', u'anti', u'terror']
[u'bunburi', u'murray', u'count', u'prioriti']
[u'busi', u'chamber', u'beat', u'bridg', u'work']
[u'clark', u'sack', u'weekend', u'revel']
[u'greater', u'effort', u'curb', u'indigen', u'suicid']
[u'scientif', u'assess', u'bell']
[u'bomb', u'kill', u'iraqi', u'seeker']
[u'carr', u'accus', u'soft', u'soft', u'approach', u'rioter']
[u'resourc', u'profit', u'rise']
[u'chelsea', u'snatch', u'thriller']
[u'chief', u'minist', u'defend', u'freight', u'line']
[u'child', u'detent', u'polici', u'need', u'revis', u'activist']
[u'china', u'doctor', u'reveal', u'babi']
[u'class', u'size', u'increas', u'teacher', u'stress', u'leav', u'union']
[u'coast', u'lifesav', u'win', u'state', u'honour']
[u'communiti', u'disturb', u'riot', u'violenc']
[u'compani', u'profit', u'resourc', u'boost', u'market']
[u'concern', u'air', u'develop', u'tape']
[u'concern', u'hold', u'miss', u'german', u'tourist']
[u'congo', u'rush', u'defenc', u'chief', u'east', u'death']
[u'contracept', u'pill', u'link', u'depress']
[u'coonan', u'consid', u'region', u'phone', u'report']
[u'coron', u'probe', u'child', u'death']
[u'council', u'consid', u'pavilion', u'option']
[u'council', u'happi', u'longer', u'leas']
[u'councillor', u'seek', u'deficit', u'figur', u'remov']
[u'council', u'coke', u'project', u'brief']
[u'council', u'shame', u'tree', u'vandal']
[u'court', u'hear', u'murder', u'worker', u'seek', u'life']
[u'court', u'tell', u'gangland', u'victim', u'know']
[u'crime', u'stopper', u'help', u'victorian', u'crime']
[u'cyclist', u'complet', u'sustain', u'trip']
[u'cyclon', u'perci', u'pound', u'northern', u'cook', u'island']
[u'defenc', u'conting', u'return', u'aceh']
[u'dept', u'urg', u'southport', u'spit', u'plan']
[u'detain', u'australian', u'hold', u'explan']
[u'detaine', u'support', u'hop', u'dick', u'smith']
[u'develop', u'talk', u'merimbula', u'retail', u'plan']
[u'dick', u'smith', u'lobbi', u'detaine', u'releas']
[u'district', u'court', u'judg', u'swear']
[u'diver', u'scrabbl', u'guin', u'record']
[u'donnelli', u'bold', u'defeat']
[u'doomadge', u'call', u'help', u'watch', u'hous', u'wit']
[u'drop', u'assault', u'charg', u'caus', u'alarm']
[u'time', u'byrock']
[u'dust', u'mite', u'love', u'lismor', u'condit']
[u'dust', u'storm', u'engulf', u'tennant', u'creek']
[u'economi', u'slow', u'rat', u'tip', u'rise']
[u'ellison', u'thank', u'polic', u'tsunami', u'zone', u'tour']
[u'fairymead', u'worker', u'job', u'secur']
[u'fear', u'hold', u'sale', u'children', u'ward']
[u'fear', u'tassi', u'tiger', u'pic', u'return']
[u'fight', u'polio', u'launch', u'ivori', u'coast']
[u'finch', u'hand', u'stuart', u'preseason', u'select', u'poser']
[u'fingerprint', u'fail', u'link', u'victim', u'murder', u'accus']
[u'shroud', u'hobart', u'smoke']
[u'firework', u'whistleblow', u'face', u'court']
[u'folk', u'festiv', u'hit', u'right', u'note', u'crowd']
[u'food', u'liquor', u'sale', u'boost', u'woolworth', u'profit']
[u'german', u'tourist', u'bog']
[u'attend', u'armi', u'memori', u'servic']
[u'crop', u'locat', u'reveal']
[u'gold', u'coast', u'boost', u'webb', u'put', u'confid']
[u'govt', u'begin', u'talk']
[u'govt', u'enter', u'port', u'augusta', u'indigen']
[u'govt', u'classroom', u'delay']
[u'grant', u'boost', u'psoriasi', u'cure', u'research']
[u'grape', u'grower', u'look', u'boost', u'semillon', u'vine']
[u'green', u'eas', u'water', u'restrict']
[u'hay', u'escap', u'recaptur']
[u'heavi', u'snow', u'kill', u'japan']
[u'hilla', u'suicid', u'bomb', u'toll', u'rise']
[u'hill', u'win', u'close', u'contest', u'geraldton']
[u'hollywood', u'gear', u'oscar']
[u'hous', u'plan', u'puzzl', u'dorrigo', u'resid']
[u'hunt', u'serial', u'rapist', u'spark', u'safeti', u'forum']
[u'illeg', u'worker', u'attempt', u'leav', u'malaysia']
[u'india', u'congress', u'win', u'indian', u'agricultur', u'state']
[u'form', u'arthur', u'readi', u'fitzgerald']
[u'iran', u'open', u'nuclear', u'program']
[u'iran', u'want', u'compromis', u'nuclear', u'program']
[u'iraq', u'deploy', u'wont', u'chang', u'terror', u'threat']
[u'iraq', u'shoot', u'justifi', u'say', u'australian', u'command']
[u'irish', u'grand', u'slam', u'cours']
[u'isra', u'arrest', u'palestinian', u'land', u'scam']
[u'jack', u'russel', u'nurtur', u'england', u'keeper', u'jone']
[u'japan', u'consid', u'moon', u'research', u'base', u'report']
[u'juve', u'milan', u'neck', u'neck', u'itali']
[u'keen', u'show', u'timber', u'plantat', u'industri']
[u'knight', u'consid', u'reject', u'booz', u'cultur']
[u'knight', u'indec', u'assault', u'claim', u'drop']
[u'kouta', u'injur', u'fevola', u'report', u'blue']
[u'labor', u'prove', u'strong', u'north', u'west']
[u'lebanes', u'minist', u'deni', u'opposit', u'claim']
[u'letter', u'reveal', u'detail', u'bishop', u'year', u'affair']
[u'liber', u'hope', u'prepar', u'leadership', u'battl']
[u'liber', u'powerbrok', u'anoint', u'birney']
[u'local', u'pair', u'join', u'murray', u'darl', u'basin', u'committe']
[u'stab', u'brawl', u'outsid', u'restaur']
[u'court', u'weekend', u'stab']
[u'marina', u'develop', u'look', u'contractor']
[u'martin', u'like', u'retain', u'kimberley']
[u'martin', u'elect', u'date']
[u'media', u'surpris', u'princess', u'mari']
[u'meet', u'resolv', u'ambul', u'accommod']
[u'middlesbrough', u'snatch', u'late', u'draw', u'bolton', u'lose']
[u'minist', u'fear', u'emerg', u'accommod']
[u'miss', u'ballot', u'paper', u'intact']
[u'mitchel', u'confirm', u'perth', u'coach']
[u'mitchel', u'name', u'perth', u'coach']
[u'mitchel', u'super', u'sign']
[u'motiv', u'beachley', u'reclaim', u'titl']
[u'nation', u'sour', u'sugar', u'grant', u'decis']
[u'nation', u'moot', u'plan', u'region']
[u'needl', u'stick', u'injuri', u'prompt', u'beach', u'admiss']
[u'deploy', u'prepar', u'iraq', u'danger', u'command']
[u'interim', u'rescu', u'chopper', u'servic', u'lift']
[u'polic', u'station', u'unveil', u'humpti']
[u'recycl', u'bin', u'mark', u'recycl', u'mileston']
[u'safe', u'push', u'infect', u'rise']
[u'korea', u'rejoin', u'talk', u'june']
[u'vote', u'disappoint', u'retail']
[u'nrma', u'plate', u'driver', u'restrict']
[u'govt', u'ban', u'publish', u'peddl', u'fake']
[u'nurs', u'feder', u'work', u'return', u'govt']
[u'nurs', u'overtim', u'have', u'impact']
[u'ogilvi', u'win', u'titl']
[u'opposit', u'say', u'chang', u'sham']
[u'opposit', u'say', u'plan', u'process', u'faulti']
[u'oscar', u'honour', u'director', u'sidney', u'lumet']
[u'paedophil', u'take', u'resid', u'mackay']
[u'palm', u'island', u'coroni', u'inquest', u'begin']
[u'passeng', u'outback', u'track']
[u'pedestrian', u'die', u'accid']
[u'perth', u'run', u'final']
[u'plan', u'west', u'coast', u'boost', u'job', u'competit']
[u'plan', u'paper', u'focus', u'popul', u'chang']
[u'consid', u'palm', u'island', u'royal', u'commiss']
[u'pngs', u'cricket', u'step', u'away', u'world', u'final']
[u'pngs', u'cricket', u'step', u'closer', u'world', u'final']
[u'polic', u'increas', u'pressur', u'compo', u'scheme']
[u'polic', u'investig', u'fatal', u'crash']
[u'polic', u'investig', u'threat', u'multiplex']
[u'polic', u'issu', u'teen', u'parti', u'warn']
[u'polic', u'promis', u'speed', u'crackdown']
[u'polic', u'question', u'attack']
[u'polic', u'question', u'man', u'death', u'hotel']
[u'polic', u'reject', u'tourist', u'death', u'specul']
[u'polic', u'seek', u'wit', u'horsham', u'attack']
[u'polic', u'strike', u'forc', u'probe', u'suspici', u'babi', u'death']
[u'polic', u'continu', u'patrol', u'fourth', u'night']
[u'polic', u'rioter', u'carr', u'say']
[u'pont', u'defend', u'beamer']
[u'pont', u'hop', u'debut']
[u'pont', u'cork', u'thigh']
[u'pope', u'good', u'condit', u'vatican']
[u'portman', u'consid', u'revis', u'takeov', u'offer']
[u'princ', u'charl', u'tour', u'lanka', u'tsunami', u'ruin']
[u'prosthesi', u'oper', u'offer', u'hope', u'bone', u'cancer']
[u'public', u'support', u'need', u'boost']
[u'public', u'urg', u'boost', u'upper', u'hous', u'knowledg']
[u'push', u'disqualifi', u'bushfir', u'coron', u'continu']
[u'nation', u'liber', u'lock', u'horn', u'seat']
[u'rain', u'dous', u'forest', u'fire', u'lift', u'haze', u'malaysia']
[u'rann', u'ask', u'hold', u'offici', u'rat']
[u'rathbon', u'deni', u'go', u'west']
[u'record', u'jail', u'term', u'illeg', u'drug', u'maker', u'seller']
[u'wont', u'blue', u'footi', u'spend', u'say', u'collin']
[u'renown', u'french', u'collect', u'arriv', u'festiv']
[u'rice', u'grower', u'await', u'drought', u'fund', u'news']
[u'rodan', u'season', u'start']
[u'rucker', u'confid', u'bullet', u'test', u'king']
[u'schoolmast', u'plead', u'guilti', u'student']
[u'search', u'miss', u'port', u'macquari']
[u'second', u'tsunami', u'appeal', u'match', u'cancel']
[u'sevilla', u'valencia', u'final']
[u'citi', u'council', u'prove', u'issu']
[u'shed', u'blaze', u'claim', u'thousand', u'bale']
[u'shop', u'hour', u'plan', u'like', u'face', u'reject']
[u'slow', u'post', u'joke', u'bourk']
[u'smith', u'cite', u'grant', u'clear', u'review', u'panel']
[u'soccer', u'side', u'score', u'fund']
[u'steelmak', u'scope', u'philippin', u'opportun']
[u'stephen', u'seek', u'cabinet', u'spot']
[u'steal', u'ballot', u'paper', u'investig']
[u'studi', u'find', u'loneli', u'women']
[u'survey', u'find', u'job', u'growth', u'slow']
[u'swank', u'knock', u'oscar', u'competit']
[u'syria', u'link', u'captur', u'saddam', u'half', u'brother']
[u'team', u'counsel', u'player', u'death']
[u'tennant', u'creek', u'back', u'elder', u'council']
[u'test', u'show', u'sticki', u'rice', u'porridg', u'cement']
[u'thorough', u'apprenticeship', u'toughen', u'cricket']
[u'thousand', u'demonstr', u'beirut', u'defi', u'govt']
[u'thousand', u'rock', u'tsunami', u'concert']
[u'rescu', u'dingi', u'overturn']
[u'timber', u'industri', u'welcom', u'wood', u'suppli', u'agreement']
[u'titl', u'dream', u'come', u'true', u'arthur']
[u'togo', u'polic', u'break', u'protest', u'capit']
[u'tom', u'cruis', u'match', u'play']
[u'smith', u'zim', u'thrash']
[u'tournament', u'win', u'feder', u'nadal']
[u'trade', u'deficit', u'blow']
[u'train', u'cours', u'target', u'young', u'rural', u'driver']
[u'truanci', u'program', u'boost', u'attend', u'rate']
[u'darl', u'down', u'road', u'accid']
[u'lawyer', u'stand', u'trial', u'gangland']
[u'streaker', u'arrest', u'tropfest']
[u'union', u'want', u'timber', u'job', u'secur', u'blaze']
[u'govt', u'urg', u'tough', u'russia']
[u'virgin', u'urg', u'sharehold', u'reject', u'patrick']
[u'barrist', u'south', u'australia']
[u'watson', u'resum', u'bowl']
[u'weather', u'bureau', u'websit', u'win', u'popular', u'award']
[u'webb', u'look', u'form', u'bounc']
[u'wed', u'band', u'welcom', u'princess', u'mari']
[u'wellington', u'councillor', u'join']
[u'william', u'webber', u'need', u'race', u'experi', u'team', u'boss']
[u'william', u'drug', u'test', u'controversi']
[u'woman', u'charg', u'stab', u'murder']
[u'worker', u'protest', u'tenix', u'individu', u'contract', u'offer']
[u'charg', u'drug', u'raid']
[u'abar', u'predict', u'bumper', u'commod', u'earn']
[u'elect', u'surgeri', u'wait', u'list', u'grow']
[u'govt', u'back', u'wage', u'rise']
[u'action', u'group', u'seek', u'hastier', u'oper', u'theatr']
[u'hous', u'internet', u'porn', u'squad']
[u'agricultur', u'blueprint', u'involv', u'industri', u'govt']
[u'qaeda', u'urg', u'zarqawi', u'launch', u'attack']
[u'find', u'evid', u'bigger', u'north', u'east', u'cancer']
[u'ancient', u'perfumeri', u'reveal', u'scent', u'past']
[u'arthur', u'readi', u'davi', u'challeng']
[u'artist', u'plan', u'corps', u'plastin', u'factori', u'poland']
[u'ash', u'right']
[u'aussi', u'thrash', u'black', u'cap']
[u'aust', u'academ', u'win', u'right', u'stay', u'botswana']
[u'aust', u'archaeologist', u'ancient', u'mummi']
[u'aust', u'forc', u'return', u'tale', u'tsunami', u'aceh']
[u'australia', u'vital', u'role', u'timor', u'labor']
[u'australia', u'chase']
[u'author', u'uphold', u'complaint']
[u'averag', u'bloke', u'birney', u'contest', u'leadership']
[u'pleas', u'ferri', u'worker', u'agreement']
[u'baradin', u'grain']
[u'bathurst', u'region', u'medic', u'school']
[u'beachley', u'predict', u'tough', u'fight', u'world', u'champ']
[u'beatti', u'blast', u'costello', u'possibl', u'chang']
[u'beatti', u'reject', u'need', u'stand', u'asid', u'palm']
[u'beazley', u'launch', u'rat', u'attack', u'werriwa']
[u'beirut', u'protest', u'street', u'pressur', u'syria']
[u'bike', u'accid', u'leav', u'condit']
[u'black', u'cap', u'wors']
[u'blaze', u'damag', u'rockhampton', u'restaur']
[u'blue', u'mountain', u'derail', u'delay', u'train']
[u'die']
[u'brack', u'unimpress', u'costello', u'plan']
[u'brisban', u'enforc', u'nightclub', u'lock']
[u'british', u'approv', u'controversi', u'terror', u'law']
[u'bulldog', u'ponder', u'tribun', u'option']
[u'bullet', u'determin', u'conquer', u'king']
[u'maritim', u'pilot', u'head', u'ship']
[u'capricorn', u'coast', u'properti', u'valu', u'expect', u'rise']
[u'caravan', u'park', u'boom', u'capricorn', u'coast']
[u'carpet', u'cleaner', u'hard', u'sell', u'earn', u'fine']
[u'chamber', u'aim', u'shake', u'merimbula', u'oldi', u'imag']
[u'chamber', u'vote', u'sunday', u'trade', u'maryborough']
[u'china', u'experi', u'divorc', u'boom']
[u'clark', u'leav', u'cabinet', u'amid', u'inquiri']
[u'clinton', u'optimist', u'taiwan', u'china', u'relat']
[u'clinton', u'urg', u'tsunami', u'nation']
[u'communiti', u'seek', u'polic', u'station', u'fund']
[u'cook', u'island', u'count', u'cost', u'cyclon', u'perci']
[u'cool', u'head', u'prevail', u'india', u'ganguli']
[u'costello', u'stand', u'remark']
[u'council', u'confid', u'secur', u'airport', u'fund']
[u'council', u'consid', u'airport', u'hous', u'plan']
[u'council', u'seek', u'polic', u'staff', u'answer']
[u'council', u'consid', u'integr', u'tourism', u'market']
[u'council', u'will', u'review', u'mow', u'man', u'fine']
[u'council', u'win', u'rat', u'payment', u'case']
[u'count', u'continu', u'kimberley']
[u'court', u'hear', u'protest', u'massacr', u'site']
[u'cure', u'all', u'rush', u'indian', u'shelv']
[u'reject', u'costello', u'critic']
[u'current', u'account', u'deficit', u'blow']
[u'dark', u'cloud', u'hang', u'weather', u'observ', u'station']
[u'detail', u'reveal', u'terrorist', u'suspect', u'abus']
[u'develop', u'creat', u'uncertainti']
[u'dick', u'smith', u'arriv', u'baxter', u'visit']
[u'dick', u'smith', u'fli', u'baxter', u'detaine']
[u'dolphin', u'pleas', u'beatti', u'carrara', u'comment']
[u'domest', u'cricket', u'comp', u'deserv', u'better', u'crowd', u'support']
[u'doubt', u'air', u'bendigo', u'shop']
[u'drug', u'suspens', u'fuel', u'tumbl', u'wall']
[u'februari', u'prompt', u'save', u'water', u'remind']
[u'educ', u'see', u'vital', u'fix', u'trade', u'skill']
[u'elder', u'atsic', u'protest', u'canberra']
[u'explos', u'deton', u'macquari', u'field']
[u'famili', u'fear', u'miss']
[u'famili', u'urg', u'crash', u'driver', u'come', u'forward']
[u'farm', u'group', u'focus', u'vote', u'valu']
[u'west', u'share', u'feder', u'fund']
[u'father', u'right', u'group', u'stage', u'london', u'protest']
[u'februari', u'rain', u'boost', u'gippsland']
[u'femal', u'student', u'doubl', u'need', u'medicin', u'place']
[u'fight', u'kill', u'nepales', u'rebel']
[u'crew', u'patrol', u'goat', u'hill', u'bushfir']
[u'strathfield', u'mayor', u'resign']
[u'formula', u'fact', u'figur']
[u'formula', u'rule', u'chang']
[u'french', u'journalist', u'show', u'make', u'video', u'plea', u'help']
[u'frog', u'watch', u'launch', u'toad', u'trap', u'campaign']
[u'fuel', u'price', u'hike', u'spark', u'indonesian', u'protest']
[u'gambl', u'support', u'program', u'ignor', u'cultur', u'need']
[u'glen', u'ella', u'coach', u'aussi', u'seven']
[u'golden', u'circl', u'eye', u'bank', u'bail']
[u'govt', u'announc', u'plan', u'farm', u'white', u'paper']
[u'govt', u'urg', u'fulfil', u'gascoyn', u'promis']
[u'green', u'lose', u'balanc', u'power']
[u'group', u'meet', u'brigalow', u'belt', u'south', u'bioregion']
[u'gulf', u'home', u'brew', u'ban', u'forc']
[u'gunner', u'firepow', u'blunt', u'henri', u'rule']
[u'hear', u'continu', u'doomadge', u'death']
[u'henjak', u'play', u'hard']
[u'hippo', u'kill', u'australian', u'tourist', u'kenya']
[u'hyne', u'hope', u'face', u'blue']
[u'impress', u'king', u'thump', u'bullet']
[u'indonesian', u'fish', u'boat', u'hold', u'quarantin']
[u'injur', u'venus', u'fall', u'hurdl']
[u'invest', u'environment', u'sustain']
[u'iran', u'ask', u'cooper', u'nuclear', u'watchdog']
[u'iraq', u'bind', u'troop', u'readi', u'leahi']
[u'israel', u'court', u'order', u'probe', u'activist']
[u'isra', u'presid', u'prais', u'australian', u'support']
[u'israel', u'plan', u'detent', u'withdraw', u'oppon']
[u'jackson', u'charg', u'bogus']
[u'jackson', u'trial', u'begin']
[u'japan', u'scan', u'sky', u'alien', u'life']
[u'jitteri', u'fossett', u'begin', u'record', u'attempt']
[u'kingsliff', u'schoolgirl', u'shock', u'world', u'champ']
[u'kingsthorp', u'emerg', u'rais', u'fear']
[u'knight', u'welcom', u'drop', u'charg']
[u'knight', u'welcom', u'drop', u'claim']
[u'labor', u'back', u'state']
[u'land', u'acquisit', u'clear', u'northern']
[u'landmark', u'fowler', u'citi', u'beat', u'norwich']
[u'lebanes', u'govern', u'resign']
[u'lebanes', u'deni', u'govt', u'role', u'hariri', u'murder']
[u'lehmann', u'rule', u'tour']
[u'lincraft', u'sale', u'stitch', u'job']
[u'london', u'meet', u'discuss', u'palestinian', u'reform']
[u'accus', u'truck', u'assault', u'policeman']
[u'arrest', u'princ', u'charl', u'visit', u'fremantl']
[u'mang', u'threaten', u'wombat']
[u'plead', u'guilti', u'shoe', u'bomb', u'plot']
[u'manufactur', u'index', u'point', u'slow', u'growth']
[u'west', u'wind', u'farm', u'start', u'shape']
[u'sector', u'moot', u'scienc', u'technolog', u'precinct']
[u'molik', u'continu', u'rank', u'rise']
[u'iluka', u'unrest', u'possibl']
[u'back', u'land', u'remain', u'open', u'space']
[u'multiplex', u'extort', u'inquiri', u'continu']
[u'multiplex', u'threat', u'prompt', u'walkout']
[u'multiplex', u'work', u'continu', u'despit', u'sniper', u'threat']
[u'murder', u'inquiri', u'open', u'hotel', u'death']
[u'miner', u'buoy', u'australian', u'market']
[u'hollow', u'manag', u'envisag', u'expand', u'health']
[u'servic', u'address', u'indigen', u'domest', u'violenc']
[u'nicholson', u'blue', u'return', u'tiger']
[u'sight', u'indigen', u'leadership']
[u'england', u'return', u'wilkinson']
[u'stop', u'round', u'world', u'flight', u'take']
[u'offici', u'winner', u'greenough']
[u'north', u'coast', u'get', u'safe', u'messag']
[u'rape', u'offend', u'offenc']
[u'packer', u'arriv', u'australia']
[u'pair', u'charg', u'hammer', u'incid']
[u'pakistan', u'veto', u'dalai', u'lama', u'cricket']
[u'palm', u'island', u'inquest', u'adjourn', u'amid', u'bias', u'concern']
[u'founder', u'face', u'committ', u'septemb']
[u'parent', u'group', u'worri', u'telstra', u'privatis']
[u'perci', u'put', u'cook', u'state', u'emerg']
[u'perth', u'crane', u'driver', u'heed', u'multiplex', u'threat']
[u'place', u'squeez', u'forc', u'uni', u'degre']
[u'polic', u'consid', u'reward', u'help', u'catch', u'tourist']
[u'polic', u'deni', u'mistak', u'macquari', u'field']
[u'polic', u'griffith', u'attack', u'descript']
[u'polic', u'fear', u'children', u'miss', u'ammunit']
[u'polic', u'interview', u'sanctuari', u'fatal']
[u'polic', u'pleas', u'drug', u'distributor', u'year']
[u'polic', u'probe', u'biki', u'assault', u'claim']
[u'polic', u'respons', u'focus', u'macquari', u'field', u'meet']
[u'polic', u'search', u'miss']
[u'polic', u'urg', u'drinker', u'report', u'spike']
[u'polic', u'wait', u'interview', u'doubl', u'stab']
[u'pope', u'make', u'steadi', u'progress', u'say', u'vatican']
[u'pressur', u'india', u'claim', u'inzi']
[u'princ', u'charl', u'arriv', u'australia']
[u'princ', u'charl', u'prais', u'perth', u'medic', u'team']
[u'public', u'cycl', u'path', u'plan']
[u'relief', u'effort', u'begin', u'cook', u'island']
[u'reserv', u'bank', u'tip', u'rais', u'rat']
[u'resid', u'seek', u'intersect', u'safeti']
[u'retir', u'bird', u'make', u'unusu', u'highway', u'sight']
[u'riot', u'spectacl', u'hamper', u'arrest', u'polic']
[u'rock', u'thrower', u'victim', u'seek', u'compens']
[u'rotari', u'park', u'offer', u'communiti', u'asset']
[u'rumsfeld', u'face', u'prison', u'abus', u'suit']
[u'schumach', u'target', u'eighth', u'titl', u'crisi', u'season']
[u'sealink', u'defend', u'fuel', u'surcharg']
[u'selector', u'mull', u'test', u'option']
[u'sentenc', u'teenag', u'killer', u'uphold']
[u'shire', u'back', u'classroom', u'retent']
[u'sierra', u'leon', u'consid', u'australian', u'bail', u'plea']
[u'singl', u'board', u'manag', u'tasmanian', u'port']
[u'smith', u'give', u'week']
[u'smith', u'detaine', u'pledg', u'offer', u'fals', u'hope']
[u'smith', u'risk', u'tribun', u'appear']
[u'specul', u'mount', u'tassi', u'tiger', u'photo']
[u'sugar', u'grower', u'face', u'grant', u'wait']
[u'summit', u'weight', u'palestinian', u'secur']
[u'tasmanian', u'call', u'water', u'qualiti', u'initi']
[u'tassi', u'tiger', u'spotter', u'like', u'sad', u'mistak']
[u'macquari', u'field', u'rioter', u'bail', u'hold']
[u'timber', u'propon', u'confid', u'green', u'concern', u'address']
[u'earli', u'talk', u'loss', u'qanta', u'say']
[u'trucki', u'group', u'outlin', u'youth', u'train', u'plan']
[u'trundl', u'teacher', u'walk']
[u'line', u'predict', u'loss']
[u'tyson', u'comeback', u'australia']
[u'underag', u'driver', u'charg', u'high', u'speed', u'chase']
[u'uneasi', u'peac', u'return', u'macquari', u'field']
[u'union', u'question', u'hospit', u'hygien']
[u'union', u'say', u'truck', u'firm', u'fine', u'higher']
[u'unit', u'star', u'kean', u'court', u'assault', u'charg']
[u'examin', u'treatment', u'indigen', u'australian']
[u'aust', u'seek', u'peacekeep', u'east', u'timor']
[u'court', u'order', u'enemi', u'combat', u'free']
[u'lash', u'alli', u'human', u'right']
[u'ramp', u'guantanamo', u'probe']
[u'walter', u'bank', u'deal', u'secur', u'sydney', u'job']
[u'water', u'author', u'stand', u'water', u'relief']
[u'wayward', u'crow', u'land', u'cold', u'water']
[u'webber', u'shift', u'gear']
[u'west', u'coast', u'hous', u'investig']
[u'western', u'sink', u'teeth', u'dental', u'push']
[u'western', u'record', u'mild', u'summer']
[u'william', u'order', u'underworld', u'murder', u'wit']
[u'wodonga', u'heavi', u'storm']
[u'woman', u'jail', u'rape', u'charg']
[u'woodgat', u'foreshor', u'plan', u'step', u'closer']
[u'worker', u'defi', u'multiplex', u'sniper', u'threat']
[u'youth', u'leader', u'converg', u'adelaid']
[u'cholera', u'outbreak', u'nigeria']
[u'aborigin', u'remain', u'buri', u'ancestr', u'soil']
[u'academ', u'say', u'global', u'warm', u'debat', u'misguid']
[u'acoss', u'target', u'million', u'dollar', u'welfar', u'recipi']
[u'crack', u'cannabi', u'law']
[u'advis', u'urg', u'research', u'detent']
[u'agassi', u'davi', u'comeback']
[u'age', u'hous', u'challeng', u'face', u'council']
[u'condit', u'scheme', u'review']
[u'alleg', u'money', u'launder', u'face', u'court']
[u'alleg', u'rioter', u'allow', u'return', u'palm']
[u'american', u'good', u'longlea', u'firm']
[u'arsenal', u'scrape', u'quarter', u'final']
[u'arsenal', u'scrape', u'final', u'saint']
[u'ashley', u'cooper', u'hamstr', u'strain', u'brumbi', u'stock']
[u'asylum', u'seeker', u'drop', u'lowest', u'figur', u'year']
[u'auburn', u'hospit', u'unsaf', u'critic', u'surgeon']
[u'australian', u'surfer', u'march', u'quarter', u'final']
[u'austria', u'bullish', u'ahead', u'davi']
[u'averag', u'rain', u'predict', u'wide']
[u'baghdad', u'blast', u'kill', u'soldier']
[u'bank', u'chequ', u'fraudster', u'gold', u'coast']
[u'beatti', u'decid', u'clark', u'replac']
[u'beazley', u'outlin', u'infrastructur', u'prioriti']
[u'birney', u'warn', u'leadership', u'balanc']
[u'brack', u'back', u'water', u'deal']
[u'brisban', u'polic', u'blitz', u'nab', u'peopl']
[u'britain', u'stockpil', u'vaccin']
[u'brook', u'return', u'wave', u'injuri', u'goodby']
[u'burnett', u'river', u'worker', u'chang', u'walter']
[u'busi', u'tell', u'lower']
[u'chang', u'access', u'arrang']
[u'charl', u'unlik', u'attend', u'alic', u'buck', u'parti']
[u'civil', u'liberti', u'group', u'howl', u'beatti', u'sniffer']
[u'commission', u'appeal', u'driver', u'come', u'forward']
[u'compani', u'express', u'sympathi', u'follow', u'hippo', u'victim']
[u'concern', u'rais', u'overhaul', u'plan']
[u'coonan', u'flag', u'law', u'allay', u'telstra', u'sale']
[u'council', u'overturn', u'swim', u'pool', u'photo']
[u'council', u'rais', u'question', u'code', u'conduct', u'plan']
[u'council', u'renew', u'higher', u'speed', u'limit', u'push']
[u'court', u'hear', u'teen', u'tell', u'polic', u'kill', u'worker']
[u'court', u'tell', u'convict', u'killer', u'abus', u'child']
[u'cousin', u'eagl']
[u'cousin', u'eagl']
[u'cricket', u'world', u'mourn', u'luckhurst']
[u'croc', u'farmer', u'welcom', u'remov', u'plan']
[u'crowd', u'cheer', u'danish', u'royal', u'outsid', u'gala', u'dinner']
[u'darwin', u'waterfront', u'develop', u'ongo', u'problem']
[u'docker', u'lock', u'coach', u'connolli']
[u'downer', u'say', u'deal', u'liber', u'leadership']
[u'dozen', u'kill', u'congo', u'offens']
[u'driver', u'sentenc', u'highlight', u'court', u'delay']
[u'drop', u'knight', u'assault', u'case', u'surpris']
[u'eagl', u'rest', u'judd', u'embley', u'preseason', u'semi']
[u'earli', u'flight', u'trial', u'continu']
[u'earthquak', u'shake', u'darwin']
[u'electr', u'worker', u'consid', u'industri', u'campaign']
[u'embassi', u'staff', u'baghdad', u'green', u'zone']
[u'employ', u'urg', u'boost', u'safeti']
[u'espanyol', u'hold', u'barca', u'entertain', u'scoreless', u'draw']
[u'expert', u'prais', u'devil', u'diseas', u'research']
[u'extra', u'polic', u'pleas', u'council']
[u'farm', u'group', u'want', u'migrant', u'help', u'skill', u'shortag']
[u'father', u'bodi', u'part', u'artist', u'face', u'nazi', u'claim']
[u'fear', u'incom', u'earner', u'rate', u'rise']
[u'fish', u'settl', u'year']
[u'face', u'join', u'cabinet', u'stalwart']
[u'forest', u'firm', u'invest', u'pine', u'plantat']
[u'fossett', u'abort', u'mission']
[u'franc', u'press', u'syrian', u'withdraw']
[u'fund', u'alloc', u'help', u'protect', u'king', u'brand']
[u'slowdown', u'hit', u'dollar']
[u'gold', u'coast', u'surf', u'claim', u'sixth', u'drown', u'victim']
[u'govt', u'look', u'relax', u'sugar', u'packag', u'criteria']
[u'govt', u'ask', u'delay', u'land', u'water', u'valu']
[u'govt', u'propos', u'overhaul']
[u'govt', u'spend', u'spree', u'rate', u'rise', u'beazley', u'say']
[u'govt', u'indigen', u'hous']
[u'govt', u'urg', u'offer', u'help', u'isol', u'student']
[u'grisli', u'grafton', u'spark', u'polic', u'plea']
[u'habib', u'take', u'defam', u'action']
[u'herbicid', u'spray', u'drift', u'hit', u'crop']
[u'hewitt', u'strive', u'recaptur', u'intens']
[u'high', u'court', u'rule', u'australia', u'asylum', u'seeker']
[u'hill', u'defend', u'armour', u'iraq', u'bind', u'troop']
[u'hippopotamus', u'kill', u'australian', u'tourist']
[u'hodg', u'tour', u'kiwi', u'pick', u'newcom']
[u'hong', u'kong', u'leader', u'report', u'step']
[u'hope', u'kimberley', u'rain']
[u'hospit', u'close', u'bed', u'mental', u'health', u'patient']
[u'hous', u'lobbi', u'lam', u'govt', u'mainten', u'backlog']
[u'howard', u'urg', u'rate', u'rise', u'keep', u'perspect']
[u'incent', u'offer', u'facilit', u'land', u'transfer']
[u'indigen', u'leader', u'lament', u'clark', u'resign']
[u'indonesian', u'student', u'protest', u'fuel', u'price', u'rise']
[u'inquiri', u'clear', u'council', u'manag', u'misconduct']
[u'insurg', u'target', u'baghdad', u'militari', u'base']
[u'integr', u'energi', u'fin', u'bargo', u'accid']
[u'internet', u'sale', u'mind', u'alter', u'drug', u'surg']
[u'iran', u'block', u'nuclear', u'inspect']
[u'iraqi', u'judg', u'work', u'saddam', u'case', u'kill']
[u'ireland', u'wale', u'head', u'nation', u'showdown']
[u'isra', u'presid', u'declar', u'faith', u'abba']
[u'jackson', u'lawyer', u'say', u'star', u'tell', u'stori']
[u'jacob', u'claim', u'mcmeikan', u'conced']
[u'jetstar', u'asia', u'introduc', u'bangkok', u'rout']
[u'karzai', u'appoint', u'warlord', u'armi', u'chief', u'staff']
[u'keat', u'back', u'rat', u'rise']
[u'lake', u'eyr', u'basin', u'studi', u'begin']
[u'guarante', u'test', u'recal', u'hohn']
[u'lennon', u'howard', u'meet', u'discuss', u'forest', u'polici']
[u'lennon', u'upbeat', u'forest', u'plan', u'meet']
[u'liber', u'lobbi', u'detent', u'chang']
[u'liber', u'parti', u'delay', u'leadership', u'ballot']
[u'lobbi', u'group', u'upset', u'servic', u'tender']
[u'oxygen', u'level', u'prompt', u'fish', u'kill']
[u'macquari', u'field', u'arrest', u'send', u'strong', u'messag', u'carr']
[u'madrid', u'bomber', u'plan', u'york', u'attack', u'report']
[u'malaysia', u'crack', u'illeg', u'immigr']
[u'charg', u'toddler', u'electrocut', u'death']
[u'face', u'abalon', u'poach', u'charg']
[u'face', u'court', u'child', u'porn', u'charg']
[u'mclaren', u'raikkonen', u'hop', u'chang', u'fortun']
[u'melbourn', u'gear', u'parad']
[u'melbourn', u'lap', u'atmospher']
[u'question', u'child', u'porn', u'raid']
[u'miner', u'explor', u'site', u'near', u'break', u'hill']
[u'minist', u'attack', u'anim', u'right', u'group']
[u'minist', u'launch', u'polic', u'memori', u'design']
[u'minist', u'open', u'council', u'depot']
[u'mini', u'tornado', u'hit', u'wodonga']
[u'missil', u'spat', u'chill', u'canada', u'relat']
[u'molik', u'lose', u'dubai']
[u'mortlock', u'week']
[u'baxter', u'find', u'vanston']
[u'offer', u'inform', u'william', u'hear']
[u'multiplex', u'crane', u'driver', u'work']
[u'multiplex', u'worker', u'perth']
[u'murder', u'tourist', u'bodi', u'head', u'germani']
[u'murder', u'hostag', u'take', u'spree', u'end', u'jail', u'term']
[u'nation', u'food', u'endors', u'fonterra', u'share', u'offer']
[u'campus', u'open', u'today']
[u'law', u'simplifi', u'histor', u'site', u'registr']
[u'port', u'chief', u'start']
[u'submiss', u'fletcher', u'jone', u'site']
[u'consid', u'eas', u'salari', u'rule']
[u'govt', u'accus', u'rewrit', u'histori']
[u'govt', u'pressur', u'nation', u'park']
[u'trial', u'home', u'birth', u'servic']
[u'number', u'impoverish', u'australian', u'children', u'fall']
[u'opposit', u'back', u'financi', u'troubl', u'ferri']
[u'paedophil', u'alleg', u'disturb', u'politician']
[u'parent', u'face', u'trial', u'toddler', u'methadon', u'death']
[u'parliament', u'flare', u'case']
[u'penguin', u'starv', u'death']
[u'perman', u'servic', u'replac', u'mobil', u'dental']
[u'pickett', u'appeal', u'throw']
[u'pickett', u'appeal', u'suspens']
[u'pine', u'plantat', u'promis', u'job']
[u'play', u'school', u'lesbian', u'parent', u'lead', u'sydney', u'mardi']
[u'polic', u'continu', u'investig']
[u'polic', u'probe', u'fire']
[u'poor', u'rainfal', u'like', u'better']
[u'pope', u'talk', u'day', u'surgeri', u'cardin']
[u'princ', u'charl', u'farewel', u'perth', u'alic', u'spring']
[u'princess', u'mari', u'sit', u'portrait']
[u'princ', u'visit', u'fli', u'doctor', u'alic']
[u'privat', u'health', u'insur', u'premium', u'rise']
[u'produc', u'destock']
[u'protest', u'greet', u'isra', u'presid', u'visit']
[u'back', u'push', u'coal', u'termin', u'infrastructur']
[u'rate', u'rise', u'fail', u'dampen', u'share', u'market']
[u'rate', u'rise', u'tip', u'amid', u'growth', u'slowdown']
[u'rate', u'rise', u'tip', u'hurt', u'central', u'home', u'owner']
[u'rat', u'lift']
[u'rat', u'rise', u'despit', u'econom', u'slowdown']
[u'rat', u'rise', u'leav', u'cane', u'grower', u'bitter', u'tast']
[u'reckless', u'brogden', u'reveal', u'riot', u'investig', u'tactic']
[u'tape', u'hamper', u'servic', u'expans']
[u'report', u'criticis', u'indigen', u'hous', u'educ']
[u'research', u'look', u'lift', u'north', u'coast', u'economi']
[u'review', u'recommend', u'seatbelt', u'school', u'bus']
[u'round', u'world', u'yacht', u'seek', u'shelter', u'tasmania']
[u'rumsfeld', u'sue', u'iraq', u'afghan', u'abus']
[u'rural', u'counsel', u'servic', u'face', u'uncertain', u'futur']
[u'rural', u'miss', u'telstra', u'broadband']
[u'saint', u'rover', u'advanc', u'final']
[u'schoolgirl', u'surfer', u'knock', u'world', u'champ']
[u'school', u'urg', u'help', u'stop', u'drunken', u'behaviour']
[u'schu', u'focus', u'bigger', u'pictur', u'melbourn']
[u'selector', u'test', u'squad', u'today']
[u'share', u'recov', u'nyse']
[u'shire', u'say', u'forc', u'boundari', u'chang', u'cost']
[u'speaker', u'claim', u'involv', u'paedophilia']
[u'specul', u'bowler', u'offer', u'ministeri', u'role']
[u'steal', u'demon', u'memorabilia', u'return']
[u'submiss', u'focus', u'vacant', u'council', u'seat']
[u'suleman', u'face', u'charg']
[u'syria', u'pull', u'troop', u'month', u'assad']
[u'telstra', u'boss', u'vow', u'abandon', u'bush']
[u'tourism', u'oper', u'tell', u'look', u'futur']
[u'travel', u'tale', u'earn', u'biographi', u'prize']
[u'tweed', u'princess', u'meet', u'real', u'thing']
[u'twin', u'baghdad', u'attack', u'kill']
[u'ukrainian', u'polic', u'arrest', u'journalist', u'death']
[u'unborn', u'foetus', u'subject', u'protect', u'law']
[u'univers', u'plan', u'undermin', u'valu', u'degre']
[u'uruguayan', u'inaugur', u'signal', u'shift', u'leav']
[u'end', u'death', u'penalti', u'minor']
[u'brass', u'face', u'guantanamo', u'abus', u'investig']
[u'backbench', u'prepar', u'baxter', u'visit']
[u'victoria', u'sign', u'water', u'scheme', u'pressur']
[u'hospit', u'join', u'nation', u'mental', u'health', u'initi']
[u'water', u'qualiti', u'issu', u'forc', u'stop', u'forestri', u'work']
[u'wodonga', u'storm', u'damag', u'mount']
[u'woodend', u'project']
[u'wool', u'grower', u'address', u'wild', u'woe']
[u'woosnam', u'eye', u'histori', u'success']
[u'world', u'power', u'demand', u'palestinian', u'secur', u'crackdown']
[u'worsley', u'industri', u'woe', u'intensifi']
[u'wrigg', u'tucker', u'grubbi', u'princ', u'charl']
[u'xstrata', u'profit', u'surg', u'rise', u'commod', u'price']
[u'youth', u'guilti', u'fatal', u'umbrella', u'stab']
[u'youth', u'releas', u'question', u'macquari']
[u'abbott', u'laud', u'riverina', u'cancer', u'centr']
[u'accus', u'number', u'murder', u'victim', u'phone', u'court', u'hear']
[u'appeal', u'board', u'stand', u'firm', u'pickett']
[u'age', u'care', u'deal', u'streamlin', u'develop']
[u'back', u'call', u'econom', u'summit']
[u'alcohol', u'plan', u'polic', u'stop', u'cape', u'york', u'hell']
[u'certain', u'probe', u'children', u'ward', u'worri']
[u'anglican', u'suspend', u'dual', u'church', u'priest']
[u'appeal', u'court', u'tell', u'child', u'killer', u'sentenc', u'long']
[u'athlet', u'boss', u'admit', u'there', u'easi']
[u'australian', u'archaeologist', u'impress', u'mummi']
[u'australia', u'say', u'bashir', u'sentenc', u'inadequ']
[u'school', u'princ', u'charl']
[u'bashir', u'face', u'verdict', u'terror', u'charg']
[u'bashir', u'jail', u'bali', u'bomb', u'conspiraci']
[u'bbcs', u'govern', u'review']
[u'beatti', u'name', u'indigen', u'polici', u'minist']
[u'beatti', u'welcom', u'palm', u'inquest']
[u'beazley', u'back', u'foreign', u'labour', u'push']
[u'beazley', u'lobbi', u'nation', u'telstra', u'sale']
[u'beazley', u'want', u'proper', u'send', u'latham']
[u'bendigo', u'keen', u'colleg', u'oper']
[u'blaze', u'rip', u'alic', u'unit']
[u'british', u'schoolgirl', u'win', u'right', u'wear', u'islam', u'dress']
[u'brumbi', u'stretch', u'limit', u'bull', u'clash']
[u'bull', u'dent', u'vic', u'final', u'chanc']
[u'cairn', u'knock']
[u'call', u'homebuy', u'grant', u'increas']
[u'campes', u'tell', u'pom', u'stop', u'whing']
[u'bomb', u'kill', u'baghdad', u'checkpoint']
[u'explos', u'debri', u'rain', u'suburban', u'adelaid']
[u'carnarvon', u'leader', u'crime', u'prevent']
[u'carrara', u'upgrad', u'requir', u'dolphin', u'join']
[u'casa', u'check', u'region', u'passeng', u'plan', u'asbesto']
[u'cessnock', u'lead', u'threaten', u'speci', u'law']
[u'urg', u'rethink', u'uniform', u'choic']
[u'chamber', u'doesnt', u'predict', u'rat', u'rise', u'impact']
[u'charli', u'sheen', u'wife', u'file', u'divorc']
[u'chopper', u'rescu', u'servic', u'join', u'safeti', u'network']
[u'club', u'ponder', u'possibl', u'salari', u'cap', u'chang']
[u'ordeal', u'anger', u'woocoo', u'mayor']
[u'communiti', u'leader', u'like', u'bowler', u'ministeri']
[u'coron', u'stand', u'palm', u'inquest']
[u'coron', u'announc', u'decis', u'doomadge', u'inquest']
[u'cossington', u'smith', u'exhibit', u'open']
[u'costa', u'respond', u'bypass', u'invit']
[u'costello', u'brush', u'recess', u'talk']
[u'council', u'fight', u'physiotherapist', u'fund']
[u'council', u'inquiri', u'hear', u'public', u'land', u'sale', u'concern']
[u'councillor', u'odd', u'foreshor', u'action', u'group']
[u'councillor', u'say', u'elect', u'expens', u'cover']
[u'councillor', u'clarifi', u'pool', u'facil', u'fund']
[u'council', u'oppos', u'polic', u'station', u'land', u'claim']
[u'council', u'reject', u'wind', u'farm', u'applic']
[u'council', u'unsur', u'collect', u'unpaid', u'fin']
[u'court', u'approv', u'residenti', u'complex']
[u'crusher', u'failur', u'slow', u'gold', u'product']
[u'data', u'give', u'aust', u'dollar', u'bumpi', u'ride']
[u'davi', u'team', u'name', u'today']
[u'debat', u'flare', u'uranium', u'mine']
[u'deportivo', u'coruna', u'fin', u'fan', u'racist', u'jib']
[u'disabl', u'servic', u'lack', u'north']
[u'doc', u'answer', u'seek', u'murder', u'child', u'case']
[u'dog', u'employ', u'shock', u'tactic', u'wolv']
[u'domin', u'prove', u'thorn', u'tiger']
[u'dont', u'write', u'boof', u'say', u'langer']
[u'drive', u'begin', u'recruit', u'teacher']
[u'driver', u'urg', u'slow', u'near', u'school']
[u'eastman', u'lose', u'stay', u'canberra', u'inquiri']
[u'eye', u'dubai', u'crown', u'lyle']
[u'england', u'lose', u'robinson', u'week']
[u'exhaust', u'set', u'fossett', u'enter', u'final', u'stretch']
[u'explan', u'seek', u'drop', u'gang', u'rape', u'charg']
[u'fin', u'prutton', u'ugli', u'send']
[u'fall', u'illawarra', u'union', u'membership', u'surpris']
[u'famili', u'parti', u'lobbi', u'asylum', u'seeker', u'polici']
[u'farmer', u'prepar', u'rat', u'rise']
[u'farmer', u'consid', u'seek', u'drought']
[u'faur', u'stand', u'trail', u'underworld', u'figur', u'death']
[u'fear', u'fish', u'endang', u'shark']
[u'investig', u'consid', u'electr', u'fault']
[u'round', u'leav', u'iron', u'stitch']
[u'foley', u'lash', u'paedophilia', u'question']
[u'charg', u'publican', u'murder']
[u'arrest', u'sydney', u'riot']
[u'team', u'remain', u'class', u'cricket', u'content']
[u'frustrat', u'mount', u'telstra', u'phone', u'list']
[u'fuel', u'loss', u'fail', u'stop', u'fossett', u'round', u'world']
[u'fund', u'boost', u'communiti', u'radio', u'welcom']
[u'fund', u'avail', u'maryborough', u'art', u'centr']
[u'health', u'insur', u'hike', u'possibl', u'abbott']
[u'gaffney', u'join', u'wallabi', u'coach', u'staff']
[u'gallop', u'urg', u'sign', u'nation', u'water', u'deal']
[u'game', u'chequer', u'flag']
[u'globalfly', u'push', u'hawaii']
[u'golf', u'club', u'say', u'cull', u'roo', u'cours']
[u'govt', u'defend', u'educ', u'indigen', u'communiti']
[u'govt', u'drought']
[u'griffith', u'council', u'urg', u'spend']
[u'hanson', u'add', u'medley']
[u'health', u'chief', u'want', u'bega', u'valley', u'hospit']
[u'hewitt', u'open', u'davi', u'charg']
[u'hide', u'anti', u'piraci', u'messag', u'aim', u'music', u'scammer']
[u'homeless', u'accommod', u'crisi', u'loom']
[u'howard', u'deni', u'train', u'failur', u'migrant', u'plan']
[u'howard', u'flag', u'skill', u'migrant', u'worker', u'intak']
[u'clear', u'harbhajan', u'doosra']
[u'indigen', u'school', u'fund', u'chang', u'marginalis']
[u'wan', u'york', u'olymp']
[u'iranian', u'woman', u'seek', u'divorc', u'water', u'husband']
[u'isra', u'presid', u'dodg', u'protest', u'melbourn']
[u'itali', u'snap', u'central', u'croc', u'skin']
[u'jackson', u'aid', u'target', u'accus', u'mother', u'court', u'tell']
[u'johnston', u'move', u'ahead', u'martin', u'kimberley']
[u'jone', u'icac', u'orang', u'grove', u'comment']
[u'laidley', u'remain', u'kangaroo']
[u'latrob', u'passeng', u'servic', u'await', u'approv']
[u'launceston', u'colleg', u'decid']
[u'legionnair', u'outbreak', u'reach', u'unlucki', u'number']
[u'local', u'govt', u'group', u'share', u'boundari', u'concern']
[u'accus', u'stalk', u'gibson', u'say', u'send']
[u'market', u'reach', u'record', u'close', u'despit', u'rate', u'hike']
[u'mayor', u'launch', u'macleay', u'valley', u'tourism', u'plan']
[u'milit', u'deton', u'bomb', u'near', u'isra', u'troop']
[u'minist', u'comment', u'anim', u'right', u'group', u'welcom']
[u'mix', u'respons', u'rat', u'rise']
[u'mourinho', u'escap', u'warn']
[u'plan', u'stop', u'footbal', u'scandal']
[u'link', u'underworld', u'figur', u'court', u'hear']
[u'nephew', u'charg', u'bash', u'death']
[u'gladston', u'port', u'access', u'open']
[u'inquest', u'palm', u'death']
[u'sight', u'forestrysa']
[u'link', u'autism', u'tripl', u'vaccin', u'studi', u'find']
[u'nurs', u'right', u'pursu', u'industri', u'action']
[u'pakistan', u'arrest', u'pearl', u'murder', u'suspect']
[u'parramatta', u'upgrad', u'spark', u'child', u'health', u'fear']
[u'part', u'westgat', u'bridg', u'substandard']
[u'peopl', u'launch', u'australian']
[u'pig', u'sign', u'watkin']
[u'pilbara', u'artist', u'work', u'sydney']
[u'plan', u'falconio', u'murder', u'trial', u'continu']
[u'back', u'polic', u'riot', u'tactic']
[u'talk', u'workplac', u'reform']
[u'independ', u'faction', u'dismantl', u'roadblock']
[u'polic', u'await', u'report', u'hippo', u'victim', u'bodi']
[u'polic', u'hunt', u'supermarket', u'arm', u'bandit']
[u'pool', u'committe', u'chairman', u'quit']
[u'predict', u'product', u'woe', u'like', u'hurt', u'lobster']
[u'princ', u'charl', u'declar', u'good', u'bloke']
[u'princ', u'charl', u'inspect', u'healthi', u'lifestyl']
[u'princ', u'charl', u'show', u'melbourn', u'care']
[u'princess', u'mari', u'throw', u'support', u'suicid']
[u'proud', u'cabinet', u'posit']
[u'publican', u'murder', u'accus', u'remand', u'custodi']
[u'pulp', u'chlorin', u'content', u'caus', u'confus']
[u'push', u'albion', u'park', u'commerci', u'flight']
[u'quak', u'felt', u'kununurra']
[u'rann', u'urg', u'reconsid', u'festiv', u'broadcast']
[u'rarotonga', u'brace', u'cyclon', u'perci']
[u'rat', u'rise', u'curb', u'council', u'spend']
[u'rat', u'rise', u'expect', u'impact', u'home']
[u'rat', u'rise', u'predict', u'hurt', u'hous', u'sale']
[u'rat', u'rise', u'tip', u'hurt', u'region', u'export', u'firm']
[u'rat', u'rise', u'hous', u'price', u'check']
[u'hint', u'rate', u'rise']
[u'red', u'ax', u'give', u'huxley', u'blue']
[u'retail', u'figur', u'fall', u'short', u'market', u'expect']
[u'right', u'group', u'dismay', u'afghan', u'strongman', u'post']
[u'rise', u'cost', u'affect', u'privat', u'health', u'insur']
[u'withdraw', u'faulti', u'speed', u'camera', u'fin']
[u'russia', u'slam', u'human', u'right', u'report']
[u'safeti', u'boost', u'medic', u'chopper']
[u'govt', u'confirm', u'water', u'agreement', u'support']
[u'school', u'form', u'barricad', u'misplac', u'cross']
[u'schumach', u'say', u'minardi', u'shouldnt', u'race']
[u'scientist', u'silver', u'line', u'botch']
[u'scott', u'white', u'lion']
[u'senat', u'fin', u'drive', u'incid', u'suspend']
[u'servic', u'sector', u'contract', u'add', u'econom', u'fear']
[u'continu', u'wodonga', u'storm', u'repair']
[u'sewag', u'recycl', u'studi']
[u'worker', u'seek', u'prostitut', u'regul', u'talk']
[u'shaolin', u'templ', u'seek', u'world', u'heritag', u'list']
[u'sky', u'darker', u'astronom']
[u'korean', u'compani', u'help', u'worker', u'play']
[u'smelli', u'bomb', u'creat', u'stink', u'newspap', u'offic']
[u'soni', u'attack', u'beatl', u'outreach', u'project']
[u'spain', u'coach', u'criticis', u'fine', u'henri', u'comment']
[u'spur', u'trounc', u'forest', u'eas', u'quarter']
[u'lanka', u'receiv', u'tsunami', u'pledg']
[u'state', u'claim', u'public', u'health', u'starv', u'fund']
[u'storm', u'cost', u'aurora', u'compens']
[u'streak', u'heroic', u'fail', u'prevent', u'south', u'african', u'sweep']
[u'strong', u'voter', u'turnout', u'tip', u'clarenc', u'valley']
[u'studi', u'better', u'estim', u'chemic']
[u'swimmer', u'scoop', u'pool', u'nation', u'sport', u'award']
[u'teacher', u'watch', u'abus', u'sign', u'academ', u'say']
[u'teacher', u'stop', u'work']
[u'teacher', u'code', u'conduct']
[u'teen', u'suprem', u'court', u'babi', u'death']
[u'territorian', u'hope', u'need', u'rain']
[u'timber', u'firm', u'open', u'fifth', u'sawmil']
[u'tourism', u'group', u'back', u'break', u'hill', u'promot']
[u'treasur', u'blame', u'govt', u'fund', u'shortfal']
[u'treasur', u'dodg', u'leadership', u'specul']
[u'tree', u'hunter', u'resiz', u'gandalf', u'staff']
[u'trio', u'appeal', u'offset', u'alpin', u'document', u'releas']
[u'tsunami', u'spread', u'toxic', u'wast', u'somalia']
[u'tweed', u'council', u'want', u'recognit', u'plan']
[u'tyson', u'announc', u'june', u'return']
[u'probe', u'asylum', u'seeker', u'abus', u'claim']
[u'ukrain', u'troop', u'withdraw', u'iraq']
[u'chief', u'demand', u'strict', u'rule', u'foreign']
[u'union', u'threaten', u'chao', u'disput']
[u'untidi', u'site', u'draw', u'council', u'critic']
[u'children', u'dead', u'school', u'collaps']
[u'brush', u'north', u'korean', u'demand', u'apolog']
[u'court', u'rule', u'command', u'display']
[u'offici', u'say', u'iran', u'syria']
[u'polici', u'void', u'missil', u'moratorium', u'north', u'korea']
[u'drop', u'anti', u'abort', u'amend']
[u'vandal', u'attack', u'yard', u'club']
[u'vaughan', u'talk', u'pietersen', u'ash', u'chanc']
[u'crime', u'suspect', u'extradit', u'perth']
[u'warrior', u'waca']
[u'water', u'bomber', u'join', u'bushfir', u'fight']
[u'webber', u'feel', u'weight', u'expect']
[u'wool', u'award']
[u'wool', u'industri', u'declin', u'hurt', u'blackal']
[u'worker', u'warn', u'howard', u'plan']
[u'work', u'start', u'improv', u'north', u'east', u'power', u'suppli']
[u'xstrata', u'offer', u'fail', u'impress']
[u'yarraman', u'bank', u'long', u'term', u'support', u'lender']
[u'kill', u'thai', u'crash']
[u'comalco', u'alumina', u'refineri', u'open']
[u'nomin', u'histor', u'council', u'elect']
[u'accus', u'keep', u'murder', u'detail', u'accomplic', u'court']
[u'secur', u'navi', u'contract']
[u'administr', u'sell', u'engin']
[u'preseason', u'get']
[u'age', u'care', u'group', u'happi', u'fund', u'agreement']
[u'agreement', u'pave', u'explor', u'permit']
[u'ambul', u'servic', u'investig']
[u'anger', u'grow', u'lose', u'trot', u'meet']
[u'anti', u'social', u'parent', u'ban', u'state', u'school']
[u'archaeologist', u'solv', u'mysteri', u'ancient']
[u'armi', u'base', u'cleaner', u'lose', u'job']
[u'arthur', u'give', u'australia', u'lead']
[u'asbesto', u'probabl', u'confin', u'defenc', u'plan', u'casa']
[u'athlet', u'world', u'titl', u'place', u'line', u'sydney']
[u'atsic', u'commission', u'stand', u'labor', u'candid']
[u'auckland', u'red', u'blue']
[u'aurora', u'trial', u'broadband', u'power', u'line']
[u'aussi', u'act', u'triumph', u'award']
[u'fischer', u'visit', u'baffl', u'chess', u'master', u'friend']
[u'beckham', u'look', u'career', u'madrid']
[u'bevan', u'centuri', u'help', u'tiger', u'chase', u'blue']
[u'disput', u'near']
[u'crowd', u'tip', u'visit', u'cycl', u'carniv']
[u'firm', u'face', u'restrict']
[u'project', u'need', u'boost', u'wide', u'busi']
[u'thing', u'expect', u'indigen', u'polici']
[u'lade', u'top', u'bush', u'list']
[u'board', u'warn', u'build', u'mine']
[u'bodi', u'burn', u'remain', u'mysteri']
[u'bowler', u'get', u'cabinet', u'appoint']
[u'brazil', u'clear', u'crop']
[u'british', u'patient', u'risk', u'exhaust', u'drug', u'option']
[u'broom', u'recognis', u'women']
[u'brumbi', u'edg', u'gallant', u'bull']
[u'build', u'approv', u'climb']
[u'bullet', u'face', u'sudden', u'death', u'king']
[u'bushrang', u'bull', u'head', u'draw']
[u'campaign', u'increas', u'awar', u'road', u'speed']
[u'china', u'budget', u'militari', u'upgrad']
[u'china', u'condemn', u'human', u'right', u'record']
[u'china', u'restat', u'opposit', u'taiwanes', u'independ']
[u'china', u'urg', u'calm', u'north', u'korea', u'end', u'missil', u'moratorium']
[u'chocol', u'fail', u'hide', u'cocain', u'custom']
[u'coal', u'give', u'green', u'light']
[u'confer', u'examin', u'minimis', u'alcohol', u'drug', u'abus']
[u'consecr', u'south', u'east', u'bishop', u'suspend']
[u'cooper', u'plead', u'guilti', u'charg']
[u'coral', u'miner', u'shed', u'light', u'climat', u'chang']
[u'corbi', u'lawyer', u'plead', u'australian', u'help']
[u'councillor', u'seek', u'quick', u'action', u'extend']
[u'council', u'seek', u'greater', u'polic', u'station', u'access']
[u'council', u'sign', u'shop', u'centr', u'approv']
[u'council', u'crack', u'water', u'meter', u'cheat']
[u'council', u'school', u'safeti', u'fight']
[u'crown', u'take', u'heat', u'casino']
[u'democrat', u'join', u'call', u'rave', u'drug', u'research']
[u'dengu', u'fever', u'carri', u'mossi', u'move', u'south']
[u'dental', u'industri', u'decay', u'govt', u'warn']
[u'dinosaur', u'return', u'earth', u'courtesi', u'japanes']
[u'dirti', u'water', u'safe', u'leav', u'stand']
[u'face', u'pressur', u'drop', u'rape']
[u'drought', u'bring', u'portugues', u'town', u'wateri']
[u'eagl', u'thump', u'roo', u'reach', u'decid']
[u'earli', u'bird', u'vaccin', u'test', u'success']
[u'rail', u'worker', u'head', u'work']
[u'elect', u'chang', u'mean', u'greater', u'lobster']
[u'emerg', u'servic', u'rais', u'fund', u'cancer', u'unit']
[u'endeavour', u'foundat', u'close', u'door']
[u'expert', u'give', u'clean', u'health', u'pulp']
[u'extra', u'teacher', u'help', u'increas', u'student']
[u'falconio', u'trial', u'push']
[u'fan', u'wide', u'region', u'clash']
[u'farmer', u'turn', u'salin', u'problem', u'profit']
[u'ferrari', u'shut', u'minardi', u'bull', u'fastest']
[u'flag', u'conveni', u'endang', u'rare', u'fish', u'govt', u'say']
[u'ford', u'look', u'forward', u'strong', u'region', u'focus']
[u'forestri', u'timber', u'manag', u'student', u'graduat']
[u'detaine', u'cheer', u'review', u'case']
[u'priest', u'stand', u'trial', u'offenc']
[u'french', u'polynesia', u'elect', u'independ', u'presid']
[u'funer', u'prompt', u'critic', u'polic']
[u'gibson', u'face', u'accus', u'stalker', u'court']
[u'gold', u'coast', u'power', u'boost']
[u'govern', u'urg', u'appoint', u'chang', u'minist']
[u'govt', u'accus', u'neglig', u'evid', u'concern']
[u'govt', u'expect', u'roll', u'work']
[u'govt', u'fund', u'seek', u'indigen', u'secur', u'patrol']
[u'govt', u'promis', u'coal', u'port', u'expans']
[u'govt', u'greenhous', u'appoint']
[u'govt', u'upset', u'fund']
[u'grand', u'prix', u'practic', u'begin', u'today']
[u'hamstr', u'shoaib', u'eye', u'comeback', u'final', u'india', u'test']
[u'hayden', u'face', u'fit', u'battl', u'ahead', u'test']
[u'health', u'chief', u'want', u'batlow', u'medic', u'centr', u'sooner']
[u'health', u'servic', u'understand', u'need', u'hospit']
[u'health', u'team', u'assess', u'aborigin', u'miner', u'asbesto']
[u'hewitt', u'give', u'australia', u'davi', u'lead']
[u'hewitt', u'wari', u'austrian', u'challeng']
[u'histor', u'deal', u'give', u'life', u'river', u'gum']
[u'histor', u'plane', u'arriv', u'home']
[u'hobbit', u'confirm', u'speci']
[u'holist', u'healthcar', u'piqu', u'princ']
[u'weather', u'help', u'locust', u'number']
[u'howard', u'take', u'person', u'corbi', u'trial']
[u'huge', u'paedophil', u'trial', u'open', u'western', u'franc']
[u'hundr', u'resid', u'oppos', u'rail', u'timet', u'chang']
[u'hunter', u'valley', u'home', u'lose', u'power', u'wild', u'weather']
[u'indonesia', u'call', u'respect', u'bashir', u'sentenc']
[u'inject', u'fund', u'need', u'slash', u'newborn']
[u'injur', u'norman', u'withdraw', u'dubai']
[u'inquiri', u'launch', u'employ', u'hurdl']
[u'inquiri', u'order', u'polic', u'comment', u'leav', u'phone']
[u'intellig', u'agenc', u'continu', u'secur', u'review']
[u'interst', u'polic', u'raid', u'suspect']
[u'jackson', u'accus', u'sister', u'tell', u'fear']
[u'go', u'insist', u'spur']
[u'jone', u'apolog', u'head', u'icac', u'contempt', u'charg']
[u'kelli', u'accus', u'whistleblow', u'smokescreen']
[u'killer', u'abus', u'circl', u'prison', u'court']
[u'kimberlit', u'boost', u'diamond', u'mine', u'hop']
[u'king', u'track', u'tripl', u'treat']
[u'london', u'mayor', u'label', u'sharon', u'crimin']
[u'stock', u'number', u'forc', u'meatwork', u'closur']
[u'malfunct', u'heater', u'blame', u'children', u'death']
[u'accus', u'euthanasia', u'style', u'kill', u'refus']
[u'jail', u'rap', u'step', u'daughter']
[u'man', u'use', u'test', u'inform', u'train', u'method']
[u'manuscript', u'offer', u'dead', u'puppi', u'blood', u'pimpl', u'cure']
[u'martha', u'stewart', u'leav', u'prison']
[u'mclaren', u'quickest', u'melbourn', u'practic', u'session']
[u'mclaren', u'trump', u'ferrari', u'melbourn', u'practic']
[u'meal', u'wheel', u'receiv', u'fund', u'boost']
[u'messag', u'bank', u'comment', u'embarrass', u'polic']
[u'minardi', u'forc', u'compli', u'regul']
[u'minardi', u'take', u'legal', u'action', u'race', u'melbourn']
[u'miner', u'sand', u'explor', u'begin', u'year']
[u'miner', u'stop', u'explor']
[u'miss', u'port', u'macquari', u'dead']
[u'monkey', u'bid', u'rais', u'fund', u'nation', u'park']
[u'motorcyclist', u'kill', u'power', u'pole', u'crash']
[u'mourner', u'farewel', u'macquari', u'field', u'teen']
[u'call', u'fester', u'liber', u'parti', u'racism']
[u'seek', u'polic', u'chang', u'combat', u'abus']
[u'hire', u'murder', u'target', u'court', u'tell']
[u'money', u'murder', u'court', u'hear']
[u'cabinet', u'member', u'eas', u'minist', u'workload']
[u'crew', u'bring', u'help', u'fight', u'bushfir']
[u'news', u'corp', u'lead', u'market', u'high']
[u'news', u'corp', u'rais']
[u'workcov', u'fin', u'minor', u'safeti', u'breach']
[u'zealand', u'chang', u'final', u'dayer']
[u'nation', u'remain', u'oppos', u'telstra', u'sale']
[u'black']
[u'nurs', u'meet', u'minist', u'staff', u'shortag']
[u'occi', u'surviv', u'knockout', u'heat', u'gold', u'coast']
[u'odriscol', u'tsunami', u'match']
[u'oversea', u'child', u'protect', u'staff', u'begin', u'work']
[u'pakistan', u'court', u'overturn', u'rape', u'convict']
[u'palac', u'unit', u'fan', u'wear', u'cantona', u'face']
[u'perilya', u'encourag', u'high', u'grade', u'zinc']
[u'polic', u'enter', u'macquari', u'field', u'forc']
[u'polic', u'examin', u'hard', u'drive', u'alleg']
[u'polic', u'hunt', u'video', u'store', u'knife', u'bandit']
[u'polic', u'make', u'arrest', u'daylesford', u'blaze']
[u'polic', u'shoot', u'driver', u'chase']
[u'polic', u'steer', u'clear', u'macquari', u'field', u'funer']
[u'polic', u'union', u'continu', u'criticis', u'coron']
[u'polic', u'welcom', u'station', u'revamp', u'decis']
[u'polic', u'wont', u'jail', u'offic', u'sierra']
[u'politician', u'urg', u'stop', u'abus', u'public', u'servant']
[u'pope', u'aid', u'read', u'bless']
[u'press', u'council', u'find', u'cold', u'comfort', u'green']
[u'princ', u'charl', u'din', u'howard', u'beazley']
[u'princ', u'charl', u'embark', u'sydney', u'tour']
[u'princess', u'mari', u'visit', u'lead', u'heart', u'research']
[u'murder', u'accus', u'refus', u'bail']
[u'rail', u'work', u'lengthen', u'ballarat', u'melbourn', u'train']
[u'rat', u'rise', u'tip', u'hurt', u'small', u'busi']
[u'redback', u'build', u'total', u'warrior']
[u'bull', u'klien', u'look', u'race']
[u'red', u'face', u'tough', u'assign', u'blue']
[u'region', u'resid', u'urg', u'crime', u'wari']
[u'rescu', u'plan', u'consid', u'launceston', u'museum']
[u'round', u'world', u'sailor', u'rescu', u'break']
[u'rudd', u'go', u'alleg', u'drug', u'smuggler']
[u'ruddock', u'consult', u'self', u'extinguish', u'cigarett']
[u'safeti', u'bodi', u'recommend', u'runway', u'light', u'upgrad']
[u'salvat', u'armi', u'record', u'loss']
[u'wall', u'restor']
[u'shire', u'forum', u'consid', u'merger', u'issu']
[u'shooter', u'sight', u'duck', u'hunt', u'season']
[u'skill', u'shortag', u'delay', u'gold', u'plan']
[u'sound', u'engin', u'charg', u'steal', u'charl']
[u'southern', u'locust', u'threat', u'eas']
[u'student', u'nationwid', u'clean']
[u'super', u'leagu', u'fear', u'london', u'bronco', u'cash', u'plight']
[u'suprem', u'court', u'grant', u'minardi', u'injunct']
[u'terror', u'threat', u'review', u'bashir']
[u'arrest', u'british', u'terrorist', u'law']
[u'thwait', u'warn', u'wimmera', u'malle', u'pipelin']
[u'tini', u'earli', u'hobbit', u'human', u'smart', u'skull', u'show']
[u'drop', u'win', u'medal', u'north', u'coast', u'coffe']
[u'tourism', u'group', u'lower', u'fraser', u'speed', u'limit']
[u'transport', u'plan', u'put', u'bridg']
[u'tribun', u'consid', u'north', u'east', u'log']
[u'govern', u'project', u'boost', u'tourism']
[u'uefa', u'start', u'disciplinari', u'action', u'chelsea']
[u'ukrain', u'politician', u'link', u'murder', u'dead']
[u'underdog', u'redback', u'rope']
[u'underworld', u'boss', u'condello', u'grant', u'bail']
[u'union', u'back', u'truck', u'safeti', u'move']
[u'union', u'close', u'teacher', u'code', u'conduct']
[u'urg', u'honour', u'cleari', u'build', u'name']
[u'warn', u'aid', u'inact']
[u'urban', u'nashvill', u'award']
[u'armi', u'report', u'recruit', u'shortfal']
[u'disturb', u'bashir', u'sentenc']
[u'silent', u'afghan', u'warlord', u'promot', u'armi']
[u'vanston', u'allow', u'fresh', u'appeal', u'baxter', u'detaine']
[u'wall', u'ralli', u'despit', u'price']
[u'water', u'bomber', u'prove', u'bushfir', u'fight', u'tool']
[u'water', u'corp', u'rebat', u'scheme', u'extend']
[u'weaken', u'cyclon', u'perci', u'skirt', u'rarotonga']
[u'weight', u'gain', u'link', u'breast', u'cancer']
[u'world', u'boost', u'eriksson', u'final']
[u'yoga', u'stretch', u'thailand']
[u'show', u'zebra', u'babi']
[u'kill', u'chines']
[u'accus', u'prais', u'jackson', u'video']
[u'armstrong', u'top', u'protour', u'starter']
[u'armi', u'medic', u'home', u'tsunami', u'mission']
[u'atsic', u'chairman', u'stand', u'asset', u'decis']
[u'auckland', u'kaino', u'red', u'tackl']
[u'aussi', u'barr', u'lead', u'thailand', u'open']
[u'aussi', u'sweep', u'black', u'cap']
[u'australia', u'clinch', u'davi']
[u'blue', u'muzzl', u'bulldog']
[u'blue', u'trail', u'tiger', u'rain', u'wreak', u'havoc', u'hobart']
[u'brisban', u'ambul', u'crew', u'attend', u'assault']
[u'bull', u'claim', u'inning', u'point']
[u'bush', u'nomin', u'chief']
[u'bushrang', u'break']
[u'carr', u'want', u'rioter', u'clean']
[u'chimp', u'tear', u'man', u'face']
[u'china', u'continu', u'unif', u'effort', u'taiwan']
[u'china', u'parliament', u'discuss', u'taiwan', u'social', u'harmoni']
[u'china', u'slow', u'econom', u'growth']
[u'founder', u'back', u'daughter', u'labor']
[u'confid', u'crisi', u'threaten', u'peac', u'deal', u'sinn', u'fein']
[u'court', u'allow', u'lawsuit', u'american', u'airlin']
[u'crow', u'lose', u'torney', u'season', u'open']
[u'crusad', u'crush', u'chief']
[u'dont', u'mention', u'tension', u'barca', u'boy']
[u'drogba', u'claim', u'titl', u'chelsea']
[u'boss', u'threaten', u'drop', u'australian']
[u'father', u'save', u'pair', u'riverboat', u'inferno']
[u'fisichella', u'grab', u'provision', u'pole']
[u'injur', u'smash']
[u'fossett', u'scrap', u'record', u'book']
[u'german', u'plastic', u'surgeon', u'odd', u'advertis']
[u'gibson', u'stalker', u'convict']
[u'gilchrist', u'pont', u'lift', u'australia', u'massiv', u'total']
[u'green', u'group', u'urg', u'log', u'moratorium']
[u'hacker', u'offer', u'busi', u'school', u'result']
[u'hawk', u'swoop', u'croc']
[u'hawk', u'meet', u'king', u'final']
[u'holder', u'spain', u'face', u'davi', u'exit']
[u'hostil', u'roman', u'recept', u'await', u'capello']
[u'hussey', u'move', u'test', u'reckon']
[u'provid', u'emerg', u'assist', u'lanka']
[u'impress', u'blue', u'advanc', u'final']
[u'impress', u'blue', u'tame', u'bulldog']
[u'industri', u'mourn', u'winemak', u'death']
[u'alli', u'sinn', u'fein', u'suspend', u'seven', u'stab']
[u'iran', u'warn', u'crisi', u'nuclear', u'issu']
[u'italian', u'journalist', u'hold', u'iraq', u'free', u'italian']
[u'jackson', u'accus', u'sister', u'admit']
[u'kalli', u'cap', u'record', u'fastest']
[u'land', u'right', u'campaign', u'readi', u'long', u'haul']
[u'lara', u'drop', u'sponsorship']
[u'lib', u'pick', u'seat', u'south', u'western']
[u'face', u'bushfir', u'charg']
[u'mari', u'grace', u'danc', u'floor', u'sydney', u'ball']
[u'urg', u'seek', u'health', u'help']
[u'mickelson', u'seiz', u'shoot', u'lead', u'scott', u'miss']
[u'minardi', u'drop', u'legal', u'action', u'modifi', u'car']
[u'minardi', u'drop', u'legal', u'challeng']
[u'modern', u'addict', u'damag']
[u'motorcycl', u'bomb', u'wound', u'baghdad']
[u'call', u'transpar', u'politician', u'claim']
[u'netbal', u'extend', u'streak', u'south', u'africa']
[u'book', u'tell', u'stori', u'histor', u'homestead']
[u'refineri', u'help', u'tackl', u'trade', u'deficit', u'govt']
[u'object', u'lodg', u'charless', u'marriag']
[u'injur', u'berala', u'shoot']
[u'norway', u'see', u'salmon', u'clampdown']
[u'nova', u'peri', u'sell', u'olymp', u'memorabilia']
[u'wed', u'gift', u'charl', u'camilla']
[u'nowil', u'win', u'fifth', u'titl']
[u'cigarett']
[u'inform', u'renter', u'right']
[u'welcom', u'princ', u'charl']
[u'pakistan', u'kill', u'qaeda', u'suspect', u'arrest']
[u'peri', u'sell', u'olymp', u'memorabilia']
[u'pilot', u'surviv', u'brush', u'death']
[u'polic', u'tunnel', u'bank', u'vault']
[u'polic', u'investig', u'rock', u'throw', u'incid']
[u'polic', u'urg', u'emot', u'diari']
[u'poor', u'weather', u'frustrat', u'pakistan']
[u'princ', u'charl', u'wind', u'nation', u'visit']
[u'princ', u'wale', u'tour', u'canberra']
[u'princess', u'mari', u'read', u'sick', u'kid']
[u'princess', u'mari', u'read', u'sick', u'kid']
[u'protea', u'close', u'victori']
[u'domin', u'cane', u'toad', u'trap', u'competit']
[u'govt', u'urg', u'engag', u'indigen']
[u'queensland', u'crime', u'decreas']
[u'raider', u'beat', u'tiger', u'final', u'trial', u'match']
[u'raikonnen', u'fastest', u'ahead', u'qualifi']
[u'rain', u'hit', u'domest', u'match']
[u'rain', u'leav', u'thousand', u'power']
[u'rain', u'stop', u'doubl', u'rubber', u'sydney']
[u'ranger', u'look', u'point', u'clear']
[u'redback', u'compil', u'massiv', u'lead', u'warrior']
[u'region', u'aviat', u'play', u'asbesto', u'risk']
[u'rescuer', u'lift', u'crew', u'blaze', u'tanker', u'norway']
[u'research', u'examin', u'rural', u'teach', u'problem']
[u'ross', u'defend', u'titl']
[u'salvat', u'armi', u'warn', u'fund', u'shortfal']
[u'schumach', u'fastest', u'practic']
[u'schumach', u'chanc', u'wash', u'away', u'rain']
[u'scientist', u'unearth', u'world', u'oldest', u'bipe', u'skeleton']
[u'seven', u'iraqi', u'soldier', u'kill', u'attack']
[u'ship', u'visit', u'evok', u'cold', u'memori']
[u'sorenstam', u'make', u'modest', u'start', u'lpga', u'season']
[u'south', u'africa', u'creat', u'test', u'histori', u'record']
[u'sparkl', u'jimenez', u'overhaul', u'dubai']
[u'stamp', u'duti', u'exempt', u'encourag', u'home', u'buyer']
[u'stormer', u'snatch', u'draw', u'highland']
[u'strip', u'zimbabw', u'test', u'status', u'skipper']
[u'sydney', u'gear', u'mardi', u'gras']
[u'syria', u'expect', u'pull', u'troop']
[u'team', u'combat', u'dengu', u'fever', u'torr', u'strait']
[u'arrest', u'macquari', u'field']
[u'demand', u'half', u'measur', u'syria']
[u'draw', u'jeer', u'abort', u'comment']
[u'investig', u'itali', u'shoot']
[u'troop', u'shoot', u'free', u'italian', u'hostag']
[u'vanston', u'condemn', u'atsic', u'asset', u'giveaway']
[u'hospitalis', u'crash']
[u'vote', u'open', u'council']
[u'wall', u'street', u'revisit', u'peak']
[u'warrior', u'rope', u'redback']
[u'webber', u'believ', u'good', u'luck']
[u'wed', u'eulo', u'everyon', u'invit']
[u'wool', u'fan', u'blow', u'bothwel', u'spin']
[u'zimbabw', u'humili', u'record', u'total']
[u'adam', u'condemn', u'mccartney', u'murder']
[u'dead', u'thai', u'boat', u'capsiz']
[u'aussi', u'netbal', u'humbl', u'south', u'africa']
[u'aussi', u'snowboard', u'finish', u'sixth']
[u'aussi', u'sweep', u'davi']
[u'barr', u'compani', u'thai', u'lead']
[u'batman', u'take', u'final']
[u'blue', u'final', u'hop', u'aliv']
[u'blue', u'lunch']
[u'bodi', u'slay', u'italian', u'agent', u'return', u'home']
[u'brack', u'confid', u'futur', u'melbourn']
[u'brack', u'confid', u'futur', u'melbourn']
[u'brogden', u'question', u'polic', u'riot', u'tactic']
[u'builder', u'warn', u'rate', u'rise', u'impact']
[u'bull', u'track', u'home', u'final']
[u'bull', u'bushrang', u'victori', u'target']
[u'caley', u'stun', u'ranger']
[u'standardis', u'test', u'medic', u'graduat']
[u'chariti', u'tough', u'go', u'tasmania']
[u'chelsea', u'comfort', u'zone', u'unit', u'stumbl']
[u'china', u'call', u'arm', u'embargo']
[u'clark', u'seek', u'detail', u'anzac', u'remain', u'claim']
[u'costello', u'attack', u'victoria']
[u'crowd', u'gather', u'farewel', u'world', u'yachtsman']
[u'cyclon', u'develop', u'coral']
[u'dafydd', u'polit', u'goliath', u'join', u'mardi', u'gras', u'parti']
[u'darwin', u'readi', u'migrant', u'worker', u'trial', u'green']
[u'davenport', u'outlast', u'jankov', u'dubai', u'titl']
[u'piero', u'penalti', u'keep', u'juve', u'milan']
[u'dog', u'cost', u'owner', u'pretti', u'penni']
[u'dont', u'write', u'say', u'schumach']
[u'rescu', u'boat', u'accid']
[u'etoo', u'extend', u'barca', u'lead']
[u'fan', u'turn', u'hail', u'mari']
[u'fifth', u'cyclon', u'rise', u'batter', u'south', u'pacif']
[u'fisichella', u'grab', u'pole', u'webber', u'second']
[u'fisichella', u'lead', u'aussi']
[u'fisichella', u'throw', u'spanner', u'ferrari', u'work']
[u'fisichella', u'win', u'australian']
[u'fitzi', u'defend', u'davi', u'grass']
[u'hospitalis', u'boat']
[u'england', u'captain', u'sheppard', u'die', u'cancer']
[u'giant', u'board', u'rule', u'gold', u'coast', u'wave']
[u'govt', u'need', u'tighter', u'grip', u'purs', u'string']
[u'govt', u'urg', u'protect', u'gallipoli', u'remain']
[u'distract', u'tactic', u'beazley', u'say']
[u'harradin', u'suffer', u'minor', u'stroke']
[u'himalayan', u'gloom', u'curtail', u'pakistan', u'tour', u'open']
[u'holder', u'spain', u'fume', u'davi', u'humili']
[u'howard', u'welcom', u'syria', u'troop', u'announc']
[u'hurrican', u'blow', u'cat', u'cours']
[u'iraq', u'set', u'assembl', u'meet', u'date']
[u'israel', u'accus', u'syria', u'involv', u'terror']
[u'italian', u'ralli', u'friend', u'incid', u'iraq']
[u'jimenez', u'hold', u'firm', u'gun', u'close']
[u'kuchma', u'return', u'kiev', u'amid', u'murder', u'scandal']
[u'labor', u'accus', u'govt', u'misus', u'public', u'money']
[u'latham', u'star', u'south', u'crush', u'north']
[u'plead', u'case', u'test', u'select']
[u'macqueen', u'call', u'friend']
[u'malaysian', u'visit', u'australia']
[u'bash', u'confront', u'youth']
[u'crush', u'jack', u'collaps']
[u'die', u'polic', u'pursuit']
[u'maradona', u'stapl', u'diet']
[u'mickelson', u'wood', u'miami', u'showdown']
[u'minardi', u'scoff', u'threat']
[u'mitchel', u'turn', u'rugbi']
[u'moldova', u'go', u'poll']
[u'say', u'sensat', u'claim', u'tarnish', u'parliament']
[u'music', u'pirat', u'compens']
[u'netbal', u'continu', u'streak', u'south', u'africa']
[u'scheme', u'parent', u'work']
[u'niger', u'cancel', u'emancip', u'ceremoni']
[u'plan', u'servic', u'salvo']
[u'korea', u'shrug', u'damn', u'right', u'report']
[u'korea', u'will', u'return', u'talk', u'china']
[u'perth', u'polic', u'break', u'unruli', u'parti']
[u'pilot', u'brush', u'suburban', u'crash']
[u'play', u'iraq', u'friend', u'incid']
[u'backbench', u'wont', u'silenc']
[u'polic', u'defend', u'fatal', u'high', u'speed', u'chase']
[u'polic', u'youth', u'clash', u'darl', u'harbour']
[u'polic', u'fee', u'threaten', u'countri', u'show']
[u'pope', u'thank', u'jew', u'muslim', u'prayer']
[u'pope', u'silent', u'bless']
[u'primus', u'boil']
[u'princess', u'mari', u'frederik', u'welcom', u'danish', u'church']
[u'protest', u'disrupt', u'start', u'duck', u'hunt', u'season']
[u'issu', u'warn', u'free', u'booz', u'promot']
[u'polic', u'detain', u'follow', u'stand']
[u'queen', u'okay', u'charl', u'camilla', u'stamp']
[u'record', u'tumbl', u'south', u'africa', u'slaughter', u'zimbabw']
[u'resign', u'seek', u'follow', u'eighth', u'prison', u'escap']
[u'judiciari', u'member', u'offer', u'paedophil']
[u'save', u'shark', u'govt', u'say']
[u'schoolgirl', u'surfer', u'win', u'snapper', u'rock', u'event']
[u'sharon', u'abba', u'meet', u'bush', u'april']
[u'stanhop', u'back', u'gold', u'creek', u'heritag', u'list']
[u'stomach', u'ulcer', u'plagu', u'indigen', u'australian']
[u'studi', u'highlight', u'offshor', u'transplant', u'risk']
[u'sudan', u'militia', u'attack', u'threaten', u'peac', u'agreement']
[u'syria', u'troop', u'lebanon']
[u'tanker', u'sale', u'spark', u'fieri', u'debat']
[u'tasmania', u'look', u'lure', u'builder', u'home']
[u'teacher', u'decid', u'industri', u'action']
[u'thousand', u'help', u'clean', u'australia']
[u'charg', u'fund', u'terror']
[u'hospitalis', u'road', u'smash']
[u'join', u'dengu', u'fever', u'oper']
[u'treasur', u'reignit']
[u'tsunami', u'victim', u'prove', u'neglig']
[u'envoy', u'see', u'histor', u'mistak', u'sudan']
[u'scientist', u'battl', u'challeng', u'darwin']
[u'volunt', u'australia', u'clean']
[u'waratah', u'donnelli', u'injur', u'mackay']
[u'waratah', u'sink', u'shark']
[u'warrior', u'chanc', u'unlik', u'victori']
[u'warrior', u'fall', u'short', u'massiv', u'target']
[u'webber', u'disappoint', u'fifth', u'place']
[u'webb', u'content', u'mexico', u'citi']
[u'wed', u'bliss', u'slump', u'singapor']
[u'windi', u'turmoil', u'lara', u'face']
[u'winemak', u'welcom', u'export', u'clearanc']
[u'woman', u'charg', u'man', u'murder']
[u'woman', u'kill', u'road', u'accid']
[u'wound', u'journalist', u'tell', u'ordeal']
[u'kill', u'attack', u'iraqi', u'secur', u'forc']
[u'illeg', u'worker', u'region', u'victoria']
[u'year', u'footbal', u'readi', u'retir']
[u'abc', u'digit', u'altern', u'hit', u'airwav']
[u'aborigin', u'group', u'beat', u'koori', u'court']
[u'adelaid', u'festiv', u'organis', u'laud', u'success']
[u'review', u'panel', u'charg']
[u'centr', u'head', u'dairi', u'research', u'project']
[u'airlin', u'say', u'launceston', u'plane', u'incid', u'minor']
[u'alcohol', u'fuel', u'violent', u'weekend', u'rockhampton']
[u'leagu', u'draw', u'unveil']
[u'alic', u'nurs', u'vote', u'industri', u'action']
[u'allawi', u'refus', u'join', u'iraqi', u'coalit']
[u'move', u'senat', u'probe', u'interrog', u'claim']
[u'annan', u'tri', u'speed', u'darfur', u'deliber']
[u'asbesto', u'compens', u'report', u'near', u'complet']
[u'asic', u'suffer', u'setback', u'onetel', u'case']
[u'attack', u'leav', u'iraqi', u'dead']
[u'australia', u'justifi', u'grass', u'court', u'say']
[u'backpack', u'assail', u'jail', u'month']
[u'banker', u'wag']
[u'barbaro', u'plead', u'guilti', u'road', u'rage', u'incid']
[u'beatti', u'hit']
[u'beatti', u'put', u'homeless', u'hous']
[u'beazley', u'attack', u'school', u'comment']
[u'better', u'time', u'forecast', u'film', u'industri']
[u'merg', u'frankfurt', u'london', u'exchang', u'fail']
[u'blue', u'final', u'hop', u'aliv']
[u'bolivian', u'presid', u'resign', u'amid', u'protest']
[u'bono', u'rule', u'world', u'bank', u'chief']
[u'break', u'hill', u'wine', u'honour', u'cathol', u'priest']
[u'bushrang', u'chang', u'blue', u'clash']
[u'busi', u'group', u'seek', u'chang', u'distribut']
[u'businessman', u'die', u'sprint', u'smash']
[u'busi', u'survey', u'indic', u'uncertainti']
[u'cabinet', u'discuss', u'spirit', u'iii', u'futur']
[u'earlier', u'marina', u'decis']
[u'crash', u'victim', u'award', u'compo']
[u'carr', u'dismiss', u'leadership', u'specul']
[u'celtic', u'slash', u'ranger', u'lead']
[u'charman', u'doubt', u'lion', u'season', u'open']
[u'chelsea', u'european', u'hop', u'line']
[u'claim', u'snowtown', u'victim', u'abus', u'state', u'care']
[u'clean', u'success', u'fewer', u'volunt']
[u'comalco', u'weigh', u'refineri', u'expans']
[u'communiti', u'cabinet', u'blatant', u'self', u'promot']
[u'concess', u'quell', u'indonesian', u'fuel', u'protest']
[u'confer', u'address', u'doctor', u'shortag']
[u'convent', u'wisdom', u'milk', u'question']
[u'cotton', u'grower', u'subsidi', u'rule']
[u'councillor', u'criticis', u'gobbledygook', u'document']
[u'council', u'ponder', u'museum', u'rescu', u'plan']
[u'council', u'princ', u'highway', u'revamp']
[u'court', u'tell', u'wife', u'underworld', u'figur', u'list']
[u'croc', u'look', u'team', u'develop', u'season', u'end']
[u'cub', u'fix', u'quiet']
[u'cyclon', u'gain', u'strength']
[u'cyclon', u'ingrid', u'gather', u'strength']
[u'cyclon', u'ingrid', u'hover', u'coast']
[u'demand', u'boost', u'townsvill', u'flight']
[u'driver', u'face', u'higher', u'petrol', u'price']
[u'eagl', u'focus', u'premiership']
[u'accept', u'avert', u'power', u'station', u'strike']
[u'elder', u'driver', u'time', u'limit']
[u'elder', u'woman', u'driver', u'time', u'limit']
[u'emerg', u'servic', u'headquart', u'offici', u'open']
[u'espanyol']
[u'everton', u'lose', u'home', u'west', u'brom', u'climb']
[u'mayor', u'await', u'prefer', u'distribut']
[u'miner', u'undergo', u'asbesto', u'test']
[u'fan', u'down', u'garcia', u'fourth']
[u'farmer', u'smelli', u'solut', u'wild', u'woe']
[u'farmer', u'urg', u'share', u'landcar', u'fund']
[u'farm', u'group', u'member', u'unhappi', u'cattl', u'duf']
[u'farm', u'group', u'want', u'action', u'nation', u'competit']
[u'father', u'bash', u'home', u'invas']
[u'foster', u'extend', u'southcorp']
[u'funer', u'begin', u'italian', u'kill', u'iraq']
[u'garlic', u'lace', u'crop', u'ward', u'insect']
[u'cutback', u'concern', u'welfar', u'group']
[u'gilchrist', u'answer', u'select', u'puzzl']
[u'governor', u'attend', u'medic', u'research', u'centr', u'open']
[u'govt', u'defend', u'nation', u'park', u'resourc']
[u'govt', u'offer', u'free', u'chickenpox', u'jab', u'babi']
[u'govt', u'plan', u'substanc', u'abus', u'test', u'polic']
[u'govt', u'reject', u'hous', u'plan', u'push', u'price']
[u'govt', u'see', u'benefit', u'farm', u'subsidi', u'rule']
[u'govt', u'urg', u'boost', u'ethanol', u'blend', u'fuel']
[u'grand', u'prix', u'boss', u'turn', u'stoddart']
[u'grand', u'prix']
[u'harradin', u'rest', u'suspect', u'stroke']
[u'harrison', u'quit', u'australian', u'rugbi']
[u'health', u'servic', u'see', u'cannabi', u'mental', u'health', u'link']
[u'liquid', u'chase', u'invest', u'firm']
[u'leader', u'deni', u'resign', u'report']
[u'hope', u'remain', u'meatwork', u'reopen']
[u'hospit', u'get', u'age', u'care', u'wing', u'fund']
[u'household', u'urg', u'wage', u'cane', u'toad']
[u'hous', u'industri', u'critic', u'home', u'buyer', u'plan']
[u'howard', u'reinforc', u'iraq', u'troop', u'decis']
[u'indigen', u'communiti', u'ghost', u'net', u'clean']
[u'inspector', u'investig', u'girl', u'electrocut']
[u'intern', u'agreement', u'offer', u'local', u'winemak']
[u'internet', u'defi', u'newspap', u'slump']
[u'italian', u'honour', u'agent', u'kill', u'baghdad']
[u'kasper', u'deserv', u'select', u'say']
[u'kingaroy', u'youth', u'support', u'coordin']
[u'knowl', u'return', u'bathurst', u'council', u'elect']
[u'lack', u'fund', u'blame', u'turn', u'away', u'homeless']
[u'lara', u'ax', u'sponsorship']
[u'larg', u'wave', u'capsiz', u'boat', u'hervey']
[u'late', u'adriano', u'penalti', u'give', u'inter', u'victori']
[u'late', u'eagl', u'earn', u'dubai', u'crown']
[u'leader', u'emerg', u'clarenc', u'valley', u'poll']
[u'leav', u'taiwan', u'militari', u'tie', u'china']
[u'lebanon', u'syria', u'open', u'talk', u'troop', u'pullout']
[u'beat', u'barr', u'thai', u'titl']
[u'lehmann', u'unsur', u'injuri']
[u'lekka', u'recov', u'minor', u'stroke']
[u'ljubic', u'victori', u'give', u'croatia', u'davi']
[u'lobbi', u'group', u'blame', u'prison', u'manag', u'escap']
[u'loutish', u'violenc', u'stop', u'polic', u'chief']
[u'luck', u'play', u'hand', u'boat', u'capsiz', u'commodor']
[u'mackay', u'injuri', u'sour', u'tah']
[u'court', u'aborigin', u'relic', u'breach']
[u'kill', u'rid', u'tray', u'rollov']
[u'market', u'hit', u'seventh', u'consecut', u'high']
[u'melbourn', u'driver', u'assault', u'taxi', u'steal']
[u'mental', u'health', u'inquiri', u'rais', u'reform', u'hop']
[u'mildura', u'council', u'angri', u'har', u'race', u'plan']
[u'minist', u'ask', u'gippsland', u'sawlog', u'assur']
[u'minist', u'hit', u'greenpeac', u'attitud']
[u'minist', u'help', u'seek', u'baxter', u'case']
[u'minist', u'converg', u'castlemain']
[u'fund', u'seek', u'bass', u'highway', u'duplic']
[u'fund', u'seek', u'address', u'homeless', u'plight']
[u'munch', u'paint', u'steal']
[u'mountain', u'rubbish', u'clear']
[u'protect', u'barramundi']
[u'propos', u'infrastructur', u'council']
[u'murder', u'accus', u'admit', u'lie', u'hell', u'angel']
[u'murder', u'accus', u'claim', u'lie', u'protect', u'friend']
[u'murdoch', u'plead', u'guilti', u'falconio', u'murder']
[u'close', u'chines', u'student', u'killer', u'polic']
[u'nevill', u'saha', u'rule', u'milan', u'clash']
[u'newcastl', u'number']
[u'look', u'rooster', u'readi', u'life', u'freddi']
[u'oncolog', u'staff', u'shorten', u'wait', u'list']
[u'decis', u'adelaid', u'futur', u'maher', u'head']
[u'north', u'urg', u'prepar', u'cyclon', u'ingrid']
[u'clean', u'number', u'disappoint']
[u'nurs', u'worri', u'hospit', u'plan']
[u'price', u'rise', u'concern', u'opec']
[u'olympian', u'court', u'murder', u'charg']
[u'opposit', u'call', u'releas', u'spirit', u'report']
[u'osborn', u'secur', u'council', u'spot']
[u'palestinian', u'forecast', u'tulkarem', u'withdraw']
[u'pharmacist', u'help', u'crack', u'drug', u'product']
[u'wagga', u'hear', u'move', u'sydney']
[u'pilot', u'kill', u'plane', u'crash']
[u'plan', u'waterbomb', u'forest', u'blaze']
[u'planner', u'unveil', u'bloomfield', u'hospit', u'plan']
[u'plan', u'continu', u'heathcot', u'communiti', u'bank']
[u'plan', u'curb', u'walk', u'access', u'reserv']
[u'polic', u'fear', u'kidnap', u'victim']
[u'polic', u'offic', u'return', u'tsunami', u'mission']
[u'polic', u'search', u'hotel', u'bandit']
[u'polic', u'seek', u'wit', u'fatal', u'motorcycl', u'crash']
[u'polic', u'union', u'disclosur', u'plan']
[u'polic', u'road', u'crash', u'victim']
[u'prefer', u'vital', u'warrumbungl', u'council', u'poll']
[u'program', u'support', u'elder', u'home']
[u'race', u'bore', u'fifth', u'good', u'webber']
[u'rail', u'industri', u'need', u'eliot', u'ness', u'union', u'say']
[u'ralli', u'urg', u'speedi', u'hospit', u'revamp']
[u'rate', u'rise', u'basi', u'econom', u'attack', u'howard']
[u'region', u'consid', u'tourism', u'group', u'renam']
[u'report', u'identifi', u'grow', u'health', u'divid']
[u'roller', u'coaster', u'safin', u'lead', u'russia']
[u'royal', u'aussi', u'fairytal', u'ambassador']
[u'rural', u'busi', u'confid', u'rise']
[u'safeti', u'bodi', u'urg', u'incent', u'aircraft', u'upgrad']
[u'polic', u'reopen', u'paedophil', u'probe']
[u'school', u'give', u'prefer', u'local', u'children']
[u'school', u'teen', u'surfer', u'gilmor']
[u'school', u'tighten', u'mobil', u'phone', u'rule']
[u'search', u'continu', u'lankan', u'tsunami', u'victim']
[u'search', u'fail', u'centuri', u'murder', u'victim']
[u'sexual', u'basi', u'sack', u'minist', u'say']
[u'shelter', u'fund', u'fall', u'short', u'meet', u'demand']
[u'shooter', u'sight', u'duck', u'season']
[u'skill', u'report', u'show', u'apprentic', u'number', u'declin']
[u'southern', u'phone', u'demand', u'go', u'nation']
[u'special', u'armour', u'protect', u'troop', u'carrier', u'iraq']
[u'state', u'fight', u'howard', u'critic']
[u'steel', u'plant', u'product', u'resum', u'forklift']
[u'steven', u'decid', u'club', u'famili']
[u'student', u'stand', u'trial', u'terror', u'charg']
[u'studi', u'consid', u'region', u'citi', u'educ']
[u'sydney', u'student', u'commit', u'trial', u'terror']
[u'syria', u'begin', u'troop', u'pull']
[u'taiwan', u'elect', u'shoot', u'suspect', u'dead']
[u'govt', u'urg', u'stop', u'south', u'sister', u'log']
[u'taxi', u'author', u'protect', u'screen', u'cab']
[u'teacher', u'unanim', u'reject', u'govt', u'wage', u'offer']
[u'teenag', u'take', u'time', u'celebr', u'surf']
[u'telstra', u'roll', u'mobil', u'broadband', u'network']
[u'thousand', u'expect', u'break', u'hill', u'race', u'meet']
[u'thousand', u'turn', u'lion', u'maul', u'essendon']
[u'timor', u'boundari', u'talk', u'resum']
[u'toyota', u'open', u'melbourn', u'research', u'centr']
[u'tropic', u'research', u'institut', u'welcom', u'home']
[u'truck', u'driver', u'sentenc', u'year', u'jail']
[u'underworld', u'wit', u'brand', u'gossip']
[u'unemploy', u'parent', u'urg', u'volunt']
[u'honour', u'cleari', u'shoalhaven', u'campus', u'name']
[u'union', u'foreshadow', u'nation', u'strife', u'chang']
[u'union', u'lobbi', u'better', u'wage', u'deal', u'public']
[u'union', u'step', u'action', u'util']
[u'relief', u'boss', u'warn', u'sudanes', u'rebel']
[u'sailor', u'darwin', u'rape', u'charg', u'drop']
[u'troop', u'suspect', u'fatal', u'shoot', u'bulgarian']
[u'vail', u'anticip', u'lengthi', u'china', u'talk']
[u'vail', u'seek', u'consider', u'telstra', u'break']
[u'vandal', u'baffl', u'hotel', u'license']
[u'vatican', u'expect', u'pope', u'home', u'easter']
[u'effort', u'reviv', u'gallipoli', u'hero']
[u'vietnames', u'nurs', u'contract', u'bird']
[u'volunt', u'help', u'clean', u'newcastl']
[u'polic', u'union', u'say', u'resourc', u'stretch']
[u'webb', u'stop', u'charg', u'sorenstam']
[u'winemak', u'push', u'chang', u'restrict', u'liquor', u'law']
[u'wit', u'seek', u'accid']
[u'woman', u'plead', u'guilti', u'ecstasi', u'charg']
[u'wood', u'number']
[u'work', u'mother', u'urg', u'join', u'survey']
[u'worst', u'time', u'trial', u'career', u'armstrong', u'admit']
[u'year', u'woman', u'fin', u'polic', u'pursuit']
[u'abba', u'say', u'isra', u'delay', u'threaten', u'peac', u'effort']
[u'bomb', u'develop', u'beth', u'die']
[u'aborigin', u'arnhem', u'land', u'decreas', u'cannabi']
[u'abort', u'debat', u'featur', u'women', u'activ']
[u'accus', u'tell', u'court', u'worker', u'kill']
[u'anzac', u'prepar', u'sail', u'gallipoli']
[u'aramac', u'get', u'short', u'term', u'doctor']
[u'asbesto', u'inform', u'session']
[u'asia', u'burn', u'midnight', u'aust', u'get', u'beauti', u'sleep']
[u'aust', u'promis', u'help', u'aid', u'fight']
[u'aust', u'push', u'intern', u'fish', u'chang']
[u'australian', u'tsunami', u'toll', u'rais']
[u'author', u'probe', u'train', u'derail']
[u'bank', u'mull', u'tighter', u'secur', u'bank']
[u'bashir', u'appeal', u'bali', u'conspiraci', u'verdict']
[u'bega', u'bypass', u'spotlight']
[u'bendigo', u'bank', u'lift', u'rat']
[u'trump', u'xstrata']
[u'worker', u'continu', u'strike']
[u'bigger', u'orang', u'crop', u'loom']
[u'bishop', u'empathis', u'priest', u'abus', u'victim']
[u'blogger', u'win', u'white', u'hous', u'pass']
[u'bottleneck', u'prompt', u'port', u'export', u'chang']
[u'brack', u'duck', u'shoot']
[u'brogden', u'seek', u'explan', u'macquari', u'field']
[u'brown', u'seek', u'north', u'east', u'log', u'delay']
[u'brumbi', u'rooki', u'keen', u'impress', u'stormer']
[u'bush', u'approv', u'emptiv', u'strike', u'agenc']
[u'bush', u'call', u'fine', u'tune', u'nuclear', u'treati', u'rule']
[u'businesswoman', u'year', u'see', u'chang', u'sprout']
[u'camera', u'plan', u'concern', u'driver']
[u'speedier', u'hume', u'highway', u'duplic']
[u'carr', u'pledg', u'cut', u'revenu', u'give']
[u'cattl', u'thousand', u'sale', u'roma']
[u'china', u'ask', u'australia', u'stay', u'taiwan', u'disput']
[u'china', u'urg', u'compass', u'year']
[u'common', u'allergi', u'link', u'asthma', u'relaps']
[u'confus', u'surround', u'iraq', u'mission']
[u'contract', u'negoti', u'harrison', u'stall']
[u'cool', u'idea', u'prove', u'difficult', u'older', u'home']
[u'coonan', u'reject', u'telstra', u'break', u'call']
[u'costello', u'budget', u'surplus']
[u'council', u'dump', u'museum', u'entri']
[u'councillor', u'elect', u'warrumbungl', u'shire']
[u'council', u'maintain', u'belmont', u'airport', u'stanc']
[u'council', u'consid', u'discount', u'fuel', u'plan']
[u'council', u'unhappi', u'nation', u'heritag', u'list']
[u'coupl', u'fail', u'home', u'buyer', u'scam', u'case', u'drop']
[u'court', u'hear', u'brincat', u'wasnt', u'alleg', u'underworld', u'gunman']
[u'danish', u'royal', u'canberran']
[u'death', u'toll', u'rise', u'dominican', u'prison']
[u'decis', u'expect', u'cannon', u'perth']
[u'defenc', u'recruit', u'focus', u'indigen', u'youth']
[u'deputi', u'mayor', u'say', u'qualiti', u'councillor', u'hard']
[u'deputi', u'opposit', u'leader', u'eject']
[u'diouf', u'reignit', u'bolton', u'euro']
[u'downer', u'agre', u'help', u'corbi', u'lawyer', u'businessman']
[u'dress', u'bring', u'tourist', u'cost', u'kyoto']
[u'drive', u'shoot', u'kill', u'briton', u'afghanistan']
[u'earthquak', u'swarm', u'offer', u'insight', u'earth', u'crust']
[u'elder', u'chines', u'woman', u'lose', u'visa', u'appeal']
[u'electr', u'corridor', u'plan', u'rais', u'resid', u'fear']
[u'emerg', u'servic', u'prepar', u'cyclon', u'ingrid']
[u'employ', u'urg', u'know', u'workplac', u'safeti', u'chang']
[u'engin', u'complet', u'tsunami', u'relief', u'mission']
[u'etsa', u'worker', u'stage', u'strike']
[u'mayor', u'consid', u'lower', u'hous', u'seat']
[u'face', u'stormi', u'futur', u'minardi', u'furor']
[u'famili', u'feel', u'impact', u'western']
[u'fan', u'take', u'snapper', u'rock', u'titl']
[u'fan', u'face', u'iron']
[u'farmer', u'move', u'retain', u'trundl', u'teacher']
[u'farmer', u'protest', u'road', u'rent']
[u'farmer', u'warn', u'generat', u'locust', u'threat']
[u'north', u'prepar', u'cyclon']
[u'crew', u'battl', u'histor', u'warship', u'blaze']
[u'firefight', u'probe', u'potteri', u'factori', u'blaze']
[u'focus', u'turn', u'plight', u'women']
[u'fourth', u'race', u'code', u'plan', u'face', u'fund', u'challeng']
[u'fund', u'seek', u'fight', u'fish', u'pest']
[u'futur', u'coalit', u'brink']
[u'search', u'continu', u'south', u'east']
[u'gender', u'make', u'women', u'vulner', u'violenc', u'woat']
[u'german', u'hamster', u'parti']
[u'gold', u'coast', u'battl', u'lung', u'cancer']
[u'gold', u'council', u'urg', u'industri', u'break']
[u'golden', u'period', u'predict', u'darwin', u'real', u'estat']
[u'govern', u'urg', u'boost', u'rural', u'communic']
[u'govt', u'act', u'asbesto', u'review', u'recommend']
[u'govt', u'call', u'spend', u'surplus']
[u'govt', u'hypocrit', u'labor']
[u'govt', u'urg', u'brake', u'coastal', u'develop']
[u'grandmoth', u'baffl', u'young', u'driver', u'stop']
[u'group', u'concern', u'heritag', u'site', u'develop']
[u'guard', u'shoot', u'point', u'blank', u'rang', u'wit', u'say']
[u'gunmen', u'kill', u'interior', u'ministri', u'offici', u'baghdad']
[u'haas', u'back', u'skill', u'migrant']
[u'har', u'group', u'fear', u'race', u'meet', u'lose']
[u'harradin', u'remain', u'intens', u'care']
[u'hayden', u'play', u'test']
[u'hayson', u'bourk', u'mann', u'confid', u'victori']
[u'hobart', u'readi', u'royal', u'recept']
[u'hodg', u'wing', u'bronco']
[u'hotel', u'owner', u'daze', u'devast']
[u'hous', u'renov', u'slump', u'wake', u'rise']
[u'illawarra', u'busi', u'mentor', u'offer']
[u'india', u'send', u'pakistan', u'test']
[u'india', u'control', u'test']
[u'indigen', u'group', u'leader', u'drop', u'racist']
[u'run', u'high', u'pat', u'race']
[u'itali', u'demand', u'indentifi', u'punish', u'soldier']
[u'jackson', u'drink', u'hotel', u'court', u'hear']
[u'jail', u'chop', u'chop', u'transport']
[u'jail', u'term', u'drive', u'friend']
[u'kewel', u'leverkusen', u'clash']
[u'kidman', u'star', u'biographi', u'project']
[u'kidnapp', u'copi', u'soap', u'opera', u'plot']
[u'king', u'focus', u'win', u'financi', u'problem']
[u'kosovo', u'indict', u'crime']
[u'labor', u'claim', u'victori', u'albani']
[u'societi', u'hail', u'asbesto', u'compo', u'review']
[u'lawyer', u'want', u'broom', u'skimpi']
[u'liber', u'kimberley', u'candid', u'conced']
[u'livestock', u'theft', u'spark', u'crackdown']
[u'lord', u'cricket', u'fall', u'short', u'centuri']
[u'wine', u'grape', u'price', u'label', u'opportun']
[u'mackay', u'desper', u'regain', u'half', u'spot']
[u'convict', u'ram', u'incid']
[u'jail', u'kill', u'partner']
[u'jail', u'year', u'drunken', u'assault']
[u'man', u'convict', u'uphold', u'babi', u'daughter', u'murder']
[u'market', u'hit', u'high', u'amid', u'takeov', u'battl']
[u'mayor', u'fear', u'secur', u'overhaul', u'kill', u'region']
[u'mayor', u'receiv', u'tamworth', u'honour']
[u'mayor', u'reject', u'koala', u'kill', u'grind', u'claim']
[u'mayor', u'seek', u'militari', u'road', u'upgrad']
[u'stand', u'cricket', u'player']
[u'million', u'need', u'gold', u'coast', u'hospit', u'opposit']
[u'miner', u'urg', u'drop', u'convict', u'challeng']
[u'minist', u'beat', u'aldoga', u'futur']
[u'mix', u'market', u'follow', u'friday', u'high']
[u'move', u'afoot', u'protect', u'groundwat', u'resourc']
[u'urg', u'restrict', u'power']
[u'murder', u'weapon', u'like', u'brincat', u'wit']
[u'newli', u'name', u'cycl', u'tour', u'extend']
[u'rout', u'sunraysia', u'tour']
[u'trade', u'hall', u'secretari', u'look', u'closer', u'govt']
[u'north', u'queensland', u'cyclon', u'alert']
[u'govt', u'tightlip', u'xstrata', u'subsidi']
[u'polic', u'hunt', u'kidnapp', u'hostag', u'free']
[u'protest', u'flash', u'issu', u'princ', u'charl']
[u'oberon', u'timber', u'industri', u'link', u'communiti']
[u'olympian', u'humbl', u'row', u'championship']
[u'opposit', u'seek', u'clariti', u'troop', u'iraq', u'role']
[u'pakistan', u'earli', u'troubl', u'india']
[u'partner', u'slap', u'earn', u'jail', u'stint']
[u'hear', u'dolphin']
[u'polic', u'concern', u'increas', u'motorcycl']
[u'polic', u'expect', u'biki', u'problem', u'festiv']
[u'polic', u'probe', u'crane', u'truck', u'death']
[u'pope', u'deleg', u'easter', u'duti', u'aid']
[u'preliminari', u'falconio', u'hear', u'adjourn']
[u'premier', u'hit', u'union', u'money', u'launder']
[u'prospector', u'unearth', u'golden', u'goos', u'like', u'nugget']
[u'public', u'urg', u'watch', u'fake', u'note']
[u'push', u'servic', u'help', u'deal', u'parent', u'child']
[u'hit', u'feder', u'govt', u'revenu']
[u'qsia', u'seek', u'perman', u'burdekin', u'fish', u'inspector']
[u'question', u'rais', u'role', u'soldier']
[u'rambo', u'schumach', u'heidfeld', u'crash']
[u'record', u'chase', u'murali', u'miss', u'tour']
[u'recoveri', u'beach', u'yacht', u'attempt']
[u'tape', u'see', u'rural', u'show', u'face', u'uncertain', u'futur']
[u'reinforc', u'iraq', u'role', u'unclear']
[u'replac', u'atsic', u'elect', u'advisori', u'bodi', u'report']
[u'report', u'paint', u'portrait', u'modern', u'woman']
[u'report', u'seek', u'nation', u'elect', u'bodi', u'replac']
[u'research', u'prescrib', u'hearti', u'dose', u'laughter']
[u'resid', u'fear', u'quarri', u'plan', u'impact']
[u'resid', u'want', u'road', u'safeti']
[u'rijkaard', u'stay', u'cool', u'mourinho', u'turn', u'uefa']
[u'river', u'plan', u'worri', u'council']
[u'road', u'permit', u'rental', u'plan', u'draw', u'farmer']
[u'rooney', u'ferguson', u'face', u'probe']
[u'plant', u'jump', u'grow', u'asian', u'demand']
[u'rous', u'welcom', u'pakistani', u'fan', u'india']
[u'royal', u'dazzl', u'thousand', u'memori']
[u'rspca', u'probe', u'kitten', u'tortur', u'claim']
[u'rugbi', u'leagu', u'shield', u'hand', u'nation', u'museum']
[u'safer', u'stem', u'cell', u'solut', u'scientist']
[u'hope', u'specialist', u'accept', u'deal']
[u'hospit', u'oper', u'theatr', u'idl', u'opposit']
[u'saleyard', u'propon', u'lodg', u'develop']
[u'premier', u'defi', u'call', u'stand', u'alleg']
[u'scholarship', u'boost', u'devil', u'tumour', u'research']
[u'secur', u'guard', u'kill', u'attempt', u'bank', u'robberi']
[u'secur', u'guard', u'murder', u'cold', u'blood']
[u'discrimin', u'earn', u'newspap', u'fine']
[u'slow', u'economi', u'eas', u'rat', u'pressur']
[u'southcorp', u'report', u'rebut', u'foster', u'offer']
[u'speaker', u'paedophil', u'claim', u'spark', u'death', u'threat']
[u'speed', u'policeman', u'case', u'refer']
[u'steven', u'choos', u'club', u'famili']
[u'suspend', u'sentenc', u'seek', u'knife', u'bandit']
[u'swim', u'world', u'mourn', u'death', u'coach']
[u'syria', u'begin', u'lebanon', u'pullback']
[u'tcci', u'join', u'push', u'review']
[u'teacher', u'stage', u'stop', u'work', u'meet']
[u'teenag', u'charg', u'macquari', u'field', u'riot']
[u'telstra', u'highlight', u'broadband', u'access', u'woe']
[u'close', u'asbesto', u'contamin', u'probe']
[u'turkey', u'move', u'allay', u'gallipoli', u'construct', u'fear']
[u'union', u'fear', u'wage', u'health', u'servic', u'threat']
[u'union', u'hope', u'resolut', u'today']
[u'union', u'challeng', u'meatwork', u'closur']
[u'issu', u'world', u'fish', u'stock', u'warn']
[u'abus', u'whistleblow', u'send', u'psychiatr', u'test']
[u'deal', u'undermin', u'china', u'talk', u'labor']
[u'deni', u'deliber', u'shoot', u'free', u'italian']
[u'video', u'show', u'troop', u'abus', u'iraqi']
[u'labor', u'miss', u'absolut', u'major', u'upper']
[u'wallabi', u'wale', u'world', u'collis', u'cours']
[u'resort', u'taiwan', u'china', u'say']
[u'warn', u'attack', u'ridicul', u'bracewel']
[u'warrior', u'push', u'outright', u'result']
[u'west', u'indian', u'talk', u'fail', u'compromis']
[u'wit', u'refus', u'testifi', u'gangland', u'murder', u'trial']
[u'woman', u'arrest', u'macquari', u'field', u'crash']
[u'woman', u'convict', u'fifth', u'drink', u'drive', u'offenc']
[u'woman', u'die', u'metr', u'shop', u'centr', u'fall']
[u'woman', u'face', u'court', u'partner', u'stab']
[u'women', u'program', u'fund', u'boost']
[u'women', u'urg', u'council', u'posit']
[u'world', u'wallabi', u'welsh', u'collis', u'cours']
[u'world', u'want', u'darfur', u'annan']
[u'abalon', u'diver', u'plead', u'guilti', u'fish', u'offenc']
[u'accc', u'okay', u'foster', u'southcorp']
[u'call', u'chang', u'forens', u'centr', u'manag']
[u'bidder', u'emerg']
[u'anti', u'smoke', u'high']
[u'aquacultur', u'dept', u'defend', u'kingfish', u'stanc']
[u'auction', u'bring', u'tsunami', u'fund']
[u'aussi', u'dollar', u'near', u'cent']
[u'aussi', u'netbal', u'secur', u'seri', u'south']
[u'babcock', u'brown', u'bailout', u'golden', u'circl']
[u'babi', u'die', u'drug', u'overdos', u'inquest', u'hear']
[u'barca', u'unit', u'show', u'european', u'exit']
[u'bereav', u'wife', u'want', u'gutless', u'gunmen', u'catch']
[u'boss', u'hint', u'rival']
[u'trump', u'xstrata', u'resourc', u'offer']
[u'birney', u'elect', u'unoppos', u'opposit']
[u'blackburn', u'sail', u'strait']
[u'bolivian', u'presid', u'stay']
[u'bomb', u'hit', u'baghdad', u'headless', u'bodi']
[u'botham', u'call', u'pom', u'beat', u'convict']
[u'british', u'bather', u'warn', u'shark', u'risk']
[u'bruton', u'play', u'despit', u'injuri']
[u'busi', u'group', u'confid', u'town', u'recov']
[u'businessman', u'get', u'suspend', u'sentenc', u'child']
[u'teach', u'graduat', u'rural', u'aust']
[u'canberra', u'promot', u'intern', u'busi']
[u'candid', u'posit', u'bathurst']
[u'cannabi', u'grower', u'ask', u'jail', u'time']
[u'cape', u'york', u'communiti', u'alert', u'come']
[u'carr', u'tell', u'opposit', u'polic', u'riot']
[u'cassava', u'ball', u'poison', u'central', u'philippin']
[u'centrelink', u'tell', u'improv', u'custom', u'servic']
[u'chappl', u'want', u'focus', u'chemic', u'poison']
[u'chief', u'concern', u'lewi', u'comment', u'polic']
[u'child', u'abus', u'inquiri', u'head', u'urg', u'inform', u'come']
[u'chip', u'forecast', u'send', u'stock', u'lower']
[u'church', u'mull', u'repay', u'medicar', u'cost', u'abus']
[u'church', u'urg', u'abus', u'victim', u'speak']
[u'coal', u'miner', u'return', u'work']
[u'comeback', u'hope', u'wilkinson']
[u'commonwealth', u'game', u'prompt', u'season', u'rethink']
[u'communiti', u'prayer', u'answer', u'religi', u'retreat']
[u'consum', u'confid', u'record', u'fall']
[u'coron', u'lambast', u'polic', u'probe', u'men', u'death']
[u'costello', u'outlin', u'tsunami', u'relief', u'figur']
[u'council', u'name', u'prefer', u'site', u'saleyard']
[u'council', u'say', u'discount', u'fuel', u'plan']
[u'coupl', u'drown', u'catch']
[u'croc', u'newley', u'snap', u'award']
[u'cyclon', u'ingrid', u'continu', u'threaten', u'coast']
[u'cyclon', u'ingrid', u'lash', u'north']
[u'build', u'nation', u'water', u'polici']
[u'danish', u'royal', u'charm', u'politician']
[u'demon', u'test', u'motlop']
[u'draft', u'catchment', u'report', u'vindic']
[u'drought', u'keep', u'livestock', u'transport', u'busi']
[u'drug', u'squad', u'detect', u'threaten', u'crimin', u'court']
[u'dump', u'bowler', u'tuffey', u'face', u'misconduct', u'charg']
[u'plead', u'guilti', u'possess', u'child', u'pornographi']
[u'eagl', u'readi', u'carlton', u'forward']
[u'earth', u'move', u'young', u'resid']
[u'elder', u'refus', u'bail', u'alleg', u'cannabi']
[u'electranet', u'say', u'transmiss', u'line', u'rout', u'final']
[u'take', u'tiger']
[u'environ', u'group', u'impress', u'possibl']
[u'urg', u'probe', u'foreshor', u'concern']
[u'etoo', u'accus', u'chelsea', u'steward', u'race', u'abus']
[u'expert', u'address', u'rural', u'doctor', u'shortag']
[u'falun', u'gong', u'bar', u'human', u'right', u'talk']
[u'fan', u'rid', u'tall', u'snapper', u'rock']
[u'farm', u'gate', u'milk', u'price', u'like', u'rise']
[u'father', u'jail', u'assault', u'teenag', u'birthday']
[u'fear', u'lifesav', u'contest', u'number']
[u'feder', u'fund', u'help', u'south', u'east', u'age', u'care']
[u'feedlott', u'agist', u'role']
[u'foolish', u'fraudster', u'jail']
[u'storm', u'player', u'macdougal', u'scotland', u'squad']
[u'gareth', u'evan', u'tip']
[u'gateway', u'dwarf', u'gigant', u'cruis', u'ship', u'grace']
[u'gladston', u'mayor', u'deni', u'citi', u'control']
[u'golden', u'circl', u'offer', u'million', u'bailout']
[u'govt', u'accus', u'labor', u'snobberi']
[u'govt', u'add', u'world', u'anti', u'siphon', u'list']
[u'govt', u'announc', u'child', u'care', u'fund', u'boost']
[u'govt', u'deni', u'spirit', u'sydney', u'can']
[u'govt', u'flag', u'telstra', u'split']
[u'govt', u'push', u'restart', u'nation', u'water', u'initi']
[u'govt', u'reject', u'coastal', u'zone', u'moratorium']
[u'govt', u'tri', u'break', u'trade', u'union', u'movement']
[u'govt', u'urg', u'support', u'hous', u'plan']
[u'green', u'group', u'say', u'marin', u'park', u'plan', u'better']
[u'group', u'say', u'minist', u'sell', u'hous', u'avoid']
[u'habib', u'accus', u'asio', u'hand', u'info']
[u'habib', u'say', u'tortur', u'inform']
[u'health', u'profession', u'infant', u'train', u'updat']
[u'predict', u'renov', u'activ', u'bounc']
[u'home', u'renov', u'activ', u'plummet']
[u'horsham', u'keen', u'radio', u'plan']
[u'hotel', u'group', u'defend', u'skimpi']
[u'hundr', u'attend', u'depress', u'forum']
[u'hussey', u'target', u'ash', u'test', u'role']
[u'illeg', u'rabbit', u'prove', u'cost', u'mackay']
[u'indian', u'seamer', u'inspir', u'pakistan', u'woolmer']
[u'indigen', u'leader', u'unsur', u'minist']
[u'indonesia', u'timor', u'atroc', u'commiss']
[u'ingrid', u'threat', u'despit', u'downgrad']
[u'condemn', u'shoot', u'offer']
[u'irishman', u'head', u'british', u'airway']
[u'itali', u'reject', u'version', u'iraq', u'shoot']
[u'jackson', u'urg', u'boy', u'secret']
[u'morrison', u'surfac', u'door', u'short', u'film']
[u'jindabyn', u'film', u'offer', u'local', u'econom', u'boost']
[u'kalgoorli', u'council', u'say', u'tsunami', u'donat']
[u'khazal', u'lawyer', u'reject', u'inform', u'claim']
[u'knight', u'sponsorship', u'talk', u'stall']
[u'kosovo', u'leader', u'fli', u'hagu', u'crime', u'trial']
[u'labor', u'call', u'clariti', u'iraqi', u'detaine']
[u'land', u'justic', u'settlement', u'replac', u'nativ', u'titl']
[u'leagu', u'tsunami']
[u'liber', u'decid', u'leader']
[u'lobbi', u'group', u'hop', u'save', u'defenc', u'land']
[u'long', u'run', u'tourism', u'slogan', u'revamp']
[u'macquari', u'field', u'accus', u'refus', u'bail']
[u'malle', u'farmer', u'receiv', u'drought', u'assist']
[u'accus', u'stalk', u'steal', u'underwear']
[u'charg', u'fatal', u'polic', u'pursuit']
[u'die', u'boat', u'overturn']
[u'manou', u'attribut', u'turnaround', u'experi']
[u'sentenc', u'possess', u'child', u'pornographi']
[u'mayor', u'seek', u'rural', u'fund', u'boost']
[u'media', u'firm', u'fear', u'impact', u'internet', u'libel', u'claim']
[u'say', u'addict', u'poki', u'target', u'poor']
[u'north', u'coast', u'brief']
[u'miner', u'export', u'decemb', u'quarter']
[u'miner', u'move', u'acceler', u'nickel', u'explor']
[u'minist', u'confid', u'meet', u'calder', u'duplic']
[u'minist', u'seek', u'stronger', u'illeg', u'fish', u'law']
[u'action', u'help', u'sudan', u'need', u'annan']
[u'recognit', u'seek', u'health', u'worker']
[u'mount', u'helen', u'erupt']
[u'face', u'deport']
[u'suffer', u'lobbi', u'govt', u'maintain', u'disabl']
[u'mundin', u'line', u'titl', u'shoot']
[u'murder', u'accus', u'threaten']
[u'chief', u'warn', u'loom', u'super', u'crisi']
[u'nation', u'claim', u'histor', u'victori', u'greenough']
[u'navi', u'ship', u'visit', u'recognis', u'albani', u'anzac', u'role']
[u'council', u'repres', u'balanc']
[u'dentist', u'help', u'riverland', u'wait', u'time']
[u'north', u'east', u'women', u'effort', u'recognis']
[u'sale', u'nimbin', u'museum']
[u'look', u'alcohol', u'turn']
[u'olymp', u'legend', u'boyl', u'savag', u'hewitt']
[u'onlin', u'compani', u'blame', u'bank', u'control', u'theft']
[u'oversea', u'doctor', u'short', u'term', u'rural']
[u'paedophil', u'claim', u'make', u'life', u'difficult']
[u'paedophil', u'supervis', u'detent', u'centr']
[u'palestinian', u'milit', u'readi', u'ceasefir']
[u'pari', u'seduc', u'olymp', u'inspector']
[u'partial', u'smoke']
[u'partington', u'ponder', u'contest', u'albani']
[u'pathet', u'zimbabw', u'heat', u'bangladesh']
[u'peruvian', u'surf', u'enthusiast', u'seek', u'exposur']
[u'peta', u'wool', u'boycott', u'talk', u'breakdown']
[u'pharaoh', u'murder', u'victim']
[u'polic', u'chase', u'crash', u'victim', u'farewel', u'sydney']
[u'polic', u'commission', u'beat', u'palm', u'post']
[u'polic', u'fear', u'miss', u'father']
[u'polic', u'hunt', u'drug', u'thief']
[u'polic', u'offic', u'stand', u'macquari', u'field']
[u'polic', u'offic', u'warn', u'contain', u'aggress']
[u'polic', u'seiz', u'drug', u'make', u'chemic']
[u'polic', u'charg', u'trucki']
[u'pont', u'back', u'lee', u'psycholog', u'edg']
[u'pool', u'clean', u'precautionari', u'measur']
[u'pope', u'appear', u'hospit', u'window']
[u'potato', u'grower', u'chipper', u'price']
[u'princ', u'win', u'canberran', u'heart']
[u'probe', u'continu', u'fatal', u'crash']
[u'public', u'hous', u'condition', u'check']
[u'public', u'get', u'messag', u'park', u'dump']
[u'look', u'speedi', u'dalrympl', u'rule']
[u'queensland', u'brace', u'weaker', u'ingrid']
[u'queensland', u'eye', u'cyclon', u'ingrid']
[u'radcliff', u'absenc', u'give', u'johnson', u'boost']
[u'ralli', u'seek', u'fresh', u'hickey', u'hear']
[u'real', u'estat', u'agent', u'front', u'court', u'decept']
[u'real', u'madrid', u'arsenal', u'present', u'case', u'defenc']
[u'report', u'highlight', u'patient', u'wait', u'list']
[u'resid', u'fear', u'highway', u'work', u'harm', u'water', u'qualiti']
[u'resid', u'consult', u'magnet', u'wast']
[u'rocki', u'airport', u'passeng', u'number', u'doubl']
[u'russia', u'claim', u'kill', u'separatist', u'leader']
[u'safeti', u'concern', u'race', u'jump']
[u'salvat', u'armi', u'move', u'away', u'age', u'care']
[u'search', u'reveal', u'good', u'prospect']
[u'secur', u'camera', u'watch', u'toowoomba', u'cab']
[u'servic', u'farewel', u'farm', u'pioneer']
[u'shellharbour', u'council', u'back', u'runway', u'revamp']
[u'shoebox', u'put', u'indigen', u'languag', u'preserv']
[u'shooter', u'target', u'feral', u'anim']
[u'stock', u'despit', u'resourc', u'movement']
[u'suicid', u'bomber', u'kill', u'baghdad']
[u'support', u'nation', u'water', u'initi', u'decis']
[u'govt', u'repay', u'thousand', u'medicar', u'cost']
[u'temporari', u'repriev', u'drug', u'detox', u'unit']
[u'tent', u'offer', u'whitsunday', u'homeless']
[u'terror', u'confer', u'open', u'madrid', u'anniversari']
[u'thai', u'tsunami', u'studi', u'public', u'releas']
[u'thaksin', u'formal', u'elect', u'thai']
[u'thoma', u'bayley', u'share', u'award']
[u'thousand', u'touch', u'coff']
[u'climber']
[u'thurston', u'secur', u'cowboy', u'eighth', u'spot']
[u'townsvill', u'monitor', u'cyclon', u'activ']
[u'traffic', u'chang', u'kiama', u'shellharbour', u'stretch']
[u'trainer', u'consult', u'ax', u'har']
[u'tree', u'replant', u'end', u'expans', u'plan', u'green']
[u'tremor', u'outsid', u'blast', u'time']
[u'union', u'group', u'fear', u'chang', u'increas', u'wealth']
[u'intellig', u'lack', u'iran', u'weapon', u'report']
[u'vanston', u'reject', u'nation', u'elect']
[u'polic', u'seek', u'shoot', u'getaway']
[u'vietnam', u'detect', u'bird', u'patient']
[u'visit', u'parliament', u'danish', u'royal', u'coupl', u'agenda']
[u'walter', u'employe', u'lobbi', u'opposit']
[u'water', u'author', u'lay', u'chook', u'farm', u'concern']
[u'westbus', u'blue', u'ribbon', u'employe', u'pay']
[u'william', u'admit', u'kill', u'alleg', u'underworld', u'rival']
[u'aint', u'see', u'warn', u'aussi', u'netbal']
[u'zondeki', u'return', u'south', u'africa']
[u'hit', u'airwav']
[u'accus', u'softwar', u'pirat', u'face', u'extradit']
[u'aceh', u'need', u'help', u'indonesian', u'deadlin']
[u'agreement', u'benefit', u'indigen', u'mental', u'health']
[u'agenc', u'polit', u'campaign', u'sudan']
[u'altern', u'medicin', u'rule', u'tighten']
[u'appeal', u'anti', u'road', u'lobbi']
[u'armi', u'admit', u'barrack', u'secur']
[u'asbesto', u'scare', u'link', u'chile', u'plane']
[u'asio', u'want', u'habib']
[u'auditor', u'general', u'appoint']
[u'aust', u'policeman', u'bail', u'sierra', u'leon']
[u'aust', u'promis', u'neighbour', u'econom', u'help']
[u'australian', u'die', u'solomon', u'patrol', u'accid']
[u'baghdad', u'polic', u'chief', u'shoot', u'dead']
[u'ballarat', u'migrant', u'fund']
[u'bevan', u'set', u'domest', u'record']
[u'busi', u'requir', u'greenhous']
[u'birney', u'react', u'neglect', u'elector', u'fear']
[u'black', u'cap', u'pull', u'superman', u'effort']
[u'black', u'cap', u'honour']
[u'bradford', u'hudson', u'cop', u'year', u'stanozolol']
[u'bulgarian', u'soldier', u'death', u'blame', u'communic']
[u'burn', u'off', u'plan', u'south', u'coast']
[u'bush', u'urg', u'product', u'wildlif', u'reserv']
[u'cabbi', u'urg', u'temporari', u'rank']
[u'communiti', u'group', u'clean']
[u'independ', u'forens', u'centr']
[u'crash', u'victim', u'succumb', u'injuri']
[u'carlisl', u'stone', u'curs']
[u'cell', u'transplant', u'cure', u'diabet']
[u'chief', u'minist', u'seek', u'public', u'servic', u'clout']
[u'china', u'cover', u'sector']
[u'china', u'allow', u'citrus', u'import']
[u'chines', u'blast', u'kill']
[u'christian', u'order', u'discuss', u'resid', u'vanston']
[u'king']
[u'communiti', u'advoc', u'resign']
[u'cost', u'cut', u'measur', u'music', u'tasmanian']
[u'costello', u'dismiss', u'high', u'tax', u'claim']
[u'council', u'address', u'harbour', u'sewag', u'woe']
[u'council', u'get', u'road', u'pledg']
[u'council', u'hit', u'airwav', u'promot', u'break', u'hill']
[u'councillor', u'state', u'case', u'mayor', u'spot']
[u'countri', u'polic', u'review']
[u'court', u'hear', u'teen', u'admit', u'murder']
[u'increas', u'prompt', u'pension', u'rise']
[u'cyclon', u'close', u'north']
[u'cyclon', u'ingrid', u'blow', u'west']
[u'cyclon', u'ingrid', u'hit', u'coast']
[u'danish', u'royal', u'charm', u'politician']
[u'danish', u'royal', u'launch', u'video', u'link', u'project']
[u'vacat', u'throne']
[u'strike', u'pari', u'olymp']
[u'dept', u'monitor', u'eaglehawk', u'gastro', u'outbreak']
[u'disabl', u'servic', u'employe', u'strike']
[u'diseas', u'expert', u'help', u'control', u'yellow', u'fever']
[u'distress', u'signal', u'mysteri']
[u'dodgi', u'put', u'pay', u'unit']
[u'doubt', u'rais', u'atsic', u'replac']
[u'edenhop', u'polic', u'temporari', u'dig']
[u'evan', u'shire', u'councillor', u'join', u'bathurst', u'council']
[u'explos', u'near', u'australian', u'mission', u'malaysia']
[u'explos', u'near', u'australian', u'mission', u'threat']
[u'fall', u'tree', u'branch', u'prompt', u'kindi', u'safeti', u'audit']
[u'famili', u'relief', u'darl', u'down', u'coupl']
[u'farmer', u'detail', u'depress', u'impact']
[u'farmer', u'govt', u'crown', u'land', u'fee']
[u'fear', u'trap', u'south', u'african', u'miner']
[u'feder', u'govt', u'undecid', u'orchestra', u'futur']
[u'fisichella', u'dream', u'come', u'true', u'jordan']
[u'footi', u'club', u'council', u'stoush', u'souness', u'park']
[u'seek', u'uniti', u'lebanon', u'govern']
[u'fund', u'chang', u'spark', u'crisi', u'hous', u'concern']
[u'gallop', u'like', u'push', u'ahead', u'elector', u'reform']
[u'game', u'organis', u'dismiss', u'ticket', u'fear']
[u'garcia', u'doubl', u'liverpool', u'savour', u'bayer']
[u'garret', u'ban', u'contact', u'partner']
[u'blast', u'trap', u'miner', u'china']
[u'firm', u'look', u'bipartisan', u'stanc', u'power', u'reform']
[u'georg', u'sing', u'prais', u'mobil', u'phone', u'recycl']
[u'crash', u'suspect', u'fair', u'trial', u'polic', u'chief']
[u'gold', u'coast', u'plan', u'threaten', u'brisban', u'cruis', u'ship']
[u'gold', u'coast', u'roar', u'premiership', u'clash']
[u'golden', u'circl', u'rescu', u'plan', u'bring', u'relief']
[u'govt', u'quiz', u'gaff']
[u'govt', u'recognis', u'need', u'revamp', u'dental', u'clinic']
[u'govt', u'urg', u'boost', u'emerg', u'shelter', u'fund']
[u'govt', u'urg', u'address', u'rural', u'doctor']
[u'govt', u'urg', u'extend', u'life', u'atsic', u'council']
[u'govt', u'urg', u'focus', u'gambl', u'impact']
[u'grant', u'boost', u'public', u'transport', u'facil']
[u'griev', u'filipino', u'buri', u'poison', u'children']
[u'group', u'pleas', u'asbesto', u'forum', u'turnout']
[u'group', u'protest', u'phone', u'tower', u'prolifer']
[u'harradin', u'health', u'improv']
[u'hawk', u'confid', u'beat', u'king', u'sydney']
[u'health', u'servic', u'work', u'fewer', u'accid']
[u'henin', u'hardenn', u'readi', u'comeback', u'month']
[u'hill', u'extend', u'team', u'iraq', u'deploy']
[u'leader', u'quit', u'deputi']
[u'howard', u'defend', u'anzac', u'cove', u'list', u'delay']
[u'howard', u'reject', u'high', u'claim']
[u'fat', u'doubl', u'tempt', u'radcliff']
[u'return', u'expat', u'refus', u'medicar', u'card']
[u'impress', u'chelsea', u'fulfil', u'abramovich']
[u'indigen', u'hous', u'finish', u'wilcannia']
[u'ingrid', u'move', u'water']
[u'ingrid', u'weaken', u'path', u'cape']
[u'interst', u'citrus', u'market', u'reopen']
[u'iraq', u'polic', u'bodi', u'minist', u'attack']
[u'italian', u'urg', u'shoot']
[u'jackson', u'accus', u'give', u'evid']
[u'jobless', u'rate', u'steadi']
[u'kasper', u'claim', u'wicket']
[u'kelli', u'charg', u'manslaught']
[u'kelli', u'court', u'polic', u'chase', u'death']
[u'kelli', u'remand', u'custodi']
[u'kenya', u'dinosaur', u'yield', u'fossil', u'wealth']
[u'king', u'rule', u'fit']
[u'kosovo', u'leader', u'arriv', u'netherland', u'trial']
[u'labor', u'back', u'away', u'habib', u'claim', u'probe']
[u'lake', u'fountain', u'help', u'avoid', u'fish', u'kill']
[u'match', u'decid', u'class', u'finalist']
[u'law', u'hadley', u'face', u'icac', u'contempt', u'charg']
[u'kaspa', u'line', u'ball']
[u'money', u'pipelin', u'water', u'sewag', u'work']
[u'levi', u'help', u'fund', u'citi', u'safeti', u'accord']
[u'charg', u'cannabi', u'haul']
[u'injur', u'fast', u'food', u'brawl']
[u'jail', u'leav', u'wife', u'bodi', u'children']
[u'jail', u'barg', u'ground']
[u'marina', u'plan', u'spark', u'groundwat', u'fear']
[u'market', u'follow', u'stock', u'lower']
[u'mari', u'arriv', u'home']
[u'mayor', u'shed', u'light', u'citi', u'save']
[u'mcewen', u'itali']
[u'mckenzi', u'put', u'faith', u'reshuffl', u'line']
[u'meet', u'focus', u'nimbin', u'polic']
[u'melbourn', u'student', u'disappear', u'worri', u'famili']
[u'merg', u'media', u'regul', u'need', u'power', u'inquiri']
[u'meteorit', u'crater', u'mysteri', u'solv']
[u'migrant', u'urg', u'choos', u'north', u'south', u'east']
[u'miner', u'play', u'coal', u'export', u'concern']
[u'euro', u'heartbreak', u'gunner']
[u'murder', u'accus', u'save', u'victim', u'court', u'tell']
[u'mutant', u'sheep', u'solv', u'mules', u'problem']
[u'parti']
[u'ningaloo', u'reef', u'help', u'boost', u'whale', u'shark', u'research']
[u'nitschk', u'say', u'target', u'law']
[u'northern', u'adelaid', u'resid', u'relief']
[u'north', u'rid', u'cyclon', u'ingrid']
[u'woman', u'travel', u'sydney']
[u'oecd', u'report', u'critic', u'govt']
[u'oecd', u'report', u'highlight', u'grow']
[u'offic', u'distanc', u'decis', u'drop']
[u'offici', u'clarenc', u'valley', u'elect', u'result', u'loom']
[u'offset', u'alpin', u'probe', u'ahead']
[u'price', u'hit', u'high']
[u'worri', u'stock']
[u'olymp', u'rower', u'impress', u'nation']
[u'opposit', u'jump', u'intern', u'report']
[u'pagan', u'posit', u'kouta', u'fit']
[u'timer', u'clark', u'make', u'breakthrough']
[u'probe', u'hear', u'violent', u'arrest', u'frighten', u'policeman']
[u'pixi', u'skase', u'attempt', u'regain', u'citizenship']
[u'warn', u'econom', u'news', u'ahead']
[u'polic', u'inquir', u'sexual', u'assault', u'claim']
[u'polic', u'record', u'drug', u'haul']
[u'polic', u'investig', u'bloodi']
[u'polic', u'investig', u'suspect', u'steal', u'good']
[u'polic', u'probe', u'cobb', u'highway', u'death']
[u'polic', u'stage', u'road', u'safeti', u'blitz']
[u'polic', u'threaten', u'industri', u'unrest', u'insur']
[u'pope', u'hospit', u'holi', u'week']
[u'power', u'author', u'plan', u'price', u'rise']
[u'power', u'station', u'worker', u'forc', u'redund']
[u'power', u'worker', u'order', u'abandon', u'strike', u'plan']
[u'prepay', u'electr', u'offer']
[u'princess', u'mari', u'thrill', u'tasmanian', u'wisher']
[u'prosecutor', u'challeng', u'lenienc', u'bashir', u'sentenc']
[u'beat', u'monaco', u'book', u'quarter', u'final', u'spot']
[u'qanta', u'ozjet', u'compet', u'canberra', u'rout']
[u'question', u'rais', u'extent', u'asbesto', u'test']
[u'rain', u'help', u'lift', u'ban']
[u'rain', u'leav', u'perth', u'home', u'power']
[u'region', u'motorist', u'face', u'drug', u'test']
[u'rescu', u'helicopt', u'tender', u'announc']
[u'rescuer', u'free', u'south', u'african', u'miner']
[u'retail', u'battl', u'easter', u'sunday', u'trade']
[u'ronaldo', u'real', u'juve', u'bayern', u'liverpool', u'march']
[u'ryan', u'hope', u'sonni', u'stick', u'dog']
[u'saint', u'riewoldt', u'friend']
[u'salvo', u'relinquish', u'age', u'care', u'facil']
[u'usher', u'law']
[u'scheme', u'address', u'kimberley', u'doctor', u'shortag']
[u'scheme', u'help', u'stop', u'predat', u'join']
[u'schoolgirl', u'killer', u'face', u'assault', u'charg']
[u'senat', u'elect', u'seek', u'telstra', u'region', u'review']
[u'servic', u'station', u'bandit', u'get', u'suspend', u'sentenc']
[u'seven', u'mile', u'nation', u'park', u'facelift']
[u'smoke', u'mother', u'risk', u'babi', u'gene']
[u'southern', u'hemispher', u'helium', u'plant']
[u'speaker', u'safe', u'despit', u'paedophilia', u'alleg']
[u'support', u'polit', u'aspir', u'kilgariff', u'remain']
[u'support', u'group', u'reduc', u'bulli', u'studi']
[u'talk', u'rais', u'hop', u'chines']
[u'tasmania', u'welcom', u'princess', u'mari', u'home']
[u'terror', u'studi', u'inform', u'secur']
[u'thorp', u'absenc', u'negat', u'hackett']
[u'tibet', u'will', u'remain', u'china', u'dalai', u'lama']
[u'tornado', u'wreak', u'havoc', u'town']
[u'tourist', u'die', u'goulburn', u'valley', u'road', u'smash']
[u'traineeship', u'scheme', u'look', u'lift', u'skill', u'worker']
[u'tribut', u'flow', u'editor']
[u'tuckey', u'reject', u'blame', u'albani', u'loss']
[u'turkey', u'angri', u'anzac', u'destruct', u'claim']
[u'shoot', u'dead', u'iraq']
[u'surgeon', u'rockhampton']
[u'union', u'angri', u'govt', u'overrid', u'workplac']
[u'union', u'warn', u'howard', u'polici', u'worsen', u'skill']
[u'underestim', u'malaria', u'case']
[u'imag', u'problem', u'hinder', u'peac']
[u'footbal', u'recognis', u'latest', u'hero']
[u'waratah', u'stomach']
[u'weaker', u'ingrid', u'cut', u'path', u'west']
[u'western', u'cape', u'york', u'readi', u'cyclon']
[u'william', u'tri', u'gangland', u'murder']
[u'wind', u'farm', u'plan', u'creat', u'rift']
[u'windsor', u'vendetta', u'deputi']
[u'winmar', u'want', u'black', u'pride', u'jumper']
[u'woman', u'jail', u'australia', u'post', u'fraud']
[u'work', u'begin', u'mental', u'health', u'facil']
[u'work', u'parti', u'tee', u'plan', u'uniqu', u'golf']
[u'young', u'farmer', u'meet', u'dubbo']
[u'zalayeta', u'send', u'real', u'crash']
[u'fin', u'hand', u'gretley', u'disast']
[u'abductor', u'return', u'tweed', u'head', u'girl']
[u'agent', u'orang', u'lawsuit', u'dismiss']
[u'alleg', u'abduct', u'victim', u'reunit', u'famili']
[u'alleg', u'drug', u'boss', u'clear', u'sojourn']
[u'anim', u'welfar', u'group', u'target', u'south', u'east', u'duck']
[u'anzac', u'leav', u'gallipoli', u'peac', u'voyag']
[u'armi', u'investig', u'solomon', u'death']
[u'arsonist', u'hinder', u'fuel', u'reduct', u'effort']
[u'aust', u'look', u'tourism', u'tip']
[u'australian', u'doubt']
[u'australian', u'grand', u'prix', u'doubt']
[u'australian', u'rescu', u'snow', u'cave']
[u'bald', u'rock', u'bushwalk']
[u'beazley', u'launch', u'werriwa', u'elect', u'campaign']
[u'bell', u'ring', u'madrid', u'commemor', u'bomb']
[u'blue', u'control']
[u'bodi', u'prison', u'exhum']
[u'brack', u'welcom', u'swedish', u'princess']
[u'bradley', u'keho', u'doubl', u'scull']
[u'break', u'hill', u'get', u'health', u'institut']
[u'bronco', u'look', u'reveng', u'derbi']
[u'brumbi']
[u'build', u'evacu', u'electr']
[u'bulldog', u'team', u'beat', u'ryan']
[u'bull', u'remov', u'hussey', u'gabba']
[u'businessman', u'expat', u'cancer', u'patient', u'bill']
[u'cahil', u'return', u'socceroo']
[u'controversi', u'polic', u'databas']
[u'fund', u'shift', u'calder', u'highway']
[u'caravan', u'park', u'resid', u'reloc']
[u'carr', u'announc', u'mental', u'health', u'care', u'boost']
[u'carr', u'back', u'critic', u'defenc', u'barrist']
[u'cautious', u'investor', u'mix', u'result']
[u'central', u'face', u'water', u'price', u'rise']
[u'chariti', u'call', u'urgent', u'action', u'homeless']
[u'chess', u'master', u'kasparov', u'retir']
[u'citrus', u'grower', u'china', u'export', u'boom']
[u'claim', u'harbour', u'develop', u'hold', u'eden']
[u'club', u'urg', u'know', u'anti', u'smoke', u'law']
[u'communiti', u'look', u'health', u'issu', u'studi']
[u'confer', u'aim', u'standard', u'approach', u'infant']
[u'coonambl', u'seek', u'hospit']
[u'coron', u'blame', u'western', u'power', u'death']
[u'council', u'face', u'opposit', u'sewer', u'plan']
[u'council', u'move', u'paparo', u'case']
[u'council', u'outrag', u'govt', u'triathlon', u'support']
[u'council', u'talk', u'pacif', u'highway', u'fund']
[u'council', u'freez', u'airport', u'land', u'fee']
[u'council', u'review', u'terang', u'manag']
[u'countri', u'hospit', u'better', u'region']
[u'court', u'order', u'xstrata', u'cost']
[u'cowboy', u'excit', u'season', u'prospect']
[u'custom', u'find', u'fishi', u'luggag']
[u'cyclon', u'hover', u'coast']
[u'cyclon', u'willi', u'unlik', u'landfal']
[u'dane', u'bring', u'royal', u'tour']
[u'danger', u'drive', u'cost', u'father', u'licenc']
[u'date', u'start', u'work', u'fuel', u'plant']
[u'dead', u'tokyo', u'bomb', u'raid', u'rememb']
[u'debt', u'freez', u'increas', u'burden', u'indonesia']
[u'debt', u'freez', u'offer', u'tsunami', u'nation']
[u'deitz', u'centuri', u'put', u'redback', u'control']
[u'dentist', u'tsunami', u'experi', u'prove', u'emot']
[u'canio', u'fin', u'fascist', u'style', u'salut']
[u'diplomat', u'join', u'search', u'miss', u'aussi']
[u'damag', u'copyright', u'breach']
[u'dog', u'dragon', u'season', u'open']
[u'downer', u'urg', u'malaysian', u'free', u'trade', u'agreement']
[u'drop', u'charg', u'strangl', u'murder']
[u'driver', u'urg', u'care', u'long', u'weekend']
[u'dual', u'citizen', u'jail', u'child', u'porn']
[u'ell', u'carri', u'baton', u'game']
[u'upstag', u'qatar']
[u'emerald', u'sprinkler', u'extend']
[u'slam', u'turkey', u'women', u'violenc']
[u'khmer', u'roug', u'leader', u'face', u'charg']
[u'expat', u'cancer', u'suffer', u'trap', u'bureaucraci']
[u'factori', u'forc', u'road', u'closur']
[u'farm', u'group', u'vow', u'fight', u'vote', u'valu']
[u'fesa', u'agreement', u'face', u'opposit']
[u'firefight', u'control', u'renmark', u'blaze']
[u'firm', u'seek', u'region', u'partnership', u'explain']
[u'test', u'even', u'pois']
[u'fli', u'chemist', u'urg', u'travel', u'subsidi']
[u'teacher', u'jail', u'child', u'molest']
[u'steam', u'ahead', u'destroy']
[u'funer', u'favourit', u'reveal', u'nation', u'quirk']
[u'furnitur', u'factori', u'spark', u'evacu']
[u'shortag', u'forc', u'worker', u'stand']
[u'german', u'gather', u'high', u'tech', u'fair']
[u'gove', u'peninsula', u'prepar', u'ingrid']
[u'govern', u'pledg', u'game', u'athlet']
[u'govt', u'scheme', u'help', u'basin', u'recoveri']
[u'govt', u'stretch', u'hire', u'buyback', u'offer']
[u'govt', u'tell', u'come', u'clean', u'hospit', u'letter']
[u'govt', u'urg', u'boost', u'protect', u'polic']
[u'govt', u'urg', u'scrap', u'nation', u'indigen', u'bodi']
[u'govt', u'wont', u'reveal', u'fund', u'drug', u'detox', u'unit']
[u'green', u'want', u'rail', u'freight', u'audit', u'answer']
[u'gympi', u'get', u'govt', u'plan', u'assur']
[u'hayden', u'australia', u'continu', u'chase']
[u'health', u'merger', u'save', u'unclear']
[u'henri', u'play', u'swim', u'trial', u'chanc']
[u'henri', u'sidelin', u'calf', u'strain']
[u'hewitt', u'harbour', u'hard', u'feel', u'clijster']
[u'highland', u'crush', u'bull']
[u'highway', u'truck', u'crash', u'leav', u'dead']
[u'home', u'lend', u'trend', u'defi', u'expert']
[u'homeless', u'fund', u'meet', u'end', u'impass']
[u'howard', u'ambival', u'evan']
[u'howard', u'defend', u'polici']
[u'icac', u'delay', u'law', u'contempt', u'decis']
[u'predict', u'higher', u'expect', u'demand']
[u'indian', u'default', u'face', u'music']
[u'iran', u'seiz', u'british', u'boat', u'display', u'report']
[u'iraq', u'task', u'forc', u'command', u'name']
[u'commiss', u'defus', u'power', u'strike']
[u'jackson', u'molest', u'twice', u'say', u'teenag']
[u'kalgoorli', u'ratepay', u'poll']
[u'keegan', u'abandon', u'citi', u'contract']
[u'king', u'triumph', u'grand', u'final', u'open']
[u'kumbl', u'strike', u'india', u'victori']
[u'labor', u'push', u'senat', u'probe', u'telstra', u'sale']
[u'labor', u'seek', u'inquiri', u'delay']
[u'larkham', u'marshal', u'injuri', u'brumbi', u'brave']
[u'launceston', u'rare', u'show', u'french', u'master']
[u'lower', u'jobless', u'rate', u'pleas', u'busi', u'chamber']
[u'madrid', u'rememb', u'train', u'attack']
[u'charg', u'follow', u'ident', u'fraud', u'raid']
[u'maningrida', u'celebr', u'educ', u'mileston']
[u'jail', u'year', u'manslaught']
[u'jail', u'kidnap', u'plot']
[u'arsenal', u'fight', u'season', u'aliv']
[u'martin', u'excit', u'tourism', u'campaign']
[u'mari', u'tasmanian', u'tour', u'continu', u'thrill', u'fan']
[u'mayor', u'plan', u'label', u'ludicr']
[u'mcdonald', u'take', u'issu', u'rugbi', u'mcbrat', u'pack']
[u'mckellen', u'join', u'coron', u'street', u'cast']
[u'meat', u'suppli', u'glitch', u'caus', u'health', u'concern']
[u'meet', u'outlin', u'saleyard', u'decis']
[u'militari', u'struggl', u'skill', u'recruit']
[u'millmerran', u'get', u'age', u'care', u'boost']
[u'miner', u'welcom', u'gretley', u'disast', u'fine']
[u'minist', u'favour', u'cut', u'council', u'number']
[u'minist', u'reject', u'marin', u'park', u'plan', u'loss', u'claim']
[u'minist', u'investig', u'gladston', u'hospit', u'worri']
[u'mourinho', u'cheat', u'cheat', u'jibe', u'earn', u'fine']
[u'forecast', u'flap', u'corella', u'cull']
[u'pleas', u'crown', u'land', u'road', u'permit', u'review']
[u'upset', u'outback', u'servic']
[u'museum', u'demand', u'proof', u'sydney', u'discoveri']
[u'mushroom', u'picker', u'offer', u'job']
[u'nation', u'park', u'reopen', u'storm', u'damag']
[u'nation', u'candid', u'reject', u'tuckey', u'attack']
[u'breed', u'wont', u'stop', u'mules', u'anim', u'right', u'group']
[u'newcastl', u'sink', u'olympiako', u'uefa']
[u'evid', u'worker', u'case']
[u'focus', u'townsvill', u'tourism']
[u'properti', u'develop', u'guidelin', u'seek']
[u'obvious', u'motiv', u'abduct', u'polic']
[u'repriev', u'sack', u'teacher']
[u'club', u'respond', u'propos', u'chang']
[u'reach', u'conserv', u'mileston']
[u'resid', u'brace', u'ingrid', u'arriv']
[u'olymp', u'boss', u'treat', u'french', u'strike']
[u'opposit', u'demand', u'youth', u'justic', u'centr', u'probe']
[u'orchestra', u'warn', u'musician', u'cut']
[u'organis', u'urg', u'bare', u'nude', u'festiv', u'detail']
[u'paedophil', u'alleg']
[u'pentagon', u'chief', u'clear', u'prison', u'abus']
[u'phone', u'tower', u'support', u'see', u'safeti', u'benefit']
[u'hear', u'tell', u'offic', u'disciplin']
[u'pittman', u'head', u'australian', u'team', u'world', u'titl']
[u'plan', u'announc', u'canberra', u'revamp']
[u'defend', u'govt', u'record']
[u'invit', u'conserv', u'peac', u'summit']
[u'offer', u'sympathi', u'soldier', u'famili']
[u'tell', u'pilbara', u'train', u'resourc', u'shortag']
[u'pole', u'fire', u'blame', u'mass', u'blackout']
[u'polic', u'follow', u'lead', u'strobel', u'murder', u'case']
[u'polic', u'investig', u'babi', u'death']
[u'polic', u'investig', u'suspect', u'child', u'abduct']
[u'polic', u'investig', u'violent', u'attack']
[u'polic', u'crime', u'wave']
[u'prais', u'free', u'senior', u'week', u'travel']
[u'princess', u'mari', u'tell', u'press', u'emot', u'homecom']
[u'protest', u'demand', u'hickey', u'inquest']
[u'public', u'urg', u'crime', u'stopper']
[u'pyjama', u'cloth', u'jackson', u'narrowli', u'escap', u'jail']
[u'singapor', u'airlin', u'launch', u'joint', u'tourism', u'plan']
[u'team', u'help', u'fight', u'coal']
[u'rain', u'delay', u'bypass', u'open']
[u'rann', u'back', u'uranium', u'mine', u'polici', u'rethink']
[u'red', u'recal', u'mcmeniman', u'vedelago']
[u'resourc', u'stock', u'leav', u'market']
[u'reynold', u'hand', u'wallabi', u'coach', u'role']
[u'brew', u'aborigin', u'kosciuszko']
[u'royal', u'coupl', u'host', u'media', u'confer']
[u'rural', u'industri', u'urg', u'present', u'posit', u'imag']
[u'deputi', u'premier', u'seek', u'chang', u'uranium', u'mine']
[u'sanction', u'follow', u'shoot', u'offer']
[u'plan', u'chang', u'pitjantjatara', u'academ']
[u'search', u'continu', u'miss']
[u'sharehold', u'urg', u'accept', u'merger']
[u'shell', u'load', u'bonapart', u'gulf', u'interest']
[u'shoalhaven', u'mayor', u'unhurt', u'crash']
[u'singaporean', u'presid', u'visit', u'australia']
[u'australian', u'billionair', u'list']
[u'sourc', u'fish', u'kill', u'chemic', u'mysteri']
[u'south', u'africa', u'focus', u'test', u'zimbabw']
[u'spain', u'stop', u'silenc', u'rememb', u'madrid', u'attack']
[u'special', u'rwandan', u'court', u'start', u'genocid', u'trial']
[u'suspect', u'jakarta', u'embassi', u'bomber', u'identifi']
[u'sydney', u'sweatshop', u'investig', u'continu']
[u'thousand', u'tip', u'bendigo', u'clash']
[u'fieri', u'road', u'crash']
[u'tiger', u'voic', u'salari', u'concern']
[u'time', u'run', u'machin', u'answer']
[u'trial', u'aim', u'eas', u'contracept', u'effect']
[u'troop', u'protect', u'radiat', u'armi', u'chief']
[u'uefa', u'probe', u'chelsea', u'barca', u'fraca']
[u'extend', u'darfur', u'peac', u'mission']
[u'union', u'defend', u'teacher', u'stop', u'work', u'action']
[u'union', u'predict', u'heavi', u'sentenc', u'death']
[u'ponder', u'school', u'plan']
[u'warrior', u'close', u'inning', u'point']
[u'water', u'merger', u'week', u'away']
[u'water', u'cost']
[u'welfar', u'group', u'fear', u'budget', u'cut']
[u'western', u'look', u'tourism', u'season']
[u'delay', u'dougla', u'arteri', u'work']
[u'widow', u'request', u'exhum', u'husband', u'grant']
[u'woman', u'hospit', u'crash']
[u'women', u'cricket']
[u'wool', u'produc', u'await', u'peta', u'campaign', u'rule']
[u'firefight', u'battl', u'massiv', u'furnitur', u'factori']
[u'rescu', u'boat', u'capsiz']
[u'cent', u'album', u'rival', u'beatl']
[u'abduct', u'spark', u'renew', u'call', u'nation', u'alert']
[u'ambassador', u'find', u'evid', u'disturb']
[u'arm', u'stand', u'polic']
[u'australia']
[u'aust', u'warn', u'possibl', u'jakarta', u'bomb', u'attack']
[u'bichel', u'bowl', u'bull', u'final']
[u'black', u'cap', u'hold', u'slender', u'lead']
[u'blue', u'target', u'victori']
[u'bomber', u'face', u'lloyd', u'injuri', u'crisi']
[u'british', u'parliament', u'stalem', u'anti']
[u'bulgaria', u'say', u'admit', u'respons', u'death']
[u'bull', u'build', u'lead', u'secur', u'final', u'spot']
[u'bull', u'charg', u'home', u'final']
[u'bush', u'name', u'academ', u'head', u'nasa']
[u'bushrang', u'take', u'slow', u'steadi']
[u'stop', u'orchestra', u'downsiz']
[u'chief', u'break', u'blue']
[u'clean', u'begin', u'wake', u'cyclon', u'ingrid']
[u'clijster', u'reach', u'round', u'indian', u'well']
[u'comedian', u'dave', u'allen', u'die']
[u'crusad', u'thrash', u'winless', u'red']
[u'cyclon', u'willi', u'build', u'coast']
[u'darwin', u'prepar', u'ingrid', u'move', u'closer']
[u'defenc', u'struggl', u'skill', u'recruit']
[u'dog', u'dragon', u'season', u'open']
[u'dolphin', u'wave', u'artifici', u'admir']
[u'iran', u'face', u'nuke', u'enrich', u'resum']
[u'evan', u'second', u'pari', u'nice', u'stage']
[u'expert', u'gather', u'mull', u'restructur', u'implic']
[u'farina', u'welcom', u'asia']
[u'faulti', u'gene', u'link', u'blind']
[u'crew', u'battl', u'factori', u'blaze']
[u'expect', u'burn', u'night']
[u'german', u'player', u'arrest', u'rig', u'scandal']
[u'emerg', u'servic', u'worker', u'honour']
[u'flemington', u'doubl', u'freedman']
[u'flight', u'centr', u'fli', u'indian', u'market']
[u'free', u'italian', u'tell', u'mind', u'careless', u'talk']
[u'gilli', u'fall', u'vital', u'centuri']
[u'govt', u'accus', u'plan', u'chang', u'land', u'right']
[u'green', u'top', u'doha', u'leaderboard']
[u'group', u'claim', u'telstra', u'stori', u'poor', u'rural']
[u'hackett', u'triumph', u'thorp', u'absenc']
[u'hama', u'palestinian', u'elect']
[u'hurrican', u'super']
[u'impress', u'eel', u'slip', u'past', u'tiger']
[u'india', u'pois', u'kill']
[u'ingrid', u'batter']
[u'ingrid', u'continu', u'lash']
[u'ingrid', u'edg', u'close', u'gove', u'peninsula']
[u'ingrid', u'whip', u'categori']
[u'inquiri', u'examin', u'legalis', u'escort', u'servic']
[u'intel', u'trade', u'deficit', u'drag', u'stock']
[u'iran', u'say', u'incent', u'offer', u'insignific']
[u'jakarta', u'step', u'secur', u'terror', u'warn']
[u'judg', u'kill', u'rape', u'trial']
[u'katich', u'gilchrist', u'australia', u'lunch']
[u'leav', u'royal', u'lennon', u'warn']
[u'makyb', u'diva', u'elvstroem', u'renew', u'rivalri']
[u'hospit', u'meat', u'cleaver', u'attack']
[u'tri', u'polic', u'offic']
[u'melbourn', u'airport', u'shutdown', u'report', u'releas']
[u'milit', u'extend', u'death', u'threat', u'deadlin', u'filipino']
[u'mother', u'hold', u'custodi', u'poison', u'daughter']
[u'criticis', u'sydney', u'develop', u'plan']
[u'negoti', u'free', u'iraqi', u'swede', u'hostag']
[u'nepal', u'free']
[u'netbal', u'sweep', u'south', u'africa']
[u'prison', u'rais', u'question']
[u'indigen', u'minist', u'visit', u'aborigin']
[u'excus', u'inact', u'african', u'poverti', u'blair']
[u'offic', u'where']
[u'person', u'injur', u'blast', u'near', u'mission']
[u'organis', u'name', u'citizen', u'year']
[u'parent', u'charg', u'attempt', u'murder']
[u'polic', u'woman', u'seek', u'tweed', u'kidnap']
[u'polic', u'investig', u'death', u'babi', u'girl']
[u'pope', u'hear', u'speak', u'hospit', u'mass']
[u'port', u'power', u'hawk']
[u'prosecutor', u'claim', u'jackson', u'brink', u'bankruptci']
[u'protect', u'order', u'seek', u'poison', u'girl']
[u'redback', u'charg', u'adelaid']
[u'red', u'rope']
[u'relax', u'blue', u'readi', u'eagl']
[u'stewart', u'marri', u'model', u'girlfriend']
[u'roger', u'break', u'tah', u'train']
[u'rooster', u'rabbitoh']
[u'royal', u'coupl', u'offici', u'australian', u'tour']
[u'speaker', u'stand', u'firm', u'paedophil', u'claim']
[u'search', u'fail', u'melbourn', u'miss']
[u'shark', u'panther', u'tight', u'battl']
[u'arrest', u'fight', u'concert']
[u'soldier', u'fell', u'death', u'farewel']
[u'southern', u'painter', u'win', u'honour']
[u'stalin', u'secret', u'hitler', u'book', u'publish']
[u'stanhop', u'public', u'servic', u'chang']
[u'streak', u'blignaut', u'rescu', u'zimbabw']
[u'studi', u'look', u'lobster', u'health']
[u'sydney', u'factori', u'blaze', u'challeng', u'crew']
[u'syrian', u'quit', u'north', u'lebanon']
[u'taiwan', u'presid', u'call', u'ralli', u'china']
[u'kill', u'injur', u'vietnam', u'train', u'crash']
[u'thousand', u'attend', u'pat', u'parad']
[u'threat', u'forc', u'chelsea', u'quit']
[u'save', u'floodwat', u'mobil']
[u'tuckshop', u'target', u'help', u'reduc', u'child', u'obes']
[u'tung', u'name', u'advis', u'china', u'parliament']
[u'pass', u'anti', u'terror', u'free', u'suspect']
[u'union', u'lobbi', u'industri', u'manslaught', u'law']
[u'union', u'lobbi', u'save', u'spirit', u'servic']
[u'union', u'strike', u'threat']
[u'accus', u'north', u'korea', u'increas', u'drug', u'traffic']
[u'health', u'expert', u'hepat', u'drug']
[u'want', u'repatri', u'guantanamo', u'detaine', u'report']
[u'warn', u'terror', u'threat', u'jakarta', u'mall']
[u'venezuelan', u'court', u'revers', u'coup', u'rule']
[u'say', u'decis', u'australia', u'asia']
[u'africa', u'artist', u'stage', u'anti', u'malaria', u'concert']
[u'agassi', u'end', u'arthur', u'win', u'streak']
[u'akmal', u'maiden', u'guid', u'pakistan', u'draw']
[u'aussi', u'thrash', u'black', u'cap', u'wicket']
[u'barca', u'stretch', u'lead']
[u'beazley', u'call', u'protest', u'vote']
[u'beazley', u'offer', u'host', u'latham', u'dinner']
[u'black', u'cap', u'squad', u'second', u'test']
[u'blue', u'buoy', u'preseason']
[u'blue', u'secur', u'final', u'spot']
[u'blue', u'wait', u'final', u'fate']
[u'blue', u'preseason']
[u'bodi', u'burn', u'hous']
[u'bowler', u'black', u'cap', u'rope']
[u'british', u'mother', u'set', u'polar', u'trek']
[u'bronco', u'edg', u'cowboy', u'local', u'derbi']
[u'bull', u'track', u'home', u'final']
[u'bull', u'face', u'blue', u'final']
[u'busi', u'lobbi', u'damn', u'union', u'strike', u'plan']
[u'call', u'public', u'input', u'elector']
[u'canberra', u'invest', u'tourism', u'promot']
[u'canberran', u'turn', u'walk', u'want']
[u'carr', u'pledg', u'infrastructur']
[u'carr', u'stand', u'polic', u'chief', u'macquari', u'field']
[u'china', u'start', u'aid', u'vaccin', u'trial']
[u'clement', u'break', u'johnson', u'indoor']
[u'commonwealth', u'game', u'ticket', u'ballot', u'begin']
[u'cyclon', u'batter', u'croker', u'island']
[u'cyclon', u'ingrid', u'march', u'darwin']
[u'cyclon', u'march', u'tiwi', u'island']
[u'cyclon', u'willi', u'die', u'coast']
[u'darwin', u'prepar', u'cyclon', u'ingrid']
[u'darwin', u'prepar', u'ingrid']
[u'death', u'toll', u'hotel', u'shoot', u'rise']
[u'destroy', u'factori', u'unsaf', u'investig']
[u'drought', u'affect', u'farmer', u'seek', u'govt', u'loan']
[u'earthquak', u'shake', u'iran']
[u'elect', u'hong', u'kong', u'leader', u'juli']
[u'crew', u'battl', u'chemic']
[u'crew', u'contain', u'chemic']
[u'firefight', u'tri', u'extinguish', u'sydney']
[u'dead', u'hotel', u'shoot']
[u'french', u'kill', u'irish', u'grand', u'slam', u'hop', u'england']
[u'gandhi', u'salt', u'march', u'enact']
[u'german', u'fingerprint', u'supermarket']
[u'ginn', u'tomkin', u'keho', u'row', u'honour']
[u'girl', u'okay', u'alleg', u'poison', u'attempt']
[u'greec', u'swear', u'presid']
[u'green', u'fail', u'titl', u'shoot']
[u'green', u'lose', u'qatar', u'lead']
[u'gunman', u'hold', u'polic', u'hour']
[u'gunman', u'kill', u'church', u'servic']
[u'gunman', u'stand', u'firm', u'sieg', u'continu']
[u'hayden', u'aussi', u'chase']
[u'hewat', u'lift', u'waratah', u'super']
[u'hitler', u'cross', u'list', u'honour', u'citizen']
[u'howard', u'eye', u'chines', u'free', u'trade', u'deal']
[u'howard', u'say', u'skill', u'shortag', u'identifi', u'month']
[u'indonesian', u'presid', u'visit', u'australia']
[u'infrastructur', u'labour', u'shortag', u'natur', u'minchin']
[u'ingrid', u'weaken', u'rout', u'darwin']
[u'iran', u'vow', u'continu', u'nuclear', u'program']
[u'iraq', u'bomb', u'blast', u'kill', u'secur', u'worker']
[u'king', u'clip', u'hawk', u'lead']
[u'latest', u'spin', u'see', u'warn', u'england']
[u'lebanes', u'presid', u'warn', u'catastroph']
[u'accus', u'poison', u'children', u'alleg']
[u'kill', u'kayak', u'accid']
[u'pose', u'mother', u'year', u'pension']
[u'man', u'hand', u'fight']
[u'want', u'servic', u'station', u'robberi']
[u'want', u'tourist', u'bash']
[u'marathon', u'dive', u'aim', u'aquat', u'research']
[u'medic', u'treatment', u'delay', u'child', u'kidnap', u'probe']
[u'minist', u'see', u'better', u'regul', u'telstra', u'sale']
[u'motorcyclist', u'dead', u'oval']
[u'evid', u'anzac', u'grave', u'disturb', u'say']
[u'cut', u'govt', u'say']
[u'surpris', u'inter', u'draw']
[u'ogilvi', u'grab', u'share', u'lead']
[u'opposit', u'claim', u'poor', u'fund', u'rais', u'polic']
[u'deni', u'slowdown', u'weaken', u'economi']
[u'polic', u'hope', u'tattoo', u'help', u'identifi', u'dead']
[u'polic', u'breakthrough', u'arm']
[u'polic', u'negoti', u'sieg', u'gunman']
[u'polic', u'probe', u'attack', u'adelaid']
[u'polic', u'probe', u'cruis', u'boat', u'capsiz']
[u'pope', u'speak', u'hospit', u'window']
[u'pope', u'discharg', u'hospit']
[u'princ', u'centuri', u'bolster', u'south', u'africa']
[u'prison', u'die', u'hit', u'head']
[u'redback', u'tame', u'tiger', u'adelaid']
[u'resid', u'evacu', u'sieg', u'continu']
[u'road', u'fin', u'fund', u'black', u'spot', u'work']
[u'scud', u'round', u'arthur', u'meet', u'agassi']
[u'eagl', u'warrior']
[u'sea', u'eagl', u'warrior']
[u'sensat', u'celt', u'ranger', u'lead']
[u'shiit', u'kurdish', u'talk', u'form', u'iraq', u'govern', u'fail']
[u'singaporean', u'norwegian', u'leader', u'visit', u'australia']
[u'storm', u'rain', u'joey', u'comeback']
[u'suspect', u'arrest', u'tripl', u'slay', u'court']
[u'opposit', u'accus', u'mischief', u'spirit']
[u'polic', u'hope', u'peac', u'sieg']
[u'toilet', u'help', u'tsunami', u'ravag', u'banda', u'aceh']
[u'thousand', u'expect', u'walk', u'help', u'forget', u'peopl']
[u'teen', u'charg', u'arson', u'palm', u'island']
[u'tiwi', u'brace', u'ingrid']
[u'townhous', u'blaze', u'damag', u'top']
[u'train', u'derail', u'vietnam', u'kill']
[u'arrest', u'luxuri', u'hijack']
[u'charg', u'perth', u'jack']
[u'kill', u'suspect', u'milit', u'captur', u'jeddah']
[u'serious', u'injur', u'rollov']
[u'unit', u'arsenal', u'eas', u'semi']
[u'syria', u'understand', u'stage', u'pullout']
[u'miss', u'plung', u'canal']
[u'armi', u'report', u'soldier', u'kill', u'afghan']
[u'warn', u'take', u'kiwi']
[u'win', u'king']
[u'weather', u'intensifi', u'tiwi', u'brace', u'ingrid']
[u'windi', u'lara', u'cold']
[u'woman', u'arrest', u'alleg', u'attempt']
[u'woman', u'hospitalis', u'accid']
[u'iraqi', u'kill', u'attack', u'past', u'day']
[u'tram', u'get', u'leas', u'life']
[u'kill', u'fall', u'gorg', u'india']
[u'west', u'bank', u'settlement', u'outpost', u'dismantl']
[u'boost', u'plan', u'illawarra', u'geriatr', u'servic']
[u'recruit', u'join', u'polic', u'forc']
[u'charg', u'drink', u'drive', u'blitz']
[u'charg', u'drug', u'bust']
[u'accc', u'green', u'light', u'iron', u'joint', u'ventur']
[u'deni', u'hospit', u'list', u'scapegoat']
[u'adventur', u'interrupt', u'trek', u'royal', u'geograph']
[u'airport', u'tell', u'reduc', u'bird', u'strike', u'risk']
[u'airport', u'adopt', u'tougher', u'secur']
[u'alleg', u'poison', u'victim', u'improv']
[u'australian', u'polic', u'hear', u'polic', u'strategi']
[u'aviat', u'industri', u'face', u'skill', u'shortag']
[u'balaji', u'fin', u'excess', u'appeal']
[u'ballarat', u'line', u'track']
[u'barbaro', u'plead', u'guilti', u'drug', u'charg']
[u'batistuta', u'call', u'quit']
[u'bear', u'come', u'beat', u'wynnum']
[u'beatti', u'welcom', u'coke', u'propos']
[u'takeov', u'spark', u'fear']
[u'crowd', u'flock', u'communiti', u'fair']
[u'turnout', u'african', u'concert', u'fight', u'malaria']
[u'blackout', u'bring', u'halt']
[u'blue', u'want', u'final']
[u'bullet', u'hous', u'sieg', u'continu']
[u'bull', u'hop']
[u'commut', u'tell', u'lose']
[u'busi', u'want', u'shortag', u'detail']
[u'busi', u'lobbi', u'worri', u'china', u'trade', u'talk']
[u'cabbi', u'suspens', u'hamper', u'taxi', u'access']
[u'cabinet', u'approv', u'heritag', u'review']
[u'confid', u'warn', u'meet', u'oblig']
[u'rethink', u'adopt', u'polici']
[u'call', u'assist', u'drought', u'worsen']
[u'central', u'african', u'republ', u'vote', u'year', u'coup']
[u'chang', u'promis', u'better', u'reef', u'consult']
[u'chariti', u'fund', u'flow', u'clash']
[u'cherbourg', u'princip', u'get', u'art', u'board', u'appoint']
[u'china', u'pass', u'taiwan', u'anti', u'secess']
[u'claim', u'copper', u'chopper', u'come', u'cropper']
[u'club', u'face', u'expuls', u'brawl']
[u'communiti', u'star', u'cinema']
[u'corrupt', u'probe', u'target', u'fraudul', u'builder']
[u'council', u'back', u'green', u'bag']
[u'council', u'call', u'polic', u'beat']
[u'councillor', u'call', u'rat', u'rise']
[u'council', u'rethink', u'park', u'fund']
[u'council', u'overse', u'transport', u'servic']
[u'cowboy', u'loss', u'highlight', u'rusti', u'play']
[u'croker', u'island', u'reel', u'cyclon']
[u'cult', u'leader', u'face', u'chilean', u'court', u'abus']
[u'cyclist', u'face', u'challeng', u'second']
[u'darwin', u'alert', u'cyclon', u'hit', u'tiwi', u'island']
[u'darwin', u'spar', u'ingrid', u'furi']
[u'defenc', u'chief', u'offer', u'asbesto', u'assur']
[u'disney', u'appoint']
[u'downer', u'oppos', u'china', u'anti', u'secess']
[u'drought', u'take', u'toll', u'alic', u'tree']
[u'earthquak', u'rattl', u'mumbai', u'western', u'india']
[u'surg', u'qatar', u'titl']
[u'emerg', u'servic', u'deni', u'radio', u'outag']
[u'evict', u'threat', u'put', u'cloud', u'footi', u'club']
[u'kosovo', u'plead', u'guilti', u'crime']
[u'extra', u'polic', u'probe', u'solomon', u'death']
[u'famili', u'flee', u'burn', u'home']
[u'feedback', u'seek', u'dugong', u'turtl', u'harvest']
[u'firefight', u'monitor', u'renmark', u'blaze', u'site']
[u'fish', u'kill', u'spark', u'govt', u'probe']
[u'iraqi', u'civilian', u'wound', u'chopper', u'attack']
[u'forestri', u'worker', u'hold', u'ballot', u'hope', u'resolv']
[u'gangland', u'kill', u'link', u'polic', u'corrupt']
[u'shortag', u'blame', u'loss']
[u'geologist', u'orang', u'asbesto', u'belt']
[u'ghost', u'scare', u'malawi', u'presid', u'palac']
[u'gold', u'coast', u'design', u'receiv', u'wool', u'fashion', u'award']
[u'govt', u'forese', u'econom', u'growth', u'threat']
[u'govt', u'push', u'state', u'rework', u'super', u'choic', u'law']
[u'govt', u'reject', u'avoid', u'claim']
[u'govt', u'report', u'recommend', u'downsiz', u'orchestra']
[u'govt', u'wake', u'petrol', u'sniff', u'find']
[u'govt', u'china', u'free', u'trade', u'talk']
[u'govt', u'urg', u'focus', u'miner', u'infrastructur']
[u'govt', u'urg', u'help', u'cost', u'remot', u'flight']
[u'govt', u'urg', u'look', u'reform', u'increas']
[u'great', u'southern', u'minist', u'face', u'steep', u'learn', u'curv']
[u'group', u'seek', u'ballarat', u'disabl', u'access', u'boost']
[u'hackett', u'cruis', u'qualifi']
[u'harrington', u'win', u'florida', u'play']
[u'hawk', u'coach', u'reflect', u'loss', u'king']
[u'health', u'group', u'look', u'good', u'govern']
[u'heenan', u'out', u'match']
[u'heenan', u'face', u'super', u'judiciari']
[u'hewitt', u'outlast', u'ginepri', u'california']
[u'hewitt', u'begin', u'indian', u'well', u'campaign']
[u'hill', u'charg', u'temper', u'comeback']
[u'himalaya', u'melt', u'glacier', u'threaten', u'water', u'crisi']
[u'hughenden', u'kwon', u'champ', u'win', u'award']
[u'direct', u'boast', u'profit', u'jump']
[u'ingrid', u'head']
[u'ingrid', u'lash', u'tiwi', u'island']
[u'ingrid', u'track', u'away', u'darwin']
[u'inmat', u'die', u'lithgow', u'jail']
[u'jetstar', u'hervey', u'flight', u'announc', u'immin']
[u'jone', u'beat', u'hanson', u'breast', u'stroke', u'final']
[u'joyc', u'reflect', u'disappoint', u'perform']
[u'kempsey', u'mayor', u'tight', u'lip', u'road', u'seal']
[u'kennedi', u'cancel', u'adam', u'meet']
[u'labor', u'duck', u'lover', u'chase', u'bird', u'interst']
[u'labour', u'mark', u'warn']
[u'larkham', u'sidelin', u'follow', u'cancer', u'scare']
[u'latest', u'spin', u'see', u'warn', u'england']
[u'lebanon', u'opposit', u'ralli', u'draw', u'hundr']
[u'lenton', u'schipper', u'dead', u'heat']
[u'linesman', u'error', u'let', u'juve', u'hook']
[u'local', u'govt', u'seek', u'tourism', u'fund', u'revenu']
[u'local', u'walk', u'rais', u'fund', u'chariti']
[u'face', u'court', u'ricketi', u'vehicl']
[u'man', u'hand', u'near', u'northbridg', u'brawl']
[u'want', u'nightclub', u'fire']
[u'mayor', u'pleas', u'black', u'spot', u'fund']
[u'mileston', u'match', u'say', u'bucknor']
[u'millionair', u'push', u'incom', u'cut']
[u'miner', u'ralli', u'xstrata', u'lodg', u'appeal']
[u'train', u'scheme', u'begin']
[u'minist', u'push', u'road', u'summit', u'promis']
[u'misconduct', u'hear', u'ministeri', u'staffer']
[u'arrest', u'expect', u'soccer', u'riot']
[u'polic', u'join', u'search', u'miss', u'tourist']
[u'mother', u'road', u'crash', u'daughter', u'hurt']
[u'hint', u'resign']
[u'murchison', u'prove', u'popular', u'radio', u'astronomi']
[u'museum', u'wwii', u'plane', u'wreck']
[u'network', u'snare', u'actor', u'bollywood', u'sting']
[u'bishop', u'see', u'peopl', u'person']
[u'newcastl', u'blackburn', u'semi']
[u'evid', u'highlight', u'polic', u'corrupt']
[u'evid', u'gallipoli', u'roadwork', u'bungl', u'downer']
[u'report', u'damag', u'earthquak', u'hit']
[u'patient', u'blame', u'wait', u'list']
[u'opal', u'spark', u'mine', u'frenzi']
[u'opposit', u'dismiss', u'legal', u'advic', u'clear', u'beatti']
[u'overnight', u'burn', u'metal', u'yard']
[u'pakistan', u'high', u'ahead', u'second', u'test']
[u'palm', u'island', u'dysfunct', u'lack', u'leadership']
[u'parent', u'angri', u'bouncer', u'jail', u'sentenc', u'longer']
[u'parti', u'divid', u'timet', u'abolish', u'atsic']
[u'peter', u'take', u'captain', u'sequel']
[u'wagga', u'report', u'month']
[u'planner', u'leap', u'frog', u'dome']
[u'deflect', u'labor', u'jib', u'turnbul']
[u'begin', u'talk', u'china', u'free', u'trade']
[u'polic', u'begin', u'review', u'macquari', u'field', u'riot']
[u'polic', u'bust', u'hydropon', u'cannabi', u'syndic']
[u'polic', u'investig', u'woman', u'dead']
[u'polic', u'prais', u'south', u'east', u'driver', u'drink', u'drive']
[u'polic', u'probe', u'motorbik', u'fatal']
[u'polic', u'racial', u'taunt', u'spark', u'northbridg', u'brawl']
[u'polic', u'seek', u'fatal', u'accid', u'wit']
[u'polic', u'tight', u'sieg', u'continu']
[u'polic', u'studi', u'fatal', u'crash']
[u'pope', u'leav', u'hospit', u'stay']
[u'port', u'announc']
[u'post', u'mortem', u'find', u'toddler', u'die', u'heat', u'stress']
[u'princ', u'zondeki', u'tour', u'west', u'indi']
[u'syrian', u'demonstr', u'denounc', u'resolut']
[u'public', u'reject', u'harbour', u'pollut', u'claim']
[u'health', u'accus', u'light', u'medico']
[u'ranger', u'step', u'titl', u'pressur']
[u'rann', u'govern', u'deni', u'ignor', u'petrol', u'sniff']
[u'rebellion', u'secur', u'right', u'sayyaf', u'prison']
[u'report', u'back', u'cape', u'york', u'sustain', u'develop']
[u'report', u'find', u'agricultur', u'support', u'million', u'job']
[u'report', u'highlight', u'grow', u'dementia', u'case']
[u'resid', u'speak', u'rocki', u'violenc']
[u'resid', u'recognis', u'sandon', u'picket', u'anniversari']
[u'resourc', u'stock', u'prop', u'market']
[u'review', u'trigger', u'fear']
[u'staff', u'report', u'moral', u'orang']
[u'thank', u'region', u'communiti', u'airport']
[u'rice', u'say', u'ambit', u'presid']
[u'rider', u'night', u'forest']
[u'roger', u'mend', u'action']
[u'rugbi', u'obrien', u'blow', u'time', u'career', u'report']
[u'govt', u'deni', u'elect', u'surgeri', u'wait', u'list', u'claim']
[u'labor', u'spark', u'uranium', u'debat']
[u'opposit', u'blame', u'blackout', u'poor']
[u'industri', u'group', u'want', u'escort', u'servic', u'legalis']
[u'sieg', u'situat', u'control', u'polic']
[u'finalist', u'toad', u'trap', u'competit']
[u'skeleton', u'year', u'geneva']
[u'soccer', u'fan', u'arrest', u'fight', u'match']
[u'soldier', u'aim', u'gun', u'student', u'claim']
[u'south', u'africa', u'cull', u'eleph']
[u'state', u'orchestra', u'kemp']
[u'submiss', u'highlight', u'power', u'station', u'opposit']
[u'lover', u'ignor', u'skin', u'cancer', u'risk']
[u'survey', u'show', u'ratepay', u'pleas', u'council']
[u'talk', u'legal', u'action', u'blackout']
[u'govt', u'welcom', u'georg', u'river', u'test', u'result']
[u'teenag', u'sexual', u'assault', u'high', u'school']
[u'thousand', u'celebr', u'moomba', u'parad']
[u'thousand', u'enjoy', u'moomba', u'golden', u'anniversari']
[u'treat', u'drug', u'overdos', u'rave', u'parti']
[u'titl', u'dream', u'slip', u'away', u'real']
[u'tiwi', u'island', u'ingrid']
[u'tiwi', u'island', u'stock', u'ingrid', u'rampag']
[u'tough', u'child', u'porn', u'law', u'tasmania']
[u'tourism', u'industri', u'await', u'decis', u'spirit', u'iii']
[u'tulli', u'soccer', u'player', u'win', u'junior', u'sport', u'star', u'award']
[u'turnbal', u'call', u'reform']
[u'turnbul', u'call', u'reform']
[u'support', u'baggag', u'handler', u'action']
[u'chief', u'pleas', u'middl', u'east', u'peac', u'progress']
[u'union', u'face', u'lawsuit', u'worsley', u'industri', u'disput']
[u'union', u'fear', u'shortag', u'push']
[u'union', u'strike', u'deal', u'hospit', u'construct', u'work']
[u'union', u'threaten', u'shut', u'coal', u'mine', u'industri']
[u'union', u'worri', u'clarenc', u'valley', u'polic', u'number']
[u'press', u'ahead', u'talk', u'iran', u'nuclear']
[u'question', u'farm', u'water', u'meter', u'plan']
[u'victorian', u'dementia', u'case', u'forecast', u'rise']
[u'victoria', u'polic', u'admit', u'hodson', u'mistak']
[u'wale', u'close', u'nation', u'grand', u'slam']
[u'water', u'plan', u'hold', u'govern', u'bicker']
[u'warn', u'human', u'bird', u'mutat']
[u'wide', u'hospit', u'dispens', u'drug', u'twice']
[u'wilkinson', u'comeback', u'end', u'injuri']
[u'willi', u'die', u'categori', u'cyclon']
[u'women', u'cricket', u'clean', u'kiwi']
[u'xstrata', u'defend', u'gretley', u'appeal']
[u'yacht', u'capsiz', u'link', u'keel']
[u'zimbabw', u'crash', u'defeat']
[u'kill', u'kenya', u'militia', u'attack']
[u'accus', u'plead', u'guilti', u'chariti', u'camp', u'assault']
[u'actu', u'open', u'skill', u'migrant', u'plan']
[u'african', u'leader', u'ghost', u'fear', u'draw', u'mix', u'respons']
[u'alp', u'action', u'branch', u'stack', u'adequ', u'brack']
[u'anderson', u'angri', u'labor', u'bribe', u'question']
[u'play', u'derail']
[u'atsic', u'strong', u'clark', u'say']
[u'australian', u'wharfi', u'filipino', u'strike']
[u'aust', u'shoot', u'free', u'trade']
[u'avalon', u'prepar']
[u'baghdad', u'bind', u'troop', u'train', u'gun', u'motorist']
[u'beatti', u'back', u'rugbi', u'club', u'sponsorship']
[u'beazley', u'hail', u'labor', u'poll', u'surg']
[u'beckham', u'launch', u'footbal', u'academi']
[u'pilbara', u'rail', u'access']
[u'brain', u'bird', u'cope', u'better']
[u'bird', u'strike', u'problem', u'wors', u'rockhampton']
[u'birney', u'outlin', u'goldfield', u'plan']
[u'blue', u'face', u'bull']
[u'board', u'ahead', u'foreign', u'worker', u'fruit']
[u'bomb', u'tasmanian', u'sieg', u'site']
[u'bronco', u'win', u'formula', u'warrior', u'clash']
[u'driver', u'strike', u'action']
[u'bush', u'name', u'promot', u'envoy']
[u'cancer', u'drug', u'hop', u'lift', u'market']
[u'carter', u'holt', u'harvey', u'lose', u'worker']
[u'chamber', u'back', u'call', u'infrastructur', u'boost']
[u'chelsea', u'condemn', u'frisk', u'death', u'threat']
[u'child', u'porn', u'collector', u'spend', u'month', u'jail']
[u'child', u'welfar', u'group', u'welcom', u'tougher', u'porn', u'law']
[u'church', u'enter', u'parliamentari']
[u'coff', u'polic', u'meet', u'consid', u'industri', u'unrest']
[u'colour', u'debat', u'longer', u'delay', u'childcar', u'centr']
[u'communiti', u'foundat', u'look', u'rais']
[u'communiti', u'group', u'sway', u'offer']
[u'council', u'ask', u'crematorium', u'matter', u'court']
[u'council', u'highlight', u'poor', u'road']
[u'council', u'promis', u'beach', u'access', u'redevelop']
[u'council', u'set', u'sight', u'airport', u'deadlin']
[u'council', u'vote', u'queenstown', u'hospit']
[u'council', u'urg', u'rethink', u'entertain', u'centr', u'site']
[u'court', u'rule', u'californian', u'marriag']
[u'crash', u'pilot', u'lose', u'bear', u'report']
[u'crawford', u'name', u'nbls', u'improv', u'player']
[u'crow', u'send', u'sanfl', u'game', u'time']
[u'cyclon', u'repair']
[u'darbi', u'fall', u'resid', u'stick', u'tank', u'water']
[u'dentist', u'combat', u'anti', u'fluorid', u'campaign']
[u'develop', u'residenti', u'land', u'concern']
[u'develop', u'keen', u'defenc', u'land']
[u'doctor', u'nurs', u'number', u'spotlight']
[u'doctor', u'prioritis', u'vaccin', u'request', u'amid']
[u'doctor', u'work', u'ethiopia', u'honour']
[u'breeder', u'convict', u'anim', u'cruelti']
[u'drought', u'increas', u'wasp', u'sting', u'risk']
[u'drought', u'tighten', u'grip']
[u'drought', u'wool', u'woe', u'toll', u'region']
[u'drug', u'dealer', u'face', u'jail', u'appeal', u'fail']
[u'dugong', u'turtl', u'harvest', u'worri', u'rspca']
[u'elder', u'coupl', u'lose', u'drug', u'sentenc', u'appeal']
[u'electranet', u'dark', u'blackout', u'caus']
[u'employ', u'prospect', u'continu', u'rise', u'survey']
[u'environment', u'park', u'expand']
[u'exercis', u'diet', u'longev', u'studi']
[u'ironwoman', u'champ', u'oppos', u'lifesav', u'titl']
[u'ironwoman', u'champ', u'slam', u'perth', u'plan']
[u'fake', u'diploma', u'inquiri', u'hear', u'cours', u'syllabus']
[u'father', u'face', u'court', u'girl', u'remain', u'hospit']
[u'filipino', u'forc', u'storm', u'prison', u'revolt']
[u'charg', u'cannabi', u'haul']
[u'foreign', u'worker', u'plan', u'caus', u'hospit', u'wage']
[u'council', u'want', u'probe', u'action']
[u'fund', u'recommend', u'music', u'orchestra', u'director']
[u'global', u'hawk', u'adelaid']
[u'gold', u'oper', u'beat', u'futur']
[u'govt', u'ask', u'help', u'maintain', u'region', u'access']
[u'govt', u'invest', u'specialist', u'train', u'scheme']
[u'govt', u'rule', u'minist', u'north', u'coast']
[u'govt', u'maintain', u'size', u'orchestra']
[u'govt', u'urg', u'listen', u'lake', u'macquari']
[u'grazier', u'rais', u'cattl', u'duf', u'awar']
[u'green', u'golf']
[u'green', u'want', u'titl', u'shoot']
[u'hackett', u'win', u'titl']
[u'har', u'race', u'club', u'oppos', u'meet']
[u'harradin', u'recuper', u'home']
[u'henman', u'davenport', u'advanc', u'windi', u'california']
[u'henman', u'roddick', u'lead', u'indian', u'well']
[u'hill', u'confid', u'fighter', u'cost']
[u'hopoat', u'apologis', u'ball', u'remark']
[u'hospit', u'treat', u'expat', u'cancer', u'patient', u'free']
[u'hoteli', u'forese', u'conflict', u'problem', u'gambl']
[u'howard', u'dismiss', u'meaningless', u'poll']
[u'howard', u'warn', u'liber', u'heartburn']
[u'immigr', u'blitz', u'see', u'pair', u'face', u'deport']
[u'independ', u'seek', u'compens', u'super', u'chang']
[u'indigen', u'wellb', u'centr', u'plan']
[u'ingrid', u'intensifi', u'threaten', u'north']
[u'iron', u'coal', u'price', u'inject', u'billion', u'govt']
[u'israel', u'hand', u'jericho', u'report']
[u'sector', u'propos', u'famili', u'friend', u'work']
[u'sector', u'welcom', u'work', u'scheme']
[u'japanes', u'island', u'hold', u'secret', u'long', u'life']
[u'jihad', u'jack', u'tear', u'bail', u'uphold']
[u'johnson', u'lead', u'tiger']
[u'justic', u'group', u'move', u'unseat', u'palm', u'island', u'council']
[u'kelli', u'join', u'swan', u'board']
[u'kimmorley', u'cop', u'plea', u'nutley', u'face', u'judiciari']
[u'klim', u'lead', u'heat']
[u'knight', u'sign', u'smith']
[u'kosovan', u'famili', u'plead', u'vanston', u'intervent']
[u'labor', u'defend', u'riverwalk', u'despit', u'cost', u'claim']
[u'polic', u'chief', u'prais', u'australian', u'approach']
[u'larkham', u'sidelin', u'follow', u'cancer', u'scare']
[u'lawyer', u'confront', u'jackson', u'accus', u'school']
[u'liber', u'consid', u'esper', u'health', u'role']
[u'lion', u'face', u'season', u'hadley']
[u'local', u'govt', u'chief', u'seek', u'merger', u'feedback']
[u'market', u'dip', u'resourc', u'stock']
[u'martin', u'tour', u'croker', u'island', u'devast']
[u'mcewen', u'lose', u'sprint', u'king', u'petacchi']
[u'mental', u'detain', u'doubl', u'murder']
[u'milit', u'leader', u'kill', u'prison', u'assault']
[u'propon', u'announc', u'fundrais', u'plan']
[u'minist', u'ask', u'meet', u'highway', u'user']
[u'minist', u'call', u'dept', u'account', u'prison', u'escap']
[u'ban', u'implement', u'river', u'level', u'drop']
[u'cut', u'possiblepm']
[u'lose', u'licenc', u'drink', u'drive']
[u'mussolini', u'granddaught', u'begin', u'italian', u'hunger']
[u'nation', u'divid', u'telstra', u'sale']
[u'nation', u'search', u'escape']
[u'nation', u'say', u'har', u'odd', u'legisl']
[u'nazi', u'fell', u'nuke', u'historian', u'claim']
[u'backer', u'reinvigor', u'fast', u'rail', u'propos']
[u'newcastl', u'play', u'wilkinson', u'injuri']
[u'judg', u'offer', u'encourag', u'women']
[u'possibl', u'jubile', u'oval']
[u'norfolk', u'sieg', u'end']
[u'chang', u'lifeguard', u'hour']
[u'privat', u'driver', u'strike']
[u'babi', u'french', u'centr', u'cite', u'head', u'butt']
[u'oper', u'say', u'major', u'threat', u'fish']
[u'opposit', u'call', u'earli', u'return', u'vline', u'servic']
[u'orang', u'show', u'sign', u'vandal']
[u'orchestra', u'envisag', u'school', u'program']
[u'osullivan', u'confid', u'irish', u'claim', u'tripl', u'crown']
[u'oven', u'deal', u'heat', u'plan']
[u'owner', u'crew', u'break', u'ship', u'strike']
[u'pakistan', u'lade', u'trail', u'go', u'cold']
[u'palm', u'reject', u'leadership', u'critic']
[u'pentagon', u'data', u'iraq', u'forc', u'unreli']
[u'pie', u'lose', u'fraser', u'knee', u'injuri']
[u'pie', u'lose', u'fraser', u'knee', u'injuri']
[u'leav', u'door', u'open', u'cut']
[u'wont', u'specul', u'respons', u'taiwan', u'conflict']
[u'poke', u'land', u'gold', u'coast', u'mayor', u'court']
[u'polic', u'awar', u'sack', u'offic', u'see', u'crime', u'boss']
[u'polic', u'condemn', u'attack', u'morgan']
[u'polic', u'continu', u'crash', u'probe']
[u'polic', u'fear', u'miss']
[u'polic', u'hope', u'reward', u'help', u'catch', u'famili', u'killer']
[u'polic', u'link', u'fatal', u'robberi', u'hold']
[u'polic', u'offer', u'underworld', u'hit', u'cash', u'hodson']
[u'polic', u'probe', u'farm', u'death']
[u'polic', u'probe', u'shoot', u'firebomb', u'link', u'sydney']
[u'polic', u'probe', u'soccer', u'link', u'violenc']
[u'polic', u'question', u'wit', u'parti', u'death']
[u'polic', u'union', u'fear', u'riot', u'inquiri', u'witch', u'hunt']
[u'push', u'continu', u'bushfir', u'inquest', u'coron']
[u'queen', u'send', u'commonwealth', u'baton']
[u'race', u'communiti', u'farewel', u'wangaratta', u'jockey']
[u'rail', u'expans', u'connect', u'reedi', u'creek']
[u'rain', u'help', u'eas', u'drought', u'condit']
[u'rat', u'warn', u'push', u'home', u'lend']
[u'remot', u'school', u'teacher', u'strike']
[u'resid', u'await', u'asbesto', u'test', u'result']
[u'return', u'aborigin', u'tradit', u'lifestyl', u'egan']
[u'chief', u'play', u'talk']
[u'roadsid', u'bomb', u'target', u'kosovo', u'presid']
[u'russia', u'pay', u'bounti', u'maskhadov']
[u'govt', u'tell', u'land', u'tape']
[u'sapphir', u'princess', u'add', u'sparkl', u'darwin', u'economi']
[u'satan', u'tell', u'bordertown', u'bank']
[u'savag', u'quit', u'wale', u'toshack']
[u'scientist', u'identifi', u'green', u'tea', u'cancer', u'fighter']
[u'scoutmast', u'paedophilia', u'sentenc', u'reduc']
[u'seafood', u'industri', u'lament', u'late', u'reef', u'chang']
[u'secur', u'forc', u'arrest', u'close', u'saddam']
[u'senior', u'recognis', u'contribut', u'communiti']
[u'shire', u'presid', u'stand', u'council']
[u'sinn', u'fein', u'warn', u'mccartney', u'sister']
[u'sister', u'call', u'releas', u'ivori', u'coast']
[u'updat', u'boost', u'bus', u'appeal']
[u'snitzel', u'draw', u'bad', u'saturday', u'slipper']
[u'south', u'australian', u'sell', u'label']
[u'storm', u'blame', u'late', u'vline', u'train']
[u'stosur', u'bow', u'indian', u'well']
[u'sydney', u'danc', u'compani', u'fund', u'talk']
[u'sydney', u'host', u'world', u'motor', u'race', u'event']
[u'tasmanian', u'lower', u'hous', u'approv', u'land', u'return']
[u'teacher', u'criticis', u'countri', u'accommod', u'servic']
[u'thomass', u'support', u'meet', u'melbourn']
[u'thorp', u'swim']
[u'toowoomba', u'face', u'vomit', u'diarrhoea']
[u'tourism', u'benefit', u'ensur', u'spirit', u'iii', u'futur']
[u'truck', u'industri', u'ask', u'govt', u'relax', u'fuel', u'excis']
[u'tuna', u'tycoon', u'hop', u'howard', u'dinner']
[u'turban', u'eden', u'garden', u'return']
[u'drink', u'doctor', u'away', u'studi']
[u'pretend', u'join', u'rock', u'hall', u'fame']
[u'estim', u'darfur', u'death', u'soar']
[u'union', u'secur', u'payment', u'walter', u'contractor']
[u'put', u'pressur', u'sinn', u'fein']
[u'student', u'accus', u'child']
[u'vail', u'tip', u'trade', u'deal', u'unit', u'arab', u'emir']
[u'develop', u'wind', u'farm', u'polici']
[u'viergev', u'extend', u'bike', u'challeng', u'lead']
[u'communiti', u'evacu', u'ingrid', u'near']
[u'alert', u'ingrid', u'batter', u'coast']
[u'waratah', u'roger', u'april']
[u'water', u'suppli', u'drop']
[u'watson', u'work', u'overtim', u'prepar', u'gabba', u'final']
[u'wild', u'resourc', u'boost', u'urban', u'aborigin', u'live']
[u'william', u'death', u'threat', u'offhand', u'comment']
[u'william', u'mix', u'court']
[u'william', u'urg', u'scot', u'lift', u'time']
[u'wine', u'grape', u'grower', u'ask', u'consid', u'harvest']
[u'work', u'death', u'rais', u'bounti', u'hunt', u'fear']
[u'worker', u'urg', u'oppos', u'chang']
[u'wound', u'red', u'ring', u'chang']
[u'writer', u'apologis', u'secret', u'bush', u'record']
[u'trade']
[u'expans', u'assess', u'miss']
[u'tendulkar', u'dravid', u'boost', u'india']
[u'contract', u'boost', u'memori', u'space']
[u'kill', u'russian', u'plane', u'crash']
[u'defi', u'abolish', u'stamp', u'duti']
[u'action', u'group', u'fight', u'saleyard', u'plan']
[u'adriano', u'trick', u'end', u'porto', u'reign']
[u'accus', u'assist', u'corbi', u'lawyer']
[u'move', u'extinguish', u'smoke']
[u'amend', u'land', u'handback', u'face', u'final', u'hurdl']
[u'anti', u'duck', u'shoot', u'campaign', u'claim', u'grow']
[u'apprentic', u'jockey', u'succumb', u'injuri']
[u'asbesto', u'specialist', u'secur', u'cyclon', u'ravag']
[u'auditor', u'general', u'investig', u'line', u'board']
[u'auditor', u'urg', u'stash', u'cash', u'report', u'give']
[u'aust', u'expect', u'activ', u'pacif']
[u'aust', u'kuwait', u'sign', u'deal', u'live', u'anim', u'trade']
[u'australian', u'howard', u'replac', u'well', u'leicest']
[u'award', u'recognis', u'blogger']
[u'bank', u'sector', u'push', u'market', u'forward']
[u'barwon', u'stand']
[u'beatti', u'stand', u'firm', u'tugun', u'bypass', u'rout']
[u'beatti', u'want', u'bribe', u'tape', u'releas', u'unalt']
[u'bemax', u'record', u'profit']
[u'better', u'accommod', u'urg', u'lure', u'teacher']
[u'bevan', u'hop', u'name', u'player', u'year']
[u'blast', u'hit', u'newspap', u'offic', u'baghdad']
[u'boe', u'contract', u'creat', u'job']
[u'boost', u'willow', u'tree']
[u'brazil', u'launch', u'alcohol', u'power', u'plane']
[u'bucknor', u'crack', u'centuri']
[u'bundaberg', u'offer', u'support', u'maryborough', u'art']
[u'bush', u'call', u'hezbollah', u'arm']
[u'busi', u'chamber', u'urg', u'council', u'refocus']
[u'cancer', u'concern', u'prompt', u'pine', u'playground']
[u'capit', u'lose', u'maher', u'china']
[u'bomb', u'explod', u'baquba']
[u'cardin', u'decri', u'vinci', u'code', u'cheap', u'lie']
[u'carnarvon', u'grind', u'water', u'storag', u'get']
[u'ceo', u'look', u'bush', u'blueprint']
[u'chamber', u'reject', u'union', u'worker', u'claim']
[u'channel', u'push', u'broadcast', u'right']
[u'chelsea', u'clear', u'premier', u'leagu', u'point']
[u'chopper', u'crash', u'victim', u'famili', u'back', u'coordin']
[u'christian', u'democrat', u'support', u'crucial', u'macquari']
[u'chrome', u'put', u'chariti', u'pressur']
[u'church', u'say', u'pay', u'indonesian', u'militari']
[u'club', u'learn', u'smoke', u'ban']
[u'coast', u'rail', u'expans', u'cater', u'grow', u'demand']
[u'colleg', u'founder', u'admit', u'diploma', u'fraud']
[u'commonwealth', u'doubl', u'standard', u'nigerian']
[u'communiti', u'health', u'servic']
[u'corbel', u'escap', u'censur', u'hospit', u'manag']
[u'corbel', u'welcom', u'doctor', u'shortag', u'inquiri']
[u'council', u'confid', u'weed', u'control']
[u'council', u'quandari', u'factori', u'futur']
[u'councillor', u'contest', u'bathurst', u'mayoralti']
[u'councillor', u'seek', u'support', u'wind', u'farm']
[u'council', u'sign', u'nativ', u'titl', u'agreement']
[u'council', u'quiz', u'holiday', u'let']
[u'council', u'urg', u'boost', u'public', u'transport', u'fund']
[u'council', u'heliport', u'shut']
[u'council', u'win', u'build', u'permit', u'disput']
[u'court', u'rule', u'fuel', u'load', u'bushfir', u'inquiri']
[u'cowboy', u'look', u'quick', u'start', u'bulldog']
[u'critic', u'blast', u'voluntari', u'student', u'union']
[u'cyclon', u'ingrid', u'strike', u'kimberley']
[u'daili', u'chore', u'order', u'latest', u'mobil', u'robot']
[u'darwin', u'nurs', u'break', u'point', u'opposit']
[u'dementia', u'studi', u'trial', u'herbal', u'remedi']
[u'denial', u'answer', u'itali']
[u'diplomat', u'admit', u'fondl', u'women', u'train']
[u'dive', u'extend', u'knowledg', u'convict', u'jetti']
[u'doctor', u'group', u'back', u'matern', u'fund', u'boost']
[u'doctor', u'plan', u'everest', u'experi']
[u'downer', u'applaud', u'itali', u'commit', u'iraq']
[u'doyl', u'look', u'blood', u'liber', u'quit']
[u'driver', u'arrest', u'vietnam', u'train', u'derail']
[u'driver', u'urg', u'slow', u'hazard', u'burn']
[u'driver', u'warn', u'linger', u'alcohol', u'effect']
[u'drug', u'plant', u'corbi', u'lawyer']
[u'echidna', u'death', u'puzzl', u'rspca']
[u'econom', u'growth', u'tip', u'slow']
[u'effort', u'save', u'threaten', u'parrot', u'pay']
[u'egan', u'indigen', u'health', u'claim', u'embarrass', u'govt']
[u'embassi', u'bomb', u'suspect', u'trial', u'begin']
[u'england', u'rest', u'player', u'ahead', u'ash']
[u'exclud', u'orchestra', u'bean', u'count', u'player']
[u'motorway', u'review', u'opposit', u'support']
[u'fals', u'astron', u'trade', u'earn', u'fine']
[u'farmer', u'sick', u'mobil', u'phone', u'woe']
[u'feder', u'fund', u'wild', u'fight']
[u'aborigin', u'judg', u'die']
[u'turn', u'nurs', u'home', u'work']
[u'forens', u'centr', u'delay', u'drug', u'charg', u'drop']
[u'fund', u'shortfal', u'stop', u'greek', u'festiv']
[u'urg', u'quit', u'male', u'club']
[u'global', u'warm', u'agenda', u'environ', u'minist']
[u'goussi', u'stand', u'trial', u'underworld', u'figur']
[u'govt', u'call', u'jail']
[u'govt', u'crack', u'south', u'coast', u'rail', u'vandal']
[u'govt', u'introduc', u'legisl', u'outlaw', u'compulsori']
[u'govt', u'rule', u'bird', u'inquiri']
[u'govt', u'urg', u'boost', u'quilpi', u'shire', u'road', u'fund']
[u'grain', u'ship', u'strike', u'talk', u'progress']
[u'grey', u'clear', u'harrison', u'admit', u'racial']
[u'hackett', u'lead', u'miami', u'swim', u'histori']
[u'hackett', u'track', u'break', u'world', u'record', u'coach']
[u'hanson', u'urg', u'futur', u'olympian', u'plan']
[u'hewitt', u'overpow', u'llodra', u'reach', u'fourth', u'round']
[u'hohn', u'say', u'test', u'select', u'wont', u'fast', u'track']
[u'hoil', u'start', u'waratah']
[u'home', u'attack', u'upset', u'brother']
[u'hope', u'remain', u'bradman', u'birthplac', u'heritag']
[u'hors', u'rid', u'trail', u'plan', u'surpris']
[u'hostel', u'evacu']
[u'ibrahim', u'stand', u'trial', u'standov', u'man', u'murder']
[u'inflat', u'fear', u'stock', u'drop']
[u'ingrid', u'flatten', u'remot', u'resort']
[u'intern', u'educ', u'meet', u'hold']
[u'iraqi', u'parliament', u'meet', u'time']
[u'isra', u'troop', u'pull', u'jericho']
[u'israel', u'open', u'world', u'largest', u'holocaust', u'museum']
[u'ivori', u'coast', u'rebel', u'threat', u'kill']
[u'jacob', u'keen', u'opposit', u'health', u'spokesman']
[u'jockey', u'death', u'prompt', u'safeti', u'review']
[u'judg', u'sum', u'extraordinari', u'doubl', u'murder', u'case']
[u'kean', u'recal', u'irish', u'squad']
[u'korean', u'veteran', u'want', u'recognit']
[u'labor', u'committe', u'ask', u'investig', u'riot']
[u'labor', u'slam', u'chang', u'ideolog', u'go']
[u'landhold', u'reconsid', u'wind', u'turbin']
[u'land', u'sale', u'probe', u'put', u'spotlight', u'tweed', u'councillor']
[u'latest', u'canker', u'outbreak', u'prompt']
[u'coordin', u'wast', u'anti', u'petrol', u'sniff', u'fund']
[u'leas', u'delay', u'worri', u'ental', u'hous', u'volunt']
[u'liquor', u'licenc', u'toughen', u'despit', u'busi', u'concern']
[u'lloyd', u'inspect', u'cyclon', u'damag']
[u'mackay', u'swimmer', u'continu', u'win', u'way']
[u'maldiv', u'coral', u'reef', u'clean', u'health']
[u'arrest', u'alleg', u'cezann', u'theft']
[u'maryborough', u'council', u'revamp', u'airport']
[u'match', u'winner', u'gilchrist', u'continu', u'assault', u'record']
[u'mill', u'qualifi', u'fastest', u'freestyl', u'semi']
[u'minist', u'defend', u'pull', u'detaine', u'kid']
[u'minist', u'hear', u'local', u'busi', u'concern']
[u'minist', u'urg', u'councillor', u'resign']
[u'miss', u'trio', u'safe', u'cyclon', u'zone']
[u'cotton', u'plant', u'east', u'kimberley']
[u'mortlak', u'power', u'station', u'approv', u'fall', u'govt']
[u'motlop', u'name', u'broadbridg', u'replac']
[u'mourinho', u'step', u'uefa', u'feud']
[u'bash', u'outsid', u'elector', u'offic']
[u'welcom', u'indigen', u'fund', u'audit']
[u'multi', u'million', u'dollar', u'project', u'unveil', u'burni']
[u'mulvihil', u'name', u'perth', u'assist', u'coach']
[u'murder', u'victim', u'famili', u'accept', u'killer', u'sentenc']
[u'nelson', u'introduc', u'legisl', u'compulsori']
[u'rubbish', u'remov', u'plan', u'moot', u'fraser']
[u'northern', u'grampian', u'councillor', u'individu']
[u'north', u'korea', u'rule', u'nuclear', u'talk']
[u'flinder', u'take', u'blame', u'blackout']
[u'govt', u'urg', u'focus', u'cross', u'border']
[u'opec', u'boost', u'product']
[u'orchardist', u'fear', u'appl', u'contamin', u'council']
[u'outrag', u'school', u'raid', u'immigr', u'offici']
[u'parliament', u'seal', u'atsic', u'fate']
[u'patrick', u'extend', u'virgin', u'takeov']
[u'player', u'associ', u'reject', u'drug', u'code', u'propos']
[u'defend', u'manufactur', u'chines', u'worker', u'plan']
[u'polic', u'attack', u'tri', u'arrest']
[u'polic', u'chief', u'criticis', u'riot', u'respons']
[u'polic', u'investig', u'pregnant', u'woman', u'bash']
[u'policeman', u'accus', u'drug', u'traffic', u'face']
[u'polic', u'search', u'father', u'miss', u'babi']
[u'polic', u'thank', u'resid', u'sieg', u'patienc']
[u'post', u'mortem', u'margaret', u'river', u'doubl']
[u'prison', u'staff', u'inadequ', u'train', u'union']
[u'public', u'feedback', u'seek', u'marina', u'plan']
[u'public', u'broom', u'growth', u'blueprint']
[u'pulp', u'propon', u'market', u'deal']
[u'pwcs', u'beat', u'loader', u'chanc']
[u'polic', u'free', u'wrong', u'prison']
[u'question', u'remain', u'telstra', u'sale', u'plan']
[u'rabbitoh', u'confirm', u'homebush']
[u'rann', u'promis', u'tougher', u'paedophil', u'sentenc']
[u'reef', u'author', u'sink', u'pontoon', u'plan']
[u'respit', u'care', u'shortag', u'leav', u'famili', u'struggl']
[u'rivkin', u'associ', u'appeal', u'insid', u'trade']
[u'rockhampton', u'hous', u'consid', u'suspici']
[u'rock', u'thrower', u'attack', u'palm', u'polic']
[u'rooney', u'break', u'cwealth', u'record']
[u'ross', u'aim', u'stawel', u'honour']
[u'safin', u'indian', u'well', u'hop', u'dent']
[u'govt', u'rule', u'extra', u'orchestra', u'fund']
[u'sandown', u'rememb', u'race', u'fall', u'victim']
[u'sandown', u'rememb', u'race', u'fall', u'victim']
[u'season', u'worker', u'face', u'child', u'assist', u'woe']
[u'senat', u'delay', u'miss', u'seaman', u'report']
[u'seven', u'push', u'broadcast', u'right']
[u'shoalhaven', u'firm', u'score', u'militari', u'contract']
[u'sieg', u'accus', u'remand', u'custodi']
[u'speed', u'minist']
[u'stanhop', u'stand', u'commission', u'protocol']
[u'student', u'detent', u'prompt', u'challeng', u'immigr']
[u'student', u'ralli']
[u'sudan', u'demand', u'proof', u'darfur', u'death', u'toll']
[u'sunshin', u'coast', u'murder', u'victim', u'identifi']
[u'support', u'gunn', u'fight']
[u'taiwan', u'presid', u'repeat', u'protest']
[u'talk', u'secur', u'isra', u'armi', u'handov', u'jericho']
[u'student', u'look', u'dementia', u'epidem']
[u'teen', u'charg', u'rap', u'assault']
[u'teen', u'guilti', u'council', u'chamber', u'blaze']
[u'thredbo', u'stage', u'communiti', u'develop', u'confer']
[u'miss', u'ingrid', u'devast', u'kimberley']
[u'miss', u'cyclon', u'zone']
[u'fine', u'tune', u'financ', u'amid', u'fund', u'uncertainti']
[u'million', u'want', u'work', u'labor', u'claim']
[u'cut', u'tie', u'australian', u'policeman', u'sierra']
[u'underworld', u'murder', u'eyewit', u'charg']
[u'union', u'negoti', u'grain', u'ship', u'disput']
[u'sign', u'exchang', u'agreement', u'harmoni']
[u'unit', u'plan', u'face', u'resid', u'opposit']
[u'unnam', u'local', u'buy', u'mountain', u'valley', u'station']
[u'wrap', u'probe', u'hariri', u'assassin']
[u'bank', u'help', u'pinochet', u'hide', u'money']
[u'budget', u'unsustain', u'greenspan', u'say']
[u'vanston', u'investig', u'manufactur', u'chines']
[u'vitamin', u'harm', u'larg', u'dose', u'studi', u'find']
[u'wander', u'seal', u'die', u'captiv']
[u'warrant', u'issu', u'drug', u'dealer']
[u'watkin', u'challeng', u'visit', u'north', u'coast']
[u'wind', u'hamper', u'cyclon', u'relief', u'effort']
[u'wineri', u'staff', u'focus', u'vintag']
[u'woman', u'charg', u'melton', u'stab']
[u'women', u'like', u'marriag', u'studi', u'find']
[u'young', u'mother', u'die', u'north', u'west', u'crash']
[u'yugoslavia', u'crime', u'tribun', u'issu']
[u'poison', u'philippin']
[u'actor', u'robert', u'blake', u'guilti', u'wife', u'murder']
[u'player', u'competit', u'right']
[u'question', u'corbi', u'drug', u'plant', u'claim']
[u'say', u'investig', u'need', u'stash']
[u'airlin', u'urg', u'rethink', u'foreign', u'worker', u'polici']
[u'alcohol', u'restrict', u'predict', u'cape', u'caravan']
[u'amwu', u'vow', u'fight', u'chang']
[u'anderson', u'admit', u'discuss', u'windsor', u'meet']
[u'answer', u'seek', u'prison', u'sieg']
[u'atsic', u'demis', u'bring', u'sad']
[u'australia', u'look', u'pressur', u'black']
[u'australian', u'biki', u'gang', u'global']
[u'australian', u'make', u'mark', u'colleg']
[u'australian', u'lead', u'coalit', u'naval', u'forc']
[u'author', u'survey', u'cyclon', u'ingrid', u'impact']
[u'backyard', u'burn', u'off', u'coast', u'urban', u'area']
[u'ballarat', u'petrol', u'cartel', u'fin']
[u'barbaro', u'jail', u'drug', u'charg']
[u'barra', u'play', u'aussi', u'chanc', u'cycl', u'champ']
[u'bash', u'death', u'accus', u'face', u'charg']
[u'berlusconi', u'qualifi', u'iraq', u'troop', u'withdraw', u'stanc']
[u'billiton', u'reach', u'extens', u'deal']
[u'plan', u'bulong', u'nickel', u'plant']
[u'blackburn', u'frustrat', u'insipid', u'liverpool']
[u'breakthrough', u'reach', u'disabl', u'disput']
[u'brit', u'toast', u'mosaic', u'record']
[u'brogden', u'put', u'condit', u'riot', u'inquiri', u'appear']
[u'bulldog', u'william', u'keen', u'cowboy']
[u'explos', u'kill']
[u'bush', u'nomin', u'wolfowitz', u'lead', u'world', u'bank']
[u'butt', u'babi', u'hand', u'week']
[u'buyer', u'confirm', u'mine', u'giant', u'gold']
[u'cahil', u'name', u'oceania', u'best']
[u'autist', u'children', u'treat', u'home']
[u'cambodian', u'readi', u'home', u'cancer', u'surgeri']
[u'cannabi', u'cash', u'seiz', u'hous']
[u'carr', u'back', u'complaint', u'immigr']
[u'charg', u'lay', u'morgan', u'bash']
[u'chelsea', u'escal']
[u'cherri', u'grower', u'access', u'japanes', u'market']
[u'chopper', u'flight', u'propon', u'plan']
[u'circus', u'stunt', u'jakarta', u'patrol']
[u'citi', u'struggl', u'address', u'environment', u'issu']
[u'citi', u'entranc', u'roadwork', u'start']
[u'club', u'leav', u'salari', u'propos']
[u'confer', u'put', u'spotlight', u'social', u'growth']
[u'corbi', u'trial', u'adjourn', u'amid', u'evid', u'claim']
[u'coron', u'rule', u'drown', u'cyclon', u'traci']
[u'council', u'seek', u'disast', u'centr', u'fund']
[u'council', u'tell', u'reveal', u'saleyard', u'detail']
[u'council', u'vote', u'wind', u'farm', u'visibl']
[u'council', u'wont', u'respons', u'darwin', u'waterfront']
[u'court', u'battl', u'cost', u'millmerran', u'shire', u'ratepay']
[u'court', u'revers', u'child', u'support', u'damag', u'decis']
[u'bear', u'break']
[u'death', u'aborigin', u'judg', u'prompt', u'tribut']
[u'disput', u'expect', u'disrupt', u'footi', u'season']
[u'dog', u'sign', u'young', u'gun']
[u'doubl', u'murder', u'suspect', u'remand', u'custodi']
[u'time', u'spark', u'irrig', u'fear']
[u'easter', u'driver', u'fuel']
[u'ecofish', u'pleas', u'pontoon', u'plan', u'reject']
[u'england', u'player', u'auction', u'shirt', u'injur', u'prop']
[u'environment', u'rule', u'hinder', u'develop', u'alcoa']
[u'farina', u'fire', u'broadsid', u'liverpool']
[u'farmer', u'meet', u'prefer', u'meander', u'develop']
[u'farm', u'group', u'beat', u'kuwait', u'sheep', u'trade']
[u'farm', u'lose', u'worker', u'coal', u'industri', u'boom']
[u'fear', u'air', u'queenstown', u'hospit']
[u'fisheri', u'closer', u'agreement']
[u'fish', u'transport', u'trial', u'offer', u'wide', u'rang']
[u'flatley', u'sharp', u'captain', u'red']
[u'worker', u'award', u'near']
[u'control', u'plead', u'guilti', u'child']
[u'student', u'sue', u'govt', u'suspens']
[u'gervai', u'return', u'extra', u'star']
[u'attend', u'princ', u'charl', u'wed']
[u'govt', u'accus', u'shirk', u'indigen', u'educ', u'duti']
[u'govt', u'fund', u'seek', u'tram', u'work']
[u'govt', u'give', u'assur', u'convent', u'centr', u'wont']
[u'govt', u'overse', u'asbesto', u'remov', u'cyclon']
[u'govt', u'pressur', u'reveal', u'spirit', u'advic']
[u'govt', u'rule', u'chang', u'sack', u'corrupt']
[u'govt', u'seek', u'answer', u'lightfoot', u'iraq', u'claim']
[u'govt', u'tell', u'tackl', u'issu', u'bushfir', u'probe']
[u'grazier', u'win', u'rural', u'develop', u'award']
[u'green', u'light', u'give', u'hill', u'plain', u'develop']
[u'gulf', u'land', u'claim', u'mediat', u'start', u'soon']
[u'haddin', u'play', u'macgil', u'transfer', u'talk']
[u'haddin', u'rule', u'time']
[u'harrison', u'stand', u'stormer', u'clash']
[u'hewitt', u'advanc', u'indian', u'well', u'quarter']
[u'hop', u'airfar', u'canberra', u'drawcard']
[u'howard', u'defend', u'senat', u'lightfoot', u'claim']
[u'hugh', u'jackman', u'broadway', u'award']
[u'human', u'bone', u'footwear', u'seafloor']
[u'icpa', u'discuss', u'rural', u'school', u'staff', u'concern']
[u'imag', u'mar', u'fuel', u'specul', u'planetari', u'life']
[u'incorrect', u'axl', u'greas', u'blame', u'fire', u'plane']
[u'indonesia', u'pledg', u'tsunami', u'corrupt']
[u'investig', u'launch', u'servic', u'station']
[u'jackson', u'juror', u'show', u'porn', u'collect']
[u'joint', u'patrol', u'monitor', u'south', u'pacif', u'fish']
[u'joint', u'project', u'overse', u'tsunami', u'spend']
[u'judg', u'acquit', u'sikh', u'india', u'trial']
[u'kandahar', u'blast', u'kill']
[u'kilkivan', u'shire', u'move', u'greater', u'transpar']
[u'korean', u'veteran', u'wreath', u'memori']
[u'labor', u'fear', u'fresh', u'request', u'troop', u'itali', u'quit']
[u'lack', u'volunt', u'ambul', u'offic', u'prompt']
[u'land', u'hurt', u'north', u'coast', u'nation']
[u'larkham', u'clear', u'melanoma', u'complic']
[u'larri', u'anthoni', u'stir', u'conflict']
[u'lawyer', u'welcom', u'plan', u'forens', u'centr', u'backlog']
[u'lead', u'chines', u'dissid', u'releas']
[u'high', u'demand', u'english', u'counti']
[u'lender', u'urg', u'region', u'lenienc']
[u'lightfoot', u'mull', u'legal', u'action', u'cash', u'smuggl']
[u'lightfoot', u'satisfi', u'iraq', u'claim']
[u'lightfoot', u'cash', u'smuggl', u'denial', u'credibl']
[u'livestock', u'grip', u'western']
[u'local', u'iraqi', u'happi', u'parliament', u'meet']
[u'digit', u'scrutinis']
[u'macgil', u'lick', u'lip', u'prospect', u'gabba', u'strip']
[u'malawi', u'free', u'journalist', u'palac', u'ghost']
[u'appear', u'court', u'theft', u'charg']
[u'arrest', u'drug', u'bust']
[u'charg', u'school', u'stab']
[u'jail', u'home', u'invas', u'assault']
[u'mann', u'narrow', u'knowl', u'bathurst']
[u'court', u'coast', u'doubl', u'murder']
[u'mick', u'keelti', u'question', u'evid', u'releas']
[u'mill', u'upstag', u'favourit', u'final']
[u'miner', u'deni', u'corpor', u'aust', u'skill']
[u'minist', u'censur', u'question', u'time', u'comment']
[u'drug', u'steal', u'hospit']
[u'mother', u'power', u'compani', u'electrocut']
[u'director', u'look', u'child', u'carer']
[u'greater', u'hume', u'shire', u'mayor', u'call', u'uniti']
[u'websit', u'aim', u'boost', u'visitor', u'number']
[u'melbourn', u'hous', u'plan']
[u'place', u'home', u'away']
[u'appl', u'import', u'decis', u'flaw', u'report']
[u'obes', u'setback', u'life', u'expect', u'advanc']
[u'oecd', u'correct', u'report', u'costello']
[u'price', u'record', u'market', u'ignor', u'opec']
[u'organis', u'impress', u'adventur', u'race', u'cours']
[u'paedophil', u'priest', u'prison', u'sentenc', u'extend']
[u'palestinian', u'faction', u'extend', u'period', u'calm']
[u'parent', u'battl', u'school', u'closur']
[u'paul', u'wolfowitz', u'back', u'head', u'world', u'bank']
[u'petrol', u'price', u'hike', u'tip', u'surg']
[u'pine', u'manufactur', u'dismiss', u'cancer', u'warn']
[u'plane', u'crash', u'kill', u'russia']
[u'plan', u'union', u'chang', u'worri', u'student', u'group']
[u'plan', u'strategi', u'soon']
[u'seek', u'explan', u'lightfoot', u'iraq', u'trip']
[u'welcom', u'norwegian', u'leader']
[u'polic', u'attack', u'chase']
[u'polic', u'deal', u'save', u'drug', u'traffick', u'death']
[u'polic', u'investig', u'fail', u'bank', u'theft', u'plan']
[u'polic', u'investig', u'fieri', u'road', u'death']
[u'polic', u'look', u'palm', u'stone', u'attack']
[u'polic', u'outrag', u'swan', u'slaughter']
[u'polit', u'wrangl', u'emerg', u'macquari', u'field', u'probe']
[u'porn', u'sentenc', u'anger', u'communiti']
[u'port', u'disput', u'wind', u'accc', u'hand', u'costello']
[u'prais', u'effort', u'port', u'hedland', u'jobless']
[u'primus', u'lead', u'port', u'flag', u'defenc']
[u'privat', u'compani', u'pass', u'safeti', u'check']
[u'protest', u'rail', u'worker', u'demand', u'protect']
[u'public', u'airport', u'sale', u'plan']
[u'putin', u'pitch', u'athlet', u'power', u'russia', u'olymp', u'host']
[u'racial', u'slure', u'level', u'waratah']
[u'rann', u'tell', u'chang', u'law', u'quiet']
[u'record', u'high', u'price', u'stock']
[u'relief', u'fund', u'pledg', u'ingrid', u'damag', u'assess']
[u'renmark', u'council', u'cast', u'doubt', u'govt', u'transport']
[u'report', u'suggest', u'telstra', u'chang']
[u'rescu', u'chopper', u'rule', u'chang']
[u'research', u'obes', u'caus', u'prematur']
[u'review', u'find', u'biosecur', u'australia', u'rule', u'lack']
[u'review', u'find', u'case', u'banana', u'import']
[u'rival', u'reel', u'wild']
[u'road', u'spike', u'help', u'polic', u'high', u'speed', u'chase']
[u'rollercoast', u'leav', u'market']
[u'rspca', u'give', u'duck', u'clear']
[u'rspca', u'want', u'maximum', u'penalti', u'kitten', u'abus']
[u'russian', u'electr', u'boss', u'surviv', u'attack', u'unharm']
[u'transport', u'minist', u'resign']
[u'saturn', u'probe', u'find', u'atmospher', u'moon']
[u'school', u'ram', u'railway', u'overpass']
[u'schu', u'bounc', u'malaysia']
[u'scientist', u'fear', u'major', u'quak', u'strike']
[u'scientist', u'unravel', u'factor']
[u'see', u'problem', u'voluntari', u'student', u'union', u'fee']
[u'senat', u'committe', u'call', u'child', u'commission']
[u'senat', u'reveal', u'tot', u'iraq', u'mission']
[u'shearer', u'doubl', u'help', u'newcastl', u'crush', u'olympiako']
[u'soccer', u'defend', u'secur', u'method']
[u'sonni', u'keen', u'cowboy']
[u'spotlight', u'fall', u'powerlin', u'impact', u'artefact']
[u'stanhop', u'prepar', u'chang', u'coron']
[u'strong', u'sale', u'send', u'cole', u'myer', u'profit', u'higher']
[u'student', u'march', u'union', u'chang']
[u'student', u'union', u'plan', u'mean', u'servic']
[u'supermarket', u'serv', u'liquor', u'licenc', u'suspens']
[u'survey', u'consid', u'weighti', u'issu']
[u'swan', u'hill', u'council', u'support', u'fluorid', u'opposit']
[u'swank', u'contest', u'fruit', u'fine']
[u'syria', u'complet', u'pullout', u'phase']
[u'taxi', u'centr', u'worker', u'settl', u'unfair', u'dismiss']
[u'teen', u'accus', u'morgan', u'bash', u'refus', u'bail']
[u'theori', u'aris', u'higher', u'bombala', u'cancer', u'rate']
[u'think', u'tank', u'call', u'accc', u'review', u'telstra']
[u'kill', u'accid']
[u'tonga', u'poll', u'close']
[u'trucki', u'health', u'spotlight']
[u'tumour', u'buster', u'trial', u'fund', u'boost']
[u'tweed', u'council', u'probe', u'hear', u'mayor', u'deni', u'wrongdo']
[u'vehicl', u'rollov']
[u'ulyssess', u'club', u'upset', u'council', u'effort']
[u'chief', u'hail', u'open', u'iraqi', u'parliament']
[u'fear', u'loss', u'govt', u'student', u'union', u'plan']
[u'union', u'seek', u'probe', u'corbi', u'airport', u'drug', u'claim']
[u'uranium', u'inquiri', u'assess', u'export', u'prospect']
[u'armi', u'suspect', u'murder', u'detaine', u'death']
[u'leader', u'support', u'sister', u'victim']
[u'militari', u'deni', u'troop', u'kill', u'iraqi', u'general']
[u'senat', u'back', u'explor', u'alaskan']
[u'vampir', u'bat', u'nippi', u'runner', u'research']
[u'wolfowitz', u'world', u'bank', u'nomin', u'worri', u'oxfam']
[u'woman', u'stab', u'outsid', u'school']
[u'woodsid', u'deni', u'link', u'senat', u'iraq', u'trip']
[u'scheme', u'target', u'kalgoorli', u'alcohol', u'woe']
[u'journalist', u'quill', u'award']
[u'actor', u'startl', u'real', u'life', u'polic', u'raid']
[u'acupunctur', u'reliev', u'pelvic', u'pain']
[u'aftershock', u'caus', u'damag', u'aceh']
[u'accus', u'contempt', u'murder', u'court', u'report']
[u'alcan', u'near', u'decis', u'pipelin', u'tender']
[u'alleg', u'paedophil', u'summon', u'crime']
[u'allic', u'mill', u'take', u'freestyl', u'titl']
[u'anti', u'duck', u'shoot', u'group', u'plan', u'rescu']
[u'apathi', u'like', u'boost', u'inform', u'vote', u'werriwa']
[u'appl', u'grower', u'welcom', u'senat', u'report', u'import']
[u'energi', u'beat', u'search']
[u'attack', u'friend', u'end', u'jail', u'sentenc']
[u'attack', u'prompt', u'warn']
[u'auslink', u'progam', u'elect', u'slush', u'fund']
[u'aust', u'indonesia', u'develop', u'secur', u'treati']
[u'australand', u'drop', u'sydney', u'plan']
[u'australia', u'indonesia', u'close', u'make']
[u'baggaley', u'singl', u'surf', u'lifesav']
[u'baker', u'jail', u'caravan', u'park', u'shoot']
[u'expect', u'job']
[u'beatti', u'threaten', u'restrict', u'nightclub', u'licenc']
[u'benitez', u'seek', u'rebuild', u'bridg', u'kewel']
[u'blue', u'honour']
[u'board', u'decid', u'windida', u'station', u'leas']
[u'bolivian', u'presid', u'pledg', u'remain', u'offic']
[u'bowler', u'decid', u'inter', u'club', u'play']
[u'bridg', u'fall', u'leav', u'injuri']
[u'bronco', u'lose', u'civoniceva', u'carrol', u'warrior', u'clash']
[u'buchanan', u'confid', u'rain', u'wont', u'save', u'zealand']
[u'bulgaria', u'scale', u'iraq', u'presenc']
[u'driver', u'cast', u'doubt', u'rise', u'offer']
[u'bush', u'hold', u'talk', u'belfast', u'sister']
[u'busi', u'group', u'optimist', u'growth', u'despit', u'flat']
[u'strategi', u'region', u'doctor']
[u'calm', u'promis', u'swan', u'slaughter', u'prosecut']
[u'campaign', u'promot', u'speed', u'limit']
[u'chainsaw', u'wield', u'face', u'court']
[u'children', u'wild', u'jacko', u'ranch', u'housekeep']
[u'china', u'free', u'polit', u'prison', u'ahead', u'rice', u'visit']
[u'chlorin', u'leak', u'forc', u'barrack', u'evacu']
[u'defend', u'terror', u'suspect', u'transfer']
[u'ciobo', u'broadsid', u'beatti', u'cruis', u'termin', u'stanc']
[u'coach', u'confid', u'right', u'deal', u'wont', u'hurt']
[u'cobra', u'clear', u'swedish', u'apart', u'build']
[u'communiti', u'urg', u'work', u'author']
[u'communiti', u'group', u'move', u'closer', u'classroom', u'fund']
[u'compani', u'move', u'clinch', u'explor', u'deal']
[u'conservationist', u'relinquish', u'sanctuari', u'dream']
[u'convent', u'centr', u'delay', u'prove', u'cost']
[u'corbi', u'support', u'meet', u'polic', u'ruddock']
[u'coron', u'call', u'nation', u'domest', u'violenc']
[u'costello', u'back', u'wolfowitz', u'nomin']
[u'council', u'give', u'mildura', u'develop']
[u'council', u'saleyard', u'issu', u'draw', u'mix', u'respons']
[u'council', u'stay', u'prostitut', u'debat']
[u'council', u'retain', u'structur']
[u'council', u'workforc', u'continu', u'grow']
[u'court', u'find', u'guilti', u'child', u'rape']
[u'cowboy', u'rein', u'bulldog']
[u'cowboy', u'unfaz', u'bulldog', u'hype']
[u'croc', u'bungl', u'spark', u'swim', u'scare']
[u'cyclon', u'figur', u'forecast', u'stir']
[u'cyclon', u'ingrid', u'stir', u'wyndham', u'water']
[u'cypress', u'pine', u'replac', u'ban', u'product']
[u'darwin', u'guilti', u'drug', u'charg']
[u'abandon', u'wellington']
[u'decis', u'residenti', u'subdivis', u'hold']
[u'deep', u'yellow', u'moot', u'uranium']
[u'desalin', u'plant', u'ahead', u'despit', u'caution']
[u'discount', u'store', u'move', u'closer', u'realiti']
[u'disgrac', u'judg', u'fin', u'drink', u'drive']
[u'domest', u'violenc', u'concern', u'stop', u'bottl', u'shop']
[u'dorset', u'eye', u'forestri', u'school']
[u'doubl', u'murder', u'juri', u'retir']
[u'doubt', u'cast', u'nation']
[u'driver', u'warn', u'rise', u'region', u'fuel', u'price']
[u'duck', u'hunter', u'warn', u'safeti', u'risk']
[u'edmiston', u'upstag', u'hanson', u'breast', u'stroke', u'heat']
[u'emerg', u'talk', u'repriev']
[u'english', u'polic', u'blow', u'park', u'scooter']
[u'plan', u'lead', u'smelter', u'prosecut']
[u'epilept', u'driver', u'jail', u'crash', u'death']
[u'discus', u'champ', u'save', u'drown']
[u'exhibit', u'pay', u'tribut', u'day', u'go']
[u'judg', u'shaw', u'plead', u'guilti', u'drink', u'drive']
[u'theophan', u'face', u'conspiraci', u'charg']
[u'export', u'task', u'forc', u'investig', u'bottleneck']
[u'fear', u'violenc', u'forc', u'illawarra', u'footbal', u'clash']
[u'feral', u'anim', u'threaten', u'fairi', u'penguin']
[u'ferri', u'report', u'contradict', u'lennon', u'green']
[u'fingerl', u'boost', u'fish', u'stock', u'program']
[u'lead', u'polic', u'steal', u'atm']
[u'arrest', u'wild', u'brawl']
[u'hospit', u'chlorin', u'leak']
[u'fourth', u'liber', u'announc', u'retir']
[u'fund', u'shortfal', u'forc', u'frog', u'hospit', u'close']
[u'secur', u'breach', u'plagu', u'prison']
[u'governor', u'open', u'revamp', u'wellshot', u'hotel']
[u'govt', u'contact', u'russia', u'alleg', u'plane', u'hijack']
[u'govt', u'hit', u'union', u'build', u'industri', u'deal']
[u'govt', u'respons', u'report', u'slow', u'matern', u'group']
[u'govt', u'review', u'cityrail', u'offic', u'power']
[u'govt', u'warn', u'tree', u'clear', u'compo', u'backlash']
[u'green', u'group', u'seek', u'contamin', u'protocol']
[u'grey', u'say', u'clear', u'racist', u'slur', u'claim']
[u'grower', u'use', u'report', u'find', u'canker']
[u'tax', u'labor', u'say']
[u'gulf', u'river', u'yield', u'fish', u'speci']
[u'gyroscop', u'problem', u'space', u'station', u'threat', u'say']
[u'harrison', u'charg', u'misconduct', u'racial', u'abus']
[u'health', u'minist', u'defend', u'hospit', u'action']
[u'high', u'school', u'steer', u'cattl', u'competit']
[u'founder', u'await', u'sentenc', u'court']
[u'tech', u'equip', u'shark', u'boat']
[u'homeless', u'rise', u'australia', u'fund', u'fall']
[u'howard', u'criticis', u'lightfoot']
[u'hurley', u'name', u'nbls', u'coach']
[u'chang', u'mind', u'say', u'retir']
[u'independ', u'dismiss', u'telstra', u'report']
[u'indonesia', u'target', u'aust', u'travel', u'warn', u'visa']
[u'injuri', u'boro', u'fail', u'emul', u'newcastl']
[u'inquiri', u'tell', u'feral', u'anim', u'control', u'inhuman']
[u'iran', u'slam', u'unhcr', u'ignor', u'detaine', u'abus']
[u'iraq', u'hero', u'win', u'militari', u'honour']
[u'island', u'festiv', u'attract', u'worldwid']
[u'isra', u'arrest', u'fail', u'bank', u'theft', u'plot']
[u'jackson', u'win', u'restrain', u'order', u'stalker']
[u'jess', u'kelli', u'refus', u'bail']
[u'juri', u'find', u'stab', u'self', u'defenc']
[u'kelli', u'take', u'pole', u'adelaid']
[u'labor', u'faction', u'nomin', u'white', u'replac']
[u'lacklustr', u'close', u'stock']
[u'larkham', u'clear', u'play', u'cancer', u'scare']
[u'legal', u'teacher', u'strike', u'question']
[u'legal', u'woman', u'feed', u'tube', u'continu']
[u'lewi', u'clarifi', u'concern']
[u'lightfoot', u'didnt', u'know', u'cash', u'kurd']
[u'lightfoot', u'reject', u'money', u'claim']
[u'lightfoot', u'stand', u'iraq', u'statement']
[u'lightfoot', u'tight', u'lip', u'contradict']
[u'lismor', u'council', u'lose', u'club']
[u'local', u'govt', u'inspector', u'push', u'council', u'allianc']
[u'luca', u'call', u'apolog', u'spend', u'spree', u'claim']
[u'luxuri', u'hotel', u'accommod', u'increas', u'tourist']
[u'macfarlan', u'talk', u'uranium', u'boom', u'risk']
[u'appear', u'court', u'theft', u'charg']
[u'escap', u'jail', u'throw', u'rock', u'tram']
[u'martha', u'stewart', u'court', u'overturn', u'convict']
[u'mask', u'thiev', u'steal', u'easter', u'atm']
[u'mcgauran', u'back', u'telstra', u'report']
[u'media', u'resourc', u'stock', u'lead', u'market', u'ralli']
[u'melbourn', u'crash', u'leav', u'dead']
[u'miner', u'get', u'innov', u'grant']
[u'safeti', u'review', u'deliv', u'find']
[u'minist', u'face', u'tree', u'clear', u'critic']
[u'need', u'age', u'popul']
[u'echuca', u'bendigo', u'train', u'servic']
[u'head', u'rural', u'skill', u'train', u'probe']
[u'nation', u'databas', u'help', u'fight', u'child', u'abus']
[u'nativ', u'american', u'decri', u'alaska', u'explor', u'rule']
[u'nepal', u'head', u'humanitarian', u'crisi']
[u'laser', u'therapi', u'help', u'enlarg', u'prostat', u'suffer']
[u'sweeten', u'cane', u'grower']
[u'treatment', u'prostrat', u'diseas']
[u'nine', u'mcguir', u'slam', u'right', u'process']
[u'norfolk', u'murder', u'reward', u'extend']
[u'want', u'snappi', u'decis', u'croc', u'hunt']
[u'nurs', u'meet', u'campaign']
[u'mail', u'fruit', u'fine', u'rule', u'swank']
[u'high', u'predict', u'help', u'lift', u'cotton', u'price']
[u'older', u'wiser', u'motlop', u'aim', u'game']
[u'opposit', u'push', u'lightfoot', u'inquiri']
[u'opposit', u'turn', u'heat', u'bacon']
[u'parliament', u'go', u'bird']
[u'paul', u'samo', u'rest', u'brumbi']
[u'pedestrian', u'cycl', u'bridg', u'link', u'pathway']
[u'pilbara', u'artist', u'shine', u'sydney']
[u'plantagenet', u'stand', u'footi', u'club', u'stanc']
[u'player', u'associ', u'dismiss', u'club', u'rugbi', u'race']
[u'player', u'confid', u'secur', u'deal']
[u'player', u'confid', u'deal']
[u'polic', u'await', u'drug', u'drive', u'test', u'result']
[u'polic', u'consid', u'industri', u'unrest', u'death']
[u'polic', u'hunt', u'attack', u'man', u'bite']
[u'polic', u'politicis', u'mccartney', u'death', u'sinn', u'fein']
[u'polic', u'question', u'woman', u'girl', u'abduct']
[u'poppi', u'produc', u'number', u'wake', u'global', u'glut']
[u'popular', u'ball', u'scrap']
[u'premier', u'call', u'parent', u'respons']
[u'princ', u'harri', u'gaff', u'broaden', u'brit', u'wwii', u'knowledg']
[u'prison', u'escape', u'jail', u'extra', u'week']
[u'properti', u'owner', u'group', u'call', u'treasur']
[u'properti', u'violent', u'offenc', u'drop']
[u'proud', u'famili', u'farewel', u'jockey']
[u'push', u'timber', u'process', u'project']
[u'racial', u'slur', u'heap', u'pressur', u'super', u'leader']
[u'racism', u'threaten', u'rock', u'rugbi', u'foundat']
[u'rain', u'interrupt', u'class', u'cricket', u'final']
[u'rain', u'disrupt', u'class', u'cricket', u'final']
[u'rapper', u'guilti', u'conspiraci', u'perjuri']
[u'real', u'estat', u'squeez', u'comment', u'joke', u'quinlan']
[u'red', u'scalp', u'chief', u'zealand', u'rout']
[u'chang', u'resid', u'accus', u'expect']
[u'sieg', u'accus', u'label', u'model', u'inmat']
[u'sieg', u'prompt', u'prison', u'classif', u'review']
[u'skill', u'shortag', u'strong', u'dollar', u'manufactur']
[u'sleep', u'apnoea', u'rais', u'heart', u'attack', u'risk']
[u'solid', u'barrier', u'propos', u'stop', u'cane', u'toad', u'invas']
[u'solomon', u'rebel', u'keke', u'jail', u'life']
[u'south', u'coast', u'nurs', u'rise', u'call']
[u'statist', u'mark', u'decreas', u'unemploy']
[u'studi', u'lend', u'support', u'plan']
[u'sudan', u'slap', u'travel', u'restrict', u'diplomat']
[u'turf', u'club', u'beat', u'delorain', u'race']
[u'teacher', u'drug', u'alleg', u'shock', u'communiti']
[u'teen', u'question', u'southport', u'bash']
[u'tenant', u'push', u'crackdown', u'public', u'hous', u'lout']
[u'snub', u'sinn', u'fein', u'patrick']
[u'tree', u'plant', u'aim', u'save', u'threaten', u'possum']
[u'trundl', u'teacher', u'year']
[u'tsunami', u'meet', u'seek', u'plug', u'gap']
[u'tweed', u'mayor', u'face', u'sack', u'prospect']
[u'dismiss', u'staff', u'congo', u'abus', u'inquiri', u'continu']
[u'want', u'coach', u'head', u'coach', u'associ']
[u'water', u'treatment', u'plant', u'oper', u'delay']
[u'webb', u'shot', u'pace', u'arizona']
[u'whan', u'talk', u'polic', u'number']
[u'william', u'await', u'sentenc']
[u'windsor', u'hang', u'page', u'report']
[u'wine', u'industri', u'inquiri', u'consid', u'grape', u'price']
[u'winter', u'rain', u'tip', u'east', u'north', u'stay', u'warm']
[u'youth', u'game', u'give', u'bendigo', u'boost']
[u'zollo', u'white', u'posit']
[u'kill', u'pakistan', u'road', u'accid']
[u'miner', u'trap', u'explos']
[u'chopper']
[u'agassi', u'injuri', u'send', u'hewitt', u'semi']
[u'alonso', u'take', u'provision', u'pole', u'malaysia']
[u'ambros', u'take', u'race', u'adelaid']
[u'ancient', u'perfumeri', u'cyprus']
[u'athlet', u'coach', u'lose', u'job']
[u'aussi', u'trail', u'hill', u'lead']
[u'australian', u'accus', u'bomb', u'hoax', u'russian', u'flight']
[u'australia', u'lunch']
[u'brazilian', u'presid', u'seek', u'clemenc', u'drug']
[u'bridg', u'visa', u'leav', u'famili', u'limbo', u'migrat']
[u'bull', u'stamp', u'hurrican']
[u'bush', u'sharon', u'meet', u'texa']
[u'cahil', u'excit', u'merseysid', u'derbi']
[u'bomb', u'wound', u'beirut']
[u'charless', u'wed', u'bless', u'televis']
[u'china', u'criticis', u'interfer', u'taiwan']
[u'claim', u'seasprit', u'fleet', u'troubl']
[u'comatos', u'woman', u'feed', u'tube', u'remov']
[u'condoleezza', u'rice', u'arriv', u'seoul']
[u'council', u'want', u'uniform', u'pine', u'playground', u'plan']
[u'crusad', u'crush', u'blue']
[u'cultur', u'wast', u'cost', u'year']
[u'darwin', u'teen', u'guilti', u'worker', u'murder']
[u'deleg', u'refus', u'visa', u'stanc']
[u'disabl', u'group', u'embrac', u'taxi', u'servic', u'review']
[u'dutch', u'iraq', u'crime', u'case', u'open']
[u'emot', u'homecom', u'carey']
[u'russia', u'demand', u'syrian', u'pullout', u'lebanon']
[u'state', u'ward', u'need', u'support', u'network']
[u'feder', u'sharapova', u'reach', u'indian', u'well', u'semi']
[u'fli', u'kiwi', u'cours', u'world', u'seven']
[u'footbal', u'violenc', u'inquiri', u'seek', u'submiss']
[u'forens', u'scienc', u'upgrad', u'catch', u'crook']
[u'injur', u'smash']
[u'kill', u'kirkuk', u'bomb', u'blast']
[u'vow', u'action', u'log', u'climat', u'chang']
[u'geebung', u'investig']
[u'georg', u'sheep', u'come']
[u'greek', u'sprinter', u'clear', u'dope', u'charg']
[u'green', u'demand', u'ferri', u'submiss']
[u'green', u'urg', u'howard', u'discuss', u'democraci', u'china']
[u'health', u'union', u'link', u'privatis', u'dirti']
[u'hewitt', u'face', u'roddick', u'sharapova', u'thump']
[u'hill', u'deni', u'seasprit', u'fleet', u'troubl']
[u'historian', u'fear', u'record']
[u'hous', u'kill', u'children']
[u'iceland', u'grant', u'chess', u'champ', u'fischer', u'citizenship']
[u'iraqi', u'coalit', u'expect', u'week']
[u'israel', u'ban', u'gaza', u'settler', u'influx']
[u'japan', u'set', u'time', u'beef']
[u'juri', u'continu', u'deliber', u'doubl', u'murder']
[u'justic', u'risk', u'chang', u'evid', u'law']
[u'klim', u'break', u'butterfli', u'drought']
[u'kolkata', u'test', u'balanc']
[u'labor', u'claim', u'victori', u'werriwa', u'elect']
[u'labor', u'expect', u'retain', u'latham', u'seat']
[u'labor', u'want', u'lightfoot', u'probe']
[u'lebanon', u'presid', u'urg', u'talk']
[u'lebanon', u'pull', u'eurovis', u'isra']
[u'letterman', u'catch', u'kidnap', u'plot']
[u'liverpool', u'meet', u'juventus', u'champion', u'leagu']
[u'malaysia', u'anwar', u'call', u'corrupt', u'clamp']
[u'go', u'rampag', u'loader']
[u'kill', u'shark', u'attack']
[u'massa', u'put', u'sauber', u'malaysia']
[u'miner', u'council', u'seek', u'explor', u'incent']
[u'minist', u'attempt', u'fell', u'grazier', u'land', u'clear']
[u'minist', u'talk', u'result', u'prison', u'task', u'forc']
[u'mix', u'finish', u'stock']
[u'monti', u'python', u'shift', u'antic', u'stage']
[u'obes', u'link', u'diabet']
[u'suburb', u'construct', u'worker', u'demand']
[u'tradit', u'islam', u'servic', u'hold', u'despit']
[u'northern', u'farmer', u'easter', u'honour']
[u'resid', u'await', u'cyclon']
[u'teen', u'guilti', u'murder']
[u'number', u'child', u'worker', u'grow', u'eurpoean']
[u'price', u'hover', u'near', u'record', u'high']
[u'pakistan', u'success', u'test', u'long', u'rang', u'missil']
[u'parent', u'bulldoz', u'firm', u'gaza', u'death']
[u'parol', u'abscond', u'recaptur', u'interst']
[u'patrick', u'win', u'control', u'virgin', u'blue']
[u'polic', u'investig', u'suspici', u'death']
[u'polic', u'seek', u'extrem', u'violent', u'attack']
[u'polic', u'tight', u'lip', u'alleg', u'imag']
[u'princess', u'mari', u'wave', u'tasmania', u'goodby']
[u'prison', u'comput', u'secur', u'despit', u'inmat', u'access']
[u'protest', u'hunter', u'urg', u'play', u'safe']
[u'protest', u'ralli', u'brisban', u'tunnel']
[u'quiet', u'ogradi', u'prepar', u'milan', u'remo']
[u'raider', u'continu', u'knight', u'miseri']
[u'reform', u'group', u'call', u'justic', u'dept', u'scrap']
[u'rescu', u'worker', u'search', u'survivor']
[u'rice', u'seek', u'chines', u'support', u'resum', u'north', u'korea']
[u'safeti', u'bureau', u'await', u'jetstar', u'incid', u'report']
[u'safeti', u'justic', u'minist']
[u'scoresbi', u'letter', u'lie', u'lie']
[u'scot', u'fuel', u'hatr', u'england', u'coach']
[u'person', u'famili', u'alleg', u'game', u'discrimin']
[u'soldier', u'hospitalis', u'townsvill']
[u'soldier', u'hospit', u'infect']
[u'soldier', u'recoveri', u'diseas', u'expert', u'say']
[u'south', u'african', u'politician', u'fin', u'travel', u'rort']
[u'storm', u'blow', u'dragon']
[u'stratum', u'streak', u'slipper', u'victori']
[u'struggl', u'bull', u'slim', u'lead']
[u'sturt', u'street', u'school', u'fund', u'gross', u'extravag']
[u'tasmanian', u'kit', u'world', u'women']
[u'texa', u'cheerlead', u'tell', u'clean', u'act']
[u'children', u'kill']
[u'martyn', u'domin', u'kiwi', u'attack']
[u'track', u'station', u'hit']
[u'tradit', u'gift', u'seal', u'japanes', u'princesss', u'betroth']
[u'transport', u'campaign', u'seek', u'tran', u'tasman', u'equal']
[u'tsunami', u'appeal', u'near']
[u'union', u'welcom', u'rule']
[u'court', u'alli', u'retain', u'emption', u'strategi']
[u'foreign', u'polici', u'architect', u'kennan', u'die']
[u'feel', u'pinch', u'labour', u'shortag']
[u'wale', u'gear', u'grand', u'slam', u'parti']
[u'mart', u'settl', u'crimin', u'charg']
[u'waratah', u'extend', u'undef']
[u'warrior', u'stun', u'bronco']
[u'werriwa', u'elect', u'count', u'begin']
[u'werriwa', u'voter', u'head', u'poll']
[u'windi', u'recal', u'lara', u'test', u'duti']
[u'wolfowitz', u'hit', u'inaccur', u'caricatur']
[u'work', u'inquiri', u'want', u'indigen', u'success', u'stori']
[u'zimbabw', u'opposit', u'seek', u'food']
[u'afghan', u'flood', u'claim', u'live']
[u'afghan', u'parliamentari', u'elect', u'place']
[u'alonso', u'pole', u'malaysia', u'webber', u'fourth']
[u'alonso', u'win', u'malaysia', u'webber', u'crash']
[u'ambros', u'make', u'perfect', u'start', u'season']
[u'anderson', u'back', u'pacif', u'highway', u'toll']
[u'unveil', u'cheaper', u'brain', u'monitor']
[u'barca', u'surg', u'clear', u'spain']
[u'beatti', u'dismiss', u'lawyer', u'forens', u'evid']
[u'beazley', u'see', u'labor', u'comeback', u'werriwa']
[u'bellami', u'fire', u'bhoy']
[u'black', u'cap']
[u'blair', u'back', u'nake', u'chef', u'school', u'meal', u'menu']
[u'blue']
[u'blue', u'pull', u'nail', u'bite', u'victori']
[u'blue', u'trio', u'face', u'super', u'hear']
[u'bomb', u'hit', u'crowd', u'pakistan', u'shrine']
[u'kill', u'road', u'accid']
[u'broader', u'base', u'vital', u'say', u'turnbul']
[u'centenarian', u'number', u'multipli']
[u'china', u'blast', u'death', u'toll', u'rise']
[u'china', u'implant', u'chip', u'panda']
[u'chines', u'explos', u'toll', u'doubl']
[u'church', u'commemor', u'year', u'worship']
[u'clijster', u'take', u'indian', u'well', u'titl']
[u'vow', u'return', u'mandatori', u'sentenc']
[u'club', u'closur', u'forc', u'digger']
[u'comatos', u'woman', u'husband', u'slam', u'govt', u'intervent']
[u'communiti', u'shock', u'death']
[u'control', u'burn', u'put', u'cloud', u'melbourn']
[u'coron', u'investig', u'tragic', u'blaze']
[u'costello', u'attack', u'state', u'tax', u'smokescreen']
[u'council', u'call', u'public', u'meet', u'tunnel']
[u'court', u'place', u'tree', u'clear', u'challeng', u'seeney']
[u'crocker', u'charg', u'cooge', u'arrest']
[u'piero', u'give', u'juve', u'edg']
[u'distress', u'shark', u'attack', u'wit', u'head', u'shore']
[u'dravid', u'heroic', u'rais', u'indian', u'victori', u'hop']
[u'england', u'good', u'scotland']
[u'split', u'remain', u'real', u'danger', u'warn', u'stoddart']
[u'farmer', u'press', u'brake', u'light', u'rule']
[u'figur', u'reveal', u'hous', u'shortfal']
[u'death', u'accid', u'polic']
[u'flounder', u'black', u'cap', u'mountain', u'climb']
[u'famili', u'murder', u'suicid']
[u'franc', u'steamrol', u'itali']
[u'french', u'tourist', u'miss', u'late', u'night', u'swim']
[u'gilchrist', u'martyn', u'punish']
[u'giteau', u'star', u'brumbi', u'edg', u'cat']
[u'govt', u'eye', u'privat', u'sector', u'fibr', u'optic', u'rollout']
[u'hackett', u'focus', u'break']
[u'half', u'crime', u'unreport', u'opposit']
[u'hay', u'credit', u'werriwa', u'rat', u'rise']
[u'hewitt', u'meet', u'feder', u'indian', u'well', u'final']
[u'howard', u'rule', u'major', u'detent', u'chang']
[u'consid', u'team', u'champion', u'trophi']
[u'illiter', u'student', u'abandon', u'govt']
[u'see', u'year', u'high', u'price']
[u'ingrid', u'clean', u'month']
[u'inmat', u'escap', u'bunburi', u'prison']
[u'jetstar', u'deni', u'malfunct', u'live', u'risk']
[u'johnson', u'fail', u'cross', u'countri', u'titl', u'defenc']
[u'kezman', u'doubl', u'see', u'chelsea', u'close', u'titl']
[u'king', u'complet', u'trick']
[u'kravitz', u'snub', u'brazilian', u'court']
[u'kumbl', u'bowl', u'india', u'massiv', u'victori']
[u'kyushu', u'earthquak', u'injur']
[u'lara', u'omit', u'contract', u'disput']
[u'lebanes', u'polit', u'divis', u'deepen', u'bomb']
[u'manila', u'bomb', u'terror', u'relat']
[u'man', u'romp', u'mar', u'hopoat', u'send']
[u'moral', u'high', u'troop', u'await', u'iraq', u'deploy']
[u'mulvihil', u'name', u'assist', u'coach']
[u'nigerian', u'minist', u'arrest', u'briberi', u'claim']
[u'problem', u'littl', u'progress', u'russia', u'ukrain']
[u'scheme', u'combat', u'skill', u'shortag']
[u'ogradi', u'fourth', u'remo']
[u'dead', u'train', u'collid']
[u'kill', u'injur', u'japan', u'quak']
[u'kill', u'blast', u'qatar', u'theatr']
[u'peacekeep', u'help', u'somalian', u'govt']
[u'perri', u'lead', u'round', u'hold']
[u'piper', u'lead', u'paddi', u'parad', u'time']
[u'plan', u'hitch', u'leav', u'shack', u'owner', u'limbo']
[u'play', u'underway', u'wellington']
[u'fear', u'lose', u'lightfoot', u'say']
[u'polic', u'charg', u'indonesian', u'pilot', u'activist', u'death']
[u'polic', u'investig', u'tip']
[u'polic', u'investig', u'random', u'sydney', u'shoot']
[u'polic', u'search', u'bodi', u'shark', u'attack']
[u'polic', u'seek', u'gang', u'steal', u'car', u'robberi']
[u'polic', u'suspect', u'brother']
[u'pope', u'make', u'silent', u'palm', u'sunday', u'appear']
[u'power', u'quak', u'injur', u'japan']
[u'protest', u'reiter', u'opposit', u'iraq']
[u'protest', u'mark', u'iraq', u'invas', u'anniversari']
[u'pub', u'shut', u'amid', u'grog', u'alleg']
[u'putin', u'visit', u'ukrain', u'leader']
[u'rabbitoh', u'past', u'eel']
[u'rain', u'kill', u'afghani', u'destroy', u'home']
[u'rann', u'press', u'need', u'driver', u'drug', u'test']
[u'refuge', u'camp', u'ambush', u'wound']
[u'rooster', u'panther']
[u'sarin', u'attack', u'rememb', u'tokyo']
[u'search', u'killer', u'shark', u'call']
[u'search', u'killer', u'shark', u'continu']
[u'senior', u'iraqi', u'policeman', u'kill', u'mosul']
[u'seventeen', u'kill', u'china', u'explos']
[u'shark', u'sink', u'trace']
[u'singl', u'woman', u'seek', u'uniform']
[u'spike', u'thief', u'high', u'speed', u'getaway']
[u'springborg', u'shrug', u'leadership', u'critic']
[u'star', u'turn', u'mandela', u'aid', u'drive']
[u'tasmanian', u'protest', u'ralli', u'iraq']
[u'teen', u'troubl', u'text', u'tendon']
[u'territori', u'woo', u'skill', u'migrant']
[u'thousand', u'ralli', u'support', u'gaza', u'pullout']
[u'tiwi', u'footbal', u'pioneer', u'enter', u'hall', u'fame']
[u'kill', u'road']
[u'polic', u'arrest', u'madrid', u'bomb', u'suspect']
[u'congress', u'fight', u'comatos', u'woman', u'aliv']
[u'desir', u'attack', u'north', u'korea', u'rice']
[u'studi', u'measur', u'human', u'exposur']
[u'fisheri', u'offici', u'hunt', u'killer', u'shark']
[u'wale', u'beat', u'ireland', u'histor', u'grand', u'slam']
[u'opposit', u'leader', u'name', u'shadow', u'cabinet']
[u'waugh', u'inspir', u'dravid', u'twin', u'centuri']
[u'webber', u'prais', u'driver', u'meet']
[u'youth', u'concert', u'benefit', u'tsunami', u'victim']
[u'year', u'jail', u'term', u'reinstat', u'lose', u'appeal']
[u'charg', u'coast', u'child', u'porn', u'crackdown']
[u'academ', u'urg', u'govt', u'open', u'transport']
[u'stop', u'racism']
[u'afghanistan', u'oper', u'begin', u'flood']
[u'fund', u'western', u'sydney', u'sport', u'centr']
[u'airport', u'secur', u'breach', u'prompt', u'investig']
[u'alleg', u'grog', u'lead', u'suspens']
[u'annan', u'urg', u'member', u'poverti', u'histori']
[u'anti', u'duck', u'shooter', u'maintain']
[u'appeal', u'launch', u'help', u'victim', u'parent']
[u'aquacultur', u'industri', u'fear', u'chemic', u'drift', u'impact']
[u'atsic', u'demis', u'see', u'treati', u'killer']
[u'attack', u'kill', u'year', u'iraq', u'invas']
[u'attorney', u'general', u'talk', u'immun', u'terror']
[u'aussi', u'dollar', u'climb', u'greenback']
[u'aust', u'artist', u'shine', u'sxsw', u'festiv']
[u'aust', u'urg', u'choos', u'mediat', u'juri']
[u'bali', u'court', u'jail', u'australian', u'month']
[u'predict', u'loss', u'offic']
[u'bike', u'rider', u'turn', u'forc', u'celebr']
[u'black', u'cap', u'rain', u'stop', u'play']
[u'bomb', u'squad', u'call', u'defus', u'hand', u'grenad']
[u'brazen', u'attack', u'teen', u'prompt', u'polic', u'concern']
[u'british', u'govt', u'back', u'retir']
[u'brogden', u'say', u'carr', u'govt', u'blame', u'death']
[u'bubbl', u'burst', u'illawarra', u'hous', u'price']
[u'bulk', u'bill', u'worri', u'emerg', u'kempsey']
[u'bush', u'disadvantag', u'privat', u'health', u'cover', u'studi']
[u'bush', u'readi', u'approv', u'schiavo']
[u'bush', u'sign', u'emerg', u'schiavo']
[u'cabinet', u'soften', u'polici', u'long', u'term', u'detent']
[u'medic', u'student', u'train', u'rethink']
[u'separ', u'detent', u'asylum', u'seeker']
[u'cambodian', u'polic', u'shoot', u'protest', u'land', u'disput']
[u'cannabi', u'policeman', u'home', u'court', u'hear']
[u'cat', u'dog', u'toll', u'penguin']
[u'centuri', u'close', u'week']
[u'charman', u'lappin', u'lion']
[u'church', u'award', u'armidal', u'woman']
[u'compani', u'defam', u'plan', u'wast', u'time', u'welford']
[u'councillor', u'talk', u'bega', u'plan']
[u'council', u'pool', u'site', u'delay', u'threaten', u'steel', u'offer']
[u'council', u'forc', u'merger', u'opposit']
[u'council', u'seek', u'role', u'fight', u'assault']
[u'council', u'seek', u'legal', u'advic', u'liabil']
[u'cours', u'offer', u'soldier', u'intens', u'train']
[u'cricket', u'talk', u'reach', u'stalem']
[u'darwin', u'assist', u'tiwi', u'clean']
[u'delorean', u'design', u'die', u'age']
[u'detaine', u'support', u'welcom', u'possibl', u'visa', u'chang']
[u'disabl', u'access', u'problem', u'mildura']
[u'test', u'show', u'abbott', u'father']
[u'domest', u'violenc', u'cost']
[u'domest', u'violenc', u'top', u'health', u'risk', u'women']
[u'duck', u'shoot', u'season', u'begin', u'unev']
[u'ellison', u'accus', u'state', u'nurtur', u'illeg', u'drug']
[u'campaign', u'uranium']
[u'environ', u'minist', u'cut', u'militari', u'exercis', u'green']
[u'euroa', u'resid', u'oppos', u'servic', u'station', u'plan']
[u'factori', u'spark', u'explos']
[u'father', u'rescu', u'boat', u'mishap']
[u'fear', u'algal', u'bloom', u'lead', u'fish', u'kill']
[u'feder', u'fund', u'more', u'galleri']
[u'feder', u'down', u'hewitt', u'indian', u'well', u'final']
[u'fiji', u'crush', u'zealand', u'world', u'seven']
[u'film', u'censorship', u'board', u'give', u'thumb']
[u'fishermen', u'urg', u'stay', u'clear', u'gulf', u'dolphin']
[u'forest', u'agreement', u'near', u'complet']
[u'minist', u'deni', u'knowledg', u'corrupt']
[u'forum', u'tell', u'cane', u'toad', u'spread', u'stop']
[u'policemen', u'report', u'kill', u'kyrgyz', u'protest']
[u'german', u'festiv', u'draw', u'grow']
[u'gold', u'coast', u'urg', u'offer', u'futur', u'propos']
[u'governor', u'talk', u'ilfracomb', u'effort']
[u'govt', u'boost', u'fund', u'children', u'cancer', u'servic']
[u'govt', u'plan', u'widen', u'travel', u'concess', u'scheme']
[u'govt', u'prepar', u'detent', u'review']
[u'govt', u'urg', u'support', u'land', u'migrat']
[u'govt', u'urg', u'relax', u'plan', u'volunt', u'polic']
[u'green', u'light', u'busker', u'blue', u'root', u'festiv']
[u'green', u'space', u'orang', u'sell']
[u'green', u'urg', u'govt', u'reconsid', u'nauru', u'detent']
[u'group', u'ponder', u'toxic', u'dump', u'plan', u'export', u'inquiri']
[u'group', u'stand', u'outback', u'highway', u'fund']
[u'gunn', u'boost', u'woodchip', u'output']
[u'hand', u'grenad', u'train', u'devic']
[u'harbhajan', u'receiv', u'report']
[u'herron', u'purchas', u'fuel', u'sigma', u'profit']
[u'heskey', u'recal', u'england', u'squad']
[u'higher', u'diesel', u'fuel', u'price', u'predict']
[u'high', u'land', u'tax', u'blame', u'rent', u'increas']
[u'home', u'intrus', u'theft', u'lowest', u'tasmania']
[u'hopoat', u'face', u'uncertain', u'futur']
[u'hopoat', u'head', u'long', u'list', u'boy']
[u'hospit', u'clarifi', u'fluorid', u'awar', u'scheme']
[u'hous', u'estat', u'pleas', u'bottl', u'shop', u'plan']
[u'hundr', u'gather', u'promot', u'racial', u'harmoni']
[u'hundr', u'protest', u'har', u'race', u'pullout']
[u'indonesian', u'woman', u'execut', u'tripl', u'murder']
[u'inter', u'hang', u'fiorentina']
[u'intern', u'legal', u'forum', u'debat', u'terror']
[u'irish', u'tourist', u'charg']
[u'isra', u'handov', u'tulkarm', u'delay']
[u'jacob', u'outlin', u'substanc', u'abus', u'stanc']
[u'japan', u'resid', u'spend', u'sleepless', u'night', u'quak']
[u'john', u'undergo', u'scan']
[u'judd', u'readi', u'life', u'brownlow']
[u'kenni', u'demand', u'releas', u'guantanamo', u'video']
[u'king', u'hawk', u'dream']
[u'kyrgyzstan', u'protest', u'burn', u'polic', u'station']
[u'landhold', u'warn', u'rise', u'valuat']
[u'lennon', u'celebr', u'anniversari']
[u'librari', u'go', u'high', u'tech']
[u'liverpool', u'claim', u'crucial', u'everton']
[u'lobbi', u'group', u'consid', u'tree', u'clear', u'challeng']
[u'log', u'decis', u'expect', u'south', u'sister', u'coup']
[u'mile', u'spark', u'safeti', u'fear']
[u'declar', u'jihad', u'court', u'hear']
[u'guilti', u'flatmat', u'murder']
[u'hurt', u'south', u'kalgoorli', u'home', u'invas']
[u'surviv', u'fieri', u'crash']
[u'court', u'hous', u'blaze']
[u'marina', u'develop', u'china', u'plan']
[u'market', u'climb', u'morn', u'trade']
[u'mayor', u'confid', u'council', u'inquiri', u'finish', u'earli']
[u'minist', u'reject', u'secur', u'threat', u'trio', u'break']
[u'oliv', u'plantat', u'possibl', u'break', u'hill']
[u'mother', u'blame', u'tripl', u'murder', u'suicid']
[u'fear', u'higher', u'region', u'power', u'cost']
[u'cancer', u'therapi', u'reduc', u'pain', u'effect']
[u'forb', u'water', u'suppli']
[u'offic', u'begin', u'remot', u'polic']
[u'program', u'catch', u'offend', u'truck', u'driver']
[u'technolog', u'help', u'improv', u'sustain']
[u'parliament', u'head', u'alic']
[u'ochoa', u'unravel', u'sorenstam']
[u'offic', u'award', u'compo', u'see', u'fellow']
[u'offic', u'alert', u'whale', u'strand']
[u'fuel', u'record', u'high', u'stock', u'market']
[u'price', u'tip', u'boost', u'stock']
[u'opposit', u'highlight', u'tire', u'touch', u'carr']
[u'opposit', u'call', u'review', u'amid', u'airport', u'secur']
[u'opposit', u'push', u'citrus', u'canker', u'rethink']
[u'opposit', u'say', u'kerin', u'polici', u'request']
[u'orang', u'roughi', u'catch', u'wake', u'stock']
[u'pacif', u'highway', u'truck', u'focus', u'summit']
[u'parent', u'seek', u'help', u'replac', u'treat', u'playground']
[u'peerless', u'bekel', u'complet', u'fourth', u'doubl']
[u'perri', u'break', u'drought']
[u'food', u'factori', u'get', u'boost']
[u'pirat', u'free', u'kidnap', u'japanes', u'tugboat']
[u'keep', u'distanc', u'coalit', u'detail']
[u'polic', u'hunt', u'lismor', u'attack']
[u'polic', u'investig', u'pedestrian', u'accid']
[u'polic', u'maintain', u'hunt', u'attack']
[u'polic', u'probe', u'murder', u'suicid']
[u'polic', u'probe', u'slaughter', u'site', u'shoot', u'report']
[u'polic', u'seek', u'motiv', u'tripl', u'murder', u'suicid']
[u'polic', u'investig', u'fatal', u'crash']
[u'polic', u'warn', u'public', u'letterbox', u'blast']
[u'school', u'want', u'road', u'safeti']
[u'protest', u'spread', u'kyrgyzstan']
[u'push', u'remain', u'shoalhaven', u'water', u'recycl']
[u'link', u'land', u'cut', u'talk']
[u'quinn', u'springborg', u'look', u'coalit', u'meet']
[u'racq', u'air', u'northern', u'fuel', u'price', u'concern']
[u'ranger', u'cruis', u'leagu', u'victori']
[u'real', u'madrid', u'narrow', u'barcelona']
[u'rebel', u'mutil', u'women', u'northern', u'uganda']
[u'refuge', u'group', u'seek', u'temporari', u'protect', u'visa']
[u'religion', u'factor', u'refuge', u'polici']
[u'research', u'fortifi', u'crop', u'fight', u'malnutrit']
[u'resid', u'fear', u'canneri', u'safeti', u'risk']
[u'resid', u'ralli', u'save', u'aeropelican']
[u'resid', u'valuat', u'refund']
[u'resign', u'unlik', u'hurt', u'waltz', u'matilda']
[u'rice', u'meet', u'chines', u'leader']
[u'rice', u'porridg', u'ritual', u'predict', u'japan', u'quak']
[u'rice', u'press', u'china', u'north', u'korea', u'nuclear', u'talk']
[u'right', u'group', u'govt', u'drag', u'heel', u'reform']
[u'rooster', u'crocker', u'pocket']
[u'ruddock', u'remain', u'tightlip', u'corbi', u'evid']
[u'saint', u'eager', u'turn', u'tabl', u'lion']
[u'scientist', u'search', u'bare', u'sheep', u'gene']
[u'second', u'jakarta', u'embassi', u'bomb', u'trial', u'begin']
[u'shark', u'search', u'call']
[u'shark', u'victim', u'father', u'thank', u'author']
[u'shepherd', u'call', u'account', u'late', u'night']
[u'shire', u'await', u'fenc', u'fund']
[u'judg', u'southern', u'district', u'exhibit', u'peopl']
[u'zealand', u'expand', u'codeshar', u'agreement']
[u'sibl', u'ironman', u'ironwoman', u'histori']
[u'smaller', u'uni', u'suffer', u'student', u'union', u'plan']
[u'sport', u'complex', u'receiv', u'fund', u'boost']
[u'staff', u'evacu', u'take', u'hold', u'industri']
[u'state', u'ask', u'rethink', u'countri', u'school', u'teacher']
[u'state', u'librari', u'go', u'high', u'tech']
[u'student', u'group', u'slam', u'univers', u'poki', u'plan']
[u'student', u'union', u'plan', u'prompt', u'servic', u'concern']
[u'suicid', u'bomb', u'kill', u'senior', u'iraqi', u'policeman']
[u'taint', u'fuel', u'leav', u'passeng', u'ground']
[u'tax', u'blame', u'high', u'rent', u'say', u'treasur']
[u'teacher', u'vote', u'continu', u'campaign']
[u'teenag', u'girl', u'face', u'charg', u'polic', u'pursuit']
[u'terror', u'court', u'littl', u'overboard', u'ruddock']
[u'test', u'continu', u'sick', u'soldier']
[u'thirteen', u'report', u'dead', u'bangladesh', u'storm']
[u'treasur', u'defend', u'qanta', u'travel', u'agenc', u'contract']
[u'trio', u'charg', u'child', u'steal']
[u'trio', u'court', u'man', u'murder']
[u'trucki', u'die', u'north', u'crash']
[u'separ', u'road', u'accid']
[u'shoot', u'bungl', u'arm', u'robberi']
[u'soldier', u'kill', u'haiti']
[u'polic', u'recruit', u'begin', u'local', u'train']
[u'union', u'maintain', u'teacher', u'strike', u'legal']
[u'union', u'slam', u'pacif', u'highway', u'toll', u'talk']
[u'union', u'want', u'rethink', u'teacher', u'crimin', u'record', u'law']
[u'rise', u'industri', u'unrest']
[u'univers', u'ponder', u'poki', u'plan', u'lose']
[u'senat', u'pass', u'brain', u'damag', u'woman']
[u'push', u'china', u'improv', u'human', u'right']
[u'vanston', u'defend', u'polici', u'asylum', u'seeker']
[u'villarr', u'eas', u'past', u'steaua', u'uefa', u'quarter']
[u'virgin', u'brace', u'chang', u'takeov', u'bed']
[u'virgin', u'sharehold', u'tip', u'patrick', u'offer']
[u'dump', u'ralli', u'australia']
[u'water', u'exceed', u'target']
[u'woman', u'die', u'south', u'west', u'highway', u'crash']
[u'woman', u'kill', u'train', u'collis']
[u'woman', u'struggl', u'age', u'care', u'blind']
[u'wood', u'cutter', u'win', u'titl', u'singl', u'hand']
[u'work', u'continu', u'bibbawarra', u'cross']
[u'workplac', u'accid', u'central', u'west']
[u'workplac', u'safeti', u'improv']
[u'wyndham', u'grappl', u'water', u'woe']
[u'yandilla', u'park', u'support', u'chiquita', u'takeov']
[u'young', u'doctor', u'blame', u'region']
[u'youth', u'charg', u'palm', u'rock', u'throw']
[u'dead', u'shoot', u'rampag']
[u'turn', u'canberra', u'festiv']
[u'abolish', u'land', u'depend', u'revenu', u'brack']
[u'clear', u'liber', u'misus', u'phone', u'data']
[u'accus', u'school', u'arsonist', u'acquit']
[u'accus', u'toddler', u'kidnap', u'plotter', u'deni', u'bail']
[u'govt', u'reject', u'park', u'revenu', u'claim']
[u'activist', u'arrest', u'power', u'station', u'protest']
[u'leader', u'dismiss', u'royal', u'commiss']
[u'deni', u'disput', u'seven']
[u'head', u'swim', u'coach', u'quit']
[u'anwar', u'call', u'asia', u'pacif', u'human', u'right', u'bodi']
[u'anwar', u'criticis', u'australia', u'terror', u'law']
[u'arrest', u'warrant', u'issu', u'teen', u'accus', u'sheep']
[u'jeev', u'flickr', u'snap']
[u'australia', u'keep', u'trophi', u'rain', u'ruin', u'second', u'test']
[u'australia', u'swim', u'debt', u'opposit', u'say']
[u'pain', u'latest', u'jackson', u'drama']
[u'bank', u'resourc', u'sector', u'drag', u'market']
[u'basebal', u'drug', u'loophol', u'close']
[u'bendigo', u'bank', u'plan', u'continu']
[u'slash', u'hundr', u'job']
[u'bogut', u'name', u'finalist', u'colleg', u'honour']
[u'injur', u'accid']
[u'brumbi', u'say', u'free', u'budget', u'despit', u'surplus']
[u'toughen', u'insur', u'industri', u'account']
[u'case', u'terri', u'schiavo', u'court']
[u'delight', u'comm', u'game', u'ticket', u'respons']
[u'chemist', u'condom', u'worri', u'hunter', u'town']
[u'chemist', u'surpris', u'drug', u'price', u'plan']
[u'child', u'obes', u'fight', u'launch', u'northern']
[u'china', u'explos', u'toll', u'hit']
[u'chirac', u'alli', u'face', u'corrupt', u'trial']
[u'church', u'pledg', u'cultur', u'chang', u'amid', u'abus', u'report']
[u'clear', u'ahead', u'airport', u'shop', u'precinct']
[u'climb', u'fuel', u'price', u'curb', u'easter', u'getaway']
[u'coal', u'compani', u'take', u'blame', u'dalrympl']
[u'communiti', u'back', u'plan', u'indigen', u'polit']
[u'communiti', u'shock', u'disbelief', u'follow', u'tripl']
[u'convict', u'rapist', u'deport']
[u'corra', u'linn', u'sale', u'ahead', u'despit', u'opposit']
[u'council', u'abandon', u'oasi', u'talk']
[u'council', u'consid', u'approach', u'deliv']
[u'councillor', u'predict', u'tweed', u'council', u'sack']
[u'councillor', u'walk', u'meet']
[u'council', u'oppos', u'quarri', u'plan']
[u'council', u'question', u'har', u'race', u'stanc']
[u'council', u'play', u'easter', u'road', u'safeti']
[u'council', u'urgent', u'seek', u'transport', u'plan']
[u'court', u'deni', u'terror', u'suspect', u'access', u'detaine']
[u'court', u'grant', u'bail', u'pair', u'accus', u'child', u'steal']
[u'crisi', u'hous', u'shortag', u'domest', u'violenc']
[u'cummin', u'deni', u'park', u'fine', u'claim']
[u'darwin', u'meet', u'lament', u'atsic', u'demis']
[u'david', u'jone', u'ring', u'profit']
[u'delay', u'legal', u'servic', u'replac']
[u'dept', u'urg', u'nurs', u'wag']
[u'detail', u'alic', u'spring', u'tourism', u'campaign']
[u'dick', u'smith', u'back', u'immigr', u'review']
[u'doctor', u'common', u'plastic', u'straighten', u'nose']
[u'donat', u'flow', u'tragedi', u'parent']
[u'dragon', u'hard', u'suspens']
[u'drought', u'impact', u'predict', u'long', u'last']
[u'duck', u'shooter', u'jump', u'season', u'start']
[u'kill', u'school', u'shoot']
[u'hearten', u'militari']
[u'exclus', u'men', u'club', u'vote', u'women']
[u'famous', u'wellshot', u'hotel', u'reopen']
[u'farmer', u'fin', u'power', u'pole', u'damag']
[u'fatal', u'crash', u'spark', u'rail', u'cross', u'safeti', u'debat']
[u'fear', u'log', u'decis', u'preced']
[u'investor', u'anxious']
[u'fire', u'claim', u'wide', u'hous']
[u'fire', u'central', u'victoria']
[u'forum', u'industri', u'miner', u'lowdown']
[u'face', u'court', u'trade', u'scandal']
[u'restrict', u'eas', u'firm']
[u'govt', u'accus', u'delay', u'wage', u'negoti', u'deal']
[u'govt', u'defend', u'human', u'right', u'record']
[u'govt', u'flag', u'oval', u'restor']
[u'govt', u'make', u'chang', u'immigr']
[u'govt', u'stand', u'firm', u'teacher', u'offer']
[u'govt', u'tell', u'invest', u'region']
[u'govt', u'releas', u'small', u'group', u'long', u'term', u'detaine']
[u'govt', u'urg', u'stamp', u'cigarett']
[u'govt', u'urg', u'action', u'oval', u'burnout']
[u'group', u'seek', u'answer', u'woodland', u'futur']
[u'harrison', u'learn', u'lesson', u'say', u'roger']
[u'heavyweight', u'preselect', u'safe', u'seat']
[u'high', u'hop', u'lagoon']
[u'high', u'theft', u'illawarra', u'see', u'dog', u'better', u'secur']
[u'highway', u'plan', u'take', u'toll', u'public']
[u'hopoat', u'sack', u'match']
[u'hopoat', u'sack', u'match', u'suspens']
[u'hospit', u'staff', u'hour', u'protest']
[u'hospit', u'welcom', u'budget', u'boost']
[u'howard', u'pledg', u'chang', u'wont', u'push', u'wag']
[u'howard', u'say', u'budget', u'boost', u'defenc', u'spend']
[u'hunt', u'continu', u'mistaken', u'releas', u'croc']
[u'iceland', u'grant', u'chess', u'champ', u'citizenship']
[u'indonesian', u'parliament', u'split', u'fuel', u'subsidi', u'cut']
[u'indonesia', u'work', u'nuclear', u'power', u'plan']
[u'infrastructur', u'task', u'forc', u'eye', u'farm']
[u'intrud', u'hospit', u'attack']
[u'island', u'camp', u'book']
[u'israel', u'finalis', u'handov', u'west', u'bank', u'town']
[u'japan', u'back', u'aust', u'invit', u'east', u'asia', u'summit']
[u'jihad', u'jack', u'unhappi', u'qaeda', u'method', u'court', u'tell']
[u'john', u'muscl', u'tear', u'confirm']
[u'jordanian', u'iraqi', u'diplomat', u'return', u'post']
[u'kalgoorli', u'council', u'quit']
[u'kerl', u'retir', u'butler', u'name', u'nbls']
[u'kidnap', u'mastermind', u'advertis', u'help']
[u'kyrgyz', u'elect', u'chief', u'declar', u'disput', u'poll', u'valid']
[u'kyrgyz', u'leader', u'rule', u'state', u'emerg']
[u'labor', u'urg', u'rethink', u'legisl', u'council']
[u'land', u'hand', u'legisl', u'reach', u'legisl']
[u'lennon', u'wont', u'releas', u'advic', u'retain', u'spirit']
[u'lismor', u'forum', u'hear', u'technic', u'colleg', u'plan']
[u'macquari', u'field', u'bash', u'victim', u'tell', u'polic']
[u'detain', u'china', u'death', u'famili']
[u'face', u'charg', u'attempt', u'murder', u'brother']
[u'jail', u'rifl', u'tot', u'kill', u'threat']
[u'man', u'board', u'decid', u'hopoat', u'futur']
[u'court', u'polic', u'assault']
[u'mayor', u'seek', u'continu', u'nation', u'park', u'wheel']
[u'melbourn', u'prize', u'money', u'pass', u'million']
[u'million', u'dollar', u'bounti', u'tasmanian', u'tiger']
[u'rescu', u'worker', u'return']
[u'minist', u'deni', u'plan', u'public', u'servic', u'job']
[u'mix', u'recept', u'skill', u'shortag', u'packag']
[u'resourc', u'cooper', u'need', u'protect']
[u'mother', u'charg', u'child', u'murder', u'seek', u'bail']
[u'mourner', u'honour', u'aborigin', u'judg', u'state']
[u'moyston', u'blaze', u'prove', u'cost']
[u'air', u'hospit', u'bypass', u'worri']
[u'plead', u'fuel']
[u'larcom', u'await', u'water', u'decis']
[u'murali', u'tie', u'knot', u'chennai']
[u'music', u'murray', u'hit', u'right', u'note', u'public']
[u'cut', u'reach', u'news']
[u'law', u'tougher', u'boat', u'safeti', u'requir']
[u'nose', u'research', u'offer', u'stem', u'cell', u'pathway']
[u'cut', u'horizon', u'treasur', u'warn']
[u'occi', u'consid', u'bell', u'farewel']
[u'land', u'black', u'hawk', u'school']
[u'onlin', u'ident', u'theft', u'soar', u'survey']
[u'opposit', u'rais', u'question', u'grenad', u'scare']
[u'origin', u'plan', u'power', u'station']
[u'paedophil', u'jail', u'abus', u'year']
[u'pair', u'surviv', u'truck', u'close', u'encount']
[u'parti', u'urg', u'bolster', u'safeti']
[u'peta', u'hail', u'court', u'wool', u'industri']
[u'plea', u'speed', u'camera', u'revenu', u'boost', u'countri']
[u'polic', u'foil', u'kidnap', u'plot']
[u'polic', u'investig', u'cemeteri', u'vandal']
[u'polic', u'probe', u'morgan', u'assault']
[u'polic', u'seek', u'motiv', u'school', u'rampag']
[u'polic', u'warn', u'cobram', u'attack']
[u'poofter', u'parliamentari', u'debat', u'spark', u'word']
[u'program', u'launch', u'devonport', u'revers', u'number']
[u'protect', u'circuit', u'fault', u'caus', u'blackout', u'report']
[u'publican', u'meet', u'grog', u'crackdown']
[u'quak', u'shake', u'zealand', u'lower', u'north', u'island']
[u'racq', u'doesnt', u'want', u'gympi', u'bypass', u'toll']
[u'rail', u'project', u'includ', u'habitat', u'endang', u'frog']
[u'rain', u'ruin', u'australia', u'victori', u'hop']
[u'ralli', u'australia', u'dump', u'cop', u'critic']
[u'ralli', u'highlight', u'river', u'protect']
[u'rann', u'appoint', u'transport', u'portfolio', u'conlon']
[u'report', u'give', u'away', u'littl', u'rat']
[u'record', u'entri', u'despit', u'drought']
[u'report', u'detail', u'zimbabw', u'intimid']
[u'rescu', u'young', u'whale', u'die']
[u'research', u'claim', u'revolutionari', u'burn', u'treatment']
[u'resid', u'rais', u'gold', u'plan', u'concern']
[u'robot', u'boost', u'polic', u'bomb', u'squad']
[u'roo', u'back', u'clarkson', u'rooki', u'season']
[u'rough', u'weather', u'hit', u'coast']
[u'rugbi', u'leagu', u'threat', u'wagga']
[u'safeti', u'review', u'follow', u'attack']
[u'search', u'miss', u'angler']
[u'serial', u'pest', u'order', u'away', u'london', u'marathon']
[u'setback', u'wool', u'claim', u'peta']
[u'sewerag', u'treat', u'wongarbon']
[u'shepherd', u'suspend', u'fin']
[u'shire', u'welcom', u'care', u'centr', u'fund']
[u'skippi', u'wildlif', u'park', u'owner', u'fin', u'thousand']
[u'small', u'retail', u'miss', u'plastic', u'messag']
[u'spanish', u'troop', u'depart', u'aceh']
[u'squabbl', u'continu', u'conserv']
[u'barbara', u'acquir', u'son', u'gwalia', u'gold', u'asset']
[u'step', u'father', u'jail', u'sexual', u'abus', u'twin']
[u'storm', u'leav', u'wide', u'dark']
[u'student', u'go', u'shoot', u'spree']
[u'submiss', u'seek', u'indigen', u'job']
[u'survey', u'find', u'north', u'coast', u'prone', u'theft']
[u'survey', u'find', u'jervi', u'grey', u'nurs', u'shark']
[u'survey', u'find', u'world', u'want', u'power']
[u'swiss', u'glacier', u'heat', u'shield']
[u'govt', u'deni', u'cover', u'elect', u'surgeri']
[u'teacher', u'foreshadow', u'strike', u'action']
[u'terror', u'accus', u'young', u'dreamer']
[u'test', u'beach', u'alga', u'harmless']
[u'thiev', u'bash', u'woman']
[u'tourism', u'committe', u'work', u'albani', u'brand']
[u'trio', u'court', u'sexual', u'slaveri', u'alleg']
[u'tsunami', u'appeal', u'match', u'announc', u'lord']
[u'arrest', u'kidnap', u'plot']
[u'uefa', u'action', u'chelsea', u'mourinho']
[u'expert', u'help', u'rail', u'track']
[u'univers', u'staff', u'rise']
[u'uranium', u'start', u'date']
[u'user', u'popul', u'age', u'say', u'labor']
[u'judg', u'refus', u'feed', u'schiavo', u'case']
[u'urg', u'farmer', u'flame', u'udder']
[u'waldron', u'push', u'health', u'prioriti']
[u'wallac', u'use', u'otten', u'geelong', u'tiger']
[u'walter', u'insolv', u'report', u'prompt', u'push', u'stricter']
[u'walter', u'worker', u'expect', u'return', u'work', u'tomorrow']
[u'public', u'urg', u'deep', u'cross']
[u'water', u'monitor', u'boost', u'oyster', u'cost']
[u'unlik', u'reform', u'tax']
[u'western', u'sydney', u'shoot', u'trigger', u'manhunt']
[u'wild', u'weather', u'warn', u'issu', u'sydney']
[u'williamss', u'scottish', u'futur', u'hang', u'balanc']
[u'windsor', u'keep', u'pressur', u'telstra', u'sale']
[u'winter', u'stawel']
[u'wollondilli', u'shire', u'launch', u'social', u'plan']
[u'woman', u'charg', u'partner', u'stab', u'death']
[u'woman', u'die', u'head', u'crash', u'truck']
[u'work', u'trial', u'worri', u'lawyer']
[u'year', u'tourist', u'murder', u'mysteri']
[u'kill', u'cambodian', u'jailbreak', u'attempt']
[u'abus', u'footbal', u'ref', u'workplac', u'bulli', u'say']
[u'accc', u'win', u'telco', u'pyramid', u'sell', u'case']
[u'player', u'surpris', u'anti', u'assault', u'plan']
[u'black', u'lock', u'ban', u'week']
[u'aloisi', u'consid', u'leagu']
[u'anti', u'assault', u'class', u'urg', u'club']
[u'anti', u'assault', u'urg', u'club']
[u'anwar', u'set', u'australia', u'tough', u'task']
[u'fertilis', u'sale', u'like', u'creat', u'strong']
[u'argyl', u'fin', u'driver', u'death']
[u'asia', u'consid', u'welcom', u'socceroo']
[u'astronom', u'distant', u'planet']
[u'suffer', u'morn', u'slide']
[u'aussi', u'domin', u'intern', u'surf', u'challeng']
[u'aust', u'market', u'tumbl', u'inflat', u'warn']
[u'aviat', u'question', u'airport', u'sale', u'plan']
[u'backpack', u'skip', u'canberra']
[u'bathurst', u'mourn', u'death', u'deputi', u'mayor']
[u'beazley', u'speak', u'latham']
[u'bell', u'beach', u'postpon']
[u'bishop', u'want', u'church', u'consid', u'ordain', u'marri']
[u'bougainvill', u'leader', u'hold', u'independ', u'ralli']
[u'brack', u'turn', u'eastlink', u'project']
[u'brazil', u'coach', u'parreira', u'back', u'ronaldo']
[u'brazilian', u'kidnapp', u'target', u'footbal', u'mother']
[u'bridgeston', u'accept', u'blame', u'ferrari', u'slow', u'start']
[u'bureaucrat', u'mistak', u'blame', u'hydrotherapi', u'pool']
[u'bureau', u'eas', u'wollongong', u'sever', u'weather', u'warn']
[u'byron', u'discuss', u'combat', u'attack']
[u'hospit', u'communiti', u'board']
[u'miner', u'explor']
[u'canberra', u'hop', u'educ', u'tourism', u'boost']
[u'carraro', u'deep', u'blood', u'test', u'refus']
[u'charl', u'sturt', u'academ', u'hold', u'stop', u'work']
[u'children', u'polic', u'curfew', u'crime', u'spree']
[u'china', u'arm', u'embargo', u'unjustifi', u'offici']
[u'church', u'urg', u'dictat', u'abus', u'procedur']
[u'coal', u'plan', u'get', u'share', u'float', u'windfal']
[u'communiti', u'group', u'attack', u'health', u'servic', u'legal', u'threat']
[u'concern', u'air', u'bulk', u'bill', u'clinic', u'plan']
[u'coonawarra', u'grape', u'harvest', u'look', u'good']
[u'corbi', u'wait', u'decis', u'wit']
[u'costello', u'break', u'deal', u'lee']
[u'council', u'act', u'feral', u'duck', u'number']
[u'councillor', u'seek', u'poultri', u'farm', u'zone']
[u'council', u'offic', u'voic', u'asbesto', u'concern']
[u'council', u'tight', u'lip', u'pulp', u'site']
[u'council', u'demolish', u'clubhous']
[u'critic', u'indian', u'depriv', u'million']
[u'crow', u'ricciuto']
[u'cummin', u'go', u'springborg']
[u'custom', u'uncov', u'stun', u'gun']
[u'cyclon', u'communiti', u'reel']
[u'darwin', u'base', u'soldier', u'return', u'iraq']
[u'darwin', u'troop', u'complet', u'iraq', u'deploy']
[u'debat', u'continu', u'aborigin', u'land', u'hand']
[u'derail', u'slow', u'coal', u'deliveri']
[u'door', u'open', u'socceroo', u'join', u'asia']
[u'driver', u'plead', u'guilti', u'acid', u'murder']
[u'driver', u'urg', u'avoid', u'easter', u'statist']
[u'easter', u'activ', u'aplenti', u'central', u'west']
[u'easter', u'protest', u'plan', u'baxter']
[u'effort', u'south', u'east', u'water', u'crisi', u'pay']
[u'engin', u'failur', u'caus', u'fatal', u'plane', u'crash']
[u'beat', u'bioregion', u'decis']
[u'express', u'wolfowitz', u'worri']
[u'unlik', u'block', u'wolfowitz', u'post', u'germani']
[u'excel', u'wont', u'walk', u'free', u'australia', u'mcginti']
[u'fall', u'demand', u'stop', u'apart']
[u'fantasi', u'island', u'creator', u'guilti', u'stalk']
[u'farmer', u'consid', u'meander', u'option']
[u'farmer', u'pessimist', u'outlook', u'surpris']
[u'farmer', u'warn', u'cattl', u'duf']
[u'north', u'sawmil', u'get', u'expans', u'fund']
[u'fear', u'hold', u'bunburi', u'hospit', u'number']
[u'feder', u'elect', u'probe', u'head', u'western']
[u'feder', u'chase', u'intrud', u'home']
[u'ferguson', u'wenger', u'thank', u'eriksson']
[u'fireman', u'hurt', u'battl', u'spring', u'blaze']
[u'road', u'hour']
[u'footbal', u'mother', u'threat', u'brazil']
[u'financi', u'advis', u'jail', u'year']
[u'foster', u'extend', u'southcorp', u'offer']
[u'franc', u'seek', u'reassur', u'china', u'arm', u'plan']
[u'freo', u'carr', u'readi', u'mat']
[u'fresh', u'concern', u'pope', u'health']
[u'gale', u'surpris', u'govern', u'action']
[u'garfish', u'stock', u'point', u'collaps', u'warn', u'fishermen']
[u'gold', u'coast', u'woman', u'face', u'court', u'child']
[u'govt', u'call', u'boost', u'tafe', u'fund']
[u'govt', u'scale', u'compens', u'scheme']
[u'govt', u'prais', u'rail', u'link', u'fast', u'track']
[u'govt', u'search', u'land', u'coordin']
[u'govt', u'soften', u'immigr', u'detent', u'law']
[u'govt', u'tell', u'accept', u'race', u'consult']
[u'govt', u'tell', u'bolster', u'histor', u'build', u'protect']
[u'govt', u'urg', u'encourag', u'boost', u'local', u'electr']
[u'griffith', u'poultri', u'farm', u'get', u'council']
[u'group', u'concern', u'mulbr', u'log']
[u'guild', u'back', u'chemist', u'condom']
[u'gunman', u'drive', u'polic', u'school']
[u'health', u'report', u'delay']
[u'health', u'servic', u'consolid', u'save', u'thousand']
[u'health', u'servic', u'fin', u'hospit', u'boiler', u'room']
[u'health', u'servic', u'respond', u'doctor', u'quit', u'threat']
[u'high', u'school', u'student', u'make', u'australian', u'team']
[u'highway', u'close', u'doubl', u'fatal']
[u'hobart', u'collect', u'sell']
[u'holiday', u'maker', u'urg', u'line', u'trailer']
[u'hopoat', u'career', u'seem']
[u'hous', u'debat', u'propos', u'macquari', u'field', u'inquiri']
[u'hous', u'afford', u'rise']
[u'indigen', u'filmmak', u'win', u'gong', u'doco']
[u'indonesian', u'call', u'caution', u'corbi', u'case']
[u'indonesian', u'polic', u'question', u'free', u'bali', u'bomb']
[u'inverel', u'council', u'wait', u'brothel', u'decis']
[u'investig', u'begin', u'depart', u'store', u'blaze']
[u'iran', u'stand', u'firm', u'enrich']
[u'king', u'miss', u'nomin']
[u'kiwi', u'drop', u'mcmillan', u'turn', u'second', u'marshal']
[u'kosciuszko', u'wild', u'campaign', u'pay']
[u'kyrgyzstan', u'polit', u'upheav', u'escal']
[u'larg', u'threaten', u'home']
[u'lazaridi', u'want', u'career', u'perth']
[u'liverpool', u'face', u'striker', u'crisi']
[u'magistr', u'say', u'murri', u'court', u'success']
[u'mahoney', u'reach', u'mileston']
[u'malaysia', u'pressur', u'burma', u'implement', u'reform']
[u'bash', u'break']
[u'jail', u'vietnam', u'crime']
[u'martyn', u'bat']
[u'minist', u'hospit', u'heart', u'attack']
[u'minist', u'hear', u'patholog', u'unit', u'privatis', u'plan']
[u'minist', u'name', u'hotel', u'hazard']
[u'miss', u'fisherman', u'bodi']
[u'local', u'school', u'fight', u'retain', u'teacher']
[u'terror', u'suspect', u'remain', u'free']
[u'motorist', u'warn', u'doubl', u'demerit', u'point', u'forc']
[u'mourinho', u'expect', u'uefa', u'charg', u'dismiss']
[u'morgan', u'railway', u'station', u'train', u'base']
[u'nasa', u'closer', u'fresh', u'shuttl', u'launch']
[u'nation', u'leader', u'hit', u'order', u'strategi']
[u'negat', u'headlin', u'link', u'cod']
[u'ferrari', u'get', u'thumb', u'barrichello']
[u'discourag', u'euthanasia', u'advic', u'nitschk']
[u'nimmitabel', u'water', u'effici', u'fund']
[u'good', u'news', u'aerial', u'water', u'survey']
[u'hope', u'repatri', u'visa', u'give', u'mix', u'recept']
[u'govt', u'introduc', u'help', u'pipelin', u'progress']
[u'nuclear', u'confer', u'boast', u'benefit', u'clean', u'energi']
[u'nurs', u'medicin']
[u'offic', u'injur', u'escap', u'driver', u'wont']
[u'opposit', u'want', u'inquiri', u'assault']
[u'pacif', u'plan', u'agenda', u'leader']
[u'petit', u'back', u'save', u'sugar', u'weir']
[u'lawyer', u'highlight', u'gender', u'equal', u'problem']
[u'polic', u'abandon', u'surgeri', u'evid', u'plan']
[u'polic', u'fear', u'miss', u'girl']
[u'polic', u'fear', u'thiev', u'hold', u'hostag', u'hotel']
[u'polic', u'offic', u'court', u'drug', u'charg']
[u'polic', u'seek', u'motiv', u'school', u'shoot']
[u'polic', u'storm', u'sydney', u'hotel']
[u'pope', u'appear', u'peter', u'squar']
[u'premier', u'wont', u'rule', u'public', u'servic', u'cut']
[u'public', u'servant', u'plead', u'guilti', u'child', u'porn', u'charg']
[u'public', u'warn', u'possibl', u'easter', u'blood', u'shortag']
[u'rain', u'strike', u'women', u'world']
[u'rapist', u'deport', u'day']
[u'region', u'saleyard', u'step', u'closer']
[u'repatri', u'deal', u'free', u'detaine']
[u'resid', u'say', u'council', u'roadwork', u'caus', u'ill']
[u'resid', u'establish', u'ambul', u'servic']
[u'ross', u'confid', u'repeat', u'perform']
[u'see', u'easter', u'closur', u'pump', u'station']
[u'saint', u'welcom', u'clive', u'say', u'harri']
[u'scaffold', u'secur', u'storm', u'buffet', u'newcastl']
[u'scan', u'beckham', u'johnson', u'england']
[u'scheme', u'aim', u'promot', u'indigen', u'healthi', u'lifestyl']
[u'schiavo', u'famili', u'run', u'option']
[u'school', u'princip', u'charg', u'child', u'assault']
[u'scientist', u'battl', u'dark', u'energi', u'theori']
[u'search', u'find', u'surfer', u'cling', u'break', u'board']
[u'season', u'worker', u'passport', u'credenti']
[u'second', u'refus', u'bail', u'toddler', u'kidnap', u'plot']
[u'seek', u'list', u'stock', u'exchang']
[u'serial', u'offend', u'receiv', u'longer', u'sentenc']
[u'shop', u'centr', u'bomb', u'lebanon']
[u'kill', u'russian', u'chopper', u'crash']
[u'skill', u'vacanc', u'rise']
[u'smooth', u'road', u'predict', u'drug', u'driver', u'test']
[u'spanish', u'sect', u'leader', u'die']
[u'specialist', u'attract', u'rural', u'doctor']
[u'state', u'reject', u'costello', u'sweeten']
[u'stewart', u'hussain', u'life', u'member']
[u'stuart', u'feel', u'sorri', u'hopoat']
[u'student', u'protest', u'voluntari', u'union']
[u'studi', u'investig', u'impact', u'extend']
[u'surgeon', u'investig', u'hospit', u'death']
[u'hand', u'land', u'aborigin', u'communiti']
[u'teacher', u'strike', u'continu']
[u'industri', u'turn', u'pill', u'pop', u'solut']
[u'thompson', u'dismiss', u'comment', u'wallac']
[u'time', u'run', u'communiti', u'forum', u'involv']
[u'tourism', u'industri', u'expect', u'petrol', u'price']
[u'train', u'driver', u'job', u'spar', u'shake']
[u'transport', u'industri', u'reject', u'hume', u'highway', u'toll', u'plan']
[u'treasur', u'fail', u'agre']
[u'treasur', u'reject', u'deal']
[u'truck', u'industri', u'safeti', u'issu']
[u'tsunami', u'eat', u'council', u'communiti', u'fund']
[u'arrest', u'morgan', u'assault']
[u'take', u'hospit']
[u'admit', u'promis', u'legal', u'bill']
[u'harbhajan', u'need', u'india']
[u'unionist', u'ralli', u'industri', u'relat']
[u'union', u'attempt', u'stem', u'membership', u'declin']
[u'hold', u'stop', u'work', u'meet', u'secur']
[u'mark', u'world', u'water', u'action', u'plan']
[u'upper', u'hous', u'reject', u'brogden', u'probe', u'macquari']
[u'court', u'deni', u'schiavo', u'feed', u'tube', u'appeal']
[u'miner', u'closer', u'portman', u'takeov']
[u'seek', u'octob', u'trial', u'moussaoui']
[u'vainikolo', u'knock', u'union', u'stay', u'bradford']
[u'valu', u'disagr', u'see', u'slug', u'home', u'owner', u'rent']
[u'victorian', u'prison', u'testifi', u'corbi', u'trial']
[u'union', u'strike', u'howard', u'plan']
[u'wall', u'street', u'stagger', u'rat', u'rise']
[u'water', u'suppli', u'plan', u'avert', u'restrict']
[u'timber', u'firm', u'tiwi', u'island', u'plan']
[u'weir', u'rais', u'scheme', u'like', u'gum']
[u'forger', u'jail', u'year']
[u'windi', u'damag', u'hunter', u'storm']
[u'wine', u'industri', u'question', u'inquiri', u'valu']
[u'woman', u'face', u'court', u'child', u'abduct', u'charg']
[u'zollo', u'swear', u'govt', u'minist']
[u'promot', u'lifestyl', u'medic']
[u'govt', u'stanc']
[u'urg', u'chang', u'date', u'court', u'name']
[u'qualiti', u'approach', u'unhealthi', u'level']
[u'annan', u'flag', u'investig', u'lebanon']
[u'buy', u'vietnames', u'market']
[u'appal', u'prison', u'review']
[u'archer', u'charlevill']
[u'aussi', u'dollar', u'blue', u'chip', u'fall']
[u'aussi', u'women', u'woodchopp', u'competit']
[u'australian', u'death', u'sentenc', u'uphold']
[u'aust', u'troop', u'head', u'home', u'aceh']
[u'backbench', u'criticis', u'visa', u'chang']
[u'bass', u'coast', u'popul', u'grow', u'faster', u'state']
[u'bathurst', u'death', u'custodi', u'prompt', u'polit', u'stoush']
[u'beatti', u'ask', u'sugar', u'fund', u'explain']
[u'beatti', u'clear', u'palm', u'island', u'briberi', u'alleg']
[u'beckham', u'sick', u'paparazzi', u'harass']
[u'bendigo', u'look', u'easter', u'influx']
[u'berkeley', u'teacher', u'consid', u'return', u'work']
[u'crowd', u'tip', u'gospel', u'music', u'festiv']
[u'bilbi', u'releas', u'nation', u'park']
[u'bird', u'claim', u'second', u'victim', u'cambodia']
[u'blast', u'hit', u'massiv', u'texa', u'refineri']
[u'boati', u'warn', u'rough', u'easter', u'condit']
[u'bogut', u'stay', u'cool', u'hype', u'mount']
[u'booki', u'boost', u'turnov', u'pat', u'meet']
[u'bore', u'eleph', u'mimic', u'bird', u'truck']
[u'british', u'captain', u'farrel', u'switch', u'cod']
[u'british', u'attack', u'iraq', u'plan']
[u'break', u'hill', u'child', u'blood', u'lead', u'level', u'fall']
[u'buderus', u'injuri', u'crisi']
[u'build', u'project', u'benefit', u'mental', u'health', u'patient']
[u'bulgaria', u'pull', u'iraq', u'year']
[u'bullet', u'mackinnon']
[u'busi', u'back', u'council', u'graffiti', u'clean']
[u'busi', u'urg', u'lobbi', u'govt', u'tax']
[u'byron', u'develop', u'strategi', u'fight', u'assault']
[u'compani', u'accc']
[u'cahil', u'put', u'socceroo', u'ahead', u'everton']
[u'dubbo', u'colleg', u'plan', u'rethink']
[u'govt', u'budget', u'surplus', u'region']
[u'call', u'continu', u'palm', u'council']
[u'canker', u'affect', u'farm', u'set', u'record', u'straight']
[u'cannon', u'reload', u'tah']
[u'leav', u'train', u'track']
[u'centrelink', u'offer', u'payment', u'violent', u'spous']
[u'chamber', u'say', u'bundaberg', u'offer', u'busi']
[u'chelsea', u'unpreced', u'attack']
[u'chief', u'justic', u'want', u'bench', u'attract']
[u'citrus', u'grower', u'fruit', u'roadblock', u'concern']
[u'coal', u'concern', u'spark', u'port', u'author', u'visit']
[u'coal', u'industri', u'warn', u'immedi', u'relief']
[u'coal', u'termin', u'expect', u'endur', u'dalrympl']
[u'cole', u'chelsea', u'mourinho', u'charg']
[u'concert', u'kick', u'broom', u'festiv']
[u'corbi', u'lawyer', u'slow', u'organis', u'wit']
[u'corbi', u'take', u'stand', u'drug', u'trial']
[u'corbi', u'take', u'stand', u'bali', u'trial']
[u'coron', u'rule', u'sabotag', u'collis', u'hercul']
[u'council', u'consid', u'higher', u'sted', u'fee']
[u'council', u'cut', u'price', u'cooma', u'airport']
[u'council', u'hope', u'youth', u'centr']
[u'council', u'look', u'danc', u'parti', u'regul']
[u'council', u'consid', u'lighthous', u'develop', u'project']
[u'council', u'consid', u'reward', u'catch', u'grave', u'vandal']
[u'council', u'ahead', u'saleyard', u'deal']
[u'court', u'uphold', u'forestri', u'appeal', u'log', u'case']
[u'croesus', u'ahead', u'scotia', u'mine']
[u'cyclon', u'ravag', u'resort', u'oper', u'soon']
[u'dairi', u'farmer', u'receiv', u'drought', u'fund', u'boost']
[u'deplet', u'lion', u'gambl', u'lappin']
[u'dept', u'store', u'look', u'reopen', u'blaze']
[u'doctor', u'lose', u'appeal', u'careless', u'rule']
[u'dont', u'play', u'game', u'warn', u'state']
[u'appeal', u'porn', u'sentenc']
[u'driver', u'easter', u'road', u'safeti', u'remind']
[u'driver', u'warn', u'night', u'speed', u'camera']
[u'eagl', u'look', u'buck', u'adelaid', u'hoodoo']
[u'eagl', u'seek', u'buck', u'adelaid', u'hoodoo']
[u'easter', u'accommod', u'run', u'quick']
[u'elder', u'woman', u'give', u'dinosaur', u'secret']
[u'electranet', u'warn', u'south', u'east', u'power', u'shortag']
[u'england', u'zimbabw', u'cancel', u'test']
[u'europ', u'get', u'green', u'light', u'extens']
[u'fan', u'urg', u'tribut', u'broadbridg']
[u'farmer', u'optim', u'remain', u'mute']
[u'call', u'raaf', u'asbesto', u'hotlin']
[u'film', u'offer', u'communiti', u'super', u'benefit']
[u'financi', u'control', u'help', u'worker']
[u'western', u'land', u'leas', u'grant', u'lightn']
[u'fisher', u'face', u'high', u'easter', u'seafood', u'demand']
[u'focus', u'alic', u'spring', u'hospit', u'parliamentari']
[u'folk', u'festiv', u'promis', u'eclect', u'entertain']
[u'director', u'plead', u'guilti']
[u'champ', u'join', u'anti', u'dope', u'fight']
[u'fourteen', u'dead', u'refineri', u'blast']
[u'garuda', u'chief', u'face', u'investig', u'activist']
[u'gippsland', u'prove', u'popular', u'oversea', u'visitor']
[u'golf', u'hunt', u'scott', u'titl']
[u'govt', u'appal', u'school', u'apartheid', u'claim']
[u'govt', u'ask', u'final', u'saleyard']
[u'govt', u'assist', u'corbi', u'say']
[u'govt', u'reject', u'attack', u'countri', u'hospit']
[u'green', u'seek', u'public', u'input', u'expans', u'plan']
[u'green', u'beat', u'vote', u'valu']
[u'guard', u'kill', u'inmat', u'prison', u'break']
[u'hawk', u'look', u'young', u'brigad']
[u'health', u'servic', u'apologis', u'girl', u'hospit', u'snub']
[u'heritag', u'festiv', u'seek', u'broad', u'appeal']
[u'high', u'tech', u'solut', u'locat', u'coastal', u'hazard']
[u'highway', u'patrol', u'supervisor', u'fin', u'speed']
[u'holiday', u'driver', u'urg', u'care']
[u'howard', u'continu', u'talk', u'tough']
[u'howard', u'enter', u'debat']
[u'howard', u'play', u'advertis', u'spend']
[u'illawarra', u'hospit', u'chang', u'easter', u'elect', u'surgeri']
[u'illeg', u'worker', u'deport']
[u'inquest', u'find', u'miner', u'die', u'fix', u'equip']
[u'insurg', u'claim', u'control', u'raid', u'camp']
[u'investor', u'seek', u'holiday', u'park']
[u'iraqi', u'troop', u'raid', u'insurg', u'camp']
[u'jackson', u'lawyer', u'rush', u'hospit']
[u'japan', u'free', u'chess', u'champ', u'fischer']
[u'bush', u'question', u'schiavo', u'diagnosi']
[u'judg', u'rule', u'schiavo', u'appeal']
[u'kenyan', u'author', u'tortur', u'terror', u'suspect']
[u'kookaburra', u'brennan', u'bow']
[u'labor', u'emerg', u'prompt', u'win', u'cartoon']
[u'latham', u'sign', u'breaker', u'deal']
[u'give', u'hope', u'test']
[u'lennon', u'wont', u'overrid', u'pulp', u'decis']
[u'liber', u'moder', u'want', u'detent', u'chang']
[u'liber', u'sorri', u'attack', u'speaker']
[u'local', u'govt', u'stalwart', u'clarenc', u'valley', u'mayor']
[u'lollipop', u'highlight', u'fatigu', u'suck', u'polic']
[u'lyrebird', u'threaten', u'tasmania', u'rare', u'orchid']
[u'magazin', u'search', u'tiger']
[u'maitland', u'growth', u'boom', u'continu']
[u'shoot', u'polic', u'face', u'court']
[u'mening', u'outbreak', u'hit', u'sudanes', u'refuge', u'camp']
[u'mental', u'health', u'resourc', u'criticis', u'murder']
[u'minist', u'brief', u'macquari', u'field', u'polic', u'probe']
[u'minist', u'hit', u'propos', u'increas', u'park']
[u'minist', u'strike', u'chord', u'orchestra']
[u'minist', u'hear', u'council', u'har', u'race', u'concern']
[u'mix', u'result', u'region', u'popul', u'figur']
[u'develop', u'afoot', u'shellharbour', u'tent']
[u'call', u'ambul', u'staff', u'number', u'review']
[u'defend', u'name', u'surgeon', u'investig']
[u'want', u'apolog', u'campaign', u'claim', u'wife']
[u'want', u'continu', u'investig', u'polic']
[u'want', u'fairer', u'deal']
[u'home', u'sale', u'resili', u'februari']
[u'rape', u'alleg', u'surfac', u'notori']
[u'visa', u'oper', u'concern']
[u'toll', u'gympi', u'bypass', u'anderson']
[u'will', u'tax', u'time']
[u'price', u'blast', u'trigger', u'rise']
[u'opposit', u'demand', u'step']
[u'orchestra', u'kick', u'fund', u'fight']
[u'orchestra', u'meet', u'reassur', u'manag']
[u'pakistan', u'flash', u'flood', u'kill']
[u'perth', u'fin', u'airport', u'secur', u'breach']
[u'pike', u'make', u'sale', u'hospit', u'pledg']
[u'pilbara', u'star', u'film']
[u'pioneer', u'agricultur', u'town', u'celebr', u'centenari']
[u'say', u'govt', u'assist', u'corbi', u'case']
[u'polic', u'blame', u'parent', u'youth', u'crime', u'spree']
[u'policeman', u'shoot', u'dead', u'gold', u'coast']
[u'polic', u'oper', u'rais', u'communiti', u'concern']
[u'polic', u'forc', u'easter']
[u'poll', u'show', u'athen', u'wors', u'olymp']
[u'popul', u'growth', u'pose', u'urban', u'sprawl', u'challeng']
[u'pratt', u'stosur', u'florida']
[u'pregnanc', u'control', u'difficult', u'small', u'town', u'midwif']
[u'premier', u'studi', u'airport', u'scare', u'report']
[u'prison', u'rape', u'claim', u'delay', u'paedophil', u'releas']
[u'protest', u'storm', u'kyrgyz', u'govt', u'headquart']
[u'public', u'transport', u'boost', u'reveal', u'gold', u'coast']
[u'public', u'truste', u'fund', u'concern', u'air']
[u'qasim', u'deni', u'fail', u'cooper', u'immigr']
[u'rain', u'prevent', u'sydney', u'water', u'suppli', u'reach']
[u'ranger', u'remov', u'croc', u'swim', u'hole']
[u'support', u'express', u'whitewash', u'concern']
[u'refuge', u'group', u'seek', u'immigr', u'polici']
[u'resourc', u'bank', u'stock', u'continu', u'market', u'loss']
[u'riewoldt', u'injur', u'lion', u'reign', u'suprem']
[u'roar', u'mission', u'entertain', u'fan']
[u'rooney', u'england', u'place', u'safe', u'despit', u'polic', u'inquiri']
[u'brew', u'hospit', u'posit']
[u'rspca', u'polic', u'investig', u'cat', u'death']
[u'clarifi', u'coolac', u'rent']
[u'samaritan', u'welcom', u'fund', u'boost', u'crisi']
[u'scheme', u'allow', u'ballet', u'bush']
[u'schiavo', u'parent', u'lose', u'legal']
[u'schiavo', u'parent', u'court']
[u'schizophren', u'clear', u'girl', u'murder']
[u'serial', u'rapist', u'jail', u'indefinit']
[u'servic', u'demand', u'mean', u'tweed', u'rat', u'rise']
[u'sewag', u'treatment', u'plant', u'cost', u'increas']
[u'shark', u'sack', u'coach', u'open', u'door', u'macqueen']
[u'sharp', u'offer', u'perth', u'captainci']
[u'shire', u'ranger', u'council', u'burn', u'boat']
[u'short', u'rule', u'sumo']
[u'shot', u'fire', u'sydney']
[u'smell', u'filter', u'water']
[u'socceroo', u'like', u'spark', u'club', u'unrest']
[u'soldier', u'clear', u'bacteri', u'diseas']
[u'south', u'east', u'polic', u'warn', u'easter', u'road', u'crackdown']
[u'south', u'east', u'undergo', u'popul', u'explos']
[u'sunshin', u'state', u'top', u'popul', u'growth']
[u'support', u'plan', u'streamlin', u'cross', u'border']
[u'offer', u'xstrata', u'tell', u'sharehold']
[u'sweep', u'asia', u'pacif']
[u'thompson', u'reject', u'carcass', u'jibe']
[u'toddler', u'kill', u'truck', u'accid', u'near', u'school']
[u'inzamam', u'ball', u'test']
[u'tourist', u'flock', u'roma', u'easter']
[u'transport', u'corridor', u'face', u'hitch']
[u'tumbl', u'sharemarket', u'prompt', u'pakistani', u'riot']
[u'upper', u'hous', u'probe', u'funer', u'industri']
[u'armi', u'order', u'involuntari', u'troop']
[u'music', u'sale', u'piraci', u'bite']
[u'test', u'bird', u'vaccin', u'safeti']
[u'vanston', u'uncertain', u'visa', u'number']
[u'vatican', u'open', u'easter', u'ceremoni']
[u'vella', u'action', u'cancer']
[u'vote', u'hit', u'american', u'idol']
[u'driver', u'warn', u'easter', u'road', u'crackdown']
[u'wagga', u'policeman', u'fin', u'speed']
[u'shearer', u'aim', u'record']
[u'weed', u'challeng', u'rulebook']
[u'wether', u'name']
[u'wit', u'lie', u'underworld', u'murder', u'suspect', u'court']
[u'women', u'cricket', u'meet', u'zealand']
[u'woodchip', u'export', u'coal', u'plan']
[u'wright', u'step', u'india', u'coach']
[u'xstrata', u'expir']
[u'fear', u'dead', u'boat', u'capsiz', u'pakistan']
[u'abdul', u'probat', u'flee', u'crash', u'scene']
[u'aborigin', u'seek', u'return', u'tasmanian', u'land']
[u'afghanistan', u'creat', u'special', u'court', u'drug', u'lord']
[u'wrong', u'grant']
[u'aussi', u'eye', u'ash', u'pont', u'admit']
[u'australia', u'chang', u'travel', u'alert', u'philippin']
[u'australia', u'good', u'asian', u'footbal', u'iraqi', u'skipper']
[u'australian', u'octopus', u'walk', u'tentacl']
[u'baxter', u'protest', u'urg', u'remain', u'calm']
[u'beast', u'suburb', u'attack', u'london']
[u'chees', u'lanc', u'tour', u'franc', u'trail']
[u'brake', u'troubl', u'strand', u'plane', u'sydney', u'tarmac']
[u'brawl', u'kill', u'secur', u'guard', u'polic']
[u'brazil', u'polic', u'rescu', u'footbal', u'mother']
[u'bronco', u'hammer', u'rooster']
[u'bulldoz', u'link', u'rubber', u'tree', u'diseas']
[u'busi', u'urg', u'lennon', u'capitul']
[u'cahil', u'pass', u'socceroo']
[u'canada', u'reject', u'soldier', u'refuge']
[u'fire', u'spark', u'evacu', u'unit', u'block']
[u'carr', u'firm', u'futur', u'intent']
[u'christian', u'leader', u'reflect', u'love', u'triumph']
[u'competitor', u'fan', u'gather', u'peak', u'race']
[u'confer', u'develop', u'anti', u'child', u'abus']
[u'corbi', u'lawyer', u'give', u'time', u'produc', u'wit']
[u'death', u'toll', u'rise', u'texa', u'refineri', u'blast']
[u'diner', u'find', u'finger', u'fast', u'food']
[u'divorc', u'sheen', u'richard', u'fight', u'custodi']
[u'lobbi', u'kemp', u'recommend', u'fund']
[u'evan', u'await', u'interview']
[u'farrel', u'fast', u'track', u'england']
[u'deni', u'islam', u'group', u'refineri', u'blast']
[u'destroy', u'residenti', u'colleg']
[u'iraqi', u'women', u'shoot', u'dead', u'park']
[u'food', u'crisi', u'tsunami', u'zone', u'avert']
[u'open', u'champ', u'grab', u'lead']
[u'victorian', u'governor', u'mccaughey', u'die']
[u'frail', u'pope', u'miss', u'easter', u'ceremoni']
[u'game', u'chief', u'play', u'hardbal', u'canadian']
[u'golf', u'cours', u'kill', u'teenag']
[u'gopperth', u'kick', u'hurrican', u'victori']
[u'greec', u'dope', u'warehous', u'athlet', u'chief']
[u'health', u'author', u'issu', u'melioidosi', u'warn']
[u'horror', u'start', u'easter', u'road', u'toll']
[u'japan', u'issu', u'tsunami', u'alert', u'pacif']
[u'journalist', u'releas', u'hospit', u'iraq']
[u'wit', u'like', u'testifi', u'corbi', u'trial']
[u'king', u'battl', u'deplet', u'windi', u'squad']
[u'kmart', u'sear', u'sharehold', u'approv', u'merger']
[u'kyrgyz', u'opposit', u'leader', u'get']
[u'lawyer', u'wrangl', u'print', u'jackson', u'porn']
[u'stay', u'outer']
[u'lion', u'deni', u'victimis', u'riewoldt']
[u'major', u'build', u'undergo', u'energi', u'audit']
[u'charg', u'cruelti', u'cat', u'death']
[u'hospit', u'tram', u'accid']
[u'succumb', u'injuri', u'tram', u'accid']
[u'marburg', u'virus', u'claim', u'live']
[u'mear', u'releg', u'silver']
[u'minist', u'urg', u'speed', u'prison', u'inquiri']
[u'mayor', u'see', u'town', u'reviv', u'pulp']
[u'oliv', u'hospit', u'moone', u'valley', u'fall']
[u'oliv', u'easter', u'race', u'carniv']
[u'kill', u'crash', u'fraser', u'island']
[u'opposit', u'support', u'corbi', u'wit']
[u'pakistan', u'ignor', u'akhtar', u'seri']
[u'parent', u'moot', u'uniqu', u'number', u'student']
[u'pinochet', u'escap', u'investig', u'assassin']
[u'pipelin', u'syndic', u'respond', u'environment', u'fear']
[u'polic', u'helicopt', u'help', u'break', u'beachfront', u'parti']
[u'polic', u'kill', u'suspect', u'jacker']
[u'polic', u'undergo', u'counsel', u'kill', u'suspect']
[u'protest', u'converg', u'baxter']
[u'protest', u'settl', u'baxter']
[u'rain', u'fail', u'boost', u'canberra', u'level']
[u'charless', u'studio', u'museum']
[u'reckless', u'driver', u'amaz', u'perth', u'polic']
[u'refuge', u'activist', u'converg', u'baxter']
[u'refuge', u'advoc', u'march', u'vanston', u'home']
[u'riewoldt', u'month']
[u'river', u'campaign', u'call', u'mobil', u'dredg']
[u'road', u'crash', u'hospit', u'pressur']
[u'road', u'toll', u'prompt', u'black', u'friday', u'label']
[u'robinson', u'defend', u'farrel', u'raid']
[u'rooster', u'look', u'forward', u'hodg', u'reunion']
[u'runway', u'scarecrow', u'lose', u'translat']
[u'scientist', u'soft', u'tissu', u'bone']
[u'scud', u'surviv', u'test']
[u'secur', u'council', u'approv', u'sudan', u'peacekeep']
[u'secur', u'guard', u'die', u'street', u'brawl']
[u'seven', u'kill', u'afghanistan', u'firefight']
[u'shark', u'feed', u'frenzi', u'drift', u'north']
[u'shiit', u'kurd', u'delay', u'format', u'iraqi', u'govt']
[u'slingshot', u'lead', u'peak']
[u'small', u'retail', u'focus', u'plastic', u'campaign']
[u'sorenstam', u'teen', u'titan', u'chase', u'lead', u'trio', u'california']
[u'suicid', u'bomber', u'kill', u'iraqi', u'commando']
[u'suprem', u'court', u'stay', u'schiavo', u'case']
[u'suspect', u'gunman', u'arrest', u'shot', u'fire']
[u'tasmania', u'implement', u'legal', u'profess', u'reform']
[u'teenag', u'charg', u'rap', u'jogger']
[u'toddler', u'die', u'pool', u'accid']
[u'trio', u'jail', u'passport', u'fraud', u'law']
[u'tsunami', u'troop', u'pull']
[u'dead', u'crash', u'near', u'adelaid']
[u'approv', u'troop', u'sudan']
[u'chief', u'give', u'green', u'light', u'solv', u'hariri', u'death']
[u'see', u'checkmat', u'fischer']
[u'victorian', u'prison', u'evid', u'corbi']
[u'wall', u'street', u'avoid', u'risk', u'ahead', u'holiday']
[u'waratah', u'vickerman']
[u'weak', u'schiavo', u'show', u'sign', u'malnutrit']
[u'withhold', u'ground', u'separ', u'judg']
[u'woman', u'die', u'nation', u'park', u'cliff', u'fall']
[u'women', u'cricket', u'beat']
[u'world', u'bank', u'compil', u'staff', u'view', u'wolfowitz']
[u'youni', u'run', u'riot', u'bangalor']
[u'ail', u'pope', u'make', u'video', u'appear', u'cathol']
[u'dead', u'ghana', u'port']
[u'aussi', u'upper', u'hand', u'test']
[u'weather', u'hit']
[u'baxter', u'protest', u'clash', u'polic']
[u'baxter', u'protest', u'object', u'arrest', u'kite']
[u'black', u'cap', u'launch', u'stoic', u'resist']
[u'black', u'cap', u'lunch']
[u'bogut', u'hail', u'colleg', u'basketbal', u'best']
[u'british', u'opposit', u'dump', u'deputi', u'budget', u'remark']
[u'brook', u'bell', u'beach', u'final']
[u'carr', u'drive', u'docker', u'famous', u'victori']
[u'chief', u'minist', u'question', u'govt', u'motiv']
[u'coffe', u'shortag', u'brew', u'higher', u'price']
[u'conlon', u'promis', u'measur', u'respons', u'road', u'toll']
[u'culinari', u'ambassador', u'cook', u'intern']
[u'current', u'tax', u'fund', u'infrastructur', u'need']
[u'custom', u'keep', u'watch', u'illeg', u'fish', u'boat']
[u'daylight', u'save', u'end', u'tomorrow']
[u'democrat', u'want', u'detail', u'clone', u'law', u'review']
[u'demonstr', u'continu', u'baxter', u'protest']
[u'divorc', u'paper', u'finalis', u'aniston', u'pitt', u'split']
[u'drown', u'tragic', u'safeti', u'remind', u'parent']
[u'easter', u'road', u'toll', u'rise']
[u'elect', u'inquiri', u'begin', u'maranoa']
[u'elrich', u'save', u'socceroo', u'blush']
[u'emot', u'demon', u'crush', u'bomber']
[u'eremein', u'give', u'denham', u'success']
[u'excit', u'hold', u'highland', u'edg', u'cat']
[u'fake', u'tasmanian', u'tiger', u'sight', u'cost', u'taxpay']
[u'famili', u'euthanasia', u'plea', u'fail', u'sway']
[u'fatal', u'train', u'crash', u'report', u'recommend', u'warn', u'chang']
[u'troop', u'kill', u'blast', u'afghanistan']
[u'gospel', u'music', u'fan', u'bolster', u'toowoomba', u'economi']
[u'govt', u'urg', u'increas', u'ethanol', u'product']
[u'hospit', u'fundrais', u'break', u'record']
[u'howard', u'wont', u'extend', u'embryon', u'stem', u'cell', u'research']
[u'hundr', u'thousand', u'march', u'china', u'threat']
[u'impress', u'roo', u'bounc', u'blue']
[u'injur', u'charg', u'hotel', u'shoot']
[u'iraqi', u'forc', u'seiz', u'suspect', u'raid']
[u'jackson', u'juror', u'consid', u'fingerprint']
[u'judg', u'reject', u'attempt', u'reopen', u'schiavo', u'case']
[u'kelli', u'bat', u'pick', u'bronz']
[u'termin', u'plead', u'famili']
[u'liber', u'urg', u'jump', u'ship', u'springborg']
[u'lower', u'tax', u'attract', u'resid', u'stefaniak']
[u'mear', u'sister', u'track']
[u'middl', u'east', u'top', u'asian', u'world', u'qualifi']
[u'militiamen', u'work', u'restor', u'order', u'kyrgyzstan']
[u'molik', u'down', u'pratt', u'advanc', u'florida']
[u'monaco', u'princ', u'rainier', u'fight', u'life']
[u'mountain', u'biker', u'search']
[u'move', u'expand', u'mental', u'health', u'sector']
[u'approach', u'need', u'endem', u'infrastructur']
[u'kyrgyzstan', u'leader', u'appeal', u'calm']
[u'oliv', u'dark', u'return']
[u'oliv', u'easter', u'race', u'carniv']
[u'oliv', u'wait', u'news', u'spine']
[u'charg', u'high', u'speed', u'chase']
[u'oust', u'kyrgyz', u'presid', u'slam', u'coup']
[u'panther', u'leav', u'dragon', u'rock']
[u'philippin', u'high', u'alert', u'amid', u'easter', u'celebr']
[u'polic', u'defend', u'return', u'gun', u'murder', u'suicid']
[u'polic', u'prepar', u'baxter', u'protest']
[u'polic', u'search', u'test', u'case', u'rule', u'duti']
[u'polic', u'seek', u'driver', u'phone', u'exchang', u'inquiri']
[u'polic', u'seek', u'wit', u'belconnen', u'abduct']
[u'polic', u'identifi', u'victim']
[u'pope', u'health', u'overshadow', u'good', u'friday', u'celebr']
[u'port', u'wari', u'docker', u'defector']
[u'prankster', u'smuggl', u'museum']
[u'protest', u'clash', u'polic']
[u'public', u'help', u'seek', u'search', u'miss', u'teen']
[u'public', u'servic', u'honour', u'mccaughey']
[u'riewoldt', u'go', u'knife']
[u'riewoldt', u'surgeri', u'success', u'saint']
[u'ross', u'hail', u'gift', u'keep', u'give']
[u'sar', u'virus', u'spread']
[u'schiavo', u'hour', u'live', u'father']
[u'sehwag', u'ignit', u'india', u'explos']
[u'sexual', u'abus', u'rife', u'aceh', u'tsunami', u'camp']
[u'shark', u'bite', u'eel']
[u'slow', u'go', u'peak', u'field']
[u'socceroo', u'edg', u'iraq']
[u'somali', u'cleric', u'threaten', u'jihad', u'peacekeep']
[u'sorenstam', u'grab', u'share', u'california', u'lead']
[u'stagnant', u'popul', u'worri', u'busi', u'govern']
[u'storm', u'south', u'east']
[u'sublim', u'hewat', u'steer', u'waratah', u'victori']
[u'taiwanes', u'turn', u'ralli', u'china']
[u'tasmania', u'grant', u'miner', u'explor', u'licens']
[u'tennant', u'creek', u'look']
[u'tsunami', u'creat', u'gender', u'imbal', u'oxfam']
[u'sell', u'fighter', u'plan', u'pakistan']
[u'sell', u'fighter', u'jet', u'pakistan']
[u'whale', u'tangl', u'fish', u'gear', u'coast']
[u'women', u'surviv', u'dead', u'jellyfish']
[u'work', u'begin', u'prison', u'corbi', u'drug', u'trial']
[u'world', u'bank', u'wolfowitz', u'hold', u'construct', u'meet']
[u'wrist', u'injuri', u'halt', u'roddick', u'titl', u'defenc']
[u'abus', u'iraqi', u'go', u'ghraib', u'document']
[u'airlin', u'limit', u'crew', u'north', u'pole', u'exposur', u'amid']
[u'world', u'australia', u'women']
[u'arm', u'robberi', u'leav', u'victim', u'hospit']
[u'aussi', u'lose', u'centurion', u'pont']
[u'australian', u'charg', u'mine', u'pollut']
[u'bait', u'research', u'halt', u'cane', u'toad', u'spread']
[u'basketbal', u'accid', u'sever', u'boy', u'hand', u'foot']
[u'baxter', u'protest', u'forc', u'polic']
[u'bomb', u'defus', u'near', u'spanish', u'embassi', u'philippin']
[u'kill', u'driveway', u'accid']
[u'miss', u'lake', u'hume']
[u'brother', u'goanna', u'pull', u'championship']
[u'burmes', u'leader', u'talk', u'democrat', u'constitut']
[u'cairo', u'court', u'jail', u'spi', u'iran']
[u'bomb', u'rock', u'beirut', u'christian', u'district']
[u'cat', u'purr', u'tiger']
[u'chines', u'media', u'condemn', u'taiwanes', u'protest']
[u'clean', u'continu', u'savag', u'storm', u'lash', u'south']
[u'clock', u'sync', u'daylight', u'save', u'end']
[u'coordin', u'appoint', u'communiti', u'justic', u'group']
[u'cowboy', u'warrior', u'tight', u'clash']
[u'cricket', u'australia', u'probe', u'warn', u'phone', u'claim']
[u'date', u'kyrgyzstan', u'presidenti', u'vote']
[u'diouf', u'lead', u'premiership', u'goal', u'parad', u'seneg']
[u'disabl', u'group', u'urg', u'euthanasia']
[u'donkey', u'lead', u'melbourn', u'easter', u'march']
[u'eagl', u'late', u'swoop', u'crow']
[u'easter', u'road', u'toll', u'continu', u'climb']
[u'dead', u'caribbean', u'plane', u'crash']
[u'elder', u'drown', u'boat', u'incid']
[u'elvstroem', u'romp', u'dubai']
[u'embryo', u'research', u'ban', u'disappoint', u'church']
[u'england', u'turn', u'style']
[u'escap', u'tunnel', u'iraqi', u'prison']
[u'explos', u'rock', u'sydney', u'shop', u'strip']
[u'farina', u'tunnel', u'report']
[u'fear', u'rare', u'parrot', u'speci', u'declin']
[u'feder', u'round', u'biscayn']
[u'filipino', u'columnist', u'shoot', u'dead']
[u'destroy', u'canberra', u'hous']
[u'attack', u'teenag']
[u'british', u'jam', u'callaghan', u'die', u'age']
[u'wheel', u'drive', u'curb', u'park', u'easter']
[u'franc', u'falter', u'road', u'world']
[u'frenchwoman', u'row', u'solo', u'pacif']
[u'fresh', u'attack', u'palm', u'polic', u'station']
[u'govt', u'deni', u'propos', u'megamart', u'impact']
[u'govt', u'easter', u'sunday', u'trade', u'nile', u'say']
[u'group', u'welcom', u'govt', u'plan', u'updat', u'palliat']
[u'hawk', u'horror', u'start']
[u'hillbilli', u'creator', u'die']
[u'immigr', u'check', u'screen', u'crimin']
[u'israel', u'super', u'stun', u'irish']
[u'itali', u'sink', u'scotland']
[u'jetstar', u'asia', u'add', u'manila', u'rout']
[u'kaneria', u'hop', u'strike', u'spinner']
[u'kiwi', u'tail', u'fail']
[u'latest', u'rock', u'attack', u'possibl', u'random']
[u'laxman', u'thwart', u'pakistan', u'bangalor']
[u'lebanes', u'leader', u'pledg', u'work']
[u'mactier', u'bat', u'fight', u'track', u'gold']
[u'mactier', u'win', u'pursuit', u'world', u'titl']
[u'climb', u'roof', u'vatican', u'basilica']
[u'hold', u'hostag', u'newcastl', u'sieg']
[u'marriag', u'certif', u'chang', u'thwart', u'crimin']
[u'messag', u'hope', u'pope', u'easter', u'vigil']
[u'mickleberg', u'continu', u'fight', u'clear']
[u'million', u'north', u'korean', u'face', u'food', u'shortag']
[u'minist', u'urg', u'check', u'koongarra', u'polici']
[u'miss', u'sydney', u'man']
[u'call', u'referendum', u'year', u'term']
[u'assur', u'seek', u'hick', u'trial', u'ruddock']
[u'team', u'honour', u'basebal', u'shape']
[u'korea', u'confirm', u'bird', u'outbreak']
[u'need', u'review', u'alcohol', u'program', u'rupa']
[u'pilot', u'kill', u'glider', u'collid']
[u'polic', u'defend', u'action', u'baxter']
[u'polic', u'effort', u'amaz', u'baxter', u'protest']
[u'polic', u'drink', u'driver', u'twice']
[u'polic', u'search', u'shoot', u'stomach']
[u'pont', u'put', u'aussi', u'control']
[u'pope', u'attempt', u'easter', u'bless']
[u'princ', u'charl', u'apologis', u'camilla']
[u'princ', u'rainier', u'condit', u'worsen']
[u'prison', u'arriv', u'bali']
[u'prison', u'arriv', u'bali', u'corbi', u'trial']
[u'nerv', u'win', u'tough', u'brisban', u'gladston', u'race']
[u'resili', u'tiger', u'upset', u'bulldog']
[u'riewoldt', u'hold', u'grudg', u'lion', u'pair']
[u'right', u'case', u'import']
[u'ruddock', u'hit', u'corbi', u'lawyer']
[u'speaker', u'order', u'paedophil', u'claim']
[u'schiavo', u'near', u'death', u'legal', u'option']
[u'scud', u'injuri', u'blow']
[u'eagl', u'continu', u'perfect', u'start']
[u'search', u'begin', u'miss', u'raft', u'trip']
[u'search', u'locat', u'miss', u'rafter']
[u'seven', u'arrest', u'baxter', u'protest']
[u'shark', u'bounc', u'shock', u'brumbi']
[u'sizzl', u'sorenstam', u'take', u'control']
[u'slingshot', u'maintain', u'massiv', u'lead']
[u'slingshot', u'take', u'massiv', u'peak', u'lead']
[u'snowsil', u'quirk', u'nation', u'triathlon', u'titl']
[u'socceroo', u'give', u'glimps', u'what', u'store']
[u'stagnant', u'popul', u'growth', u'cyclic', u'forecast']
[u'strong', u'earthquak', u'record', u'eastern', u'indonesia']
[u'church', u'leader', u'condemn', u'embryon', u'stem', u'cell']
[u'task', u'forc', u'tackl', u'elder', u'abus']
[u'thai', u'railway', u'attack', u'injur']
[u'children', u'kill', u'nepal', u'explos']
[u'toll', u'rise', u'ebola', u'like', u'virus', u'outbreak']
[u'turkish', u'right', u'advis', u'resign']
[u'protest', u'offer', u'asylum', u'seeker', u'support']
[u'warn', u'claim', u'privat', u'matter', u'cricket', u'australia']
[u'westwood', u'durant', u'share', u'clubhous', u'lead']
[u'whale', u'rescu', u'continu', u'coast']
[u'wit', u'risk', u'life', u'corbi']
[u'word', u'whiz', u'spell', u'scrabbl', u'record']
[u'young', u'christian', u'begin', u'uluru', u'pilgrimag']
[u'power', u'adelaid']
[u'actew', u'boss', u'defend', u'report', u'delay']
[u'govt', u'urg', u'eas', u'public', u'servant', u'workload']
[u'showcas', u'electron', u'vote']
[u'investig', u'suspect', u'assault', u'garuda', u'flight']
[u'afridi', u'youni', u'bangalor', u'thriller']
[u'afridi', u'put', u'india', u'troubl', u'bangalor']
[u'airlin', u'passeng', u'injur', u'turbul']
[u'servic', u'expect', u'lift', u'high', u'countri']
[u'alic', u'spring', u'pistol', u'rang', u'target']
[u'annan', u'condemn', u'lebanon', u'bomb']
[u'australian', u'keen', u'foreign', u'polici', u'survey']
[u'backbench', u'back', u'costello']
[u'bakiyev', u'confirm', u'act', u'presid']
[u'baryulgil', u'tell', u'asbesto', u'compo', u'limit']
[u'battl', u'power', u'kyrgyzstan', u'prompt', u'warn']
[u'bauxit', u'tender', u'choos', u'year']
[u'baxter', u'protest', u'disturb', u'asylum', u'seeker']
[u'baxter', u'protest', u'violent']
[u'beatti', u'welcom', u'latest', u'poll', u'result']
[u'black', u'cap', u'struggl', u'test']
[u'blast', u'injur', u'diplomat', u'report']
[u'blood', u'circul', u'boy', u'limb', u'reattach']
[u'bodi', u'water', u'north', u'cronulla']
[u'bondi', u'search', u'call']
[u'bottl', u'messag', u'year', u'send']
[u'bundaberg', u'surgeon', u'resign', u'incompet', u'claim']
[u'driver', u'assault', u'prompt', u'restraint']
[u'chang', u'infrastructur', u'fund']
[u'accid', u'take', u'road', u'toll']
[u'chelsea', u'boss', u'coach', u'peac', u'israel']
[u'church', u'enjoy', u'higher', u'easter', u'patronag']
[u'cockatoo', u'hit', u'right', u'note', u'music', u'festiv']
[u'commonwealth', u'north', u'atsic', u'asset']
[u'coordin', u'expect', u'boost', u'communiti', u'justic']
[u'corbi', u'lawyer', u'speak', u'prison']
[u'corbi', u'lawyer', u'meet', u'wit']
[u'council', u'fear', u'famili', u'exposur', u'asbesto']
[u'council', u'see', u'worth', u'late', u'night', u'servic']
[u'crash', u'leav', u'boy', u'hospit']
[u'crowd', u'hous', u'drummer', u'die']
[u'defenc', u'personnel', u'home', u'aceh']
[u'democrat', u'vote', u'year', u'term']
[u'deputi', u'defend', u'infrastructur', u'spend']
[u'diver', u'join', u'search', u'miss']
[u'doctor', u'confid', u'boy', u'limb', u'attach']
[u'driver', u'remind', u'hand', u'hold', u'phone', u'danger']
[u'dual', u'qualif', u'offer', u'outback', u'govern']
[u'easter', u'driver', u'ask', u'care', u'come', u'home']
[u'easter', u'driver', u'urg', u'home', u'safe']
[u'easter', u'road', u'toll', u'rise']
[u'europ', u'attempt', u'kyrgyzstan', u'solut']
[u'famili', u'consid', u'civil', u'action', u'alleg']
[u'fatal', u'mar', u'weekend', u'road', u'record']
[u'fear', u'sectarian', u'unrest', u'grow', u'beirut', u'blast']
[u'fight', u'philippin', u'kill', u'rebel']
[u'firefight', u'want', u'fund', u'distribut', u'rethink']
[u'flatley', u'highland', u'clash']
[u'foreign', u'polici', u'focus', u'survey']
[u'crowd', u'hous', u'drummer', u'dead']
[u'girl', u'crush', u'kitchen', u'bench']
[u'time', u'rebuild', u'hawk', u'clarkson']
[u'gobi', u'yellow', u'dust', u'storm', u'north', u'korea']
[u'govt', u'ask', u'provid', u'home', u'care', u'option']
[u'govt', u'defend', u'homeless', u'strategi']
[u'govt', u'like', u'way', u'hous', u'corp']
[u'govt', u'urg', u'fight', u'alcohol', u'abus']
[u'govt', u'urg', u'offer', u'cut']
[u'great', u'lake', u'council', u'join', u'chang', u'task', u'forc']
[u'gunn', u'continu', u'monitor', u'bushfir']
[u'health', u'right', u'commiss', u'investig', u'teen', u'death']
[u'high', u'hop', u'controversi', u'rice']
[u'hospit', u'floor', u'option', u'unlik']
[u'hous', u'minist', u'deni', u'public', u'servic', u'nepot']
[u'investig', u'continu', u'pedestrian', u'cross']
[u'iranian', u'diplomat', u'dismiss', u'nuclear', u'weapon']
[u'islam', u'leader', u'meet', u'unrest', u'southern']
[u'japan', u'distribut', u'tsunami', u'warn', u'data']
[u'june', u'open', u'date', u'cultur', u'centr']
[u'kaka', u'seal', u'brazil']
[u'katich', u'gillespi', u'stand', u'firm']
[u'knesset', u'decid', u'gaza', u'pullout', u'referendum']
[u'kyrgyzstan', u'leader', u'avoid', u'spill']
[u'lewi', u'unrepent', u'paedophil']
[u'liber', u'switch', u'support', u'costello']
[u'local', u'polic', u'hope', u'fatal', u'free', u'easter']
[u'matthew', u'slam', u'mcguir', u'riewoldt', u'reaction']
[u'owner', u'consid', u'govt', u'wood', u'offer']
[u'miner', u'offer', u'moranbah', u'help', u'hand']
[u'minist', u'consid', u'school', u'plan']
[u'minist', u'hear', u'har', u'race', u'protest']
[u'miss', u'boy', u'bodi']
[u'miss', u'bushwalk']
[u'molik', u'set', u'henin', u'clash']
[u'foreign', u'fighter', u'enter', u'iraq', u'general']
[u'shower', u'possibl', u'north']
[u'mourinho', u'coach', u'peac', u'israel']
[u'year', u'term', u'draw', u'mix', u'respons']
[u'morgan', u'get', u'jump', u'track', u'plan']
[u'music', u'industri', u'mourn', u'pass', u'paul', u'hester']
[u'manildra', u'accid', u'victim', u'releas']
[u'nepal', u'arrest', u'anti', u'king', u'protest']
[u'confid', u'knight', u'sponsor']
[u'nundl', u'gold', u'mine', u'heritag', u'celebr']
[u'nurs', u'unhappi', u'offer']
[u'oxford', u'boat', u'race']
[u'pakistan', u'win', u'final', u'india', u'test']
[u'park', u'council', u'skittl', u'bowl', u'centr', u'support']
[u'peac', u'pill', u'workshop', u'draw', u'worldwid']
[u'perth', u'recov', u'limb', u'surgeri']
[u'polic', u'hoon', u'confisc']
[u'polic', u'hunt', u'prison', u'farm', u'escape']
[u'polic', u'investig', u'hardwar', u'store', u'blaze']
[u'polic', u'easter', u'speedster']
[u'polic', u'pedestrian', u'cross', u'victim']
[u'polic', u'plead', u'fatal', u'free', u'easter', u'monday']
[u'polic', u'prais', u'easter', u'driver']
[u'polic', u'cafe', u'suspici']
[u'polic', u'swoop', u'cannabi', u'plantat']
[u'polic', u'unhappi', u'easter', u'drink', u'driver']
[u'polic', u'warn', u'driver', u'care', u'come', u'home']
[u'pope', u'skip', u'easter', u'monday', u'bless']
[u'princ', u'rainier', u'stabl', u'condit']
[u'princ', u'rainier', u'condit', u'worri', u'doctor']
[u'prison', u'escape', u'remain', u'larg']
[u'probe', u'consid', u'speed', u'policeman', u'disciplin']
[u'rafter', u'plan', u'futur', u'trip', u'better']
[u'raider', u'unbeaten', u'defeat', u'rabbitoh']
[u'rain', u'hit', u'scott', u'close']
[u'cross', u'urg', u'blood', u'donat']
[u'restor', u'pleas', u'stain', u'glass', u'result']
[u'ross', u'confid', u'chanc', u'stawel', u'glori']
[u'ross', u'win', u'gift', u'scratch']
[u'meet', u'unit', u'church', u'funer']
[u'runway', u'revamp', u'take']
[u'schiavo', u'day', u'leav', u'live']
[u'scientist', u'research', u'contain', u'cane', u'toad']
[u'search', u'continu', u'involv', u'sieg']
[u'search', u'resum', u'miss', u'bushwalk']
[u'search', u'resum', u'miss', u'swimmer']
[u'seven', u'kill', u'kerbala', u'bomb', u'attack']
[u'shop', u'damag', u'ipswich', u'blaze']
[u'silver', u'bat']
[u'slingshot', u'head', u'peak']
[u'softwar', u'problem', u'blame', u'incorrect', u'speed']
[u'sorenstam', u'get', u'grand', u'slam', u'track']
[u'space', u'station', u'crew', u'complet', u'swift', u'spacewalk']
[u'space', u'station', u'crew', u'ventur', u'outsid']
[u'spirit', u'bulldog', u'magpi']
[u'storm', u'caus', u'power', u'disrupt']
[u'strand', u'fishermen', u'winch', u'safeti']
[u'struggl', u'farmer', u'tell', u'offer']
[u'sudan', u'crime', u'accus']
[u'suspect', u'heart', u'attack', u'kill', u'diver']
[u'suspect', u'murder', u'reduc', u'road', u'toll', u'count']
[u'taiwanes', u'opposit', u'begin', u'histor', u'china', u'visit']
[u'taskforc', u'probe', u'filipina', u'journalist', u'death']
[u'time', u'run', u'whale', u'rescu']
[u'tsunami', u'thought', u'boost', u'easter', u'church', u'servic']
[u'kill', u'road']
[u'compani', u'sue', u'soni', u'playstat', u'consol']
[u'consid', u'chang', u'militari', u'tribun']
[u'hold', u'militari', u'busi', u'brief', u'central']
[u'vail', u'upbeat', u'free', u'trade', u'prospect', u'farmer']
[u'govt', u'push', u'nation', u'cloth', u'standard']
[u'visitor', u'bolster', u'easter', u'church', u'servic']
[u'warrior', u'jackson', u'face', u'past', u'accus']
[u'water', u'centr', u'receiv', u'fund', u'boost']
[u'win', u'sculptur', u'water', u'save', u'messag']
[u'woman', u'charg', u'stab', u'death']
[u'work', u'inspector', u'target', u'legal', u'practic']
[u'young', u'resid', u'join', u'user', u'pay', u'water']
[u'accc', u'weigh', u'regul']
[u'driver', u'prais']
[u'govt', u'consid', u'boost', u'health', u'fund']
[u'resist', u'call', u'suicid', u'time', u'facil']
[u'adler', u'tell', u'court', u'stupid', u'error']
[u'agforc', u'fear', u'develop', u'lockout', u'river', u'plan']
[u'alectown', u'victim', u'help', u'polic', u'inquiri']
[u'amnesti', u'criticis', u'human', u'right', u'report']
[u'astl', u'lead', u'zealand', u'fight']
[u'suffer', u'easter', u'hangov']
[u'aussi', u'domin', u'round', u'phillip', u'island']
[u'aussi', u'lose', u'wicket', u'chase']
[u'aussi', u'thrash', u'black', u'cap', u'wrap', u'seri']
[u'aussi', u'unbeaten', u'women', u'world']
[u'aussi', u'wine', u'prove', u'corker']
[u'australian', u'team', u'compet', u'champ', u'seri']
[u'australia', u'respond', u'earthquak', u'crisi']
[u'babi', u'seal', u'hunt', u'resum', u'canada']
[u'barrett', u'return', u'dragon', u'line']
[u'barton', u'defend', u'interrog', u'claim']
[u'battl', u'parliament', u'kyrgyzstan', u'end']
[u'battl', u'wentworth', u'cost']
[u'beatti', u'warn', u'council', u'land', u'valu']
[u'bell', u'warn', u'eyesor']
[u'begin', u'takeov', u'mail']
[u'bicycl', u'bomber', u'kill', u'iraq']
[u'tourism', u'campaign', u'promot', u'central', u'victoria']
[u'boat', u'safeti', u'crackdown', u'net', u'breaker']
[u'bodi', u'identifi', u'miss', u'sydney', u'dealer']
[u'bogut', u'nomin', u'draft']
[u'bomber', u'bradley', u'nomin', u'rise', u'star', u'award']
[u'boost', u'plan', u'break', u'hill', u'radiolog', u'servic']
[u'expect', u'recoveri', u'limb']
[u'brigalow', u'belt', u'futur', u'uncertain', u'nation']
[u'burn', u'off', u'creat', u'mushroom', u'cloud', u'hobart']
[u'busi', u'chamber', u'maintain', u'daylight', u'save']
[u'cabonn', u'council', u'examin', u'limeston', u'quarri']
[u'talk', u'hous', u'author']
[u'canberra', u'hous', u'price', u'fall']
[u'carr', u'apolog', u'seek', u'dead']
[u'carr', u'concern', u'opinion', u'trend']
[u'charman', u'rub', u'match']
[u'club', u'fight', u'play', u'music', u'louder', u'longer']
[u'coat', u'arm', u'trial', u'open', u'canberra']
[u'corbi', u'innoc', u'victim', u'prison']
[u'corbi', u'wit', u'offer', u'incent', u'testimoni']
[u'coron', u'reserv', u'decis', u'leski', u'inquest']
[u'council', u'rethink', u'residenti', u'develop', u'opposit']
[u'council', u'say', u'dirti', u'water', u'health', u'risk']
[u'council', u'answer', u'airport', u'sale', u'question']
[u'court', u'adjourn', u'paedophil', u'priest', u'sentenc']
[u'damag', u'wave', u'hit', u'indonesian', u'island']
[u'delay', u'water', u'option', u'report', u'worri', u'opposit']
[u'detect', u'tight', u'lip', u'kilburn', u'murder']
[u'dozen', u'report', u'dead', u'indonesian', u'island']
[u'driver', u'fail', u'road', u'safeti', u'messag']
[u'drug', u'industri', u'agre', u'generic', u'price']
[u'earthquak', u'hit', u'indonesia']
[u'easter', u'tourism', u'boost', u'mildura', u'coffer']
[u'easter', u'traffic', u'choke', u'local', u'road']
[u'epilepsi', u'drug', u'offer', u'hope', u'headach', u'suffer']
[u'fear', u'hold', u'oyster', u'grower', u'futur']
[u'intent', u'resolv', u'disput']
[u'fish', u'crackdown', u'net', u'offenc']
[u'flegg', u'deni', u'asbesto', u'scare', u'tactic', u'claim']
[u'offici', u'blast', u'bolton', u'nomin']
[u'fruit', u'effort', u'microscop']
[u'fruit', u'grower', u'pressur', u'global', u'market']
[u'fund', u'seek', u'church', u'museum', u'plan']
[u'fund', u'black', u'spot', u'intersect']
[u'lover', u'tripl', u'murder', u'trial', u'open']
[u'geneticist', u'hunt', u'cancer', u'achill', u'heel']
[u'giant', u'panda', u'move', u'food', u'sourc']
[u'gift', u'confirm', u'ross', u'boss', u'coach']
[u'gilchrist', u'close', u'bat', u'world', u'record']
[u'govt', u'launch', u'region', u'directori']
[u'govt', u'region', u'help', u'wind']
[u'govt', u'seek', u'second', u'tweed', u'council', u'probe']
[u'govt', u'warn', u'lift', u'nurs']
[u'group', u'stage', u'parliament', u'power', u'station', u'protest']
[u'heart', u'diseas', u'patient', u'need', u'hospit', u'coron']
[u'help', u'cyclon', u'damag', u'school', u'hold']
[u'higher', u'valu', u'dont', u'necessarili', u'mean', u'rate', u'rise']
[u'hors', u'trampl', u'leav', u'woman', u'hospit']
[u'balloonist', u'plan', u'break', u'world', u'record']
[u'hunter', u'rain', u'boost', u'storag', u'level']
[u'hunter', u'thoroughbr', u'fetch']
[u'india', u'tsunami', u'island', u'hold', u'cultur', u'bash']
[u'indonesian', u'island', u'bear', u'brunt', u'quak']
[u'investig', u'launch', u'death']
[u'inzamam', u'ban', u'test']
[u'automot', u'sack', u'staff']
[u'iraqi', u'parliament', u'fail', u'agre', u'speaker']
[u'jackson', u'trial', u'hear', u'accus']
[u'jumbo', u'win', u'grand', u'nation', u'steepl']
[u'kimberley', u'water', u'plan', u'consult', u'begin']
[u'landfil', u'report', u'back', u'recycl', u'overhaul']
[u'land', u'valu', u'rise', u'north']
[u'land', u'valu', u'skyrocket', u'north']
[u'laxman', u'kumbl', u'drop', u'dayer']
[u'leichhardt', u'result', u'hing', u'court', u'case']
[u'liber', u'backbench', u'deflect', u'schultz', u'comment']
[u'liber', u'senat', u'urg', u'govt', u'forego', u'cut']
[u'macdougal', u'opt', u'match', u'suspens']
[u'macdougal', u'match']
[u'charg', u'karratha', u'sieg']
[u'tell', u'avoid', u'alcohol', u'plane', u'alterc']
[u'market', u'plan', u'central', u'west']
[u'mayor', u'highlight', u'public', u'transport', u'import']
[u'mayor', u'beat', u'castlemain', u'jail']
[u'media', u'warn', u'palm', u'island', u'hear']
[u'charg', u'heroin', u'smuggl']
[u'north', u'coast', u'group', u'air', u'quak', u'concern']
[u'minist', u'ask', u'delay', u'race', u'meet', u'decis']
[u'minist', u'wont', u'comment', u'grant']
[u'molik', u'fall', u'henin', u'hardenn']
[u'monaco', u'princ', u'rainier', u'fragil']
[u'morocco', u'releas', u'guantanamo', u'detaine']
[u'easter', u'driver', u'behav']
[u'mother', u'priest', u'twin', u'sue', u'church']
[u'nation', u'pledg', u'million', u'khmer', u'roug', u'trial']
[u'quak', u'spark', u'tsunami', u'fear']
[u'nomin', u'seek', u'region', u'achiev', u'award']
[u'intern', u'fund', u'need']
[u'plan', u'doubl', u'holiday', u'road', u'fin']
[u'north', u'west', u'team', u'win', u'peak', u'race']
[u'stop', u'econom', u'boom']
[u'charg', u'round', u'match']
[u'nufarm', u'deliv', u'profit', u'turnaround']
[u'nurs', u'strike', u'better', u'condit']
[u'nurs', u'wont', u'rule', u'industri', u'unrest']
[u'price', u'eas', u'dollar', u'firm']
[u'bone', u'provid', u'tourist', u'potenti']
[u'opposit', u'air', u'tick', u'fever', u'vaccin', u'concern']
[u'opposit', u'want', u'time', u'facil', u'reduc']
[u'pacif', u'hydro', u'board', u'back', u'spanish', u'takeov']
[u'pagan', u'sign', u'blue']
[u'pair', u'face', u'court', u'hold']
[u'palm', u'island', u'death', u'custodi', u'hear', u'begin']
[u'peterborough', u'sewag', u'prove', u'cost']
[u'phone', u'servic', u'return', u'normal']
[u'pledg', u'quak', u'indonesia']
[u'protest', u'shoe', u'insult']
[u'polic', u'baffl', u'easter', u'breaker']
[u'polic', u'believ', u'bodi', u'miss']
[u'polic', u'blame', u'baxter', u'protest', u'reduc', u'road']
[u'polic', u'concern', u'drink', u'drive', u'rise']
[u'polic', u'endur', u'violent', u'easter']
[u'polic', u'investig', u'corbi', u'wit', u'claim']
[u'policeman', u'bash', u'bremer']
[u'polic', u'easter', u'drink', u'driver']
[u'polic', u'presenc', u'avoid', u'easter', u'biki', u'troubl']
[u'polic', u'presenc', u'help', u'record', u'fatal', u'free', u'easter']
[u'polic', u'probe', u'lake', u'crash']
[u'polic', u'record', u'incid', u'free', u'easter']
[u'polic', u'search', u'clue', u'miss', u'businessman']
[u'polic', u'investig', u'garuda', u'flight', u'incid']
[u'polic', u'stock', u'disastr', u'easter', u'break']
[u'power', u'switch', u'lion', u'clash']
[u'pressur', u'deter', u'doctor', u'assault']
[u'previous', u'jackson', u'abus', u'claim', u'court']
[u'privat', u'patient', u'hospit', u'servic']
[u'pros', u'abandon', u'bell', u'search', u'surf']
[u'politician', u'remain', u'hospit']
[u'quak', u'caus', u'panic', u'tsunami']
[u'quak', u'delay', u'sbys', u'visit', u'australia']
[u'quak', u'hit', u'indonesian', u'island', u'sumatra']
[u'quak', u'prompt', u'tidal', u'warn']
[u'rabbitoh', u'promis', u'action', u'bottl', u'thrower']
[u'cross', u'call', u'blood']
[u'report', u'highlight', u'truck', u'industri', u'owner', u'driver', u'woe']
[u'research', u'consid', u'drug']
[u'restrict', u'unlik', u'week']
[u'robot', u'replac', u'battlefield', u'medic']
[u'rocker', u'geldof', u'sign', u'book', u'deal']
[u'roger', u'sidelin', u'week']
[u'roster', u'prompt', u'polic', u'confid', u'motion']
[u'santo', u'work', u'jeruk', u'field', u'explor']
[u'schiavo', u'autopsi', u'conspiraci', u'talk']
[u'school', u'get', u'fund', u'save', u'water']
[u'school', u'urg', u'accept', u'healthi', u'eat', u'fund']
[u'chang', u'blame', u'wide', u'valuat', u'rise']
[u'shack', u'owner', u'maintain', u'tenur', u'push']
[u'sharapova', u'plot', u'molik', u'collis', u'cours']
[u'shark', u'pickler', u'hirst', u'admit', u'silli', u'idea']
[u'shearer', u'delay', u'world', u'record', u'attempt']
[u'ship', u'usual', u'quak']
[u'slingshot', u'win', u'peak']
[u'small', u'quak', u'induc', u'wave', u'pass', u'coco', u'island']
[u'socceroo', u'ventur', u'unknown']
[u'lanka', u'issu', u'tsunami', u'warn']
[u'store', u'manag', u'bash', u'robberi']
[u'storm', u'bring', u'rain', u'relief', u'farmer']
[u'strohfeld', u'expect', u'meet', u'beatti']
[u'sudan', u'arrest', u'offici', u'darfur', u'crime']
[u'sumatra', u'quak', u'spark', u'tsunami', u'fear']
[u'govt', u'accus', u'neglect', u'water']
[u'teacher', u'jail', u'student']
[u'teacher', u'strike', u'action', u'roll']
[u'texa', u'fear', u'lose', u'school', u'servic']
[u'romanian', u'journalist', u'kidnap', u'iraq']
[u'feel', u'funk']
[u'tribun', u'face', u'busi', u'night']
[u'trio', u'face', u'gangland', u'murder', u'trial']
[u'troop', u'arriv', u'home', u'aceh']
[u'trucki', u'school', u'start']
[u'tsunami', u'warn', u'issu', u'southern', u'india']
[u'region', u'road', u'crash']
[u'backtrack', u'food', u'legal', u'fee']
[u'uncl', u'tobi', u'blaze', u'investig']
[u'union', u'reflect', u'teacher', u'strike', u'impact']
[u'union', u'seek', u'budget', u'fund', u'apprenticeship']
[u'set', u'qualifi', u'global', u'human', u'right', u'test']
[u'tourist', u'jail', u'year']
[u'stock', u'higher', u'fall']
[u'vandal', u'night', u'servic']
[u'victorian', u'prison', u'evid', u'corbi', u'trial']
[u'visitor', u'flock', u'outback', u'easter', u'event']
[u'murder', u'escap', u'minimum', u'secur', u'jail']
[u'tidal', u'warn', u'cancel']
[u'welfar', u'plan', u'includ', u'chang', u'disabl', u'rule']
[u'westfield', u'drop', u'legal', u'action', u'brogden']
[u'whale', u'trap']
[u'winemak', u'look', u'solid', u'barossa', u'grape', u'harvest']
[u'wollongong', u'plan', u'blueprint', u'council']
[u'woman', u'face', u'trial', u'montana', u'kidnap']
[u'wool', u'grower', u'support', u'court', u'case', u'peta']
[u'word', u'perfect', u'finish', u'scrabbl', u'expert']
[u'yemeni', u'civil', u'unrest', u'escal']
[u'zimbabw', u'govt', u'deni', u'withhold', u'food']
[u'accc', u'find', u'telstra', u'price', u'cap', u'stay']
[u'adelaid', u'polic', u'investig', u'gang', u'rape']
[u'adler', u'fight', u'tear', u'trial']
[u'probe', u'possibl', u'brisban', u'bite', u'charg']
[u'age', u'care', u'nurs', u'fight', u'pariti']
[u'plane', u'depart', u'indonesia']
[u'worker', u'earthquak']
[u'ax', u'volleybal', u'water', u'polo', u'program']
[u'alic', u'mayor', u'surviv', u'candidaci', u'condit']
[u'qaeda', u'link', u'group', u'post', u'iraq', u'execut']
[u'question', u'generic', u'drug', u'effect']
[u'anaesthetist', u'threaten', u'stop', u'treat', u'veteran']
[u'anderson', u'accept', u'match']
[u'angola', u'fight', u'contain', u'marburg', u'outbreak']
[u'ashdown', u'sack', u'bosnian', u'presid']
[u'dip', u'despit', u'late', u'ralli']
[u'atsb', u'recommend', u'chang', u'ship', u'incid']
[u'australian', u'rush', u'quak', u'island']
[u'australia', u'lead', u'nuclear', u'test', u'effort']
[u'barca', u'want', u'henri', u'dream', u'deal']
[u'beatti', u'wont', u'daylight', u'save']
[u'bendemer', u'shire', u'land', u'valuat', u'skyrocket']
[u'kosciuszko', u'hazard', u'reduct', u'burn', u'start']
[u'bloomsburi', u'bank', u'harri', u'potter', u'magic']
[u'blue', u'festiv', u'outgrow', u'venu', u'polic']
[u'bogut', u'head', u'award', u'list']
[u'bolivia', u'upset', u'venezuela', u'qualifi']
[u'breathalys', u'buster', u'cyclist', u'bring', u'polic', u'warn']
[u'burger', u'chain', u'ask', u'rapper', u'mcplug']
[u'bush', u'expect', u'iraqi', u'govern', u'soon']
[u'busi', u'beat', u'levi', u'fight']
[u'buyer', u'snap', u'million', u'foal']
[u'cabinet', u'weigh', u'welfar', u'option']
[u'call', u'annual', u'india', u'pakistan', u'showdown']
[u'crash', u'victim', u'murder', u'court', u'hear']
[u'carr', u'announc', u'region', u'polic', u'station', u'revamp']
[u'cascad', u'quak', u'possibl', u'scientist', u'say']
[u'centrelink', u'probe', u'christian', u'colleg', u'claim']
[u'charg', u'expect', u'follow', u'canadian', u'tourist', u'death']
[u'church', u'offer', u'support', u'wake', u'rape', u'claim']
[u'coast', u'jockey', u'readi', u'leav', u'hong', u'kong']
[u'colleg', u'open', u'gladston', u'year']
[u'command', u'centr', u'coastguard', u'ellison', u'say']
[u'commission', u'demand', u'serial', u'killer', u'record']
[u'committe', u'look', u'road', u'rail', u'infrastructur']
[u'communiti', u'support', u'ranger', u'damag', u'boat']
[u'competit', u'start', u'newcastl', u'surfest']
[u'conserv', u'group', u'welcom', u'altern']
[u'cost', u'blow', u'delay', u'dockland', u'ferri', u'wheel']
[u'cotton', u'grower', u'expect', u'bumper', u'harvest']
[u'council', u'air', u'concern', u'suburb']
[u'council', u'green', u'light', u'age', u'care', u'project']
[u'council', u'hop', u'rate', u'rise']
[u'councillor', u'expect', u'face', u'heavier', u'workload']
[u'council', u'reject', u'soun', u'park', u'hous', u'claim']
[u'council', u'rethink', u'pool', u'decis']
[u'council', u'work', u'pest']
[u'council', u'hear', u'pool', u'retir', u'villag', u'plan']
[u'council', u'consid', u'oval', u'rezon']
[u'counti', u'decis', u'pont']
[u'courtney', u'love', u'play', u'deep', u'throat', u'star']
[u'criminologist', u'convinc', u'corbi', u'innoc']
[u'cyber', u'crime', u'expert', u'hold', u'talk']
[u'cyclon', u'cut', u'plantat', u'firm', u'takeov', u'offer']
[u'darfur', u'toll']
[u'darwin', u'sentenc', u'child', u'offenc']
[u'death', u'threat', u'bring', u'kanout', u'home', u'london']
[u'democrat', u'seek', u'continu', u'patient', u'choic']
[u'denmark', u'council', u'consid', u'wind', u'farm', u'rezon']
[u'deplet', u'windi', u'face', u'challeng']
[u'dfat', u'seek', u'melbourn', u'quak', u'area']
[u'diplomat', u'place', u'offend', u'regist']
[u'doubt', u'cast', u'lead', u'smelter', u'crackdown', u'call']
[u'doubt', u'rais', u'shellfish', u'food', u'safeti', u'scheme']
[u'downer', u'admit', u'meet', u'iraq', u'weapon', u'offici']
[u'downer', u'expect', u'manipul', u'zimbabw', u'poll']
[u'downer', u'reject', u'disast', u'respons', u'unit']
[u'time', u'mackay']
[u'dubbo', u'council', u'hire', u'aborigin', u'liaison', u'offic']
[u'earth', u'suffer', u'irrevers', u'chang', u'studi', u'find']
[u'earthquak']
[u'easter', u'period', u'forc', u'polic', u'babysit', u'prison']
[u'electron', u'patient', u'chart', u'deem', u'success']
[u'endang', u'lynx', u'cub', u'bear']
[u'entsch', u'await', u'elect', u'probe', u'outcom']
[u'escap', u'prison', u'arrest', u'offic', u'alert']
[u'timor', u'tackl', u'dengu', u'fever', u'epidem']
[u'eurobodalla', u'council', u'look', u'rural', u'land', u'protect']
[u'expand', u'public', u'servic', u'concern', u'opposit']
[u'fame', u'simpson', u'lawyer', u'die']
[u'farmer', u'cast', u'doubt', u'wilder', u'societi', u'river']
[u'farmer', u'group', u'advoc', u'poison']
[u'farmer', u'want', u'clear', u'wind', u'farm', u'site', u'select']
[u'fear', u'abalon', u'farm', u'threaten', u'lion', u'coloni']
[u'pacif', u'cruis', u'cancel']
[u'champion', u'jone', u'head', u'australian']
[u'chaplain', u'extradit', u'child', u'charg']
[u'funer', u'friday', u'young', u'victim']
[u'govt', u'ask', u'explain', u'rail', u'revamp', u'plan']
[u'govt', u'award', u'scope', u'studi', u'telstra', u'privatis']
[u'govt', u'call', u'submiss', u'stanley', u'port']
[u'govt', u'warn', u'tweed', u'council', u'probe']
[u'green', u'unhappi', u'pulp', u'educ', u'plan']
[u'higher', u'land', u'valu', u'dont', u'mean', u'automat', u'rate', u'rise']
[u'holling', u'sue', u'black']
[u'name', u'hurd']
[u'hunt', u'continu', u'escap', u'killer']
[u'hunter', u'foal', u'score', u'price']
[u'icac', u'wit', u'arrest', u'tri', u'leav', u'countri']
[u'injur', u'sheppard', u'southern', u'name', u'knight']
[u'inquest', u'tell', u'teen', u'plead', u'driver', u'stop']
[u'inquiri', u'seek', u'maitland', u'murder', u'suicid']
[u'isra', u'ambassador', u'injur', u'ethiopia', u'shoot']
[u'japan', u'shake', u'richard', u'gere']
[u'job', u'see', u'suicid', u'rat']
[u'kanimbla', u'disast', u'area']
[u'labor', u'attack', u'downer', u'resign', u'claim']
[u'lake', u'develop', u'hold']
[u'landhold', u'unhappi', u'valuat', u'urg', u'object']
[u'land', u'valu', u'wont', u'dictat', u'rat', u'mayor']
[u'larkham', u'bounc', u'cancer']
[u'leagu', u'name', u'origin', u'great']
[u'levi', u'moot', u'murray', u'food']
[u'live', u'risk', u'neonat', u'shortag']
[u'local', u'divid', u'braidwood', u'heritag', u'list']
[u'macquari', u'airport', u'forecast', u'increas', u'dividend']
[u'accus', u'toilet', u'watch', u'face', u'court']
[u'assault', u'home', u'invas']
[u'jail', u'deli', u'syring', u'hold']
[u'maroochi', u'council', u'urg', u'lobbi']
[u'mathemat', u'solut', u'hospit', u'wait']
[u'mayor', u'valuat', u'wont', u'lead', u'rate', u'rise']
[u'mayor', u'want', u'major', u'region', u'project', u'identifi']
[u'mcginti', u'introduc', u'vote', u'valu', u'legisl']
[u'memo', u'show', u'general', u'approv', u'interrog']
[u'miner', u'urg', u'plan', u'port', u'hedland']
[u'minist', u'hear', u'lobster', u'issu', u'hand']
[u'miss', u'melbourn']
[u'jetstar', u'talk', u'townsvill', u'servic']
[u'mother', u'hors', u'rid', u'trek', u'rais', u'diseas', u'fight']
[u'motocross', u'death', u'spark', u'inquiri']
[u'mourner', u'attend', u'funer', u'murder', u'suicid', u'famili']
[u'defend', u'bushmast', u'abil']
[u'tri', u'chang', u'plan', u'nation', u'electr']
[u'slash', u'job']
[u'nation', u'earli', u'start', u'murray', u'darl']
[u'caledonia', u'politician', u'disagre', u'franc', u'tie']
[u'central', u'statist', u'releas']
[u'appoint', u'bundaberg', u'region']
[u'school', u'open', u'condobolin']
[u'bail', u'accus', u'arm', u'robberi']
[u'school', u'teacher', u'strike', u'remot', u'town']
[u'cultur', u'festiv', u'fund', u'boost']
[u'offic', u'refit', u'wast', u'taxpay', u'money', u'opposit']
[u'call', u'aust', u'polic', u'leav', u'bougainvill']
[u'onlin', u'gamer', u'kill', u'sell', u'cyber', u'sword']
[u'optus', u'lodg', u'phone', u'tower', u'appeal']
[u'orang', u'hospit', u'deliv', u'babi', u'manag']
[u'parri', u'accept', u'invit', u'master']
[u'pearl', u'farm', u'propon', u'scrap', u'plan']
[u'pie', u'reel', u'buckley', u'injuri', u'bombshel']
[u'pie', u'start', u'hunt', u'captain']
[u'polic', u'angri', u'stupid', u'jetti', u'jump']
[u'polic', u'appeal', u'help', u'miss', u'tweed', u'woman']
[u'polic', u'miss', u'man', u'bodi']
[u'polic', u'seek', u'help', u'find', u'countri', u'club', u'attack']
[u'polic', u'honour', u'medal']
[u'polic', u'investig', u'teen', u'abduct']
[u'porn', u'help', u'fund', u'hetti', u'johnston', u'senat']
[u'postcard', u'arriv', u'year', u'late']
[u'prevent', u'focus', u'cancer', u'facil']
[u'professor', u'overse', u'break', u'hill', u'campus', u'studi']
[u'public', u'ask', u'campaign', u'student']
[u'public', u'input', u'seek', u'wollongong', u'citi', u'centr', u'plan']
[u'public', u'warn', u'avoid', u'mossi', u'diseas']
[u'polic', u'seiz', u'drug', u'cash']
[u'quak', u'survivor', u'tell', u'incred', u'damag']
[u'question', u'rais', u'alcohol', u'manag', u'plan']
[u'refuge', u'status', u'grant', u'wodonga', u'famili']
[u'region', u'school', u'urg', u'lobbi', u'literaci']
[u'relianc', u'public', u'sector', u'weaken', u'opposit']
[u'renmark', u'die', u'north', u'crash']
[u'residenti', u'speed', u'limit', u'put', u'brake', u'motorist']
[u'reveal', u'webber', u'race', u'melbourn', u'fractur']
[u'asst', u'commission', u'play', u'fund']
[u'rider', u'warn', u'highway', u'delay']
[u'right', u'group', u'detail', u'revers', u'rendit', u'case']
[u'river', u'plan', u'anger', u'farmer']
[u'roebourn', u'get', u'readi', u'shire', u'offic', u'revamp']
[u'govt', u'seek', u'buyer']
[u'schiavo', u'parent', u'file', u'appeal']
[u'scientist', u'compil', u'protist', u'handbook']
[u'search', u'aussi', u'quak']
[u'seawe', u'spray', u'extend', u'shelf', u'life', u'appl']
[u'secur', u'council', u'approv', u'sanction', u'sudanes']
[u'secur', u'offic', u'plead', u'guilti', u'child', u'porn', u'charg']
[u'assault', u'prompt', u'hospit', u'secur', u'concern']
[u'shire', u'plan']
[u'shortag', u'hamper', u'quak', u'rescu', u'effort']
[u'silent', u'pope', u'bless', u'faith']
[u'stanhop', u'want', u'summit', u'stopper']
[u'statist', u'highlight', u'south', u'east', u'growth']
[u'storm', u'whip', u'light', u'kalgoorli']
[u'support', u'council', u'smoke', u'stanc']
[u'sven', u'back', u'beckham']
[u'swank', u'fine', u'appl']
[u'syria', u'pull', u'troop', u'lebanes', u'elect']
[u'tasmanian', u'proud', u'orchestra', u'poll']
[u'teari', u'adler', u'tell', u'famili', u'shame']
[u'teen', u'remain', u'hospit', u'fatal', u'crash']
[u'temporari', u'hous', u'initi', u'launch']
[u'record', u'profit', u'jump']
[u'theft', u'trial', u'begin', u'tent', u'embassi', u'activist']
[u'tighter', u'rein', u'propos', u'battlefield', u'busi']
[u'chef', u'spoil', u'tasmania', u'broth']
[u'imprison', u'rate', u'highest', u'aust']
[u'tourist', u'hurt', u'rock', u'face', u'fall']
[u'trout', u'farmer', u'accus', u'council', u'environment']
[u'truck', u'industri', u'focus', u'road', u'fund']
[u'trust', u'say', u'nurs', u'rise', u'affect', u'servic']
[u'tszyu', u'readi', u'hatton', u'earli', u'morn', u'wake']
[u'tyre', u'reclam', u'river', u'bank', u'prompt', u'warn']
[u'unsaf', u'car', u'worri', u'mildura', u'polic']
[u'uruguay', u'threaten', u'kick', u'ronaldo', u'park']
[u'scout', u'offici', u'face', u'child', u'porn', u'charg']
[u'free', u'guantanamo', u'detaine']
[u'venus', u'down', u'serena', u'reach', u'florida', u'semi']
[u'compani', u'advertis', u'croc', u'hunt']
[u'plead', u'guilti', u'charg']
[u'lose', u'licenc', u'drink', u'drive']
[u'waaf', u'want', u'feder', u'fund', u'polish', u'live', u'export']
[u'court', u'tell', u'elder', u'unfit', u'stand', u'trial']
[u'wage', u'rebat', u'encourag', u'film', u'shoot']
[u'wage', u'rise', u'tip', u'hurt', u'small', u'nurs', u'home']
[u'justic', u'minist', u'keep', u'hand', u'prison', u'inquiri']
[u'walter', u'employe', u'fear', u'court', u'battl', u'entitl']
[u'nurs', u'disput', u'end']
[u'water', u'plan', u'come', u'critic']
[u'water', u'purif', u'equip', u'soon', u'nia']
[u'differ', u'concern', u'hill', u'say']
[u'woman', u'report', u'flasher', u'polic']
[u'yuko', u'secur', u'chief', u'get', u'year', u'murder']
[u'student', u'pledg', u'fundrais']
[u'dead', u'indonesian', u'quak']
[u'test', u'sydney']
[u'abba', u'order', u'crackdown', u'ramallah', u'milit']
[u'bushfir', u'season', u'offici', u'end']
[u'administr', u'say', u'nation', u'trust', u'bright', u'futur']
[u'target', u'rich', u'poor']
[u'agreement', u'aim', u'curb', u'alcohol', u'negat', u'impact']
[u'plane', u'leav', u'brisban', u'indonesia']
[u'jazeera', u'air', u'tape', u'kidnap', u'romanian']
[u'alleg', u'abduct', u'assault', u'investig']
[u'alleg', u'paedophil', u'face', u'court']
[u'alleg', u'abus', u'arriv', u'adelaid', u'court']
[u'angola', u'offici', u'put', u'marburg', u'virus', u'toll']
[u'antarct', u'tourist', u'face', u'tougher', u'regul']
[u'armstrong', u'prim', u'tour', u'defeat', u'ullrich']
[u'aussi', u'pair', u'plead', u'guilti', u'bank', u'robberi']
[u'australia', u'mediat', u'china', u'say']
[u'australian', u'injur', u'indonesian', u'earthquak']
[u'australian', u'virus', u'lead', u'cancer', u'vaccin']
[u'deni', u'iraq', u'wheat', u'contract', u'suspend']
[u'bacon', u'futur', u'doubt', u'analyst']
[u'bacon', u'secretari', u'quit', u'follow', u'breathalys']
[u'beatti', u'threaten', u'porn', u'viewer', u'sack']
[u'chief', u'return', u'home', u'state']
[u'bendigo', u'burglari']
[u'blackout', u'rebat', u'eas', u'power', u'problem', u'backlash']
[u'blaze', u'damag', u'leagu', u'club']
[u'bodi', u'tree', u'poison']
[u'bodi', u'airman', u'kill', u'iraq', u'arriv', u'home']
[u'boswel', u'urg', u'sale', u'ethanol', u'blend', u'fuel']
[u'box', u'quak', u'stronger', u'think']
[u'brazil', u'point', u'uruguay', u'bruiser']
[u'brisban', u'clear', u'alleg', u'bite', u'incid']
[u'break', u'hill', u'pool', u'locat', u'decid']
[u'brother', u'fin', u'cigarett', u'smuggl']
[u'brunswick', u'damag', u'hous']
[u'buoyant', u'pakistan', u'warm']
[u'bushfir', u'season', u'draw', u'close']
[u'food', u'price', u'rise', u'help', u'farmer']
[u'mildura', u'medicar', u'offic']
[u'wider', u'palm', u'inquest']
[u'canada', u'govt', u'meet', u'resist', u'indian', u'reserv', u'plan']
[u'crash', u'bedroom']
[u'casino', u'apologis', u'assault', u'cameraman']
[u'central', u'unemploy', u'rate', u'fall']
[u'china', u'complet', u'world', u'largest', u'botan', u'record']
[u'coat', u'arm', u'belong', u'indigen', u'peopl', u'court']
[u'communiti', u'dig', u'deep', u'tsunami', u'appeal']
[u'communiti', u'decid', u'cundletown', u'pool', u'futur']
[u'consular', u'offici', u'arriv', u'nia']
[u'cooloola', u'shire', u'oppos', u'sunday', u'trade']
[u'corrupt', u'trial', u'harm', u'pariss', u'olymp']
[u'council', u'act', u'stop', u'sewag', u'spill']
[u'council', u'ask', u'rate', u'increas']
[u'council', u'consid', u'dubbo', u'theatr', u'plan']
[u'council', u'crack', u'water']
[u'council', u'divid', u'platinum', u'approv']
[u'council', u'offer', u'reward', u'catch', u'cemeteri']
[u'council', u'consid', u'equit', u'tourism', u'levi']
[u'council', u'decid', u'park', u'meter']
[u'cruis', u'ship', u'termin', u'trigger', u'pollut', u'concern']
[u'cullendulla', u'creek', u'powerboat', u'restrict', u'lift']
[u'daihatsu', u'loss', u'unlik', u'toyota', u'say']
[u'dairi', u'appoint', u'chees']
[u'deadlin', u'reach', u'bioregion', u'decis']
[u'defenc', u'commit', u'drain', u'pool', u'skill', u'worker']
[u'disabl', u'support', u'worker', u'lose', u'job']
[u'disast', u'warn', u'need', u'work', u'downer']
[u'discoveri', u'centr', u'face', u'fund', u'woe']
[u'cull', u'wouldnt', u'solv', u'health', u'problem', u'vet']
[u'downer', u'urg', u'come', u'clean', u'iraq', u'meet']
[u'driver', u'die', u'culvert', u'crash']
[u'eagl', u'lose', u'cousin', u'mcdougal', u'geelong', u'clash']
[u'earli', u'bloomer', u'distress', u'japan', u'cherri', u'blossom', u'fan']
[u'econom', u'data', u'even', u'odd', u'rat', u'rise']
[u'employ', u'increas', u'staff', u'level', u'survey']
[u'ergon', u'issu', u'powerlin', u'warn']
[u'extra', u'cost', u'pressur', u'council', u'budget']
[u'bring', u'bling']
[u'fan', u'beat', u'victoria']
[u'brigad', u'defend', u'effort', u'save', u'boy']
[u'tragedi']
[u'launch', u'legal', u'action']
[u'teacher', u'guilti', u'child', u'porn', u'offenc']
[u'scout', u'offici', u'plead', u'guilti']
[u'french', u'polynesia', u'put', u'independ', u'backburn']
[u'giteau', u'clear', u'blue', u'clash']
[u'golf', u'cours', u'plan', u'expect', u'drive', u'tourist']
[u'govt', u'reject', u'rail', u'link', u'critic']
[u'govt', u'urg', u'boost', u'resourc', u'fight', u'school']
[u'greec', u'open', u'olymp', u'venu', u'privat', u'investor']
[u'green', u'threaten', u'brigalow', u'belt', u'log', u'blockad']
[u'hazard', u'wast', u'committe', u'tour', u'kalgoorli']
[u'highway', u'toll', u'save', u'truck', u'firm', u'anderson']
[u'hill', u'quit', u'knight', u'chairman']
[u'home', u'brew', u'kill', u'indian', u'blind']
[u'homeless', u'spotlight', u'north', u'west']
[u'horan', u'push', u'govern', u'crisi', u'hous']
[u'hutu', u'rebel', u'condemn', u'rwanda', u'genocid']
[u'illawarra', u'escarp', u'plan', u'label', u'discriminatori']
[u'contractor', u'seek', u'tougher', u'spray', u'rule']
[u'illeg', u'fish', u'earn', u'famili', u'fine']
[u'illeg', u'fish', u'measur', u'ignor', u'northern', u'water']
[u'indonesia', u'megawati', u'keep', u'polit', u'career', u'aliv']
[u'inquiri', u'probe', u'transport', u'infrastructur']
[u'show', u'esper', u'contain', u'facil']
[u'iran', u'mar', u'crowd', u'troubl', u'japan']
[u'iraq', u'suspend', u'wheat', u'contract']
[u'jackson', u'abus', u'claim', u'like', u'true', u'psychologist']
[u'jam', u'hardi', u'compens', u'deal', u'delay']
[u'japanes', u'firm', u'sale', u'australian', u'resort']
[u'japan', u'unveil', u'plan', u'futur', u'quak', u'loss']
[u'job', u'survey', u'offer', u'mix']
[u'joey', u'need', u'form', u'stuart']
[u'justic', u'minist', u'flag', u'tough', u'prison', u'inquiri']
[u'keech', u'deni', u'inact', u'public', u'drunken']
[u'kefu', u'take', u'testimoni', u'match']
[u'landscap', u'wast', u'water', u'concern', u'kingston']
[u'land', u'valuat', u'creat', u'rat', u'confus']
[u'doesnt', u'need', u'counti', u'stint', u'warn']
[u'leichhardt', u'elect', u'result', u'uphold']
[u'levi', u'moot', u'help', u'messag', u'stick']
[u'live', u'sheep', u'export', u'unlik', u'esper']
[u'local', u'govt', u'meet', u'focus', u'landfil', u'issu']
[u'long', u'wait', u'hous', u'build']
[u'mackay', u'council', u'urg', u'consid', u'rat']
[u'die', u'wish', u'bind', u'guardian', u'warn']
[u'martin', u'hint', u'elect', u'timefram']
[u'master', u'builder', u'slam', u'electr', u'water']
[u'mauresmo', u'meet', u'clijster', u'florida']
[u'mayor', u'hope', u'transport', u'probe', u'solut']
[u'mayor', u'want', u'water', u'suppli', u'assur']
[u'medic', u'research', u'earn', u'award']
[u'medic', u'team', u'head', u'indonesia']
[u'miller', u'lobbi', u'govt', u'western', u'hardwood', u'plan']
[u'children', u'starv', u'post', u'saddam']
[u'mother', u'child', u'escap', u'sink']
[u'question', u'drought', u'packag', u'effect']
[u'munro', u'lead', u'world', u'surf', u'rat']
[u'muralitharan', u'resum', u'bowl']
[u'nelson', u'propos', u'greater', u'feder', u'control', u'uni']
[u'attack', u'investig']
[u'tobacco', u'law', u'xenophon']
[u'studi', u'delay', u'port', u'phillip', u'dredg']
[u'nia', u'crisi', u'wors', u'think', u'downer']
[u'decis', u'refuge', u'court', u'sit']
[u'nurs', u'assault', u'spark', u'park', u'chang']
[u'nurs', u'home', u'demand', u'fund', u'updat', u'rise']
[u'nyngan', u'group', u'win', u'grain', u'grow', u'award']
[u'olymp']
[u'opposit', u'attack', u'speaker', u'action']
[u'organis', u'welcom', u'posit', u'summernat', u'report']
[u'patrick', u'refus', u'increas', u'virgin', u'offer']
[u'penguin', u'death', u'baffl', u'expert']
[u'petit', u'seek', u'region', u'blood', u'doner', u'servic', u'debat']
[u'phone', u'tap', u'law', u'success', u'ruddock']
[u'player', u'associ', u'wont', u'riewoldt', u'incid']
[u'demand', u'apolog', u'airport', u'search']
[u'polic', u'knife', u'road', u'rage', u'stab']
[u'polic', u'investig', u'home', u'theft']
[u'polic', u'recaptur', u'hunter', u'escap']
[u'polic', u'refus', u'comment', u'lewi', u'meet']
[u'polic', u'identifi', u'remain']
[u'port', u'premiership', u'flag']
[u'prison', u'charg', u'hostag', u'take']
[u'product', u'breakthrough', u'fish', u'farm']
[u'prosecutor', u'urg', u'time', u'jail', u'adler']
[u'public', u'stock', u'exchang', u'lesson']
[u'public', u'urg', u'bushfir', u'readi']
[u'rain', u'delay', u'work', u'knight', u'grandstand']
[u'rare', u'diseas', u'european']
[u'rat', u'stay', u'hold', u'report']
[u'relief', u'effort', u'hamper', u'quak', u'toll', u'hit']
[u'report', u'show', u'underground', u'iran', u'nuclear', u'plant']
[u'resourc', u'sector', u'end', u'market', u'negat']
[u'retir', u'urg', u'prepar', u'remot', u'travel']
[u'ribbon', u'idea', u'support', u'corbi', u'trial']
[u'richmond', u'lose', u'sponsor', u'drink', u'drive', u'charg']
[u'rooney', u'assault', u'claim', u'withdraw']
[u'rspca', u'seek', u'chang', u'live', u'sheep', u'export']
[u'russia', u'acknowledg', u'chechnyan', u'death', u'toll']
[u'safeti', u'review', u'freak', u'sandown', u'mishap']
[u'smoke', u'legisl', u'enter', u'phase']
[u'schu', u'hop', u'renault', u'beater']
[u'scientist', u'plan', u'embryo', u'project']
[u'search', u'miss', u'pair']
[u'help', u'yeast', u'adapt', u'situat']
[u'societi', u'killer', u'seek', u'pass', u'parent', u'estat']
[u'anaesthetist', u'begin', u'veteran', u'treatment']
[u'hervey', u'rat', u'rise']
[u'southern', u'star', u'humbl', u'lanka']
[u'state', u'territori', u'carbon', u'trade', u'scheme']
[u'strong', u'aftershock', u'rock', u'nia']
[u'student', u'die', u'nowa', u'nowa', u'crash']
[u'studi', u'find', u'church', u'import', u'region']
[u'stuttl', u'killer', u'await', u'appeal', u'decis']
[u'sudan', u'reject', u'darfur', u'death', u'toll']
[u'suicid', u'attack', u'kill', u'iraq']
[u'support', u'ralli', u'convict', u'sierra', u'leon']
[u'tait', u'hail', u'best']
[u'teacher', u'consid', u'strike', u'crime', u'resign']
[u'teen', u'rescu', u'hour', u'quak', u'strike', u'nia']
[u'telstra', u'abus', u'market', u'power']
[u'telstra', u'condemn', u'price', u'report']
[u'tenni', u'australia', u'select']
[u'thrash', u'time', u'wake', u'ricketson']
[u'dead', u'hamilton', u'highway', u'collis']
[u'tiger', u'lose', u'sponsor', u'drink', u'drive', u'charg']
[u'earli', u'forecast', u'nino', u'return']
[u'tourism', u'group', u'head', u'wagga']
[u'traralgon', u'await', u'race', u'announc']
[u'treasuri', u'chief', u'urg', u'action', u'terror', u'caus']
[u'arrest', u'fals', u'build', u'licens', u'hear']
[u'boy', u'perish', u'hous']
[u'union', u'claim', u'local', u'job']
[u'uruguay', u'eye', u'socceroo', u'match']
[u'ask', u'boycott', u'asean', u'burma']
[u'intellig', u'flaw', u'common', u'report', u'say']
[u'govt', u'ask', u'rethink', u'maffra', u'plan', u'decis']
[u'waratah', u'test', u'mettl', u'crusad']
[u'weaker', u'food', u'health', u'claim', u'rule', u'reject']
[u'westbus', u'administr', u'strong']
[u'whale', u'watch', u'law', u'review']
[u'whale', u'watch', u'review', u'spark', u'industri', u'concern']
[u'windi', u'scrap', u'sponsorship', u'deal']
[u'wine', u'industri', u'warn', u'suppli', u'action']
[u'wolfowitz', u'eager', u'tackl', u'world', u'bank']
[u'woman', u'safe']
[u'woman', u'hurt', u'attempt', u'robberi']
[u'work', u'begin', u'nia', u'rescu', u'trap', u'peopl']
[u'work', u'start', u'link', u'road']
[u'yudhoyono', u'join', u'prayer', u'earthquak', u'dead']
[u'zimbabw', u'opposit', u'confid', u'poll']
[u'zimbabw', u'poll', u'open']
[u'wait', u'sign', u'increas', u'patient', u'care']
[u'aeropelican', u'spread', u'wing', u'time']
[u'afghan', u'court', u'cut', u'vigilant', u'jail', u'term']
[u'ail', u'pope', u'suffer', u'heart', u'attack']
[u'aldermen', u'want', u'sister', u'citi', u'scheme', u'step']
[u'algerian', u'secur', u'disappear']
[u'ansett', u'sell', u'exceed', u'expect']
[u'art', u'group', u'say', u'servic', u'safe']
[u'australian', u'european', u'rescu', u'indonesian', u'isl']
[u'australian', u'plan', u'bring', u'closer', u'nia']
[u'australian', u'veteran', u'return', u'trophi', u'sword']
[u'australia', u'focus', u'malaysian']
[u'babi', u'bonus', u'cost', u'govt']
[u'bathurst', u'finalis', u'saleyard', u'revamp', u'plan']
[u'beatti', u'defend', u'keep', u'holli', u'investig']
[u'beazley', u'return', u'reformist', u'econom', u'polici']
[u'bega', u'council', u'appli', u'ongo', u'rate', u'rise']
[u'belgian', u'minist', u'regret', u'bush', u'chimp', u'comparison']
[u'berlusconi', u'hail', u'hairi', u'intern', u'role']
[u'beverford', u'brigad']
[u'bidder', u'barossa', u'drop']
[u'quak', u'predict', u'wide']
[u'blue', u'thriller', u'bomber']
[u'bore', u'boost', u'groundwat', u'monitor']
[u'boro', u'everton', u'fin', u'brawl']
[u'bottleneck', u'hamper', u'earthquak', u'relief', u'effort']
[u'bourk', u'man', u'death', u'consid', u'suspici']
[u'brain', u'damag', u'woman', u'terri', u'schiavo', u'die']
[u'branson', u'hold', u'virgin', u'stake']
[u'british', u'inspir', u'stoker', u'vampir', u'slayer']
[u'buckley', u'deserv', u'term', u'malthous']
[u'buckley', u'deserv', u'term', u'malthous']
[u'buckley', u'month', u'surgeri']
[u'compani', u'tell', u'organis', u'stop']
[u'bushfir', u'appeal', u'excess', u'good', u'sell']
[u'bush', u'pick', u'guantanamo', u'overs', u'defenc', u'post']
[u'extend', u'network']
[u'rethink', u'farm', u'practic']
[u'caloundra', u'council', u'look', u'econom', u'strategi']
[u'race', u'granit', u'belt', u'win']
[u'carr', u'voic', u'support', u'costa']
[u'cash', u'shortag', u'put', u'lawson', u'festiv', u'risk']
[u'cathol', u'australia', u'pray', u'pope']
[u'centuri', u'stoppag', u'cost']
[u'charg', u'recommend', u'aborigin', u'develop']
[u'chechen', u'leader', u'kill', u'russia']
[u'civil', u'liberti', u'group', u'rais', u'concern', u'raid']
[u'communiti', u'minist', u'undergo', u'cancer', u'treatment']
[u'communiti', u'urg', u'support', u'tragedi', u'famili']
[u'compani', u'give', u'fund']
[u'confer', u'put', u'focus', u'region', u'optometrist']
[u'corser', u'lead', u'superbik', u'qualifi']
[u'costello', u'eye', u'singl', u'mum', u'skill', u'shortag']
[u'costello', u'want', u'singl', u'parent', u'work']
[u'costello', u'welcom', u'build', u'approv']
[u'councillor', u'want', u'life', u'cemeteri', u'vandal', u'catch']
[u'council', u'replac', u'bridg', u'river', u'accid']
[u'count', u'zimbabw', u'elect']
[u'cricket', u'fight', u'fair', u'game']
[u'dandruff', u'particl', u'affect', u'climat']
[u'darwin', u'teen', u'probat', u'fondl', u'child']
[u'date', u'student', u'terror', u'trial']
[u'deal', u'allow', u'island', u'koala', u'research']
[u'detail', u'scant', u'har', u'race', u'meet']
[u'develop', u'baffl', u'citi', u'strategi', u'omiss']
[u'devic', u'turn', u'brain', u'chatter', u'movement']
[u'diabet', u'treatment', u'list']
[u'dinosaur', u'buff', u'seek', u'fossil', u'dig']
[u'doctor', u'claim', u'photojournalist', u'rap', u'tortur']
[u'doctor', u'fear', u'lose', u'foot', u'basketbal']
[u'downpour', u'mix', u'bless', u'great', u'southern']
[u'dragon', u'cooper', u'undergo', u'surgeri']
[u'drink', u'drive', u'charg', u'cost', u'richmond', u'sponsor']
[u'eel', u'slipperi', u'panther']
[u'elder', u'woman', u'rescu', u'hous']
[u'embattl', u'race', u'club', u'slip', u'halter']
[u'entsch', u'consid', u'legal', u'action', u'elect']
[u'expert', u'say', u'protect', u'nativ']
[u'export', u'drop', u'hit', u'manufactur', u'growth']
[u'farmer', u'urg', u'govt', u'hurri', u'approv', u'process']
[u'feder', u'sharapova', u'roll', u'florida']
[u'firefight', u'contain', u'geeveston', u'blaze']
[u'fishermen', u'start', u'tsunami', u'relief', u'committe']
[u'floss', u'support', u'block', u'tahiti', u'port']
[u'stand', u'iron', u'agreement', u'china']
[u'foreign', u'beef', u'solomon', u'high', u'court']
[u'fin', u'illeg', u'fish']
[u'game', u'torch', u'rout', u'draw', u'heywood', u'protest']
[u'govt', u'ask', u'proper', u'fund', u'forens', u'centr']
[u'govt', u'ask', u'rethink', u'land', u'valuat']
[u'govt', u'slam', u'bioregion', u'inact']
[u'govt', u'hear', u'hospit', u'closur', u'worri']
[u'graffiti', u'clean', u'histor']
[u'greater', u'effort', u'urg', u'tackl', u'tafe', u'staff', u'shortag']
[u'green', u'summernat', u'health', u'survey']
[u'gritti', u'highland', u'red']
[u'group', u'angri', u'brigalow', u'belt', u'decis']
[u'group', u'want', u'help', u'domest', u'violenc', u'victim']
[u'gutter', u'death', u'sorri', u'state', u'affair', u'coron']
[u'health', u'group', u'consid', u'wimmera', u'fluorid']
[u'health', u'insur', u'rebat', u'increas', u'come', u'effect']
[u'hill', u'see', u'afghanistan', u'deploy']
[u'hind', u'chanderpaul', u'ton', u'windi']
[u'hong', u'kong', u'reviv', u'fight', u'ritual']
[u'pope', u'elect']
[u'indigen', u'domest', u'violenc', u'figur', u'worri', u'polic']
[u'inquiri', u'look', u'freight', u'north', u'west']
[u'pressur', u'govern', u'sign', u'wada', u'code']
[u'itali', u'bulgaria', u'ukrain', u'advanc', u'iraq', u'pullout', u'plan']
[u'stop', u'misus', u'anim', u'imag', u'accus']
[u'japanes', u'court', u'refus', u'compens', u'wwii', u'rape']
[u'japan', u'plan', u'humpback', u'hunt']
[u'japan', u'busi', u'confid', u'drop', u'sharpli']
[u'kalgoorli', u'council', u'nomin', u'roll']
[u'kimberley', u'fisher', u'support', u'call', u'illeg']
[u'labor', u'urg', u'govt', u'focus', u'skill', u'singl', u'mum']
[u'lamb', u'roast', u'chocol', u'flavour']
[u'larkham', u'give', u'longer', u'prove', u'fit']
[u'licens', u'premis', u'ask', u'follow', u'liquor']
[u'link', u'road', u'work', u'expect', u'boost', u'harden', u'industri']
[u'lion', u'port', u'ring', u'chang', u'rematch']
[u'local', u'iraqi', u'polic', u'chief', u'kill']
[u'malaysian', u'critic', u'direct', u'aust']
[u'charg', u'suspici', u'packag']
[u'kill', u'lie', u'road']
[u'martin', u'elect', u'time']
[u'merg', u'health', u'servic', u'advisori', u'group', u'get', u'head']
[u'minist', u'confid', u'futur']
[u'minist', u'welcom', u'alter', u'river', u'plan']
[u'mix', u'respons', u'timber', u'auction', u'scheme']
[u'mother', u'accus', u'kill', u'children', u'bail']
[u'mother', u'call', u'health', u'overhaul']
[u'ask', u'clarifi', u'voluntari', u'student', u'union']
[u'suggest', u'townsvill', u'council', u'help', u'palm']
[u'loxton', u'polic', u'station', u'stanc']
[u'want', u'diesel', u'price', u'display']
[u'larcom', u'reliev', u'water', u'price', u'decis']
[u'mugab', u'hail', u'zimbabw', u'poll']
[u'murder', u'convict', u'quash', u'year']
[u'name', u'alleg', u'paedophil', u'infuri', u'govt']
[u'navi', u'chopper', u'test', u'toowoomba']
[u'drug', u'list']
[u'korea', u'say', u'pose', u'nuclear', u'threat']
[u'fals', u'premis', u'downer']
[u'water', u'licenc', u'bowen', u'irrig']
[u'approv', u'boe', u'workplac', u'discrimin']
[u'budget', u'decis', u'cost', u'murray', u'darl']
[u'nuisanc', u'sale', u'call', u'cost', u'busi', u'money']
[u'price', u'surg', u'boost', u'market']
[u'region', u'follow', u'high', u'school', u'merger']
[u'park', u'problem', u'mindil', u'market']
[u'parliamentari', u'committe', u'chair', u'inspir']
[u'pennant', u'releas', u'prison']
[u'peru', u'announc', u'amazon', u'protect', u'zone']
[u'plan', u'propos', u'ship', u'water', u'kimberley']
[u'plan', u'drum', u'tax', u'deem', u'success']
[u'protest', u'plan', u'close', u'aust', u'high', u'commiss']
[u'polic', u'clear', u'minist', u'breathalys', u'incid']
[u'polic', u'complet', u'initi', u'report', u'flinder']
[u'polic', u'easter', u'effort', u'monaro', u'command']
[u'polic', u'hope', u'model', u'slay', u'german', u'tourist', u'jog']
[u'polic', u'probe', u'possibl', u'robberi', u'link']
[u'polic', u'investig', u'cabbi', u'death']
[u'pope', u'warrior', u'freedom']
[u'pope', u'conscious', u'seren', u'vatican', u'say']
[u'pope', u'health', u'crisi', u'continu']
[u'pope', u'health', u'deterior']
[u'pope', u'suffer', u'heart', u'attack']
[u'possibl', u'solut', u'yuelamus', u'water', u'problem', u'flow']
[u'priest', u'stand', u'trial', u'child', u'charg']
[u'prison', u'sentenc', u'year', u'jail', u'term']
[u'probe', u'uncov', u'gold', u'fraud']
[u'protest', u'arrest', u'seal', u'hunter', u'confront']
[u'provinci', u'citi', u'group', u'step', u'telstra', u'sale']
[u'psychologist', u'confid', u'elect']
[u'public', u'nation', u'park', u'futur']
[u'public', u'remind', u'smoke', u'crackdown']
[u'public', u'warn', u'control', u'burn']
[u'consid', u'futur', u'olymp']
[u'quak', u'delay', u'rescu', u'effort', u'continu']
[u'quak', u'chang', u'indonesian', u'shorelin']
[u'rebel', u'damag', u'iraqi', u'nation', u'treasur']
[u'recherch', u'group', u'defend', u'land', u'sale', u'tactic']
[u'region', u'hospit', u'doctor', u'overwork', u'lack']
[u'rescu', u'effort', u'continu', u'nia']
[u'resel', u'sue', u'oscar', u'ticket', u'fetch']
[u'resid', u'home', u'evacu', u'chemic', u'spill']
[u'resid', u'hope', u'saleyard', u'site', u'rethink']
[u'resid', u'want', u'fluorid', u'referendum']
[u'retail', u'attack', u'blackout', u'compo', u'plan']
[u'ritual', u'mean', u'pope', u'close', u'death']
[u'road', u'safeti', u'council', u'call', u'speed', u'limit', u'review']
[u'rogg', u'call', u'unit', u'stand', u'dope']
[u'african', u'mine', u'giant', u'win', u'action', u'striker']
[u'school', u'bulli', u'turn', u'technolog']
[u'schoolgirl', u'killer', u'assault', u'charg', u'drop']
[u'seafood', u'industri', u'angri', u'pay', u'fish']
[u'search', u'northern']
[u'search', u'miss', u'teenag']
[u'senior', u'jail', u'welfar', u'fraud']
[u'repair', u'albani', u'storm', u'damag']
[u'shearer', u'cancel', u'retir', u'plan']
[u'shearer', u'postpon', u'retir', u'plan', u'report']
[u'skill', u'labour', u'shortag', u'blame', u'rise', u'cost']
[u'soda', u'bomb', u'suspect', u'rockhampton', u'blast']
[u'sombr', u'crowd', u'wait', u'word', u'pope', u'window']
[u'student', u'union', u'fee', u'stay']
[u'princ', u'rainier', u'duti']
[u'sport', u'star', u'splash', u'swim', u'centr', u'open']
[u'storm', u'bring', u'rain', u'south', u'east']
[u'strong', u'public', u'support', u'saleyard']
[u'student', u'work', u'melbourn']
[u'suspect', u'marburg', u'case', u'hospitalis', u'itali']
[u'teacher', u'check', u'expect', u'expos', u'taint', u'record']
[u'test', u'check', u'grenfel', u'road', u'safe', u'truck']
[u'thoma', u'stand', u'trial', u'terror', u'charg']
[u'timber', u'miller', u'reject', u'govt', u'offer']
[u'timber', u'urg', u'offer', u'redund']
[u'time', u'run', u'indonesian', u'quak', u'survivor']
[u'tough', u'time', u'expect', u'affect', u'bull', u'sale', u'price']
[u'adventur', u'begin', u'thailand', u'franc', u'drive']
[u'journalist', u'arrest', u'zimbabw', u'poll']
[u'union', u'back', u'sack', u'teacher', u'legisl']
[u'refer', u'darfur', u'crime']
[u'congo', u'militia']
[u'audit', u'find', u'missil', u'shield', u'capabl']
[u'soldier', u'accus', u'cocain', u'smuggl']
[u'vatican', u'deni', u'pope', u'coma']
[u'vatican', u'say', u'medic', u'stabilis', u'pope']
[u'visitor', u'flock', u'mackay', u'lifesav', u'event']
[u'visi', u'stand', u'execut', u'amid', u'price', u'fix', u'probe']
[u'clarifi', u'greenhous', u'plan']
[u'water', u'wastag', u'high', u'report']
[u'welfar', u'cheat', u'serv', u'sentenc', u'home']
[u'march', u'newcastl', u'region']
[u'work', u'studi', u'focus', u'abil', u'disabl']
[u'world', u'largest', u'iceberg']
[u'youth', u'region', u'wireless', u'broadband', u'servic']
[u'zimbabw', u'elect', u'denounc', u'mass', u'fraud']
[u'zimbabw', u'opposit', u'take', u'seat']
[u'aborigin', u'man', u'bodi', u'exhum', u'autopsi']
[u'accus', u'govt', u'shut', u'debat']
[u'eye', u'voss', u'ahead', u'rematch']
[u'australian', u'chopper', u'crash', u'indonesia']
[u'australia', u'meet', u'protea', u'world', u'group']
[u'busi', u'barcelona']
[u'beadman', u'pilot', u'mahtoum', u'sydney']
[u'beazley', u'industri', u'relat', u'stanc']
[u'blue', u'humbl', u'brumbi', u'auckland']
[u'blue', u'thriller', u'bomber']
[u'marley', u'interview', u'embarrass']
[u'burn', u'off', u'play', u'russian', u'roulett', u'environ']
[u'camper', u'evacu', u'bushfir', u'flare']
[u'bomb', u'kill', u'iraq']
[u'chang', u'weather', u'condit', u'worri', u'author']
[u'chelsea', u'look', u'saint']
[u'chines', u'ship', u'compani', u'eye', u'darwin', u'trade', u'rout']
[u'clijster', u'aim', u'continu', u'fairytal', u'return']
[u'colombia', u'probe', u'cocain', u'smuggl', u'troop']
[u'concern', u'rais', u'drink', u'spike', u'incid']
[u'concern', u'rais', u'school', u'asbesto']
[u'corser', u'provision', u'phillip', u'island', u'pole']
[u'cowboy', u'thrash', u'knight']
[u'crude', u'hit', u'high']
[u'crusad', u'waratah', u'unbeaten']
[u'decapit', u'bodi', u'near', u'brisban']
[u'demon', u'withstand', u'bulldog', u'fightback']
[u'dope', u'chief', u'warn', u'chelsea', u'blood', u'spin']
[u'eagl', u'swoop', u'cat']
[u'earthquak', u'rock']
[u'easter', u'island', u'fear', u'loss', u'cultur']
[u'emerg', u'distribut', u'nia']
[u'feder', u'face', u'nadal', u'biscayn', u'final']
[u'final', u'quarter', u'surg', u'give', u'roo', u'victori']
[u'foreign', u'plan', u'enter', u'australia', u'arrest']
[u'gorman', u'hous', u'theatr', u'close', u'roof', u'problem']
[u'govt', u'seek', u'extradit', u'chines', u'nation']
[u'gritti', u'highland', u'red']
[u'hackett', u'freeman', u'help', u'london']
[u'health', u'minist', u'deni', u'hospit', u'crisi']
[u'hind', u'chanderpaul', u'turn', u'screw', u'south']
[u'hundr', u'gather', u'peter', u'squar']
[u'hurrican', u'sweep', u'past', u'chief']
[u'iaaf', u'appeal', u'greek', u'dope', u'decis']
[u'india', u'defeat', u'pakistan', u'open', u'dayer']
[u'investig', u'continu', u'decapit', u'bodi']
[u'jackson', u'juror', u'hear', u'previous', u'child', u'claim']
[u'kagayama', u'take', u'pole', u'phillip', u'island']
[u'land', u'council', u'welcom', u'corrupt', u'investig']
[u'lebanon', u'syria', u'stay', u'form', u'govt']
[u'macgil', u'win', u'steve', u'waugh', u'medal']
[u'maestro', u'muti', u'quit', u'scala']
[u'seek', u'assault']
[u'mayor', u'support', u'brisban', u'olymp']
[u'migrat', u'whale', u'see', u'tasmanian', u'island']
[u'million', u'await', u'word', u'die', u'pope']
[u'million', u'pray', u'pope']
[u'compens', u'nazi', u'medic', u'guinea', u'pig']
[u'name', u'doctor', u'parliament']
[u'mugab', u'parti', u'secur', u'third', u'major']
[u'mugab', u'win', u'zimbabw', u'poll']
[u'neil', u'young', u'brain', u'oper']
[u'nepal', u'free', u'detent']
[u'minist', u'charg', u'drink', u'drive']
[u'dead', u'injur', u'boat', u'collis']
[u'opposit', u'clear', u'file', u'hack', u'alleg']
[u'million', u'world', u'ticket', u'sell']
[u'owner', u'defend', u'log', u'histor', u'site']
[u'pakistan', u'youni', u'miss', u'dayer']
[u'pell', u'prepar', u'rome', u'visit']
[u'polic', u'angri', u'paedophilia', u'claim']
[u'polic', u'believ', u'massacr', u'brazil']
[u'polic', u'clear', u'minist', u'secretari', u'flinder']
[u'polic', u'probe', u'sydney', u'stab']
[u'pope', u'see', u'touch', u'lord', u'say']
[u'pope', u'approv', u'flurri', u'church', u'appoint']
[u'pope', u'begin', u'lose', u'conscious', u'vatican']
[u'pope', u'near', u'death']
[u'pope', u'health', u'deterior']
[u'pope', u'health', u'deterior']
[u'power', u'hold', u'gallant', u'lion']
[u'pratt', u'overcom', u'injuri', u'play']
[u'pressur', u'mount', u'speaker', u'quit']
[u'consid', u'futur', u'olymp']
[u'raider', u'trampl', u'dragon']
[u'rain', u'caus', u'flood', u'damag', u'south', u'west']
[u'dust', u'cover', u'eyr', u'peninsula']
[u'retrial', u'order', u'stab', u'murder']
[u'russian', u'space', u'junk', u'caus', u'light']
[u'govt', u'say', u'slow', u'river', u'murray', u'program']
[u'sailor', u'clear', u'strike', u'charg']
[u'sailor', u'judiciari']
[u'search', u'miss', u'person', u'call']
[u'ship', u'return', u'success', u'suppli', u'voyag']
[u'hospitalis', u'balconi', u'collaps']
[u'southern', u'star']
[u'stargaz', u'attempt', u'identifi']
[u'storm', u'blow', u'bronco', u'away']
[u'strauss', u'keen', u'avoid', u'mcgrath', u'landmark']
[u'strong', u'aftershock', u'jolt', u'nia']
[u'sudan', u'govt', u'slam', u'darfur', u'rule']
[u'survivor', u'earthquak', u'rubbl']
[u'survivor', u'pull', u'earthquak', u'rubbl']
[u'tabcorp', u'staff', u'return', u'work']
[u'bushfir', u'continu', u'burn']
[u'tasmania', u'urg', u'consid', u'drug', u'court']
[u'tenant', u'high', u'hous', u'buy', u'scheme']
[u'thirti', u'kill', u'janeiro', u'worst', u'massacr']
[u'thousand', u'cathol', u'pray', u'pope']
[u'tourist', u'strand', u'bushfir', u'rag']
[u'titl', u'tussl', u'resum', u'itali']
[u'sight', u'like', u'satellit']
[u'admit', u'hold', u'citizen', u'iraq', u'suspect']
[u'armi', u'captain', u'dismiss', u'kill', u'iraqi']
[u'inflat', u'jitter', u'return']
[u'vatican', u'deni', u'pope', u'dead']
[u'woman', u'repres', u'aust', u'miss', u'univers']
[u'webber', u'top', u'final', u'practic', u'bahrain']
[u'wool', u'price', u'ralli']
[u'worker', u'battl', u'wilson', u'promontori']
[u'abba', u'order', u'secur', u'reform', u'fight', u'chao']
[u'ghraib', u'attack', u'wound', u'troop']
[u'health', u'job', u'focus', u'review']
[u'servic', u'rememb', u'pope']
[u'africa', u'cathol', u'mourn', u'pope', u'death']
[u'alonso', u'provision', u'pole']
[u'australian', u'cathol', u'mourn', u'pope']
[u'bodi', u'second', u'recov', u'river']
[u'bomb', u'squad', u'probe', u'perth', u'blast']
[u'bowyer', u'dyer', u'disgrac', u'newcastl']
[u'brumbi', u'grappl', u'injuri', u'player']
[u'compani', u'call', u'strike']
[u'cairn', u'group', u'call', u'agricultur', u'reform']
[u'carr', u'back', u'minist', u'charg', u'drink', u'drive']
[u'cash', u'inject', u'allow', u'golden', u'circl', u'upgrad']
[u'celtic', u'titl', u'tatter', u'loss', u'heart']
[u'china', u'giant', u'panda', u'broadband']
[u'chopper', u'crash', u'victim', u'name']
[u'chopper', u'engin', u'failur', u'wit']
[u'colour', u'cloth', u'inmat', u'smile']
[u'corser', u'claim', u'race']
[u'corser', u'complet', u'doubl', u'phillip', u'island']
[u'cowboy', u'thrash', u'knight']
[u'crowd', u'weep', u'pray', u'news', u'pope', u'death']
[u'crow', u'magpi']
[u'csiro', u'moor', u'help', u'warn', u'tsunami']
[u'denmark', u'celebr', u'han', u'christian', u'andersen']
[u'doctor', u'press', u'stop', u'surgeri']
[u'dozen', u'whale', u'strand']
[u'dragon', u'defeat', u'pile', u'pressur', u'brown']
[u'weather', u'worri', u'drought', u'committe']
[u'eagl', u'swoop', u'cat']
[u'explos', u'level', u'perth', u'unit']
[u'faith', u'mourn', u'pope', u'john', u'paul']
[u'faith', u'file', u'past', u'pope', u'bodi', u'burial']
[u'feverish', u'pope', u'close']
[u'fight', u'continu', u'save', u'strand', u'whale']
[u'firefight', u'battl', u'wilson', u'promontori', u'blaze']
[u'offic', u'monitor', u'nation', u'park', u'blaze']
[u'fire', u'burn', u'bushland', u'near', u'melbourn']
[u'charg', u'headless', u'bodi']
[u'fourteen', u'arrest', u'peopl', u'smuggl', u'oper']
[u'gorbachev', u'rememb', u'pope', u'number', u'humanist']
[u'govt', u'defend', u'cabooltur', u'redcliff', u'health', u'servic']
[u'headless', u'bodi', u'identifi']
[u'health', u'educ', u'prioriti', u'budget']
[u'helicopt', u'rescu', u'stricken', u'walker', u'mountain']
[u'hobart', u'runner', u'storm', u'mountain', u'event']
[u'weather', u'prompt']
[u'hundr', u'ralli', u'cruis', u'ship', u'termin']
[u'hundr', u'rememb', u'pope', u'patrick', u'cathedr']
[u'form', u'life', u'say', u'centurion', u'sehwag']
[u'iraqi', u'parliament', u'elect', u'speaker']
[u'isra', u'palestinian', u'mourn', u'pope', u'death']
[u'latest', u'defeat', u'pile', u'pressur', u'brown']
[u'charg', u'chase']
[u'charg', u'brisban', u'stab']
[u'charg', u'supermarket', u'robberi']
[u'critic', u'condit', u'perth', u'blast']
[u'port', u'river', u'bridg', u'toll', u'free']
[u'woolli', u'wonder', u'discov']
[u'aussi', u'dead', u'chopper', u'crash', u'report']
[u'australian', u'nia', u'chopper', u'crash']
[u'kill', u'heartbreak', u'chopper', u'crash']
[u'commonwealth', u'argu', u'murray', u'darl', u'fund']
[u'claim', u'success', u'worker', u'recruit', u'campaign']
[u'urg', u'contribut', u'papuan', u'research', u'centr']
[u'offici', u'spain', u'racist', u'countri']
[u'opposit', u'demand', u'drug', u'drive', u'law']
[u'peirsol', u'set', u'world', u'record']
[u'prais', u'pope', u'global', u'contribut']
[u'polic', u'fear', u'miss', u'fisherman']
[u'polic', u'probe', u'alleg', u'abduct', u'darwin']
[u'polic', u'seek', u'carjack', u'wit']
[u'polic', u'seek', u'wit', u'multipl', u'stab']
[u'pope', u'john', u'paul', u'die']
[u'pope', u'john', u'paul', u'die', u'rome']
[u'pope', u'bodi', u'lay', u'vatican']
[u'pope', u'hour', u'spend', u'polish', u'aid']
[u'power', u'aftershock', u'hit', u'nia']
[u'power', u'hold', u'gallant', u'lion']
[u'claim', u'pest', u'control', u'role']
[u'quak', u'rock', u'southern', u'iran']
[u'quak', u'shake', u'north', u'east', u'japan']
[u'queen', u'victoria', u'statu', u'get', u'makeov']
[u'raider', u'trampl', u'dragon']
[u'rain', u'help', u'contain', u'fire']
[u'rescuer', u'struggl', u'save', u'beach', u'whale']
[u'road', u'repair', u'begin', u'wake', u'flood']
[u'saint', u'snatch', u'narrow']
[u'speaker', u'defend', u'make', u'paedophil', u'claim']
[u'scuba', u'diver', u'die', u'gold', u'coast']
[u'second', u'straight', u'titl', u'comeback', u'queen', u'clijster']
[u'sever', u'weather', u'warn', u'issu']
[u'shark', u'surpris', u'bulldog']
[u'ship', u'cook', u'question', u'bloodi', u'fight']
[u'strong', u'wind', u'fuel']
[u'syria', u'set', u'date', u'leav', u'lebanon']
[u'tasmanian', u'urg', u'report', u'whale', u'sight']
[u'teenag', u'hospitalis', u'explos']
[u'teenag', u'kill', u'train']
[u'terri', u'schiavo', u'bodi', u'cremat']
[u'pope']
[u'tiger', u'roar', u'courag', u'hawk']
[u'trio', u'share', u'lead', u'rain', u'relent', u'georgia']
[u'arrest', u'brazil', u'massacr']
[u'troop', u'wound', u'iraq', u'jail', u'attack']
[u'valencia', u'grab', u'away', u'point']
[u'vatican', u'announc', u'pope', u'death']
[u'warrior', u'domin', u'rabbitoh']
[u'weather', u'condit', u'battl', u'fire']
[u'dont', u'want', u'sympathi', u'vote', u'york']
[u'west', u'upset', u'rooster']
[u'wilson', u'promontori', u'burn']
[u'windi', u'pacemen', u'leav', u'south', u'africa', u'reel']
[u'world', u'leader', u'tribut', u'pope']
[u'yudhoyono', u'arriv', u'canberra']
[u'yudhoyono', u'arriv', u'canberra', u'today']
[u'zarqawi', u'group', u'claim', u'ghraib', u'attack', u'report']
[u'accid', u'prompt', u'quad', u'bike', u'danger', u'warn']
[u'adapt', u'surviv', u'climat', u'chang']
[u'afghanistan', u'seek', u'control']
[u'qaeda', u'say', u'suicid', u'bomber', u'iraqi', u'prison']
[u'anderson', u'hear', u'border', u'water', u'issu']
[u'anzac', u'lifeboat', u'return', u'australian', u'memori']
[u'arm', u'hold', u'earn', u'correct', u'order', u'mackay']
[u'auction', u'fund', u'develop', u'fight']
[u'asbesto', u'law', u'effect']
[u'asylum', u'seeker', u'deni', u'medic', u'help', u'court', u'hear']
[u'australia', u'indonesia', u'work', u'secur', u'pact']
[u'avon', u'prove', u'popular', u'seek', u'rural', u'chang']
[u'backpack', u'hostel', u'market']
[u'weather', u'take', u'toll', u'sheep']
[u'ballarat', u'mourn', u'pope', u'pass']
[u'beach', u'whale', u'deep', u'water']
[u'beach', u'whale', u'free']
[u'beatti', u'begin', u'asian', u'trade', u'mission']
[u'bet', u'take', u'pope', u'successor']
[u'birney', u'ask', u'vote', u'valu']
[u'bishop', u'explain', u'pope', u'death']
[u'bodi', u'helicopt', u'crash', u'victim', u'fli']
[u'injur', u'basketbal', u'accid', u'lose', u'foot']
[u'boy', u'foot', u'amput', u'basketbal', u'accid']
[u'breast', u'screen', u'program', u'futur']
[u'bright', u'time', u'ahead', u'solar', u'energi', u'centr']
[u'britain', u'keep', u'wait', u'elect', u'date']
[u'budget', u'hamper', u'murray', u'project']
[u'busi', u'outlook', u'show', u'govt', u'stuff', u'swan']
[u'canberra', u'water', u'suppli', u'decis', u'loom']
[u'castlemain', u'festiv', u'prove', u'popular', u'visitor']
[u'cat', u'wojcinski', u'rule', u'season']
[u'central', u'mourn', u'pope']
[u'charl', u'push', u'ahead', u'wed', u'plan']
[u'chicken', u'farm', u'fund', u'hatch', u'job']
[u'chopper', u'crash', u'victim', u'break', u'hill', u'resid']
[u'chopper', u'ground', u'amid', u'crash', u'probe']
[u'seek', u'chang', u'polic', u'respons', u'domest']
[u'communiti', u'act', u'tree', u'vandal']
[u'coron', u'review', u'autist', u'boy', u'death']
[u'costello', u'approv', u'billiton']
[u'council', u'face', u'tough', u'northern', u'foreshor', u'decis']
[u'councillor', u'consid', u'water', u'chang']
[u'council', u'challeng', u'bridg', u'accid', u'compo']
[u'council', u'merger']
[u'council', u'urg', u'boost', u'schooli', u'fund']
[u'council', u'urg', u'chang', u'plan', u'saleyard', u'site']
[u'council', u'workshop', u'search', u'save']
[u'court', u'hear', u'evid', u'death']
[u'cowra', u'council', u'visit', u'japan']
[u'crash', u'victim', u'receiv', u'honour', u'medal']
[u'dairi', u'farmer', u'interim', u'drought']
[u'damag', u'water', u'pipe', u'close', u'highway']
[u'deleg', u'monitor', u'game', u'prepar']
[u'dignitari', u'respect', u'pope', u'lie', u'state']
[u'doctor', u'group', u'call', u'surgic', u'train']
[u'doctor', u'urg', u'perform', u'rape', u'examin']
[u'dragon', u'coach', u'seek', u'commit']
[u'driver', u'die', u'truck', u'mishap']
[u'dyer', u'bowyer', u'sack', u'player', u'chief']
[u'echidna', u'milk', u'spike', u'dairi', u'farmer']
[u'emerg', u'servic', u'keep', u'busi']
[u'escap', u'basslink', u'burn', u'spark', u'call', u'govt']
[u'warn', u'lift', u'china', u'arm', u'embargo']
[u'shire', u'presid', u'rethink', u'elect', u'nomin']
[u'famili', u'honour', u'helicopt', u'crash', u'victim']
[u'famili', u'surviv', u'fall', u'tree', u'branch']
[u'farm', u'undergo', u'health', u'safeti', u'audit']
[u'feder', u'down', u'nadal', u'dogfight']
[u'firefight', u'continu', u'sister', u'hill', u'bushfir', u'battl']
[u'firefight', u'specialist', u'tackl', u'power', u'station', u'blaze']
[u'appear', u'court', u'decapit']
[u'forecast', u'tip', u'rat', u'rise', u'economi', u'cool']
[u'forestrysa', u'disput', u'end']
[u'serbian', u'general', u'face', u'crime', u'tribun']
[u'forum', u'encourag', u'tasmanian', u'activ']
[u'foster', u'extend', u'hostil', u'southcorp']
[u'fourteen', u'marburg', u'virus']
[u'german', u'polic', u'free', u'inmat', u'hostag']
[u'govern', u'hear', u'darl', u'river', u'plan']
[u'grower', u'oust', u'golden', u'circl', u'board']
[u'hamish', u'hammer', u'lankan', u'attack']
[u'helicopt', u'crash', u'victim', u'return', u'aust']
[u'hobart', u'compani', u'cash', u'research', u'grant']
[u'hope', u'continu', u'farm', u'safeti']
[u'hospit', u'kick', u'smoke', u'habit']
[u'april', u'night', u'mildura']
[u'huge', u'wilson', u'promontori', u'blaze', u'burn']
[u'human', u'traffic', u'rival', u'illeg', u'drug', u'industri']
[u'hungri', u'wildlif', u'go', u'town', u'alic']
[u'illawarra', u'move', u'pope', u'death']
[u'incent', u'offer', u'reliabl', u'power']
[u'india', u'sack', u'offici', u'tiger', u'miss']
[u'indonesian', u'presid', u'thank', u'australia']
[u'indonesian', u'presid', u'tour', u'memori']
[u'injur', u'rathbon', u'hope', u'rapid', u'recoveri']
[u'inquest', u'begin', u'autist', u'boy', u'death']
[u'rate', u'fear', u'investor']
[u'iran', u'hope', u'nuclear', u'energi', u'deal']
[u'itali', u'prepar', u'pilgrim', u'influx']
[u'jail', u'killer', u'releas', u'wife', u'turn', u'aliv']
[u'juri', u'retir', u'consid', u'verdict', u'terror', u'case']
[u'kashmir', u'rule', u'parti', u'offici', u'shoot', u'death']
[u'kewel', u'liverpool', u'histor', u'juve', u'rematch']
[u'kidman', u'latest', u'film', u'take', u'centr', u'stage', u'sydney']
[u'kookaburra', u'look', u'face']
[u'lake', u'grace', u'farmer', u'appoint', u'waff', u'grain', u'chief']
[u'langer', u'back', u'haydo', u'maximus']
[u'lara', u'second', u'test']
[u'lewi', u'resign', u'speaker']
[u'local', u'respect', u'pope']
[u'loud', u'music', u'threat', u'ear', u'teen', u'tell', u'studi']
[u'convict', u'possess', u'child', u'porn', u'get', u'bail']
[u'man', u'face', u'home', u'invas']
[u'tri', u'leav', u'court', u'coat', u'arm']
[u'marburg', u'virus', u'toll', u'hit', u'angola']
[u'matthew', u'defend', u'voss', u'lappin', u'select']
[u'melbourn', u'airport', u'work', u'emerg', u'respons']
[u'mickelson', u'olazab', u'move', u'georgia']
[u'minist', u'welcom', u'educ', u'chang']
[u'mix', u'number', u'seeker']
[u'monaro', u'fire', u'brigad', u'busi']
[u'south', u'australian', u'seek', u'social']
[u'settler', u'wont', u'resist', u'gaza', u'pullout', u'offici']
[u'mugab', u'plan', u'constitut', u'chang']
[u'murray', u'darl', u'project', u'stall', u'govt', u'disput']
[u'navi', u'offer', u'support', u'famili', u'chopper', u'crash']
[u'name', u'grab']
[u'leader', u'announc', u'kapooka', u'train', u'centr']
[u'rotari', u'head', u'vow', u'continu', u'high', u'standard']
[u'million', u'chines', u'face', u'water', u'shortag']
[u'trucki', u'drug', u'union', u'say']
[u'decis', u'coast', u'cruis', u'ship', u'termin']
[u'nrma', u'highlight', u'high', u'princ', u'highway', u'crash', u'rate']
[u'price', u'high']
[u'dead', u'injur', u'collis']
[u'oral', u'safe', u'teen']
[u'oust', u'kyrgyz', u'leader', u'resign']
[u'oust', u'kyrgyz', u'presid', u'resign']
[u'panel', u'listen', u'water', u'concern']
[u'level', u'blame', u'communiti', u'servic']
[u'pell', u'expect', u'papal', u'stabil', u'live']
[u'pilbara', u'workshop', u'discuss', u'creativ', u'busi']
[u'plane', u'rout', u'collect', u'helicopt', u'crash', u'dead']
[u'plant', u'pest', u'reach', u'bowen']
[u'defend', u'king', u'dead', u'crash']
[u'polic', u'await', u'post', u'mortem', u'result', u'newcastl', u'bodi']
[u'polic', u'highlight', u'callous', u'attack', u'senior']
[u'polic', u'investig', u'cargo', u'ship', u'brawl']
[u'polic', u'offic', u'die', u'accid']
[u'polic', u'probe', u'suspici', u'school', u'blaze']
[u'polic', u'quiz', u'trawler', u'crew', u'illeg', u'fish']
[u'polic', u'search', u'miss']
[u'polic', u'seek', u'author', u'halvagi', u'email']
[u'polic', u'train', u'victim']
[u'pope', u'laud', u'indigen', u'right', u'campaign']
[u'pope', u'funer', u'hold', u'friday']
[u'pope', u'pass', u'bring', u'relief']
[u'power', u'boost', u'plan', u'south', u'east']
[u'probe', u'continu', u'perth', u'blast']
[u'probe', u'find', u'insuffici', u'evid', u'high']
[u'project', u'underway', u'record', u'disappear', u'indigen']
[u'properti', u'hurt', u'region', u'area', u'brogden', u'say']
[u'protest', u'hold', u'teacher', u'aid', u'hour']
[u'push', u'continu', u'separ', u'north', u'west', u'region']
[u'cotton', u'gin', u'open']
[u'quak', u'fear', u'forc', u'indonesian', u'home']
[u'quak', u'jolt', u'northern', u'japan']
[u'hop', u'adelaid', u'project', u'wont', u'affect', u'region']
[u'rabin', u'grave', u'desecr']
[u'race', u'cancel', u'high', u'speed', u'boat', u'crash']
[u'rain', u'hit', u'women', u'world']
[u'ranger']
[u'rann', u'ask', u'lewi', u'quit', u'speaker']
[u'disclos', u'true', u'ident', u'inmat']
[u'tell', u'guard', u'inmat', u'reveal']
[u'rawl', u'ban', u'match']
[u'region', u'victoria', u'mourn', u'pope', u'death']
[u'report', u'claim', u'economi', u'slow']
[u'report', u'highlight', u'high', u'econom', u'growth']
[u'resid', u'angri', u'telephon', u'servic', u'woe']
[u'resid', u'claim', u'buffer', u'zone', u'breach']
[u'restaur', u'licenc', u'suspend']
[u'retail', u'deni', u'push', u'trucki']
[u'riverina', u'cathol', u'mourn', u'pope', u'death']
[u'roadsid', u'bomb', u'kill', u'soldier', u'iraq']
[u'roger', u'return', u'hurrican']
[u'rome', u'prepar', u'influx', u'visitor']
[u'saudi', u'secur', u'forc', u'kill', u'gunmen', u'report']
[u'search', u'find', u'miss', u'safe']
[u'shatter', u'black', u'cap', u'pick', u'piec']
[u'sheen', u'play', u'pressur', u'west']
[u'shire', u'talk', u'admin', u'build']
[u'short', u'term', u'econom', u'prospect', u'good', u'tasmania']
[u'sibl', u'thaw', u'hour', u'freez']
[u'siddon', u'hill', u'coach', u'role']
[u'citi', u'top', u'offic']
[u'singapor', u'aust', u'hold', u'joint', u'maritim', u'exercis']
[u'sleep', u'teen', u'surviv', u'crash', u'hous']
[u'small', u'busi', u'minist', u'plead', u'hold', u'rat']
[u'south', u'east', u'sadden', u'pope', u'death']
[u'sport', u'complex', u'plan', u'reach', u'launceston', u'aldermen']
[u'station', u'owner', u'ambush', u'dead', u'tourist']
[u'surgeon', u'departur', u'blow', u'wait', u'list']
[u'sydney', u'meet', u'york']
[u'grape', u'honour', u'pope']
[u'teacher', u'union', u'hit', u'sick', u'leav', u'direct']
[u'team', u'mat', u'stand', u'schulz']
[u'team', u'launch', u'whale', u'rescu', u'plan']
[u'team', u'maintain', u'whale', u'rescu', u'effort']
[u'teenag', u'face', u'court', u'multipl', u'stab']
[u'teen', u'die', u'roll']
[u'tobruk', u'set', u'sail', u'middl', u'east']
[u'tougher', u'law', u'stop', u'flow', u'steal', u'good']
[u'town', u'lobbi', u'communiti', u'bank', u'branch']
[u'travel', u'warn', u'cityrail', u'chang']
[u'truck', u'blaze', u'consid', u'suspici']
[u'truck', u'crash', u'investig']
[u'turkey', u'script', u'win', u'comedi', u'screenplay', u'gong']
[u'tweed', u'council', u'review', u'youth', u'servic']
[u'third', u'chariti', u'forc', u'turn', u'needi', u'away']
[u'union', u'prepar', u'fight', u'chang']
[u'bronckhorst', u'earn', u'late', u'point', u'barca']
[u'firefight', u'face', u'nighter', u'clear']
[u'virgin', u'health', u'scare', u'prompt', u'emerg', u'servic']
[u'virgin', u'put', u'perth', u'kalgoorli', u'flight', u'hold']
[u'wagon', u'face', u'danger', u'throw']
[u'wagon', u'face', u'danger', u'throw']
[u'wine', u'market']
[u'webck', u'repres', u'career']
[u'west', u'brom', u'buoyant', u'toffe', u'come', u'unstuck']
[u'westpac', u'top', u'corpor', u'respons', u'review']
[u'wilson', u'promontori', u'spread', u'north']
[u'woman', u'die', u'accid']
[u'women', u'carriag', u'tackl', u'grope', u'subway']
[u'young', u'gun', u'shoot', u'bear', u'win', u'streak']
[u'yushchenko', u'meet', u'bush', u'washington']
[u'execut', u'amnesti']
[u'conduct', u'test', u'breast', u'cancer', u'case']
[u'activist', u'bring', u'aborigin', u'flag', u'court']
[u'campaign', u'expect', u'lift', u'region', u'tourism']
[u'angler', u'urg', u'know', u'rule']
[u'arson', u'school', u'blaze']
[u'austrian', u'right', u'leader', u'form', u'parti']
[u'autopsi', u'find', u'dead', u'man', u'injuri', u'self']
[u'bateman', u'resid', u'remind', u'burn']
[u'berlusconi', u'take', u'beat', u'region', u'elect']
[u'want', u'council', u'exclud', u'talk']
[u'black', u'cap', u'hold', u'command', u'advantag']
[u'blair', u'announc', u'british', u'elect']
[u'bodi', u'remov', u'polic', u'raid']
[u'boost', u'southern', u'mous', u'fight']
[u'breast', u'screen', u'servic', u'temporari', u'home']
[u'break', u'hill', u'face', u'child', u'porn', u'sentenc']
[u'bush', u'roll', u'carpet', u'yushchenko']
[u'coroni', u'inquiri', u'princ', u'highway']
[u'candid', u'question', u'lewi', u'conduct']
[u'cannon', u'pois', u'sign', u'perth']
[u'crash', u'restaur']
[u'carrol', u'return', u'eel']
[u'cat', u'byrn', u'reward', u'perform', u'eagl']
[u'caution', u'urg', u'death', u'custodi', u'autopsi', u'report']
[u'ceremoni', u'mark', u'return', u'helicopt', u'crash', u'victim']
[u'charg', u'solicitor', u'drop']
[u'charg', u'unlik', u'ship', u'brawl']
[u'china', u'oppos', u'reform', u'plan']
[u'church', u'killer', u'say', u'speak']
[u'coal', u'open']
[u'communiti', u'bushfir', u'manag', u'plan']
[u'compani', u'increas', u'wast', u'fire', u'power', u'program']
[u'convent', u'centr', u'host', u'hardwar', u'confer']
[u'council', u'await', u'virgin', u'postpon', u'flight', u'explan']
[u'council', u'back', u'farmer', u'crop', u'right']
[u'council', u'consid', u'green', u'levi']
[u'council', u'plan']
[u'council', u'urg', u'rethink', u'alcohol', u'free', u'zone', u'plan']
[u'crow', u'hart', u'miss', u'match']
[u'darwin', u'council', u'scrap', u'promot', u'levi']
[u'death', u'custodi', u'autopsi', u'find', u'sign', u'tortur']
[u'democrat', u'dont', u'want', u'olymp', u'expans', u'rush']
[u'deputi', u'get', u'wetland', u'tour']
[u'develop', u'ask', u'control', u'bird', u'pest']
[u'dhoni', u'centuri', u'help', u'india', u'victori']
[u'doubl', u'petrol', u'price', u'unlik', u'auto', u'group', u'say']
[u'dragon', u'welcom', u'gasnier']
[u'dravid', u'back', u'ganguli']
[u'gippsland', u'get', u'ambul', u'respons', u'team']
[u'elector', u'reform', u'centr', u'secret', u'talk', u'govt']
[u'explor', u'bring', u'good', u'news', u'ballarat', u'gold']
[u'famili', u'leader', u'griev', u'helicopt', u'crash']
[u'famili', u'wit', u'homecom', u'crash', u'victim']
[u'farmer', u'feel', u'sheep', u'loss', u'cost']
[u'father', u'appeal', u'driver', u'contact', u'polic']
[u'fisher', u'worri', u'cruis', u'ship', u'termin', u'plan']
[u'flood', u'tactic', u'wreck', u'game', u'wallac']
[u'ford', u'worker']
[u'forest', u'contractor', u'troubl', u'industri', u'group', u'say']
[u'fund', u'boost', u'donald', u'industri', u'estat']
[u'attend', u'pope', u'funer']
[u'giant', u'antarct', u'iceberg', u'head', u'west']
[u'govt', u'accus', u'uninterest', u'inquest']
[u'govt', u'challeng', u'debat', u'transport', u'issu']
[u'govt', u'defend', u'commit', u'mental', u'health']
[u'govt', u'support', u'wheat', u'market', u'review']
[u'group', u'oppos', u'bourk', u'weir', u'work']
[u'grudg', u'waratah', u'cannon']
[u'guardian', u'concern', u'killer', u'melbourn']
[u'hagan', u'includ', u'dragon', u'smith']
[u'harbour', u'export', u'develop', u'beat', u'live', u'cattl']
[u'hard', u'work', u'pay', u'kerang', u'dairi', u'apprentic']
[u'high', u'hop', u'proserpin', u'sugar']
[u'hill', u'back', u'vote', u'valu']
[u'histor', u'break', u'hill', u'serv', u'drink']
[u'victim', u'father', u'angri', u'juvenil', u'justic']
[u'hope', u'remain', u'australian']
[u'hors', u'skill', u'win', u'snowi', u'river', u'challeng']
[u'hospit', u'review', u'delay', u'treat', u'minist']
[u'hous', u'blaze', u'consid', u'suspici']
[u'hundr', u'evacu', u'bush', u'rag', u'south']
[u'independ', u'attack', u'birney', u'elector', u'reform']
[u'indigen', u'australian', u'rememb', u'pope']
[u'indonesian', u'leader', u'look', u'closer', u'secur', u'tie']
[u'inquest', u'tell', u'paddi', u'wagon', u'design', u'contribut']
[u'invest', u'confid', u'slide']
[u'iraqi', u'armi', u'general', u'kidnap', u'baghdad']
[u'italian', u'blame', u'region', u'elect', u'result']
[u'ivori', u'coast', u'govern', u'talk', u'rebel']
[u'joplin', u'band', u'hunt', u'pearl']
[u'labor', u'doubt', u'easi', u'access', u'east', u'asian', u'summit']
[u'lake', u'macquari', u'council', u'record', u'construct']
[u'landmark', u'name', u'historian']
[u'launceston', u'council', u'announc', u'sport', u'facil']
[u'laundri']
[u'life', u'sentenc', u'uphold', u'khmer', u'roug', u'leader']
[u'macgil', u'name', u'ash', u'squad']
[u'accus', u'speed', u'drink']
[u'jail', u'sexual', u'assault', u'stepdaught']
[u'maraud', u'camel', u'destroy', u'tap', u'toilet']
[u'mayor', u'surpris', u'chang', u'drought', u'status']
[u'melbourn', u'famili', u'face', u'multipl', u'charg']
[u'memori', u'hold', u'helicopt', u'crash', u'victim']
[u'mental', u'health', u'nurs', u'reject', u'zero', u'toler', u'polici']
[u'mickelson', u'win', u'play', u'tussl']
[u'minist', u'consid', u'recherch', u'heritag']
[u'minist', u'ask', u'overturn', u'plan', u'elector']
[u'minist', u'hear', u'sunshin', u'coast', u'green', u'concern']
[u'mitsubishi', u'record', u'percent', u'increas', u'sale']
[u'call', u'baxter', u'mental', u'patient']
[u'domest', u'violenc', u'educ', u'urg', u'polic']
[u'fund', u'seek', u'communiti', u'servic', u'agenc']
[u'wit', u'child', u'death', u'inquest']
[u'mourner', u'queue', u'glimps', u'pope']
[u'angri', u'mildura', u'rail']
[u'campaign', u'hospit', u'closur']
[u'plead', u'hospit']
[u'morgan', u'bash', u'charg', u'hear']
[u'murray', u'darl', u'basin', u'commiss', u'unhappi', u'fund']
[u'narnia', u'filmmak', u'face', u'fine']
[u'nasa', u'turn', u'mexican', u'lake', u'clue', u'alien', u'life']
[u'hous', u'regul']
[u'jail', u'put', u'focus', u'rehabilit']
[u'target', u'neglect', u'parent', u'carer']
[u'work', u'forc', u'orang', u'ridgeway']
[u'flag', u'drape', u'casket', u'arriv']
[u'date', u'conclav', u'elect', u'pope', u'vatican']
[u'beaut', u'scheme', u'region', u'romanc']
[u'judg', u'head', u'prison', u'inquiri']
[u'skill', u'worker', u'shortag', u'worsen']
[u'offic', u'alleg', u'polic', u'involv', u'fiji', u'coup']
[u'opposit', u'call', u'answer', u'drink', u'drive']
[u'opposit', u'push', u'sugar', u'releas']
[u'orang', u'council', u'plan', u'suburb']
[u'orion', u'energi', u'director', u'convict', u'charg']
[u'queue', u'pope', u'bodi']
[u'pacif', u'brace', u'freight', u'cost', u'hike']
[u'packer', u'meet', u'fuel', u'onlin', u'gambl', u'deal', u'fear']
[u'parent', u'disabl', u'student', u'fund', u'overhaul']
[u'park', u'resid', u'offer', u'help', u'road', u'seal']
[u'peopl', u'begin', u'farewel', u'pope']
[u'petit', u'urg', u'action', u'halt', u'cane', u'toad', u'march', u'west']
[u'pitcairn', u'welcom', u'generat']
[u'play', u'abus', u'cathol', u'church', u'win', u'pulitz']
[u'see', u'petrol', u'price', u'rat', u'factor']
[u'polic', u'chief', u'charg', u'nigerian', u'minist', u'sack']
[u'polic', u'clash', u'famili', u'shoot']
[u'polic', u'detain', u'ahead', u'kashmir', u'roll']
[u'polic', u'tough', u'unroadworthi', u'car']
[u'polic', u'intensifi', u'babi', u'death', u'investig']
[u'polic', u'shoot', u'dead', u'raid', u'hous']
[u'policeman', u'trial', u'rape']
[u'polic', u'station', u'owner', u'odd', u'tourist', u'death']
[u'polic', u'storm', u'canberra', u'tent', u'embassi']
[u'polic', u'surround', u'tent', u'embassi', u'canberra']
[u'pope', u'death', u'unit', u'communiti']
[u'pope', u'buri', u'beneath', u'peter', u'basilica']
[u'power', u'compani', u'gear', u'tree', u'trim']
[u'prison', u'strike', u'right', u'pump', u'iron']
[u'public', u'ask', u'help', u'stop', u'nativ', u'seed', u'scam']
[u'public', u'honour', u'chopper', u'crash', u'victim']
[u'push', u'intensifi', u'primari', u'school']
[u'rate', u'rise', u'talk', u'keep', u'investor', u'guard']
[u'report', u'urg', u'farmer', u'plan', u'retir']
[u'resid', u'campaign', u'better', u'power', u'suppli']
[u'retail', u'slump', u'surpris', u'chamber', u'commerc']
[u'rethink', u'need', u'fruit', u'campaign']
[u'riverina', u'get', u'support', u'health', u'council']
[u'road', u'damag', u'expect']
[u'pay', u'tribut', u'chopper', u'crash', u'victim']
[u'govt', u'attempt', u'truncat', u'parliamentari']
[u'govt', u'withdraw', u'parliamentari', u'privileg']
[u'predict', u'econom', u'growth']
[u'scenic', u'flight', u'moot', u'magnet']
[u'schooli', u'fund', u'decis', u'delay']
[u'school', u'mourn', u'loss', u'student', u'train', u'mishap']
[u'king', u'buyer', u'welcom', u'ground']
[u'search', u'continu', u'miss']
[u'search', u'businessman', u'custom']
[u'senat', u'confirm', u'launceston', u'sport', u'facil']
[u'servic', u'industri', u'figur', u'rise']
[u'shannon', u'noll', u'ban', u'drink', u'drive']
[u'shark', u'fight', u'town', u'icon']
[u'sharon', u'back', u'jewish', u'settlement', u'growth']
[u'shellharbour', u'council', u'consid', u'airport', u'passeng']
[u'sonni', u'month']
[u'south', u'barker', u'exit', u'competit']
[u'specialist', u'centr', u'expect', u'attract', u'health']
[u'strong', u'wind', u'stir', u'surf']
[u'summit', u'highlight', u'volunt', u'issu']
[u'survivor', u'mark', u'day', u'tsunami', u'disast']
[u'swimmer', u'warn', u'croc', u'spot']
[u'sydney', u'airport', u'termin', u'open', u'evacu']
[u'sydney', u'ceremoni', u'honour', u'fall', u'troop']
[u'level', u'predict', u'rise']
[u'teacher', u'support', u'time', u'cut', u'spark', u'strike']
[u'telstra', u'appoint', u'freehil', u'advic']
[u'thai', u'secur', u'increas', u'amid', u'fear']
[u'equat', u'rock', u'world']
[u'face', u'court', u'fatal', u'raid']
[u'tiger', u'mcfayden', u'join', u'hill', u'academi']
[u'timmin', u'follow', u'webck', u'lead']
[u'townsvill', u'offer', u'support', u'chopper', u'tragedi']
[u'trade', u'deficit', u'stay']
[u'tribut', u'flow', u'launceston', u'bear', u'nurs']
[u'tripl', u'jumper', u'set', u'sight', u'oversea', u'competit']
[u'link', u'bulli']
[u'milit', u'dead', u'saudi', u'clash', u'report']
[u'undertak', u'want', u'inquiri', u'buri', u'budget', u'funer']
[u'extend', u'peacekeep', u'mandat', u'ivori', u'coast']
[u'union', u'reject', u'govt', u'migrant', u'worker', u'plan']
[u'eye', u'nuclear', u'arm', u'program']
[u'giant', u'plan', u'billion', u'takeov']
[u'oilman', u'seek', u'gusher', u'israel']
[u'troop', u'battl', u'insurg', u'east', u'baghdad']
[u'valuat', u'neglect', u'veget', u'clear', u'ban', u'hobb']
[u'vanston', u'deni', u'advic', u'ignor']
[u'land', u'chang', u'horizon']
[u'polic', u'defend', u'fatal', u'shoot']
[u'voss', u'quit', u'captainci']
[u'wagon', u'ban', u'bronco', u'clash']
[u'memori', u'acquir', u'changi', u'cell', u'door']
[u'websit', u'fin', u'send', u'spam']
[u'say', u'fight', u'fund', u'need']
[u'william', u'contest', u'wrestl', u'charg']
[u'william', u'win', u'fight', u'wrestl', u'charg']
[u'wilson', u'promontori', u'blaze', u'hamper', u'busi']
[u'woman', u'truck', u'bridg', u'fall']
[u'world', u'power', u'truck', u'engin', u'unveil']
[u'wyndham', u'water', u'woe']
[u'york', u'serious', u'consid', u'sydney']
[u'zimbabw', u'opposit', u'seek', u'fresh', u'poll']
[u'aborigin', u'activist', u'give', u'good', u'behaviour', u'bond']
[u'action', u'plan', u'aim', u'help', u'troubl', u'race', u'club']
[u'increas', u'fuel', u'surcharg']
[u'studi', u'find', u'kalgoorli', u'boulder', u'dust', u'problem']
[u'demand', u'govt', u'mend', u'health']
[u'archbishop', u'call', u'pope', u'beatifi']
[u'armstrong', u'file', u'counterclaim', u'dope', u'alleg']
[u'auction', u'rais', u'money', u'asian', u'museum']
[u'asia', u'divid', u'support', u'australia', u'summit']
[u'astronaut', u'join', u'wright', u'brother', u'replica', u'launch']
[u'atapattu', u'complet', u'centuri']
[u'atroc', u'darfur', u'intern', u'court']
[u'australian', u'hop', u'spanish', u'judg', u'allow', u'home']
[u'australian', u'jail', u'fiji', u'break', u'law']
[u'australian', u'master', u'pair', u'reveal']
[u'aust', u'afghanistan', u'solomon']
[u'award', u'win', u'author', u'saul', u'bellow', u'die']
[u'badawi', u'touch', u'australia']
[u'beatti', u'push', u'sugar', u'export', u'asia']
[u'beef', u'produc', u'say', u'oppos', u'levi', u'increas']
[u'beetl', u'featur', u'gippsland', u'weed', u'fight']
[u'biolog', u'survey', u'focus', u'pilbara']
[u'birney', u'face', u'vote', u'valu', u'pressur']
[u'breaker', u'player', u'west']
[u'breed', u'anemon']
[u'break', u'hill', u'hold', u'funer', u'chopper', u'crash']
[u'broom', u'singapor', u'flight', u'closer']
[u'buckley', u'plan', u'stay', u'skipper']
[u'improv', u'wont', u'mean', u'fare', u'rise']
[u'busi', u'urg', u'employ', u'older', u'worker']
[u'learner', u'driver', u'truck', u'safeti']
[u'telstra', u'sale', u'fund', u'princ']
[u'cardin', u'choos', u'date', u'pick', u'pope']
[u'carr', u'refus', u'access', u'competit', u'tribun']
[u'carr', u'assassin', u'mental', u'court', u'tell']
[u'charl', u'sturt', u'rais', u'fee', u'percent']
[u'cholera', u'outbreak', u'claim', u'live', u'week']
[u'clark', u'maintain', u'concern', u'indi', u'affect']
[u'coal', u'industri', u'urg', u'publicis', u'greenhous', u'work']
[u'communiti', u'rais', u'land', u'tenur']
[u'virus', u'attack', u'percent']
[u'confid', u'venus', u'power', u'florida']
[u'correct', u'servic', u'investig', u'prison', u'death']
[u'council', u'air', u'concern', u'popul', u'growth']
[u'councillor', u'argu', u'meet', u'procedur']
[u'council', u'reject', u'port', u'campbel', u'motel', u'plan']
[u'council', u'remov', u'portabl', u'soccer', u'goalpost']
[u'council', u'legal', u'advic', u'matter']
[u'council', u'worker', u'counter', u'terror', u'lowdown']
[u'court', u'hear', u'mistress', u'act', u'murder', u'attempt']
[u'culbert', u'resign', u'chairman', u'selector']
[u'dandenong', u'arm', u'robberi', u'trigger', u'polic', u'hunt']
[u'death', u'custodi', u'inquest', u'hear', u'communiti', u'polic']
[u'defenc', u'compani', u'seek', u'discrimin']
[u'demerit', u'chang', u'spark', u'licenc', u'loss', u'fear']
[u'develop', u'scale', u'tuna', u'farm', u'plan']
[u'swab', u'order', u'kidman', u'bug', u'case']
[u'dont', u'abandon', u'chopper', u'victim', u'black', u'hawk', u'survivor']
[u'drill', u'shortag', u'hamper', u'gold', u'explor']
[u'drought', u'plan', u'reduc', u'tape']
[u'drug', u'show', u'promis', u'fight', u'alcohol']
[u'weather', u'spark', u'rethink', u'eas', u'ban']
[u'reject', u'wilson', u'promontori', u'anim', u'death', u'claim']
[u'elect', u'fever', u'grip', u'british', u'press']
[u'england', u'forget', u'aussi', u'reput', u'thorp']
[u'ethic', u'claus', u'debat', u'threaten', u'research', u'centr']
[u'expat', u'export', u'fiji', u'fund']
[u'fever', u'master']
[u'factbox', u'cardin', u'want', u'pope']
[u'famili', u'face', u'court', u'polic', u'fatal', u'raid']
[u'urg', u'congress', u'renew', u'patriot']
[u'fish', u'track', u'research', u'project']
[u'flatley', u'deni', u'sharp', u'bargain']
[u'flatley', u'give', u'red', u'captainci']
[u'florida', u'pass', u'stand', u'grind']
[u'foley', u'want', u'loxton', u'better', u'inform', u'polic']
[u'follow', u'perth', u'cannon']
[u'forum', u'discuss', u'station', u'develop']
[u'fourth', u'person', u'charg', u'south', u'burnett', u'murder']
[u'gladston', u'rape', u'charg', u'deni', u'bail']
[u'glencor', u'see', u'rival', u'austral', u'takeov']
[u'govern', u'warn', u'power', u'station', u'emiss']
[u'govt', u'consid', u'medal', u'crash', u'victim']
[u'govt', u'destroy', u'ineffect', u'vaccin']
[u'govt', u'pledg', u'tape', u'drought']
[u'govt', u'rail', u'plan']
[u'grain', u'bodi', u'upbeat', u'futur', u'product']
[u'water', u'face', u'stand', u'reservoir', u'plan']
[u'habib', u'part', u'way', u'australian', u'lawyer']
[u'health', u'project', u'target', u'indigen', u'infect']
[u'helicopt', u'crash', u'survivor', u'return', u'home']
[u'holiday', u'dutchman', u'charg', u'ecstasi']
[u'hospit', u'emerg', u'dept', u'open', u'despit']
[u'howard', u'argu', u'closer', u'asian', u'tie']
[u'hang', u'juri', u'alic', u'assault', u'trial']
[u'hunter', u'organis', u'costa']
[u'indian', u'plot', u'balloon', u'ride', u'edg', u'space']
[u'rate', u'decis', u'welcom']
[u'investor', u'want', u'citrus', u'tree', u'tabl', u'grape']
[u'iraqi', u'pick', u'kurd', u'presid']
[u'ivori', u'coast', u'leader', u'agre', u'hostil']
[u'japan', u'aim', u'astronaut', u'moon']
[u'job', u'risk', u'reform', u'farmer']
[u'judg', u'urg', u'open', u'health', u'issu']
[u'juri', u'fail', u'reach', u'verdict', u'harri', u'scarf']
[u'kanimbla', u'crew', u'finish', u'colleagu', u'work']
[u'kid', u'favourit', u'wiggl', u'wealth', u'list']
[u'koschitzk', u'sidelin', u'hamstr', u'strain']
[u'labor', u'caution', u'indigen', u'land', u'ownership', u'law']
[u'labor', u'rais', u'concern', u'crash', u'compens']
[u'lancashir', u'victim', u'hodg', u'success']
[u'lehmann', u'know']
[u'lewi', u'reject', u'elect', u'damag', u'claim']
[u'liuzzi', u'give', u'chanc', u'bull']
[u'lloyd', u'return', u'hawk', u'clash']
[u'die', u'north', u'west', u'road', u'crash']
[u'face', u'court', u'weekend', u'abduct']
[u'kill', u'furnac', u'explos']
[u'lose', u'societi', u'member']
[u'guilti', u'plan', u'terror', u'attack']
[u'highlight', u'connect']
[u'martin', u'threat', u'milan', u'derbi', u'ancelotti']
[u'master', u'cours', u'hole', u'hole']
[u'mayor', u'play', u'weir', u'rais', u'concern']
[u'mcginti', u'dismiss', u'govt', u'plan', u'fund', u'health', u'bodi']
[u'mcinn', u'complet', u'coach', u'jigsaw']
[u'memor', u'moment', u'master']
[u'milit', u'kill', u'attack', u'kashmir', u'tourist', u'centr']
[u'minist', u'deni', u'surplus', u'exceed', u'forecast']
[u'minist', u'hear', u'plan', u'waterfront', u'entertain']
[u'missil', u'guard', u'pope', u'funer']
[u'monaco', u'princ', u'rainier', u'die']
[u'australian', u'toast', u'red']
[u'farmer', u'drought', u'plan']
[u'support', u'urg', u'remot', u'school', u'teacher']
[u'time', u'asid', u'east', u'legal', u'appeal']
[u'time', u'seek', u'biodivers', u'conserv']
[u'children', u'immunis', u'registri']
[u'back', u'union', u'demand', u'aid', u'time', u'prep']
[u'pour', u'cold', u'water', u'murray', u'valley', u'food', u'levi']
[u'multiplex', u'receiv', u'second', u'extort', u'threat']
[u'muslim', u'want', u'islam', u'divorc', u'court', u'perth']
[u'foreshadow', u'loss']
[u'naval', u'squadron', u'offer', u'chopper', u'crash', u'counsel']
[u'nigerian', u'senat', u'head', u'quit', u'graft', u'alleg']
[u'dead', u'helicopt', u'crash', u'afghanistan']
[u'noll', u'say', u'drink', u'drive', u'irrespons', u'danger']
[u'land', u'council', u'warn', u'plan', u'ownership']
[u'spend', u'wadey', u'school']
[u'call', u'autopsi', u'death', u'ivori', u'coast']
[u'firm', u'drive', u'probe', u'truck', u'safeti']
[u'salut', u'yudhoyono', u'leav', u'guest', u'reel']
[u'occi', u'wave', u'surfest']
[u'parliament', u'hous', u'leav', u'heritag', u'list']
[u'oliv', u'year']
[u'opposit', u'support', u'darfur', u'crime', u'list']
[u'palestinian', u'sniper', u'shoot', u'isra']
[u'hunter', u'park', u'servic', u'fire', u'line']
[u'prais', u'rat', u'decis']
[u'seal', u'indigen', u'servic', u'deal']
[u'visit', u'helicopt', u'crash', u'survivor']
[u'poison', u'fish', u'provid', u'pain', u'cure']
[u'polic', u'raid', u'home', u'speaker', u'volunt']
[u'polic', u'raid', u'strip', u'club', u'night']
[u'polic', u'home', u'violenc', u'workshop', u'link']
[u'polic', u'investig']
[u'pompey', u'target', u'strachan']
[u'port', u'kembla', u'cargo', u'facil']
[u'powercor', u'defend', u'mainten', u'fund']
[u'princ', u'rainier', u'die']
[u'public', u'quiz', u'wind', u'farm']
[u'public', u'advantag', u'water', u'rebat']
[u'public', u'join', u'council', u'conduct', u'committe']
[u'public', u'urg', u'mossi', u'protect']
[u'qanta', u'tip', u'announc', u'price', u'hike']
[u'race', u'club', u'revamp']
[u'rail', u'industri', u'adopt', u'safeti', u'standard']
[u'rain', u'boost', u'gold', u'coast']
[u'rann', u'unveil', u'tram', u'project']
[u'rat', u'decis', u'drag', u'market', u'lower']
[u'keep', u'rat', u'steadi']
[u'flag', u'gilchrist']
[u'red', u'snub', u'forc', u'breaker', u'head', u'west']
[u'region', u'child', u'care', u'support', u'servic']
[u'club', u'get', u'changi', u'lock', u'mark', u'anniversari']
[u'ruddock', u'reserv', u'verdict', u'judici', u'review']
[u'saudi', u'forc', u'kill', u'milit', u'fierc', u'gunbattl']
[u'pledg', u'watch', u'corbi', u'trial', u'hearten', u'downer']
[u'septemb', u'start', u'buchanan', u'park', u'work']
[u'servic', u'rememb', u'hero']
[u'seven', u'scoop', u'profit', u'ticketmast', u'sale']
[u'attack', u'abduct', u'spark', u'polic', u'safeti', u'warn']
[u'sharp', u'confirm', u'perth']
[u'shearer', u'shave', u'record', u'book']
[u'shire', u'buri', u'cemeteri', u'plan']
[u'shire', u'take', u'blame', u'club', u'quit', u'footi', u'season']
[u'shuttl', u'return', u'flight', u'month', u'away']
[u'snug', u'cove', u'master', u'plan', u'lift', u'tourism']
[u'sonni', u'bill', u'ankl', u'add', u'dog', u'woe']
[u'soprano', u'actor', u'charg', u'girlfriend', u'assault']
[u'southern', u'star', u'world', u'final']
[u'stanhop', u'seek', u'extradit', u'chines', u'murder']
[u'state', u'school', u'student', u'better']
[u'stoner', u'push', u'hospit', u'upgrad']
[u'strategi', u'aim', u'minimis', u'nation', u'park', u'damag']
[u'stress', u'train', u'help', u'lower', u'blood', u'pressur']
[u'student', u'farewel', u'crash', u'survivor']
[u'submiss', u'close', u'draft', u'develop', u'control']
[u'support', u'council', u'manag', u'silverdom']
[u'survey', u'paint', u'grim', u'outlook', u'economi']
[u'suspect', u'case', u'marburg', u'virus', u'hit', u'angola', u'slum']
[u'tafe', u'director', u'stand', u'miner', u'worker', u'select']
[u'talk', u'continu', u'symmon', u'plain', u'race']
[u'author', u'get', u'literatur', u'award']
[u'task', u'forc', u'tackl', u'maroochi', u'river', u'plan']
[u'tebbutt', u'stand', u'school', u'secur', u'wade', u'high']
[u'test', u'confirm', u'dog', u'mump']
[u'energi', u'giant', u'share', u'gorgon', u'project']
[u'tourist', u'breach', u'secur', u'ahead', u'royal', u'wed']
[u'trucki']
[u'truss', u'beat', u'sugar', u'sustain', u'grant']
[u'trust', u'resign', u'shock', u'council']
[u'twin', u'leav', u'hospit', u'separ', u'surgeri']
[u'journalist', u'deni', u'break', u'zimbabw', u'law']
[u'nomin', u'afghan', u'envoy', u'iraq', u'ambassador']
[u'soldier', u'kill', u'baghdad', u'ambush']
[u'troop', u'wind', u'journalist', u'iraq']
[u'vatican', u'announc', u'break', u'tradit']
[u'veget', u'manag', u'factor', u'land']
[u'wagga', u'face', u'court', u'bomb', u'flight', u'comment']
[u'govt', u'urg', u'boost', u'jail', u'fund', u'wake']
[u'wateri', u'protest', u'earn', u'lehmann', u'match']
[u'websit', u'remov', u'centr', u'paedophil']
[u'player', u'say', u'master']
[u'willard', u'murder', u'trial']
[u'wine', u'industri', u'seek', u'sticker', u'misus']
[u'wit', u'grill', u'jackson', u'grope', u'account']
[u'woman', u'boot', u'tell', u'murder', u'fear', u'court', u'hear']
[u'woman', u'plead', u'guilti', u'rap', u'babi', u'daughter']
[u'zaki', u'mallah', u'guilti', u'plan', u'terrorist', u'attack']
[u'expans', u'plan', u'near', u'orang']
[u'aborigin', u'bone', u'theft', u'investig']
[u'raid', u'alleg', u'spam', u'email', u'compani']
[u'acid', u'spill', u'affect', u'brisban', u'refineri', u'worker']
[u'crossword', u'keep', u'dementia', u'away']
[u'administr', u'chang', u'affect', u'small', u'shire']
[u'aerial', u'search', u'west', u'petroleum']
[u'urg', u'respond', u'killer', u'possibl', u'parol']
[u'forc', u'servic', u'honour', u'helicopt', u'crash', u'victim']
[u'annan', u'slam', u'human', u'right', u'bodi']
[u'arm', u'thiev', u'away', u'pseudoephedrin', u'haul']
[u'aust', u'malaysia', u'work']
[u'australia', u'malaysia', u'agre', u'begin', u'formal']
[u'australia', u'malaysia', u'work']
[u'australian', u'drug', u'declin']
[u'australian', u'remind', u'exercis', u'caution', u'turkey']
[u'bail', u'accus', u'threaten', u'premier']
[u'bendigo', u'mass', u'honour', u'pope', u'life']
[u'bioga', u'power', u'plant', u'propon', u'talk', u'plan']
[u'block', u'pilgrim', u'pope']
[u'braini', u'student', u'get', u'root', u'digit', u'number']
[u'british', u'soldier', u'clear', u'iraqi', u'civilian', u'murder']
[u'builder', u'examin', u'multiplex', u'extort', u'threat']
[u'build', u'attack', u'kashmir']
[u'continu', u'alic', u'spring', u'mount', u'polic']
[u'caltex', u'notifi', u'famili', u'acid', u'leak', u'injur']
[u'cannabi', u'ingredi', u'tackl', u'heart', u'diseas', u'caus']
[u'carr', u'govt', u'move', u'chang', u'oath', u'allegi']
[u'ceremoni', u'rememb', u'fall', u'hero']
[u'cheap', u'airfar', u'offer', u'mask', u'internet', u'scam']
[u'chelsea', u'milan', u'champion', u'leagu', u'clash']
[u'child', u'abus', u'fail', u'impress', u'govt']
[u'child', u'accus', u'bail']
[u'china', u'boycott', u'pope', u'funer', u'anti', u'taiwan', u'protest']
[u'church', u'servic', u'honour', u'pope']
[u'citi', u'rodeo', u'capit', u'titl']
[u'interview', u'speaker', u'resign', u'call']
[u'collaps', u'rais', u'photon', u'research', u'doubt']
[u'congo', u'ferri', u'capsiz', u'fear', u'dead']
[u'continu', u'hous', u'market', u'slowdown', u'predict']
[u'contract', u'trucki', u'lift', u'toll', u'blockad']
[u'cook', u'hill', u'woman', u'die', u'multipl', u'stab']
[u'corbel', u'face', u'confid', u'vote', u'foskey', u'deal']
[u'corbi', u'face', u'delay']
[u'corbi', u'trial', u'delay']
[u'corbi', u'trial', u'wit', u'seek', u'bail']
[u'coron', u'extend', u'probe', u'autist', u'boy', u'death']
[u'costa', u'consid', u'north', u'coast', u'infrastructur']
[u'council', u'put', u'plat', u'fast', u'lane']
[u'council', u'press', u'ahead', u'airport', u'sale']
[u'council', u'brake', u'servic', u'fund']
[u'court', u'clear', u'cult', u'member', u'execut']
[u'court', u'dismiss', u'jackson', u'rumour']
[u'credit', u'union', u'look', u'merger', u'benefit']
[u'crocodil', u'kill', u'attack', u'fisherman']
[u'cross', u'border', u'travel', u'attack', u'kashmir']
[u'say', u'hec', u'rise', u'wont', u'hurt', u'enrol']
[u'say', u'higher', u'student', u'fee', u'resort']
[u'dallaglio', u'back', u'lion', u'backroom', u'cast', u'thousand']
[u'date', u'meet', u'elect', u'pope']
[u'defenc', u'bronco', u'carrol']
[u'democrat', u'welcom', u'independ', u'bushfir', u'probe']
[u'detaine', u'transfer', u'psychiatr', u'care']
[u'develop', u'urg', u'address', u'build', u'concern']
[u'devil', u'diseas', u'transmiss', u'scrutini']
[u'dignitari', u'arriv', u'pope', u'funer']
[u'downer', u'congratul', u'iraqi', u'presid']
[u'driver', u'abl', u'test', u'calder', u'work', u'soon']
[u'emerg', u'chopper', u'face', u'woe']
[u'emerg', u'servic', u'test', u'skill', u'simul']
[u'energi', u'financi', u'stock', u'boost', u'wall', u'street']
[u'expans', u'bank', u'qlds', u'record', u'profit']
[u'extend', u'game', u'villag', u'get', u'thumb']
[u'surgeri', u'wait', u'list', u'grow']
[u'fail', u'vote', u'confid', u'save', u'bacon']
[u'famili', u'refus', u'leav', u'jail', u'attend', u'funer']
[u'farmer', u'reliev', u'rat', u'hold']
[u'farm', u'group', u'cast', u'doubt', u'drought', u'plan']
[u'fatti', u'acid', u'breakthrough', u'eas', u'demand', u'fish']
[u'feder', u'govt', u'reject', u'age', u'care', u'claim']
[u'feral', u'turtl', u'prompt', u'survey']
[u'final', u'food', u'shipment', u'arriv', u'china']
[u'finnish', u'elvi', u'launch', u'pope', u'tribut']
[u'crew', u'guard', u'hypothermia']
[u'footbal', u'leagu', u'upset', u'south', u'barker', u'exit']
[u'council', u'claim', u'damag']
[u'geelong', u'grammar', u'worker', u'charg']
[u'onetel', u'director', u'lose', u'court', u'cost']
[u'frenchman', u'perrin', u'pompey']
[u'fuel', u'inquiri', u'report', u'near', u'complet']
[u'ganguli', u'bank', u'luck', u'slump', u'turn', u'desper']
[u'garrett', u'urg', u'labor', u'lead', u'greenhous']
[u'gold', u'rush', u'theme', u'park', u'sale']
[u'gospel', u'music', u'festiv', u'oppos', u'high', u'rise', u'plan']
[u'govt', u'approv', u'port', u'kembla', u'expans', u'second', u'stage']
[u'govt', u'consid', u'rental', u'deposit', u'author']
[u'govt', u'stick', u'king', u'honour', u'plan']
[u'govt', u'council', u'spend', u'crackdown']
[u'govt', u'urg', u'spend', u'fund', u'region', u'road']
[u'green', u'want', u'prison', u'probe']
[u'health', u'retreat', u'propos', u'reject']
[u'healthi', u'breakfast', u'trial', u'primari', u'school']
[u'heart', u'surgeon', u'warn', u'govt', u'hospit', u'death']
[u'hope', u'summit', u'provid', u'way', u'attract', u'worker']
[u'hous', u'group', u'welcom', u'collabor']
[u'howard', u'badawi', u'discuss']
[u'indigen', u'leader', u'warn', u'dramat', u'land']
[u'indonesia', u'reduc', u'possibl', u'tsunami', u'death', u'toll']
[u'injuri', u'forc', u'reshuffl', u'ahead', u'showdown']
[u'inquest', u'deliv', u'find', u'autist', u'boy']
[u'give', u'consider', u'sinn', u'fein', u'plea']
[u'japan', u'reject', u'critic', u'approv', u'textbook']
[u'judg', u'rule', u'inquest', u'custodi', u'death']
[u'justic', u'minist', u'discuss', u'corbi', u'case']
[u'korp', u'famili', u'decid', u'fate']
[u'lack', u'demand', u'ethanol', u'hamper', u'invest']
[u'lake', u'row', u'cours', u'extend']
[u'land', u'council', u'cast', u'doubt', u'home', u'ownership', u'plan']
[u'landmark', u'trip', u'kashmir', u'begin']
[u'landmark', u'trip', u'kashmir', u'end']
[u'lapaglia', u'join', u'sydney', u'board']
[u'larkham', u'rule', u'brumbi', u'highland', u'clash']
[u'law', u'pass', u'protect', u'river', u'dolphin']
[u'levi', u'need', u'road', u'free', u'traffic']
[u'arrest', u'rockhampton', u'arm', u'stand']
[u'charg', u'drug', u'gun']
[u'mango', u'grower', u'hope', u'confer', u'bear', u'fruit']
[u'mayor', u'air', u'wharf', u'redevelop', u'worri']
[u'meal', u'wheel', u'consid', u'bush', u'tucker', u'menu']
[u'meet', u'like', u'discuss', u'gold', u'coast', u'cruis', u'ship']
[u'meet', u'plan', u'debat', u'polic', u'station']
[u'mine', u'stock', u'lift', u'market']
[u'wont', u'vote', u'vote', u'valu']
[u'molik', u'dump', u'florida', u'event']
[u'mother', u'abandon', u'access', u'respit', u'care']
[u'mourinho', u'face', u'heat', u'secret', u'messag']
[u'mourinho', u'offer', u'chelsea', u'deal', u'say', u'agent']
[u'mourner', u'turn', u'away', u'rome']
[u'reject', u'telstra', u'highway', u'fund']
[u'transfer', u'allegi', u'queen', u'constitu']
[u'beat', u'retir', u'villag', u'fund']
[u'multiplex', u'construct', u'worker', u'wont']
[u'multiplex', u'staff', u'defi', u'extort', u'threat']
[u'murder', u'trial', u'hear', u'wife', u'call']
[u'mysteri', u'surround', u'hardwar', u'store', u'blaze']
[u'nation', u'urg', u'cadbi', u'reject', u'vote', u'valu']
[u'neitz', u'target', u'club', u'mileston']
[u'neitz', u'target', u'demon', u'mileston']
[u'doctor', u'emerald']
[u'dole', u'scheme', u'enjoy', u'success', u'northern', u'midland']
[u'north', u'east', u'burn', u'off', u'creat', u'smoki']
[u'parliamentari', u'secur', u'lousi']
[u'railway', u'cross', u'consid', u'safe']
[u'nurs', u'push', u'rise']
[u'nurs', u'vote', u'closur', u'oper', u'theatr']
[u'lead', u'lanka', u'leav']
[u'readi', u'restor', u'indonesian', u'militari', u'tie']
[u'ohara', u'injuri', u'blow', u'raider']
[u'chad', u'stake', u'claim', u'oldest', u'human']
[u'vote', u'valu', u'law', u'pass', u'hurdl']
[u'opposit', u'moot', u'reward', u'escap', u'captur']
[u'opposit', u'predict', u'longer', u'hospit', u'wait', u'list']
[u'palaszczuk', u'open', u'mind', u'drought', u'reform']
[u'pate', u'neutralis', u'master', u'jinx']
[u'perth', u'seek', u'join', u'sharp', u'west']
[u'crocodil', u'take', u'passer', u'surpris']
[u'phelp', u'lead', u'american', u'squad', u'world']
[u'pilgrim', u'choke', u'rome', u'pope', u'funer', u'near']
[u'plan', u'scale', u'tuna', u'farm', u'plan', u'net', u'dismay']
[u'endang', u'asian', u'relat']
[u'suspend', u'program', u'airport', u'incid']
[u'polic', u'confid', u'chiltern', u'death', u'breakthrough']
[u'polic', u'probe', u'windsor', u'castl', u'bomb', u'deliveri']
[u'polic', u'search', u'miss', u'mother']
[u'polic', u'seek', u'public', u'help', u'pilliga', u'fire', u'probe']
[u'polic', u'shoot', u'victim', u'lay', u'rest']
[u'polic', u'suspect', u'overnight', u'attack', u'link']
[u'pope', u'death', u'boost', u'church']
[u'priest', u'child', u'abus', u'confess']
[u'prison', u'group', u'say', u'unit']
[u'prosecut', u'corbi', u'case', u'seek', u'ajourn']
[u'public', u'urg', u'avoid', u'mozzi', u'virus', u'threat']
[u'qanta', u'north', u'west', u'flight']
[u'qanta', u'urg', u'restraint', u'fuel', u'levi']
[u'pay', u'tilt', u'train', u'passeng']
[u'rain', u'hamper', u'wilson', u'promontori', u'effort']
[u'reiq', u'welcom', u'rat', u'decis']
[u'restaur', u'blast', u'blame', u'flea', u'bomb']
[u'revamp', u'plan', u'echuca', u'hospit']
[u'reject', u'threat', u'fight', u'fire']
[u'oppos', u'medal', u'king', u'dead']
[u'safeti', u'campaign', u'target', u'region', u'road', u'death']
[u'school', u'appli', u'capit', u'work', u'grant']
[u'scott', u'singh', u'donald', u'catch', u'threebal']
[u'share', u'offer', u'close', u'delorain', u'communiti', u'bank']
[u'shoot', u'trigger', u'offic', u'polic', u'integr', u'probe']
[u'sick', u'corbi', u'trial', u'adjourn']
[u'singl', u'parent', u'plan', u'like', u'caus', u'employ', u'worri']
[u'skill', u'oversea', u'nurs', u'call', u'question']
[u'korea', u'rejig', u'iraq', u'deploy']
[u'slash', u'tax', u'welfar', u'state', u'report', u'urg']
[u'sonar', u'miss', u'canoeist', u'search']
[u'speed', u'german', u'runner', u'set', u'sight', u'coolgardi']
[u'sportingbet', u'defend', u'papal', u'book']
[u'stillborn', u'babi', u'lose', u'hospit', u'laundri']
[u'studi', u'spot', u'psychopath', u'tendenc', u'taxi']
[u'sugar', u'industri', u'reject', u'herbicid', u'cut']
[u'swan', u'hill', u'bendigo', u'rail', u'line', u'track', u'reopen', u'soon']
[u'talabani', u'swear', u'iraqi', u'presid']
[u'teacher', u'feder', u'maintain', u'mentor']
[u'teacher', u'disciplin', u'school', u'blaze']
[u'team', u'work', u'babi', u'emot', u'translat']
[u'theatr', u'great', u'hit', u'tasmanian', u'stage']
[u'injur', u'perth', u'restaur', u'blast']
[u'truck', u'accid', u'kill', u'injur']
[u'tyler', u'look', u'challeng', u'knight', u'chairman']
[u'unemploy', u'steadi']
[u'upper', u'hous', u'examin', u'dental', u'servic']
[u'helicopt', u'crash', u'like', u'kill']
[u'vail', u'play', u'badawi', u'critic']
[u'govt', u'highlight', u'continu', u'drought', u'confus']
[u'viduka', u'leav', u'hamstr', u'season', u'end', u'injuri']
[u'violenc', u'answer', u'sinn', u'fein', u'leader']
[u'virgin', u'lift', u'fuel', u'surcharg']
[u'apologis', u'children', u'abus', u'care']
[u'govt', u'elector', u'reform', u'debat']
[u'waratah', u'hold', u'hewat']
[u'wattl', u'flat', u'communiti', u'fight', u'teacher']
[u'wilson', u'promontori', u'blaze', u'control']
[u'wisden', u'name', u'warn', u'world', u'best']
[u'wisden', u'name', u'warn', u'world', u'best', u'player']
[u'wollondilli', u'council', u'get', u'black', u'spot', u'fund']
[u'wollongong', u'respect', u'pope']
[u'yushchenko', u'appeal']
[u'abdullah', u'call', u'polici', u'chang', u'muslim']
[u'establish', u'commission', u'children']
[u'admir', u'sink', u'lack']
[u'alic', u'garden', u'ornament', u'lead', u'polic', u'cannabi']
[u'alleg', u'barter', u'set', u'open', u'end', u'probe']
[u'anderson', u'urg', u'uniti', u'attack', u'lib']
[u'anger', u'mount', u'blood', u'collect', u'servic', u'closur']
[u'anti', u'king', u'protest', u'arrest', u'nepal', u'report']
[u'anti', u'log', u'protest', u'step', u'asid', u'burn']
[u'apolog', u'father', u'lose', u'babi', u'say']
[u'appeal', u'delay', u'paedophilia', u'suspect', u'bail']
[u'australian', u'farewel', u'pope']
[u'australia', u'hensbi', u'lead', u'master', u'tiger', u'struggl']
[u'australia', u'hensbi', u'lead', u'master']
[u'australia', u'meet', u'india', u'women', u'world', u'final']
[u'aviat', u'expertis', u'land', u'snowi', u'airport', u'manag']
[u'bacon', u'whereabout', u'remain', u'mysteri']
[u'baggag', u'handler', u'don', u'passeng', u'camel', u'costum']
[u'baggag', u'secur', u'question', u'camel', u'incid']
[u'bairnsdal', u'polic', u'station', u'design', u'go']
[u'battl', u'premiership', u'surviv', u'hot']
[u'bemax', u'find', u'miner', u'sand', u'deposit']
[u'bowler', u'seek', u'calm', u'council', u'boat', u'compo']
[u'bradtk', u'bullet']
[u'brazilian', u'deleg', u'head', u'pope', u'funer']
[u'brigalow', u'belt', u'report', u'tabl', u'upper', u'hous']
[u'brumbi', u'slump', u'straight', u'loss']
[u'buderus', u'career', u'newcastl']
[u'build', u'industri', u'welcom', u'perth', u'properti', u'releas']
[u'busi', u'compet', u'tourism', u'award']
[u'cabinet', u'agre', u'second', u'eyr', u'peninsula']
[u'cruis', u'ship', u'termin', u'lead', u'project']
[u'domest', u'violenc', u'emerg', u'shelter']
[u'callous', u'anim', u'cruelti', u'earn', u'record', u'sentenc']
[u'camel', u'suit', u'rustler', u'face', u'sack', u'qanta', u'say']
[u'carer', u'guilti', u'steal', u'veteran']
[u'park', u'delay', u'worri', u'maroochi', u'mayor']
[u'cash', u'contract', u'worker', u'jail']
[u'cathol', u'farewel', u'pope']
[u'centenni', u'coal', u'take', u'control', u'austral']
[u'chamber', u'commerc', u'reveal', u'elect', u'wish', u'list']
[u'charl', u'camilla', u'acknowledg', u'sin']
[u'charl', u'camilla', u'admit', u'wicked']
[u'commonwealth', u'game', u'come', u'hard', u'cheat']
[u'corbi', u'trial', u'adjourn']
[u'corbi', u'wit', u'refus', u'bail', u'rape', u'case']
[u'council', u'back', u'chicken', u'broiler', u'farm']
[u'council', u'call', u'help', u'build', u'nia', u'school']
[u'council', u'develop', u'applic', u'spotlight']
[u'council', u'hope', u'scotland', u'visit', u'eas', u'biodiesel']
[u'court', u'dismiss', u'backpack', u'murder', u'appeal']
[u'cousin', u'name', u'derbi', u'clash']
[u'cowboy', u'coach', u'want', u'strong', u'start', u'shark']
[u'critic', u'spark', u'workplac', u'safeti', u'law', u'rethink']
[u'demon', u'cat', u'kick', u'rivalri', u'round']
[u'doff', u'lose', u'insid', u'trade', u'convict', u'appeal']
[u'doubt', u'cast', u'indigen', u'land', u'ownership', u'plan']
[u'downer', u'say', u'australia', u'wont', u'asean', u'invit']
[u'drought', u'suspend', u'irrig']
[u'east', u'timor', u'indonesia', u'sign', u'border', u'deal']
[u'ecstasi', u'boom', u'doesnt', u'surpris', u'drug', u'institut']
[u'edward', u'escap', u'cost', u'million', u'mcginti']
[u'elect', u'surgeri', u'wait', u'list', u'fall', u'break', u'hill']
[u'etoo', u'real', u'enemi', u'duel']
[u'faith', u'await', u'pope', u'farewel']
[u'farmer', u'basslink', u'compo']
[u'south', u'coast', u'miss', u'nurs']
[u'fear', u'rise', u'fuel', u'price', u'curb', u'travel']
[u'crew', u'struggl', u'finish', u'wilson', u'promontori']
[u'fleme', u'thwart', u'lankan', u'hop', u'draw', u'test']
[u'formula', u'rebel', u'unit', u'banner']
[u'frenchman', u'perrin', u'confirm', u'portsmouth']
[u'fuel', u'surcharg', u'hike', u'passeng', u'number']
[u'game', u'record', u'fail', u'impress', u'crouch']
[u'game', u'volunt', u'hope', u'urg', u'enthusiast']
[u'gold', u'coast', u'abandon', u'dolphin']
[u'govt', u'ask', u'avoid', u'blanket', u'approach', u'drought']
[u'govt', u'ask', u'help', u'timber']
[u'govt', u'urg', u'rule', u'airport', u'leas']
[u'gulargambon', u'hop', u'clean', u'tidi', u'award']
[u'health', u'dept', u'confid', u'malaria', u'control']
[u'health', u'govt', u'prioriti']
[u'hensbi', u'enjoy', u'ride', u'master', u'clubhous', u'lead']
[u'highway', u'concern', u'spark', u'overtak']
[u'histor', u'fenc', u'go', u'hammer']
[u'hobart', u'teen', u'launch', u'communiti', u'site']
[u'hoon', u'face', u'lose', u'car']
[u'hors', u'death', u'hamper', u'fundrais', u'trek']
[u'howard', u'deni', u'heavi', u'reserv', u'bank']
[u'howard', u'urg', u'reconcili']
[u'indian', u'politician', u'cancel', u'australia', u'visit']
[u'injuri', u'continu', u'troubl', u'tarrant']
[u'ironi', u'forc', u'virgin', u'kalgoorli', u'land']
[u'pngs', u'program', u'downer']
[u'want', u'stay', u'newcastl', u'say', u'bowyer']
[u'jacob', u'sign', u'waratah']
[u'jerusalem', u'fear', u'violenc', u'friday', u'prayer']
[u'job', u'waikeri', u'wineri', u'sale']
[u'juve', u'milan', u'resum', u'championship', u'duel']
[u'kid', u'behaviour', u'drive', u'parent', u'distract']
[u'labour', u'council', u'probe', u'wollongong', u'citi', u'plan']
[u'land', u'council', u'sack', u'chief', u'execut']
[u'lang', u'implor', u'panther', u'start', u'storm']
[u'larkham', u'injuri', u'woe', u'worsen']
[u'liber', u'ask', u'halt', u'rat']
[u'local', u'tribut', u'flow', u'pope']
[u'local', u'wait', u'list', u'defi', u'state', u'trend']
[u'loeb', u'stamp', u'author', u'ralli']
[u'lose', u'picasso', u'french', u'polic']
[u'malinga', u'breath', u'life', u'lanka', u'test']
[u'die', u'water', u'corp', u'mishap']
[u'marburg', u'virus', u'threat', u'spread']
[u'martin', u'yudhoyono', u'discuss', u'trade']
[u'mcguigan', u'simeon', u'profit', u'warn', u'hit', u'share']
[u'meet', u'help', u'eas', u'hospit', u'tension']
[u'meet', u'resolv', u'tourist', u'attract']
[u'merger', u'pave', u'basin', u'project']
[u'mexican', u'mayor', u'face', u'legal', u'action']
[u'rover', u'administr', u'british', u'govt']
[u'tourism', u'plan']
[u'mine', u'bank', u'pull', u'higher']
[u'minist', u'invit', u'inspect', u'disgrac', u'road']
[u'minist', u'stay', u'despit', u'murray', u'river', u'fund']
[u'mirvac', u'buy', u'properti', u'market']
[u'mix', u'respons', u'plate', u'plan', u'senior']
[u'australian', u'sign', u'workplac', u'agreement']
[u'car', u'confisc', u'anti', u'hoon', u'law']
[u'mother', u'unhappi', u'inquest', u'delay']
[u'mourner', u'farewel', u'boy', u'kill', u'hous']
[u'push', u'ahead', u'hous', u'plan']
[u'murder', u'charg', u'mention', u'court']
[u'murder', u'juri', u'focus', u'weapon']
[u'murray', u'want', u'cowboy', u'corral', u'shark', u'pair']
[u'nambucca', u'council', u'seek', u'maintain', u'green', u'levi']
[u'nativ', u'titl', u'report', u'urg', u'approach']
[u'neitz', u'celebr', u'style']
[u'newcastl', u'see', u'roll', u'stock', u'sourc']
[u'code', u'crack', u'dodgi', u'wine', u'medal', u'sticker']
[u'film', u'showcas', u'rob', u'uniqu', u'look']
[u'town', u'plan', u'initi', u'fitzroy', u'cross']
[u'korea', u'request', u'seoul', u'help', u'bird', u'fight']
[u'nostradamus', u'grim', u'warn', u'pope']
[u'nowra', u'servic', u'honour', u'king', u'crash', u'victim']
[u'nrma', u'board', u'dump', u'bankrupt', u'turnbul']
[u'polic', u'access', u'compo']
[u'nurs', u'warn', u'staff', u'shortag', u'spark', u'theatr']
[u'nuttal', u'rule', u'bundaberg', u'surgeri', u'audit']
[u'obyrn', u'hint', u'mayor']
[u'optim', u'resort', u'open']
[u'paedophil', u'suspect', u'collaps', u'court']
[u'pair', u'charg', u'gordon', u'estat', u'drug']
[u'palestinian', u'milit', u'resum', u'rocket', u'attack']
[u'panther', u'win', u'way']
[u'pardoel', u'farewel', u'canberra']
[u'patient', u'win', u'compo', u'cancer', u'treatment']
[u'battl', u'classroom', u'shortfal', u'rebuild']
[u'perth', u'firm', u'accus', u'spam', u'million']
[u'pilgrim', u'squar', u'ahead', u'pope', u'funer']
[u'pilot', u'plan', u'test', u'south', u'burnett']
[u'pixi', u'skase', u'win', u'right', u'appli', u'citizenship']
[u'seek', u'help', u'bougainvill', u'elect']
[u'pole', u'honour', u'pope']
[u'pole', u'send', u'pope', u'prayer', u'salut']
[u'policeman', u'injur', u'malaysian', u'motorcad']
[u'policeman', u'knock', u'drag']
[u'polic', u'offic', u'farewel', u'today']
[u'polic', u'probe', u'hadden', u'attack', u'resign']
[u'polic', u'seek', u'inform', u'child', u'death']
[u'pope', u'heaven', u'say', u'cardin', u'ratzing']
[u'pope', u'john', u'paul', u'lay', u'rest']
[u'pope', u'mourn', u'emot', u'funer']
[u'pope', u'regret', u'pray', u'polish', u'team', u'player']
[u'pope', u'funer', u'rome']
[u'power', u'south', u'east']
[u'power', u'regul', u'offer', u'part', u'price', u'warn']
[u'power', u'station', u'plan', u'offer', u'local', u'busi', u'benefit']
[u'pressur', u'reopen', u'prom', u'monday']
[u'public', u'urg', u'region', u'forum']
[u'qanta', u'confirm', u'fuel', u'surcharg', u'hike']
[u'qasim', u'detent', u'soul', u'destroy', u'stott', u'despoja']
[u'school', u'advis', u'asbesto', u'relat']
[u'play', u'region', u'road', u'fund', u'worri']
[u'race', u'fall', u'wont', u'investig']
[u'rail', u'contract', u'allow', u'tare', u'apprentic', u'boost']
[u'queri', u'govt', u'elect', u'rat', u'claim']
[u'region', u'emerg', u'water', u'fund']
[u'region', u'mobil', u'wireless', u'broadband', u'connect']
[u'regul', u'need', u'indigen', u'land', u'ownership']
[u'rescu', u'helicopt', u'oper', u'bid', u'extend', u'contract']
[u'reserv', u'bank', u'concern', u'elector', u'breach']
[u'resid', u'grazier', u'meet', u'saleyard']
[u'review', u'consid', u'develop', u'modif']
[u'reward', u'offer', u'canker', u'inform']
[u'rijkaard', u'talk', u'frisk', u'report']
[u'rockhampton', u'mass', u'pope']
[u'rome', u'prepar', u'funer']
[u'rugbi', u'legend', u'lomu', u'sign', u'confirm', u'return']
[u'rychart', u'stay', u'sixer']
[u'urg', u'stronger', u'territori', u'timor', u'tie']
[u'shopper', u'horrifi', u'alleg', u'stab', u'mother']
[u'spotlight', u'fall', u'coastal', u'infrastructur']
[u'stanhop', u'urg', u'contact', u'china', u'extradit']
[u'strike', u'miner', u'order', u'work']
[u'student', u'sentenc', u'assault']
[u'survey', u'point', u'strong', u'farm', u'sector']
[u'sydneysid', u'respect']
[u'tah', u'face', u'stern', u'test', u'underdog', u'hurrican']
[u'tamworth', u'school', u'celebr', u'begin']
[u'team', u'flock', u'alic', u'lightn', u'carniv']
[u'teen', u'rampag', u'vacant', u'hous']
[u'telstra', u'chang', u'phone', u'combat', u'vandal']
[u'test', u'fightback', u'inspir', u'pakistan', u'ahead', u'dayer']
[u'thousand', u'attend', u'adelaid', u'memori', u'pope']
[u'thousand', u'pack', u'peter', u'goodby']
[u'cook', u'spoil', u'festiv', u'diner']
[u'seed', u'davenport', u'advanc', u'rain', u'florida']
[u'townsvill', u'gather', u'pope', u'farewel']
[u'train', u'blazer', u'beat', u'rat', u'hike']
[u'tremor', u'shake', u'island', u'sumatra']
[u'troop', u'farewel', u'ahead', u'iraq', u'deploy']
[u'tweed', u'council', u'plan', u'fight', u'sack', u'spark', u'anger']
[u'uphil', u'battl', u'govt', u'elector', u'chang']
[u'vatican', u'prepar', u'pope', u'funer']
[u'govt', u'flag', u'giant', u'golf', u'cours']
[u'wait', u'list', u'expand']
[u'watkin', u'urg', u'date', u'north', u'coast', u'visit']
[u'watson', u'avoid', u'vote', u'valu']
[u'welfar', u'group', u'fear', u'fund', u'impact']
[u'wheatbelt', u'farmer', u'drought']
[u'wild', u'hors', u'creat', u'problem', u'resid']
[u'woman', u'arrest', u'dead', u'cat', u'fridg']
[u'women', u'world', u'final', u'show']
[u'world', u'farewel', u'pope', u'john', u'paul']
[u'world', u'stop', u'farewel', u'untir', u'pope']
[u'aerobridg', u'adelaid', u'airport']
[u'agent', u'orang', u'victim', u'appeal', u'lawsuit']
[u'alleg', u'abort', u'clinic', u'bomber', u'plead', u'guilti']
[u'fear', u'medicar', u'safeti']
[u'anti', u'protest', u'mark', u'anniversari', u'saddam']
[u'arm', u'islam', u'milit', u'algeria', u'kill']
[u'australia', u'council', u'win', u'communiti', u'art', u'sector']
[u'australia', u'gift', u'paint', u'royal', u'coupl']
[u'baggag', u'handler', u'sack', u'camel', u'suit', u'prank']
[u'banana', u'prawn', u'season', u'get', u'underway']
[u'bartel', u'clear', u'injuri']
[u'bartlett', u'keep', u'cabinet', u'ambit', u'hold']
[u'baxter', u'detaine', u'receiv', u'psychiatr', u'care']
[u'beazley', u'doubt', u'govt', u'unawar', u'complaint']
[u'blue', u'beat', u'cat', u'titl', u'hop', u'aliv']
[u'bodi', u'blue', u'mountain']
[u'breweri', u'fin', u'thumb', u'loss']
[u'britain', u'close', u'yemen', u'embassi', u'secur', u'fear']
[u'british', u'pothead', u'granni', u'spar', u'jail']
[u'buffett', u'face', u'regul', u'general', u'probe']
[u'bundaberg', u'hospit', u'safeti', u'review']
[u'butt', u'steer', u'pakistan', u'victori']
[u'cardin', u'impos', u'media', u'blackout']
[u'cathol', u'church', u'begin', u'offici', u'mourn']
[u'charl', u'camilla', u'knot']
[u'chief', u'send', u'shark']
[u'chines', u'protest', u'urg', u'boycott', u'japanes', u'good']
[u'chopper', u'crash', u'bodi', u'recov']
[u'composit', u'resolv', u'macedonia']
[u'costello', u'hop', u'timor', u'reserv']
[u'costello', u'step', u'pressur', u'visit']
[u'cousin', u'clear', u'play']
[u'crouch', u'readi', u'claim', u'record', u'lion']
[u'crowd', u'eager', u'await', u'royal', u'pair']
[u'cyclon', u'devast', u'tour', u'busi', u'reopen']
[u'davenport', u'hold', u'venus', u'reach', u'florida', u'semi']
[u'dragon', u'post']
[u'drought', u'continu', u'crippl', u'farm']
[u'drug', u'dealer', u'killer', u'guilti', u'murder']
[u'dust', u'storm', u'sweep', u'lower', u'eyr', u'peninsula']
[u'eagl', u'edg', u'docker', u'derbi']
[u'english', u'suspend', u'onlin', u'race', u'syndic']
[u'extra', u'french', u'date', u'wallabi']
[u'eyr', u'peninsula', u'blacken', u'hectar']
[u'fake', u'microsoft', u'updat', u'site', u'trace', u'australia']
[u'fall', u'price', u'fail', u'sustain', u'jone', u'ralli']
[u'famili', u'buri', u'stillborn', u'babi', u'linen']
[u'firefight', u'contain', u'eyr', u'peninsula', u'blaze']
[u'firefight', u'monitor', u'wingfield', u'blaze']
[u'gut', u'tyabb', u'fruit', u'shop']
[u'fleme', u'want', u'umpir', u'remov', u'trouser']
[u'flintoff', u'back', u'ash']
[u'flood', u'cut', u'daylesford', u'main', u'street']
[u'littl', u'impact', u'japan', u'farm', u'sector']
[u'fund', u'shortag', u'lead', u'darfur', u'food', u'cutback']
[u'giant', u'panda', u'teeth']
[u'govt', u'open', u'electr', u'market']
[u'govt', u'pressur', u'complaint']
[u'harvey', u'norman', u'lose', u'sunday', u'trade', u'appeal']
[u'health', u'minist', u'anticip', u'shorter', u'wait', u'list']
[u'health', u'minist', u'doesnt', u'care', u'cystic', u'fibrosi']
[u'hensbi', u'applebi', u'shot', u'storm', u'stop']
[u'howel', u'lead', u'stormi', u'augusta']
[u'say', u'medellin', u'chang']
[u'internet', u'regul', u'okay', u'job', u'travel']
[u'iraq', u'donat', u'clarif', u'pleas', u'lightfoot']
[u'italian', u'fighter', u'plan', u'intercept', u'suspect', u'aircraft']
[u'jackson', u'hand', u'macaulay', u'culkin', u'pant', u'chef']
[u'japan', u'help', u'train', u'troop', u'ahead', u'iraq', u'deploy']
[u'khatami', u'deni', u'handshak', u'isra', u'counterpart']
[u'kirwan', u'ax', u'itali', u'coach']
[u'lara', u'equal', u'border', u'test', u'centuri', u'mark']
[u'liber', u'connect', u'rat', u'complaint', u'labor']
[u'lightfoot', u'news', u'smuggl', u'report']
[u'loeb', u'open', u'lead', u'ralli']
[u'magpi', u'carlton', u'blue']
[u'malthous', u'warn', u'carlton', u'clash']
[u'arrest', u'scream', u'theft']
[u'milit', u'kill', u'iraqi', u'troop']
[u'miss', u'man', u'bodi']
[u'nation', u'park', u'visitor', u'aborigin', u'sit']
[u'nation', u'youth', u'week', u'kick']
[u'govt', u'blame', u'farmer', u'train', u'cut']
[u'offic', u'injur', u'break', u'malak', u'parti']
[u'opposit', u'slam', u'mental', u'health', u'secur']
[u'oyster', u'farmer', u'seek', u'help', u'beat', u'parasit', u'crisi']
[u'polic', u'chase', u'end', u'smash']
[u'policeman', u'clear', u'purchas', u'speed', u'camera']
[u'polic', u'alert', u'royal', u'wed']
[u'polic', u'captur', u'restaur', u'stab', u'suspect']
[u'pope', u'regret', u'pray', u'polish', u'team', u'player']
[u'pope', u'tomb', u'close', u'visitor']
[u'protest', u'attack', u'japanes', u'embassi']
[u'sell', u'rail', u'expertis', u'vietnam']
[u'raaf', u'member', u'exercis', u'freedom', u'citi']
[u'rain', u'drench', u'coast']
[u'resid', u'ask', u'arsonist']
[u'resid', u'ralli', u'gunn', u'pulp']
[u'restaur', u'stab', u'suspect', u'turn']
[u'rig', u'compani', u'fin', u'worker', u'death']
[u'roo', u'straight']
[u'rossi', u'pole', u'spanish']
[u'school', u'roof', u'asbesto', u'legal', u'time', u'bomb', u'lawyer']
[u'shark', u'bite', u'cowboy']
[u'spammer', u'jail', u'landmark', u'case']
[u'student', u'petit', u'detain', u'classmat', u'releas']
[u'studi', u'call', u'tighter', u'regul', u'mix']
[u'lover', u'shun', u'smart', u'state']
[u'swan', u'fightback', u'stun', u'lion']
[u'govt', u'accus', u'miss', u'mark', u'jumper', u'jack']
[u'teen', u'carer', u'deserv', u'recognit', u'youth', u'coalit']
[u'teen', u'charg', u'firearm', u'offenc']
[u'tiger', u'straight']
[u'tiger', u'mourn', u'shock', u'death', u'open', u'mason']
[u'silent', u'budget', u'shortfal', u'claim']
[u'unknown', u'group', u'claim', u'cairo', u'bomb']
[u'aviat', u'secur', u'chief', u'resign']
[u'forc', u'shoot', u'cameraman', u'iraq']
[u'militari', u'draft', u'detaine', u'rule']
[u'blacken', u'hectar']
[u'threaten', u'farm', u'hous']
[u'prison', u'overflow', u'danger', u'crimin']
[u'voic', u'greec', u'die', u'age']
[u'campaign', u'lure', u'tourist']
[u'wentworth', u'award', u'lifetim', u'achiev', u'award']
[u'west', u'tiger', u'equal', u'club', u'streak']
[u'wingfield', u'blaze', u'challeng', u'firefight']
[u'woodsid', u'sourc', u'iraq', u'cash', u'donat']
[u'world', u'unit', u'handshak', u'pope', u'funer']
[u'yudhoyono', u'honour', u'timor', u'massacr', u'victim']
[u'chines', u'stage', u'fresh', u'anti', u'japan', u'protest']
[u'adelaid', u'take', u'easi', u'oyster', u'record']
[u'anti', u'smoke', u'campaign', u'extinguish', u'excus']
[u'archer', u'farewel', u'wrap', u'island', u'festiv']
[u'attach', u'owner', u'restor', u'damag', u'properti']
[u'beazley', u'seek', u'pamphlet', u'inquiri']
[u'beazley', u'tight', u'lip', u'elect', u'approach']
[u'beazley', u'tight', u'lip', u'mcguir', u'approach']
[u'bilbao', u'basqu', u'derbi', u'honour']
[u'boat', u'collid', u'bangladesh']
[u'bogut', u'continu', u'award', u'sweep']
[u'bomber', u'hawk', u'thriller']
[u'bronco', u'bounc', u'thump', u'eel']
[u'cambodia', u'confirm', u'bird', u'death']
[u'carlton', u'presid', u'suffer', u'heart', u'attack']
[u'charl', u'camilla']
[u'chelsea', u'hold', u'canari', u'upset', u'unit']
[u'china', u'accept', u'final', u'food']
[u'china', u'interven', u'hong', u'kong', u'success']
[u'cold', u'chang', u'disrupt', u'firefight', u'championship']
[u'collis', u'kill', u'trap']
[u'comedi', u'error', u'end', u'safe', u'rescu']
[u'controversi', u'seal', u'bull']
[u'crow', u'pull', u'showdown', u'boilov']
[u'davenport', u'target', u'amelia', u'island', u'titl', u'repeat']
[u'klerk', u'call', u'nation', u'parti', u'replac']
[u'devil', u'nomin', u'threaten', u'speci', u'regist']
[u'dimarco', u'hold', u'tiger', u'attack']
[u'dimarco', u'lead', u'bjorn', u'wood', u'round']
[u'doctor', u'investig', u'bundaberg', u'hospit', u'death']
[u'downer', u'attribut', u'cultur', u'differ']
[u'dozen', u'arrest', u'jerusalem', u'protest']
[u'dunmor', u'forest', u'blaze', u'control']
[u'defend', u'annual', u'report', u'omiss']
[u'exhibit', u'tell', u'artist', u'stori', u'pictur']
[u'farmer', u'question', u'water', u'test', u'confidenti']
[u'favourit', u'romp', u'nation', u'glori']
[u'fear', u'blame', u'high', u'price']
[u'jew', u'answer', u'shrine', u'ralli']
[u'firefight', u'continu', u'battl', u'bushfir']
[u'gut', u'shop', u'complex']
[u'gallipoli', u'chang', u'tragedi', u'beazley']
[u'garden', u'attract', u'record', u'number']
[u'gaza', u'violenc', u'strain', u'truce']
[u'golden', u'bear', u'make', u'tear', u'master', u'farewel', u'prowl']
[u'govt', u'defend', u'cost', u'juvenil', u'detent']
[u'govt', u'urg', u'stimul', u'explor']
[u'green', u'govt', u'hospit', u'wait', u'list', u'task']
[u'haiti', u'rebel', u'leader', u'kill', u'shoot']
[u'handl', u'aborigin', u'remain', u'theft', u'criticis']
[u'hospit', u'emerg', u'depart', u'struggl']
[u'hotel', u'group', u'reject', u'alfresco', u'rental', u'cost', u'increas']
[u'independ', u'call', u'doubl']
[u'index', u'point', u'competit', u'tasmania']
[u'indonesian', u'quak', u'spur', u'rush', u'high', u'grind']
[u'iran', u'say', u'uranium', u'enrich']
[u'island', u'connect', u'pleas', u'prize', u'win', u'author']
[u'japan', u'summon', u'china', u'ambassador', u'protest']
[u'karzai', u'alli', u'behead']
[u'khartoum', u'lift', u'restrict', u'diplomat']
[u'plane', u'deni', u'access', u'passeng']
[u'labor', u'urg', u'australia', u'lead', u'role', u'bird']
[u'lara', u'fall', u'short', u'doubl']
[u'societi', u'seek', u'chang', u'suitor', u'fund']
[u'legaci', u'member', u'gather', u'anzac', u'concert']
[u'loeb', u'win', u'ralli', u'zealand']
[u'charg', u'restaur', u'knife', u'attack']
[u'melbourn', u'petrol', u'price', u'record', u'high']
[u'milan', u'juve', u'neck', u'neck', u'itali']
[u'review', u'recommend', u'safeti', u'council', u'revamp']
[u'miss', u'fishermen', u'safe']
[u'paedophil', u'claim', u'case', u'mistak', u'ident']
[u'gambier', u'scrub', u'cleanest', u'town']
[u'mysteri', u'surround', u'black', u'afghan']
[u'near', u'maoist', u'rebel', u'kill', u'nepal', u'report']
[u'nigerian', u'union', u'abandon', u'strike', u'threat']
[u'opec', u'consid', u'price', u'ceil']
[u'opposit', u'criticis', u'ambul', u'respons', u'time']
[u'opposit', u'offer', u'suggest', u'dump', u'crackdown']
[u'pakistani', u'consul', u'miss', u'baghdad']
[u'park', u'servic', u'warn', u'walker', u'unexplod']
[u'petrol', u'price', u'record', u'high']
[u'polic', u'appeal', u'inform', u'fatal', u'shoot']
[u'polic', u'arrest', u'raid']
[u'polic', u'investig', u'hous']
[u'polic', u'investig', u'nightclub', u'brawl']
[u'polic', u'investig', u'nightclub', u'shoot']
[u'polic', u'search', u'fatal', u'traffic', u'accid']
[u'polic', u'suspect', u'arson', u'polic', u'station']
[u'polic', u'investig', u'factori']
[u'women', u'hockey', u'titl']
[u'queen', u'toast', u'royal', u'newlyw']
[u'rabbitoh', u'account', u'hapless', u'knight']
[u'raider', u'sit', u'pretti', u'roll', u'rooster']
[u'rain', u'firefight', u'battl', u'bushfir']
[u'rate', u'rise', u'need', u'check', u'inflat', u'westpac', u'chief']
[u'rough', u'sea', u'hamper', u'rescu', u'effort']
[u'saudi', u'arabia', u'confirm', u'death', u'qaeda', u'leader']
[u'search', u'resum', u'miss', u'trail', u'bike', u'rider']
[u'smith', u'eye', u'centuri', u'windi', u'grab', u'late', u'boost']
[u'southern', u'star', u'target', u'world', u'record']
[u'south', u'korea', u'help', u'north', u'fight', u'bird']
[u'stormer', u'pile', u'miseri', u'red']
[u'superman', u'film', u'grip', u'sydney']
[u'survey', u'show', u'foster', u'care', u'shortag']
[u'task', u'forc', u'investig', u'paedophil', u'claim']
[u'thousand', u'mount', u'vigil', u'jerusalem', u'mosqu']
[u'tiger', u'notch', u'trot']
[u'user', u'warn', u'check', u'burn', u'wast']
[u'train', u'leav', u'trail', u'small', u'blaze']
[u'treati', u'precondit', u'summit', u'entri', u'downer']
[u'union', u'confid', u'driver', u'disput', u'near', u'resolut']
[u'vatican', u'issu', u'rare', u'stamp', u'papal', u'vacanc']
[u'villawood', u'protest', u'target', u'govt', u'immigr', u'polici']
[u'waratah', u'lose', u'wellington', u'thriller']
[u'halt', u'marburg', u'attack']
[u'woman', u'charg', u'stab', u'death']
[u'aborigin', u'prison', u'death', u'foul', u'play', u'court']
[u'aborigin', u'urg', u'address', u'abus', u'inquiri']
[u'aceh', u'governor', u'jail', u'year']
[u'aceh', u'rebel', u'reject', u'special', u'autonomi', u'ahead', u'talk']
[u'allawi', u'bloc', u'join', u'iraqi', u'govern']
[u'alleg', u'paedophil', u'ill', u'delay', u'bail', u'review']
[u'alleg', u'rebel', u'kill', u'indonesia', u'papua', u'report']
[u'anzac', u'cove', u'intact']
[u'arson', u'suspect', u'polic', u'station']
[u'assault', u'claim', u'halt', u'rail', u'link', u'work']
[u'aussi', u'jinx', u'continu', u'master']
[u'australian', u'vioxx', u'user', u'moot', u'legal', u'action']
[u'basic', u'struggl', u'knight']
[u'bear', u'share', u'spot', u'beat', u'ipswich']
[u'beatti', u'seek', u'sensibl', u'outcom', u'disput']
[u'bell', u'continu', u'generat', u'power']
[u'bionic', u'inventor', u'celebr', u'anniversari']
[u'blaze', u'keep', u'wilson', u'promontori', u'park', u'close']
[u'blood', u'sucker', u'get', u'woman', u'nose']
[u'boonen', u'tame', u'hell', u'north']
[u'braford', u'congress', u'promis', u'tourism', u'benefit']
[u'britain', u'slam', u'door', u'visit', u'young', u'nigerian']
[u'brodgen', u'pledg', u'cut', u'infrastructur', u'chang']
[u'build', u'collaps', u'bangladesh', u'trap', u'hundr']
[u'bundaberg', u'doctor', u'case', u'mishandl', u'opposit', u'claim']
[u'bundaberg', u'sugar', u'take', u'legal', u'action']
[u'bushfir', u'film', u'save', u'live']
[u'bushwalk', u'hurt', u'kangaroo', u'valley', u'ordeal']
[u'busi', u'group', u'urg', u'action', u'combat', u'skill']
[u'busi', u'push', u'incom', u'rate']
[u'cabl', u'mishap', u'leav', u'west', u'resid', u'dark']
[u'cahil', u'score', u'twice', u'everton', u'romp']
[u'cane', u'toad', u'club', u'spark', u'controversi']
[u'accid', u'mysteri']
[u'impound', u'investig']
[u'carlton', u'scotland', u'cite', u'lockyer', u'clash']
[u'cattl', u'station', u'worker', u'walk', u'hard', u'protest']
[u'ceremoni', u'recognis', u'ambul', u'offic', u'long', u'servic']
[u'child', u'abus', u'case', u'rise', u'studi', u'find']
[u'china', u'india', u'sign', u'deal', u'resolv', u'border', u'disput']
[u'china', u'downplay', u'anti', u'japan', u'protest']
[u'chines', u'govt', u'move', u'quell', u'anti', u'japan', u'protest']
[u'choos', u'paracetamol', u'anti', u'inflammatori', u'expert']
[u'civic', u'park', u'hous', u'memori']
[u'clergymen', u'fight', u'extradit', u'child', u'charg']
[u'concern', u'rais', u'premier', u'oversea', u'trip']
[u'council', u'maintain', u'pipelin', u'push']
[u'council', u'warn', u'loom', u'cost']
[u'council', u'worri', u'anti', u'hoon', u'curb', u'farmer']
[u'close', u'region', u'patient', u'perth', u'accommod']
[u'davenport', u'claim', u'amelia', u'island', u'titl']
[u'dimarco', u'forc', u'tiger', u'play']
[u'doctor', u'link', u'vioxx', u'death']
[u'downpour', u'bring', u'road', u'damag']
[u'driver', u'jail']
[u'drought', u'level', u'percent']
[u'drought', u'remain', u'problem', u'monaro']
[u'drought', u'take', u'greater', u'toll', u'southern']
[u'drought', u'tighten', u'grip', u'hunter']
[u'educ', u'chief', u'highlight', u'teacher', u'support']
[u'elder', u'woman', u'burn', u'oxygen', u'tank', u'explos']
[u'entrepreneur', u'seek', u'victoria', u'squar', u'close']
[u'sure', u'wast', u'treatment', u'pond', u'problemat']
[u'experi', u'bushwalk', u'miss']
[u'famili', u'seek', u'help', u'costa', u'rica']
[u'fan', u'score', u'surfest', u'open', u'trick']
[u'farmer', u'fear', u'telstra', u'sale', u'safeguard', u'lack', u'focus']
[u'farmer', u'hold', u'govt', u'respons', u'telstra', u'servic']
[u'father', u'accus', u'leav', u'daughter', u'polic']
[u'father', u'drown', u'tri', u'rescu']
[u'govt', u'state', u'trade', u'threat']
[u'feral', u'turtl', u'owner', u'fin']
[u'extend']
[u'damag', u'cottag']
[u'flare', u'delay', u'reopen', u'wilson']
[u'safeti', u'campaign', u'target', u'accommod']
[u'flash', u'flood', u'drown', u'hindu', u'pilgrim']
[u'fonterra', u'pull', u'see', u'nation', u'food', u'share', u'drop']
[u'dead', u'cairo', u'bazaar', u'bomb']
[u'fraser', u'mobil', u'phone', u'coverag']
[u'fuel', u'price', u'delay', u'crop', u'plant']
[u'fuel', u'price', u'tip', u'stay', u'high']
[u'fund', u'boost', u'eas', u'school', u'overcrowd']
[u'game', u'offici', u'pleas', u'ballarat', u'basketbal']
[u'gold', u'coast', u'properti', u'price', u'rise']
[u'golden', u'week', u'industri']
[u'govt', u'accus', u'weaken', u'environment', u'group']
[u'govt', u'cap', u'conserv', u'grant']
[u'govt', u'fund', u'affect', u'playground']
[u'govt', u'reject', u'jail', u'overcrowd', u'claim']
[u'govt', u'urg', u'explor']
[u'govt', u'urg', u'asid', u'land', u'sport', u'field']
[u'grazier', u'support', u'cattl', u'levi', u'increas']
[u'greedi', u'champion', u'jail', u'fraud']
[u'group', u'warn', u'rate', u'homeless', u'threat']
[u'gulargambon', u'tidi']
[u'gunmen', u'assassin', u'local', u'offici', u'mosul']
[u'har', u'race', u'club', u'race', u'meet', u'redistribut']
[u'hawk', u'head', u'treatment', u'room', u'clash']
[u'hear', u'centr', u'improv', u'bionic', u'technolog']
[u'heritag', u'focus', u'help', u'mount', u'gambier', u'tidi', u'award']
[u'hobart', u'council', u'pay', u'tribut', u'town', u'crier']
[u'hospit', u'confirm', u'longer', u'surgeri', u'wait', u'list']
[u'hospit', u'fund', u'boost', u'expect', u'eas', u'nurs', u'woe']
[u'hospit', u'radiograph', u'die', u'crash']
[u'hous', u'grant', u'help', u'rural', u'victoria']
[u'hous', u'market', u'surpris', u'analyst']
[u'hous', u'plan', u'prompt', u'infrastructur', u'concern']
[u'humbl', u'port', u'face', u'test', u'charact', u'william']
[u'hundr', u'ralli', u'save', u'fish', u'spot']
[u'iaaf', u'toughen', u'nation', u'rule']
[u'bacon', u'resign', u'cabinet', u'post']
[u'indonesian', u'jail', u'fin', u'illeg', u'fish']
[u'inmat', u'give', u'extra', u'week', u'jail', u'escap']
[u'inquest', u'hold', u'fruit', u'picker']
[u'jackson', u'matriarch', u'say', u'court', u'exit']
[u'japan', u'china', u'meet', u'deterior', u'relat']
[u'john', u'paul', u'saint', u'month']
[u'judiciari', u'summon', u'black']
[u'kaputar', u'park', u'burn', u'continu']
[u'keyboard', u'bacteria', u'pose', u'hospit', u'risk']
[u'knight', u'wooden', u'spooner']
[u'koala', u'prompt', u'stop', u'forest', u'log']
[u'kyli', u'headlin', u'glastonburi', u'festiv']
[u'kyrgyzstan', u'presidenti', u'elect']
[u'labor', u'warn', u'medicar', u'safeti', u'blowout']
[u'legal', u'case', u'call', u'extra', u'help']
[u'lewi', u'stand', u'firm', u'paedophilia', u'alleg']
[u'lion', u'choker', u'say', u'matthew']
[u'magistr', u'find', u'neglig', u'drive', u'penalti']
[u'accus', u'stab', u'mother', u'remand']
[u'marina', u'expans']
[u'martin', u'bag', u'stagger', u'lanka']
[u'martin', u'bag', u'black', u'cap', u'charg']
[u'mayor', u'hop', u'liber', u'separ', u'fund', u'region']
[u'mayor', u'reflect', u'year', u'offic']
[u'mayor', u'attack', u'takeaway', u'alcohol', u'plan']
[u'meninde', u'tibooburra', u'interact', u'learn']
[u'minist', u'back', u'safeti', u'review', u'recommend']
[u'minist', u'defend', u'telstra', u'review', u'plan']
[u'minist', u'offer', u'forest', u'corporatis', u'assur']
[u'miracl', u'lift', u'pope', u'beatif', u'campaign']
[u'monaco', u'albert', u'applaud', u'great', u'princ', u'rainier']
[u'murray', u'prais', u'shark', u'defenc']
[u'mutual', u'oblig', u'scheme', u'cost', u'communiti', u'senat']
[u'ambul', u'station', u'sit', u'identifi']
[u'childcar', u'centr', u'plan', u'orang']
[u'committe', u'debat', u'campbel', u'hospit', u'futur']
[u'model', u'cape', u'york', u'health', u'care']
[u'senior', u'certif', u'recognis', u'vocat']
[u'rollercoast', u'soon', u'level', u'say', u'webck']
[u'mislead', u'redfern', u'redevelop', u'cost']
[u'onesteel', u'boss', u'hand', u'rein']
[u'opposit', u'want', u'answer', u'pierc', u'creek', u'hous']
[u'opposit', u'want', u'inquiri', u'canker', u'alleg']
[u'optim', u'face', u'water', u'moratorium']
[u'optus', u'manag', u'job']
[u'paedophilia', u'probe', u'continu', u'despit', u'retract']
[u'pair', u'accus', u'tri', u'kill', u'policeman', u'face', u'court']
[u'palm', u'island', u'riot', u'committ', u'hear', u'delay']
[u'palm', u'riot', u'hear', u'start']
[u'parent', u'own', u'school', u'upgrad']
[u'petroleum', u'associ', u'wont', u'specul', u'fuel', u'price']
[u'philippin', u'see', u'possibl', u'afghanistan']
[u'pilgrim', u'drown', u'releas', u'water']
[u'clark', u'join', u'call', u'zimbabw', u'cricket', u'boycott']
[u'policeman', u'clear', u'rape', u'charg']
[u'polic', u'charg', u'hous', u'trash']
[u'pope', u'podcast', u'hint', u'broadcast', u'revolut']
[u'pope', u'crypt', u'reopen']
[u'power', u'earthquak', u'jolt', u'sumatra']
[u'priest', u'jail', u'sexual', u'abus', u'altar']
[u'pumpkin', u'festiv', u'winner', u'scale']
[u'push', u'govt', u'boost', u'home', u'read']
[u'push', u'nation', u'park', u'weed']
[u'qanta', u'plane', u'close']
[u'govt', u'commonwealth', u'antic', u'say']
[u'speed', u'fine', u'revenu', u'top', u'month']
[u'qualiti', u'water', u'save', u'southern', u'oyster']
[u'want', u'light', u'shed', u'region', u'road', u'death']
[u'race', u'industri', u'review', u'safeti', u'vest']
[u'raider', u'hunt', u'monaghan', u'heckler']
[u'railcorp', u'worker', u'accus', u'train', u'vandal']
[u'real', u'goal', u'barca', u'thriller']
[u'reform', u'group', u'lodg', u'jail', u'food', u'complaint']
[u'resourc', u'stock', u'hold', u'market']
[u'rais', u'fuel', u'surcharg']
[u'robot', u'replac', u'child', u'camel', u'jockey']
[u'rolton', u'lead', u'southern', u'star', u'world']
[u'royal', u'releas', u'wed', u'pic']
[u'miguel', u'anticip', u'nation', u'food', u'takeov']
[u'school', u'dont', u'want', u'cathol', u'student']
[u'scientist', u'sound', u'reef', u'fish', u'restock']
[u'score', u'fear', u'trap', u'bangladesh', u'build']
[u'scotland', u'troubl', u'clash', u'lockyer']
[u'search', u'miss', u'canoeist']
[u'slater', u'priddi', u'name', u'test', u'squad']
[u'solo', u'voyag', u'rais', u'fund', u'wheelchair']
[u'welcom', u'bundaberg', u'hospit', u'inquiri']
[u'south', u'africa', u'apartheid', u'rule', u'parti', u'dissolv']
[u'southern', u'highland', u'face', u'drought', u'woe']
[u'state', u'split', u'corpor', u'threat']
[u'storm', u'bring', u'damag', u'region']
[u'strong', u'quak', u'jolt', u'tokyo', u'tsunami', u'warn']
[u'sudan', u'rebel', u'good', u'gestur']
[u'talabani', u'endors', u'foreign', u'troop', u'presenc']
[u'tasmanian', u'landcar', u'struggl', u'surviv']
[u'parliament', u'debat', u'marriag', u'law']
[u'disput', u'hinder', u'develop', u'gallop']
[u'teen', u'die', u'polic', u'vehicl']
[u'teen', u'girl', u'charg', u'hour', u'stand']
[u'telstra', u'deni', u'delay', u'rural', u'servic']
[u'kill', u'indian', u'kashmir']
[u'test', u'clear', u'car', u'impound', u'inquiri']
[u'thief', u'hop', u'steal', u'leav', u'shoe']
[u'thiev', u'target', u'adelaid', u'pharmaci']
[u'thousand', u'riot', u'chines', u'villag']
[u'bomb', u'militari', u'iraq']
[u'stand', u'trial', u'murder']
[u'tiger', u'claim', u'fourth', u'master', u'titl', u'play']
[u'tiger', u'bulldog', u'count', u'casualti']
[u'tiger', u'wood', u'win', u'fourth', u'master', u'titl']
[u'toll', u'marburg', u'virus', u'near']
[u'train', u'collid', u'central']
[u'tweed', u'campaign', u'shed']
[u'perish', u'great', u'sandi', u'desert']
[u'iraq', u'lock', u'record', u'number', u'suspect']
[u'mine', u'compani', u'purchas', u'silver', u'deposit']
[u'vanston', u'urg', u'meet', u'indigen', u'council']
[u'vioxx', u'blame', u'death']
[u'word', u'erupt', u'fashion', u'award']
[u'watchdog', u'back', u'egypt', u'tortur', u'claim']
[u'state', u'dont', u'howard']
[u'western', u'govt', u'matter']
[u'world', u'expert', u'gather', u'bone', u'cancer', u'meet']
[u'young', u'strike', u'suffer', u'injuri']
[u'abus', u'victim', u'criticis', u'vatican', u'cardin']
[u'abus', u'victim', u'famili', u'prais', u'detect']
[u'accc', u'probe', u'pharmaci', u'price', u'fix', u'claim']
[u'accommod', u'agenc', u'hand', u'administr']
[u'actu', u'want', u'guarante', u'award', u'wag']
[u'adelaid', u'organis', u'happi', u'chang', u'date']
[u'worker', u'tell', u'nia', u'sink']
[u'strike', u'kill', u'suspect', u'taliban', u'milit']
[u'ash', u'pressur', u'england', u'warn']
[u'attempt', u'murder', u'accus', u'deni', u'bail']
[u'attila', u'hun', u'minor', u'status', u'hungari']
[u'audit', u'probe', u'halliburton', u'overcharg', u'iraq']
[u'australian', u'appoint', u'solomon', u'polic', u'chief']
[u'australian', u'hold', u'secur', u'scare']
[u'band', u'perman', u'home']
[u'bank', u'market', u'slight', u'gain']
[u'barrist', u'protest', u'secur', u'check', u'palm']
[u'basslink', u'assur', u'landhold', u'compo', u'come']
[u'beatti', u'vow', u'resist', u'reform', u'blackmail']
[u'beazley', u'accus', u'power', u'grab']
[u'black', u'cap', u'inning', u'lead']
[u'brumbi', u'trap', u'trial', u'hail', u'success']
[u'bush', u'issu', u'middl', u'east', u'warn']
[u'busi', u'confid', u'fall']
[u'busi', u'hail', u'pledg', u'hand', u'power', u'govt']
[u'busi', u'reject', u'union', u'govt', u'minimum', u'wage', u'case']
[u'bust', u'cheekbon', u'put', u'camporeal']
[u'canker', u'reward', u'claim', u'lodg']
[u'cape', u'manag', u'plan', u'includ', u'long', u'term', u'issu']
[u'bomb', u'kill', u'iraqi', u'mosul']
[u'charg', u'drop', u'libertin', u'star']
[u'cheap', u'fare', u'stay', u'despit', u'fuel', u'levi']
[u'childbirth', u'choic', u'creat', u'worri', u'trend']
[u'child', u'safeti', u'worker', u'begin', u'industri', u'campaign']
[u'church', u'target', u'marriag']
[u'deni', u'involv', u'adopt', u'leak']
[u'club', u'cane', u'toad', u'cruel', u'democrat']
[u'coastlin', u'target', u'clean', u'expans']
[u'commiss', u'fund', u'shortfal', u'delay', u'fish', u'ladder']
[u'communiti', u'spend', u'resolv', u'immigr']
[u'communiti', u'urg', u'pitch', u'fund', u'roundabout']
[u'compani', u'cool', u'nanotechnolog']
[u'concern', u'rais', u'lack', u'irrig', u'water']
[u'confer', u'tackl', u'skill', u'labour', u'shortag']
[u'conrad', u'jupit', u'upgrad']
[u'conserv', u'group', u'explor', u'option', u'fund']
[u'consum', u'group', u'issu', u'health', u'warn']
[u'corn', u'signal', u'port', u'fight']
[u'coron', u'criticis', u'narooma', u'safeti', u'warn']
[u'coroni', u'inquest', u'reveal', u'babi', u'poison']
[u'costello', u'flag', u'health', u'chang']
[u'costello', u'slam', u'dalrympl', u'bottleneck']
[u'costello', u'warn', u'health', u'cost', u'rein']
[u'council', u'ask', u'fund', u'aborigin', u'work', u'scheme']
[u'council', u'propos', u'kart', u'stem', u'youth', u'crime']
[u'council', u'recommend', u'chang', u'holiday']
[u'council', u'tell', u'oper', u'keen', u'belmont']
[u'council', u'tell', u'road', u'need', u'work']
[u'council', u'vote', u'wind', u'farm', u'rezon', u'propos']
[u'council', u'welcom', u'fund', u'boost', u'grind', u'water']
[u'court', u'case', u'hold', u'forens', u'delay']
[u'court', u'reject', u'dungog', u'shop', u'centr', u'develop']
[u'cowboy', u'lose', u'hannay', u'saturday', u'game']
[u'danger', u'throw', u'guilti', u'plea', u'knock', u'betham']
[u'death', u'toll', u'rise', u'indian', u'accid']
[u'debat', u'age', u'care', u'continu']
[u'decis', u'urg', u'compulsori', u'head', u'wear']
[u'defect', u'discoveri', u'lead', u'asthma', u'treatment']
[u'demolit', u'begin', u'readi', u'sport']
[u'develop', u'deni', u'develop', u'threaten', u'dugong']
[u'diseas', u'decim', u'oyster', u'fisheri']
[u'dog', u'welcom', u'omeley', u'maitua']
[u'downer', u'defend', u'bali', u'decis']
[u'downer', u'refus', u'warn', u'bali', u'child', u'care', u'abus']
[u'downer', u'releas', u'letter', u'bali', u'child', u'abus']
[u'dozer', u'driver', u'judg', u'archaeolog', u'worth', u'brown']
[u'review', u'sentenc']
[u'dream', u'wigg', u'world']
[u'elder', u'arrest', u'stand']
[u'english', u'super', u'leagu', u'player', u'face', u'steroid', u'charg']
[u'english', u'team', u'struggl', u'away', u'island', u'kahn']
[u'exhibit', u'focus', u'chines', u'life', u'gold', u'rush']
[u'experi', u'teacher', u'offer', u'rise']
[u'famili', u'devast', u'govern', u'appeal']
[u'farmer', u'seek', u'drought', u'fund', u'extens']
[u'fatigu', u'risk', u'highlight', u'ship', u'worker']
[u'govt', u'urg', u'strip', u'state', u'power']
[u'fee', u'firm', u'fight', u'lawsuit']
[u'feminist', u'writer', u'andrea', u'dworkin', u'die']
[u'figur', u'reveal', u'mildura', u'high', u'rate', u'child', u'abus']
[u'film', u'maker', u'prais', u'protect', u'environ']
[u'fisheri', u'minist', u'prais', u'illeg', u'fish']
[u'fli', u'piec', u'metal', u'spark', u'probe']
[u'footag', u'releas', u'hunt', u'driver']
[u'ford', u'profit', u'warn', u'spook', u'market']
[u'forest', u'agreement', u'immin', u'lennon']
[u'charg', u'seri', u'arm', u'robberi']
[u'injur', u'king', u'highway', u'collis']
[u'face', u'kiwi', u'anzac', u'test', u'squad']
[u'fraser', u'accid', u'prompt', u'driver']
[u'fuel', u'price', u'prompt', u'seek', u'review', u'industri']
[u'ganguli', u'hop', u'ahmedabad', u'form', u'boost']
[u'gerrard', u'juventus', u'trip']
[u'giffen', u'help', u'brumbi', u'line', u'blue']
[u'gilchrist', u'reveal', u'retir', u'plan']
[u'govt', u'accus', u'steal', u'victorian', u'farmer']
[u'govt', u'intent', u'address', u'skill', u'shortag']
[u'govt', u'plan', u'overhaul']
[u'govt', u'consid', u'rethink', u'wind', u'farm']
[u'govt', u'urg', u'confront', u'milit', u'union']
[u'govt', u'urg', u'cooper', u'state', u'age']
[u'govt', u'urg', u'pull', u'basix', u'program', u'region']
[u'guard', u'cell', u'night', u'prison', u'death', u'court']
[u'hama', u'say', u'facto', u'truce', u'risk', u'collaps']
[u'health', u'servic', u'dismiss', u'hospit', u'staff', u'concern']
[u'hear', u'help', u'indigen', u'communiti']
[u'hezbollah', u'fli', u'drone', u'northern', u'israel']
[u'spear', u'tackler', u'week', u'surgeon']
[u'honour', u'walk', u'celebr', u'canberran', u'life']
[u'howard', u'drink', u'power', u'say', u'gallop']
[u'howard', u'want', u'worker', u'lennon']
[u'indonesian', u'volcano', u'erupt', u'spew']
[u'iran', u'chang', u'abort']
[u'iran', u'look', u'sell']
[u'israel', u'honour', u'german', u'offic', u'save', u'hundr']
[u'japanes', u'minist', u'call', u'china', u'scari']
[u'japan', u'expand', u'whale', u'hunt', u'speci', u'report']
[u'labor', u'seek', u'brief', u'bali', u'child', u'abus', u'claim']
[u'lack', u'counsellor', u'spark', u'concern']
[u'lawyer', u'concern', u'hospit', u'inquiri', u'process']
[u'lethal', u'mental', u'disadvantag', u'jibe', u'pie']
[u'loggerhead', u'turtl', u'head']
[u'volum', u'diesel', u'sale', u'blame', u'high', u'price']
[u'loxton', u'struggl', u'attract']
[u'lyndon', u'prepar', u'fund', u'submiss']
[u'male', u'urg', u'enter', u'nurs']
[u'burn', u'farm', u'accid']
[u'jail', u'largest', u'collect', u'child']
[u'marburg', u'death', u'toll', u'angola']
[u'mclean', u'gain', u'rise', u'star', u'nomin']
[u'mice', u'march']
[u'militari', u'funer', u'king', u'crash', u'victim']
[u'minist', u'tight', u'lip', u'pay', u'worker', u'right']
[u'moloney', u'match']
[u'moloney', u'join', u'scotland', u'tribun']
[u'moroccan', u'arrest', u'connect', u'madrid']
[u'mother', u'claim', u'jackson', u'beg', u'sleep', u'teen']
[u'mother', u'give', u'communiti', u'base', u'order', u'leav']
[u'improv', u'proof', u'ergon', u'commit']
[u'mysteri', u'spark', u'securitri', u'alert']
[u'teen', u'kill', u'collis', u'polic']
[u'nation', u'compulsori', u'student', u'union']
[u'near', u'chines', u'insult', u'japanes', u'textbook']
[u'negoti', u'begin', u'sale', u'famous', u'dolphin']
[u'gear', u'valley', u'hospit']
[u'racetrack', u'face', u'hurdl']
[u'caus', u'connipt', u'calypso', u'develop']
[u'chief', u'back', u'spear', u'tackl', u'penalti']
[u'offshor', u'area', u'open', u'explor']
[u'irrig', u'channel', u'cours', u'redevelop']
[u'opposit', u'seek', u'specif', u'child', u'care', u'travel']
[u'optim', u'prevail', u'despit', u'treati', u'ultimatum']
[u'outback', u'death', u'disast', u'wait', u'happen']
[u'outback', u'unforgiv', u'place', u'tourist', u'warn']
[u'palestinian', u'condemn', u'bush', u'remark', u'border']
[u'park', u'entri', u'help', u'protect', u'veget']
[u'patrick', u'fin', u'depot', u'breach']
[u'peopl', u'plead', u'ignor', u'smoke', u'law']
[u'pharmacist', u'deni', u'price', u'fix', u'drug']
[u'poland', u'announc', u'iraq', u'troop', u'pull']
[u'polic', u'restrain', u'lover', u'seek', u'nake', u'women']
[u'polic', u'river', u'search', u'caus', u'delay']
[u'polic', u'shoot', u'pitbul']
[u'polic', u'embark', u'grave', u'visit']
[u'polic', u'prepar', u'shoot', u'palm', u'unrest']
[u'portabl', u'replac', u'raze', u'classroom']
[u'pratt', u'quit', u'team', u'cash']
[u'prison', u'boss', u'sorri', u'wrong', u'detent']
[u'puletua', u'galuvao', u'hand', u'doubl', u'injuri', u'blow', u'panther']
[u'rain', u'need', u'plant', u'winter', u'crop']
[u'ralli', u'reconsid']
[u'rampag', u'eleph', u'kill', u'india']
[u'rann', u'look', u'interst', u'murray', u'basin', u'fund']
[u'region', u'benefit', u'boost', u'work', u'dole']
[u'renew', u'call', u'inform', u'miss']
[u'ricegrow', u'happi', u'cabinet', u'visit']
[u'roo', u'back', u'lethal', u'niggl']
[u'brew', u'jackeroo', u'head', u'wear']
[u'rural', u'resid', u'internet', u'access', u'histori']
[u'african', u'miner', u'protest', u'aust', u'takeov']
[u'saltwat', u'croc', u'captur', u'suburban', u'river']
[u'face', u'opposit', u'frontbench', u'shake']
[u'sarwan', u'steadi', u'wobbl', u'west', u'indi']
[u'seek', u'compromis', u'costello']
[u'search', u'resum', u'miss', u'canoeist']
[u'seven', u'kill', u'kashmir', u'violenc']
[u'sever', u'earthquak', u'hit', u'caledonia']
[u'slaveri', u'trial', u'open', u'melbourn']
[u'singapor', u'honour', u'aussi', u'pow']
[u'slow', u'start', u'desert', u'race', u'registr']
[u'strategi', u'develop', u'develop', u'protect', u'natur']
[u'studi', u'find', u'mobil', u'phone', u'link', u'cancer']
[u'success', u'indigen', u'train', u'program']
[u'swan', u'confid', u'hall', u'deal']
[u'talabani', u'expect', u'govern', u'week']
[u'telstra', u'receiv', u'approv', u'cdma']
[u'tiger']
[u'tilt', u'derail', u'respons', u'earn', u'govern', u'plaudit']
[u'titjikala', u'execut', u'back', u'communiti', u'cabinet']
[u'goldfield', u'blue', u'khaki', u'uniform']
[u'tori', u'unveil', u'elect', u'manifesto']
[u'track', u'coach', u'slam', u'fals', u'start', u'plan']
[u'transurban', u'increas', u'takeov', u'offer', u'hill']
[u'treasur', u'warn', u'revenu', u'meet']
[u'seek', u'money', u'rebuild', u'sudan']
[u'contractor', u'kidnap', u'iraq']
[u'panel', u'consid', u'end', u'silicon', u'breast', u'implant']
[u'senat', u'grill', u'bolton', u'post']
[u'util', u'promis', u'better', u'region', u'suppli']
[u'valentin', u'knee', u'injuri']
[u'vanston', u'accus', u'dodg', u'indigen', u'meet']
[u'victoria', u'consid', u'life', u'jacket', u'rule']
[u'wallac', u'back', u'video', u'goal', u'umpir']
[u'weather', u'forc', u'kimberley', u'burn']
[u'tell', u'staff', u'inmat', u'suicid', u'say', u'famili']
[u'wilko', u'leav', u'clive', u'name', u'lion', u'squad']
[u'wilko', u'readi', u'fight', u'lion', u'place']
[u'wilson', u'promontori', u'firefight', u'effort', u'cost']
[u'wind', u'farm', u'propos', u'barunga', u'rang']
[u'woman', u'fin', u'possess', u'commerci', u'fish', u'net']
[u'woman', u'nab', u'drive', u'wrong', u'motorway']
[u'wood', u'tip', u'power', u'car']
[u'yandilla', u'take', u'chiquita']
[u'youth', u'sentenc', u'year', u'manslaught']
[u'zimbabw', u'opposit', u'challeng', u'elect', u'result']
[u'aborigin', u'activist', u'lodg', u'writ']
[u'aborigin', u'elder', u'lodg', u'genocid', u'case', u'high', u'court']
[u'aborigin', u'elder', u'threaten', u'game', u'disrupt']
[u'govt', u'warn', u'tough', u'budget']
[u'actor', u'joaquin', u'phoenix', u'alcohol', u'rehab']
[u'afghanistan', u'comment', u'wont', u'affect', u'relat', u'arroyo']
[u'aldermen', u'consid', u'plan', u'smith', u'site']
[u'alert', u'issu', u'second', u'volcano', u'come', u'life']
[u'black', u'line', u'grand', u'slam', u'tour']
[u'ord', u'drop']
[u'antibodi', u'help', u'alzheim', u'studi']
[u'anti', u'terror', u'exercis', u'traumatis', u'melbourn']
[u'australian', u'compani', u'canadian', u'case']
[u'australia', u'reexamin', u'region', u'secur']
[u'aust', u'refus', u'sign', u'treati']
[u'confid', u'strong', u'futur', u'growth']
[u'ballarat', u'firm', u'win', u'holden', u'contract']
[u'ballarat', u'take', u'brick', u'worker']
[u'bar', u'dalli', u'leav', u'bomber', u'runnerless']
[u'barossa', u'ambul', u'servic', u'like', u'combin']
[u'bass', u'strait', u'product', u'tip', u'halv']
[u'baton', u'caus', u'mark', u'dead', u'prison']
[u'blast', u'kill', u'senior', u'offici', u'visit', u'iraq']
[u'blue', u'contest', u'scotland', u'demon', u'accept', u'moloney']
[u'braveri', u'pay', u'trade', u'talk', u'vail', u'say']
[u'breakthrough', u'wine', u'grape', u'diseas', u'research']
[u'britney', u'reveal', u'pregnanc']
[u'budget', u'promis', u'famili', u'children', u'servic']
[u'bulldog', u'confirm', u'breach']
[u'burn', u'trigger', u'banana', u'blaze']
[u'busi', u'border', u'stand', u'selector']
[u'fund', u'townsvill', u'rail', u'line']
[u'challeng', u'oversea', u'aid', u'plan']
[u'carlton', u'presid', u'recov', u'heart', u'surgeri']
[u'carr', u'deni', u'backdown']
[u'challeng', u'smoke', u'fine']
[u'chinchilla', u'infrastructur', u'plan', u'fast', u'track']
[u'church', u'group', u'voic', u'indigen', u'educ', u'concern']
[u'citi', u'planner', u'account', u'young', u'peopl']
[u'civoniceva', u'take', u'test', u'spot']
[u'combin', u'vaccin', u'offer', u'immun', u'studi']
[u'commerci', u'fish', u'gain', u'support']
[u'confer', u'tell', u'reserv', u'healthi']
[u'consul', u'threat', u'spark', u'secur', u'review']
[u'contract', u'cut', u'grower', u'angri']
[u'coolum', u'polic', u'station', u'open', u'clock']
[u'council', u'consid', u'challeng', u'govt', u'resort']
[u'council', u'defend', u'tram', u'superstop']
[u'council', u'mourn', u'loss', u'shire', u'presid']
[u'council', u'plan', u'improv', u'communiti']
[u'council', u'shouldnt', u'involv', u'dolphin', u'resort']
[u'council', u'vote', u'wind', u'farm', u'rezon']
[u'court', u'order', u'wool', u'group', u'legal', u'cost', u'peta']
[u'cowboy', u'line', u'shuffl']
[u'crash', u'victim', u'offici', u'honour']
[u'deadlin', u'loom', u'council', u'fund', u'submiss']
[u'deadlin', u'loom', u'knight', u'grandstand', u'work']
[u'demon', u'consid', u'appeal']
[u'desert', u'death', u'spark', u'better', u'trip', u'plan']
[u'didak', u'return', u'pie', u'travi', u'cloke', u'debut']
[u'donor', u'doubl', u'target', u'sudan']
[u'doubt', u'cast', u'drought', u'packag']
[u'driver', u'urg', u'slow', u'town']
[u'elliott', u'join', u'redback']
[u'ellison', u'back', u'handl', u'washington', u'secur', u'scare']
[u'cabonn', u'council', u'inspector', u'sentenc', u'theft']
[u'fake', u'money', u'warrnambool']
[u'famili', u'quad', u'bike', u'crash', u'victim', u'thank', u'emerg']
[u'farmer', u'oppos', u'workplac', u'law']
[u'farmer', u'seek', u'clear', u'messag', u'road', u'closur', u'fee']
[u'fear', u'adelaid', u'hurt', u'region', u'event']
[u'fear', u'consul', u'threat', u'hurt', u'corbi', u'case']
[u'file', u'share', u'suit', u'target', u'internet', u'user']
[u'fisher', u'optimist', u'rathbon', u'stay', u'brumbi']
[u'fleme', u'fall', u'short', u'centuri', u'vaa', u'strike']
[u'teacher', u'face', u'court', u'child', u'charg']
[u'face', u'court', u'accus', u'steal', u'thousand']
[u'peopl', u'hospitalis', u'smash']
[u'fund', u'cut', u'limit', u'conserv', u'activ']
[u'funer', u'hold', u'king', u'crash', u'victim']
[u'gene', u'help', u'tell', u'stori', u'everybodi']
[u'gold', u'deposit', u'near', u'mount', u'boppi']
[u'govern', u'accus', u'neglect', u'gold', u'coast']
[u'govt', u'consid', u'tourism', u'resort', u'plan']
[u'govt', u'defend', u'park', u'manag']
[u'govt', u'plan', u'medal', u'chang']
[u'govt', u'pledg', u'incent', u'boost', u'product']
[u'govt', u'ponder', u'welfar', u'overhaul', u'option']
[u'govt', u'pressur', u'sign', u'aggress', u'pact']
[u'govt', u'review', u'aerial', u'spray']
[u'grant', u'applic', u'attend', u'preliminari', u'brief']
[u'grant', u'build', u'heritag', u'trail', u'dali', u'water']
[u'hall', u'sign', u'swan', u'deal']
[u'har', u'race', u'shift', u'gunbow']
[u'heavi', u'rain', u'dust', u'storm', u'goldfield']
[u'hockeyroo', u'kid', u'athen', u'hudson']
[u'holli', u'undergo', u'test']
[u'hundr', u'queue', u'dawn', u'pope', u'tomb']
[u'hungari', u'refus', u'attila', u'hun', u'minor', u'status']
[u'iluka', u'fear', u'loss', u'industri', u'continu']
[u'indonesia', u'appeal', u'respect', u'judici', u'process']
[u'indonesian', u'fishermen', u'spot', u'beach']
[u'inquiri', u'hear', u'govt', u'hast', u'dairi', u'grant']
[u'institut', u'focus', u'child', u'protect']
[u'irrig', u'ask', u'consid', u'trade', u'water']
[u'israel', u'play', u'discord']
[u'italian', u'disgrac', u'champion', u'leagu', u'chelsea']
[u'japan', u'issu', u'travel', u'warn', u'gold', u'coast']
[u'japan', u'scrambl', u'mend', u'north', u'asian', u'relat']
[u'japan', u'push', u'ahead', u'search']
[u'judg', u'decid', u'brit', u'return', u'face']
[u'kanimbla', u'crew', u'give', u'humanitarian', u'medal']
[u'katter', u'want', u'gulf', u'coast', u'guard']
[u'labor', u'condemn', u'govt', u'hous', u'afford']
[u'labor', u'disput', u'effect', u'mandatori']
[u'labor', u'see', u'problem', u'welfar', u'propos']
[u'labor', u'want', u'medal', u'black', u'hawk', u'dead']
[u'land', u'clear', u'fail', u'stunt', u'wheatbelt']
[u'land', u'protest', u'continu', u'kyrgyzstan']
[u'enforc', u'agenc', u'probe', u'death', u'threat']
[u'lennon', u'betfair', u'flirtat', u'danger', u'opposit']
[u'licenc', u'grant', u'explor']
[u'lobster', u'industri', u'back', u'manag', u'plan', u'report']
[u'local', u'expert', u'western', u'regist']
[u'luhrmann', u'ponder', u'australian', u'epic']
[u'charg', u'high', u'speed', u'chase']
[u'charg', u'count', u'child', u'offenc']
[u'fin', u'permit', u'python']
[u'marburg', u'virus', u'pose', u'littl', u'global', u'threat']
[u'maritim', u'group', u'review', u'coron', u'narooma']
[u'mayor', u'lobbi', u'wind', u'farm', u'plan']
[u'migrat', u'chang', u'penalis', u'children']
[u'militari', u'funer', u'king', u'helicopt', u'victim']
[u'milk', u'product', u'fall']
[u'industri', u'seek', u'feder', u'budget', u'infrastructur']
[u'minist', u'clear', u'threaten', u'bulli', u'nurs']
[u'minist', u'reluct', u'accept', u'educ', u'voucher']
[u'minist', u'address', u'cystic', u'fibrosi', u'concern']
[u'minist', u'welcom', u'jupit', u'revamp']
[u'mobil', u'polic', u'unit', u'darwin']
[u'modifi', u'soybean', u'offer', u'hair', u'loss', u'cure']
[u'fixtur', u'race', u'season']
[u'mossi', u'diseas', u'expert', u'help', u'timor']
[u'card', u'concern']
[u'say', u'cigarett', u'design', u'reduc', u'bushfir']
[u'region']
[u'suspend', u'call', u'govt', u'hypocrit']
[u'music', u'pay', u'tribut', u'lennon']
[u'music', u'industri', u'expand', u'piraci', u'lawsuit', u'asia']
[u'mutton', u'bird', u'confisc', u'follow', u'protocol']
[u'nambour', u'prepar', u'chopper', u'crash', u'funer']
[u'nation', u'plan', u'seek', u'manag', u'camel', u'popul']
[u'weather', u'radar', u'improv', u'forecast']
[u'announc', u'fin', u'chang', u'salari']
[u'reveal', u'salari', u'fin', u'fine', u'tune']
[u'opposit', u'creat', u'north', u'coast', u'portfolio']
[u'move', u'ahead', u'statehood', u'push']
[u'tell', u'fright', u'door', u'open', u'flight']
[u'oberon', u'allow', u'road', u'closur', u'ralli']
[u'offic', u'know', u'prepar', u'palm', u'riot']
[u'olymp', u'nightmar', u'tougher', u'radcliff']
[u'opposit', u'blame', u'alert', u'doctor']
[u'oversea', u'train', u'doctor', u'scrutini']
[u'oyster', u'grower', u'fear', u'parasit', u'outbreak']
[u'philippin', u'rebuk', u'afghanistan', u'comparison']
[u'pilbara', u'polic', u'look', u'miss']
[u'pilgrim', u'pray', u'pope', u'tomb']
[u'plan', u'afoot', u'tackl', u'traffic', u'woe']
[u'polic', u'readi', u'troubl', u'juventus']
[u'polic', u'seek', u'help', u'find', u'miss', u'nabiac', u'woman']
[u'public', u'forum', u'discuss', u'fluorid']
[u'public', u'hous', u'occupi', u'report', u'find']
[u'public', u'tell', u'agenda', u'health', u'servic', u'chief']
[u'qanta', u'beef', u'baggag', u'secur']
[u'qanta', u'watch', u'baggag', u'handler']
[u'union', u'retir', u'increas']
[u'raaf', u'joint', u'exercis', u'indonesia']
[u'rann', u'appeal', u'carr', u'brack', u'murray', u'fund']
[u'rate', u'hold', u'fail', u'reassur', u'consum']
[u'real', u'estat', u'mislead', u'court', u'rule']
[u'light', u'mall', u'green', u'light', u'hungari']
[u'region', u'warrior', u'fuel', u'west', u'african', u'conflict']
[u'region', u'warn', u'high', u'fuel', u'price', u'continu']
[u'rescuer', u'lose', u'hope', u'bangladesh']
[u'research', u'breakthrough', u'grapevin', u'diseas']
[u'retrial', u'order', u'woman', u'jail', u'toddler']
[u'road', u'block', u'singl', u'vehicl', u'crash']
[u'robot', u'plane', u'deliv', u'broadband', u'high']
[u'rockhampton', u'upgrad', u'consid']
[u'applaud', u'humanitarian', u'medal']
[u'ruddock', u'deni', u'vet', u'high', u'court', u'candid']
[u'rural', u'council', u'discuss', u'share', u'resourc']
[u'carp', u'destin', u'export', u'market']
[u'overse', u'wine', u'industri', u'safeti', u'audit']
[u'saudi', u'grand', u'mufti', u'ban', u'forc', u'marriag']
[u'school', u'technic', u'colleg']
[u'scientist', u'grow', u'individu', u'cell']
[u'scottish', u'giant', u'ranger', u'shock', u'lowli', u'dunde']
[u'seaton', u'talk', u'treasuri', u'portfolio', u'role']
[u'secur', u'camera', u'instal', u'delay']
[u'shadow', u'cabinet', u'reshuffl', u'nation']
[u'sole', u'petrol', u'bowser', u'nundl', u'close']
[u'south', u'african', u'woman', u'jail', u'cocain', u'haul']
[u'speed', u'driver', u'jail', u'polic', u'pursuit']
[u'sport', u'program', u'help', u'girl', u'complet', u'school']
[u'staff', u'fault', u'inmat', u'death', u'say', u'coron']
[u'state', u'contest', u'fund', u'costello', u'say']
[u'stud', u'cattl', u'export', u'brazil', u'begin']
[u'suicid', u'bomb', u'kill', u'iraq']
[u'super', u'scheme', u'propos', u'health', u'cost']
[u'surgeon', u'make', u'remov', u'breast', u'lump']
[u'survey', u'reveal', u'higher', u'indigen', u'child', u'stress']
[u'sydney', u'doctor', u'stem', u'cell', u'breakthrough']
[u'talk', u'kalgoorli', u'flight', u'servic']
[u'tasmanian', u'govt', u'rule', u'support']
[u'offic', u'struggl', u'manag', u'super', u'surcharg']
[u'thousand', u'evacu', u'indonesian', u'volcano', u'rumbl']
[u'threat', u'shoot', u'hear', u'resid']
[u'briton', u'charg', u'alleg', u'bomb', u'plot']
[u'time', u'frame', u'plan', u'begin', u'multi', u'purpos']
[u'tourism', u'oper', u'ask', u'improv', u'market']
[u'aussi', u'unaccount', u'nia', u'quak']
[u'jail', u'relat', u'marriott', u'bomb']
[u'nomine', u'bolton', u'accus', u'bulli']
[u'panel', u'reject', u'silicon', u'breast', u'implant']
[u'stock', u'rise', u'despit', u'record', u'trade', u'deficit']
[u'rais', u'hec', u'fee']
[u'vanston', u'brush', u'game', u'threat']
[u'vanunu', u'court', u'media', u'interview']
[u'venezuela', u'ask', u'hand', u'terror', u'suspect']
[u'doubl', u'game', u'fund', u'hospit']
[u'vincent', u'doubl', u'put', u'black', u'cap', u'command']
[u'vline', u'travel', u'urg', u'temporari', u'timet']
[u'wagga', u'eric', u'weissel', u'oval', u'sell']
[u'wast', u'site', u'group', u'revisit', u'pilbara']
[u'watkin', u'hear', u'transport', u'concern']
[u'call', u'destruct', u'dead', u'virus']
[u'recal', u'virus', u'send', u'lab', u'worldwid']
[u'wilson', u'promontori', u'cost', u'million', u'fight']
[u'woman', u'assault', u'greenwith']
[u'work', u'begin', u'parksid', u'garden', u'develop']
[u'youth', u'injur', u'motorbik', u'accid']
[u'kill', u'twin', u'baghdad', u'blast']
[u'year', u'add', u'life', u'sentenc', u'ricin', u'plotter']
[u'paedophil', u'list', u'regist']
[u'acid', u'spray', u'injur', u'thai', u'water', u'festiv']
[u'adler', u'face', u'sentenc', u'collaps']
[u'adler', u'jail', u'dishonesti']
[u'adler', u'jail', u'deal']
[u'afghanistan', u'request', u'long', u'term', u'help']
[u'help', u'student', u'miss', u'costa', u'rica']
[u'albani', u'score', u'roundabout', u'crash', u'report']
[u'archer', u'target', u'morwel']
[u'arson', u'suspect', u'kebab', u'shop', u'blaze']
[u'asbesto', u'plan', u'recip', u'disast', u'lib']
[u'asic', u'welcom', u'adler', u'sentenc']
[u'australia', u'take', u'council', u'court']
[u'autopsi', u'rule', u'natur', u'caus', u'man', u'death']
[u'balranald', u'footi', u'club', u'fight', u'sanction']
[u'bangladesh', u'factori', u'collaps', u'death', u'toll', u'rise']
[u'batter', u'black', u'cap', u'claim', u'redempt']
[u'bega', u'council', u'seek', u'lift', u'rat']
[u'belgium', u'royal', u'announc', u'pregnanc']
[u'bleak', u'outlook', u'river', u'gum']
[u'border', u'secur', u'beef', u'need']
[u'brad', u'newley', u'boomer', u'squad']
[u'break', u'life', u'newman']
[u'brisban', u'protest', u'deport']
[u'britain', u'flag', u'iraq', u'troop', u'exit']
[u'budget', u'prepar', u'start']
[u'bulgaria', u'hold', u'elect']
[u'bunburi', u'roundabout', u'top', u'crash', u'list']
[u'fund', u'rural', u'pest', u'research']
[u'call', u'gallipoli', u'join', u'world', u'heritag', u'list']
[u'call', u'restrict', u'commerci', u'barra', u'catch']
[u'campbel', u'call', u'stanhop', u'graffiti', u'staffer']
[u'caretak', u'jail', u'shoot', u'break', u'youth']
[u'changi', u'lock', u'present']
[u'china', u'japan', u'tension', u'concern', u'downer']
[u'china', u'laud', u'human', u'right', u'record']
[u'church', u'report', u'highlight', u'illawarra', u'woe']
[u'church', u'seek', u'back', u'auditorium']
[u'claim', u'industri', u'land', u'shortag', u'cost', u'job']
[u'colac', u'otway', u'tourism', u'number', u'rise']
[u'commonwealth', u'come', u'walter', u'worker']
[u'communiti', u'farewel', u'chopper', u'crash', u'victim']
[u'corbi', u'trial', u'adjourn']
[u'corn', u'injuri', u'blow', u'port']
[u'costello', u'welcom', u'econom', u'report']
[u'council', u'airport', u'fund', u'look', u'unlik']
[u'council', u'consid', u'seek', u'rate', u'rise']
[u'council', u'consid', u'altern', u'wind', u'farm', u'site']
[u'council', u'wont', u'crop', u'trial']
[u'countri', u'fever', u'catch', u'say', u'campaign', u'organis']
[u'court', u'show', u'footag', u'palm', u'riot']
[u'court', u'tell', u'hang', u'prison', u'fractur', u'skull']
[u'nerang', u'open', u'busi']
[u'project', u'rais', u'titl', u'sale', u'fear']
[u'daredevil', u'behaviour', u'doesnt', u'impress', u'women', u'studi']
[u'davi', u'second', u'petacchi', u'spain']
[u'debat', u'delay', u'bolton', u'nomin']
[u'doctor', u'face', u'extradit', u'bundaberg', u'death']
[u'downer', u'say', u'summit', u'invit']
[u'drift', u'boat', u'lose', u'finder', u'keeper', u'rule']
[u'drought', u'relief', u'reform', u'plan', u'win', u'principl']
[u'economist', u'point', u'posit', u'trend']
[u'nino', u'effect', u'worri', u'farmer']
[u'stand', u'monkey', u'resort', u'recommend']
[u'export', u'abattoir', u'see', u'feral', u'camel', u'control']
[u'fail', u'centrelink', u'project', u'cost', u'auditor']
[u'famili', u'support', u'sector', u'need', u'peopl', u'anglicar']
[u'farmer', u'donat', u'riverina', u'drought', u'victim']
[u'farm', u'group', u'worri', u'grain', u'branch', u'line']
[u'fear', u'oversea', u'train', u'doctor', u'get', u'unfair', u'imag']
[u'feder', u'inquiri', u'tell', u'wild', u'problem']
[u'fine', u'forc', u'petrol', u'compani', u'administr']
[u'fighter', u'alert', u'escap', u'burn']
[u'fire', u'destroy', u'dandenong', u'rang', u'home']
[u'flystrik', u'vaccin', u'horizon']
[u'forecast', u'tip', u'larger', u'wheat', u'crop']
[u'franc', u'approv', u'right']
[u'french', u'rule', u'leav', u'australian', u'nuclear', u'wast']
[u'fund', u'inquiri', u'hear', u'topless', u'claim']
[u'gallop', u'stand', u'firm', u'tax']
[u'gang', u'rape', u'evid', u'chang', u'need', u'brogden']
[u'gaza', u'settler', u'rais', u'prospect', u'resist', u'fail']
[u'geraldton', u'port', u'support', u'grow', u'mine', u'sector']
[u'gibb', u'river', u'user', u'prepar', u'help', u'fund']
[u'gladston', u'lose', u'shopper', u'rockhampton']
[u'gold', u'coast', u'woman', u'head', u'youth', u'forum']
[u'goldfield', u'high', u'school', u'facelift']
[u'govt', u'accus', u'allow', u'gunn', u'break']
[u'govt', u'consid', u'childcar', u'initi', u'singl']
[u'govt', u'rule', u'illawarra', u'escarp', u'heritag']
[u'govt', u'consid', u'child', u'care', u'dilemma']
[u'govt', u'curtain', u'fall', u'hunter', u'job']
[u'govt', u'wont', u'bail', u'troubl', u'club']
[u'greek', u'court', u'okay', u'nake', u'surfer', u'jesus', u'comic']
[u'group', u'highlight', u'tumut', u'cootamundra', u'rail', u'cost']
[u'guantanamo', u'suit', u'detail', u'alleg', u'bash']
[u'gunn', u'fight', u'hard', u'higher', u'woodchip', u'price']
[u'hair', u'brush', u'invent', u'help', u'better', u'wine']
[u'hartson', u'trick', u'put', u'celtic']
[u'health', u'group', u'say', u'oversea', u'train', u'doctor']
[u'health', u'offici', u'play', u'releas', u'danger']
[u'hill', u'estim', u'give', u'indonesia', u'cost']
[u'homeless', u'servic', u'turn', u'away', u'youth']
[u'hop', u'vandal', u'free', u'gracemer', u'skate', u'park']
[u'hospit', u'emerg', u'dept', u'revamp', u'begin']
[u'hous', u'gut']
[u'hous', u'trash', u'probe', u'continu']
[u'howard', u'consid', u'beatti', u'construct', u'offer']
[u'howard', u'reconsid', u'asean', u'treati', u'stanc']
[u'hunger', u'strike', u'educ', u'fee']
[u'hunter', u'urg', u'look', u'trade', u'opportun']
[u'husband', u'miss', u'woman', u'make', u'emot', u'appeal']
[u'hussey', u'hit', u'open', u'centuri', u'durham']
[u'icac', u'inquiri', u'knowl', u'divers', u'medic']
[u'illawarra', u'get', u'mental', u'health', u'boost']
[u'health', u'forc', u'retir']
[u'ill', u'delay', u'corbi', u'trial']
[u'report', u'good', u'labor']
[u'indonesia', u'remain', u'volcano', u'alert']
[u'inflat', u'fear', u'consum']
[u'ingram', u'take', u'nation', u'price', u'hike']
[u'injur', u'bushwalk', u'winch', u'safeti']
[u'israel', u'plan', u'attack', u'iran', u'sharon']
[u'itali', u'happi', u'role', u'friend']
[u'jakarta', u'aceh', u'separatist', u'reach', u'point']
[u'jakarta', u'unveil', u'plan', u'quak', u'tsunami', u'area']
[u'juri', u'consid', u'verdict', u'buttock', u'shoot']
[u'kanimbla', u'head', u'home']
[u'kerr', u'gardin', u'bulldog', u'clash']
[u'knight', u'closer', u'sponsorship', u'deal']
[u'labor', u'back', u'joint', u'indonesian', u'militari', u'exercis']
[u'labour', u'plan', u'increas', u'child', u'care', u'shortag']
[u'admit', u'father', u'illegitim', u'child']
[u'mackay', u'councillor', u'oppos', u'merger', u'talk']
[u'burn', u'power', u'line', u'mishap']
[u'plead', u'guilti', u'bomb', u'spree']
[u'maroochi', u'council', u'suspend', u'pollut', u'expert']
[u'medicar', u'safeti', u'benefit']
[u'melbourn', u'centr', u'grow', u'bodi', u'tissu']
[u'miner', u'get', u'gold', u'treatment', u'plant']
[u'mine', u'compani', u'reject', u'hunter', u'resid', u'offer']
[u'minist', u'quiet', u'bulli', u'victim', u'compo', u'claim']
[u'minist', u'hand', u'tie', u'drug', u'subsidi', u'decis']
[u'minist', u'consid', u'legal', u'croc', u'skin', u'export']
[u'minist', u'experi', u'north', u'coast', u'public', u'transport']
[u'mobil', u'phone', u'recycl', u'win', u'feder', u'support']
[u'money', u'wast', u'tag', u'cattl', u'export']
[u'rais', u'detent', u'centr', u'concern']
[u'gambier', u'parliament', u'sit', u'spark', u'polic']
[u'nadal', u'hammer', u'threat', u'feder', u'safin']
[u'nativ', u'fish', u'migrat', u'pleas', u'basin', u'commiss']
[u'nepal', u'king', u'announc', u'municip', u'poll']
[u'cultur', u'facil', u'offer', u'jail', u'altern']
[u'rule', u'promis', u'evid', u'leav', u'train']
[u'northern', u'youth', u'run', u'award']
[u'word', u'kalgoorli', u'servic', u'talk']
[u'council', u'sniffabl', u'fuel', u'roll']
[u'nuttal', u'pledg', u'bundaberg', u'hospit', u'problem']
[u'oppos', u'japan', u'expand', u'whale', u'plan']
[u'outback', u'death', u'surpris', u'station', u'manag']
[u'passeng', u'consult', u'fast', u'train', u'timet']
[u'pentagon', u'spend', u'hard', u'track', u'watchdog']
[u'plan', u'gold', u'develop', u'halt']
[u'admit', u'break', u'elect', u'promis', u'medicar']
[u'farewel', u'iraq', u'bind', u'troop']
[u'avoid', u'australian', u'stopov']
[u'polic', u'email', u'prioritis', u'staff']
[u'polic', u'focus', u'bendigo', u'search', u'murder']
[u'polic', u'probe', u'earli', u'morn', u'brawl']
[u'premier', u'support', u'central', u'coke', u'project']
[u'pressur', u'mount', u'state', u'contribut', u'drought']
[u'prison', u'give', u'evid', u'wife', u'accus']
[u'prison', u'pursu', u'alleg', u'jail', u'bash', u'civil']
[u'probe', u'find', u'mental', u'health', u'worker', u'abus', u'patient']
[u'probe', u'latest', u'swan', u'river', u'fish', u'kill']
[u'lyon', u'dream']
[u'public', u'servant', u'misus', u'credit', u'card']
[u'push', u'multi', u'storey', u'park', u'orang']
[u'decid', u'coal', u'bottleneck', u'issu']
[u'need', u'time', u'phase', u'chang', u'beatti']
[u'rain', u'leech', u'hamper', u'firefight', u'effort']
[u'ramsay', u'acquir', u'affin']
[u'remain', u'roman', u'dinner', u'unearth', u'england']
[u'report', u'expos', u'neglect', u'infrastructur', u'labor']
[u'research', u'unlock', u'secret', u'perfect', u'rice']
[u'resid', u'highlight', u'contract', u'ignor']
[u'resid', u'voic', u'opinion', u'town', u'heritag']
[u'review', u'find', u'competit', u'polici', u'favour']
[u'rock', u'roll', u'pioneer', u'johnni', u'johnson', u'die']
[u'rodney', u'adler', u'receiv', u'jail', u'term']
[u'sand', u'work', u'palm', u'beach', u'approv']
[u'scientist', u'ideal', u'site', u'moon', u'base']
[u'scotland', u'goug', u'suspens', u'uphold']
[u'king', u'crash', u'victim', u'farewel']
[u'search', u'continu', u'miss', u'nabiac', u'woman']
[u'search', u'find', u'miss', u'canoeist', u'bodi']
[u'self', u'employ', u'cancer', u'victim', u'seek', u'worker', u'comp']
[u'senat', u'probe', u'go', u'west']
[u'predat', u'jail', u'year']
[u'societi', u'sell', u'surplus', u'asset']
[u'sick', u'corbi', u'trial', u'adjourn']
[u'singl', u'parent', u'famili', u'rise']
[u'skill', u'migrant', u'quota', u'increas']
[u'slime', u'mould', u'bug', u'name', u'statesmen']
[u'sonni', u'confirm', u'dog', u'deal']
[u'sonni', u'confirm', u'dog', u'deal']
[u'southport', u'spit', u'vision', u'outlin']
[u'space', u'shuttl', u'fuel', u'tank', u'test']
[u'stanhop', u'reject', u'graffiti', u'staffer', u'critic']
[u'state', u'spell', u'detail', u'carbon', u'trade']
[u'stosur', u'charleston']
[u'studi', u'examin', u'work', u'impact', u'wellb']
[u'suicid', u'law', u'impact', u'doctor', u'patient']
[u'suspect', u'base', u'jumper', u'critic', u'injur']
[u'sydney', u'convict', u'tripl', u'murder']
[u'resist', u'wont', u'cost', u'state', u'costello']
[u'testimoni', u'mother', u'jackson', u'accus', u'doubt']
[u'thiev', u'swipe', u'gear', u'hotel']
[u'timber', u'firm', u'maintain', u'opposit', u'redund']
[u'tougher', u'screen', u'oversea', u'doctor', u'seek']
[u'tree', u'save', u'tourist', u'drive']
[u'turinui', u'sign', u'tah', u'deal']
[u'approv', u'treati', u'nuclear', u'terror']
[u'associ', u'slam', u'deport', u'brisban']
[u'welcom', u'clinton', u'tsunami', u'appoint']
[u'senat', u'confirm', u'nasa', u'chief']
[u'studi', u'defin', u'prematur', u'ejacul']
[u'train', u'buri', u'china']
[u'verif', u'servic', u'ident', u'fraud']
[u'run', u'destroy', u'contract', u'govt']
[u'desalin', u'plant', u'budget']
[u'westpac', u'worker', u'strike']
[u'wide', u'spread', u'share', u'slump', u'drag', u'market', u'lower']
[u'wilder', u'societi', u'take', u'disput', u'minist']
[u'wind', u'farm', u'construct', u'deem', u'unsaf']
[u'wine', u'stock', u'struggl']
[u'withdraw', u'plan', u'creat', u'brink']
[u'wmcs', u'nickel', u'product', u'track']
[u'work', u'see', u'lessen', u'age', u'popul', u'impact']
[u'bank', u'robber', u'tackl', u'brisban']
[u'young', u'carer', u'understand']
[u'youth', u'manslaught', u'sentenc', u'question']
[u'yushchenko', u'sign', u'iraq', u'troop', u'withdraw', u'order']
[u'reward', u'plan', u'help', u'free', u'corbi']
[u'abbott', u'know', u'safeti', u'blow', u'elect']
[u'abbott', u'resign', u'medicar', u'backflip']
[u'adelaid', u'lawyer', u'avoid', u'jail']
[u'scrap', u'reward', u'mediocr']
[u'afridi', u'blitz', u'sink', u'india']
[u'alic', u'woman', u'studi', u'help', u'indigen']
[u'ord', u'plung']
[u'ambros', u'lead', u'qualifi', u'zealand']
[u'anim', u'cruelti', u'paper', u'moot', u'random', u'inspect']
[u'annan', u'finger', u'food', u'scandal']
[u'art', u'group', u'speak', u'auditorium', u'plan']
[u'aust', u'lodg', u'protest', u'fiji', u'trial']
[u'australia', u'increas', u'sudan']
[u'australia', u'lonard', u'light', u'heritag']
[u'baxter', u'detaine', u'take', u'overdos']
[u'beach', u'reopen', u'contamin', u'fear']
[u'bega', u'council', u'child', u'care', u'fee', u'rise', u'slight']
[u'bendigo', u'host', u'major', u'chines', u'studi', u'confer']
[u'top', u'world', u'corpor', u'govern', u'index']
[u'bomb', u'attack', u'target', u'iraqi', u'forc']
[u'braveheart', u'air', u'paedophil', u'studi', u'fear']
[u'britain', u'reject', u'annan', u'food', u'claim']
[u'broom', u'continu', u'tripl', u'push']
[u'buderus', u'return', u'knight']
[u'cabinet', u'consid', u'welfar', u'chang']
[u'howard', u'explain', u'nativ', u'titl', u'agenda']
[u'boost', u'water', u'flow', u'ail', u'river', u'murray']
[u'cargo', u'ship', u'captain', u'sack', u'rock', u'mishap']
[u'cash', u'reward', u'encourag', u'young', u'peopl', u'drive', u'safe']
[u'charg', u'follow', u'world', u'biggest', u'ecstasi', u'haul']
[u'chariti', u'warn', u'govt', u'welfar', u'chang']
[u'chelsea', u'player', u'award', u'nomin']
[u'children', u'enjoy', u'extrem', u'solut', u'obes']
[u'chirac', u'urg', u'vote', u'referendum']
[u'citrus', u'grower', u'extend', u'work', u'holiday', u'visa']
[u'citrus', u'grower', u'push', u'domest', u'market']
[u'colac', u'otway', u'shire', u'hold', u'connect', u'talk']
[u'colombia', u'pursu', u'troop', u'cocain', u'smuggl', u'case']
[u'communiti', u'court', u'aim', u'reoffend', u'rat']
[u'communiti', u'group', u'expect', u'attend', u'aid', u'council']
[u'corridor', u'sewerag', u'line', u'damag', u'fix', u'quick']
[u'cotteslo', u'mayor', u'oppos', u'hotel', u'redevelop']
[u'councillor', u'say', u'japanes', u'tourist', u'warn', u'accept']
[u'council', u'renew', u'effort', u'remov', u'illeg', u'marina']
[u'council', u'fund', u'revamp', u'monument']
[u'council', u'work', u'youth', u'graffiti', u'plan']
[u'court', u'allow', u'review', u'murder', u'sentenc']
[u'cpsu', u'urg', u'clearer', u'credit', u'card', u'guidelin']
[u'crane', u'driver', u'brave', u'multiplex', u'extortionist']
[u'crew', u'head', u'space', u'station']
[u'cuba', u'seek', u'probe', u'guantanamo']
[u'democrat', u'urg', u'icac', u'investig', u'redfern', u'centr']
[u'dengu', u'fever', u'case', u'report', u'emerald']
[u'develop', u'boost', u'cooma', u'shop']
[u'dog', u'rooster', u'kick', u'start', u'campaign']
[u'dougla', u'scott', u'death', u'custodi', u'autopsi', u'clash']
[u'dowi', u'play', u'talk', u'ahead', u'releg', u'clash']
[u'drug', u'drive', u'overtak', u'drink', u'drive', u'victoria']
[u'dubbo', u'council', u'staff', u'return', u'chamber']
[u'earthquak', u'rattl', u'sumatra']
[u'ecstasi', u'seizur', u'disrupt', u'intern', u'ring']
[u'emerald', u'host', u'mine', u'expo']
[u'england', u'look', u'moor', u'build', u'marsh']
[u'england', u'struggl', u'ash', u'seri', u'heali']
[u'errol', u'flynn', u'reserv', u'win', u'duel']
[u'famili', u'disput', u'hear', u'local']
[u'famili', u'plea', u'businessman', u'killer']
[u'farmer', u'remind', u'drought']
[u'fear', u'council', u'lose', u'plan', u'approv']
[u'govt', u'accus', u'buck', u'pass', u'croc', u'hunt']
[u'filipino', u'soldier', u'kill', u'haiti']
[u'kill', u'pari', u'hotel']
[u'vaccin', u'shortag', u'forc', u'prioritis']
[u'food', u'wast', u'cost', u'briton', u'earth']
[u'childcar', u'centr', u'owner', u'jail', u'child']
[u'sydney', u'water', u'polic', u'site', u'public', u'hand']
[u'friend', u'fallout', u'complic', u'simpl', u'life']
[u'fruit', u'grower', u'visa', u'chang']
[u'fruit', u'grower', u'reap', u'benefit', u'visa', u'chang']
[u'fuel', u'line', u'blame', u'plane', u'emerg']
[u'gigg', u'rule', u'semi', u'final']
[u'governor', u'parti', u'say', u'beatti']
[u'govt', u'action', u'medicar', u'appal', u'labor']
[u'govt', u'attack', u'school', u'move']
[u'govt', u'confid', u'corbi', u'care', u'adequ']
[u'govt', u'hand', u'rodeo']
[u'govt', u'rich', u'racist', u'yanner', u'say']
[u'govt', u'urg', u'tax', u'help', u'build', u'industri']
[u'govt', u'urg', u'distribut', u'revenu']
[u'govt', u'urg', u'releas', u'sustain', u'grant']
[u'govt', u'urg', u'rethink', u'escarp', u'protect']
[u'grazier', u'phone', u'woe', u'amaz', u'senat']
[u'green', u'recherch', u'applic', u'reject']
[u'hadden', u'ask', u'apologis', u'claim']
[u'half', u'back', u'see', u'entertain', u'game']
[u'handl', u'consul', u'threat', u'pleas', u'indonesia']
[u'hast', u'japan']
[u'hogan', u'forward', u'replac', u'border']
[u'home', u'grow', u'race', u'test']
[u'hospit', u'medic', u'staff', u'secur', u'rise']
[u'hull', u'tour', u'gippsland', u'wind', u'farm', u'sit']
[u'hussey', u'turn', u'doubl', u'durham', u'domin']
[u'icac', u'clear', u'sydney', u'businessman']
[u'india', u'plan', u'clone', u'cheetah']
[u'indonesia', u'issu', u'plan', u'quak', u'tsunami', u'area']
[u'indonesia', u'keep', u'watch', u'volcano']
[u'infight', u'threaten', u'berlusconi', u'coalit']
[u'inmat', u'murder', u'trigger', u'second', u'iraq', u'jail', u'riot']
[u'inquiri', u'seek', u'curtain', u'compani', u'woe']
[u'israel', u'clear', u'offic', u'cameraman', u'kill']
[u'italian', u'footbal', u'seek', u'redempt']
[u'jackson', u'sell', u'beatl', u'catalog']
[u'jail', u'coup', u'free', u'serv', u'day']
[u'jam', u'hardi', u'fund', u'includ', u'indigen', u'communiti']
[u'japan', u'see', u'need', u'australian']
[u'jetstar', u'expand', u'gold', u'coast', u'newcastl', u'servic']
[u'jone', u'pittman', u'meet']
[u'kelleh', u'lead', u'chief', u'victori']
[u'klien', u'confirm', u'bull', u'driver']
[u'koala', u'care', u'centr', u'train', u'volunt']
[u'labor', u'doesnt', u'understand', u'border', u'secur', u'macdonald']
[u'labor', u'welcom', u'summit', u'backflip']
[u'late', u'gippsland', u'train', u'spark', u'anger']
[u'societi', u'reject', u'chang', u'rape', u'law']
[u'leighton', u'pay', u'bonus']
[u'liber', u'unhappi', u'gambier', u'parliamentari']
[u'listen', u'farmer', u'resourc', u'manag', u'champ']
[u'cost', u'flight', u'boost', u'hunter', u'tourism']
[u'mallah', u'learn', u'lesson', u'kill', u'threat']
[u'get', u'polic', u'prais', u'stop', u'underag', u'driver']
[u'shoot', u'answer', u'door']
[u'maoist', u'rebel', u'kill', u'nepal', u'clash']
[u'mayor', u'say', u'highway', u'upgrad', u'improv', u'safeti']
[u'medicar', u'chang', u'predict', u'pressur', u'public']
[u'medicar', u'decis', u'spark', u'health', u'fund']
[u'memori', u'servic', u'honour', u'dead', u'injur']
[u'memori', u'honour', u'king', u'dead']
[u'migaloo', u'japanes', u'dinner', u'plat']
[u'million', u'wast', u'region', u'grant', u'labor', u'say']
[u'minist', u'meet', u'discuss', u'skill', u'shortag']
[u'miss', u'woman', u'bodi', u'nation', u'park']
[u'molonglo', u'valley', u'develop', u'edg', u'closer']
[u'monaco', u'princ', u'rainier', u'farewel']
[u'mother', u'detail', u'fear', u'intimid', u'jackson', u'aid']
[u'fear', u'continu', u'rise', u'fuel', u'cost']
[u'nation', u'hope', u'rail', u'line', u'reopen']
[u'nation', u'promis', u'introduc', u'flash', u'light']
[u'nat', u'pressur', u'cass', u'chaffey', u'aspir']
[u'bore', u'restrict', u'expect', u'affect']
[u'lead', u'year', u'search', u'miss', u'teenag']
[u'unhappi', u'drought', u'reform', u'talk', u'outcom']
[u'compo', u'injur', u'worker']
[u'fixtur', u'redraw', u'gsfl', u'season']
[u'norfolk', u'tourism']
[u'mayor', u'urg', u'releas', u'darl', u'water']
[u'cane', u'toad', u'west']
[u'need', u'cash', u'roll', u'sniffabl', u'fuel']
[u'osullivan', u'plan', u'repres', u'australia']
[u'oyster', u'grower', u'parasit', u'watch']
[u'paralys', u'panda', u'undergo', u'life', u'save', u'oper']
[u'paramed', u'prais', u'gather']
[u'parent', u'clear', u'child', u'methadon', u'death']
[u'pari', u'hotel', u'leav', u'dead']
[u'parti', u'quit', u'berlusconi', u'cabinet']
[u'patient', u'abus', u'find', u'iceberg']
[u'patient', u'safeti', u'offic', u'appoint', u'health']
[u'patient', u'attack', u'govt', u'bundaberg', u'doctor']
[u'pie', u'hope', u'kick', u'roo']
[u'apologis', u'medicar', u'break', u'promis']
[u'polic', u'prais', u'vigilant', u'shooter', u'jail']
[u'polic', u'seiz', u'massiv', u'ecstasi', u'haul']
[u'prime', u'infrastructur', u'await', u'port', u'decis']
[u'probe', u'begin', u'kimberley', u'power', u'failur']
[u'prospect', u'rain', u'improv']
[u'qasim', u'like', u'miss', u'visa']
[u'racist', u'jibe', u'land', u'defend', u'jail']
[u'rama', u'season', u'end', u'train', u'mishap']
[u'region', u'offer', u'assur', u'foreign', u'train']
[u'rental', u'crisi', u'loom', u'properti', u'group']
[u'research', u'locat', u'heal', u'gene']
[u'retir', u'villag', u'push', u'dementia', u'wing']
[u'right', u'watchdog', u'condemn', u'transfer', u'terror']
[u'rijkaard', u'warn', u'barca', u'confid']
[u'rooster', u'extract', u'reveng', u'bulldog']
[u'rooster', u'look', u'amend', u'grand', u'final', u'replay']
[u'royal', u'coupl', u'make', u'offici', u'appear']
[u'doubl', u'scope', u'pacif', u'highway', u'studi']
[u'scientif', u'confer', u'fall', u'gibberish', u'prank']
[u'king', u'dead', u'epitomis', u'australian', u'howard']
[u'king', u'dead', u'honour']
[u'second', u'bundaberg', u'hospit', u'administr', u'stand']
[u'shuttl', u'discoveri', u'pass', u'fuel', u'test']
[u'sikh', u'repres', u'anzac', u'celebr']
[u'slow', u'economi', u'spook', u'investor']
[u'sport', u'stun', u'newcastl', u'reach', u'uefa', u'semi']
[u'stanhop', u'refus', u'sack', u'staffer', u'graffiti']
[u'state', u'consid', u'bolster', u'commerci', u'camel']
[u'statist', u'overhaul', u'fudg', u'hospit', u'wait', u'list']
[u'strand', u'yachti', u'rescu', u'bunburi']
[u'studi', u'find', u'snowi', u'mountain', u'attract', u'earli', u'bird']
[u'suspect', u'hospit', u'guard', u'hold']
[u'tare', u'council', u'seek', u'lift', u'rat']
[u'firm', u'run', u'redevelop', u'launceston']
[u'temora', u'farewel', u'deputi', u'mayor']
[u'test', u'continu', u'coff', u'creek']
[u'charg', u'food', u'scandal']
[u'time', u'run', u'veget', u'fund']
[u'charg', u'alleg', u'drug', u'mule', u'plot']
[u'unbeaten', u'roo', u'magpi']
[u'bodi', u'slam', u'israel', u'settlement', u'violenc']
[u'union', u'come', u'defenc', u'sack', u'graincorp', u'worker']
[u'union', u'critic', u'bega', u'hospit', u'condit']
[u'union', u'influenc', u'hamper', u'train', u'reform', u'govt']
[u'union', u'unimpress', u'walter']
[u'video', u'game', u'encourag', u'kid', u'fee', u'kill']
[u'presid', u'turn', u'aust', u'women']
[u'vanunu', u'turn', u'norway', u'asylum']
[u'waist', u'size', u'indic', u'diabet', u'risk']
[u'wait', u'list', u'inform', u'simplifi']
[u'cane', u'toad']
[u'warm', u'recept', u'deep', u'freez']
[u'warner', u'music', u'close', u'deal']
[u'wast', u'manag', u'group', u'move', u'target']
[u'watchdog', u'say', u'action', u'need', u'secur']
[u'water', u'restrict', u'tighten']
[u'webb', u'joint', u'leader', u'vega']
[u'welfar', u'group', u'call', u'research', u'gambl']
[u'western', u'sydney', u'connect', u'sewerag']
[u'wheat', u'board', u'deni', u'iraq', u'ban', u'import']
[u'whistleblow', u'law', u'deter', u'abus', u'complain']
[u'widow', u'tell', u'court', u'scott', u'injuri']
[u'william', u'join', u'adler', u'jail']
[u'william', u'block', u'lie']
[u'william', u'sentenc', u'jail']
[u'william', u'appeal', u'sentenc']
[u'wind', u'farm', u'backer', u'interest', u'sit']
[u'wolfensohn', u'back', u'wolfowitz', u'world', u'bank', u'successor']
[u'xstrata', u'ramp', u'copper', u'product']
[u'take', u'butt', u'approach', u'smoke', u'chimp']
[u'abbott', u'sorri', u'break', u'promis']
[u'adelaid', u'airport', u'theft', u'prompt', u'nation', u'alert']
[u'administr', u'bungl', u'free', u'accid', u'accus']
[u'anti', u'japan', u'protest', u'flare', u'china']
[u'artist', u'invit', u'public', u'attend', u'child', u'birth']
[u'aust', u'invent', u'clean', u'nuclear', u'wast', u'site']
[u'barro', u'set', u'pace', u'portug']
[u'beatti', u'expect', u'lawsuit', u'foreign', u'doctor']
[u'bhutto', u'husband', u'detain', u'lahor']
[u'lade', u'rice', u'say']
[u'blair', u'announc', u'rover', u'packag']
[u'blue', u'overrun', u'shark', u'super']
[u'braidwood', u'resid', u'discuss', u'heritag', u'list']
[u'broadband', u'roll', u'give', u'remot', u'town', u'speed', u'boost']
[u'brumbi', u'readi', u'fire', u'waratah', u'mortlock']
[u'bull', u'prolong', u'red', u'miseri']
[u'cardin', u'hold', u'meet', u'elect']
[u'seiz', u'drive', u'kill']
[u'cat', u'thrash', u'hapless', u'bomber']
[u'clark', u'blow', u'heritag', u'field', u'away', u'windi']
[u'cooper', u'predict', u'strong', u'show', u'aerial', u'ski']
[u'costello', u'applaud', u'stamp', u'duti']
[u'council', u'examin', u'impact', u'age', u'popul']
[u'court', u'decis', u'disappoint', u'kill', u'cyclist', u'famili']
[u'cowboy', u'good', u'tiger']
[u'cowboy', u'good', u'tiger', u'townsvill']
[u'davenport', u'injuri', u'put', u'henin', u'hardenn', u'semi']
[u'dead', u'pari', u'hotel', u'accid']
[u'dead', u'virus', u'sampl', u'unaccount']
[u'defenc', u'personnel', u'return', u'nia']
[u'disabl', u'leav', u'profession', u'care', u'parent']
[u'downer', u'urg', u'caution', u'corbi', u'trial', u'alleg']
[u'drug', u'centr', u'warn', u'ecstasi', u'effect']
[u'duma', u'approv', u'parliamentari', u'elect', u'chang']
[u'eagl', u'maintain', u'unbeaten']
[u'ecuadorean', u'leader', u'fire', u'judg', u'declar', u'emerg']
[u'eel', u'redeem', u'melbourn']
[u'egg', u'insid', u'dinosaur', u'bodi']
[u'environ', u'group', u'launch', u'nuclear', u'tour']
[u'feder', u'crash', u'mont', u'carlo']
[u'proceed', u'rule', u'despit', u'team']
[u'fifth', u'south', u'african', u'super', u'team', u'name']
[u'foley', u'deni', u'polic', u'resourc']
[u'foreign', u'doctor', u'patient', u'seek', u'compens']
[u'forestri', u'battl', u'continu', u'recherch']
[u'boyfriend', u'jail', u'woman', u'murder']
[u'fund', u'shortfal', u'threaten', u'freud', u'museum']
[u'ganguli', u'leav', u'final', u'pakistan', u'match']
[u'geologist', u'mark', u'time', u'flinder', u'rang']
[u'green', u'tunnel', u'assess', u'lack']
[u'green', u'urg', u'focus', u'water', u'conserv']
[u'haiti', u'clash', u'kill', u'wind']
[u'hawk', u'hand', u'lion', u'footbal', u'lesson']
[u'health', u'servic', u'press', u'school', u'sound', u'system']
[u'indonesia', u'deni', u'corbi', u'briberi', u'claim']
[u'indonesia', u'volcano', u'subsid', u'despit', u'java', u'quak']
[u'inop', u'law', u'purg', u'downsiz']
[u'inter', u'stadium', u'fine']
[u'iraqi', u'gunmen', u'hold', u'shiit', u'hostag']
[u'jakarta', u'aceh', u'rebel', u'agre', u'peac', u'talk']
[u'japan', u'warn', u'expat', u'china', u'protest']
[u'joey', u'world', u'championship']
[u'kanimbla', u'personnel', u'welcom', u'home']
[u'increas', u'awar', u'suicid', u'warn', u'sign']
[u'labor', u'predict', u'medicar', u'chang']
[u'land', u'group', u'propos', u'water', u'drought', u'definit']
[u'learner', u'pass', u'drive', u'test', u'attempt']
[u'lebanon', u'choos', u'syrian', u'businessman']
[u'liber', u'death', u'case']
[u'lifestyl', u'studi', u'conduct', u'year', u'check']
[u'charg', u'assault', u'road', u'accid']
[u'maradona', u'weigh', u'racism', u'furor']
[u'rover', u'collaps', u'worker', u'sack']
[u'million', u'world', u'ticket', u'order', u'weed']
[u'mine', u'challeng', u'dust', u'festiv', u'draw', u'thousand']
[u'bodi', u'pull', u'bangladesh', u'factori', u'rubbl']
[u'mother', u'jackson', u'accus', u'deni', u'civil', u'suit', u'plan']
[u'murphi', u'win', u'supercar', u'race']
[u'firefight', u'bushfir', u'victim', u'group']
[u'liber', u'appoint', u'director', u'presid']
[u'tribeca', u'launch', u'film', u'festiv', u'splash']
[u'injur', u'train', u'collis']
[u'pakistan', u'presid', u'begin', u'india', u'visit', u'prayer']
[u'panther', u'strong', u'good', u'south']
[u'parent', u'costa', u'rica', u'search']
[u'polic', u'fear', u'miss', u'korean', u'tourist']
[u'polic', u'paedophil', u'tsunami', u'victim']
[u'polic', u'question', u'convict', u'killer', u'miss', u'teen']
[u'port', u'blue', u'draw', u'adelaid']
[u'professor', u'criticis', u'carniv', u'incarcer']
[u'radio', u'licenc', u'grab']
[u'rann', u'govt', u'stamp', u'duti']
[u'recherch', u'heritag', u'valu', u'safe', u'govt']
[u'resid', u'fight', u'blue', u'mountain', u'land']
[u'rey', u'hand', u'challeng']
[u'rooster', u'extract', u'reveng', u'bulldog']
[u'abus', u'task', u'forc', u'start', u'tour']
[u'sharehold', u'benefit', u'case', u'expert', u'say']
[u'shark', u'take', u'bite', u'surfer', u'board']
[u'stock', u'market', u'fundament', u'strong', u'costello']
[u'stock', u'market', u'strong', u'sell']
[u'survivor', u'mark', u'bergen', u'belsen', u'camp', u'liber']
[u'sydney', u'shoot', u'link']
[u'incom', u'revamp']
[u'teen', u'explor', u'show']
[u'teen', u'flee', u'darwin', u'stab', u'spree']
[u'telstra', u'award', u'contract', u'local', u'compani']
[u'thousand', u'chines', u'converg', u'japan', u'embassi']
[u'tourism', u'bodi', u'play', u'japanes', u'warn']
[u'train', u'offer', u'good', u'gallagh', u'say']
[u'tug', u'free', u'strand', u'contain', u'ship']
[u'kill', u'sydney', u'drive', u'shoot']
[u'kill', u'sydney', u'shoot']
[u'lion', u'debut', u'hawk']
[u'unbeaten', u'roo', u'magpi']
[u'union', u'sceptic', u'unfair', u'dismiss', u'law', u'critic']
[u'tourist', u'warn', u'rogu', u'rwandan', u'eleph']
[u'vella', u'make', u'lower', u'grade', u'return']
[u'wall', u'street', u'drop', u'month']
[u'press', u'stamp', u'duti']
[u'waratah', u'break', u'canberra', u'drought']
[u'ward', u'lead', u'webb', u'vega']
[u'whistleblow', u'call', u'mental', u'health', u'royal']
[u'wilko', u'stag', u'success', u'club', u'comeback']
[u'abbott', u'flirt', u'resign']
[u'abbott', u'act', u'resign', u'instinct']
[u'airman', u'succeed', u'cosgrov', u'defenc', u'chief']
[u'prais', u'foreign', u'doctor', u'check']
[u'amnesti', u'urg', u'singapor', u'halt', u'execut']
[u'angola', u'scout', u'join', u'fight', u'dead', u'virus']
[u'quak', u'hit', u'indonesia', u'nia']
[u'anti', u'drug', u'organ', u'meltdown', u'panic', u'attack']
[u'australia', u'women', u'triathlon', u'trifecta']
[u'bad', u'burn', u'transfer', u'adelaid']
[u'bangladesh', u'condemn', u'death', u'kill']
[u'barro', u'pole', u'portug']
[u'bateman', u'emerg', u'ward', u'work', u'get', u'green', u'light']
[u'beatti', u'urg', u'prosecut', u'scandal', u'doctor']
[u'beazley', u'support', u'carr', u'healthcar', u'reform']
[u'berlusconi', u'shrug', u'cabinet', u'crisi']
[u'break', u'wipe', u'gregan']
[u'bronco', u'dous', u'dragon']
[u'cambodia', u'mark', u'grim', u'anniversari']
[u'campaign', u'slam', u'inact', u'debt', u'relief']
[u'casanova', u'star', u'tennant', u'doctor']
[u'celtic', u'fight', u'leav', u'don', u'dump']
[u'check', u'verifi', u'foreign', u'doctor', u'qualif']
[u'china', u'reject', u'japan', u'request', u'apolog']
[u'claim', u'toxic', u'chemic', u'threaten', u'parramatta', u'river']
[u'pledg', u'tougher', u'law', u'rape', u'domest', u'violenc']
[u'confus', u'surround', u'shiit', u'hostag', u'rescu']
[u'costello', u'thank', u'stamp', u'duti', u'opposit']
[u'crow', u'triumph', u'swan']
[u'cruis', u'ship', u'open', u'diseas', u'outbreak']
[u'crusad', u'buri', u'stormer', u'seven', u'avalanch']
[u'cubbi', u'reap', u'cotton', u'harvest']
[u'surgeri', u'receiv', u'boost']
[u'educ', u'studi', u'complet', u'auditor', u'general']
[u'electr', u'tower', u'modifi', u'eagl', u'death']
[u'endeavour', u'arriv', u'run', u'aground']
[u'film', u'honour', u'see', u'human', u'right']
[u'injur', u'brawl']
[u'foreign', u'doctor', u'rule', u'say']
[u'free', u'anzac', u'travel', u'veteran']
[u'gallop', u'back', u'cancel', u'paedophil', u'passport']
[u'student', u'famili', u'bulli', u'report', u'urg']
[u'govern', u'minimum', u'wage', u'andrew']
[u'grape', u'glut', u'sour', u'harvest']
[u'green', u'group', u'warn', u'mass', u'sack']
[u'gunner', u'cruis', u'final']
[u'health', u'minist', u'reveal', u'consid', u'resign']
[u'henin', u'hardenn', u'face', u'dementieva', u'final']
[u'wilko', u'make', u'success', u'return']
[u'hous', u'audit', u'wait', u'list']
[u'howard', u'farewel', u'iraq', u'bind', u'troop', u'announc']
[u'independ', u'call', u'contain', u'recycl', u'law']
[u'indian', u'pakistani', u'leader', u'build', u'bridg']
[u'india', u'pakistan', u'agre', u'bolster', u'trade', u'tie']
[u'inquiri', u'launch', u'rover', u'collaps']
[u'iraq', u'bind', u'troop', u'farewel', u'darwin']
[u'itali', u'govt', u'cabinet', u'crisi', u'continu']
[u'ivori', u'coast', u'foe', u'agre', u'pull', u'heavi', u'weapon']
[u'jackson', u'lawyer', u'maintain', u'attack', u'accus']
[u'japanes', u'protest', u'set', u'alight']
[u'john', u'week']
[u'labor', u'review', u'petrol', u'price', u'polici']
[u'light', u'plane', u'flip', u'land', u'mishap']
[u'lonard', u'verg']
[u'mammogram', u'delay', u'entir', u'unaccept']
[u'charg', u'aberfoyl', u'park', u'stab']
[u'man', u'raider', u'unbeaten']
[u'petrol', u'theft']
[u'mcgee', u'case', u'prompt', u'tougher', u'accid']
[u'minist', u'confid', u'reform', u'succeed']
[u'minist', u'pledg', u'reform', u'mental', u'health', u'care']
[u'fli', u'china', u'anti', u'japan', u'storm']
[u'murphi', u'claim', u'clean', u'sweep']
[u'resid', u'dock', u'space', u'station']
[u'kill', u'iraq', u'attack']
[u'norwich', u'southampton', u'toss', u'away', u'bolton', u'boost']
[u'back', u'socceroo', u'asian']
[u'pakistan', u'crush', u'india', u'seri', u'victori']
[u'pari', u'hotel', u'death', u'toll', u'rise']
[u'farewel', u'iraq', u'bind', u'troop']
[u'polic', u'hunt', u'suspect', u'sydney', u'doubl', u'murder']
[u'pope', u'ring', u'seal', u'destroy']
[u'price', u'start', u'kangaroo']
[u'qanta', u'silent', u'claim', u'secur', u'laps']
[u'recherch', u'heritag', u'list', u'govt']
[u'rocca', u'join', u'buckley', u'long', u'term', u'casualti', u'list']
[u'rudolph', u'doubt', u'test']
[u'rural', u'council', u'ask', u'adopt', u'standard', u'address']
[u'saint', u'track', u'demon']
[u'sampdoria', u'fourth', u'controversi']
[u'seiz', u'paedophil', u'passport', u'advoc']
[u'sevilla', u'miss', u'chanc', u'defeat', u'osasuna']
[u'skill', u'migrant', u'increas', u'speed', u'construct']
[u'smart', u'craft', u'space', u'junk']
[u'sydney', u'nab', u'york']
[u'sydney', u'moon', u'secur', u'york']
[u'sydney', u'shark', u'attack', u'prompt', u'call', u'aerial']
[u'call', u'ignor', u'poki', u'stanc', u'gallop']
[u'teen', u'kill', u'accid']
[u'teen', u'kill']
[u'tenaci', u'nadal', u'set', u'coria', u'final']
[u'thousand', u'hold', u'anti', u'israel', u'protest', u'indonesia']
[u'troop', u'kill', u'ramadi']
[u'tiger', u'thrash', u'docker']
[u'ward', u'claim', u'fourth', u'titl', u'vega']
[u'welcom', u'cancel', u'endeavour', u'run', u'aground']
[u'whistleblow', u'break', u'silenc', u'patel', u'case']
[u'woman', u'dead', u'injur', u'stab']
[u'wreckag', u'miss', u'papua', u'plane', u'spot']
[u'wright', u'departur', u'india', u'coach']
[u'yacht', u'race', u'commemor', u'tiwi', u'reconcili']
[u'youthrock', u'search', u'thing']
[u'youth', u'stab', u'adelaid', u'parti']
[u'dead', u'clash', u'colombian', u'militari']
[u'listen', u'offer', u'billet']
[u'environ', u'advis', u'resign']
[u'charg', u'player']
[u'continu', u'bali', u'drug', u'investig']
[u'airstrip', u'work', u'creat', u'tourism', u'turmoil']
[u'albani', u'resid', u'wait']
[u'algal', u'bloom', u'rais', u'shellfish', u'poison', u'fear']
[u'antarct', u'monitor', u'camera', u'instal', u'boat']
[u'arm', u'stand', u'end', u'coonabarabran']
[u'aust', u'indonesia', u'strengthen', u'trade', u'tie']
[u'australia', u'china', u'sign', u'memorandum']
[u'australian', u'survivor', u'sumatra', u'earthquak']
[u'australian', u'troop', u'arriv', u'kuwait']
[u'australian', u'wheat', u'arriv', u'iraq']
[u'australia', u'oppos', u'wall', u'gallipoli']
[u'aust', u'scientist', u'develop', u'blood', u'thin', u'drug']
[u'aust', u'share', u'beat']
[u'author', u'lift', u'leagu']
[u'bacon', u'remain', u'sick', u'leav']
[u'weather', u'caus', u'spate', u'road', u'accid']
[u'bayer', u'plan', u'open', u'comment']
[u'retain', u'trade', u'work', u'forc']
[u'beatti', u'address', u'gold', u'coast', u'travel']
[u'bertrand', u'destroy', u'underag', u'driver', u'court']
[u'blaze', u'burn', u'hectar', u'bushland']
[u'bloodi', u'brawl', u'result', u'injuri']
[u'blueprint', u'determin', u'futur', u'direct', u'shire']
[u'boati', u'nation', u'safeti', u'standard']
[u'bomber', u'deserv', u'place', u'ladder', u'sheedi']
[u'bruce', u'face', u'lengthi', u'stint', u'sidelin']
[u'busi', u'chamber', u'meet', u'council', u'plan']
[u'harbour', u'festiv', u'donat']
[u'moura', u'airstrip', u'upgrad']
[u'capel', u'shire', u'highlight', u'grow', u'pressur']
[u'cardin', u'gather', u'ballot']
[u'cardin', u'prepar', u'elect', u'pope']
[u'investig']
[u'china', u'wrong', u'australia', u'role', u'asia', u'downer']
[u'chines', u'team', u'begin', u'everest', u'like', u'proport']
[u'chocol', u'spell', u'sweet', u'success']
[u'club', u'face', u'expuls', u'melbourn', u'soccer', u'riot']
[u'coff', u'visitor', u'number', u'rise']
[u'committe', u'seek', u'input', u'propos', u'right']
[u'communiti', u'give', u'generous', u'chariti']
[u'concern', u'north', u'korea', u'shut', u'nuclear', u'plant']
[u'concern', u'remain', u'waterfront', u'develop']
[u'councillor', u'discuss', u'payment', u'anomali']
[u'council', u'criticis', u'sydney', u'airport', u'expans', u'plan']
[u'council', u'help', u'health', u'centr']
[u'countri', u'doctor', u'urg', u'region', u'drive']
[u'crime', u'stat', u'contain', u'mix', u'result']
[u'crow', u'treat', u'bulldog', u'respect']
[u'speak', u'breast', u'check']
[u'dairi', u'farmer', u'cut', u'job']
[u'darl', u'down', u'water', u'woe', u'mean', u'tougher', u'restrict']
[u'darwin', u'farewel', u'general', u'cosgrov']
[u'defenc', u'money', u'spend', u'wise', u'beazley']
[u'detaine', u'seek', u'review', u'iran', u'riot']
[u'downer', u'open', u'anti', u'terror', u'forum']
[u'driver', u'warn', u'outback', u'condit']
[u'duck', u'shoot', u'protest', u'dump', u'doorstep']
[u'dump', u'champion', u'acknowledg', u'public', u'worri']
[u'ecuadoran', u'parliament', u'dismiss', u'suprem', u'court']
[u'elect', u'surgeri', u'condit']
[u'emerg', u'incid', u'polic', u'firefight']
[u'ergon', u'energi', u'want', u'expand']
[u'exclud', u'small', u'busi', u'super', u'law']
[u'land', u'council', u'coordin', u'settl', u'unfair']
[u'farmer', u'mind', u'effect', u'recent']
[u'father', u'tell', u'polic', u'inact', u'generat']
[u'feder', u'govt', u'urg', u'recherch', u'land']
[u'fiji', u'consid', u'australian', u'trial', u'protest']
[u'damag', u'adelaid', u'unit']
[u'fireman', u'honour', u'year', u'servic']
[u'star', u'juve', u'pull', u'clear']
[u'impact', u'microscop']
[u'forum', u'look', u'boost', u'outback', u'live']
[u'gallipoli', u'roadwork', u'caus', u'concern']
[u'ganguli', u'uphold', u'appeal', u'fail']
[u'ger', u'close', u'scottish', u'titl', u'chase']
[u'govt', u'continu', u'scheme', u'target', u'public', u'hous']
[u'govt', u'grant', u'disabl', u'perman', u'visa']
[u'govt', u'talk', u'chemist']
[u'govt', u'plan', u'north', u'south', u'rail', u'link']
[u'govt', u'pledg', u'industri']
[u'govt', u'reaffirm', u'pledg', u'fund', u'bowel', u'cancer']
[u'grape', u'leav', u'vine', u'demand', u'evapor']
[u'green', u'protest', u'meander', u'water', u'deal']
[u'gregan', u'hope', u'play', u'samoa', u'test']
[u'health', u'research', u'centr', u'plan', u'shelv']
[u'health', u'servic', u'submiss', u'close']
[u'henin', u'hardenn', u'seal', u'comeback']
[u'hop', u'high', u'brit', u'worker', u'bolster', u'south', u'west']
[u'hous', u'minist', u'inspect', u'glenroi', u'estat']
[u'howard', u'arriv', u'china', u'trade', u'talk']
[u'hurst', u'book', u'ticket', u'montreal']
[u'india', u'pakistan', u'agre', u'open', u'ceasefir', u'line']
[u'indigen', u'confer', u'focus', u'land', u'manag']
[u'indigen', u'peopl', u'mine', u'job']
[u'indonesia', u'build', u'nuclear', u'reactor']
[u'inquiri', u'look', u'adopt', u'procedur']
[u'iraq', u'hostag', u'stand', u'dismiss', u'exagger']
[u'iraqi', u'forc', u'reach', u'town', u'sign', u'milit']
[u'iraqi', u'presid', u'reject', u'death', u'sentenc', u'saddam']
[u'iraqi', u'troop', u'tighten', u'cordon', u'besieg', u'town']
[u'japan', u'china', u'diplomat', u'stoush', u'escal']
[u'japan', u'china', u'talk', u'littl', u'progress']
[u'joey', u'tough', u'quit', u'knight', u'doctor']
[u'jone', u'finish', u'track', u'return']
[u'kashmir', u'disput', u'erupt', u'musharraf']
[u'landhold', u'eros', u'salin', u'fight']
[u'larg', u'retail', u'defend', u'truck', u'polici']
[u'liber', u'deni', u'polic', u'station', u'maywald', u'campaign']
[u'lion', u'struggl', u'depth', u'matthew']
[u'lobbi', u'group', u'seek', u'urgent', u'region', u'rail', u'invest']
[u'lockyer', u'wari', u'marshal', u'threat']
[u'lonard', u'seal', u'maiden', u'tour']
[u'charg', u'internet', u'teen', u'relationship']
[u'charg', u'stab', u'murder']
[u'face', u'court', u'pickl', u'heroin']
[u'hospit', u'motor', u'scooter', u'crash']
[u'injur', u'interven', u'fight']
[u'jail', u'shoot', u'girlfriend', u'abus']
[u'jail', u'basebal', u'attack']
[u'charg', u'shoot', u'murder']
[u'maxfield', u'accept', u'match', u'suspens']
[u'mayor', u'defend', u'walk', u'handl']
[u'meatwork', u'owner', u'plead', u'guilti', u'workplac']
[u'melbourn', u'underworld', u'figur', u'wife', u'releas']
[u'merchandis', u'import']
[u'mildura', u'court', u'hear', u'murder', u'appeal']
[u'minist', u'move', u'clear', u'paper', u'road', u'confus']
[u'minist', u'urg', u'restor', u'water', u'alloc']
[u'fund', u'need', u'stop', u'deterior']
[u'intern', u'need', u'financ', u'minist']
[u'time', u'allow', u'elect', u'submiss']
[u'motorcycl', u'group', u'angri', u'race', u'track', u'close']
[u'motorcyclist', u'die', u'highway', u'crash']
[u'call', u'highway', u'overtak', u'lane']
[u'ask', u'consid', u'gambier', u'billet', u'option']
[u'mugab', u'mark', u'mileston', u'anti', u'western', u'defianc']
[u'murder', u'victim', u'mother', u'attack', u'killer']
[u'music', u'group', u'get', u'help', u'promot', u'cultur']
[u'readi', u'relaunch', u'foreign', u'exchang']
[u'navi', u'pilot', u'death', u'shatter', u'famili']
[u'nurs', u'plan', u'rescu', u'chopper', u'servic']
[u'technolog', u'boost', u'region', u'health', u'educ']
[u'chief', u'say', u'kid', u'overboard', u'past']
[u'arrest', u'bali', u'drug', u'bust']
[u'cut', u'expect', u'art', u'outwest', u'council']
[u'survivor', u'jungl', u'plane', u'crash', u'polic']
[u'mental', u'health', u'criticis', u'prison']
[u'drop', u'electron', u'debit']
[u'kill', u'injur', u'crash']
[u'dragon', u'play', u'australia']
[u'opposit', u'fear', u'doctor', u'scandal', u'nation']
[u'plan', u'continu', u'technic', u'colleg']
[u'downplay', u'fear', u'gallipoli', u'grave', u'disturb']
[u'say', u'wont', u'side', u'china', u'japan']
[u'polic', u'frustrat', u'staff', u'level']
[u'polic', u'investig', u'oversea', u'student', u'attack']
[u'polic', u'look', u'motiv', u'doubl', u'fatal', u'shoot']
[u'polic', u'seek', u'assault', u'wit']
[u'polic', u'tell', u'teen', u'tram', u'thief', u'obsess']
[u'pay', u'petrol', u'program', u'reduc', u'theft', u'polic']
[u'prison', u'hold', u'solitari', u'ahead', u'mental']
[u'prison', u'escape', u'bar']
[u'prom', u'park', u'reopen', u'blaze']
[u'protocol', u'rural', u'town', u'doctor', u'standard']
[u'public', u'urg', u'help', u'solv', u'linton']
[u'govt', u'doctor', u'mistak']
[u'queanbeyan', u'council', u'debat', u'asbesto', u'remov', u'issu']
[u'rabbitoh', u'sign', u'walker']
[u'rapist', u'give', u'indefinit', u'jail', u'sentenc']
[u'rattl', u'investor', u'send', u'share', u'tumbl']
[u'report', u'recommend', u'prefer', u'local', u'busi']
[u'resid', u'await', u'asbesto', u'health', u'result']
[u'resid', u'fight', u'leas', u'roadhous']
[u'resign', u'highlight', u'crisi', u'branch']
[u'review', u'panel', u'mull', u'weekend', u'incid']
[u'stand', u'fund', u'level']
[u'road', u'train', u'crash', u'block', u'highway']
[u'plane', u'incid', u'spark', u'council', u'action']
[u'council', u'trial', u'cape', u'york', u'job', u'scheme']
[u'govt', u'crack', u'callous', u'driver']
[u'govt', u'urg', u'duck', u'shoot']
[u'saint', u'keen', u'maintain', u'renew', u'aggress']
[u'join', u'push', u'health', u'review']
[u'scientist', u'hail', u'drug']
[u'scientist', u'trial', u'drug', u'treatment']
[u'search', u'indigen', u'youth', u'advis', u'govt']
[u'search', u'continu', u'long', u'lose', u'plane']
[u'secker', u'join', u'push', u'state', u'lift', u'basin', u'effort']
[u'secret', u'wit', u'break', u'william', u'hear']
[u'seek', u'delay', u'stock', u'market', u'debut']
[u'senat', u'aim', u'counter', u'wind', u'farm', u'misinform']
[u'sharon', u'signal', u'possibl', u'delay', u'gaza', u'pullout']
[u'shoalhaven', u'resid', u'proud', u'town', u'econom', u'growth']
[u'readi']
[u'take', u'hospit']
[u'south', u'east', u'blaze', u'firefight', u'busi']
[u'spanish', u'basqu', u'leader', u'poll']
[u'stoner', u'race', u'maiden', u'portug']
[u'stuart', u'escap', u'fine']
[u'stun', u'gun', u'potenti', u'fatal', u'studi', u'find']
[u'submiss', u'seek', u'harbour', u'fuel', u'plan']
[u'symond', u'fear', u'test', u'shut']
[u'symond', u'unhappi', u'join', u'ash', u'test', u'team']
[u'wait', u'paedophil', u'regist']
[u'teacher', u'turn', u'final', u'offer']
[u'team', u'monitor', u'sick', u'whale']
[u'teen', u'charg', u'tram', u'theft']
[u'thousand', u'expect', u'mine', u'expo']
[u'escap', u'light', u'plane', u'crash']
[u'tiger', u'cautious', u'despit', u'solid', u'start']
[u'tighter', u'secur', u'need', u'vandal', u'target', u'school']
[u'tourist', u'oper', u'receiv', u'govt', u'fund']
[u'town', u'project', u'develop', u'caus', u'concern']
[u'tradit', u'owner', u'seek', u'mine', u'oper']
[u'train', u'graduat', u'begin', u'work']
[u'train', u'institut', u'receiv', u'train']
[u'earthquak', u'rattl', u'sumatra']
[u'injur', u'brawl', u'suburban', u'train']
[u'unexpect', u'zealand', u'seal', u'stop', u'traffic']
[u'plan', u'attract', u'foreign', u'student']
[u'tell', u'aust', u'resolv', u'nauru', u'detaine', u'case']
[u'urg', u'action', u'nepal', u'refuge']
[u'veteran', u'accus', u'govt', u'disregard', u'anzac', u'spirit']
[u'waratah', u'shepherd', u'good', u'behaviour', u'bond']
[u'resist', u'pressur', u'uranium']
[u'waterhous', u'court', u'racehors', u'incid']
[u'watkin', u'train', u'talk', u'consid', u'pointless']
[u'introduc', u'drug', u'drive', u'legisl']
[u'wife', u'tell', u'dougla', u'scott', u'abus']
[u'wrong', u'bath', u'land', u'policeman', u'water']
[u'young', u'aborigin', u'urg', u'medic', u'worker']
[u'youth', u'charg', u'assault', u'appear', u'court']
[u'accc', u'approv']
[u'accc', u'ask', u'probe', u'region', u'fuel', u'price']
[u'accus', u'heroin', u'ring', u'mastermind', u'deni', u'involv']
[u'acid', u'rain', u'wear', u'away', u'sit', u'buddha']
[u'afghan', u'warlord', u'be', u'govt']
[u'issu', u'say', u'hohn']
[u'agreement', u'aim', u'help', u'long', u'term', u'unemploy']
[u'airport', u'chief', u'promis', u'consult']
[u'alexand', u'keen', u'resolv', u'pratt', u'disput']
[u'jazeera', u'temporarili', u'bar', u'report']
[u'student', u'reject', u'csiro', u'merger', u'propos']
[u'anzac', u'cove', u'damag', u'repair', u'beazley']
[u'push', u'increas', u'wada', u'fund']
[u'arm', u'robberi', u'number', u'increas', u'despit', u'fall']
[u'arrest', u'warrant', u'issu', u'american', u'actress']
[u'galleri', u'display', u'victoria', u'cross']
[u'assault', u'victim', u'famili', u'appeal', u'attack']
[u'peopl', u'kill', u'iraq', u'violenc']
[u'author', u'fail', u'foot', u'mouth', u'test']
[u'offici', u'fall', u'lehmann']
[u'bali', u'accus', u'deni', u'godfath', u'claim']
[u'want', u'defenc', u'dept', u'hand', u'land']
[u'beach', u'whale', u'rare', u'see', u'speci']
[u'better', u'paper', u'product', u'win', u'achiev', u'award']
[u'buchanan', u'welcom', u'england', u'ash', u'confid']
[u'cabinet', u'committe', u'appoint', u'bold']
[u'cabinet', u'committe', u'appoint', u'question']
[u'lifestyl', u'chang', u'save', u'reef']
[u'mentor', u'scheme', u'foreign', u'train', u'doctor']
[u'call', u'bull', u'campaign']
[u'call', u'cheaper', u'transport']
[u'canada', u'approv', u'cannabi', u'deriv', u'medicin']
[u'canberra', u'midst', u'mous', u'boom']
[u'cann', u'festiv', u'mark', u'return', u'cinema', u'great']
[u'cardin', u'fail', u'agre', u'pope']
[u'cardin', u'deliber', u'pope']
[u'cardin', u'begin', u'second', u'conclav']
[u'cat', u'lock', u'wipe', u'stomp', u'charg']
[u'cezann', u'theft', u'evid']
[u'charg', u'lay', u'brawl']
[u'check', u'find', u'corbi', u'court']
[u'chelsea', u'ferdinand', u'storm']
[u'china', u'offer', u'repair', u'japanes', u'embassi']
[u'cholesterol', u'drug', u'lower', u'prostat', u'cancer', u'risk']
[u'coke', u'settl', u'account', u'disput']
[u'coldplay', u'album', u'high', u'stake', u'gambl']
[u'communiti', u'urg', u'harbour', u'festiv']
[u'compani', u'plan', u'uranium', u'explor', u'north', u'east']
[u'concern', u'rais', u'telescop']
[u'cool', u'school']
[u'council', u'reject', u'retrospect', u'fund']
[u'council', u'review', u'beach']
[u'council', u'plan', u'staff', u'cut', u'worri', u'union']
[u'council', u'consid', u'budget', u'posit']
[u'council', u'worker', u'continu', u'work', u'ban']
[u'court', u'find', u'solarium', u'safeti', u'claim', u'decept']
[u'court', u'order', u'jobless', u'benefit']
[u'crowd', u'violenc', u'toler', u'oneil']
[u'date', u'rosedal', u'communiti', u'centr', u'work']
[u'dead', u'off', u'day', u'work']
[u'dept', u'reject', u'juvenil', u'justic', u'centr', u'crisi', u'claim']
[u'detent', u'polici', u'histori', u'lawrenc']
[u'disgrac', u'aceh', u'governor', u'avoid', u'prison']
[u'domest', u'violenc', u'decreas', u'west']
[u'dozen', u'kill', u'chines', u'accid']
[u'dunsborough', u'blaze', u'contain']
[u'east', u'timores', u'demand', u'resign']
[u'environ', u'commission', u'support', u'brown', u'coal']
[u'hear', u'asbesto', u'dump', u'fear']
[u'esper', u'student', u'anzac', u'studi', u'tour']
[u'ethiopian', u'obelisk', u'begin', u'journey', u'home']
[u'exhaust', u'heat', u'power', u'car', u'condit']
[u'famili', u'shock', u'bali', u'drug', u'arrest']
[u'famili', u'seek', u'advic', u'bali', u'probe', u'continu']
[u'famili', u'flee', u'burn', u'hous']
[u'farmer', u'consult', u'line', u'upgrad', u'industri']
[u'fear', u'polic', u'shortag', u'lead', u'increas', u'crime']
[u'figur', u'rise', u'assault']
[u'figur', u'fact', u'abort', u'debat', u'boswel']
[u'fiji', u'govt', u'fear', u'typhoid', u'outbreak', u'spread']
[u'fiji', u'record', u'fourth', u'year', u'growth']
[u'flatley', u'red', u'return']
[u'fuel', u'fear', u'halt', u'isra', u'flight']
[u'fuel', u'flow', u'aborigin', u'communiti']
[u'gold', u'explor', u'central', u'west']
[u'pipelin', u'head', u'hill']
[u'gelignit', u'dump', u'hobart']
[u'gilgandra', u'hous', u'burn']
[u'governor', u'catch', u'whoop', u'cough', u'epidem']
[u'govt', u'accus', u'export', u'death', u'penalti']
[u'govt', u'ask', u'teacher', u'number', u'rethink']
[u'govt', u'give', u'away', u'bargain', u'chip', u'labor']
[u'govt', u'inject', u'fund', u'rock', u'oyster', u'regener']
[u'govt', u'combat', u'domest', u'violenc']
[u'grape', u'grower', u'urg', u'voic', u'price', u'worri']
[u'greater', u'long', u'term', u'care', u'option', u'seek', u'disabl']
[u'green', u'gallipoli', u'recherch', u'road', u'work']
[u'group', u'say', u'inadequ', u'support', u'hurt', u'mental']
[u'guantanamo', u'detaine', u'provid', u'intellig']
[u'club', u'set', u'sight', u'attract', u'foreign']
[u'harsher', u'penalti', u'driver']
[u'helplin', u'aim', u'reduc', u'hospit', u'emerg', u'queue']
[u'hessian', u'bag', u'seagrass', u'growth']
[u'historian', u'want', u'perth', u'hill', u'disast', u'memori']
[u'histor', u'build', u'develop', u'accommod']
[u'howard', u'celebr', u'negoti', u'agreement']
[u'howard', u'find', u'china', u'posit', u'asean', u'invit']
[u'howard', u'talk', u'japanes']
[u'howard', u'welcom', u'memorandum', u'understand']
[u'hydro', u'respond', u'power', u'station', u'concern']
[u'indigen', u'communiti', u'join', u'land', u'protect', u'talk']
[u'indigen', u'abus', u'task', u'forc', u'seek', u'region']
[u'injur', u'princ', u'sweat', u'test', u'result']
[u'iraqi', u'forc', u'recaptur', u'town', u'hostag']
[u'irish', u'soccer', u'boss', u'trust', u'cash', u'rogu', u'trader']
[u'italian', u'baulk', u'resign']
[u'itali', u'mafiosi', u'indict', u'god', u'banker', u'murder']
[u'japanes', u'court', u'reject', u'chines', u'atroc', u'suit']
[u'kalgoorli', u'head', u'want', u'uranium', u'mine', u'consid']
[u'kando', u'rylston', u'child', u'care', u'threat']
[u'kiwi', u'step', u'price']
[u'land', u'council', u'call', u'govt', u'support']
[u'lebanon', u'form', u'govern']
[u'letherbi', u'repeat', u'boston', u'marathon', u'fifth', u'place']
[u'liber', u'blame', u'fund', u'literaci', u'problem']
[u'lion', u'refus', u'panic', u'button']
[u'long', u'emerg', u'wait', u'glitch']
[u'mainten', u'question', u'rais', u'store', u'lose', u'power']
[u'major', u'quak', u'rock', u'ocean', u'japan']
[u'arrest', u'death', u'hotel']
[u'get', u'year', u'murder', u'wife']
[u'man', u'charg', u'upgrad', u'murder']
[u'market', u'rebound', u'earli', u'week', u'loss']
[u'marshal', u'readi', u'play', u'defens', u'target']
[u'mcgauran', u'visit', u'focus', u'immigr', u'matter']
[u'north', u'coast', u'record', u'crime']
[u'militari', u'funer', u'hold', u'king', u'crash', u'victim']
[u'minist', u'rais', u'nuclear', u'energi', u'option']
[u'moor', u'alli', u'advocaat', u'resign']
[u'arrest', u'possibl', u'bali', u'drug', u'bust']
[u'push', u'ambul', u'servic', u'darwin', u'rural']
[u'say', u'time', u'south', u'east', u'infrastructur']
[u'nation', u'trust', u'consid', u'option', u'smith']
[u'camera', u'focus', u'speed', u'driver']
[u'newcastl', u'businessman', u'get', u'jail', u'term']
[u'council', u'get']
[u'newman', u'upgrad']
[u'nightclub', u'owner', u'say', u'curfew', u'wont', u'improv', u'safeti']
[u'night', u'tribun']
[u'leav', u'chanc', u'discoveri', u'launch']
[u'time', u'frame', u'aquacultur', u'harvest']
[u'noxious', u'smell', u'forc', u'shop', u'centr', u'evacu']
[u'polic', u'threaten', u'industri', u'action']
[u'nurs', u'centr', u'gain', u'intern', u'recognit']
[u'orang', u'suburb', u'name', u'scrap']
[u'organis', u'hope', u'record', u'festiv', u'audienc']
[u'oxford', u'reclaim', u'titl', u'britain', u'univers']
[u'pain', u'drug', u'fight', u'cancer', u'studi']
[u'perth', u'rugbi', u'fan', u'feel', u'forc']
[u'petit', u'seek', u'barossa', u'hospit']
[u'polic', u'review', u'school', u'program']
[u'polic', u'target', u'fraser', u'driver']
[u'polic', u'treat', u'babi', u'death', u'murder']
[u'poor', u'result', u'halt', u'cancer', u'drug', u'trial']
[u'port', u'meet', u'tribun', u'concern']
[u'premier', u'polic', u'wast', u'tax', u'brogden']
[u'princ', u'clear', u'injuri']
[u'prison', u'face', u'court', u'inmat', u'stab']
[u'privat', u'engin', u'work', u'rise']
[u'probe', u'launch', u'tyre', u'factori', u'blaze']
[u'probe', u'order', u'foreign', u'doctor', u'scandal']
[u'prosecutor', u'seek', u'jail', u'hih', u'cassidi']
[u'boast', u'econom', u'strength']
[u'race', u'author', u'refus', u'request', u'track']
[u'receiv', u'sell', u'rescu', u'chopper']
[u'studi', u'expans', u'welcom']
[u'repeat', u'offend', u'target', u'crime', u'crackdown']
[u'rescuer', u'monitor', u'whale', u'progress']
[u'retail', u'cautious', u'rais', u'price', u'despit', u'fuel']
[u'rocker', u'charg', u'want', u'joint', u'decad']
[u'studi', u'creat', u'bypass', u'uncertainti']
[u'rural', u'doctor', u'fear', u'impact', u'medicar', u'chang']
[u'scienc', u'teacher', u'qualifi', u'unsatisfi']
[u'scientist', u'prove', u'happi', u'equal', u'healthi']
[u'scott', u'widow', u'call', u'prison', u'guard', u'murder']
[u'search', u'collaps', u'bangladesh', u'factori']
[u'seek', u'debut', u'stock', u'market']
[u'sewag', u'upgrad', u'south', u'coast']
[u'shepparton', u'polic', u'shoot', u'add', u'inquiri']
[u'shoalhaven', u'council', u'ponder', u'rate', u'rise']
[u'shot', u'fire', u'car', u'sydney', u'doubl', u'murder']
[u'shuttl', u'upgrad', u'nasa']
[u'joh', u'condit', u'worsen']
[u'joh', u'famili', u'await', u'inevit']
[u'joh', u'famili', u'keep', u'bedsid', u'vigil']
[u'state', u'talk', u'revis', u'plan']
[u'stock', u'market', u'rise', u'month']
[u'studi', u'find', u'tube', u'surgeri', u'safe', u'youngster']
[u'substandard', u'drug', u'threat', u'heart', u'patient', u'doctor']
[u'coast', u'pois', u'advantag', u'china', u'trade']
[u'vitamin', u'help', u'lung', u'cancer', u'surviv']
[u'surfer', u'drown', u'port', u'macquari']
[u'synagogu', u'vandal', u'jail', u'seven', u'month']
[u'talk', u'focus', u'toowoomba', u'gladston', u'rail', u'line']
[u'teenag', u'appear', u'court', u'assault']
[u'teenag', u'unabl', u'assist', u'assault', u'investig']
[u'teen', u'burn', u'firework', u'accid']
[u'think', u'tank', u'warn', u'maritim', u'terror', u'risk']
[u'tiger', u'wont', u'lose', u'focus', u'say', u'wallac']
[u'time', u'run', u'age', u'care', u'plan']
[u'earli', u'specul', u'loss', u'howard']
[u'tourism', u'council', u'want', u'river', u'protect']
[u'tourism', u'group', u'support', u'pipelin', u'arch']
[u'tour', u'win', u'bonus', u'survivor', u'armstrong']
[u'transplant', u'success', u'open', u'door', u'diabet']
[u'troubl', u'countri', u'club', u'administr']
[u'twitt', u'score', u'hockey', u'honour']
[u'ask', u'review', u'unfair', u'pension', u'polici']
[u'chang', u'worri', u'presid']
[u'strike', u'start', u'industri', u'unrest']
[u'high', u'school', u'shoot', u'plan']
[u'vella', u'return', u'tiger']
[u'victorian', u'polic', u'kill', u'arm']
[u'fund', u'human', u'trial', u'blind', u'treatment']
[u'liber', u'review', u'elect', u'perform']
[u'find', u'bowser', u'deal', u'fall', u'short']
[u'wellington', u'crime', u'rise', u'doesnt', u'faze', u'polic']
[u'white', u'hope', u'elliott', u'remain', u'bushrang']
[u'consid', u'desalin', u'plant', u'uranium']
[u'woman', u'admit', u'caus', u'pari', u'hotel', u'polic']
[u'woman', u'give', u'probat', u'lock', u'kid']
[u'woolworth', u'sale']
[u'worker', u'shortag', u'caus', u'cost', u'blowout', u'labor']
[u'world', u'fastest', u'femal', u'bowler', u'hand', u'brisban']
[u'administr', u'appoint', u'rocki', u'builder']
[u'agassi', u'roddick', u'texa', u'second', u'round']
[u'anti', u'terrorist', u'measur', u'competit', u'coast']
[u'anzac', u'badg', u'worth', u'possibl', u'steal']
[u'archbishop', u'confid', u'pope', u'good', u'leader']
[u'athlet', u'give', u'rare', u'chanc', u'compet', u'china']
[u'aust', u'commit', u'troop', u'sudan', u'peac', u'oper']
[u'aust', u'lag', u'water', u'shortag', u'issu', u'expert']
[u'australian', u'surf', u'star', u'progress', u'fiji']
[u'australian', u'troop', u'begin', u'iraq', u'deploy']
[u'australia', u'plan', u'defens', u'approach', u'china']
[u'australia', u'brook', u'second', u'tour', u'open', u'stage']
[u'bali', u'accus', u'forc', u'smuggl', u'friend']
[u'bali', u'pair', u'face', u'aust', u'court']
[u'ballimor', u'water', u'council', u'wish', u'list']
[u'beatti', u'pledg', u'palm', u'woe']
[u'berlusconi', u'resign', u'form', u'govern']
[u'betfair', u'threaten', u'litig', u'aust', u'race']
[u'bishop', u'welcom', u'ratzing', u'pope']
[u'bracken', u'disappoint', u'miss', u'ash']
[u'british', u'retrial', u'juri']
[u'bushfir', u'affect', u'farmer', u'get']
[u'bush', u'nomine', u'post', u'doubt']
[u'parliamentari', u'probe', u'prom', u'blaze']
[u'camera', u'instal', u'speed', u'truck']
[u'compon', u'supplier', u'lose', u'china']
[u'crash', u'result', u'stupid', u'polic']
[u'cardin', u'ratzing', u'profil']
[u'chili', u'broccoli', u'slow', u'cancer', u'growth']
[u'china', u'trade', u'deal', u'benefit', u'lobster', u'industri']
[u'china', u'want', u'pope', u'sever', u'taiwan', u'tie']
[u'clarkson', u'hop', u'youth', u'polici', u'bring']
[u'coal', u'ship', u'mean', u'economi', u'save']
[u'committe', u'design', u'safer', u'year', u'celebr']
[u'want', u'bore', u'drill', u'stop']
[u'costello', u'accept', u'deal']
[u'costello', u'await', u'compromis']
[u'council', u'candid', u'push', u'afford', u'hous']
[u'council', u'consid', u'percent', u'rate', u'rise']
[u'council', u'lay', u'bug']
[u'court', u'drop', u'indec', u'treatment', u'charg']
[u'court', u'hear', u'appeal', u'hallucinogen']
[u'croatian', u'freediv', u'claim', u'record']
[u'croc', u'jerki', u'fill', u'export', u'hole']
[u'cyclist', u'kill', u'mornington', u'peninsula']
[u'data', u'eas', u'rate', u'rise', u'pressur']
[u'desalin', u'plant', u'pressur', u'murray']
[u'develop', u'strategi', u'appropri']
[u'dfat', u'seek', u'comment', u'aust', u'china', u'talk']
[u'dirranbandi', u'dive', u'pool', u'plan']
[u'discount', u'give', u'landcar', u'group', u'insur']
[u'doctor', u'milosev', u'risk', u'cardio', u'vascular', u'attack']
[u'doubt', u'linger', u'jadda', u'centr', u'fund']
[u'downer', u'offer', u'consular', u'bali', u'accus']
[u'appeal', u'killer', u'sentenc']
[u'drink', u'driver', u'get', u'suspend', u'jail', u'sentenc']
[u'driver', u'lose', u'control', u'caus', u'death', u'polic']
[u'driver', u'warn', u'polic', u'crackdown']
[u'duranbah', u'beach', u'dun', u'expand']
[u'educ', u'fund', u'divert', u'health']
[u'eleph', u'trash', u'properti', u'restaur']
[u'expert', u'speechless', u'tell', u'amphetamin']
[u'extra', u'fund', u'need', u'chaffey', u'lib']
[u'falter', u'red', u'welcom', u'gun']
[u'farmer', u'mean', u'ahead']
[u'farm', u'group', u'urg', u'caution', u'china', u'free', u'trade', u'deal']
[u'govt', u'attack', u'infrastructur', u'fund']
[u'caus', u'damag', u'homestead']
[u'focus', u'cut', u'paper', u'emiss']
[u'food', u'regul', u'accus', u'fail', u'stop', u'illeg']
[u'food', u'watchdog', u'defend', u'action', u'corn', u'import']
[u'glachan', u'die', u'age']
[u'stanhop', u'advis', u'face', u'graffiti', u'charg']
[u'foster', u'extend', u'southcorp', u'takeov', u'offer']
[u'foster', u'southcorp', u'announc', u'loom']
[u'fraudster', u'convict', u'act', u'real', u'estat', u'agent']
[u'fund', u'manag', u'bid', u'pacif', u'hydro']
[u'fund', u'black', u'spot']
[u'game', u'boss', u'open', u'ceremoni', u'detail']
[u'gender', u'factor', u'kapookoa', u'command', u'select']
[u'german', u'tourist', u'fatal', u'accid']
[u'govern', u'overestim', u'school', u'sign', u'cost']
[u'govt', u'broaden', u'child', u'develop', u'program']
[u'govt', u'structur', u'welfar', u'deliveri', u'servic']
[u'govt', u'warn', u'medicar', u'chang']
[u'grant', u'play', u'year']
[u'grant', u'want', u'play', u'year']
[u'green', u'acquir', u'lowan', u'australia']
[u'green', u'guillotin', u'elector', u'reform', u'debat']
[u'health', u'inquiri', u'broad', u'say', u'beatti']
[u'henjak', u'favour', u'brumbi', u'ahead', u'forc', u'talk']
[u'hill', u'visit', u'troop', u'iraq']
[u'howard', u'begin', u'talk', u'japan']
[u'hurley', u'readi', u'return', u'pirat']
[u'inclus', u'turkish', u'veteran', u'anzac']
[u'investig', u'probe', u'fatal', u'glide', u'accid']
[u'inzamam', u'matur', u'skipper', u'imran']
[u'irrig', u'studi', u'rais', u'competit', u'concern']
[u'isra', u'armi', u'start', u'move', u'equip', u'gaza']
[u'japan', u'china', u'seek', u'summit', u'quell']
[u'japan', u'hesit', u'offer']
[u'japan', u'prepar', u'talk']
[u'judg', u'visit', u'capricorn', u'coast', u'develop', u'site']
[u'kennedi', u'test', u'news']
[u'lawyer', u'say', u'bali', u'accus', u'choos', u'ignor']
[u'lennon', u'lean', u'give', u'bet', u'licenc']
[u'lennon', u'attend', u'anzac', u'servic', u'gallipoli']
[u'local', u'domin', u'long', u'distanc', u'open', u'water', u'event']
[u'appear', u'court', u'foreign', u'student', u'bash']
[u'arrest', u'drive', u'wife']
[u'fin', u'possess', u'porn']
[u'front', u'court']
[u'hospit', u'caravan', u'tanker', u'collid']
[u'marketplac', u'fume', u'see', u'life', u'threaten']
[u'masterfood', u'loss', u'wodonga']
[u'mayor', u'defend', u'decis', u'aldermen', u'report']
[u'melbourn', u'theatr', u'compani', u'find', u'home']
[u'melbourn', u'tram', u'thief', u'face', u'charg']
[u'mildura', u'koori', u'court', u'oper', u'juli']
[u'mildura', u'welcom', u'governor', u'general']
[u'miner', u'face', u'court', u'blast']
[u'minist', u'want', u'unemot', u'water', u'debat']
[u'mix', u'reaction', u'australia', u'pope']
[u'mooney', u'reject', u'plan', u'separ']
[u'compani', u'servic', u'outer', u'suburb']
[u'mother', u'stand', u'trial', u'babi', u'death']
[u'speak', u'upper', u'hous', u'restrict']
[u'fluffi', u'asbesto', u'insul', u'microscop']
[u'murray', u'river', u'studi', u'expand']
[u'nation', u'urg', u'govern', u'save', u'water']
[u'network', u'play', u'hardbal', u'right', u'deal']
[u'newcastl', u'sort', u'boy']
[u'aim', u'help', u'indigen', u'leader']
[u'fruit', u'control', u'method', u'save', u'grower', u'money']
[u'fund', u'assist', u'patient', u'wait', u'elect']
[u'polic', u'station', u'southport']
[u'pope', u'gift', u'theologian']
[u'pope', u'celebr', u'mass']
[u'reef', u'mornington', u'island']
[u'nia', u'death', u'toll']
[u'celebr', u'comm', u'game', u'open', u'ceremoni']
[u'darfur', u'role', u'aust', u'troop']
[u'northern', u'quoll', u'endang']
[u'oppos', u'fund', u'compromis']
[u'govt', u'spend', u'secur', u'drama']
[u'want', u'action', u'illeg', u'fish']
[u'capabl', u'caus', u'upset', u'lockyer']
[u'thai', u'busi', u'benefit', u'trade', u'pact', u'clark']
[u'offici', u'dead', u'zambia', u'accid']
[u'classroom', u'possibl', u'youth', u'cafe']
[u'olymp', u'chief', u'relaunch', u'roger', u'medal', u'push']
[u'pagan', u'wari', u'freo', u'despit', u'maul', u'tiger']
[u'pell', u'predict', u'surpris', u'pope']
[u'congratul', u'pope', u'benedict']
[u'hold', u'talk', u'japan']
[u'urg', u'rais', u'whale', u'hunt', u'japan']
[u'polic', u'discov', u'gold', u'coast', u'assault']
[u'polic', u'form', u'plan', u'fight', u'unruli', u'behaviour']
[u'polic', u'press', u'bali', u'drug', u'charg']
[u'polic', u'seek', u'help', u'solv', u'woman', u'death']
[u'polic', u'video', u'break', u'driver']
[u'polic', u'decid', u'derail', u'charg']
[u'pope', u'take', u'possess', u'papal', u'apart']
[u'port', u'pleas', u'retain', u'burgoyn']
[u'prescrib', u'burn', u'weather', u'caus', u'smoke', u'blanket']
[u'prison', u'guard', u'say', u'foul', u'play', u'death']
[u'prosecut', u'wrap', u'jackson', u'case']
[u'govt', u'assess', u'privat', u'partnership']
[u'hostel', u'improv', u'safeti']
[u'opposit', u'air', u'bundaberg', u'hospit']
[u'raaf', u'conduct', u'exercis', u'tasmania']
[u'radiat', u'expect', u'telescop']
[u'rapist', u'jail', u'student', u'attack']
[u'ratzing', u'elect', u'pope']
[u'ratzing', u'elect', u'pope']
[u'record', u'number', u'forecast', u'gallipoli', u'servic']
[u'rain', u'fall', u'russia']
[u'remot', u'crop', u'highlight', u'elabor', u'drug', u'trade']
[u'report', u'highlight', u'coastal', u'secur', u'gap']
[u'research', u'hit', u'fast', u'forward', u'genom', u'analysi']
[u'tinto', u'give', u'ord', u'lift']
[u'road', u'violenc', u'increas']
[u'rogg', u'warn', u'bid']
[u'school', u'violenc', u'spark', u'independ', u'probe']
[u'scienc', u'teacher', u'shortag', u'qualif', u'woe']
[u'shepparton', u'man', u'death', u'come', u'shock', u'neighbour']
[u'shoalhaven', u'council', u'fire', u'line', u'rate', u'rise']
[u'comfort', u'deterior']
[u'stabl']
[u'skill', u'vacanc', u'rise']
[u'south', u'east', u'transport', u'infrastructur', u'upgrad', u'call']
[u'specul', u'surround', u'wheat', u'export', u'iraq']
[u'speedi', u'pope', u'appoint', u'surpris', u'archbishop']
[u'stop', u'hold', u'detaine', u'crimin', u'bartlett']
[u'suharto', u'make', u'rare', u'public', u'appear', u'report']
[u'suncoast', u'jobless', u'rate', u'tip', u'rise']
[u'suprem', u'court', u'throw', u'medic', u'neglig', u'appeal']
[u'survey', u'find', u'crime', u'concern']
[u'sydney', u'cross', u'citi', u'toll', u'tip']
[u'teen', u'get', u'year', u'umbrella', u'stab']
[u'telstra', u'quarter', u'sale']
[u'tennant', u'creek', u'get', u'renal', u'dialysi', u'centr']
[u'timor', u'negoti', u'resum']
[u'toon', u'brawler', u'face', u'crime', u'probe']
[u'tourism', u'oper', u'urg', u'prepar', u'chines']
[u'transport', u'lobbi', u'support', u'inland', u'rail', u'line']
[u'turkish', u'veteran', u'join', u'adelaid', u'anzac', u'parad']
[u'arrest', u'sydney', u'shoot']
[u'charg', u'oversea', u'student', u'bash']
[u'soldier', u'kill', u'iraq']
[u'week', u'woolford', u'appeal', u'fail']
[u'occupi', u'public', u'hous', u'caus', u'concern']
[u'union', u'predict', u'hec', u'fee', u'rise']
[u'smoke', u'scare', u'spark', u'evacu']
[u'vice', u'chancellor', u'hit', u'index', u'fund']
[u'vandal', u'prompt', u'night', u'park', u'closur']
[u'urg', u'govt', u'reconsid', u'hec', u'chang']
[u'take', u'mooney', u'cat']
[u'govt', u'farm', u'support', u'snub']
[u'polic', u'support', u'shoot', u'inquiri']
[u'road', u'agre', u'skate', u'park']
[u'videotap', u'australian', u'releas']
[u'vietnam', u'vet', u'wall', u'readi', u'anzac']
[u'waratah', u'mackay', u'head', u'west']
[u'water', u'liquid', u'nitrogen', u'improv', u'flow']
[u'west', u'lake', u'shellfish', u'toxic']
[u'whistleblow', u'give', u'corbi', u'fals']
[u'wollongong', u'bishop', u'welcom', u'pope', u'benedict']
[u'woman', u'die', u'lasset', u'highway', u'crash']
[u'woolford', u'cop', u'week']
[u'woolford', u'timmin', u'appear', u'judiciari']
[u'wool', u'industri', u'massiv', u'declin', u'report']
[u'wrangl', u'continu', u'saleyard', u'site']
[u'young', u'hawk', u'aim', u'high']
[u'kill', u'colombian', u'road', u'accid']
[u'offer', u'licenc']
[u'aborigin', u'communiti', u'welcom', u'work', u'parti']
[u'trap', u'turkish', u'explos']
[u'accus', u'drug', u'smuggler', u'await', u'charg']
[u'accus', u'heroin', u'smuggler', u'take', u'bali', u'hospit']
[u'govt', u'look', u'roll', u'ncas', u'plan', u'power']
[u'actor', u'expect', u'immedi', u'feedback', u'broadcast']
[u'adelaid', u'verg', u'hous', u'suppli']
[u'examin', u'bali', u'accus', u'claim']
[u'airbus', u'test', u'flight', u'day']
[u'allawi', u'escap', u'assassin', u'attempt']
[u'amazonian', u'ant', u'tortur', u'rack', u'kill', u'prey']
[u'arm', u'abduct', u'philippin']
[u'ash', u'ticket', u'run']
[u'australian', u'secur', u'worker', u'kill', u'baghdad']
[u'australia', u'start', u'qualifi']
[u'author', u'consid', u'water', u'option']
[u'award', u'win', u'technolog', u'prove', u'cost', u'river']
[u'bali', u'accus', u'claim', u'famili', u'threaten']
[u'bali', u'await', u'charg']
[u'beachley', u'beat', u'fiji', u'decid']
[u'affleck', u'jennif', u'garner', u'engag', u'report']
[u'benedictxvicom', u'owner', u'vow', u'porn', u'gambl']
[u'biologist', u'surviv', u'second', u'bear', u'attack']
[u'bomb', u'blast', u'wound', u'isra', u'soldier', u'despit', u'truce']
[u'boswel', u'crook', u'respect', u'ail']
[u'brazil', u'offer', u'asylum', u'oust', u'ecuadorean', u'presid']
[u'brown', u'desper', u'lion', u'return']
[u'brown', u'desper', u'help', u'ail', u'lion']
[u'build', u'firm', u'owe', u'creditor']
[u'build', u'halt', u'toxin', u'hous', u'site']
[u'burma', u'defi', u'call', u'relinquish', u'asean', u'chairmanship']
[u'crash', u'kill', u'vietnames', u'veteran']
[u'communiti', u'rural', u'colleg']
[u'probe', u'wheat', u'claim']
[u'canberra', u'compani', u'win', u'navi', u'engin', u'contract']
[u'capello', u'upbeat', u'juve', u'titl', u'setback']
[u'carr', u'deni', u'properti', u'invest', u'slow']
[u'carter', u'holt', u'harvey', u'profit', u'slip', u'slight']
[u'cervic', u'cancer', u'virus', u'reactiv', u'studi']
[u'child', u'killer', u'tri', u'stop', u'air', u'documentari']
[u'china', u'harm', u'fruit', u'grower']
[u'china', u'like', u'spearhead', u'clean', u'coal', u'endeavour']
[u'chopper', u'owner', u'reject', u'debt', u'claim']
[u'church', u'abus', u'victim', u'million']
[u'citi', u'council', u'acquir', u'defenc', u'land', u'cheapli']
[u'pledg', u'tougher', u'penalti', u'offend']
[u'club', u'share', u'prestigi', u'state', u'award']
[u'controversi', u'flyer', u'score', u'polit', u'point']
[u'coonabarabran', u'expans']
[u'coron', u'rule', u'whistleblow', u'die', u'natur', u'caus']
[u'costello', u'savag', u'busi', u'comment']
[u'cost', u'power', u'surg', u'week']
[u'council', u'delay', u'park', u'decis']
[u'council', u'join', u'firewe', u'fight']
[u'council', u'lack', u'fund', u'maintain', u'wall']
[u'council', u'look', u'poki', u'number']
[u'council', u'look', u'action', u'nazi', u'flag']
[u'council', u'reject', u'consult', u'retail', u'develop']
[u'council', u'reject', u'help', u'remov', u'asbesto']
[u'council', u'reject', u'woodland', u'site', u'station']
[u'council', u'prepar', u'water', u'shortag']
[u'council', u'warn', u'rat', u'increas', u'altern']
[u'coupl', u'tie', u'chair', u'tobacco', u'farm', u'raid']
[u'court', u'find', u'damag', u'payout', u'mental']
[u'court', u'hear', u'lesion', u'occur', u'death', u'prison']
[u'court', u'hear', u'post', u'offic', u'thief', u'steal']
[u'court', u'tell', u'aborigin', u'death', u'custodi', u'proper']
[u'court', u'tell', u'accus', u'gangland', u'boss', u'trial']
[u'free', u'surgeri', u'reduc', u'pain']
[u'dalrympl', u'expans', u'start']
[u'delay', u'hospit', u'facelift', u'agenda']
[u'demand', u'expect', u'drop', u'home']
[u'design', u'boycott', u'wont', u'affect', u'wool', u'export', u'industri']
[u'doctor', u'urg', u'listen', u'famili', u'concern']
[u'dozen', u'fear', u'dead', u'indian', u'train', u'crash']
[u'earth', u'move', u'gippsland']
[u'ebay', u'profit', u'beat', u'estim']
[u'ecuadorean', u'leader', u'whereabout', u'unknown']
[u'edenhop', u'aim', u'cash']
[u'electr', u'system', u'hold', u'summer', u'heat', u'mickel']
[u'email', u'audit', u'reveal', u'offic', u'porn', u'collect']
[u'expert', u'odd', u'bush', u'beetl', u'tribut']
[u'transport', u'minist', u'join', u'board']
[u'famili', u'recal', u'near', u'death']
[u'famili', u'remov', u'nazi', u'flag']
[u'farina', u'orsatti', u'kiss']
[u'farmer', u'stock', u'water', u'worri']
[u'fatal', u'shoot', u'prompt', u'counsel', u'offer']
[u'feder', u'govern', u'grant', u'investig']
[u'firefight', u'come', u'mock', u'rescu', u'exercis']
[u'flourid', u'dead', u'water']
[u'foolish', u'mallah', u'jail', u'threat']
[u'forc', u'book', u'mitchel']
[u'labor', u'charg', u'corrupt', u'briberi']
[u'foster', u'extend', u'southcorp']
[u'foster', u'tip', u'boost', u'southcorp', u'offer']
[u'foul', u'mouth', u'mooney', u'thompson']
[u'fund', u'secur', u'chopper', u'nurs']
[u'glider', u'crash', u'investig']
[u'golf', u'club', u'seek', u'council', u'leas', u'talk']
[u'govt', u'commit', u'train', u'pay', u'age', u'care', u'worker']
[u'govt', u'seek', u'regul', u'west', u'goldfield', u'flight']
[u'greater', u'hume', u'mayor', u'die', u'unexpect']
[u'har', u'club', u'urg', u'fight', u'race', u'meet']
[u'health', u'commiss', u'hear', u'bundaberg', u'complaint']
[u'health', u'dept', u'issu', u'swan', u'river', u'warn']
[u'hervey', u'look', u'lure', u'busi']
[u'hitman', u'hatton', u'arrow', u'tszyu']
[u'hop', u'pope', u'consid', u'mackillop']
[u'howard', u'end', u'japan', u'visit', u'expo', u'trip']
[u'hunter', u'portrait', u'win', u'packer', u'prize']
[u'hunter', u'portrait', u'win', u'pack', u'prize']
[u'hussey', u'steadi', u'nottinghamshir']
[u'indigen', u'council', u'look', u'meet', u'vanston']
[u'indigen', u'nomine', u'contest', u'arnhem']
[u'injur', u'riewoldt', u'fool']
[u'show', u'melbourn', u'flight']
[u'investig', u'show', u'raaf', u'asbesto', u'scare']
[u'irrig', u'ask', u'donat', u'unus', u'water']
[u'jackson', u'father', u'deni', u'famili', u'rift']
[u'japan', u'agre', u'feasibl', u'studi']
[u'japanes', u'parent', u'embrac', u'high', u'tech', u'child', u'safeti']
[u'jobless', u'scheme', u'provid', u'promis', u'result']
[u'jone', u'quit', u'warrior', u'franc']
[u'judg', u'warn', u'corbi', u'face', u'death']
[u'juri', u'find', u'wife', u'guilti', u'husband', u'murder']
[u'kalgoorli', u'solar', u'plan', u'heat']
[u'kangaroo', u'simpson', u'want', u'respect']
[u'kangaroo', u'pump', u'lockyer']
[u'kingaroy', u'get', u'ail', u'joh', u'famili']
[u'klitschko', u'success', u'oper']
[u'labor', u'demand', u'number', u'safeti', u'cut']
[u'labor', u'oppos', u'subsidi', u'chang']
[u'labor', u'oppos', u'revamp']
[u'local', u'disput', u'council', u'plan', u'move']
[u'jail', u'kill']
[u'face', u'court', u'drug']
[u'manufactur', u'rubbish', u'pont', u'claim']
[u'child', u'pornographi', u'imag', u'avoid', u'jail']
[u'market', u'despit', u'late', u'recoveri']
[u'media', u'associ', u'surpris', u'seri']
[u'melbourn', u'hold', u'spain', u'trial']
[u'mental', u'patient', u'death', u'spark', u'hospit', u'review']
[u'miner', u'tap', u'gawler', u'craton', u'region', u'gold']
[u'minist', u'drink', u'drive', u'lead', u'fine', u'suspens']
[u'arrest', u'polic', u'probe', u'sydney', u'soccer', u'riot']
[u'citrus', u'canker']
[u'call', u'fluffi', u'asbesto', u'probe']
[u'call', u'nambour', u'polic', u'station']
[u'fight', u'drought', u'announc']
[u'nambucca', u'council', u'consid', u'rate', u'rise']
[u'nasa', u'delay', u'shuttl', u'launch']
[u'neighbour', u'flag', u'veteran']
[u'fellowship', u'boost', u'parkinson', u'research']
[u'oyster', u'speci', u'combat', u'parasit']
[u'secur', u'dubbo', u'airport']
[u'dead', u'iraq', u'chopper', u'down']
[u'jealousi', u'york', u'salari', u'sydney', u'boss']
[u'nurs', u'home', u'struggl', u'cope', u'disabl', u'youth']
[u'option', u'open', u'prioriti', u'pick', u'demetriou']
[u'palm', u'riot', u'committ', u'adjourn', u'outburst']
[u'panel', u'aim', u'boost', u'region', u'cancer', u'screen']
[u'patient', u'park', u'hospit']
[u'perth', u'gain', u'mobil', u'limb', u'attach']
[u'peski', u'carp', u'prove', u'elus']
[u'phantom', u'piano', u'play', u'encor', u'dead', u'pianist']
[u'acknowledg', u'iraq', u'mission', u'endang', u'troop']
[u'foreshadow', u'earn', u'drop']
[u'warn', u'troop', u'risk', u'iraq']
[u'polic', u'hope', u'renew', u'crime', u'stopper']
[u'polic', u'probe', u'fatal', u'truck', u'crash']
[u'polic', u'probe', u'water', u'theft']
[u'polic', u'raid', u'cannabi']
[u'polic', u'urg', u'friend', u'look']
[u'pollock', u'unlik', u'play', u'test']
[u'pont', u'cricket']
[u'pope', u'benedict', u'retain', u'vatican', u'administr']
[u'pope', u'benedict', u'elect', u'landslid', u'report']
[u'port', u'hedland', u'alcohol', u'restrict', u'remain']
[u'port', u'oper', u'share', u'increas', u'disput']
[u'power', u'geelong', u'particip', u'anzac', u'servic']
[u'prais', u'industri', u'perform']
[u'preliminari', u'falconio', u'case', u'hear', u'begin']
[u'premis', u'raid', u'internet', u'pill', u'ring', u'investig']
[u'prison', u'offic', u'testifi', u'death', u'custodi', u'trial']
[u'probe', u'continu', u'hardwar', u'store', u'blaze']
[u'prosecutor', u'seek', u'life', u'sentenc', u'corbi']
[u'prosecutor', u'want', u'life', u'sentenc', u'corbi']
[u'public', u'invit', u'discuss', u'power', u'woe']
[u'queen', u'elizabeth', u'celebr', u'birthday', u'quiet']
[u'rapist', u'win', u'appeal', u'indefinit', u'jail', u'term']
[u'red', u'hang', u'mcmeniman']
[u'riewoldt', u'desper', u'field']
[u'roger', u'target', u'tour']
[u'rooney', u'slap', u'claim']
[u'paper', u'prove', u'popular']
[u'welcom', u'move', u'extend', u'game']
[u'ryle', u'anzac', u'test']
[u'ryle', u'tran', u'tasman', u'test']
[u'paint', u'includ', u'corpor', u'auction']
[u'schu', u'discuss', u'ferrari', u'contract', u'extens']
[u'scotland', u'futur', u'line', u'william']
[u'scott', u'take', u'earli', u'lead', u'play', u'suspend', u'china']
[u'king', u'victim', u'farewel']
[u'secur', u'fit', u'worker', u'share']
[u'senat', u'committe', u'hear', u'reform']
[u'shipyard', u'upgrad', u'depend', u'defenc', u'contract']
[u'singh', u'elect', u'hall', u'fame']
[u'spain', u'fear', u'exil', u'african', u'politician']
[u'state', u'offer', u'inadequ', u'properti', u'council']
[u'student', u'parent', u'approv', u'school', u'sniffer', u'dog']
[u'swimmer', u'urg', u'avoid', u'theft']
[u'tasmania', u'commend', u'learn']
[u'tendulkar', u'play', u'tsunami', u'benefit']
[u'terror', u'hold', u'road', u'sharon']
[u'timmin', u'plead', u'guilti', u'charg', u'downgrad']
[u'tourism', u'board', u'cut', u'member']
[u'tour', u'oper', u'want', u'swim', u'allow', u'twin', u'fall']
[u'townsvill', u'hostel', u'get', u'safeti', u'approv']
[u'troop', u'kill', u'seven', u'aceh', u'rebel']
[u'face', u'court', u'murder']
[u'court', u'rule', u'resuscit', u'babi']
[u'union', u'continu', u'crane', u'disput', u'talk']
[u'union', u'warn', u'cancel', u'plane', u'safeti', u'check']
[u'unpaid', u'wag', u'recoveri', u'help', u'break', u'hill', u'worker']
[u'militari', u'continu', u'work', u'recov', u'korean']
[u'wagga', u'wagga', u'bishop', u'welcom', u'pope']
[u'waratah', u'surpris', u'mackay', u'defect']
[u'veteran', u'receiv', u'changi', u'lock']
[u'whistleblow', u'death', u'suspici', u'coron']
[u'wide', u'burnett', u'repres', u'youth', u'council']
[u'wind', u'farm', u'plan', u'draw', u'posit', u'public', u'respons']
[u'woman', u'battl', u'miner', u'land']
[u'world', u'oldest', u'olympian', u'die', u'pakistan']
[u'youth', u'centr', u'spark', u'council', u'anglican', u'church', u'disput']
[u'zimbabw', u'opposit', u'challeng', u'poll', u'result']
[u'abalon', u'industri', u'eye', u'benefit']
[u'accc', u'review', u'local', u'regul']
[u'accus', u'terrorist', u'trial', u'spain']
[u'acid', u'killer', u'driver', u'jail', u'year']
[u'age', u'care', u'nurs', u'seek', u'pariti']
[u'adler', u'william', u'transfer', u'jail']
[u'airport', u'joke', u'cost', u'vanuatu']
[u'ammonia', u'leak', u'see', u'melbourn', u'factori', u'evacu']
[u'anderson', u'push', u'ethanol', u'research']
[u'anderson', u'upbeat', u'despit', u'tran', u'tasman', u'defeat']
[u'antarct', u'glacier', u'shrink', u'scientist']
[u'australia', u'keen', u'continu', u'progress']
[u'australia', u'lead', u'world', u'ecstasi']
[u'australian', u'pair', u'chase', u'singh', u'houston']
[u'australian', u'death', u'remind', u'iraq', u'danger']
[u'australia', u'ecstasi', u'capit', u'world']
[u'author', u'examin', u'evid', u'claim']
[u'author', u'defend', u'mandatori', u'energi', u'rat']
[u'bali', u'suspect', u'separ', u'death', u'threat', u'polic']
[u'barthez', u'cop', u'spit']
[u'beach', u'open', u'health', u'scare']
[u'bear', u'test', u'kiwi', u'central', u'contest']
[u'beatti', u'hit', u'carr', u'fuel', u'comment']
[u'beatti', u'delay', u'visit', u'bundaberg', u'patient']
[u'beatti', u'meet', u'bundaberg', u'doctor', u'victim']
[u'begin', u'oper', u'kembla']
[u'bigamist', u'act', u'love', u'wife']
[u'brogden', u'call', u'alleg', u'polic']
[u'brumbi', u'eye', u'shepherd']
[u'burmes', u'mother', u'breastfe', u'tiger', u'cub']
[u'bushfir', u'recoveri', u'stall']
[u'busker', u'head', u'coff', u'septemb']
[u'cabinet', u'newcom', u'appoint', u'tonga', u'act']
[u'govt', u'agenc', u'share', u'weed', u'control']
[u'canker', u'wont', u'stop', u'push', u'domest', u'market', u'access']
[u'cannabi', u'crop', u'state', u'forest']
[u'cat', u'attack', u'power']
[u'cat', u'turn', u'power', u'thriller']
[u'cattl', u'industri', u'seek', u'japanes', u'trade', u'guarante']
[u'cdep', u'chang', u'teen', u'job']
[u'chamber', u'back', u'nativ', u'titl', u'fund']
[u'chang', u'forc', u'port', u'geelong', u'clash']
[u'charg', u'lay', u'intern', u'money', u'launder']
[u'chelsea', u'celebr', u'hold', u'derbi', u'weekend']
[u'chelsea', u'spend', u'power', u'give', u'rival', u'heartburn']
[u'support', u'men', u'busi', u'program']
[u'coal', u'explos', u'turkey', u'kill']
[u'coal', u'termin', u'expans', u'falter']
[u'communiti', u'femal', u'doctor', u'visit']
[u'concuss', u'rule', u'hunt', u'shark', u'clash']
[u'coonan', u'repres', u'australia', u'papal', u'mass']
[u'corbi', u'reliev', u'penalti', u'submiss']
[u'corbi', u'take', u'comfort', u'judg', u'comment']
[u'council', u'back', u'retir', u'villag', u'plan']
[u'councillor', u'feel', u'earth', u'shake', u'japan']
[u'councillor', u'head', u'interst', u'saleyard']
[u'council', u'overturn', u'decis', u'veteran', u'outcri']
[u'coupl', u'unimpress', u'water', u'contamin', u'decis']
[u'court', u'order', u'trial', u'self', u'confess', u'cannib']
[u'cyclist', u'prepar', u'outback', u'chariti', u'trek']
[u'danc', u'shoe', u'stay', u'blast', u'cancel']
[u'death', u'toll', u'rise', u'zambian', u'blast']
[u'digger', u'final', u'lay', u'rest']
[u'diouf', u'court', u'spit', u'charg']
[u'discount', u'drug', u'wont', u'solv', u'blow', u'pharmacist']
[u'doctor', u'check', u'overnight', u'scare']
[u'downer', u'name', u'ambassador', u'vietnam', u'poland']
[u'drill', u'start', u'north', u'west', u'break', u'hill']
[u'driver', u'kill', u'sydney', u'polic', u'chase']
[u'driver', u'warn', u'anzac', u'holiday', u'crackdown']
[u'ecstasi', u'haul', u'accus', u'refus', u'bail']
[u'ecuador', u'presid', u'assum', u'control']
[u'eden', u'monaro', u'jobless', u'rate', u'drop']
[u'elect', u'candid', u'attack', u'shire', u'plan']
[u'eucalyptus', u'puzzl', u'botanist']
[u'fake', u'iraqi', u'abus', u'photo', u'charg', u'drop']
[u'falconio', u'murder', u'trial', u'delay']
[u'fall', u'tree', u'branch', u'hurt', u'sleep', u'camper']
[u'famili', u'welcom', u'coron', u'communic']
[u'famili', u'welcom', u'guilti', u'verdict', u'muswellbrook']
[u'farmer', u'want', u'guarante', u'japan']
[u'flag', u'rule', u'play', u'polit', u'educ', u'labor']
[u'footi', u'team', u'look', u'futur']
[u'forest', u'log', u'plan', u'spark', u'green', u'group', u'concern']
[u'foster', u'southcorp', u'takeov', u'talk', u'continu']
[u'foster', u'win', u'southcorp', u'revis', u'offer']
[u'arrest', u'ecstasi', u'contain']
[u'fourth', u'arrest', u'drug', u'crop']
[u'friend', u'sicknen', u'farmer', u'reaction', u'woman']
[u'fund', u'allow', u'month', u'public', u'transport']
[u'gall', u'cricket', u'stadium', u'rebuild']
[u'game', u'action']
[u'game', u'citi', u'leav', u'warn', u'ring']
[u'glacier', u'shrink', u'scientist']
[u'googl', u'report', u'fold', u'profit', u'jump']
[u'govt', u'probe', u'irrig', u'donat', u'plan']
[u'govt', u'urg', u'honour', u'educ', u'commit']
[u'green', u'expect', u'nhill', u'loss']
[u'greenspan', u'comment', u'lift', u'stock']
[u'green', u'seek', u'releas', u'advic', u'aerial']
[u'gulbi', u'lead', u'mexico']
[u'gunn', u'timber', u'suppli', u'short', u'list']
[u'hanoi', u'trip', u'earn', u'fonda', u'tobacco', u'spit']
[u'harmison', u'take', u'trick', u'durham']
[u'highland', u'hurrican']
[u'hill', u'wont', u'contest', u'arnhem', u'preselect']
[u'hindmarsh', u'swap', u'canberra', u'south', u'franc']
[u'hitman', u'jail', u'essendon', u'murder']
[u'wit', u'deni', u'govt', u'polic', u'statement', u'claim']
[u'hors', u'rider', u'converg', u'alpha', u'campdraft']
[u'hous', u'estat', u'get', u'green', u'light']
[u'illeg', u'drug', u'racket', u'target', u'region']
[u'indian', u'paratroop', u'bite', u'colleagu', u'nose']
[u'indigen', u'work', u'program', u'shake', u'plan']
[u'indonesian', u'fishermen', u'threaten', u'custom', u'offic']
[u'indonesian', u'polic', u'probe', u'second', u'ringlead', u'theori']
[u'industri', u'unrest', u'possibl', u'nurs', u'home', u'work']
[u'irresist', u'nadal', u'storm', u'barcelona']
[u'irrit', u'plane', u'tree', u'council', u'repriev']
[u'italian', u'titl', u'race', u'enter', u'final', u'straight']
[u'jackson', u'prosecut', u'deni', u'expert', u'wit']
[u'jail', u'redevelop', u'earn', u'prais']
[u'kangaroo', u'triumph', u'kiwi']
[u'killer', u'allow', u'view', u'murder', u'tap']
[u'killer', u'win', u'injunct', u'documentari']
[u'kiwi', u'ignor', u'whitewash', u'predict']
[u'koizumi', u'apologis', u'japan', u'wartim', u'record']
[u'landhold', u'consid', u'legal', u'action', u'irrig']
[u'landhold', u'urg', u'protest', u'devalu']
[u'lara', u'hold', u'wobbl', u'west', u'indi']
[u'liber', u'leader', u'urg', u'fight', u'state', u'base']
[u'lion', u'coach', u'encourag', u'local', u'footi', u'player']
[u'loan', u'scheme', u'creat', u'student', u'debt', u'labor']
[u'local', u'state', u'govt', u'tell', u'team', u'asbesto']
[u'lockyer', u'weak', u'link', u'defenc', u'say', u'bellami']
[u'long', u'weekend', u'driver', u'urg', u'stay', u'safe']
[u'arrest', u'frankston', u'stab']
[u'charg', u'bash', u'incid']
[u'charg', u'polic', u'foil', u'prison', u'drug']
[u'guilti', u'clear', u'nativ', u'veget']
[u'shoot', u'dead', u'melbourn', u'home']
[u'market', u'close', u'week', u'upbeat', u'note']
[u'mayor', u'hit', u'rate', u'rise', u'claim']
[u'mcgauran', u'pledg', u'support', u'sudanes']
[u'meet', u'debat', u'statehood', u'idea']
[u'melbourn', u'shoot', u'garag']
[u'miner', u'trap', u'turkish', u'blast']
[u'mine', u'process', u'list', u'environment']
[u'minist', u'play', u'doubl', u'digit', u'rate', u'rise']
[u'minist', u'stand', u'south', u'east', u'auslink', u'fund', u'snub']
[u'mous', u'plagu', u'threaten', u'properti']
[u'mugab', u'rap', u'summit', u'address']
[u'netherland', u'report', u'human', u'case']
[u'council', u'overturn', u'fluorid', u'plan']
[u'breakthrough', u'miss', u'woman', u'case']
[u'chang', u'expect', u'newspap', u'takeov']
[u'feel', u'petrol', u'tax', u'impact']
[u'surviv', u'fall', u'cliff']
[u'improv', u'counter', u'terror', u'prepared']
[u'interest', u'troubl', u'airlin']
[u'kid', u'access', u'internet', u'porn', u'studi']
[u'opposit', u'doubt', u'expand', u'health', u'inquiri']
[u'oversea', u'doctor', u'defend']
[u'pair', u'jail', u'friend', u'vicious', u'stab', u'murder']
[u'palm', u'hear', u'tell', u'accus', u'ringlead', u'didnt']
[u'patient', u'wait', u'anymor']
[u'pest', u'control', u'prove', u'success']
[u'investig', u'senior', u'offic']
[u'plan', u'schoolgirl', u'killer', u'parol']
[u'plan', u'forum', u'short', u'councillor']
[u'plan', u'thomson', u'river', u'cruis']
[u'plan', u'bora', u'ring', u'preserv']
[u'polic', u'appeal', u'crash', u'wit']
[u'polic', u'busi', u'tackl', u'domest', u'violenc']
[u'polic', u'honour', u'croc', u'attack', u'rescu']
[u'polic', u'hunt', u'golf', u'club', u'arm', u'bandit']
[u'policeman', u'charg', u'drug', u'traffic']
[u'polic', u'glider', u'crash', u'victim']
[u'polic', u'search', u'car', u'pursuit']
[u'polic', u'search', u'child', u'assault']
[u'polic', u'seek', u'public', u'help', u'miss']
[u'polic', u'shire', u'help', u'form', u'communiti', u'safeti', u'plan']
[u'polic', u'crack', u'driver', u'long', u'weekend']
[u'polic', u'spray', u'contain', u'knife', u'wield', u'woman']
[u'pope', u'want', u'serv', u'honour']
[u'plate', u'driver', u'die', u'highway', u'crash']
[u'public', u'urg', u'attend', u'local', u'anzac', u'servic']
[u'race', u'board', u'fear', u'bet', u'exchang', u'gambl']
[u'raider', u'sign', u'disgrac', u'knight']
[u'rail', u'line', u'reopen', u'temporarili']
[u'red', u'lose', u'mcmeniman', u'shark', u'clash']
[u'report', u'warn', u'increas', u'dodgi', u'hostel']
[u'research', u'put', u'daili', u'darfur', u'toll']
[u'resid', u'unhappi', u'youth', u'centr', u'plan']
[u'richmond', u'clinic', u'nurs', u'lift', u'work', u'ban']
[u'rijkaard', u'rise', u'real', u'bait']
[u'hope', u'unit', u'deal']
[u'ruddock', u'kick', u'start', u'indonesian', u'prison', u'treati']
[u'russia', u'brother', u'attempt', u'indian', u'ocean', u'rowboat']
[u'schooli', u'untap', u'market', u'keech']
[u'scott', u'set', u'pace', u'china']
[u'secur', u'firm', u'mourn', u'death', u'australian', u'iraq']
[u'senat', u'pull', u'plug', u'internet', u'hunter']
[u'shakespear', u'portrait', u'turn', u'fake']
[u'shake', u'plan', u'busi', u'chamber']
[u'sheedi', u'say', u'anzac', u'clash', u'reward', u'success']
[u'shiit', u'mosqu', u'bomb', u'kill']
[u'ship', u'crew', u'member', u'hurt', u'blast']
[u'shire', u'hit', u'department', u'duplic']
[u'shop', u'centr', u'propon', u'back', u'council', u'decis']
[u'singapor', u'airlin', u'hike', u'fuel', u'surcharg']
[u'cling', u'life']
[u'joh', u'heart', u'tick']
[u'small', u'busi', u'war', u'northern', u'expo']
[u'smoker', u'right', u'know', u'cigarett', u'content']
[u'smoke', u'ban', u'playground']
[u'solicitor', u'believ', u'death', u'custodi', u'photo']
[u'solomon', u'danger', u'fail', u'faze', u'judici', u'figur']
[u'spanish', u'approv', u'marriag']
[u'sudanes', u'govt', u'name', u'condemn']
[u'tabl', u'grape', u'bodi', u'urg', u'help', u'grower']
[u'tafe', u'plan', u'caus', u'controversi']
[u'encourag', u'short', u'term', u'park', u'invest']
[u'teacher', u'vote', u'disrupt', u'school']
[u'teacher', u'vote', u'govt', u'offer']
[u'tenni', u'success', u'delhi']
[u'todd', u'clear', u'violent', u'conduct']
[u'tourism', u'bodi', u'oppos', u'plan']
[u'tourism', u'grant', u'approv', u'prove', u'tough']
[u'trainer', u'fin', u'hors', u'disqualifi', u'posit', u'swab']
[u'truck', u'firm', u'wast', u'dump', u'convoy', u'protest']
[u'bomb', u'attack', u'shiit', u'mosqu']
[u'uefa', u'adopt', u'home', u'grow', u'polici']
[u'want', u'passeng', u'name']
[u'vandal', u'attack', u'gunnedah', u'school']
[u'virgin', u'mari', u'wall', u'stain', u'draw', u'faith']
[u'visit', u'aussi', u'say', u'gallipoli', u'roadwork']
[u'wast', u'depot', u'plan', u'continu']
[u'town', u'wait', u'memori']
[u'watch', u'rice', u'warn', u'belarus']
[u'woman', u'allow', u'march', u'dog', u'hobart']
[u'wool', u'industri', u'reject', u'cruelti', u'claim']
[u'digger', u'buri', u'franc']
[u'accus', u'moussaoui', u'plead', u'guilti']
[u'agassi', u'haa', u'knock', u'houston']
[u'alleg', u'heroin', u'smuggler', u'say', u'famili', u'threaten']
[u'answer', u'seek', u'copi', u'murder', u'victim', u'video']
[u'anzac', u'cove', u'road', u'open']
[u'aussi', u'cole', u'share', u'lead', u'houston']
[u'australian', u'sentenc', u'death', u'vietnam', u'report']
[u'australia', u'face', u'china', u'play']
[u'bali', u'accus', u'say', u'famili', u'threaten']
[u'bass', u'carp', u'control', u'penrith', u'lake']
[u'beatti', u'accus', u'hospit', u'stunt']
[u'berlusconi', u'ask', u'form', u'govern']
[u'brave', u'bronco', u'shark']
[u'bush', u'name', u'marin', u'offic']
[u'bomb', u'kill', u'iraq']
[u'cat', u'turn', u'power', u'thriller']
[u'command', u'say', u'soldier', u'concern']
[u'costello', u'immatur', u'refshaug', u'say']
[u'cowboy', u'chanc', u'beat', u'panther']
[u'custom', u'offic', u'prais', u'arm', u'stand']
[u'cut', u'loom', u'budget', u'go', u'deficit']
[u'darci', u'lead', u'bulldog', u'stun', u'victori']
[u'care', u'appear', u'prevent', u'child', u'cancer']
[u'mourn', u'zambian', u'factori', u'blast', u'victim']
[u'demon', u'triumph', u'swan']
[u'depos', u'ecuadorean', u'leader', u'question', u'ouster']
[u'deputi', u'commission', u'appoint', u'inquiri']
[u'despair', u'british', u'serial', u'killer', u'suicid']
[u'docker', u'blue']
[u'drink', u'driver', u'nab', u'overnight', u'blitz']
[u'eel', u'strong', u'tiger']
[u'ellison', u'pledg', u'stand', u'death', u'penalti']
[u'timor', u'refus', u'call', u'step']
[u'labor', u'grassbi', u'die']
[u'premier', u'die']
[u'freeman', u'famili', u'year', u'debt']
[u'grant', u'join', u'bulldog', u'club']
[u'group', u'aim', u'revitalis', u'memori', u'tree']
[u'hawk', u'look', u'maintain', u'momentum']
[u'discuss', u'pont']
[u'indian', u'truck', u'crash', u'kill']
[u'indigen', u'cancer', u'rat', u'blame', u'poor', u'health', u'care']
[u'industri', u'fear', u'horticultur', u'loss']
[u'injur', u'kewel', u'miss', u'confeder']
[u'injur', u'sing', u'miss', u'week']
[u'inquiri', u'possibl', u'mcgee', u'case']
[u'insect', u'beelin', u'freedom']
[u'iran', u'want', u'part', u'rover', u'carmak']
[u'increas', u'scrutini']
[u'jone', u'cling', u'sprint', u'dream']
[u'korea', u'hold', u'high', u'level', u'talk', u'jakarta']
[u'malaysian', u'call', u'aust', u'sign', u'aggress']
[u'kill', u'light', u'plane', u'crash']
[u'mehrten', u'claim', u'point', u'record', u'crusad', u'tame']
[u'meningococc', u'claim', u'teenag', u'life']
[u'milit', u'warn', u'aust', u'troop', u'leav', u'iraqi', u'unharm']
[u'mobil', u'phone', u'prank', u'catch', u'man', u'head']
[u'seek', u'cabomba', u'weed']
[u'tabcorp', u'hold', u'free', u'onlin', u'game', u'licenc']
[u'deni', u'respons', u'anzac', u'cove', u'road', u'work']
[u'polic', u'bust', u'forger']
[u'polic', u'stand']
[u'polic', u'seek', u'report', u'assault']
[u'polic', u'seek', u'hold', u'brisban', u'video', u'store']
[u'pope', u'thank', u'journalist']
[u'popul', u'econom', u'growth', u'senat', u'say']
[u'protea', u'charg', u'barbado']
[u'red', u'tune', u'defeat', u'shark']
[u'reluct', u'shoe', u'bomb', u'plotter', u'jail']
[u'resili', u'swan', u'dee']
[u'roo', u'beat', u'gallant', u'hawk']
[u'rspca', u'welcom', u'duck', u'quail', u'hunt']
[u'scott', u'shoot', u'leader', u'beij']
[u'scott', u'increas', u'lead', u'beij']
[u'seminar', u'tackl', u'gift', u'children', u'need']
[u'die']
[u'die', u'age']
[u'joh', u'famili', u'maintain', u'bedsid', u'vigil']
[u'southcorp', u'takeov', u'threaten', u'job']
[u'stradivari', u'violin', u'fetch', u'record', u'auction', u'price']
[u'superfin', u'wool', u'bale', u'fetch', u'price']
[u'telstra', u'profit', u'concern', u'number']
[u'tennant', u'creek', u'search']
[u'charg', u'scream', u'theft']
[u'polic', u'face', u'close', u'hear']
[u'trade', u'hand', u'risk', u'invest']
[u'turkey', u'throw', u'secur', u'cordon', u'anzac', u'cove']
[u'general', u'lose', u'command', u'ghraib', u'abus']
[u'seek', u'death', u'penalti', u'moussaoui']
[u'vatican', u'spain', u'spar', u'marriag']
[u'ask', u'aquarium', u'plant']
[u'wall', u'street', u'take', u'stock', u'surg']
[u'water', u'assessor', u'join', u'tsunami', u'relief', u'effort']
[u'whitlam', u'govt', u'minist', u'grassbi', u'die']
[u'woman', u'arrest', u'wendi', u'chilli', u'finger', u'case']
[u'train', u'camp', u'heritag', u'list']
[u'milan', u'thrash', u'parma']
[u'airport', u'concern', u'secur', u'card', u'cost']
[u'angola', u'critic', u'stage', u'marburg', u'battl']
[u'annan', u'press', u'burma', u'junta', u'leader', u'democraci']
[u'archaeologist', u'warn', u'tomb', u'raid', u'rife', u'asia']
[u'armenia', u'demand', u'turkey', u'acknowledg', u'genocid']
[u'australia', u'miss']
[u'bali', u'accus', u'famili', u'threaten']
[u'bali', u'suspect', u'claim', u'choic', u'smuggl', u'heroin']
[u'bayern', u'munich', u'close', u'titl']
[u'beatti', u'confid', u'bundaberg', u'inquiri', u'result']
[u'benedict', u'inaugur', u'pope']
[u'berlusconi', u'announc', u'administr']
[u'blue', u'comeback', u'stun', u'stormer']
[u'bomb', u'kill', u'soldier', u'sailor', u'iraq']
[u'build', u'industri', u'look', u'migrant', u'women']
[u'bulldog', u'hang', u'defeat', u'gallant', u'knight']
[u'bull', u'final', u'hop', u'aliv']
[u'carr', u'remain', u'tight', u'lip', u'inquiri']
[u'carr', u'urg', u'polic', u'probe', u'specul']
[u'carr', u'urg', u'public', u'judg', u'offic']
[u'cole', u'share', u'houston', u'lead', u'ahead', u'final', u'round']
[u'costello', u'play', u'spend', u'expect']
[u'costello', u'seek', u'valu', u'money', u'treatment']
[u'darwin', u'polic', u'stage', u'anti', u'social', u'behaviour', u'clampdown']
[u'villier', u'lead', u'protea', u'total', u'barbado']
[u'doubl', u'suicid', u'bomb', u'tikrit', u'kill', u'seven']
[u'driver', u'throw', u'weight']
[u'drought', u'blame', u'creepi', u'crawli', u'come', u'indoor']
[u'ecuador', u'presid', u'leav', u'countri']
[u'everton', u'snatch', u'draw', u'stay', u'champion', u'leagu']
[u'explod', u'toad', u'baffl', u'expert']
[u'govt', u'urg', u'qualiti', u'control', u'oversea', u'doctor']
[u'ferrari', u'suppli', u'engin', u'sauber']
[u'crew', u'attack', u'fight', u'blaze']
[u'children', u'nepal', u'bomb', u'blast']
[u'flood', u'chines', u'coal', u'trap', u'report']
[u'journalist', u'contest', u'arnhem', u'seat']
[u'fraudster', u'sell', u'indian', u'hous', u'websit']
[u'govt', u'abandon', u'park']
[u'govt', u'name', u'funer', u'date']
[u'govt', u'stop', u'hunt', u'game', u'reserv']
[u'grand', u'arme', u'elvstroem', u'unsuccess', u'hong', u'kong']
[u'grassbi', u'give', u'state', u'funer']
[u'howard', u'attend', u'nation', u'servic']
[u'howard', u'turkish', u'discuss', u'gallipoli', u'roadwork']
[u'ask', u'japan', u'reflect', u'histori']
[u'impress', u'eagl', u'outclass', u'lion']
[u'iran', u'determin', u'resum', u'uranium', u'enrich']
[u'katherin', u'cultur', u'precinct', u'await', u'feder', u'cash']
[u'lib', u'law', u'label', u'absurd']
[u'life', u'save', u'surgeri', u'wait', u'patient', u'tell']
[u'london', u'olymp', u'suffer', u'setback']
[u'charg', u'attempt', u'murder', u'offic']
[u'court', u'step', u'children', u'death']
[u'martin', u'face', u'defam', u'action']
[u'middlesbrough', u'thump', u'west', u'brom']
[u'mourinho', u'say', u'chelsea', u'readi', u'titl']
[u'mourner', u'light', u'candl']
[u'urg', u'doctor', u'support', u'veteran']
[u'nalbandian', u'seed', u'munich']
[u'korea', u'strengthen', u'nuclear', u'deterr']
[u'north', u'south', u'korea', u'meet', u'jakarta']
[u'norwich', u'cling', u'premiership']
[u'offic', u'dead', u'melbourn', u'shoot']
[u'offic', u'draw', u'alic', u'spring', u'mele']
[u'oscar', u'win', u'british', u'actor', u'john', u'mill', u'die']
[u'palac', u'upset', u'liverpool']
[u'palestinian', u'leader', u'reshuffl', u'secur', u'chief']
[u'plastic', u'factori', u'prompt', u'health', u'concern']
[u'plastic', u'supplier', u'assess', u'effect', u'warehous']
[u'polic', u'appeal', u'calm', u'children', u'death']
[u'polic', u'servic', u'uniform', u'confisc']
[u'polic', u'investig', u'offic', u'shoot', u'death']
[u'polic', u'mourn', u'offic', u'death']
[u'polic', u'shake', u'offic', u'fatal', u'shoot']
[u'polic', u'warn', u'fals', u'weapon', u'claim']
[u'pope', u'benedict', u'instal', u'head', u'cathol']
[u'prison', u'prepar', u'anzac', u'memori', u'sit']
[u'prison', u'reform', u'group', u'call', u'drug', u'rehab', u'servic']
[u'properti', u'tycoon', u'threat', u'pathet', u'ploy', u'govt', u'say']
[u'clinch', u'dutch', u'titl']
[u'real', u'snatch', u'villar']
[u'right', u'watchdog', u'demand', u'tortur', u'probe']
[u'roddick', u'face', u'grosjean', u'houston', u'final']
[u'romanian', u'report', u'iraq', u'hostag', u'releas']
[u'rover', u'citi', u'draw']
[u'saint', u'tiger', u'win']
[u'scott', u'sight', u'victori', u'beij']
[u'scott', u'victori', u'beij']
[u'eagl', u'trounc', u'rabbitoh']
[u'secur', u'tighten', u'pope', u'inaugur']
[u'joh', u'civil', u'right', u'legaci', u'condemn']
[u'stanhop', u'pay', u'tribut', u'grassbi']
[u'storm', u'thunder', u'past', u'raider']
[u'student', u'union', u'warn', u'fee', u'local', u'music']
[u'need', u'kill', u'swan', u'river', u'bacteria']
[u'survey', u'highlight', u'drug', u'crime', u'link']
[u'tasmanian', u'town', u'ralli', u'support', u'corbi']
[u'tate', u'injuri', u'taint', u'bronco']
[u'tight', u'secur', u'ahead', u'pope', u'inaugur']
[u'tribut', u'flow']
[u'turkey', u'ban', u'haka', u'gallipoli']
[u'forc', u'detain', u'helicopt', u'down', u'suspect']
[u'polic', u'review', u'safeti', u'procedur']
[u'villa', u'miss', u'bolton']
[u'wine', u'maker', u'feel', u'mix', u'southcorp', u'takeov']
[u'kill', u'twin', u'baghdad', u'blast']
[u'chines', u'miner', u'trap', u'flood']
[u'govt', u'pour', u'cold', u'water', u'call']
[u'adelaid', u'factori', u'oper']
[u'airport', u'head', u'say', u'cost', u'unrealist']
[u'anzac', u'cove', u'draw', u'huge', u'crowd']
[u'anzac', u'cove', u'road', u'reaction', u'exagger']
[u'anzac', u'crowd', u'break', u'record', u'brisban']
[u'anzac', u'mark', u'central', u'west']
[u'anzac', u'wider', u'mean', u'governor']
[u'anzac', u'take', u'special', u'signific', u'darwin']
[u'anzac', u'hill', u'swamp', u'dawn', u'servic']
[u'anzac', u'join', u'commemor']
[u'anzac', u'parad', u'draw', u'enthusiast', u'crowd']
[u'anzac', u'forg', u'legend']
[u'anzac', u'spirit', u'aliv', u'mackay']
[u'anzac', u'spirit', u'high', u'port', u'lincoln']
[u'anzac', u'rememb', u'thousand']
[u'anzac', u'rememb', u'port', u'moresbi']
[u'anzac', u'rememb', u'anthem']
[u'archaeologist', u'gallipoli', u'medic', u'staff', u'ship']
[u'armenian', u'rememb', u'year', u'kill']
[u'armstrong', u'struggl', u'georgia']
[u'aussi', u'gerran', u'line', u'tour', u'franc', u'spot']
[u'author', u'seek', u'water', u'fee', u'explan']
[u'axum', u'obelisk', u'complet', u'return', u'journey']
[u'bali', u'smuggler', u'catch', u'hand']
[u'barcelona', u'bite', u'malaga', u'rout']
[u'beatti', u'outlin', u'hospit', u'inquiri', u'term']
[u'bell', u'ring', u'honour', u'anzac']
[u'bendigo', u'firm', u'win', u'classroom', u'contract']
[u'bendigo', u'resid', u'rememb', u'fall', u'dawn']
[u'crowd', u'flock', u'hobart', u'dawn', u'servic']
[u'bigger', u'crowd', u'attend', u'coff', u'harbour', u'march']
[u'march', u'visitor', u'number', u'gold', u'coast', u'airport']
[u'blair', u'face', u'pressur', u'iraq', u'polici']
[u'bomber', u'claim', u'sixth', u'anzac']
[u'brack', u'promis', u'investig', u'offic']
[u'brisban', u'commemor', u'dead']
[u'busi', u'warn', u'anzac', u'trade', u'restrict']
[u'cadel', u'fifth', u'vino', u'fire', u'tour', u'warn']
[u'better', u'ballarat', u'veget', u'plan']
[u'boost', u'local', u'pregnanc', u'health', u'care']
[u'call', u'patrol', u'review', u'wake', u'polic', u'shoot']
[u'call', u'grow', u'simpson', u'award']
[u'campaign', u'promot', u'safeti', u'children']
[u'cape', u'york', u'communiti', u'pay', u'respect', u'anzac']
[u'capsicum', u'spray', u'fight', u'weapon']
[u'crash', u'victim', u'succumb', u'injuri']
[u'celtic', u'huge', u'step', u'titl', u'ibrox']
[u'children', u'turn', u'surfer', u'paradis', u'anzac']
[u'claim', u'refuge', u'send', u'christma', u'island']
[u'costello', u'accus', u'play', u'propaganda']
[u'council', u'plan', u'memori', u'grassbi']
[u'counsellor', u'head', u'town', u'death', u'scandal']
[u'coupl', u'face', u'court', u'polic', u'assault']
[u'crowd', u'gather', u'pub', u'tradit']
[u'crowd', u'rememb', u'digger', u'dawn', u'servic']
[u'crown', u'princess', u'mari', u'pregnant']
[u'dawn', u'servic', u'attract', u'crowd', u'rockhampton']
[u'dawn', u'servic', u'honour', u'gallipoli', u'dead']
[u'dawn', u'vigil', u'honour', u'death', u'railway', u'pow']
[u'death', u'toll', u'rise', u'japan', u'train', u'crash']
[u'decis', u'mill', u'worri']
[u'devast', u'nadal', u'win', u'fourth', u'titl', u'year']
[u'disabl', u'servic', u'seek', u'fund']
[u'owner', u'march', u'order']
[u'downer', u'feel', u'rout', u'sign', u'asean', u'treati']
[u'dozen', u'injur', u'japanes', u'train', u'derail']
[u'dozen', u'kill', u'train', u'smash', u'build']
[u'driver', u'remind', u'easi', u'road']
[u'driver', u'urg', u'care', u'anzac', u'road', u'toll', u'hit']
[u'drought', u'forc', u'pest', u'insid']
[u'elton', u'john', u'marri', u'partner', u'windsor', u'wed']
[u'fear', u'air', u'cdep', u'scheme', u'chang']
[u'forc', u'restaur', u'evacu']
[u'fischer', u'call', u'monument', u'honour', u'hero']
[u'injur', u'kabul', u'runway', u'accid']
[u'forb', u'offic', u'gallipoli', u'servic']
[u'premier', u'pay', u'tribut', u'good', u'friend']
[u'foster', u'takeov', u'result', u'loss']
[u'detain', u'iraq', u'helicopt', u'crash']
[u'injur', u'highway', u'crash']
[u'reserv', u'news', u'month', u'away']
[u'govt', u'consid', u'option', u'tackl', u'antisoci', u'woe']
[u'govt', u'region', u'spend', u'boost', u'aim', u'lift', u'tourism']
[u'govt', u'urg', u'sign', u'feder', u'train', u'deal']
[u'govt', u'warn', u'limit', u'treatment']
[u'head', u'brillianc', u'give', u'dragon', u'rooster', u'scalp']
[u'high', u'tech', u'airborn', u'magnet', u'help', u'diamond']
[u'hundr', u'stop', u'honour', u'anzac', u'spirit']
[u'hunter', u'resid', u'turn', u'commemor', u'anzac']
[u'injuri', u'wheel', u'drive', u'hors', u'accid']
[u'interact', u'memori', u'plan', u'bronhil']
[u'intern', u'servic', u'commemor', u'anzac']
[u'iraqi', u'polic', u'detain', u'reuter', u'cameraman']
[u'iraq', u'suicid', u'bomb', u'kill']
[u'israel', u'presid', u'weizman', u'die', u'age']
[u'japanes', u'coalit', u'win', u'elect']
[u'joker', u'fin', u'fals', u'weapon', u'claim']
[u'jone', u'call', u'calm', u'amid', u'forc', u'recruit', u'raid']
[u'kerin', u'call', u'region', u'road', u'fund']
[u'labor', u'attack', u'govt', u'anzac', u'cove', u'road']
[u'labour', u'hire', u'firm', u'secur', u'telstra', u'contract']
[u'labour', u'shortag', u'prolong', u'drought', u'recoveri']
[u'larg', u'crowd', u'adelaid', u'honour', u'anzac']
[u'chang', u'help', u'save', u'prison', u'payout']
[u'say', u'mcgee', u'late', u'breath', u'test']
[u'loyal', u'anzac', u'follow', u'attend', u'dawn', u'servic']
[u'maguir', u'shrug', u'sicken', u'clash', u'skull']
[u'charg', u'dead', u'camp']
[u'charg', u'teacher', u'murder']
[u'charg', u'murder', u'alic', u'spring']
[u'detain', u'hundr', u'child', u'alleg']
[u'massiv', u'passeng', u'plane', u'flight']
[u'mayor', u'back', u'north', u'beach', u'bather', u'pavilion', u'revamp']
[u'mcrae', u'signal', u'rabbitoh', u'cull']
[u'melbourn', u'commemor', u'dead']
[u'memori', u'honour', u'battl', u'britain', u'hero']
[u'michael', u'palin', u'hang', u'travel', u'shoe']
[u'milit', u'afghan', u'soldier', u'kill', u'battl']
[u'milosev', u'crime', u'trial', u'resum', u'health']
[u'miner', u'probe', u'nickel', u'deposit', u'signific']
[u'youth', u'attend', u'anzac', u'servic']
[u'moroney', u'refus', u'discuss', u'inquiri', u'complaint']
[u'moruya', u'hospit', u'renal', u'servic']
[u'mossi', u'diseas', u'threat', u'investig']
[u'nedv', u'keep', u'juve', u'level', u'milan']
[u'inspir', u'south', u'africa', u'seri', u'victori']
[u'committe', u'develop', u'strateg', u'plan']
[u'twist']
[u'chief', u'set', u'sight', u'supermarket']
[u'korea', u'treat', u'sanction', u'nuclear', u'program']
[u'decis', u'emerg', u'servic']
[u'plan', u'canberra', u'airport', u'public']
[u'north', u'east', u'victoria', u'join', u'anzac', u'commemor']
[u'northern', u'rememb', u'anzac', u'spirit']
[u'nurs', u'board', u'welcom', u'practition', u'trial']
[u'rememb', u'anzac', u'dawn', u'servic']
[u'price', u'rise', u'comment', u'saudi', u'arabia']
[u'oldest', u'surviv', u'veteran', u'lead', u'perth', u'parad']
[u'opposit', u'accus', u'blair', u'lie', u'iraq']
[u'opposit', u'pressur', u'govt', u'reduc', u'class', u'size']
[u'oust', u'ecuadorian', u'leader', u'go', u'exil']
[u'panel', u'meet', u'palm', u'island', u'help', u'improv']
[u'park', u'master', u'plan', u'includ', u'tourism', u'upgrad']
[u'penni', u'farth', u'cyclist', u'look', u'forward', u'challeng']
[u'peopl', u'warn', u'stay', u'swan', u'river']
[u'plan', u'moot', u'northern', u'rail', u'link']
[u'polic', u'await', u'post', u'mortem', u'camperdown', u'bodi']
[u'polic', u'chief', u'refus', u'confirm', u'bulldog', u'phone']
[u'polic', u'death', u'spark', u'call', u'belt', u'review']
[u'polic', u'tough', u'teen', u'drinker']
[u'polic', u'question', u'crossbow', u'shoot']
[u'polic', u'video', u'store', u'bandit', u'respons']
[u'polic', u'seek', u'wit', u'alic', u'death']
[u'polic', u'search', u'fatal', u'crash', u'motorcycl']
[u'polic', u'worri', u'public', u'heed', u'drink', u'drive']
[u'pope', u'benedict', u'inaugur']
[u'pope', u'point', u'progress', u'dialogu', u'muslim']
[u'post', u'mortem', u'derbi', u'children']
[u'firm', u'distanc', u'hospit', u'inquiri']
[u'public', u'damag', u'accus']
[u'public', u'urg', u'attend', u'communiti', u'cabinet', u'meet']
[u'health', u'urg', u'doctor', u'scandal']
[u'ralli', u'toxic', u'dump', u'plan']
[u'record', u'crowd', u'gather', u'sydney', u'anzac']
[u'record', u'crowd', u'oldest', u'anzac', u'servic']
[u'record', u'crowd', u'honour', u'anzac']
[u'record', u'crowd', u'turn', u'perth', u'dawn', u'servic']
[u'record', u'number', u'expect', u'anzac', u'servic']
[u'report', u'claim', u'girl', u'line']
[u'report', u'crocodil', u'sight']
[u'riverina', u'reflect', u'anzac']
[u'roddick', u'claim', u'clay', u'court', u'crown']
[u'rooney', u'wonder', u'goal', u'spark', u'unit', u'fight']
[u'russia', u'semi', u'showdown']
[u'santo', u'clinch', u'power', u'deal']
[u'outback', u'rememb', u'anzac']
[u'scott', u'want', u'greg', u'norman']
[u'servic', u'draw', u'record', u'crowd']
[u'servic', u'honour', u'dead']
[u'shaun', u'question', u'lion', u'heart']
[u'shearer', u'join', u'hall', u'fame']
[u'singh', u'make', u'histori', u'houston']
[u'kill', u'aceh', u'clash']
[u'korea', u'warn', u'neighbour', u'nuclear', u'test']
[u'south', u'african', u'jail', u'life', u'bali', u'heroin']
[u'space', u'station', u'astronaut', u'snail', u'return', u'earth']
[u'space', u'station', u'crew', u'snail', u'return', u'earth']
[u'strong', u'competit', u'miner', u'explor', u'licenc']
[u'struggl', u'lion', u'downward', u'cycl', u'matthew']
[u'student', u'oppos', u'higher', u'hec', u'fee']
[u'sunshin', u'coast', u'celebr', u'anzac', u'tradit']
[u'superfin', u'wool', u'fetch', u'kilo']
[u'synagogu', u'clean', u'racist', u'graffiti', u'attack']
[u'tasmanian', u'turn', u'dawn', u'servic']
[u'tourism', u'group', u'join', u'forc']
[u'teen', u'accus', u'highway', u'speed', u'face', u'court']
[u'teen', u'shoot', u'death', u'consid', u'accident']
[u'terri', u'name', u'english', u'player', u'year']
[u'thousand', u'applaud', u'anzac', u'marcher']
[u'thousand', u'attend', u'wide', u'anzac', u'servic']
[u'thousand', u'gather', u'memori', u'rememb', u'dead']
[u'thousand', u'gather', u'darwin', u'anzac', u'servic']
[u'thousand', u'respect', u'anzac', u'veteran']
[u'thousand', u'turn', u'darwin', u'anzac', u'march']
[u'thousand', u'turn', u'gallipoli', u'dawn', u'servic']
[u'thousand', u'earli', u'celebr', u'anzac']
[u'thousand', u'watch', u'anzac', u'marcher', u'nation']
[u'hurt', u'coast', u'crash']
[u'togo', u'poll', u'end', u'dead', u'clash']
[u'tourist', u'train', u'plan', u'spark', u'debat']
[u'town', u'swell', u'gallipoli', u'commemor']
[u'trader', u'ask', u'close', u'anzac', u'march']
[u'tredrea', u'dismiss', u'talk', u'umpir', u'bias']
[u'tribut', u'pay', u'cooee']
[u'troop', u'kuwait', u'rememb', u'anzac']
[u'troop', u'mark', u'anzac', u'desert']
[u'troop', u'mark', u'anzac', u'iraq']
[u'truck', u'driver', u'die', u'highway', u'accid']
[u'tsunami', u'reduc', u'conflict', u'indonesia', u'aceh']
[u'turkish', u'veteran', u'adelaid', u'dawn']
[u'team', u'lebanon', u'syrian', u'troop', u'leav']
[u'incarcer', u'rate', u'climb']
[u'push', u'john', u'simpson']
[u'vermeulen', u'move', u'world', u'championship']
[u'veteran', u'encourag', u'march', u'townsvill']
[u'veteran', u'rank', u'thin']
[u'govt', u'urg', u'bring', u'bounti']
[u'vietnam', u'vet', u'reunit', u'dawn', u'servic']
[u'memorabilia', u'seek', u'bush']
[u'yilgarn', u'mine', u'form', u'joint', u'ventur', u'near', u'kalgoorli']
[u'young', u'pretend', u'alonso', u'beat', u'champion']
[u'youngster', u'keen', u'join', u'anzac', u'tradit']
[u'youth', u'stand', u'vigil', u'memori']
[u'accus', u'child', u'killer', u'face', u'relat', u'wrath']
[u'activist', u'plan', u'funer', u'picket']
[u'aerial', u'cull', u'target', u'feral', u'camel']
[u'age', u'care', u'worker', u'warn', u'give', u'evid']
[u'ord', u'dip', u'mark']
[u'heavyweight', u'ralli', u'oppos', u'voluntari']
[u'victorian', u'polic', u'offic', u'die', u'duti']
[u'applebi', u'readi', u'targa', u'challeng']
[u'arsenal', u'player', u'releas', u'bail']
[u'athlet', u'lose', u'battl']
[u'aust', u'vanguard', u'arriv', u'muthanna']
[u'baa', u'bark', u'forc', u'curfew', u'saleyard']
[u'bali', u'drug', u'accus', u'coerc', u'lawyer', u'say']
[u'barrist', u'lead', u'bundaberg', u'hospit', u'inquiri']
[u'bathurst', u'council', u'accus', u'govt', u'cost', u'shift']
[u'beatti', u'fume', u'funer', u'picket', u'plan']
[u'beatti', u'gear', u'death', u'inquiri']
[u'beij', u'lift', u'scott', u'sixth']
[u'crowd', u'swell', u'anzac', u'number', u'goldfield']
[u'break', u'hill', u'anzac', u'tradit']
[u'bronco', u'welcom', u'trio']
[u'busi', u'confid', u'slow', u'eas', u'rat', u'pressur']
[u'busi', u'will', u'contribut', u'civic', u'upgrad']
[u'cabl', u'beach', u'stinger', u'test', u'near']
[u'meet', u'discuss', u'bowl', u'club', u'sale']
[u'upper', u'hous', u'chang', u'boost', u'region']
[u'delay', u'fluorid', u'water', u'suppli']
[u'casa', u'warn', u'pilot', u'rural', u'power', u'line', u'danger']
[u'cathol', u'church', u'end', u'talk', u'east', u'timor', u'religi']
[u'cattl', u'produc', u'fear', u'japan', u'snap', u'tariff']
[u'cessnock', u'asbesto', u'widespread']
[u'chelsea', u'wait', u'titl', u'arsenal', u'beat']
[u'claim', u'princ', u'harri', u'risk', u'pursu']
[u'employ', u'controversi', u'consult']
[u'coal', u'project', u'nation', u'biggest']
[u'colleagu', u'tribut', u'offic']
[u'communiti', u'quiz', u'studi', u'need']
[u'costa', u'open', u'road', u'miss', u'link']
[u'council', u'await', u'port', u'campbel', u'appeal', u'detail']
[u'council', u'consid', u'support', u'hull', u'telstra', u'plan']
[u'councillor', u'consid', u'speed', u'limit', u'reduct']
[u'council', u'decid', u'rate', u'rise']
[u'council', u'share', u'emerg', u'road', u'fund']
[u'council', u'solar', u'energi', u'project']
[u'council', u'heritag', u'list', u'site']
[u'court', u'decis']
[u'death', u'toll', u'rise', u'japan', u'train', u'crash']
[u'deputi', u'commission', u'testifi', u'death', u'custodi']
[u'derbi', u'wharf', u'facelift']
[u'develop', u'doesnt', u'threaten', u'koala', u'mayor', u'say']
[u'downer', u'caution', u'east', u'timor', u'boundari']
[u'death', u'inquiri', u'jumbl', u'opposit']
[u'egan', u'impress', u'alic', u'anzac', u'turnout']
[u'enthusiasm', u'anzac', u'event', u'north', u'west']
[u'approv', u'sanction', u'anti', u'dump']
[u'kapooka', u'command', u'beat', u'iraq']
[u'taxman', u'fight', u'fraud', u'charg']
[u'father', u'admit', u'spear', u'kill']
[u'finch', u'send', u'danger', u'preced', u'stuart']
[u'anzac', u'bring', u'closur']
[u'flintoff', u'stay', u'target', u'ash', u'comeback']
[u'flood', u'hit', u'villag', u'ethiopia']
[u'forb', u'withdraw', u'art', u'outwest']
[u'forc', u'announc', u'waratah', u'sign']
[u'furneaux', u'group', u'island', u'market']
[u'call', u'simpson', u'award']
[u'loss', u'unlik', u'prosail', u'administr']
[u'geraldton', u'famili', u'feud', u'intensifi']
[u'girl', u'custodi', u'attack', u'student']
[u'global', u'bowler', u'year', u'win', u'local', u'open']
[u'govt', u'hail', u'broadband', u'scheme', u'success']
[u'govt', u'move', u'increas', u'afford', u'hous']
[u'govt', u'talk', u'flexibus', u'servic']
[u'govt', u'urg', u'releas', u'inquiri', u'detail']
[u'govt', u'wast', u'servic', u'rich']
[u'grape', u'produc', u'buyer']
[u'green', u'group', u'fight', u'kakadu', u'uranium', u'plan']
[u'harrison', u'face', u'racist', u'say', u'gregan']
[u'hart', u'back', u'lion', u'final']
[u'health', u'scheme', u'target', u'kid', u'behaviour']
[u'henri', u'doubt', u'final']
[u'high', u'court', u'decis', u'expect', u'affect', u'young']
[u'hird', u'johnson', u'avoid', u'suspens']
[u'hird', u'johnson', u'wait', u'panel', u'verdict']
[u'hmas', u'emkanimblaem', u'come', u'home']
[u'hoon', u'spark', u'brigad', u'fals', u'alarm', u'anger']
[u'howard', u'meet', u'turkish', u'roadwork']
[u'hyde', u'sidelin', u'fractur', u'skull']
[u'illiteraci', u'spark', u'pictur', u'afghan', u'candid']
[u'saviour', u'say', u'brown']
[u'increas', u'relianc', u'farmer', u'credit', u'armstrong']
[u'iraq', u'urg', u'patienc', u'administr']
[u'cut', u'wont', u'save', u'money', u'labor', u'warn']
[u'jackson', u'wife', u'testifi', u'child', u'trial']
[u'jail', u'popul', u'increas', u'forc', u'prison']
[u'japan', u'polic', u'raid', u'train', u'oper', u'offic']
[u'jolli', u'opt', u'trial', u'tribun']
[u'judg', u'wont', u'consid', u'prison', u'capac', u'societi']
[u'keelti', u'warn', u'bali', u'trial', u'media']
[u'labor', u'back', u'sign', u'asean', u'treati']
[u'labor', u'good', u'shape', u'presid', u'say']
[u'landhold', u'urg', u'reject', u'valuat']
[u'syrian', u'troop', u'leav', u'lebanon']
[u'latham', u'play', u'match', u'red']
[u'laycock', u'earn', u'rise', u'star', u'nomin']
[u'legal', u'argument', u'falconio', u'case', u'adjourn']
[u'lennon', u'call', u'rule', u'cabinet', u'secretari']
[u'liverpool', u'press', u'champ', u'leagu', u'special']
[u'local', u'branch', u'fill', u'execut', u'vacanc']
[u'log', u'protest', u'underway']
[u'long', u'weekend', u'drink', u'drive', u'worri', u'polic']
[u'macklin', u'deni', u'frontbench', u'shake']
[u'main', u'websit', u'hacker', u'schoolboy', u'watchdog']
[u'hold', u'death', u'threat', u'polic']
[u'face', u'court', u'assault', u'charg']
[u'marathon', u'explor', u'north', u'uranium', u'potenti']
[u'mayor', u'beat', u'yeppoon', u'freight', u'centr']
[u'mayor', u'voic', u'breweri', u'trade', u'hour', u'opposit']
[u'mayor', u'worri', u'govt', u'bypass', u'council', u'plan']
[u'meat', u'processor', u'look', u'attract', u'school', u'leaver']
[u'meet', u'seek', u'discuss', u'burril', u'lake', u'closur']
[u'microsoft', u'preview', u'secur', u'window']
[u'minist', u'seek', u'probe', u'doctor', u'resign']
[u'minist', u'schooli', u'comment', u'consid', u'naiv']
[u'joh', u'nation', u'presid']
[u'mount', u'rushmor', u'monument', u'seek', u'monash']
[u'air', u'concern', u'drink', u'unruli', u'miner']
[u'mundin', u'titl', u'fight']
[u'murder', u'trigger', u'region', u'polic', u'station', u'fear']
[u'naturopath', u'qualif', u'unverifi', u'inquest']
[u'zone', u'result', u'audit']
[u'airport', u'shuttl', u'trial', u'plan']
[u'measur', u'tackl', u'grog']
[u'school', u'cater', u'popul', u'boom']
[u'stage', u'kyoto', u'protocol', u'weak', u'minist', u'say']
[u'compo', u'pow', u'tortur', u'iraq']
[u'haka', u'anzac', u'servic', u'turkey']
[u'norwegian', u'fleet', u'kill', u'whale']
[u'aborigin', u'consid', u'polit', u'parti']
[u'hop', u'progress', u'timor', u'talk']
[u'remot', u'teacher', u'discuss', u'offer']
[u'price', u'fall', u'saudi', u'arabian', u'comment']
[u'vote', u'valu', u'expect', u'spark', u'fieri', u'debat']
[u'pari', u'print', u'seal', u'kiss']
[u'parol', u'board', u'clear', u'child', u'abus', u'liabil']
[u'investig', u'leak', u'phone', u'evid']
[u'pixi', u'skase', u'get', u'citizenship']
[u'polic', u'dont', u'consid', u'father', u'death', u'suspici']
[u'polic', u'helicopt', u'find', u'miss', u'bushwalk']
[u'polic', u'identifi', u'woman', u'kill', u'tsunami']
[u'polic', u'offic', u'kill', u'issu', u'traffic', u'ticket']
[u'polic', u'pleas', u'long', u'weekend', u'road', u'death']
[u'polic', u'raid', u'offic']
[u'polic', u'search', u'japan', u'train', u'crash', u'clue']
[u'polic', u'seek', u'lead', u'injur', u'case']
[u'pope', u'forget', u'elder', u'brother', u'say']
[u'popul', u'report', u'forc', u'hous', u'rethink']
[u'poverti', u'health', u'link', u'spotlight', u'workshop']
[u'pratt', u'advanc', u'estoril', u'dokic', u'look']
[u'premier', u'urg', u'reveal', u'polic', u'complaint']
[u'properti', u'expert', u'rat', u'hike']
[u'propos', u'heritag', u'list', u'spark', u'develop', u'fear']
[u'public', u'chanc', u'sign', u'condol', u'book']
[u'public', u'urg', u'attend', u'control', u'plan']
[u'public', u'warn', u'tough', u'water', u'polic']
[u'putin', u'make', u'democraci', u'prioriti']
[u'qanta', u'announc', u'canberra', u'servic']
[u'record', u'anzac', u'crowd', u'central']
[u'region', u'servic', u'fund', u'spotlight']
[u'rescuer', u'work', u'free', u'train', u'crash', u'survivor']
[u'resid', u'protest', u'marina', u'plan']
[u'ripper', u'vow', u'wont', u'buckl', u'costello', u'demand']
[u'royal', u'pregnanc', u'spark', u'danish', u'success', u'debat']
[u'rural', u'skill', u'opportun', u'student']
[u'cereal', u'grower', u'look', u'rain']
[u'saff', u'seek', u'southcorp', u'foster', u'safeguard']
[u'search', u'spark', u'bushwalk', u'precaut']
[u'selector', u'face', u'tough', u'decis']
[u'chang', u'sue', u'fianc', u'dump']
[u'shire', u'get', u'time', u'consid', u'power', u'station']
[u'shire', u'push', u'meet', u'water', u'minist']
[u'shoaib', u'take']
[u'skase', u'regain', u'citizenship']
[u'skill', u'summit', u'hunt', u'labour', u'shortag']
[u'skywest', u'feel', u'tender', u'pressur']
[u'sleep', u'judg', u'criticis', u'rape', u'trial', u'snooz']
[u'smith', u'origin', u'return']
[u'soldier', u'return', u'tsunami', u'relief', u'mission']
[u'somar', u'distanc', u'apolog', u'demand']
[u'special', u'train', u'announc', u'juvenil', u'justic']
[u'stayin', u'aliv', u'anger', u'prompt', u'gallipoli', u'music', u'rethink']
[u'struggl', u'scot', u'dump', u'william']
[u'student', u'union', u'advoc', u'afford', u'educ']
[u'surfer', u'prepar', u'hang', u'malibu', u'classic']
[u'syrian', u'troop', u'leav', u'lebanon']
[u'tabcorp', u'singapor', u'casino', u'project']
[u'taiwanes', u'opposit', u'leader', u'make', u'histor', u'china']
[u'takeov', u'creat', u'karadoc', u'wineri', u'uncertainti']
[u'tamworth', u'area', u'accid', u'free', u'long', u'weekend']
[u'tasmanian', u'releas', u'jail']
[u'tast', u'tasmania', u'festiv', u'risk']
[u'telco', u'profit', u'push', u'market', u'higher']
[u'togo', u'opposit', u'reject', u'poll', u'call', u'resist']
[u'togo', u'rival', u'pledg', u'uniti', u'govt', u'clash', u'continu']
[u'tourism', u'industri', u'berat', u'propos', u'chang']
[u'troop', u'return', u'home', u'tsunami', u'tour']
[u'belgian', u'releas', u'guantanamo']
[u'dead', u'wound', u'burma', u'market', u'blast']
[u'join', u'forc']
[u'union', u'await', u'teacher', u'offer', u'decis']
[u'union', u'deliv', u'westpac', u'deadlin']
[u'union', u'reject', u'funer', u'protest']
[u'union', u'urg', u'budget', u'apprenticeship', u'boost']
[u'union', u'warn', u'chang', u'impact']
[u'see', u'screen', u'act', u'cours']
[u'captur', u'afghan', u'drug', u'lord']
[u'clear', u'soldier', u'italian', u'agent', u'death']
[u'vandal', u'attack', u'welfar', u'agenc', u'prove', u'cost']
[u'vanuatu', u'ban', u'cash', u'payment', u'bride']
[u'veteran', u'group', u'furious']
[u'veteran', u'help', u'anzac', u'special']
[u'clear', u'villawood', u'pesticid', u'plant', u'clean']
[u'western', u'victorian', u'jobless', u'rate', u'rise']
[u'westpac', u'centr', u'worker', u'stop', u'work']
[u'whitak']
[u'wilko', u'name', u'england', u'churchil', u'squad']
[u'woman', u'accus', u'strangl', u'neighbour']
[u'woman', u'die', u'cabramatta', u'hous', u'blaze']
[u'women', u'remind', u'breast', u'check', u'visit']
[u'woodchipp', u'feel', u'abandon', u'govt']
[u'young', u'driver', u'catch', u'drink', u'drive', u'blitz']
[u'youth', u'anzac', u'spirit', u'live']
[u'zarqawi', u'escap', u'trap', u'report']
[u'steal', u'investor']
[u'restor', u'plan', u'perth', u'cathedr']
[u'budget', u'deficit', u'loom', u'portland', u'hospit']
[u'date', u'wind', u'power', u'project']
[u'cost', u'blowout', u'railway']
[u'abbott', u'defend', u'cutback', u'plan']
[u'odd', u'union', u'reform']
[u'accc', u'quiet', u'tobacco', u'case']
[u'accc', u'target', u'light', u'cigarett']
[u'accc', u'warn', u'telco', u'sport', u'right']
[u'speed', u'complaint', u'process']
[u'forc', u'chief', u'prais', u'tsunami', u'relief', u'effort']
[u'aldermen', u'tell', u'focus', u'follow', u'bite', u'claim']
[u'alleg', u'member', u'bali', u'place', u'suicid', u'watch']
[u'accus', u'costello', u'penni', u'pinch']
[u'ancestr', u'remain', u'return', u'yorta', u'yorta', u'elder']
[u'ancient', u'tomb', u'network', u'discov', u'carpark']
[u'anderson', u'deni', u'push', u'telstra', u'apolog']
[u'anderson', u'give', u'guarante', u'telstra', u'servic']
[u'anglican', u'minist', u'die']
[u'annan', u'await', u'report', u'syrian', u'pullout']
[u'prison', u'exchang', u'serv', u'sentenc']
[u'post', u'half', u'year', u'profit']
[u'aust', u'fish', u'boat', u'miss', u'seven', u'crew']
[u'author', u'plan', u'joh', u'funer']
[u'bail', u'refus', u'accus', u'murder', u'bank', u'robberi']
[u'bali', u'suspect', u'deni', u'fals', u'passport', u'alleg']
[u'beach', u'open', u'irukandji', u'sting']
[u'beatti', u'unveil', u'infrastructur', u'plan']
[u'beckham', u'nanni']
[u'boat', u'crew', u'like', u'help', u'vessel']
[u'breast', u'cancer', u'survivor', u'seek', u'dragon', u'boat', u'crew']
[u'brumbi', u'field', u'close', u'friend', u'halv']
[u'budget', u'unlik', u'includ', u'ballimor', u'town', u'water']
[u'busi', u'warn', u'thiev', u'short', u'chang']
[u'trobe', u'uni', u'financ']
[u'lion', u'sack', u'akermani']
[u'lion', u'sack', u'akermani', u'radio', u'gaff']
[u'parent', u'contribut', u'youth', u'self', u'harm']
[u'canberra', u'theatr', u'caption', u'shakespearean']
[u'canberra', u'higher', u'tech']
[u'carrara', u'host', u'friday', u'night', u'footi']
[u'carr', u'govt', u'infrastructur', u'plan', u'tatter', u'opposit']
[u'cityrail', u'probe', u'pram', u'incid']
[u'cityrail', u'bring', u'safeti', u'measur']
[u'comet', u'player', u'face', u'polic', u'charg']
[u'committe', u'promot', u'unsung', u'tourist', u'attract']
[u'communiti', u'concern', u'chang', u'wind', u'farm', u'plan']
[u'communiti', u'power', u'suppli', u'overhaul']
[u'communiti', u'project', u'fulli', u'cost']
[u'compani', u'environment', u'excel', u'award']
[u'complaint', u'delay', u'flexibus', u'defend']
[u'concern', u'rais', u'hospit', u'closur', u'consult']
[u'consum', u'group', u'hail', u'fine', u'cole']
[u'council', u'union', u'start', u'negoti']
[u'council', u'consid', u'civic', u'hall', u'option']
[u'council', u'defend', u'grazier', u'stock', u'rout', u'snub']
[u'council', u'union', u'support', u'funer', u'picket']
[u'council', u'play', u'asbesto', u'fear']
[u'council', u'figur', u'loan', u'repay']
[u'council', u'reject', u'critic', u'stay', u'wedderburn']
[u'council', u'reject', u'school', u'infrastructur', u'cost']
[u'council', u'threaten', u'withdraw', u'servic', u'fund']
[u'council', u'build', u'offshor', u'breakwat']
[u'court', u'convict', u'fiji', u'coup']
[u'court', u'rule', u'reinstat', u'worker', u'work']
[u'croc', u'reloc', u'mackay', u'come']
[u'danih', u'wari', u'docker']
[u'darwin', u'teacher', u'reject', u'offer']
[u'debat', u'rag', u'voluntari', u'student', u'union']
[u'defect', u'blair', u'fresh', u'poll', u'pressur']
[u'defenc', u'forc', u'recruit', u'pilbara']
[u'denmark', u'extend', u'mission', u'iraq']
[u'solv', u'year', u'serial', u'rapist', u'case']
[u'go', u'free', u'rip', u'child']
[u'domaszewicz', u'welcom', u'leski', u'inquest']
[u'doubt', u'linger', u'vanadium', u'reopen']
[u'dozen', u'timores', u'face', u'deport']
[u'consid', u'withdraw', u'william', u'murder', u'charg']
[u'dragonfli', u'studi', u'better', u'navig', u'clue']
[u'driver', u'cop', u'heavi', u'fine', u'seatbelt']
[u'drug', u'case', u'adjourn']
[u'elect', u'problem', u'spotlight', u'dalbi']
[u'elect', u'victori', u'prompt', u'togo', u'riot']
[u'engeri', u'plant', u'make', u'wave']
[u'reject', u'perth', u'quarri', u'approv']
[u'call', u'public', u'submiss', u'tuna', u'farm']
[u'errat', u'day', u'say', u'richo']
[u'escort', u'agenc', u'proprietor', u'give', u'wrong', u'sentenc']
[u'timor', u'reconsid', u'religi', u'educ']
[u'eurobodalla', u'rat', u'rise', u'percent']
[u'stanhop', u'staffer', u'plead', u'guilti', u'graffiti']
[u'farmer', u'ask', u'rural', u'ministri']
[u'farmer', u'fear', u'nino', u'loom']
[u'fevola', u'ban', u'match']
[u'fifa', u'boost', u'world', u'prize', u'money']
[u'finch', u'accept', u'match']
[u'fine', u'weather', u'spark', u'concern', u'winter', u'crop']
[u'arrest', u'anti', u'log', u'protest']
[u'aust', u'film', u'screen', u'cann']
[u'bundl']
[u'food', u'packag', u'combat', u'health', u'problem']
[u'footi', u'umpir', u'iraq', u'mission']
[u'forc', u'announc', u'sign']
[u'funer', u'friday', u'teen', u'shoot', u'victim']
[u'game', u'boss', u'hail', u'success', u'ticket', u'ballot']
[u'garden', u'dig', u'ancient', u'tool', u'treasur', u'trove']
[u'giant', u'airbus', u'take']
[u'giant', u'rhubarb', u'weed', u'infest', u'state']
[u'goonellabah', u'recognis', u'braveri']
[u'govern', u'fire', u'turk', u'genocid', u'claim']
[u'govt', u'deni', u'baxter', u'psychologist', u'unqualifi']
[u'govt', u'dept', u'consid', u'beach', u'restor', u'plan']
[u'govt', u'refus', u'reveal', u'stanc']
[u'govt', u'seek', u'public', u'hous', u'drive']
[u'govt', u'claim', u'leas', u'charg', u'windfal']
[u'govt', u'snub', u'council', u'land', u'acquisit']
[u'grape', u'grower', u'face', u'season']
[u'great', u'lake', u'council', u'seek', u'rate', u'rise', u'approv']
[u'greec', u'expect', u'continu', u'australian', u'support']
[u'green', u'bridg', u'construct', u'start']
[u'green', u'hutton', u'commemor', u'protest']
[u'guild', u'find', u'littl', u'rural', u'pharmaci', u'plan']
[u'health', u'safeti', u'inflationari', u'gillard']
[u'hobart', u'honour', u'errol', u'flynn', u'reserv']
[u'holiday', u'sustain', u'visitor', u'number', u'week']
[u'hospit', u'probe', u'wit', u'need', u'protect']
[u'howard', u'rule', u'ticket', u'gallipoli', u'servic']
[u'hungari', u'seek', u'extradit', u'perth']
[u'hydro', u'say', u'water', u'level', u'wont', u'affect', u'power', u'suppli']
[u'illeg', u'fish', u'blitz', u'wind']
[u'indigen', u'affair', u'ignor', u'fraser']
[u'indonesia', u'hose', u'talk', u'foreign', u'monitor']
[u'inflat', u'data', u'take', u'pressur', u'rat']
[u'infrastructur', u'plan', u'break', u'gold', u'coast']
[u'insur', u'resourc', u'push', u'market', u'lower']
[u'israel', u'probe', u'friend', u'death', u'soldier']
[u'japan', u'train', u'crash', u'toll', u'climb']
[u'cut', u'closur', u'help', u'boost', u'amcor', u'profit']
[u'judg', u'question', u'need', u'young', u'driver', u'matur']
[u'kangaroo', u'refus', u'gripe', u'adelaid', u'trip']
[u'karzai', u'flag', u'extend', u'afghanistan', u'mission']
[u'kimberley', u'clark', u'boast', u'record', u'quarter', u'profit']
[u'kurnel', u'sand', u'mine', u'propos', u'reject']
[u'laser', u'treatment', u'avail', u'royal', u'hobart']
[u'syrian', u'troop', u'leav', u'lebanon']
[u'lebanes', u'await', u'month', u'poll']
[u'liber', u'rift', u'emerg', u'moot', u'chang']
[u'librari', u'construct', u'go', u'schedul']
[u'lien', u'visit', u'seek', u'china', u'taiwan', u'stalem']
[u'light', u'wine', u'card']
[u'lion', u'accept', u'aka', u'apolog']
[u'luca', u'reveal', u'plan', u'star', u'war', u'seri']
[u'maliss', u'ban', u'miami', u'tantrum']
[u'charg', u'drug', u'raid']
[u'charg', u'policeman']
[u'pin', u'recov']
[u'mayor', u'see', u'grog']
[u'mayor', u'understand', u'disappoint', u'mountain']
[u'meal', u'wheel', u'bush', u'tucker', u'project', u'expand']
[u'meet', u'discuss', u'develop', u'aborigin', u'land']
[u'expans', u'depend', u'reduc', u'emiss']
[u'minist', u'reaffirm', u'waterfront', u'develop']
[u'miss', u'albani', u'woman', u'believ', u'murder']
[u'nation', u'form', u'telstra', u'sale', u'group']
[u'drug', u'offer', u'hope', u'breast', u'cancer', u'suffer']
[u'bali', u'accus', u'face', u'death', u'penalti']
[u'eiss', u'wind', u'farm']
[u'evid', u'scott', u'manhandl', u'wit']
[u'north', u'pole', u'expedit', u'break', u'world', u'record']
[u'true', u'villain', u'scientif', u'research', u'case']
[u'consid', u'tougher', u'penalti', u'violent', u'crime']
[u'protect', u'bodi']
[u'opposit', u'promis', u'increas', u'defenc', u'spend']
[u'price', u'fall', u'ahead', u'inventori', u'data']
[u'organ', u'farmer', u'vow', u'lock', u'basslink']
[u'outback', u'telescop', u'southern']
[u'accus', u'break', u'anzac', u'protect', u'promis']
[u'defend', u'anzac', u'pilgrim']
[u'polic', u'crack', u'drug', u'crime']
[u'polic', u'follow', u'lead', u'halvagi', u'murder']
[u'polic', u'search', u'woman', u'want', u'alleg', u'bank']
[u'polic', u'seek', u'death', u'bali']
[u'polic', u'seek', u'wit', u'policeman', u'death']
[u'polic', u'crack', u'rocki', u'youth']
[u'port', u'ban', u'extra', u'day', u'newman']
[u'primus', u'confid', u'power', u'track']
[u'public', u'right', u'hear', u'health', u'complaint']
[u'pump', u'continu', u'recov', u'leak', u'diesel']
[u'push', u'taxi', u'wheelchair', u'access']
[u'putin', u'visit', u'egypt', u'mubarak', u'talk']
[u'rate', u'rise', u'fear', u'eas']
[u'resid', u'ponder', u'asbesto', u'compo', u'option']
[u'review', u'order', u'communiti', u'correct', u'offic']
[u'erupt', u'cambridg', u'develop', u'project']
[u'sack', u'nepales', u'arrest']
[u'sack', u'nepales', u'hold', u'graft', u'charg']
[u'search', u'continu', u'arnhem', u'land', u'mysteri', u'boat']
[u'call', u'volunt']
[u'shark', u'attack', u'deckhand', u'trawler']
[u'sheedi', u'put', u'cupido', u'notic']
[u'smith', u'quit', u'repres', u'duti']
[u'state', u'wide', u'crackdown', u'illeg', u'park']
[u'surrog', u'mother', u'give', u'birth', u'quintuplet']
[u'targa', u'tasmania', u'head', u'launceston']
[u'tate', u'consid', u'surgeri', u'prolong', u'career']
[u'tennant', u'creek', u'week']
[u'thiev', u'steal', u'liber', u'laptop']
[u'togo', u'poll', u'violenc', u'leav', u'dead', u'hurt', u'hospit']
[u'tourism', u'number', u'boost', u'tweed']
[u'train', u'driver', u'plead', u'guilti', u'blood', u'test', u'refus']
[u'train', u'plough', u'lanka']
[u'trespass', u'flatten', u'histor', u'land', u'site', u'land']
[u'trucki', u'bridg', u'load', u'limit', u'remind']
[u'truck', u'stop', u'land', u'plan', u'move', u'ahead']
[u'turkey', u'ask', u'aust', u'join', u'gallipoli', u'construct']
[u'turkey', u'reject', u'gallipoli', u'heritag']
[u'belgian', u'guantanamo', u'detaine', u'charg']
[u'fear', u'return', u'darfur', u'scorch', u'earth', u'attack']
[u'disallow', u'intern', u'student']
[u'union', u'seek', u'answer', u'opposit', u'school']
[u'confirm', u'syrian', u'withdraw', u'lebanon']
[u'governor', u'approv', u'dead', u'forc']
[u'optimist', u'north', u'korea', u'nuclear', u'talk']
[u'urg', u'releas', u'terror', u'report', u'figur']
[u'vietnam', u'stage', u'event']
[u'visitor', u'centr', u'urg', u'reli', u'govt', u'fund']
[u'doubl', u'sever', u'redund']
[u'warm', u'weather', u'rais', u'fear', u'nino']
[u'wave', u'energi', u'plant', u'anchor', u'port', u'kembla']
[u'wheat', u'ship', u'limbo', u'amid', u'polit']
[u'william', u'want', u'field', u'leav', u'rugbi', u'leagu']
[u'wimbledon', u'prize', u'money', u'top', u'million']
[u'wollongong', u'council', u'join', u'provid', u'airport', u'fund']
[u'young', u'raider', u'strike']
[u'youth', u'crime']
[u'pull', u'controversi', u'documentari']
[u'adelaid', u'north', u'better', u'hospit', u'servic']
[u'airbus', u'project', u'herald']
[u'airlin', u'recruit', u'tourism', u'push']
[u'aluminium', u'giant', u'shed', u'job']
[u'hit', u'recruit', u'doctor', u'iraq']
[u'warn', u'medicar', u'wind']
[u'aust', u'join', u'zimbabw', u'human', u'right', u'commiss']
[u'australian', u'mark', u'tour', u'romandi']
[u'babi', u'shaker', u'fight', u'clear']
[u'bali', u'supplier', u'kill', u'shoot', u'polic']
[u'bali', u'polic', u'investig', u'fals', u'passport', u'claim']
[u'bali', u'suspect', u'relat', u'work', u'passport', u'offic']
[u'basketbal', u'chief', u'unveil', u'revamp', u'season']
[u'beazley', u'unfaz', u'latham', u'diari', u'talk']
[u'beckham', u'stun', u'nanni', u'claim']
[u'report', u'product', u'jump']
[u'bigamist', u'jail', u'tasmania']
[u'croc', u'farm', u'retir']
[u'blair', u'govt', u'releas', u'iraq', u'legal', u'advic']
[u'blair', u'attack', u'iraq', u'advic']
[u'blaze', u'break', u'lower', u'eyr', u'peninsula']
[u'boro', u'frustrat', u'magpi', u'stay', u'chase', u'europ']
[u'boyfriend', u'sentenc', u'year', u'jail', u'murder']
[u'breaker', u'mcisaac', u'join', u'western', u'forc']
[u'british', u'elect', u'linguist', u'minefield']
[u'bush', u'want', u'home', u'grow', u'energi']
[u'busi', u'competit', u'price']
[u'bypass', u'work', u'black', u'spot']
[u'peel', u'deviat', u'rush']
[u'canberra', u'resid', u'warn', u'vigil']
[u'carr', u'back', u'deputi', u'polic', u'chief', u'probe']
[u'issu', u'equip', u'warn']
[u'chariti', u'rider', u'struggl', u'cunnamulla']
[u'chelsea', u'silenc', u'anfield', u'jose', u'predict']
[u'china', u'interpret', u'hong', u'kong', u'constitut']
[u'chinatown', u'facelift', u'pleas', u'local']
[u'commonwealth', u'fuel', u'firm', u'blame', u'rise', u'petrol']
[u'commonwealth', u'refus', u'gambl', u'restrict']
[u'corbi', u'make', u'plea', u'judg']
[u'corbi', u'plead', u'freedom']
[u'corbi', u'plead', u'court']
[u'council', u'aim', u'secur', u'fund', u'child', u'care']
[u'council', u'announc', u'plan', u'balanc', u'futur']
[u'council', u'await', u'applic', u'diesel', u'plant']
[u'councillor', u'earli', u'releas']
[u'council', u'move', u'cultur', u'centr']
[u'council', u'restructur', u'take', u'account']
[u'council', u'seek', u'support', u'better', u'region']
[u'council', u'debat', u'develop', u'site', u'rezon']
[u'council', u'start', u'build', u'bungendor']
[u'council', u'urg', u'revis', u'tourism', u'rubberi', u'figur']
[u'countri', u'race', u'club', u'accus', u'state', u'bodi', u'fals']
[u'court', u'approv', u'tattersal', u'list']
[u'court', u'hear', u'begin', u'childcar', u'centr', u'crash']
[u'crackdown', u'urg', u'tough', u'troublesom', u'tenant']
[u'student', u'ralli', u'voluntari', u'union', u'fee']
[u'curtin', u'announc', u'hec', u'increas']
[u'cyclist', u'roll', u'cunnamulla', u'marathon']
[u'care', u'centr', u'tender', u'call', u'june']
[u'decis', u'loom', u'longwal', u'mine', u'green', u'impact']
[u'democrat', u'push', u'rise', u'threshold']
[u'depress', u'project', u'aim', u'help', u'recoveri']
[u'desalin', u'plant', u'decis', u'expect', u'year']
[u'dfat', u'probe', u'bali', u'passport', u'claim']
[u'dickenson', u'call', u'understand', u'council']
[u'doctor', u'leav', u'subdivis', u'plan']
[u'lover', u'skip', u'work', u'nurs', u'pet']
[u'domest', u'violenc', u'ralli', u'take', u'street']
[u'dont', u'write', u'say', u'lion', u'leppitsch']
[u'downer', u'unhappi', u'zimbabw', u'rejoin', u'right']
[u'call', u'lawyer', u'jail', u'kill']
[u'elder', u'give', u'bail', u'follow', u'alleg', u'abduct']
[u'elector', u'reform', u'threaten', u'liber', u'leader']
[u'back', u'wie', u'british', u'open', u'spot']
[u'employ', u'reform', u'workplac', u'safeti', u'rule']
[u'employ', u'health', u'safeti', u'rule', u'unfair']
[u'famili', u'confront', u'minist', u'workplac', u'death']
[u'famili', u'fabric', u'keep', u'sunday', u'shop']
[u'farmbi', u'stage', u'begin', u'soon']
[u'farm', u'debt', u'mount', u'drought', u'continu']
[u'farmer', u'fear', u'drought']
[u'farmer', u'welcom', u'cattl', u'duf', u'guilti', u'plea']
[u'ferguson', u'sinist', u'comment', u'draw']
[u'fire', u'continu', u'burn']
[u'flatley', u'clear', u'red']
[u'flintoff', u'flop', u'counti', u'return']
[u'forc', u'southern', u'iraq', u'begin', u'patrol']
[u'speaker', u'come', u'forward', u'assault']
[u'fund', u'woe', u'festiv']
[u'fund', u'servic', u'treat', u'post', u'natal']
[u'funer', u'firm', u'win', u'stand', u'vertic', u'burial']
[u'gatto', u'murder', u'trial', u'begin']
[u'genet', u'steroid', u'creat', u'sport', u'supermen']
[u'german', u'singer', u'hit', u'sour', u'note', u'eurovis', u'scandal']
[u'govt', u'plan', u'fund', u'region', u'shake']
[u'govt', u'feder', u'polic']
[u'govt', u'urg', u'rethink', u'green', u'educ', u'scheme', u'fund']
[u'green', u'seek', u'fiji', u'travel', u'warn']
[u'gunsynd', u'nomin', u'race', u'hall', u'fame']
[u'hampshir', u'spring', u'captain', u'warni', u'defenc']
[u'harbour', u'seafood', u'warn', u'remain']
[u'health', u'prioriti', u'studi', u'show']
[u'report', u'confirm', u'slow', u'hous', u'market']
[u'higher', u'infring', u'rate', u'drug', u'user']
[u'high', u'jink', u'nimbin', u'promis', u'mardi', u'grass']
[u'howard', u'face', u'revolt']
[u'howard', u'offens', u'budget', u'cut']
[u'hull', u'back', u'telstra', u'sale', u'talk']
[u'immigr', u'raid', u'net', u'illeg', u'worker']
[u'iraqi', u'parliament', u'approv', u'troubl', u'cabinet']
[u'jackson', u'wife', u'weep', u'star', u'trial']
[u'jam', u'rule', u'port']
[u'japan', u'train', u'crash', u'toll', u'reach']
[u'japan', u'train', u'crash', u'toll', u'reach']
[u'funer', u'picket', u'cancel']
[u'joli', u'pitt', u'beauti', u'peopl', u'list']
[u'king', u'face', u'middl', u'east', u'china', u'korea', u'champion']
[u'labor', u'warn', u'minimum', u'wage', u'threat']
[u'land', u'council', u'ask', u'think', u'land', u'deal']
[u'landhold', u'angri', u'plan']
[u'trobe', u'deni', u'campus', u'complaint']
[u'lawyer', u'back', u'parol', u'plan', u'murder']
[u'lgaq', u'offer', u'region', u'infrastructur', u'fund', u'pledg']
[u'liber', u'urg', u'cutback']
[u'liber', u'women', u'oppos', u'limit']
[u'librari', u'stand', u'googl']
[u'liverpool', u'chew', u'plan']
[u'liverpool', u'hold', u'chelsea', u'champion', u'leagu']
[u'local', u'input', u'help', u'protect', u'pilbara', u'natur']
[u'log', u'protest', u'continu']
[u'hold', u'servic', u'station', u'hammer']
[u'succumb', u'crash', u'injuri']
[u'march', u'hold', u'protest', u'hospit', u'closur']
[u'mcisaac', u'excit', u'perth']
[u'meatwork', u'blaze', u'racial', u'motiv']
[u'mental', u'benefit', u'social', u'polici', u'plan']
[u'middl', u'age', u'home', u'domin', u'small']
[u'mildura', u'fruit', u'compani', u'retir', u'retail', u'market']
[u'miseri', u'strike', u'australia', u'america', u'hope']
[u'miss', u'tourist']
[u'mobil', u'phone', u'problem', u'fix', u'telstra']
[u'launch', u'elector', u'crime', u'survey']
[u'push', u'telco', u'bush', u'author', u'telstra']
[u'urg', u'liber', u'report', u'hospit', u'complaint']
[u'want', u'contamin', u'school', u'roof', u'replac']
[u'muay', u'thai', u'better', u'jack', u'osbourn']
[u'murder', u'releas', u'parol']
[u'nation', u'seek', u'catch', u'chang']
[u'nation', u'want', u'solo', u'polic', u'review', u'hold']
[u'nelson', u'vow', u'press', u'student', u'union', u'chang']
[u'network', u'refus', u'critic', u'timor']
[u'newmont', u'secur', u'jaguar', u'zinc', u'copper', u'deal']
[u'orbit', u'road', u'halv', u'journey', u'premier']
[u'start', u'launceston', u'societi']
[u'water', u'ban', u'start']
[u'dead', u'militari', u'helicopt', u'crash']
[u'polic', u'return', u'work', u'probe', u'continu']
[u'nude', u'festiv', u'possibl', u'cabarita', u'beach']
[u'nurs', u'union', u'pursu', u'talk', u'privat', u'hospit']
[u'rat', u'hold']
[u'offici', u'beat', u'wagga', u'rugbi', u'leagu']
[u'price', u'continu', u'fall', u'suppli', u'worri', u'eas']
[u'come', u'bronco']
[u'year', u'amnesti', u'intern', u'blast']
[u'opera', u'hous', u'architectur', u'tragedi']
[u'orchardist', u'launch', u'legal', u'action', u'council']
[u'pacif', u'hydro', u'trade', u'halt', u'ahead', u'takeov', u'talk']
[u'parent', u'claim', u'timet', u'chang', u'compromis']
[u'plan', u'ahead', u'station']
[u'seek', u'balanc', u'cost']
[u'polic', u'expect', u'investor', u'lose', u'money']
[u'polic', u'farewel', u'murder', u'colleagu']
[u'polic', u'fear', u'miss', u'woman', u'murder']
[u'polic', u'comb', u'bushland', u'bodi']
[u'polic', u'union', u'voic', u'concern', u'offic']
[u'pont', u'let', u'keeper']
[u'port', u'arthur', u'anniversari', u'prompt', u'fresh', u'call']
[u'protest', u'zimbabw', u'rejoin', u'human', u'right']
[u'public', u'protest', u'fund']
[u'public', u'warn', u'rate', u'rise', u'inevit', u'govt']
[u'rail', u'deal', u'doubl', u'freight', u'adelaid']
[u'reagan', u'diari', u'publish']
[u'tape', u'delay', u'roadhous', u'reopen']
[u'resid', u'wont', u'bother', u'forward', u'view', u'say']
[u'resourc', u'drag', u'ord']
[u'revamp', u'plan', u'showground', u'site']
[u'riverland', u'resid', u'urg', u'boost', u'fruit', u'vegi']
[u'road', u'open', u'downsid']
[u'saint', u'riewoldt', u'sidelin']
[u'samaritan', u'public', u'hous', u'chang']
[u'scientist', u'studi', u'nino', u'impact', u'snowfal']
[u'secur', u'depend', u'stronger', u'tie', u'major']
[u'serb', u'general', u'plead', u'guilti', u'crime']
[u'shark', u'rift', u'profit', u'spend']
[u'shoalhaven', u'council', u'support', u'lake', u'entranc', u'push']
[u'silver', u'demand', u'resourc']
[u'singapor', u'hop', u'aust', u'join', u'east', u'asia', u'summit']
[u'slow', u'coach', u'india', u'take', u'time', u'wright']
[u'state', u'govt', u'lobbi', u'road', u'fund']
[u'stock', u'rout', u'disput', u'hold', u'pend', u'minist']
[u'stott', u'despoja', u'say', u'student', u'guinea', u'pig']
[u'student', u'ralli', u'voluntari', u'union']
[u'studi', u'show', u'environment', u'pollut', u'affect', u'sperm']
[u'support', u'grow', u'bat', u'coloni', u'evict']
[u'swan', u'river', u'declar', u'safe', u'swim']
[u'swan', u'appeal', u'jolli', u'suspens']
[u'sydney', u'level']
[u'poppi', u'product', u'boom']
[u'teacher', u'disput', u'go']
[u'teacher', u'union', u'reveal', u'lack', u'fund']
[u'teen', u'plead', u'guilti', u'kill', u'newborn', u'babi']
[u'tendulkar', u'defend', u'bat', u'approach']
[u'tenpin', u'centr', u'size', u'reduc', u'attract', u'investor']
[u'thiev', u'steal', u'lookout', u'binocular']
[u'thompson', u'call', u'account', u'umpir', u'approach']
[u'arrest', u'sydney', u'drive', u'shoot']
[u'court', u'sydney', u'drive', u'shoot']
[u'toenail', u'rule', u'hewitt', u'rome']
[u'togo', u'opposit', u'leader', u'claim', u'elect', u'victori']
[u'tourism', u'gather', u'focus', u'oversea', u'market']
[u'tourism', u'number', u'point', u'strong', u'growth']
[u'town', u'alert', u'firefight', u'battl', u'blaze']
[u'toyota', u'appeal', u'ralf', u'schumach', u'penalti']
[u'trade', u'hall', u'council', u'want', u'tough', u'work', u'safeti', u'law']
[u'turkey', u'invit', u'join', u'gallipoli']
[u'student', u'union']
[u'peacekeep', u'arriv', u'sudan']
[u'competitor', u'blame', u'iraq', u'wheat', u'woe']
[u'syring', u'leav', u'school', u'oval']
[u'sell', u'israel', u'bunker', u'buster', u'bomb']
[u'vail', u'wad', u'iraq', u'wheat']
[u'vandal', u'prompt', u'council', u'close', u'popular', u'picnic']
[u'verdict', u'yuko', u'founder', u'delay']
[u'vice', u'chancellor', u'speak', u'support', u'student']
[u'waratah', u'head', u'hous', u'pain']
[u'warn', u'sand', u'price', u'increas']
[u'welfar', u'group', u'social', u'polici', u'plan']
[u'wild', u'dog', u'catch', u'trap', u'program']
[u'wine', u'grape', u'grower', u'adopt', u'collabor', u'approach']
[u'wine', u'grower', u'look', u'oversea', u'market']
[u'wollondilli', u'council', u'seek', u'polic', u'boost']
[u'woman', u'jail', u'arrang', u'husband', u'murder']
[u'accus', u'paedophil', u'asset']
[u'adelaid', u'unit', u'step', u'leagu', u'prepar']
[u'african', u'doubl', u'peacekeep', u'forc', u'darfur']
[u'alic', u'spring', u'group', u'solar', u'citi']
[u'deni', u'howard', u'diminish', u'elect', u'chanc']
[u'appl', u'aim', u'bite', u'microsoft']
[u'atwal', u'take', u'orlean', u'lead']
[u'australia', u'tell', u'sign', u'treati', u'miss', u'summit']
[u'beazley', u'play', u'intern', u'critic']
[u'beckham', u'legal', u'case', u'nanni']
[u'bodi', u'bushland', u'boyfriend', u'charg']
[u'bomber', u'brace', u'brown', u'return']
[u'die', u'injur', u'hit', u'tree']
[u'brack', u'unveil', u'massiv', u'olymp', u'park', u'revamp']
[u'brisban', u'club', u'lock', u'begin']
[u'brown', u'boot', u'lion', u'spank', u'bomber']
[u'brumbi', u'blow', u'final', u'content']
[u'brumbi', u'crash', u'super', u'content']
[u'bulldog', u'bite', u'eel']
[u'bulldog', u'bite', u'eel']
[u'bull', u'thriller', u'stay', u'super', u'titl', u'hunt']
[u'busi', u'get', u'canberra', u'redevelop']
[u'cambodia', u'welcom', u'khmer', u'roug', u'trial', u'fund']
[u'citrus', u'grower', u'anger', u'market', u'access']
[u'commonwealth', u'vow', u'deliv', u'forestri', u'promis']
[u'cowboy', u'rid', u'high', u'down', u'rooster']
[u'crow', u'roo', u'unbeaten']
[u'docker', u'shrug', u'road', u'woe']
[u'winter', u'spanish', u'farmer', u'worri']
[u'eagl', u'punish', u'disappoint', u'swan']
[u'elder', u'hospit', u'gunshot', u'wind']
[u'elect', u'caesar', u'burden', u'health', u'servic', u'research']
[u'tighten', u'grip', u'atop', u'asian', u'open', u'leaderboard']
[u'endang', u'frog', u'save', u'cocktail', u'fate']
[u'ethiopia', u'plead', u'help', u'flood', u'death', u'toll']
[u'excess', u'wine', u'biofuel']
[u'minist', u'confirm', u'quit', u'parliament']
[u'farewel', u'plan', u'author', u'sara', u'henderson']
[u'feder', u'pull', u'rome', u'master']
[u'ferdinand', u'deal', u'pipelin']
[u'fergi', u'turn', u'heat']
[u'victim', u'relief', u'fund']
[u'forestri', u'tasmania', u'deni', u'undercut', u'price']
[u'frenchman', u'loeb', u'extend', u'lead', u'itali']
[u'gibernau', u'take', u'pole', u'chines', u'grand', u'prix']
[u'govt', u'dishonest', u'allow', u'referendum']
[u'govt', u'question', u'report', u'show', u'bulli', u'staff']
[u'govt', u'slow', u'offend', u'regist']
[u'heaven', u'hell', u'annan', u'vow', u'stay']
[u'hero', u'welcom', u'emkanimblaem', u'crew']
[u'hitman', u'haa', u'down', u'arthur']
[u'india', u'act', u'tiger', u'number', u'dwindl']
[u'indonesia', u'demand', u'answer', u'fisherman', u'death']
[u'indonesia', u'honour', u'kanimbla', u'crew']
[u'infrastructur', u'plan', u'convert', u'doubter', u'beatti']
[u'iran', u'warn', u'plan', u'restart', u'uranium', u'work']
[u'essenti', u'infertil', u'coupl', u'turnbul']
[u'jackson', u'juri', u'show', u'seiz', u'book', u'nude', u'boy']
[u'keneal', u'predict', u'chang', u'immigr', u'polici']
[u'kid', u'go', u'foreign', u'debt', u'museum']
[u'flintoff', u'run', u'lancashir']
[u'leadership', u'comment', u'misinterpret', u'howard']
[u'lower', u'incom', u'earner', u'benefit', u'land', u'auction']
[u'lynndi', u'england', u'plead', u'guilti', u'iraq', u'abus']
[u'malik', u'face', u'throw', u'match']
[u'martin', u'defend', u'domest', u'violenc', u'fund']
[u'mass', u'grave', u'think', u'hold', u'kurd']
[u'milton', u'smash', u'downhil', u'record']
[u'nasa', u'delay', u'shuttl', u'launch', u'juli']
[u'nepales', u'king', u'lift', u'state', u'emerg']
[u'neumann', u'join', u'leader', u'soggi', u'franklin']
[u'govt', u'consid', u'road', u'beneath', u'harbour', u'bridg']
[u'drop']
[u'australian', u'wrong', u'hold', u'immigr']
[u'palestinian', u'arrest', u'milit']
[u'parkinson', u'treatment', u'tasmania']
[u'petrol', u'bomb', u'throw', u'babi', u'bedroom']
[u'play', u'leadership', u'talk']
[u'prim', u'beazley', u'bout']
[u'polic', u'deliber', u'kill', u'traffic', u'suspect']
[u'premier', u'criticis', u'call', u'inquiri']
[u'prison', u'transfer', u'wake', u'review']
[u'programm', u'prefer', u'role', u'patrol']
[u'rain', u'save', u'windi', u'rampant', u'open']
[u'rann', u'protect', u'justic']
[u'inquiri', u'consid', u'case']
[u'round', u'world', u'sailor', u'forc', u'ashor']
[u'salvag', u'memori', u'add', u'bushfir', u'memori']
[u'scissor', u'paper', u'rock', u'pay', u'christi']
[u'seafood', u'council', u'support', u'call', u'licenc']
[u'shark', u'upset', u'sloppi', u'storm']
[u'shirley', u'strickland', u'famili', u'push', u'inquest']
[u'protest', u'brisban']
[u'charg', u'drug', u'bust']
[u'kill', u'queensland', u'road', u'accid']
[u'soldier', u'kill', u'bomb', u'iraq']
[u'state', u'warn', u'anti', u'competit', u'forestri', u'corp']
[u'studi', u'need', u'braidwood', u'heritag', u'list']
[u'sunderland', u'premiership']
[u'sink', u'submarin', u'restor', u'effort', u'continu']
[u'sydney', u'soccer', u'fan', u'arrest', u'clash']
[u'sydney', u'soccer', u'match', u'end', u'violenc']
[u'sydney', u'welcom', u'kanimbla', u'home']
[u'thailand', u'charg', u'muslim', u'teacher', u'treason']
[u'thirti', u'year', u'world', u'mark', u'fall', u'saigon']
[u'togo', u'presid', u'deni', u'civil', u'like']
[u'trio', u'arrest', u'assault', u'driver']
[u'troop', u'bind', u'iraq', u'farewel', u'brisban']
[u'elect', u'take', u'domest', u'turn']
[u'confirm', u'abus', u'peacekeep', u'liberia']
[u'unpaid', u'bill', u'hospit', u'servic']
[u'airstrik', u'kill', u'afghan', u'civilian']
[u'fear', u'russian', u'arm', u'fall', u'terrorist']
[u'itali', u'odd', u'baghdad', u'shoot']
[u'market', u'upbeat']
[u'secret', u'servic', u'seek', u'race', u'bush', u'parti', u'guest']
[u'veteran', u'commemor', u'vietnam', u'anniversari']
[u'waratah', u'crush', u'highland']
[u'warn', u'stand', u'firm', u'sledg']
[u'step', u'fight']
[u'woman', u'charg', u'fraud']
[u'woman', u'charg', u'stab', u'murder', u'children']
[u'youth', u'jail', u'pose', u'polic']
[u'zimbabw', u'food', u'fuel', u'crisi', u'worsen']
[u'aceh', u'rebel', u'accus', u'hostag', u'take']
[u'adelaid', u'unit', u'beat', u'young', u'socceroo']
[u'african', u'leader', u'quell', u'togo', u'unrest']
[u'demand', u'wrong', u'detent']
[u'australia', u'head', u'obstetr', u'shortag', u'journal']
[u'baxter', u'visit', u'alter', u'sister', u'inquiri', u'submiss']
[u'benedict', u'move', u'papal', u'apart']
[u'boat', u'explos', u'serious', u'injur', u'girl', u'father']
[u'british', u'rocker', u'pete', u'doherti', u'stage']
[u'brown', u'expect', u'disappoint', u'forest', u'plan']
[u'buderus', u'gower', u'skipper', u'countri', u'citi']
[u'cairo', u'museum', u'bomb', u'kill', u'injur']
[u'call', u'action', u'internet', u'cigarett']
[u'carr', u'pledg', u'hospit', u'bed']
[u'cat', u'claw', u'past', u'bulldog']
[u'chelsea', u'celebr', u'premiership', u'titl']
[u'chief', u'minist', u'honour', u'henderson', u'vision']
[u'children', u'hospit', u'major', u'overhaul']
[u'chines', u'journalist', u'jail', u'state', u'secret']
[u'civilian', u'militia', u'claim', u'curb', u'illeg']
[u'costello', u'foreshadow', u'budget', u'surplus']
[u'costello', u'skirt', u'leadership', u'question']
[u'council', u'warn', u'fund', u'shortfal', u'affect', u'servic']
[u'crash', u'train', u'compani', u'notic', u'japanes', u'report']
[u'cultur', u'blend', u'tiwi', u'island', u'ceremoni']
[u'deaf', u'gene', u'track', u'mice']
[u'deplet', u'raider', u'knight', u'crisi', u'deepen']
[u'deploy', u'train', u'iraqi', u'secur', u'forc', u'hill']
[u'deport', u'australian', u'miss', u'oversea']
[u'desper', u'housewif', u'upstag', u'presid', u'bush']
[u'dimarco', u'move', u'ahead', u'orlean']
[u'diva', u'run', u'seventh', u'japan']
[u'docker', u'caffein', u'admiss']
[u'donald', u'kick', u'chief', u'victori', u'stormer']
[u'dont', u'forget', u'perform', u'go']
[u'elder', u'die', u'sydney', u'shoot']
[u'environment', u'project', u'boost']
[u'farmer', u'vote', u'cattl', u'tick', u'fight', u'fund']
[u'dead', u'trap', u'chines', u'mine']
[u'fiji', u'polic', u'defend', u'search', u'coup', u'document']
[u'ravag', u'rural', u'museum', u'collect']
[u'contamin', u'water', u'india']
[u'poll', u'predict', u'blair', u'victori']
[u'train', u'lead', u'saint', u'victori']
[u'head', u'dragon', u'pull', u'fight']
[u'hib', u'shock', u'celtic', u'ranger', u'hope']
[u'hill', u'visit', u'australian', u'deploy', u'iraq']
[u'hill', u'visit', u'troop', u'southern', u'iraq']
[u'hitchhik', u'car']
[u'hospit', u'set', u'dead', u'spider', u'free']
[u'humil', u'giant', u'forest']
[u'inquiri', u'seek', u'input', u'sentenc', u'altern']
[u'iraqi', u'polic', u'kill', u'baghdad', u'attack']
[u'iraq', u'raid', u'net', u'hassan', u'murder', u'suspect']
[u'iraq', u'urg', u'neighbour', u'help', u'secur', u'border']
[u'island', u'ownership', u'return', u'indigen']
[u'israel', u'arrest', u'suicid', u'bomber']
[u'japan', u'princess', u'masako', u'make', u'rare', u'public', u'appear']
[u'jone', u'record', u'modest', u'comeback']
[u'kalli', u'princ', u'break', u'west', u'indian', u'heart']
[u'kuznetsova', u'down', u'clijster', u'henin', u'final']
[u'labor', u'unconcern', u'latham', u'snare', u'book', u'deal']
[u'lampard', u'doubl', u'take', u'chelsea', u'titl']
[u'lightn', u'kill', u'india']
[u'march', u'mark', u'festiv']
[u'centr', u'reform']
[u'marcher', u'ralli', u'reform']
[u'militari', u'probe', u'find', u'guantanamo', u'prison', u'abus']
[u'minist', u'vow', u'listen', u'rural', u'lesse', u'fire']
[u'govt', u'make', u'pledg', u'opposit', u'say']
[u'panther', u'scrape', u'home', u'warrior']
[u'parapleg', u'yachtsman', u'set', u'sail', u'australia']
[u'pavel', u'see', u'haa', u'reach', u'final']
[u'polic', u'consid', u'pullback', u'amid', u'challeng']
[u'polic', u'mackay', u'crash', u'toll']
[u'pope', u'bless', u'focus', u'worker', u'peac']
[u'pressur', u'public', u'detent', u'inquiri', u'grow']
[u'quak', u'rattl', u'taiwan']
[u'raus', u'sister', u'thank', u'baxter', u'detaine']
[u'rene', u'rivkin', u'dead']
[u'rivkin', u'death', u'suspici', u'polic']
[u'ronaldo', u'doubl', u'keep', u'real', u'dream', u'aliv']
[u'round', u'world', u'yatchsman', u'hole', u'hobart']
[u'erupt', u'apec', u'secur']
[u'rural', u'women', u'confer', u'generat']
[u'scientist', u'unveil', u'bright', u'idea', u'fight', u'global']
[u'secret', u'document', u'foot', u'report']
[u'shevchenko', u'doubl', u'end', u'milan', u'florentin', u'jinx']
[u'soccer', u'boss', u'pledg', u'hunt', u'hooligan']
[u'soccer', u'violenc', u'inquiri', u'consid', u'second', u'clash']
[u'soccer', u'violenc', u'inquiri', u'widen']
[u'special', u'mourinho']
[u'staff', u'search', u'rubbl', u'film', u'compani']
[u'star', u'war', u'stand', u'thon', u'kick']
[u'stoner', u'make', u'trot', u'china']
[u'storm', u'delay', u'complet', u'asian', u'open']
[u'taiwan', u'presid', u'call', u'talk', u'china']
[u'teen', u'railway', u'station']
[u'iraqi', u'kill', u'fallujah', u'attack']
[u'tiger', u'rampant', u'hapless', u'power']
[u'tiwi', u'island', u'celebr', u'anniversari', u'dutch', u'arriv']
[u'twin', u'attack', u'rock', u'cairo', u'tourist', u'spot']
[u'unbeaten', u'eagl', u'love', u'worsfold']
[u'court', u'block', u'abort', u'year']
[u'decid', u'disciplinari', u'action', u'agent']
[u'vietnam', u'pledg', u'pursu', u'agent', u'orang', u'compo']
[u'anti', u'campaign', u'fire', u'costello']
[u'wenger', u'consid', u'beckham', u'report']
[u'woodheat', u'rebat', u'hail', u'success']
[u'year', u'spend', u'heart', u'diseas']
[u'academ', u'focus', u'asia', u'australia']
[u'afghan', u'blast', u'kill']
[u'flag', u'possibl', u'recommend', u'judici']
[u'alic', u'mobil', u'polic', u'station']
[u'muthanna', u'troop', u'anti', u'kidnap', u'precaut']
[u'grow', u'tree', u'knowledg']
[u'ambul', u'station', u'get', u'upgrad']
[u'american', u'accus', u'cocain', u'smuggl']
[u'april', u'weather', u'record', u'wollongong']
[u'arson', u'millic', u'museum', u'blaze']
[u'aust', u'prepar', u'pandem', u'abbott']
[u'australian', u'take', u'hostag', u'iraq']
[u'australia', u'swelter', u'april']
[u'autumn', u'fuel', u'reduct', u'campaign', u'near']
[u'baluch', u'fin', u'unregist']
[u'barca', u'spanish', u'titl', u'duel']
[u'bark', u'right', u'tree', u'nundl', u'public', u'school']
[u'bet', u'lay', u'jetsett', u'readi', u'race']
[u'black', u'doesnt', u'armstrong', u'murray', u'darl', u'threat']
[u'blood', u'bank', u'volunt', u'discuss', u'servic', u'withdraw']
[u'botero', u'beat', u'mcgee', u'cunego', u'romandi', u'tour']
[u'brumbi', u'test', u'young', u'gun']
[u'bulldog', u'face', u'life', u'darci']
[u'burn', u'warn', u'ahead', u'like', u'ban']
[u'busi', u'see', u'room', u'budget', u'cut']
[u'busselton', u'get', u'apolog', u'council', u'elect', u'bungl']
[u'bypass', u'group', u'action']
[u'cairn', u'send', u'tropic', u'brain', u'oversea']
[u'hors', u'crash', u'put', u'hospit']
[u'charg', u'lay', u'bank', u'fraud', u'plot']
[u'charg', u'upgrad', u'child', u'death', u'case']
[u'citi', u'countri', u'chang']
[u'collin', u'administr', u'confid', u'sale']
[u'communiti', u'farewel', u'dead', u'polic', u'offic']
[u'cooler', u'weather', u'reduc', u'bushfir', u'risk']
[u'copper', u'open', u'delay']
[u'corbi', u'trial', u'prompt', u'bali', u'boycott', u'threat']
[u'costello', u'tell', u'howard', u'leadership', u'talk', u'concern']
[u'costello', u'warn', u'rivalri', u'danger']
[u'council', u'consid', u'land', u'clear', u'legal', u'action']
[u'counsel', u'reduc', u'abort', u'survey', u'find']
[u'countri', u'club', u'har', u'discont', u'race']
[u'deleg', u'converg', u'mudge']
[u'darci', u'miss', u'rest', u'season']
[u'date', u'elliott', u'appeal']
[u'develop', u'like', u'challeng', u'council', u'oval', u'proviso']
[u'dingo', u'call', u'tune', u'bangtail', u'muster']
[u'disgrac', u'priest', u'blame', u'youth', u'suicid']
[u'doubt', u'bed', u'england', u'hospit']
[u'doubt', u'remain', u'bunburi', u'scheme']
[u'downer', u'rule', u'ransom', u'aust', u'hostag']
[u'downsiz', u'thai', u'beauti', u'queen']
[u'drift', u'boat', u'rescu', u'solomon']
[u'drought', u'take', u'toll', u'fish', u'industri']
[u'weather', u'wimmera', u'malle']
[u'time', u'rural', u'counsellor', u'demand']
[u'elder', u'appeal', u'communiti', u'respect']
[u'leav', u'asian', u'field', u'dead']
[u'emerg', u'worker', u'patch', u'home']
[u'farmer', u'seek', u'local', u'process', u'facil']
[u'environ', u'project', u'receiv', u'fund', u'boost']
[u'expert', u'clean', u'pesticid', u'spill']
[u'extra', u'bed', u'eas', u'wait', u'list']
[u'famin', u'loom', u'zimbabw', u'agenc', u'warn']
[u'farmer', u'hope', u'good', u'rainfal']
[u'farmer', u'readi', u'rain', u'come']
[u'farm', u'product', u'program', u'go', u'public']
[u'fear', u'rais', u'drought', u'support', u'worker', u'fund']
[u'fellow', u'inmat', u'expect', u'testifi']
[u'fisherfolk', u'ask', u'needi']
[u'forb', u'wellington', u'rais', u'rat']
[u'fisher', u'attack', u'murray', u'payout']
[u'rooki', u'women', u'ash', u'squad']
[u'friend', u'expect', u'rivkin', u'tragic']
[u'fund', u'anger', u'age', u'care', u'centr']
[u'fund', u'seek', u'ballarat', u'showground']
[u'futur', u'brighter', u'ethanol', u'fuel']
[u'gardin', u'scan', u'knee', u'injuri']
[u'gayl', u'centuri', u'boost', u'west', u'indi']
[u'gayl', u'sarwan', u'surviv', u'prosper', u'windi']
[u'gehrig', u'face', u'match', u'suspens']
[u'gold', u'coast', u'show', u'skill']
[u'goldfield', u'council', u'defend', u'traffic', u'plan']
[u'govt', u'ask', u'continu', u'polic', u'school', u'scheme']
[u'govt', u'boost', u'yulara', u'safeti']
[u'govt', u'fund', u'lead', u'mushroom', u'trade']
[u'govt', u'stand', u'firm']
[u'govt', u'south', u'west', u'mental', u'health']
[u'govt', u'pressur', u'lift', u'hospit', u'number']
[u'govt', u'urg', u'follow', u'world', u'heritag']
[u'gower', u'disappoint', u'name', u'hooker']
[u'green', u'group', u'want', u'aquacultur', u'hold']
[u'health', u'servic', u'faze', u'hospit', u'delay']
[u'health', u'servic', u'decid', u'mental', u'health']
[u'heavi', u'rain', u'prompt', u'polic', u'caution']
[u'heenan', u'red', u'doubt', u'flatley', u'tune']
[u'howard', u'costello', u'talk', u'amid', u'secur', u'scare']
[u'howard', u'deni', u'chang', u'stanc', u'leadership']
[u'independ', u'auditor', u'review', u'grain', u'export', u'pool']
[u'indigen', u'appoint', u'allow', u'better', u'health']
[u'indigen', u'volunt', u'communiti', u'involv']
[u'indonesian', u'polic', u'display', u'bali', u'evid']
[u'industri', u'relat', u'concern', u'featur', u'labour']
[u'industri', u'restrict', u'lift']
[u'infant', u'mortal', u'rate', u'halv']
[u'injuri', u'strike', u'countri', u'citi']
[u'inquest', u'tell', u'doctor', u'miss']
[u'inquiri', u'probe', u'sentenc', u'option', u'keen', u'hear']
[u'iraq', u'hostag', u'famili', u'extrem', u'concern']
[u'isra', u'cabinet', u'minist', u'quit', u'gaza', u'plan']
[u'japan', u'downplay', u'normal', u'north', u'korean', u'missil', u'test']
[u'juve', u'catch', u'milan', u'ahead', u'titl', u'showdown']
[u'labor', u'seek', u'apprenticeship', u'payment', u'budget']
[u'labour', u'marcher', u'concern', u'chang']
[u'larg', u'crowd', u'expect', u'agfest']
[u'leadership', u'squabbl']
[u'lifesav', u'prepar', u'winter', u'recess']
[u'lightn', u'strike', u'giant', u'home']
[u'local', u'driver', u'targa', u'honour']
[u'local', u'question', u'baton', u'snub']
[u'loeb', u'win', u'ralli', u'itali']
[u'lone', u'high', u'heart', u'risk']
[u'maiden', u'tour', u'win', u'petrov', u'prammanasudh']
[u'bash', u'leav', u'club']
[u'charg', u'south', u'burnett', u'murder']
[u'hospitalis', u'attack']
[u'face', u'court', u'drug', u'weapon', u'charg']
[u'maroon', u'judiciari', u'charg']
[u'matthew', u'carri', u'away', u'bomber']
[u'mayor', u'speak', u'wind', u'farm', u'plan']
[u'medic', u'advic', u'plan']
[u'melbourn', u'businessman', u'grant', u'bail']
[u'million', u'dollar', u'polic', u'ask', u'explain', u'wealth']
[u'miln', u'seek', u'break', u'away']
[u'miner', u'set', u'sight', u'west', u'iron', u'project']
[u'heroin']
[u'hospit', u'bed', u'open', u'illawarra']
[u'time', u'urg', u'fisher', u'decid', u'futur']
[u'motorist', u'urg', u'care', u'tragic', u'crash']
[u'back', u'tougher', u'stanc', u'jobless', u'seek', u'work']
[u'narooma', u'lion', u'shock', u'premier']
[u'feder', u'tutori', u'voucher']
[u'polic', u'recruit', u'south', u'east']
[u'northern', u'tasmanian', u'ask', u'check', u'smoke', u'alarm']
[u'north', u'korea', u'test', u'missil', u'treati', u'talk']
[u'monitor', u'success', u'perth', u'fixtur']
[u'architect', u'give', u'senior', u'industri', u'posit']
[u'defenc', u'spend', u'target', u'decay']
[u'olymp', u'champ', u'ekimov', u'serious', u'injur', u'train']
[u'option', u'free', u'dougla', u'wood']
[u'orica', u'stock', u'drop', u'despit', u'profit', u'hike']
[u'outback', u'pioneer', u'women', u'honour']
[u'oxfam', u'warn', u'darfur', u'crisi']
[u'pakistan', u'introduc', u'regular', u'comp']
[u'park', u'servic', u'boost', u'plateau', u'wild', u'effort']
[u'passeng', u'train', u'make', u'welcom', u'return']
[u'picker', u'seek', u'oliv', u'harvest']
[u'plan', u'toxic', u'wast', u'rout', u'worri', u'farm', u'group']
[u'stand', u'firm', u'aussi', u'take', u'hostag']
[u'look', u'economist', u'say']
[u'polic', u'arrest', u'bank', u'fraud']
[u'polic', u'disarm', u'sword']
[u'polic', u'hail', u'border', u'swoop']
[u'polic', u'charg', u'drug', u'raid']
[u'polic', u'link', u'heroin', u'stash', u'bali', u'accus']
[u'polic', u'rail', u'assault', u'arrest']
[u'polic', u'probe', u'macquari', u'field', u'shoot']
[u'polic', u'readi', u'kimberley', u'court', u'troubl']
[u'polic', u'recov', u'steal', u'paint']
[u'polic', u'blame', u'boat', u'blast']
[u'polic', u'urg', u'caution', u'road', u'long', u'weekend', u'end']
[u'poll', u'give', u'hugh', u'grant', u'role', u'down']
[u'public', u'urg', u'faith', u'foreign', u'train']
[u'punter', u'aplenti', u'expect', u'alic']
[u'farmer', u'withdraw', u'scheme']
[u'crack', u'child', u'labour']
[u'questacon', u'visitor', u'number', u'jump']
[u'rampant', u'ranger', u'close', u'celt']
[u'raid', u'thiev', u'target', u'cloth', u'warehous']
[u'rate', u'rise', u'fear', u'bega', u'valley', u'shire']
[u'real', u'estat', u'agent', u'get', u'life']
[u'region', u'women', u'urg', u'smear']
[u'research', u'monitor', u'race', u'bird']
[u'resid', u'rate', u'rise', u'detail', u'soon']
[u'retail', u'argu', u'child', u'labour', u'chang', u'unneed']
[u'rfds', u'move', u'mental', u'health', u'area']
[u'chief', u'readi', u'survey', u'critic']
[u'richo', u'hail', u'turnaround', u'tiger']
[u'rivkin', u'dead']
[u'rooney', u'bar', u'children', u'soccer', u'tournament']
[u'rove', u'mcmanus', u'win', u'consecut', u'gold', u'logi']
[u'rutherglen', u'courthous', u'sale']
[u'search', u'continu', u'miss', u'angler']
[u'secur', u'upgrad', u'lake', u'cargelligo']
[u'senat', u'talk', u'china', u'free', u'trade', u'deal']
[u'seven', u'charg']
[u'shrewd', u'take', u'home', u'alic']
[u'site', u'search', u'greenhous', u'plan']
[u'snowi', u'flight', u'green', u'light']
[u'beach', u'patrol', u'continu', u'winter']
[u'speed', u'simul', u'program', u'target', u'student']
[u'state', u'say', u'feder', u'govt', u'neglect', u'rural', u'hous']
[u'stock', u'rout', u'run', u'water', u'fee']
[u'studi', u'give', u'beetl', u'ticket', u'ride']
[u'suicid', u'drive', u'shame']
[u'suncoast', u'lion', u'prove', u'good', u'shark']
[u'survey', u'identifi', u'manufactur', u'lull']
[u'talk', u'fail', u'iraq', u'wheat', u'stand']
[u'senat', u'question', u'state', u'marriag', u'push']
[u'team', u'swat', u'mosquito', u'invad', u'region']
[u'teen', u'die', u'motorcycl', u'crash']
[u'teen', u'rescu', u'woman', u'burn', u'hous']
[u'bomb', u'baghdad']
[u'timber', u'worker', u'strike']
[u'titl', u'win', u'gaudio', u'nalbandian', u'henin', u'hardenn']
[u'tiwi', u'island', u'dutch', u'forg', u'tie']
[u'togo', u'opposit', u'refus', u'request', u'form', u'govern']
[u'tonkin', u'report', u'vindic', u'critic', u'opposit']
[u'kill', u'west', u'bank', u'clash']
[u'union', u'say', u'individu', u'contract']
[u'union', u'focus', u'reform']
[u'uranium', u'mine', u'threaten', u'green', u'imag', u'green']
[u'apolog', u'iraq', u'crash', u'bodi']
[u'gain', u'boost', u'aust', u'market']
[u'anti', u'smoke', u'sentiment', u'grow']
[u'budget', u'paper', u'leak']
[u'view', u'profit']
[u'warni', u'plead', u'ignor', u'retir', u'claim']
[u'warn', u'sign', u'drought']
[u'water', u'cart', u'warra', u'start']
[u'wife', u'identifi', u'australian', u'hostag']
[u'win', u'trap', u'stop', u'cane', u'toad', u'long', u'march', u'west']
[u'woman', u'deni', u'lie', u'husband', u'jail']
[u'woman', u'hospit', u'crash']
[u'worker', u'urg', u'celebr', u'labour']
[u'kill', u'somali', u'speech']
[u'kill', u'iraqi', u'gunfight']
[u'kill', u'ramadi', u'fight']
[u'abba', u'bulldoz', u'secur', u'chief', u'hous']
[u'abbott', u'tell', u'costello', u'team', u'spirit']
[u'adelaid', u'base', u'option', u'armi', u'battalion']
[u'fail', u'check', u'westralia', u'fuel', u'line', u'court', u'tell']
[u'afghan', u'mother', u'daughter', u'beat', u'death']
[u'support', u'breast', u'cancer', u'awar']
[u'albani', u'wait', u'speed', u'camera']
[u'altschwag', u'confid', u'jaeger']
[u'maintain', u'campaign', u'chang']
[u'ambul', u'servic', u'need', u'disput']
[u'angler', u'derbi', u'wharf', u'revamp']
[u'armi', u'reserv', u'troop', u'head', u'solomon']
[u'armi', u'reserv', u'troop', u'solomon', u'mission']
[u'arsenal', u'maintain', u'lead', u'unit']
[u'arson', u'rule', u'wilga', u'blaze']
[u'art', u'group', u'reform']
[u'athlet', u'sutherland', u'face', u'hurdl', u'trial']
[u'aust', u'miner', u'prefer', u'botswana', u'rich']
[u'aust', u'put', u'nuclear', u'treati', u'focus', u'rogu', u'state']
[u'australian', u'veteran', u'join', u'commemor']
[u'autopsi', u'carri', u'barossa', u'snake', u'handler']
[u'bali', u'bomb', u'survivor', u'visit', u'children']
[u'bali', u'lawyer', u'complain', u'question']
[u'bank', u'releas', u'bumper', u'profit', u'figur']
[u'bank', u'perform', u'market', u'lose', u'grind']
[u'averag', u'april', u'rainfal', u'wide', u'burnett']
[u'benitez', u'pledg', u'stop', u'chelsea']
[u'berri', u'grower', u'urg', u'approv', u'compulsori', u'levi']
[u'billiton']
[u'wave', u'rider', u'battl', u'wave', u'jetski']
[u'biotech', u'boom', u'expect', u'north']
[u'bribi', u'blaze', u'damag', u'bongare', u'shop']
[u'brisban', u'protest', u'mark', u'joh', u'funer']
[u'brown', u'stay', u'brisban']
[u'budget', u'expect', u'deliv', u'school', u'polic']
[u'budget', u'leak', u'inaccur', u'brumbi', u'say']
[u'build', u'approv', u'fall', u'rate', u'rise']
[u'busi', u'lobbi', u'warn', u'reserv', u'profit']
[u'chariti', u'appeal', u'suppli']
[u'child', u'sleepless', u'night', u'methadon', u'death']
[u'china', u'offer', u'taiwan', u'giant', u'panda']
[u'church', u'ask', u'fair', u'parol', u'killer']
[u'nonplus', u'budget']
[u'commerci', u'fish', u'licenc', u'hard', u'sell', u'despit']
[u'communiti', u'sign', u'share', u'respons']
[u'restrict', u'coastal']
[u'contractor', u'blame', u'westralia', u'court', u'tell']
[u'costello', u'backer', u'demand', u'leadership', u'assur']
[u'council', u'adopt', u'plan', u'protect', u'illawarra', u'escarp']
[u'council', u'consid', u'limit', u'lygon', u'restaur']
[u'council', u'appeal', u'alexandra', u'headland']
[u'council', u'put', u'carey', u'decis', u'hold']
[u'council', u'sign', u'pastor', u'land', u'leas']
[u'council', u'unus', u'rail', u'land']
[u'council', u'vote', u'bottl', u'shop', u'plan']
[u'crocker', u'slater', u'accept', u'suspens']
[u'dairi', u'farmer', u'fin', u'toddler', u'death']
[u'democrat', u'back', u'fish']
[u'diver', u'join', u'search', u'miss', u'angler']
[u'drought', u'take', u'toll', u'mulga']
[u'eagl', u'gardin', u'clear', u'damag']
[u'eleph', u'import', u'hang', u'environ', u'concern']
[u'england', u'plead', u'guilti']
[u'explor', u'firm', u'reject', u'blast', u'fish', u'claim']
[u'explos', u'truck', u'crash', u'spark', u'mass', u'evacu']
[u'extra', u'polic', u'remain', u'palm']
[u'farmer', u'gather', u'discuss', u'topic']
[u'farmer', u'drought', u'approv']
[u'farmer', u'group', u'discuss', u'drought']
[u'farmer', u'rejoic', u'rain', u'fall']
[u'farmer', u'complet', u'fenc', u'repair', u'year']
[u'farmer', u'want', u'decis', u'milk', u'price', u'negoti']
[u'fear', u'busi', u'feel', u'rate', u'rise', u'impact']
[u'fee', u'contamin', u'save', u'sheep', u'court', u'tell']
[u'fisheri', u'forc', u'polic', u'crayfish']
[u'apprentic', u'award', u'sexual']
[u'rescu', u'boat', u'sink']
[u'fund', u'shortfal', u'put', u'free', u'legal', u'servic', u'doubt']
[u'fund', u'boost', u'tourism', u'facil']
[u'gayl', u'overhaul', u'versus', u'south', u'africa']
[u'gehrig', u'suspend', u'match']
[u'gehrig', u'contest', u'strike', u'charg']
[u'geolog', u'histori', u'map', u'coast']
[u'govt', u'ask', u'help', u'free', u'hostag']
[u'govt', u'defend', u'forestri', u'perform']
[u'govt', u'fund', u'tackl', u'spiral', u'region', u'suicid']
[u'govt', u'grant', u'help', u'boost', u'avocado', u'product']
[u'govt', u'look', u'local', u'hostag', u'help']
[u'govt', u'offer', u'help', u'taskmast', u'client']
[u'govt', u'question', u'stall', u'gold', u'coast', u'project']
[u'govt', u'small', u'grant', u'local', u'develop']
[u'grappl', u'tackl', u'issu', u'bellami']
[u'greenpeac', u'founder', u'hunter', u'die']
[u'green', u'question', u'approach', u'bunburi', u'scheme', u'critic']
[u'griffith', u'reliev', u'branch', u'line', u'upgrad']
[u'group', u'oppos', u'pool', u'supervis']
[u'hail', u'storm', u'leav', u'trail', u'insur', u'claim']
[u'health', u'dept', u'readi', u'pandem']
[u'health', u'servic', u'stand', u'obstetr', u'servic', u'polici']
[u'hear', u'restor', u'surround', u'sound']
[u'hickss', u'case', u'proceed']
[u'hill', u'confid']
[u'histor', u'rocket', u'make', u'final', u'journey']
[u'homegrown', u'campaign', u'promot', u'australian', u'good']
[u'hoon', u'play', u'russian', u'roulett', u'road']
[u'hop', u'industri', u'regul', u'bring', u'chang']
[u'hospit', u'say', u'emerg', u'chopper', u'prioriti']
[u'hostag', u'realis', u'danger', u'post', u'iraq']
[u'hostag', u'famili', u'urg']
[u'human', u'right', u'watchdog', u'demand', u'immigr', u'inquiri']
[u'incid', u'prompt', u'polic', u'stranger', u'danger', u'warn']
[u'council', u'vote']
[u'intern', u'research', u'attend', u'sugar']
[u'iran', u'consid', u'nuclear', u'option']
[u'iraqi', u'govern', u'offic']
[u'italian', u'accus', u'edit', u'report', u'agent']
[u'itali', u'blame', u'agent', u'kill', u'inexperi']
[u'jennif', u'lopez', u'want', u'american', u'presid']
[u'jetski', u'rider', u'take', u'wave', u'dive']
[u'john', u'howard', u'speak', u'funer']
[u'journal', u'dead', u'beat']
[u'judg', u'decid', u'child', u'porn', u'regist']
[u'kamahl', u'sing', u'funer', u'bjelk']
[u'kill', u'suspect', u'smuggl', u'drug', u'aust', u'nepal', u'polic']
[u'kingaroy', u'stop', u'funer']
[u'knuckl', u'step', u'bath', u'breach']
[u'labor', u'seek', u'emerg', u'fund', u'newcastl']
[u'leadership', u'agenda', u'liber']
[u'liber', u'promis', u'fulli', u'fund', u'public', u'bus']
[u'littl', u'gold', u'coast', u'rain', u'april']
[u'local', u'meet', u'discuss', u'plan', u'desalin']
[u'mackay', u'angri', u'baton', u'snub']
[u'hospit', u'crash']
[u'jail', u'aid', u'fugit']
[u'manufactur', u'slide', u'point', u'weak', u'spend']
[u'kill', u'pakistan', u'blast']
[u'marburg', u'toll', u'climb']
[u'maroon', u'judiciari', u'charg']
[u'mayor', u'add', u'voic', u'baton', u'snub', u'anger']
[u'mcgee', u'case', u'domin', u'region', u'parliament']
[u'melissa', u'georg', u'star', u'thriller']
[u'minist', u'quit', u'gaza', u'withdraw', u'plan']
[u'asbesto', u'test', u'baryulgil']
[u'mourner', u'farewel', u'author', u'sara', u'henderson']
[u'barri', u'collier', u'defect', u'leav']
[u'campaign', u'cut']
[u'pleas', u'hospit', u'bed', u'pledg']
[u'urg', u'parent', u'supervis']
[u'want', u'rethink', u'princ', u'highway', u'fund']
[u'get', u'home', u'detent', u'wait', u'face']
[u'murder', u'case', u'juri', u'consid', u'verdict']
[u'nation', u'hope', u'budget', u'deliv', u'region']
[u'doctor', u'start', u'work', u'trundl']
[u'speci', u'dinosaur', u'discov']
[u'seek', u'drought', u'reform', u'chang']
[u'nobel', u'face', u'dare', u'rival']
[u'expect', u'pipelin', u'link']
[u'north', u'coast', u'hospit', u'bed', u'boost']
[u'match', u'schedul', u'port', u'macquari']
[u'move', u'pitbul']
[u'bite', u'bull']
[u'govt', u'bank', u'elect', u'win', u'budget']
[u'nurs', u'midwiv', u'launch', u'recruit', u'campaign']
[u'revok', u'permit', u'iraqi', u'diplomat']
[u'opposit', u'call', u'victim', u'crime', u'parol']
[u'peter', u'beatti', u'speak', u'funer']
[u'pharmaci', u'secur', u'disabl', u'chariti', u'train']
[u'pilbara', u'aborigin', u'achiev', u'nativ', u'titl']
[u'plan', u'minist', u'accus', u'rush', u'citi', u'hill']
[u'defend', u'plan', u'budget', u'welfar', u'reform']
[u'silent', u'retir', u'plan']
[u'tackl', u'illeg', u'arm', u'trade']
[u'polic', u'hunt', u'servic', u'station', u'knife', u'bandit']
[u'polic', u'interview', u'boat', u'blaze']
[u'polic', u'look', u'address', u'teen', u'drink']
[u'polic', u'teen', u'motorcycl', u'crash', u'victim']
[u'polic', u'oper', u'highlight', u'border', u'drug', u'corridor']
[u'polit', u'heavyweight', u'urg', u'attend', u'drought']
[u'prawn', u'farmer', u'reject', u'explicit', u'label']
[u'privat', u'health', u'cover', u'subsidi', u'benefit', u'rich']
[u'prosecutor', u'call', u'jackson', u'aid']
[u'protest', u'japan', u'recognis', u'crime']
[u'protest', u'hold', u'brisban']
[u'public', u'hospit', u'nurs', u'consid', u'strike']
[u'public', u'urg', u'brush', u'toxic', u'wast', u'plan']
[u'quinlan', u'hand', u'tough', u'budget']
[u'rann', u'accus', u'uranium', u'promot']
[u'record', u'april', u'south', u'east']
[u'region', u'announc', u'staff']
[u'roar', u'inaugur', u'captain']
[u'rooki', u'director', u'make']
[u'rooster', u'youth', u'chanc']
[u'rspca', u'gear', u'fundrais']
[u'rudd', u'call', u'latitud', u'iraq', u'hostag', u'talk']
[u'sailor', u'adopt', u'underdog', u'status']
[u'scientist', u'search', u'life']
[u'second', u'hartley', u'speed', u'camera', u'share', u'inquiri', u'seek']
[u'scour', u'suburb', u'knife']
[u'shire', u'fill', u'council', u'spot']
[u'lay', u'rest']
[u'societi', u'consid', u'climat', u'chang', u'impact']
[u'sport', u'pedigre', u'pay', u'lion', u'sherman']
[u'studi', u'find', u'inadequ', u'support', u'vietnam', u'vet']
[u'sugar', u'tip', u'replac', u'fossil', u'fuel']
[u'survey', u'find', u'jack', u'threat', u'worri', u'hunter']
[u'survey', u'reveal', u'motorist', u'fear']
[u'cut', u'busi', u'incent', u'budget']
[u'rise', u'rule', u'budget']
[u'teenag', u'charg', u'polic', u'pursuit']
[u'teen', u'question', u'long', u'pursuit']
[u'thorp', u'applaud', u'miss', u'world', u'champ']
[u'thousand', u'flee', u'togo', u'ahead', u'elect', u'result']
[u'truck', u'crash', u'land', u'hospit']
[u'townsvill', u'rainfal', u'averag']
[u'tribut', u'protest', u'mark', u'joh', u'funer']
[u'triumphant', u'close', u'singh']
[u'chief', u'challeng', u'leader', u'nuclear', u'treati']
[u'uranium', u'explor', u'increas']
[u'jet', u'suspect', u'midair', u'collis']
[u'militari', u'miss', u'recruit', u'target']
[u'militari', u'recov', u'bodi', u'pilot']
[u'vandalis', u'memori', u'reloc']
[u'veget', u'chang', u'expect', u'help', u'farmer']
[u'veteran', u'bind', u'commemor']
[u'budget', u'hold', u'surpris']
[u'vietnam', u'visit', u'trade', u'secur', u'talk']
[u'case', u'final', u'go', u'court']
[u'wall', u'street', u'share', u'climb']
[u'warrant', u'owner', u'attack', u'dog']
[u'weather', u'spark', u'eyr', u'peninsula']
[u'wellington', u'communiti', u'urg', u'sell', u'town']
[u'woman', u'hurt']
[u'workshop', u'focus', u'mental', u'ill']
[u'zinifex', u'settl', u'asbesto', u'compens', u'case']
[u'kill', u'mail', u'plane', u'crash']
[u'aborigin', u'affair', u'backburn', u'democrat']
[u'say', u'need', u'breed', u'specif', u'law']
[u'reject', u'claim', u'limit', u'access', u'bali', u'pair']
[u'age', u'popul', u'prompt', u'hunter', u'work', u'forc', u'warn']
[u'hand', u'deck', u'port', u'lincoln', u'train', u'cours']
[u'ord', u'slip', u'amid', u'weak', u'market']
[u'qaeda', u'suspect', u'captur', u'pakistan']
[u'ansar', u'sunna', u'claim', u'arbil', u'bomb']
[u'applic', u'seek', u'green', u'project']
[u'archaeologist', u'uncov', u'ancient', u'chines', u'fort']
[u'artist', u'hunger', u'din', u'stranger']
[u'australia', u'compet', u'softbal', u'world']
[u'murder', u'jail', u'year']
[u'bargara', u'golf', u'club', u'vote', u'land', u'sale']
[u'field', u'bathurst', u'posit']
[u'bigger', u'qanta', u'plan', u'reduc', u'fare']
[u'lose', u'vote', u'valu', u'titl']
[u'birney', u'blast', u'boundari', u'chang', u'plan']
[u'blair', u'tip', u'poll', u'final', u'campaign']
[u'book', u'help', u'produc', u'tick', u'fever', u'vaccin']
[u'bowen', u'sign', u'cowboy', u'deal']
[u'boy', u'sentenc', u'high', u'school', u'blaze']
[u'brisban', u'face', u'water', u'restrict', u'week']
[u'broule', u'cooma', u'north', u'electron', u'bank', u'boost']
[u'budget', u'accus', u'ignor', u'drought', u'farmer']
[u'budget', u'promis', u'polic', u'station']
[u'build', u'societi', u'defend', u'credit', u'union', u'offer']
[u'build', u'societi', u'takeov']
[u'fund', u'protest', u'target', u'visit']
[u'bushfir', u'inquiri', u'chief', u'urg', u'visit', u'eyr']
[u'campaign', u'open', u'foreign', u'mind', u'australian', u'wine']
[u'carr', u'neglect', u'disabl', u'support', u'fund']
[u'cattl', u'eat', u'weed']
[u'caucau', u'avail', u'fiji', u'year', u'absenc']
[u'chamber', u'welcom', u'start', u'pipelin', u'construct']
[u'chan', u'admit', u'own', u'heroin', u'suitcas', u'polic']
[u'chan', u'lawyer', u'unhappi', u'involv']
[u'child', u'murder', u'elig', u'parol']
[u'children', u'commission', u'start', u'child', u'abus', u'probe']
[u'coach', u'see', u'posit', u'thorp', u'break']
[u'coastguard', u'help', u'yacht', u'rescu']
[u'comment', u'seek', u'aerodrom', u'plan']
[u'commerci', u'stamp', u'duti', u'relief', u'need', u'properti']
[u'confer', u'hear', u'whale', u'rescu', u'effort']
[u'conserv', u'group', u'warn', u'land', u'clear', u'threat']
[u'coron', u'rule', u'newborn', u'murder', u'hospit']
[u'council', u'back', u'plan']
[u'council', u'consid', u'grandstand', u'repair', u'option']
[u'councillor', u'foul', u'sewag', u'spill']
[u'council', u'rate', u'rise', u'push', u'bring', u'differ', u'respons']
[u'council', u'market', u'forc', u'rule', u'lygon', u'street']
[u'court', u'extinguish', u'charg', u'broom', u'firm']
[u'cream', u'unit', u'rise']
[u'date', u'puppi', u'breed', u'busi']
[u'desper', u'farmer', u'walk', u'land']
[u'determin', u'expect', u'hasten', u'pilbara', u'land']
[u'develop', u'nation', u'urg', u'stem', u'pollut']
[u'differ', u'thiev', u'target', u'servic', u'station']
[u'disabl', u'worker', u'agenc', u'longer', u'viabl', u'minist']
[u'doubt', u'rais', u'mackay', u'plan', u'scheme']
[u'downer', u'make', u'appeal', u'hostag', u'releas']
[u'downer', u'put', u'hostag', u'case', u'arab']
[u'dozen', u'kill', u'iraq', u'bomb', u'blast']
[u'dubbo', u'council', u'push', u'rate', u'rise']
[u'eagl', u'quiz', u'nightclub', u'shoot']
[u'eagl', u'oper', u'polic', u'nightclub']
[u'eagl', u'cooper', u'polic', u'nightclub']
[u'ekimov', u'miss', u'tour', u'train', u'smash']
[u'electr', u'fault', u'factori']
[u'emerg', u'servic', u'skill', u'test']
[u'energi', u'compani', u'har', u'power', u'rock']
[u'wife', u'call', u'jackson', u'sociopath', u'wit']
[u'fake', u'acupunctur', u'effect', u'migrain']
[u'famili', u'appeal', u'brother', u'releas']
[u'famili', u'feud', u'boil']
[u'farmer', u'gather', u'emerald', u'outlook', u'confer']
[u'farmer', u'want', u'drought']
[u'farm', u'group', u'seek', u'livestock', u'theft', u'review']
[u'govt', u'accus', u'jeopardis', u'game']
[u'figur', u'highlight', u'april', u'hunter']
[u'flatley', u'state', u'union', u'clash']
[u'flat', u'retail', u'figur', u'support', u'rate', u'hold']
[u'flight', u'control', u'fault', u'suspect', u'king', u'crash']
[u'footbal', u'comp', u'restructur', u'follow', u'crowd']
[u'detect', u'steal', u'drug', u'sell', u'court']
[u'forum', u'address', u'youth', u'crime']
[u'foster', u'extend', u'southcorp', u'takeov']
[u'game', u'baton', u'relay', u'bypass', u'wide']
[u'gatto', u'kiss', u'veniamin', u'month', u'kill']
[u'gene', u'link', u'peopl', u'madagascar', u'borneo']
[u'ghan', u'servic', u'doubl', u'meet', u'holiday', u'demand']
[u'girl', u'hospit', u'boat', u'blast']
[u'goonellabah', u'accus', u'attempt', u'murder']
[u'govern', u'announc', u'brigalow', u'conserv', u'plan']
[u'govt', u'accus', u'break', u'bushfir', u'promis']
[u'govt', u'ask', u'boost', u'calder', u'fund']
[u'govt', u'defend', u'fish', u'licenc', u'time', u'frame']
[u'govt', u'chang', u'nurs', u'killer', u'bar']
[u'govt', u'releas', u'region']
[u'great', u'britain', u'name', u'farrel', u'replac']
[u'green', u'group', u'seek', u'fund', u'cape', u'york', u'park']
[u'hall', u'show', u'swan', u'captainci']
[u'heritag', u'list', u'seek', u'histor', u'power', u'station']
[u'hockey', u'australia', u'stand', u'elder', u'suspens']
[u'inquiri', u'hear', u'conflict', u'opinion']
[u'iran', u'pledg', u'continu', u'nuclear', u'program']
[u'iraq', u'hostag', u'tell', u'fear', u'safeti', u'measur']
[u'iraqi', u'take', u'oath', u'offic']
[u'iraq', u'widow', u'threaten', u'blair']
[u'iron', u'talk', u'consid', u'normal']
[u'protest', u'sue', u'union', u'warn']
[u'irrig', u'accredit', u'scheme', u'moot']
[u'order', u'bring', u'home', u'laden', u'head']
[u'jail', u'await', u'rapist', u'marriag', u'propos', u'reject']
[u'jubile', u'plan', u'prospero']
[u'kingaroy', u'return', u'normal', u'funer']
[u'kookaburra', u'drop', u'elder', u'oversea', u'play']
[u'learner', u'motorcyclist', u'fin', u'speed']
[u'leigh', u'matthew', u'factbox']
[u'lethal', u'reach', u'decad', u'mileston', u'lion']
[u'linesman', u'score', u'say', u'angri', u'mourinho']
[u'littl', u'budget', u'busi', u'burk', u'say']
[u'liverpool', u'celebr', u'mourinho', u'fire', u'part', u'barb']
[u'malle', u'toxic', u'wast', u'dump', u'roadshow', u'begin']
[u'arrest', u'cathedr', u'blaze']
[u'fascin', u'court', u'tell']
[u'jail', u'arm', u'robberi']
[u'manjimup', u'look', u'boost', u'doctor', u'number']
[u'mayor', u'back', u'high', u'countri', u'flight']
[u'melbourn', u'airport', u'readi', u'super', u'size', u'airlin']
[u'microwav', u'diamond', u'offer', u'data', u'secur', u'solut']
[u'miner', u'dept', u'want', u'know', u'baryulgil']
[u'minist', u'confid', u'chang', u'ahead']
[u'minist', u'voic', u'opposit', u'gaza', u'demolit', u'plan']
[u'money', u'main', u'barrier', u'malaria', u'fight']
[u'mop', u'continu', u'silo']
[u'hospit', u'mental', u'health', u'staff', u'concern', u'air']
[u'number', u'need', u'debutant', u'ball']
[u'mountain', u'lion', u'play', u'mous', u'land', u'holder']
[u'mundin', u'rule', u'dragon', u'return']
[u'nation', u'bodi', u'assess', u'water', u'usag']
[u'nation', u'youth', u'orchestra', u'rehears', u'armidal']
[u'near', u'strength', u'cowboy', u'readi', u'eel', u'clash']
[u'target', u'petrol', u'sniffer']
[u'member', u'help', u'save', u'arnaud']
[u'opposit', u'promis', u'stimul', u'popul']
[u'painter', u'jail', u'canberra', u'mug']
[u'palm', u'council', u'chief', u'look', u'chang']
[u'peruvian', u'presid', u'guilti', u'elector', u'fraud']
[u'pest', u'control', u'honour', u'insect']
[u'phone', u'disput', u'prompt', u'kill', u'court', u'tell']
[u'platypus', u'maladi', u'sweep', u'asid', u'devil', u'diseas']
[u'polic', u'chase', u'end', u'pair', u'rescu', u'burn']
[u'politician', u'reject', u'clone']
[u'plater', u'charg', u'highway', u'drive']
[u'pratt', u'rabat', u'open']
[u'pregnant', u'mum', u'meningococc', u'children', u'studi']
[u'prison', u'offic', u'prais', u'hostag', u'situat']
[u'protest', u'troop', u'pull', u'hostag', u'releas']
[u'rail', u'link', u'group', u'urg', u'work']
[u'keep', u'rat', u'steadi']
[u'referendum', u'hold', u'trade', u'hour']
[u'report', u'blame', u'sydney', u'soccer', u'violenc']
[u'riverland', u'target', u'tourist']
[u'road', u'work', u'speed', u'fin', u'link']
[u'roma', u'student', u'school', u'plan']
[u'shoot', u'anger', u'park', u'servic']
[u'rspca', u'chief', u'urg', u'apologis', u'volunt']
[u'rspca', u'welcom', u'danger', u'dog']
[u'rumsfeld', u'say', u'forc', u'chavez']
[u'runway', u'damag', u'caus', u'concern', u'casa']
[u'russian', u'pilot', u'cloud', u'parad']
[u'sam', u'seafood', u'sink', u'receivership']
[u'saudi', u'aust', u'livestock', u'trade', u'resum']
[u'seafood', u'industri', u'reject', u'label', u'chang']
[u'king', u'crash', u'investig', u'closer', u'caus']
[u'search', u'call', u'indonesian', u'crew']
[u'search', u'call', u'miss', u'fisherman']
[u'second', u'doctor', u'implic', u'health', u'crisi']
[u'sexi', u'texa', u'cheerlead', u'clear', u'hurdl']
[u'shoalhaven', u'promot', u'busi', u'opportun']
[u'singl', u'trader', u'hurt', u'wheat', u'industri']
[u'smoker', u'fin', u'mackay']
[u'soft', u'drink', u'firm', u'accus', u'offer', u'school']
[u'lanka', u'moodi']
[u'staff', u'push', u'bargain', u'issu', u'graduat']
[u'stamp', u'duti', u'chang', u'expect', u'help', u'alic', u'spring']
[u'suicid', u'bomber', u'kill', u'score', u'iraq']
[u'swiss', u'detain', u'russian', u'minist']
[u'sydney', u'sewag', u'lithgow', u'collieri']
[u'tah', u'unchang', u'state', u'union', u'clash']
[u'tourism', u'campaign', u'target', u'victorian']
[u'team', u'prepar', u'emerg', u'competit']
[u'teen', u'accus', u'assault', u'face', u'court']
[u'teen', u'charg', u'chase']
[u'telco', u'order', u'simplifi', u'phone', u'contract']
[u'texan', u'apologis', u'victim', u'famili', u'execut']
[u'thoma', u'question', u'gehrig', u'suspens']
[u'thorp', u'lapaglia', u'launch', u'sydney']
[u'tie', u'rescu', u'drain', u'ordeal']
[u'tingha', u'bail', u'hostel', u'close']
[u'townsvill', u'council', u'prostitut', u'submiss']
[u'treasur', u'tunnel', u'snub', u'disappoint', u'newman']
[u'truck', u'firm', u'face', u'long', u'distanc', u'drive', u'charg']
[u'turf', u'sydney', u'shoot', u'polic']
[u'face', u'court', u'school']
[u'unicef', u'urg', u'zimbabw', u'accept', u'food']
[u'union', u'ask', u'govern', u'save', u'preschool']
[u'admit', u'forc', u'stretch']
[u'feder', u'reserv', u'rais', u'rat']
[u'soldier', u'joke', u'abus', u'iraqi', u'prison']
[u'support', u'iraq', u'slide', u'poll']
[u'terrorist', u'fail', u'recognis', u'lodhi']
[u'team', u'fin', u'abus', u'languag']
[u'venezuela', u'seek', u'extradit', u'accus', u'terrorist']
[u'hire', u'consult', u'hunt', u'budget', u'mole']
[u'violenc', u'end', u'sydney', u'unit', u'season', u'earli']
[u'virgin', u'bomb', u'scare', u'accus', u'miss', u'court', u'date']
[u'govt', u'accus', u'grab']
[u'polic', u'disappoint', u'eagl', u'pair']
[u'warrnambool', u'council', u'report', u'go', u'parliament']
[u'wast', u'releas']
[u'wave', u'technolog', u'risk', u'sweep', u'away']
[u'weather', u'hamper', u'wreck', u'trawler', u'clean']
[u'deconstruct', u'tsunami', u'respons']
[u'wilkinson', u'name', u'face', u'barbarian']
[u'williamtown', u'boe', u'engin', u'stop', u'work']
[u'wind', u'woe', u'stop', u'kite', u'world', u'record', u'attempt']
[u'wollondilli', u'council', u'adopt', u'biodivers', u'strategi']
[u'woman', u'jail', u'stab', u'partner']
[u'wood', u'brother', u'plead', u'kidnapp']
[u'wood', u'famili', u'free', u'ransom', u'downer']
[u'yorta', u'yorta', u'second', u'bridg', u'site']
[u'enjoy', u'footi', u'your', u'win', u'corn']
[u'kill', u'insurg', u'target', u'iraqi', u'secur']
[u'make', u'chang', u'complaint', u'review', u'panel']
[u'acquitt', u'leav', u'murder', u'accus', u'reliev']
[u'govt', u'consult', u'bull']
[u'afghanistan', u'urg', u'femal', u'worker']
[u'player', u'associ', u'look', u'past', u'player']
[u'afternoon', u'ralli', u'pull', u'month']
[u'agent', u'death', u'affect', u'iraq', u'mission']
[u'agforc', u'appoint']
[u'alleg', u'wrong', u'detent', u'case', u'blow']
[u'back', u'expert', u'review', u'fund']
[u'appeal', u'court', u'jail', u'teacher', u'student']
[u'asbesto', u'discoveri', u'close', u'park']
[u'aust', u'commit', u'fight', u'polio', u'indonesia']
[u'australia', u'saudi', u'arabia', u'sign', u'sheep', u'export']
[u'bell', u'wast', u'burn', u'rais', u'green', u'fear']
[u'bemax', u'buy', u'iluka', u'land']
[u'bird', u'space', u'sell', u'astronom', u'price']
[u'bird', u'like', u'dinosaur', u'link', u'carnivor', u'herbivor']
[u'blast', u'damag', u'british', u'consul']
[u'book', u'expos', u'sinatra', u'link', u'mafia']
[u'bowen', u'happi', u'scuttl', u'specul']
[u'brigalow', u'decis', u'split', u'communiti']
[u'british', u'minut', u'campaign', u'blitz']
[u'budget', u'deficit', u'result', u'rampant', u'spend']
[u'budget', u'fail', u'creat', u'fairer', u'victoria']
[u'bulgaria', u'pull', u'troop', u'iraq']
[u'bulldog', u'lack', u'punch', u'injur', u'trio', u'lockyer']
[u'bundaberg', u'patient', u'discuss', u'treatment', u'option']
[u'apprenticeship', u'complet', u'bonus']
[u'action', u'canberra', u'hous', u'woe']
[u'go', u'midwiv', u'support']
[u'campbel', u'clear', u'deck', u'gold', u'coast', u'shift']
[u'can', u'look', u'auckland']
[u'carr', u'stand', u'advic']
[u'cemeteri', u'vandal', u'attack', u'spark', u'fenc']
[u'citrus', u'farmer', u'sell', u'fruit', u'illeg']
[u'coal', u'alli', u'releas', u'sustain', u'report']
[u'colli', u'coal', u'miner', u'work']
[u'commonwealth', u'consid', u'drought']
[u'commonwealth', u'calder', u'fund', u'approach']
[u'communiti', u'consult', u'green', u'levi', u'plan']
[u'confer', u'hear', u'region', u'museum', u'fear']
[u'coron', u'rais', u'prospect', u'plate', u'restrict']
[u'costello', u'address', u'budget']
[u'council', u'concern', u'drug', u'alcohol', u'respons']
[u'council', u'doubt', u'benefit', u'auditor', u'general', u'probe']
[u'councillor', u'outlin', u'need', u'transport', u'spend']
[u'council', u'miss', u'warship']
[u'council', u'say', u'resid', u'understand', u'rate', u'rise']
[u'council', u'seek', u'higher', u'rat', u'million', u'fund']
[u'council', u'worri', u'highway', u'hamper', u'tourism']
[u'court', u'hear', u'navi', u'approv', u'westralia', u'hose']
[u'court', u'hear', u'palm', u'island', u'riot']
[u'court', u'jail', u'drink', u'driver']
[u'court', u'knock', u'inverel', u'brothel', u'opposit']
[u'crime', u'fight', u'face', u'overhaul']
[u'meet', u'narrabri']
[u'defenc', u'associ', u'welcom', u'king', u'inquiri']
[u'deporte', u'famili', u'want', u'privaci', u'govt', u'say']
[u'detain', u'toddler', u'deni', u'playgroup', u'access']
[u'detent', u'rule', u'surpris', u'advoc']
[u'dont', u'play', u'polit', u'bundaberg', u'staff', u'beatti']
[u'decid', u'mcgee', u'sentenc', u'appeal']
[u'draft', u'workplac', u'death', u'law', u'win', u'union', u'support']
[u'drought', u'forc', u'farmer', u'abandon', u'land']
[u'drug', u'haul', u'accus', u'face', u'evict']
[u'eagl', u'pair', u'break', u'silenc', u'nightclub', u'incid']
[u'eagl', u'pair', u'break', u'silenc', u'nightclub']
[u'east', u'coast', u'vineyard', u'benefit', u'boutiqu', u'wineri']
[u'elliott', u'win', u'right', u'redback']
[u'energi', u'firm', u'beat', u'rock', u'power', u'plan']
[u'engin', u'innov', u'cut', u'diesel', u'consumpt']
[u'ethiopian', u'drought', u'flood', u'caus', u'food', u'shortag']
[u'examin', u'aborigin', u'teen', u'leav', u'school', u'govt', u'tell']
[u'expert', u'question', u'forestri', u'tasmania', u'return']
[u'expert', u'warn', u'indoor', u'pollut', u'danger']
[u'explos', u'shake', u'british', u'consul', u'york']
[u'explos', u'chechnya']
[u'famili', u'fear', u'miss', u'teen']
[u'famili', u'plead', u'releas', u'australian', u'hostag']
[u'farina', u'rap', u'tunnel', u'incid']
[u'farmer', u'seek', u'wild', u'fund']
[u'figur', u'highlight', u'high', u'pregnant', u'smoker', u'number']
[u'fisher', u'want', u'outflow', u'chang']
[u'flatley', u'give', u'hope', u'futur']
[u'foot', u'head', u'menzi', u'institut']
[u'foreign', u'worker', u'equal', u'right', u'union']
[u'govt', u'advis', u'fin', u'anti', u'howard', u'graffiti']
[u'high', u'school', u'teacher', u'get', u'jail', u'sentenc']
[u'freo', u'sweat', u'longmuir', u'pie', u'clash']
[u'fund', u'marin', u'centr', u'expans']
[u'game', u'baton', u'snub', u'see', u'fait', u'accompli']
[u'gate', u'open', u'agfest']
[u'gerrard', u'hint', u'stay', u'liverpool']
[u'gloucest', u'shire', u'rate', u'rise', u'smaller']
[u'gold', u'price', u'predict', u'doubl']
[u'govt', u'dismiss', u'anger', u'emerg', u'headquart']
[u'govt', u'stand', u'explor', u'grant']
[u'govt', u'urg', u'listen', u'communiti', u'cdep']
[u'hall', u'creek', u'polic', u'alcohol', u'restrict']
[u'hall', u'tip', u'swan', u'captainci']
[u'hardi', u'grape', u'harvest', u'crush', u'record']
[u'harnwel', u'lead', u'glori']
[u'hewitt', u'withdraw', u'foot', u'fault']
[u'hop', u'european', u'expo', u'boost', u'seafood', u'sale']
[u'hous', u'label', u'racist', u'migrant', u'comment']
[u'hous', u'plan', u'spark', u'koala', u'fear']
[u'human', u'error', u'disrupt', u'emerg', u'polic', u'line']
[u'illawarra', u'group', u'school', u'manag']
[u'illeg', u'log', u'blame', u'conflict']
[u'india', u'launch', u'satellit']
[u'india', u'pakistan', u'resum', u'talk']
[u'inquiri', u'consid', u'cattl', u'tick', u'fever', u'issu']
[u'tripl', u'public', u'servant', u'matern', u'leav']
[u'islam', u'council', u'appeal', u'wood', u'releas']
[u'review', u'undermin', u'medicar', u'principl', u'labor']
[u'jackson', u'camp', u'worri', u'blackmail', u'wit', u'say']
[u'jail', u'adler', u'give', u'favour', u'treatment', u'brogden']
[u'judg', u'critic', u'detent', u'health', u'servic']
[u'judg', u'declar', u'england', u'mistrial']
[u'judg', u'say', u'baxter', u'detaine', u'neglect']
[u'push', u'sugar', u'concess', u'ambassador']
[u'labor', u'criticis', u'mean', u'internet', u'bank', u'fee']
[u'land', u'council', u'prais', u'nativ', u'titl', u'studi', u'support']
[u'leaki', u'truck', u'leav', u'cross', u'countri', u'toxic', u'trail']
[u'lehmann', u'get', u'saca', u'back', u'select', u'panel']
[u'liber', u'question', u'sick', u'speaker', u'trip']
[u'librari', u'buy', u'piec', u'adelaid', u'histori']
[u'charg', u'child', u'porn', u'work', u'hospit']
[u'custodi', u'cathedr']
[u'plead', u'guilti', u'child', u'porn', u'charg']
[u'plead', u'guilti', u'cocain', u'haul']
[u'march', u'trade', u'deficit']
[u'massiv', u'timber', u'theft', u'snowi', u'park', u'alleg']
[u'mayor', u'dunda', u'elector']
[u'mayor', u'back', u'donald', u'mackay', u'memori']
[u'mayor', u'confid', u'rate', u'rise', u'support']
[u'mayor', u'promis', u'brisban', u'powerhous']
[u'miller', u'play', u'close', u'chest']
[u'million', u'miss', u'iraq', u'reconstruct', u'fund']
[u'millward', u'vow', u'fight', u'helen', u'suspens']
[u'minist', u'get', u'hospit', u'harass', u'assur']
[u'fund', u'need', u'south', u'east', u'infrastructur']
[u'mourinho', u'heroic', u'land', u'year', u'deal']
[u'back', u'devaugh', u'recommend']
[u'murray', u'say', u'origin', u'spot', u'grab']
[u'nasa', u'find', u'opportun', u'bog']
[u'nasa', u'hit', u'troubl', u'shuttl', u'rehears']
[u'near', u'record', u'trade', u'deficit']
[u'newcastl', u'form', u'fulham']
[u'newman', u'get', u'game', u'baton', u'honour']
[u'news', u'corp', u'quarter', u'profit', u'drop']
[u'sign', u'help', u'protect', u'endang', u'mari', u'river']
[u'volleybal', u'coach', u'set', u'lofti', u'goal']
[u'nickel', u'turn', u'heat', u'power']
[u'north', u'push', u'tech', u'colleg']
[u'reject', u'defam', u'propos']
[u'govt', u'water', u'abus', u'child', u'letter']
[u'nurs', u'strike']
[u'offic', u'sentenc', u'death', u'worker', u'murder']
[u'price', u'tip', u'stay']
[u'onesteel', u'wire', u'rope', u'plant', u'invest', u'bring']
[u'opposit', u'fight', u'north', u'coast', u'polic']
[u'opposit', u'predict', u'bigger', u'budget', u'deficit']
[u'palestinian', u'begin', u'municip', u'elect']
[u'palestinian', u'teen', u'kill', u'clash', u'soldier']
[u'papunya', u'council', u'defend', u'manag']
[u'parent', u'encourag', u'research', u'stroller', u'safeti']
[u'pell', u'abbott', u'paint', u'win', u'bald', u'archi']
[u'pharmacist', u'play', u'greater', u'role', u'treat']
[u'pharmacist', u'urg', u'govt', u'stand', u'firm']
[u'pike', u'stand', u'health', u'servic', u'commission']
[u'pinochet', u'judg', u'announc', u'retir']
[u'govt', u'reconsid', u'forestri', u'chang']
[u'polic', u'vote', u'forc', u'australian']
[u'polic', u'associ', u'rais', u'cell', u'overcrowd']
[u'polic', u'interview', u'drain']
[u'polic', u'seek', u'help', u'solv', u'newman', u'crime']
[u'polic', u'await', u'crash', u'inquiri', u'outcom']
[u'poll', u'open', u'elect']
[u'pope', u'smash', u'ebay', u'record']
[u'power', u'firm', u'urg', u'boost', u'communiti', u'contribut']
[u'public', u'ask', u'report', u'speed', u'driver']
[u'public', u'hospit', u'nurs', u'strike']
[u'public', u'need', u'time', u'know', u'costello']
[u'coron', u'call', u'inform', u'patel', u'case']
[u'race', u'coverag', u'disput', u'creat', u'concern']
[u'report', u'find', u'soldier', u'death', u'cover']
[u'resid', u'protest', u'maleni', u'supermarket', u'plan']
[u'review', u'consid', u'councillor']
[u'rfds', u'report', u'turbul', u'foreign', u'doctor']
[u'rural', u'financi', u'counsellor', u'train', u'increas']
[u'sarina', u'council', u'put', u'focus', u'water', u'woe']
[u'search', u'resum', u'miss', u'woman']
[u'offend', u'plead', u'guilti', u'prison', u'employe']
[u'shire', u'grant', u'temporari', u'beach', u'smoke']
[u'slow', u'progress', u'frustrat', u'indigen', u'campaign']
[u'smith', u'clear', u'luck', u'lucki']
[u'solut', u'need', u'hous', u'age', u'australian', u'say']
[u'stage', u'showdown', u'gun']
[u'stripper', u'remov', u'cloth', u'artist', u'court']
[u'studi', u'examin', u'elder', u'experi', u'asthma']
[u'studi', u'flag', u'anaesthet', u'effect']
[u'studi', u'highlight', u'anaesthet', u'risk']
[u'suffer', u'safin', u'crash', u'rome']
[u'sydney', u'water', u'worker', u'strike', u'support', u'colleagu']
[u'teacher', u'offer']
[u'teacher', u'snub', u'offer']
[u'terror', u'accus', u'committ', u'hear', u'adjourn']
[u'test', u'clear', u'parliament', u'powder', u'mysteri']
[u'texa', u'target', u'sexi', u'cheerlead']
[u'trucki', u'want', u'flexibl', u'regul']
[u'truck', u'firm', u'plead', u'guilti', u'work', u'case']
[u'trial', u'summer']
[u'trial', u'summer', u'seri']
[u'horror', u'road', u'smash']
[u'leader', u'minut', u'campaign']
[u'union', u'maintain', u'attack', u'hospit', u'manag']
[u'marin', u'shoot', u'unarm', u'iraqi', u'self', u'defenc']
[u'retail', u'join', u'australian', u'wool', u'boycott']
[u'soldier', u'arrest', u'traffic', u'ammunit']
[u'vietnam', u'back', u'australian', u'attend', u'asean']
[u'vietnam', u'support', u'aust', u'summit']
[u'voter', u'elect']
[u'walk', u'trail', u'enhanc', u'visitor', u'experi']
[u'water', u'treatment', u'plant', u'time']
[u'water', u'worker', u'tell', u'strike']
[u'town', u'har', u'wind', u'power']
[u'util', u'futur', u'parliament']
[u'arent', u'gather', u'celebr', u'shortag', u'hit']
[u'westpac', u'reveal', u'record', u'profit']
[u'white', u'powder', u'spark', u'parliament', u'evacu']
[u'worker', u'refus', u'return', u'build', u'site']
[u'youth', u'crime', u'knee', u'jerk', u'reaction']
[u'bodi', u'iraq']
[u'acci', u'press', u'meaning', u'reform']
[u'hero', u'ambrosini', u'brace', u'titl', u'showdown', u'snub']
[u'acoss', u'press', u'posit', u'welfar', u'reform']
[u'seek', u'increas', u'support', u'public', u'school']
[u'hour', u'clinic', u'reliev', u'hospit', u'pressur']
[u'airport', u'temporari', u'arriv', u'facil', u'run']
[u'alcohol', u'plan', u'work', u'cherbourg']
[u'qaeda', u'plot', u'kill', u'musharraf', u'foil']
[u'chief', u'attack', u'govt', u'medic', u'scandal']
[u'focus', u'societi', u'neediest']
[u'anti', u'plastic', u'campaign', u'bag', u'tasmanian', u'year']
[u'anti', u'smoke', u'law', u'threaten', u'cigar', u'bar']
[u'pleas', u'oversea', u'talk']
[u'appeal', u'lead', u'tougher', u'sentenc']
[u'appoint', u'boost', u'mine']
[u'australian', u'arrest', u'link', u'bali', u'heroin', u'haul']
[u'australian', u'deni', u'jackson', u'molest']
[u'babi', u'lleyton']
[u'decid', u'challeng']
[u'baxter', u'protest', u'fin', u'nude', u'statement']
[u'beatti', u'launch', u'small', u'busi', u'boost']
[u'bellami', u'say', u'citi', u'countri', u'clash', u'origin', u'trial']
[u'betfair', u'licenc', u'think', u'hing', u'race']
[u'blair', u'lead', u'labour', u'histor', u'victori']
[u'blair', u'elect']
[u'blair', u'win', u'term']
[u'bowl', u'club', u'bias', u'surviv']
[u'british', u'conserv', u'leader', u'stand']
[u'break', u'hill', u'nurs', u'join', u'state', u'wide', u'stoppag']
[u'brother', u'acquitt', u'chang', u'abberton', u'case']
[u'brumbi', u'lose', u'smith', u'chief', u'encount']
[u'behaviour', u'review', u'student', u'dump']
[u'driver', u'racial', u'taunt', u'dump', u'student']
[u'bush', u'demot', u'armi', u'general', u'ghraib', u'scandal']
[u'australian', u'polic', u'leav']
[u'fish', u'hatcheri', u'site', u'sell']
[u'care', u'urg', u'pacif', u'highway', u'upgrad']
[u'catch', u'hand', u'corbi', u'deserv', u'jail', u'prosecut']
[u'charg', u'drop', u'mcdonald', u'shoot', u'accus']
[u'child', u'leav', u'wrong', u'deport', u'beatti']
[u'citi', u'beat', u'countri', u'lismor']
[u'citi', u'lead', u'countri']
[u'clarkson', u'back', u'spider', u'sledg', u'pledg']
[u'coff', u'council', u'back', u'rate', u'rise']
[u'combin', u'drug', u'improv', u'heart', u'diseas', u'surviv']
[u'complaint', u'air', u'club', u'sale', u'plan']
[u'conman', u'ban', u'aborigin', u'communiti']
[u'corbi', u'bali', u'court']
[u'corbi', u'prosecutor', u'final', u'submiss']
[u'corbi', u'trial', u'resum']
[u'corbi', u'wit', u'stab', u'jail']
[u'coron', u'deliv', u'fatal', u'polic', u'shoot', u'find']
[u'coron', u'urg', u'tighten', u'learner', u'driver', u'law']
[u'correct', u'surgeri', u'fast', u'track', u'patel', u'patient']
[u'costa', u'urg', u'support', u'highway', u'flyover']
[u'council', u'consid', u'entertain', u'centr', u'link', u'rate']
[u'council', u'plan', u'chemic', u'spill', u'emerg']
[u'council', u'power', u'impound', u'danger', u'dog']
[u'council', u'spend', u'fund', u'freeli']
[u'council', u'prosecut', u'grazier', u'stock', u'rout']
[u'council', u'welcom', u'wodonga', u'hous', u'plan']
[u'crow', u'cling', u'slender', u'lead']
[u'daniel', u'morcomb', u'parent', u'launch', u'foundat']
[u'darbi', u'fall', u'sentenc', u'neighbour']
[u'darter', u'look', u'good', u'start', u'jaeger']
[u'deadlin', u'loom', u'object', u'valuat', u'rise']
[u'defenc', u'dept', u'land', u'sale']
[u'demon', u'storm', u'home', u'crow']
[u'desert', u'festiv', u'consid', u'chang']
[u'detain', u'children', u'allow', u'play', u'group', u'visit']
[u'dfat', u'issu', u'philippin', u'travel', u'warn']
[u'attack', u'outcri', u'mcgee', u'case']
[u'drink', u'drive', u'land', u'jail']
[u'driver', u'jail', u'fatal', u'kiama', u'accid']
[u'driver', u'sight', u'escap', u'inmat']
[u'drought', u'scuttl', u'saudi', u'sheep', u'export', u'plan']
[u'stand', u'tree', u'clear', u'polici']
[u'dump', u'tils', u'sign', u'raider']
[u'eas', u'demand', u'like', u'rat', u'steadi']
[u'employ', u'workplac', u'death']
[u'apologis', u'uranium', u'leak']
[u'plead', u'guilti', u'ranger', u'contamin']
[u'court', u'ranger', u'contamin']
[u'everton', u'welcom', u'champion', u'leagu', u'rule']
[u'extend', u'regul', u'threaten', u'competit']
[u'factori', u'worker', u'govt', u'save', u'job']
[u'famili', u'plea', u'help', u'solv', u'elder', u'man', u'murder']
[u'fear', u'hold', u'kosciuszko', u'plan', u'fund']
[u'feedlot', u'look', u'live', u'sheep', u'export', u'benefit']
[u'femal', u'swim', u'session', u'return']
[u'forc', u'late', u'chang', u'crow']
[u'ford', u'attack', u'corbi', u'testimoni', u'court', u'tell']
[u'forestri', u'group', u'defend', u'timber', u'price']
[u'black', u'jone', u'coach', u'samoa', u'tour']
[u'school', u'chaplain', u'bail', u'child']
[u'forum', u'focus', u'shortag', u'remot', u'child', u'care']
[u'fuel', u'cost', u'put', u'brake', u'grey', u'nomad']
[u'fund', u'allow', u'fight', u'suicid']
[u'garcia', u'grab', u'shoot', u'lead', u'north', u'carlolina']
[u'goulburn', u'industri', u'ask', u'slash', u'water', u'usag']
[u'goulburn', u'valley', u'crash', u'leav', u'dead']
[u'govt', u'appoint', u'wild', u'control', u'manag']
[u'govt', u'confid', u'hostag', u'aliv']
[u'govt', u'confid', u'wood', u'aliv']
[u'govt', u'consid', u'reloc', u'children', u'hospit']
[u'govt', u'abandon', u'land', u'democrat']
[u'govt', u'offer', u'region', u'road', u'fund']
[u'green', u'year', u'upper', u'hous', u'term']
[u'hackett', u'predict', u'montreal', u'magic', u'australia']
[u'high', u'incom', u'earner', u'super', u'break']
[u'holli', u'stand', u'asid', u'consid', u'charg']
[u'hope', u'upgrad', u'water', u'suppli', u'flow']
[u'look', u'altern', u'pesticid']
[u'hospit', u'nurs', u'strike']
[u'howard', u'forecast', u'cautious', u'budget']
[u'hugh', u'knock', u'tiger', u'coach']
[u'human', u'antioxid', u'help', u'mice', u'live', u'longer']
[u'hurrican', u'blue', u'edg', u'closer', u'semi']
[u'illeg', u'fish', u'boat', u'catch', u'pacif']
[u'indigen', u'health', u'servic']
[u'indonesian', u'surgeon', u'train', u'darwin', u'hospit']
[u'industri', u'back', u'plan', u'tackl', u'shonki', u'tour', u'guid']
[u'inquiri', u'begin', u'driver', u'dump', u'student']
[u'jaeger', u'edg', u'darter', u'netbal', u'open']
[u'jail', u'thief', u'question', u'legal']
[u'jail', u'employe', u'work', u'inmat', u'attack']
[u'journo', u'lampard', u'year', u'best']
[u'juri', u'acquit', u'sheep', u'feedlot', u'contamin']
[u'king', u'open', u'singapor', u'campaign']
[u'labour', u'doubt', u'victori']
[u'lamb', u'skin', u'price', u'drop']
[u'lenton', u'domin', u'brisban', u'pool']
[u'lewi', u'air', u'teacher', u'gambier', u'claim']
[u'long', u'servic', u'leav', u'entitl', u'chang']
[u'break', u'time', u'spanish', u'titl', u'race']
[u'mango', u'grower', u'keen', u'establish', u'european', u'tie']
[u'plead', u'guilti', u'pawnbrok', u'activ']
[u'mayor', u'cast', u'doubt', u'water', u'pipelin']
[u'mayor', u'defend', u'push', u'polic', u'power']
[u'mayor', u'push', u'higher', u'region', u'councillor']
[u'mcisaac', u'put', u'focus', u'breaker', u'season']
[u'medic', u'emerg', u'forc', u'ferri', u'turnaround']
[u'meet', u'like', u'strong', u'rate', u'rise', u'plan']
[u'milk', u'supplier', u'form', u'collect', u'bargain', u'group']
[u'minist', u'reject', u'propos', u'label', u'chang']
[u'molik', u'french', u'open']
[u'troop', u'rout', u'iraq']
[u'offer', u'boost', u'anim', u'export']
[u'mourner', u'gather', u'rivkin', u'funer']
[u'air', u'ambul', u'servic', u'worri']
[u'rais', u'medicar', u'rort', u'claim']
[u'seek', u'drought', u'measur', u'rethink']
[u'nation', u'trust', u'seek', u'public', u'financ', u'smith']
[u'galleri', u'manag', u'name', u'soon']
[u'deal', u'black', u'coach']
[u'york', u'polic', u'investig', u'small', u'blast']
[u'watch', u'elect', u'promis']
[u'norfolk', u'resid', u'face']
[u'north', u'coast', u'campaign', u'help', u'prompt', u'workplac', u'death']
[u'nullarbor', u'farmer', u'elig', u'drought']
[u'nurs', u'agre', u'strike']
[u'way', u'meet', u'nation', u'park', u'ecosystem', u'plan']
[u'opposit', u'put', u'spotlight', u'infrastructur', u'fund']
[u'parramatta', u'get', u'mayor']
[u'penalti', u'tah', u'break']
[u'pilkadari', u'grab', u'share', u'seoul', u'lead']
[u'pirsa', u'defend', u'shellfish', u'farm', u'approv']
[u'plan', u'bus', u'servic']
[u'apologis', u'wrong', u'deport']
[u'sorri', u'australian', u'deport']
[u'polic', u'crack', u'bail', u'breach']
[u'polic', u'deal', u'intersect', u'infring']
[u'polic', u'hunt', u'servic', u'station', u'bandit']
[u'polic', u'link', u'aust', u'arrest', u'bali']
[u'polic', u'probe', u'mildura', u'fire']
[u'poll', u'close']
[u'public', u'cast', u'vote', u'council', u'elect']
[u'public', u'longreach', u'council', u'plan']
[u'push', u'reduc', u'mine', u'industri', u'chopper', u'death']
[u'tour', u'industri', u'urg', u'readi', u'boom']
[u'queen', u'open', u'melbourn', u'game']
[u'race', u'club', u'begin', u'carniv', u'plan', u'earli']
[u'statement', u'calm', u'market']
[u'wont', u'rule', u'rate', u'rise']
[u'regent', u'theatr', u'get', u'heritag', u'list']
[u'releg', u'dogfight', u'take', u'centr', u'stage', u'premier']
[u'research', u'deni', u'earth', u'hellish', u'time']
[u'resid', u'debat', u'abalon', u'farm', u'impact']
[u'rivkin', u'farewel', u'funer']
[u'rivkin', u'children', u'reflect', u'father', u'peac']
[u'romania', u'thiev', u'build', u'bogus']
[u'brew', u'fund']
[u'sandi', u'invit', u'spark', u'secur', u'scare']
[u'school', u'fund', u'spark', u'pork', u'barrel']
[u'scottish', u'leagu', u'await', u'latest', u'twist']
[u'seven', u'face', u'court', u'cannabi', u'bullet']
[u'action', u'mele']
[u'shire', u'presid', u'hit', u'assist', u'sheep']
[u'shoot', u'accus', u'drive', u'victim', u'hospit']
[u'sorenstam', u'stumbl', u'virginia']
[u'springborg', u'dissatisfi', u'hospit', u'meet']
[u'staff', u'shortag', u'forc', u'closur', u'intens', u'care']
[u'state', u'growth', u'pleas', u'govt']
[u'state', u'beat', u'feder', u'respons', u'calder']
[u'student', u'help', u'christma', u'clean']
[u'studi', u'highlight', u'concern', u'canberra', u'driver']
[u'suicid', u'bomber', u'kill', u'iraqi', u'polic']
[u'suicid', u'mental', u'health', u'facil', u'usual']
[u'teen', u'plead', u'guilti', u'shoe', u'theft']
[u'tenur', u'nurs', u'charg', u'child', u'porn']
[u'season', u'ahead']
[u'time', u'run', u'drought', u'applic']
[u'toxic', u'wast', u'roadshow', u'ralli']
[u'tribun', u'come', u'hard', u'brawl', u'footbal']
[u'tribun', u'crack', u'video', u'evid']
[u'troop', u'return', u'solomon', u'island']
[u'tweed', u'council', u'rethink', u'park', u'sale']
[u'uefa', u'finalist', u'cska', u'hope', u'escap', u'firework', u'wrath']
[u'uefa', u'hit', u'mourinho', u'goal', u'jibe']
[u'deni', u'somalia', u'incurs']
[u'extend', u'econom', u'sanction', u'syria']
[u'investig', u'possibl', u'zarqawi', u'hospit', u'visit']
[u'pledg', u'investig', u'arm', u'smuggl', u'claim']
[u'govt', u'help', u'fund', u'bendigo', u'bank']
[u'violenc', u'rise', u'iraq']
[u'group', u'seek', u'fund', u'indigen', u'radio', u'station']
[u'parliament', u'approv', u'vote', u'valu']
[u'waratah', u'break', u'red', u'hoodoo']
[u'wit', u'deni', u'jackson', u'abus']
[u'wood', u'captur', u'polit', u'gain']
[u'workshop', u'seek', u'address', u'citi', u'centr', u'plan', u'worri']
[u'world', u'record', u'attempt', u'highlight', u'domest', u'violenc']
[u'presum', u'dead', u'plane', u'crash']
[u'believ', u'kill', u'plane', u'crash']
[u'dead', u'baghdad', u'blast']
[u'call', u'fund', u'boost', u'skill', u'shortag']
[u'angelina', u'joli', u'pakistani', u'plan', u'reloc']
[u'anti', u'protest', u'target', u'lisa']
[u'astrolog', u'nasa', u'comet', u'plan']
[u'auditor', u'general', u'examin', u'report', u'grant']
[u'aust', u'leav', u'philippin', u'clueless', u'deporte', u'search']
[u'award', u'honour', u'program', u'promot', u'good', u'health']
[u'hornbi', u'michael', u'enni', u'interview']
[u'blair', u'keep', u'brown', u'shuffl', u'cabinet']
[u'brisban', u'power', u'criticis', u'unnecessari']
[u'brother', u'appeal', u'wood', u'releas']
[u'bulldog', u'shock', u'lion', u'gabba']
[u'bush', u'hail', u'latvia', u'freedom']
[u'busi', u'group', u'critic', u'long', u'servic', u'leav']
[u'cameron', u'ling', u'interview']
[u'canterburi', u'beat', u'otago', u'book', u'super', u'semi', u'berth']
[u'maker', u'urg', u'instal', u'extra', u'safeti', u'featur']
[u'chelsea', u'celebr', u'late', u'charlton']
[u'chief', u'prosecutor', u'criticis', u'depart', u'fund']
[u'chief', u'ralli', u'kill', u'brumbi', u'final', u'hop']
[u'comeback', u'cat', u'ambush', u'saint']
[u'critic', u'object', u'claim', u'uphold', u'tortur']
[u'cyclist', u'ralli', u'death']
[u'danih', u'satisfi', u'demon']
[u'death', u'toll', u'chines', u'coal', u'blast', u'rise']
[u'rosa', u'control', u'montoya', u'barca', u'smash']
[u'doctor', u'appeal', u'jami', u'oliv', u'help']
[u'downer', u'unsway', u'hostag', u'video']
[u'dragon', u'ring', u'rabbitoh']
[u'dravid', u'hurri', u'indian', u'captain']
[u'economist', u'doubt', u'courag', u'push', u'reform']
[u'elder', u'pair', u'kill', u'collis']
[u'englishman', u'finch', u'fli', u'italian', u'open', u'lead']
[u'ethiopian', u'warn', u'post', u'elect', u'violenc']
[u'ewen', u'mckenzi', u'interview']
[u'fatah', u'prevail', u'local', u'elect']
[u'kill', u'baghdad', u'bomb']
[u'friend', u'mother', u'trust', u'jackson', u'children']
[u'garcia', u'stroke', u'clear', u'charlott']
[u'govt', u'inquiri', u'find', u'welfar', u'penalti', u'harsh']
[u'gull', u'suspect', u'penguin', u'chlamydia', u'case']
[u'hall', u'keen', u'target', u'kick']
[u'hall', u'keen', u'target', u'kick']
[u'heroin', u'smuggl', u'suspect', u'face', u'court']
[u'hodg', u'back', u'anderson', u'regain', u'england', u'place']
[u'hundr', u'protest', u'bush', u'visit']
[u'indonesia', u'cross', u'sign', u'deal', u'reconstruct']
[u'indonesia', u'suharto', u'hospit']
[u'injur', u'woman', u'miss']
[u'inmat', u'claim', u'seiz', u'prison', u'hostag']
[u'inquiri', u'target', u'indigen', u'unemploy']
[u'inquiri', u'investig', u'complianc', u'deal']
[u'creditor', u'give', u'payout', u'estim']
[u'iraq', u'cabinet', u'post', u'sourc']
[u'kidnapp', u'hour', u'deadlin']
[u'kosmina', u'jump', u'defenc', u'farina']
[u'lake', u'torren', u'reopen']
[u'kill', u'accid']
[u'motorist', u'urg', u'slow', u'king', u'highway']
[u'tip', u'job']
[u'nadal', u'set', u'spanish', u'semi', u'rome']
[u'newcastl', u'scrap', u'subject']
[u'elector', u'law', u'creat', u'coalit', u'brawl']
[u'move', u'bald', u'killer', u'jail']
[u'dead', u'hurt', u'spanish', u'ralli', u'accid']
[u'opposit', u'demand', u'immigr', u'royal', u'commiss']
[u'opposit', u'stand', u'decis', u'elector', u'chang']
[u'palestinian', u'milit', u'rocket', u'isra', u'town']
[u'panther', u'hold', u'raider', u'break']
[u'pietersen', u'fail']
[u'plane', u'crash']
[u'plane', u'board', u'miss', u'north']
[u'plastic', u'campaign', u'want', u'action']
[u'consid', u'death', u'inquiri']
[u'polic', u'arrest', u'link', u'bali']
[u'polic', u'investig', u'man', u'death']
[u'polic', u'search', u'miss', u'teen']
[u'properti', u'boom', u'cool', u'price', u'drop']
[u'protect', u'bogus', u'salesmen', u'useless']
[u'psychiatrist', u'deregist', u'sexual', u'relationship']
[u'raider', u'snatch', u'panther']
[u'ralf', u'set', u'pace', u'spain', u'webber', u'fourth']
[u'rann', u'say', u'consult', u'mcgee', u'probe']
[u'reform', u'renew', u'prison', u'attack']
[u'restor', u'begin', u'histor']
[u'richmond', u'demolish', u'carlton']
[u'export', u'figur', u'worst', u'state']
[u'saint', u'lead', u'dockland', u'battl']
[u'scientist', u'spi', u'wreckag', u'lose', u'mar', u'spacecraft']
[u'score', u'kill', u'burma', u'blast']
[u'scud', u'skip', u'french', u'open']
[u'search', u'continu', u'miss', u'woman']
[u'sharapova', u'bundl', u'german', u'open']
[u'shark', u'steal', u'late', u'warrior']
[u'cambodian', u'worker', u'shoot', u'dead', u'thai', u'factori']
[u'skaif', u'pip', u'ambros', u'perth']
[u'korea', u'sceptic', u'north', u'prepar', u'nuclear', u'test']
[u'smith', u'demand', u'public', u'apolog', u'bravo']
[u'smuggl', u'accus', u'face', u'court']
[u'smuggl', u'accus', u'face', u'court']
[u'studi', u'consid', u'east', u'coast', u'railway', u'rout']
[u'suicid', u'bomb', u'kill', u'iraq']
[u'swan', u'edg', u'bomber', u'snap', u'lose', u'streak']
[u'sydney', u'win', u'start']
[u'taiwan', u'chen', u'defend', u'stanc', u'china', u'visit']
[u'prison', u'guard', u'hostag']
[u'prison', u'sieg', u'continu']
[u'prison', u'sieg', u'stretch', u'night']
[u'tat', u'futur', u'balanc', u'bennett']
[u'teacher', u'fight', u'govt', u'reform']
[u'thousand', u'ralli', u'pakistan', u'qaeda', u'hunt']
[u'blast', u'rock', u'burma']
[u'trade', u'fair', u'teach', u'real', u'live', u'busi', u'student']
[u'trimbl', u'unseat', u'irish', u'hardlin', u'gain']
[u'trulli', u'upstag', u'alonso', u'provision', u'pole']
[u'twin', u'motorcycl', u'crash']
[u'market', u'end', u'week']
[u'vagu', u'intellig', u'north', u'korea', u'nuclear', u'test']
[u'virgin', u'mari', u'stain', u'defac', u'cover']
[u'waratah', u'keep', u'feet', u'grind']
[u'wenger', u'tell', u'real', u'forget', u'rey']
[u'woman', u'deport', u'year', u'aust']
[u'wreckag', u'miss', u'plane']
[u'kill', u'burma', u'bomb', u'blast']
[u'arrest', u'iraqi', u'raid', u'near', u'syrian', u'border']
[u'action', u'urg', u'scabi', u'outbreak']
[u'agassi', u'slam', u'coria', u'semi', u'final', u'defeat']
[u'anti', u'high', u'rise', u'group', u'pleas', u'elect', u'result']
[u'aust', u'program', u'need', u'chang']
[u'australian', u'sheikh', u'appeal', u'wood', u'releas']
[u'australian', u'eat', u'wast', u'food', u'studi']
[u'australian', u'tourist', u'dead', u'suva', u'hotel', u'room']
[u'author', u'hope', u'prison', u'sieg']
[u'weather', u'hamper', u'crash', u'recoveri', u'effort']
[u'beatti', u'sympathi', u'drug', u'traffick']
[u'beatti', u'make', u'emerg', u'stop', u'viewer']
[u'bidder', u'crazi', u'toast', u'draw']
[u'bronco', u'beat', u'bulldog', u'bottler']
[u'budget', u'childcar', u'alloc', u'fall', u'short', u'opposit']
[u'bulldog', u'lead', u'bronco', u'break']
[u'driver', u'charg', u'passeng', u'assault']
[u'bush', u'denounc', u'soviet']
[u'bush', u'pay', u'tribut', u'fall', u'wwii', u'soldier']
[u'children', u'blaze']
[u'china', u'unveil', u'giant', u'panda', u'museum', u'plan']
[u'colombian', u'toll', u'heavi', u'rain', u'mount']
[u'consist', u'kerr', u'lead', u'williamsburg']
[u'costello', u'confirm', u'childcar', u'place', u'increas']
[u'costello', u'focus', u'budget', u'despit', u'leadership']
[u'costello', u'hold', u'fund']
[u'crash', u'survivor', u'unlik', u'polic']
[u'dead', u'explos', u'rock', u'burma']
[u'hasler', u'sheen', u'interview']
[u'eagl', u'streak', u'aliv']
[u'eel', u'easi', u'cowboy']
[u'eel', u'cowboy', u'rude', u'awaken']
[u'europ', u'honour', u'dead']
[u'famili', u'appeal', u'wood', u'releas']
[u'farmer', u'launch', u'action', u'combat', u'drought']
[u'fear', u'hold', u'miss', u'girl']
[u'finegan', u'farewel', u'brumbi']
[u'teen', u'injur', u'smash']
[u'fremantl', u'crush', u'pie']
[u'fremantl', u'crush', u'pie', u'record']
[u'fugit', u'bosnian', u'crimin', u'miss', u'mother']
[u'gallop', u'accus', u'govt', u'lie']
[u'garcia', u'go', u'clear', u'charlott']
[u'govt', u'accus', u'delay', u'school', u'fee', u'review']
[u'govt', u'agre', u'foot', u'legal', u'bill', u'holli']
[u'govt', u'stand', u'firm', u'despit', u'hostag', u'video']
[u'govt', u'urg', u'investig', u'public', u'hospit']
[u'grandstand', u'speak', u'victori', u'shark']
[u'grandstand', u'speak', u'owen', u'finegan']
[u'grandstand', u'speak', u'simon', u'woolford', u'matt']
[u'henin', u'hardenn', u'breez', u'berlin', u'final']
[u'henin', u'hardenn', u'breez', u'past', u'schnyder', u'reach', u'final']
[u'howard', u'earn', u'right', u'decid', u'departur', u'date']
[u'howard', u'pay', u'tribut', u'fall']
[u'indonesian', u'polic', u'admit', u'corbi', u'case', u'flaw']
[u'inmat', u'releas', u'hostag', u'negoti', u'continu']
[u'investig', u'fatal', u'plane', u'crash', u'continu']
[u'iran', u'warn', u'nuclear', u'threat']
[u'iraqi', u'cabinet', u'fill', u'violenc', u'continu']
[u'iraq', u'minist', u'want', u'boost', u'crude', u'export']
[u'karadz', u'miss', u'mother', u'funer']
[u'karmichael', u'hunt', u'andrew', u'ryan', u'interview']
[u'kennedi', u'bag', u'man']
[u'lancast', u'take', u'giro', u'ditalia', u'prologu']
[u'lebanes', u'anti', u'syria', u'leader', u'aoun', u'return', u'exil']
[u'lebanes', u'leader', u'aoun', u'return', u'exil']
[u'makelel', u'seal', u'chelsea']
[u'die', u'polic', u'pursuit']
[u'hospitalis', u'motorcycl', u'accid']
[u'michael', u'hagan', u'ricki', u'stuart', u'interview']
[u'michael', u'witt', u'interview']
[u'local', u'visit', u'kakadu', u'nation', u'park', u'govt', u'say']
[u'mother', u'urg', u'prison', u'sieg']
[u'navi', u'frigat', u'open', u'public']
[u'neil', u'henri', u'brian', u'smith', u'interview']
[u'fairytal', u'finish', u'pauls', u'despit', u'stormer']
[u'norwich', u'soar', u'drop', u'zone']
[u'survivor', u'plane', u'crash']
[u'launch', u'joint', u'cane', u'toad', u'erad', u'effort']
[u'nurs', u'consid', u'strike', u'action']
[u'overdu', u'ratepay', u'face', u'lose', u'properti']
[u'pedestrian', u'kill']
[u'philippin', u'dog', u'shoot', u'world', u'record']
[u'polic', u'investig', u'aussi', u'dead', u'fiji']
[u'polic', u'investig', u'fatal', u'crash']
[u'pope', u'pledg', u'strict', u'line', u'faith']
[u'pope', u'say', u'media', u'spread', u'peac', u'foment', u'violenc']
[u'prison', u'chief', u'reject', u'resign', u'amid', u'sieg']
[u'prison', u'guard', u'threaten', u'sieg']
[u'join', u'forc', u'fight', u'illeg', u'fish']
[u'raider', u'posit', u'attitud']
[u'ranger', u'heart', u'break']
[u'real', u'pressur', u'barcelona']
[u'recoveri', u'mission', u'begin', u'fatal', u'crash']
[u'resurg', u'bull', u'close', u'super', u'semi', u'final', u'spot']
[u'richard', u'ingal', u'domin', u'barbagallo']
[u'risdon', u'inmat', u'releas', u'hostag']
[u'rooster', u'crush', u'woeful', u'knight']
[u'rooster', u'edg', u'knight']
[u'senior', u'iraqi', u'public', u'servant', u'assassin']
[u'research', u'shed', u'light', u'unrecognis', u'act']
[u'vacant', u'seat', u'fill', u'iraq', u'cabinet']
[u'smith', u'propel', u'south', u'africa', u'side']
[u'solid', u'food', u'earli', u'lead', u'ill', u'studi']
[u'somaliland', u'accus', u'illeg', u'incurs']
[u'spencer', u'delay', u'wont', u'affect', u'game', u'commut']
[u'surgic', u'standard', u'aust', u'fall', u'confer']
[u'suspici', u'circumst', u'rule', u'girl']
[u'swan', u'hop', u'silenc', u'knocker']
[u'swan', u'urg', u'budget', u'infrastructur', u'spend', u'cut']
[u'talk', u'resum', u'prison', u'seig']
[u'kill', u'kabul', u'cafe', u'blast']
[u'tiger', u'lead', u'man', u'fest']
[u'time', u'bomb', u'burma', u'blast', u'report']
[u'tollner', u'back', u'propos', u'inland', u'train', u'rout']
[u'tredrea', u'boot', u'port', u'victori']
[u'tredrea', u'lead', u'port', u'charg']
[u'tree', u'outsid', u'parliament', u'hous']
[u'trimbl', u'stand', u'poor', u'ireland', u'elect']
[u'trio', u'arrest', u'abseil']
[u'wayn', u'bennett', u'steve', u'folk', u'interview']
[u'webber', u'start', u'second', u'spain']
[u'webster', u'close', u'maiden', u'european', u'titl']
[u'west', u'coast', u'lead', u'hawk']
[u'whiski', u'claim', u'cancer', u'risk']
[u'worksaf', u'investig', u'crush']
[u'abolit', u'region', u'seat', u'hurt', u'bush']
[u'accc', u'put', u'squeez', u'juic', u'bar']
[u'accid', u'fire', u'emerg', u'servic', u'busi']
[u'aceh', u'reconstruct', u'close', u'zero', u'indonesian']
[u'buy', u'convent', u'centr']
[u'activist', u'warn', u'renew', u'live', u'export', u'campaign']
[u'black', u'forward', u'assault', u'charg']
[u'black', u'spencer', u'confirm', u'england']
[u'attack', u'prompt', u'tafe', u'campus', u'secur', u'review']
[u'audit', u'lead', u'scrutini', u'breast', u'cancer', u'surgeon']
[u'aussi', u'buckl', u'tie', u'second', u'seoul']
[u'australian', u'arrest', u'cannabi', u'charg', u'bali']
[u'australian', u'invent', u'get', u'blood', u'pump']
[u'australian', u'sheikh', u'fli', u'wood']
[u'australian', u'sheikh', u'iraq', u'hostag', u'merci', u'mission']
[u'australian', u'urg', u'respect', u'indonesian', u'court']
[u'baldwin', u'say', u'state', u'respons', u'road', u'cost', u'blow']
[u'barcelona', u'closer', u'championship']
[u'beatti', u'demand', u'judici', u'inquiri', u'immigr']
[u'bell', u'arriv', u'church', u'tower']
[u'potenti', u'shale']
[u'birney', u'refus', u'offer', u'incom', u'support']
[u'blue', u'seven', u'origin', u'rooki']
[u'bomb', u'attack', u'claim', u'soldier']
[u'bowler', u'urg', u'vote', u'weight']
[u'bravo', u'wont', u'apologis', u'race', u'say', u'windi', u'boss']
[u'brumbi', u'red', u'honour', u'macqueen']
[u'budget', u'deliv', u'hospit', u'upgrad']
[u'busi', u'confid', u'slide']
[u'buyer', u'need', u'ethanol', u'industri', u'confer', u'tell']
[u'financi', u'struggl', u'farmer']
[u'crash', u'victim', u'remain', u'hospit']
[u'chappel', u'moodi', u'short', u'list', u'indian', u'coach']
[u'cleal', u'face', u'week']
[u'compo', u'deal', u'injur', u'polic', u'agre']
[u'consortium', u'buy', u'charter', u'boat', u'firm']
[u'cost', u'blowout', u'pilbara', u'iron', u'project']
[u'costello', u'remain', u'silent', u'budget', u'surplus']
[u'costello', u'tailor', u'success', u'friend', u'budget']
[u'council', u'back', u'govt', u'land', u'cut']
[u'council', u'call', u'holiday', u'program', u'combat', u'petrol']
[u'council', u'plan', u'futur', u'need', u'communiti']
[u'council', u'seek', u'manag', u'tourist', u'attract']
[u'council', u'meet', u'librari', u'fund']
[u'council', u'urg', u'comment', u'rail', u'rout', u'prefer']
[u'court', u'hear', u'emot', u'testimoni', u'arm', u'robberi']
[u'court', u'order', u'abalon', u'poacher', u'stay', u'away']
[u'crunch', u'creepi', u'crawli', u'solv', u'pest', u'plagu']
[u'cultur', u'centr', u'cost', u'rise']
[u'dead', u'medic', u'error', u'need', u'attent', u'patient']
[u'deal', u'end', u'religi', u'educ', u'protest', u'timor']
[u'dengu', u'fever', u'awar', u'campaign', u'foreshadow']
[u'dfat', u'confirm', u'bali', u'drug', u'flush', u'advic']
[u'discrimin', u'tribun', u'hear', u'virgin', u'blue', u'case']
[u'disgrac', u'judg', u'challeng', u'report']
[u'dozen', u'job', u'lose', u'milk', u'factori', u'closur']
[u'explain', u'reason', u'appeal']
[u'driver', u'face', u'court', u'high', u'speed', u'roll']
[u'drought', u'cut', u'longreach', u'display']
[u'drought', u'intensifi', u'farmer', u'woe']
[u'drought', u'tighten', u'grip', u'south', u'east']
[u'drought', u'worsen', u'temperatur', u'rise']
[u'drought', u'worsen', u'west']
[u'eagl', u'scrutini', u'review', u'panel']
[u'emerald', u'weather', u'radar', u'consid', u'long']
[u'emerg', u'hotlin', u'trial', u'begin']
[u'benefit', u'test']
[u'europ', u'join', u'rememb', u'world']
[u'express', u'reserv', u'treati', u'sign', u'indonesia']
[u'famili', u'offer', u'donat', u'secur', u'wood', u'releas']
[u'father', u'kill', u'daughter', u'injur', u'accid']
[u'financ', u'dept', u'block', u'region', u'fund', u'holdov']
[u'firefight', u'look', u'control', u'burn']
[u'fisher', u'stress', u'plumb', u'class', u'action', u'loom']
[u'fisher', u'worri', u'offic', u'mean', u'reef', u'closur']
[u'flight', u'normal', u'morn']
[u'saddam', u'minist', u'seek', u'refug']
[u'worker', u'face', u'child', u'sentenc']
[u'forrest', u'win', u'seat', u'independ', u'parliament']
[u'forum', u'focus', u'climat', u'chang']
[u'peopl', u'take', u'hospit', u'hous']
[u'fund', u'pledg', u'cheer', u'orchestra']
[u'reform', u'mark', u'anniversari', u'hate', u'crime']
[u'german', u'expert', u'urg', u'better', u'water', u'conserv']
[u'giraff', u'neck', u'weed']
[u'girl', u'abduct', u'brisban', u'hous']
[u'good', u'rain', u'outlook']
[u'goulburn', u'resid', u'ask', u'water']
[u'govt', u'blame', u'drop', u'backpack', u'number']
[u'govt', u'fund', u'leahi', u'hous', u'revamp']
[u'govt', u'launch', u'eyr', u'peninsula', u'packag']
[u'govt', u'pledg', u'assist', u'sack', u'dairi', u'factori']
[u'govt', u'urg', u'revamp', u'causeway']
[u'green', u'group', u'help', u'manag', u'conserv', u'area']
[u'group', u'urg', u'seek', u'fund', u'invest', u'boost']
[u'grower', u'assur', u'food', u'giant', u'base']
[u'guard', u'fear', u'sieg', u'inmat', u'access', u'person', u'detail']
[u'gyngel', u'resign', u'head']
[u'har', u'club', u'beat', u'plan']
[u'hartson', u'doubl', u'take', u'celtic']
[u'hast', u'council', u'join', u'list', u'council', u'seek']
[u'health', u'dept', u'issu', u'shellfish', u'warn']
[u'hobart', u'prison', u'remain', u'lock']
[u'hospit', u'plan', u'display']
[u'indonesia', u'claim', u'success', u'polio', u'fight']
[u'indonesian', u'ambassador', u'seek', u'detent', u'assur']
[u'high', u'second', u'round', u'asbesto', u'test']
[u'invent', u'keep', u'defect', u'heart', u'beat']
[u'investig', u'metrolin', u'crash', u'begin']
[u'investig', u'rubbish', u'paedophilia', u'claim']
[u'investig', u'hope', u'black', u'box', u'provid', u'answer']
[u'investig', u'survey', u'plane', u'wreckag']
[u'ipart', u'urg', u'freez', u'water', u'cost']
[u'iraq', u'review', u'buy', u'australian', u'wheat']
[u'hear', u'fail', u'resolv', u'nurs', u'disput']
[u'islam', u'cleric', u'back', u'face', u'face', u'negoti']
[u'survey', u'point', u'slower', u'growth']
[u'job', u'ax', u'amid', u'newspap', u'edit', u'go', u'compact']
[u'kerr', u'victori', u'end', u'sorenstam', u'histori']
[u'aid', u'zarqawi', u'catch', u'iraq']
[u'king', u'singapor']
[u'landfil', u'death', u'investig']
[u'leader', u'mark', u'soviet', u'union', u'wwii', u'effort']
[u'lethal', u'stand', u'wound', u'voss']
[u'liber', u'criticis', u'region', u'parliament']
[u'liber', u'parti', u'branch', u'suspend']
[u'librari', u'effort', u'secur', u'award', u'break', u'hill']
[u'lobbi', u'group', u'forward', u'budget', u'prioriti']
[u'lonni', u'loot']
[u'major', u'drug', u'syndic', u'smash']
[u'malthous', u'buck', u'stop']
[u'charg', u'restaur', u'murder']
[u'die', u'head', u'crash', u'near', u'gympi']
[u'undergo', u'mental', u'assess', u'sieg']
[u'maroon', u'miss', u'tonga', u'lockyer', u'admit']
[u'meet', u'seek', u'orthopaed', u'servic', u'report']
[u'migrat', u'whale', u'eden']
[u'miller', u'plead', u'eagl', u'decid', u'charg']
[u'develop', u'move', u'step', u'closer']
[u'shaft', u'rais', u'shire', u'liabil', u'question']
[u'minimum', u'secur', u'escap', u'question', u'trust']
[u'mooney', u'say', u'cyclon', u'report', u'alarmist']
[u'mop', u'rider', u'die', u'highway', u'crash']
[u'farmer', u'elig', u'drought']
[u'shire', u'drought', u'declar']
[u'staff', u'need', u'mental', u'health', u'patient']
[u'moss', u'stay', u'bushrang']
[u'mother', u'say', u'mental', u'health', u'fail', u'patient']
[u'motorcycl', u'muster', u'mishap', u'land', u'hospit']
[u'push', u'ethanol', u'fuel']
[u'question', u'forestri', u'offic', u'closur']
[u'negoti', u'bundaberg', u'surgeon']
[u'councillor', u'elect', u'kimberley', u'shire']
[u'deputi', u'mayor', u'elect', u'kalgoorli', u'boulder']
[u'conflict', u'club', u'interest', u'blue']
[u'noroc', u'chief', u'keen', u'case', u'road', u'meet']
[u'north', u'west', u'elect', u'result', u'announc']
[u'origin', u'squad', u'name']
[u'nurs', u'union', u'call', u'strike', u'action']
[u'oper', u'charg', u'chairlift', u'accid']
[u'opposit', u'seek', u'west', u'tamar', u'highway']
[u'orchestra', u'expect', u'budget', u'fund']
[u'organis', u'happi', u'expo', u'visitor', u'number']
[u'outback', u'town', u'bounc', u'record', u'book']
[u'panel', u'charg', u'weekend', u'game']
[u'parent', u'maintain', u'battl', u'occasion', u'care']
[u'parliament', u'hear', u'age', u'care', u'summit', u'result']
[u'rise', u'help', u'boost', u'nurs', u'number']
[u'plane', u'crash', u'specul', u'unhelp', u'anderson']
[u'plan', u'applic', u'hold', u'council', u'face']
[u'cut', u'unlicens', u'polic', u'internet', u'link']
[u'polic', u'charg', u'pair', u'supermarket', u'hold']
[u'polic', u'crack', u'stawel', u'alcohol', u'abus']
[u'polic', u'earn', u'prais', u'handl', u'post', u'wed']
[u'polic', u'medic', u'emerg', u'accommod']
[u'policeman', u'look', u'forward', u'chiltern', u'post']
[u'polic', u'oper', u'net', u'dodgi', u'driver']
[u'polic', u'probe', u'logan', u'abduct']
[u'polic', u'releas', u'name', u'accid', u'victim']
[u'polic', u'rule', u'charg', u'collier']
[u'polic', u'seek', u'rock', u'attack']
[u'polic', u'seek', u'woman', u'help', u'solv', u'murder']
[u'polic', u'station', u'develop', u'applic', u'track']
[u'pool', u'owner', u'ask', u'water', u'save', u'plan']
[u'princ', u'harri', u'begin', u'british', u'offic', u'train']
[u'princ', u'harri', u'cheat', u'final', u'exam', u'teacher', u'say']
[u'public', u'prais', u'water', u'save', u'effort']
[u'public', u'quiz', u'council', u'chang', u'plan']
[u'introduc', u'background', u'check', u'disabl']
[u'resist', u'feder', u'control', u'drought', u'fund']
[u'squar', u'parad', u'mark', u'anniversari']
[u'renal', u'servic', u'start', u'goulburn']
[u'research', u'back', u'lie']
[u'resid', u'oppos', u'expans', u'aborigin', u'hostel']
[u'resourc', u'stock', u'shine', u'market']
[u'ridson', u'prison', u'remain', u'lockdown']
[u'russia', u'celebr', u'world']
[u'aquacultur', u'promot', u'bali']
[u'scoresbi', u'deni', u'branch', u'stack', u'alleg']
[u'self', u'serv', u'gambl', u'fear', u'unfound', u'govt']
[u'shepherd', u'sign', u'forc']
[u'ship', u'crush', u'africa', u'trawler', u'miss']
[u'sizzl', u'singh', u'clinch', u'charlott', u'crown', u'play']
[u'smith', u'secur', u'bunburi', u'mayor', u'spot']
[u'solicitor', u'admit', u'embezzl', u'client']
[u'south', u'africa', u'pile', u'miseri', u'west', u'indi']
[u'space', u'travel']
[u'springborg', u'remain', u'vocal', u'health', u'woe']
[u'strong', u'tremor', u'hit', u'banda', u'aceh']
[u'student', u'help', u'offset', u'health', u'worker', u'shortag']
[u'sunday', u'trade', u'decis', u'see', u'blow', u'tourism']
[u'talk', u'wool', u'boycott']
[u'tasmanian', u'plug', u'nation', u'grid']
[u'prison', u'sieg', u'end', u'peac']
[u'teen', u'face', u'court', u'connect', u'bali']
[u'thousand', u'watch', u'game', u'launceston']
[u'tini', u'town', u'show', u'nebraska', u'play', u'ball']
[u'tough', u'time', u'ahead', u'tyre', u'giant', u'despit', u'profit']
[u'trezeguet', u'take', u'juve', u'closer', u'titl']
[u'bomb', u'blast', u'damag', u'railway', u'track', u'pakistan']
[u'prison', u'sieg', u'end', u'peac']
[u'central', u'road']
[u'unlicens', u'pest', u'manag', u'bring', u'fine']
[u'watchdog', u'specul', u'north', u'korea', u'nuke']
[u'urologist', u'fin', u'suspend', u'surgeri', u'death']
[u'shame', u'fuel', u'fight', u'pagan', u'tell', u'blue']
[u'volcano', u'help', u'power']
[u'voter', u'geraldton', u'mayor', u'offic']
[u'wast', u'dump', u'roadshow', u'find', u'alli']
[u'waterfront', u'project', u'cost', u'taxpay', u'million']
[u'weather', u'stay', u'good', u'nation', u'park', u'burn']
[u'webster', u'conjur', u'italian']
[u'weekend', u'clash', u'philippin', u'kill']
[u'weir', u'plan', u'concern', u'conserv', u'council']
[u'west', u'coast', u'burn', u'off', u'continu']
[u'wilkinson', u'add', u'lion', u'squad']
[u'woman', u'stab', u'death', u'restaur']
[u'wood', u'famili', u'offer', u'cash', u'payment']
[u'woolworth', u'eye', u'instor', u'pharmaci']
[u'work', u'particip', u'budget', u'centrepiec']
[u'world', u'itch', u'thump', u'aussi']
[u'wyndham', u'east', u'kimberley', u'chief', u'post']
[u'wind', u'farm', u'plan', u'mercer']
[u'abduct', u'girl', u'reunit', u'mother']
[u'accus', u'drug', u'traffick', u'face', u'court']
[u'aceh', u'reconstruct', u'time', u'govt']
[u'health', u'centr', u'promot', u'posit', u'lifestyl']
[u'actu', u'predict', u'budget', u'increas', u'poverti']
[u'afghan', u'singer', u'kill', u'attack']
[u'airport', u'secur', u'baggag', u'handler', u'union']
[u'airport', u'tower', u'get', u'clear']
[u'alloc', u'game', u'ticket']
[u'ambul', u'offic', u'demand', u'escort', u'fend']
[u'andren', u'want', u'child', u'care', u'fund', u'lithgow', u'centr']
[u'anti', u'depress', u'promis', u'cancer', u'fight']
[u'arsenal', u'face', u'nervous', u'wait', u'henri', u'ljungberg']
[u'conced', u'forc', u'tough', u'rival']
[u'hold', u'talk', u'anasta']
[u'author', u'probe', u'alleg', u'dump', u'asbesto', u'resin']
[u'author', u'defend', u'controversi', u'japan', u'textbook']
[u'bali', u'heroin', u'haul', u'investig', u'widen']
[u'berrigan', u'wari', u'wound', u'cowboy']
[u'bishop', u'play', u'game', u'power']
[u'blind', u'adventur', u'remain', u'resili']
[u'book', u'author', u'involv', u'reconcili', u'week', u'launch']
[u'broom', u'shire', u'presid', u'reflect', u'voter']
[u'bruce', u'plug', u'demon', u'gap']
[u'budget', u'point']
[u'budget', u'boost', u'tighten', u'quarantin']
[u'budget', u'deliv', u'iraq', u'solomon', u'fund']
[u'budget', u'deliv', u'post', u'atsic', u'indigen', u'fund']
[u'budget', u'deliv', u'cut']
[u'budget', u'fund', u'csiro', u'upgrad']
[u'budget', u'ignor', u'need', u'student']
[u'budget', u'provid', u'apprenticeship', u'train']
[u'budget', u'focus', u'long', u'term', u'benefit', u'labor']
[u'budget', u'take', u'fight', u'cancer', u'dementia']
[u'budget', u'throw', u'orchestra', u'lifelin']
[u'budget', u'offer', u'drought', u'relief']
[u'bulldog', u'minson', u'take', u'rise', u'star', u'award']
[u'burn', u'off', u'fuel']
[u'bush', u'back', u'georgia', u'separatist', u'provinc']
[u'busi', u'chamber', u'hop', u'zone', u'rebat', u'chang']
[u'busi', u'expect', u'feel', u'prosail', u'fallout']
[u'caffein', u'tablet', u'send', u'wrong', u'messag', u'wallac']
[u'collier', u'speak', u'polic']
[u'campaign', u'combat', u'illeg', u'chariti', u'dump']
[u'canberra', u'roo', u'demon', u'clash', u'sell', u'sort']
[u'car', u'torch', u'perth', u'carpark']
[u'central', u'victoria', u'hop', u'budget', u'road', u'fund']
[u'chariti', u'volunt', u'jail', u'assault', u'kid']
[u'chees', u'recal', u'amid', u'safeti', u'concern']
[u'child', u'safeti', u'watchdog', u'appoint', u'victoria']
[u'claim', u'ethiopian', u'govt', u'strangl', u'polit', u'dissent']
[u'cleal', u'cop', u'match']
[u'club', u'meet', u'hear', u'liquid', u'recommend']
[u'coke', u'plant', u'studi', u'term', u'close', u'complet']
[u'communiti', u'work', u'applaud', u'women', u'honour', u'roll']
[u'consult', u'urg', u'protect', u'tree', u'citi', u'hill']
[u'controversi', u'holocaust', u'memori', u'open']
[u'costello', u'reveal', u'welfar', u'work', u'measur']
[u'costello', u'slash', u'tax', u'revamp', u'welfar']
[u'costello', u'tight', u'lip', u'cut']
[u'council', u'move', u'secur', u'goulburn', u'water', u'suppli']
[u'council', u'pleas', u'bore', u'water', u'flow']
[u'council', u'want', u'vandalis', u'cottag', u'clean']
[u'deni', u'lower', u'standard']
[u'crevass', u'end', u'blind', u'adventur', u'everest', u'attempt']
[u'csiro', u'reject', u'critic', u'wildlif', u'program']
[u'custom', u'pursu', u'suspect', u'toothfish', u'poacher']
[u'dairi', u'boost', u'farm', u'gate', u'milk', u'payment']
[u'dairi', u'farmer', u'shake', u'cost', u'bomaderri', u'job']
[u'darwin', u'detent', u'centr', u'onlin', u'year']
[u'democrat', u'slam', u'budget', u'plan', u'forc', u'parent']
[u'disabl', u'australian', u'wors', u'budget']
[u'disney', u'artist', u'die', u'draw', u'board']
[u'rescu', u'abandon', u'babi', u'kenya']
[u'dog', u'lose', u'morgan', u'suspens']
[u'dog', u'lose', u'tonga', u'week']
[u'drag', u'race', u'feasibl', u'studi', u'complet']
[u'dredg', u'deepen', u'port']
[u'driver', u'readi', u'muddi', u'outback', u'challeng']
[u'drought', u'spark', u'high', u'stock', u'fee', u'price', u'concern']
[u'east', u'coast', u'council', u'undergo', u'local', u'govt', u'review']
[u'elder', u'australian', u'look', u'budget', u'assist']
[u'elect', u'count', u'error', u'greenough', u'shire']
[u'environ', u'commit', u'budget', u'record']
[u'russia', u'leader', u'approv', u'accord', u'boost']
[u'freeway', u'safeti', u'audit']
[u'farmer', u'welcom', u'budget', u'seek', u'reform']
[u'farm', u'group', u'back', u'spray', u'pain', u'killer', u'sheep']
[u'fear', u'plan', u'review', u'halt', u'develop']
[u'femal', u'name', u'polic', u'offic', u'year']
[u'final', u'deploy', u'head', u'iraq']
[u'firebug', u'firefight', u'await', u'sentenc']
[u'armidal', u'patrol', u'boat', u'arriv', u'darwin']
[u'gold', u'coast', u'surfer', u'carv', u'tahitian', u'rain']
[u'govt', u'appeal', u'fail', u'jail', u'child', u'offend']
[u'govt', u'lift', u'skill', u'migrant', u'intak']
[u'govt', u'respons', u'fail', u'asylum', u'seeker']
[u'govt', u'powerless', u'stop', u'communiti', u'store', u'credit']
[u'govt', u'foot', u'widow', u'legal', u'royal']
[u'health', u'group', u'fault', u'budget', u'focus']
[u'hexham', u'job', u'dairi', u'farmer', u'restructur']
[u'hick', u'case', u'delay', u'control', u'hill']
[u'hostag', u'deadlin', u'expir']
[u'immigr', u'offici', u'answer', u'public', u'question']
[u'iran', u'resum', u'enrich', u'relat', u'work']
[u'iraqi', u'polic', u'vent', u'anger', u'bomb']
[u'irish', u'doctor', u'seek', u'rural', u'shortag']
[u'jackson', u'staff', u'deni', u'molest', u'claim']
[u'japan', u'refus', u'access', u'suspect', u'poacher']
[u'japan', u'submit', u'host', u'world']
[u'johansson', u'get', u'chanc', u'queensland', u'red']
[u'june', u'date', u'loom', u'lower', u'eyr', u'peninsula', u'busi']
[u'katter', u'beat', u'nazi', u'comment']
[u'kempsey', u'council', u'urg', u'rethink', u'park', u'sale', u'plan']
[u'kenya', u'move', u'drop', u'embassi', u'bomb', u'charg']
[u'kerri', u'obrien', u'speak', u'shadow', u'treasur', u'wayn', u'swan']
[u'kerri', u'obrien', u'speak', u'treasur', u'peter', u'costello']
[u'point', u'feder', u'budget']
[u'labor', u'refus', u'endors', u'budget', u'cut']
[u'perous', u'wreck', u'identifi', u'solomon']
[u'lend', u'leas', u'talk', u'break']
[u'local', u'govt', u'urg', u'clarif', u'shaft']
[u'lockhart', u'river', u'crash', u'black', u'record', u'arriv']
[u'malik', u'clear', u'suspect', u'bowl', u'action']
[u'arrest', u'alleg', u'drug', u'ring']
[u'mandela', u'file', u'lawsuit', u'protect']
[u'face', u'court', u'restaur', u'slay']
[u'charg', u'omagh', u'bomb']
[u'market', u'close', u'lower', u'quiet', u'trade']
[u'mccain', u'launch', u'produc', u'campaign']
[u'memori', u'servic', u'plan', u'plane', u'crash', u'victim']
[u'face', u'court', u'alleg', u'cocain', u'conspiraci']
[u'mercur', u'get', u'council', u'expand']
[u'miss', u'woman', u'trap', u'shaft']
[u'say', u'support', u'solid']
[u'refund', u'overpay']
[u'nasa', u'test', u'shuttl', u'fuel', u'tank']
[u'nation', u'meet', u'farmer', u'financ']
[u'nation', u'seek', u'tougher', u'law', u'protect', u'rural']
[u'council', u'chief', u'port', u'hedland']
[u'water', u'tank', u'destin', u'tumbi']
[u'north', u'korea', u'blame', u'nuclear', u'test', u'fuss']
[u'shortag', u'centr', u'talent', u'say', u'berrigan']
[u'word', u'wood', u'fate', u'downer']
[u'offici', u'investig', u'foot', u'mouth', u'scare']
[u'armi', u'barrack', u'site', u'sell', u'hous']
[u'opposit', u'disput', u'brack', u'unawar', u'hilton']
[u'opposit', u'mount', u'brickwork', u'factori', u'propos']
[u'outback', u'horror', u'movi', u'make', u'cann', u'debut']
[u'oyster', u'harbour', u'shellfish', u'clear']
[u'paedophil', u'claim', u'shame', u'say', u'premier']
[u'pentagon', u'reject', u'slower', u'closur', u'troop']
[u'peter', u'costello', u'hand', u'tenth', u'feder', u'budget']
[u'philippin', u'mass', u'abduct', u'suspect', u'arrest']
[u'plan', u'meatwork', u'item']
[u'polic', u'fear', u'pocket', u'rocket', u'bike']
[u'polic', u'clash', u'activist', u'papua']
[u'polic', u'steal', u'grader']
[u'polic', u'launch', u'probe', u'invermay', u'shoot']
[u'polic', u'crash', u'victim']
[u'polic', u'reunit', u'wander', u'toddler', u'mother']
[u'polic', u'beat', u'solv', u'north', u'east', u'murder']
[u'port', u'author', u'reject', u'coal', u'export', u'worri']
[u'power', u'brim', u'renew', u'confid']
[u'prison', u'sieg', u'cost']
[u'psychologist', u'fear', u'detaine', u'mental', u'health']
[u'public', u'get', u'chanc', u'wind', u'turbin']
[u'public', u'hospit', u'nurs', u'strike']
[u'public', u'hous', u'wait', u'list', u'slight']
[u'public', u'input', u'seek', u'robe', u'transport']
[u'pub', u'club', u'order', u'turn', u'volum']
[u'pulp', u'paper', u'expans', u'plan', u'promis', u'job', u'boost']
[u'defend', u'propos', u'casual', u'firefight', u'trial']
[u'question', u'time', u'focus', u'death']
[u'ramsi', u'discrimin', u'claim', u'reject']
[u'recoveri', u'continu', u'crash', u'site']
[u'redback', u'offer', u'lehmann', u'deal']
[u'cross', u'issu', u'urgent', u'blood']
[u'rene', u'zellweg', u'marri', u'countri', u'western', u'star']
[u'research', u'target', u'algal', u'bloom']
[u'restructur', u'plan', u'continu', u'murrumbidge']
[u'rise', u'cost', u'threaten', u'oyster', u'grower']
[u'rosecorp', u'reveal', u'stage', u'catherin', u'hill']
[u'brew', u'communiti', u'store', u'credit']
[u'rspca', u'isol', u'unit', u'near', u'complet']
[u'sawmil', u'owner', u'consid', u'exit', u'packag']
[u'senat', u'clash', u'protest', u'incid']
[u'seven', u'south', u'african', u'miner', u'trap', u'gold']
[u'shire', u'fear', u'wild', u'dog', u'spread']
[u'shoe', u'iron', u'british']
[u'silenc', u'wood', u'captor', u'deadlin', u'pass']
[u'polic', u'join', u'hunt', u'british', u'teen', u'killer']
[u'snowdon', u'hit', u'leav', u'detain', u'fishermen']
[u'go', u'bad', u'wrong', u'deport', u'case']
[u'south', u'american', u'arab', u'leader', u'strengthen', u'tie']
[u'speaker', u'woe', u'domin', u'parliament']
[u'steal', u'crash', u'bedroom']
[u'stoner', u'confid', u'secur', u'trick', u'win']
[u'strong', u'earthquak', u'rock', u'sumatra']
[u'strong', u'turnout', u'voter', u'kalbarri', u'ward']
[u'student', u'fin', u'fight', u'threat', u'host', u'safran']
[u'tabl', u'grape', u'industri', u'feel', u'horticultur', u'pinch']
[u'bird', u'start', u'season', u'mother', u'scholz']
[u'terror', u'threat', u'real', u'warn', u'ruddock']
[u'terrorist', u'attack', u'warn', u'australian', u'dili']
[u'thousand', u'wrong', u'treat', u'asthma', u'studi']
[u'thunderbird', u'start', u'season', u'mother', u'sholz']
[u'timber', u'delay', u'expans', u'plan']
[u'tonga', u'go']
[u'toyota', u'post', u'record', u'sale', u'profit']
[u'train', u'welfar', u'alloc', u'acci']
[u'tribun', u'downgrad', u'hunter', u'strike', u'charg']
[u'tribun', u'hear', u'women', u'fake', u'age', u'virgin']
[u'twin', u'bomb', u'disrupt', u'central', u'baghdad']
[u'uefa', u'dangl', u'champion', u'leagu', u'carrot']
[u'underworld', u'figur', u'solicitor', u'charg']
[u'polli', u'tast', u'bush', u'tucker', u'fare']
[u'vacuum', u'studi', u'clean', u'asthma', u'misconcept']
[u'vanston', u'awar', u'year', u'wrong']
[u'vet', u'expect', u'support', u'renew', u'live', u'export']
[u'vicroad', u'say', u'western', u'entranc', u'revamp']
[u'visypak', u'worker', u'strike', u'move', u'casual']
[u'warn', u'star', u'hampshir']
[u'welfar', u'chang', u'tip', u'hurt', u'region']
[u'wilkinson', u'readi', u'roar', u'lion']
[u'woman', u'charg', u'partner', u'death']
[u'women', u'kill', u'injur', u'crash']
[u'wood', u'fate', u'know']
[u'wood', u'fate', u'unpredict', u'deadlin', u'pass']
[u'wool', u'scour', u'respond', u'water', u'emerg']
[u'wrong', u'detent', u'royal', u'commiss', u'call', u'grow']
[u'kill', u'afghan', u'protest', u'alleg', u'koran', u'abus']
[u'bridg', u'link', u'mudge', u'orang']
[u'budget', u'analysi']
[u'accc', u'sue', u'date', u'servic', u'descript']
[u'adelaid', u'compani', u'win', u'stake', u'frigat', u'contract']
[u'legend', u'sheedi', u'celebr', u'year', u'game']
[u'leagu', u'club', u'head', u'head']
[u'candid', u'apologis', u'leaflet', u'blunder']
[u'andren', u'say', u'budget', u'show', u'reason', u'sell', u'telstra']
[u'question', u'govt', u'anti', u'smoke', u'commit']
[u'aussi', u'quartet', u'barbarian', u'squad']
[u'aust', u'jurass', u'tree', u'take', u'root', u'london']
[u'australian', u'institut', u'sport', u'get']
[u'australian', u'generous', u'tsunami', u'chariti', u'say']
[u'autism', u'group', u'highlight', u'work', u'integr']
[u'award', u'highlight', u'green', u'tourism']
[u'basin', u'group', u'get', u'water', u'qualiti', u'offic']
[u'bega', u'mayor', u'stand', u'properti', u'purchas']
[u'pilbara', u'project', u'nomin', u'green', u'award']
[u'birney', u'question', u'motorplex', u'plan', u'cost']
[u'budget', u'deliv', u'hume', u'highway', u'fund', u'princ']
[u'budget', u'deliv', u'boost', u'wage', u'earner']
[u'budget', u'give', u'athlet', u'bed', u'europ']
[u'budget', u'leav', u'battler', u'wors', u'welfar', u'group']
[u'budget', u'orchestr', u'plan', u'music', u'school']
[u'budget', u'reform', u'ignor', u'local', u'condit', u'senat']
[u'budget', u'infrastructur']
[u'budget', u'spark', u'mix', u'respons', u'region']
[u'budget', u'lack', u'infrastructur', u'fund']
[u'bundl', u'outstand', u'issu']
[u'burner', u'smoke', u'clearanc', u'difficulti']
[u'bushfir', u'appeal', u'fund', u'start', u'flow']
[u'bush', u'scheme', u'boost', u'western', u'doctor', u'number']
[u'busi', u'group', u'attack', u'calder', u'fund', u'snub']
[u'busi', u'group', u'divid', u'budget']
[u'caffein', u'tablet', u'storm', u'coffe', u'connolli']
[u'north', u'west', u'technic', u'colleg']
[u'go', u'blood', u'donat']
[u'camera', u'surveil', u'consid', u'baggag', u'handler']
[u'crash', u'victim', u'succumb', u'injuri']
[u'cathol', u'soccer', u'player', u'mass', u'armidal']
[u'blunder', u'affect', u'thousand']
[u'chelsea', u'cruis', u'past', u'unit']
[u'childcar', u'worker', u'hike']
[u'file', u'throw', u'light', u'accus', u'terrorist']
[u'cleveland', u'fish', u'protect', u'area']
[u'commut', u'face', u'disrupt', u'rail', u'worker', u'strike']
[u'condit', u'freeway', u'fund', u'penalis', u'victorian']
[u'contractor', u'fin', u'workplac', u'death']
[u'costello', u'promot', u'budget']
[u'council', u'budget', u'boost', u'civic', u'cultur', u'precinct']
[u'council', u'fear', u'cost', u'build', u'permit']
[u'council', u'drought', u'manag', u'plan', u'remind']
[u'council', u'road', u'fund', u'eas', u'rate', u'rise', u'pressur']
[u'council', u'vote', u'great', u'western', u'tier', u'heritag']
[u'csiro', u'end', u'shark', u'endang', u'speci', u'research']
[u'dairi', u'farmer', u'plant', u'closur', u'anger', u'supplier']
[u'dairi', u'farmer', u'restructur', u'anger', u'union']
[u'danih', u'pleas', u'miller', u'aggress']
[u'darl', u'harbour', u'design', u'comp', u'detail']
[u'darwin', u'hospit', u'spend', u'extra', u'budget', u'fund']
[u'devil', u'nomin', u'threaten', u'speci', u'list']
[u'downer', u'appeal', u'wood', u'releas']
[u'drug', u'ring', u'pay', u'baggag', u'handler', u'court', u'tell']
[u'drug', u'syndic', u'pay', u'baggag', u'handler', u'court', u'tell']
[u'east', u'timor', u'tighten', u'secur', u'australian']
[u'lion', u'coach', u'confid', u'team', u'come']
[u'suprem', u'court', u'justic', u'head', u'royal']
[u'farm', u'group', u'see', u'good', u'budget']
[u'farm', u'relat', u'firm', u'feel', u'drought', u'debt', u'woe']
[u'north', u'mourn', u'crash', u'victim']
[u'fear', u'brigalow', u'belt', u'decis', u'ruin', u'baradin']
[u'feder', u'budget', u'bring', u'mix', u'respons']
[u'feder', u'budget', u'confirm', u'wide', u'burnett', u'elect']
[u'feder', u'budget', u'see', u'offer', u'skill', u'shortag']
[u'finch', u'sign', u'rooster']
[u'fisher', u'urg', u'delay', u'sign', u'marina', u'leas']
[u'foster', u'take', u'control', u'southcorp']
[u'face', u'tree', u'fern', u'theft', u'committ', u'august']
[u'fund', u'boost', u'blue', u'care']
[u'fund', u'alloc', u'dubbo', u'machin']
[u'fund', u'impact', u'pacif', u'highway', u'work']
[u'futur', u'fund', u'spark', u'telstra', u'sale', u'disagr']
[u'giant', u'coach', u'quit', u'communic', u'woe']
[u'gold', u'coast', u'applaud', u'budget']
[u'gold', u'miner', u'secur', u'china', u'explor', u'right']
[u'good', u'samaritan', u'seek', u'compo', u'bash']
[u'govt', u'step', u'help', u'dairi', u'farmer', u'worker']
[u'govt', u'urg', u'track', u'oversea', u'offend']
[u'green', u'group', u'upset', u'tuart', u'fund', u'distribut']
[u'group', u'seek', u'compo', u'airstrip', u'reopen']
[u'gungahlin', u'drive', u'oppon', u'return', u'court']
[u'hand', u'foot', u'mouth', u'diseas', u'alert', u'issu']
[u'harmoni', u'get', u'gold', u'field', u'takeov']
[u'helplin', u'alleg', u'school', u'rape']
[u'hewitt', u'doubt', u'french', u'open']
[u'high', u'price', u'lead', u'slow', u'demand', u'growth']
[u'histor', u'wool', u'mill', u'administr']
[u'hobart', u'antarctica', u'flight', u'realiti']
[u'indigen', u'councillor', u'elect']
[u'indigen', u'health', u'spend', u'disappoint', u'oxfam']
[u'indonesian', u'milit', u'go', u'trial', u'australian']
[u'indonesia', u'dictat', u'suharto', u'leav', u'hospit']
[u'injuri', u'allow', u'practic', u'say', u'webck']
[u'inquiri', u'consid', u'relev', u'eastman', u'mental']
[u'inzamam', u'confid', u'ahead', u'caribbean', u'tour']
[u'iraq', u'suicid', u'bomb', u'kill']
[u'jackson', u'defenc', u'wit', u'admit', u'lie', u'polic']
[u'jewish', u'holocaust', u'memori', u'open', u'berlin']
[u'jone', u'montgomeri', u'welcom', u'europ']
[u'judg', u'hear', u'pipelin', u'compo', u'case', u'visit']
[u'keelti', u'criticis', u'baggag', u'handler', u'drug', u'link', u'leak']
[u'labor', u'reaction', u'budget']
[u'labor', u'vow', u'oppos', u'unfair', u'packag']
[u'labor', u'cost', u'incom', u'earner', u'costello']
[u'labour', u'council', u'unhappi', u'budget']
[u'larkham', u'red', u'clash']
[u'latest', u'accid', u'spark', u'safeti', u'warn']
[u'lazi', u'worker', u'blame', u'sever', u'head', u'polic']
[u'lightfoot', u'head', u'trip', u'inquiri', u'apolog']
[u'lion', u'unit', u'ahead', u'crow', u'game']
[u'local', u'council', u'attend', u'chang', u'gather']
[u'local', u'govt', u'dept', u'get', u'termin', u'payment', u'report']
[u'charg', u'year', u'murder']
[u'face', u'court', u'daughter', u'abduct']
[u'jail', u'child', u'assault']
[u'detail', u'wine', u'grow', u'region']
[u'market', u'campaign', u'aim', u'brand', u'brisban']
[u'mayor', u'question', u'nativ', u'veget', u'council', u'power']
[u'mccartney', u'sister', u'legal']
[u'mcgauran', u'stand', u'chang']
[u'meet', u'discuss', u'croc', u'remov']
[u'miss', u'adelaid']
[u'miss', u'deport', u'australian', u'manila', u'convent']
[u'mix', u'respons', u'budget']
[u'more', u'council', u'lift', u'water', u'sewerag', u'garbag', u'rat']
[u'loss', u'riverina', u'woolcomb']
[u'moruya', u'resid', u'urg', u'shop', u'local']
[u'mother', u'jail', u'arm', u'robberi']
[u'mother', u'plead', u'news', u'miss', u'daughter']
[u'motorcyclist', u'die', u'highway', u'crash']
[u'pleas', u'budget', u'west', u'benefit']
[u'reject', u'attack', u'feder', u'budget']
[u'differ', u'feder', u'budget']
[u'see', u'budget', u'jobless', u'benefit']
[u'lobbi', u'goulburn', u'valley', u'highway', u'fund']
[u'confirm', u'aust', u'cut']
[u'cut', u'expect', u'profit', u'report']
[u'treat', u'sack', u'worker', u'digniti']
[u'nadal', u'reject', u'french', u'open', u'favourit']
[u'nation', u'equin', u'centr', u'jump', u'hurdl']
[u'council', u'chief', u'roebourn']
[u'council', u'chief', u'wyndham', u'east', u'kimberley']
[u'zealand', u'confirm', u'rugbi', u'world']
[u'deliv', u'mix', u'reaction', u'budget']
[u'secur', u'cricket', u'right', u'seven', u'year']
[u'korea', u'ring', u'nuclear', u'alarm', u'bell']
[u'northern', u'territori', u'odd', u'budget']
[u'north', u'queensland', u'project', u'receiv', u'budget', u'boost']
[u'mourn', u'artist', u'perci', u'trezis']
[u'opposit', u'talk', u'water', u'goulburn']
[u'play', u'foot', u'mouth', u'threat']
[u'price', u'hedg', u'fund', u'fear', u'stock']
[u'parti', u'vote', u'cut']
[u'organ', u'grower', u'target', u'bogus', u'oper']
[u'parent', u'tell', u'alleg', u'child', u'rape', u'school']
[u'permit', u'tackl', u'alcohol', u'abus', u'groot', u'eylandt']
[u'highlight', u'telstra', u'budget', u'omiss']
[u'plan', u'afoot', u'kimberley', u'indigen', u'board']
[u'polic', u'probe', u'bateman', u'tool', u'theft']
[u'polic', u'probe', u'fatal']
[u'polic', u'seek', u'wit', u'thuggeri', u'nightclub']
[u'post', u'budget', u'optim', u'drive', u'higher']
[u'pratt', u'round', u'pragu']
[u'pregnant', u'women', u'urg', u'avoid', u'fish']
[u'probe', u'launch', u'binna', u'burra', u'resort', u'blaze']
[u'protest', u'plan', u'propos', u'rate', u'hike']
[u'public', u'rate', u'rise', u'plan']
[u'busi', u'welcom', u'budget']
[u'health', u'arrang', u'medic', u'assess']
[u'push', u'region', u'road', u'fund']
[u'rain', u'bring', u'light', u'relief', u'western']
[u'rat', u'generat', u'mix', u'feel', u'homebuy']
[u'right', u'report', u'cite', u'egypt', u'tortur']
[u'roll', u'stone', u'announc', u'world', u'tour']
[u'scabi', u'infect', u'hospit', u'patient']
[u'secker', u'talk', u'budget', u'benefit']
[u'serial', u'rapist', u'remain', u'jail', u'indefinit']
[u'sharapova', u'rome', u'kuznetsova', u'bite']
[u'small', u'busi', u'find', u'littl', u'budget']
[u'smith', u'bench', u'cowboy', u'bronco', u'clash']
[u'south', u'africa', u'launch', u'provinci', u'competit']
[u'spamalot', u'domin', u'toni', u'nomin']
[u'speed', u'driver', u'final', u'admit', u'guilt']
[u'helen', u'millward', u'foul', u'languag']
[u'kilda', u'coach', u'call', u'tribun', u'reform']
[u'stoush', u'see', u'evict', u'courthous']
[u'struggl', u'knight', u'tri', u'boost', u'moral']
[u'stuart', u'say', u'coach', u'origin', u'excit', u'play']
[u'stuart', u'unfaz', u'give', u'maroon', u'help', u'hand']
[u'studi', u'find', u'shock', u'road', u'safeti', u'affect', u'women']
[u'surgeon', u'quit', u'work', u'hospit']
[u'surgeri', u'death', u'audit', u'improv', u'patient', u'care']
[u'swan', u'share', u'leadership']
[u'task', u'forc', u'advis', u'civic', u'revamp']
[u'cut', u'littl', u'benefit', u'work', u'singl', u'parent']
[u'teenag', u'jail', u'stab', u'friend']
[u'tidi', u'town', u'competit', u'bloom']
[u'see', u'polic', u'clock', u'driver']
[u'tobacco', u'grower', u'urg', u'avoid', u'chop', u'chop', u'risk']
[u'tradit', u'owner', u'involv', u'plan', u'agreement']
[u'treasur', u'union', u'question', u'cut']
[u'truck', u'driver', u'acquit', u'load', u'death']
[u'charg', u'shoot']
[u'union', u'call', u'procedur', u'review', u'scabi']
[u'approv', u'chest', u'iraq', u'afghanistan']
[u'citizen', u'face', u'perth', u'court', u'cocain', u'charg']
[u'offer', u'australian', u'work', u'visa']
[u'probe', u'koran', u'desecr', u'guantanamo']
[u'secret', u'servic', u'probe', u'bush', u'grenad', u'attack']
[u'vanston', u'censur', u'wrong', u'detent']
[u'virgin', u'promot', u'young', u'cheeki', u'imag', u'editor']
[u'visitor', u'centr', u'enjoy', u'campaign', u'result']
[u'vitamin', u'immun']
[u'vitamin', u'lotion', u'help', u'skin', u'cancer', u'fight']
[u'vote', u'miscount', u'doesnt', u'deter', u'councillor']
[u'vote', u'push', u'canadian', u'govt', u'collaps']
[u'warhol', u'portrait', u'go', u'auction']
[u'warn', u'strauss', u'sight']
[u'word', u'erupt', u'memori', u'fund']
[u'seek', u'appeal', u'child', u'offend', u'sentenc']
[u'wood', u'fate', u'unknown']
[u'wrong', u'deport', u'controversi', u'widen']
[u'research', u'bluefin', u'tuna']
[u'aceh', u'state', u'emerg', u'jakarta']
[u'afghan', u'protest', u'koran', u'desecr', u'spread']
[u'afghan', u'riot', u'leav', u'dead']
[u'offspr', u'senior', u'debut']
[u'airport', u'secur', u'boost']
[u'albani', u'trade', u'hour', u'remain', u'issu']
[u'rais', u'reef', u'research', u'fund', u'doubt']
[u'archaeologist', u'uncov', u'thousand', u'artefact']
[u'arno', u'boat', u'harbour', u'open', u'soon']
[u'australian', u'deporte', u'philippin']
[u'australian', u'open', u'champion', u'safin', u'crash']
[u'australia', u'readi', u'bioterror', u'attack']
[u'australian', u'polic', u'alterc']
[u'australian', u'woman', u'wrong', u'deport']
[u'australia', u'femal', u'cyclist']
[u'australia', u'sport', u'futur', u'look', u'bright']
[u'author', u'kill', u'croc', u'mistaken', u'swim']
[u'bali', u'bomb', u'film', u'shoot', u'kimberley']
[u'ballarat', u'council', u'back', u'game', u'medal', u'plan']
[u'bank', u'stock', u'fuel', u'rise']
[u'worker', u'strike', u'day']
[u'bealzey', u'stand', u'firm', u'pledg', u'avoid', u'cut']
[u'beazley', u'propos', u'doubl', u'lowest', u'rate', u'cut']
[u'beazley', u'budget', u'repli']
[u'plan', u'afoot', u'iron', u'mine']
[u'power', u'station', u'plan', u'latrob', u'valley']
[u'black', u'give', u'clue', u'weekend', u'crash']
[u'jellyfish', u'wire', u'vision']
[u'learn', u'walk', u'freak', u'accid']
[u'braund', u'memori', u'receiv', u'govt', u'grant']
[u'brilliant', u'bergkamp', u'inspir', u'arsenal', u'magnific']
[u'budget', u'boost', u'aborigin', u'job', u'program']
[u'budget', u'offer', u'ceduna', u'weather', u'station', u'fund']
[u'group', u'seek', u'fund', u'fleet', u'upgrad']
[u'busi', u'chamber', u'discuss', u'hospit', u'number']
[u'investig', u'trade', u'illeg', u'croc']
[u'medicar', u'cover', u'dental', u'health']
[u'canadian', u'shrub', u'catapult', u'plant', u'speed', u'record']
[u'bomb', u'baghdad', u'market', u'kill']
[u'central', u'farmer', u'welcom', u'rain']
[u'centrelink', u'canva', u'view', u'book', u'practic']
[u'channel', u'countri', u'grazier', u'endur', u'time']
[u'charg', u'childcar', u'centr', u'driver', u'dismiss']
[u'charg', u'drop', u'crash']
[u'chief', u'minist', u'break', u'rank', u'cut']
[u'childcar', u'centr', u'crash', u'prompt', u'insur', u'chang']
[u'childcar', u'fee', u'rise', u'wage', u'hike']
[u'childhood', u'obes', u'oper', u'rise']
[u'children', u'injur', u'kashmir']
[u'cigarett', u'maker', u'forc', u'drop', u'mild', u'claim']
[u'clark', u'win', u'civil', u'rape', u'case', u'appeal']
[u'cole', u'myer', u'report', u'strong', u'sale', u'growth']
[u'commonwealth', u'apologis', u'glitch']
[u'concern', u'grow', u'north', u'korea', u'weapon', u'program']
[u'confer', u'take', u'step', u'whale', u'hunt']
[u'consult', u'help', u'govt', u'replac', u'tent', u'embassi']
[u'consult', u'hold', u'heritag', u'law']
[u'corbi', u'lawyer', u'back', u'keelti', u'critic']
[u'corbi', u'fate', u'judg', u'hand']
[u'corbi', u'team', u'final', u'submiss']
[u'corbi', u'wait', u'verdict']
[u'costello', u'seek', u'thwart', u'opposit']
[u'council', u'oppos', u'etsa', u'generat', u'plan']
[u'council', u'plan', u'airport', u'futur']
[u'council', u'say', u'crown', u'road', u'issu', u'creat', u'extra', u'work']
[u'council', u'look', u'saleyard', u'site']
[u'council', u'urg', u'boost', u'rail', u'link', u'effort']
[u'court', u'snap', u'boy', u'sentenc', u'attack', u'crocodil']
[u'creek', u'drain', u'plan', u'tolmer', u'park']
[u'crow', u'think', u'tall', u'port', u'think', u'small']
[u'cyclist', u'head', u'north', u'aust', u'trek']
[u'dampier', u'bunburi', u'pipelin', u'clear']
[u'debat', u'intensifi', u'budget', u'cut', u'plan']
[u'develop', u'want', u'educ', u'facil', u'condit', u'eas']
[u'dfat', u'apologis', u'perth', u'travel', u'warn']
[u'doctor', u'rais', u'access', u'concern']
[u'doctor', u'group', u'critic', u'budget', u'region', u'impact']
[u'dope', u'posit', u'dethron', u'heavyweight', u'champion']
[u'doubt', u'linger', u'park', u'futur']
[u'driver', u'warn', u'dune', u'danger']
[u'drought', u'farmer', u'face', u'cattl', u'theft']
[u'drug', u'claim', u'prompt', u'airport', u'secur', u'crackdown']
[u'educ', u'union', u'ralli', u'offer']
[u'elector', u'commiss', u'regret', u'elect', u'mistak']
[u'esper', u'weather', u'bureau', u'get', u'fund', u'boost']
[u'european', u'send', u'warn', u'letter', u'iran', u'report']
[u'farmer', u'welcom', u'light', u'rain', u'want']
[u'fear', u'budget', u'outcom', u'compound', u'childcar', u'woe']
[u'feder', u'fund', u'includ', u'outback', u'highway']
[u'film', u'studio', u'help', u'fund', u'devil', u'fight']
[u'flood', u'warn', u'north', u'sydney']
[u'chairman', u'parish', u'die']
[u'hospit', u'apart']
[u'foster', u'secur', u'southcorp', u'control']
[u'arrest', u'hotel', u'break']
[u'peopl', u'charg', u'cattl', u'death']
[u'fund', u'boost', u'kimberley', u'weather', u'station']
[u'gaze', u'end', u'stellar', u'career']
[u'gaze', u'stellar', u'career']
[u'gaze', u'grace']
[u'good', u'time', u'grain', u'grower']
[u'govt', u'allow', u'recov', u'coal']
[u'govt', u'commiss', u'blitz', u'sell', u'anti', u'smoke', u'law']
[u'govt', u'defend', u'contain', u'freight', u'plan']
[u'govt', u'fund', u'indigen', u'secur', u'patrol']
[u'govt', u'initi', u'creat', u'indigen', u'job']
[u'greek', u'scammer', u'jail', u'year']
[u'greenpeac', u'want', u'hunter', u'coal', u'mine']
[u'green', u'rais', u'smith', u'report', u'concern']
[u'health', u'dept', u'push', u'ahead', u'plan']
[u'heroin', u'addict', u'jail', u'dishonesti', u'offenc']
[u'highway', u'clear', u'molass', u'spill']
[u'hop', u'websit', u'fight', u'suicid']
[u'illeg', u'abalon', u'seiz', u'restaur']
[u'indigen', u'health', u'group', u'welcom', u'fuel', u'initi']
[u'injur', u'hewitt', u'hope', u'french', u'open']
[u'inmat', u'charg', u'escap', u'broom', u'jail']
[u'insulin', u'identifi', u'diabet', u'trigger']
[u'intern', u'team', u'observ', u'bougainvill', u'vote']
[u'itali', u'court', u'make', u'impot', u'husband', u'damag']
[u'propos', u'broaden', u'access']
[u'japan', u'investig', u'illeg', u'fish', u'concern']
[u'jone', u'give', u'anasta', u'rugbi', u'stamp', u'approv']
[u'juror', u'hear', u'monkey', u'busi', u'neverland']
[u'kimberley', u'share', u'feder', u'road', u'fund']
[u'kyli', u'costum', u'dress', u'portrait', u'galleri']
[u'labor', u'split', u'emerg', u'budget', u'respons']
[u'labor', u'split', u'budget', u'respons']
[u'langeveldt', u'trick', u'win', u'south', u'africa']
[u'council', u'outrag', u'keelti', u'corbi', u'comment']
[u'lawyer', u'call', u'north', u'west', u'magistr']
[u'life', u'support', u'decis', u'boot', u'woman']
[u'light', u'plane', u'stray', u'restrict', u'space']
[u'littl', u'forc', u'labour', u'report', u'say']
[u'major', u'parti', u'bring', u'gun', u'elect']
[u'mammographi', u'screen', u'stay']
[u'fin', u'flippant', u'bomb', u'comment']
[u'shoot', u'polic', u'die']
[u'maryborough', u'show', u'technic', u'colleg']
[u'mayor', u'melbourn', u'rail', u'talk']
[u'mcgee', u'royal', u'commiss', u'wit', u'want', u'tell']
[u'meet', u'hear', u'opposit', u'harbour', u'propos']
[u'mercenari', u'discharg', u'zimbabw', u'prison', u'lawyer']
[u'merci', u'mission', u'offer', u'hope', u'hostag', u'deadlin']
[u'minist', u'offer', u'wagga', u'hospit', u'assur']
[u'mix', u'messag', u'emerg', u'har', u'race', u'talk']
[u'blast', u'kill', u'dozen', u'iraq']
[u'fund', u'shark', u'interpret', u'centr']
[u'mother', u'shoot', u'continu', u'affect', u'children']
[u'deliv', u'pacif', u'highway', u'budget', u'blast']
[u'murder', u'girl', u'mother', u'support', u'killer', u'parol']
[u'leadership', u'target', u'clark']
[u'chief', u'call', u'feder', u'control']
[u'newcastl', u'council', u'budget', u'coastal', u'asset']
[u'shire', u'presid', u'toodyay']
[u'vaccin', u'centr', u'plan', u'pandem']
[u'websit', u'aim', u'boost', u'skill', u'migrant', u'number']
[u'record', u'deporte', u'convent', u'stay', u'vanston', u'say']
[u'north', u'korea', u'announc', u'increas']
[u'rule', u'salari', u'chang', u'anasta']
[u'council', u'look']
[u'council', u'lose', u'control', u'major', u'develop']
[u'trafford', u'face', u'season', u'soul', u'search']
[u'opposit', u'prepar', u'debat', u'marriag']
[u'pantomim', u'urg', u'children', u'report', u'bulli']
[u'gambl', u'underwat', u'casino']
[u'pike', u'announc', u'medic', u'facil']
[u'pinjarra', u'worker', u'tool', u'safeti', u'concern']
[u'premier', u'rsvp', u'drought', u'summit']
[u'polic', u'loss', u'explain', u'increas', u'road', u'toll']
[u'polic', u'consid', u'custom', u'build', u'vehicl']
[u'polic', u'hail', u'groot', u'alcohol', u'manag', u'plan']
[u'polic', u'hope', u'catch', u'bank', u'bandit', u'hand']
[u'polic', u'minist', u'head', u'gunnedah', u'armidal']
[u'polic', u'seek', u'earli', u'morn', u'break']
[u'polic', u'seiz', u'cold', u'tablet', u'robinval']
[u'pressur', u'mount', u'greater', u'obstetr', u'care']
[u'prison', u'worker', u'strike', u'fake']
[u'probe', u'highlight', u'inadequ', u'chemic', u'spill']
[u'public', u'cabl', u'beach', u'futur']
[u'public', u'urg', u'report', u'speed', u'driver']
[u'qanta', u'fulli', u'awar', u'baggag', u'handler', u'activ']
[u'qanta', u'introduc', u'kimberley', u'flight']
[u'cattl', u'price', u'forecast', u'rise']
[u'town', u'prepar', u'cart', u'water']
[u'rail', u'firm', u'tumut', u'cootamundra', u'train', u'line']
[u'reiffel', u'elev', u'nation', u'umpir', u'panel']
[u'reiffel', u'elev', u'umpir', u'panel']
[u'reject', u'host', u'simul', u'virgin']
[u'report', u'urg', u'orthopaed', u'surgeri', u'hold']
[u'resid', u'protest', u'lagoon', u'plan']
[u'retir', u'senat', u'fire', u'salvo', u'politician', u'super']
[u'rochest', u'beat', u'oper', u'theatr']
[u'royal', u'commiss', u'renew', u'deporte']
[u'sampl', u'shortag', u'threaten', u'bird', u'fight', u'report']
[u'school', u'driver', u'clear', u'depot', u'drop']
[u'scientist', u'probe', u'worm', u'cancer', u'link']
[u'sculli', u'prais', u'north', u'coast', u'polic', u'effort']
[u'search', u'continu', u'miss', u'drug', u'compani', u'exec']
[u'season', u'birth', u'link', u'menopaus']
[u'sheedi', u'committ', u'futur']
[u'skate', u'park', u'upset', u'takeaway', u'owner']
[u'solon', u'reunit']
[u'solon', u'reunit', u'howard', u'express', u'sad']
[u'southern', u'wheatbelt', u'get', u'broadband', u'internet']
[u'sportspeopl', u'send', u'wrong', u'messag', u'caffein']
[u'stanhop', u'want', u'marriag', u'debat']
[u'state', u'govt', u'plan', u'fund', u'mudge', u'orang', u'road']
[u'stosur', u'crash', u'rome']
[u'studi', u'back', u'earli', u'prostat', u'cancer', u'surgeri']
[u'sydney', u'unit', u'launch', u'appeal', u'suspens']
[u'tafe', u'director', u'clarifi', u'cours']
[u'chang', u'help', u'eas', u'skill', u'shortag']
[u'term', u'refer', u'outlin', u'mcgee', u'royal']
[u'thompson', u'hope', u'keep', u'young', u'cat']
[u'dead', u'anti', u'protest']
[u'timber', u'miller', u'meet', u'conserv', u'zone']
[u'time', u'run', u'rate', u'rise']
[u'treasur', u'unhappi', u'revenu', u'alloc']
[u'trimbl', u'warn', u'ireland', u'stalem']
[u'troop', u'gather', u'exercis']
[u'truss', u'offer', u'drought', u'pledg']
[u'tutankhamun', u'face', u'reconstruct']
[u'ugandan', u'name', u'world', u'humanitarian', u'crisi']
[u'ullrich', u'send', u'armstrong', u'pack', u'defeat']
[u'unemploy', u'rate', u'steadi']
[u'union', u'pledg', u'spare', u'maker', u'industri', u'action']
[u'univers', u'union', u'place', u'administr']
[u'probe', u'link', u'govt', u'minist', u'iraq', u'scandal']
[u'probe', u'soldier', u'link', u'colombian', u'terrorist']
[u'punish', u'ghraib', u'scandal', u'figur']
[u'vandal', u'increas', u'blayney']
[u'environ', u'dept', u'probe', u'fish', u'kill']
[u'wall', u'ralli', u'trade', u'figur']
[u'warn', u'break', u'class', u'hoodoo']
[u'word', u'erupt', u'pension', u'concess']
[u'water', u'corp', u'plead', u'guilti', u'health', u'breach']
[u'woman', u'breastmilk', u'fail', u'satisfi', u'tiger', u'cub']
[u'wood', u'famili', u'plan', u'iraq', u'media', u'campaign']
[u'yeppoon', u'paramed', u'daughter', u'crash']
[u'aborigin', u'push', u'final', u'land', u'grant', u'settlement']
[u'academ', u'honour', u'help', u'women']
[u'accc', u'probe', u'spark', u'berri', u'label', u'assur']
[u'administr', u'say', u'union', u'oper']
[u'bust', u'disrupt', u'asian', u'heroin', u'syndic']
[u'agenc', u'slam', u'darfur', u'driver', u'murder']
[u'crash', u'probe', u'year']
[u'airport', u'forecast', u'market', u'growth']
[u'alcoa', u'refineri', u'worker', u'return', u'work']
[u'alic', u'health', u'worker', u'clean', u'nurs', u'award']
[u'ambros', u'fin', u'perth', u'comment']
[u'anti', u'smoke', u'lobbi', u'welcom', u'tobacco', u'label', u'rule']
[u'applic', u'pitt', u'town', u'heritag', u'list']
[u'arafura', u'game', u'arriv', u'territori']
[u'arctic', u'adventur', u'highlight', u'global', u'warm']
[u'armidal', u'polic', u'complex', u'work', u'start', u'year']
[u'atsb', u'investig', u'tool', u'contribut']
[u'australia', u'china', u'zheng', u'claim', u'round']
[u'author', u'address', u'bundaberg', u'patient', u'meet']
[u'author', u'concern', u'broom', u'jail', u'break']
[u'baggag', u'handler', u'fire']
[u'baggag', u'handler', u'rule', u'strike', u'action']
[u'barca', u'readi', u'clinch', u'championship']
[u'barthez', u'get', u'month', u'spit']
[u'beatti', u'back', u'border']
[u'beef', u'produc', u'nation', u'label']
[u'benin', u'ask', u'togoles', u'refuge']
[u'betfair', u'consid', u'hobart', u'base']
[u'ask', u'clean', u'mayfield', u'site']
[u'crowd', u'protest', u'hospit', u'number']
[u'bishop', u'reject', u'lesbian', u'marriag', u'idea']
[u'blue', u'welcom', u'fresh', u'fevola']
[u'boonah', u'hospit', u'ordeal']
[u'breast', u'cancer', u'mortal', u'rate', u'higher', u'rural']
[u'britain', u'henman', u'let', u'lead', u'slip', u'away', u'hamburg']
[u'budget', u'strike', u'highlight', u'health', u'worker']
[u'bulk', u'bill', u'rate', u'hit', u'year', u'high']
[u'burma', u'delay', u'asean', u'chairmanship', u'thailand']
[u'bush', u'tell', u'secur', u'alert']
[u'bush', u'choic', u'blast']
[u'bush', u'nomine', u'slap', u'rout', u'senat']
[u'businessman', u'plead', u'guilti', u'wool', u'fraud', u'offenc']
[u'caffein', u'tablet', u'popular', u'young', u'athlet']
[u'polic', u'number', u'boost']
[u'independ', u'probe', u'council', u'woe']
[u'chop', u'chop', u'smuggler', u'jail']
[u'citrus', u'grower', u'confid', u'market', u'access']
[u'citi', u'west', u'redevelop', u'deal', u'sign']
[u'clarenc', u'council', u'rate', u'rise']
[u'coke', u'project', u'construct', u'tip', u'start', u'march']
[u'communiti', u'rais', u'fund', u'hous', u'blaze', u'victim']
[u'divid', u'forest', u'packag']
[u'contempt', u'charg', u'lay', u'nightclub', u'violenc']
[u'corbel', u'civic', u'criticis']
[u'council', u'defend', u'enforc', u'notic']
[u'council', u'hop', u'drop', u'centr', u'continu']
[u'council', u'say', u'water', u'work', u'guarante', u'futur', u'suppli']
[u'council', u'seek', u'room', u'wind', u'farm', u'rat', u'negoti']
[u'court', u'dismiss', u'hangar', u'collaps', u'charg']
[u'court', u'overturn', u'sydney', u'unit']
[u'crash', u'truck', u'driver', u'plead', u'guilti', u'manslaught']
[u'croc', u'expert', u'deni', u'smuggl', u'suggest']
[u'crusad', u'put', u'pressur', u'tah']
[u'assess', u'foreign', u'oper']
[u'doubt', u'remain', u'longreach', u'rural', u'colleg', u'asset']
[u'downer', u'look', u'maintain', u'program']
[u'dragon', u'muscl', u'past', u'panther']
[u'drop', u'rival', u'enter', u'premiership', u'kill', u'zone']
[u'drought', u'threaten', u'rare', u'black', u'cockatoo', u'popul']
[u'drug', u'drive', u'number', u'alarm', u'polic']
[u'eagl', u'expect', u'saint', u'qualiti', u'shine']
[u'eleph', u'pack', u'trunk', u'dubbo', u'trip']
[u'ellison', u'prais', u'qanta', u'secur', u'effort']
[u'equal', u'health', u'servic', u'imposs', u'abbott']
[u'fake', u'peni', u'rais', u'drug', u'test', u'object']
[u'farmer', u'welcom', u'season', u'rain']
[u'fear', u'bed', u'shake', u'lengthen', u'surgeri', u'wait']
[u'feder', u'fund', u'kickstart', u'cathedr', u'restor']
[u'fevola', u'comeback', u'fail', u'save', u'blue']
[u'fevola', u'keep', u'blue', u'fight']
[u'fijian', u'suspect', u'death', u'aust', u'tourist', u'deni', u'bail']
[u'fiji', u'polic', u'arrest', u'tourist', u'murder']
[u'forest', u'group', u'question', u'clear', u'fell', u'restrict']
[u'forest', u'packag', u'announc']
[u'ghraib', u'head', u'blame', u'underl', u'abus']
[u'priest', u'jail', u'paedophilia']
[u'fraser', u'criticis', u'warn', u'nomin']
[u'fresh', u'claim', u'vivian', u'case']
[u'fund', u'flow', u'irrig', u'channel', u'upgrad']
[u'futur', u'colleg', u'asset', u'unclear']
[u'gallop', u'deni', u'vote', u'valu', u'loophol']
[u'gash', u'await', u'budget', u'princ', u'highway', u'fund']
[u'geraldton', u'govt', u'sign']
[u'glazer', u'tighten', u'grip', u'unit', u'fan', u'fight']
[u'glazer', u'tighten', u'grip', u'fan', u'fight']
[u'govt', u'invest', u'tsunami', u'warn']
[u'govt', u'offer', u'tailor', u'compo', u'timber', u'mill']
[u'govt', u'great', u'ocean', u'asset']
[u'govt', u'commit', u'jetti', u'fund']
[u'har', u'race', u'meet', u'transfer', u'mildura']
[u'health', u'servic', u'put', u'focus', u'suicid', u'prevent']
[u'health', u'servic', u'creditor', u'bill']
[u'henderson', u'memori', u'reflect', u'fair', u'compass']
[u'heroin', u'bust', u'adelaid']
[u'higher', u'bottl', u'shop', u'price', u'tip', u'southcorp']
[u'high', u'school', u'revamp', u'like', u'start', u'soon']
[u'highway', u'work', u'threaten', u'popul']
[u'hilali', u'confid', u'wood', u'releas']
[u'histor', u'power', u'station', u'futur', u'know', u'soon']
[u'hope', u'stam', u'reli', u'titl', u'favour']
[u'hospit', u'evacu', u'threat']
[u'hospit', u'inquiri', u'head', u'criticis', u'bureaucrat']
[u'hospit', u'staff', u'blame', u'explos', u'death']
[u'howard', u'remind', u'forestri', u'promis']
[u'hundr', u'african', u'boy', u'vanish', u'london']
[u'hundr', u'ralli', u'suspend', u'mareeba', u'birth']
[u'know', u'deport', u'solon']
[u'improv', u'expect', u'stage', u'great', u'footi']
[u'indigen', u'cultur', u'centr', u'construct', u'finish']
[u'indigen', u'educ', u'top', u'minist', u'prioriti']
[u'indonesian', u'muslim', u'join', u'koran', u'abus', u'protest']
[u'iraqi', u'sheikh', u'urg', u'aust', u'watch', u'languag']
[u'iraqi', u'wire', u'jest', u'lawyer']
[u'jackson', u'mislead', u'documentari', u'wit']
[u'juri', u'find', u'guilti', u'zeehan', u'stab', u'murder']
[u'match', u'weekend']
[u'katich', u'follow', u'warn', u'hampshir']
[u'kojonup', u'shire', u'job', u'women']
[u'labor', u'back', u'chang', u'beazley', u'say']
[u'labor', u'unit', u'stanc', u'beazley']
[u'lawyer', u'offer', u'free', u'legal', u'advic', u'albani']
[u'leprosi', u'origin', u'africa', u'near', u'east', u'studi']
[u'maggot', u'away', u'need', u'wind', u'surgeri']
[u'maggot', u'solut']
[u'main', u'road', u'ask', u'investig', u'mackay']
[u'malthous', u'back', u'call', u'caffein']
[u'charg', u'childer', u'rape', u'stand', u'trial']
[u'face', u'assault', u'domest', u'violenc', u'charg']
[u'mayor', u'doubt', u'hous', u'shortag', u'time', u'soon']
[u'mccartney', u'famili', u'threaten', u'belfast', u'polic']
[u'merredin', u'await', u'child', u'porn', u'sentenc']
[u'millward', u'lose', u'helen', u'appeal']
[u'miner', u'find', u'uranium', u'mineralis']
[u'minist', u'discuss', u'tighten', u'immigr', u'law']
[u'miss', u'businessman', u'brother', u'join', u'search']
[u'mobil', u'renal', u'unit', u'eas', u'social', u'problem']
[u'asbesto', u'test', u'complet', u'north']
[u'money', u'need', u'pilbara', u'movi']
[u'highway', u'warn', u'sign']
[u'want', u'deadlin', u'bridg', u'investig']
[u'murray', u'look', u'forward', u'great', u'footi', u'derbi']
[u'music', u'festiv', u'ticket', u'reserv', u'local']
[u'nelson', u'push', u'nation', u'exam', u'despit', u'opposit']
[u'nelson', u'studi', u'nation', u'assess']
[u'netbal', u'academi', u'offer', u'sport', u'chanc', u'young']
[u'law', u'allow', u'council', u'overse']
[u'law', u'crimin', u'secur', u'work']
[u'promot', u'seek', u'wide', u'burnett']
[u'kill', u'uzbek', u'clash']
[u'bail', u'woman', u'accus', u'babi', u'murder']
[u'north', u'west', u'look', u'rain']
[u'oberon', u'council', u'explor', u'secur', u'camera', u'option']
[u'onesteel', u'sustain', u'whyalla', u'steelwork']
[u'onesteel', u'exempt', u'emiss', u'law']
[u'onshor', u'detent', u'prevent', u'attack', u'minist']
[u'opposit', u'highlight', u'rural', u'road', u'fund', u'woe']
[u'pakistani', u'presid', u'visit', u'june']
[u'pakistani', u'ralli', u'koran', u'desecr']
[u'palm', u'summit', u'begin', u'today']
[u'panther', u'edg', u'dragon']
[u'pearc', u'name', u'citi', u'manag']
[u'perth', u'traffic', u'gridlock', u'freeway', u'flood']
[u'plan', u'save', u'job', u'protect', u'forest', u'howard']
[u'plenti', u'play', u'dragon', u'panther', u'clash']
[u'plenti', u'play', u'dragon', u'panther', u'clash']
[u'court', u'overturn', u'aust', u'polic', u'immun']
[u'polic', u'crime', u'commiss', u'focus', u'biki']
[u'polic', u'hunt', u'servic', u'station', u'knife', u'bandit']
[u'polic', u'charg', u'footbal', u'assault']
[u'polic', u'offic', u'charg', u'drug', u'possess']
[u'polic', u'probe', u'indonesian', u'fish', u'boat', u'cook']
[u'polic', u'probe', u'millgrov', u'death']
[u'pope', u'speed', u'process', u'beatifi', u'john', u'paul']
[u'port', u'hedland']
[u'premier', u'say', u'smart', u'state', u'need', u'water', u'wise']
[u'prison', u'sieg', u'leader', u'expect', u'know', u'fate', u'today']
[u'public', u'remind', u'check', u'smoke', u'alarm']
[u'public', u'urg', u'storm', u'readi']
[u'qanta', u'criticis', u'baggag', u'handler', u'respons']
[u'qanta', u'slow', u'respond', u'drug', u'alleg', u'sculli']
[u'qanta', u'stand', u'baggag', u'handler']
[u'rebuff', u'nation', u'test', u'propos']
[u'rabbitoh', u'releas', u'marteen']
[u'ranatunga', u'end', u'lanka', u'exil']
[u'rann', u'consid', u'scotland', u'yard', u'crime', u'measur']
[u'region', u'food', u'tour', u'kick']
[u'report', u'urg', u'histor', u'kosciuszko', u'hut', u'rebuild']
[u'resort', u'entranc', u'star', u'facelift']
[u'reveng', u'escort', u'list', u'earn', u'communiti', u'servic']
[u'expand', u'coober', u'pedi', u'opal', u'explor']
[u'risdon', u'prison', u'charg', u'follow', u'sieg']
[u'rossi', u'switch', u'say', u'team', u'boss']
[u'sailor', u'miss', u'brumbi', u'wish', u'list']
[u'unionist', u'protest', u'support', u'colleagu']
[u'wind', u'farm', u'power']
[u'serial', u'killer', u'execut']
[u'seven', u'kill', u'aceh', u'clash', u'militari']
[u'sharapova', u'number', u'sight']
[u'shire', u'food']
[u'skywest', u'join', u'subsidi', u'scheme']
[u'smelter', u'site', u'develop', u'urg', u'help', u'boost', u'job']
[u'solomon', u'seal', u'gold', u'deal']
[u'solon', u'condit', u'assault', u'social', u'worker']
[u'springborg', u'defend', u'air', u'doctor', u'concern']
[u'storm', u'warn', u'issu', u'north', u'coast']
[u'suffer', u'william', u'seek', u'shorter', u'jail', u'term']
[u'tassi', u'devil', u'quarantin', u'attempt', u'save']
[u'teen', u'charg', u'manuka', u'assault']
[u'test', u'rise', u'fight', u'drug', u'cheat']
[u'kill', u'anti', u'protest']
[u'soldier', u'kill', u'iraq', u'attack']
[u'timor', u'border', u'deal', u'detail', u'agre']
[u'toowoomba', u'hous', u'market', u'cool']
[u'town', u'win', u'long', u'fight', u'secur', u'school']
[u'trio', u'charg', u'moran', u'murder']
[u'tropic', u'bacteria', u'weapon', u'potenti', u'say']
[u'tweed', u'tourism', u'rise']
[u'student', u'serious', u'injur', u'crash']
[u'union', u'unhappi', u'polic', u'patrol', u'car']
[u'unit', u'fan', u'wont', u'rest', u'glazer', u'take', u'control']
[u'stock', u'pull', u'local', u'market']
[u'uzbek', u'troop', u'open', u'protest']
[u'mart', u'drag', u'stock', u'lower']
[u'waratah', u'lead', u'blue']
[u'waratah', u'miss', u'chanc', u'finish']
[u'waratah', u'offer', u'sailor', u'chanc', u'jump', u'ship']
[u'word', u'erupt', u'highway', u'work']
[u'western', u'riverina', u'counsellor', u'problem']
[u'wine', u'group', u'warn', u'margaret', u'river']
[u'wool', u'broker', u'plead', u'guilti', u'fraud', u'charg']
[u'wyndham', u'ralli', u'focus', u'domest', u'violenc']
[u'yeppoon', u'ambul', u'offic', u'mourn', u'death']
[u'iraqi', u'kill', u'patrol', u'attack']
[u'qaeda', u'leader', u'kill', u'pakistan', u'report']
[u'qaeda', u'link', u'milit', u'kill', u'philippin']
[u'arsenal', u'wenger', u'warn', u'chelsea', u'gun']
[u'atkinson', u'suffer', u'mechan', u'problem', u'cyprus']
[u'aust', u'polic', u'await', u'decis']
[u'australian', u'polic', u'head', u'solomon']
[u'barthez', u'vow', u'fight']
[u'briton', u'lewi', u'franci', u'fail', u'dope', u'test']
[u'brumbi', u'red', u'final', u'hop', u'aliv']
[u'land', u'feet', u'station', u'doesnt']
[u'chief', u'keep', u'brumbi', u'hop', u'aliv']
[u'chilean', u'secret', u'polic', u'chief', u'hand', u'document']
[u'cleric', u'pray', u'wood', u'releas']
[u'coca', u'cola', u'take', u'spring', u'water', u'fight', u'court']
[u'colombia', u'claim', u'biggest', u'cocain', u'bust', u'histori']
[u'confer', u'hear', u'fish', u'crime']
[u'cyprus', u'wine', u'greec', u'evid', u'show']
[u'davi', u'lead', u'bjorn', u'make', u'british', u'master']
[u'derbi', u'tri', u'hard', u'live', u'hype']
[u'dfat', u'confirm', u'passport', u'issu', u'deporte']
[u'dog', u'face', u'fight', u'man']
[u'drug', u'arrest']
[u'eagl', u'saint', u'streak', u'track']
[u'right', u'exercis', u'abbott', u'tell', u'indigen']
[u'goal', u'william', u'help', u'hawk', u'tame', u'demon']
[u'elder', u'pedestrian', u'kill', u'lane', u'cove']
[u'ethiopian', u'child', u'malnutrit', u'level', u'horrifi', u'unicef']
[u'immigr', u'offici', u'urg', u'open', u'inquiri']
[u'expert', u'play', u'impact', u'drug', u'bust']
[u'farmer', u'demand', u'compens', u'forest', u'deal']
[u'feder', u'punish', u'tire', u'coria', u'hamburg']
[u'fierc', u'fight', u'claim', u'live', u'marin']
[u'figo', u'return', u'intern', u'footbal']
[u'fijian', u'flyer', u'caucaunibuca', u'extend', u'agen', u'contract']
[u'firm', u'push', u'wind', u'farm', u'despit', u'council']
[u'footbal', u'kidnap', u'mother', u'paulo']
[u'forestri']
[u'forest', u'deal', u'threat', u'timber', u'bodi', u'say']
[u'gardin', u'put', u'eagl', u'control', u'saint']
[u'giansiracusa', u'fire', u'dog', u'victori']
[u'glazer', u'offer', u'oliv', u'branch', u'fan']
[u'govt', u'pressur', u'eas', u'jail', u'overcrowd']
[u'govt', u'urg', u'fight', u'whale', u'hunt', u'plan']
[u'hargreav', u'urg', u'communiti', u'share', u'rent', u'burden']
[u'hayn', u'shortlist', u'india']
[u'hezbollah', u'isra', u'forc', u'clash', u'border', u'area']
[u'hostag', u'campaign']
[u'humpback', u'threat']
[u'huxley', u'give', u'red', u'lead']
[u'iraqi', u'famili', u'flee', u'clash', u'report']
[u'jackson', u'lawyer', u'monitor', u'accus', u'famili', u'court']
[u'jackson', u'pollock', u'artwork', u'uncov']
[u'journalist', u'leav', u'uzbek', u'town', u'amid', u'unrest']
[u'kangaroo', u'edg', u'dockland']
[u'chanc', u'lion', u'hold', u'vital']
[u'lion', u'rope', u'matthew', u'admit']
[u'lion', u'score', u'encount']
[u'die', u'singl', u'accid']
[u'man', u'condemn', u'premier', u'final', u'fight']
[u'report', u'dead', u'uzbek', u'troop', u'crowd']
[u'mcewen', u'take', u'giro', u'sixth', u'stage', u'bettini', u'lead']
[u'melbourn', u'doctor', u'head']
[u'minist', u'stir', u'south', u'african', u'aid', u'debat']
[u'mobil', u'phone', u'danger']
[u'muslim', u'protest', u'koran', u'desecr', u'report']
[u'urg', u'govt', u'oppos', u'whale', u'hunt', u'move']
[u'suffer', u'nurs', u'retent']
[u'ramp', u'collaps', u'water', u'main', u'flood', u'perth']
[u'pocket', u'expens', u'rise', u'bulk']
[u'pakistan', u'deni', u'qaeda', u'leader', u'kill', u'strike']
[u'pentagon', u'recommend', u'closur', u'base']
[u'pietersen', u'improv', u'england', u'chanc']
[u'polic', u'investig', u'elder', u'man', u'death']
[u'polic', u'support', u'decis', u'town', u'trade']
[u'polic', u'widen', u'search', u'miss', u'colombian', u'tourist']
[u'prison', u'reform', u'group', u'criticis', u'risdon', u'lockdown']
[u'protea', u'captain', u'smith', u'ban', u'dayer']
[u'psychologist', u'warn', u'mobil', u'phone', u'addict']
[u'red', u'brumbi', u'promis']
[u'rolf', u'harri', u'paint', u'queen', u'portrait']
[u'rossi', u'boss', u'deni', u'deal']
[u'russia', u'strike', u'deal', u'repay', u'debt']
[u'saddam', u'write', u'memoir', u'jail']
[u'saint', u'hop', u'eagl', u'start']
[u'second', u'half', u'ralli', u'see', u'bronco', u'rein', u'cowboy']
[u'seven', u'skipper', u'join', u'forc']
[u'sharapova', u'make', u'smooth', u'progress', u'rome']
[u'sorenstam', u'song', u'georgia']
[u'south', u'african', u'farmer', u'win', u'compens', u'land']
[u'splendour', u'sell', u'prompt', u'scalper', u'warn']
[u'stakehold', u'divid', u'forestri', u'packag']
[u'steve', u'menzi', u'interview']
[u'storm', u'smash', u'rabbitoh']
[u'strong', u'quak', u'hit', u'sumatra']
[u'swift', u'jaeger', u'crush', u'netbal', u'win']
[u'swift', u'jaeger', u'crush', u'win']
[u'sydney', u'airport', u'offer', u'shrink', u'wrap', u'servic']
[u'sydney', u'unit', u'decis', u'impact', u'club']
[u'taiwan', u'govern', u'parti', u'win', u'elect']
[u'taiwan', u'win', u'nauru', u'alli']
[u'taronga', u'defend', u'eleph', u'enclosur']
[u'teacher', u'walk', u'free', u'child', u'porn', u'convict']
[u'kill', u'overnight', u'crash']
[u'tiger', u'streak', u'texa']
[u'timor', u'agreement']
[u'toyota', u'risk', u'sanction', u'licenc', u'irregular']
[u'undercov', u'cop', u'blow', u'whistl', u'drug', u'polici']
[u'union', u'plan', u'protest', u'plastic', u'factori']
[u'textil', u'restrict', u'anger', u'china']
[u'probe', u'alleg', u'koran', u'abus']
[u'uzbek', u'leader', u'estim', u'kill', u'violenc']
[u'uzbek', u'soldier', u'wrest', u'control', u'andijan']
[u'uzbek', u'wit', u'report', u'hundr', u'kill']
[u'wall', u'street', u'trade', u'mix']
[u'waugh', u'upset', u'baggi', u'green', u'auction']
[u'whale', u'strand', u'link', u'solar', u'activ']
[u'women', u'injur', u'alleg', u'drug', u'explos']
[u'bodi', u'discov', u'iraq']
[u'year', u'charg', u'cocain', u'traffic']
[u'amaq', u'beatti', u'reform', u'rundown']
[u'applebi', u'chanc', u'texa']
[u'arafura', u'game', u'open', u'darwin']
[u'archaeologist', u'unearth', u'destroy', u'villag']
[u'aust', u'polic', u'leav', u'bougainvill', u'await', u'decis']
[u'beatti', u'defend', u'depart', u'failur', u'releas']
[u'beef', u'firm', u'promot', u'irrig', u'scheme']
[u'bell', u'england', u'test', u'squad', u'pietersen', u'miss']
[u'bomber', u'docker', u'melbourn']
[u'breast', u'cancer', u'report', u'rais', u'doctor']
[u'brett', u'kimmorley', u'simon', u'woolford', u'interview']
[u'buddha', u'broth', u'sell', u'bowl']
[u'bull', u'maul', u'stormer', u'brumbi', u'season']
[u'driver', u'stand', u'text', u'drive']
[u'condoleezza', u'rice', u'make', u'surpris', u'iraq', u'visit']
[u'cool', u'campbel', u'grab', u'lead', u'close', u'birdi', u'blitz']
[u'council', u'urg', u'offer', u'rat', u'incent', u'retain']
[u'court', u'jail', u'saudi', u'reform']
[u'cun', u'cunego', u'leav', u'basso', u'giro']
[u'dallaglio', u'wreck', u'johnson', u'farewel', u'wasp', u'retain']
[u'lonergan', u'sunday', u'wrap']
[u'deadlin', u'open', u'wood', u'releas', u'cleric']
[u'doctor', u'work', u'nicotin', u'vaccin']
[u'don', u'block', u'adelaid']
[u'ethiopian', u'poll']
[u'etoo', u'strike', u'earn', u'barca', u'leagu', u'titl']
[u'export', u'studi', u'russian', u'opportun', u'risk']
[u'feder', u'gasquet', u'rematch', u'hamburg']
[u'finegan', u'bid', u'farewel', u'inimit', u'style']
[u'forest', u'packag', u'familiar', u'beazley', u'say']
[u'kill', u'road']
[u'french', u'tip', u'rebel', u'holiday']
[u'fund', u'provid', u'polic', u'station', u'perth']
[u'right', u'group', u'hop', u'registr', u'scheme']
[u'govt', u'provid', u'letter', u'corbi', u'case']
[u'govt', u'urg', u'bring', u'forward', u'freeway', u'extens']
[u'grandstand', u'speak', u'matt', u'sing', u'barri', u'berrigan']
[u'green', u'urg', u'action', u'japan', u'whale', u'stanc']
[u'group', u'attack', u'duti', u'offic', u'cunnamulla']
[u'hall', u'lift', u'swan', u'power']
[u'howard', u'stand', u'firm', u'cut']
[u'indigen', u'employ', u'chief', u'outlin', u'spend', u'plan']
[u'indigen', u'trail', u'build', u'yass', u'riverbank']
[u'ipswich', u'fight', u'west', u'play']
[u'iran', u'delay', u'threaten', u'resumpt', u'nuclear']
[u'ivori', u'coast', u'govt', u'rebel', u'agre', u'disarm']
[u'japan', u'warn', u'whale', u'risk', u'relat']
[u'karzai', u'say', u'enemi', u'peac', u'violenc']
[u'karzai', u'seek', u'control', u'hold', u'afghan', u'prison']
[u'kenyan', u'machuka', u'win', u'great', u'ocean', u'road', u'marathon']
[u'kenyan', u'polic', u'arrest', u'terror', u'drug']
[u'khan', u'turn', u'aveng', u'olymp', u'defeat']
[u'kidnap', u'iraqi', u'governor', u'releas']
[u'lawyer', u'releas', u'letter']
[u'loeb', u'lead', u'cyprus', u'ralli', u'second']
[u'lovett', u'star', u'bomb', u'raid', u'dockland']
[u'magpi', u'lead', u'tiger']
[u'overlook', u'climb', u'staff', u'number']
[u'rule', u'preserv', u'mulloway', u'number']
[u'clue', u'search', u'miss', u'columbian']
[u'nomad', u'win', u'prais', u'london']
[u'elvstroem']
[u'warn', u'buy', u'bull']
[u'year', u'seven', u'fall', u'math']
[u'open', u'ceremoni', u'arafura', u'game']
[u'opposit', u'rais', u'teacher', u'workload', u'concern']
[u'phoenix', u'past', u'darter']
[u'promis', u'talk', u'tasmanian', u'land', u'clear']
[u'stand', u'vanston', u'offici']
[u'unsur', u'hostag', u'claim']
[u'polic', u'arrest', u'suspici', u'death']
[u'polic', u'urg', u'respons', u'drive', u'road', u'death']
[u'port', u'lincoln', u'airport', u'upgrad']
[u'face', u'court', u'rape']
[u'quak', u'rumbl', u'flinder', u'rang']
[u'ranger', u'belt', u'motherwel']
[u'resid', u'protest', u'mobil', u'phone', u'tower']
[u'resid', u'protest', u'mobil', u'phone', u'tower']
[u'rooster', u'edg', u'warrior', u'auckland']
[u'rooster', u'post', u'grind', u'warrior']
[u'rossi', u'grab', u'man', u'pole']
[u'seafood', u'industri', u'urg', u'action', u'illeg', u'fish']
[u'search', u'miss', u'tourist', u'grow']
[u'sharapova', u'world', u'number', u'hop', u'shatter']
[u'shark', u'spirit', u'raider']
[u'shark', u'stick', u'spoon', u'despit', u'dramat', u'draw']
[u'sheikh', u'believ', u'wood', u'aliv']
[u'shop', u'centr', u'prompt', u'cinema', u'evacu']
[u'sorenstam', u'cruis', u'control', u'georgia']
[u'south', u'africa']
[u'south', u'african', u'releas', u'zimbabw', u'jail']
[u'steve', u'price', u'craig', u'wing', u'interview']
[u'street', u'block', u'uzbek', u'violenc']
[u'stuart', u'raper', u'matthew', u'elliott', u'interview']
[u'student', u'escap', u'dormitori', u'blaze']
[u'studi', u'find', u'cholesterol', u'drug', u'combat', u'breast']
[u'suicid', u'bomber', u'kill', u'iraqi']
[u'swan', u'rue', u'miss', u'chanc']
[u'sydney', u'book', u'trip', u'tahiti']
[u'sydney', u'sink', u'marin']
[u'talk', u'improv', u'australia', u'indonesia', u'relat']
[u'tasmanian', u'prison', u'offici', u'defend', u'lockdown']
[u'cut']
[u'teen', u'charg', u'dandenong', u'murder']
[u'thiev', u'target', u'star', u'war', u'poster', u'mexico', u'citi']
[u'thunderbird', u'outclass', u'kestrel', u'melbourn']
[u'tiger', u'blow', u'magpi', u'apart']
[u'sheen', u'michael', u'hagan', u'interview']
[u'kill', u'adelaid', u'hill', u'crash']
[u'kill', u'light', u'plane', u'crash']
[u'work', u'erad', u'polio', u'nigeria']
[u'uzbek', u'leader', u'blame', u'unrest', u'rebel']
[u'uzbek', u'flee', u'neighbour', u'kyrgyzstan']
[u'uzbek', u'toll']
[u'vet', u'discuss', u'percept', u'anim', u'cruelti']
[u'vision', u'impair', u'student', u'need', u'ignor']
[u'opposit', u'press', u'water', u'corpor', u'inquiri']
[u'warn', u'hampshir', u'deni', u'spot']
[u'west', u'winner', u'circl']
[u'woman', u'stab', u'citi', u'train', u'station']
[u'women', u'arrest', u'demand', u'right']
[u'aborigin', u'group', u'demand', u'santo', u'prosecut']
[u'academ', u'push', u'quicker', u'process', u'illeg']
[u'anderson', u'reveal', u'local', u'road', u'fund']
[u'angler', u'rescu', u'capsiz', u'boat']
[u'angler', u'rescu', u'crookhaven', u'river', u'mishap']
[u'armi', u'help', u'boost', u'indigen', u'infrastructur']
[u'aust', u'open', u'produc', u'econom', u'bonanza']
[u'aust', u'polic', u'leav', u'soon']
[u'aust', u'polic', u'leav', u'earli']
[u'aust', u'polic', u'prepar', u'leav']
[u'aust', u'power', u'stop', u'whale', u'limit', u'howard']
[u'australian', u'share', u'drop']
[u'australia', u'atkinson', u'triumphant', u'japan', u'triathlon']
[u'australia', u'chief', u'scientist', u'move']
[u'basso', u'beat', u'giro', u'time', u'trial']
[u'beatti', u'goal', u'put', u'celtic']
[u'beatti', u'stand', u'health', u'minist']
[u'bendigo', u'council', u'urg', u'boost', u'park']
[u'auction', u'sell', u'detent', u'centr']
[u'bishop', u'wont', u'comment', u'letter', u'seek', u'remov']
[u'bjorn', u'win', u'british', u'master', u'play']
[u'bledislo', u'test', u'sell']
[u'brown', u'fire', u'warn', u'tiger', u'rival']
[u'budget', u'fund', u'offer', u'hope', u'region', u'doctor', u'boost']
[u'bull', u'relish', u'underdog', u'status']
[u'burma', u'blame', u'superpow', u'bomb']
[u'driver', u'wheel', u'alleg', u'text', u'crash']
[u'busi', u'usual', u'health', u'chief']
[u'centr', u'resolut', u'loom']
[u'darwin', u'emerg', u'bed']
[u'cantona', u'slam', u'glazer', u'takeov']
[u'cattl', u'compani', u'call', u'nation', u'rail', u'network']
[u'caus', u'furnitur', u'store', u'blaze', u'unknown']
[u'charg', u'threaten', u'judd', u'brownlow', u'defenc']
[u'chile', u'begin', u'team', u'defenc']
[u'citrus', u'grower', u'want', u'quick', u'decis', u'futur']
[u'clean', u'begin', u'storm']
[u'club', u'seek', u'clarif', u'smoke', u'ban']
[u'communiti', u'control', u'outback', u'hospit']
[u'corbi', u'lawyer', u'deliv', u'govt', u'letter']
[u'corbi', u'prosecutor', u'dismiss', u'govt', u'letter']
[u'coroni', u'inquest', u'hold', u'orang', u'death']
[u'costello', u'say', u'cut', u'negoti']
[u'council', u'agre', u'rise']
[u'councillor', u'maintain', u'right', u'free', u'speech']
[u'councillor', u'sell', u'need', u'rate', u'rise']
[u'council', u'say', u'govt', u'help', u'rail', u'line']
[u'counsel', u'offer', u'remain', u'student', u'teacher']
[u'coup', u'plotter', u'africa']
[u'court', u'hear', u'threat', u'alleg', u'murder', u'famili']
[u'court', u'sequel', u'polic', u'offic', u'bash']
[u'crane', u'crush', u'build', u'wild', u'weather', u'hit']
[u'crime', u'gang', u'get', u'hook', u'fish', u'industri']
[u'cruelti', u'prove', u'cost', u'sydney', u'breeder']
[u'czech', u'world', u'hockey', u'titl']
[u'deadlin', u'loom', u'kirkland', u'timet']
[u'demerg', u'take', u'adelaid']
[u'dengu', u'fever', u'case', u'trigger', u'health', u'worri']
[u'dippenaar', u'lead', u'south', u'africa', u'whitewash']
[u'domino', u'share', u'encourag', u'start']
[u'doubl', u'strike', u'take', u'preston', u'closer']
[u'dream', u'festiv', u'showcas', u'indigen', u'artist']
[u'driver', u'spin', u'wheel', u'outback', u'challeng']
[u'drought', u'group', u'assess', u'north', u'west', u'elig']
[u'forc', u'local', u'council', u'chang', u'roadwork']
[u'eagl', u'docker', u'confirm', u'london', u'showcas']
[u'eagl', u'sweat', u'judd', u'incid']
[u'europ', u'question', u'tree', u'safeti']
[u'factori', u'consid', u'asbesto', u'risk']
[u'farmer', u'increas', u'drought', u'relief']
[u'farmer', u'fear', u'wild', u'human', u'threat']
[u'farmer', u'worri', u'appoint']
[u'farmer', u'threaten', u'shoalwat', u'road', u'protest']
[u'fatal', u'accid', u'prompt', u'bypass', u'call']
[u'fear', u'higher', u'licenc', u'fee', u'hurt', u'fisher']
[u'fear', u'plan', u'public', u'servant', u'affect']
[u'ferri', u'colour', u'standardis']
[u'final', u'star', u'war', u'saga', u'screen', u'cann']
[u'crew', u'seal', u'leak', u'sydney', u'south']
[u'policemen', u'kill', u'malukus', u'island']
[u'forestri', u'packag', u'leav', u'bitter', u'tast', u'beazley']
[u'iraqi', u'soldier', u'kill', u'attack', u'armi', u'camp']
[u'freeway', u'ramp', u'repair', u'ongo']
[u'girl', u'death', u'spark', u'push']
[u'glazer', u'clinch', u'control', u'sourc']
[u'govt', u'commit', u'clinic']
[u'govt', u'defend', u'effort', u'skill', u'migrant']
[u'govt', u'delay', u'decis', u'fighter', u'jet']
[u'govt', u'letter', u'evid', u'corbi', u'trial']
[u'govt', u'name', u'middl', u'east', u'defenc', u'chief']
[u'govt', u'neglect', u'manufactur', u'union', u'say']
[u'govt', u'crackdown', u'road', u'rule', u'dead']
[u'govt', u'heat', u'japan', u'whale']
[u'govt', u'simplifi', u'volunt']
[u'govt', u'urg', u'waiv', u'fee', u'charg', u'drought', u'worsen']
[u'survey', u'updat', u'work', u'forc', u'inform']
[u'grant', u'help', u'boost', u'indigen', u'job']
[u'grazier', u'face', u'long', u'wait', u'land', u'valuat']
[u'green', u'slam', u'beazley', u'back', u'forest', u'deal']
[u'group', u'welcom', u'kosciuszko', u'hut', u'decis']
[u'grow', u'fish', u'effluent', u'research', u'urg']
[u'guild', u'warn', u'pharmaci', u'uncertainti']
[u'harbour', u'leav', u'resembl', u'abattoir', u'fish']
[u'harrison', u'grappl', u'tackl', u'charg']
[u'high', u'commission', u'name', u'chancellor']
[u'high', u'low', u'english', u'season']
[u'horror', u'weekend', u'spark', u'road', u'safeti', u'remind']
[u'howard', u'defend', u'corbi', u'letter']
[u'hundr', u'flee', u'violenc', u'uzbekistan']
[u'hundr', u'worker', u'evacu', u'melbourn']
[u'hunter', u'hors', u'fetch', u'price', u'sydney']
[u'interpret', u'betray', u'dougla', u'wood']
[u'investig', u'examin', u'light', u'plane', u'wreck']
[u'reform', u'wont', u'lower', u'wag', u'say']
[u'jam', u'hardi', u'expect', u'tough', u'year', u'ahead']
[u'japan', u'humpback', u'plan', u'alarm', u'whale', u'watch', u'group']
[u'network', u'reflect', u'unemploy', u'costello']
[u'juve', u'close', u'titl', u'milan', u'hold', u'lecc']
[u'khodorkovski', u'trial', u'adjourn']
[u'king', u'watmough', u'debut']
[u'kiwi', u'coach', u'anderson', u'line', u'saint']
[u'labor', u'attack', u'costello', u'cut']
[u'lawyer', u'prepar', u'solon', u'compens', u'case']
[u'lion', u'lose', u'power', u'break', u'wrist']
[u'local', u'armi', u'reserv', u'troop', u'join', u'puckapuny', u'exercis']
[u'local', u'govt', u'group', u'say', u'excus', u'bulli']
[u'loeb', u'record', u'straight', u'victori']
[u'luci', u'record', u'udder', u'marvel']
[u'manildra', u'preschool', u'destroy']
[u'question', u'hous', u'blaze']
[u'parent', u'oblivi', u'children', u'obes']
[u'maroon', u'dump', u'wesser', u'princ', u'slater']
[u'maroon', u'form', u'blue', u'experi']
[u'master', u'feder', u'retain', u'hamburg', u'crown']
[u'mauresmo', u'reign', u'rome']
[u'mayor', u'demand', u'heritag', u'rail', u'fund']
[u'mayor', u'seek', u'assist', u'goondiwindi', u'nurs', u'home']
[u'meninga', u'assault', u'trial', u'hear', u'fight']
[u'meninga', u'assault', u'trial', u'tell', u'victim', u'histori']
[u'mexican', u'anti', u'porn', u'film', u'make', u'wave', u'cann']
[u'miss', u'sailor', u'rescu', u'near', u'bowen']
[u'design', u'work', u'mildura', u'rail', u'line']
[u'meet', u'littl', u'differ', u'trot']
[u'mummifi', u'win', u'singapor']
[u'murray', u'salt', u'level', u'rise']
[u'muslim', u'dress', u'controversi', u'unfortun']
[u'nerv', u'steel', u'need', u'sticki', u'fight']
[u'newmont', u'score', u'mine', u'competit', u'award']
[u'safeti', u'campaign', u'target', u'seatbelt', u'wear']
[u'newsweek', u'backtrack', u'koran', u'desecr', u'stori']
[u'clue', u'albani', u'blackout', u'caus']
[u'opposit', u'voic', u'wast', u'pond', u'plan']
[u'govt', u'indigen', u'hous', u'spend']
[u'sit', u'share', u'heritag', u'repair', u'fund']
[u'occi', u'shrug', u'injuri', u'tahiti']
[u'older', u'worker', u'face', u'tourism', u'industri', u'discrimin']
[u'onesteel', u'reject', u'environ', u'deal', u'claim']
[u'opposit', u'mount', u'smith', u'project']
[u'orchestra', u'await', u'clarif', u'feder', u'fund']
[u'lead', u'health', u'insur', u'surg']
[u'pair', u'acquit', u'lakemba', u'polic', u'drive']
[u'pair', u'roadsid', u'mishap']
[u'palm', u'island', u'council', u'keen']
[u'passeng', u'tell', u'luggag', u'tamper']
[u'plane', u'crash', u'probe', u'begin', u'today']
[u'polic', u'close', u'parti', u'gatecrash']
[u'polic', u'crack', u'truck', u'safeti']
[u'polic', u'hunt', u'tourist', u'attack']
[u'polic', u'investig', u'south', u'coast', u'murder']
[u'polic', u'crash', u'victim']
[u'polic', u'probe', u'coleamb', u'hous', u'blaze']
[u'polic', u'probe', u'fish', u'farm', u'death']
[u'polic', u'seek', u'public', u'help', u'park', u'bodi']
[u'port', u'chief', u'focus', u'jetti', u'revamp']
[u'port', u'lincoln', u'airport', u'revamp']
[u'port', u'wilson', u'week']
[u'port', u'wont', u'harbour', u'bomb', u'remov']
[u'power', u'wilson', u'week']
[u'produc', u'seek', u'region', u'food', u'tour']
[u'public', u'ask', u'worker', u'push']
[u'public', u'ask', u'help', u'solv', u'south', u'durra', u'death']
[u'public', u'cockl', u'creek', u'smelter']
[u'public', u'transport', u'top', u'communiti', u'wish', u'list']
[u'purdi', u'power', u'titl', u'texa']
[u'raider', u'disappoint', u'lopsid', u'penalti', u'count']
[u'real', u'deni', u'ferdinand', u'unit']
[u'rescu', u'prompt', u'safeti', u'plea', u'hiker']
[u'rice', u'call', u'greater', u'sunni', u'involv', u'iraq']
[u'rise', u'timber', u'royalti', u'tip', u'hurt', u'gippsland']
[u'robson', u'hail', u'west', u'brom', u'survivor']
[u'rochest', u'await', u'oper', u'theatr', u'report']
[u'rossi', u'extend', u'domin', u'french']
[u'rspca', u'call', u'hunt']
[u'russian', u'rower', u'inch', u'closer', u'world', u'record']
[u'sailor', u'hurt', u'central', u'coast']
[u'unveil', u'tough', u'drug', u'law']
[u'worker', u'killer', u'await', u'sentenc']
[u'sharapova', u'trim', u'davenport', u'lead']
[u'shire', u'stand', u'tree', u'replant']
[u'skill', u'shortag', u'hit', u'alcan', u'refineri', u'plan']
[u'slater', u'relish', u'origin', u'option']
[u'solon', u'urg', u'seek', u'compens']
[u'sorenstam', u'blitz', u'georgia', u'field']
[u'south', u'coast', u'whale', u'watch', u'group', u'humpback', u'fear']
[u'state', u'govern', u'fund', u'drop', u'scheme']
[u'storm', u'damag', u'expect', u'reach', u'million']
[u'storm', u'hit', u'south', u'west']
[u'student', u'death', u'prompt']
[u'studi', u'look', u'balanc', u'mooloolaba', u'spit']
[u'studi', u'show', u'lismor', u'koala']
[u'survey', u'highlight', u'hutt', u'river', u'issu']
[u'swan', u'urg', u'govt', u'alp', u'cut']
[u'teacher', u'charg', u'crime']
[u'theme', u'park', u'oper', u'head', u'gold', u'coast']
[u'person', u'charg', u'robberi', u'ring', u'investig']
[u'thousand', u'gun', u'destroy']
[u'iraqi', u'work', u'kuwaiti', u'kill']
[u'tourism', u'industri', u'stand', u'reef', u'author']
[u'townsvill', u'group', u'back', u'matern', u'servic', u'review']
[u'troop', u'seal', u'uzbek', u'border', u'town']
[u'bodi', u'dump', u'baghdad']
[u'kill', u'motorbik', u'collid']
[u'unit', u'develop', u'rocki', u'biggest']
[u'unit', u'fan', u'stage', u'modest', u'anger', u'glazer']
[u'univers', u'smart', u'train', u'begin', u'state', u'tour']
[u'oper', u'lift', u'jam', u'hardi', u'profit']
[u'uzbek', u'govt', u'criticis', u'human', u'right', u'abus']
[u'vail', u'talk', u'technic', u'colleg', u'benefit']
[u'villarr', u'send', u'albacet']
[u'warn', u'qlds', u'latest', u'health', u'scandal']
[u'west', u'brom', u'complet', u'great', u'escap']
[u'wit', u'tell', u'solon', u'concern']
[u'woman', u'accus', u'knife', u'assault']
[u'wood', u'betray', u'interpret']
[u'wool', u'expo', u'gambl', u'prove', u'success']
[u'work', u'entertain', u'precinct', u'begin', u'year']
[u'academ', u'tortur', u'wont', u'hear', u'refuge', u'case']
[u'academ', u'promot', u'tortur', u'extrem', u'circumst']
[u'accus', u'rapist', u'teach', u'charg', u'lay']
[u'adelaid', u'nation', u'foreign', u'univers']
[u'hope', u'final', u'deal']
[u'hour', u'fund', u'announc', u'fail']
[u'anti', u'aircraft', u'blame', u'iraq', u'plane', u'down']
[u'apolog', u'compo', u'state', u'abus', u'victim']
[u'armidal', u'tamworth', u'host', u'disabl', u'talk']
[u'asbesto', u'dust', u'disturb', u'sarina', u'high']
[u'asic', u'ban', u'fail', u'spring', u'water']
[u'asic', u'probe', u'sam', u'seafood', u'account']
[u'asio', u'chief', u'post', u'washington']
[u'asio', u'chief', u'tip', u'ambassador']
[u'asx', u'bright', u'start', u'end', u'gloom']
[u'aust', u'hold', u'asean', u'treati', u'talk']
[u'aust', u'terror', u'charg', u'kuwait']
[u'aust', u'explor', u'polic', u'issu']
[u'aust', u'polic', u'return']
[u'australian', u'polic', u'depart']
[u'australian', u'polic', u'leav']
[u'aust', u'rank', u'gender', u'studi']
[u'bakir', u'regist', u'schapell', u'corbi']
[u'baldwin', u'reject', u'costello', u'budget']
[u'baxter', u'sign', u'waratah', u'deal']
[u'baxter', u'staff', u'fight', u'boost']
[u'beatti', u'talk', u'coast', u'health', u'commit']
[u'biker', u'accus', u'zone']
[u'brack', u'pressur', u'stop', u'rise', u'timber']
[u'breath', u'test', u'crackdown', u'net', u'drink', u'driver']
[u'break', u'hill', u'busi', u'leader', u'die']
[u'brothel', u'owner', u'signag', u'council', u'continu']
[u'brother', u'abort', u'world', u'record', u'attempt']
[u'brown', u'accus', u'howard', u'gutless', u'whale', u'stanc']
[u'budget', u'scrap', u'senior', u'travel', u'program']
[u'busi', u'urg', u'avoid', u'dodgi', u'chequ']
[u'busi', u'urg', u'advantag', u'free', u'trade']
[u'busi', u'group', u'urg', u'support', u'cut']
[u'doctor', u'blackwat']
[u'cathol', u'anglican', u'uphold', u'dialogu']
[u'child', u'care', u'centr', u'oper', u'offer', u'parent']
[u'child', u'porn', u'earn', u'suspend', u'jail', u'term']
[u'clarenc', u'council', u'consid', u'sorri', u'gestur']
[u'club', u'demand', u'smoke', u'clarif']
[u'coco', u'christma', u'island', u'breast', u'screen']
[u'coron', u'back', u'school']
[u'coron', u'recommend']
[u'coron', u'repeat', u'curtail', u'petrol', u'sniff']
[u'costello', u'question', u'high', u'disabl', u'pension', u'level']
[u'costello', u'rule', u'newcastl', u'rescu']
[u'coulthard', u'forc', u'monaco']
[u'council', u'look', u'tackl', u'ineffici', u'tradit']
[u'councillor', u'face', u'complaint']
[u'councillor', u'fight', u'right', u'object']
[u'court', u'build', u'registr', u'throw', u'doubt']
[u'crocker', u'hindmarsh', u'origin', u'booz', u'crackdown']
[u'csiro', u'accus', u'commerci', u'bias']
[u'delay', u'alleg', u'abus', u'teacher', u'defend']
[u'develop', u'contest', u'claim', u'gold', u'tower']
[u'diplomat', u'death', u'threat', u'corbi']
[u'disagr', u'remain', u'kosciuszko', u'hors', u'rid']
[u'doctor', u'group', u'reject', u'midwif', u'servic', u'closur']
[u'doctor', u'support', u'strike', u'action']
[u'dont', u'rule', u'scud', u'fitzi']
[u'downer', u'defend', u'keelti', u'corbi', u'comment']
[u'downer', u'say', u'send', u'letter', u'judg']
[u'downer', u'deliv', u'address']
[u'join', u'council', u'crazi', u'ant', u'fight']
[u'work', u'lower', u'fisher', u'cost']
[u'driver', u'face', u'court', u'policeman', u'near']
[u'drought', u'summit', u'highlight', u'farmer', u'woe']
[u'rail', u'worker', u'tool', u'industri']
[u'ethiopian', u'rule', u'parti', u'claim', u'elect', u'victori']
[u'etoo', u'apologis', u'real', u'madrid', u'insult']
[u'ducat', u'worker', u'lodg', u'unfair', u'dismiss', u'claim']
[u'farmer', u'look', u'need', u'rain']
[u'farmer', u'plead', u'govern', u'help']
[u'farmer', u'seek', u'exempt', u'industri', u'reform']
[u'feder', u'holm', u'laureus', u'award']
[u'forest', u'search', u'miss']
[u'freeway', u'flood', u'prompt', u'pipe', u'check']
[u'gaudio', u'coria', u'argentina', u'win', u'start']
[u'gigg', u'overtak', u'charlton', u'unit', u'landmark']
[u'global', u'retail', u'deni', u'aust', u'wool', u'boycott']
[u'gold', u'coast', u'prison', u'face', u'court', u'escap', u'charg']
[u'goulburn', u'dig', u'water']
[u'govern', u'flag', u'assault', u'salin']
[u'govt', u'pharmacist', u'face', u'deal']
[u'govt', u'say', u'chang', u'wont', u'hurt', u'worker']
[u'govt', u'urg', u'lobbi', u'strong', u'whale', u'hunt']
[u'govt', u'urg', u'offer', u'grey', u'water', u'rebat']
[u'govt', u'urg', u'rethink', u'har', u'race', u'closur']
[u'govt', u'welcom', u'sheikh', u'help', u'search', u'wood']
[u'govt', u'work', u'timber', u'cutter', u'compo']
[u'grandmoth', u'keen', u'testifi', u'crash']
[u'group', u'draw', u'educ', u'polici', u'steal', u'generat']
[u'guard', u'behaviour', u'overshadow', u'carr', u'prison', u'visit']
[u'henri', u'rule', u'final']
[u'hope', u'remain', u'nation', u'liber', u'partnership']
[u'hospit', u'author', u'crack', u'staff', u'talk']
[u'hospit', u'theatr', u'close', u'revamp']
[u'tell', u'dont', u'know', u'downer', u'solon']
[u'illeg', u'fish', u'crackdown', u'fail', u'deter', u'poacher']
[u'inappropri', u'send', u'corbi', u'letter', u'judg', u'downer']
[u'indonesian', u'court', u'uphold', u'bashir', u'verdict']
[u'in', u'join', u'western', u'warrior']
[u'italian', u'worker', u'kidnap', u'kabul']
[u'jetstar', u'flight', u'evacu', u'smoke', u'alert']
[u'jetstar', u'plane', u'evacu']
[u'loss', u'opposit', u'say']
[u'johnson', u'cruis', u'easi', u'victori', u'arafura', u'game']
[u'johnson', u'walk', u'free', u'tribun']
[u'joint', u'ventur', u'explor', u'promis', u'zinc', u'prospect']
[u'jone', u'shrug', u'injuri']
[u'judd', u'brownlow', u'run']
[u'judd', u'ponder', u'contest', u'charg']
[u'judiciari', u'punish', u'rabbitoh']
[u'keelti', u'stand', u'corbi', u'comment']
[u'kennett', u'call', u'govt', u'help', u'farmer']
[u'kuwait', u'woman', u'suffrag', u'right']
[u'kyli', u'diagnos', u'breast', u'cancer']
[u'kyli', u'minogu', u'diagnos', u'breast', u'cancer']
[u'labor', u'opposit', u'pointless', u'costello']
[u'lara', u'rest', u'dayer', u'pakistan']
[u'launceston', u'cyclist', u'pedal', u'japan']
[u'launceston', u'teacher', u'charg', u'underag']
[u'lobbi', u'put', u'asylum', u'seeker', u'case', u'govt']
[u'macquari', u'bank', u'profit', u'top']
[u'face', u'court', u'beslan', u'sieg']
[u'maroon', u'capabl', u'seri', u'hagan', u'say']
[u'mijo', u'land', u'golf', u'cours']
[u'hous', u'seek', u'skill', u'migrant']
[u'mourinho', u'urg', u'cudicini', u'stay', u'chelsea']
[u'say', u'aspect', u'orthopaed', u'surgeri', u'report']
[u'upset', u'wind', u'farm', u'decis']
[u'fee', u'rockhampton']
[u'jail', u'plan', u'countri']
[u'magistr', u'port', u'hedland']
[u'newsweek', u'retract', u'koran', u'desecr', u'report']
[u'nigerian', u'minist', u'face', u'court', u'corrupt']
[u'nowra', u'gather', u'seek', u'land', u'chang']
[u'nrma', u'launch', u'south', u'coast', u'road', u'scheme']
[u'foot', u'mouth', u'scare', u'hoax', u'polic']
[u'opposit', u'fear', u'fund', u'shortfal', u'brake']
[u'origin', u'rival', u'booz', u'crackdown']
[u'outcri', u'tribun', u'judg', u'tortur', u'stanc']
[u'outgo', u'scienc', u'chief', u'want', u'similar', u'successor']
[u'overnight', u'job', u'brew']
[u'pell', u'urg', u'immigr', u'polici', u'review']
[u'petacchi', u'end', u'giro', u'spell', u'mcewen', u'fourth']
[u'pharmaci', u'report', u'strong', u'caffein']
[u'philippin', u'reject', u'blame', u'solon', u'case']
[u'plane', u'wreckag', u'offer', u'crash', u'investig', u'littl']
[u'plan', u'atsic', u'replac', u'council']
[u'hunt', u'pull']
[u'urg', u'compromis', u'polic', u'immun']
[u'polic', u'charg', u'coolgardi', u'theft']
[u'polic', u'high', u'hop', u'speed', u'camera']
[u'polic', u'maintain', u'crackdown', u'unsaf', u'car']
[u'polic', u'plead', u'sober', u'drive']
[u'polic', u'probe', u'minibus', u'crash']
[u'polic', u'seek', u'public', u'help', u'solv', u'south', u'coast', u'murder']
[u'polish', u'barca', u'look', u'good']
[u'pool', u'complex', u'lose']
[u'port', u'need', u'basic', u'say', u'corn']
[u'pressur', u'grow', u'uzbek', u'leader']
[u'prison', u'group', u'say', u'close', u'break']
[u'public', u'communiti', u'need']
[u'public', u'warn', u'bogus', u'countri', u'energi', u'worker']
[u'push', u'univers', u'base', u'swan', u'hill']
[u'polic', u'confirm', u'offic', u'escort', u'solon']
[u'quirindi', u'high', u'mark', u'year']
[u'rabbitoh', u'pair', u'woolford', u'face', u'sidelin', u'stint']
[u'cross', u'offer', u'blood', u'suppli', u'assur']
[u'redfern', u'father', u'die']
[u'simpkin', u'cross', u'sword', u'stuart']
[u'rescu', u'siev', u'passeng', u'evid']
[u'resid', u'broom', u'growth']
[u'risdon', u'return', u'normal', u'sieg']
[u'robust', u'phone', u'indigen', u'communiti']
[u'rochest', u'score', u'partial', u'health']
[u'ruddock', u'unawar', u'individu', u'deport', u'case']
[u'rural', u'counsel', u'servic', u'receiv', u'extra', u'fund']
[u'rural', u'phone', u'legisl', u'inadequ', u'report']
[u'govt', u'admit', u'progress', u'slow', u'petrol', u'sniff']
[u'saint', u'slug', u'breach']
[u'santo', u'investig', u'possibl', u'heritag']
[u'school', u'unlik']
[u'school', u'gut']
[u'chang', u'gather', u'call', u'nation', u'plan']
[u'urg', u'patienc', u'storm', u'clean', u'continu']
[u'sharehold', u'consid', u'newspap', u'takeov', u'offer']
[u'shire', u'claim', u'support', u'gambl']
[u'siev', u'accus', u'face', u'trial']
[u'siev', u'trial', u'begin']
[u'silent', u'let', u'piano', u'talk']
[u'soccer', u'club', u'answer', u'entrench', u'violenc']
[u'storm', u'affect', u'area', u'power']
[u'resid', u'wait', u'storm']
[u'sorenstam', u'chase', u'grand', u'slam', u'sweep']
[u'south', u'mackay', u'school', u'home', u'kindi']
[u'south', u'west', u'tell', u'brace', u'storm']
[u'lanka', u'india', u'hunt', u'coach']
[u'student', u'get', u'communiti', u'servic', u'starter']
[u'studi', u'highlight', u'indigen', u'health', u'concern']
[u'submiss', u'reveal', u'magnitud', u'hospit', u'failur']
[u'suspend', u'jail', u'term', u'heroin']
[u'green', u'attack', u'beazley', u'forest', u'agreement']
[u'teacher', u'charg', u'boy', u'rape']
[u'teacher', u'stop', u'work', u'hous', u'concern']
[u'teen', u'serv', u'year', u'kill', u'worker']
[u'tiger', u'deledio', u'nomin', u'rise', u'star']
[u'timber', u'worker', u'centrelink', u'offer']
[u'treasuri', u'boss', u'contradict']
[u'treasuri', u'secretari', u'dismiss', u'economi', u'concern']
[u'trinidad', u'return', u'retir', u'loss']
[u'troop', u'join', u'search', u'miss', u'colombian']
[u'tweed', u'councillor', u'die']
[u'kill', u'tourist', u'minibus', u'crash']
[u'rais', u'fee']
[u'call', u'uzbek', u'reform']
[u'reservist', u'convict', u'ghraib', u'abus']
[u'stock', u'ralli', u'drop']
[u'uzbek', u'refuge', u'fear', u'govern', u'repris']
[u'vinni', u'van', u'winter', u'suppli']
[u'wagga', u'council', u'budget', u'includ', u'rate', u'rise']
[u'wallabi', u'caffein', u'pill', u'gregan', u'reveal']
[u'west', u'wyalong', u'seek', u'kind', u'support']
[u'wilkinson', u'eager', u'lion', u'challeng']
[u'wind', u'farm', u'rat', u'formula', u'baffl', u'pyrene', u'council']
[u'windsor', u'see', u'benefit', u'rail', u'line', u'plan']
[u'wit', u'evid', u'meninga', u'assault', u'trial']
[u'wood', u'surrend', u'rank']
[u'youth', u'attack', u'firefight', u'benalla']
[u'yuko', u'founder', u'await', u'guilti', u'verdict']
[u'afghan', u'gang', u'offer', u'trade', u'italian', u'hostag']
[u'manag', u'say', u'drug', u'rule', u'tougher']
[u'postpon', u'draft', u'chang']
[u'aid', u'caus', u'south', u'african', u'death']
[u'albani', u'council', u'get', u'deputi', u'mayor']
[u'albani', u'woman', u'hospit', u'bend']
[u'alleg', u'cocain', u'smuggler', u'face', u'court']
[u'call', u'school', u'base', u'apprenticeship']
[u'ambul', u'servic', u'prioritis', u'emerg']
[u'anderson', u'hint', u'extra', u'drought', u'support']
[u'anger', u'fine', u'noos', u'assault']
[u'antarct', u'team', u'win', u'fli']
[u'anti', u'tuna', u'farm', u'petit', u'parliament']
[u'archaeologist', u'uncov', u'scene', u'human', u'sacrific']
[u'asbesto', u'victim', u'hail', u'trailblaz']
[u'assault', u'verdict', u'spark', u'anger']
[u'black']
[u'atsic', u'demis', u'spark', u'communiti', u'hous', u'fear']
[u'aussi', u'surfer', u'slater', u'final']
[u'aust', u'beer', u'sale', u'sparkl', u'lion', u'nathan', u'profit']
[u'aust', u'hop', u'access', u'detaine', u'kuwait']
[u'australian', u'collect', u'fetch']
[u'aust', u'soldier', u'devic', u'shoot', u'corner']
[u'ballarat', u'doctor', u'head', u'victoria']
[u'reviv', u'letter', u'america']
[u'britain', u'push', u'iran', u'nuclear', u'program']
[u'brumbi', u'lose', u'norton', u'knight', u'waratah']
[u'budget', u'favour', u'wealthi', u'swan']
[u'bundaberg', u'doctor', u'seek', u'legal', u'advic']
[u'buoy', u'famili', u'friend', u'kyli', u'minogu', u'readi']
[u'burni', u'council', u'approv', u'multi', u'million', u'dollar']
[u'businessman', u'surviv', u'island', u'ordeal']
[u'caffein', u'border', u'cheat', u'wada']
[u'road', u'safeti', u'crackdown', u'includ']
[u'cash', u'offer', u'afghan', u'detaine', u'home']
[u'chang', u'giant', u'solar', u'tower', u'height']
[u'china', u'wheat', u'import', u'expect', u'drop']
[u'chines', u'bear', u'australian', u'sue', u'immigr']
[u'cleric', u'confid', u'wood', u'releas']
[u'club', u'form', u'wilko', u'lion', u'woodward']
[u'cole', u'tap', u'hear', u'begin']
[u'commonwealth', u'flag', u'port', u'takeov']
[u'consum', u'index', u'jump', u'budget', u'cut']
[u'convent', u'centr', u'complet', u'month']
[u'corbi', u'trivialis', u'issu']
[u'coria', u'cana', u'argentina', u'track']
[u'costello', u'slam', u'execut', u'jump']
[u'costello', u'urg', u'respons']
[u'council', u'divid', u'green', u'levi', u'spend']
[u'council', u'discuss', u'infrastructur', u'need']
[u'council', u'take', u'museum', u'manag']
[u'council', u'monitor', u'fitzroy', u'river', u'flow']
[u'court', u'tell', u'policeman', u'rap', u'drink', u'driver']
[u'crow', u'steven', u'end', u'career']
[u'crusad', u'hurrican', u'lose', u'centr']
[u'cueto', u'replac', u'balshaw', u'lion', u'squad']
[u'cunego', u'simoni', u'readi', u'fight', u'giro']
[u'dairi', u'farmer', u'closur', u'spark', u'loss', u'fear']
[u'disast', u'zone', u'declar', u'monday', u'storm']
[u'reveal', u'sale', u'jump', u'warn', u'downturn']
[u'docker', u'drug', u'test', u'regim']
[u'doctor', u'tran', u'tasman', u'breast', u'cancer', u'test']
[u'doctor', u'disput', u'disrupt', u'hospit', u'servic']
[u'drought', u'stricken', u'farmer', u'seek', u'urgent', u'cash']
[u'economist', u'dismiss', u'notion', u'blue', u'collar', u'rich']
[u'kill', u'crash']
[u'elder', u'pension', u'forc', u'deni', u'report']
[u'etoo', u'scrutini', u'real', u'outburst']
[u'failur', u'provid', u'document', u'forc', u'delay']
[u'famili', u'unsur', u'wood', u'claim']
[u'father', u'rank', u'rich', u'list']
[u'faulti', u'condit', u'blame', u'flight', u'incid']
[u'fear', u'drought', u'prompt', u'rural', u'depress']
[u'fear', u'land', u'plan', u'delay', u'bendigo', u'develop']
[u'feder', u'fund', u'help', u'teach', u'student', u'valu']
[u'govt', u'make', u'port']
[u'ferdinand', u'say', u'glazer', u'wont', u'affect', u'unit']
[u'hospitalis', u'insecticid', u'spill']
[u'fletcher', u'sign', u'wigan']
[u'friend', u'ralli', u'kyli']
[u'fund', u'airstrip', u'improv']
[u'galleri', u'snap', u'paint', u'auction']
[u'gene', u'probe', u'monitor', u'marin', u'pest']
[u'georgian', u'grenad', u'threat', u'bush']
[u'girl', u'detent', u'birth', u'visit', u'play', u'group']
[u'glen', u'inn', u'head', u'mini', u'properti', u'boom']
[u'gold', u'coast', u'hop', u'stay']
[u'govt', u'call', u'salin', u'fund', u'help']
[u'govt', u'fast', u'track', u'amunguna', u'clinic']
[u'govt', u'prison', u'guard', u'footag']
[u'govt', u'remot', u'health', u'care']
[u'govt', u'urg', u'hous', u'region', u'worker']
[u'govt', u'urg', u'fund', u'lake', u'cathi', u'school']
[u'greas', u'trigger', u'award', u'hunter']
[u'greenough', u'council', u'candid', u'swear']
[u'guantanamo', u'prison', u'tell', u'koran', u'abus', u'apolog']
[u'health', u'scandal', u'forc', u'foreign', u'doctor']
[u'health', u'servic', u'offer', u'jeparit', u'assur']
[u'health', u'servic', u'say', u'cluster', u'save', u'money']
[u'health', u'servic', u'area', u'cluster']
[u'hear', u'debat', u'disabl', u'servic', u'cut']
[u'heritag', u'list', u'seek', u'histor', u'power', u'station']
[u'hewitt', u'hope', u'french', u'open', u'chanc']
[u'hewitt', u'remain', u'hope', u'french', u'open', u'chanc']
[u'high', u'petrol', u'price', u'fuel', u'tough', u'april', u'coast']
[u'case', u'drop']
[u'hovercraft', u'servic', u'plan', u'coco', u'keel']
[u'indigen', u'languag', u'site', u'explain', u'legal']
[u'indonesian', u'travel', u'alert', u'renew']
[u'inquiri', u'call', u'persist', u'despit', u'lennon', u'apolog']
[u'inquiri', u'delay', u'council', u'elect']
[u'iraqi', u'islam', u'group', u'kill', u'contractor']
[u'irrig', u'debat', u'water', u'reform', u'plan']
[u'kiwi', u'lose', u'anderson', u'helen']
[u'kuwait', u'offer', u'help', u'australia', u'gain', u'access']
[u'kyli', u'begin', u'cancer', u'treatment']
[u'kyli', u'put', u'face', u'breast', u'cancer', u'statist']
[u'kyli', u'diagnosi', u'shock', u'fellow', u'entertain']
[u'kyli', u'start', u'cancer', u'treatment']
[u'lake', u'hume', u'angler', u'illeg', u'gear', u'warn']
[u'late', u'ralli', u'push', u'stock']
[u'winter', u'rain', u'tip', u'south', u'east']
[u'local', u'busi', u'input', u'stock', u'exchang']
[u'local', u'govt', u'group', u'meet', u'conlon', u'region']
[u'lotterywest', u'help', u'fund', u'heritag', u'build', u'facelift']
[u'lower', u'hous', u'agre', u'mental', u'health', u'reform']
[u'guilti', u'murder', u'parent']
[u'plead', u'guilti', u'murder', u'girlfriend']
[u'maria', u'island', u'accommod', u'upgrad']
[u'meat', u'group', u'shelv', u'good', u'trial', u'concern']
[u'mechan', u'woe', u'hamper', u'oper']
[u'mediat', u'rubibi', u'group', u'nativ', u'titl']
[u'meninga', u'assail', u'eye', u'court', u'hear']
[u'meninga', u'sens', u'assault', u'victim', u'troubl']
[u'plan', u'creat', u'road', u'surfac', u'worri']
[u'minichiello', u'overcom', u'problem']
[u'minichiello', u'overcom', u'problem']
[u'mine', u'energi', u'project', u'boost', u'export']
[u'minist', u'defend', u'auxiliari', u'firefight']
[u'miss', u'mother', u'daughter', u'locat']
[u'morrison', u'make', u'tahiti', u'quarter', u'final']
[u'want', u'better', u'princ', u'highway', u'group', u'coordin']
[u'want', u'communiti', u'input', u'health', u'servic']
[u'panel', u'probe', u'road', u'repair', u'need']
[u'visa', u'tourist', u'region', u'season', u'work']
[u'north', u'south', u'korea', u'talk', u'extend']
[u'hospit', u'commerci', u'residenti', u'site']
[u'ombudsman', u'suggest', u'legal', u'shake']
[u'omodei', u'eject', u'parliament', u'elector']
[u'opposit', u'defend', u'role', u'forestri', u'polici']
[u'opposit', u'demand', u'illawarra', u'sewerag', u'answer']
[u'opposit', u'keen', u'hear', u'polic', u'view', u'staff']
[u'opposit', u'offer', u'qualifi', u'support', u'youth']
[u'opposit', u'unimpress', u'tram', u'plan']
[u'opposit', u'will', u'oper', u'chang']
[u'orang', u'rider', u'remain', u'hospit', u'accid']
[u'outdoor', u'cafe', u'rent', u'rise']
[u'oversea', u'bear', u'australian', u'urg', u'carri', u'passport']
[u'packer', u'reign', u'suprem', u'rich', u'list']
[u'pagan', u'back', u'player', u'drug', u'claim']
[u'pair', u'face', u'hear', u'alleg', u'bash', u'aborigin']
[u'pelesasa', u'eye', u'green', u'gold', u'forc', u'sign']
[u'pelesasa', u'sign', u'western', u'forc']
[u'perfect', u'lift', u'slater', u'tahiti', u'titl']
[u'philippin', u'embassi', u'rais', u'solon', u'concern']
[u'phone', u'program', u'target', u'indigen', u'communiti']
[u'visit', u'bring', u'hope', u'winter', u'crop', u'fund']
[u'polic', u'maitland', u'crash', u'victim']
[u'polic', u'offic', u'face', u'court', u'indec', u'assault']
[u'price', u'smith', u'come', u'train', u'rocki']
[u'public', u'winter', u'electr', u'safeti', u'warn']
[u'public', u'lobster', u'fleet']
[u'push', u'chang', u'asbesto', u'compens']
[u'qanta', u'sack', u'baggag', u'handler', u'drug', u'claim']
[u'govt', u'urg', u'look', u'forest', u'agreement']
[u'health', u'defend', u'foreign', u'train', u'mackay', u'doctor']
[u'mandarin', u'remov', u'amidst', u'canker', u'fear']
[u'sugar', u'industri', u'get']
[u'queensland', u'rule', u'poison']
[u'quill', u'test', u'reveal', u'babi', u'porcupin', u'gender']
[u'rain', u'bring', u'patchi', u'relief', u'farmer']
[u'raul', u'applaud', u'etoo', u'apolog']
[u'right', u'slowdown']
[u'cross', u'extend', u'blood', u'collect', u'servic']
[u'remot', u'popul', u'drop', u'spark']
[u'report', u'find', u'contact', u'list', u'need']
[u'report', u'urg', u'rethink', u'communiti', u'group', u'fund']
[u'repriev', u'lachlan', u'valley', u'irrig']
[u'chief', u'seek', u'firefight', u'feedback']
[u'road', u'safeti', u'concern', u'sink', u'duck', u'race']
[u'road', u'safeti', u'group', u'back', u'licenc']
[u'compani', u'receiv', u'grant', u'water', u'wise']
[u'satellit', u'research', u'give', u'clue', u'turtl', u'habit']
[u'save', u'rare', u'poultri', u'breed', u'tasmania']
[u'searcher', u'miss', u'businessman']
[u'secur', u'tight', u'rock', u'concert']
[u'sheep', u'breed', u'like', u'rabbit', u'bumper', u'season']
[u'sheikh', u'speak', u'wood']
[u'social', u'worker', u'cast', u'doubt', u'jackson', u'abus', u'claim']
[u'soldier', u'jail', u'ghraib', u'abus']
[u'soldier', u'arriv', u'remot', u'communiti', u'build', u'work']
[u'solomon', u'island', u'offici', u'jail', u'abduct', u'rape']
[u'solon', u'health', u'improv', u'lawyer']
[u'star', u'war', u'spark', u'arm', u'race', u'warn']
[u'state', u'emerg', u'lift', u'aceh']
[u'state', u'origin', u'run', u'rockhampton']
[u'state', u'fight', u'feder', u'water', u'fund', u'polici']
[u'stosur', u'strasbourg']
[u'stoush', u'tourism', u'minist', u'continu']
[u'struggl', u'myskina', u'defend', u'french', u'open', u'titl']
[u'support', u'citi', u'council', u'smith', u'report', u'decis']
[u'sydney', u'unit', u'play', u'miss', u'match']
[u'tactic', u'substitut', u'propos', u'dayer']
[u'farmer', u'mislead', u'forest', u'agreement', u'liber']
[u'teacher', u'admit', u'student']
[u'teacher', u'front', u'court', u'accus', u'teen']
[u'technolog', u'allow', u'indigen', u'student', u'stay']
[u'teen', u'arrest', u'school', u'knife', u'incid']
[u'thousand', u'power', u'storm']
[u'cleric', u'kill', u'baghdad']
[u'tourist', u'moreton', u'island']
[u'toyota', u'escap', u'penalti', u'licenc', u'error']
[u'toyota', u'recal', u'vehicl']
[u'arrest', u'melbourn', u'biki', u'raid']
[u'unit', u'wont', u'easi', u'beat', u'fergi', u'warn']
[u'arrest', u'accus', u'anti', u'castro', u'terrorist']
[u'continu', u'burma', u'sanction']
[u'uzbekistan', u'acknowledg', u'death', u'weekend', u'unrest']
[u'virgin', u'blame', u'fuel', u'fee', u'profit', u'drop']
[u'virgin', u'stick', u'discount', u'fare', u'approach']
[u'wada', u'concern', u'gregan', u'caffein', u'claim']
[u'draft', u'law', u'serial', u'offend']
[u'murder', u'trial', u'abort']
[u'heritag', u'council', u'streamlin']
[u'weed', u'threat', u'grow', u'drought', u'worsen']
[u'west', u'indi', u'look', u'bounc', u'pakistan']
[u'urg', u'australian', u'shoot']
[u'wilkinson', u'name', u'lion']
[u'woodchip', u'export', u'earn', u'rise']
[u'wool', u'price', u'surg']
[u'fear', u'dead', u'china', u'blast']
[u'secur', u'cricket', u'stream', u'right']
[u'accus', u'cocain', u'smuggler', u'refus', u'bail']
[u'seek', u'apolog', u'clear']
[u'attack', u'rockhampton', u'hospit', u'administr']
[u'amazon', u'land', u'clear', u'acceler']
[u'longer', u'crisi']
[u'anderson', u'say', u'newcastl', u'port', u'model']
[u'auditor', u'general', u'probe', u'consult']
[u'aussi', u'hard', u'worker', u'survey', u'find']
[u'australian', u'bear', u'astronaut', u'prepar', u'flight']
[u'australian', u'expert', u'studi', u'turban', u'action']
[u'award', u'honour', u'kalbarri', u'nurs']
[u'award', u'honour', u'teacher', u'excel']
[u'bail', u'teacher', u'child', u'charg']
[u'bank', u'collect', u'fee']
[u'bathurst', u'develop', u'technolog', u'link', u'korea']
[u'beatti', u'work', u'port', u'plan']
[u'beatti', u'doctor', u'racial', u'abus']
[u'better', u'studi']
[u'black', u'sign', u'bullet']
[u'bland', u'council', u'spend', u'develop']
[u'blaze', u'claim', u'theatr', u'group', u'histori']
[u'boe', u'engin', u'stand']
[u'brack', u'speak', u'branch', u'stack']
[u'brisban', u'clean', u'sever', u'storm']
[u'broom', u'prison', u'task', u'forc', u'integr']
[u'busi', u'group', u'convent', u'centr', u'revamp']
[u'caffein', u'affect', u'sport', u'sponsorship', u'say']
[u'upper', u'hous', u'retir']
[u'go', u'bolster', u'blood', u'donat']
[u'cannon', u'name', u'hooker', u'waratah']
[u'carter', u'holt', u'harvey', u'explain', u'earn', u'drop']
[u'cessnock', u'councillor', u'settl', u'disput']
[u'chaouk', u'refus', u'bail', u'attempt', u'murder', u'charg']
[u'chelsea', u'face', u'fifa', u'action', u'mikel', u'affair']
[u'children', u'injur', u'melbourn', u'schoolyard', u'crash']
[u'children', u'injur', u'playground', u'crash']
[u'chilean', u'soldier', u'snow', u'storm']
[u'clean', u'storm', u'continu']
[u'cobargo', u'benefit', u'sewerag', u'fund']
[u'colombian', u'mayor', u'lock', u'loos', u'tongu']
[u'comment', u'seek', u'nativ', u'titl', u'applic']
[u'commission', u'back', u'fast', u'track', u'teacher', u'code']
[u'communiti', u'council', u'dismiss', u'financi', u'audit']
[u'consum', u'inflat', u'percent']
[u'coron', u'urg', u'investig', u'patient', u'death']
[u'council', u'adopt', u'wollondilli', u'rate', u'rise', u'plan']
[u'council', u'govt', u'sign', u'waterfront', u'develop']
[u'councillor', u'reject', u'hors', u'complex', u'outsid']
[u'council', u'divid', u'sunday', u'trade']
[u'council', u'fail', u'submit', u'pulp', u'propos']
[u'court', u'date', u'accus', u'child', u'kill']
[u'court', u'rule', u'killer', u'entitl', u'inherit']
[u'creditor', u'forc', u'collin', u'sell', u'store']
[u'deal', u'boost', u'boppi', u'gold', u'mine']
[u'diabet', u'suffer', u'tell', u'exercis', u'healthi']
[u'diver', u'warn', u'avoid', u'bend']
[u'call', u'year', u'sentenc', u'paedophil']
[u'drought', u'proof', u'climat', u'chang']
[u'dubbo', u'giraff', u'head', u'neck', u'wood']
[u'earli', u'treatment', u'stem', u'dead', u'babi', u'diseas']
[u'elder', u'consid', u'macleay', u'nativ', u'titl', u'claim']
[u'electron', u'shop', u'blaze', u'consid', u'suspici']
[u'enforc', u'transport', u'etiquett', u'unwork']
[u'timores', u'want', u'extens', u'deport', u'deadlin']
[u'exercis', u'healthi', u'food', u'offer', u'hope', u'diabet']
[u'exhibit', u'showcas', u'aborigin', u'elder', u'work']
[u'farmer', u'fin', u'anim', u'cruelti']
[u'farmer', u'await', u'drought', u'decis']
[u'farmer', u'warn', u'fever', u'case']
[u'fierc', u'storm', u'lash', u'brisban']
[u'fishermen', u'releas', u'court', u'fail']
[u'fish', u'contest', u'futur', u'unclear']
[u'fish', u'larva', u'attract', u'noisi', u'reef']
[u'flash', u'light', u'slow', u'motorist', u'near', u'school']
[u'forb', u'council', u'decid', u'prison']
[u'foreign', u'crew', u'shellfish', u'ship', u'worri', u'union']
[u'refuge', u'tell', u'court', u'abandon', u'siev']
[u'fruit', u'grower', u'urg', u'season', u'work', u'visa', u'thai']
[u'fund', u'help', u'restor', u'pioneer', u'grave']
[u'gladbach', u'appoint', u'koppel', u'manag']
[u'good', u'rain', u'need', u'avoid', u'time']
[u'govt', u'commit', u'calder', u'time', u'frame']
[u'govt', u'delay', u'stage', u'worker', u'compo', u'chang']
[u'govt', u'give', u'money', u'tsunami', u'affect', u'famili']
[u'govt', u'prepar', u'wrest', u'control', u'waterfront']
[u'govt', u'urg', u'offer', u'fund', u'tourist', u'centr', u'plan']
[u'great', u'mind', u'tackl', u'global', u'woe']
[u'grow', u'popul', u'surpris', u'hervey', u'mayor']
[u'hagan', u'satisfi', u'maroon', u'squad']
[u'happi', u'goat', u'lucki', u'rhino', u'friend']
[u'hasler', u'sign', u'eagl']
[u'fallout', u'continu', u'council']
[u'hop', u'high', u'budget', u'deliv', u'extra', u'hospit']
[u'hop', u'boost', u'liber', u'fortun']
[u'howard', u'signal', u'careless', u'water']
[u'hunter', u'coal', u'industri', u'help', u'boost', u'miner', u'sector']
[u'contract', u'sell']
[u'increas', u'cost', u'forc', u'thuringowa', u'rat']
[u'india', u'australia', u'expand', u'econom', u'tie']
[u'indigen', u'hous', u'board', u'structur', u'limbo']
[u'indigen', u'hous', u'program', u'continu', u'govt']
[u'indonesia', u'voic', u'secur', u'concern', u'ahead', u'corbi']
[u'injuri', u'blow', u'ahead', u'final']
[u'inquiri', u'hear', u'mental', u'health', u'defici']
[u'iran', u'nuclear', u'plant', u'decis', u'irrevers']
[u'jockey', u'die', u'fall']
[u'juri', u'consid', u'meninga', u'verdict']
[u'juvenil', u'remand', u'centr', u'year', u'away']
[u'kelli', u'refus', u'bail', u'crash']
[u'kyli', u'undergo', u'cancer', u'surgeri']
[u'kyli', u'undergo', u'surgeri']
[u'larg', u'visitor', u'arriv', u'backyard', u'antarct']
[u'latest', u'crash', u'prove', u'causeway', u'need', u'fix', u'ryan']
[u'legisl', u'council', u'return', u'presid']
[u'lennon', u'fend', u'question', u'advic']
[u'lennon', u'target', u'debt']
[u'liber', u'seek', u'preselect', u'seat']
[u'linfox', u'drug', u'test', u'driver']
[u'littl', u'power', u'allow', u'port', u'takeov']
[u'local', u'govt', u'group', u'doubt', u'port', u'plan']
[u'local', u'govt', u'head', u'meet', u'yeppoon']
[u'malik', u'clear', u'life', u'say']
[u'charg', u'school', u'accid']
[u'face', u'court', u'cocain', u'smuggl', u'charg']
[u'massiv', u'hail', u'storm', u'caus', u'havoc', u'brisban']
[u'mcewen', u'giro', u'victori', u'overshadow', u'drug', u'raid']
[u'meninga', u'guilti', u'assault']
[u'minist', u'deni', u'sexual', u'assault', u'alleg']
[u'minist', u'urg', u'reject', u'bega', u'council', u'rat', u'plan']
[u'mishap', u'forc', u'outback', u'challeng', u'chang']
[u'missionari', u'killer', u'death', u'sentenc', u'commut']
[u'mother', u'accus', u'tri', u'suffoc', u'daughter']
[u'motiv', u'come', u'kimmorley']
[u'fear', u'redgum', u'timber', u'industri']
[u'hear', u'cemeteri', u'impact', u'fear']
[u'hit', u'govt', u'inact', u'drought', u'assist']
[u'power', u'station', u'improv']
[u'music', u'showcas', u'life', u'late', u'poet']
[u'deputi', u'mayor', u'urg', u'harmoni', u'council']
[u'health', u'care', u'group', u'plan', u'chang']
[u'hous', u'energi', u'effici']
[u'invent', u'promis', u'shark', u'protect', u'surfer']
[u'bail', u'macquari', u'field', u'accus']
[u'north', u'west', u'begin', u'copper', u'product']
[u'offer', u'compromis']
[u'prison', u'plan', u'draw', u'critic']
[u'criticis', u'port', u'plan']
[u'leader', u'sack', u'politician']
[u'ntfl', u'announc', u'line', u'local', u'clash']
[u'govt', u'reluct', u'hand', u'control', u'darwin']
[u'price', u'reach', u'month']
[u'dead', u'highway', u'truck', u'crash']
[u'opposit', u'seiz', u'mental', u'health', u'chief']
[u'panel', u'decid', u'retail', u'precinct', u'plan']
[u'patrick', u'corp', u'slam', u'sydney', u'airport', u'fee']
[u'patrick', u'post', u'profit']
[u'back', u'port', u'regul', u'plan']
[u'tour', u'lake', u'cargelligo', u'drought', u'area']
[u'decid', u'drought', u'assist', u'tour']
[u'tour', u'drought', u'area']
[u'urg', u'drought', u'tour', u'western']
[u'polic', u'impound', u'suspect', u'miller', u'point']
[u'polic', u'boost', u'staff', u'number']
[u'polic', u'seek', u'help', u'miss', u'bathurst']
[u'polic', u'seek', u'public', u'help', u'probe', u'south', u'durra', u'death']
[u'port', u'plan', u'speed', u'expans', u'busi']
[u'price', u'fix', u'cancer', u'economi', u'samuel']
[u'prison', u'group', u'worri', u'sieg', u'review']
[u'protea', u'coach', u'dare', u'board', u'sack']
[u'public', u'stand', u'need', u'sewerag', u'revamp']
[u'hospit', u'problem', u'widespread', u'inquiri', u'head', u'say']
[u'quak', u'rattl', u'remot', u'town']
[u'solon', u'case', u'mental', u'health', u'iceberg']
[u'razzaq', u'inspir', u'pakistan', u'victori', u'west']
[u'refuge', u'advoc', u'appoint', u'district', u'court', u'judg']
[u'region', u'ask', u'servic', u'review']
[u'report', u'urg', u'ail', u'public', u'school']
[u'resid', u'input', u'seek', u'bruce', u'highway', u'meet']
[u'resid', u'tell', u'batten', u'toilet']
[u'retail', u'sector', u'join', u'disabl', u'work', u'program']
[u'riddler', u'actor', u'gorshin', u'die']
[u'risdon', u'prison', u'staff', u'number', u'increas']
[u'rise', u'water', u'cost', u'affect', u'blood', u'lead', u'level']
[u'risk', u'manag', u'expert', u'gather', u'adelaid']
[u'ryan', u'renew', u'call', u'anim', u'activist', u'chang']
[u'negoti', u'water', u'fund', u'condit']
[u'schumach', u'admit', u'difficult', u'task', u'ahead']
[u'search', u'begin', u'teacher']
[u'senior', u'iraqi', u'offici', u'shoot', u'dead']
[u'share', u'market', u'push', u'higher']
[u'sheikh', u'seek', u'wood', u'releas', u'tell']
[u'sister', u'tell', u'moreton', u'rescu']
[u'skill', u'shortag', u'affect', u'coal', u'expans']
[u'chief', u'urg', u'extens', u'special', u'power']
[u'state', u'urg', u'resist', u'water', u'project', u'extort']
[u'storm', u'pass', u'littl', u'damag']
[u'strong', u'quak', u'rattl', u'sumatra']
[u'studi', u'settl', u'earliest', u'european', u'human', u'debat']
[u'sugar', u'fund', u'prompt', u'mix', u'reaction']
[u'summit', u'put', u'focus', u'road', u'issu']
[u'suspect', u'dun', u'murder', u'face', u'charg']
[u'opposit', u'slam', u'budget']
[u'prison', u'sieg', u'inmat', u'appear', u'court']
[u'hike', u'anger', u'busi', u'group']
[u'offic', u'hedg', u'bet', u'schedul']
[u'offic', u'move', u'allow', u'cut', u'juli']
[u'teenag', u'girl', u'charg', u'break', u'enter', u'offenc']
[u'teen', u'charg', u'sydney', u'jack']
[u'termin', u'oper', u'unsur', u'anderson', u'takeov']
[u'thai', u'insurg', u'rise']
[u'theme', u'park', u'futur', u'look', u'brighter']
[u'thief', u'stab', u'cabbi', u'broadmeadow', u'theft']
[u'arrest', u'colleg']
[u'tiger', u'warn', u'look', u'ahead']
[u'toddler', u'die', u'driveway', u'accid']
[u'toowoomba', u'win', u'babi', u'stake']
[u'chief', u'nation', u'richest']
[u'red', u'head', u'west']
[u'union', u'hope', u'goulburn', u'rail', u'worker', u'futur']
[u'union', u'refus', u'help', u'lewandowski', u'famili']
[u'union', u'warn', u'goldfield', u'water', u'woe']
[u'deni', u'plan', u'weaponis', u'space']
[u'north', u'korean', u'offici', u'meet', u'york']
[u'retail', u'deni', u'aust', u'wool', u'boycott']
[u'uzbek', u'troop', u'reclaim', u'control', u'volatil', u'border']
[u'vanston', u'hint', u'migrat', u'chang']
[u'vanston', u'reconsid', u'timor', u'asylum', u'seeker', u'case']
[u'vet', u'maintain', u'stanc', u'livestock', u'export']
[u'violent', u'storm', u'brisban']
[u'vitamin', u'lower', u'parkinson', u'risk']
[u'volcan', u'rock', u'power', u'home']
[u'polic', u'union', u'accus', u'condon', u'corrupt']
[u'warn', u'ash', u'perspect']
[u'worker', u'biggest', u'rise']
[u'whale', u'affect', u'qlds', u'tourism', u'industri', u'expert']
[u'wit', u'disput', u'mcgee', u'statement']
[u'worker', u'concern', u'bridg', u'crack']
[u'workshop', u'gather', u'perform', u'art', u'centr', u'idea']
[u'zarqawi', u'defend', u'suicid', u'attack']
[u'help', u'troubl']
[u'miss', u'bangladesh', u'boat', u'accid']
[u'afghan', u'kill', u'ambush']
[u'administr', u'put', u'mine', u'compani', u'sale']
[u'advis', u'join', u'council', u'conduct', u'committe']
[u'alonso', u'set', u'pace', u'monaco']
[u'anderson', u'fear', u'reserv']
[u'anderson', u'address', u'nation', u'state', u'confer']
[u'arrest', u'million', u'dollar', u'drug', u'ring']
[u'asic', u'win', u'onetel', u'evid', u'appeal']
[u'australian', u'studi', u'prostrat', u'cancer', u'treatment']
[u'australia', u'buckl', u'lead', u'philippin', u'open']
[u'australia', u'extend', u'mission', u'east', u'timor']
[u'miss', u'lion', u'open', u'week']
[u'bacteri', u'virus', u'like', u'caus', u'death']
[u'baker', u'creek', u'plant', u'receiv', u'fund', u'commit']
[u'bank', u'survey', u'prompt', u'regul']
[u'basso', u'pink', u'giro', u'challeng', u'crumbl']
[u'crowd', u'expect', u'port', u'hedland', u'welcom']
[u'britain', u'achiev', u'human', u'embryo', u'clone']
[u'budget', u'fail', u'impress', u'welfar', u'group']
[u'busi', u'infrastructur', u'grant', u'offer']
[u'busi', u'continu', u'feel', u'skill', u'shortag']
[u'cambodian', u'vow', u'justic', u'victim']
[u'canada', u'trial', u'fatigu', u'suck', u'program']
[u'canadian', u'govt', u'surviv', u'confid', u'vote']
[u'canker', u'threat', u'prompt', u'roadblock', u'warn']
[u'cash', u'waratah', u'draw', u'red', u'brumbi']
[u'chappel', u'appoint', u'indian', u'cricket', u'coach']
[u'chemist', u'fear', u'supermarket', u'medicin', u'plan']
[u'chilean', u'lawyer', u'derid', u'pinochet', u'stroke', u'claim']
[u'china', u'sign', u'deal']
[u'china', u'rais', u'textil', u'export', u'duti']
[u'chopper', u'help', u'miss', u'teen']
[u'cloth', u'nappi', u'green']
[u'cocain', u'nose', u'sniffer', u'dog']
[u'commerc', u'look', u'budget', u'relief']
[u'committe', u'chief', u'dismiss', u'contractor', u'claim']
[u'confer', u'focus', u'secur', u'govt', u'fund']
[u'costa', u'make', u'chang', u'road', u'user', u'summit']
[u'costa', u'road', u'summit', u'represent']
[u'costello', u'say', u'bank', u'reduc', u'fee', u'charg']
[u'council', u'back', u'border', u'develop']
[u'council', u'buy', u'excelsior', u'oval']
[u'council', u'submiss', u'highlight', u'water', u'plan', u'flaw']
[u'council', u'track', u'fund', u'snub']
[u'counter', u'terror', u'activ', u'budget', u'boost']
[u'court', u'hear', u'spear', u'killer', u'jail']
[u'craig', u'spray', u'crow', u'thrash', u'saint']
[u'crow', u'swoop', u'hapless', u'saint']
[u'crusad', u'cruis', u'super', u'final']
[u'disagre', u'student', u'staff', u'ratio', u'figur']
[u'cyclist', u'french', u'appeal', u'drug']
[u'dairi', u'farmer', u'seek', u'better', u'deal', u'cole']
[u'darfur', u'crisi', u'rwanda', u'warn']
[u'doctor', u'group', u'differ', u'shortag']
[u'drink', u'driver', u'respons', u'death', u'plead']
[u'drop', u'northern', u'territori']
[u'eel', u'good', u'eagl']
[u'everyon', u'sale', u'releg', u'romanian', u'club']
[u'extra', u'drought', u'relief', u'overdu', u'beazley', u'say']
[u'falconio', u'murder', u'case', u'hear', u'octob']
[u'farmer', u'hope', u'drought', u'chang']
[u'farm', u'group', u'threaten', u'drought', u'protest']
[u'feder', u'labor', u'ask', u'lead', u'carr']
[u'ferdinand', u'seek']
[u'figur', u'reveal', u'poor', u'financ']
[u'filipino', u'soldier', u'releas', u'year', u'jail']
[u'fli', u'doctor', u'await', u'feder', u'review', u'find']
[u'folk', u'observ', u'kilda', u'coach', u'thoma']
[u'follow', u'lead', u'costello', u'tell', u'bank']
[u'director', u'jode', u'rich', u'lose']
[u'german', u'visit', u'pope']
[u'golf', u'club', u'manag', u'handcuff', u'robberi']
[u'govt', u'announc', u'school', u'art', u'fund']
[u'govt', u'defend', u'polit', u'donat', u'plan']
[u'govt', u'crack', u'interst', u'anim', u'abus']
[u'govt', u'poor', u'state', u'indigen']
[u'govt', u'port', u'polici']
[u'govt', u'unlik', u'kimberley', u'season', u'worker']
[u'grafton', u'indigen', u'preschool', u'open']
[u'green', u'group', u'criticis', u'beach', u'develop', u'plan']
[u'drought', u'support', u'worker']
[u'histor', u'hotel', u'save', u'demolit']
[u'hope', u'remain', u'eyr', u'peninsula', u'transport', u'boost']
[u'hormon', u'therapi', u'aid', u'prostat', u'cancer', u'recoveri']
[u'hous', u'float', u'away', u'flood']
[u'howard', u'assur', u'farmer', u'help', u'dri']
[u'howard', u'beat', u'carr']
[u'hypnosi', u'help', u'sick', u'kid', u'cope', u'needl']
[u'armadillo', u'size', u'car', u'fossil', u'show']
[u'illawarra', u'jobless', u'rate', u'highest']
[u'immigr', u'minist', u'senat', u'amanda', u'vanston']
[u'indigen', u'babi', u'twice', u'like', u'problem']
[u'indonesian', u'ambassador', u'upbeat', u'prison', u'treati']
[u'injur', u'russian', u'schoolgirl', u'famili', u'win', u'visa']
[u'israel', u'vow', u'tough', u'gaza', u'milit']
[u'job', u'program', u'aim', u'offset', u'mitsubishi']
[u'judg', u'charg', u'abort', u'trial', u'unwel']
[u'juri', u'unabl', u'reach', u'verdict', u'arson', u'trial']
[u'kaspa', u'readi', u'busi', u'summer', u'cricket']
[u'kasper', u'readi', u'busi', u'summer', u'cricket']
[u'katsidi', u'hop', u'boost', u'rank', u'tanikul']
[u'khan', u'fin', u'european', u'get', u'tough', u'slow', u'play']
[u'seiz', u'lead', u'rochell']
[u'labor', u'demand', u'court', u'action', u'japan', u'whale', u'plan']
[u'land', u'releas', u'delay', u'take', u'shine', u'alic']
[u'lawyer', u'act', u'vivian', u'solon', u'push']
[u'leader', u'hope', u'timores', u'asylum']
[u'leak', u'paper', u'document', u'afghan', u'prison', u'abus']
[u'main', u'road', u'clear', u'hors', u'collis']
[u'malcolm', u'memorabilia', u'display']
[u'accus', u'invest', u'fraud', u'court']
[u'jail', u'year', u'child', u'death']
[u'jail', u'smuggl', u'meth', u'sake', u'bottl']
[u'man', u'catch', u'pseudoephedrin']
[u'marin', u'hong', u'kong']
[u'mayor', u'hop', u'break', u'hill', u'mural']
[u'mccaw', u'clear', u'meet', u'hurrican', u'super', u'semi']
[u'mckenzi', u'brush', u'asid', u'critic', u'tah', u'rich']
[u'meet', u'outlin', u'antarct', u'flight', u'prioriti']
[u'merrett', u'join', u'lion', u'richmond']
[u'miner', u'chamber', u'urg', u'uranium', u'mine', u'rethink']
[u'minist', u'criticis', u'polic', u'station']
[u'minist', u'offer', u'har', u'race', u'pledg']
[u'miss', u'russian', u'lake']
[u'miss', u'schoolgirl']
[u'mix', u'view', u'emerg', u'koala', u'health']
[u'monaro', u'farmer', u'prepar', u'tough', u'winter']
[u'chilean', u'soldier', u'miss', u'blizzard']
[u'storm', u'forecast', u'brisban']
[u'multi', u'million', u'dollar', u'upgrad', u'plan', u'ulan']
[u'clear', u'fact', u'knife', u'attack', u'stori']
[u'fisher', u'seek', u'licenc', u'clarif']
[u'netscap', u'combin', u'rival', u'program', u'browser']
[u'sale', u'rise', u'april']
[u'imag', u'hous', u'network']
[u'katan', u'shire', u'chief', u'appoint']
[u'monkey', u'speci', u'african', u'forest']
[u'task', u'forc', u'tackl', u'woe']
[u'upper', u'hous', u'member', u'face', u'difficult', u'time']
[u'need', u'extend', u'asio', u'detent', u'power', u'professor']
[u'govt', u'seek', u'green', u'light', u'heroin', u'treatment']
[u'nurs', u'claim', u'triumph']
[u'offic', u'cultur', u'blame', u'immigr', u'stuff']
[u'offic', u'stand', u'assault', u'alleg']
[u'oldest', u'sell']
[u'opposit', u'air', u'health', u'centr', u'park', u'site']
[u'park', u'want', u'criteria', u'relax']
[u'petit', u'oppos', u'hervey', u'bay', u'high', u'rise', u'develop']
[u'pie', u'hope', u'tarrant', u'prove', u'fit']
[u'pioneer', u'settlement', u'sell', u'collect']
[u'assur', u'drought', u'affect', u'farmer', u'want']
[u'offic', u'deni', u'sierra', u'leon', u'letter', u'claim']
[u'polar', u'aviat', u'defend', u'flight', u'record']
[u'polic', u'weapon', u'cach', u'ship', u'contain']
[u'polic', u'hunt', u'knife', u'wield', u'foreign', u'fund', u'thief']
[u'polic', u'probe', u'theft', u'driver', u'licenc', u'make']
[u'pope', u'condemn', u'genocid', u'jew']
[u'premier', u'deni', u'tell', u'minist', u'remain']
[u'protea', u'dump', u'jen']
[u'public', u'urg', u'throw', u'lifelin', u'fish', u'contest']
[u'public', u'warn', u'avoid', u'mossi', u'virus', u'threat']
[u'pulp', u'project', u'get', u'budget', u'support']
[u'ralli', u'seek', u'child', u'safeti', u'resourc']
[u'find', u'week']
[u'cross', u'warn', u'guantanamo', u'koran', u'abus']
[u'redfern', u'resid', u'strong', u'oppos', u'needl']
[u'red', u'enter', u'market', u'henjak']
[u'region', u'firm', u'urg', u'help', u'stop', u'work', u'place']
[u'relax', u'brigg', u'readi', u'world', u'titl', u'shoot']
[u'resourc', u'bank', u'drag', u'lower']
[u'review', u'look', u'improv', u'hospit']
[u'review', u'spark', u'busi', u'enterpris', u'centr']
[u'keep', u'hewitt', u'french', u'open']
[u'rich', u'list', u'tuna', u'tycoon', u'diversifi']
[u'riot', u'club', u'competit', u'point', u'restor']
[u'risdon', u'inmat', u'court', u'prison', u'sieg']
[u'roma', u'death', u'sadden', u'race', u'industri']
[u'council', u'challeng', u'neglig', u'find']
[u'sack', u'waley', u'settl']
[u'safeti', u'blitz', u'begin', u'cleaner']
[u'saint', u'strengthen', u'defenc', u'crow', u'clash']
[u'santo', u'headquart', u'stay']
[u'school', u'crash', u'driver', u'drink', u'court', u'tell']
[u'schoolgirl', u'killer', u'walk', u'free', u'today']
[u'schoolgirl', u'murder', u'walk', u'free']
[u'septemb', u'moot', u'salt', u'scheme', u'start', u'date']
[u'sheedi', u'rule', u'hird', u'comeback', u'power']
[u'sheehan', u'sizzl', u'forth', u'worth']
[u'sheikh', u'aid', u'confid', u'wood', u'releas']
[u'shire', u'reject', u'boat', u'damag', u'compo']
[u'shoal', u'develop', u'approv', u'challeng']
[u'siev', u'case', u'hear', u'smuggler', u'pose', u'soldier']
[u'siev', u'survivor', u'say', u'tell', u'boat', u'seaworthi']
[u'simplot', u'chip', u'fund', u'potato', u'research']
[u'skill', u'labour', u'need', u'propos', u'diesel', u'plant']
[u'soldier', u'impal', u'barrack', u'crash']
[u'speaker', u'vote', u'save', u'canadian', u'govern']
[u'specialist', u'doubt', u'mris', u'viabil']
[u'star', u'war', u'leak', u'internet']
[u'storm', u'fail', u'eventu', u'brisban']
[u'studi', u'spotlight', u'aborigin', u'elder', u'abus']
[u'survey', u'highlight', u'posit', u'econom', u'outlook']
[u'sustain', u'hous', u'scheme', u'alter']
[u'tabloid', u'post', u'photo', u'saddam', u'underwear']
[u'tare', u'council', u'lobbi', u'highway', u'toll']
[u'taxpay', u'fund', u'doctor', u'escap', u'beatti']
[u'teacher', u'applaud', u'smaller', u'kindergarten', u'class']
[u'thai', u'polic', u'seiz', u'qaeda', u'train', u'video']
[u'thorn', u'keen', u'chang', u'winless', u'origin', u'record']
[u'torr', u'strait', u'island', u'host', u'detent', u'centr']
[u'tourist', u'tast', u'drove', u'life']
[u'tsunami', u'prompt', u'privaci', u'loosen']
[u'tune', u'remain', u'blood', u'queensland']
[u'charg', u'alleg', u'drug', u'ring']
[u'kill', u'head', u'collis']
[u'korea', u'hold', u'face', u'face']
[u'uncertainti', u'hang', u'sack', u'member']
[u'await', u'mcmillan', u'campus', u'review', u'result']
[u'union', u'fight', u'milk', u'factori', u'closur']
[u'union', u'upset']
[u'charg', u'accus', u'cuban', u'bomber']
[u'move', u'billboard', u'space']
[u'north', u'korea', u'hold', u'direct', u'nuclear', u'talk']
[u'warn', u'koran', u'mishandl', u'alleg']
[u'vail', u'highlight', u'marin', u'industri', u'econom']
[u'vanston', u'tight', u'lip', u'solon', u'help']
[u'villarr', u'vote', u'victori', u'spanish', u'champion']
[u'virgin', u'ask', u'reviv', u'sydney', u'alic', u'spring']
[u'vote', u'begin', u'provinc', u'bougainvill']
[u'weather', u'spark', u'weekend', u'fire', u'warn']
[u'webber', u'lead', u'drive', u'better', u'safeti']
[u'widespread', u'hospit', u'problem', u'surpris']
[u'windsor', u'student', u'union', u'legisl', u'amend']
[u'adelaid', u'anglican', u'elect', u'archbishop']
[u'adelaid', u'explos', u'investig']
[u'anger', u'kill', u'probe', u'drop']
[u'terrorist', u'hit', u'british', u'museum', u'caveman', u'fake']
[u'beazley', u'step', u'campaign']
[u'face', u'prosecut', u'fatal', u'blast']
[u'branch', u'stack', u'protest', u'heckl', u'brack']
[u'brazil', u'clone', u'endang', u'bovin', u'speci']
[u'budget', u'includ', u'energi', u'concess']
[u'bulldog', u'blow', u'past', u'storm']
[u'bush', u'threaten', u'stem', u'cell', u'research', u'veto']
[u'businessmen', u'health', u'improv', u'moreton', u'ordeal']
[u'campbel', u'miss', u'final']
[u'cane', u'toad', u'threaten', u'darwin', u'drink', u'water']
[u'carlton', u'leav', u'fightback', u'late']
[u'chappel', u'merg', u'steel', u'style']
[u'coat', u'elect', u'presid']
[u'collingwood', u'scott', u'burn', u'shane', u'wakelin']
[u'cosgrov', u'return', u'iraq']
[u'cuban', u'democraci', u'confer', u'open']
[u'curtain', u'come', u'princ', u'park']
[u'doctor', u'want', u'aborigin', u'health', u'chang', u'implement']
[u'dragon', u'withstand', u'fast', u'finish', u'knight']
[u'drought', u'forc', u'goulburn', u'close', u'pool']
[u'drought', u'mental', u'health', u'impact', u'worri', u'leader']
[u'eagl', u'wari', u'mick', u'insid', u'track']
[u'east', u'timor', u'celebr', u'independ']
[u'ebola', u'town', u'quarantin', u'congo']
[u'energi', u'lobbi', u'urg', u'agreement', u'regulatori', u'deal']
[u'timor', u'deni', u'seab', u'deal', u'reach']
[u'farmer', u'demand', u'better', u'drought', u'assist']
[u'farm', u'relat', u'busi', u'tell', u'howard', u'drought', u'woe']
[u'feder', u'nadal', u'french', u'open', u'collis', u'cours']
[u'financi', u'dope', u'chelsea', u'worri', u'wenger']
[u'follow', u'australia', u'exampl', u'chappel', u'tell', u'india']
[u'foster', u'step', u'campaign', u'southcorp', u'share']
[u'stick', u'luna', u'park', u'roller', u'coaster']
[u'fund', u'prop', u'show']
[u'german', u'seek', u'life', u'suspect']
[u'german', u'tourist', u'rescu', u'gorg', u'fall']
[u'gippsland', u'bishop', u'choos', u'head', u'adelaid', u'church']
[u'govt', u'favour', u'coal', u'power', u'product']
[u'green', u'live', u'public', u'hous']
[u'haa', u'redeem', u'carri', u'germani', u'final']
[u'hizbollah', u'fighter', u'shell', u'isra', u'post']
[u'hop', u'fade', u'soldier', u'trap', u'andes']
[u'independ', u'review', u'handl', u'seek']
[u'israel', u'palestinian', u'disagre', u'summit', u'plan']
[u'jackson', u'storm', u'begin', u'women', u'titl', u'defenc']
[u'jackson', u'lawyer', u'famili', u'surveil']
[u'jail', u'vice', u'presid', u'quit', u'posit']
[u'judg', u'accus', u'spi', u'kidnap', u'terrorist']
[u'kidney', u'diseas', u'patient', u'number', u'rise']
[u'kyli', u'high', u'spirit', u'surgeri']
[u'kyli', u'cancer', u'surgeri', u'success']
[u'labor', u'launch', u'campaign']
[u'late', u'milan', u'collaps', u'hand', u'juve', u'titl']
[u'lawyer', u'porn', u'star', u'night']
[u'lennon', u'hint', u'betfair', u'licenc', u'approv']
[u'long', u'wait', u'australian', u'whovian']
[u'arrest', u'hour', u'stand']
[u'jail', u'take', u'grenad', u'bind', u'plane']
[u'welcom', u'ford', u'appoint']
[u'mcewen', u'question', u'italian', u'polic']
[u'northant', u'struggl', u'bangladesh']
[u'north', u'korea', u'warn', u'japan', u'sanction']
[u'seek', u'block', u'hate', u'email']
[u'opposit', u'play', u'sack']
[u'ogradi', u'cook', u'join', u'giro', u'exodus']
[u'kill', u'lyell', u'highway', u'crash']
[u'outrag', u'taxpay', u'fund', u'patel', u'flight']
[u'perri', u'take', u'coloni', u'lead']
[u'petacchi', u'pummel', u'peloton', u'basso', u'bask', u'pink']
[u'phoenix', u'shoot', u'past', u'firebird']
[u'pietersen', u'smash', u'remind', u'selector']
[u'pilot', u'urg', u'transair', u'safeti', u'concern']
[u'plucki', u'pie', u'knock', u'eagl']
[u'polic', u'seek', u'public', u'help', u'death', u'investig']
[u'polic', u'seiz', u'pirat', u'dvds']
[u'polic', u'sick', u'leav', u'inquiri', u'commiss']
[u'tourist', u'target', u'dutch', u'coffe', u'shop']
[u'power', u'post']
[u'prison', u'abus', u'alleg', u'shock', u'karzai']
[u'project', u'tackl', u'indigen', u'crime', u'rat']
[u'protest', u'grip', u'uzbek', u'border', u'town']
[u'public', u'input', u'thrill', u'bushfir', u'memori', u'artist']
[u'public', u'invit', u'tunnel', u'histori']
[u'racv', u'deni', u'gag', u'spokesman']
[u'raikkonen', u'top', u'monaco', u'qualifi']
[u'razorback', u'sign', u'wildcat', u'harvey']
[u'renault', u'time', u'collis', u'practic']
[u'revis', u'snail', u'list', u'speed', u'port', u'oper']
[u'ride', u'goer', u'rescu', u'luna', u'park']
[u'rollercoast', u'rescu']
[u'grass', u'research', u'reap', u'allergi', u'free', u'benefit']
[u'saddam', u'lawyer', u'underp', u'photo']
[u'saddam', u'undi', u'pic', u'spark', u'controversi']
[u'sensor', u'watch', u'barrier', u'reef']
[u'skin', u'darwin', u'road']
[u'soldier', u'return', u'iraq']
[u'sourc', u'saddam', u'photo', u'investig']
[u'south', u'korea', u'deliv', u'fertilis', u'north']
[u'space', u'shuttl', u'discoveri', u'pass', u'tank', u'test']
[u'lanka', u'pois', u'moodi', u'coach']
[u'star', u'war', u'bust', u'offic', u'record']
[u'state', u'territori', u'join', u'fight', u'japan']
[u'strike', u'hit', u'bangladesh']
[u'sunday', u'qualifi', u'ax', u'monaco']
[u'sweden', u'breach', u'tortur', u'convent']
[u'tassi', u'devil', u'reach', u'vulner', u'status']
[u'teacher', u'student', u'convict']
[u'teen', u'die', u'hors', u'rid', u'accid']
[u'teen', u'front', u'court', u'alleg', u'tomahawk', u'threat']
[u'theft', u'figur', u'forc', u'govt', u'defend', u'school']
[u'tiger', u'gabba', u'catfight']
[u'council', u'avoid', u'fall']
[u'tourism', u'oper', u'whale', u'protect']
[u'tszyu', u'camp', u'question', u'hatton', u'abil']
[u'kill', u'injur', u'separ', u'road', u'crash']
[u'updat', u'improv', u'tie', u'miner', u'aborigin']
[u'probe', u'afghan', u'prison', u'death']
[u'uzbek', u'leader', u'reject', u'independ', u'probe']
[u'wall', u'mix', u'strong', u'week']
[u'waratah', u'super', u'final']
[u'warrior', u'strong', u'rabbitoh']
[u'wast', u'treatment', u'plant', u'generat', u'electr']
[u'delay', u'smallpox', u'decis']
[u'wool', u'receivership', u'report', u'worri', u'union']
[u'dead', u'peru', u'crash']
[u'abus', u'claim', u'overshadow', u'karzai', u'visit']
[u'abus', u'report', u'strain', u'afghan', u'relat']
[u'play', u'critic', u'health', u'care', u'report']
[u'afrikan', u'march', u'pretoria']
[u'see', u'tension', u'coalit', u'telstra', u'debat']
[u'anderson', u'deni', u'port', u'crisi', u'point']
[u'anderson', u'reassur', u'pilot', u'safeti', u'concern']
[u'arsenal', u'unit', u'penalti', u'thriller']
[u'arsenal', u'sink', u'unit', u'penalti', u'shootout']
[u'arsenal', u'shoot']
[u'aussi', u'daw', u'smash', u'cours', u'record', u'philippin']
[u'aussi', u'hand', u'tough', u'draw', u'pari']
[u'aust', u'push', u'nuclear', u'test', u'treati']
[u'beatti', u'eye', u'chines', u'tourist', u'trade']
[u'beatti', u'resign', u'seek', u'patel', u'airfar']
[u'blokey', u'job', u'encourag', u'babi', u'boy', u'studi', u'say']
[u'branch', u'stack', u'claim', u'upset', u'confer']
[u'cairo', u'tourist', u'attack', u'suspect', u'die', u'custodi']
[u'canberra', u'bushfir', u'memori', u'plan', u'track']
[u'canteen', u'bodi', u'remov', u'repres']
[u'carrol', u'origin', u'blow', u'maroon']
[u'cartwright', u'take', u'sydney', u'half', u'marathon']
[u'cat', u'coast', u'victori', u'roo']
[u'china', u'check', u'everest', u'growth', u'spurt']
[u'china', u'take', u'emerg', u'precaut', u'bird']
[u'concern', u'super', u'chang', u'cost', u'employe']
[u'conjoin', u'twin', u'separ', u'hour', u'oper']
[u'conjoin', u'twin', u'smile', u'separ', u'surgeri']
[u'corbi', u'plea', u'freedom']
[u'corbi', u'case', u'indonesian', u'presid']
[u'crowd', u'celebr', u'close', u'ceremoni', u'arafura', u'game']
[u'daintre', u'secur', u'properti']
[u'drought', u'need', u'stave', u'skill', u'shortag']
[u'dunde', u'releg', u'scotland']
[u'employ', u'anticip', u'wag', u'rise', u'survey']
[u'eurovis', u'kick', u'kiev']
[u'fish', u'boat', u'explor', u'depth', u'dive', u'wreck']
[u'inspector', u'detail', u'iraq', u'prison', u'life']
[u'futur', u'telstra', u'sale', u'proceed', u'undecid']
[u'game', u'plan', u'pie', u'malthous']
[u'geelong', u'hit', u'tourist', u'magazin', u'blacklist']
[u'german', u'club', u'sack', u'socceroo', u'skipper', u'moor']
[u'germani', u'stun', u'favourit', u'argentina', u'lift', u'tenni']
[u'govt', u'agre', u'drought', u'relief', u'rethink']
[u'govt', u'hold', u'polit', u'donat', u'threshold']
[u'govt', u'court', u'budget']
[u'grandstand', u'speak', u'greg', u'bird', u'paul', u'mellor', u'stuart']
[u'grandstand', u'speak', u'matt', u'elliott', u'sheen']
[u'greec', u'take', u'eurovis', u'crown']
[u'green', u'launch', u'anti', u'forestri', u'deal']
[u'green', u'want', u'debat', u'focus', u'afford', u'hous']
[u'greg', u'chappel', u'interview']
[u'gritti', u'urban', u'tale', u'win', u'cann', u'prize']
[u'hawk', u'past', u'docker']
[u'hear', u'mick', u'malthous', u'john', u'worsfold']
[u'hepat', u'suffer', u'urg', u'access', u'treatment']
[u'high', u'fli', u'shark', u'extend', u'panther', u'slump']
[u'indian', u'appeal', u'sentenc', u'missionari']
[u'investor', u'support', u'telstra', u'sell']
[u'japan', u'malaysia', u'clear', u'free', u'trade', u'deal']
[u'edg', u'ahead', u'york']
[u'laura', u'bush', u'visit', u'jerusalem', u'holi', u'sit']
[u'luna', u'park', u'defend', u'safeti', u'procedur']
[u'charg', u'hour', u'sydney', u'sieg']
[u'hospitalis', u'melbourn', u'shoot']
[u'medic', u'school', u'await', u'accredit', u'decis']
[u'mick', u'crocker', u'brad', u'thorn', u'talk', u'build']
[u'montoya', u'kill', u'charg', u'villeneuv']
[u'morcomb', u'case', u'doorknock', u'turn', u'lead']
[u'mountain', u'torrent', u'kill', u'passeng', u'china']
[u'weigh', u'litchfield', u'gift', u'chanc']
[u'muslim', u'hold', u'anti', u'protest', u'jakarta']
[u'adelaid', u'archbishop', u'promis', u'address', u'child']
[u'fund', u'improv', u'school', u'support']
[u'govt', u'defend', u'breast', u'screen', u'access']
[u'opposit', u'call', u'polic', u'manuka', u'beat']
[u'ozjet', u'confid', u'swift', u'licenc', u'approv']
[u'pakistan', u'seri', u'west', u'indi', u'slump']
[u'palestinian', u'propos', u'summit']
[u'perri', u'continu', u'sizzl', u'coloni']
[u'point', u'heartbreak', u'brigg', u'chicago']
[u'polic', u'uncov', u'morcomb', u'lead']
[u'probe', u'begin', u'luna', u'park', u'ride', u'leav']
[u'push', u'budget', u'fund', u'region', u'electr']
[u'raikkonen', u'secur', u'pole', u'monaco']
[u'ralli', u'decis', u'disappoint', u'motorsport', u'council']
[u'real', u'beti', u'jump', u'champion', u'leagu', u'place']
[u'relief', u'sight', u'hepat', u'suffer']
[u'romanian', u'hostag', u'free', u'iraq']
[u'rudd', u'renew', u'immigr', u'royal', u'commiss']
[u'rudd', u'discuss', u'corbi', u'indonesian', u'ambassador']
[u'govt', u'road', u'safeti']
[u'savoldelli', u'take', u'giro', u'lead', u'basso']
[u'scott', u'draper', u'overcom', u'obstacl']
[u'search', u'suspend', u'miss', u'woman']
[u'shed', u'hous', u'support', u'rural']
[u'smith', u'injuri', u'compound', u'canberra', u'loss']
[u'solon', u'litig', u'hing', u'govt', u'offer', u'lawyer']
[u'south', u'australian', u'kill', u'crash']
[u'spanish', u'free', u'beckham', u'trip']
[u'specialist', u'doctor', u'seek', u'rise', u'nurs']
[u'steve', u'folk', u'braith', u'anasta', u'interview']
[u'sullivan', u'cove', u'develop', u'recognis']
[u'swan', u'spirit', u'bulldog']
[u'technolog', u'death', u'career', u'killer']
[u'child', u'take', u'palm']
[u'togoles', u'refuge', u'flee', u'elect']
[u'pietersen', u'hit', u'selector']
[u'tortur', u'okay', u'certain', u'situat', u'barrist', u'say']
[u'soldier', u'kill', u'afghanistan', u'blast']
[u'violenc', u'crippl', u'iraq', u'rebuild', u'effort']
[u'violenc', u'mar', u'azerbaijan', u'pipelin', u'protest']
[u'waratah', u'bull', u'player', u'interview']
[u'waratah', u'hop', u'continu', u'year', u'first']
[u'warn', u'untreat', u'water']
[u'urg', u'restraint', u'uzbekistan', u'downer']
[u'wenger', u'drop', u'quit', u'hint']
[u'wheel', u'roll', u'adelaid', u'public', u'bike', u'scheme']
[u'woman', u'miss', u'sunshin', u'coast', u'hinterland']
[u'kill', u'pakistani', u'border', u'clash']
[u'kangaroo', u'koala', u'face', u'sterilis']
[u'accus', u'biter', u'refus', u'bail']
[u'milan', u'liverpool', u'fine', u'tune', u'final', u'plan']
[u'act', u'chief', u'back', u'polic', u'despit', u'face']
[u'agforc', u'bush', u'tour', u'begin']
[u'airport', u'upgrad', u'near', u'complet']
[u'archer', u'mooney', u'accept', u'ban']
[u'report', u'show', u'moral', u'australia', u'defenc', u'forc']
[u'armi', u'find', u'bodi', u'chilean', u'train']
[u'art', u'fund', u'indigen', u'group']
[u'author', u'gather', u'sydney', u'writer', u'festiv']
[u'surgeri', u'better', u'therapi']
[u'baghdad', u'bomb', u'caus', u'casualti', u'polic']
[u'bakir', u'admit', u'briberi', u'claim', u'baseless']
[u'bakir', u'apologis', u'corbi', u'prosecut', u'briberi']
[u'bald', u'defend', u'bias', u'claim']
[u'bank', u'lead', u'higher']
[u'program', u'staff', u'strike', u'cut']
[u'staff', u'strike', u'cut']
[u'beatti', u'expect', u'bundaberg', u'inquiri', u'embarrass']
[u'beazley', u'warn', u'infight']
[u'bega', u'council', u'rethink', u'rat', u'plan']
[u'rural', u'agenda', u'coag']
[u'billionair', u'set', u'corker', u'task', u'wine', u'expert']
[u'bodi', u'bathurst', u'tamworth', u'river']
[u'bowl', u'club', u'look', u'sister', u'club', u'green']
[u'prick', u'needl', u'alburi', u'toilet']
[u'brigg', u'hungrier', u'world', u'titl']
[u'buckley', u'make', u'return', u'magpi', u'train']
[u'servic', u'review', u'unlik', u'mean', u'fund']
[u'govt', u'stop', u'indigen', u'genocid']
[u'port', u'sorrel', u'polic', u'boost']
[u'whale', u'shark', u'hunt']
[u'cassano', u'put', u'atalanta', u'miseri']
[u'chamber', u'deliv', u'budget', u'wish', u'list']
[u'china', u'talk', u'begin']
[u'china', u'tackl', u'migratori', u'bird']
[u'club', u'welcom', u'race', u'industri', u'fund', u'boost']
[u'cole', u'myer', u'launch', u'liquor', u'chain']
[u'communiti', u'cabinet', u'come', u'alic']
[u'stand', u'log', u'protest']
[u'cornelia', u'seek', u'compens']
[u'cosgrov', u'see', u'begin', u'iraq']
[u'councillor', u'angri', u'air', u'complaint']
[u'councillor', u'decid', u'byron', u'pay', u'park']
[u'court', u'grant', u'delay', u'administr']
[u'court', u'tell', u'nappi', u'packag', u'tip', u'edg']
[u'croesus', u'mine', u'plan', u'growth', u'strategi']
[u'cronk', u'mogg', u'suspend', u'match']
[u'develop', u'pursu', u'defam', u'action']
[u'develop', u'urg', u'help', u'fund', u'secur', u'camera']
[u'docker', u'chop', u'block', u'connolli']
[u'doctor', u'seek', u'better', u'access', u'breast', u'cancer', u'drug']
[u'dodd', u'hold', u'nerv', u'clinch', u'irish', u'open']
[u'attack', u'put', u'girl', u'hospit']
[u'doll', u'kidnapp', u'get', u'jail', u'time']
[u'downer', u'keen', u'resum', u'polic', u'deploy']
[u'downer', u'rule', u'indonesian', u'polit', u'tamper']
[u'drought', u'ignor', u'long', u'term']
[u'drought', u'assist', u'come', u'late']
[u'time', u'forc', u'water', u'cart']
[u'wrap', u'fuel', u'reduct', u'burn']
[u'dunley', u'face', u'wait', u'spit', u'charg']
[u'eagl', u'wari', u'power']
[u'ebay', u'leav', u'charg', u'seller']
[u'ebay', u'user', u'forc', u'includ']
[u'entri', u'aplenti', u'competit']
[u'work', u'site', u'clean']
[u'fall', u'power', u'line', u'electr']
[u'farmer', u'hope', u'chang', u'fund', u'criteria']
[u'farmer', u'urg', u'overhaul', u'drought', u'fund', u'manag']
[u'faster', u'train', u'spark', u'level', u'cross', u'boom']
[u'feder', u'mission', u'complet', u'grand', u'slam', u'haul']
[u'feedlot', u'plan', u'get', u'green', u'light']
[u'fenerbahc', u'clinch', u'turkish', u'titl']
[u'fieri', u'crash', u'mar', u'powerboat', u'event']
[u'figur', u'north', u'west', u'victorian', u'die', u'sooner']
[u'fire', u'wont', u'deter', u'nation', u'park', u'tourist', u'attract']
[u'fish', u'pest', u'fight', u'net', u'good', u'result']
[u'flanneri', u'name', u'queensland', u'lock']
[u'forb', u'council', u'jail']
[u'forecast', u'predict', u'rain']
[u'forlan', u'trick', u'earn', u'villarr', u'draw', u'barca']
[u'olympian', u'bail', u'wife', u'stalk', u'charg']
[u'gallop', u'attack', u'water', u'network']
[u'gayl', u'vain', u'pakistan', u'sweep', u'seri']
[u'gebrselassi', u'run', u'riot', u'manchest']
[u'gibb', u'captain', u'maori', u'lion']
[u'gloucest', u'host', u'econom', u'develop', u'forum']
[u'govern', u'urg', u'rethink', u'highway', u'fund']
[u'govt', u'accus', u'drought', u'confus']
[u'govt', u'ask', u'boost', u'broom', u'port', u'fund']
[u'govt', u'criticis', u'transport', u'secur', u'vacanc']
[u'govt', u'dismiss', u'talk', u'rise', u'violenc', u'manuka']
[u'govt', u'promis', u'timber', u'cutter', u'exit', u'packag', u'talk']
[u'govt', u'promis', u'widen', u'drought']
[u'govt', u'accus', u'burden', u'busi', u'tape']
[u'govt', u'urg', u'medic', u'school', u'plan']
[u'govt', u'urg', u'consid', u'wider', u'drought', u'impact']
[u'grant', u'embarrass', u'roo', u'heavi', u'defeat']
[u'hop', u'improv', u'motocross', u'champ']
[u'heckler', u'disrupt', u'sharon', u'tour']
[u'histor', u'hotel', u'owner', u'open', u'talk']
[u'hmas', u'newcastl', u'sail', u'persian', u'gulf']
[u'hobart', u'pair', u'win', u'park']
[u'hors', u'rid', u'accid', u'girl', u'name']
[u'howard', u'eye', u'higher', u'polit', u'donat', u'threshold']
[u'howard', u'ring', u'defenc', u'chang']
[u'hundr', u'arrest', u'baghdad', u'raid']
[u'india', u'high', u'alert', u'cinema', u'blast']
[u'indigen', u'remain', u'drive']
[u'indonesia', u'readi', u'iraq', u'explor', u'deal']
[u'infrastructur', u'fund', u'boost']
[u'inquiri', u'continu', u'polic', u'sick', u'leav']
[u'iranian', u'watchdog', u'whittl', u'president']
[u'iraqi', u'forc', u'squeez', u'baghdad']
[u'isra', u'armi', u'go', u'battlefield', u'rugbi', u'field']
[u'isra', u'raft', u'accid']
[u'isra', u'soldier', u'foil', u'suicid', u'bomb']
[u'kerin', u'reject', u'report', u'liber', u'leadership']
[u'wit', u'motiv', u'kill', u'underworld', u'figur']
[u'koran', u'furor', u'prompt', u'newsweek', u'editori', u'shake']
[u'kyrgyzstan', u'turn', u'flee', u'uzbek']
[u'labor', u'criticis', u'resid', u'upgrad']
[u'laura', u'bush', u'heckl', u'jerusalem']
[u'leagu', u'offici', u'hear', u'brawl', u'complaint']
[u'lennon', u'claim', u'public', u'support', u'forest', u'agreement']
[u'libya', u'sue', u'amnesti', u'human', u'right', u'report']
[u'littl', u'rain', u'cut', u'banana', u'prawn', u'catch']
[u'lobster', u'clean', u'green', u'scheme', u'run', u'award']
[u'local', u'govt', u'urg', u'improv', u'drink', u'water']
[u'longreach', u'council', u'quit']
[u'long', u'recoveri', u'time', u'predict', u'storm', u'bunburi']
[u'plan', u'hire', u'hitman', u'kill', u'rape', u'victim']
[u'face', u'court', u'south', u'durra', u'murder']
[u'match', u'review', u'panel', u'ponder', u'charg']
[u'matthew', u'call', u'bounc', u'banish']
[u'mayor', u'hop', u'flexibl', u'drought']
[u'mcewen', u'consid', u'partial', u'fish']
[u'meet', u'focus', u'rural', u'colleg', u'futur']
[u'meet', u'seek', u'support', u'hospit', u'revamp']
[u'melbourn', u'home', u'spain', u'court', u'ordeal']
[u'metcash', u'acquir', u'foodland']
[u'hit', u'luna', u'park', u'respons', u'ride']
[u'minist', u'tabl', u'abus', u'inquiri', u'report']
[u'miss', u'teen', u'prompt', u'inform', u'caravan']
[u'miss', u'teen', u'bodi', u'nation', u'park']
[u'mitsubishi', u'report', u'loss']
[u'mix', u'view', u'stadium', u'seat', u'cost']
[u'mongolia', u'elect', u'socialist', u'presid']
[u'moot', u'polit', u'donat', u'chang', u'guarante']
[u'moreton', u'ordeal', u'life', u'chang', u'say', u'tourist']
[u'morwel', u'shoot', u'accus', u'refus', u'bail']
[u'mother', u'want', u'jail', u'term', u'toddler', u'tortur']
[u'motorcyclist', u'lose', u'highway', u'crash']
[u'call', u'urgent', u'drought']
[u'cabinet', u'chair']
[u'help', u'hors', u'owner']
[u'coach', u'deal', u'saint', u'reject', u'millward']
[u'newcom', u'nadal', u'readi', u'french', u'test']
[u'sugar', u'help', u'fight', u'diseas']
[u'tourism', u'manag', u'want', u'past']
[u'wagga', u'club', u'moot']
[u'nurs', u'associ', u'back', u'rise', u'decis']
[u'nurs', u'rise', u'welcom', u'break', u'hill']
[u'opposit', u'question', u'budget', u'speed', u'camera', u'spend']
[u'parent', u'power', u'save', u'child', u'care', u'centr']
[u'parra', u'doubl', u'giro', u'savoldelli', u'lead']
[u'pastoralist', u'north', u'west', u'welcom', u'rain']
[u'pearl', u'produc', u'fail', u'secur', u'jellyfish', u'research']
[u'peopl', u'smuggl', u'trial', u'hear', u'shoot', u'threat']
[u'perri', u'cruis', u'coloni', u'lonard']
[u'pilot', u'offer', u'legal', u'protect', u'crash', u'probe']
[u'plane', u'compani', u'director', u'urg', u'pilot', u'outlin']
[u'plan', u'vortex', u'rais', u'roof']
[u'player', u'group', u'back', u'gold', u'coast']
[u'promis', u'financi', u'boost', u'farmer']
[u'meet', u'market', u'defenc', u'personnel']
[u'poetri', u'collect', u'honour', u'premier', u'award']
[u'polic', u'associ', u'point', u'finger', u'bendigo', u'loss']
[u'polic', u'extend', u'sick', u'leav', u'spotlight']
[u'polic', u'hunt', u'cycl', u'attack']
[u'polic', u'investig', u'central', u'murder']
[u'polic', u'probe', u'park', u'blaze']
[u'polic', u'puzzl', u'speed', u'youth']
[u'polic', u'search', u'miss', u'backpack']
[u'polic', u'search', u'miss', u'elder']
[u'polic', u'vote', u'deal']
[u'port', u'encourag', u'bomber']
[u'post', u'mortem', u'nightclub', u'fight', u'victim']
[u'public', u'ask', u'step', u'reconcili']
[u'hospit', u'probe', u'wont', u'target', u'oversea', u'train']
[u'seek', u'compens']
[u'real', u'wage', u'growth', u'continu', u'howard']
[u'red', u'undergo', u'independ', u'review']
[u'research', u'step', u'inter', u'speci']
[u'resid', u'tell', u'fund', u'highway']
[u'rokocoko', u'black', u'place', u'doubt']
[u'royal', u'commission', u'aim', u'deadlin']
[u'search', u'begin', u'accus', u'kidnapp']
[u'search', u'continu', u'miss', u'woman']
[u'sex', u'safin', u'plan', u'french', u'open', u'fightback']
[u'sharapova', u'eye', u'second', u'slam', u'spot']
[u'sheep', u'blood', u'provid', u'rattlesnak', u'anti', u'venom']
[u'shire', u'welcom', u'western', u'power', u'fund', u'boost']
[u'streeton', u'tip', u'dollar', u'foster', u'sell']
[u'streeton', u'work', u'fetch', u'auction']
[u'strong', u'dollar', u'undermin', u'aussi']
[u'stuart', u'excit', u'origin', u'coach', u'debut']
[u'studi', u'find', u'salt', u'dispos', u'basin', u'affect']
[u'support', u'coastal', u'farm', u'water', u'qualiti', u'audit']
[u'support', u'school', u'seatbelt', u'review']
[u'talk', u'byron', u'chook', u'stink']
[u'sign', u'water', u'deal']
[u'teenag', u'charg', u'tomahawk', u'threat']
[u'tribun', u'hand', u'night']
[u'govt', u'halv', u'home', u'buyer']
[u'underdon', u'chop', u'lead', u'mother', u'stab']
[u'campus', u'report', u'delay']
[u'consid', u'rise', u'hec', u'fee']
[u'iraqi', u'forc', u'launch', u'baghdad', u'crackdown']
[u'teen', u'second', u'youngest', u'lpga', u'winner']
[u'venezuela', u'warn', u'cuban', u'exil', u'case']
[u'vescont', u'stroll', u'stroke', u'victori']
[u'video', u'warn', u'young', u'driver', u'riski', u'behaviour']
[u'villawood', u'child', u'releas', u'detent']
[u'villawood', u'child', u'leav', u'detent']
[u'voluntari', u'student', u'union', u'cost', u'job']
[u'volunt', u'fish', u'contest', u'aliv']
[u'govt', u'consid', u'live', u'will']
[u'watchdog', u'downplay', u'airport', u'baggag', u'tamper']
[u'water', u'main', u'flood', u'assess']
[u'week', u'put', u'focus', u'palliat', u'care']
[u'woman', u'serious', u'injur', u'surf', u'mishap']
[u'woman', u'self', u'immol', u'blame', u'mental', u'health']
[u'work', u'chang', u'safeti', u'ramif']
[u'work', u'overcom', u'bark', u'highway', u'reput']
[u'guidelin', u'releas']
[u'dead', u'iraq', u'bomb', u'attack']
[u'accus', u'wife', u'killer', u'face', u'trial']
[u'bushfir', u'uncov', u'aborigin', u'heritag', u'site']
[u'announc', u'gold', u'coast', u'plan']
[u'offic', u'face', u'cocain', u'smuggl', u'probe']
[u'back', u'extens', u'asio', u'power']
[u'indecis', u'stanc']
[u'support', u'compens', u'effort']
[u'anim', u'store', u'blaze']
[u'anti', u'chrome', u'trial', u'get', u'extend', u'life']
[u'arson', u'suspect', u'gambier', u'timber', u'blaze']
[u'aussi', u'swing', u'action', u'pari', u'clay']
[u'aust', u'astronom', u'help', u'spot', u'planet']
[u'australia', u'bird', u'risk', u'relat', u'expert']
[u'australian', u'actor', u'take', u'flight', u'thriller']
[u'australian', u'get', u'groceri', u'cheap', u'studi']
[u'bakir', u'back', u'corbi', u'letter', u'indonesian', u'presid']
[u'bank', u'warn', u'drive', u'home', u'valuat']
[u'batti', u'cover', u'gile']
[u'bear', u'go', u'famili', u'backyard', u'pool']
[u'bear', u'take', u'backyard', u'pool']
[u'bermagui', u'club', u'hop', u'budget', u'lifelin']
[u'crowd', u'debat', u'ocean', u'pool', u'plan']
[u'birney', u'want', u'budget', u'promis']
[u'blackal', u'prepar', u'heartland', u'festiv']
[u'blaze', u'engulf', u'gambier', u'timber']
[u'boe', u'highlight', u'woe']
[u'brack', u'tour', u'wimmera', u'malle', u'drought', u'region']
[u'broad', u'ralli', u'push', u'ord', u'higher']
[u'break', u'hill', u'plan', u'pool']
[u'budget', u'see', u'return', u'invest', u'properti']
[u'budget', u'wont', u'includ', u'overpass', u'fund']
[u'bundaberg', u'council', u'adopt', u'flood', u'plan']
[u'bureaucrat', u'futur', u'unclear', u'despit', u'claim']
[u'burst', u'line', u'blame', u'contain', u'ship', u'blaze']
[u'bushfir', u'coron', u'reject', u'cover', u'claim']
[u'bushfir', u'fund', u'help', u'emot', u'recoveri']
[u'bush', u'reject', u'afghan', u'request', u'troop', u'control']
[u'byron', u'mayor', u'want', u'attack', u'warn', u'sign']
[u'communiti', u'bush', u'blueprint']
[u'drought', u'relief', u'shake']
[u'higher', u'classif', u'breast']
[u'water', u'plan', u'communiti', u'consult']
[u'bomb', u'kill', u'baghdad']
[u'carr', u'govt', u'pass', u'buck', u'drought', u'assist']
[u'carr', u'polit', u'histori']
[u'celtic', u'boss', u'oneil', u'quit', u'report']
[u'cessnock', u'author', u'claim', u'major', u'literari', u'prize']
[u'say', u'season', u'reason', u'complac']
[u'charl', u'camilla', u'gift', u'mail']
[u'child', u'releas', u'detent', u'centr', u'time']
[u'civilian', u'death', u'toll', u'iraq', u'unknown']
[u'coff', u'air', u'budget', u'wish', u'list']
[u'communiti', u'meet', u'push', u'high', u'rise']
[u'coron', u'recommend', u'passeng', u'limit', u'plate']
[u'costello', u'welcom', u'oecd', u'growth', u'forecast']
[u'council', u'call', u'dubbo', u'drought']
[u'council', u'rush', u'knock', u'railway', u'station']
[u'council', u'reject', u'telstra', u'phone', u'tower', u'plan']
[u'council', u'consid', u'pavilion', u'plan']
[u'currajong', u'undetect', u'dengu', u'fever', u'case']
[u'cost', u'brigg', u'titl', u'fight']
[u'danih', u'add', u'voic', u'bounc', u'call']
[u'darwin', u'rememb', u'johnson', u'solo', u'flight']
[u'doctor', u'name', u'patient', u'death', u'inquest']
[u'downer', u'prais', u'bougainvill', u'peac', u'process']
[u'dozen', u'kill', u'iraq', u'bomb', u'blast']
[u'drought', u'put', u'pressur', u'cattl', u'compani']
[u'state', u'target', u'water', u'academ']
[u'dunley', u'guilti', u'spit']
[u'dunley', u'face', u'judiciari']
[u'rail', u'worker', u'tool', u'kit']
[u'emerg', u'author', u'stand', u'unit', u'fund']
[u'environ', u'group', u'want', u'tougher', u'land', u'clear']
[u'give', u'clear', u'extend', u'iron', u'mine']
[u'chief', u'look', u'council']
[u'feder', u'fight', u'flag', u'fli', u'freedom']
[u'feder', u'govt', u'port', u'plan', u'line', u'develop']
[u'fight', u'forc', u'earli', u'danc', u'music', u'award']
[u'firefight', u'contain', u'spot', u'fire', u'adelaid', u'hill']
[u'firefight', u'tackl', u'cairn', u'contain', u'ship', u'blaze']
[u'fisher', u'warn', u'abalon', u'season']
[u'dead', u'philippin', u'militari', u'plane', u'crash']
[u'fruiter', u'fight', u'life', u'abduct', u'ordeal']
[u'ganmain', u'urg', u'push', u'level', u'cross', u'boom', u'gate']
[u'kid', u'detent', u'beazley']
[u'girl', u'free', u'life', u'detent']
[u'girl', u'releas', u'sydney', u'villawood', u'detent']
[u'glazer', u'plan', u'unit', u'delist']
[u'goulburn', u'seek', u'state', u'fund', u'water', u'pipelin']
[u'govt', u'ask', u'brigalow', u'belt', u'explan']
[u'govt', u'deni', u'boy', u'club', u'telstra', u'appoint']
[u'govt', u'opposit', u'odd', u'patient', u'wait', u'list']
[u'govt', u'pressur', u'chang', u'approach']
[u'grower', u'aplenti', u'head', u'horticultur', u'gather']
[u'gunmen', u'hold', u'passeng', u'hostag', u'philippin']
[u'gunnedah', u'plan', u'ambiti', u'budget']
[u'hagan', u'warn', u'origin', u'wrestl', u'match']
[u'healthi', u'resid', u'urg', u'forego', u'shoot']
[u'heritag', u'grant', u'avail', u'histor', u'hotel']
[u'wilkinson', u'salvag', u'draw', u'lion']
[u'high', u'school', u'continu', u'super', u'school', u'consult']
[u'histor', u'flight', u'captur', u'attent']
[u'hotel', u'claim', u'oper', u'hour', u'decis', u'link']
[u'howard', u'offer', u'financi', u'solon']
[u'howard', u'stand', u'vanston', u'detent', u'polici']
[u'howard', u'urg', u'japan', u'reconsid', u'plan']
[u'human', u'skull', u'consid', u'suspici']
[u'hunter', u'polic', u'vote', u'offer']
[u'indigen', u'leader', u'boycott', u'reconcili', u'forum']
[u'indonesia', u'decid', u'bali', u'arrest', u'ruddock', u'say']
[u'indi', u'patrick', u'aim', u'femal', u'winner']
[u'inquiri', u'bundaberg', u'hospit', u'scandal', u'hear']
[u'intern', u'wont', u'stop', u'whale', u'hunt', u'howard']
[u'iran', u'review', u'candid']
[u'recruit', u'train', u'report', u'find']
[u'jackson', u'accus', u'mother', u'fraudster', u'court', u'tell']
[u'japan', u'urg', u'howard', u'read', u'whale']
[u'jetstar']
[u'judg', u'give', u'corbi', u'omin', u'warn']
[u'keelti', u'back', u'govt', u'letter', u'corbi', u'lawyer']
[u'kerouac', u'play', u'discov', u'warehous']
[u'kilkivan', u'unhappi', u'game', u'baton', u'relay', u'snub']
[u'kon', u'defend', u'campaign']
[u'labor', u'urg', u'govt', u'stop', u'japan', u'whale', u'plan']
[u'lappin', u'hop', u'career', u'brisban']
[u'leav', u'land', u'digniti', u'farmer', u'urg']
[u'lebanon', u'free', u'syrian', u'militari', u'say']
[u'lewi', u'name', u'teacher', u'centr', u'claim']
[u'liber', u'backbench', u'unveil', u'detaine', u'releas']
[u'liber', u'make', u'releas', u'detaine']
[u'lithgow', u'deleg', u'discuss', u'power', u'station']
[u'liverpool', u'underdog', u'upstag', u'milan']
[u'llewellyn', u'tout', u'hobart', u'hospit', u'upgrad']
[u'lockyer', u'suffer', u'injuri', u'scare']
[u'mayor', u'play', u'sale', u'council', u'busi']
[u'mayor', u'pour', u'cold', u'water', u'pipelin', u'plan']
[u'mayor', u'say', u'council', u'cours', u'higher', u'rat']
[u'mayor', u'beat', u'swan', u'hill', u'race', u'complex', u'plan']
[u'meatwork', u'compost', u'plan', u'rais', u'concern']
[u'media', u'pressur', u'didnt', u'dictat', u'leong', u'releas']
[u'melbourn', u'team', u'win', u'chelsea', u'flower', u'gold', u'medal']
[u'metcash', u'boss', u'confid', u'foodland', u'takeov']
[u'minist', u'guarante', u'rail', u'line', u'futur']
[u'minist', u'apologis', u'school', u'controversi']
[u'minist', u'urg', u'council', u'speak']
[u'moor', u'reject', u'booz', u'claim']
[u'mother', u'make', u'plea', u'catch', u'son', u'killer']
[u'mother', u'burn', u'victim', u'hit', u'servic']
[u'myskina', u'make', u'unwant', u'histori']
[u'nasa', u'closer', u'look', u'discoveri']
[u'nasdaq', u'post', u'win', u'week']
[u'nelson', u'defend', u'school', u'flag', u'rais', u'polici']
[u'campaign', u'put', u'focus', u'reconcili']
[u'case', u'reveal', u'bundaberg', u'hospit', u'inquiri']
[u'date', u'elect', u'alic', u'alderman', u'quit']
[u'evid', u'north', u'korea', u'plan', u'nuclear', u'test']
[u'close', u'suspens', u'loophol']
[u'opposit', u'shame', u'juvenil', u'offend']
[u'origin', u'team', u'face', u'final', u'session']
[u'pair', u'face', u'sentenc', u'bomb', u'dish']
[u'parliamentari', u'leak', u'cost']
[u'power', u'piggeri']
[u'pilbara', u'children', u'benefit', u'sport', u'mentor']
[u'pitcairn', u'lose', u'appeal', u'sentenc']
[u'accus', u'hide', u'kirribilli', u'parti']
[u'polic', u'kimberley', u'gambl']
[u'polic', u'mini', u'motorbik']
[u'polic', u'command', u'deni', u'region', u'understaf']
[u'polic', u'fear', u'grim', u'outcom', u'miss', u'teenag', u'case']
[u'polic', u'hunt', u'holiday', u'home', u'thiev']
[u'polic', u'keen', u'palm', u'post']
[u'polic', u'prais', u'trucki', u'road', u'blitz']
[u'polic', u'seek', u'video', u'music', u'award', u'alterc']
[u'polic', u'shopfront', u'get', u'plan', u'green', u'light']
[u'polic', u'stand', u'fingerprint', u'shake']
[u'polic', u'suspect', u'sole', u'offend', u'child', u'assault']
[u'poor', u'diet', u'put', u'tiwi', u'babi', u'risk']
[u'port', u'optimist', u'subiaco']
[u'port', u'optimist', u'subiaco']
[u'prais', u'afford', u'hous', u'plan']
[u'pressur', u'grow', u'review', u'famili', u'violenc', u'law']
[u'program', u'help', u'busi', u'pulp', u'benefit']
[u'project', u'record', u'lawrenc', u'hargrav', u'drive', u'histori']
[u'psychiatrist', u'criticis', u'piecem', u'releas']
[u'urg', u'help', u'produc', u'meet', u'nlis', u'cost']
[u'qualifi', u'chang', u'help', u'ferrari', u'say', u'todt']
[u'rain', u'offer', u'mix', u'benefit', u'victorian', u'farmer']
[u'raus', u'ill', u'obvious', u'say', u'sister']
[u'cross', u'issu', u'urgent', u'blood']
[u'redfern', u'communiti', u'farewel', u'activist', u'priest']
[u'refshaug', u'defend', u'vendor', u'retent']
[u'repeat', u'paedophil', u'jail', u'year']
[u'report', u'highlight', u'hide', u'ballarat', u'poverti']
[u'restaur', u'cash', u'eleph', u'rampag']
[u'revel', u'urg', u'wari', u'drink', u'spike']
[u'ruddock', u'say', u'corbi', u'sentenc', u'stick']
[u'rugbi', u'leagu', u'ref', u'code', u'conduct']
[u'sailor', u'tip', u'head', u'south']
[u'scott', u'sixth', u'vijay', u'displac', u'tiger']
[u'drug', u'help', u'distanc']
[u'sick', u'leav', u'figur', u'dont', u'surpris', u'polic', u'associ']
[u'snowtown', u'serial', u'killer', u'lose', u'appeal']
[u'solon', u'lawyer', u'govt', u'want']
[u'souness', u'disreput', u'charg']
[u'south', u'durra', u'murder', u'case', u'adjourn']
[u'state', u'ward', u'welcom', u'interim', u'abus', u'report']
[u'student', u'cricket', u'skill', u'boost']
[u'studi', u'find', u'safe', u'continu']
[u'survey', u'show', u'export', u'confid']
[u'sylvia', u'award', u'rise', u'star', u'nomin']
[u'tate', u'name', u'bronco', u'bench']
[u'tecton', u'plate', u'tokyo']
[u'travel', u'magazin', u'blast', u'tassi', u'town']
[u'treasuri', u'assess', u'drought', u'relief', u'option']
[u'tszyu', u'warn', u'complac']
[u'tumut', u'lose', u'carter', u'holt', u'harvey', u'job']
[u'ugandan', u'children', u'sleep', u'rough', u'avoid', u'rebel', u'armi']
[u'teach', u'staff', u'meet', u'law']
[u'plan', u'radar', u'sale', u'aust']
[u'farmer', u'celebr', u'rain', u'month']
[u'victoria', u'end', u'cattl', u'graze', u'alpin', u'nation']
[u'vogel', u'seventh', u'petacchi', u'strike']
[u'wagga', u'like', u'wait', u'indigen', u'scheme']
[u'govt', u'investig', u'sheep', u'export', u'mistreat']
[u'wakelin', u'brother', u'break', u'twin', u'record']
[u'wallac', u'deni', u'swipe', u'frawley']
[u'polic', u'give', u'power', u'loiter']
[u'word', u'erupt', u'tasmania', u'financ']
[u'welfar', u'focus', u'live', u'export', u'meet']
[u'western', u'budget', u'prioriti']
[u'whale', u'leav', u'eden', u'water']
[u'wheat', u'price', u'ralli']
[u'woolworth', u'share', u'trade', u'halt']
[u'world', u'champ', u'axeman', u'get', u'state', u'select', u'chop']
[u'yorkshir', u'brewer', u'releas', u'dicki', u'bird', u'beer']
[u'yudhoyono', u'eye', u'renew', u'militari', u'tie']
[u'wallabi', u'poison', u'anger', u'anim', u'protector']
[u'babi', u'bear', u'asylum', u'seeker', u'forc']
[u'afghan', u'author', u'opium', u'heroin', u'raid']
[u'player', u'chase', u'rise']
[u'unsway', u'question', u'murder', u'petit']
[u'hostag', u'free', u'philippin', u'hijack']
[u'alston', u'board', u'member', u'govt', u'fund', u'foundat']
[u'amnesti', u'slam', u'govern', u'anti', u'terror', u'tactic']
[u'asic', u'hand', u'businessman', u'year']
[u'asylum', u'seeker', u'ask', u'fund', u'siev', u'court']
[u'australia', u'join', u'oper', u'spam', u'zombi']
[u'babi', u'bear', u'detent']
[u'bangladesh', u'test', u'england', u'ruthless', u'streak']
[u'barbarian', u'sweep', u'asid', u'scot']
[u'baro', u'verg', u'liverpool', u'exit']
[u'beazley', u'promis', u'incom', u'earner']
[u'billiton', u'charg', u'blast', u'death']
[u'biolog', u'weapon', u'employ', u'weed', u'fight']
[u'break', u'slow', u'pair', u'leav', u'vandalis']
[u'budget', u'deliv', u'pacif', u'highway', u'fund']
[u'budget', u'get', u'mix', u'respons', u'north', u'west']
[u'budget', u'spark', u'mix', u'reaction', u'north', u'coast']
[u'budget', u'fund', u'remov', u'asbesto', u'roof', u'school']
[u'budget', u'polic', u'clout']
[u'budget', u'recognis', u'drought', u'farmer']
[u'hunter', u'strategi', u'address', u'current', u'social']
[u'region', u'benefit', u'aquif', u'water']
[u'canadian', u'father', u'want', u'detail', u'daughter', u'death']
[u'canberra', u'write', u'japanes', u'sister', u'citi', u'condemn']
[u'bomb', u'spanish', u'capit', u'injur']
[u'carr', u'longest', u'serv', u'premier']
[u'carrol', u'stay', u'trafford']
[u'central', u'victorian', u'poverti', u'feder', u'govt']
[u'chamber', u'initi', u'focus', u'water', u'suppli']
[u'chicken', u'farm', u'protest', u'chain', u'cage']
[u'chinatown', u'develop', u'give', u'construct', u'deadlin']
[u'civic', u'centr', u'favour', u'option', u'art', u'facil']
[u'reject', u'land', u'right', u'paper', u'flaw']
[u'cleric', u'offer', u'wood', u'place', u'iraq']
[u'clps', u'tshirt', u'plan', u'label', u'crackpot', u'idea']
[u'colleagu', u'gari', u'riley', u'reflect', u'graham', u'kennedi']
[u'commiss', u'wit', u'back', u'brother', u'evid']
[u'copeland', u'sign', u'bullet']
[u'coron', u'back', u'famili', u'frustrat', u'hospit']
[u'council', u'consid', u'bird', u'nest', u'concern']
[u'council', u'manag', u'plan']
[u'council', u'warn', u'close', u'tie', u'develop']
[u'council', u'urg', u'listen', u'ratepay']
[u'council', u'welcom', u'cannabi', u'treatment', u'clinic', u'fund']
[u'coupl', u'admit', u'barbaro', u'kidnap']
[u'critic', u'propos', u'electron', u'timet']
[u'detent', u'probe', u'hand', u'case']
[u'doctor', u'centr', u'inquiri', u'send', u'letter', u'thank']
[u'doctor', u'urg', u'work', u'detent']
[u'drought', u'pressur', u'grain', u'grower']
[u'time', u'water', u'carrier', u'busi']
[u'dubbo', u'council', u'indigen', u'liaison', u'offic']
[u'dump', u'link', u'miss', u'schoolboy', u'polic']
[u'eagl', u'appeal', u'dunley', u'suspens']
[u'elbow', u'surgeri', u'sidelin', u'tendulkar']
[u'emerald', u'make', u'water', u'expans', u'plan']
[u'emerg', u'call', u'polic', u'go', u'unansw']
[u'england', u'erinl', u'barbarian', u'clash']
[u'entertain', u'tribut', u'kennedi']
[u'etoo', u'fin', u'real', u'insult']
[u'extra', u'hospit', u'bed', u'greater', u'southern', u'health']
[u'worker', u'await', u'compens']
[u'farley', u'quit']
[u'farmer', u'tell', u'think', u'product', u'method']
[u'north', u'bush', u'burn', u'emphasis', u'safeti']
[u'fear', u'budget', u'discourag', u'properti', u'buyer']
[u'fear', u'drought', u'delay', u'stress', u'farmer']
[u'note', u'prompt', u'stock', u'slight', u'fall']
[u'financ', u'staff', u'lose', u'massag']
[u'victim', u'water', u'bill', u'waiv']
[u'staffer', u'bail', u'briberi', u'corrupt']
[u'brogden', u'staffer', u'plead', u'guilti', u'carr', u'threat']
[u'forum', u'consid', u'fraser', u'coast', u'hospit', u'servic']
[u'friend', u'toni', u'sattler', u'speak', u'hour']
[u'recognit', u'possibl', u'soon']
[u'galleri', u'director', u'criticis', u'upgrad', u'delay']
[u'gallop', u'anger', u'govt', u'flag', u'rais', u'ceremoni']
[u'georgeson', u'domin', u'english', u'surf']
[u'gladston', u'hop', u'resurg']
[u'govt', u'confid', u'race', u'meet', u'compromis']
[u'govt', u'confus', u'detent', u'babi']
[u'govt', u'dept', u'call', u'licenc', u'cancel']
[u'govt', u'move', u'improv', u'palliat', u'care', u'resourc']
[u'govt', u'negoti', u'deal']
[u'govt', u'delay', u'school', u'fee', u'decis']
[u'grandstand', u'speak', u'matt', u'bowen', u'darren', u'lockyer']
[u'greek', u'mourn', u'communist', u'leader']
[u'control', u'report', u'trigger', u'tougher', u'law']
[u'gunmen', u'free', u'seven', u'hostag', u'philippin', u'report']
[u'gunmen', u'hold', u'hostag', u'philippin']
[u'guterr', u'head', u'refuge', u'agenc']
[u'hart', u'call', u'form', u'beat', u'blue']
[u'histor', u'woollen', u'mill', u'sell']
[u'hope', u'side', u'wallac']
[u'horan', u'rais', u'doctor', u'supervis', u'fear']
[u'hossain', u'teenag', u'rampag', u'england']
[u'howard', u'want', u'nation', u'approach', u'apprenticeship']
[u'hunter', u'share', u'budget', u'fund']
[u'iemma', u'accus', u'mislead', u'parliament', u'child']
[u'illawarra', u'share', u'budget', u'fund']
[u'illeg', u'fruit', u'picker', u'manjimup']
[u'immigr', u'minist', u'amanda', u'vanston', u'announc']
[u'immigr', u'rule', u'detent', u'newborn']
[u'quit', u'say', u'defiant', u'agassi']
[u'increas', u'secur', u'electr', u'tower']
[u'indonesia', u'play', u'corbi', u'prison', u'deal']
[u'irrig', u'face', u'murray', u'water', u'alloc']
[u'gatto', u'tell', u'court']
[u'japanes', u'sister', u'citi', u'ask', u'fight']
[u'judg', u'ask', u'dept', u'leav', u'teenag', u'father']
[u'jong', u'stand', u'tall', u'platform', u'shoe']
[u'kununurra', u'undergo', u'mossi', u'spray']
[u'legendari', u'australian', u'pioneer', u'graham', u'kennedi']
[u'leong', u'threaten', u'immigr', u'offici', u'lawyer']
[u'lion', u'simpson', u'sight']
[u'liverpool', u'hungri', u'devour', u'rafa']
[u'local', u'firm', u'feel', u'cost', u'workplac', u'accid']
[u'mandatori', u'detent', u'bill', u'expos', u'divis']
[u'plead', u'guilti', u'kidnap', u'girlfriend']
[u'face', u'court', u'accus', u'video', u'shop', u'arm']
[u'women', u'unawar', u'domest', u'violenc', u'help']
[u'maroon', u'deni', u'lockyer', u'injuri', u'rumour']
[u'maroon', u'lead', u'lang', u'park']
[u'maroon', u'snatch', u'golden', u'victori']
[u'melbourn', u'compani', u'sign', u'contract']
[u'mildura', u'revamp', u'tourism', u'imag']
[u'minchin', u'wont', u'reveal', u'welfar', u'work', u'cost']
[u'minist', u'reject', u'farm', u'group', u'budget', u'attack']
[u'mooney', u'hint', u'water', u'treatment', u'plan', u'partnership']
[u'lib', u'throw', u'support', u'georgiou']
[u'concern', u'lack', u'fund', u'hospit']
[u'plan', u'weed', u'tiwi', u'petrol', u'sniffer']
[u'seek', u'water', u'suppli', u'boost', u'port', u'kenni']
[u'talk', u'budget', u'benefit']
[u'balanc', u'power', u'best', u'south', u'west']
[u'nato', u'back', u'african', u'mission']
[u'navi', u'imag', u'posit', u'despit', u'children', u'overboard']
[u'nazi', u'case', u'open', u'door', u'elgin', u'marbl', u'return']
[u'newborn', u'stay', u'detent']
[u'bushfir', u'inquiri', u'repeat']
[u'newcastl', u'beach', u'legal', u'graffiti', u'wall']
[u'fee', u'displeas', u'south', u'coast', u'fisher']
[u'look', u'eaglehawk', u'shop', u'centr']
[u'polic', u'head', u'west']
[u'school', u'help', u'improv', u'remot', u'aborigin', u'health']
[u'budget', u'meet', u'mix', u'respons', u'southern']
[u'policewoman', u'claim', u'persecut']
[u'indigen', u'target', u'give', u'fals', u'hope']
[u'deal', u'flag', u'corbi']
[u'origin', u'decid', u'playmak', u'stuart']
[u'pagan', u'rule', u'player', u'curfew']
[u'page', u'quiz', u'flynn', u'appoint']
[u'panel', u'hear', u'view', u'retail', u'expans']
[u'patel', u'patient', u'didnt', u'follow', u'inquiri', u'hear']
[u'petrol', u'blaze', u'put', u'hospit']
[u'pine', u'worker', u'opportun']
[u'plan', u'continu', u'music', u'conservatorium']
[u'plan', u'reject', u'extend', u'detent', u'centr']
[u'playwright', u'david', u'williamson', u'honour', u'entertain']
[u'seek', u'review', u'aust', u'program']
[u'polic', u'arrest', u'accus', u'bite', u'offic']
[u'polic', u'defend', u'power']
[u'polic', u'hunt', u'north', u'shore', u'home', u'invad']
[u'polic', u'power', u'help', u'clean', u'street']
[u'polic', u'offic', u'claim', u'persecut', u'forc']
[u'polic', u'church', u'blaze', u'link']
[u'polic', u'test', u'daniel', u'morcomb', u'probe']
[u'polic', u'crackdown', u'hoon']
[u'polic', u'wont', u'rule', u'disgruntl', u'worker']
[u'poor', u'move', u'malle', u'boost', u'poverti', u'figur']
[u'power', u'sign', u'young', u'gun']
[u'profit', u'jump']
[u'psychiatrist', u'consid', u'detent', u'centr', u'work', u'ban']
[u'public', u'resign', u'telstra', u'sale', u'anderson']
[u'public', u'urg', u'watch', u'budget', u'health', u'cut']
[u'deputi', u'premier', u'back', u'gold', u'coast']
[u'rare', u'parasit', u'embryo', u'chines', u'babi']
[u'report', u'miss']
[u'record', u'year', u'roma', u'saleyard']
[u'report', u'seek', u'crisi', u'team', u'deal', u'mental']
[u'research', u'open', u'breast', u'cancer', u'research', u'bank']
[u'resourc', u'bank', u'drag']
[u'road', u'access', u'issu', u'spark', u'council', u'debat']
[u'robinson', u'miss', u'lion', u'match']
[u'santo', u'agre', u'fenc', u'indigen', u'burial', u'grind']
[u'sarina', u'meet', u'put', u'focus', u'foreign', u'train']
[u'savoldelli', u'cours', u'second', u'giro', u'titl']
[u'search', u'continu', u'miss', u'coast', u'woman']
[u'case', u'teacher', u'action', u'govt']
[u'shadow', u'support', u'legisl', u'protect', u'public']
[u'sheriff', u'offic', u'urg', u'chang', u'approach']
[u'skill', u'worker', u'vacanc', u'climb']
[u'slow', u'build', u'sector', u'affect', u'job']
[u'slow', u'growth', u'tip', u'eas', u'rat', u'pressur']
[u'small', u'busi', u'infrastructur', u'fund']
[u'solon', u'psychiatr', u'clinic', u'deport']
[u'south', u'african', u'rugbi', u'fresh', u'crisi']
[u'southern', u'look', u'record']
[u'special', u'olympian', u'head', u'singapor', u'nation', u'game']
[u'stamp', u'duti', u'insur', u'increas']
[u'stanhop', u'wont', u'debat', u'bushfir', u'inquest', u'issu']
[u'statement', u'claim', u'zarqawi', u'injur']
[u'state', u'origin', u'audio', u'highlight']
[u'steal', u'generat', u'speaker', u'die', u'ahead', u'address']
[u'steal', u'generat', u'wait', u'apolog']
[u'survey', u'find', u'armi', u'follow', u'defenc', u'prioriti']
[u'suspect', u'canker', u'properti']
[u'sylvia', u'award', u'rise', u'star', u'nomin']
[u'defenc', u'dept', u'abl']
[u'thoma', u'back', u'captain', u'riewoldt']
[u'thousand', u'strand', u'moscow', u'power']
[u'tortur', u'australian', u'face', u'kuwait', u'court']
[u'tribut', u'pour', u'legend', u'kennedi']
[u'tsos', u'futur', u'secur', u'fund', u'boost']
[u'tweed', u'council', u'sack', u'develop', u'link']
[u'arrest', u'zarqawi', u'aid']
[u'lawmak', u'step', u'dope']
[u'lead', u'global', u'attack', u'human', u'right', u'amnesti']
[u'stem', u'cell', u'pass', u'stage']
[u'prison', u'record', u'surg', u'ban', u'item']
[u'villian', u'termit', u'cast', u'role']
[u'walpol', u'polic', u'servic', u'boost']
[u'wembley', u'bridg', u'honour', u'go', u'polic', u'hors', u'billi']
[u'whitsunday', u'council', u'job']
[u'william', u'stand', u'trial', u'moran', u'murder']
[u'woman', u'tell', u'court', u'fake', u'teach', u'qualif']
[u'women', u'brunt', u'human', u'right', u'abus', u'amnesti']
[u'woodchop', u'champ', u'offer', u'team', u'help']
[u'woolworth', u'metcash', u'announc', u'foodland', u'deal']
[u'work', u'hospit', u'begin', u'year']
[u'lose', u'farley', u'hope', u'regain', u'maher']
[u'abba', u'seek', u'commit', u'statehood']
[u'account', u'jail', u'fraud']
[u'govt', u'announc', u'health', u'scholarship']
[u'alonso', u'readi', u'germani']
[u'question', u'govt', u'nurs', u'doctor', u'work']
[u'ambul', u'delay']
[u'amnesti', u'call', u'pressur']
[u'amnesti', u'intern', u'strong', u'criticis']
[u'anderson', u'welcom', u'aviat', u'secur', u'inquiri']
[u'aquat', u'centr', u'undergo', u'review']
[u'aussi', u'face', u'tough', u'second', u'round', u'french', u'open']
[u'australia', u'await', u'corbi', u'verdict']
[u'aust', u'tighten', u'embassi', u'secur', u'indonesia']
[u'aviat', u'secur', u'probe', u'reopen']
[u'dead', u'liverpool', u'champion', u'crown']
[u'bemax', u'bring', u'earthmov', u'contractor']
[u'bird', u'strike', u'scare', u'disrupt', u'townsvill', u'flight']
[u'board', u'beat', u'address', u'rabbit', u'woe']
[u'booki', u'hard', u'liverpool', u'great', u'escap']
[u'borroloola', u'council', u'declar', u'unregist']
[u'die', u'warren', u'hous', u'blaze']
[u'walk', u'freak', u'accid']
[u'brogden', u'unconvinc', u'budget', u'promis', u'stack']
[u'break', u'hill', u'cash', u'strap', u'lifelin']
[u'budget', u'allow', u'batlow', u'plan']
[u'bushfir', u'coron', u'lawyer', u'sum', u'argument']
[u'canberra', u'base', u'diplomat', u'shirk', u'fin']
[u'capit', u'expenditur', u'fall']
[u'yard', u'urg', u'sniffabl', u'fuel']
[u'cathol', u'educ', u'examin', u'fake', u'teacher']
[u'cattl', u'compani', u'optimist', u'despit', u'drought']
[u'celebr', u'angler', u'author', u'die']
[u'celtic', u'boss', u'oneil', u'resign', u'strachan', u'take']
[u'centrelink', u'tighten', u'leav', u'condit', u'worker']
[u'chamber', u'highlight', u'industri', u'foreign']
[u'chamber', u'unhappi', u'budget', u'busi', u'focus']
[u'china', u'develop', u'bird', u'vaccin']
[u'china', u'plan', u'carri', u'olymp', u'flame', u'everest']
[u'promis', u'tough', u'petrol', u'sniff']
[u'colombian', u'watchdog', u'question', u'legal']
[u'communiti', u'fire', u'marina', u'plan']
[u'confus', u'zarqawi', u'deputi', u'claim']
[u'conservatorium', u'overjoy', u'donat']
[u'council', u'sell', u'rais', u'concern']
[u'council', u'land', u'sale', u'sustain']
[u'council', u'wait', u'servic', u'review']
[u'court', u'find', u'thai', u'anti', u'corrupt', u'commiss', u'corrupt']
[u'court', u'reserv', u'decis', u'commission']
[u'cowboy', u'count', u'cost', u'origin', u'batter']
[u'cowboy', u'injuri', u'clear']
[u'cowboy', u'dark', u'rauhihi', u'england']
[u'critic', u'prompt', u'student', u'accommod', u'complex']
[u'dead', u'clash', u'preced', u'aceh', u'peac', u'talk']
[u'detain', u'mother', u'daugher', u'free', u'leav', u'countri', u'dept']
[u'dfat', u'seek', u'string', u'releas', u'hostag']
[u'disabl', u'group', u'investig', u'detail', u'abus']
[u'doubt', u'cast', u'bridgetown', u'bypass', u'plan']
[u'drug', u'hit', u'shepparton', u'street']
[u'dubbo', u'pair', u'face', u'court', u'drug', u'raid']
[u'electrician', u'charg', u'omagh', u'bomb', u'murder']
[u'englishman', u'accus', u'broom', u'assault', u'face']
[u'offic', u'drop', u'appeal', u'girl', u'assault']
[u'expert', u'back', u'communiti', u'base', u'sentenc', u'despit']
[u'memo', u'detail', u'guantanamo', u'koran', u'abus', u'claim']
[u'fern', u'develop', u'govt']
[u'sunshin', u'coast']
[u'stage', u'road', u'open']
[u'flag', u'rais', u'start', u'heal', u'ballarat']
[u'plan', u'marandoo']
[u'foley', u'debut', u'richmond']
[u'detect', u'acquit', u'steal', u'drug']
[u'policeman', u'warn', u'gatto', u'hire', u'hitman']
[u'union', u'boss', u'finish', u'prison', u'sentenc']
[u'aussi', u'open', u'qualifi']
[u'friend', u'deni', u'kennedi', u'die', u'aid']
[u'gerrard', u'pledg', u'futur', u'liverpool']
[u'gile', u'bell', u'recal', u'england']
[u'gold', u'coast', u'beat', u'loom', u'decis']
[u'golden', u'time', u'ahead', u'ballarat']
[u'govern', u'gag', u'immigr', u'debat']
[u'govt', u'block', u'motion', u'refer', u'speaker', u'ethic']
[u'govt', u'fail', u'dairi', u'farmer', u'bomaderri', u'plant']
[u'govt', u'abandon', u'drought', u'affect', u'farmer']
[u'govt', u'rule', u'move', u'great', u'barrier', u'reef', u'staff']
[u'govt', u'reshap', u'australian', u'workplac']
[u'govt', u'help', u'cattlemen', u'save', u'livelihood']
[u'govt', u'environment', u'friend']
[u'graincorp', u'blame', u'profit', u'fall', u'drought']
[u'green', u'lobbi', u'warn', u'govt', u'consid', u'popul']
[u'heal', u'australian']
[u'high', u'countri', u'cattlemen', u'ride', u'save', u'livelihood']
[u'howard', u'defend', u'decis', u'detaine', u'babi']
[u'howard', u'outlin', u'histor', u'chang']
[u'howard', u'unveil', u'workplac', u'reform', u'agenda']
[u'illawarra', u'record', u'fall', u'properti', u'sale']
[u'indian', u'bear', u'film', u'maker', u'ismail', u'merchant', u'die']
[u'industri', u'park', u'move', u'closer', u'realiti']
[u'inquiri', u'probe', u'manag', u'accus', u'surgeon']
[u'investig', u'launch', u'ferri', u'crash']
[u'inx', u'frontman', u'search', u'begin']
[u'iraq', u'launch', u'massiv', u'baghdad', u'raid']
[u'jone', u'compet', u'europ', u'despit', u'drug', u'concern']
[u'judg', u'brief', u'inappropri', u'say', u'court', u'registrar']
[u'juri', u'unabl', u'reach', u'verdict', u'slaveri', u'case']
[u'kangaroo', u'play', u'kiwi', u'sydney', u'test']
[u'kimberley', u'mark', u'indigen', u'heal']
[u'kimberley', u'water', u'plan', u'group', u'return', u'greec']
[u'kimmorley', u'rue', u'pass', u'cost', u'blue', u'dear']
[u'labor', u'question', u'palmer', u'comri', u'busi', u'link']
[u'labor', u'union', u'condemn', u'chang']
[u'landcar', u'search', u'environment', u'hero']
[u'landown', u'need', u'burn', u'permit']
[u'gasp', u'origin', u'maroon']
[u'lightfoot', u'dismiss', u'share', u'disclosur', u'claim']
[u'liverpool', u'erupt', u'astonish']
[u'charg', u'train', u'collid']
[u'charg', u'fatal', u'stab']
[u'die', u'maryval', u'accid']
[u'surviv', u'horror', u'crash']
[u'maradona', u'hail', u'comeback', u'king', u'liverpool']
[u'market', u'edg', u'higher', u'amid', u'takeov']
[u'meet', u'discuss', u'belyando', u'shire', u'roadwork']
[u'merv', u'interview', u'border', u'selector', u'vacanc']
[u'mexico', u'pressur', u'extradit', u'terrorist']
[u'west', u'shire', u'hope', u'local', u'budget', u'benefit']
[u'milk', u'supplier', u'price', u'boost']
[u'miner', u'consid', u'earli', u'bronzew', u'reopen']
[u'mine', u'urg', u'welcom', u'union', u'safeti', u'sake']
[u'mine', u'bodi', u'seek', u'apprenticeship', u'reform']
[u'minist', u'defend', u'citrus', u'canker', u'respons']
[u'minist', u'leav', u'open', u'possibl']
[u'minist', u'suggest', u'surveil', u'antarct']
[u'monaco', u'turn', u'point', u'william']
[u'moodi', u'take', u'world', u'lanka']
[u'central', u'support', u'wast', u'dump', u'fight']
[u'life', u'central', u'gold', u'mine']
[u'car', u'revers', u'visibl', u'nrma']
[u'bolster', u'greater', u'port', u'macquari', u'tourism']
[u'call', u'poki']
[u'talk', u'howard', u'detent', u'polici', u'bill']
[u'murder', u'probe', u'launch', u'footbal', u'club', u'park']
[u'neitz', u'clear', u'play']
[u'advisori', u'group', u'forest', u'industri']
[u'defenc', u'hous', u'develop', u'get', u'ahead']
[u'rule', u'exclud', u'union', u'andrew']
[u'player', u'boss', u'address', u'burn', u'concern']
[u'rescu', u'chopper', u'week']
[u'surviv', u'roll', u'near', u'laverton']
[u'marin', u'park', u'decis', u'creat', u'biodivers']
[u'penalti', u'councillor', u'breach', u'code', u'conduct']
[u'northern', u'vineyard', u'name', u'state', u'best']
[u'nrma', u'rat', u'princ', u'highway', u'worst']
[u'call', u'prison', u'exchang', u'treati']
[u'track', u'offend']
[u'aborigin', u'leader', u'discuss', u'atsic', u'demis']
[u'injur', u'sydney', u'ferri', u'collis']
[u'origin', u'hero', u'wait', u'injuri', u'news']
[u'ouyen', u'har', u'race', u'tradit', u'end']
[u'palmer', u'inquiri', u'cost', u'near', u'half', u'million']
[u'papuan', u'independ', u'activist', u'jail', u'treason']
[u'passiv', u'smoke', u'affect', u'success', u'rat', u'studi']
[u'penong', u'primari', u'abandon', u'coorabi', u'site', u'plan']
[u'pension', u'group', u'push', u'medicar', u'dental']
[u'plan', u'aim', u'protect', u'groundwat', u'resourc']
[u'plane', u'passeng', u'miss', u'congo']
[u'bring', u'sweep', u'chang']
[u'see', u'censur', u'motion', u'back', u'vanston']
[u'aust', u'begin', u'polic', u'talk']
[u'polic', u'call', u'investig', u'budget', u'leak']
[u'polic', u'fear', u'town', u'steal', u'tractor', u'chase']
[u'polic', u'mobil', u'latest', u'road', u'safeti', u'crackdown']
[u'polic', u'investig', u'fatal', u'longford', u'road', u'crash']
[u'policeman', u'guilti', u'rape']
[u'policeman', u'get', u'life', u'thailand', u'kill']
[u'polic', u'search', u'steal', u'sculptur']
[u'polic', u'support', u'continu', u'secur', u'scheme']
[u'press', u'clash', u'ahead', u'corbi', u'verdict']
[u'previt', u'appeal', u'murder', u'convict']
[u'privat', u'fund', u'help', u'driver', u'educ', u'centr']
[u'health', u'turf', u'bundaberg', u'hospit', u'inquiri']
[u'petrol', u'station', u'face', u'collus', u'charg']
[u'polic', u'limit', u'jurisdict', u'solon', u'case']
[u'question', u'rais', u'ralli', u'independ']
[u'raptor', u'take', u'bite', u'catch', u'snake']
[u'red', u'sign', u'moor']
[u'remot', u'teacher', u'scheme', u'prove', u'success']
[u'report', u'find', u'emerg', u'treatment', u'mental']
[u'report', u'highlight', u'ballarat', u'tafe', u'financi', u'woe']
[u'rockhampton', u'sieg']
[u'sack', u'councillor', u'tweed', u'council', u'administr']
[u'salvo', u'look', u'doorknock', u'volunt']
[u'miguel', u'take', u'control', u'nation', u'food']
[u'pension', u'score', u'budget', u'sweeten']
[u'teacher', u'consid', u'strike']
[u'seafood', u'industri', u'call', u'fisheri', u'dept', u'shake']
[u'serial', u'offend', u'soon', u'wear']
[u'shot', u'hear', u'rockhampton', u'sieg']
[u'small', u'medium', u'size', u'busi', u'pleas']
[u'south', u'african', u'rugbi', u'slip', u'deeper', u'mire']
[u'statist', u'juvenil', u'offend', u'risk']
[u'case', u'rise']
[u'sted', u'connect', u'cost', u'rise']
[u'steward', u'pursu', u'waterhous', u'hors', u'cocain', u'probe']
[u'steal', u'generat', u'rememb', u'canberra']
[u'studi', u'find', u'rural', u'innov', u'success']
[u'studi', u'find', u'tast', u'turn', u'koala', u'taller', u'tree']
[u'sydney', u'film', u'maker', u'win', u'project']
[u'govt', u'call', u'emerg', u'depart', u'tender']
[u'drain', u'world', u'sperm', u'bank']
[u'teacher', u'educ', u'inquiri', u'look', u'resourc']
[u'teen', u'plead', u'guilti', u'meat', u'cleaver', u'attack']
[u'thorp', u'certainti', u'play', u'say', u'coach']
[u'threat', u'prompt', u'close', u'indonesian', u'mission']
[u'tortur', u'advoc', u'continu', u'work', u'immigr']
[u'crew', u'mcgee', u'polic', u'inquiri']
[u'uefa', u'hold', u'firm', u'liverpool', u'shut']
[u'uncontact', u'tribe', u'spot', u'brazil']
[u'union', u'upset', u'workplac', u'chang']
[u'forc', u'kill', u'human', u'shield', u'child', u'iraq']
[u'halt', u'bodi', u'recoveri', u'north', u'korea']
[u'rubbish', u'amnesti', u'right', u'claim']
[u'team', u'trump', u'stem', u'cell', u'breakthrough']
[u'vanston', u'detaine', u'sorri', u'cake']
[u'veniamin', u'fearless', u'killer', u'gatto', u'tell', u'court']
[u'govt', u'call', u'hasten', u'drought']
[u'juror', u'complain', u'intimid']
[u'victoria', u'child', u'protect', u'inadequ']
[u'voyag', u'travel', u'solar']
[u'waratah', u'unchang']
[u'warn', u'follow', u'fatal', u'buffalo', u'attack']
[u'watchdog', u'consid', u'action', u'zurich', u'deal']
[u'treasur', u'hand', u'stun', u'budget']
[u'wheat', u'export', u'regul', u'probe', u'iraq']
[u'windsor', u'plan', u'second', u'region', u'gather']
[u'woodward', u'say', u'lion', u'readi']
[u'work', u'life', u'balanc', u'better', u'canberra', u'employe']
[u'youth', u'plan', u'wheatbelt', u'outdoor', u'cinema']
[u'heavi', u'rain', u'india']
[u'communiti', u'share', u'respons', u'plan']
[u'aaco', u'forecast', u'continu', u'strong', u'growth']
[u'radio', u'cross', u'live', u'schapell', u'corbi']
[u'abus', u'victim', u'turn', u'crimin', u'court', u'tell']
[u'adelaid', u'doctor', u'strike']
[u'american', u'send', u'pack', u'french', u'open']
[u'anderson', u'urg', u'sign', u'auslink', u'agreement']
[u'appeal', u'launch', u'pork', u'import', u'decis']
[u'appeal', u'shock', u'murder', u'backpack', u'famili']
[u'appeal', u'plan', u'corbi', u'judgement']
[u'arson', u'furnitur', u'store', u'blaze']
[u'asbesto', u'campaign', u'give', u'portabl', u'oxygen']
[u'ash', u'build', u'spark', u'tait', u'excit']
[u'auscoal', u'point', u'finger', u'fraud']
[u'austar', u'good', u'shape']
[u'australian', u'express', u'outrag', u'corbi', u'verdict']
[u'australian', u'support', u'corbi', u'curios', u'bali']
[u'bagot', u'centrelink', u'client', u'shop', u'option']
[u'barcaldin', u'council', u'consid', u'merger', u'plan']
[u'bendigo', u'council', u'wait', u'rate']
[u'bennett', u'brand', u'coast', u'distract']
[u'ahead', u'gold', u'coast', u'team', u'coach']
[u'black', u'order', u'return', u'busi', u'document']
[u'blast', u'rip', u'pakistan', u'shrine']
[u'brack', u'mull', u'legal', u'action', u'chang']
[u'brack', u'open', u'ararat', u'hospit']
[u'breast', u'plate', u'return', u'indigen', u'leader', u'famili']
[u'brown', u'season', u'end', u'demon', u'thump', u'tiger']
[u'budget', u'fund', u'flow', u'kalgoorli']
[u'budget', u'hold', u'kimberley', u'surpris']
[u'budget', u'includ', u'southern', u'infrastructur']
[u'bush', u'abba', u'hold', u'histor', u'meet']
[u'busi', u'usual', u'tweed', u'council']
[u'busi', u'chamber', u'back', u'govt', u'plan']
[u'busi', u'chamber', u'back', u'unfair', u'dismiss', u'law', u'plan']
[u'migrant', u'plan']
[u'celtic', u'look', u'salvag', u'season']
[u'chappel', u'go', u'vegan']
[u'chief', u'defend', u'manag', u'live', u'export']
[u'game', u'simul', u'internet', u'attack']
[u'citi', u'plan', u'consid', u'rockhampton', u'need']
[u'climat', u'chang', u'like', u'increas', u'famin']
[u'support', u'atsic', u'style', u'model', u'burk']
[u'command', u'stand', u'gulgong', u'polic']
[u'commission', u'clear', u'palm', u'briberi', u'probe']
[u'committe', u'investig', u'heat', u'hydro', u'pool']
[u'consum', u'affair', u'wont', u'real', u'estat', u'complaint']
[u'corbi', u'australian', u'support', u'distraught']
[u'corbi', u'sentenc', u'year', u'marijuana', u'smuggl']
[u'corbi', u'sentenc', u'year', u'jail']
[u'corbi', u'support', u'gather', u'gold', u'coast']
[u'corbi', u'team', u'look', u'avenu', u'appeal']
[u'corbi', u'timelin']
[u'coron', u'refus', u'plane', u'crash', u'inquest']
[u'council', u'time', u'consid', u'bridg', u'option']
[u'council', u'prepar', u'urban', u'sprawl']
[u'council', u'afford', u'asbesto', u'remov', u'cost']
[u'crash', u'plane', u'congo']
[u'potato', u'contract', u'shock', u'grower']
[u'delay', u'feder', u'sugar', u'fund']
[u'demon', u'goal', u'flow', u'dockland']
[u'deniliquin', u'polic', u'chief', u'post']
[u'detain', u'claim', u'immigr', u'trick', u'famili']
[u'disabl', u'rider', u'award', u'compens']
[u'doubt', u'cast', u'fish', u'licenc', u'fee']
[u'downer', u'offer', u'corbi', u'free', u'appeal']
[u'doyl', u'urg', u'drought', u'farmer', u'pressur', u'govt']
[u'drought', u'assist', u'slower', u'expect']
[u'drought', u'forc', u'continu', u'stock', u'sell']
[u'drought', u'reduc', u'grain', u'harvest', u'estim']
[u'drug', u'lab', u'discoveri', u'lead', u'arrest']
[u'drink', u'claim', u'charact', u'moor', u'say', u'farina']
[u'dunley', u'win', u'spit', u'appeal']
[u'easier', u'access', u'patch', u'help', u'smoker', u'quit']
[u'ecstasi', u'haul', u'mastermind', u'court']
[u'educ', u'minist', u'talk', u'north', u'west', u'budget']
[u'guilti', u'barker', u'brawl']
[u'elder', u'join', u'legal', u'battl', u'peta']
[u'fake', u'teacher', u'perform', u'communiti', u'servic']
[u'fall', u'river', u'level', u'creat', u'concern']
[u'farmer', u'blast', u'budget']
[u'ladi', u'sing', u'famili', u'music', u'busi']
[u'fear', u'famin', u'north', u'korea']
[u'ferguson', u'refut', u'improp', u'conduct', u'charg']
[u'firefight', u'tackl', u'second', u'warren', u'hous', u'blaze']
[u'shortag', u'declar']
[u'tablet', u'land', u'pharmacist', u'court']
[u'focus', u'general', u'prison', u'exchang', u'academ']
[u'footi', u'talent', u'converg']
[u'forb', u'lobbi', u'rail', u'line']
[u'forest', u'dept', u'reject', u'koala', u'habitat', u'claim']
[u'foster', u'cement', u'control', u'southcorp']
[u'foster', u'compulsorili', u'acquir', u'remain']
[u'french', u'open', u'favourit', u'fight', u'injuri']
[u'fund', u'oyster', u'industri', u'water', u'monitor']
[u'fund', u'stawel', u'hospit', u'revamp']
[u'fund', u'allow', u'portland', u'port', u'work', u'finish']
[u'geraldton', u'share', u'budget', u'fund']
[u'gold', u'coast', u'win', u'place']
[u'goulburn', u'abattoir', u'look', u'govt', u'water', u'solut']
[u'govt', u'say', u'reef', u'marin', u'park', u'zone', u'remain']
[u'govt', u'spend', u'share', u'respons']
[u'govt', u'urg', u'monkey', u'visitor', u'centr']
[u'grind', u'base', u'net', u'grant']
[u'health', u'author', u'await', u'budget']
[u'health', u'servic', u'apologis', u'hospit', u'worker', u'child']
[u'hede', u'confid', u'wrongdo', u'bank', u'hotel']
[u'herbert', u'injuri', u'woe', u'continu']
[u'high', u'court', u'reject', u'stay', u'taxman', u'charg']
[u'hoogi', u'miss', u'world', u'championship']
[u'howard', u'bypass', u'protest']
[u'howard', u'urg', u'australian', u'accept', u'corbi', u'verdict']
[u'human', u'societi', u'lose', u'japanes', u'whaler']
[u'immigr', u'deni', u'knowledg', u'bakhtiyari']
[u'indigen', u'polici', u'offici', u'suspend', u'leak']
[u'injur', u'thorn', u'miss', u'bronco', u'match']
[u'chang', u'water', u'basic', u'right']
[u'shake', u'caus', u'concern', u'central', u'victoria']
[u'shake', u'prompt', u'minimum', u'wage', u'fear']
[u'jam', u'injuri', u'woe', u'short', u'career', u'william']
[u'japanes', u'wwii', u'soldier', u'philippin']
[u'japan', u'surpris', u'wwii', u'soldier']
[u'jealous', u'say', u'owen']
[u'joli', u'deni', u'pitt', u'romanc']
[u'judg', u'begin', u'hand', u'corbi', u'verdict']
[u'judg', u'deliv', u'corbi', u'verdict']
[u'juri', u'bulli', u'claim', u'prompt', u'renew', u'royal']
[u'keat', u'say', u'wolf', u'wolf', u'cloth']
[u'koran', u'mishandl', u'guantanamo', u'command']
[u'labor', u'promis', u'fight']
[u'lappin', u'put', u'celebr', u'hold']
[u'lara', u'flay', u'majest', u'lift', u'west', u'indi']
[u'lewi', u'claim', u'possibl', u'paedophil', u'link', u'murder']
[u'liverpool', u'hero', u'parad', u'pressur', u'mount']
[u'local', u'govt', u'criticis', u'feder', u'govt', u'calder', u'decis']
[u'accus', u'break', u'hill', u'assault']
[u'avoid', u'jail', u'kidnap', u'girlfriend']
[u'charg', u'rockhampton', u'shoot', u'murder']
[u'market', u'end', u'week', u'high']
[u'mayor', u'call', u'water', u'stay', u'murray']
[u'mcdonald', u'deal', u'potato', u'grower']
[u'mine', u'compani', u'talk', u'kakadu', u'uranium']
[u'mix', u'respons', u'budget']
[u'secur', u'camera', u'brisban', u'anti']
[u'multiplex', u'reshuffl', u'board', u'amid', u'stadium', u'troubl']
[u'nation', u'region', u'road', u'fund', u'boost']
[u'netbal', u'doubl', u'header', u'highlight', u'interst', u'rivalri']
[u'chief', u'head', u'moruya', u'busi', u'chamber']
[u'nickel', u'open']
[u'say', u'chang', u'lead', u'job']
[u'news', u'mental', u'health', u'fund']
[u'verdict', u'slave', u'trial']
[u'teen', u'give', u'suspend', u'sentenc', u'bash']
[u'union', u'begin', u'action', u'chang']
[u'wait', u'hodg', u'decis']
[u'offic', u'admit', u'mcgee', u'wit', u'question', u'laps']
[u'offic', u'death', u'prompt', u'holster', u'review']
[u'offici', u'want', u'launceston', u'qualiti', u'improv']
[u'origin', u'hero', u'star', u'cowboy', u'blow', u'bulldog', u'away']
[u'overdos', u'victim', u'previous', u'inquest', u'tell']
[u'print', u'lover']
[u'pie', u'wont', u'prostitut', u'power', u'malthous']
[u'plan', u'rout', u'chang', u'worri', u'school', u'driver']
[u'dismiss', u'campaign', u'chang']
[u'polic', u'worri', u'young', u'assault', u'trend']
[u'pork', u'produc', u'celebr', u'oversea', u'restrict']
[u'public', u'urg', u'work', u'council']
[u'public', u'warn', u'centrelink', u'worker', u'imperson']
[u'push', u'retain', u'hospit', u'birth', u'servic']
[u'wait', u'list', u'figur', u'incomplet', u'springborg']
[u'rat', u'rise', u'cover', u'jetti', u'revamp', u'cost']
[u'reaction', u'corbi', u'indonesian', u'relat']
[u'record', u'hold', u'plan', u'leav']
[u'region', u'forum', u'consid', u'kangaroo', u'need']
[u'renew', u'duck', u'shoot']
[u'repair', u'forc', u'line', u'cancel']
[u'report', u'back', u'geraldton', u'greenough', u'merger']
[u'report', u'find', u'wait', u'time', u'want']
[u'report', u'highlight', u'high', u'indigen', u'death', u'rat']
[u'resid', u'group', u'back', u'graincorp', u'conveyor', u'belt']
[u'road', u'crash', u'rescu', u'team', u'compet', u'state', u'honour']
[u'review', u'highway', u'intersect', u'plan']
[u'rural', u'giant', u'highlight', u'drought', u'impact']
[u'safin', u'ferrero', u'clash', u'heat', u'round']
[u'salvo', u'look', u'help', u'hand']
[u'schapell', u'corbi', u'expect', u'jail', u'life']
[u'school', u'crash', u'driver', u'prior', u'drink', u'drive', u'record']
[u'search', u'alleg', u'abductor', u'widen']
[u'secker', u'reject', u'beazley', u'claim']
[u'secur', u'tight', u'corbi', u'verdict', u'near']
[u'seri', u'turn', u'nasti', u'final']
[u'shire', u'join', u'protest', u'japanes', u'whale']
[u'clive', u'talk', u'tough', u'arriv']
[u'sorenstam', u'storm', u'slow', u'start']
[u'south', u'west', u'share', u'budget', u'fund']
[u'spanish', u'club', u'math', u'test']
[u'state', u'reject', u'govt', u'chang']
[u'state', u'threaten', u'challeng']
[u'stingray', u'look', u'year']
[u'studi', u'offer', u'support', u'mildura', u'transport', u'plan']
[u'subiaco', u'oval', u'anzac', u'field']
[u'suspend', u'sentenc', u'kill', u'wife']
[u'sydney', u'newcastl', u'fast', u'rail', u'link', u'need', u'keat']
[u'tare', u'firm', u'win', u'water', u'polic', u'contract']
[u'technolog', u'boost', u'remot', u'communiti']
[u'teenag', u'battl', u'centr', u'stage', u'french', u'open']
[u'test', u'determin', u'buffalo', u'kill', u'arnhem', u'land']
[u'thousand', u'tip', u'turn', u'gold']
[u'thurston', u'keep', u'cowboy', u'touch']
[u'train', u'squad', u'select', u'prepar', u'match']
[u'trescothick', u'reach', u'centuri', u'bangladesh']
[u'truce', u'monitor', u'warn', u'tamil', u'tiger', u'asset']
[u'union', u'angri', u'govt', u'shake']
[u'union', u'rule', u'strike', u'chang']
[u'union', u'begin', u'protest', u'howard', u'reform']
[u'union', u'contempl', u'respons', u'plan']
[u'union', u'plan', u'protest', u'chang']
[u'add', u'uzbek', u'islam', u'group', u'terrorist', u'list']
[u'chopper', u'shoot', u'iraq']
[u'senat', u'delay', u'bolton', u'vote']
[u'rooyen', u'keep', u'rugbi', u'supremo', u'titl']
[u'govt', u'say', u'graze', u'stay']
[u'viduka', u'comeback', u'socceroo']
[u'violent', u'youth', u'order', u'shed', u'urban', u'crime', u'uniform']
[u'virgin', u'blue', u'consid', u'cancel', u'adelaid', u'alic']
[u'budget', u'relief', u'measur', u'disappoint', u'busi']
[u'wallabi', u'export', u'industri', u'plan', u'island']
[u'word', u'erupt', u'cobb', u'break', u'hill', u'comment']
[u'widow', u'lose', u'fight', u'husband', u'sperm']
[u'william', u'decid', u'return', u'bushrang']
[u'wollongong', u'council', u'add', u'voic', u'anti', u'whale']
[u'worker', u'job', u'despit', u'mechan', u'woe']
[u'world', u'bank', u'grant', u'million', u'vietnam', u'aid', u'plan']
[u'world', u'loom', u'larg', u'england', u'friend']
[u'flee', u'congo', u'violenc']
[u'million', u'chines', u'poverti', u'line', u'minist']
[u'ghraib', u'protest', u'interrupt', u'rice', u'speech']
[u'move', u'attract', u'indigen', u'health', u'worker']
[u'andrew', u'play', u'beatti', u'warn']
[u'anim', u'welfar', u'group', u'fight', u'wallabi', u'export', u'plan']
[u'arsenic', u'caus', u'health', u'concern']
[u'australia', u'check', u'viagra', u'blind', u'claim']
[u'australian', u'chariti', u'report', u'backlash']
[u'author', u'investig', u'report', u'blind']
[u'bangladesh', u'face', u'england', u'thrash']
[u'barrichello', u'play', u'ferrari', u'feud']
[u'basso', u'win', u'second', u'straight', u'stage']
[u'birney', u'seek', u'stay', u'feder', u'takeov']
[u'blair', u'say', u'help', u'africa']
[u'blast', u'rock', u'indonesian', u'market']
[u'bodi', u'show', u'video', u'like', u'japanes', u'hostag']
[u'defenc', u'prosecut', u'corbi', u'case']
[u'brown', u'urg', u'port', u'closur', u'prevent', u'whale']
[u'builder', u'group', u'welcom', u'plan', u'chang']
[u'bureau', u'warn', u'nino', u'risk']
[u'bomb', u'kill', u'seven', u'iraq']
[u'chappel', u'see', u'sehwag', u'futur', u'captain']
[u'chechen', u'rebel', u'claim', u'moscow', u'blackout']
[u'chechen', u'rebel', u'caus', u'moscow', u'power']
[u'chemist', u'warn', u'drug', u'sale', u'charg', u'lay']
[u'chile', u'hit', u'hike']
[u'china', u'bird', u'outbreak', u'wors', u'think']
[u'clps', u'indigen', u'polici', u'unbeliev', u'martin']
[u'commission', u'lament', u'fund', u'shortfal']
[u'confer', u'tell', u'refuge', u'challeng']
[u'corbi', u'lawyer', u'notifi', u'offer', u'say']
[u'corbi', u'lawyer', u'like', u'accept', u'help']
[u'corser', u'set', u'sight', u'silverston', u'doubl']
[u'crusad', u'gallant', u'waratah']
[u'death', u'prompt', u'warn', u'altern', u'cancer', u'drug']
[u'death', u'toll', u'indonesian', u'twin', u'bomb', u'blast', u'rise']
[u'depp', u'thompson', u'funer', u'wish', u'realiti']
[u'docker', u'bounc', u'stun', u'cat']
[u'doctor', u'recruit', u'indigen', u'worker']
[u'doctor', u'defi', u'disput']
[u'donor', u'pledg', u'darfur', u'forc']
[u'england', u'complet', u'bangladesh', u'humili']
[u'environ', u'centr', u'promis', u'kakadu', u'mine', u'fight']
[u'warn', u'bomb', u'franco', u'burial', u'place']
[u'european', u'gun', u'liverpool', u'champion']
[u'fan', u'help', u'seek', u'reflect']
[u'fatwa', u'demand', u'releas', u'italian', u'worker']
[u'gate', u'rubber', u'confirm', u'closur']
[u'gehrig', u'run', u'riot', u'match']
[u'govt', u'accus', u'ignor', u'hospit', u'death', u'report']
[u'govt', u'rule', u'waverley', u'mill']
[u'govt', u'say', u'surgeri', u'wait', u'time', u'satisfactori']
[u'green', u'acr', u'star', u'eddi', u'albert', u'die']
[u'health', u'offici', u'check', u'misdiagnosi', u'patel']
[u'heenan', u'sign', u'brumbi']
[u'heidfeld', u'pole', u'european', u'grand', u'prix']
[u'hospit', u'statist', u'bring', u'long', u'surgeri', u'wait']
[u'iaaf', u'challeng', u'exoner', u'greek', u'sprinter']
[u'impress', u'eel', u'shark']
[u'intern', u'publish', u'seek', u'australian']
[u'investig', u'continu', u'cancer', u'patient']
[u'iraq', u'bomb', u'blast', u'kill']
[u'isra', u'soldier', u'command', u'watch', u'soccer']
[u'japanes', u'hostag', u'iraq', u'believ', u'dead']
[u'jone', u'blast', u'europ', u'boycott']
[u'kookaburra', u'earn', u'draw', u'korea']
[u'kyneton', u'resid', u'oppos', u'bowl', u'club', u'extens']
[u'landcar', u'call', u'award', u'nomin']
[u'prevent', u'museum', u'return', u'steal']
[u'lead', u'publish', u'descend', u'sydney', u'unearth']
[u'leonard', u'take', u'command', u'memphi']
[u'liabil', u'issu', u'complic', u'jam', u'hardi', u'talk']
[u'lion', u'slump', u'home', u'loss']
[u'lownd', u'take', u'pole', u'eastern', u'creek']
[u'magpi', u'post', u'win']
[u'martin', u'hail', u'share', u'respons', u'deal']
[u'melbourn', u'hospit', u'open', u'child', u'lung', u'transplant']
[u'milit', u'group', u'say', u'hostag', u'kill', u'shoot']
[u'minist', u'promis', u'birth', u'centr', u'improv']
[u'muslim', u'protest', u'koran', u'abus']
[u'neighbour', u'understand', u'palerang', u'shire', u'rat', u'hike']
[u'afghan', u'asylum', u'seeker', u'refuge', u'visa']
[u'dirt', u'leav', u'detent', u'centr']
[u'princip', u'lament', u'lack', u'teacher']
[u'nuclear', u'treati', u'talk', u'result']
[u'ohern', u'drive', u'aussi', u'charg', u'england']
[u'opal', u'shoot', u'guru']
[u'potato', u'grower', u'govt', u'support']
[u'pie', u'target', u'hawthorn', u'midfield']
[u'pilbara', u'studi', u'reveal', u'ancient', u'deposit']
[u'polic', u'arrest', u'alleg', u'abduct']
[u'priest', u'lobbi', u'privaci', u'detain', u'women']
[u'prosecut', u'defenc', u'rest', u'jackson', u'trial']
[u'doubt', u'verdict', u'corbi', u'tri', u'aust']
[u'rabbitoh', u'wilt', u'bronco', u'onslaught']
[u'railcorp', u'explain', u'spend']
[u'rann', u'see', u'need', u'chang']
[u'rebel', u'self', u'govern', u'agenda', u'aceh', u'talk']
[u'red', u'forward', u'heenan', u'sign', u'brumbi']
[u'rooster', u'crow', u'defeat', u'raider']
[u'saudi', u'arabia', u'alert', u'king', u'ail']
[u'sharapova', u'lead', u'russian', u'charg', u'pari']
[u'share', u'respons', u'agreement', u'prompt', u'mix']
[u'sluggish', u'trade', u'leav', u'stock', u'littl', u'chang']
[u'small', u'busi', u'advoc', u'welcom', u'chang']
[u'sorenstam', u'share', u'corn', u'lead']
[u'stadium', u'readi', u'time', u'despit', u'multiplex', u'loss']
[u'stormi', u'debat', u'forc', u'weather', u'chang']
[u'surgeri', u'wait', u'time', u'unaccept', u'opposit']
[u'surrey', u'penalis', u'ball', u'tamper']
[u'swift', u'phoenix', u'prevail', u'doubl', u'header']
[u'tasmania', u'refus', u'support', u'shame', u'chang']
[u'terrorist', u'leader', u'zarqawi', u'good', u'health']
[u'thousand', u'greet', u'annan', u'darfur']
[u'charg', u'amphetamin', u'raid']
[u'unit', u'dump', u'carrol', u'ricardo']
[u'navi', u'commando', u'clear', u'iraq', u'beat']
[u'refus', u'extradit', u'bomb', u'suspect', u'posada']
[u'venus', u'humili', u'nadal', u'soar', u'pari']
[u'viagra', u'label', u'chang', u'consid', u'blind']
[u'investig', u'spate', u'heroin', u'death']
[u'liber', u'resist', u'chang']
[u'liber', u'resist', u'feder', u'govt', u'chang']
[u'waratah', u'talk', u'titl', u'chanc']
[u'webber', u'spin', u'practic']
[u'windi', u'drive', u'seat', u'pakistan']
[u'workload', u'explain', u'immigr', u'error', u'senat']
[u'aborigin', u'film', u'impact']
[u'accus', u'murder', u'bail', u'hang', u'juri']
[u'advisori', u'council', u'seek', u'member']
[u'stand', u'hospit', u'birth', u'centr', u'critic']
[u'support', u'releas', u'children', u'detent']
[u'anderson', u'birney', u'continu', u'discuss']
[u'andrew', u'fear', u'legal', u'challeng', u'plan']
[u'aunti', u'get', u'gold', u'cinematographi', u'effort']
[u'australian', u'dollar', u'tip', u'drop']
[u'bali', u'seek', u'financi', u'help']
[u'bayern', u'seal', u'german', u'doubl']
[u'beazley', u'urg', u'donor', u'penalis', u'tsunami']
[u'birney', u'hit', u'drink', u'drive', u'test', u'beat']
[u'bomber', u'defeat', u'spirit', u'bulldog']
[u'brack', u'say', u'chang', u'ignor', u'real', u'problem']
[u'brent', u'kite', u'michael', u'monaghan', u'kennedi', u'john', u'lang']
[u'brian', u'smith']
[u'british', u'soldier', u'kill', u'iraq', u'attack']
[u'bulldog', u'rohan', u'rack', u'game']
[u'cameron', u'smith', u'craig', u'bellami', u'nathan', u'brown']
[u'campbel', u'take', u'whale', u'fight', u'europ', u'pacif']
[u'cancer', u'doctor', u'reput', u'polic']
[u'celtic', u'captur', u'scottish']
[u'chanderpaul', u'put', u'windi', u'sight', u'victori']
[u'charter', u'smooth', u'council', u'govern', u'relat']
[u'chilean', u'major', u'depress', u'dead', u'march']
[u'china', u'drive', u'regist', u'websit']
[u'clinton', u'applaud', u'lankan', u'tsunami', u'effort']
[u'corbi', u'defenc', u'team', u'urg', u'consid']
[u'corbi', u'defenc', u'urg', u'consid', u'constitut']
[u'corbi', u'entitl', u'assist', u'downer']
[u'corbi', u'tell', u'famili', u'stay', u'away']
[u'crash', u'death', u'compens', u'inadequ']
[u'crow', u'past', u'gutsi', u'blue']
[u'darfur', u'visit', u'prompt', u'action', u'annan']
[u'dentist', u'warn', u'smoker', u'mouth', u'cancer', u'risk']
[u'doctor', u'push', u'ahead', u'work', u'ban']
[u'drummer', u'recognis', u'mysteri', u'piano']
[u'eagl', u'demolish', u'hapless', u'power']
[u'observ', u'attend', u'aceh', u'ceas', u'talk']
[u'ferguson', u'flag', u'support', u'renegad', u'detent', u'bill']
[u'foodland', u'deal', u'accc', u'warn']
[u'fourth', u'patient', u'die', u'altern', u'cancer']
[u'franc', u'icher', u'lead', u'sorenstam']
[u'french', u'tip', u'reject', u'treati']
[u'assist', u'corbi', u'plea', u'clemenc']
[u'girl', u'die', u'blue', u'mountain', u'hous']
[u'grandstand', u'speak', u'john', u'cartwright']
[u'green', u'question', u'harvest', u'method']
[u'harbhajan', u'get', u'condit', u'clearanc']
[u'hope', u'paralymp', u'place']
[u'hostag', u'wood', u'move', u'safer', u'locat']
[u'hous', u'bodi', u'confid', u'chang', u'wont', u'hurt']
[u'human', u'christian', u'drive', u'decis']
[u'indigen', u'film', u'ride', u'wave', u'cinema']
[u'indigen', u'leader', u'propos', u'repres']
[u'indonesian', u'back', u'life', u'sentenc', u'corbi']
[u'iraqi', u'forc', u'launch', u'strong', u'secur', u'offens']
[u'iraqi', u'polic', u'bodi', u'murder', u'pilgrim']
[u'justin', u'hodg']
[u'labor', u'form', u'drought', u'strategi', u'committe']
[u'labor', u'drought', u'committe']
[u'lanc', u'hohaia', u'clinton', u'toopi']
[u'leak', u'british', u'nuke', u'plant', u'report']
[u'lebanon', u'head', u'poll', u'post', u'syria', u'elect']
[u'leonard', u'extend', u'memphi', u'lead']
[u'leon', u'macdonald']
[u'littl', u'page']
[u'lownd', u'take', u'honour', u'eastern', u'creek']
[u'mauresmo', u'french', u'flop', u'pari']
[u'milit', u'intend', u'kill', u'japanes']
[u'miracul', u'man', u'cruis', u'home', u'penrith']
[u'fund', u'need', u'abus', u'worker', u'confer']
[u'nake', u'swimmer', u'spark', u'search']
[u'niger', u'appeal', u'food']
[u'nuttal', u'defend', u'birth', u'centr']
[u'ohern', u'slip', u'pack', u'wentworth']
[u'oliv', u'stone', u'arrest', u'drink', u'drive']
[u'olymp', u'champion', u'holm', u'tell', u'self', u'harm']
[u'opposit', u'push', u'presenc', u'china']
[u'owen', u'score', u'real', u'overhaul', u'zaragoza']
[u'pacif', u'nation', u'seek', u'close', u'trade', u'tie']
[u'pakistan', u'claim', u'milit', u'kill', u'oper']
[u'palestinian', u'kill', u'gunfight']
[u'palestinian', u'boost', u'secur', u'ahead', u'gaza', u'pullout']
[u'perth', u'exhibit', u'featur', u'russian', u'treasur']
[u'remov', u'shoe', u'sell']
[u'polic', u'appeal', u'wit', u'citi', u'stab']
[u'polic', u'arrest', u'anti', u'social', u'crime', u'crackdown']
[u'polic', u'charg', u'alleg', u'abduct']
[u'polic', u'investig', u'care', u'abus', u'claim']
[u'polic', u'quiz', u'adelaid', u'bash', u'suspect']
[u'polic', u'shop', u'suspici']
[u'polic', u'union', u'lament', u'offic', u'number']
[u'pope', u'pledg', u'support', u'christian', u'uniti']
[u'punter', u'second', u'shoot', u'game', u'ticket']
[u'reconcili', u'practic', u'issu']
[u'renouf', u'head', u'census', u'campaign']
[u'richardson', u'dynam', u'debut', u'lead', u'england', u'past']
[u'roof', u'collaps', u'kill', u'worker', u'india']
[u'sailor', u'superb', u'barbarian', u'thrash', u'england', u'hope']
[u'salvo', u'fear', u'corbi', u'backlash', u'collect']
[u'sandakan', u'victim', u'commemor', u'memori']
[u'savoldelli', u'close', u'second', u'giro', u'victori']
[u'search', u'fourth', u'kidnap', u'suspect', u'continu']
[u'servic', u'honour', u'organ', u'donor']
[u'sharon', u'cabinet', u'agre', u'free', u'palestinian', u'prison']
[u'storm', u'song', u'home']
[u'super', u'final', u'game', u'breakdown']
[u'govt', u'urg', u'liber', u'stand', u'chang']
[u'tasmanian', u'award', u'sheep', u'genet']
[u'time', u'stand', u'london']
[u'treasur', u'chair', u'bureaucraci', u'cut', u'committe']
[u'union', u'join', u'state', u'high', u'court', u'challeng']
[u'union', u'refus', u'specul', u'strike']
[u'urg', u'donor', u'forget', u'rwanda']
[u'veget', u'grower', u'seek', u'higher', u'subsidi']
[u'waratah', u'look', u'strengthen', u'squad']
[u'warrior', u'prevail', u'atroci', u'auckland', u'weather']
[u'whatmor', u'defend', u'bangladesh', u'test', u'status']
[u'soldier', u'preserv', u'remain', u'near', u'ypres']
[u'yudhoyono', u'order', u'hunt', u'blast', u'perpetr']
[u'adopt', u'mental', u'health', u'care', u'model']
[u'polli', u'urg', u'princip']
[u'adelaid', u'hous', u'price', u'approach', u'limit']
[u'agfa', u'upbeat', u'despit', u'parent', u'bankruptci']
[u'agforc', u'welcom', u'drought', u'relief', u'packag']
[u'ord', u'start', u'week', u'posit', u'note']
[u'seek', u'tougher', u'oversea', u'doctor', u'screen']
[u'dead', u'iraq', u'attack']
[u'aussi', u'target', u'vaughan', u'say', u'buchanan']
[u'australia', u'near', u'east', u'timor', u'deal', u'downer', u'say']
[u'australian', u'sensibl', u'corbi', u'jakarta']
[u'australia', u'annouc', u'mindanao', u'island']
[u'aust', u'consid', u'special', u'access', u'pacif']
[u'backpack', u'drown', u'session']
[u'bear', u'second', u'half', u'blitz', u'good', u'east']
[u'beatti', u'cautious', u'brackss', u'polici', u'plan']
[u'beer', u'mat', u'target', u'potenti', u'priest']
[u'benefactor', u'offer', u'nurs', u'home', u'fund']
[u'race', u'benefit', u'burdekin', u'mayor']
[u'bike', u'bomb', u'wound', u'afghanistan']
[u'biki', u'court', u'drug', u'charg']
[u'bird', u'respons', u'test']
[u'brack', u'draft', u'nation', u'polici', u'reform', u'packag']
[u'brack', u'tour', u'western', u'drought', u'region']
[u'brazilian', u'pride', u'parad', u'attract', u'revel']
[u'brisco', u'indi']
[u'broom', u'busi', u'offer', u'lukewarm', u'budget', u'respons']
[u'brown', u'launch', u'suit', u'wielangta', u'forest']
[u'bulldog', u'lose', u'match', u'smith']
[u'burn', u'woman', u'roll', u'grass', u'flame']
[u'busi', u'urg', u'consid', u'mall', u'trader', u'levi']
[u'busi', u'welfar', u'group', u'welcom', u'brackss', u'agenda']
[u'interpret', u'centr', u'site', u'rethink']
[u'illeg', u'abalon', u'protect', u'south']
[u'review', u'hand', u'hold', u'devic']
[u'chanc', u'lift', u'hop', u'geraldton', u'marin', u'plan']
[u'chines', u'coupl', u'australian', u'children', u'face', u'deport']
[u'claim', u'fli', u'gnome', u'floor', u'woman', u'wilcannia', u'fight']
[u'claim', u'indigen', u'renal', u'failur', u'crisi']
[u'cleric', u'confid', u'wood', u'releas', u'week']
[u'club', u'fear', u'hike', u'lose', u'high', u'court', u'appeal']
[u'coal', u'rail', u'project', u'schedul']
[u'communiti', u'servic', u'defend', u'send', u'offic', u'help']
[u'compani', u'profit', u'fall']
[u'compens', u'payout', u'anger', u'wife', u'crash', u'victim']
[u'corbi', u'lawyer', u'confirm', u'theyll', u'appeal']
[u'corbi', u'interest', u'transfer', u'australia']
[u'corbi', u'reject', u'medic', u'downer', u'say']
[u'council', u'group', u'urg', u'govt', u'upgrad', u'infrastructur']
[u'council', u'push', u'long', u'paddock', u'increas']
[u'council', u'consid', u'white', u'issu']
[u'court', u'tell', u'accuss', u'drug', u'traffick', u'alias']
[u'cowra', u'mayor', u'leav', u'japan', u'trade']
[u'dairi', u'farmer', u'maintain', u'push', u'milk', u'price', u'bodi']
[u'darl', u'down', u'hold', u'secret', u'price']
[u'day', u'number', u'independ', u'chairman', u'say']
[u'decis', u'loom', u'communiti', u'kindergarten', u'plan']
[u'digger', u'rememb', u'sandakan', u'memori']
[u'donat', u'seek', u'siev', u'survivor', u'attend']
[u'doubt', u'rise', u'japanes', u'wwii', u'soldier']
[u'downer', u'warn', u'indonesia', u'boycott']
[u'drought', u'drive', u'dog', u'south']
[u'gippsland', u'council', u'urg', u'feder', u'fund']
[u'elder', u'discuss', u'environment', u'plan']
[u'elector', u'commiss', u'readi', u'poll']
[u'employ', u'urg', u'lead', u'skill', u'shortag', u'correct']
[u'england', u'fall', u'thorp']
[u'england', u'rule', u'gile']
[u'leader', u'press', u'constitut']
[u'expert', u'consid', u'japanes', u'whale', u'propos']
[u'expert', u'test', u'diseas', u'outbreak', u'respons']
[u'famili', u'concern', u'abus']
[u'famili', u'fear', u'abus']
[u'farmer', u'mix', u'drought', u'help']
[u'fear', u'potato', u'contract', u'woe', u'forc', u'grower']
[u'feder', u'politician', u'secur', u'rise']
[u'focus', u'drown', u'prevent']
[u'franc', u'vote']
[u'fund', u'boost', u'cycl', u'walk', u'project']
[u'fund', u'cut', u'elect', u'surgeri', u'wait', u'list']
[u'gold', u'coast', u'aim', u'grind', u'run']
[u'gold', u'coast', u'consid', u'stadium', u'sit']
[u'govern', u'accus', u'public', u'servic', u'rise']
[u'govt', u'announc', u'countri', u'doctor', u'deal']
[u'govt', u'stop', u'whale', u'truss']
[u'govt', u'introduc', u'schedul']
[u'govt', u'opposit', u'voic', u'concern', u'judici', u'payris']
[u'govt', u'reject', u'divid', u'report']
[u'govt', u'reject', u'respons', u'research', u'centr']
[u'govt', u'select', u'rich', u'poor', u'divid', u'chariti']
[u'govt', u'urg', u'drought', u'announc']
[u'govt', u'wont', u'rule', u'mine', u'royalti', u'rate', u'rise']
[u'grazier', u'tell', u'chang', u'offer', u'flexibl']
[u'grower', u'express', u'concern', u'foodland', u'takeov']
[u'hackett', u'juic', u'world', u'champ']
[u'hackett', u'pleas', u'world', u'champ', u'prepar']
[u'henjak', u'head', u'west', u'escap', u'gregan', u'shadow']
[u'hewitt', u'finalis', u'wimbledon', u'prepar']
[u'director', u'secur', u'collaps']
[u'histor', u'sale', u'advertis', u'nation']
[u'holland', u'mcgrath', u'face', u'charg']
[u'howard', u'see', u'chanc', u'reconcili']
[u'hunt', u'polic', u'cell', u'escape']
[u'icpa', u'want', u'fund', u'isol', u'student']
[u'india', u'activ', u'volcano', u'erupt']
[u'indonesia', u'suspect', u'dead', u'blast']
[u'inquiri', u'find', u'fuel', u'price', u'reason']
[u'invit', u'disput', u'overshadow', u'child', u'abus', u'summit']
[u'iran', u'uncov', u'winemak', u'past']
[u'jackson', u'case', u'legal', u'team', u'readi', u'final', u'argument']
[u'agenc', u'cite', u'benefit', u'indigen', u'worker']
[u'johnson', u'qualifi', u'world', u'champ']
[u'kean', u'celt', u'come']
[u'kerin', u'deliv', u'budget', u'repli']
[u'kessler', u'begin', u'mind', u'game', u'mundin']
[u'kirkland', u'woe', u'ongo']
[u'labor', u'pursu', u'govt', u'safeti', u'document']
[u'land', u'moratorium', u'soon']
[u'lawyer', u'predict', u'flood', u'unfair', u'dismiss', u'claim']
[u'leeton', u'school', u'blaze', u'investig']
[u'lennon', u'defend', u'staff', u'hear']
[u'leonard', u'hold', u'tom', u'jude', u'classic']
[u'liber', u'choos', u'chaffey', u'candid']
[u'liber', u'reject', u'whale', u'support', u'claim']
[u'mackay', u'host', u'region', u'art', u'gather']
[u'appeal', u'theft', u'sentenc']
[u'escap', u'court', u'hijack']
[u'jail', u'procur', u'child', u'internet']
[u'plead', u'guilti', u'insid', u'trade']
[u'face', u'court', u'attempt', u'murder', u'charg']
[u'martin', u'defend', u'cost', u'fuel', u'inquiri']
[u'mayor', u'unlik', u'toxic', u'wast', u'concern']
[u'mccain', u'bring', u'tassi', u'grower']
[u'seek', u'attempt', u'kidnap']
[u'group', u'back', u'safeti', u'review']
[u'prais', u'boost', u'china', u'trade', u'tie']
[u'minist', u'offer', u'age', u'care', u'infrastructur', u'assur']
[u'mitez', u'meet', u'highlight', u'challeng']
[u'age', u'care', u'place', u'hunter']
[u'get', u'gate', u'worker', u'entitl', u'assur']
[u'say', u'budget', u'fund', u'concentr', u'albani']
[u'say', u'transport', u'plan', u'stupid']
[u'multiplex', u'halt', u'trade']
[u'multiplex', u'prepar', u'investor', u'updat', u'wembley']
[u'multiplex', u'slash', u'profit', u'outlook']
[u'natasha', u'ryan', u'case', u'delay', u'juli']
[u'nervous', u'wait', u'agfa', u'employe']
[u'campaign', u'target', u'grow', u'chlamydia', u'case']
[u'mobil', u'use', u'phone', u'middlemen']
[u'prison', u'readi', u'june', u'jackson']
[u'sport', u'centr', u'focus', u'jindabyn', u'youth']
[u'nrma', u'faze', u'byron', u'council', u'highway', u'decis']
[u'govt', u'cross', u'border', u'stanc']
[u'busi', u'award', u'tick', u'nation', u'survey']
[u'green', u'launch', u'parliament', u'seat']
[u'ohern', u'wentworth']
[u'opposit', u'flag', u'tougher', u'drug', u'polici']
[u'opposit', u'grow', u'rate', u'rise', u'plan']
[u'opposit', u'rise', u'attack', u'cheap', u'popul']
[u'parent', u'newborn', u'move', u'detent', u'hous']
[u'patel', u'extens', u'fraudul', u'inquiri']
[u'pension', u'killer', u'free', u'jail']
[u'petacchi', u'miss', u'tour', u'savoldelli', u'win', u'giro']
[u'plane', u'crash', u'rest', u'place', u'remain', u'mysteri']
[u'announc', u'drought']
[u'polic', u'chief', u'reject', u'staff', u'concern']
[u'polic', u'claim', u'cyclist', u'kill', u'drink', u'driver']
[u'polic', u'concern', u'rise', u'aggress', u'behaviour']
[u'polic', u'confisc', u'illeg', u'tobacco', u'cootamundra']
[u'polic', u'farewel', u'offic', u'kill', u'plane', u'crash']
[u'polic', u'grave', u'concern', u'miss', u'woman']
[u'polic', u'hunt', u'takeaway', u'shop', u'bandit']
[u'polic', u'offic', u'visit', u'porn', u'site', u'time']
[u'polic', u'probe', u'rupanyup', u'assault']
[u'polic', u'search', u'morwel', u'arsonist']
[u'polic', u'vike', u'oper', u'ahead']
[u'power', u'unlik', u'grand', u'final', u'william']
[u'price', u'week']
[u'price', u'origin', u'campaign', u'balanc']
[u'produc', u'hail', u'court', u'rule', u'meat', u'import']
[u'program', u'offer', u'graffiti', u'remov', u'employ', u'skill']
[u'properti', u'report', u'show', u'darwin', u'hous', u'boom']
[u'psychiatrist', u'question', u'claim', u'mcgee', u'mental', u'state']
[u'public', u'look', u'port', u'albert', u'develop', u'plan']
[u'public', u'urg', u'help', u'miss', u'bendigo']
[u'qanta', u'okay', u'mobil', u'phone', u'land', u'plan']
[u'believ', u'corbi', u'innoc']
[u'nat', u'shake', u'stupid']
[u'bolster', u'home', u'sale', u'figur']
[u'releas', u'murder', u'close', u'supervis']
[u'resort', u'await', u'snow', u'season', u'loom']
[u'reward', u'offer', u'catch', u'arsonist']
[u'ricketson', u'face', u'match']
[u'roo', u'accept', u'critic', u'loss', u'saint']
[u'routin', u'probe', u'despit', u'fourth', u'altern', u'therapi']
[u'rural', u'confid', u'slump', u'year']
[u'salvo', u'illawarra', u'donat', u'year']
[u'salvo', u'south', u'coast', u'donat', u'year']
[u'treasur', u'attack', u'parliament']
[u'secur', u'chang', u'alter', u'derbi', u'airport', u'public']
[u'seminar', u'highlight', u'indigen', u'busi', u'success']
[u'shire', u'seek', u'road', u'repair', u'fund']
[u'kill', u'shoot']
[u'aid', u'stutter', u'therapi', u'rural', u'children']
[u'song', u'write', u'provid', u'anorexia', u'breakthrough']
[u'jail', u'bash']
[u'soni', u'test', u'anti', u'burn', u'technolog']
[u'stenglein', u'book', u'tribun', u'date']
[u'stenglein', u'challeng', u'rough', u'conduct', u'charg']
[u'stinger', u'net', u'come', u'late', u'year']
[u'storm', u'damag', u'cathedr', u'demolish']
[u'student', u'union', u'angri', u'hec', u'consult']
[u'studi', u'clear', u'human', u'megafauna', u'extinct']
[u'sudan', u'detain', u'agenc', u'chief', u'rape', u'report']
[u'suicid', u'bomber', u'strike', u'south', u'baghdad']
[u'coast', u'council', u'infrastructur', u'plan']
[u'taskforc', u'report', u'fuel']
[u'power', u'trade', u'depend', u'basslink', u'connect']
[u'teen', u'arrest', u'kava']
[u'long', u'term', u'detaine', u'releas', u'visa']
[u'thousand', u'evacu', u'wwii', u'bomb', u'itali']
[u'dead', u'gaza', u'strip', u'explos']
[u'tottenham', u'build', u'near', u'hospit']
[u'townsvill', u'host', u'mega', u'defenc', u'base']
[u'trap', u'trucki', u'escap', u'injuri']
[u'truck', u'mishap', u'block', u'highway']
[u'week', u'storm', u'clean', u'continu']
[u'udines', u'fourth', u'brescia', u'releg', u'final']
[u'umaga', u'withdraw', u'trial', u'match']
[u'union', u'warn', u'support', u'chang']
[u'forc', u'mistaken', u'arrest', u'sunni', u'leader']
[u'sailor', u'mark', u'memori', u'darwin']
[u'visit', u'brazilian', u'minist', u'promot', u'ethanol']
[u'water', u'restrict', u'continu']
[u'throw', u'toad', u'fight', u'fund']
[u'wellington', u'council', u'reject', u'merger', u'plan']
[u'wellshot', u'hotel', u'sale']
[u'wit', u'tell', u'court', u'gatto', u'give']
[u'woolmark', u'sale', u'consider']
[u'worm', u'ranch', u'plan']
[u'wwii', u'servicemen', u'crete', u'effort', u'rememb']
[u'yeppoon', u'roadwork', u'agreement', u'sign']
[u'studi', u'focus', u'live', u'export']
[u'aborigin', u'council', u'take', u'corpor', u'land']
[u'accc', u'ask', u'consid', u'dairi', u'farmer', u'woe']
[u'aftershock', u'rock', u'banda', u'aceh']
[u'agforc', u'back', u'drought', u'packag']
[u'airlin', u'criticis', u'passeng', u'flight']
[u'alic', u'council', u'reject', u'youth', u'curfew', u'plan']
[u'alic', u'mayor', u'resign', u'greatorex']
[u'chief', u'sorri', u'kill', u'field', u'claim']
[u'govt', u'headway', u'nurs', u'practition']
[u'anderson', u'rule', u'corbi', u'custom', u'report', u'link']
[u'andrew', u'expect', u'critic', u'plan']
[u'andromeda', u'larger', u'think']
[u'announc', u'drought', u'relief', u'measur', u'welcom']
[u'build', u'navi', u'flagship']
[u'asx', u'golden', u'end']
[u'australian', u'moto', u'move', u'beat', u'tobacco']
[u'australia', u'miss', u'univers', u'final']
[u'bellingen', u'council', u'wont', u'seek', u'rate', u'rise']
[u'bendigo', u'busi', u'seek', u'weekend', u'clean']
[u'birney', u'accus', u'doubl', u'standard', u'breath', u'test']
[u'breaker', u'miss', u'red']
[u'broadbent', u'recal', u'nation', u'squad']
[u'brown', u'injuri', u'wont', u'stop', u'black', u'gold', u'say']
[u'cigarett', u'maker', u'target', u'women', u'studi']
[u'citrus', u'canker', u'detect', u'emerald', u'properti']
[u'cleaner', u'seek', u'bishop', u'support', u'disput']
[u'cloke', u'boost', u'collingwood', u'resurg']
[u'pledg', u'clean', u'fight', u'elect']
[u'promis', u'statehood', u'vote', u'elect']
[u'commission', u'defend', u'pass', u'birney']
[u'communiti', u'board', u'urg', u'quick', u'transit']
[u'communiti', u'urg', u'galleri', u'plan']
[u'concern', u'mount', u'miss', u'woman']
[u'confer', u'consid', u'northern', u'aust', u'health']
[u'coolangatta', u'gold', u'come', u'mothbal']
[u'costello', u'record', u'trade', u'deficit']
[u'council', u'approv', u'cooma', u'develop']
[u'councillor', u'censur', u'code', u'conduct', u'breach']
[u'council', u'ramp', u'pollut', u'monitor']
[u'council', u'see', u'good', u'drought', u'packag']
[u'council', u'tell', u'consult', u'better', u'cut']
[u'council', u'vote', u'independ', u'bulli']
[u'counsel', u'servic', u'fear', u'miss']
[u'court', u'jail', u'pair', u'rugbi', u'leagu', u'player', u'death']
[u'cricket', u'australia', u'defend', u'bangladesh', u'zimbabw']
[u'crouch', u'england', u'debut', u'campbel']
[u'current', u'account', u'deficit', u'soar']
[u'current', u'account', u'multiplex', u'tone', u'market']
[u'defenc', u'lobbi', u'criticis', u'townsvill', u'mega', u'defenc']
[u'defenc', u'target', u'school', u'recruit', u'drive']
[u'dengu', u'threat', u'persist']
[u'deputi', u'mayor', u'reject', u'conflict', u'claim']
[u'develop', u'air', u'water', u'trade', u'worri']
[u'disput', u'resolut', u'bodi', u'mark', u'year', u'mileston']
[u'docker', u'face', u'depth', u'test']
[u'dodson', u'brand', u'share', u'respons', u'deal', u'nonsens']
[u'dodson', u'brand', u'share', u'respons', u'deal', u'nonsens']
[u'doubt', u'rais', u'drought', u'packag', u'malle']
[u'drought', u'announc', u'bring', u'mix', u'respons']
[u'drought', u'forc', u'domest', u'grain', u'sale']
[u'drover', u'wont', u'stock', u'rout', u'plan']
[u'sign', u'valencia']
[u'england', u'happi', u'jone', u'get', u'swing']
[u'compens', u'payment', u'hold']
[u'famili', u'lose', u'interpret', u'classroom']
[u'farmer', u'rais', u'drought', u'packag', u'concern']
[u'farm', u'group', u'back', u'drought', u'packag']
[u'farm', u'group', u'see', u'drought', u'packag', u'gap']
[u'fear', u'hold', u'live', u'export', u'townsvill']
[u'feder', u'court', u'back', u'liquorland', u'payment']
[u'final', u'submiss', u'lauri', u'inquest']
[u'fisheri', u'author', u'reject', u'antarct', u'fish', u'zone']
[u'ausaid', u'advis', u'face', u'pornographi', u'charg']
[u'nurs', u'face', u'child', u'porn', u'charg']
[u'forum', u'allow', u'local', u'art', u'input']
[u'foster', u'review', u'southcorp', u'asset']
[u'freeman', u'say', u'athlet', u'learn', u'cricket']
[u'french', u'quit', u'vote']
[u'friend', u'farewel', u'king', u'kennedi']
[u'geograph', u'domain', u'name', u'grab']
[u'giro', u'show', u'armstrong', u'team', u'stronger']
[u'glazer', u'readi', u'sell', u'ferdinand']
[u'goldfield', u'council', u'recognis', u'indigen']
[u'goulburn', u'water', u'crisi', u'receiv', u'govt', u'attent']
[u'govt', u'accus', u'wast', u'money', u'butler', u'health']
[u'govt', u'agre', u'goulburn', u'water', u'work', u'parti']
[u'govt', u'defend', u'approach', u'airport', u'secur']
[u'govt', u'defend', u'effort', u'fight', u'devil', u'diseas']
[u'govt', u'help', u'employe', u'compani', u'fold']
[u'govt', u'introduc', u'harsher', u'water', u'ban']
[u'govt', u'eyr', u'peninsula', u'water', u'plan']
[u'green', u'group', u'air', u'plan', u'chang', u'concern']
[u'green', u'oppos', u'rise']
[u'grenfel', u'label', u'defici']
[u'guard', u'shock', u'arm', u'robberi']
[u'hawkesburi', u'water', u'cut', u'answer', u'green', u'group']
[u'bail', u'crush']
[u'heavi', u'rain', u'damag', u'interst', u'road', u'link']
[u'heenan', u'make', u'brumbi', u'offici']
[u'heenan', u'sign', u'brumbi']
[u'hill', u'concern', u'darwin', u'waterfront', u'revamp']
[u'hop', u'high', u'kewel', u'recoveri']
[u'hopper', u'appeal', u'sentenc']
[u'hospit', u'revamp', u'unlik', u'hall', u'site']
[u'hotlin', u'wear', u'thicker', u'cloth', u'advic', u'scrutini']
[u'howard', u'noncommitt', u'detent', u'debat']
[u'husband', u'killer', u'appeal', u'punish']
[u'creditor', u'meet', u'dubbo']
[u'fight', u'zarqawi', u'say']
[u'indigen', u'support', u'group', u'make', u'govern', u'award']
[u'indigen', u'work', u'agreement', u'unfair', u'mine', u'group', u'tell']
[u'indonesia', u'loom', u'threat', u'hunter', u'thermal', u'coal']
[u'indonesia', u'prison', u'swap', u'deal']
[u'itali', u'open', u'skin', u'bank', u'high', u'risk', u'worker']
[u'jazz', u'great', u'oscar', u'brown', u'dead']
[u'jockey', u'jail', u'life', u'kill', u'teen', u'prostitut']
[u'john', u'paul', u'sainthood', u'process', u'begin']
[u'john', u'action', u'knight']
[u'johnson', u'sixth', u'qualifi', u'world', u'champ']
[u'katich', u'readi', u'pom']
[u'king', u'televis', u'bow', u'high', u'note']
[u'landhold', u'rural', u'road', u'issu']
[u'larsson', u'commit', u'barca']
[u'societi', u'renew', u'northern']
[u'lehmann', u'brand', u'selector', u'hogwash']
[u'liber', u'thrash', u'detent', u'issu']
[u'liverpool', u'decis', u'week', u'say', u'hamann']
[u'lynch', u'expect', u'exodus', u'lion']
[u'magnific', u'seven', u'open']
[u'martin', u'proud', u'campaign', u'kick']
[u'mayor', u'stand', u'bureaucrat', u'sack']
[u'mckay', u'hall', u'creek', u'council', u'presid']
[u'moimoi', u'out', u'game']
[u'look', u'renew', u'orthopaed', u'surgeri']
[u'head', u'north', u'east', u'countri', u'feedback']
[u'multiplex', u'reassur', u'investor', u'profit', u'warn']
[u'multiplex', u'share', u'dive', u'profit', u'warn']
[u'nation', u'look', u'oust', u'tweed', u'labor']
[u'aussi', u'find', u'citizenship', u'uplift']
[u'chief', u'kalgoorli', u'hospit']
[u'machin', u'allow', u'kidney', u'patient', u'treat']
[u'microchip', u'away', u'test']
[u'munch', u'paint', u'unearth']
[u'offic', u'nativ', u'titl', u'servic']
[u'presid', u'east', u'pilbara', u'shire']
[u'school', u'bus', u'alloc', u'eyr', u'peninsula']
[u'direct', u'link', u'traffic', u'report', u'corbi']
[u'visa', u'offer', u'long', u'term', u'detaine', u'qasim']
[u'govt', u'want', u'district', u'regain', u'access']
[u'elect', u'june']
[u'elect', u'specul', u'mount']
[u'push', u'china', u'free', u'trade', u'deal']
[u'opposit', u'fear', u'widespread', u'tafe', u'cut']
[u'palestinian', u'shelv', u'collabor', u'execut', u'plan']
[u'see', u'benefit', u'drought', u'packag']
[u'philippin', u'separatist', u'open', u'train', u'camp']
[u'upbeat', u'indigen', u'relat']
[u'regret', u'land', u'right', u'decis']
[u'polic', u'arrest', u'want', u'chase', u'hous']
[u'polic', u'command', u'discuss', u'staff', u'problem']
[u'polic', u'confirm', u'arson', u'high', u'school', u'blaze']
[u'polic', u'hunt', u'occup', u'hous', u'crash']
[u'polic', u'hunt', u'narrogin', u'home', u'invad']
[u'polic', u'look', u'motiv', u'tripl', u'murder']
[u'polic', u'arrest', u'chemist', u'arm', u'hold']
[u'policeman', u'bond', u'park']
[u'polic', u'worth', u'cannabi']
[u'polic', u'interview', u'driver', u'involv', u'fatal', u'crash']
[u'power', u'station', u'decis', u'baffl', u'industri', u'group']
[u'prais', u'launceston', u'council', u'pollut', u'crackdown']
[u'privat', u'credit', u'jump', u'april']
[u'probe', u'continu', u'meatwork', u'death']
[u'public', u'draft', u'tourism', u'plan']
[u'public', u'whitsunday', u'moor']
[u'public', u'urg', u'help', u'catch', u'morwel', u'arsonist']
[u'qanta', u'govt', u'talk', u'secur']
[u'qanta', u'surpris', u'custom', u'drug', u'smuggl', u'report']
[u'council', u'canva', u'merger', u'issu']
[u'tripl', u'murder', u'particular', u'violent']
[u'rainbow', u'parad', u'showcas', u'vintag', u'tractor']
[u'cross', u'fin', u'contamin', u'blood']
[u'refuge', u'advoc', u'seek', u'apolog']
[u'report', u'highlight', u'rural', u'sector', u'confid', u'drop']
[u'retail', u'sale', u'drop']
[u'riverland', u'countri', u'doctor', u'packag']
[u'rodman', u'borrow', u'wife']
[u'roll', u'close', u'council', u'elect']
[u'roo', u'face', u'boss']
[u'roulett', u'wing', u'clip', u'crash', u'report']
[u'rural', u'counsellor', u'want', u'help', u'debt', u'free']
[u'russian', u'bear', u'canadian', u'crown', u'miss', u'univers']
[u'salvo', u'fail', u'reach', u'break', u'hill', u'fundrais', u'target']
[u'santo', u'secur', u'indonesian', u'deal']
[u'accus', u'kill', u'afghan', u'civilian']
[u'soldier', u'disciplin', u'afghan', u'action']
[u'seaga', u'pipelin', u'connect', u'nation', u'grid']
[u'llew', u'permit', u'morri', u'inquiri']
[u'liber', u'detent']
[u'staff', u'karachi', u'rioter', u'torch']
[u'snap', u'love', u'match', u'pari']
[u'state', u'territori', u'prison', u'exchang', u'deal']
[u'stenglein', u'book', u'tribun', u'date']
[u'stenglein', u'hand', u'match']
[u'busi', u'plan', u'train', u'propos']
[u'stuart', u'warn', u'origin', u'player', u'perform']
[u'studi', u'find', u'northern', u'farmer', u'confid']
[u'survey', u'find', u'limit', u'life', u'hobbi', u'farm']
[u'survey', u'highlight', u'small', u'busi', u'land', u'fear']
[u'sydney', u'wont', u'drink', u'water', u'govt']
[u'symphoni', u'orchestra', u'visit', u'pilbara']
[u'teen', u'charg', u'tripl', u'murder']
[u'thing', u'wors', u'beat', u'safin']
[u'treasur', u'occup', u'hazard', u'labor']
[u'trenordan', u'feder', u'plan']
[u'tszyu', u'brace', u'hostil', u'recept']
[u'tweed', u'council', u'want', u'charg', u'work']
[u'dead', u'afghan', u'protest']
[u'union', u'disput', u'qanta', u'claim', u'secur', u'upgrad']
[u'staff', u'cut', u'paper']
[u'comment', u'rural', u'campus', u'report']
[u'vanston', u'snub', u'reconcili', u'talk']
[u'say', u'drought', u'packag']
[u'disappoint', u'navi', u'destroy', u'decis']
[u'vline', u'analys', u'draft', u'timet', u'feedback']
[u'govt', u'appeal', u'increas', u'man', u'sentenc']
[u'wallabi', u'red', u'tune']
[u'nation', u'reject', u'singl', u'nation']
[u'warrior', u'gold', u'mine', u'year']
[u'water', u'treatment', u'money', u'flow']
[u'know', u'economist', u'lead', u'committe']
[u'workload', u'push', u'aust', u'surgeon', u'bundaberg']
[u'yuko', u'founder', u'jail', u'year']
[u'zimbabw', u'govt', u'outlaw', u'privat', u'land', u'ownership']
[u'hunt', u'monkey', u'go', u'huff']
[u'abus', u'indonesia', u'wont', u'help', u'corbi', u'downer']
[u'academ', u'say', u'like', u'suicid', u'women']
[u'accus', u'smuggler', u'deni', u'work', u'siev']
[u'actor', u'christian', u'slater', u'arrest', u'grope']
[u'acupunctur', u'offer', u'altern', u'drug', u'addict']
[u'ensur', u'troop', u'oversea', u'vote', u'elect']
[u'probe', u'incid']
[u'aerial', u'spray', u'databas', u'need', u'review', u'tell']
[u'afghan', u'ngos', u'launch', u'code', u'conduct']
[u'say', u'need', u'north', u'west', u'magistr']
[u'fund', u'trickl', u'tsunami', u'ravag']
[u'alcohol', u'charg', u'michael', u'jackson', u'reduc']
[u'anderson', u'airport', u'alleg', u'beazley']
[u'appl', u'grower', u'highlight', u'trade', u'concern']
[u'apprenticeship', u'complet', u'rate', u'rise']
[u'aussi', u'coach', u'make', u'mark', u'world', u'cricket']
[u'averag', u'winter', u'rainfal', u'forecast', u'wide']
[u'manner', u'anger', u'british', u'viewer']
[u'bank', u'employe', u'charg', u'money']
[u'bank', u'stock', u'drive', u'ord']
[u'beatti', u'vow', u'legisl', u'fight', u'govt', u'plan']
[u'averag', u'rain', u'record', u'western', u'victoria']
[u'urg', u'share', u'pilbara', u'port']
[u'biolog', u'scare', u'appal']
[u'boe', u'engin', u'step', u'campaign', u'push']
[u'bombala', u'consid', u'rate', u'rise']
[u'bowman', u'webb', u'join', u'line', u'shark']
[u'brack', u'seek', u'releas', u'defenc', u'contract', u'paper']
[u'brazil', u'adriano', u'play', u'italian', u'final']
[u'bridg', u'visa', u'strip', u'detaine', u'right']
[u'broadband', u'project', u'depend', u'feder', u'fund']
[u'bush', u'dismiss', u'absurd', u'amnesti', u'right', u'report']
[u'bushfir', u'investig', u'wont', u'play', u'blame', u'game']
[u'busi', u'leader', u'urg', u'action', u'transport', u'crisi']
[u'call', u'arboretum', u'project', u'postpon']
[u'canadian', u'posti', u'unabl', u'step', u'task']
[u'bomb', u'hit', u'baghdad', u'checkpoint']
[u'champ', u'barcelona', u'chase', u'forlan']
[u'child', u'play', u'lighter', u'set', u'bedroom', u'alight']
[u'china', u'accus', u'detain', u'hong', u'kong', u'report', u'spi']
[u'classic', u'walk', u'perth']
[u'coalit', u'thwart', u'labor', u'debat', u'detent']
[u'coff', u'harbour', u'host', u'nation', u'nativ', u'titl']
[u'collin', u'problem', u'shipbuild', u'hill']
[u'communiti', u'urg', u'involv', u'batavia']
[u'corbi', u'lawyer', u'begin', u'appeal', u'process']
[u'costello', u'defend', u'defenc', u'contract', u'decis']
[u'costello', u'dismiss', u'call', u'fairer', u'share']
[u'council', u'approv', u'second']
[u'council', u'back', u'residenti', u'colleg']
[u'councillor', u'expect', u'censur']
[u'council', u'say', u'beach', u'sewag', u'spill', u'risk', u'public']
[u'council', u'protest', u'asbesto', u'remov', u'cost']
[u'countri', u'footbal', u'victoria', u'promis', u'million']
[u'court', u'order', u'fraud', u'case', u'retrial']
[u'crowd', u'seiz', u'control', u'kyrgyzstan', u'suprem', u'court']
[u'custom', u'report', u'coincid', u'secur', u'upgrad']
[u'custom', u'report', u'spark', u'secur', u'check', u'review']
[u'cut', u'forecast', u'fraser', u'coast', u'public', u'health']
[u'czech', u'musician', u'deni', u'mysteri', u'piano']
[u'dead', u'blast', u'hit', u'afghan', u'mosqu']
[u'delay', u'panel', u'probe', u'council']
[u'deport', u'delay', u'chines', u'coupl', u'australian']
[u'destroy', u'contract', u'creat', u'need']
[u'dfat', u'demand', u'kuwait', u'investig', u'tortur', u'claim']
[u'dfat', u'know', u'solon', u'case']
[u'digit', u'polici', u'restrict', u'chairman']
[u'dog', u'want', u'monday', u'night', u'pioneer']
[u'doyl', u'back', u'mountain', u'cattlemen', u'fight']
[u'dozen', u'claim', u'mysteri', u'money']
[u'draft', u'report', u'call', u'taxi', u'fare', u'increas']
[u'weather', u'like', u'continu']
[u'eagl', u'accept', u'fair', u'stenglein', u'bump']
[u'econom', u'growth', u'forecast', u'march']
[u'economist', u'rais', u'concern', u'grow', u'foreign']
[u'educ', u'union', u'protest', u'feder', u'govt']
[u'effort', u'afoot', u'tackl', u'indigen', u'passiv', u'smoke']
[u'elect', u'pledg', u'begin']
[u'embassi', u'evacu', u'biolog', u'threat']
[u'embassi', u'staff', u'releas', u'biolog', u'scare']
[u'embassi', u'staff', u'return', u'home', u'biolog', u'scare']
[u'fin', u'ranger', u'breach']
[u'boyfriend', u'give', u'evid', u'murder', u'trial']
[u'export', u'report', u'find', u'infrastructur', u'crisi']
[u'extra', u'offic', u'boost', u'chifley', u'polic', u'command']
[u'fear', u'livestock', u'industri', u'weather', u'pattern']
[u'bomb', u'throw', u'mayor', u'hous']
[u'firefight', u'call', u'hotel', u'chimney']
[u'fitzgibbon', u'back', u'stuart', u'warn', u'origin', u'star']
[u'forb', u'die', u'level', u'cross', u'crash']
[u'forc', u'fight', u'retain']
[u'director', u'make', u'deep', u'throat', u'claim']
[u'offic', u'challeng', u'sack']
[u'rower', u'escap', u'convict', u'drug', u'charg']
[u'french', u'open', u'semi', u'final', u'decid']
[u'fund', u'allow', u'disabl', u'servic', u'boost']
[u'golf', u'club', u'roof', u'collaps', u'prompt', u'coron']
[u'govern', u'criticis', u'airport', u'secur']
[u'govt', u'accus', u'want', u'scrap', u'waterfront']
[u'govt', u'extend', u'depress', u'screen', u'program']
[u'govt', u'probe', u'sydney', u'airport', u'secur']
[u'govt', u'urg', u'tackl', u'school', u'teacher', u'shortag']
[u'grand', u'debut', u'mask', u'financi', u'woe']
[u'grazier', u'highlight', u'autumn']
[u'harri', u'quiet', u'corbi', u'specul']
[u'hawk', u'slam', u'nonsens']
[u'hawk', u'urg', u'labor', u'leadership', u'look', u'beatti']
[u'health', u'record', u'databas', u'concern', u'privaci', u'bodi']
[u'hill', u'reserv', u'judgment', u'alleg']
[u'hospit', u'defend', u'secur']
[u'hospit', u'isol', u'patient', u'super']
[u'howard', u'georgiou', u'discuss', u'immigr', u'detent']
[u'improv', u'commit', u'crow', u'success']
[u'indigen', u'flag', u'perman', u'outsid', u'council']
[u'indigen', u'land', u'corpor', u'defend', u'divest']
[u'indonesia', u'condemn', u'embassi', u'intimid']
[u'industri', u'hemp', u'trial', u'begin', u'spring']
[u'iran', u'missil', u'test', u'fuel', u'nuclear', u'warhead', u'fear']
[u'isra', u'general', u'see', u'wave', u'violenc']
[u'italian', u'polic', u'quiz', u'cipo', u'armstrong']
[u'jetstar', u'tri', u'stop', u'wheelchair', u'athlet']
[u'judg', u'order', u'teen', u'bulli', u'slim']
[u'kalgoorli', u'studi', u'widen']
[u'kalgoorli', u'council', u'stand', u'golf', u'cours', u'size']
[u'kasper', u'readi', u'pom']
[u'labor', u'accus', u'direct', u'anti', u'social', u'polici']
[u'launceston', u'vision', u'focus']
[u'lawyer', u'detail', u'difficulti', u'obtain', u'mcgee']
[u'lawyer', u'fear', u'hick', u'trial', u'delay']
[u'lawyer', u'head', u'footbal', u'brawl', u'probe']
[u'lobbi', u'group', u'oppos', u'chang', u'coal', u'approv']
[u'lobbi', u'group', u'seek', u'lenienc', u'school', u'drought']
[u'local', u'govt', u'upset', u'delay', u'farm', u'relief']
[u'magistr', u'bail', u'sydney', u'airport', u'drug', u'accus']
[u'mall', u'plan']
[u'polic', u'publicis', u'drug', u'test']
[u'martin', u'deni', u'candid', u'muzzl']
[u'mayor', u'beat', u'despit', u'plant', u'closur']
[u'mcewen', u'stand', u'term']
[u'mcgradi', u'sympathi', u'free', u'killer']
[u'meet', u'christian', u'radio', u'idea']
[u'millmerran', u'bypass', u'rout', u'decid']
[u'miner', u'council', u'reject', u'indigen', u'work', u'agreement']
[u'minist', u'admit', u'mistak', u'gunn', u'advic']
[u'minist', u'ask', u'suspend', u'murray', u'environment']
[u'minist', u'flag', u'review', u'sexual', u'offend', u'treatment']
[u'critic', u'china', u'trade', u'fair', u'exhibit']
[u'plan', u'ralli', u'support', u'maryborough', u'hospit']
[u'question', u'region', u'speed', u'camera']
[u'say', u'polglas', u'state', u'polit', u'prematur']
[u'say', u'river', u'comment', u'bizarr']
[u'muslim', u'terror', u'suspect', u'acquit', u'thailand']
[u'nation', u'look', u'govt', u'rural', u'doctor']
[u'servic', u'reli', u'fund', u'say', u'chief']
[u'nightclub', u'curfew', u'work', u'crime']
[u'ireland', u'polic', u'arrest', u'mccartney', u'murder']
[u'minist', u'back', u'sewerag', u'project', u'goulburn']
[u'boycott', u'australian', u'fruit']
[u'fifth', u'earth', u'bird', u'speci', u'danger', u'studi']
[u'opposit', u'breathalys', u'matter']
[u'opposit', u'seiz', u'plant', u'pest', u'fear']
[u'owen', u'trick', u'help', u'england', u'edg', u'colombia']
[u'palestinian', u'elect', u'postpon']
[u'panel', u'administ', u'lose', u'aborigin', u'trust', u'money']
[u'pari', u'expo', u'charg', u'sag', u'european', u'research']
[u'passion', u'intens', u'land', u'ricketson', u'troubl']
[u'patel', u'offer', u'see', u'inquiri', u'hear']
[u'peacekeep', u'leav', u'capabl', u'east', u'timor']
[u'pietersen', u'hand', u'ash', u'incent']
[u'back', u'accc', u'port', u'plan', u'report']
[u'reject', u'cover', u'alleg']
[u'reject', u'cover', u'claim']
[u'silent', u'possibl', u'corbi', u'pardon']
[u'polic', u'charg', u'teen', u'tripl', u'slay']
[u'polic', u'detain', u'seven', u'wake', u'indonesian', u'bomb']
[u'polic', u'investig', u'trap', u'meat']
[u'polic', u'offic', u'tell', u'mcgee', u'inquiri', u'omit']
[u'polic', u'offic', u'undergo', u'handgun', u'retrain']
[u'polic', u'probe', u'hous', u'arson']
[u'polic', u'raid', u'illeg', u'drug']
[u'polic', u'power', u'increas']
[u'polic', u'treat', u'toddler', u'death', u'suspici']
[u'polic', u'wont', u'comment', u'dead', u'hous', u'blaze']
[u'polic', u'wont', u'link', u'remain', u'miss', u'rockhampton']
[u'protest', u'arrest', u'log', u'blockad']
[u'qanta', u'airbus', u'delay']
[u'refineri', u'staff', u'stop', u'work', u'mercuri', u'claim']
[u'report', u'cast', u'doubt', u'cruis', u'ship', u'termin']
[u'report', u'show', u'rural', u'economi']
[u'reserv', u'bank', u'want', u'disclosur', u'bpay', u'fee']
[u'resid', u'group', u'question', u'wind', u'farm', u'survey']
[u'revamp', u'plan', u'murwillumbah', u'polic', u'station']
[u'review', u'panel', u'probe', u'sleep', u'judg', u'claim']
[u'reward', u'offer', u'munch', u'scream']
[u'seek', u'bushfir', u'code', u'comment']
[u'tinto', u'commit', u'indigen', u'issu']
[u'riverland', u'crash', u'victim', u'adelaid']
[u'saddam', u'trial', u'possibl', u'formal', u'charg']
[u'soldier', u'disciplin', u'cosgrov']
[u'school', u'cut', u'curriculum', u'power', u'cooler']
[u'schumach', u'dismiss', u'quit', u'question']
[u'secur', u'scare', u'close', u'indonesian', u'embassi']
[u'seven', u'sign', u'lecki', u'year']
[u'skill', u'shortag', u'hit', u'mine', u'industri']
[u'slater', u'fiji']
[u'lanka', u'hop', u'moodi', u'threaten', u'australia']
[u'state', u'nation', u'approach', u'secur']
[u'state', u'prison', u'treati', u'ignor', u'ellison']
[u'statin', u'drug', u'underprescrib', u'studi']
[u'steven', u'chang', u'guilti', u'plea']
[u'strachan', u'relish', u'celtic', u'challeng']
[u'strawberri', u'field', u'forev']
[u'stud', u'bale', u'million', u'dollar', u'clip']
[u'sudan', u'arrest', u'second', u'worker', u'rape', u'report']
[u'sunshin', u'coast', u'mayor', u'join', u'cost', u'shift', u'protest']
[u'support', u'expect', u'coolangatta', u'gold', u'return']
[u'sydney', u'airport', u'boss', u'know', u'custom']
[u'sydney', u'step', u'closer', u'world', u'club', u'challeng']
[u'sydney', u'prim', u'physic', u'test', u'tahiti']
[u'tamworth', u'oldest', u'die', u'age']
[u'tattersal', u'truste', u'accus', u'mishandl', u'staff']
[u'teen', u'face', u'court', u'tripl', u'murder']
[u'test', u'prompt', u'push', u'instal', u'airbag']
[u'thousand', u'march', u'chang']
[u'time', u'run', u'brisban', u'black']
[u'time', u'run', u'brisban', u'black']
[u'tweed', u'council', u'administr', u'hold', u'meet']
[u'arrest', u'delhi', u'cinema', u'blast']
[u'highway', u'truck', u'crash']
[u'stop', u'work', u'protest', u'chang']
[u'court', u'overturn', u'arthur', u'andersen', u'convict']
[u'space', u'telescop', u'captur', u'birth', u'star']
[u'veteran', u'black', u'marshal', u'confirm', u'avail']
[u'cabinet', u'head', u'pilbara']
[u'wangaratta', u'council', u'lift', u'rat']
[u'water', u'corp', u'plan', u'kununurra']
[u'waterg', u'report', u'confirm', u'ident', u'deep', u'throat']
[u'water', u'infrastructur', u'fund', u'illawarra']
[u'clear', u'griffith', u'club', u'auction']
[u'weak', u'consum', u'spend', u'constrain', u'manufactur']
[u'wheatbelt', u'citrus', u'grower', u'market']
[u'workplac', u'chang', u'tip', u'boost', u'rural', u'job']
[u'dear', u'secret', u'record', u'marriag']
[u'whale', u'strand', u'near', u'perth']
[u'abbey', u'crack', u'theolog', u'unsound', u'vinci', u'code']
[u'ablett', u'hall', u'fame', u'exil']
[u'accus', u'tripl', u'murder', u'face', u'court']
[u'airlin', u'hold', u'tourism', u'industri', u'talk']
[u'offer', u'train', u'dancer']
[u'anasta', u'stay', u'rugbi', u'leagu']
[u'angri', u'jail', u'assault']
[u'anti', u'syria', u'journalist', u'kill', u'blast']
[u'dead', u'miss', u'china', u'rain']
[u'augusta', u'margaret', u'river', u'shire', u'plan', u'dept']
[u'aussi', u'doco', u'workout']
[u'aussi', u'keen', u'earli', u'impress']
[u'aussi', u'swimmer', u'readi', u'world', u'champ']
[u'aust', u'deleg', u'protest', u'japan', u'whale', u'move']
[u'aust', u'drug', u'smuggler', u'jail', u'year', u'vietnam']
[u'australian', u'toddler', u'hold', u'detent']
[u'australia', u'post', u'assist', u'embassi', u'threat', u'inquiri']
[u'bear', u'retain', u'line', u'south', u'clash']
[u'beef', u'produc', u'urg', u'vote', u'levi']
[u'billiton', u'seek', u'miner', u'explor', u'licens']
[u'bolivia', u'keeper', u'fake', u'assassin', u'attempt']
[u'brack', u'take', u'brown', u'coal', u'power', u'station', u'tour']
[u'brothel', u'plan', u'spark', u'widespread', u'anger']
[u'build', u'approv', u'rise', u'month', u'slump']
[u'burn', u'condit', u'element', u'blame', u'smoke']
[u'campaign', u'aim', u'brake', u'nation', u'park']
[u'carr', u'call', u'nuclear', u'power', u'debat']
[u'carr', u'say', u'airport', u'secur', u'feder', u'respons']
[u'carr', u'seek', u'cooper', u'relationship', u'govt']
[u'cattl', u'drive', u'lift', u'moral', u'parch', u'outback']
[u'central', u'goldfield', u'shire', u'plan', u'rate', u'rise']
[u'central', u'victoria', u'featur', u'herald', u'tour']
[u'child', u'kill', u'kirkuk', u'suicid', u'attack']
[u'children', u'arrest', u'attempt', u'murder']
[u'want', u'mission', u'aust', u'night', u'patrol']
[u'commission', u'find', u'reason', u'beatti']
[u'communiti', u'back', u'children', u'commission', u'plan']
[u'corbi', u'support', u'urg', u'question', u'feder', u'govt']
[u'council', u'back', u'cabl', u'beach', u'residenti', u'plan']
[u'council', u'candid', u'want', u'quick', u'court', u'matter']
[u'councillor', u'littl', u'motorplex', u'plan']
[u'councillor', u'stand', u'albani', u'sculptur']
[u'council', u'sell', u'industri', u'estat', u'land']
[u'council', u'hear', u'concern', u'propos', u'subdivis']
[u'court', u'show', u'video', u'man', u'shoot', u'death']
[u'dept', u'defend', u'environment', u'river', u'flow']
[u'dfat', u'press', u'oversea', u'childcar', u'advic']
[u'disabl', u'scheme', u'oper', u'spotlight']
[u'doctor', u'nurs', u'plan', u'worri']
[u'doyl', u'meet', u'cattlemen', u'alpin', u'graze']
[u'drought', u'forc', u'drop', u'cattl', u'price']
[u'drought', u'hamper', u'duck', u'shoot', u'season']
[u'drought', u'region', u'reassess']
[u'eagl', u'elev', u'rooki', u'tiger', u'clash']
[u'embassi', u'powder', u'like', u'harmless']
[u'embassi', u'staff', u'releas', u'decontamin']
[u'embassi', u'threat', u'infuri', u'corbi', u'lawyer']
[u'esso', u'order', u'injur', u'worker']
[u'exit', u'poll', u'dutch', u'reject', u'treati']
[u'experiment', u'vaccin', u'reduc', u'shingl', u'incid']
[u'compens', u'soon', u'minist']
[u'famili', u'driver', u'manslaught', u'sentenc']
[u'famili', u'claim', u'trick', u'detent']
[u'farmer', u'attempt', u'copyright', u'barramundi']
[u'farmer', u'urg', u'smart', u'hire']
[u'farmer', u'urg', u'invest', u'project']
[u'feasibl', u'studi', u'back', u'communiti', u'bank']
[u'feder', u'help', u'seek', u'shark', u'fish', u'crackdown']
[u'fellow', u'camper', u'miss', u'tourist']
[u'final', u'evid', u'hear', u'siev', u'trial']
[u'financi', u'backer', u'seek', u'iron', u'project']
[u'fin', u'issu', u'illeg', u'smoke', u'crackdown']
[u'fisher', u'fear', u'log', u'harm', u'water', u'catchment']
[u'kill', u'sudanes', u'plane', u'crash']
[u'flammabl', u'substanc', u'steal', u'train']
[u'float', u'prompt', u'speak', u'tattersal', u'accus']
[u'flood', u'damag', u'road', u'receiv', u'fund', u'boost']
[u'season', u'hit', u'earli']
[u'church', u'camp', u'caretak', u'jail', u'abus']
[u'foster', u'review', u'wine', u'busi']
[u'bad', u'hurt', u'head', u'crash']
[u'frogwatch', u'welcom', u'cane', u'toad', u'trap', u'subsidi']
[u'coverag', u'give', u'embassi', u'threat', u'indonesia']
[u'futur', u'recherch', u'govt', u'hand']
[u'gatto', u'act', u'murder', u'intent', u'juri', u'hear']
[u'gillespi', u'wont', u'ash', u'game']
[u'global', u'warm', u'forc', u'rethink', u'japanes', u'dress']
[u'govt', u'appoint', u'land', u'coordin']
[u'govt', u'consid', u'anti', u'cruis', u'ship', u'termin', u'report']
[u'govt', u'urg', u'fund', u'rebuild', u'storm', u'damag']
[u'govt', u'brigalow', u'belt', u'chang']
[u'govt', u'fee', u'angler']
[u'govt', u'push', u'gunn', u'pulp', u'project']
[u'break', u'tie', u'lend', u'leas']
[u'group', u'move', u'closer', u'communiti', u'cinema']
[u'gympi', u'ambul', u'staff', u'number', u'review']
[u'haas', u'support', u'solar', u'citi', u'scheme']
[u'hamil', u'return', u'split', u'round']
[u'health', u'servic', u'form', u'local', u'cancer', u'registri']
[u'hermit', u'end', u'year', u'extinguish']
[u'hick', u'lawyer', u'claim', u'flaw', u'prosecut', u'case']
[u'hospit', u'reconstruct', u'surgeri', u'unit']
[u'howard', u'brief', u'detail', u'embassi', u'threat']
[u'defend', u'land', u'deal']
[u'import', u'squeez', u'fruit', u'grower']
[u'indonesia', u'brace', u'troubl', u'embassi', u'attack']
[u'indonesian', u'embassi', u'threat']
[u'inquiri', u'chief', u'reject', u'win', u'din', u'wit']
[u'iraq', u'bomb', u'kill']
[u'irrig', u'urg', u'water', u'alloc', u'rethink']
[u'israel', u'releas', u'palestinian', u'detaine']
[u'israel', u'free', u'palestinian', u'prison']
[u'jackson', u'juri', u'tell', u'piti', u'influenc', u'verdict']
[u'japanes', u'businessmen', u'urg', u'shun', u'suit']
[u'japan', u'rais', u'beef', u'import', u'tariff']
[u'johnson', u'brace', u'retir', u'cultur', u'shock']
[u'kangaroo', u'embrac', u'dunghil', u'manuka']
[u'compon', u'luca', u'height', u'reactor']
[u'labor', u'slam', u'hypocrit', u'sign', u'flag']
[u'labor', u'unveil', u'plan', u'alcohol', u'restrict']
[u'landhold', u'input', u'bruce', u'highway', u'work']
[u'latrob', u'plan', u'document', u'aim', u'boost', u'popul']
[u'latvia', u'vote', u'ratifi', u'constitut']
[u'lee', u'injuri', u'lovett', u'gain', u'windi', u'hill']
[u'liber', u'blame', u'brack', u'tenix', u'lose']
[u'liber', u'applaud', u'cmcs', u'speaker', u'recommend']
[u'liber', u'democrat', u'defeat', u'doubl', u'demerit']
[u'link', u'confirm', u'miss', u'woman', u'murder']
[u'local', u'govt', u'protest', u'asbesto', u'plan']
[u'london', u'talk', u'hop', u'resolv', u'ship', u'disput']
[u'luca', u'pleas', u'council', u'fund']
[u'lukewarm', u'respons', u'speed', u'reduct', u'propos']
[u'escap', u'manslaught', u'charg', u'drown']
[u'mayor', u'support', u'resourc', u'share']
[u'mccartney', u'pen', u'urban', u'furri', u'tale']
[u'mcgee', u'give', u'warrant', u'issu', u'commiss']
[u'mcgee', u'brother', u'warn', u'need', u'legal']
[u'mcgrath', u'dream', u'perfect', u'dismiss']
[u'meet', u'focus', u'road', u'upgrad']
[u'urg', u'prostat', u'cancer', u'check']
[u'metro', u'region', u'educ', u'dispar', u'spotlight']
[u'miner', u'welcom', u'export', u'infrastructur', u'review']
[u'minist', u'stay', u'silent', u'uranium', u'mine', u'polici']
[u'mix', u'feel', u'air', u'bendigo', u'park']
[u'mix', u'recept', u'wind', u'farm', u'plan', u'south', u'west']
[u'charg', u'lay', u'toowoomba', u'murder']
[u'test', u'avail', u'medicar']
[u'mower', u'man', u'museum', u'rest']
[u'question', u'mcewen', u'independ']
[u'mudge', u'gulgong', u'water', u'fluorid']
[u'nation', u'seek', u'bundaberg', u'health', u'council', u'shake']
[u'natur', u'reserv', u'recognis', u'aborigin', u'place']
[u'newcastl', u'urg', u'recognis', u'steelwork', u'impact']
[u'evid', u'reveal', u'case']
[u'servic', u'benefit', u'famili', u'deaf', u'children']
[u'mine', u'law', u'loom']
[u'nomin', u'seek', u'sport', u'hall', u'fame']
[u'north', u'coast', u'melanoma', u'case', u'rise']
[u'north', u'coast', u'record', u'higher', u'lung', u'cancer', u'rate']
[u'cane', u'grower', u'welcom', u'back', u'energi', u'plant']
[u'polic', u'pleas', u'respons', u'speed', u'limit']
[u'nurs', u'improv', u'skill', u'seek', u'educ']
[u'offici', u'advis', u'australian']
[u'feel', u'south', u'pacif', u'ladi', u'master']
[u'opposit', u'call', u'review', u'juvenil', u'justic']
[u'opposit', u'fear', u'children', u'commission']
[u'opposit', u'parti', u'claim', u'lennon', u'sidelin', u'minist']
[u'opposit', u'want', u'lifesav', u'insur', u'cover']
[u'opposit', u'want', u'sleep', u'judg', u'detail', u'public']
[u'parker', u'remain', u'bronco', u'year']
[u'parti', u'recipi', u'millionth', u'littl', u'penguin']
[u'pastor', u'recount', u'corbi', u'baptism', u'jail']
[u'patient', u'move', u'accommod', u'kyli', u'union']
[u'patterson', u'issu', u'final', u'homeless', u'fund', u'offer']
[u'pirsa', u'probe', u'gulf', u'finfish', u'escap']
[u'plan', u'devis', u'save', u'strand', u'whale']
[u'polic', u'examin', u'indonesian', u'consul', u'secur', u'need']
[u'polic', u'label', u'mayor', u'firebomb', u'attack', u'amateurish']
[u'polic', u'probe', u'gosford', u'stab', u'death']
[u'polic', u'question', u'tobacco', u'crop', u'theft']
[u'polic', u'remain', u'miss', u'rockhampton', u'woman']
[u'polic', u'crack', u'drink', u'driver']
[u'port', u'newcastl', u'get', u'xstrata', u'prais']
[u'power', u'deal', u'pullout', u'prove', u'flaw', u'andrew']
[u'public', u'wyndham', u'hospit']
[u'qanta', u'sack', u'secur', u'manag']
[u'question', u'rais', u'south', u'west', u'health', u'care']
[u'queue', u'manag', u'reduc', u'cost', u'delay']
[u'ralli', u'protest', u'govt', u'brigalow', u'belt', u'decis']
[u'region', u'scheme', u'boost', u'mental', u'health']
[u'regul', u'threaten', u'fee', u'transport']
[u'renmark', u'communiti', u'civic', u'centr', u'detail', u'loom']
[u'rescuer', u'attempt', u'free', u'strand', u'whale']
[u'resid', u'join', u'cane', u'toad', u'action', u'group']
[u'resourc', u'energi', u'stock', u'climb']
[u'ridgeway', u'promis', u'fight', u'steal', u'wag']
[u'rudd', u'urg', u'downer', u'dfat']
[u'sale', u'prove', u'hair', u'astronaut', u'barber']
[u'shoalhaven', u'river', u'fish', u'stock', u'prompt']
[u'short', u'neck', u'fossil', u'prompt', u'sauropod', u'rethink']
[u'skandali', u'look', u'forward', u'home', u'grind', u'advantag']
[u'skin', u'cancer', u'figur', u'unhealthi', u'news', u'north']
[u'socceroo', u'qualifi', u'confirm', u'olymp', u'stadium']
[u'socceroo', u'seek', u'compromis', u'parma', u'stand']
[u'spotlight', u'nativ', u'titl', u'nation', u'confer']
[u'staff', u'charg', u'serv', u'alcohol', u'drink', u'woman']
[u'strand', u'whale', u'free']
[u'strategi', u'combat', u'kidney', u'diseas', u'show', u'result']
[u'strike', u'alcan', u'worker', u'demand', u'bottl', u'water']
[u'stronger', u'export', u'narrow', u'trade']
[u'student', u'workshop', u'promot', u'vegi']
[u'submiss', u'highlight', u'region', u'dental', u'woe']
[u'suicid', u'bomb', u'attack', u'kill', u'iraq']
[u'supermarket', u'recal', u'cream', u'product']
[u'suppli', u'fear', u'boost', u'price']
[u'surgeon', u'separ', u'leg', u'littl', u'mermaid']
[u'sydney', u'pair', u'safe', u'kimberley']
[u'tasmania', u'sign', u'water', u'deal']
[u'tattersal', u'detail', u'float', u'plan']
[u'terror', u'happen', u'australia', u'indonesian']
[u'toll', u'mount', u'haiti', u'unrest']
[u'owner', u'plot', u'melbourn']
[u'torrenti', u'rain', u'lash', u'central', u'china']
[u'trio', u'face', u'court', u'accus', u'properti', u'theft']
[u'trojan', u'hold', u'user', u'ransom']
[u'truck', u'driver', u'remain', u'hospit', u'collis']
[u'truss', u'back', u'anti', u'whale', u'petit']
[u'tunnel', u'accid', u'stop', u'traffic']
[u'tuqiri', u'face', u'sanzar', u'judiciari']
[u'union', u'flag', u'legal', u'action', u'disput']
[u'union', u'confid', u'alcan', u'drink', u'water', u'safe']
[u'union', u'consult', u'brigalow', u'decis', u'minist']
[u'union', u'worri', u'ship', u'crew', u'safeti']
[u'warehous', u'disput', u'sign', u'thing', u'come', u'carr']
[u'whale', u'rescu', u'mission']
[u'worker', u'vote', u'chang']
[u'world', u'oldest', u'profess', u'categori', u'defin']
[u'lead', u'polic', u'chase']
[u'abbott', u'launch', u'rural', u'health', u'campus']
[u'aborigin', u'communiti', u'declar', u'area']
[u'opposit', u'poor', u'deal']
[u'actor', u'denis', u'richard', u'give', u'birth']
[u'adaminabi', u'enjoy', u'clean', u'drink', u'water']
[u'aircraft', u'nois', u'hit', u'children', u'read', u'memori']
[u'airport', u'oper', u'talk', u'secur']
[u'anderson', u'remind', u'airport']
[u'anglican', u'paedophil', u'ring', u'claim', u'surfac']
[u'suspici', u'packag']
[u'antarct', u'worker', u'iceberg']
[u'armi', u'base', u'receiv', u'upgrad']
[u'atkinson', u'ralli', u'turkey']
[u'atsic', u'leader', u'downplay', u'wan', u'reconcili', u'week']
[u'audit', u'find', u'drought', u'confus']
[u'aust', u'popul', u'top']
[u'australia', u'indonesia', u'relat', u'remain', u'strong', u'howard']
[u'australian', u'build', u'chopper', u'fire', u'test', u'missil']
[u'australian', u'cleric', u'call', u'withdraw', u'troop']
[u'australian', u'dead', u'maldiv']
[u'australian', u'shadow', u'ohio', u'lead']
[u'austrian', u'polic', u'dead', u'newborn', u'babi']
[u'aust', u'warn', u'jakarta', u'hotel', u'bomb']
[u'author', u'mull', u'charg', u'africa', u'deputi']
[u'author', u'criticis', u'let', u'ship', u'leav', u'port']
[u'autopsi', u'find', u'strand', u'whale', u'sick']
[u'award', u'recognis', u'braveri', u'excel', u'feder']
[u'barrel', u'roll', u'hughenden']
[u'beazley', u'stand', u'firm', u'cut']
[u'beckham', u'back', u'liverpool', u'champion', u'leagu']
[u'bendigo', u'compani', u'help', u'rebuild', u'tsunami', u'lanka']
[u'bendoc', u'polic', u'station', u'open', u'door']
[u'take', u'hold']
[u'prize', u'grab', u'golden', u'gift']
[u'bowel', u'cancer', u'campaign']
[u'hold', u'day', u'cream', u'theft']
[u'breaker', u'complac', u'north']
[u'british', u'memori', u'plan', u'bali', u'bomb', u'victim']
[u'brown', u'doctor', u'ponder', u'stem', u'cell', u'experi']
[u'build', u'societi', u'fear', u'custom', u'poach', u'asic']
[u'burnett', u'shire', u'landfil', u'recycl', u'plant']
[u'bushrang', u'sign', u'harvey']
[u'bushwalk', u'urg', u'prepar', u'kimberley']
[u'crash', u'victim', u'suffer', u'heart', u'attack']
[u'cat', u'hope', u'struggl', u'horror', u'patch']
[u'childhood', u'behaviour', u'link', u'adult', u'drive', u'habit']
[u'childhood', u'leukaemia', u'link', u'power', u'line']
[u'children', u'question', u'alleg', u'attempt', u'murder']
[u'give', u'thumb', u'student', u'voucher', u'plan']
[u'concern', u'rais', u'creek', u'contamin']
[u'reef', u'slick', u'penalti']
[u'corbi', u'legal', u'spokesman', u'meet']
[u'cost', u'obes', u'exceed', u'smoke', u'drink']
[u'council', u'seek', u'baxter', u'look', u'oval']
[u'court', u'send', u'wielangta', u'log', u'matter', u'trial']
[u'croc', u'fail', u'deter', u'rower']
[u'decis', u'trial', u'week']
[u'defeat', u'school', u'caus', u'confus']
[u'doubt', u'rais', u'steal', u'wag', u'panel']
[u'drought', u'decis', u'loom', u'western', u'victoria']
[u'drought', u'resid', u'pray', u'rain']
[u'drought', u'lower', u'farmer', u'confid', u'survey']
[u'drought', u'take', u'toll', u'south', u'coast', u'dairi', u'farmer']
[u'drunken', u'health', u'issu', u'say', u'burk']
[u'rail', u'worker']
[u'emerg', u'servic', u'chief', u'review', u'prom', u'bushfir']
[u'excess', u'weight', u'increas', u'bowel', u'cancer', u'risk']
[u'expert', u'watch', u'superbug']
[u'extinct', u'cave', u'bear', u'sequenc']
[u'farmer', u'drought', u'fight']
[u'father', u'call', u'accus', u'teen', u'murder', u'name']
[u'fear', u'bird', u'draw', u'pigeon', u'cull', u'plan']
[u'feder', u'face', u'nadal', u'dream', u'final']
[u'govt', u'lobbi', u'power', u'regul', u'port']
[u'fisher', u'barra', u'copyright', u'plan']
[u'fisher', u'meet', u'minist', u'licenc', u'buyback', u'concern']
[u'fish', u'club', u'reel', u'licenc', u'rise']
[u'cathol', u'brother', u'indec', u'assault']
[u'furnitur', u'school', u'go', u'administr']
[u'gang', u'squad', u'assist', u'alleg', u'biki', u'violenc']
[u'govt', u'accus', u'protect', u'candid', u'papunya']
[u'govt', u'admit', u'allow', u'crop', u'despit', u'weed']
[u'govt', u'announc', u'plan', u'cottag', u'redevelop']
[u'govt', u'reject', u'health', u'servic', u'fund', u'claim']
[u'greek', u'sprinter', u'testimoni', u'postpon']
[u'har', u'race', u'restructur', u'track', u'second']
[u'health', u'deal', u'coag', u'meet']
[u'henri', u'go', u'barca', u'highburi', u'boss']
[u'high', u'court', u'hear', u'gold', u'nativ', u'titl', u'challeng']
[u'highway', u'speed', u'limit', u'wont', u'increas']
[u'hmas', u'melbourn', u'dock', u'namesak', u'citi']
[u'hous', u'price', u'growth', u'year']
[u'hous', u'target', u'drive', u'shoot']
[u'hugh', u'name', u'nation', u'selector']
[u'illawarra', u'melbourn', u'flight']
[u'immigr', u'dept', u'warn', u'australian']
[u'indonesian', u'embassi', u'get', u'clear']
[u'indonesian', u'embassi', u'open', u'uncertain']
[u'indonesian', u'polic', u'charg', u'sulawesi', u'bomb']
[u'chang', u'wont', u'help', u'famili', u'confer', u'hear']
[u'impass', u'remain', u'cooper', u'coag']
[u'jackson', u'accus', u'famili', u'case', u'base', u'lie', u'defenc']
[u'jackson', u'trial', u'reach', u'climax']
[u'jail', u'warden', u'suspect', u'sulawesi', u'bomb']
[u'jetstar', u'cairn', u'base']
[u'juri', u'hear', u'final', u'argument', u'siev', u'trial']
[u'kazakh', u'cosmodrom', u'mark', u'birthday']
[u'kidney', u'patient', u'grate', u'help']
[u'kookaburra', u'face', u'south', u'korea', u'final']
[u'labrador', u'prepar', u'experi', u'lion']
[u'council', u'target', u'insur', u'compani', u'profit']
[u'lethal', u'admit', u'lion', u'season', u'knife', u'edg']
[u'local', u'indonesian', u'communiti', u'feel', u'corbi', u'verdict']
[u'lockhart', u'crash', u'investig', u'forc', u'wit']
[u'famili', u'face', u'deport', u'threat']
[u'longreach', u'rat', u'water', u'prioriti']
[u'accus', u'child', u'kill', u'court']
[u'charg', u'wheelchair', u'theft']
[u'give', u'life', u'sentenc', u'tripl', u'murder']
[u'jail', u'internet', u'child', u'sting']
[u'manu', u'arrest', u'charg']
[u'marbl', u'tourism', u'issu', u'heat']
[u'market', u'mix', u'despit', u'takeov']
[u'market', u'predict', u'takeov', u'succeed']
[u'mcgee', u'roadblock', u'evid', u'surpris', u'crash']
[u'mcgee', u'evid', u'royal', u'commiss']
[u'medic', u'investig', u'assist', u'morri', u'inquiri']
[u'meet', u'air', u'pine', u'plantat', u'cancer', u'link', u'fear']
[u'minist', u'defend', u'pulp', u'prepar', u'spend']
[u'minist', u'talk', u'recycl', u'water', u'scheme', u'benefit']
[u'mint', u'coffe', u'smell', u'like', u'safe', u'drive']
[u'mother', u'charg', u'babi', u'death']
[u'highlight', u'alpin', u'park', u'feral', u'anim', u'impact']
[u'mayor', u'join', u'opposit', u'asbesto', u'plan']
[u'nation', u'want', u'school', u'classif', u'issu']
[u'nation', u'want', u'wind', u'farm', u'rat', u'rethink']
[u'program', u'help', u'conserv', u'farm', u'water']
[u'wast', u'contractor', u'wollondilli', u'region']
[u'nomin', u'seek', u'environ', u'award']
[u'rush', u'debat', u'labor', u'say']
[u'sign', u'miss', u'sculptur']
[u'opposit', u'want', u'carr', u'cooper', u'agenda']
[u'govt', u'defend', u'anti', u'social', u'behaviour', u'polici']
[u'maori', u'hold', u'narrow', u'fiji']
[u'offici', u'hope', u'shed', u'light', u'whale', u'strand']
[u'plantagenet', u'shire', u'council', u'offic', u'face']
[u'oliv', u'process', u'plant', u'run']
[u'opposit', u'voic', u'concern', u'privat', u'prison']
[u'orang', u'water', u'suppli', u'upgrad']
[u'park', u'servic', u'monitor', u'croc', u'sight']
[u'pie', u'season', u'track']
[u'piper', u'contract', u'go', u'smoke']
[u'criticis', u'beazley', u'stand', u'cut']
[u'polic', u'free', u'slave', u'boot']
[u'polic', u'interview', u'human', u'remain']
[u'polic', u'look', u'forward', u'nightclub', u'curfew']
[u'polic', u'reject', u'suggest', u'shoot', u'link', u'biki']
[u'polic', u'launch', u'appeal', u'vampir', u'murder']
[u'polic', u'warn', u'steal', u'materi', u'danger']
[u'premier', u'thwart', u'agre', u'land', u'clear']
[u'prepar', u'need', u'truck', u'port']
[u'pressur', u'affect', u'sydney', u'tahiti']
[u'prosecut', u'get', u'time', u'prepar', u'bali']
[u'public', u'hous', u'wait', u'list', u'blow', u'wide']
[u'public', u'urg', u'whoop', u'cough', u'vaccin']
[u'qanta', u'sack', u'second', u'baggag', u'handler']
[u'record', u'sale', u'continu']
[u'refineri', u'stockpil', u'news', u'push', u'price']
[u'rescu', u'chopper', u'sale']
[u'resid', u'tourism', u'campaign']
[u'resin', u'price', u'rise', u'juic', u'drinker']
[u'ricketson', u'hang', u'boot']
[u'roar', u'hop', u'sunshin', u'state', u'lure', u'striker']
[u'robinho', u'spotlight', u'world']
[u'govt', u'accus', u'inadequ', u'drought', u'respons']
[u'sailor', u'confirm', u'sydney']
[u'school', u'tell', u'stay', u'away', u'feder', u'flagpol']
[u'schu', u'face', u'life', u'indian', u'guru']
[u'eagl', u'answer', u'critic']
[u'servic', u'sector', u'weak', u'consum', u'spend']
[u'seven', u'dead', u'boat', u'capsiz', u'western', u'india']
[u'seven', u'year', u'kill', u'babi', u'polic']
[u'sit', u'internet', u'domain']
[u'shark', u'breed', u'scheme', u'artifici', u'uterus']
[u'shark', u'fish', u'see', u'posit']
[u'sheedi', u'back', u'scrap', u'preliminari']
[u'shiit', u'cleric', u'kill', u'iraq']
[u'shot', u'fire', u'funer', u'process']
[u'singer', u'littl', u'compos', u'sculthorp', u'honour']
[u'turn', u'corbi', u'ralli']
[u'slurri', u'pipelin', u'face', u'approv', u'hurdl']
[u'stab', u'prompt', u'review', u'hospit', u'patient', u'out']
[u'state', u'territori', u'leader', u'turn', u'attent', u'health']
[u'strike', u'alcan', u'worker']
[u'suicid', u'bomb', u'kill', u'iraq']
[u'suspici', u'packag', u'address', u'downer']
[u'suspici', u'packag', u'parliament', u'hous']
[u'suspici', u'packag', u'harmless']
[u'swift', u'thunderbird', u'crush', u'win']
[u'sydney', u'airport', u'demand', u'cooper', u'approach']
[u'sydney', u'demolish', u'pngs', u'sobou']
[u'team', u'mat', u'honour', u'depart', u'grey']
[u'telstra', u'seek', u'altern', u'phone', u'tower', u'site']
[u'thurston', u'beat', u'cowboy', u'cronulla', u'clash']
[u'tower', u'bridg', u'get', u'stick', u'follow', u'mishap']
[u'townsvill', u'play', u'role', u'defenc', u'exercis']
[u'traffic', u'flow', u'truck', u'crash', u'delay']
[u'trial', u'accus', u'australian', u'embassi', u'bomber']
[u'troop', u'prepar', u'central', u'exercis']
[u'tuqiri', u'suspend', u'samoa', u'test']
[u'turf', u'club', u'honour', u'race', u'name']
[u'northern', u'crash']
[u'union', u'flag', u'alcan', u'safeti', u'concern']
[u'union', u'question', u'polli', u'rise']
[u'union', u'fear', u'chang']
[u'defend', u'cheney', u'comment', u'north', u'korea']
[u'judg', u'order', u'releas', u'ghraib', u'abus', u'video']
[u'warship', u'dock', u'sydney']
[u'valencia', u'unveil', u'kluivert']
[u'nistelrooy', u'commit', u'unit']
[u'wallac', u'play', u'richo', u'injuri', u'fear']
[u'water', u'author', u'angri', u'infrastructur', u'subsidi']
[u'water', u'author', u'consid', u'ceduna', u'desalin']
[u'water', u'error', u'prompt', u'refund']
[u'whyalla', u'teen', u'accus', u'rap', u'girl']
[u'wigan', u'snare', u'tiger', u'richard']
[u'william', u'tri', u'contact', u'sack', u'detect', u'court']
[u'windi', u'wont', u'settl', u'draw', u'pakistan']
[u'withdraw', u'need', u'wood', u'releas']
[u'woman', u'arrest', u'fals', u'statement', u'claim']
[u'woman', u'jail', u'boyfriend', u'stab', u'death']
[u'woodward', u'publish', u'book', u'deep', u'throat']
[u'worksaf', u'investig', u'fatal', u'construct', u'accid']
[u'yudhoyono', u'optimist', u'aust', u'tie']
[u'actew', u'fund', u'arrang', u'stay', u'say', u'treasur']
[u'agent', u'vow', u'clear', u'cole']
[u'black', u'dump', u'rokocoko', u'mehrten']
[u'question', u'health', u'deal']
[u'apec', u'agre', u'trade', u'tariff', u'formula']
[u'architect', u'blast', u'plan', u'council']
[u'asia', u'cours', u'world']
[u'asylum', u'seek', u'chines', u'diplomat', u'make', u'kidnap', u'claim']
[u'australian', u'catch', u'bolivian', u'unrest']
[u'beatti', u'stand', u'foster', u'law']
[u'bell', u'hit', u'maiden', u'centuri', u'england', u'declar']
[u'blaze', u'hamper', u'rescu', u'attempt', u'fatal', u'road', u'crash']
[u'britain', u'propos', u'write', u'intern', u'debt']
[u'busi', u'group', u'urg', u'visa', u'chang', u'boost', u'work']
[u'cabin', u'cruiser', u'sink', u'rottnest', u'island']
[u'call', u'nation', u'coordin', u'airport', u'secur']
[u'call', u'probe', u'alleg', u'church', u'paedophil', u'ring']
[u'canberra', u'continu', u'push', u'auslink', u'cash']
[u'china', u'keep', u'watch', u'tiananmen', u'anniversari']
[u'chines', u'diplomat', u'fear', u'kidnap']
[u'promis', u'school', u'swim', u'program']
[u'collymor', u'peg', u'pakistan', u'youni']
[u'cowboy', u'shoot', u'past', u'shark']
[u'cricket', u'leav', u'ash', u'mission']
[u'crow', u'demolish', u'bomber']
[u'dallaglio', u'injuri', u'mar', u'lion']
[u'david', u'peachey', u'william']
[u'dog', u'hold', u'draw', u'sonni', u'injur']
[u'dragon', u'warrior', u'wollongong']
[u'eagl', u'tiger', u'thriller']
[u'eagl', u'wari', u'wound', u'tiger']
[u'hail', u'histor', u'wielangta', u'log']
[u'fals', u'hijack', u'alarm', u'caus', u'virgin', u'divers']
[u'fatal', u'crash', u'follow', u'abort', u'polic', u'check']
[u'foskey', u'consid', u'rise', u'option']
[u'fred', u'pass', u'chairman', u'throw', u'ring']
[u'readi', u'patel', u'beatti', u'tell', u'polic']
[u'gibernau', u'signal', u'return', u'form', u'itali']
[u'girl', u'charg', u'attack', u'year']
[u'govt', u'delay', u'solon', u'return', u'lawyer']
[u'govt', u'grant', u'save', u'arena']
[u'grand', u'slam', u'event', u'consid', u'sunday', u'start']
[u'harmison', u'trescothick', u'lash', u'bangladesh']
[u'health', u'work', u'group', u'wast', u'time', u'say']
[u'infrastructur', u'spend', u'inadequ', u'grow']
[u'inkster', u'lead', u'sorenstam', u'lurk', u'jersey']
[u'jackson', u'juri', u'begin', u'consid', u'verdict']
[u'jackson', u'juri', u'deliber', u'resum', u'monday']
[u'judg', u'destroy', u'mabo', u'opportun', u'pearson']
[u'juri', u'continu', u'jackson', u'deliber']
[u'kabui', u'win', u'bougainvill', u'elect']
[u'labor', u'turn', u'negat', u'say', u'analyst']
[u'lib', u'plenti', u'encourag', u'women']
[u'lion', u'post', u'vital', u'docker']
[u'loeb', u'take', u'command', u'lead', u'turkey']
[u'chlamydia', u'test', u'hide', u'infect', u'rate', u'studi']
[u'charg', u'bruce', u'rock', u'stab']
[u'charg', u'mccartney', u'murder']
[u'action', u'need', u'stop', u'superbug', u'expert']
[u'mourner', u'crowd', u'funer', u'anti', u'syrian', u'journalist']
[u'nadal', u'conquer', u'feder']
[u'nadal', u'conquer', u'feder', u'reach', u'french', u'final']
[u'nasa', u'launch', u'mar', u'phoenix']
[u'navratilova', u'beat', u'mix', u'doubl', u'final']
[u'nepales', u'coupl', u'everest']
[u'law', u'protect', u'indigen', u'children']
[u'munch', u'germani']
[u'nurs', u'reject', u'molloy', u'birth', u'centr', u'offer']
[u'ohern', u'memori']
[u'opposit', u'fear', u'sydney', u'water', u'divid']
[u'opposit', u'label', u'health', u'work', u'group', u'govt']
[u'opposit', u'question', u'tullamarin', u'polic', u'number']
[u'oslo', u'polic', u'fifth', u'arrest', u'scream', u'theft']
[u'palestinian', u'leader', u'delay', u'elect']
[u'palestinian', u'polic', u'kill', u'reveng', u'oper']
[u'pentagon', u'intellig', u'share', u'alli']
[u'planet', u'destruct', u'show', u'atlas']
[u'pledg', u'port', u'arthur', u'video', u'satisfi', u'lib']
[u'polic', u'defend', u'decis', u'lock', u'cream', u'thief']
[u'polic', u'investig', u'brisban', u'shoot']
[u'polic', u'probe', u'report', u'drug', u'luggag']
[u'polic', u'speed', u'figur', u'improv']
[u'port', u'river', u'dolphin', u'sanctuari', u'world', u'leader']
[u'protest', u'harsher', u'penalti', u'drug']
[u'protest', u'demand', u'death', u'corbi']
[u'qanta', u'call', u'airport', u'polic', u'station']
[u'rann', u'welcom', u'bhps', u'takeov']
[u'rat', u'clinch', u'maiden', u'shield', u'victori']
[u'famili', u'call', u'migrat', u'review']
[u'road', u'train', u'blaze', u'forc', u'highway', u'closur']
[u'scientist', u'recognis', u'breast', u'cancer', u'work']
[u'scientist', u'measur', u'energi', u'laughter']
[u'senior', u'stumbl', u'tadini', u'take', u'wale', u'lead']
[u'sheedi', u'confid', u'bomber', u'match', u'crow']
[u'shopper', u'ask', u'darwin', u'mall', u'revamp']
[u'swan', u'hold', u'blue']
[u'syria', u'believ', u'test', u'missil']
[u'test', u'tube', u'shark', u'effort', u'misguid', u'green']
[u'thatcher', u'shoe', u'danc', u'ebay']
[u'tiger', u'overlook', u'alderman', u'coach']
[u'townsvill', u'prepar', u'aust', u'militari', u'exercis']
[u'tszyu', u'show', u'nake', u'ambit', u'weigh']
[u'arrest', u'connect', u'half', u'blood', u'princ']
[u'union', u'fear', u'filipino', u'sailor', u'job']
[u'union', u'seek', u'airport', u'secur', u'inquiri']
[u'china', u'eas', u'trade', u'tension']
[u'church', u'unveil', u'abus', u'settlement']
[u'militari', u'confirm', u'guantanamo', u'koran', u'abus']
[u'hypocrit', u'pursu', u'nuclear', u'plan']
[u'soldier', u'kill', u'afghan', u'bomb', u'blast']
[u'vanston', u'confirm', u'male', u'offic', u'watch', u'femal']
[u'prepar', u'cane', u'toad']
[u'warn', u'bore', u'water', u'level']
[u'weak', u'figur', u'high', u'price', u'stock']
[u'wind', u'road', u'lead', u'salvat', u'puerta']
[u'winton', u'join', u'cane', u'toad', u'campaign']
[u'woman', u'die', u'crash', u'northern', u'tasmanian']
[u'woman', u'kill', u'freeway', u'accid']
[u'wool', u'price', u'continu', u'downward', u'trend']
[u'zimbabw', u'criticis', u'mass', u'urban', u'evict']
[u'jazeera', u'deni', u'broadcast', u'behead']
[u'annan', u'reappoint', u'envoy', u'east', u'timor']
[u'antiqu', u'collector', u'weekend']
[u'origin', u'share', u'banksia', u'award']
[u'approv', u'seek', u'anim', u'human', u'stem', u'cell']
[u'architect', u'prais', u'school', u'energi', u'effici', u'design']
[u'argentina', u'wait', u'world', u'berth']
[u'hold', u'littl', u'hope', u'court', u'challeng']
[u'banger', u'avoid', u'defeat']
[u'bjorkman', u'mirnyi', u'beat', u'bryan', u'twin', u'french']
[u'brian', u'smith', u'john', u'lang']
[u'bulldog', u'bite', u'hawk']
[u'chirac', u'schroeder', u'want', u'constitut', u'save']
[u'compani', u'donat', u'moreton', u'rescu']
[u'cours', u'record', u'give', u'davi', u'shoot']
[u'court', u'appear', u'mccartney', u'accus']
[u'cross', u'citi', u'tunnel', u'open', u'delay']
[u'darren', u'lockyer', u'wayn', u'bennett', u'michael', u'hagan']
[u'democrat', u'founder', u'intens', u'care']
[u'demon', u'cruis', u'victori', u'roo']
[u'detent', u'rift', u'split', u'liber']
[u'digger', u'mark', u'borneo', u'anniversari']
[u'drug', u'weapon', u'cach', u'canberra', u'home']
[u'easterbi', u'replac', u'injur', u'lion', u'dallaglio']
[u'eel', u'surg', u'fourth', u'spot']
[u'elder', u'woman', u'attack', u'rob']
[u'aussi', u'memori', u'hunt']
[u'float', u'fuel', u'tattersal', u'expans', u'plan']
[u'kill', u'aceh', u'clash']
[u'franc', u'itali', u'tunnel', u'close', u'fatal']
[u'blast', u'damag', u'hallam', u'hous']
[u'georgiou', u'trade', u'blow', u'vanston']
[u'govern', u'quiet', u'solon', u'support', u'lawyer']
[u'govern', u'urg', u'halt', u'deport', u'china']
[u'govt', u'consid', u'tough', u'propos', u'driver']
[u'green', u'want', u'glori']
[u'green', u'seek', u'nation', u'plastic']
[u'hama', u'warn', u'vote', u'delay', u'troubl']
[u'hatton', u'take', u'tszyus', u'titl']
[u'henin', u'hardenn', u'conquer', u'imposs', u'odd']
[u'henin', u'hardenn', u'snub', u'eastbourn', u'save', u'wimbledon']
[u'henin', u'hardenn', u'win', u'french', u'open']
[u'henin', u'hardenn', u'win', u'french', u'open', u'final']
[u'hewitt', u'return', u'action', u'queen']
[u'humpback', u'whale', u'spot', u'migrat', u'north']
[u'indigen', u'affair', u'ministri', u'answer', u'pearson']
[u'indigen', u'child', u'foster', u'care', u'plan', u'nonsens']
[u'injur', u'gregan', u'miss', u'samoa', u'clash']
[u'iraqi', u'troop', u'refus', u'train']
[u'jetstar', u'defend', u'disabl', u'passeng', u'polici']
[u'trade', u'chines', u'diplomat', u'case', u'say', u'labor']
[u'knight', u'outclass', u'joey', u'stand', u'tall']
[u'labor', u'offer', u'bait', u'fisher']
[u'lara', u'centuri', u'lift', u'windi', u'kingston']
[u'leav', u'senat', u'committe', u'intact', u'fraser']
[u'loeb', u'close', u'fourth', u'ralli']
[u'loeb', u'track', u'turkey', u'triumph']
[u'charg', u'canberra', u'weapon', u'drug', u'haul']
[u'marin', u'institut', u'miss', u'point', u'green', u'group']
[u'martin', u'defend', u'order', u'plan']
[u'matt', u'king', u'craig', u'bellami', u'sheen']
[u'milit', u'link', u'zarqawi', u'arrest']
[u'mottram', u'win', u'sevill']
[u'batchelor', u'institut', u'head', u'admit', u'moral', u'problem']
[u'nswfa', u'urg', u'speedi', u'drought', u'assess']
[u'nuclear', u'power', u'threat', u'economi', u'beatti']
[u'oriol', u'firebird']
[u'patel', u'hunt', u'need', u'strong', u'evid', u'polic']
[u'plastic']
[u'polic', u'probe', u'austrian', u'babi', u'death']
[u'polic', u'pursuit', u'end', u'fatal', u'crash']
[u'polic', u'test', u'passeng', u'surpris', u'drug']
[u'pope', u'appeal', u'italian', u'hostag', u'releas']
[u'power', u'rebound', u'defeat', u'saint']
[u'price', u'fire', u'wale', u'content']
[u'meet', u'corbi', u'famili']
[u'reassur', u'corbi']
[u'qlds', u'honorari', u'consul', u'greec', u'die']
[u'railcorp', u'blame', u'contractor', u'secur', u'bungl']
[u'raul', u'quit', u'hint', u'alert', u'liverpool']
[u'rossi', u'steal', u'pole', u'gibernau']
[u'saddam', u'face', u'charg']
[u'politician', u'mental', u'health', u'fund']
[u'second', u'quad', u'caus', u'disciplin', u'doctor']
[u'second', u'round', u'lebanes', u'general', u'poll', u'open']
[u'sheikh', u'meet', u'wood']
[u'solon', u'respons', u'repatri', u'delay', u'vanston']
[u'spaniard', u'ralli', u'negoti', u'plan']
[u'spur', u'suspend', u'arnesen', u'chelsea', u'link']
[u'steve', u'folk']
[u'storm', u'swamp', u'tiger', u'leichardt']
[u'swedish', u'herring', u'museum', u'creat', u'stink']
[u'sydney', u'tunnel', u'builder', u'expect', u'earli', u'complet']
[u'sydney', u'tunnel', u'open', u'delay']
[u'syria', u'maintain', u'right', u'defens', u'capabl']
[u'taiwan', u'success', u'test', u'missil', u'report']
[u'delay', u'cost', u'busi', u'lobbi']
[u'territori', u'indigen', u'get', u'fund', u'boost']
[u'farmhous']
[u'miss', u'farmhous']
[u'toad', u'banana', u'wake']
[u'trade', u'concern', u'intrud', u'chen', u'treatment']
[u'tram', u'disrupt', u'worth', u'wait']
[u'treat', u'chines', u'defector', u'merit']
[u'trent', u'barrett']
[u'troop', u'uncov', u'insurg', u'bunker', u'iraq']
[u'ukrain', u'netherland', u'croatia', u'lead']
[u'urg', u'green', u'plan', u'sprawl', u'citi']
[u'kill', u'polic', u'raid', u'haiti', u'slum']
[u'blame', u'media', u'koran', u'uproar']
[u'vanston', u'warn', u'backbench', u'immigr']
[u'govt', u'criticis', u'crime', u'poll']
[u'victorian', u'win', u'environment', u'award']
[u'score', u'environment', u'award']
[u'woman', u'insist', u'girl', u'witch']
[u'wood', u'aliv', u'sheikh', u'say']
[u'world', u'environ']
[u'zdrilic', u'bag', u'sydney', u'sweep', u'group']
[u'candid', u'contest', u'poll']
[u'abbott', u'deni', u'govt', u'sell', u'medibank']
[u'present', u'hale', u'die', u'age']
[u'ablett', u'recognis', u'footbal', u'genius']
[u'accid', u'galor', u'ogradi', u'dauphin', u'liber']
[u'acut', u'mental', u'health', u'director']
[u'black', u'cap', u'play', u'fiji']
[u'citrus', u'tree', u'remov', u'canker', u'area']
[u'question', u'abbott', u'assur', u'medibank']
[u'analyst', u'ongo', u'properti', u'declin']
[u'anasta', u'tip', u'receiv', u'origin']
[u'land', u'review', u'creat', u'fear', u'tradit']
[u'asbesto', u'foundat', u'accept', u'hardi', u'liabil', u'claus']
[u'asio', u'fundament', u'wrong', u'committe', u'tell']
[u'asio', u'law', u'frighten', u'muslim']
[u'aussi', u'undaunt', u'tough', u'timet']
[u'aust', u'timor', u'odd', u'state', u'talk']
[u'aust', u'mine', u'compani', u'implic', u'congo', u'massacr']
[u'australia', u'prepar', u'pandem']
[u'replac', u'chief']
[u'blast', u'kill', u'nepal']
[u'blaze', u'start', u'conveyor', u'belt']
[u'blue', u'dump', u'kimmorley', u'anasta']
[u'britain', u'deliv', u'fresh', u'blow', u'treati']
[u'bryant', u'win', u'memori', u'green', u'stumbl']
[u'build', u'approv', u'north', u'west']
[u'build', u'permit', u'approv', u'pass', u'mark']
[u'cabinet', u'consid', u'nuclear', u'wast', u'site']
[u'cabinet', u'consid', u'nuclear', u'wast']
[u'go', u'region', u'organ', u'donor']
[u'calm', u'condit', u'assist', u'wave', u'energi', u'plant']
[u'campbel', u'chase', u'vital', u'pacif', u'whale', u'vote']
[u'campfir', u'sit', u'upgrad', u'explod', u'rock']
[u'candid', u'apologis', u'abort', u'comment']
[u'cheap', u'appl', u'import', u'shine', u'local', u'grower']
[u'chen', u'safe', u'return', u'china', u'say']
[u'chen', u'yonglin', u'seek', u'advic', u'asylum', u'request']
[u'china', u'uranium', u'talk', u'progress', u'macfarlan']
[u'chines', u'diplomat', u'fear', u'life']
[u'chines', u'diplomat', u'safe']
[u'chipp', u'leav', u'hospit', u'day']
[u'pledg', u'street']
[u'communiti', u'meet', u'roxbi', u'down', u'owner']
[u'corbi', u'protest', u'defac', u'parliament']
[u'corbi', u'tell', u'support', u'quiet']
[u'corbi', u'warn', u'anti', u'indonesia', u'reaction']
[u'council', u'consid', u'contract', u'lifeguard']
[u'council', u'offer', u'cautious', u'approach', u'anti', u'whale']
[u'council', u'urg', u'remain', u'vigil', u'forc']
[u'council', u'hand', u'road', u'respons']
[u'council', u'meet', u'minist', u'royal', u'road', u'woe']
[u'crazi', u'frog', u'face', u'complaint', u'death', u'threat', u'song']
[u'crocker', u'take', u'ralli', u'championship', u'second', u'round']
[u'crow', u'charg', u'assault']
[u'csiro', u'tip', u'frequent', u'drought']
[u'cut', u'fear', u'oversea', u'doctor', u'vet', u'unit']
[u'deer', u'group', u'reject', u'alpin', u'cull']
[u'develop', u'board', u'back', u'apprentic', u'accredit']
[u'doctor', u'muzzl', u'elect', u'comment']
[u'doctor', u'worri', u'children', u'ward', u'plan']
[u'downer', u'grant', u'defector', u'polit', u'asylum', u'lawyer']
[u'east', u'timor', u'open', u'reserv', u'investor']
[u'ebola', u'marburg', u'vaccin', u'test', u'monkey']
[u'extens', u'drought', u'assist', u'provid', u'relief']
[u'fair', u'trade', u'monitor', u'firework', u'sale']
[u'famili', u'hold', u'vigil', u'chipp']
[u'feder', u'govt', u'seek', u'communiti', u'consult']
[u'fiji', u'armi', u'chief', u'warn', u'coup', u'amnesti']
[u'fiji', u'critic', u'union', u'action', u'uniti']
[u'forc', u'redund', u'plan', u'electrolux', u'plant']
[u'forest', u'industri', u'reject', u'foresti', u'cancer', u'link', u'claim']
[u'news', u'reader', u'die']
[u'foundat', u'teach', u'financi', u'know']
[u'giant', u'anti', u'mural', u'rediscov', u'year']
[u'gold', u'coast', u'host', u'sustain', u'develop', u'confer']
[u'gorg', u'replica', u'near', u'complet']
[u'govt', u'ask', u'start', u'cloud', u'seed']
[u'govt', u'public', u'servic', u'job', u'plan']
[u'grafton', u'hospit', u'revamp', u'plan', u'begin', u'soon']
[u'grant', u'face', u'month', u'stint', u'sidelin']
[u'hardgrav', u'meet', u'wodonga', u'tafe', u'council']
[u'health', u'servic', u'rule', u'comparison', u'sydney']
[u'hezbollah', u'claim', u'victori', u'south', u'lebanon', u'poll']
[u'high', u'school', u'merg']
[u'hobart', u'lift', u'game', u'litter']
[u'hoggard', u'strike', u'england', u'overwhelm', u'bangladesh']
[u'hotel', u'hold', u'trigger', u'polic', u'probe']
[u'hungri', u'bear', u'maul', u'south', u'logan']
[u'cut', u'titl', u'tamworth']
[u'ibrahim', u'lead', u'malaysian', u'opposit', u'coalit']
[u'immigr', u'assess', u'chen', u'refuge', u'claim']
[u'indigen', u'art', u'group', u'get', u'studio', u'fund']
[u'industri', u'affect', u'melbourn', u'train', u'servic']
[u'injuri', u'blow', u'bulldog']
[u'intern', u'court', u'probe', u'alleg', u'darfur']
[u'intern', u'probe', u'open', u'darfur', u'crime']
[u'invermay', u'hous', u'blaze', u'investig']
[u'inzamam', u'ralli', u'pakistan']
[u'iran', u'urg', u'stick', u'nuclear', u'talk', u'deadlin']
[u'jackson', u'hospitalis', u'pain']
[u'jetstar', u'offer', u'wheelchair', u'athlet', u'free', u'flight']
[u'fall', u'year']
[u'jimenez', u'wale', u'woosnam', u'ponder', u'futur']
[u'judd', u'underestim', u'bomber']
[u'junior', u'soccer', u'match', u'cancel', u'violenc']
[u'juri', u'consid', u'verdict', u'siev', u'case']
[u'kimmorley', u'bitter', u'origin', u'sack']
[u'kookaburra', u'laugh']
[u'landmin', u'kill', u'nepales']
[u'liber', u'announc', u'gambier', u'preselect']
[u'loeb', u'win', u'ralli', u'turkey']
[u'london', u'live', u'ticket', u'draw']
[u'arrest', u'perth', u'shoot']
[u'die', u'north', u'hous', u'blaze']
[u'dead', u'attempt', u'murder', u'suicid', u'incid']
[u'releas', u'bail', u'drug', u'charg']
[u'question', u'bushland', u'remain']
[u'mar', u'rover']
[u'martin', u'oppos', u'nuclear', u'dump']
[u'maryborough', u'woman', u'kill', u'rollov']
[u'matthew', u'back', u'ablett', u'hall', u'fame', u'induct']
[u'mauritania', u'blame', u'qaeda', u'alli', u'dead', u'raid']
[u'mayor', u'seek', u'deplet', u'uranium', u'reassur']
[u'mayor', u'stand', u'councillor', u'effort']
[u'mayor', u'beat', u'leagu', u'stadium', u'site']
[u'maywald', u'issu', u'pipelin', u'ultimatum']
[u'mcgee', u'face', u'question', u'action', u'arrest']
[u'mckenzi', u'take', u'charg', u'team']
[u'medic', u'school', u'plan', u'wont', u'solv', u'doctor', u'shortag']
[u'medicar', u'smartcard', u'rais', u'privaci', u'concern']
[u'mental', u'health', u'area', u'offer', u'help', u'emerg', u'dept']
[u'midcoast', u'water', u'announc', u'budget', u'detail']
[u'miner', u'defend', u'assist', u'congo', u'troop']
[u'minist', u'confid', u'flood', u'issu', u'emerg']
[u'minist', u'dismiss', u'medicar', u'smartcard', u'concern']
[u'mirvac', u'boss', u'say', u'outlook', u'posit']
[u'mirvac', u'trade', u'halt', u'amid', u'profit', u'downgrad', u'talk']
[u'miss', u'father', u'southern', u'tasmania']
[u'monaghan', u'sign', u'eagl']
[u'motorcyclist', u'hurt', u'highway', u'crash']
[u'discuss', u'indonesia', u'prison', u'exchang', u'program']
[u'nadal', u'play', u'wimbledon', u'chanc']
[u'nadal', u'take', u'french', u'open', u'debut']
[u'champion', u'hatton', u'will', u'tszyu', u'rematch']
[u'health', u'servic', u'nurs', u'director', u'look', u'futur']
[u'look', u'film', u'game', u'classif']
[u'minist', u'want', u'break', u'public', u'transport']
[u'obey', u'firecrack', u'rule', u'face', u'govt', u'warn']
[u'origin', u'test', u'cheaper', u'solar', u'panel']
[u'overhaul', u'cowra', u'polic', u'station']
[u'petit', u'seek', u'breast', u'screen', u'fund']
[u'picasso', u'exhibit', u'puzzl', u'chines', u'lover']
[u'step', u'tsunami', u'fund', u'rais']
[u'polic', u'continu', u'probe', u'miss', u'explos']
[u'polic', u'hunt', u'servic', u'station', u'bandit']
[u'polic', u'implement', u'breath', u'test', u'power']
[u'polic', u'injur', u'patrol', u'roll']
[u'polic', u'seek', u'suspect', u'driver', u'drag']
[u'polic', u'clarifi', u'sydney', u'shoot', u'detail']
[u'pont', u'play', u'ash', u'pressur']
[u'port', u'arthur', u'declar', u'nation', u'heritag', u'site']
[u'power', u'season', u'track', u'say', u'primus']
[u'premier', u'announc', u'governor']
[u'prison', u'offic', u'mobil', u'number', u'chang', u'sieg']
[u'program', u'focus', u'prevent', u'water', u'wast']
[u'public', u'pulp', u'green', u'guidelin']
[u'public', u'nuisanc', u'tell', u'fine', u'time']
[u'push', u'model', u'friend', u'communiti']
[u'budget', u'contain', u'record', u'spend', u'health']
[u'race', u'clean', u'inquiri', u'find']
[u'rail', u'servic', u'track']
[u'rain', u'forecast', u'good', u'central', u'victoria']
[u'red', u'seek', u'oversea', u'reinforc']
[u'region', u'includ', u'airport', u'drug', u'smuggl']
[u'report', u'question', u'bight', u'trawl', u'fish', u'catch', u'rat']
[u'resid', u'anger', u'respit', u'servic', u'chang']
[u'resourc', u'push', u'market', u'higher']
[u'ricciuto', u'give', u'craig', u'tick', u'approv']
[u'road', u'safeti', u'chief', u'plead', u'care', u'road']
[u'rossi', u'extend', u'lead', u'mugello', u'victori']
[u'ruano', u'pascual', u'suarez', u'seal', u'fourth', u'french', u'crown']
[u'rural', u'counsellor', u'welcom', u'drought', u'announc']
[u'rural', u'group', u'disappoint', u'nation', u'veget']
[u'saddam', u'hussein', u'face', u'charg']
[u'polit', u'corrupt', u'trial']
[u'scooter', u'rider', u'head', u'chariti', u'marathon']
[u'search', u'begin', u'miss', u'father']
[u'search', u'expand', u'miss', u'queanbeyan']
[u'search', u'find', u'miss', u'injur']
[u'search', u'miss', u'tassi']
[u'self', u'harm', u'risk', u'mother', u'charg', u'babi', u'death']
[u'servic', u'condemn', u'attack', u'ambul']
[u'cowboy', u'strong', u'origin', u'chanc', u'murray']
[u'shattock', u'offer', u'match']
[u'shire', u'appoint', u'hamilton', u'librari', u'manag']
[u'manag', u'challeng', u'mooney', u'comment']
[u'signag', u'boost', u'aim', u'stamp', u'lagoon', u'smoke']
[u'socceroo', u'lose', u'club', u'versus', u'countri']
[u'sorenstam', u'sizzl', u'jersey']
[u'spamalot', u'win', u'toni', u'glori']
[u'strong', u'expect', u'futur', u'farmer', u'week']
[u'stuart', u'face', u'fine', u'refere', u'critic']
[u'suspici', u'packag', u'shut', u'mine', u'mail', u'room']
[u'swiss', u'voter', u'right', u'coupl']
[u'syrian', u'polic', u'break', u'kurdish', u'protest']
[u'tender', u'call', u'queanbeyan', u'offic', u'block']
[u'tennix', u'worker', u'shock', u'defenc', u'contract', u'snub']
[u'thousand', u'ralli', u'support', u'maryborough', u'hospit']
[u'toad', u'marri', u'rain']
[u'qaeda', u'suspect', u'hand', u'offici']
[u'travel', u'writer', u'tour', u'break', u'hill']
[u'treasur', u'snub', u'commerc']
[u'truss', u'hear', u'wast', u'dump', u'fear']
[u'uefa', u'seek', u'solut', u'liverpool', u'dilemma']
[u'union', u'want', u'chang', u'prosecut', u'aborigin']
[u'unit', u'agre', u'deal']
[u'use', u'rain', u'forecast']
[u'run', u'archipelago', u'secret', u'prison', u'amnesti']
[u'senat', u'urg', u'guantanamo', u'shutdown']
[u'vaughan', u'want', u'ash', u'boost', u'dayer']
[u'volunt', u'monitor', u'vulner', u'grey', u'head', u'fli']
[u'volunt', u'seek', u'medic', u'research', u'institut']
[u'waugh', u'rule', u'samoa', u'test']
[u'chancellor', u'appoint', u'governor']
[u'urg', u'reject', u'court', u'challeng', u'plan']
[u'weather', u'factor', u'farm', u'success', u'abar']
[u'webb', u'start', u'maroon', u'origin']
[u'worker', u'readi', u'loss']
[u'woman', u'face', u'court', u'robberi']
[u'workplac', u'urg', u'join', u'fight', u'domest']
[u'wudinna', u'resid', u'seek', u'releas', u'hospit', u'review']
[u'boost', u'minimum', u'wage']
[u'abar', u'slash', u'grain', u'harvest', u'forecast']
[u'ablett', u'miss', u'hall', u'fame', u'ceremoni']
[u'adelaid', u'temperatur', u'soar', u'close', u'record']
[u'probe', u'latest', u'indonesian', u'embassi', u'packag', u'scare']
[u'airport', u'manag', u'play', u'region', u'secur']
[u'airport', u'secur', u'increas']
[u'push', u'bigger', u'pool', u'specialist']
[u'amnesti', u'call', u'asio', u'detain', u'power']
[u'anderson', u'call', u'deal', u'destini', u'queen']
[u'elder', u'tell', u'rann', u'poor', u'condit']
[u'aussi', u'dollar', u'pay', u'jakarta', u'embassi', u'blast']
[u'aussi', u'robert', u'fourth', u'franc']
[u'aussi', u'send', u'slim', u'line', u'track', u'field', u'team']
[u'australian', u'shoot', u'iraq', u'claim', u'help', u'plea', u'ignor']
[u'aust', u'bolster', u'defenc', u'link', u'india']
[u'aust', u'warn', u'product', u'drop']
[u'aust', u'win', u'solomon', u'whale', u'vote']
[u'barra', u'pros', u'fight', u'alp', u'licenc', u'plan']
[u'beazley', u'refus', u'play', u'hand']
[u'beazley', u'stanc', u'hurt', u'labor', u'costello']
[u'berri', u'juic', u'import', u'hit', u'local', u'grower', u'broker']
[u'blackal', u'prais', u'age', u'care', u'facil', u'effort']
[u'blair', u'washington', u'talk', u'bush']
[u'boe', u'beat', u'end', u'raaf', u'base']
[u'bolivian', u'presid', u'resign']
[u'bolivian', u'protest', u'chase', u'presid', u'palac']
[u'boss', u'get', u'suspend', u'jail', u'term', u'indec', u'deal']
[u'die', u'highway', u'crash']
[u'budget', u'expect', u'help', u'coominya', u'water']
[u'busselton', u'photo', u'anti', u'whale', u'fight']
[u'servic', u'link', u'south', u'burnett', u'gympi']
[u'cabinet', u'meet', u'discuss', u'possibl', u'nuclear', u'dump']
[u'chrome', u'safe', u'hous', u'continu']
[u'open', u'mind', u'south', u'east', u'transport', u'plan']
[u'cane', u'harvest', u'introduc', u'fuel', u'surcharg']
[u'carr', u'promis', u'coonambl', u'victim', u'donat']
[u'carr', u'urg', u'campaign', u'unfair', u'fund']
[u'chariti', u'flight', u'help', u'sick', u'child']
[u'chen', u'appeal', u'direct']
[u'chifley', u'appoint', u'femal', u'captain']
[u'chines', u'defector', u'take', u'case', u'downer']
[u'clone', u'human', u'imposs', u'decad']
[u'electr', u'plan', u'danger', u'experi']
[u'promis', u'lift', u'land', u'clear', u'moratorium']
[u'club', u'offici', u'spectat', u'face', u'disciplinari']
[u'coastal', u'soak', u'record', u'breaker']
[u'coast', u'politician', u'keen', u'budget', u'infrastructur']
[u'commission', u'examin', u'mcgee', u'crash', u'site']
[u'communic', u'plan', u'trigger', u'polic', u'fear']
[u'communiti', u'ralli', u'help', u'victim']
[u'communiti', u'urg', u'pool', u'fund']
[u'corbi', u'confid', u'appeal', u'chanc']
[u'cost', u'shift', u'anger', u'maryborough', u'council']
[u'council', u'oppos', u'river', u'water', u'storag', u'plan']
[u'council', u'seek', u'rethink', u'suspend', u'grain', u'branch']
[u'council', u'renam', u'coff', u'beach']
[u'council', u'want', u'river', u'clean', u'prevent', u'flood']
[u'court', u'appear', u'drug', u'bust', u'accus']
[u'court', u'dismiss', u'charg']
[u'court', u'martial', u'koran', u'abus', u'unlik', u'general']
[u'crop', u'forecast', u'news']
[u'crow', u'charg', u'hotel', u'assault']
[u'cruelti', u'case', u'spark', u'boost', u'winter', u'food']
[u'dampier', u'firework', u'spark', u'polic', u'hunt']
[u'dept', u'justic', u'ask', u'mediat', u'moyn', u'council']
[u'doctor', u'recognis', u'rais', u'rural', u'health', u'issu']
[u'dolphin', u'mum', u'teach', u'daughter', u'tool', u'trade']
[u'downer', u'tight', u'lip', u'chen', u'case']
[u'proceed', u'charg']
[u'drown', u'inquest', u'tell', u'teen', u'refus', u'polic', u'help']
[u'educ', u'campaign', u'target', u'cane', u'toad', u'spread']
[u'elvi', u'rama', u'museum', u'cast', u'imperson']
[u'chick', u'cruelti', u'earn', u'fine']
[u'ship', u'worker', u'say', u'work', u'promis', u'break']
[u'farmer', u'reconsid', u'drought']
[u'farmer', u'fear', u'disastr', u'yield', u'predict']
[u'farmer', u'hope', u'despit', u'dire', u'abar', u'predict']
[u'farmer', u'tell', u'nativ', u'flower', u'opportun']
[u'farmer', u'welcom', u'wheatbelt', u'rain']
[u'faulti', u'gear', u'blame', u'chopper', u'accid']
[u'feder', u'opposit', u'meet', u'tweed', u'head']
[u'women', u'work', u'eurobodalla']
[u'final', u'stage', u'rail', u'trail', u'open']
[u'test', u'quick', u'add', u'victorian', u'select']
[u'forum', u'consid', u'bowel', u'cancer', u'prevent']
[u'fund', u'boost', u'child', u'allergi', u'treatment']
[u'fund', u'countri', u'cultur']
[u'funer', u'hold', u'plane', u'crash', u'victim']
[u'gambl', u'research', u'prompt']
[u'googl', u'wall', u'street', u'media']
[u'govt', u'boost', u'board', u'away', u'allow']
[u'govt', u'consid', u'singapor', u'airlin', u'rout', u'access']
[u'govt', u'launch', u'airport', u'secur', u'crackdown']
[u'govt', u'urg', u'boost', u'travel', u'subsidi']
[u'greek', u'sprinter', u'face', u'court', u'miss', u'test']
[u'green', u'milk', u'contain', u'bottler']
[u'green', u'protest', u'open', u'slather', u'develop', u'plan']
[u'grow', u'popul', u'creat', u'challeng', u'south']
[u'hezbollah', u'say', u'poll', u'arm']
[u'hospit', u'water', u'damag', u'wors', u'think']
[u'indian', u'opposit', u'leader', u'offer', u'resign']
[u'indigen', u'leader', u'focus', u'prison', u'issu']
[u'indonesia', u'prison', u'exchang', u'deal', u'month']
[u'industri', u'growth', u'lose', u'heat']
[u'industri', u'feel', u'impact', u'citrus', u'decis']
[u'injur', u'dallaglio', u'aim', u'octob', u'comeback']
[u'injur', u'safin', u'doubt', u'wimbledon']
[u'insur', u'highlight', u'gap', u'home', u'owner']
[u'intens', u'hous', u'blaze', u'keep', u'firefight']
[u'inzamam', u'lift', u'pakistan', u'chanc']
[u'iran', u'threaten', u'aust', u'export', u'china', u'analyst']
[u'iraq', u'milit', u'threaten', u'kill', u'turkish', u'hostag']
[u'deliv', u'minimum', u'wage', u'rise']
[u'hand', u'minimum', u'wage', u'rise']
[u'irc', u'wage', u'rise', u'set', u'stage']
[u'isra', u'forc', u'brace', u'mosqu', u'violenc']
[u'loss', u'loom', u'shake']
[u'judg', u'tell', u'alleg', u'offend', u'face']
[u'kerin', u'step', u'lib', u'lose', u'elect']
[u'level', u'cross', u'safeti', u'decis', u'expect', u'soon']
[u'burn', u'petrol', u'station', u'blaze']
[u'charg', u'bruce', u'rock', u'attack']
[u'jail', u'near', u'sever', u'woman']
[u'face', u'court', u'accus', u'suppli', u'drug']
[u'face', u'court', u'polic', u'attack']
[u'mayor', u'get', u'write', u'promis', u'deplet', u'uranium']
[u'mayor', u'beat', u'emerald', u'citrus', u'industri']
[u'mayor', u'want', u'good', u'look', u'export', u'facil']
[u'medic', u'marijuana', u'user', u'defi', u'court', u'rule']
[u'melbourn', u'univers', u'privat', u'wind']
[u'melb', u'colleg', u'tie']
[u'miner', u'face', u'suit', u'congo', u'death']
[u'mine', u'compani', u'look', u'uranium']
[u'minist', u'seek', u'debat', u'prematur', u'birth', u'guidelin']
[u'mobsport', u'program', u'expand']
[u'monro', u'person', u'item', u'sell', u'million']
[u'montgomeri', u'face', u'lifetim', u'balco', u'scandal']
[u'moor', u'ponder', u'lawsuit', u'club']
[u'confid', u'prison', u'transfer', u'treati']
[u'tell', u'council', u'rate', u'rise', u'worri']
[u'mundin', u'talk', u'tough', u'ahead', u'titl', u'fight']
[u'murphi', u'give', u'shanghai', u'circuit', u'seal', u'approv']
[u'nestl', u'apologis', u'excess', u'iodin', u'babi', u'milk']
[u'nestl', u'slash', u'job', u'goulburn', u'valley']
[u'breakthrough', u'chicken', u'diseas', u'fight']
[u'school', u'build', u'import', u'kid', u'risk']
[u'quick', u'bendigo', u'park', u'plan']
[u'norwegian', u'loom', u'tour', u'threat', u'aussi', u'sprinter']
[u'verdict', u'jackson', u'trial', u'frenzi']
[u'judiciari', u'give', u'night']
[u'bring', u'regul', u'cover', u'plater']
[u'firm', u'take', u'control', u'bonlac']
[u'oakeshott', u'welcom', u'crackdown', u'speed', u'limit']
[u'ogilvi', u'lead', u'qualifi', u'open']
[u'overturn', u'truck', u'caus', u'westgat', u'bridg', u'traffic']
[u'pacif', u'fisheri', u'agenc', u'plan', u'resourc', u'reform']
[u'packag', u'send', u'embassi', u'harmless']
[u'paediatrician', u'leav', u'forc', u'patient', u'transfer']
[u'palestinian', u'strike', u'isra', u'town', u'shrine', u'clash']
[u'pentagon', u'reject', u'guantanamo', u'shutdown']
[u'perth', u'benefit', u'takeov']
[u'piston', u'spur', u'face', u'titl']
[u'pipelin', u'propon', u'quiet', u'confid']
[u'polic', u'happi', u'golden', u'gift', u'behaviour']
[u'polic', u'hope', u'madam', u'stay', u'troubl']
[u'polic', u'probe', u'rape', u'club', u'chatroom']
[u'polic', u'team', u'aim', u'highway', u'death']
[u'pope', u'condemn', u'marriag']
[u'popul', u'cap', u'urg', u'protect', u'water', u'suppli']
[u'pork', u'produc', u'pigmeat', u'import']
[u'potato', u'grower', u'spit', u'chip', u'price', u'cut']
[u'power', u'firm', u'happi', u'work', u'parti']
[u'power', u'think', u'final', u'say', u'montgomeri']
[u'plater', u'accus', u'speed', u'time']
[u'pressur', u'build', u'weed', u'sale']
[u'protest', u'urg', u'govt', u'throw', u'controversi']
[u'psychiatrist', u'deni', u'patient']
[u'public', u'kimberley', u'develop']
[u'puerta', u'withdraw', u'queen']
[u'push', u'return', u'crayfish', u'river', u'malle']
[u'budget', u'set', u'second', u'surplus']
[u'small', u'art', u'group', u'winner', u'budget']
[u'union', u'disappoint', u'wage', u'rule']
[u'quarantin', u'site', u'defend', u'despit', u'devil', u'death']
[u'record', u'centr']
[u'report', u'show', u'household', u'risk', u'fire']
[u'resid', u'urg', u'sign', u'plant', u'petit']
[u'shortag', u'delay', u'miner', u'explor']
[u'robot', u'suit', u'help', u'creat', u'supermen']
[u'rockhampton', u'name', u'young', u'qlder', u'year']
[u'isol', u'sentenc', u'mother']
[u'samoa', u'level', u'financi', u'play', u'field']
[u'senat', u'join', u'labor', u'frontbench']
[u'scan', u'confirm', u'waugh', u'week']
[u'king', u'helicopt']
[u'search', u'spark', u'polic', u'warn', u'bush', u'goer']
[u'searl', u'scout', u'england', u'player', u'market']
[u'second', u'suspici', u'packag', u'send', u'indonesia']
[u'secur', u'step', u'fijian', u'leader', u'follow']
[u'industri', u'legalis', u'tabl']
[u'share', u'market', u'make', u'small', u'gain']
[u'shark', u'kill', u'south', u'africa', u'spear', u'fisherman']
[u'shattock', u'get', u'charg', u'downgrad']
[u'shattock', u'hunt', u'fight', u'charg']
[u'shepparton', u'trucki', u'die', u'crash']
[u'societi', u'stalwart', u'retir']
[u'simpkin', u'dump', u'origin']
[u'sixteen', u'kill', u'separatist', u'violenc', u'indian']
[u'skydiv', u'serious', u'injur', u'jump']
[u'sonni', u'knife']
[u'springsur', u'matern', u'concern', u'emerg']
[u'suicid', u'bomber', u'strike', u'northern', u'iraq']
[u'suit', u'file', u'bashir', u'releas']
[u'super', u'bacteria', u'live', u'sheet', u'fingernail', u'studi']
[u'teen', u'trial', u'southbank', u'fatal', u'stab']
[u'thank', u'commonwealth', u'surplus', u'springborg', u'say']
[u'thorn', u'hope', u'start', u'origin']
[u'thousand', u'flock', u'motocross', u'star', u'shine']
[u'treat', u'effluent', u'water', u'plan', u'offer', u'green', u'benefit']
[u'tsunami', u'villag', u'water', u'kit', u'test', u'torren']
[u'tszyu', u'report', u'fire', u'trainer']
[u'charg', u'cannabi']
[u'palm', u'beach', u'crash']
[u'kill', u'gaza', u'mortar', u'bomb']
[u'union', u'promis', u'fight', u'lifeguard', u'servic']
[u'stealth', u'bomber', u'deploy', u'south', u'korea']
[u'vanston', u'urg', u'reopen', u'vietnames', u'asylum', u'case']
[u'vehicl', u'educ', u'see', u'road', u'toll']
[u'victim', u'parol']
[u'volunt', u'seek', u'school', u'mentor', u'scheme']
[u'westgat', u'freeway', u'clear', u'truck', u'accid']
[u'workcov', u'blitz', u'busi']
[u'yachtsman', u'rescu', u'uninhabit', u'fiji', u'island']
[u'young', u'hawk', u'nomin', u'rise', u'star', u'award']
[u'kill', u'accid', u'india']
[u'cinema', u'icon', u'bancroft', u'die']
[u'abandon', u'acquisit', u'plan', u'expect', u'hurt']
[u'accent', u'resourc', u'hop', u'cash', u'iron']
[u'actor', u'ann', u'bancroft', u'die']
[u'worker', u'ban', u'help', u'displac']
[u'airfar', u'rise', u'probabl', u'month', u'away']
[u'ambul', u'station', u'pay', u'volunt']
[u'anlezark', u'best', u'shoot', u'commonwealth', u'game']
[u'arm', u'cach', u'iraq', u'embassi', u'london']
[u'armi', u'say', u'rebel', u'kill', u'aceh']
[u'ashbourn', u'offer', u'clark', u'govern', u'board', u'posit']
[u'auscoal', u'freez', u'steal', u'fund']
[u'blast', u'suspect', u'extremist', u'hous', u'jakarta']
[u'blue', u'focus', u'improv', u'kick', u'game']
[u'blue', u'miss', u'mason', u'hindmarsh']
[u'bolivian', u'protest', u'swell', u'presid', u'offer']
[u'bosnian', u'fire', u'foreign', u'minist']
[u'brack', u'welcom', u'research', u'centr']
[u'brown', u'seek', u'polic', u'protect', u'defector']
[u'budget', u'deliv', u'north', u'west', u'infrastructur']
[u'budget', u'fund', u'townsvill', u'women', u'jail']
[u'build', u'apprenticeship', u'year']
[u'bush', u'announc', u'african']
[u'bush', u'blair', u'fail', u'agre', u'africa']
[u'busi', u'call', u'account', u'skill', u'shortag']
[u'busi', u'want', u'better', u'plan', u'popul']
[u'elect', u'expect', u'soon', u'western', u'queensland']
[u'park', u'debat', u'clash', u'councillor', u'meet']
[u'carr', u'urg', u'address', u'brigalow', u'debacl']
[u'cataract', u'gorg', u'reserv', u'improv', u'begin']
[u'chappel', u'salari', u'hit', u'headlin', u'india']
[u'china', u'deni', u'spi', u'claim']
[u'china', u'label', u'claim', u'slander']
[u'clark', u'rape', u'accus', u'seek', u'high', u'court', u'hear']
[u'clear', u'guantanamo', u'detaine', u'jail']
[u'accus', u'labor', u'chase', u'redneck', u'vote']
[u'pledg', u'infrastructur', u'indigen', u'polici']
[u'clps', u'powerlin', u'propos', u'label', u'hare', u'brain']
[u'club', u'get', u'melbourn', u'race']
[u'code', u'design', u'protect', u'kimberley', u'natur']
[u'corrupt', u'trial', u'juri', u'tell', u'expect', u'high', u'profil']
[u'councillor', u'reduct', u'mix', u'bless']
[u'councillor', u'latest', u'wharf', u'project', u'detail']
[u'council', u'opposit', u'unhappi', u'prostitut']
[u'court', u'tell', u'suicid', u'steal', u'luxuri']
[u'court', u'tell', u'listen', u'devic', u'drug', u'arrest']
[u'cowboy', u'worri', u'origin', u'player', u'loss']
[u'crow', u'anticip', u'tough', u'clash', u'cat']
[u'csiro', u'score', u'entomolog']
[u'cultur', u'shock', u'hit', u'shear', u'contest']
[u'cyclist', u'injur', u'collis']
[u'cyclist', u'rais', u'money', u'skin', u'cancer', u'research']
[u'date', u'methadon', u'manslaught', u'case']
[u'debat', u'rag', u'nuclear', u'power']
[u'defector', u'give', u'govt', u'secret', u'file']
[u'defector', u'wont', u'hurt', u'talk', u'vail', u'say']
[u'disast', u'report', u'highlight', u'flood', u'risk', u'perth']
[u'doubt', u'cast', u'sunshin', u'coast', u'capit', u'work']
[u'downer', u'receiv', u'chen', u'asylum', u'plea']
[u'drought', u'strip', u'economi']
[u'drought', u'spread']
[u'dumoulin', u'snare', u'lead', u'dauphin']
[u'eagl', u'prepar', u'torrid', u'clash', u'bomber']
[u'economist', u'lower', u'rate', u'forecast']
[u'elkington', u'qualifi', u'open']
[u'give', u'green', u'light', u'industri', u'site', u'clean']
[u'ethiopian', u'kill', u'elect', u'protest']
[u'reform', u'good', u'local', u'farmer', u'report']
[u'eurobodalla', u'council', u'shire', u'lift', u'rat']
[u'farmer', u'pleas', u'moira', u'east', u'drought']
[u'feder', u'tough', u'test', u'hall']
[u'femal', u'orgasm', u'gene']
[u'fighter', u'plan', u'escort', u'bomb', u'alert']
[u'figur', u'drought', u'worsen']
[u'fiji', u'union', u'plan', u'protest', u'coup', u'amnesti']
[u'fine', u'furnitur', u'student', u'express', u'concern']
[u'firefight', u'budget', u'omiss', u'complaint']
[u'fisher', u'continu', u'opposit', u'higher', u'licenc', u'fee']
[u'flood', u'hit', u'southern']
[u'fli', u'padr', u'reach', u'mileston']
[u'fonterra', u'bonlac', u'sharehold', u'juli']
[u'forc', u'sign', u'rooki', u'quartet']
[u'policeman', u'jail', u'stockpil', u'illeg']
[u'control', u'jail', u'oversea', u'child']
[u'fund', u'woe', u'conservatorium', u'cours']
[u'gather', u'discuss', u'plan', u'region']
[u'georgeson', u'rid', u'high', u'franc']
[u'glazer', u'son', u'join', u'board']
[u'gore', u'honour', u'geek', u'night']
[u'govt', u'accus', u'back', u'age', u'care', u'closur']
[u'govt', u'ask', u'nestl', u'worker', u'face']
[u'govt', u'land', u'chang', u'plan', u'hold']
[u'govt', u'provid', u'renew', u'energi', u'project']
[u'govt', u'appeal', u'pork', u'rule']
[u'govt', u'delay', u'introduct', u'transport']
[u'govt', u'cabinet', u'cater', u'decis']
[u'govt', u'beat', u'wild', u'campaign']
[u'govt', u'urg', u'help', u'perman', u'caravan', u'park', u'resid']
[u'grain', u'forecast', u'alarmist', u'analyst', u'say']
[u'greenspan', u'comment', u'fail', u'support', u'stock']
[u'green', u'reveal', u'chines', u'diplomat', u'asylum', u'letter']
[u'guidelin', u'clarifi', u'govt', u'school', u'expens']
[u'guilti', u'plea', u'boot', u'case']
[u'hagan', u'question', u'stuart', u'influenc', u'refere']
[u'handwash', u'step', u'fight', u'superbug']
[u'hawk', u'loss', u'lack', u'team', u'spirit', u'clarkson']
[u'hewitt', u'upbeat', u'wimbledon', u'chanc']
[u'high', u'temp', u'sweep', u'victoria']
[u'hill', u'urg', u'peac', u'resolut', u'china', u'taiwan']
[u'hop', u'rais', u'iraq', u'wheat', u'shipment']
[u'hop', u'rais', u'weekend', u'rain']
[u'hous', u'crack', u'drought', u'deepen']
[u'hous', u'financ', u'growth', u'run', u'steam']
[u'howard', u'commit', u'prevent', u'suicid']
[u'indian', u'tiger', u'radio', u'collar', u'check', u'poach']
[u'indigen', u'group', u'win', u'nativ', u'titl', u'claim']
[u'inquest', u'begin', u'student', u'fight', u'death']
[u'rat', u'stay', u'hold']
[u'investig', u'begin', u'suspici', u'fire']
[u'jesus', u'die', u'blood', u'clot', u'research', u'say']
[u'kewel', u'sue', u'england', u'great', u'newspap']
[u'labor', u'accus', u'keep', u'media', u'attent']
[u'labor', u'rise', u'decis']
[u'labor', u'promis', u'midwiv', u'child', u'health', u'nurs']
[u'labor', u'seek', u'answer', u'chines', u'defector', u'spi']
[u'larg', u'quak', u'strike', u'sumatra', u'coast']
[u'lewi', u'angrili', u'deni', u'split', u'tszyu']
[u'liber', u'leader', u'plan', u'elect', u'trip', u'bendigo']
[u'lion', u'fan', u'right', u'parti']
[u'mackay', u'roadwork', u'fund', u'disappoint']
[u'magpi', u'unlik', u'buckley', u'demon', u'clash']
[u'accus', u'arm', u'robberi', u'tell', u'expect', u'long']
[u'accus', u'satellit', u'dish', u'bomb', u'face']
[u'charg', u'hobart', u'sieg', u'end']
[u'charg', u'narrogin', u'home', u'invas']
[u'hold', u'babi', u'hobart', u'sieg']
[u'jail', u'underag', u'incest']
[u'ownership', u'chang', u'expect', u'affect', u'wagga']
[u'meet', u'explain', u'higher', u'cattl', u'transact', u'levi']
[u'memori', u'fail', u'mcgee', u'wife', u'commiss']
[u'minimum', u'wage', u'rise', u'cost', u'famili', u'analyst']
[u'minist', u'hear', u'port', u'hedland', u'hous', u'concern']
[u'mistress', u'admit', u'tri', u'kill', u'lover', u'wife']
[u'mix', u'wide', u'burnett', u'reaction', u'budget']
[u'warm', u'winter', u'day', u'forecast']
[u'mother', u'tale', u'take', u'orang', u'literari', u'prize']
[u'call', u'region', u'driver', u'educ', u'boost']
[u'support', u'shell', u'ethanol', u'plan']
[u'visit', u'aceh', u'check', u'program']
[u'mundin', u'give', u'chanc', u'bookmak']
[u'mundin', u'lose', u'world', u'titl', u'shoot', u'point']
[u'nadal', u'eye', u'feder', u'number', u'spot']
[u'game', u'upset', u'aust', u'conserv', u'foundat']
[u'ncoss', u'seek', u'fund', u'northern', u'river']
[u'presid', u'visit', u'bundaberg']
[u'clash', u'follow', u'bolivian', u'presid', u'resign']
[u'norfolk', u'flight', u'continu']
[u'orang', u'consid', u'cut', u'councillor', u'number']
[u'pakistan', u'draw', u'windi', u'seri']
[u'parent', u'feel', u'child', u'abus', u'alleg']
[u'park', u'woman', u'intern', u'quota', u'chief']
[u'parliament', u'hear', u'minist', u'prepar']
[u'peopl', u'smuggler', u'guilti', u'siev', u'case']
[u'peopl', u'smuggler', u'convict', u'spark', u'siev', u'inquiri']
[u'pianola', u'music', u'roll']
[u'pianola', u'play']
[u'plan', u'desalin', u'plant', u'aliv']
[u'polic', u'investig', u'church', u'assault']
[u'polic', u'benefit', u'communic', u'merger', u'plan']
[u'polic', u'vote', u'govt', u'offer']
[u'polic', u'warn', u'albani', u'driver', u'slow']
[u'possibl', u'defector', u'back', u'chines', u'claim']
[u'pratt', u'dominikov', u'fli', u'start', u'edgbaston']
[u'prima', u'faci', u'case', u'chen', u'stay', u'beazley']
[u'public', u'tell', u'need', u'escap', u'plan']
[u'public', u'rate', u'council', u'perform']
[u'budget', u'bring', u'mix', u'respons', u'toowoomba']
[u'budget', u'fail', u'impress', u'farmer']
[u'treasur', u'say', u'budget', u'surplus', u'rise']
[u'rat', u'hold', u'give', u'bank', u'stock', u'lift']
[u'region', u'workshop', u'consid', u'drought', u'suicid', u'risk']
[u'religi', u'leader', u'claim', u'block', u'polici', u'racist']
[u'renew', u'nuclear', u'power', u'debat']
[u'report', u'find', u'high', u'indigen', u'kidney', u'failur', u'risk']
[u'resid', u'want', u'street', u'light', u'urg']
[u'african', u'health', u'minist', u'fire', u'aid', u'activist']
[u'govt', u'move', u'secur', u'major', u'defenc']
[u'savag', u'question', u'sell', u'park', u'land', u'visitor']
[u'school', u'ask', u'govt', u'chen', u'famili', u'visa']
[u'scott', u'feel', u'pressur', u'major']
[u'second', u'violenc', u'ethiopia', u'poll', u'protest']
[u'second', u'defector', u'add', u'weight', u'claim']
[u'secur', u'review', u'lead', u'ticket', u'slug']
[u'secur', u'staff', u'check', u'rais', u'right', u'fear']
[u'servic', u'station', u'spark', u'safeti', u'remind']
[u'shepparton', u'council', u'deliv', u'rate', u'rise']
[u'shire', u'group', u'urg', u'oppos', u'rail', u'closur', u'plan']
[u'shoot', u'victim', u'mother', u'question', u'mental', u'health']
[u'size', u'matter', u'newcastl', u'build', u'plan']
[u'field', u'await', u'decent', u'snowfal']
[u'strong', u'demand', u'bull', u'despit', u'fall', u'cattl']
[u'superbug', u'threat', u'grow', u'expert', u'warn']
[u'support', u'nurs', u'examin', u'rape', u'victim']
[u'support', u'seek', u'goldfield', u'seat']
[u'swan', u'confid', u'frontbench', u'role', u'safe']
[u'sydney', u'oceania', u'final']
[u'taliban', u'milit', u'kill', u'soldier']
[u'chang', u'erod', u'rise', u'labor', u'say']
[u'teen', u'arrest', u'berri', u'busi', u'blaze']
[u'teen', u'face', u'court', u'sheep', u'slay']
[u'tender', u'call', u'sewerag', u'project']
[u'tenni', u'australia', u'hire', u'renown', u'coach', u'tiley']
[u'transport', u'infrastructur', u'win', u'budget']
[u'bodi', u'burn', u'hous']
[u'union', u'member', u'meet', u'mull', u'work', u'place', u'chang']
[u'union', u'plan', u'huge', u'campaign', u'govt', u'chang']
[u'union', u'worri', u'chang']
[u'union', u'threaten', u'action', u'code', u'conduct']
[u'unknown', u'bach', u'composit', u'discov']
[u'drop', u'push', u'probe', u'journalist', u'death']
[u'troop', u'arriv', u'defenc', u'exercis']
[u'vege', u'grower', u'hold', u'crisi', u'talk']
[u'vulner', u'farmer', u'diversifi', u'cope', u'drought']
[u'waff', u'oppos', u'wooli', u'foodland', u'takeov', u'plan']
[u'wage', u'decis', u'lead', u'sack', u'farmer']
[u'wage', u'decis', u'prompt', u'debat', u'futur', u'increas']
[u'govt', u'defend', u'respons', u'child', u'abus', u'state']
[u'wallabi', u'face']
[u'whale', u'spot', u'south', u'west', u'coast']
[u'wheeler', u'inquiri', u'examin', u'airport', u'crime']
[u'woman', u'jail', u'steal', u'die', u'veteran']
[u'women', u'prison', u'group', u'receiv', u'nation', u'award']
[u'workshop', u'focus', u'aquif', u'fear']
[u'abalon', u'ship', u'spark', u'visa']
[u'aborigin', u'definit', u'clear', u'lower', u'hous']
[u'acquitt', u'suspect', u'uphold']
[u'activist', u'fear', u'mass', u'chines', u'asylum', u'seeker']
[u'advoc', u'criticis', u'famili', u'detent', u'facil']
[u'contradict', u'earlier', u'evid', u'corrupt']
[u'pollut', u'woe', u'link', u'forest', u'fuel', u'burn']
[u'clear', u'give', u'olymp', u'white', u'powder']
[u'alleg', u'cocain', u'smuggler', u'deni', u'bail']
[u'field', u'candid', u'maywald']
[u'anger', u'darwin', u'mayor', u'support']
[u'anim', u'activist', u'speak', u'naval', u'exercis']
[u'artefact', u'come', u'indigen', u'cultur']
[u'asian', u'heavyweight', u'qualifi', u'world']
[u'audit', u'highlight', u'danger']
[u'australia', u'confirm', u'tour', u'bangladesh']
[u'aust', u'ralli', u'support', u'blow', u'whale']
[u'baggag', u'handler', u'arrest', u'cocain', u'charg']
[u'baggag', u'handler', u'charg', u'drug', u'haul']
[u'bathurst', u'council', u'appoint']
[u'beef', u'produc', u'capitalis', u'woe']
[u'better', u'rain', u'predict', u'rural', u'area']
[u'birthday', u'sleepov', u'end', u'tragedi']
[u'board', u'welcom', u'cattl', u'station', u'nativ', u'titl', u'decis']
[u'bowyer', u'face', u'trial', u'match', u'fight']
[u'brake', u'driver', u'educ', u'centr', u'plan']
[u'brown', u'coal', u'compani', u'urg', u'greener']
[u'brown', u'throw', u'gauntlet', u'nuclear', u'wast']
[u'budget', u'draw', u'mix', u'reaction', u'local', u'tourism']
[u'builder', u'peel', u'begin', u'banana', u'revamp']
[u'bunburi', u'council', u'woodchip']
[u'burk', u'head', u'heartland']
[u'bush', u'consid', u'guantanamo', u'option']
[u'smash', u'sydney', u'supermarket']
[u'cabinet', u'urg', u'consid', u'north', u'west', u'doctor', u'hous']
[u'cafe', u'extens', u'plan', u'creat', u'concern']
[u'cambodian', u'jail', u'kill', u'wife']
[u'carr', u'announc', u'rail', u'expans', u'plan']
[u'cart', u'water', u'rais', u'option', u'goulburn', u'water']
[u'cattlemen', u'stage', u'horseback', u'protest', u'alpin']
[u'central', u'darl', u'shire', u'discuss', u'councillor']
[u'centuri', u'remain', u'return', u'burial']
[u'children', u'fear', u'dead', u'hous']
[u'chines', u'diplomat', u'claim', u'investig']
[u'colleg', u'surgeon', u'say', u'critic', u'unfair']
[u'council', u'delay', u'draft', u'plan', u'scheme', u'deadlin']
[u'council', u'mandat', u'water', u'tank', u'hous']
[u'council', u'face', u'insur', u'worri']
[u'court', u'reserv', u'decis', u'fishermen']
[u'crespo', u'doubl', u'give', u'argentina', u'world']
[u'crow', u'sorri', u'hotel', u'phone', u'throw']
[u'dali', u'develop', u'elect', u'spotlight']
[u'defenc', u'exercis', u'fewer', u'econom', u'benefit']
[u'devonport', u'woman', u'jail', u'arm', u'robberi']
[u'docker', u'pair', u'suspend', u'catch', u'drink']
[u'doctor', u'doubt', u'detaine', u'recoveri']
[u'doctor', u'hold', u'high', u'hop', u'cancer', u'drug']
[u'dog', u'tast', u'shark', u'bring', u'reward']
[u'doubt', u'rais', u'bunburi', u'region', u'scheme']
[u'driver', u'long', u'weekend', u'safeti', u'remind']
[u'drought', u'area', u'widen']
[u'drought', u'assessor', u'tour', u'southern']
[u'drought', u'prompt', u'winter', u'crop', u'delay']
[u'duckshov', u'downer', u'urg', u'grant', u'chen', u'visa']
[u'dump', u'oppon', u'join', u'today', u'melbourn', u'ralli']
[u'embassi', u'packag', u'confirm', u'harmless']
[u'england', u'batti', u'squad']
[u'investig', u'children', u'bodi']
[u'america', u'sell', u'million']
[u'fisher', u'urg', u'lion', u'exclus', u'devic']
[u'governor', u'appoint', u'honorari', u'antarct']
[u'orang', u'chief', u'head', u'telstra']
[]
[u'acquit', u'kenya', u'hotel', u'blast']
[u'hous']
[u'fraser', u'coast', u'hospit', u'short', u'doctor']
[u'fund', u'chang', u'caus', u'child', u'care', u'fear']
[u'fund', u'seek', u'boost', u'babi', u'turtl', u'protect']
[u'futur', u'plan', u'outlin', u'coal', u'industri']
[u'firm', u'claim', u'consult', u'conserv']
[u'german', u'citi', u'prepar', u'hut', u'world']
[u'gold', u'coast', u'prepar', u'continu']
[u'govt', u'ask', u'fluorid', u'deliveri']
[u'govt', u'work', u'protect', u'grind', u'water']
[u'govt', u'danger', u'breed']
[u'govt', u'budget', u'coast', u'road', u'alloc']
[u'govt', u'pressur', u'establish', u'siev', u'royal']
[u'group', u'plan', u'autism', u'satellit', u'class']
[u'shearer', u'take', u'poor', u'dig']
[u'haka', u'burst', u'ballet', u'stage']
[u'health', u'dept', u'pay', u'laptop', u'leas']
[u'health', u'dept', u'nurs', u'job']
[u'health', u'servic', u'offer', u'paediatr', u'servic', u'assur']
[u'hewitt', u'fire', u'nadal', u'warn']
[u'hobart', u'privat', u'reimburs', u'hospit']
[u'hoil', u'season']
[u'hoil', u'season', u'balanc']
[u'hong', u'kong', u'bird', u'watch']
[u'hop', u'unit', u'thwart', u'wooli', u'takeov']
[u'howard', u'dismiss', u'nonsens', u'talk', u'chen']
[u'howard', u'chen']
[u'hundr', u'expect', u'reconcili', u'forum']
[u'husband', u'bail', u'boot', u'case']
[u'icpa', u'push', u'region', u'tertiari', u'student', u'access']
[u'immigr', u'confirm', u'govt', u'sponsor', u'ship', u'worker']
[u'indigen', u'focus', u'safeti', u'messag']
[u'indigen', u'player', u'increas', u'presenc']
[u'indonesia', u'jail', u'suspect', u'milit', u'wife']
[u'industri', u'unrest', u'affect', u'ballarat', u'student']
[u'infrastructur', u'woe', u'restrict', u'mackay', u'earn']
[u'inquiri', u'examin', u'prison', u'secur', u'rat']
[u'inquiri', u'focus', u'region', u'transport']
[u'investig', u'begin', u'elder']
[u'iran', u'open', u'nuclear', u'site', u'inspector']
[u'iraqi', u'tender', u'leav', u'aust', u'wheat', u'cold']
[u'isra', u'court', u'reject', u'overturn', u'gaza', u'pullout']
[u'return', u'china', u'chen']
[u'jackson', u'lawyer', u'gag', u'singer', u'camp']
[u'john', u'call', u'blue', u'squad']
[u'journalist', u'alan', u'ashbolt', u'die']
[u'juri', u'acquit', u'indec', u'deal', u'charg']
[u'kewel', u'hurt', u'humili', u'linek', u'critic']
[u'khazal', u'face', u'terror', u'charg']
[u'kimberley', u'share', u'region', u'art', u'fund']
[u'kiwi', u'announc', u'coach']
[u'knife', u'bandit', u'hold', u'chariti']
[u'labor', u'dissid', u'name', u'polit', u'corrupt', u'trial']
[u'labor', u'vow', u'seek', u'world', u'heritag', u'list']
[u'push', u'trucki', u'fear', u'catch', u'pant']
[u'mackay', u'jail', u'cannabi', u'charg']
[u'mandatori', u'dentent', u'unnecessari', u'polici', u'georgiou']
[u'mandatori', u'detent', u'human', u'right', u'commission']
[u'die', u'caravan']
[u'face', u'court', u'caravan', u'park', u'stab']
[u'market', u'finish', u'lower']
[u'maroochi', u'council', u'lift', u'child', u'care', u'fee']
[u'martian', u'aurora', u'like', u'earth']
[u'mayor', u'back', u'rail', u'link', u'fund', u'push']
[u'mcdonald', u'urg', u'stick', u'australian', u'produc']
[u'mcgee', u'consid', u'legal', u'help', u'prioriti']
[u'mcgee', u'deni', u'avoid', u'breath', u'test', u'hit']
[u'mckenzi', u'monitor', u'form', u'sydney', u'premier', u'comp']
[u'mental', u'health', u'institut', u'question', u'state', u'budget']
[u'methan', u'volcano', u'spot', u'saturn', u'moon']
[u'microsoft', u'indonesia', u'pirat', u'softwar']
[u'milit', u'plan', u'attack', u'indonesian']
[u'minist', u'deni', u'biloela', u'resign', u'claim']
[u'minist', u'warn', u'japan', u'whale', u'boycott']
[u'molik', u'hantuchova', u'beat', u'edgbaston']
[u'mountain', u'cattlemen', u'garner', u'support', u'protest']
[u'attack', u'govt', u'disabl', u'effort']
[u'short', u'circuit', u'hit', u'power', u'plan']
[u'mundin', u'impress', u'critic', u'lose', u'fight']
[u'mundin', u'shelv', u'rugbi', u'leagu', u'comeback']
[u'murray', u'bridg', u'take', u'shape']
[u'explor', u'tool', u'save', u'mine', u'industri']
[u'inform', u'emerg', u'famili', u'case']
[u'medicar', u'rule', u'benefit', u'chronic', u'diseas']
[u'anaesthetist', u'contract', u'affect', u'surgeri', u'option']
[u'north', u'west', u'highway', u'improv']
[u'time', u'frame', u'leisur', u'centr', u'repair']
[u'send', u'drought', u'canberra']
[u'central', u'bank', u'hold', u'firm', u'rat']
[u'ombudsman', u'staff', u'head', u'tamworth']
[u'scientist', u'admit', u'fudg', u'research']
[u'opposit', u'tri', u'derail', u'govt', u'train', u'driver']
[u'perth', u'nickel', u'expect', u'benefit', u'kalgoorli']
[u'philippin', u'troop', u'alert', u'coup']
[u'player', u'associ', u'meet', u'knight']
[u'encourag', u'nuclear', u'power', u'debat']
[u'dental', u'health', u'fund', u'petit']
[u'polic', u'detain', u'stray', u'killer']
[u'polic', u'hunt', u'fast', u'food', u'store', u'arm', u'bandit']
[u'polic', u'hunt', u'secur', u'guard', u'death']
[u'polic', u'probe', u'inform', u'school', u'abus', u'claim']
[u'polic', u'search', u'driver', u'child', u'abduct']
[u'polic', u'target', u'earli', u'morn', u'speedster']
[u'port', u'kembla', u'see', u'greater', u'secur', u'risk']
[u'prefer', u'site', u'choos', u'saleyard']
[u'protect', u'anim', u'ocean', u'sound', u'coalit', u'urg']
[u'licenc', u'condit', u'spark', u'civil', u'liberti']
[u'public', u'help', u'seek', u'catch', u'school', u'bug']
[u'public', u'urg', u'highway', u'work']
[u'public', u'warn', u'telstra', u'imperson']
[u'falun', u'gong', u'member', u'support', u'claim']
[u'rail', u'trip', u'mark', u'victori', u'pacif']
[u'rain', u'encourag', u'drought', u'stricken', u'farmer']
[u'raisin', u'fight', u'caviti', u'diseas', u'studi']
[u'recruit', u'woe', u'divorc', u'armi']
[u'region', u'consult', u'indigen', u'bodi']
[u'renegad', u'meet', u'howard', u'detent']
[u'replac', u'telstra', u'chief', u'announc']
[u'resid', u'urg', u'precaut', u'storm']
[u'review', u'consid', u'monaro', u'matern', u'servic']
[u'rock', u'attack', u'stop', u'servic']
[u'roddick', u'blast', u'philippoussi', u'queen']
[u'rspca', u'label', u'bird', u'poison', u'cruel']
[u'rural', u'pharmaci', u'play', u'fight', u'substanc']
[u'samoa', u'good', u'countri', u'test', u'warm']
[u'school', u'urg', u'trial', u'singl', u'class']
[u'schumach', u'longer', u'canada', u'favourit']
[u'scientist', u'sumatra', u'quak', u'warn']
[u'second', u'tragedi', u'prompt', u'winter', u'warn']
[u'second', u'half', u'blitz', u'help', u'lion', u'second', u'tour']
[u'senat', u'wont', u'need', u'cross', u'floor', u'nuclear', u'dump']
[u'shark', u'patrol', u'fund', u'slash', u'budget']
[u'shire', u'slide', u'closer', u'tourism', u'attract']
[u'soil', u'test', u'improv', u'barrier', u'reef', u'water']
[u'spanish', u'king', u'franc', u'nadal', u'bomb', u'germani']
[u'spi', u'control', u'china', u'defector', u'say']
[u'stanhop', u'wont', u'draw', u'final', u'cost', u'arboretum']
[u'stanthorp', u'handl', u'disast', u'spotlight']
[u'straw', u'make', u'surpris', u'visit', u'iraq']
[u'student', u'death', u'inquest', u'hear', u'teacher', u'blue']
[u'supermodel', u'enlist', u'wool', u'campaign']
[u'suspici', u'packag', u'parliament', u'embassi']
[u'parliament', u'debat', u'definit', u'aborigin']
[u'tbird', u'look', u'upset', u'swift']
[u'teenag', u'attack', u'lyneham']
[u'teenag', u'hold', u'custodi', u'tram', u'theft']
[u'haka', u'stage']
[u'contract', u'bird', u'vietnam']
[u'tsunami', u'breast', u'implant', u'inappropri']
[u'tyson', u'vow', u'oppon', u'like', u'fish']
[u'discuss', u'iraq', u'weapon', u'inspect', u'team']
[u'unemploy', u'steadi']
[u'union', u'blame', u'skill', u'shortag', u'apprentic']
[u'union', u'seek', u'forestri', u'loss', u'answer']
[u'union', u'hold', u'tongala', u'nestl', u'talk']
[u'hear', u'australian', u'child', u'welfar', u'report']
[u'sailor', u'canadian', u'arrest', u'amphetamin']
[u'vanston', u'launch', u'famili', u'style', u'detent', u'project']
[u'nuclear', u'bomb', u'north', u'korea']
[u'whale', u'lobbi', u'japan', u'unhappi']
[u'wing', u'fitzgibbon', u'healthi', u'daley', u'hospit']
[u'wollongong', u'famili', u'relationship', u'centr']
[u'woman', u'get', u'stress', u'compo', u'tri', u'rescu']
[u'wool', u'process', u'plant', u'closur', u'cost', u'job']
[u'zeehan', u'appeal', u'murder', u'jail', u'sentenc']
[u'bodi', u'iraq']
[u'ahmad', u'elrich', u'join', u'australian']
[u'black', u'shred', u'fiji', u'lion', u'warm']
[u'alpin', u'graze', u'nation', u'heritag', u'list']
[u'anger', u'lack', u'aborigin', u'consult']
[u'anti', u'rape', u'devic', u'creat']
[u'gain', u'macquari', u'leap', u'ahead']
[u'austminex', u'consolid', u'tenement']
[u'australia', u'make', u'list', u'wealth', u'creation']
[u'australian', u'groom', u'dutch', u'open']
[u'australian', u'youngster', u'start', u'world']
[u'australia', u'anti', u'whale', u'stanc', u'ridicul']
[u'open', u'silo', u'fee']
[u'baggag', u'handler', u'face', u'trial', u'jihad', u'book']
[u'basin', u'upgrad', u'allow', u'higher', u'water', u'flow']
[u'gun', u'contain', u'toy']
[u'bear', u'beat', u'net', u'dolphin']
[u'shortag', u'delay', u'qasim', u'transfer']
[u'biki', u'gang', u'raid', u'expect', u'spark', u'polic', u'charg']
[u'bolivian', u'militari', u'urg', u'polit', u'crisi']
[u'bomber', u'push', u'eagl']
[u'bowl', u'club', u'blood', u'end', u'knife', u'assault']
[u'break', u'hill', u'learn', u'shire', u'confer']
[u'brown', u'hope', u'africa', u'debt', u'deal']
[u'buckley', u'give', u'chanc', u'return', u'monday']
[u'busi', u'angri', u'water', u'charg']
[u'busi', u'manag', u'defend', u'kewel', u'deal']
[u'bolster', u'communiti', u'care', u'mental']
[u'campbel', u'brush', u'critic', u'whale', u'stanc']
[u'club', u'make', u'offici']
[u'cattern', u'jump', u'ship']
[u'china', u'ask', u'australian', u'falun', u'gong', u'member']
[u'chopper', u'crash', u'spark', u'effort', u'locust']
[u'clean', u'begin', u'storm', u'lash', u'adelaid']
[u'coal', u'export', u'predict', u'pick']
[u'commiss', u'contact', u'offici', u'poll', u'claim']
[u'commiss', u'probe', u'clps', u'poll', u'help', u'claim']
[u'concern', u'rais', u'anti', u'terror', u'warrant']
[u'consid', u'effect', u'uranium', u'brown', u'urg', u'voter']
[u'controversi', u'plan', u'law', u'green', u'light']
[u'corbi', u'lawyer', u'appli', u'media', u'blanket']
[u'costello', u'ask', u'democrat', u'reveal', u'hand']
[u'court', u'chief', u'take', u'rein', u'bolivia']
[u'court', u'recognis', u'kimberley', u'nativ', u'titl', u'right']
[u'court', u'wait', u'wife', u'canadian', u'drug', u'accus']
[u'cyclist', u'link', u'indec', u'assault', u'polic']
[u'dajka']
[u'dajka', u'face', u'cycl', u'disciplinari', u'hear']
[u'darwin', u'airport', u'plan', u'secur']
[u'date', u'nasa', u'deep', u'impact']
[u'david', u'hick', u'repatri']
[u'debat', u'rag', u'albani', u'build', u'height']
[u'debus', u'agre', u'forest', u'log', u'meet']
[u'delta', u'push', u'fire', u'power', u'plant']
[u'desert', u'race', u'scrutin', u'begin']
[u'detect', u'start', u'work', u'patel', u'case']
[u'detent', u'talk', u'amiabl', u'say']
[u'director', u'criticis', u'sydney', u'film', u'festiv']
[u'diva', u'tackl', u'plate']
[u'doctor', u'forum', u'spotlight', u'region', u'health']
[u'doctor', u'question', u'smear', u'guidelin']
[u'doctor', u'warn', u'loom', u'hospit', u'crisi']
[u'doubl', u'demerit', u'warn', u'long', u'weekend']
[u'doubt', u'rais', u'irrig', u'compo', u'fund']
[u'drink', u'driver', u'get', u'year', u'fatal', u'crash']
[u'driver', u'urg', u'break', u'long', u'weekend']
[u'drug', u'money', u'pay', u'mackay', u'coupl', u'wed']
[u'consid', u'burn', u'consult', u'feedback']
[u'year', u'sentenc', u'reckless', u'drive']
[u'europ', u'go', u'difficult', u'period', u'chirac', u'say']
[u'exercis', u'help', u'breast', u'cancer', u'recoveri']
[u'explos', u'spanish', u'airport']
[u'falun', u'gong', u'sue', u'canberra', u'protest']
[u'famili', u'seek', u'compo', u'school', u'death']
[u'farina', u'upbeat', u'despit', u'lacklustr', u'kiwi']
[u'farmer', u'offer', u'help', u'hand', u'devast']
[u'fatal', u'hous', u'prompt', u'babysitt']
[u'favourit', u'scratch', u'derbi']
[u'feder', u'breez', u'hall', u'semi']
[u'feral', u'hors', u'problem', u'near', u'control']
[u'figur', u'highlight', u'lower', u'north', u'coast', u'rat']
[u'film', u'maker', u'angri', u'festiv', u'negat']
[u'foley', u'tell', u'corrupt', u'trial', u'explos', u'reaction']
[u'minist', u'staffer', u'urg', u'complain']
[u'shower', u'death', u'prompt', u'remov']
[u'offic', u'revis', u'staff', u'offer']
[u'govern', u'disput', u'heritag', u'list', u'implic']
[u'govt', u'accus', u'rehash', u'traffic', u'squad', u'plan']
[u'govt', u'dismiss', u'push', u'bring', u'hick', u'home']
[u'govt', u'figur', u'highlight', u'high', u'kiama', u'council', u'rat']
[u'govt', u'report', u'card', u'rat', u'northern', u'council']
[u'govt', u'plead', u'clemenc', u'australian', u'death']
[u'green', u'light', u'project', u'expans']
[u'greenspan', u'allud', u'rate', u'rise']
[u'gregori', u'closur', u'blow', u'communiti']
[u'harmison', u'england', u'warm']
[u'hawk', u'sign', u'trio']
[u'hayden', u'readi', u'bash', u'england']
[u'health', u'union', u'threaten', u'work', u'ban', u'deal']
[u'heavier', u'rain', u'predict', u'central', u'victoria']
[u'hickss', u'father', u'push', u'action', u'releas', u'comment']
[u'hockey', u'homestead', u'auction']
[u'howard', u'open', u'suggest', u'immigr', u'detent']
[u'howard', u'meet', u'georgiou', u'mandatori', u'detent']
[u'hundr', u'sign', u'anti', u'whale', u'petit']
[u'hydro', u'say', u'propos', u'powerlin', u'pose', u'health']
[u'ibuprofen', u'link', u'heart', u'risk']
[u'ierodiaconou', u'look', u'doubt', u'winter', u'olymp']
[u'saviour', u'say', u'joey']
[u'indonesian', u'polic', u'chief', u'puzzl', u'travel', u'warn']
[u'inquiri', u'recommend', u'death', u'face', u'murder', u'charg']
[u'inquiri', u'recommend', u'patel', u'charg', u'murder']
[u'intern', u'student', u'attack', u'harass', u'week']
[u'jail', u'worker', u'get', u'child', u'porn', u'sentenc']
[u'john', u'expect', u'slot', u'like', u'away']
[u'judg', u'dismiss', u'mombasa', u'hotel', u'bomb', u'case']
[u'kalbarri', u'form', u'mental', u'health', u'support', u'group']
[u'karri', u'webb', u'join', u'golf', u'time', u'great']
[u'kimberley', u'nativ', u'titl', u'decis']
[u'kirkuk', u'anti', u'corrupt', u'offici', u'kill']
[u'kiwi', u'pressur', u'ahead', u'shear', u'comp']
[u'kluivert', u'valencia', u'hit', u'snag']
[u'kyrgyz', u'parliamentarian', u'shoot', u'dead']
[u'lappin', u'mileston', u'celebr', u'hold']
[u'lawyer', u'defector', u'say', u'see', u'evid']
[u'licuria', u'say', u'magpi', u'keen', u'buckley', u'return']
[u'littl', u'snow', u'season', u'open']
[u'liverpool', u'defend', u'champion', u'leagu', u'titl']
[u'maleni', u'supermarket', u'site', u'sell']
[u'maradona', u'grant', u'napoli', u'farewel', u'match']
[u'meander', u'valley', u'council', u'take', u'role']
[u'face', u'terror', u'charg']
[u'militari', u'releas', u'file', u'elvi', u'mcqueen', u'gabl']
[u'motorcyclist', u'accus', u'highway', u'ride']
[u'motorcyclist', u'lose', u'licenc', u'ride']
[u'rais', u'alstonvill', u'bypass', u'fund', u'question']
[u'murray', u'confid', u'cowboy', u'origin', u'player']
[u'nation', u'train', u'deal', u'reject']
[u'nato', u'african', u'peacekeep', u'darfur']
[u'near', u'half', u'dubbo', u'resid', u'ignor', u'risk']
[u'shire', u'settl']
[u'tobacco', u'polici', u'call', u'aggress', u'action']
[u'concess', u'hostag', u'releas', u'afghan', u'govt']
[u'easi', u'infrastructur', u'woe']
[u'link', u'airport', u'arrest', u'wider', u'drug', u'probe']
[u'progress', u'wall', u'rais', u'plan']
[u'woolli', u'think', u'urin', u'solut', u'pollut']
[u'offici', u'crack', u'evas', u'scheme']
[u'otway', u'gain', u'nation', u'park', u'status']
[u'pakistan', u'shabbir', u'undergo', u'action', u'test', u'england']
[u'parent', u'angri', u'student', u'accommod']
[u'perth', u'splash', u'winter', u'delug']
[u'say', u'produc', u'open', u'higher', u'cattl']
[u'plan', u'begin', u'breast', u'cancer', u'servic']
[u'polic', u'break', u'protest', u'philippin']
[u'polic', u'crack', u'scam']
[u'polic', u'interview', u'wyong', u'survivor']
[u'polic', u'investig', u'hous', u'determin']
[u'polic', u'bali', u'enact', u'arrest']
[u'polic', u'crash', u'victim']
[u'polic', u'raid', u'trigger', u'biki', u'arrest']
[u'polic', u'tight', u'lip', u'wyong', u'hous', u'detail']
[u'polic', u'unearth', u'drug', u'traffic', u'syndic']
[u'powel', u'serv', u'notic', u'sprint', u'rival']
[u'power', u'station', u'promis', u'greener', u'outcom']
[u'predict', u'hous', u'boom', u'expect', u'challeng']
[u'premiership', u'prowl']
[u'protein', u'help', u'treat', u'brain', u'injuri']
[u'protest', u'demand', u'detent', u'children']
[u'admit', u'counterfeit', u'drug', u'charg']
[u'rainfal', u'forecast', u'bring', u'hope', u'farmer']
[u'rain', u'offer', u'farmer', u'respit']
[u'collina', u'bow', u'june']
[u'resid', u'voic', u'council', u'merger', u'opposit']
[u'restaur', u'worker', u'bash', u'robberi']
[u'rider', u'gear', u'quilti', u'event']
[u'rockhampton', u'celebr', u'anniversari']
[u'lead', u'intern', u'student', u'figur']
[u'sale', u'hospit', u'paediatrician', u'work']
[u'samoa', u'uncap', u'player', u'face', u'wallabi']
[u'chang', u'citi', u'experi', u'hous', u'boom']
[u'seafood', u'export', u'decad']
[u'secur', u'fuel', u'cost', u'push', u'ferri', u'fare', u'car']
[u'industri', u'pass', u'lower', u'hous', u'heat']
[u'sheedi', u'back', u'youngster', u'turn', u'bomber']
[u'shire', u'join', u'forc', u'combat', u'land', u'shortag']
[u'signific', u'fine', u'death', u'welcom']
[u'sikh', u'communiti', u'converg', u'griffith', u'game']
[u'skaif', u'quickest', u'shanghai', u'practic']
[u'smell', u'remain', u'groyn', u'remov', u'project', u'hold']
[u'sorenstam', u'make', u'solid', u'start', u'lpga', u'championship']
[u'agreement', u'park', u'site']
[u'strong', u'support', u'plan', u'plastic']
[u'studi', u'highlight', u'high', u'mildura', u'growth']
[u'studi', u'suggest', u'cardiac', u'risk', u'painkil']
[u'studi', u'warn', u'ibuprofen', u'risk']
[u'support', u'plan', u'disabl', u'youth']
[u'survey', u'highlight', u'tamworth', u'growth']
[u'survey', u'gaug', u'thought', u'telstra', u'sale']
[u'sydney', u'face', u'trial', u'terrorist', u'attack', u'plan']
[u'teen', u'death', u'inquest', u'find', u'expect', u'today']
[u'teen', u'jail', u'bertrand', u'death', u'threat']
[u'thunderstorm', u'caus', u'flood', u'adelaid']
[u'tiger', u'streak', u'away', u'sink', u'shark']
[u'timber', u'industri', u'seek', u'highway', u'safeti', u'boost']
[u'timber', u'plantat', u'plan', u'creat', u'green', u'consider']
[u'tourism', u'exchang', u'promot', u'region']
[u'tourism', u'group', u'back', u'west', u'macdonnel', u'rang']
[u'truck', u'speed', u'crackdown', u'need', u'target', u'driver', u'say']
[u'turmer', u'inhibit', u'cancer', u'spread', u'mice']
[u'tyson', u'mcbride', u'weigh']
[u'union', u'meet', u'austop', u'loss']
[u'unhappi', u'staff', u'work', u'ban']
[u'militari', u'cooper', u'drug', u'investig']
[u'navi', u'drug', u'accus', u'face', u'zero', u'toler']
[u'offici', u'defend', u'tobacco', u'trial', u'decis']
[u'vanston', u'ask', u'east', u'timores', u'inform']
[u'vietnam', u'execut', u'australian', u'drug', u'smuggl']
[u'virus', u'put', u'hackett', u'canberra', u'meet']
[u'wallabi', u'look', u'futur', u'samoan']
[u'wallac', u'want', u'father', u'overhaul']
[u'watkin', u'monitor', u'kirkland', u'situat']
[u'wealthi', u'australian', u'outstrip', u'industrialis']
[u'webber', u'warn', u'danger']
[u'webb', u'join', u'golf', u'time', u'great']
[u'weighbridg', u'worker', u'learn', u'option']
[u'wheat', u'contamin', u'trace', u'iraqi', u'mill']
[u'mammogram', u'experi', u'count', u'studi']
[u'wollongong', u'properti', u'market', u'slow']
[u'woman', u'win', u'payout', u'fail', u'breast', u'enlarg']
[u'world', u'runner', u'earli', u'work']
[u'zidan', u'quit', u'real']
[u'airfar', u'rise', u'claim', u'anger']
[u'alleg', u'kidnapp', u'drag', u'policewoman']
[u'allenbi', u'lead', u'maryland']
[u'aussi', u'reach', u'quarter', u'final', u'pari', u'seven']
[u'babe', u'ruth', u'contract', u'sell', u'million']
[u'backbench', u'meet', u'detent']
[u'weather', u'end', u'quilti', u'earli']
[u'baghdad', u'bomb', u'blast', u'kill']
[u'beazley', u'declar', u'battleground']
[u'beazley', u'vow', u'fight', u'reform']
[u'name', u'struggl', u'final', u'open', u'tune']
[u'bomber', u'hit', u'iraqi', u'polic', u'academi']
[u'bomber', u'push', u'eagl']
[u'bomber', u'chanc', u'make', u'final', u'sheedi']
[u'bomber', u'chanc', u'make', u'final', u'sheedi']
[u'bomb', u'rip', u'baghdad', u'street']
[u'boot', u'play', u'ibuprofen', u'heart', u'attack', u'link']
[u'british', u'rock', u'star', u'queen', u'birthday', u'list']
[u'bronco', u'roll', u'slide', u'raider']
[u'bush', u'unit', u'north', u'korea', u'nuclear', u'stand']
[u'campbel', u'urg', u'nuclear', u'power']
[u'carr', u'promis', u'shoot', u'energi', u'need']
[u'carr', u'speed', u'water', u'project']
[u'celebr', u'breath', u'auction']
[u'chines', u'hotel', u'kill']
[u'chines', u'offici', u'pose', u'immigr', u'offic']
[u'clark', u'keat', u'interview']
[u'climat', u'chang', u'prolong', u'drought', u'condit']
[u'concern', u'rais', u'prison', u'transfer', u'plan']
[u'crowd', u'check', u'desert', u'race', u'competitor']
[u'cycl', u'offici', u'outrag', u'olymp', u'chang']
[u'dobbin', u'famili', u'advis', u'remain']
[u'doctor', u'warn', u'global', u'warm', u'health', u'impact']
[u'drought', u'break', u'rain', u'fall', u'west']
[u'eel', u'slipperi', u'struggl', u'knight']
[u'china', u'clinch', u'deal', u'textil', u'export']
[u'europ', u'oldest', u'civilis', u'unearth']
[u'feder', u'eas', u'past', u'haa', u'reach', u'hall', u'final']
[u'femal', u'artist', u'centr', u'stage', u'venic', u'biennal']
[u'fink', u'race', u'death', u'investig']
[u'marin', u'kill', u'western', u'iraq']
[u'flood', u'corbi', u'chariti', u'concern', u'govt']
[u'free', u'italian', u'return', u'home', u'afghanistan']
[u'german', u'court', u'retir', u'elder', u'career', u'crimin']
[u'gibernau', u'grab', u'pole', u'catalan']
[u'girl', u'grab', u'sexual', u'assault', u'coff', u'harbour']
[u'gough', u'tell', u'england', u'adopt', u'aussi', u'mental']
[u'hackett', u'finalis', u'montreal', u'program']
[u'hewitt', u'bundl', u'queen']
[u'hobart', u'privat', u'recov', u'burst', u'pipe']
[u'howard', u'keep', u'open', u'mind', u'detent', u'chang']
[u'iaea', u'confirm', u'iran', u'halt', u'nuclear', u'activ']
[u'immunologist', u'honour', u'genet', u'research']
[u'indigen', u'festiv', u'kick', u'woodford']
[u'investig', u'corrim', u'hous', u'begin']
[u'iraqi', u'gunmen', u'kill']
[u'israel', u'palestinian', u'start', u'coordin', u'gaza']
[u'italian', u'hostag', u'return', u'home', u'afghanistan']
[u'jackson', u'juror', u'deliber', u'week', u'verdict']
[u'japan', u'drive', u'cool', u'choke', u'maker']
[u'johnston', u'cite', u'danger', u'tackl']
[u'kelli', u'win', u'open', u'shanghai', u'race']
[u'vote', u'aborigin']
[u'labor', u'group', u'back', u'propos', u'detent', u'chang']
[u'late', u'darter', u'goal', u'sink', u'firebird']
[u'leader', u'debat', u'focus', u'power', u'plan']
[u'leisel', u'sizzl', u'world', u'championship', u'warm']
[u'leopard', u'owner', u'charg', u'endang', u'children']
[u'lion', u'expect', u'brown', u'midfield', u'role']
[u'lion', u'trot']
[u'manila', u'alert', u'protest']
[u'maori', u'claim', u'breakthrough', u'lion']
[u'mclaren', u'pace', u'canada']
[u'melandri', u'set', u'pace', u'catalan', u'practic']
[u'merckx', u'win', u'stage', u'landaluz', u'lead', u'dauphin']
[u'mix', u'respons', u'church']
[u'nasa', u'chief', u'oust', u'report']
[u'hick', u'lawyer', u'find', u'hope', u'comment']
[u'telstra', u'boss', u'vow', u'bridg', u'divid']
[u'hous', u'death', u'toll', u'climb']
[u'nuttal', u'defend', u'hospit']
[u'nuttal', u'denial', u'health', u'woe', u'opposit']
[u'hold', u'bomb', u'threat', u'tasmanian', u'school']
[u'opposit', u'criticis', u'carr', u'power', u'plan']
[u'patel', u'fair', u'trial', u'concern', u'nonsens']
[u'patel', u'patient', u'urg', u'compens', u'chang']
[u'paul', u'roo', u'interview']
[u'perth', u'get', u'anglican', u'archbishop']
[u'plan', u'museum']
[u'plan', u'centr', u'asylum', u'seeker', u'drop']
[u'polic', u'curb', u'road', u'toll']
[u'polic', u'hunt', u'black', u'swan', u'killer']
[u'polic', u'investig', u'death', u'custodi']
[u'polic', u'search', u'alleg', u'attack', u'trio']
[u'polic', u'sniff', u'indoor', u'cannabi', u'crop']
[u'port', u'power', u'bulldog']
[u'posit', u'test']
[u'probe', u'continu', u'evas', u'scheme']
[u'democraci', u'group', u'ralli', u'support', u'defector']
[u'labor', u'confer', u'focus']
[u'rabbitoh', u'stun', u'eagl']
[u'raid', u'candid']
[u'remain', u'costa', u'rica', u'australian']
[u'roddick', u'beat', u'grosjean', u'queen']
[u'rural', u'doctor', u'debat', u'get', u'heat']
[u'saint', u'punish', u'lacklustr', u'hawk']
[u'school', u'flood', u'toll', u'rise']
[u'sealant', u'help', u'water', u'flow', u'dam']
[u'search', u'paper', u'scissor', u'rock', u'champion', u'begin']
[u'sharapova', u'battl', u'past', u'daniilidou', u'semi', u'final']
[u'skaif', u'win', u'shootout']
[u'relief', u'farmer', u'rain', u'fall']
[u'sorenstam', u'lpga', u'championship']
[u'spotlight', u'turn', u'paparazzi']
[u'basil', u'win', u'stradbrok']
[u'swift', u'phoenix', u'remain', u'undef']
[u'sydney', u'readi', u'oceania', u'final']
[u'sydney', u'secur', u'championship', u'berth']
[u'syria', u'compil', u'lebanon', u'list']
[u'thousand', u'attend', u'anti', u'arroyo', u'protest']
[u'tiger', u'play', u'minut', u'say']
[u'time', u'trial', u'scrap', u'olymp', u'track', u'cycl']
[u'sheen', u'interview']
[u'injur', u'caravan', u'freeway', u'roll']
[u'unrest', u'keep', u'coupl', u'strand', u'bolivia']
[u'appoint', u'vice', u'admir', u'counter', u'terror', u'post']
[u'scienc', u'bodi', u'attempt', u'evolut', u'fact']
[u'agre', u'wipe', u'countri', u'debt']
[u'complet', u'unit']
[u'vote', u'pledg', u'eas', u'bolivian', u'protest']
[u'wallabi', u'thrash', u'samoa']
[u'wall', u'street', u'mix', u'amid', u'tech', u'sell']
[u'wealth', u'moot', u'eas', u'rich', u'poor']
[u'wild', u'storm', u'damag', u'murray', u'malle', u'build']
[u'young', u'socceroo', u'draw', u'open', u'match']
[u'yunupingu', u'corrupt', u'alleg', u'probe']
[u'tourist', u'miss', u'nation', u'park']
[u'children', u'dead', u'china', u'flash', u'flood']
[u'advertis', u'wont', u'boost', u'congreg']
[u'affection', u'german', u'group', u'record']
[u'afghanistan', u'begin', u'second', u'illeg', u'arm', u'crackdown']
[u'ageless', u'sheringham', u'stay', u'hammer']
[u'alcan', u'allay', u'worker', u'safeti', u'concern']
[u'anti', u'protest', u'arrest']
[u'aussi', u'trounc', u'leicestershir']
[u'aussi', u'trio', u'touch', u'booz', u'allen', u'classic']
[u'aust', u'invest', u'skill', u'infastructur', u'beazley']
[u'fire', u'name', u'world', u'second', u'best', u'beach']
[u'beatti', u'defend', u'health', u'minist']
[u'beazley', u'say', u'debt', u'push', u'aust', u'edg']
[u'bicton', u'school', u'readi', u'reopen', u'tornado']
[u'blast', u'derail', u'train', u'russia']
[u'bomb', u'blast', u'iran', u'kill']
[u'botero', u'tame', u'dauphin', u'killer', u'climb', u'stage']
[u'brian', u'smith', u'michael', u'hagan', u'john', u'morri']
[u'button', u'edg', u'schumach', u'canadian', u'pole']
[u'qasim', u'releas']
[u'china', u'embassi', u'chen', u'illeg', u'brown']
[u'cat', u'clip', u'crow']
[u'chris', u'flanneri', u'petero', u'civoniceva']
[u'pledg', u'commercialis', u'film', u'industri']
[u'clps', u'film', u'industri', u'plan', u'futur']
[u'join', u'bundaberg', u'death', u'custodi', u'probe']
[u'darwin', u'council', u'consid', u'citi', u'promot']
[u'delight', u'princ', u'william', u'graduat', u'honour']
[u'desert', u'racer', u'carri', u'despit', u'rider', u'death']
[u'dozen', u'flee', u'arlen', u'hit', u'coast']
[u'dragon', u'lose', u'head', u'beat', u'cowboy']
[u'coal', u'power']
[u'timores', u'asylum', u'seeker', u'cycl', u'uncertainti']
[u'famili', u'wait', u'remain', u'costa', u'rica']
[u'farmer', u'rush', u'plant', u'crop', u'rain']
[u'festiv', u'fund', u'grab']
[u'anti', u'protest', u'arrest']
[u'franc', u'beat', u'fiji', u'thriller', u'pari', u'seven']
[u'french', u'hostag', u'iraq', u'aliv', u'media', u'group', u'say']
[u'french', u'journalist', u'free', u'iraq']
[u'debt', u'deal', u'give', u'cautious', u'welcom']
[u'reach', u'deal', u'world', u'poor']
[u'gallop', u'warn', u'wast', u'water', u'wake', u'rain']
[u'gear', u'name', u'black', u'squad']
[u'govt', u'disput', u'infrastructur', u'cost', u'blowout', u'claim']
[u'govt', u'unclear', u'qasim', u'ident']
[u'govt', u'consid', u'extra', u'storm', u'karoonda']
[u'green', u'happi', u'vintag']
[u'gregan', u'tuqiri', u'line', u'return', u'itali']
[u'hackett', u'climb', u'mountain', u'montreal']
[u'health', u'dept', u'defend', u'karratha', u'abort', u'figur']
[u'hunt', u'sourc', u'river', u'spill']
[u'indonesian', u'presid', u'say']
[u'inquiri', u'hear', u'pacif', u'upgrad', u'concern']
[u'intellig', u'agenc', u'look', u'defector', u'claim']
[u'intern', u'gulf', u'widen']
[u'jone', u'montgomeri', u'flop', u'mexico', u'sprint']
[u'kangaroo', u'tame', u'tiger']
[u'kelli', u'secur', u'shanghai', u'round']
[u'kuwait', u'seek', u'death', u'penalti', u'australian', u'milit']
[u'labor', u'parti', u'oppos', u'nuclear', u'plan']
[u'labor', u'reiter', u'releas', u'palmer', u'report']
[u'restrict', u'compo', u'patel', u'patient', u'lawyer']
[u'lebanon', u'vote', u'round', u'poll']
[u'lion', u'wilkinson', u'wellington', u'clash']
[u'love', u'stori', u'triumph', u'bollywood', u'award']
[u'magpi', u'toss', u'buckley', u'return']
[u'mandela', u'rock', u'global', u'respons', u'aid']
[u'mcgee', u'finish', u'fifth', u'switzerland']
[u'mercuri', u'jone', u'lead', u'warrior', u'victori']
[u'polic', u'need', u'combat', u'arm', u'robberi', u'pratt']
[u'rain', u'come']
[u'weather', u'victoria', u'horizon']
[u'mum', u'gene', u'blame', u'male', u'hair', u'loss']
[u'nathan', u'brown', u'graham', u'murray', u'shaun', u'timmin']
[u'nation', u'debt', u'high', u'beazley']
[u'candid', u'wife', u'cancer', u'death']
[u'leader', u'littl', u'weight', u'opinion', u'poll']
[u'nuclear', u'power', u'expens', u'danger', u'garrett']
[u'nuttal', u'burn', u'bridg']
[u'offic', u'alleg', u'threaten', u'machet']
[u'opposit', u'reiter', u'immigr', u'royal']
[u'palestinian', u'author', u'execut']
[u'palestinian', u'milit', u'arm', u'israel']
[u'pheasant', u'hunter', u'warn', u'danger']
[u'polic', u'hunt', u'bottl', u'shop', u'hold']
[u'polic', u'investig', u'rap']
[u'polic', u'search', u'miss', u'chines', u'teenag']
[u'polic', u'search', u'miss', u'fishermen']
[u'pope', u'call', u'cathol', u'attend', u'sunday', u'mass']
[u'power', u'look', u'build', u'win']
[u'propon', u'artifici', u'reef', u'seek', u'feder', u'fund']
[u'protest', u'attempt', u'halt', u'joint', u'militari', u'exercis']
[u'qasim', u'terribl', u'state', u'smith', u'say']
[u'health', u'plagu', u'problem', u'doctor']
[u'rain', u'hearten', u'drought', u'stricken', u'farmer']
[u'real', u'beti', u'claim', u'spanish']
[u'record', u'number', u'women', u'nomin', u'busi', u'award']
[u'roddick', u'close', u'queen', u'trick']
[u'samoa', u'prop', u'johnston', u'give', u'week']
[u'school', u'threat', u'accus', u'child', u'porn', u'convict']
[u'score', u'kill', u'iraq', u'violenc']
[u'senior', u'stroke', u'lead', u'dutch', u'open']
[u'sharapova', u'birmingham', u'titl', u'repeat']
[u'shaun', u'mcrae', u'interview']
[u'shrink', u'brain', u'barrier', u'learn', u'studi']
[u'skill', u'shortag', u'affect', u'project', u'mine', u'bodi']
[u'sorenstam', u'control', u'lpga', u'championship']
[u'springbok', u'smash', u'record', u'uruguay', u'rout']
[u'claim', u'help', u'chen', u'case', u'ruddock']
[u'student', u'union', u'fear', u'curtin', u'cours']
[u'swan', u'outclass', u'docker']
[u'swan', u'weari', u'inconsist', u'docker']
[u'tasmanian', u'farmer', u'welcom', u'soak', u'rain']
[u'tree', u'industri', u'confid', u'prove', u'safeti']
[u'toni', u'kemp', u'craig', u'bellami']
[u'trujillo', u'cite', u'sell', u'telstra', u'job', u'attract']
[u'tyson', u'call', u'quit', u'humbl', u'surrend']
[u'tyson', u'quit', u'mcbride']
[u'strike', u'kill', u'iraq', u'insurg']
[u'scare', u'prove', u'need', u'tag']
[u'wale', u'waltz', u'easi', u'canada']
[u'walker', u'recov', u'nation', u'park', u'fall']
[u'plan', u'nation', u'trust', u'privatis']
[u'wayn', u'bennett', u'matthew', u'elliott', u'shane', u'webck', u'brett']
[u'webck', u'applaud', u'bronco', u'depth']
[u'widespread', u'rain', u'prompt', u'farm', u'frenzi']
[u'woman', u'kill', u'smash']
[u'work', u'dog', u'hammer', u'kelpi', u'muster']
[u'world', u'defus', u'dardanell', u'strait']
[u'bodi', u'iraq', u'soldier', u'kill']
[u'leav', u'east', u'timor']
[u'adriano', u'doubl', u'give', u'inter', u'final', u'advantag']
[u'afghan', u'bomb', u'target', u'soldier']
[u'alcan', u'deni', u'worker', u'live', u'detent', u'centr']
[u'hold', u'back', u'immigr', u'inquiri']
[u'ambul', u'rspca', u'welcom', u'unev', u'firework']
[u'ancient', u'seed', u'sprout', u'date', u'palm']
[u'archaeologist', u'hope', u'clue', u'founder']
[u'asbesto', u'campaign', u'queen', u'birthday', u'honour', u'list']
[u'aust', u'pakistan', u'sign', u'counter', u'terror', u'pact']
[u'australian', u'militari', u'end', u'east', u'timor']
[u'australian', u'women', u'help', u'test', u'breast', u'cancer', u'drug']
[u'australia', u'readi', u'meet', u'demand', u'scare']
[u'aust', u'troop', u'leav', u'timor', u'earli', u'academ']
[u'avenel', u'sheep', u'farmer', u'get', u'queen', u'birthday', u'honour']
[u'bacon', u'recognis', u'honour', u'list']
[u'bacon', u'life', u'polit', u'recognis', u'posthum']
[u'bangladesh', u'clinch']
[u'barker', u'book', u'strike']
[u'beatti', u'pledg', u'support', u'clean', u'coal', u'technolog']
[u'beatti', u'unfaz', u'preselect', u'chang']
[u'blair', u'depart', u'european', u'tour', u'ahead']
[u'blair', u'putin', u'meet', u'ahead', u'summit']
[u'blatter', u'order', u'red', u'report', u'tokyo', u'duti']
[u'blue', u'love', u'hate', u'webb']
[u'blue', u'sweat', u'gasnier']
[u'bomb', u'rock', u'tajikistan']
[u'brazil', u'draw', u'line', u'sting', u'argentina']
[u'british', u'face', u'bail', u'court']
[u'british', u'memo', u'rais', u'post', u'iraq', u'concern']
[u'busi', u'chamber', u'back', u'cooma', u'flight']
[u'develop', u'clean', u'asbesto', u'riddl']
[u'chang', u'allow', u'second', u'murray', u'river']
[u'bomber', u'strike', u'indian', u'kashmir']
[u'crash', u'adelaid', u'home']
[u'carr', u'approv', u'uranquinti', u'power', u'plant']
[u'cat', u'count', u'cost']
[u'cheney', u'deni', u'guantanamo', u'close']
[u'chines', u'flood', u'toll', u'continu', u'rise']
[u'clark', u'kasper', u'thiev']
[u'clark', u'kasper', u'target', u'thiev']
[u'promis', u'expans', u'test', u'crime']
[u'coff', u'rape', u'spark', u'polic', u'warn']
[u'communic', u'breakdown', u'frustrat', u'william', u'creek']
[u'corbi', u'lawyer', u'enlist', u'soap', u'opera', u'starlet']
[u'council', u'approv', u'child', u'care', u'centr', u'design']
[u'council', u'consid', u'forgo', u'econom', u'develop']
[u'council', u'meet', u'reveal', u'legal', u'wrangl']
[u'damag', u'karoonda', u'storm', u'grow']
[u'demon', u'demolish', u'magpi']
[u'destroy', u'spark', u'polit', u'backlash']
[u'dingo', u'shoot', u'trigger', u'feed', u'warn']
[u'evid', u'lead', u'rape', u'convict']
[u'doctor', u'welcom', u'beatti', u'start', u'mend', u'relat']
[u'dog', u'fetch', u'price', u'auction']
[u'doubt', u'cast', u'indigen', u'titl', u'plan']
[u'duck', u'shoot', u'season', u'draw']
[u'earthquak', u'rock', u'indonesian', u'island']
[u'east', u'timor', u'mission']
[u'tourism', u'retreat', u'award', u'winner']
[u'effort', u'continu', u'stop', u'river', u'spill']
[u'wallabi', u'play', u'mosquito']
[u'employ', u'tire', u'trucki']
[u'environment', u'probe', u'order', u'hous', u'plan']
[u'environ', u'centr', u'back', u'wetland', u'plan']
[u'recommend', u'power', u'station', u'colli']
[u'extradit', u'process', u'limit', u'patel', u'charg']
[u'fall', u'land', u'sale', u'offer', u'hope', u'greater', u'coast']
[u'fatal', u'accid', u'near', u'rolleston']
[u'feder', u'beat', u'safin', u'straight', u'hall']
[u'fleec', u'fall', u'world', u'shear', u'titl']
[u'salvo', u'award', u'work', u'africa']
[u'water', u'boss', u'call', u'effici']
[u'franc', u'deni', u'ransom', u'pay', u'journalist', u'releas']
[u'freeman', u'consid', u'coach', u'career']
[u'debt', u'deal', u'astonish', u'costello']
[u'garcia', u'beat', u'scott', u'booz', u'allen', u'titl']
[u'giant', u'extermin', u'physic', u'redback']
[u'glenti', u'organis', u'celebr', u'festiv', u'turnout']
[u'govt', u'announc', u'date', u'tallowa', u'expans']
[u'govt', u'inquiri', u'consid', u'mine', u'buffer', u'rule']
[u'govt', u'pledg', u'storm', u'ravag', u'town']
[u'greenpeac', u'protest', u'ship', u'moor', u'brisban']
[u'green', u'question', u'award', u'immigr', u'chief']
[u'guantanamo', u'interrog', u'wrong', u'danger', u'dumb']
[u'guantanamo', u'reveal', u'interrog', u'techniqu']
[u'handov', u'end', u'east', u'timor', u'mission']
[u'heavi', u'rain', u'forc', u'highway', u'closur']
[u'hindu', u'attack', u'missionari']
[u'hobart', u'polic', u'search', u'shoot', u'suspect']
[u'honour', u'list', u'award', u'australian']
[u'hospit', u'anaesthetist', u'plan']
[u'hotel', u'guest', u'face', u'court', u'accus', u'evad', u'bill']
[u'immigr', u'boss', u'urg', u'refus', u'queen', u'honour']
[u'indigen', u'activist', u'linguist', u'award', u'queen']
[u'indigen', u'communiti', u'make', u'headway', u'fight']
[u'indonesian', u'presid', u'phone']
[u'injur', u'lion', u'mend']
[u'iraqi', u'challeng', u'strike', u'claim']
[u'iron', u'mike']
[u'face', u'construct', u'program', u'overhaul']
[u'japanes', u'appetit', u'abalon', u'prompt', u'expans']
[u'japan', u'scientif', u'whale', u'sham']
[u'cottag', u'redevelop', u'plan', u'caus', u'confus']
[u'klinsmann', u'german', u'face', u'major', u'test']
[u'labor', u'speechwrit', u'accus', u'howard', u'revision']
[u'labor', u'work', u'liber', u'detent', u'bill']
[u'lane', u'investig', u'public', u'alarm', u'children']
[u'littl', u'rain', u'leav', u'peninsula', u'drought']
[u'live', u'set', u'text', u'record']
[u'local', u'join', u'queen', u'birthday', u'honour']
[u'local', u'recognis', u'queen', u'birthday', u'honour']
[u'long', u'weekend', u'driver', u'warn', u'complac']
[u'turnout', u'italian', u'fertil', u'referendum']
[u'charg', u'cabooltur', u'stab']
[u'manhunt', u'continu', u'fatal', u'shoot']
[u'manjimup', u'lose', u'horticultur', u'land', u'timber', u'firm']
[u'face', u'court', u'accus', u'drive', u'near']
[u'machin', u'runner', u'challeng', u'rattler']
[u'martin', u'highlight', u'achiev', u'launch']
[u'mcenro', u'doubt', u'scud', u'comeback']
[u'mcguir', u'bray', u'wickham', u'honour', u'birthday', u'list']
[u'meet', u'offer', u'qualifi', u'support', u'bypass', u'road']
[u'meet', u'urg', u'high', u'rise', u'height', u'limit']
[u'melbourn', u'student', u'head', u'cultur', u'exchang']
[u'west', u'share', u'queen', u'birthday', u'honour']
[u'migaloo', u'spot', u'coast']
[u'minist', u'meet', u'break', u'hill', u'youth', u'group']
[u'miss', u'sydney', u'teen', u'walk', u'nation', u'park']
[u'miss', u'tourist']
[u'miss', u'tourist']
[u'power', u'seek', u'child', u'support', u'agenc']
[u'rain', u'forecast', u'central', u'west']
[u'rain', u'need', u'boost', u'farm', u'effort']
[u'motorcyclist', u'die', u'nation', u'park', u'crash']
[u'murray', u'say', u'kick', u'game', u'let', u'cowboy']
[u'musharraf', u'arriv', u'aust']
[u'nativ', u'titl', u'tribun', u'pleas', u'dampier']
[u'offer', u'lake', u'burley', u'griffin', u'water', u'plan']
[u'netbal', u'entri', u'brisban', u'comp', u'hing']
[u'netbal', u'game', u'remot', u'communiti']
[u'netbal', u'ident', u'queen', u'birthday', u'honour']
[u'lead', u'emerg', u'miss', u'sydney', u'girl']
[u'oval', u'owner', u'consid', u'communiti']
[u'dead', u'iranian', u'bomb', u'blast']
[u'independ', u'leav', u'prefer', u'open']
[u'nuttal', u'urg', u'chang', u'tune', u'region', u'health']
[u'kill', u'wound', u'bomb', u'attack', u'iranian']
[u'opposit', u'conced', u'lebanes', u'poll']
[u'owen', u'admit', u'forc', u'real']
[u'pair', u'court', u'potter', u'theft']
[u'patel', u'patient', u'entitl', u'compo', u'beatti', u'say']
[u'peac', u'protest', u'face', u'court']
[u'pink', u'floyd', u'reform', u'live', u'concert']
[u'plane', u'jettison', u'japanes', u'roof']
[u'polic', u'biki', u'oper', u'net', u'gun', u'cash', u'drug']
[u'polic', u'catch', u'long', u'weekend', u'speeder']
[u'polic', u'fear', u'miss', u'echuca', u'woman']
[u'polic', u'fear', u'safeti', u'miss', u'tourist']
[u'polic', u'investig', u'dead', u'bushwalk']
[u'pont', u'back', u'symond', u'ahead']
[u'popul', u'studi', u'doesnt', u'faze', u'ballina', u'mayor']
[u'portland', u'singa', u'claim', u'brisban']
[u'premier', u'critic', u'robina', u'stab', u'report']
[u'prosecutor', u'dismiss', u'call', u'corbi']
[u'prosecutor', u'lodg', u'corbi', u'appeal']
[u'public', u'urg', u'involv', u'lobster', u'studi']
[u'famili', u'deni', u'miss', u'sydney', u'girl']
[u'queen', u'birthday', u'honour', u'flow', u'south', u'australian']
[u'queen', u'birthday', u'honour', u'costello', u'mcguir']
[u'queen', u'honour', u'immigr', u'secretari']
[u'queen', u'honour', u'recognis', u'artist']
[u'queensland', u'share', u'queen', u'birthday', u'honour']
[u'raikkonen', u'win', u'dramat', u'canadian']
[u'rain', u'bring', u'littl', u'farmer']
[u'rain', u'fall', u'southern']
[u'ralli', u'hear', u'chen', u'defect']
[u'rescu', u'prompt', u'review', u'park', u'tour']
[u'resid', u'fear', u'polici', u'chang', u'affect', u'timber']
[u'roddick', u'lift', u'straight', u'queen', u'trophi']
[u'ask', u'north', u'korea', u'strateg', u'talk', u'decis']
[u'rossi', u'make']
[u'polic', u'driver', u'care', u'road']
[u'score', u'resid', u'recognis', u'honour', u'list']
[u'search', u'continu', u'miss', u'echuca', u'woman']
[u'search', u'continu', u'miss', u'tourist']
[u'search', u'miss', u'girl', u'continu']
[u'search', u'miss', u'tourist', u'continu']
[u'search', u'underway', u'tourist', u'miss']
[u'senat', u'expect', u'immigr', u'inquiri']
[u'senior', u'diplomat', u'surviv', u'iraq', u'bomb']
[u'sharapova', u'warm', u'wimbledon', u'style']
[u'shoot', u'suspect', u'urg', u'turn']
[u'socceroo', u'face', u'stern', u'test', u'germani']
[u'soldier', u'surgeon', u'carer', u'recognis', u'honour']
[u'sorenstam', u'halfway', u'grand', u'slam', u'feat']
[u'south', u'west', u'share', u'queen', u'birthday', u'honour']
[u'steven', u'face', u'second']
[u'storm', u'bring', u'rain', u'aplenti', u'south', u'east']
[u'storm', u'whip', u'strong', u'wind', u'malle', u'wimmera']
[u'tahiti', u'court', u'acquit', u'euthanasia', u'accus']
[u'energi', u'minist', u'dismiss', u'clps', u'power', u'comparison']
[u'telstra', u'chief', u'renew', u'bush', u'debat', u'joyc']
[u'test', u'save', u'victim', u'coron']
[u'great', u'australian', u'outback', u'cattl', u'drive']
[u'tikrit', u'suicid', u'bomb', u'kill', u'injur']
[u'tourist', u'night', u'nation', u'park']
[u'traffic', u'flow', u'creek', u'bridg']
[u'transport', u'fund', u'boost', u'patient', u'communiti']
[u'troubl', u'tyson', u'seek', u'solac', u'missionari', u'work']
[u'truffl', u'harvest']
[u'ullrich', u'edg', u'mcgee', u'roger', u'season']
[u'strength', u'argentina', u'world', u'recc']
[u'union', u'push', u'inquiri', u'carr']
[u'union', u'want', u'fair', u'nestl', u'redund']
[u'claim', u'like', u'claim', u'syria']
[u'offici', u'target', u'middl', u'east']
[u'vanston', u'take', u'yunupingu', u'claim', u'serious']
[u'driver', u'take', u'king', u'desert', u'titl']
[u'scientist', u'develop', u'bird', u'test']
[u'weekend', u'rain', u'littl', u'impact', u'level']
[u'wellington', u'name', u'nonu', u'lion', u'clash']
[u'number', u'insist']
[u'welcom', u'pakistani', u'presid']
[u'widespread', u'rain', u'good', u'news', u'farmer']
[u'woman', u'hurt', u'suspect', u'road', u'rage', u'incid']
[u'woman', u'rap', u'newcastl']
[u'women', u'recruit', u'cancer', u'drug', u'trial']
[u'woodsid', u'plan', u'brows', u'basin', u'drill']
[u'wool', u'market', u'hit', u'year']
[u'workcov', u'crack', u'trucki', u'schedul']
[u'workshop', u'focus', u'algal', u'bloom', u'manag']
[u'work', u'start', u'year', u'tomago', u'power', u'plant']
[u'world', u'bank', u'chief', u'make', u'africa', u'trip']
[u'youth', u'voic', u'hear', u'plate', u'debat']
[u'abar', u'say', u'farm', u'success', u'weather']
[u'abattoir', u'audit', u'lead', u'export', u'suspens']
[u'aborigin', u'communiti', u'urg', u'speak', u'atsic']
[u'academ', u'back', u'univers', u'financi', u'effort']
[u'accus', u'face', u'court', u'assault']
[u'adcock', u'win', u'rise', u'star', u'nomin']
[u'alcan', u'pipelin', u'talk']
[u'question', u'govt', u'chang', u'cigarett']
[u'arsenal', u'striker', u'persi', u'hold', u'rape', u'charg']
[u'widen', u'fraud', u'probe']
[u'attack', u'driver', u'prompt']
[u'request', u'hold', u'cost', u'iraq']
[u'backbench', u'call', u'improv', u'telstra', u'bush']
[u'barker', u'accept', u'week']
[u'bateman', u'foreshor', u'plan', u'spark', u'mix', u'reaction']
[u'beatti', u'rule', u'indemn', u'patel']
[u'beazley', u'urg', u'georgiou', u'introduc', u'privat']
[u'turnout', u'school', u'anniversari', u'celebr']
[u'biotechnolog', u'fare', u'attract', u'strong', u'aust']
[u'black', u'offer', u'tip', u'young', u'hope']
[u'black', u'swan', u'death', u'prompt', u'duck', u'shoot']
[u'bodi', u'metr', u'sinkhol']
[u'bomber', u'strike', u'kurd', u'prepar', u'instal']
[u'brack', u'govt', u'deni', u'avoid', u'health', u'scrutini']
[u'bronco', u'expect', u'barn', u'switch', u'decis', u'soon']
[u'builder', u'uncov', u'histor', u'crypt']
[u'bundaberg', u'patient', u'seek', u'compo', u'meet']
[u'burni', u'famili', u'safe', u'escap', u'hous', u'blaze']
[u'busi', u'survey', u'warn', u'volatil']
[u'cahil', u'fire', u'biggest', u'game', u'life']
[u'canberra', u'incom', u'polic', u'chief', u'lay', u'prioriti']
[u'candid', u'reserv', u'decis', u'libel', u'claim']
[u'chemic', u'scare', u'forc', u'busi', u'evacu']
[u'child', u'result', u'time']
[u'chilean', u'earthquak', u'toll', u'rise']
[u'chile', u'quak', u'halt', u'product']
[u'china', u'order', u'media', u'silenc', u'villag', u'clash']
[u'chines', u'banker', u'accus', u'embezzl']
[u'chines', u'beauti', u'test', u'brain', u'pois']
[u'chines', u'teacher', u'hail', u'flood', u'heroic']
[u'citrus', u'grower', u'demand', u'tree', u'remov', u'compo']
[u'claim', u'govt', u'mistak', u'indigen', u'leadership']
[u'helper', u'hand', u'smoke', u'say']
[u'senat', u'work', u'coalit']
[u'stand', u'power', u'line', u'plan']
[u'commonwealth', u'bank', u'announc']
[u'compani', u'invest', u'uranium', u'project']
[u'conf', u'test', u'possibl', u'rule', u'chang']
[u'corbi', u'appeal', u'lodg']
[u'corbi', u'lawyer', u'lodg', u'appeal']
[u'council', u'consid', u'jetti', u'fish']
[u'council', u'push', u'flight']
[u'crane', u'accid', u'forc', u'train', u'delay']
[u'crop', u'belt', u'record', u'decent', u'rainfal']
[u'crop', u'sow', u'orphan', u'victim']
[u'danih', u'face', u'life', u'neitz']
[u'debt', u'forgiven', u'poverti', u'solut']
[u'dengu', u'link', u'mosquito', u'torr', u'strait']
[u'devonport', u'home', u'base', u'port', u'corp']
[u'attack', u'put', u'homebush', u'hospit']
[u'dog', u'involv', u'homebush', u'attack']
[u'downer', u'defend', u'contact', u'chines', u'embassi', u'chen']
[u'draper', u'clay', u'courter', u'pull', u'wimbledon']
[u'drink', u'driver', u'baffl', u'south', u'east', u'polic']
[u'drive', u'attempt', u'robberi', u'link', u'polic']
[u'probe', u'whale', u'zone', u'breach', u'report']
[u'dump', u'bodi', u'iraq']
[u'test', u'need', u'offici', u'back', u'say']
[u'earth', u'like', u'planet', u'detect']
[u'eel', u'faith', u'vella', u'futur']
[u'effort', u'child', u'assault']
[u'back', u'diamond', u'expans']
[u'footbal', u'star', u'best', u'face', u'alleg', u'indec']
[u'expert', u'dispel', u'weed', u'fear']
[u'famili', u'jail', u'wife', u'stab', u'murder']
[u'farmer', u'warn', u'africa', u'land', u'offer']
[u'farmer', u'welcom', u'rain', u'need']
[u'spark', u'power', u'suppli', u'interrupt']
[u'risk', u'jump', u'winter']
[u'firework', u'polici', u'work', u'say', u'govt']
[u'citrus', u'shipment', u'expect']
[u'snow', u'turn', u'dinner', u'plain', u'winter']
[u'fish', u'comp', u'hook', u'crowd']
[u'burma', u'face', u'close', u'trial']
[u'frail', u'jackson', u'clear', u'charg']
[u'ganguli', u'harbhajan', u'join', u'tsunami', u'appeal', u'line']
[u'garrett', u'urg', u'govt', u'follow', u'lead']
[u'gasnier', u'clear', u'origin']
[u'gasnier', u'clear', u'play']
[u'gatto', u'juri', u'retir', u'consid', u'verdict']
[u'glazer', u'tighten', u'grip', u'unit']
[u'govt', u'accus', u'inact', u'biosecur']
[u'govt', u'get', u'tough', u'illeg', u'backpack', u'accommod']
[u'govt', u'urg', u'instal', u'speed', u'camera', u'coff']
[u'green', u'offic', u'break', u'investig']
[u'group', u'fear', u'nation', u'park', u'lockout']
[u'group', u'review', u'swan', u'coastal', u'plain', u'wetland', u'polici']
[u'grow', u'demand', u'spark', u'power', u'station', u'revamp']
[u'grub', u'pose', u'threat', u'cane', u'farmer']
[u'guid', u'say', u'tourist', u'danger']
[u'hagan', u'happi', u'queensland', u'line']
[u'high', u'polic', u'presenc', u'help', u'maintain', u'safe', u'long']
[u'home', u'smoke', u'alarm', u'compulsori', u'carr']
[u'illawarra', u'remain', u'drought', u'free']
[u'india', u'hop', u'chappel', u'reviv', u'flag', u'fortun']
[u'inquest', u'probe', u'journalist', u'death', u'east', u'timor']
[u'inquiri', u'hear', u'obscen', u'funer', u'cost']
[u'jackson', u'guilti']
[u'jackson', u'go', u'free', u'trial', u'victori']
[u'jackson', u'music', u'world']
[u'jackson', u'quiet', u'court', u'jubil']
[u'jackson', u'defeat', u'prosecutor', u'defiant']
[u'jackson', u'wife', u'overjoy', u'guilti', u'verdict']
[u'jackson', u'fan', u'continu', u'celebr']
[u'player', u'fail', u'evid', u'corrupt']
[u'kilkivan', u'support', u'region', u'link', u'amalgam']
[u'king', u'bros', u'court', u'case', u'continu']
[u'king', u'learn', u'legal', u'troubl', u'say']
[u'klinsmann', u'back', u'defenc', u'frustrat', u'socceroo']
[u'knee', u'injuri', u'end', u'shaw', u'season']
[u'lack', u'cost']
[u'land', u'council', u'appeal', u'bardi', u'jawi', u'nativ']
[u'lomu', u'line', u'samoa']
[u'longerenong', u'colleg', u'futur', u'clearer']
[u'loud', u'flatmat', u'dare', u'deem', u'provoc', u'kill']
[u'macfarlan', u'upbeat', u'slow', u'economi']
[u'magpi', u'fear', u'shaw', u'season']
[u'hunt', u'call', u'bodi']
[u'face', u'court', u'kirwan', u'stab']
[u'market', u'eas', u'long', u'weekend', u'break']
[u'mayor', u'question', u'telstra', u'local', u'govt', u'partnership', u'plan']
[u'maywald', u'faze', u'chaffey', u'decis']
[u'mcgee', u'inquiri', u'hear', u'confus', u'blood', u'test', u'rule']
[u'mear', u'disappoint', u'event', u'axe']
[u'migaloo', u'head', u'coff', u'harbour']
[u'miner', u'look', u'combin', u'gold', u'nickel', u'benefit']
[u'mine', u'expect', u'boost', u'demand', u'esper']
[u'mobil', u'phone', u'corni']
[u'mother', u'want', u'bull', u'terrier', u'daughter', u'maul']
[u'back', u'coal', u'power']
[u'say', u'duck', u'shoot', u'agenda']
[u'tell', u'mater', u'rebuild', u'begin', u'year']
[u'want', u'relief', u'fund', u'storm', u'karoonda']
[u'gambier', u'properti', u'growth', u'high']
[u'musharraf', u'begin', u'visit']
[u'musharraf', u'tour', u'memori']
[u'foreign', u'exchang', u'account', u'extraordinari']
[u'foreign', u'exchang', u'accus', u'admit', u'dishonesti']
[u'perth', u'trade', u'team', u'centr', u'complaint']
[u'nation', u'leader', u'step', u'asid']
[u'navratilova', u'tip', u'henin', u'hardenn', u'wimbledon']
[u'neglect', u'australia', u'cost', u'pakistan', u'musharraf']
[u'name']
[u'chief', u'head', u'wine', u'associ']
[u'nation', u'park', u'boost', u'creek', u'manag']
[u'readi', u'support', u'telstra', u'sale']
[u'north', u'west', u'farmer', u'welcom', u'weekend', u'rain']
[u'obes', u'smoke', u'acceler', u'age']
[u'olymp', u'organis', u'scrap', u'mear', u'golden', u'event']
[u'omeley', u'bulldog']
[u'dead', u'injur', u'road', u'smash', u'near']
[u'opposit', u'tip', u'hydro', u'plant', u'tourist', u'drawcard']
[u'organis', u'happi', u'desert', u'race']
[u'palmer', u'report', u'impetus', u'mental', u'health']
[u'palm', u'island', u'accus', u'miss', u'court', u'hear']
[u'parent', u'urg', u'respons']
[u'patel', u'patient', u'applaud', u'indemn', u'decis']
[u'perri', u'shire', u'seek', u'drought', u'declar']
[u'plan', u'citytrain', u'strike', u'call']
[u'fail', u'head', u'backbench', u'revolt']
[u'polic', u'continu', u'probe', u'motorcyclist', u'death']
[u'polic', u'happi', u'booz', u'result']
[u'polic', u'issu', u'theft', u'warn', u'busi']
[u'polic', u'crash', u'victim']
[u'polic', u'probe', u'rugbi', u'violenc', u'claim']
[u'polic', u'probe', u'school', u'aircondition', u'fire']
[u'polic', u'seiz', u'pill']
[u'pont', u'shrug', u'rout']
[u'postal', u'vote', u'deadlin', u'caus', u'concern']
[u'poultri', u'industri', u'back', u'quick', u'bird', u'test']
[u'power', u'earthquak', u'shake', u'northern', u'chile']
[u'power', u'station', u'waggaa', u'biggest', u'project']
[u'public', u'get', u'pacif', u'highway', u'work']
[u'public', u'speak', u'riverfront', u'develop']
[u'rain', u'boost', u'dryland', u'crop']
[u'rainfal', u'report', u'pictur', u'rural']
[u'rain', u'give', u'hope', u'south', u'west', u'grazier']
[u'rain', u'offer', u'relief', u'england', u'farmer']
[u'rain', u'stop', u'aquacultur']
[u'rann', u'give', u'evid', u'corrupt', u'trial']
[u'rebel', u'tabl', u'detent', u'bill']
[u'report', u'expect', u'urg', u'child', u'access']
[u'report', u'highlight', u'need', u'child', u'care', u'servic']
[u'review', u'advoc', u'child', u'support', u'shake']
[u'air', u'airport', u'secur', u'restrict', u'worri']
[u'robredo', u'coria', u'arthur', u'start', u'confid']
[u'rspca', u'check', u'welfar', u'outback', u'hous', u'anim']
[u'saddam', u'question', u'iraqi', u'judg']
[u'search', u'find', u'miss', u'echuca', u'woman']
[u'senat', u'question', u'relev', u'queen', u'birthday']
[u'assault', u'victim', u'sue', u'school', u'neglig']
[u'shanti', u'crackdown', u'prompt', u'tighter', u'sanction']
[u'shepherd', u'star', u'young', u'wallabi']
[u'ship', u'servic', u'tender', u'call']
[u'show', u'shepparton', u'drive']
[u'sleep', u'disord', u'affect', u'economi']
[u'snowi', u'mayor', u'hop', u'forc', u'merger', u'agenda']
[u'south', u'african', u'presid', u'sack', u'deputi']
[u'southern', u'farmer', u'face', u'eros', u'threat']
[u'south', u'west', u'tourism']
[u'steven', u'plead', u'guilti', u'miss', u'match']
[u'storm', u'leav', u'damag', u'trail', u'shepparton']
[u'strike', u'doctor', u'face', u'medic', u'board']
[u'support', u'chang', u'bring', u'mix', u'respons']
[u'survey', u'suggest', u'perform', u'art', u'ticket']
[u'sydney', u'beach', u'clear', u'swim']
[u'tasmanian', u'forum', u'consid', u'chang']
[u'bill', u'introduc', u'senat']
[u'cut', u'certainti', u'costello']
[u'schedul', u'introduc', u'senat']
[u'defector', u'valuabl', u'chen']
[u'time', u'run', u'famili', u'face', u'deport']
[u'toll', u'win', u'defenc', u'contract']
[u'toogoom', u'burrum', u'head', u'plan', u'open', u'public', u'comment']
[u'tougher', u'pinehurst', u'readi', u'roughen', u'golf', u'best']
[u'court', u'prepar', u'hear', u'trial', u'hate']
[u'vanston', u'urg', u'whistleblow', u'come', u'forward']
[u'victorian', u'coupl', u'escap', u'bolivian', u'unrest']
[u'volunt', u'convict', u'prompt', u'lifelin', u'review']
[u'lead', u'nation', u'lose', u'work', u'day']
[u'wallac', u'blast', u'dockland', u'surfac']
[u'warn', u'take', u'action', u'thin', u'wicket']
[u'word', u'erupt', u'timber', u'firm', u'futur']
[u'care', u'say', u'jackson', u'juri']
[u'winegrow', u'consid']
[u'world', u'price', u'rise']
[u'yunupingu', u'deni', u'misus', u'mine', u'royalti']
[u'kill', u'iraqi', u'armi', u'canteen', u'attack']
[u'academ', u'question', u'govt', u'transport', u'plan']
[u'justic', u'head', u'land', u'magistr', u'post']
[u'alpin', u'graze', u'move', u'closer', u'realiti']
[u'get', u'bullet', u'mail', u'parti', u'gangster']
[u'anderson', u'blame', u'water', u'crisi', u'state']
[u'aqi', u'issu', u'warn', u'meat', u'compani']
[u'astronaut', u'testifi', u'orbit']
[u'attack', u'england', u'ash', u'hope', u'lara']
[u'aust', u'pakistan', u'sign', u'counter', u'terror', u'deal']
[u'aust', u'repres', u'patel']
[u'australia', u'water']
[u'australian', u'wit', u'tsunami', u'panic', u'chile']
[u'aust', u'tourist', u'fine', u'chopper', u'crash']
[u'author', u'book', u'chicago', u'jail', u'arson']
[u'backbench', u'label', u'georgiou', u'support']
[u'background', u'info', u'detail', u'ashbourn', u'corrupt']
[u'bail', u'bomb', u'threat', u'accus', u'rais', u'school', u'safeti']
[u'barn', u'lift', u'red', u'blue']
[u'bather', u'pavilion', u'get', u'heritag', u'list']
[u'beatti', u'warn', u'patel']
[u'beazley', u'proud', u'stanc']
[u'biographi', u'unusu', u'novelist', u'win', u'book', u'prize']
[u'blue', u'thrive', u'pressur']
[u'bonlac', u'job', u'fonterra', u'chief', u'say']
[u'bougainvill', u'celebr']
[u'bougainvill', u'parliament', u'hold', u'sit']
[u'die', u'rid', u'disney', u'space', u'simul']
[u'brazil', u'rais', u'excit', u'ahead', u'conf']
[u'cairn', u'jail', u'drug']
[u'california', u'quak', u'briefli', u'trigger', u'tsunami', u'fear']
[u'calm', u'look', u'improv', u'whale', u'rescu', u'plan']
[u'canadian', u'govt', u'surviv', u'break', u'confid', u'vote']
[u'canker', u'farm', u'worker', u'tell', u'plant', u'destruct']
[u'canker', u'inquiri', u'hear', u'wit']
[u'casuarina', u'candid', u'tri', u'invas', u'charg']
[u'cathol', u'urg', u'doubl', u'australia']
[u'chief', u'judg', u'err', u'sentenc', u'mcgee', u'inquiri', u'tell']
[u'chines', u'defector', u'back', u'network', u'claim']
[u'chines', u'interrog', u'asylum', u'seeker', u'reckless']
[u'chines', u'powerlin', u'theft', u'hit', u'snag', u'lose', u'power']
[u'citrus', u'board', u'back', u'industri', u'studi']
[u'clijster', u'shin', u'return', u'grass']
[u'answer', u'land', u'deal']
[u'consular', u'access', u'immigr', u'detaine', u'standard']
[u'consum', u'confid', u'fall']
[u'coonambl', u'orphan', u'parent', u'rest']
[u'farmer', u'milk', u'price', u'rise']
[u'council', u'back', u'estat']
[u'council', u'budget', u'slug', u'beachfront', u'resid']
[u'council', u'maintain', u'tough', u'stanc', u'illeg', u'tree']
[u'council', u'push', u'citrus', u'grower', u'compo']
[u'council', u'seek', u'plan', u'chang']
[u'council', u'upset', u'delay', u'rail', u'line', u'meet']
[u'council', u'want', u'increas', u'pension', u'rat', u'rebat']
[u'court', u'find', u'favour', u'school', u'playground']
[u'court', u'tell', u'exchang', u'dealer', u'joke']
[u'court', u'pork', u'produc']
[u'coyl', u'appoint', u'boost', u'tiger', u'moral']
[u'deep', u'throat', u'tell', u'deep', u'throat']
[u'defenc', u'childcar', u'switch', u'prompt', u'mass', u'resign']
[u'dental', u'record', u'confirm', u'aust', u'tourist', u'dead']
[u'develop', u'board', u'boss', u'defend', u'china', u'trade', u'trip']
[u'develop', u'plan', u'lodg', u'south', u'bruce', u'retir']
[u'diesel', u'spill', u'highlight', u'toxic', u'dump', u'danger']
[u'document', u'contradict', u'annan', u'stanc', u'food']
[u'dog', u'sign', u'hugh', u'phelp']
[u'dougla', u'wood', u'free', u'say']
[u'downer', u'reflect', u'bougainvill', u'autonomi']
[u'downer', u'say', u'free', u'wood', u'lucki']
[u'drive', u'chang', u'busi', u'urg', u'govt']
[u'drug', u'abus', u'figur', u'prompt', u'attack', u'govt', u'polici']
[u'ethiopian', u'opposit', u'leader', u'releas']
[u'team', u'assess', u'role', u'aceh', u'peac', u'process']
[u'farmer', u'approv', u'compo', u'plan', u'veget']
[u'fellowship', u'lure', u'australian', u'research', u'home']
[u'code', u'cost', u'worri', u'council']
[u'firefight', u'smoke', u'alarm', u'regul']
[u'fish', u'harm', u'defibril', u'patient', u'studi']
[u'band', u'member', u'geldof']
[u'darwin', u'teacher', u'jail', u'gross', u'indec']
[u'fraud', u'charg', u'mount', u'ambul', u'administr']
[u'text', u'announc', u'wood', u'releas']
[u'fund', u'allow', u'illawarra', u'skill', u'audit']
[u'gatto', u'clear', u'underworld', u'murder']
[u'girl', u'assault', u'spiritu', u'husband', u'court', u'hear']
[u'golf', u'club', u'member', u'offer', u'access', u'assur']
[u'govt', u'appoint', u'diplomat', u'singapor']
[u'govt', u'defend', u'bikini', u'babe', u'grant']
[u'govt', u'float', u'compo', u'plan', u'farmer']
[u'govt', u'quiz', u'aquif', u'fund']
[u'govt', u'reject', u'shoalhaven', u'polic', u'staff', u'claim']
[u'govt', u'step', u'probe', u'offshor', u'haven']
[u'govt', u'urg', u'penalis', u'farmer', u'recent', u'rain']
[u'green', u'forc', u'debat', u'detent', u'bill']
[u'heavi', u'rubbish', u'truck', u'council']
[u'welcom', u'sand', u'mine', u'open']
[u'histori', u'john', u'stand', u'maroon', u'origin']
[u'home', u'owner', u'confront', u'basebal', u'wield']
[u'hostag', u'dougla', u'wood', u'rescu']
[u'howard', u'beazley', u'continu', u'fight']
[u'howard', u'dismiss', u'support', u'plan']
[u'indigen', u'servic', u'want', u'skin', u'diseas']
[u'indonesia', u'recal', u'ambassador', u'promot']
[u'injuri', u'plagu', u'colbert', u'reach', u'match']
[u'iran', u'defend', u'nuclear', u'facil']
[u'iran', u'fear', u'isra', u'nuclear', u'plant', u'attack']
[u'iraq', u'accid', u'kill', u'bulgarian', u'soldier']
[u'iraq', u'wheat', u'disput', u'polit', u'waff']
[u'japanes', u'begin', u'fresh', u'push', u'superson', u'travel']
[u'john', u'steer', u'blue', u'victori']
[u'knowl', u'back', u'power', u'plant', u'despit', u'opposit']
[u'koizumi', u'announc', u'retir']
[u'labor', u'oppos', u'gimmicki', u'health', u'insur', u'reward']
[u'lekka', u'readi', u'return']
[u'librari', u'debut', u'digit', u'audio', u'book']
[u'liverpool', u'finnan', u'arrest', u'pedestrian', u'death']
[u'lotteri', u'winner', u'turn', u'thief', u'blow', u'cash']
[u'maitland', u'indigen', u'job', u'offic']
[u'mall', u'traffic', u'oppon', u'protest', u'council']
[u'charg', u'sedit', u'arroyo', u'cheat']
[u'die', u'bass', u'highway', u'crash']
[u'hospit', u'violent', u'domest', u'disput']
[u'jail', u'drug', u'charg']
[u'rape', u'charg', u'face', u'murgon', u'court']
[u'face', u'court', u'accus', u'attack']
[u'market', u'rise', u'macfarlan', u'outlook']
[u'maroon', u'ahead', u'half', u'time']
[u'mathew', u'skipper', u'swan']
[u'mayor', u'air', u'cultur', u'precinct', u'council', u'concern']
[u'mcnamara', u'walk', u'celtic']
[u'medic', u'board', u'delay', u'psychiatrist', u'decis']
[u'merger', u'possibl', u'excit', u'mayor']
[u'microsoft', u'censor', u'china', u'blog']
[u'midwiv', u'polit', u'support', u'insur', u'help']
[u'miner', u'expect', u'rehab', u'plan']
[u'minist', u'approv', u'transfer']
[u'minist', u'plan', u'visit', u'bundaberg', u'doctor', u'lawyer']
[u'minist', u'visit', u'storm', u'damag', u'karoonda']
[u'mooney', u'weigh', u'busi', u'battl']
[u'mother', u'accus', u'kill', u'babi', u'grant', u'bail']
[u'condemn', u'polit', u'terrorist', u'comment']
[u'worri', u'extra', u'pressur', u'kingaroy']
[u'gambier', u'council', u'detail', u'draft', u'budget']
[u'surgeri', u'closur', u'expect', u'lengthen', u'doctor']
[u'trader', u'jail']
[u'nation', u'call', u'reward', u'help', u'patel']
[u'nestl', u'redund', u'talk', u'begin']
[u'face', u'name', u'women', u'ash', u'squad']
[u'hope', u'brain', u'tumour', u'patient']
[u'kimberley', u'drill', u'announc']
[u'sculptur', u'commemor', u'wwii', u'bomber']
[u'refuge', u'commission', u'start', u'work']
[u'ngos', u'challeng', u'manag', u'australia', u'detent']
[u'start', u'slight', u'favorit', u'origin']
[u'elect', u'hope', u'attend', u'ntcoss', u'forum']
[u'green', u'prefer', u'labor']
[u'opposit', u'seek', u'explan', u'gatto', u'acquitt']
[u'origin', u'audio', u'highlight']
[u'outgo', u'nation', u'leader', u'defend', u'futur', u'plan']
[u'pagan', u'tell', u'fevola', u'lift', u'game']
[u'palmer', u'delay', u'handov', u'report']
[u'parma', u'releg', u'play']
[u'pedestrian', u'die', u'truck', u'encount']
[u'perth', u'nightclub', u'warn', u'risk']
[u'perth', u'polic', u'investig', u'home', u'invas']
[u'recommend', u'senior', u'polic', u'face', u'charg']
[u'platypus', u'lead', u'supermarket', u'check']
[u'leav', u'detent', u'deal', u'door', u'open']
[u'polic', u'face', u'charg', u'bulldog', u'inquiri']
[u'policeman', u'liken', u'accid', u'homicid']
[u'polic', u'prepar', u'death', u'custodi', u'report']
[u'polic', u'struggl', u'retriv', u'bodi', u'sinkhol']
[u'politician', u'worri', u'magistr', u'workload']
[u'pont', u'look', u'confid', u'boost']
[u'protest', u'renew', u'campaign', u'live', u'sheep', u'trade']
[u'public', u'urg', u'meninde', u'lake']
[u'push', u'nativ', u'pet', u'save', u'speci', u'cane']
[u'push', u'reform', u'assault', u'trial', u'law']
[u'quarri', u'worker', u'die', u'truck', u'crash']
[u'rail', u'servic', u'disrupt', u'worker']
[u'rain', u'expect', u'boost', u'stock', u'forag']
[u'rain', u'tip', u'bring', u'bumper', u'esper', u'harvest']
[u'ranger', u'buy', u'boat', u'council', u'reject', u'compo']
[u'rebel', u'liber', u'label', u'polit', u'terrorist']
[u'red', u'dump', u'major', u'sponsor']
[u'red', u'expect', u'sign', u'barn']
[u'red', u'releas', u'stile']
[u'report', u'sean', u'penn', u'cover', u'iranian', u'poll']
[u'report', u'find', u'consum', u'confid', u'slide']
[u'report', u'predict', u'north', u'coast', u'growth']
[u'resid', u'form', u'action', u'group', u'oppos', u'saleyard']
[u'ricki', u'stuart', u'danni', u'buderus']
[u'rival', u'auction', u'hous', u'battl', u'client']
[u'rlpbs', u'mark', u'year']
[u'rogu', u'trader', u'jail']
[u'routin', u'check', u'save', u'melbourn', u'woman', u'unborn', u'child']
[u'africa', u'oppos', u'japan', u'whale', u'hunt', u'plan']
[u'scientist', u'watch', u'white', u'whale', u'skin']
[u'search', u'continu', u'miss', u'angler']
[u'second', u'charg', u'biki', u'gang', u'raid']
[u'senat', u'delay', u'super', u'surcharg', u'demis']
[u'senat', u'pass', u'labor', u'amend']
[u'sensi', u'boss', u'declin', u'specul', u'trujillo']
[u'call', u'volunt']
[u'shoulder', u'injuri', u'end', u'lomus', u'season']
[u'singapor', u'airlin', u'pursu', u'access', u'aust']
[u'smoke', u'alarm', u'work', u'toronto', u'hous', u'blaze']
[u'socceroo', u'welcom', u'asia', u'switch', u'approv']
[u'studi', u'focus', u'caravan', u'park', u'crime']
[u'survey', u'reveal', u'injuri', u'toll']
[u'survey', u'show', u'holiday', u'romanc', u'destin', u'fail']
[u'suspend', u'sentenc', u'riot', u'accus', u'court']
[u'better', u'telstra', u'servic']
[u'thiev', u'steal', u'special', u'school', u'pond']
[u'time', u'run', u'drought']
[u'tour', u'industri', u'consid', u'safeti', u'plan', u'pledg']
[u'tourism', u'safeti', u'audit', u'like', u'includ', u'southern']
[u'train', u'fund', u'target', u'outback', u'tourism']
[u'transport', u'compani', u'offic', u'raid']
[u'tribun', u'ban', u'footi', u'behaviour']
[u'union', u'presid', u'anti', u'pledg']
[u'vanston', u'accus', u'cover', u'wrong', u'detent']
[u'vanston', u'reiter', u'faith', u'palmer', u'inquiri']
[u'govt', u'accus', u'bulli', u'communiti', u'group']
[u'govt', u'approv', u'wind', u'farm']
[u'video', u'show', u'whale', u'slow', u'hunt', u'death']
[u'warn', u'spin', u'england', u'warn']
[u'water', u'price', u'need', u'rise', u'polici', u'group']
[u'water', u'road', u'australia', u'world', u'leader']
[u'clear', u'paedophil', u'deport']
[u'weather', u'chang', u'prompt', u'warn', u'driver']
[u'weather', u'take', u'toll', u'rice', u'harvest']
[u'confirm', u'bird', u'case', u'vietnam']
[u'winter', u'crop', u'look', u'good', u'farmer']
[u'wit', u'seek', u'fatal', u'crash']
[u'work', u'code', u'forc', u'industri', u'roster', u'chang']
[u'worsfold', u'play', u'signific', u'demon', u'clash']
[u'wyndham', u'east', u'kimberley', u'get', u'shire']
[u'charg', u'cooloola', u'shire', u'drug', u'raid']
[u'recreat', u'centr', u'open', u'price']
[u'gold', u'plan', u'coolgardi']
[u'chief', u'call', u'approach', u'fund']
[u'aborigin', u'exhibit', u'open', u'pari']
[u'accc', u'probe', u'wagga', u'fuel', u'price']
[u'analys', u'senat', u'inquiri', u'find']
[u'amnesti', u'lobbi', u'govt', u'pakistan', u'human', u'right']
[u'establish', u'research', u'centr', u'extra']
[u'argentina', u'pass', u'tunisian', u'test', u'open', u'conf']
[u'hit', u'record', u'high']
[u'settl', u'peak']
[u'australian', u'child', u'take', u'hostag', u'cambodia']
[u'australian', u'plead', u'guilti', u'bank', u'robberi']
[u'aust', u'toddler', u'surviv', u'cambodian', u'school', u'sieg']
[u'basic', u'caloundra', u'budget', u'deliv', u'rate']
[u'mauresmo', u'mean', u'earli', u'eastbourn', u'exit']
[u'blaze', u'forc', u'riversid', u'woolworth', u'evacu']
[u'blue', u'maroon', u'count', u'cost', u'origin']
[u'bond', u'staff', u'stop', u'work', u'disput']
[u'bougainvill', u'fighter', u'govt', u'help']
[u'brave', u'socceroo', u'deni', u'germani', u'conf']
[u'brazil', u'halfway', u'find', u'world', u'team']
[u'breakthrough', u'charlestown', u'squar', u'redevelop']
[u'buckley', u'return']
[u'burk', u'quit', u'leader', u'lose', u'elect']
[u'burnett', u'council', u'discuss', u'cooper']
[u'bushwalk', u'blue', u'mountain']
[u'busi', u'form', u'chamber', u'allianc']
[u'effort', u'retain', u'region', u'doctor']
[u'candid', u'outlin', u'plan', u'solv', u'indigen']
[u'bomb', u'kill', u'policemen', u'west', u'baghdad']
[u'part', u'worker', u'protest', u'loss']
[u'cash', u'incens', u'hewitt', u'wimbledon', u'seed', u'snub']
[u'cat', u'hail', u'wood', u'rescu', u'team', u'membership']
[u'child', u'dead', u'cambodian', u'hostag', u'crisi']
[u'children', u'suffer', u'hospit', u'wait', u'list']
[u'electr', u'plan', u'year']
[u'clps', u'electr', u'propos', u'label', u'snake']
[u'unveil', u'elect', u'campaign', u'cost']
[u'coliban', u'water', u'bill']
[u'conflict', u'testimoni', u'delay', u'mcgee', u'commiss']
[u'consum', u'price', u'figur', u'boost', u'market']
[u'corrupt', u'trial', u'hear', u'close', u'address']
[u'cost', u'penalti', u'decis', u'anger', u'socceroo']
[u'cotton', u'group', u'slash', u'profit', u'forecast']
[u'council', u'accus', u'doubl', u'standard', u'swim']
[u'council', u'act', u'fish', u'carcass', u'dump', u'report']
[u'council', u'flag', u'golf', u'cours', u'plan']
[u'councillor', u'push', u'rise']
[u'councillor', u'rise', u'issu', u'vote']
[u'council', u'reject', u'bathurst', u'brothel', u'plan']
[u'council', u'reject', u'homeswest', u'unit', u'plan']
[u'council', u'seek', u'boost', u'indigen', u'job']
[u'coupl', u'plead', u'guilti', u'clean', u'fraud']
[u'credit', u'card', u'debt', u'rise', u'slight', u'amid', u'consum']
[u'crow', u'heritag', u'guernsey', u'rais', u'power', u'hackl']
[u'dajka', u'ban', u'year']
[u'decis', u'expect', u'today']
[u'defenc', u'watchdog', u'hail', u'militari', u'inquiri', u'report']
[u'democrat', u'leader', u'back', u'group', u'aquacultur', u'concern']
[u'demon', u'focus', u'secur', u'home', u'victori', u'say']
[u'demon', u'focus', u'secur', u'home', u'victori', u'say']
[u'denmark', u'urg', u'whale']
[u'discoveri', u'inch', u'nasa', u'launch']
[u'docker', u'lack', u'cohes', u'say', u'connolli']
[u'doc', u'boost', u'break', u'hill', u'staff', u'number']
[u'downer', u'delight', u'wood', u'releas']
[u'dozen', u'kill', u'widespread', u'iraq', u'attack']
[u'east', u'timor', u'look', u'afield', u'disput']
[u'employ', u'ask', u'code', u'reduc', u'work']
[u'england', u'complac', u'say', u'trescothick']
[u'environ', u'grant', u'cut', u'anger', u'senat']
[u'famili', u'breath', u'easi', u'wood', u'releas']
[u'famili', u'escap', u'burn', u'hous']
[u'farmer', u'warn', u'china', u'trade', u'deal', u'impact']
[u'farmer', u'welcom', u'rain', u'warm', u'temperatur']
[u'feder', u'parliament', u'hear', u'deport', u'case']
[u'feder', u'ooz', u'confid', u'ahead', u'wimbledon']
[u'fevola', u'unfaz', u'pagan', u'critic']
[u'fisher', u'say', u'illeg', u'fish', u'trade', u'widespread']
[u'australian', u'ballet', u'director', u'stretton', u'die']
[u'task', u'forc', u'instal', u'cradl', u'mountain', u'camera']
[u'friend', u'better', u'famili', u'help', u'live']
[u'fund', u'water', u'storag', u'feasibl', u'studi']
[u'gallop', u'discuss', u'south', u'hedland', u'age', u'care']
[u'gilchrist', u'vote', u'destroy', u'chief']
[u'glen', u'inn', u'severn', u'elig', u'jail']
[u'gold', u'coast', u'council', u'deliv', u'spend']
[u'govt', u'defend', u'casa', u'crash', u'reaction']
[u'govt', u'defend', u'respons', u'telstra', u'inquiri']
[u'govt', u'disappoint', u'local', u'benefit', u'woodsid']
[u'govt', u'fund', u'drought', u'relief', u'counsellor']
[u'govt', u'happi', u'servic', u'trial', u'respons']
[u'govt', u'put', u'offer', u'baradin', u'timber']
[u'govt', u'derail', u'freeload', u'tilt', u'train', u'mayor', u'say']
[u'govt', u'stand', u'colleg', u'time', u'line']
[u'govt', u'coast', u'perspect', u'infrastructur']
[u'govt', u'rethink', u'singapor', u'airlin', u'decis']
[u'govt', u'geograph', u'fish', u'stock']
[u'govt', u'urg', u'adopt', u'child', u'support', u'review']
[u'govt', u'urg', u'dental', u'wait', u'time']
[u'grazier', u'urg', u'higher', u'transact', u'levi']
[u'green', u'tabl', u'georgiou', u'replica']
[u'grim', u'outlook', u'fuel', u'price']
[u'group', u'maintain', u'battl', u'save', u'hospit']
[u'group', u'seek', u'commit', u'develop', u'autism', u'servic']
[u'group', u'appeal', u'part']
[u'guantanamo', u'defend', u'face', u'committe', u'grill']
[u'gunmen', u'student', u'hostag', u'cambodian', u'school']
[u'honey', u'wife', u'overjoy', u'wood', u'releas']
[u'home', u'kitti', u'call', u'cop']
[u'hop', u'mules', u'chang', u'boycott']
[u'hospit', u'deni', u'short', u'oper', u'prioriti']
[u'hospit', u'unveil', u'dialysi', u'centr']
[u'hotel', u'realist', u'approach', u'venu', u'safeti']
[u'howard', u'prais', u'iraqi', u'miracl', u'releas']
[u'human', u'cannonbal', u'fire', u'fear', u'fli']
[u'illeg', u'dump', u'emerg', u'north', u'east']
[u'import', u'permit', u'worri', u'oversea', u'pork', u'supplier']
[u'improv', u'goldfield', u'jail', u'need']
[u'indonesian', u'farm', u'worker', u'test', u'posit', u'bird']
[u'inmat', u'behead', u'brazilian', u'prison', u'riot']
[u'inquiri', u'claim', u'abus', u'condemn']
[u'iranian', u'plutonium', u'research', u'continu']
[u'irrig', u'face', u'water', u'alloc']
[u'jail', u'sentenc', u'increas', u'calcul', u'sexual']
[u'john', u'injuri', u'cloud']
[u'karlov', u'win', u'battl', u'croat']
[u'karoonda', u'storm', u'recoveri', u'committe', u'meet']
[u'kimberley', u'host', u'domest', u'violenc', u'educ']
[u'labor', u'advoc', u'troop', u'afghan', u'return']
[u'late', u'diagnos', u'prompt', u'lung', u'cancer', u'warn']
[u'launceston', u'plead', u'guilti', u'strangl', u'partner']
[u'lawyer', u'reach', u'agreement', u'patel', u'return']
[u'injuri', u'latest', u'shock', u'ash', u'tourist']
[u'legisl', u'council', u'pass', u'aborigin']
[u'lose', u'bushwalk']
[u'maestro', u'giulini', u'die', u'age']
[u'injur', u'smelter', u'explos']
[u'lose', u'court', u'drop', u'habitu', u'crimin']
[u'court', u'home', u'invas']
[u'maroon', u'brisban']
[u'martin', u'pledg', u'serv', u'term', u'win']
[u'merg', u'futur', u'await', u'longreach', u'pastor', u'colleg']
[u'migaloo', u'return', u'gold', u'coast', u'water']
[u'militari', u'justic', u'fail', u'personnel', u'inquiri', u'find']
[u'millfield', u'bridg', u'demolish']
[u'miner', u'reveal', u'promis', u'diamond', u'survey']
[u'miner', u'beat', u'break', u'hill', u'find']
[u'gambier', u'host', u'child', u'abus', u'inquiri']
[u'mudge', u'gulgong', u'fluorid', u'water']
[u'murdoch', u'read', u'fleet', u'street', u'rite']
[u'musharraf', u'mission', u'democratis', u'pakistan']
[u'nake', u'rambler', u'take', u'friend', u'stroll']
[u'campaign', u'assault', u'pull', u'punch']
[u'fund', u'offer', u'hacc', u'scheme']
[u'sentenc', u'option', u'domest', u'violenc', u'accus']
[u'oppos', u'telstra', u'sale']
[u'convinc']
[u'parti', u'deni', u'groundwat', u'meter', u'plan']
[u'child', u'kill', u'cambodian', u'hostag', u'crisi']
[u'opposit', u'critic', u'dpps', u'reappoint']
[u'opposit', u'parti', u'chen', u'inquiri']
[u'panel', u'develop', u'road', u'submiss']
[u'parker', u'complet', u'newcastl']
[u'patel', u'lawyer', u'discuss', u'doctor', u'possibl', u'return']
[u'patel', u'return', u'inquiri', u'uncertain', u'say']
[u'patrol', u'increas', u'combat', u'forest', u'rubbish', u'dump']
[u'pebbl', u'trial', u'tell', u'woman', u'think', u'virgin', u'mari']
[u'pension', u'group', u'angri', u'call', u'rat', u'rebat']
[u'pension', u'wealth', u'fall', u'short', u'comfi', u'retir']
[u'pesticid', u'post', u'parkinson', u'risk', u'farmer', u'studi']
[u'meat', u'import', u'prais']
[u'pill', u'plan', u'grow', u'wallabi', u'popul']
[u'polic', u'minist', u'back', u'decis', u'sack', u'offic']
[u'polic', u'deal', u'reach', u'ahead', u'elect']
[u'polic', u'seek', u'public', u'help', u'murder', u'investig']
[u'rainforest', u'tree', u'plan', u'botan', u'garden']
[u'rain', u'consid', u'drought', u'break']
[u'rebel', u'hop', u'detent', u'bill', u'wont', u'need']
[u'schiavo', u'autopsi', u'show', u'perman', u'brain', u'damag']
[u'scott', u'forecast', u'tough', u'time', u'open']
[u'seafood', u'industri', u'fear', u'quota', u'hurt', u'reef']
[u'secur', u'forc', u'sieg', u'cambodia']
[u'shire', u'hang', u'trujillo', u'cost', u'shift', u'suggest']
[u'shot', u'fire', u'insid', u'cambodian', u'school']
[u'sign', u'mein', u'kampf', u'fetch']
[u'singapor', u'airlin', u'lobbi', u'ride', u'australia']
[u'lift', u'open', u'season', u'snow', u'fall']
[u'stargaz', u'enjoy', u'rare', u'jupit', u'sight']
[u'stargaz', u'prepar', u'daylight', u'view', u'jupit']
[u'studi', u'consid', u'recreat', u'fish', u'impact']
[u'surg', u'demand', u'push', u'fuel', u'price']
[u'swamp', u'rehab', u'plan', u'offer', u'snowi', u'water']
[u'swiss', u'claim', u'tour', u'switzerland', u'stage']
[u'tanker', u'raid', u'iraq', u'termin']
[u'tanneri', u'meet', u'draw', u'resid', u'anger']
[u'telstra', u'lose', u'phone', u'tower']
[u'tough', u'pinehurst', u'cours', u'mean']
[u'town', u'sell', u'smoke', u'alarm', u'fatal', u'hous']
[u'tradit', u'owner', u'condemn', u'wind', u'farm', u'open']
[u'train', u'track', u'bendigo']
[u'treasur', u'deni', u'mislead', u'parliament']
[u'tsang', u'hong', u'kong', u'leader']
[u'dead', u'cambodian', u'school', u'hostag', u'drama', u'end']
[u'ulcer', u'caus', u'infect', u'link', u'heartbeat']
[u'union', u'blame', u'mine', u'compani', u'trade', u'shortag']
[u'union', u'seek', u'generous', u'payout', u'nestl', u'worker']
[u'union', u'anglicar', u'disput']
[u'author', u'win', u'irish', u'fiction', u'prize', u'novel']
[u'militari', u'crash', u'home', u'injuri']
[u'persi', u'appear', u'court', u'rape', u'claim']
[u'vanston', u'announc', u'visa', u'long', u'term', u'detaine']
[u'vast', u'differ', u'waterfront', u'plan']
[u'victim', u'day', u'crash', u'coron', u'tell']
[u'employ', u'angri', u'draft', u'workplac', u'code']
[u'wage', u'hop', u'inflat', u'predict']
[u'govt', u'attack', u'paedophil', u'deport', u'stanc']
[u'govt', u'determin', u'stop', u'bank', u'robber', u'transfer']
[u'waldron', u'pay', u'tribut', u'trenorden']
[u'heart', u'lung', u'transplant', u'recipi', u'recov']
[u'wash', u'card', u'piec', u'ship', u'puzzl']
[u'webb', u'confid', u'origin']
[u'accus', u'assault', u'businessman']
[u'move', u'closer', u'master', u'berth']
[u'wind', u'farm', u'propon', u'pleas', u'approv']
[u'wiper', u'factori', u'loss', u'prompt', u'staff', u'tool']
[u'woman', u'lose', u'govt', u'husband', u'death']
[u'woman', u'stand', u'trial', u'attempt', u'murder', u'charg']
[u'woodchip', u'export', u'reject', u'price', u'claim']
[u'woodchip', u'decis', u'spark', u'council']
[u'wood', u'famili', u'celebr']
[u'wood', u'issu', u'statement', u'thank']
[u'wood', u'leav', u'iraq']
[u'wood', u'rescu', u'detail', u'unclear']
[u'wood', u'prais', u'team', u'australia', u'effort']
[u'wood', u'wife', u'make', u'contact', u'releas']
[u'wood', u'move', u'secret', u'middl', u'east', u'locat']
[u'wood', u'walk', u'free', u'captor']
[u'world', u'bank', u'boss', u'urg', u'fairer', u'trade']
[u'yudhoyono', u'hotlin', u'prompt', u'mobil', u'meltdown']
[u'budget', u'slug', u'unit', u'owner']
[u'aborigin', u'hail', u'victori', u'commonsens']
[u'abus', u'wife', u'acquit', u'murder', u'charg']
[u'abus', u'email', u'send', u'death', u'custodi', u'case']
[u'die', u'highway', u'crash']
[u'adelaid', u'pair', u'court', u'cannabi']
[u'adopt', u'grandpa', u'runner']
[u'african', u'boy', u'sacrific', u'report']
[u'ord', u'end', u'excit', u'record', u'high']
[u'state', u'caucus', u'consid', u'caravan', u'park']
[u'ancient', u'glass', u'make', u'site', u'egypt']
[u'anderson', u'support', u'telstra', u'split']
[u'apart', u'consid', u'vital', u'albani', u'project']
[u'appl', u'grower', u'attack', u'boycott', u'plan']
[u'architect', u'honour', u'woolsh']
[u'ashbourn', u'guilti', u'corrupt']
[u'astronom', u'welcom', u'light']
[u'aust', u'offici', u'wood', u'discuss', u'hostag', u'ordeal']
[u'australia', u'form', u'cricket', u'partnership', u'indonesia']
[u'australia', u'get', u'presid', u'bless', u'join']
[u'australian', u'account', u'wood', u'rescu', u'wrong']
[u'australian', u'children', u'safe', u'cambodia', u'sieg']
[u'australian', u'cyclist', u'domin', u'tour', u'switzerland']
[u'bail', u'refus', u'charg', u'stab', u'murder']
[u'bangladeshi', u'asylum', u'seeker', u'deport', u'delay']
[u'beatti', u'upbeat', u'patel', u'return', u'strategi']
[u'shortag', u'highlight', u'ail', u'health']
[u'bell', u'sink', u'wwii', u'ship', u'cemeteri']
[u'bennett', u'say', u'webck', u'wont', u'chang', u'mind']
[u'proceed', u'takeov']
[u'chang', u'urg', u'australia', u'militari', u'justic']
[u'blast', u'delay', u'crush', u'season']
[u'bluescop', u'clarifi', u'stanc']
[u'blue', u'dog', u'bring', u'darwin']
[u'booki', u'back', u'labor', u'elect']
[u'brazil', u'robinho', u'dazzl', u'eas', u'past', u'greec']
[u'brown', u'take', u'issu', u'senat', u'wheat', u'debt']
[u'burk', u'dismiss', u'cost', u'critic']
[u'bush', u'popular', u'continu', u'slide', u'poll']
[u'cadet', u'mother', u'case']
[u'cairn', u'rural', u'mental', u'health', u'centr']
[u'calm', u'defend', u'tourist', u'safeti', u'effort']
[u'calson', u'plant', u'job', u'threat']
[u'cambodian', u'sieg', u'reveng', u'attack', u'polic']
[u'campbel', u'head', u'whale', u'meet', u'ahead', u'vote']
[u'campus', u'head', u'highlight', u'rural', u'cours', u'import']
[u'bomber', u'attack', u'shiit', u'mosqu', u'baghdad']
[u'cattl', u'duf', u'earn', u'jail', u'sentenc', u'dubbo']
[u'cemeteri', u'vandal', u'ask', u'think', u'twice']
[u'chang', u'afoot', u'water', u'catchment']
[u'chariti', u'charg', u'custom', u'duti', u'tsunami', u'relief']
[u'church', u'england', u'appoint', u'black', u'archbishop']
[u'cliff', u'tragedi', u'famili', u'compo', u'battl']
[u'close', u'tie', u'visa', u'abolish']
[u'submit', u'cost', u'treasuri']
[u'coff', u'council', u'adopt', u'draft', u'manag', u'plan']
[u'cole', u'recal', u'pasta', u'sauc']
[u'compani', u'guilti', u'westralia', u'safeti', u'fail']
[u'concern', u'rais', u'state', u'circl', u'develop']
[u'contractor', u'delay', u'hamper', u'rock', u'plan']
[u'coonambl', u'resid', u'excess', u'water']
[u'costello', u'dismiss', u'bluescop', u'steel', u'reaction']
[u'council', u'clarifi', u'pension', u'rat', u'debat']
[u'council', u'knock', u'hostel', u'plan']
[u'council', u'lament', u'higher', u'cost', u'land', u'releas']
[u'court', u'deliv', u'suspend', u'sentenc', u'suppli']
[u'court', u'jail', u'albani', u'bank', u'robber']
[u'court', u'reject', u'onetel', u'pair', u'intervent']
[u'court', u'reserv', u'decis', u'action', u'foster']
[u'cruis', u'propos', u'actress', u'holm', u'eiffel', u'tower']
[u'cycl', u'learn', u'dajka', u'barra', u'incid']
[u'dairi', u'farmer', u'threaten', u'quit', u'price']
[u'death', u'spark', u'urgenc', u'address', u'abandon']
[u'deport', u'witchcliff', u'farmer', u'feel', u'victimis']
[u'dept', u'offer', u'mildura', u'transport', u'survey', u'assur']
[u'derbi', u'resid', u'littl', u'juri', u'duti']
[u'detent', u'polici', u'talk', u'continu', u'amid', u'visa']
[u'dismal', u'swamp', u'slide', u'reopen']
[u'doctor', u'orthopaed', u'surgeri', u'wait', u'list']
[u'move', u'stop', u'crimin', u'profit', u'crime']
[u'drought', u'put', u'salvo', u'fli', u'padr', u'demand']
[u'dubbo', u'councillor', u'undergo', u'brain', u'tumour', u'remov']
[u'dvds', u'miner', u'base', u'cours']
[u'kill', u'burundi', u'fight']
[u'timber', u'open']
[u'leader', u'troubl', u'treati', u'hold']
[u'evergreen', u'reject', u'senat', u'canker', u'inquiri', u'claim']
[u'expans', u'plan', u'townsvill', u'hospit', u'emerg']
[u'farley', u'stay']
[u'father', u'admit', u'throw', u'toddler', u'floor', u'court']
[u'fear', u'lion', u'storm', u'spread', u'farm', u'debri']
[u'feder', u'promis', u'help', u'storm', u'karoonda']
[u'govt', u'choke', u'canberra', u'growth', u'potenti']
[u'figur', u'china', u'accid', u'worsen']
[u'financi', u'advis', u'ban', u'develop', u'collaps']
[u'firm', u'drop', u'hous', u'plan', u'near', u'cessnock']
[u'flatley', u'confid', u'make', u'intern', u'return']
[u'food', u'firm', u'stew', u'gandhi', u'curri']
[u'fund', u'avail', u'natur', u'refug']
[u'fund', u'secur', u'port', u'augusta', u'crime']
[u'gold', u'coast', u'consid', u'film', u'commiss']
[u'gold', u'allow', u'mine', u'price']
[u'govern', u'push', u'fast', u'track', u'morwel', u'subway']
[u'govt', u'pledg', u'research']
[u'govt', u'push', u'prostitut', u'regul']
[u'govt', u'effort', u'block', u'detain', u'illeg', u'fisherman']
[u'govt', u'review', u'fund']
[u'gypsi', u'joker', u'guilti', u'assault', u'charg']
[u'hancock', u'kumba', u'iron', u'interest']
[u'hank', u'buy', u'right', u'deep', u'throat']
[u'harvey', u'norman', u'franchis', u'fin']
[u'high', u'court', u'hear', u'garag', u'sale', u'injuri', u'case']
[u'historian', u'outlin', u'anzac', u'roadwork', u'problem']
[u'hope', u'remain', u'murray', u'river', u'western', u'bridg', u'option']
[u'hotel', u'group', u'seek', u'balanc', u'safeti']
[u'idea', u'air', u'attract', u'doctor', u'fraser', u'coast']
[u'inquiri', u'make', u'defenc', u'forc', u'review', u'recommend']
[u'iranian', u'poll']
[u'joint', u'product', u'bring', u'cash', u'inject', u'sydney']
[u'joshi', u'leav', u'state', u'theatr']
[u'juri', u'fail', u'reach', u'verdict', u'linek', u'kewel']
[u'kangaroo', u'lift', u'colbert']
[u'kapunda', u'commission', u'make', u'urgent', u'plea']
[u'kingston', u'budget', u'deliv', u'rate', u'rise']
[u'kusnetsova', u'clijster', u'coast', u'eastbourn', u'semi']
[u'kyrgyz', u'protest', u'seiz', u'govt', u'build']
[u'labor', u'support', u'uranium', u'mine']
[u'pass', u'alpin', u'cattl', u'graze']
[u'reform', u'group', u'urg', u'chang', u'work', u'place', u'death']
[u'leader', u'dedic', u'gold', u'coast', u'lane']
[u'clear', u'shoulder', u'damag']
[u'letter', u'appeal', u'patel', u'return']
[u'nettl', u'eat', u'begin']
[u'liber', u'parti', u'name', u'femal', u'presid']
[u'lion', u'lappin', u'match']
[u'listen', u'farewel', u'cattern', u'airwav']
[u'long', u'term', u'unemploy', u'rate', u'drop', u'tasmania']
[u'mackay', u'conserv', u'group', u'suffer', u'fund']
[u'charg', u'wilcannia', u'stab']
[u'charg', u'doubl', u'murder']
[u'charg', u'murder', u'newcastl', u'stab']
[u'crush', u'car', u'council', u'depot']
[u'front', u'court', u'basebal', u'assault', u'charg']
[u'get', u'year', u'manslaught', u'mother']
[u'jail', u'counterfeit', u'scam']
[u'question', u'fatal', u'stab']
[u'martin', u'defend', u'propos', u'habitu', u'drunk']
[u'import', u'figur', u'biggest', u'month']
[u'mcgee', u'diagnosi', u'proper', u'clinic', u'basi']
[u'meatwork', u'reopen', u'expect', u'lift', u'harden']
[u'mehrten', u'head', u'england']
[u'mental', u'asylum', u'seeker', u'deport']
[u'mexico', u'down', u'japan', u'conf']
[u'minist', u'deni', u'know', u'inmat', u'classif']
[u'minist', u'say', u'die', u'afghan', u'flood']
[u'detail', u'emerg', u'wood', u'releas']
[u'say', u'alpin', u'cattl', u'graze', u'hurt', u'region']
[u'myskina', u'humbl', u'qualifi', u'eastbourn']
[u'newcastl', u'final', u'secur', u'sponsor']
[u'manag', u'waltz', u'matilda', u'centr']
[u'newman', u'budget', u'pass', u'citi', u'hall']
[u'technolog', u'improv', u'tilt', u'train', u'safeti']
[u'troop', u'lift', u'helicopt', u'build', u'brisban']
[u'korean', u'leader', u'meet', u'south', u'korean', u'minist']
[u'korea', u'will', u'return', u'nuclear', u'talk', u'juli']
[u'nrma', u'studi', u'england', u'highway', u'safeti']
[u'pair', u'die', u'ross', u'highway', u'crash']
[u'paradorn', u'crash', u'french', u'teen', u'star']
[u'parent', u'speak', u'dead', u'school', u'sieg']
[u'patel', u'divers', u'opposit', u'say']
[u'patel', u'return', u'doubt']
[u'peru', u'armi', u'chopper', u'crash', u'miss']
[u'piston', u'level', u'final', u'seri']
[u'plan', u'guidelin', u'spark', u'chines', u'templ', u'concern']
[u'announc', u'detent', u'chang']
[u'announc', u'major', u'chang', u'migrat', u'law']
[u'polic', u'command', u'pleas', u'clear']
[u'polic', u'seek', u'wit', u'student', u'stab']
[u'power', u'trounc', u'hawk']
[u'apprenticeship', u'place', u'break', u'hill']
[u'premium', u'milk', u'grant', u'interim', u'authoris']
[u'prison', u'access', u'polic', u'videotap', u'toughen']
[u'protest', u'face', u'polic', u'kyrgyzstan']
[u'protest', u'seiz', u'prosecutor', u'offic', u'kyrgyzstan']
[u'public', u'warn', u'bogus', u'fundrais', u'call']
[u'girl', u'miss', u'child', u'tegan', u'lane']
[u'queen', u'maria', u'look', u'reclaim', u'wimbledon', u'crown']
[u'rann', u'call', u'honour', u'ashbourn', u'inquiri', u'pledg']
[u'red', u'tri', u'talk', u'kefu', u'quit', u'japan']
[u'revamp', u'begin', u'wast', u'water', u'treatment', u'plant']
[u'revamp', u'delorain', u'race', u'track']
[u'rspca', u'boss', u'hire', u'protect']
[u'sauc', u'splash', u'spat', u'stain', u'lawyer', u'reput']
[u'savag', u'byrn', u'agre', u'disagre', u'riverfront']
[u'schumach', u'baffl', u'retir', u'claim']
[u'search', u'boat', u'sink', u'near', u'fraser']
[u'search', u'escap', u'indonesian', u'fish', u'crew']
[u'secret', u'dougla', u'wood', u'video', u'releas']
[u'shark', u'return', u'win', u'way']
[u'shire', u'want', u'drought', u'declar', u'process', u'clarifi']
[u'korea', u'press', u'jong', u'nuclear', u'issu']
[u'socceroo', u'face', u'decis', u'viduka']
[u'socceroo', u'lodg', u'complaint', u'popov', u'tackl']
[u'son', u'suicid', u'follow', u'militari', u'bulli', u'mother']
[u'student', u'head', u'start']
[u'survey', u'show', u'high', u'bateman', u'busi', u'confid']
[u'suspect', u'mastermind', u'sieg', u'arrest']
[u'suspend', u'sentenc', u'hand', u'indec']
[u'taiwan', u'flood', u'landslid', u'kill']
[u'tasmanian', u'school', u'step', u'secur']
[u'technolog', u'allow', u'indigen', u'communiti', u'stay']
[u'technolog', u'boost', u'loxton', u'drink', u'water']
[u'teen', u'charg', u'assault', u'polic']
[u'thorn', u'tempt', u'lock', u'webck', u'origin']
[u'aussi', u'escap', u'school', u'sieg']
[u'tiger', u'cover', u'richardson', u'craig']
[u'town', u'hall', u'concours', u'shop', u'face']
[u'trade', u'orangutan', u'rife', u'indonesia', u'report']
[u'trauma', u'haunt', u'cambodian', u'school', u'hostag', u'victim']
[u'trescothick', u'star', u'england', u'overpow', u'bangladesh']
[u'union', u'urg', u'govt', u'hospit', u'wait', u'list']
[u'start', u'repatri', u'afghan', u'pakistan']
[u'admir', u'highlight', u'central', u'exercis']
[u'current', u'account', u'deficit', u'surg', u'record', u'billion']
[u'vanston', u'launch', u'refuge', u'educ', u'school']
[u'vanston', u'review', u'detaine', u'applic']
[u'vanston', u'stand', u'detaine', u'deport', u'plan']
[u'vline', u'late', u'train']
[u'wadey', u'educ', u'fund', u'shortfal', u'question']
[u'wallabi', u'boost', u'play', u'samoa']
[u'water', u'manag', u'see', u'crucial', u'saleyard']
[u'welfar', u'group', u'continu', u'donat']
[u'monitor', u'bird', u'case']
[u'wimmera', u'secur', u'indigen', u'offic']
[u'wit', u'littl', u'pebbl', u'trial', u'reject', u'money']
[u'takeov', u'creat', u'footbal', u'academi', u'sponsorship']
[u'wood', u'move', u'secret', u'locat']
[u'wood', u'leav', u'iraq']
[u'workshop', u'consid', u'greenough', u'hamlet', u'build']
[u'alic', u'spring', u'posit', u'despit']
[u'qaeda', u'deputi', u'urg', u'ongo', u'jihad']
[u'antarct', u'treati', u'demand', u'action', u'pollut']
[u'argentina', u'coach', u'wari', u'danger', u'socceroo']
[u'australia', u'ralli', u'bangladesh']
[u'babi', u'australia', u'bear', u'freez']
[u'barrier', u'reef', u'fish', u'survey', u'expans']
[u'beatti', u'rule', u'indemn', u'patel']
[u'brazilian', u'polic', u'smash', u'cocain', u'network']
[u'brisban', u'prison', u'recaptur']
[u'brisban', u'good', u'despit', u'tiger', u'fightback']
[u'burk', u'conced', u'defeat']
[u'burk', u'troubl', u'labor', u'storm', u'victori']
[u'burk', u'struggl', u'voter', u'labor']
[u'cana', u'schalken', u'withdraw', u'wimbledon']
[u'carlton', u'receiv', u'dose', u'blue']
[u'carney', u'quiet', u'leadership']
[u'cleric', u'take', u'shock', u'lead', u'earli', u'iran', u'poll', u'result']
[u'clijster', u'face', u'junior', u'conquer', u'sharapova']
[u'clijster', u'win', u'eastbourn', u'final']
[u'leader', u'deni', u'burk', u'conced', u'defeat']
[u'optimist', u'despit', u'poll']
[u'collina', u'blow', u'whistl', u'career']
[u'confid', u'show', u'cool', u'hand']
[u'council', u'court', u'sewag']
[u'count', u'begin', u'elect']
[u'crow', u'destroy', u'toothless', u'tiger']
[u'deal', u'reach', u'make', u'pollut', u'antarctica']
[u'democrat', u'question', u'time', u'alloc', u'stem', u'cell']
[u'detaine', u'attempt', u'self', u'harm']
[u'detaine', u'take', u'hospit', u'sydney']
[u'detaine', u'treat', u'self', u'harm']
[u'doctor', u'strike', u'patient']
[u'eagl', u'deni', u'hoodoo']
[u'eagl', u'game', u'clear', u'victori']
[u'eagl', u'pois', u'shoot']
[u'earli', u'elect', u'result', u'swing', u'labor']
[u'eel', u'warrior']
[u'england', u'target', u'aussi', u'tail', u'strauss']
[u'profound', u'crisi', u'talk', u'collaps']
[u'expect', u'father', u'hewitt', u'focus', u'titl', u'tilt']
[u'extend', u'iranian', u'vote', u'end']
[u'feder', u'plan', u'bodi', u'power']
[u'gypsi', u'joker', u'chief', u'miss']
[u'tyco', u'head', u'guilti', u'fraud']
[u'franc', u'britain', u'loggerhead', u'budget']
[u'gasquet', u'bid', u'maiden', u'titl', u'mirnyi']
[u'girl', u'bear', u'freez']
[u'goosen', u'shin', u'hensbi', u'shadow', u'disast', u'strike']
[u'govt', u'deni', u'opposit', u'claim', u'ecstasi']
[u'govt', u'reject', u'hospit', u'staff', u'claim', u'fund']
[u'grassroot', u'intellig', u'wood', u'rescu']
[u'green', u'hearten', u'result']
[u'henri', u'blofeld', u'montag']
[u'howard', u'pictur', u'analyst']
[u'independ', u'wood', u'claim', u'darwin', u'rural', u'seat']
[u'indonesian', u'fish', u'boat', u'escap', u'author']
[u'iranian', u'presidenti', u'poll', u'second', u'round']
[u'iran', u'presidenti', u'elect', u'forc', u'second', u'round']
[u'iran', u'reject', u'iaea', u'accus', u'plutonium']
[u'john', u'neck', u'injuri', u'scare']
[u'john', u'visit', u'spine', u'specialist']
[u'jone', u'breath', u'lion']
[u'jone', u'england', u'squad']
[u'kasper', u'promis', u'pace', u'reviv']
[u'khartoum', u'opposit', u'allianc', u'sign']
[u'kyrgyz', u'interim', u'leader', u'accus', u'presid']
[u'labor', u'aborigin', u'need', u'talk', u'say', u'tilmouth']
[u'labor', u'landslid']
[u'labor', u'strong', u'punter']
[u'labor', u'uranium', u'promis', u'hypocrit']
[u'lion', u'tour', u'like', u'world', u'deja', u'say', u'clive']
[u'lucki', u'ducki', u'line', u'river', u'race']
[u'die', u'tulli', u'crash']
[u'martin', u'claim', u'victori']
[u'mastercard', u'secur', u'laps', u'expos', u'million']
[u'michael', u'kasprowicz', u'interview']
[u'mother', u'arrest', u'chase']
[u'confid', u'parti', u'approv', u'detent', u'deal']
[u'munch', u'museum', u'reopen', u'scream']
[u'nation', u'parti', u'draw', u'plan', u'elect']
[u'nation', u'drive', u'peopl', u'west']
[u'noxious', u'weed', u'return', u'hawkesburi']
[u'parti', u'play', u'elect', u'prospect']
[u'oprah', u'rank', u'world', u'power', u'celebr']
[u'panther', u'fight', u'quell', u'storm']
[u'peac', u'process', u'domin', u'rice', u'middl', u'east', u'tour']
[u'polic', u'assoc', u'wont', u'accept', u'investig', u'cost']
[u'polic', u'injur', u'belfast', u'parad', u'violenc']
[u'policemen', u'captur', u'taliban', u'attack']
[u'polic', u'recaptur', u'court', u'escape']
[u'polic', u'recaptur', u'second', u'prison']
[u'poll', u'open', u'elect']
[u'poor', u'gold', u'qualiti', u'forc', u'chariot', u'closur']
[u'power', u'trounc', u'hawk']
[u'protest', u'break', u'villawood', u'detent', u'centr']
[u'psychiatrist', u'dismiss', u'vanston', u'limit', u'role']
[u'ralf', u'crash', u'montoya', u'set', u'pace']
[u'rathbon', u'rule', u'test']
[u'refuge', u'advoc', u'condem', u'compromis', u'announc']
[u'refuge', u'advoc', u'seek', u'chang']
[u'roddick', u'warn', u'nadal', u'joker', u'wimbledon']
[u'rodin', u'sculptur', u'steal', u'chile', u'museum']
[u'roger', u'keep', u'swiss', u'lead', u'ahead', u'tough', u'mountain']
[u'rooney', u'surpris', u'charg', u'agent']
[u'samoa', u'tour', u'loss', u'mozzi']
[u'sanderson', u'voter', u'look', u'main', u'parti', u'promis']
[u'scan', u'show', u'clear', u'england', u'paceman', u'jone']
[u'scud', u'comeback', u'gather', u'pace']
[u'second', u'helicopt', u'crash', u'river']
[u'seminar', u'hear', u'way', u'assist', u'staff', u'age', u'care']
[u'senat', u'sandblast', u'diseas', u'inquiri']
[u'senat', u'submit', u'detent', u'bill']
[u'seven', u'miss', u'thredbo', u'blizzard']
[u'shell', u'govt', u'forg', u'clean', u'coal', u'research']
[u'simplot', u'potato', u'grower', u'agre', u'price']
[u'steal', u'rodin', u'sculptur']
[u'swift', u'eas', u'past', u'phoenix']
[u'tourism', u'boss', u'focus', u'lifestyl']
[u'tourist', u'guid', u'safe', u'lose']
[u'tourist', u'night', u'nation', u'park']
[u'union', u'urg', u'fund', u'prison', u'rehab', u'program']
[u'kill', u'insurg', u'iraq', u'oper']
[u'stock', u'resist', u'price', u'pressur']
[u'welfar', u'group', u'water', u'price', u'hike']
[u'wolfowitz', u'focus', u'african']
[u'youngster', u'work', u'love']
[u'ralli', u'refuge', u'right']
[u'actu', u'action', u'chang']
[u'actu', u'launch', u'reform', u'campaign']
[u'adler', u'accus', u'busi', u'deal', u'jail']
[u'adler', u'accus', u'busi', u'bar']
[u'adler', u'face', u'penalti']
[u'adler', u'punish', u'prison', u'busi', u'deal']
[u'aloisi', u'field', u'premier', u'leagu', u'offer']
[u'say', u'antivir', u'drug', u'suppli', u'fall', u'short']
[u'anti', u'marriag', u'ralli', u'madrid']
[u'australia', u'launch', u'symond', u'inquiri']
[u'australia', u'enterpris', u'start']
[u'avoid', u'pollut', u'area', u'exercis', u'journal', u'say']
[u'bangladesh', u'shock', u'aussi']
[u'bangladeshi', u'wild', u'cricket', u'upset']
[u'barrett', u'face', u'aussi', u'team']
[u'beatti', u'grand', u'stand', u'patel', u'failur']
[u'birthday', u'gasquet', u'claim', u'maiden']
[u'bulldog', u'bark', u'need']
[u'burk', u'lick', u'wound', u'victori', u'martin', u'look', u'ahead']
[u'burk', u'throw', u'burk', u'seat']
[u'bush', u'defend', u'iraq', u'mission']
[u'mandatori', u'detent']
[u'cambodian', u'school', u'hostag', u'gang', u'charg']
[u'cargo', u'ship', u'deliv', u'suppli']
[u'caribbean', u'push', u'commerci', u'whale']
[u'chen', u'come', u'hide', u'ralli']
[u'chines', u'claim', u'rais', u'canada']
[u'cleric', u'mayor', u'face', u'iran', u'elect', u'second', u'round']
[u'suffer', u'crush', u'territori', u'defeat']
[u'commentari', u'win', u'run']
[u'confus', u'remain', u'wood', u'releas']
[u'costello', u'cost', u'lee', u'say']
[u'detent', u'deal', u'senat', u'say']
[u'dragon', u'triumph', u'spirit', u'rabbitoh']
[u'drogba', u'doubl', u'keep', u'ivori', u'coast', u'track']
[u'drug', u'deal', u'problem', u'victoria', u'polic']
[u'farina', u'fume', u'decis']
[u'wicket', u'harmison', u'blunt', u'australia']
[u'franc', u'fight', u'draw', u'springbok']
[u'gambl', u'studi', u'welcom', u'limit']
[u'gaza', u'hous', u'knock']
[u'german', u'hostag', u'free', u'nigeria']
[u'goosen', u'pois', u'open', u'hensbi']
[u'greeni', u'wont', u'martin', u'uranium', u'promis']
[u'greenpeac', u'ship', u'bear', u'peac', u'wit', u'sabr']
[u'hill', u'say', u'wood', u'stori', u'remain', u'unclear']
[u'human', u'right', u'tabl', u'china']
[u'illeg', u'fishermen', u'detent', u'chang', u'need', u'say']
[u'injuri', u'forc', u'redknapp', u'retir']
[u'iraqi', u'journalist', u'wound', u'appar', u'kidnap', u'attempt']
[u'maxwel', u'interview']
[u'joey', u'knight', u'injuri', u'crisi', u'continu']
[u'minut', u'lobbi', u'ahead', u'whale', u'summit']
[u'late', u'goal', u'germani', u'tunisia']
[u'lion', u'roar', u'gabba']
[u'manag', u'job', u'slash', u'urban', u'servic']
[u'man', u'past', u'battl', u'knight']
[u'martin', u'proud', u'indigen', u'women', u'elect']
[u'melbourn', u'host', u'agricultur', u'biotechnolog']
[u'milit', u'attack', u'settlement', u'rice', u'visit']
[u'militari', u'justic', u'complet', u'flaw', u'minist']
[u'miner', u'explor', u'boom']
[u'mitsubishi', u'reach', u'break', u'point']
[u'concern', u'villawood', u'self', u'harmer']
[u'murder', u'children', u'mother', u'frustrat']
[u'nation', u'telstra', u'pressur', u'vail']
[u'nativ', u'plant', u'farmer', u'welcom']
[u'nat', u'pledg', u'countri', u'seat']
[u'opposit', u'rais', u'freight', u'rort', u'fear']
[u'palestinian', u'milit', u'say', u'rice']
[u'pont', u'stay', u'calm', u'bangladesh', u'shock']
[u'protest', u'march', u'refuge', u'right']
[u'queen', u'victoria', u'restor', u'glori']
[u'refuge', u'mark', u'ralli']
[u'renaiss', u'philippoussi', u'readi', u'wimbledon']
[u'rice', u'hail', u'histor', u'gaza', u'plan']
[u'robust', u'roo', u'bounc', u'docker']
[u'roger', u'close', u'victori', u'tour', u'switzerland']
[u'scud', u'posit', u'dutch', u'end']
[u'self', u'harm', u'detaine', u'desper', u'depress']
[u'self', u'harm', u'detaine', u'releas', u'hospit']
[u'clive', u'confirm', u'code', u'switch']
[u'sixteen', u'kill', u'baghdad', u'restaur', u'blast']
[u'socceroo', u'fight']
[u'south', u'korean', u'soldier', u'kill', u'colleagu']
[u'spain', u'quit', u'polit', u'strike']
[u'student', u'confess', u'rodin', u'sculptur', u'theft']
[u'symond', u'ban', u'match']
[u'dead', u'baxter', u'collis']
[u'trucki', u'ralli', u'move']
[u'trucki', u'continu', u'campaign']
[u'trulli', u'hand', u'toyota', u'pole']
[u'vanston', u'condemn', u'self', u'harm', u'protest']
[u'villawood', u'self', u'harm', u'prompt', u'case', u'review']
[u'vote', u'start', u'lebanon']
[u'wheelchair', u'taxi', u'servic', u'fundament', u'flaw']
[u'wood', u'deal', u'clinch', u'sheikh']
[u'wood', u'head', u'home', u'reunion']
[u'wood', u'home']
[u'worker', u'right', u'featur', u'elect', u'union']
[u'world', u'leader', u'plead', u'kyi', u'releas']
[u'young', u'socceroo', u'agonis', u'exit']
[u'zimbabw', u'home', u'demolit', u'spread', u'rural', u'area']
[u'abar', u'cut', u'farm', u'product', u'estim']
[u'abbott', u'urg', u'better', u'medicin', u'manag']
[u'accc', u'probe', u'action', u'wooli', u'takeov', u'plan']
[u'action', u'group', u'worri', u'road', u'approv']
[u'adamson', u'announc', u'retir', u'plan']
[u'afford', u'hous', u'get', u'tougher']
[u'traffic', u'control', u'fault', u'mishap']
[u'albani', u'urg', u'protect', u'heritag']
[u'alic', u'seat', u'hang', u'balanc']
[u'ask', u'immigr', u'chang']
[u'match', u'win', u'inning', u'kevin', u'pietersen']
[u'ancic', u'beat', u'llodra', u'holland']
[u'anglican', u'clergi', u'whistleblow', u'resign']
[u'anti', u'syrian', u'bloc', u'win', u'final', u'elect', u'phase']
[u'pursu', u'pigmeat', u'permit', u'holder']
[u'ashborn', u'acquitt', u'spark', u'commiss']
[u'assault', u'victim', u'undertak', u'civil', u'action']
[u'aust', u'dollar', u'climb', u'higher']
[u'batman', u'begin', u'lead', u'worldwid', u'offic']
[u'berrigan', u'say', u'premiership', u'race', u'wide', u'open']
[u'blood', u'shortag', u'wide']
[u'board', u'probe', u'claim', u'teacher', u'charg']
[u'bollywood', u'seek', u'male', u'megastar', u'lure', u'crowd']
[u'brack', u'announc', u'boost', u'stem', u'cell', u'research']
[u'brack', u'govt', u'chip', u'market', u'buck', u'murray']
[u'broom', u'bump', u'rat']
[u'brumbi', u'lose', u'fava', u'forc']
[u'bugaldi', u'captain', u'elect', u'associ', u'presid']
[u'bundaberg', u'hospit', u'inquiri', u'resum']
[u'burton', u'face', u'bump']
[u'bushfir', u'cost', u'recov', u'water', u'price', u'rise']
[u'cafnec', u'wait', u'fund']
[u'cairn', u'lose', u'indigen', u'legal', u'servic']
[u'resid', u'feedback', u'amalgam', u'report']
[u'review', u'water', u'electr', u'deliveri', u'regim']
[u'bomb', u'kill', u'iraqi', u'polic', u'recruit']
[u'care', u'need', u'urban', u'servic', u'cut', u'opposit']
[u'charter', u'tower', u'host', u'ministeri', u'forum']
[u'children', u'choir', u'share', u'aid', u'messag']
[u'chines', u'town', u'need', u'lifetim', u'restaur']
[u'say', u'excel', u'idea', u'lade']
[u'claim', u'iran', u'vote', u'free', u'fair']
[u'cloud', u'form', u'blue', u'complaint', u'handl']
[u'fail', u'develop', u'altern', u'presenc']
[u'commiss', u'pass', u'minimum', u'wage', u'rise', u'worker']
[u'communiti', u'invit', u'voic', u'ward', u'concern']
[u'contractor', u'delay', u'maleni', u'supermarket', u'work']
[u'costigan', u'charg', u'danger', u'throw']
[u'councillor', u'dismiss', u'highway', u'speed', u'limit', u'plan']
[u'counterfeit', u'warn', u'pinjarra', u'busi']
[u'court', u'appear', u'woman', u'accus', u'stab']
[u'crew', u'brace', u'flood', u'emerg']
[u'cricket', u'legend', u'say', u'symond', u'lucki', u'stay', u'tour']
[u'critic', u'intensifi', u'japan', u'whale']
[u'crow', u'sign', u'hudson']
[u'cruis', u'prankster', u'face', u'assault', u'charg']
[u'cycl', u'australia', u'throw', u'support', u'barrass']
[u'dept', u'outlin', u'benefit', u'singapor', u'defenc']
[u'desalin', u'propos', u'releas', u'soon']
[u'develop', u'attract', u'water', u'holiday', u'spot', u'boom']
[u'dicaprio', u'assault', u'hollywood', u'parti', u'report']
[u'diesel', u'price', u'push', u'record', u'high']
[u'docker', u'boss', u'back', u'connolli']
[u'dougla', u'wood', u'return', u'australia']
[u'dozen', u'kill', u'insurg', u'attack']
[u'drought', u'assessor', u'tour', u'region']
[u'earli', u'anti', u'whale', u'lobbi']
[u'elect', u'bring', u'call', u'indigen', u'parti']
[u'leader', u'washington', u'bush', u'talk']
[u'evergreen', u'canker', u'palaszczuk']
[u'falun', u'gong', u'member', u'claim', u'harass', u'australia']
[u'farmer', u'urg', u'self', u'regul', u'pesticid', u'secur']
[u'farmer', u'want', u'couch', u'potato', u'strike', u'dictionari']
[u'fast', u'track', u'apprenticeship', u'start', u'juli']
[u'feder', u'highway', u'open', u'accid']
[u'fiji', u'stop', u'australian', u'prosecutor', u'return']
[u'firm', u'accept', u'respons', u'glass', u'death']
[u'fish', u'popular', u'take', u'nose', u'dive']
[u'kill', u'horror', u'sunday', u'state', u'road']
[u'german', u'women', u'grab', u'fourth', u'european', u'titl']
[u'giant', u'flame']
[u'gold', u'explor', u'figur', u'worri', u'miner', u'chamber']
[u'good', u'rain', u'fall', u'region']
[u'govt', u'accus', u'ignor', u'countri', u'view', u'rail']
[u'govt', u'consid', u'wheelchair', u'taxi', u'servic', u'option']
[u'govt', u'hail', u'electr', u'meter', u'trial', u'success']
[u'govt', u'increas', u'fund', u'palestinian', u'refuge']
[u'govt', u'relax', u'adopt', u'restrict']
[u'grower', u'wari', u'cole', u'home', u'brand', u'target']
[u'gunn', u'alter', u'pulp', u'plan']
[u'hazem', u'masri']
[u'hop', u'develop', u'law', u'clear']
[u'hous', u'construct', u'fall', u'fourth', u'quarter']
[u'hous', u'start', u'slump', u'nation', u'averag']
[u'iluka', u'share', u'price', u'rise', u'amid', u'takeov', u'specul']
[u'immigr', u'chang', u'affect', u'kosovar', u'asylum']
[u'immigr', u'dept', u'closer', u'interview', u'chen']
[u'injuri', u'cloud', u'wallabi']
[u'inquest', u'tell', u'search', u'tegan', u'father']
[u'iran', u'stone', u'women', u'say', u'nobel', u'laureat']
[u'ireland', u'overpow', u'japan', u'clinch', u'seri']
[u'italian', u'high', u'confid', u'wallabi', u'challeng']
[u'japan', u'beat', u'greec', u'scrappi', u'conf', u'game']
[u'japan', u'south', u'korea', u'fail', u'agre', u'histori', u'summit']
[u'japan', u'stake', u'whale']
[u'jewish', u'settler', u'palestinian', u'kill', u'summit']
[u'kiwi', u'campbel', u'win', u'open']
[u'leav', u'employe', u'hour', u'journey']
[u'lebanon', u'opposit', u'sweep', u'final', u'poll', u'round', u'offici']
[u'lekka', u'target', u'cat', u'clash', u'return']
[u'lennon', u'beat', u'plan', u'process', u'gunn']
[u'librari', u'affect', u'amalgam', u'shire']
[u'lion', u'upbeat', u'despit', u'copeland', u'injuri']
[u'lleyton', u'underdon', u'coach']
[u'accus', u'threaten', u'polic', u'knife']
[u'man', u'lose', u'donald', u'leed']
[u'question', u'woman', u'death']
[u'throw', u'parap', u'crash']
[u'market', u'slide', u'record', u'high']
[u'matern', u'group', u'say', u'lack', u'servic', u'put', u'women']
[u'media', u'urg', u'respect', u'princ', u'harri', u'privaci']
[u'metal', u'price', u'prompt', u'rethink', u'chines', u'economi']
[u'michael', u'vaughan', u'kevin', u'pietersen', u'interview']
[u'midwest', u'embrac', u'partner', u'sinosteel']
[u'minist', u'evad', u'iraq', u'firebomb', u'question']
[u'good', u'news', u'farmer', u'weekend', u'rain']
[u'school', u'leaver', u'choos', u'apprenticeship']
[u'expect', u'recc', u'chopper', u'townsvill']
[u'suggest', u'cash', u'incent', u'boost', u'region']
[u'welcom', u'student', u'view', u'curfew']
[u'deal', u'promot', u'australia', u'oversea']
[u'fund', u'allow', u'extra', u'tamar', u'river', u'dredg']
[u'rule', u'impos', u'bluefin', u'tuna', u'catch']
[u'offic', u'open', u'broom']
[u'ninemsn', u'optus', u'announc', u'phone', u'internet', u'partnership']
[u'korea', u'missil', u'recognit']
[u'unveil', u'energi', u'effici', u'build', u'code']
[u'candid', u'face', u'postal', u'vote', u'count']
[u'govt', u'ask', u'explain', u'uranium', u'mine', u'stanc']
[u'voter', u'clear', u'choic', u'say', u'martin']
[u'guard', u'confid', u'cricket', u'bounc']
[u'opposit', u'outrag', u'ignor', u'inquiri', u'find']
[u'opposit', u'politicis', u'parliamentari', u'inquiri']
[u'outlook', u'good', u'grain', u'farmer', u'rain']
[u'palmer', u'reject', u'claim', u'immigr', u'stonewal']
[u'paperwork', u'plan', u'trigger', u'fear', u'fewer', u'polic']
[u'patel', u'didnt', u'wash', u'hand', u'patient', u'inquiri']
[u'peopl', u'smuggl', u'hear', u'week']
[u'plantagenet', u'shire', u'get', u'tough', u'firebreak']
[u'offer', u'tsunami', u'thank']
[u'tight', u'lip', u'draft', u'palmer', u'inquiri', u'report']
[u'urg', u'releas', u'asylum', u'seeker']
[u'polic', u'frustrat', u'drink', u'driver']
[u'polic', u'intensifi', u'search', u'miss', u'bike', u'club']
[u'policeman', u'push', u'albani', u'motorplex']
[u'polic', u'seek', u'assault']
[u'polic', u'seek', u'assault']
[u'polic', u'warn', u'drink', u'spike', u'danger']
[u'popul', u'boom', u'hasten', u'wind', u'farm', u'upgrad']
[u'privat', u'hospit', u'expand', u'despit', u'shortag']
[u'promot', u'rout', u'north']
[u'properti', u'market', u'optim', u'remain', u'despit', u'hotel']
[u'prospect', u'boat', u'oper', u'undergo', u'train']
[u'public', u'urg', u'justic']
[u'puppi', u'farm', u'law', u'toughen']
[u'qanta', u'singapor', u'merger', u'stall', u'runway']
[u'qasim', u'excit', u'prospect', u'freedom']
[u'qasim', u'offer', u'visa']
[u'quak', u'rock', u'northern', u'japan']
[u'racv', u'predict', u'fuel', u'price', u'rise']
[u'rain', u'beef', u'produc', u'expect', u'better', u'price']
[u'rape', u'victim', u'hold', u'watch', u'hous', u'cell', u'court', u'tell']
[u'rat', u'wont', u'rise', u'cultur', u'centr', u'mayor']
[u'refuge', u'travel', u'loan', u'boost']
[u'repair', u'proceed', u'slowli', u'bunburi', u'storm']
[u'republican', u'senat', u'challeng', u'bush', u'iraq', u'optim']
[u'resid', u'flee', u'floodwat', u'canada']
[u'reward', u'boost', u'unsolv', u'crime']
[u'rice', u'press', u'drive', u'middl', u'east', u'reform']
[u'riversid', u'renew', u'project', u'hamper', u'east', u'perth']
[u'meat', u'industri', u'target', u'diet', u'industri', u'smallgood']
[u'rspca', u'examin', u'stock', u'neglect', u'claim']
[u'sack', u'teacher', u'take', u'fight', u'suprem', u'court']
[u'salvo', u'note', u'underli', u'optim']
[u'scientist', u'close', u'make', u'sperm', u'stem', u'cell']
[u'senat', u'immigr', u'detent', u'inquiri', u'expect']
[u'senat', u'push', u'silicosi', u'inquiri']
[u'industri', u'face', u'hurdl']
[u'industri', u'moral', u'say']
[u'sheedi', u'call', u'origin', u'return']
[u'shiekh', u'hilali', u'return', u'home']
[u'shortag', u'stop', u'work', u'nation', u'biggest', u'sheep']
[u'silicosi', u'victim', u'union', u'asbesto', u'comparison']
[u'skywest', u'consid', u'bigger', u'plan', u'goldfield']
[u'snow', u'get', u'ski', u'season']
[u'socceroo', u'play', u'pride', u'tunisia']
[u'sorri', u'start', u'ash', u'tour']
[u'station', u'expans', u'get', u'council']
[u'stricter', u'measur', u'need', u'retain', u'control']
[u'strong', u'commod', u'demand', u'push', u'price']
[u'student', u'wheeli', u'bin', u'makeov']
[u'studi', u'way', u'predict', u'prevent', u'alzheim']
[u'surgeon', u'meet', u'child', u'patient', u'backlog']
[u'surgeon', u'fight', u'children', u'hospit', u'crisi']
[u'swimmer', u'expect', u'success', u'montreal']
[u'tasmanian', u'teacher', u'receiv', u'train']
[u'territorian', u'home', u'buyer', u'gain', u'bigger', u'rebat']
[u'thai', u'polic', u'major', u'heroin', u'seizur']
[u'real', u'mcinn', u'candi']
[u'surviv', u'forc', u'crash', u'land']
[u'tourist', u'die', u'isol', u'kimberley', u'waterfal']
[u'tourist', u'join', u'dinosaur', u'hunt']
[u'train', u'provid', u'base', u'aust', u'brisban']
[u'tripl', u'penalti', u'drama', u'mexico', u'brazil']
[u'emerg', u'depart', u'continu']
[u'union', u'defend', u'scaremong']
[u'union', u'want', u'road', u'accid', u'control', u'scheme', u'extend']
[u'unseason', u'kimberley', u'downpour', u'strand', u'tourist']
[u'uranium', u'cost', u'territori', u'million', u'say']
[u'follow', u'intern', u'guantanamo', u'rice']
[u'grand', u'prix', u'descend', u'farc']
[u'vanston', u'concern', u'villawood', u'self', u'harmer']
[u'vice', u'chancellor', u'group', u'warn', u'voluntari']
[u'video', u'link', u'connect', u'communiti']
[u'weather', u'bureau', u'revis', u'nino', u'drought']
[u'whale', u'commiss', u'meet']
[u'whatmor', u'hit', u'critic']
[u'wilkinson', u'clive', u'shuffl', u'lion']
[u'william', u'maintain', u'legal', u'action', u'gold']
[u'wolfowitz', u'urg', u'boost', u'africa']
[u'wood', u'apologis', u'troop', u'comment']
[u'wood', u'apolog', u'necessari']
[u'wood', u'arriv', u'melbourn']
[u'wood', u'releas', u'agre', u'raid', u'sheikh', u'say']
[u'wood', u'reunit', u'famili']
[u'workshop', u'studi', u'lobster', u'catch']
[u'world', u'virtual', u'ralli', u'hold']
[u'australian', u'catch', u'credit', u'card', u'scam']
[u'aborigin', u'health', u'servic', u'expand']
[u'academ', u'highlight', u'econom', u'impact', u'japan']
[u'govt', u'hand', u'tie', u'util', u'chief', u'salari']
[u'adelaid', u'coupl', u'offer', u'qasim', u'home']
[u'black', u'recal', u'macdonald', u'lion', u'test']
[u'alleg', u'rape', u'victim', u'detent', u'defend']
[u'ord', u'take', u'breather', u'set', u'record']
[u'andrew', u'accus', u'hypocrisi', u'workplac']
[u'antarctica', u'parti', u'atmospher', u'heat']
[u'anti', u'smoke', u'law', u'effect', u'fund', u'say']
[u'anti', u'syrian', u'politician', u'kill', u'bomb', u'blast']
[u'architect', u'shed', u'light', u'sheep', u'shear']
[u'australian', u'bank', u'comput', u'safe', u'scam']
[u'bangladesh', u'high', u'cricket']
[u'batteri', u'recycl', u'plan', u'worri', u'resid']
[u'bird', u'face', u'long', u'stint', u'sidelin']
[u'bitter', u'tast', u'deter', u'substanc', u'abus']
[u'blair', u'say', u'secur', u'budget', u'deal']
[u'bob', u'daili', u'swim', u'grab', u'archibald', u'peopl', u'prize']
[u'bowl', u'club', u'teeter', u'possibl', u'biki', u'takeov']
[u'bridg', u'plan', u'caus', u'indigen', u'upset']
[u'bronco', u'sign', u'mcguir']
[u'broom', u'shire', u'chief', u'repres', u'kimberley', u'council']
[u'buckley', u'need', u'time', u'say', u'malthous']
[u'bunburi', u'scheme', u'ahead', u'chang']
[u'bundaberg', u'hospit', u'mess', u'lone', u'case']
[u'bundaberg', u'ring', u'road']
[u'burton', u'escap', u'suspens']
[u'plung', u'gorg', u'india']
[u'urgent', u'work', u'trawler', u'wharf']
[u'campbel', u'concern', u'whale', u'commiss']
[u'canadian', u'idea', u'piqu', u'brack', u'rann']
[u'carr', u'defend', u'madden', u'despit', u'phone', u'find']
[u'chamber', u'reject', u'union', u'skill', u'labour', u'shortag']
[u'china', u'sign', u'leader', u'appoint']
[u'clerk', u'slam', u'slow', u'govt', u'respons', u'inquiri']
[u'club', u'golf', u'cours', u'plan', u'chang']
[u'club', u'stress', u'merger', u'long', u'term']
[u'club', u'urg', u'join', u'busi', u'plan']
[u'communiti', u'sign', u'mutual', u'program']
[u'consum', u'seek', u'detail', u'credit', u'card', u'scam']
[u'costigan', u'accept', u'week']
[u'council', u'develop']
[u'council', u'present', u'region', u'perspect']
[u'council', u'lobbi', u'condobolin']
[u'cricket', u'secur', u'rise']
[u'darl', u'down', u'call', u'broadband', u'access']
[u'deal', u'sign', u'help', u'protect', u'beef', u'export']
[u'defenc', u'exercis', u'shift', u'focus', u'grind', u'battl']
[u'detaine', u'fear', u'trick', u'visa', u'advoc', u'say']
[u'driver', u'urg', u'heed', u'road', u'closur']
[u'driver', u'warn', u'loom', u'fuel', u'price', u'rise']
[u'east', u'timor', u'urg', u'manag', u'energi', u'wealth']
[u'egg', u'grow', u'stem', u'cell', u'research']
[u'environ', u'offici', u'probe', u'lion', u'death']
[u'export', u'better', u'freight', u'price']
[u'eyr', u'peninsula', u'inquiri', u'begin']
[u'boss', u'blame', u'team', u'fiasco']
[u'ferguson', u'qasim', u'comment', u'revis']
[u'ferri', u'termin', u'plan', u'display']
[u'farmer', u'outsid', u'zone', u'seek', u'drought', u'review']
[u'filipino', u'mourn', u'revolutionari', u'cardin']
[u'final', u'submiss', u'virgin', u'blue', u'case']
[u'firefight', u'frustrat', u'bushfir', u'inquiri', u'respons']
[u'fish', u'group', u'attack', u'shark', u'dive', u'plan']
[u'gile', u'england', u'squad']
[u'flatley', u'red', u'face', u'babi', u'black']
[u'flatley', u'red', u'face', u'babi', u'black']
[u'bail', u'cruis', u'soak']
[u'seat', u'opposit', u'like']
[u'fring', u'festiv', u'start', u'global', u'talent', u'search']
[u'gambl', u'support', u'group', u'take', u'court', u'action']
[u'georgiou', u'hail', u'asylum', u'seeker', u'polici']
[u'crop', u'trial', u'worri', u'democrat']
[u'gold', u'coast', u'strong', u'despit', u'visitor', u'number', u'figur']
[u'govt', u'ask', u'reveal', u'visa', u'detail']
[u'govt', u'consid', u'troop', u'return', u'afghanistan']
[u'govt', u'fund', u'target', u'indigen', u'famili', u'violenc']
[u'govt', u'monitor', u'heritag', u'concern', u'braidwood']
[u'govt', u'mull', u'work', u'week']
[u'govt', u'mull', u'mental', u'health', u'secur', u'facil']
[u'govt', u'unfaz', u'anti', u'petit']
[u'grant', u'fund', u'health', u'centr', u'cape', u'barren']
[u'green', u'echo', u'review', u'worker', u'comp']
[u'gunn', u'urg', u'explain', u'pulp', u'chang']
[u'harradin', u'bow', u'senat']
[u'heavi', u'rain', u'caus', u'flood', u'adelaid']
[u'hewitt', u'dish', u'cricket', u'advic']
[u'hewitt', u'warn', u'australia', u'tenni', u'futur']
[u'hick', u'face', u'charg', u'australia', u'legal']
[u'highway', u'death', u'upset']
[u'hollioak', u'blewett', u'star', u'tsunami', u'match']
[u'hope', u'thousand', u'flock', u'mackay']
[u'hunter', u'water', u'worker', u'work']
[u'husband', u'plead', u'guilti', u'murder']
[u'dont', u'need', u'hide', u'aussi', u'harmison']
[u'import', u'decis', u'creat', u'potato', u'farmer', u'uncertainti']
[u'independ', u'assessor', u'solv', u'develop']
[u'inquiri', u'focus', u'region', u'skill', u'worker']
[u'reform', u'hurt', u'famili', u'academ']
[u'island', u'welcom', u'dugong', u'turtl', u'hunt', u'limit']
[u'isra', u'launch', u'wave', u'jihad', u'arrest']
[u'israel', u'target', u'islam', u'jihad', u'sharon', u'abba']
[u'jam', u'hardi', u'compens', u'deal', u'suffer', u'setback']
[u'japan', u'fail', u'whale']
[u'japan', u'lose', u'whale']
[u'kempsey', u'council', u'rethink', u'rate', u'variat']
[u'labor', u'urg', u'ethanol', u'blend', u'fuel', u'govt']
[u'lennon', u'defend', u'chang', u'pulp', u'plan']
[u'long', u'beazley']
[u'malthous', u'issu', u'warn']
[u'name', u'fatal', u'cliff', u'fall']
[u'plead', u'guilti', u'mistreat', u'livestock']
[u'mapoon', u'need', u'relax', u'alcohol', u'say', u'springborg']
[u'maroochi', u'shire', u'move', u'airport', u'park', u'fee']
[u'marsh', u'quit', u'england', u'selector']
[u'martin', u'warn', u'possibl', u'disciplin', u'problem']
[u'mayor', u'air', u'local', u'govt', u'merger', u'opposit']
[u'mayor', u'see', u'benefit', u'kalgoorli', u'tourism', u'deal']
[u'mayor', u'lobbi', u'costa', u'nowra', u'road', u'fund']
[u'mcdonald', u'give', u'french', u'fri', u'suppli', u'deal', u'simplot']
[u'mcgee', u'brother', u'refus', u'testifi']
[u'meatwork', u'resum', u'product']
[u'meet', u'focus', u'aerial', u'firefight']
[u'merger', u'cost', u'council', u'govt', u'fund']
[u'midden', u'provid', u'tourism', u'opportun']
[u'extens', u'plan', u'clear', u'hurdl']
[u'miner', u'consid', u'great', u'southern', u'expans']
[u'minist', u'back', u'fine', u'illeg', u'veget', u'clear']
[u'minist', u'say', u'polic', u'bug', u'claim', u'outrag']
[u'minist', u'maleni', u'platypus', u'footag']
[u'mitchel', u'forum', u'look', u'blueprint', u'bush']
[u'good', u'rain', u'central', u'aust', u'certainti']
[u'rain', u'need', u'boost', u'water', u'storag']
[u'road', u'reopen', u'rain']
[u'sandon', u'consult', u'plan']
[u'hear', u'father', u'view']
[u'nation', u'plan', u'tamworth', u'strategi']
[u'movi', u'honour', u'late', u'comic', u'dangerfield']
[u'hurt', u'roll', u'load', u'aboard']
[u'northam', u'aim', u'swan', u'popul']
[u'north', u'coast', u'anti', u'whale', u'group', u'attack']
[u'compani', u'press', u'ahead', u'electr', u'plan']
[u'inspir', u'slowdown', u'affect', u'aust', u'costello']
[u'price', u'hit', u'market']
[u'price', u'tip', u'continu', u'rise']
[u'trafford', u'deal', u'owen']
[u'opposit', u'back', u'govt', u'plan', u'break', u'western']
[u'opposit', u'tell', u'truth', u'wood']
[u'opposit', u'question', u'qasim', u'releas']
[u'student', u'investig', u'cheat', u'claim']
[u'parliament', u'consid', u'die', u'digniti']
[u'patel', u'cathet', u'caus', u'acut', u'infect']
[u'patel', u'inquiri', u'hear', u'damn', u'evid']
[u'philippin', u'peopl', u'power', u'icon', u'cardin', u'die']
[u'place', u'avail', u'apprenticeship', u'cours']
[u'plot', u'stop', u'kill', u'ambassador', u'afghanistan']
[u'seek', u'earli', u'telstra', u'sale']
[u'policeman', u'plead', u'guilti', u'drive', u'charg']
[u'polic', u'warn', u'fake', u'money', u'alic', u'spring']
[u'propos', u'qasim', u'releas', u'worri']
[u'public', u'south', u'east', u'road']
[u'public', u'respond', u'region', u'rail', u'timet', u'plan']
[u'defi', u'downward', u'trend', u'nation', u'hous']
[u'health', u'reject', u'springsur', u'matern', u'claim']
[u'rain', u'mix', u'bless', u'canegrow']
[u'rain', u'increas', u'north', u'dengu', u'fever', u'risk']
[u'rebel', u'hold', u'politician', u'hostag', u'aceh']
[u'research', u'centr', u'receiv', u'biotechnolog', u'fund']
[u'research', u'storm', u'darwin', u'thunder', u'studi']
[u'ripen', u'sensor']
[u'roadwork', u'boost', u'school', u'truck', u'traffic']
[u'ryan', u'continu', u'call', u'yarram', u'polic']
[u'sack', u'teacher', u'case', u'resum', u'septemb']
[u'saddam', u'miss', u'ronald', u'reagan', u'soldier']
[u'saint', u'play', u'hamil', u'injuri']
[u'sandblast', u'urg', u'undergo', u'silicosi', u'test']
[u'scam', u'target', u'credit', u'card', u'user']
[u'scientist', u'label', u'govt', u'hypocrit']
[u'scientist', u'genom']
[u'eagl', u'lose', u'donald', u'england']
[u'senat', u'brother', u'nuditi', u'complaint']
[u'shelf', u'space', u'home', u'brand', u'concern', u'abar']
[u'signific', u'migrat', u'tabl']
[u'sixer', u'close', u'complet', u'maher', u'deal']
[u'slater', u'good', u'origin', u'kenni', u'claim']
[u'socceroo', u'blood', u'fring', u'player']
[u'south', u'australian', u'face', u'higher', u'fuel', u'price']
[u'sponsorship', u'woe', u'place', u'year', u'long', u'delay', u'safari']
[u'springborg', u'head', u'cape', u'york']
[u'stall', u'vote', u'caus', u'concern', u'whale', u'meet']
[u'stile', u'gracious', u'ax']
[u'strand', u'famili', u'safe', u'polic']
[u'stress', u'side', u'forest', u'log', u'issu']
[u'support', u'defend', u'kind', u'brilliant', u'patel']
[u'swan', u'hill', u'consid', u'train', u'restaur', u'plan']
[u'tabcorp', u'join', u'singapor', u'casino']
[u'take', u'poki', u'club', u'pointless', u'say']
[u'hurt', u'poll', u'labor', u'admit']
[u'tegan', u'lane', u'regist', u'illeg', u'court', u'hear']
[u'templ', u'site', u'undergo', u'contamin', u'test']
[u'tiger', u'bite', u'critic']
[u'tourism', u'oper', u'face', u'skill', u'worker', u'shortag']
[u'tourist', u'bodi', u'recov', u'kimberley']
[u'treasur', u'dismiss', u'overspend', u'alleg']
[u'treasuri', u'secretari', u'call', u'uniform', u'electr']
[u'tribun', u'consid', u'virgin', u'blue', u'rule']
[u'tribun', u'film', u'archiv', u'rule', u'welcom']
[u'korea', u'agre', u'talk', u'disagre', u'issu']
[u'arrest', u'iraq', u'attack']
[u'ullrich', u'happi', u'form', u'tour', u'beckon']
[u'investig', u'quiz', u'lebanon', u'secur', u'chief']
[u'union', u'predict', u'silicosi', u'case', u'emerg']
[u'agre', u'fund', u'iraq']
[u'open', u'champion', u'campbel', u'shoot', u'rank']
[u'polic', u'kill', u'courthous', u'grenad', u'threat']
[u'senat', u'block', u'bolton', u'nomin']
[u'util', u'chief', u'high', u'salari', u'beggar', u'belief']
[u'vail', u'beat', u'support', u'technic', u'colleg']
[u'vanston', u'quiz', u'palmer', u'report', u'copi']
[u'viduka', u'desper', u'play', u'world']
[u'warn', u'walk', u'fine', u'line', u'cricket', u'australia']
[u'word', u'erupt', u'nativ', u'titl', u'claim']
[u'water', u'top', u'forum', u'agenda']
[u'webck', u'close', u'door', u'origin', u'return']
[u'week', u'focus', u'substanc', u'abus']
[u'western', u'forc', u'sign', u'sprint', u'champion']
[u'whan', u'reject', u'opposit', u'hospit', u'fund', u'claim']
[u'wild', u'weather', u'hit']
[u'wind', u'farm', u'electr', u'generat', u'target']
[u'wind', u'farm', u'meet', u'rule', u'approv']
[u'wodonga', u'host', u'rail', u'freight', u'forum']
[u'woman', u'lose', u'money', u'bank']
[u'wood', u'expect', u'rescu', u'cost']
[u'wood', u'rule', u'iraq', u'return']
[u'woodi', u'allen', u'cast', u'hugh', u'jackman', u'movi']
[u'wool', u'industri', u'split', u'peta', u'boycott', u'talk']
[u'work', u'continu', u'nurs', u'home']
[u'worker', u'escap', u'freak', u'wombat', u'accid', u'unharm']
[u'fight', u'oper', u'asia', u'pacif', u'servic']
[u'adler', u'busi', u'deal', u'illeg', u'asic']
[u'adler', u'face', u'charg', u'jail', u'activ']
[u'flag', u'crackdown', u'test']
[u'dismiss', u'stand', u'asid', u'ashbourn']
[u'agreement', u'help', u'kimberley', u'indigen', u'student']
[u'back', u'call', u'wider', u'hospit', u'probe']
[u'form', u'region', u'health', u'lobbi', u'group']
[u'amberley', u'raaf', u'base', u'upgrad']
[u'annan', u'condemn', u'anti', u'syrian', u'politician', u'kill']
[u'whaler']
[u'appeal', u'flag', u'hmas', u'voyag', u'compo', u'case']
[u'arroyo', u'accus', u'vote', u'fraud', u'inquiri']
[u'arthur', u'pratt', u'henin', u'henman']
[u'asbesto', u'foundat', u'start', u'home', u'scheme']
[u'australia', u'start', u'conf', u'post', u'mortem']
[u'author', u'probe', u'action']
[u'banker', u'group', u'examin', u'secur', u'breach', u'alert']
[u'bendigo', u'council', u'adopt', u'structur', u'chang']
[u'black', u'cop', u'cobb', u'attack', u'claim']
[u'bolton', u'doubt', u'clash', u'pie']
[u'break', u'hill', u'councillor', u'claim', u'harass']
[u'bronco']
[u'bronz', u'granit', u'polic', u'memori', u'canberra']
[u'brother', u'grimm', u'fairi', u'tale', u'accept', u'unesco', u'list']
[u'bureau', u'issu', u'cold', u'weather', u'warn']
[u'burni', u'develop', u'trigger', u'resid', u'concern']
[u'busi', u'quiz', u'indigen', u'job']
[u'campbel', u'deni', u'whaler', u'port']
[u'campbel', u'sign', u'gold', u'coast']
[u'cancer', u'patient', u'furious', u'club', u'impos', u'beani']
[u'candid', u'nervous', u'await', u'close', u'elect', u'result']
[u'carr', u'reject', u'nardi', u'hous', u'disabl', u'fund']
[u'case', u'highlight', u'poor', u'polic', u'treatment', u'rape']
[u'casino', u'lismor', u'urg', u'support', u'countri', u'week']
[u'central', u'australian', u'artist', u'work']
[u'chelsea', u'snap', u'bilbao', u'leav', u'horno']
[u'chen', u'detail', u'alleg', u'kidnap']
[u'children', u'commiss', u'target', u'north', u'train']
[u'christian', u'pastor', u'remain', u'defiant']
[u'citrus', u'grower', u'form', u'compo', u'packag']
[u'clement', u'happi', u'backlin']
[u'club', u'beani', u'anger', u'cancer', u'patient']
[u'club', u'urg', u'rethink', u'polici']
[u'collina', u'world', u'uefa']
[u'collingwood', u'make', u'histori', u'bangladesh']
[u'concern', u'damag', u'kimberley']
[u'lion', u'autopsi']
[u'council', u'back', u'develop', u'blue', u'mountain', u'resort']
[u'council', u'consid', u'releas', u'drought']
[u'council', u'order', u'dive', u'accid', u'victim']
[u'council', u'reflect', u'glass', u'recycl', u'effort']
[u'council', u'urg', u'chang', u'prefer', u'site', u'hospit']
[u'counsel', u'order', u'stepfath', u'spoon']
[u'court', u'dash', u'compo', u'hop']
[u'court', u'order', u'elect', u'busselton', u'ward']
[u'cowboy', u'coach', u'look', u'forward', u'norton', u'return']
[u'darwin', u'raaf', u'base', u'win', u'nation', u'award']
[u'defect', u'chines', u'diplomat', u'abandon']
[u'demon', u'interest', u'play', u'away']
[u'detain', u'fish', u'boat', u'escap', u'help']
[u'dissid', u'push', u'grain', u'bodi', u'chang']
[u'exchang', u'provid', u'miss', u'clue']
[u'doctor', u'hold', u'industri', u'action']
[u'fenc', u'mainten', u'improv']
[u'drug', u'centr', u'futur', u'limbo']
[u'dubbo', u'resid', u'evacu', u'amid', u'explos', u'fear']
[u'gippsland', u'gold', u'find', u'encourag', u'miner']
[u'electr', u'bill', u'reduct']
[u'emir', u'choos', u'sleepi', u'valley', u'resot']
[u'timor', u'pass', u'initi', u'legisl']
[u'adopt', u'plan', u'reform', u'european', u'sugar', u'market']
[u'farina', u'safe', u'despit', u'confeder', u'flop']
[u'farmer', u'fin', u'catch', u'eagl']
[u'farmer', u'fight', u'veget', u'import']
[u'feder', u'opposit', u'question', u'polglas', u'appoint']
[u'ferguson', u'qasim']
[u'fevola', u'stay', u'carlton']
[u'filipino', u'hostag', u'free', u'iraq', u'say', u'presid']
[u'frontbench', u'defi', u'beazley', u'immigr']
[u'fund', u'arriv', u'laidley', u'shire']
[u'fund', u'cut', u'motiv', u'super', u'merger', u'plan']
[u'fund', u'research', u'focus', u'turn', u'sugarcan']
[u'germani', u'group', u'argentina', u'spoil', u'parti']
[u'ghan', u'oper', u'deni', u'breath', u'test', u'delay', u'train']
[u'gold', u'coast', u'film', u'industri', u'impress', u'oversea']
[u'govt', u'assur', u'dont', u'quell', u'concern']
[u'govt', u'mandat', u'hour', u'work', u'week', u'plan']
[u'govt', u'reject', u'tougher', u'anim', u'cruelti', u'penalti']
[u'govt', u'scheme', u'offer', u'benefit', u'indigen', u'student']
[u'govt', u'tourism', u'group', u'welcom', u'whale', u'decis']
[u'govt', u'polic', u'number']
[u'govt', u'work', u'hour', u'code']
[u'gregan', u'return', u'wallabi']
[u'grim', u'forecast', u'melbourn', u'water', u'catchment']
[u'grow', u'amphetamin', u'worri', u'health', u'worker']
[u'growth', u'tip', u'remain']
[u'gypsi', u'joker', u'acquit', u'nightclub', u'assault']
[u'health', u'group', u'confid', u'matern', u'servic']
[u'henson', u'doubl', u'see', u'lion', u'scrape', u'home']
[u'hewitt', u'face', u'unknown', u'czech', u'scud', u'target', u'safin']
[u'hick', u'break', u'point', u'say', u'lawyer']
[u'hospit', u'suspend', u'oversea', u'train', u'doctor']
[u'hospit', u'take', u'psychiatr', u'patient']
[u'hous', u'provid', u'student', u'share']
[u'independ', u'doubt', u'nation', u'back']
[u'indigen', u'job', u'scheme', u'prove', u'winner']
[u'show', u'orang', u'council']
[u'intern', u'polic', u'inquiri', u'investig', u'media', u'leak']
[u'inventor', u'kick', u'revolut', u'die']
[u'iraq', u'list', u'endang', u'cultur', u'site']
[u'condemn', u'japan', u'whale', u'program']
[u'wont', u'wimbledon', u'champion', u'nadal']
[u'japan', u'lose', u'scrap', u'antarct', u'whale', u'sanctuari']
[u'japan', u'lose', u'scientif', u'whale', u'hunt']
[u'jewish', u'communiti', u'honour']
[u'kelli', u'reject', u'council', u'rate', u'rise', u'push']
[u'kiwi', u'reject', u'zimbabw', u'boycott', u'call']
[u'labor', u'actu', u'launch', u'campaign', u'reform']
[u'labor', u'join', u'voic', u'brother', u'nuditi']
[u'land', u'right', u'agreement', u'help', u'search']
[u'largest', u'solar', u'power', u'station', u'run']
[u'latest', u'alcohol', u'research', u'find', u'young', u'peopl', u'risk']
[u'latham', u'roger', u'wallabi']
[u'latrob', u'valley', u'adopt', u'build', u'skill', u'scheme']
[u'lawyer', u'rais', u'bruce', u'highway', u'crash', u'compo', u'possibl']
[u'lib', u'postcard', u'target', u'holli']
[u'like', u'leader', u'say', u'work', u'independ']
[u'long', u'term', u'detaine', u'accept', u'visa']
[u'lower', u'hous', u'pass', u'budget']
[u'charg', u'secur', u'guard', u'murder']
[u'get', u'year', u'random', u'toddler', u'stab']
[u'maxfield', u'go', u'knife']
[u'mccaw', u'injuri', u'prompt', u'holah', u'black']
[u'medic', u'board', u'find', u'fault', u'keogh', u'case']
[u'meet', u'focus', u'south', u'east', u'busi']
[u'pressur', u'share']
[u'middl', u'east', u'talk', u'stall']
[u'miner', u'hop', u'golden', u'time', u'ahead', u'reef', u'discoveri']
[u'minist', u'hold', u'pastor', u'leas', u'indigen']
[u'monto', u'project', u'move', u'phase']
[u'time', u'highway', u'comment']
[u'morwel', u'forum', u'seek', u'migrant', u'women', u'input']
[u'mother', u'stab', u'death', u'children']
[u'pleas', u'karoonda', u'bipartisan', u'approach']
[u'pour', u'cold', u'water', u'curfew']
[u'talk', u'waterfront', u'plan', u'adopt']
[u'nation', u'pull', u'weight']
[u'nation', u'expect', u'senat', u'govt']
[u'nation', u'leader', u'firm', u'anti', u'stanc']
[u'nation', u'presid', u'seek', u'meet']
[u'agreement', u'push', u'school', u'play', u'polici']
[u'figur']
[u'highway', u'undergo', u'safeti', u'audit']
[u'appl', u'grower', u'boycott', u'aust', u'produc']
[u'guilti', u'threaten', u'kill']
[u'merger', u'plan', u'offer', u'west', u'benefit']
[u'opposit', u'demand', u'probe', u'polic', u'handl']
[u'opposit', u'press', u'govt', u'damn', u'cityrail']
[u'palestinian', u'milit', u'deni', u'involv', u'shoot']
[u'pastor', u'reject', u'apolog', u'order', u'koran', u'comment']
[u'peta', u'stand', u'firm', u'mules', u'boycott']
[u'plan', u'unveil', u'univers', u'perth']
[u'rule', u'hour', u'work', u'week']
[u'polic', u'hold', u'fear', u'miss', u'woman']
[u'polic', u'investig', u'richmond', u'river', u'bodi']
[u'polic', u'crash', u'victim']
[u'pork', u'produc', u'consid', u'legal', u'action']
[u'power', u'coach', u'predict', u'finish']
[u'price', u'reveal', u'battl', u'gambl', u'cancer']
[u'probe', u'begin', u'arroyo', u'elect', u'rig', u'claim']
[u'probe', u'reveal', u'detent', u'centr', u'health', u'worker']
[u'promot', u'plan', u'hockey', u'violenc', u'showcas']
[u'whale', u'lobbi', u'defeat', u'vote']
[u'publish', u'dismiss', u'retail', u'home', u'brand', u'push']
[u'qanta', u'reject', u'downgrad', u'staff', u'report']
[u'qanta', u'staff', u'retrench', u'union', u'say']
[u'rare', u'wallabi', u'nation', u'park', u'home']
[u'region', u'leader', u'agre', u'safeguard']
[u'region', u'mobil', u'blood', u'donor', u'servic']
[u'revamp', u'plan', u'coledal', u'communiti', u'centr']
[u'revolutionari', u'solar', u'sail', u'spacecraft', u'lose']
[u'rice', u'claim', u'credit', u'enabl', u'middl', u'east']
[u'salli', u'malay', u'nickel', u'oper']
[u'secker', u'back', u'roadwork', u'amidst', u'complaint']
[u'senat', u'allow', u'opec', u'price', u'fix']
[u'senat', u'inquiri', u'head', u'gunnedah']
[u'bill', u'futur', u'uncertain', u'debat', u'continu']
[u'share', u'market', u'continu', u'slide']
[u'sheep', u'flock', u'drop']
[u'shepherd', u'fire', u'young', u'wallabi']
[u'singapor', u'airlin', u'warm', u'qanta', u'merger']
[u'injur', u'crash', u'restaur']
[u'solar', u'sail', u'spacecraft', u'blast']
[u'south', u'east', u'miss', u'auslink', u'fund']
[u'south', u'west', u'flood', u'damag', u'exceed']
[u'soya', u'chemic', u'burn', u'sperm', u'say', u'research']
[u'speed', u'zone', u'audit', u'includ', u'illawarra', u'highway']
[u'stick', u'fremantl', u'coach', u'urg', u'fan']
[u'storm', u'leav', u'thousand', u'resid', u'dark']
[u'student', u'expect', u'legisl', u'chang']
[u'substanc', u'abus', u'report', u'highlight', u'alcohol', u'woe']
[u'support', u'grow', u'newcastl', u'light', u'rail']
[u'surgeri', u'patient', u'wasnt', u'check', u'inquiri', u'tell']
[u'survey', u'confirm', u'leagu', u'gambl', u'habit']
[u'swan', u'worri', u'labor', u'perform']
[u'talk', u'focus', u'recycl', u'water']
[u'teacher', u'accus', u'rape', u'charg', u'drop']
[u'teen', u'charg', u'lakemba', u'assault']
[u'telstra', u'deni', u'rural', u'council', u'fund']
[u'earli', u'airport', u'plan', u'feder', u'fund']
[u'tragedi', u'lace', u'modigliani', u'top']
[u'tree', u'root', u'blame', u'sewag', u'spill']
[u'trotter', u'spotter', u'annandal']
[u'line', u'board', u'blast', u'report']
[u'tune', u'junior', u'black', u'clash']
[u'union', u'begin', u'ongo', u'campaign', u'oppos', u'chang']
[u'democrat', u'demand', u'inquiri', u'iraq', u'guantanamo']
[u'desert', u'dock']
[u'market', u'mix', u'price', u'jitter']
[u'vanston', u'grant', u'visa', u'nauru', u'detaine', u'famili']
[u'vanston', u'hint', u'nauru', u'famili', u'decis']
[u'victorian', u'rort', u'million', u'home', u'buyer', u'grant']
[u'virus', u'show', u'promis', u'cancer', u'killer']
[u'vote', u'stop', u'kill']
[u'water', u'qualiti', u'didnt', u'caus', u'dialysi', u'closur', u'mayor']
[u'west', u'tamar', u'council', u'approv', u'rate', u'rise']
[u'whale', u'watcher', u'close']
[u'white', u'hous', u'rebuff', u'guantanamo', u'probe', u'call']
[u'wilko', u'move', u'lion', u'centr']
[u'william', u'sign', u'year', u'deal', u'swan']
[u'wilson', u'promontori', u'blaze', u'inquiri', u'continu']
[u'wimbledon', u'result']
[u'wine', u'grape', u'harvest', u'top', u'record']
[u'world', u'mightiest', u'chess', u'beat', u'british']
[u'nation', u'confirm', u'gymnast', u'championship']
[u'boost', u'announc', u'emerg', u'servic']
[u'accus', u'secur', u'guard', u'killer', u'appear', u'court']
[u'adler', u'face', u'jail', u'disciplinari', u'charg']
[u'adler', u'face', u'charg']
[u'track', u'break', u'attend', u'record']
[u'african', u'leader', u'accus', u'deni', u'zimbabw', u'horror']
[u'alderman', u'suggest', u'central', u'australian', u'polit']
[u'anderson', u'announc', u'resign']
[u'anderson', u'expect', u'quit']
[u'anderson', u'leav', u'famili', u'health']
[u'anderson', u'paint', u'telstra', u'sell', u'posit', u'light']
[u'anderson', u'stand']
[u'anderson', u'tell', u'colleagu', u'resign']
[u'aphid', u'threaten', u'futur', u'lettuc', u'farm']
[u'tradit', u'owner', u'land', u'right', u'chang']
[u'aqi', u'explain', u'citrus', u'search', u'delay']
[u'arm', u'robberi', u'rise', u'canberra']
[u'asio', u'raid', u'home']
[u'assembl', u'approv', u'offend', u'regist']
[u'australia', u'sick', u'lose', u'clark', u'warn']
[u'australia', u'welcom', u'sugar', u'reform']
[u'backpack', u'oper', u'urg', u'ensur', u'safeti']
[u'beazley', u'plan', u'frontbench', u'reshuffl']
[u'berrigan', u'council', u'comment', u'accid', u'payout']
[u'face', u'multi', u'million', u'dollar']
[u'expans', u'plan', u'armi', u'train', u'area']
[u'fish', u'import', u'gene', u'pool', u'studi']
[u'blast', u'damag', u'japanes', u'vehicl', u'southern', u'iraq']
[u'break', u'enter', u'crime', u'fall']
[u'bridg', u'prove', u'difficult', u'luca']
[u'bullet', u'man', u'tongu', u'headach']
[u'burger', u'chain', u'add', u'whale', u'menu']
[u'burk', u'conced', u'brennan', u'loss']
[u'businessman', u'behead', u'thai', u'roadsid', u'restaur']
[u'businessman', u'promot', u'resid', u'melbourn']
[u'review', u'case', u'dismiss']
[u'migrat', u'chang']
[u'oversea', u'doctor', u'recruit', u'regul']
[u'cana', u'dope', u'probe']
[u'crash', u'caus', u'midland', u'highway', u'delay']
[u'carr', u'meet', u'brigalow', u'belt', u'worker', u'anderson']
[u'charlesworth', u'return', u'coach', u'role']
[u'chees', u'chief', u'say', u'product', u'remain', u'demand']
[u'children', u'hospit', u'doctor', u'welcom', u'meet', u'outcom']
[u'china', u'japan', u'talk', u'mend', u'relat']
[u'chines', u'relat', u'damag', u'chen', u'vail']
[u'cinema', u'chain', u'pull', u'food']
[u'claim', u'centr', u'employe', u'sell', u'bank', u'custom']
[u'close', u'ashbourn', u'inquiri', u'prove', u'govt']
[u'meet', u'wake', u'elect', u'loss']
[u'clps', u'burk', u'congratul', u'oppon']
[u'comalco', u'consid', u'alumina', u'expans']
[u'commonwealth', u'urg', u'fast', u'track', u'bruce', u'highway']
[u'complementari', u'therapi', u'help', u'cancer', u'patient', u'studi']
[u'corbi', u'lawyer', u'deni', u'bribe', u'claim']
[u'council', u'air', u'develop', u'condit', u'concern']
[u'council', u'rethink', u'saleyard', u'govt']
[u'council', u'say', u'hide', u'inquiri']
[u'court', u'overturn', u'fingleton', u'convict']
[u'cowboy', u'retain', u'winger', u'bowen']
[u'cultur', u'chang', u'see', u'combat', u'teen', u'drink']
[u'dairi', u'compani', u'help', u'fee', u'pilgrim']
[u'data', u'theft', u'bewar', u'slurper']
[u'daughter', u'keep', u'kid', u'secret', u'father', u'tell', u'tegan']
[u'della', u'bosca', u'see', u'woe', u'ahead', u'small', u'busi']
[u'dementia', u'finger', u'drive', u'risk']
[u'democrat', u'welcom', u'famili', u'releas', u'detent']
[u'depart', u'lee', u'call', u'focus', u'murray']
[u'develop', u'look', u'dubai', u'versac', u'resort']
[u'disabl', u'servic', u'forc', u'servic']
[u'docker', u'lose', u'haddril', u'injuri']
[u'doctor', u'urg', u'greater', u'train', u'opportun']
[u'donor', u'urg', u'blood', u'stock', u'drop']
[u'downer', u'say', u'thank', u'sheikh']
[u'drought', u'see', u'western', u'rural', u'leas', u'rent', u'waiv']
[u'excit', u'sorenstam', u'fight', u'nerv']
[u'faec', u'blood', u'hospit', u'disgust', u'patient']
[u'famili', u'hold', u'detent', u'nauru', u'live']
[u'famili', u'draft', u'avail', u'comment']
[u'famili', u'rescu', u'holiday', u'hell']
[u'feral', u'camel', u'cull', u'target', u'border']
[u'fingleton', u'want', u'court']
[u'damag', u'braddon', u'apart', u'block']
[u'fish', u'speci', u'declar', u'extinct', u'wild']
[u'fossil', u'suggest', u'mammal', u'shoot', u'venom']
[u'wheel', u'drive', u'enthusiast', u'clean', u'outback']
[u'consortium', u'buy', u'melbourn', u'luna', u'park']
[u'fund', u'announc', u'land', u'rehabilit']
[u'fund', u'help', u'preserv', u'manag', u'resid']
[u'futur', u'australia', u'fish', u'confer', u'agenda']
[u'galleri', u'victoria', u'display', u'dutch', u'master']
[u'gold', u'coast', u'target', u'luke', u'bailey']
[u'gold', u'coast', u'target', u'bailey']
[u'govt', u'apologis', u'child', u'abus', u'victim']
[u'govt', u'ask', u'employ', u'worker', u'compo', u'premium']
[u'govt', u'defend', u'line', u'board', u'despit', u'damn', u'report']
[u'govt', u'disput', u'fish', u'speci', u'extinct', u'wild']
[u'govt', u'downplay', u'burglari', u'statist']
[u'govt', u'pledg', u'opposit', u'input', u'ashbourn', u'inquiri']
[u'govt', u'hospit', u'medicar', u'licenc']
[u'govt', u'urg', u'extend', u'subsidi', u'sniff', u'fuel']
[u'green', u'friend', u'hous', u'plan', u'continu']
[u'gunn', u'ental', u'hous', u'leas']
[u'harri', u'save', u'famili', u'burn', u'hous']
[u'harri', u'hero']
[u'head', u'bundaberg', u'hospit', u'inquiri', u'urg']
[u'high', u'court', u'overturn', u'fingleton', u'convict']
[u'high', u'court', u'throw', u'test', u'case']
[u'hobart', u'resid', u'begin', u'platypus', u'protect', u'campaign']
[u'hospit', u'fail', u'safeti', u'test']
[u'hull', u'approach', u'csiro']
[u'hundr', u'thousand', u'flee', u'china', u'flood', u'kill']
[u'icac', u'recommend', u'charg', u'mayor']
[u'indigen', u'corpor', u'lose', u'nativ', u'titl', u'bodi']
[u'industri', u'estat', u'plan', u'promis', u'job', u'boost']
[u'injur', u'rescu', u'kakadu']
[u'iraq', u'insurg', u'intern']
[u'chang', u'threaten', u'heritag', u'union', u'chief']
[u'japan', u'mink', u'hunt', u'fall', u'short']
[u'japan', u'threaten', u'quit']
[u'japan', u'unfaz', u'fish', u'vessel', u'australia']
[u'king', u'otto', u'crown', u'slip', u'conf', u'disast']
[u'labor', u'back', u'resid', u'visa', u'vietnam']
[u'labor', u'claim', u'coalit', u'divid']
[u'langer', u'back', u'aussi', u'bounc']
[u'lara', u'withdraw', u'lanka', u'dayer']
[u'lawyer', u'assess', u'concern', u'hickss']
[u'fire', u'line']
[u'symond', u'vaughan', u'riversid']
[u'lithgow', u'council', u'welcom', u'wolgan', u'valley', u'resort', u'plan']
[u'log', u'protest', u'claim', u'death', u'threat']
[u'malaysia', u'call', u'dfat', u'lift', u'travel', u'warn']
[u'face', u'court', u'assault', u'weapon']
[u'maradona', u'join', u'boca', u'junior']
[u'maroon', u'lose', u'webb', u'decid']
[u'mar', u'water', u'search', u'radar', u'readi', u'work']
[u'mcewen', u'evan', u'confirm', u'tour', u'lanc', u'name']
[u'mcgahan', u'win', u'mile', u'franklin', u'literari', u'award']
[u'mcgauran', u'tip', u'nation', u'feder', u'deputi', u'leader']
[u'gibson', u'stalker', u'sentenc', u'year', u'jail']
[u'milan', u'reject', u'chelsea', u'world', u'record']
[u'motorist', u'urg', u'awar', u'slipperi', u'road']
[u'prais', u'outgo', u'anderson']
[u'council', u'deliv', u'rate', u'rise']
[u'pick', u'charg', u'drink', u'drive']
[u'murray', u'bridg', u'resid', u'mop']
[u'napthin', u'see', u'blood', u'servic', u'closur']
[u'narrabri', u'shire', u'break', u'rat']
[u'complex', u'adopt', u'pacif', u'theme']
[u'rat', u'plan', u'lismor', u'council']
[u'sport', u'drug', u'author', u'australia']
[u'north', u'west', u'state', u'biggest', u'power']
[u'lobbi', u'support', u'anti', u'whale', u'stanc']
[u'stop', u'zimbabw', u'tour', u'minist']
[u'opposit', u'say', u'hospit', u'staff', u'tell', u'fiddl']
[u'opposit', u'senat', u'differ', u'tack']
[u'pagan', u'welcom', u'fevola', u'deal']
[u'farewel', u'outgo', u'senat', u'defenc', u'leader']
[u'polic', u'head', u'patel', u'trail']
[u'polic', u'investig', u'castlemain', u'bash']
[u'policeman', u'tell', u'inquiri', u'quarantin', u'mcgee', u'file']
[u'polic', u'open', u'case', u'murder', u'madam']
[u'polic', u'review', u'child', u'charg']
[u'polic', u'examin', u'evid', u'asio', u'raid']
[u'pork', u'produc', u'warn', u'import', u'fight']
[u'porki', u'polic', u'fight', u'belt']
[u'potato', u'chip', u'factori', u'verg', u'collaps']
[u'powerco', u'wont', u'prosecut', u'mishap']
[u'pratt', u'bank', u'venus', u'upset']
[u'prefer', u'option', u'health', u'facil', u'outlin']
[u'priest', u'face', u'life', u'jail', u'death']
[u'alleg', u'corbi', u'team', u'bribe']
[u'form', u'crime', u'fight', u'partnership']
[u'rain', u'hamper', u'riverland', u'citrus', u'harvest']
[u'rain', u'help', u'burnett', u'water', u'storag']
[u'rain', u'offer', u'irrig', u'season', u'hope']
[u'rain', u'wont', u'stop', u'drought']
[u'ratepay', u'group', u'unhappi', u'roadwork', u'plan']
[u'cross', u'worker', u'shoot', u'aceh']
[u'redknapp', u'confirm', u'clive', u'soccer']
[u'region', u'complaint', u'spark', u'bigger', u'penalti']
[u'report', u'call', u'broader', u'rebat', u'cancer']
[u'report', u'call', u'probe', u'student', u'poverti']
[u'report', u'seek', u'action', u'disabl', u'youth']
[u'research', u'flap', u'hummingbird', u'photo']
[u'reshuffl', u'labor', u'frontbench', u'plan']
[u'resid', u'meet', u'ferri', u'oval', u'sale', u'opposit']
[u'retail', u'drag', u'share', u'market']
[u'chief', u'rule', u'condobolin', u'link']
[u'riverina', u'group', u'moot', u'telstra', u'split', u'ownership']
[u'riverina', u'landhold', u'guilti', u'water', u'charg']
[u'road', u'upgrad', u'includ', u'nation', u'park', u'section']
[u'rise', u'porteous', u'accus', u'alter', u'pain', u'killer']
[u'ruddock', u'brush', u'hick', u'health', u'fear']
[u'fish', u'buyback']
[u'scan', u'clear', u'tszyu', u'injuri']
[u'seven', u'face', u'court', u'swan', u'hill', u'brawl']
[u'shaft', u'death', u'trigger', u'danger', u'assess']
[u'shark', u'kill', u'child', u'vanuatu']
[u'goer', u'urg', u'follow', u'park', u'restrict']
[u'snow', u'forc', u'road', u'closur']
[u'soldier', u'say', u'bulli', u'desert']
[u'springborg', u'upset', u'liber', u'anti', u'coalit']
[u'springsur', u'hospit', u'doctor', u'retir']
[u'spur', u'piston', u'tangl', u'winner', u'game', u'seven']
[u'spur', u'chelsea', u'deadlin', u'arnesen']
[u'stoddart', u'call', u'head', u'boss', u'mosley']
[u'sugar', u'industri', u'welcom', u'shake']
[u'supermarket', u'oppon', u'highlight', u'platypus']
[u'surgeri', u'restor', u'ierodiacon', u'olymp', u'hop']
[u'thiev', u'stage', u'bottl', u'shop', u'raid']
[u'blast', u'baghdad']
[u'timber', u'industri', u'major', u'player', u'region', u'economi']
[u'cruis', u'drop', u'complaint', u'prankster']
[u'rain', u'creat', u'crop', u'headach']
[u'travel', u'urg', u'steer', u'clear', u'malaysia', u'sabah']
[u'tsunami', u'ravag', u'nation', u'focus', u'shift']
[u'investig', u'stall', u'prison', u'visit']
[u'union', u'unhappi', u'lifeguard', u'redund', u'notic']
[u'purchas', u'offic', u'resign']
[u'academ', u'back', u'hec']
[u'vail', u'truss', u'lead', u'nation']
[u'grower', u'commit', u'aquacultur', u'traceabl']
[u'victoria', u'record', u'largest', u'rise', u'drive', u'relat']
[u'firm', u'charg', u'spam']
[u'wallabi', u'wari', u'upbeat', u'italian']
[u'public', u'servant', u'encourag', u'attend', u'ralli']
[u'warn', u'england', u'tremlett', u'shin']
[u'senat', u'cross', u'floor']
[u'wave', u'baghdad', u'bomb', u'kill']
[u'welfar', u'lobbi', u'intensifi', u'action']
[u'whistleblow', u'nurs', u'front', u'bundaberg', u'hospit']
[u'william', u'ignor', u'origin', u'select', u'specul']
[u'william', u'focus', u'cowboy', u'origin']
[u'wimmera', u'get', u'indian', u'mustard', u'trial']
[u'windsor', u'call', u'nation', u'amend']
[u'woolgrow', u'continu', u'fight', u'peta']
[u'ming', u'head', u'australia']
[u'zimbabw', u'crackdown', u'condemn', u'children', u'crush']
[u'aborigin', u'school', u'intend', u'say', u'dept']
[u'aceh', u'governor', u'send', u'prison', u'corrupt']
[u'action', u'aborigin', u'bodi', u'anticip']
[u'activist', u'interrupt', u'militari', u'exercis']
[u'worker', u'aceh', u'safe', u'despit', u'shoot']
[u'black', u'mccaw', u'clear', u'play', u'lion', u'seri']
[u'ambul', u'worker', u'push', u'spark', u'industri']
[u'anderson', u'accus', u'liber', u'focus']
[u'arthur', u'face', u'fit', u'race']
[u'art', u'verg', u'dark', u'franklin', u'winner']
[u'assist', u'princip', u'get', u'suspend', u'sentenc']
[u'assist', u'minist', u'open', u'galleri']
[u'auslink', u'deal', u'ink', u'port', u'adelaid']
[u'aussi', u'fight']
[u'aussi', u'world', u'champ']
[u'aust', u'metal', u'recycl', u'firm', u'merger']
[u'aust', u'wwii', u'crash', u'remain', u'recov', u'papua']
[u'beazley', u'reshuffl', u'howard', u'welcom', u'vail']
[u'beazley', u'reveal', u'frontbench']
[u'bega', u'chees', u'beat', u'feder', u'fund']
[u'bendigo', u'men', u'club', u'consid', u'open', u'door']
[u'germani', u'brazil', u'coach', u'parreira']
[u'brother', u'put', u'children', u'moral', u'danger']
[u'blair', u'urg', u'feud']
[u'blaze', u'destroy', u'suppli', u'depot']
[u'blood', u'shortag', u'forc', u'oper', u'cancel']
[u'bomber', u'ignit', u'saint']
[u'bowen', u'basin', u'crash', u'caus', u'signific', u'track', u'damag']
[u'bowen', u'basin', u'train', u'crash', u'investig']
[u'brogden', u'urg', u'howard', u'pressur', u'premier']
[u'bush', u'phone', u'servic', u'prioriti', u'vail', u'pledg']
[u'callous', u'scam', u'target', u'elder', u'peopl', u'home']
[u'cane', u'farmer', u'grant', u'remind']
[u'carr', u'warn', u'council', u'sack', u'corrupt']
[u'speak', u'map', u'releas']
[u'chemist', u'anti', u'pill', u'stanc']
[u'chief', u'justic', u'reject', u'debacl', u'claim']
[u'child', u'abus', u'apolog', u'welcom', u'help', u'need']
[u'china', u'flood', u'toll', u'rise']
[u'commiss', u'delay', u'cost', u'pay', u'worker', u'labor']
[u'concern', u'danger', u'aquif', u'mine']
[u'confer', u'canva', u'liber', u'polici']
[u'corbi', u'legal', u'team']
[u'corbi', u'sack', u'indonesian', u'legal', u'team']
[u'coron', u'suggest', u'braveri', u'award', u'teen', u'drown']
[u'cosmos', u'backer', u'conced', u'space', u'craft', u'probabl', u'lose']
[u'council', u'aim', u'water', u'price']
[u'council', u'battl', u'maintain', u'road', u'rain']
[u'councillor', u'reject', u'retail', u'develop']
[u'council', u'urg', u'fast', u'track']
[u'court', u'close', u'suspici', u'envelop', u'receiv']
[u'cowboy', u'hope', u'perform', u'chilli', u'canberra']
[u'cowboy', u'hope', u'perform', u'cold']
[u'cricket', u'boss', u'decid', u'symond', u'fate']
[u'cricket', u'boss', u'decid', u'symondss', u'fate']
[u'danish', u'commerci', u'whale', u'fail']
[u'develop', u'board', u'chief', u'unhappi', u'dipnr', u'decis']
[u'digger', u'veteran', u'die', u'age']
[u'attack', u'prompt', u'council', u'immedi', u'action']
[u'drink', u'drive', u'review', u'welcom']
[u'driver', u'court', u'drink', u'drive', u'charg']
[u'drug', u'expert', u'warn', u'power', u'ecstasi', u'batch']
[u'duncan', u'inspir', u'spur', u'titl']
[u'east', u'timor', u'readi', u'challeng', u'peacekeep']
[u'easi', u'pick', u'mighti', u'mauresmo']
[u'elector', u'commiss', u'plan', u'boundari', u'shuffl']
[u'emot', u'farewel', u'wyong', u'victim']
[u'escap', u'doubl', u'murder', u'get', u'month']
[u'famili', u'farewel', u'young', u'hous', u'blaze', u'victim']
[u'farmer', u'stricter', u'produc', u'label']
[u'fear', u'air', u'wombat', u'forest', u'log']
[u'ferguson', u'like', u'loser', u'labor', u'parti', u'reshuffl']
[u'firm', u'see', u'potenti', u'rock', u'power']
[u'fish', u'associ', u'puzzl', u'lake', u'macquari']
[u'dead', u'bomb', u'attack', u'near', u'kashmir', u'tourist']
[u'flatley', u'skipper', u'aust', u'team']
[u'flatley', u'skipper', u'australia']
[u'klan', u'leader', u'jail', u'year']
[u'forrest', u'quiet', u'portfolio', u'intent']
[u'fund', u'delay', u'hold', u'indigen', u'school', u'program']
[u'furyk', u'finish', u'flurri', u'bring', u'lead']
[u'gallop', u'defend', u'campaign']
[u'garbag', u'collector', u'warn', u'strike']
[u'glaxo', u'cut', u'job', u'poppi', u'crop', u'dwindl']
[u'global', u'warm', u'evid', u'timor', u'coral']
[u'goulburn', u'thirsti', u'despit', u'rain']
[u'govern', u'sign', u'wimmera', u'malle']
[u'govt', u'announc', u'lake', u'macquari', u'clean', u'fund']
[u'govt', u'reject', u'call', u'sack', u'fingleton', u'case']
[u'govt', u'urg', u'focus', u'attent', u'south', u'west', u'highway']
[u'graham', u'murray', u'webb']
[u'grazier', u'wander', u'stock', u'remind']
[u'greater', u'hume', u'shire', u'gear', u'council', u'poll']
[u'greeni', u'higher', u'power', u'energi', u'campaign']
[u'gunn', u'ental', u'hous', u'leas', u'defend']
[u'hay', u'commit', u'saint']
[u'health', u'care', u'group', u'talk', u'psychiatr', u'patient']
[u'hewitt', u'stand', u'pratt', u'arthur']
[u'hewitt', u'predict', u'gutsi', u'round', u'match']
[u'hill', u'pay', u'tribut', u'best', u'peacekeep', u'mission']
[u'hop', u'remain', u'calder', u'duplic']
[u'hospit', u'failur', u'meet', u'servic', u'criteria', u'remain']
[u'howard', u'extend', u'congratul', u'vail']
[u'independ', u'say', u'opposit', u'grow']
[u'indigen', u'educ', u'fund', u'chang', u'nightmar']
[u'indonesia', u'court', u'cut', u'suharto', u'jail', u'term']
[u'industri', u'want', u'mine', u'skill', u'foster']
[u'iranian', u'head', u'poll', u'presidenti']
[u'iraq', u'insurg', u'strong']
[u'iraq', u'violenc', u'continu', u'toll']
[u'japan', u'buy', u'break', u'hill', u'explor']
[u'japan', u'defiant', u'whale', u'talk', u'wrap']
[u'jone', u'want', u'ruthless', u'perform', u'wallabi']
[u'judg', u'wrap', u'head', u'beani', u'design']
[u'kid', u'surpris', u'boyfriend', u'tegan', u'inquest', u'hear']
[u'lebanon', u'anti', u'syria', u'leader', u'urg', u'presid', u'quit']
[u'liber', u'parti', u'announc', u'femal', u'presid']
[u'liverpool', u'face', u'wale', u'titl', u'defenc']
[u'local', u'govt', u'group', u'unhappi', u'feder', u'fund']
[u'water', u'product', u'pull', u'shelv']
[u'test']
[u'maleni', u'platypus', u'concern', u'fail', u'sway', u'minist']
[u'claim', u'alien', u'delus', u'forc', u'dead', u'drive']
[u'face', u'charg', u'refus', u'bail']
[u'mayor', u'back', u'plan', u'super', u'size', u'armi', u'train', u'area']
[u'melbourn', u'doubl']
[u'mexico', u'probe', u'dope', u'link', u'expel', u'pair']
[u'minist', u'hear', u'nowra', u'road', u'plan']
[u'minist', u'weigh', u'eleph', u'import', u'request']
[u'miss', u'tegan', u'mother', u'support', u'adopt']
[u'fund', u'seek', u'fight', u'ghost', u'net']
[u'snow', u'fall', u'barrington', u'top']
[u'mother', u'tegan', u'conceal', u'pregnanc']
[u'see', u'benefit', u'return', u'hospit', u'board']
[u'slam', u'faction', u'deal', u'ahead', u'reshuffl']
[u'murray', u'bridg', u'council', u'best', u'prevent']
[u'murray', u'goulburn', u'farmer', u'price', u'boost']
[u'nadal', u'slide', u'wimbledon']
[u'nation', u'park', u'oppos', u'dive', u'plan']
[u'shed', u'monto']
[u'law', u'safeguard', u'communiti', u'servic']
[u'leader', u'take', u'rein', u'hong', u'kong']
[u'lead', u'prompt', u'inquiri', u'bodi']
[u'legal', u'action', u'bite', u'jackson']
[u'patrol', u'boat', u'launch', u'darwin']
[u'inquest', u'hold', u'ralli', u'death']
[u'risk', u'growth', u'eslak']
[u'opposit', u'want', u'fast', u'track', u'ashbourn', u'inquiri']
[u'owen', u'unit', u'say', u'queiroz']
[u'pair', u'face', u'court', u'anim', u'cruelti', u'charg']
[u'parent', u'ralli', u'children', u'ward', u'plan']
[u'park', u'pass', u'unit', u'medic']
[u'pentagon', u'compil', u'student', u'databas', u'militari']
[u'peter', u'parr', u'announc', u'webb', u'injuri', u'news']
[u'philippin', u'militari', u'standbi', u'protest']
[u'meet', u'bush', u'blair']
[u'polic', u'accept', u'rise', u'deal']
[u'polic', u'claim', u'block', u'help', u'forest']
[u'polic', u'investig', u'woman', u'death']
[u'polic', u'seek', u'answer', u'offic', u'name']
[u'polit', u'side', u'narrabri', u'hospit']
[u'potato', u'grower', u'chipper', u'factori']
[u'powercor', u'oppos', u'review', u'urg', u'cheaper', u'bill']
[u'power', u'want', u'road', u'trip', u'runaround']
[u'pratt', u'henman', u'nadal', u'roll']
[u'price', u'drop', u'prompt', u'warn', u'wine', u'industri']
[u'prison', u'offic', u'braveri', u'recognis', u'award']
[u'probe', u'highlight', u'calm', u'manag', u'conflict']
[u'program', u'aim', u'dubbo', u'unemploy']
[u'properti', u'council', u'see', u'posit', u'govt', u'public']
[u'public', u'urg', u'nose']
[u'stand', u'corbi', u'briberi', u'claim']
[u'review', u'law', u'fingleton', u'case']
[u'queensland', u'sunni', u'snow']
[u'raaf', u'welcom', u'command']
[u'rain', u'help', u'boost', u'cattl', u'price']
[u'region', u'council', u'face', u'fund', u'squeez']
[u'renmark', u'push', u'resid', u'magistr']
[u'report', u'highlight', u'indigen', u'hous', u'woe']
[u'resid', u'lose', u'fight', u'open']
[u'road', u'minist', u'take', u'unaccept', u'bungl']
[u'robber', u'steal', u'gun']
[u'rooster', u'eel']
[u'rooster', u'target', u'eel', u'dangerman', u'smith']
[u'rumsfeld', u'rule', u'deadlin', u'troop', u'withdraw']
[u'school', u'fund', u'come', u'string', u'attach', u'say']
[u'scientist', u'fine', u'tune', u'devil', u'tumour', u'diseas', u'research']
[u'seller', u'clean', u'shower', u'jesus']
[u'senat', u'pass', u'chang', u'detent', u'polici']
[u'servicemen', u'face', u'disciplin', u'photo']
[u'sheedi', u'get', u'intern']
[u'shoalhaven', u'like', u'jail']
[u'shoalhaven', u'water', u'conserv', u'project']
[u'snow', u'excit', u'down', u'tourism', u'oper']
[u'snowi', u'council', u'revamp', u'exist', u'chamber']
[u'soar', u'price', u'produc', u'slump']
[u'soldier', u'disciplin', u'photo']
[u'solomon', u'whale', u'stanc', u'dishonest']
[u'sorenstam', u'earli', u'pace', u'women', u'open']
[u'lanka', u'sign', u'tsunami', u'deal', u'tamil', u'tiger']
[u'stand', u'mugab', u'urg', u'african', u'leader']
[u'stock', u'hit', u'barrel']
[u'strike', u'affect', u'local', u'garbag', u'servic']
[u'student', u'debat', u'polit', u'anniversari']
[u'student', u'need', u'work', u'put', u'degre', u'danger', u'anusa']
[u'sink', u'endeavour', u'scrap']
[u'suspici', u'packag', u'fals', u'alarm']
[u'symond', u'banish', u'blue', u'england']
[u'symond', u'escap', u'punish']
[u'symond', u'star', u'australia', u'blast']
[u'symond', u'star', u'australia', u'return', u'win']
[u'taliban', u'death', u'toll', u'top', u'latest', u'battl']
[u'weather', u'present']
[u'territori', u'interim', u'cabinet', u'swear']
[u'thailand', u'take', u'tough', u'approach', u'separatist']
[u'thousand', u'march', u'demand', u'arroyo', u'resign']
[u'timor']
[u'tour', u'introduc', u'blood', u'dope', u'test']
[u'trade', u'council', u'plan', u'campaign', u'chang']
[u'troop', u'militari', u'exercis', u'battl']
[u'truck', u'crash', u'reignit', u'joke', u'bridg', u'safeti', u'concern']
[u'truck', u'driver', u'send', u'messag', u'liber']
[u'union', u'manag', u'conven', u'wagga']
[u'guantanamo', u'visit', u'request', u'ignor']
[u'approv', u'rat', u'drop', u'amid', u'iraq', u'survey']
[u'call', u'north', u'korea', u'date', u'talk']
[u'vote', u'start', u'iranian', u'presidenti']
[u'water', u'storag', u'unit', u'near', u'complet']
[u'welsh', u'furi', u'lion', u'snub']
[u'whistleblow', u'quiz', u'hospit']
[u'wide', u'farmer', u'readi', u'nlis']
[u'wife', u'jail', u'sentenc', u'manslaught', u'suspend']
[u'wimbledon', u'result']
[u'world', u'beat', u'asthma', u'studi', u'hop', u'save', u'live']
[u'yahoo', u'shut', u'chat', u'room', u'amid', u'child', u'concern']
[u'young', u'senior', u'boomer']
[u'young', u'surgeri', u'wait', u'time']
[u'zimbabwean', u'polic', u'arrest', u'controversi']
[u'adler', u'charg', u'jail', u'activ']
[u'appoint', u'femal', u'commission']
[u'black', u'crush', u'lion']
[u'ancient', u'greek', u'love', u'poem', u'publish', u'rediscoveri']
[u'artist', u'scrap', u'poimena', u'prize']
[u'refus', u'zimbabw']
[u'aussi', u'pilkadari', u'grab', u'brunei', u'open', u'lead']
[u'aussi', u'send', u'bangladesh']
[u'australian', u'die', u'hike', u'expedit']
[u'australian', u'shoot', u'pace', u'brunei']
[u'australian', u'trio', u'charg', u'drug', u'traffic']
[u'award', u'recognis', u'aborigin', u'drug', u'treatment', u'centr']
[u'ballack', u'face', u'ronaldinho', u'clash', u'style']
[u'bomber', u'edg', u'past', u'saint']
[u'builder', u'lobbi', u'group', u'union', u'clash', u'protest']
[u'build', u'collaps', u'kill', u'india']
[u'bush', u'set', u'timet', u'forc']
[u'bush', u'say', u'dont', u'worri', u'iraq', u'timet']
[u'cairn', u'welcom', u'home', u'everest', u'climber']
[u'canberra', u'frock', u'dancesport', u'championship']
[u'christma', u'detent', u'centr', u'construct']
[u'cloud', u'seed', u'provid', u'hope', u'snow']
[u'coach', u'threaten', u'quit', u'springbok']
[u'corbi', u'appoint', u'consult', u'walter', u'tonetto']
[u'costello', u'promis', u'pressur', u'state']
[u'council', u'pass', u'resolut', u'year', u'feder']
[u'count', u'begin', u'iranian', u'presidenti']
[u'disgrac', u'sydney', u'businessman', u'rodney', u'adler']
[u'disney', u'pull', u'shark', u'hong', u'kong', u'park', u'menu']
[u'distract', u'montgomeri', u'skip', u'titl']
[u'electr', u'metr', u'trial', u'bring', u'cash', u'return']
[u'ell', u'split', u'boyfriend']
[u'hold', u'darwin', u'brawl']
[u'freak', u'storm', u'glastonburi', u'festiv']
[u'furyk', u'fli', u'high', u'eagl', u'senden', u'equal']
[u'gough', u'readi', u'spook', u'aussi']
[u'govt', u'produc', u'pigmeat']
[u'govt', u'vow', u'pursu', u'plan', u'despit', u'intern']
[u'gregan', u'itch', u'return', u'wallabi', u'duti']
[u'hardlin', u'take', u'earli', u'iran', u'poll', u'lead']
[u'health', u'dept', u'total', u'respons', u'patel', u'case']
[u'high', u'price', u'prompt', u'fuel', u'levi', u'reform']
[u'high', u'petrol', u'price', u'good', u'news', u'mortgag', u'analyst']
[u'hobart', u'hospit', u'instal', u'scanner']
[u'hospit', u'head', u'blame', u'heart', u'surgeri', u'delay', u'staff']
[u'howard', u'commit', u'leadership', u'reform']
[u'howard', u'vow', u'press', u'ahead', u'chang']
[u'hungri', u'hewitt', u'shoulder', u'past', u'gimelstob']
[u'problem', u'shuttl', u'launch']
[u'indian', u'centr', u'alert', u'fraud', u'claim']
[u'indonesian', u'agent', u'implic', u'activist', u'death']
[u'iran', u'extend', u'vote', u'tight', u'presidenti']
[u'iranian', u'vote', u'tight', u'presidenti']
[u'itali', u'issu', u'warrant', u'alleg', u'kidnapp']
[u'king', u'island', u'win', u'artist']
[u'knight', u'break', u'drought', u'panther']
[u'labor', u'fear', u'cdep', u'scheme']
[u'landslid', u'hardlin', u'iranian', u'presid']
[u'liber', u'parti', u'confront', u'howard', u'state', u'right']
[u'loeb', u'take', u'control', u'atkinson', u'fin']
[u'lundi', u'score', u'sport', u'opposit', u'reshuffl']
[u'die', u'brisban', u'hous']
[u'kill', u'rollov', u'outback']
[u'mexico', u'regain', u'skipper', u'argentinian', u'clash']
[u'mexico', u'result', u'stand', u'despit', u'fail', u'drug']
[u'minist', u'shock', u'damn', u'hospit', u'report']
[u'minist', u'want', u'inform', u'hospit']
[u'nelson', u'gold', u'pocket', u'watch', u'star', u'sale']
[u'law', u'autocrat']
[u'corbi', u'legal', u'team', u'head', u'urg', u'public', u'comment']
[u'evid', u'free', u'rang', u'fiddl', u'jackson']
[u'opposit', u'seek', u'inquiri', u'road']
[u'begin', u'count', u'final', u'vote', u'nailbit', u'finish']
[u'win', u'boost', u'art', u'fund']
[u'nude', u'cover', u'end', u'justic', u'depart']
[u'fruit', u'grower', u'push', u'aust', u'access']
[u'produc', u'aust', u'import', u'pigmeat']
[u'odriscol', u'hill', u'shanklin', u'lion', u'tour']
[u'price', u'hit', u'market']
[u'price', u'near']
[u'opposit', u'reshuffl', u'insult', u'worker', u'union', u'say']
[u'palestinian', u'polic', u'milit', u'exchang', u'gunfir']
[u'parti', u'goer', u'hospitalis', u'assault']
[u'person', u'alarm', u'protect', u'prison', u'staff']
[u'petrol', u'price', u'cancel', u'govt', u'relief', u'say', u'labor']
[u'concern', u'rise', u'world', u'price', u'impact']
[u'polic', u'charg', u'colleagu', u'drink', u'kitti', u'theft']
[u'polic', u'investig', u'sport', u'warehous', u'blaze']
[u'poorest', u'victim', u'miss', u'tsunami', u'relief']
[u'readi', u'help', u'corbi', u'team']
[u'raider', u'edg', u'cowboy', u'thriller']
[u'resid', u'fight', u'stirl', u'supermarket', u'plan']
[u'reveng', u'agenda', u'australia', u'face', u'bangladesh']
[u'roddick', u'fume', u'swear']
[u'rossi', u'snatch', u'pole', u'assen']
[u'rossi', u'win', u'dutch', u'motogp']
[u'rural', u'renov', u'warn', u'asbesto', u'danger']
[u'hospit', u'standard', u'failur', u'embarrass']
[u'secret', u'lover', u'sell', u'picasso', u'sketch']
[u'sharapova', u'march', u'fourth', u'round']
[u'troop', u'presum', u'dead', u'iraq', u'attack', u'offici']
[u'smith', u'defend', u'beazley', u'reshuffl']
[u'sorenstam', u'open', u'bogey', u'bogey', u'bogey']
[u'spur', u'chelsea', u'reach', u'agreement', u'arnesen']
[u'state', u'funer', u'plan', u'veteran']
[u'state', u'funer', u'honour', u'digger']
[u'storm', u'annihil', u'rabbitoh']
[u'swan', u'spoil', u'buckley', u'return']
[u'symond', u'snare', u'bangladesh', u'collaps']
[u'taxi', u'group', u'deni', u'gag', u'driver']
[u'bird', u'extinguish', u'firebird', u'oriol', u'darter']
[u'teenag', u'stabl', u'twice']
[u'femal', u'soldier', u'kill', u'iraq', u'attack']
[u'triumphant', u'wallabi']
[u'injur', u'bomb', u'attack', u'russian', u'train']
[u'union', u'hail', u'move', u'bring', u'person', u'alarm']
[u'admit', u'detaine', u'tortur', u'report']
[u'confirm', u'case']
[u'echo', u'australian', u'warn', u'travel']
[u'tip', u'beef', u'price']
[u'stock', u'fall', u'concern', u'rise', u'price']
[u'govt', u'push', u'hospit', u'standard']
[u'wallabi', u'outclass', u'italian']
[u'widow', u'hit', u'centrelink', u'treatment']
[u'grab', u'share', u'women', u'open', u'lead']
[u'world', u'bid', u'jone', u'montgomeri']
[u'yass', u'renew', u'alcohol', u'free', u'zone']
[u'young', u'impal', u'break']
[u'kill', u'iraq', u'violenc']
[u'arrest', u'sydney', u'street', u'crime', u'swoop']
[u'actu', u'work', u'protest', u'disrupt']
[u'adriano', u'magic', u'inspir', u'brazil', u'confeder']
[u'offic', u'thailand', u'month']
[u'tsunami', u'victim', u'indentif', u'work']
[u'alic', u'warm', u'beani', u'make', u'record']
[u'aloisi', u'join', u'greek', u'giant', u'panathinaiko']
[u'back', u'paper', u'recommend', u'hospit', u'admin']
[u'kenyan', u'illeg', u'alcohol']
[u'australia', u'beat', u'bok', u'junior', u'world', u'final']
[u'australia', u'england', u'trial', u'rule', u'chang']
[u'australia', u'peak', u'union', u'bodi', u'begin', u'week']
[u'australia', u'reveng', u'bangladesh']
[u'australia', u'take', u'reveng', u'bangladesh']
[u'battl', u'leav', u'colombian', u'troop', u'dead']
[u'beatti', u'fingleton', u'compens']
[u'beatti', u'rule', u'inquiri', u'wit', u'allow']
[u'beatti', u'say', u'fingleton', u'case', u'tragedi']
[u'beatti', u'subdu', u'seventh', u'anniversari']
[u'beazley', u'seek', u'cut', u'offset', u'petrol', u'price']
[u'blackspot', u'upgrad', u'improv', u'driver', u'safeti']
[u'blair', u'work', u'republican', u'report']
[u'booklet', u'provid', u'guid', u'territori', u'sexual', u'law']
[u'bouncer', u'hospit', u'nightclub', u'fight']
[u'brando', u'person', u'effect', u'auction']
[u'british', u'hope', u'murray', u'run', u'steam']
[u'build', u'lobbi', u'defi', u'govt', u'train', u'cours']
[u'bulgaria', u'communist', u'claim', u'elect', u'victori']
[u'bulldog', u'man', u'home']
[u'bush', u'acknowledg', u'grim', u'imag', u'iraq']
[u'bomb', u'hurt', u'madrid', u'olymp', u'chanc']
[u'china', u'grappl', u'diseas', u'dead', u'flood']
[u'chines', u'tourist', u'charg', u'bondi', u'beach', u'walk']
[u'claim', u'govt', u'task', u'forc', u'corrupt', u'process']
[u'comment', u'coach']
[u'corbi', u'defend', u'eye', u'better', u'aust', u'indonesian', u'tie']
[u'corbi', u'legal', u'team', u'coordin', u'concern', u'aust']
[u'council', u'clarifi', u'hospit', u'accredit', u'rat']
[u'cricket', u'ralli', u'warn', u'marriag', u'break']
[u'davenport', u'clijster', u'squar', u'time']
[u'deadlin', u'near', u'game', u'ticket']
[u'develop', u'rework', u'stirl', u'shop', u'centr', u'design']
[u'diseas', u'outbreak', u'fear', u'leav', u'farmer', u'feel']
[u'doctor', u'remov', u'rare', u'twin', u'foetus', u'teenag']
[u'dozen', u'kill', u'afghan', u'clash']
[u'kill', u'collid', u'tractor']
[u'eyr', u'peninsula', u'fire', u'offer', u'safeti', u'lesson']
[u'failur', u'cite', u'kiwi', u'pair', u'spear', u'leav', u'lion']
[u'fall', u'gate', u'crush', u'girl']
[u'farmer', u'find', u'success', u'graze', u'techniqu']
[u'feder', u'sharapova', u'underlin', u'class']
[u'femal', u'liber', u'parti', u'presid', u'take']
[u'chief', u'minist', u'review', u'elect']
[u'gatlin', u'seiz', u'second', u'chanc', u'sprint', u'trial']
[u'geldof', u'urg', u'glastonburi', u'crowd', u'fight', u'african']
[u'girl', u'die', u'shark', u'attack']
[u'glastonburi', u'wind', u'mudbath', u'dri']
[u'grandstand', u'speak', u'clinton', u'schifcofsk', u'simon']
[u'grandstand', u'speak', u'steve', u'simpson', u'andrew', u'john']
[u'green', u'target', u'food', u'label']
[u'gregan', u'glad', u'game', u'mode']
[u'grewcock', u'ban', u'bite', u'black']
[u'habana', u'score', u'twice', u'springbok', u'floor', u'franc']
[u'harrington', u'furyk', u'hold', u'lead', u'senden', u'lurk']
[u'hill', u'deni', u'wood', u'releas', u'delay']
[u'hospit', u'report', u'alert', u'govt', u'say']
[u'hotel', u'blaze', u'caus', u'damag']
[u'howard', u'target', u'parti', u'faith', u'speech']
[u'howard', u'senat', u'power', u'sober', u'wise']
[u'india', u'smoke', u'relat', u'diseas', u'pictur']
[u'industri', u'push', u'nutti', u'health', u'benefit']
[u'iranian', u'presidenti', u'poll', u'loser', u'lash']
[u'israel', u'apologis', u'passport', u'fraud']
[u'israel', u'approv', u'settler', u'reloc', u'plan']
[u'japanes', u'media', u'criticis', u'screen']
[u'jewboy', u'take', u'migrat', u'film', u'gong']
[u'maxwel', u'speak', u'australian', u'captain', u'ricki']
[u'junior', u'black', u'battl', u'past', u'australia']
[u'kenya', u'alcohol', u'poison', u'death', u'toll', u'rise']
[u'kenya', u'jolt', u'western', u'sahara', u'peac', u'process']
[u'kill', u'lowest', u'point', u'captiv', u'wood', u'say']
[u'knight', u'celebr', u'rare', u'storm', u'raider']
[u'labor', u'leader', u'play', u'reshuffl', u'disquiet']
[u'lawyer', u'accus', u'corbi', u'famili', u'profit']
[u'liber', u'minist', u'nuclear', u'power']
[u'liber', u'back', u'call', u'year', u'parliamentari']
[u'lion', u'demand', u'action', u'horrend', u'tackl']
[u'loeb', u'motor', u'victori', u'greec']
[u'machin', u'mimic', u'life', u'nextfest']
[u'charg', u'kindergarten']
[u'die', u'footbal', u'club', u'fight']
[u'front', u'court', u'kindergarten']
[u'hospitalis', u'black', u'out', u'station']
[u'hospit', u'roadsid', u'assault']
[u'miss', u'orient', u'properti']
[u'moroney', u'deni', u'airport', u'crime', u'concern', u'ignor']
[u'multipl', u'suicid', u'bomber', u'iraq', u'polic', u'armi']
[u'korean', u'famili', u'defect', u'south', u'yellow']
[u'polic', u'commission', u'moroney', u'deni']
[u'parmalat', u'boss', u'face', u'fraud', u'trial']
[u'polic', u'appeal', u'wit', u'fatal', u'rollov']
[u'polic', u'inquiri', u'man', u'death']
[u'polic', u'charg', u'teen', u'assault']
[u'polic', u'damag', u'suicid', u'bomb']
[u'pont', u'perplex', u'bangladesh', u'belt']
[u'protest', u'lobbi', u'agenda', u'liber']
[u'public', u'servant', u'warn', u'minist', u'inform']
[u'qanta', u'hold', u'higher', u'fuel', u'levi']
[u'rainfal', u'boost', u'tree', u'plant']
[u'rossi', u'make', u'assen']
[u'opposit', u'take', u'simplist', u'view', u'crimin']
[u'serena', u'tear', u'shock', u'loss']
[u'seven', u'kill', u'aceh', u'violenc']
[u'shane', u'simon', u'warn', u'separ']
[u'simon', u'jone', u'rejoin', u'england', u'squad']
[u'stuppl', u'match', u'teen', u'soren', u'slam', u'hop', u'fade']
[u'subdu', u'sharapova', u'advanc', u'fourth', u'round']
[u'suspici', u'letter', u'send', u'indonesian', u'foreign']
[u'swan', u'march', u'continu', u'magpi', u'plan']
[u'swift', u'underlin', u'titl', u'credenti']
[u'govt', u'moot', u'honey', u'bank', u'propos', u'help', u'balanc']
[u'test', u'begin', u'train']
[u'speak', u'andrew', u'symond']
[u'increas', u'polit', u'pressur']
[u'thoma', u'hand', u'lion', u'captainci']
[u'kill', u'miss', u'bridg', u'collaps']
[u'tiger', u'stun', u'dragon']
[u'today', u'mark', u'month', u'world', u'worst']
[u'transsexu', u'take', u'women', u'footbal', u'match']
[u'unicycl', u'champion', u'coast', u'darwin']
[u'union', u'say', u'unsaf', u'ambul', u'risk', u'live']
[u'talk', u'iraq', u'rebel', u'report']
[u'warship', u'townsvill']
[u'view', u'coach']
[u'wallabi', u'freshen', u'franc']
[u'ralli', u'battl', u'offens', u'anti']
[u'warn', u'wife', u'separ']
[u'warrior', u'bronco', u'streak']
[u'wimbledon', u'result']
[u'zimbabw', u'set', u'transit', u'camp', u'demolit']
[u'human', u'right', u'case', u'air', u'talk']
[u'plan', u'cancel']
[u'accc', u'ask', u'ensur', u'bank', u'pass', u'save']
[u'airlin', u'destin']
[u'actu', u'tell', u'airport', u'worker', u'fear']
[u'adhd', u'program', u'reduc', u'fraser', u'coast', u'wait', u'list']
[u'admit', u'timekeep', u'mistak']
[u'investig', u'alleg', u'timekeep', u'mishap']
[u'ambul', u'leas', u'life', u'maldiv']
[u'reli', u'intern', u'student', u'fee']
[u'appeal', u'conn', u'children', u'reach', u'million']
[u'approv', u'coal']
[u'argentina', u'mexico', u'penalti']
[u'armstrong', u'shrug', u'train', u'crash']
[u'arroyo', u'broadcast', u'apolog']
[u'asia', u'africa', u'showdown']
[u'aust', u'china', u'talk', u'human', u'right']
[u'australia', u'consid', u'zimbabw', u'cricket', u'boycott']
[u'australian', u'fail', u'militari', u'justic']
[u'aust', u'uni', u'lose', u'face', u'asia']
[u'beach', u'close', u'irukandji', u'sting']
[u'beatti', u'angri', u'minist', u'tell', u'health']
[u'beazley', u'dismiss', u'latham', u'critic']
[u'beef', u'export', u'observ', u'develop']
[u'liquor', u'retail', u'face', u'class', u'action']
[u'birney', u'wont', u'protest']
[u'blue', u'tahu', u'origin']
[u'boati', u'revamp', u'facil']
[u'book', u'creat', u'labor', u'tension']
[u'kill', u'wamuran', u'quarri']
[u'bureaucrat', u'assur', u'communiti', u'hospit']
[u'burgoyn', u'commit', u'power']
[u'burgoyn', u'confirm', u'power', u'futur']
[u'bush', u'vow', u'elimin', u'tortur', u'worldwid']
[u'centr', u'sack', u'employe', u'centr', u'bank', u'data', u'scam']
[u'centr', u'sack', u'employe', u'bank', u'data', u'scam']
[u'canberra', u'engin', u'say', u'tsunami', u'build', u'project']
[u'central', u'banker', u'expect', u'price', u'remain', u'high']
[u'cloud', u'seed', u'trial']
[u'leader', u'expect', u'david', u'goliath', u'battl']
[u'club', u'skirt', u'femal', u'membership']
[u'coast', u'confirm', u'bailey', u'sign']
[u'cockbain', u'call', u'lion', u'squad']
[u'commodor', u'list', u'thiev']
[u'communiti', u'lend', u'support', u'murder', u'victim', u'memori']
[u'confid', u'black', u'seri']
[u'consum', u'tick', u'bowser', u'oper', u'price', u'restraint']
[u'corbi', u'reappoint', u'legal', u'advisor']
[u'coron', u'seek', u'specialist', u'advic', u'tegan', u'lane']
[u'council', u'anger', u'govt', u'budget', u'accommod']
[u'council', u'appli', u'drought', u'farmer']
[u'cricket', u'boss', u'part', u'blame', u'warn', u'break']
[u'criminologist', u'see', u'benefit', u'corbi', u'rehir']
[u'distribut', u'extra', u'drought']
[u'defector', u'case', u'tabl', u'human', u'right', u'talk']
[u'democrat', u'pressur', u'govt', u'open', u'ashbourn', u'inquiri']
[u'despit', u'like', u'rain', u'minist', u'urg', u'chang']
[u'detent', u'centr', u'best', u'welcom', u'darwin']
[u'diana', u'fling', u'book']
[u'doctor', u'endur', u'racist', u'backlash', u'patel', u'case']
[u'admit', u'citrus', u'compens', u'talk', u'need']
[u'drink', u'driver', u'fin', u'crash', u'hous']
[u'earthquak', u'rattl', u'indonesia', u'tsunami', u'anniversari']
[u'fear', u'unsaf', u'ambul', u'patient', u'risk']
[u'fifa', u'announc', u'heart', u'test', u'plan', u'world']
[u'report', u'suggest', u'train']
[u'flood', u'spark', u'melbourn', u'rail', u'chao']
[u'forc', u'sign', u'graham', u'storm']
[u'forster', u'health', u'probe', u'move', u'toowoomba']
[u'kill', u'highway', u'crash']
[u'kill', u'collis']
[u'fruit', u'grower', u'export', u'urg', u'combin', u'effort']
[u'gatlin', u'complet', u'sprint', u'doubl', u'champ']
[u'gnowangerup', u'shire', u'final', u'attract', u'doctor']
[u'good', u'rain', u'north', u'west']
[u'govt', u'approv', u'promot', u'discoveri', u'loop']
[u'govt', u'claim', u'rehabilit', u'work', u'kariong']
[u'govt', u'consid', u'older', u'driver', u'failur']
[u'govt', u'defend', u'norseman', u'health', u'care', u'facil']
[u'govt', u'launch', u'anim', u'diseas', u'databas']
[u'govt', u'launch', u'strategi', u'fight', u'rise', u'stds']
[u'govt', u'pay', u'servic', u'indigen', u'educ']
[u'govt', u'prepar', u'sign', u'asia', u'cooper', u'treati']
[u'govt', u'releas', u'prison', u'inform', u'ahead', u'tender']
[u'govt', u'protect', u'maritim', u'histori']
[u'govt', u'shine', u'spotlight', u'indigen', u'tourism']
[u'greec', u'begin', u'probe', u'massacr']
[u'greenhous', u'concern', u'spark', u'quell']
[u'hanson', u'speak', u'releas', u'fingleton']
[u'harrington', u'eagl', u'clinch', u'stun']
[u'healthscop', u'attack', u'newspap', u'hospit', u'articl']
[u'hewitt', u'wari', u'serv', u'dent']
[u'hid', u'pressur', u'declar', u'stanc']
[u'hindmarsh', u'face', u'origin', u'suspens']
[u'hospit', u'manag', u'defend', u'facil']
[u'hous', u'probe']
[u'howard', u'pitch', u'agenda', u'parti', u'faith']
[u'howard', u'vail', u'discuss', u'frontbench', u'chang']
[u'husband', u'carri', u'wife', u'bodi']
[u'feel', u'respons', u'death', u'assist']
[u'inmat', u'treat', u'self', u'inflict', u'injuri']
[u'intellig', u'agenc', u'conduct', u'raid']
[u'intrud', u'threaten', u'dweller', u'iron', u'bar']
[u'iraq', u'insurg', u'deni', u'contact']
[u'strike', u'action', u'fail', u'deter', u'govt']
[u'isra', u'soldier', u'refus', u'demolish', u'jewish']
[u'jewel', u'thiev', u'pillag', u'adelaid', u'store']
[u'jewish', u'settler', u'erect', u'gaza', u'outpost']
[u'joyc', u'warn', u'union', u'strike']
[u'joyc', u'welcom', u'open', u'door', u'stanc']
[u'juventus', u'target', u'vieira', u'snub', u'trezeguet']
[u'take', u'open']
[u'kiwi', u'seek', u'back', u'zimbabw']
[u'labor', u'throw', u'chang', u'beazley']
[u'institut', u'question', u'polic', u'power']
[u'lawyer', u'claim', u'aust', u'govt', u'abandon', u'corbi']
[u'local', u'hospit', u'tell', u'shape', u'lose', u'fund']
[u'loeb', u'take', u'acropoli', u'ralli', u'record', u'fifth']
[u'abduct', u'sydney', u'home', u'invas']
[u'burn', u'shoalhaven']
[u'die', u'power', u'station', u'break']
[u'kill', u'truck', u'bruce', u'highway']
[u'women', u'struggl', u'supermum', u'imag']
[u'knock', u'elector', u'chang']
[u'mayor', u'confid', u'wast', u'servic', u'begin']
[u'mayor', u'defend', u'hope', u'vale', u'councillor']
[u'mcgauran', u'cabinet', u'posit']
[u'melbourn', u'firm', u'look', u'suppli']
[u'melbourn', u'sewag', u'gippsland']
[u'minist', u'attack', u'uranium', u'mine']
[u'cost', u'supermarket']
[u'mother', u'confirm', u'corbi', u'hire', u'lawyer']
[u'motorway', u'plan', u'worri', u'northern', u'council']
[u'call', u'answer', u'abalon', u'industri', u'futur']
[u'confid', u'ethanol', u'mandat', u'mean', u'job']
[u'welcom', u'bunburi', u'prison', u'upgrad']
[u'munit', u'blast', u'kill', u'afghan', u'german']
[u'murray', u'murrumbidge', u'water', u'share', u'like']
[u'develop', u'polici', u'give', u'local', u'busi']
[u'iranian', u'presid', u'commit', u'nuclear', u'program']
[u'iranian', u'presid', u'readi', u'power']
[u'newmont', u'sell', u'zinc', u'copper']
[u'scheme', u'recycl', u'comput']
[u'elect', u'result', u'offici']
[u'urg', u'implement', u'greenhous', u'strategi']
[u'odriscol', u'face', u'surgeri', u'injur', u'shoulder']
[u'jump']
[u'ombudsman', u'consid', u'suppli', u'complaint']
[u'omeley', u'readi', u'origin', u'return', u'folk']
[u'dayer', u'affect', u'ash', u'say', u'hogg']
[u'opposit', u'anger', u'anti', u'drug', u'messag', u'walk']
[u'origin', u'fall', u'slater']
[u'origin', u'respons', u'brisban', u'loss', u'say']
[u'passeng', u'die', u'rokebi', u'road', u'crash']
[u'patel', u'stori', u'screen']
[u'peta', u'rais', u'prospect', u'mules', u'compromis']
[u'petkov', u'second', u'shoot', u'glori']
[u'pilkadari', u'win', u'brunei', u'open']
[u'planet', u'align', u'cosmic']
[u'platypus', u'coloni', u'defend']
[u'polic', u'bush', u'road', u'crash']
[u'polic', u'takeov', u'train', u'secur']
[u'pope', u'extend', u'sympathi', u'bunburi', u'cathol']
[u'pulp', u'taskforc', u'respond', u'rpdc', u'concern']
[u'say', u'corbi', u'appeal', u'winnabl']
[u'rain', u'boost', u'farmer', u'winter', u'crop', u'hop']
[u'recaptur', u'prison', u'court']
[u'tape', u'hamper', u'pierc', u'creek', u'plan']
[u'remesi', u'retain', u'french', u'open', u'titl']
[u'research', u'hone', u'banana', u'skin', u'fuel']
[u'research', u'debunk', u'japanes', u'whale']
[u'resid', u'urg', u'watch', u'dodgi', u'builder']
[u'reveng', u'factor', u'eagl', u'wirrpunda']
[u'ridgeway', u'head', u'indigen', u'tourism', u'bodi']
[u'rumsfeld', u'acknowledg', u'outreach', u'iraqi', u'rebel']
[u'rumsfeld', u'say', u'insurg']
[u'saddam', u'lieuten', u'grill', u'alleg', u'crime']
[u'scientist', u'discov', u'fertil', u'regul', u'gene']
[u'settler', u'oppos', u'remov']
[u'share', u'market', u'begin', u'week']
[u'slack', u'field', u'wont', u'good']
[u'snowi', u'hold', u'water', u'shortag']
[u'soldier', u'guilti', u'british', u'activist', u'manslaught']
[u'state', u'govt', u'move', u'boost', u'shoalhaven', u'invest']
[u'strauss', u'flintoff', u'strong', u'bangladesh']
[u'strike', u'action', u'begin']
[u'sustain', u'land', u'warwick', u'agenda']
[u'sydney', u'hiker', u'bodi', u'recov']
[u'taliban', u'reject', u'report', u'heavi', u'loss']
[u'tasmanian', u'fight', u'frost', u'record', u'power']
[u'taxi', u'charter', u'focus', u'custom', u'driver', u'right']
[u'teen', u'death', u'put', u'secur', u'agenda']
[u'tegan', u'lane', u'inquest', u'adjourn']
[u'telstra', u'casualti', u'alleg', u'anti', u'competit', u'action']
[u'thiev', u'stab', u'syring']
[u'acquit', u'conspiraci', u'hotel', u'attack']
[u'timber', u'worker', u'fear', u'reserv', u'restrict', u'access']
[u'tour', u'priest', u'say', u'world', u'hunger', u'beat']
[u'train', u'disrupt', u'keep', u'minimum']
[u'trucki', u'face', u'court', u'blow']
[u'peopl', u'dead', u'separ', u'accid']
[u'envoy', u'zimbabw', u'amid', u'outcri', u'crackdown']
[u'union', u'seek', u'tougher', u'regul', u'ship', u'standard']
[u'union', u'group', u'want', u'chang', u'elect', u'issu']
[u'union', u'prepar', u'battl']
[u'union', u'ralli', u'worker', u'chang']
[u'union', u'fight', u'ahead', u'pilbara', u'ralli']
[u'link', u'dope', u'smoker', u'terror']
[u'group', u'optimist', u'glenelg', u'river', u'futur']
[u'helicopt', u'crash', u'iraq']
[u'misus', u'detain', u'suspect', u'report', u'say']
[u'plan', u'plutonium', u'product', u'secret', u'mission']
[u'vail', u'urg', u'unit', u'govern', u'rural', u'issu']
[u'victorian', u'back', u'nuclear', u'power']
[u'voic', u'tigger', u'dick', u'dastard', u'die']
[u'cane', u'toad', u'watch', u'ship']
[u'defend', u'australian', u'educ', u'standard']
[u'worker', u'strike', u'chang']
[u'overlook', u'immun', u'fingleton']
[u'westpac', u'boss', u'elect', u'chairman']
[u'whale', u'museum', u'win', u'heritag', u'gong']
[u'whistleblow', u'tell', u'patel', u'concern', u'spark']
[u'whistleblow', u'tell', u'patel', u'stori']
[u'wood', u'face', u'lose', u'eyesight']
[u'wood', u'lose', u'eyesight']
[u'wood', u'struggl', u'vision']
[u'tourism', u'gateway', u'plan', u'illawarra']
[u'abus', u'victim', u'urg', u'lodg', u'compens', u'claim']
[u'adriano', u'get', u'green', u'light', u'train', u'scare']
[u'alcan', u'turn', u'dump', u'woodsid']
[u'black', u'thug', u'say', u'coach', u'henri']
[u'almond', u'processor', u'confid', u'plant']
[u'anti', u'protest', u'charg', u'adjourn']
[u'arsenal', u'star', u'persi', u'releas']
[u'asio', u'power', u'criticis', u'raid']
[u'asio', u'raid', u'spark', u'critic']
[u'dead', u'salvador', u'storm']
[u'aussi', u'cautious', u'ahead', u'edgbaston', u'clash']
[u'aust', u'china', u'talk', u'focus', u'domest', u'human', u'right']
[u'australia', u'post', u'rethink', u'mail', u'contract']
[u'bailey', u'excit', u'gold', u'coast', u'futur']
[u'bank', u'resourc', u'stock', u'push', u'ord']
[u'beach', u'contamin', u'clear']
[u'beat', u'fern', u'focus', u'say', u'record', u'equal', u'elli']
[u'beazley', u'confid', u'fingleton', u'receiv', u'fair']
[u'beazley', u'take', u'messag', u'meatwork']
[u'beazley', u'welcom', u'govt', u'backflip', u'asean', u'treati']
[u'beckenbau', u'promis', u'crackdown', u'pitch', u'invad']
[u'better', u'communic', u'help', u'eas', u'impact', u'coal']
[u'crowd', u'flock', u'mount', u'larcom']
[u'industri', u'block', u'seek', u'mildura']
[u'black', u'recal', u'muliaina', u'kelleh', u'lion', u'test']
[u'blatter', u'consid', u'world', u'dope', u'test']
[u'bogut', u'tip', u'draft', u'select']
[u'boomer', u'love', u'train', u'gold', u'coast']
[u'brain', u'pacemak', u'eas', u'sever', u'depress']
[u'broadband', u'access', u'take']
[u'break', u'hill', u'consid', u'energi', u'audit']
[u'broom', u'cane', u'toad', u'film', u'screen']
[u'bulldog', u'griffen', u'nomin', u'rise', u'star', u'award']
[u'bulldog', u'resign', u'lose', u'anasta']
[u'bunburi', u'consid', u'super', u'campus']
[u'burnett', u'budget', u'includ', u'averag', u'rate', u'rise']
[u'busi', u'urg', u'workplac', u'safeti']
[u'loddon', u'malle', u'autism', u'servic']
[u'cane', u'farmer', u'deal', u'contract']
[u'bomb', u'rip', u'baghdad', u'market']
[u'carrol', u'dismiss', u'talk', u'target', u'john']
[u'centrelink', u'deni', u'widow', u'payment', u'jeopardi']
[u'seek', u'better', u'communic', u'farmer']
[u'chang', u'afoot', u'thunderbolt', u'countri', u'fair']
[u'china', u'flood', u'toll', u'rise']
[u'club', u'welcom', u'sydney', u'recruit', u'strategi']
[u'coff', u'mayor', u'urg', u'action', u'highway', u'deathtrap']
[u'costa', u'consid', u'build', u'tollway', u'near', u'pacif']
[u'council', u'consid', u'boost', u'sewerag', u'fund']
[u'councillor', u'announc', u'shock', u'resign']
[u'council', u'pay', u'debt', u'administr', u'fail']
[u'council', u'launch', u'program', u'save', u'littl', u'penguin']
[u'council', u'auction', u'land', u'hous']
[u'coupl', u'kill', u'light', u'plane', u'crash']
[u'court', u'rule', u'display', u'command']
[u'cowboy', u'manag', u'back', u'bowen', u'origin', u'select']
[u'crime', u'fight', u'communiti', u'seek', u'chang']
[u'crow', u'thumb', u'monday', u'night', u'footi']
[u'deadlin', u'loom', u'nurs', u'home']
[u'develop', u'plan', u'westsid', u'shop', u'centr']
[u'dial', u'ride', u'servic', u'moot', u'gambier']
[u'kelli', u'brother', u'surviv', u'glenrowan', u'shoot']
[u'diver', u'hospitalis', u'decompress', u'sick']
[u'diver', u'hospit', u'bend']
[u'doctor', u'group', u'attack', u'sale', u'hospit', u'children']
[u'doubt', u'cast', u'blood', u'test', u'consider']
[u'dubbo', u'woman', u'dead', u'lock', u'bedroom']
[u'evan', u'tate', u'trade', u'halt']
[u'expert', u'seek', u'urgent', u'test', u'migratori', u'bird']
[u'feder', u'govt', u'help', u'austop', u'worker']
[u'fingleton', u'hold', u'talk']
[u'fish', u'famili', u'treat', u'like', u'outcast']
[u'william', u'sparkl', u'lion', u'post', u'record']
[u'forster', u'review', u'hear', u'toowoomba', u'health', u'woe']
[u'cambodian', u'charg', u'worker', u'rescu']
[u'franc', u'build', u'nuclear', u'fusion', u'reactor']
[u'free', u'hepat', u'vaccin', u'indigen', u'kid']
[u'fuel', u'seller', u'say', u'price', u'fluctuat', u'normal']
[u'gallop', u'stand', u'justic', u'head', u'manag']
[u'gallop', u'cost', u'campaign', u'fight', u'chang']
[u'glenormiston', u'colleg', u'seek', u'cours']
[u'gloucest', u'coal', u'control', u'stratford']
[u'gold', u'coast', u'futur', u'excit', u'bailey']
[u'good', u'rain', u'eas', u'water', u'ban']
[u'govern', u'refus', u'guarante', u'long', u'term', u'care']
[u'govern', u'timid', u'china', u'opposit']
[u'govt', u'accus', u'sneaki', u'darwin', u'detent']
[u'govt', u'boost', u'reserv']
[u'govt', u'review', u'plantat', u'tax']
[u'govt', u'fund', u'palm', u'communiti']
[u'govt', u'pipelin', u'rout']
[u'govt', u'vow', u'implement', u'chang']
[u'grape', u'glut', u'matter', u'time', u'grower']
[u'grizzli', u'bear', u'kill', u'coupl', u'alaska']
[u'group', u'applaud', u'rise', u'women', u'polit']
[u'group', u'develop', u'eurobodalla', u'protect', u'plan']
[u'hagan', u'sympathi', u'sack', u'slater']
[u'halliburton', u'accus', u'contract', u'abus', u'iraq']
[u'harbour', u'bridg', u'fight', u'poverti']
[u'hatcheri', u'use', u'track', u'salmon']
[u'health', u'servic', u'anaesthetist']
[u'health', u'servic', u'beat', u'accredit']
[u'hewitt', u'reject', u'intimid', u'claim']
[u'high', u'price', u'hit', u'share']
[u'home', u'sale', u'slow', u'despit', u'jump']
[u'horsham', u'expect', u'dementia', u'bed']
[u'hospit', u'report', u'highlight', u'need', u'improv']
[]
[u'hous', u'insist', u'ashbourn', u'inquiri']
[u'hubbl', u'spi', u'comet', u'belch', u'dust']
[u'humpback', u'whale', u'free', u'cray', u'line']
[u'humpback', u'whale', u'trap', u'cray', u'line']
[u'hunter', u'union', u'rep', u'meet', u'shake']
[u'call', u'balanc', u'miner']
[u'collaps', u'blame', u'indonesian', u'mine', u'expans']
[u'dont', u'intimid', u'umpir', u'say', u'hewitt']
[u'immigr', u'say', u'solon', u'travel']
[u'indigen', u'tourism', u'guid', u'kimberley']
[u'insur', u'payout', u'continu', u'worri', u'council']
[u'iraqi', u'kill', u'bomb', u'attack']
[u'consid', u'asia', u'pacif', u'tournament']
[u'japanes', u'charg', u'attempt', u'smuggl']
[u'judg', u'increas', u'sentenc', u'jail', u'offend']
[u'kangaroo', u'sydney', u'draft', u'plan']
[u'korp', u'lover', u'desper', u'man', u'love', u'protect']
[u'lassa', u'fever', u'vaccin', u'show', u'promis']
[u'latham', u'comment', u'sadden', u'labor']
[u'latham', u'lash', u'beazley', u'book']
[u'latham', u'lash', u'beazley', u'labor', u'premier']
[u'launceston', u'urg', u'evandal', u'retail', u'plan']
[u'liber', u'leadership', u'choic', u'obvious', u'abbott', u'say']
[u'lover', u'sell', u'intim', u'picasso', u'work']
[u'accus', u'syring', u'hold']
[u'jail', u'friend', u'die', u'crash']
[u'jail', u'campaign', u'terror', u'famili']
[u'suffer', u'sever', u'burn', u'roadsid', u'burn']
[u'gold', u'maleni', u'supermarket', u'site']
[u'marin', u'begin', u'offens', u'western', u'iraq']
[u'maroon', u'deni', u'hand', u'ref', u'sack']
[u'mason', u'sign', u'bulldog', u'deal']
[u'mcgauran', u'keen', u'cabinet', u'post']
[u'mcginti', u'hint', u'review', u'crown', u'prosecut']
[u'meet', u'focus', u'road', u'resurfac', u'issu']
[u'michelin', u'admit', u'grand', u'prix', u'miscalcul']
[u'minyip', u'age', u'care', u'oper']
[u'mitsubishi', u'ceas', u'buy', u'woodchip']
[u'moroney', u'deni', u'polic', u'crisi']
[u'call', u'salin', u'appoint']
[u'nambucca', u'council', u'seek', u'bigger', u'slice']
[u'nasa', u'fall', u'short', u'safeti', u'issu']
[u'nation', u'ralli', u'support', u'ethanol', u'industri']
[u'nauru', u'defend', u'whale', u'vote']
[u'room', u'error', u'lethal', u'warn', u'resurg', u'lion']
[u'north', u'coast', u'road', u'nrma', u'spotlight']
[u'pair', u'kill', u'plane', u'crash']
[u'nurs', u'fear', u'repris', u'report', u'problem']
[u'ogilivi', u'share', u'honour', u'qualifi']
[u'opposit', u'fail', u'chang', u'budget']
[u'owen', u'hous', u'hunt', u'intensifi', u'chelsea', u'specul']
[u'oxiana', u'seek', u'golden', u'grove', u'worker']
[u'pakistan', u'court', u'order', u'rearrest', u'gang', u'rape', u'accus']
[u'park', u'group', u'indigen', u'tourism', u'mentor']
[u'parmalat', u'execut', u'sentenc', u'jail']
[u'patel', u'give', u'free', u'rein', u'whistleblow', u'tell', u'inquiri']
[u'patient', u'benefit', u'patel', u'film', u'opposit']
[u'rise', u'hing', u'reform', u'health', u'profession', u'tell']
[u'pedestrian', u'kill', u'polic', u'accid']
[u'pharmacist', u'weigh', u'methadon', u'compens', u'deal']
[u'pilbara', u'picket', u'return', u'work']
[u'polic', u'suspect', u'man', u'death', u'link', u'school', u'break']
[u'port', u'lincoln', u'blood', u'donor', u'turn', u'away']
[u'primari', u'school', u'neglect', u'confer', u'tell']
[u'psychiatrist', u'criticis', u'cruis']
[u'puerta', u'lead', u'argentina', u'davi', u'challeng', u'cana']
[u'establish', u'foreign', u'doctor', u'support', u'group']
[u'racv', u'back', u'call', u'faster', u'calder', u'duplic']
[u'rain', u'prove', u'farmer']
[u'region', u'bail', u'law', u'review']
[u'reserv', u'receiv', u'anti', u'terror', u'train']
[u'retir', u'repriev', u'collina']
[u'rise', u'fuel', u'price', u'link', u'higher', u'freight', u'rat']
[u'robert', u'complet', u'record', u'aussi', u'tour', u'line']
[u'row', u'club', u'wont', u'chang', u'regatta', u'date']
[u'rural', u'doctor', u'chase', u'feder', u'fund', u'save', u'birth']
[u'russian', u'domin', u'wimbledon', u'quarter', u'final']
[u'saddam', u'inspir', u'updat', u'classic', u'opera']
[u'safeti', u'survey', u'roebourn', u'shire']
[u'sandon', u'meet', u'tip', u'includ', u'park', u'request']
[u'senat', u'region', u'partnership', u'inquiri', u'head']
[u'simpkin', u'origin']
[u'kill', u'latest', u'attack', u'southern', u'thailand']
[u'small', u'busi', u'press', u'drought', u'help']
[u'snowi', u'allianc', u'reject', u'sydney', u'water', u'plan']
[u'solon', u'sign', u'thumb']
[u'south', u'coast', u'river', u'rehabilit', u'agenda']
[u'southern', u'includ', u'tourism', u'land', u'bank']
[u'south', u'west', u'grazier', u'report', u'desert', u'snow']
[u'springbok', u'recal', u'pretorius', u'wallabi', u'clash']
[u'stanhop', u'blame', u'feder', u'counterpart', u'delay']
[u'stress', u'alcan', u'worker', u'turn']
[u'studi', u'link', u'driver', u'safeti', u'vehicl', u'size']
[u'studi', u'tour', u'open', u'stanhop', u'eye', u'trade']
[u'suicid', u'risk', u'rise', u'drought', u'tighten', u'grip']
[u'supermarket', u'develop', u'unfaz', u'mine', u'prospect']
[u'swan', u'happi', u'draft', u'propos']
[u'teacher', u'unhappi', u'plan', u'chang', u'school']
[u'teacher', u'vote', u'strike', u'action']
[u'teen', u'plead', u'guilti', u'sheep', u'stab']
[u'charg', u'gang', u'rape', u'bail']
[u'tourism', u'number', u'rise']
[u'townsvill', u'troop', u'tip', u'afghan', u'role']
[u'trial', u'date', u'jack', u'thoma']
[u'tweed', u'council', u'help', u'clean', u'lanka', u'drink']
[u'union', u'accus', u'scare', u'campaign']
[u'union', u'say', u'protest', u'direct', u'govt', u'wesfarm']
[u'student', u'compet', u'donat', u'blood']
[u'peacekeep', u'battl', u'militia']
[u'seek', u'uzbek', u'refuge', u'australia']
[u'warn', u'loom', u'food', u'shortag', u'zambia']
[u'uranium', u'mine', u'inquiri', u'lead', u'nuclear', u'power']
[u'build', u'bigger', u'prison', u'iraq', u'insurg']
[u'court', u'declin', u'journalist', u'appeal', u'case']
[u'issu', u'demand']
[u'vaughan', u'hope', u'play', u'chanc']
[u'victoria', u'score', u'infrastructur', u'report']
[u'victoria', u'infrastructur', u'bare', u'adequ', u'report']
[u'virgin', u'blue', u'govt', u'hold', u'perth', u'kalgoorli', u'rout', u'talk']
[u'mart', u'billionair', u'die', u'plane', u'crash']
[u'nation', u'urg', u'vail', u'challeng']
[u'parti', u'agre', u'plan', u'break', u'western', u'power']
[u'water', u'high', u'council', u'meet', u'agenda']
[u'wine', u'grape', u'grower', u'pleas', u'senat', u'hear']
[u'woman', u'die', u'motoris', u'buggi', u'crash']
[u'wool', u'industri', u'urg', u'unit', u'peta']
[u'workplac', u'minist', u'staff', u'protest']
[u'world', u'vision', u'pay', u'tribut', u'accid', u'victim']
[u'youth', u'want', u'port', u'piri', u'properti', u'damag']
[u'zimbabw', u'govern', u'cricket', u'australia']
[u'mitsubishi', u'relat', u'loss', u'fear']
[u'abbott', u'reject', u'call', u'wider', u'sniff', u'fuel']
[u'academ', u'reject', u'cash', u'comment', u'claim']
[u'acoss', u'criticis', u'welfar', u'work', u'provis']
[u'afghan', u'chopper', u'shoot']
[u'albani', u'expect', u'feel', u'impact', u'chang']
[u'sue', u'intel', u'monopoli', u'abus']
[u'anasta', u'prepar', u'leav', u'bulldog']
[u'land', u'receiv', u'health', u'hous', u'grant']
[u'appl', u'updat', u'itun', u'podcast']
[u'aquarium', u'fish', u'fair', u'shake']
[u'arroyo', u'husband', u'flee', u'presid', u'admit', u'elect']
[u'atsic', u'council', u'replac', u'detail']
[u'audit', u'deem', u'patel', u'outcom', u'accept']
[u'aust', u'pay', u'price', u'skill', u'labour', u'shortag']
[u'author', u'track', u'free', u'whale', u'rout']
[u'award', u'honour', u'hospit', u'emerg', u'dept']
[u'babi', u'bronco', u'need', u'seiz', u'say', u'petero']
[u'ballarat', u'council', u'plan', u'includ', u'rate', u'rise']
[u'beatti', u'dismiss', u'latham', u'attack']
[u'beazley', u'take', u'protest', u'central']
[u'beazley', u'attack', u'labor', u'moral', u'time']
[u'benefit', u'china', u'free', u'trade', u'deal', u'estim']
[u'frustrat', u'health', u'servic', u'delay']
[u'bichel', u'sign', u'hampshir', u'stint']
[u'black', u'cap', u'tell', u'tour', u'zimbabw', u'face', u'fin']
[u'bogut', u'apologis', u'boast']
[u'bogut', u'get', u'pick', u'draft']
[u'bogut', u'number', u'draft']
[u'bouncer', u'slash', u'nightclub', u'attack']
[u'brain', u'damag', u'epilept', u'girl', u'famili', u'lose']
[u'britain', u'commemor', u'trafalgar', u'anniversari']
[u'build', u'approv', u'region', u'victoria']
[u'bush', u'appeal', u'american', u'stay', u'commit']
[u'bush', u'reject', u'iraq', u'withdraw', u'timet']
[u'bush', u'warn', u'tough', u'moment', u'iraq']
[u'calm', u'hop', u'head', u'cane', u'toad', u'spread']
[u'canada', u'pass', u'marriag', u'law']
[u'canegrow', u'industri', u'exit', u'grant', u'chang']
[u'cassini', u'spi', u'possibl', u'lake', u'titan']
[u'cattl', u'sale', u'rise', u'ahead', u'tag', u'scheme']
[u'ceremoni', u'hold', u'darwin', u'mark']
[u'china', u'free', u'trade', u'inquiri', u'hear', u'submiss']
[u'church', u'uneasi', u'chang']
[u'cinema', u'offer', u'money', u'guarante', u'crow']
[u'cleric', u'accus', u'asio', u'polit', u'raid']
[u'coal', u'freight', u'track', u'derail']
[u'colleg', u'beat', u'educ', u'trial']
[u'commission', u'conced', u'macquari', u'field', u'riot']
[u'communiti', u'deliv', u'posit', u'respons', u'mail']
[u'communiti', u'urg', u'affect', u'famili']
[u'compani', u'get', u'grant', u'advanc', u'auto', u'immun', u'diseas']
[u'constant', u'rain', u'spark', u'coast', u'hous', u'damag']
[u'contractor', u'tool', u'protest', u'ralli']
[u'contract', u'stop', u'elect', u'surgeri']
[u'costello', u'call', u'util', u'regul']
[u'costello', u'offer', u'support', u'vegi', u'grower']
[u'costello', u'reject', u'acoss', u'welfar', u'work', u'claim']
[u'council', u'back', u'appeal', u'injuri', u'payout']
[u'council', u'consid', u'perform', u'audit']
[u'council', u'expect', u'adopt', u'budget', u'unchang']
[u'council', u'posit', u'talk', u'palm']
[u'council', u'meet', u'back', u'civic', u'centr', u'plan']
[u'court', u'recognis', u'biggest', u'nativ', u'titl', u'claim']
[u'crisa', u'attack', u'account', u'polici']
[u'crocker', u'join', u'melbourn', u'storm']
[u'deep', u'yellow', u'acquir', u'tanami', u'uranium', u'right']
[u'democrat', u'urg', u'ashbourn', u'public', u'inquiri']
[u'demon', u'urg', u'explain', u'drug', u'stanc']
[u'develop', u'back', u'council', u'oval', u'sale', u'decis']
[u'diamond', u'search', u'go', u'tech']
[u'doubt', u'remain', u'saleyard', u'meatwork', u'plan']
[u'drug', u'trucki', u'fin', u'lose', u'point']
[u'communiti', u'support', u'blanket', u'alcohol']
[u'eagl', u'wari', u'embattl', u'blue']
[u'employ', u'group', u'play', u'concern']
[u'line']
[u'energi', u'bank', u'stock', u'erod', u'earli', u'gain']
[u'english', u'warn', u'swear', u'crackdown']
[u'entsch', u'reject', u'reef', u'author', u'closur', u'claim']
[u'evan', u'tate', u'investor', u'know', u'fate']
[u'guantanamo', u'detaine', u'alleg', u'koran', u'throw']
[u'expert', u'examin', u'bruce', u'highway', u'asphalt']
[u'farina', u'depart', u'socceroo', u'coach']
[u'feder', u'hewitt', u'collis', u'cours']
[u'fiance', u'join', u'deport', u'south', u'west']
[u'fingleton', u'talk', u'agreement']
[u'fisheri', u'scientist', u'reject', u'lobster', u'claim']
[u'flash', u'flood', u'hit', u'northern']
[u'caus', u'chao', u'airport']
[u'high', u'court', u'chief', u'justic', u'die']
[u'fraser', u'defend', u'senat', u'major', u'action']
[u'fund', u'guarante', u'detox', u'unit', u'futur']
[u'furor', u'latham', u'biographi']
[u'game', u'farina']
[u'geraldton', u'stag', u'protest', u'chang']
[u'glazer', u'score', u'complet', u'ownership']
[u'govt', u'sign', u'main', u'road', u'revamp']
[u'govt', u'urg', u'rethink', u'wast', u'plan']
[u'govt', u'urg', u'spend', u'grain', u'branch', u'line']
[u'hall', u'creek', u'shire', u'consid', u'communiti', u'bank']
[u'health', u'review', u'hear', u'medicar', u'access', u'woe']
[u'heritag', u'trail', u'honour', u'strike', u'shearer']
[u'higher', u'fuel', u'price', u'forecast', u'region', u'driver']
[u'hindmarsh', u'clear', u'origin', u'cross', u'guilti']
[u'hindmarsh', u'clear', u'play', u'origin', u'decid']
[u'hindmarsh', u'hope', u'beat', u'charg']
[u'hope', u'pilbara', u'stop', u'mishap']
[u'hospit', u'medic', u'director', u'face', u'morri', u'inquiri']
[u'hospit', u'order', u'hand', u'abort', u'file']
[u'hunter', u'construct', u'sector', u'tip', u'remain', u'strong']
[u'illeg', u'fishermen', u'hous', u'darwin', u'hotel']
[u'indigen', u'dancer', u'welcom', u'parliamentarian']
[u'inquiri', u'head', u'slam', u'baxter']
[u'chang', u'assault', u'fair', u'say', u'rann']
[u'japanes', u'growth', u'worri', u'timber', u'industri']
[u'kalgoorli', u'meet', u'focus', u'rural', u'issu']
[u'kerin', u'say', u'blame', u'shift', u'scar', u'power']
[u'knight', u'receiv', u'financi', u'support']
[u'knight', u'reveal', u'player', u'sign']
[u'korp', u'refus', u'contact']
[u'laharragu', u'line', u'tuqiri']
[u'latham', u'french', u'clash']
[u'latham', u'hit', u'beazley', u'labor', u'premier']
[u'latham', u'know', u'implic', u'book', u'biograph']
[u'liber', u'target', u'bendigo', u'state', u'elect', u'lead']
[u'littl', u'celebr', u'human', u'right', u'stanhop']
[u'lockyer', u'back', u'selector', u'slater', u'dump']
[u'loddon', u'bring', u'biggest', u'budget']
[u'lopez', u'face', u'toughest', u'test', u'hewitt']
[u'macfarlan', u'powerless', u'revers', u'mine']
[u'macquari', u'field', u'riot', u'report', u'critic']
[u'send', u'jail', u'despit', u'guilti', u'verdict']
[u'mansfield', u'rider', u'saddl', u'tour', u'franc']
[u'martin', u'unsur', u'uranium', u'power']
[u'meet', u'canva', u'airport', u'develop']
[u'melbourn', u'sydney', u'track', u'revamp', u'help', u'wagga']
[u'rehabilit', u'public', u'spotlight']
[u'miner', u'fin', u'blast']
[u'minist', u'reject', u'council', u'rate', u'rise', u'plan']
[u'mitsubishi', u'ceas', u'buy', u'woodchip']
[u'rain', u'forecast', u'northern']
[u'mural', u'giant', u'buddha', u'ruin', u'afghanistan']
[u'murdoch', u'agre', u'curtin', u'merger', u'studi']
[u'nasa', u'readi', u'juli', u'shuttl', u'blast']
[u'nauru', u'detent', u'famili', u'call', u'complet', u'releas']
[u'aborigin', u'liaison', u'offic', u'dubbo']
[u'ngaanyatjarra', u'land', u'right', u'battl']
[u'ningaloo', u'tourism', u'impress', u'minist']
[u'hill', u'hear', u'sound', u'shania']
[u'tell', u'tour', u'zimbabw', u'face', u'fin']
[u'triumph', u'australia']
[u'olymp', u'champion', u'lewi', u'hang', u'run', u'shoe']
[u'opposit', u'challeng', u'ashbourn', u'inquiri', u'plan']
[u'origin', u'goug', u'centr', u'stage', u'judiciari']
[u'overturn', u'protest', u'convict', u'worri', u'forest']
[u'paediatr', u'orthopaed', u'surgeon', u'train']
[u'parent', u'warn', u'lookout', u'sign']
[u'peachey', u'head', u'england']
[u'seek', u'north', u'support', u'pipelin', u'plan']
[u'polic', u'chief', u'hear', u'plea', u'loxton', u'station']
[u'polic', u'hunt', u'corner', u'store', u'bandit']
[u'polic', u'hunt', u'gladston', u'servic', u'station', u'thief']
[u'polic', u'issu', u'explos', u'warn']
[u'polic', u'probe', u'suspici', u'bexley', u'death']
[u'polic', u'search', u'yamba', u'home', u'invad']
[u'polic', u'stage', u'enact', u'death', u'investig']
[u'polic', u'wrap', u'case', u'bali', u'heroin']
[u'politician', u'disagre', u'highway']
[u'postal', u'worker', u'ban', u'promot', u'ralli']
[u'protest', u'lodg', u'power', u'plan']
[u'public', u'abus', u'respons', u'servic']
[u'public', u'hospit', u'elect', u'surgeri', u'wait', u'time']
[u'public', u'support', u'memori']
[u'qanta', u'reinstat', u'beij', u'flight']
[u'qualifi', u'support', u'govt', u'power', u'plan']
[u'rain', u'lift', u'farmer', u'crop', u'hop']
[u'rain', u'prompt', u'revis', u'abar', u'crop', u'outlook']
[u'rape', u'victim', u'justic', u'musharraf']
[u'famili', u'welcom', u'baxter', u'manifest', u'inadequ']
[u'raus', u'lawyer', u'push', u'royal', u'commiss']
[u'region', u'leader', u'releas', u'telecom', u'polici', u'paper']
[u'resid', u'group', u'maintain', u'tugun', u'bypass', u'rout']
[u'rockhampton', u'water', u'meter', u'read', u'day']
[u'club', u'confid', u'member']
[u'indigen', u'servic', u'fund', u'boost']
[u'sale', u'basketbal', u'head', u'world', u'champ']
[u'sandon', u'meet', u'hear', u'open', u'space', u'support']
[u'record', u'fruit', u'free', u'season']
[u'scholarship', u'winner', u'investig', u'dementia']
[u'scientist', u'nuclear', u'weapon']
[u'search', u'survivor', u'chopper', u'crash']
[u'mop', u'flood', u'northern', u'gold']
[u'shame', u'ifna', u'shame']
[u'shellharbour', u'council', u'plan', u'rate', u'rise']
[u'ship', u'line', u'trafalgar', u'anniversari']
[u'signific', u'flaw', u'bring', u'latham']
[u'sixer', u'sign', u'skipper', u'maher']
[u'smith', u'head', u'forward', u'clash', u'warrior']
[u'stock', u'ralli', u'follow', u'price', u'drop']
[u'storm', u'stop', u'england', u'chase', u'symond', u'inspir']
[u'studi', u'back', u'infrastructur', u'concern']
[u'sugar', u'industri', u'urg', u'lead', u'ethanol', u'push']
[u'support', u'grow', u'communiti', u'rescu', u'chopper']
[u'survey', u'highlight', u'high', u'employ', u'optim']
[u'tampo', u'corbi', u'legal', u'team', u'say', u'mother']
[u'tare', u'council', u'await', u'rate', u'rise', u'decis']
[u'tasmania', u'prolong', u'hous', u'sector', u'slump']
[u'salmon', u'industri', u'start', u'select', u'breed']
[u'teacher', u'stop', u'work', u'plan', u'shake']
[u'telstra', u'price', u'control', u'extend']
[u'temporari', u'contract', u'staff', u'demand', u'survey', u'reveal']
[u'truck', u'safeti', u'problem', u'report']
[u'time', u'australia', u'say', u'england', u'quick']
[u'time', u'right', u'nylex', u'clock', u'oper']
[u'seed', u'wimbledon', u'women', u'semi']
[u'transfield', u'boost', u'femal', u'worker']
[u'ugandan', u'presid', u'get', u'term']
[u'vaughan', u'readi', u'ash', u'storm']
[u'victorian', u'rooki', u'saddl', u'tour']
[u'victori', u'make', u'olymp', u'park', u'home']
[u'volunt', u'need', u'establish', u'safe', u'hous']
[u'wada', u'deadlin', u'loom', u'australian', u'sport']
[u'wagga', u'mourn', u'loss', u'local', u'plane', u'crash']
[u'water', u'bottl', u'compani', u'want', u'clarenc', u'water']
[u'white', u'lead', u'springbok', u'world']
[u'whoop', u'cough', u'case', u'rise']
[u'winemak', u'share', u'bounc', u'loss']
[u'winter', u'shower', u'uncommon']
[u'woman', u'charg', u'gambier', u'disturb']
[u'woman', u'shock', u'husband', u'kill', u'polic']
[u'woodsid', u'prais', u'timor', u'revenu', u'handl']
[u'woodward', u'make', u'chang', u'wellington', u'test']
[u'yudhoyono', u'offer', u'littl', u'prospect', u'corbi', u'pardon']
[u'zimbabw', u'releas', u'prison']
[u'gabor', u'sue', u'daughter']
[u'iraq', u'bush', u'say', u'troop', u'stay']
[u'children', u'dedic', u'commission']
[u'refus', u'sign', u'wada', u'anti', u'dope', u'code']
[u'refus', u'sign', u'wada', u'anti', u'dope', u'code']
[u'alcan', u'contractor', u'return', u'work', u'unclear']
[u'need', u'switch', u'intern', u'focus', u'beazley']
[u'ammonia', u'leak', u'spark', u'albani', u'emerg']
[u'ammonia', u'spill', u'forc', u'port', u'evacu']
[u'amnesti', u'find', u'aust', u'breach', u'human', u'right']
[u'anderson', u'welcom', u'bush', u'speech', u'iraq']
[u'anim', u'figur', u'high', u'crash', u'stat']
[u'arm', u'robber', u'attempt', u'rapist', u'escap', u'prison']
[u'armstrong', u'readi', u'long', u'summer']
[u'asbesto', u'insul', u'test', u'come', u'negat']
[u'asian', u'women', u'slave', u'court', u'tell']
[u'atsic', u'abolit', u'reflect', u'racist', u'countri']
[u'australian', u'children', u'parent', u'visa', u'extens']
[u'seek', u'compens', u'strand', u'shipment']
[u'ballack', u'saviour', u'germani', u'clinch']
[u'bank', u'resourc', u'sector', u'boost', u'market', u'gain']
[u'bare', u'bum', u'sheep', u'bind', u'commerci', u'flock']
[u'beazley', u'call', u'focus']
[u'bendigo', u'worker', u'head', u'melbourn', u'protest']
[u'arni', u'path', u'stuntmen', u'snub']
[u'blaze', u'tear', u'harvey', u'flat']
[u'bomb', u'proof', u'redesign', u'freedom', u'tower']
[u'bright', u'poki', u'light', u'fade', u'away']
[u'brogden', u'urg', u'quick', u'action', u'intersect']
[u'buderus', u'decis', u'today']
[u'bundaberg', u'hospit', u'fight', u'racial', u'abus', u'doctor']
[u'bush', u'iraq', u'speech', u'draw', u'career', u'audienc']
[u'cabinet', u'member', u'quit', u'amid', u'philippin', u'vote', u'scandal']
[u'drought', u'small', u'busi']
[u'canadian', u'expert', u'aim', u'youth', u'suicid', u'rate']
[u'cash', u'emerg', u'cater', u'guyra']
[u'catchment', u'welcom', u'rain', u'need']
[u'catfish', u'size', u'bear', u'catch', u'mekong', u'river']
[u'cayless', u'leav', u'rooster', u'helen']
[u'central', u'get', u'winter']
[u'centrelink', u'admit', u'doubl', u'dip', u'bank', u'account']
[u'chang', u'afoot', u'safeti', u'contest']
[u'china', u'toughen', u'coal', u'mine', u'industri']
[u'chines', u'journalist', u'lobbi', u'releas', u'jail']
[u'comet', u'crash', u'seek', u'build', u'block', u'life']
[u'commonwealth', u'overrul', u'uranium', u'expert']
[u'communiti', u'truck', u'driver', u'train']
[u'commut', u'train', u'crash', u'jakarta']
[u'concession', u'lot', u'plan', u'caus', u'stir']
[u'conflict', u'debat', u'erupt', u'eurobodalla']
[u'coron', u'hold', u'princ', u'highway', u'inquest']
[u'cosgrov', u'reflect', u'term', u'loom']
[u'council', u'await', u'trade', u'hour', u'survey', u'result']
[u'councillor', u'wind', u'farm', u'sit']
[u'councillor', u'worri', u'rate', u'pay', u'resid']
[u'council', u'seek', u'airport', u'ownership', u'review']
[u'countri', u'energi', u'honour', u'long', u'serv', u'worker']
[u'court', u'action', u'begin', u'canberra', u'bushfir']
[u'creditor', u'waverley', u'woollen', u'mill', u'rescu']
[u'crew', u'search', u'water', u'shore', u'miss', u'diver']
[u'crocker', u'question', u'stuart', u'role', u'morley', u'letter']
[u'csiro', u'import', u'predat', u'weed', u'battl']
[u'darwin', u'shiver', u'year', u'coldest', u'morn']
[u'dfat', u'criticis', u'go', u'wobbl', u'china']
[u'diner', u'bowl', u'toilet', u'theme', u'restaur']
[u'diver', u'bodi', u'river']
[u'doctor', u'disput', u'delay', u'oper']
[u'dog', u'threaten', u'colleg', u'stud', u'sheep']
[u'down', u'chopper', u'grind']
[u'driver', u'charg', u'drink', u'drive', u'pick']
[u'drug', u'compani', u'reject', u'ibuprofen', u'child', u'safeti', u'fear']
[u'drug', u'cash', u'steal', u'properti', u'seiz', u'polic']
[u'eastern', u'australia', u'drench', u'flood', u'rain']
[u'elder', u'woman', u'rap', u'home']
[u'electrocut', u'accid', u'prompt', u'electr', u'sector']
[u'expert', u'say', u'main', u'road', u'opinion', u'wont', u'cloud', u'judgment']
[u'faction', u'need', u'address', u'labor']
[u'famili', u'pay', u'time']
[u'farina', u'claim', u'lack', u'support']
[u'farina', u'resign', u'world', u'harper']
[u'farmer', u'pleas', u'costello', u'meet']
[u'farm', u'group', u'reject', u'truss', u'crop']
[u'report', u'major', u'hike', u'plantat', u'sale']
[u'ferguson', u'say', u'ronaldo', u'stay']
[u'delay', u'punish', u'team', u'fiasco']
[u'fifa', u'confirm', u'australia', u'asian']
[u'figur', u'prompt', u'bowel', u'cancer', u'screen', u'call']
[u'ant', u'clone', u'gender', u'battl']
[u'firm', u'develop', u'fuel', u'cell', u'batteri', u'power', u'robot']
[u'fischer', u'head', u'australia', u'thailand', u'institut']
[u'flood', u'forc', u'gold', u'coast', u'airport', u'closur']
[u'floodwat', u'north', u'west', u'town']
[u'fund', u'allow', u'barra', u'stock', u'boost']
[u'futur', u'climat', u'hotter', u'think', u'studi']
[u'vegi', u'grower', u'tell']
[u'gippsland', u'worker', u'join', u'protest']
[u'gladston', u'worker', u'hear', u'beazley', u'opposit']
[u'goldfield', u'educ', u'appoint', u'announc']
[u'goulburn', u'murray', u'worker', u'join', u'protest']
[u'govt', u'defend', u'centrelink', u'rule', u'singl']
[u'govt', u'employ', u'slam', u'protest']
[u'govt', u'review', u'possibl', u'afghanistan', u'troop']
[u'govt', u'shi', u'away', u'elect', u'promis', u'opposit']
[u'govt', u'tax', u'blame', u'boost', u'north', u'coast']
[u'govt', u'urg', u'focus', u'aquacultur']
[u'green', u'group', u'pleas', u'log', u'protest']
[u'green', u'demand', u'branch', u'line', u'privatis']
[u'group', u'back', u'govt', u'support', u'tougher', u'alcoa']
[u'grower', u'wood', u'duck', u'shoot']
[u'hang', u'glider', u'succumb', u'crash', u'injuri']
[u'harrison', u'consid', u'gold', u'coast']
[u'hayman', u'black', u'line']
[u'health', u'inquiri', u'visit', u'rockhampton']
[u'hear', u'find', u'councillor', u'breach', u'code', u'conduct']
[u'hewitt', u'feder', u'epic', u'showdown']
[u'home', u'hill', u'pioneer', u'communiti', u'bank', u'north']
[u'hors', u'centr', u'plan', u'boost', u'properti', u'market']
[u'hous', u'blaze', u'spark', u'safeti', u'audit']
[u'icac', u'find', u'staff', u'member', u'guilti', u'corrupt']
[u'prosecutor', u'darfur', u'crime', u'evid']
[u'indigen', u'languag', u'centr', u'make']
[u'indonesian', u'ambassador', u'elect', u'critic', u'aust']
[u'indonesia', u'reject', u'propos', u'east', u'timor']
[u'inquiri', u'hear', u'evid', u'patel', u'patient']
[u'investig', u'launch', u'shop', u'blaze']
[u'ralli', u'gain', u'pace']
[u'ralli', u'underway', u'melbourn']
[u'isra', u'forc', u'strike', u'gaza']
[u'isra', u'armi', u'seal', u'gaza', u'strip']
[u'slide']
[u'jondaryan', u'council', u'alloc', u'water', u'reservoir', u'fund']
[u'kennett', u'apologis', u'latham', u'polar', u'remark']
[u'labor', u'wont', u'check', u'knicker', u'cloth', u'line']
[u'lake', u'burley', u'griffin', u'irrig', u'water', u'restrict']
[u'legal', u'action', u'baxter', u'detent', u'like', u'say']
[u'lifetim', u'father', u'crippl', u'toddler']
[u'lismor', u'flood', u'alert', u'downgrad', u'rain', u'eas']
[u'lismor', u'resid', u'evacu', u'ahead', u'flood', u'peak']
[u'liverpool', u'play', u'world', u'club', u'champ', u'say']
[u'live', u'sheep', u'trade', u'closer', u'resumpt']
[u'local', u'photograph', u'snap', u'churchil', u'trust']
[u'lower', u'murray', u'water', u'custom', u'record', u'water']
[u'bear', u'offici', u'confirm']
[u'malthous', u'slam', u'stanc', u'anti', u'dope', u'code']
[u'employ', u'prepar', u'super', u'chang']
[u'maroochi', u'council', u'deliv', u'infrastructur', u'focus']
[u'maywald', u'mcewen', u'reject', u'ashbourn', u'open', u'inquiri', u'call']
[u'meet', u'hear', u'hospit', u'plan']
[u'say', u'plan', u'reclassifi', u'highway', u'absurd']
[u'face', u'bundaberg', u'hospit', u'inquiri']
[u'naracoort', u'lucindal', u'council', u'plan', u'rate', u'rise']
[u'nation', u'endors', u'racv', u'countri', u'road', u'plan']
[u'nativ', u'titl', u'tribun', u'support', u'ngaanyatjarra']
[u'urg', u'pierc', u'creek', u'hous']
[u'owner', u'wilder', u'park']
[u'polici', u'address', u'environment', u'vandal']
[u'northern', u'gold', u'coast', u'brace', u'flood']
[u'address', u'asic', u'concern']
[u'take', u'australia', u'appl']
[u'oppn', u'vow', u'increas', u'pressur', u'govt']
[u'patel', u'audit', u'look', u'file', u'say', u'support', u'group']
[u'patel', u'patient', u'tell', u'hernia', u'surgeri', u'infect']
[u'peopl', u'evacu', u'floodwat', u'rise']
[u'phillip', u'pledg', u'goal', u'haul', u'villa']
[u'plane', u'trigger', u'secur', u'alert', u'washington']
[u'plan', u'afoot', u'rail', u'station', u'develop']
[u'plan', u'boost', u'juvenil', u'justic', u'staff', u'skill']
[u'player', u'plan', u'lengthen', u'grand', u'slam']
[u'polic', u'chief', u'defend', u'offic', u'riot', u'fallout']
[u'polic', u'investig', u'flour', u'blaze']
[u'post', u'mortem', u'find', u'cliff', u'fall', u'caus', u'tourist', u'death']
[u'power', u'provid', u'reflect', u'mirror', u'plan']
[u'princ', u'william', u'touch']
[u'probe', u'give', u'clear', u'alic', u'airport', u'secur']
[u'protest', u'tell', u'concern', u'liber']
[u'psychiatrist', u'receiv', u'month', u'practis']
[u'nation', u'search', u'dedic', u'presid']
[u'worker', u'voic', u'anger', u'chang']
[u'rain', u'delay', u'play', u'wimbledon']
[u'rain', u'offer', u'hope', u'grain', u'grower']
[u'rain', u'reliev', u'drought', u'burden', u'outback']
[u'rathbon', u'sign', u'brumbi']
[u'report', u'highlight', u'welcom', u'dairi', u'boost']
[u'rice', u'fri', u'iranian', u'boyfriend', u'lawmak']
[u'riverland', u'join', u'protest']
[u'road', u'death', u'prompt', u'speed', u'limit', u'rethink']
[u'rumsfeld', u'prais', u'wood', u'episod']
[u'russian', u'progress', u'cargo', u'ship', u'correct', u'orbit']
[u'sailor', u'expect', u'french', u'test']
[u'opposit', u'seiz', u'hospit', u'report']
[u'sculptor', u'work', u'nation', u'prize']
[u'search', u'suspend', u'coupl', u'miss', u'floodwat']
[u'busi', u'region', u'flood', u'alert']
[u'sewerag', u'scheme', u'decis', u'shock', u'communiti', u'group']
[u'south', u'africa', u'zuma', u'appear', u'corrupt', u'charg']
[u'spain', u'approv', u'marriag']
[u'springborg', u'attack', u'silli', u'townsvill']
[u'stanhop', u'critic', u'alp', u'silenc', u'atsic', u'demis']
[u'street', u'closur', u'divid', u'council']
[u'studi', u'find', u'percent', u'chang', u'cours']
[u'studi', u'link', u'smoke', u'infect']
[u'studi', u'prompt', u'ibuprofen', u'warn', u'kid']
[u'surf', u'local', u'swim', u'pool']
[u'tare', u'lose', u'rate', u'rise']
[u'astronom', u'join', u'nasa', u'comet', u'mission']
[u'taxi', u'face', u'compulsori']
[u'bird', u'prepar', u'tough', u'clash', u'phoenix']
[u'telstra', u'competitor', u'servic', u'inferior', u'accc']
[u'thousand', u'march', u'brisban', u'reform']
[u'thousand', u'march', u'perth', u'protest', u'reform', u'plan']
[u'thousand', u'territorian', u'ralli', u'agenda']
[u'thousand', u'protest', u'chang']
[u'thwait', u'water', u'author', u'board']
[u'time', u'run', u'fmit', u'vote']
[u'torrenti', u'rain', u'claim', u'live', u'india']
[u'townsvill', u'tap', u'olymp', u'wast']
[u'tripl', u'line', u'stand', u'region', u'servic']
[u'trucki', u'group', u'question', u'safeti', u'claim']
[u'miss', u'flash', u'flood']
[u'miss', u'flood', u'hit', u'gold', u'coast']
[u'envoy', u'meet', u'mugab', u'evict']
[u'union', u'join', u'forc', u'opposit', u'plan']
[u'unrest', u'assault', u'report', u'risdon', u'jail']
[u'unrest', u'threaten', u'lowest', u'bidder', u'rail', u'contract']
[u'untru', u'swear', u'claim', u'upset', u'hayden']
[u'chopper', u'wreckag', u'bodi', u'recov']
[u'general', u'defend', u'guantanamo', u'strategi']
[u'speak', u'rebel', u'iraq', u'minist']
[u'stock', u'close', u'lower']
[u'vegi', u'grower', u'hold', u'nation', u'crisi', u'meet']
[u'venezuela', u'outlin', u'discount', u'plan']
[u'venus', u'send', u'warn', u'sharapova']
[u'wake', u'hold', u'atsic', u'offici', u'close']
[u'walker', u'injuri', u'self', u'inflict', u'coron']
[u'wast', u'site', u'assess', u'grant', u'offer']
[u'western', u'flood', u'watch']
[u'white', u'supremacist', u'group', u'aim', u'creat', u'chao']
[u'cathedr', u'face', u'demolit']
[u'wine', u'industri', u'face', u'tough', u'time']
[u'wollondilli', u'council', u'get', u'rate', u'rise']
[u'woman', u'jail', u'vicious', u'secur', u'guard', u'stab']
[u'worker', u'converg', u'adelaid', u'protest']
[u'york', u'arriv', u'australia']
[u'arrest', u'suspect', u'involv', u'bali']
[u'afghanistan', u'appeal', u'aust', u'troop']
[u'allenbi', u'make', u'bright', u'start', u'western', u'open']
[u'queri', u'train', u'time', u'deal', u'doctor']
[u'arsenic', u'concern', u'prompt', u'search', u'water', u'suppli']
[u'aussi', u'promis', u'start', u'match', u'play', u'champ']
[u'aussi', u'readi', u'peak', u'england', u'pont']
[u'backpack', u'rule', u'effect']
[u'bail', u'refus', u'policeman', u'face', u'charg']
[u'ballarat', u'warn', u'wast', u'transport', u'possibl']
[u'baxter', u'psychologist', u'unregist', u'letter', u'reveal']
[u'beazley', u'deni', u'european', u'jaunt']
[u'confirm', u'million', u'neptun', u'invest']
[u'biki', u'bowl', u'club', u'futur', u'hang', u'balanc']
[u'black', u'cap', u'tour', u'zimbabw', u'ahead']
[u'blair', u'hail', u'increas', u'group', u'cool']
[u'bomb', u'blast', u'kill', u'southern', u'russia']
[u'brando', u'memorabilia', u'sell', u'million']
[u'breakthrough', u'cancer', u'fight', u'agent', u'develop']
[u'britain', u'take', u'presid']
[u'brothel', u'propon', u'refer', u'council', u'icac']
[u'bundaberg', u'inquiri', u'paper', u'call', u'health']
[u'busi', u'chamber', u'lament', u'colli', u'loss']
[u'businessman', u'face', u'court', u'wife', u'crash', u'death']
[u'busi', u'wont', u'fight', u'wage', u'case']
[u'go', u'femal', u'councillor']
[u'capricornia', u'address', u'protest']
[u'carer', u'help', u'hand']
[u'carr', u'govern', u'slip', u'poll']
[u'carr', u'stand', u'firm', u'costello', u'threat']
[u'casa', u'urg', u'review', u'medic', u'certif']
[u'chamber', u'music', u'festiv', u'start', u'today']
[u'chamber', u'urg', u'mall', u'revamp']
[u'chief', u'defenc', u'forc', u'retir']
[u'chifley', u'polic', u'number', u'address', u'sculli']
[u'clean', u'begin', u'lismor', u'downpour']
[u'contract', u'woe', u'see', u'hamper', u'push', u'attract']
[u'cosgrov', u'look', u'forward', u'life']
[u'cosgrov', u'wave', u'goodby', u'troop']
[u'costello', u'flag', u'cautious', u'senat', u'major']
[u'council', u'agre', u'narooma', u'plan', u'chang']
[u'council', u'clarif', u'label', u'bizarr']
[u'council', u'face', u'truck', u'park', u'quandari']
[u'council', u'highlight', u'strong', u'local', u'economi']
[u'council', u'offer', u'offic', u'assur']
[u'council', u'prompt', u'meet', u'chang']
[u'craig', u'want', u'final', u'crow']
[u'curtain', u'come', u'bolshoi', u'revamp']
[u'dame', u'elisabeth', u'name', u'victorian', u'year']
[u'date', u'terror', u'trial']
[u'davenport', u'finish', u'mauresmo', u'reach', u'final']
[u'davico', u'join', u'knight']
[u'defector', u'dell', u'welcom', u'crowd', u'franc']
[u'defector', u'canada', u'echo', u'claim', u'chines']
[u'desalin', u'propon', u'unhappi', u'viabil']
[u'doubt', u'cast', u'atsic', u'replac']
[u'doubt', u'cast', u'poki', u'plan', u'region', u'impact']
[u'doubt', u'rais', u'workplac', u'fatigu', u'plan']
[u'readi', u'electron', u'tag', u'issu']
[u'drink', u'driver', u'appeal', u'year', u'sentenc']
[u'driver', u'record']
[u'drought', u'plan', u'includ', u'high', u'tech', u'water', u'recycl']
[u'drug', u'messag', u'sink', u'public']
[u'earli', u'winter', u'sale', u'boost', u'nation', u'retail', u'figur']
[u'elder', u'woman', u'hospitalis', u'rape', u'attack']
[u'england', u'australia', u'trial', u'rule', u'chang']
[u'appl', u'action']
[u'farmer', u'market', u'fund', u'hall', u'revamp']
[u'farmer', u'suppli', u'bonlac', u'price', u'boost']
[u'figur', u'highlight', u'local', u'tourism', u'import']
[u'fingleton', u'deserv', u'cash', u'compens', u'liber']
[u'fish', u'group', u'offer', u'reduct', u'support']
[u'charg', u'heroin', u'bust']
[u'flood', u'clean', u'begin']
[u'flood', u'claim']
[u'floodwat', u'reced', u'north', u'coast']
[u'forestri', u'union', u'join', u'protest']
[u'worker', u'back', u'local', u'legal', u'brothel']
[u'time', u'year', u'feder']
[u'french', u'gear', u'effort']
[u'general', u'store', u'owner', u'name', u'territorian', u'year']
[u'german', u'parliament', u'back', u'earli', u'elect', u'plan']
[u'glazer', u'tell', u'ferguson', u'shop']
[u'gold', u'coast', u'council', u'fear', u'tourism', u'backlash']
[u'govern', u'face', u'bushfir', u'suit']
[u'govt', u'announc', u'airport', u'secur', u'team']
[u'govt', u'announc', u'kiama', u'bomaderri', u'rail', u'electrif']
[u'govt', u'ask', u'review', u'indigen', u'council', u'financi']
[u'govt', u'discuss', u'wool', u'mill', u'rescu', u'deal']
[u'govt', u'urg', u'step', u'anti', u'whale', u'action']
[u'green', u'reflect', u'senat', u'power']
[u'gregan', u'call', u'merci', u'weari', u'french']
[u'health', u'council', u'joke', u'doctor', u'tell', u'inquiri']
[u'hewitt', u'faze', u'feder', u'challeng']
[u'high', u'perform', u'polic', u'car', u'albani']
[u'hird', u'support', u'afl', u'drug', u'stanc']
[u'hockey', u'ticket', u'sting', u'net', u'canadian', u'murder']
[u'hotel', u'director', u'plead', u'guilti', u'electrocut']
[u'hundr', u'honour', u'digger', u'state', u'funer']
[u'hundr', u'like', u'attend', u'meet']
[u'indigen', u'leader', u'lament', u'atsic', u'loss']
[u'injuri', u'forc', u'shamard', u'retir']
[u'inquiri', u'give', u'mackay', u'health']
[u'inquiri', u'tell', u'rocki', u'hospit', u'woe']
[u'inter', u'cancel', u'vieri', u'contract']
[u'isra', u'armi', u'reject', u'claim', u'soldier', u'kidnap']
[u'jackson', u'take', u'break', u'bahrain']
[u'jam', u'hardi', u'payout', u'cover', u'month']
[u'junior', u'black', u'score', u'late', u'australia']
[u'juvenil', u'detent', u'centr', u'slat']
[u'land', u'council', u'question', u'govt', u'nativ', u'titl', u'stanc']
[u'minut', u'order', u'mask', u'choppi', u'manufactur']
[u'liber', u'highlight', u'bendigo', u'elect', u'issu']
[u'lion', u'continu', u'attack', u'umaga', u'odriscol']
[u'lion', u'chang', u'demon', u'clash']
[u'lismor', u'declar', u'disast', u'zone']
[u'lose', u'hard', u'drink', u'myth', u'aussi', u'tell']
[u'lucki', u'shoot', u'down', u'chopper', u'afghanistan']
[u'malthous', u'keen', u'test', u'young', u'magpi']
[u'attack', u'father', u'child', u'care', u'centr', u'carpark']
[u'avoid', u'jail', u'attempt', u'arrest']
[u'get', u'life', u'jail', u'stab', u'neighbour']
[u'man', u'bodi', u'near', u'flood', u'road']
[u'maroon', u'hope', u'carrol', u'prove', u'fit']
[u'mar', u'snicker', u'bar', u'recal', u'extort']
[u'mcgee', u'joust', u'tour', u'climber']
[u'medic', u'journal', u'back', u'babi', u'death', u'expert']
[u'merger', u'streamlin', u'control', u'land', u'manag']
[u'mini', u'cyclon', u'rip', u'tathra']
[u'minist', u'approv', u'hast', u'council', u'rate', u'rise']
[u'mistress', u'jail', u'tri', u'kill', u'lover', u'wife']
[u'wast', u'dump', u'detail', u'emerg']
[u'mother', u'sell', u'headspac', u'adspac']
[u'move', u'upgrad', u'rail', u'underpass']
[u'nelson', u'hit', u'student', u'protest']
[u'newcastl', u'fanci', u'unit', u'smith']
[u'director', u'appoint', u'fmit']
[u'facil', u'hail', u'step', u'forward', u'marin']
[u'member', u'join', u'council', u'conduct', u'committe']
[u'senat', u'differ', u'telstra', u'outlook']
[u'water', u'author', u'face', u'econom', u'develop']
[u'find', u'fertilis', u'regim', u'lack']
[u'nightclub', u'curfew', u'begin', u'tonight']
[u'news', u'chief', u'quit']
[u'water', u'irrig']
[u'sign', u'lotus', u'glen', u'escap']
[u'judiciari', u'reject', u'cross', u'appeal']
[u'secur', u'right', u'deal']
[u'teacher', u'stop', u'work', u'campaign']
[u'accus', u'uranium', u'doubl', u'standard']
[u'nucifora', u'take', u'rein', u'auckland']
[u'bowl', u'underarm', u'cherri', u'trade']
[u'ocean', u'speci', u'risk', u'global', u'warm']
[u'odd', u'stack', u'tire', u'french', u'say', u'bok', u'coach']
[u'turn', u'wallac']
[u'opal', u'readi', u'china', u'tour']
[u'opposit', u'senat', u'gear', u'polit', u'fight']
[u'pie', u'trump', u'powerless', u'port']
[u'pirat', u'hijack', u'ship']
[u'polic', u'chang', u'posit', u'mcgee', u'charg']
[u'polic', u'issu', u'firework', u'warn']
[u'polic', u'look', u'forward']
[u'polic', u'seiz', u'drug', u'accus', u'properti']
[u'princ', u'expect', u'eagl', u'intimid']
[u'raikkonen', u'hop', u'engin', u'failur']
[u'rain', u'lake', u'illawarra', u'entranc', u'reopen']
[u'rain', u'wont', u'affect', u'drought', u'assist', u'packag']
[u'ralli', u'swell', u'union', u'step', u'anti', u'campaign']
[u'random', u'drug', u'test', u'law', u'kick']
[u'rate', u'rise', u'reject', u'prompt', u'council', u'servic']
[u'region', u'resid', u'remind', u'organ', u'donat']
[u'research', u'find', u'mobil', u'phone', u'fire', u'servo']
[u'riverina', u'mourn', u'teacher', u'loss']
[u'rockhampton', u'water', u'charg', u'start', u'today']
[u'rome', u'work', u'hors', u'wear', u'underp']
[u'rural', u'colleg', u'amalgam']
[u'ask', u'state', u'plastic', u'bag']
[u'scientist', u'hail', u'einstein', u'theori', u'year']
[u'scope', u'studi', u'help', u'govt', u'decid', u'telstra', u'sale']
[u'seal', u'death', u'prompt', u'aquacultur', u'probe']
[u'search', u'continu', u'miss', u'gold', u'coast']
[u'search', u'suspend', u'miss', u'coupl']
[u'senat', u'major', u'govt']
[u'senat', u'vow', u'famili']
[u'sentenc', u'submiss', u'hear']
[u'share', u'wake', u'stock', u'fall']
[u'shark', u'number', u'protect']
[u'specialist', u'appoint', u'royal', u'hobart']
[u'sponsorship', u'rule', u'lara', u'tour']
[u'state', u'miss', u'fertilis', u'deadlin']
[u'statist', u'fewer', u'work', u'peopl']
[u'stepfath', u'jail', u'abus']
[u'strong', u'current', u'hamper', u'search', u'miss', u'coupl']
[u'super', u'choic', u'chang', u'worri', u'chief']
[u'target', u'peril', u'john', u'warn']
[u'cut', u'super', u'choic', u'effect']
[u'teen', u'sentenc', u'meat', u'cleaver', u'attack']
[u'thailand', u'boost', u'secur', u'teacher']
[u'charg', u'fruiter', u'attempt', u'murder']
[u'thousand', u'attend', u'sydney', u'ralli', u'chang']
[u'thousand', u'expect', u'visit', u'alic']
[u'thousand', u'ralli', u'chang']
[u'threat', u'forc', u'mar', u'bar', u'snicker', u'shelv']
[u'dead', u'zimbabw', u'township', u'evict', u'amnesti']
[u'commit', u'red']
[u'tour', u'franc', u'stage', u'stage']
[u'tourism', u'manag', u'get', u'slide', u'assur']
[u'tourist', u'help', u'unearth', u'dinosaur', u'fossil']
[u'tour', u'promenad', u'armstrong', u'want', u'enjoy']
[u'tricki', u'tiger', u'swamp', u'eagl']
[u'turkish', u'polic', u'kill', u'suspect', u'bomber']
[u'union', u'say', u'ralli', u'send', u'clear', u'messag', u'govt']
[u'probe', u'iranian', u'hostag', u'crisi']
[u'vaughan', u'play', u'feel', u'australia']
[u'vegi', u'farmer', u'urg', u'diversifi']
[u'vendor', u'respons', u'build', u'approv', u'drop']
[u'virgin', u'cut', u'rout']
[u'volunt', u'fireman', u'accus', u'set', u'hous']
[u'wada', u'attack', u'failur', u'sign', u'code']
[u'wagga', u'polic', u'chief', u'head', u'dubbo']
[u'crop', u'moratorium', u'remain']
[u'whoop', u'cough', u'case', u'trigger', u'health', u'warn']
[u'widow', u'plead', u'patel', u'extradit']
[u'wilko', u'lion', u'say', u'woodward']
[u'woman', u'jail', u'attempt', u'murder']
[u'worker', u'protest', u'chang']
[u'worker', u'industri', u'relat', u'concern']
[u'work', u'start', u'polic', u'shopfront']
[u'world', u'heritag', u'threat', u'identifi']
[u'ziggi', u'end', u'telstra', u'term']
[u'seiz', u'comput', u'document', u'piraci', u'sting']
[u'black', u'inflict', u'record', u'thrash', u'lion']
[u'alonso', u'pole', u'ax', u'rival']
[u'armstrong', u'ullrich', u'pois', u'time', u'trial', u'battl']
[u'aussi', u'moni', u'coach', u'french', u'rugbi', u'leagu', u'team']
[u'aussi', u'qualifi', u'wimbledon', u'doubl', u'final']
[u'aussi', u'star', u'bogut', u'sign', u'buck', u'contract']
[u'australia', u'seek', u'zimbabw', u'cricket']
[u'grind', u'hewitt']
[u'bank', u'robber', u'shot', u'escap']
[u'battl', u'break', u'justic', u'retir']
[u'bodi', u'recov', u'swell', u'river']
[u'bodi', u'submerg', u'vehicl']
[u'bulldog', u'blow', u'chanc', u'leapfrog', u'storm']
[u'busi', u'group', u'flag', u'loss', u'amid', u'minimum', u'wage']
[u'greater', u'spend', u'flood', u'manag']
[u'claim', u'govt', u'fund', u'cut', u'fuel', u'failur', u'probe']
[u'compani', u'confid', u'uranium', u'mine', u'ahead']
[u'couch', u'surpris', u'leader', u'illinoi']
[u'councillor', u'demand', u'explan', u'approv']
[u'davenport', u'venus', u'seek', u'end', u'titl', u'drought']
[u'davenport', u'venus', u'seek', u'titl', u'drought']
[u'deplet', u'cowboy', u'strong', u'warrior']
[u'disput', u'gove', u'worker', u'walk']
[u'downer', u'press', u'zimbabw', u'boycott']
[u'eagl', u'hand', u'footbal', u'lesson']
[u'extort', u'threat', u'hit', u'food', u'manufactur']
[u'fan', u'win', u'aussi', u'final']
[u'fear', u'grow', u'miss', u'team', u'afghanistan']
[u'feder', u'happi', u'hewitt', u'quiet']
[u'ferguson', u'year', u'come', u'say', u'glazer']
[u'ferri', u'crash', u'sydney', u'harbour']
[u'flintoff', u'harmison', u'domin', u'australia']
[u'flood', u'crew', u'resum', u'search', u'miss', u'coupl']
[u'flood', u'insur', u'predict']
[u'arrest', u'break', u'hill', u'polic', u'oper']
[u'injur', u'sydney', u'harbour', u'ferri', u'crash']
[u'germani', u'open', u'world', u'wurst', u'museum']
[u'girl', u'releas', u'unharm', u'stand', u'end']
[u'govt', u'give', u'multi', u'million', u'dollar', u'lobster', u'farm', u'green']
[u'green', u'angri', u'communiti', u'exclus', u'precinct']
[u'hetherington', u'set', u'sorenstam', u'clash']
[u'higher', u'workload', u'hamper', u'ambul', u'respons', u'time']
[u'improv', u'consum', u'confid', u'boost', u'stock']
[u'ingal', u'aim', u'turn', u'tabl', u'team', u'mate']
[u'intern', u'recruit', u'child']
[u'interst', u'tourist', u'dead', u'cairn']
[u'isaac', u'newton', u'alchemi', u'note']
[u'johannesburg', u'live', u'concert']
[u'kangaroo', u'leap']
[u'kelli', u'edg', u'skaif', u'darwin']
[u'kelli', u'sieg', u'live', u'anniversari', u'celebr']
[u'liber', u'push', u'state', u'label', u'food']
[u'live', u'global', u'concert', u'seri']
[u'live', u'kick', u'japan']
[u'malnutrit', u'strike', u'african']
[u'crush', u'mine', u'accid']
[u'expect', u'face', u'hear', u'flatmat', u'death']
[u'kill', u'armidal', u'hous']
[u'remand', u'attempt', u'murder']
[u'marcher', u'gather', u'scotland', u'urg', u'action']
[u'nasa', u'take', u'comet', u'unlock', u'solar', u'system']
[u'negoti', u'continu', u'stand']
[u'nigeria', u'charg', u'polic', u'civilian', u'murder']
[u'nigeria', u'court', u'uphold', u'obasanjo', u'poll', u'victori']
[u'confid', u'vote', u'clear', u'germani', u'elect']
[u'plan', u'extend', u'chocol', u'bar', u'recal']
[u'passeng', u'kill', u'train', u'collid']
[u'pilot', u'tell', u'investig', u'runway']
[u'pittman', u'pari']
[u'poison', u'threat', u'forc', u'water', u'stock', u'shelv']
[u'polic', u'negoti', u'arm', u'hous', u'sieg']
[u'polic', u'search', u'prison', u'escap']
[u'polic', u'step', u'probe', u'chocol', u'poison']
[u'pope', u'send', u'messag', u'support', u'anti', u'poverti', u'ralli']
[u'psychiatrist', u'tell', u'threat', u'mcgee', u'trial']
[u'rail', u'author', u'pay', u'thousand', u'tilt', u'train', u'crash']
[u'record', u'easi', u'number', u'cruncher']
[u'resurrect', u'lion', u'demolish', u'demon']
[u'richmond', u'hang', u'nailbit']
[u'roadsid', u'random', u'drug', u'test', u'kick']
[u'roddick', u'strand', u'rain', u'hit', u'second', u'semi', u'final']
[u'rumford', u'european', u'open', u'hunt']
[u'russia', u'hail', u'resumpt', u'space', u'shuttl', u'flight']
[u'ruthless', u'feder', u'send', u'hewitt', u'pack']
[u'salvag', u'oper', u'launch', u'recov', u'luxuri']
[u'shield', u'blast', u'cruis', u'ridicul', u'rant']
[u'afghan', u'kill', u'bomb', u'attack', u'convoy']
[u'soul', u'star', u'luther', u'vandross', u'dead']
[u'speedster', u'licenc', u'suspend', u'spate', u'drive']
[u'stag', u'greatest', u'concert']
[u'suicid', u'blast', u'target', u'recruit']
[u'swan', u'push', u'save', u'melbourn', u'grandstand']
[u'health', u'offici', u'urg', u'council', u'join', u'plan']
[u'teen', u'charg', u'warburton', u'murder']
[u'thai', u'polic', u'releas', u'potenti', u'heroin', u'syndic']
[u'thunderbird', u'clear', u'phoenix']
[u'tiger', u'rooki', u'give', u'chanc', u'swan']
[u'tour', u'contend', u'ullrich', u'fall', u'train']
[u'turkish', u'polic', u'shoot', u'attempt', u'bomber']
[u'bodi', u'retriev', u'river']
[u'dead', u'austrian', u'train', u'crash']
[u'injur', u'outback', u'chopper', u'crash']
[u'kill', u'blast', u'turkish', u'train']
[u'uefa', u'reject', u'czech', u'club', u'champion', u'leagu', u'protest']
[u'govt', u'warn', u'smoker', u'ugli', u'impot']
[u'understrength', u'rooster', u'classi', u'knight']
[u'envoy', u'visit', u'zimbabw', u'homeless']
[u'union', u'state', u'warn', u'anti', u'campaign', u'spread']
[u'union', u'take', u'campaign', u'footi', u'fan']
[u'respect', u'italian', u'sovereignti']
[u'plan', u'bomb', u'compound', u'afghanistan']
[u'pursu', u'iranian', u'leader', u'past']
[u'probe', u'kill', u'iraqi', u'envoy', u'cousin']
[u'demand', u'stop', u'cane', u'toad', u'invas']
[u'wallabi', u'hold', u'brave', u'french']
[u'wimbledon', u'result']
[u'woman', u'slip', u'polic']
[u'gather', u'farewel', u'broadcast']
[u'abandon', u'penguin', u'singl', u'mother']
[u'polic', u'number', u'satisfactori', u'polic', u'chief']
[u'aid', u'deni', u'iranian', u'presid', u'involv', u'embassi']
[u'black', u'prais', u'half', u'carter']
[u'alleg', u'remark', u'marr', u'eel']
[u'argentina', u'win', u'world', u'final']
[u'aussi', u'huss', u'make', u'wimbledon', u'histori']
[u'aussi', u'women', u'toppl', u'lacross', u'championship']
[u'biggest', u'name', u'music', u'play', u'live', u'concert']
[u'bjorn', u'control', u'european', u'open']
[u'black', u'huber', u'women', u'doubl', u'titl']
[u'bogut', u'share', u'wealth']
[u'botan', u'garden', u'master', u'plan', u'unveil']
[u'boycott', u'call', u'self', u'defeat', u'mcdonald']
[u'britain', u'concern', u'iraqi', u'polic', u'abus', u'report']
[u'canada', u'shock', u'puma']
[u'captor', u'face', u'forc', u'wood']
[u'carrol', u'unscath', u'bronco', u'triumph']
[u'chanderpaul', u'get', u'late', u'world', u'squad']
[u'commonwealth', u'seek', u'advic', u'uranium']
[u'craig', u'bellami', u'billi', u'slater', u'mark', u'geyer', u'steve']
[u'crowd', u'gather', u'mark', u'reserv', u'forc']
[u'davenport']
[u'dont', u'prop', u'farm', u'tanner']
[u'dump', u'expans', u'anger', u'blue', u'mountain', u'resid']
[u'eddi', u'jone', u'chris', u'whitak', u'georg', u'gregan', u'chris']
[u'egyptian', u'ambassador', u'iraq', u'kidnap', u'report']
[u'england', u'australia', u'final']
[u'probe', u'west', u'gate', u'spill']
[u'estonian', u'snatch', u'world', u'wife', u'carri', u'titl']
[u'fatal', u'motorbik', u'collis', u'investig']
[u'year', u'wait', u'year', u'old', u'legal', u'hear']
[u'flood', u'clean', u'prompt', u'contamin', u'warn']
[u'furyk', u'curti', u'share', u'shoot', u'lead', u'western']
[u'climat', u'chang', u'agreement', u'expect', u'chirac']
[u'gaza', u'milit', u'storm', u'build', u'job', u'protest']
[u'gerri', u'collin', u'wrap', u'wallabi', u'victori']
[u'glenn', u'mitchel', u'wrap', u'open']
[u'govt', u'pressur', u'union']
[u'govt', u'threaten', u'withhold', u'school', u'fund']
[u'graham', u'murray', u'toni', u'kemp', u'interview']
[u'grandstand', u'speak', u'brian', u'smith']
[u'grandstand', u'speak', u'michael', u'hagan']
[u'hawk', u'cat']
[u'holden', u'clean', u'hide', u'valley']
[u'howard', u'post', u'anderson', u'ministri', u'unveil']
[u'hold', u'edg', u'darwin']
[u'hydrogen', u'power', u'plane', u'begin', u'test', u'flight']
[u'isra', u'cabinet', u'reject', u'month', u'gaza', u'pullout']
[u'job', u'growth', u'finish', u'financi', u'year', u'high']
[u'john', u'lang', u'matthew', u'elliott', u'interview']
[u'kelli', u'glenrowan', u'make', u'heritag', u'list']
[u'kestrel', u'easili', u'oriol']
[u'kittyhawk', u'carrier', u'arriv', u'sydney', u'harbour']
[u'labor', u'dismiss', u'attack', u'campaign']
[u'labor', u'prove', u'latham', u'wrong']
[u'labor', u'farm', u'subsidi', u'critic', u'ludicr']
[u'lindsay', u'tanner', u'push', u'overhaul']
[u'liverpool', u'sign', u'zenden']
[u'arrest', u'warship', u'protest']
[u'charg', u'brisban', u'stand']
[u'charg', u'stab', u'murder']
[u'kill', u'canberra', u'collis']
[u'mar', u'snicker', u'threat', u'spark', u'packag', u'rethink']
[u'mcewen', u'tour', u'sprinter', u'stage', u'win']
[u'mcgrath', u'singl', u'classi', u'harmison']
[u'medicar', u'relat', u'wood', u'retir', u'support']
[u'michael', u'hagan', u'interview']
[u'michelin', u'team', u'offer', u'extra', u'race', u'indianapoli']
[u'miln', u'rescu', u'saint', u'thriller']
[u'parish', u'merger', u'option', u'archbishop']
[u'mortlock', u'doubt', u'springbok', u'test']
[u'kill', u'stab']
[u'navratilova', u'fail', u'overthrow', u'king']
[u'neighbour', u'drag', u'perth']
[u'farmer', u'experi', u'nlis', u'delay']
[u'odriscol', u'buri', u'hatchet', u'umaga']
[u'remain', u'apostl', u'collaps']
[u'parent', u'claim', u'soldier', u'son', u'death']
[u'patrick', u'second', u'femal', u'pole', u'winner', u'indi']
[u'pavlich', u'spree', u'fail', u'stop', u'crow']
[u'perri', u'shire', u'join', u'drought', u'declar', u'list']
[u'announc', u'minor', u'reshuffl', u'frontbench']
[u'polic', u'seek', u'help', u'investig', u'shop']
[u'pont', u'eager', u'decid']
[u'pope', u'urg', u'help', u'africa']
[u'ray', u'york', u'studi', u'trip', u'defend']
[u'region', u'doctor', u'bond', u'concern']
[u'remot', u'communiti', u'start', u'work', u'dole']
[u'right', u'group', u'skew', u'mules', u'debat', u'minist']
[u'roddick', u'aim', u'stop', u'feder', u'trick']
[u'roddick', u'get', u'chanc', u'reveng', u'feder']
[u'roger', u'uphil', u'struggl', u'tour']
[u'safer', u'chocol', u'pack', u'like', u'chocol']
[u'opposit', u'press', u'ashbourn', u'inquiri']
[u'polic', u'abort', u'high', u'speed', u'pursuit']
[u'satellit', u'track', u'pygmi', u'eleph', u'walk']
[u'search', u'miss', u'teenag']
[u'senior', u'qaeda', u'milit', u'kill', u'saudi', u'clash']
[u'shock', u'therapi', u'compliant', u'right', u'commission']
[u'sorenstam', u'see', u'hetherington', u'challeng']
[u'sorenstam', u'webb', u'exit', u'match', u'play', u'event']
[u'specul', u'continu', u'robinho', u'real', u'transfer']
[u'stack', u'collaps', u'leav', u'apostl', u'stand']
[u'swiss', u'death', u'citizen', u'iraq']
[u'talk', u'wont', u'resolv', u'teacher', u'disput', u'union']
[u'timores', u'presid', u'begin', u'nation', u'tour']
[u'train', u'bomb', u'kill', u'turkey']
[u'kill', u'road', u'overnight']
[u'ullrich', u'moral', u'suffer', u'blow', u'time', u'trial']
[u'attorney', u'general', u'make', u'surpris', u'baghdad', u'visit']
[u'comet', u'probe', u'releas']
[u'venus', u'get', u'game']
[u'venus', u'win', u'wimbledon', u'titl']
[u'vodka', u'death', u'lead', u'putin', u'monopoli']
[u'go', u'banana', u'cane', u'toad', u'stowaway']
[u'wayn', u'bennett', u'berrick', u'barn', u'karmichael', u'hunt']
[u'welfar', u'bodi', u'wait', u'watch', u'homeless', u'plan']
[u'defend', u'lag', u'aid', u'treatment', u'target']
[u'wilkinson', u'clear', u'injuri']
[u'wilko', u'expect', u'miss', u'final', u'lion', u'test']
[u'wimbledon', u'result']
[u'woodbridg', u'bow', u'lose', u'note']
[u'wood', u'negoti', u'ransom', u'hop']
[u'woolford', u'doubl', u'ensur', u'victori', u'canberra']
[u'world', u'star', u'global', u'poverti']
[u'zabriski', u'yellow', u'armstrong', u'hit', u'ullrich']
[u'vegi', u'plant', u'announc', u'north', u'west']
[u'lobster', u'farm', u'moot', u'tweed', u'head']
[u'aborigin', u'leader', u'lose', u'battl', u'cancer']
[u'adelaid', u'gear', u'naidoc', u'ball']
[u'african', u'leader', u'gather', u'ahead', u'meet']
[u'life', u'ocean', u'wave', u'skint']
[u'eye', u'leader']
[u'alonso', u'hand', u'renault', u'home', u'franc']
[u'narrow', u'mind', u'drought', u'help', u'senat', u'say']
[u'unapp', u'tradit', u'base', u'studi']
[u'apostl', u'collaps', u'expect', u'hurt', u'tourism']
[u'art', u'bodi', u'nervous', u'busi', u'fund', u'dwindl']
[u'art', u'compani', u'struggl']
[u'astrologist', u'sue', u'nasa', u'comet', u'crash']
[u'black']
[u'aust', u'aid', u'terror', u'suspect', u'target', u'agenc']
[u'australian', u'front', u'bali', u'court', u'drug', u'charg']
[u'aust', u'scientist', u'play', u'role', u'comet', u'mission']
[u'baena', u'win', u'match', u'play', u'final']
[u'beatti', u'futur', u'feder', u'polit']
[u'boonen', u'throw', u'gauntlet']
[u'boost', u'age', u'care', u'facil']
[u'brawl', u'threaten', u'darwin', u'match']
[u'bush', u'ponder', u'global', u'warm', u'debat']
[u'busi', u'week', u'ahead', u'tribun']
[u'cabinet', u'hear', u'glenormiston', u'colleg', u'submiss']
[u'cathol', u'medic', u'school', u'deni', u'etho', u'compromis']
[u'chines', u'mine', u'visit', u'boost', u'mackay', u'industri']
[u'cleal', u'head', u'judiciari', u'list']
[u'clone', u'committe', u'meet']
[u'cobb', u'role', u'bench']
[u'coff', u'anim', u'lend', u'hand', u'pest', u'confer']
[u'cole', u'recal', u'spring', u'water', u'alga']
[u'committe', u'debat', u'screen', u'oversea', u'doctor']
[u'committe', u'consid', u'way', u'lift', u'aquacultur']
[u'communiti', u'ralli', u'victim']
[u'corbi', u'case', u'reopen']
[u'corbi', u'judg', u'hear', u'evid']
[u'council', u'plan', u'user', u'pay', u'scheme', u'commerci']
[u'council', u'back', u'naidoc', u'week', u'activ']
[u'council', u'assess', u'flood', u'damag', u'cost']
[u'council', u'vote', u'beach']
[u'coupl', u'say', u'mobil', u'phone']
[u'crowd', u'injur', u'showground', u'mishap']
[u'csiro', u'accus', u'dollar', u'drive']
[u'defenc', u'chief', u'pledg', u'elimin', u'bulli']
[u'dinamo', u'zagreb', u'sign', u'bosnar']
[u'doctor', u'guilti', u'forg', u'prescript', u'treat']
[u'doctor', u'criticis', u'access', u'indigen', u'health']
[u'dubbo', u'trucki', u'succumb', u'injuri']
[u'egypt', u'call', u'releas', u'kidnap', u'diplomat']
[u'timor', u'presid', u'campaign', u'program', u'fund']
[u'evid', u'law', u'review']
[u'extort', u'threat', u'stop', u'snicker', u'mar']
[u'farmer', u'maintain', u'campaign', u'mcdonald', u'snub']
[u'farmer', u'trucki', u'target', u'fire', u'class']
[u'fatal', u'hous', u'blaze', u'consid', u'suspici']
[u'fatal', u'level', u'cross', u'crash', u'prompt', u'polic', u'warn']
[u'fear', u'student', u'union', u'issu', u'threaten', u'game']
[u'feder', u'join', u'wimbledon', u'great']
[u'feder', u'join', u'wimbledon', u'great', u'straight']
[u'feder', u'set', u'sight', u'sampra', u'record']
[u'ferri', u'seal', u'european', u'open', u'victori']
[u'financi', u'pressur', u'strain', u'region', u'airlin']
[u'fingleton', u'decis', u'lead', u'legal', u'revamp']
[u'fletcher', u'lose', u'captainci', u'race', u'slur']
[u'food', u'retail', u'split', u'get', u'bog']
[u'societi', u'staffer', u'guilti', u'fraud']
[u'liber', u'media', u'advis', u'stand']
[u'urg', u'grant', u'loan']
[u'fossett', u'enact', u'tran', u'atlant', u'flight']
[u'work', u'stoppag', u'rule']
[u'furyk', u'hold', u'wood', u'western', u'open']
[u'geologist', u'predict', u'uncertain', u'futur', u'apostl']
[u'gerrard', u'bust', u'rais', u'doubt', u'liverpool', u'futur']
[u'giant', u'bok', u'pack', u'aim', u'steamrol', u'wallabi']
[u'glen', u'inn', u'singl', u'parent', u'drop', u'centr']
[u'govt', u'appoint', u'review', u'panel']
[u'govt', u'defend', u'downscal', u'random', u'breath', u'test']
[u'govt', u'dismiss', u'airport', u'secur', u'outcri']
[u'govt', u'hand', u'forest', u'fund']
[u'govt', u'urg', u'boost', u'cancer', u'patient', u'travel', u'subsidi']
[u'grain', u'grower', u'look', u'blue', u'sky']
[u'grave', u'brutal', u'paedophil', u'jail', u'year']
[u'greek', u'offici', u'turkey', u'visit']
[u'greenpeac', u'call', u'hazelwood', u'power', u'station']
[u'green', u'throw', u'challeng', u'mundin']
[u'run', u'rife', u'report', u'reveal']
[u'health', u'fear', u'air', u'plan', u'batteri', u'recycl']
[u'heritag', u'trail', u'honour']
[u'highway', u'mishap', u'leav', u'wodonga', u'dead']
[u'home', u'owner', u'meet', u'landslid', u'miseri']
[u'hous', u'spark', u'safeti', u'warn']
[u'houston', u'begin', u'defenc', u'chief']
[u'set', u'asia', u'pacif', u'base', u'brisban']
[u'independ', u'bodi', u'review', u'clone', u'law']
[u'india', u'move', u'ganguli', u'overturn']
[u'indigen', u'communiti', u'embrac', u'naidoc', u'celebr']
[u'indonesian', u'polic', u'swoop', u'suspect', u'terrorist']
[u'show', u'ballarat', u'liber', u'preselect']
[u'iraqi', u'govt', u'admit', u'abus', u'secur', u'forc']
[u'rule', u'plan', u'teacher', u'strike']
[u'isra', u'minist', u'flak', u'jacket']
[u'spacecraft', u'crash', u'comet']
[u'japan', u'oldest', u'die']
[u'joey', u'maroon', u'target', u'risk']
[u'joyc', u'voic', u'concern']
[u'juanita', u'nielsen', u'murder', u'remain', u'mysteri', u'year']
[u'labor', u'deni', u'plan', u'abolish', u'negat', u'gear']
[u'lanc', u'circus', u'embark', u'long', u'goodby']
[u'landslid', u'caus', u'problem', u'travel']
[u'live', u'rocker', u'look', u'leader', u'chang']
[u'lobster', u'industri', u'fear', u'deplet', u'fish', u'fleet']
[u'local', u'govern', u'lobbi', u'feder', u'road', u'fund']
[u'jail', u'wool', u'scam']
[u'maori', u'group', u'accus', u'stand', u'tactic']
[u'marathon', u'effort', u'win', u'race', u'tanzanian', u'runner']
[u'masterfood', u'detail', u'chocol', u'threat']
[u'masterfood', u'place', u'chocol', u'recal']
[u'mcewen', u'take', u'second', u'stage']
[u'mcgauran', u'get', u'rural', u'portfolio']
[u'mental', u'health', u'servic', u'miss', u'inquiri', u'hear']
[u'north', u'coast', u'join', u'indigen', u'cultur']
[u'mileston', u'approach', u'dalai', u'lama']
[u'death', u'investig', u'continu']
[u'minist', u'seek', u'curb', u'vegi', u'import', u'deal']
[u'miss', u'teen', u'safe']
[u'miss', u'soldier', u'rescu', u'afghanistan']
[u'good', u'econom', u'growth', u'expect']
[u'talk', u'hold', u'matern', u'unit', u'disput']
[u'urg', u'perman', u'resid', u'north', u'west']
[u'murray', u'hop', u'cowboy', u'boost', u'origin', u'rep']
[u'music', u'contest', u'hit', u'right', u'note', u'student']
[u'naidoc', u'celebr', u'sombr', u'amid', u'atsic', u'demis']
[u'naidoc', u'week', u'kick']
[u'nasa', u'probe', u'cours', u'comet', u'collis']
[u'bionic', u'like', u'real', u'thing']
[u'board', u'member', u'splash', u'water', u'author']
[u'child', u'care', u'centr', u'help', u'orang']
[u'defenc', u'chief', u'begin', u'work']
[u'owner', u'dingo', u'farm']
[u'process', u'plant', u'devonport']
[u'senat', u'encourag', u'coalit', u'line']
[u'north', u'coast', u'face', u'welfar', u'shake']
[u'north', u'armi', u'reservist', u'head', u'solomon']
[u'track', u'mark', u'year', u'rail', u'servic']
[u'olymp', u'lobbi', u'overdr', u'vote', u'loom']
[u'opposit', u'critic', u'govt', u'action', u'teacher']
[u'paedophil', u'jail', u'opposit', u'say']
[u'park', u'astronom', u'monitor', u'comet', u'crash']
[u'perkin', u'prais', u'region', u'australia', u'swim', u'effort']
[u'petrol', u'price', u'fuel', u'inflat', u'rate', u'rise']
[u'pietersen', u'close', u'ash', u'debut']
[u'plane', u'crash', u'victim', u'bodi', u'return', u'wagga']
[u'point', u'mishap', u'derail', u'skitub', u'minist']
[u'polic', u'north', u'west', u'crash', u'victim']
[u'polic', u'probe', u'anim', u'bash', u'school']
[u'polic', u'probe', u'break', u'hill', u'assault']
[u'polic', u'promis', u'squad', u'check']
[u'polic', u'silent', u'offic', u'drink', u'drive', u'charg']
[u'port', u'kembla', u'host', u'union', u'book', u'launch']
[u'govern', u'cleric', u'kill', u'southern']
[u'protest', u'tip', u'festiv', u'trash', u'politician', u'door']
[u'public', u'comment', u'seek', u'burni', u'waterfront', u'plan']
[u'public', u'warn', u'meningococc', u'threat']
[u'abattoir', u'close']
[u'rain', u'lessen', u'blow', u'irrig']
[u'recognit', u'fisheri']
[u'region', u'growth', u'ahead', u'adelaid']
[u'region', u'join', u'aquacultur', u'forum']
[u'riewoldt', u'sidelin', u'week']
[u'riewoldt', u'escap', u'surgeon', u'knife']
[u'salin', u'fighter', u'back', u'push', u'research', u'director']
[u'samoa', u'cours', u'rugbi', u'world', u'spot']
[u'opposit', u'say', u'ashbourn', u'inquiri', u'narrow']
[u'saudi', u'crown', u'princ', u'vow', u'countri']
[u'school', u'base', u'educ', u'method', u'outdat', u'academ']
[u'seagul', u'improv', u'semi', u'hope', u'east']
[u'sect', u'member', u'court', u'abus', u'charg']
[u'shire', u'slash', u'potenti', u'heritag', u'sit']
[u'skitub', u'hit', u'slop', u'derail']
[u'slow', u'economi', u'push']
[u'smoker', u'forc', u'room']
[u'soldier', u'leav', u'brisban', u'iraq']
[u'solomon', u'minist', u'face', u'sack', u'whale', u'vote']
[u'spacecraft', u'crash', u'comet']
[u'start', u'final', u'design', u'massiv', u'project']
[u'stop', u'work', u'meet', u'disrupt', u'ferri', u'servic']
[u'student', u'retir', u'airport', u'secur', u'duti']
[u'task', u'forc', u'seek', u'youth', u'parti', u'feedback']
[u'tasmanian', u'declin', u'littl']
[u'teacher', u'face', u'sack', u'child', u'porn', u'convict']
[u'teacher', u'strike', u'amid', u'rule']
[u'telstra', u'withdraw', u'phone', u'tower', u'plan']
[u'tender', u'withdraw', u'put', u'caravan', u'park', u'futur', u'doubt']
[u'thorp', u'endors', u'york', u'host', u'olymp']
[u'thousand', u'teacher', u'strike']
[u'timber', u'compani', u'accus', u'intimid']
[u'townsvill', u'prepar', u'naidoc', u'week', u'festiv']
[u'trade', u'deficit', u'contract']
[u'troop', u'comb', u'baghdad', u'envoy']
[u'seek', u'treatment', u'chocol', u'scare']
[u'union', u'condemn', u'desper', u'airport', u'secur', u'measur']
[u'union', u'ponder', u'long', u'fight', u'chang']
[u'union', u'warn', u'jeopardis', u'labor', u'elect']
[u'union', u'beat', u'avert', u'ambul', u'woe']
[u'vail', u'readi', u'rein', u'senat']
[u'vanston', u'hawk', u'honour', u'indigen', u'leader']
[u'vizard', u'face', u'action', u'share', u'deal']
[u'vizard', u'water']
[u'waltz', u'matilda', u'highlight', u'silli', u'australia']
[u'wont', u'knock', u'comet', u'cours', u'scientist', u'say']
[u'widder', u'decid', u'action', u'alleg', u'racial']
[u'wilko', u'hope', u'play', u'test']
[u'william', u'investig', u'webber', u'french', u'nightmar']
[u'woman', u'die', u'truck', u'hors', u'accid']
[u'yacht', u'compani', u'plan', u'local', u'train', u'centr']
[u'age', u'care', u'project', u'plan', u'cudal']
[u'academ', u'queri', u'vizard', u'deal']
[u'govt', u'deni', u'blame', u'rapist', u'offend']
[u'afghanistan', u'call', u'return', u'aust', u'troop']
[u'tribun', u'hear', u'case']
[u'take', u'stake', u'pipelin']
[u'agricultur', u'growth', u'outpac', u'sector']
[u'alkan', u'pressur', u'park', u'council']
[u'antidepress', u'help', u'stop', u'repeat', u'heart', u'attack']
[u'anti', u'plan', u'protest', u'union', u'drive']
[u'campus', u'colleg', u'offer', u'advanc', u'class']
[u'armidal', u'host', u'senat', u'union', u'fee', u'probe']
[u'associ', u'seek', u'extra', u'feder', u'road', u'fund']
[u'aussi', u'davi', u'squad']
[u'banana', u'grower', u'cane', u'toad', u'home']
[u'bargara', u'beach', u'name', u'australia', u'friendliest']
[u'batchelor', u'conced', u'rail', u'bypass', u'caus', u'headach']
[u'beazley', u'want', u'annual', u'leav', u'guarante']
[u'berlin', u'wall', u'memori', u'tear']
[u'olymp', u'heat']
[u'brother', u'contest', u'cruelti', u'claim']
[u'boycott', u'forc', u'saleyard', u'drop']
[u'boyfriend', u'plead', u'guilti', u'perjuri', u'ryan']
[u'brack', u'await', u'vizard', u'court', u'decis']
[u'bring', u'impeach', u'arroyo', u'say']
[u'brisban', u'confer', u'put', u'spotlight', u'drug', u'cultur']
[u'brother', u'rescu', u'drift', u'boat']
[u'bush', u'challeng', u'farm', u'subsidi']
[u'bushfir', u'class', u'action', u'spark', u'fear']
[u'campbel', u'embark', u'recherch', u'fact', u'find']
[u'camp', u'focus', u'famili', u'breakdown']
[u'carrol', u'origin', u'shoo']
[u'carrol', u'origin', u'shoo', u'hagan']
[u'carrol', u'start', u'blue']
[u'carr', u'want', u'grant', u'commiss', u'abolish']
[u'centr', u'provid', u'transport', u'train']
[u'charlevill', u'take', u'bilbi', u'fund', u'manag']
[u'children', u'strep', u'infect', u'link', u'tic']
[u'chines', u'astronaut', u'count', u'spaceflight']
[u'chocol', u'recal', u'respons', u'fantast', u'firm', u'say']
[u'compani', u'action', u'chemic', u'spill']
[u'cooma', u'monaro', u'fire', u'increas', u'cost']
[u'corbi', u'case', u'reopen']
[u'corbi', u'plead', u'help']
[u'corbi', u'plead', u'help']
[u'costello', u'make', u'pilgrimag', u'hillsong', u'confer']
[u'council', u'clarifi', u'road', u'respons']
[u'council', u'finalis', u'drought', u'recommend']
[u'council', u'urg', u'reject', u'catherin', u'hill']
[u'court', u'remand', u'teenag', u'settler', u'gaza', u'attack']
[u'crow', u'fine', u'johncock', u'earli', u'morn', u'crash']
[u'crow', u'discuss', u'futur', u'johncock']
[u'level', u'water', u'ban', u'remain']
[u'data', u'continu', u'flow', u'comet', u'collis']
[u'disappear', u'apostl', u'prompt', u'market', u'dilemma']
[u'sampl', u'reveal', u'dolphin', u'speci']
[u'domest', u'wine', u'sale', u'soar']
[u'east', u'timor', u'aust', u'split', u'money']
[u'east', u'timores', u'presid', u'begin', u'canberra', u'tour']
[u'employe', u'pay', u'annual']
[u'england', u'prior', u'dayer']
[u'errat', u'driver', u'arrest', u'drink', u'drive']
[u'evan', u'tate', u'move', u'creat', u'griffith', u'grower', u'concern']
[u'expect', u'busi', u'centr', u'cover', u'bigger']
[u'expert', u'rais', u'question', u'vizard', u'deal']
[u'export', u'welcom', u'ship']
[u'fall', u'dam', u'capac', u'lead', u'power', u'ration']
[u'farm', u'boss', u'lament', u'cobb', u'get', u'agricultur']
[u'farmer', u'gain', u'plan', u'trade', u'revamp']
[u'feder', u'enjoy', u'perfect', u'homecom']
[u'govt', u'urg', u'renew', u'underwrit', u'agreement']
[u'fertilis', u'regul', u'come', u'forc']
[u'detail', u'emerg', u'orient', u'invest']
[u'fraser', u'coast', u'tourism', u'target', u'sydney']
[u'freedom', u'inform', u'year']
[u'free', u'tabloid', u'fuel', u'cross', u'media', u'talk']
[u'frenzi', u'minut', u'lobbi', u'olymp']
[u'fruiti', u'flavour', u'boost', u'bubbl', u'sale']
[u'furyk', u'climb', u'eighth', u'world', u'rank']
[u'gang', u'think', u'break']
[u'govt', u'acceler', u'counterpunch']
[u'govt', u'announc', u'patrol', u'boat', u'protect', u'north', u'west']
[u'govt', u'blame', u'union', u'poll', u'plung']
[u'govt', u'consid', u'send', u'troop', u'afghanistan']
[u'govt', u'deni', u'annual', u'leav', u'threaten']
[u'govt', u'help', u'look', u'potenti', u'corbi', u'wit']
[u'govt', u'mull', u'troop', u'return', u'afghanistan']
[u'govt', u'urg', u'adopt', u'prevent', u'approach']
[u'govt', u'unveil', u'rail', u'boost']
[u'govt', u'urg', u'irrig', u'deal', u'free']
[u'call', u'involv', u'public', u'hospit']
[u'anger', u'earn', u'jail', u'term']
[u'gunbattl', u'indian', u'religi', u'site', u'leav', u'dead']
[u'gunmen', u'kill', u'disput', u'indian', u'religi', u'site']
[u'hard', u'core', u'activist', u'blame', u'edinburgh', u'clash']
[u'hawk', u'coach', u'beat', u'team', u'futur']
[u'hawk', u'futur', u'final', u'contend', u'clarkson']
[u'health', u'probe', u'head', u'gold', u'coast']
[u'health', u'servic', u'chief', u'stand', u'time', u'frame']
[u'hope', u'code', u'conduct', u'curb', u'gaza', u'pull']
[u'hospit', u'execut', u'want', u'bundaberg', u'inquiri', u'shut']
[u'howard', u'drop', u'blame', u'union']
[u'immun', u'possibl', u'corbi', u'wit']
[u'india', u'flood', u'claim', u'live']
[u'indigen', u'communiti', u'face', u'audit']
[u'injur', u'train', u'pressur', u'play', u'thoma']
[u'rat', u'expect', u'remain', u'hold']
[u'israel', u'palestinian', u'reach', u'agreement', u'transport']
[u'inquiri', u'head', u'defend', u'brief']
[u'review', u'member', u'back']
[u'star', u'announc', u'local', u'flight', u'chang']
[u'joey', u'conquer', u'cauldron', u'stuart']
[u'judiciari', u'trio', u'enter', u'earli', u'plea']
[u'kennett', u'call', u'spend', u'good', u'health', u'promot']
[u'kewel', u'linek', u'settl', u'court']
[u'lanc', u'chase', u'yellow', u'team', u'time', u'trial']
[u'landown', u'want', u'compo', u'paddock', u'intrus']
[u'landslip', u'focus', u'rang', u'home', u'owner', u'mind']
[u'lawyer', u'review', u'tax']
[u'hope', u'test', u'recal']
[u'leicestershir', u'sign', u'warrior', u'roger']
[u'liber', u'candid', u'question', u'forestrysa']
[u'lion', u'scrape', u'victori', u'auckland']
[u'live', u'star', u'album', u'sale', u'soar']
[u'liverpool', u'turn', u'chelsea', u'gerrard']
[u'london', u'team', u'wheel', u'beckham']
[u'luczak', u'scud', u'davi', u'team', u'name']
[u'machin', u'aim', u'halt', u'weed', u'spread']
[u'die', u'overpass', u'crash']
[u'manu', u'bail', u'nightclub', u'brawl', u'charg']
[u'maroon', u'benefit', u'cowboy', u'connect']
[u'maroon', u'benefit', u'cowboy', u'connect']
[u'martin', u'hope', u'virgin', u'blue', u'turnaround']
[u'meet', u'discuss', u'yeppoon', u'hospit']
[u'mexican', u'pair', u'ban', u'dope']
[u'minist', u'say', u'call', u'sack', u'unwarr']
[u'mix', u'night', u'pie', u'tribun']
[u'mortlock', u'injuri', u'cloud']
[u'mayor', u'back', u'visa', u'chang']
[u'multicultur', u'resourc', u'centr', u'defend', u'closur']
[u'mundi', u'take', u'rise', u'star', u'nomin']
[u'nation', u'seek', u'scientif', u'back', u'biofuel']
[u'nation', u'region', u'ambul', u'crisi', u'loom']
[u'communiti', u'group', u'liais', u'polic']
[u'deal', u'aim', u'boost', u'hunter', u'coal', u'export']
[u'servic', u'hop', u'chang', u'health', u'dispar']
[u'state', u'nation', u'presid', u'reunit']
[u'zealand', u'swear', u'solomon', u'deputi', u'polic']
[u'nixon', u'polic', u'associ', u'clash', u'plan', u'chang']
[u'older', u'asthma', u'hide', u'amid', u'public', u'misconcept']
[u'olymp', u'race', u'narrow', u'pari', u'london']
[u'opposit', u'leader', u'warn', u'sweetheart', u'stoush']
[u'opposit', u'say', u'speed', u'camera', u'cost', u'high']
[u'opposit', u'seek', u'cost', u'legal', u'action']
[u'opposit', u'surpris', u'citrus', u'group']
[u'outback', u'promot', u'nation', u'approach']
[u'packag', u'scare', u'ahead', u'bush', u'denmark', u'visit']
[u'panathinaiko', u'deni', u'breakdown', u'aloisi', u'deal']
[u'panther', u'chief', u'outlin', u'debt', u'reduct', u'plan']
[u'pathologist', u'urg', u'govt', u'centralis', u'health', u'fund']
[u'patient', u'isol', u'shortag', u'nurs']
[u'photo', u'opportun', u'frame', u'thief']
[u'pink', u'floyd', u'live', u'profit', u'chariti']
[u'pipelin', u'gain', u'real', u'momentum', u'minist', u'say']
[u'polic', u'car', u'damag', u'pursuit']
[u'polic', u'investig', u'bomb']
[u'polic', u'probe', u'lake', u'macquari', u'shoot']
[u'polic', u'warn', u'farmer', u'confin', u'stock']
[u'polic', u'decid', u'footbal', u'brawl', u'charg']
[u'poll', u'news']
[u'port', u'author', u'beat', u'fight', u'nois']
[u'port', u'urg', u'ride', u'mine', u'boom']
[u'public', u'unlik', u'worri']
[u'quak', u'hit', u'indonesia', u'sumatra']
[u'rail', u'volunt', u'fall', u'tragic', u'death']
[u'rail', u'worker', u'tool', u'honour', u'colleagu']
[u'rain', u'aid', u'hunter', u'fish', u'stock']
[u'rain', u'damag', u'soar']
[u'remain', u'identifi', u'miss', u'rocki', u'woman']
[u'repair', u'flood', u'damag', u'road']
[u'research', u'spotlight', u'drought', u'educ', u'link']
[u'resourc', u'fuel', u'market', u'climb']
[u'return', u'passeng', u'train', u'servic', u'loom']
[u'river', u'inquiri', u'attract', u'hundr']
[u'road', u'crash', u'victim', u'identif', u'time']
[u'robbi', u'mcewen', u'speak']
[u'rspca', u'call', u'help', u'anim', u'abus']
[u'safin', u'play', u'franc', u'davi']
[u'govt', u'reject', u'dpps', u'push', u'upgrad']
[u'sale', u'order', u'boost', u'servic', u'sector']
[u'santo', u'increas', u'product', u'tipperari']
[u'sanyo', u'job']
[u'sasser', u'worm', u'suspect', u'trial']
[u'stand', u'firm', u'teacher', u'disput']
[u'scholarship', u'offer', u'hope', u'age', u'care', u'nurs']
[u'scientist', u'claim', u'ancient', u'footprint']
[u'offend', u'extradit']
[u'shoalhaven', u'join', u'fight', u'child', u'abus']
[u'month', u'mackay', u'fare']
[u'small', u'turnout', u'naidoc', u'week', u'activ']
[u'shop', u'sell', u'recal', u'bar']
[u'coast', u'urg', u'avoid', u'gold', u'coast', u'mistak']
[u'surfer', u'death', u'remain', u'mysteri']
[u'talk', u'chemic', u'offer', u'earli', u'cancer', u'diagnosi']
[u'teacher', u'half', u'strike']
[u'teacher', u'fear', u'subject', u'drop']
[u'european', u'trade', u'mark', u'holiday']
[u'year', u'project', u'focus', u'age', u'popul']
[u'children', u'educ', u'studi']
[u'chang', u'spark', u'boycott', u'govt', u'committe']
[u'union', u'want', u'latrob', u'valley', u'coal', u'fire', u'power']
[u'confirm', u'civilian', u'death', u'afghan', u'strike']
[u'vail', u'chip', u'mcdonald', u'talk']
[u'veget', u'group', u'endors', u'plan', u'revitalis']
[u'veteran', u'actress', u'die']
[u'back', u'mcgauran', u'agricultur', u'appoint']
[u'video', u'link', u'offer', u'persuad', u'corbi', u'wit']
[u'vizard', u'accept', u'penalti']
[u'vizard', u'maintain', u'chariti', u'work']
[u'water', u'bomb', u'help', u'contain', u'bushfir']
[u'water', u'pip', u'worri', u'health', u'expert']
[u'weekend', u'detent', u'plan', u'mean', u'mini', u'jail']
[u'welfar', u'group', u'urg', u'pension', u'boost']
[u'welsh', u'reveal', u'virus', u'battl']
[u'tread', u'care', u'anderson']
[u'western', u'power', u'worker', u'stage', u'hour', u'strike']
[u'suspend', u'somalia', u'hijack']
[u'whale', u'birth', u'wit', u'urg', u'come', u'forward']
[u'ask', u'swim', u'star', u'hawk']
[u'white', u'eye', u'tour', u'glori']
[u'wild', u'woe', u'rise']
[u'william', u'prais', u'webber', u'aussi', u'grit']
[u'wind', u'hamper', u'search', u'miss']
[u'winemak', u'home', u'brand', u'plan', u'hard', u'swallow']
[u'woman', u'bodi', u'shed', u'home']
[u'women', u'award', u'damag', u'malici', u'prosecut']
[u'worker', u'kill', u'rail', u'line', u'construct']
[u'youth', u'camp', u'close', u'upgrad']
[u'detain', u'aviat', u'secur']
[u'actu', u'fear', u'slower', u'worker', u'face', u'minimum', u'wage']
[u'afghanistan', u'probe', u'civilian', u'death']
[u'cruiser', u'outback', u'quick', u'visit']
[u'black', u'prim', u'whitewash', u'lion']
[u'aloisi', u'deal', u'cancel', u'panathinaiko']
[u'sell', u'centenari', u'hous']
[u'back', u'bigger', u'role', u'public', u'hospit']
[u'angelina', u'joli', u'adopt', u'aid', u'orphan']
[u'angler', u'ask', u'harbour', u'fee', u'feedback']
[u'argentina', u'star', u'davi', u'clash']
[u'armidal', u'woman', u'wheelchair', u'linedanc', u'effort']
[u'asic', u'defend', u'action', u'vizard', u'case']
[u'aspirin', u'vitamin', u'help', u'cancer']
[u'austmin', u'set', u'export', u'target']
[u'australian', u'execut', u'escap', u'prosecut']
[u'award', u'win', u'screenwrit', u'ernest', u'lehman', u'die']
[u'resum', u'bid', u'iraqi', u'wheat', u'contract']
[u'beatti', u'happi', u'formula']
[u'citi', u'final', u'pitch', u'olymp']
[u'blue', u'claim', u'origin', u'seri']
[u'blue', u'readi', u'face', u'maroon', u'say', u'stuart']
[u'boonen', u'level', u'lanc']
[u'bounti', u'fail', u'prove', u'tasmanian', u'tiger', u'exist']
[u'bowen', u'anticip', u'role', u'origin', u'decid']
[u'caution', u'epirb']
[u'bridg', u'name', u'competit', u'open']
[u'buchanan', u'slam', u'lumber', u'england']
[u'bunburi', u'look', u'govt', u'fund', u'cathedr']
[u'govt', u'boost', u'credit', u'initi']
[u'cannabi', u'treatment', u'clinic', u'aim', u'august', u'open']
[u'carrol', u'doesnt', u'scare', u'daley']
[u'carr', u'vow', u'safeti', u'determin', u'cross', u'citi', u'tunnel']
[u'seal', u'insur', u'sale', u'deal', u'worth']
[u'chelsea', u'reclaim', u'crespo']
[u'china', u'face', u'compani', u'takeov']
[u'chocol', u'bar', u'contain', u'pest', u'poison']
[u'clark', u'head', u'cricket', u'centr', u'excel']
[u'climat', u'consult', u'say', u'climat', u'chang']
[u'club', u'feel', u'impact', u'smoke', u'law']
[u'club', u'smoker', u'deal', u'restrict']
[u'coal', u'firm', u'welcom', u'rail', u'fund', u'pledg']
[u'coast', u'guard', u'expect', u'rescu', u'boat', u'wait']
[u'coast', u'resid', u'urg', u'health']
[u'cobargo', u'resid', u'mail', u'deliveri']
[u'coffe', u'produc', u'seek', u'spray', u'compo']
[u'cole', u'back', u'australian', u'product', u'label', u'chang']
[u'committe', u'hope', u'quick', u'drought', u'fund', u'relief']
[u'communiti', u'urg', u'cane', u'toad', u'trap']
[u'contamin', u'soil', u'estim', u'differ', u'darwin']
[u'coron', u'find', u'murder', u'commit']
[u'coulthard', u'sign', u'bull']
[u'council', u'back', u'extend', u'rebat', u'deadlin']
[u'council', u'confid', u'insur', u'coverag']
[u'council', u'defer', u'decis']
[u'council', u'highlight', u'treatment', u'wait']
[u'council', u'lumber', u'insur']
[u'council', u'rethink', u'anim', u'control', u'polici']
[u'council', u'say', u'report', u'rate', u'rise', u'wrong']
[u'council', u'discuss', u'road', u'recoveri', u'fund']
[u'council', u'indigen', u'job', u'plan']
[u'court', u'deliv', u'fin', u'south', u'coast', u'fisher']
[u'crew', u'contain', u'kununurra']
[u'crow', u'real', u'deal', u'wallac']
[u'date', u'reopen', u'corbi', u'hear', u'lawyer', u'say']
[u'demand', u'child', u'pornographi', u'grow', u'forum', u'tell']
[u'detain', u'indonesian', u'milit', u'face', u'terror']
[u'develop', u'process', u'begin', u'shop', u'centr', u'plan']
[u'dinosaur', u'footprint', u'alaska']
[u'diplomat', u'attack', u'iraq']
[u'owner', u'ask', u'help', u'avoid', u'posti', u'attack']
[u'downer', u'hail', u'endur', u'australia', u'tie']
[u'downer', u'request', u'corbi', u'wit', u'list']
[u'driver', u'leav', u'harbour', u'bridg']
[u'eat', u'disord', u'clinic', u'open', u'perth']
[u'employ', u'come', u'grip', u'workplac']
[u'engin', u'win', u'fellowship', u'water', u'suppli', u'studi']
[u'england', u'refus', u'play', u'test', u'karachi']
[u'famili', u'senat', u'urg', u'govt', u'explain']
[u'farmer', u'urg', u'adopt', u'mules', u'accredit']
[u'farm', u'group', u'see', u'good', u'product']
[u'fear', u'homeless', u'rise', u'clarenc', u'valley']
[u'feder', u'fund', u'boost', u'airport', u'secur']
[u'festiv', u'mark', u'dalai', u'lama', u'birthday']
[u'fishermen', u'want', u'tariff', u'import', u'quota']
[u'hutu', u'rebel', u'burundi', u'elect']
[u'senat', u'criticis', u'vote']
[u'protest', u'clash', u'polic']
[u'deal', u'increas', u'likelihood', u'pipelin']
[u'geldof', u'get', u'angri', u'squabbl']
[u'gerrard', u'opt', u'stay', u'liverpool']
[u'governor', u'draw', u'brigalow', u'conserv', u'stoush']
[u'govt', u'accus', u'play', u'wind', u'farm', u'polit']
[u'govt', u'embarrass', u'immigr', u'dept']
[u'govt', u'larapinta', u'land', u'releas', u'price']
[u'govt', u'urg', u'settl', u'road', u'surfac', u'compo', u'claim']
[u'govt', u'urg', u'step', u'drug', u'abus', u'treatment', u'program']
[u'govt', u'wari', u'fenc', u'plan']
[u'guidelin', u'seek', u'govt', u'fund']
[u'guild', u'lament', u'show', u'door']
[u'hagan', u'confid', u'nutley', u'rise', u'occas']
[u'hamstr', u'injuri', u'rule', u'latham']
[u'hamstr', u'injuri', u'rule', u'latham', u'wallabi']
[u'har', u'race', u'club', u'meet', u'minist']
[u'heifer', u'market', u'boom', u'mexico']
[u'hop', u'cane', u'toad', u'trap', u'pest']
[u'hop', u'minist', u'visit', u'recherch']
[u'hop', u'agricultur', u'minist', u'support', u'citrus']
[u'hospit', u'exec', u'court', u'morri', u'inquiri']
[u'howard', u'offens', u'chang']
[u'howard', u'seal', u'ministri', u'line']
[u'howard', u'urg', u'state', u'develop', u'formula']
[u'ident', u'twin', u'grow', u'apart']
[u'immigr', u'bungl', u'aggrav', u'condit', u'say']
[u'indonesia', u'reject', u'east', u'timor', u'right']
[u'indonesia', u'pursu', u'charg', u'newmont']
[u'injur', u'daveydenko', u'davi', u'fit', u'battl']
[u'rat', u'stay', u'hold']
[u'intern', u'race', u'head', u'latrob']
[u'internet', u'phone', u'network', u'govern']
[u'face', u'tough', u'decis', u'game', u'rogg']
[u'isinbayeva', u'break', u'pole', u'vault', u'world', u'record']
[u'isra', u'troop', u'brace', u'gaza', u'pull']
[u'johncock', u'return', u'hing', u'fit', u'play']
[u'judg', u'order', u'stylist', u'memorabilia']
[u'kangaroo', u'consid', u'play', u'hale', u'eagl']
[u'laidley', u'consid', u'play', u'hale', u'eagl']
[u'liber', u'candid', u'oppos', u'forestrysa', u'privatis']
[u'london', u'pari', u'showdown']
[u'london', u'award', u'game']
[u'lorikeet', u'feed', u'harm', u'good']
[u'maffra', u'footi', u'club', u'head']
[u'magpi', u'admit', u'take', u'punt', u'didak', u'charg']
[u'magpi', u'appeal', u'didak', u'suspens']
[u'magpi', u'challeng', u'didak']
[u'die', u'echuca', u'road', u'crash']
[u'plead', u'guilti', u'arm', u'robberi', u'hammer']
[u'face', u'hear', u'fatal', u'crash']
[u'marina', u'plan', u'rais', u'council', u'concern']
[u'maywald', u'ashbourn', u'privat', u'inquiri']
[u'media', u'spotlight', u'visa', u'refuge', u'group', u'say']
[u'medic', u'insur', u'appeal', u'tribun', u'decis']
[u'melbourn', u'lose', u'heineken', u'classic']
[u'millionair', u'satisfact']
[u'minist', u'silent', u'scientif', u'basi', u'uranium']
[u'minist', u'prepar', u'swear', u'ceremoni']
[u'miss', u'girl', u'safe', u'neighbour', u'hous']
[u'miss', u'woman', u'safe']
[u'fear', u'school', u'scheme', u'day', u'number']
[u'accus', u'kill', u'babi', u'permit', u'visit']
[u'murder', u'probe', u'continu', u'confirm']
[u'natur', u'reserv', u'plan']
[u'cancer', u'hope', u'stem', u'pineappl']
[u'drought', u'counsellor', u'nyngan']
[u'drought', u'relief', u'coordin', u'south', u'west']
[u'scheme', u'help', u'burni', u'student', u'school']
[u'newspap', u'erect', u'killer', u'highway', u'billboard']
[u'zealand', u'ask', u'zimbabw']
[u'plan', u'seek', u'eas', u'rural', u'worker', u'shortag']
[u'domin', u'origin']
[u'grant', u'propos', u'predict', u'simplist']
[u'govt', u'seek', u'cost', u'pool', u'fenc', u'reinspect']
[u'nude', u'protest', u'target', u'pamplona', u'bull']
[u'nurs', u'shortag', u'delay', u'open', u'psych']
[u'occup', u'surviv', u'geraldton', u'hous', u'blaze']
[u'oppos', u'chang', u'boost', u'labor', u'support']
[u'opposit', u'appli', u'pressur', u'rocki', u'emerg']
[u'opposit', u'call', u'investig', u'ashbourn']
[u'opposit', u'highlight', u'polic', u'fear']
[u'opposit', u'look', u'upper', u'hous', u'amend', u'inquiri']
[u'orang', u'council', u'step', u'closer', u'appoint']
[u'origin', u'underway', u'brisban']
[u'oversea', u'visitor', u'number', u'fall']
[u'palmer', u'inquiri', u'say', u'care', u'inadequ']
[u'panda', u'give', u'birth', u'twin']
[u'panther', u'club', u'member', u'bus', u'meet']
[u'patel', u'extradit', u'time', u'polic', u'chief']
[u'perth', u'resid', u'wake', u'frosti', u'morn']
[u'pizza', u'chain', u'report', u'record', u'store', u'growth']
[u'reject', u'union', u'critic', u'chang']
[u'polic', u'prepar', u'protest']
[u'polic', u'warn', u'farmer', u'secur', u'conscious']
[u'protest', u'flare', u'leader', u'head', u'scotland']
[u'pump', u'station', u'reopen']
[u'qanta', u'recruit', u'general', u'cosgrov']
[u'govt', u'announc', u'blueprint', u'bush']
[u'negoti', u'data', u'swap']
[u'stop', u'hold', u'femal', u'immigr', u'detaine']
[u'rain', u'help', u'eas', u'water', u'shortag']
[u'rapist', u'remand', u'custodi', u'sentenc']
[u'rat', u'like', u'stay', u'economist']
[u'seek', u'apolog', u'compens']
[u'rdaa', u'talk', u'foreign', u'train', u'doctor', u'import']
[u'region', u'victoria', u'fast', u'rail', u'safeti']
[u'relentless', u'wrap', u'origin', u'seri']
[u'report', u'snow', u'goldfield']
[u'research', u'enlist', u'koala', u'search', u'chlamydia']
[u'reserv', u'bank', u'leav', u'rat', u'unchang']
[u'resid', u'plan', u'breakaway', u'yarrawonga', u'council']
[u'ricki', u'stuart', u'matt', u'king', u'shaun', u'berrigan', u'danni']
[u'road', u'closur', u'hurt', u'tourism']
[u'robert', u'see', u'yellow', u'jersey', u'slip', u'cscs', u'grasp']
[u'russian', u'drag', u'bust', u'take', u'exam', u'sister']
[u'safin', u'miss', u'davi', u'showdown']
[u'schizophrenia', u'drug', u'trial', u'show', u'promis', u'result']
[u'skin', u'cancer', u'unit', u'receiv', u'research', u'fund', u'boost']
[u'korean', u'develop', u'high', u'speed', u'circuit']
[u'sleepwalk', u'teen', u'rescu', u'crane']
[u'state', u'origin', u'highlight', u'packag']
[u'stock', u'sell', u'drag', u'market']
[u'struggl', u'union', u'consid', u'merger']
[u'studi', u'find', u'support', u'clear', u'fell', u'altern']
[u'studi', u'focus', u'lift', u'engin', u'student']
[u'suspect', u'case', u'diseas', u'investig']
[u'teenag', u'ampute', u'case', u'shock', u'brisban', u'doctor']
[u'thai', u'teacher', u'give', u'gun']
[u'kill', u'russian', u'polic', u'station', u'blast']
[u'tour', u'swap', u'yellow', u'ochr']
[u'tropic', u'storm', u'push', u'price', u'higher']
[u'truss', u'feel', u'calder', u'duplic', u'pressur']
[u'arrest', u'biki', u'gang', u'club', u'bust']
[u'union', u'oppos', u'health', u'servic', u'cut']
[u'union', u'lie', u'campaign', u'andrew']
[u'union', u'monitor', u'council', u'shake']
[u'propos', u'cotton', u'subsidi']
[u'victim', u'group', u'seek', u'tougher', u'sentenc', u'repeat']
[u'vieri', u'join', u'milan', u'citi', u'rival', u'inter']
[u'consid', u'scrap', u'holiday', u'payout', u'law']
[u'want', u'gerrard', u'stay', u'say', u'liverpool']
[u'wilkinson', u'henson', u'rule', u'test']
[u'woolgrow', u'tell', u'consid', u'chines', u'market']
[u'workplac', u'relat', u'staff', u'strike', u'contract']
[u'work', u'begin', u'darwin', u'renew', u'fuel', u'plant']
[u'worsfold', u'wari', u'passion', u'kangaroo']
[u'zimbabw', u'polic', u'deni', u'kill', u'demolit']
[u'submiss', u'receiv', u'plan']
[u'agreement', u'reach', u'nestl', u'redund', u'packag']
[u'alcohol', u'crackdown', u'continu', u'indigen']
[u'alic', u'jail', u'child', u'porn', u'imag']
[u'black', u'lion', u'late', u'chang', u'test']
[u'anger', u'vail', u'back', u'away', u'code', u'conduct']
[u'anger', u'follow', u'wife', u'killer', u'sentenc']
[u'specialist', u'quit', u'hobart', u'hospit']
[u'seri', u'blast', u'london', u'report']
[u'dead', u'london', u'blast', u'polic']
[u'attempt', u'protect', u'indigen', u'heritag', u'mine']
[u'auditor', u'question', u'health', u'care', u'deliveri']
[u'aust', u'policeman', u'await', u'rule', u'assault']
[u'averag', u'rate', u'rise', u'hervey', u'resid']
[u'blast', u'rock', u'london', u'underground']
[u'blaze', u'forc', u'supermarket', u'closur']
[u'blue', u'domin', u'forc', u'origin', u'footbal']
[u'bomb', u'kill', u'iraq']
[u'brack', u'open', u'central', u'victorian', u'gold']
[u'britain', u'put', u'olymp', u'celebr', u'hold']
[u'bulldog', u'verg', u'sign', u'darwin', u'deal']
[u'bureaucrat', u'lodg', u'court', u'action', u'stop', u'hospit']
[u'bureaucrat', u'plead', u'guilti', u'child', u'porn', u'charg']
[u'burni', u'council', u'hit', u'phone', u'alderman', u'review']
[u'bush', u'stack', u'bike', u'policeman']
[u'cabinet', u'discuss', u'afghanistan', u'troop', u'redeploy']
[u'campaign', u'begin', u'indian', u'myna', u'bird', u'number']
[u'cancer', u'toxin', u'sydney', u'bore']
[u'cane', u'toad', u'touch', u'base', u'middl', u'darwin']
[u'central', u'move', u'northern', u'elector']
[u'centrelink', u'vineyard', u'crackdown', u'save', u'taxpay']
[u'chao', u'blast', u'rock', u'london', u'tube']
[u'church', u'trio', u'plead', u'guilti', u'bash', u'woman']
[u'claim', u'chines', u'network', u'oper', u'australia']
[u'club', u'play', u'smoke', u'ban', u'impact']
[u'coast', u'feedback', u'assess', u'develop']
[u'olymp', u'champion', u'astut', u'politician']
[u'coffe', u'grower', u'seek', u'compens', u'program']
[u'commonwealth', u'surpris', u'extens']
[u'communiti', u'group', u'consid', u'water', u'transfer', u'plan']
[u'concern', u'air', u'wast', u'plant']
[u'conflict', u'imped', u'govern', u'own', u'compani', u'review']
[u'conserv', u'group', u'anger', u'forestri', u'exclus']
[u'corbi', u'lawyer', u'seek', u'delay', u'hear']
[u'coron', u'reject', u'request', u'investig']
[u'coron', u'find', u'tourist', u'death', u'keep', u'privat']
[u'coron', u'probe', u'trucki', u'death']
[u'council', u'act', u'stop', u'lookout', u'hoon']
[u'council', u'reject', u'crematorium', u'plan']
[u'council', u'finetun', u'bush', u'blueprint']
[u'council', u'talk', u'budget']
[u'council', u'narrow', u'shop', u'centr', u'develop']
[u'coupl', u'central', u'crash']
[u'cutback', u'virgin', u'servic', u'loss', u'union']
[u'dead', u'bird', u'virus', u'confirm', u'migratori']
[u'directori', u'put', u'focus', u'steal', u'generat']
[u'downpour', u'cut', u'outback', u'town']
[u'drug', u'crimin', u'shoot', u'coron']
[u'dust', u'swirl', u'australia']
[u'eagl', u'ring', u'chang', u'roo', u'clash']
[u'econom', u'model', u'local', u'busi', u'plan']
[u'kimberley', u'face', u'hous', u'afford', u'woe']
[u'emot', u'gerrard', u'explain', u'shock', u'liverpool', u'turn']
[u'environment', u'doubt', u'cast', u'diesel', u'plant']
[u'environment', u'issu', u'sore', u'spot', u'govt', u'agenc']
[u'eurobodalla', u'birth', u'centr', u'prove', u'posit']
[u'european', u'collector', u'establish', u'link']
[u'european', u'countri', u'boost', u'secur', u'wake']
[u'famili', u'help', u'alleg', u'arm', u'robber', u'flee']
[u'feder', u'fund', u'age', u'care', u'home']
[u'soldier', u'jail', u'porn', u'charg', u'follow']
[u'forster', u'review', u'highlight', u'coast', u'mental', u'health', u'woe']
[u'fourth', u'threat', u'masterfood']
[u'franc', u'stun', u'olymp', u'loss']
[u'fund', u'help', u'rail', u'line', u'grain', u'transport']
[u'leader', u'gear', u'climat', u'chang', u'debat']
[u'protest', u'march', u'begin', u'scotland']
[u'govt', u'accus', u'road', u'short', u'chang']
[u'govt', u'help', u'drive', u'indigen', u'scheme']
[u'govt', u'know', u'chines', u'activ']
[u'govt', u'hospit', u'doctor', u'shortag']
[u'govt', u'urg', u'listen', u'nation', u'park', u'manag']
[u'govt', u'urg', u'rethink', u'dementia', u'fund', u'snub']
[u'gregan', u'readi', u'physic', u'bok']
[u'grievous', u'bodili', u'harmison', u'wait', u'ash']
[u'group', u'youth', u'attack', u'bakeri', u'worker']
[u'hackett', u'play', u'rivalri']
[u'health', u'servic', u'offer', u'voluntari', u'redund']
[u'high', u'price', u'drag', u'stock', u'lower']
[u'hospit', u'manag', u'decid', u'morri', u'inquiri']
[u'housefir', u'prompt', u'heater', u'warn']
[u'howard', u'condemn', u'london', u'attack']
[u'howard', u'deni', u'backflip', u'guarante']
[u'indigen', u'campaign', u'reject', u'forestri', u'involv']
[u'industri', u'action', u'disrupt', u'health']
[u'isra', u'troop', u'kill', u'palestinian', u'milit', u'west']
[u'joli', u'ethiopia', u'pick', u'adopt', u'babi']
[u'junk', u'food', u'ban', u'school', u'tuckshop']
[u'kid', u'leav', u'high', u'speed', u'pursuit']
[u'langer', u'bullish', u'ahead', u'latest', u'ash', u'challeng']
[u'legisl', u'council', u'chang', u'prompt', u'mix', u'view']
[u'london', u'blast', u'qaeda', u'type', u'pattern', u'analyst']
[u'london', u'celebr', u'game']
[u'london', u'game', u'organis', u'promis', u'best', u'olymp']
[u'london', u'snare', u'olymp']
[u'london', u'terrorist', u'attack', u'rattl', u'global', u'financi']
[u'madrid', u'look', u'time', u'failur']
[u'magpi', u'didak', u'lose', u'appeal', u'suspens']
[u'magpi', u'want', u'didak', u'charg', u'downgrad']
[u'charg', u'glenview', u'sieg']
[u'mandela', u'call', u'solut']
[u'face', u'court', u'fatal']
[u'knife', u'arrest', u'sydney', u'home']
[u'maroon', u'lick', u'wound']
[u'matilda', u'announc', u'squad', u'asian', u'tour']
[u'mayor', u'oppos', u'chang']
[u'mcewen', u'outsprint', u'boonen', u'fifth', u'stage']
[u'meet', u'discuss', u'hospit', u'futur']
[u'miner', u'begin', u'pilbara', u'drill', u'program']
[u'minist', u'ask', u'explain', u'remov', u'patient']
[u'minist', u'prefer', u'servic', u'altern', u'minor']
[u'minist', u'treasur', u'differ', u'telstra', u'sale', u'proceed']
[u'sit', u'seek', u'mass', u'tree', u'plant']
[u'time', u'allow', u'tuna', u'farm', u'comment']
[u'look', u'forward', u'maroochydor', u'medicar']
[u'pleas', u'halimi', u'famili', u'decis']
[u'question', u'patient', u'transport', u'fund']
[u'nation', u'leader', u'brigalow']
[u'netbal', u'score', u'facil', u'fund']
[u'dolphin', u'speci', u'excit', u'world']
[u'guidelin', u'good', u'news', u'beef', u'export']
[u'legisl', u'council', u'boundari', u'today']
[u'paediatrician', u'start', u'gladston', u'hospit']
[u'connect', u'ill', u'extort', u'threat']
[u'excus', u'delay', u'apolog', u'labor']
[u'nomin', u'seek', u'coastal', u'award']
[u'nrma', u'warn', u'driver', u'remain', u'vigil']
[u'take', u'origin', u'seri']
[u'examin', u'energi', u'potenti', u'rock']
[u'winner', u'defeat', u'bloomberg']
[u'obes', u'centr', u'pool', u'nation', u'resourc']
[u'ocean', u'pipelin', u'deliv', u'water']
[u'price', u'scale', u'record', u'high', u'asia']
[u'admiralti', u'hous', u'futur', u'uncertain']
[u'opposit', u'question', u'util', u'suppli']
[u'opposit', u'sound', u'warn', u'upper', u'hous', u'makeov']
[u'opposit', u'warn', u'univers', u'game']
[u'outag', u'leav', u'resid', u'dark']
[u'parent', u'charg', u'son', u'murder']
[u'parliament', u'pass', u'council', u'elect', u'chang']
[u'patel', u'inquiri', u'continu', u'despit', u'legal', u'threat']
[u'patient', u'gaudio', u'reach', u'swiss', u'quarter']
[u'peopl', u'lazi', u'fuel', u'escal', u'obes', u'problem']
[u'philippin', u'leader', u'arroyo', u'ask', u'cabinet', u'resign']
[u'pike', u'highlight', u'health', u'spend']
[u'pilot', u'porsch', u'driver', u'unhurt', u'plane', u'land']
[u'pipelin', u'support', u'seek', u'feder', u'fund']
[u'back', u'guarante']
[u'promis', u'long', u'campaign']
[u'polic', u'charg', u'teen', u'anim', u'bash']
[u'polic', u'concern', u'children', u'access', u'child', u'porn']
[u'polic', u'continu', u'robinval', u'bodi', u'inquiri']
[u'polic', u'dont', u'hesit', u'beach', u'rescu']
[u'polic', u'hail', u'surf', u'rescu']
[u'polic', u'hunt', u'broadbeach', u'attack']
[u'polic', u'hunt', u'store', u'bandit']
[u'polic', u'raid', u'worth', u'drug']
[u'polic', u'seek', u'wit']
[u'ponderosa', u'secessionist', u'guilti', u'fraud']
[u'poppi', u'farmer', u'tri', u'mcdonald', u'boss']
[u'port', u'author', u'back', u'dampier', u'secur', u'boost']
[u'posit', u'paper', u'address', u'asbesto', u'claim']
[u'protest', u'gather', u'outsid', u'propos', u'wooli', u'site']
[u'protest', u'evict', u'supermarket', u'site', u'ralli']
[u'push', u'potato', u'factori', u'run']
[u'amphetamin', u'produc', u'polic']
[u'queen', u'deepli', u'shock', u'london', u'terror', u'attack']
[u'racv', u'stand', u'licenc', u'driver', u'train', u'polici']
[u'rail', u'contractor', u'say', u'heart', u'problem', u'worker']
[u'rapper', u'sentenc', u'year', u'prison']
[u'owe', u'compens']
[u'reason', u'clear', u'terrorist', u'london', u'blair']
[u'regul', u'chang', u'music', u'brisban', u'ear']
[u'report', u'find', u'irrig', u'slash', u'water']
[u'resid', u'group', u'happi', u'master', u'plan', u'snub']
[u'reveng', u'mcewen', u'day', u'frustrat']
[u'rice', u'send', u'deputi', u'asean', u'secur', u'meet']
[u'erupt', u'dismiss']
[u'east', u'centr', u'stage']
[u'safeti', u'review', u'limit', u'train', u'speed']
[u'sandalwood', u'giant', u'sell']
[u'scheme', u'offer', u'career', u'chang', u'worker']
[u'scientist', u'step', u'closer', u'find', u'malaria']
[u'scientist', u'unravel', u'didgeridoo', u'secret']
[u'shark', u'sign', u'bronco', u'forward', u'mapp']
[u'soar', u'price', u'push', u'market']
[u'fatal', u'blast', u'london']
[u'speaker', u'escap', u'prosecut', u'alleg', u'travel']
[u'lanka', u'recal', u'arnold', u'west', u'indi', u'test']
[u'stakehold', u'agre', u'tradit', u'hunt', u'limit']
[u'storm', u'push', u'price', u'record', u'high']
[u'student', u'resign', u'union', u'senat', u'inquiri', u'tell']
[u'surgeri', u'sidelin', u'bode', u'season']
[u'survey', u'reveal', u'chines', u'idiot']
[u'talk', u'wine', u'bottl', u'chat', u'custom']
[u'tasair', u'start', u'canberra', u'servic']
[u'health', u'union', u'threaten', u'strike']
[u'tattersal', u'glitter', u'debut']
[u'teacher', u'recognis', u'indigen', u'effort']
[u'teacher', u'talk', u'reach', u'gridlock']
[u'tear', u'squar', u'moscow', u'learn', u'london']
[u'terror', u'london', u'blast', u'assembl', u'chief']
[u'terrorist', u'group', u'claim', u'respons', u'london']
[u'test', u'result', u'shed', u'light', u'diseas']
[u'toni', u'blair', u'speak', u'summit']
[u'tourist', u'flock', u'mine', u'hall', u'fame']
[u'tour', u'oper', u'fear', u'tougher', u'competit']
[u'townsvill', u'bring', u'mix', u'result']
[u'head', u'highway', u'crash']
[u'psychiatr', u'nurs', u'appoint', u'baxter']
[u'unemploy', u'drop']
[u'union', u'polic', u'commission', u'meet', u'plan']
[u'court', u'jail', u'report', u'leak', u'case']
[u'util', u'chief', u'front', u'estim', u'hear']
[u'vaughan', u'pont', u'seek', u'psycholog', u'point']
[u'govt', u'help', u'drought', u'affect', u'farmer']
[u'govt', u'strike', u'deal', u'retail', u'food']
[u'liber', u'catch', u'intern', u'stoush']
[u'newspap', u'buy', u'geraldton', u'asset']
[u'reject', u'leav', u'payout', u'comparison']
[u'terror', u'continu', u'bush']
[u'review', u'accident', u'death', u'defenc']
[u'wheatbelt', u'council', u'meet', u'focus']
[u'wine', u'fight', u'herald', u'start', u'pamplona', u'bull', u'fiesta']
[u'woman', u'guilti', u'murder', u'husband']
[u'work', u'aplenti', u'coal', u'mine', u'reopen']
[u'work', u'begin', u'exmouth', u'power', u'station', u'design']
[u'workcov', u'target', u'retail', u'investig']
[u'world', u'leader', u'condemn', u'london', u'blast']
[u'accus', u'crimin', u'arrest']
[u'admiralti', u'develop', u'drive', u'alderman', u'darwin']
[u'soften', u'drug', u'test']
[u'call', u'medicar', u'fraud', u'claim', u'probe']
[u'ambassador', u'warn', u'issu', u'visa', u'defector']
[u'appeal', u'board', u'restrict', u'say', u'balm']
[u'armstrong', u'thank', u'avoid', u'tour', u'pile']
[u'arthur', u'readi', u'workload', u'argentina']
[u'ashbourn', u'affair', u'committe', u'govt']
[u'attack', u'come', u'blue']
[u'aussi', u'mckain', u'sign', u'romanian', u'club']
[u'aussi', u'underdog', u'status', u'world', u'swim']
[u'australian', u'politician', u'wit', u'chao', u'london']
[u'australian', u'catch', u'london', u'blast']
[u'australian', u'wine', u'good', u'seller']
[u'australia', u'react', u'london', u'bomb']
[u'bali', u'survivor', u'tell', u'london', u'horror']
[u'ballet', u'leap', u'ahead', u'british', u'tour']
[u'bargara', u'run', u'seasid', u'residenti']
[u'basebal', u'softbal', u'drop', u'london', u'game']
[u'beatti', u'hear', u'cruis', u'ship', u'termin', u'opposit']
[u'bellami', u'sign', u'year', u'contract', u'blackburn']
[u'blaze', u'rip', u'chines', u'restaur']
[u'bomb', u'attack', u'stun', u'london']
[u'brack', u'confid', u'game', u'secur']
[u'britain', u'launch', u'major', u'terror', u'probe']
[u'british', u'media', u'delight', u'london', u'parisian', u'gloom']
[u'british', u'muslim', u'leader', u'condemn', u'attack']
[u'british', u'paper', u'mourn', u'attack']
[u'busi', u'usual', u'paper', u'takeov', u'loom']
[u'busselton', u'jetti', u'submiss', u'even', u'divid']
[u'bendigo', u'hous', u'afford', u'meet']
[u'camel', u'racer', u'head', u'west']
[u'cane', u'farmer', u'urg', u'chemic']
[u'central', u'asia', u'seek', u'base', u'pullout', u'deadlin']
[u'chief', u'minist', u'take', u'beatti', u'public']
[u'chines', u'diplomat', u'grant', u'visa']
[u'church', u'servic', u'pray', u'london', u'bomb', u'victim']
[u'citrus', u'canker', u'group', u'disband']
[u'citrus', u'export', u'beat', u'shipment']
[u'claim', u'hotel', u'profit', u'london', u'bomb']
[u'close', u'har', u'race', u'club', u'hope', u'resolut']
[u'coat', u'shock', u'olymp', u'ax']
[u'communiti', u'farewel', u'wagga', u'plane', u'crash', u'victim']
[u'connolli', u'customis', u'freo', u'line', u'dog', u'clash']
[u'consortium', u'target', u'muslim', u'market', u'halal', u'dinner']
[u'costa', u'urg', u'crack', u'dodgi', u'trucki']
[u'council', u'get', u'develop', u'applic', u'rush']
[u'councillor', u'okay', u'review', u'audit']
[u'council', u'releas', u'wast', u'collect', u'survey']
[u'council', u'offer', u'help', u'palm']
[u'crespo', u'return', u'chelsea']
[u'cricket', u'offici', u'review', u'secur', u'bomb']
[u'dairi', u'farmer', u'tell', u'watch', u'brazil', u'milk']
[u'decis', u'hwes', u'futur', u'hold']
[u'devast', u'olymp', u'team', u'return', u'london']
[u'distanc', u'educ', u'help', u'offer', u'remot']
[u'dragon', u'eel', u'squar', u'break']
[u'drought', u'take', u'toll', u'student']
[u'drug', u'gear', u'undergo', u'test']
[u'dutch', u'student', u'shoot', u'aceh']
[u'eagl', u'clash', u'chanc', u'roo', u'earn', u'respect']
[u'eel', u'storm', u'sink', u'dragon']
[u'elder', u'call', u'fraser', u'coast', u'dugong', u'agreement']
[u'elder', u'pedestrian', u'die', u'truck', u'accid']
[u'elector', u'commiss', u'clear', u'shire', u'misconduct']
[u'urg', u'monitor', u'batteri', u'recycl', u'plant']
[u'extra', u'polic', u'patrol', u'perth', u'train', u'station']
[u'eyewit', u'account', u'london', u'blast']
[u'farmer', u'action', u'control', u'feral', u'pig']
[u'farm', u'group', u'welcom', u'drought', u'offer']
[u'feder', u'govt', u'blame', u'doctor', u'shortag']
[u'dead', u'london', u'bomb', u'howard']
[u'fire', u'kill', u'australia', u'giant', u'anim', u'studi']
[u'match', u'feast', u'round']
[u'diplomat', u'chen', u'yonglin', u'grant', u'visa']
[u'frustrat', u'mcewen', u'tour', u'crash']
[u'fund', u'help', u'fight', u'nimbin', u'crime']
[u'agre']
[u'summit', u'resum']
[u'gerrard', u'liverpool', u'fan']
[u'gillespi', u'recent', u'form', u'concern', u'australia']
[u'gippsland', u'woman', u'give', u'local', u'insight', u'london']
[u'glen', u'inn', u'escape', u'face', u'court']
[u'gold', u'coast', u'high', u'thiev', u'favourit']
[u'golden', u'circl', u'unveil', u'logo', u'product', u'rang']
[u'govt', u'get', u'board', u'servic']
[u'govt', u'dark', u'detent', u'centr', u'manag']
[u'govt', u'prais', u'properti', u'purchas']
[u'group', u'threaten', u'attack', u'rome']
[u'hadden', u'odd', u'elector', u'boundari', u'shake']
[u'halloran', u'lawyer', u'begin', u'appeal', u'argument']
[u'heavi', u'rain', u'forecast', u'south', u'coast']
[u'high', u'speed', u'polic', u'chase', u'lead', u'arrest']
[u'holsworthi', u'barrack', u'upgrad']
[u'howard', u'offer', u'support', u'london', u'trip']
[u'hurrican', u'lash', u'jamaica', u'cuba', u'haiti']
[u'feel', u'like', u'boxer', u'say', u'tragic', u'mengin']
[u'injuri', u'black', u'clean', u'sweep']
[u'institut', u'studi', u'affect', u'malaria', u'mice']
[u'isra', u'border', u'polic', u'jail', u'abus', u'robberi']
[u'jail', u'beef', u'secur', u'measur']
[u'januari', u'want', u'serial', u'pest', u'wallabi']
[u'johnson', u'essendon', u'clash']
[u'jone', u'sideshow', u'bok']
[u'kangaroo', u'fall', u'short']
[u'keat', u'say', u'chang', u'pay', u'worker']
[u'killer', u'australian', u'secur', u'guard', u'iraq']
[u'kyli', u'visit', u'cancer', u'patient']
[u'lamb', u'export', u'clear']
[u'lazi', u'ullrich', u'attack', u'forget', u'say']
[u'leader', u'sign', u'condol', u'book']
[u'liber', u'parti', u'director', u'quit', u'work']
[u'liber', u'endors', u'candid', u'unley']
[u'licens', u'board', u'decid', u'alcohol', u'sale']
[u'lifesav', u'servic', u'ponder', u'rescu', u'databas']
[u'lion', u'fan', u'observ', u'minut', u'silenc']
[u'littl', u'pebbl', u'guilti', u'abus']
[u'local', u'prayer', u'say', u'london', u'bomb', u'victim']
[u'lolesi', u'sign', u'west', u'tiger']
[u'london', u'attack', u'despic', u'australian', u'islam', u'group']
[u'london', u'blast', u'pressur', u'phone', u'line']
[u'london', u'blast', u'sign', u'qaeda']
[u'london', u'bomb', u'death', u'toll', u'climb']
[u'london', u'hospit', u'pressur']
[u'london', u'pay', u'price', u'iraq', u'british']
[u'london', u'transport', u'resum']
[u'london', u'theatr', u'cancel', u'show', u'attack']
[u'enrol', u'forc', u'school', u'closur']
[u'magistr', u'declin', u'strip', u'club', u'offer']
[u'mahan', u'lead', u'scrambl', u'illinoi']
[u'burn', u'tongala', u'hous', u'blaze']
[u'charg', u'secur', u'guard', u'attack']
[u'die', u'newcastl', u'brawl']
[u'get', u'year', u'dismemb', u'dealer']
[u'hospit', u'kirribilli', u'incid']
[u'jail', u'kill', u'partner']
[u'jail', u'year', u'tripl', u'abduct']
[u'jail', u'home', u'invas']
[u'jail', u'year']
[u'hospit', u'roadsid', u'burn']
[u'market', u'subdu', u'wake', u'bomb']
[u'market', u'urg', u'stay', u'calm', u'london', u'attack']
[u'maroon', u'hagan', u'coach']
[u'mar', u'snicker', u'bar', u'buri']
[u'maywald', u'citrus', u'industri', u'law']
[u'mcgauran', u'urg', u'boost', u'horticultur', u'protect']
[u'mcgee', u'come', u'wors', u'tour', u'pile']
[u'michael', u'vaughan', u'talk', u'maxwel']
[u'minist', u'detail', u'prison', u'time', u'line']
[u'miss', u'mother', u'safe']
[u'boost', u'account', u'number']
[u'condemn', u'actor', u'farm', u'comment']
[u'play', u'unfair', u'dismiss', u'fear']
[u'stand', u'upper', u'hous', u'chang']
[u'rang', u'cross', u'minist', u'agenda']
[u'free', u'tortur', u'charg']
[u'naidoc', u'week', u'celebr', u'bring', u'elder']
[u'indonesian', u'polic', u'chief', u'swear']
[u'radio', u'boost', u'firefight']
[u'aussi', u'injur', u'blast']
[u'govt', u'boost', u'secur', u'rail', u'network']
[u'govt', u'accus', u'cover', u'diesel', u'spill']
[u'govt', u'urg', u'seek', u'feder', u'drought']
[u'ogradi', u'happi', u'tour', u'start']
[u'prepar', u'south', u'africa', u'test', u'seri']
[u'opposit', u'maintain', u'speaker', u'resign']
[u'origin', u'star', u'beef', u'cowboy', u'murray']
[u'pair', u'face', u'court', u'noosa', u'assault']
[u'patient', u'fight', u'court', u'inquiri', u'continu']
[u'perth', u'go', u'home', u'month', u'freak', u'accid']
[u'philippin', u'confirm', u'case', u'bird']
[u'philippin', u'minist', u'presid', u'resign']
[u'philippin', u'presid', u'stand', u'firm']
[u'diseas', u'fear', u'mount']
[u'group', u'happi', u'probe']
[u'plane', u'miss']
[u'plan', u'track', u'mount', u'panorama']
[u'discuss', u'aust', u'threat', u'level']
[u'polic', u'victim']
[u'polic', u'patrol', u'perth', u'public', u'transport']
[u'polic', u'presenc', u'step', u'melbourn']
[u'polic', u'probe', u'dubbo', u'death', u'seek', u'miss']
[u'polic', u'suspect', u'rapist', u'attack', u'woman']
[u'princ', u'charl', u'camilla', u'visit', u'bomb', u'victim']
[u'public', u'ask', u'dump', u'fish', u'local', u'river']
[u'public', u'ganmain', u'train', u'speed']
[u'qanta', u'offer', u'refund', u'concern', u'travel']
[u'railcorp', u'plan', u'byron', u'land', u'sale']
[u'rain', u'boost', u'water', u'suppli']
[u'rare', u'frog', u'surfac', u'coast', u'delug']
[u'rat', u'crackdown', u'wont', u'leav', u'peopl', u'homeless', u'mayor']
[u'region', u'profil', u'highlight', u'high', u'jobless', u'rate']
[u'religi', u'leader', u'guilti', u'molest', u'girl']
[u'resid', u'warn', u'dump', u'aquarium', u'fish']
[u'retir', u'urg', u'think', u'seachang', u'transit']
[u'ricki', u'pont', u'talk', u'maxwel']
[u'sasser', u'creator', u'get', u'suspend', u'sentenc']
[u'scientist', u'gene', u'mutat', u'melanoma']
[u'score', u'wound', u'botch', u'suicid', u'bomb', u'attempt']
[u'scotland', u'oppos', u'british', u'olymp', u'soccer', u'team']
[u'secur', u'alert', u'close', u'london', u'station']
[u'seven', u'australian', u'injur', u'london', u'attack']
[u'sewerag', u'upgrad', u'get', u'tenterfield']
[u'sign', u'warn', u'driver', u'bruce', u'highway', u'black', u'spot']
[u'silverston', u'say', u'secur', u'paramount']
[u'singleton', u'firm', u'forefront', u'export']
[u'slavkov', u'expel']
[u'special', u'report', u'process', u'consid']
[u'staff', u'evacu', u'melbourn', u'factori']
[u'sister', u'mountain', u'exclus', u'zone', u'remain']
[u'strand', u'english', u'tourist', u'watch', u'bomb', u'horror']
[u'sydney', u'prepar', u'london', u'style', u'attack']
[u'face', u'jail', u'time', u'victoria']
[u'chief', u'reflect', u'intern', u'wrangl']
[u'thousand', u'expect', u'visit', u'tennant']
[u'time', u'run', u'cours', u'submiss']
[u'time', u'devic', u'london', u'report']
[u'tourist', u'strand', u'outback', u'get', u'drench']
[u'trial', u'match', u'annual', u'event']
[u'tribun', u'appeal', u'court', u'say', u'balm']
[u'bomb', u'impedi', u'subsidi', u'talk']
[u'underground', u'line', u'reopen', u'rush', u'hour']
[u'uniform', u'quell', u'firefight', u'train']
[u'high', u'hop', u'veterinari', u'school']
[u'union', u'fight', u'loom', u'food', u'label']
[u'rais', u'terror', u'alert']
[u'wagga', u'communiti', u'farewel', u'plane', u'crash', u'victim']
[u'wallabi', u'readi', u'springbok']
[u'webber', u'expect', u'miracl', u'silverston']
[u'weed', u'growth', u'pose', u'threat']
[u'west', u'tamar', u'cyclist', u'head', u'china']
[u'whistleblow', u'anger', u'move', u'halt', u'morri']
[u'wind', u'farm', u'snub', u'give', u'hope', u'wast', u'dump', u'oppon']
[u'wineri', u'manag', u'unawar', u'contractor', u'woe']
[u'wool', u'grower', u'commit', u'mules', u'deadlin']
[u'world', u'sprinter', u'debat', u'go']
[u'young', u'gippsland', u'farmer', u'nation', u'award']
[u'hospit', u'bed', u'open', u'canberra', u'hospit']
[u'kill', u'india', u'accid']
[u'miss', u'ferri', u'sink']
[u'actress', u'gabor', u'suffer', u'stroke']
[u'alic', u'gear', u'camel']
[u'black', u'complet', u'lion', u'sweep']
[u'qaeda', u'statement', u'claim', u'london', u'bomb']
[u'urg', u'nuttal', u'respons', u'resign']
[u'ashbourn', u'parliamentari', u'probe', u'seek', u'minist']
[u'aspinal', u'name', u'primat', u'anglican', u'church']
[u'attack', u'cricket', u'place', u'say', u'vaughan']
[u'aussi', u'fight', u'life', u'blast']
[u'aussi', u'victim', u'hospit']
[u'australian', u'coupl', u'releas', u'hospit']
[u'bacteria', u'link', u'mouth', u'cancer']
[u'blind', u'report', u'prompt', u'warn', u'impot', u'drug']
[u'driver', u'describ', u'chao', u'blast']
[u'campbel', u'endors', u'effort', u'climat', u'chang']
[u'conman', u'face', u'order', u'repay', u'indigen', u'victim']
[u'construct', u'giant', u'formalis', u'indigen', u'agreement']
[u'daniel', u'seiz', u'lead', u'ohio']
[u'dead', u'hurrican', u'denni', u'weaken']
[u'death', u'toll', u'exceed']
[u'defiant', u'ullrich', u'pledg', u'mountain', u'attack']
[u'dope', u'lack', u'player', u'hurt', u'basebal', u'rogg']
[u'eagl', u'ground', u'despit', u'win', u'way']
[u'move', u'leaderboard', u'scottish', u'open']
[u'eritrean', u'communiti', u'give', u'thank', u'festiv']
[u'hospit', u'newcastl', u'freeway', u'crash']
[u'florida', u'gulf', u'coast', u'brace', u'killer', u'hurrican']
[u'rebel', u'leader', u'join', u'govern']
[u'back', u'plan', u'palestinian']
[u'leader', u'agre', u'doubl', u'africa']
[u'hold', u'promis', u'geldof']
[u'gerrard', u'carragh', u'sign', u'liverpool', u'deal']
[u'gosper', u'deni', u'term']
[u'govern', u'launch', u'campaign']
[u'grave', u'fear', u'hold', u'australian']
[u'heavi', u'snow', u'hamper', u'search', u'miss', u'plane']
[u'hick', u'health', u'deterior', u'father', u'say']
[u'hick', u'support', u'hold', u'vigil']
[u'hurrican', u'roar', u'caribbean']
[u'india', u'centr', u'swamp', u'rail', u'queri']
[u'indigen', u'contribut', u'celebr', u'naidoc']
[u'indonesian', u'presid', u'wahid', u'hospit']
[u'indonesian', u'fish', u'boat', u'destroy']
[u'islam', u'council', u'urg', u'cautious', u'respons', u'blast']
[u'jewish', u'group', u'welcom', u'accus', u'crimin', u'arrest']
[u'land', u'right', u'ralli', u'mark', u'naidoc', u'week']
[u'larkham', u'outstand', u'wallabi', u'crush', u'bok']
[u'lewi', u'lead', u'illinoi']
[u'lion', u'notch', u'fifth', u'straight']
[u'london', u'search', u'bomb', u'victim']
[u'london', u'dayer', u'ahead', u'plan']
[u'london', u'polic', u'search', u'wreckag', u'clue']
[u'london', u'polic', u'bomb', u'terrorist']
[u'malaysian', u'court', u'jail', u'author', u'anwar', u'book']
[u'marin', u'launch', u'oper', u'iraq']
[u'mark', u'minichiello', u'luke', u'macdougal']
[u'mcewen', u'level', u'score', u'rival', u'boonen']
[u'mclaren', u'pace', u'silverston']
[u'studi', u'nuclear', u'power', u'europ']
[u'music', u'legend', u'perform', u'vandross', u'memori']
[u'nasa', u'say', u'shoot', u'distant', u'comet', u'leav', u'powder']
[u'nigerian', u'sentenc', u'stone']
[u'novelist', u'claud', u'simon', u'die']
[u'south', u'coast', u'get', u'soak']
[u'secur', u'steadi', u'wake', u'london', u'bomb']
[u'overcrowd', u'forc', u'prison', u'transfer']
[u'pittman', u'fall', u'short', u'rome']
[u'polic', u'hunt', u'london', u'bomber']
[u'power', u'pile', u'miseri', u'dee']
[u'power', u'surg', u'lead', u'dee']
[u'presid', u'mount', u'rushmor', u'facial']
[u'priddi', u'steal', u'late', u'panther']
[u'properti', u'develop', u'miss', u'plane']
[u'publican', u'demand', u'action', u'rugbi', u'tour', u'smash']
[u'camel', u'race', u'season', u'kick']
[u'rabbitoh', u'shock', u'shark']
[u'relief', u'fund', u'launch', u'london', u'bomb', u'victim']
[u'restaur', u'offer', u'diner', u'pitch', u'blind', u'date']
[u'robbi', u'mcewen', u'allan', u'davi']
[u'search', u'miss', u'plane', u'call']
[u'secur', u'team', u'head', u'assist', u'blast', u'probe']
[u'concern', u'zealand', u'miss']
[u'south', u'africa', u'shock', u'mexico', u'open']
[u'springborg', u'premier', u'say', u'hanson']
[u'station', u'redevelop', u'chang', u'embarrass']
[u'stephen', u'larkham', u'matt', u'giteau', u'john', u'smite']
[u'storm', u'blot', u'raider']
[u'swan', u'close']
[u'swift', u'continu', u'win']
[u'sydney', u'coupl', u'releas', u'london', u'hospit']
[u'taliban', u'claim', u'kill', u'soldier']
[u'tasmanian', u'sever', u'injur', u'london', u'attack']
[u'terrorist', u'threat', u'heighten', u'downer']
[u'foreign', u'minist', u'say', u'intellig']
[u'thompson', u'lion', u'line']
[u'hospit', u'dead', u'north', u'accid']
[u'tiger', u'coach', u'terri', u'wallac']
[u'tiger', u'domin', u'bomber']
[u'tiger', u'narrow', u'half', u'time', u'lead']
[u'tour', u'face', u'mountain', u'climb']
[u'aussi', u'critic', u'injur', u'blast']
[u'kill', u'injur', u'crash', u'franc']
[u'underground', u'bomb', u'simultan']
[u'union', u'say', u'worker', u'pull', u'mass', u'sicki']
[u'lose', u'lead', u'scienc', u'engin', u'studi']
[u'refus', u'franc', u'flight', u'entri']
[u'attack', u'north', u'korea', u'rice']
[u'venus', u'target', u'myskina', u'open']
[u'vietnam', u'say', u'restaur', u'serv', u'gild', u'free']
[u'violenc', u'forc', u'nurs', u'quit', u'union', u'say']
[u'wallabi', u'dismiss', u'talk', u'spite', u'contest']
[u'warn', u'post', u'counti', u'centuri']
[u'woman', u'jail', u'zeta', u'jone', u'death', u'threat']
[u'world', u'market', u'shake', u'london', u'bomb', u'attack']
[u'world', u'deal', u'caus', u'terror', u'blair']
[u'injur', u'turkish', u'bomb', u'attack']
[u'million', u'order', u'evacu', u'hurrican']
[u'evacu', u'birmingham', u'secur', u'alert']
[u'kill', u'baghdad', u'suicid', u'bomb']
[u'advic', u'paedophil', u'sentenc', u'week']
[u'alonso', u'seiz', u'british', u'grand', u'prix', u'pole']
[u'anglican', u'primat', u'differ', u'kettl', u'fish']
[u'armstrong', u'discov', u'weak', u'vino', u'attack']
[u'australia', u'right', u'track', u'say', u'buchanan']
[u'bayliss', u'fourth', u'qualifi', u'motogp']
[u'beatti', u'back', u'health', u'minist', u'amid', u'resign']
[u'birmingham', u'centr', u'empti', u'london', u'probe', u'continu']
[u'bishop', u'reject', u'call', u'arroyo', u'quit']
[u'black', u'dump', u'howlett', u'nation']
[u'bomb', u'victim', u'rememb']
[u'braith', u'anasta', u'wairangi', u'koopu']
[u'british', u'mosqu', u'alight']
[u'cathol', u'bishop', u'split', u'support', u'philippin']
[u'chen', u'claim', u'proof', u'chines', u'ring']
[u'child', u'abus', u'survivor', u'criticis', u'anglican']
[u'council', u'urg', u'press', u'afford', u'hous']
[u'crow', u'surviv', u'final', u'quarter', u'fade']
[u'dead', u'hurrican', u'denni', u'gather', u'strength']
[u'dead', u'storm', u'sydney']
[u'defector', u'urg', u'chines', u'offici', u'step']
[u'diabet', u'awar', u'campaign', u'begin']
[u'discoveri', u'astronaut', u'arriv', u'florida']
[u'docker', u'roll', u'dog', u'west']
[u'dozen', u'arrest', u'italian', u'secur', u'oper']
[u'dozen', u'fear', u'drown', u'indonesia', u'ferri', u'sink']
[u'drug', u'prison', u'figur', u'disgrac', u'lib']
[u'england', u'aust']
[u'evacu', u'order', u'hurrican', u'head', u'coast']
[u'famili', u'miss', u'relat', u'tell']
[u'famili', u'friend', u'gather', u'corbi', u'birthday']
[u'fast', u'finish', u'knight', u'stun', u'cowboy']
[u'ferguson', u'unfaz', u'ferdinand', u'deadlock']
[u'follow', u'attack', u'like', u'say', u'analyst']
[u'atsic', u'boss', u'win', u'award']
[u'wound', u'round', u'bull', u'run']
[u'giant', u'panda', u'give', u'birth']
[u'govt', u'blame', u'labor', u'detent', u'centr', u'delay']
[u'govt', u'defend', u'prison', u'manag', u'drug']
[u'govt', u'offer', u'financi', u'assist', u'counsel']
[u'govt', u'nurs', u'contract', u'arrang', u'fail']
[u'gregan', u'clear', u'damag']
[u'take', u'lead', u'ohio']
[u'health', u'team', u'collect', u'rave', u'parti', u'drug', u'data']
[u'henri', u'poke', u'woodward', u'seri', u'whitewash']
[u'heritag', u'list', u'tree', u'attack']
[u'hick', u'need', u'vegemit', u'say', u'habib']
[u'hiddink', u'firm', u'socceroo', u'report']
[u'howard', u'announc', u'bomb', u'victim']
[u'hurrican', u'denni', u'head', u'gulf', u'coast']
[u'idea', u'festiv', u'record', u'turn']
[u'immigr', u'head', u'resign']
[u'inform', u'express', u'spread', u'social', u'servic', u'messag']
[u'japan', u'launch', u'satellit', u'probe', u'black', u'hole']
[u'labor', u'urg', u'govt', u'step', u'rail', u'secur']
[u'labor', u'support', u'troop', u'commit', u'afghanistan']
[u'lafeb', u'hold', u'nerv', u'share', u'scottish', u'open', u'lead']
[u'leader', u'condemn', u'mosqu', u'attack']
[u'lewi', u'cruis', u'illinoi']
[u'lion', u'excit', u'eagl', u'clash']
[u'local', u'rider', u'win', u'camel', u'time']
[u'london', u'blast', u'prompt', u'chemic', u'regul']
[u'london', u'bomb', u'attack', u'wont', u'sway', u'afghan', u'troop', u'decis']
[u'london', u'polic', u'bomb', u'rip']
[u'london', u'public', u'event', u'resum', u'shadow', u'bomb']
[u'luxembourg', u'decid', u'treati']
[u'kill', u'wild', u'weather', u'hit', u'coast']
[u'dead', u'iraq', u'suicid', u'blast']
[u'mcgee', u'happi', u'hill']
[u'michael', u'hagan', u'graham', u'murray']
[u'miln', u'boot', u'saint', u'slaughter', u'blue']
[u'mine', u'compani', u'receiv', u'gold', u'survey', u'result']
[u'asio', u'chief', u'appoint']
[u'korea', u'agre', u'nuclear', u'talk']
[u'bodi', u'formal', u'identifi', u'polic']
[u'terrorist', u'devic', u'birmingham', u'polic']
[u'opal', u'buyer', u'trade', u'gem', u'winton']
[u'opal', u'china']
[u'opposit', u'keep', u'pressur', u'arroyo']
[u'defend', u'vanston', u'wake', u'dept', u'head']
[u'polic', u'deni', u'london', u'link', u'birmingham', u'lift']
[u'pont', u'elect', u'field', u'lord']
[u'prayer', u'say', u'london', u'bomb', u'victim']
[u'primat', u'urg', u'church', u'proactiv']
[u'health', u'minist', u'reject', u'resign', u'call']
[u'rabbitoh', u'reliev', u'lose', u'streak']
[u'rainbow', u'warrior', u'sink', u'rememb', u'year']
[u'rescu', u'author', u'hope', u'resum', u'aerial', u'search']
[u'rural', u'dental', u'servic', u'joke']
[u'safeti', u'watchdog', u'probe', u'alleg', u'armi', u'bulli']
[u'search', u'miss', u'plane', u'widen']
[u'ship', u'industri', u'reflect', u'iron', u'baron', u'spill']
[u'afghan', u'policemen', u'behead']
[u'smith', u'smash', u'tripl', u'centuri']
[u'srebrenica', u'victim', u'take', u'anniversari', u'burial']
[u'stanhop', u'welcom', u'organ', u'donor', u'rise']
[u'steve', u'folk', u'toni', u'kemp']
[u'suspici', u'death', u'investig']
[u'taliban', u'claim', u'miss', u'soldier', u'behead']
[u'tasmanian', u'catch', u'blast', u'expect', u'recov']
[u'anglican', u'church', u'australia', u'elect']
[u'head', u'australia', u'organis', u'asio']
[u'anasta', u'spark', u'bulldog', u'triumph']
[u'tiger', u'rack', u'trot']
[u'sheen', u'john', u'cartwright']
[u'britain', u'plan', u'major', u'iraq', u'withdraw', u'report']
[u'venus', u'earth', u'moscow']
[u'wallabi', u'sour', u'goug', u'claim']
[u'weather', u'continu', u'restrict', u'plane', u'search']
[u'weather', u'hinder', u'search', u'miss', u'plane']
[u'ween', u'final', u'get', u'win', u'feel']
[u'hail', u'africa', u'initi']
[u'wild', u'weather', u'sydney']
[u'win', u'kestrel', u'darter']
[u'woman', u'arrest', u'wake', u'drug', u'bust']
[u'academ', u'label', u'petrol', u'sniff', u'program', u'failur']
[u'act', u'presid', u'win', u'kyrgyz', u'elect', u'landslid']
[u'campaign', u'focus', u'diabet', u'diagnosi']
[u'afghan', u'secur', u'forc', u'target', u'latest', u'violenc']
[u'anglican', u'leader', u'join', u'debat']
[u'studi', u'abroad', u'deal']
[u'armstrong', u'lose', u'yellow', u'rasmussen', u'win', u'stage']
[u'aspinal', u'expert', u'costello']
[u'rise']
[u'attack', u'kill', u'dozen', u'iraq']
[u'aussi', u'miss', u'bomb', u'victim']
[u'aussi', u'look', u'win', u'start', u'argentina']
[u'aust', u'bank', u'posit', u'report', u'card']
[u'australia', u'ask', u'japan', u'hold', u'beef', u'tariff', u'steadi']
[u'australian', u'fisher', u'accus', u'help', u'shark']
[u'author', u'clarifi', u'opposit', u'shift', u'claim']
[u'crowd', u'celebr', u'naidoc', u'week', u'alic', u'spring']
[u'save', u'crime', u'victim', u'take', u'stand']
[u'bird', u'watcher', u'say', u'govt', u'right', u'decis', u'wind']
[u'blue', u'stare', u'barrel', u'wooden', u'spoon']
[u'bodi', u'recov', u'london', u'bomb', u'site']
[u'bomb', u'attack', u'wound', u'turkey']
[u'bomber', u'rebuild', u'say', u'sheedi']
[u'book', u'highlight', u'women', u'treatment', u'indigen']
[u'brack', u'highlight', u'game', u'boost']
[u'brett', u'interview']
[u'briton', u'mark', u'anniversari', u'wwii']
[u'burial', u'mark', u'anniversari', u'srebrenica', u'genocid']
[u'busi', u'chamber', u'call', u'job', u'boost']
[u'farmer', u'practis', u'human', u'mules']
[u'canker', u'program', u'continu', u'despit', u'group', u'disband']
[u'care', u'urg', u'tassi', u'devil', u'diseas', u'declar']
[u'carr', u'choos', u'site', u'desalin', u'plant']
[u'cattl', u'price', u'sizzl', u'suppli']
[u'champ', u'iron', u'rival', u'time']
[u'charg', u'follow', u'chase', u'polic']
[u'china', u'blast', u'australia', u'defector', u'visa']
[u'china', u'blast', u'kill', u'trap', u'score']
[u'chines', u'compani', u'develop', u'aid', u'drug']
[u'chopper', u'begin', u'search', u'miss', u'coupl']
[u'clark', u'clinch', u'scottish', u'open']
[u'comment', u'captain']
[u'commod', u'boost', u'output', u'growth', u'access', u'econom']
[u'communiti', u'clean', u'wild', u'weather']
[u'confer', u'hear', u'support', u'health', u'worker']
[u'contractor', u'fin', u'westralia']
[u'controversi', u'pulp', u'consid', u'vital']
[u'costello', u'accus', u'bulli', u'liber']
[u'costello', u'hit', u'head', u'anglican', u'church']
[u'council', u'back', u'turley', u'bush', u'rush', u'push']
[u'councillor', u'lament', u'frequent', u'servic', u'collaps']
[u'council', u'urg', u'approv', u'saleyard']
[u'court', u'impos', u'secreci', u'order', u'case']
[u'craig', u'concern', u'fade', u'crow']
[u'date', u'zimbabw', u'shanti', u'town', u'crackdown', u'report']
[u'defiant', u'london', u'open', u'busi']
[u'diabet', u'advertis', u'defend']
[u'discoveri', u'prepar', u'launch']
[u'drain', u'benefit', u'rate', u'rise']
[u'dugong', u'hunt', u'agreement', u'draw', u'mix', u'respons']
[u'ead', u'disappoint', u'faulkner', u'season', u'end']
[u'elder', u'woman', u'die', u'crash']
[u'endur', u'australian']
[u'england', u'warn', u'say', u'victori', u'pont']
[u'driver', u'travel', u'franc', u'safeti', u'meet']
[u'fairfax', u'enter', u'world', u'date']
[u'famili', u'seek', u'expos', u'irish', u'killer']
[u'farm', u'group', u'rais', u'doubt', u'crop']
[u'faxon', u'take', u'long', u'road', u'open']
[u'fear', u'chang', u'silenc', u'whistleblow']
[u'feder', u'fund', u'boost', u'research']
[u'feder', u'tell', u'govt', u'crack', u'drug']
[u'destroy', u'leyburn', u'hous']
[u'destroy', u'sunshin', u'coast', u'landmark']
[u'corner', u'gambl', u'pay', u'montoya']
[u'brickwork', u'develop', u'attract', u'critic']
[u'herb', u'festiv', u'head', u'hurt', u'london', u'bomb']
[u'forum', u'spotlight', u'ocean', u'manag']
[u'crash', u'baffl', u'polic']
[u'fourth', u'commando', u'dead', u'afghanistan']
[u'franc', u'russia', u'advanc', u'final']
[u'franc', u'propos', u'wide', u'terror', u'relief', u'effort']
[u'fruiti', u'explos', u'leav', u'children', u'minor', u'injur']
[u'funer', u'servic', u'pay', u'tribut', u'lead', u'judg']
[u'gang', u'rivalri', u'think', u'ireland']
[u'gaudio', u'outclass', u'wawrinka', u'gstaad', u'final']
[u'gene', u'produc', u'drought', u'resist', u'crop']
[u'glori', u'mcmahon', u'player', u'revolt', u'claim']
[u'goulburn', u'district', u'welcom', u'good', u'rain']
[u'govt', u'crack', u'illeg', u'fish', u'boat']
[u'govt', u'green', u'light', u'port', u'phillip', u'trial', u'dredg']
[u'govt', u'ignor', u'plight', u'koala', u'say', u'minist']
[u'govt', u'reform', u'drive', u'youth', u'tafe', u'program']
[u'govt', u'reject', u'cultur', u'centr', u'claim']
[u'govt', u'tinto', u'strike', u'royalti', u'deal']
[u'govt', u'discuss', u'public', u'sector', u'pariti']
[u'govt', u'studi', u'margaret', u'river', u'updat']
[u'govt', u'indigen', u'cultur', u'centr']
[u'govt', u'urg', u'boost', u'public', u'transport']
[u'urg', u'check', u'diabet']
[u'guantanamo', u'command', u'remov', u'duti']
[u'har', u'race', u'hit', u'strap']
[u'harrison', u'join', u'rooster']
[u'hayden', u'stop', u'rossi', u'victori']
[u'health', u'care', u'confer', u'discuss', u'patel', u'case']
[u'health', u'worker', u'begin', u'work', u'ban']
[u'hear', u'decid', u'morri', u'bias', u'claim']
[u'hird', u'sheedi', u'say', u'bomber', u'miss', u'final']
[u'histori', u'wallabi', u'elli', u'park', u'return']
[u'home', u'loan', u'approv']
[u'howard', u'defiant', u'propos']
[u'howard', u'deni', u'knowledg', u'basra', u'troop', u'plan']
[u'howard', u'outlin', u'econom', u'need', u'chang']
[u'howard', u'stand', u'farmer', u'vanston']
[u'hurrican', u'head', u'north', u'hammer', u'coast']
[u'industri', u'tell', u'overhaul', u'opal', u'imag']
[u'inquest', u'year', u'miss', u'person', u'case']
[u'clear', u'blair', u'improprieti', u'game']
[u'iraqi', u'suspect', u'suffoc', u'polic', u'custodi']
[u'judd', u'clear', u'play', u'lion']
[u'kimberley', u'water', u'transport', u'studi', u'face', u'hurdl']
[u'leski']
[u'leski', u'inquest', u'hear', u'evid']
[u'letter', u'howard', u'corbi']
[u'level', u'cross', u'safeti', u'weekend']
[u'light', u'rail', u'transport', u'option', u'say', u'planner']
[u'local', u'back', u'power', u'plant', u'propos']
[u'local', u'ngos', u'combin', u'form', u'pango']
[u'local', u'softbal', u'lose', u'olymp', u'medal', u'chanc']
[u'london', u'bomb', u'trigger', u'sydney']
[u'longreach', u'eventu', u'polic', u'station']
[u'luke', u'robert', u'celebr', u'team', u'yellow']
[u'luxembourg', u'say', u'constitut']
[u'major', u'disast', u'declar', u'hurrican', u'roar', u'ashor']
[u'kill', u'warwick', u'farm', u'accid']
[u'marriag', u'failur', u'fault', u'say', u'warn']
[u'martin', u'expand', u'ministri']
[u'medallion', u'commemor', u'wwii', u'anniversari']
[u'media', u'bodi', u'state', u'fund']
[u'mine', u'stock', u'bank', u'push', u'ord']
[u'minist', u'consid', u'bomen', u'idea']
[u'minist', u'review', u'court', u'sentenc', u'procedur']
[u'injuri', u'pamplona', u'bull']
[u'iron', u'sign', u'china']
[u'morri', u'inquiri', u'hop', u'hear', u'nuttal']
[u'mother', u'fli', u'london', u'daughter', u'hurt']
[u'murray', u'come', u'hard', u'cowboy', u'commit']
[u'nadal', u'secur', u'swedish', u'open']
[u'asio', u'head', u'urg', u'review', u'secur']
[u'nation', u'park', u'spark', u'job', u'worri']
[u'pool', u'project', u'attract', u'builder']
[u'newspap', u'employe', u'forc', u'cash', u'holiday']
[u'nicklaus', u'call', u'time', u'year']
[u'korean', u'tourist', u'sydney']
[u'quick', u'answer', u'london', u'investig']
[u'request', u'basra', u'troop']
[u'nrma', u'emphasis', u'young', u'driver', u'safeti']
[u'govt', u'decid', u'byron', u'develop']
[u'govt', u'pump', u'school']
[u'ohair', u'claim', u'maiden', u'british', u'open', u'berth']
[u'opal', u'beat', u'host', u'nation', u'china']
[u'opposit', u'fish', u'claim', u'attack']
[u'pagan', u'defend', u'fevola', u'field', u'behaviour']
[u'palm', u'island', u'tell', u'polic', u'concern']
[u'pledg', u'help', u'corbi']
[u'polic', u'appeal', u'help', u'identifi', u'london', u'bomber']
[u'polic', u'arrest', u'heathrow', u'airport']
[u'polic', u'commission', u'talk', u'staff', u'number', u'visit']
[u'polic', u'investig', u'late', u'night', u'face', u'slash']
[u'polic', u'lament', u'drink', u'driver']
[u'polic', u'seek', u'bomb', u'footag']
[u'polic', u'tell', u'attend', u'mickelberg', u'hear']
[u'pont', u'star', u'aussi', u'victori']
[u'pont', u'england']
[u'potter', u'buff', u'win', u'audienc', u'author']
[u'power', u'hurrican', u'denni', u'cross', u'coast']
[u'premier', u'hear', u'communiti', u'concern', u'cruis', u'ship']
[u'properti', u'develop', u'confirm', u'dead', u'plane', u'crash']
[u'public', u'awar', u'import', u'reduc', u'terrorist']
[u'fast', u'track', u'secur', u'plan', u'bomb']
[u'rain', u'forc', u'race', u'locat']
[u'ranger', u'oper', u'face', u'fine', u'safeti', u'breach']
[u'rare', u'weather', u'lead', u'massiv', u'clean']
[u'rasmussen', u'achiev', u'tour', u'dream']
[u'cross', u'warn', u'bogus', u'bomb', u'appeal', u'email']
[u'report', u'find', u'solomon', u'problem', u'simmer']
[u'rescuer', u'continu', u'grim', u'search', u'miss', u'plane']
[u'resign', u'immigr', u'head', u'anger', u'lawyer']
[u'reward', u'offer', u'miss', u'artefact']
[u'ruddock', u'look', u'state', u'terror', u'fight']
[u'russian', u'shop', u'explos', u'kill']
[u'saint', u'reach', u'form', u'koschitzk']
[u'scientist', u'examin', u'death', u'babi', u'dolphin']
[u'search', u'find', u'miss', u'famili']
[u'search', u'miss', u'plane', u'continu']
[u'second', u'stage', u'work', u'start', u'ring', u'road']
[u'secur', u'scare', u'close', u'suprem', u'court']
[u'seven', u'iraqi', u'soldier', u'kill', u'checkpoint', u'battl']
[u'sheen', u'play', u'tiger', u'win', u'streak']
[u'sieg', u'close', u'nearbi', u'school']
[u'skateboard', u'take', u'great', u'leap', u'great', u'wall']
[u'steffensen', u'take', u'second', u'place', u'athen']
[u'street', u'close', u'charter', u'tower', u'music']
[u'stricter', u'rule', u'plan', u'rainwat', u'tank', u'rebat']
[u'subsidi', u'deadlin', u'approach']
[u'take', u'small', u'fish', u'worst', u'offenc', u'minist']
[u'teen', u'face', u'murder', u'charg', u'brawl']
[u'eagl', u'beatabl', u'say', u'matthew']
[u'treasur', u'seek', u'advic', u'decis']
[u'thousand', u'honour', u'britain', u'dead']
[u'trail', u'mishap', u'dog', u'emerg', u'respons']
[u'treasur', u'seek', u'advic', u'vizard', u'case']
[u'trio', u'confirm', u'dead', u'alp', u'crash']
[u'arrest', u'high', u'speed', u'chase']
[u'underworld', u'link', u'reveal', u'leski', u'hear']
[u'liber', u'good', u'shape', u'costello']
[u'violent', u'incid', u'bendigo', u'weekend']
[u'label', u'polit', u'correct']
[u'fail', u'ditch', u'effort', u'save', u'ralli', u'aust']
[u'walker', u'hurt', u'bald', u'rock', u'nation', u'park']
[u'wallabi', u'recal', u'injur', u'trio']
[u'west', u'bank', u'secur', u'barrier', u'rout', u'approv']
[u'woman', u'releas', u'macleay', u'island', u'stand']
[u'woolford', u'barrett', u'marsh', u'charg']
[u'work', u'bendigo', u'ahead']
[u'world', u'class', u'barkindji', u'biospher', u'reserv', u'recognis']
[u'young', u'mother', u'support', u'group', u'fund']
[u'yuendumu', u'council', u'suspend', u'short', u'term']
[u'saleyard', u'approv', u'central', u'tableland']
[u'iraqi', u'kill', u'fight', u'studi']
[u'acci', u'endeavour', u'eas', u'concern']
[u'actu', u'plan', u'heighten', u'campaign']
[u'tribun', u'enjoy', u'night']
[u'alic', u'spring', u'host', u'indigen', u'job', u'inquiri']
[u'ord', u'dip', u'slight']
[u'analyst', u'predict', u'telstra', u'cut']
[u'offer', u'loan', u'help', u'needi']
[u'anglican', u'bishop', u'voic', u'fear', u'chang']
[u'arm', u'arrest', u'dog', u'death']
[u'armstrong', u'readi', u'alpin', u'challeng']
[u'asio', u'check', u'hold', u'qasim', u'visa', u'lawyer']
[u'aussi', u'year', u'tour', u'kimberley', u'pilbara']
[u'australian', u'death', u'convict', u'lose', u'vietnam', u'appeal']
[u'australian', u'clean', u'sweep', u'motiv']
[u'australia', u'philippin', u'join', u'forc', u'dirti']
[u'author', u'probe', u'fatal', u'mishap']
[u'author', u'probe', u'woolgoolga', u'school']
[u'babi', u'shield', u'fatal', u'gunbattl']
[u'road', u'tourism', u'opposit']
[u'barrett', u'marsh', u'plead', u'guilti']
[u'barrett', u'marsh', u'plead', u'guilti', u'anasta', u'join']
[u'bear', u'sight', u'semi']
[u'beatti', u'announc', u'gold', u'coast', u'hospit', u'site']
[u'bet', u'exchang', u'cabinet', u'agenda']
[u'fish', u'kill', u'investig']
[u'bigger', u'prize', u'pool', u'boost', u'race']
[u'blair', u'vow', u'defeat', u'terrorist', u'bomb', u'toll', u'rise']
[u'bogut', u'like', u'miss', u'boomer', u'nation', u'event']
[u'bomb', u'scare', u'close', u'warsaw', u'metro']
[u'boral', u'plan', u'thornton', u'concret', u'plant']
[u'broom', u'lifesav', u'good', u'form', u'carniv']
[u'bull', u'continu', u'charg', u'pamplona']
[u'busi', u'reject', u'call', u'beef']
[u'butcher', u'fin', u'sell', u'perch', u'barramundi']
[u'cabinet', u'consid', u'send', u'troop', u'afghanistan']
[u'date', u'plan']
[u'canberra', u'institut', u'back', u'promot', u'plan']
[u'carr', u'south', u'east', u'asbesto', u'snub']
[u'cat', u'test', u'port', u'away', u'form']
[u'childcar', u'industri', u'struggl', u'retain', u'staff']
[u'children', u'school', u'fish']
[u'china', u'blast', u'toll', u'rise']
[u'church', u'england', u'open', u'women', u'bishop']
[u'cleric', u'defenc', u'osama', u'spark', u'debat']
[u'coastwatch', u'rethink', u'approach', u'illeg', u'fish']
[u'communiti', u'mourn', u'properti', u'develop']
[u'compani', u'abl', u'deal', u'coal', u'industri', u'downturn']
[u'concern', u'rais', u'japanes', u'tariff']
[u'consortium', u'win', u'smartcard', u'deal']
[u'consult', u'disput', u'crop', u'claim']
[u'cooper', u'tell', u'explain', u'stay', u'motion']
[u'costa', u'rican', u'hospit', u'kill']
[u'council', u'back', u'power', u'station', u'studi']
[u'council', u'consid', u'ashley', u'bridg']
[u'council', u'issu', u'illeg', u'clear', u'warn']
[u'council', u'say', u'bendigo', u'melbourn', u'bus', u'slow']
[u'council', u'fight', u'snub']
[u'council', u'urg', u'local', u'labour', u'build', u'pool']
[u'court', u'adjourn', u'natasha', u'ryan', u'scott', u'black', u'hear']
[u'court', u'dismiss', u'doubl', u'fatal', u'charg']
[u'court', u'overturn', u'french', u'cycl']
[u'croc', u'beat', u'find', u'fleme', u'replac']
[u'crouch', u'liverpool', u'figo', u'captur', u'unlik']
[u'crown', u'land', u'rent', u'freez', u'help', u'grazier']
[u'dairi', u'farm', u'look', u'milk', u'suppli']
[u'death', u'toll', u'rise', u'london', u'blast']
[u'develop', u'stand', u'bulli', u'hous', u'plan']
[u'open', u'sandgat', u'handl', u'centr']
[u'diamond', u'compani', u'doesnt', u'mind', u'vacuum']
[u'domaszewicz', u'challeng', u'coron', u'order']
[u'dont', u'fenc', u'say', u'anim', u'behaviour', u'expert']
[u'driver', u'urg', u'shop', u'cheaper', u'fuel']
[u'ethanol', u'industri', u'wait', u'grain', u'grower']
[u'eureka', u'hotel', u'restor', u'herald', u'thuringowa']
[u'exhibit', u'provid', u'break', u'hill', u'snapshot']
[u'expert', u'say', u'welfar', u'shift', u'boost', u'north', u'coast']
[u'expert', u'fear', u'worsen', u'crown', u'thorn', u'problem']
[u'express', u'seek', u'tugun', u'bypass']
[u'farmer', u'rent', u'respit', u'drought']
[u'fenc', u'band', u'open', u'music', u'festiv']
[u'ferri', u'oval', u'sale', u'get', u'council']
[u'fijian', u'militari', u'leader', u'see', u'anarchi', u'uniti']
[u'flood', u'prone', u'nullarbor', u'access', u'road', u'upgrad']
[u'fluorid', u'tenterfield', u'agenda']
[u'forc', u'cut', u'possibl', u'newcastl', u'univers']
[u'forum', u'discuss', u'dubbo', u'social', u'problem']
[u'french', u'ponder', u'comeback', u'drug', u'appeal', u'victori']
[u'fresh', u'snow', u'revitalis', u'selwyn']
[u'frost', u'slow', u'pastur', u'growth', u'crop', u'damag']
[u'fugit', u'qaeda', u'suspect', u'recaptur', u'afghan']
[u'fund', u'warn', u'univers']
[u'gladston', u'parent', u'survey', u'child', u'need']
[u'glen', u'inn', u'crash', u'leav', u'woman', u'critic', u'condit']
[u'govt', u'celebr', u'ararat', u'rail', u'anniversari']
[u'govt', u'dive', u'coffer', u'help', u'fund', u'longreach', u'pool']
[u'govt', u'investig', u'fish', u'licenc', u'loophol']
[u'govt', u'say', u'gunn', u'commit', u'tasmania']
[u'govt', u'afghan', u'troop', u'announc']
[u'govt', u'urg', u'consid', u'portland', u'port', u'option']
[u'grant', u'earli', u'return']
[u'green', u'group', u'welcom', u'charg']
[u'group', u'urg', u'accept', u'hospit', u'site', u'decis']
[u'destroy', u'state', u'power', u'say', u'chamber', u'commerc']
[u'gulf', u'resourc', u'plan', u'aim', u'long', u'term']
[u'hayden', u'return', u'australia', u'field']
[u'heritag', u'villag', u'black']
[u'high', u'petrol', u'price', u'justifi', u'say', u'fuelwatch']
[u'high', u'school', u'tutor', u'escap', u'jail', u'student']
[u'histor', u'bridg', u'restor', u'near', u'complet']
[u'hop', u'teach', u'hospit', u'attract', u'region']
[u'hopkin', u'flick', u'open', u'citi']
[u'unbias', u'bundaberg', u'commission', u'vow']
[u'murder', u'film', u'maker', u'gogh', u'religion']
[u'indigen', u'asian', u'program', u'highlight', u'darwin', u'festiv']
[u'indigen', u'health', u'major', u'problem', u'report']
[u'indigo', u'valley', u'famili', u'flee', u'hous', u'blaze']
[u'industri', u'action', u'threaten', u'propos', u'polic']
[u'inform', u'caravan', u'rapist', u'hunt']
[u'innisfail', u'win', u'tidi', u'town', u'titl']
[u'investig', u'piec', u'plane', u'crash']
[u'chang', u'fail', u'impact', u'employ', u'expect']
[u'johnson', u'batman', u'score', u'track', u'victori', u'zagreb']
[u'koori', u'court', u'open', u'mildura']
[u'labor', u'urg', u'palmer', u'return', u'secur', u'post']
[u'latrob', u'plan', u'resurrect', u'cemeteri']
[u'lebanon', u'blast', u'kill', u'wound', u'politician']
[u'legal', u'centr', u'expect', u'face', u'grow', u'demand']
[u'lion', u'selwood', u'latest', u'rise', u'star']
[u'lobster', u'cook', u'studi', u'help', u'industri']
[u'local', u'school', u'share', u'revamp']
[u'london', u'attack', u'highlight', u'import', u'iraq']
[u'london', u'polic', u'chief', u'predict', u'attack']
[u'london', u'polic', u'search', u'home', u'bomb']
[u'magic', u'mushroom', u'crackdown', u'yield', u'drug']
[u'charg', u'safe', u'crack']
[u'maroochi', u'shire', u'outlin', u'plan', u'vision']
[u'melbourn', u'centr', u'anti', u'terrorist', u'exercis']
[u'pay', u'reveal']
[u'milk', u'bubbl']
[u'mine', u'sector', u'warn', u'loom', u'downturn']
[u'minist', u'seek', u'feder', u'rethink', u'canker', u'compo']
[u'morri', u'confirm', u'townsvill', u'evid', u'gather']
[u'question', u'nation', u'park', u'consult']
[u'name', u'dead', u'begin', u'releas']
[u'nasa', u'tie', u'loos', u'end', u'final', u'shuttl']
[u'nation', u'park', u'make', u'progress', u'weed']
[u'deploy', u'wont', u'compromis', u'secur']
[u'histor', u'rescu']
[u'regist', u'monitor', u'paedophil']
[u'survey', u'cast', u'doubt', u'chang']
[u'nicklaus', u'play', u'watson', u'andrew']
[u'desalin', u'plant', u'plan', u'attack']
[u'rail', u'safeti', u'watchdog', u'resign']
[u'communiti', u'make', u'headway', u'kidney', u'diseas']
[u'number', u'posit', u'south', u'african']
[u'nurs', u'home', u'staff', u'consid', u'industri', u'unrest']
[u'organ', u'oliv', u'grove', u'aim', u'meet', u'high', u'demand']
[u'patient', u'tell', u'inquiri', u'unneed', u'bowel', u'remov']
[u'peac', u'activist', u'shoot', u'dead', u'somalia']
[u'plane', u'crash', u'victim', u'bodi', u'recov']
[u'plea', u'deal', u'letterman', u'abduct', u'case']
[u'defend', u'propos', u'chang', u'speech']
[u'state', u'case']
[u'polic', u'chief', u'corbi', u'evid']
[u'polic', u'closer', u'name', u'london', u'bomber']
[u'polic', u'close', u'bomber', u'ident', u'report']
[u'polic', u'hold', u'grave', u'fear', u'miss', u'ipswich', u'woman']
[u'polic', u'plan', u'industri', u'unrest', u'govt', u'move']
[u'polic', u'seek', u'inform', u'perth', u'robberi']
[u'polic', u'sift', u'haul', u'suspect', u'properti']
[u'polit', u'concern', u'spark', u'patient', u'support', u'group']
[u'polit', u'stoush', u'erupt', u'real', u'estat', u'chang']
[u'prestig', u'money', u'drive', u'wedg', u'school']
[u'project', u'manag', u'inspect', u'biodies', u'plant', u'site']
[u'protest', u'creat', u'maleni', u'supermarket', u'delay']
[u'pyrene', u'decid', u'tour', u'say', u'basso']
[u'hospit', u'handl', u'attack']
[u'produc', u'win', u'young', u'farmer', u'award']
[u'radic', u'surgeri', u'aust', u'bomb', u'victim']
[u'raider', u'captain', u'downgrad', u'throw', u'charg']
[u'rainfal', u'make', u'small', u'dent', u'drought', u'figur']
[u'rain', u'nlis', u'blame', u'cattl', u'shortfal']
[u'rain', u'eas', u'pressur', u'goulburn', u'water', u'suppli']
[u'rain', u'welcom', u'despit', u'sugar', u'crush', u'delay']
[u'rate', u'rise', u'loom', u'resid']
[u'rat', u'warwick']
[u'rave', u'drug', u'test', u'send', u'wrong', u'messag']
[u'record', u'price', u'live', u'cattl', u'trade']
[u'research', u'cook', u'plan', u'boost', u'lobster', u'industri']
[u'rice', u'ask', u'north', u'korea', u'abandon', u'nuclear', u'program']
[u'riot', u'polic', u'cathol', u'protest', u'amid', u'ireland']
[u'rocki', u'road', u'ahead', u'plan', u'desalin', u'plant']
[u'rspca', u'seek', u'meet', u'anim', u'attack']
[u'search', u'sydney', u'begin', u'soon']
[u'search', u'resum', u'biosolid', u'storag', u'site']
[u'selwood', u'twin', u'estrang', u'week']
[u'seminar', u'focus', u'busi', u'opportun']
[u'sheedi', u'urg', u'bomber', u'fan', u'team']
[u'shep', u'readi', u'final', u'danc']
[u'south', u'korea', u'offer', u'energi', u'food', u'north']
[u'fear', u'rais', u'china', u'brisban', u'consul']
[u'stanhop', u'anticip', u'econom', u'pick']
[u'statist', u'snapshot', u'show', u'women', u'wait']
[u'storm', u'electr', u'woe', u'close', u'highway']
[u'student', u'step', u'parliamentari', u'role']
[u'studi', u'find', u'drought', u'break', u'famili']
[u'suicid', u'attack', u'strategi', u'religion']
[u'support', u'group', u'form', u'femal', u'cancer', u'patient']
[u'sydney', u'hobart', u'welcom', u'entrant']
[u'sydney', u'opera', u'hous', u'make', u'heritag', u'list']
[u'premier', u'hail', u'increas', u'ferri', u'demand']
[u'teenag', u'driver', u'get', u'suspend', u'sentenc', u'fatal']
[u'thorp', u'aim', u'pietersen', u'ash', u'hop']
[u'tombston', u'arriv', u'year', u'late']
[u'ender', u'cool', u'statehood', u'survey', u'show']
[u'tour', u'oper', u'airstrip', u'upgrad']
[u'trade', u'improv', u'offset', u'profit']
[u'troubl', u'amcor', u'secur', u'leadership', u'team']
[u'protest', u'remov', u'maleni', u'supermarket', u'site']
[u'chief', u'hail', u'slight', u'drop', u'student', u'teacher']
[u'union', u'challeng', u'maritim', u'employe', u'secur', u'chang']
[u'union', u'beat', u'pariti', u'talk']
[u'lift', u'troop', u'visit', u'london']
[u'mop', u'hurrican', u'denni']
[u'retail', u'pressur', u'wool', u'boycott']
[u'stock', u'extend', u'ralli']
[u'troop', u'ban', u'london']
[u'vet', u'talk', u'possibl', u'diseas', u'outbreak']
[u'victim', u'father', u'disappoint', u'contractor']
[u'vietnam', u'commut', u'aussi', u'death', u'sentenc', u'lawyer']
[u'waikeri', u'aquacultur', u'project', u'face', u'delay']
[u'welfar', u'group', u'want', u'address']
[u'wesfarm', u'chief', u'hand', u'rein']
[u'prostitut', u'plan', u'retir']
[u'whyalla', u'crime', u'victim', u'support', u'servic']
[u'wide', u'lion', u'share', u'softwood', u'invest']
[u'wireless', u'broadband', u'plan', u'lack', u'cash', u'say', u'expert']
[u'woman', u'arrest', u'drug', u'sydney', u'airport']
[u'woman', u'photo', u'identifi']
[u'wood', u'apologis', u'troop', u'request']
[u'wood', u'offer', u'apolog', u'hostag', u'tape', u'comment']
[u'woolford', u'aim', u'downgrad', u'danger', u'throw', u'charg']
[u'kill', u'kenyan', u'clan', u'reveng', u'attack']
[u'hospit', u'leak', u'scare']
[u'access', u'concern', u'spencer', u'street', u'station']
[u'need', u'blockbust', u'exhibit', u'opposit']
[u'afghanistan', u'welcom', u'australia', u'troop', u'pledg']
[u'alcohol', u'trade', u'restrict', u'weipa']
[u'alic', u'turf', u'club', u'say', u'juli', u'race', u'viabl']
[u'apec', u'mine', u'forum', u'hold']
[u'armstrong', u'blow', u'yellow', u'jersey', u'rival']
[u'armstrong', u'tip', u'valverd', u'tour', u'great']
[u'arrest', u'london', u'bomb', u'report']
[u'art', u'group', u'look', u'way', u'rais', u'fund']
[u'aussi', u'actor', u'channel', u'world', u'leader', u'stage']
[u'aussi', u'get', u'richer', u'figur', u'suggest']
[u'australia', u'crush', u'england', u'decid']
[u'aust', u'send', u'troop', u'afghanistan']
[u'bank', u'resourc', u'push', u'higher']
[u'benitez', u'wari', u'welsh', u'minnow']
[u'fail', u'stop', u'indigen', u'artefact']
[u'rate', u'rise', u'loom', u'palerang', u'shire']
[u'black', u'spot', u'fund', u'includ', u'pedestrian', u'access']
[u'blair', u'outlin', u'plan', u'combat', u'extrem']
[u'blast', u'kill', u'baghdad']
[u'bomb', u'hit', u'sunni', u'mosqu', u'iraq']
[u'britain', u'push', u'action', u'terror']
[u'british', u'parliament', u'secur', u'alert', u'london']
[u'british', u'polic', u'suspect', u'man', u'murder', u'racial']
[u'british', u'press', u'london', u'bomb', u'suspect']
[u'bunburi', u'minimum', u'secur', u'prison', u'revamp']
[u'council', u'dismiss', u'high', u'rise', u'propos']
[u'camel', u'goat', u'latest', u'weed', u'tool']
[u'campaign', u'focus', u'workplac', u'safeti']
[u'canadian', u'bookstor', u'break', u'harri', u'potter', u'embargo']
[u'caribbean', u'brace', u'hurrican']
[u'jack', u'accus', u'face', u'court']
[u'carney', u'boost', u'knight']
[u'launch', u'hour', u'internet', u'news', u'network']
[u'charg', u'detect', u'drop']
[u'chen', u'visa', u'misjudg', u'chines', u'ambassador']
[u'chen', u'visa', u'grant', u'fals', u'inform', u'ambassador']
[u'church', u'group', u'condemn', u'zimbabw', u'township', u'demolit']
[u'cleanskin', u'bomb', u'suspect', u'worri', u'british', u'polic']
[u'coff', u'harbour', u'resign']
[u'concern', u'land', u'releas', u'littl', u'short', u'term']
[u'consum', u'confid', u'fall']
[u'consum', u'good', u'giant', u'merg', u'billion', u'deal']
[u'costello', u'reject', u'employ', u'survey', u'find']
[u'council', u'agre', u'contract', u'region', u'galleri']
[u'council', u'confid', u'properti', u'prise', u'rise']
[u'councillor', u'anger', u'budget', u'rate', u'rise']
[u'council', u'apra', u'complaint']
[u'council', u'vow', u'crackdown', u'attack', u'sheep']
[u'countri', u'doubt', u'showcas', u'pavilion']
[u'cousin', u'eagl', u'voss', u'say']
[u'danish', u'famili', u'leav', u'strand', u'kakadu']
[u'debut', u'prop', u'weak', u'windi']
[u'discoveri', u'mission', u'final', u'countdown']
[u'drive', u'robber', u'get', u'bank', u'loot']
[u'effect', u'newcastl', u'cut', u'unknown']
[u'elect', u'surgeri', u'wait', u'list', u'plummet']
[u'timor', u'presid', u'prais', u'program', u'volunt']
[u'offici', u'raid', u'chipmak', u'intel']
[u'evan', u'armstrong', u'strike']
[u'extort', u'cost', u'chocol', u'maker']
[u'famili', u'flock', u'desert', u'holiday']
[u'farmer', u'hold', u'hope', u'rain']
[u'farmer', u'survey', u'disput', u'govt', u'telstra', u'claim']
[u'fear', u'longer', u'trade', u'hour', u'cost', u'hotel', u'job']
[u'fear', u'mcdonald', u'import', u'fri']
[u'fear', u'rail', u'loss', u'eas']
[u'fear', u'health', u'inquiri', u'affect', u'recruit']
[u'feder', u'scheme', u'close', u'textil', u'wool', u'worker']
[u'fiji', u'militari', u'command', u'accus', u'scaremong']
[u'destroy', u'crash', u'plan', u'investig']
[u'fisheri', u'dept', u'urg', u'explain', u'abalon', u'collaps']
[u'franchis', u'collin', u'bookstor']
[u'frustrat', u'nation', u'park', u'decis', u'build']
[u'galibi', u'loom', u'tour', u'rival']
[u'galuvao', u'target', u'premiership', u'south']
[u'gentl', u'giant', u'swim', u'danger']
[u'gilchrist', u'strike', u'deed', u'word']
[u'gold', u'coast', u'council', u'mull', u'landslid', u'cash']
[u'govt', u'accus', u'avoid', u'desalin', u'plant']
[u'govt', u'challeng', u'meet', u'polic', u'staff', u'promis']
[u'govt', u'compar', u'note', u'june', u'inmat']
[u'govt', u'reject', u'green', u'concern', u'port', u'kembla']
[u'govt', u'fast', u'track', u'bruce', u'highway', u'road', u'resurfac']
[u'govt', u'urg', u'betfair', u'plan']
[u'grassland', u'plan', u'see', u'vital', u'protect']
[u'group', u'launch', u'plan', u'fight', u'spywar']
[u'gunn', u'look', u'afield', u'pulp', u'sit']
[u'hayn', u'oval', u'upgrad', u'begin', u'asap']
[u'health', u'inquiri', u'head', u'get', u'stand', u'ovat']
[u'hewitt', u'readi', u'davi', u'argi', u'bargi']
[u'higher', u'truck', u'rego', u'fee', u'wide', u'impact']
[u'histori', u'make', u'striker', u'join', u'glori']
[u'hous', u'shortag', u'trap', u'abus', u'victim']
[u'hunt', u'london', u'attack', u'gather', u'speed']
[u'hunt', u'london', u'bomb', u'pick', u'pace']
[u'hurrican', u'concern', u'push', u'price']
[u'rule', u'stop', u'tour', u'zimbabw']
[u'want', u'power', u'investig', u'gambl', u'venu']
[u'indigen', u'communiti', u'look', u'asbesto', u'compens']
[u'indigen', u'health', u'focus', u'worldwid', u'research']
[u'industri', u'look', u'trace', u'tag', u'fight']
[u'industri', u'impact', u'salt', u'flat', u'studi']
[u'agenda', u'spell', u'union', u'clout', u'say', u'minist']
[u'iron', u'date', u'method', u'develop']
[u'irrig', u'agre', u'water']
[u'irvin', u'laugh', u'button', u'ferrari', u'specul']
[u'isra', u'shop', u'mall', u'blast', u'kill']
[u'isra', u'troop', u'kill', u'policeman', u'west', u'bank', u'town']
[u'italian', u'rider', u'hold', u'tour', u'drug']
[u'jail', u'task', u'forc', u'seiz', u'smuggl', u'item']
[u'judg', u'near', u'saddam', u'investig']
[u'juventus', u'sound', u'arsenal', u'vieira']
[u'minut', u'hiccup', u'discoveri', u'shuttl', u'launch']
[u'lightn', u'kill', u'seven', u'bangladesh']
[u'local', u'council', u'conduct', u'labour', u'audit']
[u'london', u'attack', u'investig', u'hunt', u'mastermind']
[u'london', u'bomb', u'suspect', u'identifi']
[u'london', u'bomb', u'victim', u'rememb', u'canberra', u'servic']
[u'maleni', u'protest', u'abid', u'law', u'say', u'beatti']
[u'maleni', u'supermarket', u'protest', u'heat']
[u'accus', u'onlin', u'link', u'abus']
[u'charg', u'cannabi', u'haul']
[u'face', u'trial', u'fatal', u'nightclub', u'stab']
[u'memori', u'servic', u'hold', u'canberra', u'london']
[u'mental', u'health', u'help', u'need', u'stress', u'farmer']
[u'michael', u'jackson', u'sue', u'debt']
[u'michael', u'kasprowicz', u'interview']
[u'million', u'dollar', u'fund', u'sport', u'facil']
[u'minist', u'ask', u'derail', u'train', u'driver']
[u'minist', u'cast', u'doubt', u'popul', u'forecast']
[u'minist', u'defend', u'maleni', u'polic', u'cost']
[u'minist', u'open', u'disabl', u'communiti', u'centr']
[u'polic', u'number', u'wrong', u'say', u'opposit']
[u'doubt', u'emerg', u'dredg', u'plan']
[u'meningococc', u'case', u'emerg']
[u'criticis', u'industri', u'relat', u'misinform']
[u'nasa', u'declar', u'discoveri', u'readi']
[u'head', u'focus', u'oversea', u'import']
[u'cancel', u'warn', u'contract']
[u'nip', u'tuck', u'hold', u'breast', u'implant', u'nick']
[u'korean', u'leader', u'anticip', u'progress', u'nuke', u'talk']
[u'face', u'call', u'salari', u'hike']
[u'task', u'forc', u'meet', u'repres']
[u'govt', u'hunt', u'crocodil', u'safari']
[u'olonga', u'join', u'protest', u'tour', u'zimbabw']
[u'bomber', u'die', u'london', u'blast', u'polic']
[u'packer', u'consortium', u'win', u'casino', u'contract', u'wale']
[u'paedophil', u'baldi', u'leav', u'jail']
[u'pakistani', u'train', u'crash', u'kill', u'hundr']
[u'palmer', u'report', u'wont', u'royal', u'commiss']
[u'parkinson', u'steal', u'south', u'africa']
[u'patel', u'crisi', u'spark', u'foreign', u'doctor', u'racism', u'claim']
[u'patel', u'extradit', u'delay', u'unreason']
[u'patel', u'patient', u'nuttal']
[u'perri', u'sign', u'knight']
[u'person', u'borrow', u'fall']
[u'playford', u'stand', u'kavel', u'famili']
[u'vow', u'immigr', u'chang', u'come']
[u'polic', u'charg', u'ipswich', u'woman', u'murder']
[u'polic', u'miss', u'famili', u'flinder', u'rang']
[u'polic', u'hunt', u'credit', u'card', u'scammer']
[u'polic', u'identifi', u'london', u'bomber']
[u'polic', u'review', u'maleni', u'offic', u'number']
[u'polic', u'seal', u'british', u'parliament', u'secur', u'alert']
[u'polic', u'unveil', u'sydney', u'harbour', u'counter', u'terrorist']
[u'poverti', u'issu', u'backburn', u'world', u'vision', u'head']
[u'plate', u'driver', u'die', u'injur', u'grafton', u'crash']
[u'prison', u'boss', u'admit', u'controversi', u'prison', u'need']
[u'professor', u'challeng', u'product', u'claim']
[u'ask', u'vanston', u'pregnant', u'detaine']
[u'farmer', u'land', u'clear', u'ballot', u'near', u'complet']
[u'queensland', u'cotton', u'make', u'rival']
[u'raider', u'appeal', u'woolford', u'suspens']
[u'raider', u'appeal', u'woolford', u'suspens']
[u'group', u'plan', u'restructur', u'lose', u'founder']
[u'report', u'highlight', u'high', u'mental', u'distress', u'rat']
[u'royal', u'commiss', u'reform', u'retrial']
[u'reject', u'report', u'tunnel', u'pollut', u'claim']
[u'safeti', u'fear', u'sydney', u'hobart', u'rule', u'chang']
[u'tip', u'covert', u'afghan', u'role']
[u'saudi', u'arabia', u'host', u'game']
[u'schultz', u'attack', u'hors', u'trade', u'nat', u'seat', u'plan']
[u'lion', u'lobster', u'safeti', u'devic', u'delay']
[u'search', u'intensifi', u'miss', u'mother']
[u'sephaka', u'drop', u'bok', u'regroup', u'aussi']
[u'seventeen', u'arrest', u'drug', u'raid']
[u'shuttl', u'launch', u'fall', u'tile', u'repair']
[u'skinni', u'milk', u'recal']
[u'small', u'victori', u'oppon', u'ergon', u'suburban']
[u'smash', u'repair', u'protest', u'nrma', u'quot', u'scheme']
[u'south', u'american', u'coach', u'run', u'socceroo']
[u'south', u'korea', u'clone', u'pig', u'organ', u'transplant']
[u'special', u'forc', u'head', u'afghanistan']
[u'stanhop', u'reject', u'opposit', u'bankruptci', u'claim']
[u'starless', u'windi', u'undet', u'daunt', u'task']
[u'star', u'wallabi', u'avail', u'second', u'test']
[u'state', u'debat', u'govt', u'agenda', u'confer']
[u'steam', u'train', u'take', u'qlder', u'nostalg', u'ride']
[u'student', u'staff', u'ratio', u'figur', u'distort', u'say', u'charl']
[u'studi', u'expect', u'boost', u'trade', u'talk']
[u'studi', u'focus', u'mental', u'health', u'need']
[u'suicid', u'blast', u'hit', u'children', u'troop']
[u'suicid', u'bomb', u'attack', u'rock', u'israel']
[u'surrey', u'fish', u'kill', u'get', u'wors']
[u'survey', u'fail', u'dent', u'telstra', u'determin']
[u'survey', u'consid', u'issu', u'sport', u'busi']
[u'tasmania', u'tell', u'look', u'public', u'sector', u'doctor']
[u'teen', u'arrest', u'netherland', u'bomb']
[u'teen', u'smoke', u'lose', u'weight', u'research', u'say']
[u'london', u'suicid', u'bomb', u'suspect', u'name']
[u'train', u'crash', u'kill', u'score', u'pakistan']
[u'tiger', u'warm', u'open', u'blitz']
[u'timber', u'plantat', u'spend', u'fall', u'short', u'say']
[u'toowoomba', u'drink', u'wast', u'water']
[u'ballroom', u'dancer', u'face', u'trial']
[u'tour', u'rider', u'throw', u'blood', u'test']
[u'train', u'driver', u'blame', u'pakistani', u'rail', u'disast']
[u'line', u'board', u'urg']
[u'cranbourn', u'west', u'road', u'crash']
[u'foreign', u'kidnap', u'gaza']
[u'kill', u'melbourn', u'crash']
[u'undercov', u'health', u'agent', u'polic', u'smoke', u'law']
[u'union', u'warn', u'alcan', u'sack']
[u'militari', u'replac', u'guantanamo', u'command']
[u'vanuatu', u'polic', u'chief', u'sack']
[u'vaughan', u'unhappi', u'super', u'rule']
[u'villag', u'attack', u'death', u'toll', u'continu', u'rise']
[u'warn', u'readi', u'ash', u'despit', u'privat', u'turmoil']
[u'women', u'busi', u'overcom']
[u'wine', u'grower', u'accept', u'unfair', u'boundari', u'chang']
[u'wondai', u'firefight', u'declar', u'qlds', u'best']
[u'worker', u'ralli', u'melbourn', u'chang']
[u'workshop', u'plan', u'ecolog', u'sustain', u'town']
[u'world', u'longest', u'golf', u'cours', u'card']
[u'world', u'oldest', u'captiv', u'panda', u'die']
[u'dead', u'suicid', u'attack', u'iraqi', u'polic']
[u'report', u'rise', u'short', u'term', u'visit']
[u'get', u'indigen', u'health', u'prais']
[u'govt', u'defend', u'servic', u'domest', u'violenc']
[u'actor', u'brad', u'pitt', u'releas', u'hospit']
[u'advisori', u'group', u'presid', u'disappoint', u'river']
[u'advoc', u'maintain', u'call', u'siev', u'inquiri']
[u'afghanistan', u'govt', u'thank', u'australia', u'send']
[u'anderson', u'question', u'valid', u'farmer', u'telstra']
[u'predict', u'fall', u'aussi', u'dollar']
[u'ash', u'highlight']
[u'aust', u'bomb', u'survivor', u'struggl', u'vertigo']
[u'baghdad', u'suicid', u'bomb', u'kill', u'children']
[u'basin', u'cap', u'program', u'reach', u'mileston']
[u'beatti', u'seek', u'transcript', u'health', u'chief']
[u'beatti', u'urg', u'australia', u'card', u'rethink']
[u'beef', u'produc', u'vote', u'cattl', u'levi']
[u'bigger', u'wheat', u'crop', u'predict']
[u'bilbi', u'festiv', u'organis', u'expect', u'turnout']
[u'blair', u'propos', u'tougher', u'extrem', u'stanc']
[u'board', u'probe', u'possibl', u'link', u'school']
[u'charg', u'rape', u'girl', u'park']
[u'bushmast', u'win', u'defenc', u'minist', u'approv']
[u'cadel', u'pois', u'steal', u'robbi', u'limelight']
[u'canker', u'sourc', u'remain', u'mysteri']
[u'cathol', u'church', u'cast', u'doubt', u'betfair', u'benefit']
[u'caution', u'urg', u'hous', u'inspect', u'report']
[u'cfmeu', u'vow', u'fight', u'chang']
[u'chang', u'come', u'inquiri', u'vanston']
[u'chief', u'justic', u'court', u'assault', u'charg']
[u'china', u'interest', u'uranium']
[u'church', u'leader', u'zimbabw', u'shame', u'campaign']
[u'commut', u'train', u'collid', u'africa']
[u'contamin', u'milk', u'scare', u'spark', u'state', u'recal']
[u'contraband', u'item', u'cessnock', u'jail']
[u'coron', u'say', u'british', u'tourist', u'die', u'heat']
[u'cotton', u'giant', u'launch', u'rival']
[u'cotton', u'merger', u'expect', u'competit']
[u'council', u'govt', u'ask', u'help', u'fund', u'youth', u'facil']
[u'councillor', u'say', u'investig', u'witch', u'hunt']
[u'councillor', u'throw', u'support', u'smoker', u'poll']
[u'council', u'urg', u'stanc', u'bridg']
[u'counter', u'terror', u'exercis', u'prompt']
[u'cowboy', u'go', u'basic']
[u'crater', u'make', u'impact', u'sculptur', u'competit']
[u'crichton', u'back', u'sydney', u'hobart', u'rule', u'chang']
[u'custom', u'evacu', u'shotgun', u'rampag', u'fear']
[u'democrat', u'speed', u'claim']
[u'desper', u'housew', u'earn', u'emmi', u'nomin']
[u'detain', u'pregnant', u'woman', u'releas', u'say', u'vanston']
[u'determin', u'dane', u'see', u'spot', u'tour']
[u'dinosaur', u'respiratori', u'like', u'bird', u'studi']
[u'downer', u'urg', u'fiji', u'concern']
[u'drink', u'ban', u'solut', u'council', u'say']
[u'dual', u'pacemak', u'better', u'peopl']
[u'elder', u'attack', u'kakadu', u'impact']
[u'elder', u'uranium', u'condemn', u'martin']
[u'environ', u'minist', u'take', u'time', u'croc', u'hunt']
[u'extinguish', u'cost', u'council']
[u'mourinho', u'comment']
[u'farmer', u'injuri', u'blow', u'freo']
[u'fear', u'air', u'legal', u'fund']
[u'fear', u'fake', u'boot', u'damag', u'wool', u'reput']
[u'ferguson', u'order', u'sign', u'contract']
[u'fish', u'industri', u'seek', u'satellit', u'technolog']
[u'surviv', u'forc', u'land']
[u'worldcom', u'chief', u'jail', u'year']
[u'freo', u'brace', u'desper', u'blue']
[u'frigo', u'freez', u'tour']
[u'fund', u'enabl', u'polystyren', u'compani', u'expand']
[u'leak', u'forc', u'evacu', u'school', u'distanc']
[u'gazza', u'agre', u'coach', u'littl', u'know', u'portugues']
[u'gerrard', u'trick', u'pay', u'liverpool', u'support']
[u'materi', u'detect', u'canola']
[u'govt', u'ask', u'step', u'breach', u'parol', u'case']
[u'govt', u'rule', u'australia', u'card', u'rethink']
[u'govt', u'child', u'protect', u'effort', u'opposit']
[u'govt', u'releas', u'palmer', u'inquiri', u'find']
[u'govt', u'urg', u'doubl', u'budget']
[u'govt', u'wont', u'releas', u'current', u'baldi', u'photo']
[u'greedi', u'centrelink', u'worker', u'jail', u'fraud']
[u'green', u'jersey', u'holder', u'boonen', u'abandon', u'tour']
[u'guantanamo', u'detaine', u'abus', u'tortur', u'report']
[u'health', u'inquiri', u'hear', u'patel', u'part', u'blame']
[u'health', u'servic', u'conting', u'plan', u'head', u'surgeri']
[u'hewitt', u'davi', u'fire', u'line']
[u'hewitt', u'open', u'australia', u'davi', u'quarter', u'final']
[u'hick', u'father', u'outrag', u'defend', u'guantanamo']
[u'highway', u'inquiri', u'call', u'surpris', u'say']
[u'hill', u'defend', u'afghan', u'redeploy']
[u'hop', u'ticket', u'entic', u'countri']
[u'hospit', u'shortag', u'expect', u'worsen']
[u'human', u'wast', u'creek', u'close', u'oyster', u'farm']
[u'hungri', u'tiger', u'chase', u'open', u'rival']
[u'hussain', u'warn', u'england', u'warn', u'myth']
[u'indonesian', u'fishermen', u'detain', u'baxter']
[u'inquiri', u'ongo', u'qasim', u'case', u'ruddock']
[u'investig', u'begin', u'probe', u'plane', u'crash']
[u'inx', u'star', u'realiti', u'program', u'lag', u'rat']
[u'iraqi', u'jail', u'year', u'siev', u'role']
[u'iraqi', u'polic', u'captur', u'fail', u'suicid', u'bomber']
[u'iraq', u'negoti', u'australian', u'wheat']
[u'israel', u'close', u'settlement', u'resid']
[u'jack', u'trade', u'mcguir', u'happi', u'help']
[u'job', u'part', u'firm']
[u'joint', u'defenc', u'exercis', u'boost', u'local', u'economi']
[u'justic', u'probe', u'hear', u'prison', u'fear']
[u'kenyan', u'secur', u'attempt', u'clan', u'unrest']
[u'kidnap', u'austrian', u'briton', u'free', u'gaza', u'offici']
[u'labor', u'alarm', u'talk', u'terror', u'attack']
[u'lower', u'trade', u'deficit', u'boost', u'market']
[u'martin', u'talk', u'diesel', u'plant', u'green', u'credenti']
[u'mental', u'health', u'gap', u'area', u'shame', u'say']
[u'million', u'reflect', u'silenc', u'london', u'attack']
[u'miner', u'begin', u'deep', u'drill', u'program']
[u'mine', u'compani', u'promot', u'oper', u'apec']
[u'mine', u'compani', u'expand', u'uranium', u'explor']
[u'minist', u'dismiss', u'concern', u'goldfield', u'polic']
[u'morri', u'inquiri', u'wrap', u'bundaberg', u'hear']
[u'dismiss', u'telstra', u'survey', u'find']
[u'mysteri', u'shipwreck', u'investig']
[u'nasa', u'delay', u'discoveri', u'launch']
[u'nasa', u'delay', u'shuttl', u'launch', u'saturday']
[u'nasa', u'postpon', u'shuttl', u'launch']
[u'nasa', u'race', u'clock', u'discoveri']
[u'nasa', u'watch', u'weather', u'discoveri', u'near', u'lift']
[u'nation', u'scheme', u'aim', u'boost', u'financi', u'literaci']
[u'deploy', u'endang', u'aust', u'howard']
[u'storm', u'threaten', u'caribbean']
[u'nicklaus', u'begin', u'long', u'farewel']
[u'nightclub', u'refus', u'entri', u'base', u'gender']
[u'bail', u'pension', u'drug', u'charg']
[u'compromis', u'pie', u'malthous']
[u'nowingi', u'toxic', u'wast', u'dump', u'fight', u'wane', u'say']
[u'review', u'harsh', u'judiciari', u'load', u'penalti']
[u'nurs', u'profess', u'enjoy', u'popular', u'boost']
[u'boost', u'fund', u'island', u'homeless']
[u'opal', u'lose', u'russia']
[u'open', u'organis', u'defend', u'revamp', u'cours']
[u'orang', u'perman', u'exclud', u'minist']
[u'organis', u'look', u'futur', u'despit', u'rocki', u'loss']
[u'oversea', u'generic', u'aid', u'drug', u'approv']
[u'pair', u'jail', u'elder', u'man', u'slay']
[u'pakistan', u'help', u'foil', u'attack', u'elect']
[u'pakistani', u'polic', u'open', u'london', u'bomb', u'probe']
[u'pakistani', u'look', u'miss', u'relat', u'tripl']
[u'palestinian', u'milit', u'kill', u'talk']
[u'palmer', u'report', u'loom', u'howard', u'promis', u'chang']
[u'parapleg', u'sailor', u'continu', u'trip', u'australia']
[u'perish', u'blue', u'resort', u'sale']
[u'apologis', u'solon']
[u'look', u'closer', u'tie', u'chile']
[u'ponder', u'chile', u'trade', u'agreement']
[u'polic', u'bullet', u'kill', u'babi', u'shield', u'gunman']
[u'polic', u'charg', u'year', u'rape', u'case']
[u'polic', u'claim', u'breakthrough', u'perth', u'crime', u'spree']
[u'polic', u'command', u'seek', u'input', u'address', u'local']
[u'polic', u'forum', u'spotlight', u'driver', u'drug', u'test']
[u'polic', u'hunt', u'steal', u'vanilla', u'slice']
[u'polic', u'raid', u'london', u'bomb']
[u'policeman', u'accus', u'indec', u'assault', u'face', u'court']
[u'polic', u'seek', u'public', u'help', u'miss', u'teenag']
[u'polic', u'warn', u'parent', u'overse', u'children', u'internet']
[u'politician', u'port', u'augusta', u'jail', u'problem']
[u'power', u'failur', u'shut', u'caltex', u'refineri']
[u'prison', u'lobbi', u'fear', u'deport', u'pregnant']
[u'public', u'remind', u'alert', u'alarm']
[u'confront', u'vanston', u'detain', u'pregnant', u'woman']
[u'reopen', u'creat', u'job']
[u'repair', u'heal', u'nrmas', u'quot']
[u'report', u'warn', u'juvenil', u'justic', u'centr', u'danger']
[u'review', u'loom', u'water', u'transport', u'option']
[u'road', u'train', u'driver', u'charg', u'crash', u'death']
[u'scientist', u'analys', u'timor', u'bubbl']
[u'scotland', u'clinch', u'trophi']
[u'sculptor', u'carv', u'nation', u'prize']
[u'seafood', u'industri', u'seek', u'turn', u'export']
[u'seaworld', u'research', u'want', u'better', u'protect']
[u'secur', u'focus', u'carr', u'britain', u'trip']
[u'secur', u'prioriti', u'london', u'game', u'chief']
[u'shire', u'scope', u'clinic', u'possibl']
[u'shire', u'vow', u'support', u'stawel', u'worker']
[u'short', u'term', u'visit', u'rise', u'say']
[u'shuttl', u'delay', u'stress', u'famili', u'aust', u'astronaut']
[u'siev', u'smuggler', u'jail']
[u'silenc', u'mark', u'london', u'bomb']
[u'korea', u'search', u'fighter', u'jet', u'believ']
[u'snowdon', u'talk', u'desert', u'park', u'indigen', u'employ']
[u'solon', u'lawyer', u'reject', u'howard', u'apolog']
[u'lankan', u'leader', u'order', u'strict', u'action', u'troubl']
[u'stem', u'cell', u'protect', u'brain', u'nervous', u'studi']
[u'storm', u'recoveri', u'frustrat', u'karoonda', u'local']
[u'student', u'protest', u'detent', u'centr']
[u'studi', u'look', u'impact', u'dust', u'climat']
[u'suicid', u'attack', u'rule']
[u'supermarket', u'protest', u'develop', u'begin', u'talk']
[u'survey', u'highlight', u'resid', u'concern', u'plan']
[u'survey', u'pinpoint', u'unrecord', u'aborigin', u'cultur']
[u'firm', u'win', u'ship', u'contract']
[u'tasmania', u'look', u'attract', u'experi', u'nurs']
[u'teacher', u'counsel', u'videotap', u'girl']
[u'testicular', u'cancer', u'rise']
[u'tour', u'head', u'valley']
[u'toyota', u'say', u'profit', u'satisfactori', u'better']
[u'tsunami', u'quak', u'caus', u'seafloor', u'ruptur']
[u'kill', u'injur', u'crash']
[u'polic', u'identifi', u'mastermind', u'london']
[u'council', u'stall', u'plan', u'east', u'timor', u'tribun']
[u'union', u'fear', u'holden', u'glass', u'import', u'caus']
[u'union', u'wait', u'breakdown', u'teacher', u'offer']
[u'airlin', u'expand', u'servic', u'aust']
[u'question', u'australian', u'push']
[u'shop', u'accident', u'sell', u'harri', u'potter', u'book']
[u'vaa', u'lead', u'lanka', u'fightback']
[u'vail', u'downplay', u'chen', u'trade', u'talk']
[u'vail', u'warn', u'rural', u'subsidi']
[u'vaughan', u'mothbal', u'ahead', u'ash']
[u'victorian', u'farmer', u'join', u'fight', u'cheap', u'vegi']
[u'vintag', u'vino', u'close', u'armstrong']
[u'virgin', u'set', u'pacif', u'carrier']
[u'voigt', u'go', u'hero', u'zero']
[u'wallabi', u'wont', u'distract', u'say', u'jone']
[u'waratah', u'commit', u'footbal', u'stadium']
[u'warn', u'back', u'team', u'mate', u'pietersen', u'ash']
[u'water', u'sewerag', u'bill', u'increas']
[u'weather', u'outlook', u'good']
[u'widespread', u'gain', u'lift']
[u'wine', u'industri', u'consult', u'cut', u'fund']
[u'woman', u'charg', u'credit', u'union', u'robberi']
[u'woodchip', u'firm', u'use', u'support', u'port']
[u'zimbabw', u'tour', u'say', u'illeg']
[u'dead', u'bomber', u'target', u'iraqi', u'patrol']
[u'abalon', u'diver', u'fin', u'illeg', u'catch']
[u'aceh', u'peac', u'talk', u'stall', u'gam', u'polit']
[u'actu', u'dismiss', u'howard', u'work', u'parti']
[u'adler', u'get', u'good', u'behaviour', u'bond']
[u'seek', u'kenya', u'hunt', u'clan', u'violenc', u'suspect']
[u'ord', u'resist', u'posit', u'trend']
[u'rethink', u'uranium', u'polici']
[u'qaeda', u'claim', u'wave', u'baghdad', u'attack']
[u'ran', u'contest', u'crowd', u'puller']
[u'art', u'festiv', u'promis', u'bizarr', u'brilliant', u'program']
[u'attack', u'kill', u'amid', u'thailand', u'blackout']
[u'aust', u'music', u'icon', u'induct', u'hall', u'fame']
[u'australia', u'chile', u'trade', u'tie', u'stronger', u'vail']
[u'australia', u'lead', u'bilater', u'donat', u'tsunami', u'fund']
[u'australian', u'packag', u'undermin', u'nauru', u'report']
[u'australian', u'die', u'london', u'attack', u'injuri']
[u'australian', u'comfort', u'chang']
[u'author', u'child', u'rapist', u'locat']
[u'bedouin', u'wander', u'biblic', u'manuscript']
[u'betfair', u'offer', u'industri', u'financi', u'benefit']
[u'banana', u'revamp', u'includ', u'hous', u'plan']
[u'bird', u'suspect', u'death', u'indonesia']
[u'bird', u'spread', u'pollut', u'arctic', u'studi']
[u'board', u'hous', u'resid', u'evacu', u'mercuri']
[u'brisban', u'hand', u'bledislo', u'test']
[u'broadband', u'boost', u'north', u'coast', u'region']
[u'broom', u'jetti', u'revamp', u'begin']
[u'bulldog', u'hold', u'narrow']
[u'bulldog', u'play', u'final', u'fever']
[u'call', u'introduc', u'australia']
[u'call', u'mount', u'immigr', u'judici', u'inquiri']
[u'camel', u'sandwich', u'menu', u'tourist']
[u'cameron', u'diaz', u'testifi', u'topless', u'photo', u'case']
[u'carr', u'fear', u'sydney', u'suicid', u'attack']
[u'catlex', u'await', u'news', u'refineri', u'repair']
[u'chappel', u'turn', u'technolog', u'india', u'edg']
[u'clean', u'hand', u'simpl', u'slash', u'diseas', u'risk']
[u'colleg', u'seek', u'indigen', u'school', u'fund', u'boost']
[u'colleg', u'want', u'rural', u'medicin', u'recognis']
[u'complaint', u'morri', u'inquiri', u'journalist']
[u'conduct', u'report', u'jeopardis', u'palm', u'prosecut']
[u'consortium', u'reject', u'suppli', u'claim']
[u'coron', u'hamper', u'fatal', u'polic', u'shoot', u'probe']
[u'coron', u'report', u'teen', u'road', u'death']
[u'council', u'readi', u'hous', u'estat', u'legal', u'fight']
[u'council', u'region', u'phone', u'servic', u'fear']
[u'council', u'seek', u'fund', u'socio', u'econom', u'zone']
[u'critic', u'slam', u'nuclear', u'wast', u'dump']
[u'cross', u'border', u'gunfight', u'kill', u'pakistan']
[u'cultur', u'buff', u'flock', u'opera', u'shear']
[u'cyclist', u'die', u'larapinta', u'drive']
[u'davi', u'hop', u'pin', u'hewitt', u'arthur']
[u'dept', u'plan', u'problem', u'vanston']
[u'diamond', u'project', u'expect', u'boost', u'local', u'job']
[u'disput', u'barrier', u'good', u'health', u'care', u'pike']
[u'domest', u'violenc', u'counsellor', u'leav', u'geraldton']
[u'dope', u'cloud', u'hover', u'tour']
[u'drug', u'group', u'alarm', u'cannabi', u'survey', u'result']
[u'drug', u'rape', u'accus', u'releas', u'bail']
[u'emili', u'swell', u'danger', u'hurrican', u'caribbean']
[u'defend', u'agricultur', u'subsidi', u'action']
[u'prison', u'guard', u'avoid', u'jail', u'steroid', u'smuggl']
[u'feder', u'govern', u'consid', u'overturn']
[u'fiji', u'threaten', u'revok', u'foreign', u'work', u'permit']
[u'firm', u'test', u'contenti', u'boot']
[u'suicid', u'attack', u'kill', u'baghdad']
[u'brothel', u'employe', u'crime', u'wave']
[u'worker', u'charg', u'multi', u'million']
[u'face', u'court', u'drug', u'charg']
[u'friend', u'welcom', u'lengthi', u'jail', u'term', u'elder']
[u'fund', u'deliv', u'power', u'boost', u'remot', u'area']
[u'gasquet', u'put', u'franc', u'ahead']
[u'gaza', u'rocket', u'attack', u'leav', u'isra', u'dead']
[u'german', u'polic', u'mistak', u'male', u'stripper']
[u'global', u'money', u'launder', u'trillion']
[u'govt', u'name', u'sit', u'technic', u'colleg']
[u'govt', u'packag', u'help', u'young', u'farmer', u'properti']
[u'govt', u'pressur', u'reveal', u'baldi', u'detail']
[u'govt', u'releas', u'kapunda', u'royal', u'commiss']
[u'govt', u'urg', u'continu', u'court', u'disabl', u'fund']
[u'govt', u'urg', u'subsidis', u'deliveri', u'drug']
[u'grain', u'begin', u'flow', u'zimbabw']
[u'grain', u'grower', u'lobbi', u'probe', u'canola']
[u'grape', u'suppli', u'creat', u'wine', u'industri', u'fear']
[u'grower', u'hit', u'mcdonald', u'develop', u'fund', u'offer']
[u'guid', u'dog', u'group', u'back', u'footpath']
[u'health', u'servic', u'worker', u'tell', u'loss']
[u'hensbi', u'say', u'tiger', u'open']
[u'hewitt', u'accus', u'coria', u'spit']
[u'hewitt', u'coria', u'bitter', u'word']
[u'hmas', u'kanimbla', u'dock', u'mackay', u'crew', u'break']
[u'hotspot', u'target', u'shake', u'burglari']
[u'howard', u'creat', u'backbench', u'team', u'pitch', u'chang']
[u'icon', u'town', u'consid', u'perfect', u'spot', u'festiv']
[u'immelman', u'singh', u'join', u'tiger', u'lead']
[u'immigr', u'dept', u'worker', u'embark', u'reform']
[u'indian', u'prompt', u'coupl', u'hunt', u'lose', u'citi']
[u'india', u'want', u'split', u'lankan', u'tour']
[u'indigen', u'polic', u'liaison', u'offic', u'gather', u'north']
[u'indonesia', u'offer', u'compromis', u'aceh', u'peac', u'talk']
[u'industri', u'brew', u'plan', u'polic']
[u'intellig', u'guarante', u'happi']
[u'isra', u'helicopt', u'gaza', u'strip']
[u'italian', u'bishop', u'kill', u'kenya']
[u'jobless', u'fear', u'grip', u'tyre', u'factori', u'worker']
[u'kean', u'brown', u'asian', u'tour']
[u'kempsey', u'push', u'slim', u'dusti', u'museum']
[u'kerin', u'monitor', u'region', u'fund']
[u'khan', u'fight', u'restor', u'muslim', u'pride']
[u'kick', u'boot', u'foot', u'say', u'eal']
[u'lack', u'sponsorship', u'put', u'sparx']
[u'laptop', u'spark', u'flight', u'emerg']
[u'lloyd', u'boot', u'bomber', u'lead']
[u'lloyd', u'put', u'boot', u'pie']
[u'london', u'attack', u'bomb', u'maker', u'arrest', u'report']
[u'london', u'attack', u'bear', u'qaeda', u'hallmark']
[u'london', u'stop', u'rememb']
[u'machin', u'gun', u'protect', u'australian', u'water']
[u'jail', u'kill', u'friend', u'crash']
[u'jail', u'sophist', u'credit', u'card', u'scam']
[u'manslaught', u'charg', u'drop', u'bondag', u'case']
[u'free', u'serv', u'time', u'child', u'porn']
[u'mcgee', u'probe', u'mishandl', u'commiss', u'find']
[u'mcgee', u'team', u'doctor', u'ring', u'dope', u'alarm', u'bell']
[u'meet', u'busi', u'nickel', u'oper', u'updat']
[u'melbourn', u'die', u'london', u'bomb', u'injuri']
[u'minist', u'back', u'incent', u'drought', u'prepar']
[u'minist', u'signal', u'troubl', u'ahead']
[u'miss', u'schoolgirl', u'safe']
[u'moncouti', u'fli', u'french', u'flag', u'armstrong']
[u'need', u'brookton', u'broadband']
[u'pension', u'local', u'govt', u'rat', u'respit']
[u'reject', u'nation', u'park', u'decis', u'compo']
[u'share', u'mix', u'view', u'local']
[u'urg', u'keech', u'boost', u'japan', u'whale', u'opposit']
[u'baldi', u'strict', u'supervis', u'brack']
[u'muslim', u'pressur', u'wake', u'attack']
[u'naturopath', u'face', u'charg', u'patient', u'death']
[u'airport', u'busi', u'boost', u'job']
[u'centr', u'help', u'remot', u'communiti', u'stay', u'touch']
[u'compactor', u'offer', u'longer', u'landfil', u'life']
[u'letter', u'send', u'mar', u'extort', u'case']
[u'polic', u'recruit', u'head', u'tamworth', u'area']
[u'nicklaus', u'prepar', u'final', u'farewel']
[u'piggeri', u'free', u'pmws', u'diseas']
[u'radioact', u'wast', u'dump']
[u'nurs', u'place', u'better', u'condit']
[u'nurs', u'charg', u'patient', u'death']
[u'dead', u'miss', u'tanker', u'collis']
[u'onlin', u'program', u'aim', u'help', u'diabet', u'patient']
[u'opal', u'china']
[u'optus', u'wait', u'formal', u'respons', u'phone', u'tower']
[u'pair', u'jail', u'wild', u'barossa', u'valley', u'chase']
[u'patient', u'hope', u'inquiri', u'lead', u'health', u'chang']
[u'owner', u'warn', u'diabet', u'risk']
[u'phelp', u'light', u'post', u'olymp', u'world']
[u'phone', u'confirm', u'hick', u'health', u'deterior']
[u'pietersen', u'beat', u'thorp', u'england', u'test']
[u'pioneer', u'hop', u'bounc', u'forfeit', u'match']
[u'planet', u'sun', u'challeng', u'astronom']
[u'flag', u'idea', u'card']
[u'open', u'nation', u'card', u'debat']
[u'polic', u'chief', u'head', u'singleton']
[u'polic', u'consid', u'miss', u'girl', u'internet', u'chat', u'room']
[u'polic', u'hope', u'reward', u'remind', u'help', u'solv', u'teen']
[u'polic', u'driveway', u'death', u'victim']
[u'polic', u'reject', u'claim', u'staff', u'woe']
[u'polic', u'releas', u'imag', u'suspect', u'suicid', u'bomber']
[u'polic', u'releas', u'photo', u'bomb', u'suspect']
[u'polic', u'search', u'dam', u'woman', u'bodi']
[u'port', u'author', u'doubl', u'woodchip', u'export']
[u'power', u'author', u'look', u'avoid', u'blackout', u'repeat']
[u'prayer', u'doesnt', u'help', u'heart', u'patient', u'survey', u'find']
[u'probe', u'launch', u'hotel', u'blaze']
[u'produc', u'downplay', u'crop', u'contamin']
[u'promin', u'muslim', u'refus', u'entri']
[u'protest', u'polic', u'clash', u'maleni', u'supermarket', u'site']
[u'protest', u'hope', u'buy', u'maleni', u'site']
[u'public', u'urg', u'atsic', u'replac']
[u'raider', u'appeal', u'offici']
[u'rain', u'pose', u'crop', u'worri', u'farmer']
[u'rate', u'repriev', u'cooma', u'monaro', u'ratepay']
[u'call', u'vanston']
[u'recruit', u'bolster', u'clarenc', u'polic', u'forc']
[u'region', u'employ', u'rate', u'overtak', u'citi']
[u'region', u'resid', u'urg', u'sign', u'rent', u'assist']
[u'report', u'add', u'fuel', u'refshaug', u'attack']
[u'report', u'question', u'anim', u'welfar']
[u'stand', u'public', u'consult', u'effort']
[u'govt', u'consid', u'palmer', u'report', u'chang']
[u'scheme', u'aim', u'improv', u'disabl', u'servic', u'access']
[u'school', u'princip', u'walk', u'help', u'homeless']
[u'senat', u'say', u'pilbara', u'committe', u'fund', u'proper']
[u'sheriff', u'probe', u'juror', u'detail', u'bungl']
[u'shuttl', u'launch', u'unlik', u'come', u'day', u'nasa']
[u'solon', u'lawyer', u'hope', u'vanston', u'comment']
[u'south', u'west', u'pair', u'charg', u'fake', u'money']
[u'sprinter', u'come', u'play', u'stage']
[u'lankan', u'court', u'block', u'tsunami', u'deal']
[u'lanka', u'seiz', u'control', u'raini', u'colombo']
[u'stanhop', u'prison', u'visit', u'littl', u'late', u'say']
[u'steven', u'hang', u'boot']
[u'strike', u'action', u'disrupt', u'tran', u'tasman', u'flight']
[u'stuey', u'take', u'green', u'jersey']
[u'sweater', u'swelter', u'shoplift']
[u'sydney', u'lizard', u'list', u'best', u'travel', u'spot']
[u'tamworth', u'librari', u'share', u'harri', u'potter', u'frenzi']
[u'research', u'claim', u'world', u'hybrid', u'engin']
[u'teen', u'plead', u'guilti', u'fatal', u'street', u'race']
[u'thai', u'govt', u'crack', u'fight', u'milit']
[u'thai', u'offici', u'discuss', u'spate', u'violenc']
[u'thousand', u'expect']
[u'thousand', u'flee', u'kenyan', u'clan', u'violenc']
[u'threaten', u'grower', u'urg', u'complain', u'accc']
[u'metr', u'croc', u'releas', u'darwin', u'trap']
[u'tiger', u'decis', u'captain', u'johnson']
[u'toowoomba', u'warn', u'whoop', u'cough', u'threat']
[u'transvestit', u'athlet', u'jail', u'decept']
[u'shoot', u'dead', u'bomb', u'thailand']
[u'govt', u'london', u'bomb', u'iranian']
[u'unborn', u'babi', u'carri', u'pollut', u'studi', u'find']
[u'underwat', u'scanner', u'help', u'solv', u'mysteri', u'death']
[u'union', u'beat', u'abattoir', u'reopen']
[u'panel', u'fail', u'agre', u'internet', u'govern']
[u'econom', u'data', u'lift', u'market']
[u'general', u'deni', u'afghanistan', u'quagmir']
[u'dieman', u'mine', u'get', u'gladston', u'ahead']
[u'driver', u'hospit', u'train', u'crash']
[u'vanston', u'sham', u'forc', u'pregnant', u'detaine']
[u'vieira', u'leav', u'arsenal', u'juventus']
[u'wagga', u'mental', u'health', u'rehab', u'centr']
[u'wallabi', u'replet', u'kick', u'option', u'say', u'eal']
[u'watkin', u'outlin', u'rail', u'station', u'work']
[u'webck', u'say', u'bronco', u'weather', u'storm']
[u'wellshot', u'hotel', u'owner', u'beat', u'sale', u'prospect']
[u'wood', u'lead', u'open', u'hensbi', u'outright', u'second']
[u'work', u'start', u'marin', u'medic', u'school']
[u'worri', u'leas', u'land', u'price', u'turn', u'resid', u'away']
[u'zimbabw', u'press', u'see', u'ulterior', u'motiv', u'clergi']
[u'aceh', u'rebel', u'claim', u'breakthrough', u'talk']
[u'agassi', u'skip', u'indi', u'event']
[u'argentina', u'brink', u'davi', u'triumph']
[u'argentina', u'win', u'pivot', u'doubl', u'clash']
[u'arthur', u'tri', u'australia']
[u'aussi', u'ash', u'reject', u'star', u'counti']
[u'bat', u'england', u'ash', u'hop', u'india']
[u'battl', u'wessel', u'keep', u'dutch', u'hop', u'aliv']
[u'beatti', u'trip', u'anger', u'patel', u'patient', u'group']
[u'betfair', u'defend', u'onlin', u'licenc']
[u'biblic', u'remain', u'macau', u'add', u'heritag', u'list']
[u'bird', u'nation', u'secur', u'issu', u'rudd', u'say']
[u'black', u'cloth', u'intrud', u'breach', u'sydney', u'airport']
[u'blair', u'lash', u'evil', u'ideolog', u'islam']
[u'brett', u'interview']
[u'crash', u'kill', u'south', u'africa']
[u'californian', u'marriag', u'reviv']
[u'canada', u'commit', u'troop', u'afghanistan']
[u'care', u'packag', u'good', u'say', u'solon']
[u'cat', u'pull', u'plug', u'power']
[u'citi', u'reject', u'chelsea', u'wright', u'phillip']
[u'coastal', u'area', u'empti', u'emili', u'close', u'jamaica']
[u'coron', u'recommend', u'safeti', u'upgrad', u'ralli']
[u'council', u'reconsid', u'parachut', u'trial']
[u'davydenko', u'put', u'russia', u'level', u'franc']
[u'consid', u'charg', u'case']
[u'driver', u'strike', u'safeti', u'warn', u'coulthard']
[u'egypt', u'confirm', u'arrest', u'london', u'bomb', u'maker']
[u'eminem', u'readi', u'quit', u'report']
[u'famili', u'appeal', u'inform', u'miss', u'woman']
[u'fan', u'await', u'harri', u'potter']
[u'firefox', u'browser', u'near', u'percent', u'market', u'share']
[u'dead', u'blast', u'turkish', u'resort']
[u'giralang', u'owner', u'step', u'redevelop']
[u'govt', u'begin', u'advertis', u'counter', u'punch']
[u'govt', u'handl', u'hick', u'joke']
[u'govt', u'meltdown', u'nuclear', u'issu']
[u'govt', u'launch', u'campaign']
[u'grandstand', u'speak', u'kilda', u'coach', u'grant', u'thoma']
[u'guantanamo', u'trial', u'legal', u'court', u'find']
[u'healthi', u'lifestyl', u'oldest', u'marri', u'coupl']
[u'histor', u'charter', u'add', u'victorian', u'heritag', u'list']
[u'howard', u'extend', u'sympathi', u'famili']
[u'deepli', u'sorri', u'vizard', u'say']
[u'impress', u'eagl', u'tame', u'lion']
[u'indonesia', u'pledg', u'combat', u'illeg', u'log']
[u'isra', u'strike', u'kill', u'hama', u'member']
[u'jail', u'label', u'facto', u'psych', u'hospit']
[u'wrap', u'leicestershir']
[u'juve', u'champion', u'leagu', u'hop', u'vieira']
[u'kenyan', u'troop', u'hunt', u'massacr', u'raider']
[u'hayden', u'serv', u'ash', u'notic']
[u'ljubic', u'pull', u'croatia', u'level', u'romania']
[u'loeb', u'take', u'charg', u'argentina']
[u'london', u'blast', u'suspect', u'link', u'qaeda']
[u'london', u'bomber', u'brainwash', u'famili', u'say']
[u'london', u'bomb', u'probe', u'widen']
[u'luna', u'park', u'develop', u'go', u'wrong']
[u'maleni', u'protest', u'charg', u'obstruct']
[u'arrest', u'london', u'bomb']
[u'mcbrat', u'fight', u'trademark', u'legal', u'battl']
[u'mcewen', u'hit', u'jackpot', u'ogradi', u'stay', u'hunt']
[u'mcewen', u'sprint', u'tour', u'trebl']
[u'morri', u'inquiri', u'head', u'north']
[u'baldi', u'need', u'indefinit', u'jail', u'term', u'johnson']
[u'murali', u'skittl', u'west', u'indi']
[u'nalbandian', u'down', u'arthur', u'level']
[u'nalbandian', u'win', u'second', u'singl', u'match']
[u'nasa', u'back', u'weekend', u'shuttl', u'launch']
[u'nicklaus', u'bid', u'farewel', u'tiger', u'forg', u'clear']
[u'nicklaus', u'sign', u'andrew']
[u'ningaloo', u'hotel', u'plan', u'confus', u'communiti']
[u'defend', u'free', u'transport', u'union', u'picnic']
[u'opal', u'lose', u'cuba']
[u'pakistan', u'detain', u'london', u'bomb']
[u'patient', u'wait', u'ambul', u'join', u'queue']
[u'penultim', u'harri', u'potter', u'hit', u'shop']
[u'penultim', u'potter', u'book', u'releas']
[u'perjuri', u'charg', u'policeman', u'teen']
[u'petrol', u'price', u'refineri', u'remain', u'shut']
[u'phoenix', u'battl', u'melbourn']
[u'diseas', u'result', u'month', u'away']
[u'offer', u'condol', u'famili']
[u'press', u'bush', u'speedi', u'hick', u'hear']
[u'polic', u'doubt', u'milat', u'woman', u'help']
[u'polic', u'identifi', u'london', u'suicid', u'bomber']
[u'serv', u'counter', u'meal', u'camel']
[u'pyrene', u'offer', u'glimmer', u'hope', u'chaser']
[u'rabbitoh', u'stun', u'cowboy', u'townsvill']
[u'rey', u'clichi', u'extend', u'contract', u'arsenal']
[u'rice', u'visit', u'aim', u'ensur', u'gaza', u'pullout']
[u'rupert', u'guin', u'wrap', u'stage']
[u'saint', u'march', u'past', u'tiger']
[u'schwarzenegg', u'drop', u'controversi', u'magazin', u'deal']
[u'seal', u'killer', u'face', u'fin']
[u'shark', u'edg', u'knight', u'thriller']
[u'shotlin', u'boost', u'catch', u'releas', u'surviv']
[u'solon', u'say', u'care', u'packag', u'good']
[u'spain', u'alleg', u'qaeda', u'leader', u'beat', u'jail']
[u'spanish', u'sensat', u'valverd', u'pull']
[u'suicid', u'bomber', u'famili', u'devast', u'london']
[u'suicid', u'bomb', u'possibl', u'turkish', u'resort']
[u'swank', u'costner', u'narrat', u'sept', u'documentari']
[u'swan', u'toppl', u'demon']
[u'sydney', u'water', u'warn', u'crisi', u'report']
[u'taliban', u'hang', u'afghan', u'tribal', u'chief']
[u'tenni', u'australia', u'distanc', u'fanat']
[u'thorp', u'take', u'ash', u'ax', u'stride']
[u'british', u'soldier', u'kill', u'iraq', u'attack']
[u'tiger', u'hop', u'saint']
[u'trio', u'plead', u'guilti', u'balco', u'case']
[u'trust', u'vieira', u'deal', u'wenger', u'insist']
[u'pedestrian', u'kill']
[u'union', u'seek', u'risk', u'assess', u'nuclear', u'wast']
[u'charg', u'soldier', u'abus', u'detaine']
[u'court', u'deliv', u'hick', u'setback']
[u'retail', u'challeng', u'visa', u'card', u'fee']
[u'stock', u'peak']
[u'prison', u'escape']
[u'warrior', u'steal', u'victori', u'rooster']
[u'wie', u'master', u'thwart']
[u'wit', u'recal', u'atom', u'blast']
[u'yahoo', u'tap', u'student', u'research']
[u'zimbabw', u'say', u'briefli', u'halt', u'demolit', u'paper']
[u'rebel', u'kill', u'afghanistan']
[u'abba', u'warn', u'palestinian', u'milit']
[u'year', u'qasim', u'free']
[u'allig', u'kill', u'florida', u'canal']
[u'aloisi', u'delight', u'alav']
[u'aloisi', u'join', u'alav']
[u'ancic', u'ljubic', u'croatia']
[u'argentina', u'complet', u'australia']
[u'armstrong', u'take', u'giant', u'step', u'pyrene']
[u'arson', u'rule', u'carpet', u'store', u'blaze']
[u'aussi', u'jone', u'seiz', u'open', u'lead']
[u'aussi', u'lay', u'card', u'tabl']
[u'aussi', u'assess', u'davi', u'flop']
[u'australian', u'survivor', u'london', u'bomb', u'wake']
[u'beatti', u'push', u'busi', u'abandon', u'sydney', u'melbourn']
[u'beer', u'regatta', u'float', u'year']
[u'blind', u'prevent', u'aborigin', u'communiti']
[u'blue', u'card', u'remind', u'campaign', u'kick']
[u'bogut', u'struggl', u'adjust', u'earli', u'work']
[u'brazil', u'threaten', u'sanction']
[u'brogden', u'water', u'stanc', u'contradictori', u'govt']
[u'bronco', u'outmuscl', u'storm']
[u'chanderpaul', u'prais', u'team', u'fight', u'perform']
[u'claim', u'ambassador', u'concern', u'say', u'labor']
[u'cooma', u'monaro', u'strateg', u'plan', u'readi']
[u'crow', u'thrash', u'hapless', u'bulldog']
[u'daughter', u'inspir', u'equiti', u'man', u'jump', u'anim', u'right']
[u'death', u'toll', u'hit', u'iraq', u'fuel', u'truck', u'attack']
[u'dept', u'defend', u'hospit', u'treatment']
[u'differ', u'world', u'demand', u'card']
[u'docker', u'remain', u'final', u'race']
[u'dragon', u'roll', u'eagl']
[u'evan', u'eye', u'finish', u'debut']
[u'fail', u'health', u'blame', u'bungl']
[u'fiji', u'trip', u'focus', u'process', u'polit', u'pratt']
[u'destroy', u'multi', u'million', u'dollar', u'home']
[u'franc', u'doubl', u'lead']
[u'french', u'terror', u'expert', u'meet', u'ruddock']
[u'govt', u'nuclear', u'wast', u'campaign']
[u'green', u'push', u'recherch', u'heritag', u'list']
[u'habib', u'stand', u'tortur', u'claim']
[u'half', u'hour', u'polic', u'chase', u'end', u'charg']
[u'hama', u'milit', u'kill', u'sharon', u'give', u'armi', u'free']
[u'happi', u'qasim', u'thank', u'support']
[u'henri', u'replac', u'vieira', u'arsenal', u'captain']
[u'hewitt', u'confid', u'keep', u'australia']
[u'hewitt', u'thump', u'aussi']
[u'hewitt', u'thump', u'australia']
[u'hop', u'great', u'lake', u'snow', u'boost', u'water', u'level']
[u'illeg', u'fish', u'boat', u'destroy', u'coast']
[u'indian', u'photograph', u'face', u'suit', u'coke', u'billboard']
[u'indonesia', u'rebel', u'agre', u'formula', u'aceh', u'peac']
[u'iraq', u'tribun', u'lay', u'charg', u'saddam']
[u'irish', u'youth', u'british', u'tourist', u'kill', u'turkish']
[u'isinbayeva', u'set', u'record']
[u'want', u'speak', u'chelsea', u'wright', u'phillip']
[u'jaeger', u'hold', u'determin', u'firebird']
[u'maxwel', u'wrap']
[u'jurist', u'ronald', u'wilson', u'die']
[u'justin', u'langer', u'interview']
[u'liber', u'brush', u'indonesian', u'critic']
[u'loeb', u'track', u'record', u'argentina']
[u'london', u'bomb', u'make', u'suspect', u'innoc', u'famili']
[u'maleni', u'protest', u'maintain', u'wooli', u'fight']
[u'charg', u'bocc', u'ball', u'assault']
[u'martyn', u'langer', u'pont', u'lead', u'feast']
[u'matilda', u'score', u'gasp', u'china']
[u'melbourn', u'driver', u'dodg', u'fall', u'street', u'light']
[u'check', u'suspect', u'london', u'bomber', u'report']
[u'mourinho', u'frustrat', u'transfer', u'bid']
[u'nathan', u'fien', u'sion', u'faumuina']
[u'public', u'hous', u'bushfir', u'ravag', u'street']
[u'ningaloo', u'star', u'resort']
[u'tough', u'drink', u'driver', u'govt']
[u'pack', u'close', u'tiger', u'falter']
[u'pakistan', u'detain', u'suspect', u'london', u'probe']
[u'pakistan', u'tell', u'alcohol', u'promot', u'super']
[u'pearl', u'oyster', u'trial', u'foster', u'competit']
[u'peter', u'perfect', u'hit', u'brick', u'wall']
[u'peter', u'qasim', u'free']
[u'pharmaceut', u'studi', u'prompt']
[u'photo', u'releas', u'suspect', u'suicid', u'bomber']
[u'deni', u'respons', u'turkish', u'resort']
[u'defend', u'australia', u'card', u'debat']
[u'dismiss', u'asio', u'boss', u'alleg']
[u'polic', u'releas', u'photo', u'london', u'blast', u'suspect']
[u'polic', u'releas', u'pictur', u'suspect', u'bomber']
[u'polic', u'seek', u'girl', u'birthday', u'parti']
[u'potter', u'fan', u'thrill', u'review']
[u'power', u'problem', u'fix', u'refineri']
[u'arroyo', u'forc', u'hold', u'ralli', u'embattl']
[u'quickfir', u'khan', u'make', u'stun', u'debut']
[u'race', u'commonwealth', u'perform']
[u'raider', u'upset', u'eel', u'canberra']
[u'rann', u'issu', u'edict', u'prevent', u'clash']
[u'rape', u'victim', u'chanc', u'shape']
[u'review', u'john', u'tong', u'test', u'scratch']
[u'rome', u'host', u'world', u'swim', u'champ']
[u'roo', u'breez', u'past', u'hawk']
[u'ross', u'sign', u'shark']
[u'rottnest', u'swim', u'move', u'safer', u'harbour']
[u'rwanda', u'dispatch', u'soldier', u'darfur', u'region']
[u'scout', u'rebuild', u'camp', u'cottermouth']
[u'shaun', u'mcrae', u'graham', u'murray']
[u'ronald', u'wilson', u'die']
[u'slovakia', u'drive', u'seat', u'doubl']
[u'suicid', u'bomber', u'kill', u'dozen', u'iraq']
[u'suicid', u'bomber', u'target', u'baghdad', u'polic', u'convoy']
[u'tag', u'show', u'river', u'shark', u'popul', u'healthi']
[u'tasmanian', u'coral', u'reef', u'proof', u'global', u'warm']
[u'teenag', u'girl', u'stab', u'outsid', u'shop', u'centr']
[u'teen', u'injur', u'perth', u'accid']
[u'totschnig', u'put', u'austria', u'tour']
[u'tourist', u'flee', u'mexico', u'cancun', u'emili', u'approach']
[u'tribut', u'pay', u'visionari', u'ronald', u'wilson']
[u'tuskless', u'eleph', u'evolv', u'china', u'scientist']
[u'hurt', u'mortar', u'attack', u'gaza', u'settlement']
[u'ullrich', u'suggest', u'wont', u'fight']
[u'unit', u'defend', u'jeer']
[u'dismiss', u'hick', u'habib', u'abus', u'claim']
[u'soldier', u'implic', u'italian', u'steroid', u'bust']
[u'veget', u'farmer', u'import', u'campaign', u'road']
[u'view', u'grandstand']
[u'busi', u'plot', u'campaign']
[u'wasp', u'warn']
[u'abba', u'pledg', u'stop', u'rocket', u'attack']
[u'averag', u'temp', u'expect']
[u'aceh', u'peac', u'deal', u'agre']
[u'aceh', u'peac', u'wont', u'come', u'quick', u'expert', u'warn']
[u'actress', u'back', u'mules']
[u'adelaid', u'oval', u'host', u'game']
[u'advocaat', u'coach', u'unit', u'arab', u'emir']
[u'afghanistan', u'ask', u'hold', u'crimin', u'account']
[u'scrutinis', u'alburi', u'airport', u'secur']
[u'strike', u'forc', u'dozen', u'cancel']
[u'anderson', u'sue', u'govt', u'lose']
[u'close', u'higher', u'rinker', u'jump']
[u'aussi', u'halt', u'aussi']
[u'aussi', u'silver', u'synchro']
[u'austar', u'look', u'china', u'answer', u'southland']
[u'australia', u'cash', u'beef', u'export']
[u'award', u'recognis', u'pilbara', u'teacher', u'effort']
[u'bassga', u'project', u'suffer', u'delay']
[u'bayer', u'blame', u'canola', u'contamin']
[u'beazley', u'label', u'telstra', u'chief', u'monopolist']
[u'beazley', u'say', u'card', u'smokescreen']
[u'bilbi', u'respond', u'predat', u'train']
[u'bond', u'associ', u'admit', u'siphon', u'million']
[u'british', u'airway', u'chief', u'replac', u'vizard', u'major']
[u'bronco', u'wait', u'news', u'webck', u'charg']
[u'complementari', u'medicin', u'train']
[u'industri', u'help', u'clear']
[u'chopper', u'ferri', u'accid', u'victim', u'perth']
[u'chris', u'roger', u'interview']
[u'coalit', u'split', u'emerg', u'card']
[u'coast', u'tavern', u'damag']
[u'cole', u'commit', u'arsenal']
[u'colombia', u'beat', u'mexico', u'reach', u'gold', u'semi']
[u'committe', u'urg', u'reject', u'rezon', u'applic']
[u'conoco', u'philip', u'oper', u'timor', u'pipelin']
[u'contest', u'help', u'design', u'portrait', u'galleri']
[u'corbi', u'lawyer', u'unabl', u'produc', u'wit']
[u'council', u'throw', u'support', u'north', u'west', u'rail', u'rout']
[u'council', u'decid', u'rugbi', u'stadium', u'site']
[u'countri', u'audienc', u'lap', u'opera', u'shed']
[u'court', u'strike', u'blow', u'gunn', u'compo', u'claim']
[u'darwin', u'detent', u'centr', u'need', u'upgrad']
[u'detect', u'plead', u'guilti', u'drug', u'charg']
[u'detect', u'help', u'ensur', u'park', u'station', u'fulli']
[u'diesel', u'price', u'predict', u'climb']
[u'disabl', u'vulner', u'sexual', u'assault', u'confer']
[u'discoveri', u'doubl', u'leav', u'ullrich', u'content']
[u'disneyland', u'celebr', u'birthday']
[u'dodson', u'prais', u'ronald', u'convers']
[u'dont', u'leav', u'mental', u'polic']
[u'drayton', u'take', u'school', u'site', u'sell', u'list']
[u'driver', u'warn', u'condit']
[u'drought', u'stricken', u'landown', u'benefit']
[u'dusti', u'applianc', u'blame', u'emerg']
[u'emili', u'blow', u'carribean', u'holidaymak']
[u'environ', u'minist', u'favour', u'reloc']
[u'expert', u'discuss', u'report', u'outlin', u'futur', u'health']
[u'extra', u'holiday', u'secur', u'pay', u'riverina', u'school']
[u'farmer', u'hit', u'water', u'recycl', u'plan']
[u'fear', u'card', u'lead', u'ident', u'theft']
[u'festiv', u'sydney', u'airport']
[u'destroy', u'mount', u'ousley', u'hous']
[u'destroy', u'shed', u'near', u'backpack', u'hostel']
[u'firefight', u'spainish', u'forest', u'blaze']
[u'firefight', u'push', u'boost', u'number']
[u'flood', u'problem', u'remov', u'section', u'highway']
[u'food', u'creat', u'confus', u'opposit']
[u'policeman', u'jail', u'serb', u'presid', u'murder']
[u'prime', u'minist', u'heath', u'die']
[u'french', u'polynesian', u'leader', u'moot', u'pacif', u'passport']
[u'gardin', u'charg', u'strike']
[u'gardin', u'accept', u'strike', u'penalti']
[u'german', u'court', u'releas', u'qaeda', u'suspect']
[u'giant', u'record', u'impress', u'slammer']
[u'qasim', u'perman', u'visa', u'labor', u'say']
[u'canola', u'creat', u'foreign', u'custom', u'concern']
[u'govern', u'tighter', u'food', u'label', u'law']
[u'govt', u'group', u'discuss', u'technic', u'colleg']
[u'govt', u'offer', u'incent']
[u'govt', u'order', u'import', u'food', u'probe']
[u'govt', u'program', u'provid', u'opportun', u'indigen']
[u'govt', u'reject', u'maleni', u'financi', u'benefit', u'claim']
[u'govt', u'accus', u'neglect', u'elder']
[u'govt', u'undertak', u'festiv', u'research']
[u'govt', u'urg', u'promot', u'afford', u'countri', u'town']
[u'group', u'want', u'grazier', u'water']
[u'guantanamo', u'rule', u'wont', u'derail', u'hick', u'campaign', u'lawyer']
[u'gunn', u'vow', u'proceed', u'lawsuit']
[u'hama', u'reaffirm', u'ceas', u'commit']
[u'health', u'offici', u'seek', u'guest', u'contamin']
[u'health', u'servic', u'fail', u'employ']
[u'hewitt', u'confid', u'domest', u'life', u'halt', u'slam']
[u'hiddink', u'expect', u'name', u'socceroo', u'coach']
[u'hiddink', u'tip', u'socceroo', u'coach']
[u'hill', u'find', u'aceh', u'peac', u'deal', u'promis']
[u'hill', u'welcom', u'local', u'assembl', u'militari', u'chopper']
[u'hodg', u'call', u'farewel', u'match', u'holland']
[u'howard', u'prais', u'iraq', u'defianc']
[u'hundr', u'evacu', u'china', u'await', u'typhoon']
[u'card', u'debat', u'distract', u'labor']
[u'inquiri', u'head', u'back', u'guard', u'death', u'custodi', u'case']
[u'investig', u'begin', u'glide', u'death']
[u'iraq', u'urg', u'donor', u'involv']
[u'iraq', u'britain', u'vulner', u'report']
[u'israel', u'build', u'militari', u'gaza', u'border']
[u'isra', u'armi', u'search', u'desert']
[u'israel', u'prepar', u'gaza', u'pull', u'protest']
[u'israel', u'prevent', u'pullout', u'protest', u'reach', u'ralli']
[u'jaeger', u'captain', u'snap', u'achill', u'tendon']
[u'japan', u'accus', u'buy', u'whale', u'vote']
[u'japan', u'accus', u'whale', u'bribe']
[u'judg', u'urg', u'unit', u'effort', u'terror']
[u'kyogl', u'mayor', u'confid', u'technic', u'colleg', u'propos']
[u'latham', u'avail', u'wallabi']
[u'group', u'push', u'famili', u'relationship', u'centr']
[u'ljubic', u'secur', u'croatia', u'davi', u'semi']
[u'lose', u'luggag', u'leav', u'aussi', u'swimmer', u'high']
[u'maker', u'look', u'mar', u'snicker']
[u'maleni', u'protest', u'question', u'supermarket', u'govt']
[u'kill', u'site', u'traffic', u'light', u'trial']
[u'man', u'nose', u'bite', u'fight']
[u'marina', u'plan', u'get', u'downsiz']
[u'marin', u'reserv', u'offer', u'benefit', u'crabber']
[u'meet', u'focus', u'marin', u'reserv', u'plan']
[u'mice', u'creat', u'headach', u'farmer']
[u'migaloo', u'spot', u'port', u'dougla']
[u'minist', u'review', u'council', u'hous', u'estat', u'decis']
[u'minist', u'urg', u'supermarket', u'aust', u'produc']
[u'effort', u'seek', u'boost', u'number']
[u'searcher', u'join', u'hunt', u'miss', u'woman']
[u'motorcyclist', u'hurt', u'road', u'crash']
[u'mous', u'fear', u'plagu']
[u'call', u'restraint', u'food', u'crop', u'test']
[u'call', u'sensibl', u'debat', u'nuclear', u'wast', u'dump']
[u'visit', u'yield', u'defenc', u'result']
[u'anti', u'terrorist', u'measur', u'protect', u'itali']
[u'centr', u'respons', u'tsunami', u'detect']
[u'rescu', u'helicopt', u'arriv', u'rockhampton']
[u'korea', u'look', u'build', u'trust']
[u'barrier', u'raid', u'hate', u'book', u'claim']
[u'trujillo', u'regul', u'plea']
[u'shire', u'want', u'safeti', u'guarante', u'nuclear', u'wast']
[u'nuclear', u'research', u'bodi', u'back', u'wast', u'dump']
[u'number', u'public', u'transport', u'fin', u'fall']
[u'stop', u'zimbabw', u'tour', u'despit', u'poll']
[u'oat', u'admit', u'bond', u'corp', u'fraud']
[u'oppn', u'concern', u'qasim', u'visa']
[u'oppon', u'card', u'wont', u'stop', u'terror']
[u'dead', u'iraqi', u'bomb', u'blitz']
[u'pakistan', u'clear', u'link', u'london', u'bomber']
[u'founder', u'accus', u'purg', u'record']
[u'paralympian', u'select', u'abl', u'bodi', u'team']
[u'peac', u'deal', u'put', u'rebel', u'polit']
[u'perth', u'artist', u'take', u'major', u'cossack', u'award']
[u'petit', u'launch', u'oppos', u'marin', u'park']
[u'pipelin', u'tariff', u'chang', u'benefit', u'local']
[u'attend', u'church', u'bush', u'washington']
[u'polic', u'investig', u'destruct', u'rampag']
[u'polic', u'look', u'forward', u'ombudsman']
[u'polic', u'probe', u'alcohol', u'speed', u'factor', u'weekend']
[u'pont', u'look', u'build', u'hard', u'day', u'graft']
[u'premier', u'propos', u'review', u'budget', u'estim']
[u'premier', u'mock', u'award', u'controversi']
[u'public', u'serv', u'punish', u'watch']
[u'qasim', u'head', u'beach']
[u'qasim', u'seek', u'compens']
[u'qasim', u'ident', u'remain', u'unknown', u'vanston']
[u'racv', u'forecast', u'record', u'high', u'fuel', u'price']
[u'rain', u'help', u'boost', u'hydro', u'water', u'storag']
[u'rat', u'infest', u'hong', u'kong']
[u'region', u'victoria', u'growth', u'continu', u'govt']
[u'resid', u'accept', u'coastal', u'develop', u'plan']
[u'resid', u'strip', u'nude', u'instal']
[u'resid', u'urg', u'join', u'kimberley', u'coast', u'clean']
[u'resist', u'iraq', u'legitim', u'sadr']
[u'rinker', u'group', u'improv', u'profit', u'forecast']
[u'risdon', u'jail', u'sieg', u'report', u'rais', u'concern']
[u'road', u'user', u'warn', u'care', u'high', u'countri']
[u'roger', u'impress', u'scari']
[u'rowl', u'dread', u'close', u'potter', u'saga']
[u'ruddock', u'hold', u'secur', u'talk', u'french', u'judg']
[u'ruddock', u'unawar', u'asio', u'boss', u'alleg']
[u'rural', u'resid', u'help', u'polic', u'solv', u'crime']
[u'russia', u'stun', u'franc', u'davi']
[u'saff', u'hail', u'freeway', u'rout']
[u'school', u'know', u'allergi', u'student', u'coron', u'tell']
[u'school', u'know', u'teen', u'peanut', u'allergi', u'inquest', u'hear']
[u'scientist', u'gene', u'defect', u'link', u'heart', u'diseas']
[u'chang', u'region', u'seek', u'feder', u'fund']
[u'senior', u'turn', u'away', u'centrelink']
[u'shadow', u'cabinet', u'riverland', u'meet', u'look']
[u'shell', u'servic', u'station', u'blame', u'petrol', u'leak']
[u'shuttl', u'delay', u'worri', u'space', u'station', u'partner']
[u'dead', u'equatori', u'guinea', u'plane', u'crash']
[u'slovak', u'davi', u'semi', u'netherland']
[u'spotlight', u'fevola', u'shocker']
[u'staff', u'boost', u'hospit', u'critic', u'care', u'unit']
[u'state', u'challeng', u'law', u'beatti']
[u'station', u'manag', u'rais', u'wast', u'dump', u'fear']
[u'straw', u'deni', u'terrorist', u'target']
[u'sydney', u'polic', u'probe', u'hate', u'book', u'claim']
[u'farmer', u'reach', u'melbourn', u'food', u'crusad']
[u'tasmanian', u'farmer', u'step', u'anti', u'import', u'campaign']
[u'technic', u'colleg', u'forg', u'closer', u'link']
[u'thousand', u'celebr', u'art', u'festiv', u'open']
[u'tiger', u'cruis', u'major']
[u'toddler', u'hurt', u'blast']
[u'treasur', u'seek', u'senat', u'help']
[u'trescothick', u'favourit', u'mcgrath']
[u'truss', u'admit', u'transport', u'suscept', u'attack']
[u'typhoon', u'haitang', u'lash', u'taiwan']
[u'court', u'find', u'afghan', u'warlord', u'guilti', u'tortur']
[u'flag', u'iraq', u'troop', u'reduct', u'month']
[u'polic', u'arrest', u'terror', u'suspect']
[u'polic', u'correct', u'terror', u'arrest', u'inform']
[u'upgrad', u'break', u'hill', u'prison', u'hous', u'inmat']
[u'vanilla', u'slice', u'return']
[u'victorian', u'camel', u'take', u'carniv', u'major', u'event']
[u'wait', u'game', u'west', u'coast', u'ruckmen']
[u'wallabi', u'squad', u'member', u'fava', u'join', u'western', u'forc']
[u'wast', u'dump', u'plan', u'draw', u'mix', u'reaction']
[u'webck', u'hook']
[u'weekend', u'accid', u'road', u'spotlight']
[u'west', u'indian', u'lawson', u'report', u'suspect', u'action']
[u'white', u'hous', u'sourc', u'agent']
[u'wilson', u'famili', u'turn', u'state', u'funer', u'offer']
[u'wind', u'farm', u'develop', u'issu']
[u'wit', u'elud', u'corbi', u'lawyer']
[u'wright', u'phillip', u'chelsea']
[u'yampi', u'sound', u'major', u'militari', u'train']
[u'kill', u'iraq', u'attack']
[u'abalon', u'hope', u'look', u'foreign', u'fund']
[u'accus', u'child', u'murder', u'face', u'court']
[u'accus', u'crimin', u'begin', u'extradit', u'fight']
[u'weakest', u'link', u'steal', u'rego']
[u'drug', u'code', u'backflip']
[u'reject', u'islam', u'bookshop']
[u'alcohol', u'sale', u'code', u'target', u'citi', u'violenc']
[u'bodi', u'london', u'bomb', u'sit', u'identifi']
[u'alleg', u'murder', u'request', u'interview', u'cash']
[u'qaeda', u'set', u'deadlin', u'iraq', u'pull']
[u'anaesthetist', u'hamper', u'hospit', u'surgeri']
[u'anim', u'right', u'group', u'fight', u'cost']
[u'aussi', u'food', u'push', u'head', u'ballarat']
[u'australia', u'institut', u'doubt', u'wast', u'dump', u'oper']
[u'australian', u'cyclist', u'kill', u'germani']
[u'australian', u'team', u'cyclist', u'kill', u'germani']
[u'australia', u'sweep', u'ash', u'mcgrath']
[u'aust', u'team', u'cyclist', u'kill', u'germani']
[u'aust', u'travel', u'domin', u'tourism', u'industri', u'report']
[u'aust', u'allianc', u'deeper', u'howard', u'murdoch']
[u'barrist', u'legal', u'immun', u'vital', u'say']
[u'baxter', u'visit', u'convinc', u'burk', u'need', u'royal']
[u'beazley', u'blame', u'poll', u'result', u'london', u'bomb']
[u'beazley', u'support', u'sink']
[u'beef', u'produc', u'remot', u'station']
[u'biochemist', u'clear', u'link', u'london', u'bomb']
[u'blair', u'urg', u'muslim', u'tackl', u'evil', u'ideolog']
[u'blaze', u'rip', u'port', u'campbel', u'restaur']
[u'blood', u'pressur', u'provid', u'reason', u'chocol']
[u'boyl', u'maleni', u'comment', u'disappoint', u'say']
[u'british', u'teen', u'launch', u'airlin', u'bedroom']
[u'build', u'work', u'conservatorium', u'student', u'number']
[u'bush', u'add', u'crimin', u'test', u'leak']
[u'bushfir', u'victim', u'lodg', u'second', u'damag', u'claim']
[u'cairn', u'rate', u'prompt', u'awar']
[u'canadian', u'take', u'gold', u'china', u'domin']
[u'casino', u'embroil', u'chocol', u'extort']
[u'criticis', u'account', u'increas']
[u'chechen', u'polic', u'jeep', u'attack', u'kill']
[u'chen', u'address', u'committe', u'china', u'right', u'abus']
[u'child', u'protect', u'law', u'requir', u'polic', u'check']
[u'children', u'starv', u'death', u'niger']
[u'refus', u'pressur', u'senat', u'nuclear', u'dump']
[u'coalit', u'divid', u'food', u'label', u'say', u'opposit']
[u'contractor', u'defend', u'alcan', u'refineri', u'off']
[u'costello', u'back', u'vizard', u'case']
[u'costello', u'reiter', u'nation', u'competit']
[u'costello', u'tour', u'dalrympl', u'coal', u'termin']
[u'coulthard', u'play', u'strike', u'threat']
[u'council', u'award', u'wodonga', u'streetscap', u'contract']
[u'council', u'delay', u'raaf', u'base', u'decis']
[u'councillor', u'oppos', u'telstra', u'sale']
[u'council', u'push', u'roma', u'mitchel', u'road', u'revamp']
[u'council', u'investig', u'attack', u'girl']
[u'cycl', u'world', u'mourn', u'dead', u'crash']
[u'cyclist', u'widow', u'question', u'dpps', u'kapunda', u'delay']
[u'defenc', u'mean', u'king', u'highway', u'upgrad', u'nrma']
[u'develop', u'odd', u'high', u'rise', u'reject']
[u'devon', u'north', u'faulti', u'phone', u'repair', u'continu']
[u'doctor', u'shortag', u'mean', u'hospit', u'cut']
[u'doubt', u'air', u'tourism', u'affili']
[u'dreamtim', u'paint', u'sale', u'come']
[u'drought', u'reject', u'puzzl']
[u'drug', u'fight', u'target', u'teen']
[u'dutton', u'carri', u'flag', u'card']
[u'eagl', u'selwood', u'nomin', u'rise', u'star', u'award']
[u'eden', u'broadband', u'demand', u'assess']
[u'ellison', u'back', u'role', u'fisher', u'illeg', u'fish']
[u'engin', u'earn', u'award', u'water', u'recycl', u'effort']
[u'environ', u'failur', u'report', u'find']
[u'evan', u'tate', u'boss', u'bow', u'pressur']
[u'famili', u'welcom', u'sieg', u'inquest', u'complaint']
[u'farmer', u'applaud', u'call', u'rural', u'state']
[u'farmer', u'test', u'free', u'crop']
[u'farmer', u'urg', u'embrac', u'work', u'holiday', u'visa']
[u'farm', u'group', u'unhappi', u'govt', u'cut']
[u'ferguson', u'warn', u'futur', u'conduct']
[u'season', u'start', u'earli']
[u'foreign', u'doctor', u'freez', u'hit', u'academ', u'post']
[u'forum', u'improv', u'wool', u'industri', u'imag']
[u'frantic', u'effort', u'stop', u'solon', u'deport', u'reveal']
[u'free', u'qasim', u'receiv', u'ongo', u'treatment']
[u'fund', u'incent', u'region', u'food', u'process', u'job']
[u'geograph', u'head', u'armidal', u'nation']
[u'geologist', u'warn', u'underwat', u'landslid']
[u'gilchrist', u'wicket', u'england', u'prize']
[u'gold', u'coast', u'team', u'robina', u'home']
[u'govt', u'attack', u'delay', u'highway', u'revamp']
[u'govt', u'face', u'scrutini', u'detaine', u'abus', u'claim']
[u'govt', u'consid', u'consequ', u'actu']
[u'govt', u'sewerag', u'fund']
[u'govt', u'urg', u'adopt', u'risdon', u'sieg', u'recommend']
[u'govt', u'urg', u'boost', u'road', u'load', u'limit']
[u'forefront', u'special', u'week']
[u'great', u'lake', u'tighten', u'belt', u'rate', u'rise']
[u'green', u'group', u'push', u'gunn']
[u'hama', u'milit', u'clash', u'palestinian', u'forc']
[u'harri', u'potter', u'post', u'record', u'sale', u'publish']
[u'health', u'servic', u'stand', u'administr', u'cut']
[u'health', u'servic', u'want', u'plan', u'forum', u'avoid']
[u'hewlett', u'packard', u'shed', u'thousand', u'job']
[u'hick', u'trial', u'fair', u'howard']
[u'hors', u'trainer', u'shoot', u'death', u'probabl', u'accident']
[u'illawarra', u'jobless', u'figur', u'mix']
[u'indigen', u'exhibit', u'fund', u'artist']
[u'inland', u'rail', u'plan', u'need', u'coordin', u'approach', u'atec']
[u'internet', u'fraud', u'cost', u'bank', u'buck']
[u'iraqi', u'gunmen', u'strike', u'base', u'worker']
[u'iraq', u'reach', u'democrat', u'mileston', u'myer', u'insist']
[u'islam', u'research', u'unit', u'aim', u'dispel', u'myth']
[u'isra', u'troop', u'kill', u'milit']
[u'jail', u'road', u'rage', u'driver', u'kill', u'toddler']
[u'keat', u'deni', u'labour', u'market', u'need', u'reform']
[u'hospit', u'debat', u'plan', u'say', u'health']
[u'kenyan', u'crash', u'kill']
[u'labor', u'concern', u'fingerprint', u'plan']
[u'labor', u'want', u'maleni', u'woolworth', u'meet']
[u'labor', u'target', u'chang', u'impact', u'bonus', u'right']
[u'readi', u'bouncer', u'battl']
[u'livestock', u'export', u'urg', u'improv', u'anim', u'welfar']
[u'local', u'govt', u'back', u'away', u'elect', u'chang']
[u'malle', u'back', u'card', u'plan']
[u'accus', u'babi', u'murder', u'face', u'trial']
[u'admit', u'drug', u'abus', u'stepdaught']
[u'face', u'court', u'restaur', u'stab']
[u'masterfood', u'extortionist', u'aim', u'casino']
[u'mayor', u'worri', u'coron', u'chang', u'hamper', u'bushfir']
[u'meet', u'focus', u'remot', u'water', u'suppli']
[u'melbourn', u'hand', u'steal', u'egyptian', u'artefact']
[u'mexican', u'resort', u'surviv', u'hurrican', u'emili', u'wrath']
[u'industri', u'studi', u'result', u'loom']
[u'miner', u'compani', u'plan', u'tiwi', u'sand']
[u'miner', u'find', u'gold', u'near', u'port', u'augusta']
[u'miner', u'assess', u'gold', u'explor', u'data']
[u'mine', u'agricultur', u'urg', u'help', u'combat', u'skill']
[u'minist', u'defend', u'critic', u'infrastructur']
[u'minist', u'open', u'jail', u'accommod', u'unit']
[u'minist', u'prais', u'mackay', u'crime', u'squad']
[u'minist', u'worri', u'cost', u'ethanol', u'blend', u'fuel']
[u'monsoon', u'flood', u'maroon', u'million', u'bangladeshi']
[u'mother', u'say', u'crisi', u'accommod', u'unsuit']
[u'gambier', u'ponder', u'draft', u'commerci', u'strategi']
[u'nasa', u'struggl', u'shuttl', u'problem']
[u'nation', u'prais', u'outgo', u'state', u'presid']
[u'nation', u'sell', u'bush', u'telstra', u'katter']
[u'children', u'seri', u'benefit', u'gold', u'coast']
[u'coach', u'veto', u'australia', u'colombia', u'friend']
[u'preschool', u'open', u'blaze']
[u'news', u'corp', u'buy', u'myspacecom']
[u'ninja', u'turtl', u'resurrect', u'screen']
[u'rubber', u'stamp', u'ralph', u'say', u'minist']
[u'coalit', u'nut', u'seat', u'split']
[u'farmer', u'elect', u'lauri', u'presid']
[u'wont', u'enter', u'busi', u'bid']
[u'opal', u'depart', u'china']
[u'open', u'mind', u'need', u'anti', u'terror', u'fight', u'say', u'polic']
[u'opposit', u'urg', u'network', u'extens', u'fund']
[u'pakistan', u'detain', u'london', u'bomb']
[u'get', u'permiss', u'expand', u'gambl', u'empir']
[u'peac', u'monitor', u'prepar', u'aceh', u'deploy']
[u'perth', u'jail', u'racial', u'motiv', u'murder']
[u'plan', u'afoot', u'arthriti', u'medic', u'factori']
[u'plantat', u'forestri', u'rule', u'review']
[u'effort', u'disappoint', u'hick', u'famili']
[u'urg', u'rich', u'world', u'help', u'poor', u'trade']
[u'polic', u'crack', u'road', u'rider']
[u'polic', u'hunt', u'servic', u'station', u'bandit']
[u'pound', u'back', u'thorp', u'swim', u'drug', u'cheat']
[u'premier', u'tell', u'break', u'hill', u'health', u'cut']
[u'princ', u'highway', u'featur', u'assembl']
[u'probe', u'launch', u'alumina', u'plant', u'fatal']
[u'produc', u'tell', u'generat']
[u'public', u'quiz', u'food']
[u'public', u'urg', u'continu', u'support', u'water', u'ban']
[u'warn', u'jail', u'year', u'old']
[u'queanbeyan', u'technic', u'colleg', u'elect', u'promis']
[u'raider', u'wait', u'woolford', u'appeal', u'clearanc']
[u'rain', u'go', u'help', u'drought', u'town']
[u'rann', u'voic', u'concern', u'nuclear', u'wast', u'dump']
[u'rat', u'review', u'rais', u'film', u'distributor']
[u'real', u'culprit', u'want', u'testifi', u'corbi', u'lawyer']
[u'real', u'owner', u'drug', u'corbi', u'lawyer']
[u'refuge', u'advoc', u'air', u'card', u'opposit']
[u'regul', u'overturn', u'execut']
[u'report', u'confirm', u'iraq', u'increas', u'terror']
[u'report', u'highlight', u'need', u'charlestown', u'rethink']
[u'riewoldt', u'consid', u'earli', u'return']
[u'rockhampton', u'budget', u'deliv', u'rate', u'rise']
[u'loom', u'ahead', u'grain', u'meet']
[u'rudd', u'say', u'hick', u'face', u'unfair', u'trial']
[u'africa', u'wont', u'confirm', u'zimbabw', u'loan', u'report']
[u'scientist', u'condemn', u'ax', u'research', u'fund', u'board']
[u'senat', u'inquiri', u'see', u'broom', u'spend', u'hand']
[u'disput', u'karoonda', u'storm', u'insur', u'report']
[u'assault', u'doctor', u'appli', u'medic', u'board']
[u'sheep', u'milk', u'protein', u'prevent', u'alzheim']
[u'shepparton', u'princ', u'face', u'court', u'million', u'dollar']
[u'singl', u'desk', u'hurt', u'wheat', u'grower', u'studi']
[u'solomon', u'deni', u'japan', u'buy', u'whale', u'vote']
[u'solon', u'deport', u'despit', u'seizur', u'nurs', u'claim']
[u'appli', u'pressur', u'father', u'bodi', u'exhum']
[u'south', u'west', u'endur', u'tough', u'time', u'job']
[u'stanhop', u'surpris', u'high', u'redund', u'respons']
[u'stem', u'cell', u'breakthrough', u'offer', u'hope', u'uterin']
[u'surgeri', u'cancel', u'stress', u'patient', u'opposit']
[u'task', u'forc', u'chief', u'promis', u'currumbin', u'landslid']
[u'teenag', u'critic', u'condit', u'stab']
[u'terror', u'book', u'report', u'concern', u'vail']
[u'pilot', u'miss', u'jet', u'collid']
[u'tibooburra', u'ident', u'die', u'crash']
[u'trio', u'charg', u'exot', u'plant', u'chemic']
[u'typhoon', u'haitang', u'kill', u'injur', u'dozen']
[u'group', u'probe', u'beauti', u'sight']
[u'court', u'jail', u'afghan', u'warlord']
[u'increas', u'concern', u'zimbabw', u'demolit']
[u'stock', u'profit', u'take']
[u'uterin', u'stem', u'cell', u'promis']
[u'vagrant', u'win', u'right', u'live', u'brazil', u'street']
[u'vail', u'outlin', u'expect', u'telstra', u'boss']
[u'veget', u'chang', u'promis', u'farmer', u'benefit']
[u'stoney', u'announc', u'exit', u'polit']
[u'vietnam', u'militari', u'chief', u'westmoreland', u'die']
[u'vizard', u'successor', u'passion']
[u'volunt', u'seek', u'bipolar', u'research']
[u'wallabi', u'readi', u'elli', u'park', u'battl']
[u'wall', u'street', u'drag', u'australian', u'stock']
[u'nat', u'telstra', u'sale', u'condit']
[u'watchdog', u'prais', u'urg', u'improv']
[u'weather', u'bureau', u'introduc', u'comfort', u'measur']
[u'webck', u'omeley', u'free', u'play']
[u'urg', u'govern', u'address', u'water', u'crisi']
[u'woman', u'charg', u'karratha', u'stab']
[u'worker', u'kill', u'uranium', u'blast']
[u'world', u'robot', u'champ', u'return', u'sydney']
[u'wright', u'phillip', u'complet', u'chelsea']
[u'young', u'driver', u'urg', u'road', u'statist']
[u'youth', u'question', u'stab', u'death']
[u'academ', u'strike']
[u'bushfir', u'litig', u'complain', u'lack']
[u'activist', u'eleph', u'fight', u'court']
[u'actor', u'farrel', u'take', u'action', u'tape']
[u'actu', u'tell', u'worker', u'fear']
[u'address', u'gaff', u'bowel', u'cancer', u'screen', u'test']
[u'albani', u'waterfront', u'plan', u'get']
[u'alic', u'close', u'deal']
[u'govern', u'help', u'stop', u'foreign', u'doctor']
[u'australian', u'water', u'qualiti', u'expertis', u'need', u'oversea']
[u'australia', u'face', u'scot', u'cricket', u'world', u'open']
[u'bayer', u'seek', u'cotton', u'approv']
[u'beachgoer', u'urg', u'report', u'sick', u'turtl']
[u'beatti', u'back', u'telstra', u'split']
[u'beatti', u'urg', u'visit', u'medic', u'blackmail', u'govt']
[u'beazley', u'call', u'iraq', u'quagmir', u'exit', u'strategi']
[u'beef', u'giant', u'unit', u'trade', u'reform']
[u'better', u'mules', u'train']
[u'british', u'soldier', u'face', u'crime', u'trial']
[u'builder', u'reason', u'confid', u'hous']
[u'bush', u'move', u'lift', u'india', u'nuclear', u'sanction']
[u'bush', u'pick', u'conserv', u'judg', u'suprem', u'court']
[u'bush', u'prais', u'howard']
[u'bush', u'prais', u'howard', u'backbon']
[u'coal', u'royalti', u'help', u'boost', u'water', u'suppli']
[u'bomb', u'explod', u'kashmir']
[u'charg', u'drop', u'palm', u'island', u'accus']
[u'china', u'capabl', u'taiwan', u'attack', u'report']
[u'china', u'economi', u'surg', u'forward']
[u'cloud', u'hang', u'futur', u'univers', u'legal', u'centr']
[u'club', u'meet', u'poki']
[u'coast', u'kid', u'bush']
[u'communiti', u'mourn', u'polic', u'offic', u'kill', u'crash']
[u'competit', u'beef', u'cattl', u'price']
[u'concern', u'resid', u'alert', u'polic', u'zigzag', u'drink']
[u'corbi', u'court']
[u'corbi', u'case', u'reopen', u'bali']
[u'corbi', u'get', u'chanc']
[u'corbi', u'legal', u'team', u'struggl', u'wit']
[u'corbi', u'plead', u'help', u'wit']
[u'corbi', u'trial', u'open']
[u'costello', u'port', u'push', u'prompt', u'tough']
[u'council', u'ask', u'chip', u'famili', u'centr']
[u'council', u'chamber', u'reopen', u'polic', u'probe', u'suspici']
[u'council', u'confid', u'develop', u'resid', u'work']
[u'council', u'consid', u'revis', u'high', u'rise', u'plan']
[u'countri', u'energi', u'land', u'clear']
[u'court', u'jail', u'break', u'hill', u'fraudster']
[u'cowboy', u'half', u'make', u'debut']
[u'cyclist', u'tribut', u'gillett']
[u'cyclist', u'tribut', u'passion', u'gillett']
[u'czech', u'beat', u'boardman', u'hour', u'mark']
[u'decis', u'immin', u'fund', u'food', u'processor']
[u'desk', u'studi', u'find', u'fit', u'guidelin', u'fall', u'short']
[u'despati', u'give', u'canada', u'second', u'gold']
[u'develop', u'bulki', u'good', u'centr']
[u'dinosaur', u'bone']
[u'disput', u'resolv', u'toyota', u'resum', u'product']
[u'doctor', u'highlight', u'gippsland', u'cannabi', u'woe']
[u'dragon', u'queri', u'coach', u'fine']
[u'dragon', u'appeal', u'brown', u'fine']
[u'drug', u'smuggler', u'get', u'year', u'cambodian', u'jail']
[u'economi', u'unlik', u'slow', u'survey']
[u'kill', u'yemen', u'riot', u'fuel', u'price', u'rise']
[u'evan', u'armstrong', u'defend', u'yellow']
[u'farmer', u'encourag', u'improv', u'mental', u'health']
[u'govt', u'hold', u'forestri', u'coup', u'case']
[u'rescu', u'rottnest', u'boat', u'capsiz']
[u'council', u'offic', u'sale']
[u'gallop', u'shed', u'light', u'solar', u'plan']
[u'germani', u'town', u'hold', u'gillett', u'memori', u'servic']
[u'gerrard', u'rescu', u'liverpool']
[u'gillespi', u'ash', u'injuri', u'scare']
[u'gillespi', u'mend', u'ahead', u'ash', u'open']
[u'googl', u'open', u'research', u'centr', u'china']
[u'govt', u'anim', u'group', u'scrap', u'asian', u'eleph']
[u'govt', u'ask', u'respons', u'feral', u'anim']
[u'govt', u'odd', u'council', u'sewerag', u'subsidi']
[u'govt', u'fund', u'help', u'music', u'therapi', u'program', u'grow']
[u'govt', u'make', u'eleph']
[u'govt', u'chang', u'food', u'label', u'law']
[u'govt', u'urg', u'rethink', u'desalin', u'plan']
[u'govt', u'welcom', u'basslink', u'cabl', u'arriv']
[u'grant', u'council', u'deliv', u'rate', u'rise']
[u'griffith', u'council', u'help', u'multicultur', u'centr']
[u'grower', u'tell', u'fear', u'china']
[u'health', u'servic', u'chief', u'offer', u'merger', u'assur']
[u'hewitt', u'coria', u'face', u'davi', u'fin']
[u'hezbollah', u'join', u'lebanon', u'cabinet', u'time']
[u'hickss', u'lawyer', u'request', u'time']
[u'hick', u'unlik', u'face', u'death', u'penalti', u'general']
[u'hick', u'unlik', u'face', u'death', u'penalti', u'say', u'advisor']
[u'hiddink', u'percent', u'sure', u'socceroo']
[u'higher', u'price', u'hit', u'live', u'cattl', u'export']
[u'high', u'school', u'replac', u'cost']
[u'high', u'tech', u'trolley', u'aim', u'transform', u'shop']
[u'hilali', u'comment', u'hypocrit']
[u'hoteli', u'confid', u'law', u'wont', u'deter']
[u'howard', u'bush', u'talk', u'wide', u'rang']
[u'howard', u'push', u'trade', u'barrier']
[u'howard', u'say', u'australia', u'relationship']
[u'howard', u'visit', u'london', u'bomb', u'victim']
[u'hull', u'back', u'nation', u'plan']
[u'hunter', u'tourism', u'overhaul', u'region', u'market']
[u'hunt', u'water', u'davi', u'race', u'gaff']
[u'hunt', u'firefight']
[u'card', u'infring', u'privaci']
[u'want', u'bring', u'home', u'say', u'cyclist', u'husband']
[u'independ', u'say', u'vilif', u'law', u'prevent', u'free']
[u'india', u'need', u'unsung', u'hero', u'chappel']
[u'indonesia', u'confirm', u'bird', u'death']
[u'inquest', u'hear', u'african', u'doctor', u'appoint']
[u'intellectu', u'disabl', u'face', u'communiti']
[u'investor', u'group', u'buy', u'histor', u'waverley', u'mill']
[u'israel', u'parliament', u'reject', u'gaza', u'pullout', u'delay']
[u'kimberley', u'set', u'trap', u'catch', u'hitchhik', u'toad']
[u'kloden', u'tour', u'futur', u'doubt', u'crash']
[u'knock', u'hearn', u'lake', u'subdivis']
[u'lake', u'eppalock', u'hotel', u'motel', u'plan', u'continu']
[u'landhold', u'blame', u'currumbin', u'landslip', u'drainag']
[u'law', u'inadequ', u'deal', u'hate', u'book']
[u'lawsuit', u'alleg', u'dupont', u'teflon', u'health', u'risk']
[u'lennon', u'defend', u'forestri', u'tasmania', u'head']
[u'lesson', u'learn', u'cycl', u'accid']
[u'lleyton', u'bunker']
[u'local', u'chair', u'airport', u'secur', u'inquiri']
[u'local', u'urg', u'contact', u'pacif', u'highway', u'inquiri']
[u'lookout', u'jail', u'break']
[u'charg', u'murder']
[u'plead', u'guilti', u'neglig', u'drive', u'case']
[u'face', u'court', u'hotel', u'assault']
[u'isra', u'protest', u'head', u'home']
[u'mayor', u'unconcern', u'investig']
[u'mellor', u'return', u'rabbitoh', u'farm']
[u'metung', u'sell']
[u'miner', u'sell', u'goldfield', u'nickel', u'asset']
[u'mine', u'compani', u'search', u'uranium']
[u'urg', u'calm', u'log', u'protest']
[u'indigen', u'health', u'money', u'translat']
[u'inform', u'injur', u'cyclist', u'expect', u'today']
[u'mother', u'children', u'free', u'villawood']
[u'seek', u'young', u'farmer', u'scheme', u'detail']
[u'stand', u'tech', u'colleg', u'delay']
[u'museum', u'show', u'dinosaur', u'treasur', u'trove']
[u'nation', u'heritag', u'list', u'seek', u'lawrenc']
[u'nation', u'park', u'confid', u'promot']
[u'nation', u'liber', u'talk', u'corner']
[u'nation', u'seek', u'greater', u'live', u'trade', u'protect']
[u'nation', u'seek', u'home', u'grant', u'restructur', u'boost']
[u'newli', u'elect', u'farmer', u'group', u'head', u'vow', u'defend']
[u'open', u'near', u'orang']
[u'nightclub', u'beat', u'quell', u'complaint']
[u'charg', u'lay', u'chiltern', u'death']
[u'touch', u'say', u'hayden']
[u'nrma', u'concern', u'increas', u'road', u'death']
[u'auditor', u'general', u'defend', u'emerg', u'servic']
[u'teach', u'council', u'advis', u'educ']
[u'olymp', u'standstil', u'miner', u'death']
[u'pace', u'attack', u'select', u'headach', u'gilchrist']
[u'hospit', u'electr', u'engin', u'strike']
[u'pakistan', u'arrest', u'london', u'attack']
[u'palestinian', u'group', u'order', u'gunmen', u'stop', u'fight']
[u'passeng', u'number', u'boost', u'sydney', u'airport', u'coffer']
[u'penalti', u'threat', u'beazley']
[u'perth', u'hospit', u'report', u'highlight', u'fund']
[u'phone', u'tower', u'protest', u'mount']
[u'pietersen', u'tell', u'lord', u'crowd', u'turn', u'aussi']
[u'polic', u'call', u'anti', u'abort', u'protest']
[u'polic', u'charg', u'teen', u'robberi', u'stab']
[u'polic', u'give', u'palm', u'report']
[u'polic', u'hunt', u'arsonist', u'hoon']
[u'polic', u'investig', u'babi', u'death']
[u'polic', u'watch', u'biki', u'holiday', u'ride']
[u'power', u'worker', u'strike', u'disput']
[u'attack', u'memo', u'pressur', u'intellig']
[u'price', u'return', u'raider']
[u'protest', u'farmer', u'arriv', u'ballarat']
[u'public', u'servant', u'feel', u'uneasi', u'futur']
[u'rail', u'servic', u'undergo', u'terror', u'simul']
[u'region', u'support', u'har', u'race', u'board']
[u'region', u'offer', u'telstra', u'sale', u'assur']
[u'relief', u'interior', u'nino', u'threat', u'reced']
[u'resid', u'protest', u'mine', u'electr']
[u'resourc', u'push', u'market', u'higher']
[u'rethink', u'secur', u'check', u'port', u'bodi', u'urg']
[u'rider', u'intens', u'care', u'parent']
[u'rider', u'intens', u'care', u'parent']
[u'rise', u'popul', u'spark', u'bunburi', u'plan']
[u'robert', u'sign', u'king']
[u'death', u'prompt', u'tighter', u'secur']
[u'govt', u'reject', u'marin', u'park', u'concern']
[u'meat', u'compani', u'win', u'defam', u'case']
[u'chang', u'charter', u'address', u'sustain']
[u'search', u'continu', u'miss', u'teen']
[u'second', u'execut', u'challeng', u'morri', u'inquiri']
[u'second', u'time', u'unlucki', u'rocki', u'cyclist']
[u'skill', u'vacanc', u'drop']
[u'skill', u'shortag', u'hamper', u'coal', u'termin', u'plan']
[u'stab', u'accus', u'refus', u'bail']
[u'stand', u'continu', u'wynyard']
[u'african', u'doctor', u'suffer', u'codein', u'addict']
[u'student', u'fear', u'lose', u'mark', u'inquest', u'tell']
[u'studi', u'find', u'northern', u'river', u'resid']
[u'suicid', u'bomber', u'kill', u'iraq']
[u'sydney', u'ferri', u'forc', u'request', u'price', u'increas']
[u'lawyer', u'appoint', u'ombudsman']
[u'tate', u'hope', u'regain', u'centr', u'spot']
[u'taxi', u'driver', u'warn', u'compli', u'wheelchair', u'law']
[u'teacher', u'give', u'evid', u'peanut', u'butter', u'inquest']
[u'teen', u'face', u'court', u'stab', u'murder']
[u'teen', u'win', u'rule', u'youth', u'curfew']
[u'terrorist', u'train', u'camp', u'shut', u'karzai']
[u'testicular', u'cancer', u'patient', u'children']
[u'smurf', u'screen', u'trilog']
[u'thiev', u'steal', u'toddler', u'insid']
[u'kill', u'trap', u'china', u'explos']
[u'tidi', u'town', u'award', u'recognis', u'communiti']
[u'soon', u'nomin', u'prioriti', u'telstra', u'sale']
[u'toyota', u'ford', u'stand', u'worker']
[u'kill', u'horror', u'road', u'smash']
[u'teach', u'group', u'consid', u'ban', u'fail']
[u'air', u'sorrow', u'cycl', u'tragedi']
[u'unknown', u'substanc', u'see', u'darwin', u'citi', u'council']
[u'market', u'boost', u'earn', u'report']
[u'vege', u'protest', u'prompt', u'reaction']
[u'probe', u'offic', u'corrupt']
[u'word', u'erupt', u'maleni', u'site', u'sale']
[u'water', u'alloc', u'review']
[u'wide', u'hop', u'leav', u'good', u'impress']
[u'wit', u'protect', u'review', u'prompt']
[u'woman', u'die', u'duke', u'highway', u'crash']
[u'work', u'begin', u'swamp', u'willow', u'remov']
[u'world', u'slow', u'niger', u'famin', u'respons', u'say']
[u'worsfold', u'slam', u'tribun']
[u'wynyard', u'stand', u'end']
[u'youth', u'face', u'court', u'broom', u'arm', u'robberi']
[u'youth', u'group', u'question', u'volunt', u'crackdown']
[u'year', u'phallus', u'germani']
[u'aborigin', u'leader', u'farewel', u'state', u'funer']
[u'adopt', u'group', u'call', u'extens', u'babi', u'bonus']
[u'age', u'care', u'later', u'studi']
[u'airport', u'staff', u'background', u'check', u'tighten', u'inquiri']
[u'alcoa', u'face', u'action', u'wagerup', u'spill']
[u'anger', u'decis', u'shoot', u'alic', u'sydney']
[u'arm', u'polic', u'enter', u'central', u'london', u'hospit']
[u'ash', u'best', u'player', u'receiv', u'compton', u'miller', u'medal']
[u'asic', u'request', u'lenienc', u'vizard']
[u'asthma', u'spend', u'focus', u'children', u'studi', u'find']
[u'hit', u'record', u'high']
[u'aussi', u'bat', u'lord']
[u'aussi', u'pace', u'attack']
[u'aust', u'greater', u'risk', u'bird']
[u'aust', u'base', u'jumper', u'die', u'norway']
[u'aust', u'bomb', u'victim', u'question', u'howard', u'iraq']
[u'australian', u'base', u'jumper', u'kill', u'norway']
[u'australian', u'polic', u'offic', u'appeal', u'verdict', u'delay']
[u'australia', u'skittl', u'english', u'pace', u'attack']
[u'avocado', u'grower', u'levi', u'increas', u'govt']
[u'bathurst', u'saleyard', u'receiv', u'multi', u'million', u'dollar']
[u'sign', u'iron', u'deal']
[u'lade', u'focus', u'want', u'campaign']
[u'black', u'await', u'sentenc', u'perjuri', u'charg']
[u'brazilian', u'miner', u'seal', u'coal', u'project']
[u'bright', u'light', u'puzzl', u'pilbara', u'resid']
[u'britain', u'plan', u'global', u'extremist', u'databas']
[u'broom', u'esper', u'play', u'role', u'tsunami', u'warn']
[u'window', u'blow', u'injuri', u'oper']
[u'canada', u'legalis', u'marriag']
[u'captain', u'reach', u'agreement', u'disput', u'catch']
[u'cattl', u'station', u'join', u'drought', u'declar', u'list']
[u'china', u'heed', u'call', u'revalu', u'currenc']
[u'church', u'reopen', u'council', u'approv']
[u'agent', u'arrest', u'seek', u'italian', u'kidnap', u'affair']
[u'coast', u'surfer', u'headway', u'jeffrey']
[u'complaint', u'fail', u'deter', u'custom', u'airport', u'process']
[u'convict', u'gang', u'rapist', u'face', u'jail', u'time']
[u'cosmic', u'catastroph', u'strike', u'like', u'star']
[u'costello', u'meet', u'indigen', u'leader', u'pearson']
[u'council', u'unveil', u'revis', u'highris', u'plan']
[u'countri', u'race', u'club', u'reassur', u'futur']
[u'court', u'dismiss', u'wine', u'compani', u'appeal']
[u'court', u'uphold', u'appeal', u'relay', u'gold']
[u'croc', u'fear', u'prompt', u'sport', u'cancel']
[u'dairi', u'countri', u'seek', u'trade', u'target']
[u'davi', u'hunt', u'meet', u'resolv', u'disput']
[u'demand', u'lamb', u'tip', u'increas']
[u'detain', u'children', u'excit', u'school']
[u'doctor', u'fear', u'critic', u'injur', u'cyclist']
[u'doubl', u'delight', u'armstrong', u'team']
[u'drink', u'volvo', u'driver', u'test', u'safeti', u'system']
[u'elder', u'driver', u'particip', u'studi']
[u'england', u'open', u'ash', u'battl']
[u'ergon', u'move', u'improv', u'local', u'power', u'suppli']
[u'explos', u'report', u'london', u'tube']
[u'famili', u'free', u'child', u'detaine', u'consid', u'legal']
[u'farmer', u'seek', u'imag']
[u'fatal', u'accid', u'investig']
[u'continu', u'talk', u'hiddink']
[u'fish', u'oper', u'fear', u'licenc', u'hike']
[u'recoveri', u'possibl', u'injur', u'cyclist']
[u'fund', u'improv', u'south', u'east', u'black', u'spot']
[u'game', u'match', u'lleyton']
[u'game', u'organis', u'short', u'volunt']
[u'gang', u'rapist', u'guilti', u'charg']
[u'council', u'expect', u'control']
[u'genet', u'tag', u'help', u'monitor', u'shark']
[u'gherkin', u'supplier', u'withdraw', u'mcdonald', u'threat']
[u'govt', u'beazley', u'say']
[u'greenough', u'resid', u'vote', u'amalgam', u'plan']
[u'greenspan', u'say', u'rat', u'rise']
[u'green', u'seek', u'forest', u'land', u'clear', u'limit']
[u'group', u'face', u'deport', u'chicken', u'farm', u'raid']
[u'group', u'walk', u'child', u'cancer', u'suffer']
[u'gympi', u'guilti', u'attempt', u'murder']
[u'hewitt', u'readi', u'love', u'match']
[u'hick', u'process', u'avoid', u'fair', u'process']
[u'hiddink', u'expect', u'confirm', u'socceroo', u'boss']
[u'imit', u'boot', u'undermin', u'sheep', u'skin', u'price']
[u'indigen', u'group', u'agre', u'bridg', u'talk']
[u'indonesia', u'aim', u'septemb', u'aceh', u'troop', u'pull']
[u'injur', u'cyclist', u'life', u'support']
[u'intern', u'tourist', u'head', u'record', u'number']
[u'iraq', u'insurg', u'remain', u'effect', u'adapt', u'rumsfeld']
[u'islam', u'bodi', u'propos', u'anti', u'terror', u'summit']
[u'japanes', u'eat', u'endang', u'whale', u'cousteau']
[u'judiciari', u'chairman', u'deni', u'woolford', u'leav', u'appeal']
[u'judiciari', u'chairman', u'deni', u'woolford', u'leav', u'appeal']
[u'karzai', u'say', u'neglect', u'possibl', u'caus', u'london']
[u'say', u'plan', u'buy', u'australian']
[u'kid', u'technic', u'detain', u'vanston']
[u'kid', u'prize', u'heifer']
[u'labor', u'want', u'vanston', u'sack', u'hwang', u'case']
[u'law', u'protect', u'kid', u'societi', u'say']
[u'leonora', u'pool', u'open', u'novemb']
[u'local', u'produc', u'ethanol', u'interst']
[u'famili', u'palmer', u'report', u'fight']
[u'bird', u'prevent', u'drug', u'avail', u'green']
[u'mandatori', u'label', u'fresh', u'produc', u'like']
[u'mar', u'snicker', u'stay', u'shelv']
[u'matilda', u'china']
[u'mayor', u'confid', u'hous', u'futur', u'worker']
[u'mayor', u'push', u'kalgoorli', u'solar', u'citi', u'program']
[u'melbourn', u'retain', u'fastest', u'grow', u'intern']
[u'mental', u'health', u'workshop', u'help', u'farmer']
[u'microwav', u'weapon', u'iraq', u'worri', u'scientist']
[u'minchin', u'tour', u'pacif', u'region']
[u'miner', u'defend', u'expans', u'plan']
[u'minist', u'open', u'local', u'quarter']
[u'minist', u'seek', u'review', u'fertilis', u'rule']
[u'minist', u'delay', u'lion']
[u'miss', u'piggi', u'world', u'record', u'break', u'leap']
[u'more', u'communiti', u'welcom', u'outlet']
[u'morwel', u'polic', u'hold', u'stop', u'work', u'meet']
[u'hit', u'govt', u'bushfir', u'inquiri']
[u'throw', u'possibl', u'lifelin', u'shack', u'owner']
[u'urg', u'attend', u'hospit', u'meet']
[u'mysteri', u'skin', u'rat', u'review']
[u'nasa', u'announc', u'shuttl', u'date']
[u'nat', u'say', u'local', u'govt', u'withdraw', u'fund']
[u'nelson', u'promot', u'scienc', u'math', u'cours']
[u'newcastl', u'research', u'join', u'search', u'cure']
[u'polic', u'boss', u'tell', u'review', u'prison', u'transfer']
[u'magistr', u'name']
[u'slow', u'cattl', u'yard', u'process']
[u'vehicl', u'sale', u'fall']
[u'niger', u'presid', u'see', u'famin', u'devast', u'hand']
[u'polic', u'muslim', u'inform', u'suspect']
[u'nurs', u'want', u'union', u'push', u'govt', u'super']
[u'lodg', u'protest', u'china', u'support']
[u'olymp', u'stay', u'shut', u'worker', u'death']
[u'opposit', u'push', u'control']
[u'orford', u'join', u'eagl']
[u'outlook', u'grim', u'injur', u'cyclist']
[u'overheat', u'prompt', u'man', u'ferri', u'emerg']
[u'pace', u'put', u'england', u'lunch']
[u'paint', u'ladi', u'step', u'miner', u'cellar']
[u'founder', u'stand', u'trial']
[u'pilbara', u'gascoyn', u'top', u'region', u'abort', u'rate']
[u'plan', u'histor', u'build', u'refurbish', u'lodg']
[u'promot', u'aust', u'economi', u'london']
[u'polic', u'commission', u'pay', u'tribut', u'crash', u'victim']
[u'polic', u'search', u'stabber']
[u'polic', u'search', u'miss', u'bush', u'walker']
[u'polic', u'seek', u'public', u'help', u'stabber']
[u'polic', u'seek', u'public', u'help', u'fight', u'drug']
[u'polic', u'urg', u'caution', u'road']
[u'premier', u'urg', u'replac', u'minist', u'asbesto']
[u'pub', u'club', u'deni', u'undermin', u'smoke']
[u'push', u'marin', u'park', u'protect', u'fish', u'stock']
[u'speaker', u'holli', u'quit']
[u'teenag', u'quiz', u'vote']
[u'queensland', u'inquiri', u'patient', u'worri']
[u'ranger', u'issu', u'warn', u'simpson', u'desert', u'wood']
[u'recruit', u'jail', u'jakarta', u'embassi', u'bomb']
[u'region', u'teacher', u'offer', u'support']
[u'releas', u'villawood', u'famili', u'consid', u'legal', u'action']
[u'report', u'find', u'crash', u'chopper', u'overload']
[u'resid', u'group', u'happi', u'develop', u'compromis']
[u'resid', u'urg', u'save', u'money', u'sort', u'rubbish']
[u'rfds', u'fli', u'tourist', u'accid']
[u'road', u'rage', u'murder', u'juri', u'discharg']
[u'roger', u'sidelin', u'knee', u'injuri']
[u'lay', u'water', u'save', u'plan']
[u'steak', u'sizzl', u'asia']
[u'school', u'welcom', u'hwang']
[u'scientist', u'unlock', u'secret', u'gecko']
[u'search', u'dentist', u'servic', u'tenterfield', u'continu']
[u'senat', u'unconvinc', u'card', u'merit']
[u'senior', u'demon', u'need', u'lift', u'danih']
[u'solon', u'report', u'expect', u'august']
[u'special', u'school', u'build', u'replac']
[u'star', u'trek', u'scotti', u'die', u'age']
[u'suicid', u'bomber', u'kill', u'iraq']
[u'swiss', u'expert', u'fli', u'lift']
[u'talk', u'fail', u'resolv', u'prison', u'offic']
[u'tasmanian', u'price', u'electr', u'delay']
[u'tbird', u'fight']
[u'yemeni', u'storm', u'facil']
[u'tourism', u'head', u'want', u'robina', u'coolangatta', u'rail', u'link']
[u'tourki', u'snare', u'silver', u'montreal']
[u'trunk', u'pack', u'eleph', u'stay']
[u'charg', u'fatal', u'shoot']
[u'cyclist', u'hospit', u'releas']
[u'tube', u'station', u'evacu', u'smoke', u'see', u'brigad']
[u'legal', u'centr', u'cut', u'worri', u'victim', u'group']
[u'unoc', u'spurn', u'chines', u'suitor', u'chevron', u'offer']
[u'market', u'jump', u'greenspan', u'view']
[u'politician', u'float', u'bomb', u'muslim']
[u'releas', u'guantanamo', u'prison']
[u'say', u'milit', u'plan', u'attack', u'saudi']
[u'govt', u'speak', u'nuclear', u'power']
[u'repeal', u'anti', u'witchcraft']
[u'vizard', u'face', u'court']
[u'vizard', u'hear', u'begin']
[u'vizard', u'plead', u'judg']
[u'vizard', u'face', u'court', u'telstra', u'deal']
[u'wallabi', u'expect', u'tough', u'crowd', u'joburg']
[u'step', u'fight', u'wild', u'dog']
[u'water', u'shortag', u'hamper', u'crew', u'effort']
[u'well', u'sign', u'roo']
[u'whale', u'arriv', u'region', u'earli']
[u'woodsid', u'project', u'boost', u'product']
[u'workplac', u'accid', u'claim', u'man', u'life']
[u'workshop', u'clarifi', u'communiti', u'view', u'town']
[u'yarra', u'valley', u'yield', u'victoria', u'truffl']
[u'kill', u'yemen', u'clash', u'fuel', u'price', u'hike']
[u'abattoir', u'tell', u'smell', u'problem']
[u'seek', u'cost', u'bushfir', u'case']
[u'seek', u'public', u'back', u'bulki', u'good', u'centr']
[u'maintain', u'rise']
[u'season', u'drug', u'test', u'demetriou']
[u'dismiss', u'push', u'examin', u'truck']
[u'alcoa', u'refineri', u'spill', u'prompt', u'environment']
[u'algerian', u'diplomat', u'kidnap', u'baghdad']
[u'alic', u'spring', u'hop', u'solar', u'citi', u'boost']
[u'arab', u'network', u'air', u'judg', u'interrog', u'saddam']
[u'armstrong', u'send', u'support', u'australian', u'crash', u'victim']
[u'armstrong', u'solid', u'serrano', u'win', u'tour', u'stage']
[u'arson', u'attempt', u'london', u'bomb', u'suspect', u'hous']
[u'australia', u'lead', u'lord']
[u'australia', u'mugab', u'indict', u'costello']
[u'beatti', u'dump', u'health', u'minist']
[u'beatti', u'dump', u'health', u'minist']
[u'beazley', u'muster', u'support', u'campaign']
[u'bega', u'inform', u'member', u'financi', u'perform']
[u'berri', u'nation', u'food', u'line', u'merger']
[u'crowd', u'farewel', u'plane', u'crash', u'coupl']
[u'blair', u'order', u'anti', u'terror', u'review']
[u'blaze', u'forc', u'hotel', u'evacu']
[u'boat', u'facil', u'boost', u'pilbara', u'gascoyn']
[u'boat', u'facil', u'upgrad', u'esper']
[u'bomb', u'failur', u'suggest', u'link', u'london', u'attack']
[u'boomer', u'japan']
[u'british', u'film', u'academi', u'honour', u'taylor']
[u'british', u'polic', u'post', u'blast', u'search', u'hospit']
[u'brake', u'plate', u'night', u'curfew']
[u'rail', u'link', u'travel']
[u'caloundra', u'look', u'exclus', u'zone']
[u'canadian', u'carri', u'ecstasi', u'tablet', u'charg']
[u'casino', u'ratepay', u'want', u'administr', u'appoint']
[u'chen', u'say', u'china', u'put', u'squeez', u'falun', u'gong']
[u'children', u'indigen', u'awar', u'need', u'boost', u'martin']
[u'chinatown', u'develop', u'council']
[u'chines', u'defector', u'front', u'congress']
[u'church', u'group', u'seek', u'refuge', u'mental', u'health']
[u'civic', u'plan', u'call', u'monorail', u'town', u'centr']
[u'claim', u'ongo', u'secur', u'cost', u'affect', u'region']
[u'clark', u'martyn', u'guid', u'australia', u'lead', u'lord']
[u'coach', u'confid', u'injur', u'cyclist', u'pull']
[u'committe', u'brief', u'feral', u'donkey', u'erad']
[u'communiti', u'discuss', u'asbesto', u'compo', u'option']
[u'concern', u'mount', u'eleph', u'export', u'human', u'societi']
[u'concern', u'mount', u'miss', u'teen']
[u'corbi', u'lawyer', u'submit', u'immun', u'request']
[u'coron', u'say', u'student', u'death', u'avoid']
[u'cotteslo', u'feel', u'heat', u'height', u'restrict']
[u'cotton', u'grower', u'oppos', u'takeov', u'offer']
[u'council', u'back', u'indigen', u'youth', u'leadership', u'scheme']
[u'council', u'call', u'hospit', u'site', u'mistak']
[u'council', u'can', u'plan', u'charg', u'bank', u'atm']
[u'councillor', u'rubbish', u'recycl', u'scheme', u'plan']
[u'council', u'share', u'plan', u'fund']
[u'council', u'stoush', u'erupt', u'develop', u'complaint']
[u'courtney', u'love', u'hospitalis']
[u'court', u'uphold', u'convict', u'racial', u'motiv']
[u'despati', u'montreal']
[u'dog', u'prove', u'theyr', u'beat', u'bronco']
[u'domest', u'threat', u'level', u'leav', u'medium']
[u'downer', u'forc', u'word', u'asean', u'pact']
[u'downer', u'commit', u'relationship', u'labor']
[u'drought', u'relief', u'merriwa', u'region', u'farmer']
[u'drug', u'affect', u'driver', u'sentenc', u'seven', u'year']
[u'eastern', u'state', u'drought', u'help', u'extend']
[u'elkington', u'shot', u'storm', u'lash', u'milwauke']
[u'ellison', u'back', u'anti', u'terror', u'review']
[u'environ', u'kimberley', u'vie', u'award']
[u'export', u'better', u'china', u'trade', u'condit']
[u'facelift', u'katan', u'homeswest', u'hous']
[u'famili', u'say', u'base', u'jumper', u'safeti', u'conscious']
[u'farmer', u'highlight', u'salin', u'plan']
[u'farmer', u'warn', u'fever', u'risk']
[u'fel', u'nomin', u'oecd', u'posit']
[u'firm', u'plan', u'retir', u'communiti', u'ainsli']
[u'flood', u'consid', u'threat', u'prison', u'farm']
[u'vaccin', u'product', u'fast', u'track']
[u'forestri', u'council', u'make', u'submiss', u'japanes']
[u'carlton', u'player', u'lose', u'court', u'battl']
[u'detaine', u'abandon', u'immigr', u'dept']
[u'chairman', u'call', u'vizard', u'inquiri']
[u'forum', u'focus', u'state', u'murray', u'river', u'bridg']
[u'german', u'presid', u'back', u'septemb', u'poll']
[u'gillett', u'husband', u'okay']
[u'gippsland', u'wake', u'cold', u'morn']
[u'glenn', u'mcgrath', u'interview']
[u'gloucest', u'resid', u'push', u'phone', u'boost']
[u'govt', u'hand', u'help', u'drought', u'famili']
[u'govt', u'decid', u'power', u'station', u'expans']
[u'grafton', u'woman', u'secur', u'social', u'servic', u'appoint']
[u'grant', u'give', u'banana', u'nutrit', u'scheme', u'boost']
[u'grant', u'return', u'lift', u'dog', u'geelong', u'clash']
[u'greenland', u'glacier', u'speed', u'greenpeac']
[u'group', u'claim', u'latest', u'london', u'attack']
[u'group', u'fail', u'complaint', u'immigr']
[u'hackett', u'warn', u'drug', u'tester', u'leav']
[u'hawaiian', u'caterpillar', u'din', u'escargot']
[u'hiddink', u'unveil', u'socceroo', u'coach']
[u'high', u'wind', u'rain', u'lash', u'north', u'queensland']
[u'hobart', u'base', u'antarct', u'bird', u'protect']
[u'howard', u'meet', u'blair', u'blast', u'london']
[u'howard', u'prais', u'blair']
[u'hunter', u'unemploy', u'tip', u'rise']
[u'hwang', u'children', u'treat', u'wors', u'detaine']
[u'improv', u'need', u'collect', u'diseas', u'data']
[u'inquest', u'tell', u'south', u'african', u'train', u'doctor']
[u'investig', u'probe', u'hydraul', u'blast', u'death']
[u'irun', u'hidayat', u'sentenc', u'embassi', u'bomb']
[u'jehovah', u'wit', u'flock', u'tamworth']
[u'johnson', u'clear', u'sydney', u'medal']
[u'joyc', u'seek', u'govt', u'support', u'renew', u'fuel']
[u'justic', u'agenc', u'earn', u'magistr', u'prais']
[u'kennedi', u'wont', u'apologis', u'councillor']
[u'labor', u'renew', u'royal', u'commiss']
[u'bodi', u'say', u'fair', u'trial', u'rule', u'review', u'unnecessari']
[u'commiss', u'back', u'adopt', u'coupl']
[u'lawyer', u'contradict', u'vanston', u'detain', u'kid', u'case']
[u'local', u'embrac', u'kakadu']
[u'logist', u'team', u'prais', u'help', u'port', u'reach']
[u'london', u'arrest', u'anti', u'terror', u'law']
[u'london', u'attack', u'intend', u'kill', u'polic']
[u'die', u'mulch', u'machin', u'accid']
[u'jail', u'road', u'rage', u'incid']
[u'jail', u'year', u'collis', u'cyclist']
[u'jail', u'deckhand', u'tortur']
[u'jail', u'plan', u'launch', u'attack']
[u'plead', u'guilti', u'teen', u'assault', u'charg']
[u'market', u'dip', u'london', u'blast', u'unsettl', u'investor']
[u'market', u'shake', u'london', u'attack']
[u'mayhem', u'london', u'tube', u'polic', u'shoot', u'dead']
[u'mayor', u'look', u'answer', u'sticki', u'problem']
[u'mcdonald', u'sign', u'gherkin', u'deal', u'suppli']
[u'mcgrath', u'forecast', u'batsmen']
[u'mcgrath', u'get', u'boot', u'break', u'mark']
[u'meet', u'condemn', u'hospit', u'decis']
[u'mental', u'guilti', u'murder']
[u'mick', u'read', u'riot', u'pie']
[u'microsoft', u'profit', u'echo', u'sale', u'boost']
[u'minor', u'blast', u'shake', u'london']
[u'miss', u'boy', u'bodi', u'perth']
[u'miss', u'piggi', u'fli', u'record', u'book']
[u'miss', u'piggi', u'take', u'dive', u'set', u'world', u'record']
[u'mix', u'reaction', u'embassi', u'bomb', u'recruit']
[u'money', u'answer', u'indigen', u'woe', u'costello']
[u'drought', u'support', u'fund', u'avail']
[u'fund', u'seek', u'bite', u'wild', u'woe']
[u'mourner', u'rememb', u'high', u'court', u'judg']
[u'call', u'region', u'counter', u'terror', u'train']
[u'murder', u'investig']
[u'american', u'polic', u'unearth', u'tunnel', u'drug']
[u'narrabri', u'jail']
[u'nation', u'reject', u'costello', u'attack', u'chang']
[u'near', u'older', u'australian', u'suffer']
[u'care', u'place', u'help', u'elder', u'recov', u'ill']
[u'produc', u'coal', u'year']
[u'petroleum', u'explor', u'permit', u'carnarvon']
[u'school', u'princip', u'vow', u'improv', u'educ']
[u'newspap', u'plead', u'guilti', u'contempt', u'case']
[u'train', u'centr', u'open', u'georg']
[u'north', u'korea', u'call', u'peac', u'treati']
[u'film', u'offic', u'defend', u'product', u'compani']
[u'olymp', u'mine', u'resum', u'fatal', u'blast']
[u'opposit', u'claim', u'cover', u'rescu', u'chopper']
[u'opposit', u'highlight', u'hospit', u'treatment', u'fear']
[u'opposit', u'seek', u'start', u'waterfront', u'plan']
[u'outback', u'tourism', u'push', u'creat', u'road', u'headach']
[u'palm', u'island', u'council', u'complain', u'woman', u'polic']
[u'flag', u'tougher', u'anti', u'terror', u'law']
[u'prais', u'calm', u'respons', u'latest', u'attack']
[u'rule', u'extra', u'troop', u'iraq']
[u'polic', u'bodi', u'miss']
[u'polic', u'hope', u'latest', u'bomb']
[u'polic', u'probe', u'second', u'london', u'attack']
[u'polic', u'promis', u'north', u'west', u'drug', u'crackdown']
[u'polic', u'shoot', u'underground', u'station']
[u'polic', u'stop', u'work', u'plan', u'work', u'chang']
[u'polic', u'urg', u'caution', u'rural', u'road']
[u'pool', u'septemb', u'open']
[u'port', u'chief', u'beat', u'develop']
[u'prison', u'stab']
[u'produc', u'await', u'code', u'conduct', u'releas']
[u'properti', u'boom', u'expect', u'forc', u'rat', u'higher']
[u'health', u'minist', u'reluct', u'leav', u'post']
[u'rainbow', u'warrior', u'return', u'aust']
[u'ranger', u'closur', u'cost', u'say']
[u'rasmussen', u'wrap', u'polka', u'jersey']
[u'violat', u'mental', u'health', u'order']
[u'sugar', u'robinson', u'lose', u'appeal']
[u'real', u'estat', u'agent', u'disabl', u'hous', u'educ']
[u'real', u'move', u'cost', u'robinho', u'million']
[u'reform', u'mental', u'health', u'public', u'advoc', u'say']
[u'rice', u'demand', u'action', u'darfur']
[u'rice', u'visit', u'beirut', u'support', u'govt']
[u'rockhampton', u'polic', u'deton', u'packag']
[u'roof', u'firm', u'fin', u'construct', u'site', u'death']
[u'rossi', u'want', u'stay', u'yamaha']
[u'consid', u'drug', u'test', u'doctor']
[u'saint', u'continu', u'surg', u'belt', u'cold', u'pie']
[u'seafood', u'industri', u'seek', u'younger', u'worker']
[u'king', u'crash', u'report', u'year']
[u'shire', u'see', u'benefit', u'iron', u'joint', u'ventur']
[u'sieg', u'inquest', u'complaint', u'worri', u'polic']
[u'sign', u'tourist', u'straight', u'land', u'clear']
[u'home', u'owner', u'rate', u'rise', u'shock']
[u'southern', u'state', u'weed', u'watch']
[u'sunshin', u'coast', u'fail', u'overturn', u'convict']
[u'surgeri', u'delay', u'unbeliev', u'say', u'opposit']
[u'suspici', u'devic', u'leav', u'govt', u'build']
[u'swift', u'crush', u'oriol', u'bird', u'surg']
[u'taronga', u'hit', u'rspca', u'critic']
[u'scientist', u'honour', u'award']
[u'teen', u'jail', u'year', u'stab', u'murder']
[u'terrorist', u'link', u'iraq', u'london', u'attack', u'howard']
[u'timber', u'industri', u'highlight', u'highway', u'blackspot']
[u'tomato', u'farm', u'fin', u'workplac', u'accid']
[u'earli', u'prison', u'industri', u'threat', u'minist']
[u'trout', u'strategi', u'winner', u'snowi', u'mountain', u'lake']
[u'tuckey', u'prepar', u'seek', u'domest', u'violenc']
[u'right', u'issu', u'thwart', u'miss', u'piggi', u'record', u'dive']
[u'kill', u'pakistan', u'crash']
[u'arrest', u'gang', u'rape']
[u'see', u'immin', u'danger', u'terrorist', u'attack']
[u'vail', u'welcom', u'chines', u'currenc', u'revalu']
[u'vandal', u'upsurg', u'spark', u'polic']
[u'vanston', u'retract', u'comment', u'detain', u'kid', u'case']
[u'video', u'game', u'coffe', u'kid']
[u'vizard', u'jail']
[u'wallabi', u'favourit', u'upset', u'bok']
[u'want', u'femal', u'corps', u'medic', u'practis']
[u'word', u'erupt', u'council', u'painter']
[u'water', u'manag', u'plan', u'flow', u'alic', u'confer']
[u'water', u'survey', u'spark', u'polit', u'debat']
[u'wife', u'kill', u'abus', u'husband', u'free']
[u'wollongong', u'hospit', u'seek', u'licenc']
[u'women', u'celebr', u'year', u'forc']
[u'workshop', u'highlight', u'mental', u'health', u'warn', u'sign']
[u'suicid', u'bomber', u'daze', u'say', u'wit']
[u'zimbabw', u'polic', u'throw', u'homeless', u'church']
[u'zirconia', u'project', u'stock', u'exchang', u'list']
[u'stand', u'eleph', u'breed', u'scheme']
[u'foreign', u'injur', u'egypt', u'blast']
[u'accus', u'heroin', u'smuggler', u'suicid', u'attempt']
[u'disrupt', u'continu', u'despit', u'strike']
[u'squar', u'leagu', u'preseason', u'match']
[u'ambros', u'continu', u'ipswich', u'qualifi']
[u'aqi', u'buckl', u'evergreen', u'pressur', u'citrus', u'farmer']
[u'arrest', u'arson', u'attempt', u'london', u'bomber', u'home']
[u'asean', u'treati', u'deal', u'seal', u'say', u'howard']
[u'australian', u'coupl', u'wit', u'egypt', u'blast']
[u'australia', u'push', u'lead', u'past', u'lunch']
[u'baryulgil', u'asbesto', u'risk', u'remain', u'despit', u'clear']
[u'beatti', u'give', u'trade', u'good', u'health']
[u'blast', u'rock', u'lebanes', u'capit']
[u'blast', u'kill', u'egyptian', u'resort']
[u'blue', u'legend', u'baldri', u'die', u'canada']
[u'board', u'offer', u'condit', u'apolog', u'drug']
[u'boat', u'urg', u'distanc', u'whale']
[u'boomer', u'notch', u'second', u'japanes']
[u'boy', u'allergi', u'death', u'wont', u'affect', u'excurs', u'minist']
[u'british', u'polic', u'arrest', u'second', u'bomber', u'hunt']
[u'byron', u'consid', u'holiday', u'rental']
[u'calvari', u'hospit', u'upgrad', u'electr']
[u'campaign', u'wast', u'dump', u'long', u'haul']
[u'campbel', u'shin', u'despit', u'german', u'rain']
[u'canadian', u'uneasi', u'general', u'terrorist', u'threat']
[u'car', u'line', u'outback', u'odyssey']
[u'cat', u'fight']
[u'clark', u'martyn', u'guid', u'australia', u'lead', u'lord']
[u'clark', u'beat', u'despit', u'fall', u'short', u'lord']
[u'communiti', u'input', u'seek', u'futur', u'base']
[u'cowboy', u'stop']
[u'dissid', u'detain', u'cuba']
[u'dog', u'prove', u'theyr', u'beat', u'bronco']
[u'jone', u'close', u'crude', u'price', u'jump']
[u'downshift', u'group', u'help', u'australian', u'choos', u'life']
[u'dozen', u'kill', u'egypt', u'resort', u'explos']
[u'fina', u'chang', u'rule', u'athen', u'controversi']
[u'finger', u'food', u'tasti', u'inmat']
[u'gallant', u'knight', u'stun', u'eel']
[u'parent', u'right', u'ruse', u'famili', u'group']
[u'gaza', u'stay', u'close', u'talk', u'need', u'rice']
[u'guantanamo', u'detaine', u'demand', u'hunger']
[u'guerini', u'outwit', u'break', u'companion', u'stage']
[u'guilti', u'verdict', u'grand', u'prix', u'team', u'cancel']
[u'take', u'springboard', u'gold']
[u'hawk', u'leav', u'blue', u'rock']
[u'howard', u'consid', u'cctv', u'aust', u'public', u'transport']
[u'howard', u'meet', u'queen']
[u'independ', u'committe', u'probe', u'runaway', u'teen', u'death']
[u'indigen', u'languag', u'reviv', u'dictionari', u'launch']
[u'isinbayeva', u'leap', u'histori', u'book', u'powel']
[u'japan', u'fight', u'matilda']
[u'jehovah', u'wit', u'gather', u'convent']
[u'lion', u'surviv', u'gabba', u'fright']
[u'litter', u'worri', u'prompt', u'sticki', u'effort']
[u'littl', u'liquid', u'water', u'mar', u'past', u'billion']
[u'london', u'reliv', u'bomb', u'horror', u'egypt', u'holiday']
[u'shoot', u'dead', u'hunt', u'london', u'bomber']
[u'shoot', u'dead', u'hunt', u'london', u'bomber', u'continu']
[u'mayor', u'greater', u'role', u'terror', u'plan']
[u'mclaren', u'domin', u'practic', u'germani']
[u'rover', u'sell', u'chines', u'firm']
[u'michael', u'clark', u'interview']
[u'moder', u'earthquak', u'shake', u'tokyo']
[u'mugab', u'leav', u'harar', u'week', u'long', u'visit', u'china']
[u'muslim', u'concern', u'bomb', u'scrutini']
[u'british', u'terror', u'law', u'deserv', u'consider']
[u'cover', u'flood', u'defenc', u'group']
[u'troop', u'go', u'iraq', u'say']
[u'risk', u'armstrong', u'penultim', u'stage']
[u'punter', u'rock', u'competit']
[u'rain', u'stop', u'australia']
[u'palmerston', u'owner', u'get', u'messag']
[u'phelp', u'varieti', u'spice', u'team', u'say', u'coach']
[u'pilot', u'kill', u'plane', u'crash', u'outsid', u'german']
[u'lunch', u'british', u'conserv']
[u'polanski', u'win', u'libel', u'case', u'vaniti', u'fair']
[u'polic', u'investig', u'crowd', u'troubl']
[u'policeman', u'injur', u'crash']
[u'polic', u'search', u'hous', u'west', u'london', u'bomb']
[u'port', u'knock', u'tiger']
[u'health', u'worker', u'welcom', u'minist', u'departur']
[u'random', u'search', u'subway']
[u'report', u'condemn', u'zimbabw']
[u'restrict', u'immigr', u'wont', u'stop', u'terror', u'govt']
[u'retail', u'feel', u'chill', u'shrink', u'winter', u'sale']
[u'rice', u'meet', u'palestinian', u'discuss', u'gaza', u'pullout']
[u'rice', u'meet', u'sharon', u'final', u'push', u'gaza', u'pullout']
[u'roger', u'admit', u'tour', u'mistak']
[u'saint', u'continu', u'surg', u'belt', u'cold', u'pie']
[u'score', u'kill', u'egypt', u'bomb']
[u'second', u'detain', u'london', u'bomb', u'probe']
[u'shell', u'cove', u'marina', u'develop', u'valid', u'court']
[u'slater', u'win', u'jeffrey']
[u'solomon', u'govt', u'adopt', u'ramsi', u'recommend']
[u'space', u'shuttl', u'crew', u'return', u'florida']
[u'splendid', u'weekend', u'expect', u'festiv', u'revel']
[u'lanka', u'seiz', u'control', u'second', u'test']
[u'lanka', u'storm', u'bat', u'fiasco']
[u'stay', u'execut', u'grant', u'penal', u'cottag']
[u'steve', u'price', u'monti', u'betham']
[u'suburban', u'shop', u'face', u'uncertain', u'futur']
[u'super', u'nurs', u'eas', u'rural', u'doctor', u'shortag']
[u'sydney', u'water', u'main', u'burst', u'home', u'flood']
[u'thorp', u'announc', u'test', u'retir']
[u'tiger', u'die', u'gold', u'coast', u'casino']
[u'tiger', u'focus', u'tredrea']
[u'tsunami', u'injur', u'donat', u'thai', u'hospit']
[u'arrest', u'search', u'bomber']
[u'kill', u'road', u'crash']
[u'polic', u'continu', u'manhunt', u'bomb', u'suspect']
[u'chief', u'feel', u'sorrow', u'anger', u'egypt', u'attack']
[u'union', u'pleas', u'student', u'result']
[u'union', u'slam', u'welfar', u'rule', u'workplac', u'agreement']
[u'union', u'warn', u'welfar', u'recipi', u'employ', u'polici']
[u'report', u'condemn', u'zimbabw', u'demolit']
[u'unveil', u'revis', u'draft', u'ambiti', u'reform']
[u'author', u'case']
[u'victorian', u'govt', u'confid', u'game', u'budget']
[u'wallabi', u'probe', u'alleg', u'nightclub', u'incid']
[u'warrior', u'triumph', u'despit', u'raider', u'spark']
[u'world', u'appear', u'guarante', u'hiddink']
[u'world', u'leader', u'condemn', u'egypt', u'bomb', u'attack']
[u'world', u'wake', u'niger', u'crisi']
[u'wwii', u'veteran', u'gather', u'memori', u'dedic']
[u'yaxley', u'remain', u'hospit', u'week']
[u'arrest', u'egypt', u'bomb']
[u'gate', u'darwin']
[u'investig']
[u'wealthi', u'target', u'evas', u'crackdown']
[u'aborigin', u'communiti', u'take', u'asbesto', u'fight', u'sydney']
[u'qaeda', u'post', u'video', u'miss', u'egypt', u'envoy']
[u'armstrong', u'cruis', u'stage']
[u'armstrong', u'end', u'stage', u'drought', u'retir']
[u'aussi', u'deserv', u'stranglehold', u'test', u'say', u'warn']
[u'australia', u'go', u'ash', u'seri']
[u'aust', u'wont', u'turn', u'polic', u'state', u'howard']
[u'author', u'releas', u'cuban', u'dissid']
[u'blair', u'beauti', u'secret', u'unveil']
[u'bolton', u'thailand', u'citi', u'edg', u'everton', u'asia']
[u'boomer', u'wrap', u'japan', u'seri']
[u'brazil', u'demand', u'explain', u'shoot']
[u'brazil', u'seek', u'explan', u'death']
[u'british', u'polic', u'admit', u'shoot', u'innoc']
[u'chopper', u'flame', u'crash']
[u'cowboy', u'boost', u'need']
[u'crow', u'consolid', u'second', u'roo']
[u'cyclist', u'parent', u'elat', u'word']
[u'dead', u'cadet', u'mother', u'vow', u'fight', u'defenc']
[u'dead', u'clash', u'erupt', u'near', u'gaza', u'border']
[u'death', u'toll', u'rise']
[u'demon', u'troubl', u'trot', u'continu']
[u'dissid', u'leader', u'free', u'cuba']
[u'downer', u'hedg', u'asean', u'treati', u'deal', u'report']
[u'dragon', u'classi', u'derbi']
[u'dwight', u'right', u'australian', u'debut']
[u'eagl', u'fall', u'short', u'sydney']
[u'eagl', u'wari', u'form', u'swan']
[u'eddi', u'jone', u'jake', u'white']
[u'egypt', u'vow', u'fight', u'terror', u'toll', u'rise']
[u'evan', u'secur', u'spot', u'green', u'jersey', u'battl']
[u'farah', u'lead', u'tiger', u'sixth', u'spot']
[u'floriad', u'call', u'bud', u'volunt']
[u'ginninderra', u'student', u'assist']
[u'govt', u'eye', u'crackdown', u'radic', u'islam', u'comment']
[u'govt', u'save', u'pharmaci', u'guild', u'say']
[u'govt', u'stand', u'campaign']
[u'govt', u'want', u'coastlin', u'develop']
[u'graham', u'murray', u'john', u'lang']
[u'gregan', u'blame', u'loss', u'poor', u'start']
[u'health', u'minist', u'announc']
[u'henri', u'world', u'champ', u'build', u'beij']
[u'hick', u'face', u'polit', u'trial', u'militari', u'lawyer']
[u'highway', u'close', u'chemic', u'spill']
[u'injur', u'cyclist', u'regain', u'conscious', u'germani']
[u'injur', u'powel', u'optimist', u'make', u'world']
[u'inter', u'tour', u'london', u'bomb', u'attack']
[u'intercept', u'cost', u'wallabi', u'mandela', u'challeng']
[u'inter', u'milan', u'tour', u'england']
[u'inter', u'rethink', u'england', u'tour', u'cancel']
[u'iraq', u'govt', u'prais', u'aust', u'trainer']
[u'islam', u'group', u'distanc', u'terror']
[u'islam', u'group', u'urg', u'calm', u'cleric', u'comment']
[u'isra', u'soldier', u'kill', u'palestinian', u'gunmen']
[u'maxwel', u'wrap']
[u'lion', u'train', u'regim', u'blame', u'failur']
[u'lownd', u'celebr', u'thrill', u'home', u'triumph']
[u'custodi', u'sydney', u'gang', u'rape']
[u'marcus', u'trescothick', u'interview']
[u'mark', u'gasnier', u'interview']
[u'massiv', u'truck', u'blast', u'target', u'iraqi', u'polic']
[u'mcgrath', u'eye', u'worcestershir', u'return']
[u'meca', u'snatch', u'open', u'water', u'gold', u'spain']
[u'michael', u'hagan', u'brian', u'smith']
[u'camera', u'wont', u'stop', u'attack', u'beazley']
[u'muslim', u'alarm', u'polic', u'kill']
[u'nasa', u'set', u'shuttl', u'launch', u'date']
[u'drink', u'drive', u'law', u'driver']
[u'patient', u'miss', u'intens', u'care', u'treatment']
[u'regret']
[u'test', u'comeback', u'thorp']
[u'senat', u'deni', u'nuclear', u'fuel', u'rod', u'destin']
[u'kill', u'russian', u'train', u'blast']
[u'pari', u'brace', u'armstrong', u'victori', u'parad']
[u'penguin', u'market', u'open', u'busi']
[u'appal', u'imam', u'defenc', u'lade']
[u'predict', u'law', u'jobless', u'rate']
[u'comment', u'inaccur', u'imam', u'say']
[u'polic', u'bust', u'alleg', u'cock', u'fight', u'syndic']
[u'polic', u'slow', u'speed', u'grade', u'pursuit']
[u'polic', u'shoot', u'shock', u'brazilian', u'govt']
[u'polit', u'replac', u'bike', u'armstrong', u'passion']
[u'race', u'minist', u'consid', u'synthet', u'track']
[u'raikkonen', u'claim', u'pole', u'montoya', u'spin']
[u'rain', u'fall', u'lord']
[u'remot', u'locat', u'blame', u'lower', u'literaci', u'rat']
[u'rhode', u'wake', u'cycl', u'accid']
[u'ricki', u'stuart', u'craig', u'bellami']
[u'robertson', u'name', u'health', u'minist']
[u'rooster', u'final', u'hop', u'hang', u'thread']
[u'search', u'continu', u'miss', u'ipswich', u'woman']
[u'servic', u'continu', u'despit', u'hospit', u'power', u'upgrad']
[u'seventh', u'arrest', u'gang', u'rape']
[u'shane', u'warn', u'interview']
[u'shaun', u'mcrae', u'sheen', u'interview']
[u'shearer', u'close', u'newcastl', u'goal', u'record']
[u'shoot', u'kill', u'polici', u'stay', u'despit', u'innoc', u'man']
[u'solomon', u'island', u'mark', u'anniversari', u'intern']
[u'strong', u'quak', u'hit', u'japan']
[u'stuart', u'raper', u'nathan', u'brown', u'interview']
[u'sudanes', u'communiti', u'unconcern', u'harass']
[u'sydney', u'marin', u'good', u'leagu', u'preseason']
[u'council', u'warn', u'loom', u'infrastructur']
[u'tasmanian', u'hospit', u'london', u'attack']
[u'teenag', u'creamer', u'creat', u'histori', u'european', u'tour']
[u'arrest', u'maleni', u'supermarket', u'protest']
[u'charg', u'sydney', u'man', u'death']
[u'tottenham', u'peac']
[u'truck', u'bomb', u'kill', u'baghdad', u'polic', u'station']
[u'turnbul', u'flag', u'rate']
[u'injur', u'istanbul', u'restaur', u'blast']
[u'question', u'fail', u'london', u'bomb']
[u'librari', u'leader', u'question', u'patriot']
[u'report', u'card', u'makeov']
[u'water', u'reced', u'home', u'damag']
[u'wild', u'weather', u'continu', u'north']
[u'woman', u'kill', u'hospit', u'park']
[u'xenophon', u'call', u'medial', u'board', u'review']
[u'yuan', u'revalu', u'benefit', u'tourism', u'industri', u'acci']
[u'face', u'card', u'concern', u'stanhop']
[u'accus', u'tram', u'thief', u'deni', u'bail']
[u'urg', u'introduc', u'driver', u'drug', u'test']
[u'tribun', u'night']
[u'year', u'mackenroth', u'bow']
[u'agforc', u'readi', u'work', u'minist']
[u'airport', u'secur', u'upgrad', u'cost', u'share']
[u'alic', u'spring', u'farewel', u'arrent', u'tradit', u'owner']
[u'call', u'region', u'cooper', u'bird']
[u'qaeda', u'wave', u'bomb', u'report']
[u'anger', u'govt', u'alic', u'invest']
[u'tiger', u'die', u'casino']
[u'anvil', u'congo', u'oper', u'scrutini']
[u'arab', u'group', u'aim', u'break', u'racial', u'social']
[u'asian', u'flour', u'mill', u'unlik', u'wheat']
[u'dead', u'iraq', u'blast']
[u'australia', u'claim', u'doubl', u'gold', u'montreal']
[u'bail', u'grant', u'bash', u'death', u'accus']
[u'basslink', u'project', u'hit', u'snag']
[u'baxter', u'food', u'disput', u'ongo', u'detaine']
[u'beatti', u'call', u'coastal', u'develop', u'cooper']
[u'bed', u'dedic', u'time', u'mental', u'health', u'patient']
[u'beekeep', u'join', u'tougher', u'food', u'label', u'law', u'fight']
[u'bomb', u'attack', u'wound', u'afghan', u'cleric']
[u'bougainvill', u'mourn', u'rebel', u'leader']
[u'bougainvill', u'rebel', u'leader', u'die']
[u'bowler', u'pont']
[u'bowl', u'club', u'futur', u'unclear']
[u'brack', u'accus', u'mislead', u'parliament']
[u'bundaberg', u'inquiri', u'hear', u'tire', u'doctor']
[u'busi', u'leader', u'join', u'farmer', u'campaign']
[u'call', u'increas', u'major', u'secur', u'review']
[u'canker', u'hear', u'consid', u'govt', u'respons']
[u'bomb', u'kill', u'baghdad']
[u'carr', u'seek', u'advic', u'public', u'transport', u'search']
[u'chen', u'give', u'consul', u'phone', u'number', u'immigr']
[u'citrus', u'grower', u'challeng', u'minist']
[u'clark', u'call', u'elect']
[u'communiti', u'urg', u'involv', u'cultur', u'plan']
[u'competit', u'tight', u'final', u'talk', u'say', u'bolton']
[u'corsten', u'suspend', u'hors', u'drug', u'charg']
[u'council', u'crack', u'tree', u'clear']
[u'council', u'keen', u'propos', u'park', u'museum']
[u'council', u'plan', u'huge', u'christma', u'tree']
[u'council', u'plan', u'fund']
[u'council', u'decid', u'hydro', u'plan', u'power', u'line']
[u'council', u'employ', u'lawyer']
[u'cowboy', u'firman', u'make', u'outstand', u'debut']
[u'cradl', u'mountain', u'transport', u'focus', u'studi']
[u'crane', u'keep', u'cool', u'claim', u'milwauke', u'open']
[u'crowd', u'call', u'indian', u'ocean', u'drive', u'complet']
[u'crow', u'prelim', u'rule', u'chang']
[u'cycl', u'australia', u'donat', u'gillett', u'foundat']
[u'cycl', u'tour', u'promis', u'bendigo', u'boost']
[u'deal', u'turn', u'dirk', u'hartog', u'nation', u'park']
[u'demon', u'improv', u'say', u'danih']
[u'disput', u'affect', u'hunter', u'coal', u'freight']
[u'doctor', u'group', u'cast', u'doubt', u'robertson']
[u'classif', u'debat', u'slow', u'pest', u'manag']
[u'respons', u'attack']
[u'accept', u'plea', u'vizard', u'bookkeep']
[u'driver', u'die', u'boggabri', u'crash']
[u'driver', u'charg', u'northern', u'road', u'block']
[u'driver', u'face', u'charg']
[u'driver', u'face', u'court', u'pedestrian']
[u'dubbo', u'council', u'consid', u'million', u'develop']
[u'eagl', u'best']
[u'educ', u'union', u'worri', u'high', u'staff', u'turnov']
[u'wicket', u'murali', u'send', u'windi', u'crash', u'huge']
[u'electron', u'begin', u'america']
[u'england', u'brand', u'vaughan', u'loser']
[u'evan', u'top', u'anderson', u'tour', u'debut']
[u'expert', u'look', u'link', u'london', u'egypt', u'attack']
[u'expert', u'warn', u'attack', u'sport', u'event']
[u'export', u'saudi', u'shipment', u'hard']
[u'farm', u'price', u'boom', u'soon']
[u'north', u'surviv', u'wild', u'weather']
[u'fasth', u'end', u'marathon', u'play']
[u'fish', u'industri', u'hop', u'fillet', u'regul']
[u'ecuadorean', u'presid', u'want']
[u'forum', u'spotlight', u'hous', u'afford']
[u'free', u'read']
[u'fuel', u'glitch', u'wont', u'stop', u'shuttl', u'lift']
[u'gambler', u'plead', u'guilti', u'fraud']
[u'general', u'manag', u'rethink', u'review', u'panel', u'comment']
[u'giant', u'mice', u'bird', u'chick', u'world', u'heritag', u'site']
[u'gillett', u'honour', u'foundat']
[u'ginepri', u'beat', u'heat', u'victori', u'dent']
[u'glenn', u'mcgrath', u'interview']
[u'govt', u'criticis', u'rat', u'trust', u'own']
[u'govt', u'payment', u'water']
[u'govt', u'target', u'reader', u'book', u'campaign']
[u'govt', u'urg', u'region', u'airport', u'secur']
[u'govt', u'wont', u'admit', u'liabil', u'solon', u'case']
[u'great', u'southern', u'salt', u'propos', u'hit', u'hurdl']
[u'green', u'group', u'back', u'coast', u'manag', u'plan']
[u'grigorieva', u'vault', u'australian', u'team']
[u'groin', u'injuri', u'wont', u'hold', u'brown', u'matthew']
[u'guidebook', u'offer', u'rural', u'life', u'insight']
[u'hackett', u'emerg', u'thorp', u'shadow']
[u'henjak', u'send', u'home', u'follow', u'nightclub', u'incid']
[u'higher', u'petrol', u'price', u'boost', u'ticket', u'price']
[u'hop', u'high', u'bumper', u'tiger', u'prawn', u'harvest']
[u'hop', u'curriculum', u'encourag', u'bud']
[u'howard', u'make', u'surpris', u'visit', u'iraq']
[u'howard', u'discuss', u'possibl', u'sport', u'zimbabw']
[u'human', u'remain', u'suitcas', u'kakadu']
[u'husband', u'launch', u'gillett', u'foundat']
[u'card', u'issu', u'say']
[u'indigen', u'communiti', u'plan', u'wilder', u'centr']
[u'indigen', u'leader', u'lose', u'marina', u'fight']
[u'indonesia', u'hold', u'joint', u'militari', u'exercis']
[u'injur', u'cyclist', u'surpris', u'doctor', u'progress']
[u'inquiri', u'urg', u'greater', u'youth', u'trade', u'focus']
[u'jetti', u'train', u'delay', u'expect', u'deter', u'tourist']
[u'juri', u'clear', u'manslaught']
[u'killer', u'appeal', u'convict']
[u'labor', u'see', u'hypocrisi', u'coastal', u'plan']
[u'lion', u'look', u'import', u'irish']
[u'lobster', u'fisher', u'clean', u'beach']
[u'local', u'branch', u'push', u'highway', u'fund', u'polici']
[u'local', u'cyclist', u'finish', u'tour', u'franc']
[u'london', u'tube', u'servic', u'resum', u'bomb']
[u'lower', u'water', u'wont', u'chang', u'restrict']
[u'collin', u'break', u'silenc']
[u'fin', u'abalon', u'traffic']
[u'fin', u'obscen', u'act']
[u'face', u'court', u'polic', u'stand']
[u'mayor', u'upset', u'govt', u'rail', u'respons']
[u'mcgee', u'stay', u'jeux']
[u'merger', u'extend', u'qanta', u'reach', u'asia']
[u'michael', u'vaughan', u'interview']
[u'approv', u'spark', u'green', u'group', u'legal', u'action']
[u'miner', u'map', u'border', u'region', u'gold', u'uranium', u'deposit']
[u'miner', u'push', u'record', u'close']
[u'minist', u'prais', u'effort', u'finish', u'justic', u'complex']
[u'fatal', u'error', u'polic']
[u'mysteri', u'ill', u'hit', u'chines', u'provinc']
[u'nadal', u'confirm', u'status', u'clay', u'court', u'king']
[u'nairn', u'challeng', u'talk', u'chang']
[u'home', u'sale', u'continu', u'fall']
[u'coordin', u'schooli']
[u'norfolk', u'trial']
[u'nuclear', u'wast', u'dump', u'certainti', u'senat']
[u'produc', u'seek', u'chang', u'drought', u'guidelin']
[u'nuclear', u'dump', u'leak', u'contamin', u'water', u'expert']
[u'price', u'rise', u'consum', u'good']
[u'oper', u'confid', u'ghan', u'secur', u'arrang']
[u'opposit', u'blame', u'wagga', u'emerg', u'delay']
[u'opposit', u'question', u'health', u'minist', u'appoint']
[u'opposit', u'say', u'countri', u'victorian', u'wait']
[u'orang', u'council', u'take', u'stand', u'crop']
[u'parker', u'hodg', u'report', u'danger', u'throw']
[u'patterson', u'reject', u'acoss', u'welfar', u'find']
[u'pietersen', u'predict', u'england', u'fight']
[u'criticis', u'muslim', u'cleric']
[u'tight', u'lip', u'shoot', u'kill', u'polici']
[u'hop', u'break', u'deal', u'impass']
[u'polic', u'chief', u'ponder', u'region', u'terror', u'threat']
[u'polic', u'defend', u'shoot', u'kill', u'polici']
[u'polic', u'miss', u'ipswich', u'woman', u'bodi']
[u'polic', u'hail', u'speed', u'bust']
[u'polic', u'hunt', u'elder', u'woman', u'attack']
[u'polic', u'hunt', u'fifth', u'bomber']
[u'polic', u'investig', u'rail', u'death']
[u'polic', u'hoon', u'crackdown', u'pay']
[u'polic', u'spend', u'second', u'weekend', u'search', u'snow']
[u'polic', u'urg', u'action', u'log', u'protest']
[u'polic', u'warn', u'riverland', u'fantasi', u'drug']
[u'pratt', u'lend', u'support', u'food', u'label', u'campaign']
[u'public', u'invit', u'meet', u'sale', u'hospit', u'futur']
[u'public', u'decid', u'surveil', u'level', u'polic']
[u'ratepay', u'group', u'welcom', u'marina', u'decis']
[u'rate', u'rise', u'loom', u'mine', u'pastor', u'properti', u'owner']
[u'report', u'show', u'canegrow', u'go', u'green']
[u'ricki', u'pont', u'interview']
[u'robot', u'help', u'rescu', u'high', u'tech']
[u'rocki', u'cyclist', u'speak', u'accid']
[u'royal', u'wave', u'greet', u'chines', u'tourist', u'surg']
[u'rudd', u'seek', u'investig', u'claim']
[u'russian', u'pair', u'deni', u'china', u'golden', u'dive', u'finish']
[u'africa', u'consid', u'zimbabw', u'debt', u'plea']
[u'scientist', u'link', u'smoke', u'cancer', u'die']
[u'search', u'miss', u'hunter']
[u'second', u'group', u'claim', u'egypt', u'attack']
[u'sheikh', u'deni', u'australian', u'muslim', u'preach', u'violenc']
[u'shire', u'work', u'drought', u'applic']
[u'south', u'releas', u'homesick', u'bell']
[u'speed', u'driver', u'prompt', u'polic', u'safeti']
[u'stadium', u'secur', u'review', u'firework']
[u'stepfath', u'plead', u'guilti', u'derbi', u'children', u'murder']
[u'student', u'peer', u'support', u'train']
[u'success', u'farmer', u'time', u'studi']
[u'suicid', u'bomber', u'kill', u'baghdad', u'hotel']
[u'tanzanian', u'woman', u'claim', u'genit', u'mutil', u'fear']
[u'tasmanian', u'dark', u'smoke']
[u'tattoo', u'clown', u'prime', u'suspect', u'croc', u'theft']
[u'tattoo', u'organis', u'musician']
[u'teacher', u'union', u'agre', u'council']
[u'teenag', u'workplac', u'death', u'chang', u'build', u'court']
[u'theft', u'spark', u'polic', u'secur', u'warn']
[u'thiev', u'luck', u'thousand', u'scratchi']
[u'thousand', u'flock', u'mildura', u'carniv']
[u'hospit', u'maryborough']
[u'face', u'court', u'drug', u'charg']
[u'time', u'run', u'council', u'flood']
[u'traffic', u'face', u'drink', u'drive', u'charg']
[u'toxic', u'chemic', u'spill', u'investig']
[u'transport', u'secur', u'upgrad', u'cost', u'taxpay']
[u'tribut', u'pour', u'retir', u'armstrong']
[u'truck', u'driver', u'hurt', u'accid']
[u'tube', u'shoot', u'victim', u'late', u'work', u'friend']
[u'tweed', u'urg', u'flood', u'readi']
[u'wagga', u'wagga', u'road', u'crash']
[u'polic', u'arrest', u'bomb', u'suspect']
[u'underag', u'drink', u'driver', u'concern', u'polic']
[u'union', u'back', u'berri', u'nation', u'food', u'merger', u'job']
[u'unit', u'church', u'oppos', u'move', u'chang']
[u'hold', u'talk', u'north', u'korea']
[u'veteran', u'liber', u'parti', u'ident', u'chapman', u'die']
[u'victoria', u'happi', u'drought', u'decis']
[u'law', u'jeopardis', u'adelaid', u'job']
[u'wafl', u'clash', u'boost', u'esper', u'aussi', u'rule']
[u'wallabi', u'continu', u'probe', u'alleg', u'nightclub']
[u'watchdog', u'question', u'legal', u'polic', u'action']
[u'weekend', u'drive', u'spark', u'drink', u'drive', u'charg']
[u'west', u'indi', u'face', u'uphil', u'struggl', u'save', u'second']
[u'white', u'price', u'plummet']
[u'wit', u'confirm', u'rothwel', u'cash', u'guarante']
[u'wollongong', u'hospit', u'mental', u'health', u'unit']
[u'woocoo', u'shire', u'keep', u'rate', u'rise']
[u'zentai', u'claim', u'proof', u'innoc']
[u'aborigin', u'go', u'record', u'price']
[u'academ', u'studi', u'wollongong', u'drink', u'promot']
[u'accus', u'peopl', u'smuggler', u'enter', u'guilti', u'plea']
[u'take', u'wait', u'approach', u'driver', u'drug']
[u'hold', u'meet', u'impass']
[u'target', u'muslim', u'convert', u'librari', u'book']
[u'agassi', u'readi', u'magic', u'court']
[u'agreement', u'pave', u'spong', u'farm']
[u'albani', u'bank', u'bendigo', u'lender', u'plan']
[u'aldermen', u'odd', u'rate', u'rise']
[u'leagu', u'club', u'look', u'support']
[u'alleg', u'abus', u'victim', u'seek', u'permiss', u'church']
[u'faction', u'fight', u'head', u'court']
[u'amalgam', u'help', u'legal', u'servic', u'continu']
[u'anim', u'liberationist', u'guilti', u'trespass']
[u'asparagus', u'grower', u'year', u'round', u'product']
[u'assessor', u'consid', u'diamond', u'expans', u'plan']
[u'aussi', u'food', u'campaign', u'visit', u'echuca']
[u'aussi', u'women', u'medal', u'haul']
[u'aust', u'market', u'claw', u'record', u'close']
[u'aust', u'sign', u'asean', u'aggress', u'treati']
[u'babi', u'transfer', u'sydney', u'medic', u'attent']
[u'bathurst', u'motorcyclist', u'succumb', u'injuri']
[u'beatti', u'see', u'side', u'palm', u'aftermath']
[u'beatti', u'take', u'treasur', u'duti']
[u'beazley', u'say', u'media', u'chang', u'kill', u'divers']
[u'bendigo', u'summit', u'address', u'region', u'prosper']
[u'berri', u'nation', u'silent', u'possibl', u'merger', u'loss']
[u'betfair', u'offer', u'profit', u'licenc']
[u'bird', u'reach', u'siberia']
[u'blaze', u'damag', u'histor', u'school']
[u'bowl', u'club', u'agre', u'merger']
[u'brack', u'awar', u'rescu', u'chopper', u'woe']
[u'brack', u'urg', u'nation', u'debat', u'search']
[u'break', u'hill', u'road', u'confer']
[u'bulldog', u'polic', u'name', u'firecrack']
[u'burma', u'agre', u'forego', u'asean', u'chair']
[u'burma', u'skip', u'asean', u'chairmanship']
[u'byron', u'resid', u'say', u'skate', u'park', u'site', u'unsuit']
[u'cahil', u'everton', u'futur', u'doubt']
[u'minist', u'rethink', u'yeppoon', u'hospit']
[u'casino', u'face', u'penalti', u'breed', u'tiger']
[u'chang', u'farm', u'practic', u'rural', u'popul']
[u'chen', u'deni', u'consent', u'consul', u'check']
[u'chen', u'abduct', u'claim', u'unsubstanti']
[u'climat', u'chang', u'mark', u'australian']
[u'climat', u'chang', u'report', u'renew', u'kyoto', u'protocol', u'debat']
[u'club', u'face', u'shaki', u'futur']
[u'coast', u'gear', u'fashion', u'award']
[u'coron', u'probe', u'rescu', u'chopper', u'crash']
[u'costello', u'real', u'plan', u'slip', u'labor']
[u'council', u'accus', u'hamper', u'buffalo', u'meat', u'busi']
[u'council', u'back', u'underground', u'powerlin']
[u'council', u'consid', u'lake', u'macquari', u'citi', u'plan']
[u'council', u'defend', u'beach', u'restrict']
[u'council', u'encourag', u'resid', u'water', u'wise']
[u'council', u'group', u'plan', u'tsunami', u'fund', u'distribut']
[u'council', u'reject', u'bulki', u'good', u'centr', u'plan']
[u'council', u'say', u'communiti', u'feel', u'impact', u'budget']
[u'council', u'seek', u'local', u'govt', u'support', u'tripl']
[u'council', u'face', u'increas', u'elect', u'cost']
[u'council', u'join', u'china', u'busi', u'trip']
[u'court', u'clear', u'drug', u'charg']
[u'cultur', u'signific', u'tree', u'delay', u'log']
[u'cusack', u'name', u'south', u'captain']
[u'dead', u'wood', u'brack', u'tell', u'beazley']
[u'death', u'continu', u'boost', u'bougainvill', u'copper', u'share']
[u'defect', u'gene', u'make', u'cat', u'real', u'sourpuss']
[u'desalin', u'plant', u'wind', u'power']
[u'develop', u'sue', u'maleni', u'protest']
[u'disput', u'inspir', u'stand', u'council']
[u'dont', u'panic', u'climat', u'chang', u'minist']
[u'dopey', u'theft', u'victim', u'bust']
[u'doubl', u'standard', u'ruddock', u'terror', u'pitch']
[u'dozen', u'kill', u'afghan', u'clash']
[u'request', u'detail', u'consid', u'corbi', u'wit']
[u'drink', u'driver', u'blow', u'time', u'limit']
[u'drought', u'blame', u'yard', u'demis']
[u'dutch', u'film', u'maker', u'killer', u'jail', u'life']
[u'guerrouj', u'world', u'champ']
[u'emerald', u'resid', u'form', u'canker', u'group']
[u'ethnic', u'support', u'vital', u'leagu']
[u'serviceman', u'say', u'youth', u'benefit']
[u'famili', u'associ', u'question', u'parent', u'rule']
[u'famili', u'kill', u'brazilian', u'reject', u'blair', u'apolog']
[u'farmer', u'water', u'woe', u'busi', u'risk']
[u'farmer', u'support', u'local', u'produc', u'push']
[u'feed', u'tube', u'decis', u'korp', u'mind']
[u'charg', u'lay', u'ward', u'abus', u'inquiri']
[u'hospit', u'light', u'plane', u'accid']
[u'fund', u'track', u'broom']
[u'fund', u'shortfal', u'creat', u'grave', u'fear']
[u'gale', u'blow', u'lodg', u'roof']
[u'gallop', u'back', u'current', u'immigr', u'law']
[u'gallop', u'defend', u'stanc', u'nuclear', u'export']
[u'ginninderra', u'school', u'consult', u'criticis']
[u'govt', u'laugh', u'critic']
[u'govt', u'notic', u'improv', u'safeti']
[u'govt', u'ramp', u'boat', u'fund']
[u'govt', u'expand', u'mental', u'health', u'program']
[u'govt', u'urg', u'passeng', u'rail', u'servic']
[u'govt', u'urg', u'help', u'overcom', u'supermarket', u'road', u'woe']
[u'group', u'receiv', u'environment', u'fund', u'boost']
[u'gulgong', u'damag', u'cafe']
[u'battl', u'report', u'hunt', u'egypt', u'bomber']
[u'health', u'care', u'provid', u'push', u'clearer', u'bill']
[u'henjak', u'regret', u'send', u'home', u'south']
[u'henri', u'put', u'faith', u'wenger']
[u'hodg', u'plead', u'guilti', u'ban', u'match']
[u'home', u'owner', u'face', u'holiday', u'rental']
[u'hope', u'improv', u'busi', u'communic']
[u'howard', u'eye', u'trade', u'deal']
[u'howard', u'thank', u'support', u'troop']
[u'human', u'remain', u'futur', u'rubbish', u'dump']
[u'indigen', u'women', u'shape', u'safeti', u'polici']
[u'industri', u'demand', u'biofuel', u'task', u'forc', u'report']
[u'injuri', u'forc', u'aussi', u'helsinki', u'squad']
[u'inquest', u'probe', u'driver', u'death']
[u'intellig', u'authorir', u'seek', u'bomb', u'link']
[u'investor', u'ahead', u'earn', u'report']
[u'islam', u'leader', u'launch', u'anti', u'terror', u'campaign']
[u'jail', u'neighbour', u'surround', u'road', u'need', u'repair']
[u'jetstar', u'plan', u'evacu', u'slide', u'fail', u'report']
[u'kakadu', u'remain', u'discoveri', u'prompt', u'bushwalk', u'warn']
[u'kevin', u'pietersen', u'interview']
[u'kitten', u'tortur', u'give', u'home', u'detent']
[u'knight', u'consid', u'play', u'alic', u'match']
[u'korp', u'feed', u'tube', u'remov']
[u'labor', u'say', u'chang', u'hurt', u'pension']
[u'langer', u'back', u'mcgrath', u'warn', u'maintain', u'ash']
[u'lion', u'power']
[u'liverpool', u'plain', u'shire', u'councillor', u'step']
[u'luczak', u'go', u'austria']
[u'charg', u'drug', u'bust']
[u'question', u'stab']
[u'remand', u'custodi', u'cement', u'plant', u'threat']
[u'manslaught', u'trial', u'hear', u'hotel', u'death', u'detail']
[u'gunshot', u'wind', u'melbourn', u'laneway']
[u'mayor', u'outrag', u'cotton', u'compani', u'reloc', u'plan']
[u'meander', u'river', u'construct', u'expect', u'start']
[u'melbourn', u'cleric', u'say', u'lade', u'comment', u'take']
[u'minist', u'await', u'result', u'victorian', u'random', u'drug']
[u'minist', u'brief', u'school', u'mouth', u'tap', u'incid']
[u'minist', u'temper', u'immigr', u'debat']
[u'reliev', u'justic', u'complex', u'complet']
[u'want', u'hospit', u'audit', u'clear', u'staff', u'worri']
[u'monaro', u'product', u'screech', u'halt']
[u'monitor', u'cctv', u'stretch', u'resourc', u'polic']
[u'morwel', u'host', u'build', u'skill', u'project']
[u'air', u'rail', u'servic', u'standard', u'concern']
[u'urg', u'peopl', u'power', u'stop', u'wast', u'transport']
[u'mugab', u'visit', u'china']
[u'busi', u'survey', u'hold', u'steadi']
[u'nasa', u'fill', u'discoveri', u'fuel', u'tank']
[u'nation', u'urg', u'infrastructur', u'boost']
[u'newcastl', u'council', u'ask', u'fernleigh', u'track', u'fund']
[u'health', u'chief', u'contact', u'bundaberg', u'support', u'group']
[u'spark', u'baralaba', u'boom']
[u'zealand', u'open', u'chang', u'date']
[u'north', u'korea', u'nuclear', u'talk', u'resum', u'year']
[u'north', u'west', u'recognis', u'region', u'achiev']
[u'unusu', u'surgeri', u'wait', u'list', u'remov']
[u'water', u'polo', u'medal', u'aussi']
[u'commit', u'tour', u'despit', u'resolut']
[u'govern', u'urg', u'cancel', u'zimbabw', u'tour']
[u'opposit', u'say', u'disput', u'put', u'prison', u'program']
[u'opposit', u'seiz', u'rail', u'figur']
[u'peanut', u'butter', u'death', u'inquest', u'adjourn']
[u'peta', u'continu', u'mules', u'campaign']
[u'phelp', u'qualifi', u'fastest', u'freestyl', u'final']
[u'photograph', u'jail', u'attempt', u'sell', u'diaz', u'photo']
[u'spend', u'birthday', u'middl', u'east']
[u'polic', u'chief', u'odd', u'palm', u'search']
[u'polic', u'integr', u'commiss', u'continu', u'brutal']
[u'polic', u'issu', u'escape', u'warn']
[u'polic', u'crime', u'trailer', u'road']
[u'polic', u'school', u'scheme', u'revamp']
[u'porpois', u'pool', u'get', u'green', u'light', u'plan', u'expans']
[u'port', u'readi', u'chilli', u'canberra']
[u'post', u'mortem', u'bodi', u'near', u'ipswich']
[u'prawn', u'fisheri', u'council', u'discuss', u'product']
[u'previous', u'council', u'blame', u'poor', u'surf', u'hous', u'state']
[u'produc', u'urg', u'start', u'plan', u'hajj', u'export']
[u'reshuffl', u'distract', u'say', u'opposit']
[u'return', u'adelaid']
[u'report', u'highlight', u'greener', u'cane', u'grower']
[u'roo', u'strong', u'influenc']
[u'rspca', u'quiz', u'brother', u'contest']
[u'russia', u'offer', u'million', u'moon', u'trip']
[u'safe', u'citi', u'group', u'urg', u'vandal', u'hotlin']
[u'schipper', u'lenton', u'butterfli', u'queen']
[u'schipper', u'win', u'gold', u'montreal']
[u'school', u'princip', u'kindergarten', u'teacher']
[u'school', u'surpris', u'festiv']
[u'school', u'tap', u'noisi', u'children', u'mouth', u'shut']
[u'second', u'jail', u'australian', u'embassi', u'blast']
[u'senat', u'hear', u'alic', u'resid', u'dump', u'critic']
[u'sheep', u'vaccin', u'field', u'trial']
[u'shire', u'hold', u'airport', u'talk']
[u'solon', u'lawyer', u'alleg', u'govern', u'cover']
[u'soni', u'radio', u'playlist', u'sweeten', u'strike', u'sour', u'note']
[u'south', u'east', u'spar', u'kimberley', u'clark', u'cut']
[u'stanhop', u'hear', u'muslim', u'isol']
[u'state', u'input', u'china', u'talk']
[u'stosur', u'go', u'sugiyama', u'california']
[u'suleman', u'stand', u'trial', u'invest', u'loan']
[u'surgeri', u'plan', u'promis', u'reduc', u'wait', u'list']
[u'survey', u'consid', u'rural', u'popul']
[u'swan', u'interst', u'rule', u'chang']
[u'sydney', u'gang', u'rape', u'suspect', u'grant', u'bail']
[u'sydney', u'team', u'get', u'back', u'contracept', u'studi']
[u'tamworth', u'armidal', u'servic', u'track', u'friday']
[u'tasmanian', u'australia', u'homophob']
[u'retail', u'plan', u'fair', u'dinkum', u'aussi', u'brand']
[u'teenag', u'sentenc', u'avoid', u'adult', u'jail']
[u'terror', u'threat', u'justifi', u'cut', u'civil', u'liberti']
[u'group', u'claim', u'respons', u'egypt']
[u'thousand', u'sign', u'petit', u'urg', u'rail', u'line']
[u'time', u'stand', u'year']
[u'gear', u'oper', u'kakadu']
[u'transsexu', u'avoid', u'jail', u'threaten']
[u'head', u'freeway', u'crash']
[u'motion', u'condemn', u'gunn', u'suit']
[u'umaga', u'appear', u'manipul']
[u'ask', u'controversi', u'academ', u'retir', u'earli']
[u'union', u'consid', u'teacher', u'strike']
[u'reject', u'sack', u'report', u'anti', u'immigr']
[u'judg', u'issu', u'deadlin', u'hick', u'case']
[u'tell', u'kyrgyz', u'base', u'stay']
[u'vendor', u'blame', u'hous', u'sale', u'slump']
[u'vizard', u'bookkeep', u'admit', u'cook', u'book']
[u'wagga', u'council', u'endors', u'spring', u'burn']
[u'windsor', u'sceptic', u'card', u'propos']
[u'woman', u'die', u'singl', u'crash']
[u'woman', u'alight', u'palm', u'island']
[u'woman', u'court', u'airport', u'heroin']
[u'wooli', u'banana']
[u'yarrabah', u'communiti', u'review', u'curfew', u'plan']
[u'yonglin', u'say', u'immigr', u'offici', u'urg']
[u'stand', u'trial', u'palm', u'riot']
[u'abus', u'parrot', u'isol', u'stop', u'insult']
[u'accc', u'review', u'beverag', u'giant', u'merger', u'plan']
[u'accid', u'spark', u'overpass', u'chang']
[u'accus', u'syring', u'bandit', u'face', u'court']
[u'crime', u'report', u'releas', u'today']
[u'adelaid', u'firm', u'assess', u'uranium', u'potenti', u'near']
[u'near', u'decis', u'prelim', u'final']
[u'agassi', u'make', u'triumphant', u'return', u'lopsid']
[u'alic', u'hold', u'wast', u'dump', u'meet']
[u'arthur', u'sink']
[u'asean', u'invit', u'australia', u'summit']
[u'asean', u'treati', u'sign', u'thursday']
[u'asic', u'warn', u'policyhold', u'insur']
[u'profit', u'soar']
[u'australia', u'form', u'climat', u'chang', u'pact', u'report']
[u'bank', u'help', u'market', u'fresh', u'record']
[u'beatti', u'complet', u'reshuffl']
[u'bega', u'council', u'probe', u'wont', u'consid', u'past', u'perform']
[u'belmont', u'yacht', u'owner', u'bodi', u'examin']
[u'bendigo', u'firm', u'secur', u'east', u'work']
[u'berri', u'boost', u'flood', u'manag']
[u'bird', u'resurfac', u'japan']
[u'carr', u'life', u'polit']
[u'boomer', u'beat', u'beij']
[u'boy', u'arrest', u'adelaid', u'polic', u'chase']
[u'break', u'hill', u'get', u'apprentic']
[u'burnett', u'back', u'director', u'general', u'departur']
[u'life', u'soccer', u'player', u'racial', u'slur']
[u'state', u'fund', u'matern', u'servic']
[u'meet', u'zimbabw', u'demolit']
[u'call', u'nation', u'plan', u'tackl', u'pest']
[u'campbel', u'confirm', u'greenhous', u'pact']
[u'carr', u'deni', u'desert', u'parti', u'troubl']
[u'carr', u'quit']
[u'carr', u'resign', u'premier']
[u'catchment', u'risk', u'nuclear', u'dump', u'govt']
[u'cfmeu', u'deni', u'encourag', u'mass', u'sicki']
[u'charg', u'like', u'infant', u'abduct', u'attempt']
[u'chines', u'polic', u'farmer', u'clash', u'caus', u'anarchi']
[u'chines', u'skinni', u'dipper', u'spark', u'moral', u'debat']
[u'citrus', u'grower', u'propos', u'biosecur', u'levi']
[u'claim', u'poki', u'take', u'chariti', u'revenu']
[u'clark', u'pledg', u'abolish', u'student', u'loan']
[u'climat', u'chang', u'report', u'highlight', u'broom', u'concern']
[u'palm', u'report', u'hearten', u'activist']
[u'concern', u'miss', u'rockhampton']
[u'condobolin', u'resid', u'seek', u'surgic', u'servic', u'meet']
[u'contract', u'disput', u'threaten', u'women', u'health', u'servic']
[u'cook', u'shire', u'budget', u'take', u'chang', u'account']
[u'council', u'get', u'park', u'plan']
[u'councillor', u'look', u'liber', u'dubbo', u'preselect']
[u'councillor', u'seek', u'code', u'conduct', u'shake']
[u'council', u'push', u'taxi', u'plat']
[u'court', u'hear', u'nurs', u'authoris', u'head']
[u'cowboy', u'line', u'unchang', u'man', u'clash']
[u'currawarna', u'pair', u'charg', u'drug', u'bust']
[u'david', u'join', u'tottenham', u'free', u'transfer']
[u'deal', u'pave', u'resort', u'near', u'katherin', u'gorg']
[u'democrat', u'seek', u'legal', u'guarante', u'whyalla', u'dust']
[u'dfat', u'issu', u'warn', u'childcar', u'centr']
[u'discoveri', u'deploy', u'camera', u'check', u'damag']
[u'discoveri', u'launch', u'safe']
[u'disgruntl', u'murray', u'darl', u'associ', u'deleg']
[u'disney', u'can', u'australian', u'anim', u'oper']
[u'doctor', u'stand', u'baryulgil', u'mass', u'find']
[u'anger', u'australian', u'muslim', u'beazley']
[u'downer', u'sign', u'aggress', u'treati']
[u'driver', u'appeal', u'trail', u'bike', u'ram', u'rule']
[u'drought', u'recoveri', u'concert', u'hold', u'orang']
[u'drug', u'charg', u'earn', u'suspend', u'jail', u'term']
[u'educ', u'focus', u'group', u'normal', u'practic']
[u'elector', u'commission', u'await', u'word', u'hanson']
[u'masri', u'season']
[u'england', u'aussi', u'attack', u'flintoff']
[u'environ', u'minist', u'visit', u'toad', u'battl']
[u'send', u'observ', u'mission', u'afghan', u'vote']
[u'farmer', u'fear', u'water', u'recycl', u'plan']
[u'farmer', u'meet', u'mccain', u'contract', u'fear']
[u'fisher', u'tip', u'henjak', u'bounc']
[u'flood', u'kill', u'dozen', u'india', u'mumbai', u'water', u'log']
[u'youth', u'worker', u'jail', u'child', u'porn']
[u'player', u'return', u'saint']
[u'soldier', u'kill', u'iraq']
[u'french', u'admit', u'armstrong', u'greatest', u'tour', u'rider']
[u'gallop', u'consid', u'stop', u'search', u'power', u'polic']
[u'gaze', u'honour', u'trophi', u'name']
[u'gilgandra', u'shire', u'advertis', u'general', u'manag']
[u'gillespi', u'look', u'form']
[u'gold', u'coast', u'chief', u'prais', u'mackenroth']
[u'govt', u'criticis', u'cut', u'agricultur', u'posit']
[u'govt', u'fund', u'museum', u'norfolk']
[u'govt', u'tighten', u'mobil', u'phone', u'tower', u'control']
[u'govt', u'push', u'respit', u'servic', u'offer', u'older']
[u'govt', u'urg', u'releas', u'report']
[u'govt', u'urg', u'rethink', u'super', u'law']
[u'govt', u'urg', u'calm', u'bioregion', u'creation']
[u'govt', u'warn', u'travel', u'fiji']
[u'green', u'moratorium', u'water', u'bore']
[u'grog', u'book', u'assist', u'indigen', u'communiti']
[u'gunn', u'plantat']
[u'hanson', u'seek', u'return', u'elect', u'fund']
[u'high', u'sugar', u'price', u'boost', u'grower', u'return']
[u'hobart', u'polic', u'inform', u'prison', u'incid']
[u'honorari', u'botanist', u'find', u'wattl', u'speci']
[u'hooker', u'second', u'world', u'champ', u'warm']
[u'hospit', u'chang', u'patient', u'death']
[u'howard', u'consid', u'terror', u'summit']
[u'hull', u'say', u'nation', u'get', u'tougher', u'telstra']
[u'hundr', u'ralli', u'food', u'label']
[u'inflat', u'edg', u'slight']
[u'inquest', u'tell', u'higher', u'chopper', u'crash', u'rate']
[u'inquiri', u'chief', u'highlight', u'devast', u'eyr']
[u'inquiri', u'tell', u'long', u'hour', u'harm', u'doctor', u'health']
[u'instant', u'noodl', u'world']
[u'irrig', u'want', u'rate', u'rise', u'explan']
[u'send', u'beatti', u'letter', u'grave']
[u'jone', u'claim', u'breaststrok', u'gold']
[u'jone', u'claim', u'gold', u'hackett', u'make', u'histori']
[u'joyc', u'echo', u'revamp', u'concern']
[u'kalgoorli', u'polic', u'charg', u'stab']
[u'korp', u'allow', u'visit', u'die', u'wife']
[u'korp', u'say', u'goodby', u'die', u'wife']
[u'korp', u'visit', u'wife']
[u'lawyer', u'disput', u'corbi', u'wit', u'claim']
[u'leader', u'converg', u'wide', u'forum']
[u'leader', u'react', u'carr', u'resign']
[u'liber', u'welcom', u'public', u'hous', u'audit']
[u'longernong', u'student', u'disappoint', u'open', u'date']
[u'longreach', u'dementia', u'unit', u'state']
[u'maleni', u'develop', u'urg', u'protest', u'share', u'cost']
[u'arrest', u'wagga', u'stab']
[u'court', u'ararat', u'stand']
[u'maria', u'korp', u'life', u'support', u'switch']
[u'mayor', u'stand', u'rubbish', u'levi']
[u'meet', u'pave', u'rail', u'line']
[u'mileston', u'buckley', u'reflect', u'season']
[u'miner', u'increas', u'explor', u'activ']
[u'minist', u'seek', u'chang', u'protect', u'small', u'busi']
[u'mobil', u'phone', u'tower', u'rule', u'alli', u'public', u'concern']
[u'talk', u'hold', u'chip', u'factori']
[u'motorcyclist', u'critic', u'condit', u'alic']
[u'moyn', u'council', u'vote', u'record', u'meet']
[u'urg', u'fuel', u'remov']
[u'warn', u'commonwealth', u'control', u'coastal']
[u'nasa', u'studi', u'possibl', u'shuttl', u'damag']
[u'nation', u'attack', u'mayor', u'summit', u'plan']
[u'nation', u'increas', u'secur', u'focus']
[u'nauru', u'face', u'legal', u'case', u'trust', u'fund']
[u'ncoss', u'invit', u'public', u'input', u'boost', u'fund']
[u'aflnt', u'boss', u'consid', u'televis', u'game']
[u'northern', u'gold', u'predict', u'profit']
[u'stop', u'rise', u'goat', u'meat', u'export']
[u'nrma', u'sign', u'remov', u'repair', u'disput', u'escal']
[u'premier', u'resign']
[u'roll', u'acceler', u'literaci', u'program']
[u'obes', u'epidem', u'erod', u'heart', u'health', u'gain', u'expert']
[u'organis', u'crime', u'involv', u'illeg', u'fish']
[u'oxfam', u'seek', u'famin', u'stand', u'fund']
[u'pair', u'refus', u'bail', u'pennington', u'murder', u'case']
[u'park', u'score', u'unit', u'eas', u'beij']
[u'perilya', u'announc', u'lead', u'product', u'boost']
[u'diseas', u'kill', u'chines']
[u'pike', u'highlight', u'fall', u'dental', u'wait', u'list']
[u'polic', u'arrest', u'london', u'attack']
[u'polic', u'charg', u'springval', u'slay']
[u'polic', u'ask', u'probe', u'attempt', u'council', u'sale']
[u'polic', u'probe', u'fatal', u'truck', u'crash']
[u'polic', u'probe', u'parramatta', u'murder']
[u'polic', u'question', u'london', u'bomb', u'suspect']
[u'power', u'confid', u'beat', u'roo']
[u'prawn', u'boat', u'oper', u'happi', u'licens']
[u'pressur', u'mount', u'differenti', u'rat']
[u'prison', u'plead', u'guilti', u'bunburi', u'sieg', u'rape']
[u'public', u'councillor', u'number']
[u'qanta', u'confid', u'aircraft', u'boost', u'region']
[u'qanta', u'staff', u'testifi', u'corbi', u'trial']
[u'urg', u'join', u'carer', u'program']
[u'rabbitoh', u'sign', u'moran']
[u'race', u'offici', u'confid', u'drug', u'test']
[u'rainbow', u'warrior', u'interrupt', u'newcastl', u'coal']
[u'rainbow', u'warrior', u'remov', u'newcastl', u'harbour']
[u'ralli', u'oppos', u'hospit', u'patholog', u'privatis']
[u'rate', u'rise', u'like', u'mackay', u'budget']
[u'record', u'price', u'pay', u'victorian', u'calv']
[u'cross', u'visit', u'central', u'west']
[u'redempt', u'jone']
[u'report', u'highlight', u'slow', u'albani', u'growth']
[u'rumsfeld', u'visit', u'baghdad']
[u'sack', u'docker', u'coach', u'win', u'legal', u'battl']
[u'consid', u'lesbian', u'polic', u'liaison', u'offic']
[u'fish', u'industri', u'air', u'anger', u'closur']
[u'saint', u'secur', u'koschitzk', u'hudghton']
[u'santo', u'break', u'half', u'record']
[u'wine', u'magician', u'score', u'honour']
[u'school', u'mouth', u'tap', u'investig', u'soon']
[u'second', u'health', u'bureaucrat', u'step']
[u'secur', u'upgrad', u'cost', u'hobart', u'airport', u'million']
[u'senat', u'fear', u'employe', u'meal', u'break']
[u'crime', u'report', u'recommend', u'better', u'victim']
[u'shearer', u'secur', u'bigger', u'payout', u'land', u'acquisit']
[u'shine', u'hop', u'parliamentari', u'secretari', u'role']
[u'shuttl', u'discoveri', u'launch']
[u'tube', u'derail', u'caus', u'remain', u'confidenti']
[u'star', u'war', u'memorabilia', u'auction']
[u'state', u'seek', u'urgent', u'anti', u'terror', u'meet']
[u'strategi', u'focus', u'beaudesert', u'econom', u'growth']
[u'studi', u'show', u'circumcis', u'reduc', u'aid', u'risk']
[u'studi', u'investig', u'violent', u'crime', u'link', u'immun']
[u'tamworth', u'jail']
[u'teacher', u'shortag', u'predict', u'north', u'coast']
[u'teen', u'die', u'stab']
[u'townsvill', u'prepar']
[u'trader', u'urg', u'watch', u'fake', u'money']
[u'nation', u'sterner', u'test', u'black']
[u'hurt', u'crash']
[u'unifi', u'bodi', u'boost', u'seafood', u'industri', u'promot']
[u'upgrad', u'ellinbank', u'centr', u'open']
[u'uralla', u'council', u'union', u'flag']
[u'hop', u'sharpli', u'iraq', u'forc', u'year']
[u'vanston', u'seek', u'explan', u'student', u'detent']
[u'vcat', u'reject', u'subdivis', u'appeal']
[u'govt', u'urg', u'road', u'link', u'plan']
[u'labor', u'legal', u'squabbl', u'continu']
[u'waff', u'say', u'saudi', u'sheep', u'trade', u'reap', u'million']
[u'wagga', u'stab', u'victim', u'hospit']
[u'wallac', u'join', u'final', u'debat']
[u'wallac', u'underestim', u'place', u'blue']
[u'miner', u'beat', u'copper', u'plan']
[u'public', u'servant', u'particip', u'griffith']
[u'research', u'announc', u'seed', u'germin', u'discoveri']
[u'shark', u'number', u'microscop']
[u'top', u'access', u'econom', u'invest', u'report']
[u'western', u'power', u'charg', u'great', u'southern']
[u'fail', u'meet', u'aid', u'drug', u'goal']
[u'win', u'din', u'best', u'woo', u'women']
[u'woman', u'face', u'court', u'long', u'cancel', u'licenc']
[u'wood', u'recommend', u'inspector', u'post']
[u'wood', u'tune']
[u'worker', u'abl', u'cash', u'entitl']
[u'donat', u'help', u'fli', u'doctor']
[u'abduct', u'attempt', u'prompt', u'polic', u'warn']
[u'acoust', u'tower', u'help', u'cane', u'toad', u'fight']
[u'adelaid', u'bank', u'profit', u'soar']
[u'close', u'end', u'prelim', u'final', u'disput']
[u'alleg', u'serial', u'spiker', u'stand', u'trial']
[u'support', u'ethanol', u'blend', u'fuel']
[u'anderson', u'alleg', u'state', u'welsh', u'road', u'fund']
[u'land', u'death', u'anger', u'indigen', u'leader']
[u'appeal', u'see', u'bind', u'eleph', u'remain', u'thailand']
[u'appl', u'doesnt', u'exist', u'microsoft', u'virtual', u'earth']
[u'armi', u'reject', u'granni', u'fight', u'iraq']
[u'asic', u'admit', u'vizard', u'case', u'great']
[u'audit', u'critici', u'defenc', u'troop', u'project']
[u'auditor', u'blast', u'troop', u'carrier', u'upgrad']
[u'aussi', u'face', u'lanka']
[u'aust', u'academ', u'lose', u'botswana', u'deport', u'appeal']
[u'aust', u'asia', u'pacif', u'climat', u'pact']
[u'australia', u'host', u'inaugur', u'kyoto', u'meet']
[u'ballarat', u'compani', u'donat', u'gold', u'game', u'medal']
[u'ballroom', u'dancer', u'acquit', u'offenc']
[u'bank', u'market', u'win', u'streak']
[u'bathurst', u'consid', u'seek', u'ministeri', u'spot']
[u'unveil', u'onlin', u'soap', u'opera']
[u'beatti', u'ministri', u'get']
[u'bega', u'mayor', u'reveal', u'power', u'plan']
[u'betfair', u'woo', u'independ']
[u'clean', u'regular', u'event']
[u'birney', u'staff', u'poach', u'plan']
[u'black', u'applaud', u'outgo', u'carr']
[u'bomb', u'expert', u'involv', u'embassi', u'attack', u'jakarta']
[u'bomb', u'hit', u'iraqi', u'train']
[u'bomb', u'threat', u'forc', u'caltex', u'plant', u'evacu']
[u'boomer', u'strong', u'puerto', u'rico']
[u'broom', u'plan', u'strategi', u'consid', u'climat', u'chang']
[u'bunburi', u'lose', u'second', u'church', u'build']
[u'bureaucrat', u'departur', u'govt', u'retribut']
[u'busi', u'seek', u'park', u'support']
[u'busi', u'group', u'pledg', u'closer', u'relationship']
[u'buyer', u'boycott', u'bathurst', u'sheep', u'sale']
[u'cadet', u'suicid', u'case', u'deserv', u'tribun', u'hear', u'scutt']
[u'calf', u'death', u'investig']
[u'panel', u'countri', u'race', u'club']
[u'canberra', u'imag', u'need', u'improv', u'summit', u'hear']
[u'carr', u'bid', u'farwel', u'union', u'movement']
[u'carr', u'decis', u'spark', u'mix', u'respons']
[u'carr', u'replac', u'expect', u'impact', u'alburi']
[u'centacar', u'get', u'prais', u'year', u'work']
[u'charg', u'lay', u'polic', u'bust', u'drug', u'ring']
[u'chasten', u'henjak', u'say', u'wallabi', u'career']
[u'children', u'releas', u'detent']
[u'china', u'plan', u'antarct', u'expedit']
[u'china', u'diseas', u'toll', u'rise']
[u'chopper', u'inquest', u'tell', u'doctor', u'lack', u'formal', u'induct']
[u'citrus', u'canker', u'inquiri', u'evid', u'emerald']
[u'climat', u'chang', u'deal', u'better', u'kyoto', u'howard']
[u'communiti', u'villag', u'educ', u'program']
[u'concern', u'air', u'mental', u'peopl']
[u'contamin', u'oyster', u'farm', u'reopen', u'year']
[u'contend', u'hand']
[u'coron', u'find', u'accident', u'electrocut']
[u'council', u'delay', u'lose', u'fund', u'decis']
[u'council', u'releas', u'strand', u'report']
[u'council', u'rethink', u'increas', u'charg']
[u'council', u'retir', u'karri', u'resort', u'redevelop']
[u'council', u'agre', u'staff', u'entitl']
[u'council', u'standardis', u'water', u'restrict']
[u'council', u'decid', u'staff', u'flood', u'issu']
[u'council', u'vow', u'improv', u'consult', u'wind']
[u'court', u'consid', u'branch', u'stack', u'disput']
[u'court', u'fin', u'woodchip', u'protest']
[u'court', u'hear', u'pearl', u'oyster', u'farm', u'fight']
[u'court', u'undermin', u'immigr']
[u'cross', u'border', u'agreement', u'streamlin', u'disabl']
[u'crowd', u'turn', u'rail', u'station', u'open']
[u'democrat', u'seek', u'tuckshop', u'audit']
[u'dental', u'hear', u'head', u'port', u'macquari']
[u'discoveri', u'dock']
[u'discoveri', u'near', u'space', u'station']
[u'doctor', u'give', u'evid', u'polic', u'cell', u'inquest']
[u'doctor', u'action', u'hospit', u'servic']
[u'downer', u'commit', u'asean', u'aggress', u'pact']
[u'draper', u'call', u'equal', u'treatment', u'region']
[u'drought', u'affect', u'farm', u'children']
[u'famili', u'member', u'jail', u'brawl']
[u'email', u'pass', u'teen']
[u'emiss', u'pact', u'formal', u'unveil']
[u'detent', u'centr', u'remain', u'oper']
[u'export', u'plan', u'carnarvon']
[u'fact', u'irish', u'republican', u'armi']
[u'fear', u'trial', u'threaten', u'free', u'canola']
[u'feder', u'fund', u'tackl', u'indigen', u'drug', u'abus']
[u'firefight', u'clean', u'hospit', u'chemic', u'spill']
[u'pandem', u'fear', u'health', u'minist', u'confer']
[u'pandem', u'prepar', u'test']
[u'fodera', u'role', u'earn', u'apra']
[u'food', u'label', u'roadshow', u'arriv', u'mildura']
[u'food', u'regul', u'consid', u'countri', u'origin']
[u'fortress', u'law', u'appli', u'appropri', u'polic']
[u'gladston', u'council', u'deliv', u'budget']
[u'goldfield', u'lose', u'rare', u'obstetrician']
[u'goldfield', u'nativ', u'titl', u'claim', u'resolv']
[u'govt', u'cost', u'shift', u'bleed', u'rural', u'council']
[u'govt', u'criticis', u'agricultur', u'cut']
[u'govt', u'defend', u'campaign']
[u'govt', u'pressur', u'stall', u'polic', u'deploy']
[u'govt', u'stall', u'west', u'infrastructur', u'bid']
[u'groundbreak', u'indigen', u'educ', u'program']
[u'group', u'seek', u'action', u'dual', u'lane', u'goulburn', u'valley']
[u'hackett', u'edg', u'thorp', u'record', u'gold']
[u'hollywood', u'agre', u'digit', u'movi', u'standard']
[u'hop', u'carr', u'replac', u'address', u'coastal']
[u'hospit', u'board', u'urg', u'releas', u'patholog', u'decis']
[u'hundr', u'ralli', u'import', u'food', u'threat']
[u'hunter', u'woman', u'die', u'accid']
[u'immigr', u'scrambl', u'meet', u'child', u'releas']
[u'india', u'heaviest', u'rain', u'leav', u'fear', u'dead']
[u'indigen', u'leader', u'question', u'dump', u'plan']
[u'indonesia', u'plan', u'naval', u'shake']
[u'industri', u'promot', u'smaller', u'banana']
[u'injur', u'cyclist', u'walk']
[u'interview', u'payment', u'fund', u'guard', u'murder', u'defenc']
[u'iran', u'vow', u'resum', u'uranium', u'enrich', u'program']
[u'statement', u'arm', u'campaign']
[u'arm']
[u'jetti', u'manag', u'debat', u'rag']
[u'jone', u'vow', u'silenc', u'doubter']
[u'judg', u'decid', u'charg', u'newspap']
[u'juri', u'retir', u'dancer', u'abus', u'case']
[u'lender', u'upper', u'hous', u'chang']
[u'lennon', u'proud', u'pointi', u'head']
[u'london', u'polic', u'chief', u'warn', u'bomb']
[u'london', u'raid', u'bomb', u'suspect']
[u'mackay', u'mayor', u'stand', u'rate', u'rise']
[u'macquari', u'boost', u'profit', u'eye', u'india']
[u'maliss', u'ralli', u'oust', u'defend', u'champion', u'haa']
[u'manag', u'ask', u'pineappl', u'financ']
[u'arrest', u'overnight', u'stand']
[u'arrest', u'wagga', u'wagga', u'stab']
[u'citi', u'barton', u'fin', u'gross', u'misconduct']
[u'plead', u'guilti', u'counterfeit', u'cash']
[u'mayor', u'urg', u'accept', u'question', u'time', u'plan']
[u'chief', u'take', u'critic', u'board']
[u'melbourn', u'drug', u'bust', u'arrest', u'count']
[u'mental', u'health', u'find', u'today']
[u'miner', u'safe', u'zinifex']
[u'mine', u'compani', u'busi', u'know']
[u'mine', u'compani', u'seek', u'expans']
[u'minist', u'forc', u'defend', u'decis', u'school']
[u'mix', u'reaction', u'carr', u'departur']
[u'minist', u'discuss', u'break', u'hill', u'council', u'problem']
[u'remain', u'tight', u'lip', u'premier', u'debat']
[u'communiti', u'speed', u'cossack', u'plan']
[u'mudge', u'shop', u'phone', u'troubl']
[u'error', u'remind', u'check', u'statement']
[u'reimburs', u'overcharg', u'custom']
[u'nasa', u'ground', u'shuttl', u'fleet']
[u'nasa', u'ground', u'shuttl']
[u'nation', u'contest', u'elect']
[u'nation', u'welcom', u'carr', u'resign']
[u'councillor', u'loom', u'warrnambool']
[u'record', u'slow', u'later', u'hackett', u'admit']
[u'newspap', u'escap', u'censur', u'falconio', u'case', u'report']
[u'ngukurr', u'tension', u'rise', u'propos', u'grog']
[u'close', u'galleri', u'cost']
[u'evid', u'support', u'beckham', u'spit', u'claim']
[u'novacar', u'map', u'hospit', u'plan']
[u'nudist', u'bare', u'nake', u'truth']
[u'nuke', u'north', u'korea', u'secur', u'downer']
[u'leader', u'attack', u'muslim', u'milit', u'underbelli']
[u'dead', u'injur', u'collis']
[u'opposit', u'call', u'work', u'harder', u'amidst', u'cabinet']
[u'otten', u'cat', u'fight', u'final', u'place']
[u'overwork', u'santa', u'xmas', u'come']
[u'pakistan', u'arrest', u'pearl', u'murder', u'suspect']
[u'parol', u'board', u'boss', u'tell', u'paedophil', u'live', u'near']
[u'patel', u'reluct', u'transfer', u'patient', u'inquiri', u'tell']
[u'phenomen', u'hackett', u'set', u'record']
[u'pill', u'size', u'camera', u'provid', u'snapshot', u'intestin']
[u'pittman', u'world']
[u'plan', u'boost', u'overpass', u'safeti']
[u'polic', u'defend', u'action', u'greenpeac']
[u'polic', u'hope', u'arrest', u'bring', u'closer']
[u'polic', u'issu', u'calder', u'highway', u'warn']
[u'polic', u'probe', u'babi', u'death']
[u'polic', u'probe', u'cherri', u'picker', u'theft']
[u'polic', u'raid', u'drug', u'steal', u'good']
[u'polic', u'road', u'kill', u'accid', u'say', u'offic']
[u'polic', u'tell', u'baxter', u'centr', u'assault']
[u'polit', u'jostl', u'begin', u'labor']
[u'prelim', u'final', u'decis', u'week']
[u'prison', u'come', u'forward', u'corbi', u'case']
[u'detect', u'head', u'patel', u'investig']
[u'govt', u'criticis', u'handl', u'canker']
[u'rank', u'file', u'vote', u'decid', u'maroubra', u'candid']
[u'region', u'teacher', u'meet']
[u'report', u'call', u'urgent', u'land', u'slip', u'work']
[u'miguel', u'feel', u'pressur', u'merg', u'berri']
[u'scientist', u'identifi', u'weapon', u'fight', u'fraud']
[u'sculli', u'stand', u'firm', u'despit', u'dirti', u'trick']
[u'search', u'find', u'miss', u'angler', u'safe']
[u'second', u'prison', u'claim', u'knowledg', u'corbi', u'drug']
[u'shop', u'fin', u'porn', u'sale']
[u'shire', u'condemn', u'western', u'power', u'great', u'southern']
[u'sixteen', u'bomb', u'london', u'attack', u'report']
[u'solomon', u'wait', u'whale', u'explan']
[u'stem', u'cell', u'research', u'creat', u'brain', u'cell']
[u'strachan', u'feel', u'heat', u'celtic', u'humili']
[u'studi', u'find', u'echinacea', u'useless', u'cold']
[u'studi', u'find', u'north', u'west', u'shelf', u'emiss', u'okay']
[u'teacher', u'vie', u'region', u'achiev', u'award']
[u'telstra', u'admit', u'rural', u'servic', u'unsustain']
[u'telstra', u'deni', u'abandon', u'bush', u'custom']
[u'telstra', u'servic', u'comment', u'disturb', u'vail']
[u'threaten', u'speci', u'haven', u'north', u'coast']
[u'women', u'hold', u'london', u'bomb', u'probe']
[u'trader', u'warn', u'print']
[u'biki', u'face', u'drug', u'deal', u'charg']
[u'charg', u'adelaid', u'drug', u'bust']
[u'polic', u'arrest', u'bomb', u'suspect']
[u'hear', u'zimbabw', u'slum', u'report']
[u'union', u'warn', u'ongo', u'alic', u'hospit', u'shortag']
[u'uranium', u'explor', u'back', u'despit', u'mine']
[u'join', u'region', u'particip', u'studi']
[u'probe', u'possibl', u'case']
[u'swelter', u'dead', u'heatwav']
[u'uzbek', u'refuge', u'head', u'australia']
[u'vail', u'announc', u'prawn', u'licenc']
[u'vanston', u'mull', u'visa', u'rule', u'appeal']
[u'vanston', u'consid', u'coupl', u'right', u'visa']
[u'govt', u'seek', u'nation', u'foreign', u'train', u'doctor']
[u'victori', u'dismiss', u'premiership', u'hop']
[u'virtual', u'cattl', u'grid', u'outsmart', u'cattl']
[u'vizard', u'ban', u'compani', u'directorship']
[u'vizard', u'fin']
[u'vizard', u'fin', u'ban', u'board']
[u'compani', u'fin', u'school', u'photo', u'scaffold']
[u'giant', u'admit', u'increas', u'mercuri', u'pollut']
[u'polic', u'backpack']
[u'crime', u'charg', u'worri', u'soldier']
[u'memori', u'thiev', u'outrag']
[u'tell', u'china', u'trade', u'opportun']
[u'zimbabw', u'say', u'shantytown', u'demolit', u'finish']
[u'catch', u'phone', u'drive']
[u'jobless', u'factori', u'close']
[u'academ', u'refus', u'retir', u'race']
[u'chang', u'promot', u'greener', u'mine']
[u'activist', u'pulp', u'campaign', u'hit', u'road']
[u'acupunctur', u'show', u'reliev', u'tension', u'headach']
[u'adelaid', u'mini', u'casino', u'provok', u'outcri']
[u'agassi', u'book', u'quarter', u'final', u'date', u'paradorn']
[u'back', u'ethanol', u'blend', u'fuel']
[u'gillett', u'farewel', u'funer']
[u'andren', u'say', u'telstra', u'gambl', u'commonwealth']
[u'anglican', u'church', u'face', u'financi', u'shake']
[u'asean', u'meet', u'strike', u'counter', u'terror', u'deal']
[u'asylum', u'seeker', u'leav', u'detent']
[u'athlet', u'chief', u'unveil', u'massiv', u'anti', u'dope', u'campaign']
[u'aussi', u'claim', u'schipper', u'rob', u'gold']
[u'aust', u'commit', u'land', u'clear']
[u'australian', u'teen', u'drug', u'traffic', u'case', u'adjourn']
[u'author', u'launch', u'investig', u'piggeri']
[u'award', u'recognis', u'child', u'hous', u'blaze', u'braveri']
[u'bowyer', u'hand', u'newcastl', u'lifelin']
[u'bathurst', u'livestock', u'sale', u'proceed', u'despit']
[u'bennett', u'faze', u'tough', u'lead', u'final']
[u'crowd', u'expect', u'townsvill']
[u'biker', u'plan', u'protect', u'child', u'abus', u'victim']
[u'bird', u'kill', u'vietnam']
[u'bodi', u'joelen', u'mill', u'identifi']
[u'bomb', u'victim', u'lay', u'rest', u'melbourn']
[u'bone', u'marrow', u'potenti', u'sourc', u'cell']
[u'budget', u'shed', u'light', u'cecil', u'plain']
[u'bulldog', u'brad', u'eye', u'premiership', u'ahead']
[u'busi', u'hear', u'older', u'worker', u'advantag']
[u'button', u'confid', u'remain']
[u'byron', u'top', u'nation', u'babi', u'boomer']
[u'canker', u'hear', u'tell', u'citrus', u'grower', u'fear', u'sue']
[u'crash', u'victim', u'death', u'stun', u'nurs']
[u'cat', u'final', u'hop', u'loss', u'bomber']
[u'chamber', u'rais', u'wondai', u'hospit', u'concern']
[u'chopper', u'inquest', u'tell', u'high', u'aero', u'medic', u'cost']
[u'church', u'meet', u'drought']
[u'citylink', u'remov', u'automat', u'fine']
[u'civoniceva', u'clear', u'canberra', u'clash']
[u'clemenc', u'seek', u'aussi', u'death']
[u'commission', u'highlight', u'gippsland', u'build']
[u'contractor', u'polic', u'station', u'brief']
[u'coral', u'genet', u'complex', u'human']
[u'council', u'chief', u'highlight', u'alcohol', u'manag']
[u'council', u'consid', u'draft', u'develop', u'plan']
[u'council', u'concili', u'hear']
[u'councillor', u'air', u'fluorid', u'fear']
[u'council', u'reaffirm', u'nuclear', u'wast', u'transport', u'stanc']
[u'council', u'art', u'centr', u'snub']
[u'counter', u'terror', u'expert', u'fault', u'strategi']
[u'court', u'halt', u'parti', u'elect']
[u'court', u'rule', u'crimin', u'charg', u'roofer', u'death']
[u'credit', u'figur', u'boost', u'expect', u'rat', u'hold']
[u'crisi', u'payment', u'releas', u'inmat', u'simplifi']
[u'crowd', u'gather', u'menageri', u'race']
[u'crown', u'seek', u'year', u'spread']
[u'currumbin', u'land', u'slip', u'victim', u'build', u'stop']
[u'criticis', u'perth', u'hostel', u'closur']
[u'drought', u'fund', u'run']
[u'defenc', u'justic', u'chang', u'immin']
[u'detent', u'centr', u'oper', u'maltreat']
[u'dinosaur', u'egg', u'babi', u'bear', u'helpless']
[u'disabl', u'group', u'meet', u'coff', u'harbour']
[u'discoveri', u'dock']
[u'downer', u'ham', u'asean', u'summit']
[u'downer', u'sign', u'asean', u'treati']
[u'resum', u'hostil', u'govt', u'ashbourn']
[u'draft', u'horticultur', u'code', u'worri']
[u'driver', u'accus', u'abus', u'polic', u'charg']
[u'elder', u'end', u'wool', u'process', u'australia']
[u'energex', u'work', u'improv', u'power', u'secur']
[u'famili', u'contact', u'scheme', u'open', u'offic']
[u'farmer', u'earn', u'prais', u'salin', u'fight']
[u'fatal', u'street', u'race', u'driver', u'send', u'youth', u'centr']
[u'fewer', u'fund', u'target', u'illeg', u'deer', u'hunt']
[u'figur', u'highlight', u'fardel', u'cost', u'campaign']
[u'societi', u'head', u'win', u'defam', u'case']
[u'probe', u'american', u'idol', u'claim']
[u'fund', u'seek', u'indigen', u'represent']
[u'fund', u'drug', u'rehab', u'scheme']
[u'gallop', u'discuss', u'esper', u'issu']
[u'gasnier', u'trick', u'propel', u'dragon', u'victori']
[u'gather', u'focus', u'boat', u'safeti']
[u'genit', u'wart', u'vaccin', u'trial', u'begin']
[u'giant', u'squid', u'secret', u'reveal']
[u'giant', u'squid', u'spill', u'cannib', u'secret']
[u'gladston', u'council', u'set', u'road', u'prioriti']
[u'goulburn', u'valley', u'polic', u'raid', u'net', u'drug']
[u'governor', u'seek', u'region', u'mental', u'health', u'boost']
[u'govt', u'fund', u'children', u'program', u'palmerston', u'tiwi']
[u'govt', u'help', u'fund', u'cenotaph', u'vandal', u'clean']
[u'govt', u'releas', u'aquacultur', u'protect', u'plan']
[u'govt', u'urg', u'open', u'maryborough', u'patholog']
[u'greenpeac', u'protest', u'spark', u'secur', u'fear']
[u'har', u'race', u'shake', u'begin']
[u'hazelwood', u'replac']
[u'health', u'fund', u'increas', u'mean', u'servic', u'cut']
[u'health', u'minist', u'pressur', u'doctor', u'shortag']
[u'hensbi', u'omalley', u'content', u'sweden']
[u'hervey', u'interst', u'flight']
[u'high', u'tech', u'exhibit', u'stir', u'passion']
[u'hobart', u'wharf', u'spill', u'inquiri', u'continu']
[u'husband', u'charg', u'wife', u'slay']
[u'iemma', u'avoid', u'specul', u'parti', u'support']
[u'india', u'prim', u'seri', u'say', u'chappel']
[u'indigen', u'communiti', u'get', u'green', u'facelift']
[u'indigen', u'leader', u'welcom', u'bank', u'program']
[u'injuri', u'blow', u'lion', u'akermani', u'rule']
[u'insur', u'premium', u'rise', u'disast', u'increas']
[u'island', u'excis', u'mean', u'tricki']
[u'jone', u'disappoint', u'cannib', u'questionnair', u'leak']
[u'justic', u'dept', u'chief', u'retir', u'public', u'servic']
[u'kalbarri', u'blackout', u'predict', u'continu']
[u'katherin', u'split', u'nuclear', u'dump', u'site']
[u'killer', u'appeal', u'failur', u'pleas', u'victim', u'famili']
[u'lachlan', u'murdoch', u'quit', u'news', u'job']
[u'lennon', u'lyric', u'sheet', u'fetch']
[u'lismor', u'warn', u'flood', u'wari']
[u'london', u'bomb', u'mastermind', u'hold', u'africa', u'report']
[u'london', u'edgwar', u'road', u'underground', u'reopen']
[u'jail', u'indec', u'assault', u'boy']
[u'market', u'put', u'loss']
[u'martin', u'declar', u'alic', u'success']
[u'martin', u'open', u'chang', u'uranium', u'mine', u'polici']
[u'mcdonald', u'franchise', u'back', u'clearer', u'food', u'label']
[u'mcgrath', u'gilli', u'warn', u'rest', u'tour', u'match']
[u'meet', u'highlight', u'fluorid', u'opposit']
[u'minist', u'challeng', u'controversi', u'school']
[u'minist', u'warn', u'chang', u'small', u'busi']
[u'mix', u'view', u'air', u'dive', u'wreck', u'benefit']
[u'monsoon', u'death', u'india']
[u'confid', u'coal', u'market']
[u'morri', u'question', u'offens', u'remark']
[u'mother', u'award', u'damag', u'son', u'death', u'custodi']
[u'mourner', u'rememb', u'gillett']
[u'want', u'men', u'club', u'boycott']
[u'want', u'telstra', u'debat', u'focus', u'servic', u'woe']
[u'nation', u'face', u'challeng', u'prove', u'align']
[u'nation', u'fear', u'green', u'levi', u'blow']
[u'nation', u'plan', u'barwon', u'candid', u'timet']
[u'nation', u'debat', u'bottl', u'shop', u'impact']
[u'fenc', u'improv', u'prison', u'farm', u'secur']
[u'group', u'mildura', u'indoor', u'pool']
[u'leader', u'pay', u'tribut', u'carr', u'sculli']
[u'vizard', u'charg', u'possibl', u'costello', u'say']
[u'decis', u'traralgon', u'express', u'train']
[u'mroe', u'children', u'detent']
[u'noroc', u'chief', u'call', u'split', u'dual', u'carriageway']
[u'time', u'wast', u'toad', u'fight', u'frogwatch']
[u'notori', u'paedophil', u'deport', u'england']
[u'leadership', u'race', u'narrow']
[u'govt', u'tip', u'challeng', u'nativ', u'titl', u'decis']
[u'nude', u'rider', u'fin']
[u'opposit', u'want', u'minist', u'question', u'cabinet']
[u'phelp', u'stick', u'freestyl', u'despit', u'poor', u'result']
[u'pietersen', u'fire', u'line']
[u'disappoint', u'vizard']
[u'polic', u'charg', u'norwegian', u'nation', u'fatal']
[u'polic', u'chief', u'condemn', u'stun', u'london', u'bomb']
[u'polic', u'give', u'year', u'prepar', u'drug', u'case']
[u'polic', u'highlight', u'need', u'reunit', u'child', u'mother']
[u'polic', u'investig', u'attempt', u'child', u'abduct']
[u'polic', u'launch', u'raid', u'west', u'london']
[u'polic', u'arrest', u'drug']
[u'polic', u'offic', u'bash', u'melbourn']
[u'polic', u'question', u'offic', u'bash']
[u'polic', u'raid', u'offic', u'home', u'drug', u'blitz']
[u'polic', u'farewel', u'offic', u'kill', u'road', u'crash']
[u'polic', u'volunt', u'prepar', u'rescu', u'exercis']
[u'poll', u'labour']
[u'popul', u'report', u'puzzl', u'cunderdin', u'shire', u'chief']
[u'primus', u'expect', u'play', u'kangaroo']
[u'public', u'urg', u'youth', u'support', u'scheme']
[u'public', u'warn', u'whoop', u'cough', u'rise']
[u'nation', u'renew', u'call', u'coalit']
[u'refshaug', u'reassur', u'deputi', u'role']
[u'report', u'dispel', u'health', u'payout', u'myth']
[u'report', u'highlight', u'age', u'care', u'industri']
[u'rescu', u'plan', u'form', u'meatwork']
[u'rescuer', u'free', u'trap', u'whale']
[u'research', u'track', u'travel', u'rare', u'fli']
[u'resid', u'fight', u'communiti']
[u'revamp', u'improv', u'fresco', u'lifestyl']
[u'rooney', u'win', u'backstrok', u'gold']
[u'rwanda', u'free', u'thousand', u'genocid', u'suspect']
[u'scanner', u'help', u'museum', u'creat', u'exhibit']
[u'school', u'volunt', u'stay', u'tap', u'controversi']
[u'scientist', u'push', u'uptak', u'crop']
[u'sculli', u'make', u'premier', u'iemma']
[u'eagl', u'slap', u'hoppa', u'report']
[u'senat', u'mackay', u'resign', u'post']
[u'seven', u'citi', u'bid', u'winter', u'olymp']
[u'shire', u'sack', u'sustain', u'plan', u'director']
[u'smoke', u'tip', u'disappear']
[u'solomon', u'warn', u'drink', u'water', u'contamin']
[u'south', u'african', u'striker', u'clash', u'polic']
[u'speed', u'reduct', u'help', u'lower', u'great', u'ocean']
[u'springborg', u'renew', u'liber', u'partnership', u'talk']
[u'star', u'turn', u'hall', u'creek', u'rodeo']
[u'stretch', u'health', u'blame', u'psychiatrist']
[u'studi', u'confirm', u'drug', u'cocktail', u'fight', u'aid']
[u'studi', u'show', u'declin', u'fish', u'hotspot']
[u'suicid', u'bomber', u'kill', u'northern', u'iraq']
[u'summit', u'address', u'futur', u'farm']
[u'sydney', u'shoot', u'victim', u'die']
[u'sydney', u'mooloolaba', u'race', u'lose', u'stand']
[u'tasmanian', u'devil', u'threaten', u'speci', u'scientist']
[u'telstra', u'chief', u'go', u'bush']
[u'territorian', u'overwhelm', u'dump', u'martin']
[u'tiger', u'seven', u'surpris', u'leader', u'michigan']
[u'timber', u'industri', u'mini', u'port', u'plan', u'moot']
[u'off', u'lead', u'drug', u'raid', u'arrest']
[u'townsvill', u'inner', u'citi', u'violenc', u'wan']
[u'cancel', u'controversi', u'academ', u'class']
[u'union', u'fail', u'interim', u'halt']
[u'union', u'stand', u'firm', u'teacher', u'aid']
[u'union', u'crack', u'anti', u'log', u'protest']
[u'uranium', u'miner', u'stumbl', u'miner', u'deposit']
[u'vail', u'float', u'telstra', u'plan']
[u'vail', u'outlin', u'condit', u'telstra', u'sale']
[u'vail', u'stand', u'telstra', u'fund', u'cost']
[u'vanguard', u'skipper', u'beat', u'sydney', u'gold', u'coast']
[u'vanston', u'announc', u'detent', u'facil']
[u'video', u'game', u'ban', u'scene']
[u'vizard', u'everybodi']
[u'vizard', u'public', u'hamper', u'futur', u'trial']
[u'wallabi', u'feel', u'heat']
[u'reveal', u'christma', u'trade', u'hour']
[u'whale', u'watch', u'season', u'greater', u'signific']
[u'windsor', u'urg', u'govt', u'abandon', u'telstra', u'sale', u'plan']
[u'woman', u'hospit', u'hous', u'blaze']
[u'wool', u'innov', u'develop', u'program', u'cost']
[u'workshop', u'help', u'councillor']
[u'yass', u'farmer', u'hope', u'warmer', u'weather']
[u'labor', u'gather', u'annual', u'confer']
[u'adelaid', u'newcastl', u'fight', u'preseason', u'draw']
[u'say', u'act', u'submarin', u'problem']
[u'afghan', u'blast', u'wound']
[u'agassi', u'hold', u'paradorn', u'book', u'semi', u'final', u'place']
[u'qaeda', u'iraq', u'say', u'attack', u'kill']
[u'anger', u'detent', u'centr', u'plan']
[u'annual', u'rubbish', u'survey', u'worst', u'marin']
[u'arctic', u'depth', u'teem', u'life']
[u'armstrong', u'lose', u'court', u'joust', u'british', u'newspap']
[u'astronaut', u'prepar', u'discoveri', u'spacewalk']
[u'astronaut', u'step', u'spacewalk']
[u'aussi', u'coach', u'continu', u'press', u'video', u'replay']
[u'aussi', u'palmer', u'beat', u'squash', u'final']
[u'black', u'hawk']
[u'black', u'hawk', u'southern', u'migrat']
[u'booklet', u'aim', u'boost', u'indign', u'learn']
[u'boomer', u'lose', u'shorten', u'match']
[u'british', u'dismantl', u'secur', u'post', u'amid', u'shutdown']
[u'bronco', u'canberra', u'challeng']
[u'bruce', u'scott', u'take', u'rein', u'nation']
[u'bulldog', u'upset', u'lion']
[u'businessman', u'hold', u'polic', u'raid']
[u'elect', u'campaign', u'kick']
[u'elect', u'candid', u'begin', u'canvass', u'punter']
[u'elect', u'quinn', u'prioriti']
[u'cemeteri', u'camper', u'stake', u'claim', u'afterlif']
[u'collingwood', u'press', u'ash', u'case']
[u'conserv', u'senat', u'leader', u'back', u'stem', u'cell']
[u'contend', u'weigh', u'option', u'shock', u'senat', u'vacanc']
[u'convict', u'paedophil', u'arriv']
[u'crow', u'hold', u'swan']
[u'crow', u'hold', u'swan']
[u'detaine', u'releas', u'christma', u'island']
[u'detent', u'centr', u'oper']
[u'diaz', u'win', u'damag', u'snog', u'claim']
[u'discoveri', u'crew', u'scan', u'damag']
[u'eagl', u'return', u'winner', u'list']
[u'editor', u'propos', u'rat', u'game']
[u'easi', u'injuri', u'end', u'season']
[u'england', u'spin', u'hope', u'lazi', u'jenner']
[u'famili', u'remain', u'iemma', u'number', u'prioriti']
[u'fiji', u'play', u'pride', u'world', u'qualifi']
[u'caus', u'damag']
[u'discoveri', u'spacewalk', u'delay']
[u'candid', u'warn', u'islam', u'school']
[u'friend', u'tribut', u'brazilian', u'shoot', u'london']
[u'govt', u'demonis', u'blame', u'detaine']
[u'henri', u'claim', u'second', u'world', u'gold']
[u'high', u'price', u'stock']
[u'high', u'school', u'refus', u'enrol', u'gift', u'year']
[u'hobart', u'seek', u'passion', u'loudmouth']
[u'iemma', u'tight', u'lip', u'direct']
[u'immigr', u'mistreat', u'enrag', u'vanston']
[u'chang', u'labor', u'greatest', u'threat', u'stanhop']
[u'loss', u'tout', u'amid', u'cater', u'liquid']
[u'johnson', u'lead', u'bulldog', u'victori']
[u'john', u'star', u'knight', u'stun', u'storm']
[u'john', u'career', u'newcastl']
[u'kestrel', u'squeez', u'past', u'oriol']
[u'kidnap', u'australian', u'worker', u'free', u'gaza']
[u'labor', u'back', u'plan', u'reloc', u'black', u'hawk']
[u'lawyer', u'critic', u'paedophil', u'deport']
[u'leisel', u'demolish', u'world', u'record']
[u'lethal', u'leisel', u'seek', u'second', u'titl']
[u'lethal', u'seek', u'second', u'titl']
[u'london', u'bomb', u'suspect', u'face', u'grill']
[u'london', u'bomb', u'suspect', u'arrest']
[u'london', u'polic', u'confirm', u'arrest', u'raid']
[u'attack', u'saddam', u'court']
[u'kill', u'hous']
[u'manu', u'face', u'court', u'traffic', u'offenc', u'bail', u'breach']
[u'massiv', u'clean', u'indian', u'flood']
[u'mcdonald', u'chief', u'visit', u'tasmania']
[u'call', u'melbourn', u'cleric', u'leav', u'australia']
[u'planet', u'solar']
[u'news', u'farewel', u'lachlan', u'murdoch']
[u'wait', u'cane', u'toad', u'fund']
[u'urg', u'expat', u'vote', u'general', u'elect']
[u'panther', u'ralli', u'warrior']
[u'peac', u'memori', u'complet', u'hiroshima']
[u'pilot', u'charg', u'murder', u'prosecutor']
[u'polic', u'investig', u'inhuman', u'treatment', u'detaine']
[u'polic', u'probe', u'attempt', u'abduct']
[u'polic', u'probe', u'fake', u'money', u'order']
[u'polic', u'quiz', u'london', u'bomb', u'suspect']
[u'prison', u'chief', u'retir', u'intensifi']
[u'detent', u'centr', u'land', u'investig', u'say', u'beatti']
[u'raikkonen', u'fight', u'hungari']
[u'real', u'madrid', u'santo', u'reach', u'deal', u'robinho']
[u'report', u'find', u'detaine', u'treat', u'inhuman']
[u'resid', u'leav', u'detent', u'decis']
[u'resort', u'plan', u'recycl', u'water', u'snow']
[u'review', u'find', u'pill', u'increas', u'cancer', u'risk']
[u'romania', u'heatwav', u'kill', u'hundr', u'hospit']
[u'russia', u'outrag', u'chechen', u'rebel', u'interview']
[u'sack', u'docker', u'coach', u'award', u'damag']
[u'saint', u'send', u'demon', u'pack']
[u'schumach', u'secur', u'hungarian', u'pole']
[u'senat', u'wonder', u'dump', u'review']
[u'servic', u'fail', u'region', u'cancer', u'survivor']
[u'hurt', u'disney', u'park', u'crash']
[u'sleep', u'woman', u'darwin']
[u'socceroo', u'captain', u'moor', u'join', u'newcastl']
[u'spacewalk', u'begin']
[u'springbok', u'favourit', u'nation', u'kick']
[u'suicid', u'bomber', u'kill']
[u'swan', u'crow', u'prepar', u'adelaid', u'blockbust']
[u'swift', u'eas', u'past', u'firebird']
[u'sydney', u'away', u'liverpool', u'match']
[u'tasmania', u'defend', u'devil', u'protect', u'effort']
[u'tasmanian', u'orchestra', u'nab', u'market', u'award']
[u'thousand', u'mourn', u'brazilian', u'shoot', u'polic']
[u'thousand', u'predict', u'famin', u'grip', u'niger']
[u'toll', u'iraq', u'bomb', u'climb']
[u'toyota', u'fuel', u'cell', u'ventur', u'report']
[u'traffic', u'safeti', u'campaign', u'net', u'drink', u'drive']
[u'briton', u'kill', u'iraq']
[u'hospitalis', u'gyrocopt', u'crash']
[u'hurt', u'gyrocopt', u'crash']
[u'begin', u'food', u'airlift', u'niger']
[u'donat', u'need', u'equip']
[u'waterhous', u'fin', u'hors', u'cocain', u'test']
[u'win', u'arsenal', u'porto', u'amsterdam', u'tournament']
[u'wit', u'seek', u'fatal', u'crash', u'investig']
[u'wood', u'chase', u'singh', u'cours', u'record', u'tie']
[u'work', u'dog', u'round', u'cattl', u'trial', u'honour']
[u'worksaf', u'concern', u'road', u'transport', u'practic']
[u'young', u'tell', u'need', u'fresh', u'idea']
[u'injur', u'armi', u'exercis']
[u'accc', u'boss', u'defend', u'watchdog', u'refocus']
[u'agassi', u'reach', u'final']
[u'reach', u'niger', u'hungri']
[u'alexand', u'downer', u'say', u'partnership', u'clean']
[u'tasmanian', u'worri', u'sick']
[u'armi', u'accid', u'injur']
[u'astronaut', u'finish', u'hour', u'spacewalk']
[u'chief', u'defend', u'vizard', u'outcom']
[u'blue', u'break', u'drought', u'impress']
[u'bomb', u'kill', u'brit', u'iraq']
[u'boomer', u'lose', u'china']
[u'brogden', u'back', u'possibl', u'vendor', u'duti', u'abolit']
[u'brother', u'london', u'bomb', u'suspect', u'arrest']
[u'bomb', u'kill', u'iraq']
[u'carr', u'back', u'premiership', u'successor']
[u'carr', u'bow', u'offici', u'function']
[u'carr', u'hand', u'agenda', u'victori', u'union']
[u'celt', u'motherwel', u'share', u'spoil', u'goal']
[u'child', u'driveway']
[u'chilean', u'woman', u'pursu', u'presid']
[u'cowboy', u'edg', u'eagl', u'thriller']
[u'deport', u'paedophil', u'arriv', u'britain']
[u'discoveri', u'crew', u'move', u'tonn', u'cargo']
[u'docker', u'spoil', u'buckley', u'celebr']
[u'downer', u'open', u'asean', u'join', u'climat', u'pact']
[u'driver', u'ignor', u'mobil', u'phone']
[u'england', u'unchang', u'second', u'test']
[u'famili', u'centr', u'announc', u'bring', u'angri', u'dad']
[u'festiv', u'reveal', u'interact', u'game']
[u'fighter', u'jet', u'simul', u'warfar', u'darwin']
[u'fiji', u'samoa', u'fall', u'short', u'requir', u'target']
[u'govt', u'urg', u'address', u'stagnat', u'canberra']
[u'govt', u'urg', u'mobil', u'phone', u'tower', u'near', u'school']
[u'grain', u'crop', u'soak', u'favour', u'weather']
[u'grandstand', u'interview']
[u'hackett', u'best', u'qualifi']
[u'home', u'offic', u'minist', u'meet', u'muslim', u'leader']
[u'india', u'rain', u'death', u'toll', u'near']
[u'indigen', u'rat', u'buck', u'trend', u'studi']
[u'injur', u'jayasuriya', u'guid', u'lanka', u'victori']
[u'investig', u'kayak', u'bodi']
[u'iran', u'set', u'nuclear', u'offer', u'deadlin']
[u'abus', u'domest', u'violenc', u'link']
[u'itali', u'raid', u'home', u'bomb', u'case']
[u'kookaburra', u'gear', u'game']
[u'lebanes', u'meet', u'syria', u'assad']
[u'lebanon', u'win', u'confid', u'vote']
[u'lightsabr', u'reap', u'auction']
[u'london', u'bomb', u'suspect', u'fight', u'extradit']
[u'incom', u'home', u'ownership', u'scheme', u'consid']
[u'macgil', u'interview']
[u'maintain', u'uniti', u'sydney', u'muslim', u'tell']
[u'die', u'victorian', u'skydiv', u'accid']
[u'face', u'fine', u'kakadu', u'bodi']
[u'mcgrath', u'delay', u'worcestershir', u'return']
[u'medico', u'divid', u'rural', u'colleg', u'plan']
[u'miatk', u'strike', u'gold', u'canada']
[u'miss', u'kayak', u'bodi']
[u'rain', u'add', u'mumbai', u'miseri']
[u'motorcyclist', u'kill', u'road', u'smash']
[u'nation', u'readi', u'play', u'hard', u'ball', u'sale']
[u'nation', u'spell', u'telstra', u'sale', u'term']
[u'centr', u'target', u'famili', u'breakdown']
[u'dive', u'site', u'creat']
[u'shuttl', u'launch', u'come', u'year']
[u'rush', u'sign', u'nation', u'train', u'agreement']
[u'launch', u'elect', u'campaign']
[u'opposit', u'urg', u'cockburn', u'beach', u'closur']
[u'pakistan', u'say', u'hold', u'wake', u'london', u'bomb']
[u'parent', u'ignor', u'childhood', u'obes', u'research']
[u'polic', u'deni', u'crash', u'follow', u'high', u'speed', u'pursuit']
[u'polic', u'honour', u'offic', u'kill', u'motorcycl', u'accid']
[u'policeman', u'say', u'limit', u'high']
[u'polic', u'mull', u'charg', u'sleep', u'woman', u'death']
[u'polic', u'arrest', u'like', u'london', u'bomb']
[u'powel', u'helsinki']
[u'probe', u'launch', u'gyrocopt', u'crash']
[u'veto', u'detent', u'centr', u'mayor', u'say']
[u'govt', u'local', u'council', u'criticis', u'detent', u'centr']
[u'labor', u'leav', u'polit']
[u'nation', u'mull', u'telstra', u'sale', u'condit']
[u'quak', u'rattl', u'indonesia', u'aceh']
[u'rabbitoh', u'upset', u'bulldog']
[u'refuge', u'group', u'push', u'royal', u'commiss']
[u'report', u'confirm', u'rise', u'fund', u'pressur', u'ngos']
[u'rescuer', u'resum', u'search', u'miss']
[u'roar', u'knight']
[u'rooney', u'rais', u'roof', u'unit', u'finish', u'asian', u'tour']
[u'roo', u'steal', u'thrill', u'victori']
[u'rudd', u'urg', u'china', u'soft', u'loan', u'zimbabw']
[u'scott', u'rue', u'shorten', u'cours', u'despit', u'card']
[u'self', u'defenc', u'place', u'despit', u'asean', u'sign', u'downer']
[u'shuttl', u'spend', u'extra']
[u'singh', u'duel', u'wood']
[u'springbok', u'come', u'toppl', u'wallabi']
[u'sydney', u'landown', u'ralli', u'blueprint']
[u'talk', u'cheap', u'macgil', u'tell', u'england']
[u'tasmania', u'claim', u'popular', u'resurg']
[u'teacher', u'tell', u'boycott', u'unwork', u'report', u'card']
[u'teen', u'charg', u'man', u'murder']
[u'telstra', u'sale', u'condit']
[u'thousand', u'mark', u'nation', u'tree']
[u'thousand', u'watch', u'navi', u'ship', u'scuttl']
[u'tiger', u'sink', u'shark']
[u'timet', u'chang', u'train', u'driver']
[u'debat', u'duke', u'tasmania']
[u'tornado', u'kill', u'china']
[u'suspect', u'caus', u'fatal']
[u'question', u'alleg', u'abduct']
[u'teen', u'kill', u'racist', u'attack']
[u'deni', u'report', u'saddam', u'attack']
[u'uzbekistan', u'evict', u'base']
[u'view', u'coach']
[u'waterhous', u'mull', u'drug', u'fine', u'appeal']
[u'zambia', u'confirm', u'arrest', u'london', u'bomb', u'suspect']
[u'zambia', u'hand', u'london', u'bomb', u'suspect']
[u'sayyaf', u'bomb', u'suspect', u'arrest', u'philippin']
[u'academ', u'involv', u'race', u'allow', u'campus']
[u'academ', u'predict', u'maywald']
[u'consid', u'calvari', u'hospit', u'control']
[u'agassi', u'seal', u'career', u'titl']
[u'analyst', u'hit', u'vail', u'propos', u'telstra', u'fund']
[u'rfds', u'plane', u'fli', u'townsvill']
[u'apolog', u'seek', u'arrest', u'aborigin', u'council']
[u'arroyo', u'claim', u'wit', u'pay', u'testifi']
[u'assault', u'prompt', u'polic', u'safeti', u'warn']
[u'astronaut', u'begin', u'second', u'spacewalk']
[u'atkin', u'diet', u'compani', u'file', u'bankruptci']
[u'aussi', u'cricket', u'tribut', u'birthday', u'brown']
[u'aussi', u'davi', u'finish', u'cyclass']
[u'australian', u'doctor', u'arrest', u'uganda', u'wife']
[u'bank', u'holiday', u'quieten', u'market', u'activ']
[u'beazley', u'attack', u'telstra', u'sale', u'slush', u'fund']
[u'hillsong', u'phenomenon']
[u'belyando', u'council', u'deliv', u'rate', u'rise']
[u'bendigo', u'experi', u'tourism', u'boost']
[u'crowd', u'expect', u'flock', u'sheepvent']
[u'crowd', u'meet', u'citi', u'strategi']
[u'blair', u'plan', u'clean', u'break', u'polit', u'report']
[u'boomer', u'finish', u'china']
[u'bounti', u'hackett']
[u'break', u'hill', u'act', u'stop', u'councillor', u'critic']
[u'bulldog', u'focus', u'say', u'ead']
[u'cancer', u'institut', u'play', u'birth', u'control', u'pill']
[u'canegrow', u'examin', u'deal', u'complianc']
[u'cash', u'tabl', u'fergi', u'ponder', u'owen']
[u'chamber', u'back', u'vest']
[u'chelsea', u'milan', u'tour', u'draw']
[u'chopper', u'paramed', u'retriev']
[u'church', u'unabl', u'confirm', u'papal', u'visit', u'rumour']
[u'clijster', u'beat', u'exhaust', u'venus', u'stanford']
[u'communic', u'breakdown', u'muddi', u'territori', u'nuclear']
[u'contain', u'offer', u'temporari', u'hous', u'solut']
[u'corbi', u'legal', u'team', u'frustrat', u'ellison']
[u'coria', u'defeat', u'moya', u'umag', u'titl']
[u'cotton', u'grower', u'seek', u'compo', u'trade', u'loss']
[u'cotton', u'industri', u'show', u'sign', u'reviv']
[u'council', u'group', u'meet', u'transport', u'need']
[u'councillor', u'highlight', u'phone', u'woe']
[u'council', u'plan', u'focus', u'sustain']
[u'council', u'seek', u'long', u'term', u'deakin', u'plan']
[u'council', u'benefit', u'airport', u'revamp']
[u'council', u'urg', u'plan', u'better', u'chang']
[u'council', u'consid', u'hous', u'rezon']
[u'council', u'final', u'plan', u'polic', u'station']
[u'council', u'wari', u'worker', u'protect', u'charter']
[u'cowboy', u'boost', u'william', u'brillianc']
[u'crocodil', u'smile', u'return', u'landslip']
[u'cross', u'cite', u'match', u'review', u'committe']
[u'curfew', u'consid', u'penguin', u'attack']
[u'dairi', u'compani', u'organ', u'claim', u'investig']
[u'debat', u'begin', u'identif', u'scheme', u'cost']
[u'discoveri', u'command', u'surpris', u'launch', u'problem']
[u'doc', u'involv', u'bathurst', u'famili', u'babi']
[u'doctor', u'tell', u'inquiri', u'hide', u'patient', u'patel']
[u'dog', u'kill', u'penguin', u'popular', u'rookeri']
[u'dorset', u'mayor', u'air', u'sawmil', u'job', u'fear']
[u'dragon', u'mourn', u'death', u'club', u'legend']
[u'dravid', u'guid', u'india', u'victori', u'west', u'indi']
[u'drought', u'take', u'toll', u'milk', u'suppli']
[u'walk', u'away', u'light', u'plane', u'belli', u'land']
[u'email', u'confirm', u'hick', u'wont', u'fair', u'trial', u'lawyer']
[u'england', u'open', u'warn', u'waugh']
[u'baggag', u'handler', u'face', u'second', u'terror', u'charg']
[u'extend', u'backpack', u'stay', u'unlik']
[u'fail', u'drug', u'compani', u'boss', u'ban']
[u'falun', u'gong', u'drop', u'action', u'keelti']
[u'fardel', u'ask', u'iemma', u'region', u'project', u'guarante']
[u'farmer', u'defend', u'environment', u'asset']
[u'farmer', u'clearer', u'food', u'label']
[u'discrep', u'cost', u'nannup', u'tourism', u'dollar']
[u'figo', u'snub', u'liverpool', u'inter', u'report']
[u'film', u'maker', u'highlight', u'need', u'local', u'expert']
[u'fisher', u'lament', u'fall', u'carp', u'number']
[u'forest', u'worker', u'bodi']
[u'prosecutor', u'slam', u'guantanamo', u'commiss']
[u'fund', u'renew', u'road', u'safeti', u'task', u'forc']
[u'gippsland', u'taxi', u'join', u'convoy', u'protest']
[u'glenormiston', u'campus', u'decis', u'loom']
[u'govern', u'announc', u'tent', u'embassi', u'rethink']
[u'govt', u'stand', u'militari', u'tribun']
[u'govt', u'urg', u'focus', u'develop', u'ethanol']
[u'govt', u'urg', u'rethink', u'hors', u'unit']
[u'govt', u'wari', u'claim', u'lade', u'financ', u'bomb']
[u'green', u'accus', u'carr', u'drag', u'feet', u'super']
[u'gruell', u'calendar', u'leav', u'swimmer', u'home']
[u'guantanamo', u'claim', u'pursu', u'prove']
[u'gyrocopt', u'crash', u'wont', u'deter', u'pilot']
[u'hackett', u'class', u'perkin']
[u'hackett', u'set', u'world', u'victori']
[u'hackett', u'soak', u'gold', u'medal', u'win']
[u'health', u'servic', u'play', u'fluorid', u'concern']
[u'higher', u'price', u'affect', u'ravensthorp', u'road']
[u'hughenden', u'council', u'help', u'local', u'govt', u'inclin']
[u'india', u'look', u'aust', u'commod', u'boost']
[u'indigen', u'group', u'seek', u'tradit', u'right', u'extens']
[u'indigen', u'team', u'centuri', u'name']
[u'indonesia', u'name', u'timor', u'commiss', u'member']
[u'industri', u'urg', u'safer', u'adventur']
[u'injur', u'cyclist', u'arriv', u'home', u'germani']
[u'injur', u'rider', u'memori', u'german', u'crash']
[u'inquest', u'tell', u'detail', u'palm', u'island', u'man', u'arrest']
[u'iraq', u'cours', u'unveil', u'constitut']
[u'maxwel', u'speak', u'matthew', u'hayden']
[u'maxwel', u'wrap', u'tour', u'match']
[u'korp', u'write', u'die', u'wife']
[u'kaiser', u'put', u'hand', u'labor', u'vacanc']
[u'korp', u'pay', u'psychic', u'protect', u'court', u'hear']
[u'land', u'council', u'want', u'rubibi', u'claim', u'resolut']
[u'launceston', u'council', u'move', u'credit', u'union']
[u'lawsuit', u'detail', u'emerg', u'iraq', u'intellig']
[u'lawyer', u'want', u'nurs', u'inquiri']
[u'leak', u'email', u'claim', u'guantanamo', u'trial', u'rig']
[u'legal', u'centr', u'meet', u'focus', u'welfar', u'chang']
[u'lion', u'injuri', u'list', u'continu', u'grow']
[u'liverpool', u'celtic', u'face', u'contrast', u'euro', u'mission']
[u'ljungberg', u'doubl', u'give', u'arsenal', u'victori', u'amsterdam']
[u'local', u'tell', u'feder', u'govt', u'basic']
[u'macdougal', u'sign', u'rabbitoh']
[u'malaysia', u'passeng', u'plane', u'land', u'safe', u'perth']
[u'charg', u'capsicum', u'spray', u'incid']
[u'die', u'highway', u'crash']
[u'face', u'court', u'drug', u'smuggl', u'charg']
[u'plead', u'guilti', u'manslaught', u'chatroom']
[u'manufactur', u'sector', u'remain', u'flat']
[u'maverick', u'face', u'grand', u'final', u'chanc']
[u'mayor', u'see', u'opportun', u'council', u'work', u'practic']
[u'mayor', u'lobbi', u'costello', u'telstra', u'sale']
[u'mayor', u'welcom', u'hospit', u'rethink']
[u'mcdonald', u'offer', u'vegi', u'grower', u'late']
[u'median', u'hous', u'price', u'rise']
[u'boss', u'refus', u'bail', u'drug', u'charg']
[u'minist', u'back', u'polic', u'hand']
[u'minist', u'promis', u'action', u'hous', u'shortag']
[u'miss', u'person', u'week', u'target', u'prevent']
[u'modest', u'homecom', u'poker', u'champ']
[u'mercuri', u'remov', u'hamilton', u'board', u'hous']
[u'truck', u'creat', u'west', u'road', u'concern']
[u'demand', u'answer', u'mental', u'health', u'claim']
[u'play', u'impact', u'black', u'hawk', u'squadron']
[u'men', u'club', u'boycott']
[u'worri', u'higher', u'firefight', u'levi', u'impact']
[u'mugab', u'return', u'china', u'bail', u'deal']
[u'murray', u'hail', u'williamss', u'brillianc']
[u'mysteri', u'skin', u'escap']
[u'rogu', u'trader', u'face', u'court']
[u'nasa', u'consid', u'shuttl', u'heat', u'shield', u'repair']
[u'nation', u'citrus', u'canker', u'compens']
[u'nation', u'divis', u'cruis', u'ship', u'termin']
[u'neighbour', u'council', u'bore', u'access']
[u'group', u'lobbi', u'jack', u'jumper', u'sting', u'vaccin']
[u'news', u'launch', u'real', u'estat', u'websit']
[u'campaign', u'target', u'senat']
[u'embassi', u'bomb', u'claim', u'say', u'ruddock']
[u'seek', u'clarif', u'minist', u'illeg']
[u'nude', u'rocker', u'caus', u'music', u'show', u'cancel']
[u'oliv', u'tree', u'leav', u'high', u'anti', u'oxid', u'studi']
[u'opposit', u'urg', u'action', u'organ', u'wast']
[u'orthopaed', u'surgeon', u'stay', u'year']
[u'overfish', u'blame', u'albatross', u'race', u'death']
[u'ozjet', u'canberra', u'flight', u'delay']
[u'pair', u'court', u'club', u'assault']
[u'monitor', u'school', u'staff', u'level']
[u'parachut', u'bodi', u'defend', u'nagambi']
[u'pearl', u'compani', u'prepar', u'fraser', u'harvest']
[u'pearl', u'oyster', u'farm', u'propon', u'beat', u'plan']
[u'perth', u'record', u'driest', u'juli', u'year']
[u'perth', u'teen', u'english', u'channel']
[u'turtl', u'trek', u'quest', u'love', u'owner', u'say']
[u'philippin', u'fishermen', u'save', u'wound', u'whale', u'report']
[u'plane', u'crash', u'probe', u'week']
[u'urg', u'admit', u'rais', u'terror', u'risk']
[u'polic', u'chief', u'lobbi', u'iemma', u'anti', u'terror', u'power']
[u'polic', u'confirm', u'sister', u'kill', u'highway', u'crash']
[u'polic', u'terrorist', u'report']
[u'polic', u'want', u'anti', u'terror', u'power']
[u'port', u'augusta', u'council', u'visit', u'land']
[u'powel', u'world', u'championship']
[u'public', u'urg', u'help', u'knife', u'bandit']
[u'qanta', u'deni', u'plan', u'cut', u'counter', u'fuel']
[u'race', u'club', u'look', u'host', u'event']
[u'racist', u'academ', u'allow', u'teach', u'nelson']
[u'racist', u'academ', u'defi', u'univers']
[u'ranger', u'win', u'start']
[u'rape', u'victim', u'mother', u'urg', u'speak']
[u'real', u'brazilian', u'spark', u'owen', u'transfer', u'specul']
[u'report', u'recommend', u'tasmania', u'pursu', u'food']
[u'riot', u'break', u'vice', u'presid', u'death']
[u'road', u'death', u'claim', u'live', u'south', u'east']
[u'rspca', u'unhappi', u'goat', u'kill', u'sentenc']
[u'ruddock', u'deni', u'motiv', u'embassi', u'bomber']
[u'sack', u'worker', u'victim', u'individu', u'contract', u'union']
[u'sailor', u'like', u'sidelin', u'knee', u'injuri']
[u'nation', u'demand', u'tougher', u'telstra', u'sale']
[u'saudi', u'king', u'fahd', u'die']
[u'sculli', u'retain', u'polic', u'portfolio']
[u'second', u'arrest', u'attack']
[u'settlement', u'reach', u'chairlift', u'collaps']
[u'shark', u'deni', u'player', u'rift']
[u'singh', u'hold', u'late', u'wood', u'charg', u'retain', u'buick']
[u'slow', u'wicket', u'help', u'australia', u'say', u'hayden']
[u'smelli', u'fungus', u'spark', u'corps', u'hunt']
[u'specialist', u'highlight', u'hospit', u'contract', u'woe']
[u'strachan', u'receiv', u'back', u'board', u'report']
[u'strict', u'supervis', u'continu', u'baldi']
[u'struggl', u'demon', u'savag', u'injuri']
[u'submiss', u'flow', u'wagerup', u'refineri', u'plan']
[u'sudan', u'vice', u'presid', u'kill', u'crash']
[u'tarrant', u'face', u'match']
[u'telstra', u'fund', u'impact', u'rat', u'costello']
[u'telstra', u'sale', u'depend', u'decent', u'rural', u'servic']
[u'tenni', u'centr', u'host', u'swim', u'championship']
[u'thousand', u'tip', u'whale', u'watch', u'hervey']
[u'torrenti', u'rain', u'caus', u'chao', u'mumbai']
[u'townsvill', u'famili', u'relationship', u'centr']
[u'transport', u'exercis', u'highlight', u'fatigu', u'breach']
[u'trial', u'clark', u'polic', u'escort', u'begin']
[u'tribun', u'ask', u'dump', u'law', u'vilif', u'charg']
[u'women', u'charg', u'cenotaph', u'vandal']
[u'polic', u'arrest', u'seven', u'terror', u'investig']
[u'unionist', u'head', u'labor', u'senat', u'nomin']
[u'univers', u'hone', u'transport', u'surveil']
[u'play', u'uzbek', u'evict']
[u'vail', u'nation', u'unit', u'telstra']
[u'vail', u'open', u'lismor', u'flood', u'levi']
[u'vanguard', u'vie', u'sydney', u'gold', u'coast', u'yacht']
[u'vermeulen', u'second', u'suzuka', u'hour']
[u'victori', u'hackett', u'cap', u'record', u'equal', u'meet']
[u'week', u'highlight', u'miss', u'person']
[u'wine', u'produc', u'attract', u'market']
[u'wollongong', u'famili', u'relationship', u'centr']
[u'zabel', u'quit', u'mobil', u'year']
[u'deal', u'boost', u'rescu', u'servic']
[u'aborigin', u'cultur', u'centr', u'build', u'local', u'pride']
[u'actor', u'gulpilil', u'lose', u'licenc', u'drink', u'drive']
[u'adelaid', u'polic', u'seek', u'pair', u'motel', u'stab']
[u'argentin', u'samuel', u'move', u'inter']
[u'arthur', u'prevail', u'aussi', u'teen', u'fall', u'debut']
[u'ashburton', u'shire', u'quit']
[u'australia', u'maintain', u'lead', u'test', u'rank']
[u'australian', u'drop', u'go', u'asia']
[u'australian', u'teen', u'complet', u'channel', u'cross']
[u'award', u'go', u'floodgat', u'restor', u'project']
[u'ballarat', u'median', u'hous', u'price', u'drop']
[u'beatti', u'seek', u'back', u'implement', u'forster', u'report']
[u'billiton', u'secur', u'percent', u'stake']
[u'blaze', u'damag', u'narrabri', u'train', u'station']
[u'blue', u'simpson', u'latest', u'rise', u'star', u'nomine']
[u'bodi', u'miss', u'childer', u'woman']
[u'bomb', u'attack', u'target', u'palestinian']
[u'face', u'court', u'accid']
[u'brack', u'outlaw', u'cocain', u'kit']
[u'brack', u'protect', u'public', u'servant', u'chang']
[u'burn', u'specialist', u'look', u'applic']
[u'busi', u'expect', u'slowdown', u'despit', u'better', u'sale']
[u'busi', u'group', u'boss', u'resign']
[u'wild', u'research']
[u'shark', u'rethink', u'whale', u'death']
[u'canberra', u'driver', u'manner', u'slight', u'averag']
[u'cdep', u'manag', u'mix', u'feel', u'chang']
[u'centr', u'aim', u'develop', u'diseas', u'treatment']
[u'charg', u'drop', u'zimbabw', u'opposit', u'leader']
[u'coast', u'resid', u'hospit']
[u'colombian', u'rebel', u'kill', u'polic', u'ambush']
[u'commiss', u'look', u'road', u'train', u'rego']
[u'maintain', u'log', u'protest']
[u'corpor', u'offer', u'water', u'suppli', u'pledg']
[u'councillor', u'call', u'quit']
[u'council', u'reject', u'wallarah', u'peninsula', u'suburb']
[u'council', u'form', u'creativ', u'industri', u'polici']
[u'csiro', u'continu', u'blue', u'lake', u'research']
[u'damag', u'award', u'bushfir', u'alleg']
[u'democrat', u'want', u'nativ', u'veget', u'corridor']
[u'dire', u'strait', u'guitarist', u'drop', u'bass', u'brush']
[u'disabl', u'group', u'look', u'closer', u'relationship']
[u'dozen', u'kill', u'sudanes', u'clash']
[u'draft', u'focus', u'attract', u'industri']
[u'dredg', u'oper', u'start', u'benefit']
[u'drought', u'part', u'blame', u'stock', u'shortag']
[u'take', u'toll', u'wheatbelt', u'crop']
[u'ekka', u'exhibit', u'highlight', u'wool', u'industri']
[u'elat', u'iemma', u'premier']
[u'elder', u'fail', u'overturn', u'child', u'abus']
[u'elder', u'welcom', u'tent', u'embassi', u'rethink']
[u'energi', u'properti', u'retail', u'stock', u'push', u'ord']
[u'esper', u'emerg', u'servic', u'communic']
[u'policeman', u'face', u'perjuri', u'charg']
[u'shire', u'presid', u'critic', u'boulter', u'sack']
[u'driver', u'discuss', u'safeti', u'govern', u'bodi']
[u'famili', u'care', u'servic', u'unhappi', u'feder', u'fund', u'loss']
[u'famili', u'rais', u'question', u'man', u'hotel', u'death']
[u'fear', u'tafe', u'chang', u'wide', u'reach', u'impact']
[u'figur', u'reveal', u'coast', u'high', u'methamphetamin']
[u'parti', u'coalit', u'domin', u'fiji', u'elect']
[u'care', u'worker', u'jail']
[u'ganguli', u'join', u'india', u'squad', u'serv']
[u'lodg', u'discrimin', u'claim']
[u'gazza', u'hop', u'unearth', u'portugues', u'talent']
[u'goorjian', u'pleas', u'boomer', u'perform']
[u'govt', u'award', u'school', u'campus', u'contract']
[u'govt', u'look', u'close', u'drug', u'traffic', u'loophol']
[u'govt', u'pressur', u'fund', u'indigen', u'student', u'project']
[u'govt', u'reject', u'council', u'request', u'elect']
[u'govt', u'satisfi', u'militari', u'commiss', u'advic']
[u'govt', u'forgo', u'power', u'station']
[u'govt', u'urg', u'school', u'adopt', u'healthi']
[u'great', u'alpin', u'plan', u'move', u'ahead']
[u'green', u'light', u'bendigo', u'traffic', u'light']
[u'harbour', u'festiv', u'organis', u'welcom', u'fund']
[u'health', u'see', u'children', u'ward', u'close']
[u'hear', u'australian', u'captain', u'ricki', u'pont']
[u'hensbi', u'jump', u'world']
[u'hinch', u'turn', u'pointi', u'head', u'debat']
[u'hope', u'music', u'instrument', u'busselton']
[u'hospit', u'manag', u'overhaul', u'unnecessari']
[u'howard', u'consid', u'nation', u'telstra', u'rural']
[u'hunter', u'look', u'record', u'good', u'rainfal']
[u'iemma', u'scrap', u'vendor']
[u'iemma', u'urg', u'orang', u'model', u'parent']
[u'indigen', u'communiti', u'tell', u'school', u'import']
[u'injur', u'soldier', u'hospit', u'treatment']
[u'inquiri', u'probe', u'manag', u'imprison']
[u'investig', u'launch', u'plane', u'emerg', u'land']
[u'inzamam', u'lead', u'asia', u'africa']
[u'israel', u'prepar', u'withdraw', u'protest']
[u'itali', u'lay', u'charg', u'london', u'plot']
[u'jackson', u'buy', u'bahrain', u'home', u'report']
[u'jail', u'lover', u'think', u'korp', u'murder', u'plot']
[u'jail', u'lover', u'appear', u'korp', u'committ', u'hear']
[u'japanes', u'postal', u'reform', u'intensifi']
[u'japan', u'keep', u'china', u'militari', u'spend']
[u'japan', u'settl', u'word', u'wwii', u'resolut']
[u'maxwel', u'wrap', u'tour', u'match']
[u'john', u'howard', u'begin', u'visit', u'rural', u'area']
[u'john', u'withdraw', u'test', u'exempt', u'applic']
[u'joineri', u'apprenticeship', u'train', u'earn', u'award']
[u'juvenil', u'whale', u'dead', u'near', u'shark']
[u'kewel', u'manag', u'fail']
[u'fin', u'workplac', u'injuri']
[u'korp', u'lover', u'murder', u'court', u'tell']
[u'labor', u'caucus', u'elect', u'iemma', u'premier']
[u'laidley', u'budget', u'fund', u'indoor', u'sport', u'complex']
[u'land', u'auction', u'fund', u'recreat', u'centr']
[u'languag', u'centr', u'talk', u'job', u'scheme']
[u'lawyer', u'back', u'concili', u'confer']
[u'legal', u'servic', u'air', u'hous', u'concern']
[u'liber', u'nation', u'odd']
[u'liber', u'welcom', u'nation', u'support', u'elect']
[u'lion', u'pike', u'call']
[u'local', u'angler', u'urg', u'review']
[u'makyb', u'diva', u'head', u'nomin']
[u'charg', u'yeppoon', u'sieg']
[u'plead', u'guilti', u'massiv', u'cocain', u'import']
[u'unit', u'chase', u'ballack']
[u'mareeba', u'offer', u'hospit', u'help']
[u'mayor', u'hop', u'negat', u'impact', u'road', u'comment']
[u'mayor', u'vote', u'give', u'crown', u'plan', u'ahead']
[u'mayor', u'unhappi', u'immigr', u'centr', u'plan']
[u'meet', u'focus', u'coal', u'plan']
[u'melbourn', u'polic', u'ensur', u'safe', u'passag', u'dredg']
[u'mildura', u'famili', u'relationship', u'centr']
[u'milit', u'deni', u'lade', u'statement', u'aust']
[u'death', u'investig']
[u'miss', u'peopl', u'urg', u'contact', u'famili']
[u'fund', u'seek', u'disabl', u'support', u'servic']
[u'morri', u'fear', u'health', u'dept', u'hide', u'inform']
[u'morri', u'inquiri', u'move', u'townsvill']
[u'mount', u'kosciuszko', u'view']
[u'flag', u'legisl', u'protect', u'rural']
[u'say', u'labor', u'faction', u'choke', u'parti']
[u'murali', u'eye', u'test', u'wicket']
[u'nasa', u'emerg', u'discoveri', u'repair']
[u'flood', u'warn', u'heavi', u'rain', u'continu']
[u'opportun', u'austop', u'worker']
[u'law', u'help', u'child', u'bride']
[u'measur', u'fight', u'snowi', u'blackberri', u'spread']
[u'south', u'wale', u'deputi', u'premier', u'andrew', u'refshaug']
[u'telstra', u'boss', u'go', u'bush']
[u'evid', u'sydney', u'abduct', u'attempt', u'connect']
[u'scanner', u'hamper', u'hospit', u'accredit']
[u'tendon', u'damag', u'jayasuriya']
[u'overcrowd', u'address', u'doctor', u'say']
[u'palm', u'island', u'inquest', u'hear', u'evid']
[u'passeng', u'prepar', u'second']
[u'patient', u'die', u'get', u'wrong', u'food', u'inquest', u'hear']
[u'patterson', u'pass', u'indigen', u'school', u'term']
[u'pfizer', u'beef', u'arthriti', u'drug', u'warn']
[u'plucki', u'pooch', u'escap', u'alcatraz']
[u'brush', u'plan', u'challeng']
[u'like', u'face', u'question', u'hickss', u'treatment']
[u'polic', u'arrest', u'fail', u'london']
[u'polic', u'file', u'reveal', u'jagger', u'cohort', u'dreg']
[u'polic', u'hope', u'solv', u'miss', u'woman', u'mysteri']
[u'polic', u'hunt', u'servic', u'station', u'bandit']
[u'polic', u'optimist', u'domest', u'violenc', u'strategi']
[u'public', u'input', u'park', u'manag', u'plan']
[u'public', u'urg', u'help', u'miss', u'chinchilla', u'woman']
[u'quilpi', u'shire', u'deliv', u'rate', u'rise']
[u'rabbitoh', u'pick', u'elford']
[u'raider', u'cross', u'accept', u'match', u'suspens']
[u'rain', u'forecast', u'clear', u'western']
[u'raper', u'tell', u'player', u'shut']
[u'rathbon', u'eye', u'injur', u'sailor', u'spot']
[u'real', u'unveil', u'recruit', u'baptista']
[u'recis', u'motion', u'discuss', u'free', u'decis']
[u'cross', u'urg', u'chang', u'polici']
[u'reform', u'group', u'reject', u'graincorp', u'share', u'offer']
[u'refshaug', u'quit', u'polit']
[u'releas', u'leav', u'baxter', u'detaine', u'despond']
[u'resid', u'await', u'deliveri', u'bin']
[u'resid', u'boost', u'recept']
[u'retail', u'trade', u'climb']
[u'review', u'find', u'gap', u'health']
[u'reward', u'offer', u'penguin', u'maul', u'dog', u'captur']
[u'richo', u'docker', u'clash']
[u'river', u'group', u'consid', u'wilcannia', u'committe']
[u'riverina', u'resid', u'quiz', u'assault']
[u'roebuck', u'school', u'near', u'complet']
[u'royal', u'fli', u'doctor', u'servic', u'townsvill']
[u'rspca', u'lose', u'pound', u'tender']
[u'ruddock', u'brush', u'asid', u'critic', u'guantanamo']
[u'govt', u'welcom', u'singapor', u'airlin', u'servic']
[u'santo', u'discov', u'field']
[u'salin', u'invest', u'get', u'boost']
[u'saudi', u'offici', u'predict', u'smooth', u'transit', u'power']
[u'saudi', u'prepar', u'buri', u'king']
[u'seafood', u'label', u'hotlin', u'launch']
[u'seidler', u'aust', u'citizenship']
[u'shire', u'seal', u'louth']
[u'shire', u'form', u'region', u'local', u'govt']
[u'shire', u'path', u'better', u'infrastructur']
[u'siberia', u'slaughter', u'poultri', u'stop', u'bird']
[u'sivivatu', u'matfield', u'suffer', u'nation', u'injuri', u'scar']
[u'small', u'explos', u'target', u'british', u'interest', u'iran']
[u'editor', u'quit']
[u'spat', u'break', u'birthplac', u'star', u'trek']
[u'submiss', u'seek', u'residenti', u'tenanc', u'law']
[u'support', u'kimberley', u'review']
[u'surg', u'price', u'hit']
[u'tangl', u'humpback', u'whale', u'die']
[u'tarrant', u'risk', u'match']
[u'tarrant', u'suspend', u'match']
[u'taxi', u'fee', u'rise', u'subsidi', u'doubl']
[u'tebbutt', u'deputi', u'premier']
[u'teen', u'charg', u'fake', u'abduct']
[u'tidi', u'town', u'judg', u'inspect', u'horsham']
[u'militari', u'condemn', u'guantanamo', u'trial']
[u'tourist', u'pull', u'girl', u'burn', u'jabiru']
[u'trade', u'halt', u'mine', u'compani']
[u'turf', u'club', u'consid', u'race', u'light']
[u'union', u'threaten', u'action', u'hospit', u'staff', u'number']
[u'review', u'estim', u'iran', u'bomb', u'make']
[u'send', u'envoy', u'quell', u'violenc', u'sudan']
[u'uzbek', u'govt', u'condemn', u'airlift', u'refuge']
[u'vail', u'telstra', u'boss', u'hold', u'talk', u'region', u'servic']
[u'vail', u'trujillo', u'hold', u'talk', u'region', u'servic']
[u'veteran', u'vidmar', u'announc', u'retir']
[u'govt', u'calder', u'fund']
[u'wagga', u'host', u'landcar', u'gather']
[u'wallabi', u'code', u'conduct', u'need', u'review', u'jone']
[u'wast', u'strategi', u'perform']
[u'water', u'author', u'downplay', u'sewag', u'spill', u'impact']
[u'urg', u'develop', u'ethanol', u'industri']
[u'chairman', u'move', u'asid']
[u'wine', u'industri', u'feel', u'retail', u'pressur']
[u'wit', u'infer', u'victim', u'assault', u'death', u'custodi']
[u'woman', u'die']
[u'woman', u'stuart', u'highway']
[u'work', u'continu', u'nebo', u'sewerag']
[u'marin', u'interpret', u'kill', u'iraq']
[u'accid', u'prompt', u'navi', u'replac', u'submarin', u'hose']
[u'actu', u'appeal', u'govt', u'work', u'famili', u'balanc']
[u'campaign', u'aim', u'boost', u'troubl', u'ferri', u'rout']
[u'adida', u'reebok']
[u'back', u'match', u'review']
[u'franc', u'crash', u'hell', u'roller', u'coaster']
[u'franc', u'land', u'late', u'minist']
[u'airport', u'base', u'second', u'outlet', u'creat', u'job']
[u'bomb', u'dizzi', u'ash', u'tour']
[u'anti', u'violenc', u'summit', u'call', u'tumbarumba']
[u'astronaut', u'space', u'walk', u'shuttl']
[u'attack', u'piggeri', u'leav', u'anim', u'dead']
[u'train', u'urg', u'rural', u'school']
[u'australian', u'year', u'offer', u'advic', u'alic']
[u'australian', u'towel', u'pool', u'duel']
[u'aust', u'woman', u'guilti', u'bomb', u'hoax']
[u'bali', u'court', u'refus', u'corbi', u'time']
[u'ballack', u'deni', u'agreement']
[u'black', u'cap', u'touch', u'zimbabw']
[u'bolivian', u'face', u'life', u'sentenc', u'cocain']
[u'boomer', u'strengthen', u'squad', u'nation', u'tournament']
[u'chief', u'urg', u'corpor', u'action', u'climat', u'chang']
[u'brain', u'dead', u'woman', u'give', u'birth']
[u'builder', u'attack', u'hous', u'energi', u'plan']
[u'build', u'approv', u'continu', u'rise']
[u'busi', u'council', u'welcom', u'vendor', u'demis']
[u'easier', u'wheatbelt', u'blood', u'donat']
[u'canberra', u'pleas', u'rank']
[u'sale']
[u'carter', u'black', u'nation', u'open']
[u'celtic', u'exit', u'champion', u'race']
[u'chamber', u'concern', u'despit', u'increas', u'retail']
[u'collingwood', u'vow', u'come', u'fight']
[u'communiti', u'group', u'plan', u'approach', u'nuclear', u'dump']
[u'oppos', u'xstrata', u'river', u'divers']
[u'back', u'vendor', u'demis']
[u'costello', u'want', u'tax', u'remov']
[u'cotton', u'trader', u'order', u'grower', u'damag']
[u'council', u'consid', u'gladston', u'land']
[u'council', u'group', u'outlin', u'altern', u'inland', u'rail']
[u'council', u'darci', u'hous', u'oper']
[u'council', u'urg', u'truck', u'restrict']
[u'countri', u'cabbi', u'seek', u'govt', u'help', u'depot', u'closur']
[u'rank', u'high', u'good', u'univers', u'guid']
[u'score', u'mark', u'good', u'guid']
[u'dairi', u'cooper', u'doubl', u'dividend', u'payment']
[u'danih', u'tell', u'demon', u'focus', u'present']
[u'dead', u'cadet', u'case', u'high', u'court']
[u'dead', u'fish', u'death', u'threat', u'sour', u'pulp', u'clash']
[u'deak', u'cut', u'helsinki', u'program', u'half']
[u'death', u'custodi', u'video', u'show', u'inquest']
[u'develop', u'plan', u'worri', u'progress', u'associ']
[u'diamond', u'earn', u'award', u'apprentic', u'train']
[u'dizzi', u'express', u'safeti', u'concern']
[u'doctor', u'lobbi', u'bureaucrat', u'public', u'hospit']
[u'drill', u'uncov', u'signific', u'nickel', u'deposit']
[u'time', u'south', u'west']
[u'eagl', u'unlik', u'chang', u'bulldog', u'clash']
[u'legal', u'action']
[u'european', u'trio', u'warn', u'iran', u'nuclear', u'resumpt']
[u'polic', u'chief', u'apologis', u'anwar', u'ibrahim']
[u'farmer', u'hope', u'nuttal', u'back', u'canker', u'compo', u'plan']
[u'fear', u'dog', u'return', u'penguin', u'coloni']
[u'fear', u'health', u'disput', u'wider', u'impact']
[u'feder', u'make', u'master', u'object']
[u'figur', u'increas', u'domest', u'wine', u'sale']
[u'forestri', u'chief', u'return', u'asian', u'lobbi', u'campaign']
[u'asio', u'offic', u'issu', u'terror', u'warn']
[u'judg', u'win', u'challeng', u'pic']
[u'leader', u'lang', u'lose']
[u'forster', u'highlight', u'gold', u'coast', u'health', u'need']
[u'fund', u'announc', u'homestead', u'revamp']
[u'concern', u'rais', u'militari', u'commiss']
[u'gallop', u'get', u'esper', u'port', u'plan']
[u'german', u'mother', u'admit', u'role', u'babi', u'death']
[u'gerrard', u'inspir', u'liverpool']
[u'gippsland', u'taxi', u'oper', u'join', u'melbourn', u'meet']
[u'glass', u'worker', u'ralli', u'holden', u'import', u'decis']
[u'gold', u'coast', u'team', u'peopl', u'choic']
[u'govt', u'alloc', u'broule', u'skate', u'fund']
[u'govt', u'odd', u'corbi', u'lawyer']
[u'govt', u'need', u'increas', u'fund', u'ail']
[u'govt', u'stand', u'plan', u'dredg']
[u'grant', u'aim', u'encourag', u'nurs', u'age', u'care']
[u'health', u'servic', u'urg', u'chang', u'cultur']
[u'hick', u'tri', u'aust', u'lawyer']
[u'howard', u'visit', u'affect', u'farm']
[u'hull', u'maintain', u'telstra', u'split', u'stanc']
[u'iemma', u'ask', u'timber', u'worker']
[u'iemma', u'swear', u'premier']
[u'indian', u'ocean', u'tsunami', u'warn', u'near']
[u'industri', u'feel', u'squeez', u'navel', u'orang', u'price']
[u'injur', u'cyclist', u'intens', u'care']
[u'inquiri', u'chief', u'defend', u'individu', u'contract']
[u'inquiri', u'hear', u'doctor', u'employ', u'accredit']
[u'wide', u'show', u'south', u'east', u'chip']
[u'rat', u'remain', u'percent']
[u'iranian', u'presid', u'appeal', u'wmds']
[u'iraqi', u'constitut', u'talk', u'stall', u'attack', u'kill']
[u'back', u'long', u'servic']
[u'jacob', u'seek', u'assault', u'counsel', u'servic']
[u'jetstar', u'cross', u'tasman']
[u'korp', u'stand', u'trial']
[u'keelti', u'confirm', u'terror', u'network', u'aust']
[u'kidman', u'snatch', u'role']
[u'knowl', u'quit', u'iemma', u'free', u'hand']
[u'korp', u'lawyer', u'expect', u'murder', u'charg']
[u'labor', u'split', u'uranium', u'say', u'mine', u'compani']
[u'landmark', u'orbit', u'space', u'shuttl', u'repair', u'success']
[u'legal', u'wrangl', u'tobacco', u'continu']
[u'liber', u'rais', u'school', u'safeti', u'elect']
[u'livestock', u'sale', u'despit', u'plan', u'boycott']
[u'lose', u'pound', u'contract', u'stop', u'anim', u'shelter', u'plan']
[u'macfarlan', u'happi', u'ranger', u'uranium']
[u'maharoof', u'star', u'lanka', u'victori']
[u'maitland', u'council', u'lose', u'rat', u'appeal']
[u'fin', u'sheep', u'cruelti']
[u'plan', u'solo', u'row', u'trip']
[u'face', u'attempt', u'murder', u'committ', u'hear']
[u'media', u'report', u'forc', u'judg', u'dismiss', u'juri']
[u'meet', u'focus', u'central', u'gippsland', u'health']
[u'miner', u'announc', u'pilbara', u'explor', u'plan']
[u'miner', u'kill', u'china', u'accid']
[u'minist', u'share', u'agreement', u'rais', u'concern']
[u'question', u'great', u'southern', u'salt', u'plan']
[u'moder', u'alcohol', u'drinker', u'better', u'thinker', u'studi']
[u'prais', u'water', u'save', u'effort']
[u'want', u'longernong', u'colleg', u'futur', u'know']
[u'murray', u'darl', u'slice', u'green', u'fund']
[u'namoi', u'cotton', u'reject', u'takeov', u'offer']
[u'nation', u'target', u'mildura', u'gippsland', u'seat']
[u'nation', u'welcom', u'labor', u'resign']
[u'newcastl', u'join', u'unit', u'owen', u'chase']
[u'warn', u'impact', u'reform', u'farmer']
[u'niger', u'food', u'crisi', u'eas', u'presid']
[u'korea', u'laud', u'kim', u'memori', u'train']
[u'death', u'canada', u'plane', u'crash']
[u'quick', u'like', u'bridg', u'rout']
[u'blog', u'creat', u'second']
[u'optus', u'chief', u'call', u'reform', u'bush', u'fund']
[u'world', u'seek', u'planet']
[u'passeng', u'flame', u'canada']
[u'passeng', u'accept', u'rail', u'reform', u'time', u'iemma']
[u'passeng', u'crew', u'escap', u'canada', u'plane', u'crash']
[u'pentagon', u'ban', u'anonym', u'quot', u'press', u'releas']
[u'say', u'extremist', u'surveil']
[u'take', u'trujillo', u'task', u'regul']
[u'polic', u'appeal', u'inform', u'miss']
[u'polic', u'awar', u'terrorist', u'cell', u'keelti']
[u'polic', u'claim', u'success', u'port', u'wakefield', u'road', u'blitz']
[u'polic', u'close', u'arm', u'bandit']
[u'polic', u'disarm', u'explos', u'perth']
[u'polic', u'probe', u'kyneton', u'death']
[u'polic', u'releas', u'descript', u'abduct']
[u'polic', u'open', u'perth', u'foreshor', u'explos']
[u'polic', u'releas', u'imag', u'knife', u'bandit']
[u'poll', u'consid', u'wimmera', u'skill', u'shortag']
[u'pork', u'produc', u'face', u'carcass', u'levi', u'hike']
[u'prais', u'wetland', u'protect', u'effort']
[u'prawn', u'fleet', u'head', u'gulf']
[u'pressur', u'aust', u'wheat', u'price', u'affect', u'grower']
[u'primus', u'admit', u'port', u'rid', u'luck']
[u'public', u'snap', u'communiti', u'telco', u'share']
[u'public', u'warn', u'rubbish', u'collect', u'chang']
[u'farmer', u'face', u'weather', u'extrem']
[u'rat', u'decis', u'reflect', u'solid', u'growth', u'costello']
[u'real', u'estat', u'institut', u'back', u'vendor', u'decis']
[u'resid', u'voic', u'concern', u'nuclear', u'dump']
[u'tinto', u'result', u'fail', u'lift']
[u'rspca', u'probe', u'armidal', u'kitten', u'abus']
[u'rural', u'ambul', u'time', u'bomb', u'disgrac', u'union']
[u'rural', u'elect']
[u'rural', u'train', u'medic', u'student', u'outperform', u'citi']
[u'russian', u'hungri', u'meat']
[u'russia', u'network', u'journalist']
[u'sale', u'mitsubishi', u'plant', u'expect', u'month']
[u'salvo', u'warn', u'homeless', u'shelter', u'shortag']
[u'catch', u'amass', u'cold', u'tablet']
[u'coupl', u'feel', u'itch', u'hitch']
[u'join', u'legal', u'challeng', u'chang']
[u'school', u'join', u'anti', u'bulli', u'program']
[u'scud', u'misfir', u'washington']
[u'senat', u'see', u'good', u'indigen', u'work', u'agreement']
[u'sentenc', u'stand', u'drug', u'dealer', u'caccamo']
[u'servic', u'industri', u'grow']
[u'servic', u'provid', u'work']
[u'shaq', u'sign', u'year', u'heat', u'deal']
[u'shoulder', u'surgeri', u'sidelin', u'larkham']
[u'simplot', u'finalis', u'price']
[u'socceroo', u'squad', u'announc', u'dutch', u'train', u'camp']
[u'soldier', u'receiv', u'afghanistan', u'campaign', u'medal']
[u'soni', u'settl', u'bogus', u'film', u'critic', u'suit']
[u'spur', u'complet', u'david', u'sign']
[u'stoner', u'disagre', u'oakeshott', u'iemma', u'claim']
[u'student', u'ralli', u'voluntari', u'union', u'plan']
[u'submiss', u'flow', u'enterpris', u'centr']
[u'sudan', u'bashir', u'urg', u'violenc']
[u'sunday', u'market', u'continu']
[u'super', u'flood', u'rais', u'nuke', u'dump', u'hazard']
[u'survey', u'highlight', u'benefit', u'long', u'term']
[u'survey', u'work', u'cours', u'golf', u'cours', u'revamp']
[u'sydney', u'water', u'worker', u'kill', u'boat', u'capsiz']
[u'task', u'forc', u'investig', u'indigen', u'child']
[u'teacher', u'leav', u'public', u'school', u'door']
[u'telstra', u'burden', u'regul', u'coonan']
[u'telstra', u'fund', u'bush', u'aapt']
[u'thousand', u'expect', u'attend', u'field', u'day']
[u'tiger', u'clash', u'litmus', u'test', u'connolli']
[u'time', u'frame', u'cossack', u'hous', u'plan']
[u'time', u'corbi', u'appeal']
[u'tongan', u'soldier', u'transfer', u'weekend', u'accid']
[u'traci', u'damag', u'iron', u'reopen']
[u'treasur', u'welcom', u'adb', u'sydney', u'offic']
[u'tribun', u'examin', u'doctor', u'conduct']
[u'trio', u'charg', u'teenag', u'rape']
[u'troop', u'block', u'mauritania', u'street', u'appar', u'coup']
[u'troop', u'mauritanian', u'capit']
[u'truck', u'lose', u'paper', u'roll', u'load', u'highway', u'crash']
[u'trujillo', u'understand', u'telstra', u'oblig', u'joyc']
[u'trujillo', u'tell', u'farmer', u'commit', u'bush']
[u'union', u'concern', u'abattoir', u'outsourc']
[u'get', u'high', u'mark', u'graduat', u'satisfact']
[u'journalist', u'kill', u'iraq']
[u'vanston', u'reject', u'church', u'critic', u'indigen']
[u'vaughan', u'prove', u'say', u'pont']
[u'govt', u'pour', u'cold', u'water', u'calder', u'finish']
[u'warn', u'say', u'spin', u'better']
[u'webb', u'return', u'cowboy', u'georg', u'clash']
[u'wildcat', u'sign', u'veteran', u'roger']
[u'wollongong', u'score', u'high', u'good', u'guid']
[u'woman', u'die', u'north', u'road', u'crash']
[u'women', u'jail', u'assault', u'hostag']
[u'young', u'tasmanian', u'leav', u'european', u'pilgrimag']
[u'zambia', u'deport', u'terror', u'suspect']
[u'zimbabw', u'opposit', u'readi', u'talk', u'mugab']
[u'green', u'scheme', u'south', u'west']
[u'abbott', u'back', u'cape', u'york', u'alcohol', u'plan']
[u'academ', u'politician', u'consilium']
[u'accus', u'rapist', u'persi', u'play', u'communiti']
[u'adida', u'salomon', u'launch', u'reebok', u'takeov']
[u'afghan', u'polic', u'seiz', u'kilogram', u'heroin']
[u'agricultur', u'school', u'futur', u'safe', u'say']
[u'airport', u'owner', u'undermin', u'plan', u'strategi']
[u'aloisi', u'name', u'unit', u'captain']
[u'qaeda', u'deputi', u'warn', u'attack']
[u'amphetamin', u'slow', u'parkinson', u'studi']
[u'antarct', u'shelf', u'collaps', u'link', u'global']
[u'complet', u'telescop', u'hawaii']
[u'close', u'steadi']
[u'aussi', u'healey', u'fall', u'resurg', u'rusedski']
[u'aussi', u'england', u'tail']
[u'australian', u'islam', u'leader', u'defend', u'jihad']
[u'ballack', u'focus', u'bayern', u'munich']
[u'ballarat', u'council', u'monitor', u'wast', u'dump', u'plan']
[u'bank', u'england', u'cut', u'rat']
[u'bathurst', u'mayor', u'say', u'saleyard', u'redevelop', u'viabl']
[u'beatti', u'reject', u'health', u'cover', u'claim']
[u'beazley', u'urg', u'uniform', u'approach', u'terror', u'fight']
[u'beef', u'price', u'remain', u'high', u'despit', u'export', u'slump']
[u'nervous', u'terrorist', u'strike', u'ruddock']
[u'bichel', u'rewrit', u'hampshir', u'record', u'book']
[u'crowd', u'hop', u'land', u'conserv', u'gather']
[u'gun', u'test', u'shoalwat']
[u'biosecur', u'aust', u'continu', u'brazil', u'beef', u'review']
[u'brain', u'dead', u'woman', u'die', u'give', u'birth']
[u'brisban', u'fin', u'board', u'hous', u'blaze']
[u'broom', u'region', u'head', u'indigen', u'doctor', u'group']
[u'collect', u'stir', u'intern', u'buzz']
[u'businessman', u'predict', u'grim', u'futur', u'domest']
[u'esper', u'mental', u'health', u'halfway', u'hous']
[u'camera', u'flaw', u'defenc', u'fail', u'speed', u'case']
[u'campbel', u'retain', u'portfolio']
[u'chines', u'produc', u'eye', u'woodsid', u'santo', u'report']
[u'civoniceva', u'prove', u'fit', u'man', u'clash']
[u'commission', u'flag', u'merger', u'health', u'servic']
[u'compani', u'say', u'mine', u'takeov', u'viabl']
[u'competit', u'hit', u'optus', u'profit']
[u'corbi', u'lawyer', u'meet', u'ellison']
[u'coron', u'condemn', u'polic', u'shoot', u'mental']
[u'coron', u'rule', u'arson', u'supermarket', u'blaze']
[u'council', u'ask', u'develop', u'scale', u'unit', u'plan']
[u'councillor', u'question', u'confer', u'expens']
[u'council', u'support', u'mitchel', u'youth', u'detent', u'centr']
[u'council', u'tell', u'causeway', u'upgrad', u'year']
[u'court', u'consid', u'inadequ', u'sentenc']
[u'court', u'rule', u'citizen', u'lose', u'aust', u'citizenship']
[u'crash', u'prompt', u'call', u'highway', u'upgrad']
[u'crawford', u'happi', u'decis', u'step']
[u'price', u'airfar', u'singapor']
[u'damag', u'thermal', u'blanket', u'requir']
[u'dandi', u'warhol', u'headlin', u'fall', u'festiv']
[u'defend', u'champion', u'determin', u'aveng', u'olymp']
[u'earth', u'moon']
[u'educ', u'dept', u'investig', u'girl', u'lock']
[u'emerald', u'council', u'administr', u'build']
[u'emerg', u'food', u'deliveri', u'reach', u'remot', u'communiti']
[u'england', u'steadi', u'start']
[u'esper', u'record', u'cargo', u'handl', u'figur']
[u'timor', u'record', u'world', u'highest', u'birth', u'rate']
[u'faction', u'stoush', u'brew', u'elect', u'deputi']
[u'famili', u'unimpress', u'bomb', u'compo']
[u'farmer', u'fear', u'phone', u'woe', u'prove', u'cost']
[u'farmer', u'hail', u'salin', u'scheme']
[u'farmer', u'prepar', u'flood', u'river', u'rise']
[u'farmer', u'mccain', u'crisi', u'meet', u'crucial']
[u'feder', u'govt', u'take', u'control', u'uranium']
[u'damag', u'salvo', u'citadel']
[u'flight', u'attend', u'get', u'year', u'drug', u'smuggl']
[u'judg', u'back', u'repatri', u'hick']
[u'knight', u'flyer', u'albert', u'sign', u'shark']
[u'premier', u'claim', u'ignor', u'bank', u'bust']
[u'student', u'innov', u'contest']
[u'fourth', u'space', u'walk', u'possibl', u'nasa']
[u'review', u'food', u'preserv', u'level']
[u'gallop', u'back', u'upgrad', u'ravensthorp', u'servic']
[u'gang', u'rapist', u'sentenc', u'uphold']
[u'rich', u'poor', u'grow']
[u'pipelin', u'talk', u'advanc']
[u'gippsland', u'ralli', u'hospit', u'downsiz', u'fear']
[u'gippsland', u'irrig', u'water', u'price', u'astound', u'farmer']
[u'govt', u'bankrol', u'pilbara', u'school', u'ventur']
[u'govt', u'afford', u'fund', u'second', u'hick', u'lawyer']
[u'govt', u'defend', u'action', u'corbi', u'case']
[u'govt', u'defend', u'soldier', u'medal', u'delay']
[u'govt', u'plan', u'chang', u'campaign']
[u'govt', u'readi', u'assist', u'corbi', u'case', u'reopen', u'ellison']
[u'govt', u'reject', u'armchair', u'critic', u'hick']
[u'govt', u'campaign', u'wont', u'work', u'labor']
[u'govt', u'mull', u'involv', u'cyclist', u'memori']
[u'govt', u'take', u'control', u'uranium', u'industri']
[u'govt', u'reveal', u'telstra', u'plan', u'kendal']
[u'govt', u'toughen', u'telstra', u'region', u'servic', u'condit']
[u'govt', u'urg', u'offer', u'drought', u'busi']
[u'gregan', u'believ', u'wallabi', u'crack', u'south', u'africa']
[u'group', u'wait', u'dredg', u'decis']
[u'hobart', u'teacher', u'charg', u'child', u'offenc']
[u'hop', u'lose', u'wife', u'confess', u'fake']
[u'hospit', u'manag', u'beat', u'contract']
[u'hospit', u'staff', u'need', u'effici']
[u'human', u'right', u'group', u'examin', u'crimin', u'claim']
[u'iemma', u'vow', u'restor', u'status', u'econom']
[u'industri', u'group', u'laud', u'wine', u'tourism']
[u'inquest', u'hear', u'arrest', u'offic', u'wasnt', u'angri']
[u'intens', u'earthquak', u'record', u'eastern', u'indonesia']
[u'investig', u'franc', u'jet', u'black', u'box']
[u'islam', u'council', u'attack', u'terror', u'comment']
[u'isra', u'polic', u'block', u'gaza', u'march']
[u'isra', u'protest', u'suspend', u'march', u'plan']
[u'jewish', u'group', u'investig', u'crime', u'suspect', u'claim']
[u'maxwel', u'speak', u'ricki', u'pont']
[u'kasper', u'dizzi', u'break']
[u'korean', u'clone']
[u'legal', u'prolong', u'homeless', u'report']
[u'legendari', u'rock', u'critic', u'die']
[u'lightn', u'strike', u'vineyard', u'worker']
[u'london', u'bomb', u'suspect', u'extradit', u'hear']
[u'magpi', u'fin', u'malthous', u'comment']
[u'hospit', u'crash']
[u'surveil', u'speak']
[u'martin', u'snub', u'minist', u'uranium', u'mine']
[u'maryborough', u'resid', u'fight', u'patholog', u'plan']
[u'mayor', u'ponder', u'cabinet', u'chang', u'impact']
[u'mcgrath', u'doubt', u'train', u'mishap']
[u'mcgrath', u'edgbaston', u'test']
[u'mcgrath', u'target', u'vaughan', u'edgbaston']
[u'melbourn', u'arm', u'bandit', u'strike']
[u'mildura', u'rift', u'threaten', u'child', u'welfar', u'reform', u'govt']
[u'miner', u'plan', u'high', u'tech', u'map', u'near', u'break', u'hill']
[u'miss', u'girl', u'school', u'sick']
[u'monkey', u'see', u'rescu', u'injur', u'companion', u'report']
[u'sophist', u'bomb', u'mark', u'iraq', u'attack']
[u'fear', u'anaesthetist', u'drive', u'away']
[u'seek', u'sunshin', u'coast', u'polic', u'boost']
[u'murray', u'resid', u'warn', u'flood']
[u'nation', u'search', u'moor', u'offic']
[u'nation', u'advertis', u'seat', u'candid']
[u'nauru', u'hop', u'dirti', u'money', u'black', u'list']
[u'newcastl', u'adio', u'europ']
[u'compani', u'search', u'uranium']
[u'regul', u'telstra']
[u'zealand', u'bank', u'return', u'paceman', u'bond']
[u'sight', u'luca', u'aim', u'game']
[u'investig', u'budget', u'leak']
[u'northam', u'shire', u'clear', u'quarri', u'wrongdo']
[u'northern', u'river', u'rental', u'price', u'skyrocket']
[u'nuttal', u'visit', u'emerald', u'amidst', u'canker', u'compo', u'call']
[u'labour', u'parti', u'limit', u'maori', u'claim']
[u'odriscol', u'target', u'return', u'wallabi', u'black']
[u'outback', u'get', u'landcar']
[u'owen', u'talk', u'premiership', u'club']
[u'palm', u'inquest', u'hear', u'liaison', u'offic', u'keep', u'quiet']
[u'parent', u'remind', u'chickenpox', u'vaccin']
[u'pari', u'scene', u'win', u'connor', u'dobel']
[u'grower', u'brief', u'simplot', u'price', u'cut']
[u'penguin', u'attack', u'north']
[u'pilot', u'error', u'crash', u'aceh']
[u'plan', u'begin', u'thuringowa', u'sport', u'stadium']
[u'plan', u'continu', u'loxton', u'hospit', u'revamp']
[u'plan', u'oper', u'famili', u'centr', u'lismor', u'welcom']
[u'flag', u'chang', u'terror', u'law']
[u'polic', u'forc', u'london']
[u'polic', u'prepar', u'chariti', u'shuffl']
[u'polic', u'raid', u'uncov', u'hydropon', u'oper']
[u'polic', u'investig', u'sydney', u'water', u'accid']
[u'polic', u'warn', u'driver', u'woodend', u'snow']
[u'protein', u'discoveri', u'offer', u'alzheim', u'hope']
[u'public', u'fear', u'radioact', u'wast', u'unreason']
[u'public', u'show', u'roxbi', u'down', u'plan']
[u'public', u'urg', u'speak', u'council', u'sack']
[u'qanta', u'plane', u'make', u'emerg', u'land']
[u'cotton', u'deni', u'underbid', u'claim']
[u'racist', u'murder', u'suspect', u'detain', u'return']
[u'rat', u'bleed', u'council', u'more', u'mayor']
[u'region', u'develop', u'board', u'member', u'converg']
[u'region', u'tourism', u'group', u'cheap', u'flight']
[u'report', u'highlight', u'heavi', u'council', u'workload']
[u'research', u'pinpoint', u'breast', u'cancer', u'gene']
[u'rise', u'price', u'rural', u'busi']
[u'rocker', u'melissa', u'etheridg', u'say', u'shes', u'cancer', u'free']
[u'ronaldson', u'lead', u'wildcat']
[u'presid', u'defend', u'gallipoli', u'roadwork']
[u'ruddock', u'tour', u'cyclon', u'ravag', u'tiwi', u'island']
[u'rural', u'taxi', u'fold', u'govt', u'support']
[u'driver', u'urg', u'dirt', u'road', u'train']
[u'africa', u'agre', u'bail', u'zimbabw', u'debt']
[u'scheme', u'aim', u'improv', u'biodivers']
[u'school', u'ask', u'explain', u'girl', u'overnight', u'lock']
[u'school', u'closur', u'heat']
[u'scientist', u'identifi', u'alzheim', u'protein']
[u'sheep', u'breeder', u'score', u'ram', u'price']
[u'shuttl', u'crew', u'complet', u'repair']
[u'snow', u'help', u'boost', u'resort', u'cover']
[u'snowi', u'subdivis', u'plan', u'reveal']
[u'question', u'stab', u'murder']
[u'south', u'east', u'share', u'feder', u'green', u'fund']
[u'specul', u'continu', u'health', u'merger', u'job']
[u'lanka', u'crash', u'ganguli', u'parti']
[u'state', u'battl', u'govt', u'tibbl', u'case']
[u'steadi', u'rain', u'expect', u'clear']
[u'struggl', u'victori', u'hop', u'attract', u'investor']
[u'sudan', u'death', u'toll', u'rise']
[u'sugar', u'cane', u'grower', u'introduc', u'asian', u'trend', u'cane']
[u'suspect', u'remand', u'custodi', u'london', u'attack']
[u'sydney', u'arrest', u'rail', u'shutdown']
[u'tasmania', u'alert', u'earli', u'bushfir', u'season']
[u'offic', u'target', u'medium', u'size', u'busi']
[u'tebbutt', u'pull', u'deputi', u'premier', u'race']
[u'teen', u'jail', u'life', u'execut', u'style', u'kill']
[u'teen', u'kill', u'sleep', u'road']
[u'telstra', u'face', u'tougher', u'licenc', u'condit']
[u'timor', u'seek', u'health', u'help']
[u'toffe', u'sign', u'phil', u'nevill', u'unit']
[u'wallabi', u'profession', u'honour']
[u'kill', u'istanbul', u'explos']
[u'unit', u'liverpool', u'face', u'eastern', u'europ', u'trip']
[u'unlicens', u'driver', u'plead', u'guilti', u'drive']
[u'clear']
[u'militari', u'commiss', u'criticis']
[u'resum', u'issu', u'year', u'treasuri', u'bond']
[u'tortur', u'detaine', u'secret', u'locat', u'amnesti']
[u'vail', u'open', u'highway', u'revamp']
[u'vaughan', u'readi', u'australia']
[u'polic', u'monitor', u'terror', u'suspect']
[u'prison', u'deni', u'assault', u'disabl', u'woman']
[u'weak', u'sale', u'push', u'alumina', u'profit']
[u'contribut', u'bush', u'servic', u'optus']
[u'white', u'tweak', u'bok', u'squad', u'black', u'clash']
[u'wine', u'aim', u'boost', u'cellar', u'door', u'visit']
[u'woman', u'awak', u'knife', u'wield', u'thief']
[u'woman', u'die', u'pacif', u'highway', u'crash']
[u'zidan', u'shock', u'return', u'french']
[u'health', u'defend', u'psychiatr', u'unit', u'revamp']
[u'actu', u'prais', u'labor', u'stanc', u'chang']
[u'adelaid', u'servic', u'tribut', u'gillett']
[u'freedom', u'speech', u'dead', u'buri']
[u'amphetamin', u'fuel', u'violenc', u'hospit']
[u'anti', u'nuclear', u'group', u'warn', u'protest', u'wake']
[u'arnhem', u'land', u'tune', u'garma', u'festiv']
[u'asbesto', u'dust', u'high', u'school', u'scienc', u'block']
[u'aust', u'kill', u'slope']
[u'australia', u'lunch']
[u'bailey', u'dragon', u'year']
[u'batchelor', u'consid', u'causeway', u'revamp']
[u'beef', u'quota', u'chang', u'breath', u'life', u'mudge']
[u'bekel', u'ditch', u'world', u'doubl']
[u'bishop', u'odd', u'vanston', u'indigen', u'comment']
[u'blair', u'outlin', u'anti', u'terror', u'measur']
[u'bligh', u'unabash', u'asbesto', u'remov']
[u'book', u'outlin', u'indigen', u'group', u'challeng']
[u'breast', u'cancer', u'treatment', u'switch', u'boost', u'chanc']
[u'build', u'societi', u'post', u'record', u'profit']
[u'bushfir', u'victim', u'seek', u'rapid', u'open', u'inquest']
[u'shoot', u'bloodthirsti', u'jewish', u'terror']
[u'fairer', u'council', u'rat', u'scheme']
[u'public', u'input', u'harbour', u'redevelop']
[u'cat', u'saint', u'clash', u'tip', u'tough']
[u'centr', u'help', u'dementia', u'patient']
[u'channel', u'produc', u'charg', u'knife', u'flight']
[u'chappel', u'insist', u'india', u'best', u'come']
[u'chase', u'end', u'polic', u'roll']
[u'chelsea', u'statement', u'intent']
[u'china', u'charg', u'journalist']
[u'cleric', u'comment', u'concern', u'beazley']
[u'compens', u'settlement', u'close', u'anglican', u'abus']
[u'consult', u'look', u'govt', u'respons', u'island']
[u'cooloola', u'council', u'probe', u'sign', u'claim']
[u'coron', u'close', u'fatal', u'hous', u'case']
[u'councillor', u'oppos', u'mall', u'traffic']
[u'council', u'tough', u'citi', u'drink']
[u'court', u'clear', u'drink', u'drive', u'case']
[u'court', u'declar', u'miss', u'pair', u'dead']
[u'court', u'dismiss', u'attempt', u'disqualifi', u'bushfir']
[u'court', u'sentenc', u'teen', u'jacker']
[u'cowboy', u'coach', u'look', u'dragon', u'clash', u'crowd', u'pleaser']
[u'allow', u'challeng', u'asbesto', u'case', u'rule']
[u'darwin', u'festiv', u'administr', u'quit']
[u'depart', u'avoid', u'fair', u'wage', u'agreement', u'union']
[u'detaine', u'question', u'food', u'protest']
[u'discoveri', u'crew', u'readi', u'trip', u'home']
[u'domin', u'dragon', u'overpow', u'cowboy']
[u'await', u'korp', u'autopsi', u'result']
[u'dredg', u'trial', u'ahead']
[u'driver', u'warn', u'tricki', u'condit']
[u'educ', u'dept', u'probe', u'schoolgirl', u'overnight', u'lock']
[u'year', u'old', u'drug']
[u'england', u'prayer', u'half', u'answer']
[u'essien', u'threaten', u'lyon', u'strike', u'report']
[u'explos', u'hit', u'scienc']
[u'farmer', u'help', u'rescu', u'driver', u'burn', u'wreck']
[u'farmer', u'buoy', u'eas', u'drought', u'condit']
[u'farmer', u'tell', u'industri', u'futur', u'hand']
[u'farmer', u'welcom', u'mine', u'leas', u'decis']
[u'fear', u'rout', u'tender', u'hamper', u'tourism']
[u'fear', u'grow', u'suppli', u'russia', u'mini', u'crew']
[u'feder', u'govt', u'urg', u'boost', u'region', u'rental']
[u'fisheri', u'staff', u'illeg', u'prawn', u'fisher']
[u'kill', u'turkey', u'bomb']
[u'fonterra', u'prepar', u'bonlac', u'takeov']
[u'footbal', u'leagu', u'tackl', u'drink', u'problem']
[u'forecast', u'say', u'nino', u'unlik']
[u'forestri', u'offer', u'voluntari', u'redund']
[u'armidal', u'hors', u'trainer', u'die', u'rail']
[u'polic', u'hurt', u'clash', u'belfast']
[u'forum', u'discuss', u'treat', u'sewag', u'fertilis']
[u'charg', u'polic', u'shoot']
[u'freedom', u'speech', u'dead', u'buri']
[u'fund', u'address', u'remot', u'child', u'nutrit']
[u'gallop', u'say', u'parol', u'board', u'issu', u'need', u'attent']
[u'gang', u'rapist', u'face', u'retrial']
[u'gillett', u'husband', u'struggl', u'forgiv', u'driver']
[u'gladston', u'consid', u'zinc', u'project']
[u'gold', u'coast', u'shark', u'net', u'review']
[u'good', u'snow', u'creat', u'macedon', u'excit']
[u'govt', u'add', u'fund', u'beat', u'cane', u'toad']
[u'govt', u'announc', u'gippsland', u'extens']
[u'govt', u'dept', u'wrap', u'casino', u'tiger', u'probe']
[u'govt', u'review', u'terror', u'law']
[u'great', u'britain', u'long', u'link', u'south']
[u'green', u'group', u'see', u'threat', u'biodivers', u'bank']
[u'group', u'upset', u'charg', u'lay', u'river', u'open']
[u'gryll', u'back', u'telstra', u'sale', u'condit']
[u'hackett', u'look', u'forward', u'break', u'montreal']
[u'hall', u'creek', u'join', u'youth', u'festiv']
[u'health', u'confer', u'hear', u'benefit', u'earli']
[u'heavi', u'cyclon', u'activ', u'predict', u'north']
[u'highway', u'audit', u'highlight', u'good']
[u'homosexu', u'bangladeshi', u'fear', u'persecut']
[u'husband', u'plead', u'guilti', u'wife', u'slay']
[u'illawarra', u'host', u'event']
[u'investig', u'focus', u'plan', u'brake', u'crash']
[u'iraqi', u'constitut', u'meet', u'postpon']
[u'give', u'develop', u'nation', u'help', u'hand']
[u'chang', u'worri', u'local', u'union']
[u'islam', u'group', u'blast', u'british']
[u'islam', u'leader', u'comment', u'scrutini']
[u'israel', u'plan', u'hous', u'west', u'bank']
[u'jackson', u'juror', u'spill', u'bean', u'trial', u'wrangl']
[u'japanes', u'exchang', u'student', u'head', u'break', u'hill']
[u'kelli', u'turn', u'wellington', u'jail']
[u'kojonup', u'council', u'beat', u'financ']
[u'korean', u'hiroshima', u'victim', u'rememb']
[u'korp', u'lawyer', u'seek', u'clarif', u'charg']
[u'land', u'council', u'welcom', u'uranium', u'decis']
[u'langer', u'gilli', u'australia']
[u'langer', u'vigil']
[u'late', u'ralli', u'push', u'market', u'higher']
[u'lawyer', u'predict', u'nation', u'cadet']
[u'lead', u'busi', u'figur', u'die']
[u'lollypop', u'peopl', u'extens']
[u'london', u'bomb', u'everyday', u'item']
[u'london', u'bomb', u'suspect', u'appear', u'court']
[u'mackay', u'driver', u'jail', u'dead', u'crash']
[u'charg', u'mother', u'murder']
[u'jail', u'molest', u'sleep', u'woman', u'plane']
[u'jail', u'launceston', u'rape']
[u'plead', u'guilti', u'sydney', u'woman', u'murder']
[u'maralinga', u'survivor', u'speak', u'uranium', u'mine']
[u'maria', u'korp', u'die']
[u'marshal', u'holler', u'local', u'knowledg', u'help']
[u'mayor', u'urg', u'public', u'vandal']
[u'play', u'ball', u'final', u'negoti']
[u'mcgrath', u'aim', u'fourth', u'test', u'return', u'freak']
[u'memori', u'servic', u'recognis', u'cyclist', u'determin']
[u'militari', u'coup', u'hindranc', u'woodsid', u'african']
[u'militari', u'prepar', u'futur', u'iraq', u'deploy']
[u'minist', u'lament', u'inabl', u'overturn']
[u'minist', u'open', u'landcar', u'forum']
[u'crop', u'late', u'plant']
[u'multivitamin', u'supplement', u'fail', u'prevent']
[u'muslim', u'cleric', u'follow', u'risk']
[u'nasa', u'clear', u'discoveri', u'land']
[u'nation', u'consid', u'moor', u'offic']
[u'nation', u'stir', u'forest', u'privatis', u'claim']
[u'counter', u'terror', u'measur', u'consid']
[u'date', u'cross', u'citi', u'tunnel', u'open']
[u'deal', u'benefit', u'carer']
[u'newmont', u'pollut', u'trial', u'begin', u'indonesia']
[u'nineteen', u'african', u'migrant', u'drown', u'morocco']
[u'preview', u'round']
[u'govern', u'unveil', u'plan', u'cope']
[u'govt', u'announc', u'sydney', u'evacu', u'plan']
[u'govt', u'royalti']
[u'move', u'closer', u'bush', u'road', u'fund']
[u'correct', u'say', u'union', u'bulli', u'offic']
[u'onlin', u'applic', u'help', u'albani', u'gap']
[u'parrot', u'zone', u'stop', u'barmah', u'log']
[u'peel', u'valley', u'irrig', u'alloc']
[u'phoenix', u'snap', u'swift', u'streak']
[u'plane', u'make', u'emerg', u'land', u'beach']
[u'plan', u'icon', u'desert', u'knowledg']
[u'call', u'special', u'terror', u'summit']
[u'conven', u'terror', u'summit']
[u'polic', u'arrest', u'fail', u'london', u'attack']
[u'polic', u'charg', u'sister', u'london', u'bomb', u'probe']
[u'polic', u'didnt', u'mean', u'deceiv', u'mulrunji', u'partner']
[u'policeman', u'seek', u'liber', u'preselect', u'ripon']
[u'polic', u'probe', u'fatal', u'crash']
[u'polic', u'recov', u'steal', u'camera', u'gear']
[u'polic', u'warn', u'calder', u'crackdown']
[u'potato', u'grower', u'disappoint', u'mccain', u'turn']
[u'prehypertens', u'tripl', u'heart', u'attack', u'risk', u'studi']
[u'public', u'leisur', u'centr', u'pool']
[u'public', u'wait', u'recycl', u'bin']
[u'cotton', u'press', u'ahead', u'namoi', u'deal']
[u'stand', u'uranium', u'mine', u'opposit']
[u'region', u'airlin', u'lobbi', u'telco', u'servic']
[u'reliev', u'flintoff', u'rue', u'run', u'away']
[u'rescuer', u'free', u'boy', u'drain']
[u'rescuer', u'free', u'trap', u'whale']
[u'resid', u'fear', u'hotel', u'extend', u'trade', u'hour', u'plan']
[u'resid', u'oppos', u'woodsid', u'process', u'plant']
[u'resort', u'heart', u'improv', u'snow', u'condit']
[u'rider', u'trek', u'help', u'break', u'child', u'poverti', u'cycl']
[u'river', u'flood', u'level', u'eas']
[u'rockhampton', u'hospit', u'wait', u'worri']
[u'club', u'get', u'repriev']
[u'rspca', u'outrag', u'latest', u'puppi', u'dump']
[u'rural', u'apprentic', u'plan', u'help', u'address', u'work', u'shortag']
[u'russian', u'mini', u'stick', u'seab']
[u'saint', u'extend', u'cat', u'out']
[u'sale', u'save', u'caravan', u'park']
[u'head', u'resign']
[u'selga', u'look', u'transport', u'plan', u'detail']
[u'senat', u'brush', u'expuls', u'threat']
[u'servic', u'rememb', u'cowra', u'breakout', u'victim']
[u'sever', u'burn', u'girl', u'critic']
[u'shear', u'school', u'popular', u'rural', u'worker']
[u'sleep', u'judg', u'rule', u'unfit', u'bench']
[u'plan', u'evacu', u'sydney', u'terrorist', u'strike']
[u'campbel', u'miss', u'premiership', u'open']
[u'south', u'east', u'attract', u'includ', u'guid']
[u'speargun', u'killer', u'jail', u'year']
[u'state', u'request', u'guarante']
[u'state', u'challeng', u'law']
[u'storm', u'recoveri', u'fund', u'help', u'rebuild', u'effort']
[u'student', u'strike', u'compulsori', u'union', u'plan']
[u'studi', u'tran', u'continent', u'rail', u'line']
[u'sudan', u'riot', u'death', u'toll', u'hit']
[u'surgeon', u'describ', u'patel', u'techniqu', u'uniqu']
[u'workplac', u'relat', u'staff', u'strike']
[u'telecom', u'lift', u'profit']
[u'telstra', u'distanc']
[u'thomson', u'river', u'flow', u'boost']
[u'thousand', u'visit', u'machineri', u'field', u'day']
[u'tourism', u'chief', u'step']
[u'transport', u'firm', u'creditor', u'meet']
[u'trio', u'charg', u'sydney', u'brawl']
[u'union', u'fear', u'indigen', u'institut']
[u'unregist', u'surgeon', u'danger', u'patient']
[u'unsettl', u'jena', u'report', u'quit', u'newcastl']
[u'uranium', u'creat', u'confus']
[u'firm', u'buy', u'adelaid', u'game', u'maker']
[u'navi', u'join', u'russia', u'submarin', u'rescu']
[u'plan', u'mass', u'guantanamo', u'prison', u'transfer']
[u'voluntari', u'vote', u'nation', u'agenda']
[u'wast', u'dump', u'oppon', u'seek', u'ballarat', u'support']
[u'watkin', u'deni', u'cabinet', u'resign', u'claim']
[u'welfar', u'propos', u'discuss']
[u'wenger', u'wont', u'imit', u'chelsea', u'cash', u'splash']
[u'whale', u'calf', u'stick', u'rope']
[u'whale', u'drawcard', u'west', u'coast', u'tourist']
[u'white', u'face', u'toughest', u'examin']
[u'windsor', u'attack', u'telstra', u'rural', u'plan']
[u'woman', u'robberi', u'sentenc', u'suspend']
[u'worker', u'shortag', u'put', u'squeez', u'citrus', u'industri']
[u'workingman', u'club', u'record', u'loss']
[u'yackandandah', u'die', u'road', u'crash']
[u'yahoo', u'launch', u'audio', u'search', u'servic']
[u'million', u'evacu', u'typhoon', u'hit', u'china']
[u'accid', u'clean', u'close', u'pacif', u'highway']
[u'base', u'evacu', u'plan', u'sydney', u'model']
[u'program', u'focus', u'darwin', u'rioli']
[u'franc', u'plane', u'land']
[u'alic', u'spring', u'resid', u'rememb', u'hiroshima', u'explos']
[u'australian', u'mauritania', u'account', u'dfat']
[u'anchor', u'hinder', u'rescu', u'russian']
[u'annan', u'urg', u'action', u'nuclear', u'prolifer']
[u'answer', u'seek', u'polic', u'complaint', u'blunder']
[u'anti', u'insurg', u'oper', u'target', u'western', u'iraq']
[u'ashley', u'gile']
[u'australia', u'trail', u'run']
[u'bashir', u'final', u'appeal', u'bali', u'bomb', u'reject']
[u'beat', u'classic', u'road', u'screen']
[u'beatti', u'urg', u'target', u'counter', u'terror', u'measur']
[u'bond', u'licens', u'bowl']
[u'britain', u'team', u'join', u'russian', u'rescu']
[u'bushfir', u'coron', u'challeng', u'appropri', u'stanhop']
[u'camp', u'cull', u'postpon']
[u'captain', u'concern', u'detain', u'crew', u'welfar']
[u'caus', u'garang', u'crash', u'death', u'unclear']
[u'ceremoni', u'mark', u'hiroshima', u'horror']
[u'civic', u'rebuild', u'current', u'agenc', u'properti']
[u'civoniceva', u'miss', u'man', u'clash']
[u'cocain', u'cours', u'italian', u'waterway']
[u'craig', u'smith', u'interview']
[u'crew', u'detent', u'concern', u'maritim', u'union']
[u'crow', u'count', u'home', u'final']
[u'crow', u'prolong', u'demon', u'woe']
[u'davenport', u'serena', u'withdraw', u'open']
[u'detent', u'centr', u'detail', u'firm']
[u'discoveri', u'crew', u'prepar', u'trip', u'home']
[u'discoveri', u'undock']
[u'discoveri', u'undock', u'space', u'station']
[u'eel', u'romp', u'home', u'warrior']
[u'england', u'take', u'inning', u'lead']
[u'english', u'offici', u'swear', u'clamp', u'refere']
[u'explod', u'cylind', u'kill']
[u'expo', u'showcas', u'region', u'work', u'opportun']
[u'famili', u'hear', u'aussi', u'ski', u'death']
[u'figo', u'complet', u'inter']
[u'finnish', u'discus', u'coach', u'catch', u'drug']
[u'flintoff', u'counterattack', u'amid', u'carnag']
[u'forestri', u'chief', u'deni', u'exagger', u'lobbi', u'threat']
[u'gatlin', u'champion', u'stumbl']
[u'prais', u'late', u'king', u'saudi', u'arabia', u'visit']
[u'gilchrist', u'gillespi', u'australia']
[u'govt', u'dismiss', u'move', u'undermin', u'chang']
[u'grant', u'lead', u'demolit', u'eagl']
[u'gronholm', u'edg', u'loeb', u'lead', u'ralli', u'finland']
[u'guantanamo', u'repatri', u'plan', u'wont', u'includ', u'hick']
[u'hall', u'help', u'swan', u'histor']
[u'hiroshima', u'honour', u'bomb', u'victim']
[u'hiroshima', u'ralli', u'seek', u'iraq']
[u'hiroshima', u'rememb']
[u'iemma', u'stand', u'decis', u'releas', u'evacu', u'plan']
[u'inquest', u'seek', u'mental', u'health', u'patient', u'death']
[u'rate', u'concern', u'depress', u'market']
[u'iran', u'presid', u'pledg', u'defend', u'islam']
[u'japanes', u'charg', u'continu', u'diego']
[u'judg', u'rule', u'vinci', u'code', u'reproduct']
[u'justin', u'langer', u'interview']
[u'knight', u'dent', u'bulldog', u'final', u'hop']
[u'labor', u'urg', u'cooper', u'counter', u'terror']
[u'strike', u'lunch']
[u'lennon', u'move', u'undermin', u'chang']
[u'spark', u'power', u'action']
[u'mini', u'emerg', u'continu']
[u'worldcom', u'execut', u'jail']
[u'mosqu', u'warn', u'polic', u'bomber']
[u'nasa', u'readi', u'launch', u'despit', u'foam', u'problem']
[u'nathan', u'fien', u'john', u'morri', u'interview']
[u'advic', u'hardlin', u'group', u'ruddock', u'say']
[u'regret']
[u'opposit', u'call', u'central', u'coast', u'water']
[u'retain', u'uranium', u'mine', u'royalti']
[u'pest', u'blame', u'hermit', u'crab', u'boom']
[u'ogilvi', u'touch', u'colorado']
[u'ogilvi', u'lead', u'intern', u'field']
[u'kill', u'typhoon', u'lash', u'china']
[u'outcri', u'promot']
[u'pavlich', u'keep', u'docker', u'final', u'hop', u'aliv']
[u'pavlich', u'star', u'docker', u'stay', u'aliv']
[u'petrol', u'changeov', u'link', u'crime', u'rise']
[u'polic', u'inform', u'miss', u'biki']
[u'polic', u'deni', u'complaint', u'blunder', u'warrant', u'inquiri']
[u'polic', u'investig', u'fatal', u'crash']
[u'polic', u'privaci', u'breach', u'regrett', u'minist', u'say']
[u'polit', u'meet', u'literatur', u'byron', u'festiv']
[u'premiership', u'transfer', u'million', u'pound']
[u'privaci', u'breach', u'blame', u'human', u'error']
[u'protest', u'warn', u'clear', u'dredg']
[u'racq', u'seek', u'updat', u'withdraw', u'radar']
[u'ratbag', u'offer', u'good', u'refus']
[u'rescuer', u'expect', u'whale', u'recoveri']
[u'roddick', u'paradorn', u'washington', u'semi', u'final']
[u'ross', u'johnson', u'quarter']
[u'russia', u'attempt', u'drag', u'safeti']
[u'russia', u'find', u'bird', u'case']
[u'santo', u'hold', u'high', u'hop', u'kyrgyzstan', u'explor']
[u'search', u'call', u'injur', u'whale']
[u'secret', u'tap', u'reveal', u'monro', u'muse']
[u'secur', u'tight', u'garang', u'funer']
[u'seven', u'shark', u'torch', u'storm']
[u'sheikh', u'invit', u'muslim', u'confer', u'question']
[u'strip', u'club', u'sign', u'raci', u'neighbour']
[u'studi', u'connect', u'dream', u'wake', u'life']
[u'sudan', u'bid', u'rebel', u'leader', u'farewel']
[u'tasmanian', u'servic', u'mark', u'hiroshima', u'bomb']
[u'tasmanian', u'lead', u'drug', u'bust']
[u'scrap', u'benefit', u'busi', u'iemma', u'say']
[u'technolog', u'centr', u'improv', u'hardwood']
[u'terror', u'law', u'preserv', u'aust', u'valu', u'bishop']
[u'thousand', u'isra', u'farewel', u'shoot', u'victim']
[u'thousand', u'rememb', u'anniversari', u'hiroshima']
[u'charg', u'bomb', u'probe']
[u'thunderbird', u'strong', u'darter']
[u'charg', u'sydney', u'drug', u'raid']
[u'terror', u'power', u'generat', u'human', u'right', u'fear']
[u'underwat', u'bomb', u'test', u'greenpeac']
[u'team', u'head', u'iran', u'nuclear', u'monitor']
[u'back', u'solut', u'nuclear', u'disput']
[u'britain', u'join', u'russian', u'rescu', u'effort']
[u'lift', u'censorship', u'dead', u'soldier', u'return']
[u'warn', u'give', u'australia', u'hope']
[u'warn', u'england', u'slide']
[u'seek', u'assur', u'underwat', u'bomb', u'test']
[u'stargaz', u'chanc', u'shuttl']
[u'webster', u'foster', u'shine', u'gleneagl']
[u'welfar', u'author', u'focus', u'famili', u'unit']
[u'whale', u'entangl', u'coast']
[u'wollongong', u'road', u'crack', u'riverb']
[u'woman', u'bodi', u'backyard']
[u'reward', u'offer', u'murder', u'probe']
[u'nigerian', u'vigilant', u'custodi']
[u'dead', u'mexico', u'firework', u'explos']
[u'afghan', u'polic', u'seiz', u'tonn', u'explos']
[u'alleg', u'bomber', u'charg', u'london', u'attack']
[u'call', u'elect', u'law', u'overhaul']
[u'anti', u'protest', u'march', u'bush', u'ranch']
[u'asbesto', u'task', u'forc', u'hand', u'report']
[u'australia', u'deep', u'troubl', u'seven']
[u'beazley', u'back', u'fair', u'dinkum', u'food', u'campaign']
[u'beckman', u'grab', u'lead', u'intern']
[u'bioterror', u'diseas', u'track', u'expand']
[u'bird', u'vaccin', u'test', u'promis']
[u'birney', u'blast', u'union', u'term']
[u'black', u'cap', u'maintain', u'field', u'focus']
[u'bok', u'beat', u'black', u'nation', u'thriller']
[u'bomb', u'kill', u'iraq']
[u'british', u'foreign', u'secretari', u'robin', u'cook', u'die']
[u'british', u'robot', u'resum', u'work', u'free', u'russian']
[u'british', u'soldier', u'injur', u'iraq', u'blast']
[u'bronco', u'confid', u'break', u'brookval', u'jinx']
[u'celtic', u'kick', u'start', u'season', u'easi', u'victori']
[u'clark', u'martyn', u'australia', u'past']
[u'confus', u'surround', u'stricken', u'sub', u'status']
[u'coonan', u'see', u'learn', u'curv', u'telstra', u'boss']
[u'cuban', u'singer', u'ibrahim', u'ferrer', u'die']
[u'davi', u'claim', u'benelux', u'stage']
[u'death', u'donat', u'anim', u'worri', u'keeper']
[u'dept', u'defend', u'ruddock', u'comment', u'islam', u'group']
[u'develop', u'plan', u'threaten', u'rid', u'school']
[u'dibaba', u'cut', u'rival', u'olymp', u'champion', u'feel']
[u'discoveri', u'crew', u'complet', u'final', u'check']
[u'discoveri', u'land', u'schedul']
[u'dredg', u'protest', u'call']
[u'drought', u'caus', u'macadamia', u'price', u'rise']
[u'dyer', u'sign', u'newcastl']
[u'earthquak', u'toppl', u'thousand', u'chines', u'home']
[u'england', u'snatch', u'edgbaston']
[u'excel', u'award', u'tourist', u'attract']
[u'expert', u'gather', u'review', u'blood', u'disord', u'treatment']
[u'father', u'call', u'hickss', u'return']
[u'flexibl', u'stem', u'cell', u'placenta']
[u'flintoff', u'put', u'australia', u'rope']
[u'flintoff', u'revel', u'round', u'super']
[u'book', u'slam', u'hawk']
[u'foreign', u'secretari', u'robin', u'cook', u'die']
[u'gene', u'leukaemia', u'treatment']
[u'govt', u'rule', u'agenc', u'nurs', u'hobart', u'hospit']
[u'govt', u'stand', u'firm', u'telstra', u'sale', u'talk']
[u'govt', u'urg', u'recognis', u'hick', u'trial', u'concern']
[u'green', u'plan', u'senat', u'presid']
[u'green', u'plan', u'food', u'label']
[u'green', u'withhold', u'prefer', u'elect']
[u'gronholm', u'extend', u'lead', u'loeb', u'finland']
[u'hackett', u'plan', u'program', u'short', u'cours', u'meet']
[u'hackett', u'schipper', u'continu', u'world', u'form']
[u'heat', u'jone', u'ahead', u'black', u'showdown']
[u'hiddink', u'wont', u'time', u'turn', u'socceroo', u'round']
[u'howard', u'plan', u'meet', u'muslim', u'cleric']
[u'howard', u'spell', u'uranium', u'polici']
[u'howard', u'meet', u'muslim', u'leader']
[u'hundr', u'attend', u'protest']
[u'india', u'pakistan', u'nuclear', u'deal']
[u'internet', u'time', u'high']
[u'interview', u'andrew', u'flintoff', u'shane', u'warn']
[u'investig', u'suspect', u'arson', u'shop', u'raze']
[u'iran', u'reject', u'nuclear', u'compromis']
[u'iraq', u'hammer', u'bush', u'poll', u'rat']
[u'chang', u'concern', u'terror', u'beazley']
[u'israel', u'approv', u'batch', u'evacu']
[u'israel', u'consid', u'lock', u'pullout', u'oppon']
[u'maxwel', u'wrap']
[u'john', u'lang', u'ricki', u'stuart', u'interview']
[u'jone', u'fin', u'hayden', u'send']
[u'kestrel', u'demolish', u'firebird']
[u'kyli', u'minogu', u'plight', u'boost', u'cancer', u'screen']
[u'labor', u'seek', u'fair', u'trial', u'hick']
[u'lion', u'smash', u'hapless', u'hawk', u'gabba']
[u'local', u'council', u'confer', u'mull', u'merger']
[u'london', u'attempt', u'bomb', u'suspect', u'charg']
[u'hospitalis', u'bike', u'accid']
[u'mauritanian', u'coup', u'leader', u'wont', u'elect']
[u'melbourn', u'factori', u'blaze', u'prompt', u'health', u'warn']
[u'troubl', u'hear', u'women', u'research']
[u'michael', u'vaughan', u'andrew', u'flintoff', u'interview']
[u'muslim', u'leader', u'back', u'howard', u'anti', u'terror', u'meet']
[u'abduct', u'alert', u'safeguard', u'children']
[u'korean', u'nuclear', u'talk', u'recess']
[u'ralli', u'challeng', u'agenda']
[u'ormsbi', u'fire', u'gleneagl', u'content']
[u'pakistan', u'close', u'refuge', u'camp']
[u'panther', u'surviv', u'rooster', u'charg']
[u'vendor', u'sack', u'opposit']
[u'perth', u'build', u'industri', u'feel', u'coerciv', u'power']
[u'photograph', u'stake', u'britney', u'spear', u'shoot']
[u'polic', u'investig', u'suspect', u'murder']
[u'polic', u'warn', u'speed', u'wont', u'toler']
[u'port', u'final', u'content']
[u'quick', u'tell', u'leav', u'labor']
[u'rare', u'tree', u'plant', u'brisban']
[u'suggest', u'halt', u'fight']
[u'rescuer', u'race', u'save', u'russian', u'crew']
[u'rescuer', u'russian', u'free']
[u'roar', u'hold', u'sydney', u'scoreless', u'miss', u'semi', u'spot']
[u'roddick', u'dump', u'paradorn', u'reach', u'washington', u'final']
[u'ross', u'secur', u'semi', u'final', u'spot']
[u'russian', u'sailor', u'rescu']
[u'russian', u'resurfac']
[u'look', u'british', u'doctor', u'eas', u'shortag']
[u'trial', u'home', u'treatment', u'respons', u'team']
[u'saudi', u'pass', u'inform', u'london', u'attack']
[u'save', u'russian', u'sailor', u'take', u'hospit']
[u'scientist', u'work', u'har', u'oliv', u'tree', u'anti', u'oxid']
[u'scorch', u'heat', u'fuel', u'european', u'fire']
[u'sculli', u'say', u'polic', u'riot', u'gear', u'problem', u'solv']
[u'eagl', u'extend', u'bronco', u'brookval', u'hoodoo']
[u'secur', u'govt', u'number', u'prioriti']
[u'sicili', u'crash', u'land', u'kill']
[u'springbok', u'lock', u'matfield', u'cite']
[u'steve', u'folk', u'michael', u'hagan', u'interview']
[u'steve', u'menzi', u'michael', u'monaghan', u'wayn', u'bennett']
[u'stuart', u'raper', u'craig', u'bellami', u'interview']
[u'submarin', u'satisfactori', u'rescu']
[u'sydney', u'melbourn', u'host', u'semi']
[u'teen', u'injur', u'boat', u'accid']
[u'telstra', u'sale', u'rank', u'terror', u'issu', u'howard']
[u'tent', u'embassi', u'legitim', u'protest', u'site', u'founder']
[u'termin', u'protest', u'grin', u'spin']
[u'thompson', u'roo', u'narrow']
[u'thousand', u'attend', u'protest']
[u'tiger', u'roll', u'raider']
[u'sheen', u'matthew', u'elliott', u'interview']
[u'tonga', u'order', u'public', u'servant', u'work']
[u'appeal', u'urgent', u'niger']
[u'union', u'struggl', u'fee', u'strand', u'crew']
[u'warn', u'end', u'flintoff', u'defianc']
[u'warn', u'go', u'rearguard', u'continu']
[u'weari', u'peng', u'end', u'pierc', u'sugiyama', u'meet']
[u'wender', u'work', u'earn', u'leopard', u'honour']
[u'windi', u'stun', u'lanka', u'hop', u'aliv']
[u'wolv', u'ukrain', u'attack', u'dozen']
[u'worker', u'compo', u'stoush', u'disrupt', u'labor', u'confer']
[u'york', u'struggl', u'adapt', u'littbarski', u'admit']
[u'zambia', u'extradit', u'terror', u'suspect', u'britain']
[u'zimbabw', u'toss', u'field']
[u'abalon', u'fish', u'fine', u'wont', u'deter', u'atsic']
[u'await', u'court', u'decis', u'gungahlin', u'project']
[u'govt', u'scrap', u'assembl', u'size']
[u'adamson', u'career', u'prematur']
[u'tribun', u'busi', u'week']
[u'agenc', u'join', u'forc', u'campaign', u'blackberri']
[u'condit', u'compani', u'admit', u'price', u'fix']
[u'franc', u'plane', u'land', u'late']
[u'call', u'review', u'natur', u'resourc', u'group']
[u'black', u'replac', u'scrum', u'half']
[u'argo', u'profit', u'surg']
[u'armidal', u'punter', u'tribut', u'trainer']
[u'art', u'student', u'protest', u'bathurst']
[u'asparagus', u'contain', u'earn', u'award', u'cliff', u'firm']
[u'aztec', u'reveal', u'koolan', u'project']
[u'babi', u'whale', u'bodi', u'tow']
[u'weather', u'delay', u'shuttl', u'land']
[u'beatti', u'appeal', u'environment', u'vote']
[u'beatti', u'order', u'patel', u'patient']
[u'bendigo', u'bank', u'offic', u'develop', u'contractor']
[u'bendigo', u'rental', u'market', u'remain', u'steadi']
[u'board', u'chief', u'highlight', u'meninde', u'pooncari']
[u'board', u'play', u'secur', u'breach']
[u'brindal', u'focus', u'famili', u'affair']
[u'break', u'hill', u'confer']
[u'break', u'thumb', u'sherwin']
[u'implement', u'petrol', u'sniff']
[u'go', u'public', u'hous']
[u'cane', u'toad', u'prompt', u'better', u'croc', u'autopsi']
[u'cat', u'ponder', u'punish', u'drunken', u'pair']
[u'chamber', u'back', u'govt', u'skill', u'shortag', u'scheme']
[u'chamber', u'beat', u'retail', u'market']
[u'chang', u'afoot', u'hunter', u'servic']
[u'charg', u'lay', u'wodonga', u'theft']
[u'chile', u'consid', u'limit', u'easter', u'immigr']
[u'christian', u'kick', u'nation', u'campaign']
[u'cleric', u'warn', u'polic', u'london', u'suspect']
[u'clerk', u'warn', u'greater', u'senat', u'effici', u'unlik']
[u'club', u'race', u'bonus', u'track', u'improv']
[u'commission', u'deni', u'put', u'kid', u'risk']
[u'commission', u'receiv', u'brief', u'confidenti']
[u'communiti', u'group', u'help', u'cost']
[u'compani', u'director', u'jail', u'steal', u'stamp', u'duti']
[u'corser', u'extend', u'lead', u'superbik', u'stand']
[u'costello', u'find', u'vail', u'telstra', u'plan', u'reason']
[u'costello', u'prais', u'vail', u'telstra', u'fund', u'plan']
[u'council', u'rais', u'hous', u'afford', u'concern']
[u'court', u'unsympathet', u'repeat', u'abalon', u'poacher']
[u'cousin', u'confid', u'eagl', u'rebound']
[u'cruis', u'ship', u'expect', u'lift', u'bunburi', u'job']
[u'cyclist', u'die', u'truck', u'collis']
[u'databas', u'highlight', u'citi', u'countri', u'incom', u'divid']
[u'demolit', u'start', u'renov', u'public', u'hous', u'estat']
[u'discoveri', u'crew', u'readi', u'land']
[u'doctor', u'group', u'back', u'local', u'hospit', u'board']
[u'engin', u'firm', u'lose', u'worker']
[u'england', u'win', u'epic', u'second', u'test']
[u'enter', u'bayu', u'undan', u'pipelin']
[u'forest', u'industri', u'assn', u'condemn', u'green', u'campaign']
[u'lynch', u'iraq', u'symbol']
[u'parliamentari', u'clerk', u'face', u'corrupt']
[u'funer', u'industri', u'rep', u'statewid']
[u'coincid', u'meatwork', u'upgrad']
[u'geelong', u'fin', u'young', u'cat']
[u'genet', u'screen', u'help', u'prevent', u'heart', u'relat']
[u'giant', u'advanc', u'semi', u'final']
[u'goosen', u'captur', u'intern']
[u'govt', u'paper', u'canvass', u'indigen', u'educ']
[u'govt', u'ipswich', u'motorway', u'upgrad']
[u'govt', u'higher', u'water', u'price']
[u'gronholm', u'end', u'loeb', u'win', u'streak', u'finland']
[u'gulf', u'resid', u'warn', u'opposit', u'uranium', u'mine']
[u'hanson', u'elector', u'windfal', u'spark', u'concern']
[u'harri', u'potter', u'popular', u'guantanamo', u'detaine']
[u'health', u'servic', u'make', u'surgeri', u'pledg']
[u'hoteli', u'unconvinc', u'nightclub', u'licens', u'chang']
[u'howard', u'refus', u'iraq', u'deadlin']
[u'husband', u'killer', u'seek', u'pardon', u'refus', u'reason']
[u'iaea', u'inspector', u'arriv', u'iranian', u'nuclear', u'plant']
[u'iemma', u'seek', u'brief', u'clearanc']
[u'immigr', u'dept', u'deni', u'stymi', u'solon', u'inquiri']
[u'immigr', u'learn', u'palmer', u'committe']
[u'incontin', u'devic', u'undergo', u'trial']
[u'india', u'ride', u'yuvraj', u'centuri', u'enter', u'seri']
[u'inflat', u'forecast', u'push', u'market', u'record', u'close']
[u'injuri', u'worri', u'lion', u'player']
[u'iran', u'restart', u'uranium', u'convers', u'facil']
[u'iraqi', u'soldier', u'fear', u'leav', u'train', u'base']
[u'chang', u'mask', u'real', u'econom', u'issu', u'beazley']
[u'chang', u'includ', u'parent', u'right', u'rule']
[u'irrig', u'higher', u'water', u'price']
[u'islam', u'group', u'question', u'time', u'threat']
[u'japanes', u'charter', u'flight', u'boost', u'alic', u'tourism']
[u'japanes', u'tip', u'snap', u'elect']
[u'japanes', u'polit', u'leader', u'face', u'post']
[u'retail', u'trade', u'slip']
[u'kalgoorli', u'base', u'mine', u'forum', u'prove', u'popular']
[u'kimberley', u'resid', u'prepar', u'german', u'pilgrimag']
[u'kluft', u'retain', u'heptathlon', u'titl']
[u'koizumi', u'call', u'snap', u'japanes', u'elect']
[u'lake', u'entranc', u'cri', u'foul', u'snub']
[u'council', u'sign', u'environment', u'agreement']
[u'latham', u'doubt', u'black', u'clash']
[u'legal', u'proceed', u'cost', u'govern', u'time']
[u'lenton', u'smash', u'freestyl', u'short', u'cours']
[u'liber', u'dental', u'practic', u'scrutini']
[u'liber', u'parti', u'select', u'braddon', u'candid']
[u'liber', u'strong', u'field', u'ballarat', u'seat']
[u'listen', u'cosgrov', u'iraq', u'exit', u'beazley']
[u'lord', u'mayor', u'push', u'save', u'water', u'messag']
[u'loss', u'weaken', u'bear', u'minor', u'premiership', u'hop']
[u'die', u'highway', u'road', u'crash']
[u'match', u'review', u'panel', u'seven', u'charg']
[u'mayor', u'push', u'deniliquin', u'benefit', u'expo']
[u'mccain', u'work', u'farmer', u'potato', u'cost']
[u'mccullum', u'vettori', u'spare', u'zealand', u'blush']
[u'meet', u'boost', u'selga', u'transport', u'confid']
[u'meet', u'discuss', u'hospit', u'site']
[u'meet', u'debat', u'alburi', u'hospit', u'manag']
[u'militari', u'exercis', u'invad', u'north', u'coast']
[u'minist', u'sympathet', u'road', u'fund']
[u'mock', u'rescu', u'crew', u'test']
[u'peopl', u'urg', u'join', u'voluntari', u'fish', u'scheme']
[u'rainwat', u'tank', u'futur']
[u'talk', u'seek', u'scallop', u'trawler', u'woe']
[u'isra', u'gaza', u'pullout', u'poll']
[u'motorist', u'smaller', u'car', u'petrol', u'price', u'rise']
[u'call', u'action', u'fatigu', u'accid']
[u'baldi', u'agre', u'ongo', u'supervis']
[u'narromin', u'blaze', u'burn', u'day']
[u'netanyahu', u'resign']
[u'auction', u'centr', u'anger', u'woolgrow']
[u'banana', u'shire']
[u'roster', u'lure', u'staff']
[u'news', u'anchor', u'jen', u'die']
[u'senat', u'urg', u'oppos', u'student', u'union', u'law']
[u'work', u'govt', u'address', u'rural', u'skill']
[u'clue', u'mysteri', u'piano']
[u'nowra', u'gather', u'discuss', u'chang']
[u'judiciari', u'hand', u'charg']
[u'premiership', u'wide', u'open', u'bennett']
[u'revamp', u'polic', u'promot']
[u'govt', u'fight', u'uranium', u'mine']
[u'field', u'brawl', u'rais', u'curung', u'readmiss']
[u'offici', u'urg', u'fan', u'support', u'leagu']
[u'price', u'record', u'high']
[u'opposit', u'call', u'simpl', u'evacu', u'procedur']
[u'opposit', u'highlight', u'fall', u'japanes', u'tourist']
[u'opposit', u'parti', u'senat', u'relev']
[u'opposit', u'rehous', u'parliament', u'secur', u'upgrad']
[u'opposit', u'say', u'survey', u'highlight', u'standard']
[u'outback', u'pastor', u'countri', u'continu', u'market', u'boom']
[u'pakenham', u'bypass', u'work', u'start']
[u'parent', u'leav', u'condit']
[u'pedestrian', u'die', u'highway', u'mishap']
[u'pest', u'detect', u'program', u'save', u'forest', u'industri']
[u'pierc', u'thrash', u'sugiyama', u'diego', u'titl']
[u'plan', u'commiss', u'await', u'gunn', u'pulp', u'detail']
[u'polic', u'hope', u'post', u'mortem', u'clue', u'murder']
[u'polic', u'investig', u'ident', u'dead']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'reaffirm', u'winter', u'road', u'safeti', u'warn']
[u'polic', u'warn', u'fake', u'money']
[u'pont', u'confid', u'test']
[u'power', u'station', u'pollut', u'upgrad']
[u'privaci', u'commission', u'investig', u'polic', u'bungl']
[u'probe', u'launch', u'sawmil', u'blaze']
[u'properti', u'investor', u'warn', u'price', u'soft', u'land']
[u'public', u'input', u'griffith', u'health', u'plan']
[u'public', u'yamba', u'effluent']
[u'public', u'urg', u'taxi', u'review']
[u'public', u'urg', u'ignor', u'sack', u'claim']
[u'nation', u'weigh', u'telstra', u'trust', u'fund']
[u'question', u'rais', u'saleyard', u'sale', u'reject']
[u'ralli', u'highlight', u'opposit', u'chang']
[u'ralli', u'offer', u'support', u'timber', u'worker']
[u'see', u'inflat', u'risk', u'drop']
[u'signal', u'stabl', u'rat', u'continu']
[u'region', u'race', u'group', u'hold', u'meet']
[u'rescuer', u'scrambl', u'free', u'trap', u'chines', u'miner']
[u'research', u'aim', u'elimin', u'antibiot']
[u'road', u'death', u'worri', u'polic']
[u'russia', u'thank', u'submarin', u'rescuer']
[u'trial', u'treatment', u'program']
[u'savill', u'world', u'champ']
[u'scientist', u'address', u'exploit', u'world']
[u'secur', u'upgrad', u'forc', u'parliamentari', u'offic']
[u'shire', u'sell', u'alpin', u'asset']
[u'resort', u'welcom', u'overnight', u'snow']
[u'south', u'african', u'gold', u'miner', u'strike', u'disput']
[u'stagnant', u'fund', u'impact', u'patient', u'diabet', u'bodi']
[u'state', u'fund', u'improv', u'live', u'children']
[u'storm', u'photo', u'winner', u'decid']
[u'strike', u'worker', u'appeal', u'tongan', u'princess']
[u'student', u'protest', u'union', u'move']
[u'support', u'grow', u'push', u'wast', u'dump']
[u'survey', u'highlight', u'need', u'infrastructur', u'upgrad']
[u'tate', u'confid', u'ankl', u'injuri']
[u'tebbutt', u'contest', u'marrickvill', u'elect']
[u'teen', u'jail', u'sword', u'attack', u'gang', u'fight']
[u'teen', u'plead', u'guilti', u'case']
[u'ball', u'kasper', u'forget']
[u'thousand', u'flock', u'louth', u'picnic', u'race']
[u'threat', u'close', u'mission', u'saudia', u'arabia']
[u'remand', u'fail', u'london', u'bomb']
[u'timber', u'plantat', u'industri', u'expans', u'stall']
[u'tour', u'boat', u'oper', u'thank', u'whale', u'rescu', u'effort']
[u'train', u'express', u'pull', u'southern']
[u'transport', u'woe', u'scuttl', u'sculli', u'premiership', u'hop']
[u'travel', u'advic', u'saudi', u'arabia', u'updat']
[u'trucki', u'want', u'light', u'shed', u'road', u'safeti', u'issu']
[u'charg', u'attempt', u'london', u'bomb']
[u'charg', u'fail', u'london', u'attack']
[u'consid', u'treason', u'charg', u'radic']
[u'union', u'seek', u'berri', u'worker', u'assur']
[u'boss', u'hop', u'aust', u'timor', u'energi', u'deal']
[u'launch', u'livestock', u'electron', u'identif']
[u'vaughan', u'tell', u'england', u'maintain', u'momentum']
[u'vermeulen', u'battl', u'world', u'superbik']
[u'worri', u'fertilis', u'ban']
[u'vision', u'summit', u'air', u'local', u'issu']
[u'water', u'desalinis', u'plant', u'agenda']
[u'weather', u'delay', u'shuttl', u'return', u'hour']
[u'weed', u'tast', u'test', u'book', u'guid', u'produc']
[u'win', u'maverick', u'frankston', u'blue']
[u'wollongong', u'plan', u'expect', u'chang']
[u'wood', u'blast', u'put', u'pair', u'hospit']
[u'woodsid', u'spend', u'billion', u'plan']
[u'worker', u'die', u'coal', u'accid']
[u'work', u'right', u'rule', u'short', u'live']
[u'world', u'leader', u'join', u'environ', u'school']
[u'yarraman', u'beat', u'communiti', u'bank', u'plan']
[u'yarram', u'water', u'treatment']
[u'young', u'knight', u'keen', u'continu', u'win', u'way']
[u'taliban', u'soldier', u'ambush']
[u'abalon', u'poacher', u'owe', u'fin']
[u'agassi', u'cruis', u'second', u'round', u'roger']
[u'alcan', u'indigen', u'leader']
[u'aldermen', u'urg', u'tough', u'pollut']
[u'black', u'delay', u'name', u'team', u'wallabi', u'clash']
[u'anderson', u'unlik', u'elect']
[u'tour', u'rais', u'awar', u'child', u'abus']
[u'asian', u'relat', u'time', u'high', u'downer']
[u'asic', u'order', u'closur', u'invest', u'scheme']
[u'attack', u'leav', u'dead', u'iraq']
[u'aussi', u'look', u'cover', u'mcgrath']
[u'australia', u'uranium', u'talk', u'china']
[u'australian', u'die', u'thailand', u'drink', u'bing']
[u'ban', u'islam', u'group', u'backfir', u'academ']
[u'beazley', u'school', u'shut']
[u'bodi', u'mildura', u'backyard']
[u'bomb', u'survivor', u'hit', u'polit', u'rhetor']
[u'bosnian', u'serb', u'crime', u'suspect', u'arrest']
[u'brack', u'back', u'polic', u'watchdog', u'amid', u'bungl']
[u'brack', u'defend', u'respons', u'polic', u'file', u'bungl']
[u'break', u'hill', u'forum', u'canva', u'skill', u'shortag']
[u'buckley', u'confid', u'didak', u'play']
[u'busi', u'condit', u'slump', u'juli']
[u'busi', u'offer', u'work', u'safeti', u'assess']
[u'busi', u'group', u'seek', u'kickstart']
[u'entri', u'indian', u'ocean', u'row', u'race']
[u'canberra', u'bishop', u'voic', u'concern', u'brief']
[u'cannabi', u'polic', u'oper']
[u'crash', u'hous', u'roof']
[u'rammer', u'reginit', u'solo', u'polic', u'patrol', u'debat']
[u'census', u'measur', u'antarct', u'marin', u'life']
[u'volunt', u'hear', u'bushfir', u'report', u'recommend']
[u'chamber', u'see', u'benefit', u'chang']
[u'chang', u'speed', u'feder', u'drought']
[u'charg', u'file', u'refineri', u'worker', u'death']
[u'chef', u'jail', u'child', u'porn']
[u'citrus', u'grower', u'seek', u'compo']
[u'clan', u'back', u'wider', u'nativ', u'titl', u'decis']
[u'clark', u'call', u'injuri', u'plagu', u'test', u'squad']
[u'coalit', u'squabbl', u'univers', u'fund']
[u'coalit', u'warn', u'uniti', u'equal', u'success']
[u'cobar', u'shire', u'seek', u'replac']
[u'colleg', u'seek', u'merger', u'support']
[u'commission', u'deni', u'railway', u'tunnel', u'death', u'trap']
[u'commiss', u'seek', u'uniform', u'law', u'product', u'safeti']
[u'council', u'committe', u'discuss', u'queen', u'baton', u'detail']
[u'council', u'crack', u'showground', u'camper']
[u'council', u'declin', u'liabil', u'beach', u'home', u'storm']
[u'council', u'insur', u'compens']
[u'councillor', u'upset', u'delay', u'heritag', u'list']
[u'council', u'merger', u'issu', u'wont', u'away']
[u'council', u'decid', u'heritag', u'cottag', u'disput']
[u'court', u'hear', u'woman', u'rob', u'die']
[u'cure', u'dog', u'offer', u'hope', u'haemophiliac']
[u'darwin', u'fring', u'festiv', u'near']
[u'dept', u'reject', u'ralli', u'transport', u'cost', u'claim']
[u'develop', u'reject', u'footpath', u'upgrad']
[u'discoveri', u'clear', u'california', u'land']
[u'discoveri', u'prepar', u'second', u'land', u'attempt']
[u'discoveri', u'return', u'earth']
[u'earli', u'result', u'buoy']
[u'kill', u'berlin', u'apart', u'block']
[u'electr', u'firm', u'begin', u'power', u'pole']
[u'back', u'option', u'alumina', u'refineri', u'expans']
[u'koolan', u'iron', u'mine', u'submiss']
[u'escort', u'agenc', u'open', u'residenti', u'area']
[u'evid', u'weigh', u'carb', u'diet']
[u'expuls', u'lie', u'rodent', u'slur', u'surpris']
[u'fair', u'dinkum', u'food', u'campaign', u'meet', u'politician']
[u'famili', u'powerless', u'help', u'petrol', u'sniffer', u'inquest']
[u'farmer', u'warn', u'dairi', u'compani', u'workplac', u'fine']
[u'farm', u'group', u'govt', u'meet', u'rural', u'skill', u'shortag']
[u'farrel', u'get', u'england', u'rugbi']
[u'fatal', u'crash', u'spark', u'overpass', u'safeti', u'fear']
[u'fee', u'better', u'livestock', u'weed']
[u'concern', u'air', u'cemeteri', u'plan']
[u'fisheri', u'offic', u'applaud', u'poacher', u'jail']
[u'flood', u'water', u'reced', u'india']
[u'food', u'label', u'senat', u'agenda']
[u'footi', u'player', u'bring', u'intern', u'flavour']
[u'member', u'ballarat', u'swear']
[u'tiger', u'skipper', u'campbel', u'retir']
[u'offic', u'admit', u'corrupt']
[u'fund', u'fight', u'push', u'retir']
[u'fund', u'avail', u'lantana', u'remov']
[u'gallop', u'rule', u'awa', u'western', u'power']
[u'garrett', u'deliv', u'film', u'industri', u'lectur']
[u'swear', u'senat']
[u'govern', u'criticis', u'recherch', u'delay']
[u'govt', u'face', u'intern', u'dissent']
[u'govt', u'pressur', u'parent', u'leav', u'right']
[u'goward', u'back', u'parent', u'leav']
[u'griffith', u'multicultur', u'centr', u'reopen']
[u'guantanamo', u'detaine', u'take', u'case', u'suprem', u'court']
[u'harvey', u'releas', u'contract']
[u'health', u'servic', u'offer', u'disput', u'assur']
[u'health', u'servic', u'take', u'paediatr', u'registrar']
[u'helpman', u'award', u'honour', u'williamson', u'sutherland']
[u'hill', u'share', u'profit', u'leap']
[u'hospit', u'attack', u'investig']
[u'hospit', u'program', u'work', u'opposit']
[u'howard', u'give', u'guarante', u'parent', u'leav']
[u'human', u'trial', u'underway', u'haemophila', u'therapi']
[u'hunt', u'continu', u'escap', u'mental', u'health', u'patient']
[u'hunter', u'driver', u'rout', u'safeti', u'fear']
[u'hurley', u'pledg', u'hold', u'govt', u'account']
[u'iemma', u'finalis', u'cabinet', u'normal', u'faction', u'brawl']
[u'indonesian', u'unanim', u'aceh', u'peac', u'deal']
[u'inquest', u'focus', u'fatal', u'polic', u'shoot']
[u'rat', u'forecast', u'offer', u'home', u'owner']
[u'iraqi', u'citi', u'riot', u'better', u'servic']
[u'protest', u'travel', u'cost']
[u'island', u'local', u'welcom', u'detent', u'centr', u'plan']
[u'jackson', u'urg', u'warden', u'accept', u'offer']
[u'jail', u'staff', u'level', u'worri', u'union']
[u'jayasuriya', u'pass', u'run']
[u'kafelnikov', u'european', u'golf', u'debut']
[u'kangaroo', u'decapit', u'melbourn']
[u'knight', u'consid', u'newton', u'earli', u'guilti']
[u'koschitzk', u'hook']
[u'lantana', u'ban']
[u'launceston', u'brace', u'heavi', u'rain']
[u'step', u'asid', u'bentley', u'board']
[u'lenton', u'look', u'improv', u'world', u'record']
[u'lenton', u'smash', u'world', u'record']
[u'month', u'jail', u'convict', u'drug']
[u'liber', u'rais', u'joyc', u'concern', u'parliament']
[u'liber', u'blast', u'nation', u'telstra', u'spat']
[u'liber', u'oust', u'member', u'lie', u'rodent', u'comment']
[u'lionor', u'highlight', u'import', u'nickel', u'asset']
[u'lose', u'vivaldi', u'work', u'strike', u'chord', u'listen']
[u'face', u'nimbin', u'murder', u'charg']
[u'marsh', u'saca', u'role']
[u'maryborough', u'mari', u'poppin', u'statu']
[u'mathematician', u'reveal', u'flaw', u'japan', u'code']
[u'mayor', u'call', u'forc', u'council', u'merger']
[u'medal', u'recognis', u'esper', u'shire', u'presid', u'effort']
[u'question', u'ecstasi', u'seizur']
[u'meteor', u'jump', u'start', u'life']
[u'militari', u'court', u'convict', u'cambodian', u'opposit']
[u'miner', u'confid', u'contain', u'kangaroo', u'flat', u'cost']
[u'miner', u'encourag', u'explor', u'australia']
[u'miner', u'take', u'foreign', u'worker']
[u'minist', u'look', u'stronger', u'indigen', u'link']
[u'detail', u'seek', u'nurs', u'home', u'plan']
[u'leav', u'polit', u'affair', u'reveal']
[u'nagasaki', u'mark', u'year', u'atom', u'bomb']
[u'negoti', u'telstra', u'your', u'finish', u'beazley']
[u'home', u'loan', u'drop', u'valu', u'rise']
[u'roster', u'rais', u'staff', u'retent', u'hop']
[u'nguiu', u'school', u'remain', u'cathol', u'control']
[u'nation', u'plan', u'immigr', u'benefit']
[u'opposit', u'issu', u'polici', u'nurs', u'shortag']
[u'paedophil', u'psychiatrist', u'claim', u'investig']
[u'paedophil', u'holiday', u'plan', u'prompt', u'polic', u'warn']
[u'peta', u'temporarili', u'lift', u'wool', u'boycott']
[u'pickett', u'face', u'week']
[u'pickl', u'pigeon', u'prove', u'headach']
[u'pilot', u'accus', u'activist', u'murder', u'face', u'court']
[u'polic', u'arrest', u'nimbin', u'death']
[u'polic', u'cast', u'doubt', u'clark', u'motorcad', u'stori']
[u'polic', u'concern', u'rise', u'road', u'crime']
[u'polic', u'hunt', u'woman', u'attack']
[u'polic', u'seek', u'teenag', u'death']
[u'polic', u'give', u'power', u'anti', u'terror']
[u'power', u'compani', u'consid', u'million', u'coal']
[u'power', u'firm', u'spend', u'south', u'east']
[u'prestigi', u'eureka', u'scienc', u'prize', u'award']
[u'primari', u'health', u'care', u'net', u'million', u'profit']
[u'prison', u'face', u'lockdown', u'disput']
[u'probuild', u'build', u'bendigo', u'bank']
[u'profit', u'report', u'push', u'market', u'record', u'high']
[u'prospector', u'target', u'radium', u'hill']
[u'public', u'urg', u'embrac']
[u'govern', u'elect', u'mcgradi', u'speaker']
[u'qualiti', u'help', u'beef', u'meat', u'export']
[u'question', u'time', u'limit', u'sign', u'arrog']
[u'region', u'anaesthetist', u'seek', u'boost']
[u'region', u'busi', u'confid', u'dip']
[u'religi', u'leader', u'attempt', u'influenc', u'gaza', u'pullout']
[u'reloc', u'confus', u'griffin', u'centr', u'tenant']
[u'repco', u'rev', u'profit']
[u'report', u'find', u'need', u'medic', u'staff', u'incent']
[u'research', u'focus', u'endang', u'giant', u'worm']
[u'rocker', u'dust', u'instrument', u'alic']
[u'roughead', u'take', u'rise', u'star', u'nomin']
[u'ruddock', u'take', u'control', u'foreign', u'troop', u'case']
[u'safe', u'space', u'creat', u'student']
[u'govt', u'urg', u'fuel', u'price']
[u'opera', u'take', u'helpmann', u'storm']
[u'satellit', u'broadband', u'network', u'triall', u'remot']
[u'school', u'face', u'legal', u'action', u'decis']
[u'schwab', u'consid', u'quit', u'match', u'review', u'panel']
[u'second', u'stage', u'heeswijk', u'tour']
[u'senat', u'joyc', u'plan', u'sit']
[u'senat', u'urg', u'welfar', u'chang', u'check']
[u'senat', u'face', u'court', u'drive', u'incid']
[u'shake', u'moot', u'polic', u'promot']
[u'shark', u'net', u'support', u'reject', u'remov']
[u'ship', u'contain', u'crush', u'woman']
[u'shire', u'ponder', u'hand', u'road', u'govt']
[u'shire', u'want', u'tafe', u'closur', u'plan', u'detail']
[u'smith', u'snack', u'sakata']
[u'speed', u'camera', u'slow', u'albani', u'driver']
[u'storag', u'upgrad', u'help', u'summer', u'water', u'suppli']
[u'student', u'converg', u'hall', u'creek', u'youth', u'festiv']
[u'tasmania', u'outfox', u'anim', u'pest']
[u'technolog', u'gold', u'leas', u'life']
[u'teenag', u'charg', u'hammer', u'attack']
[u'thiev', u'ransack', u'beslan', u'school']
[u'timber', u'propon', u'beat', u'nois', u'test']
[u'blaze', u'control']
[u'toronto', u'develop', u'get', u'council', u'approv']
[u'trap', u'chines', u'miner', u'number']
[u'trio', u'caus', u'environment', u'damag', u'court', u'tell']
[u'trio', u'face', u'charg', u'drug', u'raid']
[u'tweed', u'host', u'golden', u'nugget', u'bowl', u'action']
[u'umaga', u'hope', u'play', u'australia']
[u'chief', u'welcom', u'concern']
[u'staff', u'withhold', u'result', u'urg', u'speak']
[u'uranium', u'export', u'safe']
[u'author', u'stop', u'alleg', u'paedophil']
[u'utai', u'contest', u'high', u'tackl', u'charg']
[u'vivaldi', u'perform']
[u'express', u'shock', u'charg', u'clerk']
[u'seek', u'nation', u'liabil', u'law']
[u'wedg', u'facelift', u'continu']
[u'wesfarm', u'predict', u'robust', u'profit']
[u'wollongong', u'stadium', u'host', u'semi']
[u'woodsid', u'apprentic', u'award', u'safeti', u'effort']
[u'zorro', u'fin', u'lack', u'busi', u'record']
[u'miss', u'helicopt', u'crash', u'estonia']
[u'feedlot', u'hold']
[u'laverton', u'polic', u'station', u'unveil']
[u'nepales', u'soldier', u'kill', u'clash', u'rebel']
[u'gascoyn', u'cross', u'open']
[u'reward', u'offer', u'catch', u'playground', u'vandal']
[u'charg', u'child', u'sexual', u'offenc']
[u'accc', u'rule', u'telstra', u'line', u'share', u'charg']
[u'promot', u'sustain', u'live', u'sydney']
[u'action', u'group', u'seek', u'highway', u'revamp']
[u'adelaid', u'possibl', u'ozjet', u'headquart']
[u'reject', u'extra', u'judg', u'launceston']
[u'black', u'umaga', u'time']
[u'criticis', u'govt', u'royal', u'hobart', u'problem']
[u'anderson', u'back', u'govt', u'telstra', u'agenda']
[u'anderson', u'defend', u'telstra', u'sale', u'stanc']
[u'anglicar', u'look', u'oper', u'cost']
[u'applebi', u'prepar', u'tame', u'beast']
[u'applic', u'prison', u'murder', u'case']
[u'aussi', u'astronaut', u'mull', u'futur', u'nasa']
[u'australian', u'accent', u'hear', u'milit', u'broadcast']
[u'autopsi', u'bateman', u'whale']
[u'beatti', u'seek', u'immigr', u'answer', u'amidst', u'doctor']
[u'best', u'western', u'apart', u'promis', u'visitor', u'boost']
[u'boomer', u'lithuania', u'gaze']
[u'bun', u'lose', u'stop', u'appeal']
[u'bureau', u'predict', u'snow', u'hobart', u'level']
[u'byron', u'blue', u'festiv', u'hit', u'high', u'note', u'award']
[u'protect', u'farmer']
[u'radar', u'station', u'heritag', u'list']
[u'canberra', u'offic', u'space', u'time']
[u'cardiologist', u'air', u'bulli', u'claim', u'patel', u'inquiri']
[u'carmont', u'tanner', u'sign', u'knight']
[u'profit', u'top', u'market', u'forecast']
[u'citrus', u'grower', u'award', u'packag']
[u'clark', u'readi', u'ash']
[u'club', u'meet', u'poki']
[u'probe', u'north', u'jail', u'claim']
[u'coalit', u'attack', u'infight']
[u'coalit', u'tension', u'continu']
[u'coff', u'host', u'region', u'develop', u'ministeri']
[u'columbia', u'play', u'astronaut', u'mind']
[u'commonwealth', u'deni', u'short', u'chang', u'uluru']
[u'consolid', u'miner', u'boost', u'product', u'fivefold']
[u'consum', u'confid', u'bounc']
[u'coron', u'hear', u'evid', u'petrol', u'sniff']
[u'costello', u'ask', u'clear', u'chariti', u'rule']
[u'councillor', u'call', u'rock', u'wall', u'combat', u'beach']
[u'council', u'grant', u'approv', u'optus', u'phone', u'tower']
[u'counsellor', u'worri', u'drought', u'farmer']
[u'countri', u'race', u'group', u'seek', u'prize', u'money', u'boost']
[u'court', u'allow', u'widow', u'plane', u'crash']
[u'darwin', u'port', u'like', u'handl', u'return', u'nuclear', u'wast']
[u'defenc', u'fail', u'attract', u'recruit']
[u'demon', u'chanc', u'saloon', u'danih']
[u'dench', u'defend', u'money', u'launder', u'charg']
[u'discoveri', u'command', u'plead', u'support']
[u'discoveri', u'land', u'safe']
[u'dissent', u'linger', u'coalit', u'rank']
[u'donat', u'boost', u'chopper', u'rescu', u'servic']
[u'drinker', u'cancer', u'risk', u'folat', u'studi', u'find']
[u'driver', u'warn', u'danger', u'winter', u'condit']
[u'dutch', u'channel', u'plan', u'sperm', u'donor', u'search']
[u'kill', u'german', u'apart', u'block']
[u'elect', u'chief', u'campaign']
[u'england', u'near', u'string', u'say', u'gile']
[u'exchang', u'upgrad', u'appeas', u'joyc', u'labor', u'say']
[u'famili', u'senat', u'question', u'econom', u'focus']
[u'farm', u'death', u'prompt', u'nation', u'campaign']
[u'farmer', u'delay', u'drought', u'subsidi', u'applic']
[u'farmer', u'tractor', u'head', u'canberra', u'protest']
[u'firefight', u'extinguish', u'blaze']
[u'forum', u'address', u'issu', u'age', u'work', u'forc']
[u'soldier', u'kill', u'iraq', u'attack']
[u'futur', u'work', u'entitl', u'unclear', u'despit']
[u'close', u'southbound', u'bridg']
[u'gilchrist', u'back', u'trafford', u'test']
[u'giteau', u'frontrunn', u'half', u'flatley']
[u'gold', u'coast', u'host', u'second', u'children']
[u'govt', u'accus', u'appoint', u'cover']
[u'govt', u'builder', u'stop', u'condit']
[u'govt', u'consid', u'admit', u'pacif', u'worker']
[u'govt', u'continu', u'talk', u'vietnam', u'vet', u'occup']
[u'govt', u'credit', u'transit', u'offic', u'drop', u'rail']
[u'govt', u'seek', u'hear', u'industri', u'disput']
[u'govt', u'settl', u'steal', u'babi', u'part', u'case']
[u'govt', u'sign', u'sugar', u'market', u'agreement']
[u'govt', u'stop', u'elect', u'surgeri', u'hobart', u'hospit']
[u'govt', u'skill', u'shortag']
[u'govt', u'urg', u'hold', u'china', u'uranium', u'export']
[u'grain', u'farmer', u'mood', u'shift']
[u'green', u'challeng', u'uranium', u'power', u'shift']
[u'group', u'applaud', u'sustain', u'live', u'trial']
[u'grower', u'await', u'govt', u'respons', u'horticultur', u'plan']
[u'grower', u'face', u'juic', u'fruit', u'price']
[u'grower', u'urg', u'mind', u'cotton', u'offer']
[u'guild', u'air', u'voluntari', u'student', u'union', u'fear']
[u'high', u'demand', u'see', u'tourist', u'turn', u'away']
[u'iemma', u'confirm', u'kurnel', u'desalin', u'plant', u'plan']
[u'hewitt', u'pull', u'montreal', u'master']
[u'indonesian', u'activist', u'murder', u'trial', u'whitewash']
[u'infight', u'report', u'overblown', u'say']
[u'ingram', u'reject', u'polit', u'donat']
[u'injur', u'sculthorp', u'nation', u'seri']
[u'injuri', u'forc', u'hawk', u'holland', u'retir']
[u'inquiri', u'urg', u'trial', u'controversi', u'anorexia']
[u'jackson', u'win', u'hurdl', u'titl', u'sanchez', u'crash']
[u'japanes', u'tuna', u'boat', u'accus', u'pollut']
[u'johnson', u'blow', u'cours', u'record']
[u'kite', u'surfer', u'lucki', u'escap']
[u'upbeat', u'mcgrath', u'keep', u'pray']
[u'liber', u'seek', u'tough', u'anti', u'terror', u'stanc']
[u'liber', u'accus', u'brigalow', u'backflip']
[u'local', u'branch', u'rack', u'year']
[u'local', u'govt', u'compulsori', u'vote', u'support', u'surpris']
[u'accus', u'child', u'assault', u'get', u'bail']
[u'charg', u'apart', u'burglari']
[u'market', u'climb', u'wake', u'rat', u'rise']
[u'markov', u'pole', u'vault', u'final']
[u'mayor', u'back', u'free', u'public', u'transport']
[u'mayor', u'oppos', u'heritag', u'plan']
[u'mayor', u'seek', u'bushfir', u'mistak', u'detail']
[u'milit', u'video', u'authent', u'downer']
[u'minist', u'approv', u'civic', u'develop']
[u'minist', u'discuss', u'veget', u'industri', u'overhaul']
[u'minist', u'hear', u'need', u'transport', u'exchang']
[u'miss', u'tourist', u'suffer', u'hypothermia']
[u'mitchel', u'play', u'wallabi']
[u'seek', u'council', u'review']
[u'magnet', u'vanadium', u'reopen']
[u'multicultur', u'resourc', u'centr', u'offer', u'improv']
[u'name', u'execut', u'director']
[u'nasa', u'delay', u'mar', u'orbit', u'launch']
[u'nelson', u'commit', u'despit', u'legitim', u'concern']
[u'nelson', u'quiet', u'nation', u'region', u'fund']
[u'port', u'hedland', u'start', u'work']
[u'consid', u'migrat', u'scheme', u'address', u'skill']
[u'nixon', u'voic', u'support', u'polic', u'integr', u'director']
[u'norman', u'withdraw']
[u'north', u'wont', u'recontest', u'elect']
[u'nuclear', u'safeguard', u'remain', u'despit', u'china', u'deal', u'downer']
[u'opposit', u'attack', u'leak', u'polic', u'integr']
[u'opposit', u'reveal', u'nurs', u'plan']
[u'outag', u'leav', u'resid', u'dark']
[u'pace', u'farm', u'compani', u'fin', u'pollut']
[u'parapleg', u'claim', u'world', u'record']
[u'parent', u'leav', u'worri', u'rural', u'small', u'busi']
[u'parliament', u'pass', u'cut']
[u'petrol', u'sniffer', u'interrupt', u'remot', u'inquest', u'hear']
[u'petrol', u'sniff', u'inquest', u'hear', u'evid', u'remot']
[u'plan', u'afoot', u'lithgow', u'aquat', u'centr']
[u'polic', u'accus', u'trickeri', u'interview']
[u'polic', u'appeal', u'deliv', u'footag']
[u'polic', u'hope', u'dental', u'record', u'identifi', u'dead', u'woman']
[u'polic', u'hunt', u'canungra', u'knife', u'bandit']
[u'polic', u'investig', u'forgeri', u'claim']
[u'polic', u'return', u'supermarket', u'protest', u'site']
[u'polic', u'stage', u'snowi', u'crime', u'oper']
[u'polici', u'bring', u'parent', u'child', u'crime', u'fight']
[u'power', u'consid', u'appeal', u'pickett', u'verdict']
[u'power', u'appeal', u'pickett', u'suspens']
[u'power', u'worker', u'reject', u'offer']
[u'public', u'invit', u'view', u'coburn', u'environment', u'report']
[u'qanta', u'mull', u'fuel', u'surcharg', u'hike']
[u'govt', u'announc', u'duck', u'hunt']
[u'winemak', u'tell', u'oversea', u'opportun']
[u'rabbitoh', u'cowboy', u'play', u'mackay', u'season']
[u'race', u'group', u'say', u'right', u'hurt', u'region']
[u'radio', u'station', u'slap', u'smackfest', u'fine']
[u'readymix', u'downsiz', u'tweed', u'quarri', u'plan']
[u'real', u'want', u'unsettl', u'owen', u'stay', u'sacchi']
[u'record', u'high', u'despit', u'sluggish', u'bank', u'mine', u'stock']
[u'refineri', u'staff', u'return', u'work']
[u'roadwork', u'indigen', u'group']
[u'robinson', u'case', u'return', u'court']
[u'russian', u'open', u'crimin', u'probe', u'mini', u'accid']
[u'search', u'continu', u'miss']
[u'senat', u'debat', u'china', u'uranium', u'sale']
[u'settlement', u'issu', u'hit', u'sharon', u'poll']
[u'sharapova', u'struggl', u'round']
[u'shire', u'stand', u'wind', u'farm', u'polici']
[u'shuttl', u'touch']
[u'sister', u'appeal', u'murder', u'inform']
[u'resort', u'welcom', u'good', u'snow']
[u'sleep', u'research', u'studi', u'pilot', u'fli', u'east', u'west']
[u'snowfal', u'continu', u'southern', u'australia']
[u'snow', u'fall', u'victoria']
[u'snow', u'surpris', u'southern', u'australia']
[u'solomon', u'peacekeep', u'report', u'criticis']
[u'southern', u'star', u'promis', u'start', u'test']
[u'speed', u'camera', u'rule', u'concern', u'say', u'opposit']
[u'lanka', u'india', u'triangular', u'seri']
[u'stalem', u'persist', u'south', u'africa', u'gold', u'strike']
[u'strand', u'land', u'return', u'communiti']
[u'strike', u'action', u'loom', u'prison', u'offic', u'disput']
[u'strike', u'boe', u'worker', u'seek', u'feder', u'action']
[u'student', u'converg', u'gold', u'coast', u'eisteddfod']
[u'student', u'doubt', u'grant', u'cover', u'loss', u'union']
[u'student', u'attent', u'earli', u'high', u'school']
[u'student', u'protest', u'student', u'union', u'move']
[u'student', u'union', u'cautious', u'welcom', u'nation']
[u'student', u'union', u'plan', u'creat', u'region', u'fear']
[u'superman', u'widow', u'dana', u'reev', u'lung', u'cancer']
[u'support', u'show', u'refuge', u'reloc', u'scheme']
[u'survey', u'consid', u'busi', u'need']
[u'talk', u'focus', u'cottag', u'rent']
[u'taxpay', u'foot', u'wharf', u'repair']
[u'teacher', u'suspend', u'exam', u'breach', u'investig']
[u'telstra', u'sale', u'court', u'challeng', u'stumbl']
[u'thoma', u'swap', u'space', u'grape', u'say']
[u'minist', u'swear']
[u'toddler', u'return', u'take', u'steal']
[u'tongan', u'public', u'servant', u'await', u'decis', u'strike']
[u'trio', u'stand', u'trial', u'tree', u'fern', u'scam']
[u'troop', u'stay', u'southern', u'iraq', u'unrest', u'hill']
[u'consid', u'close', u'court', u'terrorist']
[u'union', u'urg', u'polic', u'recruit', u'rethink']
[u'unit', u'seat', u'qualifi']
[u'watchdog', u'meet', u'iranian', u'nuclear', u'work']
[u'accus', u'iran', u'suppli', u'iraqi', u'insurg', u'bomb']
[u'band', u'battl', u'kerrang', u'honour']
[u'court', u'overturn', u'cuban', u'spi', u'convict']
[u'utai', u'high', u'tackl', u'charg', u'downgrad']
[u'dijck', u'win', u'tour', u'benelux', u'penultim', u'stage']
[u'charg', u'teenag', u'death', u'sexual', u'assault']
[u'volcan', u'erupt', u'caus', u'australian', u'island', u'grow']
[u'protest', u'hold', u'countri']
[u'warn', u'hard', u'graft']
[u'watchdog', u'cancel', u'iran', u'nuclear', u'meet']
[u'winegrap', u'harvest', u'suffer', u'downturn']
[u'woman', u'die', u'hous']
[u'woolgrow', u'pursu', u'peta']
[u'woolmer', u'begin', u'work', u'shabbir', u'action']
[u'wool', u'produc', u'reject', u'peta', u'mules', u'plan']
[u'work', u'coolac', u'bypass', u'expect', u'octob']
[u'work', u'begin', u'year', u'plant']
[u'year', u'woman', u'face', u'reveal']
[u'kill', u'haitian', u'violenc']
[u'forum', u'focus', u'indigen', u'wellb']
[u'agassi', u'advanc', u'montreal']
[u'airlin', u'end', u'sunshin', u'coast', u'servic']
[u'andrew', u'order', u'scrutini', u'awa']
[u'atom', u'watchdog', u'stick', u'diplomaci', u'iran']
[u'attitud', u'nuclear', u'power', u'chang', u'say', u'inquiri']
[u'australia', u'name', u'mcgrath', u'play']
[u'australian', u'resid', u'booker', u'finalist']
[u'say', u'negoti', u'peta', u'damag']
[u'babi', u'part', u'settlement', u'wont', u'stop', u'grief']
[u'baldwin', u'aim', u'secur', u'defenc', u'contract']
[u'bank', u'revamp', u'spark', u'busi', u'region', u'rethink']
[u'bar', u'muslim', u'convert', u'deni', u'support', u'terror']
[u'bartlett', u'seek', u'senat', u'support', u'disallow', u'island']
[u'beatti', u'defend', u'fast', u'track', u'law']
[u'beatti', u'fast', u'track', u'protect']
[u'biosecur', u'australia', u'better', u'agenc', u'boss']
[u'bland', u'undergo', u'build', u'boom']
[u'bleep', u'bikini', u'bust', u'beach', u'burn']
[u'bok', u'laugh', u'matfield', u'hoax']
[u'boomer', u'bounc', u'understrength', u'china']
[u'charg', u'sexual', u'assault', u'teen']
[u'escap', u'abduct', u'attempt']
[u'boyl', u'suggest', u'public', u'hear', u'gold', u'coast']
[u'british', u'polic', u'charg', u'juli', u'attack']
[u'build', u'industri', u'watchdog', u'jump', u'hurdl']
[u'busi', u'advoc', u'reform']
[u'busway', u'stand', u'school']
[u'cabinet', u'consid', u'frontlin', u'role', u'women']
[u'calder', u'open', u'truck', u'crash']
[u'second', u'highway', u'bypass', u'archaeolog']
[u'campaign', u'kick', u'mackay', u'hotel', u'sale']
[u'canadian', u'uranium', u'giant', u'back', u'feder', u'regul']
[u'cane', u'toad', u'thriller', u'take', u'judg', u'award']
[u'carr', u'minist', u'clear', u'orang', u'grove']
[u'channel', u'seven', u'cutter', u'case', u'dismiss']
[u'chelsea', u'step', u'secur', u'measur']
[u'clubber', u'curfew', u'trial', u'short', u'bendigo']
[u'cobalt', u'discoveri', u'boost', u'job']
[u'coldest', u'august', u'year', u'bendigo']
[u'commiss', u'celebr', u'coast', u'secur']
[u'confid', u'singh', u'aim', u'defend', u'titl']
[u'controversi', u'follow', u'niger', u'presid', u'famin']
[u'coron', u'hear', u'petrol', u'sniff', u'dead', u'toll']
[u'council', u'appoint', u'director']
[u'councillor', u'condemn', u'industri', u'propos']
[u'council', u'merger', u'inevit']
[u'council', u'review', u'ignor', u'england', u'allianc', u'govt']
[u'court', u'approv', u'contenti', u'high', u'rise', u'develop']
[u'court', u'find', u'favour', u'sack', u'polic', u'offic']
[u'dalla', u'actress', u'barbara', u'gedd', u'die']
[u'deputi', u'mayor', u'condemn', u'hospit', u'bridg', u'decis']
[u'driver', u'urg', u'care', u'snowi', u'mountain', u'road']
[u'driver', u'urg', u'watch', u'breed', u'koala']
[u'driver', u'warn', u'road']
[u'droughtmast', u'cattl', u'fetch', u'price', u'broom']
[u'emerg', u'declar', u'smoke', u'choke', u'malaysia']
[u'england', u'fight', u'southern', u'star']
[u'england', u'look', u'flintoff', u'insid', u'knowledg']
[u'england', u'promis', u'start', u'test']
[u'european', u'rocket', u'put', u'huge', u'thai', u'satellit', u'aloft']
[u'fall', u'creek', u'develop']
[u'farmer', u'angri', u'biosecur', u'measur']
[u'farmer', u'face', u'rural', u'labour', u'crisi']
[u'farmer', u'pledg', u'food', u'label']
[u'fatal', u'hunt', u'accid', u'lead', u'manslaught', u'charg']
[u'faulti', u'clock', u'fatal', u'hous', u'blaze']
[u'feder', u'fund', u'flood', u'work']
[u'awa', u'undercut', u'award', u'court', u'find']
[u'filipino', u'author', u'fear', u'suicid', u'bomber', u'plan']
[u'tamworth', u'mayor', u'die']
[u'commission', u'urg', u'govt', u'secur', u'hick']
[u'fortescu', u'seek', u'transport', u'infrastructur', u'share']
[u'galaxi', u'bigger', u'look']
[u'gallop', u'condemn', u'blue']
[u'gemfest', u'open', u'today']
[u'gerrard', u'confid', u'liverpool', u'sofia']
[u'group', u'get']
[u'status', u'consid', u'unsustain']
[u'gold', u'coast', u'offic', u'space', u'demand', u'grow']
[u'govern', u'issu', u'lead', u'glen', u'eira', u'council', u'sack']
[u'govt', u'accus', u'limit', u'hospit', u'perform', u'data']
[u'govt', u'buy', u'treasur', u'trove', u'aborigin', u'histori']
[u'govt', u'consid', u'telstra', u'fund']
[u'govt', u'consid', u'yarralumla', u'brickwork', u'futur']
[u'govt', u'defend', u'action', u'elect', u'surgeri']
[u'govt', u'landfil', u'upgrad']
[u'govt', u'urg', u'combat', u'salin']
[u'govt', u'urg', u'resolv', u'industri', u'disput']
[u'govt', u'urg', u'stop', u'blue', u'critic']
[u'green', u'finger', u'senat', u'rude', u'gestur']
[u'group', u'plan', u'islam', u'summit', u'discuss', u'radic']
[u'group', u'tussl', u'live', u'recommend']
[u'grower', u'cast', u'doubt', u'canker', u'deal']
[u'haddin', u'captain', u'team']
[u'hold', u'foreign', u'ship', u'crew', u'hop', u'home']
[u'higher', u'uranium', u'price', u'lift', u'honeymoon', u'hop']
[u'hospit', u'mainten', u'crisi', u'disrupt', u'servic']
[u'hospit', u'trial', u'bowel', u'diseas', u'drug']
[u'household', u'spend', u'rise']
[u'howard', u'beazley', u'tribut', u'wwii', u'soldier']
[u'icpa', u'lobbi', u'fund', u'appropri', u'educ']
[u'condit', u'close', u'blue', u'mountain', u'road']
[u'indigen', u'poverti', u'child', u'mortal', u'remain', u'high']
[u'indonesian', u'timor', u'launch', u'truth', u'commiss']
[u'interview', u'ricki', u'pont']
[u'iran', u'resum', u'nuclear', u'process']
[u'chang', u'pitch', u'difficult', u'detail', u'say']
[u'islam', u'group', u'escap']
[u'jetstar', u'chang', u'hobart', u'travel']
[u'jobless', u'rate', u'steadi', u'year']
[u'johnson', u'snare', u'final', u'spot']
[u'jone', u'warn', u'black', u'counterattack']
[u'jubile', u'award', u'record', u'rise']
[u'labor', u'bypass', u'scandal']
[u'council', u'remain', u'odd', u'govt', u'hick']
[u'declar', u'mcgrath', u'chanc']
[u'liber', u'tighten', u'campaign', u'fund', u'rule']
[u'lithgow', u'support', u'union', u'work', u'right', u'charter']
[u'local', u'farmer', u'food', u'label', u'ralli']
[u'lose', u'student', u'union', u'job', u'blame', u'plan']
[u'die', u'kingaroy', u'crash']
[u'jail', u'stepdaught']
[u'manna', u'hous', u'move', u'bigger', u'premis']
[u'mccain', u'contract', u'potato', u'farmer']
[u'mcgrath', u'face', u'minut', u'fit', u'test']
[u'minist', u'defend', u'offic', u'block', u'plan', u'civic']
[u'molik', u'tee', u'long', u'await', u'return']
[u'mourinho', u'cole', u'lose', u'appeal', u'fin']
[u'notic', u'keep', u'peac', u'polic']
[u'say', u'brigalow', u'decis', u'stay']
[u'murray', u'river', u'spill', u'clean']
[u'muslim', u'leader', u'surpris', u'british', u'convert', u'entri']
[u'navi', u'apprehend', u'illeg', u'fish', u'boat']
[u'network', u'announc']
[u'group', u'aim', u'boost', u'apprenticeship', u'energi']
[u'polic', u'oper', u'drink', u'driver']
[u'newscorp', u'profit', u'surg']
[u'newscorp', u'reveal', u'record', u'profit']
[u'sudanes', u'vice', u'presid', u'swear']
[u'urg', u'telstra', u'action', u'trujillo', u'meet']
[u'blank', u'chequ', u'anaesthetist', u'iemma']
[u'sniff', u'petrol', u'rollout', u'cost', u'despit', u'death']
[u'opposit', u'expect', u'defenc', u'upgrad', u'plan']
[u'norfolk', u'resid', u'fear', u'phone', u'bug']
[u'nurs', u'group', u'question', u'coalit', u'health', u'plan']
[u'nuttal', u'forc', u'admit', u'sugar', u'blunder']
[u'offic', u'fear', u'life', u'shoot', u'court', u'hear']
[u'ogradi', u'extend', u'stay', u'cofidi']
[u'ozjet', u'announc', u'melbourn', u'sydney', u'rout', u'plan']
[u'pakistan', u'test', u'fire', u'nuclear', u'capabl', u'cruis', u'missil']
[u'perth', u'accus', u'teen', u'death', u'link', u'anim']
[u'plan', u'moot', u'boost', u'lake', u'level', u'treat', u'wast']
[u'player', u'drop', u'afro', u'asia', u'seri']
[u'polar', u'aviat', u'chief', u'unhappi', u'casa', u'deal']
[u'polic', u'probe', u'dubbo', u'mug']
[u'polic', u'probe', u'hous', u'blaze']
[u'polic', u'raid', u'remot', u'western', u'drug']
[u'polic', u'raid', u'reveal', u'north', u'nowra', u'drug']
[u'polic', u'remov', u'greenpeac', u'activist']
[u'port', u'piri', u'footbal', u'kyle', u'atkinson', u'funer', u'today']
[u'port', u'rule', u'pickett', u'legal', u'challeng']
[u'power', u'cut', u'jam', u'loos']
[u'prosecutor', u'seek', u'death', u'embassi', u'bomb', u'suspect']
[u'psych', u'guilti', u'misconduct']
[u'public', u'urg', u'midland', u'highway']
[u'public', u'warn', u'flood', u'damag', u'vehicl']
[u'race', u'board', u'chang', u'mind', u'betfair', u'penalti']
[u'rain', u'stop', u'glenburni', u'race', u'meet']
[u'report', u'show', u'number', u'drop']
[u'resourc', u'bank', u'stock', u'push', u'ord', u'higher']
[u'revitalis', u'julich', u'win', u'tour', u'benelux']
[u'row', u'team', u'train', u'rockhampton']
[u'back', u'women', u'combat', u'zone']
[u'rural', u'group', u'govern', u'address', u'skill']
[u'salvo', u'boost', u'illawarra', u'fundrais']
[u'school', u'princip', u'learn']
[u'school', u'catch', u'rort', u'exam', u'lose']
[u'scott', u'head', u'australia', u'conting']
[u'senat', u'regret', u'obscen', u'gestur']
[u'shellharbour', u'council', u'agre', u'airport', u'park']
[u'shiit', u'demand', u'separ', u'southern', u'iraqi', u'state']
[u'skill', u'boost', u'need', u'whyalla', u'mine', u'boom']
[u'smoke', u'choke', u'malaysia', u'declar', u'emerg']
[u'snow', u'block', u'highway', u'reopen']
[u'snow', u'cut', u'tasmania', u'west', u'coast']
[u'snow', u'keep']
[u'south', u'african', u'polic', u'arrest', u'striker']
[u'ardmona', u'help', u'coke', u'profit']
[u'stargaz', u'asteroid', u'moon']
[u'star', u'war']
[u'stosur', u'california']
[u'strike', u'tongan', u'public', u'servant', u'forward']
[u'survey', u'highlight', u'riverland', u'busi']
[u'survey', u'look', u'boost', u'servic', u'assault']
[u'swedish', u'firm', u'insur', u'speed', u'fin']
[u'telstra', u'boss', u'govt', u'construct', u'talk']
[u'telstra', u'cri', u'poor', u'despit', u'record', u'profit']
[u'telstra', u'profit', u'top']
[u'tender', u'call', u'hospit']
[u'thousand', u'ralli', u'gaza', u'settlement', u'closur']
[u'tiger', u'hunt', u'major', u'piec', u'histori']
[u'todd', u'deni', u'drug', u'ring', u'role']
[u'tourism', u'grow', u'tree', u'cooma', u'unltd']
[u'town', u'deal', u'petrol', u'sniff', u'problem']
[u'trucki', u'escap', u'jail', u'cyclist', u'death']
[u'trujillo', u'plan', u'reveal', u'telstra', u'truth']
[u'tuckey', u'continu', u'tirad', u'joyc']
[u'turkish', u'polic', u'deni', u'milit', u'arrest']
[u'union', u'highlight', u'faulti', u'rail', u'wagon']
[u'uranium', u'group', u'chart', u'industri', u'progress']
[u'plane', u'bomb', u'near', u'miss']
[u'varnik', u'depriv', u'finland', u'javelin', u'gold']
[u'vaughan', u'superb', u'centuri']
[u'veteran', u'welsh', u'hanson', u'swim', u'gold']
[u'industri', u'urg', u'uranium', u'mine']
[u'wait', u'time', u'come', u'admiss']
[u'wall', u'street', u'fall', u'soar']
[u'warn', u'small', u'farmer']
[u'vet', u'head', u'townsvill']
[u'water', u'cart', u'grampian', u'resort']
[u'welfar', u'group', u'seek', u'welfar', u'work', u'decis']
[u'wide', u'group', u'offer', u'health', u'plan', u'govt']
[u'windsor', u'back', u'joyc', u'stand', u'countri']
[u'win', u'inter', u'liverpool', u'sport', u'lose']
[u'wodonga', u'jail', u'stepson', u'slay']
[u'women', u'join', u'armi', u'line']
[u'wool', u'buyer', u'protest', u'auction', u'hous']
[u'worker', u'believ', u'economi', u'ripe', u'rise']
[u'worker', u'rescu', u'snow', u'cut', u'town']
[u'worksaf', u'probe', u'chemic', u'incid', u'kununurra']
[u'wran', u'deni', u'pressur', u'bank', u'bust', u'litig']
[u'xstrata', u'boost', u'half', u'year', u'profit']
[u'xstrata', u'plan', u'expans', u'profit', u'boom']
[u'young', u'rural', u'resid', u'like']
[u'aborigin', u'elder', u'criticis', u'bypass', u'delay']
[u'chief', u'say', u'women', u'combat']
[u'adventur', u'drive', u'surg', u'cattl', u'industri']
[u'close', u'mouth', u'terror', u'video', u'investig']
[u'agricultur', u'minist', u'support', u'increas', u'cattl']
[u'alcohol', u'permit', u'abolish', u'remot', u'communiti']
[u'mackay', u'expect', u'health', u'shake']
[u'analyst', u'predict', u'relat', u'infrastructur', u'boost']
[u'applebi', u'share', u'lead']
[u'arrest', u'damag', u'intern', u'drug', u'ring']
[u'asio', u'recommend', u'legisl', u'assembl', u'secur']
[u'aussi', u'fight', u'earli']
[u'aust', u'philippin', u'work', u'terror']
[u'australia', u'freddi']
[u'australia', u'asthma', u'level', u'high', u'comparison']
[u'banana', u'council', u'look', u'grower', u'levi', u'feedback']
[u'bendigo', u'crime', u'wan']
[u'bendigo', u'inform', u'ride', u'honour', u'gillett']
[u'bodi', u'start', u'campaign', u'attract', u'outback']
[u'britain', u'ban', u'radic', u'cleric', u'omar', u'bakri']
[u'broom', u'attract', u'thousand']
[u'burketown', u'get', u'second', u'groceri', u'store']
[u'bush', u'expect', u'iraq', u'meet', u'draft', u'constitut']
[u'busi', u'lobbi', u'seek', u'payrol', u'review']
[u'busselton', u'polic', u'raid', u'uncov', u'drug']
[u'cambodia', u'grant', u'citizenship', u'angelina', u'joli']
[u'caravan', u'tourism', u'drop', u'north']
[u'cautious', u'support', u'nuclear', u'wast', u'dump']
[u'challeng', u'masculin', u'make', u'macho']
[u'chamber', u'welcom', u'blue', u'condemn']
[u'chanc', u'monitor', u'stone', u'fruit', u'plan']
[u'chines', u'offici', u'examin', u'correct', u'program']
[u'clarenc', u'valley', u'area', u'get', u'flood']
[u'clark', u'battl', u'injuri']
[u'urg', u'prosecut', u'mass', u'fish', u'kill']
[u'constanc', u'seek', u'lower', u'highway', u'speed']
[u'construct', u'firm', u'back', u'rail', u'link', u'plan']
[u'consult', u'studi', u'sandon', u'indigen']
[u'costello', u'promot', u'holt', u'achiev']
[u'council', u'play', u'staff', u'wage', u'concern']
[u'council', u'reject', u'propos', u'home', u'counsel']
[u'council', u'rethink', u'tulip', u'time', u'insur']
[u'council', u'upset', u'curfew']
[u'craig', u'prais', u'final', u'harden', u'port']
[u'crew', u'repair', u'home', u'damag', u'storm']
[u'crime', u'dont', u'come', u'wash', u'studi']
[u'delay', u'council', u'decis']
[u'develop', u'issu', u'elector', u'contribut']
[u'devil', u'continu', u'win', u'form']
[u'diamond', u'get', u'expans']
[u'doctor', u'group', u'back', u'plan', u'stop', u'elect', u'surgeri']
[u'downer', u'warn', u'terrorist', u'face', u'indefinit', u'detent']
[u'defend', u'citrus', u'canker', u'action']
[u'drink', u'driver', u'plead', u'guilti', u'schoolyard', u'crash']
[u'driver', u'urg', u'look', u'wander', u'koala']
[u'eagl', u'western', u'derbi']
[u'earli', u'menstruat', u'isnt', u'precursor', u'adult', u'obes']
[u'eel', u'crippl', u'dog', u'final', u'hop']
[u'eel', u'wari', u'desper', u'dog']
[u'elder', u'jail', u'sleep', u'teen', u'wife']
[u'express', u'close', u'retir']
[u'teacher', u'get', u'period', u'detent', u'child', u'porn']
[u'adelaid', u'circuit']
[u'farmer', u'claim', u'food', u'label', u'campaign']
[u'farmer', u'impress', u'govt', u'food', u'label']
[u'farmer', u'urg', u'expert', u'advic']
[u'figur', u'highlight', u'improv', u'wait', u'time']
[u'partner', u'custodi', u'woman', u'murder']
[u'worldcom', u'financi', u'offic', u'jail']
[u'forum', u'put', u'tourism', u'zone', u'brand', u'spotlight']
[u'friend', u'famili', u'honour', u'maria', u'korp']
[u'fruit', u'picker', u'accus', u'overstay', u'welcom']
[u'gatlin', u'grab', u'golden', u'doubl']
[u'govt', u'revamp', u'telco', u'competit']
[u'govt', u'industri', u'pledg', u'farmer']
[u'govt', u'market', u'part', u'oversea']
[u'govt', u'approv']
[u'govt', u'pressur', u'islam', u'preacher']
[u'govt', u'wont', u'away', u'forest', u'agreement']
[u'grand', u'hotel', u'closur', u'sadden', u'gladston', u'mayor']
[u'grape', u'grower', u'urg', u'check', u'fungicid', u'stock']
[u'green', u'rais', u'highway', u'safeti', u'fear']
[u'hama', u'vow', u'arm']
[u'health', u'minist', u'seek', u'yeppoon', u'hospit']
[u'heathrow', u'strike', u'ground', u'australia', u'bind', u'flight']
[u'home', u'lend', u'rise']
[u'hospit', u'healthi', u'fund', u'boost']
[u'howard', u'urg', u'holist', u'solut', u'petrol', u'sniff']
[u'indigen', u'land', u'paper', u'expect', u'face']
[u'injuri', u'wrack', u'port', u'ahead', u'adelaid', u'derbi']
[u'injuri', u'lion', u'sydney', u'clash']
[u'show', u'toowoomba', u'produc', u'sport']
[u'interviewshan', u'warn']
[u'japanes', u'plead', u'guilti', u'wildlif', u'smuggl']
[u'job', u'process', u'plant']
[u'johnson', u'battl', u'royal']
[u'judg', u'delay', u'decis', u'girl', u'fight', u'stay']
[u'claim', u'global', u'warm', u'melt', u'away']
[u'labor', u'endors', u'brown', u'vacant', u'senat', u'spot']
[u'langer', u'england', u'attempt', u'regain', u'control']
[u'lawyer', u'tip', u'delay', u'hick']
[u'lebanon', u'releas', u'british', u'base', u'cleric', u'bakri']
[u'logic', u'recruit', u'armi', u'role', u'chang', u'hill']
[u'lung', u'cancer', u'kill', u'victorian', u'women']
[u'machet', u'bandit', u'target', u'servic', u'station']
[u'mainten', u'disput', u'rais', u'question', u'speed']
[u'arrest', u'worth', u'marijuana']
[u'charg', u'drive', u'hotel']
[u'marin', u'preseason', u'final']
[u'marrickvill', u'deputi', u'mayor', u'elect']
[u'mar', u'orbit', u'blast']
[u'mayor', u'promis', u'fight', u'save', u'doctor', u'hospit']
[u'mcgrath', u'inspir', u'injuri', u'fight', u'umaga']
[u'mental', u'health', u'task', u'forc', u'meet', u'soon']
[u'microsoft', u'warn', u'window', u'secur', u'hole']
[u'militari', u'accid', u'happen', u'hill', u'say']
[u'minist', u'look', u'stronger', u'china', u'trade', u'relat']
[u'minist', u'expect', u'announc', u'highway']
[u'minist', u'urg', u'resolv', u'council']
[u'fund', u'tackl', u'bug']
[u'morri', u'inquiri', u'reveal', u'long', u'wait', u'list']
[u'attack', u'feder', u'drought', u'scheme']
[u'urg', u'road', u'upgrad']
[u'want', u'quicker', u'decis', u'technic', u'colleg']
[u'murder', u'student', u'parent', u'head', u'canberra']
[u'nadal', u'agassi', u'montreal', u'quarter']
[u'natasha', u'ryan', u'boyfriend', u'jail', u'perjuri']
[u'nation', u'highlight', u'coast', u'health', u'fund']
[u'nation', u'pledg', u'abolish', u'health', u'servic']
[u'nevill', u'expect', u'tough', u'reunion', u'unit', u'brother']
[u'law', u'allow', u'indefinit', u'jail', u'offend']
[u'port', u'minist', u'newcastl', u'facil']
[u'pulp', u'design', u'unveil']
[u'water', u'suppli', u'manag', u'seek', u'council']
[u'want', u'telco', u'debat', u'focus', u'legisl']
[u'norfolk', u'govt', u'reject', u'phone', u'monitor', u'claim']
[u'wit', u'support', u'boston', u'wast']
[u'bomb', u'near', u'miss', u'mayor', u'worri']
[u'number', u'hungri', u'africa', u'soar', u'report']
[u'offic', u'take', u'hospit', u'alterc']
[u'price', u'break', u'barrel']
[u'spill', u'culprit', u'face', u'fine']
[u'opposit', u'want', u'legal', u'advic', u'bushfir', u'action']
[u'origin', u'lead', u'leagu', u'push', u'melbourn']
[u'petrol', u'sniff', u'death', u'prevent']
[u'petrol', u'sniff', u'inquest', u'wind']
[u'pie', u'pair', u'reach', u'game', u'mileston']
[u'pipelin', u'design', u'work', u'begin']
[u'consid', u'bush', u'fund', u'concern']
[u'consid', u'telstra', u'fund']
[u'encourag', u'indigen', u'public', u'servant']
[u'reserv', u'judgement', u'qaeda', u'video']
[u'say', u'milit', u'video', u'chill', u'stuff']
[u'polic', u'charg', u'drink', u'drive']
[u'polic', u'warn', u'road', u'safeti', u'crackdown']
[u'port', u'know', u'score', u'demetriou']
[u'potato', u'grower', u'angri', u'food', u'plant', u'collaps']
[u'power', u'appeal', u'process']
[u'premier', u'call', u'railcorp', u'improv', u'servic']
[u'premier', u'defend', u'council', u'dismiss']
[u'probe', u'continu', u'fatal', u'level', u'cross', u'crash']
[u'project', u'supervisor', u'receiv', u'work', u'dole', u'award']
[u'propos', u'nuclear', u'dump', u'sit', u'untest']
[u'protest', u'convict', u'enter', u'exclus', u'zone']
[u'protest', u'hold', u'plan', u'road', u'improv']
[u'psychic', u'fail', u'predict', u'crystal', u'ball']
[u'public', u'revis', u'apart', u'plan']
[u'public', u'urg', u'busi', u'apprentic']
[u'public', u'warn', u'port', u'gunshot', u'nois']
[u'govt', u'urg', u'extend', u'petrol', u'subsidi']
[u'quick', u'exit', u'beazley', u'elect', u'chanc']
[u'boss', u'see', u'rat', u'stay']
[u'region', u'uni', u'success', u'surpris', u'nelson']
[u'resourc', u'lead', u'market', u'record']
[u'rock', u'lobster', u'fishermen', u'outrag', u'propos', u'permit']
[u'rspca', u'hop', u'tiger', u'death', u'messag', u'hear']
[u'russia', u'mark', u'kursk', u'disast', u'anniversari']
[u'schipper', u'claim', u'petria', u'record']
[u'school', u'anti', u'terror', u'plan']
[u'search', u'miss', u'great', u'southern']
[u'second', u'appear', u'court', u'woman', u'murder']
[u'second', u'phase', u'port', u'dredg', u'begin']
[u'secur', u'agenc', u'continu', u'examin', u'milit']
[u'singer', u'rock', u'putrid', u'venu']
[u'skier', u'hope', u'tasmanian', u'snowfal']
[u'slight', u'drop', u'drought', u'affect', u'area']
[u'smith', u'brave', u'pain', u'raider']
[u'smith', u'play', u'pain', u'raider']
[u'snake', u'bite', u'camper', u'face']
[u'snow', u'close', u'nation', u'park']
[u'snowi', u'water', u'help', u'riverina', u'rice', u'grower']
[u'specialist', u'nurs', u'help', u'refuge']
[u'strike', u'affect', u'freight', u'rail', u'servic']
[u'strike', u'threaten', u'mobil', u'phone', u'internet', u'servic']
[u'submiss', u'inland', u'rail', u'plan']
[u'super', u'seri', u'squad', u'name', u'ash']
[u'survey', u'highlight', u'recreat', u'fish', u'boom']
[u'suspect', u'arrest', u'indonesian', u'activist', u'murder']
[u'suspend', u'sentenc', u'vizard', u'bookkeep']
[u'sydney', u'charg', u'anim', u'cruelti', u'bestial']
[u'sydney', u'face', u'bestial', u'cruelti', u'charg']
[u'tafe', u'graduat', u'choic']
[u'tasmanian', u'council', u'fin', u'sewag', u'spill']
[u'taxpay', u'need', u'guid', u'telstra', u'fund', u'decis']
[u'teenag', u'girl', u'bail', u'sexual', u'assault', u'charg']
[u'telstra', u'upgrad', u'sensibl', u'howard', u'say']
[u'thousand', u'protest', u'jewish', u'settlement']
[u'thousand', u'strand', u'british', u'airway', u'strike']
[u'arrest', u'bash', u'abduct']
[u'townsvill', u'celebr', u'anniversari', u'wwii']
[u'troop', u'stay', u'chief']
[u'trucki', u'hurt', u'freeway', u'crash']
[u'tweed', u'council', u'open', u'tidal', u'floodgat']
[u'seek', u'deport', u'foreign', u'nation']
[u'campus', u'prepar', u'open']
[u'union', u'picket', u'mushroom', u'factori', u'campaign']
[u'rank', u'provid', u'shock']
[u'unit', u'look', u'strike', u'earli', u'premiership', u'blow']
[u'univers', u'poor', u'rank', u'surpris', u'student']
[u'uranium', u'compani', u'rewrit', u'industri', u'rule']
[u'vice', u'chancellor', u'see', u'poor', u'rank', u'opportun']
[u'virgin', u'blue', u'reject', u'kalgoorli', u'servic', u'plan']
[u'vizard', u'bookkeep', u'walk', u'free']
[u'vodafon', u'chang', u'competit', u'winner']
[u'wage', u'case', u'prompt', u'suit', u'bakeri', u'franchise']
[u'warn', u'dedic', u'wicket', u'children']
[u'weather', u'disast', u'kill', u'china']
[u'whim', u'creek', u'copper', u'run']
[u'windsor', u'honour', u'local', u'govt', u'stalwart']
[u'woman', u'admit', u'role', u'norfolk', u'sieg']
[u'woman', u'resolv', u'love', u'triangl', u'kill', u'facto']
[u'work', u'reopen', u'vanadium']
[u'weav', u'win', u'indigen', u'award']
[u'wwii', u'veteran', u'mark', u'victori', u'townsvill']
[u'youth', u'festiv', u'declar', u'success']
[u'iraqi', u'dead', u'gunfir', u'doctor']
[u'milan', u'sign', u'australian', u'keeper', u'kalac']
[u'black', u'retain', u'bledislo']
[u'urg', u'face', u'wait', u'list', u'problem']
[u'ambros', u'pole', u'oran', u'park']
[u'asic', u'relax', u'rule', u'bank', u'remot', u'area']
[u'attack', u'leav', u'dead', u'indian', u'kashmir']
[u'aussi', u'rope', u'trafford']
[u'australian', u'coupl', u'arrest', u'argentina', u'drug']
[u'resum', u'heathrow', u'flight']
[u'barnett', u'birni', u'odd', u'uranium']
[u'bicker', u'cost', u'coalit', u'elect', u'gryll', u'say']
[u'blue', u'claim', u'consol']
[u'boomer', u'overcom', u'tall', u'black', u'secur', u'titl']
[u'die', u'ski', u'accid']
[u'british', u'booki', u'tip', u'england', u'ash']
[u'bush', u'open', u'forc', u'iran']
[u'carlton']
[u'castro', u'celebr', u'birthday']
[u'cat', u'despit', u'ablett', u'debut']
[u'chase', u'blue', u'guid']
[u'child', u'hospit', u'servic', u'lack', u'studi', u'say']
[u'cold', u'snap', u'hit', u'southern', u'queensland']
[u'colour', u'cod', u'aim', u'refere', u'abus']
[u'coupl', u'attack', u'home', u'invas']
[u'crow', u'lead', u'showdown']
[u'crow', u'triumph', u'showdown']
[u'drug', u'council', u'doubt', u'use', u'petrol', u'sniff']
[u'dyer', u'schole', u'extend', u'contract']
[u'england', u'forc', u'draw', u'women', u'ash', u'open']
[u'england', u'hold', u'card', u'test']
[u'klansman', u'grant', u'bail', u'mississippi', u'burn']
[u'firebird', u'season']
[u'gilchrist', u'set', u'keeper', u'bat', u'record']
[u'gile', u'put', u'aussi', u'spin']
[u'gile', u'put', u'aussi', u'rope']
[u'googl', u'paus', u'book', u'search', u'plan', u'copyright']
[u'governor', u'general', u'salut', u'wwii', u'veteran']
[u'govt', u'ignor', u'union', u'advic', u'vice', u'chancellor', u'say']
[u'train', u'lead', u'saint', u'seventh', u'straight']
[u'half', u'price', u'colombian', u'fighter', u'offer', u'iraq']
[u'heathrow', u'servic', u'return', u'normal']
[u'hudson', u'star', u'hockeyroo']
[u'indonesia', u'jail', u'term', u'bali', u'bomber']
[u'insur', u'sue', u'limp', u'bizkit', u'death']
[u'interview', u'simon', u'jone']
[u'korp', u'dead']
[u'korp', u'take', u'life']
[u'korp', u'leav', u'note']
[u'korp', u'husband', u'dead']
[u'langer', u'england', u'attempt', u'regain', u'control']
[u'malaysia', u'lift', u'smog', u'warn']
[u'martin', u'defend', u'effort', u'fight', u'nuclear', u'wast', u'dump']
[u'martin', u'say', u'petrol', u'sniff', u'time']
[u'media', u'warn', u'korp', u'children']
[u'mickelson', u'seiz', u'lead']
[u'miss']
[u'miss', u'toddler']
[u'miss', u'toddler', u'reunit', u'mother']
[u'mount', u'warn', u'indigen']
[u'mourner', u'farewel', u'minist', u'robin', u'cook']
[u'accus', u'offic', u'person', u'gain']
[u'nadal', u'reach', u'semi', u'rain', u'disrupt', u'agassi']
[u'detent', u'centr', u'asylum', u'seeker']
[u'tripl', u'gold', u'gatlin', u'baton', u'blunder']
[u'opposit', u'question', u'opera', u'hous', u'secur', u'upgrad']
[u'orford', u'make', u'storm']
[u'palestinian', u'march', u'celebr', u'isra', u'pullout']
[u'pentagon', u'move', u'block', u'ghraib', u'photo']
[u'spectat', u'injur', u'fall', u'tree', u'limb']
[u'unlik', u'chang', u'polic', u'immun', u'law']
[u'polar', u'bear', u'make', u'arctic', u'swim']
[u'polic', u'search', u'miss', u'toddler']
[u'premier', u'veto', u'islam', u'group', u'invit', u'terror']
[u'prison', u'worker', u'maintain', u'overtim', u'ban']
[u'rabbitoh', u'deal', u'blow', u'raider', u'final', u'hop']
[u'raider', u'ahead', u'pivot', u'battl', u'rabbitoh']
[u'rain', u'delay', u'trafford', u'restart']
[u'redempt', u'marathon', u'effort', u'radcliff']
[u'ronaldo', u'set', u'goal', u'target', u'season']
[u'rooster', u'shark', u'half', u'time']
[u'rooster', u'return', u'winner', u'list']
[u'school', u'driver', u'face', u'drink', u'drive', u'charg']
[u'septemb', u'record', u'public']
[u'seven', u'illeg', u'immigr', u'arrest']
[u'slaveri', u'law', u'fail']
[u'silent', u'bush', u'drive', u'past', u'anti', u'protest']
[u'spectat', u'injur', u'fall', u'tree', u'limb']
[u'lankan', u'assassin', u'spark', u'emerg']
[u'lankan', u'foreign', u'minist', u'assassin']
[u'steffensen', u'eighth', u'aussi', u'reach', u'relay', u'final']
[u'tamil', u'tiger', u'deni', u'kill', u'lankan', u'minist']
[u'tasmanian', u'labor', u'deni', u'forc', u'quick']
[u'telstra', u'sale', u'sure', u'thing', u'minchin']
[u'remand', u'argentin', u'cocain', u'smuggl', u'case']
[u'envoy', u'bar', u'zimbabw', u'camp']
[u'envoy', u'call', u'haitian', u'rebel', u'releas', u'scandal']
[u'stock', u'record']
[u'trade', u'deficit', u'near', u'time', u'high']
[u'wallabi', u'brush', u'asid', u'critic']
[u'nation', u'telstra', u'inquiri']
[u'nation', u'telstra', u'sale', u'condit']
[u'teacher', u'warn', u'nelson', u'stop', u'play', u'polit']
[u'weaver', u'indigen', u'award']
[u'woman', u'win', u'million', u'arm', u'bandit']
[u'reject', u'nation', u'abort', u'law']
[u'campaign', u'focus', u'train', u'timet', u'chang']
[u'ambul', u'union', u'road', u'rescu', u'rule', u'chang']
[u'aussi', u'relay', u'team', u'run', u'fifth']
[u'aussi', u'chase', u'england', u'declar']
[u'aussi', u'content']
[u'australian', u'leader', u'tribut', u'lang']
[u'australia', u'world', u'veteran', u'honour']
[u'pain', u'threaten', u'clark', u'career']
[u'beatti', u'play', u'wait', u'list', u'woe']
[u'brown', u'urg', u'visit', u'petrol', u'sniff', u'communiti']
[u'bulldog', u'dream', u'aliv']
[u'busi', u'regul', u'cut', u'prioriti', u'howard']
[u'compromis', u'student', u'union', u'need', u'labor']
[u'concern', u'rais', u'paedophil', u'releas']
[u'court', u'tell', u'kidnap', u'link', u'biki', u'gang']
[u'crew', u'clean', u'storm', u'hit', u'perth']
[u'cyclist', u'condit', u'improv']
[u'cypriot', u'airlin', u'crash', u'greec']
[u'david', u'lang', u'dead']
[u'dead', u'whale', u'wash', u'ashor']
[u'hasler', u'michael', u'hagan', u'interview']
[u'doubl', u'round', u'dibaba', u'lead', u'night', u'first']
[u'dragon', u'confirm', u'favourit', u'down', u'brisban']
[u'dragon', u'look', u'good', u'brisban']
[u'enforc', u'vital', u'food', u'label', u'rule']
[u'england', u'solid', u'start', u'second', u'inning']
[u'destroy', u'hill', u'factori']
[u'zealand', u'lang', u'die']
[u'germani', u'reject', u'iran', u'militari', u'option']
[u'gharib', u'retain', u'world', u'marathon', u'titl']
[u'gippsland', u'cheddar', u'name', u'chees']
[u'glori', u'condemn', u'sydney', u'loss']
[u'govt', u'fund', u'search', u'hmas', u'sydney']
[u'govt', u'pressur', u'site', u'rural', u'dump']
[u'govt', u'fund', u'search', u'sydney']
[u'graham', u'murray', u'sheen', u'interview']
[u'green', u'anger', u'firework', u'review', u'delay']
[u'green', u'want', u'petrol', u'sniff', u'stop']
[u'hama', u'vow', u'continu', u'resist', u'gaza', u'pullout']
[u'hawk', u'pay', u'bomber']
[u'hockeyroo', u'regist', u'straight']
[u'iemma', u'brush', u'sydney', u'centric', u'critic']
[u'iemma', u'want', u'paedophil', u'return']
[u'ingal', u'win', u'round']
[u'interview', u'billi', u'slater']
[u'interview', u'duncan', u'fletcher']
[u'interview', u'mitchel', u'rokocoko', u'gregan']
[u'iran', u'warn', u'bush', u'attack']
[u'iraqi', u'roadsid', u'bomb', u'kill', u'soldier']
[u'law', u'surpris', u'reliev', u'vail', u'say']
[u'isra', u'soldier', u'injur', u'gaza', u'friend']
[u'jone', u'scrambl', u'option', u'injuri', u'crisi']
[u'jone', u'pressur', u'wallabi', u'lose']
[u'kestrel', u'clash', u'thunderbird']
[u'knight', u'roll', u'go', u'down', u'man']
[u'kookaburra', u'trounc', u'germani']
[u'lang', u'dead', u'age']
[u'unit', u'premiership', u'rival', u'notic']
[u'minist', u'urg', u'colleagu', u'forestri']
[u'mix', u'signal', u'iraqi', u'constitut']
[u'muslim', u'meet', u'combat', u'backlash']
[u'plan', u'takeov', u'report']
[u'nadal', u'battl', u'agassi', u'montreal', u'final']
[u'nasa', u'congratul', u'tidbinbilla', u'space', u'messag']
[u'nation', u'health', u'reform', u'need', u'beatti']
[u'nation', u'leader', u'reassur', u'region', u'uni']
[u'sign', u'greek', u'plane', u'crash', u'survivor']
[u'sign', u'miss', u'bushwalk']
[u'seek', u'improv', u'public', u'confid', u'court']
[u'polic', u'chief', u'promis', u'work', u'staff', u'resourc']
[u'polic', u'close', u'watch', u'tweed', u'head', u'paedophil']
[u'powel', u'confirm', u'starter', u'melbourn']
[u'princip', u'seek', u'review', u'report', u'card']
[u'bush', u'anti', u'demonstr', u'squar', u'texa']
[u'quick', u'wrong', u'beazley', u'say']
[u'rain', u'swing', u'odd', u'australia', u'favour']
[u'reform', u'busi', u'rule', u'brack']
[u'restor', u'trust', u'govern', u'confer', u'tell']
[u'eagl', u'lead', u'knight', u'half', u'time']
[u'shaun', u'mcrae', u'matthew', u'elliott', u'interview']
[u'goal', u'hall', u'inspir', u'swan']
[u'southern', u'brown', u'bandicoot', u'live', u'adelaid']
[u'strand', u'heathrow', u'passeng', u'arriv', u'home']
[u'swan', u'easi', u'lion']
[u'tanzanian', u'win', u'straight', u'citi', u'surf']
[u'polic', u'search', u'miss', u'woman']
[u'teacher', u'prepar', u'negoti', u'govt']
[u'thousand', u'rememb', u'wwii', u'hero']
[u'charg', u'alleg', u'toddler', u'abduct']
[u'kill', u'crash']
[u'tidbinbilla', u'space', u'complex', u'celebr', u'birthday']
[u'tiger', u'lead', u'cowboy']
[u'tiger', u'seven', u'straight']
[u'toni', u'kemp', u'craig', u'bellami', u'interview']
[u'display', u'high', u'tech', u'iraq', u'battl', u'tool']
[u'diplomaci', u'forc', u'schroeder']
[u'vail', u'say', u'telstra', u'futur', u'fund']
[u'veteran', u'rememb', u'victori', u'pacif']
[u'beef', u'farmer', u'fear', u'export']
[u'investig', u'cement', u'produc', u'water', u'limit']
[u'nation', u'warn', u'chang']
[u'warn', u'fall', u'short', u'maiden', u'test']
[u'warn', u'save', u'follow', u'jone', u'blunder']
[u'wayn', u'bennett', u'nathan', u'brown', u'interview']
[u'weightlift', u'power']
[u'weightlift', u'power']
[u'stick', u'iraq', u'bush']
[u'year', u'tourism', u'plan', u'cater', u'region', u'need']
[u'accc', u'investig', u'state', u'own', u'wast', u'dispos']
[u'gaza', u'israel', u'quit', u'west', u'bank', u'abba']
[u'hour', u'palliat', u'care', u'servic', u'review']
[u'alumina', u'compani', u'court', u'spill']
[u'angler', u'survey', u'catch']
[u'anti', u'terror', u'focus', u'allow', u'boom', u'drug', u'trade']
[u'argentin', u'polic', u'confid', u'jail', u'elder', u'drug']
[u'artist', u'paint', u'differ', u'pictur', u'steal', u'work']
[u'assault', u'predict', u'rise', u'western']
[u'atherton', u'rememb', u'soldier', u'care']
[u'aussi', u'hold', u'test']
[u'australian', u'expat', u'untap', u'resourc']
[u'australia', u'chanc', u'victori', u'mcgrath']
[u'bali', u'case', u'hand', u'prosecutor']
[u'bank', u'express', u'london', u'stock', u'exchang']
[u'bank', u'share', u'slide', u'market', u'move']
[u'bass', u'expect', u'lure', u'angler', u'gippsland']
[u'beatti', u'say', u'wasnt', u'push', u'quit']
[u'beazley', u'econom', u'benefit', u'chang']
[u'beef', u'compani', u'forc', u'worker', u'leav', u'amid']
[u'bendigo', u'bank', u'boost', u'profit']
[u'blaze', u'damag', u'firm', u'offic']
[u'boomer', u'sweep', u'gaze']
[u'hospit', u'abseil', u'accid']
[u'boy', u'death', u'prompt', u'child', u'safeti', u'dept', u'question']
[u'stabl', u'cliff', u'fall']
[u'brogden', u'promis', u'major', u'verdict']
[u'broom', u'hous', u'price', u'near']
[u'brumbi', u'cast', u'doubt', u'lake', u'entranc']
[u'bundaberg', u'retir']
[u'bushfir', u'expert', u'assist', u'sumatran', u'battl']
[u'bushfir', u'inquiri', u'chief', u'return', u'ravag']
[u'elect', u'delay', u'poker', u'machin', u'decis']
[u'cabinet', u'hear', u'nation', u'telstra', u'demand']
[u'centr', u'link', u'fraud']
[u'effort', u'save', u'beef', u'processor']
[u'cheaper', u'hec', u'moot', u'eas', u'engin', u'shortag']
[u'children', u'driver', u'charg', u'drink', u'drive']
[u'citrus', u'grower', u'remain', u'firm', u'food', u'label']
[u'clearanc', u'parliament', u'guard', u'question']
[u'clijster', u'storm', u'second', u'titl']
[u'clinton', u'condemn', u'lankan', u'assassin']
[u'commerci', u'complex', u'develop', u'plough']
[u'communiti', u'support', u'campaign', u'better', u'dental']
[u'complac', u'consid', u'indigen', u'poverti', u'biggest']
[u'concern', u'delay', u'offend', u'regist', u'put']
[u'council', u'get', u'tougher', u'illeg', u'build']
[u'council', u'mini', u'port', u'fear']
[u'council', u'decid', u'retir', u'villag', u'builder']
[u'council', u'highlight', u'renew', u'energi', u'park']
[u'countri', u'urg', u'learn', u'dairi', u'deregul']
[u'darwin', u'celebr']
[u'deakin', u'avenu', u'honour', u'district', u'servic']
[u'dean', u'dash', u'glori', u'final', u'date']
[u'decis', u'loom', u'banana', u'levi', u'ballot']
[u'direct', u'vote', u'soon', u'begin', u'lobster', u'council']
[u'doctor', u'want', u'real', u'toowoomba', u'wait', u'list', u'reveal']
[u'drag', u'air', u'meninde', u'lake', u'studi', u'concern']
[u'driver', u'record', u'calder', u'highway']
[u'driver', u'face', u'cabl', u'beach', u'cost']
[u'dunn', u'rid', u'bull', u'australia']
[u'edward', u'meet', u'alcoa', u'spillag']
[u'england', u'turn', u'screw', u'australia']
[u'lead', u'peac', u'mission', u'aceh']
[u'expert', u'meet', u'develop', u'malaria', u'check']
[u'explos', u'truck', u'driver', u'strike']
[u'extrem', u'weather', u'hit', u'china']
[u'famili', u'ponder', u'public', u'farewel', u'lang']
[u'fear', u'live', u'risk', u'bypass', u'investig']
[u'fiji', u'minist', u'acquit', u'coup', u'charg']
[u'filipino', u'armi', u'claim', u'possess', u'bali', u'suspect']
[u'firefight', u'contain', u'north', u'bushfir']
[u'face', u'charg']
[u'hurt', u'motorcycl', u'crash']
[u'charg', u'hear', u'girl', u'cupboard', u'case']
[u'geraldton', u'hous', u'price', u'rise', u'percent']
[u'govern', u'oppos', u'bashir', u'sentenc', u'downer']
[u'govt', u'decid', u'deer', u'park', u'bypass']
[u'helmet', u'help', u'save', u'young', u'cyclist']
[u'higher', u'fuel', u'price', u'drive', u'demand', u'convers']
[u'high', u'price', u'fail', u'boost', u'wool', u'market']
[u'number', u'caus', u'death', u'hospit']
[u'hmas', u'anzac', u'home', u'month', u'stint']
[u'hmas', u'sydney', u'search', u'hope', u'fund']
[u'horror', u'weekend', u'central', u'western', u'road']
[u'hous', u'remain', u'cheap', u'kalgoorli']
[u'howard', u'reflect', u'debt', u'wwii', u'dead']
[u'ident', u'theft', u'warrant', u'access', u'think', u'say']
[u'illawarra', u'celebr', u'anniversari', u'wwii']
[u'indian', u'centr', u'sell', u'australian', u'detail']
[u'indonesia', u'aceh', u'rebel', u'sign', u'truce']
[u'industri', u'group', u'want', u'apprenticeship', u'overhaul']
[u'injur', u'cyclist', u'return', u'home', u'soon']
[u'injur', u'cyclist', u'olymp', u'hop']
[u'interview', u'glenn', u'mcgrath']
[u'investig', u'continu', u'fatal', u'south', u'east', u'crash']
[u'investig', u'cypriot', u'plane', u'crash', u'begin']
[u'law', u'face', u'senat', u'inquiri']
[u'israel', u'begin', u'gaza', u'strip', u'withdraw']
[u'japanes', u'repeat', u'wwii', u'apolog']
[u'reject', u'perform', u'rank']
[u'jewish', u'settler', u'ask', u'leav', u'gaza']
[u'judd', u'clear', u'seven', u'face', u'charg']
[u'judd', u'clear', u'seven', u'charg']
[u'kookaburra', u'second', u'germani']
[u'lead', u'recycl', u'plant', u'await', u'approv']
[u'lithgow', u'adult', u'store', u'wait', u'approv']
[u'lockyer', u'sidelin', u'final']
[u'long', u'time', u'championship', u'brave']
[u'receiv', u'formal', u'approach', u'macquari', u'bank']
[u'magic', u'merlyn', u'gat']
[u'die', u'speed', u'boat', u'mishap']
[u'march', u'wwii', u'commemor']
[u'martin', u'defend', u'indonesia', u'visit']
[u'maverick', u'coach', u'lament', u'grand', u'final', u'loss']
[u'mayor', u'women', u'claim', u'fail', u'earn', u'award']
[u'memor', u'commemor', u'despit', u'weather']
[u'memori', u'remain', u'vivid']
[u'michael', u'play', u'lion', u'injuri', u'toll', u'mount']
[u'michael', u'clear', u'lion', u'injuri', u'toll', u'mount']
[u'mickelson', u'edg', u'elkington', u'thriller']
[u'mine', u'compani', u'fin', u'nois', u'pollut']
[u'minist', u'defend', u'newborn', u'facil']
[u'minist', u'urg', u'driver', u'public', u'transport']
[u'chairman', u'stand']
[u'mottram', u'take', u'bronz', u'helsinki']
[u'clear', u'thailand', u'travel', u'rort']
[u'rais', u'alarm', u'gambl', u'legisl']
[u'reject', u'govt', u'food', u'label', u'pledg']
[u'nadal', u'overcom', u'agassi', u'lift', u'montreal', u'titl']
[u'nation', u'propos', u'million', u'road', u'develop']
[u'nationwid', u'strike', u'shut', u'bangladesh']
[u'group', u'breath', u'life', u'research', u'station']
[u'newli', u'autonom', u'bougainvill', u'flood']
[u'region', u'parti', u'tackl', u'green', u'polici']
[u'telstra', u'plan', u'bandaid', u'solut']
[u'zealand', u'lose', u'carter', u'break']
[u'danger', u'univers', u'takeov', u'stirl', u'say']
[u'engin', u'futur']
[u'plan', u'chang', u'taiwan', u'leader', u'downer']
[u'north', u'coast', u'rememb', u'wwii']
[u'sign', u'iraqi', u'constitut', u'deal']
[u'welcom', u'communiti', u'polic', u'post']
[u'nrma', u'call', u'cross', u'citi', u'tunnel', u'fee']
[u'move', u'transfer', u'paedophil']
[u'nuclear', u'dump', u'decis', u'pure', u'polit']
[u'nyiapar', u'peopl', u'claim', u'fortescu', u'forc']
[u'oppos', u'bali', u'bomb', u'sentenc', u'cut', u'howard', u'urg']
[u'opposit', u'question', u'delay']
[u'opposit', u'say', u'oversea', u'trip', u'show', u'martin']
[u'opposit', u'propos', u'censur', u'stanhop']
[u'orang', u'grove', u'owner', u'carr']
[u'paedophil', u'worri', u'tweed', u'resid']
[u'pair', u'face', u'court', u'drug']
[u'panther', u'seek', u'port', u'macquari', u'club']
[u'patel', u'past', u'know', u'govt', u'public', u'inquiri']
[u'paul', u'mortlock', u'mackay', u'fail', u'medic']
[u'rent', u'land', u'oxfam', u'tell', u'govern']
[u'phone', u'help', u'lose', u'skier']
[u'pilot', u'bodi', u'cypriot', u'plane', u'wreckag']
[u'plan', u'mildura', u'emerg', u'hour', u'clinic']
[u'plan', u'increas', u'speed', u'camera', u'zone', u'capit']
[u'oppn', u'tribut', u'wwii', u'generat']
[u'pledg', u'chang', u'wont', u'hurt', u'ordinari']
[u'polic', u'alert', u'indian', u'centr', u'fraud', u'claim']
[u'polic', u'halt', u'search', u'miss', u'bushwalk']
[u'polic', u'lose', u'appeal', u'fine']
[u'polic', u'probe', u'stop', u'shoot']
[u'polic', u'promis', u'continu', u'road', u'safeti', u'crackdown']
[u'polic', u'search', u'attempt', u'abduct']
[u'polic', u'search', u'miss', u'scooter']
[u'pope', u'look', u'youth', u'renew', u'church']
[u'portug', u'honour', u'humanitarian', u'work']
[u'post', u'mortem', u'road', u'crash', u'victim']
[u'protest', u'ralli', u'egyptian', u'presid']
[u'public', u'abus', u'drive', u'mayor', u'resign']
[u'push', u'women', u'councillor']
[u'plan', u'perman', u'hamilton', u'paramed']
[u'queensland', u'respons', u'health', u'beatti']
[u'quick', u'felt', u'pressur', u'retir']
[u'race', u'club', u'merger', u'discuss']
[u'radcliff', u'limo', u'final', u'enter', u'golden']
[u'rann', u'protest', u'possibl', u'bashir', u'sentenc']
[u'region', u'driver', u'warn', u'rise', u'fuel', u'price']
[u'renmark', u'club', u'back', u'plan', u'borrow']
[u'rescuer', u'help', u'beach', u'whale']
[u'resid', u'group', u'consid', u'flood', u'legal', u'action']
[u'review', u'recommend', u'land', u'right', u'reform']
[u'rice', u'industri', u'consid', u'diversifi']
[u'safeti', u'fear', u'spark', u'tree', u'remov']
[u'scientist', u'identifi', u'pine', u'forest', u'pest']
[u'screen', u'produc', u'seek', u'rescu', u'packag']
[u'search', u'bushwalk', u'resum', u'tomorrow']
[u'settlement', u'payment', u'consid', u'oberon']
[u'settler', u'notic', u'evacu', u'gaza', u'strip']
[u'sewerag', u'pipe', u'woe', u'close', u'broom', u'street']
[u'sexi', u'driver', u'direct', u'jam', u'bond']
[u'shire', u'plan', u'charg', u'driver', u'beach', u'access']
[u'shire', u'beat', u'saleyard', u'revamp']
[u'small', u'screen', u'replac', u'clergi', u'countri']
[u'speaker', u'investig', u'travel', u'rort', u'alleg']
[u'speed', u'motorcad', u'trial', u'overshadow', u'clark']
[u'strauss', u'warn', u'england', u'kill']
[u'studi', u'find', u'famili', u'fish', u'promot', u'harmoni']
[u'studi', u'show', u'strong', u'support', u'test']
[u'success', u'rodeo', u'mark']
[u'suicid', u'bomber', u'wound', u'baghdad', u'polic']
[u'sydney', u'pay', u'tribut', u'celebr']
[u'syphili', u'epidem', u'hit', u'sydney', u'communiti']
[u'return', u'paedophil', u'minist', u'say']
[u'accommod', u'industri', u'boom']
[u'tasmanian', u'mark', u'anniversari']
[u'telstra', u'competitor', u'protect', u'bush', u'servic']
[u'telstra', u'criticis', u'phone', u'outag']
[u'telstra', u'reject', u'exchang', u'secur', u'critic']
[u'telstra', u'contractor', u'pose', u'secur', u'risk']
[u'tender', u'call', u'natur', u'discoveri', u'centr']
[u'tender', u'close', u'pack', u'centr']
[u'thousand', u'mark']
[u'thousand', u'seek', u'market', u'bargain']
[u'tiger', u'announc', u'secur', u'review']
[u'townsvill', u'hold', u'dawn', u'servic', u'celebr']
[u'wound', u'blast', u'near', u'egypt', u'militari', u'airport']
[u'uncertain', u'futur', u'follow']
[u'defend', u'dentistri', u'cours', u'equip', u'shortag']
[u'union', u'fear', u'school', u'downgrad']
[u'review', u'buller', u'cours']
[u'unhappi', u'rank']
[u'test', u'iran', u'nuke', u'trace', u'diplomat']
[u'uranium', u'mine', u'debat', u'subsid', u'compani', u'say']
[u'victorian', u'commemor']
[u'visitor', u'centr', u'closur', u'caus', u'tourism']
[u'commemor', u'continu', u'today']
[u'thanksgiv', u'servic', u'enact']
[u'veteran', u'celebr']
[u'urg', u'parol', u'paedophil']
[u'wheat', u'grower', u'support', u'reform']
[u'wetland', u'park', u'plan', u'move', u'closer', u'realiti']
[u'whale', u'pair', u'spot', u'near', u'nineti', u'mile', u'beach']
[u'windsor', u'invit', u'rejoin', u'nation']
[u'catch', u'wheel', u'parent']
[u'dead', u'nato', u'helicopt', u'crash', u'afghanistan']
[u'job', u'chang', u'health', u'merger']
[u'dead', u'guatemala', u'prison', u'gang', u'battl']
[u'conting', u'plan', u'rail', u'timet']
[u'abattoir', u'closur', u'cost', u'communiti']
[u'aborigin', u'astronom', u'mytholog', u'star']
[u'accc', u'put', u'children', u'nightwar', u'safeti']
[u'aceh', u'rebel', u'leap', u'faith']
[u'acquisit', u'computershar', u'profit']
[u'actu', u'urg', u'inquiri', u'clear', u'confus']
[u'aid', u'drug', u'deal', u'improv', u'avail']
[u'spend', u'fair', u'poor', u'nation', u'chariti']
[u'anaesthetist', u'debat', u'deal', u'tonight']
[u'andamooka', u'water', u'pipelin', u'need', u'volunt']
[u'angler', u'carp', u'reservoir', u'fish', u'woe']
[u'annan', u'order', u'procur', u'inspect']
[u'australia', u'hold', u'draw']
[u'author', u'search', u'fear', u'take']
[u'pois', u'fall', u'gillespi']
[u'bali', u'blast', u'victim', u'mother']
[u'bangkok', u'base', u'trawler', u'catch', u'darwin']
[u'bank', u'telco', u'push', u'ord', u'record', u'close']
[u'barrichello', u'leav', u'ferrari']
[u'beazley', u'address', u'trucki', u'ralli']
[u'bok', u'pressur', u'wallabi', u'scrum', u'ball']
[u'brack', u'consid', u'fund', u'plug', u'polic', u'file']
[u'brother', u'move', u'sell', u'korp', u'diari']
[u'bundaberg', u'hospit', u'inquiri', u'deadlin', u'slip']
[u'bush', u'hail', u'effort', u'forg', u'iraqi', u'constitut']
[u'cana', u'determin', u'fight', u'dope']
[u'captainci', u'grab', u'hird', u'signal']
[u'chang', u'duti', u'care', u'onus', u'corpor', u'farm']
[u'chimp', u'shed', u'light', u'handed']
[u'smith', u'develop', u'challeng', u'continu']
[u'claim', u'author', u'regul', u'unqualifi']
[u'cole', u'myer', u'consid', u'split']
[u'cole', u'myer', u'sale']
[u'competitor', u'woe', u'boost', u'cochlear', u'profit']
[u'consular', u'assist', u'offer', u'crash', u'victim', u'famili']
[u'coron', u'find', u'safeti', u'breach', u'fatal', u'truck', u'crash']
[u'council', u'back', u'develop', u'plan']
[u'council', u'code', u'conduct', u'report', u'loom']
[u'council', u'consid', u'hospit', u'develop', u'plan']
[u'council', u'consid', u'clarenza', u'hous', u'plan']
[u'court', u'allow', u'releas', u'korp', u'video']
[u'crash', u'victim', u'famili', u'head', u'cyprus']
[u'cutjar', u'consid', u'deputi', u'mayor', u'role']
[u'decis', u'loom', u'mall', u'birdcag', u'cover']
[u'develop', u'snap', u'shop', u'centr', u'project']
[u'downer', u'hail', u'aceh', u'peac', u'deal']
[u'downer', u'prais', u'israel', u'gaza', u'strip', u'withdraw']
[u'dozen', u'injur', u'japan', u'quak']
[u'drink', u'drive', u'father', u'await', u'sentenc', u'son']
[u'driver', u'accus', u'drink', u'breath']
[u'driver', u'licenc', u'chang', u'help', u'work', u'backpack']
[u'elkington', u'snub', u'presid']
[u'engin', u'promot', u'career']
[u'england', u'deserv', u'australia', u'respect']
[u'explos', u'detect', u'get', u'million', u'grant']
[u'fail', u'legal', u'action', u'coron', u'cost', u'million']
[u'farmer', u'urg', u'safe']
[u'feder', u'overhaul', u'hewitt', u'rank', u'record']
[u'feder', u'struggl', u'past', u'blake', u'return', u'match']
[u'home', u'buyer', u'urg', u'bush']
[u'charg', u'million', u'super', u'scam']
[u'flower', u'tree', u'attract', u'apiarist']
[u'stand', u'nativ', u'titl', u'agreement']
[u'food', u'shortag', u'threaten', u'niger', u'nomad', u'oxfam']
[u'health', u'minist', u'like', u'morri']
[u'sport', u'teacher', u'admit', u'student']
[u'woolnorth', u'manag', u'fin', u'anim', u'cruelti']
[u'fossil', u'forest', u'point', u'rapid', u'climat', u'chang']
[u'fourth', u'person', u'charg', u'businessman', u'kidnap']
[u'fresh', u'alleg', u'iraqi', u'prison', u'abus', u'emerg']
[u'fund', u'seek', u'youth', u'work', u'studi']
[u'gallop', u'ask', u'interven', u'paedophil', u'parol']
[u'garden', u'revamp']
[u'gerrard', u'pin', u'owen', u'return']
[u'govt', u'know', u'green', u'woe']
[u'govt', u'reject', u'cootamundra', u'tumut', u'rail', u'line', u'fund']
[u'govt', u'urg', u'realiti', u'check', u'indigen']
[u'grand', u'hotel', u'like', u'sell', u'despit', u'reopen']
[u'gregan', u'defiant', u'face', u'quit', u'call']
[u'group', u'fight', u'rail', u'bridg', u'roadwork']
[u'gryll', u'cast', u'doubt', u'local', u'govt', u'merger']
[u'higher', u'fuel', u'price', u'prompt', u'switch']
[u'high', u'temp', u'impact', u'spring', u'rain', u'forecast']
[u'human', u'like', u'skin', u'help', u'robot', u'sens', u'heat']
[u'hundr', u'arrest', u'violent', u'gaza', u'protest']
[u'hussey', u'brother', u'run']
[u'iemma', u'face', u'crisi']
[u'independ', u'bodi', u'overse', u'heritag', u'list']
[u'independ', u'prepar', u'nation', u'fight']
[u'inquiri', u'examin', u'local', u'govt', u'financi']
[u'internet', u'fuel', u'illeg', u'wildlif', u'trade', u'studi']
[u'investig', u'begin', u'brisban', u'river', u'collis']
[u'iranian', u'form', u'human', u'chain', u'disput', u'nuclear', u'plant']
[u'irrig', u'trust', u'doubt', u'water', u'restrict', u'respit']
[u'think', u'blow', u'pont']
[u'japan', u'quak', u'trigger', u'tsunami', u'alert']
[u'japan', u'rock', u'power', u'quak']
[u'japan', u'upgrad', u'quak', u'magnitud']
[u'joyc', u'oppos', u'telstra', u'sale']
[u'juri', u'dismiss', u'petroulia', u'trial']
[u'kidnap', u'iraqi', u'canadian', u'dead']
[u'land', u'right', u'chang', u'secondari', u'concern']
[u'latest', u'doctor', u'resign', u'trigger', u'patient']
[u'latham', u'rule', u'bok', u'test']
[u'lennon', u'music', u'imagin', u'life', u'beatl']
[u'local', u'busi', u'benefit', u'buy', u'centr']
[u'lockyer', u'tahu', u'face', u'time', u'sidelin']
[u'lockyer', u'final', u'bronco']
[u'malaysian', u'logger', u'take', u'revenu', u'expert']
[u'give', u'girl', u'heroin', u'exchang', u'court']
[u'kill', u'hous']
[u'lie', u'asio', u'terror', u'suspect', u'court', u'tell']
[u'risk', u'backstair', u'passag', u'swim', u'chariti']
[u'matai', u'challeng', u'high', u'tackl', u'charg']
[u'mcgrath', u'best', u'number']
[u'measur', u'seek', u'improv', u'traffic', u'flow']
[u'medibank', u'privat', u'sale', u'consider']
[u'suffer', u'cook', u'burn', u'unit', u'blaze']
[u'industri', u'urg', u'encourag', u'safeti']
[u'mix', u'respons', u'delay', u'council', u'meet']
[u'evid', u'need', u'cemeteri', u'attack']
[u'govern', u'support', u'conserv', u'scheme']
[u'speed', u'camera', u'overreact']
[u'submiss', u'take', u'marin', u'park']
[u'water', u'coorong', u'urgent', u'need']
[u'motorist', u'urg', u'slow']
[u'back', u'poki', u'review']
[u'threaten', u'quit', u'power', u'plant']
[u'mulan', u'petrol', u'bowser']
[u'murder', u'charg', u'drop', u'death', u'custodi', u'case']
[u'mysteri', u'reptil', u'elud', u'captur', u'park']
[u'nation', u'accus', u'steal', u'credit', u'telstra']
[u'caloundra', u'courthous', u'open']
[u'hous', u'plan', u'incom', u'earner']
[u'decis', u'telstra', u'sale', u'costello', u'say']
[u'suburb', u'name', u'orang']
[u'survivor', u'venezuela', u'plane', u'crash', u'offici']
[u'know', u'paedophil', u'move']
[u'cattl', u'export', u'buck', u'nationwid', u'trend']
[u'parliament', u'pass', u'nuclear', u'dump', u'motion']
[u'reward', u'game']
[u'oilse', u'plant', u'provid', u'job', u'boost']
[u'spill', u'clean', u'cost', u'reach']
[u'oliv', u'spring', u'carniv']
[u'onesteel', u'post', u'profit']
[u'opposit', u'claim', u'busi', u'ask', u'bale', u'water']
[u'opposit', u'question', u'huge', u'surplus']
[u'opposit', u'say', u'drug', u'court', u'better', u'late']
[u'outlook', u'cotton', u'price', u'remain', u'grim']
[u'parliament', u'toughen', u'bail', u'repeat']
[u'pearl', u'farm', u'get', u'ahead']
[u'consid', u'lang', u'condol', u'motion']
[u'encourag', u'push', u'reform']
[u'polic', u'charg', u'drug', u'oper']
[u'policeman', u'save', u'woman', u'burn', u'hous']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'young', u'road', u'crash', u'victim']
[u'polic', u'rethink', u'drug', u'fight', u'tactic']
[u'polic', u'review', u'nightclub', u'loiter', u'incid']
[u'polic', u'work', u'stop', u'illeg', u'trail', u'bike', u'rid']
[u'potenti', u'crop', u'export', u'china']
[u'power', u'worker', u'discuss', u'disciplinari', u'penalti']
[u'premier', u'chang', u'region', u'tour']
[u'premier', u'ponder', u'scrap', u'leaki', u'polic', u'file']
[u'probe', u'continu', u'bucca', u'fatal', u'crash']
[u'public', u'school', u'princip', u'seek', u'pariti']
[u'public', u'warn', u'escape', u'danger']
[u'coalit', u'joyc', u'say']
[u'worker', u'extra', u'week']
[u'rail', u'crash', u'investig', u'return', u'home']
[u'rain', u'boost', u'wheatbelt', u'crop']
[u'rainwat', u'tank', u'supplier', u'question', u'rebat', u'condit']
[u'region', u'stage', u'protest']
[u'renew', u'energi', u'plant', u'consider']
[u'research', u'centr', u'take', u'nation', u'approach']
[u'resid', u'worri']
[u'reynold', u'defend', u'child', u'safeti', u'effort']
[u'road', u'crash', u'victim', u'trap', u'wreckag']
[u'rodeo', u'chariti', u'cash', u'look', u'good']
[u'rugbi', u'player', u'famili', u'good', u'behaviour', u'bond']
[u'russia', u'admit', u'bird', u'outbreak', u'dead', u'strain']
[u'russia', u'cosmonaut', u'set', u'record', u'day', u'space']
[u'salvo', u'domest', u'violenc', u'program', u'win', u'repriev']
[u'savag', u'wont', u'join', u'countri', u'allianc']
[u'school', u'upset', u'wimmera']
[u'scientist', u'grow', u'pure', u'nerv', u'stem', u'cell']
[u'scientist', u'search', u'croc', u'biotic']
[u'search', u'fail', u'miss', u'bushwalk']
[u'search', u'resum', u'miss', u'bushwalk']
[u'search', u'miss', u'bushwalk']
[u'senat', u'decid', u'inquiri']
[u'septic', u'tank', u'waterway', u'pollut', u'claim']
[u'sever', u'weather', u'warn', u'continu']
[u'sexual', u'assault', u'rise', u'rockhampton']
[u'sharapova', u'head', u'gold', u'coast']
[u'sharon', u'say', u'strip', u'retain', u'forev']
[u'sky', u'limit', u'england', u'vaughan', u'insist']
[u'snow', u'season', u'pick']
[u'socceroo', u'start', u'hiddink']
[u'springborg', u'dial', u'need', u'better', u'urban', u'servic']
[u'stanhop', u'rule', u'bushfir', u'coron', u'challeng']
[u'state', u'bicker', u'paedophil', u'transfer']
[u'studi', u'highlight', u'prom', u'blaze', u'tourism', u'impact']
[u'surfer', u'group', u'manag', u'schooli']
[u'suspens', u'sidelin', u'brown', u'season']
[u'tambellup', u'footi', u'club', u'hop', u'bounc']
[u'technolog', u'bring', u'medic', u'screen', u'remot', u'kid']
[u'telstra', u'plan', u'caus', u'friction']
[u'tiger', u'hawk', u'clash', u'graham']
[u'time', u'run', u'shire', u'merger', u'plan']
[u'tornado', u'coastal', u'town']
[u'trio', u'refus', u'bail', u'million', u'super', u'scam']
[u'troubl', u'meatwork', u'continu', u'trade']
[u'truck', u'driver', u'strike', u'continu']
[u'trucki', u'drive', u'home', u'messag']
[u'trujillo', u'regul', u'gripe', u'beli', u'telstra', u'record']
[u'umpir', u'rule', u'border', u'pathet', u'thoma']
[u'urg', u'poor', u'rank', u'wake']
[u'urin', u'power', u'micro', u'batteri', u'help', u'test']
[u'firm', u'win', u'australian', u'defenc', u'design', u'contract']
[u'vet', u'chariti', u'walk', u'get', u'strong', u'support']
[u'govt', u'ponder', u'tougher', u'law', u'young', u'driver']
[u'violent', u'crime', u'rise', u'gippsland']
[u'visit', u'doctor', u'person', u'disput']
[u'visit', u'doctor', u'hand', u'resign']
[u'water', u'pipelin', u'work', u'go', u'smooth']
[u'water', u'polic', u'reject', u'fundrais', u'claim']
[u'water', u'restrict', u'longer', u'barrier', u'clean']
[u'accus', u'horsham', u'focus']
[u'wollongong', u'host', u'nation', u'netbal', u'semi']
[u'woman', u'win', u'right', u'access', u'merci', u'document']
[u'women', u'cricket', u'steal']
[u'worldwid', u'hunt', u'begin', u'eas', u'skill', u'shortag']
[u'bomb', u'explod', u'bangladesh']
[u'super', u'fraud', u'accus', u'give', u'bail']
[u'free', u'melbourn', u'crash']
[u'wetland', u'project', u'criticis']
[u'wheelchair', u'taxi', u'plat']
[u'accc', u'concern', u'price', u'fix', u'dismiss']
[u'accus', u'millionair', u'murder', u'refus', u'bail']
[u'group', u'help', u'beef', u'produc']
[u'alinta', u'plan', u'boost', u'profit']
[u'peopl', u'kill', u'biggest']
[u'andren', u'slam', u'cabinet', u'telstra', u'sell']
[u'anti', u'protest', u'anger', u'local', u'texan']
[u'urg', u'nation', u'fruiti', u'cig']
[u'australian', u'missionari', u'killer', u'appeal']
[u'author', u'focus', u'bush', u'area', u'miss']
[u'author', u'investig', u'croc', u'attack']
[u'author', u'sell', u'charact', u'name', u'right']
[u'baker', u'happi', u'stay', u'deputi', u'mayor']
[u'balaclava', u'bandit', u'storm', u'mildura', u'golf', u'club']
[u'bashir', u'bali', u'bomb', u'sentenc']
[u'berdych', u'belt', u'nadal', u'derail', u'spaniard', u'streak']
[u'crowd', u'expect', u'oppos', u'civic', u'centr', u'plan']
[u'biki', u'gang', u'charg', u'shoot']
[u'billboard', u'highway']
[u'blast', u'rock', u'bangladeshi', u'citi', u'injur']
[u'brogden', u'propos', u'name', u'young', u'offend']
[u'power', u'price', u'rethink']
[u'yard', u'continu', u'despit']
[u'citrus', u'grower', u'resign', u'accept', u'canker', u'packag']
[u'clark', u'battl', u'injuri']
[u'coast', u'confer', u'film', u'industri']
[u'connolli', u'predict', u'subiaco', u'shoot']
[u'council', u'consid', u'opposit']
[u'council', u'urg', u'reject', u'chang']
[u'countri', u'allianc', u'bendigo', u'candid']
[u'court', u'overturn', u'ballarat', u'petrol', u'price', u'fix', u'rule']
[u'cowboy', u'coach', u'readi', u'demot', u'player']
[u'critic', u'umpir', u'worsfold']
[u'crowd', u'call', u'reopen', u'hickey', u'inquest']
[u'dairi', u'factori', u'tri', u'worker']
[u'dairi', u'worker', u'return', u'work']
[u'danger', u'weapon', u'destroy', u'polic', u'crackdown']
[u'consid', u'court', u'judgment', u'catt', u'retrial']
[u'delay', u'name', u'colleg', u'oper']
[u'demand', u'stretch', u'ambul', u'servic', u'resourc']
[u'disabl', u'carer', u'protest']
[u'dollar', u'deal', u'secur', u'convent', u'centr', u'upgrad']
[u'downer', u'play', u'china', u'assassin', u'claim']
[u'consid', u'appeal', u'aborigin', u'elder']
[u'eat', u'fruit', u'veget', u'arthriti']
[u'odwyer', u'sign', u'gold', u'coast']
[u'ekka', u'holiday', u'risk', u'chang', u'actu']
[u'ellison', u'reject', u'estim', u'slave', u'number']
[u'famili', u'friend', u'mourn', u'leader', u'privat']
[u'fan', u'rock', u'memori', u'elvi']
[u'fear', u'independ', u'propos', u'children']
[u'feder', u'accus', u'mayor', u'intimid']
[u'govt', u'criticis', u'food', u'label', u'law']
[u'field', u'back', u'senat', u'approv', u'govt']
[u'resid', u'evict', u'main', u'gaza', u'settlement']
[u'flood', u'affect', u'farmer', u'financi']
[u'fli', u'liquor', u'licens', u'squad', u'check', u'central']
[u'leagu', u'captain', u'farrel', u'readi', u'union']
[u'fourth', u'charg', u'super', u'fund', u'fraud']
[u'court', u'cannabi']
[u'franc', u'slump', u'post', u'world', u'rank']
[u'freddi', u'rise']
[u'gascoyn', u'festiv', u'start', u'back']
[u'geoffrey', u'william', u'shooter', u'releas']
[u'govt', u'promis', u'continu', u'maryborough', u'support']
[u'govt', u'talk', u'year', u'hous', u'plan']
[u'govt', u'urg', u'protect', u'northern', u'water']
[u'govt', u'decid', u'tweed', u'council', u'legal', u'action']
[u'grain', u'produc', u'forecast', u'healthi', u'season']
[u'green', u'concern', u'gunn', u'wast', u'dump', u'plan']
[u'griffith', u'water', u'contamin', u'scare']
[u'group', u'suggest', u'event', u'licens', u'solut']
[u'gunn', u'amend', u'pulp', u'propos']
[u'gunn', u'order', u'legal', u'cost', u'payment']
[u'gunn', u'order', u'court', u'cost']
[u'hamstr', u'injuri', u'forc', u'gerrard', u'withdraw']
[u'hewitt', u'return', u'win', u'form', u'ill']
[u'hexham', u'factori', u'blaze', u'investig']
[u'hiddink', u'impress', u'socceroo']
[u'hill', u'unveil', u'militari', u'tech', u'futur']
[u'hors', u'breed', u'dynasti', u'call']
[u'bemus', u'code', u'conduct']
[u'hudson', u'crow', u'premiership']
[u'hull', u'chang', u'telstra', u'stanc']
[u'humpback', u'see', u'townsvill']
[u'respons', u'blame', u'sharon']
[u'iemma', u'open', u'hospit', u'emerg', u'dept', u'extens']
[u'index', u'find', u'econom', u'growth']
[u'indonesia', u'free', u'aceh', u'rebel']
[u'iraqi', u'warn', u'turmoil', u'constitut', u'delay']
[u'chang', u'includ', u'tougher', u'bulli', u'law']
[u'chang', u'worri', u'western', u'teacher']
[u'isra', u'troop', u'polic', u'expect', u'troubl']
[u'isra', u'troop', u'expel', u'gaza', u'settler']
[u'isra', u'troop', u'pour', u'gaza']
[u'itali', u'question', u'thousand', u'extremist', u'crackdown']
[u'itali', u'extradit', u'london', u'bomb', u'suspect']
[u'jam', u'hardi', u'urg', u'finalis', u'compo', u'fund']
[u'joint', u'ventur', u'writedown', u'slash', u'ansel', u'profit']
[u'jone', u'make', u'chang', u'nation', u'clash']
[u'jone', u'stand', u'gregan']
[u'kerin', u'launch', u'liber', u'gambier', u'campaign']
[u'help', u'stroke', u'victim', u'launch']
[u'knight', u'prepar', u'face', u'pump', u'warrior']
[u'landown', u'enter', u'voluntari', u'conserv', u'agreement']
[u'leighton', u'profit', u'track']
[u'lend', u'leas', u'report', u'busi', u'wide', u'growth']
[u'lightn', u'take', u'denmark', u'recept']
[u'local', u'telstra', u'manag', u'quit']
[u'local', u'vmos', u'plan', u'disput']
[u'macquari', u'bank', u'open', u'newcastl', u'offic']
[u'mayor', u'angri', u'virgin', u'flight', u'decis']
[u'milan', u'offer', u'solv', u'juve', u'goalkeep', u'crisi']
[u'minist', u'highlight', u'success', u'indigen']
[u'miss', u'fisherman', u'island']
[u'mitchel', u'helidon', u'driver', u'return', u'work', u'wage']
[u'momentum', u'mcgrath']
[u'morwel', u'plead', u'guilti', u'murder']
[u'murray', u'readi', u'demot', u'perform', u'cowboy']
[u'music', u'lover', u'snap', u'ticket', u'fall', u'festiv']
[u'nation', u'approv', u'polit', u'group']
[u'nation', u'stanc']
[u'nat', u'want', u'black', u'resign', u'health', u'loss']
[u'flinder', u'hand', u'record', u'fine', u'blackout']
[u'fulli', u'suspend', u'yuendumu', u'council']
[u'kill', u'wound', u'buddhist', u'templ', u'bomb']
[u'opinion', u'divid', u'report', u'card', u'chang']
[u'opposit', u'want', u'infect', u'report']
[u'paedophil', u'imprison', u'say']
[u'pain', u'free', u'mules', u'begin']
[u'pair', u'charg', u'polic', u'assault']
[u'parol', u'offic', u'suspend', u'paedophil', u'transfer']
[u'partial', u'telstra', u'sale', u'option']
[u'passeng', u'throw']
[u'perth', u'miner', u'look', u'invest']
[u'philippin', u'say', u'foil', u'bomb', u'plot', u'embassi']
[u'apologis', u'bashir', u'sentenc', u'reduct']
[u'honour', u'solomon', u'island', u'highest', u'award']
[u'premier', u'dragon', u'eel']
[u'polic', u'academi', u'cut', u'water']
[u'polic', u'arrest', u'moroccan', u'want', u'madrid', u'bomb']
[u'polic', u'ball', u'cancel']
[u'polic', u'charg', u'pursuit']
[u'polic', u'consid', u'schooli', u'safeti', u'improv']
[u'polic', u'council', u'sign', u'fin', u'deal']
[u'polic', u'crack', u'kava', u'ring']
[u'polic', u'drop', u'abus', u'charg', u'foster', u'mother']
[u'polic', u'road', u'crash', u'trio', u'final', u'moment']
[u'polic', u'recaptur', u'escape']
[u'polic', u'triall', u'random', u'drug', u'test', u'driver']
[u'polic', u'road', u'crash', u'victim']
[u'poll', u'show', u'drop', u'support', u'beatti']
[u'pont', u'mark', u'graduat', u'captain', u'waugh']
[u'power', u'boat', u'event', u'insur', u'spotlight']
[u'pressur', u'group', u'lobbi', u'hume', u'highway']
[u'primus', u'corn', u'doubt', u'lion', u'clash']
[u'public', u'urg', u'deep', u'vinni', u'doorknock']
[u'author', u'shoot', u'metr', u'crocodil']
[u'firefight', u'embark', u'oversea', u'mission']
[u'quoll', u'surpris', u'magnet']
[u'rain', u'improv', u'africa', u'crop', u'outlook']
[u'ranger', u'shoot', u'suspect', u'killer', u'croc']
[u'ranger', u'spot', u'suspect', u'killer', u'croc']
[u'want', u'defibril', u'mildura', u'airport']
[u'redcliff', u'chatsworth', u'elect', u'loom']
[u'report', u'disput', u'polic', u'account', u'brazilian', u'man']
[u'rescu', u'servic', u'disappoint', u'fund', u'snub']
[u'resid', u'offer', u'storag', u'safeti', u'assur']
[u'resid', u'unit', u'rais', u'opposit']
[u'resourc', u'group', u'seek', u'better', u'safeti']
[u'respons', u'roll', u'broom', u'growth', u'report']
[u'retir', u'care', u'australia', u'buy', u'age', u'care', u'centr']
[u'risdon', u'prison', u'guard', u'lift', u'overtim', u'ban']
[u'riverland', u'town', u'face', u'challeng']
[u'road', u'safeti', u'group', u'tougher', u'stanc', u'young']
[u'ruddock', u'reject', u'fraser', u'terror', u'critic']
[u'jungl', u'tip', u'uranium']
[u'rumsfeld', u'reiter', u'iran', u'weapon', u'smuggl', u'claim']
[u'earthquak', u'independ', u'japanes', u'tremor']
[u'searcher', u'fail', u'miss', u'bushwalk']
[u'search', u'suspend', u'amid', u'poor', u'weather']
[u'search', u'miss', u'fishermen']
[u'sexual', u'predat', u'jail', u'teen', u'girl']
[u'skywest', u'licenc', u'lift', u'esper', u'tourism', u'hop']
[u'sonni', u'charg', u'drink', u'drive']
[u'sonni', u'sorri', u'drink', u'drive']
[u'south', u'east', u'forest', u'product', u'council', u'input']
[u'specialist', u'worri', u'prospect', u'vmos', u'walkout']
[u'spray', u'contracept', u'prevent', u'weed', u'seed']
[u'springbok', u'unchang', u'squad', u'play', u'wallabi']
[u'state', u'govt', u'ask', u'help', u'search', u'sydney']
[u'strong', u'market', u'put', u'ahead', u'profit', u'target']
[u'studi', u'find', u'fund', u'boost', u'eas', u'teacher']
[u'supermarket', u'develop', u'approv', u'loom']
[u'govt', u'urg', u'offset', u'rise', u'petrol', u'price', u'cost']
[u'teen', u'hospit', u'meningococc']
[u'telstra', u'critic', u'govern', u'sale', u'condit']
[u'telstra', u'sale', u'edg', u'closer']
[u'telstra', u'sale']
[u'thoma', u'strife', u'say', u'demetriou']
[u'charg', u'drug', u'raid']
[u'tommi', u'suharto', u'get', u'reduct', u'prison', u'sentenc']
[u'ranger', u'monitor', u'buffalo']
[u'tornado', u'astound', u'polic', u'offic']
[u'tour', u'tasmania']
[u'traine', u'specialist', u'posit', u'announc']
[u'tripl', u'bomb', u'baghdad', u'kill']
[u'charg', u'cannabi', u'claim']
[u'dead', u'bomb', u'explod']
[u'unqualifi', u'staff', u'rais', u'concern', u'school']
[u'fall', u'resourc', u'drag', u'market']
[u'zealand', u'defenc', u'tie', u'warm']
[u'vandal', u'blame', u'broom', u'power', u'cut']
[u'vanston', u'agre', u'releas', u'detaine', u'inform']
[u'vizard', u'secret', u'cash', u'fund', u'bookkeep', u'say']
[u'vmos', u'expect', u'affect', u'hospit']
[u'threaten', u'canberra', u'childcar', u'beazley']
[u'wag', u'growth', u'unlik', u'impact', u'reserv', u'bank']
[u'wallsend', u'age', u'care', u'facil']
[u'wellington', u'school', u'cope', u'influx', u'student']
[u'wesley', u'colleg', u'head', u'resign']
[u'wind', u'farm', u'call', u'public', u'opinion']
[u'woman', u'die', u'road', u'crash']
[u'woodsid', u'profit', u'drop']
[u'wool', u'price', u'impact', u'pastor', u'properti', u'valu']
[u'worker', u'replac', u'cross', u'citi', u'tunnel', u'fan']
[u'worker', u'welcom', u'long', u'contract', u'reviv']
[u'wrong', u'detent', u'news', u'vanston']
[u'yarram', u'seek', u'fund', u'indigen']
[u'zimbabw', u'reject', u'report', u'demolit']
[u'accc', u'pleas', u'sell', u'plan']
[u'trial', u'fourth', u'field', u'umpir']
[u'trial', u'field', u'umpir']
[u'arrest', u'bangladesh', u'bomb']
[u'welcom', u'health', u'dept', u'shake']
[u'amaz', u'ash', u'drag', u'cricket', u'britain']
[u'american', u'serengeti', u'need', u'save', u'larg', u'mammal']
[u'arrent', u'council', u'aim', u'avoid', u'mistak', u'past']
[u'asbesto', u'scare', u'close', u'latec', u'redevelop']
[u'aussi', u'master', u'sultan', u'swing', u'say', u'langer']
[u'aust', u'parent', u'italian', u'traffic', u'accid']
[u'aust', u'soldier', u'know', u'iraq', u'prison', u'issu']
[u'author', u'need', u'time', u'croc', u'attack', u'victim']
[u'author', u'clear', u'shell', u'refineri', u'pollut']
[u'averag', u'week', u'earn', u'rise']
[u'launch', u'probe', u'heathrow', u'strike']
[u'bali', u'blast', u'victim', u'criticis', u'bashir', u'sentenc']
[u'bali', u'victim', u'slam', u'govt', u'bashir', u'effort']
[u'beaudesert', u'mayor', u'question', u'telstra', u'sale']
[u'berrigan', u'bronco']
[u'quak', u'region', u'citi']
[u'bok', u'fear', u'gregan', u'wound', u'pride']
[u'broom', u'leader', u'plant', u'brief']
[u'elect', u'candid', u'leav', u'phone', u'messag']
[u'public', u'protect', u'rail', u'trail']
[u'yard', u'blaze', u'prove', u'cost']
[u'casino', u'see', u'northern', u'river', u'industri']
[u'central', u'west', u'seek', u'brand', u'brag']
[u'virus', u'hold', u'holden', u'car', u'product']
[u'worm', u'hit', u'media', u'compani']
[u'concern', u'plan', u'iraqi', u'hang']
[u'coron', u'urg', u'public', u'help', u'identifi', u'bodi']
[u'council', u'approv', u'black', u'beach', u'hous', u'estat']
[u'council', u'consid', u'fate', u'year', u'parti']
[u'council', u'interview', u'director', u'candid']
[u'council', u'say', u'drive', u'bottl', u'shop']
[u'council', u'outlin', u'fund', u'distribut']
[u'council', u'welcom', u'warehous']
[u'court', u'send', u'sale', u'youth', u'train', u'centr']
[u'credit', u'card', u'reform', u'save', u'busi', u'reserv', u'say']
[u'crow', u'death', u'investig']
[u'danc', u'parti', u'promot', u'face', u'sexual', u'assault', u'trial']
[u'deak', u'keen', u'overcom', u'hamstr', u'injuri']
[u'decis', u'pend', u'south', u'coast', u'water', u'pipelin']
[u'dept', u'head', u'order', u'review', u'polic', u'file', u'leak']
[u'educ', u'offic', u'stand', u'colleg', u'announc']
[u'eel', u'lose', u'morrison']
[u'emerald', u'grower', u'guarante', u'canker']
[u'engin', u'troubl', u'spark', u'fuel', u'test']
[u'england', u'humili', u'zidan', u'reborn']
[u'english', u'tourist', u'rescu', u'kimberley']
[u'soldier', u'escap', u'prison', u'stab']
[u'fall', u'japanes', u'visitor', u'number', u'worri', u'tourism']
[u'famili', u'buri', u'victim', u'cypriot', u'plane', u'crash']
[u'famili', u'wineri', u'urg', u'success', u'plan']
[u'farm', u'group', u'want', u'better', u'telstra', u'deal']
[u'north', u'attack', u'spark', u'central', u'croc', u'fear']
[u'fatal', u'road', u'crash', u'trigger', u'polic', u'safeti', u'warn']
[u'father', u'jail', u'kill', u'drink', u'drive']
[u'fear', u'damag', u'swansea', u'bridg']
[u'fleme', u'sidestep', u'issu', u'zimbabw', u'test', u'status']
[u'flight', u'centr', u'profit', u'drop', u'percent']
[u'foreign', u'train', u'doctor', u'salari']
[u'forget', u'pope', u'ask', u'pilgrim', u'forgiv']
[u'forum', u'hop', u'solut', u'forster', u'health']
[u'troop', u'kill', u'roadsid', u'bomb', u'militari']
[u'french', u'famili', u'lucki', u'number', u'come']
[u'fuel', u'price', u'cut', u'airlin', u'profit']
[u'fund', u'seek', u'causeway', u'revamp']
[u'garrett', u'question', u'approv', u'abalon', u'farm']
[u'gaza', u'evacu', u'move', u'faster', u'expect', u'armi']
[u'gillespi', u'skipper']
[u'gold', u'coast', u'happi', u'odwyer', u'sign']
[u'govt', u'ask', u'embrac', u'colli', u'rescu', u'deal']
[u'govt', u'consid', u'stagger', u'telstra', u'sale']
[u'govt', u'increas', u'afghanistan', u'troop', u'commit']
[u'govt', u'tell', u'hospit', u'recruit', u'tape']
[u'govt', u'afghan', u'troop', u'commit']
[u'govt', u'urg', u'help', u'subsidis', u'merger', u'cost']
[u'govt', u'urg', u'review', u'john', u'ambul', u'contract']
[u'govt', u'wont', u'jump', u'truck', u'rego', u'fee']
[u'green', u'expand', u'sniff', u'fuel', u'roll']
[u'gregan', u'forc', u'media', u'jone']
[u'group', u'threaten', u'burn', u'tongan', u'govt', u'build']
[u'half', u'settlement', u'clear']
[u'hammer', u'complet', u'bellion', u'deal', u'takeov', u'loom']
[u'har', u'club', u'consid', u'financ', u'track', u'upgrad']
[u'health', u'dept', u'urg', u'calm', u'doubl']
[u'hewitt', u'play', u'adelaid', u'tournament']
[u'hiddink', u'field', u'strength']
[u'holm', u'consid', u'commonwealth']
[u'howard', u'relish', u'labor', u'senat', u'telstra', u'comment']
[u'hull', u'reject', u'grant', u'rort', u'claim']
[u'iemma', u'visit', u'state', u'central', u'west']
[u'import', u'adelaid', u'darwin', u'rail', u'link', u'benefit']
[u'indonesian', u'militari', u'accus', u'rape', u'tortur']
[u'injur', u'cyclist', u'return', u'home']
[u'injur', u'lappin', u'aim', u'xmas']
[u'decid', u'ferri', u'futur']
[u'isra', u'forc', u'storm', u'gaza', u'synagogu']
[u'isra', u'troop', u'showdown', u'gaza', u'settler']
[u'isra', u'troop', u'milit', u'settlement']
[u'jackson', u'fin', u'court']
[u'joyc', u'commit']
[u'juventus', u'abbiati', u'loan', u'rival', u'milan']
[u'kalgoorli', u'fight', u'better', u'telstra']
[u'korp', u'rule', u'moral', u'respons', u'wife', u'death']
[u'land', u'slip', u'victim', u'air', u'levi', u'reluct']
[u'lectur', u'focus', u'ningaloo', u'reef', u'preserv']
[u'littl', u'bashir', u'sentenc', u'howard']
[u'london', u'polic', u'increas', u'pressur']
[u'macquari', u'generat', u'water', u'licenc', u'review']
[u'malaysia', u'anwar', u'win', u'damag', u'libel', u'book']
[u'fin', u'tri', u'post', u'reptil', u'japan']
[u'trial', u'charg', u'murder', u'girlfriend']
[u'guilti', u'murder', u'babi']
[u'jail', u'prostitut', u'murder']
[u'mar', u'snicker', u'sale', u'packag', u'unchang']
[u'martin', u'rule', u'discuss', u'bashir', u'indonesian']
[u'meatwork', u'creditor', u'decid', u'liquid']
[u'mediat', u'work', u'bega', u'respit', u'facil', u'disput']
[u'meet', u'shed', u'littl', u'light', u'futur', u'taxi']
[u'meet', u'focus', u'polic', u'transfer', u'plan']
[u'member', u'hume', u'wont', u'vote', u'telstra', u'privatis']
[u'mickelson', u'peopl', u'champion']
[u'closur', u'put', u'job', u'doubt']
[u'miner', u'open', u'cobalt']
[u'minist', u'accus', u'lie', u'leak', u'polic', u'file']
[u'minist', u'claim', u'media', u'alert', u'polic']
[u'minist', u'refus', u'read', u'polic', u'leak', u'brief']
[u'miss', u'bushwalk', u'famili', u'continu', u'search']
[u'mix', u'view', u'competit', u'post', u'telstra', u'sale']
[u'singapor', u'exercis', u'urg', u'central']
[u'maintain', u'telstra', u'sale', u'opposit']
[u'lobbi', u'longreach', u'airport', u'upgrad']
[u'urg', u'help', u'stop', u'skyrocket', u'truck', u'rego', u'fee']
[u'multiplex', u'shrug', u'wembley', u'profit', u'hike']
[u'nation', u'sell', u'telstra', u'plan']
[u'look', u'pastoralist', u'head', u'kimberley']
[u'newman', u'polic', u'begin', u'work', u'station']
[u'shop', u'centr', u'propos', u'east', u'orang']
[u'wheat', u'varieti', u'save', u'grower', u'million']
[u'celebr', u'mark', u'toad', u'anniversari']
[u'contract', u'labour', u'plan', u'cargil']
[u'senat', u'miss', u'nuclear', u'dump', u'vote']
[u'odwyer', u'sign', u'import', u'gold', u'coast']
[u'giant', u'plan', u'expans', u'victoria']
[u'onlin', u'scammer', u'pose', u'exec', u'spear', u'phish']
[u'opposit', u'rais', u'concern', u'hospit', u'mental']
[u'opposit', u'urg', u'inquiri', u'meatwork']
[u'outpati', u'quiz', u'hospit', u'servic']
[u'paedophil', u'fli']
[u'parliamentari', u'committe', u'back', u'govt', u'plan', u'chang']
[u'parliament', u'guard', u'tell', u'mate']
[u'parol', u'paedophil', u'serv', u'jail', u'sentenc']
[u'patienc', u'beat', u'bok', u'jone']
[u'philippin', u'arrest', u'milit', u'suspect', u'juli']
[u'opposit', u'leader', u'arrest']
[u'polglas', u'unfaz', u'inquiri', u'legal', u'implic']
[u'polic', u'blame', u'gang', u'spate', u'theft']
[u'polic', u'investig', u'farm', u'bodi']
[u'polic', u'probe', u'break', u'knife', u'attack']
[u'polic', u'probe', u'death', u'threat', u'anti']
[u'polic', u'probe', u'murder', u'search']
[u'polic', u'raid', u'steal', u'wine']
[u'polic', u'tight', u'lip', u'patel', u'investig']
[u'pont', u'return', u'grass', u'root']
[u'pork', u'industri', u'tell', u'improv', u'competit']
[u'port', u'lincoln', u'council', u'welcom', u'rejoin', u'eplga']
[u'public', u'servic', u'shakeup', u'follow', u'bureaucrat']
[u'public', u'urg', u'help', u'catch', u'countri', u'club', u'bandit']
[u'qanta', u'ponder', u'fuel', u'levi', u'increas', u'despit', u'profit']
[u'qanta', u'worker', u'sick', u'cut', u'threat']
[u'nation', u'restat', u'commit', u'coalit']
[u'nation', u'concern', u'telstra', u'sale']
[u'ranger', u'human', u'remain', u'croc']
[u'rat', u'rise', u'expect']
[u'redevelop', u'geraldton', u'hospit', u'readi', u'open']
[u'reef', u'recoveri', u'year']
[u'releas', u'paedophil', u'return', u'custodi', u'perth']
[u'report', u'warn', u'hold', u'women', u'children']
[u'research', u'address', u'remot', u'area', u'labour', u'shortag']
[u'resid', u'opposit', u'civic', u'centr', u'plan']
[u'resort', u'construct', u'start', u'year']
[u'resourc', u'sector', u'drag', u'market', u'lower']
[u'roddick', u'edg', u'ferrero', u'feder', u'battl']
[u'sterilis', u'plan']
[u'vote', u'club', u'shop']
[u'rural', u'news', u'podcast', u'avail']
[u'sale', u'hospit', u'pictur', u'health']
[u'nation', u'push', u'share', u'bush', u'phone', u'fund']
[u'saudi', u'forc', u'kill', u'suspect', u'milit']
[u'search', u'continu', u'miss', u'fisherman']
[u'senat', u'urg', u'rethink', u'pulp', u'fund']
[u'worker', u'miss', u'woman']
[u'shell', u'reject', u'concern', u'geelong', u'refineri']
[u'soil', u'garden', u'scheme', u'attract']
[u'son', u'gwalia', u'founder', u'face', u'damag', u'claim']
[u'southern', u'seek', u'medic', u'specialist']
[u'spine', u'road', u'bypass', u'project', u'progress']
[u'lanka', u'extend', u'state', u'emerg']
[u'stock', u'shortag', u'forc', u'abattoir', u'open', u'delay']
[u'stun', u'waitress', u'get', u'porsch']
[u'scallop', u'fisherman', u'quota', u'suspens']
[u'teenag', u'safe', u'abduct', u'home']
[u'telstra', u'blame', u'norlink', u'failur']
[u'telstra', u'regul', u'find', u'balanc', u'say', u'coonan']
[u'telstra', u'phone', u'decis', u'shock', u'mother']
[u'thoma', u'await', u'fate', u'umpir', u'comment']
[u'toowoomba', u'silver', u'spike', u'team', u'good']
[u'increas', u'pressur']
[u'tourist', u'urg', u'awar', u'croc', u'danger']
[u'trio', u'face', u'court', u'accus', u'drink', u'drive']
[u'trucki', u'offer', u'tear', u'apolog', u'fatal', u'accid']
[u'tube', u'shoot', u'victim', u'famili', u'call', u'inquiri']
[u'turtl', u'gulf', u'clean']
[u'polic', u'chief', u'face', u'resign', u'tube']
[u'envoy', u'visit', u'burma', u'messag', u'annan']
[u'unhappi', u'vmos', u'meet', u'disput']
[u'union', u'pressur', u'jam', u'hardi', u'asbesto', u'compo']
[u'union', u'say', u'manag', u'deni', u'access']
[u'union', u'ralli', u'mildura', u'chang']
[u'secur', u'rare', u'wollemi', u'pine']
[u'victorian', u'urg', u'advic', u'revers', u'mortgag']
[u'vietnam', u'veteran', u'mark', u'north', u'queensland']
[u'vietnam', u'vet', u'honour', u'long', u'digger']
[u'vietnam', u'vet', u'wreath', u'long', u'anniversari']
[u'virgin', u'blue', u'issu', u'profit', u'warn']
[u'wallabi', u'ashley', u'cooper']
[u'parliament', u'tell', u'telstra', u'fund']
[u'wast', u'plant', u'site', u'committe', u'form', u'local']
[u'water', u'corp', u'monitor', u'ravensthorp', u'water', u'woe']
[u'bounc', u'denmark', u'fiasco', u'vow', u'beckham']
[u'wellington', u'council', u'sack', u'staff']
[u'wentworth', u'mayor', u'stand']
[u'wild', u'weather', u'wallop', u'wheatbelt']
[u'windsor', u'wont', u'telstra', u'bribe', u'claim']
[u'youth', u'charg', u'launceston', u'burglari']
[u'zimbabw', u'rais', u'tax', u'prop', u'economi']
[u'uranium', u'export', u'possibl', u'say']
[u'flour', u'boost', u'employ']
[u'win', u'dirti', u'ashtray', u'award']
[u'adelaid', u'unit', u'step']
[u'administr', u'appoint', u'grain', u'trader']
[u'administr', u'stand', u'son', u'gwalia', u'neglig']
[u'agreement', u'allow', u'pretti', u'pool', u'hous']
[u'amateur', u'taxidermist', u'bird', u'collect', u'earn']
[u'analyst', u'expect', u'price', u'downturn']
[u'anvil', u'concern', u'polic', u'investig']
[u'ash', u'seri', u'reviv', u'test', u'cricket', u'say', u'miandad']
[u'asylum', u'seeker', u'children', u'lose', u'fight', u'stay']
[u'thiev']
[u'attract', u'tourism', u'centr']
[u'ayr', u'guilti', u'sour', u'grape', u'thompson']
[u'bait', u'scheme', u'aim', u'number']
[u'bali', u'judg', u'deni', u'corbi', u'sentenc', u'rumour']
[u'baryugil', u'resid', u'join', u'hardi', u'protest']
[u'bashir', u'corbi', u'sentenc', u'imposs', u'understand']
[u'belong', u'miss', u'fisherman', u'discov']
[u'billabong', u'share', u'dive']
[u'build', u'compani', u'tell', u'lift', u'game']
[u'burn', u'victim', u'succumb', u'injuri']
[u'burundi', u'post', u'transit', u'presid', u'elect']
[u'cadav', u'exhibit', u'open', u'despit']
[u'qualifi', u'presser', u'australia']
[u'call', u'woorabinda', u'alcohol', u'ban']
[u'carbon', u'monoxid', u'poison', u'rule', u'cyprus']
[u'central', u'coast', u'marin', u'unchart', u'water']
[u'chang', u'afoot', u'pearl', u'festiv']
[u'chelsea', u'complet', u'deal', u'essien']
[u'children', u'book', u'council', u'winner', u'announc']
[u'ciobo', u'call', u'govt', u'releas', u'hospit', u'plan']
[u'coff', u'council', u'approv', u'banana', u'club', u'rezon']
[u'coff', u'host', u'match']
[u'committ', u'hear', u'begin', u'hostel', u'accus']
[u'communiti', u'group', u'end', u'supermarket', u'legal', u'battl']
[u'compani', u'talk', u'uranium', u'prospect']
[u'consult', u'examin', u'option', u'west', u'belconnen']
[u'cootamundra', u'track', u'rail', u'celebr']
[u'council', u'offer', u'condit', u'support', u'coal']
[u'council', u'staff', u'quiz', u'satisfact']
[u'court', u'fin', u'illeg', u'foreign', u'fishermen']
[u'court', u'rule', u'favour', u'transsexu', u'legal', u'action']
[u'cowboy', u'movi', u'inspir', u'worker']
[u'critic', u'stop', u'umpir', u'volunt', u'demetriou']
[u'cunnamulla', u'face', u'doctor', u'shortag', u'crisi']
[u'deep', u'creatur', u'discov']
[u'docker', u'snatch', u'gasp']
[u'downer', u'check', u'corbi', u'sentenc', u'rumour']
[u'appeal', u'tradit', u'elder', u'child', u'sentenc']
[u'drink', u'driver', u'get', u'year', u'jail', u'kill']
[u'drug', u'dealer', u'give', u'year', u'drive', u'shoot']
[u'eat', u'fruit', u'vege', u'arthriti', u'risk']
[u'eminem', u'hospitalis', u'sleep', u'pill', u'addict']
[u'eriksson', u'promis', u'better', u'england']
[u'fuel', u'tank', u'worker', u'offer', u'compens']
[u'farmer', u'safeti', u'needl', u'prevent', u'self']
[u'feder', u'hewitt', u'cincinnati', u'quarter']
[u'film', u'retain', u'rat']
[u'fitzroy', u'cross', u'airport', u'secur', u'upgrad']
[u'foetal', u'cell', u'help', u'heal', u'burn']
[u'forest', u'compani', u'make', u'record', u'profit']
[u'detaine', u'cop', u'life', u'outsid']
[u'minist', u'mowlam', u'die']
[u'worker', u'declar', u'compo']
[u'forum', u'hear', u'horticultur', u'code', u'concern']
[u'fruit', u'busi', u'look', u'better', u'financ', u'ahead']
[u'gaza', u'pull', u'complet']
[u'gehrig', u'play', u'injuri']
[u'geraldton', u'resid', u'hear', u'plan', u'nightclub']
[u'gippsland', u'green', u'unfaz', u'countri', u'allianc']
[u'golden', u'treasur', u'unearth', u'bulgaria']
[u'govt', u'provid', u'public', u'hous', u'boost']
[u'grain', u'trader', u'place', u'administr']
[u'group', u'call', u'action', u'prison', u'overcrowd']
[u'group', u'urg', u'discuss', u'indigen', u'represent']
[u'grower', u'frustrat', u'canker', u'compens']
[u'gust', u'korp', u'cash', u'brother', u'suicid']
[u'hammer', u'boost', u'takeov', u'talk']
[u'henjak', u'call', u'amid', u'gregan', u'injuri', u'concern']
[u'highway', u'death', u'trap', u'motorist', u'racq']
[u'homesick', u'teggart', u'leav', u'perth', u'glori']
[u'hop', u'injur', u'seal', u'return', u'natur', u'habitat']
[u'hundr', u'famili', u'homeless', u'action', u'group']
[u'post', u'profit', u'jump']
[u'india', u'bangladesh', u'border', u'guard', u'gunbattl']
[u'indigen', u'communiti', u'reflect', u'land', u'right']
[u'indigen', u'women', u'demand', u'chang', u'child']
[u'indonesia', u'reject', u'papua', u'abus', u'report']
[u'internet', u'busi', u'perth', u'address']
[u'investig', u'continu', u'illeg', u'river', u'mouth']
[u'iraq', u'protest', u'leav', u'bush', u'ranch']
[u'israel', u'clear', u'gaza', u'violent', u'synagogu', u'stand']
[u'isra', u'soldier', u'storm', u'synagogu']
[u'isra', u'troop', u'evict', u'settler', u'gaza', u'synagogu']
[u'crew', u'success', u'complet', u'spacewalk']
[u'jam', u'hardi', u'doubl', u'quarter', u'profit']
[u'jam', u'hardi', u'tell', u'hurri']
[u'jordanian', u'soldier', u'kill', u'twin', u'rocket', u'attack']
[u'joyc', u'wont', u'support', u'current']
[u'kiama', u'librari', u'award', u'homework', u'phone', u'servic']
[u'labrador', u'miss', u'final']
[u'lone', u'audit', u'cane', u'toad', u'await', u'inspect']
[u'luke', u'schenscher', u'make', u'australian']
[u'mainten', u'work', u'leav', u'resid']
[u'malaysia', u'start', u'cloud', u'seed', u'indonesia']
[u'arrest', u'alleg', u'hold', u'woman', u'captiv']
[u'jail', u'german', u'case', u'retrial']
[u'remand', u'bestial', u'tortur', u'case']
[u'marina', u'negoti', u'remain', u'fragil']
[u'matthew', u'back', u'umpir', u'critic']
[u'mayor', u'seek', u'coordin', u'year', u'celebr']
[u'mccain', u'hit', u'potato', u'grower', u'price']
[u'meat', u'industri', u'brief', u'latest', u'green']
[u'melbourn', u'victori', u'victori', u'spoil']
[u'mental', u'health', u'forum', u'tackl', u'access', u'transport']
[u'miner', u'search', u'gold', u'copper', u'near', u'break', u'hill']
[u'mirvac', u'post', u'profit']
[u'charg', u'like', u'cattl', u'death']
[u'doctor', u'work', u'rural', u'area', u'report']
[u'morri', u'question', u'clinic', u'proport']
[u'aust', u'tsunami', u'reach', u'aceh', u'world', u'bank']
[u'move', u'afoot', u'chang', u'sunric', u'cooper', u'status']
[u'worri', u'timet', u'chang', u'disrupt', u'cityrail']
[u'muslim', u'group', u'criticis', u'summit']
[u'nairn', u'support', u'telstra', u'sale']
[u'nanotech', u'window', u'conduct', u'electr']
[u'narrabri', u'chemic', u'scare', u'forc', u'evacu']
[u'narrow', u'send', u'phoenix', u'final']
[u'nativ', u'titl', u'group', u'want', u'deal', u'shelv']
[u'neitz', u'readi', u'face', u'dog']
[u'newcastl', u'econom', u'outlook', u'good']
[u'famili', u'court', u'judg', u'swear']
[u'manag', u'plan', u'problem', u'roo']
[u'region', u'plan', u'threaten', u'state', u'flora']
[u'river', u'plan', u'drive', u'away', u'tourist']
[u'news', u'name', u'lachlan', u'replac']
[u'zealand', u'knight', u'outsid']
[u'reject', u'telstra', u'sale', u'plan']
[u'room', u'loss']
[u'stop', u'desalin', u'plant', u'iemma', u'say']
[u'can', u'anti', u'smoke', u'record']
[u'fund', u'help', u'improv', u'indonesian', u'nurs', u'train']
[u'oppn', u'urg', u'iraq', u'inquiri', u'respons']
[u'orica', u'share', u'shock', u'departur']
[u'paedophil', u'discov', u'live', u'near', u'school']
[u'parent', u'tell', u'heed', u'warn', u'meningococc']
[u'partnership', u'develop', u'methan', u'plant']
[u'payment', u'loom', u'walter', u'construct', u'worker']
[u'pedestrian', u'respons', u'death', u'court', u'hear']
[u'pedestrian', u'hospit', u'strike', u'car']
[u'penalti', u'need', u'council', u'honest']
[u'perth', u'glori', u'glori', u'day']
[u'pig', u'enlist', u'fight', u'grape', u'skin', u'wastag']
[u'play', u'base', u'david', u'hick', u'open', u'darwin']
[u'forc', u'defend', u'summit', u'decis']
[u'reject', u'extremist', u'inclus', u'islam', u'summit']
[u'polic', u'effort', u'target', u'repeat', u'offend']
[u'polic', u'probe', u'fatal', u'head', u'crash']
[u'polic', u'search', u'miss', u'kimberley', u'tourist']
[u'potato', u'grower', u'reject', u'mccain', u'offer']
[u'power', u'insist', u'corn', u'play']
[u'premier', u'power', u'chang', u'depart', u'health']
[u'process', u'danger', u'receivership']
[u'protest', u'demand', u'hardi', u'deliv', u'compens']
[u'pulp', u'mill', u'increas', u'health', u'risk', u'forum', u'hear']
[u'farm', u'group', u'call', u'tighter', u'law', u'ahead']
[u'queensland', u'roar', u'build', u'come']
[u'radio', u'station', u'risk', u'univers', u'withdraw']
[u'ratepay', u'maintain', u'richmond', u'council']
[u'region', u'telecom', u'stand', u'feder', u'invest']
[u'report', u'highlight', u'melbourn', u'resurg']
[u'rescuer', u'free', u'whale', u'shark', u'net']
[u'research', u'develop', u'vaccin', u'fight', u'bioterror']
[u'robert', u'back', u'commission', u'patrol']
[u'rocket', u'attack', u'jordan', u'israel']
[u'rodeo', u'abandon', u'bronco', u'brand', u'competit']
[u'roger', u'injur', u'gerrard']
[u'roo', u'worri', u'clandestin', u'taggercam']
[u'school', u'benefit', u'upgrad', u'plan']
[u'scud', u'hand', u'open', u'wildcard']
[u'scullion', u'confirm', u'opposit', u'nuclear', u'wast', u'dump']
[u'seafood', u'industri', u'repres', u'meet']
[u'secretari', u'take', u'polic', u'bungl']
[u'secur', u'fenc', u'seal', u'salmon', u'pen']
[u'senat', u'clerk', u'criticis', u'govt', u'spend']
[u'senat', u'clerk', u'criticis', u'spend']
[u'senat', u'clerk', u'claim', u'disingenu']
[u'senat', u'say', u'telstra', u'fund', u'inadequ']
[u'share', u'market', u'end', u'week', u'high']
[u'sheep', u'graze', u'end', u'help', u'save', u'river', u'murray']
[u'shire', u'fail', u'meet', u'govern', u'target']
[u'slim', u'hop', u'find', u'fisherman', u'aliv']
[u'sol', u'stay', u'insist', u'gunner']
[u'sonni', u'drink', u'drive', u'suspend', u'licenc']
[u'southern', u'highland', u'farmer', u'face', u'drought', u'woe']
[u'space', u'shuttl', u'uncertain', u'futur', u'fuel', u'concern']
[u'state', u'farmer', u'feder', u'join', u'nation']
[u'strike', u'nickel', u'project', u'worker', u'resum', u'work']
[u'submiss', u'roll', u'pacif', u'highway', u'revamp']
[u'submiss', u'strong', u'opposit']
[u'sugar', u'industri', u'boost', u'economi']
[u'coast', u'vmos', u'quit']
[u'sunric', u'plan', u'restructur']
[u'superboat', u'race', u'gold', u'coast']
[u'superbug', u'crisi', u'wors', u'surgeon', u'warn']
[u'swan', u'kangaroo', u'showcas']
[u'tasmania', u'win', u'clean', u'ashtray', u'award']
[u'tassi', u'devil', u'studi', u'surviv', u'tumour']
[u'telstra', u'deal', u'good', u'get']
[u'theft', u'impact', u'employ', u'firm']
[u'thurston', u'doubt', u'raider', u'clash']
[u'toowoomba', u'miss', u'specialist']
[u'deni', u'cover']
[u'tourism', u'minist', u'sign', u'agreement']
[u'tourism', u'minist', u'unhappi', u'chang']
[u'tourist', u'lodg', u'world', u'heritag', u'area']
[u'train', u'driver', u'accus', u'take', u'long', u'crash']
[u'troubl', u'fish', u'shop', u'sale']
[u'trucki', u'hope', u'deal', u'rego', u'cost']
[u'boat', u'tackl', u'reef', u'ground']
[u'arrest', u'casino', u'assault']
[u'umpir', u'critic', u'absolut', u'unaccept', u'demetriou']
[u'underpay', u'wag', u'decis', u'like', u'appeal']
[u'union', u'worri', u'loss', u'juic', u'merger']
[u'vaughan', u'dismiss', u'talk', u'aussi', u'advantag']
[u'deni', u'bail', u'manslaught', u'case']
[u'victim', u'compens', u'paltri']
[u'water', u'restrict', u'tougher']
[u'water', u'storag', u'develop']
[u'grant', u'hopkin', u'titl', u'rematch']
[u'western', u'power', u'meet', u'union']
[u'west', u'bandwagon', u'roll', u'bulldog']
[u'wool', u'price', u'year']
[u'work', u'medic', u'centr']
[u'world', u'qualif', u'start']
[u'abba', u'hail', u'sacrific', u'isra', u'withdraw']
[u'ablett', u'star', u'cat', u'stun', u'eagl']
[u'administr', u'work', u'reopen', u'green', u'abattoir']
[u'teach', u'latest', u'forens', u'techniqu', u'thai']
[u'artist', u'seek', u'tree', u'stump', u'sculptur']
[u'court', u'award', u'million', u'compens']
[u'aust', u'doctor', u'deni', u'bail', u'spous', u'murder', u'charg']
[u'australian', u'join', u'suit', u'drug', u'giant']
[u'australian', u'vioxx', u'maker']
[u'batter', u'saint', u'lick', u'wound']
[u'bold', u'buchanan', u'tell', u'australia']
[u'bold', u'coach', u'tell', u'australian', u'cricket']
[u'blaze', u'raze', u'high', u'school', u'central', u'west']
[u'bok', u'extend', u'wallabi', u'lose']
[u'bok', u'wari', u'back', u'wall', u'wallabi']
[u'boomer', u'wrap', u'seri']
[u'plead', u'guilti', u'drive']
[u'bulli', u'boy', u'tafe', u'fund']
[u'cancer', u'bodi', u'hop', u'turn', u'mock', u'award', u'fund']
[u'charg', u'lay', u'canadian', u'station', u'death']
[u'china', u'hold', u'citizen', u'accus', u'spi']
[u'face', u'elect', u'loss']
[u'concern', u'rais', u'nurs', u'resign']
[u'cook', u'tour', u'return', u'germani']
[u'coron', u'probe', u'death', u'mental', u'health', u'facil']
[u'count', u'begin', u'poll', u'close', u'elect']
[u'courtney', u'love', u'admit', u'probat', u'violat']
[u'cowboy', u'raider', u'final', u'hop']
[u'dajka', u'remain', u'custodi', u'second', u'arrest']
[u'darwin', u'hospit', u'limit', u'risk', u'superbug']
[u'demon', u'vault', u'final', u'content']
[u'desalin', u'plant', u'rais', u'water', u'price', u'stoner']
[u'discoveri', u'get', u'piggyback', u'home']
[u'docker', u'snatch', u'gasp']
[u'drink', u'driver', u'right', u'seek', u'blood', u'test']
[u'earli', u'count', u'see', u'liber', u'edg', u'ahead']
[u'ecuador', u'defenc', u'minist', u'quit', u'amid', u'crisi']
[u'ecuador', u'threaten', u'troop', u'action']
[u'elector', u'commiss', u'clear', u'labor', u'vote']
[u'evacu', u'continu', u'gaza']
[u'famili', u'appeal', u'wit', u'taxi', u'murder', u'case']
[u'funer', u'hold', u'spanish', u'soldier', u'kill']
[u'gaza', u'pullout', u'peac']
[u'geelong', u'control', u'destini']
[u'gillespi', u'drop', u'tour', u'match']
[u'granni', u'seed', u'help', u'bird', u'high']
[u'gregan', u'clear', u'lead', u'australia', u'springbok']
[u'griev', u'relat', u'arriv', u'venezuela', u'crash', u'site']
[u'gunshot', u'lead', u'polic', u'cannabi', u'stash']
[u'hewitt', u'cincinnati', u'semi', u'finalist']
[u'iaea', u'test', u'iran', u'nuke', u'explan', u'diplomat']
[u'indonesia', u'pledg', u'aceh', u'rebel', u'safeti', u'disarm']
[u'infrastructur', u'chariti', u'work', u'katherin']
[u'iraq', u'need', u'feder', u'prevent', u'civil']
[u'isra', u'hardlin', u'prepar', u'defend']
[u'joyc', u'seek', u'parti', u'feedback']
[u'joyc', u'seek', u'feedback', u'telstra', u'deal']
[u'kelso', u'high', u'school', u'build', u'burn', u'grind']
[u'knight', u'spoil', u'joness', u'farewel']
[u'kookaburra', u'final', u'amsterdam']
[u'labor', u'back', u'cleaner', u'compo', u'fight']
[u'labor', u'target', u'govt', u'advertis']
[u'liber', u'elect']
[u'local', u'council', u'share', u'fund']
[u'injur', u'polic', u'chase']
[u'kill', u'hous']
[u'face', u'adelaid', u'court', u'extradit']
[u'marin', u'confid', u'beat', u'glori', u'defenc']
[u'marin', u'preseason', u'final']
[u'merck', u'verdict', u'keep', u'market', u'check']
[u'mine', u'urg', u'consid', u'tourism', u'option']
[u'nation', u'urg', u'joyc', u'time', u'telstra']
[u'nervous', u'leader', u'elect', u'hust']
[u'hous', u'afford', u'opposit']
[u'zealand', u'farewel', u'prime', u'minist']
[u'zealand', u'honour', u'lang']
[u'offici', u'probe', u'gunn']
[u'dead', u'california', u'prison', u'clash']
[u'polic', u'search', u'mother', u'critic']
[u'polic', u'urg', u'review', u'file', u'misus', u'case']
[u'pope', u'germani']
[u'pope', u'warn', u'rise', u'anti', u'semit']
[u'port', u'dump', u'lion']
[u'power', u'worker', u'hold', u'industri', u'action']
[u'queensland', u'elect']
[u'rabbitoh', u'surg', u'home', u'edg', u'rooster']
[u'raikkonen', u'claim', u'istanbul', u'pole', u'webber', u'vent', u'anger']
[u'raikkonen', u'quickest', u'final', u'practic']
[u'rail', u'upgrad']
[u'rainfal', u'predict', u'good', u'news', u'crop']
[u'school', u'holiday', u'chang', u'discuss']
[u'search', u'continu', u'cane', u'toad', u'darwin']
[u'second', u'largest', u'wind', u'farm', u'open']
[u'senat', u'clerk', u'claim', u'reckless']
[u'senat', u'barnabi', u'joyc', u'keep', u'govt']
[u'seven', u'arrest', u'illeg', u'log', u'borneo']
[u'state', u'play', u'polit', u'leav', u'claim']
[u'stone', u'deliv', u'brutal', u'review', u'clps', u'loss']
[u'street', u'perform', u'welcom', u'art', u'festiv']
[u'student', u'charg', u'rap']
[u'surg', u'crow', u'spot']
[u'tafe', u'fund', u'condit', u'hurt', u'student', u'macklin']
[u'tasmania', u'trial', u'children', u'case', u'program']
[u'host', u'apec', u'small', u'busi', u'ministeri', u'forum']
[u'threat', u'terror', u'attack', u'south', u'east', u'asia']
[u'thunderbird', u'face', u'swift', u'preliminari', u'final']
[u'nation', u'scale', u'world', u'year']
[u'truck', u'driver', u'urg', u'avoid', u'crash']
[u'polic', u'review', u'shoot', u'kill', u'polici', u'report']
[u'compens', u'africa', u'medic', u'brain', u'drain']
[u'marin', u'afghan', u'soldier', u'kill', u'clash']
[u'track', u'star', u'continu', u'shine']
[u'vioxx', u'maker', u'guilti', u'wrong', u'death', u'case']
[u'wallabi', u'face', u'behaviour', u'crackdown']
[u'wilkinson', u'rush', u'hospit', u'inflam', u'appendix']
[u'win', u'kookaburra', u'hockeyroo']
[u'woodsid', u'pipelin', u'win', u'engin', u'award']
[u'worker', u'trap', u'flood', u'coal', u'china']
[u'zimbabw', u'replac', u'soccer', u'player', u'home']
[u'grab', u'school', u'band']
[u'hurt', u'qanta', u'flight', u'make', u'emerg', u'land']
[u'accc', u'telstra', u'regul']
[u'accc', u'warn', u'telstra', u'line']
[u'qanta', u'plane', u'forc', u'emerg']
[u'armstrong', u'finish', u'bush', u'tour', u'crawford']
[u'asic', u'want', u'crimin', u'case', u'vizard']
[u'australian', u'teen', u'kidnap', u'philippin', u'report']
[u'author', u'search', u'remot', u'bushland', u'miss']
[u'aviat', u'bodi', u'sack', u'cypriot', u'airlin', u'crash']
[u'bali', u'polic', u'question', u'australian', u'woman', u'drug']
[u'beatti', u'blame', u'voter', u'backlash', u'patel', u'affair']
[u'beatti', u'look', u'regroup', u'elect', u'backlash']
[u'belgian', u'pair', u'meet', u'toronto', u'final']
[u'walker', u'john', u'cartwright', u'interview']
[u'pauls', u'ban', u'week', u'kick']
[u'bomber', u'hammer', u'hapless', u'blue']
[u'boomer', u'record', u'clean', u'sweep']
[u'brack', u'back', u'minist', u'polic', u'file', u'leak']
[u'bush', u'step', u'defenc', u'iraq']
[u'blast', u'kill', u'policemen', u'russia']
[u'elect', u'review', u'recommend']
[u'coag', u'urg', u'increas', u'infrastructur', u'audit']
[u'council', u'tell', u'bold', u'group', u'remov', u'bras']
[u'deadlock', u'trap', u'burn', u'hous']
[u'defo', u'fire', u'spur', u'spot']
[u'dragon', u'stake', u'claim', u'minor', u'premiership']
[u'elder', u'join', u'action', u'protect', u'perth', u'beach']
[u'armi', u'chief', u'threaten', u'oust', u'ivori', u'coast']
[u'farmer', u'cut', u'power', u'eyr', u'peninsula', u'home']
[u'film', u'draw', u'legal', u'threat', u'dictat', u'famili']
[u'film', u'reveal', u'plight', u'zimbabwean', u'demolit']
[u'crew', u'attend', u'blaze', u'involv', u'cooker']
[u'littl', u'delay', u'senior', u'student', u'studi']
[u'flatley', u'face', u'test', u'latest', u'setback']
[u'docker', u'dead', u'crash']
[u'teen', u'kill', u'north', u'crash']
[u'soldier', u'kill', u'afghanistan', u'bomb', u'attack']
[u'gambl', u'studi', u'meaning']
[u'govt', u'dismiss', u'concern', u'nurs', u'staff']
[u'govt', u'telstra', u'share', u'futur', u'fund']
[u'govt', u'resist', u'pressur', u'hous', u'inquiri']
[u'graham', u'murray', u'matthew', u'elliott', u'interview']
[u'gregan', u'rule', u'japan']
[u'hayden', u'clark', u'fourth', u'test', u'centuri']
[u'health', u'base', u'parti', u'contest', u'elect']
[u'hockeyroo']
[u'intern', u'polic', u'probe', u'continu', u'case']
[u'interview', u'eddi', u'jone']
[u'interview', u'russel', u'crow']
[u'push', u'button', u'william', u'say', u'webber']
[u'iraq', u'urg', u'resum', u'execut']
[u'israel', u'approv', u'final', u'stage', u'settlement']
[u'japanes', u'woman', u'die', u'lion', u'attack']
[u'john', u'lang', u'wayn', u'bennett']
[u'join', u'telstra', u'coalit', u'urg', u'joyc']
[u'jone', u'warn', u'rugbi', u'risk', u'bore']
[u'kidnap', u'teen', u'philippin', u'australian', u'dfat']
[u'labor', u'backlash', u'elect']
[u'lanc', u'thompson', u'trent', u'barrett', u'nathan', u'brown']
[u'languag', u'hinder', u'claim', u'daughter', u'bodi']
[u'liverpool', u'confirm', u'club', u'champ', u'particip']
[u'major', u'parti', u'unveil', u'elect', u'campaign']
[u'die', u'fall']
[u'mcdonald', u'boss', u'discuss', u'farmer', u'concern']
[u'tour', u'offer', u'side', u'view']
[u'minist', u'deni', u'wyong', u'hospit']
[u'vow', u'carri', u'despit', u'cancer']
[u'chang', u'england', u'squad', u'fourth', u'test']
[u'number', u'pregnant', u'women', u'smoke', u'disappoint']
[u'parti', u'prepar', u'launch', u'elect', u'bid']
[u'opposit', u'optimist', u'elect']
[u'opposit', u'question', u'trip', u'offend']
[u'pain', u'congress', u'improv', u'health', u'manag']
[u'pakistan', u'hang', u'soldier', u'plot', u'kill']
[u'panther', u'deni', u'bronco', u'bell']
[u'polic', u'arrest', u'alleg', u'internet', u'paedophil']
[u'polic', u'search', u'crocodil', u'attack', u'victim']
[u'polic', u'hunt', u'milit', u'jordan', u'rocket', u'attack']
[u'polic', u'seek', u'women', u'death']
[u'pope', u'admit', u'church', u'shortcom']
[u'pope', u'benedict', u'speak', u'open', u'mass']
[u'portug', u'seek', u'help', u'fire', u'devast', u'forest']
[u'qanta', u'regret', u'injuri', u'caus', u'plane', u'evacu']
[u'quak', u'shake', u'northern', u'japan']
[u'ranger', u'outclass', u'underman', u'celtic']
[u'ranger', u'wind', u'search', u'croc', u'victim']
[u'releas', u'submiss', u'public', u'opposit']
[u'roddick', u'roll', u'hewitt', u'feder', u'clash']
[u'coupl', u'hope', u'review', u'lead', u'legal', u'right']
[u'scientist', u'continu', u'test', u'isol', u'weed', u'diseas']
[u'scotland', u'yard', u'deni', u'offer', u'money', u'brazilian']
[u'search', u'miss', u'fisherman', u'wind']
[u'send', u'job', u'offshor', u'econom', u'benefit', u'leader']
[u'shark', u'inflict', u'record', u'loss', u'eagl']
[u'sick', u'girl', u'urgent', u'appeal']
[u'soldier', u'instruct', u'abus', u'ghraib', u'prison']
[u'son', u'gwalia', u'report', u'concern', u'asic']
[u'springbok', u'celebr', u'ugli']
[u'springbok', u'winger', u'cite', u'kick']
[u'lankan', u'help', u'asian', u'level', u'seri']
[u'strike', u'blast', u'paralys', u'bangladesh', u'polic']
[u'stuart', u'raper', u'hasler']
[u'student', u'rediscov', u'einstein', u'manuscript']
[u'swan', u'confirm', u'place']
[u'sydney', u'await', u'pope', u'vote', u'host', u'citi']
[u'sydney', u'host', u'cathol', u'world', u'youth']
[u'telstra', u'share', u'fund', u'region', u'trust']
[u'zealand', u'govern', u'opposit']
[u'queensland', u'premier', u'say', u'voter', u'give']
[u'treasur', u'say', u'possibl', u'sale']
[u'thompson', u'farewel', u'ash', u'fire', u'cannon']
[u'thorp', u'retir', u'season']
[u'thousand', u'pilgrimag', u'attend', u'pope', u'mass']
[u'roof', u'juvenil', u'justic', u'centr']
[u'tiger', u'snatch', u'hawk']
[u'tini', u'speed', u'eater', u'chew', u'challeng']
[u'tonn', u'cocain', u'seiz', u'venezuelan', u'boat']
[u'torrenti', u'rain', u'kill', u'south', u'china']
[u'transfer', u'paedophil', u'compli']
[u'trucki', u'group', u'back', u'safeti', u'upgrad']
[u'kill', u'injur', u'afghan', u'crash']
[u'polic', u'foil', u'parliament', u'attack', u'report']
[u'shoot', u'kill', u'polici', u'stay']
[u'award', u'honour', u'howard', u'leadership']
[u'vietnam', u'vet', u'line', u'annual', u'march']
[u'volunt', u'seek', u'remot', u'island']
[u'voter', u'enrol', u'begin', u'land', u'council', u'elect']
[u'watchdog', u'probe', u'court', u'corrupt', u'claim']
[u'weather', u'stall', u'discoveri', u'flight', u'home']
[u'dont', u'care', u'minor', u'premiership', u'worsfold']
[u'wood', u'perri', u'share', u'lead', u'akron']
[u'yaxley', u'arriv', u'home', u'cycl', u'accid']
[u'horror', u'weekend', u'road']
[u'iraqi', u'polic', u'shoot', u'dead']
[u'abattoir', u'tri', u'eas', u'burden', u'second', u'shutdown']
[u'abbott', u'pull', u'debat', u'amid', u'safeti', u'concern']
[u'adelaid', u'model', u'bali', u'drug', u'arrest']
[u'administr', u'wing', u'arrernt', u'council', u'falter']
[u'servic', u'trial', u'deem', u'success']
[u'backbench', u'seek', u'uranium', u'mine', u'debat']
[u'apprehens', u'buyer', u'steer', u'clear', u'pastor']
[u'armi', u'fli', u'museum', u'move', u'secur', u'reason']
[u'aussi', u'evan', u'win', u'german', u'stage']
[u'australia', u'seek', u'closer', u'tie', u'singapor']
[u'australia', u'urg', u'increas', u'renew', u'energi']
[u'half', u'year', u'profit', u'climb']
[u'banana', u'shire', u'budget', u'address', u'infrastructur']
[u'barnabi', u'joyc', u'pressur', u'telstra', u'sale']
[u'bear', u'look', u'qualifi', u'semi', u'lose']
[u'govt', u'reach', u'royalti', u'concess', u'deal']
[u'bird', u'rescuer', u'tell', u'leav', u'expert']
[u'blaze', u'destroy', u'famili', u'care', u'equip']
[u'bomb', u'kill', u'afghan', u'polic']
[u'bouncer', u'face', u'trial', u'hook', u'death']
[u'bouncer', u'trial', u'begin', u'hook', u'death']
[u'bowravill', u'adopt', u'share', u'respons', u'agreement']
[u'brisban', u'airport', u'link', u'consult', u'launch']
[u'brown', u'season', u'lion', u'face', u'crunch']
[u'bushfir', u'jump', u'trail']
[u'busier', u'time', u'broom', u'airport']
[u'busi', u'aim', u'boost', u'export', u'potenti']
[u'businesswoman', u'plead', u'guilti', u'rotari', u'theft']
[u'driver', u'push', u'fare', u'price', u'rise']
[u'canberra', u'archbishop', u'tender', u'resign']
[u'theft', u'mar', u'bash', u'event']
[u'cemeteri', u'ponder', u'burial', u'plot', u'reclam']
[u'china', u'want', u'quarantin', u'address']
[u'clijster', u'dump', u'henin', u'hardenn', u'toronto', u'titl']
[u'club', u'urg', u'feisti', u'soccer', u'support']
[u'conserv', u'face', u'polit', u'mountain', u'analyst', u'say']
[u'cooper', u'face', u'trial', u'charg']
[u'cooper', u'plead', u'guilti', u'charg']
[u'coraki', u'fight', u'save', u'hospit']
[u'councillor', u'push', u'pool', u'fee']
[u'council', u'ward', u'scheme']
[u'court', u'appear', u'follow', u'drug', u'raid']
[u'cowboy', u'coach', u'see', u'posit']
[u'cypriot', u'plane', u'crash', u'probe', u'find', u'cabin', u'pressur']
[u'dean', u'fli', u'glori', u'complet', u'prepar']
[u'deftero', u'case', u'reopen', u'nixon']
[u'demon', u'gain', u'confid', u'white']
[u'dfat', u'assist', u'mother', u'bring', u'daughter', u'bodi']
[u'discoveri', u'lift', u'prematur', u'say', u'thoma']
[u'dragon', u'look', u'forward', u'earn', u'break']
[u'driver', u'face', u'knife', u'bandit', u'more']
[u'driver', u'unhurt', u'highway', u'truck', u'blaze']
[u'drogba', u'fluke', u'goal', u'sink', u'arsenal']
[u'dubbo', u'communiti', u'threat', u'polic']
[u'pack', u'plant', u'blaze', u'think', u'arson']
[u'england', u'women', u'thriller']
[u'unconcern', u'melbourn', u'river', u'arsenic']
[u'extra', u'tote', u'fund', u'boost', u'race', u'stake']
[u'fall', u'madonna', u'feet', u'trot']
[u'farmer', u'telstra', u'plan']
[u'fear', u'fuel', u'cost', u'finish', u'farmer']
[u'feder', u'claim', u'cincinnati', u'crown']
[u'financi', u'advis', u'ban', u'asic']
[u'australian', u'woman', u'receiv', u'tripl', u'organ']
[u'flood', u'watch', u'cancel', u'temp', u'rise']
[u'footbal', u'serious', u'hurt', u'weekend', u'match']
[u'gatton', u'youth', u'hope', u'chanc', u'golf']
[u'gaza', u'settler', u'bloc', u'evacu', u'complet']
[u'gillard', u'slam', u'abbott', u'cheap', u'shoot', u'polic']
[u'gold', u'coast', u'vmos', u'resign', u'offer']
[u'govern', u'ask', u'explain', u'cityrail', u'incid']
[u'govern', u'commit', u'telstra', u'sale', u'minchin']
[u'govt', u'condit', u'worri', u'yacht', u'club']
[u'govt', u'intent', u'telstra', u'stake', u'sell', u'minchin']
[u'govt', u'backpeddl', u'anti', u'social', u'behaviour']
[u'govt', u'urg', u'bail', u'harvey', u'meatwork']
[u'govt', u'urg', u'camel', u'meat', u'industri']
[u'govt', u'urg', u'help', u'warrnambool', u'jail', u'fiji']
[u'govt', u'urg', u'oppos', u'truck', u'rego', u'rise']
[u'greenpeac', u'focus', u'climat', u'chang', u'impact']
[u'green', u'hope', u'highway', u'inquiri']
[u'health', u'issu', u'cost', u'labor', u'beatti']
[u'heavi', u'demand', u'kimberley', u'caravan', u'park', u'sit']
[u'heavi', u'rainfal', u'south', u'west', u'water']
[u'hewitt', u'confid', u'strong', u'open', u'show']
[u'hobb', u'urg', u'govt', u'boost', u'rural', u'doctor']
[u'hostil', u'tait', u'press', u'ash', u'claim']
[u'hous', u'boost', u'push', u'roo', u'rural', u'residenti']
[u'howard', u'welcom', u'youth', u'annouc']
[u'iemma', u'confid', u'labor', u'chanc']
[u'india', u'bangladesh', u'border', u'guard', u'resolv', u'disput']
[u'indigen', u'mother', u'join', u'earli', u'childhood', u'confer']
[u'indonesia', u'pull', u'troop', u'aceh']
[u'injur', u'webck', u'hope', u'final', u'chanc']
[u'interview', u'justin', u'langer']
[u'iraq', u'constitut', u'deadlin', u'loom', u'charter']
[u'iraqi', u'abductor', u'free', u'foreign', u'worker']
[u'iraqi', u'face', u'constitut', u'deadlin', u'headach']
[u'jordan', u'arrest', u'arab', u'aqaba', u'rocket', u'attack']
[u'kearn', u'call', u'time', u'game', u'career']
[u'keeper', u'obsess', u'cost', u'goal']
[u'kiama', u'council', u'start', u'recycl', u'scheme']
[u'kidnap', u'accus', u'hospitalis']
[u'landcar', u'award', u'recognis', u'riverina', u'effort']
[u'legal', u'group', u'beat', u'disabl', u'fund']
[u'lille', u'want', u'tait', u'test', u'team']
[u'london', u'polic', u'chief', u'defend', u'handl', u'shoot']
[u'loxton', u'shake', u'famili', u'holiday', u'tragedi']
[u'macdougal', u'face', u'week', u'spear', u'tackl']
[u'major', u'player', u'arrest', u'drug', u'raid', u'polic']
[u'charg', u'sydney', u'shoot']
[u'front', u'court', u'internet', u'porn', u'investig']
[u'question', u'sydney', u'shoot']
[u'face', u'suprem', u'court', u'teen', u'drug', u'rape']
[u'want', u'murder', u'extradit']
[u'mayor', u'rais', u'crisi', u'accommod', u'shortag']
[u'mayor', u'unsur', u'hockey', u'facil', u'plan']
[u'meatwork', u'make', u'kyneton']
[u'men', u'sexual', u'health', u'high', u'confer', u'agenda']
[u'miner', u'oppos', u'moranbah', u'hous', u'plan']
[u'minist', u'defend', u'handl', u'bali', u'case']
[u'miss', u'safe']
[u'offer', u'surgeri', u'assur']
[u'model', u'drug', u'charg']
[u'molik', u'tumbl', u'return']
[u'talk', u'hold', u'marina', u'plan']
[u'motorcyclist', u'succumb', u'crash', u'injuri']
[u'mottram', u'win', u'mile', u'race']
[u'play', u'airport', u'secur', u'worri']
[u'want', u'cape', u'york', u'croc', u'hunt', u'safari']
[u'murder', u'conspiraci', u'charg', u'lawyer']
[u'muslim', u'group', u'unveil', u'plan', u'tackl', u'radic']
[u'nation', u'kelli', u'support', u'telstra', u'share']
[u'newcastl', u'jet', u'true', u'form']
[u'newcrest', u'annual', u'profit', u'rise']
[u'legal', u'offic', u'assist', u'local', u'justic']
[u'newton', u'john', u'partner', u'miss']
[u'decis', u'olymp', u'expans']
[u'nolan', u'paint', u'hammer']
[u'quick', u'break', u'bridg', u'glass']
[u'north', u'west', u'host', u'fair', u'dinkum', u'food', u'campaign', u'barbecu']
[u'opposit', u'offer', u'billion', u'cut']
[u'offic', u'energi', u'reject', u'power', u'grid', u'call']
[u'bubbl', u'preserv', u'ancient', u'alga']
[u'pacif', u'highway', u'black', u'spot', u'claim', u'life']
[u'pair', u'face', u'charg', u'match', u'review']
[u'palestinian', u'gunmen', u'free', u'french', u'journalist']
[u'patrick', u'push', u'record', u'high']
[u'patrick', u'knock', u'takeov']
[u'peacock', u'charg', u'drink', u'drive']
[u'pill', u'test', u'adelaid', u'model', u'hold', u'bali']
[u'receiv', u'award']
[u'polic', u'investig', u'suspici', u'death']
[u'polic', u'charg', u'drug', u'raid']
[u'polic', u'leap', u'databas', u'replac']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'question', u'pair', u'warialda', u'murder']
[u'premier', u'head', u'break', u'hill', u'wednesday']
[u'qanta', u'land', u'perth', u'japanes', u'emerg']
[u'qanta', u'pilot', u'face', u'question', u'forc', u'land']
[u'qmag', u'announc', u'expans', u'plan']
[u'raikkonen', u'cruis', u'victori', u'turkey']
[u'rain', u'help', u'boost', u'farmer', u'crop', u'hop']
[u'rain', u'wash', u'afro', u'asia', u'decid']
[u'region', u'airport', u'secur', u'upgrad']
[u'report', u'prompt', u'seek', u'younger', u'crowd']
[u'review', u'help', u'council', u'prepar', u'emerg']
[u'rhode', u'home', u'cycl', u'accid']
[u'rooster', u'drop', u'premiership', u'stake']
[u'sack', u'forc', u'command', u'award', u'compens']
[u'infrastructur', u'score', u'bad', u'engin', u'report']
[u'face', u'charg', u'drug', u'possess']
[u'satellit', u'track', u'sputnik', u'croc']
[u'scientist', u'send', u'skin', u'cell', u'embryo', u'stage']
[u'scrap', u'prioriti', u'pick', u'sheedi']
[u'search', u'continu', u'miss', u'fisherman']
[u'settler', u'pray', u'evacu', u'gaza']
[u'shake', u'passeng', u'arriv', u'perth']
[u'shake', u'qanta', u'passeng', u'tell', u'scari', u'land']
[u'sharapova', u'claim', u'world', u'number', u'rank']
[u'sharon', u'blast', u'settler', u'hooligan']
[u'sharon', u'lash', u'violent', u'protest']
[u'sheedi', u'say', u'prioriti', u'pick', u'reward', u'mediocr']
[u'sheep', u'breed', u'trial', u'show', u'promis', u'altern']
[u'shepparton', u'trucki', u'jail', u'savag', u'bash']
[u'shire', u'budget', u'boost', u'grant']
[u'showground', u'trust', u'doubl', u'fee']
[u'snow', u'fall', u'drought', u'stricken', u'monaro', u'area']
[u'space', u'shuttl', u'return', u'florida']
[u'staff', u'concern', u'remain', u'region', u'polic']
[u'stone', u'kick', u'world', u'tour', u'boston']
[u'strike', u'forc', u'form', u'investig', u'school']
[u'sydney', u'glamour', u'hard', u'edg']
[u'tait', u'itch', u'dish', u'england']
[u'tare', u'council', u'seek', u'rate', u'peg', u'chang']
[u'teen', u'die', u'kart', u'crash']
[u'teen', u'die', u'accid']
[u'telstra', u'share', u'doubt', u'absurd', u'beazley', u'say']
[u'tender', u'call', u'soon', u'winton', u'bore']
[u'toll', u'hold', u'unveil', u'patrick']
[u'toni', u'abbott', u'criticis', u'polic']
[u'travel', u'advic', u'tonga', u'upgrad']
[u'truck', u'driver', u'work', u'place', u'inquiri']
[u'trucki', u'die', u'fieri', u'blaze']
[u'tsunami', u'victim', u'process', u'year']
[u'tunnel', u'oper', u'defend', u'speed', u'camera']
[u'home', u'damag', u'west', u'dubbo']
[u'question', u'sydney', u'shoot']
[u'embassi', u'staff', u'hurt', u'blast', u'near', u'afghan']
[u'unicef', u'mourn', u'tasmanian', u'execut', u'death']
[u'mourn', u'victim', u'death']
[u'union', u'predict', u'mix', u'respons', u'school', u'holiday']
[u'union', u'predict', u'riverina', u'wool', u'comb', u'plant', u'closur']
[u'union', u'step', u'opposit', u'feder', u'work', u'chang']
[u'student', u'order', u'campus', u'leaflet']
[u'deliv', u'forestri', u'cours']
[u'veteran', u'hockeyroo', u'happi', u'pass', u'experi']
[u'vintag', u'truck', u'outback', u'trek', u'alic']
[u'walkaway', u'wind', u'power', u'farm', u'project']
[u'water', u'confer', u'tackl', u'salin', u'crisi']
[u'webber', u'hit', u'unsport', u'schumach']
[u'wildlif', u'freezer', u'hand', u'suspend', u'jail', u'term']
[u'woman', u'hurt', u'motorcycl', u'crash']
[u'woman', u'win', u'right', u'hospit', u'parent']
[u'women', u'head', u'line']
[u'women', u'line', u'role']
[u'wood', u'take', u'titl', u'mistak', u'cost', u'applebi']
[u'woolworth', u'report', u'profit', u'jump']
[u'yemen', u'flash', u'flood', u'kill', u'day']
[u'youth', u'detaine', u'recaptur', u'launceston', u'escap']
[u'abba', u'phone', u'sharon', u'gaza', u'pullout']
[u'call', u'bank', u'inquiri']
[u'aceh', u'rebel', u'leav', u'mountain', u'hideout']
[u'rule', u'affect', u'westralia', u'inquest']
[u'adelaid', u'arrest', u'sumatra', u'drug', u'charg']
[u'adelaid', u'sumatra', u'drug', u'arrest']
[u'launch', u'probe', u'claim']
[u'agquip', u'happi', u'growth']
[u'black', u'pick', u'macdonald', u'half']
[u'alloc', u'region', u'airport', u'secur', u'fund']
[u'ord', u'dip', u'record', u'high']
[u'accus', u'uranium', u'debat', u'stunt']
[u'anaesthetist', u'work', u'disput', u'continu']
[u'annan', u'visit', u'niger', u'inspect', u'deliveri']
[u'apollo', u'master', u'plan', u'harbour']
[u'armstrong', u'deni', u'claim']
[u'armi', u'fear', u'weapon', u'stockpil', u'evacu']
[u'arson', u'blame', u'tongan', u'king', u'home']
[u'aussi', u'hold', u'larg', u'quantiti', u'drug', u'downer']
[u'aussi', u'win', u'death', u'penalti', u'repriev']
[u'australia', u'japan', u'sign', u'rugbi', u'accord']
[u'australia', u'muslim', u'leader', u'reject', u'terror']
[u'aust', u'singapor', u'team', u'region', u'terror']
[u'author', u'unsur', u'arson', u'hous', u'blaze']
[u'billiton', u'sign', u'north', u'nickel', u'joint', u'ventur']
[u'bluescop', u'report', u'consecut', u'record', u'profit']
[u'bomb', u'blast', u'hit', u'christian', u'area', u'near', u'beirut']
[u'book', u'deal', u'report', u'paedophil']
[u'bowler', u'spot', u'grab', u'merv']
[u'boy', u'face', u'court', u'teen', u'rape']
[u'critic', u'horror', u'crash']
[u'britain', u'call', u'zimbabw', u'cricket']
[u'break', u'pipe', u'forc', u'untreat', u'sewag', u'tamar']
[u'bronco', u'lose', u'health', u'sponsorship']
[u'bronco', u'lose', u'health', u'sponsorship', u'morri']
[u'build', u'collaps', u'kill', u'mumbai']
[u'bunburi', u'dental', u'clinic', u'delay', u'start', u'bite']
[u'access', u'colleg', u'cours']
[u'coastal', u'eros', u'plan']
[u'rural', u'recycl']
[u'canada', u'send', u'warship', u'defend', u'arctic', u'land']
[u'chappel', u'grim', u'warn', u'india']
[u'chick', u'anim', u'magnet']
[u'child', u'refuge', u'sue', u'detent', u'centr', u'stay']
[u'china', u'wool', u'auction', u'hail', u'success']
[u'demand', u'probe', u'travel', u'allow']
[u'communiti', u'meet', u'foundri', u'concern']
[u'cooper', u'offer', u'bribe', u'beer', u'wit', u'say']
[u'coron', u'examin', u'danger', u'sleep']
[u'council', u'highlight', u'social', u'isol', u'blue']
[u'council', u'ask', u'consid', u'resourc', u'share']
[u'council', u'spend', u'park', u'revamp']
[u'court', u'find', u'chief', u'breach', u'duti']
[u'court', u'reject', u'govt', u'applic', u'forest', u'case']
[u'dajka', u'releas', u'jail', u'strict', u'curfew']
[u'dallaglio', u'ponder', u'england', u'return']
[u'develop', u'consid', u'waterfront', u'hotel', u'plan']
[u'dfat', u'defend', u'effort', u'help', u'aussi', u'jail', u'fiji']
[u'district', u'expect', u'contribut', u'cathol', u'youth']
[u'doctor', u'help', u'resolv', u'cunnamulla', u'crisi']
[u'dream', u'offici', u'pitt', u'aniston']
[u'drug', u'model']
[u'dutch', u'bird', u'indoor', u'amid', u'fear']
[u'eager', u'buyer', u'home', u'nolan', u'work']
[u'environ', u'friend', u'slasher']
[u'mayor', u'fight', u'shop', u'centr']
[u'expert', u'urg', u'nation', u'approach', u'combat', u'youth']
[u'farmer', u'condemn', u'communic', u'servic']
[u'father', u'unhappi', u'investig', u'daughter']
[u'fear', u'develop', u'push', u'toppl', u'mayor']
[u'firefight', u'continu', u'extinguish', u'blaze']
[u'firm', u'harvey', u'beef']
[u'fitzroy', u'cross', u'teacher', u'recognis', u'achiev']
[u'flood', u'hit', u'thousand', u'bouganvill']
[u'footi', u'academi', u'prove', u'success', u'indigen', u'boy']
[u'foreign', u'get', u'rich', u'vanuatu', u'land', u'minist']
[u'australian', u'hockey', u'star', u'join', u'zealand']
[u'face', u'court', u'drug', u'charg']
[u'fund', u'seal', u'cultur', u'centr', u'roma']
[u'goddard', u'jone', u'accept', u'penalti']
[u'gold', u'coast', u'hospit', u'vmos', u'quit']
[u'govt', u'criticis', u'breast', u'screen', u'rat']
[u'govt', u'tackl', u'dodgi', u'tour', u'oper']
[u'govt', u'maintain', u'deer', u'park', u'bypass', u'pressur']
[u'govt', u'highway', u'patrol', u'number']
[u'govt', u'urg', u'boost', u'doctor', u'retent', u'effort']
[u'govt', u'urg', u'refus', u'treatment', u'abus', u'patient']
[u'group', u'applaud', u'grain', u'board', u'member', u'dismiss']
[u'habib', u'tell', u'attack', u'mask']
[u'health', u'minist', u'surviv', u'confid', u'motion']
[u'heartbroken', u'newton', u'john', u'ask', u'prayer']
[u'heroin', u'addict', u'sentenc', u'theft']
[u'high', u'school', u'get', u'clear', u'asbesto', u'scare']
[u'hous', u'plan', u'creat', u'turtl', u'fear']
[u'howard', u'meet', u'islam', u'leader']
[u'student', u'return', u'lesson', u'school']
[u'hull', u'support', u'women', u'defenc', u'polici']
[u'human', u'bone', u'near', u'croc', u'attack', u'site']
[u'hunt', u'gippsland', u'firefight']
[u'unveil', u'super', u'seri', u'squad']
[u'iemma', u'defend', u'secur', u'spend']
[u'impound', u'saudi', u'ship', u'sell']
[u'indigen', u'group', u'seek', u'independ', u'bridg', u'probe']
[u'indigen', u'sport', u'train', u'academi', u'open']
[u'indonesian', u'drug', u'crackdown', u'net', u'australian']
[u'injur', u'footi', u'player', u'condit', u'improv']
[u'iraq', u'parliament', u'present', u'draft', u'constituit']
[u'iraq', u'presenc', u'vital', u'freedom', u'say', u'bush']
[u'reform', u'wont', u'help', u'skill', u'shortag', u'beazley']
[u'isra', u'forc', u'storm', u'sanur', u'citadel']
[u'japanes', u'popul', u'fall']
[u'jetstar', u'sorri', u'communic', u'breakdown']
[u'journalist', u'face', u'contempt', u'charg']
[u'kennett', u'lead', u'hawk']
[u'kennington', u'bottl', u'shop', u'plan', u'spark', u'opposit']
[u'kewel', u'name', u'strength', u'socceroo', u'squad']
[u'ladyfing', u'grower', u'frustrat', u'panama', u'diseas']
[u'langer', u'go', u'kasper']
[u'lennon', u'urg', u'mcdonald', u'loyal', u'aussi']
[u'lesbian', u'mother', u'grant', u'equal', u'biolog', u'status']
[u'lifeguard', u'servic', u'extend', u'patrol']
[u'lobbi', u'group', u'want', u'mountain', u'cattl', u'graze']
[u'local', u'branch', u'tell', u'iemma', u'visit']
[u'lockyer', u'chanc', u'face', u'eel']
[u'lord', u'mayor', u'want', u'king', u'cross']
[u'macdougal', u'accept', u'match']
[u'mackay', u'perman', u'continu', u'merger', u'push']
[u'mainten', u'review', u'ground', u'navi', u'chopper']
[u'accus', u'child', u'rape', u'refus', u'bail']
[u'arrest', u'seattl', u'bomb', u'plot']
[u'south', u'durra', u'stab', u'case']
[u'mccain', u'price', u'unaccept', u'potato', u'grower']
[u'meet', u'hear', u'swim', u'centr', u'financi', u'woe']
[u'merger', u'help', u'stock', u'fend', u'fear']
[u'miner', u'hop', u'share', u'releas', u'rais']
[u'model', u'appoint', u'bali', u'lawyer']
[u'question', u'art', u'festiv', u'cost']
[u'muslim', u'bridg', u'build', u'summit']
[u'navi', u'helicopt', u'ground', u'mainten', u'review']
[u'newcrest', u'mine', u'lift', u'revenu']
[u'newspap', u'fin', u'suburban', u'terrorist', u'label']
[u'nixon', u'consid', u'quit', u'polic', u'file', u'affair']
[u'invest', u'self', u'milk', u'scheme']
[u'step', u'port', u'secur']
[u'govt', u'ask', u'reconsid', u'customari']
[u'danc', u'storm', u'cathol', u'celebr']
[u'nurs', u'return', u'kimberley', u'communiti']
[u'pakistani', u'sultan', u'swing', u'say', u'england', u'bowler']
[u'paracetamol', u'effect', u'treat', u'osteoarthr']
[u'pistachio', u'compani', u'centralis', u'oper']
[u'polic', u'search', u'miss', u'angler']
[u'polic', u'investig', u'fatal', u'black', u'spot', u'crash']
[u'polic', u'probe', u'reveal', u'doctor', u'take', u'work']
[u'polic', u'adopt', u'plan', u'home', u'burglari', u'rate']
[u'port', u'macquari', u'host', u'dental', u'inquiri']
[u'power', u'station', u'spark', u'energi', u'rethink']
[u'power', u'target', u'pavlich']
[u'prize', u'money', u'boost', u'australian']
[u'hart', u'famili', u'dismiss', u'ill', u'report']
[u'prosector', u'seek', u'death', u'embassi', u'bomb', u'suspect']
[u'call', u'smoke', u'alarm', u'dubbo', u'courthous']
[u'public', u'protect', u'kennedi', u'rang']
[u'public', u'hous', u'boost', u'plan', u'gippsland']
[u'public', u'urg', u'meat']
[u'public', u'urg', u'help', u'solv', u'port', u'lincoln', u'man']
[u'public', u'warn', u'unlicens', u'builder']
[u'push', u'wimmera', u'rural', u'ambul', u'victoria', u'boost']
[u'qanta', u'crew', u'return', u'tokyo', u'emerg']
[u'qanta', u'increas', u'fuel', u'surcharg']
[u'rain', u'help', u'lift', u'cereal', u'crop']
[u'rebel', u'grain', u'grower', u'group', u'secur', u'resign']
[u'region', u'airport', u'secur', u'upgrad', u'misdirect']
[u'resid', u'reject', u'clear', u'claim']
[u'resid', u'vent', u'opposit', u'desalin', u'plant']
[u'resid', u'council', u'petit', u'oppos', u'civic']
[u'retir', u'judg', u'mediat', u'tonga', u'strike']
[u'roo', u'urg', u'critic', u'ump']
[u'satan', u'music', u'influenc', u'church', u'arson', u'court', u'tell']
[u'scarlet', u'fever', u'hit', u'coast', u'children']
[u'schoolboy', u'murder', u'investig', u'open', u'scotland']
[u'schoolkid', u'hurt', u'hit', u'shelter']
[u'schumach', u'shrug', u'merced', u'rumour']
[u'search', u'local', u'firefight']
[u'seven', u'network', u'suffer', u'percent', u'profit', u'plung']
[u'seven', u'year', u'blaze', u'soon']
[u'skier', u'die', u'snowfield']
[u'small', u'busi', u'expect', u'slowdown']
[u'snowdon', u'criticis', u'telstra', u'bush', u'fund']
[u'sonic', u'healthcar', u'post', u'profit']
[u'studi', u'focus', u'fuel', u'transport']
[u'studi', u'highlight', u'princ', u'highway', u'revamp', u'save']
[u'summit', u'commit', u'combat', u'terror']
[u'symond', u'rack', u'counti']
[u'synthesis', u'pioneer', u'die']
[u'task', u'forc', u'overse', u'northern', u'tourism']
[u'tasmanian', u'riski', u'survey']
[u'polic', u'offic', u'recognis', u'catch', u'serial']
[u'tenni', u'coach', u'victim', u'seek', u'compens']
[u'test', u'pill', u'ecstasi', u'bali', u'polic']
[u'theft', u'spark', u'paint', u'sniff', u'concern']
[u'thousand', u'tip', u'flock', u'countri', u'music', u'muster']
[u'tiwi', u'landown', u'support', u'expans']
[u'tourism', u'market', u'chief', u'spread', u'beat', u'messag']
[u'travel', u'catch', u'lizard', u'snake']
[u'trawler', u'crew', u'recov', u'central', u'sink']
[u'trekker', u'retrac', u'step', u'fat', u'explor']
[u'truck', u'bring', u'powerlin']
[u'kill', u'boat', u'sink', u'queensland']
[u'kill', u'flood', u'sweep', u'switzerland']
[u'refus', u'bail', u'super', u'fraud']
[u'chief', u'visit', u'famin', u'stricken', u'niger']
[u'move', u'establish', u'singapor', u'campus']
[u'uninvit', u'guest', u'crash', u'hous']
[u'union', u'fight', u'worker', u'entitl']
[u'union', u'want', u'probe', u'fieri', u'fatal', u'truck', u'crash']
[u'vandal', u'blame', u'blackout']
[u'vandal', u'leav', u'trail', u'yard', u'damag']
[u'govt', u'legisl', u'plan', u'chang']
[u'vickerman', u'join', u'wallabi', u'injuri', u'list']
[u'victorian', u'faction', u'settl', u'disput']
[u'villag', u'chief', u'kill', u'southern', u'thailand']
[u'threat', u'childcar', u'macklin']
[u'wade', u'high', u'student', u'resit', u'exam']
[u'tafe', u'fund', u'risk', u'deadlin', u'approach']
[u'water', u'recycl', u'expert', u'join', u'council', u'campaign']
[u'western', u'district', u'affect', u'skill', u'shortag']
[u'wit', u'say', u'hook', u'resist', u'hotel', u'eject']
[u'wollongong', u'get', u'flood', u'manag', u'fund']
[u'wood', u'stretch', u'rank', u'lead', u'scott', u'slip', u'eighth']
[u'wool', u'grower', u'hope', u'improv', u'condit']
[u'work', u'start', u'forestri', u'offic', u'revamp']
[u'work', u'begin', u'holiday', u'cabin', u'sick', u'children']
[u'wound', u'wallabi', u'delay', u'squad', u'announc']
[u'wright', u'name', u'world', u'coach', u'super', u'seri']
[u'save', u'mumbai', u'rubbl']
[u'budget', u'isisford', u'shire']
[u'aborigin', u'activist', u'elect', u'local', u'council']
[u'actor', u'sean', u'penn', u'share', u'journal', u'iran', u'trip']
[u'ponder', u'action', u'thoma', u'comment']
[u'ponder', u'thoma', u'comment']
[u'return']
[u'amcor', u'profit', u'fail', u'reach', u'expect']
[u'englishman', u'welshman', u'gift', u'pakistan']
[u'ararat', u'polic', u'crack', u'violenc']
[u'artist', u'ask', u'return', u'controversi', u'project']
[u'ash', u'battl', u'grip', u'million', u'asia']
[u'aust', u'china', u'satisfi', u'free', u'trade', u'talk', u'progress']
[u'aust', u'face', u'thai', u'child', u'charg']
[u'aust', u'philippin', u'discuss', u'closer', u'defenc', u'tie']
[u'australian', u'aboard', u'peru', u'crash', u'flight']
[u'australian', u'peru', u'crash', u'victim', u'unconfirm']
[u'australian', u'scientist', u'say', u'lanc', u'test']
[u'australia', u'sweat', u'mcgrath', u'fit']
[u'aust', u'teacher', u'face', u'indonesian', u'heroin', u'charg']
[u'beatti', u'call', u'senat', u'vote', u'telstra', u'sale']
[u'announc', u'annual', u'profit']
[u'billiton', u'net', u'profit']
[u'shut', u'briquett', u'plant']
[u'forward', u'school', u'closur']
[u'bluescop', u'enjoy', u'record', u'profit']
[u'bouncer', u'threaten', u'kill', u'hook', u'court', u'hear']
[u'brack', u'defend', u'leap', u'replac']
[u'brambl', u'profit', u'surg']
[u'britain', u'list', u'unaccept', u'behaviour']
[u'british', u'airway', u'negoti', u'continu', u'cater']
[u'brogden', u'plan', u'slash', u'job', u'fund', u'cut']
[u'brogden', u'vow', u'payrol']
[u'broom', u'wast', u'water', u'pump', u'station']
[u'build', u'work']
[u'crash', u'china', u'kill']
[u'centr', u'hail', u'taxi', u'firm', u'pick']
[u'tasmanian', u'convert']
[u'cannabi', u'grower', u'get', u'month', u'jail']
[u'central', u'face', u'harsh', u'water', u'ban']
[u'charlevill', u'drome', u'secur']
[u'citrus', u'industri', u'call', u'care', u'manag']
[u'coast', u'hop', u'brisban', u'accept', u'cancer', u'patient']
[u'communiti', u'group', u'consid', u'tuna', u'farm', u'plan']
[u'compani', u'probe', u'clear', u'anvil', u'congo', u'right', u'abus']
[u'compani', u'result', u'resourc', u'push', u'market', u'lower']
[u'concern', u'air', u'sewag', u'spill']
[u'conserv', u'societi', u'speak', u'protect']
[u'contractor', u'error', u'stop', u'melbourn', u'train']
[u'coron', u'seek', u'review', u'polic', u'murder', u'probe']
[u'council', u'apolog', u'overcharg', u'rat']
[u'council', u'blame', u'sewag', u'releas', u'infrastructur']
[u'council', u'help', u'tram', u'insur']
[u'council', u'draw', u'log', u'protest', u'debat']
[u'councillor', u'heat', u'hospit', u'draft']
[u'council', u'appli', u'power', u'extens']
[u'council', u'quiz', u'ratepay', u'need']
[u'council', u'vote', u'ballina', u'byron', u'airport', u'review']
[u'cowboy', u'rest', u'injur', u'rauhihi']
[u'cowra', u'want', u'councillor', u'number']
[u'crash', u'wit', u'negus', u'fight', u'highway', u'black', u'spot']
[u'croc', u'sight', u'prompt', u'darwin', u'beach', u'warn']
[u'csiro', u'softwar', u'assist', u'water', u'catchment']
[u'doubl', u'annual', u'profit']
[u'cunningham', u'seek', u'polic', u'boost']
[u'date', u'porteous', u'court', u'hear']
[u'diver', u'take', u'shark']
[u'diver', u'take', u'shark', u'report']
[u'doubt', u'rais', u'undera', u'rave', u'parti']
[u'recommend', u'mcgee', u'face', u'charg']
[u'dual', u'state', u'councillor', u'doubt']
[u'duck', u'alarm', u'bell', u'ring', u'royal', u'hideaway']
[u'earthquak', u'shake', u'southern', u'flinder', u'rang']
[u'educ', u'dept', u'say', u'shouldnt', u'impact']
[u'elect', u'turnout', u'highest', u'review', u'find']
[u'environment', u'friend', u'broom', u'hous', u'win', u'award']
[u'expert', u'boost', u'local', u'busi']
[u'famili', u'consid', u'legal', u'action', u'immigr']
[u'farm', u'confer', u'offer', u'region', u'outlook']
[u'farm', u'gate', u'tech']
[u'feder', u'environ', u'minist', u'head', u'pilbara']
[u'feder', u'prim', u'leav', u'rival', u'hungri']
[u'feedlot', u'plan', u'nose', u'resid']
[u'drown', u'overload', u'boat', u'sink']
[u'flinder', u'student', u'condemn', u'labor', u'chang']
[u'foetal', u'pain', u'unlik', u'trimest', u'studi']
[u'insur', u'agent', u'get', u'month', u'jail']
[u'forum', u'tackl', u'increas', u'case', u'aid']
[u'face', u'wallabi', u'squad']
[u'fund', u'dragon', u'boat', u'regatta', u'plan']
[u'extens', u'offer', u'macedon', u'rang', u'econom']
[u'gather', u'focus', u'attract', u'worker']
[u'geraldton', u'extend', u'christma', u'trade', u'hour']
[u'gillespi', u'ax', u'favour', u'tait']
[u'govt', u'ask', u'allow', u'region', u'taxi']
[u'govt', u'pressur', u'islam', u'school', u'teach', u'aust', u'valu']
[u'govt', u'push', u'wag', u'labor', u'say']
[u'govt', u'stand', u'time', u'take', u'help', u'indigen']
[u'govt', u'take', u'gambl', u'voter', u'support']
[u'govt', u'enter', u'mosqu', u'anti', u'terror', u'crackdown']
[u'govt', u'peel', u'deviat', u'commit']
[u'govt', u'urg', u'confront', u'indigen', u'literaci', u'rat']
[u'govt', u'urg', u'woolgrow', u'negoti']
[u'graduat', u'boost', u'indigen', u'essenti', u'servic']
[u'harrop', u'keen', u'commonwealth', u'game']
[u'harvey', u'beef', u'woe', u'spark', u'rescu', u'packag']
[u'hewitt', u'molik', u'seed', u'flush', u'meadow']
[u'higher', u'fuel', u'price', u'brake', u'self', u'drive']
[u'icpa', u'back', u'telstra', u'sale', u'safeguard']
[u'iemma', u'celebr', u'poll', u'result']
[u'india', u'deni', u'plan', u'tiger', u'eleph', u'parad']
[u'india', u'guarante', u'work', u'rural', u'household']
[u'inquest', u'hold', u'canadian', u'death']
[u'inquest', u'tell', u'mother', u'sleep', u'daughter', u'drown']
[u'inquiri', u'tell', u'dental', u'servic', u'inadequ']
[u'insurg', u'attack', u'baghdad', u'polic']
[u'interst', u'tourist', u'kill', u'north', u'accid']
[u'investig', u'continu', u'death']
[u'inzi', u'hurt', u'world', u'snub']
[u'iraq', u'sunni', u'face', u'choic', u'constitut', u'bush']
[u'israel', u'settler', u'evacu', u'complet']
[u'journalist', u'minchin']
[u'joyc', u'back', u'labor', u'deal']
[u'joyc', u'urg', u'wider', u'rethink', u'reef', u'author']
[u'king', u'face', u'bruton', u'poach', u'threat']
[u'labor', u'offer', u'deal']
[u'labor', u'outrag', u'immigr', u'dept', u'treatment']
[u'leader', u'farewel', u'afghan', u'bind', u'troop']
[u'leak', u'advic', u'add', u'case', u'labor', u'say']
[u'show', u'council', u'committe']
[u'lehmann', u'tell', u'court', u'trauma', u'hook', u'death']
[u'lehmann', u'tell', u'hook', u'trauma']
[u'leipheim', u'triumph', u'tour', u'germani']
[u'lille', u'thomson', u'inspir', u'tearaway', u'tait']
[u'macquari', u'airport', u'profit', u'take']
[u'charg', u'mackay', u'rape']
[u'recov', u'gladston', u'accid']
[u'rescu', u'smoki', u'unit']
[u'stab', u'peak', u'hill']
[u'mayn', u'group', u'profit']
[u'mayor', u'john', u'chadban', u'threat']
[u'mayor', u'warn', u'roadsid', u'sale']
[u'mayor', u'worri', u'negat', u'council']
[u'mcdonald', u'stand', u'firm', u'oversea', u'import']
[u'meatwork', u'liquid']
[u'minchin', u'set', u'case', u'telstra', u'sale']
[u'miner', u'keen', u'uranium', u'search']
[u'minist', u'disput', u'phone', u'claim']
[u'minist', u'tell', u'muslim', u'accept', u'aussi', u'valu']
[u'minist', u'urg', u'consult', u'communiti']
[u'model', u'face', u'drug', u'charg', u'meet', u'lawyer']
[u'mortgag', u'broker', u'record', u'profit', u'increas']
[u'motion', u'civic', u'centr', u'review', u'fail']
[u'murchison', u'metal', u'second', u'share', u'placement']
[u'myob', u'track', u'revenu']
[u'nelson', u'commit', u'student', u'rank', u'despit']
[u'nelson', u'meet', u'muslim', u'leader']
[u'newcastl', u'confirm', u'record', u'owen']
[u'home', u'plan', u'rural', u'clinic', u'school']
[u'scheme', u'improv', u'walbundri', u'rand', u'water']
[u'newspap', u'admit', u'fabric', u'timberlak', u'affair']
[u'nightfal', u'halt', u'search', u'shark', u'attack', u'victim']
[u'nimbin', u'coffe', u'compani', u'brew', u'plan', u'world']
[u'evacu', u'plan', u'canberra']
[u'mysteri', u'fevola', u'absenc', u'pagan']
[u'northern', u'fish', u'plan', u'spark', u'respons']
[u'infrastructur', u'ahead', u'nation']
[u'unveil', u'indigen', u'educ', u'strategi']
[u'ogradi', u'snub', u'australia', u'mcewen', u'feud']
[u'opposit', u'highlight', u'poki', u'impact']
[u'half', u'world', u'popul', u'surviv']
[u'parent', u'guilti', u'imprison', u'teenag', u'daughter']
[u'person', u'scammer', u'jail']
[u'petti', u'crime', u'target', u'countri', u'peopl']
[u'pilbara', u'volunt', u'rescu', u'group', u'win', u'award']
[u'plan', u'build', u'star', u'hotel', u'lithgow']
[u'express', u'disbelief', u'asia', u'drug', u'carri']
[u'pngs', u'program', u'salvag']
[u'polic', u'dismiss', u'civic', u'safeti', u'concern']
[u'polic', u'fear', u'miss']
[u'polic', u'beat', u'drug', u'arrest']
[u'polic', u'urg', u'fast', u'food', u'shop', u'trade', u'hour']
[u'plate', u'driver', u'admit', u'kill', u'friend']
[u'premier', u'urg', u'boost', u'rail', u'servic']
[u'protest', u'continu', u'supermarket', u'opposit']
[u'public', u'patient', u'abl', u'access', u'cobb']
[u'public', u'urg', u'fuel', u'theft', u'victim']
[u'extradit']
[u'quarri', u'public', u'green', u'space']
[u'raaf', u'crew', u'treat', u'scare']
[u'racv', u'highlight', u'unregist', u'driver']
[u'report', u'criticis', u'growth', u'compo', u'fund']
[u'resourc', u'strain', u'report', u'child', u'abus']
[u'retir', u'offic', u'lose', u'govt', u'naval']
[u'urg', u'black', u'spot', u'upgrad']
[u'ryan', u'rais', u'polic', u'file', u'fear']
[u'salin', u'crisi', u'plan', u'present']
[u'medic', u'work', u'forc', u'rise']
[u'school', u'celebr', u'life', u'miss', u'teacher']
[u'search', u'newton', u'john', u'partner', u'continu']
[u'search', u'shark', u'attack', u'diver']
[u'seymour', u'add', u'bronco', u'injuri', u'woe']
[u'shatter', u'bulldog', u'look', u'bright']
[u'shire', u'back', u'boat', u'launch', u'facil']
[u'skier', u'die', u'hotham', u'mishap']
[u'skill', u'vacanc', u'drop']
[u'southern', u'cross', u'profit', u'rise']
[u'spirit', u'tasmania', u'doubl', u'book']
[u'springbok', u'barri']
[u'studi', u'consid', u'north', u'west', u'copper', u'gold']
[u'task', u'forc', u'investig', u'latest', u'raid']
[u'plan', u'tighten', u'anim', u'welfar', u'law']
[u'teacher', u'await', u'govt', u'respons', u'strike', u'vote']
[u'teen', u'court', u'school', u'blaze']
[u'telstra', u'requir', u'fault']
[u'countri', u'hour', u'go', u'cooktown']
[u'thoma', u'pay', u'price', u'umpir', u'comment']
[u'price', u'teacher', u'vie', u'award']
[u'wag', u'gamba', u'grass']
[u'tourism', u'group', u'back', u'plan', u'oust', u'dodgi', u'oper']
[u'train', u'servic', u'south', u'east', u'melbourn', u'resum']
[u'truck', u'compani', u'post', u'record', u'half', u'year', u'profit']
[u'offer', u'solut', u'nurs', u'shortag']
[u'focus', u'iran', u'nuclear', u'network']
[u'reject', u'call', u'chavez', u'assassin']
[u'vail', u'upbeat', u'telstra', u'talk']
[u'venezuela', u'demand', u'apolog', u'assassin']
[u'govt', u'workplac', u'right', u'plan', u'polit']
[u'viduka', u'best', u'say', u'manag']
[u'hold', u'thai', u'child', u'offenc']
[u'wanga', u'retir', u'rethink']
[u'warwick', u'credit', u'union', u'mark', u'year']
[u'women', u'champion']
[u'wind', u'caus', u'yacht', u'capsiz', u'polic']
[u'wit', u'seek', u'accid']
[u'woman', u'injur', u'crash']
[u'young', u'muslim', u'choos', u'sept', u'action']
[u'seek', u'robberi', u'polic', u'brief']
[u'abba', u'accus', u'israel', u'wreck', u'peac']
[u'abetz', u'accus', u'undermin', u'toler']
[u'academ', u'suggest', u'fewer', u'wheatbelt', u'town']
[u'accus', u'rapist', u'charg', u'break', u'bail']
[u'anglican', u'seek', u'dialogu', u'muslim']
[u'urg', u'drop', u'court', u'action', u'peta']
[u'barn', u'start', u'half', u'brisban', u'lose', u'seymour']
[u'condemn', u'govt', u'infrastructur', u'plan']
[u'betfair', u'inquiri', u'launch', u'tasmania']
[u'wheel', u'continu', u'roll', u'reunion']
[u'biosecur', u'plan', u'launch', u'grain', u'industri']
[u'blackburn', u'spur', u'draw']
[u'bolton', u'urg', u'speed', u'propos', u'negoti']
[u'boycott', u'hurt', u'farmer', u'mcdonald']
[u'brack', u'rule', u'speed', u'camera', u'review']
[u'break', u'straw', u'histor']
[u'brief', u'insight', u'malle', u'toxic', u'wast', u'dump']
[u'brogden', u'say', u'iemma', u'cut', u'bolder']
[u'broom', u'albani', u'footi', u'academi']
[u'bucket', u'state', u'money', u'research', u'self']
[u'council', u'merger', u'talk']
[u'council', u'reject', u'wind', u'farm', u'plan']
[u'payrol', u'busi']
[u'casa', u'wait', u'qanta', u'brief', u'engin', u'troubl']
[u'cattl', u'produc', u'plan', u'million', u'dollar', u'beef', u'campaign']
[u'caucau', u'ban', u'nation']
[u'citrus', u'grower', u'hope', u'higher', u'price', u'market']
[u'confer', u'studi', u'synthet', u'herbicid', u'altern']
[u'conserv', u'group', u'wari', u'kaili', u'consult']
[u'corrupt', u'fighter', u'resign']
[u'council', u'ask', u'govern', u'subsidis']
[u'council', u'complain', u'miss', u'function']
[u'council', u'plan', u'decis', u'prove', u'cost']
[u'council', u'tafe', u'work', u'train', u'opportun']
[u'council', u'work', u'water', u'manag', u'plan']
[u'court', u'award', u'crash', u'victim']
[u'court', u'tell', u'kill', u'lover', u'abort']
[u'decor', u'offic', u'replac', u'yench']
[u'detaine', u'ankl', u'break', u'baxter', u'incid']
[u'confirm', u'myer', u'store']
[u'doctor', u'quit', u'seymour', u'hospit']
[u'dodgi', u'knee', u'end', u'maxfield', u'season']
[u'drug', u'dealer', u'life', u'sentenc']
[u'condit', u'drive', u'demand', u'groundwat']
[u'earthcor', u'organis', u'consid', u'altern', u'site']
[u'edmond', u'say', u'half', u'specialist', u'list', u'wont', u'need']
[u'green', u'famili', u'member', u'confid', u'firm', u'come']
[u'engin', u'fault', u'produc', u'spark', u'qanta']
[u'european', u'flood', u'kill', u'dozen']
[u'evangelist', u'say', u'sorri', u'chavez', u'assassin']
[u'expert', u'dismiss', u'water', u'bomb', u'sumatra', u'fire']
[u'famili', u'call', u'mcdonald', u'spud', u'boycott']
[u'famili', u'miss', u'speak', u'tragic', u'loss']
[u'famili', u'sue', u'death', u'custodi']
[u'farmer', u'urg', u'rethink', u'drought', u'status']
[u'fatal', u'crash', u'prompt', u'polic', u'safeti', u'warn']
[u'feder', u'court', u'judg', u'die']
[u'financi', u'group', u'support', u'credit', u'law']
[u'florida', u'alert', u'tropic', u'storm', u'katrina']
[u'forest', u'feder', u'execut', u'reject', u'compo', u'rort']
[u'kill', u'west', u'bank', u'raid']
[u'licenc', u'criticis', u'say', u'malthous']
[u'clock', u'get', u'tick']
[u'gold', u'miner', u'recruit', u'indigen', u'worker', u'plan']
[u'googl', u'stride', u'chat', u'voip', u'land']
[u'googl', u'talk', u'launch']
[u'govt', u'act', u'like', u'brother', u'labor']
[u'govt', u'ask', u'loss', u'communiti']
[u'govt', u'blame', u'hospit', u'cancer', u'care', u'crisi']
[u'govt', u'deni', u'telstra', u'backflip']
[u'govt', u'toughen', u'environment', u'standard']
[u'govt', u'urg', u'review', u'water', u'agreement']
[u'group', u'say', u'local', u'doctor', u'shortag', u'worsen']
[u'gunn', u'profit', u'expect']
[u'health', u'care', u'issu', u'macquari', u'field', u'iemma']
[u'health', u'watchdog', u'seek', u'fund', u'boost']
[u'health', u'worker', u'focus', u'remot', u'work', u'woe']
[u'heathcot', u'prepar', u'communiti', u'bank', u'open']
[u'henri', u'close', u'wright', u'record']
[u'heritag', u'site', u'list', u'australia', u'govt']
[u'hewitt', u'nemesi', u'feder', u'open']
[u'hobart', u'islam', u'studi', u'centr', u'suspici']
[u'hook', u'knock', u'hit', u'grind', u'wit']
[u'hook', u'friend', u'wrap', u'evid', u'bouncer', u'trial']
[u'hotlin', u'runaway', u'croc']
[u'hous', u'price', u'fall', u'illawarra']
[u'hunt', u'shark', u'continu']
[u'iemma', u'offer', u'west', u'health', u'assur']
[u'increas', u'book', u'devonport', u'sydney', u'ferri']
[u'independ', u'panel', u'rule', u'industri', u'land', u'plan']
[u'injur', u'cyclist', u'begin', u'recoveri', u'northern']
[u'internet', u'help', u'farmer', u'fight', u'crime']
[u'japanes', u'opposit', u'promis', u'iraq', u'pullout']
[u'cut', u'plan', u'port', u'piri', u'smelter']
[u'jone', u'urg', u'blood', u'johansson']
[u'joyc', u'back', u'telstra', u'sale']
[u'kangaroo', u'mckernan', u'finish']
[u'karzai', u'criticis', u'soldier', u'sentenc', u'abus']
[u'kelso', u'high', u'school', u'student', u'send']
[u'latrob', u'valley', u'paper', u'expand']
[u'legal', u'team', u'keep', u'quiet', u'model', u'case']
[u'lemar', u'lead', u'mobo', u'nomin']
[u'lion', u'white', u'announc', u'retir']
[u'liverpool', u'ponder', u'owen']
[u'major', u'supplier', u'catch', u'ecstasi', u'haul']
[u'mall', u'submiss', u'near', u'complet']
[u'thailand', u'face', u'paedophilia', u'charg']
[u'man', u'marlin', u'deni', u'hopoat', u'book']
[u'ranger', u'march', u'miseri']
[u'mayor', u'push', u'cancer', u'treatment', u'fund']
[u'mcmahon', u'expect', u'good', u'test', u'marin']
[u'west', u'phone', u'tower']
[u'mildura', u'marina', u'site', u'test', u'complet']
[u'miner', u'buy', u'cape', u'lambert', u'iron', u'project']
[u'mine', u'sector', u'send', u'market', u'lower']
[u'minist', u'water', u'factori', u'plan']
[u'minist', u'hear', u'gold', u'coast', u'health', u'woe']
[u'minist', u'urg', u'controversi', u'hous', u'estat']
[u'mirani', u'council', u'cap', u'rate', u'rise']
[u'mix', u'respons', u'port', u'hedland', u'iron', u'plant', u'closur']
[u'oversea', u'visitor', u'flock', u'agquip']
[u'vmos', u'continu', u'tender', u'resign']
[u'surveil', u'camera', u'armidal']
[u'make', u'telstra', u'sale', u'pledg']
[u'want', u'tenfold', u'increas', u'wild', u'bounti']
[u'nation', u'concern', u'plant', u'water', u'treatment', u'plan']
[u'negoti', u'visit', u'medic', u'offic']
[u'plan', u'smith', u'beach']
[u'chairman', u'fairfax']
[u'law', u'shock', u'young', u'offend', u'crime']
[u'unit', u'focus', u'heal', u'abus']
[u'nine', u'difficult', u'year', u'hit', u'profit']
[u'chang', u'afoot', u'berri', u'riverland', u'plant']
[u'forc', u'redund', u'govt', u'say']
[u'sniff', u'fuel', u'spur', u'addict', u'katherin']
[u'north', u'road', u'toll', u'continu', u'climb']
[u'downplay', u'bird', u'risk', u'hunter']
[u'govt', u'urg', u'senat', u'guarante', u'telco']
[u'offici', u'disciplin', u'timor', u'data']
[u'ogradi', u'injuri', u'solv', u'mcewen', u'friction']
[u'price', u'push', u'santo', u'record', u'profit']
[u'orang', u'host', u'workplac', u'safeti', u'summit']
[u'overcrowd', u'central', u'palm', u'island', u'problem']
[u'oversea', u'train', u'doctor', u'clear', u'patient', u'death']
[u'pay', u'park', u'plan', u'sunshin', u'coast', u'airport']
[u'pakistan', u'confirm', u'religi', u'school', u'crackdown', u'plan']
[u'perish', u'blue', u'get', u'owner']
[u'plan', u'water', u'factori', u'latrob', u'valley']
[u'plenti', u'stake', u'leagu']
[u'polic', u'investig', u'alleg', u'schoolgirl', u'abduct']
[u'polic', u'investig', u'kerang', u'hous']
[u'polic', u'investig', u'warrawong', u'death']
[u'polic', u'truck', u'crash', u'victim']
[u'polic', u'promis', u'countri', u'road', u'crackdown']
[u'potato', u'grower', u'contract', u'price', u'plan']
[u'prais', u'indigen', u'agreement']
[u'premier', u'announc', u'farm', u'safeti', u'packag']
[u'profit', u'poki', u'power', u'promina']
[u'public', u'servant', u'disciplin', u'intellig']
[u'push', u'continu', u'northern', u'power', u'plant']
[u'push', u'boost', u'nimbin', u'polic', u'rank']
[u'qanta', u'deni', u'engin', u'flight']
[u'queensland', u'rugbi', u'futur']
[u'rail', u'station', u'master', u'quit', u'porn', u'charg']
[u'rain', u'hold', u'england']
[u'rain', u'influenc', u'fourth', u'ash', u'test']
[u'rain', u'record', u'west', u'kimberley']
[u'rare', u'orang', u'sapphir', u'rubi']
[u'reconcili', u'bond', u'program', u'launch']
[u'red', u'futur', u'connor']
[u'research', u'centr', u'tackl', u'terror', u'psycholog']
[u'return', u'iraq', u'soldier', u'face', u'physic', u'mental', u'risk']
[u'robert', u'defend', u'mayor']
[u'rocket', u'fire', u'southern', u'israel']
[u'plan', u'chao', u'push', u'driver', u'tunnel', u'nrma']
[u'rural', u'health', u'scheme', u'push', u'hospit']
[u'russian', u'region', u'leader', u'wound', u'bomb', u'attack']
[u'safeti', u'bureau', u'probe', u'qanta', u'incid']
[u'safeti', u'hous', u'group', u'seek', u'polic', u'help']
[u'santo', u'announc', u'record', u'profit']
[u'scullion', u'pressur', u'stanc']
[u'seafood', u'hotlin', u'take', u'gold', u'coast', u'complaint']
[u'secur', u'revamp', u'plan', u'learmonth', u'airport']
[u'sewag', u'spill', u'worri', u'fisher']
[u'shark', u'attack', u'victim', u'love']
[u'shark', u'net', u'wouldnt', u'stop', u'attack', u'rann']
[u'shoot', u'dead', u'iraqi', u'cafe']
[u'skywest', u'profit']
[u'southern', u'light', u'brighten', u'night']
[u'speaker', u'expect', u'bipartisan', u'support', u'code']
[u'speed', u'camera', u'bungl', u'prompt', u'network', u'review']
[u'springborg', u'back', u'joyc', u'telstra']
[u'state', u'govt', u'minist', u'visit', u'orang']
[u'state', u'pilchard', u'fisheri', u'close', u'dolphin', u'death']
[u'state', u'releas', u'land', u'coal', u'rush']
[u'stelio', u'pile', u'miseri', u'newcastl']
[u'stock', u'death', u'poor', u'lamb', u'rat', u'border', u'farmer']
[u'student', u'highlight', u'region', u'internet', u'woe']
[u'student', u'protest', u'street']
[u'submiss', u'seek', u'basin', u'manag', u'plan']
[u'swift', u'secur', u'grand', u'final', u'berth']
[u'sydney', u'traffic', u'problem', u'expect', u'worsen']
[u'tait', u'stick', u'know']
[u'tassi', u'shark', u'patrol', u'helicopt', u'adelaid']
[u'level', u'rise']
[u'telstra', u'legisl', u'meet', u'nation', u'concern']
[u'test', u'preview']
[u'kill', u'victorian', u'road']
[u'hold', u'fatal', u'stab', u'collingwood']
[u'tonga', u'beef', u'polic', u'presenc', u'king']
[u'tougher', u'gold', u'coast', u'water', u'ban', u'loom']
[u'trescothick', u'exploit', u'australia', u'bowl', u'woe']
[u'union', u'negoti', u'settlement', u'sack', u'council']
[u'union', u'see', u'benefit', u'report', u'have', u'parent']
[u'court', u'reject', u'man', u'appeal', u'overturn']
[u'soldier', u'sentenc', u'afghan', u'prison', u'abus']
[u'boost', u'iraq', u'troop', u'number', u'vote']
[u'victim', u'tri', u'fight', u'shark', u'wit', u'say']
[u'victori', u'leijer', u'excit', u'york', u'challeng']
[u'wandal', u'hous', u'fire', u'street', u'away']
[u'wanga', u'boost', u'port', u'play', u'decis']
[u'warn', u'break', u'australia']
[u'water', u'storag', u'concern', u'air']
[u'wayn', u'pearc', u'rooster']
[u'west', u'bank', u'death', u'toll', u'revis']
[u'wit', u'tell', u'shark', u'attack', u'victim', u'final']
[u'wodonga', u'face', u'court', u'father', u'daughter']
[u'yacht', u'rescu', u'prompt', u'prais']
[u'yawn', u'order', u'parliament']
[u'fund', u'assist', u'holden', u'worker']
[u'abbott', u'rebuff', u'beatti', u'challeng', u'health']
[u'ablett', u'doubt', u'clash', u'tiger']
[u'govt', u'chang', u'shock', u'therapi', u'polici']
[u'adelaid', u'model', u'dump', u'indonesian', u'lawyer']
[u'adelaid', u'inaugur', u'leagu', u'clash']
[u'umpir', u'clear', u'inappropri', u'behaviour']
[u'agreement', u'boost', u'indigen', u'group', u'wallabi']
[u'agreement', u'remain', u'bullock', u'educ', u'cours']
[u'say', u'nile', u'abort', u'propos', u'help']
[u'ambul', u'organis', u'face', u'staff', u'shortag']
[u'anaesthetist', u'recal', u'critic', u'patel']
[u'approv', u'give', u'stage', u'pain', u'free']
[u'armstrong', u'consid', u'lawsuit', u'dope', u'alleg']
[u'arrest', u'forest', u'demonstr']
[u'aust', u'missionari', u'bodi', u'ugandan', u'waterfal']
[u'aust', u'philippin', u'strengthen', u'anti', u'terror', u'cooper']
[u'australian', u'confirm', u'dead', u'peru', u'aircrash']
[u'author', u'probe', u'light', u'plane', u'crash']
[u'author', u'seek', u'contract', u'prison', u'welfar']
[u'auto', u'part', u'compani', u'sell']
[u'autopsi', u'hous', u'blaze', u'victim']
[u'babi', u'kill', u'crash']
[u'ballarat', u'fuel', u'discount', u'scheme']
[u'ball', u'celebr', u'year', u'fli', u'doctor']
[u'beatti', u'offer', u'health', u'rein', u'commonwealth']
[u'beatti', u'health', u'challeng', u'stunt', u'springborg']
[u'belgian', u'get', u'year', u'wheeli', u'murder']
[u'box', u'tsunami', u'reach', u'america', u'studi']
[u'bridg', u'final', u'link']
[u'bronco', u'lose', u'spot']
[u'broom', u'shire', u'announc', u'annual', u'budget']
[u'buchanan', u'see', u'aussi', u'overstep', u'mark']
[u'bulldog', u'humbl', u'pie', u'dockland']
[u'bulldog', u'remain', u'final', u'race']
[u'byron', u'council', u'consid', u'holiday', u'let']
[u'caltex', u'confid', u'despit', u'profit', u'drop']
[u'caltex', u'profit', u'drop']
[u'captain', u'bell', u'provid', u'major', u'boost', u'docker']
[u'captain', u'break', u'clash', u'rooster']
[u'church', u'worker', u'jail', u'bash', u'woman']
[u'civic', u'blame', u'attract', u'drug', u'dealer']
[u'clean', u'continu', u'chemic', u'factori', u'blaze']
[u'clear', u'iraqi', u'civilian', u'compo', u'rumour', u'opposit']
[u'close', u'school', u'go', u'suprem', u'court']
[u'power', u'promis', u'econom', u'viabl', u'report']
[u'coach', u'craig', u'readi', u'strength', u'eagl']
[u'commiss', u'underspend', u'poki', u'fund']
[u'communiti', u'hold', u'network', u'forum']
[u'communiti', u'reject', u'hous', u'deal']
[u'complaint', u'prompt', u'nation', u'telemarket']
[u'concern', u'remain', u'canker', u'compo']
[u'constitut', u'push', u'freedom']
[u'convict', u'prostitut', u'murder', u'lose', u'appeal']
[u'coron', u'recommend', u'prison', u'health', u'servic', u'upgrad']
[u'cotton', u'surplus', u'impact', u'price']
[u'council', u'allow', u'rat', u'payment', u'credit', u'card']
[u'council', u'consid', u'waterfront', u'traffic', u'option']
[u'council', u'push', u'water']
[u'council', u'reject', u'land', u'tender']
[u'council', u'seek', u'cotton', u'assur']
[u'council', u'fear', u'lose', u'rate', u'incom']
[u'council', u'driver', u'merger', u'hickey']
[u'crow', u'settl']
[u'cuba', u'blame', u'fatal', u'shipwreck']
[u'defenc', u'forc', u'consid', u'south', u'pacif', u'recruit']
[u'desper', u'souness', u'break', u'clash']
[u'detaine', u'claim', u'ankl', u'deliber', u'break', u'guard']
[u'disput', u'brew', u'tower', u'hill', u'plan']
[u'diva', u'crack']
[u'dont', u'focus', u'reform', u'rich', u'beazley']
[u'doubt', u'cast', u'payrol', u'plan']
[u'die', u'dolphin', u'forc', u'fisheri', u'closur']
[u'eel', u'lose', u'hindmarsh', u'raider', u'clash']
[u'elli', u'play', u'final', u'despit', u'injuri']
[u'england', u'charg', u'lunch']
[u'esper', u'group', u'urg', u'join', u'tuna', u'committe']
[u'mayor', u'say', u'road', u'litig', u'continu']
[u'factori', u'destroy']
[u'famili', u'peru', u'crash', u'victim', u'identifi']
[u'famili', u'seek', u'compo', u'student', u'death']
[u'farmer', u'unawar', u'drought']
[u'farmer', u'seek', u'telstra', u'legisl', u'detail']
[u'farmland', u'worri', u'local', u'resid']
[u'father', u'lose', u'hope', u'hickss', u'freedom']
[u'fiji', u'court', u'overturn', u'australian', u'sodomi', u'convict']
[u'fire', u'control', u'flood', u'reced', u'europ']
[u'flatley', u'futur', u'unclear', u'doctor', u'order', u'rest']
[u'flintoff', u'star', u'england', u'set', u'strong', u'total']
[u'forc', u'fee', u'convict', u'sniper', u'judg', u'rule']
[u'commission', u'action', u'investig']
[u'rugbi', u'intern', u'convict', u'ecstasi']
[u'friend', u'famili', u'tribut', u'famili', u'kill']
[u'froggi', u'founder', u'appear', u'court']
[u'gallop', u'attack', u'uranium', u'silenc']
[u'get', u'cooktown']
[u'govern', u'defend', u'work', u'welfar', u'program']
[u'govt', u'accus', u'ignor', u'matern', u'review']
[u'govt', u'seek', u'bank', u'tender', u'telstra', u'sale']
[u'govt', u'stand', u'welfar', u'work', u'program']
[u'grain', u'council', u'urg', u'altern', u'grain', u'market']
[u'grain', u'industri', u'probe', u'canola', u'contamin']
[u'green', u'group', u'air', u'paper', u'worri']
[u'grog', u'run', u'penalti', u'draconian']
[u'group', u'toxic', u'dump', u'cost', u'malle', u'million']
[u'health', u'group', u'label', u'wellington', u'hospit', u'dump']
[u'health', u'servic', u'ask', u'patient', u'overload']
[u'henri', u'play', u'lenton', u'rivalri']
[u'heritag', u'bodi', u'decid', u'drome', u'fate']
[u'hickey', u'confid', u'western', u'administr']
[u'holden', u'cut', u'flow', u'impact', u'research']
[u'holden', u'job']
[u'hook', u'ringlead', u'bouncer', u'fight', u'court', u'tell']
[u'hook', u'main', u'aggressor', u'court', u'tell']
[u'howard', u'defend', u'herald', u'legal', u'action']
[u'howard', u'hint', u'rate']
[u'hurrican', u'katrina', u'batter', u'florida', u'south', u'east', u'coast']
[u'hurrican', u'katrina', u'make', u'landfal', u'florida']
[u'iemma', u'fail', u'includ', u'kelso', u'region', u'tour']
[u'indigen', u'communiti', u'collect', u'cultur', u'data']
[u'indigen', u'health', u'improv', u'abbott']
[u'investig', u'begin', u'melbourn', u'chemic']
[u'irrig', u'tough', u'drought', u'continu']
[u'jetstar', u'face', u'renew', u'communic', u'breakdown']
[u'land', u'purchas', u'prompt', u'bulli', u'pass', u'rout']
[u'largest', u'coast', u'develop', u'knock']
[u'chang', u'affect', u'region', u'media', u'ownership']
[u'leon', u'robinson', u'case', u'return', u'court']
[u'light', u'plane', u'crash', u'tasmania']
[u'lion', u'look', u'send', u'white', u'winner']
[u'malaysia', u'aust', u'free', u'trade', u'deal']
[u'maleni', u'school', u'vow', u'human', u'right', u'fight']
[u'charg', u'fatal', u'motorbik', u'accid']
[u'mandatori', u'sentenc', u'troubl', u'outgo', u'magistr']
[u'face', u'court', u'teen', u'rape', u'charg']
[u'order', u'repay', u'welfar', u'money']
[u'man', u'secur', u'licenc', u'child']
[u'stand', u'trial', u'jewelleri', u'theft']
[u'market', u'finish', u'week', u'stronger', u'amid', u'resourc', u'ralli']
[u'mayor', u'attack', u'joyc', u'telstra', u'sale', u'stanc']
[u'mayor', u'hop', u'updat', u'premier', u'break', u'hill', u'need']
[u'meet', u'put', u'focus', u'age', u'care', u'plan']
[u'meninga', u'interest', u'queensland', u'origin']
[u'mexican', u'drench', u'caus', u'chao']
[u'creditor', u'face', u'struggl', u'recov', u'fund']
[u'minchin', u'back', u'sunric', u'monopoli']
[u'owner', u'run', u'away', u'blast', u'kill']
[u'miner', u'rais', u'fund', u'south', u'east', u'gold', u'project']
[u'minist', u'stand', u'asid', u'lie', u'alleg']
[u'park', u'open', u'snow', u'damag']
[u'angri', u'coast', u'transport']
[u'highlight', u'rail', u'freight', u'near', u'miss']
[u'plead', u'improv', u'ambul', u'servic']
[u'multi', u'million', u'dollar', u'rural', u'clinic', u'approv']
[u'musharraf', u'assassin', u'plotter', u'sentenc', u'death']
[u'nebo', u'council', u'announc', u'record', u'budget']
[u'newcastl', u'get', u'coal', u'loader']
[u'centr', u'help', u'save', u'valuabl', u'tree', u'speci']
[u'superintend', u'look', u'albani', u'crime', u'rate']
[u'tourism', u'manag', u'name', u'soon']
[u'join', u'fight', u'horticultur', u'code']
[u'nhulunbuy', u'top', u'groceri', u'cost', u'survey']
[u'nile', u'abort', u'highlight', u'foetus', u'pain', u'issu']
[u'guidelin', u'breach', u'sponsor', u'sign', u'minist', u'say']
[u'number', u'bulk', u'bill', u'increas', u'govt']
[u'opal', u'mine', u'go', u'tough', u'time']
[u'open', u'sewer', u'channel']
[u'pacif', u'palm', u'studi', u'hold', u'independ', u'studi']
[u'pari', u'build', u'kill']
[u'partnership', u'need', u'address', u'communiti', u'violenc']
[u'peru', u'plane', u'crash', u'victim', u'cheat', u'london', u'bomber']
[u'pesticid', u'handler', u'train', u'remind']
[u'petrol', u'sniffer', u'influx', u'claim', u'unsubstanti']
[u'pike', u'open', u'ambul', u'station', u'upgrad']
[u'plenti', u'play', u'rooster', u'tackl', u'bronco']
[u'contradict', u'costello', u'rate']
[u'float', u'cut', u'idea']
[u'polic', u'interview', u'fatal']
[u'polic', u'probe', u'knife', u'attack']
[u'previous', u'explor', u'fast', u'track', u'project']
[u'public', u'urg', u'crim']
[u'punter', u'offer', u'altern']
[u'agre', u'nation', u'trade', u'qualif']
[u'govt', u'ethanol', u'blend', u'fuel']
[u'rebel', u'report', u'clash', u'soldier', u'aceh']
[u'repeat', u'drink', u'driver', u'baffl', u'polic']
[u'resid', u'concern', u'land']
[u'resid', u'hospit', u'revamp']
[u'resid', u'support', u'water', u'scheme']
[u'return', u'star', u'excit', u'leagu']
[u'road', u'close', u'unseason', u'downpour']
[u'road', u'narrow', u'wind', u'danger']
[u'rumford', u'share', u'earli', u'lead', u'munich']
[u'santo', u'profit', u'boost', u'project', u'success']
[u'polic', u'consid', u'charg', u'mcgee', u'brother']
[u'scientist', u'compar', u'rock', u'lobster']
[u'scientist', u'float', u'bodi', u'theori']
[u'seafood', u'council', u'elect']
[u'search', u'sexual', u'assault']
[u'senior', u'judg', u'criticis', u'nation', u'plan']
[u'skier', u'jump', u'chanc', u'compet', u'hoppet']
[u'smorgon', u'share', u'surg', u'profit', u'report']
[u'snake', u'seiz', u'wildlif', u'crackdown']
[u'speedway', u'option', u'tout', u'devonport', u'hoon']
[u'springbok', u'coach', u'say', u'stand', u'jone']
[u'springborg', u'highlight', u'gold', u'coast', u'health', u'woe']
[u'struggl', u'abattoir', u'apologis', u'creditor']
[u'suncorp', u'profit', u'percent']
[u'surf', u'club', u'criticis', u'council', u'lack', u'support']
[u'sydney', u'qaeda', u'target', u'investig', u'say']
[u'tait', u'show', u'promis', u'england', u'squander', u'great', u'start']
[u'talk', u'continu', u'horsham', u'melbourn', u'flight']
[u'tariff', u'cut', u'blame', u'loss']
[u'telstra', u'sale', u'fuel', u'perth']
[u'tenterfield', u'hold', u'fluorid', u'referendum']
[u'thorp', u'return', u'commonwealth', u'game', u'trial']
[u'school', u'award']
[u'trescothick', u'predict', u'crucial', u'morn', u'session']
[u'trucki', u'busi', u'scrutini', u'reunion']
[u'truck', u'industri', u'control', u'judg', u'say']
[u'appear', u'court', u'fatal', u'stab']
[u'plead', u'guilti', u'manslaught', u'adelaid']
[u'uzbekistan', u'evict', u'militari']
[u'famili', u'head', u'peru', u'crash', u'site']
[u'water', u'problem', u'hamper', u'hous', u'battl']
[u'water', u'storag', u'reach', u'crisi']
[u'woman', u'kill', u'peru', u'crash']
[u'wild', u'fenc', u'collar', u'feder', u'environ', u'minist']
[u'woewodin', u'davi', u'celebr', u'mileston', u'pie', u'start']
[u'abbott', u'plan', u'condit', u'health', u'moni']
[u'activist', u'heckl', u'adelaid']
[u'adelaid', u'model', u'sack', u'lawyer', u'say', u'spokesman']
[u'seiz', u'fake', u'document', u'haul', u'drug']
[u'black', u'nation', u'aliv']
[u'say', u'bulk', u'bill', u'effort', u'fall', u'short']
[u'astonish', u'bekel', u'smash', u'world', u'record']
[u'aussi', u'forc', u'follow']
[u'author', u'mull', u'perman', u'measur', u'water']
[u'beslan', u'sieg', u'mastermind', u'name', u'chechen', u'deputi', u'leader']
[u'blame', u'bush', u'happen', u'chavez']
[u'bond', u'blow', u'india', u'away']
[u'camera', u'technolog', u'aid', u'devil', u'diseas', u'project']
[u'staff', u'lock', u'contract', u'disput']
[u'child', u'refuge', u'sue', u'detent', u'trauma']
[u'ciss', u'lead', u'liverpool', u'super']
[u'clijster', u'plan', u'quit']
[u'communiti', u'honour', u'indigen', u'educ', u'aunti', u'molli']
[u'crow', u'minor', u'premiership']
[u'davenport', u'reclaim', u'number', u'rank']
[u'diva', u'resum', u'spell', u'memsi', u'stake']
[u'weigh', u'rayner', u'charg']
[u'employ', u'make', u'crimin', u'record']
[u'england', u'ash', u'seat']
[u'england', u'women', u'brink', u'ash']
[u'england', u'turn', u'tabl', u'aussi']
[u'final', u'race', u'open', u'man']
[u'destroy', u'block', u'board', u'school']
[u'add', u'bronco', u'casualti', u'list']
[u'arrest', u'drug', u'bust']
[u'fuel', u'shortag', u'sydney', u'flight']
[u'gilchrist', u'australia', u'face', u'ultim', u'challeng']
[u'govt', u'prison', u'spi', u'spark', u'outrag']
[u'green', u'rais', u'worri', u'electr', u'shock', u'treatment']
[u'gregan', u'slap', u'retir', u'report']
[u'gunn', u'deni', u'green', u'campaign', u'caus', u'profit', u'drop']
[u'hagan', u'step', u'maroon', u'coach']
[u'health', u'spend', u'muct', u'increas', u'opposit', u'say']
[u'health', u'worker', u'mull', u'strike', u'disput']
[u'heed', u'judg', u'warn', u'sydney', u'threat', u'expert', u'say']
[u'drug', u'caus', u'heart', u'problem']
[u'success', u'pose', u'problem']
[u'hoggard', u'flintoff', u'england']
[u'homeopathi', u'ineffect', u'studi', u'find']
[u'hurrican', u'head', u'florida']
[u'hurrican', u'katrina', u'strengthen', u'gulf']
[u'indonesian', u'lawyer', u'say', u'lesli', u'demand']
[u'form', u'knight', u'humbl', u'shark']
[u'interview', u'ricki', u'stuart', u'wayn', u'bennett']
[u'iraq', u'await', u'sunni', u'respons', u'charter']
[u'iraqi', u'politician', u'time', u'complet']
[u'maxwel', u'trent', u'bridg', u'wrap']
[u'langer', u'lead', u'australian', u'resist']
[u'leader', u'pledg', u'action', u'pari', u'tragedi']
[u'arrest', u'fake', u'paper', u'seiz']
[u'charg', u'rail', u'bomb', u'hoax']
[u'hold', u'thailand', u'suspicion', u'london']
[u'mistak', u'see', u'protect', u'forest', u'log']
[u'mask', u'teenag', u'arrest', u'anti', u'howard', u'protest']
[u'mcginti', u'admit', u'mistak', u'corrupt', u'fighter']
[u'media', u'law', u'risk', u'irrelev', u'accc', u'say']
[u'urg', u'declar', u'telstra', u'share']
[u'mufti', u'snub', u'islam', u'summit']
[u'price', u'slide', u'hurrican', u'fear', u'eas']
[u'opal', u'wrap', u'world', u'champ', u'spot']
[u'opposit', u'criticis', u'primari', u'industri']
[u'parent', u'charg', u'babi', u'murder']
[u'parrot', u'habitat', u'enlarg', u'log', u'mistak']
[u'parti', u'elect', u'campaign']
[u'peruvian', u'woman', u'believ', u'kill', u'crash', u'aliv']
[u'petrol', u'sniff', u'claim', u'katherin', u'exagger']
[u'confront', u'angri', u'protestor', u'adelaid']
[u'polic', u'arrest', u'trespass', u'look', u'jennif']
[u'polic', u'bodi', u'stunt', u'pilot']
[u'polic', u'free', u'hold', u'terror', u'law']
[u'polic', u'probe', u'nightclub', u'shoot']
[u'polic', u'recov', u'bodi', u'pilot']
[u'port', u'final', u'docker', u'expens']
[u'port', u'final', u'fremantl', u'expens']
[u'qanta', u'say', u'airport', u'job']
[u'channel', u'countri', u'aliv', u'flower']
[u'nation', u'attack', u'rural', u'lobbi', u'telstra']
[u'region', u'hospit', u'staff', u'disput', u'intensifi']
[u'rise', u'fuel', u'price', u'busi', u'hard']
[u'rossi', u'set', u'pace', u'czech', u'practic']
[u'royal', u'feather', u'ruffl', u'queen', u'pigeon', u'escap']
[u'rumford', u'continu', u'charg', u'munich']
[u'russian', u'satellit', u'track', u'despit', u'problem']
[u'saint', u'inflict', u'record', u'loss', u'lion']
[u'schumach', u'welcom', u'raikkonen', u'ferrari']
[u'search', u'sydney', u'plane', u'crash', u'pilot']
[u'sept', u'link', u'muslim', u'convers']
[u'sharon', u'osbourn', u'admit', u'cut', u'iron', u'maiden', u'sound']
[u'shiit', u'final', u'propos', u'iraq', u'constitut']
[u'softdrink', u'maker', u'warn', u'explod', u'can']
[u'spencer', u'strike', u'see', u'marin', u'home']
[u'spend', u'fear', u'prompt', u'stock', u'fall']
[u'sperm', u'donor', u'realiti', u'outrag', u'politician']
[u'spread', u'relief', u'labor', u'urg']
[u'storm', u'tiger']
[u'swan', u'swamp', u'hawk', u'finish']
[u'sydney', u'terror', u'target', u'expert', u'say']
[u'approv', u'explor', u'licenc']
[u'cut', u'high', u'earner', u'need', u'emerson']
[u'water', u'suppli', u'safe', u'amoeba', u'flush']
[u'offic', u'concern', u'iraq', u'percept']
[u'turkmenistan', u'shoot', u'star']
[u'year', u'guilti', u'rap', u'year']
[u'arrest', u'worm']
[u'union', u'rue', u'tafe', u'backdown']
[u'cycl', u'back', u'lanc', u'dope', u'disput']
[u'releas', u'iraqi', u'prison']
[u'soldier', u'kill', u'wound', u'afghan', u'blast']
[u'extra', u'aussi', u'sugar']
[u'vintag', u'plane', u'crash', u'sydney']
[u'virgin', u'blue', u'deni', u'plan', u'shift', u'job', u'offshor']
[u'indigen', u'mortal', u'rat', u'drop']
[u'want', u'palestinian', u'milit', u'resurfac', u'video']
[u'declar', u'crisi', u'africa']
[u'wool', u'price', u'hold', u'kilo']
[u'wound', u'philippin', u'ferri', u'bomb', u'attack']
[u'account', u'struggl', u'creativ', u'studi']
[u'aceh', u'rebel', u'accus', u'violat', u'peac', u'pact']
[u'actor', u'robert', u'downey', u'remarri']
[u'black', u'collin', u'ban', u'nation', u'decid']
[u'black', u'wari', u'wound', u'wallabi']
[u'deni', u'telstra', u'stanc', u'cost', u'coffer']
[u'ambul', u'staff', u'govt', u'interven']
[u'armi', u'need', u'mull', u'recruit']
[u'aussi', u'joker', u'name', u'edinburgh', u'fring']
[u'aussi', u'battl', u'save', u'fourth', u'test']
[u'aussi', u'lack', u'hunger', u'say', u'waugh']
[u'aust', u'plane', u'crash', u'victim', u'buri', u'cyprus']
[u'eye', u'music', u'download', u'busi']
[u'biker', u'upset', u'plan', u'safeti', u'levi']
[u'blair', u'warn', u'muslim', u'extrem', u'year', u'report']
[u'blast', u'derail', u'train', u'russia']
[u'british', u'armi', u'make', u'pride', u'march', u'join']
[u'brosqu', u'baird', u'roar', u'victori']
[u'bush', u'warn', u'american', u'iraq', u'sacrific']
[u'headscarv', u'criticis', u'muslim']
[u'trap', u'monster', u'pothol']
[u'cat', u'thriller', u'gain', u'home', u'final']
[u'chelsea', u'cruis', u'victori', u'spur']
[u'clubber', u'know', u'shoot', u'suspect', u'polic']
[u'collin', u'cite', u'punch']
[u'consum', u'warn', u'fish', u'restrict']
[u'cowboy', u'exact', u'reveng', u'rabbitoh']
[u'davenport', u'claim', u'haven', u'titl']
[u'demon', u'chase', u'final', u'berth']
[u'destroy', u'take', u'guitar', u'crown']
[u'downer', u'back', u'bali', u'drug', u'crackdown']
[u'syndrom', u'group', u'seek', u'nation', u'mouthpiec']
[u'dream', u'fiorentina', u'debut', u'toni']
[u'eel', u'surg', u'spot']
[u'england', u'need', u'victori']
[u'england', u'women', u'ash']
[u'england', u'women', u'ash']
[u'fire', u'flare', u'portug']
[u'foreign', u'student', u'hospit', u'road', u'accid']
[u'graham', u'nab', u'start', u'spot']
[u'fuel', u'shortag', u'see', u'flight', u'cancel']
[u'game', u'victori', u'hold', u'sydney', u'draw']
[u'gibernau', u'steal', u'czech', u'pole', u'hayden']
[u'giteau', u'succumb', u'injuri']
[u'govt', u'consid', u'militari', u'recruit']
[u'hoggard', u'put', u'england', u'charg']
[u'holden', u'staff', u'face', u'stress', u'time', u'union', u'say']
[u'hull', u'snatch', u'dramat', u'challeng', u'glori']
[u'hurrican', u'katrina', u'aim', u'orlean']
[u'sorri', u'lose', u'cool', u'say', u'pont']
[u'indian', u'make', u'histor', u'trip', u'kabul']
[u'indian', u'rebel', u'make', u'porn', u'film', u'rais', u'money']
[u'india', u'inspir', u'australian', u'fightback']
[u'injuri', u'threaten', u'scupper', u'holm', u'final']
[u'interview', u'duncan', u'fletcher']
[u'interview', u'toni', u'kemp']
[u'iran', u'promis', u'breakthrough', u'nuclear', u'talk']
[u'iraq', u'constitut', u'parliamentari', u'vote']
[u'iraq', u'parliament', u'consid', u'charter', u'sunni', u'oppos']
[u'iraq', u'sunni', u'offer', u'draft', u'constitut']
[u'maxwel', u'trent', u'bridg']
[u'jone', u'get', u'boot', u'ankl', u'injuri']
[u'jone', u'stand', u'embattl', u'gregan']
[u'jone', u'suffer', u'ankl', u'injuri']
[u'kangaroo', u'book', u'date', u'power']
[u'labor', u'seek', u'polici', u'budget', u'review']
[u'labor', u'select', u'candid', u'carr', u'seat']
[u'legaci', u'appeal']
[u'loeb', u'cruis', u'victori', u'germani']
[u'lose', u'catch', u'train', u'home']
[u'macklin', u'stand', u'tough', u'decis']
[u'releas', u'uninjur', u'hostag', u'ordeal']
[u'matt', u'orford', u'robbi', u'kearn']
[u'mayor', u'say', u'pretti', u'leg', u'requir', u'miniskirt']
[u'mcgee', u'spain', u'tour', u'open']
[u'melbourn', u'honour', u'olympian', u'gaze']
[u'melbourn', u'overcom', u'don', u'final']
[u'michael', u'hagan', u'stuart', u'raper', u'interview']
[u'model', u'await', u'decis', u'bali', u'drug', u'charg']
[u'model', u'meet', u'lawyer', u'await', u'charg']
[u'urg', u'school', u'headscarf']
[u'nation', u'parol', u'deal', u'seek', u'offend']
[u'needl', u'exchang', u'curb', u'hiv', u'spread', u'australia']
[u'nelson', u'reject', u'school', u'headscarf']
[u'nelson', u'clear', u'comment', u'labor', u'say']
[u'orlean', u'resid', u'order', u'evacu']
[u'korea', u'parti', u'talk', u'postpon', u'thai', u'minist']
[u'camp', u'reject', u'keep', u'barca']
[u'trial', u'electron', u'track', u'offend']
[u'honour', u'indigen', u'musician']
[u'hop', u'clear', u'jabiru', u'water', u'suppli', u'tomorrow']
[u'deleg', u'return', u'home', u'fail', u'tongan']
[u'offici', u'probe', u'sydney', u'stunt', u'plane', u'crash']
[u'juvenil', u'detaine', u'indigen']
[u'opal', u'sweep', u'tall', u'fern']
[u'opposit', u'conced', u'promis']
[u'palestinian', u'suicid', u'bomber', u'strike', u'israel']
[u'panther', u'bulldog', u'season']
[u'parent', u'lock', u'hospit', u'famili', u'support', u'room']
[u'philippin', u'ferri', u'blast', u'injur']
[u'pilot', u'injur', u'chopper', u'crash']
[u'polic', u'probe', u'boy', u'fall', u'septic', u'tank']
[u'polic', u'probe', u'fatal', u'stab', u'sydney']
[u'prawn', u'industri', u'feel', u'pinch', u'import']
[u'stop', u'accept', u'parol', u'paedophil']
[u'resid', u'fight', u'detent', u'centr', u'propos']
[u'rumford', u'stay', u'touch', u'munich']
[u'liber', u'elect', u'presid']
[u'saudi', u'dissid', u'close', u'london', u'jihadi', u'internet', u'site']
[u'southern', u'bunker', u'hurrican', u'return']
[u'survivor', u'pari', u'hold', u'silent', u'march']
[u'sydney', u'airport', u'fuel', u'restrict', u'lift']
[u'sydney', u'glamour', u'boy', u'face', u'field', u'test']
[u'sydney', u'glamour', u'boy', u'face', u'field', u'test']
[u'sydney', u'tunnel', u'open', u'amid', u'protest']
[u'tasmanian', u'action', u'dismal']
[u'debat', u'step']
[u'teen', u'charg', u'doubl', u'stab']
[u'teen', u'charg', u'school']
[u'toilet', u'train', u'tread', u'tertiari', u'pathway']
[u'toll', u'confid', u'accc', u'allow', u'patrick', u'takeov']
[u'tourist', u'bali', u'submit', u'drug', u'test']
[u'trucki', u'parad', u'thrill', u'alic', u'spring']
[u'turnbul', u'deni', u'split', u'costello']
[u'trial', u'electron', u'track', u'paedophil']
[u'woman', u'kill', u'injur', u'remot', u'accid']
[u'writer', u'amo', u'pick', u'german', u'prize', u'life', u'work']
[u'lose', u'screen', u'film', u'child', u'killer']
[u'acci', u'urg', u'nuclear', u'power', u'rethink']
[u'accus', u'model', u'don', u'burkah', u'question']
[u'colleg', u'provid', u'know', u'tomorrow']
[u'ail', u'offend', u'give', u'minimum', u'sentenc']
[u'alcohol', u'admit', u'murder', u'parent']
[u'alderman', u'seek', u'continu', u'push', u'sniff', u'fuel']
[u'leagu', u'hail', u'instant', u'success']
[u'angler', u'line', u'longreach']
[u'anti', u'protest', u'clear', u'opera', u'hous', u'debt']
[u'atsb', u'rule', u'forc', u'land', u'probe']
[u'australia', u'close', u'lose', u'ash']
[u'australia', u'head', u'unknown']
[u'author', u'investig', u'brother', u'birth']
[u'award', u'recognis', u'brave', u'bank', u'manag']
[u'award', u'recognis', u'polic', u'braveri']
[u'balgo', u'help', u'kalumburu', u'store', u'reopen']
[u'bear', u'beat', u'north', u'semi', u'spot']
[u'beatti', u'appeal', u'patienc', u'health', u'worker']
[u'beatti', u'hop', u'share', u'shower', u'plan', u'strike', u'chord']
[u'beatti', u'want', u'quick', u'action', u'nation', u'health']
[u'bendigo', u'bank', u'play', u'secur', u'concern']
[u'bishop', u'defiant', u'headscarf']
[u'blake', u'beat', u'lopez', u'haven', u'titl']
[u'blizzard', u'condit', u'forecast', u'alpin', u'region']
[u'bonvill', u'deviat', u'high', u'meet', u'agenda']
[u'brogden', u'forc', u'quit', u'racial', u'slur']
[u'break', u'hill', u'public', u'urg', u'shop', u'local']
[u'bronco', u'hobbl', u'eel', u'clash']
[u'brosqu', u'replac', u'kewel', u'socceroo', u'squad']
[u'build', u'collaps', u'rais', u'mumbai', u'flood', u'toll']
[u'bulk', u'bill', u'rate', u'rise', u'south', u'west']
[u'cairn', u'forum', u'spotlight', u'indigen', u'issu']
[u'campaign', u'stop', u'pigeon', u'woe']
[u'canberra', u'hospit', u'accommod', u'open']
[u'canberra', u'resid', u'award', u'braveri']
[u'cancer', u'treatment', u'target', u'individu', u'cell']
[u'carr', u'wife', u'shrug', u'brogden', u'slur']
[u'cattl', u'price', u'forc', u'cutback']
[u'centuri', u'plan', u'shed', u'program']
[u'cessnock', u'hous', u'rescu', u'prompt', u'braveri', u'award']
[u'chamber', u'back', u'birney', u'india', u'trade', u'mission']
[u'child', u'refuge', u'sue', u'detent', u'trauma']
[u'church', u'defend', u'right', u'public', u'comment']
[u'elect', u'probe', u'concern', u'mayor']
[u'communiti', u'feel', u'effect', u'ambul', u'crisi']
[u'communiti', u'launch', u'prospectus']
[u'corrupt', u'policeman', u'face', u'jail']
[u'costello', u'refus', u'enter', u'debat', u'spark']
[u'councillor', u'urg', u'boycott', u'meet']
[u'council', u'form', u'syring', u'plan']
[u'council', u'invest', u'broadband']
[u'council', u'stand', u'supermarket', u'site', u'reject']
[u'council', u'tabulam', u'jail', u'applic']
[u'council', u'vote', u'carlton', u'park', u'meter']
[u'court', u'hear', u'refuge', u'compens', u'case']
[u'cowboy', u'club', u'win', u'record']
[u'cowra', u'look', u'attract', u'servic']
[u'crash', u'spark', u'warn', u'farmer', u'mend', u'fenc']
[u'creditor', u'farmer', u'frustrat', u'beef', u'processor']
[u'crime', u'figur', u'rise', u'attribut', u'polic', u'oper']
[u'darwin', u'breast', u'cancer', u'treatment', u'take', u'leap', u'forward']
[u'darwin', u'festiv', u'attend', u'encourag']
[u'desert', u'spring', u'prompt', u'mar', u'studi', u'rethink']
[u'dishonour', u'behaviour', u'forc', u'brogden', u'quit']
[u'dragon', u'pair', u'fin', u'hotel', u'incid']
[u'drink', u'driver', u'worri', u'bendigo', u'polic']
[u'driver', u'fatigu', u'contribut', u'monaro', u'road', u'crash']
[u'driver', u'leav', u'kindergarten', u'children', u'lock']
[u'driver', u'urg', u'rethink', u'road', u'safeti']
[u'eat', u'wont', u'help', u'live', u'longer', u'research']
[u'eleph', u'landmin', u'victim', u'fit', u'prosthet']
[u'england', u'claim', u'fourth', u'test']
[u'england', u'coach', u'vow', u'attack', u'oval']
[u'essex', u'titl']
[u'extraordinari', u'australian', u'honour', u'braveri']
[u'fairfax', u'see', u'earn', u'growth', u'despit', u'profit', u'drop']
[u'farm', u'accid', u'claim', u'girl', u'life']
[u'farmer', u'face', u'charg', u'mass', u'sheep', u'death']
[u'farmer', u'rejoic', u'south', u'east', u'rain']
[u'farmer', u'unclear', u'ongo', u'drought']
[u'farmer', u'warn', u'whitefli', u'threat']
[u'farm', u'fuel', u'heist', u'go', u'flame']
[u'feder', u'politician', u'urg', u'declar', u'telstra']
[u'command', u'lead', u'terror', u'fight']
[u'freight', u'custom', u'urg', u'realist']
[u'fund', u'seek', u'bridg', u'tourism', u'plan']
[u'fund', u'allow', u'sacr', u'sit', u'protect']
[u'futur', u'look', u'brighter', u'threaten', u'lili']
[u'govt', u'accus', u'short', u'chang', u'region', u'public']
[u'govt', u'back', u'polic', u'effort', u'drink', u'drive', u'rate']
[u'govt', u'deliv', u'club', u'fund']
[u'govt', u'talk', u'remov', u'tent', u'embassi', u'camper']
[u'govt', u'commit', u'south', u'west', u'rescu']
[u'govt', u'urg', u'appoint', u'local', u'health', u'planner']
[u'great', u'southern', u'warn', u'high', u'wind']
[u'green', u'sweep', u'video', u'award']
[u'green', u'urg', u'govt', u'scrap', u'bill', u'immigr']
[u'hall', u'fame', u'pleas', u'truck', u'parad', u'support']
[u'hall', u'lead', u'swan', u'final', u'charg']
[u'hancock', u'brogden', u'quit', u'leadership']
[u'health', u'dept', u'track', u'coli', u'sourc']
[u'high', u'cattl', u'price', u'blame', u'shift']
[u'high', u'court', u'hear', u'advertis', u'challeng']
[u'victim', u'father', u'urg', u'driver', u'come']
[u'victim', u'famili', u'grate', u'public', u'support']
[u'holden', u'worker', u'redund', u'packag', u'detail']
[u'hook', u'manslaught', u'accus', u'role', u'model']
[u'howard', u'costello', u'page', u'cut']
[u'hundr', u'tribut', u'loxton', u'crash', u'famili']
[u'hunt', u'rapist', u'escape']
[u'iemma', u'urg', u'reject', u'plan']
[u'india', u'better', u'ganguli', u'admit']
[u'india', u'pakistan', u'hold', u'anti', u'terror', u'cooper', u'talk']
[u'indigen', u'communiti', u'mainten', u'contract']
[u'indonesia', u'presid', u'warn', u'terror', u'attack']
[u'injur', u'cyclist', u'return', u'hospit']
[u'injur', u'saint', u'return', u'crow', u'clash']
[u'investig', u'continu', u'fuel', u'suppli']
[u'factori', u'sign', u'deal', u'odour', u'nois', u'limit']
[u'iranian', u'judg', u'give', u'green', u'light', u'carri', u'gun']
[u'irrig', u'fin', u'steal', u'water']
[u'israel', u'blame', u'hama', u'suicid', u'attack']
[u'israel', u'blame', u'hama', u'suicid', u'bomb']
[u'japanes', u'interest', u'solomon', u'nickel']
[u'jondaryan', u'mayor', u'await', u'grey', u'water', u'detail']
[u'jone', u'doubt', u'ash', u'decid']
[u'juve', u'fail', u'shine', u'adriano', u'inspir', u'inter']
[u'kaino', u'add', u'black', u'squad']
[u'katrina', u'sweep', u'orlean']
[u'launceston', u'farewel', u'aunti', u'molli']
[u'doesnt', u'condon', u'rape', u'promis', u'wive']
[u'liber', u'cut', u'costello']
[u'lithgow', u'council', u'order', u'remov', u'sludg', u'face']
[u'loos', u'nuclear', u'materi', u'dirti', u'bomb']
[u'accus', u'ram', u'children', u'insid']
[u'die', u'blue', u'mountain', u'crash']
[u'face', u'court', u'alic', u'spring', u'pursuit']
[u'mcdonald', u'urg', u'support', u'farmer']
[u'medic', u'board', u'decid', u'misconduct', u'claim']
[u'charg', u'nightclub', u'shoot']
[u'north', u'coast', u'bulk', u'bill', u'rat', u'rise']
[u'million', u'dollar', u'program', u'tackl', u'childhood', u'obes']
[u'moor', u'add', u'wallabi', u'injuri', u'list']
[u'more', u'attack', u'prompt', u'polic', u'warn']
[u'money', u'need', u'combat', u'africa', u'hunger', u'annan']
[u'say', u'brogden', u'comment', u'inappropri']
[u'seek', u'gippsland', u'wind', u'farm', u'moratorium']
[u'urg', u'commonwealth', u'control', u'health']
[u'nation', u'cautious', u'cut']
[u'negoti', u'continu', u'barrack']
[u'neitz', u'confid', u'line', u'cat']
[u'commission', u'appoint', u'corrupt', u'bodi']
[u'orlean', u'empti', u'hurrican', u'near']
[u'orlean', u'order', u'evacu', u'hurrican']
[u'report', u'card', u'school']
[u'rescu', u'chopper', u'prove', u'worth']
[u'korea', u'nuclear', u'talk', u'date', u'import']
[u'reason', u'nightclub', u'shoot']
[u'north', u'burleigh', u'secur', u'rescu', u'boat', u'comp']
[u'premier', u'unmov', u'brogden', u'downfal']
[u'opposit', u'gain', u'clark']
[u'offici', u'deni', u'whip', u'swaziland', u'princess']
[u'develop', u'victoria', u'self']
[u'sale', u'help', u'origin', u'profit', u'jump']
[u'opera', u'hous', u'secur', u'confer']
[u'palm', u'fear', u'land', u'sell']
[u'parol', u'staff', u'high', u'stress', u'inquiri', u'hear']
[u'partnership', u'evalu', u'health', u'promot']
[u'petrol', u'sniffer', u'death', u'scrutini']
[u'plan', u'wheatbelt', u'town', u'criticis']
[u'accus', u'deceiv', u'worker', u'wag', u'increas']
[u'deni', u'wag', u'stagnant']
[u'polic', u'hunt', u'tractor', u'thiev']
[u'polic', u'probe', u'footscray', u'shoot']
[u'polic', u'probe', u'gold', u'coast', u'arm', u'robberi']
[u'polic', u'probe', u'griffith', u'stab']
[u'polic', u'promis', u'sunshin', u'coast', u'hoon', u'crackdown']
[u'polic', u'identifi', u'launceston', u'park', u'bodi']
[u'polic', u'road', u'crash', u'victim']
[u'pont', u'katich', u'fin', u'test', u'outburst']
[u'pope', u'meet', u'head', u'rebel', u'cathol', u'traditionalist']
[u'portland', u'honour', u'braveri', u'award']
[u'port', u'lincoln', u'rat', u'state', u'highest']
[u'poultri', u'farmer', u'diseas', u'vaccin', u'remind']
[u'power', u'cabl', u'failur']
[u'power', u'boost', u'north', u'west']
[u'prison', u'director', u'stand', u'confidenti']
[u'push', u'femal', u'wool', u'classer']
[u'push', u'plastic']
[u'racial', u'slur', u'brogden', u'step', u'asid']
[u'real', u'surviv', u'cadiz', u'scare']
[u'region', u'better', u'place', u'tackl', u'danger', u'period']
[u'resid', u'flee', u'hurrican', u'katrina']
[u'retir', u'villag', u'move', u'closer', u'realiti']
[u'ricciuto', u'miss', u'kilda', u'clash']
[u'ricciuto', u'wait', u'news', u'charg']
[u'tinto', u'subsidiari', u'seal', u'korean', u'contract']
[u'rise', u'price', u'shake']
[u'road', u'safeti', u'plan', u'target', u'driver', u'attent']
[u'safin', u'hewitt']
[u'govt', u'criticis', u'babi', u'part', u'payout', u'delay']
[u'saint', u'player', u'get', u'life']
[u'savag', u'back', u'headscarf']
[u'school', u'headscarf', u'impract', u'howard']
[u'send', u'offend', u'home', u'state', u'nation']
[u'shire', u'need', u'fund', u'dead', u'cross']
[u'slaughter', u'method', u'cost', u'abbatoir', u'malaysian']
[u'starv', u'roo', u'free', u'brisban', u'sewag']
[u'state', u'rule', u'school', u'headscarf']
[u'studi', u'highlight', u'need', u'small', u'busi', u'plan']
[u'sunni', u'group', u'urg', u'chang', u'iraq', u'charter']
[u'sunric', u'turnov', u'fall']
[u'teacher', u'credit', u'strike', u'secur', u'deal']
[u'tough', u'competit', u'cut', u'austereo', u'profit']
[u'turf', u'club', u'incid', u'focus', u'attent', u'ambul']
[u'tweed', u'council', u'seek', u'sponsor', u'kenya', u'water', u'plan']
[u'fraud', u'prompt', u'regul', u'organ']
[u'union', u'member', u'face', u'court', u'alleg', u'assault']
[u'union', u'differ', u'health', u'deal', u'protest']
[u'union', u'seek', u'mine', u'equip', u'chang']
[u'union', u'want', u'green', u'answer']
[u'surg', u'record', u'hurrican', u'fear']
[u'home', u'fiji', u'crime', u'ordeal']
[u'polic', u'investig', u'surveil', u'tap', u'leak']
[u'warburton', u'polic', u'spotlight', u'domest', u'violenc']
[u'webb', u'gordon', u'escap', u'suspens']
[u'weekend', u'drink', u'driver', u'worri', u'polic']
[u'western', u'australian', u'award', u'braveri']
[u'woman', u'die', u'church', u'park', u'mishap']
[u'woman', u'die', u'hinterland', u'crash']
[u'work', u'begin', u'year', u'bigger', u'snowi', u'council']
[u'world', u'fall', u'calam', u'jam']
[u'writer', u'poet', u'margaret', u'scott', u'die']
[u'youth', u'arrest', u'chase']
[u'abbott', u'reluct', u'pressur', u'health', u'insur']
[u'afghanistan', u'opium', u'product', u'fall']
[u'announc', u'medal', u'line']
[u'african', u'airlin', u'danger']
[u'agreement', u'pave', u'desert', u'drill']
[u'agreement', u'reach', u'help', u'abattoir', u'worker']
[u'alic', u'spring', u'council', u'lobbi', u'govt']
[u'black', u'chang', u'wallabi', u'clash']
[u'qaeda', u'connect', u'prompt', u'compani', u'tighten']
[u'adelaid', u'base', u'supplier', u'unwit']
[u'angler', u'welcom', u'fish', u'law']
[u'anti', u'globalis', u'activist', u'march', u'forb']
[u'aqi', u'invas', u'gypsi', u'moth', u'coal', u'ship']
[u'beauti', u'actress', u'tee', u'ugli', u'golf']
[u'betfair', u'talk', u'econom', u'benefit']
[u'birdsvill', u'tourist', u'encourag', u'rock']
[u'brewer', u'wine', u'group', u'foster', u'report']
[u'brown', u'know', u'knight', u'walkov']
[u'build', u'industri', u'code', u'chang', u'extrem', u'cfmeu']
[u'bumper', u'season', u'prompt', u'tourist', u'develop', u'think']
[u'crash', u'kill', u'china']
[u'busi', u'contempl', u'flee', u'close', u'airport']
[u'calder', u'highway', u'upgrad', u'top', u'racv', u'prioriti']
[u'canberra', u'polic', u'seek', u'extra', u'offic']
[u'cancer', u'patient', u'jail', u'drug', u'possess']
[u'cancer', u'patient', u'bus', u'hospit', u'servic', u'end']
[u'car', u'unafford', u'racv']
[u'child', u'obes', u'studi', u'result', u'shock', u'research']
[u'codan', u'sale', u'terrorist', u'lesson', u'downer']
[u'collina', u'quit', u'sponsor']
[u'committe', u'look', u'increas', u'number', u'indigen']
[u'communiti', u'join', u'scientist', u'record', u'coastal']
[u'costello', u'back', u'board', u'cut']
[u'costello', u'fuel', u'leadership', u'specul']
[u'costello', u'plan', u'critic', u'turnbul']
[u'costello', u'play', u'alleg', u'rift']
[u'councillor', u'frighten', u'health', u'loss']
[u'councillor', u'tell', u'contractor', u'work', u'harder']
[u'council', u'revisit', u'zone', u'hous', u'develop']
[u'council', u'trial', u'youth', u'transport', u'scheme']
[u'coupl', u'final', u'claim']
[u'creditor', u'approv', u'resurrect', u'son', u'gwalia']
[u'crow', u'troop', u'cover', u'ricciuto', u'craig']
[u'custom', u'offic', u'seiz', u'tobacco', u'worth', u'million']
[u'defenc', u'slam', u'aust', u'embassi', u'bomb', u'suspect', u'trial']
[u'develop', u'urg', u'continu', u'estat', u'propos']
[u'disgrac', u'psychiatrist', u'say', u'patient', u'danger']
[u'dog', u'woof', u'brazilian', u'puppi', u'love', u'motel']
[u'domest', u'violenc', u'expand', u'murder', u'stat']
[u'greet', u'wind', u'farm']
[u'secur', u'chief', u'arrest', u'hariri', u'murder']
[u'fear', u'rife', u'jail', u'popul']
[u'fear', u'polio', u'spread', u'virus', u'emerg']
[u'feder', u'treasur', u'peter', u'costello', u'deni']
[u'flood', u'trap', u'hundr', u'southern']
[u'food', u'campaign', u'benefit', u'govt']
[u'foster', u'profit', u'bubbl']
[u'fraser', u'name', u'sexiest', u'island']
[u'fraud', u'mar', u'improv', u'crime', u'statist']
[u'fuel', u'crisi', u'hit', u'hard']
[u'governor', u'open']
[u'govt', u'consid', u'wider', u'anti', u'terror', u'law']
[u'govt', u'hide', u'extent', u'staff', u'cut']
[u'hall', u'honour', u'lead', u'swan']
[u'health', u'servic', u'target', u'child', u'obes']
[u'high', u'court', u'reserv', u'decis']
[u'hoggard', u'secret', u'boycott', u'live', u'room']
[u'home', u'lose', u'power', u'storm', u'sweep']
[u'hook', u'wit', u'accus', u'self', u'promot']
[u'hope', u'lobbi', u'ahead', u'fluid', u'liber', u'vote']
[u'hospit', u'campaign', u'reveal', u'wish', u'list']
[u'host', u'defend', u'tight', u'secur', u'busi', u'confer']
[u'hurrican', u'death', u'toll', u'expect', u'rise']
[u'hurrican', u'katrina', u'leav', u'trail', u'destruct']
[u'hurrican', u'katrina', u'forc', u'blunt']
[u'hurrican', u'recoveri', u'long', u'difficult']
[u'indigen', u'group', u'discuss', u'fill', u'atsic']
[u'indonesia', u'announc', u'amnesti', u'aceh', u'rebel']
[u'indonesia', u'presid', u'urg', u'calm', u'fall', u'rupiah']
[u'indonesia', u'struggl', u'stabilis', u'rupiah']
[u'inmat', u'pregnanc', u'prompt', u'prison', u'secur', u'concern']
[u'ion', u'outlook', u'posit', u'despit', u'loss']
[u'irwin', u'plan', u'helicopt', u'flight', u'welcom']
[u'japanes', u'elect', u'campaign', u'begin']
[u'jone', u'doubt', u'ash', u'decid']
[u'labor', u'welcom', u'brogden', u'resign']
[u'land', u'valuat', u'pressur']
[u'launceston', u'council', u'tell', u'consid', u'mayor']
[u'leak', u'poison', u'remov', u'shed']
[u'love', u'contest', u'freddi']
[u'light', u'captur', u'pave', u'power']
[u'littl', u'overnight', u'rain']
[u'local', u'bulk', u'bill', u'rat', u'increas']
[u'local', u'increas', u'assault', u'vandal']
[u'lockyer', u'improv', u'eel', u'rest', u'easi']
[u'longerenong', u'welcom', u'provid', u'announc']
[u'clear', u'plane', u'secur', u'breach', u'bomb']
[u'imprison', u'attack', u'girlfriend']
[u'jail', u'bash', u'friend', u'death']
[u'lose', u'appeal', u'singapor', u'extradit']
[u'rescu', u'fall', u'lighthous']
[u'market', u'recov', u'price', u'drop']
[u'mayor', u'confid', u'pipelin', u'avert', u'water', u'crisi']
[u'mayor', u'finalist', u'busi', u'award']
[u'mcewen', u'reject', u'sell', u'claim']
[u'mcgee', u'keep', u'spanish', u'lead', u'petacchi', u'win', u'stage']
[u'mcgradi', u'want', u'telstra', u'sale', u'fund', u'zonal']
[u'medic', u'certif', u'contradict', u'immigr']
[u'merger', u'acquisit', u'push', u'tabcorp', u'profit']
[u'mickel', u'start', u'palm', u'reform', u'process']
[u'mine', u'industri', u'welcom', u'father', u'workshop']
[u'minist', u'hop', u'mediat', u'solv', u'hospit', u'disput']
[u'minist', u'predict', u'nation', u'coup', u'follow', u'liber']
[u'minist', u'urg', u'pacif', u'highway', u'action']
[u'molik', u'fall', u'nadal', u'sharapova', u'advanc']
[u'molik', u'fall', u'nadal', u'sharapova', u'progress']
[u'want', u'probe', u'tullamarin', u'secur']
[u'multicultur', u'minist', u'reject', u'scarf']
[u'nadal', u'storm', u'second', u'round', u'kuznetsova', u'fall']
[u'neitz', u'recov', u'faster', u'expect']
[u'nepal', u'militari', u'disappear', u'peopl']
[u'netanyahu', u'launch', u'replac', u'sharon']
[u'pari', u'blaze', u'kill', u'seven', u'african']
[u'remot', u'start', u'aborigin', u'recruit']
[u'test', u'spot', u'type', u'diseas', u'blood']
[u'korea', u'delay', u'nuclear', u'talk']
[u'telstra', u'worker']
[u'nrma', u'welcom', u'road', u'safeti', u'measur']
[u'liber', u'say', u'chikarovski']
[u'liber', u'vote', u'brogden', u'replac']
[u'flow', u'gippsland', u'field', u'week', u'away']
[u'ombudsman', u'hear', u'dali', u'river', u'complaint']
[u'oneil', u'award', u'franc', u'highest', u'honour']
[u'opec', u'chief', u'concern', u'price', u'rise']
[u'opposit', u'call', u'weston', u'creek', u'librari']
[u'owen', u'agre', u'join', u'newcastl']
[u'owen', u'hold', u'talk', u'newcastl', u'liverpool']
[u'paedophil', u'dunn', u'lose', u'inquiri']
[u'parent', u'defend', u'driver', u'preschool']
[u'pathan', u'agarkar', u'lead', u'rout', u'zimbabw']
[u'penfold', u'want', u'visa', u'categori', u'attract', u'migrant']
[u'petrol', u'hike', u'tip', u'hurrican']
[u'polic', u'identifi', u'loxton', u'remain']
[u'polic', u'outnumb', u'protestor', u'sydney', u'street']
[u'polic', u'seek', u'help', u'identifi', u'ash']
[u'polic', u'crack', u'busi', u'confer']
[u'pont', u'attack', u'england', u'tactic']
[u'power', u'confid', u'charg', u'eighth']
[u'princip', u'back', u'island', u'behaviour', u'crackdown']
[u'probe', u'begin', u'redbank', u'rail', u'death']
[u'profit', u'fall', u'natur', u'investor']
[u'properti', u'crime', u'fall']
[u'putin', u'readi', u'meet', u'beslan', u'mother']
[u'queensland', u'troop', u'head', u'iraq']
[u'rain', u'expect', u'boost', u'machineri', u'expo', u'sale']
[u'raid', u'foil', u'sydney']
[u'record', u'fuel', u'price', u'influenc', u'homebuy']
[u'remot', u'program', u'address']
[u'research', u'find', u'cane', u'farmer', u'industri']
[u'resid', u'communiti', u'radio', u'station']
[u'resid', u'wait', u'emerg', u'hurrican', u'shelter']
[u'rogerson', u'sue', u'polic', u'surnam', u'discrimin']
[u'rural', u'doctor', u'welcom', u'increas', u'rate', u'bulk']
[u'rugbi', u'investig', u'smite', u'racism', u'alleg']
[u'scullion', u'urg', u'altern', u'dump', u'site']
[u'secreci', u'keep', u'protest', u'forb', u'meet']
[u'secreci', u'surround', u'busi', u'dinner', u'protest']
[u'secur', u'exercis', u'continu', u'airport']
[u'selfish', u'businessman', u'ask', u'fund', u'search']
[u'seven', u'arrest', u'protest', u'forb']
[u'sexual', u'assault', u'charg', u'court']
[u'sheep', u'smarter', u'peopl', u'think', u'research']
[u'ship', u'send', u'help', u'stricken', u'yacht', u'bight']
[u'soldier', u'face', u'dismiss', u'drug', u'test']
[u'sport', u'hero', u'motiv', u'youth']
[u'storm', u'predict', u'south', u'wale']
[u'studi', u'fire', u'power', u'station']
[u'studi', u'reveal', u'fall', u'farm', u'number']
[u'survey', u'find', u'small', u'busi']
[u'survey', u'find', u'support', u'telstra', u'sale', u'citi']
[u'teacher', u'attack', u'prompt', u'tougher', u'stanc']
[u'teacher', u'vote', u'condit']
[u'teacher', u'serv', u'minimum', u'year']
[u'thai', u'polic', u'slim', u'job']
[u'tiger', u'face', u'fine', u'illeg', u'kick']
[u'tourist', u'stabl', u'snake', u'bite']
[u'trade', u'deficit', u'widen']
[u'truck', u'driver', u'hospit', u'rollov']
[u'uganda', u'reject', u'condom', u'shortag', u'claim']
[u'underworld', u'tape', u'leak', u'prompt', u'crimin', u'investig']
[u'union', u'blame', u'holden', u'staff', u'cut']
[u'strike', u'kill', u'qaeda', u'suspect', u'iraq']
[u'author', u'assess', u'damag', u'wake', u'katrina']
[u'consid', u'emerg', u'reserv']
[u'forc', u'kill', u'afghan', u'taliban', u'command']
[u'stock', u'bounc', u'earli', u'loss']
[u'vacant', u'hous', u'depress', u'valu', u'surround', u'real']
[u'vet', u'welcom', u'mules', u'anaesthet']
[u'council', u'meet', u'bendigo']
[u'walnut', u'produc', u'target', u'asia', u'europ']
[u'warm', u'august', u'night', u'set', u'hobart', u'temperatur']
[u'warn', u'health', u'insur', u'push', u'young']
[u'webb', u'gordon', u'free', u'play']
[u'windsor', u'enter', u'debat']
[u'wollongong', u'establish', u'stock', u'exchang']
[u'world', u'oldest', u'person', u'die', u'age']
[u'foetus', u'garag']
[u'fear', u'dead', u'baghdad', u'stamped']
[u'dead', u'wake', u'katrina']
[u'abattoir', u'resum', u'meat', u'product']
[u'accc', u'rais', u'woolworth', u'concern']
[u'govt', u'sell', u'citi', u'park']
[u'retail', u'sale', u'growth', u'nation', u'rate']
[u'agreement', u'sign', u'harboursid', u'develop']
[u'airport', u'plan', u'boost', u'secur']
[u'black', u'juggl', u'injuri', u'ahead', u'wallabi', u'test']
[u'anti', u'globalis', u'protest', u'target', u'forb']
[u'apprentic', u'tool', u'program', u'start', u'soon']
[u'arthur', u'henman', u'crash', u'feder', u'cruis']
[u'arthur', u'stosur', u'crash', u'feder', u'cruis']
[u'australia', u'rank', u'fourth', u'global', u'effort']
[u'baghdad', u'stamped', u'toll', u'pass']
[u'beatti', u'prais', u'toowoomba', u'water', u'recycl', u'effort']
[u'bigger', u'servic', u'sydney']
[u'birney', u'face', u'question', u'uranium', u'mine']
[u'brogden', u'attempt', u'suicid']
[u'brogden', u'discharg', u'hospit', u'attempt']
[u'brogden', u'hospit', u'suicid', u'attempt']
[u'brogden', u'releas', u'hospit']
[u'brogden', u'suicid', u'attempt', u'shock', u'liber']
[u'bush', u'approv', u'rat', u'sink', u'lower', u'poll']
[u'tighter', u'control', u'wild', u'poison']
[u'caterpillar', u'wipe', u'desert', u'bloom']
[u'chief', u'minist', u'back', u'public', u'inquest']
[u'china', u'suspend', u'coal', u'mine', u'safeti', u'drive']
[u'ciss', u'want', u'stay', u'liverpool']
[u'urg', u'widen', u'council', u'corrupt', u'inquiri']
[u'coalit', u'leadership', u'tension', u'grow']
[u'cockl', u'farm', u'get', u'ahead']
[u'comment', u'time', u'immin', u'citi', u'centr', u'strategi']
[u'commod', u'price', u'rein', u'deficit']
[u'compani', u'emphas', u'quick', u'start', u'benefit', u'fire']
[u'consult', u'back', u'break', u'hill', u'educ']
[u'coonan', u'eas', u'media', u'ownership', u'rule']
[u'cooper', u'enter', u'european', u'market']
[u'coron', u'criticis', u'john', u'patient', u'death']
[u'costello', u'laugh', u'turnbul', u'plan']
[u'costello', u'warn', u'high', u'price']
[u'council', u'state', u'agre', u'waterfront', u'develop']
[u'councillor', u'criticis', u'handl', u'supermarket']
[u'council', u'staff', u'discuss', u'water', u'usag']
[u'council', u'consult', u'tourist', u'offic', u'locat']
[u'csiro', u'parti', u'spend', u'conjur', u'critic']
[u'current', u'account', u'deficit', u'tip', u'narrow']
[u'dairi', u'bodi', u'take', u'educ', u'role']
[u'dane', u'discuss', u'royal', u'success', u'chang']
[u'davenport', u'work', u'groov']
[u'dead', u'blaze', u'shock', u'chirac']
[u'dead', u'highway', u'toll', u'dead', u'day']
[u'dowerin', u'water', u'harvest', u'model']
[u'downer', u'offer', u'qualifi', u'support', u'cut']
[u'dragon', u'readi', u'final', u'creagh']
[u'editor', u'reject', u'attack', u'brogden', u'coverag']
[u'england', u'structur', u'worth', u'studi', u'say', u'buchanan']
[u'england', u'women', u'level', u'seri']
[u'etsa', u'rat', u'storm', u'state', u'worst']
[u'famili', u'help', u'melon', u'harvest']
[u'fear', u'dairi', u'cours', u'decis', u'affect']
[u'feasibl', u'studi', u'assess', u'drainag']
[u'feder', u'fli', u'open', u'second', u'round']
[u'firefight', u'contain', u'huge', u'factori', u'blaze']
[u'firefight', u'urg', u'local', u'consid', u'action', u'plan']
[u'fire', u'prompt', u'danger', u'period', u'declar']
[u'fishermen', u'predict', u'compens', u'reef']
[u'flood', u'frog', u'surfac', u'fee', u'breed']
[u'flood', u'hit', u'northern', u'tasmania']
[u'footbal', u'camp', u'melbourn', u'indigen']
[u'forb', u'deleg', u'mull', u'rise', u'price']
[u'southcorp', u'staff', u'offer', u'job']
[u'franc', u'take', u'measur', u'bird', u'threat']
[u'french', u'recognis', u'oneil', u'generous', u'contribut']
[u'fund', u'arriv', u'child', u'care', u'centr']
[u'garfunkel', u'arrest', u'marijuana', u'possess']
[u'german', u'court', u'throw', u'weight', u'hefti', u'driver']
[u'gippsland', u'water', u'seek', u'feedback', u'perman']
[u'goosen', u'sole', u'player', u'wentworth', u'field']
[u'govt', u'apologis', u'send', u'paedophil', u'piano']
[u'govt', u'close', u'decis', u'cruis', u'ship', u'termin']
[u'govt', u'renew', u'indonesian', u'travel', u'warn']
[u'govt', u'upgrad', u'power', u'line', u'boost', u'suppli']
[u'green', u'investig', u'nambucca', u'develop']
[u'gregan', u'equal', u'leonard', u'test', u'cap']
[u'hannay', u'melbourn', u'clash']
[u'health', u'servic', u'detaine', u'inadequ', u'ozdowski']
[u'helen', u'coonan', u'speak', u'nation', u'press', u'club']
[u'henin', u'hardenn', u'readi', u'open', u'challeng']
[u'histori', u'buff', u'investig', u'burk', u'will', u'site']
[u'hopper', u'lose', u'assault', u'appeal']
[u'hospit', u'strike', u'threat', u'decreas']
[u'spot', u'saturn', u'moon']
[u'howard', u'prais', u'portfolio', u'leader']
[u'humpback', u'whale', u'popul', u'rise']
[u'hundr', u'indian', u'enceph', u'outbreak']
[u'hundr', u'fear', u'dead', u'storm', u'ravag', u'coast']
[u'hurrican', u'katrina', u'death', u'toll', u'rise']
[u'didnt', u'hook', u'hard', u'bouncer']
[u'immigr', u'face', u'review', u'elder', u'woman', u'death']
[u'indigen', u'train', u'develop', u'pilbara']
[u'injuri', u'rule', u'england', u'terri', u'month']
[u'inquest', u'hear', u'mental', u'health', u'guidelin', u'need']
[u'iraq', u'stamped', u'death', u'toll', u'rise']
[u'iraq', u'sunni', u'leader', u'vow', u'work', u'draft']
[u'irrig', u'unhappi', u'water', u'rate', u'schedul']
[u'jam', u'wood', u'retir', u'suprem', u'court']
[u'japan', u'urg', u'beef', u'restrict']
[u'jone', u'hope', u'make', u'ash', u'showdown']
[u'kangaroo', u'stay', u'jump', u'ahead', u'germani']
[u'kenya', u'probe', u'claim', u'generic', u'vioxx', u'sale']
[u'kosovo', u'presid', u'health', u'deterior']
[u'kyli', u'soak', u'sunshin', u'pari']
[u'landcorp', u'promis', u'compens', u'nois', u'pollut']
[u'requir', u'nurs', u'report', u'child', u'abus']
[u'leadership', u'comment', u'ruffl', u'coalit', u'feather']
[u'lebanes', u'free', u'hariri', u'probe']
[u'legisl', u'need', u'petrol', u'sniff', u'senat']
[u'lesli', u'test', u'posit', u'drug', u'polic']
[u'local', u'winemak', u'posit', u'foster', u'wineri']
[u'lockyer', u'return', u'minor', u'premiership', u'showdown']
[u'love', u'fund', u'help', u'iranian', u'coupl', u'marri']
[u'secur', u'prison', u'extens', u'open']
[u'beat', u'aviat', u'secur', u'charg', u'urg']
[u'extradit', u'face', u'child', u'charg']
[u'fin', u'chastis', u'tri', u'improv', u'view']
[u'plead', u'guilti', u'babi', u'manslaught']
[u'strike', u'remov', u'tree', u'road']
[u'wash', u'flood', u'road']
[u'maori', u'seat', u'nation', u'sight']
[u'market', u'higher', u'despit', u'surg', u'price']
[u'media', u'scrutini', u'blame', u'brogden', u'suicid', u'attempt']
[u'meet', u'tackl', u'staff', u'crisi', u'park', u'polic']
[u'melbourn', u'alert', u'fresh', u'storm']
[u'minist', u'accus', u'slur', u'dyslex']
[u'minist', u'concern', u'escal', u'child', u'abus']
[u'mix', u'respons', u'water', u'plan']
[u'mobil', u'phone', u'steal', u'shop', u'raid']
[u'morri', u'inquiri', u'member', u'head', u'rockhampton']
[u'mortar', u'attack', u'target', u'shiit', u'worshipp']
[u'moth', u'egg', u'pleas', u'quarantin', u'servic']
[u'muller', u'give', u'roddick', u'birthday', u'blue']
[u'nation', u'claim', u'health', u'fund', u'shortfal']
[u'nation', u'fear', u'govt', u'duck', u'hunt']
[u'neck', u'injuri', u'end', u'tyran', u'smith', u'career']
[u'neitz', u'miss', u'train', u'play', u'cat']
[u'orlean', u'plung', u'deeper', u'chao']
[u'orlean', u'resid', u'wait', u'month', u'return']
[u'support', u'howard', u'costello']
[u'liber', u'search', u'answer', u'today']
[u'ofarrel', u'drop', u'leadership']
[u'price', u'hit', u'high', u'hurrican', u'katrina']
[u'oper', u'defend', u'power', u'project', u'viabil']
[u'owen', u'admit', u'newcastl', u'second', u'choic']
[u'petacchi', u'win', u'mcgee', u'keep', u'overal', u'lead']
[u'petroleum', u'group', u'welcom', u'govt', u'explor', u'plan']
[u'piano', u'teacher', u'face', u'paedophilia', u'charg']
[u'polic', u'appeal', u'wit', u'knife', u'attack']
[u'polic', u'chief', u'moroney', u'extend', u'contract']
[u'polic', u'foil', u'courthous', u'escap']
[u'polic', u'investig', u'hous', u'explos']
[u'polic', u'investig', u'latest', u'teacher', u'attack']
[u'pope', u'tell', u'cathol', u'multipli']
[u'primus', u'go', u'knife', u'lade', u'sign', u'deal']
[u'prison', u'releas', u'fulfil', u'aceh', u'peac', u'condit']
[u'queensland', u'remind', u'alert', u'terror']
[u'rail', u'consult', u'process', u'upset', u'farmer']
[u'rain', u'wreak', u'havoc', u'tassi', u'north']
[u'ralli', u'fund', u'sustain', u'indigen', u'health', u'program']
[u'record', u'passeng', u'number', u'prompt', u'airport', u'upgrad']
[u'rescuer', u'bypass', u'hurrican', u'dead', u'save', u'live']
[u'rescuer', u'warn', u'bushwalk', u'stay', u'track']
[u'return', u'player', u'boost', u'saint']
[u'reuter', u'cameraman', u'hold', u'ghraib']
[u'rise', u'childcar', u'cost', u'strain', u'famili']
[u'robert', u'dividend']
[u'robot', u'trainer', u'improv', u'stroke', u'recoveri']
[u'rural', u'teen', u'messag', u'burn']
[u'clean', u'destruct', u'storm']
[u'salari', u'work', u'gallop']
[u'satellit', u'highlight', u'widen', u'ozon', u'hole']
[u'screen', u'industri', u'offic', u'chang']
[u'senat', u'helen', u'coonan', u'address', u'nation']
[u'senat', u'helen', u'coonan', u'speak', u'nation', u'press']
[u'sewer', u'upgrad', u'cost']
[u'shake', u'financi', u'counsel', u'servic']
[u'shire', u'eas', u'water', u'restrict']
[u'shire', u'releas', u'plan', u'smaller', u'boat', u'harbour']
[u'shopper', u'love', u'home', u'brand', u'survey']
[u'slack', u'smith', u'successor', u'line']
[u'socceroo', u'star', u'slice', u'take']
[u'springsteen', u'make', u'academ', u'grade']
[u'state', u'water', u'confer', u'start', u'narrabri']
[u'steve', u'waugh', u'predict', u'ash', u'turnaround']
[u'storm', u'rip', u'south', u'east']
[u'storm', u'continu', u'eastern', u'victoria']
[u'stosur', u'open']
[u'student', u'kill', u'wild', u'wind', u'batter', u'victoria']
[u'student', u'kill', u'overnight', u'storm']
[u'studi', u'find', u'brain', u'cancer', u'link', u'mobil', u'phone']
[u'summit', u'tell', u'aust', u'perfect', u'place', u'desalin']
[u'tasmania', u'victoria', u'batter', u'heavi', u'storm']
[u'tasmania', u'brace', u'flood']
[u'tasmania', u'flood', u'watch', u'focus', u'river']
[u'tassi', u'devil', u'receiv', u'greater', u'protect']
[u'telstra', u'admit', u'monitor', u'staff']
[u'tiger', u'deledio', u'win', u'afl', u'rise', u'star', u'award']
[u'transgrid', u'public', u'display']
[u'transplant', u'athlet', u'die']
[u'line', u'unconvinc', u'campaign', u'boost', u'ferri']
[u'tuna', u'boat', u'join', u'stricken', u'yacht', u'rescu', u'effort']
[u'tuna', u'boat', u'rescu', u'strand', u'yacht', u'coupl']
[u'turinui', u'consid', u'futur', u'captainci']
[u'cycl', u'slam', u'armstrong', u'drug', u'claim']
[u'airstrik', u'kill', u'taliban', u'governor']
[u'hurrican', u'spark', u'australian', u'weather', u'warn']
[u'stock', u'fall', u'price', u'rise']
[u'releas', u'strateg', u'petroleum', u'reserv']
[u'victoria', u'wild', u'weather', u'eas']
[u'green', u'nuclear', u'dump', u'protest']
[u'wallabi', u'roger', u'half', u'black']
[u'warn', u'back', u'australia', u'come', u'good']
[u'weather', u'expert', u'warn', u'increas', u'cyclon', u'activ']
[u'westfield', u'announc', u'half', u'profit']
[u'wild', u'storm', u'claim', u'life', u'leav', u'trial']
[u'wild', u'wind', u'whip', u'canberra']
[u'woman', u'night', u'bush']
[u'world', u'worri', u'forc', u'owen']
[u'zimbabw', u'rule', u'parti', u'vote', u'chang', u'constitut']
[u'high', u'court', u'child', u'killer', u'stori']
[u'academ', u'call', u'boost', u'indigen', u'student']
[u'begin', u'reach', u'hurrican', u'victim']
[u'alcohol', u'pregnanc', u'studi', u'disturb', u'salvo']
[u'black', u'wari', u'pressur', u'gregan']
[u'endors', u'sit']
[u'arrest', u'warrant', u'issu', u'concord', u'pari', u'crash', u'case']
[u'australia', u'say', u'border']
[u'austrian', u'thiev', u'train', u'open', u'safe']
[u'aust', u'fund', u'librari', u'facelift']
[u'year', u'anger', u'linger', u'beslan']
[u'baghdad', u'stamped', u'leav', u'hundr', u'dead']
[u'baghdad', u'stamped', u'shake', u'iraqi', u'govt']
[u'beef', u'industri', u'renew', u'pressur']
[u'benaud', u'believ', u'australia', u'ash']
[u'benaud', u'stun', u'aussi', u'ash']
[u'beslan', u'mark', u'school', u'sieg', u'anniversari']
[u'beslan', u'rememb', u'horror', u'school', u'tragedi']
[u'birdsvill', u'popul', u'swell', u'ahead', u'race']
[u'team', u'confid', u'grab', u'titl']
[u'bouncer', u'deni', u'target', u'hook']
[u'brisban', u'experi', u'indi', u'atmospher']
[u'british', u'actor', u'michael', u'sheard', u'die']
[u'briton', u'kidnap', u'afghanistan']
[u'brogden', u'thank', u'support']
[u'bushfir', u'danger', u'period', u'start', u'earli']
[u'bush', u'vow', u'zero', u'toler', u'post', u'hurrican', u'loot']
[u'servic', u'rise', u'fuel', u'price']
[u'child', u'claim', u'trio', u'charg', u'defam']
[u'chimp', u'shed', u'light', u'human']
[u'commonwealth', u'boost', u'fund', u'histor', u'replica']
[u'communiti', u'project', u'benefit', u'nation', u'park']
[u'contamin', u'soil', u'forc', u'closur', u'motor', u'park']
[u'coonan', u'reject', u'telstra', u'loser', u'claim']
[u'corrupt', u'accus', u'resign', u'polic', u'forc']
[u'councillor', u'slam', u'magistr', u'tree', u'lop', u'case']
[u'council', u'unveil', u'brisban', u'master', u'plan']
[u'countri', u'women', u'converg', u'orang', u'confer']
[u'crash', u'murray', u'tour']
[u'crow', u'readi', u'kilda', u'physic', u'challeng']
[u'custom', u'foil', u'fish', u'smuggl', u'attempt']
[u'debnam', u'look', u'ahead', u'tragic', u'week']
[u'debnam', u'liber', u'leader']
[u'debnam', u'vow', u'team', u'track']
[u'dirti', u'cockl', u'creek', u'site', u'clean']
[u'doc', u'blame', u'industri', u'disput', u'refug', u'closur']
[u'domaszewicz', u'unfit', u'face', u'leski', u'inquest']
[u'downer', u'confid', u'iraq', u'stamped', u'wont', u'stop', u'referendum']
[u'embassi', u'offici', u'tell', u'solon', u'deport']
[u'emerg', u'releas', u'help', u'eas', u'price']
[u'environment', u'group', u'concern', u'cruis', u'ship']
[u'europ', u'hold', u'sanction', u'iran', u'refer']
[u'speaker', u'stand', u'worker']
[u'famili', u'await', u'news', u'aust', u'woman', u'orlean']
[u'famili', u'await', u'news', u'backpack', u'miss', u'india']
[u'farmer', u'enjoy', u'bumper', u'pearl', u'harvest']
[u'farmer', u'urg', u'heed', u'grind', u'water', u'restrict']
[u'fight', u'desalin', u'plant']
[u'fingleton', u'get', u'coast']
[u'land', u'anim', u'shuffl', u'walk']
[u'forecast', u'good', u'flood', u'clean']
[u'hold', u'terror', u'plot']
[u'freight', u'firm', u'creat', u'job', u'plant', u'site']
[u'time', u'riot', u'squad']
[u'oblig', u'joyc', u'tell', u'telstra']
[u'head', u'independ', u'celebr']
[u'giant', u'centiped', u'leg', u'london']
[u'contamin', u'canola', u'sampl']
[u'gold', u'coaster', u'struggl', u'japan', u'event']
[u'govt', u'brush', u'telstra', u'complaint']
[u'govt', u'deni', u'airport', u'secur', u'breach', u'accus']
[u'govt', u'fear', u'bait', u'decis', u'affect', u'wildlif']
[u'greyhound', u'owner', u'ban', u'own', u'dog']
[u'group', u'continu', u'develop', u'stanc']
[u'guantanamo', u'trial', u'chang', u'desper']
[u'gulf', u'countri', u'petrol', u'price', u'alarm', u'local']
[u'hart', u'tip', u'act', u'crow', u'captain']
[u'harvey', u'norman', u'fin', u'open', u'hour']
[u'harvey', u'futur', u'depend', u'abattoir', u'fate', u'murray']
[u'hewitt', u'clijster', u'defi', u'difficult', u'wind', u'advanc']
[u'hurrican', u'kill', u'hundr', u'mayor']
[u'hurrican', u'impact', u'grain', u'cotton', u'market']
[u'hurrican', u'katrina', u'worst', u'american', u'histori']
[u'hushovd', u'win', u'vuelta', u'fifth', u'stage', u'mcgee', u'lead']
[u'didnt', u'target', u'hook', u'bouncer', u'say']
[u'illawarra', u'august', u'rainfal', u'averag']
[u'impeach', u'arroyo', u'reject']
[u'interim', u'safeti', u'work', u'horror', u'section']
[u'iraq', u'carri', u'post', u'saddam', u'execut']
[u'iraqi', u'mourn', u'hundr', u'kill', u'stamped']
[u'israel', u'cede', u'control', u'egypt', u'gaza', u'border']
[u'jackson', u'wnba']
[u'student', u'launch', u'campaign']
[u'johansson', u'punch', u'bench', u'jone']
[u'jone', u'replac', u'selwood', u'eagl']
[u'joyc', u'back', u'ethanol', u'blend', u'petrol', u'fuel', u'price']
[u'prison', u'juvenil', u'centr', u'close', u'opposit']
[u'kimberley', u'polic', u'finalist', u'offic', u'award']
[u'late', u'put', u'nadal', u'open', u'round']
[u'lawyer', u'await', u'lesli', u'drug', u'test', u'result']
[u'leader', u'celebr', u'year', u'solidar']
[u'lesli', u'bribe', u'offer', u'reveal']
[u'lion', u'nathan', u'make', u'cooper']
[u'lockyer', u'webck', u'seymour', u'bronco']
[u'loot', u'hamper', u'orlean', u'rescu', u'effort']
[u'major', u'opal', u'find', u'increas', u'coober', u'pedi']
[u'malle', u'farmer', u'hope', u'rain', u'mild', u'weather']
[u'charg', u'assault']
[u'jail', u'steal', u'credit', u'card', u'receipt']
[u'jail', u'basebal', u'attack']
[u'leav', u'semi', u'conscious', u'metal', u'attack']
[u'manufactur', u'index', u'hit', u'year']
[u'mayor', u'back', u'minist', u'comment', u'develop']
[u'mayor', u'launch', u'stage', u'sewerag', u'work']
[u'melbourn', u'jail', u'murder', u'parent']
[u'mice', u'interact', u'studi', u'lead', u'better']
[u'miner', u'aim', u'increas', u'gold', u'explor']
[u'miner', u'explor', u'disus', u'mine', u'deposit']
[u'mine', u'construct', u'push', u'market', u'higher']
[u'minist', u'put', u'mind', u'clean']
[u'miss']
[u'mock', u'bomb', u'put', u'bali', u'polic', u'alert']
[u'modern', u'human', u'neanderth', u'share', u'earth']
[u'molybdenum', u'demand', u'drive', u'develop']
[u'mooney', u'back', u'plug', u'north', u'state', u'power', u'grid']
[u'mourinho', u'unveil', u'chelsea', u'year', u'plan']
[u'tell', u'accus', u'lie']
[u'urg', u'maintain', u'bridg', u'communiti']
[u'nadal', u'round', u'open']
[u'nativ', u'titl', u'agreement', u'clear', u'path', u'iron']
[u'atlas', u'highlight', u'plight', u'world', u'great', u'ape']
[u'newcastl', u'spur', u'transfer', u'action']
[u'digit', u'channel', u'make', u'debut']
[u'owner', u'envisag', u'good', u'prospect', u'outback']
[u'evid', u'weed', u'outbreak', u'reach', u'gulf']
[u'nrma', u'move', u'allay', u'concern', u'quot']
[u'liber', u'elect', u'debnam', u'leader']
[u'govt', u'wont', u'nuclear', u'wast', u'dump', u'fight']
[u'pastoralist', u'hop', u'good', u'season']
[u'rottweil', u'tuckerbox']
[u'pilot', u'ground', u'quip', u'late']
[u'offici', u'year', u'peopl']
[u'kill', u'turkish', u'blast']
[u'optim', u'dowerin', u'machineri', u'field', u'day']
[u'owen', u'readi', u'rekindl', u'english', u'passion']
[u'page', u'back', u'black', u'health', u'servic', u'loss']
[u'perman', u'squad', u'examin', u'serial', u'kill']
[u'petit', u'aim', u'stop', u'busi', u'regul']
[u'petrol', u'price', u'stay', u'high', u'time']
[u'philippoussi', u'undaunt', u'latest', u'slam', u'failur']
[u'retir', u'want', u'downer']
[u'chip', u'fund', u'tasmanian', u'leve']
[u'sidestep', u'question']
[u'proud', u'polic', u'rap', u'beat', u'minist']
[u'polic', u'campaign', u'focus', u'snatcher']
[u'polic', u'item', u'search', u'miss', u'year']
[u'polic', u'investig', u'student', u'death']
[u'polic', u'step', u'effort', u'solv', u'claremont', u'murder']
[u'polic', u'warn', u'motorist', u'black']
[u'port', u'face', u'injuri', u'crisi']
[u'princip', u'hit', u'media', u'report']
[u'prison', u'offic', u'await', u'offer']
[u'program', u'tackl', u'high', u'sid', u'rate', u'aborigin']
[u'prosecutor', u'seek', u'year', u'aust', u'embassi', u'blast']
[u'protest', u'greet', u'northern', u'tasmania']
[u'govt', u'promis', u'council', u'road']
[u'health', u'inquiri', u'bias', u'court', u'rule']
[u'health', u'inquiri', u'limbo']
[u'rain', u'miss', u'central', u'catchment']
[u'recoveri', u'hurrican', u'year', u'bush']
[u'region', u'partnership', u'rig', u'truss']
[u'report', u'find', u'ethanol', u'damag', u'grain', u'export']
[u'rescu', u'coupl', u'arriv', u'port', u'lincoln']
[u'rescu', u'sailor', u'tell', u'vulner', u'time']
[u'resid', u'assur', u'staff', u'shortag', u'affect']
[u'resid', u'accept', u'council', u'civic', u'centr']
[u'ricciuto', u'play', u'support', u'role', u'crow', u'final']
[u'riverbank', u'clear', u'concern', u'fisheri']
[u'robot', u'watchdog', u'keep', u'overeat', u'tight', u'leash']
[u'ronaldinho', u'barca', u'till']
[u'ruddock', u'back', u'hick', u'trial', u'chang']
[u'host', u'swan', u'final']
[u'school', u'shut', u'machet', u'attack']
[u'search', u'begin', u'miss', u'india']
[u'search', u'resum', u'tomorrow']
[u'seed', u'stay', u'cours', u'wind', u'whip', u'open']
[u'high', u'grind']
[u'shellcov', u'wetland', u'near', u'complet']
[u'shire', u'welcom', u'bypass', u'progress']
[u'sleepi', u'traffic', u'control', u'leav', u'flight']
[u'socceroo', u'learn', u'trick', u'viduka']
[u'storm', u'affect', u'household', u'elig', u'compens']
[u'storm', u'batter', u'bushfir', u'survivor']
[u'sunric', u'announc', u'restructur', u'plan']
[u'suprem', u'court', u'rule', u'health', u'inquiri', u'bias']
[u'survey', u'find', u'salari', u'lower', u'darwin']
[u'survivor', u'flee', u'orlean']
[u'swan', u'readi', u'tough', u'test', u'subi']
[u'swimmer', u'tackl', u'backstair', u'passag', u'chariti']
[u'sydney', u'slump', u'except', u'hous', u'price']
[u'tait', u'clear', u'shoulder', u'problem']
[u'offici', u'move', u'immigr', u'dept']
[u'teacher', u'feder', u'campaign', u'save', u'school']
[u'telstra', u'loser', u'claim', u'strengthen', u'case', u'sale']
[u'temporari', u'hospit', u'worker', u'hous', u'caravan']
[u'tendulkar', u'pull', u'zimbabw', u'test', u'seri']
[u'thai', u'polic', u'test', u'perth', u'child', u'case']
[u'day', u'mourn', u'declar', u'stamped']
[u'tomato', u'fight', u'draw', u'spain']
[u'tourist', u'oper', u'welcom', u'jetstar', u'flight', u'news']
[u'escap', u'helicopt', u'crash']
[u'typhoon', u'pound', u'taiwan', u'leav', u'dead']
[u'chang', u'hick', u'trial', u'structur']
[u'compani', u'sell', u'carter', u'holt', u'harvey']
[u'militari', u'make', u'chang', u'commiss']
[u'launch', u'research', u'databas']
[u'vaughan', u'problem', u'substitut', u'polici']
[u'venezuela', u'offer', u'hurrican', u'batter']
[u'venic', u'film', u'festiv', u'open', u'martial', u'art', u'epic']
[u'victoria', u'aim', u'recycl', u'wast']
[u'vmos', u'dismiss', u'govt', u'latest', u'offer']
[u'governor', u'end', u'gascoyn', u'visit']
[u'wallabi', u'black', u'admit', u'cheat', u'ruck']
[u'warmer', u'august', u'weather', u'canberra']
[u'warn', u'fodder', u'stock', u'price', u'increas']
[u'water', u'alloc', u'come', u'relief', u'farmer']
[u'water', u'author', u'hop', u'fast', u'track', u'pipelin']
[u'waterfront', u'develop', u'uncertainti', u'threaten']
[u'watson', u'make', u'case', u'doubl', u'centuri']
[u'wattl', u'reignit', u'republ', u'debat']
[u'webck', u'backbon', u'say', u'smith']
[u'woman', u'safe', u'night', u'nation', u'park']
[u'wooli', u'takeov', u'rais', u'accc', u'concern']
[u'young', u'farmer', u'debat', u'wide', u'rang', u'issu']
[u'zimbabw', u'save', u'face', u'loss']
[u'revamp', u'southern', u'highland', u'cement']
[u'academ', u'claim', u'australia', u'toler', u'societi']
[u'adelaid', u'forc', u'roar', u'draw']
[u'alcohol', u'industri', u'play', u'label', u'call']
[u'alic', u'spring', u'elect', u'candid', u'finalis']
[u'alleg', u'qaeda', u'tape', u'claim', u'respons']
[u'anderson', u'launch', u'land', u'manag', u'tender', u'report']
[u'angler', u'join', u'fight', u'cruis', u'ship', u'termin']
[u'ansett', u'transport', u'museum', u'hop']
[u'aust', u'famili', u'fear', u'relat', u'orlean']
[u'australian', u'fear', u'live', u'orlean']
[u'australia', u'offer', u'expert', u'team', u'hurrican', u'respons']
[u'aust', u'feel', u'pinch', u'hurrican', u'costello']
[u'bait', u'plan', u'aim', u'bite', u'wild', u'woe']
[u'beamer', u'push', u'list']
[u'beatti', u'vow', u'finish', u'junk', u'inquiri']
[u'beatti', u'wait', u'bundaberg', u'inquiri', u'limbo']
[u'betham', u'leav', u'warrior', u'wildcat']
[u'bird', u'buddi', u'hope', u'turn', u'littl', u'tern']
[u'black', u'explain', u'stand']
[u'blake', u'set', u'nadal', u'showdown']
[u'boati', u'warn', u'stay', u'clear', u'nurs', u'whale']
[u'bomb', u'expert', u'begin', u'wharf', u'survey']
[u'buchanan', u'put', u'talk']
[u'burn', u'eas', u'hornsbi', u'fuel', u'load']
[u'busi', u'peopl', u'quiz', u'jail', u'plan']
[u'traralgon', u'radiolog', u'patient', u'equal']
[u'jacker', u'jail', u'appal', u'offenc']
[u'champion', u'brazil', u'verg', u'world', u'final']
[u'church', u'chime', u'defend', u'richmond', u'belltow']
[u'serv', u'warrant', u'burnett', u'council']
[u'cole', u'recal', u'potenti', u'harm', u'babi', u'jumpsuit']
[u'colli', u'coal', u'miner', u'accept', u'rescu', u'packag']
[u'confer', u'focus', u'mood', u'disord', u'treatment']
[u'contractor', u'repair', u'fairbairn', u'park', u'barrier']
[u'convict', u'killer', u'question', u'cemeteri', u'murder']
[u'coonan', u'comment', u'support', u'telstra', u'sale', u'rethink', u'mayor']
[u'cooper', u'rule', u'slow', u'lion', u'nathan']
[u'coron', u'rule', u'holt', u'conspiraci', u'theori', u'fanci']
[u'costello', u'join', u'chorus', u'dismiss', u'telstra', u'complaint']
[u'council', u'adopt', u'christma', u'tree', u'plan']
[u'council', u'seek', u'rule', u'letter']
[u'council', u'urg', u'rethink', u'pool', u'plan']
[u'court', u'disqualifi', u'morri', u'bundaberg', u'inquiri']
[u'court', u'rule', u'morgan', u'shooter', u'crimin']
[u'croc', u'beat', u'razorback', u'clash']
[u'poker', u'machin', u'levi', u'opposit', u'urg']
[u'debnam', u'pledg', u'shut', u'inject', u'room']
[u'desalin', u'plant', u'declar', u'critic', u'infrastructur']
[u'doc', u'stand', u'refug', u'closur']
[u'downpour', u'damag', u'local', u'road']
[u'appeal', u'elder', u'child', u'sentenc']
[u'dredg', u'test', u'caus', u'massiv', u'damag']
[u'driver', u'warn', u'flood', u'threat']
[u'drought', u'leav', u'sheep', u'produc', u'unabl', u'meet']
[u'drug', u'supplier', u'escap', u'jail', u'sentenc']
[u'eagl', u'edg', u'swan', u'thriller']
[u'eagl', u'faith', u'forward']
[u'eel', u'secur', u'minor', u'premiership', u'lose', u'hindmarsh']
[u'england', u'play', u'test', u'seven', u'dayer']
[u'eurobodalla', u'matern', u'servic', u'face', u'obstetrician']
[u'exhibit', u'advoc', u'siev', u'memori']
[u'explos', u'rock', u'orlean']
[u'export', u'discrep', u'worri', u'cattl', u'produc']
[u'fall', u'tree', u'clean', u'begin', u'storm']
[u'farmer', u'forum', u'provid', u'voic', u'youth']
[u'fatal', u'crash', u'close', u'highway']
[u'fat', u'domino', u'miss', u'hurrican', u'katrina', u'wake']
[u'fat', u'domino', u'rescu', u'daughter', u'say']
[u'feedlot', u'beat', u'cattl', u'plan']
[u'aussi', u'hurrican', u'zone']
[u'fingleton', u'say', u'brother']
[u'fingleton', u'payout', u'spur', u'hanson', u'compo']
[u'brigad', u'unabl', u'identifi', u'supermarket', u'fume']
[u'turn', u'bendigo', u'bank', u'revamp']
[u'arrest', u'japanes', u'expo', u'porn']
[u'flight', u'commit', u'antarctica', u'howard']
[u'flood', u'boost', u'hydro', u'power', u'storag']
[u'flood', u'cost', u'insur', u'half', u'million', u'dollar']
[u'folbigg', u'lose', u'appeal', u'child', u'murder']
[u'jail', u'brutal', u'murder', u'wrong']
[u'fuel', u'price', u'climb', u'litr']
[u'govt', u'deni', u'abandon', u'sexual', u'assault', u'support']
[u'govt', u'probe', u'dead', u'highway', u'section']
[u'govt', u'reject', u'airport', u'secur', u'claim']
[u'govt', u'stand', u'child', u'care', u'centr', u'fund']
[u'govt', u'support', u'deniliquin', u'servic', u'move']
[u'govt', u'talk', u'fast', u'rail', u'timet', u'chang']
[u'govt', u'welfar', u'work', u'plan']
[u'govt', u'urg', u'fitzroy', u'cross', u'school']
[u'gregan', u'dismiss', u'retir', u'talk']
[u'groot', u'eylandt', u'violenc', u'decreas', u'polic']
[u'guantanamo', u'hunger', u'strike', u'report', u'investig']
[u'harvey', u'norman', u'profit', u'slip']
[u'henri', u'head', u'unchart', u'water']
[u'hewson', u'highlight', u'liber', u'parti', u'fight']
[u'hickey', u'monitor', u'great', u'lake', u'council']
[u'high', u'fuel', u'cost', u'boost', u'commut', u'number']
[u'high', u'school', u'automot', u'skill', u'centr']
[u'howard', u'pledg', u'hurrican']
[u'hurrican', u'death', u'toll', u'rise', u'rescu', u'effort']
[u'hurrican', u'katrina', u'crisi', u'continu']
[u'hurrican', u'refug', u'like', u'concentr', u'camp']
[u'hurrican', u'survivor', u'queue', u'water', u'fuel']
[u'illeg', u'worker', u'hire', u'labour', u'compani']
[u'industri', u'flag', u'post', u'hurrican', u'insur', u'shake']
[u'inquiri', u'close']
[u'quot', u'chao', u'orlean']
[u'iran', u'put', u'rare', u'see', u'western', u'display']
[u'israel', u'finish', u'demolish', u'gaza', u'settler', u'home']
[u'israel', u'freez', u'settlement', u'project']
[u'itali', u'continu', u'troop', u'withdraw', u'iraq']
[u'patel', u'patient', u'morri']
[u'jail', u'term', u'pram', u'theft', u'month']
[u'kerin', u'promis', u'bail', u'crackdown']
[u'kimmorley', u'put', u'famili']
[u'lion', u'nathan', u'continu', u'fight', u'cooper']
[u'longford', u'short', u'chang', u'leve', u'fund']
[u'admit', u'pinjarra', u'doubl', u'murder']
[u'guilti', u'casino', u'murder', u'attempt']
[u'mango', u'grower', u'urg', u'action', u'chang']
[u'jail', u'fatal', u'stunt']
[u'stand', u'trial', u'omagh', u'bomb']
[u'market', u'slip', u'morn', u'peak']
[u'martin', u'admit', u'school', u'violenc', u'rise']
[u'medal', u'honour', u'fesa', u'staff']
[u'west', u'polli', u'seek', u'uranium', u'mine', u'talk']
[u'upgrad', u'prevent', u'water', u'pollut']
[u'minist', u'face', u'angri', u'colli', u'coal', u'miner']
[u'minist', u'spruik', u'benefit', u'govt', u'reform']
[u'miss', u'believ', u'safe']
[u'injuri', u'heartbreak', u'port', u'primus']
[u'mother', u'avoid', u'jail', u'hous']
[u'question', u'mobil', u'phone', u'servic', u'delay']
[u'say', u'telstra', u'sale', u'boost', u'bush', u'servic']
[u'urg', u'memori', u'includ', u'peac', u'park']
[u'nation', u'flag', u'celebr']
[u'neitz', u'step', u'closer', u'meet', u'cat']
[u'kempsey', u'sydney', u'servic']
[u'newmont', u'explor', u'boon', u'orang']
[u'orlean', u'hospit', u'break', u'point']
[u'kill', u'indonesian', u'landslid']
[u'nobel', u'win', u'anti', u'nuclear', u'campaign', u'rotblat', u'die']
[u'conspiraci', u'coron', u'rule']
[u'sens', u'tri', u'unseat', u'howard', u'hewson']
[u'minor', u'premiership', u'grab']
[u'liber', u'hit', u'parti', u'right', u'wing']
[u'lib', u'leader', u'deni', u'right', u'wing', u'takeov']
[u'charg', u'illeg', u'drug', u'import']
[u'opposit', u'condemn', u'water', u'charg']
[u'opposit', u'urg', u'fund', u'sexual', u'assault', u'servic']
[u'orang', u'hospit', u'introduc', u'patient', u'chang']
[u'paedophil', u'accus', u'unfaz', u'defam', u'charg']
[u'parad', u'kick', u'desert', u'festiv']
[u'parti', u'organis', u'urg', u'regist', u'polic']
[u'patient', u'seek', u'complet', u'bundaberg', u'inquiri']
[u'pilbara', u'woe', u'affect', u'woodsid', u'share']
[u'plan', u'aim', u'protect', u'indigen', u'shopper']
[u'plan', u'moot', u'green']
[u'meet', u'cystic', u'fibrosi', u'suffer']
[u'snap', u'telstra', u'exec']
[u'stand', u'iraq', u'commit', u'despit', u'qaeda']
[u'take', u'telstra', u'exec', u'task', u'comment']
[u'polic', u'chief', u'reflect', u'newcastl', u'achiev']
[u'polic', u'crack', u'magic', u'mushroom', u'possess']
[u'polic', u'evacu', u'pari', u'squat', u'dead', u'fire']
[u'polic', u'fire', u'warn', u'shot', u'orlean', u'tourist']
[u'polic', u'mull', u'charg', u'ephedrin', u'bust']
[u'polic', u'train', u'explos', u'alarm', u'resid']
[u'port', u'face', u'leadership', u'vacuum']
[u'prioriti', u'school', u'fund', u'program', u'continu']
[u'prison', u'audit', u'reveal', u'porn', u'secret', u'surf']
[u'prison', u'manag', u'skimp', u'staff', u'offic']
[u'push', u'communiti', u'bank', u'franchis']
[u'question', u'rais', u'zimbabw', u'multi', u'million']
[u'race', u'fan', u'flock', u'birdsvill']
[u'rayner', u'misconduct', u'case', u'refer', u'polic']
[u'raze', u'islam', u'centr', u'seek', u'donat']
[u'razorback', u'replac', u'guard', u'vanish']
[u'report', u'card', u'highlight', u'need', u'feder', u'road']
[u'rise', u'petrol', u'price', u'pressur', u'rural', u'patient']
[u'riverland', u'public', u'school', u'lift', u'attend', u'rat']
[u'cricket', u'question', u'teen', u'alleg', u'assault']
[u'saint', u'lose', u'maguir', u'hart', u'captain', u'crow']
[u'search', u'miss', u'intensifi']
[u'sectarian', u'tension', u'rise', u'iraqi', u'shiit', u'buri']
[u'shire', u'face', u'road', u'repair', u'cost', u'blowout']
[u'shoalhaven', u'defenc', u'contract']
[u'soil', u'contamin', u'forc', u'closur', u'fairbairn', u'park']
[u'solomon', u'launch', u'democraci', u'educ', u'program']
[u'strong', u'typhoon', u'cours', u'japan']
[u'student', u'decid', u'futur', u'earli']
[u'support', u'group', u'condemn', u'quick', u'adhd', u'diagnos']
[u'surfest', u'wave', u'goodby', u'sponsor']
[u'suspend', u'polic', u'live', u'workcov', u'claim']
[u'swift', u'phoenix', u'continu', u'grand', u'final', u'rivalri']
[u'sydney', u'airport', u'fuel', u'shortag', u'end']
[u'sydney', u'post', u'leagu']
[u'sydney', u'charg', u'philippin', u'tour']
[u'tafe', u'chief', u'reject', u'opposit', u'claim']
[u'talk', u'begin', u'health', u'servic', u'cut', u'plan']
[u'tamoxifen', u'tumour', u'link', u'caus', u'alarm']
[u'tasmanian', u'build', u'vessel', u'assist', u'hurrican', u'relief']
[u'teacher', u'refus', u'return', u'class', u'machet']
[u'teenag', u'jail', u'crash', u'kill', u'friend']
[u'teen', u'court', u'assault', u'senior']
[u'test', u'decid', u'workcov', u'recipi', u'polic', u'minist']
[u'theori', u'link', u'diseas', u'funer', u'rite']
[u'thousand', u'trap', u'chaotic', u'orlean']
[u'thredbo', u'skier', u'aim', u'record']
[u'timber', u'giant', u'sale', u'expect', u'impact', u'oberon']
[u'time', u'heal', u'danish', u'wind', u'say', u'ferdinand']
[u'tongan', u'public', u'servant', u'temporari', u'rise']
[u'townsvill', u'vmos', u'quit']
[u'treasur', u'unfaz', u'turnbul', u'paper']
[u'troop', u'tell', u'shoot', u'kill', u'orlean']
[u'troubl', u'stockfe', u'sell']
[u'typhoon', u'kill', u'china', u'taiwan']
[u'confirm', u'troop', u'kill', u'reuter', u'journalist']
[u'need', u'world', u'help', u'annan', u'say']
[u'pois', u'plutonium', u'rocket']
[u'relax', u'nuclear', u'restrict', u'india']
[u'vegi', u'grower', u'odd', u'review', u'recommend']
[u'viduka', u'captain', u'socceroo']
[u'vigil', u'urg', u'child', u'charg', u'lay']
[u'walker', u'can', u'ralph', u'canal', u'develop']
[u'wallabi', u'complet', u'prepar', u'black', u'test']
[u'water', u'author', u'look', u'speed', u'pipelin']
[u'water', u'price', u'increas', u'higher', u'expect']
[u'waugh', u'back', u'hayden', u'macgil']
[u'waugh', u'name', u'australia', u'best']
[u'uranium', u'polici', u'utter', u'discredit', u'opposit']
[u'week', u'call', u'action', u'child', u'protect']
[u'wife', u'jail', u'sydney', u'man', u'murder']
[u'wine', u'industri', u'cybernos', u'leav', u'chanc']
[u'crocodil', u'begin', u'season', u'win', u'note']
[u'flag', u'canberra', u'site', u'siev', u'memori']
[u'advocaci', u'group', u'seek', u'remov', u'polic', u'sergeant']
[u'black', u'wari', u'confid']
[u'aussi', u'coach', u'graf', u'return', u'wnbl']
[u'aussi', u'trail', u'goosen', u'china']
[u'base', u'jumper', u'rescu', u'blue', u'mountain', u'mishap']
[u'beatti', u'meet', u'patel', u'patient']
[u'beslan', u'hold', u'minut', u'silenc', u'victim']
[u'brisban', u'home', u'evacu', u'drug', u'dismantl']
[u'brisban', u'women', u'leav', u'hurrican', u'citi']
[u'bush', u'hurrican']
[u'bush', u'tell', u'orlean', u'wont', u'forget']
[u'bush', u'hurrican', u'respons']
[u'australian', u'right']
[u'categori', u'storm', u'threaten', u'okinawa', u'island']
[u'cat', u'book', u'semi', u'final', u'showdown', u'swan']
[u'chines', u'typhoon', u'death', u'toll', u'climb']
[u'chirac', u'hospit', u'treatment']
[u'continu', u'morri', u'inquiri', u'nation']
[u'cole', u'take', u'tap', u'case']
[u'coupl', u'road', u'diabet', u'awar', u'campaign']
[u'cowboy', u'sink', u'storm', u'fifth', u'spot']
[u'cricket', u'face', u'rape', u'charg']
[u'darwin', u'harbour', u'dredg', u'search', u'wwii', u'bomb']
[u'deep', u'diver', u'discov', u'fluoresc', u'surpris']
[u'dent', u'prepar', u'hewitt', u'rattl']
[u'dent', u'hard', u'work', u'hewitt']
[u'develop', u'bodi', u'reject', u'siev', u'monument']
[u'differ', u'time', u'right', u'say']
[u'doctor', u'begin', u'vocal', u'campaign']
[u'doubl', u'player', u'defend', u'legal', u'fight']
[u'dozen', u'australian', u'trap', u'orlean']
[u'england', u'face', u'real', u'australia', u'kasper']
[u'european', u'promis', u'suppress', u'price']
[u'explor', u'croc', u'fossil']
[u'final', u'settl', u'penalti', u'shoot']
[u'final', u'differ', u'ball', u'game', u'thompson']
[u'flight', u'attend', u'custodi', u'drug', u'offenc']
[u'green', u'warn', u'royal', u'hobart', u'staff']
[u'green', u'welcom', u'air', u'liber', u'concern']
[u'guarante', u'seek', u'ralph', u'sit', u'futur']
[u'harvey', u'hero', u'saint', u'crow']
[u'hewitt', u'feder', u'women', u'seed', u'progress']
[u'hewson', u'move', u'quell', u'lib', u'faction', u'fight']
[u'hewson', u'warn', u'liber', u'faction', u'fight']
[u'hiddink', u'work', u'acceler', u'kewel', u'rehab']
[u'huge', u'spill', u'cover', u'louisiana', u'marsh']
[u'leav', u'australia', u'say', u'hurrican']
[u'india', u'crush', u'black', u'cap', u'wicket']
[u'india', u'say', u'natur', u'field', u'discov']
[u'inquiri', u'shutdown', u'threaten', u'patel', u'extradit']
[u'interview', u'jarad', u'rook']
[u'investig', u'look', u'hous', u'fire']
[u'japanes', u'tourist', u'bodi', u'identifi', u'afghanistan']
[u'katrina', u'jitter', u'knock', u'wall', u'street']
[u'kenya', u'drop', u'charg', u'sydney', u'missionari']
[u'kotz', u'step', u'elect']
[u'macgil', u'select', u'frame', u'buchanan']
[u'malaysian', u'prison', u'hotel', u'seek', u'masochist', u'tourist']
[u'critic']
[u'free', u'collis', u'tram']
[u'mcgrath', u'final', u'warm', u'match']
[u'mclaren', u'look', u'sharp', u'schumach', u'crash', u'practic']
[u'militari', u'convoy', u'arriv', u'hurrican']
[u'minist', u'defend', u'illeg', u'gambl', u'inquiri']
[u'munro', u'fan', u'rid', u'high', u'japan']
[u'nepales', u'rebel', u'announc', u'temporari', u'ceasefir']
[u'orlean', u'chao', u'expos', u'bush', u'racism', u'say', u'rapper']
[u'back', u'nation', u'regist', u'limit', u'telemarket']
[u'offici', u'refus', u'access', u'strand', u'australian']
[u'petrol', u'sniff', u'inquiri', u'wast', u'time', u'scullion']
[u'phoenix', u'claim', u'fifth', u'netbal', u'titl']
[u'pietersen', u'confid', u'jone', u'play']
[u'plane', u'make', u'emerg', u'land', u'near', u'melbourn']
[u'thank', u'tasmanian', u'liber', u'loyalti']
[u'polic', u'continu', u'search', u'miss', u'teen']
[u'polic', u'sydney', u'prison', u'escape']
[u'prison', u'escap', u'hospit']
[u'prison', u'fell', u'barb', u'wire', u'water']
[u'public', u'opinion', u'seek', u'tidbinbilla', u'natur']
[u'coupl', u'drive', u'safeti', u'orlean']
[u'rabbitoh', u'hand', u'newcastl', u'wooden', u'spoon']
[u'raikkonen', u'titl', u'challeng', u'engin', u'chang']
[u'railway', u'group', u'optimist', u'avoid', u'closur']
[u'rolton', u'go', u'rampag']
[u'roo', u'blame', u'umpir', u'narrow', u'loss']
[u'rossi', u'test', u'regular', u'ferrari']
[u'russian', u'offici', u'charg', u'money', u'launder']
[u'cricket', u'face', u'rape', u'charg']
[u'saddam', u'trial', u'open', u'octob']
[u'saint', u'readi']
[u'eagl', u'secur', u'eighth', u'place']
[u'eagl', u'secur', u'eighth', u'spot']
[u'paterson', u'curs', u'outbreak', u'forecast']
[u'servic', u'farewel', u'shark', u'attack', u'victim']
[u'taliban', u'claim', u'kill', u'kidnap', u'elect']
[u'tharanga', u'fire', u'lanka', u'seri', u'clinch']
[u'appeal', u'hurrican']
[u'boe', u'worker', u'strike', u'contract', u'offer']
[u'congress', u'pass', u'billion', u'hurrican']
[u'hurrican', u'survivor', u'welcom', u'basic', u'suppli']
[u'soldier', u'afghan', u'interpret', u'kill']
[u'thank', u'countri', u'offer']
[u'vainikolo', u'explod', u'record', u'break', u'haul']
[u'viduka', u'star', u'easi', u'socceroo']
[u'violenc', u'restrict', u'rescu', u'australian']
[u'wallabi', u'fight']
[u'watchdog', u'reserv', u'decis', u'iran', u'nuclear', u'program']
[u'monitor', u'inmat', u'comput']
[u'australian', u'strand', u'orlean']
[u'abbott', u'admit', u'insensit', u'brogden', u'comment']
[u'abbott', u'offer', u'apolog', u'insensit', u'brogden']
[u'abbott', u'renew', u'control', u'public', u'health']
[u'actu', u'pick', u'nation', u'protest']
[u'actu', u'plan', u'nation', u'communiti', u'protest']
[u'afghanistan', u'offer', u'hurrican', u'hand']
[u'allenbi', u'lurk', u'wood', u'toil']
[u'criticis', u'hour', u'clinic']
[u'aussi', u'rower', u'strike', u'gold']
[u'aussi', u'gold', u'japan']
[u'aust', u'offici', u'frustrat', u'limit', u'access']
[u'bar', u'door', u'open', u'rain', u'hail', u'hurrican']
[u'beatti', u'boost', u'fund', u'patel', u'patient']
[u'beatti', u'reject', u'talk', u'feder', u'control', u'health']
[u'beazley', u'slam', u'govt', u'hurrican', u'respons']
[u'bell', u'cramp', u'caus', u'england', u'concern']
[u'british', u'church', u'mosqu', u'popular']
[u'bush', u'order', u'extra', u'troop', u'hurrican', u'katrina']
[u'bush', u'promis', u'troop', u'hurrican', u'state']
[u'bush', u'orlean', u'tour', u'photo']
[u'focus', u'psycholog', u'impact']
[u'cane', u'toad', u'fatal', u'attract', u'disco', u'light']
[u'claim', u'liber', u'ultra', u'conserv', u'faction']
[u'cole', u'fire', u'lacklustr', u'england', u'home']
[u'consular', u'offici', u'frustrat', u'lack', u'access']
[u'craig', u'bellami', u'interview']
[u'crew', u'work', u'rescu', u'children', u'trap', u'sink']
[u'darwin', u'council', u'deni', u'revenu', u'rais', u'market']
[u'date', u'saddam', u'trial']
[u'detaine', u'mount', u'hunger', u'strike', u'visa', u'decis']
[u'dragon', u'triumph', u'knight']
[u'ecuador', u'paraguay', u'closer', u'world']
[u'ervin', u'propel', u'hampshir', u'trophi', u'victori']
[u'essex', u'aussi', u'attack', u'sword']
[u'final', u'comeback', u'card', u'hindmarsh']
[u'fisherman', u'kill', u'miss', u'boat', u'capsiz']
[u'fred', u'hollow', u'foundat', u'consid', u'expans']
[u'govt', u'address', u'internet', u'safeti', u'children', u'coonan']
[u'govt', u'defend', u'plan', u'real', u'time', u'info']
[u'govt', u'plan', u'recreat', u'fish', u'licenc', u'fish']
[u'govt', u'step', u'campaign', u'sport', u'fan']
[u'gregan', u'equal', u'record', u'futur', u'remain', u'doubt']
[u'heath', u'ledger', u'score', u'casanova', u'romp', u'venic']
[u'hotel', u'chang', u'alcohol', u'sale']
[u'hundr', u'car', u'impound', u'hoon', u'crackdown']
[u'boss', u'warn', u'global', u'energi', u'crisi']
[u'interview', u'john', u'lang', u'sheen']
[u'interview', u'nathan', u'brown', u'michael', u'hagan']
[u'interview', u'ricki', u'stuart', u'luke', u'ricketson']
[u'investig', u'continu', u'cricket', u'rape']
[u'iraqi', u'polic', u'soldier', u'kill', u'baquba', u'attack']
[u'chang', u'threaten', u'communiti', u'servic', u'sector', u'task']
[u'maker', u'futur', u'unclear']
[u'john', u'allay', u'warrington', u'fear', u'injuri']
[u'kidman', u'film', u'obvious', u'swipe', u'mugab']
[u'kidnap', u'briton', u'dead', u'afghanistan']
[u'order', u'restor', u'orlean']
[u'ledger', u'casanova', u'seduc', u'venic']
[u'liber', u'urg', u'tariff', u'save', u'manufactur']
[u'liber', u'confer', u'releas', u'polici']
[u'malaysia', u'build', u'half', u'bridg', u'troubl']
[u'marin', u'fight', u'snatch', u'draw']
[u'matthew', u'elliott', u'interview']
[u'mcgrath', u'declar', u'final', u'test']
[u'kill', u'polic', u'india']
[u'minist', u'play', u'feder', u'leadership', u'specul']
[u'troop', u'head', u'chaotic', u'orlean']
[u'tasmanian', u'dentist', u'visit', u'say', u'studi']
[u'muscat', u'penalti', u'rescu', u'victori']
[u'nadal', u'rock', u'agassi', u'davenport', u'advanc']
[u'nadal', u'rock', u'agassi', u'dementieva', u'surviv']
[u'nation', u'leader', u'tell', u'liber', u'disun']
[u'nepal', u'rebel', u'announc', u'ceasefir']
[u'effort', u'sunni', u'iraq', u'constitut']
[u'orlean', u'ghost', u'town', u'rescu', u'effort', u'kick']
[u'orlean', u'citi', u'centr', u'abandon']
[u'bull', u'rule', u'unfair', u'target', u'breed', u'say']
[u'port', u'river', u'bridg', u'need', u'say', u'opposit']
[u'tighten', u'fertilis', u'control']
[u'panther', u'consign', u'tiger', u'fourth']
[u'panther', u'edg', u'tiger', u'half', u'time']
[u'pari', u'blaze', u'kill', u'injur']
[u'patient', u'renew', u'call', u'patel', u'inquiri']
[u'polic', u'arrest', u'nightclub', u'stab']
[u'polic', u'search', u'shoot', u'suspect']
[u'port', u'semi', u'showdown']
[u'premier', u'accus', u'ralph', u'develop', u'loss']
[u'raikkonen', u'fastest', u'montoya', u'take', u'pole']
[u'rooster', u'season', u'high', u'note']
[u'saddam', u'lawyer', u'reject', u'trial', u'date', u'earli']
[u'safeti', u'audit', u'stall', u'highway', u'fund', u'releas', u'say']
[u'search', u'continu', u'miss', u'teen']
[u'search', u'miss', u'fisherman', u'resum', u'morn']
[u'servic', u'station', u'seek', u'petrol', u'price']
[u'shaun', u'mcrae', u'stuart', u'raper', u'interview']
[u'slow', u'negoti', u'hurt', u'miller', u'say', u'timber']
[u'taipan', u'toppl', u'breaker']
[u'liber', u'accus', u'conflict']
[u'telstra', u'chief', u'blame', u'woe', u'say', u'coonan']
[u'texa', u'struggl', u'cope', u'hurrican', u'influx']
[u'tiger', u'demolish', u'hawk']
[u'time', u'overhaul', u'say', u'jone']
[u'tongan', u'govt', u'agre', u'consid', u'democrat', u'reform']
[u'ugandan', u'murder', u'suspect', u'die', u'custodi']
[u'ukrain', u'qualifi', u'world', u'fever', u'intensifi']
[u'chief', u'justic', u'die', u'cancer', u'battl']
[u'media', u'slam', u'hurrican', u'respons']
[u'erad', u'bull']
[u'violent', u'student', u'need', u'boot', u'camp', u'say']
[u'weaken', u'typhoon', u'remain', u'threat', u'japan']
[u'white', u'pointer', u'attack', u'surfer']
[u'wildcard', u'blake', u'stun', u'nadal']
[u'youth', u'homeless', u'target', u'katherin']
[u'fear', u'dead', u'indonesian', u'plane', u'crash']
[u'taliban', u'kill', u'arrest', u'raid', u'offici']
[u'clear', u'queer', u'comment']
[u'drown', u'illeg', u'cross', u'yemen']
[u'abbott', u'consid', u'posit', u'mental', u'health', u'bodi']
[u'base', u'citi', u'hill', u'revamp', u'privat', u'fund']
[u'consid', u'teacher', u'registr', u'board']
[u'acupunctur', u'reliev', u'heartburn', u'symptom']
[u'agronomist', u'warn', u'farmer', u'check', u'stripe', u'rust']
[u'reach', u'orlean']
[u'condit', u'factori', u'destroy']
[u'pollut', u'threaten', u'aborigin', u'rock']
[u'allenbi', u'stay', u'hunt']
[u'armi', u'contractor', u'fire', u'orlean']
[u'kill', u'indonesia', u'plane', u'crash']
[u'aussi', u'crest', u'wave', u'japanes', u'tour', u'event']
[u'aussi', u'wave', u'japan']
[u'aussi', u'team', u'head']
[u'basebal', u'killer', u'jail', u'year']
[u'bear', u'coach', u'prais', u'young', u'gun']
[u'beatti', u'deni', u'inquiri', u'closur', u'spar']
[u'beatti', u'seek', u'advic', u'inquiri', u'shutdown', u'appeal']
[u'breakfast', u'industri', u'discuss']
[u'moot', u'gold', u'coast', u'water', u'secur']
[u'birdsvill', u'race', u'draw', u'stronger', u'field', u'mayor', u'say']
[u'boe', u'lock', u'hinder', u'forc', u'union']
[u'bomb', u'kill', u'british', u'soldier', u'iraq']
[u'bond', u'corp', u'exec', u'didnt', u'flee', u'court', u'tell']
[u'charg', u'manslaught', u'pedestrian']
[u'brazil', u'rout', u'chile', u'secur', u'place']
[u'brogden', u'comment', u'tacki', u'abbott']
[u'bureau', u'ask', u'specif', u'rain', u'predict']
[u'burnett', u'mayor', u'confid', u'ahead', u'investig']
[u'bush', u'tap', u'robert', u'chief', u'justic']
[u'bush', u'hurrican', u'respons']
[u'busi', u'encourag', u'budget', u'fuel', u'price', u'rise']
[u'cameroon', u'final', u'stun', u'ivori', u'coast']
[u'campaign', u'west', u'coast', u'conserv', u'park', u'gain']
[u'seek']
[u'chavez', u'accept', u'apolog', u'assassin']
[u'childhood', u'diabet', u'spike', u'alarm', u'doctor']
[u'child', u'pornographi', u'case', u'gympi', u'court']
[u'children', u'beat', u'stick', u'mother', u'arrest']
[u'children', u'defin', u'famili', u'survey', u'find']
[u'clark', u'play', u'poll', u'elect', u'loom']
[u'communiti', u'influenc', u'school', u'violenc', u'respons']
[u'communiti', u'urg', u'comment', u'foreshor', u'plan']
[u'concern', u'secur', u'breach', u'ambul', u'station']
[u'confer', u'discuss', u'local', u'govern', u'amalgam']
[u'contractor', u'plead', u'guilti', u'teen', u'forklift']
[u'coonan', u'rule', u'inquiri', u'telstra', u'sale']
[u'costello', u'push', u'indonesia', u'lower', u'price']
[u'councillor', u'vow', u'fight', u'cruis', u'ship', u'termin']
[u'councillor', u'win', u'elect', u'despit', u'appeal']
[u'council', u'hear', u'flack', u'bridg', u'closur']
[u'council', u'unimpress', u'feder', u'grant', u'road', u'work']
[u'council', u'want', u'user', u'friend', u'hose', u'hour']
[u'council', u'welcom', u'night', u'safeti', u'plan', u'citi']
[u'coupl', u'move', u'brisban', u'hospit', u'burn']
[u'coupl', u'seek', u'crisi', u'help', u'network']
[u'court', u'hear', u'drug', u'properti', u'charg']
[u'crew', u'escap', u'injuri', u'orlean', u'helicopt', u'crash']
[u'criddl', u'push', u'retent', u'northampton', u'polic']
[u'crisi', u'centr', u'coordin', u'counter', u'terror']
[u'cruis', u'liner', u'free', u'hit', u'reef']
[u'csiro', u'conduct', u'lower', u'cotter', u'catchment', u'studi']
[u'benefit', u'weekend', u'rain']
[u'dead', u'babi', u'mother', u'appear', u'wit', u'trial']
[u'dive', u'bomb', u'championship', u'splash']
[u'door', u'open', u'brogden', u'debnam', u'frontbench']
[u'dope', u'alleg', u'continu', u'haunt', u'armstrong']
[u'downer', u'defend', u'staff']
[u'dozen', u'kill', u'indonesian', u'plane', u'crash']
[u'driver', u'troubl', u'rocca', u'polic', u'escort']
[u'dubbo', u'call', u'mental', u'health', u'bed']
[u'face', u'fals', u'imprison', u'charg', u'dramat']
[u'eel', u'hope', u'hindmarsh']
[u'egypt', u'prepar', u'multi', u'candid', u'poll']
[u'england', u'squad', u'fifth', u'test']
[u'evacu', u'orlean', u'continu']
[u'famili', u'dfat', u'want', u'katrina']
[u'farmer', u'suggest', u'soil', u'manag', u'activ']
[u'western', u'check', u'rain', u'effect']
[u'fatah', u'leader', u'convict', u'terror', u'charg']
[u'fear', u'fuel', u'price', u'hike', u'chariti']
[u'file', u'reveal', u'nazi', u'chocol', u'grenad', u'plan']
[u'file', u'share', u'softwar', u'break', u'copyright', u'court']
[u'meet', u'address', u'fuel', u'reduct', u'coastal']
[u'fisherman', u'hit', u'marin', u'safeti']
[u'kill', u'orlean', u'shoot']
[u'fuel', u'cost', u'hit', u'patient', u'transport']
[u'garcia', u'european', u'master', u'shoot']
[u'genet', u'improv', u'knowledg', u'spina', u'bifida']
[u'govt', u'aim', u'acceler', u'region', u'industri']
[u'govt', u'flag', u'child', u'protect', u'order', u'chang']
[u'govt', u'move', u'closer', u'telstra', u'sale']
[u'govt', u'question', u'telstra', u'oblig']
[u'govt', u'stamp', u'duti', u'increas']
[u'grass', u'fire', u'investig']
[u'greenpeac', u'prais', u'albani', u'record']
[u'grim', u'predict', u'driver']
[u'grow', u'demand', u'prompt', u'uranium']
[u'gunmen', u'attack', u'iraq', u'interior', u'ministri', u'report']
[u'hayden', u'hodg', u'impress', u'ahead', u'ash', u'final']
[u'hewitt', u'hold', u'dent', u'thriller']
[u'high', u'fuel', u'price', u'forc', u'chang', u'helicopt']
[u'high', u'tobacco', u'fuel', u'illeg', u'import']
[u'home', u'raze', u'aveng', u'muslim', u'woman', u'dishonour']
[u'hous', u'hous', u'search', u'begin', u'orlean']
[u'hrbati', u'get', u'shirti', u'open']
[u'indonesian', u'fishermen', u'fin', u'court']
[u'infrastructur', u'shortfal', u'concern', u'council']
[u'injur', u'cyclist', u'return', u'home', u'penguin']
[u'inland', u'rail', u'line', u'run', u'year']
[u'inquest', u'investig', u'soldier', u'death']
[u'intox', u'driver', u'worri', u'polic']
[u'iraq', u'lash', u'arab', u'state', u'lack', u'compass']
[u'iron', u'close', u'slater']
[u'island', u'visit', u'enlighten', u'chief', u'justic']
[u'jane', u'fonda', u'join', u'anti', u'bush', u'tour']
[u'jet', u'heart', u'draw', u'gosford']
[u'joey', u'name', u'kangaroo', u'squad']
[u'kangaroo', u'industri', u'plan', u'target', u'diet', u'industri']
[u'katrina', u'strain', u'drive', u'polic', u'suicid']
[u'kelso', u'high', u'school', u'gear', u'rock', u'challeng']
[u'beazley', u'speak', u'support', u'local']
[u'stand', u'readi', u'final']
[u'liber', u'disput', u'ombudsman', u'wait', u'list', u'find']
[u'lifeguard', u'want', u'swimmer', u'wait', u'patrol']
[u'local', u'support', u'amnesti', u'campaign']
[u'award', u'sexual', u'assault']
[u'convict', u'arson', u'assault']
[u'face', u'court', u'chase']
[u'injur']
[u'kill', u'weekend', u'road', u'smash']
[u'plead', u'guilti', u'norfolk', u'sieg']
[u'spend', u'near', u'year', u'jail']
[u'map', u'exercis', u'locat']
[u'match', u'review', u'put', u'cat', u'clear']
[u'matthew', u'hayden', u'justin', u'langer']
[u'miner', u'flag', u'renew', u'industri', u'action']
[u'moonshin', u'deni', u'london', u'bomb', u'link']
[u'morri', u'inquiri', u'evid', u'taint', u'judg']
[u'urg', u'inclus', u'uranium', u'debat']
[u'tell', u'minist', u'accept', u'commonwealth', u'road']
[u'multiplex', u'deni', u'mislead', u'sharehold']
[u'multiplex', u'know', u'financi', u'concern']
[u'napcan', u'happi', u'progress', u'overhaul', u'child']
[u'orlean', u'collect', u'dead']
[u'newspap', u'rise', u'august']
[u'tasmanian', u'senat', u'swear']
[u'train', u'timet', u'pass', u'peak', u'hour', u'test']
[u'dead', u'austrian', u'cabl', u'plung', u'polic']
[u'place', u'extrem', u'muslim', u'polit', u'parti']
[u'north', u'coast', u'deleg', u'leav', u'health', u'meet']
[u'nurs', u'consid', u'walkout']
[u'offic', u'warn', u'train', u'danger', u'inquest', u'hear']
[u'pari', u'death', u'toll', u'rise', u'fourth', u'girl', u'hold']
[u'perth', u'fear', u'life', u'superdom']
[u'pike', u'warn', u'hospit', u'privatis']
[u'accus', u'doubl', u'standard', u'abbott']
[u'apologis', u'orlean', u'respons']
[u'back', u'abbott', u'despit', u'brogden', u'joke']
[u'refus', u'sack', u'abbott', u'brogden', u'joke']
[u'regret', u'australian', u'hurrican', u'chao']
[u'polic', u'diver', u'join', u'search', u'miss']
[u'polic', u'happi', u'anti', u'hoon', u'administr']
[u'polic', u'injur', u'weekend', u'riot']
[u'polic', u'probe', u'airli', u'beach', u'bash', u'alleg']
[u'pressur', u'mount', u'resign', u'wake', u'katrina']
[u'probe', u'launch', u'rocca', u'polic', u'escort']
[u'prosecutor', u'close', u'argument', u'hook', u'case']
[u'push', u'marin', u'park', u'protect', u'fish', u'stock']
[u'putin', u'sack', u'russian', u'navi', u'chief']
[u'pyromaniac', u'come', u'scrutini', u'seminar']
[u'railway', u'bring', u'tourism', u'develop']
[u'rain', u'bring', u'relief', u'time', u'farmer']
[u'rain', u'improv', u'pastur', u'increas', u'rural']
[u'rais', u'concern', u'propos', u'recreat', u'fish']
[u'regul', u'hit', u'line', u'telstra']
[u'rescu', u'chopper', u'servic', u'worri', u'fuel', u'cost']
[u'ricciuto', u'lead', u'australian']
[u'rich', u'nation', u'moral', u'oblig', u'trade', u'barrier']
[u'roar', u'import', u'head', u'home', u'korea']
[u'launch', u'harvey', u'world', u'travel']
[u'sceptic', u'galleri', u'goer', u'slash', u'lichtenstein']
[u'schu', u'hail', u'alonso', u'successor']
[u'search', u'begin', u'miss']
[u'search', u'miss', u'fisherman', u'resum']
[u'senior', u'liber', u'deni', u'conflict', u'claim']
[u'separ', u'fire', u'dubbo', u'investig']
[u'trailer', u'steal']
[u'share', u'unaffect', u'woodsid', u'infrastructur']
[u'shark', u'victim', u'rememb', u'servic']
[u'shark', u'victim', u'tell', u'battl', u'white', u'pointer']
[u'donor', u'heed', u'hurrican', u'victim', u'help']
[u'slipper', u'float', u'toll', u'road']
[u'smith', u'famili', u'push', u'career', u'counsel']
[u'soldier', u'train', u'exercis', u'death', u'prevent']
[u'passeng', u'surviv', u'indonesian', u'crash', u'airlin']
[u'lanka', u'beat', u'bangladesh', u'wicket']
[u'stanley', u'urg', u'govt', u'children']
[u'state', u'urg', u'uranium', u'mine']
[u'student', u'initi', u'aim', u'boost', u'school', u'retent']
[u'student', u'mourn', u'drown', u'friend']
[u'support', u'parti', u'leader', u'drop', u'elect', u'loom']
[u'support', u'group', u'urg', u'beatti', u'appeal', u'inquiri']
[u'suspect', u'milit', u'kill', u'saudi', u'arabia', u'clash']
[u'telstra', u'profit', u'warn', u'drag', u'market']
[u'telstra', u'see', u'share', u'plummet']
[u'telstra', u'share', u'plung', u'profit', u'warn']
[u'thousand', u'dead', u'india', u'enceph', u'outbreak']
[u'teen', u'hold', u'latest', u'dead', u'pari', u'blaze']
[u'timet', u'herald', u'slower', u'safer', u'train', u'cityrail']
[u'town', u'upgrad', u'final']
[u'trujillo', u'accus', u'deliber', u'devalu', u'telstra']
[u'tuna', u'farmer', u'dismiss', u'link', u'shark', u'attack']
[u'turner', u'fight', u'temerair', u'vote', u'best']
[u'dead', u'crash']
[u'kill', u'crash']
[u'typhoon', u'pois', u'japan', u'south', u'korea']
[u'unflapp', u'goosen', u'blitz', u'china', u'field']
[u'union', u'continu', u'lobbi', u'stop', u'chang']
[u'hold', u'graduat', u'ceremoni', u'china', u'great']
[u'unmark', u'grave', u'disturb', u'cemeteri']
[u'upbeat', u'william', u'talk', u'crow']
[u'uruguay', u'socceroo', u'sight']
[u'offici', u'katrina', u'death', u'toll']
[u'util', u'target', u'busi', u'water']
[u'venus', u'win', u'battl', u'williams']
[u'vermeulen', u'close', u'corser']
[u'violenc', u'orlean']
[u'volunt', u'govt', u'fund', u'littl', u'tern', u'program']
[u'furnitur', u'industri', u'battl', u'vietnames', u'assembl']
[u'warm', u'weather', u'aid', u'flight', u'bumbl', u'be']
[u'energi', u'industri', u'showcas', u'offshor']
[u'webb', u'moimoi', u'face', u'suspens', u'final']
[u'woman', u'die', u'tasman', u'highway', u'crash']
[u'women', u'heart', u'risk', u'underestim']
[u'work', u'begin', u'hospit', u'upgrad']
[u'yuvraj', u'lift', u'india', u'wicket', u'victori']
[u'kill', u'afghan', u'clash']
[u'kill', u'typhoon', u'hit', u'japan']
[u'chief', u'head', u'channel']
[u'abus', u'alleg', u'princip', u'uphold']
[u'accc', u'dismiss', u'petrol', u'profit', u'claim']
[u'leader', u'start', u'plan', u'birthday', u'bash']
[u'advis', u'confid', u'compani', u'qualifi']
[u'agassi', u'davenport', u'reach']
[u'agforc', u'invit', u'blueprint', u'input']
[u'agshow', u'promis']
[u'ainsli', u'shop', u'centr', u'control']
[u'ambul', u'offic', u'work', u'ban']
[u'american', u'delight', u'agassi', u'blake', u'ginepri', u'reach']
[u'armstrong', u'marri', u'sheryl', u'crow']
[u'arroyo', u'surviv', u'impeach', u'attempt']
[u'ash', u'seri', u'best', u'langer', u'career']
[u'asylum', u'seeker', u'deport', u'breach', u'convent']
[u'aussi', u'draft', u'clark', u'cover', u'mcgrath']
[u'aust', u'famili', u'launch', u'search', u'houston']
[u'australia', u'lobbi', u'world']
[u'barcoo', u'face', u'rate', u'hike', u'budget']
[u'beazley', u'warn', u'telstra', u'sale']
[u'bendigo', u'group', u'trader', u'voic']
[u'brown', u'end', u'year', u'titl', u'drought']
[u'bundaberg', u'evid', u'review', u'virtual', u'inquiri']
[u'busi', u'activ', u'year']
[u'cabl', u'compani', u'fin', u'toxic', u'spill']
[u'better', u'monitor', u'mental', u'health']
[u'cassini', u'saturn', u'data', u'stun', u'scientist']
[u'cassisi', u'accept', u'fine', u'umpir', u'bump']
[u'caus', u'fatal', u'crash', u'unknown']
[u'centrelink', u'chang', u'improv', u'servic', u'govt']
[u'chernobyl', u'death', u'toll', u'expect']
[u'children', u'head', u'call', u'graphic', u'imag', u'limit']
[u'citrus', u'grower', u'feel', u'hurrican', u'impact']
[u'clean', u'tank']
[u'club', u'face', u'poki']
[u'commiss', u'welcom', u'investig']
[u'communiti', u'continu', u'push', u'sniffabl', u'fuel']
[u'compani', u'give', u'green', u'light', u'extend', u'power', u'station']
[u'concern', u'pollut', u'tyre', u'busi']
[u'consul', u'orlean', u'search', u'yield', u'result']
[u'cooper', u'director', u'cold', u'brewer']
[u'costello', u'announc', u'boost', u'aceh']
[u'costello', u'visit', u'aceh']
[u'cotton', u'grower', u'hold', u'better', u'price']
[u'council', u'admit', u'defeat', u'wind', u'turbin', u'fight']
[u'council', u'committe', u'push', u'batteri', u'point', u'heritag']
[u'council', u'reject', u'teralba', u'subdivis']
[u'council', u'telstra', u'cash', u'highway', u'upgrad']
[u'council', u'complain', u'minist', u'bridg']
[u'court', u'tell', u'murder', u'order']
[u'court', u'tripl', u'compani', u'fine', u'worker', u'death']
[u'crop', u'duster', u'spray', u'hit', u'group', u'aborigin']
[u'crop', u'dust', u'pilot', u'face', u'charg']
[u'crop', u'outlook', u'predict', u'better', u'time', u'farmer']
[u'crow', u'refus', u'surrend']
[u'crustacean', u'trap', u'permit', u'approv']
[u'reject', u'pont', u'critic']
[u'dept', u'reject', u'call', u'shark', u'cull']
[u'diver', u'search', u'murray', u'miss', u'teen']
[u'doctor', u'welcom', u'prevent', u'heart', u'diseas']
[u'dont', u'chang', u'thing', u'thompson', u'tell', u'king']
[u'dope', u'chief', u'back', u'french', u'armstrong', u'affair']
[u'dragon', u'shrug', u'weight', u'expect']
[u'egyptian', u'theatr', u'kill']
[u'engin', u'start', u'drain', u'orlean']
[u'england', u'paceman', u'jone', u'ash', u'decid']
[u'european', u'trade', u'subdu', u'market', u'close']
[u'worker', u'reject', u'compens', u'offer']
[u'farmer', u'angri', u'anti', u'terror', u'rule', u'fertilis']
[u'farmer', u'develop', u'urg', u'soil', u'eros']
[u'farmer', u'manag', u'debt', u'despit', u'drought']
[u'farmer', u'urg', u'assist', u'packag']
[u'father', u'drown', u'boy', u'releas', u'charg']
[u'fine', u'evad', u'target', u'sheriff', u'campaign']
[u'cat', u'readi', u'swan']
[u'footbal', u'club', u'help', u'drown', u'boy', u'famili']
[u'homicid', u'squad', u'detect', u'appoint', u'chifley']
[u'foul', u'play', u'unlik', u'medan', u'crash']
[u'free', u'properti', u'sell']
[u'galleri', u'turn', u'offer', u'kandinski']
[u'gaza', u'hous', u'explos', u'kill', u'wound']
[u'global', u'warm', u'effect', u'see', u'north']
[u'govt', u'follow', u'proper', u'process', u'deport', u'case']
[u'govt', u'tie', u'telstra', u'share', u'price', u'minchin']
[u'govt', u'pressur', u'identifi', u'taint', u'canola']
[u'govt', u'enforc', u'anti', u'smoke', u'law']
[u'govt', u'special', u'need', u'class']
[u'govt', u'urg', u'prevent', u'weed', u'outbreak']
[u'grain', u'farmer', u'want', u'biofuel', u'product', u'govt']
[u'great', u'lake', u'manag', u'seek', u'legal', u'advic']
[u'grenad', u'cotteslo', u'risk']
[u'griffith', u'land', u'council', u'investig']
[u'health', u'provid', u'fin', u'psychiatr', u'hospit']
[u'health', u'servic', u'test', u'ahead', u'popul', u'growth']
[u'hewitt', u'play', u'place']
[u'hiddink', u'unhappi', u'sloppi', u'socceroo']
[u'high', u'water', u'level', u'lead', u'quiet', u'trout', u'season', u'kick']
[u'highway', u'land', u'plane', u'short', u'fuel']
[u'home', u'loan', u'healthi', u'level']
[u'homicid', u'squad', u'question', u'father', u'drown', u'boy']
[u'honour', u'citizen', u'plead', u'guilti', u'attack', u'woman']
[u'hook', u'friend', u'collud', u'trial', u'court', u'hear']
[u'immigr', u'deport', u'return', u'asylum', u'seeker']
[u'india', u'set', u'condit', u'kashmir', u'troop', u'cut']
[u'indigen', u'australian', u'fuel', u'plea', u'canberra']
[u'indigen', u'obes', u'program', u'extend']
[u'indonesian', u'plane', u'crash', u'toll', u'hit']
[u'industri', u'action', u'privat', u'prison']
[u'iraq', u'charter', u'head', u'printer', u'unchang']
[u'israel', u'plan', u'expans', u'west', u'bank', u'settlement']
[u'come']
[u'itali', u'detain', u'australian', u'cocain', u'smuggl']
[u'servic', u'nearer', u'ravensthorp']
[u'jone', u'face', u'fit', u'test']
[u'joyc', u'want', u'teeth', u'telstra', u'regul']
[u'katrina', u'aftermath']
[u'katrina', u'survivor', u'critic', u'aust', u'govt', u'respons']
[u'katter', u'resist', u'joyc', u'advanc']
[u'kazaa', u'rule', u'spur', u'industri', u'song', u'swap', u'fight']
[u'kogan', u'creek', u'view', u'platform', u'offici', u'open', u'today']
[u'label', u'law', u'need', u'process', u'food']
[u'latest', u'inquest', u'leski', u'death', u'end']
[u'aim', u'prevent', u'sheep', u'fee', u'contamin']
[u'recal', u'wash', u'machin', u'dishwash']
[u'lockyer', u'bronco']
[u'sentenc', u'year', u'babi', u'manslaught']
[u'sob', u'court', u'admit', u'kill', u'babi']
[u'martian', u'dun', u'hold']
[u'matern', u'servic', u'cutback', u'huge', u'cost', u'rural']
[u'mayor', u'promis', u'gold', u'coast', u'cooper', u'water']
[u'medan', u'crash', u'survivor', u'tell', u'final', u'moment']
[u'minist', u'play', u'psych', u'unit', u'escap']
[u'mobil', u'deni', u'profit', u'alleg']
[u'mobil', u'morgu', u'orlean']
[u'liberian', u'schoolgirl', u'trade']
[u'extrem', u'view', u'question', u'hockey']
[u'mundin', u'confid', u'weigh', u'okay']
[u'neighbour', u'rescu', u'elder', u'aust', u'hurrican']
[u'orlean', u'polic', u'chief', u'laud', u'offic']
[u'contamin', u'canola']
[u'sight', u'high', u'petrol', u'price']
[u'word', u'victorian', u'orlean']
[u'polic', u'defend', u'hoax', u'investig']
[u'nurs', u'return', u'kimberley', u'assault']
[u'nurs', u'home', u'oper', u'hope', u'wage', u'offer']
[u'kenobi', u'cloak', u'fanci', u'dress', u'shop']
[u'oyster', u'grower', u'want', u'fund', u'review']
[u'oyster', u'region', u'forum', u'octob']
[u'pakistan', u'readi', u'australia', u'seri']
[u'park', u'mayor', u'seek', u'term']
[u'peac', u'tapestri', u'arriv', u'year', u'late']
[u'pierc', u'turn', u'tabl', u'henin', u'hardenn']
[u'outrag', u'telstra', u'comment']
[u'polic', u'attack', u'ireland', u'raid']
[u'polic', u'break', u'brawl']
[u'polic', u'probe', u'death', u'young', u'boy', u'melbourn']
[u'polic', u'road', u'sign', u'fatal', u'crash']
[u'port', u'bodi', u'prais', u'coal', u'berth', u'decis']
[u'prima', u'faci', u'evid', u'deputi', u'mayor']
[u'prison', u'offic', u'fear', u'return', u'jail', u'overcrowd']
[u'psychiatrist', u'face', u'year']
[u'psychiatrist', u'appeal', u'deregistr']
[u'abl', u'meet', u'hurrican', u'claim']
[u'racehors', u'map', u'guid', u'buyer']
[u'raikkonen', u'hop', u'alonso', u'blunder']
[u'ralph', u'project', u'demis', u'catastroph']
[u'report', u'whitewash', u'chernobyl', u'impact', u'greenpeac']
[u'research', u'hope', u'find', u'miss', u'peke']
[u'resid', u'fear', u'collieri', u'subdivis', u'risk']
[u'resourc', u'boom', u'leav', u'pastoralist', u'short', u'staff']
[u'retir', u'judg', u'overse', u'collaps', u'morri', u'inquiri']
[u'ricketson', u'lead', u'xiii']
[u'rixon', u'predict', u'oval', u'pitch', u'produc', u'result']
[u'rockhampton', u'woman', u'orlean', u'ordeal']
[u'rychart', u'win', u'honour']
[u'lone', u'teacher', u'plead', u'guilti']
[u'king', u'concern', u'rais', u'superior', u'inquest']
[u'king', u'crash', u'inquiri', u'begin']
[u'king', u'inquiri', u'find', u'mainten', u'fault']
[u'search', u'continu', u'miss']
[u'keep', u'busi', u'strong', u'wind', u'lash', u'perth']
[u'korea', u'troop', u'iraq']
[u'socceroo', u'sweat', u'world', u'draw']
[u'socceroo', u'world', u'play', u'off']
[u'soldier', u'heat', u'relat', u'death', u'avoid']
[u'solomon', u'confid', u'troubl', u'free', u'qualifi']
[u'south', u'coast', u'fish', u'limit', u'halv']
[u'south', u'west', u'prepar', u'storm']
[u'spring', u'bloom', u'spectacular', u'centr']
[u'storm', u'aftermath', u'danger', u'gippsland', u'road']
[u'stress', u'fractur', u'saint', u'fisher', u'season']
[u'strong', u'wind', u'damag', u'resort', u'south', u'west']
[u'studi', u'investig', u'bushfir', u'recoveri', u'process']
[u'submiss', u'wrap', u'hook', u'case']
[u'sulphur', u'emiss', u'investig', u'ill']
[u'superman', u'boost', u'gold', u'coast', u'economi']
[u'surf', u'life', u'save', u'program', u'defend', u'despit']
[u'system', u'failur', u'armi', u'train', u'protocol']
[u'debat', u'undermin', u'costello', u'labor']
[u'teenag', u'die', u'quad', u'bike', u'accid']
[u'telescop', u'function', u'despit', u'pullout']
[u'telstra', u'deni', u'breach']
[u'telstra', u'fail', u'stop', u'market', u'rise']
[u'telstra', u'feud', u'continu']
[u'telstra', u'refer', u'coverag', u'problem', u'watchdog']
[u'telstra', u'sale', u'doubt']
[u'telstra', u'sale', u'fund', u'indigen', u'program']
[u'thai', u'boat', u'fish', u'illeg', u'govt']
[u'thailand', u'aust', u'tsunami', u'victim']
[u'thousand', u'sign', u'anti', u'whale', u'petit']
[u'thurston', u'edg', u'john', u'dalli', u'race']
[u'tibet', u'council', u'object', u'chines', u'deleg', u'visit']
[u'treasuri', u'examin', u'turnbul', u'propos']
[u'umbakumba', u'school', u'incid']
[u'deni', u'colleg']
[u'union', u'launch', u'campaign', u'govt', u'health']
[u'union', u'seek', u'opposit', u'public', u'sector', u'job', u'assur']
[u'vanston', u'order', u'clark', u'legal', u'cost']
[u'farmer', u'confid', u'despit', u'rain']
[u'warn', u'prepar', u'final', u'curtain']
[u'wash', u'away', u'haul', u'river']
[u'watchdog', u'probe', u'telstra', u'profit', u'warn']
[u'water', u'compani', u'begin', u'sydney', u'access']
[u'webb', u'bid', u'season', u'aliv']
[u'wellington', u'choos', u'develop', u'tour']
[u'bush']
[u'whale', u'station', u'get', u'heritag', u'status']
[u'wit', u'admit', u'lie', u'royal', u'commiss']
[u'young', u'rep', u'visit', u'kempsey', u'jail']
[u'alloc', u'region', u'fight', u'salin']
[u'call', u'govt', u'promot', u'conserv']
[u'action', u'take', u'noisi', u'truck', u'stop']
[u'adelaid', u'count', u'showdown', u'semi']
[u'allianc', u'lobbi', u'marin', u'life']
[u'alloc', u'murray', u'valley', u'irrig', u'lift']
[u'analyst', u'predict', u'rat', u'stay', u'strong']
[u'andrew', u'defend', u'build', u'industri', u'control']
[u'angler', u'warn', u'measur', u'protect', u'spawn']
[u'angri', u'armstrong', u'consid', u'return', u'race']
[u'anti', u'depress', u'warn', u'issu', u'pregnant', u'women']
[u'arm', u'robber', u'sentenc', u'year', u'jail']
[u'armi', u'take', u'step', u'combat', u'heat', u'ill']
[u'astl', u'lead', u'final', u'victori', u'india']
[u'attitud', u'chang', u'need', u'rehabilit', u'judg']
[u'aust', u'cameraman', u'orlean']
[u'australia', u'safe', u'tourist', u'destin', u'survey']
[u'australian', u'hold', u'itali', u'drug', u'haul']
[u'australian', u'tell', u'orlean', u'devast']
[u'australian', u'workplac', u'agreement', u'adjourn']
[u'bank', u'miner', u'lead', u'market', u'higher']
[u'beatti', u'defend', u'bundaberg', u'inquiri', u'backflip']
[u'beatti', u'urg', u'clarifi', u'term', u'refer']
[u'gun', u'join', u'club', u'countri', u'court', u'action']
[u'tonnag', u'woodchip', u'predict', u'esper']
[u'bronco', u'accus', u'grappl', u'tackl', u'paranoia']
[u'bush', u'remain', u'sceptic', u'telstra', u'sale', u'guarante']
[u'bush', u'lead', u'inquiri']
[u'businesswoman', u'thief', u'addict', u'gambl', u'court', u'tell']
[u'butler', u'accus', u'stifl', u'poverti', u'reduct']
[u'cancer', u'fund', u'work', u'patient', u'transport']
[u'canowindra', u'farmer', u'donat', u'land', u'station']
[u'cashcard', u'retail', u'activ']
[u'children', u'hospit', u'remain', u'parkvill']
[u'china', u'death', u'toll', u'typhoon', u'talim', u'jump']
[u'chines', u'citi', u'ban', u'bald', u'shaggi', u'cabbi']
[u'citrus', u'canker', u'outbreak', u'impact', u'resid']
[u'claim', u'copyright', u'barramundi', u'fail']
[u'senat', u'unconvinc', u'petrol', u'sniff']
[u'coalit', u'tell', u'clean', u'mess', u'decid']
[u'command', u'tell', u'pride', u'king', u'crew']
[u'communiti', u'urg', u'respons']
[u'communiti', u'asham', u'school', u'violenc', u'incid', u'say']
[u'communiti', u'unsur', u'desalin', u'plant', u'propos']
[u'concern', u'tonga', u'struggl', u'fund', u'rise']
[u'speak', u'threaten', u'speci']
[u'costello', u'fear', u'hurrican', u'caus', u'iraq', u'fallout']
[u'costello', u'look', u'export', u'growth']
[u'costello', u'meet', u'indonesian', u'leader']
[u'costello', u'remain', u'tight', u'lip', u'leadership']
[u'cotton', u'bale', u'expect', u'smoulder', u'day']
[u'cotton', u'bale', u'destroy', u'gippsland']
[u'council', u'announc', u'tender', u'shepparton']
[u'cousin', u'focus', u'win', u'flag']
[u'cowboy', u'defenc', u'good', u'say', u'captain']
[u'cowboy', u'defenc', u'good', u'say', u'norton']
[u'crack', u'secret', u'life', u'spaghetti']
[u'crash', u'indonesia', u'fuel', u'problem']
[u'credit', u'card', u'trace', u'fail', u'turn', u'miss']
[u'critic', u'injur', u'teenag', u'lie']
[u'darwin', u'teen', u'appeal', u'murder', u'sentenc']
[u'deep', u'impact', u'expos', u'fragil', u'comet']
[u'demon', u'swap', u'tassi', u'gold', u'coast']
[u'derbi', u'win', u'gold', u'coast', u'gallop', u'return', u'home']
[u'doctor', u'grasp', u'english', u'question', u'coroni']
[u'dont', u'blame', u'lose', u'ash', u'say', u'pont']
[u'driver', u'die', u'semi', u'trailer', u'catch']
[u'drug', u'alcohol', u'blame', u'resort', u'misbehaviour']
[u'eagl', u'forward', u'say', u'worsfold']
[u'defend', u'sale', u'grand', u'final', u'ticket']
[u'econom', u'growth', u'bounc']
[u'elder', u'expat', u'tell', u'hurrican', u'horror']
[u'elder', u'confid', u'petrol', u'sniff', u'inquiri']
[u'electr', u'leav', u'video', u'product', u'hous']
[u'urg', u'farmer', u'dump', u'dead', u'anim']
[u'famili', u'reunit']
[u'farm', u'debt', u'level', u'increas']
[u'farmsaf', u'emphasis', u'need', u'care', u'atv']
[u'join', u'hunt', u'miss', u'australian']
[u'fear', u'fuel', u'cost', u'forc', u'countri', u'driver']
[u'fear', u'smoke', u'free', u'venu', u'cost', u'job']
[u'feder', u'hewitt', u'close', u'open', u'rematch']
[u'finnish', u'public', u'broadcast', u'strike']
[u'bond', u'exec', u'oat', u'custodi']
[u'green', u'fear', u'rock']
[u'mayor', u'consid', u'repres', u'bendigo', u'east']
[u'russian', u'leader', u'yeltsin', u'break']
[u'secur', u'chief', u'shoot', u'dead', u'gaza', u'strip']
[u'boat', u'catch', u'suspicion', u'illeg', u'fish']
[u'fuel', u'cost', u'threaten', u'swap', u'meet']
[u'hous', u'expect', u'elect', u'protest', u'meet']
[u'futur', u'food', u'label', u'law', u'decid', u'soon']
[u'giant', u'jellyfish', u'creation', u'take', u'souvenir']
[u'gilligan', u'actor', u'denver', u'die']
[u'gilligan', u'go']
[u'govt', u'dismiss', u'scar', u'gawler', u'matern']
[u'govt', u'drag', u'feet', u'solon', u'case', u'support']
[u'govt', u'powerless', u'eas', u'petrol', u'pain', u'say']
[u'govt', u'foreign', u'telstra', u'board']
[u'grass', u'hail', u'sourc', u'clean', u'energi']
[u'grazier', u'bear', u'brunt', u'higher', u'fuel', u'price']
[u'group', u'hit', u'refug', u'closur', u'critic']
[u'grower', u'tenterhook', u'foster', u'contract']
[u'hand', u'gel', u'help', u'famili', u'fight', u'stomach', u'ill']
[u'hec', u'doubl', u'year', u'opposit', u'say']
[u'hewitt', u'feder', u'open']
[u'hewitt', u'win', u'place']
[u'hillari', u'clinton', u'reject', u'bush', u'probe', u'katrina']
[u'holden', u'redund', u'demand']
[u'horticultur', u'develop', u'aborigin', u'land']
[u'hospit', u'say', u'treatment', u'wait', u'time', u'safe']
[u'hurrican', u'victim', u'better', u'texa', u'barbara', u'bush']
[u'indian', u'death', u'toll', u'enceph', u'pass']
[u'industri', u'watch', u'lettuc', u'leaf', u'blight']
[u'inquiri', u'review', u'region', u'transport', u'effici']
[u'investor', u'truth', u'telstra']
[u'iraq', u'presid', u'say', u'saddam', u'hang', u'time']
[u'jackson', u'write', u'singl', u'katrina', u'victim']
[u'jail', u'term', u'follow', u'child', u'porn', u'parliament']
[u'king', u'white', u'clash', u'freak', u'footi', u'say', u'sanderson']
[u'knee', u'problem', u'sidelin', u'hodg']
[u'labor', u'appli', u'heat', u'asic', u'open', u'telstra', u'probe']
[u'labor', u'turn', u'telstra', u'heat']
[u'legal', u'help', u'itali', u'charg', u'drug']
[u'lesli', u'deni', u'wear', u'burqa', u'favour']
[u'liber', u'urg', u'ethanol', u'blend', u'fuel']
[u'local', u'author', u'welcom', u'govt', u'support', u'fight']
[u'lockyer', u'confid', u'grappl', u'tackl', u'polic']
[u'clear', u'sieg', u'charg']
[u'mayor', u'appoint', u'develop', u'commiss', u'board', u'chief']
[u'mayor', u'order', u'forc', u'evacu', u'orlean']
[u'mayor', u'return', u'term', u'offic']
[u'mayor', u'wont', u'specul', u'road', u'signag', u'review']
[u'mcgrath', u'mend', u'jone']
[u'medicar', u'offer', u'exercis', u'rebat']
[u'miner', u'export', u'profit', u'soar']
[u'minist', u'move', u'protect', u'calv', u'whale']
[u'minist', u'order', u'piti', u'palestinian']
[u'minist', u'warn', u'aust', u'veget']
[u'mitsubishi', u'motor', u'seek', u'challeng']
[u'moimoi', u'suspend', u'match']
[u'mother', u'dead', u'boy', u'commit', u'institut']
[u'mother', u'desper', u'letterbox', u'plea', u'kidney']
[u'mother', u'polic', u'guard', u'boy', u'death']
[u'move', u'great', u'lake', u'council', u'infight']
[u'nation', u'galleri', u'accus', u'oper', u'secreci']
[u'nation', u'speak', u'telstra', u'sale']
[u'nation', u'want', u'revenu', u'petrol', u'price']
[u'nation', u'welcom', u'hazelwood', u'expans']
[u'nelson', u'deni', u'hec', u'fee', u'creat', u'overwhelm', u'debt']
[u'netbal', u'member']
[u'barley', u'varieti', u'unveil', u'agshow']
[u'zealand', u'rule', u'coalit', u'major']
[u'residenti', u'develop', u'foreshor', u'minist']
[u'notori', u'highway', u'stretch', u'claim', u'life']
[u'liber', u'deni', u'extremist', u'agenda']
[u'nurs', u'merci', u'health', u'come', u'truce']
[u'nurs', u'employ', u'reach', u'agreement']
[u'offici', u'punish', u'player', u'drunken']
[u'food', u'report', u'call', u'shake']
[u'olex', u'face', u'fine', u'pollut']
[u'opposit', u'want', u'govt', u'stop', u'yanga', u'station']
[u'outback', u'busi', u'lament', u'petrol', u'price']
[u'pakistani', u'presid', u'meet', u'kashmiri', u'separatist']
[u'palestinian', u'shoot', u'dead', u'near', u'gaza', u'settlement']
[u'histor', u'macquari', u'hous', u'mark']
[u'perth', u'petrol', u'price', u'reach', u'high']
[u'deni', u'cover', u'state', u'telstra']
[u'stand', u'telstra', u'manag', u'rebuk']
[u'polic', u'downplay', u'pilot', u'stunt']
[u'polic', u'investig', u'substat', u'tamper']
[u'polic', u'prepar', u'report', u'coron', u'girl', u'death']
[u'polic', u'reopen', u'highway', u'lane', u'fatal', u'crash']
[u'polic', u'seek', u'test', u'boy', u'death']
[u'polic', u'sampl', u'mother']
[u'poll', u'open', u'egypt', u'elect']
[u'premier', u'insist', u'cruis', u'ship', u'berth', u'benefit']
[u'presid', u'favour', u'egypt', u'go', u'poll']
[u'pressur', u'australia', u'say', u'warn']
[u'racehors', u'trainer', u'rail', u'track', u'flood']
[u'rat', u'stay']
[u'reef', u'industri', u'worth', u'aust', u'economi']
[u'research', u'institut', u'expand']
[u'govt', u'defend', u'secur', u'spend']
[u'senior', u'offic', u'spearhead', u'polic', u'review']
[u'sharehold', u'match', u'takeov', u'price', u'cooper']
[u'shire', u'unconvinc', u'aquif', u'tap', u'plan']
[u'skidoo', u'boost', u'snowi', u'rescu', u'servic']
[u'sleep', u'depriv', u'doctor', u'drink']
[u'sloppi', u'socceroo', u'fail', u'impress', u'hiddink']
[u'studi', u'find', u'infrastructur', u'need', u'attent']
[u'sulphur', u'dioxid', u'emiss', u'investig']
[u'sunraysia', u'grower', u'face', u'challeng', u'time', u'counsellor']
[u'surf', u'subject', u'school', u'rule']
[u'sven', u'confess', u'doubt', u'owen', u'match', u'fit']
[u'swan', u'look', u'forward']
[u'tamworth', u'residenti', u'develop', u'plan', u'unveil']
[u'tasmania', u'mourn', u'loss', u'elder', u'aunti', u'alma']
[u'teen', u'charg', u'hospit', u'park', u'stab']
[u'telstra', u'legisl', u'introduc']
[u'telstra', u'sale', u'go', u'parliament']
[u'terror', u'focus', u'hurrican', u'respons', u'minist']
[u'toowoomba', u'flower', u'carniv', u'bloom']
[u'seed', u'sharapova', u'meet', u'clijster', u'open']
[u'tough', u'season', u'face', u'mango', u'grower']
[u'tradit', u'landown', u'agre', u'subdivis']
[u'trujillo', u'approach', u'surpris', u'regul']
[u'famili', u'homeless', u'blaze']
[u'union', u'talk', u'beef', u'processor']
[u'union', u'join', u'push', u'kimberley', u'school']
[u'union', u'campaign', u'west', u'chang']
[u'union', u'seek', u'explan', u'detaine', u'work', u'claim']
[u'report', u'urg', u'global', u'chang', u'stem', u'poverti']
[u'uranium', u'mine', u'expect']
[u'blame', u'stifl', u'poverti', u'reduct']
[u'deal', u'iraq', u'hurrican', u'aftermath']
[u'offici', u'struggl', u'cope', u'corps']
[u'say', u'hundr', u'foreign', u'miss']
[u'dissect', u'katrina', u'respons']
[u'see', u'liberationist', u'disrupt', u'sheep']
[u'victorian', u'trace', u'baton', u'roug', u'motel']
[u'brace', u'wild', u'weather']
[u'govt', u'commit', u'irrig', u'review', u'question']
[u'govt', u'want', u'tougher', u'test', u'import', u'seed']
[u'wall', u'street', u'gain', u'long', u'weekend']
[u'water', u'cost', u'predict', u'rise', u'despit', u'nation']
[u'water', u'level', u'drop', u'orlean']
[u'weapon', u'seiz', u'confront', u'famili']
[u'winemak', u'view', u'expans', u'long', u'term', u'invest']
[u'wit', u'tell', u'cooper', u'trial', u'bribe']
[u'word', u'test', u'provid', u'alzheim', u'clue']
[u'workplac', u'studi', u'find', u'young', u'worker', u'exploit']
[u'work', u'begin', u'denison', u'canal', u'dredg']
[u'abattoir', u'worker', u'lose', u'job']
[u'abba', u'cancel', u'visit', u'ahead', u'gaza', u'pullout']
[u'accc', u'confid', u'fuel', u'price', u'fall']
[u'govt', u'urg', u'limit', u'develop', u'propos']
[u'administr', u'appoint', u'perth', u'meat', u'export']
[u'afghan', u'woman', u'elect', u'trail', u'escap']
[u'agassi', u'complet', u'stun', u'fight', u'beat', u'blake']
[u'appeal', u'wooli', u'bottl', u'shop', u'licenc']
[u'question', u'vail', u'telstra', u'disclosur']
[u'armstrong', u'train', u'discoveri', u'team', u'decemb']
[u'astronom', u'assess', u'comet', u'threat']
[u'drop', u'resourc', u'lose', u'grind']
[u'asylum', u'seeker', u'famili', u'grant', u'perman', u'resid']
[u'windfal', u'expos', u'legal', u'grey', u'area']
[u'australia', u'prepar', u'ash', u'final']
[u'author', u'donald', u'horn', u'die']
[u'azaria', u'chamberlain', u'dress', u'display']
[u'beatti', u'back', u'push', u'nation', u'health', u'inquiri']
[u'bennett', u'posit', u'johnss', u'warrington', u'stint']
[u'die', u'enter', u'burn', u'home']
[u'kill', u'hous']
[u'brogden', u'reassur', u'parti', u'support']
[u'bronwyn', u'bishop', u'blame', u'rumour', u'leak']
[u'foster', u'carer', u'exempt', u'welfar']
[u'church', u'pressur', u'council', u'sale', u'heritag']
[u'cleric', u'direct', u'muslim', u'leav']
[u'coastal', u'polici', u'hop', u'help', u'local', u'plan']
[u'colli', u'cotton', u'gin', u'sell']
[u'comment', u'seek', u'abalon', u'futur', u'plan']
[u'council', u'ask', u'help', u'fight', u'firewe']
[u'council', u'hear', u'remot', u'communiti', u'water', u'concern']
[u'councillor', u'want', u'ymca', u'help', u'council', u'loan']
[u'council', u'board', u'review', u'streamlin', u'exercis', u'clark']
[u'council', u'board', u'review', u'streamlin', u'exercis']
[u'council', u'govt', u'overhaul', u'western', u'transport', u'rout']
[u'council', u'interview', u'applic']
[u'court', u'disrupt', u'slow', u'aussi', u'releas']
[u'cowboy', u'readi', u'face', u'tiger']
[u'credit', u'union', u'member', u'support', u'strengthen', u'measur']
[u'crouch', u'urg', u'swan', u'fan']
[u'crow', u'port', u'semi', u'final', u'sell']
[u'crow', u'port', u'struggl', u'showdown', u'semi']
[u'darwin', u'resid', u'cash', u'malfunct']
[u'daughter', u'jail', u'parent', u'murder']
[u'dementieva', u'upset', u'davenport', u'reach', u'open', u'semi']
[u'doctor', u'sleep', u'mass', u'resign', u'decis']
[u'donald', u'horn', u'die']
[u'down', u'school', u'band', u'carniv', u'build']
[u'appear', u'fund', u'boost']
[u'draft', u'coastal', u'polici', u'draw', u'mix', u'respons']
[u'driver', u'switch', u'petrol', u'price', u'soar']
[u'ecstasi', u'user', u'prone', u'diseas']
[u'emerg', u'servic', u'recognis', u'effort']
[u'england', u'bright', u'start']
[u'england', u'pick', u'collingwood', u'ash', u'decid']
[u'england', u'stun', u'belfast', u'franc', u'ireland']
[u'england', u'suffer', u'humili', u'belfast']
[u'epilepsi', u'patient', u'prone', u'bipolar', u'disord']
[u'export', u'start', u'feel', u'pinch', u'high', u'fuel']
[u'fall', u'price', u'boost', u'market']
[u'famili', u'donat', u'rare', u'chines', u'artwork']
[u'famili', u'elat', u'aussi']
[u'farmer', u'scrutinis', u'telstra', u'sale']
[u'fatal', u'increas', u'south', u'coast', u'crash']
[u'fatigu', u'factor', u'miner', u'road', u'crash', u'studi']
[u'fear', u'govt', u'indigen', u'health', u'bodi']
[u'feder', u'minist', u'applaud', u'stanc', u'uranium']
[u'fiji', u'electr', u'worker', u'stage', u'strike']
[u'damag', u'onesteel', u'coke', u'plant']
[u'forens', u'show', u'help', u'crimin', u'studi']
[u'deputi', u'polic', u'chief', u'win', u'high', u'court']
[u'energex', u'chairman', u'stand', u'trial']
[u'health', u'inquiri', u'chief', u'take', u'part', u'swipe']
[u'decid', u'reviv', u'career']
[u'foster', u'sell', u'second', u'wine', u'subsidiari']
[u'fourth', u'person', u'charg', u'servic', u'station', u'robberi']
[u'fresh', u'lockyer', u'threat', u'say', u'bellami']
[u'fuel', u'price', u'stay', u'high', u'economist', u'say']
[u'fuel', u'watchdog', u'moot', u'boycott', u'respons', u'high', u'price']
[u'fund', u'reject', u'trash', u'fee', u'project']
[u'convers', u'car', u'rise']
[u'geelong', u'play', u'chapman', u'enright']
[u'gehrig', u'undecid', u'retir']
[u'genet', u'divers', u'concern', u'thoroughbr', u'industri']
[u'german', u'thief', u'catch', u'onlin', u'sale', u'victim']
[u'goat', u'meat', u'export', u'expand']
[u'govt', u'announc', u'help', u'abattoir', u'worker']
[u'govt', u'approv', u'cattl', u'transact', u'levi', u'increas']
[u'govt', u'drag', u'chain', u'militari', u'justic']
[u'govt', u'expedit', u'pluto', u'field', u'develop']
[u'govt', u'telstra', u'problem', u'opposit']
[u'govt', u'hope', u'retain', u'doctor', u'deal']
[u'govt', u'decis', u'roma', u'colleg', u'anger', u'local']
[u'govt', u'urg', u'push', u'biofuel', u'industri', u'eas']
[u'govt', u'consid', u'cloth', u'free', u'beach']
[u'govt', u'urg', u'fund', u'senior', u'legal', u'servic']
[u'drain', u'extend', u'wait', u'time']
[u'group', u'consid', u'class', u'action', u'swansea', u'bridg']
[u'group', u'warn', u'mass', u'shortfal']
[u'gunnedah', u'host', u'triathlon', u'time', u'trial']
[u'health', u'specialist', u'look', u'best', u'time']
[u'helicopt', u'crash', u'amid', u'hurrican', u'relief', u'effort']
[u'high', u'court', u'overturn', u'detaine', u'paedophil', u'rule']
[u'high', u'court', u'rule', u'emphasis', u'need', u'fair']
[u'holm', u'name', u'english', u'game', u'team']
[u'hoon', u'suburb', u'central', u'speed', u'limit']
[u'hop', u'forum', u'sway', u'govt']
[u'household', u'warn', u'spiral', u'fuel', u'cost']
[u'howard', u'defend', u'telstra', u'report', u'surfac']
[u'hurrican', u'katrina', u'report', u'diari']
[u'india', u'agre', u'boost', u'trade', u'fight', u'terror']
[u'inquest', u'hear', u'father', u'didnt', u'consult']
[u'inquiri', u'wouldnt', u'bring', u'petrol', u'price']
[u'insur', u'worst', u'case', u'scenario', u'bushfir', u'victim']
[u'israel', u'close', u'main', u'cross', u'egypt', u'gaza', u'border']
[u'juici', u'return', u'mango', u'grower']
[u'juri', u'hook', u'manslaught', u'case']
[u'katrina', u'fallout', u'prompt', u'iraq', u'exit', u'strategi']
[u'kimberley', u'galleri', u'stagger', u'local']
[u'land', u'near', u'acquir', u'highway', u'upgrad']
[u'legal', u'action', u'consid', u'noll', u'concert']
[u'letterbox', u'organ', u'donat', u'plea', u'illeg']
[u'lion', u'nathan', u'appeal', u'cooper', u'court', u'rule']
[u'lion', u'lose', u'backroom', u'stalwart']
[u'lithgow', u'divid', u'aquat', u'centr', u'develop']
[u'local', u'erect', u'warn', u'sign', u'highway']
[u'log', u'contractor', u'ponder', u'futur', u'demand']
[u'malaysia', u'order', u'increas', u'polio', u'immunis']
[u'charg', u'internet', u'contact', u'girl']
[u'die', u'motorcycl', u'crash']
[u'face', u'murder', u'trial', u'rank', u'death']
[u'plead', u'guilti', u'xmas', u'assault']
[u'maralinga', u'land', u'administr', u'stand']
[u'market', u'rat', u'dollar', u'jump', u'strong', u'figur']
[u'marsh', u'take', u'global', u'coach', u'role']
[u'mayor', u'claim', u'telstra', u'cabl']
[u'mccain', u'call', u'meet', u'ballarat', u'potato', u'farmer']
[u'mine', u'bodi', u'hail', u'tour', u'success']
[u'minist', u'hear', u'argument', u'woodchip']
[u'money', u'distribut', u'hurrican', u'victim']
[u'charg', u'lay', u'maitland']
[u'call', u'remot', u'defenc', u'staff']
[u'petit', u'parliament', u'health', u'servic']
[u'renew', u'hour', u'tannum', u'sand', u'polic']
[u'mudge', u'resid', u'lobbi', u'chang', u'council']
[u'multiplex', u'sharehold', u'class', u'action']
[u'mundin', u'readi', u'green']
[u'chang', u'child', u'protect', u'group']
[u'nation', u'jobless', u'rate', u'remain', u'steadi']
[u'nation', u'park', u'outlaw', u'unattend', u'camp', u'fire']
[u'nation', u'respond', u'biofuel', u'critic']
[u'nativ', u'titl', u'applic', u'lodg', u'propos', u'coal']
[u'wont', u'stop', u'industri', u'action', u'cfmeu']
[u'whale', u'regul', u'describ', u'knee', u'jerk']
[u'north', u'popular', u'intern', u'tourist']
[u'cooper', u'uranium', u'manag']
[u'oat', u'sentenc', u'signal', u'say', u'asic']
[u'price', u'domin', u'apec', u'financ', u'minist', u'meet']
[u'opposit', u'claim', u'fraud', u'egypt', u'poll']
[u'opposit', u'supermarket', u'evapor']
[u'soldier', u'fear', u'dead', u'india', u'bridg']
[u'oversea', u'tourist', u'flock', u'gold', u'coast']
[u'outlin', u'tougher', u'anti', u'terror', u'law']
[u'blame', u'telstra', u'report', u'inact', u'labor']
[u'polic', u'investig', u'semi', u'trailer', u'crash', u'death']
[u'polic', u'probe', u'perth', u'man', u'alleg', u'crime']
[u'portrait', u'citi', u'founder', u'restor']
[u'posit', u'england', u'deserv', u'ash', u'say', u'marsh']
[u'premier', u'accus', u'suppress', u'freedom', u'speech']
[u'princip', u'promis', u'cash', u'incent', u'indigen']
[u'team', u'develop', u'sleep', u'research', u'tool']
[u'rauhihi', u'friday', u'mind']
[u'reilli', u'ricciuto', u'bock', u'torney', u'return']
[u'ricki', u'pont', u'talk', u'maxwel']
[u'stewart', u'order', u'return', u'million', u'advanc']
[u'rudd', u'urg', u'govt', u'push', u'millennium', u'goal']
[u'damag', u'reef', u'research']
[u'saddam', u'confess', u'mass', u'kill', u'lawyer']
[u'savag', u'want', u'feder', u'abstain', u'telstra', u'vote']
[u'king', u'servic', u'delay', u'visit']
[u'search', u'canola']
[u'senat', u'open', u'debat', u'telstra', u'bill']
[u'senat', u'debat', u'telstra']
[u'senat', u'defer', u'petrol', u'sniff', u'inquiri', u'motion']
[u'sexual', u'assault', u'investig', u'imped', u'victim']
[u'slide', u'door', u'catch', u'swiss', u'thief']
[u'stem', u'cell', u'review', u'hear', u'continu', u'sydney']
[u'stock', u'fee', u'administr', u'recommend', u'liquid']
[u'straggler', u'remain', u'orlean', u'author']
[u'strauss', u'flintoff', u'steadi', u'england']
[u'studi', u'stress', u'fatigu', u'factor', u'miner', u'road']
[u'stun', u'agassi', u'fight', u'beat', u'blake']
[u'supercar', u'boss', u'celebr', u'bahrain', u'breakthrough']
[u'surgeon', u'see', u'hospit', u'fund', u'risk', u'patient']
[u'surgic', u'servic', u'review', u'bega', u'valley']
[u'sven', u'savag', u'insipid', u'england']
[u'talk', u'address', u'fund', u'countri', u'council']
[u'teacher', u'jail', u'boy']
[u'teacher', u'consid', u'industri', u'action', u'wake']
[u'teacher', u'uncomfort', u'return', u'school']
[u'telstra', u'reserv', u'dip', u'news', u'say', u'govt']
[u'jail', u'embassi', u'blast']
[u'thirti', u'dead', u'orlean', u'nurs', u'home']
[u'tighten', u'clone', u'definit', u'research', u'urg']
[u'tourism', u'author', u'step', u'mackay', u'market']
[u'tourist', u'guid', u'showcas', u'goldfield', u'region']
[u'tuna', u'farm', u'win', u'fund', u'boost']
[u'tweed', u'council', u'stretch', u'resourc', u'recycl']
[u'back', u'chief', u'critic', u'report']
[u'ukrain', u'presid', u'sack', u'govern']
[u'union', u'fear', u'loss', u'mitsubishi', u'resign']
[u'union', u'welcom', u'polic', u'station', u'upgrad']
[u'unit', u'confid', u'victori', u'upset']
[u'unseed', u'ginepri', u'reach', u'open', u'semi']
[u'uranium', u'price', u'hike', u'tip', u'lift']
[u'urban', u'score', u'countri', u'music', u'award', u'nomin']
[u'count', u'katrina', u'cost']
[u'seek', u'nato', u'help', u'katrina']
[u'vaughan', u'weigh', u'select', u'option']
[u'vegi', u'grower', u'urg', u'unit']
[u'warn', u'put', u'england', u'foot']
[u'warrior', u'appoint', u'cleari', u'head', u'coach']
[u'know', u'what', u'need', u'say', u'pont']
[u'whale', u'free', u'gold', u'coast', u'shark', u'net']
[u'whale', u'trap', u'gold', u'coast', u'shark', u'net']
[u'wheat', u'export', u'iraq']
[u'woolclass', u'urg', u'qualiti']
[u'xstrata', u'lead', u'close', u'decemb']
[u'yahoo', u'provid', u'data', u'lead', u'chines', u'journalist']
[u'school', u'roof', u'replac']
[u'upgrad', u'navi', u'defenc', u'system']
[u'detaine', u'hunger', u'strike', u'guantanamo']
[u'aborigin', u'seek', u'recognit', u'nativ', u'titl', u'reform']
[u'businesswoman', u'year', u'announc']
[u'adelaid', u'victori']
[u'adelaid', u'brain', u'victori']
[u'afghan', u'elect', u'face', u'multi', u'million', u'dollar']
[u'katrina', u'famili']
[u'prayer', u'hurrican', u'victim']
[u'aircraft', u'flight', u'battl', u'britain']
[u'alic', u'youth', u'worker', u'fear', u'petrol', u'sniffer', u'influx']
[u'alleg', u'reptil', u'smuggler', u'remand', u'custodi']
[u'ord', u'lower', u'telstra', u'share', u'slip']
[u'ambul', u'offic', u'await', u'talk']
[u'anti', u'terror', u'law', u'rais', u'polic', u'state', u'concern']
[u'appar', u'hunter', u'thompson', u'suicid', u'note', u'publish']
[u'aquanaut', u'long', u'swim', u'mankind']
[u'honour', u'wallabi', u'great']
[u'aussi', u'buckl', u'surg', u'singapor', u'lead']
[u'aust', u'surveil', u'team', u'iraq', u'mission']
[u'bail', u'suspect', u'drug', u'traffic']
[u'beach', u'goer', u'urg', u'stay', u'flag']
[u'bilbi', u'festiv', u'rais', u'endang', u'speci', u'profil']
[u'propos', u'extend', u'deadlin', u'bushfir']
[u'blind', u'driver', u'set', u'speed', u'record']
[u'brack', u'consid', u'tougher', u'anti', u'terror', u'propos']
[u'british', u'author', u'julian', u'barn', u'favourit', u'booker']
[u'british', u'medic', u'journal', u'savag', u'publish']
[u'buckalow', u'grazier', u'smith', u'die']
[u'build', u'cottag', u'site', u'bulldoz']
[u'burgoyn', u'late', u'ill', u'scare', u'port']
[u'burnett', u'council', u'vote', u'webcast', u'plan']
[u'busi', u'chamber', u'want', u'debnam', u'stanc']
[u'busi', u'group', u'pull', u'finland', u'trip']
[u'cabbi', u'receiv', u'high', u'tech', u'secur', u'camera']
[u'canker', u'affect', u'orchard', u'subdivid']
[u'cardin', u'pell', u'open', u'church']
[u'casa', u'investig', u'crop', u'duster', u'joke']
[u'cat', u'confid', u'turn', u'tabl', u'swan']
[u'caus', u'fatal', u'motorbik', u'crash', u'unknown']
[u'cereal', u'best', u'breakfast', u'waistlin']
[u'chef', u'serv', u'downhil', u'ski', u'record']
[u'china', u'defend', u'foreign', u'relat', u'rogu', u'state']
[u'clinic', u'misconduct', u'alleg', u'doctor']
[u'colin', u'powel', u'slam', u'katrina', u'effort']
[u'colosimo', u'lift', u'impress', u'guus', u'mcmahon']
[u'committ', u'hear', u'tell', u'speed', u'damag']
[u'convict', u'paedophil', u'die', u'jail']
[u'coron', u'call', u'allergi', u'train']
[u'councillor', u'urg', u'voter', u'consid', u'disput']
[u'court', u'pull', u'compani', u'properti', u'seminar', u'scam']
[u'court', u'recommend', u'law', u'peanut', u'butter', u'death']
[u'cowboy', u'play', u'final', u'advantag']
[u'creditor', u'seek', u'prioriti', u'green', u'administr']
[u'crew', u'abandon', u'whale', u'rescu', u'night']
[u'cycl', u'boss', u'wont', u'pursu', u'armstrong', u'dope']
[u'daili', u'stress', u'stop', u'breast', u'cancer', u'studi']
[u'davi', u'hero', u'swan', u'prevail']
[u'dead', u'man', u'children', u'pain', u'increas', u'employ']
[u'dengu', u'fever', u'outbreak', u'overwhelm', u'singapor']
[u'deniliquin', u'council', u'question', u'polic', u'payment']
[u'deputi', u'challeng', u'west', u'tamar', u'mayor']
[u'desalin', u'wont', u'solv', u'water', u'crisi', u'expert']
[u'detaine', u'claim', u'voluntari', u'work', u'exploit']
[u'detaine', u'work', u'voluntarili', u'vanston', u'say']
[u'develop', u'outlin', u'south', u'coast', u'vision']
[u'dole', u'project', u'improv', u'school', u'ground']
[u'eastern', u'distributor', u'toll', u'rise', u'cent']
[u'east', u'timores', u'refuge', u'grant', u'resid']
[u'econom', u'growth', u'figur', u'push', u'dollar', u'higher']
[u'econom', u'summit', u'build', u'busi', u'confid']
[u'elder', u'challeng', u'boat', u'harbour', u'land', u'sale']
[u'exchang', u'fault', u'list', u'proof', u'region', u'area', u'ignor']
[u'famili', u'leader', u'want', u'return', u'shark', u'siren']
[u'famili', u'friend', u'mourn', u'girl', u'kill', u'school', u'trip']
[u'feder', u'task', u'forc', u'target', u'build', u'sit']
[u'feder', u'set', u'hewitt', u'showdown']
[u'feedlot', u'seek', u'permiss', u'expand']
[u'field', u'trial', u'begin', u'feral', u'anim', u'poison']
[u'film', u'fundrais', u'medic', u'research']
[u'forc', u'evacu', u'begin', u'orlean']
[u'bond', u'execut', u'releas', u'prison']
[u'forum', u'consid', u'report', u'recommend']
[u'fossil', u'reveal', u'prehistor', u'fli', u'giant']
[u'foster', u'carer', u'urgent', u'demand', u'queensland']
[u'freight', u'compani', u'worri', u'rise', u'fuel', u'cost']
[u'fuel', u'price', u'put', u'communiti', u'risk', u'say']
[u'fulham', u'prison', u'staff', u'begin', u'industri', u'action']
[u'fund', u'alloc', u'school', u'upgrad']
[u'germani', u'russia', u'seal', u'billion', u'pipelin', u'deal']
[u'gippsland', u'drought', u'decis']
[u'googl', u'name', u'internet', u'found', u'father', u'chief']
[u'govt', u'accus', u'anti', u'terror', u'divers', u'tactic']
[u'govt', u'consid', u'allow', u'overcom', u'rural', u'doctor']
[u'govt', u'defend', u'spend', u'packag', u'sack']
[u'govt', u'rule', u'fuel']
[u'govt', u'seek', u'doctor']
[u'govt', u'anti', u'terror', u'measur', u'reason']
[u'govt', u'urg', u'reveal', u'petrol', u'windfal', u'plan']
[u'govt', u'urg', u'rule', u'nowingi', u'nuclear', u'dump']
[u'govt', u'urg', u'sort', u'marin', u'park', u'fish', u'bungl']
[u'grain', u'grower', u'alert', u'leaf', u'diseas']
[u'grape', u'grower', u'continu', u'nation', u'committe', u'push']
[u'great', u'darl', u'pipelin', u'tender', u'call']
[u'grower', u'like', u'reject', u'second', u'mccain', u'offer']
[u'hanson', u'petit', u'premier', u'damag']
[u'hantuchova', u'bhupathi', u'claim', u'mix', u'crown']
[u'hazard', u'wast', u'export', u'option', u'danger']
[u'health', u'group', u'local', u'issu']
[u'helicopt', u'widen', u'search', u'miss']
[u'hewitt', u'dig', u'deep', u'book', u'semi', u'spot']
[u'hewitt', u'face', u'major', u'hurdl', u'feder']
[u'high', u'fuel', u'price', u'wipe', u'farmer', u'profit']
[u'highway', u'group', u'seek', u'feder', u'fund', u'assur']
[u'histor', u'sydney', u'cinema', u'win', u'protect']
[u'holiday', u'crackdown', u'target', u'tire', u'speed', u'driver']
[u'indigen', u'famili', u'support', u'servic', u'launch']
[u'indigen', u'heart', u'diseas', u'rate', u'highest']
[u'interim', u'deal', u'see', u'hospit', u'bed', u'reopen']
[u'interview', u'shane', u'warn', u'andrew', u'strauss']
[u'island', u'team', u'await', u'holiday', u'teen']
[u'isra', u'court', u'approv', u'raze', u'gaza', u'settler']
[u'jakara', u'bomb', u'victim', u'rememb']
[u'joyc', u'telstra', u'doubt', u'return']
[u'kalumburu', u'visit', u'challeng', u'polic', u'minist']
[u'kelso', u'rise', u'ash', u'eisteddfod']
[u'koutoufid', u'name', u'blue', u'best']
[u'labor', u'seek', u'asia', u'region', u'bird', u'forum']
[u'land', u'sale', u'boost', u'tropic', u'timber', u'industri']
[u'langer', u'hayden', u'steer', u'australia', u'lunch']
[u'langer', u'lead', u'australian', u'repli']
[u'liber', u'push', u'detail', u'shack', u'owner']
[u'littbarski', u'face', u'tough', u'striker']
[u'local', u'exchang', u'telstra', u'worst']
[u'lockyer', u'look', u'sharp', u'bennett']
[u'mackay', u'perman', u'continu', u'takeov']
[u'charg', u'cannabi', u'seiz', u'drug', u'raid']
[u'fin', u'destroy', u'dun']
[u'kill', u'head', u'crash']
[u'mayor', u'urg', u'quick', u'releas', u'bushfir', u'report']
[u'mcguir', u'signal', u'free', u'match']
[u'memori', u'servic', u'honour', u'student']
[u'minist', u'bypass', u'highway', u'upgrad', u'summit']
[u'miss', u'australian', u'releas', u'jail']
[u'seek', u'answer', u'exclus', u'island']
[u'muslim', u'group', u'attack', u'howard', u'anti', u'terror', u'plan']
[u'extinguish', u'cut', u'wall']
[u'law', u'wont', u'deter', u'terrorist', u'beazley']
[u'newcastl', u'feder', u'magistr', u'take', u'post']
[u'orlean', u'pressur', u'leav']
[u'rule', u'protect', u'caravan', u'park', u'resid']
[u'news', u'corp', u'expand', u'internet', u'portfolio']
[u'northern', u'exchang', u'worst', u'worst', u'list']
[u'north', u'shore', u'granni', u'killer', u'dead']
[u'consid', u'advic', u'allergi', u'train']
[u'opposit', u'leader', u'controversi', u'ahead', u'poll']
[u'object', u'spong', u'farm', u'unlik']
[u'appropri', u'telstra', u'debat']
[u'opposit', u'describ', u'telstra', u'inquiri', u'joke']
[u'orang', u'exchang', u'countri', u'worst', u'crean']
[u'pearc', u'citi', u'reviv', u'derbi', u'test']
[u'peta', u'end', u'benetton', u'campaign']
[u'planet', u'provid', u'rare', u'treat', u'stargaz']
[u'prove', u'terror', u'law', u'help', u'stanhop']
[u'rule', u'petrol', u'excis']
[u'polic', u'allianc', u'tackl', u'driver', u'fatigu']
[u'polic', u'hunt', u'pair', u'geelong', u'shoot']
[u'polic', u'probe', u'fatal', u'shoot', u'geelong']
[u'powel', u'regret', u'speech', u'iraq', u'wmds']
[u'premier', u'reach', u'deal', u'underpay', u'vmos']
[u'govt', u'urg', u'revers', u'uranium']
[u'railcorp', u'backtrack', u'platform', u'ticket']
[u'record', u'season', u'boost', u'truffl', u'industri']
[u'report', u'highlight', u'geelong', u'port', u'contribut']
[u'riverland', u'meet', u'consid', u'labour', u'shortag']
[u'robot', u'child', u'aid', u'hospit', u'train', u'program']
[u'ruddock', u'dismiss', u'anti', u'terror', u'fear']
[u'sailor', u'pluck', u'ground', u'yacht']
[u'sale', u'legisl', u'swamp', u'telstra', u'warn']
[u'salmon', u'produc', u'kick', u'start', u'batch']
[u'scientist', u'give', u'ahead', u'dual', u'mother', u'embryo']
[u'senat', u'slam', u'telstra', u'inquiri', u'farc']
[u'senior', u'german', u'master', u'content']
[u'servic', u'mark', u'anniversari', u'embassi', u'attack']
[u'assault', u'teacher', u'lose', u'jail', u'term', u'appeal']
[u'sharehold', u'declar', u'telstra', u'interest']
[u'sheikh', u'deni', u'question', u'sept', u'event']
[u'wont', u'movi', u'world', u'perform']
[u'sieg', u'compens', u'polic']
[u'signag', u'improv', u'tweed', u'valley', u'flood', u'awar']
[u'unscath', u'plane', u'crash']
[u'resid', u'refus', u'leav', u'katrina', u'clean']
[u'murder', u'militari', u'chief', u'releas']
[u'south', u'coast', u'fishermen', u'shape', u'industri', u'direct']
[u'state', u'territori', u'leader', u'baulk', u'anti', u'terror']
[u'stepdad', u'guilti', u'sexual', u'relat', u'girl']
[u'stirl', u'question', u'time', u'anti', u'terror', u'law']
[u'strong', u'quak', u'hit']
[u'subdu', u'profit', u'predict', u'push', u'market']
[u'sunshin', u'coast', u'kiwi', u'destin']
[u'tafe', u'downgrad', u'decis']
[u'takeov', u'panel', u'clear', u'toll', u'patrick']
[u'tarle', u'make', u'labor', u'worst', u'telephon', u'exchang', u'list']
[u'teacher', u'jail', u'term', u'outrag', u'victim', u'famili']
[u'teacher', u'push', u'clear', u'rule', u'deal']
[u'technic', u'campus', u'develop', u'tandem']
[u'teenag', u'bash', u'victim', u'die']
[u'telephon', u'exchang', u'fail', u'perform', u'test']
[u'telstra', u'exchang', u'fault', u'see']
[u'telstra', u'play', u'faulti', u'exchang', u'list']
[u'telstra', u'move', u'senat', u'inquiri']
[u'termin', u'evacu', u'disrupt', u'flight']
[u'territori', u'get', u'firearm', u'sniffer']
[u'tiger', u'rampant', u'cowboy']
[u'tight', u'match', u'continu']
[u'citizen', u'suggest', u'contain', u'refund']
[u'turnbul', u'seek', u'lifelong', u'pigeonhol']
[u'union', u'hope', u'prison', u'disput', u'resolv']
[u'rais', u'alarm', u'death', u'squad', u'tortur', u'iraq']
[u'vanston', u'cut', u'villawood', u'razor', u'wire', u'amid', u'protest']
[u'violenc', u'teacher', u'live']
[u'warn', u'dismiss', u'oval', u'retir', u'talk']
[u'warn', u'take', u'wicket', u'fifth', u'ash', u'test']
[u'warn', u'recommend', u'potassium', u'tablet']
[u'seek', u'feder', u'fund', u'fisheri', u'patrol']
[u'westpac', u'cut', u'home', u'loan', u'rat']
[u'whale', u'catch', u'craypot', u'line', u'coast']
[u'women', u'saddl', u'breast', u'cancer', u'fundrais']
[u'women', u'refug', u'closur', u'worri', u'doc']
[u'word', u'local', u'law', u'upset', u'ratepay']
[u'worker', u'ralli', u'canadian', u'asbesto', u'export']
[u'workshop', u'shape', u'desert', u'tourism', u'cooper']
[u'world', u'bank', u'help', u'solomon', u'busi', u'advic']
[u'world', u'trade', u'talk', u'jeopardi']
[u'zimbabw', u'set', u'graft', u'bust', u'commiss']
[u'afghan', u'defenc', u'minist', u'escap', u'assassin']
[u'reject', u'graffiti', u'websit', u'critic']
[u'airport', u'bodi', u'back', u'anti', u'terror', u'plan']
[u'ambiti', u'global', u'vaccin', u'program', u'launch']
[u'anim', u'human', u'organ', u'transplant', u'near', u'realiti']
[u'armstrong', u'boost', u'support', u'legal']
[u'aussi', u'triathlet', u'perform', u'japan']
[u'aust', u'embassi', u'bomb', u'victim', u'wait', u'italian']
[u'australia', u'pakistan', u'match', u'tour']
[u'australia', u'skipper', u'haddin', u'tout', u'test', u'prospect']
[u'australian', u'tell', u'louisiana', u'prison', u'nightmar']
[u'autism', u'group', u'concern', u'lack', u'govt', u'access']
[u'back', u'uranium', u'mine']
[u'backpack', u'airlift', u'brisban', u'fatal']
[u'backpack', u'kill', u'bundaberg', u'crash']
[u'balloon', u'fiesta', u'float', u'fund', u'request']
[u'beatti', u'await', u'advic', u'hanson', u'petit']
[u'brandi', u'tell', u'southern', u'colleagu', u'unit']
[u'britain', u'nake', u'rambler', u'strip', u'liberti']
[u'bryan', u'open', u'men', u'doubl']
[u'bundaberg', u'accid', u'kill', u'injur']
[u'canola', u'field', u'trial', u'safe', u'contamin']
[u'seek', u'suspici', u'death', u'investig']
[u'championship', u'leader', u'belgian']
[u'civil', u'liberti', u'sacrific', u'head']
[u'clijster', u'step', u'closer', u'grand', u'slam', u'dream']
[u'clijster', u'win', u'crack', u'grand', u'slam', u'titl']
[u'legal', u'block', u'orlean', u'censorship']
[u'croatia', u'prepar', u'crime', u'case', u'perth']
[u'crow', u'target', u'eagl', u'demolit', u'derbi']
[u'crow', u'target', u'power', u'midfield']
[u'davi', u'play', u'win', u'snap']
[u'debnam', u'call', u'mini', u'budget']
[u'debt', u'financ', u'offer', u'get', u'tom', u'gulli']
[u'defenc', u'contract', u'boost', u'economi']
[u'despotovski', u'fire', u'glori', u'victori']
[u'dismay', u'greet', u'cottag', u'decis']
[u'dragon', u'surviv', u'shark', u'scare']
[u'dragon', u'wari', u'inconsist', u'shark']
[u'dredg', u'damag', u'keep', u'port', u'phillip', u'head', u'limit']
[u'drought', u'farmer', u'feel', u'fuel', u'price', u'pinch']
[u'dubai', u'plan', u'citi', u'wonder', u'world', u'replica']
[u'effici', u'home']
[u'farmer', u'tell', u'stop', u'pick', u'telstra']
[u'fuel', u'toll', u'hike', u'affect', u'incom', u'earner', u'ncoss']
[u'fund', u'chang', u'wont', u'affect', u'fisheri', u'patrol']
[u'fund', u'open', u'coast', u'illeg', u'fish', u'say']
[u'german', u'brew', u'knockout', u'beer']
[u'govt', u'move', u'enabl', u'levi', u'waiver', u'investor']
[u'govt', u'stadium', u'decis', u'birney']
[u'groper', u'studi', u'ensur', u'emblem', u'surviv']
[u'hayden', u'hit', u'fight', u'centuri']
[u'highway', u'pedestrian', u'kill', u'accid']
[u'honey', u'heal', u'qualiti', u'stump', u'scientist']
[u'hurrican', u'anger', u'fade', u'aussi', u'return', u'home']
[u'hurrican', u'death', u'toll', u'lower', u'initi']
[u'hurrican', u'ophelia', u'turn', u'coastlin']
[u'illeg', u'fish', u'suspect', u'arriv', u'hobart']
[u'give', u'zimbabw', u'chanc', u'shape']
[u'interview', u'justin', u'langer']
[u'iraqi', u'forc', u'launch', u'attack', u'afar']
[u'isra', u'armi', u'gaza', u'base', u'empti', u'flatten']
[u'japan', u'go', u'poll']
[u'japan', u'miyazaki', u'get', u'golden', u'lion', u'venic']
[u'joyc', u'reconsid', u'telstra', u'sale', u'support']
[u'joyc', u'undecid', u'telstra']
[u'katrina', u'emerg', u'respons', u'head', u'replac']
[u'king', u'hold', u'hawk']
[u'king', u'hold', u'hawk', u'grand', u'final', u'rematch']
[u'knight', u'shock', u'marin', u'gosford']
[u'labor', u'face', u'uphil', u'battl', u'chandler', u'hinchliff']
[u'langer', u'eye', u'australia', u'tighten', u'grip']
[u'legal', u'advic', u'rule', u'morri', u'rule', u'appeal', u'beatti']
[u'liber', u'parti', u'claim', u'brisban', u'elect']
[u'liber', u'fund', u'brogden', u'staff', u'payout']
[u'mari', u'contrari', u'claim', u'dementieva']
[u'maximus', u'upbeat', u'ahead', u'stock', u'float']
[u'mcdonald', u'recount', u'jail', u'nightmar']
[u'mclaren', u'sweep', u'belgian', u'qualifi']
[u'mekong', u'delta', u'flood', u'forc', u'evacu']
[u'melbourn', u'race', u'half', u'time', u'lead']
[u'merck', u'vow', u'fight', u'vioxx', u'suit']
[u'mubarak', u'win', u'egyptian', u'presidenti', u'vote']
[u'orlean', u'death', u'toll', u'lower', u'think']
[u'newton', u'nation']
[u'orford', u'inspir', u'storm', u'final']
[u'orford', u'inspir', u'storm', u'victori']
[u'organis', u'defend', u'finnish', u'pulp', u'studi', u'trip']
[u'paper', u'mubarak', u'ahead', u'egypt', u'vote']
[u'pierc', u'ralli', u'reach', u'open', u'final']
[u'play', u'delay', u'oval']
[u'urg', u'prevent', u'stymi', u'poverti', u'plan']
[u'polic', u'acquit', u'right', u'abus', u'papua']
[u'polic', u'recov', u'worth', u'steal', u'cigarett']
[u'doctor', u'urg', u'accept', u'genuin', u'offer']
[u'raikkonen', u'fastest', u'wash']
[u'rann', u'signal', u'support', u'counter', u'terror', u'plan']
[u'rescu', u'crew', u'fail', u'tangl', u'whale']
[u'rescuer', u'confid', u'free', u'whale', u'catch']
[u'rural', u'doctor', u'question', u'recruit', u'drive']
[u'sack', u'ukrainian', u'hit']
[u'studi', u'find', u'diabet', u'natur', u'defenc']
[u'scientist', u'unveil', u'plan', u'quiet', u'fli', u'wing']
[u'scott', u'strike', u'distanc', u'michael']
[u'sehwag', u'gambhir', u'dravid', u'score', u'centuri', u'india']
[u'senat', u'need', u'telstra', u'debat', u'delay', u'green']
[u'kill', u'kashmir', u'milit', u'target', u'famili']
[u'socceroo', u'hop', u'luck', u'play', u'draw']
[u'suspect', u'illeg', u'fish', u'vessel']
[u'tander', u'lead', u'qualifi', u'sandown']
[u'research', u'trail', u'hydro', u'car']
[u'tcci', u'turn', u'colleg', u'board', u'post']
[u'telstra', u'execut', u'rise', u'disgrac']
[u'telstra', u'packag', u'delight', u'scullion']
[u'tiger', u'contend', u'murray']
[u'time', u'australia', u'say', u'langer']
[u'sheen', u'benji', u'marshal', u'interview']
[u'travel', u'take', u'breather', u'darwin']
[u'darwin', u'fatal', u'accid', u'investig']
[u'germani', u'senior', u'slip']
[u'umbakumba', u'council', u'defend', u'island', u'reput']
[u'fund', u'african', u'countri', u'face', u'disast']
[u'bomb', u'iraqi', u'town', u'report']
[u'militari', u'bar', u'media', u'katrina', u'corps', u'recoveri']
[u'step', u'offens', u'near', u'syrian', u'border']
[u'work', u'annan', u'despit', u'food']
[u'wall', u'street', u'shrug', u'katrina', u'slowdown', u'fear']
[u'weather', u'halt', u'australia', u'charg']
[u'telstra', u'penni']
[u'suspect', u'milit', u'kill', u'afghanistan']
[u'road', u'toll', u'hit', u'doubl', u'figur']
[u'ratifi', u'australia', u'entri', u'asia']
[u'afghanistan', u'shoot', u'assassin', u'attempt']
[u'agassi', u'advanc', u'open', u'final']
[u'ageless', u'agassi', u'advanc', u'final']
[u'attack', u'like', u'week', u'final']
[u'qaeda', u'plot', u'kill', u'blair', u'polic', u'chief']
[u'apprentic', u'celebr', u'train', u'award']
[u'aussi', u'doubl', u'world', u'triathlon', u'champ']
[u'aussi', u'urg', u'inspir', u'wwii']
[u'backpack', u'accid', u'investig', u'focus']
[u'bangladesh', u'polic', u'raid', u'explos', u'suspect']
[u'bat', u'sourc', u'sar']
[u'baxter', u'detaine', u'attempt', u'suicid', u'scuffl']
[u'beatti', u'address', u'labor', u'faith', u'bathurst']
[u'beazley', u'call', u'practic', u'terror', u'fight']
[u'border', u'close', u'mayor', u'resign', u'troop', u'attack', u'iraqi']
[u'buchanan', u'contract', u'talk', u'hold', u'ash']
[u'bush', u'alli', u'secur', u'post', u'katrina', u'rebuild']
[u'bush', u'plea', u'uniti']
[u'bush', u'recal', u'sept', u'plea', u'uniti']
[u'bush', u'rat', u'time']
[u'celta', u'shock', u'slack', u'real', u'madrid']
[u'chelsea', u'capitalis', u'arsenal', u'unit', u'falter']
[u'civilian', u'shoot', u'belfast', u'loyalist', u'unrest']
[u'clijster', u'claim', u'open', u'crown']
[u'clijster', u'win', u'open']
[u'communiti', u'access', u'lack', u'woden', u'plan', u'green']
[u'coonan', u'offer', u'reassur', u'telstra', u'fund']
[u'crew', u'resum', u'search', u'tangl', u'whale']
[u'doctor', u'seek', u'broader', u'hospit', u'inquiri']
[u'driver', u'abandon', u'move', u'polic', u'pursuit']
[u'eel', u'good', u'man']
[u'egyptian', u'troop', u'deploy', u'gaza', u'border']
[u'england', u'fan', u'sing', u'rain', u'aussi', u'charg']
[u'feder', u'conquer', u'hewitt']
[u'feder', u'open', u'final']
[u'govt', u'urg', u'address', u'rural', u'age', u'care']
[u'flintoff', u'hoggard', u'halt', u'australia', u'progress']
[u'flintoff', u'hoggard', u'rout', u'australia']
[u'forecast', u'right', u'dairi', u'farmer', u'delight']
[u'foster', u'carer', u'payment', u'link']
[u'cowboy', u'tale', u'take', u'home', u'golden', u'lion']
[u'govt', u'firm', u'telstra', u'fund']
[u'govt', u'weigh', u'anti', u'terror', u'sunset', u'claus']
[u'graffiti', u'recruit', u'websit', u'resurrect', u'opposit']
[u'hook', u'juri', u'reach', u'verdict']
[u'howard', u'push', u'trade', u'solut', u'poverti']
[u'indonesia', u'ground', u'plan', u'fatal', u'crash']
[u'indonesian', u'fishermen', u'detain', u'broom']
[u'inter', u'trip', u'milan', u'walk', u'tall']
[u'interview', u'andrew', u'flintoff']
[u'interview', u'craig', u'bellami', u'wayn', u'bennett']
[u'interview', u'matthew', u'hayden', u'justin', u'langer']
[u'interview', u'nathan', u'brown']
[u'iraq', u'govt', u'take', u'rebel', u'town']
[u'israel', u'okay', u'gaza', u'pullout']
[u'israel', u'leav', u'gaza', u'synagogu', u'intact', u'pullout']
[u'italian', u'report', u'safe', u'gaza', u'abduct']
[u'jackadgeri', u'worst', u'phone', u'exchang', u'surpris']
[u'jet', u'hold', u'sydney']
[u'joey', u'inspir', u'warrington']
[u'joyc', u'reconsid', u'telstra', u'posit']
[u'joyc', u'seek', u'time', u'telstra']
[u'katrina', u'damag', u'tip', u'billion']
[u'kearn', u'slater', u'fit', u'race', u'storm']
[u'koizumi', u'pois', u'elect']
[u'koizumi', u'victori', u'predict', u'japanes', u'poll']
[u'lownd', u'take', u'sandown']
[u'arrest', u'adelaid', u'sieg']
[u'mcewen', u'warm', u'world', u'pari', u'brussel']
[u'minardi', u'boss', u'stoddart', u'leav']
[u'miss', u'whyalla', u'boy', u'safe']
[u'hotel', u'need', u'pace', u'tourism']
[u'ship', u'cruis', u'darwin']
[u'muslim', u'communiti', u'express', u'concern', u'anti']
[u'muslim', u'leader', u'gather', u'anti', u'terror', u'summit']
[u'damag', u'earthquak', u'shake', u'aceh']
[u'drought', u'zone', u'eas']
[u'trial', u'singl', u'school', u'class']
[u'offici', u'normal', u'return', u'orlean']
[u'open', u'defi', u'england', u'weather']
[u'ozhelp', u'receiv', u'suicid', u'prevent', u'award']
[u'park', u'time', u'chang', u'benefit', u'busi']
[u'petrol', u'price', u'tip', u'peak']
[u'philip', u'ruddock', u'say', u'govern']
[u'picnick', u'celebr', u'author', u'scott', u'life']
[u'put', u'case', u'anti', u'terror', u'law']
[u'poll', u'close', u'japan']
[u'popul', u'growth', u'decid', u'pool', u'plan']
[u'post', u'match', u'interview', u'timana', u'tahu', u'nathan']
[u'prison', u'offic', u'threaten', u'block', u'secur', u'area']
[u'protest', u'decri', u'peac', u'activist', u'arrest']
[u'reliev', u'hayden', u'relish', u'oval']
[u'religi', u'minor', u'suffer', u'fallout']
[u'ricciuto', u'talk', u'crow', u'chanc']
[u'rise', u'petrol', u'price', u'sound', u'death', u'knell', u'road']
[u'talk', u'crow', u'chanc']
[u'saudi', u'king', u'slap', u'hand', u'kiss']
[u'scott', u'grab', u'glori', u'singapor']
[u'septemb', u'victim', u'rememb', u'silenc']
[u'shop', u'centr', u'open', u'caus', u'airport', u'delay']
[u'tourist', u'hospit', u'minibus', u'crash']
[u'slam', u'glori', u'gutsi', u'clijster']
[u'socceroo', u'host', u'second', u'play']
[u'suspect', u'illeg', u'fish', u'crew', u'face', u'question']
[u'sydney', u'water', u'hail', u'leak', u'reduct']
[u'taipan', u'triumphant', u'north', u'queensland', u'derbi']
[u'isol', u'increas', u'risk', u'suicid', u'lifelin']
[u'tasmanian', u'rout', u'bolster', u'jetstar', u'growth']
[u'tast', u'uniqu', u'person']
[u'teacher', u'extra', u'train', u'day']
[u'telstra', u'trust', u'plan', u'woefulli', u'inadequ', u'labor']
[u'hurt', u'light', u'plane', u'mishap']
[u'toothfish', u'haul', u'focus', u'cambodian', u'boat']
[u'tougher', u'boat', u'test', u'reduc', u'accid']
[u'typhoon', u'hit', u'eastern', u'china']
[u'activist', u'arrest', u'visa', u'revok']
[u'back', u'katrina', u'media']
[u'volatil', u'elector', u'warn', u'politician']
[u'weather', u'aid', u'england']
[u'tonn', u'toothfish', u'cambodian', u'vessel']
[u'forcibl', u'sterilis', u'china', u'report']
[u'activist', u'arrest', u'prompt', u'question', u'secur']
[u'afghanistan', u'disqualifi', u'elect', u'candid']
[u'alic', u'spring', u'festiv', u'director', u'wont', u'stay']
[u'alien', u'fingleton', u'return', u'legal', u'fold']
[u'qaeda', u'europ', u'vow', u'aveng', u'slay', u'muslim']
[u'armidal', u'offic', u'sell']
[u'dead', u'typhoon', u'sweep', u'eastern']
[u'aussi', u'brisco', u'hospitalis', u'indi', u'crash']
[u'australia', u'hop', u'sunshin']
[u'australia', u'pray', u'warn', u'miracl']
[u'award', u'recognis', u'ambul', u'offic', u'effort']
[u'deni', u'wrongdo', u'iraq', u'food', u'program']
[u'baxter', u'visit', u'prompt', u'schoolgirl', u'cross', u'countri', u'ride']
[u'bear', u'focus', u'tough', u'grand', u'final', u'clash']
[u'bear', u'lion', u'grand', u'final', u'clash']
[u'beatti', u'reflect', u'mini', u'crash', u'tragedi']
[u'bigland', u'preliminari', u'final']
[u'bishop', u'hop', u'femal', u'replac']
[u'blue', u'good', u'western', u'suburb']
[u'bouncer', u'guilti', u'death', u'david', u'hook']
[u'sentenc', u'drive', u'death']
[u'brown', u'seek', u'sniffabl', u'fuel', u'roll']
[u'busi', u'chamber', u'attack', u'year', u'fund', u'plan']
[u'busi', u'road', u'safeti', u'boost']
[u'busi', u'redund', u'termin', u'updat']
[u'busi', u'lobbi', u'call', u'accc', u'watch', u'petrol']
[u'cabbi', u'await', u'decis']
[u'cabbi', u'hope', u'attack', u'decreas', u'camera']
[u'calcavecchia', u'claim', u'canadian', u'open']
[u'floodplain', u'health', u'rethink']
[u'wider', u'rang', u'bush', u'blueprint', u'submiss']
[u'call', u'poki', u'machin', u'modifi']
[u'nation', u'sustain', u'charter']
[u'caltex', u'defend', u'high', u'petrol', u'price']
[u'caltex', u'say', u'sorri', u'high', u'petrol', u'price']
[u'campaign', u'aim', u'fatigu', u'crash']
[u'campbel', u'consid', u'croc', u'hunt', u'propos']
[u'canberran', u'high', u'incom', u'earner', u'figur']
[u'carter', u'holt', u'harvey', u'issu', u'profit', u'warn']
[u'chariti', u'ride', u'rais', u'bush', u'chaplainci', u'fund']
[u'citrus', u'grower', u'vote', u'nation', u'biosecur', u'levi']
[u'clarenc', u'gatemouth', u'brown', u'die']
[u'comment', u'seek', u'conserv', u'plan']
[u'communiti', u'move', u'cyclon', u'ingrid']
[u'communiti', u'ralli', u'afghan', u'famili']
[u'condobolin', u'hous', u'damag', u'earli', u'morn']
[u'council', u'get', u'troubl', u'ymca']
[u'councillor', u'back', u'plan', u'expand', u'alcohol', u'free']
[u'councillor', u'seek', u'divis']
[u'council', u'consid', u'shop', u'centr', u'plan']
[u'coupl', u'rocki', u'orlean', u'nightmar']
[u'cousin', u'dismiss', u'brownlow', u'talk']
[u'crime', u'go', u'rann']
[u'crow', u'away', u'grand', u'final']
[u'cubbi', u'station', u'sale', u'say', u'manag']
[u'death', u'threat', u'alleg', u'aussi']
[u'detaine', u'continu', u'hunger', u'strike', u'hospit']
[u'doctor', u'help', u'amid', u'enceph', u'outbreak']
[u'owner', u'feel', u'bite', u'higher', u'fin']
[u'drought', u'eas', u'part', u'western']
[u'drought', u'tighten', u'grip', u'hunter']
[u'focus', u'prevent', u'tangl', u'whale']
[u'eagl', u'better', u'prepar', u'say', u'worsfold']
[u'educ', u'law', u'updat', u'rais', u'school', u'standard']
[u'educ', u'fund', u'chang', u'receiv', u'mix']
[u'green', u'administr', u'seek', u'possibl', u'buyer']
[u'elat', u'palestinian', u'claim', u'gaza', u'settlement']
[u'etoo', u'target', u'barca', u'bounc']
[u'famili', u'industri', u'accid', u'victim', u'disput', u'compo']
[u'farm', u'tuna', u'menu', u'seal', u'lion']
[u'farmer', u'urg', u'remain', u'moth', u'vigil']
[u'north', u'get', u'support', u'blind']
[u'fear', u'chang', u'crippl', u'profit', u'sector']
[u'feder', u'court', u'case', u'chang', u'face']
[u'feder', u'defend', u'open', u'titl']
[u'feder', u'best', u'play', u'agassi']
[u'ferri', u'oper', u'face', u'court', u'school', u'row']
[u'fischer', u'outlin', u'newcastl', u'rail', u'plan']
[u'execut', u'trial', u'begin']
[u'frustrat', u'await', u'bush', u'hurrican', u'zone']
[u'fuel', u'effici', u'car', u'option', u'rural']
[u'fullham', u'correct', u'centr', u'wage', u'disput', u'continu']
[u'gene', u'base', u'pattern', u'point', u'cancer', u'risk']
[u'govt', u'get', u'explain', u'road', u'fund']
[u'govt', u'investig', u'claim', u'wealthi', u'receiv', u'famili']
[u'govt', u'maintain', u'uranium', u'mine', u'opposit']
[u'govt', u'revis', u'welfar', u'work', u'rule', u'child']
[u'govt', u'tight', u'lip', u'airport', u'secur', u'report']
[u'govt', u'appeal', u'osland', u'rule']
[u'govt', u'build', u'stadium', u'tender', u'process']
[u'support', u'oakaje', u'deep', u'water', u'port']
[u'hama', u'vow', u'fight', u'disarm']
[u'health', u'chief', u'happi', u'paediatr', u'ward', u'oper']
[u'heavi', u'rain', u'strong', u'wind', u'lash', u'tasmania']
[u'henri', u'injuri', u'blow', u'franc']
[u'high', u'fuel', u'price', u'impact', u'region', u'age', u'care']
[u'hodg', u'wont', u'rush', u'recoveri']
[u'hoggard', u'expect', u'ash', u'twist']
[u'home', u'renov', u'activ', u'rebound']
[u'hope', u'opal', u'bring', u'shine', u'industri']
[u'howard', u'york', u'summit']
[u'human', u'bone', u'prompt', u'analysi']
[u'hunt', u'underway', u'cathi', u'freeman']
[u'india', u'pakistan', u'begin', u'prison', u'exchang']
[u'inquest', u'wont', u'investig', u'rockhampton', u'hospit']
[u'inquiri', u'find', u'govt', u'insensit', u'chen', u'defect']
[u'insur', u'open', u'reward', u'healthi', u'member']
[u'interview', u'john', u'buchanan']
[u'interview', u'matthew', u'hoggard']
[u'investig', u'begin', u'possibl', u'illeg', u'fish']
[u'islam', u'festiv', u'herald', u'cattl', u'export']
[u'israel', u'complet', u'gaza', u'pullout']
[u'ivori', u'coast', u'opposit', u'leader', u'return', u'exil']
[u'journalist', u'protect', u'backbench', u'say']
[u'joyc', u'remain', u'wari', u'telstra', u'bill', u'rush']
[u'joyc', u'vote', u'telstra', u'delay']
[u'judg', u'hand', u'tougher', u'sentenc', u'council']
[u'juri', u'clear', u'bouncer', u'hook', u'case']
[u'juri', u'seek', u'clarif', u'hook', u'case']
[u'kearn', u'hope', u'quick', u'recoveri']
[u'kearn', u'give', u'cowboy', u'clash']
[u'kennedi', u'join', u'kangaroo', u'squad']
[u'koizumi', u'win', u'landslid']
[u'kosovar', u'famili', u'await', u'resid', u'decis']
[u'larg', u'australian', u'deleg', u'attend', u'china', u'spin']
[u'legal', u'brew', u'floriad', u'event']
[u'librari', u'hous', u'communiti', u'sport', u'gear']
[u'local', u'govt', u'look', u'cancer', u'council', u'partnership']
[u'die', u'wollongong', u'domest', u'incid']
[u'hospit', u'hang', u'glider', u'crash']
[u'jail', u'year', u'horrif']
[u'man', u'charg']
[u'plead', u'guilti', u'manslaught', u'adelaid']
[u'steal', u'drouin', u'bar', u'take']
[u'maryborough', u'council', u'consid', u'societi']
[u'maryborough', u'shout', u'town', u'crier', u'champ']
[u'matera', u'prove', u'fit', u'preliminari']
[u'meatwork', u'open', u'door']
[u'meet', u'air', u'traffic', u'manag', u'concern']
[u'meet', u'answer', u'question']
[u'melbourn', u'name', u'terrorist', u'target']
[u'melburnian', u'urg', u'ignor', u'qaeda', u'video']
[u'fin', u'anim', u'welfar', u'breach']
[u'milit', u'offer', u'bounti', u'iraqi', u'report']
[u'minist', u'decid', u'citizen', u'juri']
[u'miss', u'cenotaph', u'rifl', u'come']
[u'rain', u'need', u'break', u'drought']
[u'rain', u'need', u'break', u'north', u'west', u'drought']
[u'rain', u'need', u'eas', u'water', u'ban']
[u'motorist', u'warn', u'hazard', u'road', u'condit']
[u'call', u'privileg', u'probe', u'travel']
[u'ban', u'don', u'team', u'colour']
[u'muswellbrook', u'await', u'mayor', u'elect', u'result']
[u'naiqama', u'catch', u'drive', u'licenc']
[u'nation', u'parti', u'promis', u'slash', u'petrol', u'price']
[u'nation', u'seek', u'apprenticeship', u'shake']
[u'nation', u'seek', u'aquif', u'detail']
[u'neiwand', u'give', u'suspend', u'sentenc', u'breach']
[u'newcastl', u'unit', u'good', u'sydney']
[u'kill', u'train', u'hit', u'school', u'truck', u'thailand']
[u'chang', u'terror', u'threat', u'level', u'ruddock', u'say']
[u'mission', u'imposs', u'say', u'buchanan']
[u'elect', u'campaign', u'go', u'wire']
[u'opposit', u'pour', u'cold', u'water', u'rainwat', u'tank', u'plan']
[u'outback', u'road', u'council', u'urg', u'fund', u'upgrad']
[u'palestinian', u'demolish', u'abandon', u'gaza', u'synagogu']
[u'founder', u'committ', u'hear', u'begin']
[u'park', u'host', u'age', u'care', u'symposium']
[u'peac', u'activ', u'reason', u'deport', u'beazley']
[u'perilya', u'persist', u'jewel']
[u'petrol', u'price', u'summit', u'pointless']
[u'pickett', u'hook', u'bigland', u'bump']
[u'pietersen', u'punish', u'australia']
[u'polic', u'continu', u'search', u'miss', u'woman']
[u'polic', u'declar', u'highway', u'campaign', u'success']
[u'polic', u'investig', u'hospit', u'properti', u'blaze']
[u'polic', u'drink', u'drive', u'arrest']
[u'polic', u'probe', u'school', u'arson', u'attack']
[u'polic', u'search', u'robber']
[u'power', u'year']
[u'profession', u'crimin', u'jail', u'antiqu', u'scam']
[u'public', u'show', u'littl', u'health', u'plan']
[u'public', u'warn', u'loom', u'danger']
[u'punter', u'aplenti', u'turn', u'kalgoorli', u'race']
[u'quoll', u'manag', u'plan', u'releas', u'late', u'trust', u'say']
[u'rain', u'help', u'crop', u'growth', u'condit']
[u'rain', u'put', u'flood', u'stand']
[u'rain', u'lift', u'level']
[u'region', u'hous', u'price', u'increas']
[u'repriev', u'threaten', u'speci']
[u'research', u'warn', u'grow', u'muslim', u'alien']
[u'resourc', u'stock', u'market', u'lift']
[u'rise', u'fuel', u'price', u'floriad', u'attend']
[u'road', u'death', u'prompt', u'traffic', u'polic']
[u'rock', u'star', u'burgl', u'stag', u'mega', u'concert']
[u'saint', u'lose', u'hamil', u'koschitzk']
[u'play', u'catch', u'polic', u'number', u'opposit']
[u'sceptic', u'greet', u'miner', u'sand', u'mine', u'applic']
[u'king', u'survivor', u'tell', u'brace', u'crash']
[u'search', u'begin', u'miss', u'freez']
[u'search', u'continu', u'miss', u'sydney']
[u'search', u'suspend', u'miss']
[u'secondari', u'school', u'receiv', u'canberra', u'educ', u'kit']
[u'selwood', u'readi', u'ricciuto']
[u'senat', u'inquiri', u'okay', u'telstra', u'bill']
[u'south', u'east', u'gear', u'local', u'govt', u'elect']
[u'spinner', u'plot', u'bangladeshi', u'collaps']
[u'springborg', u'keep', u'coalit', u'talk']
[u'stoke', u'sport', u'collus', u'case', u'begin']
[u'stradbrok', u'task', u'forc', u'evict', u'schooli', u'revel']
[u'summit', u'focus', u'region', u'develop']
[u'sydney', u'morgu', u'face', u'post', u'mortem', u'backlog']
[u'sydney', u'shoot', u'victim', u'famili', u'target', u'drive']
[u'farmer', u'monitor', u'potato', u'deal']
[u'telstra', u'fate', u'tie', u'nation', u'senat']
[u'tourism', u'event', u'help', u'promot', u'gold', u'coast', u'area']
[u'trade', u'agreement', u'promot', u'fish', u'industri', u'export']
[u'trio', u'surviv', u'gambier', u'crash']
[u'truss', u'get', u'goulburn', u'valley', u'highway', u'brief']
[u'look', u'boost', u'interst', u'student', u'number']
[u'vermeulen', u'power', u'home', u'german', u'superbik', u'round']
[u'vieira', u'hail', u'perfect', u'juve']
[u'visitor', u'flock', u'wildflow', u'spectacl']
[u'govt', u'reject', u'secess']
[u'warn', u'mcgrath', u'wreak', u'havoc']
[u'wentworthvill', u'factori', u'smoulder']
[u'western', u'farmer', u'hop', u'drought', u'declar']
[u'western', u'mayor', u'prepar', u'china', u'tour']
[u'wheat', u'grower', u'help', u'hand']
[u'wilkinson', u'lay']
[u'woman', u'charg', u'alic', u'stab', u'death']
[u'woman', u'fin', u'import', u'stun', u'gun']
[u'wood', u'retain', u'world', u'crown']
[u'add', u'indonesia', u'anti', u'polio', u'fight']
[u'leav', u'quadripleg', u'shallow']
[u'aborigin', u'continu', u'push', u'nation', u'park', u'control']
[u'investig', u'solomon', u'island', u'brawl']
[u'ord', u'wine', u'group', u'retail', u'report']
[u'match', u'even', u'pois', u'pakistan']
[u'cremat', u'follow', u'jamberoo', u'crash']
[u'armi', u'call', u'help', u'stop', u'cane', u'toad', u'spread']
[u'ash', u'defeat', u'wake', u'say', u'test', u'great']
[u'asio', u'thumb', u'affect', u'activist', u'travel']
[u'injur', u'philippin', u'polic', u'armouri']
[u'aussi']
[u'defend', u'lavish', u'shanghai', u'offic', u'launch']
[u'barbequ', u'menu', u'baxter', u'detaine']
[u'baxter', u'menu', u'fail', u'meet', u'standard']
[u'bang', u'explos', u'shed', u'light', u'star']
[u'black', u'bullet', u'line']
[u'bluescop', u'cost']
[u'boost', u'rare', u'speci', u'protect', u'water']
[u'boyl', u'launch', u'sewag', u'treatment', u'plant', u'upgrad']
[u'brand', u'highway', u'overtak', u'lane', u'sooner']
[u'breaker', u'keen', u'latham', u'join']
[u'breaker', u'keen', u'snare', u'latham']
[u'broom', u'take', u'deliveri', u'rescu', u'boat']
[u'budget', u'crisi', u'blame', u'lack', u'school', u'secur']
[u'bush', u'declar', u'emerg', u'post', u'katrina', u'arizona']
[u'bush', u'wrap', u'hurrican', u'tour']
[u'busi', u'group', u'issu', u'stadium', u'project', u'caution']
[u'businessman', u'face', u'jail', u'contempt', u'charg']
[u'bypass', u'rout', u'indigen', u'survey', u'continu']
[u'cadel', u'escap', u'custodi']
[u'step', u'polic', u'amid', u'fish', u'ident']
[u'canberra', u'archbishop', u'formal', u'resign']
[u'cane', u'transport', u'crash', u'spark', u'safeti']
[u'carenn', u'school', u'parent', u'hire', u'therapist']
[u'carer', u'fund', u'fight', u'canberra']
[u'children', u'blame', u'weekend', u'crime']
[u'colombian', u'plane', u'hijack', u'surrend']
[u'commonwealth', u'address', u'pierc', u'creek', u'report']
[u'communiti', u'farewel', u'young', u'crash', u'victim']
[u'consum', u'affair', u'investig', u'trader']
[u'correct', u'servic', u'exec', u'appoint', u'manag']
[u'costello', u'unsur', u'telstra', u'sale', u'famili', u'impact']
[u'council', u'back', u'tallawarra', u'rezon']
[u'council', u'committe', u'consid', u'year', u'alcohol']
[u'council', u'consid', u'aerodrom', u'master', u'plan']
[u'council', u'consid', u'tourist', u'villag', u'plan']
[u'cranki', u'magpi', u'land', u'pair', u'hospit']
[u'cricket', u'real', u'winner', u'ash', u'say']
[u'croker', u'island', u'rebuild', u'top']
[u'cunningham', u'question', u'patient', u'train', u'transfer']
[u'custom', u'dud', u'build', u'insur', u'industri']
[u'dairi', u'export', u'prepar', u'contamin', u'canola']
[u'dead', u'intersect', u'upgrad']
[u'debat', u'focus', u'aquif', u'manag']
[u'disabl', u'pension', u'wors', u'welfar']
[u'dodd', u'injuri', u'cloud']
[u'lover', u'internet', u'remark', u'earn', u'singaporean']
[u'doyl', u'keep', u'toll', u'polici']
[u'drought', u'affect', u'murray', u'gum', u'imit', u'flood']
[u'drought', u'relief', u'payment', u'extend']
[u'egan', u'stay', u'geriatr', u'fairytal']
[u'england', u'reclaim', u'ash']
[u'england', u'ecstasi', u'histor', u'ash']
[u'england', u'triumph', u'ash', u'year']
[u'english', u'media', u'delight', u'australia', u'ash', u'defeat']
[u'evan', u'tate', u'post', u'loss']
[u'extra', u'search', u'power', u'plan', u'polic']
[u'farmer', u'feel', u'impact', u'rise', u'fuel', u'price']
[u'farmer', u'recognis', u'tilt', u'train', u'crash']
[u'feder', u'govt', u'indigen', u'educ', u'chang', u'worri']
[u'feder', u'parliament', u'hear', u'push', u'wollongong']
[u'govt', u'stand', u'quoll', u'plan', u'delay']
[u'field', u'vote', u'telstra', u'sale']
[u'fifa', u'line', u'wada', u'code', u'insist', u'blatter']
[u'saint', u'prove', u'fit']
[u'food', u'storag', u'niger', u'children', u'starv']
[u'foodland', u'profit', u'demerg', u'loom']
[u'footbal', u'finger', u'game']
[u'bronco', u'star', u'ralli', u'troop']
[u'fuel', u'price', u'consid', u'taxi', u'fare', u'review']
[u'fund', u'shortfal', u'hamper', u'seawe', u'industri', u'plan']
[u'fund', u'address', u'cape', u'york', u'domest', u'violenc']
[u'legal', u'fight', u'woman', u'free', u'kill']
[u'veteran', u'mark', u'japanes', u'surrend']
[u'gippsland', u'carer', u'join', u'fight', u'fund']
[u'govt', u'announc', u'sheep', u'tag', u'polici']
[u'govt', u'criticis', u'withhold', u'blood', u'lead', u'level']
[u'govt', u'fund', u'philippin', u'polic', u'centr']
[u'govt', u'look', u'build', u'region', u'skill']
[u'govt', u'extradit', u'accus', u'singapor', u'murder']
[u'govt', u'riverland', u'roadwork']
[u'govt', u'urg', u'help', u'lower', u'cost', u'convers']
[u'gower', u'replac', u'rooney', u'xiii']
[u'grafton', u'die', u'crash', u'near', u'glen', u'inn']
[u'green', u'group', u'question', u'project']
[u'gunn', u'begin', u'invest', u'drive']
[u'harewood', u'trick', u'lift', u'hammer', u'villa']
[u'health', u'servic', u'offer', u'assur']
[u'hook', u'bouncer', u'face', u'civil', u'case']
[u'hook', u'wife', u'pursu', u'bouncer', u'civil', u'case']
[u'hormon', u'growth', u'promot', u'make', u'cattl', u'meat']
[u'hospit', u'inquiri', u'need', u'time', u'wider', u'scope']
[u'urg', u'reform', u'strong', u'aust', u'economi']
[u'immigr', u'jail', u'wife', u'brutal', u'murder']
[u'indigen', u'affair', u'dept', u'examin', u'heritag', u'site']
[u'indigen', u'communiti', u'access', u'land', u'care']
[u'indonesian', u'embassi', u'bomb', u'figur', u'sentenc']
[u'industri', u'magpi', u'salut', u'countri', u'standard']
[u'itali', u'court', u'uphold', u'extradit', u'bomb', u'suspect']
[u'jakarta', u'court', u'sentenc', u'embassi', u'bomber', u'death']
[u'joint', u'winner', u'name', u'jack', u'bett', u'medal']
[u'karzai', u'call', u'anti', u'terror', u'rethink']
[u'katrina', u'victim', u'homeless', u'year']
[u'labor', u'accus', u'govt', u'ident', u'fraud']
[u'labor', u'urg', u'releas', u'telstra', u'job', u'document']
[u'lake', u'macquari', u'council', u'quit']
[u'final', u'catch', u'arm', u'robber']
[u'group', u'suggest', u'legal', u'action', u'late', u'doctor']
[u'lord', u'mayor', u'hit', u'increas']
[u'lucki', u'select', u'sydney', u'deputi', u'mayor']
[u'die', u'sovereign', u'truck', u'crash']
[u'guilti', u'amphetamin', u'drug']
[u'jail', u'murder']
[u'man', u'ban']
[u'manslaught', u'stereo', u'nois', u'earn', u'sentenc']
[u'mayor', u'warn', u'widespread', u'fallout', u'gold', u'coast']
[u'meet', u'spotlight', u'school', u'asbesto', u'concern']
[u'mental', u'problem', u'plagu', u'young', u'australian', u'veteran']
[u'miller', u'see', u'long', u'term', u'gain', u'cost', u'restructur']
[u'millic', u'hurt', u'shed', u'blaze']
[u'mine', u'industri', u'worker', u'leav', u'littl', u'time']
[u'mine', u'warn', u'price', u'effect']
[u'motorcycl', u'levi', u'rise', u'greedi', u'grab']
[u'mugab', u'legalis', u'seizur', u'white', u'farm']
[u'murilla', u'council', u'deliv', u'record', u'budget']
[u'muslim', u'group', u'withdraw', u'polit', u'parti', u'applic']
[u'nation', u'seek', u'power', u'chang']
[u'leadership', u'team', u'blayney', u'council']
[u'support', u'telstra', u'sale']
[u'investig', u'plan', u'rocki', u'hospit']
[u'polit', u'activist', u'detent', u'ruddock']
[u'rest', u'feder']
[u'north', u'korea', u'vow', u'continu', u'peac', u'nuclear']
[u'norwegian', u'conced', u'defeat']
[u'parliament', u'usher']
[u'seek', u'nation', u'rule', u'junk', u'food']
[u'smoke', u'clear', u'say', u'lobbi', u'group']
[u'call', u'sniffabl', u'petrol', u'fund']
[u'outback', u'council', u'look', u'save', u'water']
[u'oyster', u'farmer', u'slam', u'govt', u'test', u'delay']
[u'pakistan', u'propos', u'fenc', u'afghan', u'border']
[u'palestinian', u'tell', u'loot', u'start', u'rebuild']
[u'paramed', u'disput', u'escal']
[u'park', u'gear', u'transport', u'forum']
[u'pasco', u'continu', u'wagga', u'mayor']
[u'peopl', u'skill', u'busi']
[u'pietersen', u'centuri', u'help', u'england', u'ash']
[u'pietersen', u'happi', u'share', u'ash', u'spoil']
[u'pilot', u'kill', u'plane', u'crash', u'southern']
[u'poki', u'worri', u'reject']
[u'polic', u'appeal', u'help', u'kimberley', u'pearl', u'theft']
[u'polic', u'doubl', u'reward', u'decad', u'murder', u'case']
[u'polic', u'fear', u'thredbo', u'skier', u'die']
[u'polic', u'weapon', u'footi', u'match']
[u'polic', u'hunt', u'riverland', u'escap']
[u'polic', u'hunt', u'robina', u'servic', u'station', u'bandit']
[u'polic', u'rais', u'fund', u'sick', u'children']
[u'power', u'line', u'broadband', u'threaten', u'telstra', u'market']
[u'power', u'worker', u'blame', u'blackout']
[u'progress', u'china', u'good', u'howard']
[u'public', u'urg', u'help', u'catch', u'graffiti', u'vandal']
[u'public', u'urg', u'help', u'miss', u'woman']
[u'public', u'urg', u'speak', u'draft', u'disast', u'studi']
[u'public', u'warn', u'explos', u'danger']
[u'push', u'help', u'campasp', u'irrig']
[u'brothel', u'legalis', u'escort', u'servic']
[u'racq', u'call', u'petrol', u'compani', u'lower', u'price']
[u'racv', u'predict', u'eas', u'fuel', u'price']
[u'rain', u'lift', u'catchment', u'level']
[u'random', u'search', u'anti', u'terror', u'law']
[u'ravensthorp', u'airport', u'share', u'secur', u'upgrad']
[u'record', u'price', u'cattl', u'sale']
[u'report', u'highlight', u'strong', u'coast', u'tourism', u'industri']
[u'river', u'award', u'recognis', u'environ', u'kimberley']
[u'rspca', u'campaign', u'target', u'live', u'export', u'pork']
[u'rspca', u'volunt', u'fin', u'anim', u'cruelti']
[u'team', u'lead', u'cooma', u'monaro', u'shire']
[u'sculptur', u'honour', u'shire', u'presid']
[u'seller', u'biopic', u'scoop', u'creativ', u'art', u'emmi']
[u'senat', u'close', u'approv', u'telstra', u'sale']
[u'failur', u'patel', u'appoint']
[u'shop', u'seek', u'approv']
[u'sherman', u'see', u'long', u'career', u'lion']
[u'sherman', u'show', u'loyalti', u'lion']
[u'shire', u'seek', u'fund', u'industri', u'park', u'plan']
[u'sikh', u'communiti', u'highway', u'talk']
[u'soutbound', u'bridg', u'stay', u'close', u'work']
[u'south', u'east', u'feel', u'impact', u'hoon', u'law']
[u'storm', u'reject', u'illeg', u'tackl', u'claim']
[u'storm', u'toll', u'towong', u'shire', u'infrastructur']
[u'studi', u'focus', u'passiv', u'smoke', u'asthma', u'link']
[u'studi', u'examin', u'impact', u'resourc', u'issu']
[u'super', u'school', u'report', u'recommend', u'ginninderra', u'site']
[u'sustain', u'citi', u'report', u'pleas']
[u'swan', u'play', u'saint', u'final', u'break']
[u'tasmanian', u'invest', u'home', u'renov']
[u'tasmanian', u'trial', u'broadband', u'power', u'line']
[u'teen', u'face', u'court', u'assault']
[u'telford', u'lose', u'appeal', u'fraud', u'convict']
[u'telstra', u'sale', u'australian', u'famili', u'field']
[u'test', u'confirm', u'wrong', u'hors', u'send']
[u'outplay', u'pont', u'admit']
[u'thousand', u'expect', u'flock', u'westech', u'field', u'day']
[u'tiger', u'sign', u'hodgson']
[u'tough', u'condit', u'cork', u'mcguigan', u'profit']
[u'townsvill', u'get', u'long', u'await', u'cruis', u'ship', u'termin']
[u'tradit', u'owner', u'dont', u'want', u'nuclear', u'wast', u'dump']
[u'tripodi', u'defend', u'auslink', u'delay']
[u'mous', u'take', u'hand', u'wring', u'chang']
[u'union', u'air', u'indigen', u'student', u'concern']
[u'union', u'doesnt', u'want', u'jail', u'manag', u'bonus', u'pay']
[u'union', u'say', u'hospit', u'troubl', u'shooter', u'appoint']
[u'open', u'prove', u'popular']
[u'student', u'shout', u'zealand']
[u'chief', u'justic', u'nomine', u'promis', u'open', u'mind']
[u'deni', u'gas', u'iraqi', u'town']
[u'firm', u'sourc', u'silver', u'perilya']
[u'readi', u'help', u'bird', u'outbreak', u'say', u'rudd']
[u'voter', u'satisfi', u'howard']
[u'opposit', u'criticis', u'secess', u'plan']
[u'warn', u'test', u'futur']
[u'waugh', u'caution', u'aussi', u'team', u'blood', u'let']
[u'wheatbelt', u'salin', u'research', u'help', u'save', u'town']
[u'wheat', u'grower', u'warn', u'threat']
[u'wine', u'industri', u'boom', u'attract', u'record', u'entri']
[u'wit', u'recal', u'rescu', u'king', u'survivor']
[u'women', u'discuss', u'impact', u'fisheri', u'closur']
[u'need', u'telstra', u'servic']
[u'boost', u'coal', u'seam', u'field']
[u'aborigin', u'spear', u'hobart', u'beach']
[u'activist', u'agre', u'deport']
[u'hope', u'crowd']
[u'agforc', u'see', u'benefit', u'telstra', u'packag']
[u'antarctica', u'host', u'snow']
[u'ash', u'deliv', u'citizenship', u'victori', u'coach']
[u'ash', u'seri', u'hail', u'greatest']
[u'asic', u'drop', u'investig', u'telstra', u'remark']
[u'australia', u'suffer', u'seven', u'wicket', u'loss']
[u'award', u'recognis', u'region', u'ambul', u'station']
[u'baghdad', u'bomber', u'lure', u'victim', u'kill', u'score']
[u'bank', u'push', u'market', u'high']
[u'bemax', u'record', u'profit', u'rise']
[u'await', u'council', u'worker', u'agreement', u'repli']
[u'compani', u'pull', u'mine', u'expo']
[u'blaze', u'destroy', u'histor', u'gold', u'coast', u'home']
[u'blue', u'delist', u'clark', u'bowyer', u'bow']
[u'bodi', u'float', u'murray', u'river']
[u'boyl', u'inspect', u'plan', u'moranbah', u'hous', u'site']
[u'bullet', u'hunt', u'say', u'wright']
[u'busi', u'chamber', u'chief', u'look', u'direct']
[u'perman', u'wentworth', u'ambul', u'servic']
[u'cattlemen', u'threaten', u'return', u'high', u'countri']
[u'cfmeu', u'claim', u'feder', u'govt', u'blackmail', u'road']
[u'chamber', u'highlight', u'roster', u'improv']
[u'champion', u'leagu', u'win', u'lyon', u'liverpool']
[u'chopper', u'help', u'rescu', u'nation', u'park', u'fall']
[u'committe', u'hear', u'final', u'raaf', u'base', u'submiss']
[u'compani', u'collaps', u'leav', u'grain', u'grower']
[u'cook', u'seventh', u'second', u'stage']
[u'council', u'chang', u'zone', u'biodiesel', u'plant']
[u'council', u'consid', u'chang', u'societi', u'agreement']
[u'council', u'debat', u'moral', u'hotel', u'licenc', u'hear']
[u'council', u'hold', u'busi', u'plan']
[u'councillor', u'question', u'escort', u'industri', u'plan']
[u'council', u'form', u'museum', u'committe']
[u'council', u'predict', u'grow', u'opposit', u'dump', u'plan']
[u'council', u'urg', u'unit', u'stanc']
[u'council', u'quiz', u'minist', u'transport', u'option']
[u'coupl', u'deport', u'albania', u'vanston']
[u'court', u'consid', u'evid', u'murder', u'convict']
[u'cowboy', u'readi', u'face', u'loom', u'storm']
[u'cpsu', u'worri', u'futur', u'telstra', u'centr']
[u'cranki', u'magpi', u'captur', u'reloc']
[u'crow', u'confid', u'repeat']
[u'decis', u'loom', u'troubl', u'stock', u'fee']
[u'deliveri', u'caesarean', u'section', u'link', u'cow', u'milk']
[u'diver', u'join', u'search', u'miss', u'skier']
[u'doctor', u'highlight', u'hospit', u'exodus']
[u'dress', u'standard', u'question', u'parliament']
[u'driver', u'question', u'crash', u'hous']
[u'drought', u'stop', u'hockey', u'field']
[u'drink', u'driver', u'kill', u'seven', u'cambodia']
[u'earthquak', u'rattl', u'central', u'australia']
[u'eel', u'seek', u'appeal', u'moimoi']
[u'emerg', u'worker', u'ralli', u'chang']
[u'england', u'edg', u'closer', u'number', u'rank']
[u'england', u'world', u'domin']
[u'english', u'cricket', u'fan', u'continu', u'celebr', u'ash']
[u'famili', u'seek', u'compens', u'suicid']
[u'farmer', u'critic', u'nffs', u'telstra', u'sale', u'back']
[u'farmer', u'hope', u'rain', u'break', u'drought']
[u'fear', u'unknown', u'keep', u'sydneysid', u'home']
[u'firm', u'say', u'accc', u'soft', u'telstra']
[u'food', u'get', u'longer', u'extend', u'hour', u'trial']
[u'bronco', u'question', u'tiger', u'tough']
[u'health', u'minist', u'deni', u'patel', u'scandal']
[u'free', u'tonic', u'freddi', u'ash', u'reward']
[u'fresh', u'claim', u'immigr', u'peopl', u'smuggl', u'tactic']
[u'fuel', u'shortag', u'hamper', u'deliveri', u'sudan']
[u'gilchrist', u'back', u'pont']
[u'govt', u'deni', u'plan', u'close', u'school']
[u'govt', u'eye', u'pacif', u'island', u'boost']
[u'govt', u'hop', u'action', u'bear', u'fruit']
[u'govt', u'oppos', u'western', u'power', u'amend']
[u'govt', u'respond', u'rspca', u'live', u'export', u'critic']
[u'govt', u'telstra', u'tactic']
[u'govt', u'surpris', u'fish', u'ident', u'boat', u'seizur']
[u'govt', u'abandon', u'extraordinari', u'drive', u'licenc']
[u'govt', u'literaci', u'fund', u'delay']
[u'govt', u'urg', u'boost', u'oversea', u'meet', u'target']
[u'great', u'lake', u'council', u'lock', u'mayor', u'vote', u'date']
[u'guantanamo', u'hunger', u'strike', u'grow']
[u'hama', u'blow', u'hole', u'gaza', u'border']
[u'hay', u'retain', u'mayor', u'spot']
[u'higgin', u'lead', u'aria', u'award', u'nomine', u'list']
[u'hous', u'construct', u'figur', u'surg']
[u'howard', u'foreshadow', u'spend', u'foreign']
[u'hull', u'reject', u'telstra', u'vote', u'claim']
[u'hurrican', u'death', u'toll', u'climb', u'past']
[u'investig', u'continu', u'gove', u'blackout']
[u'iraqi', u'qaeda', u'claim', u'suicid', u'bomb', u'campaign']
[u'iraq', u'troop', u'withdraw', u'plan', u'unclear', u'say', u'labor']
[u'joyc', u'close', u'back', u'telstra', u'sale']
[u'joyc', u'signal', u'support', u'telstra', u'legisl']
[u'joyc', u'suffer', u'health', u'scare']
[u'group', u'profit', u'defi', u'expect']
[u'karzai', u'urg', u'rethink', u'terror', u'fight']
[u'kean', u'injuri', u'blow', u'unit']
[u'kelso', u'freight', u'termin', u'propon', u'work']
[u'kid', u'hold', u'cell', u'foster', u'home']
[u'kimberley', u'host', u'camp', u'men', u'group']
[u'labour', u'student', u'loan', u'cost', u'pledg', u'wrong', u'treasuri']
[u'lagoon', u'manag', u'plan']
[u'landcar', u'report', u'offer', u'blueprint', u'greener', u'farm']
[u'letterman', u'kidnap', u'accus', u'jail', u'lesser', u'charg']
[u'liber', u'director', u'urg', u'ditch', u'dirt', u'unit', u'tactic']
[u'liquid', u'sell', u'meatwork', u'asset']
[u'lismor', u'urg', u'poultri', u'plan']
[u'local', u'carer', u'join', u'push', u'support']
[u'locust', u'expect', u'central', u'west', u'spring']
[u'london', u'celebr', u'england', u'ash']
[u'plead', u'guilti', u'danger', u'drive', u'girl']
[u'suffer', u'percent', u'burn']
[u'matera', u'prove', u'fit']
[u'mcguigan', u'look', u'boost', u'loxton', u'wineri', u'effici']
[u'mcguigan', u'profit', u'drop', u'wont', u'affect', u'hunter']
[u'mcguigan', u'focus', u'mildura', u'oper']
[u'meatwork', u'penalis', u'pollut', u'oversight']
[u'armi', u'uniform', u'kill', u'near', u'baghdad']
[u'microsoft', u'exec', u'clear', u'work', u'googl']
[u'milk', u'product', u'continu', u'increas']
[u'minist', u'focus', u'govern', u'mornington']
[u'miss', u'man', u'bodi', u'thredbo', u'river']
[u'miss', u'townsvill', u'woman', u'aliv']
[u'molik', u'winner', u'circl']
[u'fund', u'seek', u'boost', u'region', u'infrastructur']
[u'nation', u'park', u'subject', u'wild']
[u'air', u'golf', u'club', u'develop', u'fear']
[u'murali', u'doubl', u'strike', u'bangladesh', u'rope']
[u'muralitharan', u'bag', u'test', u'bangladesh']
[u'nation', u'parti', u'edg', u'ahead', u'poll']
[u'nation', u'secur', u'reli']
[u'law', u'parent', u'brief', u'children']
[u'seafood', u'standard', u'ensur', u'qualiti', u'say', u'minist']
[u'test', u'dead', u'chicken', u'virus']
[u'govt', u'fund', u'cairn', u'cruis', u'ship', u'termin']
[u'extend', u'crop']
[u'pressur', u'boost', u'live', u'murray', u'effort']
[u'nurs', u'home', u'owner', u'charg', u'hurrican', u'death']
[u'outback', u'festiv', u'zani', u'event', u'attract', u'crowd']
[u'pair', u'charg', u'drink', u'drive']
[u'pair', u'face', u'court', u'jail', u'escap', u'chase']
[u'palmerston', u'school', u'abandon', u'project']
[u'paramilitari', u'group', u'ceasefir', u'longer', u'recognis']
[u'past', u'worker', u'suspect', u'pearl', u'heist']
[u'peacock', u'fin', u'drink', u'drive', u'guilti', u'plea']
[u'peacock', u'front', u'court', u'drink', u'drive', u'charg']
[u'petit', u'seek', u'fund', u'lake', u'entranc', u'sand']
[u'petrol', u'price', u'drive', u'drop', u'confid']
[u'petrol', u'price', u'top', u'list', u'aussi', u'woe']
[u'polic', u'clear', u'mcgrath', u'letter']
[u'polic', u'investig', u'dead', u'hous', u'blaze']
[u'polic', u'probe', u'mcgrath', u'letter', u'ebay']
[u'polic', u'probe', u'plane', u'crash', u'releas', u'victim']
[u'polic', u'step', u'search', u'miss', u'teen']
[u'polic', u'warn', u'hydropon', u'drug', u'plant']
[u'polic', u'plane', u'crash', u'victim']
[u'politician', u'broom', u'base']
[u'pont', u'return', u'home']
[u'pont', u'return', u'home', u'ash', u'loss']
[u'port', u'hedland', u'health', u'servic', u'brief']
[u'princess', u'mari', u'hospitalis']
[u'probe', u'continu', u'redan', u'hous', u'blaze']
[u'public', u'help', u'seek', u'rescu', u'histor', u'tree']
[u'public', u'want', u'good', u'telstra', u'servic']
[u'public', u'urg', u'blood']
[u'farm', u'urg', u'diversifi', u'maximum', u'impact']
[u'govt', u'consid', u'hanson', u'compo']
[u'public', u'hospit', u'doctor', u'rise']
[u'region', u'invest', u'fund', u'offer']
[u'remain', u'wwii', u'airmen', u'buri', u'germani']
[u'rotari', u'hous', u'open', u'wimmera']
[u'saff', u'hold', u'telstra', u'sale', u'crisi', u'meet']
[u'move', u'uniform', u'defam', u'law']
[u'seagul', u'cull', u'urg', u'port', u'lincoln']
[u'second', u'sentenc', u'death', u'embassi', u'bomb']
[u'secur', u'guard', u'death', u'prompt', u'safeti', u'shake']
[u'senat', u'approv', u'telstra', u'sale']
[u'urg', u'flood', u'caution']
[u'seven', u'shoot', u'dead', u'elect', u'taliban', u'attack']
[u'sheen', u'call', u'tiger', u'defenc']
[u'sikh', u'communiti', u'form', u'highway', u'work', u'group']
[u'singh', u'join', u'grand', u'slam', u'field']
[u'south', u'africa', u'labour', u'mediat', u'strike']
[u'staff', u'reinstat', u'paedophil', u'transfer']
[u'student', u'learn', u'drug', u'awar']
[u'surfer', u'court', u'shoot', u'death', u'statement']
[u'swan', u'poor', u'final', u'record', u'irrelev', u'say', u'thoma']
[u'taibu', u'half', u'centuri', u'lift', u'zimbabw', u'india']
[u'tasmanian', u'devil', u'lifelin', u'ignor', u'park']
[u'tasmanian', u'woman', u'win', u'nation', u'volunt', u'award']
[u'tasmania', u'traine', u'specialist', u'privat']
[u'teacher', u'threaten', u'industri', u'action', u'special']
[u'teacher', u'stand', u'asid', u'claim']
[u'telstra', u'job', u'guarante', u'say', u'govt']
[u'termin', u'work', u'includ', u'residenti']
[u'countri', u'hour', u'roadshow', u'go', u'hyden']
[u'thousand', u'nigerian', u'protest', u'fuel', u'price']
[u'seed', u'nadal', u'eas', u'china', u'open']
[u'tourism', u'industri', u'hop', u'fuel', u'price', u'relief']
[u'tourism', u'plan', u'breath', u'life', u'gold']
[u'town', u'farewel', u'drown', u'children']
[u'townsvill', u'woman', u'swim', u'english', u'channel']
[u'turnbul', u'say', u'busi', u'interest', u'fulli', u'disclos']
[u'shoot', u'dead', u'exclus', u'london', u'store']
[u'union', u'fear', u'coast', u'telstra', u'loss']
[u'union', u'fear', u'telstra', u'region', u'job', u'threat']
[u'union', u'fear', u'toowoomba', u'telstra', u'job']
[u'union', u'offici', u'fin', u'assault']
[u'union', u'telstra', u'plan', u'cut']
[u'union', u'vow', u'continu', u'western', u'power', u'fight']
[u'vanston', u'deni', u'ident', u'fraud', u'claim']
[u'vanston', u'releas', u'document', u'fals']
[u'back', u'telstra', u'sale', u'legisl']
[u'ombudsman', u'grant', u'phone', u'tap', u'power']
[u'vietnames', u'firm', u'eye', u'kalgoorli', u'opportun']
[u'wall', u'street', u'take', u'katrina']
[u'warn', u'skipper', u'say', u'lille']
[u'shire', u'join', u'italian', u'exhibit']
[u'water', u'author', u'battl', u'woe']
[u'track', u'threaten', u'delay', u'plaster', u'spring']
[u'windi', u'train', u'squad', u'australia']
[u'woman', u'convict', u'lamb', u'chop', u'stab', u'releas']
[u'woman', u'sentenc', u'lamb', u'chop', u'stab']
[u'work', u'begin', u'graduat', u'school', u'medicin']
[u'work', u'women', u'remain', u'famili', u'caretak', u'studi']
[u'world', u'leader', u'gather', u'talk']
[u'kill', u'indian', u'factori', u'blaze']
[u'tariff', u'recommend', u'affect']
[u'win', u'right', u'latham', u'interview']
[u'acehnes', u'rebel', u'begin', u'weapon', u'handov']
[u'acoust', u'spi', u'decod', u'typist', u'tap']
[u'action', u'group', u'oppos', u'marina']
[u'activist', u'block', u'highway', u'rais', u'safeti', u'messag']
[u'snapshot', u'reflect', u'hous', u'price', u'boom']
[u'airport', u'futur', u'spotlight']
[u'alic', u'council', u'step', u'push', u'sniff', u'petrol']
[u'alleg', u'peopl', u'smuggler', u'case', u'adjourn']
[u'andren', u'nomin', u'millthorp', u'heritag', u'list']
[u'annan', u'plead', u'uniti']
[u'term', u'ahead', u'wingecarribe', u'mayor']
[u'anti', u'cancer', u'compound', u'bean', u'nut', u'cereal']
[u'bank', u'launch', u'cambodia']
[u'queensland', u'woman', u'recov', u'hospit']
[u'arm', u'cach', u'gaza', u'tunnel']
[u'arsenal', u'ajax', u'grab', u'late', u'winner']
[u'arson', u'suspect', u'southport', u'high', u'blaze']
[u'asbesto', u'diseas', u'epidem', u'northern', u'town']
[u'senat', u'inquiri', u'critic', u'immigr']
[u'aust', u'barley', u'qualiti', u'boost', u'japanes', u'beer']
[u'australian', u'women', u'get', u'fatter', u'quicker']
[u'australia', u'england', u'slump', u'fifa', u'rank']
[u'author', u'polic', u'murder', u'book', u'act', u'uneth']
[u'batavia', u'begin', u'intens', u'uranium', u'quest']
[u'beazley', u'consid', u'legal', u'option']
[u'beazley', u'consid', u'legal', u'option', u'latham', u'attack']
[u'beazley', u'dismiss', u'errat', u'latham']
[u'shortag', u'leav', u'pension', u'emerg', u'dept']
[u'bendigo', u'central', u'counter', u'terror', u'exercis']
[u'bigger', u'brain', u'bird', u'adapt']
[u'price', u'rise', u'telstra', u'region', u'broadband']
[u'board', u'seek', u'motel', u'fund']
[u'bodi', u'think', u'miss', u'melbourn']
[u'bolton', u'readi', u'turn', u'tabl', u'saint']
[u'bomber', u'strike', u'baghdad', u'second']
[u'britney', u'spear', u'give', u'birth']
[u'break', u'hill', u'resid', u'address', u'health', u'gather']
[u'brown', u'doubt', u'senat', u'pass', u'food', u'label']
[u'brumbi', u'criticis', u'opposit', u'toll', u'fund', u'plan']
[u'bulldog', u'darwin']
[u'cane', u'toad', u'larger', u'faster', u'expect', u'research']
[u'plough', u'hervey', u'loung', u'room']
[u'cattlemen', u'telstra', u'servic', u'cost', u'guarante']
[u'centr', u'predict', u'averag', u'spring', u'rainfal']
[u'chilean', u'suprem', u'court', u'lift', u'pinochet', u'immun']
[u'citrus', u'grower', u'contract', u'destroy', u'tree']
[u'scrutinis', u'illeg', u'escort', u'servic']
[u'coff', u'airport', u'passeng', u'number']
[u'communiti', u'bank', u'plan', u'moot', u'creswick']
[u'communiti', u'group', u'attack', u'dust']
[u'concern', u'surround', u'perri', u'lake', u'redevelop']
[u'coroni', u'inquiri', u'delay', u'highway', u'upgrad', u'call']
[u'council', u'appoint', u'tourism', u'manag']
[u'council', u'look', u'educ', u'tourism']
[u'court', u'order', u'west', u'bank', u'barrier']
[u'cricket', u'team', u'come', u'home', u'ash', u'defeat']
[u'crop', u'destroy', u'amidst', u'contamin', u'concern']
[u'cultur', u'problem', u'blame', u'solon', u'case']
[u'defeat', u'tiger', u'shatter', u'berrigan']
[u'direct', u'copper', u'ship', u'happen', u'soon']
[u'dismay', u'minist', u'reinstat', u'develop']
[u'doyl', u'drop', u'toll', u'free', u'road', u'promis']
[u'driver', u'catch', u'travel']
[u'drum', u'group', u'boost', u'member', u'confid']
[u'educ', u'dept', u'say', u'anson', u'street', u'special', u'school']
[u'effort', u'afoot', u'improv', u'waterway', u'condit']
[u'rope', u'latham', u'interview', u'injunct', u'lift']
[u'eumundi', u'dive', u'swim', u'centr', u'plan']
[u'famili', u'leav', u'gambier', u'doctor', u'dilemma']
[u'famili', u'overjoy', u'woman', u'surviv', u'day', u'bush']
[u'father', u'guilti', u'kill', u'babi']
[u'fear', u'polic', u'fee', u'rural', u'event']
[u'feder', u'court', u'hear', u'round', u'constitut']
[u'final', u'saint']
[u'forestri', u'outlin', u'year', u'log', u'plan']
[u'liber', u'leader', u'andrew', u'peacock', u'guilti']
[u'forum', u'spotlight', u'south', u'east', u'road', u'safeti']
[u'gaza', u'pullout', u'celebr', u'end', u'disord']
[u'genet', u'council', u'trace', u'canola', u'contamin']
[u'work', u'tie']
[u'gillespi', u'pledg', u'fight', u'test', u'place']
[u'glen', u'inn', u'severn', u'shire', u'mayor', u'stand']
[u'woe', u'highlight', u'need', u'strong', u'test', u'waff']
[u'goat', u'transplant', u'freez', u'ovari', u'produc']
[u'govt', u'lift', u'purchas', u'price', u'home', u'buyer']
[u'govt', u'reject', u'petrol', u'sniff', u'inquiri']
[u'govt', u'seek', u'consult', u'super', u'school']
[u'govt', u'protect', u'gold', u'coast', u'hinterland', u'sit']
[u'govt', u'urg', u'tax', u'help', u'ail', u'build']
[u'gregan', u'name', u'european', u'tour', u'squad']
[u'grind', u'water', u'agreement', u'worri', u'nation']
[u'group', u'want', u'fish', u'contest', u'lake', u'wivenho']
[u'grower', u'fear', u'import', u'pineappl', u'threaten']
[u'hall', u'defend', u'final', u'form']
[u'hawk', u'footbal', u'manag', u'hail', u'player', u'commit']
[u'health', u'chief', u'speak', u'ballarat', u'seminar']
[u'health', u'dept', u'program', u'focus', u'suicid', u'prevent']
[u'health', u'inquiri', u'shine', u'spotlight', u'hervey']
[u'hervey', u'surgeon', u'tell', u'inquiri', u'neglig']
[u'high', u'rise', u'plan', u'get', u'snub']
[u'hop', u'appeal', u'panel', u'approv', u'communiti', u'school']
[u'howard', u'delight', u'telstra', u'sale', u'clear']
[u'hudghton', u'struggl', u'saint', u'train']
[u'hunter', u'pirat', u'dethron', u'king']
[u'hurrican', u'homicid', u'charg', u'ridicul', u'say', u'lawyer']
[u'hurrican', u'katrina', u'report', u'diari']
[u'hurrican', u'ophelia', u'pound', u'north', u'carolina', u'coast']
[u'hurrican', u'survivor', u'day']
[u'encourag', u'util', u'adopt', u'safeti']
[u'immigr', u'dept', u'fail', u'solon', u'senat', u'inquiri', u'find']
[u'indigen', u'group', u'unabl', u'stop', u'forest', u'log']
[u'seek', u'swan', u'hill', u'virtual']
[u'isol', u'parent', u'urg', u'voic', u'telstra', u'failur']
[u'jetti', u'concern', u'spark', u'public', u'liabil']
[u'labor', u'brace', u'latham', u'diari', u'storm']
[u'landmark', u'world', u'summit', u'begin']
[u'latham', u'regret', u'diari', u'labor', u'presid', u'say']
[u'laxman', u'dravid', u'india', u'control']
[u'legal', u'action', u'halt', u'latham', u'interview']
[u'lender', u'attend', u'malle', u'wast', u'dump', u'talk']
[u'liber', u'pounc', u'latham', u'accus']
[u'life', u'knock', u'harder', u'women', u'studi']
[u'local', u'fish', u'ident', u'net', u'award']
[u'manag', u'post', u'tafe', u'concern', u'teacher']
[u'die', u'cabin', u'mudge', u'district']
[u'jail', u'assault', u'unconsci', u'friend']
[u'serious', u'injur', u'forklift', u'accid']
[u'face', u'court', u'log', u'protest']
[u'mark', u'latham', u'launch', u'scath', u'memoir']
[u'mayor', u'hop', u'massacr', u'claim', u'wont', u'stop', u'bypass']
[u'mcgrath', u'say', u'form', u'unaffect', u'letter', u'affair']
[u'mcgrath', u'shrug', u'letter', u'leak']
[u'miner', u'announc', u'iron', u'deposit']
[u'minist', u'defend', u'draft', u'park', u'manag', u'plan']
[u'minist', u'dismiss', u'boost', u'assembl']
[u'minist', u'urg', u'probe', u'byron', u'year', u'fund']
[u'minist', u'vow', u'wont', u'return', u'upper', u'hous']
[u'miss', u'hiker', u'safe']
[u'angri', u'women', u'refug', u'manag']
[u'back', u'feder', u'action', u'china', u'fruit', u'trade']
[u'hit', u'relationship', u'comment']
[u'warn', u'nation', u'price', u'telstra', u'stanc']
[u'brief', u'raid']
[u'multin', u'game', u'resum']
[u'murray', u'irrig', u'welcom', u'water', u'alloc']
[u'nation', u'accus', u'polit', u'payback']
[u'nation', u'dismiss', u'fear', u'voter', u'backlash']
[u'nation', u'oppos', u'farm', u'work', u'experi']
[u'telstra', u'stanc', u'hurt', u'saff', u'relat']
[u'hiker', u'miss', u'tasmania']
[u'exempt', u'ash', u'review', u'buchanan']
[u'npws', u'stand', u'poison', u'bait', u'research']
[u'nuttal', u'show', u'incompet', u'opposit']
[u'citi', u'centr', u'limit', u'bomb', u'threat', u'continu']
[u'citi', u'street', u'evacu', u'threat']
[u'price', u'soar', u'wall', u'street', u'slide']
[u'opposit', u'predict', u'custom', u'wors', u'telstra']
[u'parkin', u'escort', u'airport', u'ahead', u'deport']
[u'parti', u'differ', u'benefit', u'telstra', u'sale']
[u'peac', u'activist', u'throw', u'australia']
[u'pinochet', u'face', u'charg', u'immun', u'lift']
[u'polic', u'begin', u'road', u'safeti', u'crackdown']
[u'polic', u'investig', u'spate', u'theft']
[u'policeman', u'fin', u'misus', u'databas']
[u'polic', u'target', u'latest', u'iraq', u'bomb']
[u'pondeljak', u'sydney', u'encount']
[u'pont', u'dismiss', u'lille', u'spray']
[u'pont', u'mcgrath', u'gilchrist', u'flintoff', u'player']
[u'public', u'transport', u'ticket', u'senior']
[u'push', u'councillor', u'sack', u'anti', u'comment']
[u'govt', u'begin', u'doctor', u'recruit', u'drive']
[u'govt', u'drag', u'chain', u'sniff', u'fuel', u'subsidi']
[u'rain', u'help', u'boost', u'murray', u'water', u'alloc']
[u'ramon', u'inspir', u'berlin', u'museum']
[u'ranger', u'shoot', u'straight', u'titl']
[u'rape', u'charg', u'father', u'hire', u'hitman']
[u'rech', u'link', u'kosmina', u'adelaid']
[u'research', u'focus', u'reef', u'fish', u'catch', u'releas']
[u'resid', u'drop', u'bell', u'complaint', u'church', u'cost']
[u'rooney', u'champ', u'leagu', u'card']
[u'rspca', u'welcom', u'anim', u'cruelti', u'fin']
[u'rural', u'group', u'sceptic', u'telstra', u'deal']
[u'russian', u'billionair', u'seek', u'delay', u'fraud', u'appeal']
[u'russian', u'billionair', u'seek', u'delay', u'fraud', u'hear']
[u'govt', u'urg', u'adopt', u'petrol', u'subsidi']
[u'saint', u'chang', u'swan', u'clash']
[u'santo', u'begin', u'product', u'coast']
[u'score', u'kill', u'baghdad', u'attack']
[u'seven', u'detain', u'secur', u'raid', u'britain']
[u'offend', u'get', u'year', u'jail', u'hostag', u'ordeal']
[u'sharehold', u'right', u'claim', u'loss']
[u'shire', u'look', u'boost', u'care', u'centr', u'staff', u'number']
[u'sound', u'music', u'director', u'die']
[u'staff', u'boost', u'kalgoorli', u'race']
[u'stamp', u'honour', u'england', u'cricket']
[u'sydney', u'celebr', u'olymp', u'anniversari']
[u'tafe', u'chief', u'say', u'sale', u'wont', u'affect', u'educ', u'qualiti']
[u'teeth', u'nuclear', u'fallout', u'reveal', u'true']
[u'telstra', u'bill', u'dont', u'guarante', u'price', u'pariti']
[u'telstra', u'custom', u'wors', u'labor', u'say']
[u'telstra', u'share', u'ralli', u'senat', u'clear', u'sale']
[u'tendulkar', u'give', u'week', u'prove', u'super', u'seri']
[u'ash', u'match', u'match']
[u'senat', u'approv', u'sale', u'telstra']
[u'toni', u'collett', u'turn', u'movi', u'tune']
[u'traralgon', u'water', u'storag', u'boost', u'summer']
[u'treadmil', u'trim', u'eleph', u'winter', u'weight', u'gain']
[u'trio', u'surviv', u'griffith', u'boat', u'capsiz']
[u'troop', u'welcom', u'home', u'iraq']
[u'airlin', u'announc', u'bankruptci']
[u'niger', u'plan', u'concern', u'medic', u'bodi', u'say']
[u'activist', u'deport', u'polit', u'brown', u'say']
[u'pledg', u'salvag', u'trade', u'talk']
[u'offici', u'defend', u'recoveri', u'effort']
[u'util', u'support', u'govt', u'emiss', u'reduct', u'scheme']
[u'seek', u'produc', u'vote', u'right']
[u'govt', u'urg', u'bait', u'nation']
[u'waff', u'angri', u'telstra', u'sale', u'approv']
[u'forum', u'highlight', u'male', u'depress']
[u'memori', u'rememb', u'battl', u'britain']
[u'water', u'suppli', u'boost', u'plan', u'central']
[u'pave', u'mundin', u'green', u'bout']
[u'westech', u'event', u'hail', u'best']
[u'whitsunday', u'council', u'refer', u'airport']
[u'wimmera', u'malle', u'face', u'tougher', u'water', u'ban']
[u'win', u'bullet', u'pirat']
[u'woman', u'aliv', u'day', u'miss']
[u'woman', u'knock', u'twice', u'bush', u'ordeal']
[u'world', u'leader', u'incit']
[u'zarqawi', u'declar', u'shiit']
[u'zarqawi', u'declar', u'shiit', u'muslim']
[u'burni', u'waterfront', u'plan', u'get', u'approv']
[u'accid', u'spark', u'pedestrian', u'safeti', u'warn']
[u'agforc', u'put', u'focus', u'farm', u'safeti']
[u'akram', u'say', u'england', u'apologis', u'revers']
[u'need', u'examin', u'latham', u'claim', u'gillard']
[u'back', u'call', u'increas', u'disabl', u'servic']
[u'appeal', u'urg', u'gang', u'rapist', u'sentenc']
[u'armstrong', u'rule', u'comeback']
[u'set', u'provinci', u'competit']
[u'aurukun', u'communiti', u'see', u'opportun', u'bauxit']
[u'australia', u'join', u'global', u'fight', u'bird']
[u'australian', u'grand', u'prix', u'sue', u'competit']
[u'barmi', u'armi', u'salt', u'aussi', u'wound']
[u'bar', u'club', u'race', u'reopen', u'orlean']
[u'beekeep', u'overcom', u'hive', u'threat']
[u'council', u'meet', u'industri', u'agreement']
[u'crowd', u'turn', u'wast', u'dump', u'ralli']
[u'leas', u'rise']
[u'diesel', u'fuel', u'facil', u'construct']
[u'blaze', u'claim', u'kyogl', u'timber', u'factori']
[u'border', u'taylor', u'join', u'ash', u'inquest']
[u'bowden', u'hail', u'richmond', u'best']
[u'bowler', u'seek', u'kookyni', u'diesel', u'discount']
[u'kill']
[u'brumbi', u'ask', u'govt', u'freeway', u'fund']
[u'buchanan', u'park', u'tender', u'call']
[u'build', u'industri', u'plagu', u'thuggeri']
[u'bushfir', u'inquest', u'welcom', u'delay', u'queri']
[u'amend', u'nuclear', u'treati']
[u'canker', u'affect', u'farmer', u'benefit', u'land']
[u'child', u'case', u'prompt', u'abus', u'investig']
[u'china', u'provinc', u'close', u'coal', u'mine']
[u'chines', u'textil', u'industri', u'fail', u'wool']
[u'chip', u'induc', u'charm', u'make', u'robot', u'human']
[u'clark', u'talk', u'sack', u'council', u'director']
[u'clark', u'pull', u'stump', u'year', u'career']
[u'clipsal', u'close', u'plant']
[u'cloth', u'factori', u'blame', u'closur', u'cheap', u'import']
[u'commonwealth', u'takeov', u'health']
[u'communiti', u'want', u'women', u'refug', u'control', u'draper']
[u'compens', u'deport', u'activist', u'unlik', u'ruddock']
[u'council', u'decid', u'wast', u'plant', u'purchas']
[u'councillor', u'urg', u'stop', u'infight']
[u'council', u'argu', u'irrig', u'woe']
[u'council', u'warn', u'infrastructur', u'fund', u'fight']
[u'council', u'continu', u'help']
[u'council', u'warn', u'tourism', u'industri', u'face', u'tougher', u'time']
[u'court', u'strike', u'awi', u'conspiraci', u'applic']
[u'cowboy', u'look', u'passion', u'stormi', u'clash']
[u'cowboy', u'sweat', u'odonnel', u'fit']
[u'creditor', u'shut', u'stock', u'fee', u'compani']
[u'croc', u'readi', u'attack']
[u'crow', u'perth']
[u'dept', u'make', u'chang', u'children', u'lock']
[u'desert', u'communiti', u'criticis', u'youth', u'fund']
[u'dragon', u'support', u'highlight', u'poki', u'woe']
[u'eagl', u'crow', u'complet', u'prepar']
[u'employ', u'offset', u'petrol', u'price', u'hike', u'union']
[u'england', u'lack', u'warn', u'imran']
[u'expert', u'examin', u'print', u'tasmania']
[u'famili', u'wonder', u'mother', u'surviv']
[u'farmer', u'fight', u'food', u'crop', u'extens']
[u'fear', u'consum', u'buy', u'import', u'pineappl']
[u'floriad', u'celebr', u'year', u'rock', u'roll']
[u'food', u'label', u'chang', u'cost', u'consum']
[u'weightlift', u'avoid', u'jail', u'steroid']
[u'forum', u'debat', u'road', u'safeti', u'idea']
[u'gang', u'rapist', u'sentenc', u'reduc']
[u'gillard', u'back', u'beazley', u'thank', u'latham']
[u'gippsland', u'global', u'warm', u'talk']
[u'global', u'warm', u'stronger', u'hurrican']
[u'gold', u'push', u'market', u'record', u'high']
[u'golf', u'club', u'lose', u'appeal', u'damag', u'payout']
[u'googl', u'launch', u'blog', u'search', u'tool']
[u'govt', u'accus', u'reneg', u'park', u'mine']
[u'govt', u'announc', u'islam', u'consult', u'group']
[u'govt', u'charg', u'deport', u'activist']
[u'govt', u'reduc', u'sentenc', u'earli', u'guilti', u'plea']
[u'govt', u'urg', u'market', u'bundaberg', u'patel']
[u'graincorp', u'cut', u'job', u'streamlin', u'servic']
[u'green', u'group', u'attack', u'cruis', u'ship', u'termin', u'plan']
[u'group', u'lose', u'battl', u'gungahlin', u'drive']
[u'gunnedah', u'council', u'give', u'school', u'hall']
[u'health', u'worker', u'stop', u'work', u'disput']
[u'heidfeld', u'sign', u'long', u'term', u'deal']
[u'heinz', u'injuri', u'blow', u'unit']
[u'hensbi', u'world', u'match', u'play']
[u'hewitt', u'contest', u'thailand', u'open']
[u'high', u'fuel', u'price', u'worri', u'tourism', u'industri']
[u'honeysuckl', u'corp', u'chief', u'quit']
[u'hospit', u'dialysi', u'servic', u'expand']
[u'howard', u'applaud', u'isra', u'gaza', u'pullout']
[u'hunter', u'record', u'lower', u'jobless', u'rate']
[u'hunter', u'shoot', u'bounti']
[u'hurrican', u'ophelia', u'weaken', u'north', u'carolina']
[u'hyde', u'park', u'tree']
[u'iemma', u'brace', u'swing', u'latham', u'revel']
[u'immigr', u'reinstat', u'visa', u'bungl']
[u'independ', u'cinema', u'oper', u'increas', u'screen']
[u'india', u'thrash', u'dog', u'zimbabw']
[u'indonesia', u'confirm', u'fourth', u'human', u'bird', u'death']
[u'iran', u'presid', u'meet', u'leader']
[u'iraqi', u'civilian', u'die', u'violent', u'death', u'chief', u'say']
[u'iraq', u'slip', u'civil', u'presid', u'say']
[u'irrig', u'fairer', u'water', u'law']
[u'jail', u'chang', u'avoid', u'prison', u'rape', u'repeat']
[u'jail', u'sentenc', u'reduc', u'group', u'sydney', u'gang']
[u'jam', u'retir', u'footbal']
[u'jam', u'quit', u'footbal']
[u'joint', u'effort', u'fight', u'illeg', u'fish']
[u'judg', u'order', u'actor', u'sizemor', u'stay', u'rehab']
[u'katherin', u'lobbi', u'group', u'fight', u'nuclear', u'dump', u'plan']
[u'labor', u'know', u'latham', u'like', u'howard']
[u'late', u'marin', u'goal', u'sink', u'sydney']
[u'latham', u'attack', u'colleagu']
[u'latham', u'book', u'wont', u'long', u'term', u'effect']
[u'latham', u'say', u'diari', u'correct', u'public', u'record']
[u'lennon', u'music', u'slam', u'critic', u'close']
[u'liber', u'polici', u'promis', u'gippsland', u'road', u'boost']
[u'light', u'finger', u'green', u'thumb', u'pinch', u'public', u'plant']
[u'liverpool', u'look', u'pounc', u'struggl', u'unit']
[u'main', u'street', u'receiv', u'facelift']
[u'award', u'damag', u'partner', u'fail']
[u'build', u'volt', u'static', u'electr']
[u'charg', u'real', u'estat', u'agent', u'death']
[u'jail', u'life', u'murder', u'babi']
[u'question', u'real', u'estat', u'agent', u'death']
[u'market', u'rise', u'price', u'drop']
[u'mayor', u'elect', u'strong', u'contest']
[u'mayor', u'vote', u'intensifi']
[u'mayor', u'understand', u'daintre', u'build', u'reason']
[u'maywald', u'angri', u'telstra', u'sale', u'approv']
[u'mice', u'stem', u'cell', u'treat', u'sheep']
[u'mildura', u'plan', u'wast', u'dump', u'protest']
[u'miner', u'kill', u'accid']
[u'minist', u'apologis', u'highway', u'accid', u'victim']
[u'seek', u'nation', u'contamin', u'protocol']
[u'vegi', u'curb', u'pancreat', u'cancer', u'risk']
[u'mosqu', u'bomb', u'kill']
[u'move', u'afoot', u'cemeteri', u'dreamtim', u'place']
[u'apologis', u'affair', u'scandal']
[u'call', u'negoti', u'pierc', u'creek', u'impass']
[u'criticis', u'countri', u'summit']
[u'elli', u'deni', u'latham', u'harass']
[u'pleas', u'support', u'biofuel', u'task', u'forc']
[u'seek', u'surgeri', u'resourc']
[u'murder', u'charg', u'drop', u'snowtown', u'accus']
[u'nanotechnolog', u'help', u'develop', u'artifici']
[u'nation', u'disappoint', u'coalit', u'talk', u'leak']
[u'nation', u'voic', u'concern', u'irrig', u'plan']
[u'nativ', u'titl', u'law', u'overhaul']
[u'lithgow', u'wast', u'centr', u'servic', u'citi']
[u'orlean', u'rise', u'bush']
[u'fund', u'help', u'condobolin', u'health', u'woe']
[u'time', u'ferrari', u'test', u'say', u'rossi']
[u'elect', u'test', u'impact', u'mark', u'latham']
[u'nurs', u'help', u'sexual', u'assault', u'victim']
[u'opposit', u'call', u'fast', u'track', u'helen', u'doctor']
[u'opposit', u'drive', u'ahead', u'region', u'road', u'plan']
[u'opposit', u'fear', u'futur', u'illawarra', u'health']
[u'parti', u'minut', u'elect', u'campaign']
[u'parti', u'offer', u'support', u'geraldton', u'greenough']
[u'peden', u'prim', u'vega', u'showdown']
[u'perform', u'question', u'cost', u'nuditi']
[u'photograph', u'jail', u'cameron', u'diaz', u'topless', u'photo']
[u'chow', u'murdoch']
[u'name', u'whitlam', u'jeffrey', u'chief']
[u'polic', u'baffl', u'boy', u'disappear']
[u'polic', u'consid', u'bushfir', u'suspici']
[u'polic', u'investig', u'alic', u'spring', u'stab', u'death']
[u'polic', u'investig', u'delacomb', u'hous', u'attack']
[u'polic', u'investig', u'fourth', u'coffe', u'shop', u'break']
[u'polic', u'probe', u'child', u'shoplift', u'claim']
[u'polic', u'recommend', u'lesli', u'face', u'illeg', u'possess']
[u'polic', u'search', u'robber']
[u'polic', u'suspect', u'real', u'estat', u'agent', u'strangl']
[u'polic', u'tackl', u'riot', u'belfast']
[u'public', u'pipelin', u'plan']
[u'publish', u'condemn', u'latham', u'interview']
[u'favourit', u'anticip', u'tough', u'match']
[u'railcorp', u'boss', u'deni', u'job']
[u'rapist', u'film', u'attack', u'mobil', u'phone', u'jail']
[u'urg', u'bank', u'reform']
[u'refuge', u'glimps', u'outback']
[u'region', u'urg', u'rental', u'push']
[u'robert', u'urg', u'gympi', u'anti']
[u'rooney', u'urg', u'shrink']
[u'roo', u'worri', u'hall', u'slump']
[u'rossi', u'struggl', u'japan', u'practic']
[u'rumour', u'aris', u'timber', u'compani', u'takeov']
[u'rural', u'women', u'overweight', u'citi', u'counterpart']
[u'santo', u'begin', u'newest', u'carnarvon', u'basin', u'product']
[u'scientist', u'urg', u'farm', u'chang', u'combat']
[u'search', u'continu', u'miss', u'india']
[u'senat', u'presid', u'deni', u'telstra', u'conflict']
[u'senat', u'call', u'medicar', u'cover', u'obes']
[u'senat', u'call', u'combat', u'child', u'abus']
[u'senat', u'prais', u'beazley', u'support', u'suicid']
[u'brace', u'storm']
[u'seventh', u'afghan', u'elect', u'candid', u'kill']
[u'shark', u'counterblow', u'grand', u'final', u'clash']
[u'shire', u'continu', u'drought']
[u'smash', u'repair', u'beat', u'nrma', u'disput', u'talk']
[u'snowdon', u'sceptic', u'telstra', u'sale']
[u'steal', u'rembrandt', u'paint', u'recov']
[u'strict', u'protocol', u'place', u'grand', u'final']
[u'strong', u'look', u'break', u'truck', u'pull', u'record']
[u'strong', u'wind', u'warn', u'issu', u'south', u'east']
[u'studi', u'investig', u'effect', u'burn', u'off', u'rare']
[u'swan', u'slam', u'saint', u'late', u'onslaught']
[u'govt', u'urg', u'reduc', u'size', u'health', u'dept']
[u'teen', u'die', u'capel', u'crash']
[u'labor', u'parti', u'tri', u'deal']
[u'thousand', u'expect', u'attend', u'carniv', u'flower']
[u'trio', u'arrest', u'drug', u'bust']
[u'trio', u'jail', u'man', u'death', u'forc', u'evict']
[u'tsunami', u'worker', u'seek', u'kimberley', u'support']
[u'injur', u'skydiv', u'accid']
[u'kill', u'gunmen', u'open', u'baghdad', u'worker']
[u'allow', u'longer', u'detent', u'terror', u'suspect']
[u'criticis', u'poverti', u'outcom']
[u'union', u'worri', u'job', u'sack', u'nestl', u'worker']
[u'submit', u'enterpris', u'agreement']
[u'uranium', u'explor', u'plan', u'despit', u'mine']
[u'vaughan', u'award', u'freedom', u'home', u'town']
[u'want', u'fuel', u'excis', u'reform', u'fast', u'track']
[u'vote', u'loom', u'hard', u'fight', u'campaign']
[u'wada', u'rule', u'caffein']
[u'wagga', u'labor', u'criticis', u'latham', u'comment']
[u'hop', u'clarifi', u'plan', u'nativ', u'titl', u'chang']
[u'weather', u'warn']
[u'west', u'coast', u'readi', u'kick', u'matera']
[u'woman', u'foot', u'amput', u'bush', u'ordeal']
[u'women', u'close', u'accid', u'stake']
[u'worker', u'look', u'employ', u'fuel', u'cost', u'compo']
[u'worker', u'stress', u'leav', u'follow', u'prison']
[u'zellweg', u'marriag', u'month']
[u'taliban', u'arrest', u'afghanistan']
[u'power', u'wind', u'lash']
[u'accc', u'urg', u'join', u'petrol', u'price', u'forum']
[u'fail', u'save', u'starv', u'niger', u'children']
[u'reject', u'latham', u'allianc', u'stanc']
[u'anger', u'mount', u'musharraf', u'rape', u'remark']
[u'applebi', u'seiz', u'lead']
[u'author', u'probe', u'explos', u'melbourn', u'home']
[u'banana', u'grower', u'seek', u'nation', u'levi']
[u'beazley', u'stanc', u'iraq', u'defeatist']
[u'beirut', u'bomb', u'kill']
[u'beirut', u'bomb', u'scene', u'like', u'hell']
[u'boast', u'barmi', u'armi', u'parad', u'sydney']
[u'builder', u'applaud', u'gungahlin', u'drive', u'rule']
[u'bush', u'rule', u'rais', u'tax', u'hurrican']
[u'bush', u'nephew', u'arrest', u'texa']
[u'bush', u'urg', u'katrina', u'victim', u'look', u'futur']
[u'elect', u'candid', u'talk', u'contest']
[u'elect', u'hold']
[u'cane', u'toad', u'imit', u'human', u'life']
[u'caulfield', u'contend', u'line', u'melbourn']
[u'channel', u'warn', u'brother']
[u'counsellor', u'face', u'tougher', u'regul']
[u'count', u'elect']
[u'courtney', u'love', u'jail', u'parol', u'breach']
[u'cowboy', u'send', u'storm', u'pack']
[u'craig', u'promis', u'crow', u'attack']
[u'crew', u'work', u'repair', u'wind', u'ravag', u'brisban']
[u'croc', u'cat', u'notch', u'victori']
[u'crow', u'bunni']
[u'cyclon', u'risk', u'demand', u'action', u'climat', u'chang']
[u'digit', u'mammographi', u'improv', u'cancer', u'detect']
[u'kit', u'help', u'driver', u'fight', u'crime']
[u'dont', u'play', u'blame', u'game', u'say', u'labour']
[u'eagl', u'crow', u'reach', u'decid']
[u'farmer', u'watch', u'telstra', u'like', u'hawk']
[u'firefight', u'battl', u'larg', u'bushfir']
[u'geal', u'take', u'belt']
[u'rooney', u'break', u'say', u'gascoign']
[u'green', u'urg', u'review', u'sexual', u'assault', u'law']
[u'guilti', u'verdict', u'pochopien', u'case']
[u'gunn', u'chip', u'away', u'takeov', u'specul']
[u'gusti', u'wind', u'swirl', u'south', u'east']
[u'hama', u'milit', u'ralli', u'settlement', u'ruin']
[u'helicopt', u'race', u'rescu', u'injur']
[u'hensbi', u'crash', u'match', u'play']
[u'hmas', u'sydney', u'search', u'give', u'govt', u'back']
[u'hodg', u'face', u'tiger']
[u'hollywood', u'produc', u'luft', u'die']
[u'howard', u'urg', u'pursu', u'nuclear', u'disarma']
[u'human', u'traffic', u'rife', u'europ']
[u'hundr', u'palestinian', u'polic', u'deploy', u'border']
[u'hunter', u'killer', u'jail', u'life']
[u'indi', u'driver', u'brisco', u'critic', u'care', u'wreck']
[u'interview', u'johnathan', u'thurston', u'paul', u'bowman']
[u'joey', u'lose', u'championship', u'open']
[u'john', u'lift', u'wolv']
[u'joyc', u'set', u'sight', u'deal']
[u'king', u'dodg', u'bullet', u'razorback', u'clip', u'hawk']
[u'labor', u'sweep', u'elect']
[u'labor', u'tip', u'elect']
[u'labour', u'elect']
[u'labour', u'opposit', u'level', u'vote', u'count']
[u'languag', u'teacher', u'oversea', u'fellowship']
[u'latham', u'blame', u'labor', u'elect', u'failur']
[u'malaysia', u'issu', u'death', u'sentenc', u'acehnes', u'drug']
[u'question', u'stab']
[u'middl', u'age', u'seek', u'attempt', u'abduct']
[u'miner', u'explor', u'spend', u'soar']
[u'miss', u'diver']
[u'mix', u'respons', u'stone', u'mastic', u'review', u'find']
[u'mix', u'result', u'hay', u'stabl']
[u'mosqu', u'attack', u'kill']
[u'murali', u'deni', u'bet', u'claim']
[u'murdocca', u'brace', u'tough', u'clash', u'victori']
[u'narrow', u'lead', u'rule', u'labour', u'parti']
[u'zealand', u'vote']
[u'ngos', u'mchale', u'child', u'abus']
[u'ireland', u'protest', u'pull', u'polic', u'talk']
[u'player', u'nation', u'scrabbl', u'comp']
[u'north', u'korea', u'drop', u'summit']
[u'north', u'korea', u'talk', u'continu']
[u'take', u'ticket', u'flop']
[u'oecd', u'confirm', u'china', u'export', u'domin']
[u'opposit', u'support', u'allianc']
[u'opposit', u'take', u'earli', u'lead', u'elect']
[u'ozon', u'layer', u'hole', u'near', u'record', u'size']
[u'paul', u'roo', u'interview']
[u'perth', u'storm', u'damag', u'home', u'cut', u'power']
[u'pilot', u'threaten', u'crash', u'steal', u'plane']
[u'plane', u'crash', u'tower', u'threat']
[u'polic', u'investig', u'fatal', u'hunt', u'accid']
[u'polic', u'probe', u'sight', u'miss', u'teen']
[u'polic', u'search', u'dump', u'mawson', u'murder', u'clue']
[u'poll', u'booth', u'open']
[u'poll', u'violenc', u'continu', u'afghanistan']
[u'puppi', u'join', u'prayer']
[u'qanta', u'defend', u'handl', u'flight', u'delay']
[u'storm', u'leav', u'thousand', u'power']
[u'quigley', u'regret', u'conduct', u'laps']
[u'rain', u'fail', u'stop', u'river', u'regatta']
[u'record', u'give', u'capirossi', u'japan', u'pole']
[u'rock', u'roll', u'bloom', u'canberra', u'festiv']
[u'schwarzenegg', u'say', u'hell']
[u'hurt', u'geelong', u'hotel']
[u'hurt', u'melbourn', u'multi', u'accid']
[u'steal', u'renoir']
[u'stroke', u'tie', u'increas', u'risk', u'epilepsi']
[u'sydney', u'school', u'remain', u'open', u'despit', u'number']
[u'synod', u'hear', u'progress', u'abus', u'mediat']
[u'taliban', u'kill', u'policemen', u'kabul']
[u'taliban', u'urg', u'afghan', u'boycott', u'poll']
[u'teen', u'shoot', u'dead', u'hunt', u'accid']
[u'telstra', u'sale', u'vote', u'difficult', u'nation', u'say']
[u'thoma', u'accept', u'blame', u'saint', u'loss']
[u'troop', u'pull', u'orlean', u'inch']
[u'tyson', u'stenglein', u'dean', u'peter', u'sumich']
[u'summit', u'back', u'weaker', u'reform']
[u'summit', u'outcom', u'disappoint', u'howard']
[u'upgrad', u'price', u'bolster', u'market']
[u'allianc', u'outdat', u'latham']
[u'plan', u'travel', u'sanction', u'mugab']
[u'vail', u'call', u'offset', u'scheme', u'review']
[u'vail', u'call', u'labor', u'account', u'latham']
[u'vail', u'call', u'labor', u'explain', u'committ']
[u'vaughan', u'warn', u'ash', u'hero']
[u'malpractic', u'case']
[u'voter', u'follow', u'instinct', u'poll']
[u'voter', u'tight', u'elect']
[u'vote', u'begin', u'elect']
[u'vote', u'close', u'general', u'elect']
[u'warn', u'katich', u'return', u'counti', u'action']
[u'wild', u'wind', u'extend', u'brisban', u'blackout']
[u'wind', u'continu', u'whip', u'havoc', u'brisban']
[u'young', u'gun', u'captur', u'queensland']
[u'yudhoyono', u'confirm', u'jail', u'term', u'cut', u'review']
[u'aceh', u'rebel', u'exceed', u'weapon', u'turn', u'target']
[u'urg', u'accept', u'feder', u'skill', u'shortag', u'fund']
[u'adelaid', u'maintain', u'unbeaten', u'streak']
[u'adelaid', u'unit', u'maintain', u'unbeaten', u'streak']
[u'afghan', u'begin', u'vote', u'landmark', u'poll']
[u'afghan', u'poll']
[u'alp', u'star', u'recruit', u'plan', u'surpris']
[u'applebi', u'lose', u'farmington', u'lead']
[u'ash', u'take', u'vaughan', u'surpris']
[u'australian', u'movi', u'win', u'toronto', u'festiv', u'honour']
[u'blair', u'bias', u'bbcs', u'hurrican', u'report', u'murdoch']
[u'border', u'secur', u'boost', u'afghan', u'poll']
[u'brisban', u'polic', u'investig', u'girl', u'death']
[u'busi', u'peopl', u'return', u'orlean']
[u'campbel', u'shock', u'goosen', u'reach', u'match', u'play', u'final']
[u'bomb', u'kill', u'market', u'east', u'baghdad']
[u'chelsea', u'rival']
[u'church', u'compens', u'offer', u'insult', u'abus', u'victim']
[u'weigh', u'releas', u'classifi', u'sept', u'report']
[u'clark', u'brash', u'claim', u'right', u'govern']
[u'clash', u'athen']
[u'driver', u'park', u'kill', u'ralli', u'great', u'britain']
[u'critic', u'aust', u'allianc', u'warrant', u'expert']
[u'cyclist', u'sutherland', u'drop', u'posit', u'dope', u'test']
[u'defiant', u'iran', u'stand', u'nuclear', u'program']
[u'democrat', u'defend', u'mchale', u'foster', u'care']
[u'deportivo', u'hang', u'draw']
[u'dive', u'industri', u'credit', u'rescu', u'safeti', u'rule']
[u'diver', u'recov', u'north', u'ordeal']
[u'driver', u'quiz', u'alleg']
[u'export', u'deal', u'boost', u'tasmania', u'wool', u'industri']
[u'flintoff', u'pietersen', u'subcontin']
[u'fund', u'squeez', u'cut', u'shark', u'patrol']
[u'ganguli', u'chappel', u'feud', u'simmer']
[u'cylind', u'examin', u'die']
[u'germani', u'vote', u'close', u'elect']
[u'girl', u'risk', u'rid', u'relat', u'brain', u'injuri']
[u'guantanamo', u'hunger', u'strike', u'unnerv', u'author']
[u'hindmarsh', u'miss', u'cowboy', u'clash']
[u'hobart', u'dual', u'stab', u'suspect', u'charg']
[u'injur', u'hospit', u'helicopt', u'rescu']
[u'intens', u'polit', u'campaign', u'continu', u'germani']
[u'inter', u'bounc']
[u'interview', u'graham', u'murray', u'craig', u'bellami']
[u'interview', u'triumphant', u'tiger']
[u'iranian', u'presid', u'deni', u'hostag', u'claim']
[u'iran', u'nuclear', u'speech', u'disappoint', u'straw']
[u'iran', u'warn', u'iaea', u'secur', u'council', u'referr']
[u'iraqi', u'parliament', u'member', u'kill']
[u'iraq', u'parliament', u'approv', u'constitut']
[u'islam', u'leader', u'prais', u'advisori', u'group']
[u'jet', u'thrash', u'hapless', u'knight']
[u'karzai', u'grate', u'australian', u'troop', u'presenc']
[u'labor', u'presid', u'urg', u'return', u'core', u'valu']
[u'labor', u'waugh', u'plan', u'surpris']
[u'latham', u'book', u'releas']
[u'latham', u'diari', u'cloud', u'elect']
[u'latham', u'claim', u'froth', u'bubbl']
[u'latham', u'prove', u'beazley', u'claim', u'tanner']
[u'lawyer', u'welcom', u'issu', u'kit', u'driver']
[u'lennon', u'forestri', u'industri', u'pocket', u'latham']
[u'lennon', u'wife', u'put', u'beatl']
[u'live', u'tasmanian', u'artist', u'writer']
[u'catch', u'alleg', u'drive']
[u'custodi', u'fatal', u'shoot']
[u'mauresmo', u'crush', u'myskina', u'level', u'franc']
[u'million', u'afghan', u'head', u'poll']
[u'mix', u'reaction', u'mark', u'latham']
[u'moss', u'keep', u'contract', u'despit', u'drug', u'photo']
[u'motorcyclist', u'speed', u'limit', u'protest']
[u'musharraf', u'deni', u'rape', u'remark']
[u'nation', u'greater', u'altern', u'fuel']
[u'nation', u'council', u'pull', u'telstra', u'motion']
[u'drug', u'law', u'introduc']
[u'orlean', u'resid', u'warn', u'hardship']
[u'rice', u'dinner', u'women', u'right']
[u'north', u'korea', u'talk', u'stretch', u'monday']
[u'nottinghamshir', u'year', u'titl', u'drought']
[u'polic', u'probe', u'aircraft', u'crash', u'threat']
[u'obasanjo', u'hint', u'ivori', u'coast', u'diplomaci', u'review']
[u'dead', u'ringwood', u'east', u'shoot']
[u'opec', u'want', u'stabilis', u'price', u'presid', u'say']
[u'opposit', u'pledg', u'improv', u'disgrac']
[u'parti', u'ditch', u'effort', u'north', u'korea']
[u'peden', u'lose', u'belt', u'vega']
[u'piggin', u'wari', u'crow', u'takeov']
[u'plane', u'crash', u'threat', u'polit', u'polic']
[u'nuclear', u'stanc', u'hypocrit', u'green']
[u'xiii', u'outclass', u'kumul']
[u'podium', u'finish', u'stoner', u'japan']
[u'polic', u'search', u'mental', u'health', u'facil', u'escape']
[u'polic', u'shortag', u'compound', u'stress', u'studi']
[u'poll', u'close', u'afghanistan']
[u'poll', u'open', u'germani']
[u'pollut', u'fear', u'remain', u'hurrican', u'wake']
[u'poor', u'nutrit', u'cut', u'worker', u'product']
[u'rabbitoh', u'spell', u'crow', u'sale', u'condit']
[u'research', u'seek', u'speed', u'contribut', u'accid']
[u'rice', u'call', u'last', u'revolut', u'reform']
[u'ricketson']
[u'rossi', u'crash', u'capirossi', u'win', u'japan']
[u'urg', u'leadership', u'right']
[u'secreci', u'surround', u'solar', u'challeng', u'entrant']
[u'sharon', u'threaten', u'hamper', u'palestinian', u'elect']
[u'sheepish', u'twist', u'realiti', u'program']
[u'year', u'girl', u'dead']
[u'snake', u'take', u'care', u'littl', u'thing']
[u'super', u'coach', u'bennett', u'feel', u'buchanan']
[u'swan', u'believ', u'hall', u'play']
[u'swan', u'sweat', u'hall', u'braun', u'doubt', u'eagl']
[u'tanner', u'say', u'latham', u'take', u'gossip', u'serious']
[u'tcci', u'applaud', u'skill', u'migrant', u'initi']
[u'thredbo', u'death', u'murder', u'say', u'twin']
[u'tiger', u'book', u'date', u'dragon']
[u'tight', u'finish', u'expect', u'german', u'ballot']
[u'toll', u'patrick', u'tussl', u'threaten', u'joint', u'rail', u'ventur']
[u'tram', u'derail', u'caus', u'traffic', u'delay']
[u'trio', u'escap', u'injuri', u'emerg', u'land']
[u'week', u'elect', u'result', u'know']
[u'deni', u'scrap', u'iraq', u'withdraw', u'plan']
[u'union', u'urg', u'council', u'scrap', u'awa']
[u'reform', u'stop', u'terror', u'say', u'rice']
[u'train', u'derail', u'kill', u'injur']
[u'vail', u'urg', u'parti', u'focus', u'debat']
[u'vatican', u'late', u'pope', u'day']
[u'victori', u'snatch', u'late', u'draw', u'underman', u'roar']
[u'wild', u'wind', u'leav', u'major', u'damag']
[u'wind', u'caus', u'brisban', u'blackout']
[u'woman', u'quiz', u'child', u'death']
[u'women', u'woodchop', u'rejoin', u'program']
[u'tonn', u'truck', u'barrier', u'strongman', u'world']
[u'accc', u'investig', u'petrol', u'price', u'hike', u'beazley']
[u'event', u'concern', u'environ', u'group']
[u'afghan', u'turn', u'poll', u'year']
[u'afghan', u'voter', u'turn', u'larg', u'number', u'despit']
[u'investig', u'baxter', u'mattress']
[u'alic', u'spring', u'host', u'citizenship', u'ceremoni']
[u'alleg', u'thief', u'drive', u'owner', u'bonnet']
[u'ord', u'close', u'flat']
[u'latham', u'book', u'releas']
[u'chief', u'call', u'revamp', u'hospit']
[u'award', u'cave', u'garden', u'work']
[u'applebi', u'pampl', u'trail', u'gore', u'claim', u'maiden']
[u'argentina', u'seek', u'falkland', u'talk', u'britain']
[u'arson', u'suspect', u'wynyard', u'school', u'blaze']
[u'artist', u'fight', u'theft', u'charg']
[u'australian', u'receiv', u'number', u'award']
[u'weather', u'doesnt', u'deter', u'kalgoorli', u'punter']
[u'barra', u'group', u'look', u'season', u'gulf']
[u'baxter', u'detaine', u'food', u'choic', u'activ']
[u'baxter', u'upgrad', u'wont', u'stop', u'self', u'harm', u'act']
[u'beach', u'rescu', u'spark', u'hole', u'dig', u'warn']
[u'bear', u'narwan', u'celebr', u'grand', u'final', u'win']
[u'beazley', u'deni', u'abandon', u'suicid']
[u'beazley', u'exploit', u'daughter', u'naiveti', u'latham']
[u'belgian', u'win', u'town', u'crier', u'titl']
[u'better', u'manag', u'vital', u'health']
[u'crowd', u'turn', u'shinju', u'matsuri', u'festiv']
[u'blayney', u'industri', u'subdivis']
[u'breast', u'cancer', u'awar', u'ride', u'hail', u'success']
[u'brisban', u'theft', u'accus', u'deni', u'heist', u'claim']
[u'brisban', u'face', u'tougher', u'water', u'restrict']
[u'broadband', u'custom', u'pass', u'million']
[u'bronco', u'search', u'answer']
[u'brother', u'hous', u'alight', u'fight']
[u'brownlow', u'winner', u'cousin', u'eye', u'flag']
[u'govt', u'review', u'school', u'cost']
[u'research', u'miner', u'sand', u'project']
[u'chariti', u'feel', u'pinch', u'fuel', u'price', u'rise']
[u'citrus', u'canker', u'erad', u'program', u'enter', u'final']
[u'citi', u'centr', u'strategi', u'creat', u'plan', u'worri']
[u'civil', u'liberti', u'group', u'urg', u'choic', u'bushfir']
[u'clark', u'begin', u'minor', u'parti', u'talk', u'wait']
[u'coach', u'prais', u'hawk', u'wild', u'weather']
[u'committe', u'consid', u'diesel', u'plant', u'plan']
[u'commod', u'jump', u'bolster', u'export', u'earn']
[u'communiti', u'council', u'call', u'local', u'plan']
[u'condom', u'protect', u'crime']
[u'confid', u'predict', u'ahead', u'wheat', u'harvest']
[u'coron', u'warn', u'parent', u'sleep', u'risk']
[u'council', u'begin', u'hyde', u'park', u'tree', u'cull']
[u'council', u'fear', u'helicopt', u'servic', u'futur']
[u'councillor', u'reduct', u'agenda']
[u'council', u'seek', u'fund', u'airport', u'secur']
[u'council', u'beat', u'raaf', u'base', u'expans']
[u'croc', u'snap', u'wildcat']
[u'davenport', u'win', u'bali', u'intern']
[u'piero', u'inspir', u'juve', u'milan', u'crash']
[u'dementia', u'case', u'tripl']
[u'democrat', u'want', u'dump', u'blaze', u'dous']
[u'dive', u'firm', u'confid', u'crew', u'respons', u'miss']
[u'downer', u'pledg', u'fund', u'assist', u'afghan', u'elect']
[u'doyl', u'announc', u'local', u'candid']
[u'dragon', u'wari', u'form', u'tiger']
[u'england', u'bring', u'fresh', u'talent', u'pakistan']
[u'expert', u'cull', u'impact', u'penguin']
[u'expert', u'want', u'action', u'lobster', u'recoveri', u'plan']
[u'famili', u'flee', u'burn', u'hous']
[u'fan', u'welcom', u'cowboy', u'home']
[u'feder', u'govt', u'tell', u'lead', u'mental', u'health']
[u'film', u'maker', u'set', u'sight', u'kakadu', u'croc', u'film']
[u'final', u'loser', u'add', u'kangaroo', u'train', u'squad']
[u'firefight', u'continu', u'battl', u'blaze']
[u'servic', u'underestim', u'eyr', u'condit', u'report']
[u'flintoff', u'look', u'horizon']
[u'dublin', u'tool', u'shed', u'snap']
[u'fuel', u'price', u'prompt', u'taxi', u'fare', u'hike']
[u'leak', u'near', u'servic', u'station', u'prompt', u'evacu']
[u'gippsland', u'passeng', u'train', u'consid']
[u'girl', u'die', u'train']
[u'gold', u'coast', u'commonwealth', u'game']
[u'govt', u'bodi', u'tour', u'indigen', u'communiti']
[u'govt', u'call', u'extend', u'electr', u'concess']
[u'govt', u'call', u'commonwealth', u'releas', u'road', u'fund']
[u'govt', u'offer', u'kyogl', u'blaze', u'help']
[u'govt', u'pay', u'support', u'cane', u'industri']
[u'govt', u'tanker', u'stanc', u'see', u'reef', u'threat']
[u'servic', u'lodg', u'fund', u'applic']
[u'grant', u'boost', u'communiti', u'effort', u'save', u'threaten']
[u'grower', u'push', u'ahead', u'biocan', u'project']
[u'hall', u'face', u'grand', u'final', u'suspens']
[u'health', u'safeti', u'issu', u'domin', u'polic']
[u'health', u'profession', u'resolut', u'say']
[u'hera', u'claim', u'fourth', u'tour', u'spain', u'titl']
[u'high', u'wind', u'blame', u'skydiv', u'mishap']
[u'high', u'wind', u'stop', u'carniv', u'flower', u'street', u'parad']
[u'hop', u'survey', u'identifi', u'disabl']
[u'hospit', u'issu', u'manag', u'doctor']
[u'hospit', u'report', u'hold', u'beatti', u'order']
[u'hundr', u'attempt', u'self', u'harm', u'detent']
[u'iaea', u'seek', u'access', u'north', u'korea', u'nuke', u'pledg']
[u'iemma', u'await', u'counter', u'terror', u'plan', u'detail']
[u'illeg', u'fishermen', u'releas', u'good', u'behaviour', u'bond']
[u'indian', u'board', u'probe', u'ganguli', u'chappel']
[u'jackman', u'rush', u'snatch', u'emmi']
[u'jackson', u'beat', u'award']
[u'kaiser', u'take', u'premier']
[u'wit', u'balibo', u'kill', u'die']
[u'kiwi', u'campbel', u'take', u'match', u'play', u'titl']
[u'labor', u'damag', u'control', u'latham', u'diari']
[u'labor', u'recov', u'attack', u'mark']
[u'labor', u'urg', u'stay', u'calm', u'elect', u'scare']
[u'laugh', u'caus', u'man', u'death']
[u'leader', u'main', u'parti', u'claim', u'victori']
[u'leagu', u'star', u'tackl', u'pngs', u'aid', u'threat']
[u'legal', u'worker', u'strike', u'condit']
[u'local', u'busi', u'urg', u'silver', u'citi']
[u'local', u'council', u'discuss', u'humpti']
[u'lodger', u'urg', u'secur', u'accommod']
[u'macquari', u'bank', u'consortium', u'acquir', u'dyno', u'nobel']
[u'arrest', u'ringwood', u'east', u'shoot']
[u'charg', u'ram', u'garbag', u'bin']
[u'die', u'highway', u'crash']
[u'face', u'court', u'real', u'estat', u'agent', u'murder']
[u'guilti', u'stab', u'murder']
[u'hospit', u'rock', u'rescu']
[u'meander', u'project', u'rule']
[u'meat', u'export', u'fall', u'disrupt', u'gympi', u'meatwork']
[u'meatwork', u'feel', u'impact', u'stock', u'shortag']
[u'meet', u'focus', u'equex', u'centr', u'futur']
[u'venus']
[u'minchin', u'seek', u'compulsori', u'vote']
[u'miner', u'hop', u'locat', u'site']
[u'miner', u'deep', u'grand', u'final']
[u'minist', u'apologis', u'black', u'ars', u'remark']
[u'minist', u'sound', u'warn', u'local', u'council']
[u'miss', u'girl', u'safe']
[u'burn', u'off', u'possibl', u'brindabella', u'nation']
[u'car', u'impound', u'hoon', u'crackdown']
[u'morphin', u'overdos', u'possibl', u'canberra', u'hospit']
[u'rais', u'forens', u'counsellor', u'worri']
[u'sister', u'back', u'latham', u'suicid', u'claim']
[u'dismiss', u'cairn', u'protest']
[u'angl', u'make', u'trigonometri', u'ration']
[u'campaign', u'highland', u'tourism']
[u'wage', u'bodi', u'independ', u'andrew', u'say']
[u'zealand', u'elect', u'result', u'like', u'close']
[u'korea', u'abandon', u'nuclear', u'program']
[u'north', u'korea', u'back', u'dramat', u'nuclear']
[u'north', u'west', u'tech', u'wind', u'farm']
[u'health', u'worker', u'report', u'problem', u'commiss']
[u'croc', u'wire', u'scienc']
[u'nurs', u'manag', u'posit', u'restructur']
[u'nuttal', u'warn', u'patel', u'time', u'inquiri']
[u'offici', u'want', u'orlean', u'resid', u'return', u'delay']
[u'price', u'rise', u'affect', u'sugar', u'price']
[u'opposit', u'highlight', u'school', u'high', u'attend']
[u'opposit', u'freeway', u'plan', u'afford', u'brumbi']
[u'outdat', u'statist', u'mask', u'hospit', u'problem', u'journal']
[u'pakistan', u'youhana', u'convert', u'islam']
[u'panel', u'overse', u'fish', u'grant', u'spend']
[u'panther', u'snatch', u'grand', u'final']
[u'paralympian', u'conquer', u'kilimanjaro', u'crutch']
[u'patagonian', u'toothfish', u'trial', u'open', u'perth']
[u'paul', u'kanaar', u'miss', u'european', u'tour']
[u'paul', u'miss', u'european', u'tour']
[u'petrol', u'factor', u'actu', u'wage', u'claim']
[u'pipelin', u'adaminabi', u'water', u'woe']
[u'urg', u'interven', u'auslink', u'stalem']
[u'urg', u'global', u'effort', u'wmds']
[u'polic', u'alarm', u'motorbik', u'death', u'toll', u'outstrip']
[u'polic', u'charg', u'drug', u'raid']
[u'polic', u'examin', u'southern', u'hous', u'fire']
[u'polic', u'probe', u'railwaytown', u'theft']
[u'polic', u'probe', u'ringwood', u'east', u'shoot']
[u'polic', u'raid', u'drug', u'weapon', u'steal', u'good']
[u'polic', u'seek', u'gang', u'attack', u'wit']
[u'polic', u'seiz', u'trucki', u'key']
[u'polic', u'charg', u'teen', u'shoot']
[u'polic', u'warn', u'driver', u'school', u'holiday', u'blitz']
[u'port', u'upgrad', u'near', u'complet']
[u'princip', u'sack', u'find', u'fund', u'say']
[u'project', u'help', u'boost', u'frog', u'number']
[u'provision', u'count', u'put', u'schroeder', u'parti']
[u'public', u'yarragade', u'aquif', u'plan']
[u'public', u'invit', u'attend', u'catchment', u'meet']
[u'quiet', u'return', u'alic', u'biki', u'leav']
[u'rann', u'warn', u'nowingi', u'radioact', u'wast']
[u'real', u'slump', u'loss', u'atletico', u'beat', u'barca']
[u'report', u'highlight', u'high', u'region', u'polic', u'stress']
[u'rescu', u'servic', u'beat', u'chopper', u'capabl']
[u'resid', u'consid', u'take', u'civic', u'centr', u'fight']
[u'royal', u'darwin', u'defend', u'hospit', u'secur']
[u'opposit', u'lobbi', u'govt', u'wast', u'dump']
[u'scienc', u'attempt', u'thwart', u'pearl', u'thiev']
[u'second', u'problem', u'croc', u'bind', u'home']
[u'seven', u'guilti', u'murder', u'sword', u'attack']
[u'shark', u'celebr', u'final', u'bear', u'lament', u'grand']
[u'shiit', u'converg', u'karbala', u'despit', u'threat']
[u'signific', u'rain', u'mark', u'snow', u'season']
[u'singtel', u'issu', u'profit', u'warn']
[u'site', u'decis', u'loom', u'townsvill', u'technic']
[u'slater', u'win', u'california']
[u'snowtown', u'killer', u'cook', u'victim', u'flesh']
[u'state', u'coron', u'investig', u'teenag', u'railway', u'death']
[u'steelwork', u'law', u'creat', u'legal', u'concern']
[u'student', u'studi', u'focus', u'wild', u'pig']
[u'submiss', u'seek', u'petrol', u'price']
[u'suicid', u'prevent', u'effort', u'earn', u'award']
[u'suncorp', u'metway', u'recruit', u'telstra', u'chief']
[u'suspect', u'toothfish', u'poacher', u'move', u'villawood']
[u'swan', u'expect', u'fight', u'hall', u'charg']
[u'taipan', u'protest', u'rychart', u'late', u'winner']
[u'health', u'worker', u'consid', u'industri', u'action']
[u'teen', u'die', u'cycl', u'accid']
[u'thiev', u'steal', u'litr', u'fuel']
[u'charg', u'ecstasi', u'seizur']
[u'toon', u'lift', u'pressur', u'souness']
[u'tram', u'servic', u'track', u'despit', u'derail']
[u'traralgon', u'end', u'maffra', u'win', u'streak']
[u'tripodi', u'play', u'polit', u'auslink']
[u'appeal', u'aust', u'embassi', u'bomb', u'death', u'sentenc']
[u'question', u'miss', u'teen']
[u'unemploy', u'work', u'buchannon', u'park', u'revamp']
[u'union', u'leader', u'deni', u'latham', u'claim', u'trade', u'deal']
[u'vintag', u'plan', u'prepar', u'outback', u'safari']
[u'govt', u'chip', u'sydney', u'search']
[u'govt', u'pressur', u'offer', u'fuel', u'price', u'relief']
[u'potato', u'grower', u'attend', u'confer']
[u'water', u'leak', u'close', u'star', u'hotel']
[u'western', u'welcom', u'visit', u'refuge']
[u'west', u'avoid', u'overconfid', u'princ']
[u'west', u'grand', u'final']
[u'whitlam', u'shed', u'light', u'latham', u'fallout']
[u'woman', u'charg', u'child', u'murder']
[u'woman', u'face', u'drug', u'charg', u'postal', u'search']
[u'woman', u'interview', u'alleg', u'abduct']
[u'woodsid', u'win', u'green', u'award']
[u'jewel', u'thief', u'shoot', u'arm', u'robberi']
[u'river', u'divers', u'allow', u'coal', u'access']
[u'armi', u'cadet', u'suffer', u'food', u'poison']
[u'voter', u'particip', u'afghan', u'poll']
[u'abar', u'criticis', u'veget', u'law']
[u'abar', u'fear', u'crop', u'farmer', u'cost']
[u'lead', u'nazi', u'hunter', u'die']
[u'qaeda', u'claim', u'london', u'bomb']
[u'qaeda', u'pledg', u'spare', u'iraqi', u'shiit']
[u'welcom', u'child', u'obes', u'plan']
[u'america', u'space', u'program', u'go', u'futur']
[u'femal', u'judg', u'high', u'court']
[u'armi', u'call', u'commonwealth', u'game', u'secur']
[u'ash', u'fallout', u'begin', u'senior', u'player', u'ax']
[u'australian', u'open', u'revert', u'tradit', u'timeslot']
[u'australian', u'paint', u'excit', u'melbourn', u'buyer']
[u'australia', u'selector', u'swing']
[u'beatti', u'deni', u'health', u'report', u'cover']
[u'beatti', u'hospit', u'inquiri', u'springborg']
[u'belgian', u'boost', u'mcewen', u'world']
[u'bendigo', u'famili', u'feel', u'higher', u'fuel', u'price']
[u'berrigan', u'shire', u'experi', u'hous', u'boom']
[u'hand', u'pilbara', u'accommod', u'villag']
[u'brack', u'deni', u'discrimin', u'union', u'firm']
[u'britain', u'accept', u'term', u'gulf', u'syndrom']
[u'bronco', u'chief', u'rule', u'cowboy']
[u'build', u'societi', u'hit', u'mark']
[u'bundaberg', u'get', u'medic', u'servic', u'director']
[u'bush', u'cautious', u'welcom', u'north', u'korea', u'pledg']
[u'bushfir', u'claim', u'agenda', u'assembl', u'sit']
[u'busi', u'chamber', u'unhappi', u'sunday', u'trade', u'snub']
[u'busi', u'expo', u'plan', u'riverina']
[u'busi', u'owner', u'welcom', u'council', u'park', u'decis']
[u'cabonn', u'council', u'councillor', u'ward']
[u'farmer', u'plantat']
[u'govt', u'action', u'crop', u'contamin']
[u'govt', u'simplifi', u'super', u'choic', u'process']
[u'canal', u'develop', u'requir', u'care', u'plan']
[u'canberra', u'revamp', u'mental', u'health', u'servic']
[u'cattl', u'export', u'brace', u'downturn']
[u'cfmeu', u'attack', u'prematur', u'attack']
[u'china', u'refus', u'death', u'penalti', u'repriev']
[u'chines', u'condom', u'compani', u'unit', u'clinton', u'lewinski']
[u'clarenc', u'council', u'elect', u'mayor']
[u'clean', u'begin', u'convent', u'centr', u'site']
[u'coal', u'miner', u'lobbi', u'long', u'servic', u'leav']
[u'council', u'defend', u'civic', u'centr', u'plan']
[u'council', u'give', u'hous', u'plan']
[u'council', u'rat', u'plan', u'worri', u'farm', u'group']
[u'council', u'share', u'flood', u'damag', u'fund']
[u'crown', u'plaza', u'reopen', u'water', u'woe']
[u'dairi', u'price', u'rise', u'unlik', u'reach', u'farmer', u'waff']
[u'deal', u'unclear', u'north', u'korea', u'demand', u'reactor']
[u'defeat', u'bear', u'beat', u'season']
[u'demand', u'high', u'coast', u'holiday', u'accommod']
[u'doc', u'deni', u'receiv', u'notif', u'year']
[u'doctor', u'call', u'dementia', u'support']
[u'doctor', u'want', u'tougher', u'drink', u'drive', u'stanc']
[u'ducat', u'get', u'armidal', u'mayor', u'spot']
[u'east', u'timores', u'fin', u'cock', u'fight']
[u'educ', u'jargon', u'get', u'better', u'govt']
[u'eel', u'defenc', u'target', u'thurston']
[u'eel', u'prepar', u'unpredict', u'cowboy']
[u'electr', u'steal', u'cannabi', u'crop', u'polic']
[u'australian', u'footbal', u'hall', u'fame']
[u'employe', u'meatwork', u'resum']
[u'fair', u'commiss', u'traine', u'wag']
[u'famili', u'age', u'record', u'jackpot', u'jobless']
[u'farmer', u'tell', u'stock', u'poison', u'plant']
[u'father', u'question', u'boy', u'drown']
[u'fear', u'farmer', u'miss', u'wyangala', u'flow']
[u'fear', u'offic', u'decis', u'compromis']
[u'femal', u'judg', u'appoint', u'high', u'court']
[u'femal', u'judg', u'high', u'court', u'appoint', u'applaud']
[u'crew', u'tackl', u'juke', u'blaze']
[u'fish', u'die', u'lagoon']
[u'florida', u'key', u'empti', u'rita', u'approach']
[u'fuel', u'excis', u'increas', u'petrol', u'price', u'burden']
[u'fuel', u'hike', u'drive', u'canberran', u'bike', u'shop']
[u'fund', u'squeez', u'cut', u'angola', u'food', u'program']
[u'cost']
[u'good', u'behaviour', u'deal', u'wipe', u'slater', u'grope', u'charg']
[u'gough', u'hop', u'world', u'select']
[u'govern', u'urg', u'seek', u'mental', u'health', u'solut']
[u'govt', u'scrap', u'fuel', u'plan']
[u'govt', u'analys', u'armi', u'food']
[u'govt', u'urg', u'fund', u'servic']
[u'grower', u'urg', u'adopt', u'super', u'vege']
[u'gusmao', u'await', u'deal', u'contract']
[u'hall', u'free', u'play', u'final']
[u'hall', u'gaspar', u'chanc', u'tribun']
[u'health', u'group', u'warn', u'govt', u'strike', u'action']
[u'health', u'right', u'bodi', u'reveal', u'patel', u'patient', u'complaint']
[u'health', u'worker', u'face', u'charg', u'alleg']
[u'hollywood', u'studio', u'team', u'fight', u'piraci']
[u'hop', u'cook', u'tourism', u'boost']
[u'hospit', u'speak', u'patient', u'treatment']
[u'hunter', u'coal', u'export', u'draw', u'green', u'protest']
[u'hydro', u'tasmania', u'deal', u'fund', u'wind', u'farm']
[u'iemma', u'refus', u'sack', u'racial', u'slur']
[u'indonesian', u'troop', u'begin', u'aceh', u'withdraw']
[u'indi', u'team', u'boss', u'confid', u'podium', u'finish']
[u'injuri', u'forc', u'allan', u'retir']
[u'injuri', u'forc', u'bomber', u'allan', u'retir']
[u'inquiri', u'prompt', u'deputi', u'polic', u'commission', u'quit']
[u'show', u'stock', u'fee', u'mill']
[u'tri', u'motiv', u'ganguli', u'chappel', u'say']
[u'jetstar', u'defend', u'decis', u'delay', u'veteran', u'flight']
[u'jetstar', u'draw', u'veteran']
[u'judici', u'commiss', u'reject', u'coron']
[u'kapunda', u'prompt', u'tougher', u'reckless', u'drive', u'penalti']
[u'labor', u'recov', u'latham', u'damag', u'rudd', u'say']
[u'land', u'right', u'law', u'hand', u'govt', u'power']
[u'latham', u'trash', u'labor', u'reput', u'beazley']
[u'laugh', u'incid', u'claim', u'second', u'life']
[u'journal', u'knock', u'race', u'intellig', u'articl']
[u'leda', u'face', u'life', u'sentenc', u'fatal', u'beat']
[u'peopl', u'defend', u'home', u'fire', u'govt', u'urg']
[u'london', u'transport', u'bomber', u'stag', u'polic']
[u'lower', u'import', u'worri', u'coal', u'analyst']
[u'malaysia', u'deputi', u'anwar', u'mahathir']
[u'face', u'court', u'video', u'store', u'bomb', u'hoax']
[u'give', u'suspend', u'sentenc', u'home', u'bomb']
[u'hospit', u'cliff', u'fall']
[u'jail', u'wife', u'manslaught']
[u'martin', u'open', u'kununurra', u'offic']
[u'massacr', u'claim', u'stall', u'darfur', u'peac', u'talk']
[u'mayor', u'call', u'better', u'south', u'burnett', u'road']
[u'mayor', u'beat', u'shoalwat', u'road', u'fund']
[u'mcgauran', u'meet', u'wool', u'grower', u'peta', u'deal']
[u'melbourn', u'woman', u'launch', u'chook']
[u'merkel', u'schroeder', u'amid', u'elect', u'limbo']
[u'mildura', u'hold', u'driver', u'restrict', u'forum']
[u'militari', u'enlist', u'commonwealth', u'game', u'secur']
[u'mine', u'compani', u'push', u'market', u'higher']
[u'molik', u'slump']
[u'moon', u'plan', u'take', u'nasa', u'futur']
[u'mosley', u'dismiss', u'threat', u'breakaway', u'seri']
[u'hop', u'bushfir', u'report', u'support']
[u'maintain', u'support', u'telstra', u'sale']
[u'unfaz', u'citizenship', u'claim']
[u'urg', u'accc', u'probe', u'rise', u'fuel', u'price']
[u'museum', u'pay', u'tribut', u'fossil', u'tourism', u'pioneer']
[u'mutant', u'stem', u'rust', u'africa']
[u'nasa', u'announc', u'return', u'moon']
[u'nation', u'tamworth', u'seat']
[u'nation', u'reviv', u'flat', u'propos']
[u'nazi', u'hunter', u'simon', u'wiesenth', u'die']
[u'newcastl', u'council', u'face', u'sack', u'mayor']
[u'newer', u'motorcycl', u'train', u'scheme', u'best']
[u'newmont', u'pollut', u'trial', u'ahead', u'court', u'say']
[u'orlean', u'return', u'halt', u'storm', u'loom']
[u'safeti', u'measur', u'help', u'save', u'british', u'diver', u'tour']
[u'korea', u'demand', u'reactor', u'disarma']
[u'korea', u'reactor', u'demand', u'put', u'deal', u'limbo']
[u'noll', u'say', u'promot', u'firm', u'hurt', u'reput']
[u'northern', u'face', u'chickenpox', u'woe']
[u'north', u'korean', u'nuclear', u'promis', u'shaki', u'grind']
[u'price', u'surg', u'depress', u'market']
[u'opec', u'hold', u'spare', u'capac']
[u'opinion', u'seek', u'tent', u'embassi']
[u'organ', u'olymp', u'adelaid']
[u'pair', u'lose', u'antarct', u'crevass']
[u'parol', u'board', u'slam', u'jewelleri', u'store', u'shoot']
[u'passeng', u'airport', u'secur', u'upgrad']
[u'pathan', u'leav', u'zimbabw', u'troubl', u'second', u'test']
[u'owner', u'urg', u'advantag', u'registr']
[u'petrol', u'excis', u'increas', u'review']
[u'pickett', u'quit', u'port']
[u'plan', u'govern', u'fuel', u'excis', u'increas']
[u'plan', u'restrict', u'fear', u'hospit', u'site']
[u'short', u'chang', u'traine', u'labor', u'say']
[u'polic', u'escap', u'charg', u'bulldog', u'phone']
[u'polic', u'probe', u'south', u'gippsland', u'school', u'blaze']
[u'polic', u'question', u'bundaberg', u'hospit', u'mental', u'health']
[u'polic', u'shoot', u'arm', u'robberi']
[u'polic', u'upgrad', u'charg', u'incid']
[u'poor', u'outlook', u'wheat', u'export']
[u'power', u'restor', u'blackout', u'stop', u'surgeri']
[u'princ', u'charl', u'open', u'organ', u'confer']
[u'public', u'urg', u'push', u'medic', u'school']
[u'puppi', u'dump', u'move']
[u'push', u'perman', u'facil', u'frustrat', u'ambul']
[u'quadripleg', u'lose', u'battl', u'mountain', u'buggi', u'rego']
[u'queensland', u'roar', u'yong', u'shin', u'retir']
[u'radiat', u'machin', u'cancer', u'treatment', u'time']
[u'turn', u'away', u'mental', u'health', u'patient', u'memo']
[u'rain', u'boost', u'prospect', u'field', u'day']
[u'recommend', u'deliv', u'bushfir']
[u'region', u'media', u'spotlight', u'bathurst']
[u'region', u'report', u'highlight', u'healthi', u'popul']
[u'replac', u'lancast', u'gerran', u'road', u'team']
[u'research', u'question', u'lake', u'entranc', u'dredg']
[u'resid', u'flee', u'storm', u'follow', u'katrina', u'path']
[u'restaur', u'wont', u'high', u'rise', u'accid']
[u'rise', u'petrol', u'price', u'fuel', u'tourism', u'concern']
[u'rockhampton', u'hop', u'retain', u'beef', u'expo']
[u'ronaldinho', u'win', u'player', u'award']
[u'rural', u'learn', u'palliat', u'care']
[u'govt', u'prepar', u'angri', u'respons', u'bushfir']
[u'sartor', u'urg', u'quit', u'racist', u'comment']
[u'introduc', u'danger', u'drive', u'penalti']
[u'scientist', u'studi', u'risk']
[u'scientist', u'urg', u'rescu', u'amphibian']
[u'seatbelt', u'safeti', u'plan', u'forklift', u'oper']
[u'selector', u'deni', u'career']
[u'sharon', u'prepar', u'showdown', u'netanyahu']
[u'sheedi', u'tip', u'west', u'coast', u'flag']
[u'sikh', u'communiti', u'rais', u'highway', u'upgrad', u'concern']
[u'doubl', u'gunner']
[u'specialist', u'assault', u'nurs', u'work', u'break']
[u'student', u'board', u'tourism', u'train']
[u'super', u'seri', u'squad', u'unveil', u'today']
[u'tank', u'attack', u'iraqi', u'detain', u'soldier']
[u'tank', u'break', u'iraqi', u'jail', u'free', u'soldier']
[u'vegi', u'grower', u'applaud', u'market', u'push']
[u'teen', u'sentenc', u'theft']
[u'teen', u'surviv', u'bussel', u'highway', u'crash']
[u'govern', u'decid', u'increas', u'fuel']
[u'offic', u'say', u'reput', u'hurt', u'phone']
[u'tour', u'oper', u'urg', u'care', u'japanes', u'visitor']
[u'townsvill', u'airport', u'prepar', u'jetstar']
[u'tradit', u'owner', u'dump', u'protest']
[u'trial', u'loom', u'cooper', u'share', u'fight']
[u'tuna', u'threaten', u'speci', u'list', u'good']
[u'charg', u'teen', u'kidnap']
[u'face', u'court', u'kidnap', u'charg']
[u'kill', u'crash', u'tractor', u'driver', u'trap']
[u'admit', u'smash', u'jail', u'wall', u'rescu']
[u'deni', u'storm', u'iraqi', u'jail', u'free', u'soldier']
[u'unfinish', u'busi', u'intern']
[u'unlicens', u'builder', u'advantag', u'owner']
[u'valu', u'coal', u'export', u'tip', u'soar']
[u'victorian', u'writer', u'win', u'vogel', u'prize']
[u'waist', u'size', u'wast', u'heart', u'diseas', u'warn']
[u'water', u'bomber', u'help', u'bushfir', u'victim']
[u'water', u'plan', u'worri', u'south', u'west', u'town']
[u'water', u'suppli', u'fluorid']
[u'wollongong', u'council', u'lower', u'deficit']
[u'woodi', u'weed', u'power', u'town']
[u'acn', u'treatment', u'link', u'respiratori', u'infect']
[u'govt', u'mental', u'health', u'propos']
[u'law', u'boost', u'tree', u'protect']
[u'actu', u'lodg', u'minimum', u'wage', u'case']
[u'actu', u'delay', u'wage', u'claim', u'say', u'busi', u'group']
[u'afp', u'child', u'porn', u'unit', u'make', u'arrest']
[u'agforc', u'welcom', u'veget', u'law', u'report']
[u'agricultur', u'sector', u'seek', u'guest', u'worker', u'visa']
[u'airport', u'secur', u'boost']
[u'albani', u'reject', u'high', u'rise', u'applic']
[u'alcan', u'plead', u'guilti', u'worker', u'death']
[u'armidal', u'murder', u'probe', u'spread', u'brisban', u'sydney']
[u'australian', u'miss', u'thailand', u'give', u'crown']
[u'base', u'jumper', u'charg', u'crane', u'plung']
[u'beatti', u'join', u'critic', u'latham', u'diari']
[u'beatti', u'see', u'need', u'health', u'inquiri']
[u'beij', u'revolut', u'flush', u'toilet', u'foul', u'reput']
[u'beresford', u'look', u'forward', u'rebuild', u'bundaberg']
[u'fuel', u'research', u'boost']
[u'bomber', u'resign']
[u'brack', u'seek', u'sunset', u'claus', u'counter', u'terror']
[u'brain', u'surgeon', u'front', u'court', u'cocain', u'possess']
[u'braun', u'jone', u'rule', u'grand', u'final']
[u'braun', u'jone', u'miss', u'grand', u'final']
[u'british', u'polic', u'probe', u'kate', u'moss', u'drug', u'claim']
[u'burma', u'need', u'help', u'democrat', u'reform', u'report']
[u'busi', u'ravensthorp', u'project']
[u'caus', u'mackay', u'unknown']
[u'back', u'merkel', u'amid', u'german', u'elect', u'stalem']
[u'childhood', u'obes', u'easili', u'accept', u'nutritionist']
[u'children', u'remov', u'properti', u'girl', u'death']
[u'citi', u'slicker', u'bone', u'properti', u'manag']
[u'coast', u'busi', u'prepar', u'open']
[u'coat', u'fine', u'wool']
[u'communiti', u'concern', u'toxic', u'wast', u'plan', u'dump']
[u'contact', u'keen', u'work']
[u'cooper', u'pacif', u'island', u'futur']
[u'corbi', u'reaction', u'disappoint', u'depart', u'indonesian']
[u'cordingley', u'return', u'red']
[u'costello', u'talk', u'benefit', u'china', u'econom']
[u'council', u'confid', u'holiday', u'let', u'restrict']
[u'council', u'fee', u'tripl', u'newcastl', u'suburb']
[u'councillor', u'threaten', u'boycott', u'mayor', u'vote']
[u'councillor', u'rise']
[u'council', u'fund', u'pyap', u'restor']
[u'court', u'hear', u'crime', u'case', u'februari']
[u'croc', u'rest', u'breaker', u'clash']
[u'crow', u'consid', u'motlop']
[u'cyclon', u'hamper', u'tiwi', u'forestri', u'project']
[u'depress', u'patient', u'better', u'choos', u'treatment']
[u'develop', u'deni', u'put', u'spin', u'canal', u'rock']
[u'district', u'manag', u'quit', u'frustrat']
[u'dolphin', u'stab', u'brutal', u'attack']
[u'dolphin', u'track', u'decad', u'stab', u'death']
[u'doubt', u'cast', u'bushfir', u'report']
[u'seek', u'paedophil', u'sentenc', u'court']
[u'drought', u'see', u'reduc', u'cotton', u'plant']
[u'electron', u'keep', u'tab', u'sheep']
[u'timor', u'doesnt', u'need', u'disput', u'field', u'research']
[u'move', u'internet', u'phone', u'communic']
[u'excis', u'decis', u'wont', u'petrol', u'price']
[u'farmer', u'mccain', u'cut', u'broccoli', u'quota']
[u'farmer', u'urg', u'boycott', u'water']
[u'fear', u'steal', u'generat', u'legaci', u'affect', u'children']
[u'feder', u'anti', u'terror', u'plan', u'breach', u'law']
[u'govt', u'blame', u'health', u'work', u'forc', u'shortag']
[u'final', u'close', u'hall', u'walk', u'free']
[u'firebug', u'jail', u'year']
[u'firefight', u'battl', u'morgan', u'blaze']
[u'firefight', u'unsur', u'recycl', u'water']
[u'fish', u'review', u'deadlin', u'extend']
[u'focus', u'remain', u'road', u'safeti']
[u'fuel', u'price', u'bite', u'sale']
[u'industri', u'action', u'loom', u'fulham', u'prison']
[u'gasnier', u'nurs', u'calf', u'injuri']
[u'gasnier', u'play', u'crowd', u'factor']
[u'get', u'older', u'better', u'thousand', u'recruit']
[u'global', u'warm', u'blame', u'hurrican']
[u'gold', u'council', u'warn', u'declin', u'explor']
[u'govt', u'call', u'releas', u'lead', u'report']
[u'govt', u'expect', u'soften', u'welfar', u'work', u'packag']
[u'govt', u'increas', u'control', u'burn', u'lead']
[u'govt', u'pledg', u'leav', u'ngaringga', u'ngurra']
[u'govt', u'profil']
[u'govt', u'urg', u'crack', u'privat', u'school']
[u'govt', u'work', u'walk', u'school', u'safer']
[u'fear', u'bigger', u'workload', u'dementia', u'clinic']
[u'grazier', u'seek', u'water', u'resourc', u'boost']
[u'hannay', u'chanc', u'face', u'eel']
[u'hartley', u'call', u'injur', u'haddin']
[u'health', u'inquiri', u'chief', u'decid', u'wit', u'recal']
[u'hickss', u'defenc', u'team', u'readi', u'trial']
[u'hickss', u'lawyer', u'plenti', u'time', u'ruddock']
[u'hick', u'tribun']
[u'higher', u'petrol', u'price', u'fuel', u'fish', u'concern']
[u'high', u'hop', u'cape', u'cattl', u'plan']
[u'hobart', u'airport', u'polic', u'command']
[u'human', u'stem', u'cell', u'repair', u'mice', u'spinal', u'cord']
[u'hurrican', u'rita', u'aim', u'gulf', u'mexico']
[u'hurrican', u'rita', u'spar', u'florida', u'key', u'worst']
[u'ilfracomb', u'expand', u'dam']
[u'illawarra', u'hous', u'unit', u'price', u'fall', u'land', u'price']
[u'indigen', u'leader', u'offer', u'help', u'eas', u'sartor', u'damag']
[u'indonesia', u'face', u'bird', u'epidem']
[u'indonesian', u'boat', u'flee', u'author']
[u'indonesian', u'girl', u'die', u'show', u'bird']
[u'injuri', u'knight', u'squad']
[u'insurg', u'insid', u'iraqi', u'polic', u'forc', u'offici']
[u'investor', u'rattl', u'rat', u'rise']
[u'isra', u'armi', u'leav', u'abandon', u'settlement']
[u'israel', u'iran', u'clash', u'nuclear', u'program']
[u'joey', u'crash', u'mexico']
[u'karzai', u'queri', u'tactic', u'afghan', u'count', u'vote']
[u'killer', u'whale', u'spot', u'gold', u'coast']
[u'kiwi', u'campbel', u'lead', u'aussi', u'presid']
[u'koizumi', u'confirm', u'japan']
[u'labor', u'angri', u'parliamentari', u'sit', u'chang']
[u'labor', u'attack', u'elect', u'campaign']
[u'latham', u'diari', u'sicken', u'rann']
[u'lennon', u'deni', u'sack', u'governor', u'butler']
[u'lion', u'seek', u'rehn', u'help', u'revitalis', u'ruckmen']
[u'llama', u'trial', u'sheep', u'minder']
[u'local', u'author', u'urg', u'solv', u'afford']
[u'mailer', u'receiv', u'lifetim', u'achiev', u'award']
[u'admit', u'cabbi', u'kill', u'behead', u'threat']
[u'kill', u'milk', u'truck', u'accid']
[u'question', u'stab', u'death']
[u'shoot', u'buttock', u'adelaid']
[u'mareeba', u'host', u'rodeo', u'school']
[u'market', u'dip', u'yesterday', u'gain']
[u'mayor', u'confid', u'estat', u'plan', u'consid', u'storm']
[u'medic', u'board', u'consid', u'action', u'african']
[u'minist', u'appal', u'string', u'domest', u'violenc']
[u'minist', u'tight', u'lip', u'polic', u'deputi', u'quit']
[u'minist', u'warn', u'govt', u'road', u'fund']
[u'moder', u'quak', u'rattl', u'indonesia', u'aceh']
[u'monto', u'secur', u'ilmenit', u'contract']
[u'alleg', u'death', u'young', u'sydney']
[u'chang', u'welfar', u'work', u'program']
[u'mortlock', u'young', u'rest', u'european', u'tour']
[u'offer', u'roll', u'sleav', u'coff', u'harbour']
[u'promot', u'abstin', u'aid', u'reduct', u'strategi']
[u'murder', u'admit', u'culpabl', u'freeway', u'death']
[u'murray', u'cycl', u'event', u'adopt', u'format']
[u'muslim', u'leader', u'seek', u'reassur', u'law']
[u'nasa', u'see', u'sign', u'marsquak']
[u'nativ', u'oil', u'fight', u'bacteria']
[u'hospit', u'weipa']
[u'chancellor', u'urg', u'flexibl']
[u'reject', u'telstra', u'dirti', u'deal', u'claim']
[u'firm', u'date', u'open', u'mudge', u'abattoir']
[u'magic', u'solut', u'fuel', u'price']
[u'northern', u'top', u'unemploy', u'list']
[u'titl', u'need', u'cover', u'wolf', u'novel']
[u'nurs', u'strike', u'hospit', u'secur']
[u'olymp', u'champion', u'brown', u'join', u'dutch', u'cycl', u'team']
[u'opec', u'suspend', u'quota']
[u'opposit', u'seek', u'time', u'bushfir', u'victim']
[u'miss', u'indian', u'storm']
[u'overtim', u'concern', u'contribut', u'sieg', u'death']
[u'pacif', u'nation', u'freight', u'train', u'worker', u'strike']
[u'pacif', u'nation', u'rail', u'strike', u'court', u'rule']
[u'parent', u'warn', u'girl', u'attack']
[u'parliament', u'sit', u'chang', u'room']
[u'parliament', u'hear', u'case', u'foster', u'care', u'abus']
[u'parson', u'face', u'possibl', u'action', u'bulldog']
[u'peta', u'maintain', u'mules', u'campaign', u'face', u'lawsuit']
[u'piano', u'teacher', u'guilti', u'abus']
[u'pittman', u'track', u'injuri', u'plagu', u'year']
[u'pittman', u'track', u'decemb', u'return']
[u'unveil', u'airport', u'secur', u'upgrad']
[u'polic', u'consid', u'death', u'suspici']
[u'polic', u'deni', u'drug', u'girl', u'death']
[u'polic', u'express', u'frustrat', u'driver', u'blitz']
[u'polic', u'investig', u'train', u'truck', u'collis']
[u'polic', u'seek', u'wheel', u'drive', u'owner', u'search']
[u'polic', u'treat', u'hermannsburg', u'death', u'murder']
[u'premier', u'outlin', u'plan', u'tasmania']
[u'price', u'mainten', u'fine', u'cost', u'firm']
[u'princ', u'charl', u'help', u'open', u'organ', u'confer']
[u'purtil', u'balranald', u'mayor']
[u'indonesian', u'drug', u'arrest']
[u'quartet', u'urg', u'palestinian', u'dismantl', u'militia']
[u'race', u'club', u'photo', u'finish']
[u'record', u'break', u'stud', u'worth', u'cent', u'say', u'owner']
[u'record', u'surplus', u'warrant', u'cut', u'say', u'opposit']
[u'research', u'undertak', u'larg', u'nationwid']
[u'reveng', u'killer', u'jail', u'year']
[u'rita', u'upgrad', u'categori', u'gulf', u'journey']
[u'riverland', u'move', u'address', u'obstetr', u'shortag']
[u'road', u'death', u'trigger', u'polic', u'safeti', u'messag']
[u'roger', u'bid', u'histor', u'titl']
[u'santo', u'sell', u'timor', u'permit']
[u'vow', u'oppos', u'toxic', u'wast', u'dump', u'plan']
[u'seccomb', u'hang', u'glove']
[u'secur', u'upgrad', u'australian', u'airport']
[u'sensit', u'student', u'file', u'miss']
[u'shark', u'death', u'prompt', u'extra', u'aerial', u'patrol']
[u'shiba', u'lane', u'detail', u'broom', u'japanes', u'connect']
[u'shine', u'dome', u'join', u'nation', u'heritag', u'list']
[u'shoalhaven', u'bird', u'project', u'win', u'nation', u'award']
[u'skill', u'vacanc', u'fall']
[u'solar', u'challeng', u'team', u'face', u'car', u'dilemma']
[u'south', u'africa', u'consid', u'lift', u'eleph', u'cull']
[u'southern', u'thai', u'unrest', u'worsen', u'servicemen', u'kill']
[u'spur', u'humbl', u'tini', u'grimsbi']
[u'stanhop', u'back', u'bushfir', u'lawsuit', u'extens']
[u'state', u'urg', u'airport', u'secur', u'upgrad']
[u'state', u'urg', u'rethink', u'nativ', u'veget']
[u'studi', u'profil', u'miner', u'industri', u'femal', u'worker']
[u'sudan', u'power', u'share', u'govt', u'complet']
[u'sugar', u'grower', u'miller', u'warn', u'reform', u'grant']
[u'support', u'emerg', u'airport', u'secur', u'upgrad']
[u'survey', u'predict', u'month', u'steadi', u'rat']
[u'boat', u'firm', u'look', u'build', u'polic', u'contract']
[u'tendulkar', u'pull', u'super', u'seri']
[u'thorp', u'rediscov', u'competit', u'spirit']
[u'tobacco', u'product', u'slump', u'hit', u'zimbabw', u'economi']
[u'trend', u'indic', u'strong', u'econom', u'recoveri']
[u'ukrainian', u'parliament', u'reject', u'nomine']
[u'union', u'accus', u'fear', u'monger', u'chang']
[u'union', u'defend', u'campaign', u'cost']
[u'union', u'question', u'workplac', u'respons', u'accid']
[u'author', u'googl', u'librari', u'project']
[u'vasil', u'lawyer', u'argu', u'dope', u'equip', u'faulti']
[u'vatican', u'accus', u'shield', u'crime', u'suspect']
[u'veget', u'law', u'hamper', u'mine', u'explor']
[u'verif', u'north', u'korea', u'deal']
[u'vicforest', u'admit', u'log', u'nation', u'park']
[u'govt', u'hand', u'polic', u'power']
[u'visit', u'uncov', u'concern', u'cooma', u'oper']
[u'cattl', u'sell', u'roma']
[u'govt', u'reveal', u'record', u'budget', u'surplus']
[u'step', u'help', u'fledgl', u'footi', u'player']
[u'welfar', u'chang', u'dont', u'help', u'vulner', u'aussi', u'labor']
[u'welfar', u'work', u'program', u'rule', u'eas']
[u'wilcannia', u'murder', u'trial', u'move', u'sydney']
[u'wine', u'featur', u'heavili', u'foster', u'restructur']
[u'woman', u'die', u'attack']
[u'women', u'equal', u'award', u'recognis', u'lead', u'workplac']
[u'work', u'begin', u'bena', u'bypass']
[u'minut', u'bibl', u'design', u'time', u'starv']
[u'million', u'order', u'rita', u'path']
[u'chief', u'magistr', u'prais', u'psych', u'unit']
[u'court', u'agre', u'effici', u'measur']
[u'health', u'system', u'break', u'point']
[u'adelaid', u'arrest', u'child', u'porn']
[u'administr', u'control', u'disput', u'cooper', u'share']
[u'final', u'fever', u'sweep', u'australia']
[u'resolv', u'anthem', u'fiasco']
[u'school', u'decis', u'dishearten']
[u'airport', u'chief', u'expect', u'secur', u'chang']
[u'airport', u'lack', u'inform', u'fight', u'crime', u'report']
[u'albani', u'hospit', u'get', u'extra']
[u'age', u'involv', u'orang', u'brawl']
[u'alleg', u'thiev', u'nab', u'nois', u'complaint']
[u'ambul', u'crew', u'solut', u'good', u'union']
[u'passeng', u'plane', u'make', u'amaz', u'emerg']
[u'apolog', u'demand', u'joyc', u'canberra']
[u'arsonist', u'blame', u'currumbin', u'restaur', u'blaze']
[u'attack', u'car', u'forc', u'school', u'closur']
[u'australia', u'help', u'indonesia', u'fight', u'bird']
[u'bakeri', u'fin', u'food', u'breach']
[u'ballina', u'address', u'fuel', u'summit']
[u'basra', u'withdraw', u'cooper', u'british', u'raid']
[u'beatti', u'accus', u'media', u'lazi', u'health', u'report']
[u'beatti', u'liabil']
[u'bicycl', u'bomb', u'kill', u'pakistan']
[u'bouncer', u'jail', u'manslaught']
[u'brendan', u'honour', u'victim']
[u'brisban', u'face', u'indonesian', u'drug', u'charg']
[u'brit', u'probe', u'bulli', u'claim', u'swim', u'coach']
[u'broadacr', u'land', u'valu', u'rise']
[u'broom', u'hospit', u'share', u'budget', u'surplus', u'fund']
[u'bunburi', u'miss', u'hospit', u'servic', u'fund']
[u'burdekin', u'land', u'manag', u'plan', u'finalis']
[u'burnett', u'council', u'consid', u'nude', u'beach', u'plan']
[u'busi', u'pass', u'fuel', u'cost']
[u'cairn', u'water', u'cheap', u'environment', u'group', u'say']
[u'accc', u'regul', u'fuel', u'price', u'summit']
[u'action', u'curb', u'loss', u'rural', u'obstetrician']
[u'urgent', u'review', u'indigen', u'school']
[u'chesney', u'okay', u'zellweg', u'split']
[u'claim', u'polic', u'consult', u'terror', u'debat']
[u'clarenc', u'valley', u'mayor', u'stand', u'financ']
[u'cole', u'myer', u'announc', u'profit']
[u'communiti', u'group', u'seek', u'invest', u'properti']
[u'compani', u'threaten', u'legal', u'action', u'union', u'disput']
[u'concern', u'contract', u'worker', u'overlook', u'airport']
[u'cooma', u'hospit', u'good', u'shape']
[u'council', u'consid', u'run', u'esper', u'visitor', u'centr']
[u'council', u'forc', u'bank', u'give', u'loan']
[u'councillor', u'caloundra', u'airport', u'tour']
[u'councillor', u'seek', u'advic', u'mayor', u'vote', u'boycott']
[u'council', u'seek', u'industri', u'back', u'safer', u'highway']
[u'council', u'seek', u'pioneer', u'settlement', u'fund']
[u'council', u'staffer', u'sack', u'love', u'letter', u'deni']
[u'council', u'eas', u'mile', u'beach', u'build', u'ban']
[u'countri', u'hospit', u'ignor', u'nation']
[u'cricket', u'minnow', u'battl', u'shoot', u'world']
[u'croesus', u'boss', u'quit', u'cite', u'person', u'reason']
[u'crossbow', u'outlaw']
[u'crow', u'drop', u'south']
[u'deal', u'steal', u'generat', u'flow']
[u'delta', u'make', u'line']
[u'demand', u'fuel', u'eas']
[u'democrat', u'accus', u'onesteel', u'bulli', u'lawyer']
[u'deport', u'activist', u'reject', u'violenc', u'accus']
[u'deterg', u'spill', u'rais', u'environ', u'concern']
[u'develop', u'rethink', u'albani', u'unit', u'complex', u'plan']
[u'dfat', u'issu', u'bird', u'warn']
[u'diver', u'search', u'miss', u'filipina', u'student']
[u'doctor', u'ban', u'public', u'air', u'hospit']
[u'doncast', u'knock', u'citi', u'leagu']
[u'dont', u'write', u'cowboy', u'murray']
[u'doubl', u'murder', u'trial', u'hear', u'kill', u'threat', u'claim']
[u'downer', u'warn', u'chief', u'zimbabw', u'visit']
[u'driver', u'warn', u'watch', u'wander', u'cattl']
[u'drought', u'take', u'toll', u'number']
[u'eagl', u'welcom', u'matera', u'final']
[u'educ', u'dept', u'tell', u'improv', u'file', u'handl']
[u'appoint', u'communiti', u'advoc']
[u'faith', u'summit', u'pledg', u'erad', u'extrem']
[u'famili', u'call', u'inform']
[u'farm', u'group', u'seek', u'fuel', u'cost', u'respit']
[u'fatigu', u'navig', u'factor', u'fish', u'boat']
[u'establish', u'base', u'sydney']
[u'fear', u'length', u'hickss', u'detent', u'affect', u'trial']
[u'ferri', u'head', u'quit', u'drug', u'test']
[u'caus', u'damag', u'perth', u'school']
[u'fisher', u'fin', u'gippsland', u'abalon', u'poach']
[u'fisheri', u'offic', u'darwin']
[u'fisherman', u'concern', u'illeg', u'boat', u'spot']
[u'fishermen', u'concern', u'illeg', u'inshor', u'poach']
[u'follow', u'drought', u'meet', u'plan', u'park']
[u'forb', u'ask', u'vail', u'open', u'saleyard']
[u'foreign', u'fishermen', u'anger', u'local']
[u'formal', u'qualif', u'boost', u'pacif', u'polic']
[u'french', u'condemn', u'armstrong', u'dope', u'slur']
[u'fuel', u'boycott', u'predict', u'affect', u'small', u'independ']
[u'fuel', u'summit', u'discuss', u'compani', u'profit', u'margin']
[u'fuel', u'watch', u'high', u'hop', u'petrol', u'summit']
[u'furious', u'scottish', u'ref', u'threaten', u'strike', u'lennon']
[u'project', u'russian', u'worker', u'worri', u'union']
[u'gather', u'focus', u'women', u'role']
[u'glori', u'scrape', u'away', u'victori']
[u'gold', u'coast', u'fan', u'think']
[u'good', u'samaritan', u'hand']
[u'govt', u'call', u'investig', u'uranium', u'mine']
[u'govt', u'defend', u'loxton', u'polic', u'station']
[u'govt', u'defend', u'region', u'employ', u'effort']
[u'govt', u'increas', u'school', u'fuel', u'rebat']
[u'govt', u'pressur', u'fine', u'vicforest', u'nation']
[u'govt', u'promot', u'ethanol']
[u'govt', u'send', u'mental', u'health', u'expert', u'nauru', u'detaine']
[u'grazier', u'warn', u'expect', u'longer', u'period']
[u'groom', u'fin', u'kiss', u'bride']
[u'hama', u'reject', u'disarm']
[u'hospit', u'data', u'caus', u'concern', u'inquiri', u'tell']
[u'human', u'remain', u'spark', u'miss', u'person', u'check']
[u'hurrican', u'katrina', u'death', u'toll', u'top']
[u'hurrican', u'rita', u'churn', u'texa']
[u'hurrican', u'rita', u'near', u'american', u'coastlin']
[u'hurrican', u'survivor', u'flee', u'storm', u'threat']
[u'icac', u'discredit', u'whistleblow', u'nurs']
[u'iemma', u'defend', u'minist', u'indigen', u'slur']
[u'indian', u'crowd', u'shoot', u'say', u'flintoff']
[u'indian', u'crowd', u'shoot', u'say', u'freddi']
[u'indigen', u'educ', u'say', u'crisi', u'point']
[u'indigen', u'star', u'gather', u'dead', u'night']
[u'indonesian', u'offic', u'kill', u'wife', u'judg', u'divorc']
[u'intern', u'student', u'plan', u'doubl', u'standard']
[u'irrig', u'chang', u'spark', u'council', u'revenu', u'loss', u'fear']
[u'jervi', u'marina', u'plan', u'discuss']
[u'joyc', u'call', u'remot', u'senat', u'vote']
[u'labor', u'pressur', u'govt', u'homeland', u'secur', u'dept']
[u'lara', u'give', u'mandela', u'torment', u'south']
[u'light', u'smoke', u'tripl', u'heart', u'diseas', u'risk']
[u'london', u'bomb', u'suspect', u'extradit', u'itali']
[u'london', u'bomb', u'suspect', u'leav', u'italian', u'prison']
[u'london', u'shoot', u'inform', u'mishandl', u'polic', u'chief']
[u'longreach', u'unlik', u'extra', u'paramed']
[u'machineri', u'field', u'day', u'draw', u'close']
[u'hospit', u'head', u'crash']
[u'remand', u'custodi', u'tamworth', u'murder']
[u'market', u'make', u'small', u'gain']
[u'market', u'cast', u'nervous', u'watch', u'hurrican', u'rita']
[u'matera', u'name', u'grand', u'final']
[u'mayor', u'prais', u'control', u'despit', u'dead', u'attack']
[u'meatwork', u'strike', u'process', u'rat']
[u'meet', u'discuss', u'road', u'safeti', u'concern']
[u'meet', u'offer', u'advic', u'potenti', u'councillor']
[u'mexican', u'minist', u'die', u'helicopt', u'crash']
[u'million', u'urg', u'evacu', u'hurrican', u'approach']
[u'minist', u'defend', u'comment', u'portfolio', u'alloc']
[u'seat', u'avail', u'tiger', u'fan']
[u'moroney', u'seek', u'cash', u'anti', u'terror', u'command']
[u'mother', u'puzzl', u'sudden', u'discoveri', u'school', u'file']
[u'cast', u'doubt', u'bundaberg', u'market', u'plan']
[u'stepdad', u'arrest', u'year', u'old', u'death']
[u'campaign', u'push', u'valu', u'money', u'holiday']
[u'newcastl', u'build', u'contractor', u'order', u'improv']
[u'insight', u'danger', u'global', u'bird']
[u'mayor', u'central', u'darl', u'council']
[u'theatr', u'compani', u'head', u'appoint']
[u'north', u'korea', u'lock', u'nuclear', u'pact', u'negoti']
[u'announc', u'heritag', u'grant']
[u'govt', u'pressur', u'scullion', u'communic']
[u'jail', u'australian', u'embassi', u'blast']
[u'onslow', u'readi', u'school', u'open']
[u'opposit', u'pursu', u'minist', u'polic', u'resign']
[u'opposit', u'question', u'bushfir', u'report', u'discrep']
[u'opposit', u'question', u'school', u'demolit', u'propos']
[u'optus', u'invest', u'broadband']
[u'pacif', u'brand', u'sheriden']
[u'pakistan', u'push', u'ban', u'shabbir', u'return', u'england']
[u'parent', u'school', u'disput', u'protest', u'parliament']
[u'time', u'work', u'trend', u'lead', u'underemploy']
[u'plane', u'touch', u'safe', u'emerg']
[u'flag', u'fuel', u'price', u'discuss', u'group']
[u'reject', u'call', u'homeland', u'secur', u'dept']
[u'polic', u'colonel', u'kill', u'latest', u'iraq', u'violenc']
[u'polic', u'defend', u'emerg', u'respons', u'time']
[u'polic', u'protest', u'africa']
[u'polic', u'investig', u'currumbin']
[u'polic', u'issu', u'drink', u'drive', u'warn']
[u'polic', u'charg', u'supermarket', u'attempt']
[u'polit', u'determin', u'uranium', u'explor']
[u'pont', u'play', u'clash']
[u'pont', u'play', u'tasmania']
[u'popul', u'hit']
[u'premier', u'leagu', u'probe', u'disappear', u'crowd']
[u'pulp', u'expect', u'hurt', u'hous', u'price']
[u'bull', u'break', u'price', u'barrier']
[u'nurs', u'seek', u'pariti']
[u'report', u'claim', u'govt', u'airport', u'plan', u'work']
[u'report', u'predict', u'global', u'warm', u'dead', u'impact']
[u'resist', u'anti', u'drug', u'increas', u'studi']
[u'rise', u'fuel', u'price', u'boost', u'ticket', u'cost']
[u'roar', u'relish', u'york', u'challeng']
[u'robber', u'chat', u'room', u'lure', u'victim']
[u'roger', u'cycl', u'time', u'trial', u'gold']
[u'roo', u'say', u'swan', u'readi', u'season', u'decid']
[u'safeti', u'breach', u'nuclear', u'reactor', u'site']
[u'liber', u'face', u'elect', u'wipe', u'poll']
[u'treasur', u'brand', u'mobil', u'distrust']
[u'scientist', u'angl', u'improv', u'fish', u'surviv', u'rat']
[u'scientist', u'hail', u'dinosaur']
[u'seafood', u'industri', u'tri', u'manag']
[u'sharapova', u'stutter', u'china', u'open', u'quarter', u'final']
[u'shellharbour', u'independ', u'protest', u'committe']
[u'kill', u'blast', u'pakistan']
[u'snail', u'scuttl', u'orang', u'export']
[u'lanka', u'complet', u'seri', u'rout']
[u'student', u'magazin', u'defend', u'date', u'rape', u'articl']
[u'student', u'teacher', u'encourag', u'visit', u'bush', u'school']
[u'summit', u'featur', u'ethanol', u'push']
[u'summit', u'urg', u'watchdog', u'monitor', u'fuel', u'price']
[u'supermarket', u'protest', u'begin', u'court', u'case']
[u'swan', u'campaign', u'save', u'histor', u'melbourn']
[u'swan', u'hope', u'grand', u'final', u'spot', u'save']
[u'alli', u'health', u'worker', u'strike']
[u'task', u'forc', u'probe', u'jetti', u'repair', u'fund']
[u'tassi', u'cyclist', u'come', u'sixth', u'madrid']
[u'teen', u'arrest', u'school', u'incid']
[u'thirti', u'case', u'forward', u'hospit', u'inquiri']
[u'nomin', u'liverpool', u'plain', u'council']
[u'train', u'hit', u'escap', u'transit', u'offic']
[u'tremor', u'shake', u'wheatbelt']
[u'tropic', u'storm', u'kill', u'philippin']
[u'typhoon', u'edg', u'japan']
[u'union', u'lose', u'appeal', u'rail', u'strike', u'injunct']
[u'union', u'say', u'health', u'worker', u'talk', u'stall']
[u'union', u'urg', u'direct', u'talk', u'resolv', u'disabl']
[u'plan', u'research', u'centr', u'echidna']
[u'golfer', u'send', u'captain', u'jack', u'high']
[u'visitor', u'centr', u'onlin', u'book', u'grant']
[u'govt', u'boost', u'counter', u'terror', u'spend']
[u'water', u'author', u'stand', u'toxic', u'soil', u'permit', u'plan']
[u'water', u'manag', u'beat', u'summer', u'demand']
[u'welfar', u'work', u'scheme', u'blackmail', u'social']
[u'whitsunday', u'trader', u'box', u'battl']
[u'wimmera', u'malle', u'driver', u'feel', u'rise', u'fuel', u'price']
[u'workplac', u'bulli', u'increas']
[u'zimbabw', u'struggl', u'despit', u'heath', u'heroic']
[u'draglin', u'build', u'near', u'emerald']
[u'dead', u'vietnam', u'flood']
[u'abbott', u'back', u'anti', u'petrol', u'sniff', u'initi']
[u'academ', u'attack', u'plan', u'protect', u'southern']
[u'delay', u'offici', u'bushfir', u'season']
[u'fan', u'boost', u'outback', u'busi']
[u'african', u'refuge', u'wrap', u'tour']
[u'forc', u'redo', u'judg', u'appoint']
[u'airport', u'secur', u'review', u'consid', u'sensibl']
[u'alic', u'spring', u'miss', u'unsniff', u'petrol']
[u'issu', u'asthma', u'warn', u'launceston']
[u'american', u'citi', u'galveston', u'prepar', u'hurrican']
[u'anim', u'test', u'statist', u'label', u'alarm']
[u'injuri', u'setback', u'solskjaer']
[u'appeal', u'aim', u'rais', u'money', u'affect']
[u'australian', u'ethanol', u'cautious', u'welcom', u'govt']
[u'australian', u'soldier', u'wound', u'afghanistan']
[u'babi', u'buy', u'claim', u'shock', u'minist']
[u'injuri', u'sidelin', u'croc', u'lowrey']
[u'beatti', u'promis', u'unedit', u'hospit', u'report']
[u'bendigo', u'driver', u'feel', u'cost', u'rise', u'fuel', u'price']
[u'berrigan', u'council', u'want', u'quadripleg', u'payout', u'delay']
[u'betfair', u'illeg', u'bet', u'inquiri', u'delay', u'find']
[u'blockad', u'delay', u'return', u'school', u'student']
[u'bomb', u'threaten', u'australia', u'cricket']
[u'break', u'hill', u'want', u'exempt', u'water', u'price']
[u'budget', u'surplus', u'exceed', u'predict']
[u'bullet', u'suffer', u'straight', u'loss']
[u'bureau', u'predict', u'averag', u'rainfal', u'summer']
[u'busi', u'urg', u'market', u'savvi']
[u'byron', u'council', u'properti', u'investor', u'discuss']
[u'land', u'parcel', u'attract', u'south', u'east', u'industri']
[u'senat', u'inquiri', u'peac', u'activist']
[u'call', u'water', u'share', u'issu', u'resolv']
[u'candid', u'prepar', u'alic', u'poll']
[u'capper', u'say', u'swan', u'damag']
[u'capsicum', u'spray', u'complaint', u'lodg', u'teen']
[u'pray', u'rain', u'near', u'dam']
[u'chappel', u'want', u'ganguli', u'sourc']
[u'charg', u'lay', u'parkin', u'leak', u'brown', u'say']
[u'chariti', u'space', u'expand', u'meet', u'grow', u'demand']
[u'child', u'protect', u'worker', u'demand', u'staff', u'increas']
[u'child', u'methadon', u'death', u'investig', u'iemma']
[u'claim', u'polic', u'want', u'refurbish', u'station']
[u'clinic', u'corica', u'inspir', u'sydney']
[u'clipsal', u'pressur', u'worker', u'plant', u'closur', u'union']
[u'open', u'inquiri', u'gold', u'coast', u'council']
[u'communiti', u'concern', u'air', u'summit']
[u'communiti', u'station', u'open', u'gambier']
[u'construct', u'worker', u'walk']
[u'contractor', u'unearth', u'wwii', u'bomb', u'school']
[u'costello', u'back', u'doyl', u'toll', u'polici']
[u'costello', u'fuel', u'suggest', u'deflect', u'tactic']
[u'costello', u'urg', u'state', u'offer', u'fuel', u'relief']
[u'council', u'promis', u'hunt', u'fatal', u'attack']
[u'council', u'auction', u'hous', u'land']
[u'council', u'finalis', u'environ', u'plan']
[u'council', u'meet', u'draft', u'local']
[u'court', u'battl', u'seiz', u'fish', u'ship', u'fuel']
[u'defenc', u'dept', u'criticis', u'patrol', u'plane', u'upgrad']
[u'digniti', u'therapi', u'make', u'die', u'easier']
[u'doctor', u'tell', u'inquiri', u'botch', u'hervey']
[u'enrol', u'vote', u'elect']
[u'dog', u'fox', u'threaten', u'penguin', u'coloni']
[u'dragon', u'rest', u'readi', u'final']
[u'eagl', u'feed', u'banfield', u'experi']
[u'effort', u'combat', u'fruit', u'fli', u'continu']
[u'emerald', u'citrus', u'tree', u'destruct', u'continu']
[u'energi', u'ombudsman', u'gear', u'western', u'power', u'break']
[u'ethanol', u'group', u'welcom', u'biofuel', u'announc']
[u'ethanol', u'plant', u'consid', u'increas', u'product']
[u'europ', u'mar', u'express', u'mission', u'extend']
[u'champ', u'johnson', u'die', u'brain', u'injuri']
[u'extrem', u'motorcycl', u'group', u'wont', u'perform', u'tennant']
[u'famili', u'confid', u'find', u'miss']
[u'farmer', u'deliveri', u'fuel', u'price', u'rise']
[u'farmer', u'trade', u'opportun', u'brief']
[u'farm', u'group', u'say', u'dont', u'destroy', u'contamin', u'canola']
[u'farm', u'group', u'see', u'posit', u'biofuel', u'commit']
[u'father', u'eagl', u'player', u'proud', u'punch']
[u'fear', u'welfar', u'rule', u'save']
[u'festiv', u'tourist', u'longer']
[u'final', u'delay', u'delta', u'sing']
[u'firefight', u'eyr', u'bushfir', u'report', u'critic']
[u'follow', u'studi', u'focus', u'swift', u'creek']
[u'forest', u'industri', u'look', u'indigen', u'worker']
[u'fresh', u'evid']
[u'nation', u'club', u'rugbi', u'william', u'home']
[u'frost', u'devast', u'wheatbelt', u'farmer']
[u'fuel', u'price', u'blame', u'bega', u'valley', u'tourism', u'slump']
[u'futur', u'longreach', u'airport', u'discuss']
[u'gallop', u'rebuk', u'treasuri', u'western', u'power', u'advic']
[u'gallop', u'tight', u'lip', u'polic', u'offic']
[u'gatton', u'golfer', u'help', u'aust', u'jump', u'lead', u'japan']
[u'girl', u'methadon', u'death', u'accid', u'say']
[u'gold', u'coast', u'water', u'restrict', u'boost']
[u'govt', u'bank', u'telstra', u'bush', u'fund', u'money']
[u'govt', u'grant', u'award', u'indigen', u'music']
[u'govt', u'move', u'allay', u'biofuel', u'fear']
[u'govt', u'biofuel', u'push', u'farmer']
[u'govt', u'travel', u'contract', u'benefit', u'region', u'centr']
[u'govt', u'work', u'indonesia', u'bird', u'threat']
[u'grand', u'final', u'parad', u'take', u'melbourn', u'street']
[u'grigorieva', u'train', u'game', u'oversea']
[u'hair', u'murali', u'meet', u'super', u'seri']
[u'health', u'servic', u'say', u'bill', u'pay']
[u'hindmarsh', u'emerg', u'chanc', u'face', u'cowboy']
[u'hospit', u'pleas', u'helipad']
[u'hurrican', u'evacue', u'kill', u'highway']
[u'hurrican', u'rita', u'rain', u'orlean']
[u'indian', u'author', u'fight', u'diseas', u'storm', u'aftermath']
[u'intern', u'telstra', u'review', u'result', u'delay']
[u'intern', u'achiev', u'earli', u'edg', u'presid']
[u'investig', u'continu', u'mine', u'death']
[u'inzi', u'gayl', u'come', u'super', u'seri']
[u'irrig', u'water', u'review', u'happen']
[u'israel', u'farewel', u'nazi', u'hunter', u'wiesenth']
[u'joey', u'finish', u'tournament']
[u'liber', u'sale', u'hydro', u'compani']
[u'local', u'knowledg', u'name', u'band', u'dead']
[u'london', u'bomb', u'suspect', u'charg', u'attempt']
[u'lower', u'hous', u'pass', u'perri', u'lake', u'redevelop']
[u'macgil', u'urg', u'cautious', u'approach', u'selector']
[u'mackay', u'doctor', u'unlik', u'inquiri']
[u'mallacoota', u'play', u'swan', u'grand', u'final']
[u'feel', u'respons', u'murder', u'court', u'hear']
[u'jail', u'rape', u'dementia', u'patient']
[u'jail', u'rape']
[u'face', u'court', u'fatal', u'drive', u'shoot']
[u'market', u'end', u'week', u'flat']
[u'matera', u'stake', u'claim', u'place']
[u'mayor', u'reject', u'group', u'break', u'away', u'plan']
[u'medic', u'centr', u'face', u'poor', u'hygien', u'investig']
[u'meet', u'fail', u'head', u'nurs', u'industri', u'action']
[u'melbourn', u'commiss', u'centr', u'feder']
[u'mental', u'health', u'scheme', u'wont', u'suffer', u'doctor']
[u'methadon', u'kill', u'year', u'court', u'hear']
[u'mincor', u'make', u'nickel', u'discoveri']
[u'minist', u'blame', u'council', u'school', u'attack']
[u'minist', u'deni', u'hydro', u'sale', u'break', u'elect', u'promis']
[u'minist', u'plead', u'poor', u'alli', u'health', u'worker']
[u'miss', u'murder', u'polic']
[u'moimoi', u'stand']
[u'mother', u'charg', u'son', u'murder']
[u'want', u'quick', u'action', u'bushfir', u'report']
[u'murchison', u'metal', u'secur', u'year', u'sale']
[u'murder', u'accus', u'face', u'retrial']
[u'nativ', u'titl', u'negoti', u'break']
[u'nevill', u'miss', u'england', u'qualifi']
[u'home', u'sale']
[u'indigen', u'offic', u'coff', u'harbour']
[u'newli', u'open', u'circuit', u'host', u'road', u'race']
[u'newman', u'area', u'need', u'dialysi', u'machin', u'oper']
[u'orbost', u'medic', u'clinic', u'open']
[u'korea', u'want', u'talk', u'reactor']
[u'polic', u'murder', u'german', u'hitchhik']
[u'sailor', u'bear', u'mark', u'nuclear', u'test', u'year']
[u'offici', u'head', u'hurrican', u'affect', u'area']
[u'ogradi', u'quit', u'cofidi']
[u'compani', u'need', u'investig', u'minist']
[u'opposit', u'question', u'court', u'staff', u'reloc']
[u'opposit', u'seek', u'detail', u'ferri', u'drug', u'test']
[u'owner', u'driver', u'block', u'pacif', u'highway', u'high']
[u'king', u'walton', u'domin', u'forb', u'rich', u'list']
[u'petrol', u'price', u'forc', u'rat']
[u'admit', u'petrol', u'price', u'affect', u'inflat']
[u'polic', u'apologis', u'famili', u'death', u'investig']
[u'polic', u'investig', u'launceston', u'stab']
[u'polic', u'offic', u'face', u'stalk', u'charg']
[u'polic', u'suspect', u'arson', u'gold', u'coast', u'hous']
[u'polic', u'union', u'attack', u'airport', u'secur', u'plan']
[u'polic', u'urg', u'fan', u'behav']
[u'polic', u'warn', u'driver', u'obey', u'road', u'rule']
[u'polic', u'warn', u'scalper', u'ticket']
[u'premier', u'flag', u'wager']
[u'prison', u'guard', u'await', u'decis']
[u'prison', u'offic', u'accept', u'deal']
[u'public', u'respond', u'controversi', u'nation', u'park', u'plan']
[u'probe', u'fatal', u'train', u'tractor', u'crash']
[u'rape', u'charg', u'cricket', u'drop']
[u'region', u'airport', u'secur', u'poor', u'union']
[u'consid', u'increas', u'cooma', u'flight', u'network']
[u'roadsid', u'bomb', u'kill', u'polic', u'latest', u'thai', u'unrest']
[u'rosberg', u'partner', u'webber']
[u'safeti', u'issu', u'umbakumba', u'school', u'close']
[u'african', u'govt', u'seiz', u'white', u'own', u'farm']
[u'scientist', u'implant', u'human', u'mice']
[u'sentenc', u'suspend', u'internet', u'crime', u'offend']
[u'shire', u'presid', u'welcom', u'muir', u'highway', u'repair']
[u'soap', u'lipstick', u'endang', u'orang', u'utan', u'report']
[u'south', u'burnett', u'meatwork', u'close', u'temporarili']
[u'stirl', u'vow', u'improv', u'indigen', u'school']
[u'storm', u'death', u'toll', u'hit', u'philippin']
[u'strawberri', u'grower', u'avoid', u'rotten', u'luck', u'sell']
[u'stutter', u'best', u'treat', u'school', u'studi']
[u'suicid', u'bomber', u'strike', u'central', u'baghdad']
[u'summer', u'beach', u'patrol', u'begin', u'northern']
[u'sunday', u'doubl', u'header', u'featur', u'tabl']
[u'supermarket', u'protest', u'doesnt', u'care', u'maleni']
[u'suspend', u'jail', u'term', u'photo', u'culprit']
[u'swan', u'eagl', u'prepar', u'grand', u'final', u'parad']
[u'swansea', u'plead', u'guilti', u'showground']
[u'sydney', u'plan', u'parad', u'swan']
[u'consid', u'live', u'rehab']
[u'taxi', u'queue', u'prompt', u'late', u'night', u'servic']
[u'tcci', u'reject', u'wilder', u'societi', u'pulp', u'tour']
[u'teacher', u'say', u'focus', u'negat', u'school']
[u'tension', u'rise', u'tini', u'french', u'pacif', u'island']
[u'test', u'herbicid', u'pollut', u'river']
[u'tire', u'cahil', u'everton', u'break']
[u'surgeri', u'stall', u'farrel', u'convers']
[u'toxic', u'dump', u'fear', u'forc', u'review', u'geelong', u'plan']
[u'truck', u'blockad', u'pass', u'mount', u'gambier']
[u'truck', u'driver', u'blockad', u'highway', u'fuel', u'protest']
[u'trucki', u'blockad', u'wont', u'chang', u'thing', u'say', u'union']
[u'trucki', u'threaten', u'shut', u'nation', u'highway']
[u'truck', u'bodi', u'urg', u'member', u'blockad']
[u'truck', u'firm', u'suffer', u'fuel', u'price', u'rise']
[u'palestinian', u'kill', u'west', u'bank', u'raid']
[u'umbakumba', u'polic', u'forc', u'surrend', u'detaine']
[u'union', u'criticis', u'indigen', u'educ', u'cutback']
[u'unit', u'seek', u'return', u'win', u'way']
[u'citi', u'rita', u'loom']
[u'vow', u'fight', u'afghanistan']
[u'victor', u'harbor', u'road', u'close', u'crash']
[u'western', u'power', u'break', u'region', u'nation']
[u'winemak', u'withhold', u'payment', u'grape', u'grower']
[u'wing', u'walk', u'tour', u'offer', u'uniqu', u'jumbo', u'view']
[u'women', u'sever', u'injur', u'shop', u'centr', u'plung']
[u'wool', u'grower', u'accus', u'peta', u'moratorium', u'breach']
[u'world', u'wackiest', u'immort', u'record', u'book']
[u'year', u'assess', u'face', u'review']
[u'abandon', u'diesel', u'excis', u'increas', u'labor', u'urg']
[u'grand', u'final', u'kick']
[u'album', u'danc', u'cancer', u'beat']
[u'qaeda', u'member', u'arrest', u'somalia']
[u'anti', u'terror', u'law', u'unjustifi']
[u'arrest', u'abort', u'lobbi', u'group', u'clash']
[u'arrest', u'warrant', u'issu', u'british', u'troop', u'iraq']
[u'beatti', u'hospit', u'report', u'releas']
[u'busi', u'bodi', u'welcom', u'western', u'power', u'break']
[u'canberra', u'wine', u'steal', u'murrumbateman']
[u'capirossi', u'grab', u'sepang', u'pole']
[u'caribbean', u'coral', u'warm', u'storm', u'spawn', u'sea']
[u'catastroph', u'night', u'fear', u'rita', u'near', u'coast']
[u'chemic', u'receptor', u'link', u'placebo', u'effect']
[u'childcar', u'centr', u'face', u'draw', u'critic']
[u'children', u'malawi', u'food', u'shortag']
[u'complex', u'work', u'help', u'ward', u'alzheim']
[u'concern', u'rais', u'uranium', u'transport', u'licenc']
[u'council', u'defend', u'cull', u'maul', u'death']
[u'cowboy', u'look', u'say', u'murray']
[u'effect', u'make', u'case', u'hard', u'prove', u'lawyer']
[u'davi', u'semi', u'final', u'knife', u'edg']
[u'denison', u'candid', u'downplay', u'societi', u'probe']
[u'dumb', u'dumber', u'bank', u'robber', u'jail']
[u'eccleston', u'fret', u'calendar']
[u'elder', u'man', u'bodi']
[u'english', u'class', u'arent', u'dumb', u'say', u'union']
[u'galleri', u'worker', u'demand', u'inquiri', u'cancer']
[u'fatah', u'blame', u'hama', u'ralli', u'death']
[u'ferrari', u'wait', u'rossi', u'say', u'brawn']
[u'fine', u'condit', u'prevail']
[u'fine', u'condit', u'prevail', u'final']
[u'form', u'team', u'clash', u'grand', u'final', u'berth']
[u'foul', u'play', u'rule', u'cairn', u'death']
[u'call', u'crude', u'output', u'increas']
[u'nation', u'financ', u'debt', u'cancel']
[u'ganguli', u'want', u'team', u'shield', u'chappel']
[u'girl', u'narrowli', u'escap', u'abduct']
[u'grand', u'final', u'excit', u'build']
[u'grand', u'final', u'highlight']
[u'grenad', u'attack', u'danc', u'parti', u'kill']
[u'groot', u'eylandt', u'communiti', u'need', u'help', u'warn']
[u'hall', u'surround', u'countrysid', u'protect']
[u'hurrican', u'rita', u'storm', u'ashor']
[u'iemma', u'back', u'airport', u'secur', u'measur']
[u'indian', u'invest', u'reopen', u'coal']
[u'israel', u'launch', u'second', u'strike', u'gaza', u'strip']
[u'israel', u'strike', u'gaza', u'strip', u'rocket', u'attack']
[u'jakarta', u'regist', u'bird', u'patient']
[u'japanes', u'scuba', u'diver', u'die', u'queensland']
[u'japan', u'releas', u'endang', u'stork', u'wild']
[u'labor', u'commit', u'allianc', u'say', u'smith']
[u'london', u'bomber', u'mind', u'twist', u'radic', u'say', u'widow']
[u'dead', u'outsid', u'cairn', u'unit']
[u'face', u'charg', u'psychiatrist', u'alleg']
[u'matera', u'rule', u'west', u'coast']
[u'mcewen', u'warm', u'rainbow', u'jersey', u'duel']
[u'media', u'echo', u'govt', u'muslim', u'stereotyp', u'academ']
[u'mental', u'health', u'reform', u'urg', u'patient', u'death']
[u'mock', u'terror', u'attack', u'stag', u'itali']
[u'motorcyclist', u'kill', u'crash']
[u'motorway', u'close', u'fatal', u'accid']
[u'nation', u'galleri', u'report']
[u'nelson', u'prioriti', u'union']
[u'seek', u'second', u'opinion', u'cancer', u'cluster']
[u'nrma', u'call', u'road', u'spend']
[u'price', u'slide', u'gulf', u'product', u'halt']
[u'oprah', u'book', u'club', u'return', u'live', u'writer']
[u'palestinian', u'rocket', u'hit', u'israel', u'milit']
[u'persian', u'gazell', u'miss', u'world', u'solar', u'challeng']
[u'bull', u'attack', u'toddler', u'backyard']
[u'polic', u'arm', u'stun', u'gun', u'year']
[u'pope', u'elect', u'rival', u'back', u'away', u'report']
[u'power', u'houston', u'rita']
[u'press', u'confer', u'barri', u'hall', u'paul', u'roo']
[u'press', u'confer', u'john', u'worsfold']
[u'rain', u'hit', u'presid']
[u'rat', u'notic', u'spell', u'water']
[u'rita', u'delug', u'spill', u'orlean', u'leve']
[u'rita', u'expect', u'flood', u'texan', u'citi', u'smash', u'home']
[u'rita', u'fan', u'island', u'blaze']
[u'rita', u'lose', u'steam', u'coast', u'cross']
[u'rita', u'cross', u'coast']
[u'rita', u'weaken', u'citi']
[u'river', u'result', u'rosi', u'green']
[u'rocket', u'attack', u'injur', u'isra']
[u'round', u'clock', u'train', u'plan', u'prompt', u'secur']
[u'royal', u'adelaid', u'hospit', u'nurs', u'impos', u'work', u'ban']
[u'safeti', u'patient', u'right', u'doctor']
[u'sato', u'schumach', u'clear']
[u'senden', u'touch', u'texa']
[u'visitor', u'invit', u'eagl']
[u'skydiv', u'hurt', u'championship', u'parachut', u'mishap']
[u'lankan', u'elect', u'chief', u'heart']
[u'staff', u'save', u'japanes', u'tourist']
[u'steadi', u'go', u'swan']
[u'surfer', u'punch', u'shark', u'escap', u'attack']
[u'swan', u'edg', u'eagl', u'quarter', u'time']
[u'swan', u'year', u'premiership', u'drought']
[u'swan', u'hold', u'narrow', u'lead']
[u'swan', u'half', u'time']
[u'swan', u'premiership', u'drought', u'break']
[u'syria', u'blame', u'iraq', u'infiltr']
[u'tasmanian', u'skiier', u'farewel', u'disappoint', u'season']
[u'kill', u'gaza', u'hama', u'ralli', u'blast']
[u'ten', u'thousand', u'march', u'iraq']
[u'tiger', u'ignor', u'pain', u'presid']
[u'tiger', u'toppl', u'dragon', u'reach', u'grand', u'final']
[u'trio', u'injur', u'crash', u'hous']
[u'kill', u'suicid', u'bomber', u'target', u'iraqi', u'armi']
[u'kill', u'gaza', u'blast']
[u'warrior', u'get', u'year', u'terror', u'offenc']
[u'union', u'concern', u'western', u'power', u'split']
[u'soldier', u'tell', u'abus', u'iraq', u'afghanistan']
[u'stock', u'mix', u'ahead', u'rita', u'impact']
[u'teacher', u'need', u'exam', u'scrutini']
[u'water', u'review', u'consid', u'qualiti', u'access', u'issu']
[u'wenger', u'back', u'henri', u'stay', u'arsenal']
[u'wind', u'lash', u'gulf', u'coast']
[u'women', u'recov', u'storey', u'shop', u'centr']
[u'wood', u'win', u'bronz', u'road', u'race']
[u'worker', u'take', u'hospit', u'leak']
[u'youth', u'invit', u'join', u'ministeri', u'advisori', u'council']
[u'zimbabw', u'player', u'disappear', u'british', u'tour']
[u'kill', u'afghanistan', u'chopper', u'crash']
[u'actu', u'educ', u'worker', u'second', u'campaign']
[u'age', u'perform', u'bring', u'matur', u'danc', u'scene']
[u'alonso', u'closer', u'titl', u'brazil', u'pole']
[u'welcom', u'hospit', u'report', u'law']
[u'apart', u'develop', u'guidelin', u'implement']
[u'aussi', u'walker', u'win', u'silver', u'road', u'race']
[u'aust', u'immigr', u'strong', u'generous', u'vanston']
[u'backpack', u'injur', u'darwin', u'crash']
[u'beatti', u'critic', u'anti', u'terror', u'plan']
[u'beatti', u'tell', u'nelson', u'butt', u'educ']
[u'blacklock', u'trick', u'end', u'johnss', u'stint']
[u'brain', u'inflamm', u'initi', u'parkinson']
[u'canberra', u'farmer', u'tell', u'expect', u'averag', u'rain']
[u'cancel', u'ambul', u'prompt', u'investig']
[u'china', u'india', u'fresh', u'border', u'talk']
[u'cole', u'myer', u'chief', u'stick', u'target']
[u'cowboy', u'stun', u'shell', u'shock', u'eel']
[u'croatia', u'slovakia', u'inch', u'davi', u'final']
[u'croc', u'kill', u'snorkel']
[u'disappoint', u'eagl', u'welcom', u'perth']
[u'drug', u'charg', u'lay', u'danc', u'parti', u'raid']
[u'eel', u'favour', u'slip', u'past', u'cowboy']
[u'kill', u'troop', u'fight', u'cleric', u'follow']
[u'farmer', u'assess', u'drought', u'help']
[u'fisherman', u'drown', u'south', u'west']
[u'gasnier', u'wallabi', u'target', u'report']
[u'gaza', u'strip', u'violenc']
[u'gaza', u'violenc', u'prompt', u'intervent']
[u'govt', u'urg', u'sign', u'auslink', u'agreement']
[u'grand', u'dream', u'cowboy']
[u'hamilton', u'local', u'angri', u'council', u'offic', u'closur']
[u'helicopt', u'search', u'find', u'miss', u'snorkler', u'bodi']
[u'predict', u'industri', u'consolid']
[u'hick', u'seek', u'passport', u'freedom']
[u'hong', u'kong', u'democrat', u'visit', u'china']
[u'hurrican', u'hoot', u'staff']
[u'infant', u'buri', u'mammoth', u'bone']
[u'drop', u'poor', u'countri', u'debt']
[u'indian', u'offici', u'probe', u'ganguli', u'chappel', u'spat']
[u'inquiri', u'order', u'motorcyclist', u'death']
[u'interview', u'disappoint', u'dragon']
[u'interview', u'grandstand', u'speak', u'sheen']
[u'interview', u'jubil', u'cowboy']
[u'interview', u'triumphant', u'tiger']
[u'iran', u'dismiss', u'nuclear', u'resolut']
[u'iranian', u'nuclear', u'issu', u'head', u'secur', u'council']
[u'iraq', u'insurg', u'wors', u'anticip', u'blair']
[u'israel', u'arrest', u'west', u'bank', u'crackdown']
[u'japanes', u'team', u'lead', u'world', u'solar', u'challeng']
[u'klitschko', u'ralli', u'knockdown']
[u'lampard', u'keep', u'chelsea', u'track', u'unit', u'stumbl']
[u'lucki', u'escap', u'prompt', u'smoke', u'detector', u'warn']
[u'macgil', u'mystifi', u'ash', u'snub']
[u'call', u'petrol', u'price', u'rise', u'warn']
[u'pakistani', u'accid', u'kill']
[u'pilgrim', u'kill', u'pakistan', u'crash']
[u'polanski', u'unveil', u'children', u'film', u'oliv', u'twist']
[u'policeman', u'serious', u'injur', u'perth', u'smash']
[u'power', u'fourth', u'qualifi']
[u'relief', u'worker', u'hurrican', u'zone']
[u'rescu', u'oper', u'rita', u'survivor']
[u'retir', u'offic', u'fear', u'sale', u'histor', u'barrack']
[u'rita', u'aftermath']
[u'rita', u'caus', u'widespread', u'damag', u'death']
[u'road', u'fund', u'negoti', u'ongo', u'hargreav']
[u'rossi', u'win', u'fifth', u'straight', u'world', u'titl']
[u'secur', u'debat']
[u'senden', u'content', u'texa']
[u'solar', u'car', u'batteri', u'pose', u'risk', u'environ']
[u'southlink', u'review', u'safeti', u'rock', u'throw']
[u'starcraft', u'win', u'queen', u'elizabeth', u'stake']
[u'state', u'airport', u'polic', u'tricki', u'say', u'ellison']
[u'stoner', u'take', u'chequer', u'flag', u'malaysia']
[u'stormwat', u'levi', u'ratepay', u'opposit']
[u'suicid', u'bomber', u'target', u'elit', u'polic', u'unit']
[u'sulawesi', u'bomb', u'suspect', u'catch']
[u'surfer', u'escap', u'shark', u'attack', u'cut']
[u'surfer', u'recov', u'shark', u'attack']
[u'suspect', u'poultri', u'seiz', u'bird', u'fight']
[u'swan', u'celebr', u'grand', u'final', u'glori']
[u'swan', u'toast', u'sydney']
[u'swan', u'triumphant']
[u'minist', u'pan', u'standard', u'exam']
[u'urg', u'refus', u'implement', u'terorr', u'law']
[u'territorian', u'warn', u'spread', u'fruit', u'pest']
[u'thousand', u'march', u'london', u'washington', u'iraq']
[u'ticket', u'inspector', u'ankl', u'break', u'train', u'assault']
[u'tiger', u'roll', u'cairn']
[u'tonn', u'orang', u'dump', u'amid', u'glut']
[u'triumphant', u'swan', u'celebr', u'home']
[u'truck', u'bomb', u'explod', u'warn']
[u'custodi', u'wild', u'gold', u'coast', u'brawl']
[u'unbeaten', u'getaf']
[u'intern', u'level', u'play']
[u'victori', u'swan', u'head', u'home']
[u'victori', u'notch', u'maiden']
[u'vieira', u'strike', u'juve', u'maintain', u'perfect']
[u'law', u'delay', u'leav', u'servic', u'limbo']
[u'water', u'deal', u'affect', u'communiti', u'group', u'say']
[u'world', u'greatest', u'treasur', u'expedit', u'claim']
[u'young', u'peopl', u'struggl', u'properti']
[u'accc', u'educ', u'motorist', u'petrol', u'price']
[u'accid', u'prompt', u'warn', u'driver']
[u'accommod', u'scheme', u'offer', u'skill']
[u'actu', u'back', u'penalti', u'rat', u'inquiri']
[u'adelaid', u'miner', u'join', u'forc', u'beer']
[u'airport', u'polic', u'plan', u'rais', u'afpa', u'concern']
[u'effort', u'noxious', u'weed', u'victoria']
[u'alonso', u'take', u'world', u'titl']
[u'qaeda', u'claim', u'iraq', u'suicid', u'attack']
[u'aust', u'increas', u'bird', u'indonesia']
[u'australian', u'thank', u'author', u'hurrican']
[u'barramundi', u'break', u'end', u'local', u'line']
[u'beazley', u'spell', u'anti', u'terror', u'prioriti']
[u'board', u'continu', u'plan', u'chines', u'worker', u'scheme']
[u'bomber', u'kill', u'iraqi', u'worker']
[u'bomb', u'injur', u'lebanon', u'journalist']
[u'boonen', u'triumphant', u'mcewen', u'fail', u'medal']
[u'bushfir', u'season', u'prepar']
[u'canegrow', u'condemn', u'sugar', u'push']
[u'catchment', u'group', u'urg', u'lift', u'profil']
[u'volunt', u'bushfir', u'find']
[u'chappel', u'ganguli', u'escal']
[u'china', u'tiger', u'trade', u'doom', u'speci']
[u'china', u'tighten', u'noos', u'media', u'rule']
[u'church', u'arsonist', u'spend', u'year', u'youth', u'train']
[u'citrus', u'grower', u'tell', u'join', u'forc', u'save', u'industri']
[u'civil', u'libertarian', u'anti', u'terror', u'control']
[u'commission', u'lament', u'disloyalti', u'dump', u'deputi']
[u'communiti', u'mourn', u'wiradjuri', u'languag', u'revivalist']
[u'regroup', u'southern', u'forest']
[u'construct', u'worker', u'continu', u'strike', u'safeti']
[u'contest', u'launch', u'unearth', u'opera', u'talent']
[u'costa', u'applaud', u'nsws', u'financi', u'rat']
[u'cost', u'fuel', u'hit', u'fish']
[u'council', u'keep', u'abreast', u'woodchip', u'port', u'plan']
[u'councillor', u'seek', u'compassion', u'approach', u'work']
[u'council', u'offer', u'qualifi', u'support', u'grey', u'water']
[u'count', u'continu', u'alic', u'elect']
[u'court', u'budget', u'review']
[u'cowboy', u'confid', u'captain', u'play', u'final']
[u'cowboy', u'gear', u'decid']
[u'cowboy', u'grand', u'final', u'build', u'begin']
[u'cowboy', u'return', u'home', u'rock', u'star', u'recept']
[u'croatia', u'slovakia', u'reach', u'davi', u'final']
[u'croc', u'blame', u'snorkel', u'death']
[u'crocodil', u'coach', u'say', u'team', u'go', u'sleep']
[u'dairi', u'farmer', u'angri', u'water', u'plan']
[u'darwin', u'turbo', u'charg', u'solar', u'team', u'power']
[u'deadlin', u'loom', u'project', u'contract']
[u'demi', u'moor', u'ashton', u'kutcher', u'report']
[u'demon', u'help', u'build', u'school', u'broadbridg', u'memori']
[u'denmark', u'plan', u'lift', u'presenc', u'iraq']
[u'campaign', u'target', u'australian', u'labor']
[u'downer', u'know', u'hickss', u'citizenship']
[u'driver', u'plead', u'guilti', u'fatal', u'crash', u'case']
[u'dutch', u'runner', u'lead', u'pack', u'alic']
[u'green', u'save', u'intern', u'trade']
[u'elbaradei', u'get', u'iaea', u'term']
[u'evid', u'shortfal', u'wast', u'court', u'time']
[u'famili', u'seek', u'penalti', u'rat', u'inquiri']
[u'farmer', u'hope', u'rain', u'soak', u'crop']
[u'farm', u'help', u'boost', u'indigen', u'potenti']
[u'fear', u'skill', u'shortag', u'hamper', u'build', u'growth']
[u'fibr', u'optic', u'trial', u'start', u'soon']
[u'result', u'heighten', u'fear', u'militari', u'heritag']
[u'forecast', u'warn', u'skill', u'shortag']
[u'kill', u'afghanistan', u'bomb', u'blast']
[u'fund', u'tourist', u'trek', u'right', u'path']
[u'vine', u'worri', u'french', u'winemak']
[u'gold', u'star', u'scheme', u'target', u'communiti', u'facil']
[u'govt', u'approv', u'pipelin', u'bowen', u'mine']
[u'govt', u'tell', u'drop', u'stick', u'approach', u'remot']
[u'govt', u'urg', u'implement', u'rural', u'health', u'shake']
[u'guilti', u'verdict', u'head', u'spanish', u'qaeda', u'cell']
[u'hama', u'vow', u'stop', u'attack', u'israel']
[u'health', u'servic', u'say', u'doctor', u'leav', u'decis', u'wont']
[u'hick', u'appli', u'british', u'citizen']
[u'hick', u'hop', u'british', u'help']
[u'hick', u'lawyer', u'welcom', u'passport']
[u'hick', u'seek', u'citizenship']
[u'hiddink', u'name', u'squad', u'socceroo', u'train', u'camp']
[u'hockey', u'player', u'floorbal']
[u'hope', u'communiti', u'bank', u'inspir']
[u'hospit', u'report', u'rule', u'frustrat', u'bureaucrat']
[u'human', u'right', u'summit', u'lawyer', u'say']
[u'hunter', u'leasehold', u'decis', u'expect']
[u'ibi', u'pill', u'solv', u'popul', u'woe']
[u'indian', u'board', u'gag', u'player', u'ganguli', u'chappel']
[u'indonesia', u'ask', u'donor', u'fulfil', u'tsunami', u'pledg']
[u'indonesian', u'boat', u'accid', u'kill']
[u'industri', u'relat', u'chang', u'farm', u'actu']
[u'industri', u'woe', u'continu', u'fulham', u'prison']
[u'keen', u'council', u'properti', u'auction']
[u'iraqi', u'gunmen', u'murder', u'teacher', u'school']
[u'island', u'communiti', u'get', u'rural', u'transact', u'centr']
[u'isra', u'strike', u'continu', u'despit', u'hama', u'truce']
[u'keep', u'petrol', u'price', u'accc']
[u'knee', u'injuri', u'sidelin', u'beltram']
[u'law', u'reduc', u'terror', u'risk', u'howard']
[u'longreach', u'name']
[u'lower', u'bulk', u'wine', u'price', u'hit', u'grower', u'payment']
[u'arrest', u'violent', u'attack']
[u'charg', u'rockhampton', u'murder']
[u'mancini', u'find', u'fault', u'despit', u'inter', u'victori']
[u'mander', u'refere', u'grand', u'final']
[u'surviv', u'wagga', u'bridg', u'plung']
[u'face', u'court', u'currumbin', u'brawl']
[u'face', u'court', u'attack']
[u'face', u'court', u'weekend', u'sieg']
[u'markov', u'progress', u'ankl', u'surgeri']
[u'marsh', u'face', u'tribun', u'john', u'face', u'kiwi']
[u'massiv', u'clean', u'oper', u'underway', u'wake']
[u'medicar', u'campaign', u'scrap']
[u'merino', u'wool', u'promot']
[u'camera', u'insight', u'newcastl', u'histori']
[u'miner', u'bank', u'push', u'market', u'high']
[u'minist', u'stop', u'short', u'forc', u'council', u'allianc']
[u'miss', u'woman', u'contact', u'emerg', u'servic']
[u'rain', u'need', u'lift', u'water', u'storag']
[u'support', u'urg', u'trucki', u'join', u'protest']
[u'moruya', u'celebr', u'busi', u'acumen']
[u'motorist', u'pay']
[u'nation', u'want', u'plan', u'water', u'entitl', u'chang']
[u'newcastl', u'get', u'world', u'duathlon', u'championship']
[u'director', u'elect', u'grain', u'grower']
[u'peta', u'threat', u'fail', u'worri', u'wool', u'grower']
[u'prize', u'music', u'artist', u'ear']
[u'famili', u'relationship', u'centr', u'coff']
[u'north', u'coast', u'cyclist', u'die', u'crash']
[u'norton', u'fit', u'race', u'play', u'final']
[u'redistribut', u'unwant', u'grand', u'final', u'ticket']
[u'nrma', u'board', u'candid', u'seek', u'reform']
[u'build', u'boom', u'predict', u'wane']
[u'terror', u'probabl', u'cover', u'howard', u'plan']
[u'politician', u'keep', u'elect', u'promis', u'streak', u'ahead']
[u'price', u'fall', u'rita', u'pass']
[u'ombudsman', u'probe', u'long', u'term', u'detaine', u'case']
[u'opera', u'launch', u'search', u'star']
[u'opposit', u'parti', u'reform', u'coalit']
[u'pakistan', u'crash', u'kill', u'pilgrim']
[u'peru', u'quak', u'kill', u'injur']
[u'petrol', u'station', u'owner', u'issu', u'bowser', u'warn']
[u'piquet', u'give', u'brazil', u'win', u'debut']
[u'polic', u'break', u'azerbaijan', u'demonstr']
[u'polic', u'charg', u'teen', u'christma', u'blaze']
[u'polic', u'defend', u'handl', u'groot', u'eylandt', u'clinic']
[u'polic', u'drink', u'drive', u'messag', u'ignor']
[u'polic', u'investig', u'highway', u'camel', u'shoot']
[u'polic', u'investig', u'lismor', u'stab']
[u'polic', u'investig', u'teen', u'scooter', u'death']
[u'polic', u'seek', u'assist', u'vampir', u'murder']
[u'polic', u'smash', u'skim', u'scam']
[u'polic', u'subdu', u'heyfield', u'knife']
[u'polish', u'conserv', u'confirm', u'elect']
[u'power', u'typhoon', u'hit', u'southern', u'china']
[u'public', u'urg', u'pacif', u'highway', u'work']
[u'quarantin', u'offici', u'warn', u'bird', u'threat']
[u'rain', u'need', u'soak', u'central', u'crop']
[u'ratepay', u'group', u'back', u'paddl', u'steamer', u'repair']
[u'raus', u'lawyer', u'call', u'royal', u'commiss']
[u'review', u'show', u'strong', u'bank', u'sector']
[u'record', u'rain', u'give', u'hope', u'eyr', u'peninsula']
[u'region', u'museum', u'learn', u'protect']
[u'renew', u'coalit', u'fail', u'faze', u'beatti']
[u'report', u'clear', u'council', u'staff', u'properti']
[u'retail', u'like', u'feel', u'higher', u'fuel', u'price', u'impact']
[u'retir', u'politician', u'pass', u'away']
[u'reward', u'offer', u'rock', u'throw', u'inform']
[u'richard', u'chanc', u'grand', u'final']
[u'rita', u'damag', u'reach']
[u'robinson', u'announc', u'england', u'retir']
[u'rspca', u'program', u'target', u'pet', u'expos', u'domest']
[u'rural', u'communic', u'fund', u'get', u'billion']
[u'safeti', u'deal', u'eas', u'aviat', u'export', u'cost']
[u'senat', u'urg', u'alcohol', u'advertis', u'rethink']
[u'email', u'disloyalti', u'deputi', u'commission']
[u'shanghai', u'offic', u'help', u'boost', u'canberra', u'busi']
[u'shark', u'attack', u'survivor', u'extrem', u'lucki']
[u'sharon', u'face', u'crunch', u'vote', u'leadership']
[u'shoalhaven', u'contribut', u'bushfir', u'recommend']
[u'shoulder', u'problem', u'forc', u'begley', u'retir']
[u'accus', u'drive', u'mum', u'hous']
[u'star', u'club', u'cricket']
[u'state', u'territori', u'leader', u'confid', u'counter']
[u'state', u'premier', u'demand', u'safeguard', u'propos']
[u'state', u'hope', u'anti', u'terror', u'law', u'deal']
[u'stoke', u'face', u'hear']
[u'stoke', u'take', u'stand', u'case']
[u'strike', u'continu', u'milit', u'sharon']
[u'sunderland', u'long', u'victori', u'wait']
[u'swan', u'heap', u'prais', u'coach', u'roo']
[u'swan', u'lose', u'player', u'club', u'roo']
[u'swazi', u'king', u'pick', u'wife', u'number']
[u'sweden', u'beat', u'india', u'stay', u'tenni', u'world', u'group']
[u'tare', u'encourag', u'join', u'chang', u'task', u'forc']
[u'teenag', u'boy', u'death', u'haunt', u'robert']
[u'teen', u'die', u'cabooltur', u'crash']
[u'tennant', u'creek', u'polic', u'fear', u'miss']
[u'thousand', u'ralli', u'taiwan', u'support', u'arm', u'budget']
[u'horror', u'perth', u'road', u'crash']
[u'trader', u'tell', u'expect', u'higher', u'freight', u'rat']
[u'train', u'servic', u'track', u'union']
[u'truce', u'time', u'latest', u'surg']
[u'kill', u'gaza', u'strike']
[u'union', u'consult', u'nation', u'galleri', u'cancer', u'case']
[u'union', u'lose', u'battl', u'long', u'pollster']
[u'unit', u'marin', u'share', u'point', u'adelaid']
[u'announc', u'ghraib', u'prison', u'releas']
[u'clinch', u'presid']
[u'premier', u'consult', u'terror', u'summit']
[u'secur', u'camera']
[u'winton', u'resid', u'turn', u'movi', u'come']
[u'woman', u'bash', u'raywood', u'home', u'invas']
[u'woman', u'die', u'dune', u'buggi', u'crash']
[u'world', u'bank', u'agre', u'debt', u'relief', u'plan']
[u'chequ', u'fraud', u'case', u'court']
[u'aborigin', u'hostel', u'reopen', u'door', u'refug', u'intak']
[u'chief', u'reject', u'pacif', u'island', u'recruit']
[u'afghanistan', u'dismiss', u'legalis', u'opium']
[u'lack', u'number', u'fulfil', u'airport', u'duti', u'union']
[u'airport', u'share', u'secur', u'fund']
[u'alburi', u'mayor', u'secur', u'second', u'term']
[u'american', u'urg', u'conserv', u'fuel']
[u'analogu', u'shutdown', u'delay']
[u'appal', u'anti', u'terror', u'law', u'draw', u'critic']
[u'arafura', u'share', u'revenu', u'fund', u'uranium', u'quest']
[u'armi', u'examin', u'mortar', u'dump']
[u'aussi', u'dump', u'french', u'surf']
[u'aust', u'indonesia', u'defenc', u'relationship', u'good']
[u'urg', u'labor', u'mine', u'uranium', u'polici']
[u'bali', u'charg', u'carri', u'death', u'penalti']
[u'bali', u'face', u'death', u'penalti']
[u'bank', u'miner', u'continu', u'boost', u'market']
[u'beazley', u'visit', u'coast', u'highlight', u'region', u'airport']
[u'belconnen', u'crash', u'boost', u'road', u'toll']
[u'billiton', u'admit', u'blow', u'out', u'nickel', u'project']
[u'birney', u'pursu', u'offshor', u'project', u'revenu']
[u'team', u'unchang', u'line']
[u'brack', u'confid', u'terror', u'law', u'agreement']
[u'brewer', u'takeov', u'go', u'court']
[u'bundaberg', u'feel', u'fuel', u'price', u'drop']
[u'burn', u'permit', u'need', u'bushfir', u'danger', u'begin']
[u'cairn', u'drop', u'kiwi']
[u'support', u'region', u'race']
[u'canegrow', u'seek', u'redistribut', u'reform', u'fund']
[u'centrelink', u'union', u'threaten', u'strike', u'action']
[u'certain', u'group', u'singl']
[u'christma', u'detent', u'centr', u'spark', u'mental', u'health']
[u'citrus', u'industri', u'royal', u'commiss', u'need']
[u'citrus', u'peel', u'machin', u'see', u'oversuppli', u'solut']
[u'coach', u'replac', u'vline', u'train', u'fast', u'rail']
[u'coalit', u'deal', u'give', u'parti', u'platform', u'challeng']
[u'coco', u'island', u'tourism', u'brainstorm']
[u'colleagu', u'disappoint', u'upper', u'hous']
[u'consum', u'home', u'hous']
[u'corbi', u'judg', u'seek', u'time']
[u'councillor', u'question', u'croc', u'risk', u'assess']
[u'councillor', u'brief', u'bird', u'outbreak', u'plan']
[u'council', u'want', u'communiti', u'help', u'protect', u'penguin']
[u'cowboy']
[u'cowboy', u'thurston']
[u'dead', u'fungus', u'threaten', u'platypus', u'popul']
[u'decis', u'loom', u'privat', u'jail', u'contract']
[u'defo', u'goal', u'lift', u'spur']
[u'demerg', u'melbourn', u'mission']
[u'detaine', u'mental', u'health', u'care']
[u'develop', u'continu', u'port', u'campbel', u'hotel', u'push']
[u'develop', u'caus', u'hous', u'headach', u'say', u'welfar']
[u'disgrac', u'millar', u'tour', u'comeback']
[u'dodson', u'back', u'indigen', u'land', u'ownership']
[u'driver', u'accus', u'caus', u'pile', u'face', u'court']
[u'dutch', u'solar', u'track', u'break', u'race', u'record']
[u'dutch', u'solar', u'stay', u'ahead']
[u'educ', u'voucher', u'consid', u'poorer', u'famili']
[u'eurobodalla', u'poll', u'get', u'briberi', u'claim']
[u'evan', u'downplay', u'australia', u'terror', u'risk']
[u'expert', u'consid', u'climat', u'chang', u'impact', u'mossi']
[u'fake', u'platypus', u'fetch', u'auction']
[u'dog', u'life', u'zealand']
[u'farmer', u'concern', u'western', u'power', u'break', u'rush']
[u'fergi', u'defens', u'unit']
[u'ferguson', u'unit', u'falter']
[u'firm', u'reject', u'claim', u'financi', u'woe']
[u'fish', u'group', u'want', u'action', u'stop', u'angler', u'death']
[u'footi', u'club', u'plan', u'stay', u'time']
[u'redback', u'hit', u'chappel']
[u'found', u'bishop', u'lay', u'rest', u'hobart']
[u'soldier', u'kill', u'southern', u'thailand']
[u'fresh', u'approach', u'age', u'care', u'need', u'bishop']
[u'fruit', u'roadblock', u'plan', u'hold']
[u'fulham', u'prison', u'guard', u'work', u'ban', u'ongo']
[u'fund', u'woe', u'creat', u'goulburn', u'hospit', u'hazard']
[u'smart', u'actor', u'adam', u'die']
[u'global', u'warm', u'earth', u'biggest', u'threat', u'flanneri']
[u'gold', u'coast', u'host', u'intern', u'aviat', u'talk']
[u'golf', u'club', u'member', u'vote', u'extend', u'hous']
[u'googl', u'debut', u'chris', u'rock', u'comedi']
[u'govt', u'develop', u'bird', u'action', u'plan', u'rudd']
[u'govt', u'say', u'dilapid', u'school', u'rebuild']
[u'govt', u'urg', u'boost', u'blueprint', u'remot', u'train']
[u'group', u'equal', u'input', u'technic', u'colleg']
[u'grower', u'want', u'valu', u'merino', u'test', u'market']
[u'havilah', u'report', u'bumper', u'copper', u'cobalt', u'drill']
[u'hawk', u'back', u'aust', u'nuclear', u'wast', u'repositori']
[u'hawk', u'dump', u'plan', u'easi', u'coast', u'dweller']
[u'health', u'expert', u'seek', u'popul', u'plan']
[u'health', u'figur', u'reveal', u'rat', u'free']
[u'hear', u'date', u'give', u'hick', u'breath', u'space']
[u'hope', u'biosecur', u'plan', u'save', u'grain', u'industri']
[u'hope', u'head', u'canberra', u'draft']
[u'hospit', u'inquiri', u'hear', u'second', u'rogu', u'surgeon']
[u'hudson', u'stay', u'power', u'coach']
[u'hurrican', u'damag', u'platform']
[u'illeg', u'dump', u'spot', u'patrol', u'yield', u'fine']
[u'independ', u'school', u'sector', u'expect', u'grow']
[u'indian', u'troop', u'kill', u'seven', u'rebel', u'kashmir']
[u'industri', u'action', u'begin', u'health', u'talk']
[u'iran', u'threaten', u'resum', u'uranium', u'enrich']
[u'hear', u'iluka', u'level', u'cross', u'disput']
[u'irympl', u'group', u'find', u'buyer']
[u'islam', u'leader', u'hit', u'anti', u'terror', u'law']
[u'judg', u'cast', u'illawarra', u'beach']
[u'kelli', u'gang', u'mysteri', u'swing', u'develop']
[u'afghan', u'cabinet', u'minist', u'resign']
[u'labor', u'parti', u'reject', u'hawk', u'nuclear', u'dump', u'plan']
[u'landslid', u'avalanch', u'kill', u'india']
[u'latham', u'claim', u'labor', u'support', u'diari']
[u'latham', u'diari', u'labor', u'poll']
[u'leader', u'agre', u'sweep', u'counter', u'terror', u'power']
[u'leader', u'confid', u'anti', u'terror', u'agreement']
[u'leader', u'divid', u'disarma']
[u'liber', u'nation', u'joint', u'approach', u'gold']
[u'limit', u'immigr', u'detent', u'month']
[u'lloyd', u'lead', u'bomber']
[u'lloyd', u'bomber', u'captainci']
[u'loxton', u'polic', u'station', u'claim', u'label', u'elect']
[u'maitland', u'urg', u'rethink', u'promot']
[u'major', u'crop', u'area', u'forecast', u'smaller', u'harvest']
[u'charg', u'year', u'murder', u'case']
[u'manufactur', u'activ', u'drop', u'septemb']
[u'marsh', u'accept', u'match', u'suspens']
[u'marsh', u'miss', u'start', u'domest', u'cricket', u'season']
[u'mass', u'shoot', u'outrag', u'camel', u'industri']
[u'mayor', u'look', u'vote', u'cutjar', u'deputi']
[u'mayor', u'project', u'approv', u'despit', u'work', u'start']
[u'miller', u'enter', u'term', u'mayor']
[u'miner', u'capitalis', u'grow', u'support', u'uranium']
[u'minist', u'reject', u'stormwat', u'stealth', u'claim']
[u'minist', u'tell', u'councillor', u'stop', u'behav', u'like']
[u'minium', u'wage', u'wont', u'skill', u'shortag', u'minist']
[u'blast', u'hous', u'jailbird']
[u'say', u'park', u'fine', u'rule', u'harsh']
[u'nation', u'park', u'shack', u'ministeri', u'repriev']
[u'nation', u'beat', u'newli', u'form', u'coalit']
[u'neighbour', u'friend', u'measur', u'consid', u'wast']
[u'bendigo', u'polic', u'station', u'work']
[u'newcastl', u'rugbi', u'union', u'stand', u'player', u'exclus']
[u'newcom', u'take', u'medal', u'ballarat', u'wine']
[u'cronj', u'book', u'outsel', u'harri', u'potter']
[u'port', u'chief', u'readi', u'work']
[u'nicol', u'kidman', u'lead', u'headhunt']
[u'bail', u'accus', u'child', u'crime']
[u'world', u'wast', u'macfarlan']
[u'northern', u'fan', u'urg', u'cowboy']
[u'quartet', u'sign', u'toulous']
[u'coalit', u'discuss', u'tweed', u'candid']
[u'fail', u'sway', u'howard', u'nuclear', u'dump']
[u'nuclear', u'wast', u'dump', u'plan', u'cop', u'critic']
[u'nurs', u'question', u'chang', u'impact']
[u'price', u'forecast', u'virgin', u'blue', u'profit']
[u'price', u'eas', u'costello']
[u'opinion', u'poll', u'concern', u'beazley']
[u'outgo', u'chairman', u'look', u'challeng']
[u'oversuppli', u'hit', u'cattl', u'market']
[u'parent', u'question', u'assault', u'leav', u'child']
[u'paul', u'newman', u'help', u'drought', u'famili']
[u'pension', u'highlight', u'countrylink', u'problem']
[u'pentagon', u'set', u'hick', u'hear', u'date']
[u'peru', u'quak', u'toll', u'rise']
[u'player', u'target', u'clampdown']
[u'polic', u'book', u'drug', u'ring', u'syndic']
[u'polic', u'detain', u'boy', u'attempt', u'theft']
[u'polic', u'hunt', u'pair', u'teen', u'attack']
[u'polic', u'immun', u'alarm', u'right', u'watchdog']
[u'polic', u'issu', u'illeg', u'gun', u'warn']
[u'polic', u'probe', u'suspici', u'death']
[u'poor', u'driver', u'behaviour', u'worri', u'polic']
[u'port', u'hedland', u'pump', u'underground', u'power']
[u'power', u'remain', u'lion']
[u'protest', u'leader', u'reject', u'northern', u'ireland', u'power']
[u'protest', u'dont', u'stop', u'funer', u'home', u'cremat']
[u'public', u'meet', u'civic', u'centr', u'urg']
[u'patron', u'bruis', u'rubbish', u'truck', u'compactor']
[u'opposit', u'reject', u'govt', u'mini', u'budget']
[u'opposit', u'reveal', u'shadow', u'cabinet']
[u'rain', u'help', u'soak', u'parch', u'wetland']
[u'rain', u'need', u'harsher', u'restrict']
[u'rann', u'put', u'pandem', u'coag', u'agenda']
[u'report', u'prompt', u'salin', u'action']
[u'report', u'urg', u'maryborough', u'emerg', u'dept', u'upgrad']
[u'richard', u'fit', u'battl', u'tiger']
[u'river', u'clean', u'opposit', u'list']
[u'rough', u'market', u'philippin', u'pineappl']
[u'shake', u'ensur', u'debt', u'clear']
[u'timber', u'compani', u'cut', u'job']
[u'sceptic', u'doubt', u'weapon', u'decommiss']
[u'scientist', u'wider', u'use', u'cholesterol', u'drug']
[u'scientist', u'panda', u'habit']
[u'scud', u'tip', u'australian', u'open', u'wildcard']
[u'senat', u'examin', u'baxter', u'impact', u'mental', u'health']
[u'senat', u'seek', u'tough', u'action', u'petrol']
[u'seven', u'rita', u'relat', u'death']
[u'sever', u'frost', u'damag', u'threaten', u'wheatbelt', u'harvest']
[u'shark', u'attack', u'plan', u'help', u'surfer']
[u'sharon', u'win', u'leadership', u'vote']
[u'sheen', u'claim', u'underdog', u'status']
[u'shoalhaven', u'busi', u'boost', u'job']
[u'specialist', u'team', u'prepar', u'season', u'start']
[u'sport', u'figur', u'target', u'offic', u'clampdown']
[u'spray', u'drift', u'incid', u'prompt', u'pesticid', u'review']
[u'state', u'approv', u'anti', u'terror', u'law']
[u'stoke', u'accus', u'lie']
[u'stoke', u'deni', u'fabric', u'evid']
[u'strong', u'gold', u'price', u'boost', u'charter', u'tower']
[u'studi', u'find', u'incom', u'earner', u'shut']
[u'sydney', u'squadron', u'wrap', u'kimberley', u'program']
[u'talk', u'baxter', u'health', u'handov']
[u'tate', u'defend', u'remov', u'religi', u'work']
[u'temperatur', u'forecast', u'soar', u'western']
[u'tent', u'embassi', u'consult', u'continu']
[u'terror', u'suspect', u'lawyer', u'avoid', u'secur', u'check']
[u'test', u'star', u'kick', u'domest', u'season']
[u'victorian', u'countri', u'hour', u'royal', u'melbourn']
[u'thousand', u'expect', u'flock', u'field', u'day']
[u'timbercorp', u'push', u'woodchip', u'export', u'option']
[u'toler', u'take', u'seat', u'citi', u'owner']
[u'mark', u'mcpharlin', u'judd', u'win', u'goal', u'gong']
[u'tougher', u'water', u'ban', u'possibl']
[u'soldier', u'kill', u'afghanistan']
[u'typhoon', u'blow', u'vietnam']
[u'union', u'reject', u'claim', u'campaign', u'hurrah']
[u'upgrad', u'risdon', u'prison', u'kitchen', u'open']
[u'anti', u'protest', u'cindi', u'sheehan', u'arrest']
[u'islam', u'scholar', u'prefer', u'imam', u'trainer']
[u'soldier', u'guilti', u'ghraib', u'abus', u'charg']
[u'wall', u'street', u'edg', u'higher']
[u'water', u'firm', u'defend', u'toxic', u'soil', u'treatment', u'plan']
[u'wilson', u'take', u'charg', u'firebird']
[u'wimmera', u'irrig', u'concern', u'pipelin', u'water']
[u'wine', u'industri', u'eye', u'indian', u'market']
[u'woodsid', u'reward', u'environment', u'excel']
[u'world', u'challeng', u'hohn']
[u'world', u'famous', u'author', u'head', u'north', u'workshop']
[u'zarqawi', u'right', u'hand', u'kill']
[u'ghraib', u'abus', u'england', u'jail']
[u'accc', u'take', u'court', u'action', u'today', u'tonight', u'stori']
[u'adelaid', u'hope', u'rech', u'play']
[u'exempt', u'equal', u'opportun', u'law']
[u'airport', u'secur', u'delay', u'worri', u'council']
[u'alleg', u'fake', u'psychiatrist', u'bash', u'jail']
[u'qaeda', u'death', u'major', u'blow', u'say']
[u'aqi', u'happi', u'bird', u'prepar']
[u'asbesto', u'fear', u'close', u'demolit', u'site']
[u'australia', u'allow', u'briton', u'extradit']
[u'australia', u'point', u'prove', u'pont']
[u'australian', u'wool', u'trade', u'target', u'anim', u'right']
[u'australia', u'skill', u'migrant', u'recruit', u'campaign']
[u'author', u'meet', u'indi', u'emerg', u'plan']
[u'avalon', u'airport', u'expans', u'pave', u'mildura']
[u'babi', u'galaxi', u'heavi']
[u'beazley', u'reinforc', u'telstra', u'sale', u'worri']
[u'biofuel', u'deal', u'reduc', u'relianc', u'petrol']
[u'biosecur', u'plan', u'aim', u'protect', u'grain', u'industri']
[u'birthrat', u'buck', u'year', u'downward', u'trend']
[u'blair', u'confer', u'speech', u'leav', u'labour', u'guess']
[u'blood', u'bond', u'unit', u'tiger', u'sheen']
[u'blundston', u'tramp', u'tasmania']
[u'bodi', u'sydney', u'hous', u'blaze']
[u'broadbridg', u'team', u'mat', u'tribut', u'thailand']
[u'build', u'compani', u'face', u'prosecut', u'worker']
[u'buri', u'carbon', u'dioxid', u'isnt', u'answer', u'green']
[u'bushland', u'search', u'miss', u'parapleg', u'begin']
[u'size', u'giant', u'squid', u'make', u'exclus', u'appear']
[u'cairn', u'record', u'state', u'highest', u'needl']
[u'call', u'sheep', u'diseas', u'vaccin', u'safer']
[u'chappel', u'ganguli', u'stay', u'privat']
[u'chemic', u'emerg', u'shut', u'narrabri', u'street']
[u'citi', u'collis', u'driver', u'court']
[u'civil', u'liberti', u'group', u'fear', u'anti', u'terror', u'law']
[u'coach', u'warn', u'croc', u'complac']
[u'coalit', u'move', u'closer', u'announc', u'tweed']
[u'comcar', u'take', u'action', u'soldier', u'heat', u'relat']
[u'concern', u'rais', u'coal', u'seam', u'drill', u'water']
[u'construct', u'activ', u'boost', u'job']
[u'coron', u'decis', u'deal', u'blow', u'kelli', u'claim']
[u'council', u'consid', u'appeal', u'compo', u'rule']
[u'council', u'offer', u'help', u'food', u'victim']
[u'council', u'reject', u'propos', u'site', u'civic', u'centr']
[u'council', u'reject', u'resid', u'road', u'claim']
[u'countrylink', u'price', u'rise', u'announc']
[u'countrylink', u'reform', u'packag', u'news']
[u'cowboy', u'enemi', u'territori']
[u'cowboy', u'leav', u'hype']
[u'cowboy', u'worri', u'past', u'loss', u'tiger']
[u'croc', u'urg', u'complac', u'bullet']
[u'crow', u'confid', u'win', u'draw', u'concess']
[u'cultur', u'differ', u'see', u'reason', u'poor']
[u'decis', u'urg', u'technic', u'colleg', u'approv']
[u'demon', u'sign']
[u'post', u'record', u'break', u'profit']
[u'driver', u'urg', u'protest', u'high', u'fuel', u'price']
[u'dutch', u'power', u'solar']
[u'educ', u'author', u'abandon', u'english', u'plan']
[u'educ', u'minist', u'avoid', u'educ', u'confrenc']
[u'egan', u'announc', u'retir']
[u'ellison', u'defend', u'handl', u'bali', u'case']
[u'employ', u'hire', u'intent', u'slump']
[u'endang', u'mala', u'reloc']
[u'continu', u'stop', u'log']
[u'plead', u'guilti', u'ranger', u'injuri', u'charg']
[u'evid', u'prove', u'bakhtiari', u'genuin']
[u'explos', u'factori', u'upgrad', u'begin', u'year']
[u'famili', u'debt', u'prompt', u'scheme']
[u'famili', u'deni', u'extradit', u'polit', u'motiv']
[u'famili', u'flee', u'burn', u'unit']
[u'fear', u'darl', u'river', u'debat', u'polaris']
[u'feder', u'govern', u'stand', u'beef']
[u'fed', u'inflat', u'remark', u'reassur', u'trader']
[u'damag', u'swan', u'hill', u'restaur']
[u'food', u'ineffici', u'studi']
[u'footbal', u'club', u'concern', u'nation', u'park', u'plan']
[u'footbal', u'club', u'hit', u'gardin', u'graffiti']
[u'footbal', u'coach', u'sentenc', u'abus', u'reduc']
[u'forb', u'rural', u'land', u'protect', u'board', u'reclassifi']
[u'foreign', u'fishermen', u'question', u'catch']
[u'forens', u'centr', u'delay', u'frustrat', u'court']
[u'fuel', u'price', u'fail', u'discourag', u'albani', u'visitor']
[u'fund', u'shortfal', u'forc', u'librari', u'closur']
[u'gallop', u'defend', u'night', u'final']
[u'gallop', u'wont', u'rule', u'queensland', u'grand', u'final']
[u'ambul', u'chopper', u'ambassador']
[u'gillard', u'put', u'econom', u'atop', u'labor', u'agenda']
[u'gillard', u'challeng', u'beazley']
[u'govern', u'happi', u'scarborough', u'high', u'rise', u'limit']
[u'great', u'lake', u'council', u'mayor', u'vote', u'continu']
[u'green', u'group', u'back', u'water', u'buy', u'murray']
[u'grower', u'fear', u'import', u'swamp']
[u'hand', u'tie', u'airport', u'levi', u'conlon']
[u'hawk', u'nuclear', u'wast', u'idea', u'reckless']
[u'hawk', u'urg', u'push', u'uranium', u'lift']
[u'health', u'concern', u'rais', u'steal', u'oyster']
[u'hospit', u'inquiri', u'find', u'govt']
[u'hospit', u'benefit', u'mango', u'mad']
[u'hous', u'plan', u'propon', u'long', u'wait']
[u'hreoc', u'tri', u'interven', u'promis', u'wife', u'case']
[u'huge', u'diamond', u'kimberley']
[u'husband', u'charg', u'year', u'murder']
[u'brogden', u'quit', u'polit']
[u'illeg', u'fish', u'quarantin', u'threat']
[u'indigen', u'group', u'sign', u'region', u'land', u'deal']
[u'irrig', u'grazier', u'urg', u'work']
[u'isra', u'raid', u'leav', u'gaza', u'citi', u'dark']
[u'johnson', u'pleas', u'retain', u'opposit', u'polic']
[u'kalamburu', u'celebr', u'store', u'reopen']
[u'kewel', u'comeback', u'trail']
[u'kiwi', u'bear', u'england', u'squad', u'place', u'wilko']
[u'korong', u'vale', u'drainag', u'replac']
[u'labor', u'seek', u'releas', u'bird', u'plan']
[u'land', u'council', u'continu', u'swamp', u'claim']
[u'liber', u'swear', u'springborg', u'talk']
[u'live', u'beef', u'export', u'outlook', u'good']
[u'local', u'govt', u'chief', u'criticis', u'break', u'hill', u'council']
[u'ignor', u'favour', u'cane', u'grower', u'vacc']
[u'mall', u'revamp', u'step', u'closer']
[u'believ', u'girlfriend', u'deserv', u'court']
[u'guilti', u'kill', u'brisban', u'worker']
[u'marsh', u'undergo', u'shoulder', u'surgeri']
[u'mayor', u'seek', u'build', u'task', u'forc']
[u'media', u'pour', u'scorn', u'chappel', u'ganguli', u'patch']
[u'middl', u'east', u'summit', u'postpon']
[u'west', u'policeman', u'name', u'best']
[u'miner', u'loss', u'market', u'flat']
[u'miss', u'bairnsdal']
[u'mitsubishi', u'futur', u'rest', u'model']
[u'mother', u'refus', u'bail', u'methadon', u'death', u'case']
[u'mourinho', u'liverpool']
[u'movi', u'goer', u'face', u'jail', u'secret', u'tap', u'film']
[u'focus', u'small', u'busi', u'portfolio']
[u'want', u'better', u'safeguard', u'state', u'timber']
[u'murder', u'case', u'mother']
[u'determin', u'shed', u'job']
[u'open', u'branch']
[u'nation', u'concern', u'countrylink', u'restructur']
[u'nativ', u'titl', u'tribun', u'talk', u'indigen', u'land']
[u'nelson', u'cancel', u'talk', u'save', u'polic', u'resourc']
[u'nelson', u'chicken', u'face', u'student']
[u'build', u'bring', u'cafe', u'shop', u'honeysuckl']
[u'christchurch', u'cathedr', u'build', u'ahead']
[u'committe', u'work', u'polic', u'indigen']
[u'fund', u'speed', u'bird', u'research']
[u'measur', u'help', u'defenc', u'famili']
[u'orlean', u'polic', u'chief', u'quit']
[u'rolleston', u'coal', u'open']
[u'school', u'plan', u'orang']
[u'disappoint', u'stand', u'trade', u'talk']
[u'ningaloo', u'fish', u'rule', u'finalis']
[u'expect', u'auslink', u'help', u'rail', u'freight']
[u'northern', u'support', u'help', u'lift', u'cowboy']
[u'islam', u'group', u'question', u'anti', u'terror', u'law']
[u'opposit', u'alarm', u'pilbara', u'technic', u'colleg']
[u'outcom', u'base', u'school', u'fail', u'children', u'nelson']
[u'pacif', u'island', u'consid', u'bulk', u'buy', u'fuel']
[u'pacif', u'nation', u'contain', u'servic']
[u'pair', u'remand', u'custodi', u'child', u'cruelti', u'charg']
[u'pakistan', u'confirm', u'bakhtiari', u'citizenship', u'vanston']
[u'panther', u'meet', u'consid', u'clubhous', u'sale']
[u'parent', u'encourag', u'teach', u'children', u'healthi', u'habit']
[u'park', u'cost', u'mount', u'canberra', u'driver']
[u'perform', u'group', u'teach', u'children', u'theatr', u'music']
[u'perth', u'royal', u'tri', u'eas', u'skill', u'shortag']
[u'peta', u'protest', u'bare', u'bum', u'mules']
[u'pip', u'remov', u'swansea', u'bridg', u'build']
[u'author', u'bird', u'alert']
[u'polic', u'boost', u'lismor', u'safeti']
[u'polic', u'beat', u'perman', u'vincent']
[u'polic', u'crack', u'tijuana', u'tint', u'car']
[u'polic', u'death', u'photo', u'leak', u'websit']
[u'polic', u'govt', u'group', u'tackl', u'troublesom', u'teen']
[u'polic', u'investig', u'corps', u'photo', u'leak']
[u'polic', u'probe', u'narrandera', u'bank', u'theft']
[u'polic', u'union', u'queri', u'resourc', u'airport', u'secur']
[u'polic', u'warn', u'fuel', u'theft', u'threat']
[u'polici', u'chang', u'meat', u'countri']
[u'port', u'augusta', u'triall', u'citi', u'wide', u'zone']
[u'prison', u'offic', u'clear', u'paedophil', u'transfer']
[u'dump', u'scorecard', u'rule']
[u'rail', u'network', u'mainten', u'govt']
[u'railway', u'confer', u'discuss', u'tourism', u'opportun']
[u'record', u'cotton', u'yield', u'northern', u'farm']
[u'replac', u'refuge', u'tribun', u'judg', u'inquiri', u'tell']
[u'report', u'identifi', u'lack', u'cruis', u'ship', u'facil']
[u'resid', u'seek', u'stop', u'lake', u'plan']
[u'resid', u'urg', u'step', u'protect']
[u'return', u'tradit', u'syllabus', u'card']
[u'road', u'rage', u'concern', u'illawarra', u'road']
[u'ruddock', u'reject', u'extremist', u'report']
[u'inspector', u'monitor', u'ammonium', u'nitrat']
[u'liber', u'back', u'hawk', u'nuclear', u'wast', u'push']
[u'search', u'miss', u'plane']
[u'shake', u'council', u'conduct', u'committe']
[u'shell', u'boss', u'blame', u'fuel', u'price', u'global', u'pressur']
[u'good', u'see', u'soften', u'market']
[u'charg', u'mother', u'murder']
[u'guilti', u'assault', u'judg']
[u'spring', u'carniv', u'contend']
[u'stoke', u'unawar', u'crucial', u'present']
[u'storm', u'leav', u'crop', u'damag']
[u'storm', u'wreak', u'havoc', u'melbourn', u'ballarat']
[u'strict', u'secur', u'plan', u'rocki', u'parliamentari']
[u'suicid', u'bomber', u'kill', u'iraqi', u'armi', u'recruit']
[u'surgeon', u'boycott', u'surgeri', u'failur']
[u'suspect', u'toothfish', u'poacher', u'bail']
[u'suspend', u'vasil', u'miss', u'spring', u'carniv']
[u'swan', u'jumper', u'grab']
[u'tare', u'council', u'econom', u'studi', u'lure']
[u'health', u'worker', u'strike']
[u'team', u'spirit', u'super', u'seri', u'say', u'world']
[u'teen', u'die', u'east', u'gippsland', u'crash']
[u'teen', u'jail', u'groot', u'eylandt', u'machet', u'incid']
[u'telstra', u'plan', u'countri', u'whing', u'opposit']
[u'tender', u'open', u'kununurra', u'child', u'care', u'centr']
[u'dead', u'afghan', u'bomb', u'blast']
[u'tiger', u'shrug', u'pressur']
[u'timber', u'administr', u'job', u'doubt']
[u'timber', u'worker', u'meet', u'concern']
[u'tourism', u'chief', u'fear', u'patel', u'scandal', u'hurt']
[u'trader', u'expect', u'reopen', u'scare']
[u'tsunami', u'impact', u'scrutini']
[u'charg', u'broom', u'apart', u'robberi']
[u'typhoon', u'damrey', u'toll', u'rise']
[u'offici', u'threaten', u'halt', u'darfur', u'oper']
[u'union', u'fight', u'secur', u'nestl', u'job']
[u'union', u'urg', u'iluka', u'worker', u'return', u'work']
[u'union', u'worri', u'asbesto', u'handl', u'demolit']
[u'western', u'greyhound', u'track', u'merg']
[u'winegrow', u'consid', u'legal', u'action', u'payment']
[u'win', u'barca', u'juve', u'bayern', u'arsenal']
[u'wollondilli', u'resid', u'report', u'crime']
[u'women', u'dont', u'know', u'breast', u'cancer', u'basic', u'survey', u'find']
[u'woodbin', u'worker', u'continu', u'industri', u'action']
[u'world', u'price', u'blame']
[u'abattoir', u'expans', u'get', u'condit', u'approv']
[u'govt', u'accus', u'politicis', u'floriad']
[u'advis', u'updat', u'medicin']
[u'afghanistan', u'fear', u'iraq', u'style', u'milit', u'attack']
[u'afghan', u'offici', u'investig', u'suicid', u'blast']
[u'agforc', u'unhappi', u'wild', u'river', u'legisl']
[u'aker', u'join', u'power', u'stay', u'lion']
[u'weigh', u'option', u'brogden', u'seat']
[u'comeback', u'seve']
[u'arctic', u'melt', u'away']
[u'artefact', u'return', u'indigen', u'council']
[u'aust', u'strengthen', u'trade', u'tie', u'indonesia']
[u'aust', u'withdraw', u'help', u'bali', u'case']
[u'bali', u'face', u'court', u'week']
[u'beazley', u'defend', u'challeng']
[u'beef', u'associ', u'warn', u'infect']
[u'berri', u'charg', u'child', u'rape']
[u'crowd', u'honour', u'fall', u'polic']
[u'rise', u'tip', u'mackay', u'popul']
[u'boat', u'factori', u'damag', u'bibra', u'lake']
[u'bodi', u'locat', u'plane', u'crash', u'site']
[u'brampton', u'killer', u'seek', u'pardon']
[u'brazilian', u'look', u'relax', u'train', u'shoot']
[u'break', u'hill', u'host', u'dementia', u'workshop']
[u'broom', u'consid', u'growth', u'report']
[u'bundaberg', u'administr', u'sick', u'face', u'inquiri']
[u'caltex', u'warn', u'biofuel', u'bring', u'price']
[u'cancer', u'fund', u'say', u'ban', u'help', u'smoker', u'break', u'habit']
[u'canegrow', u'welcom', u'rise', u'sugar', u'price']
[u'carniv', u'flower', u'fail', u'return', u'profit']
[u'vandal', u'prompt', u'polic', u'warn']
[u'ceremoni', u'honour', u'polic', u'kill', u'line', u'duti']
[u'chiltern', u'station', u'theft', u'ring', u'alarm', u'bell']
[u'china', u'lay', u'bird', u'plan']
[u'coach', u'suspens', u'wont', u'hamper', u'railway', u'plan']
[u'coalit', u'laud', u'parliamentari', u'debut']
[u'construct', u'crackdown', u'delay']
[u'consum', u'group', u'seek', u'power', u'price', u'pledg']
[u'corrupt', u'rampant', u'chines', u'govt', u'report']
[u'cosgrov', u'unfit', u'play', u'redback']
[u'council', u'get', u'aboard', u'trial', u'plan']
[u'council', u'help', u'affect', u'communiti', u'servic']
[u'coupl', u'cling', u'boat', u'south', u'coast', u'lake']
[u'court', u'order', u'mental', u'health', u'check', u'accus']
[u'cowboy', u'expect', u'support', u'continu', u'enemi']
[u'crown', u'seek', u'doubl', u'convict', u'murder']
[u'custom', u'confisc', u'perform', u'prop']
[u'custom', u'fire', u'shot', u'illeg', u'fish', u'pursuit']
[u'custom', u'use', u'machin', u'illeg', u'boat']
[u'dampier', u'highway', u'feedback', u'flow']
[u'davi', u'draw', u'set', u'hewitt', u'feder', u'showdown']
[u'death', u'spark', u'better', u'educ', u'rock']
[u'design', u'say', u'robert', u'diaz', u'resembl', u'ladi']
[u'develop', u'flag', u'golf', u'club', u'hous', u'plan']
[u'develop', u'claim', u'strong', u'support', u'rothburi']
[u'diver', u'kill', u'suspect', u'croc', u'attack']
[u'diver', u'think', u'kill', u'crocodil']
[u'dog', u'eagleton']
[u'dont', u'panic', u'bird']
[u'doubl', u'murder', u'trial', u'continu', u'burni']
[u'play', u'prospect', u'success', u'hilton']
[u'driver', u'caution', u'urg', u'road', u'reopen', u'flood']
[u'educ', u'warn', u'rank', u'stifl', u'learn']
[u'electr', u'blanket', u'blame', u'disabl', u'group', u'home']
[u'emerg', u'blow', u'hospit', u'elect', u'surgeri', u'list']
[u'emerg', u'crew', u'busi', u'storm', u'batter', u'central']
[u'emerg', u'servic', u'declar', u'mock', u'disast', u'exercis']
[u'english', u'tactic', u'beat', u'australia', u'pollock']
[u'eriksson', u'dismiss', u'player', u'revolt', u'talk']
[u'chanc', u'finalis', u'doha', u'deal']
[u'explos', u'plant', u'upgrad', u'await', u'feder']
[u'export', u'suffer', u'soar', u'diesel', u'price']
[u'wolv', u'mascot', u'face', u'charg']
[u'fake', u'stone', u'take', u'mick']
[u'fatal', u'granni', u'flat', u'investig']
[u'firm', u'look', u'tackl', u'coal', u'seam', u'drill', u'worri']
[u'flash', u'flood', u'cut', u'town']
[u'pandem', u'inevit']
[u'forb', u'industri', u'park']
[u'teacher', u'jail', u'child', u'porn']
[u'forum', u'address', u'refug', u'manag', u'problem']
[u'kill', u'baghdad', u'attack']
[u'kill', u'morocco', u'spain', u'border', u'crush']
[u'gavaskar', u'defend', u'princ', u'charl', u'ganguli']
[u'genet', u'disord', u'claim', u'rais', u'murder', u'case']
[u'giant', u'squid', u'catch', u'film']
[u'gillard', u'sing', u'labor', u'song', u'sheet', u'beazley']
[u'power', u'asic', u'sharehold']
[u'goalless', u'deadlock', u'english', u'champion', u'leagu']
[u'govt', u'back', u'health', u'report', u'find']
[u'govt', u'criticis', u'croc', u'remov', u'refus']
[u'govt', u'doesnt', u'regret', u'handl', u'bali', u'case']
[u'govt', u'offer', u'oliv', u'branch', u'small', u'busi']
[u'govt', u'urg', u'offer', u'electr', u'deregul']
[u'green', u'group', u'reject', u'wild', u'river', u'legisl', u'concern']
[u'gulf', u'group', u'highlight', u'health', u'servic', u'imbal']
[u'hawk', u'nuclear', u'wast', u'idea', u'merit', u'nelson']
[u'hayden', u'go', u'pont']
[u'heavi', u'rain', u'prompt', u'flood', u'watch']
[u'heritag', u'council', u'chief', u'question', u'futur']
[u'hewitt', u'feder', u'haa', u'test', u'thailand']
[u'high', u'court', u'reject', u'complaint']
[u'high', u'petrol', u'price', u'prompt', u'rise', u'fuel', u'theft']
[u'honda', u'disqualifi', u'coron', u'fail']
[u'honey', u'prize', u'queensland', u'apiarist']
[u'hope', u'weather', u'chang', u'eas', u'danger']
[u'howard', u'offer', u'legal', u'sack', u'worker']
[u'human', u'bone', u'near', u'croc', u'attack', u'site']
[u'hundr', u'bodi', u'unidentifi', u'katrina']
[u'iluka', u'worker', u'agre', u'strike']
[u'injur', u'pair', u'expect', u'train', u'light', u'cowboy']
[u'move', u'resolv', u'jail', u'disput']
[u'vacanc', u'drop']
[u'jockey', u'nikol', u'fight']
[u'kumbl', u'warn', u'australia', u'backlash']
[u'labor', u'eye', u'pacif', u'island', u'worker']
[u'labor', u'unveil', u'skill', u'school', u'plan']
[u'labour', u'sorri', u'eject', u'octogenarian']
[u'tomorrow', u'sack', u'nestl', u'worker']
[u'lennon', u'lyric', u'prove', u'snooz', u'christi']
[u'lion', u'head', u'carrara']
[u'lismor', u'mayor', u'urg', u'sensibl', u'approach', u'public']
[u'local', u'church', u'join', u'internet']
[u'local', u'govt', u'fear', u'rail', u'contain', u'servic']
[u'magistr', u'dismiss', u'charg', u'bomb', u'threat', u'case']
[u'charg', u'armidal', u'assault']
[u'die', u'south', u'east', u'crash']
[u'plead', u'guilti', u'child', u'porn', u'charg']
[u'market', u'surg', u'record', u'close']
[u'mass', u'grave', u'unearth', u'afghanistan']
[u'mayor', u'upbeat', u'develop', u'process']
[u'migrant', u'carri', u'passport', u'detent', u'fear']
[u'militari', u'pursu', u'nigerian', u'hostag', u'taker']
[u'minimum', u'year', u'jail', u'schoolgirl', u'killer']
[u'minist', u'refer', u'coast', u'doctor', u'case', u'health', u'probe']
[u'miss', u'plane', u'search', u'continu']
[u'parent', u'involv', u'stop', u'school', u'drift']
[u'rock', u'throw', u'adelaid', u'traffic']
[u'mose', u'save', u'venic']
[u'motor', u'group', u'cast', u'doubt', u'biofuel', u'push']
[u'seek', u'improv', u'develop', u'decis']
[u'highlight', u'region', u'airport', u'secur', u'worri']
[u'nake', u'road', u'accid', u'case', u'puzzl', u'polic']
[u'nasa', u'team', u'googl', u'space', u'research']
[u'nation', u'accredit', u'urg', u'oversea', u'doctor']
[u'nativ', u'plant', u'stop', u'termit', u'munch']
[u'power', u'meter', u'offer', u'choic']
[u'asian', u'artwork', u'unveil']
[u'liaison', u'offic', u'indigen', u'forest']
[u'mayor', u'wellington']
[u'drought', u'summit', u'focus', u'support']
[u'orlean', u'allow', u'resid', u'home']
[u'regul', u'provid', u'clariti']
[u'bird', u'threat', u'illeg', u'fish', u'boat']
[u'grand', u'finalist', u'share', u'breakfast']
[u'reluct', u'join', u'auslink', u'deal']
[u'ocean', u'acid', u'scientist']
[u'south', u'australian', u'live', u'poverti']
[u'year', u'west', u'coast', u'banfield']
[u'opposit', u'attack', u'paedophil', u'transfer', u'report']
[u'opposit', u'doubt', u'govt', u'wast', u'dump', u'monitor', u'plan']
[u'opposit', u'fear', u'region', u'rego', u'subsidi']
[u'survey', u'north', u'driver', u'drive']
[u'pacif', u'nation', u'warn', u'fuel', u'rail']
[u'parmalat', u'fraud', u'trail', u'adjourn']
[u'petit', u'question', u'australia', u'extradit', u'treati']
[u'philippin', u'prepar', u'bird', u'outbreak']
[u'deni', u'legal', u'help', u'concess']
[u'polic', u'hunt', u'conveni', u'store', u'knife', u'bandit']
[u'polic', u'probe', u'mudge', u'infant', u'death']
[u'polic', u'wont', u'merci', u'offend', u'motorist']
[u'poor', u'govern', u'cost', u'pacif', u'island', u'billion']
[u'princess', u'ann', u'meet', u'patient']
[u'process', u'meat', u'eye', u'fall', u'live', u'export']
[u'produc', u'high', u'hop', u'joh', u'chees']
[u'public', u'quiz', u'emerg', u'prioriti']
[u'public', u'urg', u'bushfir', u'readi']
[u'health', u'deputi', u'admit', u'hospit', u'report', u'mislead']
[u'quinn', u'moot', u'zonal', u'daylight', u'save', u'trial']
[u'rain', u'bring', u'parch', u'waterway', u'life']
[u'remembr', u'servic', u'rais', u'awar', u'polic']
[u'report', u'find', u'microwav', u'cancer', u'treatment', u'unproven']
[u'reserv', u'bank', u'downplay', u'threat', u'world', u'economi']
[u'road', u'rage', u'rev', u'tasmania']
[u'rural', u'council', u'feel', u'pressur', u'industri', u'growth']
[u'santo', u'tell']
[u'urg', u'water', u'buy', u'help', u'river', u'murray']
[u'scientist', u'flabbergast', u'arctic', u'melt']
[u'scientist', u'perfect', u'sandcastl', u'recip']
[u'sculli', u'reject', u'polic', u'wollondilli', u'claim']
[u'searcher', u'bodi', u'north', u'coast', u'nation', u'park']
[u'secur', u'justifi', u'discrimin', u'exempt']
[u'finish', u'storm', u'clean']
[u'seven', u'sit', u'design', u'aborigin', u'burial', u'ground']
[u'shire', u'urg', u'biosolid']
[u'shop', u'centr', u'plan', u'approach', u'worri', u'council']
[u'skill', u'migrat', u'wont', u'help', u'long', u'term', u'say', u'beazley']
[u'sniffer', u'dog', u'check', u'chines', u'sugar', u'ship']
[u'snowi', u'mountain', u'pipelin', u'shire', u'agenda']
[u'soccer', u'labor', u'club', u'disput', u'civic']
[u'son', u'like', u'rort', u'parent']
[u'state', u'fund', u'terror', u'communiti', u'impact', u'studi']
[u'state', u'join', u'forc', u'fight', u'indigen', u'communiti']
[u'steer', u'clear', u'indonesian', u'protest', u'dfat', u'warn']
[u'steer', u'break', u'hill', u'deputi', u'mayor']
[u'struggl', u'oyster', u'farmer', u'rat', u'repriev']
[u'studi', u'examin', u'social', u'impact', u'muswellbrook', u'mine']
[u'sydney', u'airport', u'trial', u'biometr']
[u'talk', u'focus', u'road', u'toll', u'reduct']
[u'govt', u'defend', u'primari', u'school', u'standard']
[u'taxman', u'allow', u'witchcraft', u'write']
[u'tcci', u'urg', u'best', u'technolog', u'pulp']
[u'terror', u'legisl', u'hit', u'mildura', u'airport', u'coffer']
[u'thailand', u'ask', u'victim', u'famili', u'tsunami']
[u'alic', u'get', u'ax']
[u'thirst', u'rise', u'temperatur']
[u'tiger', u'respect', u'danger', u'cowboy']
[u'timber', u'worker', u'meet', u'loss']
[u'republican', u'face', u'crimin', u'charg']
[u'tribut', u'pay', u'fall', u'polic']
[u'truck', u'crash', u'clean', u'continu']
[u'truck', u'driver', u'jail', u'fatal', u'crash']
[u'truck', u'driver', u'jail', u'mass', u'pile']
[u'umbakumba', u'nurs', u'seek', u'safeti', u'guarante']
[u'union', u'govt', u'negoti', u'health', u'deal']
[u'union', u'target', u'outdoor', u'labour', u'contract']
[u'massacr', u'report', u'rais', u'anvil', u'alleg']
[u'general', u'cast', u'doubt', u'iraq', u'pullout']
[u'market', u'steadi', u'hit', u'record']
[u'politician', u'seek', u'sanction', u'japan']
[u'victori', u'marin', u'vulner']
[u'treasur', u'push', u'relax', u'clone', u'law']
[u'warn', u'appeal', u'privaci', u'rebuild', u'marriag']
[u'water', u'pipelin', u'plan', u'get', u'status', u'boost']
[u'western', u'mark', u'polic', u'remembr']
[u'lose', u'year', u'tiger', u'sheen']
[u'woman', u'condit', u'hard', u'diagnos', u'coron']
[u'workcov', u'union', u'build', u'death', u'prosecut']
[u'work', u'start', u'year', u'gladston', u'toowoomba']
[u'seven', u'mile', u'beach', u'develop', u'propos']
[u'equip', u'upgrad', u'riverland', u'hospit']
[u'activist', u'deni', u'spiderman', u'stunt', u'nuisanc']
[u'algerian', u'approv', u'partial', u'amnesti', u'rebel']
[u'alic', u'spring', u'host', u'octob', u'busi', u'month', u'launch']
[u'urg', u'effort', u'boost', u'region', u'specialist']
[u'american', u'tourist', u'prepar', u'space', u'launch']
[u'anger', u'minist', u'ban', u'dolphin', u'feed']
[u'anger', u'princ', u'highway', u'exclud', u'auslink']
[u'take', u'dive']
[u'atsb', u'probe', u'fatal', u'light', u'plane', u'crash']
[u'auction', u'proceed', u'help', u'griev', u'famili']
[u'aussi', u'jone', u'end', u'footbal', u'career']
[u'aust', u'pilot', u'blame', u'poor', u'land', u'marit', u'issu']
[u'backpack', u'killer', u'seek', u'high', u'court', u'appeal']
[u'bead', u'seek', u'papuan', u'dancer', u'seizur']
[u'bidder', u'line', u'beef', u'processor']
[u'bird', u'pandem', u'kill', u'warn']
[u'birney', u'opt', u'uranium', u'debat']
[u'recov', u'near', u'drown']
[u'brack', u'launch', u'bendigo', u'year', u'plan']
[u'brag', u'land', u'hooker', u'jail']
[u'britain', u'stamp', u'ash']
[u'broadbridg', u'rememb', u'thailand']
[u'govern', u'improv', u'drought']
[u'local', u'firm', u'bundaberg']
[u'birdsvill', u'health', u'clinic', u'fund']
[u'toowoomba', u'includ', u'daylight']
[u'call', u'govt', u'fund', u'mildura', u'airport']
[u'canadian', u'provinc', u'clear', u'tobacco', u'giant']
[u'cancer', u'group', u'public', u'fund']
[u'cane', u'field', u'fall', u'silent', u'grand', u'final']
[u'capot', u'long', u'lose', u'novel', u'publish']
[u'bomb', u'hit', u'market', u'hillah']
[u'recommend', u'polic', u'power', u'combat']
[u'coast', u'secur', u'top', u'howard', u'gallop', u'talk', u'agenda']
[u'cole', u'recal', u'tropic', u'muesli']
[u'communiti', u'group', u'seek', u'holiday', u'let', u'restrict']
[u'communiti', u'want', u'refug', u'control']
[u'communiti', u'wish', u'local', u'best']
[u'compani', u'consid', u'reloc', u'maryborough']
[u'compani', u'buoy', u'hotter', u'rock']
[u'consum', u'ignor', u'fuel', u'price', u'hike']
[u'consum', u'urg', u'avoid', u'fenc', u'contractor']
[u'coron', u'recommend', u'train', u'speed', u'review', u'death', u'site']
[u'cotton', u'harvest', u'seek', u'higher', u'incom']
[u'council', u'consid', u'wind', u'farm', u'plan']
[u'councillor', u'question', u'code', u'conduct', u'scheme']
[u'council', u'mackay', u'sugar', u'sign', u'water', u'agreement']
[u'council', u'rat', u'today']
[u'court', u'dismiss', u'east', u'point', u'project', u'appeal']
[u'court', u'rule', u'koizumi', u'shrine', u'visit', u'violat']
[u'croc', u'attack', u'victim', u'name']
[u'damag', u'award', u'shop', u'centr', u'fall', u'case']
[u'death', u'prompt', u'crocodil', u'cull']
[u'debat', u'continu', u'finland', u'pulp', u'tour']
[u'demon', u'open', u'broadbridg', u'memori', u'school']
[u'denmark', u'shire', u'play', u'land', u'purchas', u'fear']
[u'dredg', u'trial', u'impress', u'port', u'melbourn']
[u'driver', u'warn', u'long', u'weekend', u'doubl', u'demerit']
[u'drug', u'accus', u'face', u'court']
[u'dvds', u'lure', u'student', u'miner', u'cours']
[u'edith', u'cross', u'overlook', u'upgrad']
[u'elder', u'patient', u'increas', u'countri', u'workload']
[u'everton', u'crash', u'bolton', u'celebr', u'uefa']
[u'fear', u'rural', u'ambul', u'centr', u'close']
[u'fiji', u'militari', u'chief', u'assert', u'right', u'polit']
[u'finland', u'bird', u'drug', u'entir', u'popul']
[u'water', u'festiv', u'kick']
[u'fitzi', u'plan', u'feder', u'play', u'davi']
[u'women', u'famili', u'hold', u'drug', u'raid']
[u'flintoff', u'itch', u'australia']
[u'flip', u'toad', u'spray', u'poison', u'execution']
[u'forc', u'stand', u'offic', u'warn', u'shoot']
[u'beef', u'expo', u'chief', u'say', u'event', u'leav', u'rocki']
[u'freddi', u'itch', u'australia']
[u'fuel', u'price', u'drop', u'accc', u'launch', u'snapshot']
[u'fund', u'offer', u'local', u'sportswomen']
[u'gold', u'coast', u'airport', u'record', u'strong', u'passeng', u'growth']
[u'govt', u'defend', u'healthcar', u'cost', u'surg']
[u'govt', u'fail', u'deliv', u'technic', u'colleg', u'promis']
[u'govt', u'guilti', u'unfair', u'dismiss', u'judg', u'say']
[u'govt', u'keep', u'polic', u'forc', u'promis', u'minist']
[u'govt', u'reject', u'opposit', u'wast', u'dump', u'claim']
[u'govt', u'help', u'fiji', u'elect', u'cost']
[u'govt', u'withdraw', u'support', u'rudd', u'indonesia', u'trip']
[u'hawk', u'right', u'nuclear', u'wast', u'spokesman']
[u'hewitt', u'pull', u'bangkok']
[u'high', u'profil', u'councillor', u'wont', u'contest', u'elect']
[u'holiday', u'let', u'byron', u'continu']
[u'home', u'renov', u'warn', u'asbesto', u'hazard']
[u'hope', u'auslink', u'deal', u'secur', u'myall']
[u'hope', u'power', u'station', u'attract', u'industri']
[u'horsham', u'aerodrom', u'readi', u'melbourn', u'flight']
[u'hospit', u'fin', u'doubl', u'dip']
[u'hundr', u'flee', u'bushfir']
[u'illeg', u'fisher', u'net', u'fine']
[u'iluka', u'resourc', u'consid', u'mine', u'method']
[u'increas', u'level', u'water', u'restrict']
[u'industri', u'develop', u'site', u'appropri']
[u'investig', u'launch', u'prison', u'assault']
[u'iraqi', u'secur', u'capabl', u'shrink', u'general', u'say']
[u'iri', u'remain', u'research', u'compani', u'say', u'outgo']
[u'irrig', u'group', u'label', u'murray', u'river', u'plan', u'prematur']
[u'odysseuss', u'ithaca', u'peninsula']
[u'jone', u'reappoint', u'spark', u'port', u'arthur', u'author']
[u'kalgoorli', u'paint', u'ideal', u'adventur', u'holiday', u'spot']
[u'kean', u'career', u'celtic']
[u'killer', u'croc', u'ranger', u'say']
[u'king', u'snap', u'crosswhit']
[u'labor', u'warn', u'health', u'spend', u'push', u'tax']
[u'nestl', u'tongala', u'worker']
[u'launceston', u'secur', u'game']
[u'communiti', u'choos', u'mayor', u'councillor', u'say']
[u'peopl', u'decid', u'year', u'term', u'labor', u'say']
[u'lismor', u'council', u'hope', u'secur', u'airport']
[u'littbarski', u'expect', u'york']
[u'liverpool', u'offer', u'fresh', u'hope', u'chase', u'pack']
[u'local', u'trio', u'join', u'health', u'advisori', u'council']
[u'macdonald', u'keep', u'marin', u'park', u'propos']
[u'magistr', u'clamp', u'drink', u'driver']
[u'child', u'investig', u'public', u'opposit']
[u'slash', u'time', u'robberi']
[u'extradit', u'face', u'murder', u'charg']
[u'face', u'court', u'accus', u'bash', u'partner']
[u'mayor', u'faze', u'investig']
[u'mayor', u'unhappi', u'sawmil', u'closur']
[u'melbourn', u'council', u'consid', u'advertis']
[u'mental', u'health', u'ambassador', u'assist', u'teen']
[u'merrick', u'predict', u'open', u'victori', u'marin', u'clash']
[u'methadon', u'murder', u'suspect', u'make', u'assault', u'claim']
[u'militari', u'machin', u'display', u'tamworth']
[u'militia', u'attack', u'darfur', u'camp']
[u'milk', u'price', u'increas', u'begin', u'warn']
[u'milk', u'price', u'rise', u'sound', u'inflat', u'alert']
[u'plan', u'suffer', u'setback']
[u'miner', u'abandon', u'dampier', u'peninsula', u'plant', u'plan']
[u'mine', u'traffic', u'worri', u'local']
[u'ministeri', u'council', u'reject', u'water', u'buy', u'murray']
[u'minist', u'favour', u'year', u'parliamentari', u'term']
[u'miss', u'trio', u'safe']
[u'call', u'public', u'meet', u'toxic', u'wast']
[u'deni', u'make', u'council', u'complaint']
[u'seek', u'chang', u'govt', u'apprenticeship', u'scheme']
[u'lead', u'open']
[u'legal', u'challeng', u'possibl', u'bridg', u'saga']
[u'mental', u'health', u'fund', u'token', u'effort', u'opposit']
[u'review', u'insid', u'trade', u'convict', u'rivkin']
[u'north', u'west', u'mark', u'polic', u'remembr']
[u'fan', u'rous', u'final', u'team']
[u'canola', u'sorghum', u'malt', u'barley', u'market', u'deregul']
[u'govt', u'stand', u'fund', u'ax', u'alic']
[u'nurs', u'claim', u'mental', u'health', u'servic']
[u'time', u'report', u'free', u'jail']
[u'opera', u'hous', u'world', u'heritag', u'list']
[u'opposit', u'urg', u'govt', u'rethink', u'distanc']
[u'oyster', u'produc', u'want', u'cost', u'water', u'monitor']
[u'pair', u'commit', u'trial', u'loss']
[u'permit', u'issu', u'sacr', u'papuan', u'drum']
[u'probe', u'uncov', u'polic', u'drug']
[u'pietersen', u'defend', u'warn', u'privaci']
[u'plastic', u'surgeon', u'gather', u'gold', u'coast']
[u'plea', u'domest', u'violenc', u'educ']
[u'respons', u'north', u'west', u'secur', u'issu', u'gallop']
[u'visit']
[u'polic', u'fatal', u'free', u'long', u'weekend']
[u'polic', u'tough', u'drink', u'danger', u'driver']
[u'polic', u'investig', u'fatal', u'crash']
[u'polic', u'silent', u'call', u'stun', u'trial']
[u'polic', u'target', u'danger', u'driver', u'long']
[u'polic', u'trace', u'movement', u'coupl', u'dead']
[u'polic', u'warn', u'long', u'weekend', u'doubl', u'demerit']
[u'policewoman', u'hurt', u'town', u'camp', u'incid']
[u'pont', u'hit', u'chappelli']
[u'pont', u'rubbish', u'chappel', u'lara', u'cautious']
[u'port', u'hinchinbrook', u'develop', u'plan', u'scrap']
[u'price', u'hike', u'prompt']
[u'prison', u'guard', u'lift', u'work', u'ban']
[u'psychiatr', u'patient', u'guilti', u'intent']
[u'psych', u'ward', u'secur', u'mental', u'health', u'group']
[u'smoke', u'restrict', u'increas']
[u'question', u'rais', u'passport', u'technolog']
[u'rain', u'water', u'tank', u'compulsori', u'hous']
[u'recent', u'suicid', u'lead', u'renew', u'mental', u'health']
[u'red', u'farewel', u'ballymor']
[u'refineri', u'evacu', u'leak', u'lethal']
[u'report', u'seek', u'reform', u'health']
[u'research', u'consid', u'salin', u'crisi']
[u'resid', u'pass', u'confid', u'vote', u'renmark']
[u'retail', u'number', u'unlik', u'affect', u'rat']
[u'retail', u'sale', u'defi', u'petrol', u'price', u'pressur']
[u'rock', u'fall', u'close', u'ainsli', u'summit', u'road']
[u'rooney', u'reunion']
[u'round', u'leagu', u'close']
[u'ruddock', u'tell', u'contempt', u'trial', u'plan', u'chang']
[u'safe', u'ocean', u'swim', u'teach', u'outback']
[u'govt', u'address', u'skill', u'shortag', u'crisi']
[u'salvo', u'consid', u'hobart', u'refug', u'expans']
[u'pair', u'shine', u'draft', u'camp']
[u'sar', u'probabl', u'origin', u'bat']
[u'scientif', u'studi', u'focus', u'flinder', u'bushfir']
[u'search', u'lose', u'crevass']
[u'sharehold', u'unhappi', u'cooper', u'famili', u'approach']
[u'shoalhaven', u'look', u'imag', u'overhaul']
[u'shoot', u'friend', u'end', u'year', u'jail', u'term']
[u'smuggl', u'fossil', u'heritag', u'hand', u'china']
[u'snowi', u'pipe', u'plan', u'concern']
[u'south', u'east', u'hospit', u'fund', u'boost']
[u'spain', u'promis', u'inquiri', u'moroccan', u'death']
[u'state', u'build', u'standard', u'overrid', u'local', u'cod']
[u'stop', u'reviv', u'surviv', u'long', u'weekend']
[u'substanc', u'abus', u'tackl', u'tasmania']
[u'swan', u'bring', u'sydney', u'halt']
[u'sydney', u'standstil', u'swan', u'victori', u'parad']
[u'talisman', u'mine', u'releas', u'share']
[u'teen', u'sentenc', u'fatal', u'bash', u'rule', u'appropri']
[u'terror', u'challeng', u'face', u'communiti', u'aspinal', u'say']
[u'tiger', u'wait', u'richard']
[u'turtl', u'conserv', u'project', u'expand']
[u'charg', u'make', u'airport', u'threat']
[u'jail', u'feed', u'south', u'african', u'lion']
[u'polic', u'rescu', u'traffic', u'women']
[u'unregul', u'ultrasound', u'clinic', u'caus', u'concern']
[u'appoint', u'chief', u'justic']
[u'chief', u'flag', u'greater', u'intellig', u'share']
[u'dairi', u'farmer', u'expect', u'milk', u'price', u'rise']
[u'victori', u'come', u'sink', u'marin']
[u'dairi', u'farmer', u'push', u'price', u'rise']
[u'wall', u'confid', u'jobless', u'claim', u'drop']
[u'warn', u'shot', u'fire', u'fuel', u'price', u'protest']
[u'word', u'erupt', u'highway', u'fund']
[u'weapon', u'cach', u'sydney', u'raid']
[u'play', u'possibl', u'bird', u'toll']
[u'wildcat', u'pirat', u'thriller']
[u'wild', u'gorilla', u'see', u'tool', u'time']
[u'wild', u'river', u'legisl', u'disast', u'cape']
[u'wilkinson', u'eye', u'latest', u'comeback']
[u'wind', u'farm', u'guidelin', u'releas']
[u'wnbl', u'start', u'tonight']
[u'woodi', u'reveal', u'lleyton', u'sensit']
[u'year', u'lotteri', u'jackpot', u'remain', u'unclaim']
[u'home', u'readi', u'aceh', u'tsunami', u'victim']
[u'forc', u'scar', u'santa', u'reindeer', u'death']
[u'atkinson', u'make', u'solid', u'start', u'japan']
[u'bali', u'blast', u'target', u'tourist', u'area']
[u'beatti', u'defend', u'decis', u'withhold', u'forster', u'report']
[u'bell', u'slalom', u'histori']
[u'blast', u'bali', u'tourist', u'area']
[u'boost', u'tiger', u'richard', u'clear']
[u'brain', u'damag', u'imprison', u'crime']
[u'bulleen', u'adelaid', u'open', u'wnbl', u'season', u'win']
[u'cambodian', u'polic', u'close', u'khmer', u'roug', u'cafe']
[u'campbel', u'win', u'alic', u'spring', u'elect']
[u'capirossi', u'take', u'pole', u'qatar', u'motogp']
[u'child', u'care', u'cost', u'spiral']
[u'china', u'xinjiang', u'mark', u'anniversari']
[u'civic', u'revamp', u'includ', u'stop', u'upgrad', u'green']
[u'clark', u'close', u'form', u'govern']
[u'clark', u'win', u'poll']
[u'clark', u'win', u'term']
[u'confucius', u'movi', u'show', u'onlin']
[u'cousin', u'award', u'eagl', u'best', u'fairest']
[u'danish', u'soldier', u'kill', u'bomb', u'iraq']
[u'day', u'week', u'identifi', u'human', u'bird', u'strain']
[u'congo', u'warn', u'militia']
[u'find', u'worri', u'fraud', u'afghan', u'poll']
[u'faith', u'join', u'forc', u'peac', u'confer']
[u'govt', u'blame', u'child', u'care', u'cost']
[u'firefight', u'contain', u'blaze']
[u'flintoff', u'leav', u'practic', u'game']
[u'forc', u'launch', u'attack', u'western', u'iraq']
[u'offici', u'criticis', u'black', u'abort']
[u'fuel', u'price', u'queensland', u'spend']
[u'gillespi', u'renew', u'bowl', u'coach']
[u'govt', u'urg', u'deal', u'high', u'child', u'care', u'cost']
[u'govt', u'warn', u'busi', u'rise', u'price']
[u'guantanamo', u'detaine', u'continu', u'hunger', u'strike']
[u'homeless', u'servic', u'doubt', u'fund']
[u'hundr', u'ralli', u'indonesia', u'fuel', u'price', u'hike']
[u'india', u'enceph', u'toll', u'near']
[u'indonesian', u'boat', u'secur', u'alleg', u'board']
[u'indonesian', u'fishermen', u'board', u'aust', u'fish', u'boat']
[u'interview', u'jason', u'gillespi']
[u'interview', u'matthew', u'hayden']
[u'investig', u'light', u'plane', u'accid']
[u'iron', u'put', u'heat', u'slater', u'world', u'titl', u'race']
[u'irrig', u'replenish', u'giant', u'forest', u'water']
[u'italian', u'dancer', u'strike']
[u'soap', u'opera', u'stone', u'like']
[u'journalist', u'welcom', u'contempt', u'chang']
[u'legal', u'action', u'drop', u'mountain', u'log']
[u'lomu', u'relaunch', u'career', u'wale']
[u'makyb', u'diva', u'take', u'turnbul', u'stake']
[u'arrest', u'alleg']
[u'martyn', u'drop', u'peak', u'form', u'hayden']
[u'miner', u'hop', u'explor', u'bass', u'strait', u'gold']
[u'moder', u'muslim', u'need', u'support', u'downer']
[u'motorcyclist', u'kill', u'head', u'crash']
[u'nasa', u'delay', u'shuttl', u'launch']
[u'york', u'time', u'report', u'testifi', u'leak', u'case']
[u'north', u'coast', u'lead', u'soybean', u'product']
[u'govt', u'stockpil', u'bird', u'vaccin']
[u'warn', u'fruit', u'risk']
[u'opposit', u'conced', u'defeat', u'poll']
[u'opposit', u'seek', u'action', u'recommend']
[u'opposit', u'want', u'health', u'minist', u'sack']
[u'overdos', u'probe', u'heroin', u'ring', u'bust', u'polic']
[u'appeal', u'reform', u'support']
[u'polic', u'appeal', u'inform', u'hotel', u'murder']
[u'policeman', u'break']
[u'polic', u'seek', u'woman', u'attempt', u'babi', u'abduct']
[u'pont', u'focus', u'reclaim', u'ash']
[u'prehistor', u'spider', u'spark', u'jurass', u'park', u'hop']
[u'primus', u'hang', u'boot']
[u'proflig', u'roar', u'edg', u'jet']
[u'rech', u'clear', u'face', u'knight']
[u'resid', u'return', u'orlean', u'despit', u'leve', u'fear']
[u'richard', u'play']
[u'rival', u'cautious', u'makyb', u'diva']
[u'roadsid', u'bomb', u'injur', u'troop', u'afghanistan']
[u'rumsfeld', u'downplay', u'loss', u'iraqi', u'battalion']
[u'search', u'continu', u'illeg', u'fish', u'boat']
[u'senat', u'want', u'tougher', u'rule', u'vote', u'enrol']
[u'slow', u'boat', u'britain', u'complet', u'atlant', u'odyssey']
[u'star', u'suburb']
[u'stoner', u'close', u'rossi', u'take']
[u'student', u'bear', u'hec', u'burden', u'report']
[u'studi', u'find', u'student', u'lack', u'literaci', u'skill']
[u'studi', u'assess', u'nativ', u'fish', u'stock', u'recoveri']
[u'sydney', u'come', u'glori']
[u'consid', u'review', u'rail', u'freight']
[u'tasmanian', u'aust', u'shopper']
[u'tasmania', u'switch', u'daylight', u'save', u'overnight']
[u'teenag', u'murray', u'book', u'date']
[u'teen', u'turn', u'internet', u'counsel', u'servic']
[u'tendulkar', u'comeback']
[u'thailand', u'promis', u'drug', u'hivaid', u'suffer']
[u'kill', u'israel', u'west', u'bank', u'raid']
[u'tiger', u'hop', u'draw', u'home', u'town', u'support']
[u'tiger', u'wari', u'underdog', u'cowboy']
[u'truss', u'warn', u'busi', u'price', u'hike']
[u'typhoon', u'damrey', u'toll', u'pass']
[u'polic', u'chief', u'block', u'brazilian', u'death', u'probe']
[u'union', u'defend', u'primari', u'school', u'curriculum']
[u'union', u'welcom', u'forster', u'report']
[u'free', u'detaine', u'ghraib', u'jail']
[u'space', u'tourist', u'blast', u'aboard', u'soyuz']
[u'stock', u'rise', u'best', u'quarter']
[u'liber', u'debat', u'debt', u'recoveri']
[u'liber', u'unmov', u'reform', u'plan']
[u'liber', u'wont', u'howard', u'plan']
[u'wenger', u'hit', u'booki', u'chelsea', u'out']
[u'westgat', u'bridg', u'speed', u'camera']
[u'talk', u'aust', u'bird', u'readi']
[u'win', u'hawk', u'king', u'sixer']
[u'woman', u'pull', u'river', u'rescu']
[u'zimbabw', u'bank', u'chief', u'call', u'farm', u'seizur']
[u'india', u'drink', u'bootleg', u'alcohol']
[u'kill', u'blast']
[u'abbott', u'visit', u'bali', u'bomb', u'victim']
[u'adelaid', u'sink', u'knight', u'soak', u'auckland']
[u'aker', u'name', u'lion', u'best']
[u'atkinson', u'podium', u'loeb', u'secur', u'ralli', u'titl']
[u'aussi', u'photograph', u'talk', u'blast']
[u'aussi', u'readi', u'bounc', u'say']
[u'australian', u'agenc', u'consid', u'bali', u'respons']
[u'australian', u'bali', u'dead']
[u'australian', u'tell', u'stori', u'bali', u'bomb']
[u'aust', u'terror', u'alert', u'level', u'unchang', u'despit']
[u'backpack', u'bali', u'blast', u'sit']
[u'bali', u'bomb', u'indonesia', u'economi']
[u'barcelona', u'draw', u'zaragoza', u'getaf']
[u'beatti', u'ask', u'costello', u'health', u'help']
[u'blast', u'bali']
[u'blast', u'target', u'democraci', u'howard', u'say']
[u'breaker', u'upset', u'razorback']
[u'burni', u'celebr', u'bumper', u'turn']
[u'busi', u'urg', u'rethink', u'freight', u'network', u'closur']
[u'busselton', u'teen', u'kill', u'bali', u'blast']
[u'cafe', u'close', u'reviv', u'memori']
[u'child', u'care', u'need', u'afford', u'union', u'say']
[u'china', u'shut', u'exhibit']
[u'investig', u'alleg', u'cover']
[u'countdown', u'tiger', u'toss']
[u'darwin', u'return', u'bali', u'second', u'close']
[u'darwin', u'prepar', u'bali', u'bomb', u'injur']
[u'dead', u'blast', u'bali', u'tourist', u'spot']
[u'defenc', u'forc', u'bring', u'home', u'injur', u'aussi']
[u'dfat', u'staff', u'bali', u'blast', u'sit']
[u'doctor', u'wit', u'attack']
[u'downer', u'issu', u'travel', u'advic']
[u'dravid', u'pollock', u'star', u'world', u'warm']
[u'egyptian', u'detaine', u'free', u'guantanamo']
[u'eildon', u'upgrad', u'unveil']
[u'salvador', u'volcano', u'erupt']
[u'salvador', u'volcano', u'prompt', u'evacu']
[u'expert', u'blame', u'bali', u'blast']
[u'feder', u'down', u'murray', u'thai', u'final']
[u'finger', u'point']
[u'firefight', u'blaze']
[u'lynx']
[u'skipper', u'lift', u'booz', u'black']
[u'govt', u'put', u'surgeri', u'dental', u'work']
[u'govt', u'urg', u'work', u'child', u'care']
[u'gregan', u'rule', u'retir']
[u'hospit', u'redevelop', u'million', u'budget']
[u'iaquinta', u'return', u'udines', u'win', u'way']
[u'indonesia', u'investig', u'bali', u'bomb']
[u'indonesian', u'leader', u'visit', u'blast', u'sit']
[u'indonesian', u'market', u'brace', u'fallout']
[u'indonesian', u'rout', u'broom', u'board']
[u'investig', u'launch', u'attack']
[u'iran', u'deni', u'threat']
[u'iran', u'threaten', u'withhold']
[u'israel', u'scale', u'gaza', u'offens']
[u'japanes', u'woman', u'kill', u'bali', u'attack']
[u'kidnap', u'offens', u'iraq', u'constitut', u'talk']
[u'liber', u'tribut']
[u'liber', u'expand', u'power']
[u'lomu', u'sign', u'cardiff']
[u'look', u'like', u'work', u'terrorist', u'expert', u'say']
[u'jail', u'role', u'girlfriend', u'murder']
[u'milit', u'spread', u'iraq', u'train']
[u'minist', u'warn', u'solarium', u'visit']
[u'mother', u'unhappi', u'sentenc', u'teen', u'death']
[u'muslim', u'speaker', u'discuss', u'religion', u'terror', u'link']
[u'naasi', u'win', u'half', u'marathon', u'world', u'titl']
[u'nation', u'park', u'extend', u'kosciuszko', u'brumbi', u'control']
[u'newcastl', u'coupl', u'catch', u'bomb']
[u'grand', u'final', u'highlight']
[u'grand', u'final', u'kick', u'sydney']
[u'grand', u'final', u'post', u'match', u'interview']
[u'minist', u'reject', u'call', u'crocodil', u'cull']
[u'olymp', u'champ', u'injur', u'crash']
[u'australian', u'dead', u'critic', u'bali']
[u'australian', u'kill', u'bali', u'blast']
[u'perth', u'hospit', u'stand', u'follow', u'bali', u'attack']
[u'photograph', u'visit', u'injur', u'hospit']
[u'pilot', u'kill', u'crash']
[u'polic', u'kill', u'wit', u'chang', u'live']
[u'polic', u'search', u'assault']
[u'premier', u'welcom', u'probe', u'brogden', u'suicid', u'note']
[u'probe', u'order', u'brogden', u'suicid', u'note', u'leak']
[u'qanta', u'put', u'extra', u'bali', u'flight']
[u'ranger', u'battl', u'past', u'flame']
[u'marshal', u'cowboy', u'tell']
[u'shorten', u'season', u'matilda', u'campaign']
[u'respons', u'bali', u'bomb', u'plot', u'polic']
[u'student', u'unit', u'debat', u'forestri', u'issu']
[u'suicid', u'bomber', u'bali', u'blast', u'yudhoyono']
[u'teacher', u'union', u'optimist', u'claim']
[u'tiger', u'claim', u'histor', u'premiership']
[u'tiger', u'favourit', u'ahead', u'final']
[u'tiger', u'lead', u'half', u'time']
[u'timelin', u'indonesia', u'bomb', u'attack']
[u'earli', u'blame', u'jone', u'say']
[u'croc', u'victim', u'foolhardi']
[u'tourist', u'target', u'bali']
[u'tredrea', u'vote', u'port', u'best']
[u'salvador', u'volcano', u'erupt']
[u'soldier', u'kill', u'afghanistan']
[u'claim', u'sydney', u'premier', u'titl']
[u'warn', u'darfur', u'crime', u'action']
[u'nistelrooy', u'lift', u'unit', u'spur', u'stun', u'charlton']
[u'liber', u'push', u'uranium', u'mine']
[u'warn', u'say', u'aussi', u'bali']
[u'wit', u'victim', u'recount', u'experi']
[u'world', u'leader', u'condemn', u'bali', u'bomb']
[u'wound', u'australian', u'fli', u'bali']
[u'yudhoyono', u'condemn', u'bali', u'blast']
[u'kill', u'south', u'korea', u'concert', u'stamped']
[u'bali', u'blast', u'victim', u'reconsid', u'travel', u'plan']
[u'kill', u'tajikistan', u'collis']
[u'kill', u'afghanistan', u'attack']
[u'abbott', u'prais', u'stoic', u'aussi', u'bali']
[u'boast', u'better', u'recycl', u'figur']
[u'activ', u'aplenti', u'labour', u'weekend']
[u'actu', u'seek', u'support', u'reform', u'inquiri']
[u'age', u'popul', u'put', u'pressur', u'local']
[u'alic', u'airport', u'drive', u'cinema', u'heritag', u'list']
[u'alic', u'elect', u'winner', u'seek', u'lift', u'council']
[u'name', u'elect', u'candid']
[u'alumina', u'refineri', u'health', u'concern', u'remain']
[u'amateur', u'video', u'show', u'bali', u'attack']
[u'ambul', u'servic', u'reject', u'staff', u'claim']
[u'anti', u'terror', u'drill', u'bring', u'rome', u'standstil']
[u'asbesto', u'remov', u'money', u'languish']
[u'asian', u'beef', u'export', u'improv']
[u'attack', u'expect', u'weaken', u'bali', u'tourism', u'industri']
[u'australian', u'death', u'toll', u'expect', u'rise']
[u'australian', u'nobel', u'gastriti', u'discoveri']
[u'australia', u'lead', u'pacif']
[u'award', u'highlight', u'indigen', u'cultur', u'preserv']
[u'award', u'win', u'turf', u'club', u'face', u'tough', u'season']
[u'bali', u'attack', u'fail', u'shake', u'aussi', u'market']
[u'bali', u'attack', u'affect', u'melbourn', u'game', u'secur']
[u'bali', u'blast', u'prompt', u'region', u'airport', u'secur']
[u'bali', u'blast', u'littl', u'impact', u'aust', u'tourism']
[u'bali', u'bomb', u'death', u'shock', u'newcastl']
[u'bali', u'bomb', u'investig', u'continu']
[u'bali', u'bomb', u'unlik', u'affect', u'terror', u'law']
[u'bali', u'evid', u'point', u'keelti']
[u'bali', u'polic', u'reveal', u'bomber', u'photo']
[u'bali', u'victim', u'famili', u'treat', u'hospit']
[u'bendigo', u'reflect', u'latest', u'bali', u'blast']
[u'bird', u'blame', u'elder', u'indonesian', u'death']
[u'bird', u'fear', u'benefit', u'biota']
[u'birney', u'rule', u'nuclear', u'power', u'wast', u'dump']
[u'blaze', u'damag', u'church', u'communiti', u'centr']
[u'bomb', u'death', u'shock', u'newcastl']
[u'bomb', u'victim', u'releas', u'hospit']
[u'british', u'rocker', u'pete', u'doherti', u'hold', u'drug', u'raid']
[u'brit', u'flock', u'aust', u'skill', u'expo']
[u'bubbl', u'studi', u'fizz', u'champagn']
[u'bundaberg', u'faction', u'deal']
[u'bush', u'pick', u'white', u'hous', u'suprem', u'court']
[u'busselton', u'mourn', u'teenag', u'bomb', u'victim']
[u'buyer', u'warn', u'bewar', u'drug', u'poni']
[u'bypass', u'delay', u'heighten', u'road', u'death', u'fear']
[u'bypass', u'rambo', u'look', u'pastur']
[u'cairn', u'shutterbug', u'snap', u'finalist', u'spot', u'photo']
[u'privat', u'tourism', u'nation', u'park']
[u'campbel', u'smith', u'england', u'squad']
[u'carlton', u'pair', u'centr', u'trade', u'specul']
[u'chain', u'smoke', u'chimp', u'kick', u'habit', u'year']
[u'chines', u'blast', u'leav', u'dead']
[u'choi', u'win', u'greensboro', u'classic']
[u'clijster', u'make', u'win', u'return']
[u'commerci', u'diver', u'croc', u'warn', u'devic']
[u'communiti', u'help', u'secur', u'helen', u'rescu', u'boat']
[u'confus', u'stall', u'clipsal', u'redund']
[u'corser', u'crown', u'world', u'superbik', u'champion']
[u'council', u'question', u'alcohol', u'restrict']
[u'council', u'unlik', u'attend', u'civic', u'centr', u'meet']
[u'council', u'unlik', u'delay', u'brothel', u'decis']
[u'court', u'urg', u'consid', u'domest', u'violenc', u'histori']
[u'cpsu', u'discuss', u'push', u'nation', u'galleri']
[u'croc', u'attack', u'year', u'northern']
[u'darwin', u'hospit', u'releas', u'bomb', u'victim']
[u'delay', u'push', u'north', u'gold']
[u'democrat', u'overturn', u'abort', u'drug']
[u'denmark', u'host', u'land', u'care', u'gather']
[u'dental', u'group', u'back', u'fluorid']
[u'develop', u'abandon', u'bateman', u'plan']
[u'dragon', u'come', u'grand', u'final']
[u'dupe', u'retir', u'meet', u'invest', u'administr']
[u'dutch', u'master', u'fail', u'break', u'impressionist']
[u'earthquak', u'jolt', u'jordan', u'valley']
[u'educ', u'health', u'servic', u'sign', u'deal']
[u'salvador', u'fear', u'volcano', u'erupt']
[u'famili', u'farewel', u'kill', u'rollov']
[u'famili', u'seek', u'fuel', u'excis']
[u'farmer', u'vote', u'grow', u'canola']
[u'ferri', u'collaps', u'hand', u'link', u'titl', u'monti']
[u'fisher', u'hope', u'lobster', u'price', u'boost']
[u'bali', u'victim', u'critic', u'darwin', u'hospit']
[u'australian', u'believ', u'dead', u'downer']
[u'frost', u'toll', u'wheatbelt', u'harvest']
[u'fund', u'woe', u'cancel', u'indigen', u'substanc', u'abus']
[u'geraldton', u'women', u'avoid', u'bali', u'blast']
[u'gilchrist', u'throw', u'martyn']
[u'good', u'south', u'east', u'jobless', u'figur']
[u'govt', u'expect', u'delay', u'wind', u'farm', u'decis']
[u'grass', u'head', u'lake', u'macquari', u'properti']
[u'grassfir', u'prompt', u'warn', u'burn', u'off']
[u'green', u'rush', u'fund', u'pacif', u'nation']
[u'green', u'push', u'chemic', u'devil', u'diseas']
[u'group', u'consid', u'coal', u'seam', u'salin', u'spin']
[u'hawk', u'refus', u'trade', u'everitt']
[u'health', u'review', u'forc', u'beatti', u'rethink']
[u'hewitt', u'edg', u'rank']
[u'hogg', u'tait', u'super', u'seri']
[u'holiday', u'driver', u'urg', u'stay', u'safe']
[u'indian', u'crash', u'toll', u'rise', u'rescu', u'work', u'continu']
[u'injur', u'australian', u'arriv', u'home']
[u'iraq', u'insurg', u'commit', u'crime', u'right', u'group']
[u'iraq', u'minist', u'surviv', u'bomb', u'attack']
[u'juve', u'beat', u'inter', u'seri', u'control']
[u'kempsey', u'hospit', u'await', u'mental', u'health', u'decis']
[u'labour', u'begin', u'talk', u'form', u'govt']
[u'lake', u'macquari', u'contain']
[u'landmark', u'deal', u'loom', u'river', u'develop']
[u'launceston', u'council', u'reject', u'silverdom', u'ultimatum']
[u'launceston', u'council', u'decid', u'silverdom']
[u'lifesav', u'busi', u'sunshin', u'coast', u'beach']
[u'local', u'council', u'back', u'south', u'sister', u'log']
[u'local', u'doubt', u'rais', u'health', u'review']
[u'local', u'resid', u'escap', u'bali', u'blast']
[u'local', u'breath', u'life', u'cunderdin', u'hotel']
[u'price', u'blame', u'closur']
[u'charg', u'bathurst', u'home', u'invas']
[u'die', u'fall', u'tray']
[u'die', u'highland', u'road', u'crash']
[u'court', u'accus', u'prank', u'emerg', u'call']
[u'marshal', u'halatau', u'doubt', u'nation', u'open']
[u'marshal', u'tout', u'princ', u'kangaroo', u'select']
[u'master', u'game', u'featur', u'extra', u'event']
[u'mayor', u'accus', u'limit', u'councillor', u'role']
[u'mcgrath', u'support', u'specialist', u'coach']
[u'mickelberg', u'face', u'offic', u'wrong', u'convict']
[u'mitchel', u'deni', u'booz', u'cultur', u'claim']
[u'mitchel', u'place', u'pressur', u'forc']
[u'motorcyclist', u'face', u'court', u'policeman']
[u'motorist', u'warn', u'complac']
[u'mum', u'attent', u'rural', u'matern', u'report']
[u'murdoch', u'sell', u'educ', u'titl']
[u'ghraib', u'act', u'worst', u'england']
[u'nanni', u'goat', u'play', u'surrog', u'orphan', u'foal']
[u'approach', u'bomber']
[u'newcastl', u'servic', u'pay', u'tribut', u'bali', u'victim']
[u'committe', u'test', u'communiti', u'respons', u'apollo']
[u'post', u'kimberley', u'educ', u'chief']
[u'nobel', u'interrupt', u'dinner', u'australian', u'winner']
[u'north', u'central', u'victoria', u'experi', u'septemb']
[u'north', u'west', u'pray', u'bali', u'blast', u'victim']
[u'offer', u'bali', u'bomb', u'hotlin']
[u'fund', u'lifelin', u'tech', u'upgrad']
[u'outback', u'secur', u'tourism', u'award']
[u'pacif', u'nation', u'defend', u'fund', u'demand']
[u'palestinian', u'polic', u'stage', u'parliament', u'protest']
[u'pedestrian', u'die', u'bowravill']
[u'petrol', u'boss', u'fin', u'speed', u'ticket']
[u'phone', u'trigger', u'bali', u'bomb']
[u'planet', u'xena', u'moon', u'name', u'gabriell']
[u'discuss', u'bali', u'blast']
[u'play', u'warn', u'report']
[u'leader', u'delay', u'australian', u'trip']
[u'polic', u'hurt', u'swan', u'hill', u'brawl']
[u'polic', u'investig', u'weekend', u'violenc']
[u'policeman', u'break', u'roadsid', u'mishap']
[u'polic', u'pleas', u'overal', u'muster', u'behaviour']
[u'polic', u'probe', u'broadford', u'man', u'fatal', u'crash']
[u'polic', u'probe', u'fatal', u'ultralight', u'accid']
[u'polic', u'probe', u'northern', u'opal', u'heist']
[u'polic', u'probe', u'overnight', u'alic', u'stab']
[u'polic', u'widen', u'search', u'miss']
[u'poor', u'condit', u'delay', u'rescu', u'injur', u'yachtsman']
[u'porteous', u'case', u'hear', u'melbourn']
[u'port', u'question', u'secur', u'card', u'cost']
[u'portug', u'get', u'glimps', u'eclips']
[u'power', u'restor', u'northern']
[u'princ', u'odonnel', u'name', u'kangaroo', u'squad']
[u'princ', u'upset', u'kangaroo', u'omiss']
[u'privat', u'disabl', u'carer', u'threaten', u'industri']
[u'rain', u'caus', u'wellington', u'overflow']
[u'rain', u'offer', u'riverland', u'farmer', u'hope', u'crucial']
[u'rampant', u'chelsea', u'demolish', u'liverpool']
[u'real', u'brazilian', u'overwhelm', u'mallorca']
[u'region', u'doctor', u'travel', u'subsidi', u'boost']
[u'resort', u'say', u'overal', u'snow', u'season', u'good']
[u'retir', u'villag', u'plan', u'shape']
[u'review', u'find', u'fault', u'hervey', u'treatment']
[u'riverina', u'theatr', u'compani', u'lose', u'fund']
[u'roar', u'uruguayan', u'stand']
[u'rural', u'doctor', u'medicar', u'overhaul']
[u'govt', u'push', u'water', u'purchas', u'murray', u'plan']
[u'hospit', u'standbi', u'bali', u'victim']
[u'second', u'dairi', u'compani', u'increas', u'milk', u'price']
[u'second', u'gungahlin', u'petrol', u'station', u'year', u'away']
[u'south', u'east', u'water', u'restrict', u'intensifi']
[u'space', u'tourist', u'dock']
[u'spend', u'parliament', u'tour', u'money', u'health', u'liber']
[u'state', u'converg', u'saleyard', u'cabinet', u'meet']
[u'stem', u'cell', u'polici', u'risk', u'brain', u'drain', u'stanhop']
[u'stopwork', u'disrupt', u'centrelink', u'servic']
[u'storm', u'littl', u'eas', u'water', u'storag', u'woe']
[u'strong', u'month', u'loom', u'gold', u'coast', u'tourism']
[u'strong', u'wind', u'hamper', u'gippsland', u'firefight']
[u'suicid', u'bomber', u'blame', u'bali', u'attack']
[u'sydney', u'bus', u'secur', u'upgrad']
[u'teacher', u'attack', u'give', u'indefinit', u'sentenc']
[u'teen', u'die', u'gippsland', u'mishap']
[u'tender', u'close', u'cloncurri', u'river']
[u'terrorist', u'attack', u'rumour', u'inevit', u'say']
[u'thoma', u'see', u'china', u'space', u'power']
[u'thousand', u'narromin']
[u'tiger', u'fevola']
[u'toddler', u'surviv', u'snake', u'bite']
[u'tourist', u'ignor', u'dolphin', u'feed']
[u'tourist', u'warn', u'croc', u'sight']
[u'townsvill', u'face', u'child', u'porn', u'charg']
[u'train', u'derail', u'kill', u'india']
[u'travel', u'alert', u'terrorist', u'bali', u'busi']
[u'tripodi', u'highway', u'stanc', u'puzzl', u'gilmor']
[u'kill', u'bangladesh', u'court', u'bomb']
[u'union', u'question', u'rail', u'staff', u'plan']
[u'union', u'warn', u'chang', u'threaten', u'australian']
[u'check', u'captur', u'marin', u'iraq']
[u'general', u'talk', u'iraq', u'prospect']
[u'playwright', u'august', u'wilson', u'die']
[u'tourist', u'boat', u'accid', u'leav', u'dead']
[u'vandal', u'target', u'perth', u'cenotaph']
[u'viduka', u'schwarzer', u'doubt', u'socceroo']
[u'visitor', u'number', u'fall', u'resort']
[u'opposit', u'look', u'lift', u'resourc', u'sector']
[u'water', u'shortag', u'river', u'impact', u'worri', u'catchment', u'group']
[u'websit', u'connect', u'tasmanian', u'health', u'initi']
[u'western', u'get', u'land', u'protect', u'offic']
[u'western', u'har', u'racer', u'set', u'world', u'record']
[u'whitnal', u'fevola', u'centr', u'trade']
[u'woman', u'airlift', u'scene', u'mountain', u'fall']
[u'woman', u'charg', u'crash', u'taxi']
[u'woman', u'stabl', u'condit', u'mountain', u'fall']
[u'women', u'warn', u'sydney', u'assault', u'threat']
[u'work', u'start', u'marina', u'expans']
[u'wound', u'aussi', u'vulner', u'lara']
[u'chines', u'evacu', u'floodwat', u'rise']
[u'trap', u'latest', u'chines', u'accid']
[u'abba', u'ask', u'appoint', u'govt']
[u'abetz', u'moot', u'wide', u'rang', u'elector', u'reform']
[u'cop', u'critic', u'draw']
[u'agforc', u'welcom', u'govt', u'nlis', u'fund']
[u'ainsli', u'resid', u'discuss', u'plan', u'develop']
[u'arrest', u'zimbabw', u'blitz']
[u'qaeda', u'call', u'iraq', u'attack', u'ramadan']
[u'aquif', u'plan', u'feedback', u'prove', u'posit']
[u'aussi', u'cancel', u'bali', u'trip']
[u'aussi', u'soldier', u'hurt', u'afghan', u'clash']
[u'aussi', u'nobel', u'prize']
[u'aust', u'promis', u'bali']
[u'australian', u'bird', u'team', u'bind', u'indonesia']
[u'australian', u'bird', u'vaccin', u'trial', u'begin']
[u'australia']
[u'author', u'conduct', u'saleyard', u'counter', u'terror']
[u'award', u'trick', u'pat']
[u'bali', u'blast', u'long', u'term', u'impact', u'hard', u'predict']
[u'bali', u'polic', u'play', u'inquiri', u'progress']
[u'bali', u'resort', u'plan', u'abandon', u'bomb']
[u'bali', u'shrapnel', u'wound', u'consist']
[u'bali', u'travel', u'advic', u'updat']
[u'bali', u'video', u'maker', u'ident', u'reveal']
[u'bashir', u'condemn', u'bali', u'attack']
[u'bendigo', u'bank', u'chief', u'begin', u'nation', u'tour']
[u'best', u'intens', u'care', u'kidney', u'infect']
[u'chang', u'plan', u'marron', u'fisheri']
[u'bomb', u'victim', u'face', u'repeat', u'surgeri']
[u'bomb', u'victim', u'remain', u'singapor', u'hospit']
[u'bomb', u'maker', u'high', u'prioriti', u'bali', u'probe']
[u'bomb', u'shrapnel', u'victim', u'stay', u'darwin', u'hospit']
[u'boswel', u'oppos', u'voluntari', u'vote']
[u'busi', u'welcom', u'river', u'scheme', u'agreement']
[u'cabbi', u'protest', u'train', u'demand']
[u'calvari', u'hospit', u'chief', u'promis', u'improv', u'bill']
[u'maker', u'urg', u'explor', u'green', u'option']
[u'cartwright', u'excit', u'laffranchi']
[u'cccs', u'come', u'scrutini']
[u'centrelink', u'employe', u'industri', u'action']
[u'centrelink', u'servic', u'unaffect', u'industri', u'action']
[u'china', u'tighten', u'internet', u'control']
[u'citi', u'take', u'visitor', u'centr']
[u'clown', u'help', u'patient', u'annoy', u'doctor']
[u'coach', u'hop', u'laffranchi', u'experi']
[u'coal', u'termin', u'declar', u'signific', u'project']
[u'comedian', u'ronni', u'barker', u'die']
[u'communiti', u'surpris', u'develop', u'commiss']
[u'concern', u'air', u'sober', u'centr', u'futur']
[u'coonan', u'put', u'telstra', u'servic', u'chang', u'rule']
[u'coraki', u'golf', u'club', u'break']
[u'costello', u'enter', u'betfair', u'fray']
[u'council', u'elect', u'deal', u'claim', u'worri', u'mayor']
[u'council', u'face', u'legal', u'action', u'subdivis']
[u'council', u'like', u'approv', u'brothel']
[u'council', u'offer', u'effluent', u'pond', u'assur']
[u'council', u'give', u'time', u'properti', u'valu', u'restructur']
[u'council', u'tough', u'skateboard']
[u'cowra', u'wood', u'water']
[u'croc', u'attack', u'girl', u'stabl', u'condit']
[u'crop', u'dust', u'pilot', u'surviv', u'midair']
[u'cultur', u'belief', u'hinder', u'breast', u'cancer', u'treatment']
[u'dalbi', u'mayor', u'hop', u'power', u'station', u'approv']
[u'davenport', u'hail', u'phenomen', u'clijster']
[u'dear', u'bank', u'million', u'pound']
[u'defenc', u'order', u'enter', u'plea', u'rise', u'case']
[u'depardieu', u'headbutt', u'italian', u'photograph']
[u'dfat', u'travel', u'warn', u'inadequ', u'labor']
[u'attack', u'put', u'ellalong', u'hospit']
[u'drink', u'drive', u'number', u'worri', u'polic']
[u'drug', u'scheme', u'reach', u'gold', u'coast']
[u'dubbo', u'council', u'claim', u'refer', u'minist']
[u'emerg', u'worker', u'protest', u'super', u'chang']
[u'england', u'confid', u'deliv', u'sven']
[u'environment', u'scientist', u'win', u'women', u'award']
[u'wont', u'formal', u'saleyard', u'assess']
[u'exercis', u'lower', u'alzheim', u'risk', u'research', u'find']
[u'minist', u'alan', u'wood', u'die']
[u'eyr', u'peninsula', u'fire', u'suspect', u'plead', u'guilti']
[u'farmer', u'trial', u'apricot', u'plum', u'cross']
[u'fear', u'rais', u'australian', u'wing']
[u'feder', u'state', u'deal', u'put', u'train', u'program']
[u'floriad', u'draw', u'record', u'crowd']
[u'hurt', u'head', u'crash', u'near', u'orang']
[u'freddi', u'fever', u'grip', u'australia']
[u'googl', u'plan', u'francisco', u'wireless']
[u'govt', u'aim', u'cattl', u'cost']
[u'govt', u'audit', u'focus', u'water', u'save']
[u'govt', u'ax', u'multicultur', u'affair', u'advisori', u'council']
[u'govt', u'grant', u'fail', u'address', u'ongo', u'afford']
[u'govt', u'help', u'seek', u'local', u'oyster', u'farmer']
[u'govt', u'beat', u'mine', u'despit', u'closur']
[u'govt', u'urg', u'boost', u'land', u'polic', u'number']
[u'govt', u'urg', u'help', u'stop', u'forest', u'log']
[u'group', u'maintain', u'lake']
[u'group', u'rais', u'rural', u'depress', u'awar']
[u'grow', u'land', u'valu', u'rais', u'revenu']
[u'complet', u'south', u'korean', u'doubl']
[u'helicopt', u'blade', u'fractur', u'man', u'skull']
[u'hervey', u'famili', u'continu', u'bali', u'holiday']
[u'hindmarsh', u'rule', u'nation']
[u'hold', u'phone', u'crow', u'host', u'afi']
[u'hope', u'plan', u'fuel', u'region', u'tourism']
[u'hoteli', u'discuss', u'smoke', u'ban', u'hobart']
[u'weather', u'prompt', u'bushfir', u'season', u'warn']
[u'howard', u'rule', u'voluntari', u'vote']
[u'howard', u'discuss', u'indonesia']
[u'hydrogen', u'realiti', u'year']
[u'indefinit', u'sentenc', u'draw', u'civil', u'libertarian']
[u'indigen', u'group', u'urg', u'health', u'model', u'chang']
[u'indonesian', u'polic', u'launch', u'public', u'blitz']
[u'indonesia', u'fuel', u'price', u'rise', u'hit', u'cattl', u'demand']
[u'internet', u'robust', u'think']
[u'inverel', u'council', u'consid', u'gaol']
[u'disput', u'wont', u'affect', u'payment', u'centrelink', u'say']
[u'junior', u'doctor', u'supervis', u'inquiri', u'tell']
[u'katherin', u'initi', u'target', u'domest', u'violenc']
[u'kewel', u'come', u'bench', u'jamaica']
[u'knight', u'john', u'buderus', u'join', u'kangaroo']
[u'labor', u'faction', u'caus', u'damag']
[u'land', u'seek', u'disabl', u'respit', u'unit']
[u'liber', u'look', u'exclud', u'certain', u'voter', u'beazley']
[u'lismor', u'council', u'urg', u'rodeo']
[u'littl', u'rain', u'mean', u'summer', u'water', u'restrict']
[u'local', u'govern', u'review']
[u'macquari', u'float', u'media', u'fund']
[u'charg', u'bowravill']
[u'court', u'policeman', u'incid']
[u'face', u'court', u'woman', u'assault']
[u'market', u'ignor', u'widen', u'trade', u'deficit']
[u'marshal', u'halatau', u'nation']
[u'mayor', u'back', u'polic', u'chrome', u'power']
[u'mayor', u'claim', u'polit', u'influenc', u'highway']
[u'mayor', u'see', u'cape', u'york', u'benefit']
[u'beat', u'headquart']
[u'mclaren', u'appear', u'roar']
[u'mclaren', u'appear', u'roar']
[u'melbourn', u'academ', u'win', u'scienc', u'prize']
[u'miner', u'accus', u'let', u'communiti']
[u'minist', u'council', u'remain', u'odd', u'sport', u'fund']
[u'minist', u'wont', u'rule', u'canola', u'trial']
[u'reliev', u'hurt', u'bali', u'blast']
[u'time', u'lobster', u'fisher', u'vote']
[u'rais', u'doubt', u'plan', u'health', u'chang']
[u'shed', u'light', u'road', u'safeti', u'plan']
[u'want', u'windfal', u'spend', u'pacif', u'highway']
[u'multicultur', u'council', u'import', u'chair', u'say']
[u'face', u'join', u'cabinet']
[u'obstetrician', u'eas', u'gawler', u'concern']
[u'nichol', u'oval', u'reopen', u'follow', u'improv', u'rain']
[u'nicotin', u'beer']
[u'nobel', u'physic', u'prize', u'honour', u'optic', u'pioneer']
[u'guarante', u'beef', u'expo', u'stay', u'rockhampton']
[u'voluntari', u'vote']
[u'nrma', u'highlight', u'need', u'pacif', u'highway', u'attent']
[u'charg', u'alic', u'spring', u'stab']
[u'opposit', u'play', u'aborigin', u'leasehold', u'chang']
[u'opposit', u'outlin', u'plan', u'tackl', u'skill']
[u'orang', u'school', u'teacher', u'aust', u'bali']
[u'pair', u'guilti', u'father', u'murder']
[u'patrol', u'net', u'reef', u'fish', u'breach']
[u'polic', u'continu', u'countri', u'road', u'crackdown']
[u'polic', u'frustrat', u'breath', u'test', u'read']
[u'polic', u'hope', u'identifi', u'bali', u'bomber']
[u'polic', u'investig', u'armi', u'recruit', u'gang', u'rape']
[u'polic', u'charg', u'drug', u'raid']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'probe', u'fatal', u'crash', u'stab']
[u'polic', u'record', u'weekend', u'speed', u'driver']
[u'polic', u'seek', u'help', u'follow', u'man', u'disappear']
[u'polic', u'investig', u'asio', u'leak', u'activist']
[u'polic', u'road', u'crash', u'victim']
[u'priest', u'petit', u'vatican', u'marriag', u'right']
[u'public', u'urg', u'manag', u'plan']
[u'public', u'urg', u'watch', u'turtl']
[u'anti', u'terror', u'campaign', u'target', u'public']
[u'question', u'remain', u'breast', u'screen', u'locat']
[u'rathbon', u'doubt', u'wallabi', u'tour']
[u'recheck', u'properti', u'valu', u'urg', u'ombudsman']
[u'remot', u'communiti', u'receiv', u'defibril']
[u'research', u'work', u'bird', u'vaccin']
[u'announc', u'share', u'offer']
[u'tinto', u'step', u'iron', u'search']
[u'road', u'widen', u'plan', u'trigger', u'green', u'fear']
[u'sawmil', u'propon', u'hear', u'object', u'hand']
[u'second', u'charg', u'liverpool', u'stab']
[u'select', u'harvest', u'south', u'sister', u'site', u'resum']
[u'senat', u'mull', u'bali', u'condol', u'motion']
[u'shire', u'accus', u'govt', u'cost', u'shift']
[u'shire', u'back', u'insur', u'scheme']
[u'shire', u'consult', u'bali', u'blast', u'victim', u'famili']
[u'showground', u'share', u'fund']
[u'organis', u'turn', u'spotlight', u'away', u'brawl']
[u'small', u'busi', u'group', u'hit', u'propos', u'merger']
[u'speaker', u'call', u'central', u'qlder', u'watch']
[u'strategi', u'consid', u'south', u'coast', u'develop', u'issu']
[u'support', u'servic', u'offer', u'church', u'communiti']
[u'suspect', u'hold', u'bali', u'bomb']
[u'tait', u'injuri', u'expos', u'bowl', u'depth']
[u'tanami', u'gold', u'plan', u'great', u'sandi', u'desert', u'project']
[u'telstra', u'sale', u'haunt', u'nation', u'report']
[u'tenni', u'snare', u'prime', u'time', u'coverag']
[u'thoma', u'terror', u'trial', u'night']
[u'kill', u'baghdad', u'bomb', u'blast']
[u'tiger', u'apologis', u'post', u'match', u'explet']
[u'timbercorp', u'sell', u'loxton', u'citrus', u'orchard']
[u'tourism', u'group', u'see', u'benefit', u'nation', u'park']
[u'tourist', u'need', u'educ', u'croc', u'risk']
[u'tour', u'switzerland', u'rural', u'report']
[u'trade', u'deficit', u'hit', u'billion']
[u'travel', u'agent', u'say', u'bali', u'blast', u'deter']
[u'travel', u'agent', u'expect', u'bali', u'trip', u'cancel']
[u'troppo', u'season', u'hit']
[u'truss', u'seek', u'evalu', u'tasmanian', u'rail', u'option']
[u'detain', u'bali', u'blast']
[u'detain', u'bali', u'bomb']
[u'arrest', u'mccartney', u'murder', u'ireland']
[u'health', u'worker', u'lure']
[u'urg', u'speed', u'hick', u'citizenship']
[u'decid', u'strength', u'afghanistan', u'deploy']
[u'warn', u'loom', u'malawi', u'famin']
[u'worker', u'shoot', u'dead', u'somalia']
[u'vermuelen', u'baylisss', u'seat', u'phillip', u'island']
[u'govt', u'timber', u'loss']
[u'victoria', u'reform', u'homicid', u'law']
[u'famili', u'return', u'home', u'lucki', u'escap']
[u'walk', u'sand', u'tradit', u'owner', u'urg']
[u'watt', u'trade', u'kilda']
[u'weekend', u'crime', u'keep', u'polic', u'busi']
[u'weekend', u'drink', u'drive', u'worri', u'polic']
[u'western', u'tasmania', u'defi', u'weather', u'trend']
[u'white', u'look', u'world', u'spin']
[u'whitsunday', u'place', u'fifth', u'nation', u'competit']
[u'widow', u'yacht', u'club', u'race', u'death']
[u'woman', u'plead', u'guilti', u'drug', u'charg']
[u'woodsid', u'decis', u'upset', u'busi']
[u'world', u'play', u'spinner']
[u'yachtsmen', u'thank', u'rescuer', u'bass', u'strait', u'ordeal']
[u'zimbabw', u'track', u'clear', u'debt', u'report']
[u'submiss', u'gbrmpa', u'review']
[u'alloc', u'tackl', u'indigen', u'domest', u'violenc']
[u'academ', u'predict', u'bali', u'blast', u'trade']
[u'govt', u'readi', u'lodg', u'jail', u'develop']
[u'launch', u'centenari', u'logo', u'competit']
[u'adelaid', u'toppl', u'tiger', u'thriller']
[u'tribun', u'review']
[u'plan', u'auckland', u'adelaid', u'flight']
[u'alic', u'woman', u'jail', u'kill', u'husband']
[u'back', u'bodi', u'theft', u'claim', u'investig']
[u'anim', u'liber', u'criticis', u'rodeo']
[u'anti', u'log', u'protest', u'stage', u'tree', u'campaign']
[u'anti', u'terror', u'law', u'right', u'risk', u'fraser']
[u'aquat', u'centr', u'budget', u'expect', u'blow']
[u'armi', u'wont', u'comment', u'rape', u'claim']
[u'aussi', u'cruis', u'victori', u'world']
[u'aussi', u'world']
[u'australia', u'council', u'region', u'fund']
[u'australia', u'dockland']
[u'arriv', u'polic', u'famili', u'feud']
[u'bakhtiari', u'boy', u'seek', u'return', u'australia']
[u'bali', u'bomb', u'conspir', u'want', u'latest', u'blast']
[u'bali', u'bomb', u'hunt', u'widen']
[u'bali', u'bomb', u'injur', u'continu', u'recoveri', u'singapor']
[u'bali', u'paus', u'prayer', u'hunt', u'widen']
[u'bali', u'victim', u'recal', u'bomb', u'blast']
[u'bali', u'victim', u'return', u'home']
[u'bateman', u'bali', u'victim', u'home']
[u'beazley', u'urg', u'govt', u'step', u'border', u'control']
[u'bennett', u'will', u'risk', u'hindmarsh']
[u'billiton', u'reopen', u'illawarra', u'coal']
[u'bird', u'kill', u'seventh', u'indonesian']
[u'bodi', u'theft', u'claim', u'forens']
[u'bomb', u'victim', u'head', u'home']
[u'breach', u'prompt', u'leap', u'procedur', u'chang']
[u'bridgetown', u'greenbush', u'resid', u'face', u'rate', u'rise']
[u'brisban', u'host', u'asia', u'pacif', u'bird', u'summit']
[u'brother', u'monitor', u'bali', u'blast', u'victim', u'condit']
[u'build', u'approv', u'fall', u'surpris', u'economist']
[u'build', u'face', u'categori', u'cyclon', u'test']
[u'bush', u'seek', u'right', u'militari', u'enforc', u'bird']
[u'busi', u'fear', u'shop', u'complex', u'impact']
[u'busi', u'group', u'tout', u'cctv', u'levi']
[u'dementia', u'strategi']
[u'calm', u'schoolgirl', u'help', u'polic', u'quick', u'arrest']
[u'canadian', u'minist', u'grill', u'pizza', u'expens']
[u'cazali', u'defend', u'iron', u'action']
[u'cctv', u'review', u'find', u'govern', u'cooper', u'lack']
[u'china', u'record', u'mine', u'accid', u'day']
[u'church', u'speak', u'compo', u'offer', u'reject']
[u'colleg', u'work', u'gaol', u'plan']
[u'communiti', u'group', u'share', u'poki', u'revenu']
[u'copper', u'miner', u'sign', u'cooper', u'agreement', u'deal']
[u'costello', u'meet', u'ballarat', u'group', u'bypass', u'fund']
[u'coughlin', u'confirm', u'sydney', u'meet']
[u'council', u'look', u'secur', u'naracoort', u'railway', u'land']
[u'councillor', u'defend', u'develop', u'vote', u'amidst']
[u'council', u'reject', u'station', u'plan']
[u'court', u'protect', u'dolphin', u'stun', u'feeder']
[u'court', u'punish', u'servic', u'fraud']
[u'court', u'rule', u'open', u'door', u'deport', u'payout']
[u'court', u'hear', u'quadripleg', u'damag', u'claim']
[u'criminologist', u'hit', u'propos', u'elector']
[u'custom', u'seiz', u'illeg', u'weapon']
[u'databas', u'help', u'polic', u'clean', u'crime']
[u'debat', u'continu', u'merit', u'region']
[u'debat', u'continu', u'wheatbelt', u'scienc', u'academi']
[u'defenc', u'forc', u'perman', u'court']
[u'demon', u'pickett']
[u'test', u'identifi', u'year', u'old', u'rapist']
[u'downer', u'lobbi', u'indonesia']
[u'decid', u'catt', u'retrial']
[u'dream', u'holiday', u'tear', u'apart', u'terror']
[u'drink', u'drive', u'rat', u'worri', u'polic']
[u'driver', u'warn', u'fuel', u'price', u'respit', u'soon']
[u'drug', u'drive', u'worri', u'polic']
[u'dubbo', u'mayor', u'concern', u'council', u'polit']
[u'jail', u'kidnap', u'tortur', u'flatmat']
[u'earli', u'morn', u'toll', u'mccrossin']
[u'electr', u'fault', u'spark', u'hospit']
[u'emerg', u'servic', u'hold', u'hope', u'miss']
[u'emerg', u'worker', u'protest', u'superannu', u'chang']
[u'england', u'cole', u'world', u'qualifi']
[u'health', u'servic', u'chief', u'join', u'indigen', u'health']
[u'policeman', u'jail', u'dole', u'program', u'fraud']
[u'expo', u'offer', u'student', u'career', u'option']
[u'extra', u'polic', u'quell', u'kalumburu', u'riot']
[u'fall', u'build', u'approv']
[u'fallon', u'bail', u'march']
[u'famili', u'identifi', u'bali', u'bomber']
[u'farmer', u'aerial', u'bait', u'trial']
[u'fear', u'financ', u'woe', u'affect', u'health', u'servic']
[u'care', u'facil', u'worker', u'face', u'abus', u'charg']
[u'lewi', u'staffer', u'face', u'court', u'crimin']
[u'forum', u'focus', u'holiday', u'let']
[u'sentenc', u'death', u'musharraf', u'plot']
[u'french', u'chemist', u'nobel', u'carbon', u'danc']
[u'fruit', u'grower', u'embrac', u'sticker']
[u'fuel', u'price', u'committe', u'inspect', u'ethanol', u'plant']
[u'girl', u'tell', u'croc', u'attack']
[u'girl', u'tell', u'escap', u'croc', u'jaw']
[u'gladston', u'coal', u'port', u'expans', u'show', u'faith']
[u'goodnight']
[u'googl', u'microsoft', u'offic']
[u'goulburn', u'prepar', u'summer']
[u'govern', u'brothel', u'flip']
[u'govt', u'detail', u'indigen', u'leas', u'plan']
[u'govt', u'silenc', u'bashir', u'labor']
[u'govt', u'ask', u'collect', u'larg', u'ghost', u'net']
[u'govt', u'publicis', u'park', u'price']
[u'green', u'seek', u'inquiri', u'suppli']
[u'growth', u'slow', u'servic', u'sector']
[u'health', u'probe', u'hear', u'patient']
[u'hewitt', u'nadal', u'confirm', u'sydney', u'intl']
[u'highway', u'clear', u'truck', u'crash']
[u'case', u'set', u'legal', u'preced']
[u'hop', u'award', u'boost', u'scienc', u'teacher', u'profil']
[u'illeg', u'brothel', u'claim', u'worri', u'shepparton', u'council']
[u'independ', u'concern', u'cloud', u'militari', u'justic']
[u'indigen', u'land', u'reform', u'govt']
[u'indonesian', u'polic', u'silent', u'progress', u'bomb']
[u'indonesian', u'remand', u'custodi', u'fish', u'charg']
[u'ingal', u'hunt', u'ambros', u'panorama']
[u'injur', u'bali', u'survivor', u'reunit', u'famili']
[u'inquiri', u'clear', u'booki', u'illeg', u'betfair']
[u'rat', u'unchang']
[u'iraq', u'turn', u'constitut', u'vote', u'rule']
[u'japanes', u'win', u'court', u'case', u'shrine']
[u'jone', u'england', u'tour', u'pakistan']
[u'land', u'valuat', u'good']
[u'lara', u'get', u'green', u'light', u'sponsor', u'resolv']
[u'late', u'tanker', u'jeopardis', u'fuel', u'suppli']
[u'liber', u'continu', u'voluntari', u'vote', u'debat']
[u'lift', u'childcar', u'subsidi', u'twos']
[u'charg', u'fatal', u'melbourn', u'stab']
[u'savag', u'dog']
[u'charg', u'chainsaw', u'threat']
[u'mayor', u'say', u'bypass', u'delay', u'mean', u'road', u'death']
[u'mayor', u'urg', u'long', u'term', u'contract']
[u'mechan', u'deni', u'take', u'shortcut', u'king']
[u'meet', u'address', u'greenough', u'geraldton', u'merger']
[u'meteorologist', u'tri', u'warn', u'race', u'organis']
[u'minist', u'council', u'clash', u'silverdom', u'fund']
[u'minist', u'help', u'progress', u'woodchip', u'plan']
[u'minist', u'say', u'review', u'start', u'council', u'merger']
[u'minist', u'pulp', u'decis']
[u'mother', u'meet', u'matern', u'servic', u'worri']
[u'angri', u'highway', u'safeti', u'sign', u'vandal']
[u'back', u'council', u'develop', u'warn']
[u'murder', u'arm', u'robber', u'fight', u'stay']
[u'mysteri', u'ill', u'claim', u'live', u'toronto']
[u'nation', u'defend', u'farmer', u'river', u'salin']
[u'nauruan', u'weightlift', u'trial', u'prostitut']
[u'newcastl', u'injur', u'treat', u'singapor']
[u'frigat', u'toowoomba', u'head', u'brisban']
[u'fund', u'eas', u'public', u'hospit', u'workload']
[u'orlean', u'administr', u'cut', u'job']
[u'secur', u'year', u'phase', u'chang']
[u'prosecut', u'illeg', u'river', u'open']
[u'norco', u'consid', u'milk', u'price', u'rise']
[u'govt', u'reject', u'revenu', u'fuel']
[u'olymp', u'swim', u'coach', u'face', u'charg']
[u'onesteel', u'accus', u'bulli', u'worker']
[u'oper', u'issu', u'delay', u'dedic', u'road', u'traffic']
[u'oppn', u'call', u'public', u'debat', u'propos', u'elector']
[u'opposit', u'quiz', u'govt', u'water', u'bomber', u'reject']
[u'opposit', u'birth', u'servic', u'claim']
[u'option', u'narrow', u'upgrad']
[u'orang', u'water', u'restrict', u'scale']
[u'overhaul', u'militari', u'justic']
[u'owen', u'want', u'stay']
[u'palm', u'death', u'custodi', u'inquest', u'resum']
[u'palm', u'hear', u'adjourn']
[u'paramed', u'like', u'accept', u'offer']
[u'parole', u'plead', u'guilti', u'kill', u'cousin', u'crash']
[u'patel', u'patient', u'invit', u'submit', u'compo', u'claim']
[u'perth', u'teacher', u'scientist', u'scienc', u'prize']
[u'philippin', u'deni', u'bali', u'bomber', u'train', u'soil']
[u'plan', u'indigen', u'divers', u'centr', u'worri']
[u'polic', u'arrest', u'drug', u'theft']
[u'polic', u'arrest', u'long', u'drug', u'oper']
[u'polic', u'releas', u'long', u'weekend', u'western', u'traffic', u'figur']
[u'pollock', u'pressur', u'white']
[u'pont', u'buy', u'underdog']
[u'rare', u'kimberley', u'lamb']
[u'rescu', u'yacht', u'reach', u'east', u'coast']
[u'resid', u'concern', u'help', u'council', u'reject', u'shed', u'plan']
[u'resid', u'pluck', u'chicken', u'farm', u'land']
[u'rice', u'grower', u'support', u'restructrur', u'plan']
[u'rush', u'launch', u'heritag', u'award']
[u'saddam', u'defenc', u'team', u'money', u'lawyer']
[u'govt', u'urg', u'offer', u'fuel', u'price', u'respit']
[u'scientist', u'look', u'boost', u'reef', u'water', u'qualiti']
[u'scientist', u'work', u'pay']
[u'secur', u'firm', u'upset', u'crime', u'clean', u'snub']
[u'abus', u'survivor', u'speak', u'townsvill']
[u'abus', u'victim', u'reject', u'church', u'payout']
[u'sheep', u'meat', u'processor', u'consid', u'peta', u'talk']
[u'silvagni', u'join', u'bulldog']
[u'sister', u'citi', u'committe', u'win', u'award', u'china', u'effort']
[u'soldier', u'evict', u'ugandan', u'rebel', u'northern']
[u'southern', u'river', u'water', u'salti']
[u'space', u'trek', u'dream', u'come', u'true', u'tourist']
[u'srebrenica', u'massacr', u'list', u'name', u'troop']
[u'staff', u'cut', u'plan', u'defenc', u'command', u'centr']
[u'stan', u'downgrad', u'mexico', u'cross']
[u'stripe', u'rust', u'hit', u'grain', u'farmer']
[u'studi', u'evalu', u'pacif', u'nation', u'fund', u'demand']
[u'super', u'newcom', u'home', u'start']
[u'swimmer', u'warn', u'stinger', u'threat']
[u'tasmania', u'join', u'scheme', u'improv', u'teach', u'skill']
[u'teacher', u'speak', u'outcom', u'base', u'educ']
[u'teacher', u'stop', u'work', u'support', u'centr', u'inact']
[u'teen', u'stab', u'school', u'scuffl']
[u'teen', u'star', u'lohan', u'hospit', u'crash']
[u'telstra', u'result', u'stand', u'test', u'time', u'switkowski']
[u'thousand', u'flock', u'elmor', u'field', u'day']
[u'tilt', u'train', u'crash', u'report', u'recommend', u'speed', u'limit']
[u'toowoomba', u'nation', u'livestock', u'diseas', u'test']
[u'tourism', u'group', u'reflect', u'bali', u'blast', u'travel', u'impact']
[u'tradit', u'owner', u'allow', u'leas', u'land']
[u'traffic', u'offic', u'lose', u'licenc', u'drink', u'drive']
[u'truck', u'driver', u'charg', u'child', u'death', u'freeway']
[u'highway', u'crash']
[u'spotter', u'swap', u'tale']
[u'uniform', u'approach', u'need', u'fraud', u'cyber', u'terror']
[u'market', u'lower', u'stormi', u'trade']
[u'vandal', u'attack', u'bali', u'bomb', u'memori']
[u'upset', u'lack', u'water', u'chang', u'consult']
[u'wall', u'volatil', u'spark', u'market', u'dive']
[u'water', u'corpor', u'post', u'record', u'profit']
[u'western', u'adopt', u'tourism', u'volunt', u'plan']
[u'west', u'indi', u'hand', u'welcom', u'cash', u'boost']
[u'whitnal', u'remain', u'blue']
[u'wimmera', u'meet', u'hear', u'crop', u'fear']
[u'worker', u'tackl', u'indigen', u'substanc', u'abus']
[u'workplac', u'privaci', u'law', u'overhaul', u'recommend']
[u'zinifex', u'smelter', u'turn', u'natur']
[u'polic', u'face', u'action', u'photo', u'leak']
[u'board', u'promot', u'gallagh']
[u'aborigin', u'site', u'protect']
[u'account', u'firm', u'review', u'fund']
[u'aerodrom', u'leas', u'wont', u'extend']
[u'afghanistan', u'releas', u'elect', u'result']
[u'qaeda', u'post', u'week', u'news', u'bulletin']
[u'anderson', u'clear', u'elect', u'bribe', u'claim']
[u'anim', u'liber', u'group', u'fight', u'chicken', u'farm', u'plan']
[u'ansar', u'sunna', u'post', u'behead', u'iraqi', u'spi']
[u'apra', u'slap', u'directorship', u'chair']
[u'arrest', u'calm', u'death', u'court', u'hear']
[u'attorney', u'general', u'pledg', u'brothel', u'crackdown']
[u'stockmarket', u'follow', u'wall', u'street', u'dive']
[u'australia', u'meddl', u'bashir', u'sentenc']
[u'australian', u'market', u'plung', u'continu']
[u'author', u'probe', u'possibl', u'dump']
[u'bali', u'blast', u'survivor', u'face', u'infect', u'risk']
[u'bali', u'bomb', u'victim', u'recuper']
[u'bali', u'victim', u'honour', u'canberra']
[u'bank', u'fall', u'surrealist', u'sting', u'mastermind', u'escap']
[u'bathurst', u'practic', u'begin', u'today']
[u'beatrix', u'potter', u'farm', u'sale', u'spark', u'protest']
[u'betfair', u'defend', u'inquiri', u'evid']
[u'biofuel', u'plant', u'put', u'order', u'tonn']
[u'blast', u'near', u'iraq', u'ministri', u'kill']
[u'blue', u'chip', u'firm', u'fight', u'contract', u'secret']
[u'bonker', u'rider', u'set', u'cycl', u'record']
[u'charg', u'anim', u'cruelti', u'death']
[u'brannen', u'play', u'nude', u'photo', u'scandal']
[u'brisban', u'threat', u'eas']
[u'british', u'museum', u'free', u'return', u'indigen', u'remain']
[u'bunburi', u'hous', u'crisi', u'worsen', u'welfar']
[u'calvi', u'murder', u'trial', u'open', u'year']
[u'campaign', u'chicken', u'litter', u'power', u'station']
[u'campbel', u'book', u'coolum', u'date']
[u'campbel', u'confirm', u'coolum']
[u'cannabi', u'cash', u'seiz', u'pull']
[u'bomb', u'explod', u'lankan', u'capit']
[u'carpent', u'shortag', u'highlight', u'skill', u'crisi', u'labor']
[u'cashcard', u'index', u'rise']
[u'centacar', u'chief', u'question', u'bakhtiari', u'teen', u'critic']
[u'centrelink', u'custom', u'warn', u'expect', u'delay']
[u'centrelink', u'stop', u'work', u'caus', u'minim', u'disrupt']
[u'centrelink', u'worker', u'stop', u'work', u'negoti']
[u'chemic', u'scare', u'forc', u'evacu']
[u'child', u'critic', u'condit', u'fall']
[u'agent', u'escap', u'perform', u'review']
[u'order', u'chang', u'cloncurri', u'council']
[u'concern', u'dockland', u'surfac']
[u'council', u'order', u'reassess', u'power', u'line', u'applic']
[u'counsellor', u'offer', u'work', u'busi', u'propos']
[u'crackdown', u'plan', u'food', u'label', u'law']
[u'crew', u'battl', u'north', u'coast', u'fire']
[u'crocodil', u'victim', u'rememb', u'famili']
[u'croc', u'safari', u'rule']
[u'croc', u'fall', u'fifth', u'ladder']
[u'croc', u'studi', u'dive', u'beneath', u'surfac']
[u'cruis', u'holm', u'expect', u'babi']
[u'dadswel', u'bridg', u'fund', u'connect', u'water']
[u'debat', u'continu', u'deputi', u'mayor', u'allow']
[u'defenc', u'cutback', u'disappoint', u'mayor']
[u'disabl', u'seek', u'payment', u'prostitut', u'visit']
[u'discuss', u'begin', u'blueprint', u'bush']
[u'attack', u'prompt', u'muzzl', u'standard', u'rethink']
[u'dole', u'threat', u'rais', u'school', u'attend']
[u'doyl', u'whistleblow', u'claim']
[u'tip', u'beef', u'product', u'boost', u'sugar']
[u'driver', u'catch', u'speed', u'limit']
[u'dutch', u'govt', u'rethink', u'iraq', u'invas', u'support']
[u'ellison', u'deni', u'custom', u'ignor', u'illeg', u'fish']
[u'environment', u'group', u'aerial', u'bait']
[u'environment', u'group', u'oppos', u'arcadia', u'forest', u'log']
[u'eucalyptus', u'shoot', u'ahead', u'say', u'locat']
[u'expert', u'warn', u'bird', u'anti', u'viral', u'rush']
[u'famili', u'polic', u'leak', u'corps', u'photo']
[u'farmer', u'confid', u'salti', u'river', u'treat']
[u'farmer', u'warn', u'protect', u'stock', u'sheep', u'theft']
[u'feder', u'roddick', u'agassi', u'kooyong', u'classic']
[u'flanneri', u'warn', u'alic', u'heatwav']
[u'fonterra', u'rule', u'futur', u'restructur']
[u'food', u'wine', u'festiv']
[u'forest', u'storm', u'clean', u'top']
[u'policeman', u'consid', u'legal', u'action']
[u'policeman', u'jail', u'corrupt', u'burglari']
[u'accus', u'alleg', u'armi', u'gang', u'rape']
[u'fuel', u'shipment', u'shortag']
[u'german', u'beer', u'call', u'round']
[u'global', u'warm', u'spawn', u'femal', u'turtl', u'group']
[u'glori', u'frustrat', u'shaki', u'start', u'mcmahon']
[u'gordon', u'estat', u'meet', u'criticis']
[u'govt', u'blame', u'damn', u'glenelg', u'council', u'report']
[u'govt', u'criticis', u'croc', u'safari', u'decis']
[u'govt', u'go', u'court', u'stop', u'dolphin', u'feed']
[u'govt', u'pressur', u'gippsland', u'lake', u'entranc']
[u'govt', u'urg', u'inquiri', u'forens', u'centr']
[u'elder', u'patient', u'skill', u'need', u'report', u'say']
[u'haddin', u'readi', u'ditch', u'glove', u'chase', u'place']
[u'halatau', u'stress', u'commit']
[u'hardwar', u'store', u'owner', u'charg']
[u'helicopt', u'call', u'fight', u'brisban', u'blaze']
[u'hick', u'lawyer', u'threaten', u'legal', u'action']
[u'hiddink', u'flag', u'kewel', u'return']
[u'hill', u'defend', u'militari', u'justic', u'chang']
[u'histor', u'mine', u'build', u'add', u'heritag']
[u'homecom', u'newcastl', u'resid', u'wound', u'bali']
[u'hospit', u'lose', u'obstetrician', u'gynaecologist']
[u'huge', u'python', u'allig', u'death', u'match']
[u'hurrican', u'stan', u'death', u'toll', u'climb']
[u'immigr', u'treatment', u'solon', u'catastroph']
[u'indonesia', u'lower', u'bird', u'death', u'toll']
[u'inflat', u'worri', u'scare', u'investor']
[u'interject', u'leav', u'stott', u'despoja', u'tear']
[u'investig', u'begin', u'stab', u'incid']
[u'iran', u'accus', u'aid', u'iraq', u'insurg']
[u'iraq', u'sunni', u'threaten', u'constitut', u'boycott']
[u'irish', u'policeman', u'arrest', u'costum', u'caper']
[u'islam', u'council', u'condemn', u'law']
[u'jagger', u'dismiss', u'yoko', u'girlfriend', u'claim']
[u'jaqu', u'sign', u'worcestershir']
[u'jone', u'rule', u'defam', u'boss']
[u'land', u'council', u'welcom', u'petrol', u'sniff', u'inquiri']
[u'hand', u'hygien', u'blame', u'superbug', u'infect']
[u'leas', u'plan', u'wont', u'help', u'aborigin', u'oxfam', u'say']
[u'legal', u'technician']
[u'let', u'forum', u'yield', u'posit', u'result']
[u'process', u'train', u'product']
[u'long', u'time', u'councillor', u'retir', u'loddon', u'council']
[u'lownd', u'lead', u'bathurst', u'practic']
[u'charg', u'assault', u'girlfriend']
[u'charg', u'woman', u'assault']
[u'face', u'court', u'peirc', u'shoot']
[u'gaol', u'iron', u'attack']
[u'injur', u'polic', u'shoot']
[u'mcgrath', u'rest', u'second', u'dayer']
[u'meander', u'ahead', u'despit', u'limit', u'investor']
[u'memori', u'servic', u'hold', u'bali', u'victim']
[u'mildura', u'psych', u'pump', u'reopen']
[u'oper', u'reduct', u'nativ', u'timber']
[u'mine', u'compani', u'urg', u'address', u'skill', u'shortag']
[u'minist', u'call', u'great', u'lake', u'council', u'unit']
[u'minist', u'refus', u'respons', u'solon']
[u'miss', u'coupl', u'bodi', u'identifi', u'bali']
[u'miss', u'south', u'hedland']
[u'restat', u'govt', u'commit', u'wind', u'farm']
[u'mother', u'complain', u'astronaut', u'meet']
[u'move', u'reduc', u'highway', u'road', u'kill']
[u'muslim', u'leader', u'anti', u'terror', u'law']
[u'muslim', u'leader', u'support', u'anti', u'terror', u'legisl']
[u'nation', u'want', u'free', u'region', u'transport', u'comm']
[u'nativ', u'titl', u'deal', u'clear', u'irrig', u'scheme']
[u'nato', u'send', u'extra', u'troop', u'afghanistan']
[u'newcastl', u'bali', u'bomb', u'victim', u'improv']
[u'giant', u'coach', u'look', u'forward', u'season']
[u'guidelin', u'pave', u'wind', u'farm']
[u'land', u'right', u'law', u'littl', u'benefit']
[u'nickel', u'refineri', u'get', u'major', u'project', u'status']
[u'nikol', u'clear', u'ride', u'melbourn']
[u'question', u'rational', u'land', u'chang']
[u'north', u'coast', u'nation', u'park', u'prepar', u'season']
[u'offic', u'recognis', u'braveri']
[u'olymp', u'boss', u'sue', u'jone', u'defam']
[u'kill', u'western', u'helicopt', u'crash']
[u'onesteel', u'case', u'answer', u'dust']
[u'organis', u'hope', u'attend', u'launceston']
[u'head', u'cattl', u'regist']
[u'overdu', u'yacht']
[u'owner', u'welcom', u'recherch', u'log', u'approv']
[u'pacif', u'nation', u'set', u'rail', u'shutdown', u'deadlin']
[u'palestinian', u'investig', u'arafat', u'death']
[u'palm', u'island', u'hopeless', u'dysfunct']
[u'parliament', u'tell', u'brain', u'cancer', u'test', u'bungl']
[u'parmalat', u'resum', u'trade', u'milan', u'stock', u'market']
[u'patel', u'face', u'manslaught', u'charg']
[u'philippoussi', u'win']
[u'plan', u'applic', u'process', u'chang', u'welcom']
[u'playstat', u'modif', u'rule', u'legal']
[u'polic', u'escap', u'injuri', u'melbourn', u'blast']
[u'polic', u'investig', u'berri', u'theft']
[u'policeman', u'order', u'albani']
[u'polic', u'headquart']
[u'polic', u'probe', u'blaze', u'day']
[u'polic', u'rule', u'terror', u'blaze']
[u'polic', u'unabl', u'identifi', u'presum', u'bomber']
[u'pollock', u'demand', u'improv', u'world']
[u'power', u'montgomeri']
[u'princ', u'upgrad', u'vital', u'south', u'coast']
[u'produc', u'ralli', u'natur', u'resourc']
[u'puerta', u'deni', u'take', u'ban', u'drug']
[u'timber', u'compani', u'receiv', u'approv']
[u'question', u'rais', u'lack', u'report']
[u'redback', u'smart', u'titl', u'quest']
[u'report', u'put', u'ruddock', u'vanston']
[u'resid', u'urg', u'pressur', u'govt', u'rural', u'medic']
[u'retir', u'villag', u'propos', u'park']
[u'revamp', u'communiti', u'centr', u'open']
[u'review', u'criticis', u'alcohol', u'plan', u'implement']
[u'review', u'prompt', u'rule', u'polic', u'pursuit']
[u'richmond', u'pull', u'fevola']
[u'rural', u'parent', u'meet', u'educ', u'confer']
[u'salmonella', u'outbreak', u'make']
[u'second', u'drought', u'support', u'worker', u'appoint', u'region']
[u'sell', u'anti', u'terror', u'law', u'muslim']
[u'shane', u'watson', u'shaun', u'pollock', u'ricki', u'pont']
[u'shepparton', u'make', u'plan', u'emerg', u'situat']
[u'shire', u'toughen', u'water', u'restrict']
[u'compani', u'includ', u'secur', u'upgrad']
[u'stanhop', u'back', u'prison', u'right', u'vote']
[u'stanhop', u'unfaz', u'report', u'critic']
[u'state', u'leader', u'attend', u'bali', u'bomb', u'prayer', u'servic']
[u'kilda', u'improv', u'injuri', u'manag']
[u'suicid', u'victim', u'father', u'attack', u'militari', u'justic']
[u'surgeri', u'patient', u'reject', u'payment', u'offer']
[u'swimmer', u'urg', u'stay', u'patrol', u'area']
[u'sydney', u'dancer', u'expel', u'china']
[u'teen', u'charg', u'high', u'school', u'stab']
[u'thoma', u'adelaid', u'launch', u'airport']
[u'race', u'rooney', u'boot']
[u'tourism', u'spend', u'outdo', u'internet', u'mobil', u'phone']
[u'speci', u'fli', u'reptil', u'china']
[u'upstream', u'rain', u'boost', u'irrig', u'alloc']
[u'court', u'urg', u'chang', u'suicid']
[u'senat', u'move', u'prison', u'tortur']
[u'valencia', u'harvest', u'add', u'suppli', u'woe']
[u'vanston', u'defend', u'land', u'right', u'chang']
[u'vanston', u'stay', u'despit', u'solon', u'case']
[u'victoria', u'budget', u'surplus', u'exceed', u'expect']
[u'victor', u'peirc', u'jnrs', u'shoot', u'domest', u'matter']
[u'labor', u'begin', u'search', u'presid']
[u'warfar', u'confer', u'tell', u'import']
[u'western', u'power', u'deni', u'problem', u'weather', u'gear']
[u'white', u'hous', u'worker', u'arrest', u'spi']
[u'winton', u'showground', u'upgrad']
[u'yeppoon', u'hospit', u'build', u'site']
[u'hunger', u'strike', u'guantanamo']
[u'adelaid', u'open', u'long', u'await', u'airport']
[u'alic', u'protest', u'continu', u'dump', u'fight']
[u'alleg', u'gang', u'rapist', u'bail', u'revok']
[u'qaeda', u'post', u'internet']
[u'argentinian', u'tenni', u'rock', u'drug', u'claim']
[u'armi', u'recruit', u'interview', u'wagga', u'rape', u'claim']
[u'arthur', u'lose', u'japan']
[u'aussi', u'golf', u'trio', u'place']
[u'australia', u'bat', u'dockland']
[u'australia', u'cruis', u'huge', u'total']
[u'australian', u'develop', u'vaccin', u'prevent', u'cervic']
[u'australia', u'rack', u'huge', u'total']
[u'author', u'investig', u'salmonella', u'outbreak']
[u'bali', u'attack', u'suspect', u'arrest', u'java', u'report']
[u'bali', u'bomber', u'remain', u'mysteri']
[u'bali', u'drug', u'accus', u'alleg', u'breach']
[u'bali', u'survivor', u'progress', u'pleas', u'medic']
[u'bali', u'victim', u'famili', u'thank', u'support']
[u'bass', u'coast', u'consid', u'afford', u'hous']
[u'bathurst', u'build', u'qualifi']
[u'beatti', u'defend', u'alcohol', u'manag', u'plan']
[u'beef', u'processor', u'consid', u'murgon', u'oper']
[u'mitsubishi', u'build', u'malaysian', u'smelter']
[u'name', u'move', u'trade']
[u'boswel', u'dismiss', u'resign', u'rumour']
[u'bracken', u'swing', u'worcestershir']
[u'broomehil', u'tambellup', u'shire', u'share']
[u'bus', u'replac', u'train', u'line', u'close']
[u'bush', u'highlight', u'success', u'stop', u'qaeda']
[u'busi', u'confid', u'benefit', u'nativ', u'titl']
[u'camplin', u'injur']
[u'part', u'maker', u'lose', u'job']
[u'carragh', u'swallow', u'pride', u'cole', u'vacanc']
[u'carter', u'black', u'boost']
[u'centrelink', u'back', u'scheme', u'encourag', u'better', u'school']
[u'centrelink', u'union', u'websit', u'breach']
[u'cervic', u'cancer', u'vaccin', u'creat']
[u'charg', u'lay', u'teen']
[u'chopper', u'pilot', u'disorient', u'fatal', u'crash']
[u'claim', u'breach']
[u'claus', u'set', u'santa', u'standard']
[u'cocain', u'seri', u'artist', u'jail', u'drug', u'import']
[u'communiti', u'continu', u'fight', u'toxic', u'wast']
[u'communiti', u'radio', u'station', u'prepar', u'begin']
[u'concern', u'rais', u'chang', u'lime', u'facil']
[u'concern', u'rais', u'matern', u'unit', u'closur']
[u'confer', u'focus']
[u'congo', u'soldier', u'face', u'mass', u'rape', u'trial']
[u'costello', u'odd', u'inflat', u'risk']
[u'councillor', u'rais', u'concern', u'lyon', u'road']
[u'council', u'want', u'penalti', u'ship', u'dump', u'wast']
[u'crew', u'fight', u'fire']
[u'crew', u'work', u'contain', u'north', u'coast', u'bushfir']
[u'crude', u'drop', u'cooler', u'demand']
[u'csiro', u'help', u'develop', u'standard']
[u'hostel', u'open', u'bed', u'age', u'care']
[u'damag', u'yacht', u'port']
[u'david', u'frost', u'join', u'jazeera']
[u'davi', u'sign', u'year', u'swan']
[u'dedic', u'depart', u'handl', u'water', u'issu']
[u'democrat', u'question', u'rann', u'terror', u'law', u'support']
[u'dentist', u'shortag', u'expect']
[u'dfat', u'fault', u'solon', u'case', u'labor']
[u'world']
[u'doyl', u'push', u'deer', u'park', u'bypass']
[u'driver', u'face', u'manslaught', u'charg', u'man', u'death']
[u'dutch', u'reprimand', u'foreign', u'minist', u'iraq', u'slip']
[u'elbaradei', u'win', u'nobel', u'peac', u'prize']
[u'expert', u'appoint', u'probe', u'armstrong', u'dope', u'claim']
[u'emerg', u'interrupt', u'brisban', u'flight']
[u'farmer', u'small', u'busi', u'time', u'qualifi']
[u'fighter', u'remov', u'brisban', u'airport', u'runway']
[u'firefight', u'brace', u'tough', u'condit']
[u'drug', u'drive', u'case', u'hear']
[u'flintoff', u'dravid', u'dockland']
[u'citi', u'council', u'director', u'accept', u'settlement']
[u'offic', u'procur', u'polic', u'info']
[u'forum', u'tackl', u'mental', u'health', u'issu']
[u'fourth', u'juvenil', u'prison', u'escape', u'catch']
[u'task', u'forc', u'shift', u'focus', u'arthur', u'lake']
[u'frog', u'sniff', u'scientist', u'nobel']
[u'gilchrist', u'depart', u'quickfir', u'centuri']
[u'gilchrist', u'lead', u'australia', u'seri']
[u'govt', u'give', u'geraldton', u'boat', u'lifter']
[u'govt', u'share', u'blame', u'solon', u'case', u'minor', u'parti']
[u'grain', u'council', u'play', u'canola']
[u'great', u'white', u'shark', u'lap', u'indian', u'ocean']
[u'green', u'group', u'seek', u'live', u'river', u'status', u'dali']
[u'green', u'step', u'campaign', u'countrylink', u'chang']
[u'gunn', u'pulp', u'give', u'control', u'action', u'status']
[u'steal', u'warfar', u'confer']
[u'health', u'servic', u'make', u'plan', u'better', u'budget']
[u'hiddink', u'rest', u'socceroo', u'star', u'away', u'qualifi']
[u'high', u'court', u'justic', u'call', u'judg']
[u'howard', u'deni', u'forestri', u'union', u'deal', u'keep', u'secret']
[u'howard', u'deni', u'negoti', u'union', u'boss']
[u'howard', u'grim', u'solon', u'report']
[u'howard', u'see', u'inflat', u'threat', u'fuel', u'price']
[u'iaea', u'chief', u'elbaradei', u'win', u'nobel', u'peac', u'prize']
[u'iemma', u'pledg', u'support', u'bali', u'victim', u'children']
[u'indigen', u'player', u'head', u'perth', u'basketbal']
[u'indonesia', u'review', u'automat', u'jail', u'term', u'cut']
[u'inquiri', u'recommend', u'investig']
[u'crime', u'link', u'fear', u'trigger', u'raid']
[u'iran', u'interfer', u'iraq', u'claim', u'baseless']
[u'iraqi', u'raid', u'target', u'anti', u'british', u'fighter']
[u'iraqi', u'voter', u'sneak', u'peek', u'draft', u'constitut']
[u'irrig', u'water', u'restrict', u'lift']
[u'irwin', u'influenc', u'stop', u'croc', u'safari', u'say']
[u'israel', u'ban', u'palestinian', u'human', u'shield']
[u'kangaroo', u'hopper', u'badg', u'kisser', u'place']
[u'blaze', u'claim', u'batman', u'hous']
[u'labor', u'opt', u'pittwat', u'elect']
[u'lara', u'kalli', u'world', u'slide']
[u'bogong', u'bogong', u'parliament']
[u'local', u'govt', u'associ', u'wari', u'council', u'amalgam']
[u'lownd', u'fire', u'bathurst', u'practic']
[u'lownd', u'sizzl', u'bathurst']
[u'lownd', u'throw', u'bathurst', u'gauntlet']
[u'shift', u'broom', u'detent', u'camp', u'unfair']
[u'mango', u'mad', u'grip', u'brisban', u'market']
[u'plead', u'guilti', u'boy', u'manslaught']
[u'recov', u'cliff', u'fall']
[u'mayor', u'warn', u'york', u'subway', u'threat']
[u'mcgee', u'answer', u'charg', u'protest']
[u'medic', u'program', u'lithgow', u'doctor']
[u'meyer', u'aim', u'bronco', u'heartbreak']
[u'migrat', u'endang', u'trade', u'victim']
[u'mine', u'compani', u'begin', u'pilbara', u'iron']
[u'minist', u'check', u'cultur', u'centr', u'progress']
[u'minor', u'muslim', u'target', u'pakistan', u'attack']
[u'moorabool', u'want', u'toxic', u'wast', u'transport']
[u'launceston', u'salmonella', u'case', u'confirm']
[u'renew', u'fuel', u'compani', u'seek', u'list']
[u'mottram', u'aim', u'commonwealth', u'gold']
[u'mourner', u'tribut', u'teen', u'bali', u'bomb', u'victim']
[u'call', u'action', u'stop', u'petrol', u'theft']
[u'unmov', u'hospit', u'site', u'critic']
[u'nation', u'concern', u'elector', u'boundari', u'chang']
[u'nation', u'agre', u'climat', u'chang', u'meet', u'date']
[u'coeliac', u'diseas', u'treatment', u'easi', u'digest']
[u'resort', u'plan', u'anna']
[u'nigerian', u'rebel', u'leader', u'face', u'treason', u'charg']
[u'note', u'philanthropist', u'jail', u'fraud']
[u'brace', u'bushfir', u'season']
[u'nation', u'netbal', u'final']
[u'govt', u'negoti', u'land', u'owner']
[u'cowboy', u'immortalis', u'reef', u'name']
[u'boost', u'subway', u'secur', u'terror', u'threat', u'doubt']
[u'ombudsman', u'reveal', u'wrong', u'detent', u'case']
[u'ombudsman', u'urg', u'improv', u'watch', u'hous', u'surveil']
[u'oper', u'rule', u'tunnel', u'toll']
[u'outback', u'week', u'idea', u'gain', u'support']
[u'pakistan', u'hotel', u'brace', u'barmi', u'armi', u'invas']
[u'parent', u'push', u'school']
[u'peac', u'prize', u'shoot', u'elbaradei']
[u'pickett', u'head', u'demon', u'motlop', u'power']
[u'reject', u'call', u'vanston', u'sack']
[u'polic', u'handcuff', u'bodi', u'iraq']
[u'polic', u'investig', u'bash', u'death']
[u'policeman', u'death', u'command']
[u'polic', u'chopper', u'crash', u'victim']
[u'polic', u'pursu', u'pimpli', u'popsicl', u'pincher']
[u'polic', u'road', u'blitz', u'result', u'anger', u'polic']
[u'polic', u'seek', u'occup', u'fatal', u'crash']
[u'polic', u'union', u'meet', u'combat', u'attack']
[u'premier', u'dismiss', u'concern', u'tree', u'clear']
[u'princess', u'portrait', u'unveil']
[u'princesss', u'portrait', u'hang', u'canberra', u'galleri']
[u'prison', u'procedur', u'defend', u'birni', u'suicid']
[u'privat', u'guard', u'bolster', u'game', u'secur']
[u'produc', u'recruit', u'fight', u'exot', u'diseas']
[u'program', u'studi', u'help', u'curb', u'unemploy', u'rate']
[u'properti', u'break', u'record', u'price', u'pay', u'acr']
[u'push', u'continu', u'water', u'fluorid']
[u'raikkonen', u'engin', u'failur', u'japan']
[u'rain', u'allow', u'irrig', u'receiv', u'entitl']
[u'cross', u'confirm', u'guantanamo', u'hunger', u'strike']
[u'report', u'look', u'boost', u'indigen', u'doctor', u'number']
[u'revok', u'patel', u'licenc', u'appropri']
[u'plane', u'make', u'emerg', u'land']
[u'roar', u'marin', u'stalem', u'brisban']
[u'roar', u'gain', u'advantag', u'heat']
[u'robot', u'fish', u'caus', u'splash']
[u'erupt', u'howard', u'forest', u'deal']
[u'rspca', u'open', u'talk', u'industri']
[u'move', u'limit', u'game', u'venu', u'cash', u'withdraw']
[u'school', u'expel', u'children', u'author', u'crap', u'fart']
[u'scientist', u'seek', u'pedestrian', u'risk', u'warn']
[u'search', u'begin', u'britain', u'ugliest', u'veget']
[u'search', u'continu', u'miss', u'wollongong', u'girl']
[u'serial', u'killer', u'commit', u'suicid', u'jail']
[u'shoulder', u'surgeri', u'bring', u'good', u'news', u'tait']
[u'site', u'broom', u'anglican', u'school']
[u'south', u'american', u'scrambl', u'world', u'place']
[u'south', u'west', u'water', u'restrict', u'lift']
[u'stain', u'glass', u'window', u'unveil', u'rememb']
[u'state', u'forest', u'announc', u'surpris', u'landown']
[u'state', u'fund', u'food', u'label', u'chang']
[u'state', u'rule', u'gambl', u'venu']
[u'state', u'wont', u'receiv', u'extra', u'fund', u'food']
[u'stock', u'market', u'slump', u'continu']
[u'stand', u'asid', u'hospit', u'offici', u'evid']
[u'studi', u'call', u'wheat', u'industri', u'revamp']
[u'success', u'hole', u'better']
[u'talk', u'begin', u'crime', u'prevent', u'strategi']
[u'tamworth', u'countrylink', u'staff', u'number']
[u'polic', u'worri', u'enforc', u'brothel']
[u'teenag', u'plead', u'guilti', u'pedestrian', u'death']
[u'thiev', u'culcairn', u'footbal', u'club']
[u'thousand', u'flee', u'chines', u'flood']
[u'contractor', u'highway', u'upgrad']
[u'dead', u'victorian', u'crash']
[u'toxic', u'dump', u'plan', u'pose', u'littl', u'risk', u'studi']
[u'truck', u'driver', u'injur', u'crash']
[u'quiz', u'melbourn']
[u'puerta', u'lose', u'arthur', u'win', u'japan']
[u'unhappi', u'ciss', u'plan', u'liverpool', u'exit']
[u'union', u'confid', u'worker', u'wont', u'quit', u'face', u'major']
[u'union', u'warn', u'restrict', u'build', u'site', u'access']
[u'union', u'want', u'driver', u'fatigu', u'report', u'recommend']
[u'unit', u'hope', u'protect', u'unbeaten', u'start']
[u'unit', u'play', u'rech', u'sydney']
[u'medic', u'board', u'revok', u'patel', u'licenc']
[u'offer', u'bali', u'bomb', u'suspect']
[u'vail', u'tackl', u'subsidi', u'trade', u'talk']
[u'nistelrooy', u'reprimand', u'attack', u'team']
[u'vaughan', u'demand', u'victori', u'pakistan', u'india']
[u'wall', u'experi', u'fall']
[u'stockpil', u'drug']
[u'wide', u'busi', u'produc', u'akoya', u'pearl']
[u'william', u'delight', u'recruit']
[u'wind', u'fuel', u'bushfir', u'concern']
[u'woman', u'take', u'hospit', u'drink', u'spike']
[u'worker', u'adjust', u'power', u'line', u'protect', u'eagl', u'nest']
[u'world', u'batsmen', u'look', u'aton']
[u'yeppoon', u'hospit', u'decis', u'welcom']
[u'cricket', u'magazin']
[u'trade', u'week', u'movement']
[u'qaeda', u'letter', u'reveal', u'concern', u'say']
[u'anti', u'nuclear', u'candid', u'criticis', u'nobel', u'iaea']
[u'australian', u'give', u'chariti']
[u'bailey', u'win', u'dragon']
[u'bali', u'bomb', u'victim', u'bodi', u'fli', u'home']
[u'bali', u'mastermind', u'narrowli', u'evad', u'captur']
[u'bali', u'polic', u'reissu', u'photo', u'bomber']
[u'bangladesh', u'flood', u'kill', u'damag', u'crop']
[u'bank', u'warn', u'withdraw', u'limit']
[u'beachley', u'malibu']
[u'borneo', u'veteran', u'hold', u'reunion']
[u'georg', u'arrest', u'drug', u'charg']
[u'british', u'firm', u'fin', u'hatfield', u'train', u'crash']
[u'bull', u'celebr', u'hape', u'glori']
[u'businessman', u'offer', u'land', u'sweeten', u'develop', u'deal']
[u'bypass', u'fund', u'hop', u'focus', u'costello']
[u'cairn', u'break', u'duck']
[u'call', u'petrol', u'avoid', u'tourism', u'slump']
[u'camplin', u'wont', u'injuri']
[u'cayless', u'tahu', u'name', u'eel', u'best']
[u'clijster', u'blow', u'chanc', u'clinch', u'spot']
[u'cole', u'withdraw', u'credit', u'card']
[u'committe', u'chairman', u'say', u'uranium', u'safeti']
[u'confus', u'desalin', u'plant', u'environ']
[u'costello', u'ask', u'dump', u'tax']
[u'crew', u'battl', u'fire', u'wind', u'gust', u'intensifi']
[u'croat', u'donat', u'blood', u'footbal', u'ticket']
[u'cum', u'break', u'year', u'group', u'drought']
[u'deer', u'park', u'bypass', u'ahead']
[u'driver', u'licenc', u'fine', u'payment', u'blitz']
[u'earthquak', u'rock', u'indian', u'subcontin']
[u'eriksson', u'hous', u'vandal']
[u'offer', u'emerg', u'quak']
[u'farmer', u'urg', u'look', u'locust', u'hatch']
[u'favourit', u'domin']
[u'feder', u'govt', u'fund', u'heritag', u'project']
[u'crew', u'brace', u'brisban', u'flare']
[u'fugit', u'bali', u'polic']
[u'gilchrist', u'hail', u'form', u'revers']
[u'glori', u'trounc', u'jet', u'newcastl']
[u'greek', u'land', u'registri', u'safeguard', u'expat', u'pension']
[u'hacker', u'jail', u'global', u'worm']
[u'health', u'servic', u'investig', u'launceston', u'salmonella']
[u'hospit', u'record', u'boost', u'elect', u'surgeri', u'number']
[u'hospit', u'tighten', u'check', u'babi']
[u'india', u'world']
[u'interview', u'andrew', u'symond']
[u'interview', u'craig', u'lownd']
[u'investor', u'murdoch', u'poison', u'pill']
[u'chang', u'extrem', u'divis']
[u'islam', u'council', u'chief', u'deni', u'split', u'terror']
[u'take', u'drug', u'moss', u'critic', u'robbi', u'william']
[u'time', u'vengeanc', u'eriksson', u'tell', u'england']
[u'labor', u'seek', u'review', u'bali', u'case']
[u'lawyer', u'deni', u'deal', u'sign', u'return', u'solon']
[u'lownd', u'grab', u'bathurst', u'pole']
[u'mcgrath', u'return', u'katich', u'doubt']
[u'minist', u'say', u'mistak', u'tunnel', u'deal']
[u'mobil', u'phone', u'fest', u'celebr', u'small', u'screen', u'cinema']
[u'monti', u'lead', u'wood', u'applebi', u'lurk']
[u'moor', u'hop', u'world', u'play', u'off']
[u'fear', u'dead', u'quak']
[u'morocco', u'accus', u'dump', u'immigr']
[u'muslim', u'refer', u'group', u'split', u'terror', u'law']
[u'nation', u'galleri', u'staff', u'weigh', u'option']
[u'adelaid', u'airport', u'open', u'public', u'view']
[u'newcastl', u'famili', u'tribut', u'bali', u'victim']
[u'york', u'defend', u'terror', u'alert']
[u'convict', u'kangaroo', u'cull', u'trespass']
[u'crown', u'nation', u'netbal', u'champ']
[u'complet', u'pastor', u'industri', u'survey']
[u'offici', u'step', u'secur']
[u'opposit', u'vow', u'maintain', u'fight']
[u'parmalat', u'share', u'slump', u'strong', u'launch']
[u'patterson', u'accus', u'state', u'fail', u'problem']
[u'peopl', u'power', u'secur', u'dolphin', u'feed']
[u'pepper', u'spray', u'blame', u'fight']
[u'pietersen', u'doubt', u'final', u'game']
[u'pietersen', u'scan', u'hamstr']
[u'polic', u'work', u'lead', u'rare', u'paint', u'discoveri']
[u'politician', u'hand', u'dirti', u'redfern']
[u'bag', u'order', u'camel', u'beach', u'rid']
[u'power', u'restor', u'upper', u'eyr', u'peninsula']
[u'premier', u'await']
[u'psychic', u'seek', u'reward', u'saddam', u'captur']
[u'raaf', u'apologis', u'emerg', u'land']
[u'rain', u'bring', u'relief', u'farmer']
[u'ralf', u'put', u'toyota', u'pole', u'japan']
[u'ranger', u'snatch', u'go', u'away', u'present']
[u'rann', u'downplay', u'strong', u'opinion', u'poll', u'show']
[u'rawl', u'look', u'fresh', u'start']
[u'romania', u'detect', u'bird', u'case']
[u'royal', u'hobart', u'accredit', u'threat']
[u'schumach', u'hit', u'wall', u'suzuka']
[u'score', u'fear', u'dead', u'pakistan', u'quak']
[u'scud', u'french', u'sojourn']
[u'brace', u'bushfir']
[u'sever', u'storm', u'hit']
[u'sixer', u'look', u'straight']
[u'solon', u'lawyer', u'deni', u'deal']
[u'state', u'territori', u'leader', u'fight', u'law']
[u'strong', u'quak', u'rock', u'indian', u'subcontin']
[u'strong', u'visitor', u'turnout', u'launceston']
[u'sunni', u'discuss', u'boycott', u'iraqi', u'vote']
[u'timber', u'yard', u'caus', u'damag']
[u'total', u'ban', u'region']
[u'tropic', u'storm', u'devast', u'central', u'america']
[u'union', u'wari', u'safeguard']
[u'union', u'urg', u'legal', u'action', u'centrelink']
[u'soldier', u'kill', u'iraq', u'offens']
[u'stock', u'creep', u'higher', u'job', u'data']
[u'welcom', u'elbaradei', u'peac', u'prize']
[u'victim', u'regret', u'birni', u'wasnt', u'execut']
[u'victim', u'pleas', u'patel', u'licenc', u'revok']
[u'wenger', u'deni', u'henri', u'rift']
[u'world', u'coach', u'defend', u'super', u'seri']
[u'airport', u'termin', u'evacu', u'white', u'powder']
[u'airport', u'termin', u'reopen', u'powder', u'scare']
[u'applebi', u'chanc', u'californian']
[u'armi', u'engin', u'tasmania', u'relief', u'effort']
[u'atm', u'need', u'pub', u'club', u'say']
[u'australia', u'close', u'clean', u'sweep']
[u'australian', u'wicket', u'tumbl']
[u'australia', u'romp', u'clean', u'sweep']
[u'bali', u'bomb', u'victim', u'leav', u'newcastl', u'hospit']
[u'bali', u'victim', u'bodi', u'fli', u'sydney']
[u'beckham', u'see', u'england', u'hang']
[u'bronco', u'enni', u'second', u'attempt']
[u'campaign', u'aim', u'stop', u'driver', u'mobil', u'phone']
[u'canin', u'casanova', u'catcher', u'busi']
[u'child', u'abus', u'support', u'group', u'join', u'burni']
[u'costa', u'rica', u'blank', u'secur', u'world', u'place']
[u'crew', u'battl', u'cabooltur', u'pine', u'plantat', u'blaze']
[u'crew', u'continu', u'fight', u'blaze']
[u'cross', u'citi', u'tunnel', u'opposit', u'say']
[u'crowd', u'seek', u'relief', u'beach', u'high', u'temp']
[u'boss', u'rule', u'bird', u'windfal']
[u'death', u'toll', u'quak', u'pass', u'offici']
[u'docker', u'eagl', u'london']
[u'famili', u'appeal', u'help', u'sydney', u'murder']
[u'favourit', u'domin']
[u'firefight', u'control', u'brisban', u'blaze']
[u'threat', u'eas']
[u'fishermen', u'apprehend', u'kimberley', u'coast']
[u'british', u'hurt', u'afghan', u'suicid', u'attack']
[u'global', u'warm', u'satellit', u'crash', u'ocean']
[u'googong', u'boat', u'ramp', u'reopen']
[u'govt', u'soften', u'packag', u'combet', u'say']
[u'helicopt', u'call', u'battl', u'blaze']
[u'hop', u'find', u'miss', u'fisherman', u'fade', u'polic']
[u'hussein', u'beat', u'vega']
[u'indian', u'offer', u'quak', u'pakistan']
[u'dri', u'nativ', u'titl', u'deal']
[u'interview', u'ricki', u'pont', u'adam', u'gilchrist', u'shane']
[u'iran', u'say', u'nuclear', u'warhead', u'alleg']
[u'want', u'australia', u'freddi', u'watson']
[u'labor', u'back', u'away', u'tighter', u'uranium', u'mine']
[u'lownd', u'confid', u'ahead', u'bathurst']
[u'lynx', u'open', u'account', u'boomer', u'flame']
[u'open', u'christma']
[u'martyn', u'clark', u'promot']
[u'mudslid', u'buri', u'guatemala']
[u'muslim', u'parti', u'back', u'sentenc', u'cleric', u'bashir']
[u'care', u'place', u'sydney', u'melbourn']
[u'guard', u'lead', u'africa', u'world', u'charg']
[u'runner', u'win', u'burni']
[u'warn', u'complac', u'drought']
[u'opposit', u'call', u'sport', u'oval', u'reopen']
[u'opposit', u'criticis', u'regress', u'land']
[u'opposit', u'demand', u'guarante', u'worker']
[u'guatemalan', u'miss', u'flood', u'kill']
[u'dead', u'south', u'asian', u'quak']
[u'pakistani', u'kashmir', u'worst', u'quak', u'agenc']
[u'perth', u'stage', u'intern', u'race']
[u'unveil', u'fair', u'plan']
[u'pont', u'hit', u'australia', u'consolid']
[u'propos', u'plan', u'unveil']
[u'quak', u'death', u'toll', u'continu', u'rise']
[u'quak', u'kill', u'militari', u'say']
[u'quak', u'toll', u'rise']
[u'raikkonen', u'win', u'japanes', u'thriller', u'webber', u'fourth']
[u'report', u'link', u'unemploy', u'mental', u'health', u'problem']
[u'resort', u'propos', u'riski', u'conserv', u'group', u'say']
[u'robot', u'vehicl', u'conquer', u'desert', u'race']
[u'rower', u'miss', u'yarra', u'river']
[u'ruddock', u'defend', u'relationship', u'centr', u'propos']
[u'salmonella', u'outbreak', u'time', u'warn']
[u'search', u'continu', u'fisherman', u'wash', u'rock']
[u'search', u'miss', u'fisherman', u'call']
[u'search', u'miss', u'rower', u'call']
[u'senat', u'criticis', u'school', u'fund', u'wait']
[u'busi', u'adelaid', u'storm']
[u'shooter', u'say', u'bag', u'urban', u'legend', u'puma']
[u'european', u'team']
[u'skaif', u'bring', u'holden', u'home', u'bathurst']
[u'socceroo', u'play', u'oppon', u'unknown']
[u'sting', u'beat', u'sapphir', u'nation', u'soccer', u'titl']
[u'sydney', u'snatch', u'close', u'unit']
[u'hold', u'attack', u'plan', u'report']
[u'reckon', u'polic', u'whistleblow']
[u'thousand', u'compet', u'hour', u'bike', u'challeng']
[u'thousand', u'fear', u'dead', u'quak']
[u'thousand', u'turn', u'visit', u'airport', u'termin']
[u'todd', u'carv', u'malibu', u'drought', u'break']
[u'trade', u'deleg', u'prepar', u'china', u'trip']
[u'turkey', u'take', u'action', u'bird', u'case']
[u'vaidisova', u'win', u'japan', u'open']
[u'plan', u'life', u'ghost', u'town']
[u'watson', u'aussi', u'clean', u'sweep']
[u'win', u'taipan', u'breaker']
[u'fear', u'dead', u'quak']
[u'abolish', u'justic', u'depart', u'inquiri', u'tell']
[u'adelaid', u'festiv', u'program', u'releas']
[u'ask', u'court', u'dismiss', u'bali', u'action']
[u'pour', u'pakistan', u'wake', u'earthquak']
[u'label', u'plan', u'danger']
[u'ancient', u'pregnant', u'rhino', u'unearth']
[u'bali', u'blast', u'victim', u'leav', u'hospit']
[u'anti', u'terror', u'law', u'attack', u'person', u'freedom']
[u'appeal', u'return', u'olymp', u'torch', u'break']
[u'argentina', u'sink', u'peru', u'bolivia', u'hold', u'brazil']
[u'armstrong', u'detractor', u'pedal']
[u'kill', u'afghan', u'blast']
[u'aussi', u'davi', u'fire', u'castleford', u'super', u'leagu']
[u'aust', u'militari', u'stretch', u'report', u'find']
[u'australia', u'promis', u'quak', u'relief']
[u'weather', u'stop', u'manangatang']
[u'bali', u'bomb', u'victim', u'condit', u'improv']
[u'bali', u'protest', u'urg', u'execut', u'bomber']
[u'beatti', u'play', u'wild', u'river', u'protect', u'fear']
[u'best', u'drought', u'figur', u'year']
[u'bickerton', u'end', u'long', u'wait', u'victori']
[u'bradman', u'foundat', u'chip', u'indian']
[u'bradtk', u'reach', u'mileston']
[u'bronco', u'deni', u'bennett', u'untouch']
[u'bronco', u'unveil', u'coach', u'team']
[u'bulldog', u'sign', u'veteran', u'grant']
[u'busi', u'chamber', u'get', u'presid']
[u'busi', u'seek', u'compo', u'blackout', u'loss']
[u'busi', u'lobbi', u'oppos', u'rise', u'health']
[u'businessmen', u'work', u'safeti', u'award']
[u'busi', u'seek', u'work', u'govt', u'dolphin']
[u'cairn', u'doctor', u'consid', u'propos']
[u'hec', u'chang', u'stem', u'skill', u'drift']
[u'camplin', u'undergo', u'knee', u'surgeri']
[u'centrelink', u'staff', u'hold', u'stop', u'work', u'meet']
[u'centrelink', u'worker', u'walk']
[u'chappel', u'want', u'tendulkar', u'mentor']
[u'chariti', u'launch', u'appeal', u'quak', u'homeless']
[u'children', u'treat', u'suspect', u'meningococc', u'case']
[u'chilli', u'condit', u'ideal', u'good', u'night', u'sleep']
[u'chopper', u'servic', u'continu', u'push', u'govt', u'support']
[u'begin', u'probe', u'gold', u'coast', u'council']
[u'coca', u'cola', u'come', u'famili']
[u'concern', u'emerg', u'access', u'waterfront']
[u'consortium', u'hop', u'futur', u'expans']
[u'coraki', u'push', u'youth', u'liaison', u'offic']
[u'coron', u'demand', u'offici', u'petrol', u'sniff']
[u'coron', u'investig', u'nurs', u'home', u'death']
[u'council', u'crack', u'yacht', u'club', u'drink']
[u'council', u'decid', u'hous', u'subdivis']
[u'dali', u'gift', u'wood', u'titl', u'play']
[u'darfur', u'rebel', u'releas', u'hostag']
[u'dartmoor', u'homestead', u'win', u'tourism', u'award']
[u'davenport', u'claim', u'titl']
[u'dealer', u'warn', u'port', u'kembla', u'rais', u'price']
[u'death', u'toll', u'central', u'american', u'flood', u'climb']
[u'death', u'toll', u'hit', u'guatemala']
[u'disciplinari', u'action', u'councillor', u'unlik']
[u'test', u'determin', u'claim']
[u'doctor', u'honour', u'servic', u'mental', u'health']
[u'document', u'doctor', u'disput']
[u'downer', u'warn', u'nuclear', u'terror', u'threat']
[u'dragon', u'reject', u'crisi', u'claim']
[u'drought', u'condit', u'eas', u'break', u'hill']
[u'drug', u'money', u'earmark', u'prevent', u'treatment']
[u'win', u'nobel', u'econom', u'prize', u'game', u'theori']
[u'earthquak', u'hit', u'south', u'asia']
[u'earthquak', u'rattl', u'jakarta', u'casualti']
[u'eastman', u'plead', u'judici', u'review']
[u'emerald', u'airport', u'record', u'strong', u'growth']
[u'bash', u'death', u'botan', u'garden']
[u'estat', u'agent', u'talk', u'land', u'debat']
[u'ban', u'turkey', u'bird', u'import', u'avian']
[u'extradit', u'threat', u'loom', u'warrnambool']
[u'famili', u'friend', u'iraq', u'bind', u'troop', u'farewel']
[u'farm', u'make', u'school']
[u'ferdinand', u'prove', u'wrong', u'eriksson']
[u'firebug', u'worri', u'south', u'coast', u'author']
[u'bali', u'trial']
[u'flintoff', u'declar', u'test']
[u'flood', u'work', u'grasstre', u'beach']
[u'boost', u'cloud', u'break', u'estim']
[u'forum', u'address', u'aborigin', u'heritag', u'law']
[u'leak', u'shut', u'leach']
[u'gold', u'coast', u'probe', u'reveal', u'develop']
[u'govt', u'announc', u'commit', u'matern', u'care']
[u'govt', u'defend', u'mental', u'health', u'plan']
[u'govt', u'move', u'replac', u'asbesto', u'school', u'roof']
[u'govt', u'predict', u'slide', u'cattl', u'industri']
[u'govt', u'consid', u'public', u'view', u'food', u'label']
[u'green', u'urg', u'public', u'scrutini', u'draft', u'climat']
[u'harvest', u'damag', u'cane', u'crop']
[u'heavi', u'swell', u'hamper', u'search', u'miss', u'fisherman']
[u'hewitt', u'drop', u'rank', u'spot']
[u'hiddink', u'know', u'there']
[u'higher', u'fuel', u'price', u'take', u'toll', u'uralla', u'tourism']
[u'high', u'school', u'resum', u'work', u'blaze']
[u'highway', u'reopen', u'fatal', u'crash']
[u'home', u'loan', u'continu', u'declin']
[u'home', u'owner', u'urg', u'clear', u'backyard', u'debri']
[u'hospit', u'upgrad', u'benefit', u'cancer', u'patient']
[u'hous', u'accus', u'firebomb']
[u'hous', u'lend', u'slide']
[u'howard', u'deni', u'freez', u'union', u'welfar', u'group']
[u'howard', u'flag', u'quak']
[u'howard', u'reassur', u'labor']
[u'iemma', u'reloc', u'import', u'port', u'kembla']
[u'illeg', u'fisher', u'process', u'broom', u'turf', u'club']
[u'industri', u'chang', u'worri', u'throsbi']
[u'inquest', u'water', u'tower', u'death', u'begin']
[u'interview', u'bronco', u'bruno', u'cullen']
[u'chang', u'impact', u'public', u'servant', u'union']
[u'plan', u'enhanc', u'worker', u'market', u'howard']
[u'isol', u'parent', u'seek', u'teacher', u'retent']
[u'japanes', u'launch', u'superson', u'test', u'aircraft']
[u'growth', u'rate', u'tip', u'eas']
[u'john', u'home', u'green', u'gold']
[u'king', u'brother', u'stand', u'trial', u'bank', u'fraud']
[u'kowen', u'forest', u'race', u'organis', u'look', u'extend', u'cours']
[u'landslid', u'interrupt', u'gold', u'product']
[u'leader', u'condol', u'bali', u'blast', u'victim']
[u'liber', u'water', u'polici', u'help', u'ballarat']
[u'littl', u'weigh', u'jockey', u'dilemma']
[u'ljubic', u'take', u'french', u'titl']
[u'lyon', u'rathbon', u'miss', u'european', u'tour']
[u'mackay', u'bucasia', u'work', u'begin', u'year']
[u'charg', u'basebal', u'incid']
[u'crush', u'tree', u'kyogl']
[u'hurt', u'cave', u'garden', u'fall']
[u'court', u'priest', u'bash']
[u'court', u'snatch']
[u'market', u'begin', u'week', u'strong', u'perform']
[u'market', u'slump', u'prompt', u'grower', u'move', u'load', u'wool']
[u'mayor', u'push', u'water', u'pipelin', u'support']
[u'merkel', u'german', u'chancellor']
[u'mildura', u'driver', u'share', u'bathurst', u'honour']
[u'mill', u'firm', u'boost', u'dimboola', u'job']
[u'mine', u'stock', u'push', u'market', u'higher']
[u'minist', u'accus', u'ignor', u'fuel', u'suppli', u'report']
[u'minist', u'highlight', u'need', u'stronger', u'land', u'council']
[u'moodi', u'upset', u'ancic', u'titl']
[u'more', u'plain', u'council', u'chang']
[u'mother', u'admit', u'poison', u'infant']
[u'predict', u'role', u'sidetrack', u'snowdon']
[u'urg', u'oppos', u'perri', u'lake', u'develop', u'law']
[u'crab', u'number', u'healthi', u'despit', u'catch']
[u'mudslid', u'delay', u'anger', u'guatemalan', u'villag']
[u'nelson', u'accus', u'hide', u'fallback', u'plan']
[u'date', u'shoot', u'murder', u'trial']
[u'staff', u'scheme', u'promis', u'central', u'benefit']
[u'madonna', u'song', u'prompt', u'accus', u'sacrileg']
[u'protein', u'cancer', u'fight']
[u'rule', u'crack', u'camel', u'tourism']
[u'ward', u'open', u'deal', u'hospit', u'overflow']
[u'northern', u'river', u'focus', u'youth', u'retent']
[u'norwegian', u'spar', u'jail', u'term', u'fatal', u'crash']
[u'farmer', u'welcom', u'averag', u'rainfal']
[u'nullarbor', u'servic', u'prove', u'cost']
[u'older', u'women', u'virgin', u'discrimin', u'case']
[u'opposit', u'attack', u'plan']
[u'opposit', u'seek', u'polic', u'road', u'patrol', u'boost']
[u'option', u'lay', u'torr', u'strait', u'govt']
[u'pakistani', u'expat', u'pray', u'quak', u'victim']
[u'pakistan', u'quak', u'death', u'toll', u'doubl']
[u'parti', u'split', u'elector', u'chang']
[u'patchi', u'improv', u'drought', u'condit']
[u'perrot', u'claim', u'lpga', u'titl']
[u'platsearch', u'record', u'loss']
[u'defend', u'chang']
[u'polic', u'free', u'releas', u'mugshot', u'media', u'minist']
[u'polic', u'investig', u'northam', u'murder']
[u'polic', u'investig', u'begin', u'alight']
[u'polic', u'seek', u'race', u'assault']
[u'polic', u'suspect', u'arson', u'church']
[u'powerlin', u'delay', u'spark', u'blackout', u'fear']
[u'premier', u'reject', u'fund', u'health', u'reform']
[u'premier', u'highlight', u'port', u'kembla', u'growth', u'plan']
[u'premier', u'urg', u'help', u'speed', u'deer', u'park', u'project']
[u'whale', u'vote', u'cost', u'solomon', u'minist']
[u'public', u'urg', u'weed', u'awar']
[u'public', u'urg', u'remain', u'water', u'vigil']
[u'tight', u'lip', u'compens', u'detail']
[u'quak', u'kill', u'generat']
[u'record', u'ship', u'predict', u'zinifex', u'karumba']
[u'rescu', u'work', u'continu', u'pakistani', u'griev']
[u'resign', u'spark', u'surgeri', u'reshuffl']
[u'roar', u'striker', u'sidelin', u'week']
[u'erupt', u'emerg', u'servic', u'super', u'plan']
[u'rspca', u'unhappi', u'poni', u'cruelti', u'penalti']
[u'consid', u'fuel', u'suppli', u'law']
[u'labor', u'consid', u'plan', u'second', u'term']
[u'opposit', u'fear', u'wast', u'dump', u'riverland', u'threat']
[u'scientist', u'bring', u'everest', u'notch']
[u'search', u'continu', u'quak', u'toll', u'top']
[u'search', u'miss', u'cradl', u'mountain', u'walker']
[u'sheedi', u'name', u'look', u'australian', u'team']
[u'sheep', u'death', u'research', u'find', u'mortal', u'rate']
[u'shire', u'resourc', u'share', u'deal', u'near']
[u'shire', u'legal', u'action', u'land', u'contract']
[u'soldier', u'prepar', u'iraq', u'deploy']
[u'solon', u'case', u'minist', u'fault', u'bureaucrat']
[u'spat', u'reveal', u'intens', u'battl', u'skaif']
[u'spat', u'reveal', u'intens', u'battl', u'skaif']
[u'strong', u'wind', u'leav', u'damag', u'trail']
[u'sudan', u'rebel', u'releas', u'worker']
[u'support', u'agenc', u'welcom', u'effort', u'curb', u'child', u'abus']
[u'surgeon', u'premier', u'sort', u'hospit']
[u'sydney', u'search', u'group', u'seek', u'lock', u'fund']
[u'tactic', u'pivot', u'herald', u'cycl', u'tour']
[u'talk', u'focus', u'bunburi', u'hous', u'crisi']
[u'doctor', u'secur', u'research', u'fund']
[u'liber', u'oppos', u'nation', u'commiss']
[u'teen', u'driver', u'sentenc', u'youth', u'fatal']
[u'teen', u'lose', u'foot', u'train', u'mishap']
[u'teen', u'death', u'prompt', u'mandatori']
[u'palestinian', u'teen', u'kill', u'report']
[u'timber', u'worker', u'offer', u'voluntari']
[u'tourism', u'group', u'cossack', u'plan']
[u'tourism', u'keep', u'motor']
[u'trainer', u'weigh', u'jockey', u'dilemma']
[u'trucki', u'die', u'highway', u'crash']
[u'break', u'deadlock', u'trade', u'talk']
[u'vail', u'join', u'effort', u'salvag', u'world', u'trade', u'talk']
[u'victori', u'defeat', u'hapless', u'knight']
[u'victori', u'outclass', u'hapless', u'knight']
[u'virgin', u'blue', u'consid', u'appeal', u'anti']
[u'busi', u'lobbi', u'seek', u'chang']
[u'newspap', u'buy', u'local', u'own', u'geraldton']
[u'word', u'erupt', u'smith', u'beach', u'plan']
[u'warrior', u'lose', u'ervin', u'season']
[u'water', u'ski', u'trial', u'lake', u'burley', u'griffin']
[u'weve', u'prove', u'say', u'pont']
[u'wind', u'farm', u'plan', u'pick', u'pace']
[u'wool', u'industri', u'lobbi', u'govt']
[u'work', u'start', u'latrob', u'valley', u'cancer', u'hous']
[u'world', u'mental', u'health', u'prompt']
[u'zabel', u'bow', u'style', u'davi']
[u'abba', u'sharon', u'summit', u'delay']
[u'polic', u'welcom', u'eastman', u'rule']
[u'actu', u'rule', u'nonsens', u'talk']
[u'adelaid', u'retain', u'build', u'height']
[u'agil', u'wallabi', u'number', u'improv']
[u'aird', u'betfair', u'concern']
[u'alleg', u'cain', u'killer', u'trial']
[u'ord', u'finish']
[u'aloisi', u'clear', u'injuri']
[u'anti', u'obes', u'research', u'win', u'grant']
[u'apolog', u'issu', u'overdu', u'account']
[u'appeal', u'launch', u'bali', u'bomb', u'victim']
[u'armi', u'chopper', u'leav', u'townsvill', u'year']
[u'astronaut', u'return', u'badg', u'space', u'odyssey']
[u'aussi', u'troop', u'hunt', u'milit']
[u'australia', u'urg', u'embrac', u'uranium', u'demand']
[u'aust', u'quak']
[u'broker', u'rais', u'concern']
[u'award', u'recognis', u'polic', u'servic']
[u'awex', u'review', u'oper', u'elder', u'walk']
[u'reject', u'claim', u'financi', u'troubl']
[u'babi', u'crocodil', u'escap', u'darwin', u'farm']
[u'bali', u'monument', u'fix', u'vandal']
[u'bali', u'face', u'trial']
[u'bali', u'call', u'wit']
[u'billi', u'show', u'danger', u'union']
[u'bomber', u'strike', u'iraq', u'near', u'dead']
[u'brisban', u'hospit', u'win', u'clinic', u'excel', u'award']
[u'broccoli', u'cauliflow', u'farmer', u'comeback']
[u'brookton', u'shire', u'govt', u'loan']
[u'bruce', u'highway', u'shortcom', u'highlight']
[u'buoyant', u'hous', u'defi', u'nation', u'trend', u'stirl']
[u'bushwalk', u'airlift', u'nation', u'park']
[u'busi', u'group', u'advertis', u'back', u'chang']
[u'busi', u'group', u'back', u'workplac', u'law', u'shake']
[u'busi', u'outlook', u'improv']
[u'canal', u'clear', u'start']
[u'import', u'help', u'illawarra', u'economi', u'iemma']
[u'church', u'criticis', u'chang']
[u'church', u'concern', u'unfound', u'andrew']
[u'club', u'urg', u'sign', u'coalit', u'pledg']
[u'commission', u'play', u'indigen', u'centr', u'fear']
[u'commod', u'price', u'jump', u'boost', u'rural', u'trade']
[u'confection', u'leav', u'caulfield', u'field']
[u'council', u'crack', u'attack']
[u'council', u'hope', u'smooth', u'museum', u'manag', u'chang']
[u'council', u'seek', u'rail', u'meet', u'mcewen']
[u'council', u'stand', u'high', u'rise', u'reject']
[u'council', u'urg', u'join', u'forc', u'fight', u'calder']
[u'council', u'claim', u'compens', u'nativ', u'titl']
[u'council', u'tell', u'renegoti', u'sport', u'facil']
[u'council', u'meet', u'mayor', u'appoint']
[u'council', u'urg', u'rethink', u'park', u'issu']
[u'council', u'urg', u'coal']
[u'coupl', u'fin', u'model', u'scam']
[u'court', u'halt', u'cooper', u'anti', u'takeov', u'meet']
[u'cricket', u'chief', u'tight', u'lip', u'buchanan', u'futur']
[u'dept', u'explain', u'sexual', u'assault', u'servic', u'chang']
[u'doctor', u'group', u'back', u'matern', u'servic', u'trial']
[u'doubt', u'cast', u'swap', u'meet', u'futur']
[u'downer', u'effort', u'half', u'heart', u'labor']
[u'drought', u'cut', u'western', u'risk']
[u'drought', u'maintain', u'grip', u'region']
[u'speak', u'public', u'hospit', u'inquiri']
[u'eden', u'visitor', u'whale', u'time']
[u'elder', u'alert', u'bank', u'scam']
[u'elder', u'black', u'american', u'beat', u'arrest']
[u'elliott', u'enthusiast']
[u'elliott', u'put', u'hand']
[u'emerg', u'chang', u'bring', u'faster', u'respons', u'time']
[u'employ', u'soft', u'spot', u'survey', u'suggest']
[u'england', u'poor', u'owen', u'admit']
[u'escap', u'croc', u'pose', u'littl', u'threat']
[u'explor', u'unearth', u'tiwi', u'miner', u'treasur']
[u'eye', u'window', u'likelihood', u'stroke']
[u'falconio', u'famili', u'arriv', u'murder', u'trial']
[u'farmer', u'hope', u'rain', u'boost']
[u'feder', u'plan', u'restor', u'alpin', u'graze', u'right']
[u'fight', u'fund', u'plan', u'kiss', u'land']
[u'fine', u'art', u'communiti', u'honour', u'award']
[u'firefight', u'hope', u'weather', u'aid', u'effort', u'tackl']
[u'firefight', u'tackl', u'northern', u'bushfir']
[u'bali', u'trial', u'begin']
[u'face', u'trial', u'home', u'invas']
[u'flexibl', u'help', u'famili', u'say']
[u'footbal', u'time', u'final', u'arriv', u'lowi']
[u'forest', u'protest', u'camp', u'worri', u'minist']
[u'charg', u'attack', u'polic']
[u'grant', u'bail', u'fraud']
[u'gerrard', u'mend']
[u'giant', u'pool', u'head', u'highway']
[u'gilchrist', u'label', u'world', u'favourit']
[u'govt', u'claim', u'decept', u'elliot', u'richmond']
[u'govt', u'criticis', u'blue', u'legal', u'case']
[u'govt', u'criticis', u'treatment', u'indonesian']
[u'govt', u'look', u'boost', u'public', u'educ', u'enrol']
[u'govt', u'prepar', u'money', u'launder', u'law']
[u'govt', u'ask', u'interven', u'factori', u'cut']
[u'govt', u'step', u'illeg', u'fish', u'fight']
[u'govt', u'quiz', u'public', u'water', u'need']
[u'grain', u'harvest', u'farmer', u'look', u'fine', u'weather']
[u'grant', u'boost', u'cancer', u'gene', u'research']
[u'hanson', u'secur', u'poll', u'windfal']
[u'look', u'forward', u'fresh', u'start']
[u'hazard', u'reduct', u'burn', u'spark', u'fire']
[u'health', u'union', u'urg', u'adequ', u'bird', u'drug', u'suppli']
[u'hollywood', u'movi', u'misfir', u'core', u'audienc']
[u'india', u'rejoic', u'tendulkar', u'take', u'field']
[u'india', u'seek', u'permiss', u'world']
[u'inflat', u'fear', u'spark', u'market', u'slide']
[u'intern', u'raider', u'invad', u'melbourn']
[u'interst', u'firefight', u'chopper', u'upset']
[u'investig', u'begin', u'workplac', u'death']
[u'joondalup', u'inquiri', u'call', u'council', u'overhaul']
[u'kookaburra', u'wari', u'improv', u'kiwi']
[u'lake', u'macquari', u'council', u'seek']
[u'langer', u'reject', u'world', u'excus']
[u'largest', u'credit', u'union', u'merg']
[u'foreign', u'entri', u'arriv', u'melbourn']
[u'lismor', u'council', u'urg', u'altern', u'fuel']
[u'maher', u'earn', u'mark', u'sixer']
[u'mailout', u'begin', u'council', u'ballot', u'paper']
[u'die', u'head', u'injuri', u'ship', u'accid']
[u'hold', u'bali', u'blast']
[u'plead', u'guilti', u'fraud', u'relat', u'charg']
[u'face', u'court', u'northam', u'death']
[u'martin', u'overhaul', u'ministeri', u'travel', u'allow']
[u'master', u'irish', u'writer', u'win', u'booker', u'prize']
[u'mayor', u'fear', u'rail', u'mean', u'lose', u'servic']
[u'mayor', u'lose', u'polic']
[u'court', u'teen', u'kidnap']
[u'messag', u'stick', u'honour', u'pope', u'speech']
[u'migrant', u'reunion', u'travel', u'fund', u'fail', u'meet', u'demand']
[u'minist', u'order', u'review', u'health', u'servic', u'credit']
[u'minist', u'seek', u'feder', u'support', u'river', u'murray']
[u'miss', u'fisherman', u'simpli', u'disappear']
[u'molik', u'arthur', u'team', u'hopman']
[u'molopo', u'take', u'explor', u'permit']
[u'moneghetti', u'name', u'mayor', u'game', u'villag']
[u'irrig', u'alloc', u'possibl']
[u'reserv', u'power', u'need', u'summer', u'loom']
[u'morocco', u'repatri', u'detain', u'african']
[u'mother', u'refus', u'bail', u'child', u'case']
[u'mount', u'hoon', u'catch']
[u'highlight', u'bali', u'blast', u'impact', u'newcastl']
[u'newcastl', u'hous', u'market', u'remain', u'robust']
[u'propos', u'impetus', u'talk']
[u'charg', u'lay', u'armi', u'gang', u'rape', u'claim']
[u'nois', u'setback', u'line', u'project']
[u'quick', u'like', u'palm', u'land', u'tenur']
[u'vcat', u'option', u'resid', u'oppos', u'saleyard']
[u'name', u'newcom', u'nation', u'test']
[u'odonnel', u'king', u'debut', u'kangaroo']
[u'million', u'await']
[u'million', u'await', u'quak', u'pakistan']
[u'opposit', u'question', u'tunnel', u'payment']
[u'pair', u'assault', u'mackay', u'home', u'invas']
[u'pair', u'face', u'court', u'child', u'assault', u'charg']
[u'parasit', u'writer', u'prompt', u'nobel', u'revolt']
[u'patel', u'boss', u'defend', u'action']
[u'pipelin', u'boost', u'wimmera', u'malle', u'lake']
[u'defend', u'chang']
[u'polic', u'crack', u'wayward', u'youth']
[u'polic', u'fear', u'macquari', u'field', u'rioter', u'avoid']
[u'polic', u'investig', u'oombulgurri', u'drown']
[u'polic', u'progress', u'bali', u'blast', u'investig']
[u'policemen', u'kill', u'afghanistan', u'ambush']
[u'polic', u'probe', u'port', u'hedland', u'theft']
[u'poll', u'open', u'liberia']
[u'probe', u'begin', u'shop', u'blaze']
[u'propos', u'roper', u'river', u'grog', u'upset', u'fishermen']
[u'protest', u'criticis', u'coupl', u'law']
[u'public', u'servic', u'need', u'recruit', u'overhaul']
[u'push', u'council', u'nuclear', u'free', u'zone']
[u'queen', u'elizabeth', u'hospit', u'stage', u'detail']
[u'rain', u'halt', u'relief', u'effort', u'pakistan']
[u'rape', u'trial', u'close', u'woman', u'evid']
[u'spell', u'price', u'risk']
[u'real', u'estat', u'agent', u'sell', u'lake', u'feder', u'resort']
[u'rebel', u'massacr', u'villag', u'congo']
[u'region', u'median', u'hous', u'rise']
[u'report', u'consid', u'lindesaynorth', u'beaudesert', u'growth']
[u'report', u'highlight', u'kalgoor', u'indigen', u'child']
[u'report', u'highlight', u'loom', u'energi', u'demand']
[u'resid', u'urg', u'cyclon', u'tsunami', u'readi']
[u'retail', u'complain', u'unfair', u'milk', u'price', u'increas']
[u'rooney', u'vow', u'ditch', u'temper']
[u'rowena', u'wallac', u'escap', u'jail', u'term', u'fraud']
[u'salmonella', u'outbreak', u'spread', u'south']
[u'saltwat', u'croc', u'loos']
[u'plan', u'pandem', u'threat']
[u'sartor', u'approv', u'luna', u'park', u'develop']
[u'scheme', u'offer', u'port', u'hedland', u'fauna', u'protect']
[u'secur', u'fear', u'bali', u'bomber', u'move']
[u'seven', u'join', u'wallabi', u'squad', u'game']
[u'sharapova', u'want', u'play']
[u'shooter', u'help', u'control', u'park', u'feral', u'anim']
[u'skydiv', u'die', u'collis']
[u'space', u'tourist', u'come', u'earth']
[u'speed', u'bruce', u'highway', u'driver', u'worri', u'polic']
[u'starcraft']
[u'sting', u'attack', u'duti', u'policeman']
[u'stop', u'work', u'meet', u'wont', u'close', u'branch', u'centrelink']
[u'strong', u'expect', u'cattl', u'station']
[u'student', u'evacu', u'transform', u'explos']
[u'sunshin', u'coast', u'enrol', u'rise']
[u'sunshin', u'motorway', u'work', u'finish']
[u'superson', u'success', u'lift', u'japanes', u'research']
[u'support', u'beazley', u'hit', u'year']
[u'survivor', u'pull', u'quak', u'ruin']
[u'teari', u'newton', u'john', u'keep', u'quiet', u'miss', u'lover']
[u'thiev', u'poach', u'rare', u'beech', u'tree']
[u'thousand', u'sleep', u'rough', u'relief', u'rush', u'continu']
[u'tougher', u'jail', u'answer', u'say', u'prison', u'group']
[u'truck', u'roll', u'forc', u'highway', u'closur']
[u'turnbul', u'brush', u'costello', u'attack']
[u'aliv', u'pakistani', u'quak', u'rubbl']
[u'uganda', u'leader', u'obot', u'die']
[u'make', u'small', u'iraq', u'troop', u'number']
[u'elect', u'secur', u'council', u'member']
[u'govt', u'refus', u'extens', u'wast', u'dump', u'comment']
[u'potato', u'grower', u'retain', u'wholesal']
[u'virgin', u'rule', u'send', u'signal', u'employ', u'goward']
[u'wallabi', u'welcom', u'face', u'europ', u'tour']
[u'weather', u'critic', u'search', u'miss', u'angler']
[u'websit', u'show', u'busi', u'loophol', u'union']
[u'western', u'health', u'servic', u'microscop']
[u'wheel', u'death', u'spark', u'safeti', u'warn']
[u'win', u'gippi', u'girl', u'nation', u'championship']
[u'woman', u'accus', u'make', u'bomb', u'hama']
[u'wood', u'ahead', u'rank']
[u'worker', u'warn', u'workplac', u'chang', u'impact']
[u'workload', u'jump', u'strain', u'famili', u'servic']
[u'worst', u'road', u'year']
[u'boost', u'region', u'mental', u'health']
[u'abar', u'investig', u'viabil', u'produc']
[u'aborigin', u'skull', u'return', u'descend']
[u'releas', u'small', u'busi', u'disput', u'mediat', u'plan']
[u'adelaid', u'pray', u'bali', u'victim']
[u'adelaid', u'prepar', u'counter', u'terror', u'exercis']
[u'airport', u'fault', u'delay', u'termin', u'off']
[u'alcohol', u'restrict', u'answer', u'palm']
[u'armi', u'consid', u'gang', u'rape', u'claim']
[u'australian', u'mourn', u'bali', u'attack', u'victim']
[u'australia', u'post', u'record', u'small', u'profit', u'rise']
[u'australia', u'stand', u'indonesia', u'downer']
[u'author', u'urg', u'explain', u'fuel', u'price', u'dispar']
[u'weather', u'hit', u'quak', u'stricken', u'pakistan']
[u'balines', u'protest', u'storm', u'prison']
[u'bali', u'lawyer', u'challeng', u'legal', u'case']
[u'bali', u'trial', u'continu']
[u'bali', u'victim', u'sister', u'appeal', u'understand']
[u'bank', u'miner', u'bolster']
[u'barrett', u'unsur', u'thompson', u'futur']
[u'price', u'rise', u'loom', u'high', u'secur', u'water', u'user']
[u'blatter', u'attack', u'wild', u'west', u'spend', u'bing']
[u'blaze', u'take', u'heavi', u'toll', u'clean', u'firm']
[u'burberri', u'ferret', u'furri', u'offend']
[u'buyer', u'snap', u'motorway', u'tyre']
[u'spirit', u'trade', u'sydney', u'cairn', u'rout']
[u'camel', u'industri', u'hop', u'live', u'export']
[u'campfir', u'long', u'run', u'blaze']
[u'canadian', u'miner', u'invest', u'copper', u'gold', u'project']
[u'carlton', u'memori', u'mark', u'bali', u'bomb']
[u'cart', u'diamond', u'deserv', u'caulfield', u'chanc', u'say']
[u'cash', u'king', u'catch', u'hand', u'till']
[u'cattleman', u'defi', u'nation', u'park']
[u'central', u'miner', u'tripl', u'export']
[u'china', u'launch', u'second', u'man', u'space', u'mission']
[u'probe', u'north', u'complaint']
[u'committe', u'address', u'agricultur', u'land', u'develop']
[u'concern', u'mount', u'dimia', u'medic', u'provid']
[u'concern', u'kangaroo', u'cull', u'dismiss']
[u'consum', u'confid', u'slide', u'continu']
[u'contest', u'help', u'cull', u'pest', u'fish']
[u'corbi', u'lawyer', u'plan', u'appeal']
[u'corbi', u'sentenc', u'year']
[u'council', u'stop', u'work', u'meet', u'hold']
[u'council', u'debat', u'nuclear', u'free', u'zone']
[u'council', u'unhappi', u'plan', u'survey', u'respons']
[u'count', u'begin', u'liberian', u'elect']
[u'court', u'allow', u'builder', u'lift', u'accid']
[u'court', u'hear', u'bali', u'case']
[u'court', u'rule', u'lion', u'nathan', u'case', u'week']
[u'cray', u'fishermen', u'plan', u'recoveri', u'strategi']
[u'crime', u'commiss', u'boss', u'face', u'corrupt', u'charg']
[u'crimin', u'grind', u'breaker', u'galbal', u'die']
[u'custom', u'net', u'better', u'fish', u'resourc', u'protect']
[u'cyclist', u'speak', u'bendigo']
[u'level', u'melbourn', u'water', u'rise']
[u'desert', u'park', u'celebr', u'bird', u'breed', u'success']
[u'discard', u'gilham', u'depart', u'port', u'regret']
[u'diver', u'join', u'search', u'miss', u'angler']
[u'probe', u'launceston', u'mayor', u'candid']
[u'dravid', u'tip', u'replac', u'ganguli', u'indian', u'captain']
[u'draw', u'put', u'segundo', u'rail']
[u'drought', u'come', u'shoe']
[u'earthquak', u'leav', u'thousand', u'homeless', u'kashmir']
[u'earthquak', u'relief', u'effort', u'ramp', u'storm']
[u'educ', u'confer', u'hear', u'iraq', u'situat']
[u'emerg', u'servic', u'wont', u'strike', u'govt']
[u'emerg', u'servic', u'wont', u'strike', u'govt']
[u'employ', u'group', u'reject', u'law', u'critic']
[u'european', u'polic', u'smash', u'peopl', u'smuggl', u'ring']
[u'export', u'urg', u'advantag', u'global', u'market']
[u'farmer', u'streamlin', u'drought']
[u'farmer', u'warn', u'mous', u'plagu', u'threat']
[u'fear', u'plan', u'chang', u'hurt', u'worker']
[u'flintoff', u'share', u'cricket', u'award', u'glori']
[u'region', u'telstra', u'execut', u'say', u'dont', u'sell']
[u'forum', u'focus', u'fitzroy', u'develop', u'option']
[u'forum', u'highlight', u'rural', u'dentist', u'shortag']
[u'forum', u'discuss', u'kimberley', u'economi']
[u'french', u'koala', u'head', u'home']
[u'giant', u'pumpkin', u'carv', u'win', u'streak']
[u'govt', u'approv', u'wind', u'farm', u'near', u'goulburn']
[u'govt', u'look', u'privatis']
[u'govt', u'outlin', u'plan', u'alcohol', u'court']
[u'govt', u'urg', u'indonesian', u'fish', u'deal']
[u'green', u'group', u'urg', u'grey', u'nurs', u'shark', u'protect']
[u'green', u'claim', u'govt', u'overlook', u'chines', u'detaine']
[u'gympi', u'face', u'court', u'child', u'charg']
[u'harrison', u'hang', u'footi', u'boot']
[u'health', u'servic', u'prepar', u'bird', u'threat']
[u'heritag', u'council', u'consid', u'cascad', u'breweri', u'site']
[u'high', u'mark', u'uni', u'learn', u'manag', u'degre']
[u'hobbit', u'arm', u'point', u'african', u'relat']
[u'hope', u'improv', u'drought', u'condit', u'continu']
[u'hop', u'indigen', u'drama', u'seri']
[u'howard', u'reject', u'rsls', u'anzac', u'fear']
[u'hundr', u'face', u'wait', u'telstra', u'reconnect']
[u'icac', u'urg', u'probe', u'health', u'servic', u'tender']
[u'donat', u'pakistan', u'quak', u'relief']
[u'decid', u'world', u'host', u'year']
[u'india', u'warn', u'earthquak', u'death']
[u'indigen', u'land', u'partnership', u'fund', u'extend']
[u'indigen', u'survey', u'find', u'famili', u'better', u'mental']
[u'industri', u'wont', u'affect', u'centrelink', u'payment']
[u'inflat', u'fear', u'cloud', u'trade']
[u'injur', u'camplin', u'confid', u'olymp', u'chanc']
[u'injur', u'teen', u'return', u'home', u'bali', u'bomb']
[u'spend', u'justifi', u'say']
[u'iraqi', u'suicid', u'bomber', u'kill', u'polic']
[u'joyc', u'cross', u'floor']
[u'joyc', u'stymi', u'nelson', u'plan']
[u'joyc', u'vote', u'govt']
[u'kalgoorli', u'boulder', u'trade', u'hour']
[u'kasper', u'battl', u'hamstr', u'injuri']
[u'kerin', u'confid', u'defeat', u'challeng']
[u'kerin', u'face', u'leadership', u'challeng']
[u'labor', u'uranium', u'decis', u'hit', u'miner', u'explor']
[u'lara', u'pledg', u'test', u'fight']
[u'magistr', u'urg', u'circl', u'court']
[u'die', u'south', u'west', u'crash']
[u'disqualifi', u'drive', u'life']
[u'fin', u'illeg', u'fish']
[u'overboard', u'prompt', u'search', u'coast']
[u'mari', u'rise', u'anchor', u'lift', u'year']
[u'mayor', u'impress', u'aberdeen', u'doctor', u'push']
[u'mayor', u'china', u'citi', u'summit']
[u'miner', u'make', u'precious', u'metal']
[u'miner', u'lose', u'challeng', u'power']
[u'miner', u'techniqu', u'miner', u'search']
[u'miner', u'unhappi', u'mayor', u'request']
[u'miner', u'welcom', u'alp', u'uranium', u'debat']
[u'mine', u'council', u'welcom', u'labor', u'stanc', u'uranium']
[u'minist', u'consid', u'updat', u'forens', u'test']
[u'minist', u'name', u'shark', u'world', u'heritag']
[u'mnemosyn', u'win', u'thousand', u'guinea']
[u'mobil', u'ask', u'bring', u'forward', u'refineri', u'review']
[u'bali', u'trial', u'open']
[u'bed', u'open', u'gold', u'coast', u'hospit']
[u'moruya', u'blaze', u'threaten', u'properti']
[u'motogp', u'strike', u'threat', u'reced']
[u'fear', u'pipelin', u'fund']
[u'beat', u'calder', u'fund']
[u'mum', u'dad', u'heed', u'appeal', u'pakistan']
[u'nation', u'galleri', u'doubl', u'display', u'space']
[u'attack', u'bali', u'survivor', u'grief', u'gallop']
[u'bone', u'weight', u'hobbit', u'theori']
[u'csiro', u'fungus', u'spray', u'plagu', u'locust', u'away']
[u'mudslid', u'kill', u'guatemala']
[u'nichol', u'school', u'project', u'includ', u'communiti']
[u'nomin', u'close', u'chaffey', u'nation']
[u'north', u'east', u'join', u'water', u'sustain', u'bodi']
[u'north', u'west', u'begin', u'prepar', u'cyclon', u'season']
[u'telco', u'consid', u'aapt', u'purchas', u'offer']
[u'odonnel', u'nation', u'select', u'surpris', u'cowboy']
[u'offic', u'face', u'action', u'leap', u'data', u'releas']
[u'footbal', u'rule', u'women', u'know', u'best']
[u'opposit', u'back', u'plan', u'crimin', u'code', u'chang']
[u'opposit', u'seek', u'amend', u'murder', u'law']
[u'ovarian', u'cancer', u'vaccin', u'trial', u'expand']
[u'patel', u'boss', u'complaint']
[u'perth', u'rememb', u'bali', u'bomb', u'victim']
[u'petit', u'clarenc', u'river', u'second', u'cross']
[u'phone', u'technolog', u'boost', u'illawarra']
[u'announc', u'move', u'tape']
[u'chat', u'defeat', u'accc']
[u'polic', u'continu', u'fatal', u'crash', u'investig']
[u'polic', u'arrest', u'gunshot']
[u'polic', u'minist', u'silent', u'lacklustr', u'crime', u'solv']
[u'polic', u'identifi', u'cliff', u'bodi']
[u'port', u'smelter', u'blame', u'kid', u'lead', u'level']
[u'portug', u'honour', u'annan', u'timor', u'role']
[u'priest', u'reject', u'marri', u'ordin', u'debat']
[u'public', u'ask', u'fund', u'wish', u'list']
[u'public', u'urg', u'catchment', u'action', u'plan']
[u'push', u'debat', u'child', u'smack']
[u'boost', u'renal', u'servic', u'budget']
[u'rain', u'fail', u'deter', u'bali', u'memori', u'crowd']
[u'rann', u'back', u'kerin', u'liber', u'leader']
[u'reef', u'line', u'fish', u'studi', u'near']
[u'refresh', u'minichiello', u'keen', u'nation', u'mark']
[u'region', u'fuel', u'price', u'worri', u'racq']
[u'report', u'criticis', u'mental', u'health']
[u'report', u'face', u'leak', u'inquiri']
[u'rescuer', u'work', u'save', u'strand', u'mink', u'whale']
[u'retail', u'price', u'reflect', u'wholesal', u'cost']
[u'tinto', u'choos', u'improv', u'project', u'firm']
[u'road', u'rage', u'attack', u'clear', u'manslaught']
[u'roadshow', u'deliv', u'safeti', u'messag']
[u'savag', u'hailstorm', u'sweep', u'gold', u'coast']
[u'schroeder', u'confirm', u'departur', u'offic']
[u'scientist', u'renew', u'effort', u'clone', u'tassi', u'tiger']
[u'scott', u'confirm', u'johnni', u'walker', u'defenc']
[u'seafood', u'council', u'welcom', u'nativ', u'titl', u'rule']
[u'search', u'miss', u'rock', u'fisherman', u'call']
[u'search', u'survivor', u'continu']
[u'secker', u'label', u'govt', u'water', u'stunt']
[u'senat', u'look', u'support', u'inquiri']
[u'shire', u'offer', u'nickel', u'assur']
[u'simpli', u'petrol', u'sniffer', u'say', u'abbott']
[u'skydiv', u'death', u'overshadow', u'cycl', u'race']
[u'south', u'coast', u'face', u'weed', u'woe']
[u'spin', u'king', u'battl']
[u'stage', u'thousand', u'guinea']
[u'star', u'cement', u'stewart', u'glitter', u'career']
[u'stock', u'die', u'south', u'east', u'truck', u'crash']
[u'stoddart', u'leav', u'door', u'open', u'comeback']
[u'stoke', u'right', u'plan']
[u'stoke', u'deni', u'knowledg', u'rival']
[u'storm', u'sweep', u'gold', u'coast']
[u'support', u'boost', u'separ', u'shoalhaven', u'father']
[u'support', u'grow', u'boat', u'harbour', u'plan']
[u'swim', u'bodi', u'push', u'video', u'replay']
[u'sydney', u'hobart', u'neglig', u'case', u'settl']
[u'vegi', u'industri', u'fear', u'plan', u'food', u'label']
[u'wait', u'list', u'declin']
[u'teenag', u'face', u'firearm', u'charg']
[u'predict', u'gloomi', u'despit', u'profit', u'hike']
[u'tourism', u'bodi', u'plead', u'handout']
[u'tradit', u'owner', u'clear', u'fortescu', u'metal', u'project']
[u'truck', u'crash', u'delay', u'mail', u'deliveri']
[u'envoy', u'accus', u'israel', u'stifl', u'human', u'right']
[u'union', u'bodi', u'warn', u'chang']
[u'union', u'boss', u'meet', u'staff', u'vote']
[u'union', u'surg', u'riverland']
[u'union', u'maintain', u'power', u'plant', u'wage', u'rise', u'campaign']
[u'union', u'monitor', u'water', u'tower', u'inquest']
[u'uranium', u'mine', u'equal', u'nuclear', u'weapon', u'confer']
[u'honour', u'penfold', u'winemak']
[u'vandal', u'attack', u'servic', u'station']
[u'vicroad', u'compromis', u'tree', u'remov']
[u'ward', u'attend', u'face', u'patient', u'rape', u'charg']
[u'warrnambool', u'airborn', u'record']
[u'wildcat', u'lose', u'roger', u'ankl', u'injuri']
[u'work', u'ban', u'threaten', u'phillip', u'island']
[u'wreath', u'lay', u'canberra', u'mark', u'bali', u'anniversari']
[u'abbott', u'resist', u'legalis', u'abort', u'pill']
[u'accus', u'bali', u'ringlead', u'front', u'court']
[u'teacher', u'seek', u'rise', u'ahead', u'chang']
[u'aftershock', u'scar', u'jitteri', u'pakistani']
[u'aloisi', u'unit']
[u'fear', u'doctor', u'deal', u'settl']
[u'anti', u'terror', u'law', u'draw', u'right', u'watchdog']
[u'armidal', u'polic', u'station', u'work', u'begin']
[u'armi', u'call', u'grenad', u'discoveri']
[u'arson', u'suspect', u'eurobodalla', u'fire']
[u'australia', u'draw', u'england', u'comm', u'game', u'rugbi']
[u'australian', u'polic', u'undermin', u'halloran']
[u'australian', u'troop', u'come', u'iraq']
[u'australian', u'troop', u'iraq']
[u'negoti', u'futur', u'iraq', u'wheat']
[u'board', u'member', u'concern', u'budget', u'figur']
[u'baggaley', u'test', u'posit', u'steroid']
[u'bali', u'bomb', u'detaine', u'free']
[u'bali', u'ringlead', u'mule', u'face', u'court']
[u'bank', u'queensland', u'profit', u'jump']
[u'crowd', u'turn', u'rememb', u'bali', u'victim']
[u'biker', u'urg', u'care', u'travel']
[u'bird', u'confirm', u'romania']
[u'blair', u'dig', u'anti', u'terror', u'law', u'fight']
[u'blue', u'chip', u'plung', u'drag', u'lower']
[u'bolkus', u'win', u'australian', u'libel', u'action']
[u'boss', u'happi', u'serv']
[u'boswel', u'quiet', u'joyc', u'vote', u'talk']
[u'bradman', u'famili', u'lash', u'indian', u'biscuit', u'deal']
[u'british', u'playwright', u'win', u'nobel', u'literatur', u'prize']
[u'bundi', u'special', u'doubl', u'mango', u'crop']
[u'bush', u'warn', u'syria', u'lebanon', u'iraq']
[u'busi', u'school', u'boss', u'head', u'fair', u'commiss']
[u'camel', u'industri', u'prospect', u'continu', u'improv']
[u'cane', u'train', u'spark', u'blaze']
[u'capsicum', u'spray', u'fail', u'halt', u'attack', u'polic']
[u'careless', u'rid', u'suspens', u'cost', u'boss']
[u'sale', u'acceler', u'mark']
[u'cattl', u'breeder', u'tour', u'celebr', u'breed', u'centenari']
[u'centrelink', u'worker', u'threaten', u'stop', u'work', u'meet']
[u'charg', u'lay', u'australian', u'model']
[u'chechen', u'rebel', u'attack', u'russian', u'town', u'dead']
[u'children', u'death', u'investig']
[u'chill', u'newborn', u'better', u'abl', u'avoid', u'brain', u'damag']
[u'circl', u'sentenc', u'need', u'care', u'introduct']
[u'clipsal', u'closur', u'concern', u'air', u'meet']
[u'commission', u'happi', u'talk', u'halloran']
[u'communiti', u'idea', u'seek', u'heritag', u'protect']
[u'concern', u'rais', u'smith', u'famili', u'emerg']
[u'conflict', u'forc', u'kucera', u'resign']
[u'corbi', u'hear', u'sentenc', u'reduct']
[u'corbi', u'prosecutor', u'challeng', u'sentenc']
[u'corbi', u'sentenc', u'harsh', u'say', u'bali', u'court']
[u'cotton', u'market', u'surg', u'month', u'high']
[u'council', u'endur', u'ratepay', u'wrath', u'saleyard']
[u'council', u'look', u'road', u'mainten', u'worri']
[u'council', u'support', u'mine', u'explor', u'break', u'push']
[u'council', u'challeng', u'telstra', u'servic']
[u'court', u'jail', u'bundaberg', u'rapist', u'year']
[u'cross', u'citi', u'tunnel', u'toll', u'waiv', u'sydney']
[u'cycl', u'tourism', u'promis', u'spin', u'off']
[u'deadlin', u'loom', u'govt', u'appeal', u'gang']
[u'demand', u'coal', u'expect', u'power']
[u'disney', u'offer', u'desper', u'itun', u'download']
[u'outlin', u'charg', u'corrupt', u'bodi', u'head']
[u'want', u'wolf', u'creek', u'delay']
[u'driver', u'train', u'go', u'mobil']
[u'eastman', u'case', u'spark', u'public', u'hous', u'rethink']
[u'drought', u'assist', u'chang', u'elimin', u'delay']
[u'find', u'bird', u'romania']
[u'extra', u'pledg', u'fight', u'bird']
[u'fear', u'budget', u'airlin', u'forc', u'region', u'airport']
[u'feder', u'fund', u'seek', u'irrig', u'infrastructur']
[u'fight', u'corner', u'scratch', u'give', u'lachlan', u'river']
[u'intl', u'rule']
[u'fix', u'speed', u'camera', u'road', u'death', u'govt']
[u'fli', u'caus', u'headach', u'grazier']
[u'bureaucrat', u'reviv', u'bushfir']
[u'franc', u'serbia', u'montenegro', u'sweden', u'world']
[u'fraser', u'honour', u'high', u'profil', u'lawyer', u'pass']
[u'fund', u'boost', u'benefit', u'hundr', u'cardiac']
[u'fund', u'address', u'mount', u'rental', u'issu']
[u'gibbon', u'suspend', u'parliament', u'highway']
[u'gippsland', u'firm', u'exclud', u'raaf', u'base', u'contract']
[u'govt', u'ask', u'rail', u'servic', u'confirm']
[u'govt', u'defend', u'handl', u'fairbairn', u'park', u'leas']
[u'govt', u'dismiss', u'anzac', u'damag', u'find']
[u'govt', u'legisl', u'erod', u'state', u'right', u'joyc']
[u'govt', u'discuss', u'abort', u'pill', u'say']
[u'govt', u'urg', u'thwart', u'australia', u'trademark']
[u'govt', u'urg', u'calm', u'tourism', u'slow']
[u'govt', u'vow', u'train', u'vandal']
[u'group', u'beat', u'technic', u'colleg', u'meet']
[u'guatemala', u'storm', u'orphan', u'children']
[u'battl', u'erupt', u'russian', u'town']
[u'gunman', u'escap', u'chines', u'schoolyard', u'shoot']
[u'herald', u'journalist', u'charg', u'contempt']
[u'warn', u'loom', u'accommod', u'crisi']
[u'hop', u'find', u'earthquak', u'survivor', u'fade']
[u'hous', u'blaze', u'victim', u'thank', u'communiti']
[u'immigr', u'fund', u'reward', u'deport', u'labor']
[u'indigen', u'group', u'land', u'access', u'deal']
[u'industri', u'pressur', u'lower', u'ethanol', u'blend']
[u'inflat', u'fear', u'continu', u'weigh', u'wall']
[u'break', u'rule', u'elector', u'bodi']
[u'jam', u'hardi', u'staff', u'strike', u'contract', u'disput']
[u'jobless', u'rate', u'post', u'small', u'rise']
[u'joyc', u'open', u'govt', u'divis']
[u'joyc', u'vote', u'fallout', u'overreact']
[u'kangaroo', u'wari', u'kiwi']
[u'kashmir', u'relief', u'oper', u'gain', u'pace']
[u'kerin', u'challeng', u'shut']
[u'labor', u'call', u'region', u'airport', u'secur', u'audit']
[u'labor', u'fear', u'inquiri', u'short']
[u'lake', u'eyr', u'basin', u'panel', u'meet', u'studi', u'resourc']
[u'lampard', u'help', u'england', u'world', u'group']
[u'societi', u'seek', u'review', u'famili', u'violenc']
[u'liber', u'ask', u'abort', u'drug', u'review']
[u'lion', u'wont', u'probe', u'misbehaviour', u'claim']
[u'local', u'govt', u'group', u'take', u'unit', u'stanc', u'issu']
[u'jail', u'hall', u'creek', u'attack']
[u'plead', u'guilti', u'murder', u'acquaint']
[u'market', u'campaign', u'focus', u'great', u'sandi', u'strait']
[u'medic', u'head', u'umbakumba', u'guard']
[u'meninga', u'readi', u'lead', u'queensland']
[u'meninga', u'coach', u'maroon']
[u'mental', u'health', u'boost', u'mackay', u'moranbah']
[u'miller', u'sack', u'red', u'coach', u'report']
[u'industri', u'group', u'support', u'chang']
[u'miner', u'conduct', u'grenfel', u'prospect']
[u'miner', u'see', u'long', u'futur', u'bowen', u'basin', u'coal']
[u'minist', u'appreci', u'region', u'rapid', u'growth']
[u'minist', u'tell', u'truth', u'leap', u'leak', u'say', u'doyl']
[u'minist', u'wife', u'share', u'deal', u'prompt', u'sack']
[u'minist', u'warn', u'nationalis', u'dole', u'threat']
[u'minist', u'warn', u'rate', u'exempt', u'danger']
[u'mitsubishi', u'peg', u'hop']
[u'money', u'defraud', u'narrandera', u'bank', u'account']
[u'free', u'breast', u'screen', u'hunter']
[u'polic', u'patrol', u'great', u'ocean']
[u'secur', u'announc', u'mildura']
[u'mother', u'charg', u'newborn', u'murder']
[u'pleas', u'swansea', u'bridg', u'normal']
[u'fail', u'support', u'council', u'nuclear', u'free', u'zone']
[u'press', u'ahead', u'opposit', u'leadership']
[u'museum', u'asset', u'creat', u'communiti', u'anger']
[u'musharraf', u'call', u'patienc', u'roll']
[u'nasa', u'hail', u'china', u'man', u'space', u'mission']
[u'nation', u'resum', u'servic']
[u'nation', u'urg', u'action', u'bypass', u'bridg']
[u'nelson', u'thwart', u'dump', u'opposit']
[u'mitsubishi', u'symbolis', u'teamwork']
[u'reward', u'offer', u'solv', u'murder', u'mysteri']
[u'bid', u'telstra', u'fund', u'invest']
[u'north', u'doctor', u'head', u'recruit', u'drive']
[u'govt', u'appeal', u'rapist', u'sentenc', u'reduct']
[u'challeng', u'gang', u'rapist', u'sentenc']
[u'nurs', u'discuss', u'chang']
[u'ombudsman', u'highlight', u'polic', u'rort', u'inconsist']
[u'ombudsman', u'make', u'scath', u'critic', u'transit']
[u'opposit', u'highlight', u'communic', u'woe']
[u'organis', u'predict', u'comm', u'game', u'sell']
[u'outrag', u'govt', u'promis', u'nuclear', u'wast', u'dump', u'fight']
[u'parol', u'process', u'includ', u'victim']
[u'patel', u'complaint', u'regist', u'boss']
[u'centrelink', u'custom', u'servic', u'centr']
[u'plan', u'focus', u'snug', u'cove', u'develop']
[u'plastic', u'declin', u'report']
[u'player', u'bodi', u'hit', u'blatter']
[u'polic', u'crack', u'street', u'crime']
[u'polic', u'search', u'overboard']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'remov', u'babi', u'drug', u'raid']
[u'pregnant', u'aborigin', u'test', u'stds']
[u'prevent', u'assist', u'death', u'penalti', u'case']
[u'public', u'urg', u'fuel', u'price']
[u'pulp', u'document', u'reveal', u'truth', u'say', u'beazley']
[u'qanta', u'boss', u'back', u'chang']
[u'ponder', u'origin', u'coach', u'appoint']
[u'urg', u'rethink', u'repeat', u'drink', u'driver']
[u'remot', u'villag', u'begin', u'receiv']
[u'resid', u'quiz', u'caravan', u'park', u'sale']
[u'resid', u'urg', u'consid', u'tunnel', u'benefit']
[u'boost', u'west', u'wyalong', u'flight']
[u'right', u'watchdog', u'blast', u'anti', u'terror', u'law']
[u'roadwork', u'destroy', u'anzac', u'sit', u'inquiri']
[u'rowl', u'dylan', u'quill']
[u'ruddock', u'deni', u'incent', u'pay', u'dimia']
[u'runner', u'accident', u'spark', u'emerg', u'respons']
[u'russian', u'street', u'battl', u'kill']
[u'saddam', u'face', u'public', u'trial']
[u'saltwat', u'croc', u'remain', u'loos']
[u'senat', u'inquiri', u'fair', u'howard']
[u'busi', u'aftermath', u'gold', u'coast', u'storm']
[u'shelter', u'manag', u'month', u'chang', u'hand']
[u'ship', u'rescu', u'sunshin', u'coast']
[u'singapor', u'prepar', u'exercis']
[u'slurp', u'china', u'invent', u'noodl']
[u'smack', u'fail', u'opposit', u'support']
[u'socceroo', u'meet', u'uruguay', u'world', u'qualifi']
[u'sperm', u'donor', u'order', u'child', u'support']
[u'stanthorp', u'moon', u'asteroid', u'honour']
[u'stoner', u'chase', u'championship', u'phillip', u'island']
[u'student', u'welcom', u'voluntari', u'student', u'union', u'delay']
[u'subsidi', u'possibl', u'sniff', u'fuel']
[u'teen', u'send', u'suprem', u'court', u'sentenc']
[u'teen', u'face', u'court', u'accus', u'rap', u'year']
[u'thwait', u'reject', u'pipelin', u'fund', u'claim']
[u'tooth', u'decay', u'bite', u'dental', u'wait', u'list']
[u'tourism', u'gather', u'spotlight', u'visitor', u'centr', u'effort']
[u'town', u'look', u'develop', u'fuel', u'purchas', u'group']
[u'town', u'lament', u'loss', u'busi', u'centr']
[u'truck', u'industri', u'reject', u'nullarbor', u'hitchhik', u'call']
[u'turkey', u'bird', u'dead', u'type', u'commiss']
[u'tweed', u'council', u'work', u'disrupt', u'local']
[u'ultralight', u'crash', u'occur', u'test']
[u'union', u'brief', u'pilbara', u'worker', u'plan', u'chang']
[u'uruguay', u'threaten', u'unfriend', u'welcom']
[u'lead', u'spam', u'dirti', u'dozen']
[u'journalist', u'free', u'gaza', u'abduct']
[u'vail', u'see', u'hope', u'talk']
[u'vasil', u'hand', u'caulfield', u'lifelin']
[u'vaughan', u'book', u'expos', u'childish', u'smith']
[u'set', u'cool', u'period', u'late', u'abort']
[u'delay', u'upset', u'rivcol']
[u'govt', u'pressur', u'rethink', u'uranium']
[u'wale', u'skipper', u'thoma', u'assault', u'charg']
[u'waratah', u'come', u'cost']
[u'wast', u'plan', u'review', u'consid', u'recycl', u'option']
[u'water', u'user', u'fight', u'price', u'rise']
[u'watson', u'macgil', u'super', u'test']
[u'woman', u'charg', u'caravan', u'park', u'stab']
[u'woman', u'hurt', u'advancetown', u'crash']
[u'xstrata', u'ground', u'continu', u'gretley']
[u'zimbabw', u'opposit', u'boycott', u'senat', u'elect']
[u'adelaid', u'hawk']
[u'age', u'australian', u'posit', u'life']
[u'airport', u'secur', u'boost', u'fund']
[u'airport', u'secur', u'upgrad', u'plan']
[u'alpin', u'graze', u'fight', u'hold']
[u'back', u'propos', u'medicar', u'claim']
[u'announc', u'boss']
[u'arm', u'rebel', u'hole', u'russian', u'citi']
[u'asylum', u'seeker', u'leav', u'nauru']
[u'aussi', u'rebuild', u'loss', u'langer']
[u'aust', u'handl', u'bird', u'research', u'say']
[u'australia', u'bat', u'super', u'test']
[u'australia', u'lose', u'quick', u'wicket']
[u'murder', u'jail', u'year']
[u'ton', u'hayden']
[u'baggaley', u'speak', u'posit', u'drug', u'test']
[u'baggaley', u'hear', u'drug', u'posit']
[u'beethoven', u'manuscript', u'rediscov', u'year']
[u'belmont', u'hospit', u'improv', u'ambul', u'access']
[u'bennett', u'role', u'play', u'say', u'meninga']
[u'crowd', u'enjoy']
[u'crowd', u'expect', u'farewel', u'bali', u'blast', u'victim']
[u'biker', u'ride', u'honour', u'sheen']
[u'blue', u'trounc', u'woeful', u'bull', u'gabba']
[u'bordertown', u'civic', u'centr', u'plan']
[u'bradman', u'foundat', u'reject', u'biscuit', u'critic']
[u'branch', u'line', u'give', u'road']
[u'bruce', u'highway', u'fire', u'think', u'deliber']
[u'buchanan', u'coach', u'australia']
[u'campaign', u'launch', u'debt', u'collector', u'misconduct']
[u'canegrow', u'offer', u'assur']
[u'cannabi', u'scheme', u'eas', u'court', u'burden']
[u'caravan', u'park', u'poll', u'late']
[u'chemic', u'blast', u'put', u'pair', u'hospit']
[u'chines', u'spacecraft', u'correct', u'orbit']
[u'lead', u'network']
[u'civil', u'case', u'hook', u'death', u'delay']
[u'coast', u'secur', u'famili', u'relationship', u'centr']
[u'code', u'conduct', u'recommend', u'regul', u'winegrap']
[u'compani', u'cape', u'york', u'bauxit', u'mine', u'leas']
[u'coast', u'poultri']
[u'contract', u'harvest', u'unhappi', u'protocol']
[u'coonan', u'detail', u'digit', u'radio', u'roll']
[u'corbi', u'appeal', u'drug', u'sentenc', u'lawyer']
[u'costello', u'accus', u'hold', u'cut']
[u'council', u'accus', u'inact', u'smelter', u'lead', u'level']
[u'council', u'back', u'woodchip', u'opposit']
[u'council', u'move', u'stop', u'broule', u'year', u'beach']
[u'council', u'bodi', u'urg', u'back', u'night', u'patrol']
[u'council', u'merger', u'issu', u'agenda']
[u'council', u'hold', u'meet', u'civic', u'centr', u'plan']
[u'council', u'veto', u'detent', u'centr', u'plan']
[u'court', u'consid', u'guantanamo', u'access', u'petit']
[u'dalbi', u'crack', u'water']
[u'dalgeti', u'bredbo', u'award']
[u'dental', u'clinic', u'minus', u'dentist']
[u'downer', u'accus', u'muddl', u'messag']
[u'dravid', u'replac', u'ganguli', u'india', u'captain']
[u'dump', u'fight', u'say', u'comment']
[u'dunn', u'sack', u'opposit', u'whip']
[u'dutch', u'master', u'offer', u'boost', u'economi']
[u'dutch', u'polic', u'arrest', u'suspect', u'anti', u'terror', u'raid']
[u'english', u'actor', u'name', u'blond', u'bond']
[u'bird', u'expert', u'hold', u'crisi', u'talk']
[u'extra', u'paperwork', u'weigh', u'rural', u'women']
[u'north', u'vie', u'tourism', u'award']
[u'ferri', u'death', u'prompt', u'call', u'mannum', u'bridg']
[u'film', u'maker', u'go', u'west']
[u'offic', u'free', u'assault', u'convict']
[u'fund', u'hold', u'phase', u'highway', u'duplic']
[u'gallop', u'deni', u'cover', u'kucera', u'scandal']
[u'glebe', u'island', u'termin', u'worker', u'industri', u'action']
[u'gold', u'coast', u'storm', u'generat', u'damag']
[u'govt', u'abl', u'appeal', u'osland', u'vcat', u'order']
[u'govt', u'agre', u'opera', u'australia', u'fund']
[u'govt', u'announc', u'digit', u'radio', u'rollout']
[u'govt', u'ask', u'council', u'explain', u'montvill', u'golf']
[u'govt', u'bring', u'nauru', u'detaine']
[u'govt', u'play', u'nation', u'open', u'esper', u'offic']
[u'govt', u'promot', u'nurs', u'practition', u'scholarship']
[u'govt', u'implement', u'nation', u'anim', u'welfar', u'strategi']
[u'govt', u'urg', u'boost', u'region', u'job']
[u'grazier', u'warn', u'orang', u'fee']
[u'green', u'urg', u'compo', u'contamin', u'loss']
[u'gungahlin', u'drive', u'legal', u'challeng', u'drop']
[u'gunner', u'battl', u'injuri', u'woe']
[u'harper', u'promis', u'consult', u'rule']
[u'harper', u'question', u'experi']
[u'hayden', u'clark', u'lunch']
[u'hayden', u'gilchrist', u'australia']
[u'hayden', u'silenc', u'critic', u'gritti']
[u'health', u'servic', u'highlight', u'grow', u'locum']
[u'highway', u'heavi', u'vehicl', u'speed', u'limit']
[u'high', u'wind', u'batter', u'boggabilla']
[u'infect', u'apologis', u'victim']
[u'hospit', u'train', u'program', u'smooth', u'search']
[u'hospit', u'warn', u'stomach', u'epidem']
[u'howard', u'play', u'model', u'claim']
[u'hungri', u'australia', u'brand', u'tougher', u'argentina']
[u'indecis', u'trade', u'leav', u'market']
[u'indigen', u'protocol', u'advis', u'visitor']
[u'indonesia', u'eye', u'expand', u'live', u'cattl', u'trade']
[u'instruct', u'william', u'leav', u'nikol', u'confus']
[u'interview', u'matthew', u'hayden']
[u'invent', u'aid', u'safer', u'scalpel']
[u'jam', u'hardi', u'urg', u'remov', u'asbesto']
[u'jet', u'hope', u'turn', u'loss']
[u'jet', u'score', u'upset', u'adelaid']
[u'jobless', u'rate', u'rise', u'wimmera', u'malle']
[u'kalgoorli', u'go', u'high', u'tech', u'combat', u'stray', u'dog']
[u'katherin', u'gorg', u'croc', u'elud', u'author']
[u'kerin', u'confid', u'hold', u'liber', u'leadership']
[u'kucera', u'scandal', u'prompt', u'disclosur', u'rule']
[u'kyogl', u'consid', u'higher', u'water', u'cost']
[u'bali', u'front', u'court']
[u'lawrenc', u'testifi', u'bali', u'accus']
[u'lawrenc', u'trial', u'begin']
[u'leav', u'kakadu', u'toad', u'tourist', u'oper', u'tell']
[u'lee', u'arriv', u'falconio', u'murder', u'trial']
[u'legal', u'stoush', u'brew', u'famili', u'violenc']
[u'liber', u'call', u'leadership']
[u'lift', u'boss', u'tell', u'world']
[u'lihir', u'gold', u'resum', u'product']
[u'littl', u'pebbl', u'jail', u'sexual', u'abus']
[u'local', u'histor', u'maritim', u'artefact']
[u'mackay', u'polic', u'enforc', u'anti', u'terror', u'law']
[u'mainten', u'worker', u'die', u'sydney', u'airport']
[u'hang', u'yacht']
[u'face', u'court', u'mildura', u'drug', u'raid']
[u'maryborough', u'water', u'face', u'blue', u'green', u'alga', u'threat']
[u'mayor', u'back', u'plan', u'law', u'review']
[u'melbourn', u'take', u'risk', u'student', u'fee']
[u'meninga', u'court', u'walter', u'origin', u'role']
[u'meninga', u'bennett']
[u'mildura', u'euthanasia', u'rate', u'creat', u'concern']
[u'milk', u'post', u'loss']
[u'miner', u'make', u'west', u'whundo', u'copper', u'assess']
[u'mine', u'stock', u'drag', u'market']
[u'minist', u'fail', u'agre', u'polic', u'train', u'fund']
[u'minist', u'meet', u'longernong', u'colleg', u'offici']
[u'mitsubishi', u'pin', u'hop', u'model']
[u'moodi', u'say', u'vouvray']
[u'coupl']
[u'rain', u'forecast', u'central']
[u'mother', u'evict', u'highlight', u'hous', u'crisi', u'tascoss']
[u'mourner', u'farewel', u'year', u'kill', u'methadon']
[u'say', u'telstra', u'manag', u'comment', u'naiv']
[u'urg', u'govt', u'subsidis', u'sniffabl', u'petrol']
[u'murgon', u'mayor', u'quit']
[u'nauruan', u'weightlift', u'guilti', u'kill']
[u'nauru', u'detent', u'outstand', u'success']
[u'aviat', u'radio', u'network', u'begin', u'oper']
[u'newcastl', u'court', u'cell', u'revamp']
[u'newcastl', u'mourn', u'bali', u'bomb', u'victim']
[u'newcastl', u'hall', u'head', u'england']
[u'depot', u'expect', u'boost', u'firefight', u'effort']
[u'look', u'koala', u'hospit', u'reopen']
[u'nrac', u'see', u'benefit', u'simplifi', u'drought']
[u'push', u'wast', u'dump']
[u'nurseri', u'urg', u'help', u'tackl', u'weed', u'problem']
[u'women', u'drive', u'saudi', u'king', u'say']
[u'orang', u'council', u'urg', u'indoor', u'pool', u'sport']
[u'owen', u'confid', u'england', u'world', u'prospect']
[u'page', u'join', u'critic', u'alstonvill', u'bypass', u'delay']
[u'pakistan', u'militari', u'deni', u'quak', u'survivor', u'search']
[u'papua', u'refuge', u'give', u'resid']
[u'plan', u'afoot', u'extend', u'tuross', u'head', u'cycl', u'path']
[u'defend', u'terror', u'legisl', u'inquiri']
[u'downplay', u'overhaul', u'rumour']
[u'poki', u'reloc', u'stall']
[u'polic', u'bomb', u'isol', u'incid']
[u'polic', u'investig', u'explos', u'theft']
[u'polic', u'prepar', u'plan', u'communic', u'centr']
[u'port', u'botani', u'expans', u'plan', u'unwarr', u'inquiri']
[u'prehistor', u'pine', u'sydney']
[u'premier', u'defend', u'port', u'botani', u'expans']
[u'previous', u'repair', u'caus', u'worker', u'injuri', u'court', u'hear']
[u'public', u'brief', u'polic', u'kangaroo', u'flat', u'crime', u'concern']
[u'putin', u'throw', u'steel', u'ring', u'attack', u'town']
[u'rain', u'bring', u'mix', u'bless']
[u'rattl', u'play', u'beazley']
[u'rebel', u'kill', u'hostag', u'save', u'russian', u'town']
[u'report', u'hold', u'hope', u'narrabri']
[u'revfest', u'turn', u'council', u'support']
[u'riverland', u'driver', u'die', u'highway', u'crash']
[u'robinson', u'stun', u'baggaley', u'drug', u'posit']
[u'rossi', u'fastest', u'phillip', u'island']
[u'russian', u'forc', u'free', u'hostag']
[u'russian', u'polic', u'tackl', u'rebel', u'holdout']
[u'samsung', u'admit', u'price', u'fix']
[u'seve', u'find', u'tough', u'return']
[u'seven', u'brazilian', u'fifa', u'award', u'shortlist']
[u'share', u'market', u'buzz', u'boost', u'profit']
[u'sheep', u'research', u'consid', u'genet', u'answer', u'mules']
[u'shire', u'introduc', u'dump', u'charg']
[u'singapor', u'exercis', u'boost', u'central', u'economi']
[u'slack', u'slam', u'miller', u'sack']
[u'spiritu', u'leader', u'jail']
[u'staff', u'shortag', u'hamper', u'auditor', u'general', u'audit']
[u'star', u'bear', u'near', u'black', u'hole', u'surpris', u'scientist']
[u'state', u'urg', u'reject', u'propos', u'food', u'label']
[u'stem', u'cell', u'help', u'fight', u'leukaemia', u'relaps']
[u'storm', u'leav', u'wagga', u'damag', u'trail']
[u'stosur', u'beat', u'russia']
[u'sunshin', u'coast', u'make', u'food', u'market', u'push']
[u'tait', u'aim', u'comeback', u'month']
[u'opposit', u'unveil', u'rail', u'network', u'plan']
[u'teacher', u'seek', u'cancel', u'feder', u'award', u'agreement']
[u'teenag', u'drink', u'driver', u'give', u'suspend', u'sentenc']
[u'teen', u'refus', u'bail', u'grandmoth', u'stab']
[u'teen', u'face', u'court', u'accus', u'child', u'indec']
[u'telstra', u'reject', u'local', u'govt', u'impost', u'claim']
[u'telstra', u'reject', u'phone', u'exchang', u'critic']
[u'test', u'prove', u'bakeri', u'sourc', u'salmonella']
[u'tight', u'time', u'frame', u'bring', u'critic']
[u'timbercorp', u'plan', u'prompt', u'robe', u'concern']
[u'judg', u'fear', u'anti', u'terror', u'law', u'threaten', u'human']
[u'tourism', u'oper', u'welcom', u'visitor', u'centr']
[u'town', u'evacu', u'begin', u'leak']
[u'tremlett', u'rule', u'pakistan', u'tour']
[u'union', u'threaten', u'disrupt', u'cargo', u'ship', u'passag']
[u'fast', u'track', u'nurs', u'train']
[u'evacu', u'essenti', u'staff', u'west', u'darfur']
[u'uranium', u'explor', u'confid', u'industri', u'futur']
[u'reject', u'lobster', u'shipment']
[u'vasil', u'livid', u'court', u'rule']
[u'govt', u'blame', u'gippsland', u'jobless', u'rise']
[u'fear', u'apprentic', u'traine', u'chang']
[u'wast', u'plant', u'spotlight']
[u'water', u'tower', u'inquest', u'hear', u'safeti', u'concern']
[u'wilkinson', u'start', u'newcastl']
[u'windscreen', u'washer', u'futur', u'review']
[u'woman', u'distress', u'burial', u'plot', u'blunder']
[u'youth', u'centr', u'concern', u'worri', u'tenant', u'group']
[u'adelaid', u'airport', u'termin', u'run']
[u'remak', u'award', u'categori']
[u'aftershock', u'rattl', u'northern', u'pakistan']
[u'lock', u'nation', u'open']
[u'alonso', u'put', u'renault', u'drive', u'seat', u'china']
[u'concern', u'propos', u'chang', u'medic']
[u'anti', u'terror', u'leak', u'inevit']
[u'free', u'rang', u'pork', u'product', u'consum', u'urg']
[u'australian', u'economi', u'grow', u'expert', u'say']
[u'australian', u'troop', u'farewel']
[u'australia', u'world']
[u'bakeri', u'centr', u'outbreak', u'undergo', u'safeti']
[u'beach', u'reopen', u'shark', u'sight']
[u'bird', u'pose', u'risk', u'public', u'say']
[u'bronz', u'cunnamulla', u'fella', u'pay', u'tribut', u'slim', u'dusti']
[u'bush', u'advis', u'testifi', u'leak']
[u'call', u'temporari', u'magistr']
[u'carro', u'clear', u'roar']
[u'celebr', u'mark', u'warlukurlangu']
[u'china', u'say', u'better', u'bird', u'vaccin']
[u'china', u'tibet', u'railway', u'final', u'complet']
[u'chines', u'presid', u'talk', u'astronaut']
[u'clash', u'erupt', u'iraqi', u'vote']
[u'concern', u'baggag', u'sort', u'machin', u'sydney']
[u'darwin', u'flight', u'reschedul', u'secur', u'scare']
[u'dead', u'bird', u'confirm', u'romania']
[u'dismay', u'anti', u'terror', u'law']
[u'ebay', u'finalis', u'skype', u'deal']
[u'engin', u'inspect', u'leak']
[u'poll', u'sit', u'western', u'iraq', u'activist', u'claim']
[u'filipino', u'women', u'flee', u'domest', u'slaveri']
[u'fishermen', u'concern', u'nativ', u'titl', u'appeal']
[u'collaps', u'build', u'spain']
[u'flintoff', u'finish', u'tail']
[u'meet', u'kick', u'china']
[u'vow', u'combat', u'economi', u'risk']
[u'gilchrist', u'eye', u'super', u'centuri']
[u'gilchrist', u'fall', u'short', u'centuri']
[u'guatemala', u'warn', u'villag', u'mudslid']
[u'gungahlin', u'drive', u'extens', u'work']
[u'hawk', u'win', u'caulfield', u'rail']
[u'hayden', u'snare', u'phillip', u'island', u'pole', u'stoner', u'chase']
[u'hill', u'discuss', u'terror', u'secur', u'philippin']
[u'hop', u'find', u'remain', u'quak', u'survivor', u'fade']
[u'inquiri', u'insur', u'withdraw']
[u'interview', u'greg', u'child']
[u'iraq', u'bind', u'troop', u'farewel']
[u'iraqi', u'vote', u'constitut']
[u'iraq', u'milit', u'raze', u'sunni', u'offic']
[u'concern', u'warrant', u'govt', u'listen', u'beazley']
[u'reform', u'design', u'lower', u'wag']
[u'kean', u'quit', u'intern', u'footbal']
[u'king', u'bullet', u'wildcat', u'record', u'home', u'win']
[u'kiwi', u'shock', u'australia', u'nation', u'boilov']
[u'labor', u'back', u'anti', u'terror', u'leak']
[u'lawyer', u'seek', u'guantanamo', u'hunger', u'strike', u'medic']
[u'luxford', u'bennett', u'book', u'game', u'berth']
[u'marijuana', u'improv', u'memori', u'research']
[u'martin', u'want', u'nuclear', u'wast', u'plan', u'stop']
[u'mcgrath', u'make', u'histori', u'lara', u'expens']
[u'michelangelo', u'draw', u'grab']
[u'minist', u'talk', u'emerg', u'servic', u'cooper']
[u'minor', u'parti', u'scath', u'anti', u'terror', u'legisl']
[u'mix', u'result', u'aussi', u'squash', u'player']
[u'mosman', u'mayor', u'horrifi', u'muslim', u'comment']
[u'motorcyclist', u'crash', u'pole']
[u'patrol', u'boat', u'name']
[u'nikol', u'race', u'begin', u'tonight']
[u'quick', u'sale', u'surplus', u'car', u'schwarten', u'say']
[u'nuclear', u'wast', u'dump', u'oppon', u'fight']
[u'nullarbor', u'meteor', u'project', u'look', u'planet']
[u'babi', u'report', u'communiti', u'servic']
[u'pair', u'arrest', u'cannabi', u'plant']
[u'pampl', u'touch', u'vega']
[u'paraglid', u'rescu', u'rock', u'face']
[u'paul', u'name', u'wallabi']
[u'perth', u'shark', u'patrol']
[u'play', u'game', u'bennett', u'tell', u'kangaroo']
[u'congratul', u'mother', u'mari']
[u'polic', u'issu', u'warn', u'attempt', u'abduct']
[u'polic', u'probe', u'darwin', u'airport', u'secur', u'threat']
[u'poll', u'open', u'iraq']
[u'princess', u'mari', u'admit', u'hospit', u'report']
[u'princess', u'mari', u'give', u'birth']
[u'princess', u'mari', u'give', u'birth', u'princ']
[u'putin', u'talk', u'tough', u'russian', u'forc', u'crush', u'rebel']
[u'govt', u'panic', u'steal', u'explos']
[u'quak', u'death', u'toll', u'increas']
[u'quak', u'toll', u'rise']
[u'rail', u'cruis', u'victori']
[u'resid', u'ask', u'away', u'leaki']
[u'rossi', u'set', u'fastest', u'final', u'practic', u'stoner']
[u'royal', u'overwhelm', u'bundl']
[u'ruddock', u'launch', u'bushfir', u'awar', u'campaign']
[u'look', u'electr', u'reserv']
[u'search', u'boat', u'miss', u'torr', u'strait']
[u'secur', u'forc', u'alert', u'iraqi', u'vote']
[u'secur', u'tight', u'iraq', u'vote']
[u'shark', u'sight', u'shut', u'cotteslo', u'beach']
[u'spielberg', u'move', u'video', u'game', u'realm']
[u'spin', u'twin', u'break']
[u'spin', u'twin', u'bring', u'world']
[u'stage', u'water', u'restrict', u'remain', u'canberra']
[u'stanhop', u'defend', u'decis', u'post', u'anti', u'terror']
[u'stanhop', u'defi', u'govt', u'anti', u'terror', u'leak']
[u'stanhop', u'leak']
[u'star', u'trek', u'scotti', u'beam']
[u'stoltenberg', u'secur', u'coach', u'role']
[u'torren', u'sign', u'huddersfield']
[u'town', u'flood', u'threat', u'leak', u'slow']
[u'hospit', u'knife', u'attack']
[u'offici', u'accus', u'starv', u'iraqi', u'civilian']
[u'warn', u'pakistan', u'humanitarian', u'disast']
[u'ambassador', u'lucki', u'zimbabw', u'incid']
[u'ambassador', u'say', u'iran', u'lie', u'nuclear', u'weapon']
[u'captur', u'qaeda', u'disguis', u'expert', u'iraq']
[u'wall', u'upbeat', u'report', u'eas', u'inflat', u'fear']
[u'wilkinson', u'escap', u'injuri', u'rough', u'return']
[u'year', u'need', u'rebuild', u'pakistan']
[u'journalist', u'honour', u'media', u'award']
[u'arrest', u'cocain', u'charg']
[u'inform', u'explos', u'theft']
[u'alonso', u'cap', u'season', u'victori', u'china']
[u'anti', u'terror', u'law', u'need', u'year', u'futur']
[u'armidal', u'start', u'patrol', u'nothern', u'water']
[u'asio', u'number', u'boost']
[u'dead', u'india', u'boat', u'accid']
[u'aussi', u'look', u'drive', u'home', u'advantag']
[u'aussi', u'trio', u'advanc', u'british', u'open', u'semi', u'final']
[u'australia', u'crumbl', u'world', u'fight']
[u'light', u'stop', u'play']
[u'weather', u'halt', u'quak', u'relief', u'effort']
[u'weather', u'limit', u'pakistan', u'relief', u'oper']
[u'beatti', u'inject', u'hospit']
[u'boat', u'miss', u'north', u'queensland']
[u'bomb', u'kill', u'south', u'west', u'iran']
[u'bonfir', u'plan', u'mark', u'princ', u'birth']
[u'britain', u'brace', u'bird', u'outbreak']
[u'bull', u'super', u'leagu', u'grand', u'final']
[u'cabinet', u'size', u'stay', u'rann']
[u'open', u'kashmir', u'border']
[u'cane', u'toad', u'gas', u'kakadu', u'rule']
[u'chelsea', u'maintain', u'win', u'record']
[u'china', u'readi', u'spacecraft', u'return']
[u'claim', u'vehicl', u'damag', u'coastlin']
[u'commentari', u'highlight', u'super', u'test']
[u'count', u'underway', u'iraq', u'referendum']
[u'denmark', u'celebr', u'birth', u'futur', u'king']
[u'denmark', u'welcom', u'princ']
[u'downer', u'prais', u'high', u'voter', u'turnout', u'iraq']
[u'extra', u'aircraft', u'join', u'search', u'miss', u'immigr']
[u'falconio', u'famili', u'wait', u'trial', u'start']
[u'attack', u'poll', u'close']
[u'crew', u'talk', u'tactic', u'bushfir', u'season']
[u'damag', u'paint', u'factori']
[u'arrest', u'melbourn', u'drug', u'bust']
[u'flat', u'rate', u'cost', u'costello', u'say']
[u'countri', u'stabl', u'price']
[u'summit', u'excel', u'opportun', u'australia']
[u'game', u'health', u'chief', u'prepar', u'bird', u'emerg']
[u'gauci', u'suspend', u'caulfield', u'ride']
[u'gerard', u'whateley', u'tribut', u'mummifi']
[u'gerran', u'take', u'herald', u'honour']
[u'govt', u'accus', u'spin']
[u'govt', u'hop', u'unemploy']
[u'govt', u'minist', u'defend', u'chang']
[u'govt', u'urg', u'releas', u'fund', u'homeless', u'hous']
[u'gungahlin', u'drive', u'legal', u'action', u'cost', u'million']
[u'harmison', u'strike', u'australia', u'march']
[u'howard', u'doubl', u'asio', u'number']
[u'advic', u'line', u'open', u'student']
[u'huge', u'need', u'relationship', u'centr', u'chifley']
[u'hunter', u'road', u'open', u'spill']
[u'industri', u'oper', u'discuss', u'illeg', u'fish', u'option']
[u'interview', u'andrew', u'flintoff']
[u'iranian', u'adulteress', u'face', u'death', u'stone']
[u'iraq', u'referendum', u'hail', u'success']
[u'juve', u'march']
[u'kangaroo', u'smart', u'shock', u'loss']
[u'kerin', u'announc', u'reduc', u'frontbench']
[u'macgil', u'urg', u'selector', u'employ', u'spin']
[u'malawi', u'leader', u'declar', u'disast', u'food', u'crisi']
[u'marin', u'rout', u'glori', u'break', u'home', u'drought']
[u'massiv', u'search', u'miss', u'immigr', u'boat']
[u'mcgrath', u'captur', u'fast', u'bowl', u'record']
[u'memori', u'honour', u'volunt']
[u'million', u'turn', u'iraqi', u'referendum']
[u'moder', u'quak', u'jolt', u'tokyo']
[u'seek', u'oncolog', u'unit', u'trade', u'nuclear', u'wast']
[u'nazi', u'march', u'spark', u'riot', u'citi']
[u'altern', u'nuclear', u'dump', u'site']
[u'deal', u'ferrari', u'say', u'raikkonen']
[u'excus', u'nation', u'loss', u'bennett']
[u'sign', u'miss', u'immigr', u'boat']
[u'crew', u'join', u'forc', u'support', u'awar']
[u'opposit', u'seek', u'legal', u'advic', u'tunnel', u'deal']
[u'pakistan', u'quak', u'caus', u'damag']
[u'say', u'australia', u'deal', u'terror', u'threat']
[u'polanski', u'draw', u'childhood', u'oliv', u'twist']
[u'pork', u'industri', u'say', u'practic', u'promot', u'anim', u'welfar']
[u'prayer', u'hold', u'sydney', u'quak', u'victim']
[u'fund', u'water', u'fluorid', u'project']
[u'rice', u'say', u'iraq', u'constitut', u'probabl', u'pass']
[u'right', u'group', u'warn', u'fair', u'trial', u'risk', u'saddam']
[u'roar', u'beat', u'cellar', u'dwell', u'knight']
[u'romania', u'begin', u'cull', u'bird', u'confirm']
[u'ronaldo', u'ecstasi', u'agoni', u'real']
[u'russian', u'provinc', u'mourn', u'attack']
[u'search', u'continu', u'miss', u'immigr', u'boat']
[u'search', u'miss', u'bushwalk']
[u'kill', u'pakistani', u'chopper', u'crash']
[u'solon', u'hop', u'birthday', u'homecom']
[u'south', u'australian', u'diabet', u'cure']
[u'stoner', u'titl', u'dream']
[u'stoner', u'titl', u'dream', u'rossi', u'win', u'moto']
[u'storm', u'kill', u'india']
[u'sydney', u'parkland', u'design', u'competit', u'open']
[u'tiger', u'capit', u'record', u'basketbal', u'win']
[u'prize', u'scottish', u'parliament', u'build']
[u'tragic', u'mummifi', u'career']
[u'tribut', u'fazeer']
[u'ralli', u'highlight', u'racial', u'inequ']
[u'wont', u'iraq']
[u'boost', u'health', u'fund', u'game', u'emerg']
[u'victori', u'smash', u'sydney', u'lead', u'leagu']
[u'voter', u'turnout', u'high', u'million']
[u'minist', u'slam', u'govt', u'minimum', u'wage', u'record']
[u'want', u'nazi', u'trace', u'spain']
[u'expert', u'warn', u'bird', u'pandem']
[u'work', u'continu', u'drain', u'leaki']
[u'world', u'player', u'troop']
[u'world', u'close', u'sydney']
[u'milan', u'beat', u'cagliari', u'leader', u'juve']
[u'acoss', u'urg', u'nation', u'anti', u'poverti', u'plan']
[u'agreement', u'reach', u'basin', u'meet']
[u'call', u'scrutini', u'terror', u'law']
[u'miss', u'boat', u'capsiz', u'nepal']
[u'aussi', u'pair', u'british', u'open', u'squash', u'final']
[u'aussi', u'close', u'super', u'test']
[u'aussi', u'world']
[u'aussi', u'thrash', u'world', u'super', u'test']
[u'aussi', u'tighten', u'grip', u'super', u'test']
[u'aust', u'engin', u'join', u'quak', u'relief', u'effort']
[u'aust', u'philippin', u'boost', u'anti', u'terror', u'exchang']
[u'australian', u'detain', u'lankan', u'assassin']
[u'australian', u'ponder', u'twin', u'spin', u'option']
[u'australia', u'boost', u'train', u'philippin', u'armi']
[u'australia', u'test', u'anti', u'terror', u'capabl']
[u'babi', u'boomer', u'drive', u'melbourn', u'apart', u'market']
[u'bank', u'help', u'market', u'modest', u'gain']
[u'barrett', u'name', u'tour', u'jamaica']
[u'beatti', u'moot', u'interst', u'migrant']
[u'be', u'faster', u'whoosh', u'factor']
[u'crowd', u'flock', u'esper']
[u'bird', u'battl', u'buttock', u'bike', u'prize']
[u'birney', u'alleg', u'cover', u'kucera', u'share']
[u'birney', u'back', u'anti', u'terror', u'law']
[u'blaze', u'claim', u'wimmera', u'farm', u'gear']
[u'blaze', u'rip', u'melbourn', u'fruit', u'shop']
[u'boat', u'mishap', u'claim', u'british', u'tourist', u'life']
[u'kill', u'school', u'gate', u'accid']
[u'brief', u'hold', u'councillor']
[u'bush', u'blueprint', u'get', u'respons']
[u'bushrang', u'tough', u'say', u'hussey']
[u'contamin', u'tribun']
[u'chechen', u'leader', u'claim', u'dead', u'russian', u'raid']
[u'chees', u'compani', u'perform', u'despit', u'drought']
[u'china', u'ask', u'uranium', u'access']
[u'church', u'talk', u'theolog', u'degre']
[u'citrus', u'industri', u'say', u'chemic', u'livestock', u'risk']
[u'clark', u'form', u'coalit', u'lead']
[u'coast', u'mayor', u'fluorid', u'plan']
[u'commonwealth', u'veto', u'siev', u'memori', u'canberra']
[u'confer', u'focus', u'coastal', u'develop']
[u'confus', u'prompt', u'alcohol', u'risk', u'label']
[u'controversi', u'politician', u'foreign']
[u'costello', u'promot', u'energi', u'freeway', u'china']
[u'councillor', u'divulg', u'donat']
[u'council', u'help', u'preschool', u'rat', u'dilemma']
[u'counter', u'terrorist', u'exercis', u'prompt', u'alert']
[u'court', u'vow', u'speed', u'bali', u'bomber', u'execut']
[u'reach', u'domest', u'cricket', u'mileston']
[u'croc', u'breed', u'season']
[u'darwin', u'readi', u'falconio', u'trial']
[u'depress', u'studi', u'parkinson', u'treatment']
[u'devilish', u'pair', u'tasmania', u'gift', u'home', u'grow', u'princess']
[u'diseas', u'threaten', u'guatemalan', u'mudslid', u'survivor']
[u'match', u'link', u'murdoch', u'lee', u'court', u'tell']
[u'downer', u'receiv', u'barossa', u'baron', u'titl']
[u'dozen', u'kill', u'strike', u'iraq']
[u'draft', u'terror', u'law', u'alarm', u'muslim']
[u'email', u'warn', u'canberra', u'bushfir', u'inquest', u'hear']
[u'exercis', u'test', u'prepared', u'terrorist']
[u'expert', u'probe', u'possibl', u'histor', u'shipwreck', u'item']
[u'explos', u'theft', u'trigger', u'calm']
[u'falconio', u'famili', u'arriv', u'darwin', u'court']
[u'famili', u'violenc', u'law', u'rais', u'resourc', u'issu']
[u'farmer', u'welcom', u'weekend', u'rain']
[u'fight', u'fraser', u'cane', u'toad', u'free']
[u'soldier', u'kill', u'iraq', u'bomb']
[u'fluorid', u'plan', u'draw', u'critic']
[u'forum', u'focus', u'poverti', u'fight']
[u'getaf', u'celta', u'lose', u'leav', u'real']
[u'ghan', u'boost', u'peak', u'season', u'servic']
[u'gilmor', u'keep', u'surf', u'crown']
[u'glenn', u'mitchel', u'speak', u'matthew', u'hayden', u'ricki']
[u'godolphin', u'make', u'earli', u'carniv', u'exit']
[u'govt', u'tougher', u'high', u'risk', u'offend']
[u'govt', u'move', u'head', u'csiro', u'drought', u'assist']
[u'govt', u'offer', u'prompt', u'council', u'fluorid', u'debat']
[u'govt', u'educ', u'expert', u'rais', u'prospect', u'nation']
[u'govt', u'sell', u'golf', u'cours']
[u'govt', u'unveil', u'nativ', u'titl', u'review']
[u'govt', u'beat', u'busi', u'outlook', u'report']
[u'govt', u'urg', u'appeal', u'drink', u'driver', u'sentenc']
[u'greenpeac', u'back', u'solar', u'power', u'water', u'plant']
[u'hagan', u'reject', u'lockyer', u'sack']
[u'hailstorm', u'flatten', u'crop']
[u'hall', u'suggest', u'base', u'motorhom', u'user']
[u'harrop', u'kahlefeldt', u'add', u'comm', u'game', u'team']
[u'harrop', u'name', u'game', u'triathlon', u'squad']
[u'helicopt', u'resum', u'pakistan', u'quak', u'relief']
[u'help', u'closer', u'hand', u'famili', u'relationship']
[u'highway', u'polic', u'chase', u'reach']
[u'hindmarsh', u'recal', u'kangaroo']
[u'hospit', u'administr', u'forc', u'health']
[u'hospit', u'chief', u'stand', u'lengthi', u'revamp']
[u'hunter', u'student', u'begin', u'exam']
[u'shelv', u'super', u'seri', u'plan']
[u'take', u'cautious', u'approach', u'technolog', u'trial']
[u'illeg', u'fish', u'undermin', u'stock', u'manag']
[u'immigr', u'boat', u'search', u'expand']
[u'iran', u'deni', u'link', u'iraqi', u'bomb', u'attack']
[u'iraqi', u'vote', u'blow', u'terrorist', u'bush']
[u'hear', u'muswellbrook', u'hospit', u'staff', u'issu']
[u'israel', u'freez', u'contact', u'palestinian']
[u'journalist', u'invit', u'attract']
[u'koertzen', u'techno', u'cricket']
[u'koizumi', u'pray', u'controversi', u'shrine']
[u'koizumi', u'reject', u'object', u'shrine', u'visit']
[u'labor', u'turn', u'stanhop', u'terror', u'legisl']
[u'landhold', u'urg', u'season', u'readi']
[u'leasehold', u'fine', u'tune', u'block', u'buy']
[u'lee', u'arriv', u'falconio', u'trial']
[u'leica', u'falcon', u'trainer', u'await']
[u'leica', u'falcon', u'trainer', u'await', u'melbourn']
[u'back', u'freight', u'transport', u'review']
[u'liber', u'preselect', u'northern', u'candid']
[u'littl', u'pebbl', u'order', u'vow', u'carri']
[u'livestock', u'agent', u'wont', u'support', u'plan', u'nlis']
[u'locum', u'help', u'sustain', u'north', u'coast', u'hospit']
[u'health', u'advisori', u'council', u'know', u'soon']
[u'accus', u'tri', u'burn', u'women']
[u'die', u'highway', u'crash']
[u'charg', u'repeat', u'roof', u'jump']
[u'martin', u'vow', u'target', u'senat', u'fight']
[u'mari', u'parent', u'dote', u'littl', u'princ']
[u'matilda', u'hold', u'stalem']
[u'mcleod', u'johnson', u'lead', u'australia']
[u'meatwork', u'face', u'court', u'action', u'worker', u'union']
[u'merger', u'expect', u'boost', u'wine', u'export']
[u'migratori', u'bird', u'threat', u'aqi']
[u'miner', u'begin', u'geraldton', u'servic']
[u'miss', u'teenag', u'beachsid', u'suburb']
[u'miss', u'woman', u'safe']
[u'mix', u'respons', u'technic', u'colleg', u'plan']
[u'lake', u'entranc', u'strand', u'predict']
[u'mother', u'riot', u'kill', u'argentin', u'prison']
[u'mugab', u'presenc', u'dismay', u'food', u'summit', u'deleg']
[u'murder', u'trial', u'hear', u'trace', u'miss', u'father']
[u'murdoch', u'deni', u'kill', u'falconio']
[u'nation', u'maywald', u'preselect', u'chaffey']
[u'nation', u'determin', u'tamworth', u'preselect', u'time']
[u'neethl', u'confirm', u'sydney', u'skin']
[u'rule', u'encourag', u'cowboy', u'oper', u'cfmeu']
[u'nrma', u'join', u'fight', u'poki', u'increas']
[u'govt', u'claim', u'credit', u'reduc', u'drug']
[u'govt', u'urg', u'offer', u'tour', u'industri', u'fuel', u'relief']
[u'nuclear', u'dump', u'health', u'link']
[u'inflat', u'creep', u'upper', u'target']
[u'duti', u'policeman', u'die', u'crash']
[u'offici', u'predict', u'iraqi', u'referendum', u'success']
[u'opposit', u'tip', u'earli', u'elect']
[u'pack', u'attack', u'father', u'leav', u'newborn', u'injur', u'court']
[u'paedophil', u'victim', u'reject', u'compens', u'offer']
[u'palm', u'leader', u'welcom', u'govt', u'prioriti']
[u'parent', u'ask', u'school', u'fund', u'petit']
[u'pierc', u'world']
[u'plan', u'roll', u'armidal', u'transport', u'museum']
[u'deni', u'soften', u'anti', u'terror', u'law']
[u'unsur', u'need', u'uniform', u'year', u'exam']
[u'polic', u'lament', u'dean', u'crime']
[u'polic', u'minist', u'seek', u'brief', u'airport', u'bomb', u'hoax']
[u'plater', u'catch', u'drive']
[u'premier', u'counter', u'terror', u'law']
[u'probe', u'launch', u'hospit', u'mishap']
[u'public', u'ask', u'worri']
[u'public', u'impati', u'princ', u'appear']
[u'public', u'oppos', u'harbour', u'plan', u'nation', u'trust']
[u'public', u'urg', u'learn', u'court', u'appeal']
[u'extend', u'subsidi', u'sniffabl', u'fuel']
[u'quak', u'rock', u'indonesia', u'nia', u'island']
[u'qualiti', u'asio', u'recruit', u'hard']
[u'racv', u'pessimist', u'govt', u'effort', u'fuel']
[u'rain', u'dispers', u'spill']
[u'rain', u'fail', u'eas', u'brisban', u'water', u'restrict']
[u'rain', u'help', u'brighten', u'sorghum', u'prospect']
[u'ramadi', u'violenc', u'kill']
[u'region', u'forum', u'consid', u'doctor', u'hospit']
[u'rescu', u'lift', u'pakistani', u'spirit', u'rain', u'fall']
[u'research', u'hone', u'altern', u'stem', u'cell', u'techniqu']
[u'resourc', u'boom', u'wont', u'forev', u'report']
[u'rise', u'fuel', u'price', u'cost', u'region', u'thousand']
[u'rudd', u'talk', u'trade', u'bird', u'china']
[u'wine', u'fetch', u'auction']
[u'sawlog', u'protest', u'chain', u'build']
[u'school', u'push', u'healthi', u'eat', u'plan']
[u'search', u'continu', u'sourc', u'sulphur', u'dioxid']
[u'search', u'fail', u'locat', u'miss', u'immigr', u'boat']
[u'season', u'victori', u'coach', u'warn', u'player']
[u'senat', u'reject', u'stop', u'nuclear', u'dump']
[u'septic', u'tank', u'compost', u'trial', u'success']
[u'busi', u'clean', u'hail', u'damag']
[u'offend', u'jail', u'year']
[u'shear', u'shortag', u'caus', u'delay']
[u'ship', u'builder', u'austal', u'land', u'militari', u'contract']
[u'injur', u'earthquak', u'rattl', u'turkey']
[u'smoke', u'alarm', u'remind', u'issu', u'hous']
[u'sorenstam', u'march', u'lpga', u'mileston']
[u'staff', u'boost', u'hydrotherapi', u'pool']
[u'stall', u'inquiri', u'bushfir', u'resum']
[u'stanhop', u'flag', u'doubt', u'hasti', u'terror']
[u'state', u'demand', u'consult', u'chang']
[u'stinger', u'season', u'prepar']
[u'student', u'begin', u'exam']
[u'sugar', u'industri', u'move', u'market', u'deregul']
[u'taikonaut', u'touch', u'china']
[u'tasmanian', u'princ', u'devilish', u'gift']
[u'tassi', u'tail', u'fight', u'gabba']
[u'teen', u'driver', u'accus', u'highway', u'drive']
[u'terror', u'exercis', u'begin']
[u'thousand', u'attend', u'mildura']
[u'thredbo', u'host', u'region', u'develop', u'gather']
[u'prefer', u'sit', u'choos', u'biosolid', u'trial']
[u'tiger', u'fight', u'lose', u'open']
[u'timber', u'haul', u'trucki', u'code', u'conduct']
[u'tunbridg', u'leak', u'threat', u'eas']
[u'goal', u'cole', u'fire', u'citi', u'fourth']
[u'kill', u'wound', u'west', u'bank', u'ambush']
[u'union', u'air', u'cargo', u'ship', u'safeti', u'concern']
[u'see', u'need', u'hunger']
[u'vote', u'begin', u'condit']
[u'weather', u'hinder', u'search', u'immigr', u'boat']
[u'whale', u'festiv', u'attract', u'crowd']
[u'woman', u'get', u'suspend', u'jail', u'term', u'knife', u'attack']
[u'head', u'upbeat', u'doha', u'round', u'talk']
[u'fight', u'walli', u'lake', u'water', u'pollut']
[u'abbott', u'consid', u'nationwid', u'bird', u'jab']
[u'remain', u'sceptic', u'medicin', u'cannabi']
[u'call', u'reduc', u'apprenticeship', u'train', u'time']
[u'aircraft', u'antarct', u'research', u'effort']
[u'albani', u'doesnt', u'seek', u'airport', u'passeng', u'screen', u'gear']
[u'alic', u'spring', u'communiti']
[u'presid', u'urg', u'reform', u'unhealthi', u'parti']
[u'move', u'improv', u'access']
[u'tropic', u'storm', u'build', u'caribbean']
[u'shark', u'switch', u'prey', u'human']
[u'aurukun', u'pump', u'opal', u'combat', u'petrol', u'sniff']
[u'australia', u'help', u'east', u'timor', u'fend', u'bird']
[u'australialos', u'digger']
[u'aust', u'troop', u'head', u'philippin', u'plan']
[u'author', u'continu', u'assess', u'hailstorm', u'damag']
[u'bali', u'blast', u'victim', u'condit', u'improv']
[u'bali', u'trial', u'hear', u'custom', u'offic', u'account']
[u'ballarat', u'boost', u'share', u'reservoir']
[u'barmah', u'face', u'charg']
[u'barri', u'jone', u'choos', u'coal', u'patron']
[u'bathurst', u'honour', u'navi', u'boat', u'name']
[u'beatti', u'deni', u'pass', u'buck', u'water']
[u'beatti', u'dismiss', u'earli', u'elect', u'claim']
[u'beatti', u'outlin', u'indigen', u'health', u'spend', u'boost']
[u'bendigo', u'join', u'counter', u'terror', u'train']
[u'boro', u'xavier', u'suspend', u'drug', u'test']
[u'bowen', u'mayor', u'attack', u'beatti', u'fluorid', u'plan']
[u'brazil', u'confirm', u'case', u'foot', u'mouth']
[u'bruton', u'name', u'player', u'week']
[u'buffalo', u'export', u'resum']
[u'bulletproof', u'tshirt', u'form']
[u'bull', u'fight', u'tiger']
[u'bureau', u'predict', u'warm', u'start', u'summer']
[u'driver', u'charg', u'hurrican', u'evacu', u'death']
[u'bushfir', u'probe', u'tell', u'canberra', u'firefight']
[u'busselton', u'mozzi', u'control', u'face', u'hurdl']
[u'attack', u'mark', u'start', u'saddam', u'trial']
[u'canadian', u'miner', u'open', u'kalgoorli', u'boulder', u'offic']
[u'casino', u'murwillumbah', u'rail', u'line', u'reopen']
[u'cattl', u'price', u'rise', u'rain']
[u'centrelink', u'worker', u'stop', u'work', u'disput']
[u'advertis', u'blitz', u'rais', u'bushfir', u'awar']
[u'champ', u'driver', u'indi']
[u'china', u'put', u'japan', u'foreign', u'minist', u'visit']
[u'citi', u'author', u'accus', u'wast', u'water']
[u'clark', u'defend', u'choic', u'immigr', u'minist']
[u'probe', u'hear', u'deputi', u'mayor', u'help', u'rais']
[u'compani', u'implement', u'chang', u'follow', u'ammonia']
[u'confer', u'shin', u'spotlight', u'famili', u'violenc']
[u'cooper', u'barrett', u'omeley', u'kangaroo']
[u'cooper', u'lawyer', u'attack', u'prosecut', u'wit']
[u'cooper', u'tip', u'join', u'gasnier', u'centr']
[u'coron', u'rule', u'inquest', u'hospit', u'death']
[u'council', u'studi', u'consid', u'admin', u'centr']
[u'council', u'introduc', u'water', u'wise', u'sprinkler']
[u'council', u'urg', u'chang']
[u'council', u'worker', u'vote', u'offer']
[u'court', u'quash', u'order', u'kidman', u'case']
[u'court', u'reject', u'govt', u'staffer', u'appeal']
[u'court', u'nativ', u'titl', u'evid']
[u'creek', u'aliv', u'outlin', u'waterway', u'health']
[u'csiro', u'drought', u'report']
[u'custom', u'work', u'problem']
[u'demand', u'rise', u'industri', u'land']
[u'dept', u'investig', u'cruelti', u'claim']
[u'deputi', u'governor', u'shoot', u'dead', u'iraq']
[u'devil', u'drag', u'govt', u'polit', u'snarl']
[u'digger', u'die', u'age']
[u'diva', u'draw', u'perfect', u'barrier']
[u'diva', u'firm', u'plate']
[u'downer', u'condemn', u'disgrac', u'mugab', u'speech']
[u'drought', u'review', u'area']
[u'drought', u'tour', u'west']
[u'emerg', u'delay', u'flight']
[u'european', u'commiss', u'order', u'bird', u'test']
[u'farmer', u'cautious', u'approach', u'plant', u'cotton']
[u'farm', u'group', u'consid', u'grain', u'fight', u'support']
[u'fear', u'hold', u'north', u'coast', u'public', u'hospit']
[u'firefight', u'test']
[u'forc', u'membership', u'continu', u'rise']
[u'fring', u'player', u'fail', u'push', u'test', u'claim', u'waca']
[u'gaol', u'staff', u'readi', u'order', u'work']
[u'face', u'nation']
[u'girl', u'surviv', u'day', u'quak', u'rubbl']
[u'tobacco', u'stock', u'boost', u'wall', u'street']
[u'golf', u'resort', u'land', u'sale', u'soon']
[u'govt', u'accus', u'fail', u'control', u'public']
[u'govt', u'agre', u'releas', u'secret', u'cross', u'citi', u'tunnel']
[u'govt', u'consid', u'bird', u'vaccin', u'program']
[u'govt', u'urg', u'fluorid', u'drink', u'water']
[u'great', u'lake', u'psychiatr', u'ward', u'close']
[u'greenspan', u'tip', u'moder', u'price', u'toll']
[u'hope', u'rain', u'stay', u'away', u'expo']
[u'howard', u'suitabl', u'dump', u'site', u'labor']
[u'indigen', u'station', u'look', u'local', u'program']
[u'indonesia', u'pull', u'troop', u'aceh']
[u'infect', u'doctor', u'monitor', u'effect', u'hookworm']
[u'inquiri', u'tell', u'bundaberg', u'hospit', u'grossli']
[u'chang', u'mockeri', u'farmer', u'opposit']
[u'chang', u'uneth', u'salvo']
[u'mayor', u'welcom', u'opal', u'fuel', u'initi']
[u'jackson', u'wnbl', u'season']
[u'jfks', u'unwant', u'gift', u'find', u'buyer']
[u'jockey', u'chang', u'leica', u'falcon']
[u'johnson', u'back', u'japan', u'world']
[u'juri', u'fail', u'reach', u'murder', u'trial', u'verdict']
[u'katich', u'lead', u'near', u'test', u'strength', u'blue']
[u'kelli', u'dolan']
[u'kiwi', u'chang', u'return', u'test']
[u'australian', u'fighter', u'die']
[u'lead', u'doctor', u'hookoworm', u'discoveri']
[u'lee', u'describ', u'alleg', u'attack', u'falconio', u'trial']
[u'lee', u'falconio', u'murder', u'accus']
[u'lee', u'punch', u'tie', u'attack']
[u'lennon', u'attack', u'liber', u'elect', u'promis']
[u'local', u'council', u'cast', u'doubt', u'fluorid', u'plan']
[u'macgil', u'face', u'despit', u'super', u'perform']
[u'magnet', u'field', u'map', u'mar', u'tecton', u'plat']
[u'maher', u'lead', u'bull', u'inning', u'point']
[u'custodi', u'accus', u'tortur', u'stepdaught']
[u'mayor', u'highlight', u'fluorid', u'cost', u'council']
[u'mayor', u'seek', u'public', u'debat', u'fluorid', u'plan']
[u'mayor', u'welcom', u'power', u'upgrad']
[u'mcevoy', u'ride', u'leica', u'falcon']
[u'meet', u'debat', u'wagga', u'hospit', u'plan']
[u'learn', u'british', u'manner']
[u'miner', u'market', u'boost']
[u'staff', u'interview', u'explos', u'theft']
[u'minist', u'order', u'probe', u'leak']
[u'minist', u'question', u'elder', u'woman', u'death']
[u'minist', u'breach', u'doesnt', u'warrant', u'dismiss', u'gallop']
[u'model', u'doctor', u'letter', u'say']
[u'hold', u'talk', u'boost', u'organ', u'industri']
[u'stand', u'steelwork', u'indentur']
[u'worri', u'councillor', u'tri', u'avoid', u'scrutini']
[u'mugab', u'target', u'bush', u'blair']
[u'murphi', u'rescu', u'point', u'charlton', u'london', u'derbi']
[u'narrow', u'loss', u'good', u'montevideo', u'farina']
[u'nativ', u'titl', u'scheme', u'review']
[u'council', u'committe', u'consid', u'develop']
[u'foreign', u'minist', u'send', u'wrong', u'messag']
[u'therapi', u'provid', u'relief', u'burn', u'victim']
[u'dog', u'life', u'pamper', u'pet']
[u'north', u'west', u'woman', u'societi', u'chief']
[u'govt', u'criticis', u'greedi', u'poker', u'machin', u'tax']
[u'govt', u'deregul', u'domest', u'rice', u'market']
[u'polic', u'defend', u'rise', u'number', u'arrest']
[u'polic', u'give', u'power', u'fight', u'violenc']
[u'price', u'busi', u'nervous']
[u'opposit', u'claim', u'independ', u'plan', u'group', u'gag']
[u'form', u'molik', u'prepar', u'titl', u'defenc']
[u'owen', u'griev']
[u'panda', u'famili', u'mark', u'tradit', u'mileston']
[u'parliament', u'conduct', u'inquiri', u'morri', u'say']
[u'patrick', u'reject', u'conceiv', u'toll']
[u'plan', u'milk', u'price', u'agenc', u'like', u'scuttl']
[u'appeal', u'calm', u'spread', u'bird']
[u'dismiss', u'gallipoli', u'theme', u'park', u'idea']
[u'benefit', u'aust', u'busi', u'somar']
[u'polic', u'revfest', u'claim']
[u'polic', u'investig', u'suspect', u'kidnap']
[u'polic', u'investig', u'suspici', u'hous']
[u'polic', u'wait', u'bali', u'court', u'hear']
[u'polic', u'probe', u'fatal', u'crash']
[u'polic', u'record', u'play', u'murder', u'trial']
[u'posit', u'financi', u'result', u'tourism', u'group']
[u'pressur', u'mount', u'pipelin', u'fund']
[u'probe', u'continu', u'son', u'mother', u'kill', u'claim']
[u'project', u'status', u'boost', u'timber', u'process', u'plant']
[u'proud', u'parent', u'princ']
[u'push', u'promot', u'tertiari', u'studi']
[u'race', u'club', u'beat', u'nomin']
[u'rain', u'cut', u'oodnadatta']
[u'ratepay', u'fund', u'flood', u'mitig']
[u'ravlich', u'unsur', u'nation', u'educ', u'certif']
[u'reactor', u'worker', u'radiat', u'scare']
[u'bull', u'need', u'speed']
[u'redesign', u'holey', u'build', u'rise', u'fear']
[u'remain', u'ironman', u'program', u'detail', u'know', u'soon']
[u'report', u'bring', u'raceway', u'oper']
[u'report', u'show', u'tasmanian', u'parent', u'fear', u'poverti']
[u'rickett', u'squash', u'willstrop', u'british', u'open']
[u'rise', u'malnutrit', u'prompt', u'malawi', u'appeal']
[u'rise', u'petrol', u'price', u'fuel', u'busi', u'cost']
[u'romania', u'detect', u'suspect', u'bird', u'case']
[u'ronaldo', u'miss', u'real', u'champion', u'clash']
[u'bag', u'gallipoli', u'theme', u'park']
[u'rural', u'cannabi', u'clinic', u'open', u'door']
[u'sailor', u'cast', u'solo', u'aust']
[u'irrig', u'reject', u'csiro', u'water', u'plan']
[u'sale', u'confer', u'consid', u'water', u'manag']
[u'salvat', u'armi', u'label', u'chang', u'uneth']
[u'school', u'recognis', u'green', u'effort']
[u'scott', u'play', u'australian', u'open']
[u'serbian', u'royal', u'seek', u'wive', u'classifi']
[u'seek', u'coast', u'volunt']
[u'sewerag', u'treatment', u'plant', u'begin', u'oper']
[u'sheep', u'farmer', u'warn', u'poison', u'threat']
[u'sizemor', u'jail', u'term', u'suspend']
[u'smoke', u'alarm', u'divert', u'qanta', u'flight']
[u'snowtown', u'helper', u'passiv', u'manserv']
[u'socceroo', u'threaten', u'world', u'walk']
[u'speedi', u'bali', u'execut', u'lead', u'attack']
[u'state', u'urg', u'care', u'consid', u'increas']
[u'sign', u'miss', u'immigr', u'boat']
[u'stoner', u'make', u'grafton', u'bridg', u'pledg']
[u'student', u'restraint', u'urg', u'muck']
[u'survey', u'find', u'support', u'cathedr']
[u'swear', u'polic', u'case', u'dismiss', u'spark', u'outrag']
[u'taxi', u'fare', u'rise', u'cover', u'fuel', u'cost']
[u'teen', u'die', u'dead', u'hous', u'blaze']
[u'termin', u'migrant', u'sue', u'wrong', u'detent']
[u'tough', u'penalti', u'anim', u'cruelti']
[u'tribut', u'flow', u'fighter']
[u'tripodi', u'reject', u'highway', u'claim']
[u'bali', u'court', u'second', u'appear']
[u'union', u'cast', u'doubt', u'heywood', u'pulp']
[u'unit', u'ferguson', u'say']
[u'troop', u'kill', u'afghan', u'polic', u'governor', u'say']
[u'vegi', u'grower', u'face', u'irrig']
[u'vet', u'cape', u'retreat', u'transfer', u'indigen']
[u'virgin', u'blue', u'tip', u'profit']
[u'vline', u'blame', u'upgrad', u'train', u'delay']
[u'wagga', u'triathlet', u'name', u'game', u'squad']
[u'warrior', u'troubl', u'bushrang']
[u'warrior', u'skittl', u'waca']
[u'water', u'initi', u'depend', u'cooper', u'expert']
[u'watson', u'say', u'super', u'seri', u'stay']
[u'weak', u'econom', u'growth', u'cost', u'pacif', u'nation', u'million']
[u'welcom', u'bird', u'drug', u'product']
[u'wine', u'group', u'back', u'code', u'conduct', u'recommend']
[u'wise', u'water', u'promot', u'north', u'west']
[u'woman', u'injur', u'assault']
[u'young', u'australian', u'stretch', u'super']
[u'yulara', u'airport', u'get', u'emerg', u'servic']
[u'accredit', u'boost', u'local', u'breast', u'screen']
[u'aftershock', u'hit', u'pakistan']
[u'alcohol', u'free', u'zone', u'plan', u'open', u'plan']
[u'anderson', u'urg', u'action', u'save', u'farmer', u'grain', u'crop']
[u'anti', u'viral', u'drug', u'stop', u'lead', u'bird']
[u'aussi', u'need', u'bowl', u'coach', u'say', u'pakistani']
[u'australian', u'missionari', u'killer', u'appeal']
[u'australian', u'year', u'speak', u'northern', u'doctor']
[u'australia', u'fish', u'interest', u'protect']
[u'aust', u'scientist', u'antarct', u'clean', u'mission']
[u'award', u'recognis', u'indigen', u'cultur', u'preserv']
[u'backbench', u'express', u'anti', u'terror', u'concern']
[u'balco', u'chief', u'jail', u'month']
[u'bali', u'bomb', u'victim', u'return', u'newcastl']
[u'ballarat', u'water', u'elect', u'issu']
[u'beazley', u'back', u'filipino', u'counter', u'terror', u'tie']
[u'beazley', u'challeng', u'howard', u'debat']
[u'beazley', u'outlin', u'labor', u'energi', u'polici']
[u'billiton', u'open', u'port', u'hedland', u'communiti', u'offic']
[u'bigger', u'thing', u'expect', u'australian', u'indi', u'team']
[u'boro', u'xavier', u'vow', u'fight', u'dope', u'charg']
[u'bracken', u'unwrap', u'swing', u'secret']
[u'british', u'space', u'societi', u'urg', u'man', u'mission']
[u'broker', u'protect', u'wool', u'auction']
[u'bull', u'tiger', u'rope']
[u'bushrang', u'warrior']
[u'byron', u'indigen', u'cultur', u'centr']
[u'trawl']
[u'maker', u'approv', u'ethanol', u'blend', u'fuel']
[u'cat', u'allerg', u'human']
[u'cattlemen', u'maintain', u'pressur', u'alpin', u'graze']
[u'centrelink', u'penalti', u'hurt', u'unemploy', u'report']
[u'centrelink', u'stop', u'work', u'wont', u'hamper', u'payment']
[u'senat', u'ask', u'vote', u'wast', u'dump']
[u'communiti', u'bank', u'lift', u'profit']
[u'consolid', u'miner', u'quit']
[u'cootamundra', u'council', u'wont', u'gaol']
[u'corrupt', u'index', u'highlight', u'african', u'issu']
[u'council', u'agre', u'reduc', u'road', u'widen']
[u'council', u'investig', u'librari', u'option']
[u'councillor', u'remind', u'correct', u'meet']
[u'council', u'seek', u'delay', u'water', u'fluorid']
[u'council', u'seek', u'longer', u'dutson', u'down', u'consult']
[u'council', u'hear', u'senior', u'accommod', u'crisi']
[u'council', u'mediat', u'health']
[u'council', u'urg', u'lift', u'lake', u'level']
[u'council', u'worker', u'accept', u'rise', u'deal']
[u'counter', u'terror', u'exercis', u'move', u'netbal', u'stadium']
[u'critic', u'bennett', u'unfair', u'say', u'barrett']
[u'cunderdin', u'beat', u'pay', u'debt']
[u'cut', u'electr', u'bill', u'expect']
[u'danish', u'princ']
[u'dead', u'bird', u'carrier', u'unlik', u'migrat']
[u'defenc', u'reject', u'push', u'rais', u'recruit']
[u'doctor', u'group', u'urg', u'flexibl', u'work', u'arrang']
[u'document', u'seek', u'guarante', u'futur', u'wollemi', u'pin']
[u'dwight', u'back', u'sydney', u'bounc']
[u'evalu', u'begin', u'counter', u'terror', u'exercis']
[u'farmer', u'defend', u'chemic', u'compani', u'stock', u'death']
[u'farmer', u'prompt', u'rememb', u'work', u'safeti']
[u'farmer', u'urg', u'reappli', u'drought']
[u'fatal', u'construct', u'accid', u'charg', u'dismiss']
[u'fear', u'ecstasi', u'continu', u'grow']
[u'feather', u'hen', u'night', u'end', u'fight']
[u'affect', u'student', u'abl', u'lodg', u'appeal']
[u'crime', u'outlin', u'case', u'saddam']
[u'fitzroy', u'river', u'water', u'pipelin', u'see', u'vital']
[u'flatmat', u'question', u'kill', u'hammer']
[u'fluorid', u'opposit', u'surpris', u'townsvill']
[u'footbal', u'diplomaci', u'boost', u'australia', u'stand']
[u'footbal', u'regain', u'conscious']
[u'forest', u'campaign', u'free', u'speech', u'push']
[u'forestri', u'group', u'plantat', u'promot', u'fund']
[u'forest', u'search', u'begin', u'miss']
[u'bank', u'advis', u'face', u'fraud', u'charg']
[u'alli', u'tell', u'ashbourn', u'inquiri']
[u'forum', u'focus', u'wheatbelt', u'futur']
[u'gallop', u'reject', u'minist', u'sack']
[u'ganguli', u'clear', u'play']
[u'govt', u'allow', u'time', u'dump', u'plan', u'studi']
[u'govt', u'block', u'censur', u'motion', u'share']
[u'govt', u'launch', u'apprenticeship', u'drive']
[u'govt', u'offer', u'steelwork', u'assur']
[u'govt', u'countri', u'origin', u'label']
[u'govt', u'urg', u'close', u'port', u'hedland', u'detent', u'centr']
[u'govt', u'urg', u'rethink', u'anim', u'cruelti', u'law']
[u'green', u'tassi', u'devil', u'concern']
[u'barrel', u'lee', u'testifi']
[u'health', u'bureaucrat', u'damn', u'mental']
[u'health', u'servic', u'work', u'bird', u'treatment']
[u'health', u'overhaul', u'includ', u'mean', u'test']
[u'henri', u'set', u'arsenal', u'goal', u'record', u'bayern', u'juve']
[u'death', u'attract', u'manslaught', u'charg']
[u'hope', u'remain', u'coast', u'flight']
[u'hospit', u'put', u'clinic', u'servic', u'shake', u'hold']
[u'hundr', u'lose', u'game', u'spot']
[u'hurrican', u'caus', u'fatal', u'mudslid', u'haiti']
[u'hurrican', u'wilma', u'strengthen', u'categori']
[u'hussey', u'roger', u'lead', u'waca', u'fightback']
[u'illeg', u'fish', u'focus', u'ministeri', u'talk']
[u'lose', u'touch', u'player', u'admit', u'buchanan']
[u'index', u'suggest', u'ongo', u'solid', u'econom', u'growth']
[u'indigen', u'tourism', u'bodi', u'eye', u'grow', u'demand']
[u'industri', u'hemp', u'seed', u'crop', u'mackay']
[u'inquiri', u'tell', u'conflict', u'whistleblow']
[u'irrig', u'offer', u'incent']
[u'jam', u'hardi', u'industri', u'disput', u'escal']
[u'joyc', u'urg', u'help', u'save', u'telstra', u'job']
[u'kalgoorli', u'boulder', u'quit']
[u'kimberley', u'polic', u'probe', u'murder', u'suicid']
[u'korean', u'veteran', u'health', u'wors', u'averag']
[u'kosmina', u'hit', u'bleiberg']
[u'labor', u'releas', u'altern', u'fuel', u'polici']
[u'prosecut', u'wit', u'call', u'gulf']
[u'lee', u'cross', u'examin', u'falconio']
[u'lee', u'express', u'uncertainti', u'cross', u'examin']
[u'leess', u'pay', u'interview', u'desper']
[u'lion', u'nathan', u'court', u'blow', u'cooper', u'takeov']
[u'lion', u'satisfi', u'nation', u'squad']
[u'listen', u'stori', u'mental', u'offici', u'urg']
[u'lone', u'ranger', u'comic', u'artist', u'die']
[u'longford', u'fish', u'kill', u'investig']
[u'machet', u'burn', u'pole', u'struggl']
[u'face', u'murder', u'charg', u'boy', u'death']
[u'mayor', u'hope', u'port', u'stage', u'approv']
[u'mayor', u'hop', u'desalin', u'plant', u'wont', u'need']
[u'mcewen', u'push', u'shack', u'secur', u'tenur']
[u'meatwork', u'face', u'uncertain', u'futur']
[u'melbourn', u'regain', u'second', u'team']
[u'mental', u'health', u'report', u'damn', u'democrat']
[u'minist', u'welcom', u'maker', u'ethanol', u'deal']
[u'minist', u'welcom', u'coron', u'chopper', u'crash']
[u'miss', u'person', u'famili', u'control']
[u'molik', u'ill', u'career', u'setback', u'alexand']
[u'molik', u'retir', u'hurt', u'zurich']
[u'moor', u'injur', u'newcastl', u'debut']
[u'moor', u'injuri', u'blow', u'socceroo']
[u'chang', u'echuca', u'melbourn', u'rail', u'line']
[u'angri', u'loom', u'centr', u'closur']
[u'call', u'townsvill', u'hospit', u'bed']
[u'quit', u'frontbench', u'parliament', u'scuffl']
[u'seek', u'uranium', u'mine', u'debat']
[u'suspend', u'attack', u'minist']
[u'suspend', u'attack', u'minist']
[u'mutil', u'shark', u'dump', u'park']
[u'nation', u'reach', u'floor', u'cross', u'joyc']
[u'nativ', u'titl', u'author', u'welcom', u'review']
[u'christian', u'school', u'seek', u'registr']
[u'inflat', u'worri', u'wall', u'street']
[u'jail', u'build', u'south', u'coast']
[u'polic', u'power', u'target', u'cyber', u'predat']
[u'power', u'wont', u'help', u'domest', u'violenc', u'victim']
[u'kill', u'chechen', u'violenc']
[u'bail', u'woman', u'accus', u'child', u'offenc']
[u'need', u'deregul', u'rice', u'industri', u'hull']
[u'announc', u'refresh', u'team']
[u'offic', u'acquit', u'child', u'charg', u'return', u'home']
[u'jeun', u'stake', u'melbourn', u'claim']
[u'oper', u'correct', u'orbit', u'fail']
[u'opposit', u'call', u'assembl', u'subjudic', u'chang']
[u'opposit', u'burn', u'defeat']
[u'opposit', u'seiz', u'leak', u'hospit', u'report']
[u'panel', u'find', u'aquif', u'water', u'suppli']
[u'panel', u'hear', u'wind', u'farm', u'submiss']
[u'parent', u'group', u'plan', u'kindi', u'manag', u'shake']
[u'parliament', u'tell', u'mental', u'women', u'detent']
[u'partnership', u'promis', u'better', u'deal', u'refuge']
[u'patrick', u'invest', u'million', u'port', u'kembla']
[u'perilya', u'look', u'extend', u'life']
[u'plaster', u'campaign', u'debacl', u'trainer']
[u'play', u'georgious', u'critic', u'anti', u'terror']
[u'polic', u'arrest', u'bali', u'blast', u'probe']
[u'polic', u'head', u'prais', u'counter', u'terrorist', u'exercis']
[u'polic', u'minist', u'urg', u'apologis', u'bungl']
[u'polic', u'yorkshir', u'ripper', u'hoaxer']
[u'polic', u'promot', u'communiti', u'safeti']
[u'polic', u'investig', u'second', u'backyard', u'grave']
[u'prison', u'worker', u'union', u'claim']
[u'privat', u'farm', u'forest', u'receiv', u'fund', u'boost']
[u'probe', u'consid', u'local', u'govt', u'perform']
[u'promin', u'lawyer', u'farewel', u'melbourn']
[u'propos', u'rise', u'anger', u'western']
[u'protest', u'bust', u'secur', u'line', u'function']
[u'psychologist', u'henti', u'jail', u'schoolboy', u'assault']
[u'suppli', u'braemar']
[u'rain', u'affect', u'waterway', u'rat']
[u'ratepay', u'group', u'unconcern', u'incorrect', u'land']
[u'ratepay', u'support', u'seek', u'council', u'legal']
[u'region', u'econom', u'forum', u'hold', u'regular']
[u'report', u'fail', u'shed', u'light', u'fatal', u'plane', u'crash']
[u'reveget', u'project']
[u'ricegrow', u'urg', u'deregul', u'rethink']
[u'road', u'rage', u'take', u'mean']
[u'roar', u'unit', u'hot']
[u'rumsfeld', u'use', u'china', u'trip', u'question', u'militari', u'aim']
[u'rupert', u'murdoch', u'offer', u'lunch', u'date']
[u'saddam', u'trial', u'adjourn', u'novemb']
[u'salmonella', u'victim', u'consid', u'sue', u'bakeri']
[u'saroff', u'quit', u'gold', u'coast', u'council']
[u'scientist', u'embark', u'antarct', u'clean']
[u'scientist', u'warn', u'grow', u'natur', u'disast']
[u'seafood', u'council', u'chief', u'resign', u'amid', u'illeg', u'fish']
[u'search', u'expand', u'miss', u'immigr', u'boat']
[u'senior', u'liber', u'break', u'rank', u'terror']
[u'servic', u'offer', u'support', u'abduct', u'children']
[u'shabbir', u'give', u'green', u'light', u'face', u'england']
[u'share', u'market', u'plung', u'inflat', u'fear']
[u'shire', u'plan', u'includ', u'howlong', u'truck', u'bypass']
[u'shrink', u'ozon', u'hole', u'prove', u'pact', u'work']
[u'sixer', u'seven', u'straight']
[u'smash', u'repair', u'maintain', u'nrma', u'protest']
[u'sweden', u'receiv', u'hopman']
[u'fail', u'mental', u'report']
[u'upper', u'hous', u'approv']
[u'upper', u'hous', u'debat', u'contenti']
[u'tiger', u'bright', u'start', u'second', u'inning']
[u'townsvill', u'host', u'super', u'clash']
[u'toyota', u'recal', u'car']
[u'truck', u'firm', u'downsiz']
[u'uruguay', u'game', u'sell']
[u'uruguay', u'want', u'qualifi', u'date', u'chang']
[u'uruguay', u'want', u'qualifi', u'date', u'chang']
[u'disput', u'iraqi', u'civilian', u'death', u'report']
[u'meet', u'focus', u'stall', u'global', u'trade', u'talk']
[u'vegi', u'grower', u'oppos', u'irrig', u'idea']
[u'visa', u'chang', u'boost', u'remot', u'work', u'forc']
[u'watson', u'miss', u'sport', u'portfolio']
[u'wheatbelt', u'hail', u'storm', u'damag', u'reach']
[u'winton', u'tran', u'tasman', u'trial']
[u'woman', u'die', u'central', u'coast', u'hous', u'blaze']
[u'woolworth', u'clear', u'action', u'supermarket']
[u'woolworth', u'report', u'rise', u'sale']
[u'wotif', u'move', u'list']
[u'accc', u'criticis', u'oppos', u'wooli', u'takeov']
[u'accc', u'investig', u'elder', u'beef']
[u'actew', u'forse', u'eas', u'water', u'cap']
[u'liber', u'squabbl', u'continu']
[u'afghanistan', u'order', u'investig', u'alleg']
[u'pleas', u'industri', u'outcom']
[u'airlin', u'say', u'emerg', u'incid']
[u'albani', u'harbour', u'bomb', u'battl', u'head', u'court']
[u'alcohol', u'allergi', u'barrier', u'make', u'wine']
[u'bali', u'bomb', u'suspect', u'releas']
[u'night', u'sit', u'pass', u'pitjantjatjara', u'land']
[u'ambros', u'ingal', u'expect', u'surfer']
[u'anglo', u'american', u'invest', u'million', u'australian']
[u'anim', u'liber', u'continu', u'live', u'anim', u'export']
[u'aust', u'boost', u'cambodia', u'landmin', u'clear', u'program']
[u'australian', u'expand', u'indian', u'softwar', u'firm']
[u'australian', u'fund', u'grow', u'asian', u'market']
[u'lead', u'state', u'base', u'award']
[u'bali', u'bomber', u'refus', u'seek', u'pardon']
[u'beatti', u'brack', u'foul', u'shoot', u'kill']
[u'beatti', u'hear', u'prison', u'guard', u'roster', u'worri']
[u'billiton', u'reveal', u'extens', u'subsid', u'plan']
[u'bleiberg', u'keep', u'unit', u'feud', u'simmer']
[u'blind', u'woman', u'die', u'microwav', u'mishap']
[u'bonfir', u'firework', u'mark', u'futur', u'king', u'birth']
[u'bono', u'lunch', u'bush']
[u'boof', u'unhappi', u'super', u'rule']
[u'brack', u'propos', u'yarra', u'drink', u'water', u'melbourn']
[u'break', u'prompt', u'polic', u'secur', u'warn']
[u'breast', u'cancer', u'drug', u'halv', u'relaps', u'rate']
[u'break', u'hill', u'host', u'medic', u'educ', u'retreat']
[u'busselton', u'school', u'rememb', u'bali', u'blast', u'victim']
[u'govt', u'support', u'senior', u'servic']
[u'hospit', u'site', u'talk']
[u'calmer', u'condit', u'help', u'miss', u'immigr']
[u'campaign', u'underag', u'schooli']
[u'camp', u'alcohol', u'consid', u'histor']
[u'bomb', u'kill', u'iraq']
[u'maker', u'pledg', u'help', u'boost', u'fuel', u'sale']
[u'centrelink', u'say', u'stop', u'work', u'wont', u'affect', u'client']
[u'centrelink', u'stop', u'work', u'disrupt', u'servic']
[u'chamber', u'boost', u'aust', u'canada', u'trade', u'tie']
[u'chavez', u'claim', u'plan', u'invad', u'venezuela']
[u'chicken', u'dispos', u'site', u'earmark', u'case', u'bird']
[u'ciss', u'lift', u'liverpool', u'past', u'anderlecht', u'kewel']
[u'coff', u'promis', u'continu', u'highway', u'campaign']
[u'coleman', u'xcellent', u'choic', u'say', u'trainer']
[u'problem', u'caus', u'cargo', u'backlog']
[u'concern', u'air', u'nativ', u'titl', u'shake']
[u'conlon', u'comfort', u'energi', u'reserv']
[u'council', u'get', u'condit', u'allow', u'assess']
[u'council', u'give', u'caravan', u'park']
[u'council', u'hop', u'schooli', u'number', u'manag']
[u'councillor', u'motiv', u'question', u'meet']
[u'council', u'consid', u'termin', u'option']
[u'council', u'offer', u'public', u'saleyard', u'detail']
[u'court', u'strip', u'pinochet', u'immun']
[u'court', u'hear', u'harbour', u'bomb']
[u'curtain', u'opera', u'favourit']
[u'custom', u'boost', u'combat', u'illeg', u'fish']
[u'custom', u'offic', u'reinforc', u'northern', u'border']
[u'deadlin', u'health', u'inquiri', u'submiss', u'extend']
[u'democrat', u'launch', u'chaffey', u'candid', u'campaign']
[u'dept', u'focus', u'investig', u'child', u'abus']
[u'divers', u'import', u'small', u'town', u'surviv']
[u'doctor', u'group', u'boss', u'see', u'benefit', u'public']
[u'dorey', u'put', u'warrior', u'shout']
[u'downer', u'deni', u'militia', u'timor', u'violenc']
[u'target', u'solicitor', u'general', u'annual', u'report']
[u'dwight', u'ralli', u'troop']
[u'east', u'timor', u'rule', u'indonesian', u'aggress']
[u'timor', u'minist', u'go', u'troubl', u'enclav', u'amid']
[u'govt', u'blame', u'state', u'mental', u'health', u'crisi']
[u'festiv', u'goer', u'hear', u'hear', u'care', u'chang']
[u'figur', u'reveal', u'region', u'rat']
[u'fin', u'incent', u'power', u'firm', u'avoid', u'outag']
[u'firm', u'cement', u'altern', u'fuel', u'approv']
[u'injur', u'greek', u'train', u'derail']
[u'floodwat', u'oodnadatta', u'isol']
[u'floodwat', u'suck', u'girl', u'pipe']
[u'best', u'mat', u'hewitt', u'mcleod', u'slug']
[u'fraser', u'attack', u'anti', u'terror', u'legisl']
[u'fuel', u'problem', u'delay', u'airport', u'termin', u'swap']
[u'fund', u'boost', u'hospit', u'emerg', u'dept']
[u'fund', u'boost', u'hospit', u'elect', u'surgeri']
[u'gaol', u'decis', u'polit', u'motiv']
[u'govt', u'reject', u'medic', u'school', u'fund', u'claim']
[u'govt', u'fund', u'weir', u'work', u'investig']
[u'govt', u'urg', u'adopt', u'long', u'term', u'plan', u'sydney']
[u'grazier', u'hop', u'drought', u'review', u'panel']
[u'green', u'electr', u'rise']
[u'green', u'group', u'say', u'govt', u'murray', u'strategi']
[u'halloran', u'keen', u'return', u'victoria', u'polic']
[u'headless', u'mummi', u'unearth', u'peru']
[u'health', u'servic', u'chief', u'head', u'tingha']
[u'hickss', u'jail', u'time', u'count', u'downer']
[u'hickss', u'jail', u'time', u'count', u'sentenc']
[u'high', u'school', u'get', u'perform', u'art', u'centr']
[u'hobart', u'showground', u'futur', u'review']
[u'hospit', u'intens', u'care', u'boost']
[u'howard', u'hail', u'success', u'campaign']
[u'howard', u'reject', u'fraser', u'anti', u'terror', u'concern']
[u'immigr', u'dept', u'say', u'detent', u'centr']
[u'import', u'pigeon', u'expos', u'bird']
[u'independ', u'back', u'nuclear', u'reactor', u'australia']
[u'internet', u'babi', u'sale', u'spark', u'investig']
[u'invinc', u'arsenal', u'team']
[u'worker', u'await', u'redund', u'news']
[u'chang', u'nurs', u'number', u'union']
[u'itali', u'stand', u'firm', u'dope', u'law', u'winter']
[u'jone', u'confid', u'return', u'tour', u'india']
[u'judg', u'warn', u'lengthi', u'court', u'delay']
[u'kangaroo', u'prepar', u'crunch', u'nation', u'clash']
[u'king', u'hop', u'young', u'windi', u'talent']
[u'lachlan', u'shire', u'drought', u'condit', u'eas']
[u'landhold', u'warn', u'bushfir', u'readi']
[u'lawyer', u'urg', u'grain', u'industri', u'grower', u'protect']
[u'lee', u'finish', u'give', u'evid', u'murdoch', u'trial']
[u'lee', u'show', u'court', u'escap', u'move']
[u'lee', u'bruis']
[u'leggi', u'mushtaq', u'close', u'pakistan', u'comeback']
[u'liber', u'claim', u'tripodi']
[u'lion', u'nathan', u'deni', u'takeov', u'troubl']
[u'lyon', u'chelsea', u'liverpool', u'stake', u'champion', u'claim']
[u'macquari', u'steer', u'ferri', u'purchas']
[u'malaysia', u'mourn', u'wife']
[u'utd', u'ronaldo', u'arrest', u'suspicion', u'rape']
[u'matilda', u'mexico', u'paso', u'friend']
[u'maximum', u'sentenc', u'debt', u'killer']
[u'mental', u'health', u'report', u'surpris']
[u'mental', u'health', u'servic', u'transfer', u'logic', u'abbott']
[u'migrant', u'centr', u'concern', u'increas', u'racial']
[u'miner', u'plan', u'pilbara', u'upgrad']
[u'miner', u'urg', u'conduct', u'hold', u'public', u'forum']
[u'minist', u'deni', u'interfer', u'paedophil', u'parol']
[u'mock', u'accid', u'benefit', u'medic', u'student']
[u'movi', u'star', u'shelley', u'winter', u'rush', u'hospit']
[u'question', u'plan', u'boat', u'safeti', u'rule']
[u'surpris', u'minist', u'wish', u'differ']
[u'nation', u'census', u'prepar', u'begin']
[u'nation', u'reject', u'govt', u'plan', u'water', u'chang']
[u'newborn', u'princ', u'tambo', u'teddi']
[u'helipad', u'boost', u'pakistani', u'effort']
[u'legisl', u'offer', u'bridg', u'hope']
[u'tank', u'shore', u'water', u'suppli', u'north', u'west', u'town']
[u'breakthrough', u'stall', u'highway', u'project']
[u'nrma', u'seek', u'bypass', u'bridg', u'explan']
[u'build', u'code', u'cyclon', u'proof']
[u'obes', u'bigger', u'risk', u'liver', u'alcohol']
[u'opera', u'thrive', u'pavarotti']
[u'opposit', u'maintain', u'pressur', u'govt']
[u'pakistan', u'need', u'urgent', u'annan']
[u'pakistan', u'quak', u'relief', u'situat', u'wors', u'tsunami']
[u'philippoussi', u'offer', u'adelaid', u'wildcard']
[u'pirat', u'prove', u'good', u'hapless', u'croc']
[u'pirat', u'townsvill']
[u'plan', u'afoot', u'address', u'esper', u'water', u'need']
[u'plaster', u'melbourn']
[u'danger', u'protest', u'polic']
[u'premier', u'split', u'terror', u'law']
[u'polic', u'high', u'speed', u'chase']
[u'polic', u'probe', u'break']
[u'port', u'back', u'custom', u'tackl', u'softwar', u'troubl']
[u'port', u'piri', u'plan', u'law', u'chang', u'combat', u'lead']
[u'premier', u'speak', u'shoot', u'kill', u'provis']
[u'preschool', u'hope', u'financi', u'relief']
[u'publican', u'rais', u'rfds', u'fund']
[u'publish', u'googl', u'print', u'librari']
[u'race', u'victoria', u'stand', u'race', u'industri', u'offer']
[u'rain', u'boost', u'grain', u'grower', u'hop']
[u'rain', u'end', u'bull', u'victori', u'hop']
[u'rain', u'interrupt', u'bull', u'victori', u'push', u'tiger']
[u'rare', u'stamp', u'sell', u'near']
[u'cun', u'outsmart', u'scientist', u'month']
[u'renew', u'fuel', u'group', u'prais', u'maker']
[u'report', u'lift', u'coast', u'river', u'rat']
[u'research', u'highlight', u'cost', u'king', u'highway', u'crash']
[u'resourc', u'stock', u'lead', u'market', u'lower']
[u'roch', u'guid', u'india', u'mirza']
[u'rspca', u'raid', u'alleg', u'cock', u'fight', u'venu']
[u'rural', u'financi', u'servic', u'edg']
[u'rural', u'mosquito', u'spray', u'practic']
[u'saddam', u'lawyer', u'want', u'time']
[u'rang', u'water', u'flow', u'proscrib']
[u'satellit', u'concern', u'surfac', u'murder', u'trial']
[u'wait', u'feedback', u'terror', u'exercis']
[u'sawmil', u'fear', u'compo', u'fund', u'shortfal']
[u'school', u'leaver', u'defer', u'univers', u'studi']
[u'school', u'share', u'improv', u'project', u'fund']
[u'scone', u'host', u'australian', u'premier', u'gallipoli', u'doco']
[u'search', u'continu', u'miss']
[u'search', u'find', u'miss', u'nation', u'park', u'tourist']
[u'section', u'famili', u'violenc', u'worri', u'societi']
[u'prepar', u'melbourn', u'storm']
[u'shack', u'fail', u'pass']
[u'ship', u'dock', u'despit', u'custom', u'problem']
[u'shire', u'say', u'report', u'confirm', u'aquif', u'fear']
[u'shire', u'merger', u'surpris', u'minist']
[u'shoalhaven', u'council', u'site', u'mind', u'gaol']
[u'shoot', u'kill', u'plan', u'arent', u'say']
[u'socceroo', u'join', u'asian', u'giant', u'nation']
[u'socceroo', u'reject', u'play', u'date', u'chang']
[u'spanish', u'judg', u'issu', u'warrant', u'soldier']
[u'springborg', u'question', u'kalpow', u'titl', u'transfer']
[u'stanthorp', u'council', u'crack', u'water']
[u'storm', u'savag', u'outback', u'communiti']
[u'student', u'muck', u'warn']
[u'survey', u'find', u'turk', u'honour', u'kill']
[u'sweet', u'swing', u'secret', u'joke', u'say', u'bracken']
[u'telstra', u'consid', u'scrap', u'cdma', u'mobil', u'phone']
[u'tender', u'call', u'ambul', u'station']
[u'thailand', u'confirm', u'bird', u'death']
[u'tough', u'condit', u'auckland', u'test']
[u'tree', u'provid', u'fuel']
[u'charg', u'airport', u'secur', u'incid']
[u'consid', u'hick', u'citizenship', u'lawyer']
[u'union', u'rais', u'concern', u'abalon', u'ship', u'accid']
[u'union', u'warn', u'sack', u'public', u'sector', u'trim']
[u'unit', u'shortcom', u'expos', u'lill']
[u'unit', u'ronaldo', u'deni', u'rape', u'claim']
[u'probe', u'claim', u'soldier', u'burn', u'milit', u'bodi']
[u'readi', u'biggest', u'storm']
[u'vail', u'deni', u'split', u'joyc']
[u'premier', u'deni', u'race', u'alleg']
[u'wagga', u'hospit', u'report', u'near', u'complet']
[u'wall', u'street', u'stock', u'headway']
[u'warrior', u'build', u'lead', u'bushrang']
[u'warrior', u'build', u'lead', u'martyn', u'earli']
[u'welfar', u'advoc', u'question', u'safe']
[u'west', u'go', u'steal', u'duck']
[u'wilma', u'inspir', u'bravado', u'fear', u'florida', u'key']
[u'windi', u'face', u'tough', u'summer']
[u'wine', u'lover', u'leav', u'smile', u'vintner', u'struggl']
[u'win', u'record', u'stop', u'socceroo', u'slide']
[u'wooli', u'decis', u'prompt', u'disband', u'accc']
[u'deal', u'danger', u'geneva', u'talk', u'fail']
[u'yeppoon', u'fin', u'child', u'porn', u'pic']
[u'abramovich', u'reveal', u'grandios', u'year', u'plan']
[u'accc', u'ask', u'probe', u'abort', u'counsellor']
[u'actor', u'sue', u'neighbour', u'produc']
[u'adelaid', u'owner', u'donat', u'land', u'protect', u'bandicoot']
[u'adelaid', u'symphoni', u'orchestra', u'hop', u'strike', u'chord']
[u'agricultur', u'catchment', u'council', u'earn', u'ministeri']
[u'airport', u'arrest', u'rais', u'secur', u'concern']
[u'ancient', u'greek', u'onlin']
[u'armi', u'investig', u'rape', u'claim']
[u'take', u'dive']
[u'august', u'sale', u'jump', u'percent']
[u'aussi', u'line', u'ireland', u'clash']
[u'aust', u'help', u'stem', u'mcdonald', u'declin']
[u'australia', u'ban', u'canadian', u'bird']
[u'australian', u'broadband', u'subscript', u'jump']
[u'australia', u'prepar', u'case', u'disast']
[u'barthez', u'inspir', u'marseill', u'uefa', u'steaua', u'rout']
[u'beatti', u'outlin', u'health', u'reform', u'fund']
[u'beazley', u'will', u'reconsid', u'republ', u'stanc']
[u'beck', u'pop', u'british', u'kid']
[u'berri', u'threat', u'hoax']
[u'pump', u'brazil', u'oper']
[u'blood', u'test', u'detect', u'rare', u'cancer']
[u'bolivian', u'get', u'life', u'term', u'cocain', u'bust']
[u'bougainvill', u'elect', u'ahead', u'despit']
[u'bourdai', u'streak', u'indi', u'qualifi']
[u'bourdai', u'tear', u'indi', u'qualifi']
[u'brack', u'roll', u'school', u'broadband', u'initi']
[u'british', u'profil', u'help', u'search', u'miss']
[u'crash', u'anniversari', u'highway', u'fund', u'push']
[u'bush', u'abba', u'meet', u'white', u'hous']
[u'bushland', u'search', u'continu', u'flee', u'teen']
[u'bushrang', u'warrior']
[u'bush', u'renew', u'palestinian', u'state']
[u'busi', u'usual', u'ford', u'australia']
[u'anti', u'terror', u'chang', u'reveal']
[u'camera', u'snapshot', u'reef', u'water', u'qualiti']
[u'campervan', u'buff', u'keen', u'head', u'break', u'hill']
[u'canada', u'play', u'bird', u'scare']
[u'canberra', u'warship', u'stop', u'geraldton']
[u'confirm', u'call', u'olymp', u'bronz']
[u'centrelink', u'upset', u'stop', u'work']
[u'chemic', u'transport', u'worri', u'temora', u'shire']
[u'chines', u'book', u'quick', u'getaway', u'space']
[u'ciss', u'caution', u'assault', u'teenag']
[u'civic', u'busi', u'suffer', u'citi', u'park', u'shortag']
[u'civil', u'libertarian', u'urg', u'rethink', u'industri']
[u'claim', u'global', u'warm', u'ignor', u'approv']
[u'communiti', u'concern', u'ferri', u'gold']
[u'compani', u'profit', u'inflat', u'fear', u'wall', u'street']
[u'blame', u'port', u'delay', u'stay']
[u'concert', u'rais', u'money', u'bush', u'music', u'student']
[u'council', u'back', u'imag', u'recommend']
[u'council', u'fear', u'rail', u'station', u'public', u'liabil', u'risk']
[u'councillor', u'outlin', u'currumbin', u'retain', u'wall', u'cost']
[u'councillor', u'seek', u'chang', u'hand', u'hold', u'hose', u'hour']
[u'council', u'support', u'local', u'govt', u'financ', u'probe']
[u'council', u'thank', u'beatti', u'dolphin', u'feed']
[u'council', u'save', u'park', u'water']
[u'credit', u'cultur', u'rampant']
[u'cudicini', u'extend', u'chelsea', u'contract']
[u'custom', u'charg', u'weapon', u'seizur']
[u'dead', u'highway', u'claim', u'life']
[u'dead', u'get', u'park', u'ticket']
[u'death', u'sentenc', u'uphold', u'aust', u'singapor']
[u'denmark', u'queen', u'welcom', u'devil', u'gift']
[u'develop', u'rule', u'chang', u'lord', u'howe']
[u'doctor', u'contradict', u'lee', u'evid', u'falconio']
[u'doctor', u'say', u'lee', u'deni', u'head']
[u'doctor', u'seek', u'licenc', u'issu', u'abort', u'pill']
[u'doctor', u'group', u'see', u'fund', u'vital', u'health']
[u'dodgi', u'tradesmen', u'approach', u'hail', u'victim']
[u'economist', u'say', u'beatti', u'health', u'reform', u'moral']
[u'educ', u'dept', u'rule', u'intellig', u'design']
[u'member', u'draw', u'bird', u'plan']
[u'evid', u'syrian', u'involv', u'hariri', u'death']
[u'expert', u'reveal', u'link', u'anim', u'abus']
[u'farmer', u'angri', u'milk', u'price']
[u'firm', u'talk', u'major', u'project', u'status', u'plan']
[u'flee', u'teen', u'rescu', u'bushland']
[u'forc', u'timber', u'redund', u'unlik']
[u'forest', u'group', u'promis', u'action', u'fake', u'jarrah']
[u'gallop', u'urg', u'lift', u'alinta', u'veil', u'secreci']
[u'genet', u'mutat', u'dead', u'children', u'court']
[u'georg', u'town', u'back', u'waterfront', u'plan']
[u'geraldton', u'breakwat', u'finish']
[u'gillard', u'call', u'medicar', u'number', u'midwiv']
[u'girl', u'brave', u'effort', u'earn', u'award']
[u'gold', u'coast', u'probe', u'hear', u'campaign', u'evid']
[u'gold', u'medal', u'brand', u'scheme', u'help', u'struggl', u'dairi']
[u'googl', u'report', u'seven', u'fold', u'profit', u'surg']
[u'govt', u'accus', u'shut', u'parliament']
[u'govt', u'exploit', u'tunnel', u'loophol', u'lawyer', u'say']
[u'govt', u'cost', u'plus']
[u'govt', u'retali', u'leak', u'stanhop']
[u'govt', u'seed', u'fund', u'drug', u'program', u'truss']
[u'govt', u'stand', u'firm', u'tunnel', u'contract']
[u'govt', u'consid', u'propos', u'altern', u'dump', u'site']
[u'govt', u'urg', u'rethink', u'welfar', u'chang']
[u'govt', u'weigh', u'live', u'bird', u'import']
[u'grain', u'grower', u'count', u'cost', u'frost', u'damag']
[u'grandmoth', u'call', u'standardis', u'carer', u'payment']
[u'greek', u'bird', u'test', u'negat']
[u'greenland', u'icecap', u'thicken', u'despit', u'warm']
[u'grower', u'bulldoz', u'valencia', u'tree']
[u'gulf', u'murder', u'trial', u'near']
[u'hail', u'storm', u'spar', u'coalfield']
[u'hariri', u'probe', u'put', u'syria', u'collis', u'cours']
[u'hayden', u'intent', u'regain', u'spot']
[u'hope', u'trucki', u'memori', u'spark', u'highway', u'upgrad']
[u'hunter', u'valley', u'consid', u'way', u'bali']
[u'hurrican', u'wilma', u'lash', u'mexico']
[u'import', u'bird', u'test', u'posit', u'bird', u'antibodi']
[u'indigen', u'group', u'tender', u'wast', u'manag']
[u'indigen', u'group', u'vote', u'site', u'wast', u'dump']
[u'indonesian', u'fishermen', u'australian', u'mainland']
[u'challeng', u'lose', u'technic', u'roxon', u'say']
[u'jackson', u'call', u'juri', u'duti']
[u'jockey', u'posit', u'continu', u'leagu']
[u'judg', u'attack', u'resourc', u'justic']
[u'judg', u'criticis', u'lenienc', u'show', u'drink']
[u'kangaroo', u'hang', u'auckland']
[u'kangaroo', u'loss', u'good', u'leagu', u'say', u'bennett']
[u'kangaroo', u'option', u'attack', u'bennett']
[u'kiama', u'unlik', u'gaol']
[u'kimberley', u'minist', u'inspect', u'worst', u'school']
[u'lack', u'resourc', u'blame', u'court', u'delay']
[u'lawyer', u'saddam', u'trial', u'kidnap', u'baghdad']
[u'lawyer', u'saddam', u'trial', u'shoot', u'dead']
[u'lead', u'sick', u'children']
[u'lee', u'bind', u'tight', u'wit', u'say']
[u'littl', u'fish', u'make', u'splash', u'nomin', u'pool']
[u'littl', u'pebbl', u'charg', u'abus']
[u'local', u'aborigin', u'submit', u'nativ', u'titl', u'evid']
[u'local', u'busi', u'export', u'award']
[u'local', u'recognis', u'brave', u'effort']
[u'avoid', u'jail', u'term', u'shoot', u'neighbour']
[u'guilti', u'best', u'friend', u'manslaught']
[u'marshal', u'second', u'fastest', u'indi', u'practic']
[u'martin', u'urg', u'brake', u'anti', u'terror']
[u'mayor', u'korea', u'highlight', u'healthi', u'citi', u'scheme']
[u'mayor', u'ponder', u'water', u'park', u'challeng']
[u'meat', u'industri', u'reject', u'water']
[u'meat', u'processor', u'plan', u'abattoir']
[u'meatwork', u'look', u'american', u'worker']
[u'melbourn', u'frontlin', u'bird', u'battl']
[u'melbourn', u'hang']
[u'suit', u'take', u'slay', u'saddam', u'trial', u'lawyer']
[u'minist', u'defend', u'indigen', u'literaci', u'program']
[u'declar', u'share', u'appropri']
[u'move', u'afoot', u'protect', u'lighthous', u'platform']
[u'hurt', u'school', u'crash']
[u'muswellbrook', u'bypass', u'prefer', u'rout', u'announc']
[u'nation', u'target', u'syria', u'hariri', u'death', u'link']
[u'archbishop', u'expedit', u'abus', u'compo', u'claim']
[u'harri', u'potter', u'film', u'scari']
[u'announc', u'bowen', u'basin']
[u'charg', u'beslan', u'heavi', u'weapon']
[u'formal', u'decis', u'expo', u'futur']
[u'north', u'west', u'tourism', u'look', u'boost']
[u'jail', u'horrifi', u'murder']
[u'paralysi', u'pair', u'deni', u'damag']
[u'ogilvi', u'shoot', u'pace', u'orlando']
[u'opposit', u'want', u'veget', u'concern', u'deal']
[u'orthodontist', u'attempt', u'sydney', u'hobart', u'record']
[u'pakistan', u'quak', u'toll', u'doubl']
[u'paper', u'reveal', u'govt', u'bind', u'tunnel', u'traffic']
[u'parliament', u'slash', u'timefram', u'sue', u'doctor']
[u'pilbara', u'iron', u'demand', u'expect', u'remain']
[u'open', u'debat', u'nanni', u'rebat']
[u'seek', u'shoot', u'kill', u'agreement', u'state']
[u'polic', u'hunt', u'miss']
[u'polic', u'investig', u'attempt', u'schoolgirl', u'abduct']
[u'polic', u'probe', u'caus', u'dead', u'unit', u'blaze']
[u'polic', u'probe', u'claim', u'tortur', u'poker']
[u'polic', u'probe', u'mildura']
[u'polic', u'seek', u'help', u'solv', u'decad', u'death']
[u'pont', u'disappoint', u'fletcher', u'attack']
[u'possibl', u'tornado', u'cut', u'swath', u'curung']
[u'qanta', u'accus', u'outsourc', u'plan']
[u'qanta', u'chief', u'deni', u'restructur', u'cover']
[u'qanta', u'offshor', u'plan', u'anger', u'union', u'opposit']
[u'region', u'area', u'target', u'credit', u'card', u'scam']
[u'region', u'develop', u'minist', u'converg', u'coff']
[u'region', u'join', u'forc', u'remot', u'mine', u'network']
[u'retail', u'group', u'want', u'trade', u'hour', u'decis']
[u'retir', u'villag', u'resid', u'health', u'servic']
[u'issu', u'burn', u'warn']
[u'rider', u'reliv', u'light', u'hors', u'journey']
[u'ronaldo', u'readi', u'face', u'tottenham']
[u'rural', u'skill', u'train', u'hear', u'come', u'newcastl']
[u'add', u'opposit', u'wast', u'dump', u'plan']
[u'attorney', u'general', u'investig', u'anti']
[u'busi', u'confid', u'drop']
[u'scheme', u'help', u'lower', u'sexual', u'transmit', u'diseas']
[u'search', u'call', u'miss', u'torr', u'strait']
[u'search', u'miss', u'torr', u'strait', u'continu']
[u'shire', u'delay', u'beach', u'review']
[u'shoot', u'kill', u'provis', u'polic', u'chief']
[u'smyth', u'stand', u'firm', u'face', u'instabl', u'claim']
[u'solar', u'energi', u'power', u'armi', u'train', u'base']
[u'staff', u'order', u'kyrgyz', u'prison', u'kill']
[u'strong', u'earthquak', u'kill', u'turkey']
[u'studi', u'highlight', u'coast', u'strong', u'econom', u'growth']
[u'support', u'superpit', u'child', u'care', u'plan']
[u'survey', u'support', u'freeway', u'extens']
[u'sydney', u'knight', u'victori']
[u'sydney']
[u'sydney', u'water', u'attempt', u'hose', u'pipe', u'outrag']
[u'syria', u'involv', u'hariri', u'death', u'say']
[u'thai', u'beat', u'bird', u'outbreak', u'asia']
[u'illeg', u'fish', u'boat', u'spot', u'day']
[u'threat', u'halt', u'berri', u'product']
[u'put', u'ganguli']
[]
[u'tourist', u'reflect', u'nation', u'park', u'rescu']
[u'ultralight', u'crash', u'scene', u'investig']
[u'hariri', u'report', u'bias', u'syria']
[u'tempo', u'australian', u'aim', u'intern']
[u'uranium', u'miner', u'optimist', u'project']
[u'damag', u'control', u'taliban', u'bodi', u'burn']
[u'jitter']
[u'student', u'face', u'write', u'exam']
[u'vet', u'bird', u'import']
[u'victorian', u'opposit', u'attack', u'land', u'chang']
[u'victoria', u'urg', u'boost', u'anim', u'cruelti', u'law']
[u'wallabi', u'announc', u'disciplin', u'crackdown']
[u'water', u'suppli', u'see', u'vital', u'growth']
[u'week', u'rais', u'south', u'east', u'poverti', u'awar']
[u'wilma', u'head']
[u'wind', u'farm', u'give', u'environment', u'green', u'light']
[u'wine', u'expert', u'put', u'posit', u'spin', u'grape', u'glut']
[u'wool', u'industri', u'mull', u'reloc', u'yennora', u'sell']
[u'woosnam', u'readi', u'wnbl', u'comeback']
[u'xcellent', u'doubt', u'plate']
[u'young', u'pup', u'savag', u'ireland']
[u'croc', u'pull', u'river']
[u'obscen']
[u'grandstand', u'speak', u'greg', u'murphi']
[u'grandstand', u'speak', u'freedman']
[u'grandstand', u'speak', u'ricki', u'pont', u'jimmi']
[u'wont', u'miss', u'terror', u'law', u'draft', u'howard']
[u'extend', u'benefit', u'coupl']
[u'afghanistan', u'karzai', u'condemn', u'taliban', u'bodi', u'burn']
[u'anti', u'terror', u'law', u'open', u'abus', u'brown']
[u'anti', u'terror', u'law', u'protest', u'hold']
[u'auckland', u'titl']
[u'australian', u'zealand', u'kill', u'plane', u'crash']
[u'author', u'apprehend', u'illeg', u'fish', u'boat']
[u'babi', u'injur', u'accid']
[u'banner', u'herald', u'union', u'campaign', u'workplac']
[u'beatti', u'steal', u'tree', u'landhold', u'joyc']
[u'bird', u'patient', u'hous', u'hangar']
[u'boomer', u'power']
[u'botox', u'benefit', u'scrutini', u'cereb', u'palsi']
[u'brazil', u'find', u'foot', u'mouth', u'case']
[u'britain', u'arrest', u'intern', u'terror']
[u'bull', u'hang', u'victori', u'tiger']
[u'bush', u'alli', u'front', u'court', u'conspiraci', u'charg']
[u'caterpillar', u'move', u'lower']
[u'cdma', u'talk', u'worri', u'telstra', u'repres']
[u'chicken', u'farm', u'step', u'bird', u'defenc']
[u'connect', u'bite', u'bullet', u'xcellent']
[u'council', u'tell', u'construct', u'law']
[u'council', u'urg', u'fluorid', u'vote']
[u'democrat', u'want', u'intellig', u'design', u'lesson']
[u'diva', u'confirm', u'legendari', u'status']
[u'doubt', u'hang', u'diva']
[u'drink', u'driver', u'time', u'legal', u'limit']
[u'egyptian', u'mummi', u'arriv', u'exhibit']
[u'faction', u'crippl', u'labor', u'faulkner']
[u'faction', u'caus', u'labor', u'faulkner']
[u'farmer', u'welcom', u'continu', u'rain']
[u'faulkner', u'attack', u'labor', u'parti']
[u'damag', u'retir', u'villag']
[u'fisheri', u'defend', u'shark', u'catch', u'limit']
[u'flame', u'strong', u'capit']
[u'arrest', u'bomb', u'make', u'materi']
[u'injur', u'arm', u'robberi']
[u'student', u'hospit', u'crash']
[u'gallop', u'stand', u'school', u'seat', u'belt', u'polici']
[u'giant', u'corps', u'flower', u'rare', u'bloom']
[u'googl', u'chang', u'set', u'stock', u'sail']
[u'govt', u'urg', u'hous', u'avail']
[u'govt', u'urg', u'boost', u'foster', u'carer', u'recruit']
[u'gronholm', u'hit', u'troubl']
[u'gympi', u'miss', u'chanc', u'host', u'gold', u'pan', u'comp']
[u'hariri', u'report', u'put', u'syria', u'pressur']
[u'hariri', u'hail', u'report']
[u'hewitt', u'clinch', u'master', u'berth']
[u'hurrican', u'wilma', u'lash', u'mexico']
[u'hurrican', u'wilma', u'weaken']
[u'impuls', u'cheer', u'peopl', u'cost']
[u'indigen', u'control', u'good', u'cape', u'environ']
[u'indonesia', u'rap', u'australia', u'illeg', u'fish']
[u'injuri', u'excus', u'say', u'ferguson']
[u'injuri', u'threaten', u'joey', u'nation', u'campaign']
[u'inquiri', u'prompt', u'monitor', u'hous', u'tender']
[u'iraqi', u'rule', u'move', u'saddam', u'trial']
[u'macgil']
[u'jazz', u'great', u'shirley', u'horn', u'die']
[u'philippin', u'threat']
[u'jone', u'line', u'britain']
[u'king', u'squeez', u'home', u'hawk']
[u'kyli', u'deni', u'seek', u'altern', u'cancer', u'treatment']
[u'male', u'model', u'featur', u'champ']
[u'male', u'model', u'featur', u'tenni', u'championship']
[u'kill', u'light', u'plane', u'crash']
[u'releas', u'charg', u'abduct', u'attempt']
[u'mayor', u'repeat', u'singl', u'transport', u'author']
[u'melandri', u'shade', u'rossi', u'record']
[u'memori', u'park', u'build', u'burial', u'grind']
[u'molik', u'crossroad']
[u'molik', u'camp', u'deni', u'retir', u'rumour']
[u'moodi', u'say', u'india', u'tough', u'beat', u'home']
[u'charg', u'lay', u'food', u'program']
[u'motorist', u'warn', u'heavi', u'rain', u'cut', u'road']
[u'murdoch', u'hear', u'poison', u'pill', u'anger']
[u'murphi', u'win', u'race']
[u'nato', u'deploy', u'troop', u'pakistani', u'effort']
[u'nato', u'effort']
[u'archbishop', u'urg', u'anglican', u'address', u'abus']
[u'bird', u'case', u'discov', u'europ']
[u'pope', u'draw', u'bigger', u'crowd', u'john', u'paul']
[u'zealand', u'bowler']
[u'afghan', u'policemen', u'kill']
[u'nobl', u'call', u'fan', u'great', u'britain']
[u'need', u'panic', u'say']
[u'liber', u'leader', u'foreshadow', u'major', u'reform']
[u'offici', u'accus', u'store', u'quak', u'relief', u'suppli']
[u'ogilvi', u'retain', u'second', u'spot', u'florida']
[u'iraqi', u'provinc', u'reject', u'constitut']
[u'opposit', u'propos', u'salt', u'mount']
[u'pakistan', u'quak', u'total', u'inadequ', u'musharraf']
[u'parent', u'risk', u'jail', u'discuss', u'children', u'detent']
[u'phoenix', u'domin', u'netbal', u'award']
[u'photograph', u'come', u'mosss', u'defenc']
[u'polic', u'confus', u'woman', u'injuri', u'drunken']
[u'polic', u'head', u'driver', u'strand', u'birdsvill', u'track']
[u'polic', u'investig', u'suspici', u'death']
[u'polic', u'seek', u'help', u'dog', u'killer']
[u'polic', u'warn', u'pesticid', u'theft']
[u'pool', u'leak', u'wont', u'affect', u'game', u'say', u'govt']
[u'princ', u'william', u'report', u'duti', u'sandhurst']
[u'probe', u'miss', u'immigr', u'boat', u'begin']
[u'health', u'payment', u'plan', u'like', u'unstopp']
[u'quadripleg', u'bequest', u'spinal', u'cord', u'research']
[u'quak', u'survivor']
[u'rain', u'caus', u'flood']
[u'rann', u'urg', u'ramp', u'dump', u'opposit']
[u'salt', u'plan', u'open', u'public', u'comment']
[u'servia', u'claim', u'indi', u'pole']
[u'sick', u'radiologist', u'caus', u'breast', u'screen', u'backlog']
[u'super', u'sink', u'roar']
[u'taiwan', u'ignor', u'drug', u'patent']
[u'tasmanian', u'teacher', u'seek', u'state', u'award']
[u'polic', u'monitor', u'threat']
[u'telstra', u'manag', u'oppos', u'network', u'shutdown']
[u'tendulkar', u'track', u'sparkl', u'return']
[u'thousand', u'mourn', u'revil', u'uganda', u'obot', u'rival']
[u'tiger', u'bat', u'gabba']
[u'tiger', u'bowl', u'gabba']
[u'miss', u'light', u'plane', u'crash']
[u'palestinian', u'kill', u'west', u'bank']
[u'year', u'iraqi', u'armi', u'speed']
[u'unitab', u'director', u'jump', u'despit', u'opposit']
[u'venus', u'express', u'launch', u'postpon']
[u'wallabi', u'great', u'babi', u'injur', u'accid']
[u'wallabi', u'great', u'daughter', u'critic', u'accid']
[u'waugh', u'take', u'book']
[u'weather', u'forecast', u'keep', u'east', u'coast', u'road', u'close']
[u'wenger', u'remain', u'fear', u'lose', u'henri']
[u'wilma', u'flood', u'mexican', u'citi']
[u'woman', u'bodi', u'birdsvill', u'track', u'properti']
[u'world', u'week', u'save', u'darfur']
[u'talk', u'life', u'support']
[u'yachtsman', u'fall', u'short', u'sydney', u'hobart', u'record']
[u'arrest', u'earli', u'morn', u'street', u'brawl']
[u'wilma', u'inch', u'mexico']
[u'firearm', u'chicken', u'shed']
[u'half', u'resid', u'overweight', u'survey']
[u'alpha', u'break', u'atlant', u'storm', u'record']
[u'amnesti', u'lobbi', u'save', u'death', u'australian']
[u'apprenticeship', u'train', u'time', u'reduc']
[u'surviv', u'nigerian', u'plane', u'crash']
[u'steal', u'wag', u'payment']
[u'australia', u'add', u'pakistani', u'relief', u'effort']
[u'author', u'probe', u'fatal', u'plane', u'crash']
[u'benefit', u'coupl', u'lawyer']
[u'blue', u'make', u'solid', u'progress']
[u'blue', u'snatch', u'thrill', u'redback']
[u'bourdai', u'celebr', u'titl', u'indi', u'victori']
[u'britain', u'call', u'live', u'wild', u'bird', u'import']
[u'britain', u'send', u'helicopt', u'quak', u'region']
[u'bushrang', u'bat', u'warrior']
[u'bushrang', u'struggl', u'warrior']
[u'call', u'retali', u'video', u'show', u'taliban']
[u'chelsea', u'smile', u'unit', u'stutter']
[u'civic', u'communiti', u'centr', u'open']
[u'coastwatch', u'seiz', u'indonesian', u'fish', u'boat']
[u'colleagu', u'kearn', u'driveway', u'accid']
[u'colleagu', u'support', u'devast', u'kearn']
[u'confer', u'explor', u'marin', u'area', u'benefit']
[u'coron', u'consid', u'birdsvill', u'track', u'death']
[u'council', u'call', u'reform', u'poor']
[u'defiant', u'glori', u'strong', u'victori']
[u'dizzi', u'gilli', u'turn', u'dayer']
[u'dutch', u'govt', u'mull', u'prison', u'centr']
[u'etoo', u'bag', u'brace', u'barca']
[u'kill', u'earthquak', u'rattl', u'eastern']
[u'face', u'black', u'tour', u'squad']
[u'flood', u'mersey', u'river', u'continu', u'rise']
[u'gallop', u'seatbelt', u'decis', u'astound', u'opposit']
[u'govt', u'defend', u'reform', u'work', u'poor', u'claim']
[u'govt', u'pledg', u'extra', u'quak', u'ravag', u'pakistan']
[u'govt', u'urg', u'fund', u'hospit', u'bird', u'prepar']
[u'govt', u'urg', u'reopen', u'currong', u'apart']
[u'hariri', u'probe', u'arrest', u'suspect', u'link', u'presid']
[u'health', u'check', u'reduc', u'incid', u'diseas']
[u'heavi', u'rain', u'threaten', u'helen', u'oyster', u'stock']
[u'honda', u'push', u'rossi']
[u'hope', u'float', u'goondiwindi', u'water', u'park']
[u'hurrican', u'wilma', u'lash', u'caribbean', u'coast']
[u'india', u'offer', u'relief', u'centr', u'kashmir', u'frontier']
[u'inmat', u'tunnel', u'guatemala', u'prison']
[u'interview', u'craig', u'lownd']
[u'reform', u'creat', u'work', u'poor']
[u'japanes', u'mark', u'quak', u'anniversari']
[u'jet', u'sink', u'marin', u'late', u'goal']
[u'refus', u'centrelink', u'payment', u'govt']
[u'kemp', u'blast', u'south', u'africa', u'victori']
[u'king', u'breez', u'past', u'breaker']
[u'labor', u'seek', u'shed', u'light', u'budget']
[u'latrob', u'home', u'threaten', u'flood', u'continu']
[u'leader', u'mourn', u'jawoyn', u'elder']
[u'leaflet', u'oppos', u'chang']
[u'lehmann', u'lead', u'competit', u'total']
[u'loeb', u'pois', u'victori', u'corsica']
[u'lownd', u'break', u'gold', u'coast', u'duck']
[u'lownd', u'return', u'win', u'way']
[u'lynx', u'score', u'adelaid']
[u'collect', u'bargain', u'legal', u'right', u'combet']
[u'charg', u'fatal', u'stab']
[u'die', u'stab', u'brawl']
[u'martyn', u'centuri', u'help', u'warrior', u'victori']
[u'missi', u'clean', u'aria']
[u'aftershock', u'rock', u'quak', u'pakistan']
[u'worri', u'bjelk', u'petersen']
[u'nadal', u'match', u'feder', u'master', u'haul']
[u'bird', u'case', u'emerg']
[u'newman', u'nomin', u'tunnel', u'airport', u'link']
[u'nigerian', u'airlin', u'presum', u'crash', u'board']
[u'nigerian', u'offici', u'retract', u'comment', u'crash']
[u'player', u'catch', u'hurrican', u'path']
[u'player', u'hurrican', u'path']
[u'govt', u'pledg', u'action', u'eas', u'pressur', u'prison']
[u'ogilvi', u'stalk', u'beem']
[u'hospit', u'site', u'sale']
[u'dead', u'polic', u'injur', u'clash', u'birmingham']
[u'pire', u'apologis', u'penalti', u'howler']
[u'rule', u'immedi', u'bird', u'fund', u'increas']
[u'say', u'govt', u'chang', u'death', u'verdict']
[u'say', u'anti', u'terror', u'law', u'wont', u'singl', u'group']
[u'want', u'anti', u'terror', u'law', u'place', u'year']
[u'pole', u'vote', u'close', u'presidenti', u'race']
[u'polic', u'seek', u'inform', u'murder', u'suicid']
[u'polish', u'pianist', u'win', u'prestigi', u'chopin', u'competit']
[u'pope', u'canonis', u'saint']
[u'quak', u'helicopt', u'explod', u'azerbaijan']
[u'radio', u'station', u'devast', u'bomb']
[u'rain', u'fail', u'eas', u'sydney', u'water', u'restrict']
[u'real', u'beckham', u'deni', u'contract', u'negot']
[u'redback', u'steadi', u'send']
[u'report', u'feud', u'see', u'burley', u'leav', u'heart']
[u'report', u'reveal', u'pressur', u'darwin', u'jail']
[u'reward', u'offer', u'healesvill', u'murder', u'case']
[u'rice', u'honour', u'girl', u'kill', u'klux', u'klan']
[u'rumsfeld', u'fear', u'impact', u'bodi', u'burn', u'claim']
[u'influenc', u'nowingi', u'dump', u'plan']
[u'search', u'continu', u'byron', u'plane', u'crash', u'victim']
[u'secur', u'issu', u'pacif', u'leader', u'meet']
[u'singleton', u'tidiest', u'town', u'year']
[u'joh', u'seek', u'nation', u'preselect']
[u'lanka', u'slump', u'pratic', u'match', u'loss']
[u'stanhop', u'grate', u'includ', u'talk']
[u'stoner', u'claim', u'fifth', u'rossi', u'fall', u'short']
[u'sudanes', u'immigr', u'celebr', u'live']
[u'sudan', u'inact', u'right', u'abus']
[u'syria', u'hariri', u'probe']
[u'tasmanian', u'driver', u'urg', u'heed', u'flood', u'sign']
[u'toll', u'patrick', u'disput', u'cloud', u'pacif', u'nation']
[u'toni', u'trebl', u'punish', u'parma']
[u'unemploy', u'warn', u'lose', u'benefit']
[u'confirm', u'contractor', u'kill', u'iraq']
[u'heer', u'murphi', u'attempt', u'game', u'comeback']
[u'vatican', u'synod', u'rule', u'marri', u'priest']
[u'warn', u'join', u'queue', u'say', u'pont']
[u'warrior', u'recov', u'shaki', u'start']
[u'waterloo', u'vote', u'best', u'eurovis', u'song']
[u'waugh', u'deni', u'polit']
[u'waugh', u'felt', u'betray', u'booz', u'cultur']
[u'waugh', u'hop', u'help', u'struggl', u'cricket', u'nation']
[u'western', u'diet', u'rais', u'asian', u'bowel', u'diseas', u'risk']
[u'wilma', u'pummel', u'mexico', u'kill']
[u'wilma', u'wind', u'wave', u'pound', u'mexico']
[u'wood', u'miss', u'florida']
[u'wreckag', u'miss', u'nigerian', u'plane']
[u'yellabinna', u'region', u'grant', u'wilder', u'area', u'status']
[u'dead', u'storm', u'sweep', u'southern', u'itali']
[u'abalon', u'council', u'check', u'southern', u'stock', u'level']
[u'accc', u'warn', u'stiff', u'penalti', u'fals', u'label']
[u'teacher', u'push', u'better', u'deal']
[u'airport', u'laser', u'prankster', u'warn', u'charg']
[u'airport', u'tunnel', u'plan', u'draw', u'communiti', u'group']
[u'alcoa', u'play', u'refineri', u'protest']
[u'nation', u'blame', u'crisi', u'wolfowitz']
[u'alpha', u'kill', u'haiti']
[u'angler', u'warn', u'abus', u'fisheri', u'offic']
[u'apex', u'club', u'seek', u'gorok', u'accommod', u'fund']
[u'galleri', u'assess', u'flood', u'damag']
[u'aussi', u'safe', u'amid', u'hurrican', u'destruct']
[u'aussi', u'look', u'clean', u'sweep', u'ireland']
[u'australian', u'winemak', u'win', u'germani', u'highest', u'honour']
[u'author', u'seiz', u'indonesian', u'fish', u'boat']
[u'autopsi', u'carri', u'coupl']
[u'beatti', u'await', u'nuttal', u'decis']
[u'berri', u'juic', u'threat', u'prompt', u'secur', u'upgrad']
[u'barossa', u'vintag', u'add', u'wine', u'industri', u'woe']
[u'black', u'box', u'nigerian', u'plane', u'crash']
[u'blaze', u'claim', u'barley', u'crop']
[u'brazil', u'reject', u'sale', u'referendum']
[u'build', u'hiccup', u'delay', u'nurs', u'home', u'bed']
[u'bull', u'hayden', u'watson', u'west', u'indi', u'clash']
[u'bushfir', u'warn', u'earli', u'inquiri', u'hear']
[u'busi', u'urg', u'improv', u'fall', u'injuri', u'rat']
[u'busi', u'urg', u'plan', u'bird', u'pandem']
[u'busi', u'warn', u'store', u'credit', u'card', u'data']
[u'cheaper', u'fare', u'boost', u'spirit', u'tasmania', u'number']
[u'child', u'abus', u'complaint', u'neglect', u'report']
[u'claim', u'govt', u'fob', u'dental', u'care']
[u'compani', u'consult', u'wind', u'farm', u'plan']
[u'concert', u'aid', u'drought', u'famili']
[u'councillor', u'push', u'maryborough', u'immigr']
[u'council', u'reflect', u'cost', u'hail', u'storm', u'clean']
[u'council', u'reject', u'citi', u'hall', u'critic']
[u'council', u'desalin', u'plant', u'concern']
[u'council', u'review', u'fundrais']
[u'criminologist', u'recommend', u'specialist', u'child', u'abus']
[u'current', u'cattl', u'price', u'unsustain']
[u'daruda', u'australia', u'squad']
[u'debat', u'rag', u'chang']
[u'dfat', u'find', u'australian', u'catch', u'hurrican']
[u'dighton', u'month', u'break', u'hand']
[u'disqualifi', u'driver', u'arrest', u'time']
[u'eight', u'great', u'leader', u'juve']
[u'engin', u'grow']
[u'european', u'venus', u'express', u'probe', u'launch', u'delay']
[u'everton', u'chelsea', u'streak']
[u'extort', u'threat', u'boost', u'leeton', u'berri', u'factori']
[u'falconio', u'murder', u'trial', u'resum']
[u'famili', u'friend', u'await', u'news', u'hurrican', u'zone']
[u'farmer', u'await', u'drought', u'decis']
[u'farmer', u'plan', u'highway', u'upgrad']
[u'farm', u'properti', u'auction', u'benefit', u'local', u'chariti']
[u'father', u'guilti', u'rap', u'children']
[u'govt', u'confid', u'improv', u'state', u'cooper']
[u'consid', u'uruguay', u'charter', u'flight']
[u'food', u'writer', u'tast', u'eyr', u'peninsula', u'treat']
[u'foster', u'cash', u'chang', u'tast']
[u'freedman', u'train', u'plaster']
[u'fund', u'alloc', u'waterway', u'protect']
[u'germani', u'legend', u'matthaus', u'world', u'draw']
[u'gillespi', u'hop', u'test', u'recal', u'blow']
[u'gillespi', u'wait', u'news']
[u'girl', u'hurt', u'woodford', u'mishap']
[u'girl', u'lose', u'fight', u'life', u'pool', u'mishap']
[u'goodfella', u'top', u'greatest', u'movi', u'list']
[u'goulburn', u'valley', u'walker', u'rais', u'thousand', u'cancer']
[u'govt', u'accus', u'block', u'report']
[u'govt', u'accus', u'wast', u'fund', u'health']
[u'govt', u'ask', u'hospit', u'wait', u'time', u'explan']
[u'govt', u'flip', u'flop', u'compulsori', u'seatbelt']
[u'govt', u'mull', u'blanket', u'bird', u'import']
[u'govt', u'plan', u'stop', u'death', u'sentenc']
[u'govt', u'commit', u'newcastl']
[u'govt', u'huge', u'rent', u'rise']
[u'govt', u'urg', u'boost', u'malle', u'research', u'station', u'fund']
[u'green', u'group', u'cast', u'doubt', u'uranium', u'inquiri']
[u'group', u'oppos', u'wagga', u'rate', u'rise']
[u'hail', u'storm', u'sweep', u'southern']
[u'hatcheri', u'project', u'boost', u'nativ', u'fish', u'stock']
[u'health', u'servic', u'address', u'mental', u'health']
[u'health', u'servic', u'reject', u'coraki', u'critic']
[u'hickey', u'stand', u'rate', u'peg']
[u'hospit', u'teach', u'facil']
[u'hundr', u'turn', u'camel']
[u'hurrican', u'head', u'florida', u'coast']
[u'hurrican', u'wilma', u'upgrad', u'categori', u'storm']
[u'iemma', u'launch', u'review', u'road', u'project', u'contract']
[u'imran', u'khan', u'slat', u'quak', u'relief', u'effort']
[u'indigen', u'rock', u'vandal', u'earn', u'fine']
[u'indi', u'offici', u'overjoy', u'event']
[u'investig', u'continu', u'fatal', u'crash']
[u'irrig', u'pass', u'confid', u'vote', u'minist']
[u'isra', u'soldier', u'kill', u'west', u'bank', u'milit']
[u'israel', u'pledg', u'hamper', u'palestinian', u'vote']
[u'john', u'pessimist', u'nation', u'chanc']
[u'john', u'miss', u'rest', u'nation']
[u'joyc', u'fin', u'post', u'game', u'outburst']
[u'kalgoorli', u'host', u'nation', u'reconcili', u'forum']
[u'kalgoorli', u'polic', u'accus', u'slack', u'attitud']
[u'katherin', u'funer', u'plan', u'jawoyn', u'elder']
[u'korp', u'famili', u'abandon', u'posthum', u'convict']
[u'land', u'council', u'seek', u'greater', u'mine', u'contract', u'right']
[u'minut', u'goal', u'secur', u'jet', u'marin']
[u'littl', u'hope', u'death', u'australian']
[u'local', u'deleg', u'grafton', u'bridg', u'fight']
[u'local', u'school', u'share', u'feder', u'fund']
[u'loeb', u'complet', u'uniqu', u'clean', u'sweep']
[u'macquari', u'buy', u'stake', u'chines', u'river', u'port']
[u'break', u'time', u'shoaib']
[u'makyb', u'diva', u'accept', u'melbourn', u'entri']
[u'accus', u'famili', u'stick', u'assault']
[u'arrest', u'hour', u'hostag', u'sieg']
[u'charg', u'student', u'bash']
[u'charg', u'illeg', u'weapon', u'possess']
[u'face', u'court', u'laverton', u'rape', u'charg']
[u'martyn', u'prove', u'class', u'coach']
[u'martyn', u'hungri', u'test', u'action', u'say', u'langer']
[u'media', u'giant', u'mull', u'apolog', u'slur']
[u'melbourn', u'distract', u'actu']
[u'urg', u'check', u'breast', u'cancer', u'sign']
[u'mexico', u'race', u'evacu', u'trap', u'tourist']
[u'miller', u'speak', u'red', u'snub']
[u'minist', u'open', u'griffith', u'beauti', u'train', u'centr']
[u'minist', u'reject', u'hurrican', u'rescu', u'complaint']
[u'miss', u'plan', u'pilot', u'unlicenc']
[u'missi', u'higgin', u'winner', u'aria']
[u'monaghan', u'play', u'storm', u'rag']
[u'mooney', u'hope', u'china', u'water', u'work']
[u'indonesian', u'troop', u'pull', u'aceh']
[u'traffic', u'expect', u'tunnel', u'drop', u'toll']
[u'mori', u'forc', u'wed', u'ring']
[u'morri', u'accus', u'health', u'wait', u'list', u'cover']
[u'england', u'leav', u'alabaman', u'bemus']
[u'nadal', u'stag', u'heroic', u'fight', u'madrid']
[u'nation', u'effort', u'need', u'combat', u'child', u'abus']
[u'nativ', u'anim', u'friend', u'poison', u'trial']
[u'bird', u'outbreak', u'southern', u'siberia']
[u'law', u'unnecessari', u'deal', u'crop', u'studi']
[u'nguyen', u'lawyer', u'plead', u'step']
[u'nigeria', u'mourn', u'plane', u'crash', u'victim']
[u'nigeria', u'hold', u'day', u'mourn']
[u'northern', u'road', u'remain', u'flood', u'delug']
[u'childcar', u'worker', u'seek', u'rise']
[u'politician', u'remain', u'quiet', u'dump', u'plan']
[u'defend', u'pacif', u'region', u'integr', u'plan']
[u'ogilvi', u'miss', u'florida', u'play']
[u'outback', u'student', u'state', u'problem', u'solv', u'comp']
[u'oversea', u'adopt', u'increas']
[u'pair', u'accus', u'nake', u'highway', u'danc', u'face', u'court']
[u'pakistani', u'effort', u'ramp']
[u'pakistani', u'armi', u'move', u'clear', u'bodi', u'kashmiri']
[u'pakistan', u'relief', u'effort', u'week', u'deliv']
[u'paper', u'ask', u'apologis', u'falconio', u'stori']
[u'patterson', u'push', u'workplac', u'famili', u'care']
[u'cost', u'cut', u'deal', u'near', u'complet']
[u'penguin', u'jail', u'year', u'murder']
[u'pilbara', u'iron', u'shell', u'turtl', u'fund']
[u'pilot', u'vote', u'qanta']
[u'downplay', u'hop', u'nguyen', u'clemenc']
[u'polic', u'close', u'drug', u'raid']
[u'polic', u'investig', u'mildura', u'death']
[u'policeman', u'hurt', u'robinval', u'brawl']
[u'polish', u'right', u'victori', u'presidenti', u'elect']
[u'port', u'backlog', u'turn', u'ship', u'away', u'freight', u'compani']
[u'port', u'expans', u'hing', u'rail', u'freight', u'decis']
[u'prof', u'see', u'ground', u'oppos', u'leve', u'road']
[u'public', u'urg', u'chang', u'pool', u'hour']
[u'govt', u'hatch', u'plan', u'free', u'drink', u'water']
[u'race', u'club', u'meet', u'best']
[u'rann', u'look', u'strategi', u'combat', u'bird']
[u'card', u'beckham', u'real', u'crash']
[u'reef', u'manag', u'win', u'prais', u'warn', u'govt']
[u'reef', u'rezon', u'compo', u'reach', u'seafood', u'group']
[u'region', u'famili', u'relationship', u'servic']
[u'renmark', u'hold', u'meet', u'dump', u'concern']
[u'repair', u'work', u'close', u'roebourn', u'pool']
[u'research', u'ponder', u'menus', u'save', u'fisheri']
[u'ricegrow', u'embark', u'larg', u'crop', u'plant']
[u'riverland', u'share', u'famili', u'servic']
[u'road', u'safeti', u'plan', u'need', u'region', u'tweak']
[u'rocki', u'croc', u'leather', u'itali']
[u'scheme', u'promot', u'tertiari', u'studi']
[u'school', u'concert', u'rais', u'fund', u'boy', u'memori']
[u'search', u'continu', u'crash', u'plane', u'near', u'byron']
[u'search', u'fail', u'crash', u'plane']
[u'second', u'case', u'bird', u'confirm', u'croatia']
[u'selector', u'pick', u'macgil', u'waugh']
[u'ship', u'group', u'warn', u'port', u'gridlock']
[u'ship', u'wont', u'turn', u'away', u'port', u'botani', u'custom']
[u'joh', u'confid', u'coalit']
[u'korean', u'sister', u'citi', u'deleg', u'head', u'toowoomba']
[u'skywatch', u'cast', u'eye', u'mar', u'spectacular']
[u'social', u'develop', u'council', u'beat', u'futur']
[u'south', u'west', u'host', u'water', u'alloc', u'forum']
[u'stanhop', u'fear', u'terror', u'law', u'impact', u'right']
[u'state', u'math', u'curriculum', u'chaotic']
[u'statist', u'highlight', u'hunter', u'hospit', u'fail']
[u'summit', u'discuss', u'child', u'abus', u'epidem']
[u'surfer', u'fishermen', u'stoush', u'head', u'govern']
[u'doctor', u'fear', u'incorrect', u'identif', u'bodi']
[u'tender', u'seek', u'ferri', u'black', u'box']
[u'tension', u'rise', u'amid', u'pacif', u'nation', u'rail', u'deal']
[u'thousand', u'syrian', u'protest', u'inquiri']
[u'threat', u'rain', u'delay', u'latrob', u'clean']
[u'arrest', u'drug', u'charg']
[u'time', u'colour', u'north', u'battalion']
[u'tourist', u'finger', u'reattach', u'wood', u'chop']
[u'trapez', u'artist', u'injur', u'circus', u'fall']
[u'tuna', u'magnat', u'face', u'court', u'alleg', u'spill']
[u'head', u'road', u'crash']
[u'palestinian', u'kill', u'tulkarm', u'shootout']
[u'australian', u'hurrican', u'zone', u'dfat']
[u'urban', u'servic', u'shed', u'plan', u'track']
[u'vehicl', u'test', u'declin', u'add', u'road', u'safeti']
[u'polic', u'probe', u'alleg', u'kidnap']
[u'volleybal', u'group', u'look', u'attract', u'intern']
[u'shearer', u'snare', u'record']
[u'water', u'corp', u'seek', u'biosolid']
[u'waugh', u'say', u'teammat', u'fear']
[u'weak', u'mine', u'stock', u'push', u'market']
[u'weapon', u'haul', u'accus', u'avid', u'collector']
[u'white', u'lead', u'world', u'seri']
[u'wholesal', u'inflat', u'rise', u'exceed', u'expect']
[u'wilma', u'downgrad', u'categori', u'hurrican']
[u'wilma', u'head', u'florida']
[u'wit', u'contradict', u'lee', u'roadhous', u'stop']
[u'wit', u'tell', u'falconio', u'debt']
[u'wodonga', u'rail', u'bypass', u'decis', u'loom']
[u'women', u'urg', u'regular', u'breast', u'cancer', u'check']
[u'work', u'start', u'bunburi', u'silo', u'apart', u'plan']
[u'kill', u'suicid', u'attack']
[u'southern', u'highland', u'environment']
[u'accus', u'afghan', u'drug', u'lord', u'extradit']
[u'accus', u'drug', u'dealer', u'face', u'charg']
[u'govt', u'wont', u'rule', u'cut']
[u'african', u'women', u'particip', u'anti', u'trial']
[u'agricultur', u'minist', u'determin', u'crop']
[u'andrew', u'deni', u'polici', u'poll', u'slump']
[u'ansto', u'appoint', u'research', u'chief']
[u'post', u'record', u'profit']
[u'articl', u'support', u'pulp', u'fear', u'union']
[u'aussi', u'selector', u'chang', u'second', u'irish']
[u'award', u'recognis', u'young', u'apprentic', u'achiev']
[u'beatti', u'accus', u'interfer']
[u'beatti', u'throw', u'health']
[u'beazley', u'reiter', u'coastguard']
[u'industri', u'project', u'plan', u'bathurst']
[u'storm', u'batter', u'stroud']
[u'blair', u'threaten', u'iran', u'isol']
[u'bleiberg', u'escap', u'punish', u'sidelin', u'clash']
[u'blue', u'blewett', u'play']
[u'brack', u'say', u'australia', u'prepar', u'bird']
[u'brack', u'urg', u'help', u'death', u'australian']
[u'bradford', u'snap', u'star']
[u'bruce', u'highway', u'option', u'releas', u'soon']
[u'bulldog', u'fine', u'hugh', u'alterc']
[u'bush', u'admit', u'leak', u'case']
[u'bushfir', u'inquiri', u'wit', u'question', u'report']
[u'bush', u'say', u'diplomaci', u'chanc', u'syria']
[u'businessman', u'jail', u'karratha', u'fraud']
[u'cabinet', u'group', u'give', u'power', u'avoid', u'project']
[u'halt', u'beach', u'drive', u'turtl', u'nest']
[u'canberra', u'bushfir', u'inquest', u'wrap']
[u'canberra', u'hous', u'scheme', u'continu', u'despit', u'poor']
[u'cane', u'worker', u'urg', u'look', u'live']
[u'cart', u'diamond', u'crash']
[u'cart', u'diamond', u'melbourn']
[u'centrelink', u'fraud', u'land', u'year', u'jail']
[u'chariti', u'ask', u'prove', u'fundrais', u'credenti']
[u'chemic', u'compani', u'begin', u'hunt', u'toxic', u'dump', u'site']
[u'citrus', u'board', u'reflect', u'berri', u'threat', u'impact']
[u'commod', u'forecast', u'give', u'farmer', u'confid']
[u'communiti', u'leader', u'urg', u'help', u'quell', u'violenc']
[u'compani', u'push', u'ahead', u'wind', u'farm']
[u'confus', u'reign', u'dock']
[u'contain', u'start', u'move']
[u'corbi', u'lawyer', u'appeal', u'jail', u'term']
[u'councillor', u'see', u'need', u'currumbin', u'landslip']
[u'councillor', u'fear', u'poki', u'chang', u'harm', u'bundaberg']
[u'council', u'satisfi', u'nois', u'issu', u'handl']
[u'crown', u'appeal', u'offend', u'sentenc']
[u'challeng', u'landmark', u'asbesto', u'compens', u'case']
[u'cultur', u'test', u'give', u'clear', u'race']
[u'curfew', u'order', u'accus', u'bash', u'student']
[u'custom', u'say', u'port', u'backlog', u'clear']
[u'dairi', u'farmer', u'report', u'loss']
[u'data', u'privaci', u'concern', u'rais', u'passport']
[u'desir', u'mother', u'kidnap', u'court', u'hear']
[u'devil', u'head', u'enclosur']
[u'doyl', u'concern', u'leadership', u'rumour']
[u'earth', u'fall', u'hamper', u'product']
[u'electr', u'worker', u'protest', u'chang']
[u'ellison', u'defend', u'custom']
[u'england', u'number', u'say', u'fletcher']
[u'english', u'refere']
[u'want', u'strict', u'condit', u'timber', u'project']
[u'eriksson', u'back', u'beckham', u'skipper']
[u'adopt', u'knockout', u'qualifi']
[u'fairfax', u'editori', u'job']
[u'fairfax', u'correct', u'slur']
[u'falconio', u'juri', u'view', u'crime', u'scene', u'video']
[u'famili', u'victim', u'plea', u'inform']
[u'farmer', u'count', u'cost', u'sever', u'storm']
[u'farm', u'group', u'focus', u'altern', u'fuel']
[u'whale', u'save', u'mass', u'strand']
[u'film', u'archiv', u'showcas', u'classic', u'nanni', u'state']
[u'fish', u'import', u'prawn']
[u'veteran', u'boost', u'india', u'lanka']
[u'fodera', u'grant', u'bail', u'charg']
[u'forest', u'fan', u'invit', u'slam', u'player', u'person']
[u'bomb', u'explod', u'spain']
[u'fourth', u'person', u'die', u'bird', u'indonesia']
[u'fruit', u'protest', u'highlight', u'wast', u'dump', u'worri']
[u'govt', u'accus', u'wind', u'farm', u'land', u'grab']
[u'govt', u'agre', u'teacher', u'rise']
[u'govt', u'ask', u'rural', u'financi', u'counsellor']
[u'govt', u'issu', u'high', u'tech', u'passport']
[u'govt', u'pledg', u'extra', u'vietnam', u'bird', u'fight']
[u'govt', u'seek', u'tougher', u'law', u'illeg', u'fish']
[u'govt', u'lobbi', u'indonesia', u'illeg', u'fish', u'power']
[u'govt', u'tabl', u'wednesday']
[u'hope', u'bigger', u'public', u'health', u'role']
[u'greec', u'win', u'sole', u'right', u'feta', u'chees', u'label']
[u'green', u'sedit', u'claus']
[u'groth', u'get', u'australia']
[u'groth', u'shock', u'kangaroo']
[u'group', u'question', u'need', u'highway', u'bypass']
[u'health', u'minist', u'head', u'north', u'coast']
[u'health', u'servic', u'pleas', u'abort', u'plan', u'reject']
[u'health', u'servic', u'record', u'case']
[u'honeywood', u'hose', u'leadership', u'challeng']
[u'hospit', u'inquiri', u'cost', u'taxpay', u'million']
[u'hospit', u'patholog', u'unit', u'boost', u'servic']
[u'hurrican', u'wilma', u'hit']
[u'hurrican', u'wilma', u'reach', u'florida']
[u'iemma', u'act', u'speed', u'infrastructur', u'project']
[u'illeg', u'fish', u'boat', u'pose', u'dengu', u'threat']
[u'indonesian', u'polic', u'baffl', u'bali', u'blast', u'probe']
[u'indonesian', u'polic', u'slow', u'tail', u'bali']
[u'interst', u'egg', u'threaten', u'market']
[u'iraqi', u'constitut', u'approv']
[u'israel', u'mount', u'strike', u'gaza', u'rocket', u'attack']
[u'katich', u'put', u'blue', u'control']
[u'council', u'back', u'concern', u'anti', u'terror']
[u'lawyer', u'bali', u'bomber', u'final', u'appeal']
[u'lebanon', u'syria', u'presid', u'vow', u'stay']
[u'liber', u'phillip', u'job', u'mat', u'claim']
[u'lord', u'mayor', u'fear', u'urban', u'ghetto', u'darwin']
[u'loyal', u'pooch', u'trek', u'home']
[u'court', u'arrow', u'shoot']
[u'market', u'upbeat', u'amid', u'improv', u'energi', u'stock']
[u'mayor', u'councillor', u'rat', u'matter']
[u'mayor', u'push', u'chang', u'water', u'hour']
[u'meet', u'focus', u'bridg', u'issu']
[u'melbourn', u'debut', u'counter', u'terror']
[u'miner', u'start', u'explor']
[u'hing', u'govern', u'howard']
[u'mother', u'dead', u'sydney', u'home']
[u'offer', u'wast', u'dump', u'submiss', u'help']
[u'name', u'releas', u'lose', u'light', u'plane', u'crash']
[u'nation', u'wait', u'preselect', u'announc']
[u'navi', u'honour', u'fighter']
[u'contamin', u'case', u'report']
[u'initi', u'eas', u'pressur']
[u'wild', u'poison', u'trial']
[u'disappoint', u'drought', u'propos']
[u'indonesian', u'plead', u'guilti', u'illeg', u'fish']
[u'nobel', u'winner', u'present', u'key', u'perth']
[u'normanton', u'consid', u'build', u'detent', u'centr']
[u'north', u'coast', u'food', u'shortag', u'caus', u'concern']
[u'teacher', u'vote', u'offer']
[u'open', u'centr', u'suspend', u'student']
[u'chief', u'minist', u'face', u'defam', u'action']
[u'depart', u'defend', u'child', u'abus', u'case', u'respons']
[u'commit', u'remot', u'health', u'issu']
[u'nurs', u'home', u'expect', u'quick']
[u'inmat', u'hold', u'van', u'combat', u'overcrowd']
[u'offic', u'tell', u'falconio', u'evid', u'search', u'delay']
[u'ombudsman', u'probe', u'possibl', u'unlaw', u'immigr']
[u'bendigo', u'east', u'candid', u'surpris', u'doyl']
[u'opposit', u'ask', u'narrabri', u'hospit']
[u'opposit', u'predict', u'budget', u'cutback']
[u'oversea', u'race', u'interest', u'oppos', u'bet']
[u'pacif', u'island', u'seek', u'bring', u'progress']
[u'parent', u'help', u'curb', u'internet', u'child', u'porn']
[u'parent', u'grant', u'bail', u'neglect', u'charg']
[u'pearson', u'push', u'solut', u'indigen']
[u'perth', u'charg', u'bomb', u'threat']
[u'plan', u'steal', u'wag', u'insult', u'leader']
[u'plaster', u'saga', u'twist']
[u'plaster', u'futur', u'undecid']
[u'agre', u'counter', u'terror', u'summit']
[u'announc', u'north', u'educ', u'fund']
[u'commit', u'chang']
[u'deni', u'terror', u'law']
[u'say', u'pacif', u'season', u'worker', u'australia']
[u'vow', u'press', u'chang']
[u'polic', u'crash', u'victim']
[u'polic', u'seek', u'public', u'help', u'murder', u'case']
[u'poll', u'show', u'howard', u'slide']
[u'port', u'author', u'reject', u'suppli', u'base', u'specul']
[u'power', u'storm', u'leav', u'damag', u'trail']
[u'probe', u'launch', u'school', u'blaze']
[u'protest', u'fail', u'stop', u'forest', u'log']
[u'public', u'view', u'seek', u'manag']
[u'produc', u'lose', u'million', u'storm', u'damag']
[u'union', u'lobbi', u'joyc', u'concern']
[u'rail', u'corridor', u'suggest', u'highway', u'upgrad']
[u'rain', u'littl', u'boost', u'level']
[u'report', u'see', u'conflict', u'stand']
[u'resid', u'await', u'sewerag', u'connect']
[u'resid', u'invit', u'sign', u'giant', u'greet', u'card']
[u'rocki', u'distanc', u'educ', u'campus', u'stay', u'open']
[u'rooney', u'grow']
[u'erupt', u'school', u'seatbelt']
[u'rural', u'workplac', u'safeti', u'spotlight']
[u'saddam', u'defenc', u'seek', u'action', u'lawyer', u'murder']
[u'drench', u'record', u'rainfal', u'octob']
[u'ferri', u'give', u'clear', u'tragic', u'accid']
[u'underag', u'gambl', u'problem']
[u'charg', u'sexual', u'assault', u'teenag']
[u'remand', u'custodi', u'polic', u'sieg']
[u'opposit', u'call', u'account']
[u'secret', u'print', u'cod', u'allow', u'govern', u'track']
[u'section', u'park', u'name', u'crowd', u'hous']
[u'shepparton', u'mayor', u'stand']
[u'shire', u'move', u'closer', u'share']
[u'civilian', u'kill', u'afghanistan', u'attack']
[u'whale', u'strand']
[u'snail', u'experi', u'alzheim', u'research']
[u'socceroo', u'scrambl', u'charter', u'flight']
[u'socceroo', u'world', u'qualifi', u'push']
[u'spirit', u'tasmania', u'vital', u'reviv', u'region']
[u'stepfath', u'grant', u'bail', u'child', u'methadon', u'death']
[u'storm', u'take', u'toll', u'echuca', u'shop']
[u'strand', u'tourist', u'start', u'leav', u'hurrican']
[u'summer', u'snow', u'fall', u'alp']
[u'surfer', u'happi', u'lobster', u'fish', u'chang']
[u'survey', u'highlight', u'region', u'teeth', u'problem']
[u'govt', u'defend', u'campaign']
[u'taxi', u'oper', u'plan', u'legal', u'action', u'botch']
[u'teacher', u'soccer', u'effort', u'award']
[u'telstra', u'chairman', u'renew', u'attack', u'govt']
[u'telstra', u'need', u'better', u'trujillo']
[u'tendulkar', u'inspir', u'india', u'emphat', u'victori']
[u'tendulkar', u'inspir', u'india', u'massiv', u'total']
[u'trader', u'help', u'deal', u'arm', u'robberi']
[u'tribal', u'death', u'penalti', u'rais', u'murder', u'trial']
[u'trujillo', u'hint', u'telstra', u'loss']
[u'tuna', u'magnat', u'defend', u'spill', u'claim', u'court']
[u'twin', u'centuri', u'blue']
[u'unicef', u'launch', u'aid', u'campaign', u'adelaid']
[u'union', u'attack', u'birney', u'polic', u'slack', u'claim']
[u'union', u'want', u'time', u'school', u'holiday', u'chang']
[u'civil', u'right', u'icon', u'rosa', u'park', u'dead']
[u'seek', u'shield', u'detaine', u'rule', u'report']
[u'valentin', u'good', u'posit', u'return', u'hobart']
[u'veteran', u'concern', u'beatti', u'stanc', u'cape']
[u'victoria', u'abandon', u'abort', u'cool', u'period']
[u'warn', u'light', u'blame', u'abort', u'flight']
[u'water', u'scheme', u'boost', u'murray', u'flow']
[u'water', u'tower', u'inquest', u'delay', u'worri', u'union']
[u'wed', u'ring', u'fiasco', u'repercuss', u'mcmahon']
[u'west', u'indi', u'unfaz', u'lara', u'form', u'slump']
[u'willandra', u'lake', u'region', u'celebr', u'local', u'heritag']
[u'wilma', u'pound', u'florida', u'flood', u'cuba', u'kill']
[u'woman', u'die', u'motorcycl', u'collis']
[u'woman', u'jail', u'fals', u'assault', u'claim']
[u'worker', u'charg', u'attempt', u'murder']
[u'worker', u'like', u'explos', u'thief', u'polic']
[u'abbott', u'confid', u'australia', u'prepared']
[u'aborigin', u'leader', u'back', u'nuclear', u'wast', u'facil']
[u'aborigin', u'manag', u'nation', u'park', u'hail']
[u'access', u'scheme', u'help', u'rural', u'student', u'succeed']
[u'acropoli', u'museum', u'head', u'complet']
[u'opposit', u'want', u'attent', u'local', u'art']
[u'reject', u'supermarket', u'pharmaci']
[u'actu', u'seek', u'percent', u'award', u'wage', u'rise']
[u'adelaid', u'readi', u'form', u'wildcat']
[u'alburi', u'polic', u'bike']
[u'qaeda', u'claim', u'australian', u'target', u'iraq', u'attack']
[u'qaeda', u'hold', u'morocco', u'embassi', u'staff']
[u'ambul', u'worker', u'disput', u'wont', u'affect', u'emerg']
[u'anim', u'harvest', u'certif', u'rspca', u'back']
[u'annan', u'commend', u'iraqi', u'constitut', u'vote']
[u'anti', u'terror', u'law', u'imprecis', u'human', u'right']
[u'auction', u'hous', u'offer', u'afford', u'picasso', u'work']
[u'aussi', u'tell', u'readi', u'life', u'mcgrath']
[u'aust', u'armi', u'deal', u'insurg', u'better']
[u'australian', u'citizen', u'lose', u'right', u'british']
[u'australia', u'pledg', u'fight', u'pacif', u'bird']
[u'australia', u'pois', u'ireland', u'kick']
[u'australia', u'urg', u'support', u'trawl', u'moratorium']
[u'author', u'examin', u'plane', u'airport', u'emerg']
[u'author', u'meet', u'thai', u'airlin', u'offici', u'plane']
[u'bali', u'drug', u'accus', u'reappear', u'court']
[u'barri', u'jone', u'blast', u'nguyen', u'hick', u'action']
[u'bashir', u'like', u'receiv', u'jail', u'time']
[u'beatti', u'prematur', u'fund', u'boost']
[u'beckham', u'win', u'real', u'appeal']
[u'bendigo', u'council', u'seek', u'closer', u'tie', u'communiti']
[u'bendigo', u'health', u'staff', u'mull', u'condit', u'respons']
[u'consid', u'option', u'olymp', u'water', u'suppli']
[u'biodivers', u'help', u'slow', u'diseas', u'spread', u'studi']
[u'blue', u'claim', u'earli', u'wicket', u'redback']
[u'bomb', u'explod', u'near', u'court', u'spain']
[u'serious', u'injur', u'backyard', u'chemic']
[u'british', u'wife', u'water', u'australian', u'tour']
[u'build', u'start', u'airport', u'develop']
[u'bulok', u'council', u'open', u'road', u'discuss']
[u'campaign', u'target', u'domest', u'violenc', u'bystand']
[u'burglar', u'remain', u'promin', u'burni']
[u'castaigned', u'franc']
[u'say', u'endeavour', u'problem', u'short', u'term']
[u'challeng', u'equal', u'opportun', u'exempt', u'rule']
[u'chanc', u'want', u'quarantin', u'law', u'tighten']
[u'cherri', u'fetch', u'record', u'price', u'chariti', u'auction']
[u'child', u'killer', u'jail', u'year']
[u'civic', u'centr', u'develop', u'domin', u'council']
[u'clark', u'power', u'blue']
[u'communiti', u'surveil', u'spot', u'illeg', u'fisher']
[u'communiti', u'want', u'patrol', u'illeg', u'poacher']
[u'coober', u'pedi', u'alic', u'spring', u'flight']
[u'coron', u'offic', u'eager', u'find', u'death', u'inquest']
[u'cossack', u'japanes', u'cemeteri', u'restor']
[u'court', u'rule', u'counter', u'terror', u'law', u'costello']
[u'custom', u'softwar', u'stay', u'ellison', u'say']
[u'dallaglio', u'want', u'lion', u'snip']
[u'dickenson', u'lead', u'launceston', u'mayor', u'race']
[u'diver', u'unveil', u'java', u'treasur', u'trove']
[u'dravid', u'hail', u'return', u'tendulkar']
[u'drought', u'break', u'macquari', u'marsh']
[u'drug', u'drive', u'studi', u'alarm']
[u'drug', u'reduc', u'post', u'vomit']
[u'jail', u'robberi']
[u'bite', u'bondi', u'brawl']
[u'whale', u'rescu', u'mass', u'strand']
[u'elect', u'hold', u'wimmera', u'malle', u'area']
[u'ellison', u'outlin', u'port', u'solut']
[u'england', u'cricket', u'arriv', u'pakistan']
[u'europ', u'slap', u'global', u'bird', u'import']
[u'expens', u'owner', u'urg', u'vigil']
[u'fact', u'find', u'mission', u'marin', u'zone']
[u'fals', u'memori', u'explain', u'alien', u'abduct', u'studi']
[u'farmer', u'want', u'offer', u'mccain']
[u'farmer', u'warn', u'fever', u'threat']
[u'farmer', u'alli', u'softwood', u'timber', u'fight']
[u'film', u'maker', u'scout', u'goulburn', u'locat']
[u'command', u'hold', u'backpack', u'death']
[u'boy', u'plead', u'guilti', u'attempt', u'rape']
[u'fuel', u'price', u'drive', u'inflat']
[u'gallop', u'confid', u'fund', u'improv', u'schooli']
[u'garrett', u'renew', u'call', u'indigen', u'apolog']
[u'gippsland', u'water', u'test', u'factori', u'morwel']
[u'gold', u'coast', u'water', u'propos', u'council']
[u'govern', u'committ', u'meander']
[u'govt', u'control', u'opposit']
[u'govt', u'push', u'ahead', u'anti', u'terror', u'law']
[u'govt', u'tell', u'court', u'instead', u'whale']
[u'govt', u'urg', u'consid', u'bird', u'generic', u'drug']
[u'handicapp', u'go', u'light', u'makyb']
[u'hanson', u'blast', u'beatti', u'lose', u'compo', u'claim']
[u'hawk', u'slam', u'immor', u'chang']
[u'hope', u'protect', u'tumut', u'river']
[u'hous', u'damag', u'sever', u'hail', u'storm']
[u'howard', u'happi', u'chang', u'counter', u'terror']
[u'indigo', u'shire', u'elect', u'need']
[u'industri', u'seek', u'chang', u'yellowcak', u'transport']
[u'inflat']
[u'injuri', u'black']
[u'injuri', u'put', u'lazaridi', u'doubt', u'uruguay']
[u'iraq', u'constitut', u'vote', u'accur', u'say']
[u'israel', u'launch', u'gaza', u'raid', u'rocket', u'attack']
[u'japan', u'close', u'allow', u'femal', u'emperor']
[u'japan', u'pressur', u'lift', u'beef', u'import']
[u'juri', u'retir', u'consid', u'cooper', u'verdict']
[u'kangaroo', u'concern', u'forestri', u'industri']
[u'kangaroo', u'midfield', u'pair']
[u'kewel', u'play', u'liverpool', u'emerton', u'neill']
[u'labor', u'step', u'critic', u'anti', u'terror', u'law']
[u'lekka', u'decid', u'hang', u'boot']
[u'probe', u'respons', u'road', u'fund']
[u'lobbi', u'group', u'form', u'swansea', u'bridg', u'replac']
[u'local', u'farmer', u'benefit', u'develop']
[u'lord', u'vote', u'increas', u'safeguard', u'freedom']
[u'macair', u'begin', u'week', u'flight', u'zinifex']
[u'guilti', u'murder', u'fellow', u'lodger']
[u'mango', u'duffer', u'grade', u'fruit']
[u'market', u'surg', u'amid', u'upbeat', u'resourc', u'bank', u'stock']
[u'maroochi', u'councillor', u'reject', u'radio', u'comment']
[u'martin', u'prais', u'land', u'ownership', u'recognit']
[u'maryborough', u'blue', u'green', u'alga', u'accept', u'level']
[u'mass', u'whale', u'strand']
[u'melbourn', u'airport', u'reopen', u'plane', u'emerg']
[u'miner', u'hail', u'success', u'canadian', u'negoti', u'deal']
[u'mini', u'budget', u'target', u'hospit', u'delay', u'staff']
[u'minist', u'ban', u'shark', u'fish']
[u'minist', u'hope', u'veteran', u'cape', u'retreat']
[u'minist', u'prais', u'flood', u'effort']
[u'minist', u'announc', u'food', u'label', u'law']
[u'mix', u'reaction', u'beatti', u'mini', u'budget']
[u'mobil', u'phone', u'complaint', u'soar']
[u'mokbel', u'charg']
[u'mokbel', u'custodi', u'ecstasi', u'import', u'charg']
[u'whale', u'strand', u'tasmania']
[u'muswellbrook', u'interest', u'toxic', u'wast', u'dump']
[u'navi', u'distanc', u'whale', u'beach']
[u'newcastl', u'servic', u'honour', u'bali', u'bomb', u'victim']
[u'odriscol', u'video', u'spark', u'spear', u'tackl', u'warn']
[u'test', u'procedur', u'announc', u'live', u'bird']
[u'seatbelt', u'poor', u'road', u'danger', u'combin']
[u'spend', u'cartridg', u'falconio', u'crime', u'scene', u'court']
[u'north', u'coast', u'storm', u'continu']
[u'teacher', u'agre', u'deal']
[u'numurkah', u'nab', u'drink', u'drive']
[u'offic', u'tell', u'possibl', u'falconio', u'crime', u'scene']
[u'gold', u'price', u'jump', u'weather', u'worri', u'market']
[u'ombudsman', u'call', u'releas', u'child', u'protect']
[u'ombudsman', u'flag', u'immigr', u'chang']
[u'outag', u'loot', u'hamper', u'hurrican', u'wilma', u'recoveri']
[u'overwhelm', u'respons', u'cyclon', u'clean']
[u'pakistan', u'quak', u'death', u'toll', u'rise']
[u'paper', u'apologis', u'falconio', u'articl']
[u'pendragon', u'hand', u'wide', u'draw']
[u'plane', u'emerg', u'shut', u'melbourn', u'airport']
[u'plan', u'servic', u'depend', u'partnership']
[u'announc', u'pacif', u'plan']
[u'back', u'anti', u'terror', u'law']
[u'plan', u'trade', u'colleg', u'pacif']
[u'polic', u'deni', u'evid', u'plant', u'falconio', u'crime']
[u'polic', u'investig', u'babi', u'suspici', u'death']
[u'poll', u'show', u'major', u'paringa', u'caravan', u'park']
[u'port', u'delay', u'affect', u'farm', u'import']
[u'port', u'delay', u'damag', u'economi']
[u'power', u'sign', u'experi', u'trio']
[u'promot', u'bodi', u'welcom', u'power', u'station', u'fund']
[u'prosecutor', u'free', u'plan', u'bali', u'bomber', u'execut']
[u'public', u'comment', u'fire', u'power', u'station']
[u'public', u'come', u'round', u'chang', u'say', u'joyc']
[u'govt', u'reject', u'hanson', u'compo', u'claim']
[u'tri', u'shake', u'greedi', u'water', u'user', u'imag']
[u'rainbow', u'trout', u'trial', u'modifi', u'better', u'harvest']
[u'redback', u'struggl', u'rampant', u'blue']
[u'report', u'find', u'intellig', u'track', u'london', u'bomber']
[u'resid', u'want', u'bushfir', u'inquiri', u'find', u'hand']
[u'retire', u'fin', u'accident', u'shoot', u'woman']
[u'robinval', u'mele', u'predict']
[u'roger', u'eye', u'half', u'role']
[u'rome', u'ban', u'cruel', u'goldfish', u'bowl']
[u'rough', u'sea', u'hamper', u'search', u'miss', u'plane']
[u'mainten', u'work']
[u'rudd', u'issu', u'direct', u'appeal', u'save', u'death', u'aussi']
[u'ruddock', u'confid', u'anti', u'terror', u'law']
[u'ruddock', u'vanston', u'resign', u'labor', u'say']
[u'rural', u'financi', u'counsel', u'chang', u'deter']
[u'rural', u'financi', u'counsellor', u'fund', u'continu']
[u'russia', u'oppos', u'sanction', u'syria']
[u'saddam', u'lawyer', u'boycott', u'court']
[u'elector', u'wors', u'welfar', u'chang']
[u'santo', u'announc', u'record', u'earn']
[u'opposit', u'want', u'answer', u'bushfir', u'disast']
[u'scud', u'lose', u'stosur', u'win']
[u'season', u'work', u'solut', u'pacif', u'unemploy']
[u'sheep', u'nlis', u'roll', u'year']
[u'shoaib', u'threaten', u'dog', u'tail', u'comment']
[u'south', u'durra', u'murder', u'trial', u'adjourn']
[u'stanhop', u'advic', u'anti', u'terror', u'law']
[u'storm', u'damag', u'forc', u'cancel', u'school', u'class']
[u'support', u'want', u'spinal', u'injuri', u'specialist', u'program']
[u'syria', u'urg', u'gap', u'hariri', u'death']
[u'tamworth', u'polic', u'probe', u'alleg', u'sexual', u'assault']
[u'tamworth', u'resid', u'target', u'pool', u'safeti']
[u'team', u'harmoni', u'high', u'say', u'chanderpaul']
[u'tourist', u'flee', u'hurrican', u'cancun', u'beach', u'ruin']
[u'tradit', u'owner', u'mark', u'uluru', u'handback', u'anniversari']
[u'troop', u'leav', u'darwin', u'iraq']
[u'tuna', u'farmer', u'lawyer', u'challeng', u'evid']
[u'arrest', u'man', u'death', u'caravan', u'park']
[u'univers', u'mull', u'use', u'nurs', u'home']
[u'resolut', u'forc', u'hariri', u'suspect', u'arrest']
[u'militari', u'death', u'toll', u'iraq', u'reach']
[u'vatican', u'list', u'condit', u'tie', u'china']
[u'vinni', u'prim']
[u'virus', u'hit', u'wheat', u'crop']
[u'art', u'group', u'govern', u'grant']
[u'govt', u'accus', u'hide', u'school', u'fund']
[u'wallabi', u'europ']
[u'warracknab', u'disabl', u'provid', u'staff', u'strike']
[u'welfar', u'chang', u'region', u'area', u'hard', u'acoss']
[u'wellington', u'shire', u'target', u'mosquito', u'breed', u'sit']
[u'western', u'govt', u'criticis', u'quak', u'respons']
[u'whale', u'strand', u'tasmania']
[u'wheat', u'outlook', u'optimist']
[u'white', u'hous', u'ask', u'onion', u'stop', u'seal']
[u'white', u'world', u'seri']
[u'willow', u'park', u'slat', u'pool']
[u'woman', u'bodi', u'water']
[u'women', u'wors', u'chang', u'goward']
[u'zimbabw', u'opposit', u'split', u'poll', u'boycott']
[u'dead', u'amsterdam', u'airport']
[u'shark', u'fish', u'research']
[u'aborigin', u'free']
[u'accc', u'urg', u'investig', u'fuel', u'profit', u'claim']
[u'acoss', u'critic', u'welfar', u'benefit']
[u'alburi', u'polic', u'drink', u'crackdown']
[u'anti', u'terror', u'law', u'delay', u'brack', u'say']
[u'anti', u'terror', u'law', u'analyst']
[u'anti', u'terror', u'law', u'threaten', u'tent', u'embassi']
[u'armstrong', u'successor', u'readi']
[u'australia', u'place', u'intern', u'univers']
[u'bahrain', u'pole', u'formula', u'season']
[u'beazley', u'seek', u'rebuild', u'labor', u'tie', u'corpor']
[u'beazley', u'polici', u'target', u'middl', u'incom', u'earner']
[u'beef', u'industri', u'product', u'gain', u'match', u'grain']
[u'blue', u'comfort']
[u'blue', u'redback']
[u'border', u'close', u'event', u'bird', u'pandem']
[u'boss', u'hope', u'makyb', u'contest']
[u'bull', u'tail', u'hold', u'west', u'indi']
[u'burst', u'water', u'main', u'reveal', u'hide', u'cavern']
[u'bush', u'suprem', u'court', u'pick', u'withdraw']
[u'carr', u'deni', u'climat', u'consult', u'role', u'conflict']
[u'cathol', u'agenc', u'urg', u'govt', u'save', u'nguyen']
[u'charlton', u'knock', u'holder', u'chelsea', u'leagu']
[u'charter', u'oper', u'prais', u'safeti', u'stanc']
[u'chief', u'minist', u'call', u'legisl', u'assembl']
[u'circumcis', u'cut', u'risk', u'studi']
[u'compani', u'receiv', u'govern', u'support', u'power']
[u'concern', u'delay', u'counter', u'terror', u'law']
[u'constitut', u'concern', u'plagu', u'counter', u'terror']
[u'constitut', u'question', u'plagu', u'anti', u'terror', u'law']
[u'copper', u'product', u'billiton']
[u'coral', u'project', u'ensur', u'sustain', u'environ']
[u'coron', u'like', u'rule', u'natur', u'caus', u'post']
[u'council', u'doubt', u'valid', u'caravan', u'park', u'poll']
[u'council', u'prais', u'industri', u'contribut', u'airstrip']
[u'council', u'seek', u'comment', u'river', u'foreshor', u'upgrad']
[u'current', u'water', u'plan', u'best', u'palaszczuk']
[u'dairi', u'farmer', u'reap', u'benefit', u'chees', u'price']
[u'decis', u'near', u'extradit', u'broom']
[u'develop', u'board', u'chair', u'wast', u'dump']
[u'spell', u'genet', u'variat']
[u'duel', u'pendragon', u'say', u'rogerson']
[u'einstein', u'darwin', u'genius', u'writ', u'larg']
[u'elder', u'drug', u'offend', u'remain', u'confisc']
[u'england', u'winger', u'cohen', u'win', u'recal']
[u'english', u'smoke', u'prompt']
[u'explos', u'rock', u'isra', u'seasid', u'town']
[u'prison', u'hit']
[u'factori', u'worker', u'take', u'strike', u'action']
[u'fairfax', u'journalist', u'hold', u'stop', u'work', u'cut']
[u'govt', u'accus', u'vicious', u'cutback', u'road']
[u'festiv', u'showcas', u'local', u'wineri']
[u'firefight', u'control', u'west', u'sydney', u'blaze']
[u'fluorid', u'process', u'delay']
[u'footbal', u'legend', u'best', u'fight', u'life', u'hospit']
[u'solicitor', u'general', u'speak']
[u'teacher', u'plead', u'guilti', u'child', u'charg']
[u'fresh', u'suppli', u'expect', u'oodnadatta']
[u'ghost', u'cast', u'shadow', u'summit']
[u'giant', u'impact', u'add', u'earth', u'core']
[u'girl', u'descript', u'prais', u'alleg', u'abduct']
[u'giteau', u'want', u'wallabi', u'number']
[u'govt', u'hail', u'budget', u'surplus']
[u'govt', u'overhaul', u'rural', u'financi', u'counsel']
[u'govt', u'reject', u'mayor', u'toll', u'suggest']
[u'govt', u'step', u'scheme', u'negoti']
[u'greec', u'want', u'ancient', u'treasur', u'return']
[u'green', u'light', u'nation', u'exot', u'plant', u'pest', u'plan']
[u'group', u'urg', u'singapor', u'stop', u'australian', u'execut']
[u'grower', u'prais', u'label', u'chang']
[u'gunn', u'talk', u'pulp']
[u'owner', u'storag', u'facil', u'inspect']
[u'halloran', u'rejoin', u'polic', u'forc']
[u'health', u'council', u'member', u'name']
[u'health', u'offici', u'discuss', u'bird', u'global', u'fund']
[u'heat', u'debat', u'expect', u'highway', u'upgrad']
[u'hodg', u'bracken', u'west', u'indi', u'open']
[u'hoon', u'driver', u'wont', u'toler']
[u'hop', u'deal', u'boost', u'wool', u'profil', u'ahead']
[u'hotel', u'worker', u'dous', u'petrol', u'attack']
[u'howard', u'criticis', u'iranian', u'presid', u'israel']
[u'howard', u'dismiss', u'critic', u'pacif', u'worker']
[u'human', u'right', u'protect', u'counter', u'terror', u'law']
[u'indigen', u'australian', u'price', u'law']
[u'indigen', u'communiti', u'growth', u'prioriti']
[u'indigen', u'ranger', u'ignor', u'illeg', u'fish']
[u'indonesia', u'investig', u'sourc', u'bird']
[u'industri', u'accid', u'cost', u'compani']
[u'infrastructur', u'vital', u'econom', u'develop']
[u'injuri', u'real', u'fail']
[u'inquiri', u'hear', u'bundaberg', u'nurs']
[u'interpol', u'chief', u'outlin', u'organis', u'crime', u'concern']
[u'iraqi', u'militia', u'clash', u'insurg', u'dead']
[u'iraqi', u'sunni', u'parti', u'form', u'allianc']
[u'israel', u'launch', u'strike', u'gaza']
[u'japanes', u'compani', u'claim', u'fibr', u'optic', u'data', u'transfer']
[u'japan', u'shrug', u'pressur', u'beef']
[u'judg', u'urg', u'counter', u'terror']
[u'juri', u'rule', u'world', u'trade', u'centr', u'bomb', u'victim']
[u'kangaroo', u'wari', u'great', u'britain']
[u'kerbsid', u'collect', u'blow', u'away']
[u'kewel', u'undergo', u'extra', u'train', u'world']
[u'stock', u'weaken', u'wall']
[u'labor', u'reach', u'busi', u'leader']
[u'land', u'council', u'agre', u'negoti', u'pandanus']
[u'lehmann', u'centuri', u'lift', u'redback']
[u'lehmann', u'stand', u'blue', u'inning']
[u'liber', u'critic', u'govt']
[u'lightn', u'strike', u'twice', u'airport']
[u'liquid', u'hinder', u'invest', u'scam', u'fund']
[u'london', u'bomb', u'ringlead', u'link', u'bali', u'plotter']
[u'macgil', u'watson', u'name', u'test', u'squad']
[u'makyb', u'diva', u'decis', u'loom']
[u'makyb', u'diva', u'work', u'ahead', u'decis']
[u'makyb', u'firm', u'melbourn']
[u'acquit', u'boy', u'manslaught', u'boat']
[u'man', u'fine', u'monaghan', u'cancun', u'trip']
[u'plead', u'guilti', u'porn', u'charg']
[u'marin', u'lobbyist', u'happi', u'fish', u'busi']
[u'market', u'dip', u'amid', u'resourc', u'media', u'stock', u'slide']
[u'meet', u'discuss', u'pacif', u'highway', u'upgrad']
[u'melbourn', u'airport', u'domest', u'flight', u'return']
[u'meningococc', u'suspect', u'toddler', u'death']
[u'methamphetamin', u'drug', u'choic', u'australian']
[u'methamphetamin', u'increas', u'report']
[u'microsoft', u'plan', u'onlin', u'librari']
[u'pledg', u'pakistan', u'quak', u'relief']
[u'mother', u'deni', u'bail', u'child', u'methadon', u'death', u'case']
[u'murray', u'down', u'henman', u'battl', u'brit']
[u'musharraf', u'defend', u'quak', u'respons']
[u'netbal', u'test', u'warm']
[u'climat', u'bodi', u'address', u'region']
[u'counter', u'terror', u'legisl', u'likley']
[u'famili', u'make', u'west', u'wimmera', u'home']
[u'contamin', u'law', u'protect', u'grower']
[u'launceston', u'mayor', u'consult', u'approach']
[u'train', u'line', u'see', u'boost', u'rail', u'freight']
[u'northern', u'power', u'station', u'promis', u'mooney']
[u'nowra', u'look', u'address', u'park', u'problem']
[u'polic', u'hunt', u'near', u'derail']
[u'economi', u'suffer', u'welfar', u'chang', u'acoss']
[u'church', u'ditch', u'rugbi']
[u'rat', u'rise']
[u'oppn', u'want', u'hospit', u'contract', u'public']
[u'opposit', u'applaud', u'distanc', u'educ', u'decis']
[u'opposit', u'blame', u'hec', u'rise', u'fall', u'student']
[u'owner', u'urg', u'clean', u'properti', u'ahead']
[u'pacif', u'forum', u'keep', u'pressur', u'howard']
[u'packer', u'deliv', u'upbeat', u'forecast']
[u'pakistan', u'want', u'england', u'player', u'help', u'quak', u'victim']
[u'palestinian', u'attack', u'kill', u'northern', u'israel']
[u'palestinian', u'leader', u'refus', u'disband', u'cabinet']
[u'polic', u'complex', u'provid', u'improv', u'secur', u'mcginti']
[u'polic', u'target', u'parti', u'drug', u'ahead', u'festiv']
[u'polic', u'wait', u'year', u'test', u'falconio', u'evid']
[u'polic', u'work', u'identifi', u'bodi']
[u'pork', u'produc', u'allow', u'pursu', u'case']
[u'port', u'problem', u'expos', u'secur', u'risk', u'beazley', u'say']
[u'post', u'mortem', u'reveal', u'murder', u'suicid']
[u'promin', u'anti', u'protest', u'arrest', u'white']
[u'propos', u'counter', u'terror', u'law', u'survey']
[u'protest', u'mark', u'fatal', u'iraq']
[u'public', u'warn', u'lurk', u'croc']
[u'push', u'hour', u'pharmaci', u'servic']
[u'qanta', u'featur', u'pandem', u'plan']
[u'pass', u'law', u'case', u'bird', u'pandem']
[u'speaker', u'face', u'confid', u'motion']
[u'ranger', u'oper', u'extend', u'high', u'uranium', u'price']
[u'redback', u'blue', u'tighten', u'grip']
[u'remand', u'centr', u'secur', u'boost', u'follow', u'rampag']
[u'rescuer', u'save', u'strand', u'whale']
[u'resourc', u'compani', u'urg', u'develop', u'communiti']
[u'rizzo', u'take', u'gold', u'world', u'meet']
[u'roch', u'withhold', u'tamiflu', u'stop', u'hoard']
[u'rome', u'fight', u'fear', u'roast', u'chicken']
[u'rooki', u'inning', u'help', u'bull', u'competit', u'total']
[u'chief', u'sack', u'cross', u'citi', u'tunnel']
[u'head', u'sack', u'cross', u'citi', u'tunnel', u'deal']
[u'rudd', u'continu', u'push', u'save', u'death', u'australian']
[u'rush', u'hour', u'commut', u'train', u'derail']
[u'russian', u'jail', u'traffic', u'control', u'murder']
[u'russia', u'oppos', u'sanction', u'syria']
[u'region', u'market', u'boom']
[u'school', u'stamped', u'china', u'kill']
[u'scott', u'confirm', u'huntingdal']
[u'sever', u'storm']
[u'sharon', u'vow', u'broad', u'offens', u'bomb']
[u'sheedi', u'call', u'review', u'tackl', u'law', u'hybrid']
[u'shire', u'avoid', u'pay', u'greedi', u'polici']
[u'singapor', u'defend', u'decis', u'hang', u'melbourn']
[u'singapor', u'issu', u'statement', u'nguyen', u'loom']
[u'job', u'forecast', u'pooncari', u'project']
[u'smart', u'sydney', u'want', u'reveng', u'jet']
[u'journalist', u'strike', u'action']
[u'societi', u'say', u'illeg', u'fish', u'respons']
[u'spring', u'rain', u'boost', u'wheat', u'harvest']
[u'staff', u'moral', u'concern', u'sunraysia', u'tafe']
[u'steven', u'comment', u'person', u'opposit', u'say']
[u'strike', u'boe', u'worker', u'lead', u'protest']
[u'strong', u'construct', u'activ', u'predict']
[u'suicid', u'bomber', u'kill', u'israel']
[u'govern', u'refus', u'stop', u'pulp']
[u'surplus', u'balloon']
[u'teen', u'injur', u'cross', u'railway', u'track']
[u'terror', u'law', u'shouldnt', u'rush', u'iemma']
[u'test', u'dead', u'bird', u'strain', u'croatia']
[u'fish', u'habitat', u'area', u'close', u'establish']
[u'thompson', u'focus', u'victori']
[u'tiger', u'belt', u'razorback']
[u'toll', u'attack', u'patrick', u'corp', u'takeov', u'block']
[u'union', u'freez', u'public', u'privat', u'deal']
[u'issu', u'indonesian', u'travel', u'warn']
[u'order', u'releas', u'guantanamo', u'hunger', u'strike']
[u'unlik', u'accept', u'tariff', u'offer']
[u'vandal', u'damag', u'nativ', u'tree']
[u'govt', u'pledg', u'polici', u'review', u'amid', u'indigen']
[u'nation', u'warn', u'hospit', u'staff', u'wage', u'cut']
[u'announc', u'futur', u'health', u'plan']
[u'mine', u'compani', u'lead', u'reconcili']
[u'warburton', u'construct', u'go', u'administr']
[u'warwick', u'rodeo', u'expect', u'draw', u'thousand']
[u'waugh', u'scheme', u'help', u'kenyan', u'kid']
[u'welfar', u'chang', u'region', u'area', u'report', u'show']
[u'west', u'drain', u'doctor', u'poor', u'nation']
[u'whale', u'carcass', u'beach']
[u'white', u'sweep', u'astro', u'captur', u'world', u'seri']
[u'wilma', u'victim', u'await']
[u'zinifex', u'push', u'ahead', u'staff', u'reduct']
[u'carnarvon', u'youth', u'base', u'open']
[u'abbott', u'welcom', u'bird', u'drug', u'product', u'increas']
[u'adelaid', u'veteran', u'outfox', u'victori', u'young', u'gun']
[u'aggress', u'windi', u'charg']
[u'commit', u'northern', u'power', u'station']
[u'pollut', u'tie', u'increas', u'stroke', u'risk']
[u'aldermen', u'lose', u'council', u'spot']
[u'lose', u'starcraft']
[u'andrew', u'deni', u'chang', u'hurt', u'indigen']
[u'angri', u'veld', u'tee', u'women']
[u'asylum', u'claim', u'fall', u'consecut', u'year']
[u'australia', u'rule', u'clean', u'sweep']
[u'deni', u'knowledg', u'saddam', u'kickback']
[u'implic', u'food', u'scandal']
[u'bali', u'bomb', u'victim', u'remain', u'stabl', u'condit']
[u'beatti', u'back', u'electr', u'cope']
[u'beauti', u'help', u'elect']
[u'benambra', u'celebr', u'year']
[u'best', u'mend', u'doctor']
[u'best', u'suffer', u'intern', u'bleed']
[u'betfair', u'oper', u'confid', u'despit', u'opposit']
[u'benefit', u'see', u'plan', u'health', u'care', u'complex']
[u'boy', u'death', u'spark', u'hope', u'better', u'boat', u'safeti']
[u'britain', u'underdog', u'nation', u'clash']
[u'brook', u'shield', u'pregnant']
[u'brother', u'face', u'death', u'penalti', u'journalist']
[u'busi', u'communiti', u'await', u'iemma', u'comment']
[u'specialist', u'visit', u'goldfield']
[u'head', u'call', u'regul']
[u'head', u'warn', u'rate', u'pressur']
[u'chemic', u'explos', u'prompt', u'warn']
[u'chevron', u'detail', u'deal']
[u'chief', u'justic', u'back', u'circl', u'sentenc']
[u'china', u'access', u'deal', u'close', u'citrus', u'grower']
[u'communiti', u'farewel', u'millic', u'stock', u'agent']
[u'commut', u'face', u'delay', u'liverpool', u'station', u'bomb']
[u'blame', u'forestri', u'profit', u'plung']
[u'construct', u'compani', u'back', u'govt', u'plan']
[u'cooper', u'need', u'tackl', u'environment', u'crime']
[u'councillor', u'stand', u'state', u'seat']
[u'council', u'play', u'pipelin', u'environ', u'impact']
[u'council', u'seek', u'jail', u'detail']
[u'council', u'urg', u'care', u'weigh', u'jail']
[u'countri', u'origin', u'label', u'approv', u'produc']
[u'countri', u'rail', u'servic', u'face', u'game', u'shutdown']
[u'croc', u'breeder', u'hope', u'bumper', u'year']
[u'csiro', u'plan', u'slash', u'job']
[u'cult', u'leader', u'dismiss', u'charg']
[u'doubt', u'british', u'raider']
[u'danger', u'loom', u'doubt', u'rain', u'expect', u'derbi']
[u'darwin', u'jail', u'lockdown', u'disturb']
[u'dental', u'group', u'lament', u'fluorid', u'reject']
[u'depart', u'criticis', u'wilson', u'promontori']
[u'clarifi', u'countri', u'hospit']
[u'disgrac', u'olymp', u'champion', u'order', u'return', u'medal']
[u'docker', u'wood']
[u'doctor', u'group', u'reflect', u'rural', u'health', u'worri']
[u'drought', u'offici', u'declar']
[u'elvi', u'earner', u'dead', u'celebr']
[u'england', u'cricket', u'play', u'golf', u'pakistan', u'quak']
[u'fin', u'ranger', u'safeti', u'breach']
[u'euthanis', u'devil', u'feasibl', u'tool']
[u'health', u'servic', u'board', u'member', u'stand', u'hospit']
[u'fairfax', u'journo', u'return', u'work']
[u'fall', u'water', u'caus', u'council', u'revenu', u'worri']
[u'farmer', u'fear', u'wagga', u'rate', u'rise', u'plan']
[u'farmer', u'pine', u'plantat', u'plan']
[u'farmer', u'review', u'food', u'label', u'law']
[u'fatigu', u'factor', u'worri', u'mourinho']
[u'feasibl', u'studi', u'consid', u'vermin', u'proof', u'fenc']
[u'feder', u'nadal', u'pari', u'master']
[u'field', u'day', u'receiv', u'hall', u'fame', u'honour']
[u'filan', u'want', u'socceroo', u'return']
[u'footbal', u'guilti', u'assault']
[u'fund', u'gordon', u'estat', u'clean']
[u'gazza', u'enter', u'manag', u'minor', u'leagu']
[u'compani', u'accus', u'contamin', u'seed']
[u'general', u'motor', u'probe', u'rattl', u'investor']
[u'gilchrist', u'appeal', u'quak']
[u'rabbit', u'virus', u'caus', u'concern']
[u'go', u'forget', u'armstrong', u'ignor', u'tour']
[u'good', u'smoke', u'statist']
[u'govt', u'accus', u'neglect', u'region', u'road']
[u'govt', u'amend', u'counter', u'terror', u'law', u'stanhop', u'say']
[u'govt', u'seek', u'cruis', u'ship', u'termin', u'develop']
[u'govt', u'remov', u'calcium', u'tablet']
[u'govt', u'watch', u'bird', u'sign']
[u'govt', u'tri', u'reduc', u'award', u'wag', u'opposit']
[u'govt', u'beat', u'wimmera']
[u'govt', u'urg', u'abandon', u'daylight', u'save']
[u'govt', u'urg', u'appoint', u'second', u'newcastl', u'famili']
[u'govt', u'warn', u'brothel', u'close', u'door']
[u'see', u'tool', u'north', u'west', u'industri']
[u'great', u'southern', u'shire', u'share']
[u'group', u'wait', u'wast', u'dump', u'term']
[u'health', u'minist', u'stress', u'leav', u'rann', u'say']
[u'heavi', u'drink', u'harm', u'sperm', u'studi']
[u'heavi', u'rain', u'india', u'forc', u'thousand', u'evacu']
[u'high', u'hop', u'crime', u'fight', u'plan']
[u'highway', u'rout', u'frustrat', u'public']
[u'hooker', u'moor', u'join', u'wallabi', u'franc']
[u'arriv', u'north', u'korea', u'visit']
[u'hunter', u'economi', u'face', u'slow']
[u'hurrican', u'relief', u'effort', u'criticis']
[u'iemma', u'deni', u'chief', u'scapegoat', u'tunnel']
[u'immigr', u'detent', u'report', u'focus', u'mental']
[u'indonesian', u'jail', u'illeg', u'fish']
[u'institut', u'want', u'stricter', u'condit', u'hous']
[u'iranian', u'presid', u'speech', u'anger', u'blair']
[u'iranian', u'presid', u'stand', u'israel', u'remark']
[u'israel', u'reopen', u'embassi']
[u'jail', u'lock', u'claim', u'reject', u'inmat']
[u'kate', u'moss', u'check', u'rehab']
[u'kemp', u'dismiss', u'italian', u'jail', u'threat']
[u'kewel', u'name', u'socceroo', u'squad']
[u'lesli', u'front', u'court', u'bali', u'drug', u'charg']
[u'live', u'croc', u'exhibit', u'plan', u'darwin']
[u'locust', u'report', u'confirm']
[u'lord', u'mayor', u'consid', u'role', u'disast', u'strategi']
[u'macgil', u'sound', u'class', u'warn']
[u'burn', u'farm', u'mishap']
[u'charg', u'teen', u'offenc', u'philippin']
[u'charg', u'drug', u'offenc', u'asset', u'freez']
[u'face', u'multipl', u'drink', u'drive', u'charg', u'remand']
[u'front', u'court', u'multipl', u'offenc', u'charg']
[u'give', u'communiti', u'servic', u'fell', u'radio']
[u'mangl', u'clue', u'husband', u'fate', u'woman', u'say']
[u'arrest', u'gold', u'coast', u'drug', u'raid']
[u'marshal', u'lead', u'french', u'barbarian']
[u'mari', u'good']
[u'mayor', u'issu', u'jail', u'warn']
[u'meat', u'processor', u'work', u'forc', u'boost']
[u'meet', u'focus', u'wild', u'control']
[u'meningococc', u'death', u'spark', u'health', u'test']
[u'miner', u'nickel', u'expans']
[u'minist', u'say', u'health', u'mend']
[u'model', u'face', u'bali', u'court']
[u'mother', u'acquit', u'murder', u'count']
[u'doesnt', u'regret', u'eject', u'air', u'fli']
[u'reveal', u'complaint']
[u'stand', u'pension', u'train', u'travel', u'cost']
[u'weigh', u'poki', u'support']
[u'nation', u'local', u'trauma', u'impact', u'scheme']
[u'nauru', u'get', u'budget', u'surplus', u'boost']
[u'food', u'label', u'introduc']
[u'tourism', u'chairman', u'name']
[u'deal', u'pacif', u'highway', u'rout']
[u'nomad', u'waterfowl', u'clear', u'bird']
[u'real', u'progress', u'port', u'clearanc', u'rate']
[u'score', u'outright', u'victori']
[u'offic', u'tell', u'falconio', u'evid', u'record']
[u'dead', u'highway', u'crash']
[u'ongo', u'reform', u'need', u'busi', u'council', u'say']
[u'open', u'water', u'swim', u'add', u'olymp']
[u'opposit', u'call', u'secret', u'ballot', u'speaker']
[u'parent', u'lock', u'daughter', u'weekend']
[u'patel', u'compo', u'unfair', u'lawyer', u'say']
[u'perth', u'school', u'trial', u'singl', u'classroom']
[u'pienaar', u'confid', u'cash', u'benefit', u'south']
[u'pilbara', u'project', u'share', u'govt', u'fund']
[u'advoc', u'earli', u'start', u'daylight', u'save']
[u'ask', u'help', u'mall', u'revamp']
[u'urg', u'speak', u'execut']
[u'polic', u'quiet', u'miss', u'teen', u'search']
[u'polic', u'look', u'broadwat', u'bodi']
[u'polic', u'weasley', u'fli']
[u'polic', u'seek', u'help', u'miss']
[u'polic', u'farewel', u'crash', u'colleagu']
[u'polic', u'urg', u'wari', u'child', u'claim']
[u'port', u'author', u'chief', u'beat', u'expans', u'plan']
[u'potato', u'farmer', u'mccain', u'disput', u'remain']
[u'poultri', u'unjustifi']
[u'princ', u'admit', u'kangaroo', u'feel', u'heat']
[u'princ', u'charl', u'call', u'action', u'global', u'warm']
[u'public', u'warn', u'break', u'threat']
[u'qanta', u'suspend', u'price', u'flight', u'bali']
[u'racv', u'question', u'hoon', u'law']
[u'rail', u'bypass', u'servic', u'reloc', u'contract']
[u'rail', u'safeti', u'culprit', u'warn', u'penalti']
[u'rail', u'upgrad', u'reduc', u'sydney', u'melbourn', u'freight']
[u'reef', u'author', u'air', u'spawn', u'site', u'concern']
[u'report', u'father', u'fight', u'win', u'award']
[u'research', u'say', u'gippsland', u'creatur', u'giant']
[u'research', u'begin', u'tricki', u'task', u'track', u'croc']
[u'retir', u'scientist', u'talk', u'aust', u'nuclear', u'prospect']
[u'rise', u'labor', u'star', u'diagnos', u'parkinson', u'diseas']
[u'riverland', u'see', u'vital', u'nation', u'food']
[u'rooney', u'england', u'glori', u'maradona']
[u'saddam', u'lawyer', u'want', u'trial', u'move', u'hagu']
[u'scientist', u'trial', u'whale', u'tag']
[u'senior', u'face', u'higher', u'countrylink', u'cost']
[u'shakespear', u'portrait', u'fake']
[u'sheedi', u'ring', u'chang', u'ireland', u'clash']
[u'journalist', u'consid', u'strike', u'action']
[u'socceroo', u'happi', u'secur', u'arrang']
[u'sociedad', u'dash', u'getaf', u'hop']
[u'solid', u'crew', u'rapper', u'jail', u'life']
[u'speaker', u'unconcern', u'confid', u'motion']
[u'stanhop', u'weigh', u'anti', u'terror', u'support']
[u'storm', u'lash', u'caribbean', u'island']
[u'stosur', u'march', u'belgium']
[u'student', u'investig', u'mules', u'altern']
[u'student', u'wwii', u'flag', u'retriev', u'mission']
[u'student', u'help', u'student', u'avoid', u'drug', u'problem']
[u'submiss', u'close', u'draft', u'water', u'plan']
[u'sugarcan', u'electr', u'plan', u'track']
[u'sydney', u'snare', u'age', u'japanes', u'star', u'guest', u'deal']
[u'tag', u'end', u'need', u'scientif', u'whale']
[u'teenag', u'injur', u'bridg', u'fall']
[u'toddler', u'weight', u'gain', u'link', u'adult', u'heart', u'diseas']
[u'honour', u'stonehaven', u'shiraz']
[u'trucki', u'highlight', u'pacif', u'highway', u'woe']
[u'tougher', u'water', u'ban', u'loom', u'central']
[u'tour', u'eager', u'post', u'armstrong']
[u'tradit', u'owner', u'maintain', u'anti', u'dump', u'stanc']
[u'tuckey', u'comment', u'help', u'nguyen', u'rudd']
[u'charg', u'suspect', u'murder']
[u'union', u'air', u'frustrat', u'disabl', u'worker']
[u'union', u'disappoint', u'applic']
[u'offici', u'criticis', u'govt', u'nguyen', u'case']
[u'report', u'highlight', u'afghan', u'human', u'right', u'concern']
[u'uruguay', u'qualifi', u'warm']
[u'victori', u'tough', u'time', u'merrick', u'admit']
[u'victori', u'tough', u'time', u'merrick', u'admit']
[u'deputi', u'opposit', u'leader', u'resign', u'court']
[u'liber', u'deputi', u'guilti', u'charg']
[u'wall', u'street', u'jitter', u'push', u'market']
[u'aim', u'free']
[u'water', u'author', u'see', u'benefit', u'nation', u'park', u'plan']
[u'watson', u'want', u'repay', u'selector']
[u'western', u'trial', u'manufactur', u'wild', u'bait']
[u'western', u'region', u'record', u'higher', u'domest', u'violenc']
[u'west', u'indi', u'cruis']
[u'wheat', u'industri', u'outrag', u'iraq', u'kickback']
[u'whitsunday', u'council', u'worker', u'sack']
[u'worker', u'strike', u'western', u'power', u'polici']
[u'youth', u'centr', u'plan', u'track']
[u'fear', u'kill', u'delhi', u'blast']
[u'question', u'illeg', u'fish']
[u'abbott', u'caution', u'bird', u'vaccin']
[u'aborigin', u'cannabi', u'fall']
[u'urg', u'begin', u'hemp', u'product']
[u'adelaid', u'coach', u'john', u'kosmina']
[u'adhd', u'diagnos', u'mask', u'condit', u'research']
[u'aftershock', u'hit', u'northern', u'pakistan']
[u'age', u'care', u'group', u'reject', u'staff', u'level', u'claim']
[u'armstrong', u'hit', u'latest', u'leblanc', u'remark']
[u'arsenal', u'henri', u'tottenham', u'clash']
[u'australia', u'rule', u'clean', u'sweep']
[u'babi', u'stress', u'link', u'middl', u'mental', u'declin']
[u'beatti', u'see', u'progress', u'ambul']
[u'benicio', u'add', u'derbi', u'freedman', u'list']
[u'best', u'better', u'life', u'balanc']
[u'beta', u'upgrad', u'hurrican']
[u'fall', u'silent']
[u'blaze', u'destroy', u'broadford', u'tyre', u'factori']
[u'driver', u'jail', u'british', u'bomb', u'hoax']
[u'bush', u'criticis', u'global', u'warm', u'polici']
[u'bush', u'white', u'hous', u'face', u'credibl', u'blow']
[u'call', u'secret', u'ballot', u'speaker', u'increas']
[u'cannabi', u'plant', u'seiz', u'sydney', u'drug', u'raid']
[u'cathol', u'want', u'work', u'right', u'teach', u'school']
[u'christian', u'lobbi', u'warn', u'grow', u'elector']
[u'comic', u'book', u'make', u'mandela', u'famous']
[u'communiti', u'project', u'suffer', u'opposit']
[u'counter', u'terror', u'chang', u'signific', u'stanhop']
[u'court', u'consid', u'berlusconi', u'corrupt', u'trial']
[u'crack', u'langer', u'race', u'clock']
[u'darwin', u'consid', u'option', u'water']
[u'death', u'toll', u'rise', u'cave']
[u'derbi', u'tip']
[u'diva', u'draw', u'favour']
[u'dizzi', u'redback']
[u'drug', u'educ', u'scheme', u'target', u'vulner', u'youth']
[u'econom', u'climat', u'blame', u'cut', u'fairfax']
[u'econom', u'growth', u'bolster', u'market']
[u'england', u'player', u'move', u'plight', u'quak', u'children']
[u'pressur', u'ramp', u'tariff', u'cut']
[u'fair', u'commiss', u'seek', u'divin', u'intervent']
[u'feder', u'govt', u'hide', u'illeg', u'fish', u'threat']
[u'damag', u'doubl', u'hotel']
[u'british', u'peacekeep', u'hurt', u'afghan', u'attack']
[u'dane', u'arrest', u'bosnian', u'terror', u'plot']
[u'freedman', u'hold', u'makyb', u'decis']
[u'french', u'polynesia', u'alleg', u'contamin', u'cover']
[u'fresh', u'isra', u'raid', u'northern', u'gaza']
[u'fund', u'boost', u'improv', u'oper']
[u'funer', u'industri', u'ponder', u'bird', u'risk']
[u'ganguli', u'india', u'futur', u'bleak', u'exclus']
[u'glori', u'forc', u'roar', u'draw']
[u'govt', u'warn', u'rush', u'law']
[u'green', u'inquiri', u'awb', u'food']
[u'grid', u'slow', u'spread', u'tassi', u'devil', u'diseas']
[u'grower', u'seek', u'protect', u'scandal']
[u'hackett', u'target', u'open', u'water', u'beij']
[u'harsh', u'winter', u'loom', u'quak', u'kashmir']
[u'hewitt', u'pull', u'pari', u'master']
[u'hotel', u'defend', u'club', u'poki', u'stanc']
[u'hungarian', u'bird', u'vaccin', u'littl']
[u'hurrican', u'damag', u'pluto', u'mission', u'rocket']
[u'indigen', u'central', u'australian', u'reject', u'dump', u'plan']
[u'injur', u'langer', u'determin', u'play', u'gabba', u'test']
[u'interview', u'elli']
[u'interview', u'noel', u'callow']
[u'iranian', u'ralli', u'condemn', u'anti', u'israel', u'remark']
[u'iran', u'say', u'intent', u'strike', u'israel']
[u'iraqi', u'rush', u'nomin', u'decemb', u'ballot']
[u'islam', u'group', u'welcom', u'stand', u'anti', u'terror', u'law']
[u'israel', u'welcom', u'secur', u'council', u'messag', u'tehran']
[u'warn', u'gilchrist', u'junction', u'oval']
[u'jail', u'term', u'send', u'messag', u'illeg', u'fisher']
[u'japan', u'mull', u'add', u'militari', u'constitut']
[u'judg', u'refus', u'drop', u'kelli', u'porn', u'case']
[u'king', u'battl', u'sydney', u'club']
[u'korp', u'home', u'sell']
[u'labor', u'mate', u'overse', u'health', u'reform']
[u'langer', u'hurt', u'gilli']
[u'langer', u'injur', u'bushrang', u'thrash', u'warrior']
[u'leader', u'reserv', u'decis', u'anti', u'terror', u'law']
[u'libbi', u'face', u'jail']
[u'lindop', u'battl', u'nerv', u'ahead', u'histori', u'make']
[u'live', u'concert', u'turn', u'profit']
[u'makyb', u'confirm']
[u'mayor', u'urg', u'support', u'bushfir', u'region']
[u'meander', u'rescu', u'wast', u'taxpay', u'money']
[u'monti', u'eighth', u'european', u'crown']
[u'kill', u'indian', u'train', u'accid']
[u'music', u'video', u'audienc', u'migrat']
[u'delhi', u'blast', u'accid']
[u'nicaraguan', u'flee', u'villag', u'beta', u'approach']
[u'nicolaou', u'contest', u'pittwat', u'elect']
[u'overhead', u'powerlin', u'decis', u'dismay', u'resid']
[u'pair', u'chariti', u'ride']
[u'pakistan', u'recal', u'shoaib', u'mushtaq', u'england', u'test']
[u'palestinian', u'pledg', u'crackdown', u'illeg', u'arm']
[u'pathan', u'bowl', u'heroic', u'easi', u'india']
[u'petri', u'snare', u'doubl', u'marin', u'roll', u'knight']
[u'plantat', u'project', u'studi', u'greenhous', u'gas']
[u'polic', u'arrest', u'happi', u'valley', u'rape', u'suspect']
[u'polic', u'arrest', u'piraci']
[u'polic', u'crackdown', u'target', u'antisoci', u'behaviour']
[u'polic', u'probe', u'liber', u'parti', u'fraud', u'claim']
[u'polic', u'search', u'happi', u'valley', u'teen', u'rapist']
[u'port', u'botani', u'backlog', u'begin', u'eas']
[u'power', u'blast', u'rock', u'indian', u'capit']
[u'rail', u'upgrad', u'boon', u'region', u'economi']
[u'ralli', u'support', u'villawood', u'hunger', u'striker']
[u'polic', u'seiz', u'lion', u'neighbour', u'uproar']
[u'roar', u'hop', u'kosmina', u'stoush']
[u'samuel', u'star', u'lara', u'fail', u'test', u'warm']
[u'search', u'continu', u'miss', u'toddler']
[u'silver', u'fern', u'trounc', u'aussi', u'netbal']
[u'socceroo', u'coach', u'fraud', u'probe']
[u'south', u'africa', u'despit', u'vincent', u'defianc']
[u'stanhop', u'heed', u'draft', u'confidenti', u'rule']
[u'state', u'leader', u'stick', u'gun']
[u'stem', u'cell', u'turn', u'intern', u'organ', u'cell']
[u'stosur', u'fall', u'belgian', u'quarter', u'final']
[u'student', u'safe', u'hike', u'mishap']
[u'super', u'jumbo', u'land', u'germani']
[u'sydney', u'beach', u'cleanli', u'tick']
[u'syria', u'urg', u'expel', u'islam', u'jihad']
[u'teacher', u'tackl', u'bulli']
[u'team', u'spirit', u'adelaid', u'secret', u'say', u'kosmina']
[u'schoolgirl', u'behead', u'indonesia']
[u'time', u'right', u'mar', u'view']
[u'cheney', u'aid', u'face', u'leak', u'charg']
[u'train', u'derail', u'india']
[u'hurt', u'plane', u'mishap']
[u'suspect', u'bird', u'death', u'vietnam']
[u'union', u'question', u'ludicr', u'fine']
[u'uruguay', u'coach', u'lash', u'choic', u'ref']
[u'economi', u'post', u'robust', u'growth', u'hurrican']
[u'invit', u'right', u'investig', u'guantanamo']
[u'vermeulen', u'switch', u'motogp']
[u'victorian', u'charg', u'gold', u'coast', u'attack']
[u'fear', u'bird', u'flus', u'impact', u'africa']
[u'wildcat', u'upset', u'sixer']
[u'deni', u'nuclear', u'power', u'inevit']
[u'declar', u'drought']
[u'complet', u'armour', u'upgrad']
[u'amnesti', u'death', u'campaign', u'draw', u'record', u'respons']
[u'anti', u'smoke', u'group', u'critic', u'govt', u'effort']
[u'anti', u'terror', u'concern', u'persist']
[u'aziz', u'deni', u'name', u'british', u'probe']
[u'beach', u'build', u'face', u'height', u'limit']
[u'berlusconi', u'tri', u'talk', u'bush', u'iraq']
[u'best', u'make', u'progress']
[u'blast', u'rais', u'terror', u'fear']
[u'bligh', u'dismiss', u'springborg', u'attack']
[u'bodi', u'wakeboard', u'river']
[u'booki', u'face', u'huge', u'loss', u'diva', u'victori']
[u'bull', u'salvag', u'draw', u'windi']
[u'bush', u'search', u'miss', u'toddler']
[u'cafe', u'drive', u'shoot', u'investig']
[u'candl', u'hope', u'convict', u'drug', u'smuggler']
[u'chelsea', u'overcom', u'rover', u'boro', u'shock', u'unit']
[u'childcar', u'black', u'market', u'worth', u'million']
[u'concern', u'lara', u'form', u'ahead', u'gabba', u'test']
[u'coron', u'probe', u'king', u'burn', u'death']
[u'dandenong', u'adelaid', u'score', u'wnbl', u'win']
[u'death', u'toll', u'indian', u'train', u'crash', u'rise']
[u'regist', u'consider']
[u'elli', u'miss', u'commonwealth', u'game']
[u'england', u'receiv', u'india', u'itinerari']
[u'fair', u'campaign', u'counter', u'blitz']
[u'father', u'loss', u'explain', u'son', u'suicid', u'attack']
[u'claim', u'alic', u'spring', u'icon']
[u'foreign', u'doctor', u'need', u'extra', u'support', u'rural']
[u'gleeson', u'play', u'track', u'fear']
[u'govt', u'accus', u'wast', u'fund', u'spin', u'doctor']
[u'greek', u'turkey', u'clear', u'bird']
[u'hockeyroo', u'suffer', u'shock', u'loss']
[u'hospit', u'mark', u'liver', u'transplant', u'anniversari']
[u'india', u'alert', u'delhi', u'blast']
[u'interview', u'norma', u'plummer']
[u'interview', u'roar', u'coach', u'miron', u'bleiberg']
[u'islam', u'jihad', u'halt', u'gaza', u'rocket']
[u'ivori', u'coast', u'accus', u'recruit', u'child', u'soldier']
[u'labor', u'demand', u'govt', u'backdown']
[u'level', u'cross', u'accid', u'kill']
[u'magnific', u'milan', u'halt', u'juve', u'charg']
[u'melbourn', u'stanley', u'skipper', u'sound', u'maxi', u'challeng']
[u'monti', u'let', u'shoot', u'lead', u'slip']
[u'mourinho', u'hail', u'lampard', u'best', u'world']
[u'seek', u'queen', u'help', u'save', u'death']
[u'delhi', u'blast', u'toll', u'rise']
[u'delhi', u'explos', u'toll', u'pass']
[u'fin', u'dummi', u'bidder']
[u'zealand', u'battl', u'brit']
[u'time', u'navel', u'gaze', u'terror', u'law', u'abbott']
[u'nrma', u'back', u'tunnel', u'toll']
[u'pakistan', u'india', u'agre', u'open', u'quak', u'border']
[u'patent', u'limit', u'bird', u'drug', u'suppli', u'abbott']
[u'make', u'anti', u'terror', u'chang']
[u'rein', u'foreign', u'invest']
[u'pope', u'make', u'unannounc', u'mentorella', u'visit']
[u'program', u'aim', u'save', u'purebr', u'dingo']
[u'redfern', u'centr', u'youth', u'futur']
[u'river', u'plan', u'potenti', u'disast']
[u'rychart', u'star', u'sixer', u'sink', u'breaker']
[u'safin', u'doubt', u'hopman']
[u'seek', u'phone', u'card']
[u'urg', u'adopt', u'drug', u'rehab', u'scheme']
[u'search', u'find', u'miss', u'teen', u'safe']
[u'select', u'decis', u'langer', u'hand', u'buchanan']
[u'student', u'union', u'question', u'subject', u'cut']
[u'suicid', u'bomber', u'kill', u'iraqi', u'market']
[u'sydney', u'newcastl', u'share', u'point']
[u'syria', u'hold', u'hariri', u'murder', u'probe']
[u'teen', u'die', u'nepean', u'highway', u'crash']
[u'telemarket', u'face', u'crackdown']
[u'tszyu', u'admit', u'doubt', u'fight', u'futur']
[u'japan', u'revamp', u'militari', u'tie']
[u'militari', u'estim', u'iraqi', u'toll', u'insurg']
[u'team', u'wwii', u'murder', u'mysteri']
[u'vail', u'refus', u'stall', u'talk']
[u'weld', u'blame', u'perth', u'hous']
[u'weld', u'join', u'freedman', u'soft', u'track']
[u'send', u'real']
[u'youth', u'clash', u'polic', u'pari', u'suburb']
[u'abar', u'forecast', u'talk', u'price', u'impact']
[u'anti', u'bulli', u'review', u'cost']
[u'boss', u'criticis', u'miss', u'senat', u'estim']
[u'afghanistan', u'destroy', u'drug', u'lab']
[u'need', u'staff', u'boost', u'enforc', u'anti', u'terror']
[u'age', u'bigger', u'career', u'threat', u'activ']
[u'agent', u'play', u'depardieus', u'quit', u'comment']
[u'buy', u'southern', u'hydro', u'plan', u'demerg']
[u'alic', u'resid', u'consid', u'water', u'option']
[u'qaeda', u'infiltr', u'gaza']
[u'warn', u'bird', u'overreact']
[u'anger', u'farmer', u'assn', u'withdraw', u'support']
[u'anger', u'fail', u'attract', u'school', u'leaver']
[u'girl', u'school', u'burn', u'afghanistan']
[u'anti', u'terror', u'negoti', u'enter', u'final', u'phase']
[u'armi', u'know', u'heat', u'danger', u'soldier', u'death']
[u'artist', u'journalist', u'voic', u'anti', u'terror', u'law']
[u'asic', u'hail', u'cooper', u'convict']
[u'australian', u'face', u'drug', u'charg', u'sumatra']
[u'autopsi', u'gorokan', u'toddler', u'week']
[u'award', u'year']
[u'backbench', u'rais', u'anti', u'terror', u'concern']
[u'bali', u'case', u'meet', u'requir', u'court']
[u'ballarat', u'vice', u'chancellor', u'go', u'west']
[u'bashir', u'includ', u'jail', u'term', u'cut', u'report']
[u'bathurst', u'tafe', u'month', u'visual', u'art', u'cours', u'ax']
[u'beazley', u'pois', u'anti', u'terror', u'law']
[u'bendigo', u'unearth', u'secret', u'chines', u'kiln']
[u'telescop', u'discuss']
[u'bird', u'expert', u'plan', u'respons']
[u'bird', u'pandem', u'risk', u'real']
[u'bomb', u'target', u'convoy', u'kill', u'afghan', u'wound']
[u'borrow', u'push', u'georg', u'record', u'profit']
[u'injur', u'forklift', u'accid']
[u'recov', u'river', u'accid']
[u'brad', u'cooper', u'guilti', u'briberi', u'corrupt']
[u'bundaberg', u'councillor', u'buck', u'poki', u'increas']
[u'bush', u'presid', u'need', u'staff', u'shake']
[u'rabbit', u'fenc', u'payment']
[u'owner', u'urg', u'lock', u'vehicl']
[u'centrelink', u'chief', u'urg', u'join', u'staff', u'talk']
[u'centrelink', u'slam', u'union', u'strike', u'threat']
[u'chabal', u'get', u'french', u'wallabi', u'clash']
[u'chanderpaul', u'keep', u'faith', u'struggl', u'lara']
[u'china', u'aussi', u'citrus', u'export']
[u'chinchilla', u'restrict', u'water']
[u'clijster', u'close', u'davenport', u'spot']
[u'coalit', u'question', u'anti', u'terror', u'legisl']
[u'welcom', u'whale', u'watch', u'law']
[u'cooper', u'guilti', u'charg', u'case']
[u'corbi', u'lodg', u'freedom']
[u'counsel', u'servic', u'uncov', u'dirt', u'debt']
[u'court', u'hear', u'fishermen', u'attack', u'navi', u'offic']
[u'custom', u'tell', u'engag', u'communiti']
[u'dairi', u'farmer', u'enjoy', u'stronger', u'chees', u'price']
[u'dark', u'hors', u'fiorentina']
[u'develop', u'countri', u'want', u'money', u'prepar']
[u'dresden', u'church', u'reconsecr', u'year']
[u'elli', u'commonwealth', u'game']
[u'endang', u'feel', u'heat', u'global', u'warm']
[u'energi', u'stock', u'fuel', u'late', u'market', u'ralli']
[u'environment', u'concern', u'irrig', u'expans']
[u'famili', u'mealtim', u'help', u'teen', u'avoid', u'obes']
[u'farmer', u'failur', u'report', u'stock', u'theft', u'baffl']
[u'farmer', u'question', u'plan']
[u'fear', u'emerg', u'equip', u'theft', u'risk', u'live']
[u'fear', u'plan', u'regul', u'telstra', u'price', u'hurt']
[u'feder', u'fund', u'power', u'station', u'town']
[u'feder', u'ralli', u'nguyen']
[u'manag', u'strategi', u'look', u'scienc']
[u'fisherman', u'wharf', u'celebr', u'cray', u'season', u'start']
[u'flemington', u'track', u'dead', u'concern', u'beat']
[u'flemington', u'track', u'prepar']
[u'fli', u'doctor', u'begin', u'industri']
[u'fonterra', u'plan', u'food', u'nutrit', u'research']
[u'food', u'busi', u'shut', u'salmonella', u'scare']
[u'food', u'label', u'law', u'seafood', u'council']
[u'fountain', u'coin', u'rethink', u'lead', u'chang', u'good']
[u'gate', u'pledg', u'million', u'fight', u'malaria']
[u'govt', u'approv', u'methan', u'fire', u'power', u'station']
[u'govt', u'studi', u'rail', u'corridor', u'highway', u'idea']
[u'govt', u'urg', u'nois', u'death', u'inmat']
[u'grain', u'farmer', u'welcom', u'weekend', u'rain']
[u'grazier', u'clear', u'fine', u'slash']
[u'green', u'group', u'back', u'push', u'tropic', u'timber', u'group']
[u'group', u'claim', u'unenvi', u'asbesto', u'record']
[u'group', u'flag', u'lake', u'burley', u'griffin', u'water', u'taxi', u'plan']
[u'gungahlin', u'drive', u'work', u'move', u'closer', u'complet']
[u'gunmen', u'kill', u'iraq', u'cabinet', u'advis']
[u'health', u'advisori', u'council', u'meet', u'communiti']
[u'health', u'minist', u'hop', u'quick', u'site', u'redevelop']
[u'health', u'servic', u'question', u'outstand', u'debt']
[u'high', u'school', u'student', u'drug', u'test', u'summit']
[u'howard', u'implic', u'rort', u'affair', u'labor', u'say']
[u'howard', u'seek', u'inquiri', u'scandal']
[u'hreoc', u'see', u'polic', u'state', u'terror', u'law']
[u'hurrican', u'beta', u'slam', u'nicaragua', u'jungl', u'coast']
[u'hussey', u'call', u'langer', u'cover']
[u'hydro', u'accus', u'powerlin', u'bulli']
[u'illeg', u'fish', u'report', u'follow', u'inadequ']
[u'indian', u'pledg', u'effort', u'bomb', u'victim']
[u'ipswich', u'councillor', u'call', u'daylight', u'save']
[u'chang', u'deserv', u'bipartisan', u'support', u'say', u'acci']
[u'rule', u'end', u'power', u'worker', u'strike']
[u'japanes', u'scientist', u'recommend', u'lift', u'beef']
[u'jetstar', u'fli', u'townsvill']
[u'jetti', u'open', u'plan', u'boost', u'lake']
[u'joyc', u'consid', u'food', u'inquiri']
[u'judg', u'retir', u'coal', u'approv', u'case']
[u'june', u'prison', u'larg']
[u'beazley', u'readi', u'support', u'terror', u'law']
[u'langer', u'unlik', u'face', u'windi']
[u'lara', u'play', u'despit', u'finger', u'injuri']
[u'lauri', u'join', u'branch', u'line', u'ralli']
[u'lifesav', u'urg', u'caution', u'beachgo', u'weather']
[u'lion', u'list', u'mclaren']
[u'local', u'cyclist', u'veteran', u'champ', u'ballarat']
[u'makyb', u'fan', u'glimps', u'diva']
[u'arrest', u'coburg', u'stab']
[u'kill', u'river', u'dive', u'accid']
[u'mansel', u'fear', u'anti', u'terror', u'law', u'indigen', u'impact']
[u'mayor', u'hooper', u'term']
[u'mcarthur', u'river', u'oper', u'reject', u'green', u'group']
[u'melbourn', u'tip']
[u'melbourn', u'grip', u'fever']
[u'melbourn', u'sack', u'horticultur', u'colleg', u'staff']
[u'milit', u'kill', u'west', u'bank', u'raid']
[u'minist', u'back', u'highway', u'improv']
[u'minist', u'back', u'blair', u'attack', u'greenhous']
[u'mix', u'result', u'child', u'death', u'rate', u'figur']
[u'monti', u'king', u'europ']
[u'mooney', u'back', u'ratepay', u'role', u'mall', u'revamp']
[u'polic', u'send', u'investig', u'schoolgirl']
[u'parliamentari', u'secur', u'staff', u'lack', u'clearanc']
[u'mourner', u'tribut', u'civil', u'right', u'figur']
[u'highlight', u'govt', u'region', u'role']
[u'alert', u'custom', u'email', u'hoax']
[u'nation', u'want', u'compo', u'distribut', u'easter', u'fire']
[u'surf', u'tsunami', u'town', u'warn']
[u'delhi', u'ramp', u'secur', u'blast']
[u'equip', u'boost', u'breast', u'screen', u'program']
[u'evid', u'back', u'hickss', u'tortur', u'claim']
[u'fund', u'speed', u'resourc', u'project']
[u'home', u'sale', u'plummet']
[u'orang', u'council', u'put', u'feet', u'desk']
[u'blood', u'falconio', u'scientist']
[u'sour', u'note', u'airport', u'leav']
[u'fair', u'campaign', u'unfair', u'opposit']
[u'opposit', u'want', u'clarif', u'women', u'refug']
[u'opposit', u'want', u'sculli', u'desalin', u'plant']
[u'osasuna', u'return', u'ronaldinho', u'boost', u'barca']
[u'owen', u'score', u'twice', u'newcastl', u'romp', u'west', u'brom']
[u'paediatrician', u'call', u'children', u'hospit']
[u'pair', u'guilti', u'bash', u'father', u'carri', u'babi']
[u'pair', u'face', u'court', u'high', u'speed', u'chase']
[u'palestinian', u'bomber', u'kill', u'west', u'bank', u'armi']
[u'parent', u'worri', u'prompt', u'student', u'rank', u'rethink']
[u'parliament', u'mate', u'error', u'judgment']
[u'parlt', u'pass', u'motion', u'urg', u'singapor', u'govt', u'spare']
[u'parti', u'unit', u'save', u'death', u'aussi']
[u'frustrat', u'buck', u'pass', u'mosquito', u'problem']
[u'deni', u'newman', u'grant', u'rort']
[u'polic', u'check', u'claim', u'india', u'market', u'bomb']
[u'polic', u'freez', u'million', u'asset', u'charg']
[u'polic', u'hope', u'funer', u'memori']
[u'polic', u'investig', u'teen', u'assault']
[u'polic', u'probe', u'perth', u'raid']
[u'polynesian', u'cemeteri', u'unlock', u'ancient', u'burial', u'secret']
[u'port', u'upgrad', u'like', u'delay', u'harvest', u'handl']
[u'preschool', u'parent', u'survey', u'fund', u'campaign']
[u'probe', u'continu', u'galleri', u'blaze']
[u'punter', u'million', u'dollar', u'plung', u'makyb']
[u'wool', u'indic', u'hit', u'lowest', u'price', u'year']
[u'quit', u'urg', u'total', u'indoor', u'smoke']
[u'rain', u'help', u'boost', u'level', u'need']
[u'record', u'crowd', u'expect', u'melbourn']
[u'recycl', u'take', u'central', u'west']
[u'tape', u'record', u'prompt', u'action']
[u'region', u'airlin', u'wing', u'clip']
[u'region', u'bird', u'confer']
[u'region', u'wast', u'dump', u'sit', u'moot']
[u'report', u'highlight', u'public', u'hospit', u'medic']
[u'report', u'show', u'reform', u'afford', u'labor', u'say']
[u'share', u'offer', u'oversubscrib']
[u'rfds', u'stand', u'disput', u'decis']
[u'road', u'plan', u'help', u'flood', u'proof', u'plantagenet', u'shire']
[u'roddick', u'storm', u'career', u'titl']
[u'roebourn', u'outlin', u'plan', u'attract']
[u'rural', u'doctor', u'seek', u'govt', u'attent']
[u'africa', u'tap', u'phone', u'email', u'fight', u'organis']
[u'govt', u'help', u'fund', u'waikeri', u'treatment', u'plant']
[u'face', u'court', u'suspect', u'murder']
[u'schenscher', u'dream', u'tatter']
[u'seafood', u'group', u'want', u'label', u'chang', u'menu']
[u'seven', u'mecca', u'chariti', u'stamped']
[u'south', u'africa', u'clinch', u'seri']
[u'south', u'east', u'welcom', u'heavi', u'rain']
[u'spanish', u'princess', u'give', u'birth', u'babi', u'girl']
[u'spencer', u'gulf', u'ferri', u'servic', u'near']
[u'stab', u'victim', u'die', u'hospit']
[u'staff', u'doctor', u'hospit', u'crisi', u'claim']
[u'stone', u'upset', u'colleagu', u'support', u'abort']
[u'swan', u'hill', u'awar', u'piggeri', u'concern']
[u'sydney', u'airport', u'plan', u'expans']
[u'govt', u'rethink', u'water', u'right', u'issu']
[u'opposit', u'question', u'govt', u'advertis', u'budget']
[u'salmonella', u'outbreak', u'hit', u'hobart']
[u'test', u'clear', u'migratori', u'bird', u'dead']
[u'hurt', u'tilt', u'train', u'accid']
[u'tiger', u'challeng', u'date', u'bull']
[u'timber', u'job', u'threaten', u'industri', u'sag']
[u'troop', u'break', u'zanzibar', u'opposit', u'celebr']
[u'shoot', u'domest', u'disput']
[u'union', u'slam', u'foreign', u'apprentic', u'recruit']
[u'capitol', u'honour', u'civil', u'right', u'leader', u'park']
[u'soldier', u'charg', u'afghan', u'detaine', u'assault']
[u'vaughan', u'trescothick', u'visit', u'pakistan', u'quak', u'zone']
[u'venus', u'express', u'spacecraft', u'lift']
[u'woman', u'break', u'silenc', u'husband', u'murder']
[u'mine', u'compani', u'begin', u'search', u'sand']
[u'pub', u'club', u'smoke', u'move', u'closer']
[u'water', u'conserv', u'take', u'hold']
[u'water', u'test', u'desalin', u'plant']
[u'wetland', u'rehabilit', u'start']
[u'whale', u'watch', u'season', u'end', u'disappoint']
[u'windi', u'coach', u'deni', u'player', u'attitud', u'problem']
[u'worri', u'load', u'road', u'saleyard']
[u'kill', u'iraq', u'bomb']
[u'academ', u'say', u'resign']
[u'politician', u'sign', u'nguyen', u'petit']
[u'aerial', u'search', u'begin', u'miss', u'german', u'tourist']
[u'respons', u'death', u'penalti', u'law']
[u'agforc', u'back', u'reduc', u'tree', u'clear', u'fine']
[u'hors', u'stop', u'nation']
[u'alleg', u'colombian', u'drug', u'lord', u'arrest']
[u'anti', u'terror', u'legisl', u'step', u'closer']
[u'apec', u'plan', u'bird', u'prepar', u'test']
[u'asio', u'govt', u'court', u'settlement', u'bungl']
[u'aust', u'prepar', u'bird', u'outbreak', u'downer']
[u'australian', u'wager']
[u'aust', u'help', u'asia', u'prepar', u'bird', u'pandem']
[u'award', u'honour', u'local', u'youth', u'train', u'effort']
[u'award', u'honour', u'brave', u'polic', u'effort']
[u'inquiri', u'institut', u'request']
[u'barrick', u'gold', u'announc', u'takeov']
[u'beatti', u'rule', u'daylight', u'save']
[u'beazley', u'chang', u'tack', u'anti', u'terror', u'law']
[u'bedsid', u'court', u'hear', u'polic', u'chase', u'accus']
[u'betfair', u'agenc', u'like', u'ahead']
[u'bonus', u'lure', u'prawn', u'fisher']
[u'book', u'dispel', u'archer', u'melbourn', u'myth']
[u'booki', u'fear', u'makyb', u'diva']
[u'bowen', u'surat', u'basin', u'target', u'explor']
[u'bowl', u'great', u'odd', u'windi', u'chanc']
[u'river', u'ordeal', u'intens', u'care']
[u'brisban', u'council', u'financ', u'black']
[u'burglar', u'get', u'away', u'lot', u'dough']
[u'bush', u'nomin', u'alito', u'suprem', u'court']
[u'bush', u'announc', u'alito', u'suprem', u'court']
[u'call', u'inquiri', u'hick', u'claim']
[u'canada', u'discov', u'virus', u'wild', u'bird']
[u'castro', u'taunt', u'bush', u'chat']
[u'central', u'north', u'victoria', u'rain']
[u'centrelink', u'wag', u'disput', u'cost', u'million']
[u'cheney', u'appoint', u'chief', u'aid']
[u'consum', u'concern', u'manufactur', u'activ']
[u'corbi', u'prosecutor', u'appeal', u'sentenc']
[u'cosgrov', u'put', u'fit', u'issu']
[u'council', u'hose', u'water', u'breakaway']
[u'council', u'join', u'town', u'camp', u'probe']
[u'councillor', u'wont', u'attend', u'plan', u'meet']
[u'council', u'push', u'ahead', u'highway', u'bypass']
[u'coupl', u'win', u'payout', u'asio', u'raid']
[u'courtney', u'get', u'supercar']
[u'croft', u'lead', u'australia', u'barbarian']
[u'crowd', u'flock', u'flemington']
[u'csiro', u'chang', u'rais', u'econom', u'concern']
[u'csiro', u'plan', u'scale', u'rural', u'research']
[u'deal', u'push', u'share', u'market', u'higher']
[u'debat', u'urg', u'china', u'citrus', u'prefer', u'export']
[u'defenc', u'group', u'wont', u'specul', u'fallout']
[u'deleg', u'present', u'nguyen', u'petit']
[u'dhoni', u'lead', u'india', u'lanka']
[u'director', u'recommend', u'carter', u'holt', u'harvey', u'takeov']
[u'diva', u'bow', u'histor', u'victori']
[u'diva', u'owner', u'home', u'town', u'celebr']
[u'diva', u'seal', u'legend']
[u'diwali', u'begin', u'delhi', u'mourn', u'bomb', u'victim']
[u'doctor', u'leav', u'caus', u'patient', u'travel', u'problem']
[u'downer', u'staff', u'know', u'hick', u'abus', u'claim']
[u'employ', u'recruit', u'foreign', u'apprentic']
[u'issu', u'pilbara', u'recommend']
[u'escap', u'prison', u'walk', u'gate']
[u'expert', u'play', u'bird', u'risk']
[u'famili', u'seek', u'wit', u'surfer', u'paradis', u'attack']
[u'farmer', u'concern', u'fail', u'stop', u'rate', u'rise', u'plan']
[u'farm', u'group', u'seek', u'access', u'patient', u'support']
[u'farm', u'group', u'softwood', u'plantat']
[u'fear', u'hold', u'safeti', u'deep', u'fish', u'pair']
[u'fee', u'grain', u'export', u'feel', u'bird', u'impact']
[u'foreign', u'hors', u'fail', u'impress']
[u'children', u'ward', u'nurs', u'jail', u'porn']
[u'singapor', u'defend', u'lack', u'media', u'freedom']
[u'fraser', u'group', u'say', u'fund', u'need', u'world']
[u'freedman', u'weld', u'inspect', u'flemington', u'track']
[u'french', u'firefight', u'slipperi', u'custom']
[u'fuel', u'cost', u'push', u'rfds', u'seek', u'extra', u'fund']
[u'gibb', u'boje', u'slam', u'door', u'india', u'tour']
[u'gibson', u'shoot', u'movi', u'ancient', u'tongu']
[u'goulburn', u'pool', u'reopen', u'door']
[u'govt', u'ignor', u'hick', u'tortur', u'claim', u'council']
[u'govt', u'offer', u'free', u'vaccin', u'children']
[u'govt', u'sign', u'coal', u'revamp']
[u'govt', u'urg', u'boost', u'rural', u'medicar', u'rebat']
[u'greenpeac', u'face', u'fine', u'reef', u'damag']
[u'hacker', u'invad', u'voic', u'mail', u'leav', u'obscen']
[u'healthi', u'debat', u'spend']
[u'hick', u'tortur', u'claim', u'investig', u'downer']
[u'hotel', u'begin', u'earli', u'melbourn', u'festiv']
[u'hoteli', u'question', u'smoke', u'ban', u'impact']
[u'howard', u'disput', u'labor', u'cost']
[u'hunger', u'strike', u'support', u'guantanamo', u'detaine']
[u'hunter', u'experi', u'high', u'child', u'death', u'rate']
[u'hunt', u'restaur', u'shoot', u'culprit']
[u'hushovd', u'contest', u'tour']
[u'iemma', u'listen', u'icac', u'fund', u'fear']
[u'immigr', u'slam', u'slogan', u'cost']
[u'india', u'see', u'foreign', u'link', u'attack']
[u'rat', u'unlik', u'chang', u'economist']
[u'investig', u'miss', u'immigr', u'boat']
[u'minist', u'put', u'cost']
[u'iraq', u'ask', u'forc', u'stay']
[u'kalgoorli', u'boulder', u'council', u'oppos', u'wast', u'dump', u'plan']
[u'koizumi', u'reshuffl', u'cabinet']
[u'kpmg', u'predict', u'tight', u'home', u'lend', u'sector']
[u'labor', u'rais', u'sport', u'rort', u'alleg']
[u'labor', u'seek', u'royal', u'commiss']
[u'labor', u'oppos', u'nuclear', u'dump', u'legisl']
[u'langer', u'like', u'forc', u'test']
[u'langer', u'test']
[u'chang', u'facilit', u'dust', u'diseas', u'damag']
[u'liber', u'candid', u'promis', u'region']
[u'local', u'govt', u'group', u'support', u'rural', u'medicar']
[u'mackay', u'expect', u'melbourn', u'crowd']
[u'makb', u'diva', u'triumph']
[u'makyb', u'diva', u'confirm', u'start']
[u'makyb', u'diva', u'profil']
[u'makyb', u'eas', u'bet', u'ahead']
[u'die', u'cafe', u'shoot', u'south', u'western', u'sydney']
[u'kill', u'injur', u'shoot', u'incid']
[u'market', u'flat', u'fever', u'take', u'hold']
[u'martyn', u'skipper', u'warrior']
[u'mayor', u'question', u'potenti', u'pilbara', u'wast', u'sit']
[u'forecast', u'continu', u'strong', u'hous', u'demand']
[u'melbourn']
[u'militari', u'truck', u'explod', u'south', u'korean', u'tunnel']
[u'forum', u'consid', u'environment', u'manag']
[u'miner', u'start', u'work', u'copper', u'zinc', u'project']
[u'fund', u'seek', u'moruya', u'showground', u'pavilion']
[u'mothbal', u'detent', u'centr', u'cost', u'million']
[u'motorist', u'kill', u'pacif', u'highway', u'collis']
[u'consid', u'prefer', u'swap']
[u'seek', u'time', u'consid', u'anti', u'terror', u'law']
[u'nation', u'criticis', u'absurd', u'irrig', u'jail', u'threat']
[u'nation', u'stop', u'melbourn']
[u'hope', u'pound', u'anim']
[u'scanner', u'offer', u'faster', u'diagnosi']
[u'studi', u'consid', u'eyesight', u'learn', u'problem', u'link']
[u'test', u'citizenship']
[u'visa', u'scheme', u'attract', u'backpack']
[u'date', u'danish', u'royal', u'visit', u'ambassador', u'say']
[u'councillor', u'guilti', u'solicit', u'bribe']
[u'farmer', u'demand', u'improv', u'rail', u'line']
[u'govt', u'releas', u'secret', u'tunnel', u'document']
[u'polic', u'uncov', u'million', u'dollar', u'drug', u'ring']
[u'seek', u'feder', u'fund', u'expand', u'illeg', u'fish']
[u'nuclear', u'dump', u'chang', u'worthless']
[u'price', u'slide', u'forecast', u'warm', u'weather']
[u'omeo', u'meet', u'discuss', u'bushfir', u'experi']
[u'omodei', u'eye', u'return', u'frontbench']
[u'overnight', u'downpour', u'wont', u'huge', u'impact', u'dam']
[u'palm', u'island', u'lose', u'water', u'suppli', u'month']
[u'part', u'tasmania', u'receiv', u'record', u'octob', u'rainfal']
[u'pelous', u'return', u'lead', u'franc', u'australia']
[u'perilya', u'start', u'littl', u'break', u'hill', u'drill']
[u'petrol', u'price', u'hike', u'fuel', u'indonesian', u'inflat']
[u'pilbara', u'town', u'name', u'tidi', u'town', u'finalist']
[u'pluto', u'moon', u'scientist']
[u'polic', u'crack', u'whip', u'melbourn', u'drink']
[u'polic', u'teen', u'knife', u'incid']
[u'polic', u'hunt', u'youth', u'snatch']
[u'polic', u'seek', u'info', u'teen', u'sexual', u'assault']
[u'polic', u'task', u'forc', u'investig', u'fatal', u'cafe', u'shoot']
[u'polic', u'resum', u'search', u'miss', u'tourist']
[u'premier', u'want', u'time', u'anti', u'terror']
[u'marijuana', u'group', u'say', u'driver', u'safer']
[u'public', u'warn', u'loom', u'threat']
[u'public', u'warn', u'follow', u'water', u'ban']
[u'punter', u'enjoy', u'echuca', u'melbourn', u'doubl']
[u'puppi', u'kill', u'sicken', u'polic']
[u'rain', u'mix', u'bless', u'grain', u'grower']
[u'rain', u'offer', u'boost', u'drought', u'crop']
[u'region', u'communiti', u'spirit']
[u'report', u'highlight', u'tourism', u'impact']
[u'resourc', u'industri', u'back', u'push', u'faster', u'approv']
[u'rfds', u'need', u'outback', u'increas']
[u'rocki', u'polic', u'target', u'night', u'time', u'violenc']
[u'plead', u'guilti', u'tasmanian', u'man', u'murder']
[u'road', u'smash', u'leav', u'dead', u'injur']
[u'search', u'miss', u'plane', u'resum']
[u'shire', u'play', u'newman', u'grant', u'rort', u'claim']
[u'shire', u'reflect', u'water', u'suppli', u'saga']
[u'shire', u'worri', u'wast', u'dump', u'plan', u'water', u'impact']
[u'soldier', u'kill', u'roadsid', u'bomb', u'iraq']
[u'skydiv', u'break', u'ankl', u'nagambi', u'accid']
[u'smoke', u'cost', u'wine', u'industri', u'million']
[u'solicitor', u'general', u'urg', u'anti', u'terror', u'chang']
[u'sonni', u'fin', u'drink', u'drive']
[u'south', u'grain', u'crop', u'prove', u'resili']
[u'speed', u'motorcyclist', u'outrun', u'polic']
[u'staff', u'clear', u'bishopscourt', u'handl', u'council']
[u'state', u'territori', u'leader', u'wont', u'meet', u'deadlin']
[u'student', u'hurt', u'footpath', u'mishap']
[u'studi', u'consid', u'indigen', u'educ', u'retent']
[u'survey', u'find', u'toowoomba', u'storm', u'victim']
[u'govt', u'pressur', u'vote', u'betfair']
[u'russian', u'area', u'carri', u'bird']
[u'terror', u'threat', u'warrant', u'law', u'ruddock']
[u'thailand', u'confirm', u'human', u'case', u'bird']
[u'town', u'come', u'grip', u'region', u'airlin']
[u'trader', u'compli', u'slingshot', u'remov']
[u'tremor', u'rock', u'blue', u'mountain']
[u'tripodi', u'reject', u'highway', u'mainten', u'claim']
[u'tshirt', u'match', u'falconio', u'accus', u'court', u'hear']
[u'adopt', u'syria', u'resolut']
[u'reject', u'detaine', u'contact', u'guantanamo']
[u'vassel', u'doubl', u'citi', u'haunt', u'club']
[u'vinni', u'farewel', u'race', u'gutsi', u'eighth']
[u'health', u'disput', u'resolv']
[u'wont', u'anti', u'terror', u'deadlin', u'beatti']
[u'wikipedia', u'print', u'founder', u'say']
[u'wimmera', u'miner', u'want', u'situat']
[u'woman', u'die', u'rid', u'accid']
[u'woodford', u'folk', u'festiv', u'ticket', u'avail']
[u'woomera', u'escap', u'good', u'behaviour', u'bond']
[u'worker', u'heart', u'berri', u'plant', u'futur']
[u'arrest', u'argentina', u'train', u'delay', u'riot']
[u'abattoir', u'reopen', u'januari']
[u'aborigin', u'corpor', u'face', u'anim', u'neglect']
[u'albani', u'waterwork', u'progress']
[u'alcohol', u'rais', u'breast', u'cancer', u'risk', u'studi']
[u'vow', u'watch', u'govt', u'spend', u'hospit']
[u'andrew', u'put', u'faith', u'legal', u'advic']
[u'anger', u'follow', u'govt', u'decis']
[u'anti', u'terror', u'law', u'threaten', u'asio', u'bungl', u'report']
[u'asio', u'warn', u'home', u'grow', u'terror', u'threat']
[u'kill', u'kashmir', u'blast', u'report']
[u'auction', u'show', u'canberra', u'properti']
[u'australia', u'thrash', u'french', u'barbarian']
[u'backpack', u'visa', u'extens', u'welcom']
[u'balconi', u'collaps', u'tunnel', u'hole']
[u'basslink', u'oppon', u'consid', u'project', u'cost']
[u'bird', u'poison', u'cane', u'toad', u'author']
[u'blake', u'play', u'adelaid']
[u'blast', u'affect', u'peac', u'talk', u'pakistan']
[u'blunkett', u'resign', u'british', u'polit']
[u'bogut', u'find', u'feet', u'debut']
[u'bogut', u'find', u'feet']
[u'booni', u'honour', u'cricket', u'work']
[u'brack', u'face', u'intern', u'stoush', u'econom']
[u'brack', u'join', u'anti', u'terror', u'backer']
[u'build', u'approv', u'surg']
[u'bundaberg', u'ask', u'mental', u'health', u'servic']
[u'busi', u'expect', u'econom', u'growth']
[u'bypass', u'beazley', u'terror', u'law', u'unintent']
[u'cabinet', u'meet', u'kiama', u'communiti', u'chanc']
[u'perman', u'suicid', u'coroni', u'inquiri']
[u'canola', u'contamin', u'trace', u'trial']
[u'bomb', u'kill', u'kashmir']
[u'chines', u'coal', u'leak', u'kill']
[u'colleg', u'moot', u'centr', u'region', u'food']
[u'combin', u'drug', u'doubl', u'bird', u'antivir']
[u'commit', u'glori', u'readi', u'leagu', u'leader']
[u'construct', u'firm', u'apologis', u'build', u'teeter']
[u'coron', u'report', u'fisherman', u'death']
[u'corrupt', u'flag', u'threaten', u'fish', u'stock', u'studi']
[u'council', u'keen', u'introduc', u'recycl', u'program']
[u'court', u'ask', u'rethink', u'tyne', u'murder', u'sentenc']
[u'curtin', u'murdoch', u'univers', u'rule', u'merger']
[u'dani', u'busi', u'beti', u'beat', u'chelsea']
[u'defenc', u'make', u'payment', u'injur', u'iraqi']
[u'defenc', u'minist', u'posit', u'secur']
[u'develop', u'group', u'defend', u'link', u'china']
[u'dont', u'write', u'warn', u'dizzi']
[u'draft', u'land', u'polici', u'fair', u'question']
[u'drill', u'turn', u'signific', u'gold', u'silver', u'deposit']
[u'drug', u'dealer', u'appeal', u'sentenc', u'nurs']
[u'east', u'german', u'dope', u'court', u'case', u'begin']
[u'educ', u'dept', u'resolv', u'umbakumba', u'school']
[u'charg', u'drug', u'raid']
[u'face', u'court', u'drug', u'smuggl', u'claim']
[u'investig', u'coal', u'contamin', u'spill']
[u'error', u'forc', u'westpac', u'reschedul', u'result', u'releas']
[u'essenti', u'nuclear', u'dump', u'law', u'pass', u'hurdl']
[u'control', u'gaza', u'egypt', u'border', u'cross']
[u'retir', u'diva', u'rake', u'million']
[u'exmouth', u'plead', u'guilti', u'shoot']
[u'explor', u'compani', u'sink', u'coast']
[u'explos', u'near', u'british', u'offic', u'tehran']
[u'farmer', u'expect', u'invest', u'meander']
[u'fatal', u'crash', u'renew', u'call', u'highway', u'upgrad']
[u'fear', u'goldfield', u'job', u'disappear']
[u'fear', u'hold', u'miss', u'angler']
[u'kill', u'ethiopia', u'protest', u'medic', u'sourc']
[u'flinder', u'rang', u'take', u'rural', u'doctor', u'award']
[u'forest', u'safeti', u'burn', u'start']
[u'british', u'race', u'board', u'chief', u'warn']
[u'model', u'plead', u'guilti', u'properti', u'charg']
[u'french', u'urg', u'calm', u'pari', u'riot']
[u'futur', u'region', u'road', u'need', u'scrutini']
[u'golf', u'club', u'request', u'kangaroo', u'cull', u'reject']
[u'govt', u'accus', u'stall', u'tunnel', u'document']
[u'govt', u'announc', u'truck', u'code', u'conduct']
[u'govt', u'consid', u'benalla', u'emerg', u'servic']
[u'govt', u'consid', u'longer', u'wait', u'provision', u'driver']
[u'govt', u'mull', u'trade', u'sanction', u'combat', u'illeg']
[u'govt', u'secur', u'state', u'agreement', u'anti']
[u'govt', u'mothbal', u'detent', u'centr']
[u'govt', u'urg', u'calcium', u'tablet']
[u'govt', u'vow', u'speed', u'shire', u'water', u'storag']
[u'green', u'group', u'fear', u'wast', u'dump', u'size']
[u'green', u'group', u'worri', u'lower', u'standard']
[u'green', u'want', u'weddin', u'council', u'stop', u'gold']
[u'group', u'deni', u'respons', u'india', u'bomb', u'attack']
[u'heat', u'harsh', u'terrain', u'hinder', u'search', u'miss']
[u'heavi', u'rain', u'south', u'coast', u'river']
[u'high', u'number', u'cancer', u'obes', u'studi']
[u'hop', u'caravan', u'park', u'studi', u'improv', u'safeti']
[u'hous', u'intrud', u'kill', u'break']
[u'howard', u'secur', u'approv', u'terror', u'law']
[u'husband', u'tell', u'inquest', u'health', u'failur']
[u'hussey', u'feel', u'pressur', u'ahead', u'test', u'debut']
[u'iemma', u'flag', u'compens', u'unit', u'block', u'resid']
[u'injuri', u'strike', u'uruguayan', u'keeper']
[u'rate', u'decis', u'dollar', u'slide']
[u'intern', u'save', u'death', u'aussi']
[u'intrud', u'custodi', u'dead', u'home', u'invas']
[u'investig', u'falconio', u'evid']
[u'iraq', u'shoot', u'inquiri', u'clear', u'troop']
[u'head', u'parliament']
[u'chang', u'reveal']
[u'isra', u'strike', u'kill', u'gaza', u'milit']
[u'japan', u'inspect', u'meat', u'process', u'plant', u'amid']
[u'jone', u'impress', u'young', u'wallabi']
[u'kaleidoscop', u'play', u'high', u'child', u'death', u'rate']
[u'kyneton', u'expect', u'draw', u'good', u'crowd']
[u'labor', u'outrag', u'govt', u'tabl']
[u'lappin', u'stay', u'blue']
[u'lawyer', u'protest', u'guantanamo', u'detent']
[u'leader', u'support', u'anti', u'terror', u'propos']
[u'learn', u'centr', u'face', u'uncertain', u'futur']
[u'lightn', u'rob', u'farmer', u'cow']
[u'local', u'booki', u'doesnt', u'rate', u'diva', u'champion']
[u'local', u'want', u'plan', u'drought']
[u'local', u'celebr', u'winner']
[u'macgil', u'drop', u'west', u'indi', u'test']
[u'macgil', u'play', u'bracken', u'australia']
[u'main', u'road', u'tender', u'call']
[u'makyb', u'begin', u'life', u'retir']
[u'face', u'murder', u'life', u'sentenc', u'sack', u'lawyer']
[u'injur', u'rescu', u'elder', u'mother', u'hous']
[u'jail', u'break', u'aniston', u'home']
[u'manslaught', u'charg', u'follow', u'fatal', u'drag', u'race']
[u'man', u'melbourn', u'frivol', u'polic', u'rescu']
[u'mayor', u'face', u'briberi', u'charg', u'elect', u'promis']
[u'memori', u'servic', u'honour', u'london', u'bomb', u'victim']
[u'mental', u'health', u'issu', u'come', u'region']
[u'minist', u'stand', u'firm', u'back', u'renegad', u'joyc']
[u'local', u'pear', u'spark', u'concern']
[u'prepar', u'debat', u'polic', u'power', u'terrorist']
[u'push', u'faster', u'asbesto', u'victim', u'compo']
[u'mules', u'code', u'bring', u'mix', u'respons']
[u'multi', u'million', u'dollar', u'health', u'centr', u'look']
[u'welcom', u'backpack', u'visa']
[u'plan', u'children', u'ward', u'campbelltown']
[u'north', u'south', u'korea', u'compet', u'team', u'olymp']
[u'sign', u'miss', u'deep', u'fishermen']
[u'opposit', u'anger', u'govt', u'introduc', u'workplac']
[u'opposit', u'maintain', u'push', u'royal', u'commiss']
[u'oscar', u'honour', u'screen', u'great', u'olivia', u'havilland']
[u'paedophil', u'doctor', u'lose', u'lesser', u'sentenc']
[u'pastoralist', u'seek', u'singl', u'author']
[u'pickett', u'happi', u'demon']
[u'pigeon', u'remov', u'work']
[u'pilot', u'cite', u'accid', u'fatigu', u'claim']
[u'demand', u'legisl', u'thwart', u'terrorist', u'attack']
[u'exclud', u'anti', u'terror', u'talk']
[u'warn', u'specif', u'terror', u'threat']
[u'polic', u'communiti', u'mourn', u'respect', u'member']
[u'polic', u'confirm', u'woman', u'miss', u'tourist']
[u'polic', u'deal', u'melbourn', u'drunken', u'fight']
[u'polic', u'examin', u'babi', u'death']
[u'polic', u'troubl', u'patrol', u'pick']
[u'polic', u'charg', u'june', u'murder']
[u'polic', u'arrest', u'theft', u'oper']
[u'polic', u'probe', u'bega', u'hous']
[u'polic', u'seek', u'inform', u'burn', u'luxuri']
[u'port', u'worker', u'secur', u'train', u'boost']
[u'premier', u'closer', u'agreement', u'anti']
[u'princ', u'charl', u'camilla', u'launch', u'tour']
[u'princ', u'name', u'replac', u'john']
[u'highlight', u'grow', u'prison', u'popul']
[u'opposit', u'question', u'benefit', u'colleg']
[u'ravin', u'fall', u'woman', u'think', u'miss', u'tourist']
[u'leav', u'rat', u'hold']
[u'cross', u'help', u'suppli', u'water', u'palm']
[u'refuge', u'thank', u'howard', u'come', u'releas']
[u'region', u'airport', u'prepar', u'oper']
[u'region', u'victoria', u'soon', u'know', u'median', u'hous', u'price']
[u'report', u'buoy', u'resid', u'pool', u'hop']
[u'report', u'probe', u'content', u'bush', u'pocket']
[u'resolut', u'plan', u'issu', u'acceler', u'kangaroo']
[u'rocket', u'fail', u'grind', u'chopper']
[u'rock', u'lobster', u'pioneer', u'leav', u'industri']
[u'rowdi', u'session', u'greet', u'law']
[u'rural', u'worker', u'shortag', u'hamper', u'processor']
[u'search', u'begin', u'miss', u'elder']
[u'call', u'cyclon', u'season', u'readi']
[u'singaporean', u'protest', u'nguyen', u'execut']
[u'solomona', u'hand', u'match']
[u'spywear', u'stare', u'window', u'shopper']
[u'stanhop', u'call', u'releas', u'legal', u'advic']
[u'state', u'govern', u'work', u'truck', u'safeti']
[u'sign', u'miss', u'camper']
[u'stoner', u'predict', u'power', u'shortag', u'summer']
[u'stosur', u'beat', u'philadelphia']
[u'substat', u'fire', u'damag', u'remain', u'unknown']
[u'supermarket', u'reject', u'suprem', u'court']
[u'swimmer', u'warn', u'advantag', u'stinger', u'net']
[u'sydney', u'apart', u'block', u'dangl', u'massiv', u'hole']
[u'sydney', u'resid', u'evacu', u'build', u'collaps']
[u'syria', u'defiant', u'vow', u'cooper']
[u'tassi', u'taxi', u'trip', u'cost']
[u'tebbutt', u'reject', u'cut', u'plan', u'special', u'need']
[u'teen', u'charg', u'year', u'old', u'rape']
[u'teen', u'hospit', u'footpath', u'crash']
[u'terror', u'chang', u'thwart', u'possibl', u'threat']
[u'terrorist', u'threat', u'time', u'coincid']
[u'thoma', u'lead', u'wale', u'zealand']
[u'kill', u'hour', u'road']
[u'toad', u'egg', u'prove', u'fatal', u'bird']
[u'toxic', u'wast', u'committe', u'undet', u'quarantin', u'yard']
[u'tradit', u'owner', u'regain', u'island']
[u'train', u'boss', u'highlight', u'process', u'plant', u'benefit']
[u'transport', u'dept', u'bungl', u'prompt', u'fake', u'alert']
[u'tunnel', u'builder', u'reassur', u'sydney', u'resid', u'hole']
[u'tunnel', u'collaps', u'sydney']
[u'marin', u'kill', u'iraq', u'helicopt', u'crash']
[u'typhoon', u'rain', u'kill', u'vietnam']
[u'look', u'sustain', u'boost', u'north']
[u'union', u'say', u'foreign', u'apprentic', u'good']
[u'union', u'promis', u'fight', u'law']
[u'declin', u'request', u'inform']
[u'rat', u'rise']
[u'market', u'fall', u'rate', u'rise']
[u'order', u'buoy', u'tasmanian', u'compani']
[u'say', u'helicopt', u'fire', u'pakistan']
[u'senat', u'hold', u'close', u'session', u'iraq']
[u'stand', u'guantanamo', u'detaine']
[u'unveil', u'avian', u'defenc', u'plan']
[u'vail', u'undergo', u'skin', u'cancer', u'surgeri']
[u'push', u'rat', u'video', u'game']
[u'wallabi', u'tour', u'springboard', u'futur']
[u'water', u'flemington', u'fair', u'manag']
[u'westpac', u'reveal', u'record', u'profit']
[u'wheat', u'watchdog', u'claim', u'knowledg', u'scandal']
[u'winemak', u'welcom', u'research', u'smoke', u'effect']
[u'winter', u'game', u'team', u'biggest']
[u'woden', u'get', u'polic', u'station']
[u'woman', u'face', u'court', u'statewid', u'drug', u'blitz']
[u'workshop', u'aim', u'bring', u'young', u'peopl', u'polit']
[u'grandstand', u'speak', u'ricki', u'pont', u'corey']
[u'agarkar', u'set', u'seri', u'lanka']
[u'agforc', u'secur', u'fund', u'school']
[u'search', u'fishermen', u'call']
[u'forc', u'recruit', u'train', u'wagga']
[u'albani', u'grain', u'harvest', u'gear']
[u'qaeda', u'prison', u'escap', u'detail', u'court', u'martial']
[u'qaeda', u'suspect', u'captur', u'battl']
[u'amnesti', u'hold', u'vigil', u'nguyen']
[u'anderson', u'warn', u'water', u'initi', u'stall']
[u'andrew', u'dismiss', u'court', u'challeng', u'plan']
[u'anglo', u'coal', u'build', u'live', u'quarter']
[u'antivir', u'stockpil', u'bird', u'prepar']
[u'atapattu', u'lead', u'lanka', u'reviv']
[u'aust', u'japan', u'free', u'trade', u'talk', u'begin']
[u'australia', u'bat', u'gabba']
[u'australia', u'take', u'sheep', u'trial', u'holi', u'grail']
[u'australia', u'west', u'indi', u'seri', u'begin', u'perfect']
[u'fear', u'prompt', u'public', u'servic', u'lobbi']
[u'awb', u'iraq', u'contract', u'govt', u'approv', u'labor']
[u'bashir', u'exclud', u'sentenc', u'cut']
[u'bemax', u'build', u'powerlin', u'gingko', u'deposit']
[u'biosecur', u'reject', u'time', u'problem', u'risk']
[u'bird', u'threat', u'asian', u'growth', u'world', u'bank']
[u'blair', u'retreat', u'british', u'anti', u'terror']
[u'blair', u'wannab', u'rock', u'past', u'expos']
[u'bodi', u'miss', u'woman']
[u'broadbent', u'sell', u'govt', u'chang']
[u'build', u'industri', u'warn', u'rate', u'rise']
[u'bundaberg', u'ralli', u'govt', u'mental', u'health', u'servic']
[u'ongo', u'financi', u'assist', u'despit']
[u'china', u'ban', u'poultri', u'import', u'combat', u'bird']
[u'coalit', u'forc', u'chang', u'terror']
[u'coal', u'miner', u'consid', u'industri', u'action']
[u'collector', u'seal', u'deal', u'holi', u'grail', u'stampdom']
[u'commentari', u'highlight']
[u'cooper', u'readi', u'lose', u'time']
[u'cotton', u'grower', u'punt', u'increas', u'water']
[u'councillor', u'allow', u'mayor', u'skip', u'meet']
[u'councillor', u'target', u'public', u'galleri', u'boister']
[u'council', u'concern', u'slow', u'pace', u'highway']
[u'council', u'fund', u'environment', u'manag', u'plan']
[u'counter', u'terror', u'law', u'chang']
[u'countri', u'energi', u'check', u'powerlin', u'summer']
[u'coventri', u'swim', u'sydney', u'world', u'meet']
[u'cunningham', u'condemn', u'law']
[u'death', u'aussi', u'need', u'howard', u'help', u'amnesti']
[u'defenc', u'project', u'seek', u'newcastl', u'industri', u'input']
[u'demand', u'region', u'uni', u'drop']
[u'test', u'falconio', u'gearstick', u'inconclus']
[u'phone', u'list', u'shelv']
[u'downer', u'urg', u'pressur', u'zimbabw']
[u'elvi', u'costello', u'headlin', u'best', u'sydney', u'festiv']
[u'ethanol', u'explos', u'inquest', u'hear', u'wit']
[u'trade', u'offer', u'chanc', u'rebal', u'talk']
[u'farmer', u'claim', u'peta', u'bluff', u'mules', u'case']
[u'farmer', u'fear', u'firewe', u'danger']
[u'announc', u'award', u'honour', u'warren']
[u'ravag', u'tourist', u'attract', u'demolish']
[u'fisher', u'upset', u'wildcat', u'commit']
[u'fli', u'doctor', u'pilot', u'disput']
[u'forc', u'fault', u'fatal', u'shoot', u'polic']
[u'saddam', u'offic', u'focus', u'recuit', u'drive']
[u'freedman', u'dream', u'carniv', u'continu', u'oak']
[u'french', u'youth', u'riot', u'seventh', u'night']
[u'goldfield', u'council', u'commend', u'indigen', u'employ']
[u'govt', u'accus', u'buck', u'pass', u'weir', u'mainten']
[u'govt', u'plan', u'bruce', u'highway', u'upgrad']
[u'govt', u'reject', u'plea', u'save', u'nguyen']
[u'govt', u'stanc', u'season', u'pacif', u'worker']
[u'govt', u'assess', u'review', u'north', u'west', u'salt']
[u'govt', u'unveil', u'afford', u'hous', u'project']
[u'govt', u'urg', u'increas', u'effort', u'curb', u'road', u'toll']
[u'govt', u'vow', u'consult', u'decid', u'toxic']
[u'green', u'urg', u'toler', u'contamin']
[u'green', u'zone', u'scrap', u'land', u'releas']
[u'gregan', u'rugbi', u'cap', u'player']
[u'grind', u'search', u'begin', u'miss', u'walker']
[u'group', u'push', u'chang', u'welfar', u'work', u'plan']
[u'growth', u'continu', u'slow', u'servic', u'sector']
[u'hayden', u'go', u'half', u'pont']
[u'health', u'author', u'fight', u'south', u'east', u'smoke', u'rat']
[u'heat', u'debat', u'see', u'eject']
[u'heritag', u'hold', u'cut', u'manag']
[u'highway', u'upgrad', u'respons', u'road', u'closur']
[u'hockeyroo', u'search', u'harder', u'edg', u'beat', u'kiwi']
[u'home', u'invas', u'accus', u'move', u'secur', u'ward']
[u'howard', u'reject', u'terror', u'threat', u'conspiraci', u'claim']
[u'add', u'weight', u'secret', u'prison', u'claim']
[u'huge', u'crowd', u'expect', u'oak']
[u'hussey', u'go', u'test', u'debut']
[u'injur', u'keeper', u'name', u'uruguay', u'squad']
[u'injur', u'worker', u'access', u'extra', u'benefit']
[u'iran', u'allow', u'inspector', u'militari', u'complex']
[u'isra', u'palestinian', u'clash', u'flare', u'jenin']
[u'japan', u'north', u'korea', u'talk', u'focus', u'abduct']
[u'joyc', u'defend', u'kelli', u'support']
[u'kangaroo', u'trio', u'doubt', u'clash']
[u'kean', u'call', u'januari', u'clear']
[u'nation', u'anti', u'terror', u'bodi', u'activ']
[u'king', u'good', u'wildcat']
[u'knight', u'clash', u'match', u'say', u'jet', u'coach']
[u'labor', u'fear', u'bush', u'suffer', u'impact', u'chang']
[u'labor', u'focus', u'dismiss', u'power', u'debat']
[u'langer', u'captain', u'young', u'prime', u'minist']
[u'expert', u'want', u'trawl', u'fish', u'moratorium']
[u'livestock', u'buyer', u'confid', u'live', u'sheep', u'export']
[u'mackay', u'jail', u'molest', u'daughter']
[u'admit', u'possess', u'child', u'porn']
[u'arrest', u'forb', u'death']
[u'charg', u'flee']
[u'busi', u'celebr', u'work', u'collect', u'pool']
[u'woe', u'continu', u'champion', u'loss']
[u'mayor', u'reassur', u'resid', u'tunnel', u'subsid']
[u'mayor', u'urg', u'stand', u'briberi', u'case']
[u'media', u'tech', u'stock', u'boost', u'market']
[u'miller', u'confid', u'adelaid', u'clash']
[u'uproar', u'legisl']
[u'confid', u'worker', u'welcom', u'chang']
[u'seek', u'answer', u'traffic', u'black', u'spot', u'replac']
[u'boost', u'john', u'tong', u'workload']
[u'news', u'corp', u'buy', u'properti', u'websit']
[u'timor', u'prospect', u'santo']
[u'compens', u'dope', u'victim', u'lagat']
[u'noosa', u'triathlet', u'survey', u'satisfact']
[u'polic', u'sack', u'corps', u'photo', u'leak']
[u'north', u'coast', u'council', u'suffer', u'fund', u'cutback']
[u'council', u'reconsid', u'holiday', u'rental', u'law']
[u'govt', u'challeng', u'law']
[u'teacher', u'condemn', u'cut', u'special', u'class']
[u'nurs', u'band', u'law']
[u'food', u'scandal', u'threaten', u'singl', u'desk', u'wheat']
[u'opposit', u'question', u'medicar', u'cut']
[u'pair', u'guilti', u'cain', u'murder']
[u'pakistan', u'quak', u'toll', u'leap', u'past']
[u'park', u'council', u'knock', u'chemic', u'process']
[u'park', u'servic', u'confid', u'island', u'upgrad', u'wont', u'affect']
[u'rise', u'sweet', u'news', u'chocol', u'factori']
[u'petrol', u'price', u'dispar', u'citi', u'countri']
[u'pinochet', u'psycholog', u'test', u'suspend']
[u'give', u'grind', u'anti', u'terror', u'law']
[u'gold', u'resum', u'oper']
[u'polic', u'hold', u'station', u'plan']
[u'polic', u'investig', u'alleg', u'abduct']
[u'polic', u'investig', u'latest', u'attack', u'homeless']
[u'polic', u'seek', u'assist', u'search', u'boat', u'thiev']
[u'polic', u'seek', u'help', u'solv', u'highway', u'death']
[u'polic', u'step', u'speed', u'camera']
[u'pont', u'fall']
[u'pont', u'forg']
[u'pont', u'hayden', u'rebuild', u'loss', u'hussey']
[u'pont', u'hayden', u'australia', u'lunch']
[u'pont', u'star', u'gabba']
[u'port', u'stephen', u'council', u'bring', u'budget', u'surplus']
[u'possibl', u'sydney', u'melbourn', u'attack', u'prompt', u'law']
[u'postal', u'ballot', u'rout', u'local', u'govt', u'elect']
[u'launch', u'young', u'driver', u'propos', u'cairn']
[u'raaf', u'base', u'expans', u'report', u'tabl']
[u'rain', u'bring', u'relief', u'drought', u'declar']
[u'rayner', u'court', u'corrupt', u'charg']
[u'record', u'birth', u'number', u'forc', u'hospit', u'employ']
[u'region', u'petrol', u'price', u'hit', u'time', u'high']
[u'replica', u'robberi', u'suspect', u'plead', u'guilti']
[u'resid', u'concern', u'plan', u'chang', u'firebreak']
[u'resid', u'face', u'anxious', u'wait', u'return', u'home']
[u'resid', u'face', u'wait', u'tunnel', u'subsid']
[u'resid', u'access', u'teeter', u'build']
[u'resid', u'voic', u'fuel', u'price', u'concern', u'public']
[u'retail', u'trade', u'figur', u'wors', u'expect']
[u'retrial', u'deni', u'lade', u'aid']
[u'rosberg', u'name', u'webber', u'team', u'mate']
[u'rule', u'reserv', u'elder', u'abus', u'sentenc']
[u'art', u'student', u'take', u'bonner', u'scholarship']
[u'schooli', u'urg', u'stick']
[u'scientist', u'detect', u'massiv', u'black', u'hole']
[u'scud', u'grant', u'auckland', u'wildcard']
[u'search', u'fishermen']
[u'search', u'step', u'miss', u'fishermen']
[u'search', u'miss', u'coast']
[u'season', u'worker', u'drink']
[u'educ', u'booklet']
[u'offend', u'releas', u'bail']
[u'shoalhaven', u'implement', u'grandpar', u'support', u'program']
[u'singapor', u'reject', u'nguyen', u'clemenc', u'appeal']
[u'smoker', u'warn', u'emphysema', u'risk']
[u'south', u'west', u'rock', u'consid', u'develop', u'plan']
[u'storm', u'bring', u'relief', u'night']
[u'storm', u'continu', u'batter']
[u'strong', u'public', u'respons', u'propos', u'cabl', u'beach']
[u'student', u'union', u'disappoint', u'uni', u'merger', u'rule']
[u'subarus', u'withdraw', u'strike', u'heart', u'ralli']
[u'suicid', u'inquest', u'mental', u'health']
[u'summit', u'front', u'uranium', u'inquiri', u'develop']
[u'sunshin', u'coast', u'build', u'approv', u'rat', u'surg']
[u'sunshin', u'coast', u'urg', u'learn', u'byron', u'problem']
[u'supermarket', u'develop', u'readi', u'court']
[u'support', u'camp', u'school', u'open']
[u'support', u'mount', u'high', u'court', u'challeng']
[u'swimmer', u'drop', u'hillari', u'water', u'qualiti', u'health', u'dept']
[u'sydney', u'auction', u'fund', u'pool', u'remot']
[u'syria', u'pardon', u'polit', u'prison']
[u'approv', u'betfair', u'deal']
[u'go', u'ahead', u'betfair', u'licens']
[u'tasmania', u'deni', u'betfair', u'deal', u'damag', u'race']
[u'teacher', u'demand', u'break', u'alcohol', u'ban']
[u'teacher', u'prepar', u'strike', u'travel']
[u'temporari', u'accommod', u'eas', u'youth', u'detent']
[u'tent', u'embassi', u'knock', u'heritag', u'list']
[u'terror', u'threat', u'prompt', u'urgent', u'amend', u'gilmor']
[u'thackray', u'test', u'debut', u'australia']
[u'thompson', u'focus', u'victori']
[u'thousand', u'honour', u'right', u'activist', u'rosa', u'park']
[u'thousand', u'turn', u'kyneton', u'race']
[u'toowoomba', u'compani', u'secur', u'energi', u'contract']
[u'bureaucrat', u'flag', u'anti', u'terror', u'job']
[u'tourism', u'campaign', u'identifi', u'emerg', u'market']
[u'tradit', u'owner', u'urg', u'reject', u'nuclear', u'dump']
[u'traffic', u'nois', u'turn', u'bird', u'soprano']
[u'truck', u'tractor', u'market', u'slump']
[u'trucki', u'rise', u'consid', u'good', u'start']
[u'tunnel', u'collaps', u'need', u'independ', u'inquiri']
[u'unauthoris', u'tree', u'mark', u'slow', u'log', u'process']
[u'union', u'defend', u'polic', u'extinguish', u'subdu']
[u'host', u'bird', u'inform', u'night']
[u'brush', u'secret', u'prison', u'report']
[u'season', u'shorten', u'help', u'australia']
[u'troop', u'accus', u'rape', u'philippin']
[u'vail', u'recov', u'skin', u'cancer', u'surgeri']
[u'get', u'bail', u'overdos', u'death', u'charg']
[u'volcano', u'help', u'maintain', u'ocean', u'level']
[u'weak', u'retail', u'figur', u'spark', u'christma', u'worri']
[u'wellb', u'studi', u'mark', u'research', u'institut']
[u'wentworth', u'race', u'track', u'futur', u'safe', u'say', u'countri']
[u'westpac', u'mine', u'stock', u'lift']
[u'wind', u'farm', u'submiss', u'point', u'communiti', u'support']
[u'wood', u'urg', u'fund', u'halt', u'brain', u'drain']
[u'worker', u'hole']
[u'world', u'largest', u'open']
[u'world', u'respons', u'bird', u'threat', u'schedul']
[u'announc', u'mildura', u'school', u'facil']
[u'charg', u'drug', u'offenc']
[u'drown', u'pakistan', u'ferri', u'sink']
[u'backflip', u'collect', u'workplac', u'contract']
[u'accc', u'look', u'green', u'takeov']
[u'ambul', u'station', u'heart', u'equip']
[u'andrew', u'expect', u'joyc', u'law']
[u'anglican', u'church', u'compens', u'offer', u'abus']
[u'anti', u'govern', u'unrest', u'continu', u'ethiopia']
[u'appeal', u'gang', u'rapist', u'sentenc', u'dismiss']
[u'architect', u'enlist', u'pool', u'develop']
[u'armidal', u'top', u'state', u'illeg', u'build', u'work']
[u'auction', u'success', u'help', u'indigen', u'communiti']
[u'artefact', u'safe', u'tallowah', u'rise']
[u'australia']
[u'bass', u'coast', u'rank', u'high', u'illeg', u'build', u'activ']
[u'betfair', u'stop', u'welfar', u'group']
[u'infrastructur', u'revamp', u'store', u'mechan']
[u'bird', u'fear', u'prompt', u'concern', u'local', u'duck']
[u'birney', u'engag', u'boost', u'polit', u'allur', u'expert']
[u'bjelk', u'petersen', u'win', u'parti', u'preselect']
[u'blaze', u'engulf', u'mile', u'creek', u'home']
[u'blue', u'beat', u'warrior', u'waca']
[u'bluescop', u'plung', u'keep', u'market', u'flat']
[u'bluescop', u'share', u'plung', u'profit', u'warn']
[u'blue', u'warrior', u'massiv', u'target']
[u'botmast', u'arrest', u'spam', u'network']
[u'escap', u'abduct', u'attempt']
[u'brack', u'urg', u'commonwealth', u'support', u'school']
[u'bull', u'redback', u'victori']
[u'bush', u'honour', u'muhammad', u'golden', u'bear']
[u'cairn', u'hospit', u'worker', u'strike']
[u'caldecott', u'miss', u'dakar', u'ralli']
[u'carnivor', u'lizard', u'set', u'toddler', u'toilet']
[u'carr', u'unawar', u'tunnel', u'document', u'leak', u'alleg']
[u'cartoon', u'geek', u'plan', u'costum', u'foray', u'space']
[u'burn', u'sicken', u'author']
[u'chelsea', u'aim', u'usurp']
[u'children', u'hospit', u'ask', u'suspend', u'tube', u'feed']
[u'china', u'find', u'fresh', u'bird', u'outbreak']
[u'china', u'link', u'bird', u'outbreak', u'migratori', u'bird']
[u'citi', u'countri', u'fuel', u'price', u'divid', u'reach', u'high']
[u'cityrail', u'close', u'public', u'timet', u'chang']
[u'coffe', u'varianc', u'brew', u'caffein', u'overdos']
[u'commentari', u'highlight', u'gabba']
[u'concern', u'grow', u'chines', u'hunger', u'striker']
[u'cosgrov', u'star', u'redback', u'roll', u'bull']
[u'council', u'bungl', u'delay', u'sawtel', u'develop']
[u'council', u'clock', u'tackl', u'talker', u'councillor']
[u'councillor', u'accus', u'code', u'conduct', u'breach']
[u'councillor', u'reflect', u'shire', u'tension']
[u'council', u'plead', u'govt', u'free', u'age', u'care', u'site']
[u'council', u'welcom', u'youth', u'detent', u'centr']
[u'crowd', u'behaviour', u'deterior', u'oak']
[u'daylight', u'save', u'oppon', u'fight']
[u'debnam', u'target', u'govt', u'leak', u'document']
[u'list', u'mclaren', u'blue']
[u'derbi', u'get', u'rescu', u'boat']
[u'design', u'submit', u'thurgoona', u'librari']
[u'doctor', u'beatti', u'isol', u'incent', u'appli']
[u'dodgi', u'build', u'work', u'worri', u'council']
[u'ask', u'probe', u'crash', u'victim', u'dead', u'drug']
[u'appeal', u'teen', u'drink', u'drive', u'sentenc']
[u'driver', u'caution', u'urg', u'nation', u'park', u'fire']
[u'drought', u'assist', u'deadlin', u'near']
[u'duke', u'tune', u'uefa', u'goal']
[u'elli', u'surgeri']
[u'eurobodalla', u'lose', u'tourist', u'make', u'money']
[u'england', u'star', u'collymor', u'fin', u'cairn']
[u'expect', u'unexpect', u'terror', u'confer', u'tell']
[u'extra', u'cost', u'power', u'station', u'pipelin', u'connect']
[u'famili', u'clash', u'crash', u'death', u'sentenc']
[u'farmer', u'face', u'locust', u'threat']
[u'farmer', u'urg', u'earli', u'spray', u'locust']
[u'farm', u'group', u'question', u'timber', u'plantat', u'approv']
[u'farm', u'suppli', u'firm', u'happier', u'harvest', u'prospect']
[u'fear', u'futur', u'grey', u'nurs', u'shark']
[u'film', u'maker', u'scour', u'western', u'farm', u'doco', u'star']
[u'firewe', u'fear', u'spur', u'govt', u'talk']
[u'fish', u'stock', u'drop', u'great', u'sandi', u'strait']
[u'fitzroy', u'shire', u'readi', u'popul', u'boost']
[u'flood', u'close', u'cataract', u'gorg', u'basin', u'pool']
[u'forb', u'charg', u'murder']
[u'foreign', u'lawyer', u'anti', u'terror', u'concern']
[u'japan', u'striker', u'miura', u'join', u'sydney']
[u'offer', u'messeng', u'posit']
[u'legionnair', u'case', u'investig']
[u'fungus', u'threaten', u'wild', u'wollemi', u'pin']
[u'futur', u'unclear', u'csiro', u'griffith', u'job']
[u'target', u'wont', u'affect', u'alumina', u'refineri', u'locat']
[u'genet', u'discrimin', u'probe', u'scrutinis']
[u'gibb', u'river', u'clean', u'start']
[u'glenn', u'mcgrath', u'reflect', u'gabba', u'test']
[u'cart', u'ride', u'game', u'say', u'court']
[u'govt', u'alarm', u'lockyer', u'farm', u'exodus']
[u'govt', u'face', u'critic', u'cross', u'citi', u'tunnel']
[u'govt', u'fund', u'wagga', u'hospit', u'upgrad']
[u'govt', u'make', u'throw', u'dice', u'boe', u'disput']
[u'govt', u'propos', u'public', u'privat', u'partnership']
[u'govt', u'consid', u'law', u'joyc', u'concern']
[u'govt', u'urg', u'deliv', u'rural', u'exhibit', u'centr', u'fund']
[u'greenpeac', u'apologis', u'reef', u'damag']
[u'hammer', u'spend', u'strengthen', u'squad']
[u'health', u'whistleblow', u'hefti', u'cost', u'confirm']
[u'high', u'tech', u'boost', u'south', u'east', u'tafe', u'student']
[u'histor', u'ironwork', u'protect', u'heritag', u'offic']
[u'hopper', u'number', u'build']
[u'howard', u'hold', u'hope', u'death', u'aussi']
[u'indonesia', u'angri', u'silenc', u'qaeda', u'escape']
[u'inform', u'suggest', u'possibl', u'indonesia', u'terrorist']
[u'insurg', u'kill', u'iraqi', u'checkpoint', u'attack']
[u'discourag', u'agreement', u'make', u'academ']
[u'law', u'worker', u'digest', u'church']
[u'law', u'americanis', u'work', u'forc', u'beazley']
[u'jet', u'wari', u'knight', u'danger', u'game']
[u'joyc', u'deni', u'row', u'team']
[u'judg', u'urg', u'mediat', u'case']
[u'juvenil', u'justic', u'centr', u'upgrad']
[u'kangaroo', u'readi', u'desper', u'great', u'britain']
[u'koski', u'beat', u'longernong', u'futur']
[u'launceston', u'host', u'forest', u'contractor', u'talk']
[u'lawyer', u'anticip', u'terror', u'law', u'affect']
[u'legal', u'victori', u'merck']
[u'lennon', u'stop', u'race', u'board', u'regul', u'betfair']
[u'littl', u'public', u'show', u'foreshor', u'plan']
[u'local', u'govt', u'futur', u'spotlight']
[u'luxuri', u'liner', u'herald', u'twofold', u'tourist', u'influx']
[u'mackay', u'obstetrician', u'face', u'overload']
[u'acquit', u'signific', u'peopl', u'smuggl', u'case']
[u'admit', u'murder', u'mother']
[u'court', u'accus', u'partner', u'assault']
[u'sue', u'glue', u'prank']
[u'face', u'court', u'attempt', u'teen', u'assault']
[u'massiv', u'delay', u'pacif', u'highway', u'work', u'nrma']
[u'mcclaren', u'hail', u'viduka', u'doubl']
[u'mcgrath', u'put', u'windi', u'rope']
[u'medic', u'assoc', u'back', u'call', u'streamlin', u'health']
[u'melbourn', u'clear', u'bird']
[u'melbourn', u'worker', u'ralli', u'chang']
[u'milic', u'fire', u'jet', u'victori']
[u'mine', u'industri', u'safeti', u'regim']
[u'minist', u'confid', u'joyc']
[u'minist', u'downplay', u'palm', u'island', u'water', u'suppli', u'fear']
[u'minist', u'urg', u'caloundra', u'essenti', u'servic']
[u'incent', u'urg', u'doctor']
[u'explor', u'west', u'coast']
[u'work', u'need', u'steadi', u'undermin', u'unit']
[u'call', u'fund', u'save', u'csiro', u'research']
[u'muslim', u'communiti', u'fear', u'terror', u'arrest']
[u'aborigin', u'affair', u'offic', u'north', u'coast']
[u'newcastl', u'set', u'export', u'benchmark']
[u'juvenil', u'detent', u'centr', u'mitchel']
[u'look', u'pipelin', u'cooloola', u'region']
[u'visa', u'apprentic', u'wag', u'labor']
[u'arrest', u'immin', u'howard']
[u'govt', u'play', u'polit', u'boe', u'disput']
[u'nurs', u'stop', u'work', u'equal']
[u'firm', u'ask', u'explain', u'citi', u'rural', u'price']
[u'pagan', u'resign', u'lose', u'camporeal']
[u'palmerston', u'get', u'recreat', u'centr']
[u'parent', u'welcom', u'fitzroy', u'cross', u'school', u'commit']
[u'pilbara', u'iron', u'plan', u'spark', u'indigen', u'worri']
[u'plan', u'offer', u'hope', u'canker', u'affect', u'citrus', u'grower']
[u'deni', u'terror', u'arrest', u'immin']
[u'rule', u'appeal', u'death']
[u'polic', u'focus', u'surveil', u'camera', u'boost']
[u'polic', u'search', u'miss', u'kid']
[u'polic', u'search', u'gypsi', u'joker', u'leader']
[u'polic', u'threaten', u'tough', u'seatbelt']
[u'power', u'restor', u'storm', u'aftermath']
[u'power', u'restor', u'wind', u'home']
[u'life', u'group', u'give', u'pregnanc', u'counsel', u'fund']
[u'public', u'consult', u'colleg', u'campus', u'futur']
[u'farmer', u'reject', u'water', u'critic']
[u'move', u'flat', u'rate', u'tariff', u'electr']
[u'blame', u'vandal', u'tilt', u'train', u'mishap']
[u'race', u'industri', u'seek', u'betfair']
[u'rain', u'clear', u'play', u'gabba']
[u'rain', u'threaten', u'australia', u'momentum']
[u'reef', u'fish', u'closur', u'near']
[u'research', u'consid', u'lure', u'sport', u'versus']
[u'retir', u'villag', u'develop', u'expect', u'high', u'demand']
[u'rfds', u'pilot', u'lift', u'work', u'ban']
[u'roar', u'sink', u'victori']
[u'season', u'close', u'speci']
[u'rossi', u'aim', u'doohan', u'record', u'valencia']
[u'royal', u'park', u'solv', u'newcastl', u'shortag', u'green']
[u'ruddock', u'reject', u'anti', u'terror', u'law', u'breach', u'human']
[u'ruddock', u'want', u'charg', u'journalist']
[u'rule', u'forc', u'open', u'pilbara', u'rail', u'line']
[u'health', u'minist', u'quit', u'portfolio']
[u'satellit', u'lead', u'polic', u'steal']
[u'search', u'joker', u'leader', u'find']
[u'shot', u'fire', u'polic', u'riot', u'continu']
[u'smith', u'lara', u'windi']
[u'south', u'africa', u'ax', u'deputi', u'indict', u'corrupt']
[u'spring', u'race', u'name', u'makyb']
[u'state', u'agre', u'nation', u'energi', u'regim']
[u'state', u'hear', u'indigen', u'justic', u'scheme']
[u'stinger', u'scare', u'close', u'strand']
[u'stirl', u'meet', u'camp', u'school', u'support']
[u'strand', u'bird', u'rescu', u'robot']
[u'strategi', u'accommod', u'grow', u'popul']
[u'sweep', u'start', u'croc', u'broom']
[u'sydney', u'cafe', u'gunmen', u'miss', u'intend', u'target']
[u'tailend']
[u'tasmania', u'fund', u'jumper', u'jack', u'research']
[u'tasmania', u'modernis', u'water', u'manag']
[u'teacher', u'aid', u'jail', u'affair', u'student']
[u'tiger', u'mount', u'beller', u'fight']
[u'toyn', u'investig', u'customari', u'futur']
[u'transport', u'group', u'fear', u'saleyard', u'cost', u'farmer']
[u'trawler', u'sink', u'harrow', u'rescu', u'skipper']
[u'tribut', u'flow', u'elder']
[u'trucki', u'plead', u'guilti', u'danger', u'drive']
[u'trucki', u'surviv', u'road', u'train', u'roll']
[u'tunnel', u'negoti', u'leak', u'dog', u'iemma', u'govt']
[u'tweeti', u'save', u'teeter', u'build']
[u'arrest', u'explos', u'injur', u'waikeri', u'woman']
[u'charg', u'plan', u'terrorist', u'attack']
[u'kill', u'wagga', u'factori', u'accid']
[u'stowaway', u'dead', u'ship', u'bind']
[u'campus', u'go', u'fall', u'enrol']
[u'communic', u'respons', u'audit']
[u'union', u'urg', u'worker', u'oppos', u'law']
[u'court', u'rule', u'wont', u'hurt', u'australian', u'vioxx', u'class']
[u'test', u'bird']
[u'backbench', u'apologis', u'defamatori', u'remark']
[u'water', u'bomber', u'head', u'south', u'coast']
[u'weed', u'pose', u'threat', u'north', u'rainforest']
[u'wellington', u'shire', u'tour', u'target', u'develop']
[u'west', u'tiger', u'begin', u'titl', u'defenc', u'dragon']
[u'wheat', u'group', u'want', u'bar']
[u'wild', u'wind', u'lash', u'southern', u'tasmania']
[u'woman', u'get', u'suspend', u'jail', u'sentenc', u'hotel']
[u'woodsid', u'brief', u'communiti', u'project']
[u'wool', u'market', u'fall']
[u'world', u'fail', u'grasp', u'scale', u'pakistan', u'disast']
[u'wudinna', u'hospit', u'report', u'publicis']
[u'young', u'driver', u'face', u'govt', u'crackdown']
[u'zimbabw', u'opposit', u'accus', u'leader', u'violenc']
[u'mull', u'legisl', u'counter', u'chang']
[u'annan', u'cancel', u'iranian', u'trip', u'amid', u'israel', u'furor']
[u'anti', u'terror', u'law', u'inquiri', u'call', u'submiss']
[u'anti', u'protest', u'turn', u'violent', u'argentina']
[u'archbishop', u'open', u'sale', u'resid']
[u'aussi', u'claim', u'earli', u'wicket']
[u'aussi', u'control', u'gabba', u'test']
[u'bachelor', u'bequeath', u'fortun']
[u'blue', u'beat', u'warrior', u'waca']
[u'builder', u'hop', u'meet', u'need', u'collaps', u'unit']
[u'bushrang', u'horror', u'start', u'inning']
[u'bush', u'refus', u'comment', u'rove', u'futur']
[u'cabbi', u'warn', u'meet', u'peak', u'hour', u'commit']
[u'cairn', u'adelaid', u'melbourn', u'score', u'win']
[u'capit', u'ranger', u'unbeaten', u'streak']
[u'cross', u'border', u'deal', u'improv', u'firefight', u'capac']
[u'debnam', u'alleg', u'cover', u'tunnel', u'paper', u'leak']
[u'diseas', u'threaten', u'earthquak', u'victim', u'camp', u'oxfam']
[u'breakthrough', u'shed', u'light', u'ripper', u'case']
[u'maker', u'sponsor', u'cycl', u'race']
[u'europ', u'demand', u'probe', u'prison', u'claim']
[u'fan', u'warn', u'uruguay', u'trip']
[u'farmer', u'seek', u'help', u'beat', u'firewe', u'infest']
[u'father', u'son', u'guilti', u'honour', u'kill']
[u'ferguson', u'readi', u'pull', u'rooney', u'argentina']
[u'erupt', u'malaysia', u'twin', u'tower']
[u'firefight', u'battl', u'nation', u'park', u'blaze']
[u'kuwaiti', u'releas', u'guantanamo']
[u'charg', u'steal', u'militari', u'secret']
[u'fundrais', u'aim', u'prevent', u'recherch', u'log']
[u'gabba', u'test', u'highlight']
[u'govt', u'announc', u'extra', u'drought', u'fund']
[u'govt', u'consid', u'appeal', u'viarsa', u'fishermen']
[u'green', u'seek', u'transpar', u'complaint']
[u'gregan', u'focus', u'perform', u'world', u'record']
[u'guidelin', u'gunnss', u'pulp', u'plan', u'amend']
[u'hayden', u'gabba', u'centuri']
[u'hayden', u'pont', u'pile', u'run']
[u'hayden', u'pont', u'game', u'reach']
[u'hid', u'warn', u'parti', u'leader', u'memoir']
[u'hill', u'take', u'health', u'portfolio']
[u'hockeyroo', u'qualifi', u'world']
[u'hometown', u'hayden']
[u'hundr', u'car', u'burn', u'pari', u'violenc']
[u'iaea', u'meet', u'unabl', u'rule', u'iran']
[u'icrc', u'expand', u'pakistani', u'effort']
[u'indonesia', u'confirm', u'fifth', u'human', u'bird', u'death']
[u'indonesian', u'woman', u'die', u'bird']
[u'inquiri', u'push', u'delay', u'betfair', u'deal']
[u'insurg', u'weapon', u'come', u'iran', u'general']
[u'iraq', u'fuel', u'terror', u'british']
[u'israel', u'begin', u'mark', u'rabin', u'assassin']
[u'john', u'paul', u'beatif', u'hear', u'begin']
[u'juri', u'clear', u'toothfish', u'poach']
[u'labor', u'call', u'releas', u'treasuri', u'research']
[u'log', u'contractor', u'urg', u'truck', u'accid']
[u'hospit', u'hang', u'glider', u'crash']
[u'matthew', u'hayden', u'interview']
[u'melandri', u'set', u'pace', u'practic', u'valencia']
[u'melbourn', u'public', u'transport', u'fail', u'studi']
[u'support', u'seek', u'children', u'mental']
[u'muslim', u'group', u'condemn', u'anti', u'terror', u'law']
[u'nasa', u'scale', u'ambit', u'amid', u'fund', u'crisi']
[u'near', u'vehicl', u'torch', u'french', u'riot']
[u'northern', u'mariana', u'go', u'poll']
[u'consid', u'feral', u'anim', u'hunt']
[u'builder', u'pick', u'award']
[u'target', u'high', u'yield', u'tourist']
[u'nurs', u'pedal', u'mental', u'health', u'awar']
[u'opposit', u'call', u'govt', u'releas', u'treasuri']
[u'opposit', u'defend', u'town', u'camp', u'school']
[u'opposit', u'take', u'campaign', u'street']
[u'pakistan', u'revis', u'ferri', u'sink', u'toll']
[u'parti', u'goer', u'attack', u'perth', u'polic']
[u'payrol', u'report', u'leav', u'investor', u'loss']
[u'perth', u'rainfal', u'annual', u'averag']
[u'petrovski', u'trick', u'inspir', u'sydney', u'victori']
[u'polic', u'minist', u'deni', u'cover', u'complaint']
[u'pregnanc', u'counsel', u'fund', u'fall', u'short']
[u'prison', u'escap', u'pose', u'ident', u'twin']
[u'protest', u'clash', u'polic', u'america', u'summit']
[u'quak', u'respons', u'good', u'british', u'minist']
[u'quigley', u'cabinet', u'post']
[u'rain', u'end', u'south', u'africa', u'record']
[u'rough', u'sea', u'expect', u'lifesav', u'busi']
[u'search', u'continu', u'miss']
[u'shane', u'warn', u'dinesh', u'ramdin', u'interview']
[u'shelter', u'expect', u'public', u'hous', u'debat']
[u'skier', u'face', u'kosciuszko', u'upgrad']
[u'speaker', u'urg', u'abandon', u'busi']
[u'state', u'hous', u'benefit', u'disabl', u'peopl']
[u'suharto', u'hospit']
[u'suharto', u'health', u'condit', u'improv', u'exhaust']
[u'sink', u'trawler', u'leak', u'diesel', u'gulf']
[u'sydney', u'protest', u'terror', u'law', u'concern']
[u'taipan', u'razorback', u'break', u'lose', u'streak']
[u'advoc', u'seek', u'test', u'aborigin']
[u'tasmanian', u'continu', u'wind', u'damag', u'clean']
[u'thailand', u'produc', u'generic', u'treatment', u'bird']
[u'thousand', u'stage', u'anti', u'bush', u'protest', u'summit']
[u'threat', u'alert', u'erod', u'howard', u'credibl', u'beazley']
[u'tiger', u'look', u'build', u'competit', u'total']
[u'tiger', u'sword', u'bushrang', u'beller']
[u'tougher', u'test', u'public', u'hous', u'applic']
[u'treasuri', u'deni', u'prepar', u'cabinet', u'report']
[u'tunnel', u'bush', u'suit', u'iemma']
[u'turnbul', u'say', u'sedit', u'provis', u'anti']
[u'turnbul', u'urg', u'review', u'sedit', u'law']
[u'collid', u'train']
[u'unesco', u'honour', u'zorba', u'greek', u'compos']
[u'launch', u'offens', u'near', u'iraqi', u'syrian', u'border']
[u'senat', u'support', u'outlaw', u'prison', u'tortur']
[u'tell', u'repay', u'iraq', u'shoddi', u'work', u'report']
[u'valedictum', u'take', u'stake']
[u'viarsa', u'fishermen', u'glad', u'head', u'home']
[u'defend', u'melbourn', u'public', u'transport']
[u'unveil', u'game', u'transport', u'plan']
[u'villawood', u'hunger', u'striker', u'take', u'hospit']
[u'violenc', u'prompt', u'fear', u'ethiopia', u'stabil']
[u'announc', u'rottnest', u'develop', u'plan']
[u'warn', u'mop', u'tail']
[u'webber', u'pleas', u'sign', u'rosberg']
[u'webb', u'strike', u'distanc', u'japan']
[u'wenger', u'rebuff', u'mourinho', u'peac', u'deal']
[u'worsen', u'riot', u'spread', u'pari']
[u'yachti', u'prais', u'rescu', u'effort']
[u'deal', u'conserv', u'river', u'murray', u'water']
[u'counter', u'terror', u'role']
[u'defend', u'hydro', u'deal']
[u'black', u'step', u'gear', u'crush', u'wale']
[u'qaeda', u'oper', u'kill', u'iraq', u'offens']
[u'qaeda', u'suspect', u'kill', u'pakistan', u'blast']
[u'america', u'summit', u'highlight', u'free', u'trade', u'divis']
[u'ancient', u'church', u'underneath', u'isra', u'prison']
[u'arson', u'destroy', u'dick', u'johnson']
[u'aussi', u'hussein', u'lose', u'titl', u'fight', u'point']
[u'australian', u'okay', u'cruis', u'ship', u'attack']
[u'azerbaijan', u'detain', u'ukrainian', u'elect', u'monitor']
[u'bashir', u'sentenc', u'denial', u'pressur']
[u'blair', u'blast', u'complac', u'terror']
[u'blowhol', u'jump', u'land', u'woman', u'hospit']
[u'blue', u'control', u'waca']
[u'blue', u'steadi', u'progress', u'perth']
[u'blue', u'track', u'strong', u'total']
[u'bomber', u'dyson', u'assault']
[u'bracken', u'rout', u'west', u'indi']
[u'bullet', u'break', u'horror', u'streak']
[u'bush', u'push', u'free', u'trade', u'amid', u'anti', u'protest']
[u'bushrang', u'fight', u'surviv']
[u'bushrang', u'tiger', u'clash', u'even', u'pois']
[u'call', u'action', u'follow', u'cruis', u'liner', u'attack']
[u'canberra', u'airport', u'post', u'record', u'passeng', u'movement']
[u'caus', u'fatal', u'rail', u'crash', u'unknown']
[u'chanderpaul', u'lament', u'windi', u'worst', u'loss']
[u'cheer', u'greet', u'beazley', u'pledg', u'tear', u'reform']
[u'child', u'night', u'bushland']
[u'china', u'rule', u'bird', u'girl', u'death']
[u'citrus', u'crop', u'return', u'emerald', u'pack', u'shed']
[u'look', u'grassroot', u'recoveri']
[u'commentari', u'highlight', u'gabba']
[u'csiro', u'plan', u'ignor', u'nation', u'garrett']
[u'detent', u'destroy', u'hunger', u'striker', u'live']
[u'earthquak', u'aftershock', u'hit', u'pakistan']
[u'ecstasi', u'bulk', u'buyer', u'warn', u'jail', u'term']
[u'exercis', u'better', u'diet', u'lengthen', u'live']
[u'farmer', u'welcom', u'extra', u'drought', u'fund']
[u'favour', u'weather', u'eas', u'diesel', u'spill', u'threat']
[u'franc', u'strong', u'wallabi']
[u'french', u'enjoy', u'doubl', u'australian']
[u'gibernau', u'grab', u'pole', u'valencia']
[u'govt', u'seek', u'wider', u'terror', u'power', u'militari']
[u'govt', u'militari', u'shoot', u'kill', u'power']
[u'hawk', u'upset', u'wildcat', u'perth']
[u'hill', u'plan', u'role', u'defenc', u'counter', u'terror']
[u'hill', u'put', u'cooper', u'health', u'agenda']
[u'hospit', u'unprepar', u'terrorist', u'attack', u'aftermath']
[u'hous', u'sale', u'bath', u'wife']
[u'hous', u'program', u'benefit', u'incom', u'earner']
[u'hundr', u'arrest', u'continu', u'pari', u'unrest']
[u'iemma', u'tunnel', u'joke', u'poor', u'tast']
[u'india', u'delay', u'border', u'open', u'quak', u'victim']
[u'indigen', u'owner', u'stage', u'dump', u'protest', u'sydney']
[u'inter', u'seri', u'hop', u'dent', u'draw', u'lazio']
[u'interview', u'brett', u'nathan', u'bracken']
[u'kangaroo', u'great', u'britain']
[u'klinger', u'lead', u'victorian', u'fight']
[u'klitschko', u'pull', u'titl', u'bout', u'rahman']
[u'kosciuszko', u'increas', u'exempt', u'defend']
[u'lara', u'sarwan', u'windi', u'lunch']
[u'metcash', u'enter', u'second', u'phase', u'foodland', u'purchas']
[u'evid', u'need', u'justifi', u'demerit']
[u'foreign', u'fishermen', u'detain', u'boat', u'seiz']
[u'mori', u'star', u'glori', u'upset', u'unit']
[u'netbal', u'secur', u'seri', u'jamaica']
[u'anti', u'terror', u'power']
[u'zealand', u'green', u'parti', u'leader', u'die']
[u'advic', u'say', u'legal', u'basi', u'nuclear', u'dump']
[u'opposit', u'seek', u'inquiri', u'ashourn', u'affair']
[u'osasuna', u'stay', u'spain']
[u'palestinian', u'mistak', u'gunman', u'die']
[u'passeng', u'escap', u'pirat', u'attack']
[u'patienc', u'wicket', u'virtu', u'expressman']
[u'philippin', u'polic', u'arrest', u'wrong', u'milit']
[u'pirat', u'shoot', u'cruis', u'ship', u'somalia']
[u'polic', u'control', u'ethiopian', u'capit']
[u'pont', u'warn', u'complac']
[u'pope', u'clergi', u'polici', u'boost', u'anglican', u'number']
[u'power', u'pole', u'place', u'poster', u'nairn']
[u'prison', u'system', u'capac', u'disput']
[u'privaci', u'law', u'target', u'peep', u'tom']
[u'project', u'document', u'tiwi', u'histori']
[u'public', u'school', u'starv', u'fund', u'princip']
[u'question', u'militari', u'involv']
[u'quick', u'wicket', u'crippl', u'windi']
[u'ramo', u'horta', u'make', u'plea', u'doctor']
[u'ranger', u'deni', u'crisi', u'draw', u'don']
[u'ranger', u'rebound', u'beat']
[u'recherch', u'plan', u'dismiss']
[u'rehab', u'servic', u'help', u'children', u'reach', u'potenti']
[u'ricki', u'pont', u'interview']
[u'riot', u'continu', u'franc']
[u'school', u'burn', u'pari', u'riot', u'enter', u'night']
[u'crush', u'death', u'india', u'stamped']
[u'snowsil', u'claim', u'noosa', u'peat']
[u'speed', u'camera', u'total', u'solut', u'death', u'toll']
[u'springbok', u'fight', u'defeat', u'puma']
[u'state', u'organis', u'major', u'trauma', u'servic', u'abbott']
[u'suharto', u'leav', u'hospit']
[u'sunni', u'politician', u'serious', u'injur', u'attack']
[u'symond', u'bat', u'bull', u'adelaid', u'match']
[u'symond', u'bat', u'bull', u'solid', u'posit']
[u'tasmania', u'audit', u'surgic', u'death']
[u'magic', u'go', u'jone']
[u'kill', u'queensland', u'road']
[u'sayyaf', u'leader', u'arrest', u'arroyo']
[u'tunnel', u'construct', u'compani', u'say', u'damag', u'unit', u'safe']
[u'demand', u'access', u'guantanamo', u'detaine']
[u'unfanc', u'wigan', u'cement', u'second', u'place']
[u'union', u'predict', u'grow', u'membership', u'counter']
[u'unrest', u'spread', u'parisian', u'tire', u'violenc']
[u'china', u'reach', u'deal', u'textil', u'import']
[u'forc', u'face', u'sporad', u'resist', u'iraq']
[u'releas', u'bahraini', u'guantanamo']
[u'refund', u'iraq', u'halliburton', u'work']
[u'upbeat', u'despit', u'america', u'summit', u'divis']
[u'bite', u'bullet', u'school', u'seatbelt']
[u'watson', u'injuri', u'complic', u'select', u'issu']
[u'windi', u'earli', u'troubl']
[u'zimbabw', u'opposit', u'wont', u'senat']
[u'kill', u'china', u'accid']
[u'rise', u'ballarat', u'univers', u'staff']
[u'minist', u'push', u'nation', u'park', u'discount']
[u'send', u'letter', u'bali', u'arrest']
[u'alburi', u'athlet', u'win', u'freycinet', u'challeng']
[u'leagu', u'surviv', u'socceroo', u'fail', u'say']
[u'anim', u'cruelti', u'park', u'caus', u'payment']
[u'anti', u'gambl', u'work', u'polic', u'council']
[u'survey', u'point', u'employ', u'slowdown']
[u'apvma', u'review', u'sheep', u'treat', u'chemic']
[u'armi', u'plan', u'caus', u'unnecessari', u'alarm']
[u'soldier', u'kill', u'middl', u'east']
[u'aspirin', u'help', u'prevent', u'skin', u'cancer']
[u'aussi', u'tell', u'cruis', u'liner', u'attack']
[u'australian', u'soldier', u'kill', u'middl', u'east', u'accid']
[u'australian', u'warn', u'french', u'riot', u'continu']
[u'awa', u'fund', u'link', u'anger', u'univers', u'lectur']
[u'backbench', u'forc', u'welfar', u'work', u'chang']
[u'beatti', u'back', u'decis', u'publicis', u'terror']
[u'berdych', u'upset', u'ljubic', u'thrill', u'pari', u'final']
[u'betfair', u'confid', u'onlin', u'game', u'provid']
[u'bird', u'caus', u'humanitarian', u'crisi', u'care']
[u'bird', u'matter', u'water', u'close', u'school']
[u'bishop', u'urg', u'caution', u'chang']
[u'blood', u'bank', u'campaign', u'promot', u'donat']
[u'blue', u'declar', u'strong', u'total']
[u'break', u'hill', u'clean', u'sever', u'storm']
[u'break', u'hill', u'declar', u'natur', u'disast', u'area']
[u'bryant', u'provid', u'cinderella', u'finish', u'season']
[u'bullet', u'high', u'drought', u'break']
[u'burma', u'capit']
[u'bush', u'back', u'democraci', u'swipe', u'chavez']
[u'oper', u'unbuckl', u'seatbelt', u'polici']
[u'captainci', u'wont', u'guarante', u'gregan', u'spot', u'horan']
[u'cashcard', u'figur', u'reflect', u'household', u'spend', u'drop']
[u'central', u'rural', u'properti', u'sell']
[u'cessnock', u'council', u'doubl', u'surplus']
[u'chirac', u'promis', u'defeat', u'rioter']
[u'branch', u'darwin', u'palmerston']
[u'cocain', u'trace', u'detect', u'river', u'thame', u'report']
[u'cold', u'add', u'pakistani', u'quak', u'victim', u'woe']
[u'commiss', u'educ', u'combat', u'illeg']
[u'committe', u'support', u'asean', u'treati', u'ratif']
[u'compani', u'sell', u'cattl', u'station']
[u'court', u'acquit', u'driver', u'fatal', u'crash']
[u'court', u'jail', u'sell', u'petrol', u'sniff', u'fuel']
[u'court', u'refus', u'bali', u'accus', u'polic', u'deal']
[u'court', u'hear', u'polic', u'applic', u'close', u'hotel']
[u'crash', u'driver', u'suffer', u'diabet', u'blackout']
[u'crossin', u'seek', u'nuclear', u'wast', u'law', u'probe']
[u'cruis', u'liner', u'attack', u'pirat', u'anchor']
[u'custom', u'bust', u'narcot', u'syndic']
[u'cyclist', u'strike', u'gold', u'moscow']
[u'cyclist', u'sue', u'melbourn', u'radio', u'station']
[u'demand', u'worker', u'see', u'apprenticeship', u'number', u'rise']
[u'democrat', u'seek', u'inquiri', u'terror', u'rush']
[u'democrat', u'seek', u'judici', u'inquiri', u'ashbourn']
[u'democrat', u'want', u'mislead', u'counsel', u'outlaw']
[u'derwent', u'valley', u'vie', u'livabl', u'communiti', u'award']
[u'detain', u'timores', u'asylum', u'seeker']
[u'dilshan', u'guid', u'lanka', u'rare', u'victori']
[u'doctor', u'head', u'hospit', u'breakthrough']
[u'dog', u'remov', u'hous', u'estat']
[u'doyl', u'plung', u'latest', u'newspol']
[u'draft', u'water', u'plan', u'discuss']
[u'driver', u'court', u'polic', u'worth']
[u'dump', u'plan', u'rais', u'tourism', u'threat', u'worri']
[u'epsom', u'develop', u'public']
[u'explos', u'spark', u'fatal', u'unit']
[u'extra', u'crew', u'bring', u'help', u'storm', u'aftermath']
[u'farmer', u'determin', u'solv', u'salin', u'problem']
[u'fatwa', u'issu', u'pari', u'rioter', u'polic']
[u'feder', u'health', u'fund', u'bureaucraci']
[u'game', u'volunt', u'complain', u'duti']
[u'reject', u'uruguay', u'request']
[u'fire', u'damag', u'home']
[u'fishermen', u'offer', u'catch', u'poacher', u'spawn']
[u'flood', u'hit', u'adelaid']
[u'fonterra', u'clear', u'wrongdo', u'food']
[u'boss', u'head', u'futur', u'fund']
[u'group', u'chairman', u'disappoint', u'remov']
[u'liber', u'die', u'battl', u'cancer']
[u'fund', u'flow', u'upgrad']
[u'futur', u'fund', u'legisl', u'introduc', u'soon']
[u'girl', u'injur', u'road', u'rage', u'incid']
[u'gold', u'coast', u'properti', u'price', u'continu', u'increas']
[u'govt', u'criticis', u'anti', u'terror', u'move']
[u'govt', u'green', u'light', u'ainsli', u'age', u'care', u'centr']
[u'govt', u'chang', u'countri', u'labor', u'confer']
[u'govt', u'releas', u'whitebait', u'manag', u'plan']
[u'govt', u'urg', u'poison', u'bait']
[u'govt', u'urg', u'ramp', u'paper', u'recycl']
[u'grain', u'qualiti', u'threaten', u'weekend', u'rain']
[u'group', u'question', u'rat', u'council', u'elect']
[u'high', u'attend', u'gambier', u'ralli']
[u'hope', u'fade', u'miss', u'fishermen']
[u'hospit', u'shortag', u'bird', u'confer', u'tell']
[u'immigr', u'employe', u'admit', u'access', u'confidenti']
[u'inflat', u'figur', u'push', u'rate', u'rise']
[u'internet', u'number', u'fall']
[u'iran', u'convert', u'uranium']
[u'iran', u'propos', u'mideast', u'peac', u'solut']
[u'kashmir', u'border', u'open', u'quak']
[u'kimberley', u'clean', u'pay']
[u'knife', u'wield', u'disarm', u'polic']
[u'labor', u'question', u'time', u'counter', u'terror']
[u'lack', u'high', u'speed', u'internet', u'threaten', u'region']
[u'late', u'penalti', u'give', u'real', u'madrid', u'home']
[u'late', u'surg', u'keep', u'juve', u'clear', u'milan']
[u'lectur', u'call', u'better', u'understand', u'age']
[u'ljubic', u'join', u'kooyong', u'classic', u'field']
[u'macgil', u'confid', u'test', u'return']
[u'mackay', u'mater', u'hospit', u'seek', u'specialist']
[u'arrest', u'heroin', u'destin']
[u'charg', u'fatal']
[u'jail', u'share', u'movi', u'file']
[u'question', u'bomb']
[u'manufactur', u'plant', u'work', u'stop', u'fatal']
[u'mauresmo', u'captur', u'straight', u'philadelphia', u'titl']
[u'mayor', u'urg', u'venu', u'drink', u'price']
[u'mccain', u'farmer', u'begin', u'mediat', u'potato', u'price']
[u'mcevoy', u'releas', u'hospit']
[u'meet', u'kick', u'fight', u'save', u'brown', u'hill', u'pool']
[u'melandri', u'end', u'season', u'high', u'valencia']
[u'meteor', u'shower', u'like', u'caus', u'light']
[u'minist', u'appal', u'time', u'silcraft', u'loss']
[u'minist', u'back', u'push', u'melbourn', u'public', u'transport']
[u'miss', u'man', u'bodi', u'identifi']
[u'public', u'debat', u'seek', u'age', u'care', u'health']
[u'moroccan', u'stowaway', u'death', u'probe']
[u'mourinho', u'dismiss', u'unit', u'titl', u'hop']
[u'attack', u'govt', u'public', u'hous', u'delay']
[u'continu', u'fight', u'clear']
[u'navi', u'ship', u'head', u'home', u'voyag']
[u'newcastl', u'featur', u'latest', u'superman', u'flick']
[u'recruit', u'power', u'train']
[u'way', u'need', u'provid', u'hand', u'teach']
[u'nguyen', u'support', u'voic', u'death', u'penalti', u'opposit']
[u'korea', u'nuclear', u'talk', u'resum']
[u'senat', u'back', u'dump', u'deal']
[u'wine', u'import', u'rise']
[u'obrien', u'notch', u'blue', u'build', u'total']
[u'opposit', u'hit', u'govt', u'follow', u'highway']
[u'outback', u'develop', u'highlight', u'cameron', u'corner']
[u'outback', u'facil', u'begin', u'process', u'wild', u'game']
[u'pari', u'riot', u'continu']
[u'perth', u'galleri', u'join', u'fight', u'cane', u'toad']
[u'peruvian', u'presid', u'arrest', u'chile']
[u'recal', u'urg', u'chang', u'month']
[u'deni', u'tri', u'workplac', u'chang']
[u'welcom', u'swedish', u'royal']
[u'polic', u'probe', u'horsham', u'bash', u'victim', u'death']
[u'polic', u'seek', u'assist', u'hoon', u'crackdown']
[u'polic', u'seek', u'inform', u'bodi', u'tent']
[u'polic', u'unabl', u'rule', u'umbakumba', u'school']
[u'potter', u'premier', u'work', u'magic', u'star']
[u'pressur', u'increas', u'senat', u'oppos', u'nuclear']
[u'princess', u'make', u'splash', u'eden']
[u'princip', u'attack', u'teacher', u'recruit', u'scheme']
[u'privat', u'land', u'threaten', u'lower', u'great', u'southern']
[u'properti', u'crime', u'rise', u'affluenc', u'increas']
[u'prostitut', u'teacher', u'revel', u'forc', u'chang']
[u'prostitut', u'control']
[u'psychologist', u'fear', u'chang', u'fractur']
[u'public', u'school', u'control', u'teacher', u'recruit']
[u'rain', u'interrupt', u'redback', u'bull', u'clash']
[u'rain', u'mar', u'redback', u'bull', u'clash']
[u'rain', u'upset', u'string', u'event']
[u'warn', u'rat', u'rise']
[u'redback', u'lose', u'earli', u'wicket']
[u'cross', u'back', u'drink', u'water', u'donat', u'palm']
[u'refresh', u'cohen', u'return', u'england', u'wing']
[u'research', u'look', u'mother', u'natur', u'anti', u'foul']
[u'research', u'shed', u'light', u'link']
[u'research', u'show', u'hous', u'afford', u'reach']
[u'resourc', u'sector', u'pull', u'market']
[u'roch', u'plan', u'antivir', u'drug', u'million', u'peopl']
[u'rogu', u'bonfir', u'night', u'firework', u'injur']
[u'sale', u'sausag', u'win', u'kabana', u'stake']
[u'school', u'rais', u'fund', u'pay', u'teacher', u'salari', u'union']
[u'sharehold', u'demand', u'apolog', u'wine', u'boss']
[u'societi', u'tell', u'offic']
[u'simul', u'truck', u'crash', u'highlight', u'concern']
[u'smith', u'steer', u'south', u'africa', u'victori']
[u'somalian', u'convoy', u'attack', u'dead']
[u'death', u'care', u'suspici', u'commission']
[u'sorenstam', u'make', u'histori', u'japan']
[u'speaker', u'demand', u'better', u'behaviour']
[u'state', u'urg', u'follow', u'lead', u'seatbelt']
[u'steal', u'wag', u'remain', u'unpaid']
[u'storm', u'forc', u'evacu', u'break', u'hill', u'home']
[u'strait', u'fishermen', u'label', u'nation', u'park', u'report', u'bias']
[u'studi', u'investig', u'flood', u'protect', u'measur']
[u'swedish', u'royal', u'begin', u'week', u'long', u'visit']
[u'sydney', u'unit', u'owner', u'give', u'green', u'light', u'return']
[u'taliban', u'chief', u'call', u'uniti', u'troop']
[u'tasmania', u'boost', u'timor', u'lest', u'care']
[u'terrorist', u'cruis', u'liner', u'attack', u'downer']
[u'thailand', u'rule', u'autonomi', u'south']
[u'thirteen', u'kill', u'china', u'coal', u'explos']
[u'tiger', u'collaps', u'hand', u'bushrang', u'victori']
[u'tiger', u'troubl', u'chase']
[u'toddler', u'serious', u'injur', u'attack']
[u'toddler', u'reattach', u'attack']
[u'tornado', u'kill']
[u'tourist', u'cliff', u'fall', u'accid', u'polic']
[u'tribut', u'flow', u'soldier', u'kill', u'train']
[u'union', u'want', u'bulli', u'work']
[u'envoy', u'urg', u'probe', u'secret', u'prison']
[u'union', u'fear', u'indigen', u'school', u'closur']
[u'unit', u'deep', u'chelsea']
[u'tornado', u'death', u'toll', u'rise']
[u'tornado', u'kill', u'injur', u'dozen']
[u'vaughan', u'injur', u'england', u'bat', u'improv']
[u'effort', u'help', u'lower', u'drown', u'rate']
[u'warrior', u'struggl', u'blue', u'onslaught']
[u'water', u'skier', u'hospit', u'lake', u'mishap']
[u'watson', u'doubt', u'second', u'test']
[u'watson', u'sidelin', u'month']
[u'wellington', u'promot', u'tour', u'reschedul']
[u'whitlam', u'hand', u'alpha', u'omega']
[u'whitlam', u'hand', u'paper']
[u'whitlam', u'donat', u'dismiss', u'letter']
[u'wineri', u'hail', u'water', u'save', u'deal']
[u'wollongong', u'council', u'justifi', u'photograph']
[u'workchoic', u'brochur', u'trash', u'fairer', u'cover']
[u'world', u'bank', u'warn', u'huge', u'cost', u'pandem']
[u'detain', u'overnight', u'raid']
[u'dead', u'tornado', u'destruct']
[u'refus', u'sign', u'water', u'agreement']
[u'adelaid', u'court', u'drug', u'charg', u'refus']
[u'level', u'cross', u'crash', u'avoid']
[u'launch', u'crime', u'crackdown']
[u'airlin', u'take', u'port', u'augusta']
[u'alli', u'health', u'scholarship', u'offer', u'boost', u'rural']
[u'attempt', u'amend', u'sedit', u'law']
[u'andrew', u'confirm', u'welfar', u'packag', u'chang']
[u'hous', u'raid', u'sydney']
[u'anti', u'terror', u'law', u'threaten', u'aborigin', u'custodi']
[u'anti', u'terror', u'raid', u'surpris', u'muslim', u'communiti']
[u'dead', u'spate', u'iraq', u'bomb']
[u'aussi', u'complet', u'clean', u'sweep', u'jamaican', u'seri']
[u'australia', u'prepar', u'nuclear', u'terrorist']
[u'bali', u'blame', u'downer']
[u'banana', u'research', u'levi', u'ballot', u'send', u'grower']
[u'ban', u'secur', u'feder', u'road', u'fund']
[u'benbrika', u'deni', u'terrorist', u'activ']
[u'bigger', u'kosciuszko', u'entri', u'attack']
[u'bird', u'kill', u'vietnames', u'offici', u'say']
[u'blair', u'forc', u'wind', u'anti', u'terror']
[u'bolton', u'spur']
[u'bomber', u'care', u'manag', u'dyson', u'recoveri']
[u'britain', u'honour', u'corr']
[u'british', u'govt', u'push', u'detent', u'plan']
[u'break', u'hill', u'councillor', u'warn', u'pool', u'debt']
[u'break', u'hill', u'water', u'suppli', u'boost']
[u'bureau', u'survey', u'flora', u'fauna', u'chang']
[u'bush', u'defend', u'handl', u'terror', u'suspect']
[u'tasmanian', u'local', u'artist']
[u'call', u'clean', u'fight', u'state', u'elect']
[u'cameraman', u'attack', u'outsid', u'court']
[u'compon', u'maker', u'worker']
[u'cautious', u'optim', u'pakistan', u'quak', u'survivor']
[u'china', u'reach', u'textil', u'trade', u'agreement']
[u'chines', u'paint', u'fetch']
[u'clean', u'wild', u'storm', u'continu', u'break', u'hill']
[u'climat', u'chang', u'high', u'agenda', u'hobart', u'meet']
[u'cloncurri', u'host', u'citi', u'countri', u'footi', u'clash']
[u'coff', u'youth', u'crime', u'problem', u'stat']
[u'comment', u'seek', u'walk', u'track', u'plan']
[u'compress', u'workplac', u'death']
[u'concern', u'land', u'clear', u'agreement']
[u'confer', u'shed', u'light', u'healthi', u'age']
[u'cooper', u'buyback', u'match', u'lion', u'share', u'offer']
[u'coron', u'close', u'case', u'miss', u'teenag']
[u'council', u'critic', u'umbakumba', u'nurs', u'withdraw']
[u'councillor', u'tour', u'wind', u'farm', u'site']
[u'council', u'blame', u'adelaid', u'flood', u'minist', u'say']
[u'council', u'highlight', u'need', u'jetti', u'repair']
[u'court', u'tell', u'suspect', u'discuss', u'suicid', u'bomb']
[u'critic', u'wallabi', u'warrant', u'say', u'latham']
[u'half', u'year', u'profit']
[u'custom', u'confid', u'drug', u'bust', u'deter']
[u'dalbi', u'hous', u'australia', u'grain', u'ethanol', u'plant']
[u'darwin', u'mayor', u'want', u'flag', u'showcas', u'proper']
[u'davenport', u'clijster', u'duel', u'year']
[u'dean', u'leav', u'glori']
[u'debat', u'continu', u'evacu', u'centr']
[u'dolphin', u'resort', u'expans', u'expect', u'bring', u'tourist']
[u'durbridg', u'duel', u'iron']
[u'elect', u'surgeri', u'wait', u'list', u'continu', u'grow']
[u'deliv', u'island', u'iron', u'recommend']
[u'monitor', u'palestinian', u'border', u'rafah']
[u'famili', u'evacu', u'flash', u'flood', u'north']
[u'father', u'wont', u'charg', u'daughter', u'heat', u'stress']
[u'uruguay', u'kick', u'compromis']
[u'fijian', u'plead', u'guilti', u'sydney', u'man', u'murder']
[u'kill', u'southern', u'thailand', u'violenc']
[u'guantanamo', u'detaine', u'charg']
[u'flash', u'flood', u'caus', u'evacu', u'central']
[u'flood', u'forc', u'town', u'resid', u'evacu']
[u'forum', u'shed', u'light', u'problem', u'gambl']
[u'surviv', u'roll']
[u'franc', u'crack', u'rioter']
[u'fraud', u'claim', u'cast', u'shadow', u'azerbaijan', u'elect']
[u'french', u'govern', u'approv', u'curfew', u'power']
[u'govt', u'justifi', u'terror', u'concern']
[u'govt', u'chang', u'travel', u'advic']
[u'govt', u'urg', u'porn']
[u'govt', u'water', u'welfar', u'work', u'packag']
[u'grave', u'obsess', u'mobil', u'phone', u'grow']
[u'green', u'group', u'seek', u'water', u'qualiti', u'report', u'answer']
[u'green', u'forest', u'hunt', u'worri']
[u'gregan', u'wallabi', u'back', u'say', u'gaffney']
[u'group', u'commit', u'jihad', u'court', u'hear']
[u'hamersley', u'iron', u'get', u'expans', u'green', u'light']
[u'hewitt', u'master']
[u'high', u'court', u'swear', u'femal', u'judg']
[u'howard', u'hit', u'critic', u'nation', u'secur']
[u'howard', u'suggest', u'raid', u'vindic', u'law', u'rush']
[u'iemma', u'releas', u'lane', u'cove', u'document']
[u'illeg', u'fishermen', u'oper', u'south']
[u'immigr', u'dept', u'question', u'moroccan', u'stowaway']
[u'implant', u'prevent', u'blind', u'diabet']
[u'indigen', u'group', u'work', u'save', u'cultur']
[u'internet', u'access', u'see', u'vital', u'lift', u'region']
[u'investig', u'begin', u'stowaway', u'death']
[u'investig', u'launch', u'pearl', u'boat', u'death']
[u'chang', u'toll', u'howard', u'actu']
[u'isra', u'parliament', u'reject', u'sharon', u'cabinet']
[u'jail', u'lawyer', u'artwork', u'auction']
[u'japan', u'whale', u'program', u'break', u'intern']
[u'kangaroo', u'blame', u'spread', u'danger', u'weed']
[u'kangaroo', u'wing']
[u'karen', u'hunt']
[u'kate', u'hudson', u'head', u'court', u'weight', u'stori']
[u'kazu', u'expect', u'tough', u'test', u'australia']
[u'keelti', u'seek', u'suppress', u'terror', u'alleg']
[u'kiwi', u'maxi', u'target', u'sydney', u'hobart', u'record']
[u'labor', u'renew', u'push', u'royal', u'commiss']
[u'langer', u'unavail', u'hobart', u'test']
[u'leader', u'critic', u'indigen', u'consult']
[u'leigh', u'radford']
[u'lennon', u'accus', u'inappropri', u'betfair', u'deal']
[u'letter', u'influenc', u'arrest', u'bali', u'court', u'tell']
[u'libbi', u'lurid', u'book', u'demand']
[u'liber', u'appoint', u'buswel', u'deputi', u'role']
[u'lleyton', u'injuri', u'continu']
[u'local', u'govern', u'fund', u'canberra']
[u'locust', u'number', u'swell', u'victoria']
[u'arrest', u'bash']
[u'charg', u'fake', u'death']
[u'mayor', u'problem', u'bridg']
[u'meatwork', u'take', u'foreign', u'worker']
[u'meet', u'focus', u'muswellbrook', u'secur']
[u'melbourn', u'toddler', u'stabl', u'attack']
[u'migrat', u'program', u'reduc', u'skill', u'shortag']
[u'miner', u'announc', u'appoint']
[u'minist', u'make', u'malle', u'fowl', u'project', u'visit']
[u'minist', u'rule', u'legal', u'action', u'japanes']
[u'miss', u'safe']
[u'morley', u'lament', u'lion', u'mistak']
[u'movi', u'guzzl', u'marathon', u'set', u'world', u'record']
[u'say', u'elector', u'oppos', u'chang']
[u'say', u'propos', u'nipper', u'photo', u'go']
[u'murrayland', u'lowest', u'broadband', u'coverag']
[u'survey', u'reveal', u'fall', u'busi', u'condit']
[u'nation', u'park', u'blaze', u'get', u'smaller']
[u'aflca', u'boss', u'reflect', u'challeng']
[u'shire', u'admin', u'build', u'target']
[u'commonwealth', u'game', u'link', u'terror', u'raid']
[u'north', u'queensland', u'lag', u'broadband', u'servic']
[u'farmer', u'face', u'major', u'hike', u'water', u'cost']
[u'southern', u'highland', u'get', u'good', u'rain']
[u'nuclear', u'dump', u'debat', u'adjourn']
[u'price', u'fall', u'boost', u'market']
[u'opal', u'comm', u'game']
[u'pacif', u'countri', u'hold', u'anti', u'terror', u'readi']
[u'pacif', u'highway', u'safeti', u'meet', u'today']
[u'pakistan', u'rais', u'quak', u'death', u'toll']
[u'pharmacist', u'supermarket', u'chemist']
[u'defend', u'decis', u'pulp', u'brochur']
[u'polic', u'confid', u'robinval', u'aborigin', u'night']
[u'polic', u'dismiss', u'drug', u'crime', u'claim']
[u'polic', u'hunt', u'liquor', u'store', u'bandit']
[u'polic', u'stawel', u'drug', u'arrest']
[u'polic', u'probe', u'shoot', u'amid', u'anti', u'terror', u'raid']
[u'polic', u'rescu', u'famili', u'strand', u'derwent']
[u'polic', u'shoot', u'terror', u'suspect']
[u'polic', u'boost', u'random', u'breath', u'test']
[u'pressur', u'step', u'lake', u'fund']
[u'princ', u'charl', u'camilla', u'wrap', u'trip']
[u'question', u'rais', u'child', u'death', u'rate', u'figur']
[u'raid', u'foil', u'terrorist', u'attack', u'polic', u'chief']
[u'rain', u'wash', u'adelaid']
[u'redund', u'step', u'yeoval', u'health']
[u'reef', u'studi', u'focus', u'carbon', u'dioxid', u'impact']
[u'region', u'report', u'offer', u'mix', u'result', u'illawarra']
[u'renew', u'push', u'standardis', u'daylight', u'save']
[u'report', u'find', u'govern', u'fail', u'disabl', u'communiti']
[u'report', u'highlight', u'high', u'number', u'senior', u'work']
[u'report', u'highlight', u'riverina', u'woe']
[u'report', u'reveal', u'lane', u'cove', u'tunnel', u'path', u'move']
[u'report', u'show', u'coast', u'prepar', u'sustain', u'growth']
[u'resourc', u'bank', u'sector', u'boost', u'market']
[u'tinto', u'question', u'safeti', u'levi', u'cost']
[u'riot', u'continu', u'franc']
[u'appoint', u'heart', u'coach']
[u'rocki', u'councillor', u'want', u'action', u'mosquito']
[u'roger', u'lead', u'fight']
[u'russia', u'firm', u'bird', u'outbreak']
[u'govt', u'websit', u'call', u'anti', u'messag']
[u'salvat', u'armi', u'pressur', u'vinni']
[u'secur', u'boost', u'plan', u'forestri', u'machineri']
[u'senat', u'dismiss', u'fear', u'nuclear', u'dump']
[u'showground', u'nois', u'investig']
[u'societi', u'reject', u'council', u'request', u'leav']
[u'socceroo', u'consid', u'gambl', u'kewel']
[u'somali', u'water', u'control']
[u'south', u'african', u'woman', u'kill', u'swarm', u'be']
[u'south', u'east', u'mental', u'health', u'worker']
[u'spacewalk', u'captur']
[u'stinger', u'attack', u'close', u'beach']
[u'strike', u'millmerran', u'power', u'station']
[u'student', u'return', u'water', u'scare']
[u'survey', u'reveal', u'region', u'life', u'shortcom']
[u'suspect', u'custodi', u'anti', u'terror', u'raid']
[u'swedish', u'queen', u'take', u'canberra', u'sight']
[u'sydney', u'tunnel', u'path', u'move', u'safeti', u'reason']
[u'tasmanian', u'govt', u'move', u'safeguard', u'worker', u'right']
[u'opposit', u'renew', u'call', u'health', u'minist']
[u'telstra', u'ask', u'chang', u'site', u'phone', u'tower']
[u'terror', u'suspect', u'appear', u'melbourn', u'court']
[u'terror', u'suspect', u'undergo', u'surgeri']
[u'terrorist', u'attack', u'foil', u'polic']
[u'thiev', u'target', u'market', u'place', u'newsag']
[u'bali', u'bomb', u'polic']
[u'weed', u'thrive', u'extend', u'spell']
[u'tourism', u'chief', u'highlight', u'fall', u'japanes', u'tourist']
[u'tree', u'put', u'stop', u'train', u'trip']
[u'woomera', u'escap']
[u'union', u'deliv', u'mail', u'centr', u'loss', u'warn']
[u'union', u'membership', u'increas', u'amidst', u'chang']
[u'union', u'urg', u'staff', u'turn', u'offer']
[u'nuclear', u'chief', u'say', u'iran', u'transpar']
[u'nuclear', u'chief', u'search', u'airport']
[u'drone', u'crash', u'iran']
[u'vow', u'push', u'ahead', u'hick', u'trial']
[u'vote', u'western', u'victoria']
[u'vuelta', u'star', u'hera', u'ban', u'suspect', u'test']
[u'beef', u'processor', u'debt', u'blow']
[u'want', u'bandit', u'kill', u'india']
[u'warrior', u'forc', u'follow']
[u'warrior', u'resolv', u'second', u'inning']
[u'water', u'ski', u'trial', u'restrict', u'elit', u'athlet']
[u'welfar', u'work', u'chang', u'pathet', u'opposit', u'say']
[u'wellington', u'shire', u'recognit', u'local']
[u'whale', u'fleet', u'set', u'sail', u'antarct']
[u'woewodin', u'aim', u'redempt', u'roo']
[u'timores', u'entitl', u'claim', u'asylum', u'advoc']
[u'yahoo', u'tivo', u'bring', u'closer']
[u'defenc', u'medic', u'assist', u'pakistan', u'relief', u'effort']
[u'adelaid', u'flood', u'woe', u'continu']
[u'afghanistan', u'awar', u'report', u'secret', u'jail']
[u'offic', u'help', u'sudanes', u'peac', u'effort']
[u'back', u'outgo', u'hospit', u'chief']
[u'land', u'perman', u'polic', u'presenc']
[u'asic', u'put', u'resort', u'share', u'offer']
[u'aussi', u'standard', u'pool', u'coughlin']
[u'australia', u'play', u'wale', u'scotland', u'fiji', u'ahead']
[u'bail', u'refus', u'accus', u'fake', u'death']
[u'bail', u'refus', u'terror', u'suspect']
[u'bank', u'resourc', u'sector', u'drag']
[u'beatti', u'step', u'implement', u'anti', u'terror']
[u'blaze', u'caus', u'damag', u'koomarri', u'centr']
[u'blaze', u'destroy', u'unoccupi', u'hous']
[u'blue', u'cruis', u'home', u'perth']
[u'boe', u'continu', u'disput', u'talk']
[u'bomb', u'scare', u'put', u'emerg', u'author', u'high', u'alert']
[u'boost', u'outback', u'tourism', u'train']
[u'bronco', u'grade', u'footi', u'rural', u'youngster']
[u'bull', u'bat', u'redback', u'declar']
[u'busi', u'beat', u'futur']
[u'continu', u'backpack', u'accommod', u'chang']
[u'campaign', u'criticis', u'offend']
[u'canberra', u'arboretum', u'plan']
[u'crash', u'shop', u'window', u'trap']
[u'chief', u'justic', u'notr', u'dame', u'post']
[u'child', u'right', u'advoc', u'win', u'sydney', u'peac', u'prize']
[u'child', u'suicid', u'rate', u'alarm', u'youth', u'commission']
[u'climat', u'chang', u'impact', u'magpi', u'breed']
[u'commission', u'fear', u'media', u'tip', u'suspect']
[u'commonwealth', u'urg', u'help', u'eas', u'illeg', u'fisher']
[u'concern', u'remain', u'greater', u'bunburi', u'region', u'scheme']
[u'consum', u'confid', u'bounc']
[u'coron', u'probe', u'fisher', u'duo', u'disappear']
[u'corri', u'promis', u'merci', u'wound', u'wallabi']
[u'council', u'act', u'eas', u'airli', u'beach', u'park', u'woe']
[u'council', u'apologis', u'memori', u'blunder']
[u'council', u'get', u'support', u'cycleway', u'path']
[u'council', u'green', u'light', u'extend', u'quarri', u'oper']
[u'councillor', u'protest', u'infrastructur', u'fund']
[u'council', u'stage', u'cost', u'shift', u'protest']
[u'council', u'urg', u'disobey', u'govt', u'asbesto', u'fluorid']
[u'council', u'weigh', u'bank', u'cost']
[u'courier', u'launch', u'tenni', u'circuit']
[u'court', u'examin', u'palm', u'inquest', u'evid', u'rule']
[u'court', u'tell', u'recent', u'search', u'falconio', u'remain']
[u'crown', u'casino', u'staff', u'hospit']
[u'cumnock', u'join', u'countri', u'hour', u'anniversari']
[u'davi', u'dwyer', u'unfair', u'contract', u'hear']
[u'dead', u'pigeon', u'rais', u'fear', u'bird', u'malaysia']
[u'deak', u'play', u'hamstr', u'injuri']
[u'dizzi', u'rofe', u'guid', u'redback', u'draw']
[u'doctor', u'rule', u'watson', u'summer']
[u'doctor', u'warn', u'public', u'bat', u'handl', u'threat']
[u'doubt', u'cast', u'gold', u'coast', u'market', u'campaign']
[u'downer', u'say', u'inquiri', u'exclud', u'govt']
[u'driver', u'die', u'highway', u'crash']
[u'earli', u'desalin', u'plant', u'result', u'encourag']
[u'eddi', u'review']
[u'emerg', u'servic', u'worker', u'meet', u'bendigo']
[u'england', u'mull', u'vaughan', u'fit']
[u'england', u'suffer', u'embarrass', u'tour', u'match', u'defeat']
[u'eugowra', u'flood', u'water', u'peak']
[u'europ', u'venus', u'express', u'readi', u'blast']
[u'evid', u'law', u'beef', u'tobacco', u'case']
[u'hospit', u'worker', u'lose', u'needlestick', u'compo', u'appeal']
[u'farmer', u'count', u'cost', u'floodwat', u'reced']
[u'father', u'get', u'life', u'sentenc', u'toddler', u'murder']
[u'feedback', u'seek', u'bateman', u'plan']
[u'forc', u'textil', u'factori', u'evacu']
[u'prefer', u'applic', u'drop']
[u'flood', u'emerg', u'eas', u'central', u'west']
[u'focus', u'turn', u'repair', u'break', u'hill', u'home']
[u'foreign', u'fishermen', u'frighten', u'solo', u'sailer']
[u'hold', u'indonesian', u'schoolgirl', u'behead']
[u'fraud', u'complaint', u'delay', u'final', u'afghan', u'vote', u'result']
[u'french', u'citi', u'impos', u'curfew', u'minor', u'riot']
[u'french', u'minist', u'delay', u'australia', u'trip']
[u'fresh', u'insight', u'terror', u'suspect']
[u'fuel', u'hike', u'tip', u'cost', u'farmer']
[u'fuel', u'price', u'expect', u'drop']
[u'fund', u'sport', u'hall', u'fame']
[u'gorokan', u'toddler', u'stab', u'polic']
[u'govt', u'accus', u'level', u'cross', u'briberi']
[u'govt', u'defend', u'motorway', u'construct', u'plan']
[u'govt', u'help', u'tiger', u'singapor', u'rout']
[u'govt', u'look', u'plug', u'loophol']
[u'govt', u'move', u'improv', u'canberra', u'intersect']
[u'govt', u'outlin', u'research', u'fund']
[u'govt', u'urg', u'commit', u'duck', u'hunt', u'season']
[u'gower', u'lead', u'roo', u'franc']
[u'greater', u'power', u'eas', u'pressur', u'region']
[u'green', u'group', u'forest', u'log']
[u'group', u'welfar', u'work', u'chang', u'fall', u'short']
[u'gunn', u'seek', u'dismiss', u'damag', u'claim']
[u'health', u'worker', u'action', u'stall', u'talk']
[u'hiddink', u'sidestep', u'talk', u'hostil']
[u'home', u'loan', u'rise', u'surpris', u'analyst']
[u'hope', u'roma', u'retain', u'extra', u'week', u'flight']
[u'hop', u'timor', u'deal', u'year']
[u'hous', u'financ', u'level', u'increas', u'surpris', u'analyst']
[u'hydrotherapi', u'fund', u'redirect', u'project']
[u'indigen', u'bodi', u'seek', u'fund', u'languag']
[u'indonesian', u'detaine', u'hold', u'darwin']
[u'indonesia', u'polic', u'battl', u'suspect', u'milit']
[u'bring', u'australia', u'centuri']
[u'debat', u'ahead', u'vote']
[u'islam', u'communiti', u'appeal', u'protect']
[u'jail', u'manag', u'suspend', u'escap']
[u'kearn', u'daughter', u'condit', u'improv']
[u'kimberley', u'group', u'cast', u'doubt', u'illeg', u'fish']
[u'lack', u'mainten', u'blame', u'failur']
[u'learn', u'centr', u'voic', u'unfair', u'treatment', u'concern']
[u'carr', u'win', u'crime', u'writer', u'book', u'honour']
[u'lion', u'send', u'roo', u'home', u'earli', u'nation']
[u'local', u'govt', u'group', u'get', u'broadband', u'push']
[u'local', u'meet', u'debat', u'anti', u'terror', u'law']
[u'longreach', u'student', u'win', u'section', u'nation']
[u'magistr', u'refus', u'bail', u'accus', u'pair']
[u'major', u'rule', u'juri']
[u'admit', u'involv', u'delhi', u'bomb', u'armi']
[u'plead', u'guilti', u'traffic', u'amphetamin']
[u'market', u'retreat', u'amid', u'hous', u'sector', u'concern']
[u'matterson', u'leav', u'raider', u'castleford']
[u'mayor', u'await', u'crowd', u'control', u'offer']
[u'mealamu', u'readi', u'rough', u'ride', u'irish']
[u'meat', u'council', u'back', u'move', u'abattoir', u'foreign']
[u'meet', u'determin', u'obstetrician', u'stay']
[u'megamart', u'store', u'chang', u'hand']
[u'memori', u'honour', u'leprosi', u'victim']
[u'milton', u'target', u'comer', u'record']
[u'miner', u'drill', u'gold', u'adelaid', u'hill']
[u'miner', u'look', u'gold', u'project']
[u'minist', u'proud', u'flood', u'relief', u'effort']
[u'motlop', u'settl', u'power']
[u'fear', u'highway', u'rout', u'cost', u'job']
[u'choos', u'rugbi', u'leagu', u'promot', u'visit']
[u'profit', u'top']
[u'clash', u'erupt', u'franc']
[u'newli', u'list', u'eye', u'expans']
[u'netbal', u'court', u'open']
[u'rush', u'extra', u'palm', u'drink', u'water']
[u'nurs', u'home', u'evacu', u'amid', u'flood']
[u'olymp', u'show', u'rock', u'potenti']
[u'opposit', u'criticis', u'bureaucrat', u'remov']
[u'opposit', u'seek', u'judici', u'inquiri', u'stash', u'cash']
[u'opposit', u'want', u'independ', u'probe', u'hospit']
[u'pair', u'await', u'bail', u'decis', u'terror', u'case']
[u'pelous', u'apologis', u'elbow', u'cannon']
[u'phar', u'lap', u'fake']
[u'philippin', u'probe', u'aust', u'miner', u'contamin']
[u'platypus', u'help', u'award', u'npws']
[u'blame', u'increas', u'terror', u'risk']
[u'deni', u'raid', u'anti', u'muslim']
[u'move', u'reassur', u'muslim', u'communiti']
[u'polic', u'better', u'violent', u'crime']
[u'polic', u'attack', u'sydney']
[u'polic', u'disarm', u'hospit', u'rampag']
[u'polic', u'investig', u'thornli', u'shoot']
[u'polic', u'seek', u'tare', u'shoot', u'wit']
[u'polic', u'review', u'consid', u'south', u'west', u'need']
[u'pont', u'keep', u'faith', u'katich', u'clark']
[u'power', u'station', u'worker', u'strike', u'workplac']
[u'princ', u'naseem', u'plot', u'comeback']
[u'probe', u'continu', u'dead', u'unit', u'blaze']
[u'probe', u'continu', u'pearl', u'worker', u'death']
[u'protest', u'chariti', u'dinner']
[u'union', u'odd', u'workplac', u'agreement']
[u'public', u'keep', u'dark', u'health', u'chang', u'councillor']
[u'public', u'urg', u'speak', u'famili', u'centr']
[u'idol', u'contest', u'victim', u'daylight', u'robberi']
[u'quick', u'attack', u'govt', u'betfair', u'deal']
[u'rain', u'offer', u'respit', u'southern', u'highland', u'farmer']
[u'redback', u'chase', u'victori']
[u'cross', u'call', u'victorian', u'blood', u'donor']
[u'region', u'airport', u'secur', u'risk', u'opposit']
[u'report', u'highlight', u'abus', u'risk', u'older', u'aborigin']
[u'report', u'highlight', u'elect', u'surgeri', u'wait', u'list']
[u'report', u'highlight', u'high', u'jobless', u'rate']
[u'report', u'highlight', u'hospit', u'distrust']
[u'report', u'reveal', u'england', u'profil']
[u'riot', u'decreas', u'amid', u'french', u'curfew', u'threat']
[u'robert', u'step', u'save', u'meander']
[u'roddick', u'join', u'shanghai', u'exodus']
[u'rush', u'anti', u'terror', u'tip', u'suspect']
[u'saddam', u'defenc', u'lawyer', u'shoot', u'dead']
[u'schooli', u'manag', u'board', u'chief', u'appoint']
[u'school', u'indigen', u'educ', u'honour']
[u'scullion', u'back', u'shorter', u'nuclear', u'dump', u'inquiri']
[u'offend', u'face', u'indefinit', u'jail', u'term']
[u'short', u'sharp', u'shock']
[u'shoot', u'suspect', u'charg', u'bedsid', u'hear']
[u'shoot', u'suspect', u'charg', u'attempt', u'murder']
[u'smoke', u'scare', u'virgin']
[u'southern', u'polic', u'chief', u'head', u'anti', u'terror']
[u'stop', u'silli', u'game', u'grella']
[u'stop', u'silli', u'game', u'socceroo']
[u'storm', u'damag', u'assess']
[u'super', u'slater']
[u'super', u'surf', u'titl', u'slater']
[u'survey', u'show', u'stay', u'home', u'christma']
[u'sydney', u'hous', u'raid']
[u'fail', u'woman', u'dead', u'hospit', u'toilet']
[u'govt', u'consid', u'public', u'place', u'photo']
[u'govt', u'unveil', u'game', u'amid', u'betfair']
[u'terror', u'group', u'accus', u'deni', u'bail']
[u'terror', u'threat', u'reignit', u'citizenship', u'debat']
[u'terror', u'suspect', u'move', u'high', u'secur', u'prison']
[u'charg', u'ireland', u'bank', u'raid']
[u'toowoomba', u'gladston', u'rail', u'line', u'develop']
[u'tough', u'time', u'ahead', u'bank']
[u'transport', u'issu', u'surfac', u'council', u'perform']
[u'line', u'post', u'loss']
[u'boss', u'name', u'manag', u'director']
[u'girl', u'wound', u'indonesian', u'shoot']
[u'ulan', u'coal', u'plan', u'discuss']
[u'union', u'reject', u'studi', u'citi', u'countri', u'educ']
[u'uruguay', u'coach', u'tactic', u'logist', u'woe']
[u'direct', u'forbid', u'tortur']
[u'renew', u'list', u'alleg', u'violat', u'religi']
[u'venus', u'express', u'begin', u'mission', u'success']
[u'voluntari', u'sell', u'scheme', u'spark', u'competit', u'fear']
[u'dentist', u'scholarship', u'plan']
[u'order', u'town', u'power']
[u'water', u'bomber', u'base', u'gambier']
[u'accus', u'spiritu', u'leader', u'benbrika']
[u'windi', u'bounc', u'bravo']
[u'wine', u'industri', u'join', u'riski', u'drink', u'campaign']
[u'workshop', u'offer', u'tourism', u'boost', u'local', u'firm']
[u'wright', u'tiger']
[u'introduc', u'electron', u'line', u'call']
[u'young', u'back', u'gregan']
[u'research', u'fund', u'boost']
[u'fix', u'lake', u'entranc']
[u'aborigin', u'flag', u'condom', u'health', u'award']
[u'tout', u'fund', u'drama']
[u'qaeda', u'claim', u'amman', u'blast', u'websit']
[u'call', u'portabl', u'provid', u'number']
[u'angri', u'african', u'torch', u'train', u'delay']
[u'terror', u'suspect', u'arrest', u'sydney']
[u'anti', u'terror', u'debat', u'kick']
[u'arsenal', u'sign', u'year', u'mexican']
[u'aspinal', u'join', u'call', u'nguyen', u'clemenc']
[u'atherton', u'tableland', u'centr']
[u'aussi', u'middleweight', u'soliman', u'face', u'contend']
[u'author', u'respond', u'factori', u'chemic', u'scare']
[u'author', u'thwart', u'coco', u'island', u'ammunit']
[u'inquiri', u'royal', u'commiss', u'power']
[u'focus', u'market', u'promot']
[u'bank', u'need', u'improv', u'servic', u'consum', u'group', u'say']
[u'blair', u'lose', u'counter', u'terror', u'vote']
[u'blast', u'kill', u'baghdad']
[u'bodi', u'appear', u'azahari', u'polic', u'chief']
[u'boxer', u'vitali', u'klitschko', u'retir']
[u'cctv', u'nation', u'guidelin']
[u'independ', u'assess', u'detaine']
[u'infrastructur', u'project', u'tape']
[u'canberra', u'univers', u'welcom', u'fund', u'boost']
[u'carmodi', u'leav', u'post']
[u'case', u'close', u'death', u'race', u'albatross']
[u'celtic', u'firm', u'battl']
[u'charg', u'lay', u'live', u'export', u'death']
[u'check', u'reveal', u'phar', u'lap', u'origin']
[u'china', u'report', u'bird', u'outbreak']
[u'christma', u'shopper', u'urg', u'bag']
[u'coalit', u'urg', u'review', u'sedit', u'law']
[u'coal', u'loader', u'help', u'boost', u'power', u'station']
[u'cole', u'nudg', u'ahead', u'tough', u'retail', u'time']
[u'concess', u'land', u'urban', u'leasehold']
[u'confer', u'tell', u'older', u'worker', u'need', u'option']
[u'council', u'leader', u'protest', u'resourc', u'shortfal']
[u'councillor', u'angri', u'allianc', u'move']
[u'council', u'settl', u'disput']
[u'crime', u'drop', u'record', u'north', u'coast', u'district']
[u'criminologist', u'question', u'crime', u'reduct', u'rat']
[u'crown', u'land', u'rent', u'chang', u'spark', u'concern', u'club']
[u'darwin', u'harbour', u'dredg', u'uncov', u'wwii', u'bomb', u'relic']
[u'debnam', u'target', u'tripodi', u'tunnel', u'hole']
[u'defeat', u'dim', u'clijsterss', u'hop', u'fairytal', u'finish']
[u'squad', u'join', u'search', u'miss', u'toddler']
[u'dont', u'fool', u'england', u'poor', u'form', u'warn', u'wasim']
[u'door', u'close', u'ballendella', u'school']
[u'doubt', u'rais', u'desalin', u'water', u'project']
[u'doubt', u'rais', u'elect', u'surgeri', u'claim']
[u'doubt', u'rais', u'shoalhaven', u'polic', u'level']
[u'dual', u'citizenship', u'terrorist', u'expel']
[u'dump', u'katich', u'lead', u'blue']
[u'elder', u'shock', u'plough', u'home']
[u'hunger', u'strike', u'vanston', u'urg']
[u'england', u'cook', u'cover', u'injur', u'vaughan']
[u'expenditur', u'review', u'head', u'govt', u'prioriti']
[u'explos', u'rock', u'amman', u'hotel']
[u'extra', u'rain', u'excus', u'wast', u'water']
[u'falconio', u'accus', u'abus', u'wit', u'court']
[u'famili', u'seek', u'help', u'grandmoth', u'killer']
[u'farmer', u'market', u'look', u'stallhold']
[u'fear', u'hold', u'telstra', u'research', u'job']
[u'fear', u'law', u'creat', u'tier', u'workforc']
[u'feder', u'nadal', u'draw', u'differ', u'master', u'group']
[u'feral', u'dog', u'blame', u'turtl', u'declin']
[u'ferguson', u'face', u'child', u'charg']
[u'fifa', u'step', u'world', u'kick', u'time']
[u'figur', u'fall', u'mackay', u'violent', u'crime']
[u'fingerprint', u'confirm', u'azahari', u'death', u'polic']
[u'firefight', u'battl', u'power', u'station', u'blaze']
[u'firefight', u'confid', u'park', u'blaze', u'contain']
[u'flood', u'affect', u'grower', u'grant']
[u'forest', u'commiss', u'maintain', u'harvest', u'plan', u'push']
[u'detaine', u'hospitalis', u'amid', u'hunger', u'strike']
[u'french', u'riot', u'lose', u'steam']
[u'time', u'job', u'plung', u'jobless', u'rate']
[u'fund', u'miner', u'extract', u'research']
[u'delay', u'select', u'nation', u'crunch', u'match']
[u'giant', u'panda', u'knot', u'thailand']
[u'glori', u'mori', u'negoti', u'troubl']
[u'govt', u'accus', u'neglig', u'scandal']
[u'govt', u'ask', u'ongo', u'fund', u'hour']
[u'govt', u'defend', u'chang', u'sick', u'leav']
[u'govt', u'deni', u'respons', u'roadwork', u'cost', u'blow']
[u'govt', u'green', u'light', u'coal']
[u'govt', u'refus', u'blanket', u'anti', u'vehicl', u'landmin']
[u'govt', u'commit', u'mulwala', u'site']
[u'govt', u'urg', u'extend', u'homeless', u'game', u'hous', u'plan']
[u'govt', u'victim', u'welcom', u'azahari', u'death']
[u'green', u'group', u'odd', u'timber', u'industri']
[u'green', u'betfair', u'legisl', u'chang']
[u'group', u'protest', u'croc', u'remov']
[u'hackett', u'lenton', u'lead', u'swimmer', u'year', u'nomin']
[u'hardi', u'half', u'year', u'profit']
[u'health', u'author', u'meet', u'famili', u'hospit']
[u'henri', u'magic', u'save', u'gallic', u'honour', u'costa', u'rica']
[u'hid', u'accus', u'doubl', u'standard']
[u'hiddink', u'mull', u'bresciano', u'fit']
[u'high', u'court', u'hear', u'wrong', u'life', u'claim']
[u'highway', u'revamp', u'rout', u'select', u'spotlight']
[u'hirsh', u'rejoin', u'labor', u'drink', u'drive', u'penalti']
[u'hockeyroo', u'gear', u'champion', u'trophi']
[u'hous', u'pass', u'debat', u'gag']
[u'howard', u'consid', u'cut', u'citizenship', u'convict']
[u'illeg', u'mine', u'creat', u'environ', u'concern']
[u'indigen', u'fisherman', u'unhappi', u'confisc']
[u'investig', u'continu', u'death']
[u'law', u'pass']
[u'japan', u'boost', u'drug', u'stockpil', u'combat', u'bird']
[u'johnson', u'hand', u'match']
[u'jone', u'back', u'gregan', u'perform']
[u'jone', u'take', u'blame', u'wallabi', u'lose', u'streak']
[u'joyc', u'oppos', u'sick', u'leav', u'rule']
[u'judg', u'overturn', u'speed', u'driver', u'jail', u'term']
[u'katich', u'symond', u'hodg']
[u'legisl', u'target', u'unpaid', u'fin']
[u'lennon', u'solo', u'work', u'onlin']
[u'local', u'volunt', u'offer', u'flood', u'help']
[u'local', u'join', u'commonwealth', u'game', u'baton', u'relay']
[u'local', u'take', u'petrol', u'price', u'accc', u'fair', u'trade']
[u'loeb', u'aim', u'record', u'break', u'year', u'perth']
[u'macgil', u'expect', u'test']
[u'machineri', u'help', u'tackl', u'burnett', u'river', u'water', u'weed']
[u'magistr', u'highlight', u'grow', u'drink', u'drive', u'case']
[u'charg', u'cannabi']
[u'get', u'month', u'prove', u'rehabilit']
[u'jail', u'credit', u'card', u'fraud', u'scheme']
[u'man', u'futur']
[u'mayor', u'beat', u'colleg', u'futur']
[u'mcginti', u'want', u'dual', u'citizen', u'guilti', u'terror']
[u'medic', u'research', u'institut', u'deliv', u'award']
[u'meteor', u'shower', u'startl', u'riverina', u'resid']
[u'millaa', u'millaa', u'fall', u'heritag', u'regist']
[u'miner', u'get', u'green', u'light', u'extend', u'gawler', u'craton']
[u'mix', u'southern', u'crime', u'stat']
[u'mori', u'keen', u'remain', u'glori']
[u'moroccan', u'stowaway', u'face', u'deport']
[u'optimist', u'propos', u'defenc', u'track']
[u'murray', u'malle', u'water', u'alloc', u'plan', u'start']
[u'hold', u'share', u'market']
[u'short', u'stay', u'centr', u'moot', u'koonana', u'resid']
[u'australian', u'amman', u'victim']
[u'chang', u'notic', u'palm', u'drink', u'water']
[u'immun', u'terror', u'howard']
[u'flood', u'damag', u'top']
[u'doctor', u'shortag', u'crisi', u'point']
[u'nuclear', u'dump', u'inquiri', u'short']
[u'unemploy', u'fall', u'year']
[u'omalley', u'share', u'shanghai', u'lead']
[u'open', u'invit', u'muslim', u'festiv', u'celebr']
[u'optus', u'half', u'year', u'profit', u'slide']
[u'ouyen', u'cathol', u'school', u'face', u'closur']
[u'pack', u'gold']
[u'parliament', u'tree', u'face', u'chop']
[u'pierc', u'battl', u'past', u'clijster', u'championship']
[u'pierc', u'down', u'dementieva']
[u'plan', u'track', u'kununurra', u'child', u'care', u'centr']
[u'polic', u'investig', u'pari', u'hilton', u'crash']
[u'polic', u'search', u'fail', u'miss', u'toddler']
[u'polic', u'review', u'bomb', u'threat', u'handl']
[u'polic', u'road', u'spike', u'chase']
[u'polic', u'work', u'confirm', u'azahari', u'death']
[u'powder', u'plane', u'spark', u'emerg']
[u'power', u'station', u'plan', u'look', u'certain']
[u'prospector', u'dig', u'buri', u'treasur']
[u'protest', u'demand', u'jarrah', u'forest', u'log']
[u'public', u'chanc', u'hear', u'fuel', u'price', u'polici']
[u'public', u'urg', u'look', u'snake', u'threat']
[u'question', u'rais', u'health', u'servic', u'financ']
[u'rail', u'station', u'make', u'heritag', u'list']
[u'rape', u'rise', u'report', u'north']
[u'report', u'dispel', u'myth', u'plantat', u'expans', u'link']
[u'report', u'find', u'bank', u'invest', u'custom']
[u'research', u'studi', u'alcohol', u'effect', u'brain']
[u'retir', u'rfds', u'chief', u'demand', u'greater', u'recognit']
[u'plan', u'port', u'augusta', u'rout']
[u'rural', u'doctor', u'group', u'back', u'scholarship', u'scheme']
[u'sandbag', u'stay', u'despit', u'reced', u'water']
[u'sartor', u'interven', u'develop']
[u'win', u'centr', u'warfar', u'destroy', u'program']
[u'school', u'kid', u'offer', u'swedish', u'queen', u'abba', u'perform']
[u'schwarzenegg', u'spar', u'republican', u'elector']
[u'scientist', u'hope', u'ozon', u'hole', u'shrink']
[u'secreci', u'surround', u'apec', u'outfit']
[u'shimon', u'pere', u'lose', u'labour', u'leadership', u'vote']
[u'arrest', u'terror', u'go']
[u'soldier', u'return', u'iraq']
[u'space', u'tractor', u'avert', u'asteroid', u'armageddon']
[u'storm', u'damag', u'home', u'demolish']
[u'suicid', u'bomber', u'kill', u'baghdad', u'restaur']
[u'suicid', u'bomber', u'amman', u'blast']
[u'swedish', u'royal', u'visit', u'barossa', u'wineri']
[u'symbol', u'peac', u'hope', u'promot', u'festiv']
[u'symond', u'thank', u'second', u'chanc']
[u'tafe', u'meet', u'highlight', u'concern']
[u'govt', u'remain', u'commit', u'struggl', u'line']
[u'parliament', u'approv', u'betfair', u'legisl']
[u'teenag', u'seamer', u'set', u'india', u'emphat']
[u'territorian', u'urg', u'join', u'law', u'protest']
[u'thailand', u'aust', u'sign', u'anti', u'terror', u'pact']
[u'thoma', u'trial', u'delay', u'anti', u'terror', u'raid']
[u'thrumster', u'develop', u'propos']
[u'miner', u'job']
[u'lead', u'drug', u'raid']
[u'torr', u'strait', u'fish', u'reform', u'includ', u'exclus']
[u'transplant', u'student', u'win', u'rhode', u'scholarship']
[u'tribun', u'hear', u'high', u'rise', u'stoush']
[u'true', u'courser', u'take', u'bendigo']
[u'udal', u'hop', u'patienc', u'reward']
[u'doctor', u'express', u'campaign']
[u'union', u'hit', u'learn', u'centr', u'closur']
[u'union', u'lodg', u'wage', u'claim', u'ahead', u'chang']
[u'uranium', u'group', u'pressur', u'govt', u'chang', u'polici']
[u'uruguayan', u'scar', u'socceroo']
[u'uruguay', u'coach', u'hail', u'inspir', u'montero']
[u'victim', u'demand', u'hardi', u'finalis', u'asbesto', u'compo', u'deal']
[u'wallabi', u'ahead', u'theyr', u'jone']
[u'want', u'terrorist', u'suspect', u'suicid']
[u'warm', u'weather', u'offer', u'thiev', u'opportun', u'polic']
[u'water', u'major', u'issu', u'eurobodalla', u'landhold']
[u'water', u'restrict', u'reservoir', u'fault', u'fix']
[u'wealthi', u'countri', u'hold', u'trade', u'talk', u'vail']
[u'west', u'indi', u'target', u'walsh', u'mentor']
[u'wheat', u'harvest', u'forecast', u'near', u'record', u'level']
[u'whitten', u'oval', u'demolit', u'begin']
[u'investig', u'quak', u'victim', u'cholera', u'fear']
[u'widespread', u'buy', u'see', u'wall', u'street', u'edg', u'ahead']
[u'wild', u'dog', u'string', u'tree', u'push', u'aerial']
[u'wit', u'tell', u'drug', u'run', u'falconio', u'accus']
[u'woman', u'die', u'lightn', u'strike']
[u'world', u'trade', u'talk', u'doom', u'fail', u'negoti']
[u'youth', u'face', u'court', u'hous']
[u'zarqawi', u'suspect', u'jordan', u'bomb']
[u'arrest', u'melbourn', u'drug', u'raid']
[u'afghan', u'cargo', u'plane', u'crash']
[u'year', u'youth', u'arrest', u'drive']
[u'year', u'croc', u'argentina']
[u'aborigin', u'input', u'seek', u'land', u'right', u'review']
[u'academ', u'urg', u'fitzgerald', u'reform']
[u'team', u'head', u'quak', u'ravag', u'pakistan']
[u'africa', u'elect', u'femal', u'leader', u'win', u'liberian']
[u'alcohol', u'accord', u'educ', u'ramp']
[u'alcohol', u'seller', u'warn', u'schooli', u'crackdown']
[u'anglican', u'head', u'tamworth', u'event']
[u'aqi', u'close', u'goat', u'meatwork']
[u'aquacultur', u'studi', u'divid', u'communiti']
[u'auction', u'tooth', u'napoleon', u'root']
[u'australian', u'paus', u'rememb', u'dead']
[u'bail', u'refus', u'sydney', u'terror', u'suspect']
[u'bank', u'push', u'market', u'higher']
[u'bartlett', u'urg', u'govt', u'invest', u'meat']
[u'beaut', u'bloke', u'come', u'hyden']
[u'beazley', u'urg', u'coalit', u'vote', u'sedit']
[u'bendigo', u'honour', u'fall', u'soldier']
[u'bistro', u'fin', u'bandaid', u'stir']
[u'bodi', u'azahari', u'identifi']
[u'brisban', u'mayor', u'slam', u'neighbour', u'sprinkler', u'decis']
[u'bushrang', u'build', u'total', u'earli', u'stumbl']
[u'electron', u'bracelet', u'monitor']
[u'higher', u'prescrib', u'burn', u'target']
[u'road']
[u'carlsson', u'crash', u'ralli', u'australia']
[u'child', u'abus', u'notif', u'rise']
[u'china', u'report', u'bird', u'outbreak']
[u'coach', u'urg', u'scout', u'countri', u'area', u'talent']
[u'communiti', u'hous', u'face', u'uncertain', u'futur']
[u'compost', u'tip', u'help', u'fight', u'diseas']
[u'concern', u'rais', u'saleyard', u'submiss', u'process']
[u'council', u'green', u'light', u'gold']
[u'councillor', u'fight', u'insur']
[u'council', u'reject', u'albani', u'foreshor', u'delay', u'claim']
[u'council', u'wasnt', u'tell', u'lane', u'cove', u'tunnel', u'chang']
[u'court', u'hear', u'alleg', u'bomb', u'plot']
[u'court', u'order', u'halt', u'anti', u'log', u'protest']
[u'court', u'reject', u'bail', u'terror', u'suspect']
[u'croc', u'break', u'lose', u'streak']
[u'croc', u'sight', u'spark', u'warn']
[u'croc', u'look', u'shut', u'darnel', u'cattalini']
[u'croc', u'look', u'shut', u'taipan', u'player']
[u'croesus', u'mine', u'chairman', u'quit']
[u'name', u'panda']
[u'cycl', u'death', u'prompt', u'coron', u'road', u'race']
[u'difficulti', u'delay', u'terror', u'case']
[u'doctor', u'see', u'posit', u'deal']
[u'domest', u'violenc', u'project', u'win', u'widespread', u'approv']
[u'donat', u'help', u'theatr', u'group', u'avoid', u'final', u'curtain']
[u'call', u'fund']
[u'drug', u'dealer', u'face', u'charg']
[u'coli', u'pesticid', u'import', u'vegi', u'test']
[u'spring', u'gulli', u'power', u'station']
[u'england', u'offer', u'huge', u'cash', u'bonus', u'world']
[u'euthanasia', u'info', u'forc', u'nitschk', u'offshor']
[u'expert', u'baffl', u'falconio', u'evid']
[u'falconio', u'accus', u'carri', u'gun', u'court', u'tell']
[u'famili', u'flee', u'burn', u'hous']
[u'feedback', u'seek', u'nation', u'park', u'manag', u'plan']
[u'fisher', u'sand', u'clear', u'fund']
[u'fletcher', u'store', u'add', u'heritag', u'regist']
[u'french', u'polic', u'charg', u'assault', u'teen']
[u'fring', u'festiv', u'put', u'emphasi', u'recycl']
[u'fruit', u'grower', u'inspect', u'hail', u'crop']
[u'fund', u'announc', u'gippsland', u'high', u'school']
[u'futur', u'tenni', u'star', u'head', u'berri']
[u'game', u'prepar', u'tick', u'approv']
[u'attend', u'illawarra', u'remembr']
[u'glori', u'knight']
[u'canola', u'contamin', u'report', u'releas']
[u'govern', u'work', u'charlestown', u'masterplan']
[u'govt', u'accus', u'bulli', u'tactic', u'forc']
[u'govt', u'bypass', u'council', u'approv', u'denmark', u'wind']
[u'govt', u'dismiss', u'patronag', u'concern']
[u'govt', u'quiz', u'kosciuszko', u'bait', u'plan']
[u'gower', u'warn', u'french', u'resist']
[u'green', u'seek', u'inquiri', u'jockey', u'offer', u'alleg']
[u'gregan', u'notic', u'horan']
[u'gungahlin', u'roadwork', u'delay', u'slow', u'upgrad']
[u'hacker', u'soni', u'softwar', u'hide']
[u'health', u'servic', u'face', u'fund']
[u'henri', u'take', u'black']
[u'heritag', u'council', u'reject', u'camberwel', u'station', u'list']
[u'heroin', u'addict', u'get', u'year', u'taxi', u'driver', u'murder']
[u'hodg', u'form', u'centuri', u'windi']
[u'hodg', u'justifi', u'test']
[u'hodg', u'tune', u'half', u'centuri']
[u'hope', u'aussi', u'death', u'lose', u'labor']
[u'hope', u'health', u'servic', u'fund', u'continu']
[u'hospit', u'emerg', u'servic', u'delay', u'creat', u'angst']
[u'hunter', u'run', u'senior', u'year', u'award']
[u'idea', u'aplenti', u'harboursid', u'project', u'area']
[u'indonesian', u'polic', u'gunfir', u'kill', u'azahari']
[u'iran', u'free', u'detain', u'aussi', u'british', u'coupl']
[u'japanes', u'growth', u'exceed', u'expect']
[u'jone', u'call', u'meet']
[u'judg', u'rule', u'priest', u'child', u'case']
[u'kearn', u'daughter', u'move', u'intens', u'care']
[u'kimberley', u'pilbara', u'resid', u'aust']
[u'land', u'resumpt', u'plan', u'hospit']
[u'piec', u'world', u'jigsaw', u'fall', u'place']
[u'leader', u'condemn', u'jordan', u'worst', u'bomb', u'attack']
[u'lennon', u'defend', u'race', u'minist', u'jockey', u'claim']
[u'lennon', u'defend', u'race', u'minist']
[u'lion', u'recal', u'horn', u'crunch', u'nation', u'match']
[u'lobbi', u'group', u'urg', u'fuel', u'rebat', u'boost', u'highway']
[u'loeb', u'crash', u'ralli', u'australia']
[u'log', u'firm', u'take', u'legal', u'action', u'forest']
[u'major', u'youth', u'detentiion', u'centr']
[u'make', u'ordinari', u'look', u'extraordinari']
[u'charg', u'drug', u'weapon']
[u'jail', u'teen', u'heroin', u'case']
[u'jail', u'unpaid', u'fin', u'abalon', u'possess']
[u'man', u'bodi', u'recov', u'floodwat']
[u'marshal', u'sign', u'tiger']
[u'mayor', u'talk', u'miner', u'loss']
[u'mental', u'health', u'action', u'plan', u'public', u'view']
[u'mental', u'health', u'tribun', u'chief', u'rais', u'medic']
[u'mike', u'tyson', u'arrest', u'brazil']
[u'corner', u'revamp']
[u'minimis', u'fear', u'terror', u'raid', u'doctor', u'urg']
[u'ministeri', u'prompt', u'treason', u'complaint']
[u'minist', u'join', u'gold', u'coast', u'remembr', u'servic']
[u'minist', u'launch', u'countri', u'health', u'strategi']
[u'minist', u'surpris', u'state', u'mildura', u'rail', u'line']
[u'miss', u'pair', u'safe']
[u'molong', u'flood', u'demolit', u'expect']
[u'morwel', u'mark', u'remembr']
[u'fear', u'loss', u'truck', u'charg', u'plan']
[u'say', u'earli', u'criticis', u'bypass', u'rout', u'option']
[u'see', u'benefit', u'process', u'plant']
[u'nation', u'paus', u'remembr']
[u'news', u'corp', u'report', u'loss']
[u'techniqu', u'halt', u'parkinson']
[u'charg', u'lay', u'suspici']
[u'nois', u'complaint', u'trigger', u'work', u'chang']
[u'north', u'korean', u'nuclear', u'talk', u'littl', u'progress']
[u'flood', u'bring', u'good', u'news']
[u'offici', u'inspect', u'site', u'plan', u'water']
[u'ohern', u'impress', u'shanghai']
[u'opinion', u'mix', u'nude', u'beach', u'plan']
[u'optometrist', u'focus', u'drop', u'dilemma']
[u'palaszczuk', u'stand', u'dept', u'farmer', u'suicid']
[u'palm', u'land', u'woe', u'frustrat', u'beatti']
[u'patrick', u'takeov', u'reduc', u'freight']
[u'pentagon', u'consid', u'hick', u'trial', u'futur']
[u'perman', u'magistr', u'plan', u'region']
[u'perth', u'businessman', u'death', u'investig']
[u'phil', u'kearn', u'daughter', u'move', u'intens']
[u'piano', u'teacher', u'jail', u'abus', u'student']
[u'defend', u'kerr']
[u'upbeat', u'bill', u'chanc']
[u'podiatrist', u'jail', u'secret', u'film', u'teen']
[u'polic', u'help', u'miss', u'filipino']
[u'polic', u'clear', u'motorist', u'drown', u'case']
[u'polic', u'bali', u'bomber', u'videotap']
[u'polic', u'hunt', u'wyndham', u'rapist']
[u'polic', u'drug', u'raid', u'arrest']
[u'polic', u'step', u'search', u'miss', u'sydney', u'toddler']
[u'polic', u'boost', u'number', u'coffin', u'cheater', u'event']
[u'polic', u'warn', u'fals', u'terror', u'alert']
[u'polic', u'farm', u'death', u'victim']
[u'polio', u'erad', u'african', u'state']
[u'polo', u'play', u'brother', u'hall', u'fame', u'honour']
[u'pork', u'industri', u'clear', u'wast', u'diseas']
[u'preschool', u'oper', u'financi', u'pressur']
[u'pressur', u'mount', u'uranium', u'mine', u'licenc']
[u'prosecutor', u'seek', u'month', u'sentenc', u'michell']
[u'prosecutor', u'seek', u'month', u'lesli']
[u'public', u'urg', u'rememb', u'brave', u'soldier']
[u'boe', u'worker', u'ralli', u'colleagu']
[u'rail', u'standardis', u'plan', u'rais', u'region', u'question']
[u'rain', u'fall', u'western']
[u'rain', u'help', u'lift', u'storag']
[u'record', u'size', u'parad', u'tip', u'melbourn', u'hero']
[u'region', u'feel', u'welfar', u'chang', u'impact', u'opposit']
[u'remembr', u'ceremoni', u'fit']
[u'rescuer', u'pluck', u'strand', u'yachti', u'bass', u'strait']
[u'richard', u'lead', u'practic', u'symmon', u'plain']
[u'richmond', u'properti', u'break', u'local', u'auction', u'record']
[u'riverina', u'honour', u'defenc', u'sacrific']
[u'riverland', u'paus', u'remembr']
[u'royal', u'photograph', u'lord', u'lichfield', u'die']
[u'govt', u'hail', u'high', u'elect', u'surgeri', u'procedur']
[u'saleyard', u'feel', u'beef', u'return', u'japan']
[u'sanderon', u'back', u'port', u'young', u'gun']
[u'soldier', u'bodi', u'return', u'perth']
[u'search', u'miss', u'toddler', u'intensifi']
[u'search', u'miss', u'remot', u'area']
[u'sedit', u'law', u'essenti', u'unchang', u'say']
[u'selector', u'lose', u'patienc', u'katich']
[u'crew', u'monitor', u'flood', u'effort']
[u'seven', u'boss', u'say', u'damag', u'claim', u'unwav']
[u'sharapova', u'down', u'davenport']
[u'ship', u'tender', u'delay', u'creat', u'region', u'concern']
[u'socceroo', u'expect', u'physic', u'clash']
[u'south', u'africa', u'inaugur', u'giant', u'telescop']
[u'lanka', u'jayasuriya', u'indian', u'seri']
[u'stepfath', u'charg', u'year', u'old', u'murder']
[u'stoddart', u'ozjet', u'get', u'licenc']
[u'storm', u'damag', u'break', u'hill', u'hous']
[u'storm', u'leav', u'nundl', u'resid', u'dark']
[u'subdu', u'palestinian', u'mark', u'year', u'arafat', u'die']
[u'swedish', u'king', u'queen', u'bush', u'tucker']
[u'swedish', u'royal', u'tast', u'indigen', u'cultur']
[u'tasmanian', u'fail', u'heed', u'anti', u'smoke', u'messag']
[u'taxi', u'driver', u'killer', u'get', u'year']
[u'teen', u'dous', u'petrol', u'violent', u'assault']
[u'teen', u'game', u'bing', u'prompt', u'curfew']
[u'terror', u'accus', u'student', u'sheikh']
[u'thoma', u'fin', u'post', u'match', u'fight', u'franc']
[u'thousand', u'expect', u'attend', u'swap', u'meet']
[u'thousand', u'mark', u'remembr']
[u'tourism', u'campaign', u'help', u'boost', u'visitor', u'kalgoorli']
[u'toyota', u'confirm', u'switch', u'bridgeston']
[u'tradit', u'owner', u'seek', u'memori', u'wave', u'hill']
[u'transmiss', u'latest', u'servic', u'begin', u'soon']
[u'tree', u'help', u'form', u'coloni']
[u'market', u'recov', u'trade', u'deficit', u'setback']
[u'senat', u'demand', u'report', u'prison']
[u'vaughan', u'pakistan', u'test']
[u'veteran', u'join', u'singaporean', u'clemenc']
[u'victori', u'jet', u'battl', u'goalless', u'draw']
[u'victori', u'jet', u'deadlock', u'half', u'time']
[u'govt', u'commit', u'fix', u'perth', u'river']
[u'wallabi', u'need', u'game', u'plan', u'lynagh']
[u'warn', u'go', u'macgil']
[u'weak', u'job', u'figur', u'pull', u'dollar']
[u'western', u'mark', u'remembr']
[u'west', u'indi', u'hodg', u'readi', u'hobart', u'test']
[u'wimmera', u'malle', u'stop', u'remembr']
[u'wineri', u'updat', u'oversea', u'green']
[u'young', u'healthi', u'greater', u'possibl', u'risk', u'bird']
[u'afghan', u'polic', u'kill', u'taliban', u'attack']
[u'baxter', u'detaine', u'evacu']
[u'declar', u'extra', u'public', u'holiday']
[u'govt', u'seek', u'ownership', u'canberra', u'stadium']
[u'advanc', u'uruguayan', u'conting', u'fail', u'arriv']
[u'agassi', u'want', u'year']
[u'qaeda', u'blame', u'jordan', u'suicid', u'blast']
[u'annan', u'make', u'visit', u'baghdad']
[u'anstey', u'push', u'tiger', u'second']
[u'atkinson', u'notch', u'twin', u'stage', u'win', u'perth']
[u'australia', u'england', u'anxious', u'restor', u'credibl']
[u'australian', u'interrog', u'dont', u'involv', u'tortur']
[u'deni', u'iraq', u'wheat', u'order', u'cancel']
[u'azahari', u'death', u'allah']
[u'azahari', u'death', u'prompt', u'warn', u'attack']
[u'bacon', u'vicious', u'ruthless', u'cheek', u'say']
[u'beatti', u'rule', u'interven', u'water', u'stoush']
[u'beij', u'unveil', u'olymp', u'mascot']
[u'better', u'techniqu', u'spain', u'say']
[u'bird', u'threat', u'spread', u'kuwait']
[u'defend', u'delay', u'go', u'public', u'fuel', u'shortag']
[u'briberi', u'document', u'legal', u'lennon']
[u'bullet', u'wildcat', u'singapor', u'showdown']
[u'bushrang', u'lose', u'late', u'wicket']
[u'bushrang', u'windi']
[u'bush', u'say', u'critic', u'rewrit', u'histori', u'iraq']
[u'cambodia', u'approv', u'border', u'treati']
[u'cameroon', u'detain', u'australian', u'report']
[u'canberra', u'airport', u'confid', u'march']
[u'canberra', u'join', u'celebr']
[u'confus', u'iraq', u'suspend', u'aust']
[u'cosgrov', u'hit', u'wicket', u'fall']
[u'court', u'indict', u'sack', u'african', u'deputi', u'presid']
[u'courtney', u'walsh', u'interview']
[u'dana', u'vale', u'call', u'return', u'hick', u'australia']
[u'detaine', u'question', u'baxter', u'fire']
[u'downer', u'rule', u'ask', u'hick', u'releas']
[u'drought', u'figur', u'encourag', u'minist', u'say']
[u'dwight', u'shrug', u'play', u'comparison']
[u'execut', u'warn', u'obstruct', u'accc', u'probe']
[u'famili', u'seek', u'help', u'argentin', u'jail']
[u'fan', u'turn', u'away', u'landsdown']
[u'fiji', u'fight', u'wale']
[u'baxter']
[u'fire', u'baxter', u'detent', u'centr']
[u'franc', u'riot', u'alert', u'holiday', u'weekend']
[u'freddi', u'want', u'vaughan']
[u'german', u'parti', u'finalis', u'coalit', u'deal']
[u'girl', u'die', u'father', u'miss', u'boat', u'accid']
[u'glori', u'class', u'knight']
[u'govt', u'continu', u'fund', u'distast', u'nonsens']
[u'green', u'oppos', u'anti', u'terror']
[u'harmison', u'flintoff', u'wrest', u'initi', u'england']
[u'hetherington', u'vault', u'share', u'lpga', u'lead']
[u'hick', u'stay', u'howard']
[u'hiddink', u'tight', u'lip', u'start', u'line']
[u'home', u'town', u'hero', u'pathan', u'sink', u'lanka']
[u'howard', u'continu', u'push', u'sell', u'chang']
[u'immun', u'respons', u'make', u'dead']
[u'indian', u'bowler', u'troubl', u'lanka']
[u'india', u'pakistan', u'open', u'kshmir', u'relief', u'cross']
[u'indonesian', u'raid', u'world', u'biggest', u'drug', u'plant']
[u'innoc', u'fall', u'foul', u'anti', u'terror', u'law']
[u'japanes', u'honeymoon', u'drown']
[u'jordan', u'question', u'dozen', u'amman', u'bomb']
[u'saddam', u'aid', u'report', u'die']
[u'labor', u'want', u'inquiri', u'probe', u'govt', u'role']
[u'loeb', u'crash', u'ralli', u'australia']
[u'mike', u'hussey', u'interview']
[u'mobil', u'phone', u'rude', u'plumb', u'depth']
[u'mundin', u'criticis', u'home', u'ownership', u'stanc']
[u'korea', u'insist', u'sanction']
[u'evid', u'widespread', u'corrupt', u'polic']
[u'pain', u'gain', u'wallabi', u'sweat']
[u'consid', u'regul', u'chines', u'medicin']
[u'ohern', u'wood', u'lurk', u'china']
[u'pierc', u'maintain', u'unbeaten', u'record']
[u'piraci', u'link', u'mother', u'ship']
[u'commit', u'million', u'ipswich', u'motorway', u'upgrad']
[u'polic', u'baffl', u'toddler', u'disappear']
[u'polic', u'baton', u'charg', u'pakistan', u'quak', u'survivor']
[u'polic', u'check', u'requir', u'child', u'worker', u'govt']
[u'polic', u'close', u'bali', u'bomb', u'associ']
[u'polic', u'close', u'fugit']
[u'polic', u'commission', u'ask', u'investig']
[u'polic', u'investig', u'baxter', u'fire']
[u'princip', u'impress', u'umbakumba', u'number']
[u'propos', u'backyard', u'pool', u'australian']
[u'public', u'meet', u'ban', u'pari']
[u'ranger', u'edg', u'boomer', u'thriller']
[u'redback', u'slump', u'adelaid', u'oval']
[u'get', u'argentina', u'friend']
[u'knock', u'solberg', u'ralli', u'australia']
[u'saddam', u'number', u'dead']
[u'parliament', u'break', u'month']
[u'scientist', u'examin', u'abalon', u'bed']
[u'scot', u'boot', u'british', u'olymp', u'team', u'hop']
[u'search', u'continu', u'miss', u'sydney', u'toddler']
[u'socceroo', u'touch']
[u'stacey', u'jone', u'retir']
[u'stay', u'posit', u'walsh', u'tell', u'windi']
[u'superjumbo', u'land', u'brisban']
[u'swedish', u'royal', u'visit', u'rock', u'paint']
[u'tander', u'take', u'race', u'tasmania']
[u'territorian', u'warn', u'food', u'safeti']
[u'terror', u'suspect', u'innoc', u'prove', u'guilti']
[u'terror', u'suspect', u'remain', u'high', u'secur']
[u'thorp', u'break', u'pool', u'exil']
[u'thousand', u'write', u'letter', u'support', u'nguyen']
[u'kill', u'baghdad', u'market', u'bomb']
[u'toddler', u'get', u'confirm', u'bird']
[u'trio', u'subject', u'mental', u'tortur', u'iran']
[u'hick', u'free', u'coalit', u'say']
[u'tyson', u'front', u'court', u'brazil']
[u'forc', u'tear', u'liberia', u'poll', u'protest']
[u'forc', u'tear', u'weah', u'support']
[u'unit', u'dress', u'room', u'bug', u'chelsea', u'clash']
[u'probe', u'grill', u'lebanon', u'presid', u'hariri', u'murder']
[u'take', u'syria', u'human', u'right']
[u'track', u'symmon', u'plain']
[u'warrior', u'cruis', u'victori', u'adelaid']
[u'toad', u'bust', u'commit', u'welcom']
[u'wheelchair', u'bind', u'hijack', u'sentenc']
[u'windi', u'look', u'shaki', u'bushrang']
[u'windi', u'bushrang']
[u'wound', u'terror', u'suspect', u'transfer', u'jail']
[u'face', u'court', u'alleg', u'cockfight', u'racket']
[u'actu', u'plan', u'protest']
[u'adelaid', u'snatch', u'late', u'gosford']
[u'adf', u'presenc', u'afghanistan', u'boost']
[u'african', u'leader', u'meet', u'nigeria']
[u'airbus', u'touch', u'sydney']
[u'alic', u'spring', u'polic', u'investig', u'woman', u'death']
[u'annan', u'iraq']
[u'aussi', u'cricket', u'famili']
[u'australia', u'half', u'time']
[u'baxter', u'fire', u'desper']
[u'beazley', u'step', u'attack', u'law']
[u'best', u'report', u'skin', u'bone']
[u'blast', u'rock', u'baghdad', u'near', u'green', u'zone']
[u'bodi', u'macleay', u'river']
[u'bomber', u'wife', u'arrest', u'amman', u'blast']
[u'brack', u'rule', u'extra', u'counter', u'terror', u'resourc']
[u'brazil', u'hammer', u'hapless', u'emirati']
[u'brolga', u'award', u'recognis', u'tourism', u'industri']
[u'brown', u'call', u'inquiri', u'senat', u'recal']
[u'bull', u'nerv', u'clinch', u'blue']
[u'burn', u'treatment', u'move', u'closer', u'human', u'trial']
[u'campaign', u'target', u'indigen', u'domest', u'violenc']
[u'capit', u'triumph', u'lynx']
[u'chanderpaul', u'half', u'guid', u'windi', u'lunch']
[u'citi', u'lock', u'apec', u'talk']
[u'clark', u'defend', u'japan', u'titl']
[u'comedian', u'hold', u'protest', u'concert', u'sedit']
[u'commentari', u'highlight', u'australia', u'uruguay']
[u'council', u'unlik', u'approv', u'land', u'rezon', u'request']
[u'czech', u'claim', u'away', u'norway']
[u'dairi', u'industri', u'warn', u'milk', u'shortag']
[u'delhi', u'bomb', u'suspect', u'arrest', u'polic']
[u'democrat', u'defend', u'stanc', u'terror', u'law']
[u'diver', u'join', u'search', u'miss']
[u'dump', u'debat', u'stifl', u'territorian', u'martin', u'say']
[u'dun', u'clear', u'ray']
[u'duval', u'win', u'ralli', u'australia', u'atkinson', u'fourth']
[u'dwight', u'go', u'scoreless', u'trinidad', u'hold', u'bahrain']
[u'england', u'wallabi', u'woe']
[u'expand', u'search', u'fail', u'miss', u'toddler']
[u'question', u'fire']
[u'french', u'monk', u'nun', u'beatifi', u'vatican']
[u'french', u'polic', u'alert', u'pari', u'curfew', u'lyon']
[u'gallop', u'dismiss', u'call', u'lower', u'speed', u'limit']
[u'giro', u'head', u'hill']
[u'govt', u'chang', u'labor', u'power', u'beazley']
[u'great', u'britain', u'shock', u'kiwi']
[u'green', u'continu', u'push', u'nation', u'right']
[u'hetherington', u'shadow', u'alabama', u'lead']
[u'hospit', u'investig', u'man', u'recoveri']
[u'howard', u'criticis', u'ipswich', u'motorway', u'fund']
[u'howel', u'hold', u'tiger', u'shanghai']
[u'industri', u'action', u'didnt', u'hamper', u'flood', u'respons']
[u'inquiri', u'probe', u'alleg', u'shoot']
[u'investig', u'continu', u'baxter', u'fire']
[u'iran', u'reject', u'claim', u'atom', u'weapon', u'work']
[u'iran', u'nuclear', u'stanc', u'concern', u'downer']
[u'iraq', u'deni', u'wheat', u'contract', u'suspend']
[u'iraq', u'suspend', u'aust', u'wheat', u'order']
[u'chang', u'tasmania', u'hard']
[u'isra', u'mark', u'rabin', u'anniversari']
[u'jaqu', u'power', u'blue', u'huge', u'total']
[u'jetstar', u'receiv', u'support', u'govt']
[u'jockey', u'criticis', u'green', u'betfair', u'stoush']
[u'jordanian', u'king', u'pledg', u'zarqawi']
[u'kangaroo', u'bounc', u'franc']
[u'king', u'vow', u'zarqawi']
[u'lib', u'need', u'provid', u'altern']
[u'lifesav', u'warn', u'swimmer', u'rescu']
[u'link', u'spend', u'fund', u'youth', u'educ', u'program']
[u'ljubic', u'outgun', u'coria', u'master']
[u'luxford', u'clinch', u'triathlon', u'world', u'titl']
[u'malaysia', u'islam', u'parti', u'question', u'azahari', u'guilt']
[u'drown', u'coff', u'harbour', u'beach']
[u'marin', u'edg', u'adelaid']
[u'martyn', u'doubt', u'warrior']
[u'mauresmo', u'pierc', u'final']
[u'mcrae', u'forc', u'ralli', u'australia']
[u'miss', u'man', u'bodi', u'harbour']
[u'neethl', u'edmiston', u'target', u'durban']
[u'rail', u'pass', u'aim', u'backpack']
[u'zealand', u'gambl', u'pay', u'ireland']
[u'nguyen', u'mother', u'urg', u'govt', u'execut']
[u'quick', u'scrum', u'say', u'jone']
[u'extend', u'counter', u'terror', u'unit']
[u'opposit', u'want', u'wheat', u'royal', u'commiss']
[u'owen', u'stun', u'argentina', u'late', u'goal']
[u'park', u'reshuffl', u'civic']
[u'pharmacist', u'crack', u'speed', u'traffick']
[u'play', u'uruguay']
[u'polic', u'investig', u'moone', u'pond', u'shoot']
[u'pope', u'tell', u'ambassador', u'ethic', u'polit']
[u'port', u'lincoln', u'pay', u'tribut', u'diva']
[u'ref', u'blunder', u'cost', u'australia', u'hiddink']
[u'ring', u'rusti', u'feder', u'stutter', u'master']
[u'ruddock', u'quiet', u'inform', u'claim']
[u'saddam', u'lawyer', u'stay', u'away', u'trial']
[u'scot', u'flop', u'puma', u'franc', u'crush', u'canada']
[u'scott', u'coupl', u'lead', u'florida']
[u'sharon', u'pressur', u'earli', u'israel', u'poll']
[u'sink', u'hmas', u'sydney', u'rememb']
[u'rescu', u'coast']
[u'socceroo', u'limit', u'loss']
[u'socceroo', u'look', u'unsettl', u'uruguay']
[u'spain', u'thrash', u'slovakia']
[u'superjumbo', u'visit', u'sydney']
[u'switzerland', u'stun', u'turkey', u'play', u'lead']
[u'sydney', u'outclass', u'tenaci', u'roar']
[u'sydney', u'roar', u'lock', u'break']
[u'technic', u'hitch', u'delay', u'arian', u'space', u'launch']
[u'thousand', u'south', u'korean', u'protest', u'apec']
[u'trescothick', u'flay', u'pakistani', u'attack']
[u'tripl', u'treat', u'tander', u'tasmania']
[u'tunnel', u'travel', u'free', u'novemb']
[u'troop', u'iraq', u'year']
[u'chief', u'call', u'iraq', u'uniti']
[u'violenc', u'erupt', u'lyon']
[u'walker', u'rescu', u'cliff', u'fall']
[u'polic', u'imam', u'islam', u'council', u'say']
[u'windi', u'tour', u'match', u'end', u'draw']
[u'young', u'conduct', u'vienna', u'philharmon']
[u'alleg', u'poacher', u'arrest', u'coast']
[u'expo', u'cancel']
[u'accus', u'thief', u'face', u'charg']
[u'dozen', u'injur', u'major', u'north', u'shore', u'collis']
[u'aid', u'group', u'cautious', u'cure', u'claim']
[u'give', u'disarm', u'north', u'korea', u'downer']
[u'presid', u'warn', u'arrog', u'complac']
[u'anti', u'terror', u'hotlin', u'leak', u'inexcus']
[u'arian', u'space', u'launch', u'reschedul']
[u'australian', u'uruguayan', u'soccer', u'team', u'arriv']
[u'aviat', u'industri', u'warn', u'bird', u'threat']
[u'award', u'honour', u'circl', u'sentenc', u'scheme']
[u'azahari', u'apprentic', u'loos', u'indonesian', u'polic']
[u'bathurst', u'visitor', u'injur', u'mount', u'footpath']
[u'baxter', u'fire']
[u'belconnen', u'top', u'theft']
[u'better', u'communic', u'urg', u'duck', u'hunt', u'debat']
[u'rebrand', u'meat']
[u'biggest', u'plane', u'touch', u'melbourn']
[u'boat', u'cook', u'plead', u'guilti', u'pour', u'captain']
[u'boat', u'ramp', u'plan', u'face', u'delay']
[u'boat', u'user', u'remind', u'safeti', u'equip']
[u'bomb', u'explod', u'baghdad', u'near', u'green', u'zone']
[u'brisban', u'bomb', u'threat', u'think', u'hoax']
[u'brisban', u'public', u'transport', u'stop', u'threat']
[u'brisban', u'transport', u'halt', u'right']
[u'brisban', u'transport', u'resum', u'threat']
[u'britain', u'start', u'iraq', u'withdraw']
[u'busi', u'lobbi', u'push', u'govt', u'pass']
[u'butt', u'keep', u'pakistan', u'content']
[u'inform', u'namibian', u'mass', u'grave']
[u'caravan', u'park', u'sale', u'spark', u'lobbi', u'group', u'outcri']
[u'castaway', u'indonesian', u'fishermen', u'return', u'home']
[u'central', u'deleg', u'look', u'attract', u'retrench']
[u'chang', u'medic', u'cours', u'select', u'help']
[u'charg', u'senat', u'dismiss']
[u'children', u'snap', u'remot', u'australian', u'life']
[u'child', u'right', u'concern', u'rais', u'anti', u'terror']
[u'chines', u'group', u'view', u'local', u'safeti', u'initi']
[u'cisco', u'take', u'award']
[u'coast', u'golfer', u'secur', u'championship']
[u'compens', u'chang', u'come', u'effect']
[u'congress', u'push', u'beef', u'program']
[u'corrupt', u'watchdog', u'hold', u'inform', u'session']
[u'council', u'discuss', u'makyb', u'diva', u'recognit']
[u'court', u'document', u'reveal', u'alleg', u'terrorist', u'target']
[u'creek', u'search', u'miss', u'toddler', u'case']
[u'crime', u'close', u'grafton', u'park']
[u'dam', u'damn', u'caus', u'widespread', u'damag']
[u'death', u'underlin', u'life', u'jacket', u'import']
[u'defenc', u'forc', u'begin', u'health', u'care', u'mission', u'quak']
[u'demand', u'grow', u'australian', u'miner', u'india']
[u'district', u'drought', u'situat', u'improv']
[u'downer', u'call', u'deadlock']
[u'downer', u'hold', u'littl', u'hope', u'death', u'aussi']
[u'drought', u'eas', u'grip', u'south', u'east']
[u'drought', u'releas', u'grip', u'south', u'west']
[u'drug', u'traffic', u'illeg', u'immigr', u'escap', u'jail']
[u'england', u'scrum', u'giant', u'brace', u'black']
[u'england', u'sweat', u'vaughan', u'fit']
[u'expert', u'urg', u'caution', u'aid', u'cure', u'claim']
[u'falconio', u'court', u'tell', u'search', u'weapon']
[u'fall', u'put', u'rock', u'climber', u'hospit']
[u'farmer', u'want', u'import', u'risk', u'analysi', u'taiwan']
[u'feel', u'cold', u'link', u'develop', u'cold']
[u'fesa', u'urg', u'emerg', u'servic', u'law', u'revamp']
[u'footbal', u'clubroom', u'rebuild', u'begin']
[u'wallabi', u'winger', u'stapleton', u'pass', u'away']
[u'fund', u'packag', u'grow', u'provinci', u'victoria']
[u'girl', u'die', u'accid', u'injuri']
[u'giteau', u'miss', u'ireland', u'test']
[u'materi', u'grace', u'canola', u'crop']
[u'toler', u'level', u'offer', u'assur', u'grower']
[u'goulburn', u'region', u'drought', u'declar', u'lift']
[u'govt', u'accus', u'refus', u'leav', u'ralli']
[u'govt', u'criticis', u'timor', u'asylum', u'seeker', u'case']
[u'govt', u'defer', u'local', u'govt', u'rat', u'scheme']
[u'govt', u'offer', u'nardi', u'hous', u'solut']
[u'govt', u'chang']
[u'govt', u'urg', u'consult', u'bush', u'blueprint']
[u'govt', u'wont', u'interven', u'boe', u'disput', u'tell']
[u'green', u'group', u'consid', u'buy', u'forest']
[u'group', u'urg', u'place', u'aspir', u'rural']
[u'grower', u'reassur', u'iraq', u'wheat', u'trade']
[u'grower', u'urg', u'greater', u'scrutini', u'mango', u'import']
[u'gunn', u'offer', u'pulp', u'effluent', u'assur']
[u'hackett', u'battl', u'worsen', u'shoulder', u'injuri']
[u'hackett', u'commonwealth', u'game']
[u'hama', u'milit', u'leader', u'kill', u'west', u'bank']
[u'harass', u'leader', u'renew', u'challeng', u'threat']
[u'hetherington', u'second', u'tournament', u'champion']
[u'hewitt', u'mcleod', u'resolv']
[u'hope', u'bathurst', u'dubbo', u'diabet', u'screen', u'centr']
[u'hop', u'aris', u'ozjet', u'port', u'lincoln', u'flight']
[u'howard', u'stand', u'firm', u'sedit', u'provis']
[u'hundr', u'free', u'indian', u'maoist', u'storm', u'jail']
[u'indigen', u'centr', u'reject', u'sacr', u'land', u'claim']
[u'indigen', u'child', u'safeti', u'hous', u'plan']
[u'indigen', u'court', u'scheme', u'wide']
[u'indonesian', u'pair', u'custodi', u'wash']
[u'inquiri', u'adelaid', u'polic', u'shoot']
[u'iraqi', u'presid', u'add', u'weight', u'specul']
[u'jetstar', u'decis', u'boost', u'tourism']
[u'jihad', u'train', u'camp', u'australia', u'document']
[u'judg', u'order', u'guilti', u'verdict', u'execut']
[u'kalgoorli', u'chamber', u'chief', u'bigger', u'role']
[u'kearn', u'daughter', u'intens', u'care']
[u'kid', u'threaten', u'elder', u'drug', u'money', u'say', u'youth']
[u'kiwi', u'play', u'world', u'time', u'zone', u'fear']
[u'labor', u'encourag', u'older', u'tradespeopl', u'work']
[u'labor', u'state', u'minist', u'senat', u'committe']
[u'lampard', u'downplay', u'argentina']
[u'land', u'demand', u'surpris', u'council']
[u'council', u'criticis', u'propos', u'sedit', u'chang']
[u'lehmann', u'eye']
[u'lehmann', u'lead', u'fightback']
[u'local', u'communiti', u'includ', u'land', u'right', u'review']
[u'mackay', u'suffer', u'state', u'snub']
[u'major', u'project', u'ignor', u'environment', u'risk']
[u'accus', u'fake', u'death', u'plead', u'guilti']
[u'charg', u'polic', u'scuffl']
[u'hunt', u'jail', u'escap']
[u'child', u'assault', u'charg', u'refus', u'bail']
[u'plead', u'guilti', u'child', u'offenc']
[u'mansel', u'win', u'master', u'race']
[u'court', u'charg']
[u'market', u'begin', u'week', u'strong', u'perform']
[u'maryborough', u'run', u'jail']
[u'mauresmo', u'win', u'tour', u'championship']
[u'mayor', u'predict', u'water', u'pipelin']
[u'mayor', u'speak', u'pacif', u'highway', u'plan']
[u'meet', u'focus', u'health', u'centr', u'site']
[u'meet', u'talk', u'possibl', u'waterfront', u'chang']
[u'minist', u'air', u'calder', u'highway', u'fund', u'concern']
[u'minist', u'propos', u'nation', u'windfarm', u'code']
[u'minist', u'reject', u'reinstat', u'hospit']
[u'minist', u'quiz', u'jail', u'escap']
[u'minist', u'wind', u'farm', u'decis']
[u'moon', u'unit', u'zappa', u'top', u'bizarr', u'name', u'poll']
[u'rain', u'need', u'secur', u'down', u'crop']
[u'back', u'extend', u'gympi', u'bypass', u'consult', u'period']
[u'say', u'tafe', u'fee', u'soar']
[u'want', u'warship', u'protect', u'northern', u'resourc']
[u'murdoch', u'match', u'secur', u'footag', u'court', u'hear']
[u'mysteri', u'surround', u'gambier', u'man', u'injuri']
[u'nation', u'cast', u'doubt', u'govt', u'region', u'plan']
[u'regul', u'outlaw', u'broadscal', u'land', u'clear']
[u'nightclub', u'bash', u'victim', u'win', u'damag']
[u'north', u'coast', u'enjoy', u'strong', u'tourism']
[u'offic', u'evacu', u'asbesto']
[u'opposit', u'bite', u'recycl']
[u'opposit', u'gather', u'evid', u'jockey', u'briberi']
[u'pair', u'arrest', u'bonnyrigg', u'shoot']
[u'pair', u'experi', u'plane', u'land', u'mishap']
[u'maintain', u'law', u'constitut']
[u'urg', u'meet', u'strike', u'boe', u'worker']
[u'urg', u'rais', u'nguyen', u'case', u'apec']
[u'polic', u'chief', u'reject', u'corrupt', u'report']
[u'polic', u'hunt', u'break', u'hill', u'arsonist']
[u'polic', u'hunt', u'attack']
[u'polic', u'lament', u'drink', u'drive', u'number']
[u'polic', u'oper', u'target', u'drink', u'drive']
[u'polic', u'shoot', u'victim', u'succumb', u'injuri']
[u'polic', u'uncertain', u'bash', u'teenag', u'sexual']
[u'polic', u'urg', u'crack', u'schooli']
[u'polic', u'technolog', u'track', u'newcastl', u'killer']
[u'polic', u'young', u'crash', u'victim']
[u'pont', u'signal', u'hodg', u'play']
[u'possibl', u'threat', u'halt', u'brisban', u'transport']
[u'prop', u'henderson', u'call', u'cover', u'dun']
[u'public', u'urg', u'join', u'communiti', u'health', u'group']
[u'farmer', u'accept', u'drought']
[u'teacher', u'join', u'protest', u'work', u'law']
[u'town', u'mourn', u'soldier', u'road', u'rage', u'death']
[u'region', u'servic', u'station', u'prompt', u'price']
[u'research', u'highlight', u'industri', u'worker', u'turnov']
[u'resid', u'fluorid', u'water']
[u'rice', u'israel', u'reviv', u'peac', u'process']
[u'roadwork', u'readi', u'woolworth']
[u'ruddock', u'dismiss', u'sedit', u'fear']
[u'ruddock', u'probe', u'ident', u'leak', u'terror', u'hotlin']
[u'russian', u'accus', u'sell', u'secret', u'china']
[u'bat', u'warrior']
[u'scholarship', u'boost', u'indigen', u'nurs']
[u'schooli', u'urg', u'commonsens']
[u'scorses', u'scale']
[u'search', u'find', u'miss', u'motorcyclist', u'safe']
[u'search', u'sydney', u'toddler', u'continu', u'tomorrow']
[u'second', u'crash', u'victim', u'succumb', u'injuri']
[u'sedit', u'provis', u'wont', u'threaten', u'media', u'freedom']
[u'senat', u'charg', u'speed', u'incid']
[u'senior', u'doctor', u'support', u'hobart', u'hospit', u'chief']
[u'piec', u'defenc', u'concern', u'schwarzer', u'admit']
[u'seven', u'drop', u'billion', u'dollar', u'claim']
[u'crime', u'polic', u'join', u'bash', u'investig']
[u'sharon', u'blast', u'syria', u'iran', u'axi', u'evil']
[u'shoot', u'man', u'girlfriend', u'appear', u'court']
[u'silver', u'medallist', u'hill', u'return', u'race']
[u'socceroo', u'arriv', u'home']
[u'southern', u'record', u'horror', u'road', u'crash', u'weekend']
[u'state', u'minist', u'senat', u'vote', u'chang']
[u'stem', u'cell', u'improv', u'heart', u'attack']
[u'storm', u'racecours', u'run', u'rail', u'replac']
[u'storm', u'predict', u'research', u'focus', u'darwin']
[u'strong', u'show', u'meat', u'group', u'vote']
[u'strong', u'support', u'regist']
[u'survey', u'highlight', u'communiti', u'preschool', u'woe']
[u'survey', u'highlight', u'mildura', u'crime', u'concern']
[u'swap', u'meet', u'prove', u'popular', u'crowd']
[u'tassi', u'receiv', u'polici', u'wooden', u'spoon']
[u'teen', u'arrest', u'camp', u'death']
[u'tender', u'call', u'illeg', u'fisher', u'detent', u'centr']
[u'tenth', u'terrorist', u'suspect', u'appear', u'court']
[u'thousand', u'evacu', u'chines', u'chemic', u'blast']
[u'thousand', u'briton', u'honour', u'dead']
[u'court', u'soldier', u'murder']
[u'timber', u'worker', u'ralli', u'redund', u'packag']
[u'tourism', u'sector', u'take', u'increas']
[u'trade', u'hall', u'council', u'highlight', u'fear']
[u'train', u'compani', u'seek', u'address', u'worker', u'shortag']
[u'tredrea', u'take', u'captainci']
[u'tredrea', u'take', u'power', u'captainci']
[u'troop', u'search', u'dead', u'saddam', u'aid']
[u'truck', u'run', u'kill', u'chines']
[u'union', u'debat', u'chang']
[u'union', u'ralli', u'worker', u'protest']
[u'uruguay', u'divin', u'right', u'play']
[u'grape', u'threat', u'industri']
[u'vanston', u'refus', u'releas', u'hunger', u'strike']
[u'victoria', u'drop', u'state', u'polici', u'rank']
[u'warrior', u'martyn']
[u'white', u'hous', u'declin', u'rule', u'tortur']
[u'wineri', u'director', u'death', u'investig']
[u'woman', u'charg', u'catch', u'drive']
[u'woman', u'dead', u'hous']
[u'workcov', u'investig', u'construct', u'site', u'fall']
[u'workshop', u'focus', u'aborigin', u'land', u'right']
[u'timores', u'group', u'seek', u'asylum']
[u'arrest', u'zimbabw', u'opposit', u'infight']
[u'abort', u'drug', u'unsaf', u'warn', u'dept']
[u'accus', u'offend', u'victim', u'polic']
[u'afghan', u'bomb', u'kill', u'german', u'soldier']
[u'agassi', u'nadal', u'join', u'master', u'withdraw', u'list']
[u'agenc', u'record', u'minor', u'kalgoorli', u'tremor']
[u'north', u'korea', u'hold', u'nuclear', u'program']
[u'albani', u'receiv', u'legion', u'honour']
[u'black', u'nonu', u'cite', u'danger', u'tackl']
[u'arson', u'rule', u'dead', u'hous', u'blaze']
[u'audienc', u'complaint', u'forc', u'play', u'chang']
[u'aust', u'pledg', u'fight', u'bird']
[u'australian', u'export', u'apec', u'countri', u'jump']
[u'author', u'probe', u'grandstand']
[u'awb', u'suspens', u'program', u'unjustifi']
[u'barrett', u'lockyer', u'kangaroo', u'face', u'crunch']
[u'beatti', u'review', u'bomb', u'scare', u'respons']
[u'beazley', u'pledg', u'repeal', u'law']
[u'bendigo', u'lose', u'doctor']
[u'bottl', u'water', u'chief', u'reject', u'tooth', u'decay', u'claim']
[u'hospit', u'leopard', u'attack']
[u'surgeri', u'leopard', u'attack']
[u'bracken', u'carri', u'drink', u'hodg', u'get']
[u'brown', u'snake', u'antivenom', u'ineffect', u'scientist']
[u'bull', u'sweat', u'avail', u'hop', u'love']
[u'bush', u'eager', u'telstra', u'wireless', u'rollout']
[u'central', u'health', u'profession']
[u'bomb', u'kill', u'pakistan']
[u'cattl', u'truck', u'crash']
[u'central', u'worker', u'join', u'reform', u'protest']
[u'central', u'west', u'join', u'nation', u'reform', u'protest']
[u'chines', u'chemic', u'plant', u'explos', u'kill']
[u'clean', u'beach', u'award', u'ceremoni', u'cancel']
[u'colleg', u'offer', u'train', u'option']
[u'compani', u'offer', u'salmon', u'flavour', u'soda']
[u'compani', u'seek', u'communiti', u'input', u'wind', u'farm', u'plan']
[u'cooper', u'reject', u'lion', u'nathan', u'takeov']
[u'councillor', u'forese', u'chamber', u'wrongdoer']
[u'councillor', u'upset', u'clean', u'beach', u'sponsorship']
[u'council', u'unhappi', u'powerlin', u'plan']
[u'council', u'vote', u'pool']
[u'council', u'fluorid', u'decis']
[u'croc', u'see', u'popular', u'swim', u'spot']
[u'csiro', u'look', u'power', u'station', u'greenhous']
[u'cyclon', u'wind', u'record', u'darwin', u'storm']
[u'close', u'second', u'crocodil', u'sight']
[u'danish', u'court', u'set', u'baptism', u'date', u'mari', u'princ']
[u'death', u'spark', u'renew', u'high', u'school', u'driver']
[u'defenc', u'falconio', u'case', u'question', u'secur']
[u'depart', u'launch', u'review', u'alic', u'prison']
[u'doctor', u'confid', u'toddler', u'save']
[u'dodgi', u'salesmen', u'target', u'indigen', u'communiti']
[u'door', u'handl', u'lock', u'plane', u'mishap', u'report']
[u'downer', u'hop', u'apec', u'free', u'trade', u'support', u'statement']
[u'dudek', u'readi', u'walk', u'liverpool']
[u'plead', u'guilti', u'airport', u'secur', u'breach']
[u'fake', u'death', u'case', u'polic']
[u'falconio', u'evid', u'unverifi', u'court', u'hear']
[u'north', u'join', u'nation', u'protest']
[u'farr', u'jone', u'back', u'japan', u'host', u'world']
[u'flood', u'molong', u'firm', u'reopen']
[u'french', u'visit', u'riot', u'suburb']
[u'gardin', u'seek', u'tour', u'place']
[u'gippsland', u'worker', u'join', u'protest']
[u'goosen', u'confirm', u'classic']
[u'govt', u'flag', u'wiluna', u'hous', u'review']
[u'govt', u'fund', u'seek', u'freight', u'transfer', u'station']
[u'govt', u'investig']
[u'govt', u'move', u'slash', u'super']
[u'govt', u'mull', u'needl', u'exchang', u'program', u'jail', u'inmat']
[u'govt', u'overhaul', u'region', u'grant', u'program']
[u'govt', u'packag', u'promis', u'western', u'benefit']
[u'govt', u'push', u'provinci', u'statement']
[u'govt', u'beef', u'london', u'train', u'station', u'secur']
[u'govt', u'investig']
[u'govt', u'urg', u'speed', u'alarm', u'instal']
[u'green', u'group', u'criticis', u'kosciuszko', u'bait', u'plan']
[u'greenpeac', u'dump', u'protest', u'blair', u'doorstep']
[u'green', u'want', u'contamin', u'canola', u'crop', u'destroy']
[u'group', u'highlight', u'declin', u'possum', u'popul']
[u'hackett', u'knife']
[u'harriet', u'come', u'shell', u'birthday']
[u'hind', u'urg', u'gayl', u'continu', u'aggress']
[u'hobart', u'test', u'pitch', u'ideal', u'macgil']
[u'horan', u'see', u'posit', u'loss', u'england']
[u'hospit', u'stop', u'patient', u'die', u'boredom']
[u'hospit', u'industri', u'welcom', u'chang', u'inquiri']
[u'howard', u'brush', u'ralli']
[u'hundr', u'ralli', u'chang']
[u'hunter', u'worker', u'join', u'nation', u'law', u'protest']
[u'illawarra', u'properti', u'price', u'continu', u'fall']
[u'illawarra', u'worker', u'join', u'workplac', u'law', u'protest']
[u'independ', u'probe', u'continu', u'macleay', u'river']
[u'india', u'pakistan', u'open', u'fourth', u'kashmir', u'cross']
[u'indonesian', u'court', u'dismiss', u'newmont', u'civil', u'suit']
[u'industri', u'group', u'law', u'senat', u'inquiri']
[u'injunct', u'delay', u'law', u'unlik']
[u'jail', u'needl', u'program', u'inappropri']
[u'joyc', u'condemn', u'sneaki', u'telstra', u'announc']
[u'joyc', u'defend', u'stanc', u'trade', u'practic', u'chang']
[u'june', u'jail', u'escape', u'custodi']
[u'bali', u'bomb', u'victim', u'discharg', u'darwin']
[u'latrob', u'nativ', u'anim', u'exhibit', u'close']
[u'lennon', u'dismiss', u'evatt', u'foundat', u'report', u'find']
[u'lightn', u'strike', u'spark', u'fire']
[u'local', u'ralli', u'chang']
[u'lomu', u'expect', u'tough', u'time', u'ahead', u'wale']
[u'macquari', u'record', u'profit']
[u'makyb', u'diva', u'rat', u'world', u'best', u'mare']
[u'malaysian', u'quiz', u'link', u'aust', u'terror']
[u'seek', u'compo', u'alleg', u'cream', u'poison']
[u'manual', u'help', u'assess', u'rainforest', u'visitor', u'impact']
[u'doc', u'staff', u'work', u'background', u'check']
[u'market', u'drub', u'telstra', u'strateg', u'review']
[u'market', u'slip', u'flat', u'trade']
[u'marriag', u'make', u'japanes', u'princess', u'common']
[u'back', u'provinci', u'statement', u'fund']
[u'mayor', u'back', u'tougher', u'danger', u'law']
[u'mayor', u'doesnt', u'want', u'safe', u'haven', u'abus']
[u'mayor', u'question', u'hous', u'stat']
[u'mayor', u'reject', u'bruce', u'highway', u'rout', u'option']
[u'merkel', u'femal', u'german', u'chancellor']
[u'industri', u'urg', u'rethink', u'safeti', u'cultur']
[u'seek', u'meet', u'increas', u'power', u'station', u'demand']
[u'worker', u'ban', u'ralli', u'union', u'say']
[u'mine', u'compani', u'dock', u'worker', u'ralli']
[u'mix', u'respons', u'nativ', u'veget', u'law']
[u'molik', u'rank', u'year']
[u'investig', u'possibl', u'mandatori', u'child']
[u'mori', u'stay', u'glori', u'season']
[u'motel', u'decis', u'expect', u'christma']
[u'multan', u'test', u'even', u'pois', u'say', u'trescothick']
[u'nardi', u'hous', u'reject', u'temporari', u'fund', u'offer']
[u'nauru', u'move', u'restor', u'bank', u'servic']
[u'bird', u'case', u'report', u'asia']
[u'bursari', u'offer', u'tambo', u'blackal', u'student']
[u'hous', u'pose', u'water', u'contamin', u'threat']
[u'newman', u'alcohol', u'restrict', u'remain']
[u'underground', u'coal', u'moot']
[u'nguyen', u'death', u'sentenc', u'irrevers']
[u'nile', u'head', u'cross', u'citi', u'tunnel', u'inquiri']
[u'north', u'west', u'get', u'easier', u'access', u'feder', u'fund']
[u'govt', u'urg', u'help', u'ampute']
[u'nuclear', u'reactor', u'emerg', u'plan', u'review']
[u'ombudsman', u'call', u'intern', u'bodi', u'search']
[u'charg', u'brisban', u'bomb', u'hoax']
[u'state', u'interest', u'prescrib', u'burn']
[u'outlook', u'good', u'harvest']
[u'plant', u'extract', u'stop', u'termit', u'dead']
[u'plant', u'extract', u'stop', u'termit', u'dead']
[u'polic', u'chief', u'consid', u'offic', u'number']
[u'polic', u'chief', u'seek', u'time', u'consid', u'briberi']
[u'polic', u'investig', u'tamworth', u'restaur', u'explos']
[u'polic', u'probe', u'prison', u'labour', u'rort', u'claim']
[u'polic', u'seek', u'public', u'help', u'catch', u'countri', u'club']
[u'polic', u'seek', u'public', u'help', u'solv', u'granni', u'kill']
[u'polic', u'step', u'probe', u'brisban', u'bomb', u'scare']
[u'polic', u'seek', u'inform', u'attack']
[u'polic', u'warn', u'abductor', u'strike']
[u'pool', u'financ', u'like', u'come', u'budget']
[u'port', u'augusta', u'servic', u'talk', u'continu']
[u'premier', u'satisfi', u'bomb', u'threat', u'respons']
[u'prosecutor', u'drop', u'main', u'charg', u'lesli']
[u'prosecutor', u'seek', u'lesser', u'sentenc', u'lesli']
[u'public', u'air', u'wast', u'dump', u'plan', u'worri']
[u'public', u'calm', u'manag', u'plan']
[u'rabbitoh', u'unhappi', u'redfern', u'lock']
[u'rail', u'inform', u'boost', u'plan', u'illawarra', u'line']
[u'ralli', u'hold', u'nationwid']
[u'ralli', u'measur', u'strength', u'concern']
[u'ralli', u'stop', u'traffic']
[u'rann', u'back', u'polic', u'chief', u'jail', u'pursuit']
[u'redfern', u'deal', u'leav', u'south', u'cold']
[u'reef', u'author', u'look', u'boost', u'consult']
[u'region', u'protest']
[u'report', u'citrus', u'riverland', u'caus', u'concern']
[u'rice', u'confirm', u'isra', u'palestinian', u'gaza', u'border', u'deal']
[u'rice', u'see', u'deal', u'access', u'gaza']
[u'riot', u'franc', u'move', u'extend', u'emerg', u'power']
[u'riverina', u'join', u'nation', u'protest']
[u'saff', u'hatch', u'campaign', u'save', u'industri']
[u'senat', u'stand', u'base', u'wast', u'dump', u'probe']
[u'senat', u'wont', u'forc', u'wind', u'farm', u'public']
[u'senior', u'issu', u'committe', u'agenda']
[u'sharon', u'plead', u'guilti', u'isra', u'fund', u'scandal']
[u'shop', u'owner', u'detain', u'woman', u'arm', u'robberi']
[u'kill', u'colombia', u'plane', u'crash']
[u'skill', u'shortag', u'drive', u'high', u'turnov', u'mine']
[u'slash', u'prompt', u'review', u'safeti', u'procedur']
[u'small', u'busi', u'cost', u'soar', u'survey']
[u'socceroo', u'continu', u'world', u'build']
[u'socceroo', u'answer', u'hiddink']
[u'socceroo', u'reap', u'million', u'reward', u'victori']
[u'southern', u'join', u'protest']
[u'stanhop', u'want', u'defenc']
[u'stock', u'hold', u'pattern', u'ahead', u'econom']
[u'storm', u'caus', u'damag', u'warburton']
[u'support', u'port', u'augusta', u'zone', u'declar']
[u'tank', u'death', u'spark', u'work', u'chang']
[u'compani', u'win', u'contract', u'wire', u'pacif', u'nation']
[u'telstra', u'cut', u'plan', u'worri', u'worker']
[u'telstra', u'job']
[u'telstra', u'job']
[u'terror', u'suspect', u'support', u'face', u'court']
[u'terror', u'trade', u'hick', u'agenda', u'aust', u'meet']
[u'terrorist', u'train', u'camp', u'alleg', u'shock', u'local']
[u'thousand', u'protest', u'chang']
[u'thousand', u'protest', u'law']
[u'thousand', u'protest', u'chang']
[u'thousand', u'ralli', u'adelaid', u'law']
[u'worker', u'sack', u'attend', u'ralli', u'union']
[u'creat', u'electr']
[u'await', u'monsoon']
[u'tough', u'season', u'gulf', u'trawler', u'oper']
[u'trade', u'deal', u'hing', u'subsidi', u'cut', u'say', u'downer']
[u'transport', u'disrupt', u'expect', u'amid', u'industri']
[u'trial', u'delay', u'mix', u'news', u'hick', u'lawyer']
[u'truck', u'group', u'problem', u'tollway']
[u'union', u'claim', u'anti', u'ralli', u'success']
[u'union', u'hail', u'anti', u'ralli', u'turnout']
[u'union', u'ralli', u'show', u'worker', u'unit']
[u'union', u'vow', u'legal', u'action', u'govt', u'ralli', u'leav']
[u'feder', u'judg', u'suspend', u'hick', u'trial']
[u'threaten', u'undercut', u'wool', u'export', u'india']
[u'ahead', u'hickss', u'militari', u'trial']
[u'vagana', u'face', u'hear', u'deacon']
[u'veget', u'law']
[u'visitor', u'centr', u'boost', u'white', u'cliff']
[u'reel', u'lehmann', u'tripl']
[u'water', u'author', u'consid', u'highland', u'plan']
[u'webb', u'induct', u'golf', u'hall', u'fame']
[u'western', u'worker', u'join', u'protest']
[u'wild', u'storm', u'hit', u'sydney', u'central', u'coast']
[u'wine', u'industri', u'monitor', u'yeast', u'experi']
[u'worker', u'kill', u'trench', u'collaps']
[u'worker', u'ralli', u'chang']
[u'world', u'vote', u'cantona', u'premiership', u'best']
[u'talk', u'precipic', u'vail']
[u'youth', u'accus', u'petrol', u'sniff', u'hous']
[u'film', u'best', u'documentari', u'oscar']
[u'boost', u'bega', u'high', u'school']
[u'access', u'restrict', u'indigen', u'cave']
[u'accus', u'hoaxer', u'print', u'public', u'phone']
[u'govt', u'accus', u'frustrat', u'queanbeyan']
[u'adelaid', u'lock', u'rumsfeld', u'visit']
[u'age', u'popul', u'put', u'focus', u'financi', u'advis']
[u'airport', u'secur', u'deadlin', u'worri', u'council']
[u'fear', u'allow', u'dodgi', u'doctor', u'appoint']
[u'anim', u'welfar', u'campaign', u'target', u'long', u'haul']
[u'apec', u'confer', u'begin', u'seoul']
[u'apec', u'minist', u'consid', u'trade']
[u'apec', u'address', u'farm', u'subsidi', u'debat']
[u'apec', u'urg', u'flexibl', u'troubl', u'trade', u'talk']
[u'apiarist', u'abuzz', u'season', u'turnaround']
[u'arrest', u'pakistani', u'bomb']
[u'asian', u'demand', u'drive', u'woodchip', u'export', u'boom']
[u'aussi', u'earn', u'european', u'tour', u'card']
[u'australia', u'bermuda', u'join', u'forc', u'combat', u'abus']
[u'australian', u'women', u'arrest', u'syrian', u'airport']
[u'bangladeshi', u'polic', u'search', u'potenti', u'bomber']
[u'bank', u'stock', u'push', u'market', u'higher']
[u'basebal', u'star', u'face', u'game', u'ban']
[u'beatti', u'refus', u'relax', u'adult', u'entertain', u'rule']
[u'bendigo', u'telco', u'experi', u'growth']
[u'crowd', u'expect', u'funer', u'wine', u'ident']
[u'birth', u'rate', u'hit', u'year', u'high']
[u'bridg', u'get']
[u'burk', u'shire', u'experi', u'strong', u'properti', u'price']
[u'bush', u'hold', u'taiwan', u'exampl', u'asian', u'democraci']
[u'bush', u'say', u'deal', u'japan', u'beef', u'import']
[u'bush', u'segway', u'koizumi', u'transport', u'futur']
[u'campaign', u'target', u'skin', u'cancer', u'risk', u'group']
[u'campbel', u'halt', u'warrior', u'slide']
[u'china', u'say', u'test', u'posit', u'bird', u'report']
[u'christian', u'lash', u'reform']
[u'coal', u'miner', u'remain', u'beat', u'despit', u'problem']
[u'concern', u'recycl', u'plant', u'closur']
[u'corn', u'mend', u'surgeri']
[u'council', u'probe', u'hear', u'local', u'govt', u'loophol']
[u'council', u'consid', u'industri', u'area']
[u'councillor', u'say', u'race', u'conflict']
[u'council', u'seek', u'princ', u'highway', u'revamp']
[u'countrywid', u'manag', u'deni', u'job', u'loss', u'north']
[u'creditor', u'question', u'beef', u'processor', u'administr']
[u'crisi', u'centr', u'fund', u'realloc']
[u'develop', u'set', u'deadlin', u'hunter', u'plan']
[u'disgruntl', u'senior', u'solomon', u'offici', u'steal', u'fund']
[u'downer', u'pressur', u'tariff']
[u'downer', u'rice', u'discuss', u'iraq']
[u'dragon', u'glad', u'thompson']
[u'draper', u'histor', u'doubl']
[u'drill', u'highlight', u'diamond', u'prospect']
[u'employ', u'agenc', u'question', u'urgenc']
[u'esso', u'worker', u'meet', u'union', u'wage', u'talk']
[u'timor', u'urg', u'cooper', u'fight', u'poacher']
[u'expert', u'join', u'tamworth', u'blast', u'probe']
[u'falconio', u'trial', u'christma']
[u'famili', u'farewel', u'offic', u'kill', u'oversea']
[u'farina', u'tip', u'bresciano', u'cahil', u'play']
[u'farmer', u'hear', u'flood', u'recoveri']
[u'farmer', u'tell', u'suffer', u'govt', u'failur']
[u'farm', u'group', u'attack', u'nativ', u'veget', u'law']
[u'farm', u'drive', u'hous', u'demand']
[u'fbis', u'trail', u'world', u'biggest', u'theft']
[u'fear', u'chang', u'hurt', u'shoalhaven', u'platypus']
[u'fear', u'telstra', u'job', u'plan']
[u'govt', u'jurisdict', u'plan']
[u'firm', u'reject', u'claim', u'worker', u'sack', u'protest']
[u'black', u'coach', u'mitchel', u'offer', u'help']
[u'raider', u'player', u'drug', u'sentenc', u'suspend']
[u'genet', u'disord', u'caus', u'cerebr', u'palsi']
[u'governor', u'open', u'environment', u'learn', u'centr']
[u'govt', u'approv', u'major', u'steelwork', u'upgrad']
[u'govt', u'employ', u'cleric', u'suspect', u'terrorist', u'link']
[u'govt', u'helpless', u'stop', u'flood', u'cheap', u'interst']
[u'govt', u'hold', u'telstra', u'cdma', u'network', u'shutdown']
[u'govt', u'pressur', u'lift', u'highway', u'fund']
[u'govt', u'pressur', u'releas', u'abort', u'pill']
[u'govt', u'urg', u'stand', u'compani', u'driver']
[u'grain', u'harvest', u'head', u'south', u'work']
[u'grandstand', u'join', u'socceroo', u'fan']
[u'green', u'group', u'critic', u'tourism', u'fund']
[u'grind', u'station', u'promis', u'communic', u'boost']
[u'group', u'condemn', u'wife', u'killer', u'sentenc']
[u'growth', u'continu', u'wage', u'rat']
[u'guus', u'plea', u'fan']
[u'henri', u'accus', u'england', u'spi', u'black']
[u'herbicid', u'damag', u'cotton', u'crop']
[u'hick', u'saga', u'continu']
[u'hiddink', u'plea', u'fan']
[u'high', u'court', u'injunct', u'law', u'unlik']
[u'historian', u'cast', u'doubt', u'fate', u'wwii', u'freighter']
[u'hodg', u'symond', u'test', u'green', u'light']
[u'homebuy', u'develop', u'say']
[u'hospit', u'adopt', u'tare', u'nurs', u'invent']
[u'hous', u'estat', u'shoot', u'worri', u'preschool', u'parent']
[u'hydro', u'profit', u'rise', u'despit', u'fall']
[u'icpa', u'urg', u'govt', u'rethink', u'payment', u'access']
[u'illeg', u'weapon', u'haul', u'seiz', u'tasmania']
[u'milosev', u'win', u'trial', u'suspens']
[u'inexperienc', u'polic', u'artist', u'falconio', u'case']
[u'infect', u'scare', u'riverland', u'hospit']
[u'inquest', u'status', u'review', u'wit', u'death']
[u'interpret', u'vital', u'indigen', u'australian']
[u'anger', u'fuel', u'civil', u'disobedi', u'labor']
[u'iraq', u'admit', u'secret', u'prison']
[u'law', u'boost', u'union', u'membership']
[u'law', u'help', u'boost', u'union', u'movement']
[u'jone', u'battl', u'crisi']
[u'jone', u'wont', u'overhaul', u'coach', u'method']
[u'kandahar', u'bomb', u'kill']
[u'kaneria', u'sami', u'spark', u'england', u'collaps']
[u'kashmir', u'blast', u'kill', u'wound']
[u'land', u'council', u'back', u'zone', u'plan']
[u'leagu', u'club', u'unsecur', u'creditor', u'fund']
[u'lion', u'nathan', u'design', u'neutralis', u'cooper', u'accc']
[u'local', u'telstra', u'manag', u'see', u'benefit', u'work', u'forc']
[u'lie', u'cleric', u'sack', u'school', u'canteen']
[u'mackay', u'youth', u'urg', u'speak']
[u'manag', u'welcom', u'telstra', u'decis']
[u'court', u'accus', u'arrow']
[u'stand', u'trial', u'brigitt', u'lie']
[u'market', u'amid', u'drop', u'sale', u'figur']
[u'melbourn', u'mull', u'cours', u'restructur']
[u'consid', u'high', u'risk', u'skin', u'cancer', u'group']
[u'north', u'coast', u'brace', u'high', u'wind']
[u'death', u'investig', u'begin']
[u'minist', u'challeng', u'abbott', u'abort', u'pill']
[u'mistak', u'ident', u'case', u'spark', u'airport', u'search']
[u'moonscap', u'real', u'estat', u'sale']
[u'victim', u'alleg', u'paedophil', u'come', u'forward']
[u'mount', u'teacher', u'condemn', u'law']
[u'reject', u'defenc']
[u'chang', u'despit', u'protest']
[u'worri', u'telstra', u'cut', u'affect', u'servic']
[u'murdoch', u'defend']
[u'murdoch', u'open', u'advertis']
[u'muscat', u'confid', u'victori']
[u'nairn', u'stanc']
[u'nation', u'park', u'blaze', u'near']
[u'caravan', u'park', u'owner', u'seek', u'work', u'communiti']
[u'catch', u'rule', u'boost', u'crab', u'popul']
[u'korea', u'urg', u'nuclear', u'talk']
[u'nonu', u'leav', u'limbo', u'verdict', u'delay']
[u'govt', u'employ', u'cleric', u'suspect', u'terrorist']
[u'unveil', u'bird', u'outbreak', u'plan']
[u'opposit', u'call', u'review', u'amend', u'report']
[u'opposit', u'demand', u'committe', u'recal', u'report']
[u'outlook', u'summer', u'rain', u'averag']
[u'pattern', u'stupid', u'land', u'drink', u'driver', u'jail']
[u'patterson', u'canvass', u'abort', u'pill', u'conscienc', u'vote']
[u'perth', u'miner', u'restart', u'bigrlyi', u'uranium', u'explor']
[u'plan', u'aim', u'retain', u'sustain', u'sydney']
[u'plan', u'minist', u'accus', u'conflict']
[u'hop', u'apec', u'talk', u'open', u'market']
[u'leav', u'apec']
[u'push', u'speedi', u'hick', u'trial']
[u'rais', u'death', u'case', u'apec']
[u'polic', u'band', u'head', u'north']
[u'polic', u'chief', u'investig', u'motorbik', u'crash', u'death']
[u'polic', u'promis', u'road', u'safeti', u'crackdown']
[u'polic', u'terror', u'train', u'moroney']
[u'polic', u'wont', u'investig', u'briberi', u'alleg']
[u'prescript', u'heart', u'diseas']
[u'primari', u'school', u'damag', u'souther', u'buster']
[u'prison', u'disabl', u'face', u'deport']
[u'prison', u'needl', u'exchang', u'servic', u'problemat', u'say']
[u'qanta', u'chief', u'flag', u'chang', u'busi', u'oper']
[u'qanta', u'turn']
[u'race', u'minist', u'say', u'note', u'clear', u'briberi']
[u'rearrang', u'waterfront', u'build', u'wouldnt', u'chang']
[u'renmark', u'meet', u'urg', u'wast', u'dump', u'opposit']
[u'research', u'highlight', u'skin', u'cancer', u'risk', u'group']
[u'resourc', u'price', u'boost', u'budget', u'outlook']
[u'revis', u'forest', u'polici', u'fail', u'parti']
[u'rice', u'urg', u'apec', u'pressur', u'burma', u'right']
[u'right', u'life', u'support', u'abbott', u'abort', u'pill']
[u'rotari', u'offer', u'suicid', u'prevent', u'fund']
[u'rural', u'aust', u'reject', u'telstra', u'plan', u'scrap', u'cdma']
[u'look', u'outright', u'warrior']
[u'speaker', u'consid', u'protest', u'applic']
[u'school', u'reopen', u'water', u'contamin', u'scare']
[u'scientist', u'optimist', u'cervic', u'cancer']
[u'scientist', u'probe', u'salt', u'project', u'impact']
[u'secur', u'upgrad', u'plan', u'break', u'hill', u'airport']
[u'sharon', u'stone', u'settl', u'lawsuit', u'plastic', u'surgeon']
[u'sheep', u'cattl', u'price', u'forecast', u'drop']
[u'singapor', u'reject', u'death', u'penalti', u'critic']
[u'site', u'earmark', u'slim', u'dusti', u'centr']
[u'sixer', u'keen', u'bounc', u'croc']
[u'socceroo', u'hold', u'lead']
[u'socceroo', u'lead', u'uruguay', u'half', u'time']
[u'socceroo', u'qualifi', u'world']
[u'socceroo', u'readi', u'stand', u'deliv', u'arnold']
[u'socceroo', u'lead', u'world', u'qualifi']
[u'socceroo', u'world', u'qualifi']
[u'solon', u'return', u'day']
[u'soni', u'recal', u'protect']
[u'speed', u'camera', u'bungl', u'jeopardis', u'tenix', u'contract']
[u'stanhop', u'deni', u'stymi', u'queanbeyan', u'growth']
[u'stat', u'major', u'skin', u'cancer', u'risk']
[u'sunni', u'seek', u'independ', u'inquiri', u'jail', u'abus']
[u'surgeri', u'continu', u'despit', u'hospit']
[u'swiss', u'attack', u'shame', u'turkish', u'welcom']
[u'telstra', u'manag', u'say', u'local', u'cut', u'unlik']
[u'telstra', u'region', u'servic', u'plan']
[u'tenni', u'success', u'mind', u'say', u'draper']
[u'thatcher', u'daughter', u'keep', u'gameshow']
[u'thompson', u'leav', u'dragon']
[u'thorp', u'competit', u'comeback', u'world']
[u'thousand', u'protest', u'plan', u'chang']
[u'alleg', u'bali', u'bomber', u'arrest']
[u'arrest', u'bali', u'bomb']
[u'earli', u'specul', u'job', u'telstra']
[u'trimbl', u'get', u'ireland', u'australia']
[u'unexcit', u'growth', u'rate', u'forecast']
[u'announc', u'appoint']
[u'union', u'happi', u'workplac', u'protest']
[u'reinstat', u'food', u'offici']
[u'urban', u'win', u'countri', u'music', u'award']
[u'confirm', u'white', u'phosphorus', u'fallujah']
[u'distanc', u'soldier', u'secret', u'baghdad', u'prison']
[u'lift']
[u'vanston', u'talk', u'asylum', u'seeker', u'arriv']
[u'vietnam', u'find', u'bird', u'variat']
[u'virgin', u'blue', u'profit', u'slide']
[u'wagga', u'worker', u'turn', u'protest', u'chang']
[u'rais', u'school', u'leav']
[u'warburton', u'storm', u'clean']
[u'crime', u'tribun', u'acquit', u'bosnian', u'offic']
[u'weightlift', u'face', u'life', u'dope', u'charg']
[u'wine', u'sit', u'idl', u'tank']
[u'world', u'qualifi', u'extra', u'time']
[u'yuvraj', u'reviv', u'india', u'south', u'africa']
[u'pulp', u'plan', u'south', u'east']
[u'grandstand', u'speak', u'andi', u'harper']
[u'grandstand', u'speak', u'john', u'oneil']
[u'aerial', u'locust', u'spray', u'target', u'nation', u'park']
[u'defend', u'claim', u'forens', u'analysi', u'delay']
[u'airport', u'termin', u'open', u'loom']
[u'alcoa', u'fight']
[u'critic', u'health', u'servic', u'financ']
[u'anti', u'protest', u'target', u'rumsfeld']
[u'arian', u'launch', u'satellit']
[u'asio', u'chief', u'say', u'law', u'wont', u'lessen', u'terror']
[u'auction', u'rais', u'fund', u'bali', u'blast', u'victim']
[u'audio', u'highlight']
[u'aussi', u'expect', u'help', u'boost', u'toowoomba', u'soccer']
[u'aust', u'defenc', u'staffer', u'link', u'scandal']
[u'australian', u'debut', u'impressionist']
[u'australia', u'woeful', u'windi']
[u'australia', u'lizard', u'venom']
[u'averag', u'week', u'wage', u'jump']
[u'backyard', u'mango', u'expect', u'fetch', u'good', u'price']
[u'bacteria', u'scare', u'prompt', u'health', u'servic', u'assur']
[u'bayer', u'call', u'state', u'veto', u'crop']
[u'beard', u'leav', u'option', u'open']
[u'fish', u'drug', u'traffick', u'jail', u'year']
[u'bird', u'vaccin', u'useless']
[u'boati', u'hear', u'cyclon', u'safeti', u'plan', u'chang']
[u'boat', u'damag', u'fremantl', u'harbour', u'explos']
[u'bodi', u'gold', u'coast', u'park']
[u'boycott', u'violenc', u'lankan', u'poll']
[u'kwinana', u'refineri', u'resum', u'oper']
[u'broad', u'follow', u'father', u'footstep']
[u'build', u'boom', u'good', u'buchanan', u'park', u'tender']
[u'busi', u'chamber', u'back', u'camera', u'plan']
[u'bypass', u'underground', u'indigen', u'artefact']
[u'central', u'darl', u'back', u'councillor', u'number']
[u'chang', u'iraqi', u'market', u'pose', u'threat', u'wheat', u'grower']
[u'charg', u'lay', u'elder', u'youth', u'worker', u'murder']
[u'childcar', u'provid', u'take']
[u'child', u'charg', u'quash', u'convict']
[u'claim', u'birthrat', u'drop', u'chang']
[u'clean', u'show', u'gibb', u'river', u'get', u'cleaner']
[u'cobb', u'angri', u'protest', u'attack']
[u'cole', u'myer', u'prowl', u'busi', u'expans']
[u'commerc', u'bodi', u'back', u'chang']
[u'consular', u'offici', u'help', u'detain', u'australian']
[u'contract', u'review', u'speed', u'camera', u'bungl']
[u'cooper', u'confid', u'accc', u'reject', u'takeov']
[u'council', u'await', u'water', u'recycl', u'project']
[u'council', u'probe', u'reveal', u'unaccount', u'elect']
[u'council', u'consid', u'flood', u'prepar', u'pond']
[u'council', u'green', u'light', u'snowi', u'plain', u'wind', u'farm']
[u'councillor', u'urg', u'water', u'hour', u'rethink']
[u'council', u'reject', u'park', u'chang']
[u'council', u'unit', u'push', u'highway', u'dual', u'carriageway']
[u'court', u'hear', u'tap', u'murdoch', u'phone', u'call']
[u'court', u'like', u'close', u'terror', u'trial']
[u'defenc', u'contract', u'net', u'hundr', u'job']
[u'defenc', u'softbal', u'battl', u'honour']
[u'deliri', u'fan', u'celebr', u'socceroo']
[u'design', u'work', u'begin', u'denmark', u'hospit']
[u'detent', u'teen', u'guilti', u'arm', u'robberi']
[u'district', u'await', u'drought', u'news']
[u'drop', u'suppli', u'push', u'potato', u'price']
[u'economist', u'play', u'rise', u'jobless', u'rate']
[u'eel', u'smith']
[u'emerg', u'servic', u'worri', u'chang']
[u'england', u'need', u'thorp', u'say', u'hussain']
[u'england', u'unchang', u'black']
[u'esso', u'worker', u'sceptic', u'roster', u'chang']
[u'expo', u'offer', u'teen', u'career', u'advic']
[u'fatal', u'unit', u'blaze', u'shock', u'communiti']
[u'fear', u'telstra', u'cut', u'plan', u'affect', u'local']
[u'fin', u'follow', u'england', u'defeat']
[u'firework', u'busi', u'plan', u'goulburn', u'mulware']
[u'focus', u'fall', u'stock', u'rout', u'network', u'problem']
[u'focus', u'turn', u'plan', u'multi', u'purpos']
[u'forum', u'discuss', u'book', u'regul']
[u'foster', u'deal', u'curb', u'bundi', u'sale']
[u'french', u'senat', u'pass', u'emerg', u'law']
[u'french', u'violenc', u'level', u'normal']
[u'furi', u'match', u'vagana', u'crash']
[u'expans', u'drive', u'woodsid', u'forecast']
[u'gonzalez', u'hand', u'puerta', u'speedi', u'exit']
[u'govt', u'deni', u'chang', u'hurt', u'famili']
[u'govt', u'outlin', u'region', u'upgrad']
[u'govt', u'urg', u'opposit', u'poki', u'plan']
[u'goward', u'rais', u'concern']
[u'gower', u'name', u'half', u'great', u'britain', u'clash']
[u'group', u'purr', u'reject', u'control', u'law']
[u'gymnast', u'inspir', u'socceroo']
[u'hand', u'crank', u'laptop', u'launch', u'schoolkid']
[u'hayden', u'hussey', u'complet', u'domin']
[u'health', u'meet', u'consid', u'doctor', u'hospit']
[u'hill', u'expect', u'request', u'troop', u'iraq']
[u'hill', u'play', u'aust', u'link', u'scandal']
[u'hill', u'rais', u'hick', u'inform', u'rumsfeld']
[u'hospit', u'locat', u'plan', u'review']
[u'howard', u'unmov', u'milit', u'threat']
[u'hungari', u'investig', u'wwii', u'crime', u'suspect']
[u'hunter', u'bird', u'plan', u'near', u'complet']
[u'icac', u'reject', u'health', u'servic', u'contract', u'probe']
[u'indonesia', u'confirm', u'death', u'bird']
[u'intellig', u'design', u'debat', u'inspir', u'prize', u'win']
[u'iran', u'start', u'convert', u'batch', u'uranium']
[u'isra', u'leader', u'agre', u'elect', u'time']
[u'journalist', u'apologis', u'leak', u'case']
[u'kalgoorli', u'rank', u'high', u'properti', u'fire']
[u'kangaroo', u'flat', u'councillor', u'bendigo', u'mayor']
[u'katter', u'fear', u'cdma', u'plan', u'hurt', u'region']
[u'kempsey', u'council', u'move', u'address', u'youth', u'crime']
[u'kuwaiti', u'jail', u'centrelink', u'fraud']
[u'lawyer', u'question', u'sourc', u'cream', u'poison']
[u'leak', u'add', u'pressur', u'save', u'townsvill', u'water']
[u'lectur', u'charg', u'take', u'student', u'money']
[u'break', u'australia']
[u'accus', u'home', u'invas', u'target', u'senior']
[u'accus', u'multipl', u'child', u'offenc']
[u'arrest', u'murder', u'elder', u'volunt']
[u'face', u'child', u'charg', u'challeng', u'law']
[u'jail', u'theft', u'shoot', u'chase']
[u'lose', u'appeal', u'doubl', u'murder', u'convict']
[u'man', u'hospit', u'temporarili', u'shut', u'matern', u'unit']
[u'martin', u'urg', u'minut', u'dump', u'inquiri', u'submiss']
[u'mask', u'make', u'video', u'threat', u'aust']
[u'mcevoy', u'road', u'recoveri']
[u'member', u'leadership']
[u'memoir', u'win', u'nonfict', u'prize']
[u'minist', u'confid', u'support', u'circl']
[u'miss', u'woman', u'unlik', u'aliv', u'polic']
[u'ethanol', u'blend', u'hit', u'market']
[u'move', u'examin', u'children', u'therapi', u'wait', u'list']
[u'fear', u'network', u'short', u'chang', u'region']
[u'urg', u'govt', u'tear', u'indonesian', u'fish']
[u'murder', u'suspect', u'lock', u'parol', u'breach']
[u'murdoch', u'shoe', u'dont', u'match', u'footprint', u'court', u'hear']
[u'museum', u'manag', u'hand']
[u'music', u'award', u'urban', u'cowboy', u'toast', u'cabooltur']
[u'nation', u'keppel', u'candid']
[u'nelson', u'accus', u'backflip', u'univers']
[u'nelson', u'tell', u'lift', u'game', u'australian', u'school']
[u'board', u'member', u'seek', u'health', u'servic']
[u'contract', u'crack', u'school', u'clean']
[u'group', u'help', u'migrant', u'profession']
[u'nonu', u'clear', u'danger', u'tackl']
[u'northern', u'trawler', u'welcom']
[u'introduc', u'anti', u'terror', u'legisl']
[u'crabber', u'vow', u'fight', u'rule', u'chang']
[u'nurs', u'stop', u'work', u'push']
[u'gold', u'price', u'drive', u'market']
[u'oper', u'cancel', u'hospit', u'fund']
[u'optim', u'mount', u'piper', u'power', u'upgrad']
[u'orang', u'home', u'diseas', u'control']
[u'pair', u'face', u'court', u'drug', u'seiz']
[u'patrick', u'alleg', u'virgin', u'break', u'dividend', u'leak']
[u'patrick', u'profit', u'slide']
[u'arriv', u'apec']
[u'hint', u'abort', u'pill', u'conscienc', u'vote']
[u'govt', u'undermin', u'bougainvill', u'secur']
[u'polic', u'associ', u'urg', u'offic', u'number']
[u'polic', u'hunt', u'tamworth', u'child', u'attack']
[u'polic', u'interview', u'wit']
[u'polic', u'investig', u'death']
[u'polic', u'tweed', u'drug', u'oper', u'arrest']
[u'polic', u'minist', u'deni', u'prioritis', u'nation']
[u'public', u'concern', u'trigger', u'abernethi', u'develop']
[u'public', u'remind', u'colac', u'parliamentari', u'sit']
[u'qualif', u'open', u'door', u'asia', u'lowi']
[u'rare', u'black', u'coral', u'send', u'adelaid', u'museum']
[u'ravensthorp', u'water', u'shortag', u'unlik']
[u'redback', u'skittl', u'warrior', u'victori']
[u'redback', u'warrior', u'even', u'pois']
[u'renmark', u'meet', u'back', u'anti', u'dump', u'stanc']
[u'research', u'highlight', u'sugarcan', u'posit']
[u'resid', u'saleyard', u'protest', u'street']
[u'rumsfeld', u'whisk', u'away', u'arriv', u'adelaid']
[u'rural', u'medico', u'anger', u'abort', u'pill', u'slur']
[u'pulp', u'threat', u'gunn']
[u'search', u'find', u'miss', u'aliv']
[u'senat', u'group', u'look', u'alburi', u'work', u'issu']
[u'shire', u'worker', u'negoti', u'chang']
[u'singapor', u'apologis', u'hang', u'date', u'bungl']
[u'singapor', u'set', u'nguyen', u'execut', u'date']
[u'smyth', u'pay', u'tribut', u'veteran']
[u'socceroo', u'break', u'world', u'drought']
[u'socceroo', u'earn', u'place', u'world']
[u'socceroo', u'score', u'record', u'televis', u'audienc']
[u'soccer', u'sign', u'tip', u'jump']
[u'sorenstam', u'rediscov', u'golf', u'passion']
[u'student', u'opportun', u'discuss', u'health', u'issu']
[u'studi', u'consid', u'natur', u'disast', u'protect']
[u'studi', u'investig', u'chang', u'role', u'farm', u'women']
[u'surg', u'sugar', u'price', u'lift', u'canegrow', u'spirit']
[u'suspect', u'milit', u'threaten', u'australia']
[u'sydney', u'hobart', u'veteran', u'take']
[u'staff', u'walk', u'reloc', u'propos']
[u'govt', u'contribut', u'aquat', u'centr', u'fund']
[u'tast', u'festiv', u'stay', u'waterfront']
[u'telstra', u'talk', u'benefit', u'cdma', u'phase']
[u'terror', u'threat', u'remain', u'despit', u'arrest', u'asio']
[u'life', u'host', u'die']
[u'thousand', u'celebr', u'trinidad', u'clinch', u'world']
[u'thousand', u'expect', u'flock', u'wine', u'festiv']
[u'timber', u'worker', u'ralli', u'compo']
[u'drug', u'investig', u'bust', u'traffic']
[u'tourism', u'industri', u'urg', u'speak']
[u'treasur', u'warn', u'budget', u'problem', u'loom']
[u'trial', u'alleg', u'bali', u'leader', u'proceed']
[u'trio', u'charg', u'woomera', u'fire']
[u'trio', u'recommend', u'braveri', u'award', u'tamworth']
[u'troop', u'remain', u'iraq', u'longer', u'hill']
[u'troop', u'welcom', u'home', u'iraq']
[u'uruguay', u'sicken', u'world', u'oust']
[u'back', u'iraq', u'prison', u'abus', u'probe']
[u'defend', u'phosphorus', u'bomb', u'fallujah']
[u'soldier', u'face', u'detaine', u'abus', u'charg']
[u'util', u'complaint', u'surg']
[u'supercar', u'chief', u'love', u'tight', u'contest']
[u'vietnam', u'search', u'glitter', u'amid', u'abus', u'fear']
[u'virgin', u'reject', u'dividend', u'leak', u'claim']
[u'wallabi', u'feel', u'pressur']
[u'warburton', u'storm', u'clean', u'continu']
[u'warn', u'recov', u'bracken']
[u'warrior', u'deep', u'troubl', u'adelaid']
[u'watch', u'sea', u'swim', u'ban']
[u'weather', u'contribut', u'platypus', u'loss']
[u'wellen', u'aust', u'nation', u'match']
[u'western', u'produc', u'board', u'member']
[u'western', u'salin', u'prove', u'cost']
[u'windi', u'limp', u'lunch']
[u'windi', u'slip', u'deeper', u'troubl']
[u'wind', u'nation', u'park', u'blaze']
[u'wine', u'group', u'consid', u'constitut']
[u'woman', u'die', u'unit', u'blaze']
[u'woolford', u'stand', u'raider', u'captain']
[u'youth', u'suspect', u'motor', u'scooter', u'theft']
[u'abalon', u'diver', u'releas', u'good', u'behaviour', u'bond']
[u'abbott', u'follow', u'govt', u'lead', u'abort', u'pill']
[u'abduct', u'attempt', u'worri', u'polic']
[u'accc', u'flag', u'waterfront', u'competit']
[u'accredit', u'loom', u'plan', u'standardis', u'fish']
[u'aceh', u'weapon', u'handov', u'extend']
[u'economi', u'retain', u'plus', u'rat']
[u'hand', u'remain', u'firek', u'vehicl']
[u'highlight', u'strike', u'boe', u'worker', u'plight']
[u'alic', u'spring', u'forum', u'address', u'anti', u'social', u'behaviour']
[u'await', u'feder', u'boundari', u'announc']
[u'ancient', u'aust', u'deposit', u'earli', u'earth', u'crust']
[u'anger', u'air', u'fish', u'ski']
[u'lose', u'legal', u'fight', u'import', u'pork']
[u'audio', u'highlight']
[u'aussi', u'rush', u'secur', u'world', u'ticket']
[u'australian', u'model', u'guilti', u'drug', u'charg']
[u'australian', u'open', u'bludgeon', u'windi']
[u'aust', u'troop', u'stay', u'iraq', u'howard']
[u'target', u'aust', u'bomb', u'rang']
[u'bail', u'revok', u'accus', u'gang', u'rapist']
[u'beethoven', u'skull', u'identifi']
[u'bichel', u'lead', u'fight']
[u'bishop', u'speak', u'chang']
[u'bond', u'item', u'memorabilia', u'sale']
[u'brain', u'gene', u'link', u'fear']
[u'bring', u'troop', u'home', u'iraq', u'demand', u'congressman']
[u'britain', u'extradit', u'madrid', u'train', u'bomb', u'suspect']
[u'cairn', u'indigen', u'child', u'protect', u'agenc', u'open']
[u'govt', u'negoti', u'iraq', u'exit', u'strategi']
[u'centrelink', u'worker', u'stop', u'work']
[u'chang', u'land', u'right']
[u'chelsea', u'mini', u'slump']
[u'concern', u'global', u'warm', u'affect', u'fish', u'stock']
[u'consortium', u'sign', u'carpark', u'busi', u'deal']
[u'contract', u'agreement', u'end', u'anaesthetist', u'disput']
[u'cook', u'jail', u'pour', u'captain']
[u'cooper', u'sharehold', u'vote', u'lion', u'nathan', u'right']
[u'costello', u'back', u'conscienc', u'vote', u'abort', u'pill']
[u'council', u'fail', u'approv', u'cruis', u'ship', u'termin', u'plan']
[u'councillor', u'prepar', u'toowoomba', u'north', u'campaign']
[u'court', u'hear', u'meatwork', u'clean', u'matter']
[u'cross', u'border', u'rescu', u'squad', u'lose', u'insur']
[u'crow', u'holm', u'court', u'tabl', u'rabbitoh']
[u'applic', u'fall']
[u'reopen', u'search', u'fail', u'croc']
[u'defenc', u'dept', u'releas', u'kiss', u'option']
[u'deregul', u'law', u'dampen', u'ricegrow', u'celebr']
[u'doctor', u'group', u'label', u'provid', u'number', u'plan']
[u'domest', u'cricket', u'start', u'sydney', u'brisban']
[u'domest', u'violenc', u'higher', u'malle']
[u'doubl', u'bomb', u'attack', u'rock', u'baghdad']
[u'dredg', u'boost', u'plan', u'iron']
[u'drug', u'firm', u'confid', u'clear']
[u'educ', u'dept', u'review', u'school', u'fare']
[u'elder', u'drug', u'traffick', u'permit', u'live', u'home']
[u'elliott', u'road', u'recoveri']
[u'emerg', u'servic', u'medal', u'honour', u'mitchel']
[u'end', u'loom', u'pregnanc', u'support', u'servic']
[u'england', u'peak', u'halt', u'rampant', u'black']
[u'entsch', u'unsur', u'byrn', u'leichhardt', u'candidaci']
[u'fairfax', u'employe', u'angri', u'plan']
[u'fairfax', u'lose', u'oshan', u'challeng']
[u'farmer', u'water', u'price']
[u'farr', u'jone', u'rue', u'rugbi', u'miss', u'opportun']
[u'flash', u'flood', u'prove', u'cost', u'council']
[u'fossilis', u'drop', u'dinosaur', u'graze']
[u'freightlink', u'say', u'railway', u'cost', u'competit']
[u'gang', u'driver', u'plead', u'guilti', u'gunn', u'payrol', u'robberi']
[u'gayl', u'heart', u'condit', u'treat', u'seri']
[u'play', u'wait', u'game', u'kangaroo']
[u'german', u'firm', u'lodg', u'wind', u'farm', u'plan']
[u'german', u'world', u'homecom', u'schwarzer']
[u'decis', u'disappoint', u'farmer']
[u'trial', u'abandon', u'mice', u'fall']
[u'gnome', u'owner', u'fall', u'victim', u'schooli', u'prank']
[u'goat', u'death', u'prompt', u'freight', u'overhaul']
[u'gold', u'price', u'hit', u'year', u'high']
[u'govt', u'accus', u'breach', u'polici', u'wind', u'farm']
[u'govt', u'alloc', u'fund', u'calder', u'highway', u'project']
[u'govt', u'ask', u'help', u'save', u'carnarvon', u'basin', u'water']
[u'govt', u'shell', u'fund', u'turtl', u'protect']
[u'govt', u'consid', u'gympi', u'bypass', u'rout', u'option']
[u'govt', u'urg', u'smelter', u'potlin']
[u'problem', u'requir', u'extra', u'medic', u'student']
[u'greek', u'prosecutor', u'charg', u'sprinter', u'fake', u'crash']
[u'green', u'group', u'happi', u'decis', u'tuna', u'farm']
[u'green', u'group', u'see', u'good']
[u'guilti', u'lesli', u'prepar', u'return', u'home']
[u'harvey', u'head', u'west', u'challeng']
[u'health', u'minist', u'agre', u'bird', u'plan']
[u'hensbi', u'lonard', u'pace', u'world']
[u'high', u'court', u'permit', u'logger', u'fight', u'forestri']
[u'high', u'rail', u'cost', u'freight', u'industri', u'away', u'toll']
[u'homeless', u'scheme', u'win', u'polic', u'award']
[u'hope', u'earli', u'finish', u'calder', u'duplic']
[u'hospit', u'interpret', u'lack', u'train', u'danger']
[u'howard', u'warn', u'bird', u'cover']
[u'hussey', u'hayden', u'continu', u'assault']
[u'illawarra', u'jobless', u'rate', u'highest', u'statist']
[u'sexi', u'say', u'tenni', u'king', u'feder']
[u'industri', u'rival', u'lobbi', u'telstra', u'push', u'eas']
[u'injur', u'vaughan', u'hope', u'return', u'second', u'test']
[u'show', u'panther', u'port', u'macquari', u'club']
[u'iraqi', u'mosqu', u'bomb', u'kill']
[u'iraq', u'say', u'aust', u'troop', u'longer', u'need']
[u'ireland', u'australia', u'meet', u'lick', u'wound']
[u'inquiri', u'hear', u'christma', u'basic']
[u'inquiri', u'tell', u'mine', u'boom', u'push', u'wag']
[u'jone', u'confid', u'success', u'ireland']
[u'journalist', u'picket', u'plan', u'fairfax']
[u'juri', u'find', u'chef', u'guilti', u'murder', u'father']
[u'kangaroo', u'drop', u'price', u'great', u'britain', u'clash']
[u'kearn', u'babi', u'expect', u'recoveri']
[u'kearn', u'speak', u'time', u'daughter', u'accid']
[u'kid', u'beach', u'toy', u'recal']
[u'king', u'prove', u'good', u'croc']
[u'kookaburra', u'crush', u'fiji', u'world', u'record']
[u'bali', u'bomb', u'survivor', u'return', u'newcastl']
[u'lawyer', u'back', u'decis', u'extradit', u'assault']
[u'lesli', u'arriv', u'court', u'sentenc']
[u'lesli', u'convict', u'walk', u'free', u'time', u'serv']
[u'life', u'sentenc', u'burn', u'mate', u'death']
[u'lion', u'nathan', u'appeal', u'cooper', u'decis']
[u'local', u'industri', u'upbeat', u'gold', u'price', u'surg']
[u'machin', u'overtak', u'human', u'internet']
[u'arrest', u'doubl', u'murder']
[u'court', u'communiti', u'worker', u'murder']
[u'refus', u'bail', u'bomb', u'possess']
[u'sentenc', u'drug']
[u'marin', u'overpow', u'victori']
[u'meat', u'livestock', u'chairman', u'urg', u'uniti']
[u'meatwork', u'job', u'time']
[u'meet', u'put', u'focus', u'riverland', u'crime']
[u'meet', u'underlin', u'wild', u'fenc', u'upkeep']
[u'miner', u'health', u'studi', u'show', u'depress', u'sleep']
[u'minist', u'consid', u'pacif', u'nation', u'fund']
[u'lesli', u'case', u'trial', u'reveal', u'lawyer', u'say']
[u'mother', u'jail', u'babi', u'death']
[u'fin', u'firearm', u'offenc']
[u'play', u'union', u'fear']
[u'sack', u'staffer', u'fight', u'dismiss']
[u'murdoch', u'similar', u'height', u'suspect', u'court', u'hear']
[u'muslim', u'back', u'weed', u'radic', u'leader']
[u'natoli', u'upset', u'sippi', u'down', u'hospit', u'handl']
[u'project', u'boost', u'resourc', u'confid']
[u'zealand', u'host', u'rugbi', u'world']
[u'nguyen', u'famili', u'hope']
[u'guarante', u'solon', u'case', u'wont', u'repeat']
[u'target', u'share', u'price', u'govt', u'telstra', u'sale']
[u'oecd', u'deleg', u'head', u'riverland']
[u'cancer', u'death', u'avoid']
[u'orang', u'council', u'eas', u'water', u'ban']
[u'pair', u'face', u'court', u'pipe', u'bomb']
[u'palm', u'council', u'reflect', u'death', u'custodi']
[u'park', u'grain', u'close']
[u'parliament', u'mate', u'make', u'intern', u'silli', u'list']
[u'promis', u'council', u'worker', u'protest']
[u'phosphat', u'mine', u'resum', u'nauru']
[u'plan', u'retail', u'outlet', u'spark', u'small', u'busi', u'fear']
[u'wish', u'solon']
[u'polic', u'hunt', u'knife', u'bandit']
[u'polic', u'offic', u'guilti', u'rape']
[u'polic', u'plan', u'includ', u'town', u'centr', u'patrol']
[u'polic', u'probe', u'possibl', u'drug', u'syndic']
[u'polic', u'warn', u'parent', u'abduct', u'attempt']
[u'pork', u'produc', u'lose', u'high', u'court', u'import']
[u'power', u'plant', u'plan', u'spark', u'question']
[u'protest', u'turn', u'violent', u'apec']
[u'public', u'land', u'plan']
[u'push', u'continu', u'anaesthetist', u'young']
[u'pwcs', u'urg', u'lift', u'hunter', u'coal', u'export']
[u'rain', u'affect', u'bushfir', u'control', u'effort']
[u'rain', u'continu', u'hobart']
[u'region', u'highway', u'extrem', u'danger']
[u'region', u'child', u'disabl', u'advic', u'scheme']
[u'resid', u'fume', u'crematorium', u'court']
[u'resid', u'opportun', u'talk', u'wheatbelt', u'futur']
[u'resourc', u'boost', u'darfur', u'mission']
[u'resourc', u'push', u'share', u'market', u'higher']
[u'roadwork', u'help', u'traine', u'secur', u'construct']
[u'roar', u'turn', u'feng', u'shui', u'goal', u'drought']
[u'cast', u'doubt', u'bypass']
[u'ruddock', u'open', u'famili', u'confer']
[u'rumsfeld', u'hail', u'australia', u'relationship']
[u'rural', u'exhibit', u'centr', u'fund', u'prove', u'cost']
[u'deputi', u'opposit', u'leader', u'bow']
[u'good', u'posit', u'deal', u'outbreak']
[u'join', u'nlis', u'sheep', u'goat']
[u'pulp', u'expect', u'threaten', u'heywood']
[u'schooli', u'urg', u'parti', u'safe']
[u'site', u'choos', u'plan', u'sport', u'complex']
[u'socceroo', u'reveal', u'dirti', u'trick', u'inspir']
[u'solon', u'australia']
[u'solon', u'bear', u'grudg']
[u'specul', u'farrer', u'futur', u'elector']
[u'lankan', u'win', u'presidenti', u'elect']
[u'lankan', u'presidenti', u'elect', u'close']
[u'storm', u'respons', u'review', u'consid', u'emerg', u'plan']
[u'suspend', u'sentenc', u'driver', u'guilti', u'girl']
[u'suspici', u'packag', u'put', u'hospit']
[u'accus', u'illeg', u'grow', u'japanes']
[u'tasmania', u'test', u'bird', u'outbreak', u'respons']
[u'teen', u'accus', u'throw', u'blood', u'polic']
[u'terror', u'law', u'bristl', u'safeguard']
[u'terror', u'threat', u'remain', u'unchang', u'despit', u'warn']
[u'magic', u'mushi']
[u'thorn', u'phelp', u'star', u'domin', u'blue']
[u'heritag', u'worker', u'voluntari', u'redund']
[u'thwait', u'announc', u'water', u'plan']
[u'toll', u'pacif', u'highway', u'upgrad', u'inquiri']
[u'toll', u'hold', u'head', u'confid', u'takeov']
[u'earli', u'troop', u'return', u'iraq']
[u'tourist', u'number', u'drop', u'wimmera', u'malle']
[u'transport', u'minist', u'consid', u'road', u'charg', u'hike']
[u'trescothick', u'doubt', u'famili', u'accid']
[u'trescothick', u'remain', u'pakistan']
[u'trinidad', u'declar', u'holiday', u'soccer', u'world']
[u'trochus', u'shell', u'poacher', u'jail']
[u'turkey', u'lash', u'fifa', u'boss', u'blatter']
[u'accus', u'assault', u'win', u'extradit', u'fight']
[u'envoy', u'turn', u'guantanamo', u'visit']
[u'union', u'urg', u'busi', u'cash', u'courier']
[u'scienc', u'technic', u'support', u'staff']
[u'vivian', u'solon', u'return', u'australia']
[u'economi', u'dwarf', u'nation', u'growth', u'report']
[u'wallac', u'corps', u'bride', u'oscar', u'short', u'list']
[u'opposit', u'reject', u'anti', u'terror', u'search', u'claus']
[u'water', u'expert', u'head', u'gold', u'coast', u'gather']
[u'studi', u'women', u'farm', u'contribut']
[u'weah', u'cri', u'foul', u'elect', u'loss']
[u'whale', u'death', u'think', u'isol', u'incid']
[u'wildcat', u'sink', u'breaker']
[u'wine', u'qualiti', u'best', u'year']
[u'woman', u'win', u'continu', u'legal', u'action']
[u'wooli', u'awar', u'walkerston', u'delay']
[u'worri', u'air', u'council', u'buddhist', u'group', u'agreement']
[u'yeppoon', u'prepar', u'schooli', u'influx']
[u'arrest', u'schooli', u'celebr', u'begin']
[u'grandstand', u'speak', u'andi', u'bichel']
[u'grandstand', u'speak', u'angi', u'skirv']
[u'grandstand', u'speak', u'brad', u'hodg']
[u'cancer', u'patient', u'seek', u'treatment', u'sydney']
[u'afghan', u'blast', u'kill', u'portugues', u'peacekeep']
[u'amman', u'bomb', u'aim', u'muslim']
[u'amnesti', u'demand', u'detent', u'camp', u'investig']
[u'anti', u'terror', u'barrier', u'unveil', u'sydney']
[u'apec', u'leader', u'commit', u'bird', u'fight']
[u'apec', u'leader', u'push', u'export', u'subsidi']
[u'apec', u'leader', u'target', u'bird', u'trade']
[u'aussi', u'slide', u'golf', u'world']
[u'aust', u'track', u'meet', u'kyoto', u'target', u'campbel']
[u'australia', u'commit', u'bird', u'fight']
[u'australian', u'prostat', u'cancer', u'drug', u'show', u'promis']
[u'australia', u'urg', u'fight', u'death', u'penalti']
[u'best', u'intens', u'care']
[u'best', u'life', u'support', u'machin']
[u'bird', u'flare', u'vietnam', u'china']
[u'blue', u'domin', u'struggl', u'tiger']
[u'blue', u'cours', u'score']
[u'boomer', u'outclass']
[u'injur', u'rock', u'attack']
[u'breaker', u'start', u'season', u'win', u'note']
[u'buderus', u'relish', u'hostil', u'brit']
[u'bull', u'gain', u'ascend', u'bushrang']
[u'bushrang', u'inning', u'point', u'despit']
[u'bush', u'reject', u'timet', u'iraq', u'pullout']
[u'capsiz', u'yacht', u'alarm', u'polic']
[u'bomb', u'kill', u'baghdad', u'market']
[u'castro', u'shrug', u'health', u'report', u'marathon']
[u'chelsea', u'treat', u'like', u'danger', u'anim']
[u'coloni', u'couch', u'cost', u'consortium']
[u'concern', u'rais', u'perri', u'lake', u'develop']
[u'congreg', u'pray', u'australian', u'death']
[u'conrad', u'black', u'appear', u'court', u'tuesday']
[u'cost', u'couch', u'find', u'home']
[u'court', u'award', u'child', u'protect', u'worker', u'stress', u'payout']
[u'crow', u'fin', u'hotel', u'phone', u'assault']
[u'audio', u'highlight']
[u'devonport', u'crack', u'danger', u'drive']
[u'divid', u'senat', u'tabl', u'report']
[u'glori', u'play', u'entertain', u'draw']
[u'feder', u'face', u'nalbandian', u'master', u'final']
[u'firefight', u'union', u'push', u'resourc']
[u'ford', u'job']
[u'fuel', u'leak', u'disrupt', u'bind', u'flight']
[u'gaudio', u'set', u'feder', u'semi', u'final']
[u'georgeson', u'light', u'race', u'women', u'surf', u'crown']
[u'govt', u'action', u'urg', u'global', u'warm']
[u'govt', u'warn', u'spend', u'rat']
[u'greenhous', u'emiss', u'report', u'alarm']
[u'greenpeac', u'hunt', u'japanes', u'whale', u'ship']
[u'hodg', u'show', u'nerv', u'test', u'debut']
[u'howard', u'unveil', u'bird', u'program']
[u'hussey', u'fall', u'hobart']
[u'iaea', u'rap', u'iran', u'transpar']
[u'indonesia', u'pull', u'troop', u'aceh']
[u'indonesia', u'deport', u'lesli']
[u'irish', u'media', u'kean', u'sack', u'unit']
[u'japanes', u'firm', u'sniff', u'internet', u'opportun']
[u'kean', u'unit', u'career']
[u'king', u'outlast', u'razorback', u'tiger', u'toppl', u'taipan']
[u'kiwi', u'snatch', u'victori', u'french']
[u'kookaburra', u'world']
[u'labor', u'back', u'forc', u'train', u'plan']
[u'lenton', u'set']
[u'lesli', u'free', u'bali', u'jail']
[u'lesli', u'hop', u'free', u'today']
[u'lesli', u'lawyer', u'meet', u'immigr', u'offici']
[u'lesli', u'releas', u'jail']
[u'lose', u'look', u'gregan']
[u'madonna', u'lift', u'belgian', u'song', u'judg', u'rule']
[u'dead', u'woman', u'injur', u'domest', u'disput']
[u'mccaw', u'england', u'clash']
[u'mcgrath', u'leav', u'windi', u'tatter']
[u'mcgrath', u'rock', u'windi', u'order']
[u'methadon', u'program', u'closur', u'unaccept']
[u'milit', u'websit', u'outlin', u'jakarta', u'attack', u'scenario']
[u'candid', u'prompt', u'jackson', u'retir']
[u'port', u'secur', u'devic', u'unveil']
[u'lankan', u'presid', u'focus', u'peac']
[u'nguyen', u'expect']
[u'year', u'injur', u'cliff', u'fall']
[u'polic', u'overhaul', u'health', u'safeti']
[u'urg', u'advantag', u'mine', u'opportun']
[u'nurs', u'retent', u'rat', u'worri', u'say', u'feder']
[u'opposit', u'back', u'land', u'right', u'chang']
[u'pakistani', u'tour', u'impress', u'depress', u'annan']
[u'parent', u'upset', u'pingelli', u'school', u'closur']
[u'pentagon', u'review', u'iraq', u'intellig', u'unit']
[u'perren', u'eye', u'centuri', u'bull', u'gain', u'upper', u'hand']
[u'plane', u'make', u'belli', u'land', u'bathurst']
[u'polic', u'identifi', u'bali', u'bomber']
[u'polic', u'investig', u'fatal', u'domest', u'disput']
[u'pont', u'go', u'open']
[u'portsmouth', u'celtic', u'sniff', u'kean']
[u'premier', u'defend', u'give', u'refer', u'brigitt']
[u'princ', u'charl', u'take', u'action', u'tabloid']
[u'prostat', u'cancer', u'drug', u'show', u'promis']
[u'quak', u'donat', u'exceed', u'pakistan', u'need']
[u'queanbeyan', u'council', u'chang', u'manag', u'structur']
[u'ranger', u'trounc']
[u'region', u'telstra', u'worker', u'fear', u'job']
[u'ronaldo', u'extend', u'contract']
[u'rspca', u'condemn', u'live', u'export', u'goat', u'death']
[u'athlet', u'seek', u'beij', u'paralymp']
[u'santa', u'float', u'mayor', u'christma', u'parad']
[u'schooli', u'polic', u'arrang']
[u'shark', u'sight', u'close', u'perth', u'beach']
[u'soldier', u'kill', u'palestinian', u'west', u'bank']
[u'south', u'asia', u'quak', u'donor', u'confer', u'begin']
[u'sparrow', u'death', u'shock', u'nation']
[u'stock', u'boost', u'crude', u'price', u'drop']
[u'suicid', u'bomber', u'target', u'iraqi', u'mosqu']
[u'swimmer', u'warn', u'swan', u'river', u'sewag', u'spill']
[u'tendulkar', u'equal', u'akram', u'record']
[u'thorp', u'blitz', u'sydney', u'heat']
[u'thorp', u'shock', u'withdraw']
[u'thousand', u'flock']
[u'tiger', u'struggl', u'rampant', u'blue']
[u'truss', u'defend', u'airport', u'develop', u'process']
[u'accus', u'iran', u'extens', u'right', u'abus']
[u'expert', u'cancel', u'guantanamo', u'visit']
[u'fear', u'bird', u'hamper', u'aid', u'fight']
[u'fund', u'learn', u'program', u'disadvantag']
[u'summit', u'turn', u'spotlight', u'censorship']
[u'bird', u'warn']
[u'urg', u'intern', u'probe', u'iraqi', u'jail']
[u'actor', u'liabl', u'death', u'murder', u'wife']
[u'forc', u'train', u'plan', u'concern', u'katherin', u'mayor']
[u'vaughan', u'second', u'test']
[u'volunt', u'firefight', u'group', u'commiss']
[u'western', u'nation', u'warn', u'attack', u'indonesia']
[u'windi', u'fight']
[u'woman', u'honour', u'save', u'father']
[u'woman', u'send', u'polic', u'file', u'slam', u'privaci', u'commission']
[u'woolmer', u'happi', u'suspect', u'action']
[u'actu', u'seek', u'jam', u'hardi', u'compo', u'law']
[u'adelaid', u'disappoint', u'flame']
[u'troop', u'prais', u'iraq', u'progress']
[u'asio', u'check', u'alien', u'muslim', u'advoc']
[u'asio', u'intimid', u'muslim', u'advoc']
[u'audio', u'highlight']
[u'australian', u'step', u'taipei', u'challeng']
[u'barca', u'humbl', u'real', u'bernabeu']
[u'best', u'fight', u'life', u'london']
[u'blast', u'wind', u'thailand']
[u'brave', u'queensland', u'honour', u'award']
[u'bravo', u'dedic', u'trinidad', u'world', u'team']
[u'brisban', u'shrine', u'honour', u'rat', u'tobruk']
[u'burk', u'will', u'water', u'bottl', u'display']
[u'burst', u'water', u'main', u'damag', u'shop', u'complex']
[u'bush', u'hope', u'japan', u'lift', u'beef']
[u'bush', u'hold', u'talk', u'china']
[u'bush', u'urg', u'greater', u'china', u'freedom']
[u'busi', u'council', u'queanbeyan', u'tourist', u'centr']
[u'action', u'nguyen', u'prepar', u'fate']
[u'drug', u'law', u'tighten']
[u'amend', u'like', u'murray']
[u'canberra', u'need', u'unit', u'minist']
[u'bomb', u'kill', u'dozen', u'iraq']
[u'carrol', u'set', u'commonwealth', u'record']
[u'celtic', u'crush', u'ranger']
[u'childish', u'comment', u'wont', u'save', u'nguyen', u'downer']
[u'chines', u'explos', u'kill']
[u'coalit', u'begin', u'state', u'elect', u'preselect']
[u'coalit', u'call', u'public', u'hous', u'boost']
[u'cooper', u'confid', u'sharehold', u'resist', u'takeov']
[u'crime', u'victim', u'need', u'support']
[u'defeat', u'immin', u'valiant', u'windi']
[u'democrat', u'sanction', u'singapor']
[u'deport', u'lesli', u'rout', u'singapor']
[u'drug', u'drive', u'penalti', u'increas']
[u'win', u'maria', u'island', u'yact', u'race']
[u'emir', u'order', u'coup', u'boe']
[u'etsa', u'share', u'sale']
[u'fairfax', u'chief', u'push', u'ahead', u'compani', u'chang']
[u'firefight', u'contain', u'nation', u'park', u'blaze']
[u'ravag', u'disus', u'build']
[u'flintoff', u'halt', u'pakistan', u'march']
[u'franc', u'beat', u'tonga', u'fail', u'impress']
[u'franc', u'keep', u'watch', u'breatharian', u'retreat']
[u'french', u'pair', u'master', u'crown']
[u'gari', u'glitter', u'arrest', u'vietnam', u'report']
[u'gate', u'block', u'park', u'deter', u'danger', u'drive']
[u'gold', u'price', u'spark', u'increas', u'explor']
[u'govt', u'happi', u'assist', u'wheat', u'inquiri', u'vail']
[u'govt', u'push', u'airport', u'infrastructur']
[u'govt', u'monitor', u'telstra', u'mobil', u'phone', u'plan']
[u'gymnast', u'seek', u'glori', u'melbourn']
[u'habana', u'help', u'springbok', u'wale']
[u'half', u'time', u'rocket', u'fire', u'wallabi', u'victori', u'jone']
[u'henri', u'doubl', u'sink', u'wigan', u'chelsea', u'form']
[u'henri', u'humbl', u'black', u'hold', u'england']
[u'champ', u'win', u'burger', u'battl']
[u'indian', u'guard', u'kidnap', u'afghanistan']
[u'india', u'shatter', u'south', u'africa', u'world', u'record', u'dream']
[u'indonesian', u'fishermen', u'spot', u'ashor']
[u'iran', u'deni', u'nuclear', u'program', u'warrant', u'sanction']
[u'iraqi', u'grievanc', u'cairo', u'confer']
[u'israel', u'releas', u'whistleblow', u'vanunu', u'bail']
[u'jam', u'hardi', u'warn', u'compo', u'delay', u'backlash']
[u'japanes', u'tourist', u'die', u'reef', u'dive']
[u'jet', u'hold', u'defeat', u'roar']
[u'kangaroo', u'nation', u'final']
[u'kasper', u'put', u'bull', u'brisban']
[u'kennedi', u'consid', u'labor', u'nomin']
[u'labor', u'tight', u'lip', u'jackson', u'futur']
[u'lesli', u'expect', u'sydney', u'today']
[u'lesli', u'reliev']
[u'lesli', u'rest', u'singapor']
[u'lesli', u'speak']
[u'lesli', u'return', u'australia']
[u'liber', u'plan', u'eas', u'nurs', u'shortag']
[u'light', u'plane', u'crash', u'kill']
[u'charg', u'doubl', u'stab']
[u'rescu', u'hang']
[u'sharehold', u'telstra', u'chief']
[u'newman', u'unit', u'win', u'award']
[u'nguyen', u'lawyer', u'consid', u'intern', u'court']
[u'product', u'cut', u'opec', u'agenda']
[u'govt', u'anger', u'region', u'telstra', u'loss']
[u'opposit', u'alarm', u'public', u'hous', u'drop']
[u'opposit', u'criticis', u'singapor', u'govt']
[u'pacif', u'slow', u'tackl', u'aid', u'threat']
[u'pakistan', u'second', u'test']
[u'pakistan', u'look', u'comfort', u'england']
[u'pakistan', u'promis', u'account', u'donat']
[u'pakistan', u'assist', u'shabbir', u'bowl']
[u'parent', u'advic', u'hotlin', u'success']
[u'peter', u'newlind', u'speak', u'stuart', u'macgil']
[u'polic', u'seek', u'wit', u'trail', u'bike', u'collis']
[u'polic', u'urg', u'suspect', u'surrend', u'stab']
[u'princ', u'albert', u'monaco', u'enthron', u'complet']
[u'public', u'comment', u'seek', u'olymp', u'expans']
[u'putin', u'arriv', u'trade', u'talk', u'tokyo']
[u'putin', u'see', u'scope', u'project', u'north', u'korea']
[u'resid', u'fish', u'ranger']
[u'retail', u'urg', u'recycl']
[u'ruud', u'reveal', u'shock', u'kean', u'departur']
[u'scientist', u'hunt', u'asteroid', u'probe', u'space']
[u'senat', u'chang']
[u'socceroo', u'seek', u'european', u'friend']
[u'somali', u'pirat', u'releas', u'hijack', u'ship']
[u'spanish', u'mass', u'mark', u'franco', u'death']
[u'storm', u'power', u'south', u'east']
[u'strong', u'quak', u'hit', u'indonesia']
[u'tenni', u'boss', u'defend', u'gaudio', u'whitewash']
[u'thorp', u'drop', u'game', u'program']
[u'thousand', u'demand', u'fresh', u'elect', u'azerbaijan']
[u'thousand', u'join', u'schooli', u'celebr']
[u'kill', u'attack', u'afghan', u'warlord']
[u'tiger', u'triumph', u'japan']
[u'toll', u'rise', u'storm', u'lash', u'hondura']
[u'tour', u'seek', u'help', u'aussi', u'golfer']
[u'trezeguet', u'doubl', u'juve', u'crush', u'roma']
[u'troop', u'arriv', u'home', u'iraq']
[u'tropic', u'storm', u'gamma', u'hit', u'central', u'america']
[u'undef', u'blue', u'thrash', u'tiger']
[u'unit', u'domin', u'perform']
[u'detail', u'haditha', u'shoot']
[u'quiz', u'china', u'dissid', u'crackdown']
[u'wallabi', u'snap', u'lose', u'streak', u'ireland']
[u'welsh', u'forg', u'stroke', u'clear', u'world']
[u'west', u'indi', u'fight']
[u'wildcat', u'complet', u'doubl', u'hawk', u'sixer', u'bullet']
[u'wildcat', u'impress', u'away', u'home']
[u'windi', u'final', u'fight']
[u'windi', u'star', u'barrel']
[u'wind', u'trap', u'smoke', u'perth']
[u'woman', u'remain', u'critic', u'domest', u'disput']
[u'bushfir', u'victim', u'suffer', u'post', u'traumat', u'stress']
[u'hail', u'nation', u'recycl', u'leader']
[u'adelaid', u'wari', u'tiger']
[u'readi', u'attack']
[u'agent', u'pleas', u'hous', u'sale']
[u'alleg', u'crimin', u'deni', u'health', u'ploy']
[u'ecotour', u'award', u'kingfish', u'resort']
[u'atkinson', u'sign', u'subaru']
[u'attack', u'like', u'terror', u'expert', u'say']
[u'attorney', u'general', u'retir', u'polit']
[u'audit', u'examin', u'surgeri', u'death']
[u'australia', u'bat', u'hobart']
[u'australia', u'romp', u'seri', u'victori']
[u'australia', u'secur', u'wicket']
[u'aviat', u'secur', u'comment', u'prompt']
[u'award', u'recognis', u'pilbara', u'volunt']
[u'azahari', u'group', u'sell', u'phone', u'card', u'surviv']
[u'bank', u'drag', u'market']
[u'bashir', u'lawyer', u'seek', u'case', u'review']
[u'beazley', u'back', u'intern', u'court', u'action', u'save']
[u'believ', u'pray', u'jesus', u'imag', u'plant']
[u'betfair', u'law', u'attract', u'crimin']
[u'bird', u'earli', u'warn', u'track', u'migratori']
[u'bovil', u'honour', u'fair', u'dinkum', u'campaign']
[u'britain', u'admit', u'iraqi', u'deport']
[u'break', u'hill', u'urg', u'rethink', u'tourism', u'imag']
[u'builder', u'beat', u'punch', u'world']
[u'bush', u'thank', u'mongolia', u'iraq', u'presenc']
[u'busi', u'group', u'polic', u'liaison', u'point']
[u'caesarean', u'pose', u'greater', u'risk', u'futur', u'natur']
[u'log', u'halt', u'walk', u'trail']
[u'campaign', u'seek', u'green', u'preselect']
[u'canoeist', u'weekend', u'strand']
[u'catamaran', u'trigger', u'emerg', u'search']
[u'celta', u'atletico', u'madrid']
[u'cheer', u'crowd', u'honour']
[u'china', u'deleg', u'learn', u'australian', u'tourism']
[u'china', u'sensit', u'preced', u'free', u'trade']
[u'claim', u'fish', u'poacher', u'threaten', u'fashion', u'export']
[u'clark', u'drop', u'test']
[u'cleric', u'deni', u'expert', u'home', u'grow', u'terror', u'claim']
[u'colleg', u'back', u'abort', u'pill']
[u'compani', u'see', u'benefit', u'smelter', u'revamp']
[u'compani', u'fever', u'vaccin', u'decis']
[u'cooper', u'face', u'offer']
[u'cooper', u'takeov', u'challeng', u'heat']
[u'council', u'put', u'price', u'riverway', u'shade', u'tree']
[u'council', u'finalis', u'rotunda', u'build', u'tenant']
[u'crack', u'rotor', u'blame', u'fatal', u'helicopt', u'crash']
[u'crash', u'head', u'home']
[u'custom', u'accus', u'slow', u'respons', u'illeg']
[u'custom', u'unfair', u'criticis', u'port', u'crisi']
[u'dairi', u'industri', u'air', u'fever', u'vaccin', u'fear']
[u'dann', u'face', u'tribun']
[u'defenc', u'group', u'brush', u'delamer', u'bomb', u'fear']
[u'dept', u'interview', u'suspect', u'illeg', u'fisherman']
[u'develop', u'buy', u'grand', u'hotel']
[u'dont', u'forget', u'christma', u'school', u'remind']
[u'earthquak', u'rattl', u'darwin']
[u'eighth', u'journalist', u'kill', u'philippin']
[u'employ', u'warn', u'matern', u'leav']
[u'environment', u'report', u'delay', u'port', u'phillip']
[u'evan', u'dismiss', u'leadership', u'talk']
[u'evid', u'give', u'video', u'make', u'differ']
[u'falconio', u'accus', u'chang', u'car', u'court', u'hear']
[u'famili', u'farewel', u'nguyen']
[u'famili', u'visit', u'nguyen', u'death']
[u'farmer', u'extend', u'drought']
[u'farmer', u'welcom', u'iraqi', u'wheat', u'promis']
[u'north', u'win', u'tourism', u'award']
[u'fear', u'budget', u'woe', u'roadwork', u'project']
[u'fear', u'librari', u'cost', u'hurt', u'project']
[u'feder', u'fund', u'offer', u'life', u'pregnanc', u'support']
[u'turn', u'industri', u'estat']
[u'focus', u'turn', u'boost', u'indigen', u'forestri', u'job']
[u'forestri', u'industri', u'aborigin', u'soften', u'imag']
[u'european', u'champion', u'face', u'anxious', u'week']
[u'charg', u'polic', u'offic', u'assault']
[u'fundrais', u'highlight', u'level', u'wind', u'farm', u'support']
[u'fund', u'boost', u'gascoyn', u'marin', u'project']
[u'fund', u'address', u'feral', u'anim', u'woe']
[u'gloucest', u'council', u'reject', u'wast', u'plan']
[u'gold', u'product', u'sept', u'quarter']
[u'govt', u'accus', u'pay', u'bonus', u'director', u'general']
[u'govt', u'hide', u'timor', u'asylum', u'seeker', u'christma']
[u'govt', u'attack', u'olymp', u'guidelin']
[u'govt', u'seek', u'improv', u'music', u'educ', u'school']
[u'govt', u'open', u'mind', u'poki', u'machin', u'note']
[u'green', u'accus', u'lennon', u'anti', u'terror', u'backflip']
[u'gregan', u'deni', u'retir', u'report']
[u'guidelin', u'help', u'boost', u'emerg', u'prepar']
[u'gunman', u'open', u'shop', u'mall']
[u'hardi', u'forc', u'compens']
[u'hawk', u'deliv', u'road', u'trip', u'loss', u'croc']
[u'hohn', u'back', u'clark', u'rebound', u'test', u'ax']
[u'hope', u'remain', u'free', u'rang', u'farm']
[u'hospit', u'accus', u'play', u'polit', u'surgeri']
[u'hous', u'densiti', u'plan', u'worri', u'resid']
[u'huge', u'cottag', u'rent', u'rise', u'alarm', u'council']
[u'hundr', u'call', u'lesli', u'stori']
[u'huonvill', u'water', u'alert', u'remain']
[u'indigen', u'agreement', u'reach', u'gawler', u'miner']
[u'isra', u'ask', u'presid', u'elect']
[u'isra', u'polit', u'shake']
[u'jam', u'hardi', u'give', u'deadlin']
[u'joyc', u'submit', u'concern', u'welfar', u'work', u'chang']
[u'flight', u'land', u'belli']
[u'kasper', u'hope', u'test', u'recal']
[u'kasprowicz', u'demolish', u'bushrang']
[u'kate', u'dearaugo', u'australia', u'newest', u'idol']
[u'kemp', u'sidelin', u'groin', u'injuri']
[u'kokoda', u'track', u'threat', u'deni']
[u'kosciuszko', u'scheme', u'put', u'bite', u'wild', u'woe']
[u'land', u'council', u'seek', u'morisset', u'land', u'rezon']
[u'lesli', u'criticis']
[u'lesli', u'urg', u'model', u'career']
[u'levi', u'caus', u'wast', u'plant', u'rethink']
[u'liber', u'choos', u'gold', u'coast', u'candid']
[u'lion', u'nathan', u'cooper', u'offer', u'show', u'desper']
[u'littl', u'hope', u'court', u'intervent', u'nguyen', u'case']
[u'local', u'test', u'indonesian', u'die', u'bird']
[u'machineri', u'diamond', u'site']
[u'accus', u'rap', u'drug', u'woman']
[u'die', u'bailer', u'accid']
[u'die', u'crash']
[u'fight', u'terrorist', u'train', u'charg']
[u'guilti', u'cafe', u'swing']
[u'hurt', u'lake', u'illawarra', u'unit', u'blaze']
[u'hospit', u'riddoch', u'highway', u'crash']
[u'refus', u'bail', u'bomb', u'hoax']
[u'face', u'court', u'accus', u'cairn', u'tortur']
[u'face', u'court', u'laverton', u'stab']
[u'kill', u'wife', u'shop', u'centr', u'sack', u'lawyer']
[u'winch', u'bush', u'walk', u'mishap']
[u'terrorist', u'network', u'oper', u'say', u'expert']
[u'maryborough', u'busi', u'chamber', u'push', u'super', u'jail']
[u'mcgradi', u'fear', u'worsen', u'telstra', u'bush', u'servic']
[u'milan', u'sink', u'toni', u'doubl', u'inter', u'stay', u'fourth']
[u'miner', u'close', u'secur', u'north', u'west', u'project']
[u'minist', u'defend', u'hospit', u'upgrad', u'blow']
[u'minist', u'discuss', u'woman', u'medic', u'centr', u'death']
[u'minist', u'reject', u'illeg', u'fish', u'coast', u'guard', u'call']
[u'minist', u'work', u'polic', u'tackl', u'hous']
[u'miss', u'toddler', u'possibl', u'abduct', u'polic']
[u'storm', u'forecast', u'south', u'east']
[u'back', u'push', u'kiss', u'land', u'communiti', u'trust']
[u'unfaz', u'elector', u'shake']
[u'murder', u'accus', u'extradit', u'sydney']
[u'muslim', u'prais', u'multicultur', u'tasmania']
[u'nation', u'park', u'threaten', u'develop']
[u'review', u'king', u'pig', u'scuffl']
[u'nervous', u'flyer', u'court', u'flight', u'cigarett']
[u'sale', u'figur']
[u'deputi', u'leader', u'opposit']
[u'smoke', u'alarm', u'law', u'target', u'older', u'home']
[u'telescop', u'monitor', u'explod', u'star']
[u'demand', u'forum', u'hear']
[u'nuclear', u'wast', u'dump', u'spark', u'scienc', u'debat']
[u'offic', u'fear', u'prison', u'steal', u'court']
[u'ombudsman', u'probe', u'health', u'servic', u'figur']
[u'opposit', u'predict', u'tough', u'tussl', u'pittwat']
[u'opposit', u'promis', u'concess', u'self', u'fund']
[u'opposit', u'want', u'tougher', u'dope', u'law']
[u'optus', u'extend', u'central', u'victoria', u'broadband', u'access']
[u'organis', u'prais', u'soft', u'schooli', u'crowd']
[u'orica', u'approach', u'council', u'toxic', u'wast', u'dump']
[u'outback', u'town', u'lose', u'waltz', u'matilda', u'expo']
[u'paddl', u'steamer', u'plan', u'face', u'hurdl']
[u'pakistan', u'board', u'withdraw', u'shabbir', u'england']
[u'pakistan', u'surg', u'forward', u'inzamam', u'centuri']
[u'parti', u'planner', u'get', u'start', u'celebr']
[u'pipe', u'replac', u'aim', u'save', u'million', u'litr']
[u'plantat', u'timber', u'industri', u'fear', u'lessen', u'shire']
[u'polic', u'consid', u'effort', u'region', u'road', u'toll']
[u'polic', u'examin', u'schooli', u'rape', u'alleg']
[u'polic', u'hunt', u'cobram', u'firebug']
[u'polic', u'probe', u'town', u'camp', u'stab', u'death']
[u'politician', u'unit', u'highway', u'safeti', u'boost']
[u'premiership', u'holiday', u'swan']
[u'public', u'feedback', u'seek', u'jail', u'plan']
[u'public', u'urg', u'bushfir', u'readi']
[u'fever', u'vaccin', u'product', u'viabl']
[u'question', u'remain', u'nativ', u'titl', u'plan']
[u'racv', u'urg', u'calder', u'polit', u'bicker']
[u'raider', u'deni', u'sign', u'thompson']
[u'real', u'estat', u'agent', u'clerk', u'stand', u'trial', u'fraud']
[u'referendum', u'gaug', u'popular', u'elect']
[u'region', u'council', u'urg', u'focus', u'film']
[u'remedi', u'work', u'begin', u'worker', u'club', u'site']
[u'repair', u'leav', u'birdsvill', u'dark']
[u'report', u'cast', u'doubt', u'effluent', u'plan']
[u'research', u'consid', u'anger', u'asthma', u'link']
[u'resid', u'maintain', u'fight', u'council', u'law']
[u'resid', u'lobbi', u'govt', u'stop', u'brickwork']
[u'review', u'reveal', u'dubbo', u'crime', u'rise']
[u'ricki', u'pont', u'bowler', u'hobart']
[u'rise', u'gold', u'price', u'prompt', u'explor']
[u'roll', u'corner', u'resid', u'deal', u'latest', u'crash']
[u'offer', u'bypass', u'assur']
[u'schooli', u'behav', u'airli', u'beach']
[u'schooli', u'assault', u'complaint', u'withdraw']
[u'seafood', u'plan', u'aim', u'boost', u'industri', u'valu']
[u'seminar', u'help', u'break', u'mental', u'ill', u'barrier']
[u'senior', u'urg', u'heat', u'victim']
[u'seven', u'accus', u'gatecrash', u'schooli', u'week', u'parti']
[u'seven', u'charg', u'fake', u'design', u'cloth', u'haul']
[u'shark', u'forc', u'surf', u'event', u'cancel']
[u'sharon', u'leav', u'rule', u'likud', u'parti', u'report']
[u'shire', u'ask', u'plan']
[u'singapor', u'stand', u'hang']
[u'korean', u'cabinet', u'approv', u'iraq', u'troop']
[u'snowdon', u'seek', u'weapon', u'train', u'assur']
[u'solon', u'prepar', u'reunion', u'children']
[u'speed', u'skate', u'relay', u'team', u'learn', u'fate']
[u'plan', u'test', u'gippsland']
[u'state', u'seek', u'therapeut', u'clone']
[u'teen', u'die', u'rockhampton', u'road', u'mishap']
[u'telstra', u'cdma', u'network', u'plan', u'cost']
[u'test', u'swing', u'colonoscopi', u'patient']
[u'thousand', u'mark', u'anniversari', u'franco', u'death']
[u'time', u'face', u'realiti', u'costello', u'tell', u'nguyen']
[u'tourism', u'minist', u'prais', u'award', u'win', u'whitsunday']
[u'townsvill', u'hotel', u'win', u'tourism', u'award']
[u'twin', u'feel', u'guilt', u'nguyen', u'fate', u'lawyer']
[u'arrest', u'nhulunbuy', u'crime']
[u'union', u'urg', u'employ', u'protect', u'club', u'worker']
[u'investig', u'zarqawi', u'iraq', u'dead']
[u'vanston', u'dismiss', u'resign', u'call']
[u'vendi', u'contest', u'ballarat', u'mayor', u'race']
[u'vietnam', u'investig', u'glitter', u'child', u'claim']
[u'welfar', u'work', u'hurt', u'rural', u'australia', u'inquiri']
[u'wildlif', u'group', u'criticis', u'council', u'control']
[u'woman', u'face', u'conspiraci', u'charg', u'fake', u'death']
[u'woodsid', u'consid', u'broom', u'plant', u'site']
[u'yachti', u'lucki', u'surviv', u'sink', u'polic']
[u'youth', u'sentenc', u'detent', u'robberi', u'spree']
[u'bird', u'worst', u'case', u'scenario']
[u'accc', u'slap', u'industri', u'practic']
[u'accc', u'protect', u'betfair', u'sanction']
[u'prepar', u'possibl', u'iraq', u'elect', u'violenc']
[u'africa', u'urgent', u'need', u'aid', u'prevent', u'program']
[u'search', u'locat', u'boat', u'bight']
[u'andrew', u'dismiss', u'opinion', u'poll', u'slump']
[u'annan', u'deni', u'interfer', u'hariri', u'murder', u'probe']
[u'asylum', u'seeker', u'christma', u'cost']
[u'australia', u'host', u'nation']
[u'ban', u'jockey', u'make', u'race', u'return']
[u'beatti', u'rule', u'earli', u'elect']
[u'beatti', u'back', u'sippi', u'down', u'hospit']
[u'bell', u'pietersen', u'lead', u'england', u'fight']
[u'amend', u'allow', u'sentenc', u'option']
[u'bird', u'respons', u'exercis']
[u'bird', u'websit', u'launch']
[u'black', u'spot', u'intersect', u'light', u'camera']
[u'blueprint', u'urg', u'renmark', u'sturt', u'highway', u'bypass']
[u'brack', u'call', u'prison', u'exchang', u'save']
[u'burn', u'aim', u'deter', u'firebug']
[u'busi', u'readi', u'bird', u'pandem']
[u'busselton', u'brace', u'schooli', u'influx']
[u'hospit', u'fund', u'separ']
[u'attorney', u'general', u'legal']
[u'cane', u'farmer', u'beat', u'candi', u'feder', u'fund']
[u'caravan', u'park', u'play', u'evict', u'concern']
[u'cathol', u'church', u'oust', u'south', u'coast', u'priest']
[u'champion', u'gymnast', u'gather', u'melbourn']
[u'chennai', u'dayer', u'wash']
[u'chevron', u'announc', u'japan', u'deal']
[u'child', u'protect', u'posit', u'creat']
[u'china', u'welcom', u'tortur', u'investig']
[u'clark', u'come', u'term', u'ax']
[u'club', u'hear', u'opposit', u'plan']
[u'council', u'probe', u'tell', u'vote', u'block', u'claim', u'fanci']
[u'commerc', u'chief', u'keep', u'bush', u'blueprint']
[u'concern', u'surfac', u'pilbara', u'wast', u'plant', u'plan']
[u'continu', u'alcohol', u'sale', u'restrict', u'prompt', u'mix']
[u'corbi', u'mother', u'reject', u'lesli', u'case', u'comparison']
[u'costello', u'urg', u'lift', u'uranium', u'mine']
[u'council', u'await', u'main', u'tender']
[u'council', u'help', u'memori', u'repair']
[u'crop', u'plant', u'scheme', u'nation']
[u'custom', u'deni', u'ignor', u'warn']
[u'desert', u'wheelchair', u'makeov', u'project']
[u'doctor', u'claim', u'govt', u'stall', u'applic']
[u'doctor', u'hospit', u'board', u'disput', u'end']
[u'dont', u'player', u'tour', u'answer', u'scott']
[u'dravid', u'name', u'indian', u'captain', u'lanka', u'seri']
[u'driver', u'urg', u'slow', u'curb', u'road', u'kill']
[u'drought', u'extens', u'bourk', u'brewarrina', u'farmer']
[u'drug', u'firm', u'urg', u'continu', u'make', u'fever', u'vaccin']
[u'dylan', u'poem', u'sell', u'thousand', u'auction']
[u'einstein', u'famous', u'formula', u'turn']
[u'elliott', u'doubt', u'bushrang', u'clash']
[u'environ', u'dept', u'monitor', u'kooragang']
[u'laidley', u'council', u'reject', u'jail', u'plan']
[u'fair', u'dinkum', u'food', u'campaign', u'win', u'award']
[u'falconio', u'accus', u'distraught', u'convers']
[u'famili', u'hospit', u'home', u'blaze']
[u'famili', u'visit', u'death', u'aussi']
[u'father', u'satisfi', u'chang', u'death']
[u'fear', u'remain', u'hospit', u'job']
[u'fear', u'hous', u'plan', u'chang', u'port', u'fairi']
[u'feder', u'govt', u'urg', u'help', u'deliv', u'fever', u'vaccin']
[u'feder', u'chalk', u'centenari', u'hewitt', u'fourth']
[u'firewe', u'turn', u'monaro']
[u'fisherman', u'bodi', u'recov']
[u'form', u'slump', u'reason', u'ax', u'say', u'clark']
[u'fuel', u'reduct', u'burn']
[u'fugit', u'hide', u'church', u'polic']
[u'gallop', u'attack', u'liber', u'anti', u'terror', u'claus']
[u'gallop', u'insist', u'uranium', u'mine', u'stay']
[u'georg', u'best', u'awak', u'critic']
[u'glitter', u'deni', u'child', u'alleg', u'vietnam']
[u'glori', u'hope', u'hold', u'horsley']
[u'goldfield', u'school', u'embrac', u'school', u'report', u'scheme']
[u'govern', u'hit', u'slump']
[u'govt', u'approv', u'medicar', u'health', u'check', u'refuge']
[u'govt', u'downplay', u'opinion', u'poll', u'slide']
[u'govt', u'mull', u'custom', u'compo']
[u'govt', u'offer', u'rental', u'bond']
[u'govt', u'promis', u'bypass', u'option']
[u'govt', u'slow', u'train', u'arm', u'custom', u'offic']
[u'govt', u'urg', u'consid', u'rang', u'countri', u'health']
[u'govt', u'talk', u'servic', u'boost']
[u'govt', u'review', u'privaci', u'law', u'emerg', u'situat']
[u'green', u'group', u'air', u'wetland', u'fear']
[u'group', u'warn', u'welfar', u'work', u'exploit']
[u'harri', u'potter', u'work', u'wonder', u'offic']
[u'hiddink', u'eye', u'champion', u'leagu']
[u'infect', u'jump', u'million', u'report']
[u'hmas', u'newcastl', u'return', u'gulf', u'mission']
[u'horsley', u'quit', u'glori']
[u'hous', u'arson', u'attack', u'drug', u'payback', u'polic']
[u'howard', u'pakistani', u'quak', u'talk']
[u'law', u'away', u'famili', u'time', u'bishop', u'say']
[u'protest', u'cyclist', u'arriv', u'canberra']
[u'japanes', u'gymnast', u'fli', u'start']
[u'japan', u'get', u'militari']
[u'jone', u'call', u'gregan', u'rumour']
[u'kenyan', u'reject', u'referendum']
[u'kenyan', u'voter', u'reject', u'constitut']
[u'kiwi', u'assum', u'underdog', u'status']
[u'land', u'charg', u'drive', u'peopl', u'industri']
[u'minut', u'wind', u'chang', u'save', u'port', u'lincoln', u'inquest']
[u'laverton', u'aim', u'cheaper', u'perth', u'flight']
[u'council', u'urg', u'singapor', u'spare', u'nguyen']
[u'lawyer', u'warn', u'athlet']
[u'lesli', u'home']
[u'lesli', u'walk', u'media', u'frenzi']
[u'lesli', u'warn', u'speak']
[u'limit', u'place', u'bridg', u'open', u'number']
[u'lion', u'nathan', u'chang', u'tack', u'cooper', u'takeov']
[u'live', u'debat', u'expect', u'council', u'meet']
[u'long', u'term', u'sick', u'polic', u'leav', u'servic']
[u'guilti', u'children', u'bushland', u'murder']
[u'remand', u'custodi', u'coupl', u'murder']
[u'face', u'court', u'coupl', u'murder']
[u'welcom', u'rethink', u'road', u'structur', u'plan']
[u'mayor', u'doesnt', u'want', u'fluorid', u'debat', u'rush']
[u'mayor', u'talk', u'hous', u'plan']
[u'mayor', u'beat', u'rail', u'project']
[u'melbourn', u'teen', u'place', u'world', u'scrabbl']
[u'mental', u'ill', u'high', u'heroin', u'user', u'report']
[u'merkel', u'germani', u'woman', u'chancellor']
[u'minichiello', u'get', u'golden', u'boot']
[u'minist', u'consid', u'goulburn', u'develop', u'propos']
[u'minist', u'resign', u'custom', u'stuff']
[u'custom', u'offic', u'carri', u'gun']
[u'motor', u'award', u'highlight', u'australia', u'best', u'car']
[u'motorist', u'crash', u'seven', u'year', u'nrma']
[u'back', u'jezzin', u'barrack', u'option']
[u'defend', u'council', u'nuclear', u'request']
[u'highlight', u'hyden', u'sewerag', u'problem']
[u'look', u'oust', u'break', u'hill', u'mayor']
[u'reject', u'irrig', u'rise']
[u'machin', u'offer', u'toowoomba', u'boost']
[u'murdoch', u'face', u'court']
[u'murdoch', u'surpris', u'onetel', u'woe']
[u'murray', u'goulburn', u'boost', u'leongatha', u'plant']
[u'muslim', u'leader', u'deni', u'extremist', u'recruit', u'drive']
[u'nativ', u'titl', u'opinion', u'need', u'review']
[u'continu', u'push', u'asian', u'market']
[u'forb', u'sewag', u'treatment', u'plant', u'open']
[u'fund', u'child', u'care', u'posit']
[u'offic', u'plan', u'loxton', u'council']
[u'tourism', u'regim', u'north', u'west']
[u'nguyen', u'famili', u'head', u'singapor']
[u'nguyen', u'pay', u'visit']
[u'divin', u'right', u'play', u'test', u'waugh']
[u'need', u'panic', u'abbott', u'say']
[u'norman', u'back', u'scott', u'major', u'success']
[u'offer', u'help', u'start', u'indigen', u'fish']
[u'special', u'forc', u'return', u'afghanistan']
[u'octopus', u'age', u'come', u'shell']
[u'firm', u'look', u'gippsland', u'drill']
[u'monitor', u'bodi', u'warn', u'demand', u'outstrip']
[u'opposit', u'criticis', u'sentenc', u'chang']
[u'outback', u'mayor', u'push', u'basic', u'phone', u'servic']
[u'packer', u'break', u'onetel', u'meet', u'court', u'hear']
[u'peopl', u'smuggler', u'appeal', u'year', u'sentenc']
[u'pipelin', u'delay', u'airport', u'termin', u'open']
[u'plan', u'paper', u'expect', u'public']
[u'plea', u'merci', u'fell', u'deaf', u'ear', u'canberra', u'say']
[u'flag', u'margin', u'fine', u'tune']
[u'visit', u'troop']
[u'polic', u'arrest', u'trio', u'high', u'speed', u'chase']
[u'polic', u'investig', u'cobar', u'rape', u'claim']
[u'polic', u'investig', u'schooli', u'assault', u'claim']
[u'polic', u'look', u'identifi', u'beach', u'bodi']
[u'policemen', u'punish', u'email', u'photo', u'dead']
[u'polic', u'probe', u'tallangatta', u'cafe', u'theft']
[u'polic', u'question', u'driver', u'death', u'remot', u'road']
[u'polic', u'traine', u'sack', u'arrest']
[u'poll', u'predict', u'victori', u'sharon', u'parti']
[u'poll', u'govt', u'slide']
[u'protest', u'target', u'council', u'multi', u'lingual', u'park']
[u'public', u'ask', u'help', u'solv', u'croc', u'death', u'caus']
[u'public', u'urg', u'help', u'stamp', u'crime']
[u'push', u'lake', u'manag', u'plan']
[u'polic', u'investig', u'road', u'death']
[u'quirk', u'govt', u'sixth', u'femal', u'minist']
[u'rat', u'road']
[u'raul', u'face', u'lengthi', u'knee', u'injuri']
[u'light', u'camera', u'target', u'intersect', u'black']
[u'regist', u'includ', u'offend']
[u'regul', u'progress', u'biodiscoveri']
[u'resourc', u'share', u'see', u'futur', u'local', u'govt']
[u'fear', u'law', u'impact']
[u'rifl', u'wield', u'avoid', u'jail']
[u'rise', u'gold', u'price', u'pay', u'miner']
[u'attack', u'highway', u'consult']
[u'ruddock', u'talk', u'counter', u'terror', u'law']
[u'russian', u'aid', u'epidem', u'largest', u'europ']
[u'sacr', u'sit', u'propel', u'dump', u'fight', u'land', u'council', u'say']
[u'pass', u'crime', u'asset', u'seizur']
[u'schooli', u'hurt', u'drunken', u'merriment']
[u'scientist', u'unravel', u'puffer', u'fish', u'mysteri']
[u'search', u'begin', u'miss', u'boat', u'bight']
[u'senat', u'committe', u'recommend', u'chang']
[u'senat', u'inquiri', u'whitewash', u'opposit']
[u'senat', u'hand', u'look', u'wheatbelt', u'salin']
[u'share', u'market', u'retreat', u'earli', u'peak']
[u'sharon', u'quit', u'lukid', u'parti']
[u'singl', u'parent', u'wors', u'inquiri', u'tell']
[u'skill', u'migrant']
[u'student', u'associ', u'chief', u'stand']
[u'superman', u'stop', u'traffic', u'newcastl']
[u'worker', u'ralli', u'offic']
[u'tait', u'aim', u'immin', u'return']
[u'end', u'financi', u'year', u'healthi', u'state']
[u'tasmanian', u'anti', u'terror', u'law', u'tabl']
[u'rental', u'bond', u'author']
[u'teen', u'injur', u'ballarat', u'stab']
[u'territorian', u'treat', u'second', u'class', u'citizen', u'say']
[u'indigen', u'legal', u'servic', u'amalgam']
[u'town', u'water', u'ban', u'relief']
[u'townsvill', u'bauxit', u'plan']
[u'town', u'vote', u'renam', u'secretsantacom']
[u'travel', u'agent', u'tast', u'break', u'hill']
[u'underworld', u'lawyer', u'guilti', u'contempt', u'court']
[u'union', u'need', u'flexibl', u'club', u'say']
[u'unit', u'face', u'encount', u'ferguson']
[u'uranium', u'compani', u'plan', u'explor']
[u'market', u'headway']
[u'plan', u'carri', u'nuke', u'exercis']
[u'victorian', u'warn', u'season', u'approach']
[u'water', u'day', u'chines', u'citi']
[u'watson', u'hope', u'south', u'african', u'tour']
[u'weather', u'dictat', u'north', u'west', u'risk']
[u'welfar', u'work', u'law', u'petrol', u'sniff', u'inquiri']
[u'take']
[u'wildlif', u'confer', u'hear', u'research']
[u'windi', u'send', u'samuel', u'home']
[u'worksaf', u'beat', u'work', u'hour', u'code']
[u'vline', u'train', u'revamp']
[u'power', u'station', u'near', u'run']
[u'offic', u'look', u'return']
[u'allenbi', u'defend', u'attack', u'norman']
[u'say', u'casual', u'worker', u'threaten', u'chang']
[u'urg', u'renew', u'energi', u'work', u'parti']
[u'andrew', u'flexibl']
[u'andrew', u'like', u'allow', u'chang']
[u'angel', u'beach', u'win', u'northern', u'river', u'award']
[u'caution', u'chang', u'degre']
[u'aust', u'pledg', u'earthquak']
[u'defend', u'iraq', u'action']
[u'profit']
[u'bass', u'strait', u'fisheri', u'close']
[u'beatti', u'accus', u'mislead', u'parliament']
[u'bennett', u'keep', u'princ', u'reserv']
[u'warn', u'health', u'servic', u'cut']
[u'bird', u'statement', u'anger', u'farmer']
[u'busi', u'lobbi', u'warn', u'plan', u'chang']
[u'cairn', u'recal', u'black', u'cap', u'squad']
[u'cut', u'public', u'servic']
[u'canadian', u'union', u'threaten', u'jam', u'hardi']
[u'chemic', u'blast', u'china', u'contamin', u'major', u'river']
[u'child', u'death', u'investig', u'suffer']
[u'christian', u'volunt', u'label', u'brand', u'mad']
[u'warn', u'council', u'bulli', u'wit']
[u'coalit', u'hervey', u'preselect', u'postpon']
[u'concern', u'rais', u'sewerag', u'scheme', u'subsidi']
[u'cooper', u'reject', u'takeov']
[u'coron', u'attack', u'industri', u'drug', u'packag', u'error']
[u'council', u'back', u'makyb', u'diva', u'commemor', u'fund']
[u'council', u'give', u'condit', u'support', u'firework']
[u'councillor', u'divid', u'tree']
[u'council', u'offer', u'financi', u'boost', u'help', u'attract']
[u'council', u'reject', u'congest', u'charg', u'busi', u'road']
[u'council', u'urg', u'defer', u'widow', u'evict']
[u'court', u'grant', u'bail', u'alleg', u'melbourn', u'drug', u'dealer']
[u'croc', u'sight', u'prompt', u'broom', u'beach', u'closur']
[u'cruis', u'ship', u'propos', u'hervey']
[u'darwin', u'council', u'buy', u'scrap', u'metal', u'croc', u'sculptur']
[u'death', u'custodi', u'prompt', u'polic', u'rethink']
[u'death', u'prompt', u'tour', u'brochur', u'warn']
[u'democrat', u'face', u'deregistr']
[u'deport', u'melbourn', u'plead', u'return']
[u'diver', u'convict', u'lie', u'abalon', u'catch']
[u'doctor', u'shortag', u'forc', u'medic', u'centr', u'closur']
[u'doctor', u'speak', u'nuclear', u'dump', u'plan']
[u'downer', u'reconsid', u'court', u'nguyen']
[u'england', u'claim', u'late', u'wicket', u'faisalabad']
[u'environ', u'dept', u'add', u'weed', u'list']
[u'green', u'light', u'gippsland', u'water', u'dutson', u'down', u'plan']
[u'eurobodalla', u'council', u'accus', u'gag', u'councillor']
[u'examin', u'confirm', u'bodi', u'miss', u'plane']
[u'journo', u'death', u'prompt', u'appeal', u'inform']
[u'fan', u'vote', u'alonso', u'year']
[u'fake', u'virus', u'email', u'spread', u'worldwid']
[u'falconio', u'accus', u'carri']
[u'falconio', u'murder', u'trial', u'hear', u'road']
[u'famili', u'prais', u'polic', u'mother', u'rescu']
[u'farm', u'death', u'prompt', u'safeti', u'plea']
[u'farmer', u'plead', u'guilti', u'anim', u'cruelti']
[u'north', u'school', u'asbesto', u'roof', u'replac']
[u'fear', u'air', u'student', u'safeti']
[u'feder', u'polic', u'raid', u'melbourn', u'home']
[u'fewer', u'polic', u'long', u'term', u'sick', u'leav']
[u'fight', u'nguyen', u'continu', u'kirbi']
[u'destroy', u'hous', u'northern', u'perth']
[u'servic', u'gain', u'purpos', u'build', u'tanker']
[u'fishermen', u'spot', u'suspect', u'illeg', u'fish', u'boat']
[u'fisher', u'accus', u'ignor', u'croc', u'danger']
[u'fuel', u'reduct', u'burn', u'continu']
[u'futur', u'school', u'connect', u'littl', u'pebbl']
[u'gather', u'focus', u'marin', u'park', u'impact']
[u'german', u'sceptic', u'merkel', u'slash', u'jobless', u'total']
[u'gillespi', u'want', u'test', u'scalp']
[u'glitter', u'seek', u'freedom', u'detent']
[u'gold', u'project', u'promis', u'south', u'east', u'job', u'boost']
[u'govt', u'agre', u'bet', u'exchang', u'impact', u'studi']
[u'govt', u'like', u'allow', u'chang', u'costello']
[u'govt', u'reconsid', u'legal', u'nguyen']
[u'govt', u'provid', u'fish', u'industri', u'restructur']
[u'govt', u'take', u'control', u'high', u'rise', u'develop', u'area']
[u'govt', u'tri', u'budget', u'crisi', u'opposit']
[u'govt', u'warn', u'explor', u'compani', u'licenc']
[u'group', u'communiti', u'consult']
[u'grower', u'lose', u'xmas', u'cherri', u'crop']
[u'gunmen', u'iraqi', u'armi', u'uniform', u'shoot', u'baghdad', u'famili']
[u'har', u'race', u'club', u'air', u'fear']
[u'health', u'servic', u'back', u'call', u'oxicontin', u'regist']
[u'health', u'servic', u'clarifi', u'breast', u'prosthesi', u'blunder']
[u'henri', u'keep', u'shuffl', u'black', u'chang']
[u'hereditari', u'breast', u'cancer', u'research', u'fund']
[u'hick', u'challeng', u'british', u'passport', u'refus']
[u'hope', u'ecosystem', u'studi', u'stop', u'solar', u'salt', u'farm']
[u'hope', u'mine', u'royalti', u'chang', u'boost', u'invest']
[u'hop', u'steven', u'return', u'bull', u'squad']
[u'horsley', u'happi', u'decis', u'quit', u'glori']
[u'howard', u'pledg', u'pakistan']
[u'howard', u'visit', u'pakistani', u'quak', u'region']
[u'hull', u'merci', u'mission']
[u'inquest', u'tell', u'hospit', u'death', u'report', u'polic']
[u'inquiri', u'prompt', u'justic', u'overhaul']
[u'iran', u'reject', u'minist', u'nomine']
[u'campaign', u'expens', u'histori', u'advertis']
[u'protest', u'petit', u'deliv', u'senat']
[u'islam', u'leader', u'support', u'deport', u'anti', u'western']
[u'judg', u'rule', u'mother', u'regain', u'custodi']
[u'kangaroo', u'kid', u'harri', u'potter', u'star']
[u'kennett', u'prais', u'act', u'mental', u'health', u'polici']
[u'knee', u'injuri', u'end', u'giteaus', u'tour']
[u'land', u'council', u'merger', u'plan', u'spark', u'ident', u'concern']
[u'landhold', u'urg', u'bushfir', u'readi']
[u'legaci', u'urg', u'return', u'steal', u'donat']
[u'lesli', u'maintain', u'drug', u'charg', u'innoc']
[u'letter', u'neighbour', u'land', u'water']
[u'liber', u'preselect', u'bendigo', u'west', u'candid']
[u'liukin', u'lead', u'american', u'charg', u'final']
[u'mackay', u'sugar', u'record', u'profit']
[u'macquari', u'deadlin']
[u'charg', u'sydney', u'newsag', u'murder']
[u'charg', u'theft', u'journalist', u'murder']
[u'face', u'court', u'accus', u'bash', u'train', u'conductor']
[u'front', u'court', u'schooli', u'assault', u'charg']
[u'hospit', u'tailem', u'bend', u'stab']
[u'sentenc', u'life', u'children', u'murder']
[u'face', u'court', u'schooli', u'assault']
[u'mariah', u'carey', u'snub', u'american', u'music', u'award']
[u'maryborough', u'societi', u'stand', u'continu']
[u'matera', u'hang', u'boot']
[u'mayor', u'fuel', u'word']
[u'mayor', u'question', u'workload']
[u'mcwilliam', u'elect', u'deputi', u'mayor']
[u'medal', u'honour', u'local', u'wwii', u'vet']
[u'mental', u'health', u'scheme', u'urg', u'social', u'sport']
[u'microsoft', u'xbox', u'releas']
[u'millar', u'secur', u'tour', u'comeback']
[u'mine', u'farm', u'contribut', u'creek', u'woe']
[u'mine', u'resourc', u'drive', u'economi']
[u'minist', u'visit', u'australian', u'troop', u'sudan']
[u'modern', u'product', u'affect', u'boy', u'hormon']
[u'queri', u'water', u'agreement', u'delay']
[u'welcom', u'homeswest', u'boost']
[u'murdoch', u'know', u'onetel', u'monitor', u'court', u'hear']
[u'murdoch', u'memori', u'laps', u'surpris', u'judg']
[u'murray', u'play', u'australian', u'hardcourt', u'champ']
[u'consid', u'custom', u'fleet', u'sale']
[u'narromin', u'forb', u'run', u'grain', u'ethanol', u'plant']
[u'nasa', u'find', u'crack', u'space', u'shuttl', u'tank', u'foam']
[u'nation', u'fear', u'boat', u'lifter', u'cost', u'blow']
[u'nation', u'concern', u'easili', u'fix', u'vail']
[u'nestl', u'babi', u'milk', u'recal', u'storm', u'teacup']
[u'british', u'licens', u'law', u'target', u'bing', u'drinker']
[u'hospit', u'year', u'away']
[u'human', u'bird', u'case', u'vietnam']
[u'feedback', u'receiv', u'muswellbrook', u'bypass']
[u'norman', u'accus', u'desert', u'australian', u'golf']
[u'govt', u'fund', u'desalin', u'plant']
[u'stand', u'firm', u'anti', u'uranium', u'mine', u'stanc']
[u'offic', u'arrest', u'polic', u'anti', u'corrupt', u'bust']
[u'omodei', u'seek', u'shadow', u'ministri', u'spot']
[u'opposit', u'call', u'action', u'drug', u'driver']
[u'opposit', u'oppos', u'tier', u'higher', u'educ']
[u'opposit', u'question', u'turn', u'speed', u'camera']
[u'opposit', u'urg', u'joyc']
[u'pacif', u'island', u'minist', u'guilti', u'embezzl']
[u'pakistan', u'slow', u'progress', u'faisalabad']
[u'pakistan', u'solid', u'start', u'second', u'inning']
[u'parent', u'concern', u'remain', u'irrekerlanty', u'school']
[u'parti', u'tri', u'say', u'liber']
[u'pharmacist', u'face', u'drug', u'traffic', u'charg']
[u'plane', u'crash', u'inquest', u'tell', u'engin', u'heavi']
[u'polic', u'believ', u'theft', u'car', u'link']
[u'polic', u'continu', u'probe', u'toddler', u'death']
[u'polic', u'doorknock', u'fatal', u'toowoomba']
[u'polic', u'miss', u'bushwalk']
[u'polic', u'like', u'charg', u'driver']
[u'polic', u'monitor', u'harvest', u'time']
[u'polic', u'probe', u'polit', u'briberi', u'claim']
[u'potassium', u'chlorid', u'death', u'prompt', u'warn']
[u'public', u'develop', u'control', u'plan']
[u'putt', u'label', u'forestri', u'report', u'distress']
[u'urg', u'chang', u'uranium', u'mine', u'polici']
[u'rapist', u'investig', u'appeal', u'possibl']
[u'rebat', u'resid', u'water', u'leak']
[u'report', u'urg', u'salt', u'dispos', u'basin', u'develop']
[u'resourc', u'stock', u'drag', u'market']
[u'ronaldson', u'doubt', u'king', u'clash']
[u'rspca', u'life', u'membership', u'cancel', u'cruelti']
[u'russian', u'gymnast', u'final', u'video', u'review']
[u'safeguard', u'promis', u'welfar', u'work', u'famili']
[u'look', u'nation', u'geopark']
[u'strengthen', u'money', u'launder', u'law']
[u'seafood', u'industri', u'welcom', u'feder', u'packag']
[u'search', u'begin', u'miss', u'bushwalk']
[u'search', u'water', u'pipe', u'leak']
[u'shark', u'believ', u'scott', u'time', u'come']
[u'shark', u'close', u'sign', u'thompson']
[u'shark', u'dump', u'nutley', u'thompson']
[u'sharon', u'parti', u'offici', u'recognis']
[u'singaporean', u'lawyer', u'question', u'compulsori', u'death']
[u'skill', u'job', u'avail', u'fall']
[u'smaller', u'harvest', u'drag', u'graincorp', u'profit']
[u'soni', u'face', u'legal', u'action', u'protect']
[u'south', u'east', u'transport', u'plan']
[u'sport', u'oval', u'committe', u'member', u'quit']
[u'lanka', u'presid', u'clear', u'cabinet']
[u'state', u'urg', u'adopt', u'document', u'destruct', u'law']
[u'time', u'save', u'nguyen', u'say', u'expert']
[u'survey', u'highlight', u'drug', u'drive', u'attitud']
[u'suspend', u'sentenc', u'serial', u'thief']
[u'taipan', u'tiger', u'post', u'victori']
[u'fish', u'industri', u'say', u'feder', u'packag', u'provid']
[u'proposit', u'convinc', u'award']
[u'arrest', u'embassi', u'bomb', u'probe']
[u'sign', u'pioneer']
[u'timber', u'growth', u'boost', u'demand', u'border', u'road']
[u'tobacco', u'whistleblow', u'effort', u'recognis']
[u'kill', u'lasset', u'highway', u'crash']
[u'union', u'fear', u'vaccin', u'ax', u'trigger', u'meatwork']
[u'resum', u'indonesian', u'militari']
[u'vandal', u'prompt', u'council', u'secur', u'rethink']
[u'govt', u'play', u'pipelin', u'fund', u'threat']
[u'polic', u'union', u'want', u'integr', u'offic']
[u'victim', u'group', u'welcom', u'sentenc', u'law']
[u'polic', u'desert', u'forc']
[u'warn', u'fear', u'lara', u'test']
[u'warn', u'play', u'test']
[u'windi', u'look', u'finish', u'seri', u'win', u'note']
[u'wit', u'say', u'falconio', u'accus', u'suppli', u'drug']
[u'wood', u'overcom', u'poor', u'start', u'lead', u'hawaii']
[u'work', u'begin', u'flood', u'strategi', u'plan']
[u'worker', u'fail', u'inspect', u'darwin', u'base', u'king']
[u'young', u'gun', u'coach']
[u'yudhoyono', u'hail', u'militari', u'decis']
[u'anim', u'vaccin', u'plant', u'open', u'bendigo']
[u'tackl', u'alpin', u'nation', u'park', u'pest', u'control']
[u'abbott', u'push', u'poll', u'abort', u'pill']
[u'activist', u'acquit', u'illeg', u'firework', u'charg']
[u'africa', u'femal', u'leader', u'confirm', u'liberia']
[u'ail', u'allenbi', u'defi', u'pain', u'lead', u'open']
[u'alic', u'spring', u'youth', u'get', u'duke', u'edinburgh', u'award']
[u'alumina', u'produc', u'confid', u'ahead', u'expans']
[u'wit', u'link', u'murdoch']
[u'ant', u'leav', u'road', u'sign', u'studi']
[u'archbishop', u'urg', u'bill', u'delay']
[u'asda', u'say', u'test', u'posit']
[u'australia', u'macgil', u'bracken']
[u'australia', u'wari', u'dead', u'rubber', u'syndrom']
[u'babi', u'death', u'prompt', u'push', u'emerg', u'depart']
[u'urg', u'power', u'public', u'spot']
[u'beazley', u'unveil', u'infrastructur', u'blueprint']
[u'bestial', u'charg', u'drop', u'sydney']
[u'betfair', u'legisl', u'move', u'closer', u'realiti']
[u'save', u'south', u'east', u'lighthous', u'platform']
[u'bird', u'discov', u'aceh']
[u'boswel', u'urg', u'start', u'uranium']
[u'recov', u'life', u'chang', u'bladder', u'oper']
[u'bradman', u'go']
[u'briberi', u'claim', u'continu', u'quinn']
[u'britain', u'lift', u'hour', u'curb', u'booz']
[u'campaign', u'continu', u'nguyen']
[u'canadian', u'indian', u'receiv', u'compo', u'payout']
[u'bomb', u'kill', u'outsid', u'afghan', u'drug', u'summit']
[u'casa', u'inspector', u'give', u'evid', u'plane', u'crash']
[u'central', u'sydney', u'train', u'station', u'evacu']
[u'chamber', u'seek', u'start', u'transport', u'corridor', u'stage']
[u'cheeki', u'pinot', u'snatch', u'honour']
[u'code', u'conduct', u'crack', u'councillor']
[u'concern', u'wont', u'stop', u'chang', u'andrew', u'say']
[u'consum', u'confid', u'boost', u'market']
[u'cook', u'line', u'replac', u'strauss']
[u'costello', u'dodg', u'suggest', u'bigger', u'budget']
[u'costello', u'unveil', u'law', u'overhaul']
[u'council', u'aborigin', u'committe', u'quit']
[u'council', u'back', u'extend', u'nightclub', u'hour', u'trial']
[u'council', u'hold', u'develop', u'applic', u'inquiri']
[u'council', u'postpon', u'saleyard', u'meet']
[u'council', u'consid', u'power', u'station', u'plan']
[u'council', u'close', u'brown', u'hill', u'outdoor', u'pool']
[u'council', u'determin', u'futur', u'tree']
[u'council', u'lobbi', u'continu', u'fever', u'vaccin']
[u'court', u'jail', u'drug', u'traffick']
[u'crow', u'preseason', u'train']
[u'death', u'spark', u'power', u'pole', u'replac']
[u'death', u'trigger', u'mandatori', u'life', u'jacket']
[u'dentist', u'talk', u'fluorid']
[u'deport', u'probabl', u'entitl', u'visa', u'lawyer']
[u'deputi', u'coron', u'continu', u'bushfir', u'tragedi', u'tour']
[u'desalin', u'plant', u'build', u'sculli']
[u'disciplinari', u'action', u'chopper', u'safeti', u'check']
[u'doctor', u'hail', u'brain', u'machin']
[u'doubt', u'cast', u'vicforest', u'tender', u'scheme']
[u'draw', u'keep', u'england', u'seri', u'hop', u'aliv']
[u'elector', u'commission', u'want', u'briberi', u'claim']
[u'england', u'limp']
[u'fatal', u'hous', u'site', u'polic', u'guard']
[u'fatal', u'shoot', u'prompt', u'recommend']
[u'fear', u'singapor', u'execut', u'link', u'shorten']
[u'feder', u'fund', u'ensur', u'peel', u'deviat', u'construct']
[u'fisheri', u'investig', u'shark', u'poacher', u'sight']
[u'fishermen', u'haul', u'unexpect', u'christma', u'catch']
[u'fisher', u'expect', u'offer']
[u'fisher', u'urg', u'consid', u'licenc']
[u'fish', u'industri', u'shake', u'south', u'east']
[u'fish', u'boat', u'crew', u'miss', u'ranger']
[u'fish', u'industri', u'beat', u'rescu', u'packag']
[u'fish', u'price', u'hike', u'inevit', u'licenc']
[u'flaw', u'motorbik', u'camera', u'plan']
[u'fletcher', u'jone', u'factori', u'closur', u'year']
[u'govt', u'employe', u'plead', u'guilti', u'fraud', u'charg']
[u'minist', u'face', u'trial', u'forgeri', u'charg']
[u'student', u'tell', u'court', u'teacher', u'assault']
[u'french', u'rail', u'strike', u'end']
[u'german', u'tour', u'organis', u'donat', u'gillett', u'fund']
[u'time', u'say', u'correct', u'servic', u'chief']
[u'gladston', u'council', u'hold', u'elect']
[u'govt', u'back', u'mckinlay', u'shire', u'plan', u'scheme']
[u'govt', u'deni', u'fail', u'honour', u'natur', u'pledg']
[u'govt', u'reject', u'hearsay', u'evid', u'parliamentari']
[u'govt', u'reject', u'region', u'speed', u'camera', u'critic']
[u'govt', u'stand', u'essenc', u'reform']
[u'govt', u'pressur', u'help', u'save', u'life']
[u'govt', u'sympathet', u'plight', u'paradis']
[u'govt', u'gordon', u'inquiri', u'fallout']
[u'govt', u'urg', u'provid', u'water', u'pipelin', u'subsidi']
[u'govt', u'urg', u'rethink', u'suburb', u'boundari']
[u'green', u'group', u'clarifi', u'marin', u'park']
[u'harri', u'potter', u'cast', u'spell', u'space']
[u'harvey', u'reaffirm', u'myer']
[u'health', u'servic', u'job', u'specul', u'doesnt', u'faze']
[u'hensbi', u'doesnt', u'know', u'norman']
[u'host', u'crow', u'get', u'afi', u'broadcast']
[u'hull', u'plea', u'fail', u'save', u'nguyen']
[u'human', u'right', u'chief', u'head', u'bunburi']
[u'icci', u'expect', u'bali', u'busi', u'collaps']
[u'iemma', u'keen', u'resolv', u'health', u'servic', u'financi', u'woe']
[u'ignor', u'useless', u'inform', u'aid', u'memori']
[u'immigr', u'blame', u'man', u'deport', u'famili']
[u'impound', u'ship', u'crew', u'win', u'wag', u'battl']
[u'india', u'indonesia', u'agre', u'boost', u'tie']
[u'indonesian', u'fish', u'boat', u'nab']
[u'industri', u'fear', u'wine', u'surplus', u'year']
[u'interst', u'polic', u'lend', u'hand', u'road', u'safeti']
[u'iraqi', u'general', u'speak', u'secret', u'prison']
[u'iraqi', u'violenc', u'kill', u'past']
[u'jilt', u'pilot', u'plead', u'guilti', u'elect', u'night']
[u'job', u'indigen', u'legal', u'servic', u'fund']
[u'landslid', u'close', u'cunningham', u'highway']
[u'lewi', u'replac', u'rest', u'mcgrath', u'dayer']
[u'liverpool', u'chelsea', u'inter', u'champion', u'leagu']
[u'local', u'farmer', u'name', u'graincorp', u'chief']
[u'locust', u'spray', u'target', u'nation', u'park']
[u'magistr', u'anger', u'cuff', u'prison', u'appear']
[u'deport', u'bosnia']
[u'dead', u'sydney', u'park']
[u'hospit', u'kite', u'surf', u'accid']
[u'jail', u'fatal', u'road', u'rage', u'attack']
[u'plead', u'guilti', u'abduct', u'teen']
[u'mayor', u'fear', u'sale', u'katherin', u'resid']
[u'mayor', u'urg', u'brothel', u'licens', u'scheme']
[u'mckenzi', u'interest', u'coach', u'wallabi']
[u'memori', u'honour', u'hunter', u'polic', u'pair']
[u'mildura', u'council', u'pleas', u'rat', u'recoveri', u'effort']
[u'miller', u'secur', u'discount', u'divis', u'sale']
[u'miner', u'get', u'good', u'copper', u'cobalt', u'result']
[u'minist', u'assur', u'assault', u'refug', u'short', u'term']
[u'minist', u'wont', u'meet', u'anti', u'farmer']
[u'minist', u'receiv', u'mine', u'inquiri', u'request']
[u'hospit', u'voluntari', u'redund', u'possibl']
[u'blame', u'govt', u'medic', u'centr', u'closur']
[u'highlight', u'fuel', u'price', u'dispar']
[u'mum', u'drink', u'lead', u'teenag', u'alcohol', u'disord']
[u'murdoch', u'comfort', u'teari', u'packer', u'onetel', u'collaps']
[u'murdoch', u'deni', u'shift', u'blame', u'onetel', u'woe']
[u'murdoch', u'wrap', u'evid', u'onetel', u'trial']
[u'nation', u'park', u'blaze', u'week']
[u'nation', u'senat', u'urg', u'oppos', u'chang']
[u'nation', u'urg', u'oppos', u'legisl']
[u'nation', u'want', u'stop', u'super', u'fire']
[u'german', u'leader', u'push', u'closer', u'tie']
[u'patrol', u'help', u'tackl', u'alcohol', u'abus', u'say']
[u'penalti', u'attack', u'pregnant', u'women']
[u'tourism', u'boost', u'china', u'korea', u'visitor']
[u'nguyen', u'appeal', u'fall', u'deaf', u'ear']
[u'ombudsman', u'report', u'underlin', u'health', u'crisi']
[u'opposit', u'rais', u'detent', u'centr', u'safeti', u'concern']
[u'pace', u'spin', u'selector', u'dilemma']
[u'passeng', u'strand', u'bali', u'airlin', u'suspend']
[u'posit', u'leadership', u'unchang']
[u'wont', u'push', u'oversea', u'support', u'nguyen', u'case']
[u'polic', u'break', u'alleg', u'interst', u'drug', u'ring']
[u'polic', u'comment', u'prompt', u'magistr', u'review']
[u'polic', u'consid', u'hous', u'blaze', u'suspici']
[u'polic', u'hope', u'reward', u'yield', u'murder', u'inform']
[u'polic', u'investig', u'riverland', u'toddler', u'murder']
[u'polic', u'prais', u'better', u'behav', u'schooli']
[u'polic', u'question', u'secur', u'guard', u'stab']
[u'polic', u'search', u'drug', u'raid']
[u'polic', u'warn', u'open', u'window', u'night']
[u'pont', u'want', u'pressur', u'maintain']
[u'public', u'warn', u'electr', u'meter', u'tamper']
[u'qsia', u'claim', u'lesson', u'feder', u'fisheri']
[u'quinn', u'offer', u'cash']
[u'rain', u'help', u'boost', u'central', u'malle', u'harvest']
[u'rann', u'plan', u'ditch', u'upper', u'hous', u'meet', u'resist']
[u'record', u'break', u'allenbi', u'take', u'open', u'lead']
[u'referendum', u'seek', u'fluorid', u'debat']
[u'report', u'warn', u'massiv', u'worker', u'shortag']
[u'research', u'consid', u'altern', u'rock', u'blast']
[u'resid', u'green', u'lawn', u'level', u'drop']
[u'resourc', u'halt', u'market', u'negat']
[u'hail', u'unit', u'strike', u'forc', u'world', u'best']
[u'urg', u'ballina', u'bypass']
[u'ruddock', u'defend', u'indigen', u'legal', u'servic', u'cut']
[u'rural', u'medic', u'servic', u'crisi', u'loom']
[u'sartor', u'back', u'away', u'tower', u'stanc']
[u'scheme', u'aim', u'aborigin', u'youth', u'jail']
[u'school', u'crash', u'injur', u'children']
[u'school', u'crash', u'victim', u'airlift', u'adelaid']
[u'school', u'mark', u'aid', u'awar', u'debat']
[u'sharapova', u'schnyder', u'head', u'australian', u'hardcourt', u'field']
[u'shire', u'local', u'govt', u'merger']
[u'sponsor', u'hang']
[u'stanhop', u'criticis', u'muslim', u'extremist']
[u'star', u'kubrick', u'classic', u'visit', u'director', u'exhibit']
[u'stem', u'cell', u'pioneer', u'resign', u'scandal']
[u'studi', u'show', u'healthi', u'hast', u'river']
[u'surfer', u'abberton', u'face', u'jail']
[u'surfer', u'guilti', u'pervert', u'cours', u'justic']
[u'sydney', u'hospit', u'close', u'melanoma']
[u'tamworth', u'council', u'record', u'plus', u'surplus']
[u'tarnagulla', u'water', u'woe', u'spark', u'bushfir', u'worri']
[u'parliament', u'pass', u'betfair', u'law']
[u'tassi', u'tiger', u'star', u'nation', u'museum', u'exhibit']
[u'teen', u'charg', u'pinjarra', u'stab']
[u'teen', u'arrest', u'high', u'speed', u'chase']
[u'test', u'continu', u'boat', u'mysteri', u'disappear']
[u'thompson', u'vlaho', u'doubt', u'struggl', u'victori']
[u'bank', u'share', u'telstra', u'sale', u'duti']
[u'children', u'dead', u'flood', u'malaysia']
[u'hurt', u'mitchel', u'highway', u'crash']
[u'face', u'rape', u'charg']
[u'toxic', u'spill', u'hit', u'major', u'chines', u'citi']
[u'trade', u'sanction', u'wont', u'save', u'nguyen', u'downer']
[u'traeger', u'park', u'host', u'central', u'aust', u'match']
[u'tummi', u'bug', u'live', u'photo', u'film']
[u'union', u'seek', u'govt', u'help', u'attract', u'apprentic']
[u'union', u'seek', u'talk', u'student', u'associ', u'sack']
[u'staff', u'number']
[u'union', u'meet', u'stop', u'evict']
[u'plan', u'iraq', u'troop', u'reduct']
[u'widen', u'zimbabw', u'sanction']
[u'vail', u'continu', u'resourc', u'industri', u'tour']
[u'vietnam', u'charg', u'glitter', u'abus', u'offici']
[u'virgin', u'blue', u'appeal', u'discrimin', u'find']
[u'wale', u'drop', u'byrn', u'australia', u'clash']
[u'wallabi', u'confid', u'ahead', u'wale', u'test', u'jone']
[u'west', u'bank', u'milit', u'surrend', u'sieg']
[u'whistleblow', u'applaud', u'pacif', u'minist', u'convict']
[u'fire', u'open', u'japan']
[u'stake', u'reput', u'japanes']
[u'wind', u'farm', u'firm', u'challeng', u'council', u'unit', u'decis']
[u'wind', u'farm', u'protest', u'head', u'energi', u'util']
[u'windi', u'lack', u'spin', u'option', u'final', u'test']
[u'wine', u'oversuppli', u'mean', u'grower', u'contract']
[u'wit', u'falconio', u'alleg', u'attack']
[u'wood', u'captur', u'sixth', u'grand', u'slam']
[u'million', u'boost', u'busi']
[u'year', u'highway', u'death']
[u'invest', u'promis', u'faster', u'kalgoorli', u'perth']
[u'commentari', u'highlight']
[u'academ', u'play', u'coal', u'pollut', u'worri']
[u'accus', u'baxter', u'centr', u'arsonist', u'hold', u'secret']
[u'govt', u'urg', u'tougher', u'thiev']
[u'act', u'pledg', u'amend', u'govt', u'law']
[u'adelaid', u'wont', u'chang', u'game', u'plan', u'york', u'kosmina']
[u'announc', u'rule', u'chang']
[u'join', u'fight', u'famili', u'violenc']
[u'join', u'fight', u'violenc', u'women']
[u'allenbi', u'halfway', u'leader', u'australian', u'open']
[u'allenbi', u'hold', u'shoot', u'lead']
[u'urg', u'better', u'spread', u'coastal', u'health', u'resourc']
[u'ambul', u'servic', u'deni', u'paramed', u'shortag']
[u'appeal', u'court', u'dismiss', u'water', u'valv', u'accid', u'case']
[u'arsenal', u'rock', u'crisi']
[u'aspirin', u'caus', u'ulcer', u'studi']
[u'aussi', u'gymnast', u'win', u'bronz', u'world', u'champ']
[u'aussi', u'wing', u'prayer', u'kiwi', u'showdown']
[u'author', u'investig', u'bird', u'death', u'treatment']
[u'bali', u'mourner', u'target', u'document', u'reveal']
[u'bank', u'drag', u'market']
[u'battl', u'boro', u'reach', u'uefa', u'knockout']
[u'beatti', u'open', u'coal', u'methan']
[u'betfair', u'open', u'hobart', u'month']
[u'billiton', u'profit', u'strong', u'demand', u'energi']
[u'board', u'see', u'challeng', u'oversea', u'staff', u'recruit']
[u'bogut', u'wear', u'face', u'mask', u'surgeri']
[u'border', u'crackdown', u'drink', u'drive']
[u'bring', u'deport', u'home', u'beazley']
[u'bushfir', u'expert', u'give', u'evid', u'eyr', u'peninsula']
[u'busi', u'prepar', u'impact', u'fish', u'industri']
[u'bute', u'longer', u'threat']
[u'needl', u'exchang', u'program', u'jail']
[u'canegrow', u'back', u'subsidi', u'decis']
[u'carter', u'name', u'player', u'player', u'year']
[u'cervic', u'cancer', u'death', u'higher', u'indigen']
[u'chelsea', u'readi', u'portsmouth', u'woe']
[u'childcar', u'centr', u'owner', u'disappoint', u'minist']
[u'chines', u'compani', u'apologis', u'toxic', u'spill']
[u'chogm', u'summit', u'boost', u'talk']
[u'communiti', u'get', u'extend', u'life']
[u'compens', u'deal', u'shouldnt', u'rush', u'hardi']
[u'demand', u'gunn', u'apolog']
[u'contamin', u'diesel', u'caus', u'pump', u'closur']
[u'council', u'chairman', u'join', u'forestri', u'board']
[u'council', u'seek', u'legal', u'advic', u'perri', u'lake']
[u'council', u'mix', u'view', u'plan', u'chang']
[u'council', u'suggest', u'catchment', u'manag', u'author']
[u'council', u'consid', u'whistl', u'return']
[u'council', u'label', u'racist']
[u'council', u'underlin', u'import', u'plan']
[u'countri', u'forc', u'extra', u'game']
[u'coveni', u'propel', u'jet', u'victori']
[u'crash', u'prompt', u'govt', u'consid', u'school', u'seatbelt']
[u'david', u'jone', u'record', u'sale', u'slump']
[u'dead', u'hous', u'blaze', u'racial', u'motiv']
[u'deal', u'reach', u'anti', u'terror', u'legisl']
[u'detect', u'deni', u'murdoch', u'trial']
[u'diesel', u'contamin', u'unlik', u'affect']
[u'doctor', u'associ', u'support', u'nuclear', u'dump', u'call']
[u'doubl', u'murder', u'surgeri', u'appropri']
[u'doyl', u'quash', u'leadership', u'specul']
[u'driver', u'question', u'pedestrian']
[u'driver', u'urg', u'slow', u'live']
[u'drought', u'farmer', u'face', u'worm', u'threat']
[u'drug', u'raid', u'uncov', u'south', u'west', u'cannabi', u'crop']
[u'ducker', u'die']
[u'dump', u'clark', u'give', u'time', u'clear', u'mind']
[u'ecstasi', u'traffick', u'avoid', u'jail']
[u'subsidi', u'benefit', u'australian', u'cane', u'farmer']
[u'famili', u'deporte', u'share', u'blame', u'ruddock', u'say']
[u'fishermen', u'dinghi', u'owner', u'rescu', u'separ']
[u'fleme', u'miss', u'chappel', u'hadle', u'match']
[u'fletcher', u'jone', u'factori', u'shut', u'door']
[u'flinder', u'street', u'station', u'undergo', u'revamp']
[u'fume', u'forc', u'emerg', u'dept', u'evacu']
[u'glitter', u'charg', u'commit', u'obscen', u'act']
[u'golden', u'prospect', u'cala', u'resourc']
[u'govt', u'rule', u'final', u'legal', u'avenu', u'save', u'nguyen']
[u'govt', u'urg', u'reconsid', u'park', u'handback']
[u'grant', u'help', u'determin', u'warmun', u'import']
[u'graphic', u'campaign', u'target', u'smoke', u'teen']
[u'group', u'back', u'plan', u'indigen', u'home', u'ownership']
[u'group', u'say', u'ail', u'health', u'hurt', u'busi']
[u'harvey', u'norman', u'seek', u'myer', u'purchas']
[u'hatton', u'put', u'tszyu', u'sensat']
[u'hill', u'visit', u'troop', u'iraq']
[u'hope', u'tugun', u'bypass', u'work', u'begin', u'year']
[u'illeg', u'indonesian', u'fisher', u'like', u'charg']
[u'indigen', u'lover', u'take', u'award']
[u'indigen', u'group', u'get', u'commerci', u'crab']
[u'indigen', u'legal', u'servic', u'govt']
[u'indonesia', u'bar', u'terror', u'research']
[u'indonesian', u'polic', u'uncov', u'suicid', u'bomb', u'plot']
[u'iraq', u'ask', u'japan', u'extend', u'mission']
[u'chang', u'threaten', u'commiss', u'case']
[u'law', u'wont', u'pass', u'week', u'joyc']
[u'jam', u'hardi', u'compo', u'deadlin', u'pass', u'deal']
[u'japan', u'assur', u'iraq', u'continu', u'assist']
[u'japan', u'edg', u'allow', u'femal', u'emperor']
[u'japan', u'prepar', u'second', u'asteroid', u'land', u'attempt']
[u'joyc', u'keep', u'option', u'open']
[u'kalgoorli', u'lead', u'notic']
[u'katter', u'urg', u'cough', u'doctor', u'contact', u'number']
[u'knowledg', u'financi', u'control']
[u'lara', u'eye', u'border', u'record']
[u'lara', u'lead', u'windi', u'fight']
[u'lawyer', u'accus', u'give', u'mislead', u'statement']
[u'put', u'australia']
[u'lesli', u'keep', u'case', u'detail', u'quiet']
[u'lesli', u'speak', u'critic']
[u'lewi', u'shock']
[u'long', u'time', u'resid', u'escap', u'deport']
[u'loom', u'execut', u'prompt', u'suspend']
[u'lotto', u'winner', u'jail', u'centerlink', u'scam']
[u'luhrmann', u'eye', u'cattl', u'station', u'epic']
[u'malaysia', u'flood', u'death', u'toll', u'rise']
[u'get', u'life', u'jail', u'partner', u'murder']
[u'good', u'behaviour', u'bond', u'friend', u'death']
[u'court', u'polic', u'pursuit']
[u'flee', u'drug', u'raid', u'urg', u'surrend']
[u'marin', u'roar', u'play', u'excit', u'draw']
[u'matilda', u'draw', u'china']
[u'mayor', u'doesnt', u'want', u'mine', u'close', u'moranbah']
[u'mcenro', u'tip', u'young', u'gun', u'challeng', u'feder']
[u'meet', u'assess', u'support', u'timber', u'industri']
[u'mildura', u'woman', u'name', u'child', u'carer']
[u'million', u'face', u'food', u'shortag', u'niger']
[u'miner', u'beat', u'lead', u'zinc', u'prospect']
[u'minist', u'announc', u'hospit', u'boost']
[u'minist', u'meet', u'resid', u'plan']
[u'minist', u'welcom', u'fewer', u'great', u'lake', u'councillor']
[u'upset', u'albani', u'tourism', u'snub']
[u'monk', u'amok', u'fistfight', u'catch']
[u'rain', u'hail', u'batter', u'western', u'crop']
[u'support', u'urg', u'foreign', u'train', u'doctor']
[u'back', u'call', u'nullarbor', u'drought', u'declar']
[u'murder', u'trial', u'hear', u'detail', u'fatal', u'home', u'invas']
[u'nitti', u'slip', u'earli']
[u'convict', u'pair', u'charg', u'anti']
[u'legal', u'avenu', u'leav', u'nguyen', u'downer']
[u'north', u'revamp', u'help', u'xstrata', u'copper', u'award']
[u'water', u'contamin', u'link', u'council']
[u'govt', u'get', u'tough', u'truck', u'industri']
[u'govt', u'rule', u'recycl', u'drink', u'water']
[u'number', u'arrest', u'french', u'rioter', u'pass']
[u'miracl', u'save', u'nguyen', u'downer', u'say']
[u'opposit', u'highlight', u'dwindl', u'truck', u'check']
[u'orica', u'fin', u'chemic', u'spill']
[u'overdu', u'rail', u'overpass', u'near', u'complet']
[u'pair', u'face', u'court', u'illeg', u'fish']
[u'palestinian', u'open', u'rafah', u'border', u'cross', u'egypt']
[u'parrot', u'piec', u'secur', u'newcastl', u'poetri', u'prize']
[u'perman', u'resid', u'case', u'review']
[u'perrin', u'sack', u'pompey', u'boss']
[u'petrol', u'sniff', u'measur', u'dont']
[u'pierc', u'creek', u'decis', u'expect', u'short']
[u'pinochet', u'face', u'human', u'right', u'charg']
[u'plan', u'continu', u'retir', u'villag']
[u'plan', u'indigen', u'health', u'clinic']
[u'polic', u'corrupt', u'claim', u'refer']
[u'polic', u'domest', u'violenc', u'strategi', u'work']
[u'polic', u'hunt', u'servic', u'station', u'bandit']
[u'polic', u'investig', u'port', u'kembla', u'bash']
[u'polic', u'question', u'quinn', u'briberi', u'claim']
[u'polic', u'union', u'cast', u'doubt', u'hour', u'week', u'plan']
[u'poppi', u'grower', u'heavi', u'rain', u'bring', u'crop', u'miseri']
[u'postal', u'worker', u'face', u'action', u'ralli']
[u'power', u'firm', u'reject', u'summer', u'outag', u'fear']
[u'power', u'pole', u'inspect', u'collaps']
[u'prepar', u'expect', u'season']
[u'properti', u'industri', u'exec', u'brief', u'terror']
[u'public', u'warn', u'stab', u'theft']
[u'polic', u'brace', u'influx', u'interst', u'schooli']
[u'quarantin', u'probe', u'suspect', u'illeg', u'land']
[u'queen', u'urg', u'chogm', u'leader', u'step', u'fight']
[u'record', u'level', u'fuel', u'global', u'warm', u'fear']
[u'region', u'doubt', u'cast', u'higher', u'educ', u'plan']
[u'report', u'urg', u'counsel', u'bishopscourt', u'saga']
[u'resid', u'want', u'crackdown', u'problem', u'youth']
[u'ronaldo', u'clear', u'rape', u'claim']
[u'cop', u'critic', u'highway', u'consult']
[u'urg', u'clarifi', u'overload', u'limit']
[u'sack', u'council', u'sort', u'constitut', u'issu']
[u'sack', u'holden', u'worker', u'knock']
[u'saddam', u'defenc', u'team', u'end', u'trial', u'boycott']
[u'schifcofsk', u'name', u'raider', u'skipper']
[u'scientist', u'discov', u'sing', u'iceberg']
[u'secur', u'camera', u'plan', u'griffith']
[u'secur', u'money', u'tamworth']
[u'sentenc', u'extend', u'child', u'offend']
[u'seventi', u'fear', u'dead', u'fall', u'river']
[u'shark', u'attack', u'surfer', u'mornington', u'peninsula']
[u'shellharbour', u'launch', u'alcohol', u'accord']
[u'sixteen', u'kill', u'rescu', u'fall', u'river']
[u'size', u'boost', u'plan', u'molybdenum']
[u'solomon', u'polic', u'take', u'ramsi']
[u'state', u'feder', u'agreement', u'green', u'light', u'peel', u'deviat']
[u'state', u'urg', u'truck', u'rego', u'rise', u'compromis']
[u'strand', u'tourist', u'arriv', u'home']
[u'swim', u'dolphin', u'eas', u'depress', u'studi']
[u'govt', u'reject', u'tier', u'educ']
[u'tebbutt', u'say', u'state', u'skill']
[u'teen', u'accus', u'knife', u'attack']
[u'telstra', u'reject', u'fear', u'mass', u'staff', u'cut']
[u'thiev', u'target', u'unsecur', u'hous']
[u'threat', u'wont', u'save', u'nguyen', u'costello']
[u'qanta', u'employe', u'arrest', u'narcot']
[u'tougher', u'control', u'site', u'rehab']
[u'tourist', u'target', u'region']
[u'truck', u'driver', u'urg', u'strike', u'day']
[u'doctor', u'recruit', u'drive', u'begin']
[u'vail', u'play', u'law', u'revolt']
[u'vail', u'tri', u'quell', u'revolt']
[u'vail', u'tri', u'quell', u'nation', u'revolt']
[u'govt', u'back', u'pipelin', u'disput']
[u'wallabi', u'happi', u'jone', u'gregan', u'say', u'giteau']
[u'word', u'continu', u'nrma', u'smash', u'repair']
[u'warrior', u'reach', u'competit', u'total']
[u'watch', u'committe', u'disappoint', u'fund', u'decis']
[u'watchdog', u'ask', u'delay', u'indigen', u'school', u'closur']
[u'water', u'author', u'rais', u'saleyard', u'worri']
[u'water', u'author', u'stand', u'irrig', u'relief', u'fund']
[u'waugh', u'back', u'gregan', u'ahead', u'mileston', u'test']
[u'western', u'power', u'worker', u'strike', u'deal']
[u'western', u'power', u'worker', u'vote', u'stop', u'disconnect']
[u'wilko', u'undergo', u'groin', u'oper']
[u'woodsid', u'green', u'light', u'field']
[u'woolworth', u'boss', u'deni', u'bank', u'board', u'report']
[u'workco', u'stand', u'colleg', u'cut', u'push']
[u'world', u'vision', u'australia', u'chief', u'recognis', u'work']
[u'arrest', u'schooli']
[u'offic', u'fair', u'trade', u'releas', u'real', u'estat']
[u'adelaid', u'class', u'tiger']
[u'adelaid', u'townsvill', u'post', u'wnbl', u'win']
[u'jazeera', u'seek', u'answer', u'bomb', u'report']
[u'alleg', u'assault', u'prompt', u'polic', u'search']
[u'allenbi', u'hold', u'open', u'lead']
[u'allenbi', u'start', u'round', u'style']
[u'anti', u'protest', u'return', u'bush', u'retreat']
[u'arrog', u'go', u'say', u'mourinho']
[u'lover', u'rais', u'cane', u'toad', u'fight', u'fund']
[u'aussi', u'chase', u'lara', u'inspir', u'total']
[u'beach', u'restor', u'plan', u'unveil']
[u'beazley', u'reiter', u'pledg', u'tear', u'law']
[u'good', u'johnni', u'win', u'miracl', u'mile']
[u'best', u'enrich', u'live']
[u'bishop', u'urg', u'compass', u'nguyen']
[u'blast', u'hit', u'nato', u'soldier', u'afghanistan']
[u'blue', u'bowler', u'restrict', u'bull']
[u'border', u'say', u'lara', u'worthi', u'record']
[u'boy', u'abduct', u'claim', u'investig']
[u'bushfir', u'communic', u'season', u'late']
[u'busi', u'tycoon', u'set', u'balloon', u'record']
[u'canadian', u'plan', u'tackl', u'indigen', u'poverti']
[u'maker', u'open', u'talk', u'owner']
[u'chamber', u'predict', u'territorian', u'xmas']
[u'china', u'report', u'bird', u'outbreak', u'inner']
[u'chines', u'citi', u'water', u'toxic', u'spill']
[u'chogm', u'leader', u'discuss', u'trade', u'reform']
[u'cityrail', u'passeng', u'warn', u'disrupt']
[u'commentari', u'highlight', u'adelaid']
[u'confer', u'popular', u'renov', u'delay', u'govt']
[u'corbi', u'camp', u'hail', u'qanta', u'drug', u'arrest']
[u'count', u'begin', u'pittwat', u'elect']
[u'coveni', u'propel', u'jet', u'victori']
[u'lonergan', u'review', u'draft']
[u'dozen', u'arrest', u'schooli']
[u'drive', u'shoot', u'investig']
[u'east', u'china', u'quak', u'kill']
[u'eighti', u'fear', u'dead', u'india', u'crash']
[u'sugar', u'chang', u'push', u'price', u'higher']
[u'expert', u'panel', u'warn', u'desalin', u'plant']
[u'ferguson', u'rule', u'ballack']
[u'blood', u'lownd', u'titl', u'duel']
[u'injur', u'collis']
[u'kill', u'china', u'quak']
[u'footbal', u'legend', u'georg', u'best', u'pass', u'away']
[u'boss', u'head', u'elgin', u'marbl', u'effort']
[u'world', u'ralli', u'champion', u'richard', u'burn', u'die']
[u'friend', u'carri', u'support', u'messag', u'nguyen']
[u'frustrat', u'ahm', u'near', u'quit', u'bowl', u'action']
[u'germani', u'call', u'secret', u'flight', u'explan']
[u'gillespi', u'send', u'messag', u'merv']
[u'hera', u'face', u'prematur', u'career']
[u'heritag', u'list', u'bring', u'hope', u'richmond', u'bridg']
[u'hockeyroo', u'humbl', u'olymp', u'champ', u'germani']
[u'human', u'right', u'concern', u'domin', u'chogm']
[u'huxley', u'famili', u'appeal', u'public', u'help']
[u'indian', u'businessman', u'seek', u'balloon', u'record']
[u'indigen', u'kidney', u'diseas', u'rat', u'time', u'higher']
[u'indonesian', u'patient', u'test', u'posit', u'bird']
[u'indonesia', u'vow', u'bird', u'fight', u'pois', u'produc']
[u'injur', u'allenbi', u'hold', u'australian', u'open', u'lead']
[u'internet', u'monitor', u'blood', u'clot', u'patient', u'health']
[u'iran', u'stand', u'nuclear', u'enrich', u'ambit']
[u'japanes', u'probe', u'land', u'asteroid', u'agenc', u'say']
[u'karat', u'kid', u'morita', u'die']
[u'kemp', u'earn', u'south', u'african', u'test', u'recal']
[u'king', u'outlast', u'wildcat']
[u'kitzbichl', u'doubl', u'see', u'victori', u'home']
[u'langer', u'lead', u'aussi', u'chase']
[u'lara', u'break', u'border', u'record']
[u'lawyer', u'alleg', u'victorian', u'polic', u'corrupt']
[u'lesli', u'hit', u'public', u'anger']
[u'lesli', u'team', u'quiet', u'case', u'cost']
[u'liber', u'jitteri', u'ahead', u'pittwat', u'elect']
[u'liber', u'lose', u'elect']
[u'liber', u'tip', u'retain', u'pittwat']
[u'liukin', u'take', u'reveng', u'world', u'champ']
[u'mcewen', u'take', u'year', u'best', u'award']
[u'mislead', u'info', u'forc', u'cooper', u'postpon']
[u'monk', u'rent', u'mall', u'space', u'thailand']
[u'mornington', u'peninsula', u'shark', u'attack', u'year']
[u'murphi', u'take', u'draft']
[u'defenc', u'suburb', u'lack', u'plan']
[u'appeal', u'clemenc', u'nguyen']
[u'pressur', u'singapor', u'nguyen']
[u'pakistan', u'back', u'aust', u'anti', u'terror', u'law']
[u'palestinian', u'enjoy', u'breath', u'freedom', u'border']
[u'palm', u'year']
[u'polic', u'prais', u'schooli', u'behaviour']
[u'polic', u'prepar', u'schooli', u'arrest']
[u'pope', u'prais', u'victorian', u'doctor', u'famili', u'plan']
[u'power', u'problem', u'thunderstorm']
[u'qanta', u'worker', u'face', u'court', u'drug', u'charg']
[u'qanta', u'worker', u'sack']
[u'qanta', u'worker', u'unfair', u'dismiss', u'lawyer', u'say']
[u'nation', u'talk', u'accommod']
[u'ranger', u'bounc', u'defeat', u'flame']
[u'russia', u'brace', u'china', u'toxic', u'spill', u'fallout']
[u'smith', u'slam', u'india']
[u'sustain', u'develop', u'futur', u'shock']
[u'childcar', u'place', u'rais']
[u'teen', u'die', u'bruce', u'highway', u'crash']
[u'territori', u'best', u'young', u'athlet', u'compet', u'game']
[u'thanksgiv', u'mark', u'minut', u'turkey', u'gobbl']
[u'thousand', u'homeless', u'china', u'quak']
[u'thousand', u'build', u'collaps', u'china', u'quak']
[u'tiger', u'clinch', u'thrill']
[u'train', u'derail', u'scotland']
[u'tram', u'fund', u'better', u'spend', u'road', u'opposit']
[u'umaga', u'retir', u'scotland', u'test', u'report']
[u'unhcr', u'issu', u'plea', u'fund']
[u'upper', u'hous', u'say', u'speaker']
[u'vaughan', u'open', u'test']
[u'labor', u'reaffirm', u'uranium', u'mine']
[u'wall', u'street', u'extend', u'win', u'streak']
[u'wenger', u'call', u'chelsea', u'truce']
[u'west', u'indian', u'great', u'joel', u'garner', u'speak', u'peter', u'walsh']
[u'fail', u'japan']
[u'woman', u'kill', u'accid']
[u'aborigin', u'train', u'program', u'win', u'nation', u'award']
[u'actu', u'pressur', u'costello', u'jam', u'hardi', u'compo']
[u'black', u'golden', u'season', u'grand', u'slam']
[u'allenbi', u'cling', u'lead', u'final', u'round']
[u'allenbi', u'play']
[u'allenbi', u'scrap', u'home', u'claim', u'open']
[u'ambros', u'grab', u'race']
[u'australian', u'urg', u'wear', u'yellow', u'ribbon']
[u'azerbaijan', u'polic', u'break', u'elect', u'protest']
[u'beatti', u'pleas', u'schooli', u'festiv']
[u'beazley', u'repeat', u'nguyen', u'mission']
[u'bennett', u'leav', u'look', u'answer']
[u'blackwel', u'injur', u'gile']
[u'bulleen', u'kick', u'away', u'perth']
[u'elect', u'result', u'wake', u'liber']
[u'australian', u'support', u'yellow', u'ribbon']
[u'chelsea', u'charg', u'point', u'clear', u'wigan', u'slip']
[u'china', u'apologis', u'russia', u'river', u'contamin']
[u'climat', u'chang', u'expert', u'urg', u'govt', u'adapt']
[u'commentari', u'highlight', u'adelaid']
[u'cosgrov', u'devour', u'bushrang', u'attack']
[u'count', u'zimbabw']
[u'current', u'iraqi', u'right', u'abus', u'equal', u'saddam']
[u'day', u'domin', u'bennett']
[u'debut', u'lead', u'warrior', u'recoveri']
[u'doctor', u'warn', u'fever', u'vaccin', u'product', u'halt']
[u'singl', u'shoot', u'tough', u'shoot']
[u'foreign', u'illeg', u'fish', u'boat', u'spot', u'river']
[u'elect', u'presid']
[u'funk', u'winner', u'skin']
[u'gallop', u'label', u'dictat', u'uranium', u'debat']
[u'game', u'chief', u'talk', u'event', u'secur']
[u'girl', u'charg', u'schooli', u'assault']
[u'govt', u'deni', u'target', u'teenag', u'anti']
[u'govt', u'lawyer', u'examin', u'nguyen', u'propos']
[u'govt', u'invest', u'urban', u'redevelop']
[u'govt', u'trial', u'residenti', u'park', u'permit']
[u'green', u'reject', u'call', u'nuclear', u'power', u'studi']
[u'green', u'seek', u'singapor', u'defenc', u'deal', u'rethink']
[u'gregan', u'shrug', u'retir', u'talk']
[u'gungahlin', u'retail', u'suffer', u'storm', u'damag']
[u'hatton', u'unifi', u'world', u'titl']
[u'hockeyroo', u'overpow', u'south', u'korea']
[u'hospit', u'union', u'say', u'law', u'hurt', u'member']
[u'howard', u'make', u'inform', u'nguyen', u'plea']
[u'howard', u'recal', u'best', u'magic']
[u'hundr', u'saddam', u'execut']
[u'hundr', u'islamist', u'arrest', u'egypt', u'vote']
[u'hussey', u'centuri', u'give', u'aussi', u'lead']
[u'hussey', u'centuri', u'test', u'balanc']
[u'hussey', u'lead', u'aussi', u'fight']
[u'ingal', u'hang', u'championship']
[u'inquiri', u'launch', u'violent', u'bulli', u'claim']
[u'iranian', u'support', u'nuclear', u'program']
[u'iran', u'quak', u'toll', u'rise']
[u'jam', u'hardi', u'compo', u'deal', u'close', u'iemma']
[u'japanes', u'probe', u'collect', u'asteroid', u'sampl']
[u'jayasuriya', u'vow', u'regain', u'test', u'spot']
[u'jone', u'pleas', u'progress', u'pakistan']
[u'kiwi', u'crush', u'kangaroo', u'nation', u'final']
[u'liber', u'consid', u'establish', u'anti', u'corrupt', u'bodi']
[u'littl', u'fish', u'star', u'lead', u'award']
[u'littl', u'jewel', u'return', u'argentina']
[u'malik', u'fresh', u'bowl', u'test', u'perth']
[u'charg', u'hotel', u'attack']
[u'jail', u'fraud']
[u'kill', u'accid']
[u'nation', u'parti', u'concern', u'law', u'flaw', u'actu']
[u'nelson', u'defend', u'nation', u'test', u'year', u'old']
[u'nelson', u'seek', u'aust', u'nuclear', u'power', u'inquiri']
[u'agenc', u'youth', u'petrol', u'sniff']
[u'charg', u'burn', u'taliban', u'bodi']
[u'pinochet', u'mute', u'birthday', u'hous', u'arrest']
[u'pittwat', u'defeat', u'warn', u'liber', u'labor', u'say']
[u'pittwat', u'leadership', u'test', u'debnam', u'say']
[u'plan', u'garden', u'site', u'display']
[u'pleas', u'chogm', u'trade', u'statement']
[u'stand', u'firm', u'lesli', u'comment', u'warn']
[u'warn', u'singapor', u'nguyen', u'resent']
[u'polic', u'charg', u'cyclist', u'death']
[u'polic', u'smash', u'plot', u'kill', u'saddam', u'trial', u'judg']
[u'polic', u'warn', u'resid', u'conman']
[u'post', u'offic', u'gear', u'santa', u'mail']
[u'power', u'storm', u'sweep']
[u'plater', u'blow']
[u'polic', u'tell', u'southern', u'schooli', u'behav']
[u'quak', u'hit', u'iranian', u'coast']
[u'rain', u'wash']
[u'reason', u'council', u'sack', u'reveal']
[u'rech', u'doubl', u'adelaid', u'goal']
[u'russo', u'secur', u'fifth', u'place', u'final']
[u'pianist', u'win', u'young', u'perform', u'award']
[u'search', u'attempt', u'theft']
[u'crew', u'busi', u'storm']
[u'silenc', u'applaus', u'honour', u'best', u'memori']
[u'singapor', u'sack', u'hangman', u'execut']
[u'strong', u'contend', u'share', u'gong']
[u'suicid', u'bomber', u'target', u'petrol', u'station']
[u'supersub', u'inzaghi', u'keep', u'milan', u'titl', u'hop', u'aliv']
[u'hous', u'arrest', u'extend', u'report']
[u'sydney', u'water', u'deni', u'pollut', u'wast', u'claim']
[u'taipan', u'halt', u'hawk', u'streak']
[u'polic', u'offic', u'assault']
[u'toll', u'rise', u'indian', u'crash']
[u'umaga', u'deflect', u'retir', u'specul', u'grand']
[u'deni', u'guantanamo', u'style', u'prison', u'kosovo']
[u'valencia', u'claim', u'stubborn', u'celta']
[u'voter', u'apathi', u'hit', u'zimbabwean', u'poll']
[u'govt', u'consid', u'recycl', u'scheme']
[u'wallabi', u'lose', u'wale']
[u'wallabi', u'tour', u'review']
[u'warrior', u'scrambl', u'domin', u'posit']
[u'water', u'restor', u'toxic', u'spill', u'china']
[u'wont', u'fight', u'chang', u'gallop']
[u'wallabi']
[u'windi', u'regain', u'control', u'test']
[u'woolmer', u'hail', u'lara', u'great']
[u'youni', u'miss', u'final', u'test']
[u'kill', u'pacif', u'highway', u'crash']
[u'accid', u'trigger', u'drink', u'drive', u'charg']
[u'actu', u'say', u'messag', u'joyc', u'clear']
[u'airport', u'arrest', u'unrel', u'corbi', u'case', u'chief']
[u'airport', u'worker', u'ask', u'alert', u'organis']
[u'alderman', u'condemn', u'petrol', u'sniff', u'inact']
[u'member', u'block', u'preselect']
[u'altern', u'suggest', u'retain', u'wall', u'offer']
[u'warn', u'wait', u'list', u'worri']
[u'anti', u'adopt', u'cultur', u'alarm', u'inquiri']
[u'outsourc', u'job', u'india']
[u'kill', u'china', u'blast']
[u'australia', u'lose', u'quick', u'wicket']
[u'australia', u'verg', u'clean', u'sweep']
[u'aust', u'slow', u'nguyen', u'say', u'lawyer']
[u'banana', u'diseas', u'mullumbimbi']
[u'barcelona', u'thrash', u'race', u'real', u'struggl', u'draw']
[u'beatti', u'deni', u'politicis', u'health', u'staff']
[u'beekeep', u'forestri', u'chang', u'ensur']
[u'birney', u'face', u'question', u'share', u'disclosur']
[u'blaze', u'claim', u'chariti', u'donat']
[u'blue', u'rise', u'research', u'yield', u'altern']
[u'boati', u'urg', u'cyclon', u'readi']
[u'bodi', u'brisban', u'valley']
[u'boe', u'worker', u'hold', u'collect', u'agreement', u'ballot']
[u'bowen', u'look', u'boost', u'tourism']
[u'bravo', u'hop', u'emul', u'sober']
[u'break', u'hill', u'featur', u'feder', u'engin', u'driver']
[u'bushfir', u'inquest', u'hear', u'local']
[u'truck', u'crash', u'spark', u'plea', u'road']
[u'buyer', u'snap', u'vass', u'newtown', u'block']
[u'elect', u'criticis']
[u'great', u'southern', u'earli', u'power', u'pole']
[u'call', u'sedit', u'offenc']
[u'canberra', u'launch', u'summer', u'festiv']
[u'cane', u'grower', u'look', u'forward', u'crush', u'wrap']
[u'carter', u'win', u'rugbi', u'award']
[u'chappel', u'censur', u'finger', u'salut']
[u'chechen', u'elect', u'post', u'parliament']
[u'china', u'explos', u'toll', u'rise']
[u'chogm', u'back', u'push', u'slash', u'trade', u'barrier']
[u'clark', u'bounc', u'centuri']
[u'commentari', u'highlight', u'adelaid']
[u'committe', u'call', u'nation', u'pest', u'initi']
[u'commonwealth', u'leader', u'urg', u'match']
[u'communiti', u'health', u'group', u'establish']
[u'concern', u'grow', u'detaine', u'hunger', u'strike']
[u'coron', u'order', u'test', u'suspect', u'murder', u'weapon']
[u'costello', u'rule', u'compo', u'break', u'jam', u'hardi']
[u'council', u'issu', u'year', u'public', u'alcohol']
[u'council', u'meet', u'land', u'owner', u'concession', u'lot']
[u'council', u'beat', u'buchanan', u'park', u'work']
[u'cricket', u'decis', u'question']
[u'csiro', u'stay', u'griffith']
[u'cyclist', u'die', u'road', u'race']
[u'cyclist', u'die', u'road', u'ride']
[u'date', u'best', u'funer']
[u'defeat', u'councillor', u'air', u'rural', u'concern']
[u'defenc', u'offici', u'probe', u'crash', u'land', u'base']
[u'dividend', u'unlik', u'leagu', u'club', u'unsecur']
[u'doctor', u'urg', u'school', u'junk', u'food']
[u'attack', u'toll', u'local', u'farmer']
[u'doubt', u'rais', u'council', u'merger']
[u'downer', u'defend', u'govt', u'effort', u'save', u'nguyen']
[u'drill', u'test', u'leav', u'govt', u'approv', u'final', u'hurdl']
[u'driver', u'warn', u'loom', u'chang']
[u'drug', u'driver', u'worri', u'townsvill', u'polic']
[u'effort', u'boost', u'rock', u'lobster', u'export']
[u'elder', u'rider', u'take', u'campdraft', u'award']
[u'elect', u'produc', u'council', u'face']
[u'escap', u'croc', u'surpris', u'darwin', u'driver']
[u'agreement', u'forc', u'winemak', u'name']
[u'eurobodalla', u'council', u'ratifi', u'broule', u'alcohol', u'plan']
[u'explod', u'airbag', u'burn', u'skin', u'research']
[u'extradit', u'murder', u'charg']
[u'care', u'expon', u'name', u'region', u'hero']
[u'famili', u'homeless', u'blaze']
[u'farmer', u'assess', u'damag', u'sever', u'thunderstorm']
[u'firebreak', u'inspect', u'hold', u'earli']
[u'firefight', u'hous', u'blaze', u'rescu', u'recognit']
[u'servic', u'warn', u'danger', u'inquest', u'hear']
[u'firm', u'look', u'develop', u'pine', u'export']
[u'fitzroy', u'river', u'croc', u'prove', u'elus']
[u'fluorid', u'phone', u'survey', u'network']
[u'food', u'label', u'law', u'clarifi', u'health', u'benefit']
[u'foreign', u'worker', u'kidnap', u'iraq']
[u'forestri', u'industri', u'target', u'student']
[u'peopl', u'nomin', u'murdoch', u'suspect', u'court']
[u'fuda', u'secur', u'gambier', u'tenni', u'tournament']
[u'fund', u'safer', u'coast', u'road']
[u'funk', u'skin', u'oppon', u'california']
[u'gambl', u'geelong']
[u'govt', u'attack', u'press', u'freedom', u'sedit']
[u'govt', u'order', u'probe', u'household', u'water']
[u'govt', u'say', u'protest', u'misdirect']
[u'govt', u'spend', u'reef', u'fish', u'compo']
[u'govt', u'urg', u'spend', u'surplus', u'welfar', u'payment']
[u'green', u'refer', u'anti', u'terror', u'law']
[u'group', u'take', u'land', u'manag']
[u'harvey', u'like', u'see', u'fremantl']
[u'hawk', u'hopman']
[u'heavi', u'rain', u'fall', u'illawarra']
[u'high', u'demand', u'hit', u'crisi', u'accommod', u'servic']
[u'highway', u'remain', u'close', u'kill', u'head']
[u'hope', u'specialist', u'doctor', u'break', u'hill']
[u'hospit', u'supper', u'servic']
[u'howard', u'pressur', u'cancel', u'cricket', u'match']
[u'illeg', u'fish', u'vessel', u'evad', u'author']
[u'indigen', u'ranger', u'support', u'fish', u'patrol', u'plan']
[u'indonesian', u'polic', u'bomb', u'cach', u'sulawesi']
[u'inquest', u'tell', u'convict', u'murder', u'suspect']
[u'iraqi', u'presid', u'hit', u'allawi', u'abus', u'claim']
[u'iraqi', u'abroad', u'vote', u'decemb', u'elect']
[u'ireland', u'pursu', u'alleg', u'prison']
[u'law', u'campaign', u'head', u'region', u'victoria']
[u'law', u'pass']
[u'jam', u'hardi', u'give', u'hour', u'compens', u'deadlin']
[u'jone', u'upbeat', u'world', u'prospect']
[u'juve', u'restor', u'cushion', u'racism', u'overshadow', u'seri']
[u'lara', u'second', u'prove', u'decis']
[u'late', u'wicket', u'redback', u'momentum']
[u'lee', u'wit']
[u'lee', u'phone', u'scrutini']
[u'lightn', u'spark', u'south', u'east', u'fire']
[u'lion', u'seek', u'better', u'bond', u'kokoda', u'trek']
[u'local', u'win', u'region', u'tourism', u'gong']
[u'log', u'threat', u'tourism', u'expert']
[u'luca', u'look', u'highway', u'landslid']
[u'clear', u'bunburi', u'hotel', u'shoot']
[u'face', u'court', u'abduct']
[u'plead', u'guilti', u'abus', u'teen', u'boy']
[u'face', u'attempt', u'murder', u'charg', u'park']
[u'court', u'abduct', u'attempt']
[u'court', u'takeaway', u'hold']
[u'meet', u'offer', u'resid', u'detail']
[u'miner', u'welcom', u'grow', u'vanadium', u'demand']
[u'minist', u'hear', u'retir', u'resort', u'concern']
[u'minist', u'urg', u'probe', u'council', u'plan', u'decis']
[u'mix', u'weather', u'busselton', u'ironman']
[u'question', u'health', u'servic', u'vehicl', u'fleet', u'size']
[u'mugab', u'parti', u'win', u'zimbabw', u'upper', u'hous', u'elect']
[u'nelson', u'trust', u'nuclear', u'wast', u'group']
[u'councillor', u'say', u'conflict']
[u'council', u'posit', u'look', u'boost', u'cobar']
[u'hospit', u'manag', u'look', u'challeng']
[u'jail', u'seek', u'staff']
[u'nguyen', u'request', u'execut']
[u'korea', u'demand', u'compens', u'loss', u'reactor']
[u'green', u'secur', u'support', u'desalin', u'inquiri']
[u'liber', u'analys', u'pittwat', u'defeat']
[u'busi', u'confid', u'slip']
[u'govt', u'back', u'push', u'scientif', u'probe']
[u'resid', u'assur', u'high', u'level', u'nuclear', u'wast']
[u'offici', u'ponder', u'australian', u'open', u'date', u'chang']
[u'organis', u'stand', u'schooli', u'strategi']
[u'overpass', u'expect', u'help', u'eas', u'highway', u'woe']
[u'packer', u'deni', u'set', u'onetel', u'busi', u'strategi']
[u'packer', u'face', u'court']
[u'packer', u'nab', u'newspap']
[u'pair', u'accus', u'drug', u'drive']
[u'pair', u'lose', u'council', u'spot']
[u'plead', u'guilti', u'charg', u'travel', u'sick']
[u'paralymp', u'hope', u'head', u'europ']
[u'patrol', u'encourag', u'youth', u'leadership']
[u'plan', u'rfds', u'dubbo', u'expans']
[u'attend', u'cricket', u'despit', u'nguyen', u'execut']
[u'polic', u'attempt', u'high', u'rescu']
[u'polic', u'chief', u'offer', u'patel', u'assur']
[u'polic', u'investig', u'fatal', u'crash']
[u'polic', u'investig', u'fatal', u'crash']
[u'policeman', u'drag']
[u'polic', u'reveal', u'attempt', u'abduct', u'report', u'fals']
[u'polic', u'search', u'widen', u'leagu', u'player']
[u'poor', u'mango', u'harvest', u'prompt', u'warn', u'worker']
[u'premier', u'open', u'north', u'kiama', u'bypass']
[u'probe', u'order', u'student', u'drown', u'school']
[u'protea', u'surpris', u'ganguli', u'absenc']
[u'protest', u'mark', u'resumpt', u'saddam', u'trial']
[u'public', u'invit', u'mental', u'health']
[u'public', u'remand', u'centr', u'locat']
[u'puzzl', u'glitch', u'reason', u'payment']
[u'qanta', u'back', u'airport', u'polic', u'plan']
[u'coalit', u'surviv', u'nat']
[u'opposit', u'parti', u'commit', u'coalit']
[u'prepar', u'drug', u'driver', u'studi']
[u'quak', u'toll', u'wors', u'expert']
[u'rainfal', u'feed', u'sydney', u'dam']
[u'rain', u'help', u'eas', u'threat']
[u'releas', u'turtl', u'healthi', u'dunkin']
[u'report', u'highlight', u'public', u'servic', u'discrep']
[u'road', u'train', u'ignit', u'highway']
[u'saddam', u'trial', u'adjourn', u'decemb']
[u'govt', u'fast', u'track', u'asbesto', u'compo']
[u'scheme', u'offer', u'help', u'boy', u'home', u'survivor']
[u'scientist', u'embrac', u'plan', u'cyberhug']
[u'scrap', u'sedit', u'law', u'senat', u'urg']
[u'senat', u'request', u'welfar', u'work', u'chang']
[u'servic', u'honour', u'plane', u'crash', u'victim']
[u'share', u'market', u'begin', u'week', u'strong']
[u'singleton', u'bash', u'leav', u'hospit']
[u'slight', u'rise', u'octob', u'home', u'sale']
[u'smith', u'fail', u'secur', u'council', u'spot']
[u'speaker', u'debat']
[u'specialist', u'address', u'multipl', u'birth']
[u'staff', u'crisi', u'loom', u'hospit']
[u'john', u'offer', u'surgeri', u'assur']
[u'steal', u'water', u'truck', u'coolgardi']
[u'storm', u'batter', u'north', u'coast']
[u'storm', u'bring', u'damag', u'wind', u'hail']
[u'student', u'energi', u'event']
[u'student', u'reap', u'benefit', u'cultur', u'chang']
[u'surgeon', u'shortag', u'highlight', u'rural', u'threat']
[u'swiss', u'vote', u'crop']
[u'tamworth', u'countrylink', u'job', u'opposit']
[u'teen', u'die', u'injuri', u'hotel', u'attack']
[u'teen', u'hurt', u'polic', u'chase', u'crash']
[u'test', u'reveal', u'super', u'size', u'feral']
[u'thompson', u'sign', u'shark']
[u'briton', u'kill', u'baghdad', u'attack']
[u'tiger', u'rattl', u'late']
[u'tour', u'oper', u'urg', u'region', u'push']
[u'toyn', u'stand', u'prison', u'guard', u'decis']
[u'turin', u'game', u'torch', u'flame']
[u'fijian', u'soldier', u'remov']
[u'uranium', u'motion', u'make', u'debat']
[u'vendi', u'confid', u'retain', u'mayoralti']
[u'victori', u'unit', u'best', u'tribut']
[u'viduka', u'score', u'boro', u'draw']
[u'fee', u'trial', u'test', u'safeti']
[u'wallabi', u'home', u'snowi', u'nation', u'park']
[u'warn', u'report', u'dissent']
[u'warn', u'rip', u'windi']
[u'winemak', u'suspend', u'grape', u'suppli', u'contract']
[u'winton', u'pleas', u'film', u'award', u'recognit']
[u'woodsid', u'look', u'australian', u'bight']
[u'work', u'ensur', u'highway', u'upgrad', u'preserv', u'water']
[u'australian', u'age']
[u'abar', u'rais', u'crop', u'forecast']
[u'abort', u'pill', u'debat', u'continu']
[u'sexual', u'assault', u'polici', u'criticis']
[u'question', u'accus', u'paedophil', u'bail']
[u'albani', u'waterfront', u'develop', u'plan', u'revis']
[u'alleg', u'briberi', u'probe', u'thorough', u'polic', u'chief']
[u'allenbi', u'play', u'championship']
[u'urg', u'nation', u'approach', u'health']
[u'antisoci', u'behaviour', u'consult', u'slam']
[u'arm', u'robberi', u'increas', u'caus', u'concern']
[u'refus', u'rule', u'coach', u'chang']
[u'australia', u'complet', u'crush', u'seri', u'sweep']
[u'australia', u'near', u'crush', u'seri', u'sweep']
[u'author', u'investig', u'train', u'derail']
[u'author', u'probe', u'boat', u'strand']
[u'author', u'question', u'fijian', u'soldier']
[u'ballarat', u'staff', u'vote', u'offer']
[u'bash', u'victim', u'succumb', u'injuri']
[u'bashir', u'lawyer', u'demand', u'case', u'review']
[u'bayley', u'mear', u'head', u'world', u'team']
[u'beatti', u'wont', u'rush', u'cypress', u'pine', u'decis']
[u'beckham', u'launch', u'london', u'academi']
[u'best', u'funer', u'belfast', u'parliament']
[u'best', u'honour', u'stadium']
[u'censur', u'council', u'general', u'manag', u'fail']
[u'bigger', u'better', u'australian', u'astronom']
[u'bike', u'ride', u'continu', u'despit', u'death']
[u'bishop', u'condemn', u'singapor', u'execut']
[u'blair', u'deni', u'knowledg', u'jazeera', u'bomb', u'plan']
[u'blue', u'bull', u'play', u'draw']
[u'bomber', u'target', u'bangladesh', u'court']
[u'boulder', u'wast', u'pond', u'undergo', u'inspect']
[u'brack', u'talk', u'golden', u'opportun', u'ballarat']
[u'britain', u'face', u'tube', u'shoot', u'investig']
[u'british', u'featur', u'region']
[u'burk', u'water', u'bottl', u'sell']
[u'bushfir', u'inquiri', u'hear', u'radio', u'network', u'collaps']
[u'bushfir', u'caus', u'port', u'lincoln', u'hous', u'crisi']
[u'compani', u'face', u'train', u'levi']
[u'camporeal', u'nomin', u'preseason', u'draft']
[u'canadian', u'govt', u'toppl', u'confid', u'vote']
[u'crash', u'victim', u'take', u'drug']
[u'centrelink', u'review', u'lead', u'benefit', u'reduct']
[u'worker', u'accus', u'light', u'fire']
[u'chelsea', u'appeal', u'troubl', u'fine']
[u'cherri', u'varieti', u'caus', u'headach', u'grower']
[u'claim', u'gunn', u'overload', u'truck']
[u'claim', u'minist', u'legal', u'threat', u'radio']
[u'climat', u'confer', u'discuss', u'post', u'kyoto', u'target']
[u'coalit', u'invit', u'medic', u'brief']
[u'commentari', u'highlight', u'adelaid']
[u'compani', u'begin', u'exploratori', u'coal', u'seam', u'drill']
[u'concern', u'mount', u'lack', u'women', u'refug']
[u'cooper', u'upbeat', u'despit', u'takeov', u'battl']
[u'council', u'approv', u'develop']
[u'councillor', u'pay', u'perform', u'event', u'inquiri']
[u'croc', u'elud', u'searcher']
[u'crop', u'recov', u'despit', u'late', u'plant']
[u'cruis', u'ship', u'tourist', u'number', u'manag', u'wriedt']
[u'urg', u'continu', u'product']
[u'cyclist', u'await', u'compens', u'train', u'crash']
[u'unearth', u'histori', u'femal', u'convict']
[u'downer', u'condemn', u'zimbabw', u'poll']
[u'dravid', u'earn', u'india', u'draw', u'seri']
[u'driver', u'warn', u'high', u'wind', u'danger']
[u'drug', u'traffic', u'deserv', u'death', u'penalti', u'singapor']
[u'employ', u'favour', u'univers', u'graduat', u'report']
[u'england', u'player', u'greedi', u'beckham']
[u'worsley', u'alumina', u'decis']
[u'execution', u'hop', u'call', u'nguyen']
[u'execution', u'prepar', u'hang', u'nguyen']
[u'expert', u'seek', u'stop', u'diminish', u'tree', u'kangaroo']
[u'fall', u'tree', u'crush', u'kalorama', u'hous']
[u'famili', u'name', u'releas', u'horrif', u'crash']
[u'farmer', u'welcom', u'sensat', u'rain']
[u'west', u'record', u'drop', u'violent', u'crime']
[u'fatigu', u'issu', u'fatal', u'crash']
[u'fight', u'continu', u'milk', u'price', u'negoti']
[u'scare', u'prompt', u'shop', u'centr', u'evacu']
[u'fisheri', u'minist', u'reject', u'katter', u'fish']
[u'footi', u'leagu', u'season']
[u'forc', u'secur', u'staniforth', u'servic']
[u'condemn', u'nguyen', u'execut']
[u'charg', u'attempt', u'home', u'invas']
[u'jubil', u'australian', u'speak', u'grandstand']
[u'fremantl', u'firm', u'take', u'north', u'west', u'ship']
[u'french', u'consid', u'extra', u'game', u'wallabi']
[u'fresh', u'advic', u'save', u'nguyen', u'consid', u'ruddock']
[u'fresh', u'storm', u'appl', u'grower', u'worri']
[u'fuel', u'cost', u'prompt', u'region', u'busi', u'concern']
[u'game', u'maker', u'parent', u'control', u'content']
[u'glasson', u'head', u'newli', u'form', u'cancer', u'australia']
[u'lite', u'scientist', u'har', u'plant', u'defenc', u'mechan']
[u'govt', u'ask', u'gungahlin', u'drive', u'explain']
[u'govt', u'exploit', u'terror', u'fear', u'fraser', u'say']
[u'govt', u'get', u'expans', u'plan', u'recommend']
[u'govt', u'reject', u'busi', u'report', u'claim']
[u'govt', u'stand', u'sedit', u'claus']
[u'govt', u'intersect', u'safeti', u'advic']
[u'green', u'firm', u'parti', u'structur']
[u'group', u'fear', u'anim', u'caravan', u'park', u'tree']
[u'gympi', u'accus', u'coalit', u'vicious', u'campaign']
[u'hackett', u'jone', u'world']
[u'hardi', u'agreement', u'asbesto', u'compens']
[u'heart', u'patient', u'hospit', u'visit']
[u'hepburn', u'councillor', u'death', u'shock', u'council']
[u'hockeyroo', u'unbeaten', u'champion', u'trophi']
[u'hospit', u'care', u'scrutini', u'teen', u'die']
[u'hospit', u'patient', u'continu', u'test', u'cross']
[u'hospit', u'danger', u'travel']
[u'hotter', u'temperatur', u'forecast', u'mackay']
[u'hous', u'figur', u'mix', u'south', u'east']
[u'hous', u'retail', u'drag', u'market']
[u'hunter', u'record', u'fewer', u'break', u'enter']
[u'didnt', u'kill', u'falconio', u'murdoch', u'testifi']
[u'iemma', u'highlight', u'fall', u'kiama', u'crime', u'rate']
[u'independ', u'question', u'mitsubishi', u'viabil']
[u'indigen', u'life', u'expect', u'continu']
[u'indonesian', u'presid', u'remov', u'expert']
[u'iron', u'plan', u'appeal', u'hear']
[u'italian', u'footbal', u'unit', u'racism']
[u'jam', u'hardi', u'compo', u'deal', u'reach']
[u'expert', u'question', u'expuls', u'indonesia']
[u'jone', u'keen', u'wallabi']
[u'joyc', u'examin', u'union', u'payrol', u'fear']
[u'polit', u'abort', u'debat']
[u'larger', u'feder', u'court', u'role']
[u'launceston', u'forum', u'focus', u'health', u'research']
[u'legal', u'profess', u'challeng', u'address', u'women', u'need']
[u'lennon', u'consid', u'terror', u'law', u'delay']
[u'lesli', u'judg', u'investig']
[u'nguyen', u'australia', u'ask']
[u'life', u'jacket', u'compulsori', u'boat', u'user']
[u'local', u'staff', u'join', u'bird', u'exercis']
[u'lower', u'hous', u'approv', u'anti', u'terror']
[u'face', u'wyee', u'murder', u'charg', u'get', u'bail']
[u'mayor', u'play', u'pool', u'shade', u'concern']
[u'meet', u'focus', u'crown', u'land', u'manag']
[u'minist', u'promis', u'plan', u'consult']
[u'mitsubish', u'attack', u'damag', u'sale', u'claim']
[u'unhappi', u'women', u'elect', u'land', u'council']
[u'monkey', u'accent', u'research']
[u'cadet', u'ambul', u'skill', u'train']
[u'young', u'women', u'drug', u'drug']
[u'mother', u'say', u'compens', u'injur', u'cyclist']
[u'mottram', u'track', u'comm', u'game']
[u'happi', u'public', u'fuel', u'price', u'probe', u'input']
[u'urg', u'burn', u'clarif']
[u'urg', u'help', u'hail', u'affect', u'farmer']
[u'murdoch', u'press', u'falconio', u'disappear']
[u'murdoch', u'take', u'stand']
[u'murray', u'darl', u'predict', u'loss', u'feder']
[u'nation', u'maintain', u'western', u'chopper', u'push']
[u'deni', u'stifl', u'pierc', u'creek', u'debat']
[u'job', u'go', u'graduat', u'studi']
[u'swim', u'safeti', u'altern', u'expect', u'benefit']
[u'water', u'park', u'plan', u'coomera']
[u'nguyen', u'accept', u'fate']
[u'nguyen', u'respect', u'pay', u'privat', u'beatti']
[u'delay', u'gunghalin', u'drive', u'project', u'hargreav']
[u'need', u'delay', u'customari', u'carney']
[u'north', u'coast', u'sugar', u'industri', u'benefit']
[u'nrma', u'deni', u'quot', u'risk', u'live']
[u'nrma', u'repair', u'jeopardis', u'man', u'life']
[u'govt', u'keep', u'pressur', u'hardi']
[u'resid', u'lead', u'solar', u'energi']
[u'pakistan', u'bowl', u'review']
[u'pakistan', u'strike', u'england']
[u'pcyc', u'benefit', u'cloncurri', u'youth']
[u'penni', u'quit', u'injuri', u'battl']
[u'pike', u'pressur', u'deliv', u'rochest', u'hospit']
[u'pilgrim', u'kill', u'iraq', u'attack']
[u'support', u'abort', u'pill', u'conscienc', u'vote']
[u'pneumonia', u'hit', u'pakistan', u'quak', u'survivor']
[u'pont', u'call', u'umpir', u'instead']
[u'premier', u'urg', u'resolv', u'disput']
[u'probe', u'troubl', u'landmark', u'asteroid', u'mission']
[u'project', u'offic', u'help', u'resettl', u'irrkerlanty']
[u'propos', u'investig', u'combin', u'road', u'rail']
[u'racq', u'back', u'drug', u'driver', u'test']
[u'board', u'appointe', u'clear', u'disput', u'costello']
[u'board', u'appoint', u'question']
[u'board', u'appoint']
[u'redback', u'claim', u'second', u'straight']
[u'reef', u'pest', u'prove', u'problemat', u'dive', u'firm']
[u'remot', u'fire', u'control']
[u'report', u'recommend', u'tackl', u'feral', u'pest', u'issu']
[u'retail', u'back', u'park', u'plan']
[u'ring', u'road', u'plan', u'spark', u'mix', u'reaction']
[u'ruddock', u'stand', u'firm', u'sedit', u'provis']
[u'russia', u'move', u'secur', u'water', u'suppli', u'toxic']
[u'ryan', u'maintain', u'highway', u'overtak']
[u'scholarship', u'recognis', u'student', u'hard', u'work']
[u'school', u'student', u'gather', u'mount']
[u'senat', u'committe', u'back', u'nuclear', u'wast', u'dump']
[u'shark', u'fish', u'scrutini']
[u'slater', u'stake', u'case', u'clark']
[u'slimi', u'food', u'biggest', u'turn', u'studi']
[u'smith', u'doubt', u'australian', u'tour']
[u'spain', u'sign', u'arm', u'deal', u'venezuela', u'despit']
[u'springborg', u'urg', u'probe', u'disput']
[u'state', u'urg', u'step', u'feral', u'anim', u'control']
[u'statist', u'highlight', u'fewer', u'local', u'assault']
[u'stem', u'cell', u'abl', u'repair', u'damag', u'heart', u'muscl']
[u'georg', u'bank', u'custom', u'urg', u'check', u'account']
[u'strong', u'christma', u'sale', u'predict', u'break', u'hill']
[u'survey', u'reveal', u'busi', u'optim']
[u'suspend', u'secretari']
[u'tasmanian', u'advoc', u'fear', u'aid', u'patient', u'increas']
[u'tasmanian', u'institut', u'seek', u'support', u'affili']
[u'tiger', u'hope', u'victori']
[u'union', u'fight', u'focus', u'famili']
[u'lawmak', u'resign', u'bribe', u'admiss']
[u'pharmaceut', u'giant', u'job']
[u'slam', u'burma', u'extend', u'kyi', u'detent']
[u'vatican', u'stand', u'firm', u'priesthood']
[u'victorian', u'liber', u'expel', u'olexand']
[u'victoria', u'squar', u'shoot', u'charg', u'drop']
[u'victori', u'formal', u'say', u'warn']
[u'howard', u'christma', u'agenda']
[u'warn', u'clear', u'dissent']
[u'warn', u'deni', u'aussi', u'appeal']
[u'wattl', u'eucalypt', u'promis', u'salin', u'trial']
[u'welsh', u'rugbi', u'union', u'victori', u'bittersweet']
[u'welsh', u'rugbi', u'union', u'victori', u'bittersweet', u'cockbain']
[u'western', u'divis', u'continu', u'drought']
[u'white', u'hous', u'lawyer', u'saddam']
[u'widespread', u'sell', u'forc', u'market', u'lower']
[u'wild', u'storm', u'lash', u'south', u'east']
[u'wimmera', u'manufactur', u'rais', u'profil']
[u'wine', u'compani', u'grower', u'simmer']
[u'woolsh', u'street', u'work', u'near', u'complet']
[u'dead', u'injur', u'bangladesh', u'suicid', u'bomb']
[u'accus', u'deni', u'wrap', u'falconio', u'head', u'jacket']
[u'accus', u'plod', u'broom', u'falconio']
[u'hospit', u'wait', u'list', u'show', u'small', u'rise']
[u'allenbi', u'bother', u'hand', u'injuri']
[u'specul', u'western', u'seat', u'loss']
[u'amnesti', u'deni', u'glorifi', u'nguyen']
[u'analysi', u'begin', u'whale', u'migrat', u'survey']
[u'analyst', u'hop', u'gold', u'hike', u'boost', u'explor']
[u'anti', u'terror', u'law', u'withdraw', u'fail']
[u'archbishop', u'air', u'worri']
[u'asbesto', u'compo', u'celebr', u'hold', u'document']
[u'drop', u'despit', u'strong', u'start']
[u'aust', u'contribut', u'help', u'fund', u'million']
[u'australia', u'maintain', u'credit', u'rat']
[u'australian', u'arrest', u'mauritius', u'stay', u'jail']
[u'author', u'investig', u'port', u'phillip', u'prison', u'death']
[u'award', u'honour', u'braveri']
[u'flystrik', u'season', u'ahead', u'warn', u'rspca']
[u'benitez', u'hop', u'world', u'spur', u'harri']
[u'beslan', u'report', u'criticis', u'rescu', u'oper']
[u'deliv', u'high', u'school', u'comput', u'scholarship']
[u'cheer']
[u'die', u'caravan', u'blaze']
[u'brack', u'predict', u'littl', u'chang', u'ballarat']
[u'bush', u'fli', u'descend', u'adelaid']
[u'busi', u'growth', u'offset', u'soft', u'hous', u'demand']
[u'sunset', u'claus', u'asio', u'detent', u'power']
[u'canadian', u'announc', u'elect', u'date']
[u'canberra', u'dancer', u'win', u'award']
[u'candlelight', u'vigil', u'mark', u'protest', u'nguyen']
[u'carbon', u'trade', u'see', u'earner', u'farmer']
[u'member', u'evid', u'bushfir']
[u'cheat', u'sheet', u'leak', u'rais', u'budget', u'concern']
[u'citrus', u'packer', u'seek', u'govt', u'help', u'cover', u'fail']
[u'citrus', u'tree', u'destruct', u'near']
[u'probe', u'tell', u'rat', u'discount', u'shouldnt']
[u'coalit', u'meet', u'counter', u'terror', u'law']
[u'coalit', u'approv', u'chang', u'trio', u'bill']
[u'commission', u'hand', u'hospit', u'report']
[u'communic', u'unit', u'call', u'shot', u'labor']
[u'contract', u'spark', u'summer', u'health', u'woe']
[u'corrupt', u'mismanag', u'ruin', u'nauru', u'presid']
[u'costello', u'stand', u'appoint', u'gerard']
[u'costello', u'stand', u'firm', u'appoint']
[u'costner', u'sue', u'alleg', u'breach', u'movi', u'contract']
[u'council', u'boost', u'indigen', u'reconcili', u'effort']
[u'councillor', u'death', u'spark', u'elect']
[u'council', u'pave', u'visitor', u'centr']
[u'council', u'seek', u'work', u'newcastl', u'west', u'build']
[u'council', u'warn', u'road', u'fatal', u'prosecut']
[u'countrylink', u'staff', u'face', u'uncertain', u'futur']
[u'decis', u'dairi', u'futur']
[u'demand', u'soar', u'organ', u'chicken', u'meat']
[u'doctor', u'leav', u'condobolin', u'hunter', u'post']
[u'dokic', u'canberra', u'return']
[u'doncast', u'stun', u'villa', u'reach', u'leagu', u'quarter']
[u'dozen', u'kill', u'train', u'accid', u'congo']
[u'drought', u'extend', u'farmer']
[u'email', u'critic', u'bushfir', u'action', u'say']
[u'timor', u'say', u'wont', u'seek', u'compo', u'indonesian']
[u'servicemen', u'commemor', u'recruit', u'march']
[u'falconio', u'accus', u'address', u'evid']
[u'famili', u'senat', u'vote', u'chang']
[u'farm', u'group', u'highlight', u'drought', u'shortcom']
[u'fiji', u'reject', u'coup', u'prosper', u'say', u'ambassador']
[u'fish', u'group', u'support', u'coastguard', u'plan']
[u'fmit', u'fear', u'conflict', u'plan', u'chang']
[u'health', u'minist', u'patel']
[u'nation', u'park', u'offic', u'clear', u'thredbo']
[u'neighbour', u'actor', u'win', u'compens']
[u'fund', u'inject', u'health']
[u'crop', u'failur', u'warn', u'say', u'advis']
[u'govt', u'announc', u'indigen', u'hous', u'upgrad']
[u'govt', u'announc', u'share', u'respons']
[u'govt', u'ask', u'help', u'subsidis', u'life', u'jacket', u'cost']
[u'govt', u'breach', u'detent', u'agreement']
[u'govt', u'nguyen', u'fraser']
[u'govt', u'offer', u'opal', u'prospect', u'assur']
[u'govt', u'process', u'criticis', u'dump', u'decis']
[u'gower', u'back', u'kangaroo', u'coach', u'bennett']
[u'gower', u'defend', u'kangaroo', u'coach', u'bennett']
[u'green', u'group', u'urg', u'self', u'sustain', u'water', u'park']
[u'grinham', u'make', u'strong', u'start', u'hong', u'kong']
[u'group', u'establish', u'afford', u'hous', u'strategi']
[u'guilti', u'verdict', u'swansea', u'murder', u'trial']
[u'gunmen', u'kill', u'iraq', u'minibus', u'attack']
[u'gunn', u'govt', u'reject', u'truck', u'overload', u'claim']
[u'hardi', u'deal', u'hang', u'compo', u'break']
[u'hensbi', u'put', u'norman', u'controversi']
[u'hingi', u'offer', u'open', u'wildcard']
[u'hingi', u'comeback']
[u'homeless', u'rise']
[u'hospit', u'begin', u'screen', u'discoveri']
[u'hospit', u'escap', u'doctor', u'exodus', u'minist']
[u'iemma', u'announc', u'marin', u'park']
[u'immigr', u'look', u'deport', u'man', u'case']
[u'increas', u'video', u'surveil', u'like', u'french']
[u'indigen', u'maintain', u'customari', u'status']
[u'indigen', u'urg', u'reject', u'learn', u'centr']
[u'indonesian', u'death', u'prompt', u'bird', u'readi', u'fear']
[u'indonesia', u'presid', u'overturn', u'terror', u'expert']
[u'injur', u'smith', u'tour', u'australia']
[u'inquiri', u'call', u'dump', u'nation', u'sport', u'wrap']
[u'interst', u'migrat', u'popul', u'growth']
[u'interst', u'schooli', u'arriv', u'gold', u'coast']
[u'worker', u'sale', u'brief']
[u'jobless', u'rate', u'continu', u'declin']
[u'joyc', u'confid', u'concern', u'address']
[u'joyc', u'warn', u'cross', u'floor']
[u'judg', u'speak', u'nguyen', u'execut']
[u'kidnap', u'activist', u'show', u'jazeera', u'broadcast']
[u'label', u'campaign', u'fail', u'group']
[u'labor', u'maintain', u'pressur', u'appoint']
[u'lara', u'eye', u'bradman', u'record']
[u'shack', u'debat']
[u'societi', u'criticis', u'anti', u'terror']
[u'nguyen', u'lawyer']
[u'liber', u'blast', u'welfar', u'work', u'law']
[u'liber', u'stir', u'blame', u'prison', u'delay']
[u'liber', u'issu', u'fraser', u'statement']
[u'littl', u'chanc', u'repriev', u'nguyen', u'lawyer']
[u'rank', u'offic', u'blame', u'defenc', u'bulli']
[u'maloney', u'quit', u'vlga', u'chief']
[u'acquit', u'wife', u'murder', u'retrial']
[u'face', u'court', u'accus', u'child', u'assault']
[u'face', u'court', u'highway', u'incid']
[u'mcgradi', u'unveil', u'tsunami', u'memori']
[u'meatwork', u'end', u'worker', u'accept', u'deal']
[u'meet', u'focus', u'stawel', u'polic', u'shortag']
[u'melbourn', u'council', u'defend', u'park', u'rise']
[u'north', u'coast', u'marin', u'park']
[u'miner', u'make', u'sharehold', u'offer']
[u'minist', u'back', u'cape', u'york', u'communiti', u'bank']
[u'minist', u'outlin', u'coast', u'road', u'fund']
[u'minist', u'reject', u'apprentic', u'poach', u'levi']
[u'mislead', u'minist', u'deserv', u'sack', u'patel']
[u'civic', u'centr', u'fund', u'wont', u'affect', u'council']
[u'boost', u'fund', u'close', u'school']
[u'music', u'teacher', u'reach', u'high', u'note', u'award']
[u'chang', u'ultim', u'council', u'decis']
[u'nation', u'fund', u'moot', u'tackl', u'pest', u'anim']
[u'law', u'target', u'fine', u'default']
[u'mayor', u'ponder', u'fund']
[u'studio', u'expect', u'boost', u'product']
[u'chang', u'defenc', u'bulli', u'cultur', u'labor']
[u'death', u'repriev', u'nguyen', u'singapor', u'say']
[u'loung', u'ninth', u'time']
[u'govt', u'accus', u'secret', u'snowi', u'scheme', u'sale', u'plan']
[u'green', u'support', u'environ', u'packag']
[u'spend', u'environ']
[u'oceania', u'alter', u'format', u'world', u'qualifi']
[u'map', u'emerg', u'crew', u'send', u'wrong', u'suburb']
[u'dayer', u'upset', u'aussi', u'rhythm', u'pont']
[u'opposit', u'target', u'costello', u'appoint']
[u'origin', u'shadow', u'drummer', u'die']
[u'outdat', u'map', u'place', u'live', u'risk', u'opposit']
[u'packer', u'consult', u'onetel', u'move']
[u'pair', u'charg', u'shoot', u'kidnap']
[u'pakistan', u'inning', u'rescu', u'poor', u'start']
[u'pakistan', u'england', u'solid', u'start']
[u'park', u'victoria', u'investig', u'starv', u'koala']
[u'parliament', u'hear', u'liquor', u'licens', u'polici', u'chang']
[u'parliament', u'weigh', u'child', u'labour', u'law']
[u'parmalat', u'boost', u'payment', u'dairi', u'produc']
[u'pension', u'report', u'recommend', u'briton', u'work', u'longer']
[u'polic', u'question', u'employe', u'massiv', u'bank', u'raid']
[u'polic', u'work', u'year', u'secur', u'plan']
[u'pont', u'back', u'dizzi', u'test', u'return']
[u'priest', u'call', u'death', u'penalti', u'worldwid']
[u'prison', u'guard', u'walk', u'free', u'hospit', u'shoot']
[u'prison', u'worker', u'recognis', u'post', u'sieg', u'effort']
[u'privaci', u'offic', u'pull', u'field', u'day']
[u'profit', u'slight', u'renmark', u'club']
[u'public', u'urg', u'prepar', u'bushfir', u'season']
[u'ranger', u'slam', u'door', u'portsmouth', u'mcleish']
[u'rat', u'payback', u'worri', u'council']
[u'region', u'etsa', u'custom', u'urg', u'report', u'power', u'woe']
[u'report', u'highlight', u'fall', u'crime', u'rate']
[u'report', u'recommend', u'patel', u'manslaught', u'charg']
[u'report', u'show', u'women', u'work', u'forc']
[u'research', u'cast', u'doubt', u'water', u'save', u'weed']
[u'resid', u'lobbi', u'road', u'seal']
[u'resid', u'push', u'intersect', u'upgrad']
[u'retail', u'figur', u'patchi', u'recoveri']
[u'rigg', u'rule', u'vendi', u'mayor', u'challeng']
[u'road', u'fund', u'littl', u'late', u'mayor']
[u'robert', u'offic', u'reject', u'unfair', u'dismiss', u'claim']
[u'roma', u'feel', u'skill', u'shortag']
[u'rural', u'doctor', u'present', u'support', u'plan']
[u'introduc', u'tougher', u'aggrav', u'drive', u'penalti']
[u'uni', u'criticis', u'govt', u'unfair', u'rank']
[u'scullion', u'vote', u'nuclear', u'wast', u'dump']
[u'shire', u'join', u'push', u'reduc', u'child', u'obes']
[u'simplot', u'worker', u'face', u'redund']
[u'socceroo', u'turf', u'preserv', u'display']
[u'kyoto', u'agreement', u'unlik', u'convent']
[u'specul', u'minist', u'barl', u'beach']
[u'strong', u'sale', u'shift', u'apricot', u'backlog']
[u'student', u'kick', u'goal', u'footi', u'academi', u'select']
[u'studi', u'find', u'jellyfish', u'river', u'system']
[u'studi', u'find', u'small', u'gender', u'differ', u'academ']
[u'sunflow', u'hous', u'ask', u'fund', u'submiss']
[u'east', u'coast', u'log', u'ahead']
[u'stop', u'corpor', u'defam', u'suit']
[u'teacher', u'know', u'student', u'wrong']
[u'telstra', u'offer', u'farmer', u'phone', u'assur']
[u'test', u'confirm', u'plant', u'opium', u'poppi']
[u'thompson', u'track', u'game', u'return']
[u'thousand', u'tip', u'watch', u'barbara', u'mine', u'parad']
[u'tiger', u'deliv', u'warrior', u'fourth', u'straight', u'defeat']
[u'time', u'limit', u'urg', u'question', u'time', u'answer']
[u'toll', u'moot', u'speed', u'highway', u'upgrad']
[u'torr', u'strait', u'cultur', u'featur', u'nation', u'museum']
[u'tourism', u'project', u'plan', u'move', u'ahead']
[u'court', u'jazeera', u'bomb', u'leak']
[u'consid', u'nuclear', u'power', u'station']
[u'union', u'consid', u'airlin', u'action', u'nguyen']
[u'boost', u'gambier', u'presenc']
[u'union', u'face', u'offic', u'lockout']
[u'upgrad', u'plan', u'intersect', u'black', u'spot']
[u'market', u'recov', u'grind']
[u'util', u'complaint', u'jump', u'percent']
[u'virginia', u'governor', u'stop', u'mileston', u'execut']
[u'wad', u'bird', u'interfer', u'plant']
[u'farmer', u'lead', u'stat']
[u'pass', u'counter', u'terror', u'law']
[u'cane', u'toad', u'hunter', u'cross', u'border', u'train']
[u'wasim', u'criticis', u'chuck', u'law']
[u'weather', u'help', u'lift', u'winter', u'crop']
[u'welfar', u'report', u'highlight', u'famili', u'children', u'need']
[u'white', u'clear', u'dissent']
[u'wildcat', u'roger', u'add', u'boomer', u'squad']
[u'wine', u'compani', u'highlight', u'sell', u'benefit']
[u'winter', u'crop', u'boost', u'predict']
[u'wollongong', u'volunt', u'help', u'tsunami', u'homeless']
[u'woman', u'accus', u'sword', u'wield', u'phone', u'theft']
[u'woman', u'hurt', u'crash']
[u'scoop', u'walkley', u'award']
[u'activist', u'group', u'blame', u'occup', u'iraq']
[u'offer', u'evan', u'tate', u'sharehold', u'littl']
[u'aid', u'expert', u'report', u'progress', u'vaccin']
[u'foreshadow', u'program', u'cut']
[u'allenbi', u'shoot', u'pace']
[u'evid', u'tender', u'falconio', u'case']
[u'seek', u'effort', u'combat', u'defenc', u'forc', u'abus']
[u'urg', u'commonwealth', u'region', u'invest']
[u'antisoci', u'behaviour', u'law', u'legal', u'challeng']
[u'anti', u'terror', u'law', u'debat', u'legisl']
[u'australian', u'famili', u'year', u'honour', u'sale', u'clan']
[u'australia', u'wari', u'tormentor', u'bond']
[u'bennett', u'avoid', u'scrutini', u'kangaroo', u'arriv', u'home']
[u'bennett', u'escap', u'censur', u'media', u'dodg']
[u'best', u'receiv', u'royal', u'send']
[u'search', u'plan', u'miss', u'teen']
[u'bird', u'exercis', u'expos', u'prepar', u'flaw']
[u'birney', u'explain', u'share', u'disclosur', u'parliament']
[u'blade', u'allow', u'pompey', u'speak', u'warnock']
[u'blaze', u'rip', u'tumbarumba', u'shop']
[u'brindal', u'accus', u'lover', u'carer']
[u'break', u'hill', u'count', u'newspap']
[u'busi', u'chamber', u'want', u'violent', u'crime', u'crackdown']
[u'canberra', u'sombr', u'mood', u'prior', u'nguyen', u'execut']
[u'case', u'drop', u'milan', u'doctor']
[u'chang', u'approv', u'counter', u'terror', u'bill']
[u'channel', u'seven', u'drop', u'case']
[u'childcar', u'benefit', u'increas', u'worker']
[u'clean', u'storm']
[u'committe', u'probe', u'birney', u'share', u'disclosur']
[u'communiti', u'group', u'happi', u'road', u'regul']
[u'coonan', u'urg', u'telstra', u'rule']
[u'costello', u'escap', u'censur', u'gerard']
[u'councillor', u'report', u'seek', u'expens']
[u'council', u'maintain', u'weekend', u'park', u'polici']
[u'council', u'put', u'brake', u'skateboard']
[u'council', u'releas', u'subdivis', u'block']
[u'council', u'donat', u'flood', u'appeal']
[u'council', u'seek', u'cost', u'water', u'suppli', u'plan']
[u'council', u'govt', u'know', u'dive', u'concern']
[u'council', u'turn', u'attent', u'anthoni', u'cut']
[u'extend', u'fever', u'vaccin', u'suppli']
[u'depart', u'govt', u'advis', u'abandon']
[u'develop', u'seek', u'subdivis', u'north', u'orang']
[u'doctor', u'group', u'hop', u'better', u'specialist']
[u'domest', u'violenc', u'prevent', u'group', u'highlight']
[u'dope', u'victim', u'lagat', u'appeal', u'lose', u'earn']
[u'refus', u'seek', u'nguyen', u'extradit']
[u'wont', u'appeal', u'murder', u'acquitt']
[u'ban', u'corpor', u'manag']
[u'elder', u'appeal', u'court', u'nativ', u'titl']
[u'empir', u'rubber', u'sale', u'job']
[u'england', u'face', u'test', u'seri', u'defeat', u'say', u'fletcher']
[u'europ', u'warm', u'current', u'weaken', u'scientist']
[u'extradit', u'offer', u'nguyen', u'chanc']
[u'farmer', u'tell', u'bushfir', u'communic', u'problem']
[u'firefight', u'hope', u'educ', u'indigen', u'communiti']
[u'firefight', u'tackl', u'rail', u'blaze']
[u'forest', u'allianc', u'applaud', u'wilder']
[u'teacher', u'guilti', u'charg']
[u'fourth', u'face', u'bali', u'bomb', u'charg']
[u'fourth', u'race', u'code', u'pipelin']
[u'fund', u'help', u'celebr', u'cultur', u'divers']
[u'fund', u'help', u'farmer', u'land', u'clear', u'law']
[u'ganguli', u'riddl', u'puzzl', u'india', u'ahead', u'lanka']
[u'gold', u'coast', u'group', u'highlight', u'health', u'report', u'fail']
[u'govt', u'confus', u'prioriti', u'say', u'opposit']
[u'govt', u'cost', u'review', u'delay', u'budget']
[u'govt', u'reaffirm', u'hospit', u'commit']
[u'govt', u'reject', u'freight', u'rail', u'claim']
[u'grain', u'grower', u'blame', u'abb', u'singl', u'desk', u'price']
[u'green', u'tunnel', u'boycott']
[u'green', u'take', u'earli', u'lead']
[u'gregori', u'peck', u'star', u'steal']
[u'grow', u'concern', u'tortur', u'flight']
[u'haas', u'beat', u'africa', u'trade', u'opportun']
[u'hail', u'heavi', u'rain', u'lash', u'northern']
[u'hammer', u'keen']
[u'hardi', u'sign', u'compens', u'deal']
[u'manag', u'back', u'school', u'plan']
[u'hindmarsh', u'mayor', u'make', u'term']
[u'hingi', u'comeback', u'eager', u'anticip']
[u'hingi']
[u'hockeyroo', u'extend', u'unbeaten', u'streak']
[u'hop', u'marin', u'park', u'plan', u'limit', u'aquacultur']
[u'hundr', u'light', u'candl', u'nguyen']
[u'hunter', u'record', u'averag', u'rain']
[u'plan', u'umpir', u'elit', u'panel']
[u'indigen', u'women', u'suscept', u'cervic']
[u'indonesian', u'militari', u'command', u'offer', u'resign']
[u'injuri', u'agoni', u'get', u'owen']
[u'institut', u'forecast', u'chang', u'sunshin', u'coast']
[u'chief', u'hit', u'mercenari', u'athlet']
[u'warn', u'turin', u'brush', u'winter', u'game']
[u'iraqi', u'rebel', u'launch', u'assault', u'ramadi']
[u'debat', u'gag']
[u'jaeger', u'coach', u'lynch', u'show', u'door']
[u'jam', u'hardi', u'hop', u'deal', u'offer', u'comfort']
[u'jam', u'hardi', u'sign', u'compens', u'deal']
[u'joyc', u'taunt', u'save', u'christma', u'claim']
[u'kidman', u'trail', u'robert', u'hollywood', u'earn', u'contest']
[u'kyoto', u'protocol', u'kick']
[u'lacklustr', u'manufactur', u'figur', u'spread', u'christma']
[u'lara', u'like', u'australian', u'swansong']
[u'lara', u'australian', u'swansong']
[u'lawyer', u'refus', u'permiss', u'wit', u'hang']
[u'lennon', u'storm', u'parliament']
[u'life', u'jacket', u'law', u'predict', u'caus', u'border']
[u'lihir', u'share', u'price', u'drop', u'tinto', u'sell']
[u'local', u'brief', u'debat', u'unfair', u'dismiss', u'law']
[u'longest', u'serv', u'magistr', u'retir']
[u'lucki', u'rescu', u'wombat', u'burrow']
[u'accus', u'order', u'teen', u'fund']
[u'arrest', u'attack', u'teen']
[u'front', u'court', u'coral', u'drug', u'haul']
[u'jail', u'spread']
[u'media', u'concern', u'despit', u'anti', u'terror', u'chang']
[u'guilti', u'murder', u'time', u'drug', u'dealer']
[u'miner', u'pleas', u'pilbara', u'gold']
[u'minist', u'apologis', u'timber', u'bungl']
[u'minist', u'hit', u'health', u'inquiri', u'find']
[u'minist', u'warn', u'locust', u'plagu', u'spread']
[u'mother', u'accus', u'tri', u'smother', u'daughter']
[u'maintain', u'highway', u'plan', u'opposit']
[u'question', u'marin', u'park', u'plan']
[u'urg', u'south', u'east', u'polic']
[u'nativ', u'titl', u'claim', u'lodg', u'north', u'west', u'queensland']
[u'navi', u'respons', u'whale', u'death']
[u'emerg', u'depart', u'run']
[u'evict', u'rule', u'roll', u'anti', u'social']
[u'law', u'communiti', u'safer', u'henderson']
[u'pilotless', u'aircraft', u'research', u'centr', u'open']
[u'south', u'east', u'mayor', u'announc']
[u'nguyen', u'execut', u'certain']
[u'nguyen', u'lawyer', u'push', u'minut', u'plea']
[u'nguyen', u'permit', u'hold', u'hand', u'mother']
[u'nguyen', u'permit', u'hold', u'mother', u'hand']
[u'extra', u'dental', u'fund', u'anti', u'fluorid']
[u'proof', u'cane', u'toad', u'impact', u'expert']
[u'runner', u'stair', u'crazi']
[u'nude', u'beach', u'plan', u'away', u'communiti', u'object']
[u'kill', u'bangladesh', u'bomb']
[u'pakistan', u'chief', u'call', u'fewer', u'match']
[u'percept', u'inform', u'teen', u'bing', u'drink']
[u'petit', u'call', u'life', u'jacket', u'law', u'rethink']
[u'petrol', u'station', u'fin', u'price', u'fix']
[u'face', u'aid', u'epidem', u'downer']
[u'polic', u'track', u'charg', u'patel']
[u'polic', u'probe', u'alburi', u'vandal', u'spree']
[u'polic', u'probe', u'sydney', u'shop', u'centr', u'blaze']
[u'polic', u'focus', u'underag', u'drinker']
[u'politician', u'unit', u'push', u'republ']
[u'poll', u'find', u'support', u'highway', u'toll']
[u'primus', u'move', u'port', u'coach', u'role']
[u'public', u'urg', u'rais', u'portland', u'hospit', u'concern']
[u'quarantin', u'agenc', u'approv', u'appl', u'import']
[u'rail', u'invest', u'hundr', u'truck']
[u'rain', u'forc', u'suspens']
[u'rain', u'caus', u'long', u'noosa', u'road', u'closur']
[u'reef', u'health', u'check', u'get', u'pass', u'mark']
[u'region', u'implic', u'compo', u'packag', u'unclear']
[u'report', u'highlight', u'templ', u'plan', u'econom', u'boost']
[u'rescu', u'group', u'offer', u'dead', u'mutton', u'bird', u'assur']
[u'research', u'shed', u'light', u'turtl', u'breed', u'problem']
[u'resid', u'stamp', u'approv', u'cunnamulla']
[u'resid', u'voic', u'drag', u'concern']
[u'resourc', u'bank', u'push', u'share', u'market', u'lower']
[u'buy', u'dubbo', u'link']
[u'rich', u'secur', u'second', u'mayor', u'term']
[u'riverland', u'saff', u'wine', u'grape', u'meet']
[u'riverland', u'live', u'fossil']
[u'roar', u'slump', u'home', u'draw']
[u'rockhampton', u'fail', u'mention', u'health', u'report']
[u'rural', u'famili', u'lose', u'law', u'say']
[u'approv', u'dust', u'diseas', u'compo', u'law']
[u'scientist', u'question', u'ancient', u'footprint']
[u'scooter', u'user', u'warn', u'rid', u'requir']
[u'sedit', u'chang', u'protect', u'free', u'speech', u'ruddock']
[u'senat', u'pass', u'law', u'tomorrow']
[u'senat', u'frustrat', u'trauma', u'centr', u'delay']
[u'sexsomnia', u'suffer', u'clear', u'rape']
[u'solskjaer', u'career', u'near', u'unit', u'offer']
[u'south', u'african', u'court', u'overturn', u'marriag']
[u'south', u'africa', u'struggl', u'grow', u'aid', u'problem']
[u'southbound', u'swansea', u'bridg', u'stay']
[u'stanhop', u'underestim', u'jail', u'opposit', u'say']
[u'state', u'govt', u'announc', u'north', u'road', u'fund']
[u'storm', u'caus', u'flood', u'southern']
[u'storm', u'flood', u'noosa', u'busi']
[u'storm', u'halt']
[u'striker', u'woe', u'stop', u'red']
[u'surgeri', u'end', u'collymor', u'tour']
[u'symond', u'find', u'test', u'arena']
[u'parliament', u'scuttl', u'marriag']
[u'teen', u'warn', u'dont', u'cook', u'look']
[u'telstra', u'attack', u'restrict', u'regul']
[u'test', u'begin', u'basslink', u'project']
[u'test', u'reveal', u'contamin', u'town']
[u'thorp', u'appeal', u'steal', u'watch', u'return']
[u'thousand', u'cyclist', u'saddl', u'bike', u'ride']
[u'timor', u'border', u'disput', u'settl']
[u'toad', u'invas', u'unstopp', u'ecologist']
[u'tourist', u'disqualifi', u'drive', u'smash']
[u'trade', u'deficit', u'blow']
[u'treasur', u'accus', u'hide', u'fund', u'blowout']
[u'truanci', u'trial', u'target', u'indigen', u'student', u'get']
[u'truck', u'driver', u'blame', u'crash']
[u'trucki', u'urg', u'help', u'solv', u'fatal', u'crash', u'caus']
[u'turkish', u'bring', u'trade', u'mission', u'australia']
[u'union', u'help', u'famili', u'bash', u'girl']
[u'union', u'hop', u'stamp', u'duti', u'deal']
[u'union', u'member', u'face', u'lockout', u'rail', u'disput']
[u'union', u'work', u'forc', u'restructur']
[u'union', u'continu', u'simplot', u'kelso', u'talk']
[u'unit', u'tribut', u'best', u'west', u'brom']
[u'launch', u'massiv', u'appeal']
[u'growth', u'figur', u'fail', u'lift', u'market']
[u'player', u'miss', u'avoid', u'say', u'micheel']
[u'senat', u'ask', u'look', u'awb', u'iraq', u'activ']
[u'vcat', u'call', u'amend', u'hotel', u'plan']
[u'villeneuv', u'stay', u'sauber']
[u'word', u'erupt', u'children', u'commission']
[u'warrior', u'regroup', u'tourist']
[u'water', u'plan', u'critic', u'welcom', u'author', u'report']
[u'weather', u'predict', u'produc', u'stone', u'fruit']
[u'welsh', u'inventor', u'mosquito', u'make', u'noisi', u'teen', u'buzz']
[u'wiggl', u'entertain', u'export', u'award']
[u'wineri', u'move', u'smelli', u'problem']
[u'wit', u'deni', u'murdoch', u'match', u'secur', u'imag']
[u'woman', u'receiv', u'groundbreak', u'face', u'transplant']
[u'zimbabw', u'crisi', u'intern', u'matter']
[u'captain', u'taibu', u'head', u'bangladesh']
[u'say', u'smear', u'campaign', u'hurt', u'financ']
[u'accus', u'remand', u'teen', u'petrol', u'attack']
[u'activist', u'blame', u'homophob', u'stall']
[u'adelaid', u'extend', u'lead']
[u'adelaid', u'lack', u'mental', u'tough']
[u'agassi', u'confirm', u'kooyong', u'classic']
[u'alic', u'seek', u'lure', u'alexand', u'great']
[u'demand', u'sick', u'leav', u'chang']
[u'anti', u'wast', u'dump', u'group', u'open', u'offic']
[u'armi', u'roll', u'summernat']
[u'deni', u'dump', u'jone', u'releas']
[u'asst', u'commission', u'acknowledg', u'stawel', u'polic']
[u'auction', u'price', u'reflect', u'state', u'wool', u'market']
[u'australian', u'protest', u'nguyen', u'execut']
[u'author', u'learn', u'bird', u'exercis']
[u'bali', u'reunit', u'court']
[u'beef', u'properti', u'fetch', u'near']
[u'beethoven', u'manuscript', u'sell', u'near']
[u'benefit', u'see', u'specialist', u'status', u'region']
[u'best', u'goodby', u'kick', u'weekend', u'match']
[u'black', u'cap', u'look', u'aggress', u'overcom', u'australia']
[u'black', u'plead', u'guilti', u'fraud']
[u'blade', u'boss', u'turn', u'pompey']
[u'blaze', u'claim', u'southport', u'hous']
[u'bleiberg', u'posit', u'safe', u'ribot']
[u'bond', u'blow', u'kiwi', u'ahead', u'australia', u'clash']
[u'investig', u'refineri', u'leak']
[u'brief', u'aramac', u'storm', u'caus', u'widespread', u'damag']
[u'build', u'bendigo', u'bank', u'revamp']
[u'bundaberg', u'health', u'boss', u'face', u'misconduct', u'charg']
[u'bundaberg', u'hospit', u'act', u'avoid', u'patel', u'repeat']
[u'bushfir', u'inquest', u'hear', u'evid']
[u'cahil', u'hand', u'game']
[u'candl', u'condemn']
[u'caution', u'urg', u'aborigin', u'sale']
[u'celta', u'arsenal', u'develop', u'young', u'player']
[u'chaotic', u'start', u'west', u'asian', u'game']
[u'chappel', u'hadle', u'seri', u'loom', u'side']
[u'childer', u'inquest', u'resum', u'februari']
[u'china', u'environ', u'minist', u'resign', u'toxic']
[u'church', u'servic', u'hold', u'nguyen']
[u'colleg', u'oper', u'reject', u'financ', u'claim']
[u'compet', u'asia', u'urg', u'athlet']
[u'council', u'flood', u'year']
[u'councillor', u'readi', u'contest', u'mayoralti']
[u'council', u'maintain', u'push', u'princ', u'highway', u'work']
[u'council', u'name', u'area', u'polic']
[u'council', u'seek', u'retir', u'develop', u'law', u'exempt']
[u'council', u'tougher', u'park']
[u'council', u'work', u'chang', u'plan']
[u'counter', u'terror', u'law', u'enact']
[u'court', u'continu', u'terror', u'suspect', u'bail']
[u'award', u'intern', u'student', u'intak']
[u'cricket', u'battl', u'whitti', u'noblet', u'trophi']
[u'croc', u'look', u'consist', u'beat', u'king']
[u'deadlin', u'nguyen', u'execut', u'pass']
[u'demonstr', u'stage', u'independ', u'ralli', u'papua']
[u'air', u'water', u'weed', u'fear']
[u'england', u'face', u'tall', u'order', u'save', u'test']
[u'famili', u'mourn', u'nguyen', u'singapor', u'servic']
[u'famili', u'overwhelm', u'support', u'fatal', u'hous']
[u'farm', u'group', u'look', u'long', u'term', u'fever', u'vaccin']
[u'fifa', u'rule', u'electron', u'ball']
[u'offici', u'charg', u'young', u'firebug']
[u'coach', u'jail', u'sexual', u'abus', u'boy']
[u'schoolteach', u'jail', u'abus']
[u'fraser', u'creat', u'conserv', u'concern']
[u'game', u'baton', u'head', u'antarctica']
[u'ganguli', u'comeback', u'delay', u'rain']
[u'gather', u'promot', u'benefit']
[u'coupl', u'recognit']
[u'gerard', u'quit', u'board']
[u'gold', u'price', u'push', u'higher']
[u'slow', u'convoy', u'deliv', u'highway', u'upgrad', u'concern']
[u'govt', u'back', u'cambewarra', u'scenic', u'preserv', u'area']
[u'govt', u'consid', u'hail', u'help', u'farmer']
[u'govt', u'fund', u'boost', u'youth', u'facil']
[u'govt', u'sign', u'newcastl', u'hospit', u'contract']
[u'govt', u'tell', u'council', u'fail']
[u'govt', u'contract']
[u'govt', u'urg', u'boost', u'hospit', u'bed']
[u'green', u'group', u'back', u'south', u'east', u'forest', u'probe']
[u'green', u'urg', u'environment', u'check']
[u'griffith', u'choos', u'broadband', u'servic']
[u'grinham', u'sister', u'world', u'open', u'semi']
[u'group', u'oppos', u'highway', u'tree', u'remov']
[u'group', u'welcom', u'health', u'servic', u'chang']
[u'hadden', u'say', u'constitu', u'determin', u'seat']
[u'harri', u'hand', u'clive', u'saint']
[u'hearn', u'lake', u'region', u'develop', u'control', u'plan']
[u'hera', u'heavi', u'blow', u'cycl', u'indurain']
[u'histori', u'go', u'nation', u'librari']
[u'hodg', u'debut']
[u'hous', u'price', u'continu', u'declin']
[u'howard', u'criticis', u'clinic', u'singaporean', u'respons']
[u'immigr', u'tactic', u'exploit', u'doctor']
[u'canberra', u'politician', u'support', u'hold', u'vigil']
[u'independ', u'oppos', u'snowi', u'scheme', u'sell']
[u'independ', u'panel', u'review', u'govt', u'health', u'report']
[u'indigen', u'land', u'manag', u'plan', u'launch']
[u'law', u'generat', u'mix', u'feel']
[u'jail', u'term', u'strong', u'messag', u'illeg', u'fisher']
[u'jone', u'sack', u'wallabi', u'coach']
[u'joness', u'fate', u'arus', u'hand']
[u'joness', u'fate', u'hand']
[u'kerr', u'sanchez', u'add', u'pompey', u'list']
[u'labor', u'farewel', u'parti', u'stalwart', u'ducker']
[u'labor', u'push', u'costello', u'jam', u'hardi']
[u'land', u'valuat', u'fair', u'say', u'quinlan']
[u'lawyer', u'proud', u'courag', u'nguyen']
[u'lennon', u'promis', u'probe', u'road', u'work', u'contract']
[u'liber', u'refus', u'vote', u'welfar', u'work']
[u'liber', u'nation', u'rule', u'coalit']
[u'lobster', u'catch', u'disappoint']
[u'loddon', u'shire', u'look', u'appoint', u'soon']
[u'long', u'term', u'solut', u'seek', u'school']
[u'love', u'dreamworld', u'tiger']
[u'maclean', u'clean', u'sever', u'storm']
[u'maclean', u'declar', u'disast', u'area']
[u'accus', u'attempt', u'arm', u'robberi', u'refus', u'bail']
[u'charg', u'fatal', u'traffic', u'crash']
[u'charg', u'teen', u'petrol', u'attack']
[u'clear', u'murder', u'seek', u'compo', u'prison']
[u'face', u'court', u'martial', u'art', u'instructor', u'death']
[u'court', u'petrol', u'attack']
[u'maningrida', u'local', u'illeg', u'barra', u'fish']
[u'kill', u'storm', u'whip', u'canberra']
[u'kill', u'egypt', u'elect', u'violenc']
[u'escap', u'prison', u'term', u'robberi']
[u'face', u'court', u'indec', u'deal', u'charg']
[u'marin', u'park', u'plan', u'see', u'cater', u'fisher']
[u'market', u'follow', u'wall', u'higher']
[u'mayor', u'contest', u'vote', u'despit', u'sack']
[u'mcenro', u'comeback']
[u'mcguigan', u'suspend', u'contract', u'grower']
[u'medic', u'treatment', u'delay', u'solon', u'famili', u'reunion']
[u'group', u'back', u'mine', u'chang']
[u'minist', u'talk', u'fli', u'liquor', u'squad', u'effort']
[u'fund', u'seek', u'transit', u'hous']
[u'motorcyclist', u'kill', u'hunter', u'valley', u'collis']
[u'motorcyclist', u'chariti', u'ride']
[u'attack', u'anti', u'truanci', u'scheme']
[u'murder', u'trial', u'hear', u'teen', u'injuri']
[u'nauru', u'make', u'educ', u'prioriti']
[u'nelsen', u'glad', u'socceroo']
[u'nepal', u'rebel', u'extend', u'truce']
[u'make', u'children', u'safer', u'say', u'minist']
[u'nguyen', u'execut', u'lesson', u'australian', u'say']
[u'nguyen', u'hang', u'singapor']
[u'dead', u'german', u'homeless', u'centr']
[u'elect', u'save', u'shire', u'thousand']
[u'nude', u'paint', u'make', u'wave', u'surf', u'club']
[u'appl', u'lift']
[u'issu', u'threat', u'appl', u'import']
[u'olymp', u'champion', u'face', u'jail', u'term']
[u'opposit', u'boycott', u'silenc', u'nguyen']
[u'opposit', u'highlight', u'hospit', u'wait', u'time', u'woe']
[u'oversea', u'adopt', u'reach', u'record', u'level']
[u'pacif', u'nation', u'train', u'driver', u'cancel', u'plan']
[u'pakistan', u'hockey', u'captain', u'ban', u'hit']
[u'parliament', u'pass', u'chang']
[u'parliament', u'pass', u'jam', u'hardi', u'compo']
[u'parri', u'join', u'swift', u'lead']
[u'pedestrian', u'kill', u'highway']
[u'petrol', u'station', u'leak', u'close', u'highway']
[u'deni', u'gerard', u'push']
[u'toss', u'canberra']
[u'polic', u'look', u'person', u'plane', u'crash']
[u'polic', u'offic', u'guilti', u'sexual', u'assault']
[u'potato', u'farmer', u'peel', u'histor', u'farm']
[u'pricey', u'mango', u'pig', u'town']
[u'prime', u'stand', u'cobar', u'broadcast', u'plan']
[u'prison', u'worker', u'effort', u'recognis']
[u'beat', u'sugar', u'price']
[u'resid', u'count', u'cost', u'violent', u'storm']
[u'resid', u'happi', u'rout']
[u'match', u'link', u'dubbo', u'sydney', u'fare']
[u'riverland', u'crash', u'claim', u'life']
[u'robbin', u'support', u'comeback']
[u'roddick', u'wildcard', u'chanc', u'adelaid']
[u'royal', u'card', u'featur', u'camilla', u'time']
[u'asbesto', u'victim', u'see', u'histor']
[u'scientist', u'cook', u'cure', u'flatul']
[u'scientist', u'ventur', u'nullarbor', u'track', u'meteorit']
[u'secur', u'firm', u'fin', u'thousand', u'guard']
[u'senat', u'pass', u'law']
[u'servic', u'spend', u'say', u'welfar', u'group']
[u'simplot', u'worker', u'offer', u'train']
[u'singaporean', u'rule', u'pardon', u'nguyen']
[u'smoker', u'need', u'appli', u'say']
[u'stakehold', u'chanc', u'water']
[u'statement', u'clarifi', u'joness', u'futur']
[u'storm', u'toll', u'alburi', u'wodonga']
[u'student', u'injur', u'roof', u'collaps']
[u'swift', u'keegan', u'lead', u'rain', u'mar']
[u'sydney', u'hobart', u'entrant']
[u'team', u'effort', u'secur', u'award', u'cowboy']
[u'tension', u'rise', u'egyptian', u'poll']
[u'territorian', u'urg', u'report', u'anim', u'cruelti']
[u'test', u'begin', u'basslink', u'power', u'cabl']
[u'timor', u'deal', u'best', u'agre']
[u'tini', u'bug', u'cancel', u'portland', u'hospit', u'surgeri']
[u'tortur', u'rife', u'china', u'investig']
[u'tourist', u'strip', u'mop', u'storm', u'delug']
[u'town', u'camp', u'children', u'ignor', u'irrkerlanty', u'debat']
[u'townsvill', u'chopper', u'help', u'pakistan', u'quak']
[u'train', u'tackl', u'locust', u'threat']
[u'trauma', u'specialist', u'name', u'south', u'australian']
[u'trochus', u'shell', u'poacher', u'creat', u'worri']
[u'turkey', u'expect', u'sanction', u'swiss', u'match']
[u'turnberri', u'choos', u'british', u'open']
[u'plane', u'crash']
[u'campus', u'plan', u'begin']
[u'union', u'keen', u'settl', u'pacif', u'nation', u'disput']
[u'unit', u'arab', u'emir', u'hold', u'elect']
[u'carri', u'execut']
[u'presid', u'summon', u'juri', u'duti']
[u'vet', u'start', u'industri', u'campaign']
[u'vigil', u'await', u'condemn', u'man', u'execut']
[u'wall', u'ralli', u'inflat', u'fear', u'eas']
[u'support', u'hardi', u'compo', u'deal']
[u'watchdog', u'probe', u'mallard', u'evid', u'claim']
[u'waugh', u'admit', u'prestigi', u'laureus', u'academi']
[u'weather', u'bureau', u'predict', u'averag', u'south', u'east', u'summer']
[u'west', u'brom', u'confirm', u'kean', u'talk']
[u'wheat', u'export', u'fall', u'flex', u'muscl']
[u'white', u'hous', u'probe', u'iraq', u'propaganda', u'claim']
[u'wild', u'storm', u'sweep', u'east', u'coast']
[u'wild', u'weather', u'bring', u'good', u'news', u'farmer']
[u'windi', u'lose', u'rain', u'affect', u'tour', u'match']
[u'windsor', u'criticis', u'irrig', u'compo']
[u'workplac', u'law', u'pass', u'senat']
[u'world', u'finalist', u'decid', u'german', u'base']
[u'kill', u'chines', u'explos']
[u'rule', u'affect', u'counter', u'terror', u'law']
[u'adelaid', u'extend', u'lead']
[u'airlin', u'secur', u'restrict', u'stay']
[u'qaeda', u'command', u'kill', u'pakistan']
[u'aramac', u'storm', u'forc', u'stun', u'minist']
[u'author', u'pool', u'resourc', u'combat', u'problem', u'dog']
[u'bangladesh', u'polic', u'bomb', u'arrest']
[u'bangladesh', u'polic', u'round', u'hundr', u'blast']
[u'belarus', u'pass', u'sedit', u'law']
[u'blewett', u'cosgrov', u'guid', u'redback', u'victori']
[u'bomb', u'kill', u'marin', u'iraq']
[u'breaker', u'post', u'easi']
[u'breakthrough', u'offer', u'hope', u'kidney', u'transplant']
[u'britain', u'call', u'farm', u'subsidi']
[u'burma', u'confirm', u'extend', u'kyi', u'detent']
[u'bushrang', u'restrict', u'despit', u'klinger']
[u'cabomba', u'erad', u'program', u'suspend']
[u'strengthen', u'stanc', u'death', u'penalti']
[u'canberra', u'storm', u'clean', u'day']
[u'cattlebaron', u'kill', u'light', u'plane', u'crash']
[u'cattl', u'baron', u'death', u'mourn']
[u'china', u'toxic', u'spill', u'threaten', u'russia']
[u'chines', u'flood', u'trap']
[u'desert', u'barrier', u'enthusiast']
[u'disabl', u'task', u'forc', u'focus', u'accommod']
[u'dokic', u'arriv', u'australia']
[u'drag', u'race', u'accid', u'injur', u'driver']
[u'drink', u'drive', u'blitz', u'nab', u'dozen']
[u'ecstasi', u'great', u'potenti']
[u'burn', u'tent', u'fire', u'pakistan', u'quak', u'zone']
[u'england', u'honeymoon', u'end', u'pakistan']
[u'english', u'defend', u'cahil']
[u'ethiopia', u'investig', u'possibl', u'bird', u'outbreak']
[u'everton', u'talk', u'kean']
[u'exxonmobil', u'delay', u'anger', u'airport', u'manag']
[u'face', u'transplant', u'patient', u'recov']
[u'fatal', u'collis', u'shut', u'highway']
[u'fiji', u'parliament', u'vote', u'coup', u'amnesti']
[u'senat', u'cook', u'lose', u'cancer', u'fight']
[u'forsyth', u'lose', u'liber', u'parti', u'preselect']
[u'franc', u'investig', u'flight', u'stopov', u'claim']
[u'franc', u'join', u'nation']
[u'govt', u'rule', u'ratifi', u'kyoto', u'protocol']
[u'green', u'lead', u'stroke']
[u'greenspan', u'issu', u'deficit', u'warn']
[u'group', u'promis', u'test', u'ecstasi', u'pill', u'rave']
[u'harbour', u'prawn', u'fish', u'surpris']
[u'health', u'barrier', u'pinochet', u'trial', u'court', u'rule']
[u'heavi', u'rain', u'prompt', u'cave', u'eros', u'warn']
[u'hockeyroo', u'dutch', u'gold', u'medal', u'warm']
[u'hous', u'group', u'flag', u'drop', u'hous', u'price']
[u'impress', u'good', u'victori']
[u'india', u'lanka', u'test', u'head', u'wateri', u'grave']
[u'indigen', u'train', u'program', u'begin', u'januari']
[u'inzamam', u'vow', u'play']
[u'iraqi', u'group', u'threaten', u'kill', u'hostag']
[u'fight']
[u'isra', u'navi', u'shoot', u'palestinian', u'fisherman']
[u'keegan', u'hold', u'clubhous', u'lead', u'coolum']
[u'king', u'roll', u'cairn']
[u'fire', u'aussi', u'massiv', u'victori']
[u'lehmann', u'elect', u'bowl', u'victoria']
[u'lifesav', u'tasmanian', u'beach']
[u'macklin', u'make', u'promis']
[u'charg', u'alleg', u'sexual', u'assault']
[u'matilda', u'conclud', u'china', u'seri', u'draw']
[u'mix', u'feel', u'klinger']
[u'nevill', u'succeed', u'kean', u'unit', u'captain']
[u'hope', u'kidney', u'transplant', u'patient']
[u'look', u'aussi', u'line', u'black', u'cap']
[u'nguyen', u'famili', u'friend', u'head', u'home']
[u'nguyen', u'bodi', u'return', u'home']
[u'nguyen', u'famili', u'prepar', u'bring', u'execut', u'home']
[u'north', u'korea', u'urg', u'lift', u'sanction']
[u'put', u'confid', u'bird', u'prepar']
[u'govt', u'urg', u'provid', u'greenhous', u'strategi']
[u'offic', u'welcom', u'corrupt', u'inquiri']
[u'opposit', u'continu', u'hound', u'nuttal']
[u'oversea', u'adopt', u'tripl']
[u'pair', u'charg', u'cannabi', u'plant']
[u'stand', u'treasur', u'gerard', u'affair']
[u'polic', u'search', u'bushland', u'miss', u'teen', u'remain']
[u'polic', u'urg', u'caution', u'road', u'toll', u'rise']
[u'pont', u'applaud', u'easi']
[u'pont', u'katich', u'steer', u'australia', u'solid', u'total']
[u'prawn', u'fish', u'suspend', u'sydney', u'harbour']
[u'protea', u'prepar', u'verbal', u'barrag']
[u'protest', u'demand', u'climat', u'chang', u'action']
[u'quak', u'tent', u'suitabl', u'pakistan', u'winter']
[u'offer', u'free', u'public', u'transport', u'trip']
[u'ramadi', u'attack', u'kill', u'soldier']
[u'redknapp', u'walk', u'saint']
[u'rossi', u'readi', u'grand', u'slam']
[u'russian', u'citi', u'take', u'action', u'toxic', u'slick']
[u'schwarzer', u'dream', u'ash', u'reveng']
[u'search', u'resum', u'cattl', u'mogul', u'plane', u'crash']
[u'abus', u'victim', u'urg', u'come', u'forward']
[u'assault', u'case', u'prompt', u'warn', u'schooli']
[u'shorten', u'elect', u'victorian', u'presid']
[u'skill', u'shortag', u'forc', u'busi', u'close']
[u'slovakia', u'skipper', u'back', u'beck']
[u'slovak', u'croatian', u'level']
[u'snowi', u'sell', u'oppos', u'principl']
[u'solskjaer', u'surpris', u'unit', u'return']
[u'storm', u'clean']
[u'summit', u'seek', u'input', u'muslim', u'youth']
[u'support', u'long', u'go', u'jone', u'admit']
[u'text', u'messag', u'connect', u'rocker', u'audienc']
[u'feder', u'govern', u'follow']
[u'say', u'chang', u'good', u'job']
[u'thousand', u'ralli', u'pulp']
[u'kill', u'highway', u'collis']
[u'tiger', u'wildcat']
[u'attract', u'motorcyclist']
[u'trade', u'barrier', u'indefens', u'wolfowitz']
[u'souness', u'vow', u'wont', u'quit']
[u'merger', u'wont', u'harm', u'maritim', u'colleg']
[u'eas', u'airlin', u'secur', u'rule']
[u'welcom', u'discuss', u'burma']
[u'vietnam', u'find', u'bird', u'outbreak']
[u'virgin', u'passeng', u'treat', u'flight', u'emerg']
[u'build', u'approv', u'soar']
[u'watchdog', u'probe', u'virgin', u'blue', u'incid']
[u'weatheril', u'hint', u'hous', u'announc']
[u'boat', u'project', u'govt', u'grant']
[u'iraqi', u'troop', u'kill', u'ambush']
[u'abba', u'invit', u'pope', u'visit', u'jerusalem']
[u'storm', u'clean', u'continu']
[u'alcohol', u'factor', u'machet', u'attack']
[u'allenbi', u'secur', u'australian', u'doubl']
[u'allenbi', u'win', u'titl']
[u'archaeologist', u'ancient', u'palac', u'gate']
[u'arena', u'evacu', u'roof']
[u'soldier', u'kill', u'lanka', u'blast']
[u'aussi', u'lazaridi', u'take', u'hammer']
[u'author', u'search', u'miss', u'teen']
[u'beckham', u'send', u'real', u'hang']
[u'belfast', u'bid', u'farewel', u'footbal', u'hero', u'best']
[u'bird', u'detect', u'ukrain']
[u'breaker', u'complet', u'clean', u'sweep']
[u'cach', u'take', u'gong', u'european', u'film', u'award']
[u'action', u'timor', u'human', u'right', u'abus']
[u'chelsea', u'march', u'gunner', u'stumbl']
[u'comment', u'seek', u'wilder', u'area', u'plan']
[u'costello', u'mull', u'cut', u'welfar', u'unfit', u'parent']
[u'costello', u'seek', u'welfar', u'unfit', u'parent']
[u'costello', u'welfar', u'plan', u'distract']
[u'countri', u'worker', u'dont', u'street', u'worker']
[u'cricket', u'frustrat', u'chennai', u'rain']
[u'croatia', u'edg', u'closer', u'davi', u'triumph']
[u'crouch', u'brace', u'claim', u'back', u'benitez']
[u'death', u'letter', u'releas']
[u'death', u'toll', u'china', u'blast', u'reach']
[u'disabl', u'support', u'issu', u'affect', u'young']
[u'drink', u'drive', u'blitz', u'figur', u'worri', u'polic']
[u'dutch', u'defeat', u'hockeyroo', u'penalti', u'shoot']
[u'england', u'best', u'vaughan']
[u'england', u'whip', u'surpris', u'inzamam']
[u'campaign', u'depth']
[u'expert', u'seek', u'clue', u'lebanes', u'mass', u'grave']
[u'technic', u'expert', u'rule', u'radic', u'wing']
[u'fella', u'capit', u'notch', u'wnbl', u'win']
[u'festiv', u'launch', u'politicis', u'pratt']
[u'station', u'extens', u'futur', u'need', u'whan']
[u'cancer', u'council', u'chief', u'prais', u'cook', u'effort']
[u'forsyth', u'tight', u'lip', u'preselect', u'loss']
[u'fund', u'agreement', u'combat', u'weed']
[u'leader', u'push', u'continu', u'stall', u'trade', u'talk']
[u'gabon', u'govt', u'warn', u'troop', u'shoot', u'protest']
[u'gallop', u'commend', u'senat', u'cook', u'work']
[u'glori', u'marin', u'draw', u'perth']
[u'goggin', u'make', u'late', u'challeng']
[u'govt', u'wont', u'step', u'anti', u'capit', u'punish', u'lobbi']
[u'grinham', u'palmer', u'squash', u'decid']
[u'group', u'urg', u'leadership', u'fluorid']
[u'histor', u'christma', u'card', u'sell', u'auction']
[u'hockeyroo', u'halliday', u'confid']
[u'hockeyroo', u'fall', u'short']
[u'hope', u'remain', u'trap', u'chines', u'miner']
[u'indigen', u'communiti', u'voic', u'concern', u'pulp']
[u'indonesia', u'confirm', u'eighth', u'bird', u'death']
[u'injur', u'vaughan', u'return', u'home']
[u'iran', u'refus', u'nuclear', u'program']
[u'isra', u'plane', u'fire', u'missil', u'north', u'gaza', u'strip']
[u'wont', u'muscl', u'say', u'hingi']
[u'jone', u'reflect', u'sack']
[u'labor', u'say', u'forsyth', u'dump', u'speak']
[u'labor', u'chase', u'costello', u'gerard', u'deal']
[u'labor', u'urg', u'action', u'death', u'penalti']
[u'langer', u'continu', u'word']
[u'locust', u'thrive', u'unstabl', u'weather', u'condit']
[u'long', u'lead', u'walk', u'indigen', u'australian']
[u'charg', u'hour', u'sieg']
[u'kill', u'mackay', u'crash']
[u'mass', u'grave', u'uncov', u'lebanon']
[u'meteor', u'light', u'night']
[u'milit', u'video', u'claim', u'attack', u'troop']
[u'missil', u'hit', u'gaza', u'build', u'wit']
[u'miss', u'schooli', u'fear', u'drown']
[u'mock', u'attack', u'test', u'emerg', u'servic']
[u'monti', u'rule', u'hong', u'kong', u'kingston', u'meltdown']
[u'mourinho', u'dismiss', u'terri', u'gambl', u'concern']
[u'muslim', u'leader', u'seek', u'releas', u'hostag']
[u'muslim', u'youth', u'devis', u'plan', u'tackl', u'radic']
[u'nasal', u'stem', u'cell', u'transplant', u'promis']
[u'newli', u'elect', u'afghan', u'kill']
[u'memori', u'honour', u'soldier', u'kill', u'train']
[u'newsread', u'stab', u'fight']
[u'zealand', u'tighten', u'crowd', u'control']
[u'nguyen', u'bodi', u'arriv', u'australia']
[u'nguyen', u'bodi', u'flight', u'australia']
[u'nguyen', u'famili', u'arriv', u'home']
[u'excus', u'milan', u'titl', u'hop', u'dent']
[u'polic', u'urg', u'caution', u'road', u'fatal']
[u'onassi', u'wed', u'brazilian', u'olympian']
[u'pell', u'recognis', u'challeng', u'death', u'penalti']
[u'plane', u'crash', u'investig', u'bodi', u'miss']
[u'plan', u'releas', u'cope', u'sydney', u'popul']
[u'defend', u'gerard', u'appoint']
[u'pay', u'tribut', u'senat']
[u'rule', u'campaign', u'death', u'penalti']
[u'policeman', u'kill', u'wound', u'kashmir']
[u'polic', u'scour', u'coast', u'miss', u'fisherman']
[u'polic', u'search', u'suspect', u'stab']
[u'polic', u'urg', u'dedic', u'unit', u'theft', u'case']
[u'protest', u'demand', u'long', u'term', u'climat', u'chang', u'plan']
[u'qanta', u'board', u'consid', u'intern', u'jetstar']
[u'qanta', u'flag', u'intern', u'rout', u'jetstar']
[u'rain', u'prompt', u'road', u'safeti', u'warn']
[u'ranger', u'capit', u'triumphant', u'wnbl']
[u'research', u'record', u'near', u'whale']
[u'retail', u'hop', u'christma', u'sale']
[u'right', u'faction', u'take', u'liber', u'parti', u'iemma']
[u'roger', u'verg', u'game', u'withdraw']
[u'school', u'disciplin', u'polici', u'need', u'work', u'teacher']
[u'scott', u'seat', u'citi']
[u'search', u'abandon', u'miss', u'fisherman']
[u'search', u'continu', u'miss', u'surf']
[u'sedit', u'concern', u'unfound']
[u'servic', u'bank', u'improv', u'foster', u'children', u'live']
[u'storm', u'clean', u'keep', u'volunt', u'celebr']
[u'suspect', u'salmonella', u'case', u'investig']
[u'taiwan', u'rule', u'parti', u'lose', u'local', u'elect']
[u'taylor', u'retain', u'middleweight', u'world', u'titl']
[u'thousand', u'march', u'hong', u'kong', u'democraci']
[u'thousand', u'protest', u'italian', u'immigr']
[u'thousand', u'walk', u'highlight', u'indigen', u'issu']
[u'hospitalis', u'overdos', u'rave', u'parti']
[u'agenc', u'seek', u'urgent', u'pakistan', u'money']
[u'vote', u'test', u'kazakhstan', u'democraci']
[u'wadey', u'rioter', u'attack', u'polic']
[u'treat', u'meteor', u'light']
[u'arrest', u'drink', u'drive', u'blitz']
[u'abbott', u'gillard']
[u'accc', u'allow', u'cooper', u'takeov']
[u'accus', u'killer', u'collaps', u'dock']
[u'adelaid', u'runner', u'win', u'gambier', u'gift']
[u'forc', u'patrol', u'game']
[u'allenbi', u'eye', u'tripl', u'treat']
[u'ancic', u'hold', u'nerv', u'davi', u'croatia']
[u'angler', u'group', u'predict', u'backlash', u'marin']
[u'assess', u'storm', u'damag', u'continu']
[u'attack', u'plan', u'locust', u'plagu']
[u'aussi', u'pair', u'lose', u'squash', u'world', u'open', u'final']
[u'aussi', u'readi', u'protea', u'challeng']
[u'author', u'clean', u'electrolux', u'chemic', u'spill']
[u'bank', u'groom', u'tip', u'anger', u'staff']
[u'barca', u'real', u'luxemburgo']
[u'basso', u'attempt', u'giro', u'tour', u'doubl']
[u'beach', u'close', u'swimmer', u'sting']
[u'beatti', u'warn', u'mareeba', u'health', u'meet']
[u'prepar', u'save', u'strand', u'tourist']
[u'talk', u'yacht', u'nicorett', u'get']
[u'biker', u'partner', u'alleg', u'flaw', u'murder', u'probe']
[u'biker', u'deliv', u'tonn', u'toy']
[u'biki', u'gang', u'fight', u'effort', u'dismantl', u'secur']
[u'black', u'cap', u'run', u'scar', u'katich']
[u'black', u'cap', u'search', u'way', u'combat']
[u'blaze', u'forc', u'bluescop', u'evacu']
[u'bolton', u'look', u'impress', u'kean']
[u'brack', u'deni', u'minist', u'face', u'preselect', u'troubl']
[u'brack', u'sewerag', u'fund']
[u'busi', u'ask', u'way', u'boost', u'govt', u'effici']
[u'busi', u'facilit', u'island', u'enterpris']
[u'busi', u'busi', u'sale', u'robust']
[u'fund', u'spend', u'health', u'promot']
[u'canberra', u'level', u'year', u'high']
[u'canberra', u'storm', u'damag']
[u'cancer', u'patient', u'lose', u'medic', u'neglig', u'case']
[u'casa', u'fail', u'promot', u'good', u'airmanship', u'smith']
[u'case', u'forestri', u'tasmania', u'exempt', u'begin']
[u'cassava', u'pilot', u'ethanol', u'plant']
[u'chavez', u'alli', u'claim', u'elect', u'victori']
[u'chelsea', u'liverpool', u'seek', u'edg', u'dead']
[u'child', u'poverti', u'danger', u'high', u'level']
[u'chines', u'firm', u'interest', u'buy', u'north', u'west']
[u'urg', u'tougher', u'stanc', u'illeg', u'fish']
[u'cmcs', u'nuttal', u'investig', u'continu']
[u'code', u'conduct', u'form', u'fraser', u'safeti']
[u'cole', u'brace', u'help', u'citi', u'thump', u'charlton']
[u'commonwealth', u'challeng', u'cadet', u'discrimin', u'case']
[u'coron', u'report', u'windang', u'beach', u'drown']
[u'costello', u'laugh', u'gerard', u'question']
[u'council', u'reject', u'woodgat', u'develop']
[u'council', u'green', u'light', u'john', u'site', u'hous']
[u'council', u'urg', u'nurs', u'individu']
[u'council', u'urg', u'delay', u'citi', u'centr', u'strategi']
[u'crash', u'china', u'kill']
[u'deadlin', u'loom', u'centenari', u'celebr']
[u'dept', u'move', u'allay', u'fear', u'prawn', u'fish']
[u'disast', u'relief', u'fund', u'flow', u'storm', u'aramac']
[u'dokic', u'blame', u'departur']
[u'drown', u'student', u'swim', u'flag']
[u'elder', u'kill', u'singl', u'vehicl', u'crash']
[u'engin', u'firm', u'fin', u'nois']
[u'epic', u'trilog', u'top', u'favourit', u'film', u'poll']
[u'eriksson', u'back', u'beckham', u'latest', u'send']
[u'mayor', u'candid', u'stand', u'gladston']
[u'saddam', u'bodyguard', u'case', u'consid', u'order']
[u'famili', u'appeal', u'hostag', u'freedom']
[u'faulti', u'drive', u'caus', u'tripl', u'fatal']
[u'fifa', u'prepar', u'announc', u'world', u'seed']
[u'fisheri', u'closur', u'result', u'loss']
[u'dead', u'israel', u'suicid', u'bomb', u'attack']
[u'move', u'closer', u'pilbara', u'project']
[u'french', u'nation', u'kidnap', u'baghdad', u'polic']
[u'fund', u'seek', u'dialogu', u'centr']
[u'gambl', u'pay', u'cotton', u'grower']
[u'gambl', u'addict', u'jail', u'bank', u'fraud']
[u'game', u'ugli', u'ahead', u'world', u'draw']
[u'gold', u'surg', u'spur', u'mine']
[u'govt', u'keen', u'pass', u'bill', u'final', u'sit']
[u'govt', u'make', u'meander', u'fund', u'shortfal']
[u'govt', u'urg', u'rethink', u'child', u'care', u'fund']
[u'green', u'mundin', u'resolv', u'fight', u'order', u'disput']
[u'green', u'group', u'back', u'rail', u'freight', u'plan']
[u'green', u'group', u'hop', u'capel', u'impact']
[u'green', u'angri', u'debat', u'gag']
[u'group', u'use', u'letter', u'anti', u'saleyard', u'push']
[u'half', u'heart', u'vote', u'kazakhstan', u'capit']
[u'hall', u'creek', u'hop', u'crush', u'woe']
[u'health', u'servic', u'highlight', u'gippsland', u'dental', u'woe']
[u'health', u'servic', u'advisori', u'council']
[u'heat', u'help', u'thiev', u'gain', u'access']
[u'highway', u'panda', u'habitat', u'piec']
[u'highway', u'toll', u'see', u'option']
[u'hostil', u'forc', u'chopper']
[u'howard', u'costello', u'clash', u'respons']
[u'howard', u'prais', u'delight', u'storm', u'victim']
[u'hunt', u'driver', u'steal']
[u'idea', u'seek', u'indigen', u'road', u'toll']
[u'india', u'elect', u'rain', u'interrupt', u'test']
[u'indian', u'flood', u'forc', u'mass', u'evacu']
[u'indigen', u'group', u'appeal', u'fish']
[u'indigen', u'group', u'unfaz', u'talk', u'feder', u'probe']
[u'indonesian', u'babi', u'test', u'posit', u'bird']
[u'initi', u'maclean', u'storm', u'clean', u'complet']
[u'internet', u'rise']
[u'intrud', u'hold', u'babi']
[u'investig', u'continu', u'fatal', u'plane', u'crash']
[u'inzamam', u'happi', u'pakistan', u'rank', u'jump']
[u'iraq', u'escap', u'assassin']
[u'law', u'creat', u'public', u'holiday', u'sack', u'fear']
[u'islam', u'leader', u'misrepres', u'christma', u'claim']
[u'isra', u'armi', u'order', u'kill', u'milit']
[u'isra', u'shop', u'centr', u'attack', u'kill']
[u'juri', u'tell', u'falconio', u'dead']
[u'juve', u'ride', u'luck', u'land', u'sucker', u'punch']
[u'kangaroo', u'fear', u'sound', u'feet']
[u'kazakhstan', u'return', u'presid', u'power']
[u'labor', u'label', u'poll', u'smokescreen']
[u'launceston', u'angler', u'make', u'time']
[u'laverton', u'treasur', u'outback', u'highway', u'group']
[u'recommend', u'rise', u'councillor']
[u'local', u'chief', u'say', u'senat', u'irreplac']
[u'local', u'need', u'break', u'inquest', u'hear']
[u'charg', u'wadey', u'riot']
[u'face', u'court', u'rape', u'charg']
[u'mass', u'honour', u'vinni', u'volunt']
[u'math', u'stabilis', u'wobbl', u'tabl']
[u'measl', u'case', u'pakistani', u'camp']
[u'meet', u'tell', u'dubbo', u'crime', u'rise']
[u'meet', u'discuss', u'draft', u'plan', u'polici']
[u'meet', u'work', u'manag', u'plan']
[u'miss', u'schooli', u'bodi', u'gold', u'coast', u'beach']
[u'mix', u'trade', u'check', u'market', u'gain']
[u'move', u'afoot', u'eas', u'wine', u'invest', u'fund', u'worri']
[u'move', u'antisoci', u'behaviour', u'festiv']
[u'tribut', u'cook']
[u'home', u'road', u'build', u'cours']
[u'murdoch', u'near', u'murder', u'scene', u'defenc']
[u'narpi', u'school', u'close', u'forev']
[u'nelson', u'plan', u'nation', u'student', u'vote', u'law']
[u'urg', u'waterwis', u'plant']
[u'coal', u'announc', u'upper', u'hunter']
[u'mayor', u'seek', u'unit', u'latrob', u'region']
[u'nguyen', u'funer', u'wont', u'focus', u'death', u'penalti', u'debat']
[u'nigerian', u'polic', u'tear', u'separatist']
[u'product', u'better', u'expect']
[u'ormsbi', u'eye', u'master', u'titl']
[u'packer', u'admit', u'provid', u'inaccur', u'evid']
[u'packer', u'loos', u'word', u'asic', u'hear']
[u'pair', u'hospit', u'head', u'crash']
[u'pedestrian', u'death', u'dismay', u'safeti', u'bodi']
[u'perilya', u'eye', u'opportun']
[u'pianist', u'dossor', u'die', u'age']
[u'plane', u'land', u'safe', u'emerg']
[u'plan', u'patrol', u'sky', u'commonwealth', u'game']
[u'plan', u'move', u'ahead', u'giant', u'golf', u'cours']
[u'plan', u'attack', u'saddam', u'trial', u'foil']
[u'player', u'wallabi', u'coach']
[u'playwright', u'harold', u'pinter', u'hospitalis']
[u'flag', u'cut', u'wage', u'earner']
[u'polic', u'south', u'west', u'cannabi', u'crop']
[u'polic', u'hope', u'brake', u'theft']
[u'polic', u'investig', u'crawford', u'bodi']
[u'polic', u'crash', u'victim']
[u'polic', u'probe', u'fatal', u'highway', u'crash']
[u'polic', u'probe', u'sydney', u'newsread', u'stab']
[u'polic', u'relat', u'improv', u'riot', u'inquiri', u'hear']
[u'polic', u'continu', u'search', u'miss', u'angler']
[u'polic', u'charg', u'dampier', u'brawl']
[u'princ', u'eager', u'sign', u'tiger']
[u'probe', u'continu', u'fremantl', u'fuel', u'spill']
[u'protea', u'need', u'adapt', u'say', u'kalli']
[u'public', u'ask', u'help', u'escap']
[u'public', u'phone', u'road', u'woe']
[u'public', u'turn', u'barbara', u'festiv']
[u'public', u'urg', u'continu', u'water', u'wise']
[u'push', u'indigen', u'timber', u'worker']
[u'push', u'remain', u'boost', u'tafe', u'moral']
[u'qanta', u'restrict', u'access']
[u'raid', u'recov', u'illeg', u'import', u'bird']
[u'rain', u'boost', u'basin', u'catchment', u'storag', u'level']
[u'redknapp', u'rue', u'quit', u'pompey']
[u'report', u'illeg', u'fishermen', u'drown', u'australian']
[u'resid', u'say', u'lake', u'site', u'unsuit', u'scout']
[u'robert', u'reject', u'staffer', u'trip', u'claim']
[u'russian', u'swim', u'pool', u'roof', u'collaps', u'kill']
[u'saddam', u'bodyguard', u'visa', u'concern', u'howard']
[u'saddam', u'bodyguard', u'visa', u'error', u'vanston']
[u'saddam', u'bodyguard', u'visa', u'govt', u'decis', u'say']
[u'saddam', u'bodyguard', u'live', u'adelaid']
[u'saddam', u'lawyer', u'walk']
[u'saddam', u'trial', u'judg', u'step', u'murder', u'link']
[u'saddam', u'trial', u'resum', u'walk']
[u'salin', u'threat', u'overst', u'report']
[u'scheme', u'look', u'reduc', u'driver', u'licenc', u'breach']
[u'scott', u'lose', u'play', u'citi']
[u'search', u'continu', u'miss', u'schooli']
[u'search', u'fail', u'clue', u'teenag']
[u'search', u'find', u'miss', u'safe']
[u'senat', u'join', u'global', u'push', u'climat', u'chang', u'action']
[u'find', u'parent', u'bodi', u'garag']
[u'spawn', u'pattern', u'help', u'stinger', u'research']
[u'sport', u'week', u'school']
[u'stacker', u'beat', u'play', u'off', u'possibl']
[u'stanhop', u'legisl', u'review', u'rule']
[u'stock', u'hors', u'sale', u'record', u'tumbl']
[u'storm', u'leav', u'damag', u'central', u'victoria']
[u'storm', u'spare', u'vineyard']
[u'stress', u'caus', u'sick', u'studi']
[u'student', u'demand', u'choic', u'poll']
[u'survey', u'highlight', u'tassi', u'art', u'festiv', u'success']
[u'survey', u'show', u'rise', u'slight']
[u'teacher', u'protest', u'special', u'need', u'student']
[u'terror', u'suspect', u'custodi', u'condit', u'inhuman']
[u'mass', u'grave', u'uncov', u'lebanon']
[u'thousand', u'enjoy', u'barossa', u'concert']
[u'firm', u'tender', u'hospit']
[u'throne', u'home', u'user', u'survey']
[u'trade', u'hall', u'council', u'take', u'protest', u'maryborough']
[u'train', u'travel', u'warn', u'expect', u'delay']
[u'treasur', u'ask', u'explain', u'budget', u'discrep']
[u'treasur', u'question', u'gerard', u'claim']
[u'face', u'court', u'indonesia', u'drug', u'charg']
[u'union', u'applaud', u'cancel', u'surgeri', u'honesti']
[u'union', u'dark', u'health', u'servic', u'merger']
[u'union', u'target', u'govt', u'margin', u'seat']
[u'univers', u'condemn', u'poll', u'propos']
[u'risk', u'terrorist', u'attack']
[u'deni', u'send', u'suspect', u'abroad', u'tortur']
[u'vanuatu', u'resid', u'evacu', u'volcano', u'threaten']
[u'visa', u'law', u'godsend', u'horticultur']
[u'warrior', u'control', u'protea']
[u'warrnambool', u'mayor', u'elect', u'tonight']
[u'warship', u'crew', u'reflect', u'histori']
[u'welfar', u'work', u'plan', u'eas', u'poverti', u'govt']
[u'wit', u'seek', u'fatal', u'crash']
[u'woman', u'hospit', u'machet', u'attack']
[u'work', u'committe', u'head', u'north', u'highway', u'plan']
[u'dead', u'militari', u'plane', u'crash', u'tehran']
[u'bodi', u'western', u'iraq']
[u'aborigin', u'knowledg', u'mammal', u'research']
[u'abort', u'pill', u'vote', u'rule', u'women']
[u'academ', u'say', u'quinn', u'mistak', u'robert']
[u'prepar', u'patron', u'smoke']
[u'alo', u'vera', u'produc', u'sign', u'china', u'deal']
[u'anim', u'right', u'group', u'seek', u'council', u'polici']
[u'student', u'group', u'concern', u'fund']
[u'architect', u'question', u'footbridg', u'plan']
[u'aussi', u'improv', u'pont']
[u'australia', u'band', u'say', u'lara']
[u'australian', u'chang', u'hong', u'kong', u'smuggl', u'plea']
[u'averag', u'rain', u'predict', u'western', u'despit']
[u'face', u'call', u'broader', u'inquiri']
[u'weather', u'stop', u'diver', u'search', u'miss', u'angler']
[u'bail', u'grant', u'alleg', u'bird', u'smuggler']
[u'bendigo', u'properti', u'raid', u'illeg', u'wildlif']
[u'benitez', u'focus', u'liverpool', u'real']
[u'crowd', u'turn', u'marin', u'park', u'meet']
[u'disput', u'aris', u'littl', u'athlet']
[u'die', u'age']
[u'sea', u'solo', u'sail', u'record', u'attempt']
[u'blackout', u'strike', u'town']
[u'bomb', u'joke', u'land', u'fine']
[u'bottleneck', u'hinder', u'resourc', u'sector', u'approv']
[u'bracken', u'dayer']
[u'brack', u'convinc', u'hydro', u'scheme', u'sale']
[u'brack', u'stand', u'firm', u'abort', u'chang']
[u'branson', u'reveal', u'frequent', u'flyer', u'space', u'plan']
[u'briberi', u'claim', u'prove']
[u'brother', u'front', u'court', u'fatal', u'stab']
[u'burni', u'trial', u'high', u'speed', u'internet', u'technolog']
[u'bush', u'alli', u'face', u'trial', u'judg']
[u'bush', u'poem', u'pakistani', u'schoolbook']
[u'businesswoman', u'elect', u'unoppos', u'shepparton', u'mayor']
[u'caltex', u'sign', u'dalbi', u'refineri', u'deal']
[u'campbel', u'name', u'european', u'tour', u'best']
[u'catchment', u'author', u'maintain', u'worri']
[u'unit', u'lack', u'organis', u'inquest', u'hear']
[u'childcar', u'centr', u'treatment', u'disturb']
[u'china', u'sign', u'deal', u'airbus', u'plan']
[u'chines', u'blast', u'toll', u'settl']
[u'citi', u'seek', u'help', u'toxic', u'slick', u'approach']
[u'coff', u'strategi', u'aim', u'limit', u'urban', u'sprawl']
[u'confid', u'farmer']
[u'costello', u'renew', u'pressur', u'gerard', u'affair']
[u'council', u'look', u'govt', u'storm', u'clean', u'fund']
[u'council', u'promis', u'earli', u'noosa', u'drive']
[u'council', u'adopt', u'citi', u'centr', u'strategi']
[u'council', u'hear', u'truck', u'stop', u'recommend']
[u'court', u'hear', u'break', u'tourist', u'turn', u'prostitut']
[u'court', u'put', u'brake', u'driver']
[u'cricket', u'violenc', u'spark', u'tran', u'tasman', u'talk']
[u'defenc', u'await', u'bomb', u'rang', u'mishap', u'report']
[u'owner', u'warn', u'parvo', u'threat']
[u'drink', u'end', u'gazza', u'ketter', u'stint']
[u'dutch', u'tourist', u'injur', u'collis']
[u'elector', u'boundari', u'melt']
[u'pleas', u'chang', u'miner', u'sand', u'plan']
[u'ergon', u'investig', u'mackay', u'blackout']
[u'ergon', u'issu', u'christma', u'light', u'warn']
[u'exodus', u'real', u'madrid']
[u'export', u'rise', u'narrow', u'trade', u'deficit']
[u'falconio', u'live', u'juri', u'tell']
[u'farmer', u'ask', u'report', u'storm', u'damag']
[u'farmer', u'await', u'drought', u'news']
[u'father', u'jail', u'teacher', u'bash']
[u'fieri', u'vaa', u'rattl', u'india', u'draw', u'test']
[u'fight', u'labor', u'urg', u'abbott']
[u'fishermen', u'reject', u'illeg', u'fish', u'claim']
[u'fisher', u'observ', u'marin', u'park', u'closur']
[u'flight', u'centr', u'unconcern', u'qanta', u'chang']
[u'milan', u'midfield', u'albertini', u'retir']
[u'saddam', u'bodyguard', u'case', u'examin']
[u'teacher', u'month', u'jail', u'offenc']
[u'fuel', u'price', u'take', u'toll', u'volunt']
[u'fund', u'boost', u'rock', u'demonstr', u'power', u'plant']
[u'fyff', u'wont', u'rule', u'contest', u'mayoralti']
[u'gascoign', u'hold', u'suspicion', u'assault']
[u'genet', u'test', u'consid', u'skin', u'cancer', u'prevent']
[u'germani', u'solv', u'crowd', u'issu', u'fifa']
[u'govern', u'ask', u'combat', u'firewe']
[u'govt', u'push', u'leas', u'concess']
[u'govt', u'reassess', u'visa', u'bodyguard']
[u'govt', u'urg', u'scrap', u'water', u'plan']
[u'spend', u'time', u'patient', u'studi']
[u'green', u'focus', u'master', u'defenc']
[u'green', u'group', u'urg', u'stop', u'west', u'yamba', u'develop']
[u'green', u'group', u'want', u'stop', u'transgrid', u'powerlin', u'plan']
[u'group', u'gear', u'west', u'tiger', u'match']
[u'group', u'push', u'duck', u'shoot', u'backdown']
[u'gryll', u'urg', u'pilbara', u'land', u'releas']
[u'hammer', u'compound', u'birmingham', u'blue']
[u'heat', u'high', u'blood', u'pressur']
[u'hend', u'miss', u'tour', u'card']
[u'hill', u'lament', u'gerard', u'resign']
[u'driver', u'avoid', u'jail']
[u'hockeyroo', u'focus', u'commonwealth', u'game']
[u'hospit', u'decis', u'bring', u'mix', u'respons']
[u'hudson', u'till', u'final']
[u'indigen', u'health', u'grant', u'detail', u'reveal']
[u'inquiri', u'urg', u'govt', u'guidelin']
[u'interst', u'cocain', u'traffick', u'jail']
[u'investig', u'continu', u'menegazzo', u'crash', u'scene', u'probe']
[u'inzamam', u'hop', u'counti', u'cricket', u'chanc']
[u'israel', u'arrest', u'suicid', u'bomber', u'famili']
[u'japan', u'signal', u'iraq', u'mission', u'extens']
[u'jasmin', u'rice', u'aroma', u'gene']
[u'kalgoorli', u'boulder', u'name']
[u'kalgoorli', u'move', u'closer', u'solar', u'citi']
[u'kiln', u'blaze', u'forc', u'school', u'evacu']
[u'labor', u'attempt', u'censur', u'costello']
[u'labor', u'blame', u'law', u'liber', u'poll', u'slide']
[u'labor', u'demand', u'costello', u'face', u'gerard', u'question']
[u'lawyer', u'seek', u'charg', u'extradit', u'bali']
[u'lead', u'chines', u'dissid', u'writer', u'die']
[u'lee', u'evid', u'prove', u'murdoch', u'guilti', u'lawyer']
[u'levi', u'vote', u'put', u'banana', u'industri', u'risk']
[u'die', u'plane', u'crash']
[u'face', u'court', u'accus', u'shop', u'arson']
[u'custodi', u'accus', u'rap', u'cousin']
[u'jail', u'life', u'teen', u'bash', u'death']
[u'link', u'baggag', u'handler', u'jail']
[u'plead', u'guilti', u'underag', u'girl']
[u'mayor', u'back', u'plan', u'thursday', u'busi']
[u'meander', u'valley', u'mayor', u'see', u'benefit']
[u'media', u'grant', u'access', u'child', u'rape', u'trial']
[u'meet', u'focus', u'age', u'disabl', u'public', u'hous']
[u'melbourn', u'woman', u'pregnanc', u'beat', u'odd']
[u'militari', u'plane', u'crash', u'tehran']
[u'attack', u'kill', u'lankan', u'soldier']
[u'miner', u'boom', u'help', u'boost', u'region', u'job']
[u'minist', u'attack', u'drought', u'relief', u'payment']
[u'mission', u'australia', u'open', u'whyalla', u'port', u'augusta']
[u'mother', u'mourn', u'taxi', u'incid', u'victim']
[u'air', u'doctor', u'shortag', u'fear']
[u'reject', u'need', u'ethanol', u'legisl']
[u'urg', u'perman', u'shark', u'barrier']
[u'urg', u'tougher', u'stanc', u'crimin']
[u'muscat', u'cite']
[u'nail', u'shooter', u'fin']
[u'nation', u'hospit', u'standard', u'program', u'begin']
[u'nation', u'liber', u'odd']
[u'nervous', u'night', u'champion', u'leagu', u'team']
[u'newcastl', u'move', u'closer', u'solar', u'citi', u'project']
[u'facil', u'medic', u'research']
[u'flight', u'help', u'lift', u'kununurra', u'tourist', u'number']
[u'mammal', u'borneo']
[u'urg', u'oppos', u'incent', u'timber']
[u'korea', u'demand', u'lift', u'sanction']
[u'compo', u'seek', u'road', u'chang', u'tunnel', u'chief']
[u'pool', u'school', u'program', u'polit', u'leader']
[u'northern', u'busi', u'sight', u'southern', u'citi']
[u'smart', u'ball', u'world']
[u'water', u'pleas', u'paluma', u'water']
[u'opposit', u'urg', u'action', u'gang', u'crime']
[u'packer', u'draw', u'blank', u'onetel', u'cash', u'phase', u'meet']
[u'packer', u'fail', u'recal', u'onetel', u'cash', u'warn']
[u'pair', u'court', u'defraud', u'charg']
[u'pair', u'face', u'court', u'drug', u'charg']
[u'play', u'abandon', u'bushrang', u'blue', u'clash']
[u'poidevin', u'join', u'search', u'wallabi', u'coach']
[u'polic', u'issu', u'warn', u'vandal']
[u'policeman', u'bottl', u'arrest', u'attempt']
[u'policemen', u'kill', u'peruvian', u'jungl', u'ambush']
[u'polic', u'tripl', u'fatal', u'road', u'crash', u'name']
[u'polic', u'tell', u'bodyguard', u'crime', u'suspicion']
[u'probe', u'clear', u'asio', u'parkin', u'deport']
[u'propos', u'elector', u'reform', u'releas']
[u'protea', u'wilt', u'warrior', u'enforc', u'follow']
[u'protest', u'continu', u'chang']
[u'public', u'accept', u'drug', u'penalti', u'ambassador']
[u'public', u'wont', u'miss', u'drug', u'abbott', u'say']
[u'push', u'stawel', u'free']
[u'queanbeyan', u'busi', u'seek', u'closer', u'tie']
[u'rain', u'prevent', u'start', u'bushrang', u'blue', u'clash']
[u'rain', u'stop', u'locust', u'spray']
[u'sight', u'pose', u'natur', u'reserv', u'fear']
[u'real', u'caretak', u'coach', u'take', u'centr', u'stage']
[u'redknapp', u'doubt', u'saint', u'reject', u'offer']
[u'report', u'urg', u'spend', u'equex', u'centr']
[u'resid', u'group', u'unhappi', u'marina', u'develop']
[u'rise', u'sea', u'forc', u'island', u'inland', u'say']
[u'rise', u'temperatur', u'fisheri']
[u'rivcol', u'reject', u'plan', u'poll']
[u'rucker', u'whittl', u'player', u'award']
[u'russia', u'sign', u'missil', u'deal', u'iran']
[u'saddam', u'hussein', u'face', u'accus']
[u'safeti', u'award', u'recognis', u'fertilis', u'oper']
[u'safeti', u'campaign', u'urg', u'driver', u'stay', u'fresh']
[u'govt', u'back', u'murray', u'water', u'buy', u'plan']
[u'govt', u'reject', u'wast', u'dump']
[u'liber', u'grain', u'donat']
[u'take', u'approach', u'homeless']
[u'senat', u'pass', u'counter', u'terror', u'law']
[u'senat', u'urg', u'oppos', u'welfar', u'packag']
[u'alleg', u'bulldog', u'pair']
[u'sexual', u'assault', u'alleg', u'bulldog']
[u'singapor', u'maid', u'deni', u'basic', u'freedom']
[u'singapor', u'tell', u'spous', u'patient', u'status']
[u'solid', u'fleet', u'assembl', u'sydney', u'hobart', u'race']
[u'solo', u'sailor', u'arriv', u'repair']
[u'solskjaer', u'manchest', u'unit']
[u'south', u'africa', u'zuma', u'face', u'rape', u'charg']
[u'lankan', u'court', u'free', u'australian']
[u'stanhop', u'seek', u'input', u'terror', u'law']
[u'state', u'help', u'aramac', u'storm']
[u'storm', u'sign', u'thing', u'come', u'scientist']
[u'suicid', u'bomber', u'kill', u'baghdad']
[u'suicid', u'prevent', u'plan', u'need', u'work', u'liber']
[u'sydney', u'eye', u'clash', u'liverpool']
[u'sydney', u'problem', u'warn', u'busway']
[u'sydney', u'tunnel', u'oper', u'revers', u'road', u'closur']
[u'govt', u'address', u'financi', u'hardship']
[u'taxi', u'driver', u'charg', u'teen', u'murder']
[u'taxi', u'driver', u'face', u'court', u'teen', u'death']
[u'technic', u'hitch', u'hinder', u'saddam', u'trial']
[u'arrest', u'terror', u'plot']
[u'hurt', u'musk', u'crash']
[u'thwait', u'announc', u'communiti', u'centr', u'fund']
[u'townsvill', u'get', u'fund', u'solar', u'citi', u'busi']
[u'trio', u'take', u'hospit', u'stinger', u'attack']
[u'troubl', u'hann', u'british', u'grand', u'prix']
[u'tunnel', u'contract', u'secret', u'carr', u'say']
[u'charg', u'separ', u'shoot']
[u'union', u'target', u'coalit']
[u'student', u'guild', u'reject', u'ballot', u'plan']
[u'republican', u'leader', u'stand', u'trial']
[u'vanston', u'deni', u'laps', u'bodyguard', u'case']
[u'salin', u'major', u'problem', u'despit', u'report']
[u'weak', u'lead', u'leav', u'market', u'flat']
[u'whoop', u'cough', u'case', u'emerg']
[u'wild', u'storm', u'hit', u'break', u'hill']
[u'winegrap', u'grower', u'inspect', u'hail', u'damag']
[u'work', u'begin', u'boost', u'port', u'capac']
[u'hail', u'success', u'floriad']
[u'african', u'famili', u'gambier', u'home']
[u'agreement', u'expect', u'boost', u'indigen', u'servic']
[u'airport', u'evacu', u'road', u'close', u'spanish']
[u'alleg', u'brisban', u'bomb', u'hoaxer', u'refus', u'bail']
[u'allenbi', u'chase', u'tripl', u'crown']
[u'chaffey', u'candid', u'target', u'rival']
[u'anti', u'kurd', u'attack', u'kill']
[u'appl', u'scab', u'worri', u'grower']
[u'arm', u'attack', u'iraqi', u'hospit']
[u'arrest', u'second', u'cronulla', u'scuffl']
[u'asbesto', u'remov', u'basketbal', u'stadium']
[u'assault', u'charg', u'lay', u'attack', u'lifeguard']
[u'aussi', u'punter', u'bennett', u'return', u'vike']
[u'aussi', u'salvag', u'dramat']
[u'aust', u'place', u'summit', u'mahathir']
[u'australian', u'polic', u'link', u'keep', u'italian', u'cocain', u'case']
[u'australian', u'life', u'expect', u'rise']
[u'exceed', u'perform', u'target']
[u'billion', u'dollar', u'contract', u'improv', u'coastlin']
[u'lade', u'lead', u'qaeda', u'zawahri']
[u'black', u'cap', u'confid', u'save', u'seri']
[u'booklet', u'look', u'improv', u'protect']
[u'bosnian', u'croat', u'jail', u'crime']
[u'boyfriend', u'kill', u'chines', u'student', u'coron']
[u'bridgetown', u'bypass', u'battl', u'move', u'closer', u'resolut']
[u'broule', u'student', u'recognis', u'sport', u'effort']
[u'bushfir', u'threat', u'eas', u'slight']
[u'busi', u'chamber', u'reflect', u'contribut']
[u'campaign', u'continu', u'stop', u'farmer', u'compo']
[u'cdma', u'work', u'continu', u'despit', u'phase']
[u'ceberano', u'take', u'bill', u'valley', u'muster']
[u'chappel', u'play', u'ganguli']
[u'charg', u'recommend', u'minist']
[u'chines', u'offici', u'accus', u'spill', u'cover', u'die']
[u'coron', u'warn', u'drug', u'relat', u'psychosi']
[u'costello', u'cement', u'posit', u'treasur']
[u'costello', u'rule', u'leadership']
[u'costello', u'rule', u'leadership', u'challeng']
[u'costello', u'abandon', u'leadership', u'beazley']
[u'costello', u'welfar', u'plan', u'consider']
[u'council', u'accus', u'delay', u'park']
[u'council', u'tri', u'cross', u'crash', u'victim']
[u'countri', u'week', u'boss', u'fear', u'bigger', u'elector']
[u'croc', u'farmer', u'slam', u'theme', u'park', u'plan']
[u'staff', u'secur', u'enterpris', u'agreement']
[u'custom', u'get', u'fund', u'boost']
[u'daughter', u'deni', u'hancock', u'kill', u'biki']
[u'develop', u'claim', u'civic', u'task', u'forc', u'stack']
[u'dismiss', u'falconio', u'sight', u'evid', u'juror', u'tell']
[u'doctor', u'lose', u'appeal', u'incest', u'sentenc']
[u'eleph', u'pack', u'trunk']
[u'embattl', u'nuttal', u'quit', u'cabinet']
[u'erin', u'brockovich', u'lawyer', u'die']
[u'evacu', u'continu', u'volcano', u'settl']
[u'charter', u'tower', u'doctor', u'investig']
[u'export', u'demand', u'rock', u'lobster', u'price', u'increas']
[u'offici', u'awar', u'polit', u'interfer']
[u'factori', u'worker']
[u'fare', u'repriev', u'taxi', u'passeng', u'brief']
[u'farmer', u'count', u'cost', u'locust']
[u'farmer', u'veget', u'concern']
[u'figur', u'slow', u'growth']
[u'firm', u'fin', u'wetland', u'pollut']
[u'fluorid', u'decis', u'forc', u'resid', u'leav']
[u'forest', u'undergo', u'growth', u'audit']
[u'tour', u'franc', u'winner', u'gaul', u'die']
[u'dayer', u'fizz', u'junction', u'oval']
[u'villag', u'kill', u'chines', u'protest']
[u'french', u'partial', u'face', u'transplant', u'woman', u'seek', u'privaci']
[u'fruit', u'threaten', u'citrus']
[u'fuel', u'concern', u'propos', u'power', u'station']
[u'gadget', u'check', u'stress', u'level', u'spit']
[u'gardin', u'sight', u'master', u'place']
[u'gazza', u'arrest', u'assault']
[u'gold', u'coast', u'help', u'lift', u'lifesav', u'fund']
[u'govt', u'ask', u'consid', u'region', u'medic', u'school', u'plan']
[u'govt', u'urg', u'continu', u'milk', u'suppli', u'driver']
[u'govt', u'urg', u'lift', u'south', u'west', u'highway', u'spend']
[u'govt', u'urg', u'seek', u'wineri', u'grower', u'balanc']
[u'grammar', u'school', u'lose', u'roof', u'storm']
[u'grazier', u'kill', u'muster', u'sheep']
[u'greiner', u'defend', u'cross', u'citi', u'tunnel']
[u'group', u'continu', u'oppos', u'highway', u'plan']
[u'group', u'differ', u'fraser', u'palm']
[u'hayabusa', u'asteroid', u'mission', u'like', u'fail']
[u'high', u'speed', u'internet', u'subscript', u'surg']
[u'highway', u'reopen', u'crash']
[u'hop', u'femal', u'councillor', u'curb', u'petrol', u'sniff']
[u'hospit', u'doctor', u'shortag', u'isol', u'buladelah']
[u'hospit', u'rehab', u'bed', u'closur', u'like', u'remain']
[u'hostag', u'urg', u'blair', u'recal', u'troop']
[u'hundr', u'ralli', u'telstra', u'sale']
[u'inadequ', u'compens', u'payout', u'appeal']
[u'india', u'pakistan', u'world', u'hockey']
[u'indigen', u'centr', u'open', u'dubbo']
[u'indonesia', u'warn', u'christma', u'attack', u'threat']
[u'inquiri', u'urg', u'better', u'airport', u'worker']
[u'rat', u'leav', u'unchang']
[u'inverel', u'librari', u'revamp', u'ahead']
[u'iran', u'mourn', u'plane', u'crash', u'victim']
[u'iraqi', u'polic', u'academi', u'bomb', u'toll', u'rise']
[u'japan', u'watch', u'aust', u'iraq', u'withdraw']
[u'joyc', u'demand', u'amend']
[u'junior', u'mine', u'explor', u'list']
[u'juri', u'tell', u'murdoch', u'cun', u'killer']
[u'kiwi', u'open', u'punish']
[u'langer', u'claim', u'edg']
[u'lead', u'poison', u'kill', u'beethoven', u'test']
[u'leagu', u'club', u'shore', u'knight']
[u'lewi', u'clark', u'claim', u'kiwi', u'wicket']
[u'lewi', u'rock', u'black', u'cap']
[u'lion', u'nathan', u'takeov', u'predatori']
[u'lonard', u'knife']
[u'lunar', u'land', u'sale', u'beauti', u'illeg']
[u'kill', u'trench', u'collaps']
[u'sentenc', u'plead', u'guilti', u'drug']
[u'marijuana', u'intend', u'elder', u'arthriti', u'suffer']
[u'math', u'graduat', u'win', u'monash', u'scholarship']
[u'mayor', u'plead', u'guilti', u'briberi', u'charg']
[u'mayor', u'discuss', u'land', u'shortag']
[u'member', u'retir', u'upper', u'hous']
[u'mental', u'health', u'plan', u'includ', u'albani', u'residenti']
[u'miss', u'fisherman', u'dead']
[u'mitchel', u'rule', u'wallabi']
[u'mokbel', u'claim', u'asset', u'freez', u'invalid']
[u'morcomb', u'famili', u'mark', u'disappear', u'anniversari']
[u'park', u'space', u'plan', u'thoma']
[u'morwel', u'make', u'cut', u'plea']
[u'unhappi', u'broom', u'prison', u'closur', u'plan']
[u'muscat', u'violent', u'conduct', u'hear', u'adjourn']
[u'nation', u'urg', u'broad', u'base', u'cut']
[u'natur', u'disast', u'declar', u'storm', u'area']
[u'bendigo', u'mayor', u'offici']
[u'fuel', u'distribut', u'improv', u'boat', u'safeti']
[u'law', u'sterilis', u'fight', u'dog']
[u'medic', u'centr', u'open', u'cloncurri']
[u'organis', u'fight', u'dope']
[u'scheme', u'streamlin', u'disast']
[u'school', u'report', u'need', u'review', u'union']
[u'nguyen', u'farewel']
[u'nguyen', u'mourner', u'warn', u'vengeanc']
[u'bail', u'alleg', u'stabber']
[u'basi', u'ferri', u'fare', u'rise']
[u'brisban', u'heat']
[u'stakehold', u'discuss', u'world', u'schedul']
[u'discuss', u'player', u'burn']
[u'slow', u'progress', u'kilda']
[u'nuttal', u'step']
[u'open', u'design', u'win', u'portrait', u'galleri', u'competit']
[u'opinion', u'differ', u'extend', u'trade', u'hour']
[u'opposit', u'claim', u'govt', u'plan', u'sell']
[u'opposit', u'releas', u'race', u'fund', u'plan']
[u'ozdowski', u'urg', u'check', u'terror', u'law']
[u'pakistani', u'polic', u'arrest', u'suspect', u'separatist']
[u'palm', u'pilot', u'replac', u'paper', u'classroom']
[u'patel', u'face', u'malpractic', u'charg']
[u'plane', u'crash', u'kill', u'dozen']
[u'plane', u'crash', u'pilot', u'escap', u'injuri']
[u'want', u'pass', u'christma']
[u'polic', u'charg', u'geelong', u'murder']
[u'polic', u'issu', u'snatch', u'warn']
[u'policewomen', u'iraq', u'suicid', u'bomb', u'blast']
[u'pont', u'want', u'chang', u'super', u'rule']
[u'poor', u'weather', u'keep', u'lobster', u'menu']
[u'powerlin', u'promis', u'greater', u'reliabl']
[u'produc', u'toast', u'beer', u'paper', u'deal']
[u'program', u'aim', u'develop', u'cape', u'communiti', u'leader']
[u'prosecutor', u'want', u'close', u'court', u'terror', u'suspect']
[u'protea', u'panic', u'waca', u'collaps']
[u'protea', u'slide', u'tour', u'defeat']
[u'protea', u'struggl', u'perth']
[u'public', u'urg', u'storm', u'readi']
[u'public', u'urg', u'illeg', u'hostel']
[u'raaf', u'anti', u'terror', u'skill']
[u'rain', u'delay', u'grain', u'harvest']
[u'rain', u'delay', u'tougher', u'water', u'restrict', u'south']
[u'ranger', u'milan', u'progress', u'champion', u'leagu']
[u'reef', u'author', u'hook', u'illeg', u'fisher']
[u'refer', u'group', u'probe', u'crop', u'issu']
[u'resid', u'urg', u'bewar', u'door', u'door', u'salesmen']
[u'resourc', u'stock', u'drive', u'market', u'higher']
[u'retail', u'figur', u'hold', u'steadi', u'novemb']
[u'rural', u'confid', u'slide']
[u'rural', u'hospit', u'better', u'babi']
[u'saddam', u'trial', u'adjourn']
[u'safeti', u'bodi', u'complet', u'cattl', u'baron', u'plane', u'crash']
[u'receiv', u'fund']
[u'school', u'question', u'workshop', u'time']
[u'schumach', u'end', u'holiday', u'earli', u'resum', u'test']
[u'scientist', u'deep', u'measur', u'andrea', u'fault']
[u'senat', u'vote', u'wont', u'dump', u'fight']
[u'seymour', u'hospit', u'doctor', u'disput', u'resolv']
[u'shop', u'centr', u'revamp', u'finish']
[u'sid', u'kit', u'target', u'childcar', u'centr']
[u'korea', u'order', u'microsoft', u'split', u'program']
[u'sport', u'ident', u'entertain', u'join', u'fight']
[u'sugar', u'cane', u'crop', u'donat', u'rfds']
[u'sugar', u'price', u'surg']
[u'survey', u'highlight', u'rural', u'uncertainti']
[u'sydney', u'hobart', u'organis', u'safeti', u'prioriti']
[u'sydney', u'pump', u'world', u'club', u'championship']
[u'symond', u'clark', u'build', u'aussi', u'total']
[u'symond', u'lead', u'aussi', u'fight']
[u'symond', u'power', u'australia', u'total']
[u'aim', u'reduc', u'landfil', u'dramat']
[u'taxi', u'firm', u'call', u'fare', u'rise', u'understand']
[u'teacher', u'sidestep', u'law']
[u'telstra', u'drop', u'credit', u'rat']
[u'tori', u'elect', u'leader']
[u'treasur', u'confid', u'despit', u'sluggish', u'growth']
[u'trio', u'charg', u'yang', u'murder']
[u'kill', u'launceston', u'factori', u'explos']
[u'dump', u'elect', u'boss']
[u'union', u'blame', u'govt', u'loss']
[u'union', u'member', u'voic', u'fear']
[u'union', u'maintain', u'fight', u'chang']
[u'forc', u'kill', u'taliban', u'governor']
[u'professor', u'acquit', u'terror', u'charg']
[u'romania', u'sign', u'militari', u'base', u'deal']
[u'senat', u'urg', u'govt', u'join', u'global', u'warm', u'talk']
[u'shift', u'cruelti', u'detaine', u'abroad']
[u'vail', u'deni', u'govt', u'staff', u'aid', u'kickback']
[u'govt', u'accus', u'blow', u'water', u'electr']
[u'buck', u'nation', u'trade', u'trend']
[u'water', u'author', u'lobbi', u'fund', u'increas']
[u'water', u'board', u'warn', u'blue', u'green', u'alga', u'outbreak']
[u'weather', u'blame', u'stonefruit', u'product']
[u'welfar', u'group', u'highlight', u'port', u'lincoln', u'poverti']
[u'wenger', u'rule', u'real']
[u'wheatbelt', u'farmer', u'feel', u'frost', u'effect']
[u'wheat', u'kickback', u'claim', u'outrag', u'downer']
[u'wmds', u'terrorist', u'hand']
[u'woodsid', u'sell', u'north', u'asian', u'custom']
[u'wood', u'vote', u'player', u'year', u'seventh', u'time']
[u'yachti', u'use', u'newcastl', u'savvi', u'sydney', u'hobart']
[u'zimbabw', u'refus', u'offer', u'homeless', u'shelter']
[u'zoo', u'condit', u'approv', u'eleph']
[u'special', u'number', u'statist', u'bureau']
[u'aceh', u'tsunami', u'recoveri', u'year']
[u'accus', u'delay', u'cross', u'border', u'water']
[u'agforc', u'criticis', u'artesian', u'basin', u'water', u'plan']
[u'marshal', u'kill', u'american', u'airlin', u'passeng']
[u'allenbi', u'take', u'earli', u'lead', u'huntingdal']
[u'call', u'releas', u'abort', u'drug', u'research']
[u'challeng', u'minist', u'bird', u'hospit', u'claim']
[u'chairman', u'fall', u'victim', u'kiwi', u'anger']
[u'miner', u'miss', u'blast']
[u'aust', u'employ', u'rat', u'recov']
[u'aust', u'leav', u'cold', u'climat', u'talk']
[u'aust', u'greenhous', u'output', u'rise']
[u'author', u'probe', u'fatal', u'plane', u'crash']
[u'bacteria', u'kill', u'patient']
[u'snatcher', u'jail', u'woman', u'death']
[u'bank', u'organis', u'appeal', u'babi']
[u'blue', u'build', u'jaqu']
[u'bomber', u'strike', u'baghdad']
[u'brack', u'say', u'victim', u'drink', u'spike']
[u'brilliant', u'brazil', u'world', u'favourit', u'beckenbau']
[u'britain', u'appeal', u'iraq', u'kidnapp', u'contact']
[u'britain', u'say', u'meet', u'iraq', u'kidnapp', u'demand']
[u'broadbeach', u'servic', u'station', u'rob']
[u'break', u'hill', u'count', u'storm', u'damag', u'cost']
[u'bullet', u'good', u'taipan']
[u'bushfir', u'inquiri', u'hear', u'issu', u'fals', u'data']
[u'bushrang', u'look', u'good', u'stump']
[u'bush', u'talk', u'progress', u'iraq']
[u'busselton', u'ironman', u'hang', u'sponsorship', u'deal']
[u'cabinet', u'reshuffl', u'card', u'say']
[u'cabinet', u'reshuffl', u'possibl']
[u'aquacultur', u'industri', u'chang']
[u'natur', u'save', u'german', u'garbag', u'crusher']
[u'candelo', u'consult', u'sewerag', u'work']
[u'bomb', u'fear', u'prompt', u'parliament', u'driveway', u'closur']
[u'catch', u'limit', u'broadbil', u'swordfish']
[u'cautious', u'approach', u'see', u'bevan', u'sidelin']
[u'chanc', u'accus', u'anti', u'crop']
[u'citrus', u'farmer', u'accus', u'beatti', u'neglect']
[u'clark', u'bond', u'fleme', u'return']
[u'consid', u'option', u'leck', u'resign']
[u'coastcar', u'recognis', u'nation', u'award']
[u'coconut', u'give', u'vanuatu', u'energi']
[u'compani', u'probe', u'recycl', u'plant', u'death']
[u'consult', u'busselton', u'hospit']
[u'council', u'push', u'park', u'intern', u'freight']
[u'council', u'illawarra', u'jail']
[u'court', u'clear', u'home', u'owner', u'garag', u'sale', u'mishap']
[u'court', u'find', u'prison', u'staff', u'protect']
[u'court', u'jail', u'trio', u'blue', u'mountain', u'bash', u'murder']
[u'court', u'tell', u'murder', u'chang', u'stori', u'suit']
[u'crisi', u'kenya', u'coalit', u'govern', u'unravel']
[u'cyclist', u'ask', u'comment', u'plan', u'futur']
[u'develop', u'bite', u'council', u'din', u'polici']
[u'develop', u'launch', u'town', u'propos']
[u'doctor', u'prais', u'conscienc', u'vote']
[u'doctor', u'happi', u'bladder', u'recipi', u'recoveri']
[u'doctor', u'shortag', u'hit', u'communiti', u'holiday']
[u'show', u'sign', u'human', u'meddl']
[u'doubt', u'rais', u'suspect', u'abil', u'instruct']
[u'downer', u'open', u'tsunami', u'banda', u'aceh', u'hospit']
[u'drug', u'treatment', u'program', u'appropri', u'say', u'minist']
[u'east', u'timor', u'polic', u'join', u'peacekeep', u'mission']
[u'fund', u'extend', u'south', u'west']
[u'hurt', u'bangladesh', u'bomb', u'blast']
[u'unit', u'europ']
[u'england', u'lose', u'pakistan']
[u'seek', u'triniti', u'inlet', u'develop']
[u'environ', u'group', u'question', u'bega', u'plant']
[u'esso', u'reveal', u'gippsland', u'basin', u'discoveri']
[u'farmer', u'threaten', u'legal', u'action', u'nuclear', u'dump']
[u'father', u'kill', u'truck', u'crash']
[u'fear', u'famili', u'reform', u'harm', u'children']
[u'arrest', u'drug', u'raid']
[u'presid', u'die']
[u'franc', u'ban', u'aust', u'nuclear', u'wast', u'storag']
[u'funer', u'delay', u'falconio', u'trial']
[u'game', u'athlet', u'futur']
[u'power', u'station', u'construct', u'start']
[u'georgeson', u'close', u'world', u'titl']
[u'global', u'climat', u'chang', u'talk', u'face', u'stalem']
[u'glori', u'ditch', u'mcmahon']
[u'gold', u'escap', u'widespread', u'market', u'drop']
[u'govt', u'accus', u'wast', u'money', u'ministeri']
[u'govt', u'attack', u'union', u'teacher', u'state']
[u'govt', u'overrul', u'recommend', u'free', u'killer']
[u'govt', u'differ', u'direct', u'motorway']
[u'govt', u'treat', u'senat', u'contempt', u'say', u'labor']
[u'govt', u'urg', u'overrid', u'race', u'victoria', u'betfair']
[u'govt', u'warn', u'shonki', u'tradesmen']
[u'govt', u'block', u'charg', u'nuttal', u'opposit']
[u'grain', u'price', u'spotlight']
[u'grape', u'grower', u'legal', u'action', u'contract']
[u'fire', u'plane', u'miami']
[u'heatwav', u'hit', u'build', u'worker']
[u'hiddink', u'prais', u'gritti']
[u'hobart', u'host', u'kookaburra']
[u'hoon', u'damag', u'mansfield', u'cricket', u'grind']
[u'howard', u'costello', u'smotth', u'leadership', u'tension']
[u'iemma', u'urg', u'calm', u'cronulla']
[u'india', u'pakistan', u'kiwi', u'line', u'tour']
[u'inquest', u'find', u'die', u'shark', u'attack']
[u'rat', u'rise']
[u'japan', u'extend', u'iraq', u'mission']
[u'jaqu', u'go', u'junction', u'oval']
[u'jetstar', u'intern']
[u'johnson', u'call', u'fli', u'home']
[u'joyc', u'threaten', u'action', u'govt']
[u'joyc', u'vow', u'stand', u'firm', u'opposit']
[u'kean', u'delay', u'decis', u'futur']
[u'kucera', u'inquiri', u'call', u'herring']
[u'land', u'clear', u'ban', u'help', u'australia', u'reach']
[u'land', u'council', u'odd', u'nuclear', u'dump']
[u'lawyer', u'health', u'worker', u'better', u'educ']
[u'leav', u'clear', u'head']
[u'likud', u'chairman', u'defect', u'sharon', u'parti']
[u'lille', u'pledg', u'fight', u'save', u'lilac', u'hill']
[u'locust', u'fear', u'victoria']
[u'lyon', u'stake', u'fifa', u'fight', u'compens']
[u'malle', u'farmer', u'claim', u'storm', u'damag']
[u'mandar', u'welcom', u'redknapp', u'home', u'pompey']
[u'mander', u'retir', u'reveal', u'deal', u'ref']
[u'plead', u'guilti', u'primari', u'school', u'crash', u'charg']
[u'pretend', u'doctor', u'face', u'court']
[u'treat', u'irukandji', u'sting']
[u'unit', u'crash', u'champion', u'leagu']
[u'martin', u'outlin', u'dirti', u'bomb', u'fear']
[u'master', u'play', u'huntingdal']
[u'mayor', u'help']
[u'mayor', u'welcom', u'assist', u'extens']
[u'meet', u'hear', u'lack', u'treatment', u'kill', u'drug']
[u'milit', u'kill', u'gaza', u'strike']
[u'minist', u'deni', u'report', u'secret', u'jail']
[u'monfil', u'complet', u'kooyong', u'puzzl']
[u'farmer', u'expect', u'report', u'crop', u'storm', u'damag']
[u'mother', u'charg', u'attack']
[u'criticis', u'power', u'plant']
[u'question', u'govt', u'council', u'probe']
[u'seek', u'grind', u'water', u'compo', u'inquiri']
[u'natur', u'disast', u'declar', u'break', u'hill']
[u'navi', u'ground', u'king', u'helicopt']
[u'negoti', u'stall', u'govt']
[u'nelson', u'rule', u'joyc', u'plan', u'fee']
[u'drug', u'burn', u'recoveri']
[u'mayor', u'elect', u'grampian', u'council']
[u'nobel', u'prize', u'winner', u'brand', u'bush', u'blair', u'crimin']
[u'decis', u'sell', u'martin', u'say']
[u'club', u'workload', u'concern']
[u'look', u'strong', u'thank', u'jaqu']
[u'nuclear', u'wast', u'dump']
[u'nurs', u'hike']
[u'nuttal', u'unlik', u'face', u'crimin', u'charg']
[u'nuttal', u'quit', u'bundaberg', u'health', u'crisi']
[u'ohern', u'make', u'earli', u'master', u'run']
[u'ohern', u'seiz', u'control', u'master']
[u'ohern', u'take', u'shoot', u'lead', u'master']
[u'ombudsman', u'call', u'attent', u'birth']
[u'opposit', u'criticis', u'elect', u'surgeri', u'wait']
[u'opposit', u'demand', u'gambier', u'health', u'inquiri']
[u'opposit', u'object', u'polic', u'view', u'nuttal']
[u'packer', u'deni', u'say', u'upset', u'dad', u'good']
[u'pair', u'jail', u'stab', u'hobart']
[u'paradis', u'disappoint', u'tradit', u'owner']
[u'parliament', u'secur', u'upgrad', u'affect', u'access', u'green']
[u'pilot', u'injur', u'helicopt', u'crash']
[u'plan', u'darwin', u'water', u'suppli', u'toad', u'free']
[u'downplay', u'costello', u'leadership', u'pledg']
[u'polic', u'charg', u'second', u'person', u'gunn', u'payrol']
[u'polic', u'dont', u'recommend', u'prosecut', u'nuttal']
[u'polic', u'report', u'dazzl', u'meteor']
[u'pont', u'defend', u'beamer', u'claim']
[u'port', u'hedland', u'mark', u'cyclon', u'joan']
[u'port', u'play', u'price', u'premiership', u'comedown']
[u'premier', u'seek', u'detail', u'saddam', u'bodyguard']
[u'prison', u'boss', u'reject', u'manag', u'incompet', u'claim']
[u'propos', u'plant', u'network', u'upgrad', u'hunter']
[u'push', u'biyear', u'literaci', u'test']
[u'jail', u'indonesia', u'drug', u'possess']
[u'recycl', u'return', u'kalgoorli', u'boulder']
[u'rejuven', u'lanka', u'readi', u'second', u'india', u'test']
[u'repeat', u'dolphin', u'strand', u'puzzl', u'author']
[u'research', u'investig', u'drunken', u'wasp']
[u'tinto', u'diamond', u'expans']
[u'compani', u'win', u'defenc', u'contract']
[u'saddam', u'refus', u'appear']
[u'saddam', u'iraqi', u'lawyer', u'threaten']
[u'saff', u'seek', u'barley', u'price', u'meet']
[u'govt', u'reject', u'cut']
[u'scientist', u'excit', u'iron', u'rich', u'super', u'rice']
[u'scientist', u'gear', u'antarct', u'krill', u'research']
[u'scientist', u'prepar', u'major', u'voyag']
[u'sever', u'storm', u'hit', u'great', u'lake']
[u'shire', u'hold', u'high', u'hop', u'shop', u'centr']
[u'smith', u'declar', u'protea', u'bounc']
[u'sorenstam', u'vow', u'major']
[u'special', u'list', u'propos', u'gallipoli']
[u'storm', u'knock', u'power']
[u'storm', u'lash']
[u'sugar', u'grower', u'welcom', u'higher', u'price']
[u'suicid', u'top', u'youth', u'concern', u'studi']
[u'sunday', u'get', u'editor']
[u'supermax', u'transfer', u'polit', u'say', u'commission']
[u'suspend', u'wine', u'contract', u'investig']
[u'sydney', u'nuclear', u'reactor', u'consult', u'near']
[u'tag', u'whale', u'shark', u'like', u'eat', u'indonesia']
[u'telstra', u'bush', u'boss', u'stand']
[u'telstra', u'research', u'cut', u'voip', u'game']
[u'tender', u'close', u'lake', u'feder', u'land']
[u'court', u'ban', u'tortur', u'evid', u'hear']
[u'tourism', u'industri', u'beat', u'summer', u'start']
[u'tribut', u'flow', u'lennon', u'year']
[u'truck', u'lobbi', u'dismiss', u'rail', u'network', u'claim']
[u'uefa', u'await', u'report', u'essien', u'horror', u'tackl']
[u'welcom', u'drought', u'fund', u'extens']
[u'wallabi', u'play', u'ireland', u'perth']
[u'wall', u'street', u'post', u'moder', u'loss']
[u'word', u'erupt', u'state', u'circl', u'display', u'unit']
[u'wast', u'dump', u'ahead']
[u'water', u'stress', u'gum']
[u'waugh', u'open', u'sport', u'project', u'tsunami', u'area']
[u'west', u'offer', u'knight', u'reassur', u'deal']
[u'william', u'pull', u'breakaway', u'threat']
[u'wise', u'hit', u'bushrang']
[u'woman', u'guilti', u'mother', u'attempt', u'murder', u'despit']
[u'wooli', u'cashier', u'face', u'theft', u'charg']
[u'wool', u'industri', u'benefit', u'pesticid', u'safeti', u'push']
[u'world', u'secur', u'focus', u'english', u'dutch']
[u'zoo', u'answer', u'question', u'eleph', u'facil']
[u'take', u'human', u'right', u'award']
[u'seek', u'telco', u'action', u'consum', u'overspend']
[u'seek', u'cross', u'border', u'water', u'agreement']
[u'adelaid', u'host', u'world', u'sick']
[u'aerial', u'locust', u'spray', u'continu']
[u'agassi', u'doubt', u'australian', u'open']
[u'age', u'care', u'home', u'get', u'bed']
[u'marshal', u'stand', u'plane', u'shoot']
[u'angola', u'demolish', u'slum', u'home']
[u'anim', u'live', u'diabol', u'condit']
[u'rais', u'hec', u'fee']
[u'appeal', u'inform', u'miss', u'teenag']
[u'arm', u'robberi', u'suspect', u'remand', u'custodi']
[u'asean', u'minist', u'push', u'kyi', u'releas']
[u'recov', u'earli', u'slide']
[u'aust', u'film', u'content', u'prompt', u'govt', u'fund', u'withdraw']
[u'aust', u'join', u'post', u'kyoto', u'climat', u'talk']
[u'aust', u'troop', u'stay', u'iraq']
[u'baghdad', u'bomb', u'kill']
[u'beef', u'industri', u'urg', u'maintain', u'clean', u'green', u'imag']
[u'bennett', u'quit', u'kangaroo', u'coach']
[u'bennett', u'resign']
[u'chang', u'afoot', u'rocki', u'airport']
[u'crowd', u'air', u'mareeba', u'hospit', u'fear']
[u'bird', u'kill', u'thai']
[u'boat', u'navig', u'safeti', u'boost', u'coral']
[u'boje', u'injuri', u'cloud', u'south', u'african']
[u'bond', u'lose', u'claim', u'compens']
[u'bone', u'diseas', u'risk', u'high', u'older', u'research']
[u'reptil', u'destin', u'black', u'market', u'uncov']
[u'kill', u'chicago', u'plane', u'accid']
[u'brumbi', u'defend', u'move', u'stop', u'freeway', u'document']
[u'bushrang', u'lead', u'junction', u'oval']
[u'caesarean', u'section', u'percent']
[u'capit', u'outclass']
[u'carrigan', u'gear', u'game', u'gold', u'coast', u'event']
[u'cattlemen', u'group', u'neutral', u'nuclear', u'dump', u'debat']
[u'central', u'host', u'australia', u'camel', u'auction']
[u'centrelink', u'raid', u'north', u'coast', u'plantat']
[u'claim', u'serv', u'peta', u'mules', u'case']
[u'clark', u'name', u'test', u'squad']
[u'coast', u'brace', u'strong', u'holiday', u'tourism']
[u'communiti', u'ask', u'rescu', u'break', u'showground']
[u'confer', u'discuss', u'uncontract', u'grape', u'grower']
[u'council', u'ask', u'consid', u'dump', u'fight', u'fund']
[u'council', u'await', u'price', u'main', u'upgrad']
[u'council', u'outlin', u'plan', u'curb', u'flood']
[u'council', u'debat', u'asbesto', u'remov']
[u'council', u'vote', u'borrow', u'jetti', u'fund']
[u'crash', u'inquest', u'hear', u'urg']
[u'critic', u'level', u'refuge', u'resettl', u'busi']
[u'deport', u'appeal', u'medic', u'attent']
[u'drogba', u'play', u'pain', u'unit', u'feel']
[u'drought', u'continu', u'farmer']
[u'econom', u'boost', u'tip', u'gold', u'price', u'surg']
[u'economist', u'chairman', u'art', u'bodi']
[u'emerg', u'brisban', u'airport']
[u'eriksson', u'wari', u'socceroo', u'draw']
[u'essien', u'charg', u'hamann', u'tackl']
[u'expert', u'solv', u'recept', u'woe']
[u'falconio', u'juror', u'tell', u'asid', u'emot']
[u'falconio', u'juri', u'tell', u'ignor', u'emot']
[u'fall', u'rural', u'confid', u'like', u'wider']
[u'famili', u'senat', u'deni', u'govt', u'deal', u'vote']
[u'famili', u'vote', u'get', u'senat']
[u'fan', u'rememb', u'john', u'lennon']
[u'farmer', u'continu', u'drought']
[u'farm', u'group', u'welcom', u'continu', u'drought']
[u'farm', u'moral', u'recoveri']
[u'fertil', u'year', u'high']
[u'fish', u'boat', u'suspect', u'dolphin', u'meat', u'bait']
[u'fitzi', u'time', u'davi', u'skipper']
[u'fleme', u'reveal', u'fear', u'tumour']
[u'focus', u'assault', u'victim', u'crisi', u'care']
[u'minist', u'wont', u'face', u'crimin', u'charg']
[u'foster', u'care', u'need', u'grow', u'cairn']
[u'fund', u'help', u'continu', u'job']
[u'funer', u'inquiri', u'call', u'cardboard', u'coffin']
[u'gallop', u'deni', u'kucera', u'deal']
[u'glazer', u'stick', u'flounder', u'unit']
[u'gorbi', u'phone', u'home', u'idea', u'need', u'plan']
[u'govt', u'call', u'promot', u'rail', u'travel']
[u'govt', u'sack', u'cudgegong', u'river', u'park', u'trust']
[u'govt', u'consid', u'grain', u'ownership', u'issu']
[u'govt', u'oppos', u'releas', u'scoresbi', u'freeway']
[u'govt', u'region', u'ambul', u'delay']
[u'govt', u'urg', u'invest', u'drug', u'rehab']
[u'greenpeac', u'protest', u'puzzl', u'manag']
[u'gregan', u'break', u'silenc', u'jone', u'sack']
[u'grower', u'consid', u'action', u'wine', u'compani']
[u'guilti', u'verdict', u'matheson', u'trial']
[u'guus', u'readi', u'world']
[u'haddin', u'rescu', u'blue']
[u'health', u'dept', u'suspect', u'sourc']
[u'health', u'servic', u'beat', u'financ']
[u'heavi', u'rain', u'affect', u'grain', u'grower', u'southern']
[u'heritag', u'grant', u'gentlemen', u'club']
[u'hick', u'support', u'hope', u'year']
[u'hill', u'plain', u'plan', u'reveal', u'week']
[u'hospit', u'board', u'tight', u'lip', u'contract']
[u'hostil', u'down', u'plane', u'iraq']
[u'howard', u'vow', u'continu', u'push']
[u'human', u'right', u'chief', u'call', u'right']
[u'iemma', u'warn', u'violenc', u'sydney', u'beach']
[u'approv', u'debt', u'relief', u'packag']
[u'immigr', u'raid', u'target', u'massag', u'firm']
[u'inquiri', u'tell', u'tunnel', u'toll', u'lower']
[u'insur', u'inquiri', u'recommend', u'step']
[u'intel', u'drag', u'market', u'lower']
[u'internet', u'chatroom', u'fear', u'miss', u'teen', u'case']
[u'investig', u'bacteri', u'infect', u'sourc']
[u'inzi', u'fear', u'england', u'comeback']
[u'iranian', u'presid', u'condemn', u'israel', u'comment']
[u'iraqi', u'group', u'claim', u'hostag', u'execut']
[u'iraq', u'stanc', u'concern', u'opposit']
[u'slide', u'chicago', u'runway']
[u'jetstar', u'passeng', u'hospit', u'fume']
[u'johnson', u'name', u'australia', u'super']
[u'joyc', u'elect', u'wangaratta', u'mayor']
[u'kay', u'face', u'fraud', u'charg']
[u'kerri', u'lush']
[u'kiwi', u'campbel', u'take', u'spotlight', u'world', u'challeng']
[u'kununurra', u'busi', u'diamond', u'plan']
[u'labor', u'unit', u'nuttal', u'vote', u'beatti']
[u'literaci', u'recommend', u'place']
[u'littl', u'hope', u'indigen', u'preschool', u'stay', u'open']
[u'littl', u'indigen', u'support', u'nuclear', u'dump', u'group']
[u'local', u'cherri', u'market', u'pressur']
[u'lomu', u'european', u'debut']
[u'lord', u'mayor', u'pleas', u'citi', u'develop', u'plan']
[u'lucindal', u'clean', u'award']
[u'mackay', u'get', u'holiday', u'road', u'safeti', u'boost']
[u'mackay', u'eye', u'primari', u'industri', u'cabinet', u'post']
[u'macquari', u'prepar']
[u'mainten', u'worri', u'grind', u'king', u'chopper']
[u'get', u'weekend', u'detent', u'letter', u'attack']
[u'jail', u'deliber', u'infect', u'partner']
[u'jail', u'rap', u'girlfriend']
[u'mcleish', u'stay', u'ranger']
[u'member', u'mackay', u'elect', u'cabinet']
[u'mike', u'pritchard']
[u'industri', u'urg', u'gold', u'fingerprint']
[u'minist', u'look', u'centr']
[u'miss', u'teen', u'safe', u'melbourn']
[u'molest', u'priest', u'breach', u'trust']
[u'montgomeri', u'learn', u'fate', u'soon']
[u'mori', u'take', u'glori', u'coach', u'role']
[u'promis', u'support', u'storm', u'break', u'hill']
[u'reject', u'anti', u'footbridg', u'claim']
[u'boycott', u'inquiri', u'stash', u'cash', u'affair']
[u'musician', u'guilti', u'strangl', u'girlfriend']
[u'nation', u'action', u'focus', u'steal', u'wag']
[u'nation', u'gympi', u'candid', u'cop', u'filth', u'robert']
[u'near', u'chevron', u'gorgon', u'sell']
[u'name', u'lake', u'macquari', u'council']
[u'demand', u'govt', u'upgrad', u'zonal', u'rebat']
[u'cabinet', u'reshuffl']
[u'north', u'coast', u'storm', u'claim', u'driver', u'life']
[u'sign', u'bird', u'dead', u'bird']
[u'student', u'win', u'travel', u'medallion']
[u'nurs', u'home', u'reject', u'safeti', u'claim']
[u'ohern', u'extend', u'master', u'lead']
[u'ohern', u'maintain', u'master', u'lead']
[u'olymp', u'cyclist', u'gear', u'gold', u'coast', u'event']
[u'oyster', u'grower', u'legal', u'action']
[u'palm', u'seek', u'health', u'staff']
[u'papua', u'starvat', u'death', u'caus', u'alarm']
[u'patel', u'patient', u'fear', u'hospit', u'manag', u'wont']
[u'plane', u'land', u'report', u'smoki', u'cabin']
[u'planet', u'push', u'mobil', u'phone', u'recycl']
[u'investig', u'aust', u'marshal', u'claim']
[u'polic', u'arrest', u'protest', u'vanuatu']
[u'polic', u'consid', u'cronulla', u'messag', u'crime']
[u'polic', u'drop', u'child', u'porn', u'charg', u'bathurst']
[u'polic', u'search']
[u'polit', u'parti', u'unit', u'promot', u'mine']
[u'popul', u'growth', u'hail', u'sign', u'strong', u'economi']
[u'power', u'restor', u'intens', u'storm']
[u'protest', u'face', u'charg', u'defenc', u'base', u'break']
[u'public', u'show', u'littl', u'polic', u'rural', u'watch']
[u'qlds', u'popul', u'hit']
[u'woman', u'appoint', u'head', u'antarct', u'committe']
[u'ranger', u'applaud', u'custom', u'cooper', u'illeg']
[u'rape', u'charg', u'boy', u'dismiss']
[u'rat', u'forc', u'mildura', u'famili', u'home']
[u'region', u'parent', u'remind', u'discount', u'swim']
[u'relat', u'confront', u'polic', u'email', u'photo']
[u'report', u'call', u'camp', u'aborigin', u'tent']
[u'rescu', u'policeman', u'earn', u'braveri', u'award', u'year']
[u'research', u'plead', u'save', u'fish', u'global', u'warm']
[u'resid', u'meet', u'chicken', u'farm', u'plan']
[u'rich', u'reject', u'need', u'onetel', u'cash', u'inject', u'packer']
[u'royal', u'adelaid', u'hospit', u'kitchen', u'link', u'listeria']
[u'royal', u'hobart', u'ineffici', u'committe', u'hear']
[u'urg', u'consid', u'inland', u'rout', u'highway']
[u'ryan', u'urg', u'liber', u'resolv', u'intern', u'woe']
[u'safeti', u'review', u'warn', u'diazinon']
[u'sculli', u'stand', u'hotel', u'closur', u'decis']
[u'senat', u'begin', u'debat']
[u'senat', u'plan', u'abort', u'pill', u'inquiri']
[u'seven', u'yahoo', u'launch', u'digit', u'ventur']
[u'siev', u'peopl', u'smuggler', u'lose', u'appeal']
[u'simon', u'cobb']
[u'charg', u'pine', u'break']
[u'small', u'wave', u'forc', u'world', u'tour', u'postpon']
[u'smith', u'recoveri', u'boost', u'south', u'africa']
[u'smooth', u'govern', u'negoti', u'tasmania', u'rail']
[u'sovereign', u'hill', u'put', u'christma', u'casual']
[u'storm', u'damag', u'estim']
[u'storm', u'help', u'boost', u'water', u'suppli']
[u'studi', u'find', u'small', u'region', u'birth', u'unit', u'safer']
[u'support', u'seek', u'telstra', u'sale', u'referendum']
[u'sydney', u'brace', u'tough', u'night', u'saprissa']
[u'tambrey', u'subdivis', u'sale', u'begin']
[u'jobless', u'rate', u'high', u'minist', u'say']
[u'team', u'name', u'star', u'clash']
[u'telstra', u'expect', u'gain', u'hong', u'kong', u'merger']
[u'tension', u'heighten', u'ahead', u'king', u'clash']
[u'tension', u'heighten']
[u'tent', u'embassi', u'plan', u'releas']
[u'thousand', u'fish', u'evan', u'head', u'fish', u'kill']
[u'trade', u'motiv', u'iraq', u'troop', u'plan', u'green']
[u'train', u'boost', u'famili', u'care', u'provid']
[u'tran', u'tasman', u'feud', u'continu', u'despit', u'resign']
[u'twice', u'strand', u'dolphin', u'monitor']
[u'get', u'green', u'light', u'school']
[u'vanston', u'question', u'futur', u'indigen', u'cultur']
[u'vanston', u'say', u'indigen', u'settlement', u'risk']
[u'vanston', u'cultur', u'museum', u'comment', u'insult', u'labor']
[u'video', u'parodi', u'rock', u'francisco', u'polic']
[u'volunt', u'help', u'bust', u'cane', u'toad', u'popul']
[u'get', u'parliament']
[u'wale', u'eager', u'retain', u'aussi', u'coach', u'johnson']
[u'top', u'nation', u'highest', u'rate', u'caesarean']
[u'window', u'accid', u'claim', u'man', u'life']
[u'woman', u'face', u'pine', u'charg', u'break', u'claim']
[u'xstrata', u'plan', u'social', u'scheme', u'spend', u'boost']
[u'aborigin', u'push', u'land', u'handov']
[u'accc', u'warn', u'internet', u'scam']
[u'flight', u'ground', u'darfur', u'violenc', u'worsen']
[u'aussi', u'share', u'asian', u'master', u'lead']
[u'aussi', u'advanc', u'world', u'team', u'squash', u'event']
[u'aussi', u'test', u'talent', u'pool']
[u'aust', u'japan', u'agre', u'collabor', u'iraq', u'plan']
[u'australia', u'sign', u'asean', u'treati']
[u'australia', u'sign', u'asean', u'treati']
[u'aust', u'soccer', u'offici', u'unconcern', u'brazilian']
[u'author', u'probe', u'emerg', u'jetstar', u'land']
[u'author', u'test', u'tourist', u'bushfir', u'warn']
[u'bangladesh', u'arrest', u'explos', u'supplier']
[u'beatti', u'deni', u'step', u'nuttal', u'issu']
[u'bennett', u'take', u'tough', u'decis', u'quit']
[u'bennett', u'tight', u'lip', u'reason', u'departur']
[u'black', u'cap', u'steal', u'thrill', u'victori']
[u'bomb', u'scare', u'cut', u'patronag']
[u'britain', u'admit', u'knowledg', u'isra', u'nuclear', u'deal']
[u'british', u'booki', u'instal', u'brazil', u'favourit']
[u'budget', u'squeez', u'blame', u'poor', u'park', u'upkeep']
[u'bulgaria', u'withdraw', u'troop', u'iraq']
[u'bushfir', u'warn', u'trial']
[u'busi', u'council', u'push', u'water', u'share', u'agreement']
[u'campaign', u'boost', u'board', u'hous', u'number']
[u'canberra', u'storm', u'like', u'rise']
[u'charl', u'darwin', u'student', u'union', u'condemn']
[u'climat', u'deleg', u'readi', u'begin', u'round']
[u'club', u'mull', u'poki', u'offer']
[u'commemor', u'bring', u'human', u'right']
[u'croat', u'crime', u'suspect', u'bind', u'hagu']
[u'downer', u'increas', u'pressur', u'burma']
[u'downer', u'sign', u'asean', u'pact']
[u'draw', u'beck', u'dream', u'lift', u'world']
[u'eas', u'drought', u'lift', u'farmer', u'spirit']
[u'ecuadorean', u'woman', u'declar', u'world', u'oldest']
[u'educ', u'program', u'target', u'illeg', u'fisher']
[u'egyptian', u'kidnap', u'iraq']
[u'elliott', u'gillespi', u'redback', u'home']
[u'embassi', u'protest', u'like', u'aust', u'green']
[u'emerg', u'jetstar', u'land', u'blame', u'luggag']
[u'iran', u'decemb', u'talk', u'diplomat']
[u'farmer', u'think', u'twice', u'crop']
[u'flintoff', u'sparkl', u'england']
[u'futuna', u'airstrip', u'upgrad', u'cost', u'million']
[u'gazza', u'escap', u'assault', u'charg']
[u'georgeson', u'track', u'world', u'titl']
[u'germani', u'russia', u'launch', u'work', u'baltic', u'pipelin']
[u'green', u'urg', u'tighter', u'rule', u'truck', u'load']
[u'gungahlin', u'meet', u'consid', u'detent', u'centr', u'plan']
[u'health', u'safeti', u'offic', u'investig', u'woman', u'death']
[u'health', u'campaign', u'eas', u'hospit', u'load']
[u'heibei', u'blast', u'toll', u'rise']
[u'hezbollah', u'offici', u'escap', u'unharm', u'attack']
[u'hong', u'kong', u'brace', u'protest']
[u'hussey', u'onslaught', u'put', u'kiwi', u'rope']
[u'iemma', u'refus', u'hand', u'sapphir', u'coast']
[u'indian', u'japanes', u'research', u'quest']
[u'indonesian', u'film', u'festiv', u'director', u'slam', u'aust']
[u'inform', u'climat', u'deal', u'reach']
[u'intel', u'scoff', u'laptop']
[u'isra', u'navi', u'kill', u'swim', u'palestinian']
[u'jabiru', u'begin', u'search']
[u'jetstar', u'urg', u'charg', u'cabin', u'fume', u'incid']
[u'jockey', u'threaten', u'strike', u'worker']
[u'joyc', u'blast', u'colleagu', u'vote']
[u'kalli', u'confid', u'play', u'test']
[u'kate', u'moss', u'ink', u'virgin', u'contract']
[u'king', u'continu', u'win', u'way']
[u'kyoto', u'stanc', u'cost', u'australia']
[u'lille', u'give', u'protea', u'thumb']
[u'listeria', u'case', u'prompt', u'menu', u'chang']
[u'reject', u'derisori', u'macquari', u'bank']
[u'remand', u'custodi', u'alleg', u'stab']
[u'minist', u'disappoint', u'outcom']
[u'relic', u'discov', u'propos', u'darwin', u'suburb']
[u'mugab', u'criticis', u'envoy']
[u'kindi', u'teacher', u'earn', u'pariti']
[u'polic', u'kill', u'taliban', u'raid', u'afghanistan']
[u'korea', u'attack', u'crimin', u'regim', u'remark']
[u'sack', u'faulti', u'polic', u'vest']
[u'hospit', u'unsaf', u'understaf']
[u'ponder', u'funer', u'industri', u'recommend']
[u'ohern', u'lead', u'master', u'allenbi', u'lurk']
[u'olymp', u'park', u'make', u'solar', u'citi', u'short', u'list']
[u'opec', u'maintain', u'product', u'quota']
[u'opinion', u'great', u'draw', u'australia']
[u'popov', u'excit', u'tough', u'world', u'draw']
[u'privaci', u'protect', u'health', u'studi', u'volunt']
[u'qanta', u'electr', u'wheelchair', u'anger', u'disabl']
[u'ranger', u'strong', u'boomer']
[u'redback', u'restrict', u'tiger', u'hobart']
[u'cross', u'codifi', u'rule', u'target', u'terror', u'crime']
[u'right', u'protest', u'hickss', u'releas']
[u'road', u'spike', u'cross', u'border', u'chase']
[u'salvo', u'appeal', u'hamper', u'donat']
[u'slow', u'santa', u'give', u'sack']
[u'socceroo', u'draw', u'world', u'champion', u'brazil']
[u'socceroo', u'face', u'major', u'challeng', u'hiddink']
[u'stalker', u'spook', u'robbi', u'william']
[u'student', u'associ', u'warn', u'affect', u'servic']
[u'tailor', u'upgrad', u'boost', u'airport', u'secur']
[u'tamil', u'tiger', u'threaten', u'return']
[u'tendulkar', u'slam', u'record', u'test', u'centuri']
[u'theme', u'park', u'claim', u'dolphin', u'breed', u'breakthrough']
[u'face', u'court', u'sydney', u'newsread', u'stab']
[u'polic', u'face', u'charg', u'brazilian', u'death']
[u'blast', u'iranian', u'presid', u'anti', u'israel', u'remark']
[u'confer', u'breath', u'life', u'kyoto', u'protocol']
[u'univers', u'student', u'voic', u'anger']
[u'author', u'probe', u'dead', u'runway', u'accid']
[u'militari', u'probe', u'video', u'iraqi', u'civilian']
[u'reject', u'terror', u'suspect', u'access']
[u'victoria', u'eye', u'piec']
[u'legisl']
[u'mean', u'thousand', u'loss', u'opposit']
[u'prompt', u'offic', u'attack', u'field']
[u'aborigin', u'detent', u'rate', u'surpris']
[u'wallabi', u'export', u'decis', u'spark', u'anim', u'welfar', u'fight']
[u'wineri', u'stay', u'canadian', u'hand']
[u'welfar', u'sector', u'fear', u'poki']
[u'injur', u'fuel', u'depot', u'explos']
[u'aborigin', u'ralli', u'tugun', u'bypass', u'rout']
[u'hous', u'afford', u'improv']
[u'actor', u'suspect', u'polic', u'shoot']
[u'renew', u'kopassus', u'tie']
[u'adler', u'disciplin', u'make', u'busi', u'call']
[u'aqsa', u'milit', u'kill', u'bomb']
[u'allenbi', u'complet', u'tripl', u'crown', u'master']
[u'select', u'elect', u'candid']
[u'applic', u'seek', u'road', u'safeti', u'grant']
[u'aussi', u'soliman', u'fail', u'middleweight']
[u'aussi', u'squash', u'player', u'cruis', u'second', u'round']
[u'australia', u'kyoto', u'stanc', u'unten']
[u'aust', u'resum', u'train', u'indon', u'special', u'forc']
[u'beach', u'list', u'tip', u'boost', u'tourism']
[u'beatti', u'urg', u'religi', u'toler']
[u'better', u'sign', u'protea', u'kalli', u'doubt']
[u'bomb', u'ampute', u'walk', u'aisl']
[u'bullet', u'snatch', u'breaker']
[u'bushrang', u'contain', u'bull', u'batsmen']
[u'bushrang', u'humbl', u'bull']
[u'urg', u'prevent', u'work']
[u'chamber', u'confess', u'extend']
[u'chelsea', u'extend', u'lead', u'arsenal', u'slump']
[u'china', u'acknowledg', u'protest', u'death', u'report']
[u'china', u'arrest', u'offici', u'fatal', u'shoot']
[u'civic', u'redevelop', u'need', u'urgent', u'action', u'busi']
[u'clark', u'charg', u'challeng', u'lead']
[u'climat', u'confer', u'agre', u'extend', u'kyoto']
[u'club', u'surreal', u'forc', u'close', u'follow', u'complaint']
[u'comedian', u'richard', u'pryor', u'die']
[u'cooper', u'need', u'kyoto', u'campbel']
[u'council', u'plan', u'staff', u'drug', u'test']
[u'council', u'urg', u'independ', u'oversight', u'civic', u'revamp']
[u'cronulla', u'attack', u'beachgoer']
[u'cycl', u'chief', u'blast', u'tour', u'obscen']
[u'darwin', u'polic', u'locat', u'miss', u'woman', u'children']
[u'deadlin', u'pass', u'iraq', u'hostag']
[u'declar', u'protect', u'otway', u'time']
[u'downer', u'envisag', u'east', u'asia', u'trade', u'zone']
[u'east', u'timor', u'visit', u'cuba']
[u'egyptian', u'kill', u'iraq', u'word', u'hostag']
[u'elliott', u'gillespi', u'redback', u'home']
[u'welcom', u'kyoto', u'outcom']
[u'assist', u'recruit', u'effort']
[u'explos', u'hear', u'north', u'london']
[u'explos', u'near', u'london', u'airport', u'appear']
[u'explos', u'rock', u'london', u'fuel', u'depot']
[u'fairweath', u'wait', u'news', u'comm', u'game', u'select']
[u'fear', u'jabiru', u'leav', u'doctor']
[u'fiji', u'cancel', u'invest', u'approv']
[u'fiorentina', u'second', u'seri']
[u'fishermen', u'fork', u'european', u'return']
[u'fisher', u'put', u'hand', u'wallabi']
[u'flame', u'stay', u'aliv', u'adelaid', u'feel', u'heat']
[u'melbourn', u'mayor', u'criticis', u'game', u'spend']
[u'senat', u'eugen', u'mccarthi', u'die']
[u'soldier', u'kill', u'iraq']
[u'futur', u'sweet', u'canegrow']
[u'govt', u'hail', u'primari', u'student', u'test', u'result']
[u'helicopt', u'crew', u'locat', u'miss', u'fishermen']
[u'helicopt', u'pluck', u'prison', u'french', u'jail']
[u'hous', u'lobbi', u'call', u'extra', u'govt', u'fund']
[u'hussey', u'play', u'form', u'blitz']
[u'iaea', u'baradei', u'receiv', u'nobel', u'peac', u'prize']
[u'iemma', u'reopen', u'cliff', u'bridg']
[u'iran', u'suprem', u'leader', u'back', u'israel', u'claim']
[u'iraq', u'histori', u'footbal', u'gold']
[u'jetstar', u'signific', u'pocket', u'cabin']
[u'journalist', u'union', u'criticis', u'nuttal', u'vote', u'coverag']
[u'king', u'continu', u'win']
[u'kookaburra', u'swamp', u'germani', u'champion', u'trophi']
[u'lifesav', u'extend', u'holiday', u'patrol']
[u'lomu', u'make', u'tentat', u'cardiff', u'debut']
[u'charg', u'aggrav', u'assault', u'teen']
[u'markov', u'mend']
[u'miss', u'iceland', u'crown', u'miss', u'world']
[u'attack', u'cronulla', u'beachgoer']
[u'mental', u'shame', u'polic', u'commission']
[u'mower', u'accid', u'injuri', u'alarm', u'doctor']
[u'mundin', u'green', u'bout', u'tonight']
[u'murali', u'kumbl', u'spin', u'test']
[u'murgon', u'elect', u'farmer', u'mayor']
[u'offic', u'direct', u'health', u'crisi', u'respons']
[u'place', u'like', u'home', u'hitchhik', u'hound']
[u'toughen', u'law', u'attack', u'lifesav']
[u'offic', u'foil', u'appar', u'prison', u'escap', u'attempt']
[u'offici', u'attribut', u'nigerian', u'plane', u'crash']
[u'ohern', u'maintain', u'stroke', u'lead']
[u'kill', u'nigerian', u'plane', u'crash']
[u'pedestrian', u'death', u'prompt', u'christma', u'warn']
[u'perth', u'pair', u'receiv', u'nobel', u'prize', u'medicin']
[u'perth', u'record', u'cool', u'start', u'summer']
[u'plan', u'inciner', u'pollut', u'sydney', u'water']
[u'poker', u'machin', u'reduct']
[u'poland', u'investig', u'secret', u'prison', u'claim']
[u'polic', u'hold', u'concern', u'miss', u'famili']
[u'polic', u'search', u'elder', u'jogger', u'attack']
[u'polic', u'union', u'want', u'inquiri', u'faulti', u'vest']
[u'polic', u'urg', u'caution', u'incid']
[u'polish', u'probe', u'prison', u'alleg']
[u'princ', u'charl', u'question', u'diana', u'death']
[u'sugar', u'credit', u'rat', u'lower', u'ahead']
[u'resid', u'opportun', u'voic', u'concern']
[u'ronaldo', u'peac', u'prize', u'mission']
[u'govt', u'make', u'road', u'cycl', u'park', u'realiti']
[u'school', u'teacher', u'stab', u'primari', u'school', u'student']
[u'solo', u'australian', u'protest', u'urg', u'freer', u'trade']
[u'sorenstam', u'lead', u'intern', u'team', u'victori']
[u'suicid', u'blast', u'injur', u'civilian', u'afghanistan']
[u'surf', u'georgeson', u'play', u'wait', u'game']
[u'tasmania', u'censor', u'public', u'librari', u'access']
[u'tendulkar', u'centuri', u'make', u'machin', u'set', u'record']
[u'tendulkar', u'celebr', u'record', u'centuri']
[u'tension', u'high', u'cronulla', u'beach']
[u'arrest', u'newsread', u'stab']
[u'total', u'ban', u'prepar', u'scorch']
[u'treati', u'kill', u'howard', u'doctrin', u'rudd']
[u'trust', u'call', u'road', u'safeti', u'submiss']
[u'convict', u'nun', u'murder', u'brazil']
[u'unpaid', u'bill', u'like', u'derail', u'railway', u'societi']
[u'warn', u'servic']
[u'victorian', u'batsman', u'liam', u'buchanan']
[u'villarr', u'sociedad']
[u'violenc', u'move', u'maroubra', u'report']
[u'track', u'budget', u'surplus']
[u'warn', u'psychologist', u'jibe', u'protea']
[u'world', u'oldest', u'woman', u'reveal', u'tast', u'donkey', u'milk']
[u'govt', u'deal', u'fund', u'factori', u'takeov']
[u'queensland', u'live', u'caravan', u'park']
[u'bridg', u'open']
[u'accid', u'victim', u'name']
[u'get', u'fire', u'rang']
[u'evalu', u'anti', u'terror', u'law', u'keelti']
[u'akmal', u'shoaib', u'power', u'pakistan']
[u'alstonvill', u'resid', u'seek', u'quick', u'action']
[u'alumni', u'ask', u'fund', u'servic']
[u'angel', u'win', u'murgon', u'elect']
[u'anna', u'contain']
[u'anxious', u'wait', u'student', u'year', u'result']
[u'armidal', u'victim', u'die']
[u'armidal', u'student', u'welcom', u'compulsori']
[u'arson', u'suspect']
[u'ashburton', u'appoint', u'anger', u'onslow', u'resid']
[u'ash', u'star', u'flintoff', u'win', u'sport', u'award']
[u'aussi', u'snare', u'english', u'fast', u'bowl', u'coach']
[u'australia', u'protea', u'warn', u'verbal', u'spar']
[u'australia', u'south', u'africa', u'warn', u'verbal', u'spar']
[u'author', u'disappoint', u'mundin', u'lose', u'perth']
[u'averag', u'year', u'harvest', u'grain', u'produc']
[u'aviat', u'compani', u'seek', u'legal', u'advic', u'aerodrom']
[u'bank', u'financ', u'sector', u'push', u'market', u'higher']
[u'ban', u'life', u'driver', u'jail', u'offenc']
[u'bashir', u'lawyer', u'review']
[u'beirut', u'bomb', u'kill', u'anti', u'syrian']
[u'farewel']
[u'bomb', u'explod', u'athen']
[u'brilliant', u'ronaldinho', u'keep', u'barca']
[u'brunswick', u'makeov', u'design', u'attract', u'tourist']
[u'buffalo', u'export', u'caus', u'optim']
[u'camel', u'auction', u'success']
[u'accid', u'investig', u'continu']
[u'cattl', u'baron', u'farewel', u'wednesday']
[u'charlevill', u'get', u'medic', u'chief']
[u'check', u'kopassus', u'train', u'opposit']
[u'children', u'injur', u'train', u'ride', u'accid']
[u'christma', u'coco', u'reef', u'good', u'shape', u'research']
[u'christma', u'australian', u'say', u'bishop']
[u'combin', u'station', u'open', u'kalgoorli']
[u'commod', u'export', u'tip', u'rise']
[u'commonwealth', u'game', u'right', u'approv']
[u'communiti', u'opposit', u'save', u'highway', u'tree']
[u'communiti', u'prais', u'fight', u'drug', u'lab']
[u'concern', u'effect', u'rural', u'health']
[u'controversi', u'educ', u'plan', u'school']
[u'cook', u'rememb', u'state', u'funer']
[u'coron', u'criticis', u'casa', u'light', u'plane', u'crash']
[u'coron', u'recommend', u'boxer', u'sign', u'consent', u'contract']
[u'council', u'appoint', u'rais', u'concern']
[u'council', u'consid', u'reduc', u'vehicl', u'access', u'cabl']
[u'council', u'discuss', u'margaret', u'river', u'bypass', u'fund']
[u'croc', u'danger', u'miss', u'play', u'off']
[u'currumbin', u'resid', u'seek', u'support']
[u'dept', u'locust', u'plagu']
[u'doctor', u'back', u'plan', u'opal', u'fuel', u'palm']
[u'doctor', u'warn', u'altern', u'cancer', u'therapi']
[u'donald', u'captur', u'world', u'challeng', u'crown']
[u'dragway', u'project', u'fund', u'question']
[u'drink', u'drive', u'oper', u'nab']
[u'drought', u'condit', u'improv']
[u'drought', u'eas', u'soil', u'moistur', u'concern']
[u'drought', u'eas', u'hunter']
[u'drug', u'run', u'weapon', u'equal', u'murder', u'juri', u'tell']
[u'drug', u'user', u'kill', u'australia', u'reput', u'beazley']
[u'easter', u'event', u'bring', u'million', u'gladston']
[u'elliott', u'sidelin', u'week']
[u'win', u'cast', u'asid', u'fit', u'doubt']
[u'esper', u'detect', u'head', u'perth', u'crime', u'squad']
[u'everton', u'keen', u'kean']
[u'farmer', u'seek', u'shore', u'wine', u'contract']
[u'farmer', u'urg', u'help', u'trial', u'control']
[u'farmer', u'welcom', u'eas', u'drought']
[u'confid', u'ahead', u'deportivo', u'clash']
[u'ferguson', u'bounc', u'say', u'eriksson']
[u'final', u'scrambl', u'world', u'ticket', u'begin']
[u'author', u'prepar', u'high', u'risk', u'season']
[u'ban', u'forc', u'temperatur', u'soar', u'western']
[u'ban', u'forc', u'riverina', u'goulburn', u'valley']
[u'ban', u'effect', u'gippsland', u'week']
[u'blaze', u'fuel', u'depot']
[u'firefight', u'battl', u'inferno', u'depot']
[u'orang', u'season', u'cherri', u'auction']
[u'fishermen', u'question', u'broom']
[u'forest', u'group', u'concern', u'manag', u'nation']
[u'geelong', u'grammar', u'staffer', u'plead', u'guilti']
[u'hobart', u'archbishop', u'die']
[u'scout', u'master', u'jail', u'sexual', u'abus']
[u'govt', u'inject', u'mental', u'health', u'servic']
[u'govt', u'order', u'smallgood', u'produc', u'shut']
[u'govt', u'spend', u'fix', u'school', u'vandal']
[u'govt', u'fleet', u'unman', u'plan']
[u'govt', u'warn', u'indonesian', u'christma', u'terror', u'attack']
[u'griffith', u'look', u'introduc', u'drug', u'test', u'staff']
[u'hewitt', u'hold', u'number', u'rank']
[u'hick', u'like', u'gain', u'citizenship', u'lawyer']
[u'histor', u'church', u'paint', u'restor']
[u'hunter', u'region', u'road', u'death', u'toll', u'continu']
[u'iemma', u'condemn', u'cronulla', u'violenc']
[u'illeg', u'fishermen', u'kill', u'dolphin', u'bait', u'report']
[u'ill', u'spread', u'toowoomba']
[u'indonesian', u'special', u'forc', u'caus']
[u'inquiri', u'begin', u'compani', u'role', u'food']
[u'iraqi', u'search', u'baghdad', u'jail', u'reveal', u'tortur', u'report']
[u'opposit', u'group', u'say', u'vail', u'betray', u'voter']
[u'ittihad', u'beat', u'ah', u'world', u'club', u'open']
[u'japan', u'lift', u'beef']
[u'japanes', u'tomato', u'provid', u'sourc', u'market']
[u'japan', u'lift', u'canadian', u'beef', u'import']
[u'job', u'rise']
[u'john', u'holland', u'worker', u'reinstat']
[u'joyc', u'consid', u'cross', u'bench', u'ask']
[u'juri', u'tell', u'ignor', u'leess', u'evid']
[u'juve', u'extend', u'lead', u'inter', u'milan', u'derbi']
[u'kean', u'join', u'real', u'report']
[u'killer', u'whale', u'rank', u'toxic', u'mammal']
[u'gasp', u'australia', u'champion', u'trophi']
[u'late', u'night', u'christma', u'light', u'viewer', u'irrit']
[u'council', u'call', u'insur', u'chang']
[u'leader', u'condemn', u'sydney', u'race', u'riot']
[u'leader', u'ralli', u'avoid', u'riot']
[u'lebanes', u'group', u'spokesman', u'surpris', u'weekend']
[u'lion', u'bite', u'woman', u'finger']
[u'livestock', u'work', u'say', u'agent']
[u'locust', u'continu', u'plagu', u'rural', u'victoria']
[u'mackenroth', u'tout', u'supercar']
[u'major', u'polic', u'presenc', u'lakemba', u'mosqu']
[u'die', u'charlevill', u'gyrocopt', u'crash']
[u'appear', u'firearm', u'charg']
[u'mcgrath', u'cold']
[u'meander', u'lose', u'money', u'say', u'conserv', u'trust']
[u'media', u'heighten', u'cronulla', u'tension']
[u'merriwa', u'mum', u'campaign', u'matern', u'servic']
[u'mildura', u'campus', u'expect', u'number', u'year']
[u'minist', u'elector', u'offic', u'vandalis', u'amid']
[u'minist', u'tell', u'meddl', u'multicultur']
[u'miss', u'safe']
[u'mooloolaba', u'prepar', u'sail', u'regatta']
[u'mother', u'give', u'birth', u'busi', u'intersect']
[u'muscat', u'ban', u'match']
[u'music', u'festiv', u'patron', u'behav']
[u'head', u'stay']
[u'nation', u'concern', u'futur', u'crop']
[u'servic', u'tip', u'port', u'augusta', u'earli']
[u'plan', u'address', u'weed', u'feral', u'anim', u'problem']
[u'polic', u'station', u'plan', u'scrap']
[u'water', u'bomber', u'west', u'coast']
[u'forc', u'amalgam', u'aborigin']
[u'north', u'burnett', u'public', u'transport', u'lack', u'serisi']
[u'seek', u'brief', u'illeg', u'fish', u'measur']
[u'orang', u'polic', u'station', u'step', u'closer']
[u'packer', u'quiz', u'onetel', u'meet']
[u'paramount', u'buy', u'dreamwork', u'studio']
[u'passeng', u'ignor', u'danger', u'item', u'warn']
[u'pathan', u'miss', u'india', u'strong', u'posit']
[u'peanut', u'compani', u'posit', u'futur', u'tough']
[u'petrol', u'price', u'widen', u'town', u'countri']
[u'plan', u'concern', u'rais', u'wollongbar']
[u'describ', u'cronulla', u'violenc', u'sicken']
[u'polic', u'await', u'confirm', u'dead', u'man', u'ident']
[u'polic', u'grant', u'time', u'prepar', u'terror', u'case']
[u'polic', u'offic', u'disgust', u'drink', u'driver']
[u'polic', u'alert', u'sydney', u'race', u'riot']
[u'polic', u'seek', u'time', u'prepar', u'terror', u'case']
[u'polic', u'seiz', u'iron', u'bar', u'sydney', u'beach']
[u'polic', u'team', u'work', u'identifi', u'rioter']
[u'pollut', u'blame', u'fish', u'kill']
[u'probe', u'continu', u'crash']
[u'probe', u'electrocut']
[u'propos', u'help', u'endang', u'bird']
[u'minist', u'aim', u'stabil']
[u'race', u'time', u'yachtsmen']
[u'race', u'riot', u'engulf', u'sydney', u'suburb']
[u'rail', u'packag', u'anger', u'govt']
[u'rain', u'reduc', u'number', u'drought', u'declar', u'area']
[u'ranger', u'warn', u'illeg', u'fish', u'boat', u'hide']
[u'ranger', u'thank', u'lovenkrand', u'trick']
[u'rare', u'ancient', u'tree', u'ballarat', u'nurseri']
[u'record', u'beat', u'tower', u'open', u'public']
[u'redback', u'rock', u'tiger', u'earli']
[u'reef', u'closur', u'help', u'fish', u'stock', u'say', u'scientist']
[u'region', u'uni', u'voic', u'concern', u'servic']
[u'remain', u'return', u'pilbara']
[u'retail', u'christma', u'start', u'slowli']
[u'rioter', u'come', u'close', u'murder', u'polic']
[u'road', u'safeti', u'campaign', u'jail', u'fatal', u'drink']
[u'sack', u'ansett', u'employe', u'receiv', u'payment']
[u'sale', u'school', u'student', u'head', u'start', u'year']
[u'saprissa', u'beat', u'sydney', u'liverpool', u'clash']
[u'second', u'macquari', u'field', u'inquiri', u'begin']
[u'prepar', u'storm', u'break', u'hill']
[u'sharp', u'lead', u'forc']
[u'south', u'africa', u'take', u'lead', u'final']
[u'south', u'east', u'group', u'share', u'grant', u'money']
[u'stanthorp', u'thrive', u'despit', u'setback']
[u'statu', u'herald', u'sign', u'improv', u'race', u'relat']
[u'steal', u'santa', u'sour', u'season']
[u'storm', u'damag', u'assessor', u'struggl', u'pace']
[u'stuart', u'name', u'kangaroo', u'coach']
[u'stuart', u'quiet', u'kangaroo', u'coach', u'role']
[u'student', u'decid', u'final', u'choic', u'week']
[u'studi', u'highlight', u'indigen', u'financi', u'skill']
[u'suppress', u'order', u'lift', u'confid']
[u'suspect', u'identifi', u'german', u'tourist', u'death']
[u'sutherland', u'mayor', u'shock', u'cronulla', u'violenc']
[u'sydney', u'race', u'riot', u'sicken', u'howard']
[u'syria', u'deni', u'involv', u'bomb']
[u'teenag', u'face', u'traffic', u'charg']
[u'tendulkar', u'tip', u'reach', u'test', u'ton']
[u'test', u'clear', u'riverland', u'patient', u'infect']
[u'thomson', u'slam', u'sledg', u'crackdown']
[u'tiger', u'fight', u'earli', u'slump']
[u'time', u'run', u'drought', u'help', u'sugar', u'farmer']
[u'toll', u'bow', u'accc', u'pressur', u'takeov']
[u'toowoomba', u'retail', u'push', u'sunday', u'trade']
[u'trade', u'talk', u'wast', u'time', u'say', u'trade', u'offici']
[u'tresco', u'call', u'consist', u'dayer']
[u'seri', u'take', u'human', u'right', u'award']
[u'charg', u'mount', u'gambier']
[u'life', u'fatal', u'stab']
[u'investig', u'hand', u'latest', u'report']
[u'project', u'help', u'develop', u'lankan', u'economi']
[u'vengeanc', u'rain', u'crown', u'champ']
[u'farmer', u'seek', u'code', u'conduct', u'horticultur']
[u'vote', u'begin', u'iraq', u'prison', u'hospit']
[u'student', u'servic']
[u'region', u'town', u'host', u'nation', u'sport']
[u'rescu', u'group', u'receiv', u'fund']
[u'cut', u'guarante']
[u'welfar', u'group', u'warn', u'play', u'hous', u'guess']
[u'white', u'supremacist', u'involv', u'sydney', u'race', u'riot']
[u'woman', u'take', u'melbourn', u'wimmera', u'crash']
[u'woman', u'face', u'court', u'stab', u'charg']
[u'woman', u'tout', u'chilean', u'presid']
[u'world', u'victori', u'sven', u'rooney']
[u'xstrata', u'aim', u'reduc', u'emiss']
[u'prefer', u'tender', u'asia', u'pacif', u'contract']
[u'radio', u'current', u'affair', u'journalist', u'strike']
[u'academ', u'criticis', u'chang']
[u'accc', u'unveil', u'small', u'busi', u'helplin']
[u'counter', u'terror', u'differ', u'slight']
[u'afghanistan', u'suicid', u'bomb', u'wound', u'soldier']
[u'alcohol', u'limit', u'calm', u'riot', u'macquari', u'field']
[u'eye', u'kumbl', u'india', u'push', u'victori']
[u'angler', u'fin', u'reef', u'fish', u'closur']
[u'deni', u'booz', u'claim']
[u'arnhem', u'land', u'resid', u'reject', u'cultur', u'museum']
[u'arson', u'suspect', u'lower', u'hunter', u'fire']
[u'ash', u'schedul', u'announc', u'postpon']
[u'falter', u'metal', u'price', u'drop']
[u'aussi', u'round', u'world', u'sailor', u'sight', u'sydney']
[u'australian', u'sid', u'research', u'reject', u'dummi', u'advic']
[u'australia', u'oust', u'world', u'team', u'squash', u'champ']
[u'banter', u'game', u'pont']
[u'beef', u'industri', u'monitor', u'export', u'price']
[u'bendigo', u'brace', u'locust', u'influx']
[u'bigot', u'attack', u'perth', u'famili', u'condemn']
[u'blaze', u'damag', u'council', u'properti']
[u'borga', u'power', u'redback', u'chase']
[u'bugner', u'urg', u'govt', u'regul', u'box']
[u'burdekin', u'water', u'storag', u'consid', u'healthi']
[u'bush', u'put', u'iraqi', u'death', u'toll']
[u'busi', u'activ', u'continu', u'momentum']
[u'busi', u'chamber', u'creat', u'warren']
[u'bypass', u'rout', u'creat', u'indigen', u'heritag', u'fear']
[u'california', u'execut', u'gang', u'leader']
[u'communiti', u'input', u'nation', u'park']
[u'omeo', u'highway', u'fulli', u'seal']
[u'tougher', u'youth', u'crime', u'sentenc', u'consid']
[u'carol', u'night', u'target', u'overnight', u'violenc']
[u'chariti', u'servic', u'close', u'amid', u'volunt', u'abus']
[u'chelsea', u'defenc', u'turn', u'fergi', u'green', u'envi']
[u'civil', u'liberti', u'question', u'rais', u'council', u'drug']
[u'clemenc', u'deni', u'convict', u'killer']
[u'cobb', u'commiss', u'meninde', u'lake', u'paint']
[u'communiti', u'park', u'rezon', u'council', u'meet']
[u'communiti', u'support', u'seek', u'warm', u'water', u'pool', u'plan']
[u'conductor', u'take', u'music', u'gong']
[u'copeton', u'reach', u'year', u'high']
[u'council', u'agre', u'charlestown', u'squar', u'compo', u'deal']
[u'council', u'expect', u'adopt', u'lake', u'water', u'plan']
[u'council', u'urg', u'rethink', u'fire', u'power', u'plant']
[u'court', u'rule', u'hick', u'grant', u'citizenship']
[u'crash', u'probe', u'reveal', u'ship', u'anchor', u'close']
[u'croat', u'general', u'plead', u'guilti', u'crime']
[u'david', u'jone', u'plan', u'flagship', u'store']
[u'death', u'risk', u'diabet', u'doubl', u'remot', u'area']
[u'debat', u'focus', u'miss', u'lake', u'water']
[u'deport', u'peac', u'activist', u'launch', u'legal', u'challeng']
[u'detaine', u'wont', u'releas', u'christma', u'kelli']
[u'detect', u'link', u'child', u'murder']
[u'develop', u'seek', u'council', u'land']
[u'driver', u'disqualifi', u'life', u'charg', u'drink']
[u'drought', u'concern', u'emerg', u'eastern', u'malle']
[u'earthquak', u'measur', u'hit', u'fiji', u'region']
[u'falconio', u'juri', u'question', u'lack', u'bodi']
[u'father', u'face', u'court', u'accus', u'son', u'abduct']
[u'fear', u'hold', u'move', u'indigen', u'offend']
[u'feasibl', u'studi', u'consid', u'scienc', u'technolog']
[u'field', u'maintain', u'deal', u'govt']
[u'firefight', u'extinguish', u'depot', u'inferno']
[u'firefight', u'tackl', u'power', u'station', u'blaze']
[u'fish', u'museum', u'hook', u'council', u'grant']
[u'chairman', u'face', u'crimin', u'charg']
[u'gang', u'leader', u'await', u'execut']
[u'fund', u'dairi', u'farm', u'environment', u'manag']
[u'fund', u'north', u'west', u'tourism', u'plan']
[u'gang', u'rampag', u'sydney', u'street']
[u'gang', u'rampag', u'sydney', u'overnight']
[u'good', u'news', u'injur', u'elliott']
[u'governor', u'head', u'coonabarabran']
[u'govt', u'communiti', u'colleg', u'fund']
[u'graincorp', u'help', u'deliv', u'harvest', u'faster']
[u'grain', u'silo', u'death', u'trigger', u'safeti', u'probe']
[u'grant', u'help', u'curb', u'murray', u'water', u'relianc']
[u'grass', u'claim', u'hectar']
[u'green', u'group', u'campaign', u'coal', u'industri']
[u'group', u'pinpoint', u'calder', u'highway', u'prioriti']
[u'gunbattl', u'erupt', u'west', u'bank', u'citi']
[u'listen', u'spirit', u'bid']
[u'hickss', u'citizenship', u'concern', u'downer', u'say']
[u'dont', u'deserv', u'holiday', u'schumach']
[u'indigen', u'diabet', u'death', u'rate', u'quadrupl', u'nation']
[u'indigen', u'land', u'sale', u'leak', u'public']
[u'indonesia', u'report', u'human', u'bird', u'death']
[u'indonesia', u'send', u'troop', u'monitor', u'australian']
[u'industri', u'group', u'push', u'incom', u'cut']
[u'iranian', u'back', u'shiit', u'militia', u'abus', u'iraqi']
[u'islam', u'council', u'offic', u'damag']
[u'japan', u'beef', u'decis', u'expect']
[u'jobless', u'rate', u'north', u'coast']
[u'judg', u'declar', u'mistrial', u'vioxx', u'trial']
[u'juri', u'expect', u'retir', u'falconio', u'trial']
[u'juri', u'retir', u'falconio', u'trial']
[u'landslid', u'resid', u'closer', u'solut']
[u'lawyer', u'argu', u'packer', u'investig']
[u'lawyer', u'launch', u'court', u'action', u'free', u'bashir']
[u'listeria', u'wont', u'affect', u'port', u'piri', u'meatwork']
[u'local', u'gang', u'meet', u'islam', u'friendship']
[u'local', u'school', u'share', u'state', u'govt', u'fund']
[u'locust', u'consid', u'major', u'riverland', u'threat']
[u'mackinnon', u'snell', u'player', u'award']
[u'malaysia', u'urg', u'australia', u'confront', u'racism']
[u'accus', u'doctor', u'shop', u'face', u'court']
[u'die', u'angl', u'grinder', u'accid']
[u'die', u'walcha', u'truck', u'crash']
[u'lose', u'finger', u'domest']
[u'market', u'weaken', u'initi', u'gain']
[u'matthaus', u'deni', u'draw', u'rig']
[u'mayor', u'concern', u'gold', u'coast', u'briberi', u'claim']
[u'mayor', u'highlight', u'nativ', u'titl', u'claim', u'progress']
[u'mayor', u'lament', u'abattoir', u'closur']
[u'meat', u'industri', u'chief', u'surpris', u'japan', u'beef']
[u'medic', u'board', u'seek', u'patel', u'prosecut', u'hear', u'date']
[u'meet', u'discuss', u'nurs', u'home', u'closur', u'plan']
[u'minist', u'wont', u'interfer', u'cross', u'border', u'council']
[u'student', u'appli', u'studi', u'mildura']
[u'call', u'bundaberg', u'health', u'council', u'shake']
[u'murder', u'investig', u'photo', u'shop']
[u'murdoch', u'guilti', u'falconio', u'murder']
[u'murray', u'look', u'forward', u'origin', u'coach', u'challeng']
[u'nation', u'trust', u'end', u'allianc', u'support']
[u'nativ', u'titl', u'agreement', u'sign', u'coal']
[u'nativ', u'titl', u'deal', u'promis', u'indigen', u'long', u'term']
[u'nero', u'palac', u'close', u'emerg', u'repair']
[u'discoveri', u'need', u'bolster', u'gold', u'industri']
[u'scheme', u'aim', u'curb', u'drink', u'drive']
[u'highlight', u'budget', u'wish', u'list']
[u'evid', u'detaine', u'flight', u'britain']
[u'singl', u'caus', u'surfer', u'smell', u'council']
[u'specif', u'threat', u'indonesian', u'travel']
[u'coach', u'murray', u'realis', u'dream']
[u'ntini', u'injur', u'furnitur', u'removalist', u'taunt']
[u'urg', u'introduc', u'vilif', u'law']
[u'food', u'fin', u'small', u'lawyer']
[u'worri', u'financ']
[u'oxygen', u'shortag', u'result', u'massiv', u'fish', u'kill']
[u'packer', u'deni', u'put', u'famili', u'interest', u'ahead']
[u'pakistan', u'recal', u'afridi']
[u'park', u'offic', u'volunt', u'work', u'whale', u'aliv']
[u'parliament', u'recal', u'riot', u'law', u'crackdown']
[u'parliament', u'recal', u'riot', u'law', u'vote']
[u'pathan', u'play', u'rounder', u'claim']
[u'patrick', u'outrag', u'toll', u'joint', u'ventur']
[u'pegler', u'stand', u'independ', u'state', u'elect']
[u'pell', u'condemn', u'gunfir', u'christma', u'carol']
[u'photo', u'corbi', u'suspect', u'drug', u'dealer', u'take']
[u'pineappl', u'grower', u'contest', u'livingston', u'shire']
[u'polic', u'arrest', u'night', u'violenc']
[u'polic', u'investig', u'fatal', u'stab']
[u'polic', u'investig', u'japanes', u'prostitut', u'claim']
[u'polic', u'probe', u'attack', u'perth', u'famili']
[u'polic', u'extradit', u'murder', u'accus']
[u'polic', u'warn', u'attack', u'vulner']
[u'polit', u'emerg', u'rail', u'fund']
[u'port', u'chief', u'retir']
[u'probe', u'launch', u'council', u'build', u'blaze']
[u'promin', u'sunni', u'politician', u'kill', u'iraq']
[u'public', u'servant', u'accus', u'leak', u'indigen', u'land']
[u'public', u'consult', u'marin', u'park', u'detail']
[u'raaf', u'action', u'need', u'resolv', u'boe', u'disput']
[u'race', u'riot', u'link', u'perth', u'attack', u'unlik', u'polic']
[u'racism', u'emb', u'australian', u'cultur', u'labor']
[u'rain', u'lift', u'spirit', u'remot']
[u'real', u'confirm', u'kean']
[u'region', u'bank', u'growth', u'outshin', u'bigger', u'competitor']
[u'region', u'transport', u'oper', u'safeti', u'spotlight']
[u'resid', u'lose', u'long', u'fight', u'morisset']
[u'resourc', u'market', u'tip', u'fall']
[u'review', u'amp', u'forward', u'communiti']
[u'riot', u'polic', u'face', u'protest', u'talk']
[u'rival', u'sydney', u'gang', u'declar', u'truce']
[u'roman', u'fort', u'woman', u'touch']
[u'rotavirus', u'outbreak', u'hit', u'territori']
[u'rspca', u'inspector', u'hurt', u'seizur']
[u'rudolph', u'doubl', u'centuri', u'lift', u'south', u'african', u'spirit']
[u'seafood', u'sector', u'seek', u'better', u'price']
[u'school', u'power', u'turn', u'green']
[u'asian', u'nation', u'stockpil', u'bird', u'drug']
[u'senat', u'deni', u'committe', u'stack', u'abort']
[u'storm', u'knock', u'power']
[u'serbia', u'convict', u'militia', u'massacr']
[u'sheep', u'export', u'cattl', u'dive']
[u'shire', u'seek', u'agent', u'program', u'assur']
[u'silo', u'death', u'prompt', u'inquiri']
[u'sledg', u'theatr', u'langer']
[u'smallgood', u'compani', u'put', u'custom']
[u'smallgood', u'listeria', u'strain', u'match', u'sampl']
[u'rais', u'fear', u'racial', u'violenc']
[u'snub', u'woewodin', u'consid', u'option']
[u'south', u'durra', u'tree', u'poison', u'label', u'selfish']
[u'southern', u'sydney', u'gang', u'clear', u'unrest']
[u'sport', u'shooter', u'feral']
[u'spur', u'ensur', u'fairytal', u'return', u'redknapp']
[u'strategi', u'crack', u'illeg']
[u'strong', u'earthquak', u'jolt', u'south', u'asia']
[u'student', u'curriculum', u'input', u'idea', u'ludicr']
[u'student', u'result']
[u'studi', u'consid', u'indigen', u'household', u'budget']
[u'studi', u'pinpoint', u'speci', u'face', u'extinct', u'threat']
[u'studi', u'consid', u'emerg', u'servic', u'locat']
[u'subdu', u'hous', u'market', u'curb', u'renov', u'activ']
[u'sudan', u'reject', u'ridicul', u'human', u'right', u'report']
[u'survey', u'highlight', u'support', u'bowral', u'hospit']
[u'swallow', u'nose', u'attach', u'boy', u'face']
[u'swim', u'coach', u'play', u'execut', u'controversi']
[u'sydney', u'polic', u'brace', u'unrest']
[u'sydney', u'riot', u'spark', u'region', u'concern']
[u'sydney', u'violenc', u'threat', u'australia', u'reput']
[u'talli', u'give', u'stuart', u'approv']
[u'teenag', u'drink', u'lead', u'unwant', u'say', u'studi']
[u'tourism', u'group', u'ramp', u'pilbara', u'market']
[u'train', u'stop', u'polic', u'hunt']
[u'crew', u'resum', u'fight', u'depot', u'blaze']
[u'beat', u'region', u'medic', u'school']
[u'unknown', u'group', u'claim', u'lebanes', u'bomb']
[u'probe', u'implic', u'syria', u'hariri', u'death']
[u'unrest', u'damag', u'australia', u'reput', u'howard']
[u'sprinter', u'montgomeri', u'face', u'life']
[u'victorian', u'tradit', u'owner', u'secur', u'histor']
[u'villawood', u'detaine', u'end', u'hunger', u'strike']
[u'violenc', u'continu', u'sydney', u'overnight']
[u'volunt', u'recognis', u'canberra', u'bushfir', u'effort']
[u'word', u'erupt', u'hospit', u'staff']
[u'warwick', u'polocross', u'world', u'squad']
[u'waterway', u'declar', u'wild', u'river']
[u'wheat', u'market', u'accus', u'undermin', u'singl']
[u'whale', u'strand', u'northern', u'tasmania']
[u'wild', u'storm', u'hit', u'deniliquin']
[u'woewodin', u'snub', u'draft']
[u'work', u'parent', u'forc', u'quit', u'care', u'children']
[u'promis', u'trade', u'pact', u'poor']
[u'food', u'process', u'factori', u'boon', u'appl', u'grower']
[u'aapt', u'rayo', u'sydney', u'hobart']
[u'abort']
[u'accus', u'child', u'killer', u'appear', u'court']
[u'action', u'take', u'avoid', u'ship', u'collis']
[u'action', u'group', u'lose', u'challeng', u'ranch']
[u'alburi', u'polic', u'help', u'cronulla', u'crisi']
[u'option', u'consid', u'market', u'open']
[u'andersen', u'retain', u'busi', u'chamber', u'presid']
[u'anim', u'right', u'group', u'fund', u'ethic', u'studi']
[u'applaud', u'montgomeri', u'decis']
[u'asian', u'leader', u'quiz', u'sydney', u'race', u'riot']
[u'asic', u'label', u'corpor', u'chihuahua', u'telstra']
[u'aussi', u'robertson', u'eye', u'major', u'snooker', u'titl']
[u'aussi', u'dutch', u'champion', u'trophi', u'final']
[u'australian', u'arrest', u'cambodia', u'alleg', u'child']
[u'australia', u'junior', u'partner', u'east', u'asia', u'summit']
[u'debt', u'threshold', u'lift', u'phone', u'internet', u'bill']
[u'baggaley', u'anxious', u'tell']
[u'ballarat', u'immun', u'locust', u'threat']
[u'bank', u'energi', u'stock', u'lead', u'market', u'higher']
[u'beatti', u'unhappi', u'latest', u'child', u'abus', u'figur']
[u'better', u'promot', u'wool', u'group', u'chief']
[u'blood', u'vessel', u'discoveri', u'hail', u'dementia']
[u'boe', u'beat', u'airbus', u'qanta', u'contract']
[u'borat', u'go', u'offlin', u'kazakhstan']
[u'british', u'high', u'court', u'rule', u'hick', u'entitl', u'passport']
[u'brokeback', u'mountain', u'lead', u'golden', u'globe', u'nomin']
[u'break', u'hill', u'properti', u'sale']
[u'buffi', u'challeng', u'solar', u'theori']
[u'burn', u'spark', u'tougher', u'regul']
[u'bushfir', u'damag', u'deadlin', u'extend']
[u'workcov', u'probe', u'fatal', u'truck', u'crash']
[u'ceo', u'resign', u'delay', u'rail', u'worker', u'deal']
[u'charg', u'recommend', u'corrupt', u'offic']
[u'commission', u'prais', u'falconio', u'case', u'polic', u'work']
[u'communiti', u'bank', u'moot', u'hall', u'creek']
[u'communiti', u'farewel', u'local', u'govt', u'leader']
[u'compani', u'launch', u'katrina', u'disast', u'tourist', u'trail']
[u'consult', u'urg', u'council', u'reject', u'outrigg']
[u'cooper', u'sharehold', u'vote', u'shut', u'lion', u'nathan']
[u'coron', u'investig', u'escal', u'repair', u'fatal']
[u'corrupt', u'watchdog', u'releas', u'find', u'workcov']
[u'council', u'accus', u'park', u'inact']
[u'council', u'blame', u'fish', u'bird', u'kill']
[u'councillor', u'clarifi', u'water', u'time']
[u'council', u'push', u'intersect', u'black', u'spot']
[u'council', u'resolv', u'worri', u'ocean', u'termin']
[u'council', u'seek', u'meet', u'discuss', u'hacc', u'option']
[u'council', u'hear', u'decommiss', u'septic', u'tank']
[u'council', u'water', u'plan']
[u'court', u'reserv', u'statut', u'decis', u'abus', u'case']
[u'court', u'rule', u'hick', u'british', u'passport']
[u'crimin', u'lawyer', u'defend', u'falconio', u'murder', u'trial', u'cost']
[u'cyclist', u'return', u'road', u'german', u'accid']
[u'charg', u'son', u'drown', u'murder']
[u'defeat', u'councillor', u'challeng', u'result']
[u'demand', u'grow', u'sweet', u'potato']
[u'deputi', u'mayor', u'arrang', u'fund', u'sensibl', u'gold']
[u'doc', u'offer', u'support', u'storm', u'resid']
[u'doctor', u'fin', u'danger', u'drive', u'caus', u'death']
[u'driver', u'urg', u'care', u'despit', u'lower', u'toll']
[u'dumbfound', u'father', u'deni', u'drown', u'son']
[u'east', u'asia', u'summit', u'open']
[u'east', u'asia', u'summit', u'wont', u'replac', u'apec', u'role', u'howard']
[u'educ', u'dept', u'sell', u'hydrotherapi', u'pool']
[u'educ', u'dept', u'wont', u'comment', u'school', u'locat']
[u'electrician', u'strike', u'workplac', u'agreement']
[u'eriksson', u'close', u'finalis', u'world', u'squad']
[u'esper', u'plead', u'guilti', u'child', u'charg']
[u'euro', u'deputi', u'pass', u'anti', u'terror', u'telecom', u'measur']
[u'europ', u'take', u'wheat', u'export']
[u'export', u'bloom', u'frangipani', u'farmer']
[u'fairfax', u'journalist', u'strike', u'stall', u'talk']
[u'falconio', u'famili', u'reliev', u'guilti', u'verdict']
[u'fall', u'consum', u'confid', u'surpris']
[u'farmer', u'grain', u'receiv', u'site', u'worri']
[u'farmer', u'warn', u'labour', u'hire', u'firm', u'concern']
[u'feasibl', u'studi', u'finish', u'longreach', u'rocki']
[u'fisher', u'time', u'seek', u'reef', u'closur', u'compo']
[u'flame', u'final', u'extinguish', u'british', u'fuel', u'depot']
[u'footi', u'club', u'seek', u'grandstand', u'repair']
[u'month', u'jail', u'penrith', u'branch', u'wielder']
[u'gladston', u'graffiti', u'outrag', u'polic']
[u'wheat', u'consid', u'salin', u'solut']
[u'govt', u'confid', u'develop', u'plan', u'ahead']
[u'govt', u'neutral', u'hick', u'decis']
[u'govt', u'plan', u'forc', u'teen', u'patern', u'test']
[u'govt', u'say', u'account', u'claim', u'nonsens']
[u'govt', u'urg', u'stamp', u'illeg', u'industri']
[u'great', u'southern', u'record', u'alcohol', u'relat', u'road']
[u'greec', u'order', u'probe', u'alleg', u'immigr', u'kidnap']
[u'green', u'group', u'challeng', u'fals', u'cape', u'plan']
[u'hariri', u'probe', u'year', u'syria', u'stall']
[u'hear', u'date', u'pine', u'break', u'accus']
[u'heavi', u'polic', u'presenc', u'continu', u'sydney']
[u'hervey', u'bone', u'undergo', u'forens', u'test']
[u'high', u'court', u'accus', u'refuge', u'tribun', u'unfair']
[u'hop', u'artifici', u'reef', u'fish']
[u'hous', u'blaze', u'consid', u'suspici']
[u'hous', u'crisi', u'escal', u'holiday']
[u'hull', u'fli', u'high', u'forc', u'develop']
[u'take', u'jackson', u'say']
[u'inaugur', u'east', u'asia', u'summit', u'end', u'promis']
[u'india', u'drop', u'ganguli', u'test', u'squad']
[u'indigen', u'group', u'attack', u'nativ', u'titl', u'agreement']
[u'indonesian', u'court', u'jail', u'elector', u'commiss', u'chief']
[u'injur', u'pietersen', u'return', u'home']
[u'intens', u'storm', u'hit', u'sunshin', u'coast']
[u'intersect', u'overpass', u'year', u'away']
[u'iranian', u'presid', u'deni', u'holocaust']
[u'iraqi', u'expat', u'vote', u'landmark', u'elect']
[u'iron', u'compani', u'list']
[u'islam', u'council', u'worri', u'copycat', u'riot']
[u'jezzin', u'barrack', u'kiss', u'point', u'forum', u'delay']
[u'juri', u'find', u'guilti', u'partner', u'manslaught']
[u'kalli', u'run', u'time', u'prove', u'fit']
[u'kennett', u'vote', u'hawk', u'presid']
[u'klim', u'miss', u'final', u'doubl', u'dead', u'heat']
[u'kununurra', u'air', u'public', u'hous', u'worri']
[u'strand', u'whale', u'die']
[u'lee', u'input', u'falconio', u'book']
[u'life', u'leav', u'north', u'west', u'mine', u'boom']
[u'littbarski', u'urg', u'charg', u'hold', u'head', u'high']
[u'lobster', u'fishermen', u'unhappi', u'protect', u'area']
[u'lobster', u'industri', u'get', u'help', u'hand']
[u'local', u'govt', u'group', u'doesnt', u'want', u'mandatori', u'councillor']
[u'charg', u'cannabi', u'haul']
[u'charg', u'murder']
[u'face', u'court', u'wife', u'murder']
[u'kill', u'famili', u'fight']
[u'mous', u'human', u'brain', u'cell', u'grow', u'mice']
[u'plead', u'guilti', u'drive', u'offenc', u'claim']
[u'plead', u'guilti', u'kill']
[u'face', u'court', u'shop', u'vandal']
[u'market', u'access', u'critic', u'dairi', u'industri', u'report']
[u'mayor', u'differ', u'sack', u'reason']
[u'mayor', u'play', u'race', u'violenc', u'text', u'messag']
[u'mcgrath', u'shrug', u'kalli', u'hope']
[u'mcmahon', u'lead', u'netbal', u'melbourn']
[u'media', u'account', u'beatti', u'say']
[u'meet', u'discuss', u'land', u'plan']
[u'melbourn', u'teen', u'jail', u'caus', u'high', u'speed', u'death']
[u'melbourn', u'host', u'winner', u'take', u'poker']
[u'guilti', u'cocain', u'possess']
[u'mental', u'guilti', u'murder']
[u'mill', u'lenton', u'fastest', u'qualifi']
[u'industri', u'push', u'women', u'worker']
[u'miner', u'sand', u'project', u'creat', u'job']
[u'montgomeri', u'warn', u'drug', u'cheat']
[u'cannabi', u'plant', u'seiz', u'south', u'west']
[u'mourner', u'farewel', u'murder', u'lebanes', u'politician']
[u'moyn', u'mayor', u'maintain', u'road', u'fund', u'push']
[u'murdoch', u'guilti', u'falconio', u'murder', u'case']
[u'murdoch', u'sentec', u'life', u'jail']
[u'museum', u'face', u'uncertain', u'futur']
[u'open']
[u'beach', u'volleybal', u'centr', u'launch']
[u'servic', u'begin', u'mallacoota']
[u'land', u'valuat', u'delay']
[u'organis', u'boost', u'crayfish', u'industri']
[u'patrol', u'boat', u'target', u'illeg', u'abalon', u'fish']
[u'pipelin', u'save', u'water']
[u'closur', u'falconio']
[u'need', u'bat', u'coach', u'say', u'hayden']
[u'north', u'coast', u'defi', u'home', u'renov', u'slump']
[u'north', u'west', u'undergo', u'map']
[u'million', u'ticket', u'order', u'hour']
[u'pacif', u'nation', u'talk', u'delay']
[u'perth', u'compani', u'begin', u'uranium', u'explor']
[u'plan', u'continu', u'murrayland', u'power', u'station']
[u'plan', u'swing', u'hospit', u'upgrad']
[u'plan', u'afoot', u'protect', u'white', u'tail', u'black', u'cockatoo']
[u'polic', u'investig', u'church', u'attack']
[u'polic', u'offer', u'beach', u'safeti', u'assur']
[u'polic', u'probe', u'messag', u'incit', u'racial', u'violenc']
[u'pont', u'play', u'word']
[u'power', u'storm', u'area']
[u'power', u'look', u'oversea', u'win', u'edg']
[u'premier', u'forecast', u'budget', u'deficit']
[u'public', u'urg', u'watch', u'locust']
[u'push', u'quicker', u'start', u'food', u'label', u'law']
[u'qanta', u'spend']
[u'racial', u'unrest', u'eas']
[u'real', u'pull', u'kean']
[u'recal', u'ham', u'fertilis']
[u'redback', u'control', u'hobart']
[u'region', u'victoria', u'expect', u'feel', u'cut']
[u'remark', u'land', u'mourinho', u'fergi', u'water']
[u'research', u'aim', u'reduc', u'spray', u'impact', u'endang']
[u'resid', u'hold', u'fear', u'propos', u'lead', u'zinc']
[u'round', u'world', u'yachtsmen', u'race', u'sydney']
[u'rule', u'guarante', u'hickss', u'releas']
[u'rural', u'area', u'record', u'jump']
[u'extradit', u'wife', u'death']
[u'scheme', u'offer', u'miner', u'better', u'access', u'indigen']
[u'sculli', u'say', u'polic', u'patrol', u'violenc']
[u'share', u'price', u'jump', u'rate']
[u'sorenstam', u'pull', u'doubl']
[u'stoner', u'move', u'motogp']
[u'strong', u'demand', u'countri', u'energi', u'traineeship']
[u'studi', u'assess', u'nation', u'water', u'market']
[u'sydney', u'church', u'attack']
[u'sydney', u'intern', u'hand', u'hingi', u'wildcard']
[u'sydney', u'polic', u'remain', u'riot', u'watch']
[u'task', u'forc', u'aim', u'lift', u'local', u'backpack', u'industri']
[u'tassi', u'lead', u'home', u'renov']
[u'chang', u'moot', u'solomon']
[u'teen', u'charg', u'machet', u'attack']
[u'teen', u'graduat', u'substanc', u'abus', u'rehab', u'scheme']
[u'telstra', u'disclosur', u'concern', u'market', u'watchdog']
[u'telstra', u'share', u'trade', u'halt', u'pend', u'govt']
[u'wicket', u'kumbl', u'spin', u'india', u'victori']
[u'terri', u'hick', u'delight', u'high', u'court', u'decis']
[u'toilet', u'film', u'land', u'pension', u'jail']
[u'troubl', u'asteroid', u'probe', u'space', u'trip', u'extend']
[u'troubl', u'learn', u'centr', u'seek', u'independ', u'status']
[u'trucki', u'fli', u'hospit', u'highway', u'crash']
[u'unchang', u'rat', u'help', u'stabilis', u'economi']
[u'expect', u'caus', u'loss']
[u'beef', u'shipment', u'japan', u'begin']
[u'claim', u'intern', u'boycott', u'saddam', u'trial']
[u'navi', u'helicopt', u'crash', u'colombia']
[u'rais', u'rat']
[u'sprinter', u'montgomeri', u'ban', u'year']
[u'victoria', u'buy', u'tassi', u'power']
[u'victorian', u'polic', u'riot', u'law', u'wont', u'chang', u'brack']
[u'vietnam', u'vet', u'bush', u'retreat', u'access']
[u'violent', u'crime', u'central', u'australia', u'increas']
[u'vizard', u'chase', u'away', u'burglar']
[u'weed', u'threaten', u'tamworth', u'livestock']
[u'weightlift', u'get', u'year', u'jail', u'kill']
[u'woman', u'arrest', u'murder', u'philippin']
[u'worker', u'save', u'fieri', u'death']
[u'work', u'start', u'paraglid', u'facil', u'boost']
[u'youth', u'alcohol', u'survey', u'result', u'worri', u'drug', u'council']
[u'youth', u'urg', u'involv', u'busi', u'idol']
[u'murray', u'cano', u'marathon']
[u'aborigin', u'land', u'get', u'turn', u'graze']
[u'abort', u'drug', u'inquiri', u'chief', u'stay', u'focus']
[u'abort', u'pill', u'debat']
[u'accc', u'warn', u'unsaf', u'toy']
[u'accus', u'vizard', u'burglar', u'custodi']
[u'akmal', u'lead', u'pakistan', u'rout', u'sorri', u'england']
[u'alcohol', u'warn', u'ahead', u'christma']
[u'want', u'lift']
[u'armstrong', u'face', u'italian', u'defam', u'trial']
[u'armi', u'plan', u'chang', u'oversea', u'mission']
[u'armi', u'billion', u'dollar', u'overhaul']
[u'ash', u'rare', u'trip', u'australia']
[u'athlet', u'welcom', u'montgomeri']
[u'aussi', u'middl', u'order', u'vulner', u'say', u'smith']
[u'aussi', u'better', u'ash', u'shock', u'hayden']
[u'aust', u'armi', u'get', u'revamp']
[u'australian', u'launch', u'vioxx', u'class', u'action']
[u'baker', u'reject', u'weston', u'takeov']
[u'blast', u'hear', u'iraqi', u'vote', u'begin']
[u'bogut', u'come', u'wors', u'shaq', u'showdown']
[u'worker', u'maintain', u'illeg', u'strike']
[u'bracken', u'recal', u'waca', u'clash']
[u'british', u'govt', u'bomb', u'inquiri']
[u'broom', u'plan', u'crack', u'holiday', u'crime']
[u'budget', u'surplus', u'prompt', u'call']
[u'builder', u'begin', u'storm', u'damag', u'repair']
[u'busi', u'tourism', u'support']
[u'cane', u'farm', u'sale', u'rise']
[u'cautious', u'polic', u'boost', u'adelaid', u'patrol']
[u'centrelink', u'offic', u'suspici']
[u'child', u'support', u'group', u'seek', u'court', u'volunt']
[u'class', u'action', u'launch', u'vioxx', u'maker']
[u'cleric', u'deni', u'access', u'asio', u'secur', u'risk']
[u'climat', u'expert', u'issu', u'dire', u'warn']
[u'club', u'group', u'see', u'govt', u'poki', u'offer', u'gambl']
[u'coal', u'reserv', u'provid', u'water', u'town']
[u'coast', u'stamp', u'cigarett', u'butt', u'litter']
[u'committe', u'direct', u'campasp', u'econom', u'growth']
[u'communiti', u'consult', u'lobster', u'studi']
[u'communiti', u'leader', u'want', u'racial', u'tension']
[u'communiti', u'stop', u'rememb', u'patel', u'patient']
[u'communiti', u'urg', u'ignor', u'racist', u'text', u'messag']
[u'connex', u'blame', u'station', u'work', u'laps']
[u'coron', u'uphold', u'plane', u'crash', u'open', u'find']
[u'coron', u'urg', u'seat', u'safeti', u'review']
[u'costello', u'hint', u'cut']
[u'costello', u'unveil', u'cash', u'surplus']
[u'council', u'ask', u'board', u'fund', u'fight', u'wast']
[u'council', u'defend', u'decis', u'fenc', u'drinker']
[u'council', u'onlin', u'develop']
[u'council', u'share', u'road', u'repair', u'fund']
[u'council', u'intersect', u'black', u'spot']
[u'crash', u'policeman', u'face', u'drink', u'drive', u'charg']
[u'cska', u'uefa']
[u'spill', u'benefit', u'farmer']
[u'water', u'pump', u'date']
[u'davi', u'tip', u'sanchez', u'tour', u'defenc']
[u'delahunti', u'challeng', u'minist', u'servic']
[u'develop', u'consid', u'pulp', u'site', u'option']
[u'doubt', u'quash', u'murder', u'convict']
[u'drink', u'patient', u'cost', u'hospit', u'million']
[u'effort', u'import', u'concentr']
[u'elder', u'offend', u'detain', u'home']
[u'elder', u'woman', u'killer', u'jail']
[u'electr', u'fault', u'like', u'caus', u'centrelink', u'blaze']
[u'england', u'clinch', u'world', u'team', u'squash', u'titl']
[u'england', u'intens', u'ash', u'tour', u'australia']
[u'extens', u'grant', u'busselton', u'hospit', u'comment']
[u'fairbairn', u'host', u'base']
[u'falconio', u'killer', u'face', u'year', u'jail']
[u'fall', u'kill', u'convict', u'murder']
[u'father', u'charg', u'son', u'death', u'seek', u'bail']
[u'fear', u'diseas', u'risk', u'fruit', u'grower', u'abandon']
[u'financi', u'backer', u'seek', u'tourist', u'train']
[u'fish', u'industri', u'warn', u'marin', u'park', u'impact']
[u'food', u'giant', u'readi', u'return']
[u'freeway', u'crash', u'put', u'trucki', u'hospit']
[u'good', u'riddanc', u'hick', u'renounc', u'citizenship']
[u'goorjian', u'wari', u'form', u'tiger']
[u'govt', u'accus', u'health', u'cover', u'cultur']
[u'govt', u'consid', u'marin', u'protect', u'zone']
[u'govt', u'unveil', u'armi', u'restructur', u'plan']
[u'govt', u'unveil', u'billion', u'dollar', u'defenc', u'plan']
[u'govt', u'urg', u'nrma', u'review', u'repair']
[u'govt', u'steal', u'wag', u'compo']
[u'group', u'vote', u'break', u'away', u'multicultur']
[u'guid', u'lessen', u'book', u'risk']
[u'hawk', u'urg', u'address', u'palestinian', u'statehood']
[u'health', u'crisi', u'loom', u'helen']
[u'health', u'servic', u'call', u'oncolog', u'unit', u'extens']
[u'health', u'servic', u'beat', u'find', u'denman']
[u'hill', u'reject', u'resign', u'talk']
[u'histor', u'deal', u'end', u'veteran', u'squat', u'disput']
[u'home', u'owner', u'urg', u'insur', u'cyclon', u'season']
[u'hospit', u'extens', u'allow', u'senior', u'option']
[u'hundr', u'respect', u'cattl', u'baron']
[u'indigen', u'group', u'oppos', u'lake', u'drain']
[u'injur', u'kalli', u'win', u'repriev']
[u'inn', u'human', u'right', u'commission']
[u'insur', u'sue', u'train', u'death']
[u'intersect', u'black', u'spot', u'work', u'restrict', u'traffic']
[u'inzamam', u'want', u'super', u'rule', u'scrap']
[u'iranian', u'leader', u'holocaust', u'remark', u'disturb', u'downer']
[u'iraq', u'extend', u'tortur', u'investig']
[u'iraqi', u'poll', u'station', u'sweden', u'bomb']
[u'iraqi', u'voter', u'ignor', u'sporad', u'violenc']
[u'isra', u'strike', u'target', u'milit']
[u'firm', u'take', u'health', u'disput', u'court']
[u'jail', u'ugandan', u'opposit', u'leader', u'contest']
[u'kalgoorli', u'camera', u'instal', u'year']
[u'kempsey', u'altern', u'indigen', u'sentenc']
[u'kerkow', u'edg', u'glasson', u'game', u'spot']
[u'kookaburra', u'storm', u'champion', u'trophi', u'final']
[u'kurdish', u'group', u'terrorist', u'list']
[u'landhold', u'lose', u'wast', u'water']
[u'land', u'valuat', u'chang', u'spark', u'rate', u'rise']
[u'lebanes', u'council', u'welcom', u'increas', u'polic', u'power']
[u'listeria', u'link', u'firm', u'plan', u'reopen']
[u'littl', u'britain', u'name', u'comedi']
[u'local', u'govt', u'group', u'see', u'stop', u'interst']
[u'local', u'manag', u'buchanan', u'park', u'redevelop']
[u'locust', u'warn', u'ahead', u'strong', u'wind']
[u'macquari', u'make', u'formal']
[u'charg', u'vizard', u'hous', u'burglari']
[u'critic', u'hang', u'glide', u'crash']
[u'jail', u'birthday', u'parti', u'stab']
[u'face', u'court', u'accus', u'abduct', u'rape']
[u'market', u'ignor', u'surplus', u'windfal']
[u'market', u'upbeat', u'rat', u'settl']
[u'media', u'challeng', u'terror', u'trial', u'secreci']
[u'media', u'round', u'obnoxi', u'fergi']
[u'meet', u'bushfir', u'plan', u'spotlight']
[u'michelin', u'quit', u'formula']
[u'firm', u'inspect', u'townsvill', u'facil']
[u'miner', u'cut', u'work', u'accid', u'rate']
[u'miner', u'seek', u'save', u'water']
[u'minist', u'hear', u'coast', u'transport', u'concern']
[u'mistleto', u'theft', u'threaten', u'kiss', u'crisi']
[u'mitsubishi', u'join', u'ralli', u'exodus']
[u'mother', u'sue', u'give', u'away', u'pet']
[u'demand', u'corbi', u'photo']
[u'murdoch', u'get', u'year']
[u'announc', u'melbourn', u'franchis']
[u'nepales', u'soldier', u'kill', u'festiv', u'goer']
[u'hall', u'bridg', u'open', u'traffic']
[u'newspap', u'staff', u'abus', u'racism', u'experi']
[u'speci', u'discov', u'north', u'west', u'coast']
[u'tascoss', u'boss', u'announc']
[u'techniqu', u'latrob', u'valley', u'mine', u'plan']
[u'lower', u'hous', u'pass', u'polic', u'power']
[u'parliament', u'begin', u'debat', u'tough', u'polic']
[u'number', u'older', u'australian', u'rise']
[u'giant', u'keen', u'shell', u'ventur']
[u'nyngan', u'ambul', u'offic', u'boost']
[u'opposit', u'want', u'dump', u'debat', u'focus', u'locat']
[u'outback', u'school', u'lose', u'wine', u'contract']
[u'oxfam', u'criticis', u'tonga', u'term']
[u'pakistan', u'join', u'trade', u'lobbi', u'group']
[u'chang', u'wont', u'hurt', u'bush', u'say', u'govt']
[u'pilbara', u'jail', u'danger', u'drive']
[u'pilot', u'escap', u'injuri', u'crop', u'duster', u'crash']
[u'pilot', u'surviv', u'crop', u'duster', u'crash']
[u'plan', u'aim', u'curb', u'rate', u'aborigin']
[u'polic', u'gladston', u'assault']
[u'polic', u'charg', u'gladston', u'doctor', u'rape']
[u'polic', u'chief', u'quiet', u'falconio', u'case', u'critic']
[u'polic', u'halv', u'tamworth', u'break', u'rate']
[u'polic', u'hunt', u'pair', u'woman', u'shoot', u'foot']
[u'polic', u'investig', u'fatal', u'crash']
[u'polic', u'peac', u'sydney']
[u'polic', u'minist', u'back', u'power']
[u'polic', u'number', u'rise', u'despit', u'peac', u'talk']
[u'polic', u'number', u'tripl']
[u'polic', u'probe', u'suspici', u'hous', u'blaze']
[u'polic', u'readi', u'gold', u'coast', u'racial', u'violenc', u'beatti']
[u'polic', u'illawarra', u'beach', u'threat', u'serious']
[u'polish', u'pension', u'bike', u'ride', u'end', u'heathrow']
[u'power', u'author', u'sorri', u'earli', u'morn', u'chopper']
[u'power', u'coast', u'storm']
[u'pretend', u'barrist', u'charg', u'fraud']
[u'prison', u'popul', u'increas']
[u'public', u'warn', u'painter']
[u'push', u'fund', u'place', u'medic', u'student']
[u'qanta', u'order', u'boon', u'boe']
[u'farmer', u'question', u'admin']
[u'racial', u'tension', u'threat', u'spread', u'newcastl', u'beach']
[u'rain', u'food', u'boost', u'ibi', u'breed']
[u'ralli', u'australia', u'sponsorship', u'talk', u'continu']
[u'resid', u'hop', u'natur', u'reserv']
[u'rioter', u'feel', u'forc', u'law']
[u'rooney', u'inspir', u'unit', u'victori']
[u'farmer', u'want', u'label', u'carton']
[u'lightn', u'strike', u'injur']
[u'question', u'dump', u'impact', u'report']
[u'school', u'shock', u'incid']
[u'ranger', u'fish', u'surveil', u'request', u'reject']
[u'shellharbour', u'kiama', u'agre', u'wast', u'dispos']
[u'smyth', u'unfaz', u'coach', u'poll']
[u'sniffer', u'dog', u'patrol', u'club']
[u'parent', u'avoid', u'jail', u'fatal']
[u'specialist', u'unit', u'tackl', u'insid', u'trade']
[u'stanhop', u'reject', u'super', u'school', u'consult', u'claim']
[u'state', u'librari', u'take', u'deliveri', u'storag', u'site']
[u'strateg', u'plan', u'south', u'coast', u'launch']
[u'strong', u'support', u'council', u'draft', u'land']
[u'studi', u'aim', u'unlock', u'nullarbor', u'cave', u'skeleton']
[u'studi', u'urg', u'determin', u'polic', u'staff', u'need']
[u'support', u'build', u'south', u'east', u'rail', u'line']
[u'suspend', u'sprinter', u'montgomeri', u'quit']
[u'swan', u'reach', u'home', u'wast', u'treatment', u'plant']
[u'sydney', u'hop', u'leav', u'japan', u'win', u'note']
[u'synagogu', u'grant', u'secur', u'upgrad', u'fund']
[u'talk', u'fail', u'north', u'korean', u'pledg']
[u'tasmania', u'merci', u'pacif', u'nation']
[u'truffl', u'menu', u'summer']
[u'teacher', u'sack', u'abus', u'convict']
[u'teacher', u'aid', u'strike', u'pay', u'holiday', u'push']
[u'terror', u'alleg', u'absurd', u'court', u'hear']
[u'test', u'clear', u'hospit', u'listeria', u'outbreak']
[u'tiger', u'batsmen', u'fight']
[u'tiger', u'redback', u'play', u'draw']
[u'time', u'flexibl']
[u'toll', u'decis', u'ignor', u'public', u'watchdog']
[u'tribal', u'leader', u'denounc', u'zarqawi']
[u'tripodi', u'defend', u'intersect', u'decis']
[u'tsunami', u'recoveri', u'gain', u'momentum', u'report']
[u'food', u'agenc', u'wind', u'north', u'korean', u'work']
[u'union', u'seek', u'commit', u'colli', u'coal', u'industri']
[u'union', u'want', u'polic', u'number', u'boost']
[u'block', u'cuba', u'intern', u'basebal']
[u'vail', u'upbeat', u'despit', u'divers']
[u'virgin', u'base', u'space', u'ventur', u'mexico']
[u'vote', u'begin', u'iraq']
[u'william', u'accept', u'warrior', u'suspens']
[u'wolf', u'creek', u'puzzl', u'director']
[u'woman', u'jail', u'kill', u'violent', u'partner']
[u'woman', u'face', u'court', u'broom', u'handl', u'attack']
[u'women', u'entitl', u'abort', u'drug', u'choic', u'doctor']
[u'young', u'leader', u'fin', u'shoot', u'incid']
[u'boost', u'plan', u'north', u'power']
[u'arrest', u'drug', u'raid']
[u'adelaid', u'polic', u'watch', u'riot']
[u'count', u'older', u'jobseek']
[u'alburi', u'offic', u'investig', u'ralli', u'phone', u'messag']
[u'alleg', u'cannabi', u'grower', u'asset', u'freez']
[u'alzheim', u'diseas', u'surg', u'come', u'decad']
[u'confid', u'govt', u'rethink', u'hospit', u'plan']
[u'announc', u'take', u'earli', u'leav', u'muslim', u'remark']
[u'aussi', u'critter', u'handler', u'toe', u'exhibit']
[u'aust', u'author', u'assess', u'rotavirus', u'vaccin']
[u'aust', u'polic', u'keep', u'frontlin']
[u'australian', u'polic', u'deploy', u'top', u'ministeri', u'talk']
[u'australia', u'start', u'asian']
[u'bank', u'stock', u'market']
[u'bank', u'record', u'fine', u'breach', u'workplac']
[u'barossa', u'tighten', u'restrict']
[u'billion', u'dollar', u'project', u'ahead']
[u'british', u'govt', u'appeal', u'hick', u'rule']
[u'britney', u'spear', u'top', u'annual', u'internet', u'search']
[u'bush', u'agre', u'prison', u'tortur']
[u'busi', u'chamber', u'releas', u'rail', u'plan']
[u'cambodian', u'court', u'charg', u'aust', u'child']
[u'capricorn', u'coast', u'tougher', u'water', u'restrict']
[u'chicken', u'cull', u'oversuppli']
[u'council', u'inquiri', u'hold', u'februari']
[u'coast', u'patrol', u'borrow', u'boat', u'prepar']
[u'communiti', u'concern', u'ambul', u'wait', u'time']
[u'compani', u'fin', u'employe', u'injur']
[u'blame', u'centrelink', u'blaze']
[u'concern', u'road', u'closur', u'hurt', u'busi']
[u'concern', u'rais', u'childcar', u'privatis']
[u'conrad', u'black', u'charg']
[u'conroy', u'face', u'listeria', u'outbreak', u'charg']
[u'cook', u'celebr', u'consid', u'life', u'polit']
[u'coonambl', u'council', u'fluorid', u'water']
[u'coron', u'urg', u'rock', u'fish', u'safeti', u'review']
[u'corrupt', u'watchdog', u'close', u'file', u'lionetti']
[u'corrupt', u'rockdal', u'councillor', u'jail']
[u'costello', u'flag', u'health', u'major', u'prioriti']
[u'costello', u'squander', u'reform', u'opportun']
[u'council', u'back', u'lake', u'wendoure', u'plan']
[u'council', u'green', u'light', u'chang', u'westfield', u'plan']
[u'council', u'look', u'taminda', u'estat', u'revamp']
[u'councillor', u'resign', u'win', u'poll']
[u'council', u'move', u'closer', u'choos', u'retail', u'develop']
[u'council', u'move', u'overhaul', u'gladston']
[u'council', u'order', u'quadripleg', u'compens']
[u'council', u'foot', u'elect']
[u'council', u'staff', u'strike']
[u'council', u'warn', u'communiti', u'dump', u'fear']
[u'countri', u'energi', u'take', u'femal', u'traine']
[u'creativ', u'imag', u'seek', u'art', u'confer']
[u'croc', u'look', u'overcom', u'doubt', u'razorback', u'clash']
[u'crop', u'delay', u'prompt', u'talk', u'worst', u'season']
[u'dawson', u'fire', u'snub']
[u'commentari', u'highlight', u'australia', u'south']
[u'develop', u'board', u'seek', u'integr', u'transport', u'plan']
[u'develop', u'see', u'talk']
[u'disgrac', u'millar', u'get', u'second', u'chanc']
[u'distract', u'india', u'lanka']
[u'dokic', u'win', u'australian', u'return']
[u'doubt', u'jam', u'hardi', u'deal']
[u'downer', u'delight', u'iraqi', u'elect', u'turnout']
[u'investig', u'fatal', u'yacht', u'accid']
[u'driver', u'die', u'central', u'aust', u'crash']
[u'lay', u'hen', u'caus', u'traffic', u'hazard']
[u'elton', u'john', u'partner', u'polic']
[u'emerg', u'expect', u'respons', u'time']
[u'england', u'return', u'scene', u'world', u'victori']
[u'everton', u'hop', u'refresh', u'cahil']
[u'explos', u'occur', u'near', u'russian', u'reactor']
[u'fan', u'snub', u'boro', u'uefa']
[u'farmer', u'defend', u'live', u'sheep', u'shipment', u'kuwait']
[u'farmer', u'extend', u'drought']
[u'farm', u'group', u'reject', u'financi', u'troubl', u'claim']
[u'father', u'charg', u'babi', u'murder']
[u'fear', u'compani', u'infight', u'harm', u'rail']
[u'feder', u'fund', u'learn', u'centr', u'revamp']
[u'feder', u'nation', u'ask', u'karratha', u'childcar']
[u'close', u'boonoo', u'boonoo', u'nation', u'park']
[u'coal', u'shipment', u'head', u'india']
[u'fishermen', u'rescu', u'prompt', u'emerg', u'servic']
[u'fitzroy', u'river', u'croc', u'catch']
[u'flatley', u'throw', u'weight', u'jone']
[u'gippsland', u'chook', u'produc', u'streme']
[u'gippsland', u'jobless', u'rate', u'rise']
[u'give', u'tree', u'appeal', u'set', u'record']
[u'govt', u'accept', u'region', u'report', u'recommend']
[u'govt', u'hold', u'cut']
[u'govt', u'make', u'mistak', u'set', u'truanci', u'fine']
[u'govt', u'promis', u'announc', u'toxic', u'dump', u'decis']
[u'govt', u'stand', u'decis', u'publicis', u'escap']
[u'govt', u'unveil', u'tarana', u'valley', u'compromis']
[u'govt', u'urg', u'racist', u'text', u'messag']
[u'govt', u'urg', u'prevent', u'christma', u'forest', u'clear']
[u'govt', u'vow', u'protect', u'resid', u'nois', u'pollut']
[u'grain', u'compani', u'urg', u'help', u'farmer', u'price']
[u'grant', u'vocat', u'educ', u'scheme']
[u'hama', u'score', u'elect', u'west', u'bank', u'citi']
[u'hawk', u'crocodil', u'triumphant']
[u'high', u'court', u'rule', u'appeal', u'film']
[u'hous', u'scheme']
[u'howard', u'open', u'motorway']
[u'review', u'super', u'rule', u'februari']
[u'illawarra', u'student', u'state', u'perform']
[u'india', u'fan', u'burn', u'chappel', u'effigi']
[u'indigen', u'custom', u'undergo', u'check', u'amex']
[u'indigen', u'unemploy', u'gold', u'amex', u'card']
[u'initi', u'target', u'drug', u'alcohol', u'traffic']
[u'investig', u'hariri', u'murder', u'extend']
[u'investig', u'examin', u'sunshin', u'coast', u'arson']
[u'iraqi', u'elect', u'vindic', u'howard']
[u'iraqi', u'forc', u'captur', u'releas', u'zarqawi', u'offici']
[u'iron', u'project', u'stock', u'exchang', u'list']
[u'jone', u'pursu', u'red']
[u'kalli', u'rule']
[u'kangaroo', u'mayor', u'win', u'liber', u'preselect']
[u'kathmandu', u'strike', u'villag', u'shoot']
[u'lightn', u'strike', u'power']
[u'local', u'benefit', u'expect', u'armi', u'base']
[u'local', u'polic', u'readi', u'help', u'battl', u'race', u'riot']
[u'lockhart', u'crash', u'report', u'rais', u'question']
[u'lockhart', u'crash', u'report', u'releas']
[u'log', u'protest', u'stag', u'gippsland']
[u'long', u'wait', u'shortland', u'esplanad']
[u'reject', u'macquari', u'takeov']
[u'maiava', u'fin', u'suspend', u'train', u'fight']
[u'mayor', u'minist', u'boost', u'coast', u'rail', u'servic']
[u'statu', u'honour', u'ponsford']
[u'melbourn', u'protest', u'march', u'racism']
[u'minist', u'want', u'investig', u'alleg', u'camp', u'rape']
[u'mobil', u'confirm', u'birkenhead', u'fuel', u'leak']
[u'polic', u'seek', u'goldfield', u'esper', u'region']
[u'question', u'water', u'plan']
[u'support', u'crackdown', u'rioter']
[u'get', u'photo', u'corbi', u'alleg', u'drug', u'offend']
[u'nasa', u'order', u'shuttl', u'fuel', u'tank', u'fix']
[u'nation', u'want', u'brake', u'school', u'decis']
[u'consul', u'open', u'turkey']
[u'resid', u'inform', u'pack']
[u'push', u'boost', u'south', u'west', u'road', u'safeti']
[u'rural', u'clinic', u'school', u'plan', u'north']
[u'trial', u'jail', u'fatal', u'bash']
[u'bail', u'stop', u'attack', u'suspect']
[u'northern', u'pilot', u'poppi', u'processor']
[u'beach', u'limit']
[u'farmer', u'associ', u'deni', u'financi', u'woe']
[u'sell', u'snowi', u'stake']
[u'ntini', u'put', u'protea', u'perth']
[u'teenag', u'nida']
[u'nurs', u'jail', u'massiv', u'centrelink', u'fraud']
[u'host', u'expand', u'nation', u'open']
[u'oceania', u'join', u'asia', u'play', u'off', u'blatter']
[u'opposit', u'criticis', u'govt', u'spend']
[u'outlook', u'good', u'lamb']
[u'parent', u'seek', u'govt', u'inquiri', u'teacher']
[u'pilbara', u'gold', u'project', u'look', u'promis']
[u'pilbara', u'lead', u'mine', u'region']
[u'plane', u'make', u'paddock', u'land', u'near', u'canberra']
[u'launch', u'sydney', u'motorway']
[u'polic', u'arrest', u'riot', u'suspect']
[u'polic', u'hope', u'recruit', u'indigen', u'offic']
[u'polic', u'hunt', u'coast', u'arsonist']
[u'polic', u'squad', u'focus', u'south', u'east', u'drug']
[u'polic', u'warn', u'beachgoer']
[u'pont', u'langer', u'steadi', u'australia']
[u'predat', u'releas', u'guilti', u'plea']
[u'priest', u'jail', u'assault', u'schoolboy']
[u'program', u'pave', u'wast', u'water', u'recycl']
[u'protea', u'keep', u'aussi', u'honest', u'test']
[u'psychiatr', u'ward', u'closur', u'distress']
[u'publican', u'cast', u'doubt', u'consum', u'protect', u'book']
[u'compani', u'lead', u'goat', u'export']
[u'firm', u'invest', u'break', u'hill']
[u'queenstown', u'control']
[u'quinlan', u'eye', u'commonwealth', u'surplus']
[u'rabbit', u'tortur', u'case', u'ahead']
[u'radio', u'host', u'apologis', u'muslim', u'remark']
[u'rain', u'fall', u'water', u'restrict', u'remain']
[u'report', u'shed', u'clue', u'lockhart', u'river', u'plane']
[u'report', u'show', u'high', u'cost', u'properti', u'crime']
[u'resid', u'urg', u'adher', u'water', u'limit']
[u'resid', u'urg', u'watch', u'tag', u'turtl']
[u'ripper', u'apport', u'blame', u'reform', u'penalti']
[u'robert', u'merger', u'card']
[u'rural', u'properti', u'price', u'rise']
[u'seismic', u'shift', u'super', u'storm', u'senat', u'major']
[u'serial', u'drink', u'driver', u'jail', u'fatal', u'accid']
[u'sharehold', u'right', u'invest']
[u'shark', u'player', u'injur', u'train', u'fight']
[u'korean', u'scientist', u'defend', u'stem', u'cell', u'work']
[u'lanka', u'presid', u'invit', u'tiger', u'rebel', u'talk']
[u'slide', u'hous', u'construct', u'greatest']
[u'snowi', u'mountain', u'backer', u'consid', u'court', u'appeal']
[u'solomon', u'slow', u'enforc', u'contract', u'world', u'bank']
[u'south', u'west', u'health', u'profession', u'hear']
[u'georg', u'bank', u'announc', u'share']
[u'stop', u'chelsea', u'campaign', u'unit', u'foe']
[u'storm', u'down', u'tree', u'powerlin']
[u'student', u'anxious', u'wait', u'result']
[u'sugar', u'industri', u'see', u'turnaround']
[u'suicid', u'prompt', u'prison', u'secur', u'concern']
[u'suspect', u'terrorist', u'refus', u'bail']
[u'suspect', u'terrorist', u'talk', u'slaughter']
[u'suspend', u'sentenc', u'labor', u'club', u'crash', u'driver']
[u'sydney', u'bombmak', u'refus', u'bail']
[u'sydney', u'upset', u'ah', u'japan']
[u'talk', u'continu', u'pulp', u'site']
[u'cut', u'prioriti', u'costello']
[u'rule', u'jeopardis', u'hardi', u'fund']
[u'thousand', u'trial', u'thai', u'tsunami', u'plan']
[u'kill', u'western', u'highway', u'crash']
[u'toddler', u'safe', u'moonlit', u'wander']
[u'total', u'part']
[u'tourism', u'hurt', u'local', u'renter', u'say', u'lobbi', u'group']
[u'toxic', u'slick', u'reach', u'russia']
[u'trio', u'skipper', u'swan']
[u'truck', u'stop', u'propon', u'highlight', u'benefit']
[u'tszyu', u'ignor', u'judah', u'fluke', u'barb']
[u'creat', u'real', u'problem', u'resid']
[u'refus', u'bail']
[u'uncertain', u'futur', u'newcastl', u'market']
[u'univers', u'probe', u'stem', u'cell', u'fraud', u'claim']
[u'unsolv', u'crime', u'check', u'murdoch', u'link']
[u'vice', u'chancellor', u'attack', u'govt', u'chang']
[u'farmer', u'question', u'grain', u'price', u'grower']
[u'vietnam', u'flood', u'kill']
[u'impact', u'guild', u'spend']
[u'wave', u'respect', u'wash', u'cooge']
[u'western', u'student', u'state']
[u'bring', u'disappoint', u'cane', u'crush']
[u'wheatbelt', u'railway', u'money', u'better', u'spend', u'road']
[u'white', u'lewi', u'tiger', u'clash']
[u'wollongong', u'council', u'lose', u'director']
[u'woman', u'die', u'coburg', u'hous', u'blaze']
[u'youth', u'urg', u'avoid', u'substanc', u'abus']
[u'cold', u'wave', u'sweep', u'north', u'india']
[u'adult', u'rat', u'seek', u'gambl', u'game']
[u'airport', u'owner', u'welcom', u'warehous', u'competit']
[u'alonso', u'busi']
[u'aussi', u'fight', u'test']
[u'aussi', u'seek', u'quick', u'wicket']
[u'beachgoer', u'avoid', u'potenti', u'riot', u'area']
[u'beatl', u'unpaid', u'royalti']
[u'blair', u'hail', u'ditch', u'budget']
[u'bolton', u'middlesbrough', u'hand', u'tough', u'test']
[u'boswel', u'seek', u'senat', u'term']
[u'boswel', u'seek', u'senat', u'preselect']
[u'bouncer', u'guilti', u'patron', u'death']
[u'brisban', u'citi', u'council', u'seiz', u'homeless', u'man']
[u'break', u'heart', u'donor', u'leav', u'diamond', u'ring']
[u'bulgaria', u'begin', u'iraq', u'pullout']
[u'crash', u'victim', u'fli', u'hospit']
[u'bush', u'keep', u'quiet', u'controversi']
[u'cane', u'toad', u'love', u'disco', u'light']
[u'chelsea', u'draw', u'barcelona']
[u'chemic', u'forc', u'factori', u'evacu']
[u'china', u'hospit', u'blaze', u'leav', u'dead']
[u'chines', u'olymp', u'hope', u'kill', u'echo', u'gillett']
[u'conroy', u'product', u'hing', u'safeti', u'test']
[u'conroy', u'sadden', u'listeria', u'death']
[u'coron', u'call', u'inquest', u'famili', u'fatal']
[u'council', u'play', u'wadey', u'unrest']
[u'court', u'rule', u'ground', u'nauru']
[u'cultur', u'program', u'eas', u'sydney', u'tension']
[u'commentari', u'highlight', u'australia', u'south']
[u'dead', u'blue', u'whale', u'wash', u'ashor', u'rottnest']
[u'deal', u'boost', u'aborigin', u'wellb', u'macquari']
[u'dokic', u'continu', u'win', u'comeback']
[u'dorey', u'run', u'bull']
[u'dravid', u'doubt', u'lanka', u'test']
[u'drink', u'driver', u'shock', u'polic']
[u'dwight', u'tribut', u'kean']
[u'england', u'world', u'path', u'vaughan']
[u'famili', u'miss', u'teen', u'welcom', u'murdoch']
[u'festiv', u'rental', u'grace', u'francisco', u'street']
[u'fish', u'research', u'point', u'skin', u'colour', u'gene']
[u'arrest', u'adelaid', u'citi', u'brawl']
[u'flame', u'class']
[u'solomon', u'want', u'ramsi', u'mission', u'send', u'home']
[u'georgeson', u'win', u'world', u'titl']
[u'germani', u'believ', u'iraq', u'hostag', u'aliv', u'report']
[u'glider', u'crash', u'injur']
[u'govt', u'urg', u'yass', u'water', u'woe']
[u'green', u'hail', u'defam', u'chang']
[u'green', u'littl', u'valu', u'hous', u'scheme']
[u'histor', u'train', u'track']
[u'homeless', u'cat', u'stretch', u'rspca', u'resourc']
[u'indonesian', u'test', u'bird', u'kill']
[u'industri', u'readi', u'tougher', u'cattl', u'movement', u'rule']
[u'internet', u'servic', u'boost', u'access', u'mental', u'health']
[u'iraqi', u'dream', u'skeleton', u'challeng', u'turin']
[u'john', u'bennetto', u'rememb']
[u'journalist', u'win', u'unfair', u'dismiss', u'case', u'iraq']
[u'kookaburra', u'face', u'dutch', u'final']
[u'labor', u'urg', u'law', u'racial', u'religi', u'agit']
[u'live', u'export', u'plan', u'dismay', u'welfar', u'group']
[u'liverpool', u'team', u'best', u'play', u'gerrard']
[u'lockdown', u'delay', u'sydney', u'motorist']
[u'malawi', u'bird', u'death', u'fuel', u'avian', u'fear']
[u'meh', u'convinc', u'syria', u'hariri', u'kill', u'report']
[u'melbourn', u'perth', u'alert', u'riot']
[u'bodi', u'recov', u'flood']
[u'attempt', u'overturn', u'snowi', u'sale']
[u'measur', u'halt', u'wetland', u'declin']
[u'speed', u'tsunami', u'warn']
[u'scientist', u'see', u'challeng']
[u'face', u'long', u'wait', u'meet', u'indigen', u'polic']
[u'oper', u'weigh', u'inject', u'save', u'rail']
[u'pair', u'charg', u'hand', u'grenad', u'sale']
[u'patriot', u'block', u'senat']
[u'perth', u'muslim', u'urg', u'avoid', u'beach']
[u'petit', u'aim', u'pull', u'knopwood', u'fenc']
[u'polic', u'brace', u'arm', u'thug', u'sydney', u'beach']
[u'polic', u'continu', u'patrol', u'perth', u'beach']
[u'politician', u'kill', u'fresh', u'indian', u'kashmir', u'violenc']
[u'prison', u'staff', u'traumatis', u'sieg']
[u'protea', u'look', u'comfort', u'perth']
[u'public', u'heed', u'beach', u'warn']
[u'protect', u'rainforest', u'area']
[u'ranger', u'notch', u'wnbl', u'win']
[u'research', u'edg', u'closer', u'develop', u'avian']
[u'ronaldo', u'dismiss', u'talk', u'real', u'departur']
[u'round', u'world', u'yacht', u'arriv', u'fremantl']
[u'africa', u'offici', u'face', u'immigr', u'laps']
[u'singer', u'rawl', u'treat', u'cancer']
[u'sinn', u'fein', u'offici', u'admit', u'spi']
[u'south', u'africa', u'plung', u'kill']
[u'sport', u'star', u'join', u'road', u'safeti', u'campaign']
[u'sydney', u'polic', u'continu', u'heavi', u'street', u'presenc']
[u'sydney', u'polic', u'lock', u'beach', u'suburb']
[u'teen', u'face', u'arson', u'charg', u'multi', u'million', u'dollar']
[u'teen', u'trio', u'remand', u'custodi', u'multi', u'million']
[u'thorp', u'blitz', u'field', u'sydney']
[u'thousand', u'evacu', u'southern', u'thai', u'flood']
[u'thunderstorm', u'caus', u'havoc', u'brisban']
[u'tiger', u'sydney', u'win', u'streak']
[u'time', u'run', u'deal']
[u'tourist', u'crash', u'injur']
[u'traffic', u'crackdown', u'improv', u'live']
[u'kill', u'gunmen', u'open', u'afghan', u'school']
[u'vice', u'chancellor', u'quit', u'amid', u'travel', u'rort']
[u'govt', u'break', u'law', u'crackdown', u'report']
[u'veteran', u'sydney', u'hobart', u'yachti', u'bennetto', u'die']
[u'veteran', u'yachtsman', u'bennetto', u'die']
[u'vietnames', u'landslid', u'kill']
[u'wall', u'street', u'firm', u'energi', u'price']
[u'power', u'station']
[u'weightlift', u'game', u'doubt', u'drug', u'suspens']
[u'weightlift', u'spotlight', u'drug', u'test']
[u'west', u'wing', u'star', u'spencer', u'die']
[u'protest', u'clash', u'polic']
[u'talk', u'near', u'collaps']
[u'polic', u'lock', u'sydney', u'beach']
[u'hurt', u'bhutanes', u'refuge', u'enter', u'india']
[u'deliv', u'boost', u'cycl']
[u'quiet', u'beach']
[u'armstrong', u'hit', u'french', u'witch', u'hunt', u'report']
[u'arson', u'suspect', u'warehous', u'blaze']
[u'artist', u'hop', u'fellowship', u'open', u'galleri', u'door']
[u'aussi', u'readi', u'pounc', u'say', u'warn']
[u'aussi', u'resum']
[u'aussi', u'windsurf', u'win', u'world', u'championship']
[u'australia', u'run', u'lunch']
[u'australia', u'undecid', u'world']
[u'barcelona', u'clinch', u'record']
[u'bolton', u'demolish', u'everton', u'park', u'footbal']
[u'brazil', u'thwart', u'deal', u'diplomat']
[u'breaker', u'upset', u'hawk']
[u'britain', u'tortur', u'camp', u'wwii', u'report']
[u'bush', u'confirm', u'authoris', u'domest', u'program']
[u'busi', u'seek', u'compo', u'beach', u'lock', u'down']
[u'chariti', u'appeal', u'christma', u'gift', u'donat']
[u'club', u'stand', u'firm', u'poki']
[u'colombia', u'confirm', u'militari', u'chavez', u'plot']
[u'concern', u'rais', u'disabl', u'transport', u'servic']
[u'council', u'flag', u'servic', u'cut', u'financi', u'woe']
[u'crucial', u'poll', u'begin']
[u'commentari', u'highlight', u'australia']
[u'deal', u'sight', u'row', u'riot', u'talk']
[u'dokic', u'melbourn', u'final']
[u'dravid', u'test', u'lanka']
[u'engin', u'develop', u'tsunami', u'predict', u'model']
[u'environ', u'group', u'grant', u'feder', u'fund']
[u'claim', u'bomb', u'blast', u'spain']
[u'extra', u'cctv', u'sydney', u'year', u'celebr']
[u'farmer', u'fear', u'locust', u'plagu', u'central', u'victoria']
[u'farrel', u'debut', u'delay']
[u'fella']
[u'ferguson', u'hail', u'unit', u'reviv', u'villa', u'success']
[u'flintoff', u'focus', u'end', u'high']
[u'french', u'rugbi', u'coach', u'fouroux', u'die']
[u'govt', u'urg', u'surplus', u'fund', u'social', u'servic']
[u'hodg', u'hussey', u'punish', u'protea']
[u'hussey', u'star', u'seven', u'wicket', u'rout']
[u'india', u'elect', u'lanka', u'test']
[u'indian', u'camp', u'stamped', u'kill']
[u'indian', u'stamped', u'toll', u'hit']
[u'injur', u'skydiv', u'airlift', u'hospit']
[u'iran', u'tell', u'west', u'toler', u'holocaust', u'view']
[u'iron', u'win', u'pipelin', u'master', u'hawaii']
[u'johnson', u'zippi', u'perth']
[u'jordan', u'hand', u'zarqawi', u'second', u'death', u'penalti']
[u'juventus', u'stutter', u'draw', u'lazio']
[u'kasper', u'rip', u'warrior']
[u'kerin', u'pledg', u'crime', u'prevent', u'fund']
[u'flush', u'episod', u'rumour']
[u'liber', u'promis', u'drug', u'dealer', u'line']
[u'die', u'fight', u'grassfir']
[u'myer', u'chair', u'nation', u'galleri']
[u'nation', u'park', u'prepar', u'holiday', u'crowd']
[u'nauru', u'consid', u'transport', u'option']
[u'palmerston', u'suburb', u'moot']
[u'nigeria', u'ground', u'boe', u'plan']
[u'special', u'treatment', u'dokic']
[u'perth', u'beach', u'stay', u'quiet']
[u'perth', u'polic', u'prepar', u'troubl', u'beach']
[u'plucki', u'pirat']
[u'pluto', u'probe', u'head', u'launch']
[u'polic', u'guard', u'sydney', u'beach']
[u'polic', u'seiz', u'weapon', u'sydney']
[u'polic', u'surpris', u'surviv', u'tourist', u'crash']
[u'polic', u'target', u'domest', u'violenc', u'spike']
[u'polic', u'tear', u'protest', u'detain']
[u'polic', u'treat', u'homeless', u'man', u'death', u'suspici']
[u'polic', u'dead', u'man', u'famili']
[u'polic', u'beach', u'bodi']
[u'poll', u'booth', u'attack', u'ahead', u'referendum']
[u'pont', u'go', u'ntini', u'strike']
[u'powel', u'disappoint', u'iraq', u'intellig']
[u'produc', u'plan', u'chicken', u'cull', u'import', u'flood']
[u'protest', u'flare', u'talk', u'wire']
[u'relentless', u'jaqu', u'set', u'victori']
[u'riot', u'polic', u'call', u'quell', u'parti', u'gatecrash']
[u'ruiz', u'lose', u'heavyweight', u'titl', u'russian']
[u'santa', u'rampag', u'christma', u'protest']
[u'saprissa', u'beat', u'ittihad', u'place']
[u'fruit', u'flavour', u'cigarett']
[u'scorpion', u'ride', u'rolton']
[u'mop', u'wild', u'storm']
[u'skill', u'cours', u'boost', u'motorbik', u'safeti']
[u'slick', u'unit', u'chelsea', u'lead', u'point']
[u'slow', u'sale', u'dismay', u'retail']
[u'program', u'critic', u'counter', u'terror', u'bush']
[u'stamp', u'duti', u'seek', u'friend', u'car']
[u'sunni', u'allianc', u'hail', u'iraq', u'elect', u'success']
[u'swiss', u'hospit', u'permit', u'euthanasia']
[u'sydney', u'polic', u'seiz', u'petrol', u'bomb']
[u'sydney', u'hobart', u'favourit', u'undergo', u'modif']
[u'score', u'mine', u'explor', u'boost']
[u'iraqi', u'kill', u'attack']
[u'test', u'reveal', u'conroy', u'contamin']
[u'thousand', u'gather', u'sydney', u'promot', u'racial']
[u'thousand', u'march', u'racism']
[u'thousand', u'biker', u'ride', u'chariti']
[u'afghan', u'polic', u'kill']
[u'tougher', u'polic', u'power', u'recommend', u'target']
[u'triabunna', u'develop', u'appoint', u'consult']
[u'tonn', u'henri', u'moor', u'sculptur', u'steal']
[u'network', u'appeal', u'unfair', u'dismiss', u'rule']
[u'vail', u'welcom', u'draft', u'deal']
[u'veteran', u'yachtsman', u'call', u'sydney', u'hobart', u'chang']
[u'victorian', u'hold', u'chase']
[u'volunt', u'deliv', u'christma', u'cheer']
[u'warrior', u'dismiss', u'bull', u'brisban']
[u'trial', u'satellit', u'track', u'crimin']
[u'protest', u'turn', u'violent']
[u'talk', u'deadlock']
[u'solar', u'farm', u'shine', u'remot', u'shire']
[u'run', u'sleep', u'beachgoer']
[u'adrift', u'aussi', u'rescu', u'ordeal']
[u'afghan', u'politician', u'blast', u'warlord', u'parliament']
[u'agenc', u'condemn', u'tender', u'plan', u'domest', u'violenc']
[u'group', u'motiv', u'question']
[u'alcohol', u'ban', u'life', u'quieter', u'cherbourg']
[u'anglicar', u'welcom', u'disabl', u'servic', u'review']
[u'anim', u'right', u'campaign', u'fail', u'dampen', u'pork', u'sale']
[u'appl', u'farmer', u'secur', u'insur']
[u'kill', u'chad', u'fight', u'rebel', u'minist']
[u'artwork', u'display', u'time', u'year']
[u'trade', u'record']
[u'auditor', u'report', u'critic', u'har', u'race', u'victoria']
[u'aust', u'indonesia', u'probe', u'illeg', u'fish']
[u'australia', u'build', u'massiv', u'lead']
[u'australian', u'continu', u'fund', u'tsunami']
[u'australian', u'mislead', u'advic']
[u'australia', u'biggest', u'food', u'compani', u'list']
[u'autopilot', u'defect', u'blame', u'fatal', u'crash']
[u'veto', u'wheat', u'export']
[u'bagram', u'jail', u'escape', u'threaten']
[u'dredg', u'audit', u'pleas', u'port', u'oper']
[u'bhutan', u'ruler', u'surrend', u'absolut', u'power']
[u'blayney', u'cemeteri', u'cater', u'muslim']
[u'blaze', u'damag', u'histor', u'oddfellow', u'hall']
[u'boswel', u'uncertain', u'grind']
[u'boswel', u'senat', u'select', u'sure', u'thing', u'scott']
[u'brazil', u'book', u'castl', u'world', u'second', u'round']
[u'brewarrina', u'plan', u'tourism', u'caravan', u'park']
[u'brief', u'terrifi', u'storm', u'creat', u'havoc']
[u'bulldog', u'sponsor', u'rape', u'counsel', u'servic']
[u'bullet', u'blame', u'wildcat', u'heat', u'encount']
[u'driver', u'plan', u'strike', u'passeng', u'behaviour']
[u'bush', u'urg', u'public', u'despair']
[u'busi', u'jump', u'law']
[u'camp', u'upgrad', u'finish']
[u'canegrow', u'cautious', u'high', u'sugar', u'price']
[u'challeng', u'guard', u'murder', u'defenc', u'begin']
[u'chelsea', u'outwit', u'arsenal', u'clear', u'unit']
[u'cheney', u'make', u'surpris', u'iraq', u'visit']
[u'chines', u'villag', u'arrest', u'protest', u'shoot']
[u'christma', u'cake', u'boon', u'dri', u'fruit', u'produc']
[u'citrus', u'grape', u'grower', u'struggl', u'surviv']
[u'clone', u'stay']
[u'coastal', u'town', u'defect', u'like', u'say']
[u'comm', u'game', u'pool', u'final', u'unveil']
[u'compani', u'fin', u'explos', u'injur', u'worker']
[u'conroy', u'listeria', u'outbreak', u'cost', u'job']
[u'cool', u'condit', u'spawn', u'bird']
[u'coron', u'call', u'improv', u'rock', u'fish', u'safeti']
[u'coron', u'rule', u'hume', u'crash', u'inquest']
[u'costello', u'deserv', u'sack', u'controversi', u'labor']
[u'costello', u'unfit', u'treasur', u'beazley']
[u'cost', u'put', u'countri', u'cabbi', u'busi']
[u'councillor', u'confid', u'cross', u'border', u'elig']
[u'council', u'say', u'water', u'polici', u'bias']
[u'council', u'greenfield', u'pacif', u'highway']
[u'countri', u'driver', u'urg', u'stay', u'safe', u'christma']
[u'crash', u'inquest', u'tell', u'sluggish']
[u'commentari', u'highlight', u'australia', u'south']
[u'dead', u'man', u'wife', u'face', u'conspiraci', u'charg']
[u'defiant', u'inzamam', u'save', u'pakistan', u'blush']
[u'demand', u'region', u'counsel', u'servic']
[u'detaine', u'sydney', u'show']
[u'disabl', u'transport', u'review', u'worri', u'famili']
[u'candid', u'comfort', u'live', u'region']
[u'dokic', u'earn', u'open', u'wildcard']
[u'downer', u'visit', u'troop', u'iraq']
[u'driver', u'face', u'fin', u'disclos', u'long', u'term']
[u'educ', u'precinct', u'plan', u'approv']
[u'embassi', u'bomb', u'death', u'sentenc', u'uphold']
[u'endeavour', u'aim', u'product']
[u'extortionist', u'target', u'delta', u'electr']
[u'factori', u'declar', u'safe', u'acid', u'blast', u'scare']
[u'farmer', u'benefit', u'deal']
[u'feder', u'clijster', u'claim', u'world', u'titl']
[u'festiv', u'season', u'fail', u'deter', u'illeg', u'fisher']
[u'firefight', u'escap', u'injuri', u'ballarat', u'crash']
[u'firefight', u'grass', u'fire']
[u'footi', u'club', u'appear', u'destin', u'court']
[u'aceh', u'rebel', u'meet', u'disarma', u'quota', u'offici']
[u'saddam', u'offici', u'releas']
[u'foundri', u'fail', u'sell', u'auction']
[u'wicket', u'harbhajan', u'put', u'lanka', u'spin']
[u'freightlink', u'record', u'loss']
[u'freightlink', u'reach', u'potenti', u'govt']
[u'fund', u'avail', u'bright', u'busi', u'idea']
[u'german', u'hostag', u'free', u'iraq']
[u'gladston', u'see', u'need', u'water', u'restrict']
[u'goosen', u'hold', u'south', u'african', u'open']
[u'govt', u'accus', u'mismanag', u'north', u'east', u'hospit']
[u'shortag', u'strain', u'hospit', u'govt']
[u'griffith', u'work', u'multicultur', u'harmoni']
[u'group', u'lament', u'late', u'retir', u'develop', u'freez']
[u'hama', u'elect', u'withdraw']
[u'health', u'servic', u'promis', u'round', u'clock', u'emerg']
[u'health', u'servic', u'readi', u'holiday', u'emerg']
[u'hodg', u'chalk', u'superb', u'doubl']
[u'hodg', u'focus', u'build', u'lead', u'protea']
[u'horizont', u'hail', u'storm', u'rip', u'northern']
[u'hous', u'industri', u'predict', u'downturn']
[u'hunter', u'trio', u'global', u'hors']
[u'iemma', u'urg', u'communiti', u'talk', u'racial', u'tension']
[u'iemma', u'urg', u'resid', u'beach']
[u'indonesia', u'confirm', u'bird', u'death']
[u'investig', u'fail', u'midget']
[u'iraq', u'abus', u'inquiri', u'witch', u'hunt', u'general']
[u'iraqi', u'milit', u'broadcast', u'hostag', u'kill']
[u'isra', u'rush', u'hospit']
[u'japan', u'resum', u'beef', u'import']
[u'plan', u'inform', u'session', u'school', u'leaver']
[u'johnson', u'focus', u'comm', u'game']
[u'joyc', u'await', u'proof', u'irrig']
[u'joyc', u'remain', u'neutral', u'preselect']
[u'joyc', u'unhappi', u'region', u'concess', u'snub']
[u'kookaburra', u'champion', u'trophi', u'final']
[u'langer', u'doubt', u'box', u'test']
[u'langer', u'box', u'test']
[u'laxman', u'lead', u'indian', u'recoveri', u'collaps']
[u'lead', u'green', u'bidder', u'confid', u'success']
[u'lift', u'therapeut', u'clone', u'review', u'urg']
[u'local', u'polic', u'help', u'eas', u'sydney', u'violenc']
[u'lockdown', u'impact', u'busi']
[u'mackinnon', u'fin', u'give', u'crowd', u'finger']
[u'major', u'shake', u'australian', u'netbal']
[u'malik', u'clear', u'suspect', u'action']
[u'accus', u'mosqu', u'racism', u'face', u'court']
[u'charg', u'teen', u'murder']
[u'charg', u'set', u'girlfriend']
[u'mander', u'youth', u'issu']
[u'hospit', u'barraba', u'brawl']
[u'kill', u'lake', u'illawarra', u'capsiz']
[u'shoot', u'mouth', u'nail', u'round']
[u'mclaren', u'alonso']
[u'melros', u'park', u'school', u'get', u'gambier']
[u'milan', u'club', u'rais', u'hop', u'catch', u'juve']
[u'minist', u'consid', u'ranger', u'propos']
[u'modest', u'trade', u'deal', u'close', u'talk']
[u'bed', u'age', u'care', u'facil']
[u'govt', u'help', u'need', u'help', u'long', u'term', u'unemploy']
[u'mourinho', u'wenger', u'rekindl', u'feud']
[u'attack', u'plan', u'sell', u'snowi', u'hydro', u'share']
[u'see', u'opportun']
[u'examin', u'landfil', u'site']
[u'multiplex', u'forecast', u'wembley', u'loss']
[u'needi', u'famili', u'await', u'christma', u'hamper']
[u'newcastl', u'beach', u'quiet', u'attend', u'anti', u'racism']
[u'marin', u'park', u'moot', u'kimberley', u'coast']
[u'primari', u'industri', u'minist', u'impress', u'agforc']
[u'nickel', u'take', u'lustr', u'gold']
[u'nightmar', u'injuri', u'farrel']
[u'charg', u'lay', u'sand', u'dune', u'accid']
[u'clear', u'port', u'backlog']
[u'govt', u'defend', u'lithgow', u'debt', u'offic']
[u'nurs', u'walk', u'free', u'aid', u'father', u'death']
[u'charg', u'riot', u'link', u'raid']
[u'oval', u'death', u'think', u'suspici']
[u'owner', u'think', u'devilish', u'wildlif', u'park', u'plan']
[u'pair', u'fin', u'airport', u'hangar', u'collaps']
[u'pair', u'hurt', u'roll']
[u'park', u'request', u'state', u'help', u'road']
[u'parti', u'trade', u'blow', u'pilbara', u'develop']
[u'pilbara', u'nickel', u'project', u'fast', u'track']
[u'polic', u'crackdown', u'sydney', u'beach']
[u'polic', u'extend', u'riot', u'crackdown', u'summer']
[u'polic', u'identifi', u'beach', u'bodi', u'local', u'woman']
[u'polic', u'arrest', u'push', u'head', u'violenc']
[u'polic', u'rise', u'number', u'femal', u'drink', u'driver']
[u'polic', u'power', u'chang', u'late']
[u'polic', u'report', u'rise', u'drink', u'drive']
[u'polic', u'unhappi', u'drink', u'drive', u'number']
[u'pope', u'warn', u'christma']
[u'post', u'plan', u'threat', u'travel', u'agent', u'jetstar']
[u'potenti', u'actor', u'seek', u'australian', u'epic']
[u'premier', u'rule', u'compo', u'violenc', u'affect']
[u'probe', u'continu', u'crash']
[u'properti', u'owner', u'seek', u'land', u'acquisit', u'compo']
[u'public', u'urg', u'maintain', u'water', u'save', u'way']
[u'racial', u'violenc', u'fear', u'prompt', u'gold', u'coast']
[u'radio', u'station', u'volunt', u'face', u'evict']
[u'reluct', u'persist', u'month', u'lockhart']
[u'resid', u'continu', u'fight', u'hume', u'prison']
[u'retail', u'hope', u'christma', u'shop', u'rise']
[u'rise', u'afghanistan', u'open', u'parliament']
[u'govt', u'urg', u'shell', u'industri', u'fund']
[u'miner', u'industri', u'boom']
[u'paulo', u'hold', u'liverpool', u'world', u'titl']
[u'school', u'indigen', u'cultur']
[u'scientist', u'reconstruct', u'woolli', u'mammoth']
[u'sharon', u'vow', u'continu', u'despit', u'stroke']
[u'socceroo', u'finish', u'year', u'rank']
[u'soldado', u'salvag', u'draw', u'struggl', u'real', u'madrid']
[u'south', u'africa', u'struggl', u'hodg', u'doubl']
[u'spend', u'slow', u'hunter', u'region']
[u'stricter', u'regim', u'tip', u'gulf', u'mackerel']
[u'student', u'unveil', u'memori', u'drown', u'friend']
[u'studi', u'urg', u'site', u'store', u'radioact', u'wast']
[u'sunraysia', u'resid', u'lodg', u'submiss', u'oppos', u'dump']
[u'sydney', u'crackdown', u'deplet', u'tamworth', u'polic', u'rank']
[u'worker', u'strike', u'geelong', u'reloc']
[u'anglican', u'bishop', u'nomin', u'melbourn', u'role']
[u'tasmanian', u'fishermen', u'fear', u'marin', u'park', u'impact']
[u'taxi', u'driver', u'attack', u'gordon', u'estat']
[u'technolog', u'fuel', u'video', u'weblog', u'boom']
[u'teenag', u'charg', u'riot', u'blitz']
[u'teen', u'cyclist']
[u'teen', u'jail', u'attack', u'disabl']
[u'time', u'accolad', u'gate', u'bono']
[u'tourist', u'drown', u'gold', u'coast', u'pool']
[u'treasur', u'troubl']
[u'truck', u'driver', u'kill', u'highway', u'crash']
[u'tsunami', u'victim', u'get', u'help', u'agenc']
[u'tuckey', u'urg', u'greater', u'wheat', u'grower']
[u'charg', u'abalon', u'haul']
[u'typo', u'muddl', u'minut', u'messag']
[u'unholi', u'undi', u'adorn', u'rabbi', u'tomb']
[u'oper', u'secret', u'prison', u'kabul', u'group']
[u'senat', u'probe', u'spi', u'program']
[u'victoria', u'battl', u'worst', u'locust', u'plagu', u'decad']
[u'leader', u'seek', u'zone', u'rebat', u'increas']
[u'warn', u'bracken', u'begin', u'south', u'african', u'slide']
[u'warrior', u'eye', u'breakthrough']
[u'water', u'concern', u'remain', u'lake', u'mokoan']
[u'wealth', u'fame', u'children', u'prioriti']
[u'weekend', u'arrest', u'justifi', u'massiv', u'secur', u'presenc']
[u'wetland', u'plan', u'violat', u'farmer', u'right']
[u'wodonga', u'win', u'year', u'compens', u'battl']
[u'woman', u'surviv', u'splash', u'mackay']
[u'wool', u'merger', u'remain']
[u'world', u'trade', u'deal', u'boon', u'farmer']
[u'deal', u'modest', u'use', u'labor']
[u'plan', u'subsidi', u'need', u'commit', u'chanc']
[u'face', u'heroin', u'traffic', u'charg']
[u'accus', u'grant', u'bail']
[u'accus', u'race', u'violenc', u'plotter', u'grant', u'bail']
[u'accus', u'race', u'violenc', u'plotter', u'seek', u'bail']
[u'adelaid', u'airport', u'delay', u'domest', u'flight', u'transfer']
[u'adelaid', u'crow', u'fin', u'crash']
[u'hand', u'tsunami', u'victim', u'work']
[u'alleg', u'terrorist', u'group', u'member', u'lade']
[u'anstey', u'win', u'week', u'gong']
[u'assault', u'rise', u'percent', u'katherin']
[u'assist', u'grape', u'grower', u'look', u'unlik']
[u'assist', u'general', u'manag', u'council']
[u'assist', u'suicid', u'case', u'prompt', u'call', u'euthanasia']
[u'atherton', u'lawyer', u'cairn', u'magistr']
[u'australia', u'racist', u'countri', u'iemma']
[u'australian', u'sentenc', u'death', u'vietnam']
[u'baggaley', u'face', u'hear']
[u'bank', u'mine', u'stock', u'boost', u'market']
[u'beadman', u'suspend', u'careless', u'rid']
[u'financi', u'offic', u'reflect', u'break', u'hill', u'tie']
[u'blaze', u'take', u'toll', u'great', u'southern', u'farm']
[u'book', u'vindic', u'spirit', u'decis', u'green']
[u'boswel', u'hit', u'critic']
[u'hospit']
[u'budget', u'critic', u'wake']
[u'bulldog', u'announc', u'board', u'chang']
[u'burk', u'council', u'seek', u'pool', u'fund']
[u'fare', u'acceler']
[u'busi', u'seek', u'compo', u'ironman']
[u'busway', u'market', u'plan', u'irrespons', u'opposit']
[u'cahil', u'embarrass', u'everton', u'slump']
[u'cairn', u'mammogram', u'review']
[u'high', u'care', u'nurs', u'home', u'bed']
[u'campaign', u'dispel', u'light', u'cigarett', u'myth']
[u'cane', u'toad', u'fund', u'better', u'late']
[u'capricorn', u'coast', u'face', u'harsher', u'water', u'ban']
[u'caretak', u'coach', u'stay', u'real']
[u'chang', u'sentiment', u'turn', u'earli', u'gain']
[u'child', u'abus', u'remand', u'custodi']
[u'child', u'protect', u'worker', u'case', u'dept']
[u'child', u'assault', u'prompt', u'polic', u'warn', u'parent']
[u'civic', u'centr', u'land', u'contamin', u'secret', u'council']
[u'clone', u'debat', u'reignit']
[u'collus', u'earn', u'ferri', u'oper', u'fine']
[u'combin', u'ranger', u'program', u'unrealist', u'say']
[u'compani', u'form', u'pilbara', u'iron', u'project', u'agreement']
[u'compani', u'quiet', u'execut', u'packag']
[u'competit', u'lift', u'dairi', u'price']
[u'consular', u'offici', u'castaway', u'australian']
[u'costello', u'incid', u'show', u'standard', u'rudd']
[u'council', u'amend', u'banana', u'levi', u'plan']
[u'council', u'plan', u'problem']
[u'council', u'refer', u'saleyard', u'plan', u'panel']
[u'council', u'tour', u'help', u'apollo', u'plan']
[u'council', u'aerodrom', u'work', u'delay']
[u'coupl', u'jail', u'babi', u'kidnap']
[u'coupl', u'jail', u'barbaro', u'kidnap']
[u'court', u'award', u'voyag', u'crash', u'sailor']
[u'crew', u'battl', u'fire', u'near', u'murray', u'bridg']
[u'commentari', u'highlight', u'australia', u'south']
[u'dead', u'driver', u'jail', u'alien', u'delus']
[u'develop', u'council', u'want', u'north', u'coast', u'creation']
[u'canio', u'ban', u'match', u'second', u'nazi']
[u'dive', u'licenc', u'sale', u'open', u'gourmet', u'seafood', u'market']
[u'aerial', u'attack', u'locust', u'threat']
[u'driver', u'urg', u'wari', u'blaze']
[u'eden', u'landmark', u'land', u'redevelop']
[u'produc', u'hatch', u'uniqu', u'christma', u'gift']
[u'elit', u'soldier', u'jail', u'iraqi', u'prison', u'abus']
[u'ellison', u'reaffirm', u'solomon', u'commit']
[u'farmer', u'condemn', u'counter', u'terror', u'compo', u'snub']
[u'farm', u'water', u'sustain', u'fund']
[u'overwhelm', u'world', u'ticket', u'respons']
[u'engin', u'roll', u'investig']
[u'firefight', u'fear', u'rise', u'fuel', u'load']
[u'fire', u'rage']
[u'apprentic', u'technic', u'colleg']
[u'florida', u'plane', u'crash', u'leav', u'dead']
[u'foreign', u'warn', u'indonesian', u'kidnap', u'risk']
[u'kangaroo', u'wilson', u'die']
[u'white', u'supremacist', u'jail', u'synagogu']
[u'fraser', u'accid', u'spark', u'safeti']
[u'fuel', u'shortag', u'claim', u'mislead', u'mobil']
[u'fund', u'seek', u'tongala', u'communiti', u'health', u'centr']
[u'giant', u'squid', u'expect', u'puls', u'race']
[u'glider', u'pilot', u'die', u'cabooltur', u'crash']
[u'govt', u'inact', u'spur', u'toxic', u'weed', u'spread']
[u'govt', u'open', u'sell', u'hydro', u'stake']
[u'govt', u'ask', u'fuel', u'price', u'explain']
[u'govt', u'urg', u'address', u'taxi', u'woe']
[u'govt', u'urg', u'grant', u'winegrap', u'grower']
[u'govt', u'win', u'appeal', u'sack', u'teacher', u'compo']
[u'grain', u'harvest', u'track', u'tonn']
[u'green', u'decri', u'danger', u'truck', u'polici']
[u'group', u'confid', u'grow', u'tourist', u'number']
[u'group', u'charg', u'skateboard', u'tow']
[u'gunmen', u'storm', u'citi', u'hall', u'bethlehem']
[u'herat', u'attack', u'injur', u'italian', u'soldier']
[u'herbert', u'river', u'cane', u'farmer', u'crush', u'record', u'crop']
[u'hingi', u'comeback', u'gold', u'coast']
[u'hume', u'prison', u'plan', u'highlight', u'govt', u'hypocrisi']
[u'steven', u'quit', u'cabinet']
[u'india', u'buri', u'lanka', u'run']
[u'indigen', u'fear', u'wont', u'stop', u'lake', u'plan']
[u'indonesia', u'pull', u'soldier', u'aceh']
[u'japanes', u'firm', u'raid', u'amid', u'construct', u'scandal']
[u'jaqu', u'choos', u'test', u'debut']
[u'jovic', u'court', u'return', u'aust']
[u'keelti', u'lead', u'second', u'term']
[u'kerin', u'refus', u'heed', u'parti', u'rumbl']
[u'lack', u'end', u'south', u'east', u'aquacultur', u'cours']
[u'livestock', u'scheme', u'wast', u'money', u'beef', u'group']
[u'lynch', u'lose', u'overturn', u'sack', u'decis']
[u'die', u'coast', u'crash']
[u'hold', u'fail', u'london', u'bomb', u'attempt']
[u'hospit', u'cricket', u'bash']
[u'jail', u'bash', u'friend', u'death']
[u'jail', u'fatal', u'drunken', u'brawl']
[u'court', u'drug', u'charg']
[u'mayor', u'understand', u'pipelin', u'water', u'cost', u'fear']
[u'maywald', u'ask', u'reveal', u'allegi']
[u'melbourn', u'bypass', u'shrink', u'travel', u'time']
[u'minist', u'confid', u'agreement', u'illeg']
[u'miss', u'beagl', u'probe', u'sight', u'mar']
[u'mobil', u'user', u'warn', u'violent', u'text']
[u'moral', u'aussi', u'troop', u'iraq', u'high', u'downer']
[u'australian', u'toler', u'howard']
[u'air', u'polic', u'shortag', u'concern']
[u'cast', u'doubt', u'altern', u'power', u'viabil']
[u'reinforc', u'anti', u'stanc']
[u'want', u'fuel', u'subsidi', u'match']
[u'want', u'report', u'girl', u'death', u'public']
[u'murder', u'leav', u'biki', u'gang', u'inform']
[u'nation', u'liber', u'discuss', u'tweed', u'seat']
[u'nauru', u'seek', u'leas', u'seiz', u'plane']
[u'netanyahu', u'secur', u'likud', u'leadership']
[u'put', u'brake', u'ballarat', u'firm']
[u'nrma', u'say', u'highway', u'upgrad', u'better']
[u'nrma', u'smash', u'repair', u'unsaf', u'inquiri', u'find']
[u'transit', u'worker', u'strike', u'strand', u'million']
[u'volunt', u'work', u'save', u'beach', u'whale']
[u'offic', u'licenc', u'suspend', u'drink', u'drive']
[u'spill', u'earn', u'ship', u'owner', u'fine']
[u'optus', u'confid', u'telstra', u'wholesal', u'price']
[u'outback', u'shire', u'radio', u'nation']
[u'pacif', u'nation', u'delay', u'railway', u'rescu', u'packag']
[u'passeng', u'fin', u'baggag', u'secur', u'breach']
[u'patient', u'take', u'heart', u'stem', u'cell', u'trial']
[u'perth', u'compani', u'win', u'aviat', u'safeti', u'grant']
[u'pilot', u'jail', u'indonesian', u'activist', u'murder']
[u'plane', u'crash', u'inquest', u'hear', u'drug']
[u'back', u'costello', u'document']
[u'say', u'australian', u'racist']
[u'stand', u'costello']
[u'polic', u'hunt', u'australind', u'thiev']
[u'polic', u'bodi', u'oval']
[u'polic', u'probe', u'fatal', u'truck', u'crash']
[u'polic', u'raid', u'uncov', u'molotov', u'cocktail', u'item']
[u'polic', u'recov', u'helensburgh', u'man', u'bodi']
[u'polic', u'road', u'safeti', u'campaign', u'warn', u'driver']
[u'polic', u'road', u'campaign', u'highlight', u'drink', u'drive']
[u'polic', u'seek', u'wit', u'racial', u'brawl']
[u'polic', u'stand', u'stawel', u'offic', u'number']
[u'politician', u'face', u'eggi', u'protest']
[u'poor', u'rainfal', u'impact', u'croc', u'number']
[u'potenti', u'indi', u'carniv', u'grow', u'bigger']
[u'power', u'firm', u'face', u'extort']
[u'power', u'station', u'move', u'closer', u'realiti']
[u'predict', u'coal', u'demand', u'stay', u'strong']
[u'protea', u'confid', u'avoid', u'defeat']
[u'public', u'ask', u'gift', u'blood']
[u'public', u'offer', u'islam', u'communiti', u'support']
[u'public', u'urg', u'water', u'wise', u'despit', u'heat']
[u'push', u'continu', u'kerang', u'promot', u'levi']
[u'push', u'wooribinda', u'communiti']
[u'produc', u'deni', u'undercut', u'competitor']
[u'govt', u'earn', u'mix', u'report', u'lobbyist']
[u'fear', u'adelaid', u'summer', u'fuel']
[u'radioact', u'wast', u'dump', u'plan', u'doesnt', u'faze', u'council']
[u'raider', u'sign', u'tongu']
[u'rain', u'fail', u'lift', u'level']
[u'rape', u'trigger', u'polic', u'safeti', u'warn']
[u'real', u'estat', u'group', u'urg', u'power', u'station']
[u'report', u'criticis', u'nrma']
[u'review', u'urg', u'clone', u'lift']
[u'river', u'divers', u'littl', u'impact', u'xstrata']
[u'rolf', u'harri', u'unveil', u'royal', u'portrait']
[u'ronaldinho', u'world']
[u'rudolph', u'spoil', u'australia', u'christma']
[u'ruralco', u'takeov', u'track']
[u'sack', u'local', u'govern', u'seiz', u'offic']
[u'lobster', u'price', u'boom']
[u'open', u'aborigin', u'visitor', u'camp']
[u'sardin', u'initi', u'export']
[u'senat', u'criticis', u'detent', u'centr', u'spend']
[u'volunt', u'help', u'clean', u'storm', u'damag']
[u'shabbir', u'ban', u'year', u'illeg', u'action']
[u'sharon', u'leav', u'jerusalem', u'hospit']
[u'shire', u'back', u'push', u'reviv', u'meatwork']
[u'snowi', u'sale', u'plan', u'creat', u'khancoban', u'fear']
[u'socceroo', u'fan', u'face', u'nervous', u'wait', u'world']
[u'south', u'africa', u'hang', u'tough', u'perth']
[u'stinger', u'attack', u'close', u'beach']
[u'stinger', u'attack', u'prompt', u'warn', u'parent']
[u'stirl', u'hear', u'sale', u'concern']
[u'standard', u'detent', u'centr', u'build', u'sale']
[u'survey', u'highlight', u'matur', u'tree', u'log']
[u'tamworth', u'leav', u'line', u'polic']
[u'terror', u'accus', u'lade', u'court', u'tell']
[u'tiger', u'airway', u'fli', u'darwin']
[u'tiger', u'incent', u'play', u'tassi']
[u'toilet', u'tasmania', u'flush', u'visitor']
[u'tokyo', u'exchang', u'boss', u'resign']
[u'townsvill', u'dengu', u'outbreak', u'declar']
[u'train', u'servic', u'return', u'contractor']
[u'transperth', u'consid', u'late', u'night', u'transport', u'servic']
[u'trio', u'jail', u'bash', u'death']
[u'tsunami', u'survivor', u'live', u'standard', u'condit']
[u'tweed', u'region', u'sport', u'plan']
[u'typo', u'drive', u'peso', u'worth']
[u'uganda', u'face', u'compo']
[u'union', u'fear', u'truck', u'accid', u'chang']
[u'upper', u'hunter', u'valley', u'offer', u'mine', u'prospect']
[u'uranium', u'freight', u'futur', u'unclear']
[u'victoria', u'introduc', u'human', u'right', u'charter']
[u'vinni', u'leav', u'short', u'volunt', u'christma']
[u'voyag', u'crash', u'sailor', u'get', u'compo']
[u'warn', u'final', u'break', u'draw', u'like']
[u'warn', u'inroad']
[u'warn', u'make', u'inroad']
[u'warrior', u'break', u'drought', u'beat', u'bull']
[u'warrior', u'resum', u'chase', u'brisban']
[u'water', u'bomber', u'boost', u'south', u'coast']
[u'weather', u'delay', u'mainland', u'transfer', u'australian']
[u'wenger', u'face', u'refere', u'critic']
[u'western', u'power', u'fin', u'dead', u'tenterden', u'blaze']
[u'widow', u'win', u'access', u'dead', u'husband', u'sperm']
[u'youth', u'circus', u'perform', u'game', u'art', u'festiv']
[u'zidan', u'happi', u'world']
[u'mental', u'health', u'servic', u'report']
[u'arrest', u'weapon', u'crackdown']
[u'kill', u'gunmen', u'attack', u'nigerian', u'pipelin']
[u'aborigin', u'corpor', u'pleas', u'nativ', u'titl']
[u'accc', u'reject', u'telstra', u'wholesal', u'price', u'rise']
[u'govt', u'defend', u'busway', u'market', u'tender']
[u'activist', u'duck', u'shoot', u'quota']
[u'mental', u'health', u'fund', u'target']
[u'adelaid', u'airport', u'domest', u'servic', u'transfer', u'delay']
[u'aero', u'club', u'say', u'crash', u'victim', u'train', u'glider']
[u'agforc', u'maintain', u'push', u'water', u'charg', u'relief']
[u'agreement', u'reach', u'intellig', u'island', u'fund']
[u'albani', u'mayor', u'reject', u'resign']
[u'alleg', u'terrorist', u'deni', u'allegi', u'lade']
[u'amnesti', u'urg', u'govt', u'help', u'death', u'australian']
[u'answer', u'seek', u'runaway', u'hous', u'share']
[u'aquacultur', u'group', u'upset', u'cours', u'ax']
[u'arsenal', u'complaint', u'chelsea', u'defeat', u'uphold']
[u'kill', u'timor', u'indonesian']
[u'aussi', u'urg', u'enjoy', u'massiv', u'outback', u'backyard']
[u'australian', u'dollar', u'dive', u'greenback', u'gather']
[u'australian', u'kidnap', u'gaza']
[u'australia', u'continu', u'burn', u'illeg', u'fish', u'boat']
[u'author', u'toowoomba', u'safer']
[u'author', u'readi', u'threat']
[u'baggaley', u'ban', u'steroid']
[u'balibo', u'coron', u'wont', u'whitlam']
[u'bash', u'sydney', u'teen', u'mend']
[u'bemax', u'prepar', u'mine', u'boost']
[u'strike', u'gulf', u'mexico']
[u'biotechnologist', u'jail', u'ecstasi']
[u'bishop', u'say', u'social', u'isol', u'race', u'riot']
[u'blatter', u'call', u'racism', u'crackdown']
[u'bogut', u'star', u'buck']
[u'booki', u'sting', u'bet', u'loophol']
[u'die', u'highway', u'roll']
[u'hospit', u'truck']
[u'brit', u'complet', u'chilli', u'antarctica', u'swim']
[u'break', u'water', u'main', u'near', u'fix']
[u'buckley', u'support', u'rocca']
[u'bullarto', u'communiti', u'await', u'boundari', u'consult']
[u'bulldog', u'lose', u'darci', u'season']
[u'bull', u'punt', u'rooki', u'paulsen']
[u'bushfir', u'threaten', u'sydney', u'home']
[u'busi', u'affair', u'harper', u'question']
[u'adopt', u'human', u'right', u'charter']
[u'cape', u'lambert', u'iron', u'list']
[u'cardboard', u'king', u'accus', u'price', u'fix']
[u'part', u'factori', u'slash', u'job']
[u'centrelink', u'fraud', u'earn', u'suspend', u'jail', u'term']
[u'readi', u'bushfir', u'season']
[u'warn', u'farmer', u'watch', u'risk']
[u'chad', u'chase', u'rebel', u'sudan', u'border']
[u'child', u'protect', u'crisi', u'need', u'leadership']
[u'chines', u'toxic', u'wast', u'spill', u'hit', u'downstream', u'citi']
[u'concern', u'air', u'traeger', u'park', u'delay']
[u'concern', u'hold', u'miss', u'teenag']
[u'conroy', u'miss', u'christma', u'trade']
[u'coronari', u'heart', u'diseas', u'rat', u'halv']
[u'council', u'back', u'fish', u'restrict']
[u'council', u'green', u'light', u'wind', u'farm', u'plan']
[u'council', u'urg', u'establish', u'escarp', u'committe']
[u'court', u'uphold', u'leighton', u'road', u'delay', u'penalti']
[u'credit', u'card', u'applic', u'surg']
[u'creditor', u'decid', u'fratern', u'club', u'futur']
[u'crighton', u'decid', u'retir', u'villag', u'appeal']
[u'croc', u'monster', u'horror', u'flick', u'good', u'tourism']
[u'darci', u'undergo', u'second', u'reconstruct']
[u'deal', u'wont', u'stop', u'illeg', u'fish']
[u'defenc', u'end', u'inquiri', u'wagga', u'gang', u'rape', u'claim']
[u'dept', u'investig', u'unsecur', u'asbesto']
[u'dockland', u'wicket', u'batsman', u'paradis']
[u'doctor', u'group', u'attack', u'restrict']
[u'door', u'close', u'baan', u'public', u'school']
[u'downer', u'discuss', u'militari', u'commit', u'afghan']
[u'downer', u'hope', u'death', u'sentenc', u'clemenc']
[u'continu', u'monitor', u'locust']
[u'reject', u'hunter', u'river', u'fish', u'kill', u'report']
[u'earth', u'fall', u'delay', u'endeavour', u'product', u'boost']
[u'econom', u'growth', u'predict', u'climb']
[u'edward', u'cane', u'toad', u'effort', u'hand']
[u'effort', u'continu', u'save', u'whale', u'strand']
[u'electr', u'price', u'rise', u'tasmania']
[u'england', u'disappoint', u'tour', u'victori']
[u'essien', u'reject', u'dirti']
[u'etoo', u'make', u'lucki', u'barca']
[u'exercis', u'test', u'cross', u'border', u'prepared']
[u'feder', u'fund', u'target', u'alburi', u'airport', u'improv']
[u'feder', u'govt', u'help', u'fund', u'disast']
[u'ferguson', u'share', u'hous', u'minor']
[u'take', u'hold', u'grampian']
[u'fleme', u'doubt', u'lanka', u'seri']
[u'lifesav', u'jail', u'child', u'abus']
[u'foster', u'care', u'report', u'find', u'system', u'problem']
[u'bait', u'scheme', u'expand']
[u'fri', u'chicken', u'fail', u'conceal', u'cannabi']
[u'back', u'strength', u'number']
[u'giant', u'earthworm', u'reloc']
[u'gold', u'coast', u'host', u'magic', u'million', u'sale']
[u'googl', u'shut', u'microsoft']
[u'govt', u'know', u'fail', u'busi', u'harper']
[u'govt', u'quiet', u'heat', u'rebat', u'extens']
[u'govt', u'reject', u'highway', u'upgrad']
[u'govt', u'seek', u'help', u'negoti', u'health', u'fund']
[u'govt', u'sue', u'detent', u'centr', u'detaine', u'death']
[u'govt', u'replac', u'ravag', u'school']
[u'govt', u'polic', u'station', u'delay']
[u'govt', u'urg', u'includ', u'dubbo', u'taxi', u'safeti', u'trial']
[u'govt', u'urg', u'probe', u'lagoon', u'bird', u'fish', u'kill']
[u'greenpeac', u'inflat', u'challeng', u'japanes']
[u'green', u'catch', u'truck', u'applic']
[u'hamilton', u'crash', u'pilot', u'best']
[u'hansieg', u'judg', u'investig', u'rugbi', u'boss']
[u'heliport', u'propon', u'fight', u'council', u'decis']
[u'hingi', u'confirm', u'sydney', u'start']
[u'hingi', u'expect', u'threat', u'gold', u'coast', u'event']
[u'hingi', u'expect', u'threat', u'gold', u'coast']
[u'hous', u'evacu', u'blaze']
[u'icac', u'urg', u'charg', u'build', u'licenc', u'fraud']
[u'chief', u'condemn', u'perth', u'racism']
[u'illeg', u'fish', u'boat', u'seiz']
[u'increas', u'cost', u'continu', u'pressur', u'farm']
[u'inquest', u'hold', u'girl', u'electrocut']
[u'intellig', u'design', u'theori', u'lesson']
[u'intens', u'blaze', u'heat', u'test', u'firefight']
[u'inzamam', u'shoaib', u'skip']
[u'refus', u'hear', u'actu', u'wage', u'case']
[u'irish', u'clock', u'throw', u'light', u'stone', u'past']
[u'jone', u'secur', u'second', u'mayor', u'term']
[u'judg', u'extend', u'violent', u'offend', u'jail', u'term']
[u'june', u'juli', u'start', u'date', u'expect', u'retir']
[u'kasper', u'back', u'struggl', u'love']
[u'kintor', u'councillor', u'secur', u'local', u'govt', u'associ']
[u'kookaburra', u'keen', u'build', u'recent', u'success']
[u'kumbl', u'tripl', u'strike', u'give', u'india', u'advantag']
[u'lamb', u'market', u'drive', u'meat', u'work', u'refurbish']
[u'minut', u'christma', u'shop', u'surg', u'kick']
[u'local', u'link', u'weight', u'studi', u'find']
[u'longford', u'abattoir', u'plan', u'massiv', u'expans']
[u'magistr', u'refus', u'drop', u'charg', u'runaway']
[u'manag', u'seek', u'pipelin', u'water', u'distribut']
[u'arrest', u'fail', u'london', u'bomb']
[u'jail', u'kill', u'brother']
[u'market', u'surg', u'record', u'high']
[u'mayor', u'look', u'forward', u'better', u'council', u'meet']
[u'mayor', u'puzzl', u'develop', u'approv', u'review']
[u'mayor', u'unhappi', u'wetland', u'defenc', u'cost']
[u'maywald', u'work', u'govt']
[u'mcgrath', u'blame', u'draw', u'flat', u'pitch']
[u'meat', u'processor', u'say', u'meat', u'market']
[u'medicar', u'rebat', u'decis', u'expect', u'boost']
[u'medowi', u'jump', u'contain', u'line']
[u'mental', u'health', u'crisi', u'loom']
[u'million', u'wipe', u'budget', u'surplus']
[u'miner', u'warn', u'iron', u'truck', u'limit']
[u'motorcyclist', u'claim', u'polic', u'fell']
[u'nativ', u'titl', u'agreement', u'pave', u'petroleum']
[u'sale', u'bounc']
[u'news', u'corp', u'stand', u'trial', u'contract', u'breach']
[u'nrma', u'stick', u'internet', u'smash', u'repair', u'tender']
[u'declar', u'total']
[u'launch', u'high', u'court', u'challeng', u'law']
[u'polic', u'accus', u'brutal', u'forc', u'cover']
[u'crew', u'fight', u'blaze']
[u'nullarbor', u'farmer', u'await', u'drought', u'decis']
[u'nurs', u'attack', u'rule', u'guilti', u'insan']
[u'nurs', u'return', u'groot', u'eylandt']
[u'olymp', u'kayak', u'ban', u'steroid']
[u'opposit', u'seek', u'clarif', u'futur']
[u'owen', u'look', u'forward', u'liverpool', u'return']
[u'passeng', u'rail', u'servic', u'track']
[u'payrol', u'clerk', u'plead', u'guilti', u'fraud']
[u'peac', u'activist', u'arrest', u'warship', u'antic']
[u'peopl', u'urg', u'avoid', u'mosquito', u'bite']
[u'polic', u'hunt', u'thiev', u'machet', u'threat']
[u'polic', u'offic', u'charg']
[u'polic', u'prepar', u'christma', u'northern', u'road', u'blitz']
[u'polic', u'prepar', u'christma', u'road', u'crackdown']
[u'polic', u'union', u'defend', u'payment', u'email']
[u'pont', u'condemn', u'racial', u'abus']
[u'pont', u'defend', u'test', u'declar']
[u'produc', u'legal', u'injunct', u'cheap']
[u'properti', u'oversuppli', u'spur', u'build', u'owner']
[u'public', u'warn', u'blaze', u'danger']
[u'public', u'warn', u'high', u'danger']
[u'qanta', u'urg', u'passeng', u'check', u'earli']
[u'farmer', u'reliev', u'water', u'price', u'polici']
[u'report', u'urg', u'strict', u'condit', u'coal', u'plan']
[u'risk', u'second', u'malign', u'melanoma', u'high']
[u'decis', u'pave', u'shop', u'centr']
[u'rumsfeld', u'doubt', u'laden', u'control']
[u'runaway', u'girl', u'live', u'notori', u'paedophil']
[u'russian', u'work', u'head', u'toxic', u'slick']
[u'sack', u'council', u'deni', u'seiz', u'offic']
[u'countri', u'health', u'board', u'merg']
[u'salari', u'doctor', u'reach', u'deal']
[u'school', u'slow', u'zone', u'extend']
[u'school', u'link', u'sect', u'threaten', u'closur']
[u'senat', u'committe', u'investig', u'guest', u'worker']
[u'share', u'market', u'record', u'territori']
[u'singl', u'desk', u'market', u'china']
[u'smelter', u'upgrad', u'delay', u'doesnt', u'faze']
[u'solid', u'fenc', u'offer', u'better', u'protect', u'csiro']
[u'southern', u'goldfield', u'blaze', u'wipe', u'bushland']
[u'speed', u'camera', u'help', u'save', u'live', u'tripodi']
[u'stadium', u'readi', u'multiplex']
[u'stargaz', u'scan', u'sky', u'gamma', u'ray']
[u'state', u'spend', u'mental', u'health']
[u'station', u'owner', u'fin', u'petrol', u'discount']
[u'surf', u'club', u'mark', u'exchang', u'scheme', u'anniversari']
[u'sydney', u'violenc', u'suspect', u'bail', u'revok']
[u'tree', u'plantat', u'sell', u'compani']
[u'teen', u'die', u'mornington', u'peninsula', u'crash']
[u'terror', u'ethnic', u'violenc', u'featur', u'bishop']
[u'terror', u'suspect', u'pledg', u'allegi', u'jihad', u'court']
[u'thailand', u'play', u'tsunami', u'memori', u'attack', u'warn']
[u'storey', u'unit', u'possibl', u'jezzin', u'barrack']
[u'tiger', u'kill', u'africa', u'mugger']
[u'student', u'credit', u'famili', u'success']
[u'tour', u'industri', u'urg', u'holiday', u'home', u'regist']
[u'tourism', u'group', u'play', u'stinger', u'threat']
[u'transport', u'group', u'air', u'fear', u'futur']
[u'tribun', u'rule', u'favour', u'wast', u'water', u'compani']
[u'troubl', u'time', u'cooma', u'saleyard']
[u'trucki', u'accus', u'neglig', u'drive']
[u'tweed', u'medic', u'research', u'centr']
[u'approv', u'peacebuild', u'bodi']
[u'union', u'back', u'child', u'protect', u'worker', u'industri']
[u'unit', u'wigan', u'leagu', u'semi']
[u'uralla', u'council', u'continu', u'monitor', u'foundri']
[u'vegi', u'grower', u'feel', u'brunt', u'fertilis', u'sale']
[u'victorian', u'ask', u'alert']
[u'volunt', u'refloat', u'strand', u'whale']
[u'doubl', u'budget', u'surplus']
[u'wage', u'chief', u'busi', u'deal', u'question']
[u'watch', u'holiday', u'alcohol', u'intak', u'cancer', u'group', u'warn']
[u'water', u'bomb', u'help', u'contain', u'bushfir']
[u'water', u'tank', u'emerg']
[u'wodonga', u'secur', u'patrick', u'freight', u'distribut']
[u'woman', u'die', u'toowoomba', u'crash']
[u'xmas', u'card', u'snub', u'reopen', u'mourinho', u'wenger', u'feud']
[u'kill', u'vietnam', u'flood']
[u'aborigin', u'elder', u'sexual', u'assault', u'sentenc', u'rule']
[u'accus', u'child', u'abductor', u'lose', u'suppress']
[u'afghan', u'coalit', u'forc', u'clash', u'milit']
[u'american', u'bull', u'attack']
[u'arsenal', u'leagu', u'semi', u'shoot']
[u'asio', u'probe', u'sydney', u'riot']
[u'aust', u'afghanistan', u'sign', u'counter', u'terror']
[u'australian', u'hostag', u'free', u'gaza']
[u'australian', u'hostag', u'unharm', u'gaza', u'captiv']
[u'australian', u'jail', u'drug', u'possess', u'indonesia']
[u'australian', u'storytel', u'great', u'die']
[u'author', u'warn', u'poultri', u'water']
[u'bail', u'refus', u'melbourn', u'terrorist', u'suspect']
[u'thing', u'predict', u'colleg']
[u'bing', u'drink', u'damag', u'studi']
[u'birney', u'question', u'contempt', u'parliament']
[u'blackout', u'leav', u'resid', u'dark']
[u'blaze', u'crew', u'busi', u'overnight']
[u'bogut', u'prais', u'gaze']
[u'bogut', u'buck', u'target', u'play', u'off']
[u'bomb', u'explod', u'near', u'spanish', u'nightclub']
[u'bowen', u'basin', u'gladston', u'plan']
[u'budget', u'cut', u'affect', u'central', u'coast', u'hospit']
[u'bulldog', u'come', u'term', u'darci', u'loss']
[u'bull', u'warrior', u'gabba']
[u'bureau', u'warn', u'risk']
[u'burk', u'shire', u'seek', u'palaszczuk', u'wild', u'river', u'meet']
[u'bush', u'urg', u'support', u'anti', u'terror', u'law']
[u'busi', u'subject', u'attempt', u'arson', u'attack']
[u'businessman', u'deni', u'cartel', u'knowledg']
[u'businessman', u'reject', u'cartel', u'claim']
[u'govt', u'releas', u'port', u'piri', u'blood', u'lead']
[u'campaign', u'urg', u'sydneysid', u'cronulla', u'beach']
[u'chariti', u'struggl', u'bush', u'ahead', u'christma']
[u'chopper', u'accid', u'victim', u'die']
[u'civic', u'centr', u'approv', u'loom']
[u'cobar', u'look', u'continu', u'drought']
[u'come', u'cronulla', u'say']
[u'council', u'call', u'clean', u'cabl', u'beach']
[u'council', u'fund', u'sewerag', u'upgrad']
[u'council', u'want', u'declar', u'chang']
[u'court', u'rule', u'govt', u'padilla', u'case']
[u'death', u'bird', u'virus', u'resist', u'tamiflu']
[u'defenc', u'staff', u'darwin', u'reloc']
[u'desper', u'elder', u'seek', u'kookaburra', u'reselect']
[u'dfat', u'updat', u'indonesia', u'travel', u'warn']
[u'dont', u'whale', u'ship', u'refuel', u'greenpeac', u'urg', u'govt']
[u'doubt', u'cast', u'rescu', u'plane', u'plan']
[u'downer', u'criticis']
[u'downer', u'criticis', u'thai', u'tsunami', u'memori']
[u'doyl', u'reshuffl', u'shadow', u'cabinet']
[u'driver', u'hurt', u'highway', u'crash']
[u'driver', u'surviv', u'shepparton', u'roll']
[u'elton', u'john', u'tie', u'knot']
[u'epworth', u'hospit', u'expand', u'freemason']
[u'atsic', u'deputi', u'chair', u'face', u'public', u'offic', u'abus']
[u'cunningham', u'staffer', u'decid', u'action']
[u'extrem', u'weather', u'condit', u'bring', u'total', u'ban']
[u'farmer', u'jump', u'defenc', u'locust']
[u'farmer', u'urg', u'safe']
[u'fatal', u'crash', u'number', u'fall']
[u'father', u'group', u'appeal', u'access', u'festiv']
[u'fear', u'region', u'busi', u'lose', u'lotteri']
[u'feder', u'fund', u'boost', u'region', u'art']
[u'film', u'maker', u'keen', u'solv', u'warplan', u'wreck', u'mysteri']
[u'firebug', u'think', u'gippsland', u'fire']
[u'crew', u'battl', u'factori']
[u'crew', u'prepar', u'extrem', u'weather', u'grampian']
[u'destroy', u'port', u'stephen', u'factori']
[u'firefight', u'continu', u'tackl', u'grampian', u'blaze']
[u'fire', u'bring', u'control']
[u'firm', u'announc', u'prepar', u'cathedr', u'site', u'master']
[u'region', u'high', u'speed', u'train', u'begin']
[u'fitzgibbon', u'lead', u'rooster']
[u'fund', u'seek', u'cool', u'hospit']
[u'gilchrist', u'leap', u'pont', u'defenc']
[u'govt', u'criticis', u'sewerag', u'project', u'delay']
[u'govt', u'rule', u'action', u'whale', u'ship']
[u'govt', u'seek', u'recov', u'court', u'cost']
[u'govt', u'sign', u'deal', u'secur', u'suppli']
[u'govt', u'suspend', u'murray', u'mouth', u'dredg']
[u'govt', u'becton', u'develop']
[u'govt', u'urg', u'lift', u'market', u'effort']
[u'fund', u'rural', u'train', u'program']
[u'green', u'group', u'pleas', u'paradis', u'water', u'price']
[u'greenpeac', u'confront', u'whaler']
[u'group', u'reject', u'plantat', u'industri', u'claim']
[u'group', u'sign', u'econom', u'develop', u'agreement']
[u'handl', u'rail', u'rescu', u'packag', u'foolish']
[u'heartbroken', u'shabbir', u'contempl', u'quit', u'cricket']
[u'high', u'school', u'reflect', u'staff', u'loss']
[u'hodg', u'fulfil', u'childhood', u'dream']
[u'hop', u'liquor', u'accord', u'coast', u'crime']
[u'footprint', u'track', u'nation', u'park']
[u'immigr', u'return', u'baxter', u'psychiatr']
[u'indonesia', u'probe', u'poison', u'human', u'right']
[u'industri', u'meet', u'biofuel', u'target']
[u'inland', u'highway', u'align', u'analysi', u'recommend']
[u'intern', u'expect', u'harm', u'council']
[u'irrig', u'criticis', u'doubl', u'water', u'charg']
[u'train', u'fund', u'benefit', u'indigen', u'communiti']
[u'japanes', u'whaler', u'face', u'greenpeac', u'action', u'hobart']
[u'jellyfish', u'research', u'irukandji', u'breed', u'site']
[u'journalist', u'fin', u'prison', u'interview']
[u'judg', u'issu', u'jail', u'threat', u'transport', u'strike']
[u'juventus', u'year', u'win', u'style']
[u'spin', u'benaud', u'tell', u'warn']
[u'kosmina', u'call', u'youth', u'leagu']
[u'kumbl', u'bowl', u'india', u'test', u'victori']
[u'lawyer', u'talk', u'lyon', u'council']
[u'liber', u'want', u'urgent', u'decis', u'electron']
[u'loss', u'older', u'worker', u'cost', u'busi', u'thousand']
[u'macmahon', u'award', u'iron', u'contract']
[u'arrest', u'airport', u'heroin', u'stash']
[u'charg', u'violent', u'text', u'messag']
[u'face', u'court', u'moone', u'beach', u'death']
[u'want', u'question', u'murder', u'see', u'near']
[u'market', u'fall', u'intra', u'record']
[u'mayor', u'hit', u'govt', u'snowi', u'sell']
[u'mayor', u'look', u'shorter', u'council', u'question', u'time']
[u'mayor', u'question', u'independ', u'rail', u'report']
[u'mayor', u'region', u'water', u'plan']
[u'mcewen', u'hushovd', u'duel', u'spark', u'tour']
[u'crowd', u'face', u'secur', u'crackdown']
[u'mcgrath', u'expect', u'thing', u'symond']
[u'meander', u'threat', u'doesnt', u'faze', u'minist']
[u'merger', u'creat', u'aust', u'cotton', u'giant']
[u'minist', u'warn', u'whale', u'confront']
[u'delay', u'motor', u'race', u'plan']
[u'govt', u'fund', u'seek', u'maintain', u'heritag']
[u'mundin', u'call', u'peac', u'beach']
[u'murchison', u'water', u'safeti', u'scheme']
[u'mysteri', u'surround', u'wetland', u'declar']
[u'narrabri', u'librari', u'undergo', u'facelift']
[u'nation', u'trust', u'slam', u'report', u'recommend']
[u'newcastl', u'defi', u'forecast', u'develop', u'slowdown']
[u'jail', u'plan', u'spark', u'derbi', u'land', u'withdraw']
[u'technolog', u'prove', u'hard', u'sell']
[u'sight', u'tradespeopl', u'shortag']
[u'pave', u'tugun', u'bypass']
[u'seek', u'bypass', u'feder', u'law']
[u'opinion', u'divid', u'fenc']
[u'opposit', u'seek', u'ashourn', u'settlement', u'detail']
[u'panther', u'reserv', u'judgment', u'gower']
[u'park', u'problem', u'hurt', u'small', u'busi']
[u'plan', u'stirl', u'heritag', u'list']
[u'plan', u'afoot', u'student', u'continu', u'educ']
[u'back', u'fair', u'commiss', u'chief']
[u'oppos', u'marriag']
[u'welcom', u'news', u'hostag', u'releas']
[u'polic', u'arrest', u'bank', u'manag', u'heist']
[u'polic', u'award', u'recognis', u'indigen', u'homeless']
[u'polic', u'crack', u'credit', u'card', u'fraud', u'scheme']
[u'polic', u'investig', u'melbourn', u'fire']
[u'polic', u'investig', u'normanton', u'death']
[u'polic', u'investig', u'suspect', u'murder']
[u'polic', u'prepar', u'holiday', u'road', u'crackdown']
[u'polic', u'probe', u'dead', u'crash']
[u'prison', u'support', u'group', u'urg', u'chang', u'correct']
[u'puerta', u'hand', u'year', u'drug']
[u'ranatunga', u'flay', u'warn', u'cheap', u'wicket', u'comment']
[u'real', u'suffer', u'nightmar', u'christma']
[u'rediscov', u'rembrandt', u'hammer']
[u'refloat', u'whale', u'remain', u'close', u'shallow', u'beach']
[u'region', u'urg', u'litter', u'report']
[u'resid', u'warn', u'watch', u'water', u'usag']
[u'riot', u'control', u'leav', u'local', u'polic', u'station']
[u'robinson', u'see', u'baggaley', u'warn']
[u'rocket', u'attack', u'injur', u'isra', u'soldier']
[u'rough', u'sea', u'prevent', u'rescu', u'australian', u'return']
[u'rspca', u'offer', u'owner', u'vital', u'inform']
[u'rule', u'stop', u'nurs', u'report', u'attack', u'union']
[u'saddam', u'accus', u'forc', u'tortur']
[u'saddam', u'accus', u'white', u'hous', u'lie']
[u'saddam', u'trial', u'hear', u'graphic', u'evid', u'tortur']
[u'grain', u'grower', u'fight', u'competit']
[u'santa', u'ticket', u'christma', u'cheer']
[u'santa', u'teresa', u'announc', u'christma', u'light', u'winner']
[u'santo', u'payout', u'moomba', u'explos']
[u'sartor', u'green', u'light', u'barl', u'beach', u'develop']
[u'saturn', u'moon', u'give', u'birth', u'ring', u'scientist']
[u'secur', u'revamp', u'boost', u'esper', u'airport', u'cost']
[u'skipper', u'call', u'handicap', u'chang']
[u'skipper', u'hit', u'blue', u'water', u'favourit']
[u'smooth', u'dancer', u'poetri', u'emot', u'studi']
[u'southcar', u'chopper', u'team', u'confid', u'fund', u'deal']
[u'southern', u'tourist', u'flock', u'bowen']
[u'state', u'govt', u'save', u'high', u'court', u'challeng']
[u'steal', u'wwii', u'medal', u'beach']
[u'strict', u'condit', u'place', u'psychiatrist', u'guilti']
[u'strong', u'year', u'ahead', u'tip']
[u'studi', u'expos', u'flaw', u'anti', u'nuclear', u'energi', u'debat']
[u'studi', u'show', u'support', u'communiti', u'bank', u'plan']
[u'sunbeam', u'pick', u'payment', u'scheme']
[u'surpris', u'store', u'christma', u'turkey', u'buyer']
[u'survey', u'show', u'high', u'rat', u'gambl']
[u'talk', u'address', u'speed', u'truck', u'concern']
[u'tamil', u'tiger', u'clash', u'lankan', u'navi']
[u'vege', u'industri', u'need', u'reform', u'report']
[u'rule', u'reef', u'closur', u'compo', u'claim']
[u'teen', u'charg', u'cronulla', u'train', u'attack']
[u'telstra', u'line', u'rental', u'price']
[u'terror', u'accus', u'refus', u'bail']
[u'tiger', u'sink', u'sixer', u'hobart']
[u'tiger', u'sink', u'sixer', u'pirat', u'pig']
[u'jockey', u'boycott', u'tasmanian', u'race']
[u'total']
[u'trekker', u'pay', u'tribut', u'depend', u'donkey']
[u'tribut', u'flow', u'townsvill', u'architect']
[u'trio', u'charg', u'fairi', u'meadow', u'attack']
[u'truck', u'electr', u'fault', u'tandarra', u'blaze']
[u'turtl', u'nest', u'encourag', u'green', u'group']
[u'bird', u'death', u'confirm', u'indonesia']
[u'polic', u'kill', u'philippin', u'unrest']
[u'seal', u'fighter', u'deal', u'saudi', u'arabia']
[u'union', u'back', u'icac', u'build', u'licenc', u'scheme']
[u'democrat', u'block', u'arctic', u'drill', u'legisl']
[u'senat', u'agre', u'extend', u'patriot']
[u'govt', u'urg', u'provid', u'fund', u'homeless']
[u'wait', u'coach', u'french', u'dragon']
[u'wangaratta', u'free', u'gaza', u'strip', u'kidnap', u'ordeal']
[u'prepar', u'high', u'court', u'challeng']
[u'water', u'plan', u'releas']
[u'water', u'storag', u'drop', u'year']
[u'whale', u'program', u'lack', u'scientif', u'credibl']
[u'windi', u'legend', u'week', u'back', u'lara', u'skipper']
[u'windsor', u'reopen', u'tunnel', u'debat']
[u'woman', u'die', u'road', u'crash']
[u'woman', u'dead', u'todd', u'river']
[u'world', u'gain', u'kindl', u'wall', u'ralli']
[u'zellweg', u'singl', u'scene']
[u'iraqi', u'soldier', u'kill', u'checkpoint', u'attack']
[u'channel']
[u'accc', u'begin', u'action', u'diamond', u'sale']
[u'author', u'defend', u'delay']
[u'consid', u'relax', u'health', u'standard']
[u'relax', u'health', u'test']
[u'accept', u'right', u'deal']
[u'alexand', u'will', u'share', u'captainci']
[u'back', u'nicotin', u'withdraw', u'plan']
[u'armstrong', u'face', u'dope', u'investig', u'pound']
[u'school', u'upbeat', u'fund', u'chang']
[u'bank', u'urg', u'fire', u'appeal']
[u'benefit', u'see', u'integr', u'health', u'servic', u'facil']
[u'better', u'condit', u'dubbo', u'busi']
[u'blaze', u'claim', u'sheep', u'crop']
[u'team', u'alert', u'total']
[u'biofuel', u'product', u'target']
[u'blackdown', u'fire', u'think', u'suspici']
[u'blair', u'make', u'visit', u'iraq']
[u'bondi', u'beach', u'parti', u'ahead']
[u'bone', u'steal', u'claim', u'outrag', u'cook', u'famili']
[u'bongco', u'call', u'life', u'ban', u'racist', u'fan']
[u'brack', u'take', u'bull', u'toddler', u'attack']
[u'break', u'hill', u'firm', u'cash', u'christma', u'trade']
[u'bronco', u'signal', u'booz', u'crackdown']
[u'bull', u'warrior', u'gabba']
[u'busi', u'expect', u'minut', u'christma', u'rush']
[u'busway', u'project', u'long', u'term', u'stanhop', u'say']
[u'cairn', u'muscular', u'dystrophi', u'teen', u'get', u'marathon', u'honour']
[u'communiti', u'input', u'grind', u'water']
[u'vigil', u'bushfir', u'control']
[u'cambodian', u'opposit', u'leader', u'give', u'jail', u'term']
[u'canberra', u'murder', u'home']
[u'cane', u'farmer', u'wind', u'crush']
[u'chadian', u'rebel', u'plan', u'oust', u'presid']
[u'chang', u'wont', u'compromis', u'safeti']
[u'china', u'blast', u'kill']
[u'chlorin', u'safe', u'water', u'purif', u'studi']
[u'christma', u'tree', u'beat', u'famili', u'cheer']
[u'local', u'govt', u'probe', u'seek', u'submiss']
[u'conroy', u'product', u'resum', u'listeria']
[u'council', u'blaze', u'wors']
[u'council', u'reject', u'shop', u'centr', u'plan']
[u'council', u'seek', u'time', u'plan', u'woe']
[u'council', u'telstra', u'fix', u'line', u'worri']
[u'council', u'monitor', u'wind', u'farm', u'plan']
[u'court', u'ban', u'develop', u'land', u'sale', u'promot']
[u'crash', u'emerg', u'servic', u'busi']
[u'credit', u'card', u'scam', u'worri', u'retail']
[u'crew', u'continu', u'fight', u'blaze']
[u'death', u'prompt', u'polic', u'warn', u'care', u'long']
[u'wast', u'health', u'fund']
[u'defenc', u'recruit', u'polici', u'chang']
[u'desper', u'elder', u'seek', u'kookaburra', u'reselect']
[u'didgeridoo', u'lesson', u'eas', u'sleep', u'disord']
[u'doctor', u'continu', u'rural', u'specialti', u'push']
[u'dog', u'wont', u'ban', u'nation', u'park']
[u'driver', u'warn', u'doubl', u'demerit', u'point']
[u'driver', u'warn', u'play', u'safe', u'road']
[u'time', u'affect', u'level']
[u'dubbo', u'train', u'offer', u'indigen', u'youth']
[u'die', u'woman', u'appeal', u'neglig', u'case']
[u'effort', u'stop', u'west', u'kimberley', u'weed']
[u'eleph', u'drive', u'link', u'human', u'sixth', u'sens']
[u'eritrea', u'ethiopia', u'verg']
[u'evolut', u'name', u'breakthrough']
[u'ansett', u'worker', u'sing', u'entitl']
[u'famili', u'await', u'decis', u'jovic', u'fate']
[u'farmer', u'head', u'karratha', u'marathon', u'walk']
[u'farmer', u'back', u'grain', u'ownership', u'disput']
[u'fear', u'tonga', u'king', u'health']
[u'ferrero', u'play', u'sydney', u'intern']
[u'begin', u'ticket', u'alloc']
[u'crew', u'brace', u'extrem', u'condit']
[u'firefight', u'watch', u'wind']
[u'charg', u'cronulla', u'riot']
[u'foreign', u'ship', u'crew', u'face', u'tougher', u'visa', u'check']
[u'fund', u'deal', u'wont', u'eas', u'hous', u'crisi']
[u'gabbi', u'nose']
[u'geraldton', u'generat']
[u'ghost', u'exorcis', u'hamlet', u'castl']
[u'gilchrist', u'say', u'score', u'corner']
[u'govt', u'urg', u'reinstat', u'hospit', u'detox', u'scheme']
[u'grampian', u'control']
[u'green', u'continu', u'meander', u'reassess']
[u'grigorieva', u'rais', u'european', u'train']
[u'hartley', u'reliv', u'heroic']
[u'help', u'grower', u'warehous', u'grain', u'battl']
[u'high', u'temp', u'eas']
[u'holiday', u'road', u'toll', u'stand']
[u'hospit', u'celebr', u'newborn', u'birth']
[u'hospit', u'purchas', u'machin']
[u'condit', u'spark', u'total']
[u'hunter', u'record', u'fourth', u'attempt', u'abduct']
[u'hunt', u'wallabi', u'coach', u'offici']
[u'immigr', u'dept', u'boat', u'bodi', u'identifi']
[u'immigr', u'tight', u'lip', u'baxter', u'return']
[u'impost', u'prompt', u'hospit', u'tighten', u'secur']
[u'patient', u'offer', u'help', u'quit', u'smoke']
[u'japanes', u'fleet', u'suspend', u'whale', u'greenpeac', u'say']
[u'jaqu', u'seek', u'summit', u'hayden']
[u'john', u'call', u'earli', u'decis', u'hagan']
[u'kalli', u'confid', u'box', u'appear']
[u'king', u'trounc', u'sixer']
[u'kiwi', u'astl', u'mcmillan']
[u'landcar', u'group', u'share', u'feder', u'fund']
[u'leasehold', u'freehold', u'convers']
[u'lesbian', u'driver', u'win', u'harass', u'payout']
[u'letterman', u'challeng', u'harass', u'restrain', u'order']
[u'see', u'gap', u'elect', u'review']
[u'licenc', u'pave', u'darwin', u'channel']
[u'licens', u'premis', u'chang', u'trade', u'hour']
[u'listeria', u'request', u'media', u'stunt']
[u'liverpool', u'brace', u'owen', u'return']
[u'local', u'grower', u'benefit', u'world', u'citrus']
[u'luca', u'play', u'tugun', u'bypass', u'cost']
[u'malthous', u'extend', u'magpi', u'contract']
[u'jail', u'year', u'jewel', u'heist']
[u'maradona', u'threaten', u'point', u'say', u'friend']
[u'market', u'close', u'christma', u'record', u'high']
[u'mayor', u'attack', u'weed', u'control', u'decis']
[u'mayor', u'hit', u'barl', u'beach', u'sale', u'critic']
[u'meet', u'discuss', u'winegrow', u'support', u'option']
[u'microsoft', u'risk', u'fin', u'anti', u'trust', u'case']
[u'miner', u'reduc', u'project', u'develop', u'cost']
[u'minist', u'receiv', u'hospit', u'emerg']
[u'miss', u'spoon', u'stir', u'scientist', u'action']
[u'moan', u'limit', u'top', u'petti', u'workplac', u'rule', u'list']
[u'monaro', u'warn', u'bigger', u'threat']
[u'delay', u'sale']
[u'famili', u'need', u'christma']
[u'money', u'seek', u'aquat', u'centr']
[u'bridg', u'link']
[u'prerequisit', u'toyn']
[u'lotteri', u'help', u'cover', u'winter', u'game', u'cost']
[u'york', u'transit', u'union', u'vote', u'strike']
[u'firm', u'answer', u'plane', u'crash', u'caus']
[u'flat', u'creditor']
[u'nurs', u'home', u'staff', u'hold', u'secret', u'ballot']
[u'omodei', u'call', u'opposit', u'leader', u'action', u'naiv']
[u'opposit', u'accus', u'back', u'fast', u'rail']
[u'organis', u'festiv']
[u'osasuna', u'turn', u'heat', u'barca']
[u'overnight', u'fire', u'crew', u'busi']
[u'overs', u'seek', u'convent', u'centr', u'revamp']
[u'pacif', u'nation', u'quiet', u'rescu', u'packag', u'decis']
[u'pair', u'grant', u'bail', u'cronulla', u'train', u'attack']
[u'palestinian', u'faction', u'urg', u'vote', u'delay']
[u'placer', u'dome', u'recommend', u'barrick']
[u'polic', u'car', u'ram', u'high', u'speed', u'pursuit']
[u'polic', u'crack', u'drug', u'grow', u'oper']
[u'polic', u'forc', u'holiday', u'road', u'crackdown']
[u'polic', u'probe', u'knife', u'wound']
[u'port', u'author', u'look', u'crane', u'ravensthorp']
[u'protea', u'welcom', u'racism', u'crackdown']
[u'public', u'quiz', u'council', u'chang']
[u'public', u'council', u'represent', u'option']
[u'public', u'warn', u'protect', u'melioidosi']
[u'question', u'rais', u'council', u'infrastructur', u'fund']
[u'rain', u'affect', u'beach', u'water', u'test', u'result']
[u'ramsi', u'coordin', u'hail', u'justic', u'advanc']
[u'redevelop', u'push', u'public', u'tenant', u'green']
[u'report', u'support', u'mental', u'health', u'servic', u'concern']
[u'revel', u'abl', u'breathalys']
[u'roch', u'mull', u'increas', u'tamiflu', u'dose']
[u'rumsfeld', u'vagu', u'iraq', u'deploy', u'cut']
[u'rural', u'crew', u'brace', u'extrem', u'condit']
[u'saddam', u'claim', u'tortur']
[u'salvo', u'pressur', u'vinni', u'cut', u'hour']
[u'santa', u'join', u'indonesian', u'secur', u'sweep']
[u'prepar', u'extrem', u'danger']
[u'scienc', u'merg', u'region', u'exhibit']
[u'sculli', u'reject', u'polic', u'resourc', u'claim']
[u'secur', u'guard', u'tri', u'murder']
[u'seven', u'jail', u'samurai', u'sword', u'murder']
[u'seven', u'jail', u'nighclub', u'murder']
[u'sharp', u'rise', u'melanoma', u'case']
[u'sick', u'crewman', u'airlift']
[u'smyth', u'call', u'xmas', u'break']
[u'snowi', u'hydro', u'chief', u'beat', u'privatis']
[u'socceroo', u'fan', u'wait', u'ticket', u'news']
[u'southampton', u'appoint', u'burley', u'woodward', u'dream', u'team']
[u'south', u'korean', u'stem', u'cell', u'research', u'fake']
[u'speed', u'limit', u'review', u'urg', u'chang']
[u'lanka', u'recal', u'jayasuriya']
[u'student', u'charg', u'fail', u'london', u'attack']
[u'sydney', u'hobart', u'fleet', u'merci', u'wind', u'organis']
[u'tablegrap', u'grower', u'sour', u'chile', u'import', u'decis']
[u'talk', u'fail', u'child', u'protect', u'worker', u'strike']
[u'nurs', u'edg', u'closer', u'state', u'award']
[u'technolog', u'stock', u'fuel', u'market', u'gain']
[u'therapeut', u'gene', u'switch', u'improv', u'safeti']
[u'toll', u'speed', u'highway', u'upgrad']
[u'tomingley', u'water', u'woe', u'appear']
[u'trio', u'face', u'warragul', u'murder', u'charg']
[u'tsunami', u'worsen', u'fish']
[u'turtl', u'nest', u'season', u'look', u'better']
[u'moon', u'spot', u'uranus']
[u'polic', u'chief', u'warn', u'terror', u'risk']
[u'unfit', u'personnel', u'wont', u'combat', u'minist', u'say']
[u'beef', u'export', u'japan']
[u'congress', u'extend', u'anti', u'terror']
[u'euthanasia', u'advoc', u'freedom', u'reject']
[u'reduc', u'troop', u'number', u'iraq']
[u'farm', u'quarantin', u'bird', u'scare']
[u'victorian', u'urg', u'heed']
[u'virgin', u'blue', u'flight', u'delay']
[u'economi', u'see', u'grow', u'strong']
[u'wast', u'plant', u'health', u'concern', u'adequ', u'address']
[u'water', u'shoalhaven', u'implic']
[u'weed', u'warn', u'issu', u'christma', u'decor']
[u'whale', u'diplomat', u'incid', u'brown']
[u'whale', u'protest', u'counter', u'product', u'japan']
[u'wharington', u'tip', u'thing', u'skandia']
[u'wharington', u'tip', u'thing', u'skandia']
[u'women', u'children', u'hurt', u'road', u'crash']
[u'zimbabw', u'cricket', u'strike', u'action']
[u'shut', u'amid', u'search', u'murder', u'suspect']
[u'driver', u'lose', u'licenc', u'drink', u'drive', u'blitz']
[u'aapt', u'skipper', u'forecast', u'record']
[u'australian', u'kill', u'azerbaijan', u'plane', u'crash']
[u'australian', u'question', u'thai', u'murder']
[u'author', u'plan', u'lift', u'total']
[u'author', u'rule', u'bird', u'farm']
[u'azeri', u'plane', u'crash', u'kill']
[u'beatti', u'issu', u'safeti', u'warn']
[u'drown', u'wivenho']
[u'brown', u'urg', u'action', u'whale']
[u'builder', u'stymi', u'market', u'ralli']
[u'burra', u'slow', u'go']
[u'chadian', u'urg', u'mobilis', u'sudan']
[u'china', u'sack', u'smelter', u'offici', u'toxic', u'spill']
[u'christma', u'crise', u'lifelin', u'busi']
[u'christma', u'goodi', u'arriv', u'orbit', u'space', u'station']
[u'cohen', u'give', u'england', u'fresh', u'injuri', u'headach']
[u'concept', u'rate', u'good', u'fewer', u'embryo']
[u'coral', u'reef', u'resort', u'extens', u'get', u'green', u'light']
[u'court', u'uphold', u'bank', u'thief', u'sentenc']
[u'crew', u'continu', u'monitor', u'bushfir']
[u'csiro', u'grant', u'water', u'research', u'fund']
[u'canio', u'fascist', u'racist']
[u'discount', u'reward', u'good', u'driver']
[u'dutch', u'businessman', u'jail', u'iraq', u'crime']
[u'dutchman', u'jail', u'iraqi', u'chemic', u'sale']
[u'egypt', u'opposit', u'leader', u'jail', u'forgeri']
[u'england', u'reli', u'dose', u'luck', u'beckham']
[u'england', u'underestim', u'pakistan', u'say', u'imran']
[u'fatal', u'push', u'road', u'toll']
[u'firefight', u'contain', u'sommersbi', u'blaze']
[u'firefight', u'control', u'blaze']
[u'firefight', u'pastur', u'blaze']
[u'firefight', u'alert', u'amid']
[u'fire', u'check', u'despit', u'extrem', u'condit']
[u'ganguli', u'domin', u'select', u'talk', u'pakistan', u'tour']
[u'general', u'seek', u'permiss', u'kill', u'gusmao', u'book']
[u'gene', u'link', u'age', u'grace']
[u'govt', u'shun', u'respons', u'whale', u'opposit']
[u'govt', u'japan', u'whale', u'ship', u'action']
[u'great', u'southern', u'acquir', u'land']
[u'green', u'condemn', u'pacif', u'highway', u'deal']
[u'hostag', u'famili', u'issu', u'joint', u'appeal']
[u'day', u'firefight', u'alert']
[u'iemma', u'dismiss', u'unfavour', u'poll']
[u'grant', u'iraq', u'crucial', u'loan']
[u'india', u'recal', u'ganguli', u'pakistan', u'seri']
[u'indonesia', u'brace', u'potenti', u'terrorist', u'attack']
[u'integr', u'upgrad', u'plan', u'tourism', u'bodi']
[u'itali', u'court', u'issu', u'arrest', u'warrant', u'team']
[u'jaqu', u'eye', u'long', u'term', u'test', u'career']
[u'kalli', u'expect', u'play', u'box', u'test']
[u'kalli', u'play', u'box', u'test']
[u'king', u'trounc', u'sixer', u'tiger', u'breaker', u'bullet']
[u'labor', u'pressur']
[u'legal', u'budget', u'fail', u'meet', u'demand']
[u'letter', u'prompt', u'youth', u'centr', u'inquiri']
[u'log', u'plan', u'delay', u'anger', u'wilder', u'societi']
[u'london', u'olymp', u'mistak', u'offici']
[u'medit', u'help', u'beat', u'alcohol', u'crave']
[u'memo', u'reveal', u'alito', u'support', u'spi']
[u'momentum', u'protea', u'say', u'kalli']
[u'mourinho', u'regret', u'voyeur', u'remark']
[u'muslim', u'cleric', u'predict', u'bomb']
[u'nigeria', u'provid', u'free', u'aid', u'drug']
[u'author', u'high', u'alert']
[u'high', u'bushfir', u'alert']
[u'voter', u'favour', u'liber', u'poll']
[u'hospit', u'smoke']
[u'olymp', u'vote', u'irrelev', u'london']
[u'pakistan', u'appeal', u'shabbir']
[u'patient', u'death', u'prompt', u'hospit', u'critic']
[u'picasso', u'chagal', u'paint', u'steal']
[u'poland', u'supress', u'prison', u'report']
[u'polic', u'wagga', u'brutal', u'report']
[u'poll', u'put', u'parti', u'foot']
[u'poor', u'weather', u'hamper', u'greenpeac', u'whale', u'effort']
[u'pressur', u'mount', u'zimbabw', u'cricket', u'chief']
[u'primari', u'industri', u'dept', u'seiz', u'neglect', u'sheep']
[u'protest', u'condemn', u'japan', u'whale', u'harvest']
[u'public', u'deep', u'help', u'salvo']
[u'queanbeyan', u'receiv', u'cultur', u'centr']
[u'queensland', u'sweat', u'mercuri', u'soar']
[u'quri', u'say', u'return', u'post', u'palestinian']
[u'radio', u'spoof', u'trigger', u'diplomat']
[u'ranatunga', u'quit', u'lankan', u'post']
[u'rapid', u'resolut', u'rail', u'disput', u'seek']
[u'rescu', u'australian', u'leav', u'mainland', u'vietnam']
[u'retir', u'archbishop', u'plan', u'final', u'christma', u'mass']
[u'rspca', u'issu', u'christma', u'warn', u'owner']
[u'seven', u'ponder', u'right', u'deal']
[u'sharapova', u'injuri', u'cloud']
[u'sick', u'chicken', u'clear', u'bird']
[u'sudanes', u'abduct', u'iraq']
[u'tamil', u'tiger', u'kill', u'sailor']
[u'teen', u'death', u'make', u'road', u'toll']
[u'thief', u'pick', u'wrong', u'pocket']
[u'toxic', u'slick', u'reach', u'russian', u'citi']
[u'trail', u'reopen', u'adelaid', u'flood']
[u'approv', u'phase', u'budget']
[u'check', u'muslim', u'sit', u'radiat', u'report']
[u'confirm', u'monitor', u'privat', u'sit', u'nuclear']
[u'accid', u'rais', u'road', u'toll']
[u'whaler', u'fail', u'deter', u'protest']
[u'whale', u'strand', u'theori', u'test']
[u'wild', u'wind', u'whip', u'north', u'town']
[u'wind', u'farm', u'worker', u'remain', u'intens', u'care']
[u'worker', u'kill', u'india', u'mall', u'construct']
[u'aceh', u'parent', u'look', u'tsunami', u'survivor']
[u'actress', u'laura', u'dern', u'wed', u'musician', u'harper']
[u'agreement', u'ensur', u'camp', u'banksia', u'futur']
[u'qaeda', u'zawahri', u'prais', u'taliban', u'report']
[u'aust', u'die', u'azerbaijan', u'plane', u'crash']
[u'beatti', u'admit', u'tough', u'struggl', u'regain', u'support']
[u'benitez', u'leav', u'liverpool', u'door', u'open', u'owen']
[u'peacemak', u'pope', u'urg']
[u'christma', u'fail', u'halt', u'boe', u'worker', u'strike']
[u'christma', u'diner', u'warn', u'care', u'food']
[u'church', u'leader', u'preach', u'harmoni', u'inclus']
[u'church', u'leader', u'urg', u'peac', u'communiti', u'support']
[u'clifton', u'ralli', u'coupl', u'hous']
[u'consum', u'warn', u'christma', u'scam']
[u'crew', u'remain', u'bushfir', u'alert']
[u'crowd', u'flock', u'beach', u'christma', u'celebr']
[u'dodo', u'mass', u'grave', u'mauritius']
[u'doubl', u'fatal', u'rais', u'road', u'toll']
[u'forc', u'evacu', u'african', u'home']
[u'wreak', u'havoc', u'melbourn', u'discount', u'store']
[u'henson', u'doubt', u'entir', u'nation']
[u'hop', u'fade', u'miss', u'fisherman']
[u'indonesia', u'remain', u'alert', u'christma', u'attack']
[u'indonesia', u'nia', u'island', u'rock', u'quak']
[u'iran', u'reject', u'russian', u'uranium', u'enrich', u'offer']
[u'iraq', u'want', u'free', u'saddam', u'aid', u'arrest']
[u'japan', u'develop', u'missil', u'defenc']
[u'jordanian', u'abductor', u'want', u'fail', u'hotel', u'bomber']
[u'larg', u'turnout', u'chariti', u'christma', u'lunch']
[u'leader', u'urg', u'consider', u'christma']
[u'libyan', u'court', u'order', u'retrial', u'bulgarian', u'aid', u'case']
[u'lucki', u'escap', u'motorist', u'bridg', u'crash']
[u'million', u'celebr', u'christma', u'china']
[u'monitor', u'mission', u'meet', u'tamil', u'tiger']
[u'nation', u'road', u'toll', u'stand']
[u'year', u'delay', u'second']
[u'pressur', u'jaqu', u'say', u'pont']
[u'lift', u'amid', u'eas', u'condit']
[u'crew', u'attempt', u'contain', u'central', u'coast']
[u'crew', u'fight', u'blaze', u'central', u'coast']
[u'oversea', u'troop', u'share', u'christma', u'spirit']
[u'pell', u'call', u'racial', u'toler', u'christma']
[u'pilgrim', u'throng', u'bethlehem', u'amid', u'hop', u'peac']
[u'pope', u'issu', u'spiritu', u'wake']
[u'pope', u'light', u'peac', u'candl', u'ahead', u'christma']
[u'pope', u'plead', u'peac']
[u'quak', u'rock', u'north', u'pakistan', u'report', u'damag']
[u'queen', u'prais', u'humanitarian', u'respons', u'tragedi']
[u'queen', u'messag']
[u'real', u'madrid', u'legend', u'suffer', u'heart', u'attack']
[u'relat', u'prepar', u'tsunami', u'anniversari']
[u'rough', u'weather', u'hamper', u'greenpeac', u'anti', u'whale']
[u'salvo', u'provid', u'christma', u'lunch', u'lone']
[u'santa', u'prais', u'safe', u'sleigh', u'drive']
[u'search', u'continu', u'miss', u'dingi']
[u'search', u'miss', u'scale']
[u'issu', u'sever', u'thunderstorm', u'warn']
[u'sever', u'thunderstorm', u'threaten']
[u'space', u'burial', u'grab']
[u'lankan', u'violenc', u'overshadow', u'tsunami', u'anniversari']
[u'lanka', u'tamil', u'legisl', u'shoot', u'dead', u'christma']
[u'storm', u'stop', u'town', u'make', u'christma', u'call']
[u'streaker', u'surpris', u'midnight', u'mass', u'worshipp']
[u'strong', u'christma', u'sale', u'perth', u'retail']
[u'survivor', u'rememb', u'tsunami', u'victim']
[u'sydney', u'hobart', u'record', u'tip', u'fall', u'perfect']
[u'doctor', u'spend', u'christma', u'help', u'earthquak']
[u'technic', u'fault', u'like', u'caus', u'azerbaijani', u'plane']
[u'territori', u'troop', u'prepar', u'christma', u'iraq']
[u'rebuk', u'egypt', u'opposit', u'leader']
[u'firefight', u'contain', u'blaze', u'state', u'south', u'west']
[u'wild', u'oat', u'skipper', u'doubt', u'sydney', u'hobart']
[u'woman', u'stab', u'park', u'argument']
[u'abus', u'victim', u'question', u'payout', u'process']
[u'dispel', u'light', u'cigarett', u'myth']
[u'alfa', u'romeo', u'stretch', u'lead']
[u'alfa', u'romeo', u'wild', u'oat', u'cours', u'race', u'record']
[u'qaeda', u'claim', u'kidnap', u'kill']
[u'aussi', u'join', u'thai', u'tsunami', u'memori']
[u'aussi', u'lose', u'debut', u'jaqu']
[u'baghdad', u'bomb', u'wind', u'soldier', u'polic']
[u'balconi', u'fall', u'kill']
[u'box', u'test', u'commentari', u'highlight']
[u'die', u'sydney', u'motorway', u'crash']
[u'control', u'latrob', u'feral', u'cat']
[u'canberra', u'trader', u'buck', u'retail', u'slump']
[u'children', u'santa', u'help']
[u'china', u'announc', u'bird', u'vaccin', u'plan']
[u'chines', u'kill']
[u'christma', u'revel', u'urg', u'recycl']
[u'christma', u'spend', u'patchi']
[u'condit', u'perfect', u'super', u'maxi']
[u'consum', u'warn', u'watch', u'credit', u'card', u'debt']
[u'council', u'question', u'racism', u'survey', u'find']
[u'coupl', u'dress', u'save', u'hous']
[u'crackdown', u'illeg', u'drug', u'ingredi', u'loom']
[u'doctor', u'see', u'wide', u'poison', u'test']
[u'doubt', u'chelsea', u'fulham', u'clash']
[u'everton', u'hop', u'ferguson', u'stay']
[u'damag', u'girl', u'guid', u'hall']
[u'firefight', u'brace', u'blister', u'condit']
[u'firefight', u'contain', u'chittaway', u'blaze']
[u'firework', u'set', u'guatemalan', u'shack', u'ablaz', u'kill']
[u'fisherman', u'bodi']
[u'flinder', u'rang', u'phone', u'servic', u'restor']
[u'flood', u'forc', u'filipino', u'evacu']
[u'alic', u'spring', u'mayor', u'die']
[u'hospit', u'adelaid', u'crash']
[u'kill', u'indian', u'train', u'attack']
[u'palestinian', u'shoot', u'settlement', u'protest']
[u'fuel', u'price', u'rise', u'hurt', u'poor', u'suburb']
[u'garbag', u'collector', u'truck']
[u'share', u'christma', u'troop']
[u'global', u'tsunami', u'respons', u'live', u'say']
[u'guerrilla', u'kill', u'iraq']
[u'harboursid', u'suburb', u'racist', u'survey']
[u'hayden', u'wicket', u'give', u'protea', u'hope']
[u'heritag', u'list', u'boost']
[u'holiday', u'road', u'toll', u'revis']
[u'holiday', u'road', u'toll', u'rise']
[u'form', u'laxman', u'eye', u'centuri', u'pakistan']
[u'intern', u'visitor', u'flock', u'tasmania']
[u'israel', u'detain', u'australian', u'woman']
[u'japanes', u'train', u'derail', u'kill']
[u'jayasuriya', u'hop', u'form', u'tran', u'tasman']
[u'kemp', u'box', u'test']
[u'land', u'search', u'begin', u'fisherman']
[u'lawyer', u'demand', u'probe', u'saddam', u'tortur', u'claim']
[u'lightn', u'kill', u'african', u'christma', u'parti']
[u'local', u'help', u'disast', u'relief', u'survey']
[u'loss', u'sharapova', u'blow', u'gold', u'coast']
[u'charg', u'traffic', u'accid', u'death']
[u'die', u'sydney', u'skydiv']
[u'miner', u'trap', u'china']
[u'boy', u'finish', u'high', u'school']
[u'motorcyclist', u'kill', u'collis']
[u'motorcyclist', u'death', u'rais', u'toll']
[u'nake', u'german', u'freez', u'health']
[u'blitz', u'put', u'protea']
[u'hit', u'protea']
[u'nest', u'prompt', u'wasp', u'warn']
[u'zealand', u'adopt', u'anti', u'drug', u'code', u'olymp']
[u'nightclub', u'attack', u'victim', u'coma']
[u'stamped', u'melbourn', u'sale', u'begin']
[u'crew', u'monitor', u'bushfir']
[u'polic', u'catch', u'speed']
[u'polic', u'applaud', u'safe', u'drive']
[u'perfect', u'start', u'sydney', u'hobart']
[u'perth', u'prepar', u'tsunami', u'memori']
[u'polic', u'diver', u'join', u'search', u'fisherman']
[u'polic', u'urg', u'driver', u'extra', u'care']
[u'power', u'restor', u'wild', u'storm']
[u'plater', u'clock', u'hour']
[u'profit', u'prompt', u'poki', u'limit']
[u'protest', u'stop', u'whale', u'japan']
[u'warn', u'expect', u'storm']
[u'recoveri', u'attempt', u'plan', u'crash', u'ultra', u'light']
[u'cross', u'struggl', u'blood', u'stock']
[u'retail', u'celebr', u'strong', u'sale', u'crowd']
[u'return', u'warn', u'issu', u'sale', u'begin']
[u'road', u'toll', u'sham', u'say', u'beatti']
[u'run', u'flow', u'hayden', u'pont']
[u'search', u'petrol', u'sniff', u'treatment', u'provid']
[u'water', u'usag', u'drop']
[u'sharon', u'return', u'work']
[u'smith', u'hail', u'protea', u'patienc']
[u'lankan', u'unit', u'rememb', u'tsunami', u'dead']
[u'storm', u'power', u'suppli']
[u'storm', u'threaten', u'coastal', u'town', u'central']
[u'super', u'maxi', u'domin', u'sydney', u'hobart', u'race']
[u'survey', u'name', u'racist', u'sydney', u'suburb']
[u'survivor', u'recal', u'tsunami', u'horror']
[u'sven', u'admit', u'fear', u'england', u'qualifi']
[u'swimmer', u'urg', u'stay', u'flag']
[u'sydney', u'travel', u'warn', u'littl', u'impact']
[u'tasmanian', u'relief', u'worker', u'return', u'thailand']
[u'send', u'tsunami', u'lanka']
[u'cut', u'hang', u'rat', u'costello']
[u'teenag', u'hospit', u'explos']
[u'teen', u'drown', u'cairn', u'swim', u'hole']
[u'thousand', u'mark', u'tsunami', u'anniversari']
[u'site', u'decis', u'expect', u'earli']
[u'train', u'derail', u'japan', u'kill']
[u'troop', u'warm', u'box', u'test']
[u'tsunami', u'creat', u'solidar']
[u'tsunami', u'survivor', u'gather', u'consul']
[u'tsunami', u'victim', u'struggl', u'worker']
[u'charg', u'theft', u'attempt']
[u'stab', u'melbourn', u'brawl']
[u'surviv', u'light', u'plane', u'crash']
[u'ugandan', u'rebel', u'kill', u'peacekeep']
[u'unlicenc', u'charg', u'drink', u'drive']
[u'detail', u'afghanistan', u'withdraw', u'plan']
[u'general', u'admit', u'iraqi', u'want', u'troop']
[u'children', u'send', u'record', u'number', u'letter', u'santa']
[u'mourner', u'reflect', u'tsunami', u'lesson']
[u'properti', u'market', u'see', u'grow']
[u'watchdog', u'warn', u'cent', u'chain', u'letter']
[u'yellow', u'card', u'get', u'home', u'zealand', u'rugbi']
[u'yudhoyono', u'lead', u'prayer', u'tsunami', u'victim']
[u'kill', u'wound', u'toronto', u'shoot']
[u'kill', u'unrest']
[u'activist', u'push', u'wider', u'smoke']
[u'alcohol', u'licens', u'inspector', u'forc', u'say', u'govt']
[u'alleg', u'thief', u'arrest', u'return', u'crime']
[u'apricot', u'harvest', u'bring', u'fruit', u'picker', u'demand']
[u'armstrong', u'receiv', u'spanish', u'accolad']
[u'attack', u'leav', u'dead', u'iraq']
[u'audio', u'highlight', u'box']
[u'aussi', u'hussey', u'heroic']
[u'australian', u'star', u'beat', u'world', u'best']
[u'australian', u'jail', u'kuwait', u'terror', u'charg']
[u'author', u'investig', u'plane', u'helicopt', u'accid']
[u'baro', u'hand', u'villa', u'point', u'everton']
[u'beatti', u'go', u'basic']
[u'beatti', u'urg', u'focus', u'health', u'reform']
[u'block', u'possum', u'skin', u'sale', u'stymi']
[u'bird', u'scare', u'frighten', u'visitor']
[u'box', u'sale', u'busi', u'retail']
[u'brazilian', u'surviv', u'week']
[u'british', u'govt', u'appeal', u'hick', u'citizenship', u'rule']
[u'briton', u'crawl', u'christma', u'kind']
[u'brother', u'arrest']
[u'stop', u'vigil', u'end', u'tsunami', u'memori']
[u'pass', u'surgeri', u'delay', u'real', u'legend']
[u'exhaust', u'blame', u'tanunda']
[u'child', u'die', u'garbag', u'truck', u'accid']
[u'china', u'claim', u'bird', u'treatment', u'breakthrough']
[u'chines', u'financi', u'watchdog', u'find', u'billion', u'misus']
[u'code', u'radic', u'imam', u'check']
[u'congo', u'flood', u'leav', u'thousand', u'homeless']
[u'conroy', u'submit', u'health', u'plan']
[u'consum', u'advisori', u'bodi', u'propos']
[u'crespo', u'goal', u'give', u'chelsea', u'fulham']
[u'david', u'jone', u'welcom', u'strong', u'trade']
[u'death', u'impact', u'media', u'landscap']
[u'defiant', u'british', u'foxhunt', u'field']
[u'desert', u'park', u'grant', u'cultur', u'accredit']
[u'dubbo', u'get', u'breast', u'screen', u'servic']
[u'set', u'deadlin', u'illeg', u'soil', u'stockpil']
[u'escap', u'prison', u'custodi']
[u'timor', u'open', u'arm', u'refuge']
[u'emiss', u'target', u'report']
[u'expat', u'leav', u'villag', u'fortun']
[u'expect', u'cut', u'economist']
[u'fifth', u'bodi', u'recov', u'japan', u'train', u'wreck']
[u'impos', u'region']
[u'close', u'sydney', u'shop', u'centr']
[u'firefight', u'contain', u'craigieburn', u'blaze']
[u'foot', u'injuri', u'put', u'nadal', u'doubt', u'australian', u'open']
[u'aceh', u'rebel', u'disband', u'militari', u'wing']
[u'dead', u'turkish', u'cold', u'snap']
[u'gale', u'warn', u'reignit', u'sydney', u'hobart', u'record', u'hop']
[u'gourmet', u'food', u'product', u'menu', u'molong']
[u'half', u'centuri', u'villier']
[u'health', u'servic', u'question', u'contractor', u'debt', u'claim']
[u'hingi', u'prepar']
[u'holiday', u'road', u'toll', u'rise']
[u'hors', u'rider', u'worri', u'otway', u'chang']
[u'hotel', u'bouncer', u'face', u'polic', u'check']
[u'howard', u'packer']
[u'hume', u'weir', u'villag', u'water', u'suppli']
[u'hussey', u'centuri', u'hurt', u'protea']
[u'hussey', u'heroic', u'aussi', u'initi', u'second']
[u'hussey', u'luck']
[u'indian', u'selector', u'furious', u'ganguli', u'go', u'awol']
[u'indonesian', u'presid', u'person', u'secur', u'increas']
[u'inmat', u'hold', u'visitor', u'hostag']
[u'israel', u'fire', u'gaza', u'rocket', u'attack']
[u'isra', u'helicopt', u'gaza']
[u'japan', u'accus', u'greenpeac', u'piraci']
[u'kerri', u'packer', u'die']
[u'kerri', u'packer', u'empir', u'builder']
[u'kosciuszko', u'rise', u'threaten', u'busi', u'opposit']
[u'landmin', u'attack', u'kill']
[u'lenton', u'determin', u'regain', u'world', u'status']
[u'liber', u'sight', u'region', u'seat']
[u'librari', u'unveil', u'adelaid', u'founder', u'letter']
[u'life', u'time', u'kerri', u'packer']
[u'liverpool', u'risk', u'probe', u'fieri', u'newcastl']
[u'mackay', u'tent', u'death', u'think', u'suspici']
[u'charg', u'murder', u'bodi', u'tent']
[u'drown', u'surf', u'near', u'noosa']
[u'marin', u'charg', u'rape']
[u'mass', u'grave', u'iraq']
[u'mcgrath', u'claim', u'breakthrough']
[u'melbourn', u'hobart', u'race', u'begin']
[u'meningococc', u'diseas', u'report', u'hunter']
[u'fund', u'seek', u'carer']
[u'motorcyclist', u'kill', u'gold', u'coast', u'crash']
[u'mysteri', u'poison', u'russian', u'shopper']
[u'nation', u'road', u'toll', u'hit']
[u'nation', u'road', u'toll', u'surg']
[u'near', u'complet', u'titanosaurus', u'unearth']
[u'bail', u'fatal', u'crash', u'accus']
[u'noll', u'concert', u'leav', u'creditor', u'sing', u'blue']
[u'north', u'coast', u'school', u'upgrad']
[u'nrma', u'welcom', u'highway', u'upgrad', u'deal']
[u'box', u'sale', u'ridicul']
[u'accid', u'rais', u'road', u'toll']
[u'packer', u'parliamentari', u'print', u'inquiri']
[u'packer', u'chang', u'cricket']
[u'packer']
[u'packer', u'victor', u'chang']
[u'packer', u'world', u'seri', u'cricket']
[u'park', u'servic', u'urg', u'dingo', u'precaut']
[u'passeng', u'surviv', u'horror', u'plane', u'land']
[u'pilot', u'passeng', u'surviv', u'chopper', u'crash']
[u'pinochet', u'face', u'human', u'right', u'charg']
[u'pay', u'tribut', u'kerri', u'packer']
[u'polic', u'car', u'ram', u'charg']
[u'polic', u'investig', u'fatal', u'motorcycl', u'accid']
[u'polic', u'prais', u'central', u'driver']
[u'polic', u'quiet', u'detaine', u'alleg', u'bash']
[u'pool', u'close', u'summer', u'heat']
[u'poor', u'wind', u'curb', u'leader', u'race', u'record']
[u'properti', u'market', u'boom', u'increas', u'poverti']
[u'protea', u'look', u'tighten', u'control', u'second', u'test']
[u'retail', u'report', u'enorm', u'respons', u'sale']
[u'monitor', u'rise', u'danger']
[u'rhode', u'make', u'return', u'horrif', u'accid']
[u'road', u'toll', u'rise']
[u'safin', u'doubt', u'open']
[u'safin', u'hopman']
[u'saudi', u'teleco', u'prevent', u'realiti', u'vote']
[u'schwarzenegg', u'lose', u'stadium', u'name', u'honour']
[u'sermon', u'scrutinis']
[u'share', u'market', u'see', u'power']
[u'sharon', u'undergo', u'heart', u'procedur']
[u'strong', u'wind']
[u'surfer', u'punch', u'shark', u'save']
[u'tamworth', u'unveil', u'equin', u'centr', u'plan']
[u'teen', u'charg', u'orang', u'bash']
[u'test', u'player', u'tribut', u'packer']
[u'thief']
[u'aid', u'theatr', u'restor']
[u'toddler', u'die', u'attack']
[u'tour', u'guid', u'airlift', u'hospit']
[u'transend', u'begin', u'major', u'upgrad']
[u'tribut', u'flow', u'great', u'australian']
[u'kill', u'road', u'smash']
[u'surviv', u'plane', u'dive', u'ocean']
[u'appeal', u'hick', u'decis']
[u'ukrain', u'russia', u'intensifi']
[u'firefight', u'high', u'alert']
[u'warn', u'tribut', u'great', u'packer']
[u'wild', u'oat', u'hold', u'lead', u'bass', u'strait']
[u'wild', u'oat', u'lag', u'record']
[u'wild', u'oat', u'take', u'sydney', u'hobart', u'lead']
[u'wimmera', u'polic', u'hunt', u'drive', u'shoot', u'culprit']
[u'winton', u'storm', u'rais', u'hotel', u'roof']
[u'year', u'student', u'track', u'employ', u'studi', u'find']
[u'kill', u'indian', u'crash']
[u'abba', u'urg', u'milit', u'maintain', u'truce']
[u'accus', u'murder', u'remand', u'custodi']
[u'adrey', u'tortur', u'claim', u'prompt', u'protocol']
[u'age', u'care', u'develop', u'unaffect', u'moratorium']
[u'back', u'beatti', u'health', u'reform']
[u'arthur', u'talk', u'hopman', u'chanc']
[u'australian', u'jail', u'kuwait']
[u'australian', u'tortur', u'terror', u'confess']
[u'azerbaijan', u'ground', u'antonov', u'crash']
[u'babi', u'death', u'take', u'road', u'toll']
[u'beckham', u'top', u'british', u'list', u'role', u'model']
[u'beslan', u'crisi', u'prevent']
[u'firework', u'display', u'usher', u'year']
[u'constrictor', u'theft', u'baffl', u'polic']
[u'brosqu', u'strike', u'sydney', u'specul']
[u'bull', u'cull', u'middl', u'order']
[u'bushfir', u'rag', u'kamarooka']
[u'bush', u'mourn', u'loss', u'kerri', u'packer']
[u'capsiz', u'spend', u'hour', u'water']
[u'chase', u'prompt', u'polic', u'hunt']
[u'castaway', u'reliev', u'home']
[u'castaway', u'surviv', u'day']
[u'centrelink', u'urg', u'farmer', u'seek', u'drought', u'support']
[u'children', u'tri', u'cross', u'highway']
[u'chopper', u'crash', u'victim', u'treat', u'spinal', u'injuri']
[u'commentari', u'highlight', u'test']
[u'concern', u'rais', u'bali', u'airport']
[u'council', u'claim', u'storm', u'damag']
[u'trampl', u'year', u'woman']
[u'crew', u'wind', u'lash', u'northern']
[u'cruis', u'ship', u'industri', u'boost', u'economi']
[u'deal', u'end', u'brazilian', u'prison', u'riot']
[u'detaine', u'kill', u'iraq', u'prison', u'shoot']
[u'dokic', u'begin', u'australian', u'open', u'prepar']
[u'driver', u'charg']
[u'driver', u'shoot', u'face', u'rifl']
[u'escap', u'kangaroo', u'elud', u'french', u'owner']
[u'fall', u'price', u'depress', u'stock']
[u'forc', u'region']
[u'firefight', u'battl', u'digbi', u'blaze']
[u'firefight', u'brace', u'difficult', u'weather']
[u'firefight', u'progress']
[u'fisher', u'warn', u'excess', u'compo', u'claim']
[u'forb', u'plan', u'vintag', u'machineri', u'display']
[u'friend', u'honour', u'liber', u'well']
[u'glitter', u'face', u'vietnam', u'molest', u'trial']
[u'cell', u'deliv', u'parkinson', u'therapi']
[u'govt', u'awar', u'bali', u'airport', u'secur', u'flaw', u'truss']
[u'gower', u'apologis', u'pearc']
[u'greenpeac', u'reject', u'japan', u'piraci', u'claim']
[u'gunman', u'open']
[u'host', u'shear', u'nation']
[u'helicopt', u'sponsorship', u'continu', u'snowi', u'hydro']
[u'help', u'indonesia', u'upgrad', u'airport', u'secur', u'urg']
[u'helsal', u'hit', u'snag', u'melbourn', u'hobart']
[u'hickss', u'father', u'upbeat', u'despit', u'passport', u'appeal']
[u'highway', u'plan', u'ignor', u'coff', u'traffic', u'problem']
[u'condit', u'worri', u'crew']
[u'hunter', u'speed', u'rate', u'alarm', u'polic']
[u'hunter', u'valley', u'mourn', u'packer', u'death']
[u'indonesian', u'govt', u'sell', u'garuda', u'report']
[u'injur', u'adam', u'replac', u'franklin', u'squad']
[u'interview', u'alfa', u'romeo', u'skipper', u'nevill', u'crichton']
[u'interview', u'yacht', u'ident', u'iain', u'murray']
[u'iraqi', u'work', u'inclus', u'govt']
[u'israel', u'launch', u'fresh', u'strike', u'gaza']
[u'ivanisev', u'like', u'captain', u'croatian', u'davi']
[u'jaqu', u'pont']
[u'jeer', u'jockey', u'mistak', u'win', u'post']
[u'joyc', u'urg', u'meet', u'coupl', u'children']
[u'kenya', u'seek', u'help', u'famin', u'worsen']
[u'king', u'import', u'season', u'game', u'mishap']
[u'langer', u'line', u'test']
[u'larsson', u'consid', u'return', u'sweden']
[u'give', u'aussi', u'edg']
[u'letterman', u'win', u'restrain', u'order', u'appeal']
[u'locust', u'pose', u'threat', u'southern']
[u'locust', u'pose', u'threat', u'southern', u'crop']
[u'lomu', u'open', u'account', u'cardiff']
[u'airlift', u'electr', u'accid']
[u'serious', u'injur', u'crash']
[u'take', u'hospit', u'attack']
[u'face', u'court', u'shop', u'break']
[u'mass', u'grave', u'link', u'gujarat', u'riot']
[u'melbourn', u'hobart', u'fleet', u'make', u'steadi', u'progress']
[u'melbourn', u'break', u'cano', u'marathon', u'record']
[u'merchandis', u'make']
[u'japanes', u'want', u'troop', u'iraq', u'poll']
[u'mother', u'charg', u'cannabi', u'haul']
[u'back', u'gippsland', u'hous', u'estat']
[u'nation', u'holiday', u'road', u'toll', u'rise']
[u'newcastl', u'lifeguard', u'brace', u'rough', u'water']
[u'newsread', u'appear', u'court', u'contract']
[u'hiccup', u'melbourn', u'launceston', u'winner']
[u'noosa', u'drown', u'prompt', u'beach', u'warn']
[u'north', u'coast', u'blood', u'suppli', u'wan', u'cross']
[u'anim', u'diseas', u'report', u'rise']
[u'govt', u'abil', u'seal', u'deal', u'question']
[u'book', u'holiday', u'road', u'blitz']
[u'packer', u'death', u'expect', u'share']
[u'packer', u'death', u'weigh', u'share']
[u'palestinian', u'gunmen', u'seiz', u'west', u'bank', u'elect', u'offic']
[u'share', u'amid', u'record', u'market', u'high']
[u'poland', u'troop', u'iraq']
[u'polic', u'investig', u'bush', u'arson']
[u'polic', u'investig', u'geraldton', u'hous']
[u'polic', u'investig', u'highway', u'robberi']
[u'polic', u'warn', u'boati', u'life', u'jacket', u'rule']
[u'pork', u'sale', u'reach', u'record', u'level']
[u'post', u'christma', u'dump', u'dismay', u'rspca']
[u'protest', u'ralli', u'live', u'sheep', u'export']
[u'putin', u'liber', u'econom', u'advis', u'resign']
[u'shearer', u'celebr', u'victori', u'wild', u'oat']
[u'rebel', u'kill', u'colombian', u'soldier']
[u'record', u'patronag', u'canberra', u'librari']
[u'rescu', u'castaway', u'rout', u'australia']
[u'research', u'centr', u'fund', u'water', u'recycl']
[u'road', u'toll', u'rise', u'children', u'kill']
[u'rocket', u'lift', u'satellit']
[u'rocket', u'fire', u'israel']
[u'rockhampton', u'sieg', u'forc', u'evacu']
[u'ronaldo', u'issu', u'warn', u'socceroo']
[u'roof', u'lose', u'wind', u'whip', u'west', u'coast']
[u'rough', u'water', u'strain', u'woolamai', u'lifesav']
[u'celebr', u'anniversari', u'proclam']
[u'safin', u'withdraw', u'cast', u'seed', u'wind']
[u'crew', u'prepar', u'extrem', u'condit']
[u'sale', u'boost', u'sluggish', u'trade']
[u'saudi', u'polic', u'captur', u'want', u'milit']
[u'school', u'leaver', u'warn', u'unpaid', u'work', u'trial']
[u'scientist', u'doubl', u'estim', u'wetland']
[u'secur', u'forc', u'clear', u'beslan', u'sieg']
[u'shopper', u'flock', u'post', u'christma', u'sale']
[u'shopper', u'urg', u'avoid', u'excess', u'packag']
[u'site', u'worri', u'cloud', u'tast', u'festiv']
[u'hospit', u'carpark', u'shoot']
[u'skandia', u'take', u'place', u'sydney', u'hobart']
[u'slight', u'fall']
[u'snake', u'break', u'cyclist', u'fall']
[u'souness', u'refus', u'bowyer', u'horror', u'tackl']
[u'spielberg', u'munich', u'bias', u'mastermind']
[u'lankan', u'peac', u'mission', u'hit']
[u'storm', u'tradesmen', u'high', u'demand']
[u'storm', u'rais', u'concern']
[u'strong', u'wind', u'affect', u'wheat', u'harvest']
[u'surrend', u'end', u'rockhampton', u'sieg']
[u'suspici', u'fire', u'investig']
[u'sydneysid', u'flock', u'shoalhaven']
[u'symond', u'bowl', u'figur', u'inspir', u'bat']
[u'symond', u'australia']
[u'symond', u'roll', u'protea', u'crumbl']
[u'symond', u'spark', u'protea', u'collaps']
[u'taliban', u'command', u'appear']
[u'record', u'death', u'holiday', u'road', u'toll']
[u'teen', u'charg', u'katherin', u'chase']
[u'terrorist', u'plan', u'kidnap', u'spree', u'intel', u'head', u'say']
[u'tourism', u'climb', u'snowi', u'mountain']
[u'trader', u'defend', u'live', u'sheep', u'export', u'amid', u'protest']
[u'ukrain', u'track', u'record', u'wheat', u'harvest']
[u'pilot', u'kill', u'iraqi', u'crash']
[u'urg', u'iraqi', u'judg', u'rein', u'saddam']
[u'valu', u'money', u'lack', u'oversea', u'student']
[u'boat', u'law', u'overstretch', u'famili', u'budget', u'ryan']
[u'vice', u'chancellor', u'accept', u'award', u'year']
[u'vitamin', u'cut', u'cancer', u'risk', u'half', u'studi']
[u'vitamin', u'link', u'cancer', u'prevent']
[u'end', u'oversea', u'polic', u'deploy', u'program']
[u'walgett', u'launch', u'disabl', u'train', u'cafe']
[u'retail', u'turnov', u'record']
[u'wedgetail', u'chase', u'wild', u'oat', u'race', u'handicap']
[u'wild', u'oat', u'begin', u'celebr', u'hobart']
[u'wild', u'oat', u'break', u'sydney', u'hobart', u'record']
[u'wild', u'oat', u'smash', u'race', u'record']
[u'wind', u'digbi']
[u'woman', u'kill', u'drive', u'funer']
[u'yeoval', u'welcom', u'health', u'servic', u'manag']
[u'charg', u'hurrican', u'relief', u'fraud']
[u'websit', u'close', u'internet', u'bank', u'scam']
[u'abba', u'condemn', u'israel', u'gaza', u'man', u'zone']
[u'accus', u'terrorist', u'challeng', u'program']
[u'back', u'mundin', u'council', u'resign']
[u'arm', u'robber', u'chase', u'prompt', u'polic', u'warn']
[u'aussi', u'hard', u'beat', u'perth', u'woodbridg']
[u'aussi', u'strong', u'posit', u'lunch']
[u'australia', u'set', u'protea', u'daunt', u'target']
[u'austrian', u'set', u'south', u'pole', u'trek', u'record']
[u'author', u'seek', u'contact', u'kidnapp']
[u'bail', u'refus', u'accus', u'tomahawk', u'thrower']
[u'bargain', u'hunter', u'receiv', u'discount', u'complex']
[u'baxter', u'detaine', u'hospit']
[u'bendigo', u'shop', u'buzz', u'boost', u'busi', u'prospect']
[u'bendigo', u'west', u'candid', u'lib']
[u'beresfield', u'resid', u'concern', u'plan']
[u'blizzard', u'caus', u'chao', u'europ']
[u'bodi', u'sink', u'boat', u'owner']
[u'brack', u'back', u'evict', u'unruli']
[u'brazil', u'prison', u'releas', u'hostag']
[u'britain', u'prepar', u'crackdown', u'prostitut']
[u'bunburi', u'woodchip', u'get', u'ahead']
[u'bushfir', u'risk', u'increas']
[u'bushfir', u'spark', u'camp', u'warn']
[u'bust', u'myth', u'farm']
[u'drink', u'driver', u'shame', u'file']
[u'canberra', u'offic', u'clear', u'asbesto', u'scare']
[u'cataract', u'case', u'prompt', u'health', u'warn']
[u'child', u'refuge', u'death', u'investig']
[u'child', u'save', u'great', u'grandma']
[u'china', u'prais', u'hong', u'kong', u'leader']
[u'china', u'regist', u'mobil', u'user']
[u'rendit', u'begin', u'clinton', u'agent']
[u'claim', u'privat', u'health', u'unsustain']
[u'back', u'boswel', u'preselect']
[u'cole', u'fuel', u'chelsea', u'titl', u'push']
[u'commentari', u'highlight', u'test']
[u'conroy', u'test', u'product', u'process']
[u'critic', u'surpris', u'csiro', u'diet', u'author']
[u'cultur', u'precinct', u'cut', u'open', u'hour']
[u'determin', u'schnyder', u'defend', u'titl']
[u'dingo', u'moot', u'fatal', u'attack']
[u'owner', u'warn', u'bongil', u'beach', u'fine']
[u'drink', u'drive', u'statist', u'appal', u'rann']
[u'drought', u'appeal', u'continu', u'despit', u'rain']
[u'emiss', u'guidelin', u'nose', u'anti', u'pulp']
[u'energi', u'stock', u'market', u'rise']
[u'enron', u'account', u'plead', u'guilti', u'fraud']
[u'powerless', u'investig', u'racist']
[u'trial', u'australian', u'plasma', u'thruster']
[u'extra', u'firefight', u'piliga', u'blaze']
[u'fatah', u'submit', u'joint', u'elect', u'list']
[u'fear', u'hold', u'miss', u'brisban']
[u'brigad', u'secur', u'ruptur', u'line']
[u'destroy', u'canberra', u'home']
[u'destroy', u'canberra', u'hous']
[u'firefight', u'hunter', u'valley', u'blaze']
[u'firefight', u'effort', u'continu', u'stradbrok']
[u'rag', u'central']
[u'threaten', u'bayswat', u'power', u'station']
[u'fleme', u'withdraw', u'open', u'lankan', u'clash']
[u'gene', u'link', u'fatti', u'diet', u'diabet']
[u'german', u'famili', u'kidnap', u'yemen']
[u'glori', u'snatch', u'draw', u'melbourn']
[u'gold', u'coast', u'suffer', u'fewer', u'theft']
[u'govt', u'deni', u'inact', u'nurs', u'shortag']
[u'grandmoth', u'face', u'court', u'drug', u'charg']
[u'greek', u'member', u'deni', u'vote', u'blunder']
[u'group', u'rais', u'money', u'battler', u'pet']
[u'gunnedah', u'reduc', u'speed', u'limit']
[u'gunn', u'order', u'monitor', u'odour']
[u'gusmao', u'open', u'west', u'timor', u'consul']
[u'hayden', u'post', u'patient', u'centuri']
[u'hayden', u'symond', u'protea']
[u'health', u'fund', u'seek', u'premium', u'rise']
[u'health', u'insur', u'deni', u'fleec', u'member']
[u'health', u'insur', u'push', u'increas']
[u'health', u'servic', u'urg', u'emerg', u'dept', u'overus']
[u'helsal', u'gusto', u'line', u'honour']
[u'helsal', u'take', u'line', u'honour', u'melbourn', u'hobart']
[u'henriqu', u'blue', u'debut']
[u'highland', u'hoteli', u'celebr', u'sydney', u'hobart']
[u'holbrook', u'reach', u'countri', u'plate', u'cricket', u'semi']
[u'hous', u'deal', u'major', u'step', u'say', u'govt']
[u'indian', u'confer', u'attack', u'kill']
[u'indonesia', u'complet', u'aceh', u'troop', u'pullout']
[u'insur', u'seek', u'premium', u'increas']
[u'internet', u'scam', u'target', u'bank', u'custom']
[u'iran', u'studi', u'russia', u'nuclear', u'propos']
[u'israel', u'enforc', u'gaza', u'buffer', u'zone']
[u'ivanisev', u'appoint', u'delay']
[u'fear', u'dakar', u'ralli', u'say', u'sainz']
[u'kerin', u'promis', u'teamwork', u'youth', u'debt']
[u'kuznetsova', u'seek', u'hopman', u'lift']
[u'leav', u'wing', u'activist', u'shoot', u'dead', u'philippin']
[u'lifesav', u'hope', u'calm', u'water']
[u'maindampl', u'crash', u'prompt', u'safeti', u'warn']
[u'arrest', u'hour', u'sieg']
[u'critic', u'shoot']
[u'drown', u'frankston', u'beach']
[u'miss', u'sink', u'boat']
[u'refus', u'bail', u'cronulla', u'riot', u'charg']
[u'road', u'death', u'prevent', u'purcel']
[u'masuoka', u'target', u'dakar', u'trick']
[u'mayor', u'condemn', u'poki', u'propos']
[u'spectat', u'evict', u'racist', u'slur']
[u'mcmaster', u'sign', u'central', u'coast']
[u'melbourn', u'desper', u'glori']
[u'melbourn', u'jail', u'beef', u'secur']
[u'mottram', u'attempt', u'mile', u'record']
[u'mundin', u'quit', u'indigen', u'council']
[u'mundin', u'resign', u'indigen', u'group']
[u'navi', u'detain', u'indonesian', u'fish', u'crew']
[u'neesken', u'name', u'hiddink', u'sider']
[u'newcastl', u'appeal', u'bowyer', u'card']
[u'fish', u'law', u'come', u'forc']
[u'fail', u'iraqi', u'jailbreak']
[u'data', u'stem', u'cell', u'claim', u'panel']
[u'partisan', u'geldof', u'advis', u'opposit']
[u'nrma', u'urg', u'billion', u'dollar', u'highway', u'upgrad']
[u'footprint', u'spark', u'tourism', u'hop']
[u'mop', u'wild', u'storm']
[u'revamp', u'licenc', u'fight', u'fraud']
[u'palestinian', u'bomber', u'kill', u'isra', u'checkpoint']
[u'penrith', u'board', u'review', u'report', u'gower', u'alleg']
[u'picton', u'charg', u'race', u'riot']
[u'pittman', u'carniv', u'out']
[u'polic', u'murder', u'probe', u'wrap']
[u'polic', u'open', u'crimin', u'file', u'pinochet']
[u'polic', u'question', u'kilda', u'shoot']
[u'polic', u'releas', u'hold', u'todd', u'river', u'death']
[u'polic', u'search', u'miss', u'patient']
[u'polic', u'suspect', u'speed', u'drink', u'warmun', u'crash']
[u'problem', u'gambl', u'report', u'surpris', u'brack']
[u'protea', u'crumbl']
[u'protea', u'confid', u'win', u'second', u'test']
[u'protea', u'summon', u'uncap', u'spinner']
[u'protest', u'target', u'food', u'festiv']
[u'racv', u'warn', u'leav', u'children', u'car']
[u'razzaq', u'doubt', u'india', u'seri']
[u'refuge', u'agenc', u'review', u'child', u'death']
[u'refuge', u'die', u'resettl']
[u'refuge', u'death', u'spark', u'stop', u'outsourc']
[u'reid', u'fail', u'gain', u'qualifi', u'wildcard', u'adelaid']
[u'research', u'show', u'quit', u'smoker', u'weak', u'point']
[u'investig', u'suspect', u'newri', u'arson']
[u'check', u'wildlif', u'permit', u'nativ', u'anim', u'owner']
[u'safeti', u'upgrad', u'driver', u'moot']
[u'satellit', u'success', u'launch']
[u'saudi', u'polic', u'kill', u'second', u'qaeda', u'suspect']
[u'sheep', u'wont', u'affect', u'market', u'council']
[u'shell', u'northern', u'gaza']
[u'sonata', u'face', u'court', u'terror', u'charg']
[u'specialti', u'nurs', u'job', u'hard']
[u'spectat', u'eject', u'racist', u'taunt']
[u'steal', u'wag', u'compo', u'scheme', u'failur']
[u'strict', u'environment', u'guidelin', u'place', u'fall']
[u'struggl', u'moy', u'slam', u'stupid', u'nevill', u'arteta']
[u'sudan', u'aggress', u'chair', u'chad']
[u'supermarket', u'urg', u'support', u'horticulturist']
[u'surg', u'popular', u'bush', u'poetri']
[u'symond', u'star', u'protea', u'crash']
[u'symond', u'weight', u'lift', u'today', u'perform']
[u'expect', u'record', u'grain', u'harvest']
[u'thompson', u'captainci']
[u'briton', u'kidnap', u'gaza']
[u'toothless', u'beslan', u'report', u'pointless', u'relat']
[u'tourism', u'threaten', u'island', u'wilder', u'biologist']
[u'traffic', u'crowd', u'seacliff', u'bridg']
[u'train', u'aussi', u'doctor', u'beatti']
[u'transport', u'oper', u'predict', u'tough', u'year', u'ahead']
[u'trump', u'enlarg', u'junk', u'email', u'list']
[u'univers', u'chief', u'eye', u'squeez']
[u'hacker', u'plead', u'guilti', u'ebay', u'attack']
[u'govt', u'fund', u'tsunami', u'project']
[u'keep', u'crew', u'stand']
[u'airlin', u'servic', u'region', u'town']
[u'warn', u'master', u'pressur', u'umpir', u'say']
[u'weather', u'put', u'pay', u'premiership', u'match']
[u'west', u'member', u'vote', u'knight', u'allianc']
[u'wild', u'oat', u'like', u'trifecta']
[u'wild', u'oat', u'cours', u'trifecta']
[u'wild', u'oat', u'target', u'sydney', u'hobart', u'trifecta']
[u'wild', u'oat', u'claim', u'record', u'trebl']
[u'wilkinson', u'comeback']
[u'woman', u'charg', u'year', u'old', u'assault']
[u'woman', u'child', u'kill', u'delorain', u'crash']
[u'woman', u'death', u'take', u'holiday', u'road', u'toll']
[u'woman', u'sexual', u'assault', u'train']
[u'yachtsman', u'pick', u'race', u'injuri']
[u'egypt', u'polic', u'dispers', u'protest']
[u'shiit', u'kill', u'iraqi', u'home']
[u'withhold', u'respons', u'ethiopian', u'crackdown']
[u'urg', u'action', u'prevent', u'rural', u'doctor', u'shortag']
[u'aussi', u'edg', u'closer', u'victori']
[u'aussi', u'victori', u'protea']
[u'averag', u'temp', u'town', u'hit', u'degre']
[u'babi', u'children', u'leav', u'campsit', u'polic']
[u'beatti', u'defend', u'steal', u'wag', u'scheme']
[u'bendigo', u'prepar', u'year', u'celebr']
[u'bodi', u'wash', u'beach']
[u'bowyer', u'card', u'appeal', u'turn']
[u'brando', u'sue', u'domest', u'violenc']
[u'breakthrough', u'claim', u'fals', u'investig', u'find']
[u'broom', u'crack', u'plant', u'thiev']
[u'driver', u'union', u'call', u'secur', u'boost']
[u'campbel', u'condemn', u'like', u'whale', u'protest']
[u'chad', u'relax', u'profit', u'control']
[u'china', u'confirm', u'bird', u'death']
[u'china', u'japan', u'diplomat', u'death']
[u'chines', u'bird', u'death']
[u'classroom', u'open', u'bendigo', u'jail']
[u'fear', u'qanta', u'drop', u'alic', u'spring', u'rout']
[u'coastal', u'council', u'campaign', u'infrastructur']
[u'commentari', u'highlight', u'test', u'final']
[u'communiti', u'group', u'fund']
[u'councillor', u'condemn', u'gold', u'coast', u'ship', u'termin', u'plan']
[u'council', u'lobbi', u'plantat', u'railway']
[u'court', u'clear', u'row']
[u'crew', u'contain', u'boorowa', u'blaze']
[u'croc', u'concern', u'rilli', u'injuri']
[u'darwin', u'driver', u'threaten', u'boycott']
[u'death', u'threat', u'close', u'iraqi', u'refineri']
[u'defenc', u'strengthen', u'financi', u'system', u'minchin']
[u'dept', u'defend', u'bushfir', u'precaut']
[u'diner', u'flee', u'gambier', u'blaze']
[u'dolphin', u'feeder', u'seek', u'fund', u'disabl', u'chair']
[u'domin', u'aussi', u'thrash', u'protea']
[u'drown', u'boy', u'father', u'bail']
[u'drug', u'random', u'breath', u'test']
[u'european', u'help', u'identifi', u'katrina', u'victim']
[u'fall', u'music', u'festiv', u'kick']
[u'famili', u'servic', u'hold', u'packer']
[u'famili', u'violenc', u'program', u'secur', u'fund']
[u'feder', u'inquiri', u'refuge', u'death', u'unlik']
[u'fenech', u'accus', u'shoplift']
[u'fenech', u'face', u'court']
[u'fenech', u'court']
[u'fenech', u'involv', u'theft', u'accus']
[u'fenech', u'lawyer', u'want', u'charg', u'drop']
[u'fertilis', u'industri', u'dark', u'law']
[u'declar', u'region']
[u'ban', u'enforc', u'temperatur', u'soar']
[u'crew', u'watch', u'heat', u'rise']
[u'fire', u'rekindl', u'fenc', u'debat']
[u'footprint', u'lead', u'polic', u'burglar']
[u'free', u'saddam', u'woe', u'iraq', u'bush', u'tell']
[u'health', u'plan', u'moder', u'premium', u'rise']
[u'govt', u'prolong', u'counsellor', u'drought', u'grant']
[u'gower', u'answer', u'alleg', u'panther', u'board']
[u'great', u'lake', u'consid', u'councillor', u'cutback']
[u'guantanamo', u'hunger', u'strike', u'widen']
[u'health', u'insur', u'rise', u'hurt', u'rural', u'communiti']
[u'heat', u'bring', u'earli', u'hatch', u'endang', u'turtl']
[u'hewitt', u'philippoussi', u'headlin', u'adelaid']
[u'hobart', u'beach', u'pollut', u'investig']
[u'holbrook', u'take', u'cricket', u'countri', u'plate']
[u'home', u'sale', u'weigh', u'market']
[u'hopman', u'qualifi', u'underway']
[u'horsham', u'crash', u'injur', u'driver']
[u'huge', u'hunter', u'think', u'suspici']
[u'hunt', u'steal', u'centuri', u'violin']
[u'husband', u'charg', u'fatal', u'bash']
[u'hussey', u'pay', u'tribut', u'mcgrath', u'partnership']
[u'improv', u'defenc', u'account', u'procedur', u'expert']
[u'indigen', u'tourist', u'trail', u'plan']
[u'indonesian', u'die', u'suspect', u'bird']
[u'seek', u'driver', u'licenc', u'review']
[u'japanes', u'economist', u'look', u'forward', u'happi', u'year']
[u'jaqu', u'drop', u'langer', u'return']
[u'journal', u'retract', u'south', u'korean', u'stem', u'cell', u'articl']
[u'king', u'tide', u'gold', u'sunshin', u'coast']
[u'knight', u'steal', u'draw', u'sydney']
[u'korean', u'scandal', u'reflect', u'bad', u'scienc']
[u'krajicek', u'hear', u'hawk', u'hopman']
[u'kyoto', u'failur', u'macfarlan', u'say']
[u'labor', u'deni', u'kyoto', u'fail']
[u'liber', u'promis', u'runaway', u'home']
[u'lightn', u'spark', u'north', u'coast', u'fire']
[u'charg', u'kilda', u'shoot']
[u'miss', u'phillip', u'island']
[u'mottram', u'show', u'form', u'devonport']
[u'mundubbera', u'storm', u'spark', u'water']
[u'murder', u'accus', u'grant', u'bail']
[u'nation', u'road', u'toll', u'reach']
[u'nation', u'road', u'toll', u'rise']
[u'naval', u'ship', u'whale', u'stand']
[u'netherland', u'oust', u'china', u'claim', u'hopman', u'berth']
[u'bank', u'scam', u'websit', u'emerg']
[u'caledonia', u'nickel', u'plant', u'approv']
[u'law', u'limit', u'alcohol', u'sale', u'licenc']
[u'demand', u'briton', u'kidnapp']
[u'despit', u'weather']
[u'firework', u'return', u'townsvill']
[u'lanka', u'face', u'high', u'stake', u'seri']
[u'spill', u'prompt', u'drain', u'flush']
[u'optus', u'sue', u'govt', u'contract']
[u'packer', u'lay', u'rest']
[u'parti', u'plan', u'prompt', u'polic', u'warn']
[u'passeng', u'train', u'derail', u'western']
[u'photograph', u'clear', u'lohan', u'crash']
[u'piliga', u'effort', u'wind']
[u'pixel', u'sale', u'generat', u'student', u'million']
[u'polic', u'book', u'hundr', u'driver', u'speed']
[u'polic', u'probe', u'gunnedah', u'assault']
[u'polic', u'protest', u'forc', u'closur', u'gaza', u'border']
[u'polic', u'rule', u'foul', u'play', u'bodi']
[u'polic', u'search', u'solvent', u'supplier']
[u'pont', u'flag', u'factor', u'test', u'victori']
[u'pont', u'smith', u'word']
[u'pont', u'symond', u'perform', u'standout']
[u'port', u'macquari', u'tourism', u'defi', u'fall']
[u'pratt', u'give', u'gold', u'coast', u'wildcard']
[u'pricey', u'coffe', u'good', u'anim', u'drop']
[u'qanta', u'maintain', u'alic', u'spring', u'rout']
[u'quetzalcoatl', u'take', u'melbourn', u'hobart', u'handicap']
[u'refere', u'say', u'action', u'warn', u'appeal']
[u'relat', u'arrest', u'fatal', u'stab']
[u'ronaldo', u'suffer', u'calf', u'injuri']
[u'russia', u'hopman', u'place', u'doubt']
[u'serb', u'jail', u'srebrenica', u'massacr']
[u'seven', u'charg', u'toowoomba', u'assault']
[u'share', u'market', u'close', u'lower']
[u'shell', u'loot', u'intercept', u'water']
[u'fogg', u'administr', u'meet', u'creditor']
[u'steal', u'wag', u'claim', u'prompt', u'contractor', u'warn']
[u'stoner', u'hand', u'motogp', u'chanc']
[u'struggl', u'birmingham', u'hope', u'chelsea']
[u'seeker', u'warn', u'cancer', u'risk']
[u'swan', u'hill', u'prepar', u'murray', u'river', u'duck', u'race']
[u'swansea', u'librari', u'close', u'reloc']
[u'sydney', u'hobart', u'fair', u'contest', u'skipper']
[u'tafe', u'offer', u'indigen', u'scholarship']
[u'tenterfield', u'arson', u'investig', u'begin']
[u'thiev', u'break', u'beazley', u'offic']
[u'thousand', u'report', u'fake', u'email']
[u'time', u'guidelin', u'releas', u'question']
[u'boss', u'look']
[u'train', u'assault', u'accus', u'collaps', u'court']
[u'turkish', u'writer', u'escap', u'sedit', u'charg']
[u'union', u'warn', u'wage', u'claim']
[u'close', u'malaysian', u'embassi']
[u'threaten', u'withdraw', u'north', u'korea', u'food']
[u'face', u'court', u'casino', u'fraud', u'charg']
[u'victim', u'welcom', u'parol', u'board', u'resign']
[u'villawood', u'detaine', u'lodg', u'complaint']
[u'villawood', u'staff', u'accus', u'thuggeri']
[u'wait', u'continu', u'steal', u'wag', u'claim']
[u'polic', u'target', u'rural', u'area', u'safeti', u'crackdown']
[u'wild', u'oat', u'skipper', u'reject', u'unfair', u'contest', u'claim']
[u'wild', u'oat', u'take', u'sydney', u'hobart', u'trebl']
[u'wivenho', u'boat', u'propos', u'reject']
[u'suicid', u'bomber', u'blow', u'afghan', u'blast']
[u'zimbabw', u'inflat', u'jobless', u'rat', u'soar']
[u'kill', u'polic', u'oper']
[u'aceh', u'peac', u'monitor', u'mission', u'extend']
[u'airport', u'secur', u'plan', u'impact', u'communiti']
[u'arthur', u'prim', u'hopman']
[u'australia', u'go', u'germani']
[u'australia', u'welcom']
[u'avalanch', u'kill', u'pakistan']
[u'beatti', u'make', u'case', u'extra', u'fund']
[u'boati', u'readi', u'firework']
[u'bomb', u'attack', u'hit', u'sulawesi']
[u'bushfir']
[u'fund', u'special', u'need', u'student']
[u'canberra', u'level', u'accept']
[u'claim', u'assad', u'syrian', u'threaten', u'hariri']
[u'crew', u'battl', u'blaze', u'coal']
[u'darwin', u'readi', u'year', u'festiv']
[u'lose', u'grind', u'final', u'session']
[u'driver', u'trap', u'snow', u'hit', u'britain']
[u'explos', u'rock', u'crowd', u'indonesian', u'market']
[u'famili', u'say', u'australian', u'wrong', u'jail', u'iraq']
[u'ban']
[u'claim', u'home', u'western']
[u'crew', u'stand', u'amid', u'extrem', u'condit']
[u'firefight', u'brace', u'test', u'time']
[u'firefight', u'continu', u'battl']
[u'firefight', u'progress', u'wilmington', u'blaze']
[u'firework', u'need', u'author', u'ahead']
[u'kill', u'injur', u'baghdad', u'blast']
[u'stall', u'claim', u'laughabl', u'say', u'rann']
[u'leader', u'skate', u'hospit', u'stroke']
[u'fund', u'boost']
[u'gaza', u'egypt', u'border', u'reopen']
[u'germani', u'level', u'hopman']
[u'govt', u'consid', u'metal', u'fenc', u'reduc', u'risk']
[u'green', u'surg', u'ahead', u'poll']
[u'haitian', u'elect', u'delay']
[u'henin', u'hardenn', u'tip', u'clijster', u'australian', u'open']
[u'hingi', u'struggl', u'return', u'warn', u'bollettieri']
[u'hobart', u'extravaganza']
[u'holiday', u'road', u'toll', u'increas']
[u'holiday', u'season', u'parti', u'strain', u'hospit', u'resourc']
[u'hottest', u'year', u'forecast']
[u'indonesian', u'market', u'blast', u'kill']
[u'indoor', u'smoke', u'ban', u'begin']
[u'keyhol', u'surgeri', u'cyst', u'protect', u'ovari']
[u'king', u'local', u'derbi']
[u'langer', u'dismiss', u'racism', u'alleg']
[u'die', u'dive', u'accid']
[u'drown', u'marlo']
[u'marin', u'maim', u'jet']
[u'minist', u'step', u'asid', u'amid', u'iraq', u'crisi']
[u'iraqi', u'prison', u'abus', u'uncov', u'offici']
[u'music', u'festiv', u'attract', u'huge', u'crowd']
[u'nation', u'holiday', u'road', u'toll', u'rise']
[u'nation', u'holiday', u'road', u'toll', u'rise']
[u'nation', u'road', u'toll', u'surg']
[u'zealand', u'beat', u'lanka', u'seven', u'wicket']
[u'quick', u'pollut', u'swim', u'spot']
[u'govt', u'tight', u'lip', u'optus', u'legal', u'action']
[u'packer', u'accept', u'state', u'memori', u'offer']
[u'perth', u'record', u'coolest', u'decemb', u'decad']
[u'polic', u'forc', u'year', u'celebr']
[u'polic', u'action', u'boister', u'parti']
[u'power', u'thousand', u'adelaid', u'home']
[u'death', u'push', u'nation', u'road', u'toll']
[u'record', u'high', u'temperatur', u'victoria']
[u'revel', u'urg', u'care']
[u'ross', u'river', u'virus', u'alert']
[u'schukin', u'come', u'russia', u'rescu']
[u'death', u'lift', u'road', u'toll']
[u'korea', u'iraq', u'troop']
[u'spare', u'surreal', u'plead', u'clich', u'list']
[u'swelter', u'night', u'ahead', u'year', u'revelri']
[u'sydney', u'gear', u'celebr']
[u'sydney', u'hobart', u'trebl', u'repeat', u'say', u'wild', u'oat']
[u'takeov', u'offer', u'accept', u'abattoir', u'giant']
[u'chang', u'usher', u'opposit']
[u'british', u'hostag', u'free', u'gaza']
[u'total', u'ban', u'remain', u'region']
[u'tram', u'hit', u'elder', u'woman']
[u'egyptian', u'polic', u'sudan', u'protest']
[u'kill', u'bomb', u'strike', u'iraqi', u'polic', u'patrol']
[u'deni', u'tortur', u'guantanamo', u'hunger', u'striker']
[u'program', u'leak', u'investig']
[u'teen', u'make', u'solo', u'trip', u'iraq']
[u'govt', u'put', u'research', u'machin']
[u'wenger', u'give', u'hope', u'premier', u'leagu']
[u'workcov', u'premium', u'reduc']
[u'adelaid', u'lose', u'streak']
[u'adelaid', u'notch', u'roar']
[u'adelaid', u'trounc', u'roar', u'extend', u'lead']
[u'analyst', u'upbeat', u'market', u'strength']
[u'anti', u'poverti', u'campaign', u'step']
[u'arrest', u'daceyvill', u'death']
[u'arthur', u'hopman']
[u'aust', u'crew', u'fight', u'caledonian']
[u'australia', u'heart', u'greet']
[u'baghdad', u'bomb', u'attack', u'injur']
[u'beach', u'whale', u'shoot']
[u'beatti', u'pledg', u'road', u'safeti', u'summit', u'horror']
[u'bigfoot', u'fever', u'grip', u'malaysian', u'rainforest']
[u'blaze', u'threaten', u'western', u'town']
[u'bolder', u'block', u'great', u'ocean', u'road', u'remov']
[u'brothel', u'ban', u'tough', u'law']
[u'cabinet', u'paper', u'shed', u'light', u'whitlam', u'govt']
[u'cambodian', u'polic', u'arrest', u'human', u'right', u'activist']
[u'chelsea', u'march', u'owen', u'suffer', u'break', u'bone']
[u'china', u'vow', u'peac', u'cooper', u'develop']
[u'condit', u'ripe', u'bushfir', u'repetit']
[u'dent', u'level', u'hopman']
[u'dubbo', u'polic', u'riot', u'stand']
[u'fall', u'festiv', u'crowd', u'band']
[u'famin', u'nation', u'disast', u'kenyan', u'presid', u'say']
[u'farmer', u'ask', u'stop', u'harvest', u'fear']
[u'ferguson', u'bow', u'gold', u'coast']
[u'burn', u'control']
[u'firefight', u'continu', u'battl', u'blaze']
[u'unit', u'kill']
[u'fire', u'threaten', u'home', u'central', u'coast']
[u'fire', u'threaten', u'central', u'coast']
[u'threaten', u'coastal', u'communiti']
[u'firework', u'parti', u'mark']
[u'dead', u'road', u'accid']
[u'foreign', u'kidnap', u'gaza', u'strip']
[u'south', u'africa', u'rounder', u'barlow', u'die']
[u'group', u'turn', u'polic', u'injur', u'offic']
[u'gunmen', u'blast', u'gaza', u'worker', u'club']
[u'happi', u'year']
[u'heavi', u'rain', u'stop', u'spread']
[u'high', u'wind', u'caus', u'havoc']
[u'holiday', u'road', u'toll', u'near']
[u'indonesian', u'boat', u'discov', u'kimberley', u'coast']
[u'indonesian', u'polic', u'detain', u'market', u'bomb']
[u'inquiri', u'seek', u'kill', u'sudanes', u'protest']
[u'iraqi', u'babi', u'arriv', u'treatment']
[u'israel', u'kill', u'palestinian', u'milit', u'truce']
[u'ivanov', u'give', u'serbia', u'montenegro', u'lead']
[u'kenyan', u'prison', u'forego', u'lunch', u'drought']
[u'kidnap', u'german', u'free', u'yemen']
[u'listeria', u'outbreak', u'prompt', u'food', u'prep', u'audit']
[u'london', u'bomb', u'rescu', u'worker', u'honour']
[u'question', u'valley', u'stab']
[u'stock', u'tag', u'guidelin', u'begin']
[u'celebr', u'light', u'world', u'citi']
[u'household', u'prepar']
[u'pakistan', u'hop', u'pain', u'rest']
[u'pet', u'pest', u'communiti', u'divid', u'rabbit']
[u'plantat', u'harm', u'good', u'say', u'csiro']
[u'polic', u'break', u'brawl', u'camp', u'grind']
[u'polic', u'investig', u'toddler', u'death']
[u'polic', u'keep', u'busi', u'drunken', u'revel']
[u'polic', u'search', u'miss']
[u'probe', u'begin', u'sulawesi', u'bomb']
[u'progress', u'fire']
[u'protea', u'turn', u'spinner', u'australia']
[u'quak', u'spark', u'panic', u'aceh']
[u'rain', u'aid', u'firefight', u'near', u'wangaratta']
[u'rain', u'damag', u'rail', u'track']
[u'renew', u'focus', u'need', u'indigen', u'leadership']
[u'riot', u'task', u'forc', u'remain', u'sydney']
[u'russia', u'complet', u'ukrain']
[u'russia', u'take']
[u'russia', u'suppli', u'ukrain', u'deal']
[u'sainz', u'make', u'win', u'debut', u'dakar', u'ralli']
[u'sever', u'flood', u'hit', u'wine', u'region']
[u'stay', u'catch', u'bushfir']
[u'sydney', u'record', u'record', u'temperatur']
[u'syrian', u'demand', u'treason', u'trial', u'deputi']
[u'syring', u'robberi']
[u'whiz', u'win', u'highest', u'academ', u'award']
[u'injur', u'gold', u'coast', u'collis']
[u'tension', u'high', u'isra', u'palestinian', u'truce', u'expir']
[u'territorian', u'urg', u'capitalis', u'cruis', u'ship']
[u'thirti', u'catch', u'drink', u'drive']
[u'thompson', u'target', u'dutch', u'giant']
[u'thousand', u'power', u'unley']
[u'time', u'skip', u'beat', u'leap', u'second', u'add', u'clock']
[u'turkish', u'children', u'test', u'bird']
[u'ukrain', u'hesit', u'putin', u'offer']
[u'triumph', u'serbia', u'montenegro']
[u'bushfir', u'burn', u'control']
[u'coach', u'charg', u'dissent']
[u'road', u'toll', u'lowest', u'level']
[u'whitlam', u'cabinet', u'final', u'day', u'reveal']
[u'world', u'welcom']
[u'zidan', u'hint', u'retir', u'world']
[u'arrest', u'dubbo', u'violenc']
[u'upgrad', u'firefight']
[u'hospit', u'visit', u'smoke', u'studi']
[u'aborigin', u'welfar', u'need', u'tougher', u'approach']
[u'condit', u'eas']
[u'adelaid', u'airport', u'open', u'hold']
[u'vow', u'stop', u'outsourc', u'immigr', u'servic']
[u'antarct', u'flagship', u'search', u'whale', u'song']
[u'aussi', u'wildcard', u'cull', u'adelaid']
[u'author', u'assess', u'damag', u'fire', u'sweep']
[u'bevan', u'set', u'tiger']
[u'bjelk', u'petersen', u'bypass', u'cabinet', u'paper']
[u'black', u'blitz', u'perth', u'field']
[u'bomb', u'near', u'baghdad', u'refineri', u'set', u'pipelin']
[u'burni', u'crew', u'seek', u'surf', u'boat', u'challeng']
[u'bush', u'defend', u'controversi', u'domest', u'spi', u'program']
[u'bushfir', u'battl', u'continu', u'threat', u'eas']
[u'polic', u'public', u'transport']
[u'cash', u'comeback', u'trail', u'chennai']
[u'churchil', u'want', u'hitler', u'execut', u'document']
[u'commentari', u'highlight', u'test']
[u'concern', u'conroy', u'safeti', u'procedur', u'linger']
[u'cool', u'condit', u'bushfir', u'fight']
[u'council', u'blame', u'bondi', u'flag', u'permit', u'process']
[u'crash', u'prompt', u'road', u'upgrad', u'call']
[u'crew', u'watch', u'fire']
[u'death', u'nation', u'road', u'toll']
[u'diver', u'death', u'tragic']
[u'docker', u'black', u'face', u'assault', u'charg']
[u'entertain', u'dawn', u'limb', u'dead']
[u'expect', u'traffic', u'delay', u'today']
[u'extrem', u'danger', u'prompt', u'region']
[u'eyr', u'peninsula', u'fire']
[u'fatal', u'skydiv', u'crash', u'investig']
[u'destroy', u'sydney', u'factori']
[u'firefight', u'battl', u'sunshin', u'coast', u'hinterland']
[u'firefight', u'work', u'blaze', u'west', u'state']
[u'fire', u'destroy', u'livestock', u'timber', u'grassland']
[u'skydiv', u'plane', u'crash']
[u'skydiv', u'kill', u'plane', u'crash']
[u'fund', u'avail', u'victim']
[u'ganguli', u'fate', u'focus', u'pakistan', u'tour']
[u'govt', u'crack', u'tablet', u'sale']
[u'govt', u'tighten', u'credit', u'lib']
[u'govt', u'plan', u'mental', u'health', u'servic', u'overhaul']
[u'grower', u'voic', u'concern', u'taiwan', u'import', u'chang']
[u'heat', u'continu', u'queensland']
[u'hingi', u'make', u'win', u'comeback']
[u'hingi', u'make', u'win', u'return']
[u'hostag', u'releas', u'iraq', u'month']
[u'hostag', u'return', u'negoti', u'freedom']
[u'howard', u'senat', u'discuss', u'iraq']
[u'hat', u'nicknam', u'pele']
[u'immigr', u'depart', u'urg', u'confront', u'real']
[u'iraqi', u'forc', u'inclus', u'general']
[u'islam', u'school', u'oppos', u'student', u'expuls', u'order']
[u'israel', u'hit', u'gaza', u'target']
[u'italian', u'hostag', u'free', u'gaza']
[u'winner', u'start', u'huggard']
[u'frame', u'claim', u'johnson']
[u'kalli', u'notch', u'half', u'centuri']
[u'kalli', u'princ', u'defi', u'australia']
[u'claim', u'second', u'scalp']
[u'librarian', u'warn', u'internet', u'crucial', u'poor', u'surviv']
[u'livestock', u'go', u'nation']
[u'major', u'road', u'open', u'fire', u'contain']
[u'charg', u'offic', u'nose', u'break']
[u'mop', u'continu', u'ledg', u'point']
[u'mop', u'follow']
[u'warn', u'unpaid', u'work', u'illeg']
[u'netherland', u'upset', u'argentina', u'perth']
[u'newcom', u'threaten', u'udal', u'spot']
[u'tasmanian', u'port', u'merg']
[u'year', u'herald', u'fire']
[u'happi', u'return', u'jaqu']
[u'bushfir', u'longer', u'threaten', u'properti']
[u'central', u'coast', u'fire', u'control']
[u'chief', u'magistr', u'retir', u'midyear']
[u'polic', u'report', u'disturb', u'year']
[u'owen', u'vow']
[u'paedophil', u'excel', u'benefit', u'report']
[u'polic', u'blitz', u'nab', u'record', u'number', u'drink', u'driver']
[u'policeman', u'home', u'near', u'miss']
[u'policemen', u'kill', u'iraq', u'suicid', u'bomb']
[u'polic', u'restor', u'order', u'dubbo', u'riot']
[u'pont', u'chalk']
[u'pool', u'beat', u'beach', u'record', u'heat']
[u'privat', u'compani', u'urg', u'council']
[u'rain', u'delay', u'start']
[u'reid', u'readi', u'hopman', u'debut']
[u'resid', u'return', u'home', u'trash']
[u'resid', u'return', u'stawel', u'home', u'destroy']
[u'retail', u'urg', u'plastic']
[u'take', u'girl']
[u'rower', u'gear', u'arduous', u'event']
[u'crash', u'lift', u'holiday', u'road', u'toll']
[u'sainz', u'win', u'second', u'straight', u'dakar', u'stage']
[u'school', u'record', u'digit']
[u'score', u'kill', u'east', u'java', u'flash', u'flood']
[u'cours', u'prove', u'popular']
[u'search', u'call', u'adelaid', u'gunman']
[u'search', u'miss', u'tourist']
[u'korean', u'chalk', u'love', u'date']
[u'skydiv', u'involv', u'fatal', u'plane', u'crash']
[u'stage', u'hingi', u'comeback']
[u'stanhop', u'proud', u'long', u'serv', u'leader', u'record']
[u'hope', u'casino', u'murwillumbah', u'line']
[u'storm', u'cut', u'rail', u'link']
[u'strong', u'polic', u'presenc', u'avert', u'unrest']
[u'strong', u'wind', u'rain', u'wreak', u'havoc', u'auckland']
[u'suspect', u'illeg', u'fishermen', u'take', u'broom']
[u'sydney', u'face', u'court', u'drug', u'charg']
[u'sydney', u'opera', u'hous', u'short', u'list', u'seven']
[u'taiwan', u'warn', u'rise', u'chines', u'threat']
[u'power', u'bill', u'jump']
[u'tassi', u'nipper', u'mainland', u'coach']
[u'arrest', u'dubbo', u'violenc']
[u'earli', u'blame', u'road', u'rann']
[u'tourist', u'media', u'report']
[u'turkish', u'boy', u'death', u'bird', u'health', u'ministri']
[u'turkish', u'test', u'bird', u'die', u'hospit']
[u'vow', u'support', u'worker']
[u'ukrain', u'seek', u'dialogu', u'settl', u'disput']
[u'controversi', u'hit', u'justic', u'dept']
[u'vic', u'fall', u'short', u'despit', u'klinger']
[u'target', u'migrant', u'water', u'safeti', u'campaign']
[u'victori', u'wait', u'approach']
[u'volunt', u'die', u'bushfir', u'fight', u'continu']
[u'volunt', u'prais', u'firefight', u'effort']
[u'control']
[u'wildcard', u'action', u'adelaid']
[u'wit', u'question', u'girl', u'death']
[u'woman', u'give', u'birth', u'plane', u'toilet']
[u'woman', u'shoot', u'gunman']
[u'woodford', u'festiv', u'hail', u'success']
[u'power', u'perth']
[u'dead', u'east', u'java', u'flood']
[u'abort', u'increas', u'depress', u'risk', u'studi']
[u'activist', u'label', u'duck', u'shoot', u'committe', u'corrupt']
[u'road', u'remain', u'fatal', u'free']
[u'adelaid', u'perth', u'rail', u'repair', u'continu']
[u'adelaid', u'search', u'fail', u'gunman']
[u'adelaid', u'swim', u'complex', u'safe', u'council', u'say']
[u'alleg', u'drink', u'driver', u'catch', u'twice', u'night']
[u'ancic', u'advanc', u'adelaid']
[u'ardrossan', u'hospit', u'call', u'facil']
[u'arrest', u'human', u'right', u'activist', u'distress']
[u'arsonist', u'watch', u'crew', u'continu', u'battl']
[u'astl', u'find', u'form', u'guid', u'seri']
[u'aussi', u'chase', u'earli', u'wicket']
[u'australia', u'troubl', u'stump']
[u'babi', u'boom', u'china', u'giant', u'panda']
[u'bali', u'tourist', u'number', u'blast']
[u'hospit', u'attack']
[u'bushrang', u'coach', u'guilti', u'dissent']
[u'bushwalk', u'evacu', u'east']
[u'busselton', u'lose', u'diver', u'death']
[u'cabbi', u'face', u'suspens', u'drink', u'drive']
[u'caldecott', u'win', u'dakar', u'stage']
[u'california', u'declar', u'state', u'emerg']
[u'cool', u'lake', u'open']
[u'career', u'advic', u'student']
[u'warn', u'firefight', u'shortag']
[u'chelsea', u'triumph', u'liverpool', u'hold', u'bolton']
[u'christma', u'mass', u'streaker', u'face', u'communiti', u'servic']
[u'commentari', u'highlight', u'test']
[u'communiti', u'group']
[u'concern', u'flow', u'wild', u'river', u'legisl']
[u'construct', u'begin', u'broom', u'home']
[u'council', u'activist', u'argu', u'meet']
[u'countri', u'state', u'elect', u'liber']
[u'crowd', u'tast', u'festiv', u'simpli', u'irresist']
[u'danger', u'parti', u'mar', u'year', u'celebr']
[u'dokic', u'find', u'scruff', u'tough', u'auckland']
[u'drink', u'drive', u'messag', u'get', u'polic']
[u'drink', u'spike', u'hit', u'countri']
[u'drought', u'warn', u'hunter']
[u'drug', u'lobbi', u'promis', u'medicin', u'price', u'rise']
[u'drug', u'price', u'protect', u'scrap']
[u'dubbo', u'death', u'road', u'toll']
[u'dubbo', u'hous', u'solut', u'agenda']
[u'engin', u'failur', u'suspect', u'fatal', u'plane', u'crash']
[u'say', u'smell', u'dust']
[u'errat', u'arsenal', u'brace', u'unit', u'onslaught']
[u'esper', u'mark', u'success', u'year', u'shire', u'presid']
[u'europ', u'express', u'concern', u'disput']
[u'explos', u'rock', u'nepal']
[u'explos', u'trap', u'miner']
[u'factori', u'destroy', u'tonn', u'recycl', u'paper']
[u'blame', u'hous']
[u'farmer', u'face', u'multitud', u'tape', u'charg']
[u'festiv', u'onlin', u'book', u'continu']
[u'firefight', u'prais', u'effort', u'june']
[u'firefight', u'wont', u'strike', u'game', u'thwait']
[u'servic', u'prais', u'rescu', u'team', u'hero']
[u'foreign', u'kill', u'skydiv', u'plane', u'crash']
[u'leader', u'skate', u'die']
[u'rugbi', u'leagu', u'player', u'steve', u'roger']
[u'franc', u'lift', u'state', u'emerg']
[u'chang', u'push', u'drug', u'price']
[u'fund', u'withdraw', u'loss', u'near']
[u'fund', u'secur', u'derbi', u'cemeteri', u'sign']
[u'geraldton', u'look', u'summer', u'record', u'cool']
[u'german', u'rink', u'roof', u'collaps']
[u'good', u'harvest', u'despit', u'uncertainti']
[u'govt', u'consid', u'scrap', u'drug', u'price', u'control']
[u'govt', u'consid', u'scrap', u'drug', u'safeguard']
[u'urg', u'govt', u'offer', u'skill', u'program']
[u'greenpeac', u'claim', u'minor', u'whaler']
[u'group', u'talk', u'otway']
[u'heat', u'blame', u'emerg']
[u'hewitt', u'battl', u'adelaid', u'second', u'round']
[u'hingi', u'rat', u'return']
[u'home', u'owner', u'fin', u'bushfir', u'hazard']
[u'illeg', u'fish', u'intercept', u'doubl']
[u'investig', u'continu', u'crash', u'kill']
[u'irukandji', u'extend', u'beach', u'closur']
[u'japan', u'plan', u'free', u'trade', u'talk', u'australia', u'report']
[u'japan', u'seek', u'privat', u'fund', u'space', u'program']
[u'job', u'save', u'manildra', u'flour']
[u'kenni', u'meninga', u'tribut', u'roger']
[u'kersten', u'triumph', u'burni', u'wheel']
[u'king', u'tide', u'prompt', u'lifesav', u'warn']
[u'korean', u'latest', u'victim', u'backpack', u'wage', u'scam']
[u'langeveldt', u'take', u'hayden', u'langer']
[u'yacht', u'cross', u'sydney', u'hobart', u'finish', u'line']
[u'charg', u'dissent']
[u'reprimand', u'dissent', u'charg']
[u'liber', u'poster', u'campaign', u'attack', u'lennon']
[u'listeria', u'link', u'compani', u'resum', u'manufactur']
[u'littl', u'show', u'develop', u'rule', u'chang']
[u'local', u'ident', u'dead', u'day', u'polic']
[u'london', u'bomb', u'cost', u'pound']
[u'lotteri', u'novic', u'win']
[u'level', u'prompt', u'silt', u'remov']
[u'mackay', u'death', u'suspici', u'polic']
[u'major', u'earthquak', u'hit', u'south', u'pacif']
[u'catch', u'child', u'porn', u'escap', u'convict']
[u'charg', u'toowoomba', u'doubl', u'murder']
[u'dead', u'partner', u'home']
[u'jail', u'steel', u'cap', u'boot', u'attack', u'wife']
[u'releas', u'form', u'hospit', u'stab']
[u'man', u'bodi', u'recov', u'palm', u'beach']
[u'stabl', u'cooma', u'shoot']
[u'take', u'question', u'doubl', u'murder']
[u'manufactur', u'activ', u'rebound']
[u'market', u'facelift', u'bind', u'hunter']
[u'miner', u'recov', u'rescu']
[u'miner', u'surviv', u'underground']
[u'shaft', u'trap']
[u'miss']
[u'offic', u'wast', u'labor']
[u'mysteri', u'ticket', u'holder', u'lose', u'lotteri']
[u'nepales', u'rebel', u'ceas']
[u'fire', u'investig']
[u'law', u'prevent', u'crimin', u'letter', u'write']
[u'night', u'game', u'draw', u'crowd']
[u'sight', u'high', u'petrol', u'price']
[u'inquiri', u'act', u'high', u'murder', u'rate']
[u'activist', u'face', u'court', u'paint', u'auction']
[u'bushfir', u'contain']
[u'face', u'extrem', u'danger']
[u'fire', u'threaten', u'properti']
[u'polic', u'watch', u'arsonist', u'warn', u'iemma']
[u'review', u'transport', u'ticket']
[u'offic', u'bite', u'chase']
[u'oldest', u'lead', u'go', u'open']
[u'outback', u'tourism', u'surg']
[u'packer', u'pull', u'plug', u'singapor', u'casino']
[u'paddler', u'embark', u'devil', u'journey']
[u'palestinian', u'kill', u'missil', u'strike']
[u'peopl', u'urg', u'blood', u'year']
[u'plane', u'wreckag', u'pull', u'ipswich']
[u'poki', u'rais', u'town']
[u'pole', u'fire', u'caus', u'power', u'cut']
[u'polic', u'diver', u'knife', u'fatal', u'stab']
[u'polic', u'happi', u'central', u'driver']
[u'polic', u'injur', u'slingshot', u'attack']
[u'polic', u'investig', u'doubl', u'stab']
[u'polic', u'look', u'miss', u'bushwalk']
[u'polic', u'oper', u'nab', u'record', u'number', u'driver']
[u'polic', u'rescu', u'lose', u'famili']
[u'polic', u'rule', u'accid', u'cooma', u'shoot']
[u'polic', u'seiz', u'worth', u'drug']
[u'polic', u'warn', u'traffic', u'chao', u'coff', u'light']
[u'power', u'restor', u'home', u'perth']
[u'predict', u'vine', u'pull', u'amid', u'grape', u'glut']
[u'prepar', u'worst', u'author', u'warn']
[u'price', u'rise', u'sydney', u'bus', u'ferri']
[u'protea']
[u'crash', u'push', u'holiday', u'road', u'toll']
[u'qpws', u'seek', u'inskip', u'camp', u'quota']
[u'rain', u'bring', u'welcom', u'relief', u'firefight']
[u'rain', u'herald', u'year', u'drought']
[u'rangeland', u'drought', u'relief']
[u'rescuer', u'battl', u'condit', u'german', u'rink', u'collaps']
[u'resid', u'urg', u'clean', u'avoid', u'mosquito']
[u'resourc', u'push', u'market', u'record', u'high']
[u'rudolph', u'mcgrath']
[u'rural', u'doctor', u'boost', u'govt']
[u'russia', u'restor', u'europ', u'ukrain', u'simmer']
[u'safeti', u'river', u'emphasis']
[u'scorcher', u'norm', u'scientist']
[u'scud', u'win', u'return']
[u'serbia', u'montenegro', u'hopman', u'hop', u'aliv']
[u'servic', u'club', u'consid', u'rescu', u'golf', u'club']
[u'share', u'market', u'star', u'trade']
[u'shark', u'legend', u'roger', u'die']
[u'sharon', u'quit', u'parti', u'fund', u'convict']
[u'shipperd', u'face', u'dissent', u'hear']
[u'skydiv', u'critic', u'investig', u'begin']
[u'smoker', u'financi', u'burden', u'health', u'say', u'govt']
[u'kilda', u'pier', u'kiosk', u'reopen']
[u'strong', u'wind', u'expect', u'eas']
[u'studi', u'link', u'obes', u'kidney', u'failur']
[u'survey', u'gaug', u'support', u'jetti']
[u'suspect', u'link', u'embassi', u'attack', u'stand', u'trial']
[u'symond', u'strike', u'australia']
[u'opposit', u'suggest', u'dealer', u'hotlin']
[u'drink', u'spike', u'claim', u'investig']
[u'kill', u'horror', u'smash', u'near', u'dubbo']
[u'trap']
[u'toll', u'rise', u'german', u'rink', u'roof', u'collaps']
[u'tribut', u'pay', u'leagu', u'legend', u'roger']
[u'turkish', u'ambassador', u'wound', u'iraq', u'attack']
[u'ugandan', u'opposit', u'leader', u'free', u'bail']
[u'investig', u'visa', u'claim']
[u'upgrad', u'mall', u'lose', u'tourist', u'chamber', u'warn']
[u'strike', u'kill', u'famili', u'member', u'iraqi']
[u'cours', u'hopman', u'final']
[u'teen', u'return', u'home', u'iraq', u'trip']
[u'pledg', u'assist', u'farmer']
[u'road', u'death', u'take', u'toll']
[u'victorian', u'coach', u'face', u'ban']
[u'victori', u'discuss', u'thompson']
[u'volunt', u'prais', u'control']
[u'warn', u'win', u'mcgilvray', u'medal']
[u'wine', u'surplus', u'grape', u'vine', u'pull']
[u'winner', u'sail', u'morn']
[u'winter', u'rain', u'grind', u'pakistan', u'quak', u'relief']
[u'employ', u'understand', u'law', u'survey']
[u'hottest', u'year', u'record']
[u'fear', u'dead', u'indonesian', u'landslid']
[u'journalist', u'kill', u'iraq', u'report']
[u'lightn', u'strike', u'power']
[u'end', u'amid', u'high', u'temp']
[u'jacket', u'tender', u'process', u'flaw', u'watchdog']
[u'alleg', u'rioter', u'name', u'hous', u'depart']
[u'argentina', u'edg', u'germani', u'leav', u'fight']
[u'astl', u'drop', u'despit', u'return', u'form']
[u'aussi', u'confid', u'launch', u'fight']
[u'aussi', u'crash', u'hopman']
[u'aussi', u'action', u'junior', u'surf', u'champ']
[u'australia', u'rest', u'gun', u'match']
[u'averag', u'temp', u'highest', u'record']
[u'promis', u'secur', u'berri', u'worker']
[u'weather', u'hinder', u'east', u'java', u'flood', u'rescu']
[u'baghdad', u'bomb', u'kill']
[u'barca', u'real', u'edg', u'bilbao']
[u'bash', u'victim', u'famili', u'rob']
[u'bird', u'outbreak', u'china', u'south', u'west']
[u'bocc', u'ball', u'attack', u'defend', u'amid', u'island', u'unrest']
[u'boost', u'renmark', u'encourag', u'local']
[u'break', u'hill', u'seek', u'student', u'exchang', u'syria']
[u'caldecott', u'lose', u'crucial', u'time', u'dakar', u'ralli']
[u'calm', u'locust', u'sight']
[u'fund', u'boost', u'improv', u'midwest', u'road']
[u'cane', u'toad', u'close', u'darwin']
[u'capsiz', u'sailor', u'land']
[u'capsiz', u'yacht', u'crew', u'rescu']
[u'capsiz', u'yacht', u'crew', u'land', u'safe']
[u'carer', u'urg', u'supervis', u'children', u'water']
[u'champion', u'stallion', u'jeun', u'die']
[u'charg', u'lay', u'alleg', u'sport', u'store', u'robberi']
[u'child', u'kill', u'boat', u'accid']
[u'child', u'worker', u'undergo', u'tough', u'crimin', u'check']
[u'claim', u'stab', u'break']
[u'climat', u'chang', u'requir', u'global', u'respons', u'govt']
[u'coffe', u'reduc', u'breast', u'cancer', u'risk', u'report']
[u'commentari', u'highlight', u'test']
[u'conroy', u'resum', u'product', u'listeria']
[u'control', u'burn', u'plan', u'southern', u'canberra']
[u'councillor', u'call', u'communiti', u'input', u'hous']
[u'crash', u'plane', u'uniqu', u'engin', u'investig']
[u'curat', u'appeal', u'return', u'medal']
[u'cyclon', u'devast', u'resort', u'rebuild', u'give']
[u'danger', u'condit', u'halt', u'rink', u'rescu']
[u'daryl', u'bromley']
[u'disabl', u'work', u'employ', u'program']
[u'attack', u'child']
[u'dog', u'envi', u'japanes']
[u'donna', u'brown']
[u'elect', u'hot', u'tweed']
[u'engin', u'modifi', u'crash', u'investig']
[u'absolv', u'respons']
[u'etsa', u'seek', u'compo', u'unley', u'blackout']
[u'extra', u'help', u'call', u'combat', u'tenterfield']
[u'wallabi', u'player']
[u'farmer', u'want', u'weather', u'chang', u'flash', u'flood']
[u'feder', u'march', u'second', u'round', u'qatar']
[u'damag', u'hectar', u'near', u'grenfel']
[u'firefight', u'battl', u'freycinet', u'blaze']
[u'fisheri', u'confid', u'court', u'sentenc', u'send', u'strong']
[u'fisherman', u'die', u'wash']
[u'footbal', u'club', u'anger', u'grind', u'fee', u'disput', u'head']
[u'free', u'servic', u'continu']
[u'free', u'ugandan', u'politician', u'demand', u'presid', u'trial']
[u'freight', u'train', u'derail', u'near', u'wagga']
[u'gilli', u'get', u'groov']
[u'gladston', u'coupl', u'win', u'lotto']
[u'govt', u'urg', u'increas', u'medicar', u'dental', u'rebat']
[u'gower', u'face', u'board']
[u'gower', u'strip', u'captainci']
[u'grant', u'shire', u'confid', u'develop']
[u'grape', u'grower', u'consid', u'legal', u'action']
[u'diseas', u'lift', u'heart', u'attack', u'risk', u'research']
[u'gunmen', u'disrupt', u'rafah', u'border', u'cross']
[u'health', u'fund', u'call', u'unfound', u'health', u'dept']
[u'heat', u'take', u'toll', u'level']
[u'help', u'send', u'yacht', u'strand', u'bass', u'strait']
[u'hewitt', u'happi', u'return']
[u'high', u'rise', u'amend', u'readi', u'public', u'scrutini']
[u'hingi', u'continu', u'win', u'return']
[u'holiday', u'break', u'resid', u'live', u'near', u'stink']
[u'hop', u'fade', u'trap', u'miner']
[u'hop', u'monsoon', u'boost', u'annual', u'rainfal']
[u'hottest', u'year', u'record']
[u'indigen', u'peopl', u'link', u'land']
[u'indonesian', u'landslid', u'toll']
[u'iraqi', u'funer', u'bomb', u'kill']
[u'june', u'loss', u'talli']
[u'kalli', u'doubt', u'seri']
[u'king', u'tribut', u'roger']
[u'king', u'tide', u'pose', u'coastal', u'damag', u'risk']
[u'lack', u'hang', u'prove', u'thief', u'downfal']
[u'leagu', u'great', u'die', u'heart', u'attack', u'train']
[u'local', u'busi', u'kick', u'start', u'fund', u'stawel']
[u'local', u'prove', u'correct', u'record', u'year']
[u'lock', u'boat', u'polic', u'warn']
[u'lotto', u'winner', u'come', u'hide']
[u'court', u'drug', u'weapon', u'bust']
[u'charg', u'shot', u'threat']
[u'charg', u'stab', u'refus', u'bail']
[u'charg', u'todd', u'river', u'murder']
[u'charg', u'child', u'indec', u'grant', u'bail']
[u'charg', u'parent', u'murder']
[u'hospit', u'bird', u'test']
[u'question', u'market', u'bomb']
[u'mater', u'hospit', u'get', u'helipad']
[u'mayor', u'want', u'chain', u'gang', u'clean', u'highway']
[u'mcewen', u'record', u'field', u'nation', u'champ']
[u'melbourn', u'winner', u'jeun', u'die']
[u'melbourn', u'train', u'breach', u'passeng', u'limit']
[u'memori', u'servic', u'hold', u'skydiv']
[u'minist', u'assur', u'resid', u'murder', u'investig']
[u'minist', u'brief', u'telco', u'lawsuit']
[u'misplac', u'anger', u'possibl', u'caus', u'damag']
[u'motorcyclist', u'charg', u'polic', u'crash']
[u'stop', u'welfar', u'debt', u'recipi']
[u'nail', u'bite', u'finish', u'see', u'wild', u'oat', u'lead']
[u'natur', u'disast', u'declar', u'wake', u'bushfir']
[u'latest', u'target', u'racist', u'fan']
[u'strike', u'light', u'fade']
[u'card', u'requir', u'anger', u'local', u'pilot']
[u'nation', u'dental', u'scheme', u'urg']
[u'evid', u'passeng', u'bird', u'health']
[u'gift', u'local', u'retail', u'quiet', u'christma']
[u'council', u'lose', u'commonwealth', u'fund']
[u'govt', u'reject', u'indigen', u'number', u'plate']
[u'surviv', u'disast']
[u'miner', u'aliv']
[u'outrag', u'holiday', u'porn', u'mail']
[u'owen', u'foot', u'oper']
[u'palestinian', u'campaign', u'stop', u'east', u'jerusalem']
[u'passeng', u'pilot', u'fals', u'imprison']
[u'peru', u'seek', u'presid', u'extradit']
[u'phone', u'restor', u'work', u'continu', u'june']
[u'plane', u'crash', u'survivor', u'stabl', u'probe', u'continu']
[u'plane', u'crash', u'victim', u'name']
[u'polic', u'arrest', u'palestinian', u'kidnap', u'suspect']
[u'polic', u'suspect', u'drink', u'spike', u'case']
[u'policeman', u'put', u'flinder', u'seat']
[u'polic', u'prepar', u'summernat']
[u'polic', u'seek', u'access', u'sharon', u'probe']
[u'polic', u'seek', u'public', u'help', u'solv', u'assault']
[u'polic', u'seek', u'wander', u'toddler', u'parent']
[u'polic', u'sound', u'seatbelt', u'remind']
[u'polic', u'urg', u'driver', u'care', u'road']
[u'pont', u'gilchrist', u'australia', u'aliv']
[u'pont', u'lead', u'australia', u'fight']
[u'pont', u'fight']
[u'post', u'trade', u'figur', u'leav', u'vail', u'unconcern']
[u'primari', u'industri', u'plan', u'global']
[u'privat', u'ferri', u'hire', u'cover', u'summer', u'passeng']
[u'promis', u'cheap', u'hous', u'grow', u'concern']
[u'propos', u'prison', u'mail', u'law', u'protect']
[u'avalanch', u'victim', u'prepar', u'marriag']
[u'woman', u'kill', u'german', u'avalanch']
[u'quak', u'hit', u'mexico', u'coast']
[u'rare', u'snake', u'sight', u'rise']
[u'renata', u'marra']
[u'rescuer', u'suspend', u'rink', u'search']
[u'resid', u'swelter', u'temperatur', u'soar']
[u'resid', u'tell', u'expect', u'smoke', u'day']
[u'resid', u'warn', u'bushfir', u'safeti', u'standard']
[u'resid', u'warn', u'expect', u'storm']
[u'alert']
[u'rice', u'visit', u'australia', u'indonesia']
[u'rider', u'german', u'tragedi']
[u'road', u'toll', u'rise']
[u'rocki', u'back', u'water', u'save', u'campaign']
[u'russia', u'ukrain', u'strike', u'deal']
[u'sainz', u'extend', u'impress', u'dakar', u'start']
[u'rule', u'drink', u'drive', u'review']
[u'school', u'award', u'fund', u'focus', u'boy', u'educ']
[u'recruit', u'drive', u'suffer', u'setback', u'break']
[u'sexual', u'assault', u'prompt', u'polic', u'warn']
[u'share', u'market', u'hit', u'record', u'high']
[u'share', u'market', u'post', u'high']
[u'snow', u'hamper', u'pakistan', u'earthquak', u'relief', u'effort']
[u'socceroo', u'hand', u'asian', u'draw']
[u'reveal', u'roger', u'fight', u'depress']
[u'south', u'africa', u'file', u'complaint', u'test', u'taunt']
[u'state', u'fund', u'boost', u'outback', u'celebr', u'coffer']
[u'stinki', u'wast', u'leak', u'prompt', u'resid', u'complaint']
[u'stoner', u'call', u'crime', u'prevent']
[u'strand', u'passeng', u'return', u'port', u'hedland']
[u'student', u'shift', u'focus', u'tradit', u'profess']
[u'crew', u'monitor', u'east', u'coast', u'blaze']
[u'sight', u'rise']
[u'tasmania', u'declar', u'wettest', u'state']
[u'investig']
[u'nickel', u'hop', u'resum', u'oper', u'soon']
[u'opposit', u'promis', u'bypass']
[u'offic', u'lend', u'help', u'hand', u'bushfir', u'victim']
[u'teen', u'refus', u'bail', u'steal', u'charg']
[u'telstra', u'reloc', u'corpor', u'affair', u'offic']
[u'accident', u'win', u'whitbread', u'award']
[u'theatr', u'compani', u'take']
[u'polic', u'offic', u'hurt', u'scuffl']
[u'toll', u'put', u'forward', u'undertak', u'accc']
[u'tourism', u'target', u'local']
[u'trio', u'hold', u'welsh', u'year', u'old', u'rape']
[u'tripl', u'fatal', u'lift', u'road', u'toll']
[u'tropic', u'north', u'rural', u'report']
[u'truss', u'frustrat', u'rail', u'rescu', u'packag', u'delay']
[u'court', u'ecstasi', u'pill', u'haul']
[u'kill', u'head', u'crash']
[u'prime', u'minist', u'die', u'queensland']
[u'prime', u'minist', u'die', u'gold', u'coast']
[u'student', u'death', u'thailand', u'investig']
[u'union', u'confid', u'harvey', u'worker', u'brighter']
[u'unit', u'goalless', u'stalem', u'arsenal']
[u'lobbyist', u'plead', u'guilti', u'corrupt', u'charg']
[u'miner', u'bodi', u'miss']
[u'research', u'look', u'evapor']
[u'reject', u'north', u'korea', u'demand', u'sanction']
[u'stock', u'pick', u'trade']
[u'seek', u'dismiss', u'guantanamo', u'case']
[u'warn', u'iran', u'resum', u'nuclear', u'plan']
[u'vail', u'urg', u'rule', u'chang']
[u'vail', u'visit', u'bushfir', u'ravag', u'june']
[u'locust', u'plagu', u'worsen']
[u'victorian', u'coach', u'rule', u'dissent', u'appeal']
[u'water', u'polic', u'prepar', u'commonwealth', u'game']
[u'waterfest', u'cancel', u'site', u'unsuit']
[u'wild', u'oat', u'win', u'pittwat', u'coff', u'thrill']
[u'window', u'smash', u'wodonga', u'rampag']
[u'wit', u'seek', u'fatal', u'onslow', u'crash']
[u'woolli', u'get', u'ahead', u'conserv', u'local']
[u'slingshot', u'seiz', u'fremantl', u'port']
[u'indonesian', u'captain', u'face', u'jail', u'illeg']
[u'mango', u'appeal', u'tourist']
[u'fear', u'dead', u'landslid']
[u'adelaid', u'domest', u'termin', u'remain', u'limbo']
[u'adelaid', u'unit', u'maintain', u'win', u'streak']
[u'afghan', u'bomb', u'attack', u'kill']
[u'award', u'right', u'seven']
[u'promis', u'protect', u'bali', u'trial', u'hear']
[u'hour', u'servic', u'prove', u'popular']
[u'agassi', u'australian', u'open']
[u'year', u'riverland']
[u'albani', u'record', u'wettest', u'year', u'record']
[u'apart', u'complex', u'plan', u'penguin']
[u'ardrossan', u'wait', u'fund', u'announc']
[u'atlant', u'fish', u'dwindl', u'trawl', u'studi']
[u'aussi', u'sprinter', u'receiv', u'belat', u'bronz']
[u'australia', u'pledg', u'landslid', u'victim']
[u'author', u'consid', u'increas', u'darwin', u'capac']
[u'author', u'approv', u'retract', u'stem', u'cell', u'paper']
[u'cholesterol', u'benefit', u'elder']
[u'bali', u'accus', u'quiz', u'friendship']
[u'take', u'darci', u'hous']
[u'blackdown', u'tableland', u'close']
[u'blue', u'lake', u'pump', u'expans', u'plan', u'hold']
[u'boati', u'seek', u'help', u'kelp']
[u'boom', u'time', u'hopetoun']
[u'bourk', u'readi', u'bumper', u'cotton', u'crop']
[u'kill', u'boat', u'crash']
[u'break', u'hill', u'aim', u'attract', u'film', u'maker']
[u'buchanan', u'junior', u'debut', u'bull']
[u'bullet', u'conquer', u'king', u'hawk', u'edg', u'wildcat']
[u'burn', u'off', u'save', u'hous', u'mayor', u'say']
[u'driver', u'seek', u'protect', u'attack']
[u'bushrang', u'prison', u'close', u'year']
[u'busi', u'lobbi', u'call', u'educ']
[u'safeti', u'upgrad', u'fast', u'track']
[u'caldecott', u'move', u'dakar']
[u'action', u'euthanasia', u'law']
[u'sale', u'record', u'high']
[u'cash', u'comeback', u'short', u'live']
[u'cathol', u'independ', u'school']
[u'channel', u'match', u'nine', u'offer', u'right']
[u'charg', u'expect', u'alleg', u'school', u'arson', u'attack']
[u'charli', u'sheen', u'denis', u'richard', u'agre', u'divorc']
[u'cheney', u'defend', u'domest', u'spi', u'program']
[u'chines', u'accid', u'toll']
[u'chines', u'blizzard', u'forc', u'mass', u'evacu']
[u'christma', u'blitz', u'end', u'sunday', u'polic']
[u'christma', u'bonanza', u'mackay', u'trader']
[u'climat', u'chang', u'refuge', u'plan', u'absurd']
[u'commentari', u'highlight', u'test']
[u'concern', u'rais', u'servic', u'fund']
[u'consol', u'australia']
[u'cook', u'macquari', u'assault', u'link']
[u'council', u'call', u'swim', u'pool']
[u'crew', u'continu', u'fight', u'east', u'coast']
[u'crowd', u'turn', u'summernat']
[u'dead', u'skydiv', u'famili', u'visit', u'crash', u'site']
[u'defenc', u'contract', u'intensifi']
[u'defenc', u'procur']
[u'democrat', u'deregist', u'tasmania']
[u'depor', u'osasuna']
[u'discoveri', u'lead', u'breast', u'cancer', u'treatment']
[u'dokic', u'canberra', u'tournament']
[u'downer', u'call', u'reform', u'prais', u'brazil']
[u'investig', u'hunter', u'valley', u'mine', u'accid']
[u'drink', u'drive', u'law', u'prompt', u'court', u'fund', u'appeal']
[u'spell', u'lead', u'water']
[u'dutch', u'hopman', u'final']
[u'eagl', u'sudden', u'retir']
[u'produc', u'call', u'help']
[u'set', u'strict', u'condit', u'alcoa']
[u'heed', u'disput', u'lesson']
[u'extra', u'polic', u'sail', u'aceh']
[u'farmer', u'encourag', u'rare', u'snake', u'surviv']
[u'fascist', u'sympathis', u'canio', u'promis', u'stop']
[u'fear', u'hundr', u'buri', u'landslid']
[u'feder', u'extend', u'unbeaten', u'middl', u'east']
[u'govt', u'pressur', u'state', u'toughen', u'illeg']
[u'firefight', u'call', u'fund']
[u'firefight', u'continu', u'work', u'stawel', u'blaze']
[u'firefight', u'pray', u'rain']
[u'firefight', u'race', u'time', u'ewingar', u'state']
[u'fishermen', u'fin', u'net', u'destroy']
[u'flood', u'wreak', u'havoc', u'malawi']
[u'leader', u'bodi', u'fli', u'home']
[u'taskforc', u'offic', u'ludicr']
[u'futur', u'look', u'brighter', u'buninyong', u'pool']
[u'compani', u'reject', u'pollut', u'complaint']
[u'gibb', u'lead', u'south', u'african', u'charg']
[u'gibb', u'rain', u'disrupt', u'test']
[u'gibson', u'heartach', u'sidelin', u'stint']
[u'girl', u'assault', u'tamworth', u'depart', u'store']
[u'govt', u'accus', u'listeria', u'outbreak', u'cover']
[u'govt', u'announc', u'alpin', u'clean']
[u'govt', u'grant', u'creat', u'job']
[u'govt', u'rebuff', u'climat', u'refuge', u'propos']
[u'govt', u'refus', u'rule', u'higher', u'hospit', u'fee']
[u'govt', u'reject', u'crime', u'penalti', u'critic']
[u'govt', u'investig', u'mathieson', u'own', u'poki', u'venu']
[u'govt', u'urg', u'farmer', u'trucki', u'scheme']
[u'gower', u'ponder', u'appeal', u'punish']
[u'grain', u'harvest', u'track', u'record', u'yield']
[u'hawk', u'hold', u'wildcat']
[u'hingi', u'march']
[u'hingi', u'get', u'ahead']
[u'hospit', u'staff', u'risk', u'electrocut', u'workcov']
[u'hotel', u'escap', u'censur', u'hepat', u'outbreak']
[u'weather', u'test', u'water', u'electr', u'system']
[u'india', u'call', u'abolit', u'champion', u'trophi']
[u'indonesia', u'condemn', u'critic', u'airport', u'secur']
[u'investig', u'probe', u'boundari', u'bend', u'fire']
[u'iraqi', u'milit', u'extend', u'hostag', u'deadlin']
[u'campaign', u'wast', u'money', u'say']
[u'isra', u'suffer', u'second', u'stroke']
[u'jabiru', u'council', u'chief', u'resign']
[u'japanes', u'defend', u'shrine', u'visit']
[u'japan', u'remain', u'hunter', u'valley', u'biggest', u'coal', u'buyer']
[u'kimberley', u'student', u'excel']
[u'knight', u'team', u'local', u'beer']
[u'labor', u'call', u'pacif', u'climat', u'centr']
[u'lake', u'wendoure', u'water', u'request', u'reject']
[u'lebanon', u'qualifi', u'eas', u'racial', u'tension', u'say']
[u'light', u'crop', u'reduc', u'picker', u'demand', u'riverland']
[u'lindsay', u'lohan', u'admit', u'drug', u'bulimia', u'battl']
[u'charg', u'drug', u'haul']
[u'charg', u'dingi', u'rescu']
[u'resuscit', u'suspect', u'drink', u'spike']
[u'mcgauran', u'address', u'wine', u'grape', u'glut']
[u'mcgrath', u'get', u'reprimand']
[u'mcgrath', u'face', u'match', u'refere']
[u'medic', u'aim', u'save', u'live']
[u'meet', u'plan', u'discuss', u'inskip', u'camp', u'cut']
[u'michael', u'parkinson', u'chat', u'glenn', u'mitchel']
[u'owner', u'attack', u'surviv', u'report']
[u'moroney', u'condemn', u'mental', u'health', u'revolv', u'door']
[u'motorcyclist', u'death', u'take', u'road', u'toll']
[u'motorist', u'urg', u'watch', u'flood']
[u'urg', u'region', u'rebat', u'review']
[u'nadal', u'fresh', u'doubt', u'open']
[u'netherland', u'reach', u'hopman', u'final', u'kiefer', u'pull']
[u'nickel', u'mine', u'affect', u'allegi']
[u'north', u'park', u'look', u'expans']
[u'back', u'gower', u'penalti']
[u'open', u'state', u'forest', u'feral', u'anim', u'hunt']
[u'govt', u'seek', u'protect', u'water']
[u'rule', u'arrest', u'power', u'ranger']
[u'record', u'worst', u'christma', u'road', u'toll']
[u'trade', u'deficit', u'hit', u'record']
[u'opposit', u'deni', u'health', u'polici', u'rift']
[u'passeng', u'approv', u'adelaid', u'tram']
[u'pentagon', u'lose', u'guantanamo', u'suppress', u'case']
[u'perth', u'adelaid', u'rail', u'line', u'reopen']
[u'pittwat', u'coff', u'regatta', u'enter', u'final', u'stage']
[u'polic', u'commend', u'kununurra', u'driver']
[u'polic', u'field', u'call', u'dubbo', u'safeti']
[u'polic', u'hunt', u'pose', u'nurs', u'hospit']
[u'polic', u'hunt', u'suspect', u'booz', u'heist']
[u'polic', u'gerroa', u'drown', u'victim']
[u'polic', u'prais', u'southbound', u'festiv', u'goer']
[u'polic', u'inforc', u'call', u'summernat']
[u'polic', u'seek', u'info', u'munro', u'crash']
[u'polic', u'seek', u'lead', u'cooma', u'shoot']
[u'polic', u'union', u'rais', u'staff', u'concern']
[u'go', u'adelaid']
[u'poor', u'mainten', u'lead', u'portland', u'rescu']
[u'posit', u'outlook', u'injur', u'firefight']
[u'presum', u'final', u'bodi', u'pull', u'rink', u'wreckag']
[u'protea', u'unhappi', u'umpir', u'decis']
[u'protest', u'continu', u'whale', u'resum']
[u'rain', u'aid', u'firefight', u'bulldog', u'creek']
[u'rain', u'boost', u'australia', u'seri', u'hop']
[u'rain', u'delay', u'grain', u'harvest']
[u'rain', u'delay', u'test']
[u'rain', u'fail', u'rais', u'hast', u'wilson', u'river', u'level']
[u'record', u'year', u'prompt', u'govt', u'action', u'professor']
[u'rembrandt', u'paint', u'fake', u'museum']
[u'resid', u'urg', u'heed', u'water', u'restrict']
[u'retail', u'hurt', u'christma', u'spend', u'shortfal']
[u'russia', u'argentina', u'hopman', u'hop', u'aliv']
[u'crash', u'take', u'road', u'toll']
[u'school', u'leaver', u'shun', u'degre']
[u'seven', u'match', u'offer']
[u'seven', u'right']
[u'seven', u'right']
[u'sharon', u'surgeri', u'condit', u'critic']
[u'sharon', u'condit', u'grave', u'surgeri', u'continu']
[u'sharon', u'counterpart', u'hope', u'miracl']
[u'sharon', u'suffer', u'stroke']
[u'sharon', u'undergo', u'emerg', u'surgeri']
[u'sheikh', u'death', u'magic', u'million', u'sale']
[u'south', u'eastern', u'yacht', u'domin', u'sail']
[u'spend', u'level', u'lead', u'debt', u'collect', u'boom']
[u'spur', u'beat', u'citi', u'consolid', u'fourth', u'spot']
[u'stem', u'cell', u'shed', u'light', u'breast', u'cancer']
[u'submiss', u'seek', u'wild', u'river', u'law']
[u'sugar', u'industri', u'welcom', u'trade', u'deal', u'talk']
[u'suicid', u'bomber', u'kill', u'dozen', u'iraq']
[u'sydney', u'melbourn', u'rail', u'line', u'reopen']
[u'syria', u'readi', u'team', u'meet', u'minist']
[u'tait', u'comeback', u'redback']
[u'talk', u'continu', u'rail', u'deal']
[u'opposit', u'campaign', u'amid', u'elect', u'specul']
[u'thousand', u'fin', u'year', u'driver', u'crackdown']
[u'trade', u'settl', u'year', u'surg']
[u'train', u'line', u'remain', u'close', u'derail']
[u'truss', u'stand', u'pilot', u'plan']
[u'turkey', u'diagnos', u'bird', u'case']
[u'turkey', u'record', u'second', u'bird', u'death']
[u'mourn', u'leader', u'death']
[u'uncertainti', u'hotter', u'continu']
[u'prove', u'popular', u'school', u'leaver']
[u'farmer', u'fight', u'sugar', u'chang']
[u'freez', u'iranian', u'asset', u'nuclear', u'concern']
[u'rat', u'predict', u'lift', u'world', u'market']
[u'visitor', u'display', u'entic', u'tourist', u'nation']
[u'warm', u'weather', u'threaten', u'reef']
[u'water', u'project', u'move', u'closer', u'realiti']
[u'weather', u'hit', u'cherri', u'grower']
[u'weddin', u'shire', u'inund', u'green', u'wast']
[u'windarra', u'reopen', u'year']
[u'woman', u'hospitalis', u'hors', u'rid', u'accid']
[u'women', u'lag', u'posit', u'report']
[u'woolworth', u'continu', u'sunday', u'trade']
[u'worker', u'die', u'sydney', u'build', u'site', u'fall']
[u'world', u'longest', u'concert', u'sound', u'second', u'chord']
[u'tenant', u'warn', u'read', u'sign']
[u'xenophobia', u'blame', u'immigr', u'death', u'africa']
[u'indonesian', u'fishermen', u'arrest']
[u'indonesian', u'illeg', u'fishermen', u'jail']
[u'tourist', u'attract', u'open', u'shark']
[u'accc', u'win', u'court', u'case', u'offic', u'suppli', u'scam']
[u'hous', u'market', u'strong', u'despit', u'nation', u'downturn']
[u'stakehold', u'look', u'cash']
[u'agassi', u'begin', u'season', u'jose']
[u'warn', u'hospit', u'doctor', u'shortag']
[u'get', u'tech', u'makeov']
[u'anonym', u'donat', u'boost', u'cancer', u'research']
[u'antarct', u'death', u'probe', u'continu']
[u'defend', u'intern', u'student', u'enrol']
[u'see', u'rise', u'enrol']
[u'applebi', u'upstag', u'hawaii']
[u'artist', u'jean', u'isherwood', u'die']
[u'kill', u'hondura', u'prison', u'clash']
[u'aussi', u'lose', u'langer', u'chase']
[u'australia', u'commit', u'emiss', u'reduct']
[u'australia', u'respons', u'climat', u'chang', u'refuge']
[u'avalanch', u'victim', u'famili', u'prepar', u'final', u'farewel']
[u'backup', u'call', u'fight', u'weddin']
[u'bartoli', u'meet', u'zvonareva', u'auckland', u'final']
[u'beatti', u'urg', u'indigen', u'land', u'ownership']
[u'berdych', u'eas', u'adelaid', u'semi', u'final']
[u'bigger', u'poppi', u'crop', u'plan', u'season']
[u'bligh', u'promis', u'action', u'high', u'holiday', u'road', u'toll']
[u'boati', u'knot', u'kelp', u'glut', u'block', u'ramp']
[u'boro', u'agre', u'schwarzer', u'transfer', u'request']
[u'botha', u'cite', u'throw']
[u'boy', u'hospit', u'near', u'drown', u'accid']
[u'brazilian', u'worker', u'join', u'mackay', u'meatwork']
[u'britain', u'see', u'surg', u'cirrhosi', u'death']
[u'british', u'pet', u'like', u'owner']
[u'bulgaria', u'refus', u'russian', u'price', u'hike']
[u'bushfir', u'victim', u'compo']
[u'bush', u'seek', u'advic', u'iraq', u'polici']
[u'caldecott', u'retain', u'fifth', u'spot', u'dakar', u'ralli']
[u'warn', u'burn', u'permit']
[u'chang', u'status', u'benefit', u'nyngan', u'cropper']
[u'chappel', u'happi', u'indian', u'open']
[u'chemic', u'treat', u'sewerag']
[u'childcar', u'worker', u'rise', u'prompt', u'hike']
[u'coast', u'prepar', u'increas', u'water', u'restrict']
[u'commentari', u'highlight', u'test']
[u'compulsori', u'communiti', u'servic', u'plan', u'get', u'mix']
[u'chip', u'skin', u'enthusiast']
[u'constanc', u'want', u'work', u'condit', u'audit', u'bega']
[u'council', u'forse', u'futur', u'narrabri', u'coal']
[u'councillor', u'okay', u'serv', u'council']
[u'crash', u'lift', u'road', u'toll']
[u'crash', u'survivor', u'recov', u'perth', u'hospit']
[u'dept', u'accus', u'ignor', u'school', u'asbesto', u'problem']
[u'diesel', u'price', u'predict', u'rise']
[u'dorey', u'name', u'aussi', u'squad']
[u'congo', u'world', u'deadliest', u'report']
[u'economist', u'divid', u'hous', u'industri', u'prospect']
[u'elder', u'want', u'extra', u'jail', u'time', u'assault']
[u'employ', u'urg', u'consid', u'school', u'holiday', u'cost']
[u'timores', u'exclud', u'export', u'shipment']
[u'famili', u'face', u'centrelink', u'debt']
[u'jet', u'play', u'draw']
[u'feder', u'set', u'haa', u'semi', u'final', u'qatar']
[u'fisherman', u'sweep', u'death']
[u'foreign', u'student', u'inject', u'univers']
[u'freycinet', u'bushfir', u'control']
[u'funnyman', u'stewart', u'host', u'oscar', u'ceremoni']
[u'gabba', u'match', u'rain']
[u'golden', u'chef', u'collaps', u'leav', u'jobless']
[u'goldfield', u'hall', u'fame', u'welcom', u'chines', u'artisan']
[u'govt', u'accus', u'elect', u'advertis', u'orgi']
[u'govt', u'promis', u'help', u'grape', u'produc']
[u'govt', u'reject', u'blame', u'telstra', u'offic', u'closur']
[u'govt', u'meet', u'industri']
[u'govt', u'vow', u'child', u'safeti', u'worker', u'case', u'load']
[u'grazier', u'defi', u'law', u'gain', u'opposit', u'support']
[u'greenpeac', u'dismiss', u'japanes', u'anti', u'whale']
[u'greenpeac', u'scoff', u'spi', u'claim']
[u'hail', u'storm', u'pelt']
[u'hampshir', u'hayden']
[u'health', u'dept', u'warn', u'mosquito', u'bite', u'danger']
[u'hewitt', u'clijster', u'seed', u'sydney', u'intern']
[u'hewitt', u'suffer', u'shock', u'loss', u'adelaid']
[u'holiday', u'road', u'toll', u'surg', u'past', u'year', u'horror']
[u'home', u'approv', u'rise']
[u'hopman', u'boss', u'give', u'hawk', u'approv']
[u'hrbati', u'go', u'adelaid']
[u'hundr', u'dead', u'fish', u'port', u'river']
[u'hunt', u'trial', u'begin', u'central', u'west']
[u'huski', u'save', u'newborn', u'drown']
[u'indonesia', u'cost', u'bird', u'fight']
[u'indonesia', u'landslid', u'death', u'toll', u'hit']
[u'injur', u'firefight', u'skin', u'graft']
[u'iraq', u'attack', u'kill', u'soldier']
[u'italian', u'hostag', u'yemen', u'free', u'unharm']
[u'japan', u'brace', u'snowfal']
[u'japan', u'harpoon', u'mink', u'whale']
[u'jetstar', u'add', u'perth', u'melbourn', u'rout']
[u'jetstar', u'offer', u'brisban', u'consol', u'sydney']
[u'johannson', u'ask', u'late', u'start', u'sydney']
[u'justic', u'worker', u'number', u'doubl']
[u'king', u'tide', u'warn', u'coast', u'communiti']
[u'surviv', u'member', u'china', u'gang', u'die']
[u'ledger', u'crow', u'run', u'award']
[u'lesli', u'trial', u'judg', u'clear', u'bribe', u'alleg']
[u'lifesav', u'sound', u'warn', u'jellyfish', u'haul']
[u'consid', u'arnhem', u'land', u'flight', u'handov']
[u'magellan', u'lose', u'govt', u'contract']
[u'jail', u'assault', u'wife', u'belt', u'buckl']
[u'match', u'trawl', u'rescu', u'chopper', u'fund']
[u'mayan', u'hieroglyph', u'discov', u'date']
[u'mecca', u'hostel', u'collaps', u'toll', u'rise']
[u'miff', u'canadian', u'pay', u'bank', u'penni', u'time']
[u'milder', u'weather', u'reduc', u'riverland', u'apricot', u'crop']
[u'million', u'african', u'near', u'starvat']
[u'miner', u'work', u'scare']
[u'mine', u'bodi', u'talk', u'benefit', u'wagerup', u'expans']
[u'mine', u'compani', u'confid', u'closur']
[u'minist', u'dismiss', u'attack', u'highway', u'upgrad']
[u'minist', u'sound', u'warn', u'public', u'hous', u'abus']
[u'minist', u'thank', u'firefight', u'effort', u'stawel']
[u'minist', u'urg', u'suspend', u'council', u'plan', u'power']
[u'minnow', u'dream', u'premiership', u'upset']
[u'motorist', u'urg', u'care', u'toll', u'rise']
[u'cull', u'fish', u'dri', u'lake']
[u'educ', u'tourist', u'plant', u'hygien']
[u'want', u'answer', u'futur', u'inskip', u'point', u'camp']
[u'gambier', u'hospit', u'train', u'medic', u'intern']
[u'kilimanjaro', u'landslid', u'kill', u'tourist']
[u'nasa', u'russia', u'soyuz', u'rocket', u'trip']
[u'nation', u'road', u'toll', u'hit']
[u'netherland', u'reach', u'hopman', u'final']
[u'netherland', u'walk', u'hopman', u'final']
[u'ovarian', u'cancer', u'therapi', u'promis']
[u'nieminen', u'adelaid', u'intern']
[u'nitschk', u'condemn', u'law']
[u'chang', u'sharon', u'condit']
[u'hitchhik', u'kill']
[u'govern', u'tell', u'expect', u'wharf', u'delay']
[u'ranger', u'applaud', u'fund', u'propos']
[u'teacher', u'vacanc']
[u'brawl', u'see', u'court']
[u'onesteel', u'dust', u'emiss', u'grow']
[u'opposit', u'attack', u'bendigo', u'prison', u'closur']
[u'palestinian', u'elect', u'offici', u'threaten', u'resign']
[u'palm', u'island', u'need', u'drastic', u'chang']
[u'parap', u'school', u'free', u'asbesto']
[u'park', u'local', u'welcom', u'king']
[u'patel', u'bond', u'bowl', u'zealand', u'victori']
[u'pennetta', u'end', u'hingi']
[u'petrol', u'price', u'drop', u'demand', u'pick']
[u'player', u'chase', u'cash', u'deal']
[u'poker', u'championship', u'kick', u'melbourn']
[u'poker', u'tournament', u'kick', u'melbourn']
[u'polic', u'appeal', u'help', u'girl', u'assault', u'case']
[u'polic', u'patrol', u'fail', u'commission']
[u'polic', u'assist', u'deal', u'mental']
[u'polic', u'bodi', u'miss', u'fisherman']
[u'polic', u'hunt', u'escap', u'prison']
[u'polic', u'investig', u'evan', u'head', u'crime', u'wave']
[u'polic', u'investig', u'fatal', u'boat', u'crash']
[u'polic', u'prais', u'bypass']
[u'polic', u'progress', u'newsag', u'attack', u'case']
[u'polic', u'question', u'teen', u'break']
[u'polic', u'want', u'improv', u'measur', u'stop', u'drink', u'spike']
[u'poll', u'kadima', u'despit', u'sharon', u'absenc']
[u'pont', u'lead', u'aussi', u'charg']
[u'pont', u'make', u'histori', u'aussi', u'clinch', u'victori']
[u'portabl', u'media', u'devic', u'domin', u'tech']
[u'prosecutor', u'recommend', u'glitter', u'child', u'abus', u'trial']
[u'protea', u'focus', u'reveng', u'south', u'africa']
[u'protea', u'hint', u'earli', u'declar']
[u'move', u'thompson']
[u'ravensthorp', u'win', u'condit', u'develop', u'approv']
[u'redfern', u'polic', u'seek', u'owner', u'lose', u'cash']
[u'resid', u'fear', u'misinform', u'tallowa']
[u'resourc', u'stock', u'pull', u'market']
[u'respit', u'care', u'fund', u'provid', u'relief', u'carer']
[u'reward', u'up', u'unsolv', u'murder', u'clue']
[u'rice', u'receiv', u'hambali', u'intellig', u'request']
[u'ricki', u'pont', u'matthew', u'hayden', u'interview']
[u'river', u'gum', u'endang', u'list']
[u'defend', u'nurs', u'recruit', u'campaign']
[u'scaffold', u'death', u'prompt', u'call', u'scrap', u'chang']
[u'scientist', u'discov', u'protein', u'link', u'depress']
[u'search', u'continu', u'miss', u'fisherman']
[u'serena', u'withdraw', u'exhibit', u'match', u'injuri']
[u'sharapova', u'like', u'play', u'australian', u'open']
[u'sharon', u'cling', u'life']
[u'sharon', u'remain', u'coma']
[u'sharon', u'rush', u'surgeri']
[u'sharon', u'undergo', u'brain', u'scan']
[u'sharon', u'unlik', u'lead', u'israel']
[u'aim', u'snag', u'tourist', u'mass']
[u'skin', u'test', u'identifi', u'arteri', u'cholesterol', u'risk']
[u'skoko', u'consid', u'wigan', u'exit']
[u'socceroo', u'postpon', u'lebanon', u'game']
[u'speed', u'restrict', u'place', u'train', u'derail']
[u'state', u'work', u'attract', u'chines', u'tourist']
[u'storm', u'black', u'home']
[u'student', u'success', u'ascrib', u'support', u'network']
[u'studi', u'investig', u'sunflow', u'disord']
[u'summernat', u'rev']
[u'summer', u'rain', u'help', u'rural', u'properti', u'price', u'grow']
[u'support', u'program', u'target', u'disadvantag', u'seeker']
[u'jockey', u'ahead', u'industri', u'action']
[u'teen', u'charg', u'machet', u'attack']
[u'teen', u'charg', u'holiday', u'season', u'rap']
[u'child', u'die', u'turkey', u'bird']
[u'arrest', u'riot']
[u'death', u'push', u'nation', u'road', u'toll']
[u'timber', u'plantat', u'mix', u'environment', u'effect']
[u'toddler', u'death', u'suspici']
[u'train', u'guard', u'stand', u'passeng', u'incid']
[u'trawler', u'ground', u'sand', u'build', u'lake', u'entranc']
[u'treat', u'sewerag', u'flow', u'rous', u'river']
[u'serious', u'injur', u'perth', u'crash']
[u'parti', u'leader', u'admit', u'alcohol', u'problem', u'call', u'vote']
[u'umpir', u'need', u'support', u'sutherland']
[u'uncl', u'tom', u'cabin', u'leas', u'life']
[u'union', u'claim', u'roster', u'put', u'prison', u'worker']
[u'union', u'concern', u'profil', u'offic']
[u'warn', u'relianc', u'oversea', u'student']
[u'disast', u'survivor', u'coma']
[u'satellit', u'spi', u'anti', u'whale', u'ship']
[u'shock', u'japanes', u'woman', u'murder']
[u'terror', u'suspect', u'make', u'court', u'appear']
[u'win', u'hopman', u'final']
[u'venus', u'suffer', u'injuri', u'scare']
[u'vic', u'thriller', u'gabba', u'match', u'abandon']
[u'vline', u'confid', u'fast', u'train', u'timet', u'track']
[u'warmer', u'weather', u'caus', u'lake', u'modewarr', u'kill', u'report']
[u'water', u'shortag', u'unlik', u'harm', u'bowen', u'basin', u'mine']
[u'welfar', u'recipi', u'urg', u'post', u'xmas', u'work']
[u'wind', u'wipe', u'apricot', u'cherri', u'crop']
[u'work', u'halt', u'worker', u'death', u'investig']
[u'world', u'leader', u'express', u'concern', u'sharon']
[u'world', u'market', u'flat', u'record', u'high']
[u'world', u'watch', u'sharon', u'ail']
[u'young', u'labor', u'urg', u'compulsori', u'communiti', u'servic']
[u'zircon', u'open', u'murray', u'malle']
[u'lose', u'power', u'sever', u'storm']
[u'strand', u'nigerian', u'miss', u'hajj']
[u'fear', u'dead', u'attack', u'lankan', u'navi']
[u'arrest', u'drug', u'properti', u'charg', u'dalbi']
[u'rule', u'night', u'grand', u'final']
[u'dismiss', u'union', u'concern']
[u'qaeda', u'zawahiri', u'tell', u'admit', u'iraq', u'defeat']
[u'ami', u'ride', u'attract', u'cyclist']
[u'applebi', u'chase', u'hawaii', u'trick']
[u'applebi', u'grab', u'halfway', u'lead', u'hawaii']
[u'assad', u'refus', u'hariri', u'probe', u'interview', u'diplomat']
[u'bartoli', u'win', u'auckland', u'open']
[u'betfair', u'dismiss', u'report', u'question', u'revenu']
[u'bewar', u'drink', u'spike', u'partygo', u'warn']
[u'breaker', u'victori']
[u'brisban', u'citi', u'street', u'close', u'amid', u'build']
[u'caldecott', u'slip', u'sixth', u'dakar', u'ralli']
[u'call', u'staff', u'emerg', u'dept']
[u'checkpoint', u'attack', u'kill', u'pakistani', u'soldier']
[u'chines', u'courtroom', u'bomb', u'kill']
[u'clijster', u'down', u'davenport', u'exhibit', u'final']
[u'council', u'question', u'nativ', u'veget', u'law', u'exempt']
[u'crew', u'weddin', u'park', u'contain']
[u'cronulla', u'riot', u'accus', u'refus', u'bail']
[u'organis', u'await', u'decis', u'industri', u'action']
[u'cyclist', u'turn', u'ami', u'ride']
[u'davenport', u'down', u'venus', u'aust', u'open', u'warm']
[u'detent', u'centr', u'budget', u'despit', u'build']
[u'driver', u'blame', u'road', u'toll', u'rise']
[u'elder', u'jail', u'assault', u'promis', u'wife']
[u'emili', u'jack', u'popular', u'name', u'babi']
[u'energex', u'storm', u'damag']
[u'environ', u'forum', u'wont', u'undercut', u'kyoto', u'protocol']
[u'militiamen', u'kill', u'indonesian', u'border']
[u'extra', u'resourc', u'otway', u'wake']
[u'feder', u'storm', u'qatar', u'open', u'final']
[u'fountain', u'damag', u'hammer', u'attack']
[u'govern', u'take', u'zimbabw', u'cricket']
[u'govt', u'project', u'betfair', u'return', u'danger', u'high']
[u'grape', u'grower', u'welcom', u'oversuppli', u'summit', u'plan']
[u'grinham', u'win', u'australian', u'open', u'squash', u'titl']
[u'harlequin', u'sign', u'aussi', u'raider', u'gafa']
[u'henri', u'pledg', u'stick', u'arsenal']
[u'hingi', u'face', u'tough', u'encount', u'sydney']
[u'holiday', u'road', u'toll', u'period', u'end', u'death']
[u'hundr', u'farewel', u'leagu', u'legend', u'roger']
[u'expect', u'hand', u'botha', u'report', u'day']
[u'indonesia', u'revis', u'landslid', u'death', u'toll']
[u'injur', u'jayasuriya', u'miss', u'australia', u'tour']
[u'iraq', u'insurg', u'support', u'recruit', u'sydney']
[u'iraq', u'verg', u'civil', u'command']
[u'israel', u'await', u'word', u'sharon', u'condit']
[u'isra', u'ariel', u'sharon', u'remain', u'critic']
[u'jam', u'bond', u'stunt', u'thrill', u'summernat', u'crowd']
[u'japanes', u'cancel', u'aust', u'visit']
[u'jockey', u'disrupt', u'devonport']
[u'kazakh', u'leader', u'anthem']
[u'kean', u'celtic', u'debut']
[u'lake', u'search', u'continu', u'miss']
[u'leagu', u'communiti', u'farewel', u'roger']
[u'main', u'offend', u'refus', u'bail', u'riot']
[u'maliss', u'serra', u'face', u'adelaid', u'final']
[u'appear', u'court', u'cronulla', u'riot']
[u'microsoft', u'issu', u'window', u'earli', u'foil', u'hacker']
[u'mine', u'industri', u'warn', u'maintain', u'safeti', u'standard']
[u'miss', u'boati', u'dead']
[u'motorist', u'death', u'push', u'holiday', u'road', u'toll']
[u'mottram', u'succumb', u'hobart']
[u'mourner', u'farewel', u'gentl', u'roger']
[u'murray', u'river', u'weir', u'open']
[u'iraqi', u'soldier', u'mark', u'armi']
[u'orlean', u'kick', u'post', u'katrina', u'carniv', u'season']
[u'pakistani', u'quak', u'survivor', u'storm', u'chopper']
[u'philippoussi', u'award', u'australian', u'open', u'wildcard']
[u'pier', u'swim', u'lure', u'competitor']
[u'pilgrim', u'hostel', u'collaps', u'death', u'toll', u'rise']
[u'pilgrim', u'hostel', u'collaps', u'toll', u'reach']
[u'polic', u'attack', u'macquari', u'field', u'arrest']
[u'pont', u'rebuk', u'bowler', u'misconduct', u'charg']
[u'return', u'relic', u'puzzl', u'museum', u'expert']
[u'rice', u'cancel', u'australia', u'indonesia', u'trip']
[u'roar', u'conquer', u'hapless', u'glori']
[u'russian', u'shakespear', u'product', u'open', u'sydney']
[u'safarova', u'magic']
[u'safarova', u'secur', u'gold', u'coast', u'titl']
[u'road', u'toll', u'grow']
[u'school', u'urg', u'push', u'attract', u'interst', u'student']
[u'search', u'miss', u'boati', u'suspend']
[u'shark', u'attack', u'kill', u'young', u'woman']
[u'sharon', u'condit', u'improv', u'doctor']
[u'sharon', u'doctor', u'assess', u'surgeri', u'result']
[u'singer', u'rawl', u'die', u'lung', u'cancer']
[u'william', u'bodi', u'fli']
[u'south', u'korean', u'arrest', u'food']
[u'suicid', u'bomb', u'target', u'iraqi', u'polic']
[u'summernat', u'crash', u'injur']
[u'surgeon', u'stop', u'bleed', u'sharon', u'brain']
[u'thousand', u'swim', u'pier']
[u'shoot', u'dead', u'thailand']
[u'tiger', u'trounc', u'bullet']
[u'translat', u'kill', u'gunmen', u'kidnap', u'journalist']
[u'troop', u'snow', u'japanes']
[u'bomb', u'exploit', u'anger', u'survivor']
[u'play', u'student', u'number', u'concern']
[u'suspend', u'pakistani', u'flight']
[u'appeal', u'court', u'uphold', u'martha', u'stewart', u'convict']
[u'navi', u'hand', u'murder', u'suspect']
[u'win', u'hopman', u'final']
[u'whaler', u'warn', u'protest', u'board', u'ship']
[u'look', u'calm', u'turkish', u'bird', u'fear']
[u'applebi', u'stretch', u'lead', u'hawaii']
[u'barca', u'notch', u'straight']
[u'beach', u'close', u'shark', u'hunt', u'continu', u'near']
[u'bigfoot', u'excit', u'build', u'malaysia']
[u'blue', u'chase', u'bull', u'target']
[u'bodi', u'search', u'fisherman']
[u'breaker', u'complet', u'clean', u'sweep', u'spirit']
[u'bushrang', u'post', u'win']
[u'caldecott', u'retain', u'sixth', u'spot', u'dakar', u'ralli']
[u'comatos', u'sharon', u'undergo', u'test']
[u'costello', u'promis', u'famili', u'friend', u'budget']
[u'costello', u'promis', u'relief', u'famili']
[u'crew', u'bushfir', u'central', u'west']
[u'cyclon', u'clare', u'tip', u'strengthen']
[u'delay', u'relinquish', u'hous', u'major', u'leader', u'post']
[u'doctor', u'decid', u'wake', u'critic', u'sharon']
[u'dorey', u'shock', u'australia']
[u'kill', u'philippin', u'board', u'hous']
[u'fatal', u'shark', u'attack', u'investig']
[u'feder', u'defend', u'qatar', u'titl']
[u'feral', u'anim', u'hunter', u'bushwalk', u'risk']
[u'fitzi', u'back', u'hewitt', u'bounc']
[u'fitzi', u'back', u'hewitt', u'rediscov', u'form']
[u'freak', u'wave', u'wash', u'teenag', u'away']
[u'greenpeac', u'boat', u'seaworthi', u'despit', u'collis']
[u'greenpeac', u'continu', u'ocean', u'action', u'whale']
[u'group', u'outrag', u'pulp', u'construct']
[u'heffernan', u'steal', u'victori', u'marin']
[u'hewitt', u'face', u'qualifi', u'sydney']
[u'hingi', u'readi', u'face', u'henin', u'hardenn']
[u'hmas', u'wollongong', u'decommiss']
[u'hotter', u'temp', u'affect', u'croc', u'hatchl']
[u'hussey', u'look', u'forward', u'clash']
[u'indonesia', u'halt', u'mudslid', u'rescu', u'effort']
[u'iraqi', u'milit', u'free', u'french', u'hostag']
[u'israel', u'function', u'despit', u'sharon', u'ill']
[u'jayasuriya', u'rule', u'triangular', u'seri']
[u'jellyfish', u'sting', u'kill', u'year']
[u'kalli', u'miss', u'match']
[u'king', u'domin', u'hawk']
[u'kuznetsova', u'second', u'round', u'sydney']
[u'ljubic', u'play', u'moya', u'chennai', u'final']
[u'major', u'storm', u'warn', u'issu', u'fiji', u'coast']
[u'critic', u'citi', u'stab']
[u'miss', u'boat', u'accid']
[u'mehrten', u'appli', u'south', u'african', u'citizenship']
[u'minnow', u'earn', u'battl', u'draw']
[u'mix', u'seed', u'hobart']
[u'game', u'volunt', u'need', u'pull']
[u'moya', u'reach', u'chennai', u'open', u'final']
[u'mozambiqu', u'flood', u'affect', u'thousand']
[u'mutu', u'doubl', u'fire', u'juventus', u'victori']
[u'bird', u'case', u'confirm', u'turkey']
[u'toxic', u'spill', u'pollut', u'chines', u'waterway']
[u'north', u'korea', u'seek', u'compo', u'prison']
[u'note', u'detail', u'miner', u'hour']
[u'opposit', u'pledg', u'toughen', u'law', u'teenag']
[u'organis', u'defend', u'summernat', u'safeti', u'record']
[u'pakistan', u'disappoint', u'india', u'peac', u'move']
[u'peer', u'win', u'canberra']
[u'polic', u'captur', u'teen', u'prison', u'escape']
[u'polic', u'suspect', u'incid', u'link']
[u'pont', u'retain', u'spot', u'rank']
[u'promis', u'wife', u'attack']
[u'protea', u'consult', u'murali', u'botha', u'action']
[u'race', u'council', u'back', u'bank', u'betfair', u'project']
[u'ranger', u'annihil']
[u'rapper', u'dynamit', u'charg', u'fraca']
[u'regist', u'track', u'victoria', u'danger', u'dog']
[u'rescu', u'crowd', u'beach']
[u'resid', u'continu', u'push', u'braidwood', u'heritag']
[u'roar', u'conquer', u'hapless', u'glori']
[u'schumach', u'threaten', u'quit', u'uncompetit']
[u'scud', u'pull', u'auckland', u'open']
[u'search', u'continu', u'teen', u'wash', u'rock']
[u'search', u'sweep', u'rock', u'call']
[u'serra', u'claim', u'adelaid', u'titl']
[u'serra', u'win', u'adelaid']
[u'shark', u'hunt', u'death']
[u'shark', u'pack', u'blame', u'stradbrok', u'death']
[u'sharon', u'remain', u'critic', u'condit']
[u'singapor', u'stag', u'larg', u'scale', u'mock', u'terror', u'attack']
[u'injur', u'fraser', u'island', u'crash']
[u'lanka', u'notch', u'black', u'cap']
[u'straw', u'urg', u'iraqi', u'accept', u'poll', u'result']
[u'strong', u'earthquak', u'rattl', u'greec']
[u'stunt', u'accid', u'mar', u'summernat']
[u'stunt', u'smash', u'prompt', u'safeti', u'review']
[u'sunday', u'park', u'concert', u'reviv']
[u'swimmer', u'warn', u'shark', u'spot', u'burni']
[u'tajik', u'children', u'home', u'kill']
[u'relief', u'famili', u'overdu', u'swan']
[u'teen', u'stand', u'drink', u'spike', u'claim']
[u'terror', u'threat', u'wors', u'wake', u'iraq', u'rudd']
[u'test', u'sharon', u'make', u'small', u'improv']
[u'shark', u'suspect', u'fatal', u'attack']
[u'doctor', u'applic', u'abort']
[u'film', u'critic', u'vote', u'capot', u'best', u'film']
[u'townsvill', u'strong', u'perth']
[u'turk', u'urg', u'hand', u'poultri']
[u'centrist', u'parti', u'leader', u'kennedi', u'resign']
[u'command', u'haiti', u'dead']
[u'envoy', u'burma', u'resign']
[u'troop', u'raid', u'sunni', u'organis', u'offic']
[u'cyclon', u'alert', u'upgrad']
[u'cyclon', u'alert']
[u'treasur', u'call', u'health', u'reform']
[u'weather', u'help', u'crew', u'bring', u'control']
[u'whaler', u'collid', u'greenpeac', u'vessel']
[u'wildcat', u'post', u'solid', u'home']
[u'winter', u'olymp', u'disappoint', u'dean']
[u'woman', u'kick', u'face', u'bull']
[u'zimbabwean', u'player', u'suspend', u'indefinit', u'strike']
[u'million', u'femal', u'foetus', u'abort', u'india']
[u'accid', u'prompt', u'road', u'upgrad']
[u'accus', u'greenpeac', u'japanes']
[u'accus', u'whale', u'clash']
[u'accus', u'cronulla', u'rioter', u'refus', u'bail']
[u'age', u'care', u'dream', u'realiti']
[u'crew', u'urg', u'watch', u'problem', u'luggag']
[u'airlin', u'hand', u'arnhem', u'land', u'rout']
[u'appeal', u'delay', u'childcar', u'worker', u'rise']
[u'applebi', u'complet', u'hawaii', u'trick']
[u'architect', u'deep', u'opal', u'centr', u'plan']
[u'asian', u'rugbi', u'union', u'deni', u'world', u'legal', u'threat']
[u'australia', u'bird', u'risk', u'unchang', u'expert']
[u'aviat', u'author', u'reissu', u'luggag', u'content']
[u'bati', u'maori', u'leagu', u'intern', u'get', u'green', u'light']
[u'lade', u'order', u'strike', u'israel', u'tape']
[u'bipartisan', u'support', u'radar', u'detector']
[u'bird', u'spread', u'turkey']
[u'botha', u'brace', u'hostil', u'gabba']
[u'braidwood', u'heritag', u'list', u'heat']
[u'broadband', u'surg']
[u'brown', u'urg', u'supervis', u'whaler']
[u'bushfir', u'victim', u'move', u'life']
[u'caldecott', u'dakar', u'penalti']
[u'dubbo', u'host', u'drug', u'driver', u'test', u'trial']
[u'camera', u'offer', u'coonambl', u'secur', u'boost']
[u'carbon', u'dioxid', u'storag', u'trial', u'start']
[u'child', u'protect', u'worker', u'threaten', u'industri', u'action']
[u'cigarett', u'butt', u'blame', u'june', u'blaze']
[u'citi', u'excess', u'water', u'sell', u'mine', u'firm']
[u'claim', u'basslink', u'drain', u'dam']
[u'collaps', u'jogger', u'identifi']
[u'consortium', u'capri', u'hotel']
[u'council', u'consid', u'aero', u'park', u'plan']
[u'councillor', u'expect', u'passag', u'swim']
[u'council', u'support', u'tougher', u'fin', u'water', u'breach']
[u'council', u'consid', u'tougher', u'water', u'ban']
[u'council', u'woolworth', u'stoush', u'continu']
[u'croc', u'final', u'hop', u'fade']
[u'cyclon', u'blow', u'coast']
[u'cyclon', u'clare', u'close']
[u'dampier', u'karratha', u'batten', u'cyclon', u'near']
[u'death', u'spark', u'warn', u'rock', u'fishermen']
[u'defenc', u'payout', u'equip', u'design', u'plagiar']
[u'democrat', u'prais', u'tram']
[u'dfat', u'urg', u'caution', u'jordan', u'travel']
[u'test', u'deepen', u'mozart', u'skull', u'mysteri']
[u'doctor', u'begin', u'wake', u'sharon']
[u'doctor', u'expect', u'emerg', u'servic', u'revamp']
[u'doctor', u'rous', u'sharon', u'coma']
[u'say', u'locust', u'close', u'home', u'spray']
[u'driver', u'ask', u'learn', u'holiday', u'lesson']
[u'drought', u'increas', u'risk', u'rainforest']
[u'drug', u'bigger', u'threat', u'terror', u'karzai']
[u'etsa', u'drop', u'compo', u'claim']
[u'exercis', u'mental', u'health', u'link', u'probe']
[u'militiamen', u'ralli', u'shoot', u'death']
[u'race', u'club', u'offici', u'accus', u'steal', u'thousand']
[u'extra', u'fund', u'rural', u'area']
[u'feder', u'glut']
[u'ferguson', u'bow', u'canberra', u'intern']
[u'probe', u'central', u'coast', u'stoush']
[u'filipino', u'process', u'stamped', u'kill']
[u'firefight', u'practis', u'crane', u'rescu']
[u'sport', u'minist', u'toni', u'bank', u'die']
[u'fossil', u'spark', u'dodo']
[u'friend', u'mourn', u'skydiv', u'crash', u'pilot']
[u'fund', u'help', u'retain', u'medic', u'specialist']
[u'tanker', u'departur', u'delay']
[u'face', u'murder', u'charg']
[u'govt', u'announc', u'west', u'roadwork']
[u'govt', u'push', u'reveal', u'possibl', u'darwin', u'sit']
[u'govt', u'seek', u'summernat', u'safeti', u'report']
[u'govt', u'urg', u'consid', u'extend', u'hunt', u'trial']
[u'greenpeac', u'japanes', u'accus']
[u'green', u'action', u'light', u'rail', u'report']
[u'griffey', u'children', u'mourn', u'slay', u'father']
[u'guccion', u'sydney', u'upset']
[u'hajj', u'festiv', u'creat', u'boon', u'live', u'export']
[u'health', u'review', u'like', u'hear', u'scam', u'claim']
[u'health', u'worker', u'attack', u'elcho']
[u'henin', u'hardenn', u'down', u'hingi', u'straight', u'set']
[u'hewitt', u'battl', u'past', u'spadea']
[u'highway', u'blaze', u'spark', u'safeti', u'warn']
[u'holiday', u'period', u'time', u'problem', u'gambler']
[u'hors', u'concern', u'stop', u'rodeo', u'event']
[u'hundr', u'bolivian']
[u'hunt', u'continu', u'attack']
[u'hybrid', u'taxi', u'trial', u'sydney']
[u'hydro', u'deni', u'basslink', u'drain', u'dam']
[u'ask', u'troop', u'iraq', u'bremer']
[u'indonesian', u'fishermen', u'face', u'court']
[u'indonesia', u'record', u'bird', u'death']
[u'investig', u'begin', u'shark', u'attack']
[u'iranian', u'crash', u'kill']
[u'iran', u'pois', u'resum', u'nuclear', u'research']
[u'dismiss', u'world', u'vote']
[u'israel', u'allow', u'palestinian', u'campaign']
[u'japan', u'cold', u'spell', u'eas']
[u'jockey', u'face', u'inquiri', u'track', u'clash']
[u'jockey', u'face', u'suspens', u'whip', u'attack', u'rival']
[u'jockey', u'spotlight', u'clash']
[u'june', u'rais', u'fund', u'bushfir', u'victim']
[u'kerin', u'want', u'ident', u'volunt', u'firefight']
[u'king', u'reveal', u'robertss', u'replac']
[u'labor', u'attack', u'costello', u'relief', u'time']
[u'late', u'rain', u'help', u'save', u'eyr', u'peninsula', u'harvest']
[u'laundri', u'ownership', u'advantag', u'commiss', u'find']
[u'lawrenc', u'admit', u'bali', u'traffic', u'attempt']
[u'liber', u'loggerhead', u'move', u'communiti']
[u'lifesav', u'sound', u'warn', u'jellyfish', u'death']
[u'lifesav', u'warn', u'swimmer', u'amiti', u'point']
[u'ljubic', u'power', u'past', u'moya', u'chennai', u'open']
[u'lobbi', u'group', u'urg', u'honesti', u'report']
[u'local', u'club', u'broadcast', u'deal']
[u'local', u'govt', u'speak', u'plan', u'build']
[u'passeng', u'number', u'fail', u'deter', u'ozjet']
[u'lyche', u'glut', u'prompt', u'market', u'call']
[u'macquari', u'bank', u'buy', u'smart', u'cart']
[u'await', u'drink', u'spike', u'test', u'result']
[u'drown', u'gatton', u'pool', u'mishap']
[u'market', u'hit', u'high', u'earli', u'trade']
[u'martin', u'look', u'privat', u'sector', u'amid', u'hous']
[u'martyn', u'lead', u'aussi', u'victori']
[u'mayberri', u'secur', u'winter', u'paralymp', u'berth']
[u'mayor', u'promis', u'rate', u'rise', u'cover', u'civic', u'centr']
[u'mayor', u'want', u'drought', u'nation', u'agenda']
[u'mcguigan', u'hop', u'januari', u'grower', u'meet']
[u'mckenzi', u'wallabi', u'race']
[u'mckenzi', u'pull', u'race', u'coach', u'wallabi']
[u'mckenzi', u'pull', u'wallabi', u'race']
[u'medicar', u'cover', u'rural', u'antenat', u'check']
[u'milan', u'second', u'itali']
[u'million', u'mecca', u'hajj']
[u'miner', u'ponder', u'open', u'oper', u'accid']
[u'miss', u'fisherman', u'bodi']
[u'monsanto', u'post', u'record', u'profit']
[u'mother', u'plead', u'thiev', u'return', u'babi', u'photo']
[u'motorcyclist', u'die', u'central', u'coast', u'crash']
[u'maintain', u'fight', u'save', u'learn', u'centr']
[u'murray', u'second', u'round', u'auckland']
[u'museum', u'loan', u'phar', u'lap', u'heart']
[u'nation', u'park', u'blaze', u'control']
[u'chapter', u'librari', u'futur', u'begin']
[u'locust', u'threat', u'emerg']
[u'partnership', u'better', u'kyoto', u'macfarlan']
[u'rule', u'shorten', u'men', u'doubl', u'match']
[u'newspap']
[u'nightmar', u'celtic', u'debut', u'kean']
[u'target', u'expect', u'climat', u'chang', u'confer']
[u'warn', u'summernat', u'crash']
[u'water', u'shortag', u'predict', u'ravensthorp']
[u'hospit', u'mistak', u'report', u'rise']
[u'oconnor', u'airlin', u'port', u'augusta']
[u'offici', u'forecast', u'cyclon']
[u'organ', u'donor', u'number', u'fall']
[u'organis', u'hail', u'record', u'ironman', u'field']
[u'osasuna', u'drop', u'point', u'real', u'lose', u'grind']
[u'otway', u'resid', u'warn', u'threat']
[u'pair', u'arrest', u'gunshot']
[u'parent', u'summernat', u'organis', u'blame']
[u'phar', u'lap', u'heart', u'special', u'loan']
[u'polic', u'reduc', u'violent', u'crime']
[u'polic', u'fatal', u'chase', u'offic']
[u'polic', u'begin', u'underag', u'drink', u'campaign']
[u'polic', u'campaign', u'net', u'driver', u'tripl', u'legal']
[u'polic', u'chief', u'highlight', u'work', u'great', u'southern']
[u'polic', u'hunt', u'servic', u'station', u'knife', u'bandit']
[u'polic', u'charg', u'drug', u'oper']
[u'polic', u'probe', u'palm', u'hous', u'blaze']
[u'polic', u'investig', u'fatal', u'crash']
[u'polic', u'urg', u'stop', u'famili', u'feud']
[u'poppi', u'crop', u'prospect', u'good']
[u'pratt', u'beat', u'round', u'hobart', u'intern']
[u'probe', u'continu', u'cafe', u'blaze']
[u'probe', u'continu', u'takeaway', u'shop', u'blaze']
[u'probe', u'continu', u'wangaratta', u'blaze']
[u'public', u'ask', u'remain', u'vigil']
[u'public', u'tell', u'cane', u'toad', u'threat']
[u'public', u'urg', u'avoid', u'fraud', u'scheme']
[u'public', u'urg', u'remain', u'bushfir', u'readi']
[u'cabinet', u'mull', u'prosecut', u'chang']
[u'meat', u'fund', u'link', u'diet', u'advic']
[u'reef', u'angler', u'urg', u'zone']
[u'resid', u'evacu', u'cyclon', u'near']
[u'resourc', u'stock', u'shine']
[u'retail', u'trade', u'fall', u'novemb']
[u'rspca', u'swamp', u'cat']
[u'safarova', u'aust', u'open', u'doubt', u'canberra', u'pull']
[u'salvat', u'armi', u'urg', u'cut', u'incom']
[u'salvo', u'incom', u'relief']
[u'scan', u'determin', u'jackson', u'play']
[u'scoresbi', u'freeway', u'fund', u'short', u'chang']
[u'search', u'find', u'miss', u'swimmer', u'safe']
[u'search', u'resum', u'miss']
[u'search', u'resum', u'miss']
[u'serena', u'safin', u'doubt', u'open']
[u'shark', u'attack', u'prompt', u'beach', u'safeti', u'upgrad']
[u'shark', u'patrol', u'rue', u'fund', u'shortfal']
[u'sharon', u'breath', u'doctor']
[u'shelter', u'struggl', u'number']
[u'shire', u'back', u'work', u'boost']
[u'canyon', u'safe']
[u'canyon', u'miss', u'blue', u'mountain']
[u'sloan', u'look', u'oversea', u'tasmania']
[u'lankan', u'presid', u'warn', u'rebel']
[u'state', u'band', u'marin', u'park', u'plan']
[u'storm', u'leav', u'resid', u'dark']
[u'suicid', u'bomber', u'kill', u'iraqi', u'ministri', u'polic']
[u'swim', u'patrol', u'beach', u'lifesav', u'warn']
[u'takeov', u'boost', u'hop', u'abattoir']
[u'talk', u'illog', u'north', u'korea']
[u'tamworth', u'artist', u'leav', u'long', u'legaci']
[u'teen', u'critic', u'bike', u'accid']
[u'teen', u'die', u'polic', u'pursuit']
[u'test', u'discard', u'farhat', u'hit', u'centuri', u'india']
[u'driver', u'catch', u'speed']
[u'titan', u'pledg', u'squeaki', u'clean', u'squad']
[u'titan', u'ensur', u'player', u'follow', u'code', u'conduct']
[u'seed', u'hobart', u'intern']
[u'tomato', u'honour']
[u'traffic', u'divers', u'prompt', u'warn', u'driver']
[u'tree', u'platform', u'target', u'log', u'oper']
[u'injur', u'knife', u'attack']
[u'union', u'reject', u'pacif', u'highway', u'toll', u'charg']
[u'drop', u'charg', u'afghan', u'jail', u'death']
[u'vice', u'presid', u'take', u'hospit']
[u'jail', u'indonesian', u'fishermen']
[u'radar', u'detector']
[u'wheat', u'export', u'applic', u'reject']
[u'wild', u'take', u'pittwat', u'coff', u'handicap', u'honour']
[u'woman', u'hurt', u'riverland']
[u'woman', u'surviv', u'horror', u'crash']
[u'workcov', u'cross', u'border', u'streamlin']
[u'worksaf', u'probe', u'electrocut']
[u'zarqawi', u'denounc', u'arab', u'state']
[u'aborigin', u'communiti', u'look', u'boost', u'illeg']
[u'aerial', u'shark', u'patrol', u'south']
[u'afghan', u'deploy', u'aid', u'anti', u'terror', u'effort']
[u'introduc', u'champion', u'leagu']
[u'airlin', u'take', u'cautious', u'approach', u'expans']
[u'seek', u'probe', u'fatal', u'hospit', u'mistak']
[u'ambul', u'crisi', u'union']
[u'applebi', u'rank', u'surg']
[u'arcadia', u'log', u'plan', u'reject']
[u'aussi', u'luczak', u'shock', u'maliss', u'sydney']
[u'aust', u'miner', u'face', u'record', u'fine', u'philippin']
[u'australian', u'caldecott', u'kill', u'dakar', u'ralli']
[u'australian', u'caldecott', u'kill', u'compet']
[u'australia', u'send', u'troop', u'afghanistan']
[u'aust', u'send', u'troop', u'afghanistan']
[u'blue', u'book', u'final', u'vic']
[u'blue', u'trounc', u'tiger', u'encount']
[u'boar', u'catch', u'snooz', u'bavarian', u'bedroom']
[u'breast', u'cancer', u'survivor', u'fatigu', u'studi']
[u'break', u'hill', u'act', u'cancer', u'rate']
[u'bushfir', u'prompt', u'backyard', u'burn', u'warn']
[u'bushfir', u'arson', u'link', u'hard', u'determin']
[u'help', u'unemploy', u'boost', u'prospect']
[u'busi', u'mackay', u'airport']
[u'busi', u'time', u'rescu', u'chopper']
[u'cabooltur', u'emerg', u'ward', u'close', u'colleg']
[u'caldecott', u'famili', u'begin', u'griev', u'process']
[u'caldecott', u'famili', u'begin', u'griev', u'process']
[u'real', u'estat', u'agent', u'understand']
[u'capri', u'plaza', u'revamp']
[u'schedul', u'lone', u'intern']
[u'clijster', u'cruis', u'round']
[u'commonwealth', u'ask', u'forget', u'meatwork', u'debt']
[u'communiti', u'gather', u'discuss', u'support']
[u'coron', u'call', u'crane', u'recal']
[u'council', u'fear', u'impact', u'airlin', u'hand']
[u'council', u'honour', u'chief']
[u'councillor', u'defend', u'plan', u'quit']
[u'councillor', u'power', u'develop', u'decis']
[u'council', u'monitor', u'beach', u'follow', u'fatal', u'shark', u'attack']
[u'crayba', u'hobart']
[u'crew', u'swamp']
[u'croc', u'park', u'plan', u'return', u'clarif']
[u'cyclon', u'clare', u'storm', u'ashor', u'western']
[u'cyclon', u'clare', u'move', u'inland']
[u'cyclon', u'clare', u'slam', u'north', u'west']
[u'danger', u'beach', u'condit', u'continu']
[u'darwin', u'farm', u'aim', u'plate', u'size', u'barra']
[u'death', u'spark', u'shark', u'hunt', u'team']
[u'dept', u'awar', u'mental', u'health', u'servic', u'gap']
[u'despotovski', u'confid', u'face', u'adelaid']
[u'develop', u'board', u'defend', u'busi', u'class', u'flight']
[u'devin', u'cite', u'fin', u'knight', u'marin', u'brawl']
[u'issu', u'concern', u'hill']
[u'doctor', u'shortag', u'wont', u'endang', u'patient']
[u'jone', u'top', u'mark']
[u'driver', u'remind', u'speed', u'chang']
[u'etsa', u'announc', u'energi', u'asset']
[u'farmer', u'question', u'memori', u'motiv']
[u'farmer', u'urg', u'look', u'live']
[u'fatal', u'chase', u'driver', u'refus', u'bail']
[u'feder', u'play', u'injuri', u'concern']
[u'feder', u'readi', u'peak', u'open']
[u'firefight', u'solv', u'fishi', u'problem']
[u'firemen', u'parti', u'go', u'smoke']
[u'flame', u'mous', u'burn', u'hous']
[u'flood', u'warn', u'follow', u'cyclon', u'clare']
[u'footbal', u'club', u'face', u'uncertain', u'futur']
[u'german', u'cannib', u'seek', u'stop', u'film']
[u'goat', u'thrive', u'drought', u'parch']
[u'gonzalez', u'make', u'strong', u'start', u'auckland', u'open']
[u'goondiwindi', u'sport', u'centr', u'open']
[u'goovigen', u'driest', u'shire']
[u'govt', u'fund', u'boost', u'film', u'illawarra']
[u'govt', u'tender', u'stadium']
[u'govt', u'urg', u'chang', u'oversea', u'doctor', u'rule']
[u'govt', u'warn', u'whale', u'surveil']
[u'grant', u'reward', u'rural', u'doctor', u'skill']
[u'greenpeac', u'doubt', u'climat', u'talk', u'produc']
[u'hagan', u'happi', u'injur', u'john', u'progress']
[u'hear', u'guantanamo', u'detaine']
[u'helitac', u'perth', u'bushfir', u'fight']
[u'higher', u'lead', u'level', u'produc', u'sweeter', u'mangrov', u'fruit']
[u'hiker', u'safe', u'mount', u'barney']
[u'hospit', u'secur', u'healthcar', u'council', u'accredit']
[u'weather', u'blame', u'cattl', u'price', u'drop']
[u'indigen', u'artist', u'leav', u'distinct', u'legaci']
[u'interlop', u'galaxi', u'caus', u'milki', u'way', u'warp']
[u'iran', u'unseal', u'nuclear', u'research', u'centr']
[u'iraq', u'cost', u'trillion']
[u'iraq', u'withdraw', u'date', u'imposs', u'hill']
[u'isra', u'sharon', u'move', u'leav']
[u'israel', u'say', u'palestinian', u'vote', u'jerusalem']
[u'jackson', u'return']
[u'jail', u'term', u'send', u'warn', u'indonesian', u'fishermen']
[u'japan', u'consid', u'polic', u'protect', u'whaler']
[u'japanes', u'supermarket', u'fund', u'devil', u'research']
[u'japanes', u'troop', u'join', u'snow', u'clear', u'effort']
[u'complianc', u'pleas']
[u'jetstar', u'add', u'extra', u'avalon', u'flight']
[u'kenyan', u'ranger', u'slay', u'killer', u'eleph']
[u'labor', u'back', u'increas', u'afghanistan', u'troop', u'number']
[u'levi', u'beef', u'cattl', u'market']
[u'lightn', u'strike', u'affect', u'power', u'worker']
[u'lismor', u'warn', u'flash', u'flood', u'risk']
[u'local', u'skier', u'secur', u'winter', u'paralymp', u'game', u'spot']
[u'lone', u'planet', u'ink', u'chines', u'guidebook', u'deal']
[u'longreach', u'featur', u'maker', u'campaign']
[u'expect', u'continu', u'rain', u'north', u'coast']
[u'accus', u'campground', u'murder', u'remand']
[u'burn', u'hous', u'blaze']
[u'die', u'rainforest', u'tower', u'fall']
[u'plead', u'guilti', u'rape', u'charg']
[u'marin', u'plan', u'recommend', u'greater', u'protect']
[u'marion', u'desalin', u'plant']
[u'martyn', u'lead', u'aussi', u'victori']
[u'martyn', u'give', u'test', u'recal']
[u'mauresmo', u'exit', u'belgian', u'advanc']
[u'mauresmo', u'lead', u'seed', u'exit', u'sydney']
[u'mayor', u'play', u'charlevill', u'feud']
[u'medina', u'garrigu', u'advanc', u'canberra', u'heat']
[u'meet', u'consid', u'marin', u'plan', u'impact']
[u'mental', u'health', u'servic', u'need', u'better', u'coordin']
[u'microscop', u'allow', u'delic', u'plastic', u'surgeri']
[u'migrant', u'flock', u'sector', u'studi']
[u'minist', u'deni', u'darwin', u'shortag']
[u'minist', u'dismiss', u'tuckey', u'plan', u'wheat', u'veto']
[u'monaro', u'highway', u'control']
[u'troop', u'afghanistan']
[u'visitor', u'outback']
[u'user', u'compli', u'law']
[u'concern', u'wast', u'dump', u'hear', u'date']
[u'join', u'graze', u'protest']
[u'want', u'relianc', u'rail', u'freight']
[u'murdoch', u'appeal', u'murder', u'convict']
[u'murray', u'water', u'hold', u'upstream']
[u'nadal', u'pull', u'australian', u'open']
[u'retir', u'villag', u'plan', u'dubbo']
[u'korean', u'leader', u'china', u'secret', u'visit']
[u'nomin', u'open', u'gladston', u'council', u'elect']
[u'need', u'extra', u'retail', u'hour', u'union']
[u'polic', u'number', u'audit', u'hold']
[u'beach', u'protect', u'debat', u'rag']
[u'govt', u'urg', u'accept', u'highway', u'offer']
[u'opposit', u'call', u'cane', u'toad', u'muster']
[u'nucifora', u'snub', u'wallabi']
[u'club', u'happi', u'phar', u'lap', u'heart']
[u'tedi', u'creat', u'acid', u'problem']
[u'trip', u'black', u'hole', u'take', u'year']
[u'palestinian', u'reject', u'jerusalem', u'campaign']
[u'paper', u'name', u'journalist', u'abduct', u'baghdad']
[u'park', u'entri', u'rise', u'defend']
[u'phantom', u'captur', u'broadway', u'record']
[u'pilbara', u'death', u'investig']
[u'pinochet', u'grant', u'bail']
[u'pirat', u'manag', u'team', u'quit']
[u'placer', u'dome', u'takeov', u'prompt', u'strike']
[u'polic', u'chief', u'consid', u'atv', u'region', u'polic']
[u'polic', u'hunt', u'wield', u'servic', u'station', u'thief']
[u'polic', u'pursuit', u'death', u'grow', u'problem']
[u'polic', u'seek', u'help', u'catch', u'arm', u'bandit']
[u'polic', u'seek', u'inform', u'murder']
[u'poppi', u'grower', u'resurg']
[u'premier', u'urg', u'wiluna', u'sanit', u'woe']
[u'privat', u'firm', u'secur', u'tour', u'book', u'contract']
[u'probe', u'prove', u'stem', u'cell', u'research', u'fake']
[u'produc', u'urg', u'boost', u'premium', u'wine', u'export']
[u'profit', u'take', u'hit', u'share', u'market']
[u'protea', u'eas', u'victori', u'bull']
[u'public', u'urg', u'readi']
[u'public', u'urg', u'help', u'victim']
[u'fruit', u'grower', u'defi', u'kill', u'bat']
[u'rain', u'lift', u'level']
[u'ralli', u'world', u'pay', u'tribut', u'caldecott']
[u'repair', u'begin', u'cyclon', u'move', u'inland']
[u'research', u'antarct', u'oper']
[u'research', u'focus', u'higher', u'crash', u'rate']
[u'resid', u'concern', u'youth', u'homeless', u'plan']
[u'back', u'memori', u'plan']
[u'rudd', u'call', u'feder', u'govt', u'cambodia']
[u'ecstasi', u'law', u'tough', u'holloway']
[u'revis', u'road', u'toll']
[u'second', u'sewag', u'spill', u'keep', u'beach', u'close']
[u'seed', u'crash', u'sydney', u'intern']
[u'servic', u'farewel', u'shark', u'attack', u'victim']
[u'shark', u'attack', u'prompt', u'steel', u'mesh', u'plan']
[u'shark', u'scare', u'bruni', u'island']
[u'shelter', u'call', u'transit', u'hous']
[u'month', u'add', u'paedophil', u'jail', u'term']
[u'south', u'coast', u'hop', u'cash', u'dive', u'tourism']
[u'space', u'blanket', u'aid', u'bushwalk', u'rescu']
[u'spain', u'arrest', u'milit', u'suspect', u'report']
[u'lankan', u'keen', u'avoid', u'word']
[u'star', u'stud', u'field', u'confirm', u'johnni', u'walker']
[u'stawel', u'plan', u'bushfir', u'recoveri']
[u'storm', u'pressur', u'ergon', u'worker']
[u'sunni', u'criticis', u'raid', u'mosqu']
[u'support', u'grow', u'jone', u'coach', u'red']
[u'suprem', u'court', u'nomine', u'hear', u'begin']
[u'swimmer', u'safeti', u'remind']
[u'taipan', u'burgess', u'cite']
[u'face', u'rural', u'doctor', u'shortag']
[u'teen', u'accus', u'start', u'riot', u'refus', u'bail']
[u'telstra', u'work', u'cyclon', u'damag']
[u'see', u'escape', u'catch', u'canberra']
[u'tourist', u'safeti', u'agenda']
[u'town', u'await', u'poki', u'decis']
[u'townsvill', u'hospit', u'take', u'intern']
[u'town', u'urg', u'facilit', u'mental', u'health', u'servic']
[u'trade', u'deficit', u'blow']
[u'trade', u'deficit', u'highlight', u'export', u'issu', u'rudd']
[u'travel', u'accus', u'import', u'opium']
[u'treasuri', u'document', u'rekindl', u'gerard', u'appoint']
[u'tsunami', u'relief', u'draw', u'murali', u'australia']
[u'expos', u'generat']
[u'fin', u'polic', u'magazin', u'scam']
[u'ukrain', u'govern', u'defend', u'russia', u'deal']
[u'umaga', u'announc', u'intern', u'retir']
[u'union', u'blame', u'govt', u'lack', u'timor']
[u'unit', u'gut', u'spate', u'fire']
[u'critic', u'honour', u'brokeback', u'mountain']
[u'closer', u'appoint', u'aust', u'ambassador']
[u'vandal', u'target', u'memori']
[u'assess', u'cyclon', u'damag']
[u'record', u'second', u'biggest', u'grain', u'harvest']
[u'warrior', u'humbl', u'redback']
[u'water', u'ban', u'restrict', u'oakey', u'creek', u'flow']
[u'werri', u'creek', u'resid', u'face', u'water', u'restrict']
[u'weather', u'hamper', u'search', u'bushwalk']
[u'wide', u'tuesday', u'januari']
[u'winton', u'water', u'flow']
[u'workplac', u'death', u'investig']
[u'accus', u'killer', u'hold', u'mental', u'institut']
[u'action', u'urg', u'alleg', u'jail', u'offici']
[u'respons', u'shark', u'patrol']
[u'urg', u'boost', u'recruit', u'effort']
[u'aftershock', u'shake', u'pakistan']
[u'appeal', u'launch', u'decis', u'overturn']
[u'arm', u'flow', u'darfur', u'despit', u'embargo']
[u'aust', u'polic', u'hurt', u'egypt', u'crash']
[u'australia', u'host', u'histor', u'nation', u'climat', u'summit']
[u'author', u'investig', u'lake', u'bolac', u'kill']
[u'award', u'shoot', u'charg', u'withdraw']
[u'bail', u'refus', u'pair', u'accus', u'kidnap']
[u'bird', u'test', u'monitor', u'mutat']
[u'blair', u'admit', u'smack', u'children']
[u'blaze', u'rip', u'marin', u'firm']
[u'blaze', u'wont', u'stop', u'school', u'oper']
[u'boardwalk', u'reopen']
[u'braidwood', u'decis', u'week']
[u'briton', u'charg', u'jazeera', u'bomb', u'leak']
[u'bushrang', u'dismiss', u'lanka']
[u'bush', u'urg', u'bipartisan', u'support', u'troop']
[u'caldecott', u'death', u'leav', u'communiti', u'reel']
[u'educ', u'packag', u'explain']
[u'review', u'rise', u'birth', u'complic']
[u'cane', u'farmer', u'welcom', u'weather']
[u'carv', u'vandal', u'racial', u'motiv']
[u'cattlemen', u'tell', u'leav', u'alpin', u'nation', u'park']
[u'cheaper', u'fuel', u'give', u'gold', u'coast', u'tourism', u'edg', u'racq']
[u'child', u'egypt', u'crash', u'victim']
[u'children', u'hurt', u'dampier', u'hous', u'blaze']
[u'china', u'bird', u'toll', u'rise']
[u'china', u'trade', u'surplus', u'tripl']
[u'citrus', u'grower', u'ask', u'check', u'pump']
[u'clijster', u'open', u'campaign', u'disarray']
[u'climat', u'talk', u'promot', u'cleaner', u'coal']
[u'cobb', u'icon', u'featur', u'tourism', u'plan']
[u'cockatoo', u'habitat', u'remain', u'subdivis', u'refus']
[u'communiti', u'outrag', u'shelv', u'mental', u'health', u'facil']
[u'condit', u'right', u'potenti', u'monsoon']
[u'consum', u'confid', u'rise']
[u'cotton', u'grower', u'tell', u'possibl', u'product', u'boost']
[u'cough', u'medicin', u'dont', u'work', u'doctor']
[u'council', u'dismiss', u'shark', u'talk']
[u'council', u'seek', u'charg', u'zone', u'breach']
[u'cyclon', u'spin', u'rain', u'disappoint']
[u'deleg', u'discuss', u'climat', u'chang']
[u'piero', u'trick', u'juve', u'sweep', u'quarter']
[u'democrat', u'plan', u'dust', u'legisl']
[u'deploy', u'strain', u'defenc', u'forc', u'analyst']
[u'despotovski', u'adelaid', u'clash']
[u'detain', u'film', u'maker', u'sue', u'york', u'citi']
[u'diver', u'check', u'channel', u'crash']
[u'diver', u'search', u'sink', u'car', u'driver']
[u'doubt', u'cast', u'skipper', u'navi', u'claim']
[u'downer', u'condemn', u'iran', u'nuclear', u'program']
[u'work', u'fight', u'sorghum', u'pest']
[u'driver', u'improv', u'holiday', u'behaviour']
[u'drown', u'death', u'trigger', u'water', u'warn']
[u'east', u'timor', u'defend', u'shoot', u'death']
[u'egypt', u'crash', u'kill', u'australian']
[u'emerald', u'cabooltur', u'hospit', u'plan', u'reveal']
[u'emerald', u'obstetr', u'servic', u'close']
[u'exhibit', u'display', u'burn', u'issu']
[u'factori', u'closur', u'leav', u'jobless']
[u'farmer', u'hoard', u'scrap', u'metal']
[u'farm', u'group', u'chief', u'tour', u'bushfir', u'region']
[u'faulti', u'mower', u'blame', u'timmer']
[u'fear', u'doctor', u'hospit']
[u'fear', u'owner', u'put', u'heat', u'anim']
[u'feder', u'kick', u'start', u'kooyong']
[u'submiss', u'receiv', u'lake', u'wendoure', u'plan']
[u'figur', u'highlight', u'long', u'vacant', u'mental', u'health', u'job']
[u'firefight', u'monitor', u'expect', u'weather', u'chang']
[u'foreign', u'student', u'face', u'bank', u'fraud', u'charg']
[u'free', u'breath', u'test', u'curb', u'drink', u'drive']
[u'german', u'watchdog', u'warn', u'world', u'venu', u'unsaf']
[u'gold', u'price', u'rise', u'help', u'borderlin', u'project']
[u'govt', u'attack', u'plan', u'shift', u'antarct', u'oper']
[u'govt', u'pressur', u'reveal', u'region', u'mental', u'health']
[u'grain', u'compani', u'disput', u'court']
[u'haa', u'upset', u'feder', u'kooyong', u'open']
[u'henri', u'split', u'coach']
[u'hervey', u'await', u'water', u'treatment', u'plant']
[u'hewitt', u'quarter', u'final', u'sydney']
[u'hewitt', u'lead', u'aussi', u'charg', u'sydney']
[u'high', u'demand', u'forc', u'irrig', u'restrict']
[u'high', u'rise', u'plan', u'accus', u'rehash']
[u'highway', u'toll', u'talk', u'anger', u'trucki']
[u'hospit', u'clinic', u'wait', u'time']
[u'hospit', u'take', u'british', u'doctor']
[u'hydro', u'sale', u'plan', u'draw', u'mix', u'reaction']
[u'illawarra', u'drought', u'condit', u'stabilis']
[u'indonesian', u'crew', u'detain', u'high', u'sea', u'drama']
[u'injur', u'clijster', u'withdraw', u'sydney']
[u'injur', u'elder', u'rob', u'knife', u'point']
[u'iran', u'break', u'nuclear', u'seal']
[u'iran', u'test', u'nuclear', u'watchdog', u'patienc']
[u'italian', u'guilt', u'food']
[u'vacanc', u'slump']
[u'jockey', u'charg', u'whip', u'incid']
[u'kaiser', u'chief', u'blunt', u'lead', u'brit', u'award', u'nomin']
[u'lawyer', u'sceptic', u'guantanamo', u'trial', u'resum']
[u'lennon', u'deni', u'improprieti', u'casino', u'stay']
[u'letter', u'claim', u'health', u'staff', u'transfer']
[u'levi', u'unveil', u'ipod', u'jean', u'amid', u'appl', u'boom']
[u'lightn', u'strike', u'start', u'forb']
[u'local', u'crew', u'resum', u'control']
[u'local', u'tell', u'cover', u'mozzi', u'number']
[u'luczak', u'sydney', u'intern']
[u'jail', u'hotel', u'brawl']
[u'kill', u'dive', u'accid']
[u'market', u'continu', u'break', u'record']
[u'mayor', u'push', u'drought']
[u'mexico', u'ask', u'montezuma', u'headdress']
[u'milit', u'tell', u'blunder', u'kidnap', u'australian']
[u'miner', u'begin', u'truck', u'iron']
[u'miner', u'prepar', u'gold', u'product']
[u'miner', u'beat', u'cross', u'border', u'uranium', u'prospect']
[u'minist', u'meet', u'local', u'town', u'divid']
[u'boati', u'follow', u'life', u'jacket', u'law']
[u'mozambiqu', u'cyclon', u'alert', u'amid', u'flood']
[u'seek', u'protect', u'emerg', u'worker']
[u'urg', u'polic', u'scott', u'head']
[u'want', u'riverina', u'firefight', u'fund', u'boost']
[u'mulan', u'receiv', u'bowser', u'govt', u'deal']
[u'murder', u'suspect', u'sight', u'dubbo']
[u'murdoch', u'question', u'lee', u'testimoni']
[u'nation', u'secur', u'hostag', u'releas']
[u'nation', u'oppos', u'highway', u'toll']
[u'nativ', u'tree', u'endur', u'extrem', u'heat']
[u'safeti', u'measur', u'unveil']
[u'alcohol', u'plan', u'palm']
[u'north', u'coast', u'flood', u'threat', u'eas']
[u'north', u'coast', u'swimmer', u'safeti', u'remind']
[u'nrma', u'queri', u'lengthi', u'highway', u'tender', u'review']
[u'prepar', u'flood', u'wake', u'cyclon']
[u'forc', u'monitor', u'whale', u'protest']
[u'pakistan', u'stronger', u'say', u'tendulkar']
[u'pedestrian', u'die', u'bundaberg', u'mishap']
[u'peopl', u'choic', u'star', u'war']
[u'peru', u'ban', u'presid', u'elect']
[u'peterhansel', u'boost', u'dakar', u'lead', u'rider', u'mourn']
[u'brother', u'entangl', u'tree', u'disput']
[u'polic', u'radio', u'upgrad', u'pledg']
[u'polic', u'charg', u'accus', u'touch', u'teen']
[u'polic', u'fear', u'miss', u'mackay']
[u'polic', u'hail', u'boy', u'action', u'save']
[u'polic', u'thwart', u'road']
[u'polic', u'probe', u'councillor', u'assault', u'claim']
[u'polic', u'probe', u'dump', u'document']
[u'polic', u'seek', u'backyard', u'drug', u'off']
[u'polic', u'boost', u'meninde', u'lake', u'patrol']
[u'polic', u'scale', u'cronulla', u'patrol']
[u'polic', u'crash', u'victim']
[u'pool', u'problem', u'fix']
[u'portsmouth', u'readi', u'schwarzer']
[u'pregnant', u'woman', u'disappear', u'unusu']
[u'prehistor', u'like', u'slick', u'hair']
[u'premier', u'farmer', u'hold', u'crisi', u'talk']
[u'premier', u'give', u'suit', u'deal', u'day', u'betfair']
[u'prison', u'escap', u'shower', u'recess', u'court', u'hear']
[u'project', u'focus']
[u'public', u'prais', u'water', u'save', u'effort']
[u'public', u'urg', u'drug', u'dealer']
[u'public', u'warn', u'blue', u'green', u'alga']
[u'pulsat', u'magic', u'million', u'favourit']
[u'council', u'adopt', u'code', u'conduct']
[u'releas', u'report', u'support', u'urg']
[u'report', u'highlight', u'lower', u'western', u'life', u'expect']
[u'riot', u'polic', u'head', u'dubbo']
[u'rural', u'properti', u'price', u'boom']
[u'safin', u'join', u'open', u'casualti', u'list']
[u'schoolmat', u'learn', u'switch', u'birth']
[u'school', u'vandal', u'photocopi', u'face', u'polic']
[u'schu', u'join', u'toyota', u'agent']
[u'scientist', u'condemn', u'antarct', u'divis']
[u'season', u'chang', u'cost', u'cherri', u'industri', u'million']
[u'secur', u'tight', u'inaugur', u'climat', u'talk']
[u'seoul', u'univers', u'apologis', u'scienc', u'fraud']
[u'shark', u'sight', u'heighten', u'patrol', u'pressur']
[u'sharon', u'assess', u'month']
[u'sharon', u'comment', u'cost', u'evangelist', u'deal']
[u'shirvo', u'miss']
[u'urg', u'student', u'care']
[u'singer', u'pete', u'doherti', u'face', u'cocain', u'heroin', u'charg']
[u'australian', u'kill', u'egypt', u'tourist', u'crash']
[u'korea', u'strip', u'hwang', u'honour']
[u'skydiv', u'death', u'investig']
[u'sluggish', u'start', u'compani', u'report']
[u'soni', u'launch', u'music', u'label']
[u'spain', u'arrest', u'alleg', u'islamist', u'milit']
[u'special', u'council', u'meet', u'late', u'condemn']
[u'lanka', u'suffer', u'embarrass', u'loss', u'bushrang']
[u'staff', u'shortag', u'prevent', u'open', u'age', u'care']
[u'state', u'accus', u'lag', u'counter', u'terror']
[u'state', u'doubt', u'climat', u'partnership', u'worth']
[u'state', u'tell', u'fertilis', u'control']
[u'supermarket', u'support', u'devil', u'research', u'deni']
[u'survey', u'show', u'littl', u'support', u'taliban']
[u'sydney', u'water', u'play', u'desalin', u'plant', u'whale']
[u'termin', u'patient', u'contract', u'listeria']
[u'terrifi', u'skipper', u'tell', u'ordeal', u'indonesian']
[u'terror', u'suspect', u'hunger', u'strike']
[u'thousand', u'reflect', u'eyr', u'bushfir']
[u'tobin', u'killer', u'sue', u'medic', u'care']
[u'tourism', u'industri', u'warn', u'bird', u'threat']
[u'turkey', u'confirm', u'human', u'case', u'bird']
[u'injur', u'sydney', u'storm']
[u'ukrain', u'govt', u'sack']
[u'ukrainian', u'presid', u'condemn', u'govt', u'sack']
[u'union', u'warn', u'patient', u'suffer', u'privat']
[u'launch', u'ethiopia', u'eritrea', u'diplomat', u'mission']
[u'vandal', u'target', u'indigen', u'rock', u'carv']
[u'veteran', u'watt', u'claim', u'women', u'time', u'trial', u'titl']
[u'univers', u'applic', u'fall']
[u'video', u'prove', u'greenpeac', u'whaler', u'japan']
[u'virgin', u'blue', u'begin', u'daili', u'hervey', u'sydney']
[u'record', u'billion', u'trade', u'surplus']
[u'warn', u'drop', u'hint']
[u'wast', u'depot', u'blaze', u'control']
[u'weather', u'thwart', u'rescu', u'antarct', u'crew']
[u'whip', u'jockey', u'earn', u'suspens']
[u'wigan', u'beat', u'arsenal', u'debut', u'scharner', u'goal']
[u'windsor', u'unhappi', u'explan']
[u'wool', u'price', u'rise']
[u'radiolog', u'contract', u'announc']
[u'edg', u'brescia', u'clinch', u'place']
[u'hous', u'price', u'year']
[u'welcom', u'mass', u'registr', u'doctor']
[u'ancic', u'dash', u'british', u'teen', u'hop']
[u'andreev', u'sydney', u'semi']
[u'anger', u'greet', u'orlean', u'recoveri', u'propos']
[u'sexual', u'assault', u'swan', u'hill']
[u'antarct', u'crew', u'rescu', u'attempt']
[u'australia', u'timor', u'sign', u'resourc', u'treati']
[u'australian', u'miss', u'superannu']
[u'author', u'probe', u'egyptian', u'crash']
[u'benesova', u'play', u'krajicek', u'hobart', u'decid']
[u'crowd', u'expect', u'coonawarra']
[u'biodegrad', u'packet', u'bring', u'sweet', u'deal', u'aust']
[u'bird', u'battl', u'need', u'boost']
[u'bodi', u'murray', u'river']
[u'bodi', u'river', u'murray']
[u'bowen', u'basin', u'project', u'exceed', u'target']
[u'build', u'start', u'antarct', u'runway']
[u'bundaberg', u'cane', u'farmer', u'bumper', u'crop']
[u'call', u'action', u'north', u'dental', u'shortag']
[u'call', u'charg', u'alcohol', u'take']
[u'call', u'govt', u'polic', u'radio', u'problem']
[u'carbon', u'trade', u'scheme', u'card', u'minist', u'say']
[u'central', u'victorian', u'farmer', u'sanguin', u'locust']
[u'chanc', u'explor', u'possibl', u'bangladesh', u'wool', u'export']
[u'cheaper', u'petrol', u'fuel', u'warwick', u'tourism']
[u'clijster', u'open', u'campaign', u'disarray']
[u'climat', u'chang', u'confer', u'protect', u'coal']
[u'climat', u'chang', u'fungus', u'link']
[u'climat', u'chang', u'summit', u'wind', u'amid', u'emiss']
[u'climat', u'partner', u'wont', u'fossil', u'fuel']
[u'climat', u'summit', u'look', u'technolog']
[u'coal', u'price', u'fall']
[u'coal', u'seam', u'search']
[u'committe', u'claim', u'forese', u'death']
[u'coron', u'question', u'hospit', u'treatment', u'patient']
[u'cotton', u'grower', u'hold', u'price', u'set']
[u'council', u'ask', u'explain', u'sack']
[u'council', u'consid', u'rat', u'chang']
[u'council', u'get', u'tough', u'footpath', u'din', u'breach']
[u'councillor', u'angri', u'assault', u'claim', u'handl']
[u'cowboy', u'train']
[u'cowboy', u'prepar', u'open', u'round']
[u'crash', u'block', u'western', u'highway']
[u'custom', u'seiz', u'perform', u'enhanc', u'drug']
[u'cyclon', u'clare', u'rain', u'bring', u'relief', u'woe']
[u'davi', u'keep', u'gridiron', u'option', u'open']
[u'democrat', u'concern', u'ownership']
[u'villier', u'win', u'stage', u'peterhansel', u'remain']
[u'devin', u'ban', u'match']
[u'doctor', u'worri', u'emerg', u'dept', u'futur']
[u'driver', u'lose', u'licenc', u'speed']
[u'condemn', u'climat', u'summit']
[u'europ', u'mull', u'action', u'iran']
[u'famili', u'home', u'attack', u'bali', u'arrest']
[u'farmer', u'welcom', u'gippsland', u'rain']
[u'fatigu', u'suspect', u'egypt', u'crash']
[u'feder', u'davenport', u'name', u'seed', u'australian']
[u'fiji', u'reject', u'armi', u'threat']
[u'contain', u'line', u'establish']
[u'result', u'wellington', u'plan', u'signific']
[u'worker', u'outrag', u'compo', u'delay']
[u'fourth', u'runway', u'airport', u'approv']
[u'freescal', u'cut', u'job']
[u'french', u'open', u'quarter', u'finalist', u'ban', u'year']
[u'fund', u'woe', u'leav', u'centr']
[u'fund', u'rais', u'famili', u'miss']
[u'gallagh', u'give', u'birth']
[u'georgian', u'jail', u'attack', u'bush']
[u'german', u'cannib', u'return', u'court']
[u'german', u'spi', u'aid', u'iraq', u'effort', u'report']
[u'gippsland', u'fisherman', u'accept', u'govt', u'buyback']
[u'global', u'warm', u'forc', u'crop', u'rethink']
[u'gonzalez', u'oust', u'ancic', u'auckland']
[u'govt', u'announc', u'biofuel', u'task', u'forc']
[u'govt', u'offer', u'prospector', u'guarante']
[u'govt', u'reject', u'lose', u'super', u'recoveri', u'plan']
[u'govt', u'urg', u'boost', u'region', u'tourism', u'effort']
[u'greenpeac', u'reject', u'ram', u'accus']
[u'group', u'say', u'high', u'stock', u'help', u'tuna', u'industri', u'surviv']
[u'guantanamo', u'detaine', u'boycott', u'tribun']
[u'leav', u'taint', u'tast', u'japanes']
[u'haa', u'kooyong', u'final', u'feder', u'bounc']
[u'halgand', u'take', u'tumbl', u'tour']
[u'hamilton', u'ask', u'overturn', u'blood', u'dope']
[u'hayden', u'succumb', u'ill']
[u'wont', u'seek', u'elect']
[u'health', u'author', u'pressur', u'boost', u'patient', u'care']
[u'heavi', u'snow', u'leav', u'dead', u'japan']
[u'henin', u'hardenn', u'step', u'closer', u'sydney', u'titl']
[u'hewitt', u'bow', u'sydney']
[u'horticultur', u'industri', u'face', u'water', u'suppli']
[u'hospit', u'prepar', u'music', u'festiv', u'influx']
[u'howard', u'commit', u'climat', u'technolog']
[u'hunter', u'get', u'begin', u'croc', u'kill', u'safari']
[u'illeg', u'fishermen', u'hold', u'minimum', u'secur', u'prison']
[u'indian', u'cricket', u'visit', u'imran', u'cancer', u'hospit']
[u'indonesia', u'arrest', u'papuan', u'teacher', u'murder']
[u'indonesia', u'record', u'bird', u'death']
[u'indonesia', u'join', u'fish', u'patrol']
[u'intern', u'alic', u'hospit', u'posit']
[u'investor', u'confid', u'bode', u'busi', u'report']
[u'iran', u'nuclear', u'stanc', u'secur', u'council']
[u'isra', u'cabinet', u'minist', u'resign']
[u'jail', u'break', u'trigger', u'secur', u'review']
[u'japan', u'accus', u'greenpeac', u'prolong', u'whale', u'death']
[u'jobless', u'rate', u'remain', u'steadi']
[u'jockey', u'push', u'law', u'protect', u'compens']
[u'jone', u'delight', u'red', u'appoint']
[u'jone', u'unveil', u'red', u'coach']
[u'kearn', u'driveway', u'safeti']
[u'kennedi', u'back', u'council', u'review']
[u'khaddam', u'accus', u'syria', u'assad', u'hariri', u'kill']
[u'dalton', u'appoint', u'head']
[u'krajicek', u'continu', u'good', u'form', u'reach', u'hobart', u'semi']
[u'labor', u'blame', u'govt', u'enrol']
[u'labor', u'slam', u'green', u'fund']
[u'landslid', u'clear']
[u'latest', u'listeria', u'case', u'prompt', u'call', u'coroni']
[u'legal', u'action', u'consid', u'break', u'export']
[u'liber', u'favour', u'union']
[u'liquor', u'disappear', u'bushrang', u'truck', u'hijack']
[u'locust', u'threat', u'dairi', u'farmer']
[u'magic', u'million', u'help', u'showcas', u'coast', u'busi']
[u'magic', u'million', u'underway', u'gold', u'coast']
[u'maher', u'lead', u'sixer', u'home']
[u'maitland', u'back', u'school', u'public', u'privat']
[u'die', u'hume', u'highway', u'crash']
[u'face', u'court', u'servic', u'station', u'robberi']
[u'jail', u'flag', u'burn']
[u'stab', u'brother', u'self', u'defenc', u'court', u'tell']
[u'marin', u'rescu', u'group', u'workload', u'increas']
[u'marin', u'shop', u'blaze', u'damag', u'wors']
[u'market', u'flat', u'earli', u'surg']
[u'martin', u'want', u'develop', u'darwin']
[u'mcewen', u'join', u'game', u'miss', u'list', u'watt', u'rid']
[u'mcewen', u'want', u'limit', u'game', u'rider']
[u'medina', u'garrigu', u'canberra', u'final']
[u'meet', u'assess', u'learn', u'centr', u'support']
[u'meet', u'highlight', u'mozzi', u'control', u'worri']
[u'mental', u'health', u'therapist', u'appoint', u'town']
[u'money', u'object', u'princ', u'signatur', u'sheen']
[u'fire', u'emerg', u'heat']
[u'urg', u'govt', u'support', u'shark', u'patrol']
[u'nalbandian', u'withdraw', u'kooyong']
[u'research', u'pinpoint', u'earli', u'meningococc', u'warn']
[u'studi', u'look', u'caus', u'obes']
[u'wool', u'levi', u'fund', u'market', u'campaign']
[u'nice', u'warn', u'feder']
[u'base', u'horror', u'film', u'dont', u'faze', u'tourist', u'bodi']
[u'nurs', u'introduc', u'work', u'regim']
[u'olymp', u'medallist', u'namesnik', u'die', u'road', u'accid']
[u'opposit', u'mount', u'snowi', u'hydro', u'scheme', u'sell']
[u'opposit', u'seek', u'inquiri', u'steal', u'juvenil']
[u'optus', u'take', u'virgin', u'mobil', u'australia']
[u'osteopath', u'concern', u'cours', u'closur']
[u'rais', u'june', u'bushfir', u'victim']
[u'pair', u'face', u'court', u'accus', u'girl', u'murder']
[u'patel', u'allow', u'superannu']
[u'pedersen', u'keep', u'blackburn', u'final', u'aliv']
[u'pictur', u'frame', u'bind', u'princess', u'mari']
[u'pilot', u'fatal', u'crash', u'cannabi', u'report']
[u'pinochet', u'strip', u'immun', u'right', u'trial']
[u'offer', u'condol', u'crash', u'victim', u'famili']
[u'reject', u'famili', u'reform']
[u'polic', u'continu', u'truck', u'crash', u'investig']
[u'polic', u'crackdown', u'hoon']
[u'polic', u'investig', u'attack']
[u'polic', u'tribut', u'cairo', u'crash', u'victim']
[u'polic', u'probe', u'electr', u'store', u'raid']
[u'polic', u'probe', u'fatal', u'crash', u'egypt']
[u'polic', u'search', u'fail']
[u'polic', u'warn', u'motorist', u'slow']
[u'public', u'warn', u'heavi', u'rain', u'threat']
[u'pulp', u'submiss', u'lodg']
[u'putin', u'yuschenko', u'stay', u'firm', u'deal']
[u'univers', u'applic', u'number', u'strong']
[u'queen', u'honour', u'bernhard', u'langer']
[u'racq', u'worri', u'fuel', u'subsidi', u'scheme', u'futur']
[u'record', u'break', u'barca', u'book', u'place', u'quarter']
[u'centr', u'record', u'melt']
[u'red', u'pois', u'unveil', u'jone', u'coach']
[u'road', u'worker', u'affect', u'anti', u'terror', u'law']
[u'road', u'safeti', u'task', u'forc', u'creat']
[u'robertson', u'consult', u'cabooltur', u'hospit', u'staff']
[u'roddick', u'draw', u'open']
[u'govt', u'approv', u'marina']
[u'scan', u'clear', u'clijster', u'injuri']
[u'search', u'continu', u'fear', u'drown']
[u'search', u'prison', u'escap']
[u'secreci', u'concern', u'air', u'carbon', u'dioxid', u'burial']
[u'sharapova', u'play', u'shoulder', u'pain']
[u'shoalhaven', u'experi', u'extend', u'tourism', u'season']
[u'skill', u'shortag', u'prompt', u'fast', u'track']
[u'korean', u'scientist', u'apologis', u'research', u'fraud']
[u'stardust', u'space', u'probe', u'readi', u'sampl', u'drop']
[u'stormwat', u'check', u'reveal', u'nutrient', u'concern']
[u'strand', u'antarct', u'aircrew', u'await', u'rescu']
[u'survey', u'highlight', u'high', u'north', u'fuel', u'cost']
[u'survey', u'reveal', u'support', u'outback', u'luxuri', u'resort']
[u'swimmer', u'warn', u'shark', u'spot', u'beach']
[u'tare', u'area', u'storm', u'prove', u'cost']
[u'tareq', u'aziz', u'month', u'live', u'lawyer']
[u'premier', u'accus', u'mislead', u'parliament']
[u'teen', u'critic', u'accid']
[u'thompson', u'threaten', u'quit', u'victori']
[u'thompson', u'upset', u'transfer', u'impass']
[u'arrest', u'cockfight']
[u'seed', u'medina', u'garrigu', u'reach', u'canberra', u'semi']
[u'skeleton', u'slider', u'deni', u'dope']
[u'train', u'secur', u'breach', u'traumatis', u'passeng']
[u'trust', u'fund', u'establish', u'caldecott']
[u'turkey', u'free', u'shoot', u'pope']
[u'charg', u'footscray', u'stab']
[u'ugandan', u'presid', u'vow', u'unit', u'nation']
[u'ukrain', u'presid', u'demand', u'cancel', u'vote']
[u'union', u'back', u'move', u'curb', u'attack', u'transport']
[u'threaten', u'syria', u'action']
[u'trade', u'move', u'ahead']
[u'vandal', u'spark', u'conserv', u'area']
[u'vaughan', u'confid', u'face', u'india']
[u'vaughan', u'sure', u'barmi', u'armi', u'support']
[u'poppi', u'extract', u'plant']
[u'govt', u'consid', u'liberalis', u'liquor', u'trade', u'law']
[u'group', u'danc', u'commonwealth', u'game']
[u'reward', u'safe', u'plater']
[u'warn', u'walk', u'starter', u'world', u'pont']
[u'warrior', u'campbel', u'announc', u'retir']
[u'warrior', u'campbel', u'reveal', u'battl', u'depress']
[u'widow', u'seek', u'damag', u'fatal', u'crane', u'accid']
[u'womadelaid', u'festiv', u'program', u'expand']
[u'yearl', u'top', u'record', u'magic', u'million', u'sale']
[u'youth', u'scheme', u'review']
[u'face', u'court', u'koomari']
[u'crash', u'victim', u'egyptian', u'hospit']
[u'tafe', u'colleg', u'improv']
[u'tonn', u'firework', u'seiz', u'properti']
[u'overnight', u'respit', u'servic']
[u'accus', u'say', u'photo', u'corbi', u'total', u'innoc']
[u'activist', u'bropho', u'guilti', u'indec', u'deal']
[u'allow', u'woe', u'contribut', u'resign', u'doctor']
[u'deni', u'claim', u'split', u'climat', u'chang']
[u'alphand', u'take', u'dakar', u'lead', u'peterhansel', u'hit']
[u'health', u'minist', u'hospit', u'emerg']
[u'ancic', u'fill', u'auckland', u'open', u'final', u'slot']
[u'anim', u'activist', u'slam', u'livestock', u'interfer']
[u'aussi', u'start', u'strong', u'lanka']
[u'aussi', u'world', u'yacht', u'entrant', u'bind', u'albani']
[u'aust', u'drop', u'pacif', u'rugbi', u'competit']
[u'australia', u'set', u'formid', u'total']
[u'australia', u'take', u'lankan', u'open']
[u'australia', u'urg', u'cash', u'croc', u'hunt', u'safari']
[u'author', u'probe', u'alarm', u'caesarean', u'rate']
[u'basslink', u'suppli', u'electr']
[u'bat', u'win', u'women', u'open', u'road', u'cycl', u'championship']
[u'beat', u'hewitt', u'talk', u'open', u'chanc']
[u'bird', u'adapt', u'human', u'scientist']
[u'blake', u'play', u'andreev', u'sydney', u'final']
[u'blaze', u'rip', u'busi', u'chamber']
[u'bleed', u'sharon', u'brain', u'absorb']
[u'bodi', u'water', u'lord', u'howe', u'island']
[u'bookmak', u'odd', u'aust', u'open', u'women']
[u'caesarean', u'rate', u'increas', u'alarm']
[u'calm', u'fiji', u'leader', u'hold', u'talk']
[u'govt', u'highway', u'duplic', u'fund']
[u'call', u'drug', u'drive', u'test']
[u'call', u'mandorah', u'beach', u'hotel', u'redevelop']
[u'cattlemen', u'leav', u'nation', u'park']
[u'caxton', u'polic', u'barrack', u'redevelop', u'plan']
[u'chamber', u'back', u'govt', u'support', u'chang', u'trade', u'law']
[u'champion', u'inter', u'milan', u'reach', u'quarter']
[u'clinic', u'australia', u'thrash', u'lanka']
[u'clinton', u'secur', u'price', u'slash', u'aid', u'drug']
[u'coach', u'candid', u'qualiti', u'crop']
[u'coal', u'termin', u'doubt', u'delay', u'repeat']
[u'commentari', u'highlight', u'australia', u'lanka']
[u'communiti', u'feel', u'loss', u'egypt', u'crash', u'father']
[u'conserv', u'council', u'question', u'shark', u'net']
[u'corbi', u'demand', u'compo']
[u'councillor', u'claim', u'govt', u'mishandl', u'palm']
[u'council', u'seek', u'extra', u'trawler', u'wharf', u'fund']
[u'council', u'outlin', u'reason', u'sack']
[u'council', u'reject', u'lake', u'bolac', u'clean', u'concern']
[u'coupl', u'swim', u'shore', u'boat', u'sink']
[u'crew', u'prepar', u'antarct', u'rescu', u'attempt']
[u'custom', u'fine', u'tune', u'poacher', u'process']
[u'cyclon', u'rain', u'forc', u'overflow']
[u'darwin', u'chlorin', u'upgrad']
[u'doctor', u'carri', u'brain', u'scan', u'stabl']
[u'doubt', u'remain', u'dairi', u'odour']
[u'congo', u'set', u'date', u'democrat', u'vote']
[u'egypt', u'pledg', u'high', u'level', u'inquiri', u'fatal']
[u'hous', u'afford', u'crisi', u'declar']
[u'energex', u'upgrad', u'brisban', u'power', u'grid']
[u'escap', u'hunt', u'prison', u'continu']
[u'pledg', u'million', u'global', u'fight', u'bird']
[u'europ', u'urg', u'action', u'iran']
[u'member', u'stand', u'independ']
[u'famili', u'disappoint', u'deporte', u'await', u'return']
[u'farmer', u'contribut', u'pollut', u'reduct', u'abar']
[u'farmer', u'urg', u'govt', u'overhaul']
[u'farm', u'inspect', u'locust', u'control', u'effort']
[u'fear', u'drive', u'wife', u'protect', u'murder', u'husband', u'court']
[u'fear', u'radio', u'put', u'firefight', u'risk']
[u'feder', u'sniff', u'clue', u'unknown', u'challeng']
[u'ferrari', u'respond', u'wake', u'schu']
[u'ferri', u'project', u'experi', u'delay']
[u'destroy', u'worth', u'wood']
[u'flinder', u'medic', u'centr', u'declar', u'listeria', u'free']
[u'cabinet', u'minist', u'die']
[u'fuel', u'subsidi', u'scheme', u'stay', u'place']
[u'ganguli', u'give', u'regular', u'open']
[u'good', u'rain', u'fall', u'wheatbelt']
[u'govt', u'admit', u'nurs', u'recruit', u'blunder']
[u'govt', u'ask', u'rethink', u'nativ', u'titl', u'claim', u'process']
[u'govt', u'bulli', u'timor', u'resourc', u'treati']
[u'govt', u'crack', u'restrict', u'dog']
[u'govt', u'offer', u'power', u'suppli', u'assur']
[u'govt', u'clash', u'illeg', u'fish']
[u'graingrow', u'urg', u'donat', u'affect']
[u'green', u'group', u'urg', u'rethink', u'emiss', u'reduct']
[u'greenpeac', u'deni', u'japan', u'prolong', u'death', u'claim']
[u'greenpeac', u'reject', u'prolong', u'death', u'claim']
[u'hagan', u'decis', u'base', u'perform']
[u'hajj', u'stamped', u'rais', u'neglig', u'concern']
[u'halgand', u'surgeri', u'go', u'train', u'fall']
[u'haliti', u'score', u'doubl', u'jet', u'outclass', u'knight']
[u'hewitt', u'feder', u'open', u'collis', u'cours']
[u'hous', u'afford', u'perth', u'improv']
[u'hous', u'afford']
[u'hundr', u'hajj', u'stamped']
[u'hundr', u'farewel', u'shark', u'attack', u'victim']
[u'hunter', u'hous', u'own', u'afford']
[u'hunter', u'valley', u'river', u'list', u'endang']
[u'iemma', u'urg', u'higher', u'rent', u'concern']
[u'ill', u'select', u'blow', u'hayden']
[u'iran', u'jitter', u'strain', u'market']
[u'iran', u'threaten', u'check']
[u'job', u'expect', u'health', u'deal']
[u'kakadu', u'indigen', u'tourism', u'ventur', u'green', u'light']
[u'karatantcheva', u'appeal', u'year']
[u'knight', u'discuss', u'hagan', u'deal']
[u'knight', u'hagan']
[u'kosmina', u'urg', u'minor', u'premiership', u'caution']
[u'kraft', u'say', u'suttontown', u'plant', u'futur', u'safe']
[u'krajicek', u'take', u'hobart', u'intern']
[u'labor', u'deni', u'climat', u'split']
[u'land', u'board', u'stand', u'drought', u'recommend']
[u'lawrenc', u'beg', u'merci', u'bali', u'court']
[u'learn', u'centr', u'student', u'urg', u'enrol']
[u'lennon', u'accus', u'mislead', u'parliament', u'time']
[u'leonora', u'husband', u'wife', u'doctor', u'team']
[u'liber', u'blame', u'freescal', u'loss']
[u'liverpool', u'face', u'spur', u'tough', u'test']
[u'lockington', u'bodi', u'miss']
[u'lomu', u'abus', u'ban', u'life']
[u'luton', u'boss', u'vow', u'expos', u'bung', u'scandal']
[u'charg', u'cronulla', u'riot']
[u'charg', u'quokka', u'abus']
[u'hurt', u'broadbeach', u'shoot']
[u'hurt', u'timber', u'mishap']
[u'overboard', u'prompt', u'search', u'coast']
[u'medic', u'error', u'kill', u'injur', u'dozen', u'report']
[u'medina', u'garrigu', u'win', u'canberra', u'intern']
[u'miller', u'apologis', u'alcohol', u'remark']
[u'million', u'dollar', u'deal', u'pleas', u'wool', u'grower']
[u'minist', u'offer', u'toll', u'respit', u'pledg']
[u'missil', u'attack', u'leav', u'dead', u'pakistan']
[u'mix', u'feel', u'marina', u'plan']
[u'mix', u'signal', u'wool', u'market', u'perform']
[u'ralli', u'crash', u'victim', u'famili']
[u'mole', u'cancer', u'older', u'peopl', u'skin']
[u'high', u'level', u'talk', u'plan', u'cabooltur']
[u'mother', u'strangl', u'babi', u'escap', u'jail', u'term']
[u'mozart', u'music', u'diari', u'go', u'onlin']
[u'dust', u'standard']
[u'music', u'festiv', u'promis', u'cultur', u'exchang']
[u'foot', u'fractur', u'open', u'surpris', u'ntini']
[u'rule', u'seri']
[u'oper', u'resum', u'ship', u'servic']
[u'nieminen', u'meet', u'ancic', u'auckland', u'final']
[u'norton', u'retain', u'mantl', u'cowboy', u'captain']
[u'opposit', u'make', u'aerial', u'shark', u'patrol', u'pledg']
[u'opposit', u'question', u'polic', u'number']
[u'oversea', u'travel', u'guid', u'rat']
[u'papuan', u'suspect', u'admit', u'shoot', u'teacher']
[u'plan', u'outlin', u'forest', u'tree', u'remov', u'plan']
[u'polic', u'chief', u'deni', u'soft', u'ethnic', u'crime']
[u'polic', u'chief', u'deni', u'go', u'soft', u'ethnic', u'crime']
[u'polic', u'conduct', u'rivskil', u'fraud', u'probe']
[u'polic', u'question', u'swan', u'hill', u'assault']
[u'polic', u'respond', u'vandal', u'attack']
[u'polic', u'return', u'corbi', u'photo', u'drug', u'suspect']
[u'polic', u'thank', u'crash', u'communic', u'effort']
[u'power', u'firm', u'plan', u'station', u'upgrad']
[u'prais', u'climat', u'chang', u'initi']
[u'prepar', u'return', u'crash', u'victim']
[u'protea', u'team', u'warm', u'match']
[u'public', u'urg', u'help', u'improv', u'qualiti']
[u'puletua', u'hand', u'panther', u'captainci']
[u'qanta', u'shift', u'rumour', u'spark', u'concern']
[u'govt', u'consid', u'incent', u'doctor']
[u'race', u'industri', u'hit', u'lennon', u'claim']
[u'real', u'madrid', u'deni', u'cole']
[u'real', u'stroll', u'quarter']
[u'region', u'record', u'rise', u'mossi', u'diseas']
[u'remot', u'communiti', u'feel', u'bite', u'dental', u'woe']
[u'rescuer', u'destroy', u'bathroom', u'save', u'girl']
[u'rescu', u'team', u'reach', u'strand', u'antarct', u'aircrew']
[u'resid', u'mix', u'feel', u'mental', u'health']
[u'restrict', u'carv', u'caus', u'communiti']
[u'road', u'accid', u'strategi', u'work', u'polic']
[u'road', u'resurfac', u'caus', u'delay']
[u'roddick', u'haa', u'kooyong', u'final']
[u'sabbatini', u'lead', u'hawaii', u'fold']
[u'sabotag', u'suspect', u'boat', u'sink']
[u'saudi', u'blame', u'unruli', u'pilgrim']
[u'scienc', u'retract', u'discredit', u'stem', u'cell', u'paper']
[u'secur', u'review', u'north', u'west']
[u'share', u'market', u'close', u'flat']
[u'smith', u'readi', u'roar', u'seri', u'say', u'arthur']
[u'south', u'korea', u'agre', u'lift', u'beef']
[u'lanka', u'chase', u'troubl']
[u'stacker', u'hop', u'lift', u'consist', u'tiger', u'clash']
[u'staunton', u'clear', u'ireland']
[u'stawel', u'bushfir', u'resourc', u'centr']
[u'studi', u'aim', u'shed', u'light', u'hunter', u'prawn']
[u'survey', u'highlight', u'disabl', u'travel', u'woe']
[u'swerv', u'caus', u'egypt', u'crash', u'report']
[u'sydney', u'polic', u'hunt', u'gang', u'arm', u'robber']
[u'tafe', u'get', u'help', u'hand']
[u'call', u'safer', u'workplac']
[u'teen', u'charg', u'boy', u'bash']
[u'telstra', u'cut', u'job']
[u'tennant', u'water', u'woe', u'wont', u'forc', u'chlorin', u'rethink']
[u'hoff', u'file', u'divorc']
[u'thompson', u'seal', u'deal']
[u'toddler', u'get', u'stick', u'bath', u'ordeal']
[u'toowoomba', u'firm', u'look', u'export', u'medic', u'crib']
[u'toyn', u'happi', u'jail', u'chang']
[u'truck', u'driver', u'hospit']
[u'ukrain', u'parliament', u'extend', u'session', u'amid', u'turmoil']
[u'report', u'strong', u'journal', u'cours']
[u'uranium', u'export', u'safeguard', u'question']
[u'marin', u'face', u'arrest', u'alleg', u'filipino', u'rape']
[u'rule', u'iran', u'militari', u'action']
[u'seek', u'dismiss', u'guantanamo', u'challeng']
[u'trade', u'deficit', u'fall']
[u'vampir', u'go', u'governor']
[u'ban', u'alcohol', u'vapour']
[u'govt', u'defend', u'interst', u'electr']
[u'let', u'kraft', u'grant', u'money']
[u'pastoralist', u'strand', u'floodwat']
[u'word', u'erupt', u'jail', u'escap']
[u'water', u'pollut', u'prompt', u'swim', u'warn']
[u'wharf', u'revamp', u'start']
[u'wineri', u'urg', u'consid', u'ethanol', u'plan']
[u'woman', u'face', u'murder', u'charg', u'partner', u'death']
[u'woman', u'remain', u'hospit', u'fatal', u'crash']
[u'work', u'continu', u'wood', u'process', u'plant']
[u'yahoo', u'lose', u'nazi', u'memorabilia', u'appeal']
[u'young', u'briton', u'aspir', u'list', u'status']
[u'young', u'lifesav', u'brush', u'skill']
[u'youni', u'lead', u'pakistan', u'charg']
[u'tourist', u'injur', u'mini', u'smash']
[u'kill', u'bangladesh', u'crash']
[u'kill', u'train', u'collid', u'russia']
[u'afrid', u'akmal', u'plunder', u'centuri']
[u'alphand', u'extend', u'dakar', u'ralli', u'lead']
[u'urg', u'relief', u'poor', u'singl']
[u'qaeda', u'deputi', u'report', u'kill']
[u'urg', u'rise', u'doctor', u'shortag']
[u'antarct', u'crew', u'remain', u'strand']
[u'antarct', u'aircrew', u'strand', u'day']
[u'applebi', u'tie', u'lead', u'honolulu']
[u'aust', u'warn', u'fiji', u'coup', u'fear']
[u'bat', u'claim', u'road', u'titl']
[u'blake', u'boost', u'sydney', u'final', u'appear']
[u'blake', u'captur', u'sydney', u'intern', u'titl']
[u'boati', u'miss', u'safeti', u'messag', u'govt']
[u'bodi', u'bushland']
[u'kill', u'dakar', u'race']
[u'british', u'film', u'maker', u'murder', u'kenya']
[u'british', u'journalist', u'kidnap', u'iraq', u'report', u'lucki']
[u'crash', u'survivor', u'defend', u'driver']
[u'bushland', u'bodi', u'jodi', u'galant']
[u'bushrang', u'beat', u'blue']
[u'bush', u'urg', u'peac', u'iran', u'resolut']
[u'smash', u'prompt', u'polic', u'wit']
[u'chappel', u'deni', u'india', u'team', u'rift']
[u'claw', u'british', u'purr', u'fect', u'public']
[u'concern', u'sharon', u'ninth', u'coma']
[u'controversi', u'road', u'cycl', u'championship']
[u'crowd', u'continu', u'torment', u'muralitharan']
[u'cyclon', u'clare', u'leav', u'resid', u'strand']
[u'cyclon', u'clare', u'take', u'toll', u'busi']
[u'debnam', u'defend', u'ethnic', u'crime', u'comment']
[u'farmer', u'deni', u'compo', u'call']
[u'egypt', u'crash', u'victim', u'releas', u'hospit']
[u'eminem', u'wife', u'permit', u'remarri']
[u'evacu', u'plan', u'egyptian', u'crash', u'casualti']
[u'fifa', u'boot', u'world', u'open', u'gala', u'agenda']
[u'raze', u'hemingway', u'bahama']
[u'flame', u'spoil', u'jackson', u'wnbl', u'return']
[u'feder', u'court', u'judg', u'lockhart', u'die']
[u'black', u'player', u'start', u'super', u'side']
[u'gold', u'hit', u'year', u'high']
[u'gough', u'suffer', u'india', u'blow']
[u'govt', u'mull', u'reform', u'appeal', u'process']
[u'govt', u'reject', u'labor', u'claim']
[u'govt', u'reject', u'random', u'drug', u'test', u'call']
[u'govt', u'stand', u'acton', u'park', u'clean']
[u'govt', u'urg', u'reveal', u'minist', u'know']
[u'govt', u'welcom', u'indigen', u'tourism', u'ventur']
[u'grandstand', u'chat', u'ricki', u'pont', u'marvan']
[u'green', u'begin', u'bobcast']
[u'hajj', u'pilgrim', u'need', u'crowd', u'train', u'present']
[u'henin', u'hardenn', u'secur', u'sydney', u'titl']
[u'horn', u'africa', u'face', u'hunger', u'crisi']
[u'human', u'bird', u'case', u'suspect', u'belgium']
[u'ierodiaconou', u'win', u'world', u'event']
[u'investig', u'convinc', u'secret', u'jail', u'exist']
[u'iran', u'wont', u'bulli', u'say', u'presid']
[u'iraq', u'chopper', u'crash', u'kill']
[u'jackson', u'crush', u'capit']
[u'japanes', u'tourist', u'treat', u'crash', u'injuri']
[u'job', u'flow', u'follow', u'mitsubishi', u'shutdown']
[u'king', u'hawk', u'tiger', u'notch', u'win']
[u'labor', u'farewel', u'minist']
[u'langeveldt', u'join', u'south', u'africa', u'injuri', u'list']
[u'lennon', u'difficulti', u'casino', u'stay']
[u'minchin', u'reject', u'labor', u'claim']
[u'minogu', u'continu', u'cancer', u'treatment', u'publicist']
[u'mirror', u'mirror', u'take', u'magic', u'million', u'classic']
[u'miss', u'children', u'hous', u'famili', u'friend']
[u'miss', u'man', u'bodi']
[u'monsoon', u'rain', u'begin']
[u'mosquito', u'plagu', u'hit']
[u'dynamit', u'admit', u'assault', u'policewoman']
[u'nieminen', u'thrash', u'ancic', u'auckland', u'final']
[u'pakistan', u'india', u'aust', u'plan', u'septemb', u'seri']
[u'pakistan', u'probe', u'report', u'zawahiri', u'death']
[u'pamela', u'anderson', u'take', u'colonel', u'sander']
[u'polic', u'launch', u'cultur', u'sensit', u'uniform', u'rang']
[u'polic', u'suspect', u'weapon', u'smuggler']
[u'polic', u'sydney', u'jail', u'escape']
[u'pont', u'question', u'lanka', u'tactic']
[u'prepar', u'bring', u'home', u'bodi', u'crash']
[u'properti', u'destroy', u'brisban', u'fire']
[u'protest', u'hold', u'raid', u'target', u'qaeda', u'deputi']
[u'redback', u'tiger', u'rain', u'affect', u'match']
[u'refresh', u'martyn', u'hop', u'test', u'recal']
[u'roddick', u'prepar', u'open', u'kooyong', u'victori']
[u'romanian', u'blast', u'kill', u'miner']
[u'london', u'offer', u'enlighten', u'cure']
[u'school', u'blaze', u'caus', u'damag']
[u'schwarzenegg', u'deni', u'clemenc', u'age', u'murder']
[u'spain', u'venezuela', u'overrid', u'militari', u'sale', u'block']
[u'lankan', u'threat', u'sever', u'monitor']
[u'staunton', u'name', u'irish', u'footbal', u'manag']
[u'sydney', u'marin', u'draw']
[u'taipan', u'stop', u'tiger', u'streak']
[u'explor', u'industri', u'surg']
[u'tasmania', u'restart', u'methadon', u'program']
[u'teen', u'sibl', u'share', u'habit', u'studi']
[u'tiger', u'king', u'hawk', u'notch', u'win']
[u'turkey', u'investig', u'child', u'death', u'bird']
[u'prepar', u'forc', u'darfur']
[u'helicopt', u'shoot', u'iraq']
[u'warm', u'weather', u'japan', u'bring', u'avalanch']
[u'warrior', u'trounc', u'bull']
[u'waterhous', u'aim', u'maintain', u'magic', u'streak']
[u'wembley', u'stadium', u'construct', u'concret']
[u'miss', u'hawaii', u'applebi', u'content']
[u'william', u'sister', u'readi', u'open']
[u'turn', u'schutzenfest']
[u'evacu', u'hobart', u'hotel', u'blaze']
[u'activist', u'condemn', u'african', u'blood']
[u'alic', u'bodi', u'autopsi']
[u'alphand', u'shed', u'bridesmaid', u'dakar', u'ralli']
[u'alphand', u'sight', u'dakar', u'victori', u'tragedi']
[u'qaeda', u'claim', u'chopper', u'shoot']
[u'american', u'tom', u'campbel', u'share', u'lead', u'honolulu']
[u'anim', u'cruelti', u'convict', u'crimin']
[u'antarct', u'crew', u'return', u'base']
[u'arsenal', u'seven', u'lose', u'derbi']
[u'arson', u'suspect', u'school', u'blaze']
[u'arundhati', u'refus', u'indian', u'award']
[u'asia', u'quartet', u'cricket', u'world']
[u'back', u'forc', u'darfur']
[u'aussi', u'wari', u'wound', u'protea']
[u'australia', u'earli', u'stumbl', u'gabba']
[u'australian', u'expert', u'guid', u'stardust', u'home']
[u'base', u'jumper', u'rescu', u'cliff']
[u'base', u'jumper', u'strand', u'grind']
[u'belgium', u'dismiss', u'suspect', u'bird', u'case']
[u'benitez', u'back', u'kewel', u'liverpool', u'close', u'unit']
[u'bodi', u'bushland', u'confirm', u'femal']
[u'bull', u'strong', u'start', u'waca', u'game']
[u'cabooltur', u'vent', u'anger', u'emerg', u'dept', u'closur']
[u'boost', u'organ', u'donat']
[u'celtic', u'mark', u'kean', u'home', u'debut', u'victori']
[u'clijster', u'face', u'race', u'time', u'open']
[u'concern', u'hold', u'miss', u'pregnant', u'woman']
[u'coulthard', u'want', u'stay', u'bull']
[u'dandenong', u'adelaid', u'regist', u'wnbl', u'win']
[u'east', u'jerusalem', u'palestinian', u'grant', u'vote']
[u'egyptian', u'crash', u'survivor', u'begin', u'journey', u'home']
[u'arrest', u'gold', u'coast', u'street', u'disturb']
[u'emir', u'kuwait', u'die']
[u'eriksson', u'catch', u'newspap', u'sting']
[u'fairytal', u'farewel', u'thompson']
[u'faulti', u'fryer', u'blame', u'hotel']
[u'fergi', u'rooney']
[u'damag', u'melbourn', u'famili', u'unit']
[u'flame', u'spoil', u'jackson', u'wnbl', u'return']
[u'head', u'william', u'lose']
[u'gilchrist', u'ball']
[u'govt', u'lie', u'cabooltur', u'hospit', u'doctor', u'say']
[u'govt', u'upgrad', u'seahawk', u'chopper']
[u'grasshopp', u'plagu']
[u'harpoon', u'cabl', u'knock', u'activist', u'greenpeac']
[u'harpoon', u'cabl', u'knock', u'greenpeac', u'activist']
[u'hewitt', u'renew', u'critic', u'open', u'surfac']
[u'hingi', u'threat', u'say', u'william']
[u'hope', u'fade', u'miss', u'boater']
[u'italian', u'ralli', u'abort', u'right']
[u'jewish', u'settler', u'riot', u'west', u'bank']
[u'kashmir', u'quak', u'survivor', u'hurl', u'stone', u'offici']
[u'kewel', u'star', u'liverpool', u'close', u'unit']
[u'lang', u'paper', u'reveal', u'spi', u'claim', u'report']
[u'liber', u'call', u'child', u'care', u'break']
[u'liber', u'urg', u'child', u'care', u'overhaul']
[u'lomu', u'eye', u'black', u'spot']
[u'malaysian', u'bombmak', u'accomplic', u'detain']
[u'mccaw', u'replac', u'umaga', u'zealand', u'captain']
[u'memori', u'servic', u'honour', u'egypt', u'crash', u'victim']
[u'minist', u'reject', u'backbench', u'call', u'child', u'care']
[u'minist', u'reject', u'call', u'child', u'care', u'overhaul']
[u'game', u'ticket', u'avail']
[u'nasa', u'comet', u'dust', u'capsul', u'rout', u'earth']
[u'nasa', u'spoon', u'stardust', u'land', u'earth']
[u'defend', u'beach', u'safeti']
[u'oscar', u'winner', u'shelley', u'winter', u'die']
[u'philippin', u'communist', u'rebel', u'free', u'comrad', u'jail']
[u'polic', u'miss', u'boater', u'bodi']
[u'polic', u'investig', u'cairn', u'minibus', u'accid']
[u'policemen', u'kill', u'nepales', u'bomb', u'attack']
[u'pont', u'lament', u'loss']
[u'protea', u'post', u'impress']
[u'ralf', u'dismiss', u'toyota', u'driver', u'rumour']
[u'rapper', u'eminem', u'wife', u'remarri']
[u'retir', u'davenport', u'radar']
[u'rival', u'look', u'way', u'halt', u'feder']
[u'russia', u'ukrain', u'clash', u'lighthous', u'seizur']
[u'saddam', u'judg', u'quit', u'trial', u'sourc']
[u'sampdoria', u'track', u'lecc']
[u'search', u'continu', u'bodi']
[u'sehwag', u'shin', u'india', u'gloom']
[u'alert', u'river', u'rise']
[u'shark', u'attack', u'prompt', u'safeti', u'measur']
[u'shark', u'attack', u'diver', u'near', u'perth']
[u'sharon', u'remain', u'coma']
[u'south', u'africa', u'confid', u'boucher']
[u'strand', u'base', u'jumper', u'rescu', u'cliff', u'face']
[u'taliban', u'suicid', u'bomber', u'hit', u'canadian', u'troop']
[u'taskforc', u'call', u'assault', u'victim', u'support']
[u'tasmanian', u'start', u'smoker', u'right', u'parti']
[u'tourist', u'condit', u'mini', u'crash']
[u'treasur', u'exhibit', u'draw', u'visitor']
[u'tribut', u'flow', u'judg', u'lockhart']
[u'militari', u'free', u'journalist', u'hold', u'iraq']
[u'valencia', u'close', u'leader', u'osasuna']
[u'polic', u'hunt', u'culprit', u'woman', u'assault']
[u'walkov', u'king', u'hawk']
[u'west', u'brace', u'heavi', u'flood']
[u'resid', u'battl', u'flood']
[u'scientist', u'studi', u'antarct', u'issu']
[u'wind', u'hamper', u'antarct', u'rescu']
[u'world', u'need', u'specialist', u'spinner', u'macgil']
[u'firefight', u'tackl', u'willunga', u'blaze']
[u'abba', u'rule', u'second', u'term']
[u'accus', u'doctor', u'imperson', u'plead', u'guilti']
[u'chief', u'challeng', u'bali', u'report']
[u'join', u'pipelin', u'project']
[u'airport', u'specialis', u'forc']
[u'aloisi', u'alav', u'upset', u'deportivo']
[u'urg', u'cultur', u'chang', u'health']
[u'appeal', u'start', u'hous', u'blaze', u'famili']
[u'appeal', u'help', u'ritchi', u'famili', u'crash']
[u'arnberg', u'half', u'steadi', u'victoria']
[u'attack', u'put', u'hospit']
[u'aust', u'sheep', u'meat', u'bind', u'muslim', u'holi', u'festiv']
[u'know', u'payment', u'saddam', u'inquiri', u'tell']
[u'beatti', u'urg', u'deal', u'hospit', u'crisi']
[u'betfair', u'licenc', u'prompt', u'race', u'boycott', u'fear']
[u'betfair', u'receiv', u'licenc']
[u'betfair', u'econom', u'benefit', u'question']
[u'lade', u'dead', u'terror', u'expert']
[u'bird', u'toll', u'hit', u'turkey']
[u'blue', u'lismor']
[u'boomer', u'hand', u'tough', u'world', u'draw']
[u'brown', u'renew', u'whale', u'supervis']
[u'build', u'cost', u'hamper', u'canberra', u'reconstruct']
[u'bull', u'build', u'lead']
[u'bull', u'close', u'inning', u'point']
[u'cabooltur', u'hospit', u'close', u'emerg', u'dept']
[u'caldecott', u'bodi', u'arriv', u'adelaid']
[u'canadian', u'diplomat', u'kill', u'afghanistan']
[u'capriati', u'aim', u'march', u'comeback']
[u'chelsea', u'surviv', u'sunderland', u'scare']
[u'chile', u'elect', u'femal', u'presid']
[u'claim', u'law', u'unfair', u'target', u'aborigin']
[u'clement', u'clarifi', u'comment', u'etoo', u'spit']
[u'communiti', u'farewel', u'kiama', u'deputi', u'mayor']
[u'concern', u'air', u'properti', u'locat', u'rule']
[u'costello', u'dismiss', u'call', u'child', u'care', u'reform']
[u'costello', u'reject', u'call', u'major', u'childcar', u'fund']
[u'council', u'accus', u'cruelti', u'livestock', u'saleyard']
[u'council', u'ask', u'reject', u'high', u'rise', u'plan']
[u'council', u'urg', u'consid', u'sale', u'impact']
[u'croatian', u'oust', u'australian', u'hope', u'guccion']
[u'croc', u'coach', u'question', u'match', u'handl']
[u'dakar', u'ralli', u'race', u'despit', u'death']
[u'davenport', u'down', u'dellacqua', u'open', u'curtain', u'raiser']
[u'dead', u'walk', u'panic', u'villag']
[u'piero', u'inspir', u'juventus', u'milan', u'lose']
[u'demand', u'high', u'western', u'cattl', u'properti']
[u'dementieva', u'crash', u'aust', u'open']
[u'diver', u'warn', u'reli', u'shark', u'pod']
[u'dokic', u'lead', u'aussi', u'action']
[u'dokic', u'squander', u'chanc', u'return']
[u'dokic', u'william', u'open']
[u'dope', u'suspect', u'lund', u'name', u'olymp', u'team']
[u'doubl', u'centuri', u'stand', u'steadi', u'bushrang']
[u'downpour', u'prove', u'cost', u'wheatbelt', u'farmer']
[u'industri', u'face', u'collaps']
[u'produc', u'struggl', u'oversuppli']
[u'egypt', u'crash', u'survivor', u'stabl', u'condit']
[u'eriksson', u'percent', u'commit', u'england']
[u'etoo', u'spit', u'shame', u'spark', u'race']
[u'fall', u'put', u'har', u'race', u'driver', u'hospit']
[u'farmer', u'decid', u'defenc', u'plan']
[u'fijian', u'militari', u'leader', u'futur', u'jeopardi']
[u'crew', u'contain', u'willunga', u'blaze']
[u'fight', u'aeroplan']
[u'forc', u'school', u'town', u'hall']
[u'injur', u'nigerian', u'field', u'attack']
[u'flood', u'water', u'west']
[u'forest', u'protest', u'arrest', u'gippsland']
[u'fruit', u'grower', u'consid', u'respons', u'import', u'plan']
[u'fund', u'shortfal', u'hold', u'greater', u'goldfield']
[u'fund', u'shortfal', u'prompt', u'council', u'patrol']
[u'gallop', u'drop', u'polit', u'bombshel']
[u'gallop', u'quit', u'cite', u'depress']
[u'field', u'deal', u'short', u'chang', u'east', u'timor']
[u'gaudio', u'go']
[u'gebreselassi', u'set', u'world', u'record', u'half', u'marathon']
[u'germani', u'suspect', u'bird', u'case', u'test', u'negat']
[u'gilchrist', u'rest', u'dissent', u'charg', u'lay']
[u'glut', u'prompt', u'wine', u'grape', u'summit']
[u'govt', u'ask', u'speed', u'foreign', u'train', u'doctor']
[u'govt', u'dismiss', u'super', u'cut', u'plan']
[u'govt', u'hint', u'short', u'term', u'cabooltur', u'solut']
[u'govt', u'seal', u'veneer', u'deal']
[u'govt', u'stand', u'game', u'fund', u'alloc']
[u'grazier', u'warn', u'watch', u'cattl', u'duffer']
[u'graze', u'land', u'valu', u'remain']
[u'greenpeac', u'review', u'anti', u'whale', u'protest', u'measur']
[u'hama', u'determin', u'fight', u'elect', u'despit']
[u'health', u'servic', u'public', u'brief']
[u'henin', u'hardenn', u'send', u'rival', u'warn']
[u'high', u'zinc', u'price', u'boost']
[u'hope', u'rain', u'offer', u'drought', u'respit']
[u'hors', u'mistreat', u'order', u'spark', u'tougher']
[u'hospit', u'access', u'point', u'close']
[u'hunter', u'valley', u'colt', u'top', u'magic', u'million', u'yearl']
[u'hunter', u'wine', u'grape', u'harvest', u'begin']
[u'hussey', u'confirm', u'status', u'averag']
[u'hyundai', u'secur', u'suppli', u'deal']
[u'iemma', u'inspect', u'riot', u'squad']
[u'iemma', u'react', u'angrili', u'ethnic', u'crime', u'comment']
[u'ilfracomb', u'council', u'call', u'quit']
[u'vow', u'venus']
[u'indian', u'open', u'stand', u'firm', u'pakistan']
[u'inquiri', u'ignit', u'card', u'debat']
[u'inquiri', u'examin', u'compani', u'link', u'iraq']
[u'vertic', u'cemeteri', u'franchis']
[u'internet', u'user', u'quick', u'judg']
[u'isra', u'soldier', u'kill', u'woman']
[u'plan', u'project', u'boost', u'defenc']
[u'juic', u'plant', u'loss', u'worri', u'union']
[u'labor', u'call', u'govt', u'super']
[u'labor', u'union', u'support', u'call', u'child', u'care', u'overhaul']
[u'lehmann', u'ferguson', u'steer', u'redback']
[u'lehmann', u'help']
[u'liber', u'seek', u'releas', u'surgeri', u'wait', u'list']
[u'lynch', u'seek', u'legal', u'advic', u'sack']
[u'die', u'blaze']
[u'die', u'farm', u'mishap']
[u'face', u'court', u'attempt', u'rape', u'charg']
[u'face', u'court', u'north', u'rape']
[u'mayor', u'trip', u'help', u'overhaul', u'develop', u'rule']
[u'mcrae', u'extend', u'rabbitoh', u'stay']
[u'meet', u'eas', u'fijian', u'leadership', u'tension']
[u'hold', u'china', u'uranium', u'talk']
[u'mother', u'bail', u'murder', u'plot', u'charg']
[u'guarante', u'better', u'transport', u'worker', u'safeti']
[u'murgon', u'abattoir', u'reopen']
[u'nalbandian', u'give', u'fright', u'thai', u'qualifi']
[u'nalbandian', u'ljubic', u'lead', u'men', u'seed']
[u'nation', u'card', u'debat', u'reignit']
[u'navi', u'take', u'custodi', u'illeg', u'fish', u'suspect']
[u'cyclon', u'tip']
[u'jetstar', u'fleet', u'help', u'lift', u'newcastl', u'airport']
[u'subdivis', u'includ', u'partial']
[u'night', u'vision', u'boost', u'navi', u'chopper']
[u'korean', u'leader', u'continu', u'secret', u'china', u'visit']
[u'support', u'awb', u'denial', u'inquiri', u'hear']
[u'paint', u'roller', u'destroy']
[u'food', u'scandal', u'embarrass', u'kingaroy', u'firm']
[u'cudal', u'hospit', u'demolish']
[u'onesteel', u'warn', u'dust', u'level']
[u'opera', u'hous', u'nomin', u'world', u'heritag', u'list']
[u'opposit', u'maintain', u'stanc', u'nation', u'dust']
[u'pair', u'hurt', u'road', u'smash']
[u'parap', u'ambul', u'station', u'close']
[u'pastoralist', u'concern', u'possibl', u'land']
[u'patrick', u'sue', u'toll', u'joint', u'rail', u'ventur']
[u'plan', u'extinguish', u'fire']
[u'plan', u'begin', u'marin', u'park', u'consult']
[u'plan', u'save', u'african', u'lion', u'develop']
[u'polic', u'begin', u'oper', u'reduc', u'break']
[u'polic', u'call', u'hors', u'stud', u'bodi']
[u'polic', u'charg', u'cairn', u'child', u'offenc']
[u'polic', u'chief', u'hear', u'staff', u'concern']
[u'polic', u'mardi', u'human', u'remain']
[u'polic', u'investig', u'elder', u'man', u'road', u'death']
[u'polic', u'investig', u'eski', u'babi']
[u'polic', u'charg', u'oper']
[u'polic', u'task', u'forc', u'open', u'thursday']
[u'polic', u'unsur', u'injur', u'assault']
[u'polic', u'confirm', u'blue', u'mountain', u'bodi']
[u'pont', u'signal', u'bat', u'review']
[u'poor', u'drive', u'skill', u'contribut', u'region', u'road']
[u'port', u'ponder', u'possibl', u'esper', u'sheep', u'export']
[u'public', u'ask', u'reduc', u'dengu', u'fever', u'risk']
[u'public', u'warn', u'tide', u'threat']
[u'public', u'warn', u'phone', u'credit', u'card', u'scam']
[u'qanta', u'airbus', u'suppli']
[u'quit', u'gallop', u'frank', u'earn', u'prais']
[u'rare', u'frog', u'display']
[u'recherch', u'fund', u'appeal', u'reject']
[u'redback', u'cullen', u'blewett']
[u'rescu', u'base', u'jumper', u'face', u'charg']
[u'rescu', u'turtl', u'die']
[u'research', u'quiz', u'stem', u'cell', u'fraud']
[u'resourc', u'stock', u'prop', u'market']
[u'rspca', u'probe', u'rodeo', u'cruelti', u'claim']
[u'russia', u'stop', u'aussi', u'guus']
[u'satellit', u'imageri', u'help', u'climat', u'chang', u'reef', u'studi']
[u'scientist', u'begin', u'work', u'stardust']
[u'seafood', u'industri', u'aim', u'renegoti', u'marin', u'park']
[u'secur', u'regim', u'prompt', u'pilot', u'seek', u'senat']
[u'serena', u'sneak', u'second', u'round']
[u'plead', u'rural', u'volunt']
[u'sharapova', u'cruis', u'melbourn']
[u'sharemarket', u'retreat', u'record', u'high']
[u'shark', u'attack', u'survivor', u'shake']
[u'sharon', u'surgeri', u'success']
[u'accus', u'kill', u'face', u'court']
[u'south', u'korea', u'open', u'market', u'beef']
[u'south', u'west', u'lobster', u'stock', u'drop']
[u'speed', u'alcohol', u'involv', u'fatal', u'crash', u'polic']
[u'strand', u'trio', u'return', u'antarct', u'base']
[u'studi', u'consid', u'goat', u'meatwork', u'feasibl']
[u'submiss', u'close', u'irympl', u'develop']
[u'sugar', u'price', u'continu', u'climb']
[u'suicid', u'bomber', u'kill', u'afghanistan']
[u'surgeri', u'wait', u'list', u'respons']
[u'survivor', u'travel', u'crash', u'site', u'memori']
[u'swan', u'beat']
[u'sydney', u'coach', u'japan']
[u'sydney', u'warm', u'track', u'repair', u'work']
[u'see', u'rise', u'creation']
[u'technic', u'colleg', u'propon', u'seek', u'staff']
[u'tender', u'call', u'lochinvar', u'sewerag', u'scheme']
[u'thai', u'launch', u'realiti']
[u'injur', u'caravan', u'park', u'fraca']
[u'toowoomba', u'hockeyroo', u'argentina']
[u'contend', u'ginepri', u'start', u'strong']
[u'twin', u'centuri', u'bushrang', u'command']
[u'union', u'fear', u'mail', u'chang', u'deliv', u'loss']
[u'union', u'worker', u'meet', u'rail', u'project']
[u'unrest', u'continu', u'strike', u'pakistan']
[u'meet', u'speed', u'iran', u'referr']
[u'helicopt', u'shoot', u'iraq']
[u'releas', u'iraqi']
[u'scientist', u'discov', u'obes', u'brain', u'chemic', u'link']
[u'vcat', u'hear', u'plantat', u'issu']
[u'venus', u'slump', u'round', u'loss']
[u'victoria', u'push', u'hec', u'place']
[u'mop', u'record', u'flood']
[u'waratah', u'aim', u'better']
[u'resid', u'assess', u'local', u'flood']
[u'town', u'walkaway', u'avoid', u'major', u'damag', u'flood']
[u'weather', u'turn', u'storm', u'chaser', u'plane']
[u'wedgetail', u'project', u'aim', u'boost', u'defenc']
[u'weir', u'bodi', u'boat', u'accid', u'victim']
[u'winegrap', u'grower', u'decid', u'legal', u'action']
[u'woman', u'help', u'polic', u'girl', u'assault', u'case']
[u'woman', u'face', u'court', u'accus', u'bank', u'fraud']
[u'woman', u'fli', u'hospit', u'snake', u'bite']
[u'wooli', u'urg', u'forget', u'liquor', u'licenc', u'complaint']
[u'work', u'boost', u'loom', u'bemax']
[u'ballarat', u'telstra', u'worker', u'redund']
[u'abort', u'pill', u'inquiri', u'limit', u'submiss']
[u'accus', u'thief', u'face', u'court']
[u'agonis', u'wait', u'bali']
[u'airlin', u'criticis', u'goldfield', u'decis']
[u'airport', u'upgrad', u'benefit', u'remot', u'travel']
[u'seek', u'intern', u'north', u'coast']
[u'angler', u'fin', u'shark', u'fin']
[u'anti', u'whale', u'ralli', u'pleas', u'greenpeac']
[u'applebi', u'drop', u'place']
[u'aussi', u'pull', u'head', u'mcgrath']
[u'aust', u'near', u'judg', u'deal']
[u'australian', u'danc', u'final', u'get', u'recognit']
[u'australian', u'hiker', u'miss', u'patagonia']
[u'australia', u'urg', u'toughen', u'stanc', u'briberi']
[u'austria', u'order', u'return', u'steal', u'klimt', u'work']
[u'bail', u'deni', u'accus', u'kill']
[u'bali', u'nine', u'czugaj', u'await', u'news', u'penalti']
[u'beef', u'farm', u'land', u'buck', u'citi', u'downward', u'trend']
[u'fall', u'littl', u'impact', u'golburn', u'catchment']
[u'bodi', u'return', u'home', u'egypt', u'crash', u'tragedi']
[u'face', u'court', u'year', u'old', u'rape']
[u'face', u'court', u'accus', u'knife', u'threat']
[u'face', u'court', u'year', u'old', u'rape']
[u'british', u'end', u'murray', u'loss']
[u'brokeback', u'cash', u'biopic', u'scoop', u'globe']
[u'brokeback', u'mountain', u'shin', u'golden', u'globe']
[u'builder', u'meet', u'demand']
[u'bureau', u'expect', u'typic', u'cyclon', u'season']
[u'cabooltur', u'hospit', u'reopen', u'week']
[u'fund', u'address', u'remot', u'mental', u'health']
[u'cartoonist', u'sketch', u'help', u'bicycl', u'thief']
[u'chapman', u'pool', u'face', u'power', u'boat']
[u'charlton', u'sign', u'everton', u'striker', u'bend']
[u'china', u'detain', u'zhao', u'mourner']
[u'clark', u'question', u'councillor', u'donat', u'law']
[u'clijster', u'victori', u'unabl', u'stop', u'pain']
[u'back', u'john', u'ambul', u'apart']
[u'suspend', u'water', u'reform', u'talk']
[u'allow', u'resum', u'work', u'iran', u'apolog']
[u'commonwealth', u'wont', u'fund', u'learn', u'centr']
[u'communiti', u'shock', u'death', u'near', u'hospit']
[u'compani', u'hire', u'goat', u'abattoir', u'worker']
[u'contend', u'emerg']
[u'corrupt', u'probe', u'target', u'senior', u'polic']
[u'council', u'await', u'disast', u'fund', u'decis']
[u'councillor', u'brush', u'skill']
[u'countri', u'music', u'festiv', u'inquiri', u'rise']
[u'crash', u'end', u'year', u'old', u'ride']
[u'crew', u'battl', u'fyshwick', u'grassfir']
[u'cricket', u'australia', u'proceed', u'world']
[u'czugaj', u'wait', u'bali', u'sentenc', u'request']
[u'darl', u'down', u'hors', u'fetch', u'magic', u'million']
[u'deadlin', u'extend', u'prison', u'locat', u'idea']
[u'develop', u'board', u'expect', u'pulp', u'water']
[u'dfat', u'knowledg', u'kickback', u'question']
[u'dfat', u'iraq', u'kickback', u'role', u'scrutini']
[u'egypt', u'survivor', u'return', u'home']
[u'elder', u'appeal', u'child', u'sentenc']
[u'electrician', u'suffer', u'facial', u'burn', u'explos']
[u'engin', u'troubl', u'turn', u'bind', u'flight']
[u'europ', u'trade', u'subdu', u'market', u'close']
[u'feder', u'draw', u'level', u'sampra', u'hewitt', u'drop']
[u'feder', u'stroll', u'second', u'round']
[u'blame', u'coastal', u'power', u'outag']
[u'cabinet', u'member', u'name', u'liberia']
[u'flood', u'town', u'declar', u'disast', u'zone']
[u'forest', u'council', u'hail', u'veneer', u'mill', u'deal']
[u'atsic', u'deputi', u'chairman', u'face', u'court']
[u'charg', u'log', u'blockad']
[u'fraud', u'detect', u'iraq', u'elect']
[u'polic', u'honour', u'plan', u'crash', u'victim']
[u'fundrais', u'walker', u'complet', u'trip', u'australia']
[u'fund', u'seek', u'major', u'anim', u'project']
[u'gallop', u'prais', u'reveal', u'suffer']
[u'gallop', u'resign', u'turn', u'point']
[u'gate', u'plan', u'westgat', u'bridg', u'secur']
[u'parent', u'choic', u'stay', u'home']
[u'govt', u'opposit', u'odd', u'north', u'public']
[u'govt', u'play', u'blame', u'game', u'patrol', u'fund', u'cut']
[u'govt', u'slam', u'turn', u'energi', u'rebat']
[u'govt', u'bail', u'basketbal']
[u'govt', u'hear', u'push', u'enterpris', u'zone', u'trial']
[u'govt', u'green', u'technolog', u'effort']
[u'govt', u'urg', u'crime', u'scheme']
[u'govt', u'want', u'report', u'fund', u'extend', u'aerial']
[u'govt', u'work', u'cabooltur', u'hospit', u'solut']
[u'green', u'putt', u'aspir', u'deputi', u'premier', u'role']
[u'group', u'work', u'blueprint', u'shoalhaven']
[u'group', u'beat', u'reef', u'pest']
[u'control', u'group', u'fear', u'water', u'law']
[u'haa', u'elimin', u'gasquet', u'coria', u'take', u'set']
[u'hewitt', u'surviv', u'thriller']
[u'home', u'loan', u'approv', u'continu', u'climb']
[u'hopkin', u'river', u'dolphin', u'sight']
[u'hostag', u'list', u'nigerian', u'milit', u'demand']
[u'hous', u'put', u'polic', u'rural', u'servic']
[u'know', u'tell', u'boss']
[u'india', u'world', u'record', u'fail', u'draw', u'test']
[u'india', u'skip', u'champion', u'trophi']
[u'indonesian', u'bird', u'victim', u'brother', u'die']
[u'indonesian', u'fishermen', u'face', u'court']
[u'injur', u'kalli', u'head', u'home']
[u'inventor', u'hope', u'sticker', u'deter', u'shark', u'attack']
[u'iran', u'ban', u'journo', u'translat', u'gaff']
[u'isra', u'troop', u'kill', u'hama', u'milit']
[u'jaqu', u'help', u'blue', u'bounc']
[u'king', u'south', u'african', u'board', u'probe']
[u'korean', u'surgeon', u'stomach', u'thyroid', u'oper']
[u'ladi', u'elliot', u'resort', u'makeov']
[u'lake', u'grace', u'declar', u'natur', u'disast']
[u'stage', u'feedback', u'begin', u'industri', u'land']
[u'liber', u'slam', u'treasur', u'successor', u'referr']
[u'locum', u'staff', u'cabooltur', u'emerg', u'dept']
[u'luczak', u'healey', u'stosur']
[u'accus', u'threaten', u'polic']
[u'manangatang', u'pool', u'battl', u'minut', u'particl']
[u'die', u'tractor', u'mishap']
[u'marin', u'park', u'plan', u'consult', u'hasti']
[u'mauresmo', u'battl', u'second', u'round']
[u'mcewen', u'tour']
[u'meet', u'consid', u'portland', u'hospit', u'woe']
[u'million', u'dollar', u'oversight', u'cut', u'teacher', u'aid', u'hour']
[u'minist', u'ask', u'join', u'water', u'project']
[u'mix', u'respons', u'gallop', u'decis']
[u'disput', u'highway', u'speed', u'limit']
[u'follow', u'gallop', u'cabinet']
[u'prais', u'gallop', u'courag']
[u'seek', u'stronger', u'polic', u'presenc']
[u'murder', u'know', u'killer']
[u'fin', u'croc', u'coach', u'refere', u'critic']
[u'cpsu', u'chief', u'expect', u'disrupt', u'public']
[u'fuel', u'hitch', u'delay', u'airport', u'termin']
[u'group', u'seek', u'role', u'marin', u'park', u'committe']
[u'horizon', u'prepar', u'pluto', u'mission']
[u'intern', u'benefit', u'hospit', u'patient']
[u'consensus', u'iran', u'resolut', u'germani']
[u'date', u'doctor', u'start', u'work']
[u'quick', u'water', u'ban']
[u'time', u'lose', u'bird', u'fight']
[u'opposit', u'say', u'prison', u'overflow']
[u'nurs', u'cool', u'condit', u'deal']
[u'nurs', u'graduat', u'head', u'cairn']
[u'orang', u'juic', u'local', u'grow']
[u'ouyen', u'lose', u'supermarket']
[u'overwork', u'nurs', u'plead', u'help']
[u'paedophilia', u'accus', u'refus', u'bail']
[u'pain', u'killer', u'risk', u'ovarian', u'cancer']
[u'pair', u'hurt', u'southern', u'highland', u'mini', u'tornado']
[u'paradorn', u'undo', u'kiefer']
[u'parker', u'retir', u'nation', u'blow', u'wale']
[u'partner', u'decept', u'infect', u'court', u'tell']
[u'cover', u'thalidomid']
[u'pierc', u'demolish', u'pratt']
[u'pirat', u'coach', u'hop', u'tribun', u'clear', u'cullen']
[u'plan', u'monitor', u'lightn', u'fire']
[u'polic', u'associ', u'cast', u'doubt', u'staff']
[u'polic', u'confirm', u'galant', u'murder']
[u'post', u'mortem', u'wagga']
[u'power', u'station', u'plan', u'prompt', u'submiss']
[u'prais', u'extend', u'nullarbor', u'polic', u'patrol']
[u'probat', u'sentenc', u'sledgehamm', u'attack']
[u'protest', u'help', u'high', u'rise', u'propon']
[u'public', u'donat', u'famili', u'father', u'crash']
[u'public', u'offer', u'prison', u'camp', u'assur']
[u'public', u'quiz', u'support', u'rate', u'rise']
[u'public', u'urg', u'help', u'stop', u'vandal']
[u'rain', u'help', u'lift', u'level']
[u'rain', u'maintain', u'canberra', u'level']
[u'rainstorm', u'hospit', u'flood']
[u'rebat', u'chang', u'improv', u'solar', u'power', u'access']
[u'redback', u'near', u'inning', u'point']
[u'resourc', u'underpin', u'market', u'record']
[u'richmond', u'shire', u'voter', u'elect', u'councillor']
[u'rise', u'sugar', u'price', u'cheer', u'cane', u'farmer']
[u'riverina', u'enjoy', u'mix', u'rainfal']
[u'riverina', u'giant', u'feedlot']
[u'riverland', u'appl', u'bake', u'extrem', u'condit']
[u'robinson', u'sale', u'trial', u'adjourn']
[u'ronaldinho', u'head', u'europ', u'elit', u'uefa', u'team', u'year']
[u'ruddock', u'downplay', u'oecd', u'critic']
[u'ruddock', u'discuss', u'judg']
[u'rural', u'famili', u'face', u'rise', u'school', u'board', u'fee']
[u'sami', u'chief', u'welcom', u'murray', u'darl', u'commission']
[u'sangakarra', u'reflect', u'lankan']
[u'saudi', u'arabia', u'tackl', u'syria', u'lebanon', u'tension']
[u'saudi', u'bomb', u'factori', u'raid', u'nab', u'milit']
[u'school', u'arson', u'attack', u'investig']
[u'scud', u'wipe', u'straight', u'set']
[u'search', u'begin', u'colleg', u'staff']
[u'second', u'accid', u'timber', u'worker']
[u'sharon', u'open', u'eye']
[u'ship', u'owner', u'spill', u'clean']
[u'singapor', u'lift', u'beef']
[u'charg', u'bourbon', u'truck', u'heist']
[u'million', u'ticket', u'order', u'world']
[u'sport', u'group', u'warn', u'heat', u'stress', u'liabil']
[u'sprint', u'champ', u'powel', u'game']
[u'lanka', u'bat', u'brisban']
[u'lanka', u'crush', u'protea', u'gabba']
[u'lanka', u'protea', u'victori']
[u'strand', u'crew', u'aircraft', u'problem', u'concern']
[u'student', u'urg', u'respond', u'care', u'offer']
[u'studi', u'find', u'garden', u'help', u'lower', u'dementia', u'risk']
[u'swiss', u'miss', u'make', u'triumphant', u'return']
[u'sydney', u'terror', u'case', u'adjourn']
[u'taiwan', u'premier', u'resign']
[u'tamil', u'tiger', u'ambush', u'kill', u'civilian']
[u'territorian', u'urg', u'heed', u'kidney', u'health', u'messag']
[u'terror', u'accus', u'challeng', u'bail', u'decis']
[u'thalidomid', u'cancer', u'drug']
[u'timber', u'worker', u'pleas', u'mill', u'plan']
[u'toll', u'dismiss', u'patrick', u'legal', u'action']
[u'train', u'servic', u'expect', u'track', u'soon']
[u'tribut', u'flow', u'gallop']
[u'patel', u'patient', u'reach', u'payout', u'deal']
[u'offici', u'suspend', u'food', u'probe']
[u'vail', u'seek', u'clemenc', u'bali']
[u'vanston', u'consid', u'migrat', u'studi']
[u'victori', u'mcewen', u'send', u'earli', u'season', u'signal']
[u'voge', u'rescu', u'warrior']
[u'websit', u'give', u'brother', u'view', u'netherland']
[u'western', u'like', u'feel', u'impact', u'pipelin']
[u'wheelchair', u'bind', u'death', u'inmat', u'execut']
[u'wide', u'tuesday', u'januari']
[u'wind', u'farm', u'second', u'stage', u'start']
[u'wine', u'grape', u'grower', u'vote', u'fight', u'contract', u'decis']
[u'woman', u'claim', u'leap', u'move', u'escap']
[u'woman', u'face', u'court', u'heroin', u'traffic']
[u'work', u'start', u'overpass', u'bridg']
[u'wright', u'reject', u'poki', u'trade', u'critic']
[u'xenophon', u'call', u'action', u'poki', u'report']
[u'zinifex', u'adopt', u'power', u'save', u'strategi']
[u'zoo', u'provid', u'detail', u'eleph', u'import']
[u'intern', u'join', u'canberra', u'hospit']
[u'accc', u'block', u'toll', u'takeov']
[u'accus', u'peopl', u'smuggler', u'plead', u'guilti']
[u'afghan', u'deploy', u'high', u'risk', u'ambassador']
[u'afghan', u'blame', u'pakistan', u'suicid', u'attack']
[u'anxious', u'staff', u'face', u'uncertain', u'futur']
[u'papuan', u'asylum', u'seeker', u'miss']
[u'withdraw', u'statement', u'iraq', u'cash']
[u'withdraw', u'stock', u'exchang', u'statement']
[u'barnabi', u'joyc', u'call', u'time', u'senat']
[u'barrett', u'undecid', u'england']
[u'berlin', u'push', u'ahead', u'world', u'parti']
[u'biaggi', u'test', u'team']
[u'tech', u'open', u'brisban']
[u'bird', u'fight', u'need', u'billion']
[u'blackmail', u'jail', u'term', u'suspend']
[u'blake', u'join', u'court', u'critic']
[u'blister', u'stop', u'sharapova']
[u'board', u'school', u'echo', u'icpa', u'worri']
[u'bodi', u'australian', u'kill', u'crash', u'arriv']
[u'borbidg', u'wont', u'contest', u'nation', u'senat', u'seat']
[u'brother', u'guilti', u'coot', u'rape']
[u'bull', u'crush', u'warrior', u'wicket']
[u'crash', u'coupl', u'take', u'london', u'hospit']
[u'crash', u'victim', u'bodi', u'return', u'melbourn']
[u'bushrang', u'inning', u'point']
[u'cabooltur', u'hospit', u'staff', u'plan', u'unsaf']
[u'cairn', u'deputi', u'mayor', u'quit']
[u'carpent', u'undecid', u'leadership']
[u'cheney', u'hold', u'syria', u'crisi', u'talk']
[u'child', u'protect', u'order', u'quadrupl']
[u'coastal', u'patrol', u'rescu', u'boat', u'trial']
[u'concern', u'fruit', u'label', u'unhealthi']
[u'coolgardi', u'count', u'cost', u'storm', u'damag']
[u'coonawarra', u'centr', u'hold', u'detaine']
[u'council', u'give', u'green', u'light', u'modifi', u'high', u'rise']
[u'council', u'reveal', u'expens']
[u'council', u'reject', u'aquat', u'centr', u'fund']
[u'council', u'concern', u'snowi', u'hydro', u'plan']
[u'council', u'beat', u'financi', u'posit']
[u'court', u'decis', u'cheer', u'euthanasia', u'support']
[u'court', u'find', u'guilti', u'depriv']
[u'court', u'order', u'stop', u'turkish', u'man', u'deport']
[u'court', u'tell', u'accus', u'paedophil', u'sexual', u'predat']
[u'court', u'urg', u'releas', u'woman', u'accus', u'kill']
[u'cowboy', u'season', u'clash', u'chang', u'venu']
[u'cullen', u'crosswhit', u'fin', u'brawl']
[u'custodi', u'coupl', u'child', u'death']
[u'dallaglio', u'explain', u'reason', u'retir']
[u'davenport', u'overcom', u'dog', u'sprem']
[u'dept', u'slow', u'detaine', u'health', u'concern']
[u'devil', u'gift', u'polit', u'stunt']
[u'highlight', u'grow', u'number', u'illeg', u'bore']
[u'doctor', u'step', u'forward', u'curb', u'emerg', u'dept', u'crisi']
[u'donor', u'pledg', u'billion', u'bird', u'fight']
[u'dragon', u'seek', u'chariti', u'shield', u'reveng']
[u'econom', u'index', u'indic', u'stronger', u'growth']
[u'produc', u'saff', u'plan']
[u'escap', u'coup', u'member', u'send', u'manila', u'alert']
[u'rais', u'bird', u'pledg']
[u'excel', u'sign', u'taiwan', u'coal', u'suppli', u'contract']
[u'chief', u'improv', u'hospit']
[u'expert', u'highlight', u'problem', u'wast', u'plan', u'plan']
[u'export', u'fear', u'cold', u'store', u'closur']
[u'farm', u'group', u'worri', u'chemic']
[u'govt', u'sign', u'murray', u'water', u'deal']
[u'fijian', u'govt', u'delay', u'coup', u'amnesti', u'law']
[u'flash', u'flood', u'affect', u'central', u'west']
[u'food', u'flow', u'scrutinis', u'kenyan', u'starv']
[u'aussi', u'open', u'champ', u'jail']
[u'polic', u'chief', u'probe', u'prison', u'escap']
[u'foster', u'care', u'number', u'doubl']
[u'fraction', u'steal', u'wag', u'compo', u'pay']
[u'french', u'aim', u'commonwealth', u'game']
[u'fume', u'caus', u'collaps']
[u'german', u'retail', u'accus', u'misus', u'tasmanian']
[u'gladston', u'harbour', u'clean', u'spill']
[u'gold', u'coast', u'turf', u'club', u'consid', u'shake']
[u'govt', u'defend', u'land', u'hike']
[u'govt', u'defend', u'measur', u'combat', u'child', u'abus']
[u'govt', u'doubl', u'cash', u'incent', u'attract', u'rural']
[u'govt', u'know', u'payment', u'rudd']
[u'govt', u'open', u'teen', u'work', u'camp', u'idea', u'vandal']
[u'govt', u'reject', u'patrol', u'agreement', u'claim']
[u'govt', u'urg', u'freez', u'leasehold', u'land', u'rental']
[u'govt', u'urg', u'offer', u'solar', u'energi', u'support']
[u'govt', u'vow', u'reject', u'angl']
[u'granvill', u'train', u'disast', u'rememb']
[u'gutsi', u'gerran', u'win', u'tour', u'open']
[u'hackett', u'train']
[u'health', u'servic', u'reject', u'intern', u'claim']
[u'henin', u'hardenn', u'william', u'davenport']
[u'hewitt', u'proud', u'gritti']
[u'patient', u'admit', u'infect', u'girlfriend', u'court']
[u'hope', u'rain', u'prevent', u'soil', u'eros']
[u'hospit', u'clear', u'abscond', u'patient', u'death']
[u'warn', u'india', u'champion', u'trophi']
[u'india', u'join', u'bid', u'asian']
[u'industri', u'need', u'face', u'grape', u'glut', u'wine', u'group']
[u'inland', u'properti', u'valu', u'outstrip', u'coastal', u'growth']
[u'intern', u'begin', u'cairn', u'base']
[u'iraqi', u'abductor', u'threaten', u'kill', u'journalist']
[u'iraqi', u'gunmen', u'kill', u'kidnap', u'engin']
[u'iraq', u'presid', u'want', u'saddam', u'court', u'move']
[u'iraq', u'wheat', u'compens', u'payment', u'queri']
[u'ivori', u'coast', u'crowd', u'storm', u'base']
[u'jail', u'escap', u'spark', u'manag', u'chang']
[u'joyc', u'inconsist', u'abort', u'pill', u'inquiri']
[u'joyc', u'want', u'time', u'abort', u'pill', u'inquiri']
[u'kalli', u'australian', u'tour']
[u'kempsey', u'council', u'criticis', u'meet', u'time']
[u'kimberley', u'resid', u'tell', u'prepar', u'flood']
[u'korean', u'bail', u'off', u'charg']
[u'land', u'price', u'jump', u'boorowa']
[u'lawsuit', u'challeng', u'bush', u'eavesdrop', u'propos']
[u'lawyer', u'turkish', u'seek', u'feder', u'court']
[u'leagu', u'convert', u'macdougal', u'earn', u'scotland']
[u'leed', u'sign', u'aussi', u'griffith']
[u'echo', u'mcgrath', u'sentiment']
[u'lennon', u'rule', u'allianc', u'green']
[u'male', u'coach', u'hunter', u'jaeger']
[u'custodi', u'broadbeach', u'shoot']
[u'plead', u'guilti', u'player', u'assault']
[u'market', u'plung', u'investor', u'profit']
[u'mayor', u'see', u'infrastructur', u'critic']
[u'meet', u'debat', u'lake', u'wendoure', u'plan']
[u'minist', u'fear', u'anim', u'welfar', u'angl']
[u'minist', u'outrag', u'medicar', u'fine', u'threat']
[u'minist', u'say', u'dubbo', u'toler', u'despit', u'mosqu', u'attack']
[u'miss', u'asylum', u'seeker', u'cape']
[u'secur', u'camera', u'watch', u'citi', u'centr']
[u'time', u'jail', u'site', u'submiss']
[u'motorist', u'feel', u'pinch', u'price', u'climb']
[u'air', u'condobolin', u'polic', u'number', u'concern']
[u'nasa', u'delay', u'inaugur', u'pluto', u'mission']
[u'brand', u'clarifi', u'orang', u'juic', u'origin']
[u'doctor', u'boost', u'ingham', u'hospit']
[u'dolphin', u'feed', u'guidelin', u'near', u'readi']
[u'enterpris', u'deal', u'council', u'staff']
[u'pregnanc', u'servic', u'southern', u'highland', u'women']
[u'law', u'artist', u'photographi']
[u'mall', u'money', u'year', u'mooney']
[u'north', u'coast', u'properti', u'market', u'soften']
[u'busi', u'author', u'merg']
[u'nurs', u'group', u'monitor', u'condit', u'upgrad']
[u'offici', u'reach', u'papuan', u'asylum', u'seeker']
[u'offici', u'stand', u'prison', u'escap']
[u'price', u'hike', u'concern', u'market']
[u'olmert', u'reshuffl', u'isra', u'cabinet']
[u'pakistan', u'defiant', u'strike']
[u'parrot', u'squawk', u'secret', u'love', u'affair']
[u'partner', u'appeal', u'public', u'help', u'man']
[u'photograph', u'bemus', u'polic', u'warn']
[u'pig', u'final', u'horror']
[u'pilot', u'disregard', u'secur', u'law']
[u'plan', u'afoot', u'winton', u'dinosaur', u'museum']
[u'plot', u'kidnap', u'blair', u'uncov']
[u'polic', u'drug', u'crop']
[u'polic', u'investig', u'porn', u'underwear', u'theft']
[u'polic', u'remind', u'driver', u'drink', u'drive']
[u'polic', u'reveal', u'post', u'mortem', u'result']
[u'porn', u'star', u'dutch']
[u'prawn', u'trawler', u'pray', u'cyclon']
[u'pregnant', u'teen', u'grant', u'bail', u'kidnap', u'charg']
[u'properti', u'council', u'oppos', u'restrict', u'councillor']
[u'public', u'urg', u'draft', u'fisheri']
[u'cotton', u'australia', u'largest', u'cotton']
[u'health', u'urg', u'widen', u'hospit', u'status', u'report']
[u'raelian', u'offer', u'disgrac', u'stem', u'cell', u'research', u'work']
[u'rain', u'littl', u'eas', u'bushfir', u'threat']
[u'rain', u'threat', u'spark', u'emerg', u'plan', u'lake', u'grace']
[u'ranger', u'uranium', u'product']
[u'recov', u'eagl', u'return', u'wild']
[u'redback', u'home', u'advantag', u'tiger']
[u'resid', u'express', u'anger', u'desalin', u'plan']
[u'resid', u'seek', u'consult', u'alcoa', u'expans']
[u'riverland', u'say', u'high', u'suicid', u'rate']
[u'riverland', u'wine', u'grape', u'grower', u'mcguigan']
[u'roadsid', u'fire', u'link']
[u'robinson', u'reject', u'charg', u'polit', u'witch', u'hunt']
[u'roddick', u'serv', u'moodi', u'blake', u'win']
[u'ronaldo', u'ban', u'lose', u'card', u'appeal']
[u'rous', u'river', u'swim']
[u'scud', u'vow', u'bounc']
[u'servic', u'farewel', u'alp', u'avalanch', u'victim']
[u'expect', u'major', u'bathurst', u'flood']
[u'seven', u'trade', u'issu', u'review']
[u'sid', u'death', u'drop', u'babi', u'sofa']
[u'skywest', u'warn', u'uncertain', u'weekend', u'servic']
[u'stacker', u'cling', u'hope', u'croc', u'play', u'off']
[u'storm', u'bring', u'isol', u'rain', u'victorian', u'malle']
[u'storm', u'help', u'boost', u'water', u'suppli']
[u'strong', u'economi', u'help', u'lift', u'student', u'enrol']
[u'student', u'die', u'crash']
[u'student', u'await', u'offer']
[u'student', u'await', u'placement', u'offer']
[u'support', u'group', u'welcom', u'patel', u'compo', u'deal']
[u'swimmer', u'warn', u'diseas', u'temperatur', u'rise']
[u'rule', u'tighten', u'grassland']
[u'record', u'largest', u'rise', u'child', u'protect', u'order']
[u'teen', u'face', u'court', u'high', u'speed', u'chase']
[u'timber', u'industri', u'back', u'edward', u'quit']
[u'time', u'short', u'fund', u'highway', u'altern']
[u'talk', u'leav', u'union', u'upbeat']
[u'tokyo', u'bours', u'close', u'earli']
[u'toll', u'patrick', u'reject']
[u'toll', u'quiet', u'takeov', u'rule']
[u'tourist', u'die', u'surf', u'mishap']
[u'turf', u'club', u'consid', u'shake']
[u'student', u'killer', u'sentenc', u'death']
[u'union', u'fear', u'bendigo', u'telstra', u'worker', u'job']
[u'union', u'say', u'polic', u'station', u'highlight', u'staff']
[u'union', u'upset', u'late', u'notic', u'telstra', u'sack']
[u'uni', u'lower', u'entranc', u'score', u'secur', u'student']
[u'uni', u'whyalla', u'campus', u'ter', u'slight']
[u'workplac', u'agreement', u'decis']
[u'refus', u'talk', u'iran']
[u'viduka', u'score', u'boro']
[u'visa', u'delay', u'threaten', u'confer', u'speech']
[u'volunt', u'centr', u'await', u'fund', u'news']
[u'walwa', u'bush', u'nurs', u'centr', u'offici', u'open']
[u'washington', u'portrait', u'tip', u'sale', u'record']
[u'swear', u'governor']
[u'weapon', u'smuggler', u'fin']
[u'weather', u'slow', u'search', u'australian', u'hiker']
[u'problem', u'darwin', u'park', u'inspector']
[u'westfield', u'sorri', u'wheelchair', u'ordeal']
[u'wheelchair', u'bind', u'forc', u'crawl']
[u'wine', u'group', u'reject', u'idea', u'govt']
[u'wollondilli', u'shoalhaven', u'land', u'valu', u'fall']
[u'woman', u'surviv', u'shoot', u'head']
[u'world', u'unprepar', u'bird', u'annan']
[u'wristwatch', u'head', u'malaria']
[u'celebr', u'panda', u'coupl']
[u'abandon', u'car', u'move', u'conserv', u'area']
[u'accid', u'spark', u'crackdown', u'log', u'truck']
[u'accus', u'cocain', u'smuggler', u'refus', u'bail']
[u'accus', u'deni', u'cronulla', u'lifesav', u'assault']
[u'aerial', u'survey', u'help', u'beaudesert', u'shire', u'plan']
[u'aircrew', u'cast', u'doubt', u'king', u'mainten']
[u'alli', u'health', u'worker', u'welcom', u'propos', u'shake']
[u'alma', u'pool', u'like', u'remain', u'close']
[u'asian', u'leader', u'welcom', u'jong', u'china', u'talk']
[u'aussi', u'healey', u'win']
[u'australia', u'post', u'worker', u'jail', u'manslaught']
[u'australia', u'west', u'indi', u'postpon', u'test', u'seri']
[u'aust', u'timor', u'trial']
[u'author', u'clarifi', u'water', u'trade']
[u'boss', u'attack', u'iraq', u'inquiri']
[u'babi', u'doll', u'nighti', u'awaken', u'fashion']
[u'luck', u'blame', u'tunnel', u'collaps', u'say', u'report']
[u'bevan', u'lead', u'tiger', u'resist']
[u'probe', u'scandal', u'link']
[u'bird', u'drug', u'warn']
[u'blaze', u'destroy', u'dubbo', u'hous']
[u'bogomolov', u'fin', u'heat', u'open', u'exchang']
[u'boom', u'time', u'hunter', u'economi']
[u'boral', u'wage', u'agreement', u'ratifi']
[u'bowl', u'club', u'consid', u'weston', u'merger']
[u'brisban', u'make', u'world', u'busi']
[u'busi', u'chamber', u'back', u'papuan', u'detent']
[u'cabooltur', u'hospit', u'intensifi']
[u'cahil', u'strike', u'see', u'everton', u'chelsea', u'clash']
[u'canberra', u'blaze', u'kill', u'hospit']
[u'carpent', u'nomin']
[u'cassano', u'debut', u'goal', u'give', u'real', u'advantag']
[u'charg', u'lay', u'hobart', u'street', u'robberi']
[u'check', u'save', u'fisherman']
[u'claim', u'log', u'damag', u'water', u'suppli']
[u'clijster', u'fear', u'injuri', u'australian', u'open']
[u'clijster', u'limp', u'australian', u'open', u'round']
[u'climat', u'pact', u'caus', u'temperatur', u'rise', u'report']
[u'clear', u'cardwel', u'councillor', u'briberi', u'claim']
[u'coolgardi', u'storm', u'clean', u'continu']
[u'corbi', u'half', u'brother', u'jail', u'drug', u'charg']
[u'corbi', u'year', u'sentenc', u'reinstat']
[u'corbi', u'half', u'brother', u'face', u'drug', u'charg']
[u'council', u'consid', u'concern']
[u'coupl', u'jail', u'wendi', u'finger', u'scam']
[u'court', u'order', u'temporari', u'stay', u'deport']
[u'court', u'reinstat', u'corbi', u'sentenc']
[u'croc', u'remov', u'darwin', u'home']
[u'custom', u'seiz', u'perform', u'enhanc', u'drug']
[u'cyclon', u'daryl', u'expect', u'intensifi']
[u'cyclon', u'daryl', u'strengthen']
[u'cyclon', u'daryl', u'warn', u'extend']
[u'dallaglio', u'england', u'squad']
[u'damag', u'world', u'yacht', u'head', u'albani']
[u'defenc', u'doctor', u'wont', u'plug', u'hospit']
[u'dokic', u'unfaz', u'report', u'father', u'latest', u'rant']
[u'dozen', u'russian', u'cold', u'snap']
[u'drill', u'yield', u'promis', u'gold', u'prospect']
[u'drown', u'prompt', u'beach', u'safeti', u'remind']
[u'east', u'timor', u'withhold', u'abus', u'report']
[u'content', u'california']
[u'energi', u'firm', u'fin', u'smelli', u'soil']
[u'timor', u'play', u'damn', u'report']
[u'policeman', u'good', u'behaviour', u'bond']
[u'extrem', u'cold', u'hit', u'russia']
[u'father', u'rant', u'tour', u'worri', u'dokic']
[u'fear', u'asian', u'bird', u'affect', u'abalon', u'industri']
[u'featheri', u'trail', u'lead', u'polic', u'thief']
[u'feder', u'untroubl', u'second', u'round']
[u'ravag', u'hous', u'demolish']
[u'flash', u'flood', u'follow', u'central', u'west', u'rain']
[u'flood', u'close', u'pacif', u'highway', u'near', u'ballina']
[u'freight', u'group', u'welcom', u'failur', u'patrick', u'takeov']
[u'freightlink', u'doubl', u'stack', u'contain']
[u'fruit', u'outbreak', u'record', u'region']
[u'geolog', u'blame', u'tunnel', u'collaps']
[u'gerran', u'eye', u'victori', u'davi', u'break', u'tour']
[u'giant', u'jellyfish', u'stymi', u'japanes', u'fishermen']
[u'glori', u'score', u'vital', u'knight']
[u'govt', u'ignor', u'mental', u'health', u'advoc']
[u'govt', u'threaten', u'judg', u'independ', u'societi']
[u'govt', u'tell', u'save', u'whale']
[u'govt', u'loom', u'coal', u'rail', u'legal']
[u'govt', u'urg', u'fund', u'patrol']
[u'govt', u'urg', u'relax', u'veget', u'manag', u'fund']
[u'govt', u'urg', u'speed', u'patel', u'patient', u'medic']
[u'govt', u'warn', u'jail', u'secur', u'flaw', u'opposit']
[u'group', u'angri', u'prison', u'offic', u'suspens']
[u'grower', u'mcguigan', u'suspend', u'contract']
[u'half', u'brother', u'trial', u'corbi']
[u'hama', u'offic', u'shut', u'ahead', u'vote', u'isra']
[u'hang', u'glider', u'die', u'tocumw']
[u'health', u'dept', u'assess', u'flood', u'diseas', u'risk']
[u'heavi', u'rain', u'bring', u'flash', u'flood', u'warn']
[u'heavi', u'rain', u'close', u'access', u'road', u'remot', u'communiti']
[u'heavi', u'vehicl', u'abl', u'newel', u'highway']
[u'hewitt', u'knock', u'australian', u'open']
[u'hewitt', u'readi', u'chela', u'grudg', u'match']
[u'high', u'rise', u'support', u'puzzl', u'resid', u'group']
[u'hingi', u'record', u'easi', u'victori', u'melbourn']
[u'patient', u'push', u'unprotect', u'court', u'tell']
[u'home', u'safe', u'firefight', u'contain', u'blaze']
[u'hous', u'figur', u'confirm', u'construct', u'slowdown']
[u'iemma', u'stand', u'snowi', u'hydro', u'sale']
[u'illeg', u'fish', u'measur', u'spark', u'indonesian', u'concern']
[u'immigr', u'offici', u'guard', u'asylum', u'seeker', u'cape']
[u'incent', u'boost', u'apprentic', u'retent']
[u'independ', u'cabinet', u'spot', u'rann']
[u'indonesia', u'approv', u'detent', u'facil']
[u'indonesian', u'test', u'toddler', u'die', u'bird']
[u'inmat', u'plead', u'guilti', u'jailbreak', u'charg']
[u'irrig', u'support', u'call', u'compo', u'probe']
[u'jackson', u'accept', u'chief', u'judg', u'apolog']
[u'jaeger', u'coach', u'straight', u'train', u'camp']
[u'jam', u'bond', u'ride', u'aston', u'martin']
[u'jayasuriya', u'rejoin', u'lankan', u'squad']
[u'jockey', u'suspend', u'post', u'race', u'punch']
[u'juventus', u'hold', u'chievo']
[u'katherin', u'miss', u'day']
[u'katich', u'miss', u'south', u'african', u'clash']
[u'kidnapp', u'demand', u'releas', u'femal', u'iraqi']
[u'knight', u'prim', u'hagan', u'say', u'john']
[u'labor', u'warn', u'post', u'hill']
[u'lake', u'feder', u'resort', u'land', u'sell']
[u'landhold', u'urg', u'appli', u'tree', u'clear']
[u'leadership', u'talk', u'domin', u'cabinet', u'meet']
[u'aim', u'improv', u'pressur', u'situat']
[u'lindberg', u'conced', u'deceiv', u'wheat', u'deal']
[u'lindberg', u'know', u'iraq', u'payment']
[u'luczak', u'round']
[u'magnet', u'cash', u'holiday', u'tourism']
[u'drown', u'henley', u'beach']
[u'mandurah', u'gunman', u'elud', u'polic']
[u'guilti', u'brother', u'murder']
[u'court', u'huxley', u'assault']
[u'michael', u'jackson', u'clear', u'anim', u'mistreat']
[u'mine', u'construct', u'drive', u'job', u'growth', u'report']
[u'chang', u'rail', u'timet']
[u'chines']
[u'urg', u'elector', u'shake']
[u'plead', u'guilti', u'drink', u'drive']
[u'museum', u'reneg', u'phar', u'loan']
[u'nepal', u'king', u'cut', u'phone', u'servic']
[u'coach', u'straight', u'train', u'camp']
[u'minist', u'urg', u'review', u'bunburi', u'region', u'scheme']
[u'saddam', u'judg']
[u'technolog', u'boost', u'music', u'festiv']
[u'nigerian', u'offici', u'talk', u'gang', u'minist']
[u'special', u'treatment', u'papuan', u'vanston']
[u'round', u'jezzin', u'barrack', u'kiss']
[u'health', u'welcom', u'work', u'forc', u'overhaul']
[u'plane', u'crash', u'kill']
[u'weather', u'studi', u'long', u'term', u'project']
[u'price', u'japanes', u'internet', u'scandal', u'hit', u'market']
[u'papuan', u'asylum', u'seeker', u'face', u'death', u'return']
[u'papuan', u'send', u'christma']
[u'papuan', u'treat', u'refuge', u'group']
[u'partnership', u'reserv']
[u'pegler', u'wont', u'contest', u'state', u'elect']
[u'pension', u'protest', u'age', u'care', u'closur']
[u'pierc', u'dump', u'australian', u'open']
[u'polic', u'basi', u'charg', u'rann']
[u'polic', u'progress', u'crime', u'investig']
[u'polic', u'prais', u'public', u'help', u'palm', u'beach', u'violenc']
[u'polic', u'target', u'seatbelt', u'mobil', u'phone']
[u'pont', u'back', u'gilli', u'open']
[u'product', u'commiss', u'back', u'health', u'shake']
[u'protest', u'highlight', u'unjustifi', u'mutton', u'bird']
[u'public', u'urg', u'respond', u'drug', u'dealer', u'hotlin']
[u'countri', u'worker', u'plan']
[u'race', u'board', u'review', u'jockey', u'safeti']
[u'rape', u'victim', u'seek', u'compens']
[u'redback', u'post', u'easi', u'victori']
[u'rescuer', u'head', u'crash', u'site']
[u'resid', u'action', u'tourism', u'develop']
[u'resourc', u'bolster', u'market']
[u'reward', u'offer', u'doubl', u'murder', u'clue']
[u'ricciuto', u'minor', u'surgeri']
[u'rush', u'await', u'bali', u'sentenc', u'submiss']
[u'rush', u'hear', u'sentenc', u'request']
[u'sack', u'lake', u'committe', u'say', u'work', u'finish']
[u'invest', u'river', u'murray', u'project']
[u'school', u'cutback', u'threaten', u'disabl', u'student']
[u'school', u'leaver', u'receiv', u'offer']
[u'scientist', u'governor', u'post']
[u'rare', u'occurr']
[u'search', u'escap', u'prison', u'go', u'interst']
[u'seven', u'communiti', u'member', u'join', u'museum', u'board']
[u'iraqi', u'women', u'detaine', u'free']
[u'stanhop', u'plan', u'cabinet', u'reshuffl']
[u'stanhop', u'turn', u'retir', u'villag']
[u'state', u'launch', u'indigen', u'substanc', u'abus', u'strategi']
[u'storm', u'damag', u'gambier', u'properti']
[u'stosur', u'stay', u'aliv', u'melbourn']
[u'strong', u'show', u'nation', u'murray', u'darl']
[u'surfest', u'secur', u'sponsor']
[u'taiwan', u'presid', u'nomin', u'premier']
[u'talk', u'continu', u'sawmil', u'futur']
[u'teen', u'charg', u'riot', u'reveng', u'attack']
[u'telstra', u'open', u'chang', u'tower', u'plan']
[u'telstra', u'pledg', u'talk', u'sack', u'worker']
[u'test', u'reveal', u'superior', u'drug', u'combin']
[u'thai', u'teen', u'attack', u'telephon', u'tower']
[u'farm', u'hous']
[u'toowoomba', u'sister', u'choos', u'game', u'squash']
[u'townsvill', u'hospit', u'emerg', u'dept', u'stay', u'open']
[u'state', u'oper', u'tackl', u'traffic']
[u'truck', u'crash', u'bring', u'powerlin']
[u'turf', u'club', u'urg', u'finish', u'master', u'plan']
[u'dead', u'separ', u'road', u'crash']
[u'demand', u'drop', u'fee', u'rise', u'union']
[u'increas', u'student', u'offer']
[u'send', u'placement', u'offer']
[u'workplac', u'agreement']
[u'unrest', u'kill', u'dozen', u'drought', u'stricken', u'kenya']
[u'uralla', u'hall', u'rebuild', u'prove', u'cost']
[u'vanston', u'defend', u'attempt', u'deport', u'turkish']
[u'vcat', u'hear', u'industri', u'site', u'sewer', u'debat']
[u'vcat', u'hold', u'dutson', u'down', u'direct', u'hear']
[u'word', u'erupt', u'tassi', u'devil', u'export']
[u'warrior', u'batsmen', u'need', u'time', u'middl']
[u'water', u'woe', u'forc', u'irrig', u'look', u'goulburn']
[u'weatheril', u'upbeat', u'cold', u'store', u'issu']
[u'western', u'region', u'short', u'water']
[u'clash']
[u'whale', u'dump', u'japanes', u'embassi']
[u'whaler', u'accus', u'greenpeac', u'lie']
[u'whitsunday', u'tourism', u'dip']
[u'widow', u'sue', u'father', u'win']
[u'wind', u'hamper', u'port', u'latta', u'firefight', u'effort']
[u'winemak', u'wast', u'water', u'irrig']
[u'worker', u'compo', u'deal', u'bring', u'employ', u'rebat']
[u'year', u'scratchi']
[u'chief', u'bald', u'resign']
[u'highlight', u'uniqu', u'popul']
[u'accus', u'crimin', u'arrest', u'sydney']
[u'appoint', u'pave', u'merger']
[u'airport', u'expect', u'extens', u'attract', u'flight']
[u'alic', u'spring', u'crash', u'injur']
[u'black', u'lauaki', u'charg', u'assault']
[u'armstrong', u'tip', u'ullrich', u'tour', u'victori']
[u'arrest', u'tobacco', u'haul']
[u'assur', u'seek', u'vasiljkov', u'extradit']
[u'kill', u'india', u'crash']
[u'aussi', u'gile', u'share', u'pakistan', u'open', u'lead']
[u'aussi', u'blood', u'open', u'pair']
[u'australia', u'stamp', u'featur', u'barri', u'humphri']
[u'australia', u'popul', u'grow', u'faster', u'china']
[u'lose', u'monopoli', u'howard']
[u'know', u'flag', u'inquiri', u'tell']
[u'staff', u'offer', u'indemn', u'wheat', u'deal']
[u'barn', u'miller']
[u'lade', u'warn', u'fresh', u'attack']
[u'blair', u'leak', u'memo']
[u'blind', u'woman', u'recov', u'sight', u'heart', u'attack']
[u'bropho', u'jail', u'indec', u'deal']
[u'burglar', u'home', u'video', u'aid', u'polic']
[u'driver', u'strike', u'loom']
[u'cabinet', u'reshuffl', u'expect', u'hill', u'resign']
[u'cahil', u'back', u'lion', u'surviv']
[u'canberra', u'popul', u'tip', u'grow']
[u'captain', u'kirk', u'sell', u'kidney', u'stone', u'chariti']
[u'chang', u'afoot', u'oilse', u'crush', u'plant']
[u'charter', u'tower', u'prepar', u'giant', u'cricket', u'carniv']
[u'china', u'favour', u'townsvill', u'aluminium', u'smelter']
[u'communiti', u'commemor', u'crash', u'victim']
[u'conroy', u'link', u'latest', u'listeria', u'case']
[u'corbi', u'devast', u'court', u'rule']
[u'corbi', u'devast', u'news', u'sentenc', u'increas']
[u'corbi', u'lawyer', u'rule', u'pardon']
[u'coron', u'rule', u'inquest', u'refuge', u'death']
[u'coron', u'urg', u'compulsori', u'smoke', u'alarm']
[u'council', u'advis', u'didnt', u'breach', u'regul']
[u'council', u'reject', u'environment', u'chang']
[u'councillor', u'tell', u'learn', u'consult']
[u'council', u'form', u'theatr', u'locat', u'work', u'parti']
[u'council', u'probe', u'tree', u'poison']
[u'council', u'rais', u'water', u'contamin', u'fear']
[u'countri', u'music', u'fan', u'descend', u'tamworth']
[u'court', u'order', u'council', u'worker', u'communiti', u'work']
[u'cyclon', u'daryl', u'buffet', u'broom']
[u'cyclon', u'daryl', u'move', u'coast']
[u'darwin', u'charg', u'kidnap']
[u'dauth', u'take', u'australian', u'role']
[u'davenport', u'surviv', u'sear', u'heat', u'henin', u'hardenn']
[u'dead', u'hous', u'rock', u'close', u'knit', u'mudamuckla']
[u'defenc', u'minist', u'robert', u'hill', u'retir']
[u'dept', u'file', u'complaint', u'alcan', u'worker', u'injuri']
[u'detaine', u'hold', u'isol', u'disput']
[u'doubt', u'cast', u'product', u'commiss']
[u'driver', u'clock', u'highlight', u'loophol']
[u'dubbo', u'program', u'intern']
[u'evid', u'suggest', u'mackay', u'skill', u'labour', u'rate']
[u'factori', u'blaze', u'caus', u'damag']
[u'famili', u'colleagu', u'farewel', u'policewoman', u'kill']
[u'farm', u'group', u'fear', u'impact', u'possibl', u'foster', u'wineri']
[u'fear', u'rare', u'butterfli', u'extinct']
[u'feder', u'cours', u'join', u'time', u'great', u'roch']
[u'find', u'forc', u'halt', u'studi']
[u'firearm', u'offend', u'get', u'suspend', u'sentenc']
[u'firefight', u'contain', u'wimmera', u'blaze']
[u'threaten', u'kangaroo', u'resid']
[u'threaten', u'east', u'home']
[u'foreign', u'suicid', u'attack', u'afghan']
[u'forest', u'author', u'probe', u'water', u'test', u'concern']
[u'nepal', u'hous', u'arrest']
[u'franc', u'threaten', u'terrorist', u'state', u'nuclear']
[u'fridg', u'magnet', u'tinker', u'poetri']
[u'funer', u'hold', u'egypt', u'crash', u'victim']
[u'ginninderra', u'school', u'decis', u'loom']
[u'gippsland', u'blaze', u'threaten', u'home']
[u'golden', u'circl', u'can', u'peach', u'purchas']
[u'govt', u'deni', u'water', u'plan', u'suppress']
[u'govt', u'fishermen', u'plan', u'talk', u'protect', u'zone']
[u'govt', u'reject', u'bypass', u'fund']
[u'govt', u'reject', u'mutton', u'bird', u'hunt', u'opposit']
[u'govt', u'seek', u'confirm', u'corbi', u'sentenc']
[u'govt', u'sign', u'southern', u'tableland', u'wind', u'farm']
[u'govt', u'cabooltur', u'hospit', u'plan']
[u'grazier', u'watch', u'eas', u'beef', u'access', u'korea']
[u'greenpeac', u'leav', u'southern', u'ocean']
[u'greenpeac', u'vow', u'whale', u'protest']
[u'habitu', u'drink', u'driver', u'face', u'court']
[u'health', u'commiss', u'settl', u'patel', u'compo', u'case']
[u'hewitt', u'pierc', u'head', u'seed', u'casualti', u'list']
[u'hewitt', u'say', u'court', u'contribut', u'loss']
[u'hill', u'announc', u'resign']
[u'hill', u'name', u'navi', u'ship']
[u'hill', u'silent', u'specul']
[u'patient', u'didnt', u'care', u'partner']
[u'home', u'raid', u'perform', u'enhanc', u'drug']
[u'howard', u'ponder', u'replac', u'hill']
[u'howard', u'urg', u'promot', u'abetz']
[u'hunter', u'prospect', u'look', u'good']
[u'back', u'zimbabw', u'test', u'decis']
[u'iemma', u'beef', u'riot', u'repris', u'probe']
[u'iemma', u'reject', u'claim', u'riot', u'footag', u'cover']
[u'illawarra', u'urg', u'health', u'studi']
[u'indonesia', u'detain', u'bali', u'bomb', u'suspect']
[u'indonesian', u'skipper', u'charg']
[u'indonesia', u'reject', u'papuan', u'genocid', u'claim']
[u'inquest', u'probe', u'medic', u'care', u'detaine']
[u'investig', u'begin', u'fatal', u'compani', u'plane']
[u'investor', u'file', u'class', u'action', u'telstra']
[u'iraq', u'prepar', u'elect', u'result']
[u'itali', u'begin', u'iraq', u'troop', u'withdraw']
[u'ivorian', u'youth', u'leader', u'call', u'anti', u'protest']
[u'japan', u'impos', u'beef', u'koizumi']
[u'judg', u'outburst', u'undermin', u'public', u'trust', u'jackson']
[u'killer', u'climb', u'decid', u'gerran']
[u'labor', u'seek', u'inquiri', u'refuge', u'death']
[u'landhold', u'reject', u'pacif', u'highway', u'upgrad', u'rout']
[u'latham', u'accus', u'punch', u'photograph']
[u'latham', u'alleg', u'attack', u'photograph']
[u'laugh', u'stock', u'burglar', u'send', u'prison']
[u'hogg', u'lead', u'aussi', u'victori']
[u'legit', u'music', u'download', u'take', u'say', u'industri']
[u'lindberg', u'deni', u'ignor', u'payment', u'warn']
[u'livestock', u'industri', u'pioneer', u'die']
[u'loxton', u'secur', u'scholarship']
[u'macquari', u'outlin', u'reason']
[u'magic', u'million', u'remain', u'true']
[u'die', u'hang', u'glide', u'mishap']
[u'mayor', u'see', u'benefit', u'site', u'plan', u'pulp']
[u'mcginti', u'throw', u'support', u'carpent']
[u'million', u'salt', u'scheme']
[u'miner', u'set', u'sight', u'higher', u'grade', u'miner', u'sand']
[u'miner', u'help', u'market', u'small', u'gain']
[u'mitsubishi', u'confirm', u'cut']
[u'mitsubishi', u'expect', u'adelaid', u'job']
[u'mix', u'year', u'aust', u'wine', u'industri']
[u'bali', u'trial', u'adjourn']
[u'formalis', u'citi', u'violenc', u'crackdown']
[u'gambier', u'count', u'cost', u'storm', u'damag']
[u'museum', u'chang', u'heart', u'phar', u'loan']
[u'nalbandian', u'grind', u'round', u'victori']
[u'nasa', u'pluto', u'probe', u'take']
[u'nation', u'park', u'blaze', u'forc', u'camper', u'evacu']
[u'neighbour', u'charg', u'steal', u'water']
[u'neighbour', u'cover', u'bird', u'turkey']
[u'nigerian', u'milit', u'resum', u'attack']
[u'year', u'sentenc', u'attack', u'prison', u'worker']
[u'stop', u'feder', u'say', u'hewitt']
[u'north', u'coast', u'place', u'handl', u'properti']
[u'surviv', u'hungari', u'plane', u'crash']
[u'opposit', u'vow', u'fee', u'good', u'driver']
[u'orang', u'crime', u'prevent', u'scrutini']
[u'industri', u'accus', u'poach', u'train']
[u'papuan', u'refuge', u'relat', u'shoot', u'kill']
[u'papuan', u'file', u'asylum', u'dimia']
[u'park', u'blaze', u'spread']
[u'play', u'suspend', u'outsid', u'court', u'melbourn']
[u'polic', u'rhino', u'arsenal']
[u'polic', u'drown', u'victim']
[u'polic', u'beat', u'fight', u'indigen', u'substanc']
[u'polic', u'urg', u'bushwalk', u'prepar']
[u'polic', u'widen', u'hunt', u'suspect', u'killer']
[u'polic', u'widen', u'search', u'miss']
[u'polic', u'determin', u'wagga', u'man', u'caus', u'death']
[u'prawn', u'research', u'offer', u'fisher', u'fund']
[u'protea', u'dismiss', u'aussi']
[u'public', u'warn', u'high', u'weekend', u'threat']
[u'rafter', u'support', u'hewitt', u'court', u'stanc']
[u'rain', u'bring', u'weed', u'woe']
[u'rain', u'damag', u'stuart', u'highway']
[u'region', u'subsidis', u'citi', u'health', u'servic']
[u'releas', u'video', u'prompt', u'swift', u'action', u'moroney']
[u'remot', u'area', u'healthier', u'food', u'choic']
[u'resid', u'urg', u'continu', u'follow', u'water']
[u'rfds', u'continu']
[u'riot', u'investig', u'need', u'polic', u'opposit']
[u'riot', u'probe', u'boss', u'remov', u'amid', u'footag', u'uproar']
[u'roadwork', u'boost', u'roadhous', u'communiti', u'popul']
[u'robert', u'long', u'shoot', u'leadership', u'academ']
[u'roddick', u'breez', u'fourth', u'round']
[u'rspca', u'want', u'rodeo', u'stop']
[u'russia', u'reject', u'west', u'critic', u'democraci']
[u'second', u'unit', u'liverpool']
[u'senden', u'classic', u'hunt']
[u'serena', u'tumbl', u'open']
[u'optimist', u'rain', u'eas']
[u'sharapova', u'stay', u'cours', u'serena', u'showdown']
[u'shark', u'reject', u'dolphin', u'harm', u'find']
[u'sheep', u'bodi', u'see', u'strong']
[u'shire', u'resid', u'mozzi', u'woe']
[u'shopper', u'leav', u'jewelleri', u'cash', u'trolley']
[u'snowi', u'hydro', u'sale', u'plan', u'spark', u'tumut', u'river', u'worri']
[u'socceroo', u'pick', u'south', u'german', u'palac', u'base']
[u'sorenstam', u'rule', u'men', u'british', u'open']
[u'soul', u'singer', u'wilson', u'pickett', u'die']
[u'steel', u'win', u'game', u'select']
[u'storm', u'cut', u'power', u'victorian']
[u'storm', u'damag', u'affect', u'power', u'restor']
[u'storm', u'power', u'tasmania']
[u'stosur', u'feel', u'open', u'pressur']
[u'stosur', u'feel', u'aust', u'open', u'pressur']
[u'strawhorn', u'juri', u'fail', u'reach', u'verdict']
[u'sugar', u'price', u'year', u'high']
[u'suicid', u'bomber', u'strike', u'aviv']
[u'survey', u'find', u'rare', u'anim', u'speci', u'near', u'break', u'hill']
[u'taiwan', u'lift', u'tasmanian', u'fruit']
[u'tech', u'stock', u'lead', u'market']
[u'telstra', u'lighthous', u'plan', u'handl']
[u'depor', u'edg', u'valencia']
[u'terrorist', u'suspect', u'deni', u'bail']
[u'thuringowa', u'build', u'approv', u'rise']
[u'toll', u'pursu', u'patrick', u'corp', u'takeov']
[u'town', u'brace', u'cyclon', u'daryl']
[u'townsvill', u'await', u'solar', u'citi', u'announc']
[u'tunnel', u'report', u'spark', u'safeti', u'concern']
[u'twister', u'lash', u'south', u'western', u'victoria']
[u'underworld', u'killer', u'say', u'murder', u'self', u'defenc']
[u'union', u'keen', u'talk', u'garbo', u'return']
[u'union', u'take', u'wait', u'approach', u'rosita', u'plant']
[u'unit', u'marin', u'draw', u'adelaid']
[u'say', u'syria', u'promis', u'cooper', u'hariri']
[u'dead', u'hungarian', u'plane', u'crash']
[u'demand', u'quick', u'action', u'iran']
[u'examin', u'lade', u'tape', u'reject', u'truce']
[u'hold', u'iraqi', u'femal', u'detaine', u'despit', u'murder']
[u'play', u'itali', u'iraq', u'pullout']
[u'reject', u'lade', u'truce', u'offer']
[u'vicroad', u'urg', u'rethink', u'tree', u'remov', u'plan']
[u'viduka', u'link', u'everton']
[u'warrior', u'rooki', u'disciplin', u'drink', u'drive', u'charg']
[u'western', u'lightn', u'spark', u'bushfir']
[u'west', u'puan', u'activist', u'group', u'claim', u'indonesian']
[u'rule', u'bird', u'iraqi', u'teen', u'death']
[u'woman', u'kill', u'crash', u'polic', u'chase']
[u'call', u'govt', u'boost']
[u'adelaid', u'heatwav', u'test', u'electr', u'suppli']
[u'alcan', u'accept', u'dept', u'complaint', u'worker', u'injuri']
[u'zawahri', u'tape', u'prais', u'fighter']
[u'analyst', u'back', u'carpent', u'premier']
[u'angler', u'watch', u'illeg', u'fish']
[u'arsenal', u'sign', u'southampton', u'teenag', u'walcott']
[u'aussi', u'prepar', u'denmark', u'royal', u'christen']
[u'aussi', u'winter', u'olymp', u'hope', u'crown', u'world']
[u'australia', u'triumph', u'protea']
[u'execut', u'tell', u'iraq', u'payment', u'inquiri']
[u'bomb', u'wound', u'iraq', u'presid', u'staff']
[u'brett', u'speak', u'grandstand', u'take']
[u'brosqu', u'doubl', u'stun']
[u'bushrang', u'inaugur', u'final']
[u'busi', u'negoti', u'right', u'quinlan']
[u'cabooltur', u'hospit', u'saga', u'dog', u'govt']
[u'campbel', u'keep', u'shoot', u'lead', u'california']
[u'carpent', u'confirm', u'premier']
[u'carpent', u'prove', u'leadership', u'credenti']
[u'work', u'control', u'compass', u'blaze']
[u'chanderpaul', u'retain', u'windi', u'captainci']
[u'child', u'prostitut', u'offend', u'walk', u'free']
[u'child', u'protect', u'worker', u'optimist', u'dept']
[u'chile', u'court', u'strip', u'pinochet', u'immun', u'right', u'case']
[u'clijster', u'roar', u'fourth', u'round']
[u'cole', u'hold', u'maximum', u'secur', u'jail']
[u'cole', u'face', u'court', u'prison', u'escap']
[u'communiti', u'oppos', u'snowi', u'hydro', u'sale', u'plan']
[u'coron', u'caution', u'function', u'organis']
[u'councillor', u'take', u'meteorolog', u'mumbo', u'jumbo']
[u'crew', u'battl', u'fire', u'south', u'east']
[u'crew', u'battl', u'blaze', u'night']
[u'cyclon', u'daryl', u'bypass', u'pilbara']
[u'danish', u'princ', u'name', u'christian']
[u'daryl', u'continu', u'path', u'coast']
[u'davydenko', u'knock', u'wildcard', u'healey']
[u'deadlin', u'pass', u'kidnap', u'journalist']
[u'debut', u'star', u'india']
[u'elect', u'iraqi', u'shiit']
[u'employ', u'group', u'back', u'abetz', u'promot']
[u'eriksson', u'sue', u'fake', u'sheikh']
[u'timor', u'present', u'atroc', u'report']
[u'extrem', u'heat', u'rule', u'appli', u'australian', u'open']
[u'firefight', u'battl', u'blaze']
[u'firefight', u'alert', u'amid', u'heatwav']
[u'forc', u'foil', u'plot', u'iraq', u'shiit', u'leader']
[u'pentagon', u'expert', u'jail', u'give', u'secret']
[u'germani', u'deni', u'spi', u'help', u'iraq']
[u'ghost', u'school', u'haunt', u'hous']
[u'glacier', u'shape', u'mar', u'surfac']
[u'good', u'samaritan', u'reunit', u'owner', u'jewelleri']
[u'googl', u'refus', u'data', u'request']
[u'govt', u'applaud', u'fruit', u'action']
[u'govt', u'question', u'indonesia', u'papua', u'unrest']
[u'govt', u'rule', u'tariff', u'save', u'worker']
[u'govt', u'urg', u'probe', u'papua', u'shoot', u'report']
[u'govt', u'urg', u'seek', u'answer', u'papua', u'shoot']
[u'grammi', u'award', u'recognis', u'bowi', u'pryor']
[u'haa', u'end', u'luczak']
[u'hackett', u'play', u'leadership', u'role', u'commonwealth']
[u'heavi', u'snowfal', u'cover', u'tokyo']
[u'hingi', u'extend', u'fairytal', u'fourth', u'round']
[u'indigen', u'student', u'number', u'rise']
[u'indonesian', u'defenc', u'minist', u'deni', u'report']
[u'indonesia', u'send', u'troop', u'quell', u'papuan', u'upris']
[u'indonesia', u'tie', u'wont', u'affect', u'asylum', u'consider']
[u'iran', u'shift', u'asset', u'amid', u'sanction', u'threat']
[u'japan', u'welcom', u'greenpeac', u'departur']
[u'jaqu', u'bash']
[u'kiefer', u'overcom', u'ferrero']
[u'king', u'hold', u'taipan']
[u'kosovo', u'presid', u'rugova', u'die']
[u'lawyer', u'disput', u'corbi', u'famili', u'drug', u'link']
[u'call', u'restor', u'hospit', u'chapel']
[u'ljubic', u'crack', u'grand', u'slam', u'fourth', u'round']
[u'lose', u'whale', u'swim', u'thame']
[u'luczak', u'healey', u'stosur', u'hand']
[u'mandurah', u'shoot', u'suspect', u'custodi']
[u'mauresmo', u'mind', u'easi']
[u'mexican', u'urg', u'trade', u'gun', u'comput']
[u'montgomeri', u'ask', u'annul', u'drug']
[u'law', u'target', u'homeless', u'qcoss']
[u'mugab', u'pressur', u'zimbabwean', u'parti', u'fund']
[u'nepal', u'protest', u'clash', u'polic']
[u'bushfir', u'threat', u'resid']
[u'defenc', u'minist', u'tough']
[u'link', u'papua', u'shoot', u'asylum', u'seeker']
[u'sack', u'spark', u'polic', u'disgust']
[u'pakistan', u'elect', u'india', u'second', u'test']
[u'pakistan', u'recov', u'indian', u'doubl', u'strike']
[u'palestinian', u'secur', u'forc', u'kick', u'ballot']
[u'polic', u'long', u'escape']
[u'pompey', u'charg', u'redknapp', u'approach']
[u'pont', u'hail', u'world', u'best']
[u'pope', u'gunman', u'jail']
[u'port', u'hedland', u'prepar', u'cyclon', u'daryl']
[u'continu', u'search', u'doctor']
[u'open', u'claxton', u'shield', u'game']
[u'ranger', u'upset']
[u'rescuer', u'work', u'reach', u'trap', u'miner']
[u'resid', u'alert', u'fire', u'intensifi']
[u'riis', u'extend', u'liverpool', u'contract']
[u'riot', u'repris', u'accus', u'grant', u'bail']
[u'robert', u'make', u'premier', u'carpent']
[u'robredo', u'beat', u'blake', u'time']
[u'russian', u'freez', u'death', u'toll', u'top']
[u'sack', u'millward', u'drop', u'helen', u'claim']
[u'great', u'campaign', u'promot', u'local', u'produc']
[u'mull', u'penalti', u'prepar']
[u'schwarzer', u'stay', u'boro']
[u'scientist', u'launch', u'weather', u'studi']
[u'secur', u'forc', u'shoot', u'high', u'school', u'student', u'papua']
[u'serena', u'dethron', u'sharapova', u'roddick']
[u'serena', u'tumbl', u'open']
[u'sharon', u'like', u'respir', u'week', u'aid']
[u'shiit', u'fail', u'iraqi', u'parliamentari', u'major']
[u'sixth', u'seed', u'coria', u'dump', u'grosjean']
[u'lankan', u'unfaz', u'lethal']
[u'stanhop', u'abandon', u'assembl', u'size', u'committe']
[u'stock', u'plung', u'wall', u'street', u'blood', u'bath']
[u'stosur', u'set', u'clash', u'hingi']
[u'sweden', u'south', u'korea', u'lead', u'women', u'world']
[u'swelter', u'temperatur', u'increas', u'bushfir', u'threat']
[u'teacher', u'name', u'darwin', u'favourit', u'citizen']
[u'terrain', u'hamper', u'fight']
[u'terror', u'law', u'comment', u'period', u'extend']
[u'total', u'declar']
[u'triumph', u'sight', u'gerran', u'tour']
[u'send', u'team', u'japan', u'follow', u'beef']
[u'venezuela', u'resum', u'joint', u'drug', u'fight']
[u'victorian', u'firefight', u'need', u'interst', u'help']
[u'waratah', u'impress', u'brumbi']
[u'whale', u'sight', u'treat', u'london']
[u'confirm', u'indonesia', u'bird', u'death']
[u'worker', u'trap', u'flood', u'chines', u'railway']
[u'kill', u'maoist', u'armi', u'clash', u'nepal']
[u'amro', u'hit', u'yarra', u'river']
[u'reject', u'haven', u'propos']
[u'adelaid', u'regist', u'heatwav']
[u'african', u'state', u'split', u'sudanes', u'head']
[u'afridi', u'inzamam', u'consolid', u'pakistan']
[u'half', u'young', u'peopl', u'fail', u'drive', u'test']
[u'asylum', u'seeker', u'christma', u'shock']
[u'author', u'launch', u'probe', u'fatal', u'plane', u'crash']
[u'avalanch', u'kill', u'turkey']
[u'baghdati', u'high', u'toppl', u'roddick']
[u'bangladesh', u'regist', u'mobil', u'user']
[u'beatti', u'ask', u'join', u'lobbi', u'effort']
[u'bond', u'fetch', u'million', u'auction']
[u'brisban', u'injur', u'climb', u'accid']
[u'bushfir', u'threaten']
[u'bushfir', u'sweep', u'town']
[u'bushland', u'flyover', u'check', u'fire']
[u'bushrang', u'heart', u'triumph']
[u'busi', u'group', u'applaud', u'carpent', u'premier']
[u'govt', u'adopt', u'nation', u'water', u'strategi']
[u'camplin', u'leap', u'winter', u'olymp', u'team']
[u'carpent', u'soften', u'style', u'polit']
[u'confer', u'speaker', u'secur', u'visa']
[u'cyclon', u'danger']
[u'cyclon', u'daryl', u'continu', u'weaken']
[u'danish', u'princ', u'take', u'tradit']
[u'davenport', u'set', u'clash', u'henin', u'hardenn']
[u'downer', u'defend', u'dfat', u'action', u'food']
[u'dwellingup', u'bushfir', u'control']
[u'erkisson', u'claim', u'club', u'involv', u'illeg', u'transfer']
[u'extrem', u'heat', u'see', u'play', u'suspend', u'outsid', u'court']
[u'fatal', u'investig', u'continu']
[u'feder', u'polic', u'charg', u'pornographi', u'websit']
[u'feder', u'hingi', u'reign', u'suprem', u'australian', u'open']
[u'feder', u'classi', u'mirnyi']
[u'approach', u'home', u'near', u'zeehan']
[u'riverina']
[u'crew', u'investig', u'power', u'station', u'explos']
[u'destroy', u'heritag', u'build']
[u'firefight', u'issu', u'kangaroo', u'warn']
[u'threaten', u'town']
[u'flame', u'thrash', u'ranger']
[u'french', u'fail', u'qualifi']
[u'georg', u'washington', u'portrait', u'net', u'record']
[u'gerran', u'triumph', u'tour']
[u'govt', u'defend', u'prison', u'secur', u'escape']
[u'govt', u'launch', u'program', u'respons', u'cronulla']
[u'govt', u'plan', u'famili', u'friend', u'measur', u'boost']
[u'hagan', u'coach', u'eel']
[u'hand', u'pedersen', u'leav', u'souness', u'fear']
[u'health', u'crisi', u'hit', u'hospit', u'opposit', u'say']
[u'heat', u'caus', u'blackout', u'adelaid']
[u'helicopt', u'crash', u'near', u'mudge']
[u'histor', u'queanbeyan', u'hous', u'renov']
[u'home', u'think', u'burn', u'fire', u'spread']
[u'home', u'think', u'burn', u'fire', u'spread']
[u'howard', u'prepar', u'cabinet', u'reshuffl']
[u'howard', u'thank', u'outgo', u'minist']
[u'huge', u'turnout', u'festiv']
[u'iemma', u'issu', u'aust', u'behaviour', u'warn']
[u'india', u'fight', u'pakistan', u'riot', u'second']
[u'indigen', u'leader', u'clear', u'mine', u'royalti']
[u'indonesian', u'flood', u'forc', u'thousand', u'flee']
[u'inter', u'beat', u'palermo', u'juve', u'lead']
[u'inzamam', u'afridi', u'pakistan', u'control']
[u'iranian', u'tension', u'opec']
[u'iraq', u'journalist', u'free', u'troop']
[u'isra', u'court', u'find', u'guilti', u'sharon', u'death']
[u'israel', u'warn', u'iran', u'nuclear', u'option']
[u'jayasuriya', u'help', u'lanka', u'post', u'impos', u'target']
[u'jet', u'jump', u'second', u'place', u'leagu', u'ladder']
[u'journalist', u'watchdog', u'appeal', u'iraq', u'hostag']
[u'kate', u'moss', u'seek', u'interview', u'polic', u'drug']
[u'kelli', u'kersten', u'shine']
[u'king', u'record', u'gritti', u'hawk']
[u'die', u'suspect', u'cliff', u'fall']
[u'mckenzi', u'prais', u'waratah', u'rooki']
[u'minchin', u'urg', u'scrap', u'super', u'tax']
[u'mona', u'lisa', u'sculptur', u'austria']
[u'music', u'fan', u'rock']
[u'manag', u'talk', u'pastor', u'program']
[u'elect', u'surgeri', u'wait', u'list', u'quadrupl']
[u'warn', u'foster', u'parent', u'shortag']
[u'parliament', u'move', u'delay', u'ukrain', u'deal']
[u'patterson', u'quit', u'cabinet', u'macdonald', u'sack']
[u'pilot', u'injur', u'firefight', u'helicopt', u'crash']
[u'pilot', u'kill', u'helicopt', u'crash']
[u'polic', u'suspect', u'arson', u'dead', u'hous']
[u'real', u'come', u'cadiz']
[u'cross', u'helicopt', u'miss', u'pakistan']
[u'rescu', u'thame', u'whale', u'die']
[u'rescuer', u'race', u'clock', u'save', u'whale', u'lose', u'london']
[u'rescu', u'save', u'whale', u'lose', u'london']
[u'roddick', u'knock', u'australian', u'open']
[u'roddick', u'open', u'huge', u'upset']
[u'firefight', u'battl', u'major', u'blaze']
[u'santoro', u'grand', u'slam', u'quarter', u'final']
[u'search', u'help', u'solv', u'antonio', u'case']
[u'search', u'miss', u'fisherman']
[u'senden', u'bank', u'feel', u'good', u'factor', u'california']
[u'sharapova', u'tough', u'reach', u'australian', u'open']
[u'sharon', u'condit', u'unchang', u'hospit']
[u'sixth', u'seed', u'petrova', u'quarter']
[u'smuggl', u'accus', u'deni', u'know', u'drug']
[u'sorenstam', u'neumann', u'sweden', u'charg']
[u'spanish', u'team', u'seek', u'root', u'columbus']
[u'spenc', u'push', u'uniform', u'law']
[u'lanka', u'toppl', u'aussi']
[u'storm', u'power', u'central', u'victoria']
[u'stosur', u'line', u'swiss', u'miss']
[u'tasmania', u'join', u'court', u'challeng']
[u'teen', u'hurt', u'polic', u'chase', u'crash']
[u'tourist', u'die', u'snorkel']
[u'sydney', u'hous']
[u'trap', u'coal', u'miner', u'dead']
[u'kill', u'india', u'crash']
[u'offic', u'guilti', u'kill', u'iraqi', u'soldier']
[u'swelter', u'heat', u'soar']
[u'town', u'remain', u'bushfir', u'threat']
[u'cabinet', u'reshuffl', u'specul', u'begin']
[u'team', u'fight', u'illeg', u'fish']
[u'waterfront', u'author', u'canvass', u'artist', u'opinion']
[u'west', u'coast', u'blaze', u'scorch', u'hectar']
[u'wild', u'storm', u'whip']
[u'wind', u'bushfir']
[u'wind', u'increas', u'zeehan', u'threat']
[u'young', u'liber', u'vote', u'dump', u'abstudi']
[u'kill', u'brazil', u'crash']
[u'chairman', u'term']
[u'account', u'debat', u'compo', u'issu']
[u'firefight', u'alert', u'ahead']
[u'leader', u'join', u'school', u'valu', u'debat']
[u'continu', u'child', u'porn', u'websit', u'investig']
[u'agca', u'releas']
[u'stumbl', u'wake', u'plung']
[u'aussi', u'gear', u'pont']
[u'australia', u'invest', u'littl']
[u'author', u'suspect', u'bushfir', u'deliber']
[u'canberra', u'tourist', u'potenti', u'govern', u'urg']
[u'baghdad', u'bomb', u'kill']
[u'bali', u'accus', u'rush', u'face', u'life', u'death']
[u'bali', u'blow', u'local', u'court']
[u'bank', u'review', u'write', u'indigen', u'loan']
[u'barca', u'extend', u'lead', u'alav']
[u'beatti', u'latest', u'health', u'plan', u'draw', u'mix', u'reaction']
[u'begg', u'smith', u'snare', u'world', u'doubl']
[u'crowd', u'flock', u'countri', u'music', u'festiv']
[u'black', u'cairn', u'quit', u'intern', u'game']
[u'boat', u'ramp', u'access', u'issu']
[u'bodi', u'rag', u'victoria']
[u'bodi', u'iraqi', u'polic', u'recruit']
[u'bolivia', u'swear', u'indigen', u'presid']
[u'brit', u'accus', u'spi', u'moscow']
[u'brit', u'januari', u'gloomiest']
[u'bronz', u'aussi', u'cyclist']
[u'build', u'collaps', u'nairobi']
[u'bushfir', u'forc', u'closur', u'western', u'highway']
[u'bushfir', u'rage', u'australia']
[u'campbel', u'captur', u'hope', u'classic']
[u'cannavaro', u'doubl', u'boost', u'juve']
[u'canobola', u'command', u'get', u'polic', u'chief']
[u'carpent', u'dismiss', u'labor', u'deal', u'specul']
[u'catchment', u'action', u'plan', u'go', u'view']
[u'keep', u'fire']
[u'charg', u'drop', u'backpack', u'death']
[u'chelsea', u'hold', u'home', u'beat', u'liverpool']
[u'children', u'face', u'court', u'break', u'steal', u'car']
[u'clijster', u'battl', u'past', u'schiavon']
[u'clijster', u'deni', u'fox', u'injuri']
[u'coal', u'product', u'expect', u'continu']
[u'comment', u'seek', u'tennant', u'creek', u'main', u'street', u'plan']
[u'comm', u'game', u'organis', u'defend', u'releas', u'ticket']
[u'communiti', u'shock', u'fatal', u'hous', u'revel']
[u'communiti', u'farewel', u'crash', u'victim']
[u'confer', u'small', u'plan', u'break', u'hill']
[u'cooma', u'alcohol', u'free', u'zone']
[u'cooper', u'win', u'winter', u'game', u'select']
[u'council', u'back', u'walk', u'trail', u'log']
[u'council', u'consid', u'brothel', u'complaint', u'respons']
[u'council', u'review', u'communiti', u'hall', u'decis']
[u'council', u'seek', u'answer', u'groundwat', u'concern']
[u'council', u'urg', u'rethink', u'develop', u'charg']
[u'crew', u'battl', u'bushfir', u'tasmania', u'west']
[u'crew', u'battl', u'bushfir']
[u'crew', u'break', u'amid', u'bushfir', u'repriev']
[u'cronulla', u'accus', u'deni', u'bail']
[u'crow', u'snare', u'lion', u'talent', u'scout']
[u'date', u'dutson', u'down', u'appeal']
[u'davydenko', u'grind', u'hrbati']
[u'dawn', u'servic', u'mark', u'start', u'aust', u'festiv']
[u'demand', u'hous', u'tip', u'fall']
[u'dhoni', u'dravid', u'ton', u'strong', u'indian', u'repli']
[u'dick', u'smith', u'join', u'protect', u'recherch']
[u'dimarco', u'win', u'inaugur', u'dhabi', u'titl']
[u'donald', u'want', u'england']
[u'driver', u'die', u'highway', u'road', u'crash']
[u'driver', u'warn', u'avoid', u'close', u'flood', u'road']
[u'dump', u'policeman', u'cronulla', u'task', u'forc']
[u'dump', u'policeman', u'return', u'cronulla', u'task', u'forc']
[u'earthquak', u'shake', u'vanuatu']
[u'monitor', u'lake', u'wendoure', u'plan']
[u'expert', u'highlight', u'need', u'wast', u'plant', u'site']
[u'expert', u'determin', u'wind', u'farm', u'blaze', u'caus']
[u'eriksson', u'newspap', u'revel']
[u'famili', u'farewel', u'father', u'kill', u'egypt']
[u'farm', u'blaze', u'investig']
[u'farmer', u'cooper', u'locust', u'spray']
[u'fatigu', u'fatal', u'crash']
[u'crew', u'hold', u'blaze']
[u'firefight', u'continu', u'state']
[u'firefight', u'die', u'battl', u'blaze']
[u'fishermen', u'seek', u'marin', u'plan', u'chang']
[u'fish', u'group', u'back', u'macdonald', u'decis']
[u'ford', u'holden', u'maintain', u'aust', u'oper']
[u'kill', u'collis', u'truck']
[u'question', u'tobacco', u'traffic']
[u'fraser', u'seek', u'landhold', u'protect', u'highway']
[u'freight', u'rout', u'plan', u'move', u'ahead']
[u'french', u'flag', u'fli', u'high', u'melbourn']
[u'fresh', u'concern', u'air', u'cultur', u'centr', u'plan']
[u'fruit', u'win', u'come']
[u'georgia', u'blame', u'russia']
[u'georgia', u'pipelin', u'blast']
[u'propos', u'bush', u'camp', u'young', u'offend']
[u'govt', u'tell', u'resid', u'coal', u'explor', u'fear']
[u'govt', u'power', u'blackout']
[u'govt', u'welcom', u'surg', u'spirit', u'book']
[u'gronholm', u'shut', u'loeb', u'mont', u'carlo']
[u'grosjean', u'triumph', u'straight', u'set']
[u'heat', u'spark', u'sport', u'event', u'cancel']
[u'higher', u'charg', u'seek', u'caravan', u'park', u'open']
[u'hiker', u'miss', u'northern', u'victoria']
[u'hingi', u'end', u'stosur', u'campaign']
[u'home', u'lose', u'bushfir', u'ravag', u'victoria']
[u'icac', u'hear', u'prison', u'deputi', u'involv', u'cover']
[u'iemma', u'distanc', u'polic', u'sack']
[u'illeg', u'fish', u'consid', u'nation', u'prioriti']
[u'indonesia', u'deni', u'papuan', u'reveng', u'shoot']
[u'industri', u'fear', u'backlash', u'amid', u'japan', u'beef']
[u'inquiri', u'tell', u'firm', u'saddam', u'payment']
[u'internet', u'tycoon', u'arrest', u'japan']
[u'interst', u'firefight', u'join', u'crew', u'battl']
[u'investig', u'continu', u'cyclist', u'death']
[u'investig', u'launch', u'fatal', u'ultralight', u'crash']
[u'investig', u'finish', u'work', u'light', u'plane', u'crash']
[u'iran', u'make', u'nuclear', u'threat']
[u'iran', u'warn', u'israel', u'militari', u'strike']
[u'jail', u'leader', u'urg', u'palestinian', u'vote']
[u'kelli', u'urg', u'maintain', u'capac']
[u'kiefer', u'beat', u'chela', u'reach', u'quarter', u'melbourn']
[u'kosovo', u'prepar', u'presid', u'funer']
[u'labor', u'accus', u'govt', u'divis', u'super']
[u'landslid', u'indonesian', u'island']
[u'laverton', u'work', u'lower', u'alcohol', u'consumpt']
[u'local', u'court', u'deal', u'blow', u'bali']
[u'loom', u'court', u'matter', u'affect', u'medic', u'servic']
[u'magistr', u'issu', u'warn', u'road', u'rage', u'case']
[u'malik', u'miss', u'rest', u'faisalabad', u'test']
[u'accus', u'spread', u'take', u'stand']
[u'kill', u'evict', u'unwant', u'guest', u'court', u'tell']
[u'marijuana', u'aim', u'high', u'amsterdam']
[u'mauresmo', u'power', u'quarter', u'final']
[u'mauresmo', u'schnyder', u'kiefer', u'open', u'quarter']
[u'mayor', u'shed', u'light', u'kalgoorli', u'boulder', u'solar', u'plan']
[u'meet', u'debat', u'marin', u'park', u'idea']
[u'minist', u'seek', u'state', u'wide', u'nightclub', u'lockout']
[u'miss', u'woman', u'aliv', u'thredbo']
[u'death', u'eastern', u'europ', u'freez']
[u'mother', u'lose', u'teen', u'abort', u'case']
[u'happi', u'veteran', u'affair', u'portfolio']
[u'unhappi', u'hospit', u'servic']
[u'urg', u'labor', u'focus', u'econom']
[u'nation', u'senat', u'resign', u'join', u'liber']
[u'polic', u'post']
[u'chief', u'judg', u'saddam', u'trial', u'name']
[u'citizen', u'declar', u'australia']
[u'minist', u'familiaris', u'tour']
[u'north', u'west', u'lucki', u'escap', u'cyclon', u'weaken']
[u'final', u'touch', u'illeg', u'fish', u'plan']
[u'nurs', u'code', u'nation', u'review']
[u'outgo', u'minist', u'want', u'women', u'cabinet']
[u'pair', u'hurt', u'highway', u'crash']
[u'pakistan', u'sweat', u'inzamam', u'fit']
[u'papuan', u'campaign', u'immedi', u'visa']
[u'parent', u'readi', u'cheer', u'stosur', u'open']
[u'plan', u'highway', u'reopen', u'today']
[u'consid', u'ministeri', u'vacanc']
[u'polic', u'detain', u'human', u'right', u'activist', u'african']
[u'polic', u'investig', u'death', u'fire', u'rage']
[u'polic', u'issu', u'seatbelt', u'safeti', u'remind']
[u'polic', u'seek', u'help', u'investig', u'road', u'death']
[u'pont', u'rest', u'adelaid', u'dayer']
[u'pont', u'rest', u'adelaid', u'dayer']
[u'portug', u'elect', u'conserv', u'presid']
[u'post', u'mortem', u'stab', u'victim']
[u'pressur', u'minist', u'scandal']
[u'probe', u'begin', u'fatal', u'chopper', u'crash']
[u'prosecutor', u'life', u'rush']
[u'public', u'get', u'privet', u'declar', u'noxious', u'weed']
[u'public', u'remind', u'updat', u'elector', u'roll', u'detail']
[u'qlds', u'demount', u'classroom', u'good', u'qualiti']
[u'rafter', u'win', u'hall', u'fame', u'honour']
[u'rat', u'rise', u'like', u'year']
[u'rebel', u'suspect', u'nepali', u'politician', u'kill']
[u'report', u'warn', u'construct', u'industri']
[u'player', u'join', u'forc', u'road']
[u'respit', u'rise', u'temperatur']
[u'ribbon', u'campaign', u'highlight', u'doctor', u'shortag', u'woe']
[u'ricki', u'pont', u'marvan', u'atapattu', u'sanath']
[u'rocki', u'downgrad']
[u'roddick', u'fall', u'davenport', u'limp', u'open', u'quarter']
[u'roger', u'train', u'return']
[u'sabotag', u'suspect', u'georgia', u'pipelin']
[u'crew', u'brace', u'extrem', u'australia']
[u'scientist', u'ponder', u'self', u'clean', u'bathroom']
[u'scorch', u'temperatur', u'break', u'hill']
[u'search', u'miss', u'teen', u'uncov', u'bone']
[u'shire', u'point', u'merger']
[u'smith', u'question', u'australia', u'depth']
[u'snowi', u'search', u'begin', u'miss', u'woman']
[u'lanka', u'thrash', u'aussi']
[u'steeler', u'seahawk', u'book', u'super', u'bowl', u'showdown']
[u'stockland', u'back', u'sunday', u'trade']
[u'stosur', u'readi', u'hingi', u'challeng']
[u'student', u'begin', u'school', u'year']
[u'student', u'hike', u'beat', u'lazi']
[u'super', u'immin', u'say', u'minchin']
[u'support', u'minchin', u'super']
[u'suspend', u'cahil', u'miss', u'chelsea', u'clash']
[u'sweden', u'lift', u'women', u'world']
[u'taiwan', u'import', u'ban', u'stonefruit', u'industri']
[u'servic', u'wont', u'issu', u'permit']
[u'teacher', u'dismiss', u'iemma', u'valu', u'plan']
[u'thousand', u'expect', u'caldecott', u'funer']
[u'thousand', u'game', u'ticket', u'grab']
[u'home', u'raze', u'western', u'bushfir']
[u'kill', u'lanka', u'attack']
[u'train', u'opportun', u'emerg', u'pastor']
[u'trio', u'charg', u'disord', u'behaviour']
[u'tripodi', u'say', u'continu', u'toll']
[u'turkey', u'bird', u'crisi', u'fade']
[u'turkey', u'throw', u'case', u'author', u'pamuk']
[u'kill', u'crash', u'bushfir', u'area']
[u'bali', u'bomb', u'suspect', u'name']
[u'join', u'nurs', u'code', u'review']
[u'union', u'employe', u'admit', u'theft']
[u'see', u'benefit', u'train', u'servic']
[u'aircraft', u'carrier', u'dock', u'brisban']
[u'mistak', u'japan', u'beef', u'zoellick', u'quot']
[u'vandal', u'prompt', u'night', u'conserv', u'area', u'closur']
[u'fire', u'threaten', u'township']
[u'wagga', u'man', u'death', u'consid', u'suspici']
[u'group', u'seek', u'urgent', u'illeg', u'fish', u'talk']
[u'resourc', u'sector', u'surg', u'ahead']
[u'road', u'toll', u'worst', u'year']
[u'warrior', u'voge', u'receiv', u'match']
[u'wattyl', u'reject', u'takeov']
[u'western', u'student', u'school']
[u'wholesal', u'inflat', u'rise']
[u'wildcat', u'overpow', u'taipan']
[u'wind', u'hamper', u'effort', u'battl', u'bushfir']
[u'wit', u'seek', u'deeragun', u'highway', u'crash']
[u'woman', u'drown', u'tri', u'save', u'friend']
[u'woman', u'face', u'court', u'fatal', u'stab']
[u'women', u'week', u'pull', u'lennon', u'articl']
[u'young', u'tasmanian', u'artist', u'opportun']
[u'fear', u'dead', u'landslid']
[u'jail', u'child', u'porn']
[u'broadcast', u'super', u'test', u'asia', u'pacif']
[u'aerial', u'locust', u'spray', u'begin']
[u'ahm', u'ponder', u'futur', u'bowl']
[u'airport', u'fuel', u'problem', u'remain', u'unresolv']
[u'safeti', u'recommend', u'urg', u'autopilot']
[u'albani', u'rule', u'frontbench', u'spot']
[u'want', u'consid', u'environment', u'health']
[u'warn', u'patient', u'transfer', u'risk']
[u'arson', u'crop', u'blaze']
[u'aust', u'dawn', u'servic', u'attract', u'prais']
[u'award', u'honour', u'wollongong', u'citizen']
[u'manag', u'approv', u'iraq', u'sanction', u'breach']
[u'backburn', u'fire', u'manag']
[u'bali', u'ringlead', u'face', u'death', u'penalti']
[u'bali', u'nine', u'sukumaran', u'face', u'death']
[u'barossa', u'star', u'rail', u'servic', u'cancel']
[u'barrist', u'review', u'council', u'code', u'conduct']
[u'baton', u'relay', u'hit', u'home', u'straight']
[u'beazley', u'call', u'australian', u'peac', u'corp']
[u'beazley', u'downplay', u'cabinet', u'reshuffl']
[u'mark', u'half', u'year', u'product', u'record']
[u'invest', u'port', u'hedland', u'communiti', u'facil']
[u'crowd', u'expect', u'marin', u'park', u'plan', u'meet']
[u'blueprint', u'offer', u'chang', u'strategi']
[u'boat', u'aim', u'prevent', u'reef', u'damag']
[u'bolivian', u'leader', u'form', u'socialist', u'indigen', u'cabinet']
[u'bomb', u'wound', u'iraqi', u'student']
[u'boro', u'cancel', u'xavier', u'contract']
[u'bourk', u'tourism', u'rise']
[u'bungendor', u'water', u'suppli', u'run']
[u'cabbi', u'hurt', u'armidal', u'attack']
[u'cairo', u'injur', u'receiv', u'treatment', u'sydney']
[u'postpon', u'annual', u'general', u'meet']
[u'canada', u'confirm', u'fourth', u'case', u'diseas']
[u'canada', u'vote', u'rule', u'liber', u'await', u'fate']
[u'canadian', u'conced', u'elect', u'defeat']
[u'canegrow', u'optimist', u'despit', u'packag', u'doubt']
[u'carpent', u'elect', u'labor', u'leader']
[u'caus', u'fatal', u'hous', u'remain', u'unknown']
[u'flag', u'compens', u'kill', u'firefight']
[u'children', u'custodi', u'theft']
[u'child', u'suffer', u'suspect', u'snake', u'bite']
[u'chimp', u'closer', u'human', u'ape', u'studi']
[u'chimp', u'provid', u'safer', u'smallpox', u'vaccin']
[u'china', u'bird', u'toll', u'rise']
[u'chines', u'state', u'say', u'peopl', u'smuggl', u'rise']
[u'cobar', u'appoint', u'econom', u'develop', u'offic']
[u'collingwood', u'player', u'apologis', u'brawl']
[u'commerci', u'fish', u'ban', u'sydney', u'harbour']
[u'communiti', u'urg', u'help', u'tenni', u'tournament']
[u'concert', u'rais', u'fund', u'cancer', u'foundat']
[u'congo', u'name', u'head']
[u'coron', u'urg', u'wait', u'time', u'review', u'patient']
[u'costello', u'move', u'calm', u'upset', u'nation']
[u'council', u'accus', u'reject', u'offic', u'altern']
[u'council', u'strengthen', u'push', u'sewerag', u'plant', u'upgrad']
[u'council', u'adopt', u'work', u'forc', u'shake', u'plan']
[u'court', u'order', u'farmer', u'water', u'charg']
[u'crayfish', u'help', u'nasa', u'explor', u'cosmos']
[u'credit', u'card', u'applic', u'surg', u'record', u'level']
[u'crew', u'warn', u'riski', u'bushfir', u'season']
[u'croc', u'coach', u'player', u'face', u'uncertain', u'futur']
[u'croc', u'sight', u'close', u'beach']
[u'croc', u'take', u'melvill', u'island']
[u'cyclon', u'area', u'warn', u'candl', u'danger']
[u'cyprus', u'start', u'cull', u'bird', u'scare']
[u'develop', u'kay', u'front', u'court', u'fraud', u'charg']
[u'doctor', u'tell', u'retir', u'prescrib', u'steroid']
[u'peacekeep', u'kill', u'congo', u'violenc']
[u'aynaoui', u'test', u'posit', u'cannabi']
[u'etsa', u'investig', u'excess', u'capac', u'claim']
[u'facelift', u'plan', u'waltz', u'matilda', u'centr']
[u'fail', u'gear', u'caus', u'scare']
[u'faisalabad', u'test', u'head', u'draw']
[u'farmer', u'wild', u'detail']
[u'father', u'urg', u'pilot', u'face', u'music', u'tourist']
[u'final', u'prefer', u'site', u'choos', u'pulp']
[u'firefight', u'victoria', u'mourn', u'loss', u'volunt']
[u'firefight', u'readi', u'weather', u'heat']
[u'firefight', u'sure', u'safe']
[u'fish', u'comp', u'net', u'govt', u'fund']
[u'ford', u'australia', u'rule', u'local', u'cut']
[u'freycinet', u'track', u'upgrad']
[u'german', u'engin', u'kidnap', u'iraq']
[u'applaud', u'kalgoorli', u'water', u'save', u'effort']
[u'good', u'whitsunday', u'develop']
[u'govt', u'acquir', u'land', u'militari', u'base', u'extens']
[u'govt', u'remind', u'public', u'arson', u'inform', u'reward']
[u'govt', u'urg', u'offer', u'polic', u'heat', u'respit']
[u'grant', u'boost', u'council', u'develop', u'applic']
[u'green', u'accus', u'govt', u'privatis']
[u'harass', u'alleg', u'prompt', u'defenc', u'inquiri']
[u'health', u'author', u'beat', u'charlevill']
[u'hello', u'sailor', u'aircraft', u'carrier', u'get', u'mix']
[u'henin', u'hardenn', u'outlast', u'davenport']
[u'hockeyroo', u'seek', u'reveng', u'arrog', u'dutch']
[u'hodg', u'take', u'come', u'arena']
[u'horticultur', u'group', u'question', u'competit', u'find']
[u'hospit', u'freez', u'food', u'spark', u'loss', u'concern']
[u'hunter', u'attract', u'illeg', u'worker']
[u'immigr', u'consid', u'deporte', u'return', u'serbia']
[u'independ', u'probe', u'seek', u'papuan', u'shoot']
[u'investig', u'continu', u'fatal', u'truck', u'crash']
[u'investig', u'find', u'derail', u'inevit']
[u'investig', u'find', u'helipad', u'mainten']
[u'iran', u'blast', u'kill']
[u'iranian', u'bomb', u'bank', u'govt', u'build']
[u'japan', u'rocket', u'launch', u'success']
[u'justic', u'depart', u'investig', u'courtroom', u'assault']
[u'kiefer', u'slap', u'fine']
[u'koizumi', u'seat', u'livedoor', u'head', u'arrest']
[u'landhold', u'warn', u'water', u'breach', u'penalti']
[u'lassi', u'aid', u'master', u'rid', u'mishap']
[u'minut', u'trade', u'lift', u'market']
[u'life', u'sentenc', u'seek', u'bali', u'nine', u'czugaj']
[u'arrest', u'throw', u'prosthet', u'leg']
[u'face', u'tortur', u'charg', u'grant', u'bail']
[u'give', u'conflict', u'evid', u'infect']
[u'hurt', u'bottl', u'blast']
[u'court', u'camera', u'phone', u'photo']
[u'plead', u'guilti', u'child', u'porn']
[u'marin', u'park', u'talk', u'prove', u'fruit']
[u'martin', u'conced', u'defeat', u'canadian', u'ballot']
[u'mental', u'health', u'scheme', u'help', u'better', u'polic']
[u'court', u'skinni', u'dip']
[u'minist', u'put', u'support', u'grain', u'grower', u'poll']
[u'miss', u'bushwalk', u'safe']
[u'miss', u'man', u'bodi', u'argentina']
[u'mix', u'court', u'bali']
[u'mobil', u'deni', u'buri', u'asbesto', u'pose', u'risk']
[u'consult', u'promis', u'wind', u'farm']
[u'firefight', u'fli', u'fight', u'zeehan']
[u'angri', u'heart', u'machin', u'delay']
[u'say', u'resign', u'mark', u'shaki', u'futur']
[u'mulherin', u'find', u'rural', u'trip', u'valuabl']
[u'murder', u'accus', u'face', u'cash', u'theft', u'charg']
[u'nalbandian', u'destroy', u'santoro', u'reach', u'semi']
[u'nation', u'fight', u'ministri', u'represent']
[u'blitz', u'move', u'coff', u'harbour']
[u'nelson', u'get', u'defenc', u'cabinet', u'reshuffl']
[u'nelson', u'get', u'defenc', u'reshuffl']
[u'sale', u'rise']
[u'forestri', u'minist', u'take', u'earli', u'swipe', u'green']
[u'polic', u'station', u'open']
[u'charg', u'child', u'porn', u'possess']
[u'power', u'water', u'short', u'profit', u'target']
[u'tour', u'oper', u'face', u'permit', u'regim']
[u'opposit', u'urg', u'firm', u'decis', u'karralika', u'drug']
[u'oper', u'keen', u'replac', u'pacif', u'nation']
[u'outgo', u'magistr', u'highlight', u'court', u'workload']
[u'owner', u'challeng', u'order', u'knock', u'fort']
[u'pair', u'charg', u'child', u'offenc']
[u'palestinian', u'teen', u'kill', u'west', u'bank']
[u'pierc', u'creek', u'rebuild', u'viabl', u'stanhop']
[u'pilot', u'wont', u'return', u'tourist', u'death']
[u'plan', u'afoot', u'campsit', u'come', u'indigen']
[u'plan', u'focus', u'bushfir', u'manag']
[u'deni', u'mcgauran', u'poach', u'nation']
[u'mudslid', u'kill']
[u'polic', u'back', u'corbi', u'drug', u'link', u'claim']
[u'polic', u'investig', u'kellyvill', u'gunshot', u'death']
[u'polic', u'arrest', u'palmerston']
[u'polic', u'crash', u'victim']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'stab', u'victim']
[u'polic', u'search', u'miss']
[u'polic', u'seek', u'wit']
[u'polic', u'station', u'base', u'insid', u'airport', u'termin']
[u'polic', u'warn', u'alcohol', u'aust']
[u'pork', u'factori', u'highlight', u'power', u'plant', u'benefit']
[u'port', u'adelaid', u'interest', u'assur', u'minist']
[u'protea', u'post', u'thrill', u'lanka']
[u'protest', u'campfir', u'irrespons']
[u'public', u'quiz', u'council', u'elect']
[u'cash', u'sugar', u'price', u'high']
[u'quinn', u'clear', u'briberi', u'alleg']
[u'rain', u'eas', u'threat']
[u'ralli', u'goer', u'urg', u'asylum', u'west', u'papuan']
[u'issu', u'warn', u'hoax', u'email']
[u'rescuer', u'survivor', u'nairobi']
[u'research', u'million', u'year']
[u'retir', u'resid', u'wait', u'etsa']
[u'roger', u'includ', u'mobil', u'tour', u'franc', u'team']
[u'rspca', u'offer', u'toad']
[u'rspca', u'seek', u'owner', u'leav']
[u'ryan', u'hurt', u'mcgauran', u'resign']
[u'saddam', u'hussein', u'trial', u'postpon']
[u'savag', u'reflect', u'mcgauran', u'resign']
[u'search', u'build', u'collaps', u'survivor', u'continu']
[u'senat', u'report', u'prompt', u'militari', u'train', u'audit']
[u'seven', u'taliban', u'escap', u'afghan', u'jail']
[u'sharapova', u'strong', u'petrova']
[u'shark', u'baydenham', u'ward', u'get', u'councillor']
[u'sharon', u'health', u'woe', u'conceal', u'doctor', u'report']
[u'korean', u'charg', u'iraq', u'food', u'scandal']
[u'small', u'manufactur', u'fail', u'femal', u'driver', u'nrma']
[u'south', u'africa', u'bat', u'adelaid']
[u'state', u'cooper', u'need', u'mental', u'health']
[u'steril', u'fruit', u'fli', u'releas', u'stop']
[u'storm', u'leav', u'resid', u'dark']
[u'storm', u'caus', u'blackout', u'flood']
[u'sydney', u'harbour', u'commerci', u'fish', u'halt']
[u'takeov', u'squad', u'aim', u'balanc', u'green', u'group']
[u'tasmanian', u'bind', u'danish', u'princ']
[u'teen', u'refus', u'bail', u'repris', u'attack']
[u'test', u'check', u'possibl', u'alga', u'outbreak']
[u'thousand', u'sheep', u'perish', u'bushfir']
[u'tiger', u'prepar', u'club', u'challeng']
[u'toll', u'expect', u'pacif', u'nation', u'profit', u'hike']
[u'tortur', u'charg', u'lay', u'chain', u'pole']
[u'tourism', u'bodi', u'highlight', u'strong', u'holiday', u'period']
[u'train', u'crash', u'toll', u'hit']
[u'train', u'group', u'back', u'jail', u'altern']
[u'arrest', u'cronulla', u'bash']
[u'deni', u'bail', u'cronulla', u'retali']
[u'ukrain', u'energi', u'firm', u'admit', u'withhold', u'russian']
[u'union', u'attack', u'oversea', u'recruit', u'licenc']
[u'union', u'urg', u'action', u'road', u'rescu', u'report']
[u'widen', u'peacekeep', u'procur', u'abus', u'inquiri']
[u'offic', u'reprimand', u'iraqi', u'interrog']
[u'troop', u'join', u'search', u'kenyan', u'collaps', u'survivor']
[u'vail', u'disappoint', u'reshuffl']
[u'urg', u'action', u'avoid', u'anim', u'heat', u'stress']
[u'premier', u'make', u'fund', u'pledg']
[u'waterhous', u'grant', u'licenc', u'race']
[u'watson', u'return', u'bushrang']
[u'weather', u'hamper', u'firefight', u'effort']
[u'weather', u'tip', u'return', u'normalci']
[u'west', u'wonder', u'goal', u'sink', u'fulham']
[u'whale', u'spew', u'famili']
[u'deni', u'exagger', u'bird', u'pandem', u'threat']
[u'wife', u'children', u'chile', u'pinochet', u'arrest']
[u'windi', u'board', u'ask', u'assess', u'coach', u'king']
[u'wine', u'grape', u'grower', u'hold', u'mcguigan', u'contract', u'talk']
[u'woman', u'die', u'highway', u'crash']
[u'woman', u'give', u'suspend', u'sentenc', u'home', u'invas']
[u'woman', u'plead', u'guilti', u'harm', u'toddler']
[u'youth', u'predomin', u'kangaroo', u'train', u'squad']
[u'treasur', u'quit', u'polit']
[u'plane', u'blow', u'tyre', u'land']
[u'allianc', u'member', u'push', u'workplac', u'chang']
[u'ambul', u'station', u'look', u'boost', u'staff']
[u'ambul', u'worker', u'honour', u'aust', u'award']
[u'angri', u'reaction', u'nation', u'cabinet', u'reshuffl']
[u'jaqu', u'fire', u'blue', u'past']
[u'antonio', u'investig', u'reveal', u'bone', u'human']
[u'aust', u'award', u'honour', u'pair']
[u'australia']
[u'australian', u'open', u'offici', u'consid', u'close', u'heat']
[u'australian', u'scientist', u'join', u'worldwid', u'reef', u'census']
[u'australia', u'factori', u'close']
[u'author', u'find', u'pressur', u'valv', u'fail', u'flight']
[u'baldwin', u'parliamentari', u'secretari', u'post']
[u'baton', u'relay', u'kick', u'sydney']
[u'baton', u'relay', u'start', u'sydney']
[u'beatti', u'reject', u'health', u'dept', u'audit']
[u'belgian', u'militari', u'take', u'obes']
[u'bizarr', u'child', u'eat', u'fantasi', u'case', u'speed']
[u'blaze', u'destroy', u'shop']
[u'blue', u'hold', u'courag', u'tiger']
[u'british', u'backpack', u'thai', u'killer', u'appeal', u'death']
[u'brough', u'look', u'forward', u'ministri', u'challeng']
[u'brown', u'sidelin', u'surgeri']
[u'driver', u'vote', u'offer']
[u'bushrang', u'regist', u'impress', u'bull']
[u'cancer', u'research', u'frazer', u'get', u'award']
[u'cancer', u'research', u'name', u'australian', u'year']
[u'carpent', u'take', u'rein']
[u'carpent', u'albani', u'bear', u'premier']
[u'carter', u'holt', u'harvey', u'seek', u'list']
[u'central', u'station', u'miss']
[u'plan', u'servic', u'firefight', u'kill', u'battl']
[u'china', u'censor', u'googl', u'servic']
[u'chines', u'econom', u'growth', u'exceed', u'expect']
[u'chris', u'penn', u'die']
[u'civil', u'liberti', u'bodi', u'fear', u'secreci', u'terror']
[u'clijster', u'crash', u'hingi', u'comeback', u'parti']
[u'coal', u'seam', u'flow', u'surat', u'basin']
[u'cobb', u'worri', u'possibl', u'priest', u'elect']
[u'councillor']
[u'council', u'seek', u'public', u'patienc', u'smelli', u'problem']
[u'council', u'wont', u'help', u'cinema', u'leas']
[u'court', u'drop', u'mitr', u'case']
[u'court', u'hear', u'mum', u'psychiatr', u'problem', u'babi', u'kill']
[u'court', u'decid', u'jesus', u'exist']
[u'cpsu', u'work', u'staff', u'department', u'shake']
[u'crew', u'fight', u'time', u'search', u'kenya', u'build']
[u'crowd', u'air', u'opposit', u'marin', u'park']
[u'disney', u'pixar', u'billion', u'deal']
[u'doctor', u'name', u'newcastl', u'citizen', u'year']
[u'doctor', u'meet', u'radiolog', u'contract', u'concern']
[u'doctor', u'prais', u'longreach', u'medic', u'servic']
[u'dorazio', u'show', u'bush', u'camp']
[u'doubt', u'cast', u'govt', u'doctor', u'recruit', u'effort']
[u'urg', u'human', u'kill', u'affect', u'stock']
[u'drag', u'racer', u'plead', u'guilti', u'manslaught']
[u'driver', u'error', u'suspect', u'dead', u'montenegro', u'train']
[u'aynaoui', u'deni', u'dope']
[u'entsch', u'happi', u'ministri', u'shake']
[u'eriksson', u'hit', u'salari', u'critic']
[u'european', u'govt', u'know', u'tortur', u'outsourc']
[u'extens', u'approv', u'ulan']
[u'extens', u'harbour', u'fish', u'like']
[u'farmer', u'fodder', u'harvest', u'permit', u'remind']
[u'feder', u'battl', u'past', u'davydenko']
[u'ferrari', u'unveil']
[u'firefight', u'continu', u'battl', u'bushfir']
[u'victorian', u'road', u'crash']
[u'hold', u'captiv', u'bank', u'heist']
[u'fletcher', u'miss', u'eagl', u'preseason', u'campaign']
[u'flood', u'damag', u'reach', u'near']
[u'forrest', u'attack', u'mcgauran']
[u'french', u'murder', u'differ']
[u'gilchrist', u'fin', u'dissent']
[u'gladston', u'harbour', u'spill', u'clean', u'begin']
[u'goat', u'export', u'meatwork', u'criticis']
[u'govt', u'award', u'desert', u'home', u'contract']
[u'govt', u'help', u'surf', u'event', u'aliv']
[u'govt', u'promis', u'action', u'port', u'piri', u'lead']
[u'govt', u'seal', u'ginninderra', u'school', u'fate']
[u'govt', u'urg', u'bring', u'stabil', u'local', u'govt']
[u'grain', u'council', u'see', u'need', u'chang']
[u'grape', u'grower', u'summit', u'amid', u'glut', u'crisi']
[u'group', u'reject', u'govt', u'marin', u'park', u'plan']
[u'hartsuyk', u'unhappi', u'mcguaran']
[u'health', u'council', u'hold', u'wollongong', u'meet']
[u'hiddink', u'frame', u'england']
[u'hingi', u'face', u'tough', u'test', u'clijster']
[u'defend', u'lie', u'fear']
[u'hockeyroo', u'argentina']
[u'hodg', u'eye', u'world', u'spot']
[u'hospit', u'short', u'term', u'roster', u'respit']
[u'howard', u'urg', u'state', u'fall', u'line', u'age', u'care']
[u'huge', u'sculptur', u'steal', u'british', u'univers']
[u'deserv', u'offic', u'inmat', u'tell']
[u'babi', u'canberra']
[u'indian', u'consul', u'target', u'afghan', u'grenad', u'attack']
[u'indigen', u'peopl', u'urg', u'join', u'australia']
[u'indonesia', u'chicken', u'vendor', u'bird', u'ministri']
[u'inflat', u'rate', u'cost', u'live', u'go']
[u'inquiri', u'chief', u'question', u'manag', u'evid']
[u'inquiri', u'warn', u'cooper']
[u'jaqu', u'fire', u'blue', u'tiger']
[u'kiefer', u'apologis', u'racquet', u'toss']
[u'kiefer', u'triumph', u'marathon', u'setter']
[u'kookaburra', u'pakistan', u'game', u'warm']
[u'korean', u'prosecutor', u'confirm', u'hwang', u'stem', u'cell']
[u'kuwait', u'name', u'emir']
[u'lake', u'bolac', u'storm', u'clean', u'month']
[u'lakeview', u'transit', u'camp', u'prove', u'popular']
[u'landhold', u'urg', u'remain', u'alert', u'firefight']
[u'lennon', u'casino', u'upgrad', u'prompt', u'stricter']
[u'appoint']
[u'life', u'sentenc', u'seek', u'bali', u'accus']
[u'long', u'wait', u'near', u'polic']
[u'mackay', u'allow', u'stay', u'showground']
[u'face', u'court', u'canley', u'height', u'shoot']
[u'market', u'recov', u'amid', u'stronger', u'profit', u'number']
[u'matiss', u'biograph', u'win', u'whitbread', u'award']
[u'mauresmo', u'overpow', u'schnyder']
[u'mayor', u'say', u'mall', u'develop', u'cost']
[u'mayor', u'stand', u'hotel', u'applic', u'extens']
[u'mcgauran', u'defect', u'chang', u'vote']
[u'mcguigan', u'back', u'contract', u'suspens']
[u'mcguigan', u'lift', u'contract', u'suspens']
[u'meatwork', u'expans', u'promis', u'beef', u'produc']
[u'corner', u'design', u'work', u'near', u'finish']
[u'minist', u'defend', u'temporari', u'hospit', u'ward']
[u'minist', u'urg', u'seek', u'council', u'advic', u'becton']
[u'mitsubishi', u'issu', u'redund', u'offer', u'adelaid']
[u'mongolia', u'elect', u'prime', u'minist']
[u'back', u'carpent', u'leadership', u'appoint']
[u'defend', u'commonwealth', u'school', u'support']
[u'play', u'parliamentari', u'shake', u'impact']
[u'unhappi', u'outcom', u'quinn', u'briberi', u'probe']
[u'nairn', u'get', u'feder', u'ministri']
[u'nation', u'quit', u'coalit', u'say', u'beazley']
[u'nat', u'threaten', u'revolt', u'mcgauran', u'defect']
[u'charg', u'backpack', u'death', u'unlik']
[u'fisheri', u'minist', u'urg', u'poach']
[u'minist', u'urg', u'tackl', u'indigen', u'hous']
[u'minist', u'pressur', u'green']
[u'orlean', u'elect', u'april']
[u'firefight', u'head', u'fire']
[u'rais', u'free', u'threshold', u'investor']
[u'govt', u'support', u'learn', u'centr']
[u'olmert', u'say', u'israel', u'quit', u'occupi', u'land']
[u'osullivan', u'keen', u'australia', u'comm', u'game']
[u'pacif', u'nation', u'intensifi']
[u'pair', u'face', u'court', u'cannabi', u'crop']
[u'pakistan', u'india', u'draw', u'second', u'test']
[u'palestinian', u'vote', u'get']
[u'petit', u'call', u'brake', u'hoon']
[u'petrol', u'sniff', u'inquiri', u'tour', u'region']
[u'pierc', u'roger', u'place', u'shark']
[u'pilot', u'group', u'back', u'safeti', u'recommend']
[u'pinochet', u'wife', u'children', u'escap', u'hous', u'arrest']
[u'platinum', u'project', u'move', u'closer', u'realiti']
[u'deni', u'reshuffl', u'marginalis', u'costello']
[u'optimist', u'despit', u'nation', u'reshuffl', u'blue']
[u'punish', u'mcgauran', u'defect']
[u'polic', u'ask', u'attend', u'council', u'meet']
[u'polic', u'attack', u'central', u'australian', u'camp']
[u'polic', u'boost', u'australia']
[u'polic', u'fear', u'babi']
[u'polic', u'fear', u'miss']
[u'polic', u'hold', u'fear', u'miss', u'woman']
[u'polic', u'investig', u'email', u'hoax']
[u'polic', u'plane', u'crash', u'victim']
[u'polic', u'rescu', u'burn']
[u'polic', u'suspect', u'foul', u'play', u'southsid', u'woman', u'death']
[u'pope', u'releas', u'encycl']
[u'predict', u'budget', u'surplus', u'slash']
[u'premier', u'leagu', u'launch', u'bung', u'inquiri']
[u'public', u'urg', u'help', u'miss']
[u'queensland', u'cotton', u'withdraw', u'namoi']
[u'recent', u'rain', u'replenish', u'sydney', u'dam']
[u'record', u'team', u'pick', u'winter', u'game']
[u'redback', u'crush', u'warrior']
[u'rescuer', u'lose', u'contact', u'kenya', u'trap', u'victim']
[u'resid', u'face', u'longer', u'rail', u'servic', u'wait']
[u'resid', u'group', u'unhappi', u'moone', u'beach', u'plan']
[u'resid', u'tell', u'prepar', u'bushfir', u'close']
[u'rest', u'gilchrist', u'vow', u'stay']
[u'robert', u'send', u'wigan', u'leagu', u'final']
[u'russia', u'struggl', u'restor', u'georgian', u'suppli']
[u'crew', u'reinforc', u'contain', u'line', u'ngarkat']
[u'saff', u'group', u'split', u'rescu', u'plan']
[u'hospit', u'fund', u'boost']
[u'fin', u'fatal', u'smash']
[u'test', u'warn']
[u'scientist', u'abuzz', u'mozzi', u'size', u'tiddler']
[u'secur', u'step', u'palestinian', u'elect']
[u'share', u'valu', u'hold', u'australia', u'say']
[u'kill', u'landmin', u'blast']
[u'south', u'africa', u'tour', u'watson', u'mind']
[u'south', u'stradbrok', u'turtl', u'nest', u'protect']
[u'supermarket', u'ditch', u'local', u'can', u'fruit']
[u'support', u'mandatori', u'autopilot', u'passeng']
[u'surfer', u'traffic', u'plan', u'enter', u'final', u'stage']
[u'tamil', u'tiger', u'agre', u'geneva', u'talk']
[u'economi', u'slow', u'report']
[u'firefight', u'readi', u'help', u'mainland']
[u'tedious', u'tell', u'cooper']
[u'test', u'determin', u'blade', u'link', u'fatal']
[u'thame', u'whale', u'die', u'dehydr']
[u'thiev', u'target', u'volunt', u'firefight']
[u'thousand', u'farewel', u'caldecott', u'keith']
[u'thousand', u'farewel', u'caldecott']
[u'toll', u'commit', u'patrick', u'takeov']
[u'tour', u'franc', u'start', u'london']
[u'town', u'gear', u'aust', u'festiv']
[u'triangular', u'seri', u'heat']
[u'trucker', u'fight', u'charg', u'hike']
[u'ukrain', u'russia', u'deal', u'sign', u'delay']
[u'offici', u'urg', u'action', u'death', u'penalti']
[u'armi', u'deni', u'rule', u'chang']
[u'judg', u'rule', u'govt', u'releas', u'guantanamo']
[u'extend', u'militari', u'execut', u'rule']
[u'vail', u'tri', u'rein', u'nation', u'reshuffl']
[u'firefight', u'race', u'strengthen', u'control', u'line']
[u'fire', u'leav', u'devast', u'landscap']
[u'town', u'brace', u'threat']
[u'virgin', u'blue', u'replac', u'valv', u'pressur', u'incid']
[u'wast', u'plant', u'get']
[u'weather', u'predict', u'intensifi', u'bushfir']
[u'whitak', u'leav', u'waratah', u'season']
[u'wind', u'chang', u'fuel', u'blaze']
[u'wind', u'farm', u'plan', u'spark', u'mix', u'reaction']
[u'wine', u'wast', u'manag', u'idea', u'seek']
[u'woolworth', u'news', u'buoy', u'market']
[u'woolworth', u'sale', u'surg']
[u'world', u'pandem', u'immin']
[u'worsley', u'worker', u'decid', u'work', u'return']
[u'beach', u'rescu']
[u'abalon', u'bust', u'see', u'face', u'charg']
[u'agricultur', u'cours', u'struggl', u'draw', u'student']
[u'akhtar', u'face', u'fit', u'race']
[u'asia', u'drive', u'wine', u'export', u'fresh', u'high']
[u'atsb', u'deliv', u'fatal', u'chopper', u'crash', u'find']
[u'aussi', u'kennedi', u'join', u'bundesliga']
[u'aust', u'award', u'recognis', u'goulburn', u'murray', u'resid']
[u'aust', u'babi', u'tradit', u'live']
[u'aust', u'honour', u'tassi', u'achiev']
[u'aust', u'honour', u'recognis', u'local', u'achiev']
[u'aust', u'honour', u'recognis', u'achiev']
[u'australia', u'celebr', u'sour', u'stab']
[u'australian', u'astronom', u'help', u'planet']
[u'australian', u'scientist', u'help', u'earth', u'like', u'planet']
[u'australia', u'post', u'wicket', u'victori']
[u'australia', u'qualifi', u'paralymp', u'sail']
[u'award', u'honour', u'hundr', u'australian']
[u'execut', u'admit', u'poor', u'govern']
[u'baghdati', u'eye', u'place', u'final']
[u'balloon', u'meet', u'plan', u'despit', u'fiesta', u'woe']
[u'beaumont', u'mysteri', u'unsolv', u'year']
[u'blaze', u'rip', u'surf', u'club']
[u'bomb', u'target', u'industri', u'minist']
[u'break', u'hill', u'join', u'aust', u'celebr']
[u'brough', u'push', u'indigen', u'festiv', u'fund']
[u'bush', u'poet', u'honour', u'tamworth']
[u'market', u'wine', u'export', u'rise']
[u'call', u'jaqu', u'elev', u'irresist']
[u'canberran', u'share', u'aust', u'honour']
[u'canoeist', u'miss', u'coast']
[u'caravaggio', u'paint', u'discov', u'french', u'church']
[u'hear', u'ashley', u'cole', u'tap', u'case']
[u'central', u'queensland', u'properti', u'sell']
[u'central', u'share', u'aust', u'honour']
[u'charg', u'upgrad', u'mandurah', u'death']
[u'china', u'ring', u'year', u'billion']
[u'coalit', u'intensifi']
[u'coalit', u'tension', u'rise']
[u'coalit', u'tension', u'continu']
[u'connolli', u'firm', u'wallabi', u'coach', u'favourit']
[u'countri', u'festiv', u'take', u'toll', u'perform']
[u'crew', u'continu', u'battl', u'zeehan', u'blaze']
[u'cronulla', u'calm', u'australia']
[u'cronulla', u'australia', u'shin', u'despit', u'racist']
[u'cycl', u'coach', u'recognis', u'centralian', u'year']
[u'death', u'penalti', u'seek', u'bali', u'ringlead']
[u'death', u'seek', u'suspect', u'bali', u'ringlead']
[u'defenc', u'inquiri', u'wagga', u'evid']
[u'democrat', u'seek', u'dust', u'health', u'studi']
[u'dengu', u'fever', u'resurfac', u'townsvill']
[u'dri', u'fruit', u'grower', u'suffer', u'price', u'fall']
[u'drug', u'cash', u'gun', u'seiz', u'yarloop', u'farm', u'raid']
[u'east', u'timor', u'meet', u'indonesia', u'call']
[u'electr', u'fault', u'maryborough', u'blaze']
[u'elus', u'victori', u'come', u'honda', u'tell', u'button']
[u'england', u'eriksson', u'say', u'owen']
[u'fatah', u'beat', u'hama', u'palestinian', u'elect', u'exit']
[u'fatal', u'road', u'crash', u'investig']
[u'favourit', u'progress', u'melbourn', u'semi']
[u'fin', u'pile', u'emot', u'kiefer']
[u'crew', u'medic', u'emerg', u'deploy', u'defend']
[u'firefight', u'continu', u'battl', u'blaze']
[u'firefight', u'face', u'night', u'battl']
[u'firm', u'beat', u'propos', u'assess']
[u'girlfriend', u'write', u'book', u'falconio']
[u'forum', u'focus', u'preschool', u'fund']
[u'franc', u'england', u'nation', u'favourit']
[u'georgeson', u'start', u'finish']
[u'call', u'action', u'global', u'warm']
[u'gilchrist', u'call', u'consist', u'bat', u'line']
[u'gile', u'lose', u'fit', u'battl']
[u'gippsland', u'resid', u'recognis', u'aust', u'award']
[u'girl', u'break']
[u'gladston', u'spill', u'tragedi', u'marin', u'life']
[u'gold', u'coast', u'share', u'aust', u'award']
[u'govt', u'dismiss', u'warn', u'economi']
[u'govt', u'encourag', u'bite', u'dentist', u'shortag']
[u'govt', u'stand', u'chief']
[u'govt', u'unveil', u'bioprospect', u'polici']
[u'gunner', u'offer', u'henri', u'fantast', u'year', u'deal']
[u'gunn', u'robberi', u'accus', u'court']
[u'gun', u'ammo', u'steal', u'adelaid', u'rifl', u'club']
[u'consid', u'waranga', u'option']
[u'hama', u'challeng', u'fatah', u'rule', u'palestinian', u'elect']
[u'hama', u'fatah', u'support', u'claim', u'victori']
[u'hanley', u'lose', u'men', u'doubl', u'final']
[u'hanley', u'stosur', u'mix', u'doubl', u'semi']
[u'hello', u'kitti', u'robot', u'receptionist', u'debut', u'japan']
[u'henin', u'hardenn', u'down', u'sharapova', u'reach', u'decid']
[u'hiddink', u'happi', u'consid', u'england', u'say', u'agent']
[u'hiddink', u'remain', u'socceroo']
[u'hingi', u'take', u'posit', u'clijster', u'loss']
[u'hockeyroo', u'hold', u'netherland']
[u'honour', u'award', u'north', u'west']
[u'hop', u'fade', u'kenyan', u'collaps', u'victim']
[u'hospit', u'reach', u'patient', u'capac']
[u'weather', u'slow', u'adelaid', u'pitch', u'gilchrist']
[u'hous', u'plan', u'worri', u'aero', u'club']
[u'hunter', u'resid', u'share', u'aust', u'honour']
[u'appoint', u'pakistani', u'chief', u'spokesman']
[u'indigen', u'jobless', u'rate', u'drop']
[u'indigen', u'unemploy', u'rate', u'fall']
[u'form', u'roar', u'annihil', u'jet']
[u'injur', u'show', u'improv']
[u'injuri', u'forc', u'hewitt']
[u'internet', u'bring', u'peopl', u'closer', u'studi']
[u'ipswich', u'hospit', u'emerg', u'dept', u'close']
[u'iran', u'claim', u'britain', u'bomb']
[u'iran', u'upbeat', u'nuclear', u'talk', u'russia']
[u'kookaburra', u'spain', u'game', u'select']
[u'korean', u'clone', u'scandal', u'show', u'work', u'expert']
[u'langer', u'urg', u'poor', u'warrior', u'refocus']
[u'hop', u'fade', u'survivor', u'kenya', u'build']
[u'liber', u'senat', u'join', u'marin', u'boundari', u'fight']
[u'say', u'spell', u'harem']
[u'marathon', u'compet', u'million', u'dollar', u'prize']
[u'mauresmo', u'final', u'clijster', u'retir', u'hurt']
[u'mayor', u'ambassador']
[u'meat', u'bodi', u'fill', u'intern']
[u'meatwork', u'strike', u'avert']
[u'medic', u'work', u'secur', u'highest', u'aust', u'honour']
[u'michael', u'jackson', u'shop', u'bahrain', u'disguis', u'woman']
[u'north', u'coast', u'resid', u'share', u'aust', u'honour']
[u'moodi', u'take', u'lanka', u'seri', u'schedul']
[u'injur', u'fuel', u'explos', u'niger']
[u'fear', u'local', u'migrant', u'servic']
[u'fear', u'nativ', u'veget', u'law', u'hamper']
[u'question', u'game', u'baton', u'rout']
[u'murali', u'weav', u'magic', u'troubl', u'aussi']
[u'nation', u'reject', u'defect', u'gossip']
[u'safeti', u'regim', u'live', u'risk', u'warn']
[u'surf', u'safeti', u'centr', u'open']
[u'nigeria', u'hostag', u'talk', u'make', u'progress']
[u'north', u'coast', u'celebr', u'australia']
[u'north', u'east', u'firefight', u'stand']
[u'north', u'share', u'aust', u'honour']
[u'worri', u'world', u'stadium', u'say', u'blatter']
[u'crew', u'victorian', u'fight']
[u'deni', u'special', u'need', u'class', u'threaten']
[u'plan', u'secur', u'camera', u'regim']
[u'share', u'aust', u'honour']
[u'rain', u'approach', u'season', u'averag']
[u'nuclear', u'fallout', u'tahiti', u'independ', u'report']
[u'oakeshott', u'see', u'need', u'nation']
[u'spill', u'clean', u'continu']
[u'olympian', u'honour', u'australia']
[u'opposit', u'parent', u'rais', u'concern', u'school']
[u'opposit', u'say', u'quinlan', u'quit', u'budget']
[u'peopl', u'recognis', u'australia', u'honour']
[u'pakistan', u'warn', u'player', u'check']
[u'palestinian', u'resign', u'vote']
[u'pinochet', u'daughter', u'arrest']
[u'pinochet', u'daughter', u'seek', u'asylum', u'chile']
[u'pittman', u'show', u'solid', u'form', u'canberra']
[u'plastic', u'surgeri', u'fencer', u'sentenc', u'reduc']
[u'histori', u'speech', u'get', u'mix', u'recept']
[u'welcom', u'citizen', u'best', u'countri']
[u'governor', u'criticis', u'possibl', u'solicitor']
[u'polic', u'miss']
[u'polic', u'seiz', u'burn', u'flag', u'artwork']
[u'polic', u'warn', u'australia', u'violenc']
[u'port', u'piri', u'plant', u'clean', u'begin']
[u'prison', u'releas', u'iraq']
[u'prosecutor', u'urg', u'sentenc', u'lawrenc']
[u'public', u'urg', u'heed', u'gorg', u'safeti', u'sign']
[u'govt', u'meet', u'doctor', u'crisi']
[u'station', u'price', u'pass', u'muster']
[u'quak', u'shake', u'eyr', u'peninsula']
[u'queensland', u'share', u'aust', u'honour']
[u'rail', u'union', u'dismiss', u'time', u'figur', u'imposs']
[u'record', u'number', u'australian', u'citizen']
[u'redback', u'crush', u'warrior']
[u'refresh', u'wood', u'target', u'major', u'improv']
[u'resid', u'decid', u'stay', u'amidst', u'bushfir']
[u'resid', u'dark', u'power', u'outag']
[u'riverina', u'resid', u'share', u'aust', u'honour']
[u'roger', u'like', u'fourth', u'round']
[u'roger', u'fourth', u'round']
[u'rossi', u'test', u'ferrari', u'alongsid', u'schumach']
[u'denounc', u'australian', u'flag', u'burn']
[u'rural', u'achiev', u'australia', u'honour']
[u'russia', u'mull', u'action', u'alleg', u'british', u'spi']
[u'grassfir', u'contain']
[u'saha', u'put', u'unit', u'sight', u'silverwar']
[u'sausag', u'sizzl', u'fundrais', u'hit', u'snag']
[u'calm', u'nerv', u'public', u'speak', u'studi']
[u'sharapova', u'aim', u'rais', u'game']
[u'sharapova', u'lash', u'media']
[u'singl', u'workout', u'lift', u'mood', u'depress', u'patient']
[u'korea', u'trade', u'film', u'quota', u'free', u'trade']
[u'south', u'coast', u'resid', u'award', u'australia']
[u'south', u'east', u'join', u'aust', u'celebr']
[u'south', u'east', u'resid', u'share', u'aust', u'award']
[u'spark', u'googl', u'bow', u'china']
[u'specialist', u'team', u'arriv', u'gladston', u'help']
[u'stosur', u'promot', u'pac', u'draw']
[u'stosur', u'women', u'doubl', u'final']
[u'coast', u'host', u'surf', u'boat', u'action']
[u'supermodel', u'kate', u'moss', u'autobiographi']
[u'survivor', u'winner', u'convict', u'evas']
[u'territorian', u'share', u'aust', u'honour']
[u'thousand', u'properti', u'land', u'respit']
[u'tiger', u'taipan']
[u'townsvill', u'share', u'aust', u'honour']
[u'trisha', u'broadbridg', u'honour', u'post', u'tsunami', u'work']
[u'hurt', u'sydney', u'explos']
[u'name', u'nicol', u'kidman', u'goodwil', u'ambassador']
[u'unrest', u'grow', u'sack']
[u'compani', u'lose', u'agent', u'orang', u'case']
[u'deni', u'obstruct', u'katrina', u'inquiri']
[u'detain', u'pinochet', u'daughter']
[u'vandal', u'flood', u'classroom']
[u'bushfir', u'crisi', u'worsen']
[u'firefight', u'prepar', u'worst']
[u'victorian', u'share', u'aust', u'honour']
[u'victoria', u'high', u'alert', u'fire', u'threaten', u'home']
[u'volunt', u'prais', u'emerg', u'effort']
[u'vote', u'end', u'palestinian', u'elect']
[u'labor', u'announc', u'resign']
[u'wallabi', u'like', u'turn', u'forc']
[u'wall', u'street', u'sputter', u'weak', u'hous', u'data']
[u'polic', u'warn', u'skyshow', u'misbehaviour']
[u'seek', u'fish', u'prison', u'camp', u'fund']
[u'weather', u'fan', u'fire']
[u'western', u'resid', u'honour', u'aust', u'award']
[u'western', u'resid', u'honour', u'aust', u'award']
[u'western', u'share', u'aust', u'award']
[u'wide', u'share', u'aust', u'honour']
[u'wildlif', u'group', u'call', u'spill', u'inquiri']
[u'wild', u'storm', u'whip', u'melbourn']
[u'wind', u'heat', u'intensifi', u'blaze']
[u'work', u'start', u'respit', u'centr']
[u'young', u'australian', u'lose', u'voic', u'cabinet']
[u'abba', u'insist', u'talk', u'israel', u'hama']
[u'accus', u'cronulla', u'rioter', u'win', u'bail']
[u'accus', u'court', u'child', u'porn', u'websit']
[u'aceh', u'self', u'rule', u'submit']
[u'alkaloid', u'scrutini', u'food', u'inquiri']
[u'angler', u'rescu', u'narooma', u'river', u'mishap']
[u'anthem', u'plan', u'simplist', u'say', u'premier']
[u'applebi', u'streak', u'continu']
[u'appoint', u'boost', u'orang', u'region', u'wine']
[u'project', u'tell', u'steal', u'generat', u'stori']
[u'hop', u'make', u'sens', u'bank', u'group']
[u'aust', u'citizen', u'jail', u'peopl', u'traffic']
[u'aust', u'award', u'southern', u'cross', u'achiev']
[u'aust', u'award', u'honour', u'local']
[u'australia', u'comfort', u'underdog']
[u'australia', u'celebr', u'attract', u'crowd']
[u'australia', u'go', u'japanes', u'tourist']
[u'australia', u'stumbl', u'strang', u'victori']
[u'author', u'quiz', u'stem', u'cell', u'scientist']
[u'mount', u'campaign', u'salvag', u'reput']
[u'power', u'keep', u'phone', u'aliv']
[u'barrett', u'test', u'worth', u'english', u'leagu', u'market']
[u'beatti', u'attack', u'inquiri', u'leak']
[u'bendigo', u'educ', u'chang', u'support']
[u'birthday', u'mozart', u'get', u'bash', u'genius']
[u'blaze', u'near', u'claim', u'carrara', u'church']
[u'blaze', u'threaten', u'home']
[u'blewett', u'replac', u'elliott', u'dayer']
[u'bolivian', u'presid', u'slash', u'salari']
[u'brazil', u'squad', u'world', u'say', u'pele']
[u'brewarrina', u'council', u'quit', u'amid', u'inquiri', u'fallout']
[u'break', u'hill', u'rememb', u'wick', u'opera', u'legend']
[u'brutal', u'honest', u'review', u'highlight', u'wallabi']
[u'bullet', u'prevail', u'time']
[u'cairn', u'name', u'citizen']
[u'stick', u'chemic']
[u'canada', u'deploy', u'ship', u'arctic', u'water']
[u'cancer', u'treatment', u'cost', u'rise']
[u'cancer', u'vaccin', u'comment', u'take', u'context', u'joyc']
[u'rule', u'greek', u'sprinter', u'turin', u'game']
[u'chelsea', u'blue']
[u'citrus', u'plan', u'aim', u'boost', u'export']
[u'coal', u'miner', u'offer', u'jigade', u'estat', u'guarante']
[u'cole', u'inquiri', u'hear', u'compani', u'kickback']
[u'colombian', u'polic', u'captur', u'terror', u'collabor']
[u'communiti', u'leader', u'pledg', u'help', u'identifi', u'cronulla']
[u'communiti', u'punish', u'soft', u'polic', u'union']
[u'compani', u'claim', u'bushfir', u'warn', u'scheme', u'success']
[u'applaud', u'cleaner']
[u'cooma', u'monaro', u'shire', u'name', u'citizen']
[u'copper', u'open', u'year']
[u'council', u'get', u'flood', u'studi', u'fund']
[u'council', u'give', u'draft', u'report', u'investig']
[u'council', u'hop', u'turnbul', u'help', u'water', u'woe']
[u'council', u'warn', u'copi', u'hollow', u'water']
[u'court', u'factor', u'ankl', u'injuri', u'say', u'clijster']
[u'crew', u'battl', u'bushfir', u'move', u'seventh']
[u'crew', u'continu', u'fight', u'blaze', u'south', u'west']
[u'cycl', u'drug', u'cheat', u'hand', u'suspend', u'jail', u'term']
[u'defenc', u'singl', u'desk']
[u'democrat', u'slam', u'joyc', u'cancer', u'vaccin', u'worri']
[u'devil', u'diseas', u'spread', u'north', u'tasmania']
[u'diplomat', u'india', u'nuclear', u'deal']
[u'dont', u'blame', u'defect', u'joyc', u'say']
[u'dream', u'go', u'final', u'baghdati']
[u'elect', u'result', u'threaten', u'middl', u'eastern', u'peac']
[u'emerg', u'spark', u'bribi', u'ambul', u'boost']
[u'england', u'look', u'eriksson', u'successor']
[u'expect', u'high', u'toll', u'spill']
[u'expert', u'support', u'push', u'ethanol']
[u'fatah', u'veteran', u'call', u'emerg', u'parti', u'leadership']
[u'fear', u'spill', u'threaten', u'great', u'barrier', u'reef']
[u'feder', u'kiefer', u'fight', u'right', u'face', u'giant', u'killer']
[u'feder', u'kiefer', u'clash', u'right', u'meet', u'giant']
[u'feder', u'see', u'kiefer']
[u'final', u'bind', u'henin', u'hardenn', u'pay', u'tribut', u'coach']
[u'crew', u'advantag', u'cooler', u'weather']
[u'crew', u'battl', u'blaze', u'night']
[u'firefight', u'continu', u'victoria']
[u'union', u'unhappi', u'provid', u'health']
[u'fish', u'buyer', u'confus', u'reign', u'spill']
[u'fish', u'die', u'richmond', u'river']
[u'fish', u'restrict', u'fear', u'air']
[u'folk', u'festiv', u'find', u'home']
[u'freeway', u'extens', u'get', u'green', u'light']
[u'arrest', u'cronulla', u'violenc']
[u'game', u'baton', u'relay', u'central', u'coast']
[u'german', u'hostag', u'show', u'video', u'kidnapp']
[u'lose', u'billion']
[u'govt', u'child', u'rate']
[u'govt', u'urg', u'deep', u'underground', u'power', u'fund']
[u'group', u'deni', u'disabl', u'servic', u'fund', u'claim']
[u'group', u'reject', u'hospit', u'delay', u'claim']
[u'hama', u'ask', u'form', u'govern']
[u'hama', u'urg', u'renounc', u'violenc']
[u'hama', u'win', u'landslid']
[u'hang', u'glider', u'pilot', u'rescu', u'spend', u'night']
[u'hang', u'glider', u'pilot', u'trap', u'metr', u'tree']
[u'hingi', u'australian', u'open', u'mix', u'doubl', u'final']
[u'hodgson', u'star', u'maul']
[u'hope', u'develop', u'canneri', u'site']
[u'horror', u'road', u'crash', u'claim', u'live']
[u'hous', u'capit', u'sever', u'unafford']
[u'howard', u'say', u'hama', u'chang', u'gain', u'australia']
[u'howard', u'undecid', u'futur']
[u'hugh', u'accus', u'ferdinand', u'spark', u'tunnel', u'fraca']
[u'hundr', u'farewel', u'policeman', u'kill', u'egypt', u'crash']
[u'hundr', u'honour', u'policeman', u'die', u'egypt']
[u'immigr', u'dept', u'investig', u'exploit', u'claim']
[u'incat', u'secur', u'intent', u'build', u'huge', u'catamaran']
[u'indonesian', u'fisher', u'suspect', u'poach']
[u'israel', u'say', u'talk', u'terrorist', u'palestinian']
[u'pioneer', u'kill', u'accid']
[u'japan', u'super', u'aguri', u'give', u'ahead']
[u'jayasuriya', u'waca', u'clash']
[u'jilt', u'pilot', u'jail', u'tower', u'crash', u'threat']
[u'juri', u'direct', u'manslaught', u'accus']
[u'katich', u'reliev', u'run']
[u'kimberley', u'get', u'monsoon', u'downpour']
[u'kingaroy', u'firm', u'come', u'cole', u'inquiri', u'spotlight']
[u'kookaburra', u'thrill', u'draw']
[u'land', u'sale', u'fund', u'civic', u'centr']
[u'leader', u'urg', u'accept', u'hama', u'govern']
[u'lightn', u'spark', u'blaze', u'victoria']
[u'local', u'govt', u'group', u'back', u'graffiti', u'game']
[u'long', u'wait', u'young', u'mental', u'health', u'vacanc']
[u'magistr', u'urg', u'tougher', u'action', u'centrelink', u'fraud']
[u'malaysia', u'build', u'crook', u'bridg']
[u'charg', u'campfir', u'start', u'blaze']
[u'convict', u'child', u'charg']
[u'die', u'highway', u'crash']
[u'drown', u'bairnsdal']
[u'face', u'court', u'kidnap', u'charg']
[u'surviv', u'drive', u'lake']
[u'marin', u'heffernan', u'leagu', u'clash']
[u'marin', u'shut', u'victori']
[u'market', u'cautious', u'wool', u'price', u'climb']
[u'market', u'upbeat', u'amid', u'posit', u'econom', u'data']
[u'massiv', u'drug', u'tunnel', u'mexico', u'border']
[u'mauresmo', u'readi', u'grasp', u'second', u'chanc', u'melbourn']
[u'mayor', u'accept', u'pool', u'fund', u'reject']
[u'mayor', u'offer', u'rate', u'rise', u'assur']
[u'mcewen', u'attack', u'letter', u'write']
[u'mcgauran', u'fallout', u'prompt', u'nation', u'crisi', u'talk']
[u'meatwork', u'suspend', u'australia']
[u'microsoft', u'report', u'record', u'second', u'quarter', u'earn']
[u'murray', u'name', u'citizen', u'year']
[u'reopen', u'see', u'vital', u'tourism']
[u'miner', u'drive', u'market', u'high']
[u'minist', u'quit', u'state', u'polit']
[u'minist', u'pleas', u'spill', u'clean']
[u'money', u'alloc', u'crime', u'prevent']
[u'firefight', u'help', u'blaze']
[u'mourinho', u'rule', u'wright', u'phillip', u'loan']
[u'forecast', u'mental', u'health', u'boost']
[u'see', u'supermarket', u'plan', u'threat', u'smaller']
[u'keen', u'merg', u'conserv', u'parti', u'windsor']
[u'mulcahi', u'play', u'leadership']
[u'nation', u'search', u'goldfield', u'esper']
[u'netbal', u'comfort', u'underdog']
[u'look', u'ministri', u'take', u'oath']
[u'centr', u'build', u'readi']
[u'govt', u'dept', u'blow', u'budget']
[u'firefight', u'join', u'bushfir', u'battl']
[u'nation', u'park', u'staff', u'help', u'fight', u'fire']
[u'deni', u'child', u'abus', u'case', u'ignor']
[u'opposit', u'back', u'pacif', u'worker', u'plan']
[u'oprah', u'say', u'dupe', u'drug', u'memoir']
[u'pakistan', u'coach', u'defend', u'flat', u'wicket', u'accus']
[u'pentagon', u'seek', u'militari', u'unit', u'counter']
[u'petrol', u'sniff', u'probe', u'skip']
[u'plan', u'track', u'jail', u'upgrad']
[u'talk', u'coalit']
[u'polic', u'arrest', u'protest']
[u'polic', u'hunt', u'drive', u'shooter']
[u'polic', u'investig', u'bathurst', u'bodi']
[u'polic', u'investig', u'gunnedah', u'attack']
[u'polic', u'investig', u'suspici', u'yulara', u'blaze']
[u'polic', u'prais', u'aust', u'crowd', u'despit', u'arrest']
[u'polic', u'prais', u'revel', u'aust', u'celebr']
[u'pont', u'spell', u'extend', u'perth']
[u'quinlan', u'say', u'lose', u'treasuri', u'portfolio']
[u'rain', u'spark', u'small', u'todd', u'river', u'flow']
[u'rain', u'stop', u'burdekin', u'pump']
[u'report', u'back', u'pacif', u'worker', u'rural', u'sector']
[u'resid', u'watch', u'dali', u'river', u'rise']
[u'return', u'papuan', u'refuge', u'indonesia']
[u'rezon', u'plan', u'go', u'communiti', u'consult']
[u'runner', u'complet', u'desert', u'ultra', u'marathon', u'chariti']
[u'lodg', u'high', u'court', u'challeng', u'chang']
[u'santo', u'plan', u'timor', u'field']
[u'saudi', u'teacher', u'skip', u'school']
[u'urg', u'donat', u'farmer']
[u'seafood', u'industri', u'fear', u'marin', u'park', u'plan']
[u'search', u'begin', u'miss', u'hang', u'glider']
[u'search', u'miss', u'canoeist', u'continu']
[u'servic', u'line', u'derail']
[u'souness', u'paranoid', u'cheltenham']
[u'stanhop', u'seek', u'histori', u'teach', u'clarif']
[u'storm', u'melbourn', u'crew', u'busi']
[u'stosur', u'down', u'chines', u'histori']
[u'support', u'trial', u'gorg', u'alcohol']
[u'sydney', u'harbour', u'fish', u'put', u'spotlight', u'import']
[u'sydney', u'power', u'past', u'bulleen']
[u'teacher', u'warn', u'publish', u'school', u'result']
[u'telstra', u'seek', u'overcom', u'daylesford', u'internet', u'woe']
[u'thorp', u'learn', u'live', u'jib']
[u'thorpi', u'flag', u'retir', u'date']
[u'wound', u'bomb', u'thai', u'justic', u'ministri']
[u'tourist', u'kill', u'cape', u'town', u'bushfir']
[u'trio', u'recognis', u'aust', u'honour']
[u'tripodi', u'see', u'manilla', u'problem', u'hand']
[u'trough', u'bring', u'rain', u'north']
[u'trust', u'fund', u'establish', u'firefight', u'famili']
[u'union', u'seek', u'communiti', u'correct', u'order', u'review']
[u'europ', u'shun', u'hama']
[u'valuat', u'chang', u'hurt', u'council', u'incom']
[u'volunt', u'effort', u'earn', u'aust', u'honour']
[u'crime', u'accus', u'refus', u'bail', u'sydney', u'court']
[u'warrnambool', u'power', u'outag', u'investig']
[u'water', u'charg', u'label', u'grab']
[u'weather', u'challeng', u'pelican', u'water', u'competitor']
[u'west', u'condemn', u'hama', u'elect']
[u'westpac', u'lift', u'charg']
[u'windi', u'review', u'tenur', u'aussi', u'coach', u'king']
[u'winegrow', u'beat', u'white', u'varieti']
[u'work', u'start', u'soon', u'rail', u'bridg']
[u'yabulu', u'refineri', u'expans', u'schedul']
[u'year', u'landhold']
[u'homeless', u'kenyan', u'polic', u'burn', u'forest']
[u'aborigin', u'communiti', u'watch', u'illeg', u'fish']
[u'alaska', u'augustin', u'volcano', u'erupt']
[u'anger', u'elect', u'result']
[u'aussi', u'pair', u'content', u'california']
[u'aussi', u'stifl', u'jayasuriya', u'brillianc', u'hussey']
[u'baghdatiss', u'parent', u'stay', u'home']
[u'bolivian', u'storm', u'kill']
[u'bryan', u'brother', u'men', u'doubl', u'titl']
[u'bush', u'urg', u'author', u'step', u'probe']
[u'call', u'uniform', u'sleep', u'apnoea', u'assist']
[u'ceo', u'pocket', u'week']
[u'chelsea', u'post', u'loss']
[u'child', u'access', u'homeless', u'support', u'near']
[u'chines', u'celebr', u'kick', u'sydney']
[u'clark', u'dorey', u'bracken', u'spot']
[u'compani', u'seal', u'deal', u'grain', u'busi']
[u'crew', u'headway', u'bushfir', u'fight']
[u'cyclon', u'move', u'away', u'coast']
[u'davi', u'longer', u'hewitt', u'prioriti', u'manag']
[u'defect', u'weaken', u'nation', u'senat', u'strength']
[u'ellison', u'support', u'plan', u'beef', u'illeg', u'fish']
[u'emerton', u'urg', u'hiddink', u'stick', u'socceroo']
[u'england', u'end', u'hockeyroo', u'final', u'hop']
[u'euro', u'draw', u'pit', u'franc', u'itali']
[u'ferguson']
[u'north', u'cyclon', u'watch']
[u'fear', u'spill', u'contamin', u'seafood']
[u'feder', u'expect', u'stern', u'challeng', u'baghdati']
[u'feder', u'honour', u'meet', u'idol', u'laver']
[u'tight', u'lip', u'hiddink', u'offer']
[u'author', u'urg', u'vigil']
[u'threat', u'remain']
[u'flood', u'close', u'north', u'west', u'australian', u'highway']
[u'foreign', u'troop', u'need', u'year', u'karzai']
[u'kenyan', u'cricket', u'boss', u'acquit', u'steal']
[u'dental', u'surgeri', u'plan']
[u'fowler', u'return', u'liverpool']
[u'gate', u'give', u'stop']
[u'gaza', u'protest', u'demand', u'abba', u'resign']
[u'gile', u'fight', u'lose', u'battl']
[u'govt', u'agre', u'fund', u'hickss', u'lawyer', u'cuba', u'visit']
[u'govt', u'reject', u'claim', u'rail', u'project', u'blowout']
[u'govt', u'rule', u'bail', u'maker']
[u'govt', u'fund', u'hick', u'lawyer', u'visit']
[u'govt', u'provid', u'financi', u'assist']
[u'hasti', u'pud', u'honour', u'gere', u'berri']
[u'henin', u'hardenn', u'devast', u'retir']
[u'henin', u'hardenn', u'draw', u'experi']
[u'hostag', u'give', u'chanc', u'iraq', u'abductor']
[u'hurrican', u'blow', u'brumbi', u'away']
[u'illeg', u'log', u'timber', u'import']
[u'incat', u'net', u'govt', u'loan', u'japanes', u'boat', u'deal']
[u'indigen', u'unemploy', u'rate', u'worst']
[u'indonesian', u'earthquak', u'rattl', u'darwin']
[u'industri', u'back', u'dump', u'super']
[u'interst', u'crew', u'bushfir', u'fight']
[u'king', u'clinch', u'spot']
[u'knight', u'grab', u'shock', u'draw']
[u'malaysian', u'team', u'track', u'bigfoot']
[u'arrest', u'solomon']
[u'bodi', u'truck', u'sweep', u'flood']
[u'mauresmo', u'break', u'grand', u'slam', u'titl', u'drought']
[u'mauresmo', u'final', u'crack', u'open', u'vintag']
[u'meatwork', u'suspend', u'take', u'australia']
[u'miss', u'teen']
[u'mundin', u'focus', u'end', u'faction', u'infight']
[u'nasa', u'mar', u'rover', u'star', u'imax', u'film']
[u'neitz', u'skipper', u'demon']
[u'newlyw', u'injur', u'crash']
[u'palestinan', u'group', u'clash', u'gaza']
[u'papuan', u'disadvantag', u'christma', u'dimia']
[u'perth', u'threaten', u'home']
[u'pete', u'doherti', u'jail', u'drug', u'charg']
[u'pinochet', u'daughter', u'send', u'pack']
[u'pinochet', u'daughter', u'withdraw', u'asylum', u'request']
[u'polic', u'consid', u'increas', u'patrol', u'follow']
[u'polic', u'defend', u'hand', u'cuff', u'doubl', u'park']
[u'polic', u'recov', u'man', u'bodi']
[u'polic', u'rescu', u'water']
[u'protest', u'demand', u'abba', u'reignat']
[u'radio', u'dupe', u'french', u'prime', u'minist']
[u'rain', u'mix', u'bless', u'crew']
[u'call', u'enforc', u'order', u'lower', u'bank', u'fee']
[u'rossi', u'take', u'brave', u'step', u'test', u'webber']
[u'russian', u'conscript', u'leg', u'amput', u'brutal']
[u'opposit', u'promis', u'boost', u'traine', u'travel']
[u'scrub', u'control']
[u'second', u'teen', u'charg', u'drive', u'shoot']
[u'seiz', u'patagonian', u'toothfish', u'sale']
[u'kill', u'kashmir', u'clash']
[u'studi', u'hold', u'bird', u'flus', u'virul']
[u'taipan', u'sixer']
[u'land', u'hous', u'crisi', u'plan']
[u'charg', u'offic', u'murder']
[u'thousand', u'boot', u'scoot', u'tamworth', u'countri', u'music']
[u'sale', u'intensifi']
[u'ukrain', u'condemn', u'divert', u'suppli']
[u'condemn', u'militia', u'africa', u'great', u'lake', u'region']
[u'urg', u'sudan', u'stop', u'darfur', u'violenc']
[u'updat', u'urg', u'produc', u'conduct', u'law']
[u'approv', u'diabet', u'inhal']
[u'call', u'defer', u'essenti', u'travel', u'pakistan']
[u'venezuela', u'accus', u'embassi']
[u'fire', u'control']
[u'threat', u'eas']
[u'vigil', u'urg', u'firefight', u'gain', u'upper', u'hand']
[u'wall', u'street', u'shrug', u'weak']
[u'nation', u'abandon', u'coalit']
[u'nation', u'abandon', u'liber', u'coalit']
[u'waratah', u'edg', u'blue', u'crusad', u'forc']
[u'waratah', u'edg', u'blue', u'forc', u'down']
[u'blackmail', u'hama', u'say']
[u'wildlif', u'group', u'expect', u'signific', u'damag']
[u'william', u'aim', u'place']
[u'woman', u'charg', u'parliament', u'hous', u'threat']
[u'workcov', u'launch', u'safeti', u'blitz', u'canberra', u'cafe']
[u'treat', u'toowoomba', u'leak']
[u'mull', u'photo', u'disabl', u'park', u'permit']
[u'akmal', u'fight', u'pakistan', u'pathan']
[u'kill', u'flood']
[u'atletico', u'continu', u'reviv', u'depor']
[u'aussi', u'down', u'junior', u'boy', u'final']
[u'aussi', u'final', u'spot']
[u'australian', u'welcom', u'chines', u'year']
[u'autopsi', u'show', u'women', u'die', u'stab', u'wound']
[u'baghdati', u'upbeat', u'feder', u'favourit']
[u'bomb', u'kill', u'iraq']
[u'britain', u'check', u'report', u'arrest', u'russia']
[u'burn', u'bodi', u'part']
[u'capit', u'book', u'final', u'berth']
[u'cassar', u'daley', u'domin', u'golden', u'guitar']
[u'challeng', u'anniversari', u'pay', u'tribut', u'astronaut']
[u'chines', u'greet', u'year']
[u'claim', u'gag', u'climat', u'expert']
[u'coastal', u'communiti', u'face', u'sewag', u'challeng']
[u'cosgrov', u'lehmann', u'push', u'redback', u'second']
[u'crime', u'scene', u'establish', u'bodi', u'part']
[u'cyclon', u'head', u'caledonia']
[u'cyclon', u'pick', u'speed']
[u'death', u'toll', u'climb', u'poland', u'disast']
[u'death', u'toll', u'rise', u'poland', u'roof', u'collaps']
[u'death', u'toll', u'rise', u'polish', u'hall', u'collaps']
[u'director', u'guild', u'honour', u'brokeback', u'mountain']
[u'doctor', u'labor', u'talk', u'health', u'hotlin', u'plan']
[u'gunner', u'sunderland']
[u'feder', u'surg', u'seventh', u'grand', u'slam', u'titl']
[u'firefight', u'confid', u'make', u'progress']
[u'firefight', u'prais', u'outstand', u'support']
[u'threat', u'eas']
[u'food', u'label', u'law', u'joke', u'ausveg']
[u'freez', u'weather', u'wreak', u'havoc', u'europ']
[u'gamba', u'grass', u'burn']
[u'gatecrash', u'blame', u'rowdi', u'parti']
[u'gilchrist', u'lead', u'aussi', u'victori']
[u'gilchrist', u'smash', u'impress', u'centuri']
[u'govt', u'accus', u'abandon', u'young', u'peopl']
[u'govt', u'hit', u'fund', u'claim']
[u'govt', u'soon', u'consid', u'anti', u'corrupt', u'rule']
[u'govt', u'spend', u'public', u'hospit', u'surgeri']
[u'govt', u'want', u'state', u'base', u'medic', u'hotlin']
[u'grampian', u'mayor', u'plan', u'bushfir', u'appeal']
[u'green', u'govt', u'grant', u'asylum', u'papuan']
[u'gunmen', u'parliament', u'build']
[u'hama', u'leader', u'vow', u'effect', u'polit']
[u'hama', u'vow', u'work', u'west']
[u'health', u'hotlin', u'debat']
[u'hingi', u'bag', u'mix', u'doubl', u'titl']
[u'hingi', u'win', u'australian', u'open', u'mix', u'doubl']
[u'hockeyroo', u'claim', u'place', u'argentina']
[u'hors', u'death', u'prompt', u'rodeo']
[u'hostag', u'video', u'prompt', u'releas', u'plea']
[u'hous', u'shortag', u'worsen', u'resum']
[u'industri', u'hail', u'decis', u'sell', u'poach', u'toothfish']
[u'interim', u'report', u'pressur', u'etsa', u'conlon']
[u'internet', u'compani', u'snub', u'appeal', u'stand']
[u'investig', u'prison', u'rape']
[u'iran', u'need', u'time', u'consid', u'nuclear', u'propos']
[u'iran', u'russia', u'reach', u'nuclear', u'agreement']
[u'iraq', u'boost', u'export']
[u'khan', u'answer', u'critic', u'lightn', u'victori']
[u'kid', u'brush', u'world', u'record']
[u'kuwait', u'parliament', u'elect', u'emir']
[u'loney', u'announc', u'retir', u'state', u'polit']
[u'lowli', u'breaker', u'king', u'home', u'streak']
[u'lynx', u'ensur', u'remain', u'winless']
[u'charg', u'indec', u'assault']
[u'kill', u'rock', u'climb', u'accid']
[u'kill', u'singl', u'vehicl', u'crash']
[u'question', u'bodi']
[u'mauresmo', u'final', u'satisfi']
[u'medic', u'hotlin', u'strain', u'hospit']
[u'mix', u'respons', u'health', u'hotlin', u'plan']
[u'bodi', u'recov', u'polish', u'hall', u'collaps']
[u'mottram', u'triumph', u'boston', u'indoor', u'meet']
[u'govt', u'backlash', u'staff', u'speak', u'martin']
[u'lead', u'australia', u'construct', u'activ']
[u'pakistani', u'polic', u'ensur', u'peac']
[u'pampl', u'share', u'lead', u'california']
[u'perth', u'blaze', u'threaten', u'properti']
[u'iguana', u'flood', u'german', u'apart']
[u'pinochet', u'daughter', u'arrest', u'arriv', u'chile']
[u'polic', u'investig', u'human', u'remain', u'burn', u'barrel']
[u'polic', u'question', u'pair', u'bodi', u'part', u'discoveri']
[u'polic', u'releas', u'question', u'altona']
[u'polic', u'seek', u'info', u'murray', u'river', u'bodi']
[u'polic', u'seek', u'kogarah', u'stab']
[u'polio', u'immunis', u'drive', u'target']
[u'polish', u'hall', u'roof', u'collaps', u'injur']
[u'polish', u'rescu', u'team', u'abandon', u'search', u'survivor']
[u'public', u'happi', u'hospit', u'govt', u'say']
[u'voic', u'desir', u'host', u'nation', u'health', u'hotlin']
[u'queensland', u'secur', u'claxton', u'shield']
[u'rain', u'hamper', u'backburn', u'effort']
[u'rain', u'hamper', u'firefight', u'effort']
[u'red', u'wendel', u'campaign', u'bizarr', u'mckenzi']
[u'red', u'wendel', u'campaign', u'bizarr', u'waratah']
[u'russia', u'arrest', u'spi']
[u'russian', u'suppli', u'resum', u'georgia']
[u'saddam', u'trial', u'resum']
[u'saddam', u'walk', u'court']
[u'seafood', u'industri', u'call', u'fast', u'test', u'follow']
[u'secur', u'tight', u'lahor', u'marathon']
[u'smoker', u'urg', u'dispos', u'butt', u'safe']
[u'surf', u'lifesav', u'issu', u'blue', u'bottl', u'warn']
[u'sydney', u'complet', u'final', u'contend']
[u'say', u'telstra', u'ignor', u'custom']
[u'teacher', u'train', u'road', u'safeti', u'lesson']
[u'tiger', u'collaps', u'hand', u'warrior', u'victori']
[u'titl', u'dream', u'milan']
[u'trujillo', u'visit']
[u'cambodian', u'arrest', u'tourist', u'stab']
[u'warn', u'iran', u'nuclear', u'issu']
[u'envisag', u'caster', u'bird', u'fight']
[u'unrest', u'juvenil', u'justic', u'centr']
[u'crash', u'queensland']
[u'condit', u'eas']
[u'crew', u'bolster', u'contain', u'line']
[u'road', u'link', u'remain', u'block', u'flood']
[u'spend', u'lure', u'intern', u'tourist']
[u'see', u'agreement', u'reduc', u'trade', u'barrier']
[u'wildcat', u'darwin', u'fortress']
[u'wildlif', u'group', u'attempt', u'captur', u'cover']
[u'windi', u'cash', u'disput', u'settl']
[u'speed', u'limit', u'unlaw', u'court', u'hear']
[u'hous', u'fire', u'prove', u'cost']
[u'tourism', u'campaign', u'success']
[u'allison', u'durbin', u'face', u'court', u'drug', u'charg']
[u'candid', u'cite', u'green', u'interest']
[u'lay', u'tafe', u'plan']
[u'armi', u'say', u'problem', u'get', u'recruit']
[u'audit', u'discrep', u'consult']
[u'aussi', u'answer', u'critic', u'convinc', u'victori']
[u'execut', u'draw', u'blank', u'email']
[u'inquiri', u'widen']
[u'lawyer', u'label', u'inquiri', u'unfair']
[u'baghdati', u'admit', u'lose', u'focus', u'feder']
[u'baghdati', u'hail', u'cyprus', u'hero']
[u'baghdati', u'hewitt', u'drop']
[u'bali', u'lawyer', u'secur', u'trial', u'delay']
[u'barcelona', u'point', u'clear', u'real', u'away']
[u'beatti', u'readi', u'frank', u'talk', u'health']
[u'beekeep', u'protest', u'rais', u'tree', u'protect', u'issu']
[u'bemax', u'share', u'price', u'hit', u'high']
[u'crowd', u'enjoy', u'chines', u'year', u'celebr']
[u'bodi', u'drum']
[u'fear', u'drown', u'bridg', u'accid']
[u'broaden', u'inquiri', u'beazley', u'urg']
[u'buoyant', u'unit', u'turn', u'attent', u'leagu']
[u'busi', u'invest', u'school', u'help', u'solv']
[u'busi', u'seek', u'infrastructur', u'chang']
[u'cancer', u'centr', u'say', u'patient', u'wont', u'turn', u'away']
[u'celebr', u'chef', u'add', u'parliament', u'menu']
[u'chavez', u'role', u'prompt', u'grumbl', u'social', u'forum']
[u'ciss', u'deni', u'caution', u'assault', u'wife']
[u'clumsi', u'visitor', u'smash', u'priceless', u'vase']
[u'code', u'tough', u'dodgi', u'tour', u'oper']
[u'condit', u'water', u'suppli', u'plan']
[u'corbi', u'famili', u'fire', u'son', u'lawyer']
[u'cosgrov', u'eye', u'world', u'berth']
[u'council', u'meet', u'debat', u'contract']
[u'council', u'urg', u'care', u'retail', u'plan']
[u'court', u'suppress', u'barrel', u'victim', u'ident']
[u'crash', u'like', u'obliter']
[u'crash', u'elbow', u'brokeback', u'actor', u'award']
[u'crescent', u'head', u'drive', u'worri', u'polic']
[u'crew', u'tri', u'contain', u'bushfir']
[u'crisi', u'talk', u'avert', u'doctor', u'walkout']
[u'cronulla', u'retali', u'accus', u'withdraw', u'bail']
[u'cyclon', u'head', u'caledonia']
[u'cyprus', u'tighten', u'measur', u'bird', u'virus']
[u'dairi', u'farmer', u'tick', u'pesticid', u'access']
[u'death', u'spark', u'driver', u'safeti']
[u'defenc', u'colleg', u'build', u'collaps']
[u'dept', u'count', u'cost', u'park', u'blaze', u'damag']
[u'desalin', u'plant', u'good', u'option', u'sydney']
[u'devil', u'tumour', u'diseas', u'near', u'nation', u'park']
[u'dog', u'kennel', u'blaze']
[u'driver', u'remind', u'slow', u'school', u'zone']
[u'edmiston', u'break']
[u'death', u'mysteri']
[u'elect', u'offici', u'reduc', u'hama', u'seat']
[u'emerg', u'dept', u'case', u'rise']
[u'english', u'tourist', u'refus', u'bail', u'scot', u'death']
[u'etsa', u'inquiri', u'begin', u'blackout']
[u'falun', u'gong', u'protest', u'threaten', u'right', u'court', u'hear']
[u'famili', u'endur', u'stick', u'lift', u'ordeal']
[u'feder', u'reliev', u'australian', u'open', u'victori']
[u'feedback', u'seek', u'plan']
[u'firefight', u'collaps', u'blaze']
[u'firefight', u'fear', u'control', u'line', u'break']
[u'fire', u'impact', u'local', u'water', u'catchment']
[u'delay', u'school', u'start']
[u'firework', u'blast', u'kill', u'china']
[u'firm', u'get', u'rail', u'freight', u'termin']
[u'floodwat', u'close', u'highway']
[u'frustrat', u'doctor', u'turn', u'oldest', u'profess']
[u'fund', u'green', u'light', u'coolgardi', u'main', u'street']
[u'game', u'baton', u'travers', u'north', u'coast']
[u'genet', u'link', u'gooey', u'earwax']
[u'german', u'chancellor', u'say', u'iran', u'threaten', u'democrat']
[u'gilchrist', u'lead', u'aussi', u'victori']
[u'gilchrist', u'star', u'lanka']
[u'glori', u'coach', u'vest', u'question', u'player', u'commit']
[u'gold', u'coast', u'join', u'game', u'baton', u'relay']
[u'govt', u'ask', u'address', u'cross', u'danger']
[u'govt', u'consid', u'smoke', u'protect', u'children']
[u'govt', u'council', u'play', u'blame', u'game', u'becton', u'plan']
[u'govt', u'hit', u'mobil', u'extens', u'decis']
[u'govt', u'ramp', u'locust', u'control', u'effort']
[u'start', u'work', u'aberdeen']
[u'grain', u'compani', u'sell']
[u'granit', u'belt', u'join', u'game', u'baton', u'relay']
[u'great', u'southern', u'eye', u'organ', u'oliv', u'boom']
[u'green', u'seek', u'food']
[u'group', u'say', u'asylum', u'seeker', u'face', u'death', u'send']
[u'group', u'seek', u'saleyard', u'panel', u'hear', u'adjourn']
[u'hama', u'refus', u'call', u'disarm']
[u'hama', u'urg', u'continu', u'fund']
[u'hayden', u'watson', u'line', u'blue']
[u'health', u'dept', u'reject', u'chang', u'hospit', u'site']
[u'health', u'support', u'drug', u'user', u'region', u'area']
[u'heartbroken', u'teacher', u'plead', u'guilti']
[u'higher', u'answer', u'health', u'crisi', u'academ']
[u'high', u'rise', u'plan', u'caus', u'plan', u'fear']
[u'hop', u'facil', u'boost', u'specialist', u'number']
[u'hopetoun', u'power', u'boost']
[u'hunter', u'water', u'move', u'energi', u'effici', u'build']
[u'illawarra', u'firefight', u'home', u'effort']
[u'indian', u'reshuffl', u'cabinet']
[u'industri', u'consid', u'lobster', u'exclus', u'devic']
[u'investig', u'continu', u'bodi', u'part']
[u'challeng', u'unbeliev', u'quinn', u'say']
[u'israel', u'freez', u'palestinian', u'fund']
[u'israel', u'freez', u'fund', u'palestinian', u'leadership']
[u'want', u'finish', u'career', u'real', u'beckham']
[u'jade', u'edmiston', u'race', u'interview']
[u'katich', u'hold', u'test', u'hop']
[u'labor', u'plan', u'apprentic', u'tafe', u'fee']
[u'labor', u'tafe', u'promis', u'dodg', u'real', u'issu', u'union', u'say']
[u'trobe', u'student', u'lend', u'hand', u'histor']
[u'letter', u'govt', u'role', u'rudd']
[u'libya', u'shut', u'embassi', u'protest', u'danish', u'cartoon']
[u'london', u'bomb', u'probe', u'stall']
[u'main', u'road', u'open', u'rain', u'fall', u'zone']
[u'charg', u'child', u'assault']
[u'charg', u'murder', u'loxton', u'resid']
[u'die', u'plainland', u'motorcycl', u'crash']
[u'die', u'rock', u'climb', u'mishap']
[u'face', u'court', u'indec', u'assault', u'charg']
[u'court', u'bodi', u'drum']
[u'court', u'sydney', u'teen', u'murder']
[u'face', u'court', u'accus', u'child', u'assault']
[u'liverpool', u'reach', u'fifth', u'round']
[u'mayor', u'beat', u'primari', u'industri', u'minist']
[u'meatwork', u'look', u'good', u'year']
[u'miss', u'fisherman', u'swim', u'ashor']
[u'time', u'wild', u'river', u'legisl', u'object']
[u'move', u'oppos', u'wind', u'farm', u'approv']
[u'murder', u'shock', u'loxton', u'communiti']
[u'nation', u'suspect', u'liber', u'mcgauran']
[u'airport', u'park', u'chang', u'forc']
[u'aquacultur', u'zone', u'open']
[u'charg', u'lay', u'fake', u'death', u'case']
[u'power', u'station', u'boost', u'indigen', u'communiti']
[u'noordin', u'leader', u'splinter', u'group']
[u'resolv', u'clamp', u'grappl']
[u'work', u'address', u'skill', u'worker', u'shortag']
[u'nurs', u'open', u'health', u'hotlin', u'plan']
[u'spill', u'test', u'local', u'seafood', u'industri', u'hold']
[u'open', u'fail', u'water', u'concern']
[u'organis', u'step', u'ban', u'rodeo', u'campaign']
[u'outgo', u'blast', u'cruel', u'sentenc', u'rule']
[u'overboard', u'fisherman', u'fine', u'tire']
[u'pair', u'charg', u'bodi', u'drum']
[u'pakistani', u'train', u'plung', u'ravin']
[u'pakistan', u'suspect', u'sabotag', u'derail']
[u'pakistan', u'charg', u'decis', u'india', u'test']
[u'perth', u'blaze', u'control']
[u'pierc', u'creek', u'local', u'dismiss', u'reloc', u'idea']
[u'pilbara', u'crime', u'rate', u'drop']
[u'pilgrim', u'kill', u'bangladesh', u'smash']
[u'plan', u'visitor', u'centr']
[u'deni', u'link', u'scam']
[u'pipelin', u'plan', u'creat', u'green', u'concern']
[u'polic', u'captur', u'prison', u'escap']
[u'polic', u'fear', u'miss', u'miner']
[u'polic', u'investig', u'hotel', u'emerg']
[u'polic', u'open', u'murder', u'inquiri', u'assault', u'victim', u'die']
[u'polic', u'probe', u'fatal', u'motor', u'scooter', u'crash']
[u'polic', u'seek', u'west', u'dubbo', u'snatcher']
[u'polic', u'burn', u'indonesian', u'vessel']
[u'polic', u'crack', u'school', u'zone', u'speeder']
[u'processor', u'fail', u'meet', u'kangaroo', u'meat', u'demand']
[u'promin', u'aborigin', u'activist', u'lay', u'rest']
[u'protea', u'consid', u'australia', u'boycott', u'racism']
[u'push', u'mcgauran', u'quit', u'senat', u'intensifi']
[u'begin', u'court', u'challeng']
[u'race', u'relat', u'good', u'despit', u'shoot', u'indigen']
[u'rain', u'help', u'reliev', u'palm', u'water', u'woe']
[u'rain', u'like', u'caus', u'traffic', u'woe']
[u'ralli', u'shin', u'spotlight', u'council', u'democraci']
[u'repriev', u'launceston', u'ratepay']
[u'resourc', u'sector', u'push', u'market', u'record', u'close']
[u'review', u'biggest', u'best', u'countri', u'festiv', u'begin']
[u'retain', u'red', u'captainci']
[u'rise', u'porteous', u'attend', u'court', u'hear']
[u'farmer', u'help', u'ravag', u'neighbour']
[u'safe', u'push', u'goldfield']
[u'sandalwood', u'seed', u'search', u'spread', u'west']
[u'scholarship', u'winner', u'look', u'forward', u'meet']
[u'school', u'experi', u'feder', u'grant', u'delay']
[u'chang', u'good', u'environ']
[u'sister', u'slay', u'shock', u'communiti']
[u'sixer', u'breath', u'sigh', u'relief', u'maher']
[u'snail', u'cancer', u'research']
[u'speed', u'camera', u'activ', u'curb', u'speed']
[u'stab', u'victim', u'run', u'help', u'attack', u'fall']
[u'steven', u'take', u'thorp', u'absenc']
[u'steven', u'time', u'shine', u'game', u'trial']
[u'studi', u'determin', u'highway', u'upgrad', u'section']
[u'submiss', u'focus', u'port', u'transport', u'link']
[u'super', u'fund', u'take', u'tech', u'plung']
[u'support', u'servic', u'offer', u'export', u'help']
[u'survey', u'right', u'funni', u'right', u'pretti']
[u'tafe', u'reveal', u'good']
[u'team', u'australia', u'crash', u'durban']
[u'teen', u'charg', u'detent', u'centr', u'unrest']
[u'time', u'feder', u'laver']
[u'tourist', u'charg', u'fatal', u'stab']
[u'tour', u'oper', u'tell', u'improv', u'woman', u'hippo']
[u'trezeguet', u'quick', u'trebl', u'keep', u'juve', u'clear']
[u'tropic', u'north', u'queensland', u'monday', u'januari']
[u'unhappi', u'fast', u'food', u'restaur']
[u'union', u'head', u'join', u'race', u'seat']
[u'union', u'seek', u'polic', u'number', u'boost']
[u'unknown', u'hitler', u'paint', u'attic']
[u'journalist', u'cameraman', u'hurt', u'iraq', u'blast']
[u'warship', u'arriv', u'sydney', u'ahead', u'confer']
[u'firefight', u'give', u'final', u'farewel']
[u'govt', u'set', u'bushfir', u'support', u'task', u'forc']
[u'victori', u'stenson', u'buri', u'qatar', u'heartbreak']
[u'vintag', u'harvest', u'work', u'magic']
[u'wagga', u'student', u'behaviour', u'centr']
[u'walk', u'rais', u'fund', u'brain', u'injuri', u'victim']
[u'resid', u'feel', u'snub', u'baton', u'bypass']
[u'water', u'suppli', u'like', u'normal']
[u'westfield', u'donat', u'wheelchair', u'gaff']
[u'wineri', u'win', u'drop', u'honour']
[u'wine', u'worker', u'stop', u'work']
[u'wit', u'seek', u'second', u'fatal', u'crash']
[u'wollemi', u'tree', u'diseas', u'confin']
[u'woman', u'bite', u'theft']
[u'wood', u'pip', u'green', u'olazab', u'play']
[u'wool', u'bodi', u'eye', u'sportswear', u'industri']
[u'worker', u'trap', u'safe', u'canadian']
[u'yass', u'famili', u'share', u'fine', u'wool', u'achiev']
[u'british', u'soldier', u'kill', u'iraq']
[u'campaign', u'aim', u'close', u'citi', u'rural', u'divid']
[u'admir', u'float', u'compulsori', u'nation', u'servic', u'plan']
[u'school', u'care', u'closur', u'creat', u'concern']
[u'airport', u'passeng', u'number']
[u'qaeda', u'deputi', u'taunt', u'raid']
[u'qaeda', u'leader', u'appear', u'video']
[u'amnesti', u'criticis', u'execut', u'mental']
[u'anti', u'terror', u'law', u'increas', u'chanc', u'attack']
[u'hail', u'anti', u'dope', u'author', u'plan']
[u'asylum', u'seeker', u'fear', u'live']
[u'audit', u'find', u'spend', u'approv']
[u'australasian', u'open', u'qualifi', u'start', u'today']
[u'avocado', u'grower', u'compet', u'import']
[u'award', u'recognis', u'polic', u'effort']
[u'tender', u'extra', u'document']
[u'weather', u'hamper', u'search', u'miss']
[u'beazley', u'steer', u'clear', u'crean', u'challeng']
[u'bega', u'hospit', u'demount', u'threatr']
[u'berri', u'estat', u'worker', u'strike']
[u'book', u'take', u'machin']
[u'brack', u'open', u'stage', u'educ', u'centr']
[u'breed', u'sit', u'creat', u'dengu', u'outbreak', u'fear']
[u'bronz', u'sculptur', u'theft', u'baffl', u'scotland', u'yard']
[u'build', u'start', u'million', u'resort']
[u'firm', u'fear', u'higher', u'fare']
[u'camel', u'sale', u'success', u'prompt', u'second', u'auction']
[u'camp', u'cook', u'demand']
[u'council', u'back', u'polic', u'station']
[u'council', u'footi', u'club', u'closer', u'rental']
[u'council', u'investig', u'arsenic', u'water', u'suppli']
[u'councillor', u'stay', u'best', u'behaviour']
[u'councillor', u'wont', u'apologis', u'tabl', u'letter']
[u'council', u'respons', u'water', u'plant', u'delay', u'mayor']
[u'council', u'hold', u'wind', u'farm', u'plan', u'meet']
[u'council', u'reconsid', u'hostel', u'decis']
[u'council', u'urg', u'delay', u'pool']
[u'council', u'urg', u'public', u'advertis', u'posit']
[u'cricket', u'australia', u'call', u'lifetim', u'ban']
[u'cruis', u'golden', u'raspberri']
[u'death', u'toll', u'rise', u'freez', u'weather']
[u'detail', u'seek', u'thai', u'telecom', u'compani', u'sale']
[u'develop', u'creat', u'plan', u'concern']
[u'dfat', u'awar', u'contract']
[u'dfat', u'deceiv', u'truck', u'payment', u'inquiri']
[u'doctor', u'criticis', u'surgeri', u'slowdown', u'plan']
[u'doctor', u'group', u'seek', u'region', u'hospit', u'revamp']
[u'driver', u'jail', u'dead', u'accid']
[u'driver', u'ignor', u'school', u'speed', u'limit']
[u'edmiston', u'chase', u'record', u'second', u'night']
[u'elect', u'surgeri', u'wait', u'time', u'longest']
[u'emerg', u'surgeri', u'ban', u'maitland', u'hospit']
[u'assess', u'pilbara', u'mine', u'project']
[u'escape', u'captur', u'near', u'ballarat']
[u'evacu', u'strand', u'communiti']
[u'facial', u'surgeri', u'fail', u'sidelin', u'rucker']
[u'famili', u'put', u'hous', u'market', u'fund', u'cancer', u'fight']
[u'ferri', u'eas', u'traffic', u'congest']
[u'flanagan', u'lead', u'round', u'british', u'open']
[u'forc', u'tangl', u'player']
[u'forestri', u'degre', u'studi', u'begin']
[u'head', u'issu', u'warn', u'allianc']
[u'enron', u'boss', u'final', u'face', u'court']
[u'fuel', u'price', u'weather', u'blame', u'hike', u'fresh', u'food']
[u'furnitur', u'shop', u'damag']
[u'game', u'baton', u'move', u'north']
[u'govt', u'ask', u'drought', u'decis']
[u'govt', u'close', u'steal', u'wag', u'fund']
[u'govt', u'criticis', u'lockout', u'plan']
[u'govt', u'deni', u'eyr', u'peninsula', u'polic', u'shortag', u'claim']
[u'govt', u'plan', u'rodeo', u'code', u'practic']
[u'govt', u'address', u'detent', u'centr', u'woe']
[u'govt', u'urg', u'tougher', u'enforc', u'food']
[u'green', u'announc', u'braddon', u'candid']
[u'green', u'highlight', u'continu', u'baxter', u'shortcom']
[u'green', u'push', u'papuan', u'asylum', u'seeker', u'case']
[u'grower', u'currant', u'crop']
[u'health', u'committe', u'prepar', u'final', u'report']
[u'health', u'hotlin', u'oper', u'back', u'servic']
[u'health', u'servic', u'reject', u'debt', u'claim']
[u'heidi', u'chronicl', u'playwright', u'wasserstein', u'die']
[u'histori', u'preserv', u'armidal']
[u'posit', u'guilti', u'endang', u'women']
[u'hollywood', u'hold', u'breath', u'oscar', u'nomin']
[u'home', u'drug', u'like', u'region', u'research']
[u'hope', u'tour', u'lift', u'hall', u'tourism']
[u'hospit', u'get', u'dental', u'boost']
[u'hospit', u'fund']
[u'howard', u'unconcern', u'nation', u'poll', u'plan']
[u'indigen', u'administr', u'watch', u'mornington']
[u'indigen', u'group', u'share', u'infrastructur', u'fund']
[u'itali', u'solv', u'game', u'dope', u'disput']
[u'jackson', u'play', u'burst', u'ranger', u'look']
[u'japan', u'leav', u'iraq', u'report']
[u'johnson', u'lead', u'bulldog', u'darci', u'absenc']
[u'jone', u'take', u'tip', u'lille']
[u'judg', u'hear', u'case', u'deport', u'serbia']
[u'juri', u'unabl', u'rule', u'church', u'minist', u'charg']
[u'keelti', u'criticis', u'anti', u'terror']
[u'kidnap', u'journalist', u'make', u'video', u'appeal']
[u'kitzbichl', u'head', u'home']
[u'lachlan', u'river', u'fish', u'kill', u'investig']
[u'lawyer', u'group', u'question', u'counter', u'terror', u'law']
[u'lenton', u'reclaim', u'world', u'record']
[u'liber', u'urg', u'reject', u'mcgauran', u'membership']
[u'push', u'appl']
[u'liverpool', u'draw']
[u'local', u'firefight', u'return', u'fire']
[u'lord', u'dream', u'come', u'true', u'execut']
[u'price', u'fall', u'demand', u'slow', u'wheat', u'export']
[u'macquari', u'field', u'manslaught', u'accus', u'stand']
[u'break', u'time', u'protea', u'say', u'smith']
[u'berat', u'take', u'son', u'rough', u'sea']
[u'charg', u'loxton', u'slay']
[u'defend', u'give', u'morphin', u'overdos', u'wife']
[u'die', u'north', u'fall', u'dive']
[u'overboard', u'end', u'land', u'hour', u'later']
[u'man', u'bodi', u'dame', u'nelli', u'estat']
[u'manslaught', u'accus', u'time', u'legal', u'limit']
[u'face', u'trial', u'accus', u'invest', u'fraud']
[u'market', u'slip', u'record', u'high']
[u'market', u'stall', u'ahead', u'rat', u'decis']
[u'marsupi', u'genom', u'sequenc']
[u'mega', u'wind', u'farm', u'plan']
[u'menegazzo', u'plane', u'crash', u'investig', u'find', u'clue']
[u'west', u'iron', u'plan', u'ahead']
[u'miner', u'sand', u'stockpil', u'begin']
[u'minist', u'reject', u'compulsori', u'nation', u'servic']
[u'minist', u'weigh', u'rise', u'doctor']
[u'rain', u'forecast', u'flood', u'cut', u'highway']
[u'unrest', u'expect', u'dubbo']
[u'mottram', u'decid', u'game']
[u'label', u'divis']
[u'mundin', u'green', u'talk', u'clash']
[u'nation', u'feder', u'execut', u'crisi', u'talk']
[u'nation', u'gather', u'crisi', u'talk']
[u'nelson', u'unawar', u'japanes', u'pullout', u'plan']
[u'newcastl', u'golfer', u'score', u'finish', u'tour']
[u'nightclub', u'lockout', u'cure', u'polic', u'minist']
[u'major', u'injuri', u'sustain', u'colleg', u'roof']
[u'nuclear', u'watchdog', u'urg', u'report', u'iran']
[u'shearer', u'break', u'work', u'record']
[u'chief', u'deni', u'lackey', u'claim']
[u'offic', u'shoot', u'dead', u'pilbara', u'roadsid']
[u'pair', u'spike', u'drink', u'commit', u'attack', u'court', u'tell']
[u'pakistan', u'seri']
[u'papua', u'asylum', u'seeker', u'flee', u'persecut']
[u'parent', u'angri', u'school', u'woe']
[u'parti', u'split', u'product', u'report', u'card']
[u'payment', u'proper', u'inquiri', u'tell']
[u'pharmacist', u'help', u'polic', u'drug', u'crackdown']
[u'philippoussi', u'overlook', u'davi']
[u'pitcairn', u'appeal', u'convict']
[u'pittman', u'skip', u'hurdl', u'comm', u'game', u'trial']
[u'plan', u'begin', u'south', u'coast', u'defenc', u'exercis']
[u'call', u'aussi', u'watch', u'manner']
[u'damp', u'talk', u'contest']
[u'give', u'realiti', u'check', u'manner']
[u'polic', u'consid', u'hate', u'websit', u'complaint']
[u'polic', u'consid', u'industri', u'unrest', u'staff', u'number']
[u'polic', u'examin', u'taxi', u'fatal', u'bash']
[u'polic', u'face', u'assault', u'claim']
[u'polic', u'hunt', u'teen', u'rape', u'murder', u'case']
[u'polic', u'investig', u'fatal', u'pilbara', u'shoot']
[u'polic', u'investig', u'fruit', u'picker', u'attack']
[u'polic', u'investig', u'suspici', u'death']
[u'polic', u'lack', u'evid', u'support', u'durbin', u'drug', u'deal']
[u'polic', u'launch', u'zero', u'toler', u'respons', u'road', u'toll']
[u'polic', u'steal', u'boot', u'hear', u'tell']
[u'pont', u'take', u'role']
[u'pont', u'return', u'match', u'break']
[u'power', u'chang', u'allow', u'region', u'focus']
[u'premier', u'lukewarm', u'spend', u'idea']
[u'race', u'hate', u'websit', u'refer', u'polic']
[u'rain', u'help', u'secur', u'sheep', u'season']
[u'ring', u'road', u'work', u'start']
[u'saddam', u'defenc', u'demand', u'sack', u'judg']
[u'safeway', u'fin', u'price', u'fix', u'abus', u'power']
[u'school', u'support', u'staff', u'strike', u'call']
[u'scientist', u'hold', u'grave', u'fear', u'great', u'barrier', u'reef']
[u'search', u'resum', u'miss']
[u'setback', u'hume', u'highway', u'work']
[u'host', u'mundin', u'green', u'clash']
[u'sharapova', u'back', u'hingi', u'crack']
[u'shark', u'sight', u'close', u'stradbrok', u'beach']
[u'shire', u'buy', u'meatwork', u'site']
[u'shop', u'centr', u'plan', u'prompt', u'airport', u'secur']
[u'slovak', u'tenni', u'player', u'beck', u'test', u'posit']
[u'slow', u'steven', u'miss', u'game', u'team']
[u'smith', u'pilot', u'protea', u'victori']
[u'smith', u'prove', u'nuisanc', u'valu']
[u'snow', u'eas', u'headach', u'winter', u'game', u'organis']
[u'snowi', u'river', u'announc', u'surpris', u'govt']
[u'split', u'reform', u'australian', u'tour']
[u'statist', u'reveal', u'higher', u'north', u'coast', u'club']
[u'steven', u'emerg', u'shadow']
[u'stoner', u'critic', u'propos', u'small', u'school', u'closur']
[u'swift', u'player', u'jump', u'tasman']
[u'takeov', u'undervalu', u'wattyl']
[u'tasmania', u'lag', u'state', u'health']
[u'teen', u'driver', u'give', u'jail', u'term', u'girl', u'death']
[u'teen', u'court', u'shoot', u'target', u'aborigin']
[u'temper', u'flare', u'coalit']
[u'thai', u'airway', u'suspend', u'australia', u'phuket', u'flight']
[u'intern', u'communiti', u'want', u'hama', u'chang']
[u'thiev', u'raid', u'transport', u'yard']
[u'thorp', u'fastest', u'qualifi', u'despit', u'sluggish', u'swim']
[u'thorp', u'flat', u'return', u'competit', u'swim']
[u'tiger', u'allow', u'princ', u'scope', u'north']
[u'time', u'run', u'sign', u'nurs', u'work']
[u'trade', u'condit', u'survey', u'say']
[u'transport', u'committe', u'meet', u'wollongong']
[u'transport', u'union', u'seek', u'agreement', u'disput']
[u'truss', u'happi', u'help', u'seek', u'cancer', u'centr', u'fund']
[u'urban', u'resid', u'water', u'report']
[u'soldier', u'guilti', u'assault', u'afghan']
[u'warship', u'dump', u'rubbish', u'say', u'resid']
[u'neglect', u'afghanistan', u'rice']
[u'vail', u'reject', u'challeng', u'sit', u'liber']
[u'plan', u'child', u'strip', u'search', u'power']
[u'victori', u'africa', u'australia']
[u'vline', u'urg', u'speak', u'rail', u'plan']
[u'cabinet', u'welcom', u'minist']
[u'waratah', u'start', u'spot', u'mere', u'formal', u'sailor']
[u'word', u'erupt', u'water', u'suppli', u'plan']
[u'warrior', u'tiger', u'match']
[u'watchdog', u'find', u'iraq', u'piraci', u'spot']
[u'wildcar', u'receiv', u'develop', u'contribut']
[u'woman', u'labour', u'crash', u'hospit']
[u'work', u'continu', u'contain', u'line']
[u'work', u'parti', u'seek', u'better', u'indigen', u'communiti']
[u'youth', u'face', u'court', u'highway', u'attack']
[u'need', u'local', u'infrastructur', u'report', u'say']
[u'airport', u'consult', u'meaningless', u'flight']
[u'alcan', u'fin', u'employe', u'death']
[u'black', u'lauaki', u'admit', u'assault', u'charg']
[u'ambassador', u'act', u'order', u'beazley']
[u'ambassador', u'mission', u'troubl', u'senat']
[u'assault', u'prompt', u'taxi', u'secur', u'upgrad']
[u'australia', u'industri', u'die', u'union', u'warn']
[u'avalanch', u'kill', u'tajikistan']
[u'exec', u'make', u'turn', u'truck', u'payment']
[u'babi', u'strike', u'meningococc']
[u'bank', u'resourc', u'sector', u'boost', u'market', u'high']
[u'bank', u'share', u'despit', u'upbeat', u'profit', u'forecast']
[u'bash', u'stubbl']
[u'beatti', u'announc', u'cabinet', u'reshuffl']
[u'beatti', u'consid', u'differ', u'scale', u'doctor']
[u'berrigan', u'visit', u'spinal', u'surgeon']
[u'better', u'educ', u'need', u'hobbi', u'farmer']
[u'deal', u'iraq', u'contraven', u'sanction', u'inquiri']
[u'blaze', u'claim', u'lithgow', u'servo']
[u'bomb', u'make', u'manual', u'link', u'white', u'supremacist']
[u'botha', u'action', u'scrutini']
[u'brack', u'warn', u'poll', u'complac']
[u'brotherhood', u'accus', u'nation', u'ignor', u'poor']
[u'bull', u'fetch', u'record', u'price']
[u'burn', u'victim', u'sophi', u'start', u'school']
[u'bush', u'tell', u'address', u'addict']
[u'call', u'govt', u'stamp', u'smuggl']
[u'cane', u'toad', u'west']
[u'carpent', u'reshap', u'cabinet']
[u'chevron', u'secur', u'basin', u'explor', u'right']
[u'china', u'bank', u'manag', u'charg', u'scam']
[u'cholesterol', u'drug', u'inhibit', u'cancer', u'cell']
[u'church', u'group', u'beat', u'drop', u'centr']
[u'communiti', u'servic', u'order', u'assault']
[u'corbel', u'push', u'hume', u'prison']
[u'cosmos', u'centr', u'focus', u'addit']
[u'council', u'accus', u'back', u'snowi']
[u'council', u'reveal', u'melbourn', u'transport', u'strategi']
[u'council', u'revers', u'high', u'rise', u'plan', u'approv']
[u'council', u'extend', u'oxley', u'contract']
[u'council', u'waiv', u'rat', u'debt']
[u'council', u'want', u'lake', u'committe', u'reinstat']
[u'countri', u'club', u'chief', u'predict', u'condit', u'support']
[u'court', u'rule', u'catherin', u'hill', u'plan']
[u'cowboy', u'chief', u'want', u'grappl', u'tackl']
[u'croc', u'finish', u'season', u'high']
[u'dallaglio', u'world']
[u'darwin', u'polic', u'help', u'alic', u'murder', u'investig']
[u'democrat', u'foreign', u'donat']
[u'norfolk', u'murder', u'arrest']
[u'downer', u'announc', u'troop', u'afghanistan']
[u'dozen', u'miss', u'indonesian', u'ferri', u'sink']
[u'dragon', u'interview', u'coach']
[u'drink', u'water', u'get', u'safeti', u'clear']
[u'drug', u'suppli', u'earn', u'jail', u'term']
[u'coli', u'scare', u'prompt', u'drink', u'water', u'fear']
[u'elect', u'ahead', u'say', u'nepal', u'king']
[u'english', u'lord', u'give', u'liber', u'parti']
[u'broiler', u'farm', u'stanc']
[u'eurobodalla', u'hold', u'council', u'elect']
[u'mayor', u'help', u'wast', u'dump', u'fight']
[u'extra', u'fund', u'seek', u'tackl', u'cane', u'toad']
[u'famili', u'hamper', u'nation', u'elect', u'chanc']
[u'farmer', u'prompt', u'govt', u'lobbi']
[u'north', u'rememb', u'dead', u'cyclon']
[u'fear', u'kangaroo', u'kill', u'food']
[u'figur', u'highlight', u'licens', u'premis', u'bash']
[u'firefight', u'monitor', u'west', u'blaze']
[u'firefight', u'tackl', u'gorg', u'spot', u'fire']
[u'flood', u'worst', u'year', u'roadhous', u'owner']
[u'food', u'drop', u'plan', u'isol', u'burk', u'shire']
[u'forc', u'face', u'possibl', u'fine', u'play', u'underag']
[u'fulham', u'sink', u'spur', u'gasp', u'goal']
[u'fund', u'boost', u'boy', u'educ']
[u'fund', u'boost', u'seek', u'miner', u'sand', u'project']
[u'fund', u'coolgardi', u'public', u'build', u'revamp']
[u'game', u'baton', u'wend', u'brisban']
[u'georg', u'bush', u'give', u'state', u'union', u'address']
[u'gerard', u'lib', u'biggest', u'donor']
[u'gerran', u'injur', u'race', u'fall']
[u'govt', u'stop', u'crime', u'opposit', u'say']
[u'govt', u'pledg', u'educ', u'plan', u'fund']
[u'govt', u'reject', u'cover', u'claim']
[u'govt', u'work', u'council', u'polic', u'station']
[u'govt', u'urg', u'boost', u'region', u'rent', u'subsidi']
[u'govt', u'urg', u'provid', u'bridg', u'fund', u'patrol']
[u'retir', u'leav', u'medic', u'servic']
[u'green', u'group', u'cast', u'doubt', u'snowi', u'plan']
[u'grower', u'want', u'supermarket', u'regul']
[u'gumatj', u'associ', u'clear', u'wrongdo']
[u'gunn', u'contribut', u'liber']
[u'handcuff', u'spark', u'call', u'chang', u'privaci']
[u'hayden', u'determin', u'recaptur', u'form']
[u'hayden', u'wari', u'south', u'african', u'backlash']
[u'health', u'servic', u'boost', u'specialist', u'number']
[u'henri', u'race', u'second', u'lenton']
[u'hill', u'satisfi', u'sydney', u'warm', u'track']
[u'homicid', u'assault']
[u'hospit', u'cut', u'elect', u'surgeri', u'wait', u'list']
[u'januari', u'northern', u'victoria']
[u'iemma', u'defend', u'cronulla', u'riot', u'comment']
[u'indonesian', u'fishermen', u'court', u'arafura']
[u'form', u'stosur', u'win', u'japan']
[u'inventor', u'claim', u'creation', u'electron', u'shark']
[u'iran', u'anger', u'possibl', u'rebuk']
[u'iranian', u'presid', u'hit', u'bush', u'speech']
[u'iran', u'prepar', u'atom', u'enrich', u'block', u'probe']
[u'iraq', u'request', u'dodgi', u'wheat', u'deal']
[u'israel', u'halt', u'payment', u'palestinian']
[u'japanes', u'premier', u'price', u'free', u'canola']
[u'john', u'doubt', u'final', u'knight', u'trial']
[u'jone', u'break', u'world', u'record']
[u'june', u'target', u'surgeri', u'delay']
[u'karaok', u'curfew', u'impos', u'japanes', u'teen']
[u'kindi', u'begin', u'thousand', u'north', u'coast', u'children']
[u'kookaburra', u'spain']
[u'krill', u'research', u'brand', u'success']
[u'kroger', u'resign', u'liber', u'parti', u'presid']
[u'lawrenc', u'plead', u'merci', u'bali', u'court']
[u'societi', u'want', u'magistr', u'appoint']
[u'lawyer', u'call', u'releas', u'accus', u'bali']
[u'lawyer', u'highlight', u'court', u'backlog']
[u'lyon', u'miss', u'waratah', u'start']
[u'arrest', u'norfolk', u'murder']
[u'detain', u'probe', u'contempt']
[u'get', u'year', u'taxi', u'robberi']
[u'shoot', u'polic', u'link', u'doubl', u'murder']
[u'shoot', u'dead', u'want', u'polic']
[u'shoot', u'dead', u'link', u'doubl', u'murder']
[u'shoot', u'link', u'doubl', u'murder']
[u'manufactur', u'slow', u'start', u'year']
[u'marin', u'protect', u'area', u'creat', u'tourism', u'fear']
[u'martin', u'confid', u'shipment', u'secur']
[u'mayor', u'back', u'clean']
[u'mayor', u'lament', u'hospit', u'resign']
[u'mayor', u'maintain', u'push', u'pipelin', u'time', u'frame']
[u'mayor', u'seek', u'altern', u'dissolv', u'council']
[u'mcgrath', u'prepar', u'stay', u'wicket']
[u'meatwork']
[u'melbourn', u'anim', u'win', u'oscar', u'nomin']
[u'messag', u'board', u'chanc']
[u'mine', u'giant', u'boost', u'product', u'output']
[u'minist', u'accus', u'reneg', u'cross', u'citi', u'tunnel']
[u'moodi', u'confid', u'lanka', u'world']
[u'more', u'shire', u'feel', u'impact', u'land', u'valuat', u'chang']
[u'firefight', u'head', u'grampian']
[u'attack', u'govt', u'marin', u'park', u'buyout']
[u'promis', u'lobbi', u'cancer', u'centr', u'fund']
[u'murphi', u'seal', u'late', u'spur']
[u'weather', u'record']
[u'nigerian', u'scammer', u'fleec', u'investor']
[u'kill', u'baghdad', u'suicid', u'blast']
[u'date', u'termin', u'flight']
[u'norco', u'confid', u'success']
[u'polic', u'rain', u'watch', u'flood', u'alert']
[u'number', u'home', u'loan', u'default', u'increas']
[u'arrest', u'norfolk', u'murder']
[u'price', u'slight', u'fall', u'amid', u'iranian', u'comment']
[u'opposit', u'leader', u'focus', u'illawarra', u'unemploy']
[u'palermo', u'dump', u'milan', u'italian']
[u'penros', u'park', u'close']
[u'plan', u'give', u'student', u'tast', u'life']
[u'plan', u'preserv', u'histor', u'flood', u'mark']
[u'polic', u'happi', u'overal', u'drive', u'blitz']
[u'policeman', u'deni', u'steal']
[u'polic', u'shoot', u'link', u'doubl', u'murder']
[u'polic', u'rspca', u'investig', u'poison']
[u'polic', u'seek', u'attempt', u'abduct']
[u'polic', u'thank', u'communiti', u'help', u'murder', u'probe']
[u'polic', u'identifi', u'sudanes', u'assault', u'victim']
[u'polic', u'beat', u'reduc', u'road', u'death']
[u'polic', u'warn', u'sparkler', u'bomb']
[u'powercor', u'move', u'address', u'phone', u'wait', u'time']
[u'public', u'urg', u'join', u'cycl', u'ride']
[u'qanta', u'plane', u'restrict', u'anger', u'disabl', u'group']
[u'quak', u'rattl', u'indonesia']
[u'rain', u'delay', u'rossi', u'ferrari', u'test']
[u'rain', u'forc', u'dingo', u'indoor']
[u'rain', u'respit', u'loom', u'north']
[u'rate', u'rise', u'greenspan', u'part', u'gift']
[u'razzaq', u'asif', u'pakistan', u'seri']
[u'river', u'search', u'continu']
[u'road', u'open', u'cooktown', u'access']
[u'saddam', u'defenc', u'team', u'boycott', u'trial']
[u'saddam', u'govt', u'net', u'aust', u'wheat', u'shipment']
[u'worker', u'famili', u'leav', u'provis']
[u'score', u'job', u'lose', u'kimber', u'clark', u'close']
[u'score', u'rescu', u'sink', u'indonesian', u'ferri']
[u'scott', u'sidelin', u'surgeri']
[u'seafood', u'test', u'continu', u'gladston']
[u'second', u'power', u'station', u'plan', u'colli']
[u'servic', u'rememb', u'waterfal', u'train', u'tragedi']
[u'share', u'price', u'tumbl', u'googl', u'miss', u'target']
[u'sheep', u'septic', u'shock', u'treatment']
[u'shire', u'develop', u'balanc']
[u'smith', u'show', u'confid', u'botha']
[u'smith', u'urg', u'tough', u'racism']
[u'solar', u'centr', u'close', u'complet']
[u'lankan', u'presid', u'focus', u'peac']
[u'stanhop', u'dismiss', u'keelti', u'terror', u'comment']
[u'strategi', u'impact', u'residenti', u'develop']
[u'strong', u'show', u'cruis', u'ship', u'termin']
[u'submiss', u'flow', u'horsesho', u'plan']
[u'support', u'kalgoorli', u'aborigin', u'outreach', u'church']
[u'beer', u'push', u'price']
[u'thalidomid', u'cancer']
[u'thirsti', u'peopl', u'feel', u'pain']
[u'thorp', u'fifth', u'fastest', u'heat']
[u'thorp', u'laugh', u'talk']
[u'tiger', u'strike', u'earli', u'troubl']
[u'tiger', u'strong', u'breaker']
[u'tiger', u'strong', u'breaker']
[u'tourism', u'group', u'offer', u'cheap', u'fuel', u'offer']
[u'bali', u'bomb', u'suspect', u'admit', u'membership']
[u'battl', u'west', u'bank']
[u'strength', u'cycl', u'team', u'target', u'game', u'medal']
[u'union', u'air', u'technic', u'colleg', u'concern']
[u'union', u'kimber', u'clark', u'discuss', u'cut']
[u'union', u'want', u'better', u'riot', u'train', u'youth']
[u'confirm', u'suprem', u'court', u'judg']
[u'politician', u'angri', u'evid']
[u'troop', u'canadian', u'envoy', u'iraq']
[u'virgin', u'blue', u'order', u'attend', u'talk']
[u'wallabi', u'dinner', u'plat']
[u'polic', u'question', u'lone', u'patrol']
[u'waratah', u'scrap', u'number', u'initi']
[u'warrior', u'tiger']
[u'wheatbelt', u'salin', u'test', u'reveal', u'uranium']
[u'wheat', u'export', u'arrang', u'review']
[u'windsor', u'challeng', u'nation', u'telstra']
[u'winter', u'olymp', u'villag', u'open']
[u'woman', u'charg', u'child', u'neglect']
[u'woman', u'year', u'honour', u'forb', u'woman']
[u'worker', u'shortag', u'hit', u'aquacultur', u'industri']
[u'wright', u'qualifi', u'british', u'open']
[u'australian', u'kill', u'latest', u'egypt', u'crash']
[u'appli', u'mitsubishi', u'redund']
[u'return', u'gold', u'coast']
[u'age', u'care', u'propon', u'get', u'govt', u'fund']
[u'agricultur', u'commod', u'price', u'fall']
[u'donat', u'need', u'pakistan']
[u'group', u'highlight', u'tsunami', u'victim', u'right', u'abus']
[u'choos', u'lawyer', u'contest', u'gallop', u'seat']
[u'ambul', u'servic', u'reject', u'respons', u'time', u'critic']
[u'arcad', u'trader', u'legal', u'action', u'land']
[u'art', u'group', u'get', u'help', u'hand']
[u'asif', u'differ', u'test', u'loss', u'dravid']
[u'drop', u'earli', u'spurt']
[u'australia', u'lobbi', u'delay', u'timor', u'vote', u'report']
[u'australian', u'child', u'charg', u'thailand']
[u'australia', u'winter', u'game', u'athlet', u'arriv', u'turin']
[u'averag', u'season', u'tip', u'barramundi', u'catch']
[u'kickback', u'scandal', u'put', u'govt', u'pressur']
[u'manag', u'admit', u'limit', u'cooper']
[u'bali', u'accus', u'plea', u'judg']
[u'barton', u'tell', u'citi']
[u'beaudesert', u'council', u'search']
[u'belgrad', u'admit', u'armi', u'mladic']
[u'blue', u'redback', u'troubl', u'warrior']
[u'bowler', u'excit']
[u'breakthrough', u'devil', u'diseas', u'research']
[u'brother', u'face', u'drug', u'traffic', u'charg']
[u'build', u'approv', u'continu', u'declin']
[u'bull', u'cruis', u'blue']
[u'bushrang', u'skittl', u'redback']
[u'bypass', u'rout', u'properti', u'disrupt', u'inevit']
[u'cabinet', u'shake', u'spark', u'continu', u'local']
[u'medicar', u'chang', u'boost', u'cervic', u'cancer']
[u'cancer', u'centr', u'urg', u'delay', u'higher', u'cost']
[u'carpent', u'expect', u'swing', u'elect']
[u'carter', u'holt', u'harvey', u'cancel', u'shutdown', u'plan']
[u'cech', u'extend', u'chelsea', u'deal']
[u'chelsea', u'widen', u'rival', u'falter']
[u'china', u'ban', u'memoir', u'geisha']
[u'china', u'citrus', u'trade', u'draw', u'local']
[u'china', u'blast', u'kill']
[u'commonwealth', u'urg', u'help', u'industri']
[u'connolli', u'name', u'wallabi', u'coach']
[u'council', u'award', u'rise']
[u'council', u'clear', u'hospit', u'demolit']
[u'councillor', u'beat', u'approach', u'tackl']
[u'council', u'rethink', u'epsom', u'shop', u'centr', u'plan']
[u'council', u'land']
[u'cowboy', u'talk', u'princ', u'return', u'north']
[u'crematorium', u'challeng', u'legal', u'cost', u'rule']
[u'critic', u'book', u'thai', u'monarch', u'websit', u'ban']
[u'cruis', u'croc', u'close', u'north', u'beach']
[u'custom', u'rescu', u'indonesian', u'fishermen']
[u'deputi', u'mayor', u'reveal', u'main', u'street', u'plan']
[u'destroy', u'heritag', u'build', u'protect', u'alarm']
[u'develop', u'question', u'high', u'rise', u'opposit']
[u'develop', u'exempt', u'communic', u'shock', u'council']
[u'downer', u'tri', u'delay', u'timor', u'independ', u'report']
[u'drug', u'import', u'jail', u'year']
[u'eccleston', u'blast', u'constructor', u'spiral', u'cost']
[u'economist', u'urg', u'govt', u'freez', u'tariff']
[u'exot', u'tropic', u'fruiti', u'industri', u'expans']
[u'fals', u'imprison', u'trial', u'begin']
[u'father', u'blame', u'justic', u'doubl', u'murder']
[u'crack', u'australian', u'base', u'piraci', u'ring']
[u'fire', u'take', u'toll', u'grampian', u'beekeep']
[u'dutch', u'cannabi', u'pharmaci', u'open']
[u'fisher', u'push', u'compo']
[u'fish', u'project', u'lure', u'feder', u'fund']
[u'fluoro', u'fli', u'combat', u'fruit', u'outbreak']
[u'team', u'mate', u'warn', u'tiger', u'bewar', u'cold']
[u'forum', u'set', u'athlet', u'drug']
[u'fuel', u'theft', u'continu', u'bendigo', u'region']
[u'gascoyn', u'project', u'share', u'fund']
[u'leak', u'scare', u'spark', u'council', u'build', u'evacu']
[u'german', u'engin', u'send', u'speed', u'camera']
[u'girl', u'kill', u'dingo', u'cross']
[u'govt', u'take', u'leighton', u'kumagai', u'threat', u'serious']
[u'govt', u'provid', u'internet', u'project', u'fund']
[u'govt', u'seiz', u'green', u'ferri', u'backflip']
[u'govt', u'urg', u'buddhist', u'templ', u'plan']
[u'gregan', u'give', u'thumb', u'connolli', u'appoint']
[u'grower', u'meet', u'mcguigan', u'contract', u'decis']
[u'grower', u'warn', u'send', u'excess', u'grape']
[u'hama', u'remain', u'defiant', u'amid', u'intern', u'pressur']
[u'hiddink', u'unlik', u'coach', u'socceroo', u'world']
[u'inquiri', u'resum', u'waterhous', u'bet']
[u'inquiri', u'tell', u'rail', u'freight', u'link', u'import']
[u'investig', u'begin', u'fatal', u'chopper', u'crash']
[u'iran', u'sanction', u'backfir', u'russia']
[u'john', u'beat', u'revers', u'knight', u'woe']
[u'jone', u'edmiston', u'head', u'head']
[u'jone', u'eye', u'world', u'record']
[u'judg', u'urg', u'reject', u'falconio', u'killer', u'appeal']
[u'katter', u'criticis', u'burketown', u'access', u'woe']
[u'kelli', u'happi', u'tougher', u'young', u'offend']
[u'kimber', u'clark', u'consolid', u'plan', u'provok', u'mix']
[u'labor', u'caucus', u'focus', u'health', u'issu']
[u'labor', u'grill', u'downer', u'timor', u'report']
[u'lampard', u'top', u'england', u'poll']
[u'leisel', u'jone', u'break', u'breast', u'stroke']
[u'local', u'govt', u'push', u'fund', u'boost']
[u'locust', u'expert', u'warn', u'hatch']
[u'longer', u'time', u'sell', u'copper', u'coast', u'properti']
[u'madonna', u'perform', u'gorillaz', u'grammi']
[u'manag', u'blow', u'whistl', u'kickback']
[u'face', u'hear', u'norfolk', u'murder']
[u'jail', u'drag', u'race', u'death']
[u'mayor', u'pool', u'stanc']
[u'mckay', u'luna', u'lead', u'ladi', u'master']
[u'media', u'take', u'gungahlin', u'tour']
[u'mexico', u'sign', u'coal', u'contract']
[u'millionair', u'wife', u'deni', u'murder']
[u'miner', u'hop', u'sourc', u'local', u'worker', u'ellendal']
[u'miner', u'snapper', u'deposit', u'prove', u'better', u'ginkgo']
[u'govt', u'cooper', u'urg', u'region', u'mental']
[u'talk', u'gunditjmara', u'nativ', u'titl', u'fight']
[u'reject', u'hervey', u'emerg', u'dept']
[u'beat', u'approach', u'tackl', u'crime']
[u'murder', u'accus', u'deni', u'bail']
[u'navi', u'cite', u'benefit', u'aust', u'exercis']
[u'tribun', u'find', u'dann', u'guilti']
[u'arrest', u'drink', u'truck', u'highjack']
[u'bird', u'vaccin', u'give', u'hope', u'amid', u'pandem', u'fear']
[u'agreement', u'sewerag']
[u'norfolk', u'murder', u'suspect', u'remand', u'custodi']
[u'west', u'record', u'temperatur']
[u'propos', u'health', u'packag']
[u'court', u'hear', u'extradit', u'plea', u'norfolk']
[u'telecom', u'profit', u'slump', u'blame', u'aussi', u'oper']
[u'friend', u'bankcard', u'phase']
[u'opposit', u'build', u'prison', u'announc']
[u'pacif', u'cyclon', u'risk', u'world', u'bank']
[u'pair', u'seek', u'liber', u'preselect', u'bendigo', u'west']
[u'pakistan', u'call', u'probe', u'chappel', u'shoaib']
[u'palmer', u'top', u'squash', u'world', u'rank']
[u'paramount', u'dreamwork', u'deal', u'finalis']
[u'pharmaci', u'guild', u'director', u'resign']
[u'pigeon', u'hole', u'resid', u'plan', u'return']
[u'plan', u'clip', u'wing', u'melbourn', u'airport']
[u'polic', u'ask', u'probe', u'log', u'protest', u'assault']
[u'polic', u'defend', u'action', u'doubl', u'murder', u'case']
[u'polic', u'defend', u'doubl', u'murder', u'handl']
[u'polic', u'defend', u'name', u'doubl', u'murder', u'suspect']
[u'polic', u'dismiss', u'blackmail', u'complaint']
[u'polic', u'highlight', u'liquor', u'breach']
[u'polic', u'crash', u'victim']
[u'polic', u'dead', u'hous']
[u'polic', u'offic', u'keen', u'releas', u'pursuit', u'death']
[u'polic', u'push', u'stronger', u'bathurst', u'presenc']
[u'polic', u'squad', u'probe', u'unsolv', u'death']
[u'polic', u'talk', u'driver', u'reviv', u'scheme']
[u'polic', u'boost', u'miss', u'woman', u'search', u'effort']
[u'polic', u'maintain', u'campaign', u'antisoci']
[u'polic', u'warn', u'driver', u'grampian', u'bushfir', u'danger']
[u'pont', u'defend', u'rest', u'polici']
[u'pork', u'produc', u'dark', u'identif', u'scheme']
[u'port', u'chief', u'talk', u'growth', u'potenti']
[u'posit', u'boe', u'profit', u'price', u'strong']
[u'postman', u'alter', u'chequ', u'court', u'hear']
[u'potato', u'chip', u'processor', u'resum', u'work']
[u'princ', u'harri', u'serv', u'iraq']
[u'prison', u'help', u'bushfir', u'ravag', u'area']
[u'prison', u'guard', u'guilti', u'inmat', u'assault']
[u'prosecutor', u'seek', u'life', u'sentenc', u'crown', u'wit']
[u'public', u'urg', u'combat', u'home', u'break']
[u'public', u'urg', u'follow', u'water', u'restrict']
[u'public', u'warn', u'blue', u'green', u'alga', u'outbreak']
[u'public', u'warn', u'phone', u'scam']
[u'qanta', u'wheelchair', u'prompt', u'discrimin']
[u'rail', u'freight', u'deal', u'close']
[u'rain', u'continu', u'western', u'border', u'region']
[u'record', u'high', u'continu', u'market']
[u'red', u'fall', u'highland', u'final', u'trial']
[u'reef', u'price', u'summer']
[u'retrial', u'order', u'asbesto', u'worker']
[u'chief', u'reject', u'volunt', u'firefight', u'number']
[u'ribbon', u'wrap', u'rock', u'lobster', u'offer']
[u'tinto', u'profit', u'leap']
[u'river', u'search', u'find', u'miss', u'boy', u'bodi']
[u'road', u'crash', u'site', u'warn', u'sign']
[u'road', u'death', u'spark', u'call', u'bail', u'law', u'review']
[u'road', u'seal', u'continu', u'long', u'run', u'project']
[u'robert', u'chairman', u'clear', u'ruralco', u'takeov']
[u'rossi', u'shin', u'test', u'ferrari']
[u'deepen', u'scandal']
[u'saddam', u'trial', u'adjourn', u'fresh', u'boycott']
[u'sand', u'project', u'builder', u'chase', u'cost', u'blow', u'compo']
[u'seal', u'number', u'grow', u'port', u'lincoln']
[u'secur', u'boost', u'plan', u'griffith', u'airport']
[u'senat', u'inquiri', u'urg', u'expand', u'friendship', u'program']
[u'warn', u'phone', u'scam']
[u'shell', u'report', u'record', u'profit']
[u'suspect', u'murder', u'case']
[u'speed', u'contribut', u'fatal', u'accid', u'polic']
[u'spill', u'spark', u'winegrap', u'transport', u'care']
[u'stosur', u'upset', u'hantuchova', u'tokyo']
[u'studi', u'play', u'wall', u'rais', u'impact']
[u'studi', u'help', u'art', u'festiv', u'plan']
[u'support', u'foreign', u'train', u'doctor', u'move']
[u'sydney', u'harbour', u'fish', u'year', u'late']
[u'tafe', u'enrol', u'rise']
[u'teen', u'charg', u'stab', u'murder']
[u'teen', u'face', u'court', u'taxi', u'driver', u'kill']
[u'bodi', u'chopper', u'wreckag']
[u'thorp', u'schipper', u'final', u'favourit']
[u'thorp', u'win', u'final']
[u'kill', u'suicid', u'blast']
[u'tiger', u'lead', u'warrior', u'stump']
[u'sale', u'govt', u'agenda']
[u'toddler', u'kill', u'attack']
[u'tourist', u'train', u'work', u'steam', u'ahead']
[u'traffic', u'light', u'tweak', u'boost', u'tunnel']
[u'australian', u'kill', u'egypt', u'crash']
[u'dead', u'chopper', u'crash']
[u'unhappi', u'campbel', u'leav', u'highburi', u'half', u'time']
[u'admin']
[u'union', u'back', u'power', u'station', u'approv']
[u'angri', u'wheat', u'scandal']
[u'britain', u'troop', u'darfur']
[u'call', u'israel', u'unblock', u'palestinian', u'fund']
[u'vail', u'assur', u'inquri']
[u'vail', u'tour', u'possibl', u'pipelin', u'sit']
[u'govt', u'urg', u'demand', u'return', u'snowi', u'flow']
[u'polic', u'suspect', u'alert']
[u'waratah', u'initi', u'idea', u'ditch']
[u'water', u'plant', u'extend', u'ranger', u'mine', u'life']
[u'wheelchair', u'woman', u'river']
[u'whistleblow', u'open', u'inquiri']
[u'wife', u'custodi', u'husband', u'murder']
[u'woman', u'remand', u'custodi', u'husband', u'murder']
[u'world', u'pledg', u'afghanistan']
[u'robber', u'fall', u'metr', u'balconi']
[u'youni', u'play', u'pakistan']
[u'cannabi', u'plant', u'seiz', u'near', u'byron']
[u'grahamstown', u'revamp', u'complet']
[u'seek', u'extra', u'fund']
[u'accus', u'drug', u'smuggler', u'court']
[u'campaign', u'promot', u'health', u'profess']
[u'anderson', u'vie', u'game', u'spot', u'tasman', u'jump']
[u'anger', u'mohammad', u'imag', u'spread', u'asia']
[u'apologet', u'drink', u'drive', u'policeman', u'fin']
[u'aussi', u'humbl', u'protea', u'melbourn']
[u'aust', u'polic', u'join', u'thai', u'paedophil', u'investig']
[u'australia', u'announc', u'tenni', u'program', u'head']
[u'exec', u'threaten', u'tell', u'rort']
[u'weather', u'delay', u'return', u'custom', u'boat']
[u'bali', u'accus', u'lie', u'say', u'chan']
[u'organis', u'prais', u'crowd', u'behaviour']
[u'pandem', u'cost', u'million']
[u'bodi', u'barrel', u'victim', u'identifi']
[u'bridesmaid', u'mill', u'want', u'gold']
[u'british', u'iraq', u'troop', u'casualti', u'onlin']
[u'build', u'activ', u'forecast', u'increas']
[u'bull', u'love', u'centuri']
[u'crash', u'survivor', u'return']
[u'bushfir', u'caus', u'estim', u'damag']
[u'bushrang', u'build', u'impos', u'lead']
[u'calm', u'free', u'lane', u'pool', u'reserv', u'access']
[u'campbel', u'psychodrama', u'compound', u'gunner', u'crisi']
[u'campbel', u'miss', u'birmingham', u'match', u'walkout']
[u'ceccoli', u'wonder', u'strike', u'secur', u'sydney', u'second']
[u'chavez', u'expel', u'offici', u'spi']
[u'chief', u'minist', u'question', u'bail', u'claim']
[u'child', u'health', u'govt', u'agenda']
[u'china', u'link', u'threaten', u'allianc', u'diplomat']
[u'coast', u'share', u'mental', u'health', u'woe']
[u'cole', u'seek', u'expans', u'food', u'inquiri']
[u'compani', u'stand', u'snowi', u'flow', u'decis']
[u'concern', u'rais', u'hospit', u'hear', u'servic']
[u'concert', u'rais', u'fund', u'crash', u'victim']
[u'coron', u'seek', u'suppress', u'polic', u'accid', u'report']
[u'council', u'consid', u'extend', u'northern', u'distributor']
[u'councillor', u'oblig', u'attend', u'meet']
[u'councillor', u'urg', u'pool', u'break', u'hill']
[u'council', u'move', u'currumbin', u'hill', u'drain']
[u'council', u'put', u'grey', u'water', u'power', u'hold']
[u'council', u'warn', u'govern', u'bush', u'health', u'woe']
[u'council', u'welcom', u'water', u'scheme', u'approv']
[u'council', u'threaten', u'legal', u'action', u'septic', u'woe']
[u'council', u'ask', u'continu', u'penros', u'park']
[u'council', u'request', u'langtre', u'mall', u'revamp']
[u'court', u'speed', u'solicitor', u'case', u'hear']
[u'danish', u'deepli', u'distress', u'cartoon']
[u'dept', u'investig', u'maul', u'toddler', u'famili']
[u'despotovski', u'sign', u'glori']
[u'diplomat', u'condit', u'attack']
[u'doubt', u'cast', u'swamp', u'restor']
[u'draper', u'support', u'industri', u'restructur', u'packag']
[u'earthquak', u'shake', u'build', u'tokyo']
[u'east', u'pilbara', u'gear', u'game', u'baton', u'relay']
[u'electrocut', u'victim', u'name']
[u'emerg', u'murder', u'sister', u'home']
[u'everton', u'ferguson', u'charg', u'violent', u'conduct']
[u'corrupt', u'commission', u'plead', u'guilti']
[u'lectur', u'charg', u'lie', u'corrupt']
[u'fatal', u'chopper', u'crash', u'forc', u'aerial', u'weed', u'survey']
[u'father', u'help', u'deliv', u'impati', u'babi']
[u'feder', u'fund', u'chang', u'worri']
[u'feder', u'tension', u'expect', u'affect', u'state']
[u'ferri', u'carri', u'sink']
[u'fight', u'continu', u'save', u'yacht', u'club']
[u'trail', u'fund', u'announc']
[u'fish', u'parti', u'address', u'small', u'debt']
[u'fletcher', u'jone', u'worker', u'plan', u'reunion']
[u'insur', u'execut', u'charg', u'fraud']
[u'geelong', u'stick', u'king']
[u'geelong', u'stick', u'king']
[u'govt', u'ask', u'wetland', u'regist']
[u'govt', u'criticis', u'slide', u'contribut']
[u'govt', u'knowledg', u'kickback', u'say']
[u'govt', u'highlight', u'potenti']
[u'govt', u'opposit', u'target', u'child', u'health']
[u'govt', u'urg', u'bypass', u'pledg']
[u'gower', u'look', u'exit', u'panther']
[u'grape', u'price', u'near', u'halv']
[u'greek', u'govern', u'phone', u'tap']
[u'heat', u'caus', u'colour', u'woe', u'grape', u'grower']
[u'helidon', u'biosecur', u'inspector', u'move']
[u'henjak', u'seek', u'impress', u'wallabi', u'coach']
[u'high', u'court', u'deni', u'appeal', u'gang', u'rapist', u'case']
[u'hingi', u'sharapova', u'tokyo', u'showdown']
[u'infect', u'zimbabw', u'fall']
[u'holm', u'court', u'rabbitoh']
[u'hous', u'industri', u'confid', u'say']
[u'quit', u'ganguli']
[u'detect', u'comet', u'surfac']
[u'iemma', u'apologis', u'heart', u'attack', u'victim', u'famili']
[u'hero', u'say', u'pilbara', u'shoot', u'offic']
[u'independ', u'panel', u'consid', u'huge', u'wind', u'farm', u'plan']
[u'india', u'launch', u'anti', u'poverti', u'campaign']
[u'indonesia', u'urg', u'cooper', u'papuan', u'asylum']
[u'inzamam', u'skip', u'match', u'preserv', u'fit']
[u'ipod', u'user', u'sue', u'hear', u'damag']
[u'joint', u'leader', u'ladi', u'master']
[u'jone', u'shatter', u'world', u'record']
[u'june', u'fire', u'month']
[u'juri', u'mate', u'case', u'visit', u'paruna']
[u'kiwi', u'mateship', u'hold', u'world', u'club', u'challeng']
[u'kookaburra', u'draw', u'spain']
[u'laverton', u'work', u'emerg', u'plan']
[u'lifelif', u'lose', u'counsellor', u'fund', u'cut']
[u'local', u'firm', u'build', u'polic', u'station']
[u'love', u'help', u'bull', u'build', u'lead']
[u'get', u'year', u'stab', u'wife', u'death']
[u'get', u'year', u'murder', u'suicid', u'wife']
[u'get', u'month', u'child', u'porn', u'possess']
[u'get', u'detent', u'child', u'porn', u'possess']
[u'unit', u'boss', u'fallout', u'foot', u'soldier']
[u'mayor', u'offend', u'transport', u'committe', u'highway']
[u'mayor', u'beat', u'vail', u'pipelin', u'understand']
[u'mcgauran', u'accept', u'liber', u'parti']
[u'mcgrath', u'late', u'withdraw', u'leav', u'bare', u'attack']
[u'mcgrath', u'wife', u'suffer', u'recurr', u'cancer']
[u'meat', u'processor', u'import', u'worker']
[u'meet', u'highlight', u'pollut', u'concern']
[u'meet', u'address', u'stadium', u'financi', u'woe']
[u'minist', u'confid', u'hospit', u'action', u'girl']
[u'minist', u'push', u'need', u'indigen', u'ranger']
[u'say', u'educ', u'fund', u'doesnt', u'comput']
[u'fund', u'announc', u'combat', u'infect']
[u'attack', u'develop', u'exempt', u'decis']
[u'urg', u'action', u'address', u'mental', u'health', u'crisi']
[u'murali', u'reprimand', u'reaction', u'crowd', u'taunt']
[u'murder', u'wont', u'chang', u'govt', u'offend', u'monitor']
[u'murray', u'valley', u'citrus', u'board', u'explor', u'market']
[u'muslim', u'world', u'angri', u'cartoon', u'depict']
[u'myrtleford', u'firefight', u'head', u'bushfir']
[u'natasha', u'ryan', u'boyfriend', u'stand', u'trial']
[u'beat', u'pirat', u'sponsorship']
[u'netherland', u'send', u'troop', u'afghanistan']
[u'polic', u'chief', u'start', u'work', u'karratha']
[u'minist', u'swear']
[u'jailhous', u'rock', u'elvi', u'song', u'stab']
[u'noordin', u'form', u'group', u'bali', u'bomb']
[u'northern', u'tableland', u'drought']
[u'crack', u'hard', u'cannabi', u'user']
[u'crush', u'women', u'open']
[u'toughen', u'cannabi', u'law']
[u'nurs', u'union', u'regular', u'health', u'brief']
[u'filmmak', u'unlaw', u'loiter', u'drag']
[u'olid', u'food', u'inquiri', u'widen']
[u'oliv', u'compani', u'increas', u'product']
[u'opposit', u'queri', u'carpent', u'portfolio', u'facad']
[u'opposit', u'rais', u'doubt', u'fast', u'train', u'plan']
[u'perth', u'order', u'face', u'court', u'piraci']
[u'phoenix', u'shooter', u'game', u'content']
[u'pittman', u'doubl', u'gold', u'game', u'tatter']
[u'encourag', u'liber', u'ahead', u'elect']
[u'reject', u'accus', u'govt', u'know', u'kickback']
[u'say', u'photo', u'unhelp']
[u'say', u'govt', u'mislead', u'kickback']
[u'urg', u'bolster', u'shoalhaven', u'mental', u'health']
[u'polic', u'brief', u'recommend', u'patel', u'charg', u'patient', u'group']
[u'policeman', u'receiv', u'suspend', u'jail', u'sentenc']
[u'polic', u'forc', u'music', u'festiv']
[u'polic', u'tap', u'cronulla', u'aftermath', u'miss', u'debnam']
[u'pregnanc', u'defenc', u'year', u'old', u'drug', u'appeal']
[u'public', u'urg', u'ralli', u'river', u'plan']
[u'wheat', u'inquiri', u'spotlight', u'say', u'labor']
[u'nation', u'delay', u'senat', u'select']
[u'train', u'worker']
[u'rain', u'help', u'boost', u'local', u'dam']
[u'red', u'readi', u'competit', u'latham']
[u'report', u'call', u'longer', u'region', u'airstrip']
[u'rhode', u'bounc', u'game', u'team']
[u'richardson', u'plead', u'bicker', u'stop']
[u'richardson', u'plea', u'bicker', u'stop']
[u'rock', u'paint', u'book', u'caus', u'kimberley', u'controversi']
[u'rumsfeld', u'acknowledg', u'domest', u'spi', u'program']
[u'ryan', u'seek', u'urgent', u'drought', u'sunraysia']
[u'senior', u'doctor', u'rise']
[u'servic', u'sector', u'start', u'year', u'high', u'note']
[u'predat', u'jail', u'relationship']
[u'share', u'market', u'sink', u'amid', u'worri']
[u'shorten', u'stand', u'select']
[u'smoke', u'preval', u'caus', u'cancer', u'death']
[u'steel', u'suppli', u'woe', u'affect', u'rodeo', u'locat']
[u'steven', u'skip', u'heat']
[u'student', u'halfway', u'leader', u'ladi', u'master']
[u'sugar', u'price', u'reach', u'year', u'high']
[u'surpris', u'surg', u'month', u'trade', u'perform']
[u'swimmer', u'warn', u'algal', u'bloom']
[u'symond', u'hussey', u'push', u'australia', u'formid', u'total']
[u'tait', u'defiant', u'bushrang', u'domin']
[u'taliban', u'launch', u'attack', u'afghan', u'south']
[u'tasmanian', u'weight', u'lifter', u'ban', u'competit']
[u'teen', u'plead', u'guilti', u'servic', u'station', u'murder']
[u'telstra', u'defend', u'murder', u'sister', u'inact']
[u'thiev', u'like', u'target', u'older', u'car']
[u'panel', u'england', u'boss']
[u'tiger', u'want', u'lion']
[u'tiger', u'battl', u'warrior', u'target']
[u'tiger', u'readi', u'challeng']
[u'train', u'boost', u'indigen', u'local', u'govt']
[u'train', u'strike', u'affect', u'coal', u'deliveri']
[u'tugun', u'site', u'recommend', u'desalin', u'plant']
[u'campaign', u'pay']
[u'custodi', u'firearm', u'incid']
[u'nomin', u'hill', u'senat', u'vacanc']
[u'bono', u'urg', u'bush', u'boost', u'world']
[u'right', u'leader', u'clear', u'race', u'hate', u'charg']
[u'union', u'want', u'tougher', u'sentenc', u'polic', u'assault']
[u'uranium', u'water', u'caus', u'communiti', u'harm']
[u'contractor', u'plead', u'guilti', u'iraq', u'bribe']
[u'doubt', u'cole', u'offens', u'say']
[u'expect', u'major', u'player', u'north', u'asia']
[u'victorian', u'middl', u'order', u'collaps']
[u'wan', u'math', u'scienc', u'global', u'trend']
[u'warrior', u'beat', u'tiger', u'outright']
[u'warrior', u'victori', u'tiger']
[u'water', u'expect', u'rise', u'restrict', u'eas']
[u'wind', u'central', u'west', u'bushfir']
[u'wineri', u'find', u'plan', u'burn', u'off', u'hard', u'swallow']
[u'woman', u'court', u'drink', u'spike', u'drug', u'import']
[u'work', u'group', u'consid', u'region', u'licens']
[u'work', u'start', u'polic', u'station', u'cell']
[u'youth', u'crime', u'prevent', u'scheme', u'share', u'fund']
[u'zimbabw', u'cricket', u'crisi', u'deepen']
[u'fear', u'drown', u'ferri', u'sink']
[u'rescu', u'ferri', u'sink']
[u'dead', u'stamped', u'philippin', u'game']
[u'abetz', u'push', u'tougher', u'illeg', u'fish', u'deterr']
[u'induct', u'life', u'member']
[u'anim', u'right', u'group', u'condemn', u'school', u'rodeo', u'train']
[u'chief', u'pledg', u'season']
[u'aust', u'music', u'bureau', u'target', u'market']
[u'drug', u'seizur', u'concern', u'polic']
[u'halt', u'mine', u'oper', u'death']
[u'name', u'accid', u'victim']
[u'birney', u'announc', u'shadow', u'cabinet', u'line']
[u'british', u'watchdog', u'clear', u'macquari']
[u'bulgaria', u'report', u'bird', u'case']
[u'bullet', u'cream', u'sixer', u'final', u'shape']
[u'bushrang', u'claim', u'victori', u'redback']
[u'call', u'calm', u'anti', u'cartoon', u'protest', u'mount']
[u'cancer', u'drug', u'help', u'treat', u'crohn', u'diseas']
[u'custodi', u'chang', u'protect', u'children', u'ruddock', u'say']
[u'custodi', u'chang', u'children', u'risk', u'say']
[u'death', u'toll', u'rise', u'stadium', u'stamped']
[u'debnam', u'call', u'polic', u'resourc']
[u'debnam', u'seek', u'polic', u'radio', u'record', u'probe']
[u'doctor', u'rat', u'caus', u'tension', u'cabooltur']
[u'downer', u'reject', u'preposter', u'claim']
[u'driver', u'fin', u'fatal', u'gillett', u'crash']
[u'driver', u'fin', u'fatal', u'gillett', u'crash']
[u'egypt', u'ferri', u'survivor', u'tell']
[u'father', u'rescu', u'boat', u'overturn']
[u'feder', u'confirm', u'davi', u'withdraw']
[u'govt', u'criticis', u'pulp', u'fund']
[u'damag', u'melbourn', u'recept', u'centr']
[u'strike', u'breaker']
[u'focus', u'kenyan', u'corrupt', u'scandal']
[u'galvez', u'schipper', u'butterfli', u'battl']
[u'germani', u'make', u'appeal', u'iraqi', u'kidnapp']
[u'golden', u'circl', u'babi', u'food', u'recal']
[u'goldfield', u'miner', u'die', u'explos']
[u'govt', u'consid', u'inquiri', u'juvenil', u'detent', u'rate']
[u'green', u'stay', u'touch', u'dubai']
[u'health', u'spark', u'poll']
[u'hingi', u'shock', u'sharapova', u'tokyo', u'semi']
[u'hop', u'fade', u'egyptian', u'ferri', u'sink']
[u'hop', u'fade', u'miss', u'egyptian', u'ferri', u'passeng']
[u'hop', u'high', u'home', u'sale']
[u'hundr', u'farewel', u'murder', u'sister']
[u'hundr', u'miss', u'ferri', u'sink']
[u'iaea', u'report', u'iran', u'secur', u'council']
[u'iceman', u'give', u'cold', u'shoulder']
[u'impress', u'bull', u'crush', u'blue']
[u'independ', u'meet', u'share', u'idea']
[u'isra', u'plan', u'bomb', u'southern', u'lebanon']
[u'jackson', u'unstopp', u'cap', u'elimin', u'boomer']
[u'jone', u'lenton', u'head', u'swim', u'team']
[u'jone', u'enjoy', u'meet', u'life']
[u'langer', u'think', u'warrior', u'final']
[u'liber', u'parti', u'welcom', u'julian', u'mcgauran']
[u'licens', u'commiss', u'reject', u'bathurst', u'club']
[u'charg', u'threat']
[u'manila', u'stadium', u'stamped', u'leav', u'dead']
[u'mcgrath', u'keen', u'play', u'gilli']
[u'mcgrath', u'famili', u'come', u'pont']
[u'kill', u'stamped', u'manilla', u'stadium']
[u'murali', u'threaten', u'boycott', u'australia']
[u'music', u'mimer', u'urg', u'speak']
[u'muslim', u'leader', u'warn', u'cartoon']
[u'nasa', u'inspector', u'general', u'probe', u'safeti', u'issu']
[u'zealand', u'newspap', u'reprint', u'cartoon', u'mohammad']
[u'excus', u'beat', u'tiger', u'sheen']
[u'nois', u'concern', u'sydney', u'airport', u'shop', u'centr']
[u'pressur', u'illeg', u'land', u'clear']
[u'nuclear', u'watchdog', u'delay', u'iran', u'decis']
[u'tanker', u'refloat', u'alaska']
[u'owen', u'aim', u'april', u'comeback']
[u'say', u'school', u'drop', u'rate', u'concern']
[u'piper', u'pick', u'commonwealth', u'record']
[u'polic', u'weigh', u'charg', u'cane', u'toad', u'hunt', u'mishap']
[u'ranger', u'grand', u'final']
[u'rate', u'fear', u'push', u'stock']
[u'rescu', u'indonesian', u'fisherman', u'rout', u'darwin']
[u'scotland', u'charg', u'caus', u'injuri']
[u'shearer', u'rule', u'newcastl', u'boss']
[u'shorten', u'call', u'labor', u'candid', u'revamp']
[u'stab', u'wild', u'brawl', u'bondi']
[u'stab', u'bondi', u'brawl']
[u'smoker', u'fail', u'come', u'parti']
[u'socceroo', u'thwait', u'complain', u'romanian', u'hell']
[u'space', u'radio', u'go']
[u'spacesuit', u'newest', u'radio', u'station']
[u'steffenson', u'secur', u'australian', u'titl']
[u'taipan', u'ensur', u'fifth', u'croc', u'worst', u'season']
[u'tax', u'blame', u'retail', u'drop']
[u'teen', u'shoot', u'cane', u'toad', u'hunt', u'mishap']
[u'roar', u'hold', u'marin']
[u'thai', u'polic', u'brace', u'mass', u'ralli']
[u'thorn', u'join', u'warn', u'hampshir']
[u'thousand', u'protest', u'thai', u'quit']
[u'tiger', u'lose', u'world', u'club', u'challeng']
[u'train', u'strike', u'strain', u'brisban', u'servic']
[u'arrest', u'bondi', u'brawl']
[u'expel', u'venezuelan', u'diplomat']
[u'see', u'china', u'biggest', u'militari', u'threat']
[u'liber', u'welcom', u'mcgauran']
[u'victori', u'domin', u'scoresheet']
[u'town', u'farewel', u'murder', u'sister']
[u'waratah', u'crusad', u'brink']
[u'websit', u'launch', u'help', u'potenti', u'independ']
[u'white', u'hous', u'aid', u'trial', u'poll']
[u'yang', u'maintain', u'lead', u'ladi', u'master']
[u'fear', u'dead', u'egypt', u'ferri', u'disast']
[u'survivor', u'egypt', u'ferri', u'tragedi', u'land', u'saudi']
[u'abba', u'meet', u'hama', u'govern']
[u'anger', u'conintu', u'cartoon', u'imag', u'prophet']
[u'angri', u'protest', u'attack', u'danish', u'norwegian', u'embassi']
[u'attack', u'victim', u'felt', u'sorri']
[u'aussi', u'step', u'final', u'charg']
[u'australia', u'pile']
[u'author', u'confid', u'fuel', u'leak', u'wont', u'reach', u'wetland']
[u'author', u'hope', u'river', u'clear', u'rock']
[u'baghdati', u'receiv', u'hero', u'welcom', u'cyprus', u'return']
[u'beatti', u'pledg', u'rais', u'nurs', u'rat']
[u'beatti', u'stake', u'health', u'improv']
[u'blue', u'green', u'alga', u'threaten', u'close', u'lake', u'access']
[u'bodi', u'boot']
[u'breaker', u'hold', u'titl']
[u'build', u'slowdown', u'rental', u'market']
[u'burk', u'high', u'success', u'premier']
[u'burmes', u'govt', u'move', u'oper', u'capit']
[u'crash', u'brokeback', u'screenwrit', u'award']
[u'danish', u'consul', u'torch', u'lebanon']
[u'dementieva', u'end', u'hingi', u'tilt', u'tokyo']
[u'disappoint', u'steven']
[u'england', u'send', u'warn', u'rival', u'north', u'south']
[u'evacue', u'return', u'pigeon', u'hole']
[u'famili', u'seek', u'relief', u'famili']
[u'famili', u'group', u'back', u'govt', u'plan', u'chang', u'custodi', u'law']
[u'fielden', u'hold', u'princ']
[u'fieri', u'parti', u'trick', u'land', u'hospit']
[u'damag', u'indian', u'restaur']
[u'flood', u'deck', u'sink', u'egyptian', u'ferri', u'report']
[u'bird', u'case', u'confirm', u'indonesia']
[u'glori', u'sign', u'jet']
[u'govt', u'admit', u'fail', u'meet', u'child', u'care', u'demand']
[u'govt', u'talk', u'retail', u'sale', u'figur']
[u'grandpa', u'munster', u'lewi', u'die']
[u'green', u'remain', u'dubai', u'hunt']
[u'green', u'question', u'integr', u'admiss']
[u'henri', u'hit', u'shearer', u'set', u'newcastl', u'record']
[u'hope', u'spill', u'minim', u'impact', u'wildlif']
[u'hundr', u'tribut', u'coretta', u'scott', u'king']
[u'husband', u'charg', u'attempt', u'murder']
[u'illeg', u'fishermen', u'catch', u'coast']
[u'indonesia', u'pressur', u'australia', u'papuan', u'asylum']
[u'inzi', u'return', u'see', u'pakistan', u'strength']
[u'iran', u'presid', u'order', u'econom', u'repris']
[u'iran', u'world', u'sponsor', u'terror', u'rumsfeld']
[u'israel', u'predict', u'defiant', u'iran', u'heavi', u'price']
[u'israel', u'releas', u'payment', u'palestinian']
[u'hard', u'track']
[u'japan', u'north', u'korea', u'resum', u'bilater', u'talk']
[u'japan', u'pull', u'iraq', u'month', u'report']
[u'johnson', u'win', u'sydney']
[u'kookaburra', u'suffer', u'loss', u'spain']
[u'labor', u'seek', u'suicid', u'bomber', u'fund', u'assur']
[u'liber', u'dismiss', u'beatti', u'health', u'pledg']
[u'rat', u'land', u'releas', u'underpin', u'build', u'boom']
[u'mancini', u'help', u'roma', u'club', u'record']
[u'deni', u'bail', u'bondi', u'brawl', u'charg']
[u'die', u'sydney', u'wharf', u'fall']
[u'face', u'court', u'jail', u'break']
[u'face', u'court', u'bondi', u'brawl']
[u'master', u'sanction', u'european', u'tour']
[u'match', u'highlight', u'australia', u'south', u'africa']
[u'mcgrath', u'skip', u'south', u'africa', u'clash']
[u'mcgrath', u'miss', u'triangular', u'seri', u'final']
[u'miner', u'drop', u'interest', u'interst', u'project']
[u'newcastl', u'boss', u'cast', u'abroad', u'manag', u'hunt']
[u'plan', u'parent', u'respons', u'contract']
[u'demand', u'govt', u'tougher', u'illeg', u'fish']
[u'opposit', u'slam', u'marlborough', u'prais', u'burk']
[u'pakistani', u'student', u'drown']
[u'name', u'sham', u'restaur', u'warn']
[u'polic', u'captur', u'jail', u'escape', u'month']
[u'polic', u'mull', u'upgrad', u'charg', u'die']
[u'polic', u'prais', u'theft', u'crackdown']
[u'polic', u'probe', u'shoot', u'melbourn']
[u'govt', u'lobbi', u'howard', u'doctor', u'shortag']
[u'recherch', u'group', u'eye', u'land', u'acquisit']
[u'roller', u'chick', u'battl', u'derbi', u'reviv']
[u'rspca', u'outrag', u'cane', u'toad', u'shoot']
[u'plan', u'adelaid', u'secur', u'camera', u'upgrad']
[u'second', u'thai', u'minist', u'quit', u'heat', u'grow']
[u'secur', u'measur', u'step', u'game']
[u'sniffer', u'dog', u'school', u'kick', u'polit', u'stink']
[u'snow', u'cold', u'kill', u'afghanistan']
[u'syria', u'condemn', u'embassi', u'attack']
[u'electr', u'revamp']
[u'teenag', u'yang', u'triumph', u'ladi', u'master']
[u'teenag', u'yang', u'triumph', u'ladi', u'master']
[u'teen', u'charg', u'multipl', u'burglari']
[u'telstra', u'reconnect', u'western', u'eyr', u'peninsula']
[u'termin', u'complaint', u'prompt', u'meet', u'region']
[u'thorp', u'ask', u'swim', u'comm', u'game']
[u'thousand', u'tribut', u'coretta', u'scott', u'king']
[u'dead', u'isra', u'strike', u'gaza']
[u'tini', u'hotel', u'open', u'remot', u'romanian', u'mountain']
[u'tougher', u'cannabi', u'penalti', u'unwarr']
[u'arrest', u'see', u'train']
[u'charg', u'ecstasi', u'haul']
[u'take', u'hospit', u'attack']
[u'feminist', u'pioneer', u'betti', u'friedan', u'die']
[u'villa', u'wonder', u'strike', u'take', u'limelight', u'goal']
[u'weight', u'lift', u'bodi', u'question', u'sever', u'dope']
[u'weightlift', u'bodi', u'question', u'sever', u'dope']
[u'wildcat', u'thump', u'pirat', u'final', u'warm']
[u'world', u'fastest', u'microscop', u'help', u'solv', u'murder']
[u'world', u'wont', u'permit', u'iran', u'nuke', u'bush']
[u'abetz', u'urg', u'approach', u'state', u'illeg']
[u'abort', u'pill', u'like', u'ministeri']
[u'tinker', u'tribun']
[u'agricultur', u'product', u'slump']
[u'airport', u'park', u'expans']
[u'alia', u'didnt', u'transport', u'australian', u'wheat', u'inquiri', u'tell']
[u'alic', u'spring', u'welcom', u'queen', u'baton']
[u'alpin', u'council', u'worker', u'help', u'grampian']
[u'ambul', u'union', u'reject', u'human', u'error', u'claim']
[u'amnesti', u'renew', u'guantanamo', u'closur']
[u'anim', u'lover', u'wish', u'partner', u'like', u'pet', u'survey']
[u'anti', u'rodeo', u'activist', u'ramp', u'campaign']
[u'archaeologist', u'stand', u'rock', u'book']
[u'atletico', u'barcelona']
[u'attempt', u'state', u'wide', u'uniform', u'water', u'restrict']
[u'aussi', u'enjoy', u'psycholog', u'edg']
[u'aust', u'muslim', u'warn', u'publish', u'cartoon']
[u'aust', u'wine', u'sale', u'boom']
[u'award', u'recognis', u'sale', u'businesswoman']
[u'awar', u'iraq', u'kickback', u'exec', u'say']
[u'whistleblow', u'tell', u'pakistan', u'bribe']
[u'injuri', u'limit', u'mear', u'championship']
[u'bank', u'resourc', u'sector', u'drive', u'market', u'higher']
[u'barnett', u'dive', u'game', u'team']
[u'bendigo', u'driver', u'defi', u'safe', u'drive', u'law']
[u'bendigo', u'venu', u'expect', u'loss', u'commonwealth', u'game']
[u'biki', u'gang', u'member', u'break', u'silenc', u'colleagu']
[u'boat', u'discoveri', u'prompt', u'indigen']
[u'brumbi', u'injur', u'trio', u'star', u'face', u'forc']
[u'buchanan', u'tip', u'pont', u'hussey', u'medal']
[u'butt', u'centuri', u'set', u'pakistan']
[u'driver', u'farewel', u'murder', u'colleagu']
[u'highway', u'bypass', u'public', u'land']
[u'remov', u'ibuprofen', u'supermarket', u'shelv']
[u'cambodian', u'king', u'pardon', u'opposit', u'leader']
[u'cathol', u'doctor', u'tell', u'quit', u'medic', u'associ']
[u'chelsea', u'return', u'win', u'way', u'liverpool']
[u'child', u'health', u'train', u'indigen', u'health', u'worker']
[u'child', u'murder', u'trial', u'begin']
[u'china', u'tackl', u'safeti', u'coal', u'mine', u'industri']
[u'coach', u'say', u'yang', u'rush', u'turn']
[u'commission', u'explain', u'charg', u'patel', u'victim']
[u'cool', u'chang', u'plan', u'high', u'school']
[u'council', u'consid', u'rate', u'relief', u'farmer']
[u'council', u'defend', u'rise', u'rat']
[u'council', u'approv', u'bowl', u'club', u'redevelop']
[u'council', u'stop', u'rememb', u'chopper', u'crash', u'victim']
[u'countrylink', u'servic', u'reduc']
[u'courier', u'mail', u'cartoon', u'public', u'label', u'reckless']
[u'court', u'call', u'reward', u'solv', u'sydney', u'girl', u'death']
[u'croc', u'coach', u'sack']
[u'death', u'blame', u'servic', u'delay']
[u'delay', u'board', u'hostel', u'face', u'rise', u'cost']
[u'develop', u'group', u'seek', u'heritag', u'overlay']
[u'dingo', u'number', u'increas', u'strong', u'breed']
[u'doubt', u'cast', u'beatti', u'doctor', u'shortag', u'strategi']
[u'downer', u'deni', u'govt', u'link', u'kickback']
[u'driver', u'time', u'legal', u'limit']
[u'dump', u'tip', u'whiteley', u'paint']
[u'educ', u'plan', u'consult', u'start']
[u'egyptian', u'torch', u'ferri', u'firm', u'offic']
[u'email', u'pay', u'compani', u'give', u'prioriti']
[u'everest', u'climb', u'help', u'reservist', u'iraq', u'mission']
[u'fijian', u'soldier', u'detain', u'solomon', u'island']
[u'explos', u'steal', u'leeton', u'break']
[u'famili', u'seek', u'vote', u'delay']
[u'govt', u'urg', u'fund', u'state', u'competit', u'chang']
[u'fink', u'bike', u'champ', u'wheel']
[u'firefight', u'famili', u'reject', u'ambul', u'respons']
[u'flight', u'suspend', u'crash', u'london', u'airport']
[u'dragon', u'avoid', u'jail', u'assault']
[u'foundat', u'reject', u'drug', u'school']
[u'frustrat', u'grow', u'foreign', u'train', u'doctor']
[u'fuel', u'drum', u'kill', u'shock', u'hors', u'group']
[u'fund', u'target', u'male', u'student', u'school', u'perform']
[u'game', u'baton', u'arriv']
[u'german', u'rival', u'head', u'head']
[u'global', u'secur', u'alert', u'escap', u'qaeda']
[u'govt', u'criticis', u'cooper', u'basin', u'bone', u'discoveri']
[u'govt', u'expand', u'inquiri', u'term']
[u'govt', u'face', u'question', u'scandal']
[u'govt', u'move', u'address', u'school', u'alarm', u'invest']
[u'govt', u'urg', u'victim']
[u'govt', u'urg', u'boost', u'hospit', u'bed']
[u'govt', u'urg', u'help', u'cancer', u'centr']
[u'green', u'group', u'say', u'coal', u'certainti']
[u'greenpeac', u'step', u'anti', u'whale', u'campaign']
[u'group', u'want', u'sustain', u'develop']
[u'grower', u'demand', u'resolut', u'wineri', u'impass']
[u'haa', u'captur', u'delray', u'beach', u'titl']
[u'hall', u'fame', u'honour', u'simpson', u'nobl']
[u'health', u'expert', u'greater', u'power', u'tackl', u'dengu']
[u'hear', u'hold', u'arcad', u'plan']
[u'warn', u'slow', u'hous', u'activ']
[u'hingi', u'return']
[u'histor', u'bridg', u'collaps', u'flood', u'damag']
[u'hitachi', u'claim', u'world', u'smallest', u'microchip']
[u'hope', u'leagu', u'match', u'regular', u'event']
[u'hospit', u'investig', u'toddler', u'death']
[u'iemma', u'defend', u'cut']
[u'iemma', u'say', u'breach', u'snowi', u'agreement']
[u'independ', u'discuss', u'senat', u'barrier']
[u'indonesian', u'polic', u'secur', u'danish', u'embassi']
[u'injuri', u'woe', u'bullet', u'quarter', u'final']
[u'inquiri', u'hit', u'share', u'price']
[u'inquiri', u'abort', u'pill', u'continu']
[u'cane', u'land', u'expect', u'increas']
[u'interpret', u'centr', u'fund', u'announc']
[u'israel', u'warn', u'iran', u'nuclear', u'program']
[u'jet', u'lose', u'home']
[u'extremist', u'hand', u'singapor']
[u'vacanc', u'fall']
[u'labor', u'slam', u'increas', u'hous', u'grant']
[u'land', u'clear', u'spark', u'threaten', u'speci', u'concern']
[u'leader', u'tribut', u'found', u'feder', u'court', u'judg']
[u'lebanes', u'minist', u'quit', u'cartoon', u'riot']
[u'level', u'communiti', u'opposit', u'sale']
[u'ljubic', u'clinch', u'zagreb', u'titl']
[u'lundi', u'speech', u'highlight', u'migrant', u'worker']
[u'malaysian', u'editor', u'quit', u'reprint', u'cartoon']
[u'accus', u'wire', u'theft', u'assault']
[u'charg', u'attempt', u'assault']
[u'confess', u'kill', u'wife', u'court', u'hear']
[u'face', u'trial', u'girl', u'murder']
[u'dead', u'murrah', u'river']
[u'hurt', u'bale', u'mishap']
[u'minist', u'deni', u'sack', u'export', u'council']
[u'miss', u'nurs', u'home', u'resid', u'safe']
[u'mitchel', u'welcom', u'fourth', u'umpir', u'preseason']
[u'mitsubishi', u'begin', u'make', u'redund', u'offer']
[u'money', u'predict', u'final', u'crowd']
[u'month', u'inflat', u'rise', u'percent']
[u'egyptian', u'ferri', u'survivor']
[u'murder', u'accus', u'admit', u'buri', u'bodi', u'court', u'hear']
[u'muslim', u'cartoon', u'public', u'gratuit']
[u'muslim', u'leader', u'talk', u'public', u'cartoon']
[u'muslim', u'outrag', u'cartoon', u'spread']
[u'nation', u'park', u'firefight', u'debrief']
[u'school', u'year', u'begin']
[u'nixon', u'get', u'second', u'term', u'polic']
[u'deal', u'aust', u'mauritania', u'contract']
[u'team', u'urg', u'serious']
[u'nylex', u'ax', u'job', u'plant', u'closur']
[u'spill', u'doesnt', u'impact', u'coal', u'termin']
[u'lane', u'reopen', u'truck', u'crash']
[u'opposit', u'polic', u'assoc', u'question', u'nixon']
[u'opposit', u'convent', u'industri', u'plan', u'question']
[u'organis', u'unabl', u'festiv', u'solut']
[u'polic', u'catch', u'woman', u'drug', u'pepper', u'spray']
[u'polic', u'hunt', u'mayfield', u'attack']
[u'polic', u'recommend', u'charg', u'patel']
[u'polic', u'charg', u'samurai', u'sword']
[u'polit', u'expert', u'see', u'coalit', u'divis']
[u'pont', u'dual', u'medallist']
[u'pont', u'tip', u'south', u'africa', u'final', u'oppon']
[u'poor', u'weather', u'dash', u'record', u'grain', u'hop']
[u'port', u'author', u'green', u'light', u'berth']
[u'probe', u'continu', u'fatal', u'crash']
[u'promot', u'newcastl', u'femal', u'firefight']
[u'prosecutor', u'seek', u'murder', u'verdict', u'morrison', u'case']
[u'protest', u'ralli', u'sale']
[u'protest', u'propos', u'cruis', u'ship', u'termin']
[u'protest', u'cartoon', u'continu']
[u'public', u'ask', u'help', u'steal', u'gun']
[u'queen', u'baton', u'visit']
[u'question', u'aris', u'parent', u'respons']
[u'race', u'hors', u'owner', u'plead', u'guilti', u'fraud']
[u'rain', u'plan', u'draw']
[u'recherch', u'deal', u'claim', u'prematur']
[u'rescu', u'beacon', u'help', u'save', u'snake', u'bite', u'victim']
[u'resid', u'upset', u'forest', u'develop', u'plan']
[u'resid', u'wari', u'possibl', u'speed', u'limit', u'lift']
[u'rethink', u'termin']
[u'declar', u'bushfir', u'emerg']
[u'riverland', u'perman', u'magistr']
[u'rolton', u'name', u'australian', u'captain']
[u'rooki', u'holm', u'win', u'titl']
[u'inquiri', u'look', u'evid', u'opinion']
[u'rural', u'doctor', u'emphasis', u'need', u'access', u'servic']
[u'drink', u'drive', u'blitz', u'nab']
[u'saint', u'fin', u'player', u'payment', u'breach']
[u'lib', u'launch', u'elect']
[u'tackl', u'youth', u'crime', u'cycl']
[u'scotland', u'franc', u'nation', u'shock']
[u'selector', u'ponder', u'mcgrath', u'replac']
[u'seminar', u'tree', u'clear', u'packag']
[u'singer', u'songwrit', u'gene', u'mcfadden', u'die']
[u'joh', u'famili', u'reveal', u'epitaph']
[u'snake', u'home', u'summer']
[u'soldier', u'return', u'solomon', u'deploy']
[u'south', u'korean', u'hail', u'yang']
[u'stacker', u'futur', u'undecid']
[u'stacker', u'futur', u'undecid']
[u'steeler', u'lead', u'seahawk', u'half', u'time']
[u'steeler', u'super', u'bowl']
[u'stephen', u'ask', u'bali', u'court', u'repatri']
[u'substitut', u'piero', u'notch', u'winner', u'juventus']
[u'sugar', u'market', u'remain', u'firm']
[u'survey', u'reveal', u'council', u'satisfact']
[u'takeov', u'target', u'europ']
[u'talk', u'continu', u'shop', u'centr']
[u'adult', u'communiti', u'educ', u'see', u'fund', u'boost']
[u'govt', u'join', u'fight', u'stop', u'recherch', u'log']
[u'taxi', u'associ', u'accus', u'politicis', u'driver']
[u'teen', u'face', u'sexual', u'assault', u'charg']
[u'tendulkar', u'reach', u'run']
[u'person', u'seek', u'tamworth', u'nation']
[u'tornado', u'farmer', u'help', u'affect']
[u'tractor', u'accid', u'spark', u'farm', u'safeti', u'remind']
[u'tribut', u'flow', u'feminist', u'friedan']
[u'truck', u'compani', u'prosecut', u'driver']
[u'drown', u'central', u'coast']
[u'kill', u'afghan', u'anti', u'cartoon', u'protest']
[u'milit', u'kill', u'israel', u'strike', u'gaza']
[u'underdog', u'red', u'aim', u'upset']
[u'union', u'seek', u'greater', u'driver', u'protect']
[u'union', u'attack', u'prompt', u'polic', u'plea', u'help']
[u'farmer', u'demand', u'probe', u'kickback']
[u'victorian', u'polic', u'blitz', u'nab', u'trucki']
[u'govt', u'attack', u'death', u'rate']
[u'govt', u'urg', u'airlin', u'improv', u'disabl']
[u'push', u'recognit', u'customari']
[u'waratah', u'forc', u'ditch', u'controversi', u'jersey']
[u'waratah', u'initi', u'idea', u'scrap']
[u'word', u'continu', u'drug', u'law']
[u'water', u'suppli', u'track']
[u'welfar', u'group', u'prais', u'eleph', u'import', u'condit']
[u'wildcat', u'psycholog', u'advantag', u'ronaldson']
[u'wind', u'farm', u'panel', u'hear', u'begin']
[u'wine', u'glut', u'expect', u'impact', u'local', u'industri']
[u'woman', u'die', u'burley', u'griffin', u'crash']
[u'woman', u'extradit', u'gambier', u'blaze']
[u'zoo', u'ahead', u'import', u'asian', u'eleph']
[u'academ', u'believ', u'govern', u'respons', u'race']
[u'adelaid', u'airport', u'meet', u'product']
[u'adult', u'educ', u'program', u'secur', u'fund']
[u'issu', u'say']
[u'airbus', u'super', u'jumbo', u'face', u'chilli', u'test']
[u'airlin', u'defend', u'ask', u'woman', u'passeng', u'cover']
[u'albani', u'face', u'murder', u'trial']
[u'amsterdam', u'deal', u'dope', u'smoke', u'sign']
[u'angler', u'urg', u'line', u'fish']
[u'arson', u'think', u'archer', u'blaze']
[u'ash', u'loss', u'haunt', u'pont']
[u'atsb', u'fail', u'caus', u'fatal', u'plane', u'crash']
[u'aust', u'close', u'west', u'bank', u'mission', u'amid', u'anti', u'cartoon']
[u'aust', u'rescu', u'philippin', u'yacht', u'mishap']
[u'australia', u'close', u'diplomat', u'mission', u'west', u'bank']
[u'australia', u'chees', u'idol', u'win', u'scholarship']
[u'author', u'investig', u'hous', u'blaze']
[u'scandal', u'domin', u'question', u'time']
[u'barramundi', u'escap', u'prove', u'cost']
[u'benalla', u'crash', u'mysteri']
[u'cruis', u'ship', u'stop', u'albani']
[u'bomb', u'kill', u'marin', u'iraq']
[u'break', u'hill', u'student', u'return', u'school']
[u'broom', u'tree', u'push', u'safe', u'messag']
[u'bullet', u'like', u'includ', u'star']
[u'bushfir', u'close', u'hume', u'highway']
[u'bush', u'lobbi', u'defenc', u'fund', u'inject']
[u'busi', u'confid', u'activ', u'survey']
[u'busi', u'group', u'want', u'convent', u'centr', u'debat']
[u'campbel', u'look', u'continu', u'impress', u'vine', u'form']
[u'campbel', u'return', u'arsenal', u'train']
[u'cane', u'toad', u'fertilis', u'trial']
[u'carnarvon', u'offic', u'hospit', u'assault']
[u'cartoon', u'public', u'put', u'zealand', u'risk']
[u'caution', u'urg', u'bigger', u'home', u'buyer']
[u'child', u'murder', u'trial', u'hear', u'confess', u'claim']
[u'children', u'galleri', u'plan', u'inveresk']
[u'coalit', u'make', u'parti', u'room']
[u'coalit', u'readi', u'govt', u'beatti']
[u'coalit', u'tension', u'remain', u'high']
[u'coff', u'urg', u'address', u'demograph', u'imbal']
[u'cole', u'issu', u'nation', u'recal', u'cereal']
[u'commiss', u'keep', u'close', u'watch', u'locust', u'number']
[u'condello', u'fear', u'life', u'lawyer']
[u'condello', u'kill']
[u'condello', u'murder', u'prompt', u'underworld', u'fear']
[u'confer', u'discuss', u'polic', u'treatment', u'rape']
[u'consist', u'victori', u'say', u'moodi']
[u'costello', u'attack', u'latham', u'camera', u'incid']
[u'cost', u'wind', u'bigger', u'renew', u'energi']
[u'council', u'get', u'look', u'railway', u'yard', u'plan']
[u'council', u'green', u'light', u'farm', u'rate', u'relief']
[u'council', u'leader', u'highlight', u'water', u'issu']
[u'councillor', u'bowl', u'club', u'revamp']
[u'council', u'hold', u'wind', u'farm', u'meet']
[u'council', u'watch', u'sewerag', u'overflow']
[u'council', u'worker', u'strike']
[u'court', u'find', u'guilti', u'fals', u'imprison', u'theft']
[u'creditor', u'play', u'demolit', u'threat']
[u'czugaj', u'apologis', u'bali', u'court']
[u'dane', u'warn', u'leav', u'indonesia']
[u'dead', u'blast', u'hit', u'southern', u'afghan', u'citi']
[u'democrat', u'upbeat', u'vote']
[u'dfat', u'check', u'truck', u'compani', u'inquiri', u'hear']
[u'doctor', u'fail', u'english', u'test']
[u'doctor', u'form', u'diabet', u'manag', u'scheme']
[u'dope', u'cheat', u'face', u'italian', u'court']
[u'wont', u'rule', u'richmond', u'river', u'fish', u'death']
[u'draper', u'monitor', u'cutback']
[u'drown', u'prompt', u'longer', u'lifeguard', u'patrol']
[u'emerg', u'servic', u'feel', u'littl', u'impact', u'phone']
[u'emerg', u'servic', u'worker', u'equip']
[u'engin', u'blame', u'ipswich', u'plane', u'crash']
[u'look', u'help', u'solv', u'fish', u'kill']
[u'farmer', u'ask', u'continu', u'store', u'fodder', u'donat']
[u'farmer', u'access', u'storm', u'damag', u'fund']
[u'firefight', u'tackl', u'power', u'station', u'blaze']
[u'fish', u'industri', u'push', u'greater', u'anti', u'poach']
[u'fitzgerald', u'confid', u'upset', u'swiss']
[u'flood', u'forc', u'closur', u'tanami', u'road']
[u'focus', u'remain', u'beach', u'antonio', u'investig']
[u'execut', u'face', u'committ', u'hear']
[u'currenc', u'trader', u'plead', u'guilti']
[u'offic', u'defend', u'drug', u'robberi', u'charg']
[u'policemen', u'face', u'charg', u'robberi', u'drug']
[u'game', u'baton', u'arriv', u'darwin']
[u'giant', u'squid', u'life', u'reveal']
[u'gold', u'coast', u'host', u'demon']
[u'gosper', u'show', u'confid', u'winter', u'olympian']
[u'govern', u'urg', u'address', u'hous', u'shortag']
[u'govt', u'announc', u'hospit', u'posit']
[u'govt', u'know', u'bogus', u'truck', u'compani', u'inquiri', u'tell']
[u'govt', u'look', u'grab', u'green', u'vote', u'recherch']
[u'govt', u'urg', u'creat', u'escarp', u'author']
[u'grafton', u'hospit', u'get', u'share', u'health', u'grant']
[u'grape', u'grower', u'continu', u'action', u'wineri']
[u'group', u'say', u'farmer', u'rap', u'pillag', u'land']
[u'habib', u'launch', u'defam', u'suit']
[u'hama', u'negoti', u'set', u'palestinian', u'govt']
[u'heat', u'affect', u'wine', u'grape', u'quantiti']
[u'heffernan', u'apologis', u'verbal', u'attack']
[u'hewitt', u'cruis', u'oper', u'settl', u'court']
[u'higher', u'elect', u'surgeri', u'demand', u'surpris']
[u'high', u'price', u'market', u'nervous']
[u'high', u'temperatur', u'toll', u'roo']
[u'histor', u'marbl', u'hotel', u'heritag', u'list']
[u'hospit', u'record', u'bigger', u'wait', u'list']
[u'indonesian', u'minist', u'jail', u'hajj', u'corrupt']
[u'internet', u'giant', u'confirm', u'busi', u'email', u'charg']
[u'invest', u'renov', u'home', u'owner', u'tell']
[u'iran', u'cut', u'trade', u'denmark', u'cartoon']
[u'iran', u'tell', u'nuclear', u'watchdog', u'remov', u'monitor']
[u'jail', u'visit', u'hour', u'chang', u'caus', u'lawyer', u'delay']
[u'japan', u'princess', u'kiko', u'pregnant']
[u'labor', u'unconcern', u'latham', u'latest', u'drama']
[u'labor', u'want', u'telstra', u'boss', u'senat', u'hear']
[u'lamb', u'price', u'downward', u'slide']
[u'launceston', u'plead', u'guilti', u'drive', u'death']
[u'lean', u'time', u'retail', u'expect', u'continu']
[u'lennon', u'defend', u'recherch', u'deal']
[u'lewi', u'replac', u'mcgrath', u'final']
[u'lithgow', u'worker', u'sign']
[u'local', u'senat', u'airport', u'wrangl']
[u'accus', u'mildura', u'rape', u'extradit', u'break']
[u'drown', u'sunshin', u'coast']
[u'face', u'charg', u'attack']
[u'manufactur', u'face', u'tough', u'time', u'ahead']
[u'marron', u'season', u'declar', u'success']
[u'masterpiec', u'appear', u'coin']
[u'mcgrath', u'come', u'readi', u'pont']
[u'meet', u'oppos', u'drink', u'water', u'fluorid']
[u'mild', u'weather', u'help', u'battl', u'pulletop', u'blaze']
[u'minchin', u'hit', u'heffernan', u'stoush']
[u'miner', u'form', u'kalgoorli', u'tenement', u'agreement']
[u'monaghan', u'ditch', u'eagl', u'skipper']
[u'motorcyclist', u'die', u'road', u'crash']
[u'mottram', u'headlin', u'record', u'athlet', u'team']
[u'pressur', u'oppos', u'abort', u'drug']
[u'see', u'posit', u'customari', u'recommend']
[u'urg', u'ambul', u'offic', u'hospit', u'emerg']
[u'nation', u'look', u'boost', u'joyc', u'visit']
[u'nelson', u'flag', u'pakistan', u'quak', u'mission']
[u'vaccin', u'trial', u'combat', u'sexual', u'transmit']
[u'north', u'coast', u'nurs', u'boost']
[u'whiteley', u'declar', u'fake']
[u'judg', u'expect', u'murdoch', u'appeal', u'applic']
[u'compani', u'fear', u'loss', u'possum', u'skin']
[u'accus', u'norfolk', u'murder']
[u'wheat', u'scandal', u'drag', u'market']
[u'opposit', u'call', u'school', u'alarm']
[u'opposit', u'call', u'heffernan', u'suspens']
[u'opposit', u'outlin', u'fuel', u'reduct', u'burn', u'failur']
[u'pair', u'face', u'trial', u'gold', u'theft']
[u'parliament', u'resum', u'fieri', u'debat']
[u'philippin', u'victim', u'treat', u'like', u'anim']
[u'pilot', u'marijuana', u'fatal', u'plane', u'crash']
[u'polic', u'defend', u'task', u'forc', u'wake', u'underworld']
[u'polic', u'fear', u'gatto', u'gangland', u'murder']
[u'polic', u'investig', u'racist', u'graffiti', u'attack']
[u'polic', u'river', u'bodi']
[u'princ', u'keen', u'resolv', u'futur']
[u'princ', u'reject', u'bradford', u'commit', u'claim']
[u'protea', u'final', u'berth']
[u'govt', u'warn', u'tugun', u'bypass', u'budget', u'blow']
[u'origin', u'selector', u'look', u'futur']
[u'rann', u'agre', u'televis', u'debat']
[u'recept', u'plan', u'melbourn', u'player']
[u'refer', u'group', u'discuss', u'albani', u'waterfront']
[u'region', u'fuel', u'price', u'tip', u'fall']
[u'rescu', u'boat', u'boost', u'surf', u'lifesav', u'club']
[u'research', u'shed', u'light', u'skin', u'cancer', u'awar']
[u'resid', u'worri', u'defenc', u'suck', u'water', u'suppli']
[u'retail', u'sale', u'christma', u'splurg']
[u'retir', u'villag', u'develop', u'ask', u'detail']
[u'rfds', u'plan', u'mental', u'health', u'expans']
[u'work', u'communic', u'problem']
[u'roar', u'play', u'south', u'korean', u'tournament']
[u'rock', u'climber', u'hurt', u'fall']
[u'branch', u'closur', u'plan', u'surpris', u'council']
[u'sailor', u'hop', u'silenc', u'lang', u'park', u'crowd']
[u'sale', u'nylex', u'expans', u'hop', u'dash']
[u'scott', u'face', u'tough', u'task', u'retain', u'titl']
[u'search', u'suspend', u'miss', u'near', u'mountain']
[u'sept', u'accus', u'eject', u'court']
[u'seton', u'doubt', u'adelaid']
[u'shell', u'brows', u'basin', u'studi']
[u'shop', u'centr', u'plan', u'trigger', u'public', u'fear']
[u'singapor', u'surrend', u'site', u'declar', u'nation']
[u'small', u'rise', u'vineyard', u'tourism', u'spend']
[u'snowi', u'chief', u'rule', u'environment', u'flow']
[u'surgeon', u'sceptic', u'roster']
[u'souther', u'buster', u'expect', u'eas']
[u'south', u'west', u'prepar', u'game', u'baton', u'relay']
[u'storm', u'captainci', u'rotat']
[u'storm', u'season', u'prompt', u'electr', u'safeti', u'remind']
[u'stosur', u'take', u'number', u'doubl', u'rank']
[u'stosur', u'withdraw', u'thailand', u'tournament']
[u'supermarket', u'roof', u'collaps', u'germani', u'injuri']
[u'supersub', u'bandara', u'put', u'lanka', u'final']
[u'sydney', u'council', u'vote', u'desalin', u'plant']
[u'sydney', u'polic', u'massiv', u'haul']
[u'taser', u'gun', u'triall']
[u'tasmanian', u'devil', u'tumour', u'research', u'get', u'fund', u'boost']
[u'tasmanian', u'miner', u'lose', u'job']
[u'teen', u'arrest', u'priest', u'murder', u'turkey']
[u'tennant', u'creek', u'face', u'court', u'manslaught']
[u'arrest', u'drug', u'bust']
[u'charg', u'deni', u'bail']
[u'moodi', u'graem', u'smith', u'interview']
[u'tougher', u'law', u'consid', u'driver']
[u'tourist', u'theft', u'charg', u'remand', u'custodi']
[u'trainer', u'accus', u'drug', u'hors']
[u'truck', u'firm', u'back', u'polic', u'crackdown']
[u'tuqiri', u'miss', u'red', u'clash']
[u'kill', u'latest', u'strike', u'gaza']
[u'union', u'fear', u'shipment', u'delay', u'hurt', u'australia']
[u'union', u'question', u'telstra', u'redund', u'reason']
[u'union', u'step', u'anti', u'campaign']
[u'upbeat', u'trade', u'condit', u'boost', u'busi', u'hop']
[u'senat', u'back', u'claim']
[u'farmer', u'defend']
[u'minist', u'see', u'ironi', u'wheat', u'claim']
[u'polic', u'confirm', u'link', u'condello']
[u'teacher', u'face', u'court', u'child', u'porn']
[u'water', u'monitor', u'continu', u'post', u'fire']
[u'put', u'south', u'west', u'forest', u'burn', u'schedul']
[u'wheat', u'export', u'wont', u'chang', u'inquiri']
[u'wild', u'storm', u'tear', u'inland', u'town']
[u'wind', u'hamper', u'firefight', u'effort']
[u'wine', u'industri', u'look', u'build', u'stronger', u'case']
[u'wineri', u'worker', u'strike']
[u'woman', u'face', u'court', u'stab']
[u'wool', u'market', u'expect', u'remain', u'buoyant']
[u'workcov', u'offic', u'closur', u'spark', u'concern']
[u'york', u'want', u'short', u'term', u'japanes', u'stint', u'report']
[u'blast', u'russian', u'base', u'chechnya']
[u'kill', u'afghan', u'attack']
[u'kill', u'afghan', u'cartoon', u'protest']
[u'help', u'abus', u'children']
[u'abbott', u'defend', u'right', u'veto']
[u'abbott', u'warn', u'divis', u'abort', u'drug', u'debat']
[u'adelaid', u'draw', u'ree', u'retir']
[u'star', u'offer', u'student', u'healthi', u'eat', u'hint']
[u'airport', u'plan', u'take']
[u'ambassador', u'senat', u'hold', u'talk']
[u'archbishop', u'defend', u'govern', u'cooper']
[u'architectur', u'firm', u'question', u'cruis', u'termin', u'plan']
[u'galleri', u'design', u'competit', u'attract', u'strong']
[u'asylum', u'seeker', u'work', u'church']
[u'aussi', u'grab', u'ash', u'ticket']
[u'aussi', u'prepar', u'basebal', u'world']
[u'avalanch', u'kill', u'afghan', u'villag']
[u'exec', u'accus', u'make', u'evid']
[u'exec', u'ignor', u'sanction', u'breach']
[u'execut', u'accus', u'fabric', u'evid']
[u'inquiri', u'laugh', u'chaser', u'stunt']
[u'ballina', u'council', u'offer', u'rat', u'assur']
[u'barn', u'start', u'half', u'waratah']
[u'beatti', u'deni', u'show', u'bias', u'patel']
[u'birmingham', u'preston', u'replay']
[u'blackwel', u'replac', u'gile', u'england', u'squad']
[u'bombala', u'council', u'question', u'firefight', u'fund']
[u'brack', u'seek', u'guarante', u'snowi', u'flow', u'hydro']
[u'breastf', u'babi', u'like', u'pneumonia']
[u'broadband', u'loom', u'town']
[u'brumbi', u'trio', u'doubt', u'forc', u'clash']
[u'brunei', u'sell', u'properti']
[u'bureaucrat', u'tension', u'delay', u'youth', u'mental', u'health']
[u'bushfir', u'inquest', u'hear', u'properti', u'threat', u'fear']
[u'busi', u'remain', u'unconvinc', u'infrastructur']
[u'reform', u'extend', u'region']
[u'buyer', u'compet', u'finest', u'tassi', u'wool']
[u'bypass', u'start', u'hing', u'rail', u'compani', u'talk']
[u'cabinet', u'consid', u'plan', u'time', u'firefight']
[u'cultur', u'polici', u'review']
[u'call', u'overhaul', u'infrastructur', u'spend']
[u'canadian', u'forest', u'grant', u'protect', u'log']
[u'canberran', u'choos', u'comfort', u'decid', u'energi']
[u'chanc', u'say', u'earli', u'draw', u'conclus']
[u'child', u'murder', u'trial', u'tell', u'mother', u'know', u'accus']
[u'citrus', u'canker', u'erad', u'program', u'grind', u'stop']
[u'clark', u'arriv', u'tran', u'tasman', u'talk']
[u'compani', u'silent', u'live', u'sheep', u'shipment']
[u'confer', u'hear', u'rise', u'meal', u'wheel', u'cost']
[u'conroy', u'face', u'compo', u'claim', u'food']
[u'consum', u'confid', u'overcom', u'fuel', u'price']
[u'council', u'contractor', u'plan', u'move', u'ahead']
[u'council', u'face', u'skate', u'ramp', u'site', u'dilemma']
[u'council', u'fund', u'crime', u'fight', u'plan']
[u'councillor', u'mayor', u'odd', u'alleg', u'conflict']
[u'councillor', u'plead', u'innoc', u'probe']
[u'council', u'rememb', u'chopper', u'crash', u'victim']
[u'council', u'seek', u'jezzin', u'barrack', u'advic']
[u'council', u'seek', u'rate', u'rise', u'erupt']
[u'council', u'boost', u'eurobodalla', u'communiti', u'project']
[u'council', u'welcom', u'fli', u'price', u'dive']
[u'court', u'uphold', u'bigger', u'tree', u'remov', u'fine']
[u'crew', u'continu', u'fight', u'tatong', u'blaze']
[u'crew', u'fight', u'blaze', u'north', u'east']
[u'cyclist', u'warn', u'cautious', u'road']
[u'democrat', u'leader', u'tell', u'abort']
[u'desert', u'studi', u'aim', u'boost', u'indigen', u'tourism']
[u'diver', u'rescu', u'day']
[u'doubt', u'rais', u'parent', u'respons']
[u'downer', u'deni', u'link', u'alia']
[u'drought', u'hit', u'cattl', u'compani', u'profit']
[u'investig', u'creek', u'pollut']
[u'esper', u'athlet', u'marathon', u'effort', u'secur', u'game']
[u'moratorium', u'breach', u'world', u'trade', u'rule']
[u'eurobodalla', u'cheer', u'bateman', u'winter']
[u'evan', u'tate', u'wont', u'rule', u'loss']
[u'farm', u'properti', u'valu', u'rise']
[u'firefight', u'monitor', u'grampian', u'flare']
[u'firefight', u'ralli', u'disput']
[u'forc', u'team', u'brumbi', u'clash']
[u'foreign', u'visitor', u'motorhom']
[u'forum', u'focus', u'hospit', u'locat']
[u'fossett', u'delay', u'latest', u'flight', u'fuel', u'leak']
[u'dead', u'haiti', u'elect', u'violenc']
[u'freeman', u'patron', u'miner', u'job', u'centr']
[u'french', u'offici', u'huge', u'heroin', u'bust']
[u'fundrais', u'wonder', u'state', u'govt', u'contribut']
[u'game', u'baton', u'relay', u'head', u'newman']
[u'garvan', u'institut', u'claim', u'rheumatoid', u'arthriti']
[u'gavaskar', u'feel', u'call', u'bowler', u'face', u'perman']
[u'gillard', u'back', u'troubl', u'crean', u'preselect', u'battl']
[u'glensid', u'hospit', u'stay', u'open']
[u'goldfield', u'indigen', u'communiti', u'condom']
[u'googl', u'wed', u'email', u'instant', u'messag']
[u'govt', u'decid', u'rais', u'wall']
[u'govt', u'fund', u'beef', u'saleyard']
[u'govt', u'reject', u'fuel', u'reduct', u'claim']
[u'govt', u'sell', u'snowi', u'hydro', u'stake']
[u'green', u'group', u'fear', u'develop', u'abl', u'avoid']
[u'green', u'highlight', u'land', u'clear', u'cowboy']
[u'hanna', u'leav', u'green', u'independ']
[u'henin', u'hardenn', u'train']
[u'highway', u'bypass', u'talk', u'start']
[u'hockey', u'team', u'name', u'commonwealth', u'game']
[u'home', u'fan', u'grab', u'ash', u'ticket']
[u'howard', u'clark', u'prais', u'east', u'asia', u'summit']
[u'hunter', u'island', u'leas', u'grazier']
[u'hunter', u'pair', u'join', u'commonwealth', u'game', u'athlet', u'squad']
[u'iemma', u'deni', u'public', u'pressur', u'plant', u'scrap']
[u'indian', u'jail', u'year', u'trial']
[u'rat', u'hold']
[u'investig', u'find', u'bird', u'deliber', u'poison']
[u'investig', u'launch', u'fish', u'kill']
[u'iranian', u'paper', u'hold', u'holocaust', u'cartoon', u'contest']
[u'iranian', u'protest', u'storm', u'danish', u'norwegian', u'embassi']
[u'island', u'resort', u'owner', u'reject', u'industri', u'critic']
[u'jamaica', u'monument', u'marley', u'home']
[u'kersten', u'bayley', u'podium', u'track', u'cycl']
[u'jong', u'accept', u'indonesia', u'visit', u'invit']
[u'labor', u'accus', u'govt', u'avoid', u'question']
[u'labor', u'say', u'voter', u'judg', u'chang']
[u'croc', u'tag', u'landmark', u'studi']
[u'llama', u'love', u'perfect', u'gift']
[u'long', u'term', u'plan', u'form', u'troubl', u'stadium']
[u'mactier', u'win', u'titl', u'rhode', u'claim']
[u'export']
[u'accus', u'assault', u'policeman', u'boil']
[u'avoid', u'jail', u'term', u'school', u'break']
[u'charg', u'mother', u'law', u'murder']
[u'charg', u'teenag', u'abduct', u'assault']
[u'charg', u'tomahawk', u'attack', u'intrud']
[u'face', u'court', u'charg']
[u'face', u'court', u'polic', u'pursuit']
[u'win', u'membership', u'disput']
[u'win', u'discrimin', u'disput']
[u'marion', u'jone', u'settl', u'steroid', u'scandal', u'defam']
[u'market', u'drop', u'gold', u'price', u'plung']
[u'mayor', u'meet', u'wild', u'river', u'legisl', u'worri']
[u'mcgrath', u'absenc', u'test', u'bowl', u'depth', u'moodi']
[u'mine', u'compani', u'feel', u'impact', u'gold', u'price', u'drop']
[u'minist', u'ask', u'meet', u'wimmera', u'malle']
[u'minist', u'deni', u'kickback', u'knowledg']
[u'miss', u'good', u'condit']
[u'mitchel', u'dismiss', u'brumbi', u'injuri', u'report']
[u'say', u'nation', u'nose', u'region']
[u'cattl', u'look', u'feedlot', u'cattl']
[u'say', u'esper', u'polic', u'boost']
[u'elat', u'sister', u'game', u'select']
[u'munch', u'canva', u'fetch', u'record']
[u'murdoch', u'grant', u'leav', u'appeal', u'falconio']
[u'murdoch', u'secur', u'appeal', u'falconio', u'convict']
[u'nation', u'seek', u'meet', u'telstra', u'head']
[u'nation', u'kimberley', u'tour']
[u'natur', u'nurtur', u'determin', u'read', u'skill']
[u'nederpelt', u'talk', u'freestyl', u'chanc']
[u'bradburi', u'tell', u'aussi', u'speed', u'skater']
[u'newcrest', u'studi', u'consid', u'mine', u'potenti']
[u'captain', u'aim', u'high', u'women', u'tenni']
[u'nurs', u'start', u'hospit', u'graduat', u'program']
[u'scheme', u'address', u'high', u'blood', u'lead', u'level']
[u'zealand', u'visit', u'canberra']
[u'contraband', u'worker', u'baggag', u'search']
[u'govt', u'retain', u'control']
[u'price', u'drop', u'gold', u'price']
[u'opposit', u'fear', u'industri', u'woe', u'hurt']
[u'optus', u'profit', u'drop']
[u'palestinian', u'kill', u'israel', u'vow', u'target', u'milit']
[u'paperwork', u'blunder', u'lead', u'prison', u'releas']
[u'parti', u'arcad', u'compo', u'return', u'court']
[u'partner', u'spill', u'bean', u'male', u'author', u'hoax']
[u'piper', u'aim', u'game', u'record']
[u'prefer', u'ministeri', u'control']
[u'say', u'control', u'stay', u'minist']
[u'polic', u'speed', u'driver', u'worri']
[u'polic', u'investig', u'attempt', u'child', u'abduct']
[u'polic', u'talk', u'student', u'forest', u'blaze']
[u'politician', u'contradict', u'recherch']
[u'pont', u'want', u'rule', u'ax']
[u'protea', u'bounc', u'home', u'warn', u'smith']
[u'public', u'air', u'residenti', u'develop', u'fear']
[u'public', u'ask', u'wast', u'facil', u'plan']
[u'push', u'school', u'promot', u'agricultur', u'work']
[u'qcoss', u'seek', u'bigger', u'govt', u'invest']
[u'rabbitoh', u'board', u'vote', u'crow']
[u'rail', u'station', u'revamp', u'near']
[u'tell', u'wait', u'long', u'rate', u'rais']
[u'recherch', u'save', u'log']
[u'ree', u'retir']
[u'region', u'develop', u'minist', u'break', u'hill']
[u'research', u'look', u'impact', u'reduc', u'dingo']
[u'review', u'offer', u'pocket', u'relief']
[u'rucker', u'don', u'mask', u'sudden', u'death', u'play']
[u'rugbi', u'visit', u'excit', u'tongan', u'communiti']
[u'sartor', u'discuss', u'escarp', u'council']
[u'sawmil', u'owner', u'blame', u'polit', u'licenc', u'sale']
[u'scientist', u'cure', u'rheumatoid', u'arthriti', u'mice']
[u'plan', u'judg', u'propos', u'hotel', u'say']
[u'senat', u'name', u'canberra', u'restaur', u'parliament']
[u'shark', u'honour', u'roger']
[u'shepparton', u'council', u'boost', u'park', u'safeti']
[u'ship', u'firm', u'consid', u'port']
[u'south', u'african', u'surfer', u'win', u'maverick', u'contest']
[u'south', u'west', u'threat', u'eas']
[u'state', u'funer', u'farewel', u'liber', u'parti', u'pioneer']
[u'state', u'court', u'date', u'challeng']
[u'sydney', u'council', u'object', u'chines', u'consul', u'razor']
[u'sydney', u'face', u'court', u'terror', u'offenc']
[u'duck', u'count']
[u'premier', u'unveil', u'plan', u'stop', u'recherch']
[u'taylor', u'appoint', u'time', u'captain']
[u'teen', u'refus', u'bail', u'refuge', u'murder']
[u'thiev', u'plunder', u'forest', u'seed']
[u'thorp', u'put', u'hand', u'blue', u'select']
[u'tongan', u'speaker', u'sack', u'briberi', u'convict']
[u'toxic', u'materi', u'clean', u'road', u'crash']
[u'train', u'boost', u'plan', u'wine', u'industri']
[u'troubl', u'knight', u'appoint', u'english', u'head', u'coach']
[u'turkey', u'swiss', u'brawl', u'neutral', u'venu']
[u'union', u'rule', u'hardi', u'strike']
[u'cancel', u'afghanistan', u'debt']
[u'concern', u'briberi', u'claim']
[u'vail', u'scandal']
[u'abattoir', u'chang', u'hand']
[u'premier', u'readi', u'sign', u'nation', u'water', u'initi']
[u'warn', u'back', u'pont', u'break', u'bat', u'record']
[u'warn', u'rule', u'world', u'comeback']
[u'wessel', u'rais', u'doubt', u'smith', u'captainci']
[u'western', u'athlet', u'game']
[u'weston', u'bowl', u'club', u'liquid']
[u'wheat', u'watchdog', u'admit', u'knowledg', u'deal']
[u'wildcat', u'bullet', u'final', u'hop']
[u'work', u'scheme', u'boost', u'indigen', u'job']
[u'xcellent', u'break', u'trackwork']
[u'young', u'driver', u'slow', u'drive', u'surviv']
[u'enlist', u'suicid', u'attack', u'cartoon', u'say']
[u'home', u'evacu', u'water', u'main', u'burst']
[u'command', u'begin', u'duti', u'major', u'airport']
[u'ask', u'probe', u'ambul', u'bulli', u'claim']
[u'allianc', u'mount', u'legal', u'challeng', u'snowi', u'sell']
[u'asio', u'check', u'game', u'secur', u'guard']
[u'athlet', u'return']
[u'aust', u'prepar', u'bird', u'outbreak', u'expert', u'say']
[u'australian', u'tour', u'tough', u'say', u'protea', u'coach']
[u'boss', u'quit']
[u'improv', u'imag', u'vail', u'say']
[u'beatti', u'push', u'extra', u'student', u'place']
[u'beazley', u'continu', u'pursu', u'govt']
[u'beck', u'want', u'england', u'boss']
[u'belgian', u'grand', u'prix', u'menu']
[u'berlin', u'film', u'festiv', u'open']
[u'best', u'british', u'team', u'decad', u'say', u'bell']
[u'crowd', u'turn', u'talk', u'tourism']
[u'bligh', u'stress', u'need', u'rail', u'line', u'plan']
[u'bluescop', u'warn', u'region', u'steel', u'product']
[u'bollard', u'block', u'senat', u'entranc']
[u'broom', u'trial', u'condom', u'tree', u'safe', u'initi']
[u'bushfir', u'inquest', u'hear', u'farmer']
[u'busi', u'question', u'spray', u'paint', u'law']
[u'butan', u'canist', u'king', u'wreckag']
[u'campbel', u'latest', u'brumbi', u'strike', u'virus']
[u'canada', u'add', u'defencemen', u'bouwmeest', u'boyl']
[u'canberra', u'lose', u'job', u'casa', u'shake']
[u'carpent', u'want', u'waterfront', u'action']
[u'cartoon', u'protest', u'forc', u'peac', u'monitor', u'hebron']
[u'casa', u'shake', u'worri', u'region', u'airlin']
[u'casa', u'target', u'smaller', u'airlin', u'industri', u'shake']
[u'central', u'west', u'boost', u'crop', u'plant']
[u'centrelink', u'assist', u'mitsubishi', u'worker', u'consid']
[u'chelsea', u'trebl', u'dream', u'aliv']
[u'child', u'murder', u'trial', u'hear', u'evid']
[u'command', u'appoint', u'airport', u'secur', u'boost']
[u'confirm', u'wigan', u'tri', u'poach', u'barrett']
[u'consist', u'kookaburra', u'favourit', u'well']
[u'cooler', u'chang', u'help', u'firefight']
[u'council', u'abl', u'fine', u'tourism', u'resort']
[u'council', u'back', u'club', u'lock']
[u'council', u'green', u'light', u'wind', u'farm']
[u'councillor', u'clarifi', u'pool', u'issu']
[u'councillor', u'vote', u'condom', u'tree', u'plan']
[u'councillor', u'urg', u'gold', u'coast', u'council', u'sack']
[u'council', u'agre', u'road', u'upgrad']
[u'council', u'ask', u'stop', u'take', u'wivenho', u'water']
[u'council', u'unawar', u'grind', u'water', u'plan']
[u'council', u'worker', u'closer', u'resolut']
[u'court', u'appeal', u'hear', u'holiday', u'home', u'issu']
[u'critic', u'continu', u'hunter', u'decis']
[u'croatia', u'ask', u'australia', u'extradit', u'crime']
[u'croc', u'free', u'cairn', u'beach', u'imposs', u'park', u'servic']
[u'czech', u'star', u'hyman', u'olymp']
[u'death', u'inmat', u'appeal', u'reject', u'indonesia']
[u'dept', u'admit', u'check', u'futur', u'fund', u'chairman']
[u'detect', u'embarrass', u'accus', u'thief', u'steal']
[u'develop', u'bureau', u'prais', u'outgo', u'council']
[u'doctor', u'concern', u'teach', u'medico']
[u'dont', u'write', u'tendulkar', u'warn', u'imran']
[u'driver', u'jail', u'best', u'friend', u'death']
[u'clarifi', u'feedlot', u'expans', u'delay']
[u'earthquak', u'shake', u'north']
[u'esper', u'test', u'emerg', u'servic']
[u'expert', u'call', u'abolit', u'current', u'prison']
[u'farmer', u'busi', u'date', u'ammonium']
[u'farmer', u'urg', u'seek', u'board', u'appoint']
[u'farmer', u'warn', u'action', u'locust', u'threat']
[u'farmer', u'warn', u'back', u'director', u'rise']
[u'court', u'rule', u'mother', u'commonwealth']
[u'govt', u'ax', u'kimberley', u'truanci', u'plan']
[u'fenech', u'plead', u'guilti', u'steal']
[u'confirm', u'date', u'greec', u'eye', u'world']
[u'fifth', u'argentinian', u'tenni', u'player', u'ban', u'dope']
[u'finn', u'manninen', u'subdu', u'nordic', u'combin', u'practic']
[u'firefight', u'readi', u'weather', u'chang']
[u'fish', u'farm', u'escap', u'creat', u'environ', u'fear']
[u'flood', u'isol', u'balgo']
[u'foreign', u'fish', u'vessel', u'crew', u'flee']
[u'stirl', u'mayor', u'fin', u'vote', u'fraud']
[u'forsberg', u'doubt', u'sweden']
[u'fortescu', u'begin', u'port', u'construct']
[u'franc', u'make', u'chang', u'ireland', u'match']
[u'penguin', u'reject', u'femal']
[u'german', u'appeal', u'stasi']
[u'girl', u'escap', u'abduct', u'attempt']
[u'govt', u'accus', u'look', u'quick', u'buck', u'park', u'sale']
[u'govt', u'back', u'latest', u'plan', u'blood', u'lead', u'level']
[u'govt', u'defend', u'rail', u'voucher']
[u'govt', u'rule', u'farm', u'busi', u'emerg']
[u'grain', u'market', u'garner', u'barley', u'singl', u'desk', u'support']
[u'grape', u'grower', u'legal', u'action', u'mcguigan']
[u'greenhous', u'gas', u'caus', u'irrepar', u'damag', u'say']
[u'green', u'begin', u'save', u'countrylink', u'push']
[u'hammond', u'get', u'game', u'hockey', u'squad']
[u'harbour', u'tradit', u'turn']
[u'health', u'servic', u'boss', u'unawar', u'fund', u'divers']
[u'high', u'qualiti', u'fuel', u'plant', u'destin', u'port', u'darwin']
[u'hop', u'high', u'contain', u'bushfir']
[u'iemma', u'call', u'cross', u'citi', u'toll', u'reduct']
[u'imaginari', u'sick', u'common', u'studi', u'show']
[u'injur', u'german', u'coach', u'expect', u'turin']
[u'injur', u'guay', u'downhil']
[u'show', u'rock', u'energi']
[u'isra', u'troop', u'kill', u'gunmen', u'border', u'cross']
[u'itali', u'hand', u'jump', u'repriev']
[u'jayasuriya', u'play', u'pivot', u'role']
[u'korean', u'bear', u'teen', u'seek', u'short', u'track', u'gold']
[u'lamb', u'price', u'surg', u'continu', u'nlrs']
[u'laverton', u'safeti', u'plan', u'move', u'closer', u'realiti']
[u'law', u'streamlin', u'asbesto', u'victim', u'compo']
[u'lead', u'level', u'issu', u'prompt', u'prosecut', u'threat']
[u'lennon', u'push', u'health', u'fund', u'coag']
[u'mackay', u'face', u'doctor', u'loss']
[u'malaysia', u'australian', u'beef', u'import', u'report']
[u'manag', u'director', u'resign']
[u'charg', u'steal', u'camera', u'gear']
[u'face', u'court', u'riverland', u'murder']
[u'walk', u'free', u'cronulla', u'riot', u'violenc']
[u'senior', u'prepar', u'long', u'trip', u'survey']
[u'margaret', u'river', u'prepar', u'baton', u'arriv']
[u'market', u'regain', u'grind']
[u'mcguir', u'confirm', u'chief']
[u'mcguir', u'take', u'helm']
[u'median', u'strip', u'plan', u'creat', u'trader', u'concern']
[u'men', u'downhil', u'cours', u'win', u'earli', u'prais']
[u'metro', u'driver', u'strike']
[u'miller', u'say', u'barn', u'half', u'risk']
[u'miner', u'beat', u'gold', u'prospect']
[u'minist', u'extend', u'time', u'wild', u'river', u'legisl']
[u'disrupt', u'possibl', u'rail', u'worker', u'meet']
[u'fake', u'money', u'sunraysia']
[u'prevent', u'harvest', u'fire']
[u'volunt', u'seek', u'phone', u'counsel']
[u'motorist', u'fail', u'slow', u'school', u'zone']
[u'mourner', u'rememb', u'condello', u'rosari', u'servic']
[u'pay', u'tribut', u'slay', u'china']
[u'boss', u'wine', u'compani']
[u'cathol', u'priest', u'ordain']
[u'magistr', u'appoint']
[u'petrol', u'sniff', u'law', u'come', u'forc']
[u'name', u'honour', u'local', u'control']
[u'newspap', u'defend', u'offens', u'cartoon', u'public']
[u'norco', u'win', u'market', u'battl']
[u'norfolk', u'murder', u'victim', u'court', u'hear']
[u'northern', u'adelaid', u'hous', u'redevelop', u'plan']
[u'doctor', u'support', u'abort', u'drug']
[u'look', u'improv', u'electr', u'safeti', u'worker']
[u'nurs', u'home', u'plan', u'fund', u'fall', u'short']
[u'lose', u'rounder', u'windi', u'match']
[u'opposit', u'promis', u'rate', u'peg', u'review']
[u'opposit', u'want', u'desal', u'plant', u'fund', u'spend']
[u'panther', u'know', u'gower', u'stay']
[u'time', u'job', u'drop', u'forc', u'unemploy', u'rate']
[u'patient', u'support', u'group', u'angri', u'lawyer', u'patel']
[u'patrick', u'corp', u'consid', u'merger', u'linfox']
[u'pharmaci', u'encourag', u'methadon', u'client']
[u'pharmacist', u'seek', u'better', u'methadon', u'incent', u'packag']
[u'planetari', u'build', u'block', u'see', u'huge', u'star']
[u'plan', u'continu', u'break', u'water', u'suppli']
[u'polic', u'chief', u'confid', u'mareeba', u'offic', u'act']
[u'polic', u'hunt', u'attack']
[u'pont', u'puzzl', u'slow', u'ticket', u'sale']
[u'port', u'call', u'quit']
[u'port', u'hinchinbrook', u'legal', u'challeng', u'start']
[u'premier', u'announc', u'region', u'tenni', u'boost']
[u'prevent', u'health', u'trial', u'target', u'senior']
[u'probe', u'continu', u'fatal', u'crash']
[u'protest', u'kill', u'nepal', u'elect', u'relat', u'violenc']
[u'worker', u'continu', u'industri', u'action']
[u'rain', u'need', u'take', u'hold']
[u'recoveri', u'packag', u'announc', u'bushfir', u'victim']
[u'redfern', u'redevelop', u'plan', u'move']
[u'repair', u'rain', u'damag', u'highway']
[u'resid', u'group', u'back', u'wall', u'decis']
[u'sailor', u'target', u'barn', u'flatley']
[u'lawyer', u'seiz', u'research', u'infect']
[u'scheme', u'foster', u'region', u'businesswomen']
[u'schoolboy', u'search', u'prompt', u'warn', u'safeti', u'review']
[u'scott', u'stadler', u'share', u'lead', u'vine']
[u'search', u'begin', u'miss']
[u'senat', u'deliv', u'confid', u'vote', u'minist']
[u'senat', u'like', u'pass', u'abort', u'drug']
[u'senat', u'vote']
[u'senat', u'vote', u'remov', u'veto', u'minist']
[u'sentenc', u'postpon', u'abalon', u'poacher']
[u'problem', u'identifi', u'deport']
[u'settl', u'australia', u'lanka', u'measur', u'hussey']
[u'jump', u'mishap', u'fail', u'grind', u'team', u'itali']
[u'snowboard', u'prais', u'awesom', u'halfpip']
[u'socceroo', u'confirm', u'date', u'greec']
[u'south', u'east', u'feel', u'skill', u'labour', u'shortag', u'impact']
[u'stadler', u'take', u'lead', u'vine']
[u'stanhop', u'urg', u'speak', u'support', u'mental']
[u'strong', u'show', u'firefight', u'posit']
[u'student', u'pilot', u'kill', u'crash']
[u'studi', u'consid', u'horticultur', u'challeng']
[u'stutter', u'liverpool', u'lose', u'charlton']
[u'suspect', u'suicid', u'bomb', u'kill']
[u'sydney', u'cross', u'citi', u'tunnel', u'head', u'replac']
[u'sydney', u'teen', u'get', u'month', u'riot', u'violenc']
[u'tah', u'readi', u'red']
[u'taipan', u'sink', u'pirat', u'final', u'hop']
[u'tara', u'cri', u'ambul', u'offic']
[u'health', u'depart', u'accus', u'spin', u'doctor']
[u'teacher', u'jail', u'indec', u'deal', u'student']
[u'technolog', u'domin', u'adelaid', u'festiv', u'visual', u'art']
[u'teichmann', u'miss', u'cross', u'countri', u'open']
[u'telstra', u'announc', u'drop', u'half', u'year', u'profit']
[u'telstra', u'half', u'year', u'profit', u'plummet']
[u'thai', u'allow', u'weekend', u'protest']
[u'tiwi', u'mine', u'statement', u'releas']
[u'hurdl', u'implement', u'sniff', u'law']
[u'hype', u'abort', u'drug', u'nash']
[u'turin', u'flag', u'bearer', u'reveal', u'today']
[u'turkey', u'vow', u'legal', u'fifa', u'sanction']
[u'unchang', u'aust', u'team', u'final']
[u'union', u'warn', u'award', u'chang', u'impact']
[u'urban', u'score', u'grammi']
[u'market', u'recov']
[u'vanston', u'pressur', u'reveal', u'detaine', u'detail']
[u'govt', u'rchs', u'financ']
[u'woman', u'arrest', u'girl', u'disappear']
[u'wada', u'wari', u'genet', u'dope', u'turin', u'game']
[u'food', u'industri', u'urg', u'activ', u'oversea']
[u'govt', u'urg', u'scrap', u'second', u'desal', u'plant']
[u'wait', u'continu', u'braidwood', u'heritag', u'decis']
[u'wallabi', u'host', u'england', u'queen', u'birthday']
[u'rail', u'project', u'budget', u'deal', u'blow']
[u'maley', u'bridg', u'cost', u'upward']
[u'websit', u'allow', u'driver', u'compar', u'fuel', u'price']
[u'wollongong', u'council', u'withdraw', u'jail', u'bid']
[u'woman', u'convict', u'toddler', u'manslaught', u'walk', u'free']
[u'wool', u'boom', u'continu']
[u'youth', u'like', u'charg', u'polic', u'assault']
[u'zimbabw', u'cricket', u'strike']
[u'indigen', u'special', u'need', u'foster', u'care']
[u'rais', u'bash', u'victim', u'huxley']
[u'go', u'restor', u'catchment', u'region']
[u'abbott', u'urg', u'consid', u'abort', u'drug', u'vote']
[u'abetz', u'lennon', u'face', u'recherch', u'disput']
[u'liber', u'punish', u'leadership', u'confid']
[u'agreement', u'health', u'issu', u'reach', u'coag']
[u'airlin', u'maverick', u'freddi', u'laker', u'die']
[u'airport', u'fuel', u'line', u'green', u'light']
[u'airport', u'manag', u'learn', u'region', u'concern']
[u'alleg', u'victim', u'give', u'evid', u'child', u'trial']
[u'state', u'chief', u'head', u'south', u'east']
[u'ankl', u'knock', u'set', u'campbel', u'recoveri']
[u'armour', u'protect', u'polic', u'public']
[u'athlet', u'grace', u'phone', u'book', u'cover']
[u'aussi', u'leagu', u'convert', u'scotland', u'debut']
[u'aust', u'introduc', u'meat', u'label']
[u'author', u'struggl', u'control', u'locust', u'plagu']
[u'avalanch', u'hit', u'bather', u'japan', u'spring']
[u'azerbaijan', u'report', u'bird', u'outbreak', u'wild', u'bird']
[u'ban', u'boxer', u'threaten', u'court', u'case']
[u'barcaldin', u'get', u'bushfir', u'trail', u'fund']
[u'baton', u'go', u'underwat']
[u'bendigo', u'build', u'activ', u'rise']
[u'name', u'choi', u'stand', u'firm', u'vine']
[u'bishop', u'blast', u'condom', u'tree', u'trial']
[u'bjorndalen', u'quadrupl', u'titl', u'defenc']
[u'blanchett', u'back', u'cultur', u'ident', u'campaign']
[u'blaze', u'cut', u'roadhous', u'fuel']
[u'breastscreen', u'mobil', u'van', u'upgrad']
[u'brit', u'curl', u'gold', u'year', u'late']
[u'bureaucrat', u'come', u'premier', u'defenc']
[u'strike', u'ahead', u'despit', u'rise']
[u'welfar', u'payment', u'link', u'educ']
[u'canberra', u'bushfir', u'victim', u'sue', u'chief']
[u'carey', u'give', u'suspend', u'jail', u'term', u'brawl']
[u'carter', u'complet', u'award', u'clean', u'sweep']
[u'centrelink', u'swoop', u'grape', u'picker']
[u'cheney', u'authoris', u'aid', u'leak', u'case', u'report']
[u'child', u'murder', u'trial', u'hear', u'buri', u'bodi', u'evid']
[u'children', u'follow', u'parent', u'slip', u'slop', u'slap', u'lead']
[u'choi', u'lead', u'vine']
[u'citi', u'move', u'kerbsid', u'recycl']
[u'coach', u'challeng', u'boxer', u'game', u'snub']
[u'coag', u'meet', u'agre', u'health', u'train', u'fund']
[u'coal', u'facelift', u'reopen']
[u'coast', u'attempt', u'abduct', u'link']
[u'cobargo', u'greater', u'youth', u'focus']
[u'cole', u'myer', u'chief', u'quit', u'telstra', u'board']
[u'complex', u'hear', u'oper', u'western', u'australian']
[u'confer', u'look', u'till', u'farm', u'practis']
[u'connor', u'grudg', u'match']
[u'corros', u'blame', u'ship', u'fatal']
[u'council', u'forc', u'extra', u'sewerag', u'scheme']
[u'council', u'expect', u'bore', u'backlash']
[u'counter', u'terror', u'group', u'probe', u'explos', u'theft']
[u'court', u'hear', u'teen', u'admit', u'taxi', u'driver', u'slay']
[u'court', u'rule', u'land', u'owner', u'inelig', u'compo']
[u'croc', u'abney', u'sign', u'year', u'deal']
[u'debat', u'cartoon', u'publish', u'polaris']
[u'defector', u'launch', u'protest', u'chines', u'govt']
[u'dell', u'dell', u'say']
[u'donald', u'set', u'pebbl', u'beach', u'pace', u'record', u'score']
[u'doyl', u'backer', u'liber', u'presid']
[u'drink', u'driver', u'avoid', u'jail', u'school', u'crash']
[u'driver', u'charg', u'polic', u'station', u'crash']
[u'duck', u'focus', u'bird', u'research']
[u'die', u'woman', u'win', u'chanc', u'appeal', u'neglig']
[u'earli', u'start', u'commonwealth', u'game', u'secur']
[u'eddyston', u'leas', u'sign']
[u'leagu', u'player', u'includ', u'asian']
[u'arrest', u'sydney', u'riot']
[u'face', u'court', u'sydney', u'riot']
[u'exil', u'cambodian', u'opposit', u'leader', u'return']
[u'firm', u'beat', u'reduc', u'blood', u'lead', u'level']
[u'injur', u'wall', u'collaps']
[u'forc', u'expect', u'success', u'overnight']
[u'forc', u'fairytal', u'ruin', u'brumbi']
[u'fossett', u'cross', u'half', u'point', u'record', u'global']
[u'fossil', u'prehistor', u'mammal', u'mysteri']
[u'game', u'chairman', u'defend', u'cost', u'ceremoni']
[u'worker', u'stop', u'work', u'volum', u'evacu']
[u'gippsland', u'build', u'activ', u'fall']
[u'gold', u'coast', u'get', u'life', u'jail', u'murder', u'wife']
[u'goulburn', u'host', u'blue', u'festiv']
[u'govern', u'ask', u'match', u'pool', u'fund']
[u'govt', u'fund', u'seek', u'boost', u'portland', u'hospit']
[u'govt', u'offer', u'campus']
[u'govt', u'urg', u'boost', u'region', u'rail', u'servic']
[u'govt', u'urg', u'follow', u'inland', u'irrig', u'rule']
[u'govt', u'will', u'sunraysia', u'drought', u'effort']
[u'gunmen', u'kidnap', u'iraqi', u'cleric', u'baghdad', u'home']
[u'hama', u'invit', u'prompt', u'question']
[u'hera', u'appeal', u'year', u'dope']
[u'high', u'concentr', u'herbicid']
[u'higher', u'confer', u'cost', u'curb', u'council', u'attend']
[u'home', u'lend', u'continu', u'increas']
[u'hospit', u'report', u'skin', u'cancer', u'increas']
[u'hundr', u'farewel', u'slay', u'underworld', u'figur']
[u'hunter', u'leas', u'slow', u'go']
[u'hunt', u'tri', u'hand', u'half']
[u'hurrican', u'blow', u'away', u'blue', u'launch', u'super']
[u'word', u'heat', u'speedskat']
[u'iemma', u'apologis', u'swear', u'gaff']
[u'indian', u'caddi', u'beat', u'boss', u'matchplay', u'tournament']
[u'indigen', u'woman', u'win', u'medic', u'scholarship']
[u'inquiri', u'suggest', u'measur', u'limit', u'water', u'wast']
[u'isol', u'school', u'kid', u'receiv', u'govt', u'fund']
[u'ivori', u'coast', u'give', u'anti', u'protest']
[u'jet', u'look', u'shut', u'marin']
[u'jet', u'marin', u'scoreless', u'half', u'time']
[u'katsidi', u'pump', u'home', u'town', u'fight']
[u'kennelli', u'face', u'dack', u'stunt']
[u'kewel', u'lambast', u'stutter', u'red']
[u'koizumi', u'shelv', u'royal', u'success', u'chang']
[u'land', u'owner', u'warn', u'watch', u'threat']
[u'launceston', u'museum', u'best', u'flanneri']
[u'leader', u'expect', u'mental', u'health', u'approach']
[u'lettuc', u'pest', u'detect']
[u'local', u'skydiv', u'join', u'record', u'break', u'jump']
[u'mackay', u'driver', u'jail', u'fatal', u'crash']
[u'malaysian', u'urg', u'muslim', u'west', u'accept']
[u'accus', u'balkan', u'crime', u'fight']
[u'injur', u'fall', u'trench']
[u'marin', u'good', u'jet']
[u'mayor', u'warn', u'govt', u'oyster', u'grower', u'compo']
[u'mental', u'health', u'worker', u'welcom', u'coag', u'agreement']
[u'minist', u'call', u'xstrata', u'help', u'local', u'peopl']
[u'mix', u'see', u'aussi', u'share', u'fall']
[u'protect', u'seek', u'rock']
[u'pirat', u'coach', u'quit']
[u'woe', u'pirat', u'coach', u'quit']
[u'move', u'boost', u'lake', u'georg', u'health']
[u'ask', u'help', u'improv', u'mobil', u'health', u'servic']
[u'call', u'desal', u'plant', u'fund', u'divert']
[u'urg', u'caravan', u'park', u'administr']
[u'multipl', u'kiss', u'partner', u'spell', u'mening']
[u'navi', u'get', u'patrol', u'boat']
[u'netbal', u'relish', u'game', u'underdog', u'status']
[u'darwin', u'refineri', u'reduc', u'relianc']
[u'arrest', u'cronulla', u'riot', u'reveng', u'attack']
[u'govt', u'school', u'award', u'grant']
[u'clarifi', u'smoke', u'guidelin', u'pub', u'club']
[u'pub', u'smoke', u'free', u'month']
[u'communiti', u'get', u'croc', u'free', u'swim', u'hole']
[u'govt', u'join', u'industri', u'relat', u'challeng']
[u'opal', u'fuel', u'pump', u'unveil', u'alic']
[u'opal', u'skipper', u'fallon', u'announc', u'intern']
[u'opposit', u'push', u'bushfir', u'inquiri']
[u'patient', u'support', u'group', u'member', u'air', u'treatment', u'delay']
[u'petrol', u'sniff', u'rehab', u'clinic', u'build']
[u'steer', u'clear', u'judg', u'telstra', u'boss']
[u'polic', u'appeal', u'help', u'miss', u'babi']
[u'polic', u'investig', u'general', u'store', u'robberi']
[u'polic', u'promis', u'increas', u'presenc', u'race']
[u'polic', u'driver', u'inexperi', u'factor', u'fatal']
[u'polic', u'extra', u'power', u'game']
[u'possibl', u'board', u'school', u'melvill', u'island']
[u'power', u'poll', u'blame', u'blaze']
[u'practic', u'session', u'cancel', u'high', u'wind']
[u'public', u'ask', u'comment', u'maleni', u'plan']
[u'health', u'assur', u'treatment', u'delay', u'patel']
[u'rabbitoh', u'legend', u'target', u'takeov']
[u'racv', u'call', u'fuel', u'price', u'equal']
[u'ramanauska', u'suffer', u'cancer', u'setback']
[u'ramo', u'horta', u'shortlist', u'succeed', u'annan']
[u'reject', u'bulli', u'claim']
[u'region', u'bulk', u'bill', u'time', u'high', u'abbott']
[u'region', u'fourth', u'hors', u'race', u'code']
[u'research', u'control', u'grapevin', u'leaf', u'rust']
[u'research', u'consid', u'autism', u'dietari', u'treatment']
[u'resid', u'chang', u'problem']
[u'respect', u'aborigin', u'elder', u'die']
[u'roddick', u'brother', u'coach']
[u'rodeo', u'rider', u'look', u'ride']
[u'govt', u'urg', u'oppos', u'truck', u'rego', u'rise']
[u'liber', u'plan', u'speech', u'test', u'improv', u'literaci']
[u'union', u'slam', u'oversea', u'skill', u'sourc']
[u'schipper', u'edmiston', u'head', u'swim', u'team']
[u'school', u'shark', u'spot', u'kwinana', u'beach']
[u'seafood', u'test', u'continu', u'wake', u'spill']
[u'secur', u'crack', u'gabba', u'crowd']
[u'queensland', u'council', u'look', u'share', u'water']
[u'shiit', u'allianc', u'lead', u'iraq']
[u'snake', u'bite', u'put', u'woman', u'hospit']
[u'church', u'group', u'offer', u'condom', u'tree', u'support']
[u'spenc', u'promis', u'stop', u'roadspi']
[u'lankan', u'aussi']
[u'lanka', u'post', u'competit', u'total']
[u'lanka', u'snare', u'wicket', u'gilchrist']
[u'lanka', u'stun', u'aussi', u'final']
[u'star', u'middl', u'death']
[u'studi', u'uncov', u'marin', u'life', u'plant', u'speci']
[u'studi', u'search', u'link', u'lead', u'level']
[u'suspect', u'taliban', u'bomb', u'kill', u'afghan', u'soldier']
[u'tasmanian', u'ambul', u'offic', u'honour']
[u'opposit', u'promis', u'bypass', u'histor', u'villag']
[u'teacher', u'plead', u'guilti', u'have', u'student']
[u'teen', u'face', u'court', u'servic', u'station', u'hold']
[u'teen', u'girl', u'alleg', u'boast', u'murder', u'taxi']
[u'teen', u'condit', u'shoot']
[u'thrillseek', u'ditch', u'job', u'olymp', u'roller']
[u'time', u'run', u'submiss']
[u'tiwi', u'timber', u'set', u'sail', u'china']
[u'tour', u'start', u'london', u'bomb', u'anniversari']
[u'truck', u'industri', u'worri', u'rego', u'rise']
[u'injur', u'collis']
[u'jail', u'athlet', u'bash']
[u'court', u'acquit', u'foster', u'father', u'daughter', u'death']
[u'underground', u'water', u'discoveri', u'spark', u'sydney']
[u'underworld', u'figur', u'farewel']
[u'hop', u'budget', u'deliv', u'rural', u'school', u'fund']
[u'valu', u'rural', u'build', u'activ', u'rise']
[u'govt', u'urg', u'retain', u'snowi', u'hydro', u'share']
[u'govt', u'open', u'canberra', u'offic']
[u'want', u'arrest', u'canberra']
[u'politician', u'plead', u'guilti', u'corrupt']
[u'waratah', u'miss', u'houston']
[u'wasp', u'help', u'clean', u'blowi']
[u'watch', u'fisheri', u'imperson', u'polic', u'warn']
[u'teen', u'join', u'intern', u'tenni', u'tournament']
[u'water', u'author', u'revis', u'river', u'sewag', u'spill']
[u'water', u'qualiti', u'get', u'better', u'fish', u'kill']
[u'wildcat', u'march', u'final']
[u'woman', u'crash', u'shop', u'centr']
[u'woman', u'rethink', u'appeal', u'convict']
[u'rail', u'servic', u'stop', u'safeti', u'test']
[u'arrest', u'anti', u'live', u'sheep', u'export', u'protest']
[u'arrest', u'amid', u'live', u'export', u'protest']
[u'march', u'kabul', u'cartoon', u'protest']
[u'activist', u'prepar', u'live', u'sheep', u'export', u'blockad']
[u'adelaid', u'airport', u'get', u'clear']
[u'aftershock', u'jolt', u'northern', u'pakistan']
[u'armi', u'deni', u'faulti', u'gear', u'put', u'soldier', u'risk']
[u'aussi', u'howard', u'opt', u'stay', u'leicest']
[u'aussi', u'philosoph', u'loss', u'lanka']
[u'australia', u'switzerland', u'lock', u'davi']
[u'bird', u'mutat', u'away', u'dead', u'form']
[u'british', u'conductor', u'heart', u'attack', u'concert']
[u'brumbi', u'overpow', u'forc']
[u'camplin', u'hit', u'sayer']
[u'capit', u'book', u'final', u'berth']
[u'cardin', u'anoint', u'sick', u'peopl']
[u'china', u'ban', u'cigarett', u'factori']
[u'claim', u'darwin', u'real', u'estat', u'boom', u'wont', u'year']
[u'clash', u'continu', u'pakistan']
[u'classi', u'crusad', u'crush', u'highland']
[u'coag', u'wrap']
[u'complaint', u'defenc', u'equip', u'faulti']
[u'croatia', u'strong', u'start', u'davi', u'defenc']
[u'danish', u'editor', u'leav', u'holocaust', u'cartoon']
[u'doctor', u'warn', u'emerg', u'depart', u'crisi']
[u'egypt', u'grab', u'record', u'fifth', u'nation', u'crown']
[u'elliott', u'ponder', u'futur']
[u'farmer', u'get', u'shock', u'brumbi']
[u'faulti', u'defenc', u'equip', u'claim', u'mislead']
[u'ferguson', u'extra', u'match']
[u'financ', u'broker', u'victim', u'demand', u'justic']
[u'home', u'buyer', u'return', u'canberra', u'market']
[u'forc', u'fairytal', u'ruin', u'brumbi']
[u'line', u'troop', u'defenc', u'equip', u'fault']
[u'govt', u'consid', u'give', u'navi', u'vessel', u'timor']
[u'govt', u'ignor', u'imposs', u'asi', u'agent']
[u'govt', u'opposit', u'rural', u'cutback']
[u'greec', u'report', u'second', u'case', u'bird']
[u'heavi', u'rain', u'hit', u'tokelau', u'referendum', u'prepar']
[u'heighington', u'eye', u'round', u'comeback']
[u'hous', u'price', u'forecast', u'rise']
[u'india', u'level', u'seri', u'comfort']
[u'iranian', u'leader', u'defend', u'nuclear', u'program']
[u'iraqi', u'armi', u'spokesman', u'shoot', u'dead', u'basra']
[u'island', u'treasur', u'wash', u'shoe', u'cargo']
[u'israel', u'protest', u'russia', u'hama', u'invit']
[u'jackson', u'ecstat', u'capitalss']
[u'japan', u'whale', u'meat', u'food', u'report']
[u'kersten', u'cruis', u'gold', u'adelaid']
[u'kidnapp', u'releas', u'egyptian', u'diplomat', u'unharm']
[u'kidnapp', u'deadlin', u'abduct', u'journalist']
[u'marbl', u'marathon', u'hop', u'hollow', u'chariti', u'boost']
[u'mental', u'health', u'council', u'welcom', u'nation', u'action', u'plan']
[u'mexican', u'artist', u'juan', u'soriano', u'dead']
[u'minist', u'angri', u'bail', u'sydney', u'riot', u'accus']
[u'minist', u'dismiss', u'wheat', u'sale', u'rumour', u'grain', u'trader']
[u'miss', u'babi']
[u'illeg', u'fishermen', u'arrest', u'boat', u'destroy']
[u'murder', u'spark', u'communiti', u'unrest', u'tiwi', u'island']
[u'hous', u'growth', u'forecast', u'eas']
[u'opposit', u'call', u'iemma', u'renegoti', u'tunnel']
[u'opposit', u'talk', u'coag', u'health', u'boost']
[u'polic', u'guard', u'ship', u'amid', u'live', u'export', u'protest']
[u'polic', u'minist', u'appeal', u'bail', u'decis']
[u'port', u'arthur', u'remembr', u'servic', u'plan']
[u'prison', u'escape', u'arrest', u'kilda']
[u'report', u'clear', u'steel', u'plant', u'health', u'hazard']
[u'ross', u'river', u'virus', u'case', u'rise']
[u'produc', u'threaten', u'shadow', u'elect']
[u'scienc', u'threat', u'faith', u'pope', u'say']
[u'shanghai', u'sell', u'tiger', u'bone', u'wine']
[u'sharon', u'condit', u'worsen']
[u'south', u'africa', u'boy', u'slump', u'open', u'loss']
[u'lanka', u'strong', u'australia']
[u'stadler', u'lead', u'classic', u'green', u'chase']
[u'stanhop', u'bid', u'nation', u'medic', u'centr']
[u'taipan', u'post', u'thrill', u'victori']
[u'opposit', u'hound', u'lennon', u'council', u'contract']
[u'review', u'adhd', u'drug']
[u'suspend', u'blood', u'count']
[u'lotteri', u'winner', u'jail', u'brawl']
[u'medic', u'place', u'boost', u'criticis']
[u'trade', u'deficit', u'hit', u'record', u'high']
[u'valley', u'king', u'tomb', u'uncov']
[u'vaughan', u'brand', u'india', u'tour', u'toughest']
[u'wall', u'street', u'lift', u'crude', u'retreat']
[u'waratah', u'prevail', u'gritti', u'clash']
[u'water', u'skier', u'die', u'race', u'accid']
[u'weir', u'move', u'clear', u'pebbl', u'beach']
[u'bounc', u'punter']
[u'wenger', u'reject', u'england']
[u'whitak', u'vow', u'ugli']
[u'white', u'hous', u'cherri', u'pick', u'iraq', u'intellig']
[u'white', u'hous', u'know', u'orlean', u'flood']
[u'winter', u'olymp', u'offici', u'open']
[u'woman', u'charg', u'smuggl', u'human', u'head']
[u'woman', u'die', u'suspect', u'bird']
[u'rail', u'servic', u'hold', u'derail']
[u'sudanes', u'militari', u'plane', u'crash']
[u'shower', u'blow', u'away', u'allergi', u'hotel', u'guest']
[u'american', u'game', u'benchmark']
[u'angri', u'motorist', u'protest', u'russian', u'traffic', u'rule']
[u'ankl', u'injuri', u'keep', u'shoaib', u'seri']
[u'anti', u'live', u'export', u'protest', u'accus', u'polic', u'rough']
[u'appeal', u'beatti', u'speed', u'doctor', u'appoint']
[u'arthur', u'hanley', u'aussi', u'seat']
[u'aussi', u'control', u'second', u'final']
[u'aussi', u'rebound', u'second', u'final']
[u'australian', u'troop', u'stay', u'iraq']
[u'author', u'suspect', u'arson', u'melbourn', u'school']
[u'lobbi', u'beazley', u'warn']
[u'bali', u'await', u'verdict']
[u'bali', u'learn', u'fate', u'week']
[u'boro', u'flog', u'complac', u'chelsea']
[u'buchanan', u'brace', u'consequ', u'lose']
[u'bunni', u'face', u'extinct', u'crow', u'tell', u'fan']
[u'bushfir', u'threaten', u'home', u'central']
[u'canada', u'crush', u'outclass', u'itali']
[u'canada', u'heil', u'soar', u'gold']
[u'central', u'bushfir', u'control']
[u'chievo', u'push', u'europ']
[u'danish', u'staff', u'leav', u'indonesia', u'iran']
[u'davi', u'holder', u'croatia', u'advanc']
[u'death', u'toll', u'china', u'accid', u'rise']
[u'defenc', u'audit', u'need', u'restor', u'public', u'confid']
[u'dell', u'disappoint', u'homecom', u'recept']
[u'denmark', u'close', u'embassi']
[u'denmark', u'withdraw', u'hasti', u'indonesia', u'say']
[u'editor', u'face', u'trial', u'moham', u'cartoon']
[u'fifth', u'taxi', u'driver', u'assault', u'sydney']
[u'fossett', u'set', u'record']
[u'fossett', u'set', u'record', u'long', u'distanc', u'flight']
[u'franc', u'surviv', u'irish', u'scare', u'england', u'prevail']
[u'fund', u'inject', u'insuffici', u'help', u'disabl']
[u'warn', u'volatil', u'energi', u'price', u'threat', u'global']
[u'german', u'grei', u'take', u'gold', u'game']
[u'germani', u'talk', u'free', u'guantanamo', u'detaine']
[u'girl', u'admit', u'invent', u'abduct', u'attempt']
[u'govt', u'accus', u'fail', u'clean', u'howard', u'spring']
[u'govt', u'push', u'tunnel', u'toll']
[u'govt', u'seek', u'execut', u'help', u'manag']
[u'govt', u'address', u'taxi', u'driver', u'secur']
[u'green', u'field', u'candid', u'elector']
[u'hamilton', u'uphold']
[u'heartach', u'euphoria', u'sweep', u'game']
[u'heartbroken', u'sachenbach', u'lose', u'appeal']
[u'hedrick', u'win', u'gold']
[u'henriqu', u'fire', u'australia', u'youth', u'world']
[u'hettich', u'take', u'individu', u'gold', u'nordic']
[u'hugh', u'standbi', u'kwan', u'consid', u'quit']
[u'hungarian', u'appear', u'internet', u'hugh', u'grant']
[u'tire', u'polit', u'life', u'howard', u'say']
[u'illeg', u'fishermen', u'face', u'darwin']
[u'intellig', u'agenc', u'unawar', u'bribe']
[u'jaafari', u'select', u'iraqi', u'candid']
[u'jackson', u'skipper', u'opal']
[u'japan', u'china', u'wrap', u'high', u'level', u'talk', u'strain']
[u'japanes', u'women', u'treat', u'valentin']
[u'kersten', u'win', u'controversi', u'keirin']
[u'kidnap', u'contractor', u'doctor', u'kill', u'iraq']
[u'knee', u'injuri', u'wipe', u'mackay']
[u'kwan', u'pull', u'olymp']
[u'liber', u'mail', u'seek', u'donat', u'labor']
[u'lund', u'vow', u'right', u'wrong']
[u'die', u'brawl']
[u'hunt', u'shoot', u'shepparton']
[u'montgomeri', u'lead', u'shark', u'victori']
[u'drug', u'pete', u'doherti', u'say']
[u'murder', u'rate']
[u'report', u'murder', u'week']
[u'ohern', u'shelv']
[u'opposit', u'back', u'indigen', u'polic', u'train', u'plan']
[u'photo', u'show', u'bush', u'disgrac', u'lobbyist']
[u'photo', u'show', u'bush', u'disgrac', u'lobbyist']
[u'criticis', u'australian', u'climat', u'chang', u'stanc']
[u'polic', u'head', u'tiwi', u'island', u'probe', u'murder']
[u'protest', u'live', u'export', u'get', u'rough']
[u'ranatunga', u'urg', u'murali', u'play', u'australia']
[u'rann', u'pledg', u'shame', u'polic', u'power']
[u'research', u'trial', u'target', u'grapevin', u'leaf', u'rust']
[u'risdon', u'prison', u'condit', u'deplor', u'expert', u'say']
[u'robinho', u'raul', u'bravo', u'help', u'real', u'bounc']
[u'rural', u'polic', u'forc', u'lend', u'weapon', u'game']
[u'saddam', u'plan', u'hunger', u'strike', u'lawyer']
[u'scuba', u'diver', u'bodi', u'recov']
[u'secur', u'guard', u'shoot', u'outsid', u'sydney', u'nightclub']
[u'sharon', u'stabl', u'condit', u'surgeri']
[u'sharon', u'immedi', u'danger', u'surgeri']
[u'sharon', u'undergo', u'surgeri']
[u'smigun', u'take', u'surpris', u'gold', u'women', u'cross', u'countri']
[u'stadler', u'claim', u'classic', u'titl']
[u'stefaniak', u'reject', u'talk', u'leadership', u'offer']
[u'stormer', u'better', u'insipid', u'cat']
[u'symond', u'pont', u'aussi']
[u'brace', u'metro', u'strike']
[u'test', u'confirm', u'indonesian', u'bird', u'death']
[u'thousand', u'evacu', u'philippin', u'flood']
[u'ticket', u'sale', u'near', u'target', u'turin']
[u'tokelau', u'hold', u'referendum', u'self', u'govern']
[u'troop', u'stay', u'longer', u'iraq']
[u'investig', u'video', u'rogu', u'troop', u'abus']
[u'union', u'want', u'live', u'sheep', u'export']
[u'unit', u'sydney', u'share', u'honour']
[u'venezuela', u'arrest', u'colombian', u'drug', u'lord']
[u'waratah', u'plucki', u'red']
[u'warn', u'valentin', u'texter']
[u'weir', u'join', u'oberhols', u'atop', u'pebbl', u'leaderboard']
[u'workcov', u'launch', u'electr', u'safeti', u'blitz']
[u'zawahiri', u'relat', u'kill', u'strike']
[u'accc', u'assess', u'wattyl', u'takeov']
[u'accus', u'drug', u'ring', u'recruit', u'releas', u'bail']
[u'festiv', u'goer', u'flock', u'multicultur', u'event']
[u'aim', u'solut', u'manag', u'health']
[u'call', u'greater', u'rural', u'focus']
[u'analogu', u'switch', u'delay', u'recommend']
[u'anim', u'liber', u'boost', u'live', u'sheep', u'export']
[u'asylum', u'seeker', u'medic', u'bungl', u'cost', u'dept']
[u'aussi', u'pair', u'halfpip', u'glori']
[u'author', u'investig', u'seal', u'kill']
[u'name', u'defenc', u'report', u'labor', u'say']
[u'abandon', u'claim', u'peta']
[u'bali', u'accus', u'arriv', u'sentenc']
[u'bali', u'accus', u'famili', u'speak', u'anger']
[u'bali', u'court', u'hand', u'life', u'sentenc', u'lawrenc']
[u'battl', u'sydney', u'theatr', u'compani', u'buck', u'nation']
[u'beatti', u'slip', u'tongu', u'point', u'arrog']
[u'intent', u'collect', u'cash', u'donat', u'inquiri']
[u'crowd', u'get', u'jazz', u'festiv']
[u'blue', u'lose', u'star', u'warrior', u'clash']
[u'hurt', u'fall', u'plung']
[u'bracken', u'doesnt', u'toss', u'coin']
[u'brendan', u'get', u'tough', u'driver']
[u'busi', u'weekend', u'local', u'lifeguard']
[u'cacer', u'join', u'victori']
[u'cattl', u'tail', u'tag', u'phase']
[u'join', u'joint', u'ventur']
[u'census', u'helper', u'seek', u'canberra']
[u'chariti', u'reject', u'misus', u'feder', u'grant', u'fund']
[u'cheney', u'shoot', u'hunt', u'accid']
[u'chines', u'domin', u'fina', u'dive', u'grand', u'prix']
[u'committe', u'urg', u'probe', u'govt', u'contract']
[u'cosgrov', u'redback']
[u'council', u'mind', u'maintain', u'develop', u'balanc']
[u'council', u'consid', u'chang', u'airport', u'charg']
[u'council', u'refund', u'develop', u'fee']
[u'cowboy', u'beat', u'young', u'gun']
[u'crean', u'confid', u'local', u'support', u'secur']
[u'croc', u'game']
[u'csiro', u'scientist', u'level', u'claim', u'govt']
[u'danish', u'school', u'cartoon', u'teacher']
[u'darl', u'down', u'corn', u'bring', u'beer']
[u'dead', u'piero', u'keep', u'juve', u'cours', u'titl']
[u'death', u'shock', u'water', u'communiti']
[u'decis', u'loom', u'train', u'servic']
[u'democrat', u'scientist', u'claim', u'govt', u'stifl']
[u'denton', u'dent', u'tiger', u'hop', u'total']
[u'dutch', u'teen', u'win', u'speed', u'skate', u'gold']
[u'eastman', u'lawyer', u'plan', u'feder', u'court', u'applic']
[u'educ', u'campaign', u'aim', u'boost', u'consum']
[u'england', u'arriv', u'india', u'test', u'seri']
[u'escape', u'face', u'berri', u'court']
[u'extra', u'polic', u'send', u'wadey', u'offic', u'target']
[u'fair', u'rat', u'investig']
[u'farmer', u'reject', u'sheep', u'export', u'cruelti', u'claim']
[u'farmer', u'worri', u'possibl', u'chemic', u'wast', u'plant']
[u'father', u'expect', u'evid', u'child', u'murder']
[u'figur', u'highlight', u'south', u'west', u'bulk', u'bill', u'rat']
[u'fish', u'boat', u'catch', u'protect', u'reef', u'zone']
[u'flirt', u'style', u'dust', u'valentin']
[u'fli', u'tomato', u'white', u'cook', u'men', u'half', u'pipe', u'gold']
[u'livedoor', u'boss', u'charg']
[u'minist', u'fight', u'lip', u'glensid']
[u'forum', u'focus', u'doctor', u'shortag']
[u'wallabi', u'game', u'seven', u'team']
[u'fund', u'crime', u'fight', u'plan']
[u'plant', u'employe', u'work']
[u'gold', u'coast', u'schooli', u'lesson', u'state', u'wide']
[u'golf', u'club', u'flag', u'develop']
[u'govt', u'block', u'question']
[u'govt', u'block', u'senat', u'estim', u'inquiri']
[u'govt', u'keep', u'quiet', u'polic', u'boost', u'detail']
[u'govt', u'solv', u'drunken', u'problem', u'opposit']
[u'govt', u'question', u'opposit', u'commit', u'problem']
[u'govt', u'recognis', u'rwanda', u'conflict', u'veteran']
[u'govt', u'say', u'desal', u'plant', u'look', u'like', u'good', u'option']
[u'govt', u'seek', u'restor', u'iraq', u'wheat', u'trade']
[u'govt', u'region', u'cabinet', u'meet']
[u'govt', u'spend']
[u'govt', u'urg', u'offer', u'home', u'owner', u'help']
[u'govt', u'vote', u'censur', u'motion']
[u'grandma', u'luge', u'olymp', u'crash']
[u'grass', u'expect', u'burn', u'day']
[u'greek', u'archaeologist', u'hail', u'tomb', u'discoveri']
[u'gregan', u'face', u'renew', u'threat', u'test', u'spot']
[u'grong', u'grong', u'robberi', u'prompt', u'warn', u'alert']
[u'grower', u'surpris', u'iraqi', u'suspens']
[u'guccion', u'lift', u'australia', u'davi', u'victori']
[u'halliburton', u'reject', u'worker', u'exploit', u'claim']
[u'hama', u'leader', u'outlin', u'condit', u'peac']
[u'health', u'servic', u'staff', u'come', u'park', u'rescu']
[u'high', u'hop', u'road', u'fund']
[u'hillsong', u'reject', u'indigen', u'grant', u'spend', u'claim']
[u'expect', u'seek', u'counsel']
[u'howard', u'gag', u'public', u'servant', u'discuss']
[u'hundr', u'sing', u'blue', u'countri', u'festiv']
[u'immigr', u'pursu', u'vilif', u'claim']
[u'indonesia', u'say', u'confirm', u'bird', u'case']
[u'injur', u'sehwag', u'harbhajan', u'return', u'home']
[u'iran', u'begin', u'uranium', u'enrich']
[u'iraq', u'suspend', u'busi']
[u'italian', u'compar', u'christ']
[u'japanes', u'compani', u'raid', u'libya', u'nuclear', u'link']
[u'jaw', u'author', u'die']
[u'jetstar', u'talk', u'darwin', u'rout']
[u'katsidi', u'prove', u'good', u'colombian']
[u'kelli', u'want', u'status', u'abort', u'drug']
[u'lack', u'highway', u'phone', u'coverag', u'risk', u'live']
[u'larg', u'forc', u'battl', u'near', u'rylston']
[u'launceston', u'council', u'hunt']
[u'lawrenc', u'rush', u'give', u'life', u'sentenc']
[u'lawrenc', u'rush', u'appeal', u'life', u'sentenc']
[u'lennon', u'contempt', u'handl', u'govt', u'contract']
[u'lesson', u'learn', u'emerg', u'airport', u'drill']
[u'liber', u'want', u'dunn', u'frontbench']
[u'littl', u'chanc', u'financ', u'scandal', u'victim']
[u'luge', u'hero', u'claim', u'itali', u'gold']
[u'mackay', u'hop', u'late', u'season', u'return']
[u'manag', u'appoint', u'cane', u'toad', u'fight']
[u'arrest', u'bali', u'drug', u'ring']
[u'charg', u'fatal', u'stab']
[u'charg', u'offic', u'shoot']
[u'lose', u'fight']
[u'question', u'shoot']
[u'man', u'skeleton', u'sydney', u'unit']
[u'court', u'child', u'charg']
[u'martin', u'highlight', u'glow', u'econom', u'report']
[u'massiv', u'contain', u'wall', u'build']
[u'mayor', u'make', u'avail', u'talk', u'council']
[u'mayor', u'worri', u'miss', u'pipelin', u'benefit']
[u'mcgrath', u'doubt', u'south', u'africa', u'dayer']
[u'look', u'year', u'gold', u'product']
[u'minist', u'approach', u'petrol', u'sniff', u'naiv']
[u'minist', u'urg', u'council', u'work', u'save']
[u'miss', u'girl', u'mother', u'refus', u'evid']
[u'moham', u'graffiti', u'spark', u'west', u'bank', u'clash']
[u'mokbel', u'drug', u'trial', u'hear', u'tap', u'boast']
[u'moondarra', u'clean', u'continu']
[u'consult', u'plan', u'jail', u'debat']
[u'perman', u'seek', u'kimberley']
[u'recommend', u'emerg', u'lockhart', u'river']
[u'motorcyclist', u'die', u'head', u'crash']
[u'amend']
[u'rais', u'islamis', u'fear', u'debat']
[u'rule', u'splash', u'pool']
[u'seek', u'public', u'feedback', u'abort', u'drug']
[u'navi', u'catch', u'alleg', u'illeg', u'fish', u'mother', u'ship']
[u'nazi', u'hunter', u'meet', u'famili', u'accus', u'crimin']
[u'nevill', u'want', u'abbott', u'retain', u'abort', u'drug']
[u'newcastl', u'featur', u'pedestrian', u'road', u'toll', u'studi']
[u'group', u'take', u'student', u'associ', u'servic']
[u'north', u'troop', u'beat', u'quak', u'relief', u'effort']
[u'drought', u'situat', u'improv', u'minist']
[u'govt', u'sydney', u'harbour', u'fish', u'licenc']
[u'nude', u'anti', u'log', u'protest', u'target', u'parliament']
[u'oberhols', u'secur', u'maiden', u'tour', u'victori']
[u'onslow', u'look', u'seced', u'ashburton', u'shire']
[u'opposit', u'maintain', u'campaign', u'higher', u'park']
[u'opposit', u'step', u'pressur', u'iraq', u'troop']
[u'organis', u'smile', u'ticket', u'sale', u'target']
[u'pair', u'charg']
[u'pair', u'surviv', u'plane', u'crash']
[u'plan', u'singapor', u'worker', u'tackl', u'deckhand']
[u'polic', u'hunt', u'gang', u'vicious', u'park', u'assault']
[u'polic', u'hunt', u'thief', u'assault']
[u'polic', u'offic', u'shoot', u'melbourn']
[u'polic', u'pounc', u'speed', u'driver']
[u'polic', u'interview', u'pair', u'shoot']
[u'power', u'privatis', u'good', u'region', u'report']
[u'power', u'return', u'sydney']
[u'prostat', u'vaccin', u'trial', u'promis', u'hope', u'suffer']
[u'public', u'urg', u'help', u'stop', u'dengu', u'spread']
[u'push', u'gold', u'coast', u'time', u'suprem']
[u'qualifi', u'support', u'skipper', u'safeti', u'train']
[u'question', u'rais', u'leas', u'task', u'forc']
[u'rann', u'announc', u'month', u'defenc', u'contract']
[u'rann', u'urg', u'offici', u'start', u'elect']
[u'readi', u'respond', u'escal', u'inflat']
[u'real', u'estat', u'agenc', u'shut', u'public', u'hous', u'scam']
[u'relax', u'alcohol', u'trade', u'law', u'stretch', u'polic']
[u'resourc', u'sector', u'dive', u'hit', u'market']
[u'seek', u'apolog', u'airport', u'claim']
[u'rich', u'continu', u'search', u'enrich']
[u'river', u'parad', u'game', u'crowd']
[u'rockhampton', u'face', u'court', u'child']
[u'saddam', u'launch', u'courtroom', u'tirad', u'trial', u'resum']
[u'govt', u'probe', u'claim', u'indonesian', u'worker']
[u'salvo', u'forc', u'repay', u'seeker', u'fund']
[u'scientist', u'edg', u'closer', u'malaria', u'vaccin']
[u'king', u'investig', u'seek', u'chang']
[u'search', u'driver', u'lake', u'mishap']
[u'sheep', u'protest', u'lodg', u'polic', u'complaint']
[u'short', u'track', u'gold', u'south', u'korea']
[u'jump', u'provid', u'olymp', u'upset']
[u'skill', u'worker', u'bonus', u'industri', u'commiss']
[u'snake', u'bite', u'victim', u'hospit']
[u'snowstorm', u'hammer', u'north', u'east']
[u'sonni', u'succumb', u'injuri']
[u'south', u'west', u'locust', u'spray', u'stop']
[u'sprenger', u'replac', u'hackett', u'short', u'cours', u'titl']
[u'strike', u'hold', u'driver', u'consid', u'offer']
[u'sunderland', u'hold', u'spur', u'citi', u'beat', u'charlton']
[u'super', u'competit', u'follow', u'script']
[u'survey', u'find', u'wealth', u'doesnt', u'equal', u'well']
[u'swimmer', u'warn', u'sunshin', u'coast', u'shark', u'bite']
[u'tasmanian', u'fossil', u'answer', u'evolutionari']
[u'teen', u'charg', u'alic', u'assault']
[u'teen', u'refus', u'bail', u'assault', u'case']
[u'telstra', u'chief', u'accus', u'snub', u'senat', u'inquiri']
[u'telstra', u'grill', u'network', u'upgrad', u'turn']
[u'tendulkar', u'centuri', u'power', u'india', u'wicket']
[u'tiger', u'lose', u'dawson', u'earli']
[u'tongan', u'princ', u'resign']
[u'train', u'derail', u'investig']
[u'tweed', u'council', u'plan', u'councillor', u'number']
[u'bali', u'accus', u'await', u'verdict']
[u'press', u'condemn', u'thuggish', u'british', u'troop']
[u'unfanc', u'russian', u'take', u'cross', u'countri', u'pursuit', u'gold']
[u'union', u'fear', u'council', u'apprenticeship', u'scheme']
[u'union', u'concern', u'oversea', u'labour']
[u'complet', u'davi', u'pictur']
[u'util', u'consid', u'compo', u'sydney', u'blackout']
[u'valencia', u'pressur', u'barca']
[u'vale', u'rais', u'islamis', u'debat']
[u'vanston', u'upbeat', u'immigr', u'dept', u'chang']
[u'school', u'benefit', u'hydro', u'sale']
[u'wale', u'bounc', u'cardiff']
[u'walk', u'dedic', u'robert', u'menzi', u'offici']
[u'resid', u'voic', u'concern', u'river', u'cross']
[u'weather', u'impact', u'grape', u'vintag']
[u'wiesenth', u'director', u'meet', u'crime']
[u'wine', u'industri', u'lobbi', u'road', u'boost']
[u'winemak', u'garrett', u'trial', u'delay']
[u'woman', u'die', u'gore', u'bull']
[u'work', u'begin', u'wilpinjong']
[u'abar', u'predict', u'boost', u'summer', u'crop']
[u'aborigin', u'paint', u'steal', u'ahead', u'york']
[u'adelaid', u'charg', u'exposur', u'incid']
[u'weigh', u'commiss', u'investig', u'judg']
[u'akhtar', u'lanka', u'tour']
[u'annan', u'warn', u'iran', u'nuclear', u'escal']
[u'artist', u'record', u'tamborin', u'natur', u'heritag']
[u'artist', u'unveil', u'valentin', u'tribut', u'convict']
[u'asio', u'chief', u'refus', u'answer', u'question']
[u'asthmat', u'adult', u'risk', u'ill', u'studi']
[u'aussi', u'internet', u'tycoon', u'hop', u'olymp', u'gold']
[u'aussi', u'olymp', u'debut']
[u'australia', u'seri']
[u'aust', u'spend', u'gambl', u'say']
[u'drop', u'plan', u'boost', u'director']
[u'lose', u'wheat', u'trade', u'monopoli']
[u'scare', u'earn', u'suspend', u'jail', u'term']
[u'bacteria', u'thrive', u'shop', u'trolley']
[u'bali', u'accus', u'arriv', u'court']
[u'bali', u'mastermind', u'sentenc', u'death']
[u'bali', u'mastermind', u'face', u'fire', u'squad']
[u'beck', u'hand', u'year', u'dope']
[u'bendigo', u'bank', u'boost', u'half', u'year', u'profit']
[u'bird', u'kill', u'condition', u'go', u'sale']
[u'birthday', u'cheer', u'pamper', u'pet']
[u'boddington', u'sale', u'point', u'expans', u'approv']
[u'brack', u'unfaz', u'grocon', u'plan']
[u'brazilian', u'bobsledd', u'fail', u'dope', u'test']
[u'brumbi', u'offer', u'snowi', u'flow', u'assur']
[u'bull', u'gore', u'properti']
[u'bushfir', u'cultur', u'impact', u'scrutini']
[u'bush', u'tomato', u'prospect', u'nutti', u'expert']
[u'region', u'benefit', u'snowi', u'hydro']
[u'recruit', u'polic', u'region']
[u'campbel', u'pegg', u'sit', u'luge', u'mayhem']
[u'casa', u'ask', u'review', u'black', u'mainten']
[u'extend', u'share', u'offer']
[u'chan', u'sukumaran', u'sentenc', u'death']
[u'cheney', u'unlicens', u'hunt', u'mishap']
[u'chines', u'diver', u'domin', u'grand', u'prix', u'meet']
[u'climat', u'chang', u'boost', u'extrem', u'fire', u'report']
[u'club', u'urg', u'accept', u'poki', u'deal']
[u'coron', u'rule', u'actor', u'penn', u'death', u'accident']
[u'council', u'await', u'report', u'make', u'wivenho']
[u'council', u'eas', u'currumbin', u'financi', u'burden']
[u'council', u'green', u'light', u'age', u'care', u'centr']
[u'council', u'green', u'light', u'retail', u'complex']
[u'council', u'oppos', u'youth', u'curfew', u'mayor']
[u'council', u'staff', u'accept', u'deal']
[u'council', u'urg', u'action', u'esplanad', u'safeti']
[u'court', u'find', u'newspap', u'defam', u'habib']
[u'crowd', u'behaviour', u'prompt', u'plan']
[u'custom', u'face', u'audit', u'cargo', u'track', u'softwar']
[u'cyclist', u'charg', u'drink', u'drive']
[u'cyclon', u'katrina', u'evacue', u'face', u'evict', u'hotel']
[u'democrat', u'join', u'call', u'live', u'export']
[u'distant', u'lover', u'passion', u'star']
[u'doctor', u'face', u'court', u'charg']
[u'doubl', u'gold', u'sweden']
[u'doubl', u'gold', u'russia', u'bruis']
[u'dragon', u'rabbitoh', u'size', u'chariti', u'shield']
[u'driver', u'die', u'crash']
[u'drought', u'farmer', u'help', u'hand']
[u'echuca', u'moama', u'prepar', u'festiv', u'goer']
[u'employe', u'slow', u'super', u'chang', u'offer']
[u'prepar', u'inquiri', u'camp', u'claim']
[u'expert', u'investig', u'school', u'stench']
[u'fals', u'abduct', u'report', u'prompt', u'lawyer', u'warn']
[u'famili', u'harrop', u'withdraw', u'game', u'team']
[u'fava', u'fall', u'foul', u'forc', u'zero', u'toler', u'polici']
[u'fava', u'embarrass', u'ax']
[u'fava', u'embarrass', u'drop']
[u'feder', u'govt', u'ask', u'stop', u'sandon', u'work']
[u'govt', u'accus', u'block', u'wage', u'case']
[u'firefight', u'hope', u'contain', u'blaze', u'near', u'rylston']
[u'fisher', u'make', u'chang', u'bull']
[u'fish', u'kill', u'threat', u'unavoid']
[u'flood', u'affect', u'shire', u'get', u'food', u'drop']
[u'nepales', u'releas', u'jail']
[u'foster', u'half', u'year', u'profit', u'plung']
[u'futur', u'clearer', u'bowl', u'club']
[u'drill', u'move', u'yang']
[u'gilchrist', u'katich', u'secur', u'seri']
[u'gilli', u'power', u'australia', u'victori']
[u'gold', u'coast', u'council', u'consid', u'desal', u'plant']
[u'govt', u'ask', u'maintain', u'blood', u'lead', u'level', u'test', u'fund']
[u'govt', u'budget', u'urg', u'deliv', u'bush']
[u'govt', u'fail', u'address', u'mental', u'health', u'shortfal']
[u'govt', u'plan', u'offend', u'drive', u'taxi']
[u'govt', u'urg', u'adopt', u'religi', u'leader', u'cultur']
[u'govt', u'urg', u'follow', u'river']
[u'grain', u'grower', u'worri', u'iraq', u'decis', u'impact']
[u'grandstand', u'speak', u'andrew', u'symond', u'moodi']
[u'greenough', u'flood', u'close', u'cross']
[u'gretzki', u'turn', u'focus', u'gambl', u'game']
[u'group', u'urg', u'learn', u'climat', u'chang']
[u'hardi', u'offer', u'get', u'substanti', u'support']
[u'hewitt', u'expect', u'belarus']
[u'hiddink', u'link', u'russian']
[u'highlight', u'match', u'triangular']
[u'howard', u'defend', u'warn', u'travel']
[u'hydro', u'sale', u'benefit', u'snowi', u'river', u'health']
[u'illeg', u'fish', u'task', u'forc', u'head', u'kimberley']
[u'indonesian', u'milit', u'sentenc', u'death']
[u'injur', u'bushwalk', u'hospit']
[u'investig', u'launch', u'super', u'crash']
[u'sale', u'near', u'complet']
[u'iran', u'confirm', u'uranium', u'enrich', u'resumpt']
[u'irrig', u'concern', u'water', u'right', u'follow']
[u'japan', u'rais', u'beef', u'object']
[u'jet', u'keeper', u'cite', u'violent', u'conduct', u'charg']
[u'judg', u'rule', u'mistrial', u'danger', u'drive', u'case']
[u'judg', u'deliv', u'verdict', u'bali', u'accus']
[u'katrina', u'respons', u'consid', u'nation', u'failur']
[u'katter', u'oppos', u'abort', u'drug']
[u'king', u'highway', u'safeti', u'work', u'begin']
[u'lade', u'provid', u'elect', u'theft', u'clue']
[u'leunig', u'shock', u'hoax', u'cartoon', u'submiss']
[u'local', u'govt', u'urg', u'push', u'feral', u'control']
[u'local', u'petroleum', u'product', u'surg']
[u'charg', u'royal', u'mint', u'coin', u'theft']
[u'face', u'court', u'accus', u'weekend', u'rape']
[u'front', u'court', u'accus', u'heroin', u'possess']
[u'maradona', u'charg', u'accid']
[u'market', u'rebound', u'uneasi', u'start']
[u'mayor', u'say', u'council', u'short', u'chang', u'sewerag']
[u'mcewen', u'evan', u'spearhead', u'davitamon', u'team']
[u'mear', u'kersten', u'australian', u'world']
[u'meet', u'fluorid', u'support']
[u'metro', u'driver', u'strike', u'reject']
[u'mildura', u'ratepay', u'group']
[u'minist', u'rough', u'treatment', u'remark', u'spark', u'outrag']
[u'mokbel', u'trial', u'wit', u'court', u'tell']
[u'delay', u'highway', u'bypass']
[u'mother', u'accus', u'tri', u'avoid', u'crash']
[u'back', u'push', u'budget', u'offer', u'bush', u'fund']
[u'danna', u'vale', u'criticis', u'comment', u'abort']
[u'consid', u'abort', u'pill', u'debat']
[u'debat']
[u'refineri']
[u'beat', u'powercor', u'communic']
[u'murali', u'undecid', u'play', u'australia']
[u'murray', u'water', u'option', u'olymp']
[u'mysteri', u'virus', u'hit', u'margaret', u'student']
[u'find', u'busi', u'condit', u'struggl']
[u'nation', u'predict', u'care', u'licenc', u'problem']
[u'seawe', u'fish', u'speci', u'caribbean']
[u'newspap', u'weigh', u'legal', u'action', u'leunig', u'hoax']
[u'studi', u'find', u'damag', u'children']
[u'decis', u'ranger', u'fund', u'say']
[u'ground', u'crimin', u'charg', u'tegan', u'lane', u'case']
[u'resolut', u'mine']
[u'nurs', u'ralli', u'staff', u'shortag']
[u'spill', u'debrief', u'close', u'door']
[u'dead', u'protest', u'haiti', u'vote', u'count']
[u'opinion', u'divid', u'abort', u'pill', u'debat']
[u'opposit', u'urg', u'tougher', u'law', u'sell']
[u'parti', u'odd', u'mental', u'health', u'support', u'pledg']
[u'paul', u'rule', u'calf', u'injuri']
[u'pell', u'attack', u'support']
[u'flag', u'monopoli']
[u'warn', u'affair', u'drag']
[u'polic', u'chief', u'ballarat', u'game', u'talk']
[u'polic', u'crack', u'speed', u'driver']
[u'polic', u'promis', u'continu', u'biki', u'crackdown']
[u'polic', u'seek', u'meet', u'drink', u'fest', u'concern']
[u'power', u'tight', u'lip', u'train', u'techniqu']
[u'practic', u'begin', u'south', u'australian', u'open']
[u'pratt', u'win', u'bangalor']
[u'premier', u'rule', u'poki']
[u'propos', u'set', u'boundari', u'ningaloo', u'reef']
[u'protest', u'rememb', u'hickey']
[u'pump', u'woe', u'prompt', u'restrict', u'water']
[u'rail', u'go', u'nation', u'freight', u'expans']
[u'radio', u'upgrad', u'rural', u'ambul']
[u'record', u'snowstorm', u'blanket', u'york']
[u'rise', u'popular', u'valentin']
[u'refineri', u'closur', u'increas', u'fuel', u'price', u'report']
[u'renal', u'unit', u'secur', u'shortag', u'put', u'nurs', u'risk']
[u'hop', u'airport', u'issu', u'address', u'soon']
[u'rocket', u'scienc', u'offer', u'surfboard', u'foam']
[u'royal', u'mint', u'mark', u'chang', u'currenc']
[u'rspca', u'seiz', u'wildlif', u'fernval', u'properti']
[u'saddam', u'return', u'court', u'hunger', u'strike']
[u'safeti', u'measur', u'abandon', u'king', u'crash']
[u'sailor', u'want', u'win', u'red', u'defeat']
[u'scottish', u'curler', u'welcom', u'pipe', u'band']
[u'king', u'inquiri', u'tell', u'poor', u'seat', u'fuel']
[u'king', u'inquiri', u'tell', u'safeti', u'dismiss']
[u'search', u'unabl', u'river', u'croc']
[u'plead', u'guilti', u'scream', u'theft']
[u'small', u'busi', u'feel', u'land', u'relief', u'say']
[u'snowi', u'boss', u'link', u'investig', u'ahead', u'sale']
[u'south', u'east', u'ross', u'river', u'case', u'rise']
[u'speed', u'skater', u'cheek', u'win', u'style']
[u'studi', u'assess', u'number', u'licens', u'premis']
[u'sturt', u'unit', u'plan', u'get', u'condit', u'approv']
[u'suspend', u'german', u'return', u'chase', u'medal']
[u'kyi', u'parti', u'announc', u'offer', u'recognis']
[u'taliban', u'kill', u'soldier']
[u'teen', u'charg', u'polic', u'pursuit']
[u'theft', u'prompt', u'polic', u'warn', u'trader']
[u'tiger', u'seat', u'wildcat']
[u'tiger', u'bushrang']
[u'tiwi', u'face', u'court', u'sister', u'death']
[u'totmianina', u'marinin', u'olymp', u'pair', u'gold']
[u'townsvill', u'record', u'seventh', u'dengu', u'case']
[u'townsvill', u'soldier', u'defend', u'armi', u'equip']
[u'trial', u'accus', u'terrorist', u'delay']
[u'trial', u'joseph', u'terenc', u'thoma', u'delay']
[u'kenyan', u'minist', u'quit', u'corrupt', u'scam']
[u'uncertainti', u'surround', u'seal', u'death']
[u'urg', u'close', u'guantanamo', u'jail']
[u'urban', u'spend', u'carri', u'say', u'minist']
[u'criticis', u'leak', u'guantanamo', u'report']
[u'plan', u'emerg', u'agenc', u'chang', u'amid', u'katrina']
[u'vale', u'comment', u'condemn']
[u'valentin', u'red']
[u'vale', u'muslim', u'comment', u'planet']
[u'veteran', u'copeland', u'ax', u'bullet']
[u'victoria', u'chase', u'tassi', u'bat', u'blue']
[u'wage', u'growth', u'fall', u'survey']
[u'warrior', u'look', u'solid', u'blue']
[u'wast', u'search', u'cost', u'time', u'money']
[u'wast', u'dump', u'oppon', u'sort', u'submiss']
[u'urg', u'food', u'trade', u'challeng']
[u'west', u'crush', u'birmingham']
[u'wheat', u'watchdog', u'grill', u'kickback']
[u'whistleblow', u'deceiv', u'exec', u'deal', u'inquiri']
[u'woman', u'jail', u'help', u'murder', u'husband']
[u'woman', u'plead', u'guilti', u'start', u'govt', u'offic', u'blaze']
[u'workplac', u'accid', u'common', u'road', u'crash']
[u'yemen', u'offer', u'reward', u'qaeda', u'escap']
[u'ywca', u'apologis', u'offens', u'tshirt']
[u'countri', u'club', u'plan', u'target', u'retir']
[u'accus', u'mint', u'thief', u'court']
[u'attract', u'oversea', u'student', u'uni']
[u'agenc', u'cut', u'telstra', u'long', u'term', u'credit', u'rat']
[u'airlin', u'put', u'gulf', u'countri', u'flight']
[u'armidal', u'chang', u'rat', u'structur']
[u'interest', u'recruit', u'johnson']
[u'atapattu', u'predict', u'murali', u'return', u'australia']
[u'auditor', u'general', u'investig', u'global', u'valu']
[u'aussi', u'skier', u'brauer', u'unhurt', u'crash']
[u'aussi', u'take', u'wale', u'rugbi', u'coach']
[u'aust', u'posit', u'hick', u'detaine']
[u'file', u'expos', u'kickback']
[u'share', u'trade', u'halt']
[u'suspend', u'monopoli', u'wheat', u'export']
[u'baghdad', u'bomb', u'kill', u'children']
[u'bali', u'trio', u'jail', u'life']
[u'beck', u'blame', u'posit', u'test', u'spike', u'drink']
[u'billiton', u'announc', u'record', u'half', u'year', u'profit']
[u'billiton', u'post', u'giant', u'record']
[u'billiton', u'post', u'record', u'interim', u'profit']
[u'record', u'profit', u'fail', u'impress', u'market']
[u'reveal', u'probe', u'iraq', u'activ']
[u'bleiberg', u'retain', u'roar', u'coach']
[u'blue', u'green', u'alga', u'prompt', u'high', u'alert']
[u'blue', u'struggl', u'warrior']
[u'boati', u'warn', u'care', u'rough', u'water']
[u'british', u'parliament', u'approv', u'smoke']
[u'broom', u'swing', u'club', u'help', u'sick', u'girl']
[u'budget', u'deficit']
[u'bushfir', u'prompt', u'natur', u'disast', u'declar']
[u'busi', u'chamber', u'angri', u'supermarket', u'approv']
[u'busi', u'seek', u'easier', u'access', u'reef', u'rezon']
[u'businessman', u'fail', u'chang', u'tree', u'lop', u'fine']
[u'busi', u'uneasi', u'employ', u'rural']
[u'campaign', u'aim', u'hose', u'west', u'arson']
[u'capit', u'readi', u'ranger']
[u'cheney', u'duck', u'cover', u'shoot', u'incid']
[u'chief', u'minist', u'condemn', u'violent', u'behaviour']
[u'child', u'care', u'issu', u'drive', u'resid', u'away']
[u'chines', u'carri', u'away', u'dive', u'gold', u'sydney']
[u'climat', u'chang', u'caus', u'fire']
[u'club', u'reject', u'poker', u'machin', u'offer']
[u'colli', u'coal', u'plant', u'bring', u'profit']
[u'commonwealth', u'bank', u'profit', u'surg']
[u'compani', u'fin', u'hangar', u'collaps']
[u'game', u'refus', u'classif', u'graffiti']
[u'coron', u'make', u'homicid', u'recommend']
[u'costello', u'back', u'handl']
[u'costello', u'want', u'control']
[u'council', u'consid', u'environ', u'plan', u'chang']
[u'council', u'decid', u'contract']
[u'councillor', u'push', u'curfew']
[u'council', u'rise', u'consider']
[u'council', u'seek', u'altern', u'ocean', u'outfal']
[u'cowra', u'canneri', u'revamp']
[u'crime', u'fight', u'group', u'beat', u'find', u'home']
[u'cruis', u'holm', u'deni', u'break', u'report']
[u'dead', u'anti', u'cartoon', u'protest', u'pakistan']
[u'defenc', u'confirm', u'fail', u'equip', u'contract']
[u'defenc', u'forc', u'plan', u'central', u'train']
[u'desert', u'scientist', u'discuss', u'latest', u'research']
[u'dolphin', u'feed', u'compromis']
[u'draft', u'develop', u'control', u'plan', u'form', u'park']
[u'driver', u'high', u'speed', u'chase', u'jail']
[u'elliott', u'season']
[u'escap', u'prison', u'releas', u'week']
[u'councillor', u'jail', u'drug', u'crop']
[u'expert', u'consid', u'reason', u'smaller', u'shark']
[u'expert', u'water', u'advic', u'offer']
[u'farmer', u'mozzi', u'spray', u'concern']
[u'lose', u'timpano', u'unit', u'clash']
[u'fear', u'deal', u'derail', u'grain', u'grower']
[u'financ', u'domin', u'shire', u'meet']
[u'firefight', u'look', u'heat', u'contain', u'bushfir']
[u'firefight', u'boost', u'announc', u'gambier']
[u'fischer', u'take', u'gold', u'olymp', u'men', u'biathlon']
[u'flood', u'water', u'continu', u'balgo']
[u'fluorid', u'support', u'snub', u'meet']
[u'nrma', u'presid', u'join', u'port', u'kembla', u'port', u'bodi']
[u'galleri', u'competit', u'winner', u'entri']
[u'garrett', u'ask', u'help', u'sandon', u'point', u'resolut']
[u'germani', u'say', u'bird', u'confirm', u'dead', u'swan']
[u'gilchrist', u'prove', u'critic', u'wrong']
[u'gippsland', u'line', u'train', u'run', u'late']
[u'gold', u'stealer', u'sentenc', u'friday']
[u'gradi', u'forc', u'open']
[u'grant', u'fund', u'oyster', u'breed', u'program']
[u'green', u'group', u'highlight', u'ningaloo', u'plan', u'doubt']
[u'group', u'maintain', u'unit', u'develop', u'opposit']
[u'group', u'monitor', u'locust', u'threat']
[u'group', u'offer', u'greenhous', u'project', u'assur']
[u'guard', u'dog', u'save', u'sheep', u'dingo']
[u'hann', u'quit', u'snooker', u'ahead', u'match', u'fix', u'hear']
[u'health', u'servic', u'ahead', u'land', u'sale']
[u'high', u'court', u'adjourn', u'crime', u'case']
[u'hoaxer', u'apologis', u'leunig']
[u'hospit', u'report', u'recommend', u'doctor', u'contract', u'chang']
[u'indic', u'point', u'improv', u'econom', u'activ']
[u'indonesian', u'jail', u'ocean', u'stand']
[u'inmat', u'plead', u'guilti', u'risdon', u'prison', u'sieg']
[u'inquiri', u'hear', u'lack', u'divers', u'rural']
[u'iraqi', u'return', u'home', u'bladder', u'oper']
[u'irrig', u'oppos', u'water', u'charg']
[u'israel', u'signal', u'review', u'palestinian', u'relat']
[u'japan', u'plan', u'determin', u'troop', u'deploy']
[u'bone', u'shipwreck', u'victim']
[u'joyrid', u'take', u'ride']
[u'kalgoorli', u'boulder', u'hoon', u'spot']
[u'kempsey', u'council', u'ponder', u'surplus', u'land', u'sell']
[u'kenya', u'name', u'financ', u'minist', u'amid', u'corrupt']
[u'king', u'strike', u'blood', u'taipan']
[u'labor', u'backbench', u'seek', u'protect', u'independ']
[u'larkham', u'quit', u'brumbi', u'world']
[u'gasp', u'liverpool', u'goal', u'sink', u'gunner']
[u'bali', u'arriv', u'court', u'verdict']
[u'bali', u'give', u'life', u'sentenc']
[u'law', u'limit', u'student', u'hour', u'workforc']
[u'lebanon', u'mark', u'anniversari', u'hariri']
[u'leve', u'grant', u'protect', u'futur', u'flood']
[u'ligeti', u'storm', u'combin', u'gold']
[u'lockhart', u'river', u'crash', u'prompt', u'casa', u'senat']
[u'long', u'term', u'plan', u'document', u'focus', u'inland']
[u'yang', u'look', u'profit']
[u'macquari', u'extend', u'offer']
[u'guilti', u'wife', u'murder']
[u'free', u'year', u'jail', u'trial']
[u'injur', u'fall', u'gold']
[u'jail', u'drug', u'bust']
[u'jail', u'bizarr', u'attempt', u'arm', u'robberi']
[u'jail', u'drink', u'drive', u'crash', u'death']
[u'medic', u'research', u'get', u'boost', u'state', u'govt']
[u'meet', u'focus', u'local', u'govt', u'issu']
[u'meet', u'spotlight', u'fall', u'tourism']
[u'melbourn', u'commut', u'tell', u'prepar', u'game']
[u'jail', u'pharmacist', u'kidnap']
[u'microsoft', u'warn', u'critic', u'secur', u'flaw']
[u'minist', u'call', u'feder', u'govt', u'tund']
[u'minist', u'defend', u'hospit', u'report']
[u'minist', u'vow', u'meet', u'polic', u'number', u'target']
[u'minist', u'warn', u'scientist', u'environ', u'lobbi']
[u'miss', u'woman', u'bodi', u'irrig', u'channel']
[u'illeg', u'fish', u'boat', u'catch', u'north']
[u'mother', u'fear', u'qanta', u'stop', u'travel']
[u'apologis', u'muslim', u'comment']
[u'call', u'govt', u'christma', u'crane']
[u'prepar', u'lengthi', u'debat']
[u'pirat', u'extinct']
[u'ambul', u'radio', u'promis', u'faster']
[u'evid', u'contradict', u'testimoni']
[u'hope', u'common', u'form', u'cancer']
[u'offic', u'aborigin', u'employ', u'open']
[u'phone', u'power', u'alarm', u'civil', u'libertarian']
[u'plan', u'open', u'kakadu', u'tourist']
[u'nia', u'king', u'crash', u'investig', u'continu']
[u'elect', u'expect', u'mcgee', u'go']
[u'injuri', u'basqu', u'bomb']
[u'ohio', u'drop', u'anti', u'evolut', u'teach', u'plan']
[u'opposit', u'question', u'health', u'report', u'omiss']
[u'orchard', u'worker', u'jail', u'reveng']
[u'otto', u'lead', u'german', u'sweep', u'women', u'luge']
[u'pacif', u'nation', u'urg', u'improv', u'level', u'cross']
[u'panel', u'hear', u'pulp', u'submiss']
[u'parliament', u'suspend', u'challeng', u'rule']
[u'passeng', u'die', u'rout', u'melbourn']
[u'pilot', u'evid', u'backpack', u'death', u'inquest']
[u'plan', u'readi', u'anzac', u'game']
[u'deni', u'knowledg', u'kickback']
[u'hold', u'talk', u'chairman']
[u'prepar', u'iraq', u'mission', u'save', u'wheat', u'sale']
[u'polic', u'chief', u'reject', u'game', u'polic', u'worri']
[u'polic', u'hunt', u'jail', u'escap']
[u'polic', u'probe', u'muswellbrook', u'shoot']
[u'possibl', u'boost', u'north', u'coast', u'polic', u'number']
[u'preval', u'alleg', u'fraud', u'haiti', u'elect']
[u'princ', u'highway', u'construct', u'soon', u'complet']
[u'prison', u'stab', u'investig']
[u'cricket', u'slam', u'gabba', u'crowd', u'mug']
[u'consid', u'staff', u'level', u'derail', u'link']
[u'queen', u'baton', u'relay', u'travel', u'renmark']
[u'racv', u'target', u'tire', u'young', u'driver']
[u'rare', u'photo', u'fetch', u'million']
[u'claw', u'produc', u'chanc', u'capitalis']
[u'region', u'fund', u'doubl', u'opposit']
[u'relationship', u'help', u'extend', u'central', u'west']
[u'respit', u'facil', u'locat', u'choos']
[u'retail', u'sale', u'jump', u'surpris', u'market']
[u'retir', u'public', u'servant', u'hurt', u'budget', u'treasur']
[u'rlpbs', u'away', u'drought', u'status']
[u'roo', u'predict', u'swan', u'thrash']
[u'rural', u'mental', u'health', u'assess', u'albani']
[u'premier', u'toughen', u'stanc', u'polic', u'chase']
[u'saracen', u'toughest', u'challeng', u'jone']
[u'school', u'radio', u'sign']
[u'school', u'smell', u'prompt', u'expert', u'investig']
[u'scientist', u'galaxi', u'neighbour']
[u'shark', u'track', u'greater', u'protect']
[u'shorter', u'therapi', u'help', u'hodgkin', u'lymphoma']
[u'soil', u'lose', u'nutrit', u'valu']
[u'stadler', u'expect', u'royal', u'adelaid', u'tough', u'go']
[u'stanhop', u'push', u'control', u'legisl']
[u'student', u'protest', u'target', u'abbott']
[u'support', u'offer', u'teen', u'parent']
[u'survey', u'find', u'support', u'indoor', u'pool']
[u'task', u'forc', u'confid', u'livestock', u'transport', u'standard']
[u'teen', u'arrest', u'snatch']
[u'tegan', u'lane', u'probabl', u'dead']
[u'tiger', u'strong', u'posit', u'stump']
[u'tokelau', u'vote', u'progress', u'peac']
[u'train', u'bendigo']
[u'trio', u'assault', u'machet', u'attack']
[u'briton', u'arrest', u'iraq', u'abus', u'tape']
[u'underdog', u'step', u'olymp']
[u'underwat', u'world', u'sale', u'spark', u'develop', u'concern']
[u'union', u'highlight', u'educ', u'fund', u'worri']
[u'union', u'join', u'forc', u'push', u'better', u'wag']
[u'staff', u'class', u'action', u'workplac']
[u'upper', u'hunter', u'council', u'back', u'wind', u'farm']
[u'bomb', u'accid', u'damag']
[u'buy', u'south', u'australian', u'oliv']
[u'vail', u'lead', u'wheat', u'rescu', u'mission', u'iraq']
[u'waratah', u'grant', u'houston', u'leav']
[u'waratah', u'lose', u'caldwel', u'hamstr', u'injuri']
[u'water', u'bomber', u'prais', u'save', u'natur', u'reserv']
[u'watson', u'ecstat', u'recal']
[u'watson', u'johnson', u'recal']
[u'weather', u'delay', u'wine', u'grape', u'harvest']
[u'welsh', u'sidelin', u'stress', u'fractur']
[u'woman', u'handcuff', u'doubl', u'park', u'incid']
[u'woman', u'hospit', u'stinger', u'attack']
[u'servic', u'gradual', u'track']
[u'yawuru', u'peopl', u'claim', u'compo', u'nativ', u'titl']
[u'project', u'sign', u'ethanol', u'confid']
[u'energi', u'effici', u'offic', u'open']
[u'aborigin', u'seek', u'stop', u'santo', u'project']
[u'abort', u'drug', u'vote']
[u'ghraib', u'abus', u'violat', u'intern']
[u'actu', u'say', u'legal', u'action', u'stunt']
[u'boss', u'stand', u'bali', u'arrest']
[u'allardyc', u'rag', u'marseill', u'defi', u'bolton']
[u'back', u'bigger', u'warn', u'cigarett']
[u'profit', u'fall']
[u'anti', u'corrupt', u'crusad', u'highlight', u'polit', u'woe']
[u'armi', u'cadet', u'face', u'child', u'charg']
[u'asbesto', u'relat', u'ill', u'hit', u'baryulgil']
[u'aust', u'diplomat', u'label', u'rotten', u'core']
[u'australian', u'beef', u'export', u'forecast', u'improv']
[u'author', u'warn', u'natur', u'disast']
[u'claim', u'kickback', u'deduct']
[u'exec', u'secur', u'saddam', u'offici', u'inquiri']
[u'note', u'govt', u'detail', u'transport', u'fee']
[u'launch', u'inquiri', u'drug', u'alleg']
[u'ballarat', u'face', u'preselect', u'challeng']
[u'beatti', u'concern', u'opposit', u'comment']
[u'bellami', u'doubl', u'sink', u'sunderland']
[u'crowd', u'expect', u'game', u'baton', u'relay']
[u'bird', u'pandem', u'kill', u'million', u'shut']
[u'birney', u'leav', u'option', u'open', u'poker', u'machin']
[u'bizarr', u'pulsar', u'like', u'faulti', u'beacon']
[u'bleiberg', u'stand', u'board', u'vote', u'confid']
[u'blue', u'forc', u'follow']
[u'blue', u'make', u'progress', u'second', u'inning']
[u'board', u'reject', u'servic', u'station', u'alcohol', u'licenc']
[u'british', u'loss', u'lend', u'leas', u'profit']
[u'brother', u'slide', u'luge', u'gold']
[u'bull', u'destroy', u'suspect', u'gore', u'death']
[u'bushrang', u'hang', u'tiger']
[u'accc', u'power', u'probe', u'fuel']
[u'code', u'conduct', u'train', u'councillor']
[u'canegrow', u'reject', u'irrig', u'charg']
[u'care', u'option', u'expand', u'troubl', u'cape', u'york', u'youth']
[u'celebr', u'mark', u'game', u'baton', u'arriv']
[u'china', u'win', u'women', u'short', u'track', u'gold']
[u'chines', u'diver', u'domin', u'sydney', u'grand', u'prix', u'meet']
[u'club', u'campaign', u'poki']
[u'collin', u'class', u'take', u'navi', u'award']
[u'communiti', u'consult', u'group', u'discuss']
[u'costello', u'criticis', u'rann', u'leaflet']
[u'council', u'angri', u'bridg', u'repair', u'delay']
[u'council', u'help', u'expand', u'boat', u'ramp']
[u'council', u'highlight', u'footi', u'club', u'concern']
[u'court', u'hear', u'accus', u'ask', u'qaeda']
[u'court', u'order', u'return', u'anti', u'slogan', u'paint']
[u'court', u'overturn', u'brazil', u'prison', u'massacr', u'convict']
[u'crisi', u'talk', u'canada']
[u'czech', u'ralli', u'beat', u'german']
[u'dorfmeist', u'crown', u'downhil', u'queen']
[u'doubt', u'cast', u'state', u'base', u'mandatori', u'renew']
[u'ecuador', u'scent', u'world', u'success']
[u'elder', u'woman', u'remain', u'discov', u'home']
[u'elliott', u'stay', u'raider']
[u'escap', u'face', u'court', u'surrend']
[u'escap', u'face', u'court']
[u'ethiopia', u'lone', u'winter', u'olympian', u'get', u'ahead']
[u'expert', u'defend', u'railway', u'cross', u'camera']
[u'expert', u'see', u'rail', u'restor']
[u'extern', u'risk', u'biggest', u'threat', u'economi']
[u'team', u'face', u'promot', u'releg']
[u'facial', u'recognit', u'softwar', u'aid', u'schizophrenia']
[u'farmer', u'reliev', u'area', u'nomin', u'heritag']
[u'fear', u'illeg', u'fish', u'spark', u'ugli', u'confront']
[u'fear', u'poki', u'tax', u'lead', u'loss']
[u'feder', u'vote', u'handov']
[u'ferri', u'driver', u'guilti', u'row', u'team']
[u'firefight', u'control', u'nation', u'park', u'blaze']
[u'firefight', u'extinguish', u'lightn', u'fire']
[u'firefight', u'reflect', u'wednesday', u'tragedi']
[u'firestorm', u'inquiri', u'delay', u'frustrat', u'resid']
[u'star', u'energi', u'mandatori', u'home']
[u'flint', u'open']
[u'forc', u'chang', u'hurrican', u'clash']
[u'fuel', u'theft', u'rise', u'cloncurri']
[u'fundrais', u'blame', u'health', u'servic', u'donat']
[u'german', u'belgian', u'colour']
[u'gladston', u'fisherman', u'give', u'clear', u'spill']
[u'gold', u'coast', u'secur', u'insid', u'film', u'award']
[u'golfer', u'line', u'south', u'australian', u'open']
[u'govt', u'ask', u'rethink', u'transport', u'home', u'polici']
[u'grain', u'farmer', u'iraq', u'wheat', u'effort']
[u'green', u'push', u'lower', u'vote']
[u'groundwat', u'user', u'compo', u'concern']
[u'gryll', u'demand', u'esper', u'water', u'improv']
[u'hewitt', u'consid', u'skip', u'davi']
[u'hewitt', u'lead', u'aussi', u'charg', u'jose']
[u'hickey', u'acknowledg', u'sewerag', u'fund', u'issu']
[u'higher', u'venu', u'prompt', u'doubt', u'fair', u'futur']
[u'plan', u'event', u'supersub']
[u'blame', u'shoot', u'say', u'cheney']
[u'india', u'wrap', u'seri']
[u'industri', u'action', u'halt', u'train']
[u'inmat', u'get', u'month', u'extra', u'jail', u'escap']
[u'internet', u'sale', u'bypass', u'graffiti', u'game']
[u'iran', u'reject', u'french', u'nuclear', u'charg']
[u'iraqi', u'shock', u'abus', u'photo']
[u'japan', u'match', u'royal', u'touch']
[u'japan', u'weigh', u'iraq', u'troop', u'pullout', u'time']
[u'jaqu', u'tell', u'improv', u'field']
[u'cut', u'fuel', u'price', u'qanta', u'line']
[u'kakadu', u'tourism', u'plan', u'requir', u'standard']
[u'kalgoorli', u'hoon', u'surpris', u'polic', u'chief']
[u'kingfish', u'industri', u'head', u'product', u'boom']
[u'late', u'proclam', u'victoria', u'border', u'segment']
[u'latest', u'ghraib', u'photo', u'authent', u'say', u'offici']
[u'latham', u'doubt', u'crusad', u'clash']
[u'liber', u'leaflet', u'smear', u'campaign', u'green']
[u'liber', u'stand', u'elect', u'promis', u'despit', u'deficit']
[u'london', u'ambul', u'worker', u'tell', u'bomb', u'experi']
[u'long', u'lead', u'open']
[u'accus', u'sexual', u'proposit', u'teen']
[u'await', u'fiji', u'extradit', u'decis']
[u'convict', u'child', u'assault']
[u'get', u'year', u'million', u'heroin', u'oper']
[u'jail', u'random', u'shoot', u'spree']
[u'face', u'court', u'mint', u'theft']
[u'market', u'show', u'disappoint', u'interim', u'result']
[u'massiv', u'haul', u'seiz', u'suspect', u'illeg', u'mother']
[u'mayor', u'back', u'inskip', u'camp', u'review']
[u'mayor', u'see', u'problem', u'power', u'plant', u'water']
[u'mcgauran', u'reject', u'live', u'sheep', u'trade']
[u'meet', u'discuss', u'abrolho', u'island', u'visitor', u'fee']
[u'metro', u'driver', u'order', u'work']
[u'minist', u'say', u'train', u'time', u'need', u'improv']
[u'minist', u'wont', u'chang', u'singl', u'desk', u'potato', u'market']
[u'mint', u'theft', u'accus', u'face', u'court', u'canberra']
[u'miss', u'fisherman', u'bodi', u'near', u'bundaberg']
[u'mistak', u'free', u'give', u'begg', u'smith', u'gold']
[u'bore', u'boost', u'water', u'suppli']
[u'park', u'delay', u'anger', u'busi']
[u'eas', u'pressur', u'hospit', u'bed']
[u'attack', u'main', u'announc']
[u'pass', u'abort', u'drug']
[u'back', u'free', u'trade', u'push']
[u'hop', u'answer', u'backpack', u'inquest']
[u'museum', u'wont', u'sell', u'artwork', u'debt']
[u'ghraib', u'imag', u'send', u'shockwav']
[u'newcastl', u'legend', u'mark', u'decad', u'servic']
[u'law', u'easier', u'phone']
[u'newmont', u'settl', u'indonesian', u'pollut', u'case']
[u'technolog', u'medic', u'centr']
[u'islam', u'mosqu', u'drive', u'resid', u'away']
[u'preselect', u'challeng', u'black']
[u'club', u'offer', u'poker', u'machin', u'compromis']
[u'govt', u'ask', u'adopt', u'truanci', u'fight', u'plan']
[u'seek', u'support', u'croc', u'hunt', u'safari']
[u'urg', u'howard', u'illeg', u'fish']
[u'nuttal', u'call', u'inquiri']
[u'opposit', u'accus', u'govt', u'manipul', u'educ']
[u'opposit', u'criticis', u'late', u'train']
[u'outrag', u'build', u'ghraib', u'imag']
[u'oversea', u'apprenticeship', u'plan', u'nonsens', u'say', u'actu']
[u'panel', u'decid', u'wast', u'dump', u'plan']
[u'paper', u'decid', u'leunig', u'hoax', u'legal', u'action']
[u'parent', u'question', u'plan', u'compulsori', u'school']
[u'penguin', u'cut', u'author', u'reprint', u'royalti']
[u'pension', u'digit', u'spark', u'rescu', u'search']
[u'petit', u'urg', u'shire', u'chief', u'execut', u'reinstat']
[u'phone', u'tap', u'suspect', u'necessari', u'ruddock']
[u'pirat', u'chairman', u'predict', u'bleak', u'futur']
[u'plan', u'hospit', u'bed']
[u'player', u'deni', u'forc', u'wale', u'rugbi', u'coach', u'exit']
[u'plushenko', u'readi', u'gold']
[u'back', u'vail', u'wheat', u'trade', u'crisi']
[u'challeng', u'labor', u'iraq', u'kickback', u'claim']
[u'polic', u'chief', u'ask', u'attend', u'offic', u'number']
[u'polic', u'seek', u'crash', u'wit']
[u'polic', u'tighten', u'polici', u'seatbelt']
[u'pressur', u'mount', u'nation', u'leader']
[u'preval', u'win', u'haitian', u'presidenti', u'elect']
[u'push', u'reopen', u'youth', u'centr']
[u'polic', u'join', u'solomon', u'oper']
[u'rain', u'creat', u'problem', u'west']
[u'ranieri', u'reveal', u'newcastl']
[u'real', u'overtak', u'unit', u'world', u'richest', u'club']
[u'region', u'focus', u'approach', u'cabinet', u'meet']
[u'report', u'call', u'drought', u'support']
[u'residenti', u'develop', u'work', u'indigen']
[u'resid', u'jail', u'plan']
[u'reviv', u'music', u'industri', u'thank', u'star', u'brit']
[u'estim', u'austrad']
[u'avail', u'year']
[u'rule', u'chang', u'stop', u'barrist', u'speak']
[u'sailor', u'injuri', u'cloud']
[u'schizophrenia', u'suffer', u'benefit', u'secur']
[u'secur', u'camera', u'stop', u'grave', u'vandal']
[u'secur', u'camera', u'watch', u'main', u'street']
[u'secur', u'place', u'game', u'baton', u'arriv']
[u'skill', u'shortag', u'job', u'drive', u'chang', u'focus']
[u'smith', u'clear', u'assault', u'alleg']
[u'smorgon', u'industri', u'disput', u'go', u'commiss']
[u'sober', u'centr', u'worker', u'highlight', u'tennant', u'woe']
[u'speed', u'caus', u'fatal', u'ambul', u'crash', u'coron', u'find']
[u'studi', u'focus', u'local', u'govt', u'sustain']
[u'submiss', u'flow', u'cowra', u'council', u'plan']
[u'sunbus', u'reject', u'union', u'safeti', u'claim']
[u'suspect', u'illeg', u'fishermen', u'face', u'charg']
[u'tare', u'council', u'seek', u'rate', u'rise']
[u'taronga', u'welcom', u'babi', u'platypus']
[u'taxi', u'driver', u'guilti', u'road', u'rage', u'death']
[u'parti', u'lose', u'right', u'appeal', u'cruis']
[u'tiger', u'post', u'convinc']
[u'tokelau', u'vote', u'self', u'determin']
[u'tourist', u'fin', u'gabba', u'pitch', u'invas']
[u'tourist', u'oper', u'say', u'problem', u'myth']
[u'townsvill', u'deleg', u'take', u'defenc', u'land', u'issu']
[u'train', u'death', u'consid', u'suspici']
[u'treasur', u'admit', u'budget', u'report', u'mistak']
[u'trial', u'pave', u'aerial', u'bait']
[u'tripodi', u'lose', u'road', u'ministeri', u'reshuffl']
[u'truck', u'driver', u'strike', u'shell']
[u'bomb', u'kill', u'iraqi', u'baghdad']
[u'indonesian', u'suspect', u'bird', u'infect']
[u'kill', u'uganda', u'unrest']
[u'campus', u'go', u'enrol', u'declin', u'trend']
[u'union', u'call', u'auto', u'industri', u'summit']
[u'expert', u'highlight', u'zinifex', u'lead', u'level', u'challeng']
[u'chief', u'issu', u'warn', u'inflat']
[u'label', u'ghraib', u'abus', u'pictur', u'repuls']
[u'market', u'unfaz', u'inflat', u'warn']
[u'minist', u'admit', u'katrina', u'failur']
[u'shut', u'guantanamo', u'prison', u'report', u'say']
[u'region', u'face', u'total']
[u'birth', u'rate', u'australia', u'highest']
[u'word', u'erupt', u'opposit', u'health', u'polici']
[u'watson', u'aim', u'bowl', u'test']
[u'wind', u'postpon', u'nordic', u'combin', u'team', u'event']
[u'windsor', u'beat', u'properti', u'owner', u'compo']
[u'winegrow', u'trade', u'practic', u'concern']
[u'zimbabw', u'clear', u'debt', u'expect']
[u'acid', u'murder', u'accessori', u'get', u'year']
[u'review', u'secur', u'mint']
[u'qaeda', u'year', u'plan', u'polic']
[u'happi', u'abort', u'counsel', u'servic']
[u'support', u'nation', u'indigen', u'health']
[u'american', u'prison', u'give', u'evid', u'terror', u'trial']
[u'analyst', u'predict', u'demand', u'australian', u'coal']
[u'anti', u'log', u'protest', u'stage', u'forest', u'action']
[u'armour', u'levin', u'lead', u'open']
[u'announc', u'record', u'profit']
[u'aust', u'prepar', u'singl', u'market', u'talk']
[u'australia', u'make', u'breakthrough', u'search', u'bird']
[u'austrian', u'team', u'good', u'nordic', u'combin']
[u'charg', u'fraud', u'claim']
[u'face', u'charg', u'corrupt', u'claim']
[u'email', u'discuss', u'payment', u'iraq']
[u'awb', u'iraq', u'mission', u'repair', u'relat', u'grain']
[u'baghdati', u'receiv', u'armi', u'repriev']
[u'beatti', u'defend', u'head', u'nuttal', u'critic']
[u'begg', u'smith', u'feel', u'golden', u'glow', u'turin']
[u'averag', u'rainfal', u'predict']
[u'bemax', u'credit', u'ginko', u'titanium', u'feedstock', u'rank']
[u'machin', u'roll', u'sweden']
[u'blaze', u'damag', u'furnitur', u'factori']
[u'boost', u'britain', u'rudman', u'rocket', u'skeleton']
[u'bubbl', u'clijster', u'foot', u'crowd', u'champagn']
[u'bureau', u'cast', u'doubt', u'rain', u'redirect', u'claim']
[u'drop', u'drought', u'support', u'scheme', u'unfair']
[u'open', u'woomera', u'cultana', u'militari', u'area']
[u'cancer', u'suffer', u'demand', u'better', u'access', u'drug']
[u'car', u'ralli']
[u'cattl', u'weight', u'drop', u'asian', u'marketplac']
[u'chamber', u'see', u'second', u'plant', u'mix', u'bless']
[u'chlamydia', u'case', u'rise']
[u'defend', u'parliament', u'perform']
[u'committe', u'lobbi', u'health', u'fund']
[u'compo', u'law', u'domin', u'lawyer', u'confer']
[u'conserv', u'conscious', u'fisher', u'catch']
[u'continu', u'water', u'shortag', u'affect', u'pristin']
[u'council', u'act', u'stop', u'fli', u'cane', u'toad']
[u'councillor', u'question', u'retail', u'plan', u'report']
[u'court', u'rule', u'control', u'sexual', u'urg']
[u'cousin', u'admit', u'flee', u'abandon']
[u'crash', u'claim', u'trail', u'bike', u'rider', u'life']
[u'crean', u'highlight', u'eden', u'worker', u'plight']
[u'crew', u'suspect', u'illeg', u'fish', u'boat', u'detain']
[u'desalin', u'plant', u'propos', u'eyr', u'peninsula']
[u'desert', u'knowledg', u'australia', u'board', u'appoint']
[u'devast', u'drought', u'blame', u'african', u'death']
[u'appeal', u'stab', u'sentenc']
[u'duck', u'test', u'posit', u'bird', u'itali']
[u'egyptian', u'ferri', u'wreck']
[u'elder', u'care', u'wait', u'list', u'spark', u'debat']
[u'elder', u'man', u'bodi', u'church']
[u'urg', u'govt', u'chang', u'outdat']
[u'expert', u'support', u'need', u'parol']
[u'fair', u'chief', u'outlin', u'role']
[u'fame', u'like', u'poison', u'say', u'miller']
[u'famili', u'settl', u'lion', u'sleep', u'tonight', u'suit']
[u'govt', u'urg', u'gympi', u'highway', u'option']
[u'firefight', u'kill', u'blaze']
[u'firefight', u'threaten', u'protest', u'game']
[u'fishermen', u'want', u'talk', u'illeg', u'fish']
[u'fleme', u'look', u'ditch', u'supersub', u'rule', u'immedi']
[u'flint', u'steadi', u'earli', u'bogey']
[u'creditor', u'downcast', u'recov', u'fund']
[u'forestri', u'compani', u'buy', u'know', u'properti']
[u'frog', u'farm', u'aim', u'stop', u'endang', u'speci', u'croak']
[u'fund', u'target', u'race', u'club', u'upgrad']
[u'grandma', u'luge', u'take', u'olymp', u'case', u'court']
[u'group', u'aim', u'clarifi', u'timber', u'rumour']
[u'group', u'lobbi', u'govt', u'inland', u'rail', u'line', u'rout']
[u'haddin', u'continu', u'blue', u'recoveri']
[u'haitian', u'presidenti', u'support', u'celebr']
[u'hewitt', u'play', u'arthur', u'jose']
[u'hoon', u'chang', u'polic', u'power', u'seiz', u'car']
[u'hundr', u'dead', u'miss', u'philippin', u'landslid']
[u'hunter', u'water', u'spend', u'sewerag', u'scheme']
[u'infrastructur', u'woe', u'limit', u'wharf', u'access']
[u'injur', u'victim']
[u'interst', u'water', u'trade', u'help', u'farmer']
[u'iran', u'call', u'troop', u'pull', u'basra']
[u'task', u'forc', u'local', u'represent']
[u'israel', u'place', u'restrict', u'hama']
[u'judg', u'allow', u'detaine', u'freedom']
[u'keelti', u'predict', u'bali', u'relat', u'arrest']
[u'kerin', u'seek', u'probe']
[u'king', u'meet', u'tiger', u'grand', u'final']
[u'kiwi', u'american', u'lead', u'adelaid']
[u'kiwi', u'hatch']
[u'labor', u'predict', u'norfolk', u'revamp']
[u'labor', u'urg', u'reform', u'macfarlan', u'comment']
[u'lack', u'practic', u'blame', u'luge', u'calam']
[u'lack', u'worship', u'facil', u'challeng', u'council', u'say']
[u'latham', u'face', u'crusad']
[u'law', u'footbal', u'time', u'wast', u'toughen']
[u'lectur', u'plead', u'guilti', u'steal', u'student', u'money']
[u'lennon', u'confirm', u'elect', u'date']
[u'liverpool', u'drought', u'unit']
[u'local', u'bulk', u'bill', u'rat', u'state', u'rate']
[u'ant', u'macquari']
[u'bash', u'crash']
[u'charg', u'tamworth', u'polic', u'pursuit']
[u'die', u'hospit', u'mine', u'accid']
[u'face', u'court', u'sister', u'murder']
[u'guilti', u'zayat', u'kill']
[u'guilti', u'friend', u'murder']
[u'sentenc', u'import', u'child', u'porn']
[u'serious', u'hurt', u'crash']
[u'court', u'forb', u'stab']
[u'marin', u'past', u'commit', u'jet']
[u'market', u'slip', u'despit', u'higher', u'gold']
[u'math', u'need', u'listen', u'cultur']
[u'mayor', u'appear', u'court', u'briberi', u'charg']
[u'mcginti', u'back']
[u'readi', u'game']
[u'host', u'game', u'warm', u'event']
[u'meet', u'hear', u'opposit', u'jail']
[u'meet', u'hear', u'pulp', u'requir']
[u'meet', u'focus', u'wheatbelt', u'chang']
[u'middlesbrough', u'impress', u'stuttgart']
[u'miner', u'highlight', u'good', u'drill', u'result']
[u'minist', u'consid', u'hospit', u'combin']
[u'minist', u'offer', u'spill', u'compo', u'assur']
[u'minist', u'promis', u'action', u'mental', u'health', u'plan']
[u'minist', u'probe', u'medic', u'equip', u'dump', u'claim']
[u'minist', u'underlin', u'need', u'remot', u'health', u'centr']
[u'minist', u'decid', u'koolan', u'iron']
[u'ministri', u'reshuffl', u'frustrat']
[u'mint', u'theft', u'accus', u'releas', u'bail']
[u'charg', u'relat', u'cronulla', u'riot']
[u'need', u'alzheim', u'fight', u'say']
[u'park', u'close', u'aerial', u'cull']
[u'hop', u'road', u'minist', u'better']
[u'nasa', u'chief', u'warn', u'spaceflight', u'program']
[u'nation', u'push', u'pipelin', u'extens']
[u'corangamit', u'councillor', u'name', u'weekend']
[u'evid', u'crime', u'case', u'feder']
[u'rat', u'like', u'say', u'chief']
[u'player', u'meet', u'alic', u'local']
[u'treasur', u'criticis', u'feder', u'cut']
[u'project', u'pool', u'hit']
[u'seek', u'feder', u'help', u'cane', u'toad', u'evolut']
[u'number', u'foreign', u'boat', u'australian', u'water']
[u'opposit', u'urg', u'counsel', u'rebat']
[u'paedophil', u'releas', u'jail']
[u'pair', u'hospit', u'pile']
[u'passeng', u'urg', u'patient', u'termin']
[u'patient', u'highland', u'blue']
[u'pechstein', u'claim', u'eighth', u'olymp', u'medal']
[u'pedersen', u'win', u'skeleton', u'britain', u'celebr', u'silver']
[u'plan', u'document', u'detail', u'council', u'port', u'hedland']
[u'player', u'coach', u'quiz', u'belgian', u'match', u'fix', u'probe']
[u'plushenko', u'crown', u'olymp', u'champion']
[u'rebuff', u'effort', u'illeg', u'fish']
[u'polic', u'chief', u'beat', u'region', u'cooper']
[u'polic', u'clear', u'cheney', u'shoot', u'accid']
[u'polic', u'expect', u'patel', u'avoid', u'extradit']
[u'polic', u'ramp', u'porritt', u'murder', u'probe']
[u'polic', u'probe', u'deliber', u'gippsland', u'blaze']
[u'porn', u'entrepreneur', u'heroin', u'habit', u'court', u'tell']
[u'presid', u'happi', u'shoot', u'mishap', u'explan']
[u'prison', u'stab', u'chopstick']
[u'project', u'aim', u'boost', u'shire', u'sport', u'particip']
[u'public', u'ask', u'help', u'solv', u'seal', u'arrow', u'shoot']
[u'public', u'urg', u'train', u'game', u'action']
[u'govt', u'defend', u'water', u'levi', u'amidst', u'irrig', u'anger']
[u'rabbitoh', u'extend', u'cusack', u'contract']
[u'ranger', u'mission', u'save', u'endang', u'turtl']
[u'rare', u'kiwi', u'hatch']
[u'recov', u'hodg', u'name', u'squad']
[u'redback', u'impress', u'bull']
[u'report', u'call', u'hous', u'canberra']
[u'research', u'celebr', u'babi', u'potoroo', u'discoveri']
[u'research', u'expand', u'trial', u'bird', u'vaccin']
[u'reserv', u'bank', u'governor', u'give', u'green', u'light', u'cut']
[u'resid', u'urg', u'note', u'crimestopp', u'number']
[u'rice', u'grill', u'iraq', u'rebuild', u'pace', u'cost']
[u'rickett', u'london', u'final']
[u'river', u'allianc', u'concern', u'water', u'scheme']
[u'rspca', u'unhappi', u'overturn', u'anim', u'cruelti']
[u'vote', u'concern', u'schultz']
[u'russian', u'biathlet', u'send', u'pack', u'drug', u'posit']
[u'santo', u'warn', u'delay', u'burial', u'site', u'action']
[u'sign', u'water', u'trade', u'deal']
[u'servic', u'station', u'owner', u'unhappi', u'liquor', u'licenc']
[u'servic', u'rememb', u'high', u'profil', u'surgeon']
[u'sheen', u'guid', u'citi']
[u'socceroo', u'second', u'stringer', u'press', u'spot']
[u'solid', u'compani', u'profit', u'make', u'posit', u'impact', u'wall']
[u'state', u'wide', u'approach', u'expect', u'help', u'anti']
[u'strauss', u'readi', u'india', u'spin', u'challeng']
[u'studi', u'find', u'farm', u'worker', u'packet']
[u'studi', u'track', u'rail', u'corridor', u'contamin']
[u'summer', u'crop', u'forecast', u'accur', u'grain', u'grower']
[u'support', u'grow', u'public', u'hear', u'busselton']
[u'sydney', u'opera', u'hous', u'play', u'host', u'packer', u'farewel']
[u'sydney', u'trio', u'arrest', u'drug', u'charg']
[u'talk', u'continu', u'union']
[u'galleri', u'thrill', u'flag', u'offer']
[u'leader', u'flag', u'polit', u'battleground']
[u'tasmanian', u'poll', u'march']
[u'taxi', u'crackdown', u'see', u'driver', u'fire']
[u'teen', u'charg', u'shoot']
[u'teen', u'face', u'court', u'accus', u'riverland', u'rape']
[u'thoma', u'tell', u'survey', u'militari', u'sit', u'court', u'hear']
[u'thorn', u'join', u'exclus', u'centurion', u'club']
[u'women', u'debut', u'india']
[u'tiger', u'help', u'farmer', u'combat', u'feral', u'anim']
[u'volleybal', u'player', u'reach', u'final', u'gold', u'coast']
[u'townsvill', u'hospit', u'call', u'patient', u'capac']
[u'trial', u'plan', u'vaccin']
[u'tribut', u'flow', u'packer']
[u'truck', u'crash', u'prompt', u'renew', u'call', u'speed', u'limit']
[u'trucki', u'aim', u'break', u'road', u'train', u'world', u'record']
[u'turtl', u'research', u'say', u'moreton', u'toxic']
[u'chief', u'back', u'guantanamo', u'closur']
[u'union', u'fear', u'local', u'job', u'foreign', u'worker']
[u'train', u'station', u'open']
[u'unlicens', u'driver', u'interview', u'fatal', u'crash']
[u'upgrad', u'termin', u'open', u'tomorrow']
[u'pressur', u'close', u'guantanamo']
[u'veteran', u'game', u'plan', u'spark', u'fund', u'debat']
[u'volunt', u'ambul', u'offic', u'seek']
[u'wada', u'cheat']
[u'waratah', u'bring', u'bern']
[u'warn', u'deduct', u'claim']
[u'word', u'erupt', u'move', u'problem', u'tenant']
[u'warrior', u'clark', u'call', u'quit']
[u'warrior', u'trump', u'blue', u'wicket']
[u'wast', u'dump', u'panel', u'ask', u'visit', u'bendigo']
[u'waterbomb', u'pilot', u'die', u'crash']
[u'woodchip', u'export', u'termin', u'run']
[u'wool', u'market', u'hold', u'steadi']
[u'work', u'address', u'weir', u'safeti', u'concern']
[u'world', u'visit', u'sydney']
[u'cat', u'edg', u'chief']
[u'accus', u'bomb', u'plotter', u'breach', u'bail', u'condit']
[u'urg', u'step', u'rehab', u'focus', u'jail']
[u'effort', u'philippin']
[u'team', u'rush', u'philippin', u'dead', u'mudslid']
[u'anlezark', u'comm', u'game']
[u'athlet', u'australia', u'tight', u'lip', u'drug', u'claim']
[u'aussi', u'rolleston', u'trade', u'rugbi', u'fast', u'lane']
[u'aussi', u'hold', u'slim', u'advantag', u'royal', u'adelaid']
[u'aussi', u'snooker', u'player', u'ban', u'match', u'fix']
[u'aust', u'pledg', u'landslid', u'victim']
[u'bank', u'interest', u'back', u'convent', u'centr', u'plan']
[u'beatti', u'doctor', u'petit', u'campaign', u'label']
[u'coal', u'deal', u'fuel', u'talk', u'rail', u'tunnel']
[u'black', u'cap', u'thump', u'windi', u'open', u'dayer']
[u'blue', u'bring', u'clark']
[u'bomber', u'press', u'young', u'swan']
[u'face', u'court', u'fatal', u'shoot']
[u'brumbi', u'rooki', u'line', u'replac', u'injur', u'palavi']
[u'brumbi', u'sink', u'bull', u'gasp']
[u'camplin', u'launch', u'aerial', u'titl', u'defenc']
[u'cap', u'fourth', u'wnbl', u'titl']
[u'class', u'action', u'loom', u'westpoint', u'collaps']
[u'classi', u'hurrican', u'destroy', u'forc']
[u'clemenc', u'grant']
[u'communiti', u'claim', u'illeg', u'fish', u'cost']
[u'communiti', u'mourn', u'death', u'volunt', u'firefight']
[u'cousin', u'face', u'lose', u'captainci']
[u'crusad', u'red']
[u'death', u'australian', u'grant', u'clemenc', u'vietnam']
[u'domest', u'travel', u'boost', u'darwin', u'airport']
[u'dont', u'punish', u'palestinian', u'elect', u'hama', u'abba']
[u'eagl', u'gardin', u'notic']
[u'expert', u'fear', u'viral', u'hepat', u'epidem']
[u'expert', u'fear', u'world', u'hunger', u'rise']
[u'french', u'actress', u'name', u'bond', u'girl']
[u'frieden', u'sneak', u'snowboard', u'cross', u'gold']
[u'giant', u'fossil', u'penguin']
[u'gibson', u'win', u'skeleton', u'retir']
[u'girl', u'die', u'shoot', u'incid']
[u'govt', u'move', u'ahead', u'sydney', u'rail', u'link']
[u'govt', u'discuss', u'norfolk', u'financ']
[u'govt', u'unveil', u'home', u'plan', u'disabl']
[u'govt', u'urg', u'reassess', u'hick', u'case']
[u'grandma', u'luge', u'includ', u'result', u'list']
[u'group', u'question', u'cane', u'toad', u'evolut', u'studi', u'result']
[u'hewitt', u'win', u'aussi', u'battl']
[u'histor', u'pakistani', u'train', u'arriv', u'cheer', u'tear']
[u'iemma', u'urg', u'work', u'better', u'deal']
[u'ile', u'lead', u'open']
[u'indonesia', u'confirm', u'bird', u'death']
[u'indonesia', u'timor', u'leader', u'discuss', u'report']
[u'lennon', u'readi', u'elect']
[u'letter', u'bali', u'sentenc', u'ambassador']
[u'lisa', u'mari', u'presley', u'marri', u'guitarist']
[u'lobbi', u'save', u'heroin', u'smuggler']
[u'longev', u'fact', u'life', u'studi', u'say']
[u'macfarlan', u'criticis', u'split']
[u'major', u'medic', u'school', u'graduat', u'work']
[u'critic', u'condit', u'marathon', u'swim']
[u'massiv', u'downpour', u'drench', u'tennant', u'creek']
[u'media', u'challeng', u'govt', u'academ']
[u'memori', u'hold', u'bushfir', u'victim']
[u'merck', u'liabl', u'florida', u'man', u'death']
[u'mobil', u'captur', u'mourn', u'moment']
[u'monkey', u'magic', u'reviv']
[u'cross', u'countri', u'gold', u'estonia']
[u'motorcyclist', u'die', u'crash']
[u'boat', u'patrol', u'northern', u'australia']
[u'foreign', u'abduct', u'nigerian', u'attack']
[u'duti', u'polic', u'offic', u'catch', u'drink', u'drive']
[u'dead', u'accid']
[u'opposit', u'welcom', u'vietnam', u'clemenc']
[u'pakistan', u'thrash', u'aussi', u'reach', u'youth', u'world']
[u'pension', u'angri', u'postal', u'concess', u'cut']
[u'perth', u'polic', u'seiz', u'drug', u'asset']
[u'polic', u'search', u'long', u'escape']
[u'protest', u'kill', u'cartoon', u'demonstr']
[u'pyleva', u'receiv', u'year', u'dope']
[u'deserv', u'share', u'beatti', u'say']
[u'rabbitoh', u'retain', u'chariti', u'shield']
[u'ranger', u'complet', u'wnbl', u'trick']
[u'reuben', u'thorn', u'mark', u'connor', u'interview']
[u'rolton', u'lead', u'exampl', u'southern', u'star']
[u'russia', u'come', u'women', u'cross', u'countri']
[u'sabbatini', u'lead', u'california']
[u'sailor', u'succumb', u'hamstr', u'injuri']
[u'minist', u'die', u'cancer']
[u'shoot', u'victim', u'sorri', u'cheney', u'troubl']
[u'shot', u'fire', u'sydney', u'home']
[u'tanner', u'pleas', u'chang']
[u'liber', u'elect', u'campaign']
[u'premier', u'say', u'elect', u'bacon']
[u'regul', u'abort', u'drug', u'make', u'sens', u'tanner']
[u'tiger', u'domin', u'bushrang']
[u'tokelau', u'referendum', u'label', u'stupid', u'wast', u'money']
[u'trail', u'bike', u'rider', u'die', u'accid']
[u'face', u'court', u'assault']
[u'union', u'recommend', u'strike', u'boe', u'employe', u'return']
[u'join', u'search', u'survivor']
[u'unlik', u'quartet', u'game', u'limelight']
[u'fear', u'dead', u'philippin', u'landslid']
[u'lose', u'propanganda', u'qaeda', u'rumsfeld']
[u'marin', u'helicopt', u'crash', u'africa', u'coast']
[u'market', u'dip', u'ralli']
[u'vandal', u'damag', u'tourist', u'cave']
[u'woman', u'jail', u'credit', u'card', u'fraud']
[u'aamodt', u'win', u'super', u'aussi', u'bear', u'crash']
[u'abbott', u'seek', u'boost', u'organ', u'donat', u'rate']
[u'adam', u'say', u'british', u'mental']
[u'crew', u'helicopt', u'crash']
[u'asic', u'target', u'financi', u'planner', u'westpoint']
[u'astronom', u'compil', u'list', u'possibl', u'address']
[u'aussi', u'edg', u'lewi', u'franci']
[u'aussi', u'want', u'brazilian', u'bobsleigh', u'team', u'ban']
[u'austrian', u'jumper', u'soar', u'gold', u'olymp', u'hill']
[u'author', u'sell', u'word', u'chariti']
[u'beatti', u'feel', u'posit', u'bundaberg', u'hospit']
[u'beatti', u'minist', u'prepar', u'face', u'bundaberg']
[u'bird', u'case', u'confirm', u'india']
[u'bird', u'franc']
[u'bird', u'india', u'franc']
[u'bird', u'risk', u'grow', u'britain']
[u'bird', u'spread', u'continu']
[u'blue', u'blow', u'chanc', u'host', u'final']
[u'bosnian', u'film', u'surpris', u'golden', u'bear']
[u'brother', u'sister', u'victim']
[u'bulll', u'fight', u'redback']
[u'campbel', u'hail', u'alic', u'experi']
[u'cannavaro', u'see', u'juve', u'salvag', u'point']
[u'cartoon', u'protest', u'turn', u'dead', u'nigeria']
[u'circus', u'show', u'cancel', u'perform', u'injur']
[u'communiti', u'warn', u'violent', u'clash', u'poacher']
[u'communiti', u'devast', u'dead']
[u'consum', u'advoc', u'push', u'legal', u'action']
[u'crouch', u'goal', u'break', u'liverpool', u'jinx']
[u'curfew', u'impos', u'dead', u'nigeria', u'cartoon', u'riot']
[u'darwin', u'rememb', u'japanes', u'raid', u'anniversari']
[u'davi', u'make', u'histori', u'speedskat', u'victori']
[u'defrasn', u'triumph', u'men', u'pursuit']
[u'driver', u'action', u'dead']
[u'elliott', u'head', u'penrith']
[u'elliott', u'coach', u'panther']
[u'arrest', u'offic', u'injur', u'tri', u'break']
[u'dead', u'alleg']
[u'forc', u'lose', u'pelesasa', u'ankl', u'injuri']
[u'girl', u'rescu', u'blue', u'mountain', u'fall']
[u'govt', u'defend', u'emerg', u'servic', u'failur', u'publish']
[u'govt', u'move', u'protect', u'dragon', u'marin', u'life']
[u'govt', u'sixth', u'prison', u'escap']
[u'govt', u'urg', u'senior', u'public', u'servant', u'number']
[u'grant', u'bolster', u'cane', u'toad', u'invas', u'fight']
[u'hama', u'take', u'palestinian', u'parliament']
[u'hewitt', u'reach', u'jose', u'final']
[u'hope', u'fade', u'rescu', u'philippin', u'mudslid']
[u'hurrican', u'smith', u'month']
[u'iemma', u'defend', u'pay', u'upfront', u'infrastructur']
[u'illeg', u'fish', u'boat', u'intercept', u'shot', u'fire']
[u'indian', u'govt', u'say', u'case', u'human', u'bird']
[u'influenti', u'iraqi', u'cleric', u'sadr', u'reject', u'constitut']
[u'iraq', u'hunt', u'miss', u'german']
[u'israel', u'order', u'restrict', u'palestinian']
[u'italian', u'minist', u'quit', u'libyan', u'cartoon', u'riot']
[u'kostel', u'shrug', u'secur', u'combin', u'gold']
[u'labor', u'reveal', u'campaign', u'slogan']
[u'arrest', u'crash', u'kill']
[u'arrest', u'kill']
[u'charg', u'death']
[u'charg', u'mildura', u'crash']
[u'minist', u'dispos', u'keep', u'aust', u'troop', u'iraq']
[u'mix', u'reaction', u'rock', u'lobster', u'fisheri', u'plan']
[u'nepal', u'king', u'offer', u'talk', u'thousand', u'march', u'ralli']
[u'sport', u'stadium', u'build', u'perth']
[u'dead', u'wound', u'bomb', u'blast', u'philippin']
[u'opposit', u'question', u'church', u'pregnanc', u'counsel']
[u'organ', u'donat', u'campaign', u'launch']
[u'organis', u'defend', u'stag', u'swim', u'race', u'despit']
[u'oversea', u'train', u'doctor', u'target', u'cultur']
[u'parad', u'attend', u'disappoint', u'festiv', u'organis']
[u'paramed', u'aid', u'injur', u'blue', u'mountain']
[u'paramed', u'walk', u'injur', u'rafter', u'blue']
[u'parti', u'highlight', u'economi', u'health', u'campaign']
[u'philippin', u'landslid', u'applaud']
[u'pittman', u'lewi', u'spat', u'hurt', u'track', u'field']
[u'polic', u'dope', u'raid', u'mar', u'histor']
[u'polic', u'investig', u'rival', u'motorcycl', u'gang']
[u'poultri', u'farm', u'owner', u'die', u'suspect', u'bird']
[u'truck', u'driver', u'set', u'world', u'longest', u'road', u'train']
[u'rain', u'increas', u'locust', u'number']
[u'light', u'district', u'stag', u'open']
[u'red', u'pair', u'clear', u'injuri']
[u'rescuer', u'continu', u'effort', u'landslid']
[u'richard', u'claim', u'ralli', u'tasmania', u'crown']
[u'roll', u'stone', u'fan', u'rock', u'night', u'away', u'free', u'beach']
[u'ronaldinho', u'return', u'inspir', u'barca', u'victori']
[u'sabbatini', u'clear', u'wood', u'withdraw']
[u'govt', u'promis', u'continu', u'privatis']
[u'ranger', u'question', u'time', u'freighter', u'seizur']
[u'search', u'suspend', u'landslid', u'survivor']
[u'sheehan', u'win', u'open', u'play']
[u'shell', u'evacu', u'field', u'follow', u'attack']
[u'sixth', u'teen', u'die', u'mildura', u'crash']
[u'snowsil', u'win', u'oceania', u'triathlon']
[u'south', u'africa', u'ring', u'chang', u'australia', u'visit']
[u'southern', u'star', u'india']
[u'south', u'korea', u'strike', u'short', u'track', u'gold']
[u'strike', u'boe', u'worker', u'agre', u'return', u'work']
[u'sydney', u'scrape', u'grand', u'final']
[u'thief', u'drag', u'woman']
[u'thompson', u'add', u'socceroo', u'squad']
[u'threat', u'forc', u'pacif', u'region', u'polic', u'meet']
[u'tribut', u'flow', u'follow', u'minist', u'death']
[u'triumphant', u'capit', u'return', u'home', u'rous']
[u'pieter', u'sink', u'shark']
[u'hold', u'human', u'right', u'talk', u'russia']
[u'waratah', u'fight', u'sink', u'stormer']
[u'wilhelm', u'storm', u'biathlon', u'gold']
[u'world', u'vision', u'launch', u'landslid', u'appeal']
[u'abattoir', u'lock', u'worker', u'contract']
[u'accus', u'driver', u'famili', u'face', u'death', u'threat']
[u'firefight', u'head', u'snowi', u'blaze']
[u'age', u'care', u'provid', u'sue', u'flaw', u'tender', u'process']
[u'bounc']
[u'aussi', u'lose', u'appeal', u'brazilian', u'bobsledd']
[u'australia', u'meaner', u'howard']
[u'australia', u'strong', u'team', u'mare', u'nostrum', u'seri']
[u'australia', u'zealand', u'close', u'joint', u'world']
[u'aust', u'send', u'engin', u'philippin']
[u'author', u'aggress', u'dengu', u'mozzi']
[u'backbench', u'push', u'costello', u'cut']
[u'backbench', u'warn', u'iraq', u'wheat', u'mission']
[u'bali', u'lodg', u'appeal']
[u'beckham', u'readi', u'real', u'deal']
[u'cattl', u'feedlot', u'get', u'approv']
[u'billabong', u'defi', u'soft', u'retail', u'environ']
[u'biofuel', u'refineri', u'size', u'scale']
[u'bligh', u'reject', u'waterfront', u'develop', u'claim']
[u'bluescop', u'boss', u'upbeat', u'despit', u'profit', u'slump']
[u'bluescop', u'half', u'year', u'profit', u'plung']
[u'bodi', u'annerley', u'hous', u'blaze']
[u'boe', u'take', u'imag', u'disput']
[u'bomb', u'kill', u'wound', u'mosul']
[u'bomb', u'kill', u'iraq']
[u'boost', u'plan', u'wheatbelt', u'bait']
[u'border', u'fulli', u'secur', u'task', u'forc']
[u'boucher', u'attack', u'australia', u'home', u'tour']
[u'bridg', u'repair', u'work', u'month', u'away']
[u'bulk', u'bill', u'rat', u'rise']
[u'bull', u'tighten', u'hold', u'redback']
[u'bushfir', u'reduct', u'strategi', u'continu']
[u'busi', u'remind', u'work', u'safeti', u'measur']
[u'temporari', u'highway', u'speed', u'limit', u'reduct']
[u'crash', u'spark', u'grass']
[u'children', u'diet', u'iodin']
[u'china', u'toxic', u'spill', u'forc', u'water', u'suppli']
[u'chip', u'smaller', u'cheaper', u'research']
[u'clement', u'cap', u'dream', u'week', u'marseill', u'titl']
[u'coal', u'plan', u'concern', u'prompt', u'communiti', u'consult']
[u'coastal', u'develop', u'worri', u'ratepay', u'group']
[u'coff', u'council', u'consid', u'art', u'merger']
[u'colombian', u'armi', u'investig', u'alleg', u'abus']
[u'coonan', u'seek', u'answer', u'payphon', u'report']
[u'council', u'hop', u'continu', u'belmont', u'servic']
[u'councillor', u'divid', u'council', u'contractor', u'plan']
[u'cousin', u'quit', u'eagl', u'captainci']
[u'cousin', u'relinquish', u'eagl', u'captainci']
[u'cowboy', u'prove', u'good', u'warrior']
[u'croc', u'wrangler', u'skill', u'recognis']
[u'dairi', u'farmer', u'find', u'difficult', u'access']
[u'dept', u'overcom', u'smelli', u'school', u'problem']
[u'dept', u'educ', u'say', u'school', u'staff', u'report']
[u'disgrac', u'austrian', u'coach', u'mayer', u'sack']
[u'donat', u'philippin']
[u'dope', u'seek', u'polic', u'help', u'dope']
[u'doubt', u'cast', u'game', u'region', u'secur']
[u'driver', u'face', u'court', u'sixth', u'teen', u'die']
[u'drought', u'rate', u'subsidi', u'stay']
[u'dubbo', u'make', u'want', u'list']
[u'esper', u'get', u'polic', u'staff', u'assur']
[u'european', u'ambassador', u'seek', u'guantanamo', u'shutdown']
[u'europ', u'get', u'poor', u'mark', u'halt', u'speci', u'loss']
[u'exchang', u'fault', u'cut', u'broadband', u'servic']
[u'farmer', u'lead', u'massiv', u'indian', u'bird', u'cull']
[u'unfaz', u'adelaid', u'underhand', u'tactic']
[u'feder', u'air', u'teacher', u'shortag', u'fear']
[u'damag', u'hous']
[u'damag', u'toilet', u'paper', u'plant']
[u'firefight', u'contain', u'nation', u'park', u'blaze']
[u'kill']
[u'flag', u'burn', u'kit', u'offens', u'say']
[u'forecast', u'watch', u'gulf']
[u'speaker', u'like', u'lose', u'seat', u'elect', u'analyst']
[u'gaven', u'urg']
[u'cowboy', u'film', u'star', u'award']
[u'germani', u'controversi', u'swirl']
[u'gillespi', u'kasprowicz', u'content', u'test', u'tour']
[u'chanc', u'say', u'veteran', u'actor']
[u'govt', u'accus', u'fail', u'tackl', u'theft']
[u'govt', u'ask', u'paradis', u'assur']
[u'govt', u'defend', u'prosecut', u'santo', u'remain']
[u'govt', u'pump', u'bird', u'research']
[u'govt', u'beat', u'whyalla', u'desal', u'plant']
[u'grain', u'grower', u'await', u'board', u'elect', u'outcom']
[u'green', u'extend', u'state', u'coastal', u'reserv']
[u'group', u'begin', u'month', u'long', u'protest', u'iraq', u'invas']
[u'hansen', u'secur', u'elect']
[u'hardi', u'worker', u'accept', u'offer']
[u'heat', u'help', u'spread', u'whitefli', u'number']
[u'heavi', u'snow', u'halt', u'women', u'aerial']
[u'hewitt']
[u'higher', u'profit', u'what', u'pizza', u'maker']
[u'claim', u'sixth', u'life']
[u'hous', u'victim', u'die', u'sleep']
[u'howard', u'critic', u'minor', u'muslim']
[u'howard', u'reinforc', u'negat', u'stereotyp', u'muslim']
[u'howard', u'weigh', u'boe', u'disput']
[u'hang', u'parliament', u'forc', u'gunn', u'pulp', u'site']
[u'incom', u'protect', u'move', u'afoot', u'carer']
[u'india', u'power', u'pakistan']
[u'indigen', u'cultur', u'offer', u'mental', u'health', u'lesson']
[u'indigen', u'youngster', u'head', u'push', u'africa']
[u'indonesia', u'boost', u'bird', u'test', u'cull']
[u'inquiri', u'begin', u'offic', u'death']
[u'internet', u'smss', u'blame', u'crowd', u'parti']
[u'interview', u'hold', u'northern', u'grampian', u'spot']
[u'know', u'better', u'sailor']
[u'islam', u'jihad', u'leader', u'kill', u'nablus']
[u'isra', u'troop', u'kill', u'west', u'bank']
[u'itali', u'claim', u'cross', u'countri', u'relay', u'gold']
[u'japanes', u'tutor', u'admit', u'murder', u'student']
[u'put', u'trip', u'north', u'korea']
[u'knight', u'coach', u'happi', u'despit', u'loss']
[u'lack', u'worker', u'lead', u'mudcrab', u'shortag']
[u'lang', u'surpris', u'sack']
[u'late', u'cole', u'goal', u'edg', u'chelsea', u'past', u'colchest']
[u'lennon', u'defend', u'choic', u'home', u'renov']
[u'sayer', u'storm', u'british', u'chart']
[u'liber', u'promis', u'health', u'task', u'forc']
[u'liber', u'includ', u'region', u'road']
[u'liber', u'review', u'essenti', u'learn', u'curriculum']
[u'local', u'tribut', u'flow', u'robert']
[u'log', u'protest', u'block', u'forest', u'coup', u'access']
[u'macklin', u'discuss', u'apprenticeship', u'scheme']
[u'face', u'court']
[u'fight', u'life', u'hit', u'tree']
[u'rescu', u'marcoola', u'beach']
[u'free', u'drop', u'murder', u'case']
[u'mauresmo', u'retain', u'antwerp', u'titl']
[u'mayor', u'say', u'ambul', u'station', u'land', u'sell']
[u'mayor', u'contest', u'upper', u'hous', u'nation']
[u'mcarthur', u'river', u'plan', u'caus', u'communiti']
[u'mcenro', u'roll', u'year', u'jose']
[u'meet', u'focus', u'doctor', u'shortag', u'impact']
[u'mildura', u'mourn', u'teen', u'death']
[u'miner', u'trap', u'mexican', u'coal', u'blast']
[u'minist', u'call', u'telstra', u'account', u'payphon']
[u'minist', u'prepar', u'boe', u'case']
[u'minist', u'reject', u'ambul', u'station', u'worri']
[u'minist', u'want', u'review', u'claim', u'busselton']
[u'molloy', u'seek', u'preselect']
[u'murray', u'upset', u'hewitt', u'jose', u'final']
[u'nativ', u'titl', u'claim', u'area', u'extend']
[u'aquacultur', u'licenc', u'grab']
[u'job', u'highlight', u'better', u'time', u'rice', u'industri']
[u'newman', u'releas', u'hale', u'bridg', u'design', u'option']
[u'saleyard', u'open', u'busi']
[u'york', u'museum', u'return', u'loot', u'treasur']
[u'nigeria', u'seek', u'negoti', u'releas', u'hostag']
[u'norfolk', u'self', u'govern', u'chang']
[u'norwegian', u'tourist', u'injur', u'collis']
[u'keen', u'continu', u'trial']
[u'investig', u'nitschk', u'euthanasia', u'workshop']
[u'team', u'earli', u'lead', u'super']
[u'pair', u'rescu', u'unit', u'blaze']
[u'palestinian', u'shrug', u'financi', u'restrict']
[u'parafield', u'airport', u'secur', u'upgrad']
[u'payphon', u'indigen', u'communiti', u'stay']
[u'pedestrian', u'council', u'seek', u'road', u'trauma', u'answer']
[u'philippin', u'cut', u'landslid', u'miss', u'list']
[u'philippin', u'rescu', u'effort', u'focus', u'buri', u'school']
[u'plan', u'afoot', u'opal', u'teach', u'facil']
[u'critic', u'extremist', u'muslim']
[u'polic', u'continu', u'school', u'zone', u'speed', u'crackdown']
[u'policeman', u'face', u'court', u'drink', u'drive', u'charg']
[u'polic', u'drink', u'driver']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'seek', u'crash', u'wit']
[u'polic', u'park', u'victim']
[u'pont', u'wari', u'hostil', u'protea']
[u'program', u'aim', u'bowl', u'giant', u'goldfish']
[u'prosecut', u'finish', u'thoma', u'terror', u'trial']
[u'public', u'ask', u'watch', u'injur', u'glider']
[u'ralli', u'call', u'action', u'address', u'lake', u'pollut']
[u'rann', u'expect', u'poll']
[u'rann', u'outlin', u'vision', u'ahead', u'elect']
[u'ratepay', u'warn', u'higher', u'rat', u'like']
[u'report', u'seek', u'fisheri', u'account']
[u'research', u'sign', u'project', u'consid']
[u'research', u'target', u'threaten', u'whale', u'shark']
[u'resid', u'protest', u'log', u'snub']
[u'resid', u'warn', u'blue', u'green', u'alga']
[u'resign', u'wont', u'improv', u'ferri', u'servic', u'opposit']
[u'revitalis', u'project', u'nomin', u'award']
[u'road', u'accid', u'polic', u'busi']
[u'road', u'death', u'spark', u'polic', u'safeti', u'warn']
[u'rule', u'chang', u'pressur', u'interchang', u'bench', u'voss']
[u'academ', u'bewild', u'petrol', u'sniff', u'inquiri']
[u'sailor', u'ban', u'fin', u'nightclub', u'incid']
[u'saint', u'ball', u'skipper']
[u'school', u'plan', u'ensur', u'children', u'keep', u'busi']
[u'scott', u'fall', u'short', u'california']
[u'selector', u'mcgrath', u'ultimatum']
[u'shoot', u'death', u'prompt', u'warn']
[u'short', u'term', u'guarante', u'maryborough', u'emerg', u'dept']
[u'site', u'offer', u'medic', u'research', u'centr']
[u'bodi', u'wreck', u'plane', u'iraq']
[u'snowi', u'festiv', u'date', u'chang', u'prove', u'winner']
[u'southern', u'star', u'thrash', u'india']
[u'south', u'west', u'tafe', u'unhappi', u'colleg', u'train']
[u'super', u'mario', u'come', u'valencia', u'rescu']
[u'sydney', u'drown', u'beach']
[u'sydney', u'polic', u'investig', u'separ', u'shoot']
[u'elect', u'manag', u'econom', u'prosper']
[u'labor', u'shock', u'telstra', u'payphon', u'plan']
[u'tasmanian', u'urg', u'boost', u'organ', u'donat', u'rate']
[u'telstra', u'seek', u'payphon', u'cut']
[u'telstra', u'phone']
[u'telstra', u'use', u'sticker', u'canva', u'payphon', u'cut']
[u'thousand', u'troop', u'join', u'philippin']
[u'gavel', u'wrap', u'brumbi', u'bull', u'match']
[u'timmer', u'rebound', u'speed', u'skate', u'gold']
[u'toad', u'march', u'closer', u'border']
[u'tollner', u'confid', u'commonwealth', u'fund', u'oncolog']
[u'totti', u'injuri', u'blow', u'itali']
[u'trundl', u'medic', u'servic', u'track']
[u'showcas', u'albani', u'worldwid', u'audienc']
[u'iraqi', u'kill', u'wound', u'baghdad', u'bomb']
[u'kidnap', u'macedonian', u'releas', u'iraq']
[u'awar', u'wheat', u'import', u'levi', u'cole', u'inquiri', u'hear']
[u'hunt', u'lotteri', u'winner']
[u'militari', u'personnel', u'kill', u'crash', u'djibouti']
[u'wine', u'group', u'tour']
[u'vandal', u'power']
[u'victorian', u'drop', u'power', u'bill']
[u'vietnam', u'court', u'set', u'date', u'glitter', u'child']
[u'week', u'focus', u'mackay', u'tourism']
[u'wit', u'death', u'kill', u'accid', u'inquiri']
[u'workshop', u'accid', u'rate']
[u'candid', u'molloy', u'criticis', u'chanc']
[u'yarralumla', u'document', u'withhold', u'say', u'opposit']
[u'zinifex', u'spend', u'hobart', u'smelter', u'upgrad']
[u'zonal', u'rebat', u'hike', u'boost', u'popul']
[u'bodi', u'brazilian', u'dump']
[u'extra', u'troop', u'pledg', u'afghanistan']
[u'navi', u'base', u'revamp']
[u'aapt', u'head', u'go', u'restructur']
[u'jail', u'month']
[u'age', u'abus', u'claim', u'prompt', u'call', u'mandatori']
[u'fear', u'cousin', u'stunt', u'encourag', u'copycat']
[u'aid', u'activist', u'slam', u'chines', u'inact', u'blood']
[u'albani', u'economi', u'benefit', u'woodchip']
[u'alcan', u'worker', u'get', u'suspend', u'sentenc', u'drug']
[u'alinta', u'eye', u'merger']
[u'alinta', u'share', u'resum', u'trade']
[u'alleg', u'illeg', u'fish', u'boat', u'catch', u'northern']
[u'back', u'mandatori', u'report', u'elder', u'abus']
[u'chief', u'hear', u'local', u'worri']
[u'ambassador', u'inquir', u'iraqi', u'payment', u'document']
[u'ambul', u'servic', u'defend', u'respons', u'time']
[u'american', u'diver', u'die', u'reef', u'mishap']
[u'aristocrat', u'leisur', u'report', u'rise', u'profit']
[u'ausaid', u'budget', u'slush', u'fund']
[u'aussi', u'bobsledd', u'halfway', u'point']
[u'aust', u'boost', u'vanuatu', u'order']
[u'aust', u'resort', u'manag', u'face', u'indonesian', u'drug', u'charg']
[u'austrian', u'crown', u'king', u'olymp', u'hill']
[u'kickback', u'evid', u'mount', u'govt', u'rudd']
[u'baggag', u'handler', u'sentenc', u'drug', u'smuggler']
[u'bali', u'lodg', u'appeal', u'traffic']
[u'beef', u'pressur', u'lamb', u'rise']
[u'bendem', u'water', u'restrict', u'remain']
[u'brother', u'watch', u'voss', u'warn']
[u'bike', u'hope', u'jongewaard', u'shrug', u'train', u'crash']
[u'bird', u'wreak', u'havoc', u'india', u'poultri', u'industri']
[u'blast', u'rock', u'chappl', u'lane', u'workshop']
[u'bluescop', u'rule', u'port', u'kembla', u'sell']
[u'boe', u'ask', u'feder', u'charg']
[u'bomb', u'concern', u'delay', u'retir', u'villag', u'plan']
[u'bowl', u'club', u'develop', u'pass', u'council']
[u'british', u'historian', u'irv', u'jail', u'holocaust']
[u'british', u'minist', u'urg', u'iraq', u'build', u'unifi']
[u'budget', u'fund', u'expect', u'rochest', u'hospit']
[u'bull', u'swamp', u'redback']
[u'cabinet', u'discuss', u'qanta', u'singapor', u'airlin']
[u'cabinet', u'rule', u'rout', u'competit']
[u'canada', u'defend', u'hockey', u'titl']
[u'canoeist', u'triathlet', u'share', u'award']
[u'crash', u'polic', u'chase']
[u'crash', u'victim', u'succumb', u'injuri']
[u'carrick', u'stud', u'record', u'yearl', u'price']
[u'sale', u'rise', u'despit', u'declin']
[u'coast', u'welcom', u'japanes', u'tourist', u'group']
[u'cole', u'appeal', u'public', u'help', u'food']
[u'cole', u'inquiri', u'call', u'evid']
[u'comment', u'seek', u'pipelin', u'plan', u'term']
[u'continu', u'drink', u'drive', u'baffl', u'polic']
[u'council', u'ask', u'wooli', u'sunday', u'trade']
[u'council', u'consid', u'option', u'tackl', u'antisoci']
[u'councillor', u'seek', u'grey', u'water', u'standard']
[u'cowboy', u'quit', u'race', u'princ', u'target', u'murray']
[u'crime', u'rate', u'fall', u'monaro', u'region']
[u'cross', u'countri', u'pair', u'clear', u'race']
[u'custom', u'power', u'respit']
[u'custom', u'ask', u'off', u'suspici']
[u'debnam', u'handl', u'north', u'coast', u'issu']
[u'defenc', u'offer', u'shoalwat', u'assur']
[u'dept', u'tri', u'access', u'dead', u'man', u'flat', u'say', u'minist']
[u'derail', u'affect', u'prospector', u'train', u'servic']
[u'court', u'delay']
[u'dragon', u'sign', u'promis', u'young']
[u'dragway', u'move', u'closer', u'realiti']
[u'drink', u'drive', u'messag', u'sink']
[u'driver', u'die', u'highway', u'crash']
[u'embarrass', u'sailor', u'hop']
[u'european', u'agricultur', u'minist', u'discuss', u'bird']
[u'european', u'missil', u'warn', u'contract']
[u'farmer', u'consid', u'leas', u'option', u'properti', u'price']
[u'farmer', u'worri', u'billiton', u'explor']
[u'fatal', u'brisban', u'hous', u'suspici', u'polic']
[u'run', u'scar', u'kosmina', u'claim']
[u'femal', u'motorcyclist', u'gear', u'world', u'record']
[u'filipino', u'militari', u'offic', u'arrest', u'amid', u'unrest']
[u'fire', u'rage', u'south', u'west']
[u'travel', u'scan', u'diseas']
[u'forc', u'lose', u'pelesasa', u'season']
[u'fruit', u'grower', u'face', u'receivership']
[u'fund', u'shortfal', u'worri', u'harbour', u'committe']
[u'funer', u'servic', u'hold', u'philippin', u'landslid']
[u'game', u'volunt', u'leav', u'pocket']
[u'gippsland', u'power', u'bill', u'drop']
[u'govern', u'warn', u'snowi', u'compo']
[u'govt', u'award', u'pipelin', u'tender']
[u'govt', u'potti', u'plant', u'reno', u'labor']
[u'govt', u'reject', u'opposit', u'health', u'task', u'forc', u'plan']
[u'govt', u'wont', u'transfer', u'fund', u'cancer', u'centr']
[u'group', u'oppos', u'forest', u'hunt', u'trial']
[u'hall', u'fame', u'honour', u'music', u'broom', u'brother']
[u'health', u'domin', u'campaign']
[u'henin', u'reveal', u'open', u'agoni']
[u'henriqu', u'call', u'blue', u'final', u'squad']
[u'herron', u'appoint', u'drug', u'council', u'chairman']
[u'highway', u'harass', u'drive', u'driver', u'drink', u'court', u'tell']
[u'hop', u'fade', u'philippin', u'rescu', u'mission']
[u'hospit', u'keep', u'communiti', u'demand']
[u'illeg', u'fish', u'hamper', u'communiti', u'busi']
[u'iluka', u'record', u'loss']
[u'industri', u'reject', u'mandatori', u'report', u'elder', u'abus']
[u'iraqi', u'minist', u'surviv', u'bomb', u'attack']
[u'judd', u'frontrunn', u'eagl', u'captainci']
[u'labor', u'call', u'pacif', u'twin', u'citi', u'agreement']
[u'leitchvill', u'woman', u'celebr', u'birthday']
[u'local', u'govt', u'applaud', u'fund', u'breakthrough']
[u'local', u'vietnam', u'vet', u'join', u'global', u'bodi']
[u'malaysia', u'cull', u'chicken', u'halt', u'bird']
[u'mallard', u'compo', u'decis', u'hang', u'probe']
[u'charg', u'nurs', u'home', u'abus']
[u'face', u'amphetamin', u'charg']
[u'face', u'court', u'polic', u'assault']
[u'fin', u'cockfight', u'racket']
[u'jail', u'embezzl']
[u'rescu', u'mountain', u'fall']
[u'court', u'duti', u'policeman', u'assault']
[u'use', u'phone', u'spark', u'creek', u'rescu']
[u'mass', u'funer', u'philippin', u'landslid', u'victim']
[u'mayor', u'call', u'abattoir', u'industri', u'disput']
[u'meet', u'highlight', u'plantat', u'forestri', u'expans']
[u'meet', u'shed', u'light', u'solar', u'citi']
[u'mildura', u'crash', u'victim', u'surgeri']
[u'mildura', u'crash', u'victim', u'undergo', u'surgeri']
[u'miller', u'fine', u'tune', u'ahead', u'blue', u'clash']
[u'minist', u'open', u'mind', u'elder', u'abus', u'prevent']
[u'miss', u'safe']
[u'criticis', u'pension', u'mail', u'decis']
[u'troop', u'send', u'afghanistan']
[u'moscow', u'talk', u'fail', u'seal', u'iran', u'nuclear', u'deal']
[u'call', u'mum', u'remind', u'adopt', u'option']
[u'commiss', u'highway', u'work']
[u'reject', u'forest', u'log', u'consult', u'claim']
[u'need', u'better', u'promot', u'democrat']
[u'offload', u'foreign', u'oper']
[u'nake', u'rambler', u'get', u'dress', u'marathon', u'walk']
[u'nation', u'park', u'group', u'back', u'expans']
[u'nation', u'candid', u'wheat', u'singl', u'desk']
[u'newcastl', u'hand', u'daunt', u'trip', u'chelsea']
[u'england', u'share', u'nation', u'park']
[u'health', u'commiss', u'remain', u'independ']
[u'sniffabl', u'fuel', u'compulsori', u'ausfuel']
[u'nrma', u'push', u'north', u'coast', u'road', u'fund']
[u'opposit', u'dismiss', u'public', u'sector', u'stress', u'claim']
[u'organ', u'compound', u'mysteri', u'sick']
[u'park', u'expans', u'includ', u'indigen', u'site']
[u'parti', u'roll', u'major', u'polici']
[u'parti', u'urg', u'reveal', u'super', u'fund', u'plan']
[u'patel', u'patient', u'advoc', u'contest', u'state', u'elect']
[u'payphon', u'continu', u'remov', u'telstra']
[u'perton', u'quit', u'polit']
[u'petrol', u'sniff', u'probe', u'begin', u'hear']
[u'philippin', u'recoveri', u'effort', u'continu']
[u'plan', u'afoot', u'croc', u'warn', u'sign']
[u'declin', u'cole', u'invit']
[u'polic', u'fear', u'break', u'hill', u'ecstasi']
[u'polic', u'seek', u'wit', u'bash']
[u'poultri', u'produc', u'seek', u'bird', u'educ']
[u'primari', u'industri', u'recruit', u'studi']
[u'prison', u'sieg', u'ringlead', u'sentenc', u'increas']
[u'product', u'boost', u'lift', u'onesteel', u'profit']
[u'govt', u'gather', u'expert', u'help', u'address', u'road']
[u'rann', u'elect', u'campaign', u'includ', u'earli', u'trip']
[u'rare', u'bird', u'leas', u'life']
[u'rehabilit', u'facil', u'petrol', u'sniffer']
[u'resid', u'face', u'water', u'restrict']
[u'resid', u'closer', u'afford']
[u'resourc', u'continu', u'boost']
[u'respons', u'outlin', u'council', u'woe']
[u'road', u'minist', u'urg', u'highway', u'hand']
[u'erupt', u'liber', u'spend', u'figur']
[u'russian', u'pair', u'danc', u'gold']
[u'sailor', u'arriv', u'home']
[u'sale', u'rep', u'engin', u'trade', u'short', u'suppli', u'survey']
[u'liber', u'plan', u'slash', u'public', u'servic', u'job']
[u'scientist', u'trial', u'seawe', u'diabet', u'treatment']
[u'seawe', u'coat', u'insulin', u'offer', u'diabet', u'treatment']
[u'sharehold', u'resign']
[u'shire', u'deputi', u'presid', u'quit']
[u'singapor', u'airlin', u'reject']
[u'singapor', u'elbow', u'tussl']
[u'skill', u'worker', u'import', u'pipelin']
[u'south', u'australian', u'elect', u'campaign', u'begin']
[u'spenc', u'cast', u'doubt', u'polic', u'beach', u'patrol']
[u'stardust', u'sampl', u'microscop']
[u'stosur', u'luczak', u'tumbl', u'earli', u'memphi']
[u'suspect', u'mother', u'ship', u'charg', u'come']
[u'sydney', u'exhibit', u'showcas', u'self', u'portrait']
[u'activist', u'plan', u'stand', u'independ']
[u'govt', u'urg', u'health', u'money']
[u'teen', u'front', u'court', u'fatal', u'shoot']
[u'telstra', u'ask', u'list', u'payphon', u'cut']
[u'telstra', u'payphon', u'plan', u'creat', u'region', u'concern']
[u'telstra', u'consult', u'public', u'remov', u'payphon']
[u'telstra', u'urg', u'clarifi', u'phone', u'plan']
[u'aussi', u'field']
[u'terror', u'trial', u'juri', u'urg', u'discard', u'prejudic']
[u'bodi', u'month', u'death']
[u'thorp', u'battl', u'bronchiti', u'game', u'lead']
[u'time', u'tough', u'road', u'death', u'summit', u'tell']
[u'toll', u'vow', u'continu', u'takeov']
[u'tourism', u'concern', u'aris', u'fire']
[u'travel', u'lose', u'pacif', u'lock', u'singapor']
[u'truck', u'stop', u'ahead', u'year']
[u'call', u'transport', u'compani', u'hold']
[u'union', u'predict', u'longer', u'time', u'meatwork']
[u'program', u'give', u'student', u'access', u'primari']
[u'unlov', u'ronaldo', u'readi', u'quit', u'real']
[u'veteran', u'vidmar', u'bahrain', u'clash']
[u'victorian', u'age', u'care', u'abus']
[u'chang', u'face', u'week', u'labor']
[u'bushfir', u'control']
[u'wag', u'pressur', u'hurt', u'small', u'busi', u'growth', u'acci']
[u'milk', u'supplier', u'seek', u'price', u'increas']
[u'resid', u'warn', u'alfalfa', u'sprout', u'salmonella']
[u'warn', u'shrug', u'boucher', u'remark']
[u'warrior', u'investig', u'salari']
[u'water', u'corp', u'defend', u'standard', u'despit', u'failur']
[u'weak', u'consum', u'spend', u'hit', u'cole', u'myer']
[u'welfar', u'check', u'urg', u'public', u'hous', u'tenant']
[u'welfar', u'worker', u'face', u'court', u'indec', u'deal']
[u'wembley', u'readi', u'multiplex', u'tell']
[u'wild', u'attack', u'prompt', u'call', u'reintroduct']
[u'windsor', u'attack', u'telstra', u'payphon']
[u'winegrap', u'grower', u'consid', u'singl', u'desk']
[u'wineri', u'contend', u'burn']
[u'woman', u'die', u'highway', u'crash']
[u'worker', u'hand', u'crush', u'nhill']
[u'worthington', u'win', u'nbls', u'rooki', u'gong']
[u'class', u'action', u'start']
[u'prison', u'die', u'custodi', u'report']
[u'abetz', u'committ', u'resourc', u'combat', u'illeg']
[u'accc', u'ask', u'probe', u'sunbeam', u'grower', u'price']
[u'colleg', u'popular', u'south', u'west']
[u'age', u'care', u'worker', u'intimid', u'silenc', u'union']
[u'alinta', u'share', u'merger', u'propos']
[u'task', u'forc', u'seek', u'work', u'chang', u'feedback']
[u'head', u'find', u'rural', u'health', u'servic', u'rack']
[u'antarct', u'penguin', u'excit', u'scientist']
[u'aquacultur', u'worker', u'continu', u'industri', u'unrest']
[u'arrest', u'expect', u'borroloola', u'riot']
[u'arthur', u'set', u'roddick', u'clash']
[u'aussi', u'carter', u'skate', u'competit']
[u'aust', u'closer', u'singl', u'market']
[u'aust', u'woman', u'arrest', u'indonesia', u'drug', u'charg']
[u'author', u'marin', u'park', u'committe']
[u'face', u'iraq', u'deleg', u'dump']
[u'place', u'iraq', u'deleg', u'doubt']
[u'baghdad', u'market', u'bomb', u'kill']
[u'bangladesh', u'win', u'lanka']
[u'beach', u'crowd', u'lifesav', u'busi']
[u'beatti', u'tell', u'stop', u'whing']
[u'black', u'cap', u'edg', u'windi', u'wicket']
[u'blast', u'aim', u'nato', u'kill', u'civilian']
[u'blue', u'focus', u'preseason']
[u'boe', u'stalem', u'possibl', u'say', u'union']
[u'breast', u'cancer', u'foundat', u'boost', u'research', u'spend']
[u'brilliant', u'henri', u'goal', u'give', u'arsenal', u'shock']
[u'buchanan', u'confid', u'troubl', u'free', u'tour']
[u'busi', u'surpris', u'safeti', u'inspect']
[u'busi', u'initi', u'strengthen', u'tweed', u'gold', u'coast']
[u'medic', u'internship']
[u'canada', u'secur', u'iraq', u'wheat', u'deal', u'report']
[u'cannabi', u'crop', u'nation', u'park']
[u'casino', u'boost', u'skyciti', u'half', u'year', u'profit']
[u'cruelti', u'warrant', u'stronger', u'penalti', u'rspca']
[u'class', u'action', u'launch', u'westpoint', u'invest']
[u'clinton', u'sign', u'fund', u'agreement', u'aust']
[u'closer', u'news']
[u'coal', u'train', u'go', u'high', u'tech']
[u'communiti', u'urg', u'unit', u'address', u'concern']
[u'communiti', u'gather', u'farewel', u'indigen', u'elder']
[u'communiti', u'store', u'consid', u'sue']
[u'compani', u'result', u'boost', u'market']
[u'concern', u'air', u'polic', u'game', u'deploy']
[u'construct', u'activ', u'slow']
[u'cooper', u'shin', u'aerial', u'qualifi']
[u'coron', u'investig', u'babi', u'death']
[u'council', u'face', u'court', u'fraud', u'charg']
[u'council', u'expect', u'calm', u'accept', u'grey', u'water']
[u'council', u'green', u'light', u'power', u'station']
[u'councillor', u'reject', u'code', u'conduct', u'probe']
[u'council', u'seek', u'passeng', u'shelter', u'plan']
[u'council', u'concern', u'polic', u'number']
[u'council', u'discuss', u'alcohol', u'restrict', u'chang']
[u'council', u'tough', u'overdu', u'water', u'bill']
[u'council', u'wont', u'increas', u'airport', u'passeng', u'charg']
[u'court', u'delay', u'concern', u'dont', u'surpris', u'societi']
[u'crime', u'stopper', u'success', u'central']
[u'crosbi', u'help', u'nation', u'analyst']
[u'csiro', u'review', u'respons', u'process', u'wake']
[u'profit', u'jump', u'forecast', u'upgrad']
[u'cullen', u'confid', u'redback', u'rebound']
[u'dairi', u'industri', u'urg', u'boost', u'export', u'asia']
[u'david', u'jone', u'report', u'sale', u'retreat']
[u'dead', u'whale', u'pose', u'health', u'risk']
[u'death', u'hare', u'krishna', u'retreat', u'investig']
[u'doctor', u'walkout', u'delay', u'californian', u'execut']
[u'grill', u'court', u'delay']
[u'driver', u'accus', u'tri', u'cyclist']
[u'eagl', u'rush', u'captainci', u'decis']
[u'email', u'scam', u'target', u'mastercard', u'custom']
[u'fake', u'licenc', u'adelaid', u'bank']
[u'farmer', u'concern', u'branch', u'line']
[u'farm', u'group', u'quiz', u'elect', u'candid']
[u'fear', u'hold', u'local', u'irrig', u'industri']
[u'firefight', u'monitor', u'south', u'west', u'blaze']
[u'flood', u'farmer', u'face', u'salin', u'woe']
[u'foley', u'condemn', u'opposit', u'public', u'sector', u'cut']
[u'food', u'label', u'support', u'dismiss', u'research']
[u'manag', u'admit', u'knowledg', u'kickback']
[u'bosnian', u'serb', u'command', u'mladic', u'report']
[u'premier', u'opposit', u'leader', u'warn']
[u'road', u'train', u'record', u'holder']
[u'forum', u'reduc', u'communiti', u'violenc']
[u'fund', u'boost', u'boy', u'learn', u'outcom']
[u'fund', u'magnet', u'airport', u'secur', u'boost']
[u'geld', u'show', u'precis', u'time']
[u'german', u'biathlet', u'strike', u'relay', u'gold']
[u'germani', u'women', u'bobsleigh', u'gold', u'aussi']
[u'cronulla', u'adversari', u'talk', u'say', u'clinton']
[u'gilmor', u'injur', u'geelong', u'stage']
[u'gottwald', u'claim', u'nordic', u'combin', u'gold']
[u'govt', u'pour', u'cold', u'water', u'licenc', u'claim']
[u'govt', u'urg', u'halv', u'water']
[u'govt', u'tell', u'iraqi', u'kickback', u'demand']
[u'grain', u'corp', u'readi', u'export', u'market']
[u'green', u'worker', u'vote']
[u'ground', u'helicopt']
[u'group', u'unhappi', u'develop', u'plan']
[u'guard', u'watch', u'alburi', u'rank']
[u'health', u'educ', u'spend', u'rein', u'stanhop']
[u'health', u'minist', u'challeng', u'colleg', u'surgeon']
[u'heat', u'ruin', u'avocado', u'crop']
[u'helicopt', u'miss']
[u'howard', u'move', u'reassur', u'wheat', u'farmer']
[u'ierodiaconou', u'face', u'battl', u'save', u'career']
[u'indigen', u'affair', u'minist', u'urg', u'dialogu']
[u'indigen', u'cricket', u'alic']
[u'inquiri', u'hear', u'dept', u'tell', u'rort', u'attempt']
[u'insur', u'assess', u'commerci', u'hotel', u'blaze', u'damag']
[u'investig', u'continu', u'crane', u'accid']
[u'investig', u'head', u'site', u'fatal', u'chopper', u'crash']
[u'investig', u'visit', u'fatal', u'chopper', u'crash', u'site']
[u'ioan', u'add', u'forc', u'injuri', u'woe']
[u'iraq', u'bomb', u'kill']
[u'italian', u'hero', u'win', u'speed', u'skate', u'gold']
[u'jackson', u'choos', u'asia', u'wnbl']
[u'jail', u'abalon', u'poacher', u'collaps', u'court']
[u'kasper', u'dizzi', u'knock', u'test', u'door']
[u'killer', u'refus', u'parol', u'teen', u'slay']
[u'labor', u'lib', u'promis', u'extra', u'polic']
[u'labor', u'commit', u'art', u'precinct']
[u'minut', u'chang', u'delay', u'wilton', u'park', u'develop']
[u'lawyer', u'long', u'wait', u'westpoint', u'investor']
[u'lawyer', u'year', u'westpoint', u'investor']
[u'leas', u'issu', u'close', u'roadhous']
[u'lightn', u'wind', u'caus', u'havoc']
[u'lindberg', u'quit', u'post']
[u'local', u'govt', u'group', u'attack', u'payphon', u'plan']
[u'lock', u'worker', u'futur', u'clearer', u'today']
[u'mackay', u'doubt', u'poll', u'result']
[u'mackay', u'secur', u'obstetrician']
[u'malaysian', u'urg', u'aust', u'promot', u'religi']
[u'custodi', u'shoot', u'fire', u'fight']
[u'marin', u'park', u'fish', u'restrict', u'reduc', u'job']
[u'mcguigan', u'simeon', u'profit', u'halv']
[u'meet', u'focus', u'public', u'transport', u'link']
[u'meet', u'focus', u'reef', u'rezon', u'compo']
[u'mildura', u'prepar', u'teen', u'crash', u'victim', u'funer']
[u'minist', u'admit', u'nurs', u'home', u'complaint']
[u'minist', u'disappoint', u'surgic', u'traine']
[u'minist', u'say', u'marin', u'park', u'protest', u'misguid']
[u'minist', u'address', u'worker', u'shortag', u'issu']
[u'mooney', u'say', u'rule', u'promot', u'flood']
[u'job', u'meatwork', u'close']
[u'townsvill', u'troop', u'head', u'afghanistan']
[u'angri', u'gaven', u'elect']
[u'oppos', u'geocentr', u'renam']
[u'want', u'border', u'issu', u'resolv']
[u'warn', u'disast', u'water', u'weed', u'outbreak']
[u'multiplex', u'reject', u'fine', u'report']
[u'nevill', u'fin', u'wild', u'goal', u'celebr']
[u'board', u'member', u'announc']
[u'moora', u'hospit', u'open', u'door']
[u'link', u'kickback', u'cabl']
[u'norfolk', u'look', u'self', u'govern', u'plan']
[u'sign', u'chopper', u'crash', u'survivor', u'polic']
[u'sport', u'centr', u'gatton']
[u'govt', u'stress', u'mental', u'ill', u'claim']
[u'seek', u'indigen', u'econom', u'rescu', u'plan']
[u'capitalis', u'climat', u'chang', u'confer', u'tell']
[u'master', u'travel', u'interst']
[u'optus', u'target', u'telstra', u'payphon']
[u'outback', u'challeng', u'promis', u'break', u'hill', u'spend']
[u'owen', u'track', u'comeback']
[u'pacif', u'island', u'record', u'level', u'rise']
[u'parti', u'urg', u'focus', u'fund', u'special', u'need']
[u'payphon', u'remov', u'plan', u'spark', u'safeti', u'concern']
[u'profit', u'despit', u'achiev']
[u'petrol', u'price', u'soar', u'coober', u'pedi']
[u'petrol', u'sniff', u'stop', u'hunger', u'inquiri', u'tell']
[u'philippin', u'armi', u'link', u'offic', u'coup', u'plot']
[u'plan', u'wollongong', u'tourism', u'centr', u'track']
[u'deputi', u'address', u'victorian', u'wheat', u'ralli']
[u'defens', u'scandal']
[u'throw', u'support', u'liber']
[u'polic', u'hunt', u'serial', u'rapist', u'canberra']
[u'polic', u'seek', u'help', u'hous', u'victim', u'friend']
[u'polic', u'stress', u'leav', u'talk', u'continu']
[u'powercor', u'wont', u'appeal', u'tribun', u'decis']
[u'princ', u'charl', u'sue', u'newspap', u'diari', u'extract']
[u'privat', u'sector', u'urg', u'help', u'develop', u'water']
[u'profit', u'staff', u'increas', u'canberra', u'busi']
[u'prospector', u'train', u'overhaul', u'like', u'affect']
[u'push', u'indigen', u'doctor']
[u'queen', u'welcom', u'aussi', u'buckingham', u'palac']
[u'raid', u'uncov', u'weapon', u'cach']
[u'rann', u'talk', u'stuart', u'candid']
[u'region', u'driver', u'feel', u'high', u'fuel', u'price']
[u'report', u'predict', u'golden', u'time', u'bendigo']
[u'sacr', u'muslim', u'shrine', u'bomb', u'iraq']
[u'sailor', u'brace', u'test', u'career']
[u'francisco', u'test', u'power']
[u'secur', u'overhaul', u'urg', u'prison', u'escap']
[u'servic', u'farewel', u'outback', u'showman']
[u'shoulder', u'surgeri', u'motogp', u'newcom', u'stoner']
[u'singapor', u'airlin', u'continu', u'tran', u'pacif']
[u'smelli', u'frog', u'dont', u'insect', u'bite']
[u'sober', u'shelter', u'back', u'port']
[u'solar', u'citi', u'group', u'proceed', u'outsid', u'program']
[u'local', u'payphon', u'telstra']
[u'submarin', u'missil', u'near', u'beach']
[u'support', u'strong', u'barley', u'singl', u'desk']
[u'team', u'mate', u'back', u'ierodiaconou', u'return']
[u'tender', u'winner', u'name', u'water', u'suppli', u'project']
[u'terror', u'climat', u'chang', u'challeng', u'clinton']
[u'theft', u'car', u'rise']
[u'thompson', u'start', u'socceroo']
[u'charg', u'plot', u'kill', u'soldier']
[u'tourism', u'plan', u'moot', u'burrup', u'peninsula']
[u'train', u'welcom', u'bendigo', u'line']
[u'develop', u'bird', u'simul', u'softwar']
[u'rout', u'decis', u'strain', u'singapor', u'australia']
[u'court', u'take', u'abort', u'case']
[u'rate', u'worri', u'wall', u'street']
[u'presid', u'defend', u'arab', u'port', u'administr']
[u'vail', u'pledg', u'support', u'wheat', u'export']
[u'govt', u'announc', u'convent', u'centr']
[u'commonwealth', u'hold', u'posit', u'meet', u'illeg']
[u'wag', u'growth', u'amid', u'skill', u'shortag']
[u'water', u'infrastructur', u'need', u'cash', u'inject', u'turnbul']
[u'wellington', u'today']
[u'westov', u'go', u'goorjian']
[u'westpoint', u'investor', u'launch', u'class', u'action']
[u'whan', u'secur', u'monaro', u'preselect']
[u'wildcat', u'owner']
[u'woman', u'accus', u'tri', u'drug', u'jail']
[u'women', u'week', u'drop', u'lennon', u'featur']
[u'wood', u'shadow', u'geelong', u'tour', u'lead']
[u'world', u'play', u'springbok', u'june']
[u'youth', u'justic', u'male']
[u'youth', u'servic', u'want', u'senat', u'inquiri', u'action']
[u'bomb', u'attack', u'iraq', u'armi', u'patrol']
[u'north', u'south', u'rail', u'line', u'revamp']
[u'abbott', u'laugh', u'patient', u'punch']
[u'abetz', u'vatskali', u'discuss', u'illeg', u'fish', u'problem']
[u'adelaid', u'plastic', u'maker', u'kemalex', u'administr']
[u'rule', u'chang', u'creat', u'monster']
[u'raid', u'shut', u'major', u'counterfeit', u'market']
[u'airport', u'plan', u'fuel', u'flight', u'contractor', u'worri']
[u'amcor', u'order', u'releas', u'paper', u'amid', u'cardboard']
[u'anger', u'shrine', u'bomb', u'turn', u'violenc']
[u'anglican', u'counsel', u'defend', u'pregnanc', u'advic']
[u'arm', u'gang', u'steal', u'heist']
[u'dead', u'strong', u'quak', u'shake', u'mozambiqu']
[u'austria', u'launch', u'dope', u'probe']
[u'author', u'worri', u'gerogeri', u'area', u'fire']
[u'board', u'reject', u'call', u'resign']
[u'lose', u'sale', u'right', u'say', u'vail']
[u'monopoli', u'tip', u'major', u'sharehold', u'issu']
[u'withdraw', u'commonsens']
[u'baghdad', u'sectarian', u'attack', u'kill']
[u'bangladeshi', u'celebr', u'lanka']
[u'baric', u'minimis', u'prefer', u'impact']
[u'expert', u'call', u'discuss', u'iluka', u'problem']
[u'bird', u'probabl', u'australia', u'expert', u'say']
[u'bodi', u'blaze']
[u'boost', u'homeless', u'eurobodalla', u'youth']
[u'bropho', u'bail', u'applic', u'reject']
[u'bumper', u'profit', u'zinifex']
[u'busi', u'invest', u'jump', u'forecast', u'upgrad']
[u'busselton', u'councillor', u'anti', u'corrupt']
[u'perth', u'club', u'countri', u'race']
[u'call', u'calm', u'iraq', u'mosqu', u'attack']
[u'camplin', u'bow', u'bronz']
[u'camplin', u'win', u'bronz', u'cooper', u'crash']
[u'canada', u'dump', u'hockey']
[u'canada', u'klassen', u'win', u'fourth', u'medal', u'turin']
[u'canada', u'sweden', u'cross', u'countri', u'sprint', u'gold']
[u'caravan', u'park', u'resid', u'seek', u'mainten', u'assur']
[u'carp', u'plagu', u'enter', u'lachlan', u'river']
[u'charlton', u'hold', u'magpi', u'draw']
[u'commerci', u'boat', u'escort', u'suspect', u'illeg']
[u'commonwealth', u'game', u'cultur', u'festiv', u'begin']
[u'commonwealth', u'interven', u'river', u'disput']
[u'communiti', u'support', u'need', u'wast', u'dump', u'site', u'chanc']
[u'compens', u'packag', u'fairer', u'fish']
[u'council', u'approv', u'retail', u'plan']
[u'councillor', u'defend', u'cafe', u'staff', u'sack', u'decis']
[u'councillor', u'bump', u'road', u'rise']
[u'council', u'reject', u'cluster', u'hous', u'plan']
[u'council', u'repair', u'railway', u'fenc']
[u'council', u'fight', u'final', u'develop']
[u'council', u'seek', u'power', u'fight', u'illeg', u'tree']
[u'council', u'want', u'reopen', u'jetti']
[u'crean', u'fight', u'seat', u'mundin', u'say']
[u'crimin', u'probe', u'moscow', u'roof', u'collaps']
[u'crisi', u'shelter', u'fund', u'announc']
[u'croc', u'harvest', u'season', u'begin']
[u'croc', u'sight', u'sydney']
[u'custom', u'claim', u'telstra', u'phone']
[u'cyclon', u'north', u'intensifi']
[u'defenc', u'map', u'job', u'question', u'bendigo']
[u'democrat', u'safeti', u'plea', u'rail', u'line', u'reopen']
[u'doubt', u'cast', u'frontlin', u'worker', u'move', u'dandenong']
[u'earthquak', u'rattl', u'zimbabw', u'mozambiqu']
[u'eden', u'monaro', u'challeng', u'plan', u'jail']
[u'elcho', u'aborigin', u'leader', u'meet', u'minist']
[u'famili', u'violenc', u'charg', u'rise']
[u'father', u'jail', u'daughter']
[u'feder', u'fund', u'earli', u'learn', u'centr']
[u'feder', u'rule', u'favour', u'boe']
[u'volunt', u'demand', u'inclus']
[u'fisherman', u'fin', u'catch', u'marron']
[u'fisher', u'pleas', u'minist', u'approach', u'illeg']
[u'french', u'photograph', u'fin', u'euro', u'diana']
[u'game', u'chief', u'stand', u'firm', u'member', u'snub']
[u'googl', u'violat', u'nude', u'photo', u'site', u'copyright']
[u'govt', u'accus', u'drag', u'feet', u'media', u'reform']
[u'govt', u'accus', u'set', u'cross', u'citi', u'tunnel', u'toll']
[u'govt', u'dump', u'iraq', u'wheat', u'deleg']
[u'govt', u'head', u'iraq', u'restor', u'wheat', u'imag']
[u'govt', u'launch', u'tourism', u'campaign']
[u'govt', u'urg', u'boost', u'homeless', u'fund']
[u'greed', u'motiv', u'millionair', u'fake', u'death']
[u'green', u'group', u'odd', u'bypass', u'rout']
[u'green', u'announc', u'polici', u'reduc', u'poki']
[u'gunnedah', u'bushfir', u'control']
[u'hackett', u'leisel', u'swan', u'honour', u'sydney']
[u'haitian', u'presid', u'elect', u'flag', u'aristid', u'return']
[u'histor', u'banda', u'hotel', u'sell']
[u'hockeyroo', u'beat', u'canada']
[u'holm', u'court', u'receiv', u'threaten', u'letter']
[u'horsham', u'centr', u'open', u'august']
[u'deliv', u'record', u'profit']
[u'iemma', u'announc', u'public', u'sector', u'shake']
[u'industri', u'defend', u'live', u'cattl', u'trade', u'egypt']
[u'infil', u'sewerag', u'instal', u'littl', u'grove']
[u'inflat', u'signal', u'boost', u'market']
[u'investig', u'head', u'crash', u'site']
[u'investor', u'demand', u'resign']
[u'iraq', u'shrine', u'bomb', u'spark', u'sectarian', u'repris']
[u'decid', u'boe']
[u'rule', u'meatwork', u'disput']
[u'isra', u'abdomin', u'procedur']
[u'job', u'lose', u'south', u'coast', u'recycl', u'close']
[u'juri', u'retir', u'thoma', u'terror', u'trial']
[u'korean', u'captur', u'women', u'short', u'track', u'relay', u'gold']
[u'labor', u'commit', u'support', u'launceston', u'museum']
[u'landslid', u'kill', u'indonesia']
[u'larg', u'small', u'produc', u'drop', u'price', u'dri']
[u'late', u'goal', u'barca', u'chelsea']
[u'leadership', u'challeng', u'rumour', u'plagu', u'doyl']
[u'liber', u'polici', u'slash', u'job', u'bizarr']
[u'liber', u'promis', u'fund', u'suicid', u'prevent']
[u'liber', u'warn', u'higher', u'levi']
[u'local', u'hospit', u'reloc', u'organis']
[u'mackay', u'sarina', u'form', u'water', u'deal']
[u'charg', u'stab', u'murder', u'railway', u'station']
[u'die', u'stab', u'wound', u'melbourn', u'train', u'station']
[u'lesson', u'learn', u'london', u'bomb']
[u'market', u'continu', u'rise', u'miner', u'perform']
[u'mcmahon', u'rue', u'manag', u'pitfal']
[u'meat', u'worker', u'join', u'gravi', u'train']
[u'medic', u'school', u'open', u'year']
[u'make', u'histori', u'taipan']
[u'mildura', u'prepar', u'crash', u'funer']
[u'construct', u'delay', u'hold', u'coal', u'trade']
[u'minist', u'hop', u'reduc', u'apprentic', u'live', u'cost']
[u'minist', u'quiz', u'road', u'revamp', u'delay']
[u'news', u'iraq']
[u'fund', u'expect', u'apprenticeship', u'program']
[u'shoot', u'dead', u'iraq', u'sectarian', u'bloodsh']
[u'mourner', u'rememb', u'midura', u'road', u'crash', u'victim']
[u'mous', u'tissu', u'grow', u'human', u'prostat']
[u'highlight', u'drought', u'disast', u'zone']
[u'alic', u'crime', u'claim']
[u'muttonbird', u'free', u'bird']
[u'nation', u'park', u'weather', u'station', u'help', u'firefight']
[u'welcom', u'wildcat', u'takeov']
[u'newcastl', u'council', u'repres', u'heritag', u'council']
[u'newcrest', u'report', u'million', u'half', u'year', u'profit']
[u'global', u'advertis', u'campaign', u'rais']
[u'offic', u'look', u'doctor', u'recruit']
[u'polit', u'parti', u'emerg', u'gippsland']
[u'port', u'lincoln', u'flight']
[u'road', u'safeti', u'measur', u'welcom']
[u'jail', u'wingecarribe']
[u'norwegian', u'sportsmanship', u'reward', u'mapl', u'syrup']
[u'govt', u'boost', u'drought']
[u'govt', u'decid', u'mcarthur', u'river', u'plan']
[u'price', u'fuel', u'record', u'santo', u'profit']
[u'opal', u'fuel', u'prioriti', u'petrol', u'sniff', u'inquiri']
[u'opposit', u'reject', u'govt', u'plan', u'hire', u'teacher']
[u'opposit', u'spokesmen', u'judg', u'media']
[u'ornithologist', u'reject', u'aust', u'bird', u'claim']
[u'paerson', u'end', u'swede', u'long', u'wait', u'olymp', u'alpin']
[u'paraglid', u'converg', u'manilla']
[u'parent', u'school', u'technolog']
[u'phone', u'scammer', u'ask', u'credit', u'card', u'detail']
[u'pluto', u'moon']
[u'back', u'bloodi', u'tourism', u'campaign']
[u'polic', u'chief', u'warn', u'indonesian', u'drug']
[u'polic', u'drop', u'homicid', u'investig']
[u'polic', u'investig', u'abus', u'claim', u'buderim']
[u'polic', u'investig', u'arm', u'robberi', u'sapphir', u'area']
[u'polic', u'offer', u'assur', u'offic', u'assault']
[u'polic', u'seek', u'help', u'miss']
[u'polic', u'urg', u'riot', u'suspect', u'come', u'forward']
[u'polli', u'bicker', u'road', u'fund']
[u'pool', u'sale', u'fund', u'dubbo', u'school']
[u'power', u'upgrad', u'leav', u'resid', u'dark']
[u'premier', u'back', u'minist', u'amid', u'corrupt']
[u'premier', u'welcom', u'review', u'surgic', u'train']
[u'princ', u'woo', u'titan']
[u'profit', u'seek', u'land', u'cut']
[u'promis', u'auction', u'debut', u'bioclip', u'wool']
[u'public', u'servant', u'await', u'decis', u'futur']
[u'push', u'rural', u'women', u'greater']
[u'region', u'player', u'join', u'indigen', u'cricket', u'clash']
[u'resid', u'want', u'tuggeranong', u'shop', u'plan', u'scrap']
[u'retail', u'demand', u'solut', u'alcohol', u'problem']
[u'revamp', u'plan', u'drop', u'favour', u'meatwork']
[u'rice', u'make', u'surpris', u'trip', u'lebanon']
[u'river', u'search', u'fail']
[u'road', u'crash', u'funer', u'expect', u'caus', u'traffic', u'delay']
[u'roddick', u'get', u'past', u'arthur', u'memphi']
[u'roof', u'collaps', u'kill', u'moscow']
[u'fear', u'death', u'overcrowd', u'cenotaph']
[u'sack', u'worker', u'fear', u'entitl']
[u'polic', u'offic', u'charg', u'assault']
[u'polli', u'battl', u'wast', u'dump', u'propos']
[u'scott', u'notch', u'open', u'round']
[u'search', u'miss', u'swimmer']
[u'seven', u'arrest', u'cronulla', u'riot']
[u'shark', u'look', u'kiwi', u'help', u'upset', u'crusad']
[u'societi', u'want', u'payphon', u'retain']
[u'kill', u'baghdad', u'retali', u'attack']
[u'slutskaya', u'cohen', u'duel', u'gold']
[u'snowi', u'sale', u'prompt', u'water', u'suppli', u'worri']
[u'socceroo', u'asian', u'open']
[u'solomon', u'island', u'poll']
[u'spotlight', u'shin', u'skill', u'shortag']
[u'lankan', u'peac', u'talk', u'struggl', u'creat', u'trust']
[u'submiss', u'seek', u'elector', u'boundari', u'chang']
[u'swiss', u'schoch', u'snowboard']
[u'swiss', u'stand', u'swedish', u'trebl']
[u'appl', u'export', u'resum', u'taiwan']
[u'tasmania', u'urgent', u'need', u'specialist', u'train']
[u'teller', u'hospit', u'contact', u'powder']
[u'telstra', u'offer', u'payphon', u'assur']
[u'thai', u'violat', u'disclosur', u'law', u'shin']
[u'thousand', u'farewel', u'mildura', u'crash', u'victim']
[u'dead', u'injur', u'indian', u'ship', u'blast']
[u'trio', u'jail', u'attack', u'homeless', u'ziggi']
[u'tugun', u'bypass', u'construct', u'begin']
[u'union', u'reject', u'green', u'critic']
[u'union', u'highlight', u'polic', u'shortfal']
[u'union', u'welcom', u'csiro', u'review']
[u'unit', u'welcom', u'home', u'socceroo', u'final']
[u'cannabi', u'plant', u'nation', u'park']
[u'hunt', u'accus', u'perth', u'onlin', u'pirat']
[u'port', u'deal', u'spark', u'secur', u'fear']
[u'vaughan', u'pietersen', u'injur', u'ahead', u'india', u'test']
[u'virus', u'victim', u'viduka', u'return', u'boro']
[u'wage', u'growth', u'slow']
[u'wander', u'return', u'inspir', u'australia', u'martyn']
[u'word', u'erupt', u'hospit']
[u'water', u'plan', u'prompt', u'lose', u'entitl', u'fear']
[u'watkin', u'highlight', u'grain', u'line', u'instabl']
[u'watson', u'keen', u'cement', u'spot', u'tour']
[u'waugh', u'tell', u'aussi', u'forget', u'crowd', u'abus']
[u'wave', u'power', u'earn', u'innov', u'award']
[u'wembley', u'woe', u'multiplex', u'profit']
[u'woman', u'assault', u'park']
[u'woman', u'charg', u'barrack', u'height', u'stab']
[u'woman', u'urg', u'drive', u'inquest', u'tell']
[u'tourist', u'ask', u'bloodi', u'hell']
[u'xstrata', u'environment', u'reject', u'unfound']
[u'xstrata', u'lose', u'mcarthur', u'river', u'open']
[u'abalon', u'farm', u'cage', u'harm', u'lion', u'democrat']
[u'age', u'care', u'worker', u'screen', u'defend']
[u'akhtar', u'head', u'australia', u'knee', u'treatment']
[u'allianc', u'welcom', u'wast', u'dump', u'promis']
[u'encourag', u'debat', u'unfit', u'driver', u'disclosur']
[u'angler', u'gladston', u'harbour']
[u'apex', u'club', u'face', u'uncertain', u'futur']
[u'applic', u'open', u'gillett', u'cycl', u'scholarship']
[u'arakawa', u'win', u'figur', u'skate', u'gold', u'japan']
[u'arroyo', u'declar', u'state', u'emerg', u'coup']
[u'dead', u'bangladesh', u'factori']
[u'australian', u'open', u'recycl', u'water', u'survey']
[u'australia', u'grip', u'pont']
[u'baghdad', u'curfew', u'follow', u'increas', u'violenc']
[u'barossa', u'wine', u'industri', u'face', u'problem']
[u'battl', u'wood', u'edg', u'allenbi']
[u'beazley', u'tour', u'ballarat']
[u'remind', u'aim', u'stop', u'dengu', u'spread']
[u'blame', u'canada', u'exit', u'say', u'gretzki']
[u'blue', u'look', u'macgil', u'final']
[u'boe', u'worker', u'consid', u'resum', u'strike']
[u'bomber', u'bond', u'gold', u'coast']
[u'bomb', u'kill', u'seven', u'soldier', u'iraq']
[u'borroloola', u'suffer', u'open']
[u'bouncer', u'jail', u'kill', u'patron']
[u'bowen', u'vie', u'kidman', u'crow', u'film']
[u'hurt', u'shoot', u'trip']
[u'defend', u'avga', u'decis']
[u'brokeback', u'set', u'wagga', u'tongu', u'wag']
[u'bronz', u'golden', u'moment', u'rebuild', u'camplin']
[u'brother', u'jail', u'store', u'theft']
[u'brown', u'track', u'season', u'open']
[u'bun', u'close', u'east', u'maitland', u'plant']
[u'bushfir', u'appeal', u'seek', u'widespread', u'support']
[u'busi', u'invest', u'fuel', u'econom', u'growth']
[u'bridg', u'disgrac', u'fix']
[u'casa', u'shin', u'spotlight', u'laser', u'light', u'fear']
[u'cathol', u'school', u'launch', u'reconcil', u'messag', u'stick']
[u'chelsea', u'seek', u'home', u'comfort', u'portsmouth']
[u'childcar', u'centr', u'wonthaggi']
[u'costello', u'accus', u'islamophobia']
[u'costello', u'call', u'tougher', u'citizenship', u'law']
[u'costello', u'defend', u'muslim', u'citizenship', u'comment']
[u'costello', u'muslim', u'comment', u'divers']
[u'council', u'begin', u'weed', u'control', u'push']
[u'court', u'rule', u'allow', u'drink', u'drive', u'case', u'proceed']
[u'crisi', u'philippin']
[u'crow', u'holm', u'court', u'plan', u'rabbitoh']
[u'curfew', u'curb', u'violenc']
[u'cyclon', u'kate', u'intensifi', u'north']
[u'deadlin', u'loom', u'mules', u'accredit']
[u'deficit', u'prompt', u'govt', u'depart', u'merg']
[u'demon', u'look', u'local', u'darwin', u'clash']
[u'doctor', u'walk', u'avert', u'staff', u'concern', u'remain']
[u'dog', u'hop', u'avoid', u'injuri', u'jinx']
[u'doubt', u'farmer', u'group', u'futur']
[u'downer', u'conced', u'brief', u'kickback']
[u'downer', u'deni', u'dismiss', u'wheat', u'alleg']
[u'drought', u'fear', u'grip', u'south', u'east']
[u'drought', u'hit', u'wheat', u'forecast']
[u'endang', u'turtl', u'save', u'cook']
[u'enrol', u'voter', u'number', u'rise']
[u'green', u'light', u'island', u'iron', u'mine']
[u'fast', u'train', u'take']
[u'film', u'maker', u'tamahori', u'prostitut', u'charg', u'drop']
[u'destroy', u'car', u'polic', u'pursuit']
[u'prison', u'hospit', u'inmat', u'attack']
[u'floral', u'innov', u'win', u'rural', u'woman', u'year']
[u'minist', u'robert', u'farewel']
[u'teacher', u'charg', u'child', u'porn']
[u'frog', u'research', u'help', u'cattl', u'surviv', u'drought']
[u'fund', u'avail', u'drought', u'famili']
[u'fund', u'plateau', u'firefight']
[u'game', u'chief', u'accus', u'mislead', u'ticket', u'ballot']
[u'expect', u'seek', u'extend', u'contract']
[u'goorjian', u'predict', u'stand', u'final', u'seri']
[u'goulburn', u'woman', u'plead', u'guilti', u'child', u'assault']
[u'govt', u'accus', u'snub', u'worker']
[u'govt', u'pledg', u'fund', u'inject', u'mental', u'health']
[u'govt', u'urg', u'drop', u'irrig', u'water', u'charg']
[u'govt', u'urg', u'provid', u'access', u'fish', u'area']
[u'govt', u'warn', u'fish', u'suppli', u'worri']
[u'grazier', u'warn', u'grasshopp', u'threat']
[u'green', u'target', u'earli', u'intervent', u'educ']
[u'group', u'defend', u'public', u'school']
[u'gunn', u'profit', u'suffer', u'half', u'year', u'declin']
[u'harden', u'mayor', u'oppos', u'seat', u'chang']
[u'health', u'insur', u'premium', u'rise']
[u'health', u'insur', u'rise']
[u'higher', u'margin', u'fuel', u'caltex', u'profit']
[u'hodg', u'bronco', u'trial', u'game']
[u'hostag', u'drama', u'prompt', u'late', u'secur', u'jail', u'boost']
[u'hous', u'price', u'rise']
[u'hunter', u'girl', u'die', u'cross', u'highway']
[u'hurrican', u'cat', u'maintain', u'perfect', u'start']
[u'husband', u'guilti', u'stab', u'murder']
[u'hussey', u'famili', u'inspir', u'africa']
[u'india', u'signal', u'ganguli', u'test', u'career']
[u'indigen', u'communiti', u'urg', u'boost', u'educ']
[u'rat', u'outweigh', u'petrol', u'price', u'homeown']
[u'iraq', u'kickback', u'widespread', u'say', u'ship', u'exec']
[u'jacki', u'chan', u'visit', u'capit']
[u'journalist', u'camera', u'crew', u'kill', u'iraq']
[u'katrina', u'respons', u'lack', u'leadership', u'report']
[u'kersten', u'famili', u'air', u'geocentr', u'renam', u'concern']
[u'king', u'claim', u'underdog', u'status']
[u'king', u'claim', u'underdog', u'status']
[u'kostel', u'giant', u'slalom']
[u'kuznetsova', u'oust', u'mauresmo', u'dubai']
[u'labor', u'promis', u'tourism', u'push']
[u'liber', u'drive', u'elderley', u'visit']
[u'liber', u'pledg', u'burni', u'aquat', u'centr']
[u'liber', u'toughen', u'assault', u'penalti']
[u'local', u'busi', u'learn', u'work', u'forc', u'chang']
[u'local', u'miss', u'abattoir', u'job', u'actu']
[u'malaysian', u'newspap', u'clear', u'apolog']
[u'charg', u'brisban', u'tripl', u'murder', u'arson']
[u'jail', u'snowtown', u'kill']
[u'sentenc', u'prison', u'spit', u'offic']
[u'face', u'trial', u'fatal', u'road', u'crash']
[u'marshal', u'start', u'season', u'tiger']
[u'mayor', u'hop', u'strike', u'wont', u'deter', u'public', u'transport']
[u'mayor', u'ponder', u'flood', u'drought', u'ironi']
[u'mcmeniman', u'doubt', u'auckland', u'clash']
[u'meatwork', u'wait', u'decis']
[u'meatwork', u'redevelop']
[u'messi', u'defend', u'horno', u'card']
[u'mildura', u'crash', u'victim', u'sibl', u'lay', u'rest']
[u'mildura', u'horsham', u'popul', u'rise']
[u'mildura', u'rememb']
[u'closur', u'disappoint', u'shire', u'chief']
[u'minist', u'consid', u'wine', u'industri', u'burn', u'concern']
[u'minist', u'keen', u'har', u'knowledg', u'ranger']
[u'minist', u'move', u'townsvill', u'polic', u'crisi']
[u'minist', u'reject', u'dole', u'plan']
[u'miss', u'man', u'bodi', u'main', u'beach']
[u'mix', u'opinion', u'econom', u'strategi', u'impact']
[u'arrest', u'philippin', u'coup', u'plot']
[u'mourner', u'farewel', u'teen', u'crash', u'victim']
[u'push', u'nuclear', u'power', u'energi', u'altern']
[u'see', u'littl', u'local', u'benefit', u'mini', u'budget']
[u'talk', u'bowen', u'bauxit', u'plan']
[u'want', u'supermarket', u'wall', u'clean']
[u'museveni', u'tip', u'ugandan', u'poll']
[u'apprentic', u'start', u'qbuild', u'train']
[u'main', u'clean', u'water']
[u'nightclub', u'strip', u'brawl', u'spark', u'arrest']
[u'condit', u'boost', u'bypass', u'cost', u'beatti']
[u'quit', u'sesam', u'seed', u'industri']
[u'offic', u'charg', u'incit', u'indec']
[u'opposit', u'plan', u'rais', u'speed', u'limit', u'main']
[u'opposit', u'seek', u'greater', u'local', u'govt', u'transpar']
[u'outrag', u'costello', u'speech']
[u'outstat', u'give', u'hope', u'petrol', u'sniff', u'inquiri']
[u'pair', u'arrest', u'cash', u'heist']
[u'paper', u'wont', u'rule', u'futur', u'cut']
[u'penguin', u'drop', u'jam', u'frey']
[u'philippin', u'general', u'arrest', u'polit']
[u'pirat', u'seek', u'clearanc', u'singapor']
[u'plan', u'protect', u'histor', u'park', u'site']
[u'stop', u'short', u'make', u'bloodi', u'comment']
[u'polic', u'chief', u'make', u'resign', u'promis', u'staff']
[u'polic', u'consid', u'church', u'blaze', u'suspici']
[u'polic', u'investig', u'toddler', u'death']
[u'polic', u'lament', u'drink', u'drive', u'number']
[u'polic', u'rule', u'castlemain', u'phone', u'scam']
[u'post', u'mortem', u'chopper', u'crash', u'victim']
[u'powel', u'confirm', u'comm', u'game']
[u'privat', u'school', u'boom', u'wake', u'opposit']
[u'public', u'quiz', u'alcohol', u'restrict']
[u'push', u'nimbin', u'polic']
[u'rail', u'worker', u'strike', u'perth', u'mandurah', u'project']
[u'record', u'breaker', u'avoid', u'aircon', u'central', u'australian']
[u'resid', u'group', u'support', u'stop', u'jail']
[u'resourc', u'stock', u'drag', u'market']
[u'rudd', u'meet', u'graingrow']
[u'rule', u'chang', u'forc', u'player', u'bench']
[u'rumford', u'lyle', u'share', u'lead']
[u'rural', u'support', u'campaign', u'oppos', u'truck', u'rego']
[u'elector', u'offic', u'investig', u'labor', u'alleg']
[u'sartor', u'power', u'council']
[u'scheme', u'aim', u'boost', u'senior', u'depress', u'awar']
[u'school', u'vote', u'educ', u'merger']
[u'searcher', u'hope', u'find', u'miss']
[u'sharp', u'shoot', u'russian', u'dedic', u'gold', u'drug', u'cheat']
[u'shepparton', u'iraqi', u'march', u'terror']
[u'stanhop', u'deni', u'feder', u'ambit']
[u'state', u'leader', u'split', u'costello', u'citizenship']
[u'strike', u'jail', u'worker', u'return', u'work']
[u'studi', u'find', u'pool', u'health', u'benefit', u'remot']
[u'suncorp', u'metway', u'record', u'modest', u'profit', u'growth']
[u'sydney', u'pollut', u'level', u'rise']
[u'tare', u'council', u'urg', u'boost', u'lifesav', u'number']
[u'union', u'back', u'elect']
[u'tattersal', u'year', u'profit', u'target']
[u'tattersal', u'post', u'profit', u'list', u'compani']
[u'incent', u'expect', u'boost', u'local', u'invest']
[u'telstra', u'apologis', u'phone', u'delay']
[u'thousand', u'gather', u'farewel', u'mildura', u'crash', u'victim']
[u'tiananmen', u'squar', u'protest', u'releas', u'jail']
[u'tiger', u'confid', u'sign', u'bevan']
[u'tiger', u'strong', u'king']
[u'tribun', u'rule', u'comm', u'game', u'ticket', u'ballot']
[u'truck', u'driver', u'guilti', u'fraud', u'pose']
[u'boat', u'free', u'ground', u'ferri']
[u'report', u'creat', u'live', u'cattl', u'trade', u'fear']
[u'china', u'accid']
[u'celebr', u'central', u'australian', u'visitor']
[u'investig', u'brief', u'downer']
[u'union', u'fear', u'futur', u'sack', u'paper', u'worker']
[u'union', u'unhappi', u'aquacultur', u'worker', u'treatment']
[u'unit', u'confid', u'book', u'rematch']
[u'unit', u'liverpool', u'condemn', u'attack', u'ambul']
[u'compani', u'seek', u'grower', u'rubber', u'plant']
[u'conduct', u'subcrit', u'nuclear', u'test']
[u'firm', u'seek', u'rubber', u'plant', u'farmer']
[u'viduka', u'sit', u'boro', u'loss']
[u'vlociti', u'train', u'begin', u'servic']
[u'wall', u'street', u'dip', u'profit', u'take']
[u'warrior', u'give', u'time', u'answer', u'rort', u'charg']
[u'watson', u'unhappi', u'council', u'nuclear', u'statement']
[u'wheatbelt', u'communiti', u'phone', u'tower']
[u'william', u'promis', u'look', u'power']
[u'window', u'glass', u'fall', u'melbourn', u'citi', u'highris']
[u'woman', u'court', u'drug']
[u'wood', u'win', u'geelong', u'tour']
[u'world', u'scienc', u'bodi', u'slam', u'visa', u'rule']
[u'abba', u'push', u'meet', u'local', u'unrest']
[u'opposit', u'call', u'audit']
[u'african', u'refuge', u'launch', u'sydney']
[u'condition', u'help', u'polic', u'cannabi', u'crop']
[u'qaeda', u'claim', u'foil', u'saudi', u'plant', u'attack']
[u'armi', u'claim', u'philippin', u'control']
[u'astl', u'lift', u'zealand', u'victori']
[u'australian', u'serv', u'iraq', u'safe', u'defenc', u'chief']
[u'australian', u'women', u'india']
[u'austrian', u'dope', u'test', u'negat']
[u'austria', u'negat', u'test', u'overshadow', u'american']
[u'ausveg', u'say', u'countri', u'origin', u'label', u'cost', u'wrong']
[u'begg', u'smith', u'carri', u'flag', u'close', u'ceremoni']
[u'bird', u'confirm', u'french', u'turkey', u'farm']
[u'blue', u'sting', u'red', u'nail', u'biter']
[u'bomb', u'shoot', u'town', u'iraq']
[u'bono', u'geldof', u'nobel', u'peac', u'prize', u'nomine']
[u'boxer', u'crimin', u'histori', u'clear', u'game']
[u'break', u'halv', u'resid', u'heed', u'polic', u'warn']
[u'brisban', u'die', u'polic', u'shoot']
[u'brisban', u'fight', u'charg', u'tripl', u'murder']
[u'brisban', u'welcom', u'african', u'refuge', u'famili']
[u'brumbi', u'stormer', u'draw', u'cape', u'town']
[u'bush', u'push', u'pakistan', u'terrorist', u'train', u'camp']
[u'cabbag', u'protect', u'pancrea', u'cancer', u'studi']
[u'crash', u'kill', u'northern', u'tasmania']
[u'celebr', u'gift', u'reap', u'money']
[u'charg', u'like', u'prison', u'stand', u'polic']
[u'chief', u'forc']
[u'china', u'fail', u'agre', u'iron', u'price']
[u'colombian', u'get', u'hous', u'arrest', u'ride']
[u'counsel', u'offer', u'smash', u'kill']
[u'curfew', u'fail', u'prevent', u'baghdad', u'sunni', u'mosqu']
[u'danih', u'pleas', u'demon', u'earli', u'form']
[u'death', u'toll', u'mozambiqu', u'quak', u'rise']
[u'death', u'toll', u'up', u'bass', u'smash']
[u'defiant', u'ferguson', u'want', u'leagu', u'success']
[u'democrat', u'push', u'rodeo']
[u'dozen', u'fear', u'dead', u'mexico', u'disast']
[u'dutchman', u'take', u'olymp', u'speedskat', u'gold']
[u'england', u'cook', u'anderson', u'india', u'seri']
[u'farmer', u'fight', u'grain', u'rail']
[u'fifth', u'mildura', u'crash', u'victim', u'lay', u'rest']
[u'filipino', u'opposit', u'member', u'arrest', u'report']
[u'filipino', u'protest', u'defi', u'state', u'emerg']
[u'finland', u'sweden', u'clash', u'nordic', u'gold', u'medal']
[u'flash', u'flood', u'hit', u'melbourn', u'resid']
[u'forc', u'draw', u'board']
[u'kill', u'horror', u'smash']
[u'global', u'child', u'porn', u'sting', u'net']
[u'govt', u'accus', u'endors', u'rail', u'project', u'strike']
[u'govt', u'plan', u'scrap', u'upper', u'hous', u'arrog']
[u'grei', u'complet', u'biathlon', u'trick']
[u'hockeyroo', u'canada']
[u'hunt', u'continu', u'polic', u'shoot', u'suspect']
[u'hurrican', u'peterson', u'send', u'pack', u'olymp']
[u'hurrican', u'sooialo', u'tito', u'suspend', u'week']
[u'immigr', u'face', u'life', u'jail', u'kill', u'wife']
[u'iraq', u'extend', u'daytim', u'curfew']
[u'iraqi', u'secur', u'forc', u'high', u'alert']
[u'king', u'felt', u'pressur', u'goorjian']
[u'labor', u'reject', u'goal', u'claim', u'health', u'pamphlet']
[u'langeveldt', u'seri']
[u'late', u'carter', u'drop', u'goal', u'give', u'crusad', u'victori']
[u'leav', u'peak', u'discount', u'commut', u'group', u'warn']
[u'lennon', u'dismiss', u'voter', u'survey']
[u'lennon', u'promis', u'upgrad', u'sport', u'facil']
[u'liber', u'offer', u'holiday', u'weight', u'loss', u'incent']
[u'lion', u'demon', u'triumph', u'season', u'match']
[u'lion', u'demon', u'triumph', u'preseason', u'match']
[u'lyle', u'chase', u'maiden', u'profession', u'victori']
[u'mancuso', u'win', u'giant', u'slalom']
[u'hunt', u'sydney', u'policewoman', u'shoot']
[u'man', u'thump', u'tiger', u'trial', u'match']
[u'melbourn', u'stab', u'road', u'rage', u'attack']
[u'mildura', u'prepar', u'teen', u'rest']
[u'moscow', u'market', u'head', u'face', u'charg', u'roof', u'collaps']
[u'nadeem', u'take', u'blue', u'diamond', u'stake']
[u'neumannova', u'final', u'win', u'gold']
[u'kill', u'bangladesh', u'factori', u'collaps']
[u'health', u'minist', u'slam', u'health', u'insur', u'hike']
[u'teacher', u'urg', u'boycott', u'report', u'card']
[u'ogilvi', u'california']
[u'philippin', u'call', u'search', u'landslid']
[u'philippin', u'coup', u'plot', u'suspect', u'question']
[u'picasso', u'dali', u'paint', u'steal', u'brazil', u'museum']
[u'pint', u'size', u'patch', u'sydney', u'fetch', u'record', u'price']
[u'polic', u'offic', u'charg', u'child', u'assault']
[u'polic', u'predict', u'hefti', u'shop', u'centr']
[u'polic', u'shoot', u'victim', u'mental', u'health', u'problem']
[u'poor', u'fund', u'hamper', u'indonesia', u'bird', u'fight']
[u'power', u'compani', u'dark', u'blackout']
[u'protea', u'strike', u'blood', u'aussi']
[u'elect', u'possibl', u'stand']
[u'polic', u'shoot', u'dead']
[u'win', u'seven', u'nation', u'tourism', u'award']
[u'real', u'boss', u'believ', u'henri', u'stay', u'arsenal']
[u'face', u'england', u'lose', u'india', u'tour', u'match']
[u'robb', u'back', u'costello', u'citizenship', u'comment']
[u'roo', u'roll', u'lightweight', u'swan']
[u'sangakkara', u'see', u'lanka', u'triumph']
[u'scoop', u'australian', u'tourism', u'award']
[u'saudi', u'attack', u'drive', u'price']
[u'saudi', u'forc', u'thwart', u'attack', u'instal']
[u'saudi', u'claim', u'refineri', u'attack', u'foil']
[u'school', u'girl', u'assault']
[u'search', u'fail', u'miss', u'diver']
[u'searh', u'shoot', u'polic', u'offic']
[u'pistol', u'turn', u'hall', u'fame', u'honour']
[u'sexual', u'assault', u'elder', u'rare', u'servic', u'warn']
[u'shell', u'order', u'damag', u'pollut', u'nigeria']
[u'sheryl', u'crow', u'undergo', u'breast', u'cancer', u'surgeri']
[u'soldier', u'commend', u'afghanistan', u'braveri']
[u'stomach', u'put', u'vickerman', u'doubt']
[u'surgeon', u'uniform', u'driver', u'licenc', u'law']
[u'swede', u'olofsson', u'take', u'mass', u'sprint', u'gold']
[u'sydney', u'shoot', u'dead', u'home']
[u'sydney', u'polic', u'woman', u'shoot', u'station', u'intrud']
[u'tension', u'eas', u'iraq']
[u'thai', u'call', u'earli', u'elect', u'april']
[u'kill', u'church', u'torch', u'central']
[u'uganda', u'presid', u'win', u'elect']
[u'mayor', u'suspend', u'nazi', u'comment']
[u'polic', u'van', u'record', u'bank', u'heist']
[u'say', u'sectarian', u'violenc', u'drive', u'iraq']
[u'soldier', u'charg', u'internet', u'scandal']
[u'govt', u'fishermen', u'upset', u'abetz', u'summit', u'decis']
[u'watchdog', u'ban', u'solar', u'featur', u'flanneri']
[u'world', u'maker', u'avert', u'shutdown']
[u'young', u'peopl', u'wont', u'bear', u'health', u'cover', u'hike', u'labor']
[u'abba', u'resign', u'peac', u'pursu']
[u'actor', u'knott', u'die', u'age']
[u'alinta', u'keep', u'open', u'mind', u'option']
[u'qaeda', u'warn', u'plant', u'attack', u'websit']
[u'anderson', u'deni', u'accus', u'insid', u'trade']
[u'anderson', u'deni', u'prompt', u'sale', u'share']
[u'anderson', u'deni', u'volcker', u'report']
[u'angler', u'group', u'call', u'better', u'access', u'lake']
[u'aust', u'athlet', u'need', u'fund', u'sport', u'bodi']
[u'australian', u'want', u'qanta', u'stay', u'local', u'poll']
[u'australia', u'win', u'second', u'women', u'seri']
[u'austrian', u'slalom', u'sweep', u'push', u'controversi', u'asid']
[u'barca', u'triumph', u'amid', u'racism', u'controversi']
[u'bayliss', u'edg', u'corser', u'superbik', u'stand']
[u'blue', u'edg', u'red']
[u'blue', u'strong', u'chase', u'victori']
[u'blue', u'scrape', u'home', u'final']
[u'brauer', u'crash', u'turin']
[u'bresciano', u'target', u'parma']
[u'british', u'polic', u'arrest', u'bank', u'heist']
[u'bull', u'waratah', u'unbeaten', u'start', u'season']
[u'bomb', u'kill', u'south', u'baghdad']
[u'bush', u'call', u'iraqi', u'leader', u'defus', u'sectarian']
[u'busi', u'leader', u'defend', u'costello', u'inquiri']
[u'crash', u'leav', u'dead', u'hospit']
[u'carney', u'lead', u'knight', u'victori', u'shark']
[u'chile', u'massu', u'win', u'brazil', u'open']
[u'chines', u'orphanag', u'head', u'face', u'jail', u'child']
[u'communiti', u'shock', u'horrif', u'crash']
[u'costello', u'announc', u'review']
[u'council', u'strip', u'control', u'water', u'tank']
[u'critic', u'speak', u'arroyo', u'weed', u'oppon']
[u'cyclist', u'sustain', u'major', u'head', u'injuri', u'road']
[u'death', u'toll', u'rise', u'bangladesh', u'factori']
[u'democrat', u'launch', u'elect', u'campaign']
[u'eriksson', u'itch']
[u'move', u'sooth', u'trade', u'tension', u'bird']
[u'famili', u'confid', u'elect', u'success']
[u'feder', u'microscop', u'dubai']
[u'fisherman', u'die', u'wash', u'rock']
[u'govt', u'offer', u'sydney', u'harbour', u'fish']
[u'green', u'protect', u'forest']
[u'gritti', u'marin', u'grand', u'final']
[u'henin', u'hardenn', u'beat', u'sharapova', u'dubai', u'titl']
[u'highland', u'defeat', u'cheetah', u'scrappi', u'encount']
[u'hundr', u'attend', u'servic', u'rememb', u'crash']
[u'iraqi', u'leader', u'meet', u'defus', u'rise', u'unrest']
[u'iraqi', u'leader', u'dialogu']
[u'iraq', u'buy', u'australian', u'wheat', u'vail']
[u'irish', u'protest', u'clash', u'dublin', u'march']
[u'knife', u'fight', u'leav', u'hospit']
[u'labor', u'slam', u'telstra', u'phone', u'remov', u'plan']
[u'labor', u'urg', u'anderson', u'tell', u'cole', u'share']
[u'lampard', u'strike', u'chelsea', u'arsenal', u'lose']
[u'lennon', u'govt', u'fail', u'health', u'opposit', u'say']
[u'lennon', u'pledg', u'secur', u'world', u'cricket']
[u'liber', u'launch', u'year', u'transport', u'plan']
[u'london', u'ralli', u'call', u'peac', u'iraq']
[u'die', u'roll', u'near', u'port', u'dougla']
[u'face', u'court', u'school', u'girl', u'assault']
[u'fatal', u'shoot', u'bowral']
[u'question', u'polic', u'offic', u'shoot']
[u'man', u'bodi', u'katherin', u'river']
[u'man', u'bodi', u'perth', u'home']
[u'mental', u'health', u'blame', u'fatal', u'shoot']
[u'mexican', u'manag', u'say', u'trap', u'miner', u'dead']
[u'mildura', u'teen', u'consol', u'rock', u'concert']
[u'milit', u'afghan', u'prison', u'wing', u'riot']
[u'mint', u'improv', u'secur', u'measur', u'theft']
[u'pleas', u'progress', u'mutitjulu']
[u'question', u'biofuel', u'green', u'credenti']
[u'nation', u'parti', u'elector', u'cash', u'govt', u'grant']
[u'nrma', u'consid', u'legal', u'action', u'cross', u'citi', u'tunnel']
[u'ogilvi', u'match', u'play', u'final']
[u'opposit', u'hit', u'privatis', u'claim']
[u'pair', u'unhurt', u'ultralight', u'crash']
[u'parti', u'pressur', u'increas', u'public', u'hous']
[u'passeng', u'die', u'collid', u'road', u'train']
[u'perman', u'speed', u'camera', u'plan', u'school', u'zone']
[u'pie', u'shade', u'saint', u'extra', u'time']
[u'polic', u'charg', u'drug', u'tribe', u'danc']
[u'polic', u'offic', u'offer', u'counsel', u'fatal']
[u'polic', u'safeti', u'review', u'call', u'shoot']
[u'polic', u'search', u'sydney', u'shoot']
[u'pont', u'miss', u'dayer']
[u'poor', u'develop', u'applic', u'blame', u'delay']
[u'ralli', u'smash', u'leav', u'woman', u'critic', u'condit']
[u'rann', u'promis', u'tighten', u'street', u'crime', u'law']
[u'recherch', u'polit', u'fact', u'life', u'dick']
[u'research', u'support', u'ralli', u'anim', u'right']
[u'ricin', u'univers', u'campus']
[u'rioter', u'target', u'unionist', u'parad', u'dublin']
[u'risdon', u'stand', u'reflect', u'societi', u'prison']
[u'rooster', u'hold', u'dragon']
[u'ruddock', u'welcom', u'thoma', u'verdict']
[u'rutledg', u'edg', u'aussi', u'pair']
[u'sack', u'philippin', u'offic', u'call', u'civilian']
[u'scientist', u'search', u'sweet', u'cancer', u'treatment']
[u'nation', u'wide', u'open', u'scot', u'stun', u'england']
[u'spain', u'protest', u'talk', u'attract', u'thousand']
[u'stuart', u'macgil', u'shaun', u'tait']
[u'student', u'counsel', u'crash', u'death']
[u'sydney', u'take', u'hospit', u'drive']
[u'symond', u'clark', u'open', u'clash']
[u'kwon', u'practition', u'demonstr', u'grey', u'power']
[u'resid', u'shock', u'fatal', u'smash']
[u'teen', u'drown', u'sydney', u'blowhol']
[u'teen', u'girl', u'charg', u'ferni', u'grove', u'attack']
[u'teen', u'charg', u'goulburn', u'parti', u'turn']
[u'teutenberg', u'win', u'open', u'round', u'cycl', u'world']
[u'thai', u'launch', u'elect']
[u'thoma', u'guilti', u'receiv', u'qaeda', u'fund']
[u'thoma', u'guilti', u'receiv', u'money']
[u'tourism', u'australia', u'claim', u'earli', u'success', u'bloodi']
[u'tourist', u'rescu', u'fall', u'stradbrok']
[u'trescothick', u'leav', u'india', u'tour']
[u'tropfest', u'cancel', u'storm', u'sydney']
[u'goldfield', u'crash']
[u'injur', u'street', u'brawl', u'north', u'brisban']
[u'human', u'bird', u'case', u'china']
[u'uganda', u'opposit', u'say', u'vote', u'rig']
[u'unit', u'pressur', u'say', u'mckinna']
[u'vail', u'arriv', u'baghdad', u'wheat', u'talk']
[u'vail', u'mission', u'fail', u'inquiri', u'extend']
[u'victim', u'alleg', u'paedophil', u'priest', u'offer']
[u'volunt', u'clean', u'melbourn', u'wild', u'storm']
[u'warehous', u'caus', u'damag']
[u'weather', u'websit', u'attract', u'record', u'hit']
[u'xstrata', u'mine', u'plan', u'busi', u'leader']
[u'victorian', u'recognis', u'braveri', u'award']
[u'kill', u'iraq', u'violenc']
[u'afghan', u'prison', u'riot', u'enter', u'second']
[u'afghan', u'prison', u'riot', u'leav', u'dead', u'injur']
[u'agassi', u'wont', u'play', u'clay']
[u'alcoa', u'worker', u'recognis', u'rescu', u'colleagu']
[u'alleg', u'plotter', u'charg', u'philippin', u'crackdown']
[u'anderson', u'deni', u'share', u'wrongdo']
[u'anderson', u'urg', u'come', u'clean', u'share']
[u'aquat', u'weed', u'test', u'oversea']
[u'arroyo', u'extend', u'state', u'emerg']
[u'asian', u'market', u'drivetrain', u'expans', u'iemma']
[u'aussi', u'adult', u'get', u'fatter', u'survey', u'find']
[u'aust', u'learn', u'london', u'bomb', u'expert']
[u'australia', u'plan', u'multi', u'million', u'dollar', u'melbourn']
[u'autopsi', u'conduct', u'bodi', u'pull']
[u'bail', u'white', u'supremacist', u'leader', u'miss']
[u'baillieu', u'rule', u'lib', u'leadership', u'challeng']
[u'barn', u'connor', u'doubt', u'chief', u'clash']
[u'baton', u'pass', u'australian', u'memori']
[u'boost', u'woolworth', u'profit']
[u'bird', u'switzerland']
[u'brave', u'effort', u'earn', u'posthum', u'award']
[u'break', u'hill', u'home', u'iptaa', u'offic']
[u'break', u'hill', u'share', u'game', u'baton']
[u'bull', u'attack', u'put', u'farmer', u'intens', u'care']
[u'better', u'doctor', u'packag']
[u'intern', u'action', u'illeg']
[u'mansion', u'preserv']
[u'regular', u'check', u'senior']
[u'gaven', u'elect', u'beatti', u'tell']
[u'campaign', u'worri', u'approv', u'termin']
[u'canberra', u'risk', u'liabil']
[u'volunt', u'give', u'guard', u'honour']
[u'committ', u'hear', u'begin', u'child', u'death']
[u'committe', u'urg', u'hong', u'kong', u'prison', u'treati']
[u'communiti', u'grief', u'stricken', u'peopl']
[u'communiti', u'input', u'seek', u'jetti', u'plan']
[u'convict', u'terror', u'fund', u'receiv', u'deni', u'direct']
[u'council', u'consid', u'cinema', u'plan']
[u'council', u'draw', u'stormwat', u'plan']
[u'council', u'merger', u'guidelin']
[u'council', u'rais', u'merger', u'issu', u'minist']
[u'coupl', u'fin', u'nativ', u'veget', u'clear']
[u'court', u'tell', u'children', u'health', u'problem']
[u'cousin', u'charg', u'polic']
[u'cowboy', u'mistak', u'rate']
[u'croc', u'rescu', u'earn', u'braveri', u'award']
[u'delay', u'harvey', u'beef', u'hand']
[u'door', u'open', u'shoalhaven', u'jail']
[u'downer', u'stand', u'indonesia', u'drug', u'stanc']
[u'driver', u'accus', u'zone']
[u'egypt', u'abattoir', u'footag', u'mislead', u'livecorp', u'say']
[u'egyptian', u'live', u'cattl', u'export', u'trade', u'suspend']
[u'egyptian', u'templ', u'cairo', u'market']
[u'egypt', u'trade', u'shouldnt', u'boycott', u'mcgauran']
[u'stave', u'palestinian', u'fund', u'crisi']
[u'expert', u'offer', u'reassur', u'word', u'card']
[u'farmer', u'bridg', u'citi', u'bush', u'divid']
[u'father', u'rescuer', u'head', u'list', u'braveri', u'award']
[u'miss', u'bangladesh', u'ferri', u'sink']
[u'fight', u'terror', u'fight', u'islam']
[u'filipino', u'militari', u'back', u'arroyo', u'cabinet']
[u'firefight', u'brave', u'effort', u'recognis']
[u'firefight', u'injur', u'maclean', u'blaze']
[u'fishermen', u'face', u'increas', u'risk', u'violenc']
[u'footi', u'club', u'air', u'insur', u'coverag', u'worri']
[u'chairman', u'deni', u'bribe', u'knowledg']
[u'head', u'deni', u'approv', u'kickback']
[u'olympian', u'neiwand', u'admit', u'breach']
[u'taliban', u'spokesman', u'enrol']
[u'franc', u'investig', u'turkey', u'farm', u'bird']
[u'free', u'revers', u'climat', u'chang']
[u'fund', u'extend', u'tourist', u'trail']
[u'fund', u'help', u'investig', u'narrogin', u'cours']
[u'leak', u'forc', u'second', u'hospit', u'evacu']
[u'geraldton', u'host', u'meet']
[u'girl', u'burn', u'deliber', u'hous']
[u'gold', u'coast', u'driver', u'test', u'mobil', u'phone', u'law']
[u'govern', u'accus', u'pork', u'barrel']
[u'govt', u'defend', u'homeless', u'fund', u'effort']
[u'govt', u'fund', u'famili', u'review']
[u'govt', u'faze', u'uranium', u'polici', u'fusion']
[u'govt', u'plan', u'regul']
[u'govt', u'pledg', u'disabl', u'support']
[u'govt', u'review', u'senior', u'card', u'contract']
[u'govt', u'turn', u'wasteland', u'sport', u'facil']
[u'govt', u'urg', u'allow', u'continu', u'snake', u'graze']
[u'group', u'share', u'pollut', u'payout']
[u'gulgong', u'murder', u'probe', u'continu']
[u'haa', u'captur', u'memphi', u'crown']
[u'health', u'dept', u'reject', u'hospit', u'ultimatum', u'claim']
[u'hervey', u'nation', u'candid', u'campaign']
[u'histor', u'cannon', u'mistak', u'scrap', u'metal']
[u'hockeyroo', u'thrash', u'canada', u'perth']
[u'human', u'error', u'blame', u'prison', u'earli', u'releas']
[u'hunter', u'get', u'weather', u'warn']
[u'illeg', u'fish', u'put', u'speci', u'risk', u'confer']
[u'iran', u'enrich', u'uranium', u'russia']
[u'iraq', u'lift', u'daytim', u'curfew']
[u'jam', u'hardi', u'post', u'sharp', u'profit', u'jump']
[u'jaqu', u'call', u'australian', u'squad']
[u'john', u'anderson', u'reveal', u'minist', u'know']
[u'judg', u'rule', u'mental', u'incompet', u'mother']
[u'kimberley', u'reject', u'welfar', u'plan']
[u'koizumi', u'alli', u'say', u'matur', u'tie', u'china']
[u'labor', u'launch', u'industri', u'relat', u'polici']
[u'labor', u'fund', u'olymp', u'apprentic']
[u'cardross', u'crash', u'victim', u'buri']
[u'crash', u'victim', u'farewel']
[u'lennon', u'unmov', u'worker', u'compens', u'pressur']
[u'liber', u'pledg', u'pulp', u'payment']
[u'littl', u'britain', u'inspir', u'mardi', u'gras', u'float']
[u'livestock', u'sell', u'centr', u'rebat']
[u'coast', u'upgrad', u'cyclon']
[u'mallorca', u'real', u'win']
[u'deni', u'bail', u'polic', u'shoot']
[u'jail', u'sexual', u'assault', u'daughter']
[u'jail', u'wife', u'murder']
[u'jail', u'grandmoth', u'rape']
[u'face', u'court', u'charg', u'fatal', u'shoot']
[u'maoist', u'ambush', u'kill', u'nepales', u'soldier']
[u'margaret', u'river', u'resort', u'plan', u'reveal']
[u'marin', u'surpris', u'packet', u'say', u'gumprecht']
[u'mayor', u'involv', u'fatal', u'road', u'crash']
[u'mayor', u'issu', u'land', u'valuat', u'plea']
[u'prepar', u'game', u'ceremoni']
[u'meet', u'hear', u'need', u'muslim', u'work', u'forc']
[u'charg', u'nullarbor', u'high', u'speed', u'chase']
[u'mexico', u'pledg', u'safeti', u'review', u'disast']
[u'worker', u'return', u'work', u'woe']
[u'minist', u'want', u'away', u'welfar', u'depend']
[u'defend', u'accus', u'australian', u'cattl']
[u'resid', u'seek', u'help', u'census']
[u'rais', u'fuel', u'price', u'dispar', u'concern']
[u'murray', u'sign', u'cowboy']
[u'muslim', u'bodi', u'talk', u'split', u'report']
[u'blame', u'human', u'error', u'annual', u'report', u'mistak']
[u'nelson', u'deni', u'east', u'timor', u'secur', u'risk']
[u'marin', u'speci', u'reef', u'survey']
[u'north', u'south', u'corridor', u'prioriti', u'motor', u'group']
[u'clash', u'reignit', u'mackay', u'sport', u'facil']
[u'nurseri', u'urg', u'stop', u'sell', u'weed']
[u'trade', u'deficit', u'hit', u'year', u'high']
[u'ogilvi', u'seal', u'match', u'play', u'victori']
[u'price', u'surg', u'compani', u'result', u'boost', u'market']
[u'dead', u'crash']
[u'opposit', u'condemn', u'work', u'visa', u'class']
[u'opposit', u'question', u'possibl', u'loss', u'iraqi', u'wheat']
[u'opposit', u'slam', u'govt', u'polic', u'number']
[u'opposit', u'want', u'know', u'specif']
[u'palm', u'inquest', u'go', u'close', u'door']
[u'palm', u'island', u'inquiri', u'hear', u'evid', u'criticis']
[u'papua', u'resum', u'oper']
[u'parti', u'rule', u'hospit', u'complex']
[u'plan', u'aim', u'curb', u'youth', u'antisoci', u'behaviour']
[u'plan', u'releas', u'clean', u'green', u'tasmania']
[u'thank', u'colleagu', u'decad', u'power']
[u'polic', u'miss']
[u'polic', u'investig', u'nurs', u'home', u'abus', u'claim']
[u'policeman', u'accus', u'child', u'assault', u'face']
[u'polic', u'berri', u'drown', u'victim']
[u'polic', u'charg', u'accident', u'shoot']
[u'possibl', u'carcass', u'north', u'west']
[u'priest', u'guilti', u'assault', u'child', u'boarder']
[u'public', u'hear', u'focus', u'shire', u'plan']
[u'public', u'urg', u'avoid', u'mozzi', u'virus']
[u'museum', u'display', u'year', u'mummi']
[u'queensland', u'claim', u'imparja', u'trick']
[u'ramsey', u'report', u'profit', u'lift', u'takeov']
[u'redback', u'drop', u'form', u'blewett']
[u'red', u'doubt', u'chief', u'clash']
[u'research', u'investig', u'fish', u'movement']
[u'resid', u'quiz', u'power', u'bill']
[u'resid', u'quiz', u'shire', u'boundari']
[u'review', u'rais', u'chang', u'hop']
[u'ring', u'road', u'contractor', u'start', u'work', u'soon']
[u'roma', u'rewrit', u'record', u'book', u'derbi']
[u'russia', u'pass', u'terror', u'law']
[u'saddam', u'hunger', u'strike', u'lawyer']
[u'govt', u'accus', u'dirti', u'polit']
[u'sailor', u'learn', u'fate']
[u'liber', u'critic', u'campaign']
[u'sandon', u'picket', u'blaze', u'suspici']
[u'senior', u'exec', u'approv', u'payment', u'inquiri', u'hear']
[u'shoulder', u'injuri', u'sidelin', u'port', u'veteran']
[u'sieg', u'close', u'inner', u'sydney', u'street']
[u'singer', u'georg', u'michael', u'arrest', u'drug', u'probe']
[u'smaller', u'thicker', u'deeper', u'sign', u'time']
[u'tey', u'brother', u'meatwork', u'return', u'work']
[u'speed', u'policeman', u'leav', u'forc']
[u'sport', u'lout', u'card']
[u'squash', u'player', u'comm', u'game', u'appeal', u'dismiss']
[u'survey', u'reveal', u'speci', u'barrier', u'reef']
[u'suspect', u'illeg', u'fishermen', u'transfer', u'baxter']
[u'suspect', u'bomber', u'kill', u'saudi', u'shoot']
[u'talk', u'focus', u'higher', u'hous', u'price']
[u'busi', u'peopl', u'major', u'govern']
[u'green', u'union', u'claim']
[u'parti', u'target', u'economi', u'employ']
[u'review', u'prompt', u'call', u'budget', u'cut']
[u'thoma', u'plan', u'join', u'terrorist']
[u'illeg', u'fish', u'boat', u'catch', u'northern']
[u'tiger', u'hope', u'clinch', u'titl']
[u'timbercorp', u'profit', u'rise']
[u'toll', u'move', u'eas', u'accc', u'concern']
[u'town', u'gear', u'game', u'baton', u'relay']
[u'track', u'work', u'delay', u'earli', u'morn', u'train']
[u'tribal', u'give', u'greater', u'recognit']
[u'trio', u'brave', u'hous', u'effort', u'recognis']
[u'trujillo', u'offer', u'nation', u'public', u'phone', u'assur']
[u'turin', u'olymp', u'close', u'carniv', u'atmospher']
[u'twin', u'attack', u'injur', u'iran']
[u'receiv', u'human', u'right', u'award', u'chile']
[u'accept', u'review', u'recommend']
[u'union', u'allow', u'push', u'wage', u'rise', u'campaign']
[u'offer', u'workplac', u'agreement', u'clarif']
[u'upgrad', u'pave', u'flight']
[u'run', u'guantanamo', u'style', u'afghan', u'jail', u'report']
[u'vail', u'seal', u'iraqi', u'wheat', u'deal']
[u'vanston', u'deni', u'train', u'visa', u'shut', u'australian']
[u'vaughan', u'rule', u'indian', u'seri']
[u'govt', u'urg', u'offer', u'cut']
[u'waratah', u'suspend', u'brawl']
[u'warrior', u'price', u'salari', u'rort']
[u'weekend', u'rescu', u'lifesav', u'busi']
[u'outplay', u'gilchrist', u'admit']
[u'woman', u'charg', u'hous', u'blaze']
[u'woman', u'collaps', u'parti', u'drug']
[u'wool', u'market', u'expect', u'continu', u'gain', u'grind']
[u'woolworth', u'restructur', u'see', u'profit', u'rise']
[u'worker', u'strike', u'enterpris', u'agreement', u'talk']
[u'injur', u'crash']
[u'abar', u'forecast', u'record', u'commod', u'export']
[u'abattoir', u'closur', u'see', u'trade', u'warn']
[u'abattoir', u'lockout', u'end']
[u'abbott', u'taunt', u'anger', u'labor']
[u'accc', u'scrutinis', u'shop', u'websit']
[u'accuraci', u'roadsid', u'drug', u'test', u'question']
[u'canberra', u'airport', u'receiv', u'upgrad']
[u'canberra', u'organis', u'concern']
[u'actu', u'compani', u'local', u'apprentic']
[u'await', u'alinta', u'merger', u'propos']
[u'alic', u'council', u'consid', u'area', u'legisl']
[u'qaeda', u'direct', u'fund', u'indonesian', u'attack']
[u'anger', u'british', u'photograph', u'shoot', u'aust']
[u'athlet', u'club', u'rais', u'handicap', u'chang', u'concern']
[u'australia', u'join', u'forc', u'world']
[u'australia', u'launch', u'world']
[u'inquiri', u'hear', u'dfat', u'know', u'kickback', u'year']
[u'media', u'coverag', u'somewhat', u'mislead', u'howard']
[u'baghdad', u'bomb', u'attack', u'kill']
[u'bangladesh', u'fight', u'lanka']
[u'biker', u'succumb', u'crash', u'injuri']
[u'blue', u'green', u'alga', u'test', u'result', u'today']
[u'bomb', u'damag', u'shrine', u'grave', u'saddam', u'father']
[u'school', u'cross']
[u'break', u'hill', u'host', u'invest', u'confer']
[u'bushfir', u'inquest', u'hear', u'firefight', u'frustrat']
[u'busi', u'borrow', u'strong']
[u'busi', u'index', u'show', u'fall', u'region', u'busi']
[u'chang', u'cross', u'border', u'polic']
[u'church', u'rule', u'investig', u'paedophil', u'activ']
[u'complaint', u'flow', u'pressur', u'govt', u'elder', u'abus']
[u'cooper', u'commit', u'dragon']
[u'council', u'decid', u'share', u'pathway', u'rout']
[u'councillor', u'walk', u'pool']
[u'council', u'urg', u'restraint', u'land']
[u'council', u'consid', u'altern', u'hillgrov']
[u'council', u'probe', u'illeg', u'consult', u'room', u'claim']
[u'council', u'review', u'concert', u'decis']
[u'council', u'worker', u'vote', u'deal']
[u'court', u'convict', u'problem', u'gambler']
[u'court', u'tell', u'racist', u'remark', u'trigger', u'shoot', u'death']
[u'current', u'account', u'deficit', u'blow']
[u'cyclon', u'emma', u'downgrad', u'tropic']
[u'dalbi', u'region', u'fuel', u'theft', u'rise']
[u'vinci', u'code', u'author', u'battl', u'plagiar', u'claim']
[u'deadlin', u'extend', u'lodg', u'compo', u'claim', u'patel']
[u'derbi', u'brigad', u'seek', u'volunt']
[u'doherti', u'suspect', u'theft']
[u'dolphin', u'death', u'blame', u'extrem', u'tide']
[u'doubt', u'cast', u'council', u'contract', u'plan']
[u'driver', u'warn', u'dead', u'effect', u'fatigu']
[u'drought', u'impact', u'educ', u'opportun', u'studi']
[u'drought', u'hold', u'locust', u'outbreak']
[u'drug', u'driver', u'figur', u'alarm', u'polic']
[u'dwight', u'wait', u'world', u'debut']
[u'econom', u'data', u'dull', u'healthi', u'profit', u'wall', u'street']
[u'elder', u'abus', u'claim', u'prompt', u'flood', u'call']
[u'elect', u'candid', u'ask', u'listen', u'council']
[u'email', u'proof', u'knowledg', u'govt']
[u'emerg', u'dept', u'chief', u'plan', u'quit']
[u'factori', u'futur', u'clearer']
[u'famili', u'turn', u'away', u'homeless', u'shelter', u'report']
[u'shock', u'adelaid', u'demis']
[u'fish', u'opt', u'marin', u'park', u'protest']
[u'politician', u'jail', u'corrupt']
[u'game', u'baton', u'arriv', u'gippsland']
[u'gene', u'silenc', u'yield', u'high', u'fibr', u'wheat']
[u'gold', u'coast', u'final', u'quit']
[u'govt', u'accus', u'flaw', u'snowi', u'sale', u'plan']
[u'govt', u'accus', u'hasti', u'suspend', u'cattl', u'export']
[u'govt', u'defend', u'respons', u'age', u'care', u'abus']
[u'govt', u'unveil', u'child', u'support', u'chang']
[u'grain', u'grower', u'ask', u'attend', u'singl', u'desk', u'ralli']
[u'group', u'confid', u'agreement', u'help', u'rural']
[u'group', u'vow', u'maintain', u'fight', u'communiti']
[u'hang', u'glide', u'accid', u'victim', u'win', u'compens']
[u'health', u'dept', u'deni', u'hospit', u'hire', u'freez']
[u'henson', u'suicid', u'dublin', u'debacl']
[u'hewitt', u'advanc', u'vega']
[u'highway', u'rout', u'prompt', u'koala', u'protect', u'fear']
[u'hospit', u'question', u'patient', u'announc']
[u'hospit', u'matern', u'servic']
[u'howard', u'talk', u'best', u'poll']
[u'improv', u'bush', u'infrastructur', u'joyc', u'urg']
[u'inadequ', u'procedur', u'polic', u'file', u'leak']
[u'inquest', u'hear', u'earlier', u'manag', u'concern']
[u'israel', u'criticis', u'palestinian']
[u'jaqu', u'unfaz', u'bat', u'order']
[u'jone', u'deepen', u'england', u'injuri', u'crisi']
[u'kimberley', u'grazier', u'cattl', u'mistreat', u'probe']
[u'lake', u'water', u'temperatur', u'chang', u'good', u'fish']
[u'landhold', u'urg', u'valuat', u'object']
[u'lehmann', u'cite', u'cricket', u'australia']
[u'lennon', u'pladg', u'young', u'tasmanian']
[u'lennon', u'promis', u'young', u'tasmanian']
[u'liber', u'candid', u'form', u'sustain', u'develop']
[u'liber', u'fear', u'safeti', u'compromis', u'rail', u'rush']
[u'long', u'road', u'ahead', u'health', u'servic', u'save']
[u'machin', u'motion', u'prepar', u'premier']
[u'mackay', u'rate', u'rise', u'like', u'mayor']
[u'murphi', u'cook', u'spud', u'campaign']
[u'await', u'sentenc', u'encourag']
[u'burn', u'site', u'mishap']
[u'fin', u'breach', u'marron', u'limit']
[u'succumb', u'crash', u'injuri']
[u'maoist', u'landmin', u'kill']
[u'mardi', u'gras', u'pick', u'mood', u'orlean']
[u'mareeba', u'rat', u'rise']
[u'massacr', u'put', u'brake', u'cycleway']
[u'mayor', u'seek', u'busi', u'lose']
[u'mcgrath', u'miss', u'south', u'african', u'test']
[u'microsoft', u'talk', u'oper', u'system']
[u'mine', u'compani', u'get', u'ahead', u'explor', u'uranium']
[u'minist', u'urg', u'rail', u'strike']
[u'east', u'timores', u'soldier', u'desert', u'offic']
[u'illeg', u'fish', u'boat']
[u'mother', u'warn', u'propos', u'chang', u'child']
[u'question', u'tourism', u'spend']
[u'quit', u'labor', u'preselect', u'battl']
[u'murder', u'prompt', u'kid', u'safe', u'plan']
[u'muslim', u'bodi', u'scrutinis', u'imam', u'train']
[u'muslim', u'council', u'deliv', u'find']
[u'nation', u'wide', u'hunt', u'white', u'supremacist']
[u'slap', u'massiv', u'fine', u'smith']
[u'negoti', u'expect', u'lengthi', u'sydney', u'stand', u'talk']
[u'neiwand', u'sentenc', u'jail', u'breach']
[u'chief', u'scientist', u'appoint']
[u'devic', u'fuel', u'percent']
[u'north', u'coast', u'jobless', u'figur', u'good']
[u'casual', u'worker', u'right', u'perman']
[u'govt', u'criticis', u'current', u'smoke', u'law']
[u'newspap', u'charg', u'offend', u'report']
[u'nuclear', u'power', u'oppon', u'urg', u'reconsid', u'stanc']
[u'obes', u'weigh', u'hospit']
[u'opposit', u'criticis', u'claim']
[u'opposit', u'infrastructur', u'levi', u'mount']
[u'palm', u'mayor', u'criticis', u'lack', u'support']
[u'parliamentari', u'inquiri', u'investig', u'smoke']
[u'phillip', u'sign', u'redback']
[u'phone', u'card', u'compani', u'order', u'compo']
[u'plan', u'aim', u'boost', u'coliban', u'river', u'health']
[u'defend', u'challeng', u'flugg', u'assign']
[u'defend', u'flugg', u'govt', u'salari']
[u'rule', u'flat']
[u'polic', u'boost', u'wheatbelt', u'road', u'presenc']
[u'polic', u'crack', u'esper', u'theft']
[u'polic', u'sydney', u'sieg']
[u'policeman', u'accus', u'teen', u'assault', u'get', u'bail']
[u'policeman', u'face', u'court', u'extort', u'charg']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'oppos', u'bail', u'miss', u'white', u'supremacist']
[u'polic', u'play', u'robberi', u'hour']
[u'polic', u'seek', u'woman', u'sizzler', u'food', u'poison', u'scare']
[u'powel', u'hope', u'light', u'track']
[u'power', u'plant', u'normal', u'extort', u'threat']
[u'prawn', u'season', u'earli', u'start']
[u'promina', u'profit', u'jump', u'percent']
[u'properti', u'valuat', u'expect', u'creat', u'anger']
[u'protest', u'damag', u'qanta', u'worker', u'caus', u'truss', u'say']
[u'public', u'ask', u'input', u'bermagui', u'futur']
[u'public', u'privat', u'partnership', u'urg', u'boost', u'hous']
[u'qanta', u'mainten', u'worker', u'angri', u'offshor']
[u'brisban', u'host', u'ancient', u'egypt', u'exhibit']
[u'teacher', u'send', u'school']
[u'ranger', u'investig', u'attack', u'sheep']
[u'face', u'liber', u'quit', u'campaign']
[u'red', u'lose', u'hope', u'despit', u'lose', u'streak']
[u'red', u'pair', u'rule', u'chief', u'clash']
[u'region', u'busi', u'confid', u'better', u'adelaid']
[u'report', u'highlight', u'nation', u'disgrac', u'kimberley']
[u'report', u'urg', u'chang', u'marin', u'protect', u'area']
[u'resourc', u'stock', u'drag', u'market']
[u'road', u'crash', u'claim', u'live']
[u'rossi', u'gear', u'success']
[u'rspca', u'probe', u'puppi', u'hammer', u'death']
[u'russia', u'play', u'progress', u'iran', u'uranium', u'talk']
[u'govt', u'unveil', u'plan', u'south', u'road', u'upgrad']
[u'sailor', u'ban', u'match']
[u'salvi', u'extend', u'contract', u'brumbi']
[u'santoro', u'serious', u'consid', u'mandatori', u'abus']
[u'parti', u'focus', u'road', u'develop']
[u'treasur', u'reject', u'claim', u'budget', u'slip']
[u'secret', u'email', u'seek', u'inquiri']
[u'senat', u'call', u'medicar', u'cover', u'obes']
[u'senat', u'pleas', u'telstra', u'chief', u'brief']
[u'shire', u'form', u'holiday', u'home', u'polici']
[u'shoalhaven', u'record', u'fastest', u'illawarra', u'popul']
[u'rescu', u'flood', u'creek']
[u'sizzler', u'scrutini', u'food', u'poison']
[u'slater', u'start', u'strong', u'snapper', u'rock']
[u'snowi', u'crash', u'claim', u'motorcyclist']
[u'softwood', u'approv', u'expect', u'soon']
[u'southern', u'star', u'clean', u'sweep', u'seri']
[u'stand', u'polic', u'continu']
[u'stanhop', u'mull', u'counter', u'terror', u'recommend']
[u'compo', u'deal', u'vanston', u'say']
[u'stuart', u'seat', u'lose', u'caus', u'kerin']
[u'studi', u'predict', u'extrem', u'weather']
[u'taiwan', u'abolish', u'china', u'unif', u'bodi']
[u'tamworth', u'council', u'ask', u'tableland', u'rail']
[u'task', u'forc', u'chief', u'confid', u'erad', u'fox']
[u'teach', u'effort', u'earn', u'princip', u'nation', u'award']
[u'telstra', u'order', u'phone', u'rental', u'cost']
[u'thai', u'consid', u'postpon', u'elect']
[u'thiev', u'continu', u'cash', u'valuabl', u'leav']
[u'thousand', u'expect', u'flock', u'field', u'day']
[u'charg', u'hostag', u'incid']
[u'tiger', u'captur', u'titl']
[u'tiger', u'track', u'break', u'titl', u'drought']
[u'toll', u'plan', u'sell', u'off', u'patrick', u'takeov']
[u'transport', u'oper', u'driver', u'fatigu', u'regul']
[u'truck', u'accid', u'scatter', u'sheep']
[u'tunnel', u'report', u'recommend', u'lower', u'toll', u'charg']
[u'twin', u'tale', u'take', u'tropfest', u'honour']
[u'face', u'court', u'alleg', u'teen', u'drug', u'plot']
[u'take', u'stand', u'human', u'right', u'council']
[u'welcom', u'european', u'grant', u'palestinian', u'author']
[u'vaccin', u'dead', u'hors', u'virus']
[u'vcat', u'green', u'light', u'broiler', u'farm']
[u'children', u'benefit', u'scanner']
[u'prepar', u'game', u'open']
[u'scientist', u'investig', u'dead', u'eel']
[u'introduc', u'drug', u'drive', u'law']
[u'warrior', u'ponder', u'appeal', u'point']
[u'water', u'inquiri', u'submiss', u'back', u'plant']
[u'tougher', u'illeg', u'fish', u'penalti', u'wont', u'help']
[u'white', u'supremacist', u'tongeren']
[u'whyalla', u'lament', u'lose', u'match']
[u'worker', u'street', u'promot', u'model']
[u'work', u'start', u'earli', u'hospit']
[u'yahoo', u'implic', u'chines', u'dissid', u'jail']
[u'youth', u'oppos', u'shop', u'centr', u'music', u'choic']
[u'condor', u'give', u'tast', u'freedom']
[u'kill', u'indian', u'unrest']
[u'dead', u'baghdad', u'bomb']
[u'abar', u'call', u'coal', u'port', u'infrastructur']
[u'age', u'care', u'centr', u'credit', u'handl', u'abus']
[u'agforc', u'want', u'base', u'leasehold', u'rent']
[u'airservic', u'australia', u'cut', u'job']
[u'strike', u'kill', u'islam', u'jihad', u'leader']
[u'lion']
[u'alic', u'spring', u'liquor', u'law', u'scrutini']
[u'allow', u'game', u'class', u'lead', u'award']
[u'arrest', u'sizzler', u'poison', u'case']
[u'arroyo', u'plan', u'lift', u'state', u'emerg']
[u'arsenal', u'persi', u'longer', u'rape', u'suspect']
[u'athlet', u'leagu', u'defend', u'stawel', u'handicap', u'chang']
[u'exec', u'tell', u'cash', u'suitcas']
[u'ballot', u'hold', u'shipwreck', u'dive']
[u'beazley', u'steer', u'clear', u'faction', u'navel', u'gaze']
[u'bed', u'closur', u'forc', u'hospit', u'job']
[u'beef', u'expo', u'get', u'offici', u'launch']
[u'brumbi', u'criticis', u'carv']
[u'buckley', u'give', u'rule', u'thumb']
[u'bull', u'player', u'suspend', u'fight']
[u'bushfir', u'inquest', u'hear', u'communic', u'woe']
[u'bush', u'hail', u'progress', u'afghanistan']
[u'busi', u'lobbi', u'warn', u'casual', u'work', u'rule']
[u'busi', u'propon', u'seek', u'legal', u'advic', u'council']
[u'canberra', u'hous', u'come', u'microscop']
[u'canberra', u'summer', u'hottest', u'record']
[u'crash', u'bendigo', u'bank']
[u'chamber', u'predict', u'continu', u'miner', u'boom']
[u'child', u'support', u'chang', u'increas', u'poverti']
[u'china', u'ban', u'tortur', u'extract', u'confess']
[u'confer', u'reflect', u'rise', u'water', u'concern']
[u'costello', u'warn', u'unsustain']
[u'council', u'back', u'communiti', u'park', u'rezon']
[u'council', u'green', u'light', u'margaret', u'river', u'region']
[u'councillor', u'code', u'conduct', u'expect', u'boost']
[u'councillor', u'vote', u'rise']
[u'council', u'lure', u'cycl', u'race', u'riverland']
[u'council', u'lure', u'tour', u'riverland']
[u'court', u'uphold', u'quadripleg', u'woman', u'payout']
[u'credit', u'union', u'offer', u'help', u'fund', u'street', u'stall']
[u'current', u'wheat', u'tender', u'status', u'unclear', u'vail']
[u'dairi', u'owner', u'appeal', u'closur', u'push']
[u'debus', u'defend', u'marin', u'park', u'amidst', u'protest']
[u'defenc', u'summaris', u'case', u'child', u'murder', u'trial']
[u'detaine', u'move', u'polic', u'station']
[u'venuto', u'rule', u'blue', u'clash']
[u'downer', u'downplay', u'cabl']
[u'drought', u'dri', u'dairi', u'farm', u'incom']
[u'drug', u'raid', u'cannabi', u'haul']
[u'econom', u'growth', u'fall', u'short', u'forecast']
[u'elder', u'die', u'legionnair', u'outbreak']
[u'elder', u'welcom', u'indigen', u'court']
[u'england', u'struggl', u'pathan', u'tripl', u'strike']
[u'entertain', u'centr', u'revamp', u'plan', u'releas']
[u'bomb', u'target', u'govt', u'offic']
[u'famili', u'settl', u'cooper', u'share', u'disput']
[u'famili', u'violenc', u'report', u'urg', u'chang']
[u'field', u'day', u'crowd', u'bigger', u'expect']
[u'fish', u'project', u'receiv', u'fund', u'boost']
[u'star', u'help', u'fight']
[u'foskey', u'move', u'public', u'hous']
[u'founder', u'sell', u'billabong', u'stake']
[u'state', u'share']
[u'fund', u'rais', u'communiti', u'bank', u'plan']
[u'violenc', u'iraq', u'prompt', u'fear', u'open']
[u'game', u'baton', u'relay', u'fever', u'hit', u'south', u'east']
[u'gene', u'link', u'depress', u'risk']
[u'georgeson', u'open', u'account', u'snapper', u'rock']
[u'govt', u'accus', u'hamper', u'desal', u'plant']
[u'govt', u'say', u'plea', u'santo', u'oper', u'halt']
[u'govt', u'close', u'monitor', u'health', u'servic', u'creditor']
[u'govt', u'urg', u'boost', u'rail', u'infrastructur']
[u'govt', u'urg', u'boost', u'resourc', u'industri']
[u'grandstand', u'close', u'amid', u'collaps', u'fear']
[u'grazier', u'desper', u'rain']
[u'green', u'group', u'criticis', u'marin', u'park', u'protest']
[u'green', u'light', u'antarct', u'trial', u'flight']
[u'green', u'suppli', u'threat']
[u'group', u'boost', u'push', u'rail', u'improv']
[u'alloc', u'grossli', u'unfair', u'costa']
[u'fund', u'meet', u'expect']
[u'hire', u'rule', u'anger', u'hospit', u'staff']
[u'water', u'thief', u'jail']
[u'hundr', u'expect', u'mardi', u'gras', u'recoveri', u'parti']
[u'hungri', u'sieg', u'accus', u'remand', u'jail']
[u'icpa', u'maintain', u'colleg', u'campaign']
[u'infight', u'derail', u'opposit', u'attack']
[u'injur', u'vaughan', u'inspir', u'mcgrath', u'warn']
[u'drug', u'report', u'target', u'zealand']
[u'isra', u'militari', u'deni', u'involv', u'milit']
[u'isra', u'shoot', u'dead', u'palestinian', u'gunfir', u'west']
[u'mistak', u'howard', u'say']
[u'forc', u'england', u'sven']
[u'jetstar', u'detail', u'darwin', u'servic', u'plan']
[u'judd', u'name', u'eagl', u'captain']
[u'karratha', u'set', u'rain', u'record']
[u'kiwi', u'cricket', u'track', u'seri', u'clean', u'sweep']
[u'knife', u'bandit', u'flee', u'fire', u'senior']
[u'labor', u'fear', u'govt', u'block', u'aviat', u'safeti', u'inquiri']
[u'landhold', u'agreement', u'seek', u'coal', u'project']
[u'landown', u'wind', u'farm', u'propon']
[u'lennon', u'offer', u'fund', u'small', u'busi']
[u'local', u'council', u'push', u'alcohol', u'alic']
[u'luczak', u'isnt', u'leav', u'vega']
[u'macarthur', u'coal', u'profit', u'soar']
[u'madonna', u'semtex', u'girl', u'spark', u'trademark', u'disput']
[u'magistr', u'highlight', u'courthous', u'problem']
[u'malthous', u'moot', u'shoot', u'clock']
[u'appear', u'court', u'sieg']
[u'charg', u'galant', u'murder']
[u'manufactur', u'sector', u'contract', u'survey']
[u'homeless', u'famili', u'turn', u'away', u'shelter']
[u'marin', u'chang', u'affect', u'tasmania', u'report', u'find']
[u'mcarthur', u'river', u'decis', u'damag']
[u'meatwork', u'lockout', u'end']
[u'milit', u'face', u'death', u'bangladesh', u'bomb']
[u'accid', u'halt', u'product']
[u'minist', u'criticis', u'sizzler', u'poison', u'report']
[u'minist', u'impress', u'hous', u'summit', u'goodwil']
[u'minist', u'underlin', u'fish', u'stock', u'protect']
[u'census', u'collector', u'seek', u'north']
[u'nestl', u'job', u'doubt']
[u'troop', u'want', u'iraq', u'exit', u'year', u'poll']
[u'mother', u'win', u'payout', u'fail', u'abort']
[u'censur', u'indigen', u'comment']
[u'criticis', u'rail', u'book']
[u'outlin', u'way', u'address', u'labor', u'shortag']
[u'crab', u'help', u'detect', u'reef', u'pollut']
[u'museum', u'trace', u'hop', u'evolut']
[u'urg', u'crackdown', u'black', u'economi']
[u'dragon', u'announc', u'inaugur', u'coach']
[u'code', u'ethic', u'guid', u'teacher']
[u'polic']
[u'doctor', u'denman']
[u'footag', u'reveal', u'cattl', u'cruelti']
[u'law', u'design', u'repeat', u'offend']
[u'jail', u'teacher', u'student']
[u'nrac', u'visit', u'determin', u'drought', u'continu']
[u'investig', u'dragon', u'salari', u'breach']
[u'receiv', u'revenu', u'promis']
[u'govt', u'cost', u'fund']
[u'offic', u'sign', u'wrong', u'prison']
[u'open', u'news']
[u'opposit', u'promis', u'impress', u'disabl', u'group']
[u'pakistani', u'forc', u'attack', u'milit', u'hideout']
[u'palm', u'offic', u'reject', u'woman', u'injuri', u'claim']
[u'patel', u'patient', u'group', u'welcom', u'comp', u'extens']
[u'pilbara', u'flood', u'watch', u'cyclon', u'pass']
[u'grate', u'opportun', u'lead']
[u'prepar', u'mark', u'year', u'offic']
[u'polic', u'associ', u'warn', u'ax', u'specialist']
[u'polic', u'address', u'public', u'crime', u'percept']
[u'politician', u'focus', u'child', u'care', u'food', u'industri']
[u'properti', u'market', u'shift', u'focus']
[u'prosecutor', u'liken', u'guantanamo', u'defend', u'vampir']
[u'pulp', u'advoc', u'claim', u'liber', u'support']
[u'pulp', u'project', u'bring', u'class', u'action', u'threat']
[u'push', u'broom']
[u'qanta', u'worker', u'ralli', u'move']
[u'forese', u'smaller', u'share']
[u'accus', u'mudge', u'child', u'assault']
[u'premier', u'plan', u'health', u'summit']
[u'question', u'linger', u'barrett', u'futur']
[u'racist', u'websit', u'oper', u'serv', u'armi']
[u'rate', u'rise', u'includ', u'tweed', u'council', u'plan']
[u'region', u'plan', u'hurt', u'landhold', u'mayor']
[u'resid', u'maintain', u'hous', u'develop', u'fight']
[u'review', u'prompt', u'polic', u'shake']
[u'revis', u'plan', u'submit', u'shop', u'centr', u'propos']
[u'routin', u'check', u'uncov', u'cannabi', u'haul']
[u'sailor', u'accept', u'punish']
[u'saleyard', u'court', u'battl', u'face', u'delay']
[u'saleyard', u'council', u'approv']
[u'sampra', u'tenni', u'return']
[u'school', u'await', u'feder', u'fund']
[u'scrap', u'marin', u'protect', u'zone', u'urg']
[u'search', u'miss']
[u'secret', u'drug', u'increas', u'report']
[u'senior', u'slug', u'travel']
[u'shire', u'caravan', u'park', u'reopen']
[u'snake', u'fossil', u'miss', u'link', u'lizard']
[u'socceroo', u'arriv', u'dutch', u'camp']
[u'solvent', u'sniff', u'problem', u'norseman']
[u'afghan', u'jail', u'clash', u'inmat', u'surrend']
[u'south', u'west', u'gold', u'expans']
[u'specul', u'councillor', u'seek', u'liber']
[u'lanka', u'close', u'bangladesh']
[u'steep', u'terrain', u'hinder', u'fraser', u'firefight']
[u'storm', u'boss', u'want', u'action', u'coach', u'poach']
[u'strike', u'rail', u'worker', u'risk', u'fin']
[u'sydney', u'happi', u'goal', u'dwight', u'bounc']
[u'sydney', u'mother', u'charg', u'heroin', u'smuggl']
[u'sydney', u'woman', u'arrest', u'heroin', u'seizur']
[u'green', u'refus', u'rule', u'block', u'suppli']
[u'liber', u'promis', u'road', u'upgrad']
[u'tasmania', u'rais', u'concern']
[u'tasmania', u'share', u'increas']
[u'theophan', u'take', u'super', u'disput', u'court']
[u'tiger', u'confid', u'retain', u'princ']
[u'toowoomba', u'employ', u'urg', u'lift', u'wag']
[u'scientist', u'caution', u'nuclear', u'power']
[u'nation', u'effort', u'fight', u'illeg', u'fish']
[u'union', u'distanc', u'flag', u'burner']
[u'retak', u'lose', u'asian', u'beef', u'market', u'abar']
[u'compani', u'get', u'gold', u'mine', u'explor', u'right']
[u'soldier', u'kill', u'afghanistan']
[u'vail', u'defend', u'handl', u'scandal']
[u'vandal', u'forc', u'night', u'time', u'toilet', u'closur']
[u'vanston', u'unveil', u'immigr', u'chang']
[u'victori', u'tiger', u'king', u'like', u'dynasti']
[u'wagga', u'record', u'warmer', u'februari']
[u'govt', u'consid', u'customari', u'remot']
[u'wall', u'loss', u'local', u'market']
[u'warrior', u'assur', u'fair', u'appeal', u'hear']
[u'warrior', u'appeal', u'point', u'penalti']
[u'share', u'slap', u'face']
[u'water', u'pipelin', u'project', u'await', u'govt', u'subsidi']
[u'water', u'restrict', u'result', u'worth', u'celebr']
[u'water', u'worri', u'close', u'public', u'pool']
[u'weed', u'control', u'effort', u'strengthen']
[u'woman', u'accus', u'chequ', u'fraud']
[u'woman', u'face', u'court', u'sizzler', u'food', u'poison']
[u'woman', u'face', u'court', u'murder', u'charg']
[u'work', u'begin', u'sport', u'complex', u'mount', u'stromlo']
[u'world', u'winner', u'luger', u'england', u'game', u'squad']
[u'xenophon', u'enlist', u'elect', u'run', u'mat']
[u'build', u'hous', u'student']
[u'young', u'cricket', u'get', u'train', u'scheme']
[u'young', u'reckless', u'driver', u'polic']
[u'boost', u'meal', u'wheel', u'servic']
[u'go', u'power', u'station', u'wast', u'water', u'manag']
[u'abort', u'counsel', u'plan', u'rais', u'bias', u'concern']
[u'accc', u'probe', u'energi', u'util', u'merger', u'plan']
[u'teacher', u'offer', u'rise']
[u'log', u'elect', u'agenda']
[u'announc', u'mildura', u'memori', u'match']
[u'airservic', u'shake', u'creat', u'job', u'uncertainti']
[u'ararat', u'stab', u'put', u'hospit']
[u'art', u'dodger', u'jack', u'wild', u'dead']
[u'audit', u'reveal', u'detent', u'centr', u'tender', u'flaw']
[u'aust', u'partnership', u'studi', u'suicid', u'prevent']
[u'threaten', u'miss', u'document']
[u'bangladesh', u'bang', u'lanka', u'spin']
[u'basslink', u'cabl', u'test']
[u'basslink', u'cabl', u'undergo', u'final', u'test']
[u'beach', u'goer', u'warn', u'rough', u'condit']
[u'beatti', u'take', u'resign', u'tabl']
[u'beatti', u'talk', u'chines', u'propos']
[u'besanko', u'appoint', u'feder', u'court', u'judg']
[u'rainfal', u'record', u'cyclon', u'emma', u'aftermath']
[u'blast', u'rock', u'karachi', u'bush', u'visit']
[u'bodi', u'librari', u'garden']
[u'build', u'site', u'collaps', u'injur']
[u'bureaucraci', u'delay', u'see', u'patient']
[u'bushfir', u'inquest', u'hear', u'quiet', u'command', u'centr']
[u'campaign', u'aim', u'rais', u'depress', u'awar']
[u'caroona', u'coal', u'explor', u'committe', u'announc']
[u'chappel', u'face', u'censur', u'ganguli', u'comment']
[u'child', u'support', u'chang', u'increas', u'homeless']
[u'citrus', u'canker', u'outbreak', u'inquiri', u'continu']
[u'clark', u'independ']
[u'code', u'ethic', u'develop', u'tasmanian', u'teacher']
[u'cohen', u'beat', u'road', u'minist']
[u'cole', u'crouch', u'save', u'england', u'itali', u'crush', u'germani']
[u'colleg', u'campus', u'lose', u'dairi', u'accredit']
[u'collingwood', u'maiden', u'spur', u'england', u'nagpur']
[u'commonwealth', u'appeal', u'suicid', u'case', u'rule']
[u'communiti', u'centr', u'count', u'cost']
[u'communiti', u'honour', u'norther']
[u'consum', u'shrug', u'petrol', u'price', u'hike']
[u'council', u'close', u'secur', u'perform', u'art', u'facil']
[u'council', u'consid', u'law']
[u'council', u'environment', u'planner', u'quit']
[u'council', u'look', u'rate', u'rise', u'approv']
[u'council', u'reaffirm', u'supermarket', u'support']
[u'council', u'recognis', u'histor', u'loo', u'heritag']
[u'council', u'forc', u'merger', u'unnecessari']
[u'council', u'approach', u'govt', u'land', u'sale', u'opposit']
[u'council', u'face', u'court', u'road', u'worker', u'death']
[u'council', u'jail', u'tour']
[u'counsel', u'servic', u'hop', u'reduc', u'abort', u'rate']
[u'court', u'uphold', u'killer', u'convict']
[u'croatia', u'fight', u'argentina', u'brazil']
[u'cronulla', u'riot', u'accus', u'plead', u'guilti']
[u'demand', u'home', u'drop']
[u'democrat', u'accus', u'senat', u'shield', u'govt']
[u'downer', u'warn', u'taiwan', u'stabil']
[u'downpour', u'forc', u'pilbara', u'station', u'rescu']
[u'warn', u'grain', u'grower', u'reli']
[u'driver', u'avoid', u'crash']
[u'drown', u'confirm', u'caus', u'pool', u'death']
[u'dubbo', u'daytim', u'temperatur', u'fall']
[u'ethic', u'committe', u'close', u'nuttal', u'case']
[u'chief', u'execut', u'leav', u'wimmera']
[u'expert', u'urg', u'design', u'rethink']
[u'famili', u'flee', u'burn', u'hous']
[u'famili', u'chang', u'flaw', u'father']
[u'famili', u'question', u'teacher', u'sentenc', u'charg']
[u'farmer', u'ask', u'help', u'lake']
[u'fijian', u'militari', u'warn', u'respect', u'poll']
[u'arrest', u'perth', u'polic', u'chase']
[u'spark', u'hunt']
[u'franc', u'join', u'illeg', u'fish', u'fight']
[u'fresh', u'food', u'industri', u'strong', u'report', u'find']
[u'fund', u'seek', u'region', u'blood', u'collect']
[u'gillespi', u'tait', u'worthi', u'test', u'spot', u'lehmann']
[u'glitter', u'front', u'vietnames', u'court', u'child']
[u'glitter', u'child', u'trial', u'begin']
[u'govt', u'pledg', u'homeless', u'project']
[u'govt', u'pledg', u'improv', u'delorain', u'road']
[u'govt', u'chiltern', u'hospit']
[u'grasshopp', u'advantag', u'favour']
[u'great', u'southern', u'plantat', u'plan', u'expans']
[u'green', u'conced', u'suppli', u'block', u'remot']
[u'green', u'rais', u'concern', u'prescrib', u'burn']
[u'group', u'lobbi', u'continu', u'blood', u'lead', u'level', u'fund']
[u'group', u'look', u'possibl', u'boulder', u'polic', u'post', u'sit']
[u'group', u'beat', u'diabet', u'dialysi', u'unit', u'fund']
[u'grower', u'admit', u'employ', u'illeg', u'immigr']
[u'guus', u'signal', u'attack', u'strategi']
[u'heavi', u'rain', u'caus', u'water', u'suppli', u'chang']
[u'heroin', u'hide', u'fish', u'fillet']
[u'hewitt', u'vega', u'semi']
[u'hewitt', u'play', u'quarter', u'final']
[u'hmas', u'perth', u'rememb', u'brisban']
[u'hodgman', u'catch', u'hospit', u'contact']
[u'home', u'raid', u'hunt', u'tongeren']
[u'hull', u'outlin', u'snowi', u'privatis', u'fear']
[u'hunter', u'mine', u'contribut', u'xstrata', u'profit']
[u'hustl', u'flow', u'song', u'leav', u'censor', u'anxious']
[u'immigr', u'dept', u'settl', u'badrai', u'case']
[u'increas', u'mesothelioma', u'case', u'prompt']
[u'indian', u'game', u'star', u'test', u'posit']
[u'indigen', u'exhibit', u'king']
[u'indonesian', u'counter', u'terror', u'troop', u'train']
[u'inventor', u'take', u'novel', u'approach', u'feral', u'trap']
[u'iraqi', u'cancel', u'crisi', u'meet']
[u'jetstar', u'announc', u'flight', u'darwin']
[u'jovic', u'allow', u'return', u'australia']
[u'juri', u'child', u'murder', u'trial', u'consid', u'verdict']
[u'kalgoorli', u'consid', u'technolog', u'park']
[u'karachi', u'hotel', u'explos', u'kill']
[u'kimberley', u'win', u'nation', u'tourism', u'award']
[u'labor', u'fear', u'impact', u'telstra', u'price', u'rise']
[u'labor', u'junk', u'food', u'school']
[u'latest', u'school', u'cruel', u'blow']
[u'chang', u'polic', u'sting']
[u'lewi', u'stand', u'upper', u'hous']
[u'liber', u'promis', u'theft', u'task', u'forc']
[u'maclean', u'natur', u'disast']
[u'magistr']
[u'jail', u'stab', u'cabbi']
[u'face', u'court', u'accus', u'cannabi', u'cultiv']
[u'margaret', u'river', u'resid', u'concern', u'luxuri']
[u'martin', u'quiet', u'hospit', u'budget', u'blow']
[u'mayor', u'push', u'continu', u'drought']
[u'meet', u'tell', u'relat', u'orang', u'crime', u'rate']
[u'mine', u'energi', u'stock', u'lift', u'market']
[u'monckton', u'aquat', u'centr', u'unveil']
[u'consult', u'urg', u'educ', u'plan']
[u'move', u'afoot', u'boost', u'boddington', u'water', u'suppli']
[u'nairn', u'seek', u'appeal', u'plan', u'decis']
[u'nation', u'defend', u'censur', u'indigen']
[u'nativ', u'plant', u'pose', u'dead', u'risk', u'cattl']
[u'name', u'finalist']
[u'centr', u'boost', u'medic', u'research']
[u'group', u'cater', u'mildura', u'young', u'profession']
[u'marin', u'protect', u'area', u'draw', u'wide', u'rang']
[u'link', u'librari', u'nationwid']
[u'water', u'restrict', u'whitsunday']
[u'nightclub', u'unit', u'repeat', u'troublemak']
[u'nile', u'retract', u'tunnel', u'deal', u'comment']
[u'bail', u'charg', u'pregnant', u'wife', u'murder']
[u'older', u'patient', u'treatment', u'unit', u'success']
[u'oldest', u'mark', u'grave', u'restor']
[u'pakistani', u'blast', u'kill', u'diplomat']
[u'palmer', u'rank', u'hop', u'squash']
[u'palm', u'policeman', u'stand', u'action']
[u'papuan', u'discuss', u'freeport', u'closur', u'amid', u'unrest']
[u'paramed', u'roster', u'chang', u'spark', u'industri']
[u'parent', u'accus', u'abus', u'toddler']
[u'pentagon', u'look', u'shark', u'spi', u'ocean', u'research']
[u'pitcairn', u'island', u'lose', u'case', u'appeal']
[u'plan', u'continu', u'griffith', u'campus']
[u'hop', u'counsel', u'abort', u'rate']
[u'mark', u'year', u'offic']
[u'polic', u'ambush', u'kill']
[u'polic', u'investig', u'ambul', u'crash']
[u'polic', u'warn', u'drug', u'plant', u'concern']
[u'poll', u'rat', u'clark', u'qlds', u'popular', u'mayor']
[u'poor', u'grape', u'price', u'send', u'land', u'valu', u'plummet']
[u'protest', u'disrupt', u'anniversari', u'function']
[u'push', u'fund', u'educ']
[u'pyap', u'near', u'shipshap', u'tourist']
[u'nurs', u'offer', u'deal']
[u'qlds', u'murder', u'manslaught', u'rate', u'fall']
[u'qsia', u'odd', u'abar', u'fisheri', u'predict']
[u'queanbeyan', u'demand', u'govt', u'attent']
[u'rail', u'worker', u'vote', u'continu', u'strike']
[u'confid', u'despit', u'weaker', u'econom', u'figur']
[u'republ', u'support', u'push', u'save', u'queen']
[u'roadsid', u'crackdown', u'net', u'centrelink', u'cheat']
[u'rockhampton', u'breed', u'endang', u'bettong']
[u'roger', u'waratah']
[u'sampi', u'charg', u'alleg', u'assault']
[u'santoro', u'meet', u'nurs', u'home', u'abus', u'victim']
[u'school', u'asbesto', u'clean', u'slow', u'minist']
[u'scientist', u'conduct', u'great', u'barrier', u'reef', u'survey']
[u'scientist', u'tip', u'water', u'trade', u'boom']
[u'search', u'continu', u'miss', u'angler']
[u'search', u'continu', u'miss']
[u'seven', u'aussi', u'progress', u'snapper', u'rock']
[u'seventh', u'legionnair', u'case', u'confirm']
[u'shirvo', u'eye', u'relay', u'gold']
[u'shoalhaven', u'mayor', u'consid', u'state', u'polit']
[u'shrivo', u'eye', u'relay', u'gold']
[u'sign', u'highlight', u'highway', u'score']
[u'sizzler', u'poison', u'accus', u'unwel', u'court']
[u'sizzler', u'suspect', u'mental', u'unfit', u'court']
[u'skill', u'shortag', u'see', u'busi', u'turn', u'migrant']
[u'sloppi', u'spell', u'undo', u'passport', u'cheat']
[u'soft', u'drink', u'check', u'cancer', u'chemic']
[u'storm', u'queensland']
[u'strategi', u'urg', u'busi', u'medic', u'clinic']
[u'studi', u'find', u'need', u'mudge', u'area', u'doctor']
[u'summer', u'weather', u'record', u'tumbl', u'western']
[u'suspect', u'scat', u'undergo', u'test']
[u'sydney', u'mayor', u'meet', u'skill', u'forum']
[u'taipan', u'venom', u'life', u'saver']
[u'talk', u'focus', u'improv', u'fraser', u'emerg']
[u'tasmanian', u'driver', u'heed', u'hoon', u'law']
[u'teacher', u'walk', u'staff', u'level']
[u'tenni', u'accus', u'drug', u'rival']
[u'tenterfield', u'face', u'dentist', u'shortag']
[u'thai', u'urg', u'poll', u'particip']
[u'thorp', u'minut', u'game']
[u'charg', u'bank', u'heist']
[u'tiger', u'inning', u'point']
[u'timpano', u'leagu', u'decid']
[u'tongala', u'beat', u'despit', u'nestl', u'woe']
[u'triathlet', u'bennett', u'miss', u'game']
[u'arrest', u'sydney', u'drug', u'probe']
[u'jail', u'bondag', u'kill']
[u'undermin', u'law', u'riski', u'costello']
[u'underworld', u'task', u'forc', u'seek', u'miss']
[u'union', u'council', u'meet', u'bulli', u'complaint']
[u'univers', u'chief', u'defend', u'publish', u'closur']
[u'india', u'reach', u'nuclear', u'deal']
[u'market', u'recov', u'amid', u'grow', u'investor', u'confid']
[u'vail', u'hear', u'cabl']
[u'vanston', u'give', u'deport', u'visa']
[u'vanston', u'reinstat', u'visa', u'deport']
[u'tongeren', u'interst']
[u'mental', u'health', u'facil', u'fall', u'short', u'report']
[u'victoria', u'confirm', u'seventh', u'legionnair', u'case']
[u'victorian', u'resid', u'avoid', u'tougher', u'water']
[u'video', u'show', u'bush', u'warn', u'katrina']
[u'volunt', u'avoid', u'jail', u'high', u'speed', u'chase']
[u'warn', u'restrict', u'bull', u'melbourn']
[u'warn', u'illeg', u'log', u'destroy', u'forest']
[u'word', u'erupt', u'sport', u'club', u'fund']
[u'watch', u'hous', u'escap', u'prompt', u'polic', u'review']
[u'weather', u'warn', u'coastal', u'area']
[u'wilder', u'group', u'take', u'shoot', u'complex']
[u'wild', u'weather', u'bring', u'good']
[u'woman', u'face', u'retrial', u'partner', u'death']
[u'woman', u'death', u'rais', u'road', u'fund', u'question']
[u'xstrata', u'profit']
[u'win', u'honour', u'melbourn', u'quill', u'award']
[u'abus', u'wife', u'avoid', u'penalti', u'husband', u'death']
[u'academ', u'predict', u'liber', u'lewi', u'seat']
[u'govt', u'educ', u'union', u'odd', u'teacher']
[u'opposit', u'critic', u'chang', u'pension']
[u'adelaid', u'hit', u'right', u'note', u'father']
[u'ask', u'review', u'gunn', u'donat', u'claim']
[u'alfalfa', u'probe', u'fail', u'salmonella', u'sourc']
[u'antarct', u'sheet', u'melt', u'fast', u'scientist']
[u'arroyo', u'lift', u'state', u'emerg']
[u'arsenal', u'cole', u'week']
[u'asic', u'seek', u'fin', u'iron', u'compani']
[u'asteroid', u'top', u'earth', u'list']
[u'australian', u'uranium', u'export', u'polici', u'criticis']
[u'aust', u'scientist', u'concern', u'benzen', u'soft']
[u'lawyer', u'cole', u'inquiri', u'abus', u'power']
[u'bargo', u'school', u'join', u'asbesto', u'affect', u'school']
[u'bayliss', u'take', u'provision', u'pole', u'phillip', u'island']
[u'beazley', u'tell', u'come', u'clean']
[u'bellingen', u'resid', u'warn', u'despit', u'reced']
[u'bemax', u'record', u'profit']
[u'bennett', u'comm', u'game']
[u'biologist', u'discov', u'shark', u'speci']
[u'bjorn', u'borg', u'sell', u'wimbledon', u'trophi']
[u'blaze', u'damag', u'townhous', u'project']
[u'bodi', u'spark', u'search', u'wit']
[u'brazil', u'open', u'chunk', u'amazon', u'forest', u'log']
[u'broadmeadow', u'coal', u'product', u'resum']
[u'brown', u'return', u'tiger']
[u'brumbi', u'outclass', u'cat']
[u'bulldog', u'announc', u'sign']
[u'bushrang', u'promis', u'start', u'inning']
[u'busi', u'ponder', u'retail', u'plan', u'impact']
[u'canadian', u'convoy', u'attack', u'afghanistan']
[u'candid', u'rais', u'grape', u'contract', u'concern']
[u'caravan', u'park', u'evacu', u'amid', u'rise', u'river', u'level']
[u'card', u'scam', u'prompt', u'atm', u'warn']
[u'maker', u'upbeat', u'despit', u'sale', u'drop']
[u'cautious', u'consum', u'forc', u'servic', u'sector', u'activ']
[u'centacar', u'back', u'pregnanc', u'support', u'hotlin', u'plan']
[u'clan', u'invest', u'nhulunbuy', u'hous']
[u'coach', u'question', u'strength', u'kiwi', u'seven', u'squad']
[u'coastal', u'servic', u'return', u'weather']
[u'communiti', u'concert', u'honour', u'flood', u'effort']
[u'connolli', u'put', u'freez', u'wallabi', u'train']
[u'coron', u'urg', u'medic', u'examin', u'detain']
[u'council', u'air', u'age', u'care', u'fund', u'frustrat']
[u'council', u'back', u'land', u'chang']
[u'councillor', u'unhappi', u'rural', u'water', u'plan']
[u'council', u'consid', u'merger']
[u'council', u'head', u'financi', u'disast', u'studi']
[u'council', u'show', u'fortuna', u'villa']
[u'council', u'take', u'legal', u'action', u'resort', u'food']
[u'council', u'offer', u'land', u'buddhist', u'order']
[u'court', u'rule', u'adida', u'kangaroo', u'skin', u'shoe']
[u'crash', u'test', u'bumper', u'bar', u'effect']
[u'cricket', u'hero', u'head', u'outback']
[u'custom', u'siez', u'illeg', u'fish', u'boat']
[u'darwin', u'seawal', u'near', u'complet']
[u'delug', u'littl', u'eas', u'drought']
[u'demon', u'good', u'lion']
[u'dept', u'reject', u'communiti', u'leas', u'concern']
[u'doctor', u'group', u'support', u'health', u'hous', u'push']
[u'dolphin', u'strand']
[u'dorazio', u'clear', u'corrupt']
[u'downer', u'support', u'india', u'nuclear', u'pact']
[u'decid', u'teacher', u'charg']
[u'drink', u'driver', u'fin', u'fatal', u'crash']
[u'dwight', u'arriv', u'home', u'leagu', u'final']
[u'economi', u'domin', u'leader', u'debat']
[u'eighth', u'legionnair', u'case', u'identifi']
[u'factori', u'blaze', u'claim', u'histor', u'paddl', u'steamer']
[u'famili', u'come', u'say', u'princ']
[u'fatal', u'chase', u'call', u'coron']
[u'fear', u'expans', u'intensifi', u'skill', u'shortag']
[u'film', u'immortalis', u'wwii', u'darwin', u'bomb']
[u'firefight', u'rise']
[u'nation', u'murray', u'darl', u'preselect']
[u'floodwat', u'strand', u'bellingen', u'resid']
[u'forest', u'area', u'restrict', u'amidst', u'hunt', u'chang']
[u'nurs', u'get', u'life', u'sentenc', u'patient']
[u'soviet', u'union', u'accus', u'attempt', u'pope']
[u'fortescu', u'deni', u'mislead', u'investor']
[u'fourth', u'suspect', u'charg', u'record', u'british', u'cash']
[u'carcass', u'investig', u'continu']
[u'fund', u'ensur', u'research', u'centr', u'upgrad']
[u'death', u'prompt', u'call', u'tougher', u'african', u'hate']
[u'generos', u'fellow', u'grower', u'lead', u'uniqu']
[u'glitter', u'jail', u'child', u'abus']
[u'glitter', u'sentenc', u'year', u'jail']
[u'govt', u'block', u'unit', u'develop']
[u'govt', u'say', u'countrylink', u'commit', u'remain']
[u'govt', u'greehous', u'emiss', u'elect']
[u'govt', u'help', u'chiltern', u'patient']
[u'govt', u'review', u'defenc', u'equip', u'complaint']
[u'grain', u'grower', u'smile', u'iraq', u'wheat', u'deal']
[u'green', u'promis', u'cash', u'child', u'protect']
[u'greenup', u'murder', u'accus', u'acquit']
[u'group', u'discuss', u'better', u'market', u'access', u'sheep']
[u'group', u'fight', u'wind', u'farm', u'turbin', u'approv']
[u'gunmen', u'kill', u'dozen', u'iraqi', u'shiit']
[u'gun', u'suscept', u'earthquak']
[u'heal', u'consid', u'return']
[u'help', u'seek', u'search', u'miss']
[u'highway', u'reopen', u'truck', u'crash']
[u'histor', u'reserv', u'includ', u'alcohol']
[u'hobart', u'beach', u'pollut', u'probe']
[u'hoggard', u'blitz', u'put', u'england']
[u'hook', u'bouncer', u'struggl', u'contest', u'civil', u'action']
[u'hospit', u'abl', u'emerg', u'dept', u'open', u'longer']
[u'hospit', u'site', u'great', u'commerci', u'potenti']
[u'howard', u'open', u'cathol', u'campus']
[u'huge', u'trade', u'deficit', u'shock', u'market']
[u'humpti', u'dump', u'close']
[u'hunter', u'resid', u'feel', u'high', u'fuel', u'price', u'impact']
[u'irrig', u'get', u'short', u'term', u'drought', u'relief']
[u'japan', u'eye', u'deflat']
[u'judg', u'mull', u'thoma', u'sentenc']
[u'judg', u'rule', u'convict', u'drug', u'case']
[u'keat', u'urg', u'tunnel']
[u'kick', u'depress', u'foundat']
[u'labor', u'steal', u'feder', u'govt', u'thunder', u'downer']
[u'labor', u'promis', u'major', u'road', u'spend']
[u'lawyer', u'urg', u'court', u'free', u'thoma']
[u'leader', u'refus', u'televis', u'debat']
[u'lennon', u'contract', u'probe', u'post', u'elect']
[u'lennon', u'refus', u'debat', u'green']
[u'lennon', u'want', u'hospit', u'contract', u'detail', u'releas']
[u'lift', u'borneo', u'travel', u'warn', u'malaysia', u'urg']
[u'littl', u'dope']
[u'luczak', u'leav', u'vega']
[u'major', u'verdict', u'stop', u'rogu', u'juror']
[u'lose', u'leg', u'work', u'accid']
[u'plead', u'guilti', u'charg']
[u'plead', u'guilti', u'drive', u'murder']
[u'march', u'scorcher', u'sign', u'thing', u'come']
[u'market', u'fall', u'amid', u'mix', u'trade']
[u'meatwork', u'owner', u'get', u'time', u'clean', u'plan']
[u'medic', u'clinic', u'close', u'door']
[u'merger', u'plan', u'threaten', u'energi', u'job']
[u'minist', u'boss', u'odd', u'hospit', u'woe']
[u'minist', u'play', u'shoot', u'plan', u'concern']
[u'minist', u'play', u'work', u'chang', u'impact']
[u'miss', u'safe']
[u'mitsubishi', u'rev', u'sale']
[u'great', u'southern', u'woodchip', u'destin', u'china']
[u'rain', u'forecast', u'flood', u'bellingen']
[u'rain', u'flood', u'area', u'north']
[u'time', u'comment', u'infrastructur', u'levi']
[u'napier', u'fail', u'reveal', u'invest']
[u'nation', u'galleri', u'host', u'constabl', u'exhibit']
[u'nation', u'park']
[u'nestl', u'factori', u'predict', u'close']
[u'aircraft', u'boost', u'cargo', u'capac']
[u'boss', u'put', u'galactico', u'notic']
[u'focus', u'emerg', u'chopper', u'push']
[u'time', u'doctor', u'start', u'work']
[u'plan', u'boost', u'border', u'surveil']
[u'screw', u'licens', u'plate', u'theft']
[u'opposit', u'back', u'cfmeu', u'deregistr']
[u'orang', u'home', u'emerg', u'control', u'centr']
[u'organis', u'confid', u'return', u'game', u'ticket']
[u'pair', u'jail', u'detent', u'centr', u'assault']
[u'palestinian', u'teen', u'kill', u'west', u'bank']
[u'palm', u'investig', u'deni', u'favour', u'offic']
[u'perish', u'resort', u'bed', u'boost']
[u'petit', u'oppos', u'bombala', u'rate', u'rise']
[u'petit', u'reject', u'fluorid', u'plan']
[u'pissarro', u'exhibit', u'open', u'victoria']
[u'polic', u'offic', u'face', u'sack', u'theft']
[u'polic', u'prepar', u'game', u'villag', u'patrol']
[u'polic', u'probe', u'child', u'abduct', u'attempt']
[u'pool', u'remain', u'close', u'weekend']
[u'port', u'reach', u'high', u'demand']
[u'posit', u'news', u'thorp']
[u'potato', u'factori', u'hammer']
[u'princ', u'sign', u'titan']
[u'protest', u'guilti', u'hinder', u'offici']
[u'protest', u'howard']
[u'public', u'ask', u'report', u'footi', u'vandal']
[u'public', u'urg', u'protest', u'alumina', u'refineri']
[u'race', u'meet', u'plan', u'review']
[u'rail', u'worker', u'order', u'explain', u'strike']
[u'rain', u'expect', u'boost', u'biolog', u'survey']
[u'rann', u'pledg', u'greenhous', u'emiss']
[u'record', u'trade', u'deficit', u'glitch']
[u'red', u'impress', u'chief']
[u'resid', u'quiz', u'council', u'chang']
[u'retrial', u'order', u'murder', u'accus']
[u'robbin', u'announc', u'row', u'comeback']
[u'brew', u'council', u'inquiri']
[u'royal', u'anthem', u'brief', u'game', u'ceremoni']
[u'mark', u'anniversari', u'japanes', u'raid']
[u'ruddock', u'decid', u'court', u'resourc']
[u'ballot', u'paper', u'finalis']
[u'produc', u'reach', u'agreement']
[u'research', u'help', u'develop', u'vietnames', u'clam']
[u'scientist', u'test', u'whale', u'strand', u'theori']
[u'search', u'call', u'miss']
[u'search', u'angler', u'scale']
[u'senat', u'urg', u'labor', u'parti', u'support', u'crean']
[u'servic', u'staff', u'strike', u'disrupt', u'travel']
[u'sibl', u'court', u'slave', u'charg']
[u'skip', u'period', u'cancer', u'risk']
[u'special', u'need', u'fund', u'cut', u'unfair']
[u'special', u'shipment', u'port']
[u'stanhop', u'stay', u'clear', u'teacher', u'disput']
[u'stormi', u'weather', u'forc', u'beach', u'closur']
[u'govt', u'promis', u'high', u'school']
[u'grower', u'get', u'nation', u'veget']
[u'tasmanian', u'spider', u'intern', u'microscop']
[u'poppi', u'plant', u'begin', u'process']
[u'taxi', u'secur', u'camera', u'upgrad']
[u'teen', u'face', u'child', u'porn', u'charg']
[u'tender', u'ruin', u'welfar', u'servic', u'swan']
[u'text', u'driver', u'liabl', u'crash', u'death']
[u'palac', u'win', u'heritag', u'award']
[u'tiger', u'struggl', u'blue']
[u'time', u'right', u'roger', u'play', u'mckenzi']
[u'tradit', u'land', u'owner', u'push', u'borroloola', u'marin']
[u'uncertainti', u'glen', u'rock', u'station', u'futur']
[u'senat', u'approv', u'renew', u'revis', u'patriot']
[u'vail', u'seal', u'australian', u'wheat', u'deal', u'iraq']
[u'vandort', u'steer', u'lanka', u'easi']
[u'vaughan', u'test', u'expect', u'miss', u'india']
[u'artist', u'take', u'australia', u'richest', u'sculptur']
[u'mull', u'support', u'abort']
[u'volunt', u'seek', u'help', u'polic']
[u'warrior', u'look', u'solid', u'redback']
[u'wheat', u'deal', u'prove', u'labor', u'wrong', u'vail']
[u'wheat', u'export', u'author', u'scandal']
[u'wild', u'weather', u'hinder', u'plane', u'train', u'servic']
[u'wild', u'weather', u'restrict', u'trawler', u'fisher', u'incom']
[u'wirribe', u'park', u'host', u'helen', u'lemprier', u'sculptur', u'award']
[u'woman', u'guilti', u'murder', u'newborn']
[u'woman', u'jail', u'welfar', u'fraud']
[u'vehicl', u'brisban', u'motorway', u'pile']
[u'aborigin', u'communiti', u'prais', u'suspect']
[u'activist', u'health', u'check', u'detain', u'fishermen']
[u'hour', u'pressur', u'emerg']
[u'urg', u'grant', u'bash', u'victim', u'gratia']
[u'aussi', u'buckl', u'fire', u'indonesia', u'open', u'lead']
[u'aussi', u'darchinyan', u'retain', u'flyweight', u'titl']
[u'avalanch', u'hit', u'skier', u'italian', u'alp']
[u'bayley', u'miss', u'bronz', u'narrow', u'margin']
[u'bayliss', u'continu', u'strong', u'qualifi', u'form']
[u'bayliss', u'set', u'record', u'secur', u'island', u'pole']
[u'birney', u'confront', u'leadership', u'challeng', u'talk']
[u'bizarr', u'transport', u'argument', u'caus', u'fund']
[u'blackberri', u'servic', u'assur', u'legal', u'disput']
[u'black', u'cap', u'windi']
[u'blair', u'believ', u'judg', u'iraq']
[u'borg', u'wimbledon', u'trophi']
[u'breast', u'cancer', u'screen', u'program', u'review']
[u'brisban', u'teen', u'charg', u'attempt', u'murder']
[u'bush', u'arriv', u'pakistan', u'anti', u'terror', u'talk']
[u'bush', u'pakistan', u'landmark', u'talk']
[u'bushrang', u'face', u'uphil', u'battl', u'bull']
[u'bush', u'visit', u'prompt', u'imran', u'khan', u'hous', u'arrest']
[u'clean', u'mirror', u'bloodi', u'tourism', u'campaign']
[u'cole', u'request', u'extend', u'deadlin']
[u'cole', u'seek', u'extend', u'deadlin']
[u'compani', u'push', u'ahead', u'iron', u'plan']
[u'consortium', u'form', u'wheat', u'sale', u'iraq']
[u'cook', u'slam', u'debut', u'leav', u'england']
[u'cooper', u'rebound', u'olymp', u'disappoint']
[u'costello', u'review', u'stunt']
[u'coupl', u'escap', u'burn', u'hous']
[u'crean', u'ditch', u'effort', u'save', u'polit', u'skin']
[u'crew', u'battl', u'shop', u'healesvill']
[u'crowd', u'flock', u'adelaid', u'festiv']
[u'crow', u'cat', u'secur', u'semi', u'final', u'spot']
[u'crusad', u'wipe', u'blue', u'away']
[u'custom', u'escort', u'illeg', u'fish', u'boat', u'shore']
[u'field', u'omagh', u'win', u'futur', u'stake']
[u'fisher', u'rue', u'miss', u'opportun']
[u'flood', u'threaten', u'northern']
[u'chief', u'minist', u'quit']
[u'govt', u'unveil', u'toothfish', u'catch', u'plan']
[u'govt', u'withdraw', u'fund', u'indigen', u'carer', u'group']
[u'guantanamo', u'prison', u'claim', u'forc', u'feed', u'tortur']
[u'hama', u'say', u'peac', u'israel', u'pull']
[u'heavi', u'rain', u'prompt', u'lismor', u'flood', u'alert']
[u'hewitt', u'power', u'vega', u'semi']
[u'hewitt', u'prim']
[u'hewitt', u'play', u'davi', u'quarter', u'final']
[u'hiddink', u'russia', u'deni', u'agreement']
[u'hoggard', u'rat', u'nagpur', u'haul', u'best']
[u'imran', u'khan', u'detain', u'amid', u'anti', u'bush', u'protest']
[u'imran', u'khan', u'hous', u'arrest']
[u'indigen', u'need', u'say', u'hill']
[u'indonesian', u'die', u'bird']
[u'iran', u'nuclear', u'talk', u'break']
[u'island', u'mosquito', u'bear', u'diseas', u'outbreak']
[u'isra', u'firecrack', u'church', u'polic']
[u'kahlefeldt', u'luxford', u'star', u'doha']
[u'kean', u'sign', u'year', u'deal', u'spur']
[u'kenyan', u'paper', u'sale', u'govt', u'shutdown']
[u'labor', u'back', u'cole', u'push', u'inquiri', u'extens']
[u'labor', u'label', u'review', u'stunt']
[u'labor', u'back', u'green', u'candid', u'ruffl']
[u'labor', u'want', u'health', u'focus', u'royal', u'hobart']
[u'lampard', u'miss', u'baggi', u'struggl', u'barca']
[u'council', u'urg', u'parti', u'consid', u'compens']
[u'legionnair', u'patient', u'releas', u'hospit']
[u'liber', u'promis', u'chang', u'parol']
[u'licenc', u'chang', u'leav', u'taxi', u'industri', u'cold']
[u'live', u'dead', u'self', u'help', u'book', u'win', u'oddest', u'titl', u'award']
[u'man', u'bodi', u'recov', u'murray']
[u'mauresmo', u'hand', u'lesson', u'hingi']
[u'mckinna', u'talk', u'final', u'oppon']
[u'mcname', u'quit', u'australian', u'open', u'post']
[u'mear', u'take', u'gold', u'sydney']
[u'melburnian', u'live', u'higher', u'life', u'sydneysid']
[u'mickelson', u'join', u'wood', u'doral', u'lead']
[u'minist', u'backflip', u'land', u'deal', u'alleg']
[u'minist', u'defend', u'pension', u'incom', u'test']
[u'caledonia', u'seek', u'pacif', u'forum', u'seat']
[u'ninth', u'legionnair', u'case', u'diagnos', u'melbourn']
[u'link', u'sydney', u'murder', u'polic']
[u'ntini', u'destroy', u'australia']
[u'opposit', u'accept', u'offer', u'shadow', u'court']
[u'opposit', u'say', u'cole', u'need', u'greater', u'power']
[u'pentagon', u'releas', u'guantanamo', u'detaine', u'list']
[u'pittman', u'sizzl', u'game', u'lead']
[u'polic', u'investig', u'tripl', u'stab']
[u'polic', u'kava', u'bust']
[u'power', u'trounc', u'blue', u'tiger', u'dog']
[u'power', u'trounc', u'blue', u'tiger', u'eagl', u'triumph']
[u'premier', u'promis', u'festiv', u'dollar']
[u'purs', u'snatch', u'death', u'penalti', u'introduc', u'china']
[u'redback', u'fight', u'perth']
[u'resid', u'despit', u'eas', u'flood']
[u'rink', u'lead', u'zimbabw', u'victori']
[u'roar']
[u'ronaldo', u'leav', u'madrid', u'derbi']
[u'rossi', u'set', u'pace', u'despit', u'crash', u'catalunya', u'test']
[u'royal', u'coupl', u'busi', u'aust', u'schedul']
[u'seven', u'kill', u'iraqi', u'market', u'bomb']
[u'seven', u'student', u'anzac', u'trip', u'gallipoli']
[u'sheringham', u'extend', u'hammer', u'deal']
[u'socceroo', u'line', u'dutch']
[u'solberg', u'snare', u'mexico', u'ralli', u'lead']
[u'space', u'station', u'complet']
[u'storm', u'black', u'thousand']
[u'sydney', u'teen', u'charg', u'murder']
[u'thousand', u'prepar', u'mardi', u'gras']
[u'thousand', u'ralli', u'support', u'thai']
[u'thousand', u'turn', u'art', u'festiv', u'kick']
[u'thousand', u'turn', u'sydney', u'mardi', u'gras']
[u'tiger', u'thrash', u'blue', u'beller']
[u'tongan', u'govt', u'consid', u'slash', u'public', u'servic']
[u'turnbul', u'lobbi', u'lower', u'rat']
[u'union', u'aim', u'timber', u'talk', u'free', u'polit']
[u'probe', u'possibl', u'music', u'download', u'cartel']
[u'stock', u'intel', u'warn', u'shortfal']
[u'waratah', u'win', u'way']
[u'waratah', u'shark']
[u'warn', u'urg', u'selector', u'look', u'harwood']
[u'weather', u'put', u'surf', u'hold']
[u'weather', u'hinder', u'emerg', u'effort']
[u'wild', u'weather', u'lash', u'north', u'coast']
[u'windi', u'beat', u'black', u'cap', u'wicket']
[u'legionnair', u'case', u'melbourn']
[u'sign', u'histor', u'agreement', u'vietnam', u'cambodia']
[u'aguri', u'aim', u'quick', u'impact']
[u'member', u'begin', u'preselect', u'vote']
[u'qaeda', u'tape', u'urg', u'boycott', u'cartoon']
[u'urg', u'better', u'supervis', u'doctor']
[u'stronger', u'elect', u'mbeki']
[u'aussi', u'taylor', u'fail', u'titl']
[u'bayley', u'fail', u'impact', u'women', u'keirin']
[u'bayliss', u'bounc', u'corser']
[u'beazley', u'criticis', u'import', u'labour', u'polici']
[u'behav', u'lose', u'student', u'travel', u'pass', u'iemma', u'warn']
[u'boro', u'boss', u'prais', u'viduka']
[u'bull', u'secur', u'home', u'final']
[u'bush', u'prais', u'pakistan', u'fight', u'terror']
[u'australian', u'clean']
[u'carnarvon', u'flood', u'risk', u'eas']
[u'chechen', u'parliament', u'appoint', u'leader']
[u'cheetah', u'late', u'hurrican']
[u'china', u'delay', u'space', u'walk', u'mission']
[u'china', u'promis', u'help', u'rural', u'poor']
[u'church', u'offer', u'music', u'educ', u'youth', u'choir']
[u'coach', u'clash', u'crusad', u'blue', u'match']
[u'comment', u'seek', u'futur', u'submarin', u'base']
[u'commission', u'seek', u'mandatori', u'jail', u'term', u'polic']
[u'cook', u'thrill', u'debut']
[u'cross', u'citi', u'tunnel', u'oper', u'halv', u'toll']
[u'crow', u'cat', u'secur', u'semi', u'final', u'spot']
[u'cruis', u'holm', u'kidman', u'award', u'hollywood', u'raspberri']
[u'darwin', u'citi', u'council', u'review', u'citi', u'market', u'campaign']
[u'derbi', u'day', u'suit', u'real', u'barca', u'power']
[u'docker', u'magpi']
[u'drink', u'driver', u'catch', u'speed', u'grandson']
[u'farmer', u'warn', u'feed', u'swill', u'pig']
[u'leagu', u'grand', u'final']
[u'fewer', u'tasmanian', u'nomin', u'elect']
[u'govt', u'give', u'solon', u'hard', u'time']
[u'govt', u'investig', u'shoot', u'effect']
[u'govt', u'look', u'refund', u'recycl', u'remot']
[u'green', u'launch', u'energi', u'polici']
[u'green', u'push', u'transport', u'overhaul']
[u'greenwood', u'retir', u'report']
[u'hama', u'talk', u'continu', u'russia']
[u'hewitt', u'vega', u'decid']
[u'hiddink', u'like', u'depart']
[u'highland', u'cruis', u'victori', u'stormer']
[u'hilfenhaus', u'fast', u'track', u'record']
[u'iemma', u'cut', u'cross', u'citi', u'toll']
[u'jaffer', u'slam', u'maiden', u'nagpur', u'test', u'draw']
[u'japanes', u'tourist', u'hospit', u'accid']
[u'kenyan', u'govt', u'unapologet', u'media', u'raid']
[u'labor', u'liber', u'launch', u'campaign']
[u'enforc', u'small', u'impact', u'heroin', u'drought']
[u'liber', u'govt', u'increas', u'tourism', u'spend']
[u'liber', u'outlin', u'plan', u'tackl', u'problem', u'gambl']
[u'liber', u'promis', u'boat', u'facil', u'upgrad']
[u'light', u'plane', u'crash', u'land', u'hobart', u'airport']
[u'major', u'parti', u'plan', u'climat', u'chang', u'miln']
[u'arrest', u'bash']
[u'die', u'bird', u'china', u'report']
[u'injur', u'revers', u'floor', u'carpark']
[u'mccullum', u'clear', u'misconduct', u'windi']
[u'minist', u'call', u'kava']
[u'minist', u'distanc', u'govt', u'timber', u'suppli', u'disput']
[u'mobil', u'end', u'search', u'miss', u'boat']
[u'taxpay', u'fund', u'cosmet', u'surgeri']
[u'nadal', u'end', u'feder', u'proud', u'record']
[u'nedv', u'keep', u'juve', u'cours', u'titl']
[u'korean', u'ship', u'crew', u'clear', u'heroin', u'charg']
[u'review', u'alloc']
[u'opposit', u'push', u'taxi', u'oper']
[u'overcrowd', u'emerg', u'depart', u'link']
[u'parent', u'accus', u'harass', u'teacher']
[u'parti', u'campaign', u'environ', u'issu']
[u'petrova', u'deni', u'mauresmo', u'spot']
[u'philippin', u'opposit', u'accus', u'govt', u'human', u'right']
[u'dismiss', u'review']
[u'rout', u'india']
[u'extend', u'cole', u'inquiri']
[u'rule', u'uranium', u'deal', u'india']
[u'polic', u'hunt', u'runaway', u'driver', u'crash']
[u'polic', u'investig', u'bodi', u'river']
[u'polic', u'offic', u'injur', u'hotel', u'brawl']
[u'polic', u'seek', u'assist', u'spotwood', u'stab']
[u'polic', u'seek', u'kidnap', u'wit']
[u'polish', u'author', u'seek', u'confirm', u'bird']
[u'pong', u'crew', u'acquit', u'heroin', u'charg']
[u'pont', u'bat', u'aussi']
[u'pont', u'symond', u'return', u'clash']
[u'pont', u'score', u'australia']
[u'power', u'wind', u'coast', u'expect', u'eas']
[u'prison', u'group', u'welcom', u'liber', u'plan']
[u'moscow', u'leader', u'elect', u'chechnya']
[u'qlds', u'health', u'crisi', u'worsen', u'flegg']
[u'queen', u'support', u'english', u'athlet', u'vanston']
[u'redback', u'late']
[u'region', u'airlin', u'group', u'welcom', u'casa', u'probe']
[u'resid', u'strand', u'floodwat', u'rise']
[u'scam', u'prompt', u'credit', u'card', u'warn']
[u'schumach', u'play', u'rossi', u'partnership']
[u'score', u'milit', u'kill', u'pakistan', u'clash']
[u'seventi', u'home', u'evacu']
[u'korean', u'troop', u'iraq', u'begin', u'april']
[u'storm', u'continu', u'play', u'havoc', u'surf']
[u'sydney', u'worri', u'break']
[u'sydney', u'leagu', u'championship']
[u'tasmanian', u'year', u'award', u'limbo']
[u'teen', u'hospit', u'fight', u'friend']
[u'thorp', u'coach', u'withdraw', u'game', u'team']
[u'thousand', u'protest', u'nazareth', u'church', u'incid']
[u'thousand', u'ralli', u'demand', u'thai', u'resign']
[u'tripl', u'stab', u'prompt', u'melbourn', u'hunt']
[u'drown', u'adelaid', u'beach']
[u'polic', u'releas', u'arrest', u'bank', u'heist']
[u'ulmer', u'win', u'road', u'battl', u'aussi', u'wood', u'second']
[u'open', u'homicid', u'probe', u'friend', u'death']
[u'signal', u'abandon', u'nuclear', u'disarma']
[u'viduka', u'break', u'goal', u'drought', u'boro']
[u'author', u'win', u'premier', u'literatur', u'award']
[u'wild', u'weather', u'continu', u'batter', u'coast']
[u'wilko', u'insist', u'best', u'come']
[u'wood', u'grab', u'shoot', u'lead', u'florida']
[u'activist', u'promis', u'eureka', u'baton', u'protest']
[u'alcohol', u'fuel', u'weekend', u'violenc', u'polic']
[u'accus', u'plan', u'speed', u'limit', u'drop']
[u'plan', u'budget', u'chang', u'cover', u'health', u'spend']
[u'qaeda', u'call', u'terrorist', u'attack']
[u'ambassador', u'reject', u'papuan', u'persecut', u'claim']
[u'amnesti', u'report', u'criticis', u'prison', u'detent']
[u'anderson', u'recal', u'brief']
[u'anderson', u'warn', u'scandal', u'inquiri']
[u'anglican', u'head', u'criticis', u'guantanamo']
[u'archibald', u'portrait', u'prize', u'entri', u'begin', u'roll']
[u'aussi', u'buckl', u'fall', u'short', u'indonesian', u'open']
[u'aussi', u'macdonald', u'knock', u'upset']
[u'aussi', u'pick', u'cinematographi', u'oscar']
[u'australia', u'overtak', u'africa', u'gold']
[u'australian', u'cruis', u'liner', u'limp', u'port']
[u'australian', u'win', u'cinematographi', u'oscar']
[u'australind', u'blaze', u'near', u'industri', u'estat']
[u'backpack', u'inquest', u'hear', u'fli', u'doctor', u'delay']
[u'weather', u'hamper', u'clean']
[u'ballarat', u'hop', u'game', u'turn', u'tourism', u'gold']
[u'barca', u'look', u'dump', u'blue']
[u'beazley', u'oppon', u'target', u'preselect']
[u'beazley', u'take', u'swipe', u'chang']
[u'bellingen', u'floodwat', u'begin', u'reced']
[u'bennett', u'dump', u'thorn', u'parker']
[u'crowd', u'gather', u'jazz', u'festiv']
[u'birney', u'back', u'call', u'polic', u'assault', u'jail', u'term']
[u'black', u'back', u'geoecentr']
[u'bronco', u'spring', u'surpris', u'cowboy', u'webck']
[u'bullet', u'pick', u'rychart']
[u'busi', u'feel', u'hospit', u'woe', u'impact']
[u'meet', u'discuss', u'mansion', u'futur']
[u'campaign', u'aim', u'attract', u'interst', u'busi']
[u'canadian', u'backpack', u'parent', u'arriv', u'inquest']
[u'bomb', u'explod', u'iraqi', u'market']
[u'carlton', u'tri', u'crawl', u'hole']
[u'park', u'scrutini', u'crash', u'death']
[u'child', u'obes', u'level', u'expect', u'soar']
[u'china', u'report', u'bird', u'death']
[u'chines', u'polic', u'arrest', u'alleg', u'serial', u'killer']
[u'cockl', u'creek', u'rezon', u'plan', u'submit']
[u'coetze', u'take', u'aust', u'citizenship']
[u'cole', u'inquiri', u'hear', u'alleg']
[u'coliban', u'water', u'fin', u'smell']
[u'comm', u'game', u'competitor', u'glimps', u'prize']
[u'communiti', u'urg', u'youth', u'farm']
[u'council', u'communiti', u'urg', u'discuss', u'financi', u'woe']
[u'council', u'sewag', u'plant', u'tender']
[u'council', u'begin', u'complianc', u'check']
[u'crean', u'win', u'hotham', u'preselect', u'vote']
[u'crew', u'contain', u'australind', u'bushfir']
[u'croatian', u'serb', u'leader', u'babic', u'commit', u'suicid', u'jail']
[u'croc', u'coach', u'decis', u'loom']
[u'crusad', u'hurrican', u'stumbl']
[u'date', u'iraqi', u'parliament', u'sit']
[u'action', u'highlight', u'hospit', u'woe']
[u'death', u'prompt', u'illeg', u'drug', u'warn']
[u'demand', u'push', u'childcar', u'cost', u'lundi']
[u'dept', u'investig', u'porn', u'calendar', u'elder', u'abus']
[u'downer', u'recal', u'meet', u'exec']
[u'draft', u'region', u'veget', u'cod', u'today']
[u'elect', u'forum', u'focus', u'social', u'issu']
[u'expect', u'mum', u'ask', u'hospit', u'check']
[u'famili', u'angri', u'fatal', u'crash', u'driver', u'escap']
[u'famili', u'prefer', u'liber', u'margin', u'seat']
[u'famili', u'prefer', u'liber']
[u'famili', u'hop', u'inquest', u'spark', u'health', u'chang']
[u'farmer', u'rais', u'drought', u'assist', u'rort', u'claim']
[u'south', u'coast', u'drought', u'threat', u'loom']
[u'field', u'head', u'dubai', u'gallop']
[u'destroy', u'nguiu', u'classroom']
[u'premiership', u'captainci', u'hodgson']
[u'footbal', u'hurt', u'pier', u'mishap']
[u'forum', u'focus', u'eyesight', u'loss']
[u'freight', u'council', u'urg', u'long', u'term', u'plan']
[u'fund', u'hospit', u'infrastructur']
[u'game', u'baton', u'relay', u'head', u'wimmera']
[u'gaven', u'elect', u'date']
[u'gill', u'sell', u'affect', u'worker']
[u'gold', u'coast', u'refus', u'water', u'suppli', u'newman']
[u'govern', u'urg', u'boost', u'drought']
[u'govt', u'prepar', u'crackdown', u'hoon']
[u'govt', u'pressur', u'clear', u'roadsid', u'veget']
[u'govt', u'desal', u'plant', u'stanc', u'question']
[u'govt', u'whyalla', u'age', u'care', u'facil']
[u'drought', u'hit', u'western']
[u'grain', u'grower', u'seek', u'store', u'iraq', u'contract']
[u'green', u'group', u'applaud', u'environ', u'polici']
[u'green', u'offer', u'support', u'sustain', u'tourism']
[u'group', u'stage', u'game', u'baton', u'protest']
[u'group', u'unhappi', u'candid', u'perform']
[u'hama', u'dismiss', u'qaeda', u'continu', u'fight']
[u'hama', u'dismiss', u'qaeda', u'fight', u'israel']
[u'hammer', u'fall', u'fairfax', u'internet']
[u'health', u'care', u'centr', u'strain', u'hospit']
[u'heavi', u'snowfal', u'caus', u'death', u'europ']
[u'hewitt', u'go', u'blake', u'vega']
[u'home', u'demolish', u'fire']
[u'hospit', u'overcrowd', u'blame', u'death', u'govt']
[u'hospit', u'research', u'prompt', u'bed']
[u'howard', u'readi', u'examin', u'uranium', u'export', u'india']
[u'howard', u'hold', u'uranium', u'sale', u'talk', u'india']
[u'hydro', u'hop', u'indian', u'renew', u'energi', u'boom']
[u'increas', u'patrol', u'combat', u'brawl']
[u'india', u'reiter', u'need', u'aust', u'uranium']
[u'indigen', u'dealer', u'licens']
[u'indonesia', u'detain', u'fake', u'aust', u'passport', u'holder']
[u'indonesian', u'consid', u'coastwatch', u'joke']
[u'iranian', u'ralli', u'peac', u'nuclear', u'technolog']
[u'iran', u'threaten', u'backlash', u'refer']
[u'refus', u'defer', u'wage', u'case']
[u'japan', u'delay', u'exit', u'iraq', u'request', u'report']
[u'cut', u'fairfax', u'profit']
[u'katherin', u'mayor', u'blame', u'aborigin', u'death']
[u'kerin', u'unmov', u'cut']
[u'kiwi', u'golden', u'shear']
[u'labor', u'promis', u'regular', u'dental', u'check']
[u'lawyer', u'back', u'court', u'chang', u'mental']
[u'liber', u'promis', u'youth', u'centr', u'upgrad']
[u'loeb', u'win', u'ralli', u'mexico']
[u'malthous', u'call', u'rethink', u'preseason', u'schedul']
[u'charg', u'store', u'robberi']
[u'die', u'carpark', u'accid']
[u'die', u'crash', u'creek']
[u'marin', u'come', u'term', u'grand', u'final', u'loss']
[u'materazzi', u'late', u'header', u'end', u'roma', u'win', u'streak']
[u'mayor', u'call', u'alcohol', u'chang', u'bodi']
[u'media', u'stock', u'lift', u'market']
[u'meet', u'discuss', u'plan', u'closur']
[u'mine', u'accus', u'poach', u'worker']
[u'charg', u'expect', u'polic', u'bash']
[u'jewish', u'settler', u'reloc', u'west', u'bank']
[u'motorcyclist', u'die', u'collis']
[u'call', u'continu', u'medic', u'clinic', u'fund']
[u'call', u'water', u'plan', u'consult']
[u'reject', u'snowi', u'sale', u'support', u'claim']
[u'murder', u'accus', u'sexual', u'relationship', u'victim']
[u'nation', u'announc', u'monaro', u'candid']
[u'nation', u'seek', u'rego', u'relief', u'emerg', u'servic']
[u'secur', u'measur', u'sizzler', u'salad', u'bar']
[u'north', u'notch', u'mileston', u'waca', u'draw']
[u'govt', u'health', u'invest']
[u'firm', u'uranium', u'sale', u'benefit']
[u'land', u'council', u'tour', u'luca', u'height', u'reactor']
[u'support', u'kava']
[u'legionnair', u'patient', u'discharg']
[u'posit', u'leav', u'dinosaur']
[u'overnight', u'flood', u'continu', u'northern']
[u'paint', u'dri', u'archibald', u'entri']
[u'pakistan', u'battl', u'milit', u'near', u'afghan', u'border']
[u'parent', u'urg', u'closer', u'watch', u'teen']
[u'parti', u'outlin', u'sexual', u'polici']
[u'parti', u'leader', u'turn', u'health']
[u'buy', u'macau', u'casino']
[u'picnic', u'send', u'messag', u'reform']
[u'plan', u'afoot', u'replac', u'ravag', u'paddl', u'steamer']
[u'acknowledg', u'import', u'uranium', u'india']
[u'criticis', u'india', u'uranium', u'possibl']
[u'readi', u'examin', u'uranium', u'polici']
[u'hold', u'uranium', u'sale', u'talk', u'india']
[u'polic', u'alleg', u'hoon', u'friend', u'death']
[u'polic', u'hunt', u'continu', u'stab']
[u'polic', u'investig', u'fatal', u'park', u'plung']
[u'polic', u'issu', u'toddler', u'murder', u'reward', u'remind']
[u'polic', u'probe', u'drive', u'shoot']
[u'polic', u'question', u'fatal', u'stab']
[u'polic', u'say', u'game', u'wont', u'affect', u'normal', u'polic']
[u'polic', u'seek', u'help', u'catch', u'griffith', u'thiev']
[u'polic', u'shake', u'creat', u'crime', u'desk']
[u'polic', u'target', u'rowdi', u'music', u'festiv', u'crowd']
[u'polic', u'urg', u'curb', u'hope', u'vale', u'crime']
[u'polli', u'pedal', u'diabet', u'research']
[u'pont', u'lead', u'australia', u'protea']
[u'propos', u'childcar', u'rebat', u'reject']
[u'proud', u'maori', u'make', u'defenc', u'histori']
[u'rain', u'delay', u'tougher', u'water', u'restrict']
[u'ramanauska', u'undergo', u'surgeri']
[u'red', u'focus', u'victori', u'defector', u'latham']
[u'wine', u'sale']
[u'report', u'identifi', u'poverti', u'factor']
[u'resid', u'urg', u'solar', u'citi']
[u'reveal', u'impact', u'law', u'public', u'holiday', u'labor']
[u'road', u'chang', u'outlin', u'armidal']
[u'robbin', u'knock', u'semi', u'tassi']
[u'robbin', u'make', u'return', u'row']
[u'rush', u'rule', u'bali', u'sentenc', u'appeal']
[u'scrap', u'childcar', u'rebat', u'acoss']
[u'sell', u'uranium', u'india', u'degrad', u'treati']
[u'take', u'break', u'wild', u'weather']
[u'sheikh', u'confus', u'role', u'muslim', u'refer']
[u'shire', u'histori', u'spotlight']
[u'shire', u'associ', u'deleg', u'discuss', u'outback', u'life']
[u'kill', u'crash']
[u'south', u'korea', u'upset', u'japan', u'world', u'basebal', u'classic']
[u'spate', u'melbourn', u'stab', u'continu']
[u'spur', u'stake', u'champion', u'leagu', u'claim']
[u'stanthorp', u'reject', u'region', u'declin', u'claim']
[u'stirl', u'unveil', u'middl', u'school', u'model']
[u'surf', u'action', u'move', u'duranbah', u'beach']
[u'surgeri', u'decis', u'expect', u'impact']
[u'sweet', u'outlook', u'pineappl']
[u'sydney', u'toll', u'inconsist', u'draw', u'critic']
[u'tafe', u'chief', u'chang', u'stanc', u'student', u'loan', u'scheme']
[u'talk', u'focus', u'shire', u'merger', u'plan']
[u'thai', u'pressur', u'step']
[u'thiess', u'unfair', u'collaps', u'unit', u'owner']
[u'ticket', u'rush', u'footbal', u'memori', u'match']
[u'tiger', u'hold', u'nerv', u'retain', u'doral', u'titl']
[u'solv', u'miss', u'toddler', u'case']
[u'tire', u'singh', u'break']
[u'toll', u'opposit', u'say']
[u'toll', u'acquir', u'singaporean', u'logist', u'firm']
[u'bangladeshi', u'milit', u'captur']
[u'tradit', u'food', u'antioxid', u'standard']
[u'umaga', u'sidelin', u'knee', u'injuri']
[u'uncertain', u'futur', u'timber', u'mill']
[u'union', u'air', u'coal', u'train', u'safeti', u'concern']
[u'student', u'number', u'rise']
[u'telco', u'announc', u'billion', u'merger']
[u'valencia', u'miss', u'chanc', u'draw', u'malaga']
[u'victorian', u'driver', u'stick', u'revers']
[u'volunt', u'clean', u'gallipoli', u'anzac']
[u'water', u'author', u'talk', u'suppli', u'plan']
[u'welfar', u'lobbi', u'call', u'childcar', u'overhaul']
[u'weather', u'focus', u'coast']
[u'woman', u'injur']
[u'wool', u'price', u'slump', u'tip']
[u'york', u'guarante', u'return', u'sydney']
[u'million', u'pay', u'tree', u'clear', u'assist']
[u'invit', u'attend', u'royal', u'function']
[u'fire', u'volunt', u'crew', u'busi']
[u'cut', u'hutchison', u'loss']
[u'cruis', u'liner', u'dock', u'albani', u'year']
[u'year', u'retir', u'obstetrician', u'rule']
[u'absenc', u'open', u'door', u'generat', u'steven']
[u'warn', u'speed', u'danger']
[u'lend', u'carlton', u'hand']
[u'agforc', u'fight', u'wild', u'river', u'law']
[u'alcohol', u'free', u'zone', u'limit', u'troubl', u'polic']
[u'alic', u'spring', u'prison', u'readi', u'explod']
[u'allianc', u'take', u'open', u'protest', u'parliament']
[u'alumina', u'contract', u'benefit', u'townsvill']
[u'anderson', u'deni', u'meet', u'volcker', u'probe']
[u'archibald', u'entri', u'arriv', u'galleri']
[u'arrest', u'elder', u'coupl', u'murder']
[u'arsenal', u'liverpool', u'face', u'champ', u'leagu', u'reckon']
[u'aussi', u'cricket', u'visit', u'outback', u'school']
[u'aust', u'sign', u'polic', u'pact', u'vietnam', u'cambodia']
[u'aust', u'yachtswoman', u'rescu', u'day', u'adrift']
[u'chairman', u'loss', u'predict', u'polic']
[u'wit', u'recal', u'document', u'stash']
[u'bangladesh', u'tour', u'date', u'announc']
[u'beachley', u'quarter', u'final']
[u'beazley', u'sidestep', u'call', u'cultur', u'chang']
[u'bega', u'valley', u'shire', u'trim', u'tourism', u'expenditur']
[u'belling', u'escap', u'major', u'flood', u'damag']
[u'bendigo', u'host', u'festiv']
[u'better', u'road', u'campaign', u'head', u'nation', u'capit']
[u'chang', u'reopen', u'abort', u'debat', u'stanhop']
[u'blaze', u'threaten', u'tasmanian', u'town']
[u'boonen', u'pip', u'davi', u'franc']
[u'brack', u'defend', u'minist', u'crean']
[u'britain', u'demand', u'releas', u'iraq', u'hostag']
[u'break', u'hill', u'nomin', u'award']
[u'brother', u'jail', u'cootha', u'rape']
[u'burleigh', u'landslid', u'pose', u'threat', u'home']
[u'busi', u'confid', u'high', u'doubt', u'chang']
[u'cabooltur', u'hospit', u'rescu', u'plan']
[u'organis', u'play', u'group']
[u'review', u'region', u'victoria', u'tourism']
[u'cancer', u'treatment', u'fee', u'review']
[u'carney', u'debut', u'eel']
[u'carney', u'debut', u'eel']
[u'child', u'protect', u'worker', u'sceptic', u'liber']
[u'chimbonda', u'goal', u'earn', u'victori', u'unit']
[u'club', u'target', u'margin', u'seat']
[u'communiti', u'urg', u'streetlight', u'patrol']
[u'compani', u'confid', u'landown', u'accept', u'compo']
[u'conserv', u'concern', u'aquacultur', u'zone']
[u'consum', u'spend', u'subdu', u'februari']
[u'coonan', u'reject', u'telstra', u'bush', u'servic', u'plan']
[u'councillor', u'warn', u'take', u'water', u'river']
[u'council', u'seek', u'feedback', u'plan']
[u'council', u'seek', u'power', u'line', u'option']
[u'counsel', u'team', u'mat', u'captain', u'accid']
[u'countri', u'taxi', u'driver', u'seek', u'industri', u'regul']
[u'court', u'reject', u'accus', u'rabbit', u'killer', u'drug', u'claim']
[u'crean', u'call', u'labor', u'parti', u'overhaul']
[u'crean', u'call', u'parti', u'uniti', u'preselect']
[u'crean', u'win', u'preselect', u'battl']
[u'faction', u'power', u'gillard', u'urg']
[u'darwin', u'mark', u'wwii', u'heritag', u'site']
[u'deport', u'fear', u'census']
[u'downer', u'admit', u'get', u'brief']
[u'downer', u'recal', u'meet', u'execut']
[u'drill', u'contract', u'go', u'local', u'compani']
[u'earth', u'grip', u'mass', u'extinct', u'scientist']
[u'elect', u'focus', u'turn', u'educ']
[u'embassi', u'target', u'save', u'forest', u'campaign']
[u'eurobodalla', u'council', u'set', u'social', u'plan']
[u'cyclon', u'rain', u'caus', u'problem', u'livestock']
[u'employe', u'tri', u'fraud', u'charg']
[u'director', u'face', u'committ', u'hear']
[u'famili', u'friend', u'workplac', u'boost', u'birth', u'rate']
[u'fatah', u'walk', u'hama', u'domin', u'parliament']
[u'fish', u'boat', u'rescu', u'aussi', u'castaway']
[u'flugg', u'suspend', u'board', u'membership']
[u'foley', u'wallabi', u'start', u'coach']
[u'foot', u'injuri', u'forc', u'radcliff', u'game']
[u'livedoor', u'exec', u'space', u'tourist']
[u'fruit', u'goulburn', u'valley', u'orchard']
[u'fund', u'alloc', u'esper', u'indoor', u'sport']
[u'game', u'battl', u'giteau']
[u'germani', u'consid', u'wipe', u'dope', u'taint', u'record']
[u'survey', u'reveal', u'environment', u'gain']
[u'govern', u'number', u'rise']
[u'govt', u'defend', u'gippsland', u'forestri', u'review']
[u'govt', u'defend', u'super', u'fund', u'fund']
[u'govt', u'fund', u'famili', u'support', u'program']
[u'govt', u'urg', u'delay', u'build', u'jail']
[u'govt', u'urg', u'counter', u'terror', u'law']
[u'group', u'back', u'remot', u'servic']
[u'grape', u'grower', u'agricultur', u'minist', u'hold', u'talk']
[u'green', u'pledg', u'mental', u'health', u'fund']
[u'guantanamo', u'better', u'belgian', u'prison', u'osc', u'expert']
[u'hall', u'fame', u'honour', u'cancer', u'campaign']
[u'health', u'minist', u'reject', u'democrat', u'cervic', u'cancer']
[u'case', u'record', u'high']
[u'hobart', u'sculler', u'record', u'come', u'victori']
[u'howard', u'singh', u'examin', u'nuclear', u'deal']
[u'howlett', u'rule']
[u'thorp', u'withdraw', u'commonwealth', u'game']
[u'india', u'bank', u'spin', u'trap', u'resurg', u'england']
[u'indigen', u'elder', u'say', u'plight', u'ignor']
[u'indonesian', u'polic', u'arrest', u'bali', u'bomb', u'suspect']
[u'injur', u'tourist', u'rescu', u'nation', u'park']
[u'inquest', u'hear', u'fuel', u'wasnt', u'think', u'danger']
[u'investig', u'begin', u'man', u'bodi', u'home']
[u'investig', u'probe', u'fatal']
[u'hear', u'wage', u'claim']
[u'israel', u'target', u'palestinian']
[u'isra', u'strike', u'kill', u'gaza', u'strip']
[u'japan', u'plan', u'fingerprint', u'foreign', u'visitor']
[u'jaqu', u'return', u'clash', u'redback']
[u'cut', u'card', u'mayor', u'warn']
[u'johnson', u'urg', u'snub', u'wallabi']
[u'joyc', u'talk', u'singl', u'desk', u'ralli']
[u'juluwarlu', u'corp', u'founder', u'work', u'recognis']
[u'kalgoorli', u'offic', u'back', u'tougher', u'anti', u'hoon', u'law']
[u'kasper', u'recal', u'test', u'squad']
[u'keen', u'barcaldin', u'industri', u'estat']
[u'labor', u'chang', u'encourag', u'student', u'stay', u'school']
[u'labor', u'councillor', u'propos', u'levi']
[u'labor', u'climat', u'polici', u'aim', u'energi', u'economi']
[u'labor', u'green', u'prefer', u'gambier']
[u'lennon', u'clear', u'conflict', u'alleg']
[u'lennon', u'busi', u'royal', u'dinner']
[u'liber', u'promis', u'quicken', u'crimin', u'justic']
[u'lindsay', u'nann', u'name', u'bushrang', u'squad']
[u'local', u'artist', u'enter', u'archibald']
[u'locust', u'expert', u'brief', u'gippsland', u'farmer']
[u'log', u'protest', u'expect', u'hurt', u'forestri', u'tourism']
[u'maryborough', u'hospit', u'problem', u'prioriti']
[u'kill', u'newel', u'highway', u'crash']
[u'plead', u'guilti', u'brisban', u'bomb', u'threat']
[u'mayor', u'await', u'backlash', u'footpath', u'plan']
[u'mayor', u'seek', u'detail', u'motel', u'sale']
[u'mayor', u'urg', u'specul', u'caus', u'river']
[u'mcgradi', u'call', u'debat', u'mine', u'uranium']
[u'mental', u'health', u'advoc', u'meet', u'premier']
[u'minim', u'game', u'impact', u'qanta', u'disput']
[u'minist', u'highlight', u'region', u'illeg', u'fish']
[u'urg', u'compo', u'farmer', u'lose', u'leasehold']
[u'neighbour', u'trade', u'shape', u'pitcairn', u'past']
[u'nelson', u'extend', u'iraq', u'tour', u'troop']
[u'associ', u'repres', u'wool', u'export']
[u'orlean', u'continu', u'hurrican', u'dead']
[u'treatment', u'offer', u'hope', u'heart', u'diseas']
[u'wheat', u'contract', u'good', u'news']
[u'blame', u'canadian', u'death', u'sister', u'tell']
[u'north', u'coast', u'home', u'tsunami', u'threat', u'studi', u'show']
[u'broaden', u'state']
[u'oconnor', u'refus', u'conced', u'preselect', u'vote']
[u'particip', u'begin', u'work', u'heritag', u'trail']
[u'parti', u'fight', u'elect', u'underdog', u'status']
[u'parti', u'offer', u'help', u'grandpar']
[u'parti', u'urg', u'stub', u'tobacco', u'firm', u'donat']
[u'patient', u'question', u'health', u'right', u'commiss']
[u'petrol', u'sniff', u'inquiri', u'travel', u'north']
[u'confirm', u'debt', u'timelin']
[u'uranium', u'talk', u'send', u'messag']
[u'cruis', u'ship', u'depart', u'repair']
[u'polic', u'backlog', u'let', u'crimin', u'away']
[u'polic', u'discov', u'man', u'bodi', u'warehous', u'blaze']
[u'polic', u'hunt', u'pair', u'riverland', u'assault']
[u'polic', u'investig', u'stab', u'death', u'elder']
[u'polic', u'seek', u'church', u'arsonist']
[u'polic', u'seek', u'stab', u'coupl']
[u'polic', u'surpris', u'kill', u'highway', u'crash']
[u'politician', u'tell', u'stay', u'crimin', u'case']
[u'potato', u'farmer', u'send', u'offer', u'mccain']
[u'priest', u'pleas', u'rush', u'wont', u'appeal', u'sentenc']
[u'privat', u'firm', u'hospit', u'emerg', u'depart']
[u'purana', u'task', u'forc', u'investig', u'bodi']
[u'health', u'worker', u'receiv', u'medal', u'tsunami', u'work']
[u'queen', u'baton', u'relay', u'pass', u'horsham']
[u'rann', u'oppos', u'uranium', u'sale', u'india']
[u'reactor', u'visit', u'enlighten', u'land', u'council']
[u'recal', u'kasper', u'mix', u'emot']
[u'recent', u'weather', u'pattern', u'unusu']
[u'red', u'welcom', u'tune']
[u'tail', u'black', u'cockatoo', u'studi', u'look', u'preserv']
[u'registrar', u'mull', u'chines', u'abus', u'claim', u'extens']
[u'research', u'highlight', u'women', u'child', u'abus']
[u'resid', u'label', u'plan', u'feedlot', u'environment']
[u'resourc', u'price', u'drop', u'market']
[u'respit', u'care', u'centr', u'need', u'urgent', u'opposit']
[u'roger', u'expect', u'provid', u'spark', u'half']
[u'roma', u'agenc', u'seek', u'indian', u'apprentic']
[u'rooki', u'gilmor', u'knock', u'world', u'champ']
[u'rooster', u'finch', u'hooker']
[u'rugbi', u'visit', u'piqu', u'commonwealth', u'game']
[u'rule', u'allow', u'offic', u'access', u'transfer']
[u'rust', u'fungus', u'bring', u'fight', u'blackberri']
[u'rychart', u'leav', u'mix', u'emot']
[u'labor', u'push', u'technic', u'school']
[u'sawford', u'say', u'weatheril', u'fenc', u'sit']
[u'school', u'merger', u'plan', u'draw', u'critic']
[u'scientist', u'intens', u'cosmic', u'storm']
[u'scientist', u'warn', u'planet', u'head', u'mass', u'extinct']
[u'sentenc', u'trial', u'begin', u'sept', u'conspir']
[u'serb', u'leader', u'dead', u'hagu', u'cell']
[u'sister', u'miss', u'dubbo']
[u'skater', u'welcom', u'propos', u'skate', u'park']
[u'sniper', u'kill', u'iraqi', u'general']
[u'shark', u'net', u'miss', u'rough', u'weather']
[u'sport', u'carniv', u'promis', u'fund', u'boost']
[u'stanhop', u'open', u'terror', u'chang']
[u'stem', u'cell', u'treatment', u'broaden', u'donor', u'pool']
[u'student', u'creat', u'plant', u'glow', u'thirsti']
[u'tare', u'port', u'macquari', u'hospit', u'commonwealth']
[u'telstra', u'seek', u'flexibl', u'rural', u'servic', u'plan']
[u'thorp', u'commonwealth', u'game']
[u'thorp', u'pull', u'game']
[u'thorp', u'absenc', u'open', u'door', u'generat']
[u'tiger', u'recruit', u'play', u'dragon']
[u'troop', u'quit', u'iraq', u'general', u'say']
[u'union', u'back', u'call', u'disrupt', u'student', u'centr']
[u'congress', u'hear', u'push', u'india', u'nuclear', u'accord']
[u'govt', u'play', u'call', u'union', u'deregistr']
[u'wallabi', u'abandon', u'coff', u'harbour', u'base']
[u'parliament', u'resum', u'month', u'break']
[u'water', u'bomber', u'wont', u'remain', u'south', u'east']
[u'weather', u'dri', u'locust', u'plagu', u'concern']
[u'windi', u'readi', u'win', u'feel', u'lara']
[u'winegrap', u'glut', u'forc', u'vineyard', u'price', u'estat']
[u'woocoo', u'council', u'step', u'asid']
[u'world', u'team', u'undergo', u'heart', u'check']
[u'youth', u'urg', u'involv', u'art', u'council']
[u'zone', u'allow', u'shop', u'precinct', u'extens']
[u'bodi', u'iraqi']
[u'teacher', u'urg', u'consid', u'packag']
[u'afghanistan', u'reject', u'border', u'critic']
[u'candid', u'confid', u'gaven']
[u'polici', u'crippl', u'latrob', u'valley', u'mcgauran']
[u'propos', u'mine', u'approach', u'staff', u'shortag']
[u'lockout', u'abattoir', u'employe']
[u'argentinian', u'mayor', u'impeach', u'dead', u'nightclub']
[u'aussi', u'trio', u'fourth', u'round']
[u'aussi', u'weightlift', u'clear', u'drug', u'traffic']
[u'aust', u'open', u'consul', u'india']
[u'backbench', u'accus', u'abus', u'partner']
[u'barca', u'dump', u'chelsea', u'champ', u'leagu']
[u'baton', u'travel', u'ararat', u'ballarat']
[u'beatti', u'back', u'labor', u'reform', u'call']
[u'beazley', u'take', u'fight', u'crean', u'gillard']
[u'beazley', u'pressur', u'rein', u'faction']
[u'bellami', u'arrest', u'alleg', u'assault']
[u'bendigo', u'health', u'begin', u'take', u'mris']
[u'biki', u'club', u'leader', u'jail', u'drug', u'offenc']
[u'bjelk', u'petersen', u'level', u'fall']
[u'boomer', u'hope', u'game', u'success']
[u'boulder', u'resid', u'urg', u'vigilant']
[u'brack', u'warn', u'infight', u'hurt', u'labor', u'govt']
[u'britain', u'crack', u'immigr']
[u'british', u'polic', u'travel', u'england', u'fan']
[u'bulldog', u'holdsworth', u'anasta', u'boot']
[u'bullet', u'dump', u'rucker']
[u'bureaucrat', u'obstruct', u'public', u'health']
[u'bushrang', u'astound', u'hodg', u'drop']
[u'busi', u'compens', u'railway', u'roadwork']
[u'buyer', u'seek', u'centralis', u'wool', u'sell', u'centr']
[u'greater', u'femal', u'presenc', u'rural', u'board']
[u'card', u'fraud', u'arrest', u'link', u'nation', u'scam']
[u'castaway', u'yachti', u'recov']
[u'centrelink', u'offer', u'farmer', u'help', u'hand']
[u'chariti', u'avoid', u'penalti', u'fundrais', u'breach']
[u'chef', u'urg', u'oversea', u'worker', u'speak']
[u'china', u'iron', u'threat', u'argi', u'bargi']
[u'circl', u'sentenc', u'forc', u'offend', u'face']
[u'club', u'move', u'racecours', u'sale']
[u'coast', u'feel', u'sydney', u'properti', u'downturn']
[u'cole', u'inquiri', u'commission', u'seek', u'wider', u'power']
[u'cole', u'clarifi', u'investig', u'power']
[u'communiti', u'group', u'find', u'home', u'bowl', u'club']
[u'conroy', u'shrug', u'resign']
[u'coonan', u'find', u'telstra', u'bush', u'stanc', u'strang']
[u'corbi', u'brother', u'remand', u'custodi']
[u'corrigan', u'join', u'board']
[u'council', u'extend', u'feedback', u'time', u'frame']
[u'council', u'competit', u'pool', u'auction']
[u'council', u'undecid', u'restructur', u'process']
[u'council', u'welcom', u'review', u'wind', u'farm', u'approv']
[u'quit', u'domest', u'cricket']
[u'crean', u'seek', u'beazley', u'meet', u'faction']
[u'custom', u'nab', u'suspect', u'illeg', u'fishermen']
[u'darl', u'down', u'resid', u'eat', u'vege']
[u'davi', u'second', u'boonen']
[u'demetriou', u'defend', u'valu', u'preseason', u'comp']
[u'dept', u'chang', u'heart', u'hous', u'placement']
[u'dictat', u'franco', u'paint', u'auction']
[u'direct', u'japanes', u'flight', u'boost', u'alic', u'tourism']
[u'doherti', u'charg', u'drug', u'possess']
[u'dollar', u'slide', u'month']
[u'dpps', u'comment', u'irrit', u'premier']
[u'win', u'prais', u'sentenc', u'appeal']
[u'dubbo', u'sister', u'safe']
[u'england', u'hop', u'flintoff', u'step']
[u'entsch', u'attack', u'colleagu', u'reef', u'park']
[u'eros', u'problem', u'forc', u'beach', u'access', u'closur']
[u'essex', u'turn', u'johnson', u'bichel']
[u'falsehood', u'expos', u'vinci', u'code', u'legal', u'battl']
[u'famili', u'tip', u'seat']
[u'reject', u'chelsea', u'appeal', u'robben', u'card']
[u'farm', u'worker', u'warn', u'anthrax', u'case']
[u'continu', u'burn', u'state', u'north', u'east']
[u'firefight', u'plead', u'guilti', u'light', u'blaze']
[u'flugg', u'resign', u'wool', u'industri', u'bodi', u'chairman']
[u'fruit', u'erad', u'process', u'week']
[u'fruit', u'outbreak', u'central', u'australia']
[u'fund', u'urg', u'help', u'student', u'teacher', u'bush']
[u'fund', u'flow', u'local', u'water', u'save', u'project']
[u'game', u'baton', u'runner', u'winner', u'love']
[u'game', u'competitor', u'hail', u'bendigo', u'prepar']
[u'game', u'staff', u'face', u'charg', u'death']
[u'game', u'organis', u'deni', u'panic', u'ticket', u'sale']
[u'game', u'villag', u'lock', u'secur', u'intensifi']
[u'gene', u'brew', u'danger', u'coffe', u'addict']
[u'giant', u'lobster', u'live']
[u'gillard', u'crean', u'seek', u'parti', u'faction']
[u'gillard', u'rule', u'beazley', u'challeng']
[u'giteaus', u'signatur', u'grab', u'fisher']
[u'gold', u'coast', u'turn', u'wivenho']
[u'govt', u'accus', u'plan', u'workplac', u'chang']
[u'govt', u'anger', u'truck', u'industri', u'transport', u'cost']
[u'govt', u'look', u'limit', u'court', u'damag']
[u'govt', u'minist', u'fourth', u'labor', u'vote', u'card']
[u'govt', u'reject', u'claim', u'dirt', u'unit']
[u'govt', u'seek', u'feder', u'fund', u'airport', u'road']
[u'govt', u'length', u'apprenticeship']
[u'green', u'promis', u'women', u'servic', u'fund']
[u'hackett', u'look', u'posit', u'thorp', u'withdraw']
[u'helicopt', u'impound', u'deer', u'poach', u'investig']
[u'hobart', u'hospit', u'staff', u'crisi', u'worsen']
[u'hodg', u'come', u'term', u'test', u'dump']
[u'holland', u'ban', u'nazi', u'footbal', u'helmet']
[u'hop', u'post', u'mortem', u'identifi', u'shaft', u'bodi']
[u'hous', u'fire', u'investig']
[u'howard', u'offer', u'condol', u'indian', u'bomb']
[u'howard', u'reject', u'claim', u'iraq', u'deploy', u'open', u'end']
[u'howard', u'rule', u'chang']
[u'indonesian', u'landslid', u'kill']
[u'industri', u'criticis', u'labor', u'climat', u'chang', u'polici']
[u'iraq', u'wheat', u'deal', u'sham']
[u'itali', u'thrash', u'aussi', u'basebal', u'classic']
[u'japanes', u'firm', u'renew', u'contract']
[u'johnson', u'lament', u'radcliff', u'game', u'withdraw']
[u'kookaburra', u'strong', u'malaysia']
[u'labor', u'deni', u'hike', u'claim']
[u'labor', u'damag', u'mundin']
[u'labor', u'increas', u'spend', u'medic', u'equip']
[u'lane', u'coach', u'french', u'club']
[u'late', u'harvest', u'put', u'grape', u'risk']
[u'lehmann', u'reprimand', u'comment']
[u'lennon', u'deni', u'green', u'dirt', u'unit', u'claim']
[u'lifelin', u'appal', u'fund', u'decis']
[u'local', u'welcom', u'hous', u'develop', u'decis']
[u'major', u'parti', u'wont', u'prefer', u'rodeo', u'candid']
[u'charg', u'polic', u'ram']
[u'claim', u'irukandji', u'sting', u'fraser']
[u'critic', u'injur', u'train', u'crash']
[u'jail', u'darwin', u'shed', u'beat']
[u'maryborough', u'mayor', u'demand', u'hospit', u'action']
[u'master', u'builder', u'secur', u'worker', u'entitl']
[u'mayor', u'push', u'uniform', u'approach', u'water']
[u'mayor', u'tell', u'treatment', u'plant', u'critic', u'await']
[u'meet', u'fail', u'eas', u'state', u'circl', u'concern']
[u'explos', u'devic', u'beach']
[u'militari', u'endors', u'fijian', u'appoint']
[u'minchin', u'back', u'comment']
[u'minchin', u'signal', u'push', u'reform']
[u'minchin', u'reform', u'find', u'support']
[u'minist', u'concern', u'drug', u'test', u'driver']
[u'minist', u'flag', u'chang']
[u'minist', u'mildura', u'round', u'tabl', u'discuss']
[u'assur', u'irrig', u'pipelin', u'plan']
[u'assur', u'local', u'board', u'hous', u'worri']
[u'deni', u'hear', u'kickback', u'meet']
[u'issu', u'email', u'scam', u'warn']
[u'nappi', u'protest', u'fail', u'sway', u'mcginti']
[u'nation', u'push', u'plat', u'chang']
[u'boost', u'salari']
[u'licens', u'hunt', u'target', u'feral', u'anim']
[u'video', u'offer', u'hope', u'auckland', u'iraq', u'hostag']
[u'chang', u'rat']
[u'claim', u'respons', u'india', u'blast']
[u'govt', u'reject', u'snowi', u'hydro', u'scheme', u'appeal']
[u'govt', u'defend', u'kava', u'licens', u'law']
[u'onlin', u'swap', u'pass', u'copyright', u'law']
[u'opal', u'price', u'drive', u'famili', u'lightn', u'ridg']
[u'opposit', u'seek', u'inquiri', u'polic', u'minist']
[u'opposit', u'urg', u'govt', u'action', u'tourism']
[u'opposit', u'urg', u'teacher', u'accept', u'deal']
[u'parent', u'like', u'fund', u'childcar', u'rise', u'govt']
[u'parmalat', u'founder', u'say', u'sorri']
[u'parti', u'ask', u'respond', u'farmer', u'concern']
[u'parti', u'rural', u'tasmanian']
[u'patagonian', u'cave', u'paint', u'stun', u'scientist']
[u'perth', u'arrest', u'london', u'child', u'charg']
[u'perth', u'woman', u'recov', u'thailand', u'day']
[u'petit', u'call', u'tougher', u'law', u'doubl', u'murder']
[u'pipelin', u'author', u'admit', u'know', u'cost', u'blow']
[u'piri', u'unprepar', u'flood']
[u'polic', u'investig', u'mildura', u'stab']
[u'polic', u'investig', u'report', u'steal', u'campaign']
[u'policeman', u'warm', u'freez']
[u'polic', u'kill', u'devonport']
[u'polic', u'polici', u'stay', u'despit', u'fatal', u'shoot']
[u'polic', u'releas', u'photo', u'riot', u'suspect']
[u'polic', u'suspect', u'arson', u'fatal', u'warehous']
[u'poverti', u'report', u'reject', u'arrog']
[u'probe', u'fish', u'kill']
[u'question', u'remain', u'pong', u'keelti']
[u'rail', u'worker']
[u'rann', u'say', u'wont', u'gag']
[u'rat', u'boost', u'lift', u'seven', u'profit']
[u'recent', u'rain', u'spark', u'dengu', u'outbreak', u'fear']
[u'region', u'chamber', u'commerc', u'lobbi', u'govt']
[u'report', u'urg', u'strip', u'search', u'chang', u'women']
[u'resourc', u'sell', u'hit', u'share', u'market']
[u'return', u'deporte', u'visa', u'uncertain']
[u'river', u'murray', u'doubl', u'dip']
[u'robbin', u'refus', u'draw', u'collaps']
[u'closur', u'ralli', u'date']
[u'russia', u'distanc', u'iranian', u'nuclear', u'deal']
[u'abattoir', u'worker', u'lock', u'second', u'week']
[u'sanction', u'stop', u'north', u'korea', u'return']
[u'seven', u'treat', u'orang', u'factori']
[u'shaft', u'film', u'maker', u'gordon', u'park', u'die']
[u'shire', u'worker', u'tool', u'inglewood']
[u'smith', u'excit', u'newcastl', u'challeng']
[u'smith', u'coach', u'knight']
[u'smyth', u'draw', u'person', u'experi', u'polic']
[u'solicitor', u'back', u'high', u'court', u'multipl', u'rape', u'trial']
[u'station', u'owner', u'give', u'evid', u'tourist', u'death']
[u'stinger', u'net', u'remov', u'jellyfish', u'infest']
[u'suspect', u'thief', u'seek', u'train', u'crash']
[u'govt', u'deni', u'dirt', u'unit', u'claim']
[u'green', u'claim', u'govt', u'oper', u'dirt', u'unit']
[u'telstra', u'exec', u'call', u'telco', u'servic', u'debat']
[u'telstra', u'execut', u'frustrat', u'regul']
[u'telstra', u'feel', u'singl', u'regul']
[u'text', u'driver', u'jail', u'fatal', u'accid']
[u'thai', u'protest', u'group', u'call', u'singapor', u'good']
[u'candid', u'nomin', u'elect']
[u'gender', u'inequ', u'remain', u'goward']
[u'tune', u'hop', u'injuri', u'frustrat']
[u'union', u'investig', u'asbesto', u'threat']
[u'union', u'loss', u'fear', u'qanta']
[u'overhaul', u'plan', u'prompt', u'staff', u'outcri']
[u'uruguay', u'name', u'coach']
[u'defend', u'guantanamo']
[u'australia', u'review']
[u'keep', u'option', u'tabl', u'iran']
[u'rat', u'outlook', u'knock', u'aussi', u'dollar']
[u'reject', u'request', u'increas', u'aust', u'sugar', u'import']
[u'renew', u'patriot']
[u'vail', u'unconcern', u'china', u'price', u'freez']
[u'varanasi', u'bomb', u'shock', u'howard']
[u'versatil', u'stem', u'cell', u'prove', u'newcastl']
[u'crew', u'ward', u'bushfir', u'threat']
[u'water', u'treatment', u'trial']
[u'wife', u'killer', u'jail', u'year']
[u'wool', u'price', u'help', u'rebuild', u'sheep', u'flock']
[u'world', u'coach', u'want', u'squad', u'deadlin', u'push']
[u'illeg', u'fishermen', u'jail']
[u'young', u'adult', u'jail', u'youth', u'group']
[u'qanta', u'job', u'ax']
[u'patholog', u'test', u'cloud']
[u'accus', u'peopl', u'smuggler', u'plead', u'guilti']
[u'admit', u'volunt', u'recruit', u'delay']
[u'health', u'support', u'line', u'extend', u'internet']
[u'administr', u'overse', u'health', u'servic', u'fund']
[u'aerial', u'bait', u'allow', u'sheep', u'product']
[u'consid', u'techniqu', u'fight']
[u'airlin', u'doubl', u'perth', u'kimberley', u'tourist', u'season']
[u'alleg', u'sting', u'focus', u'atsic', u'offic']
[u'alonso', u'target', u'win', u'start', u'titl', u'defenc']
[u'presid', u'call', u'intern', u'bicker']
[u'anti', u'epilepsi', u'drug', u'link', u'reduc', u'bone', u'densiti']
[u'argentin', u'readi', u'defect', u'croatia', u'world']
[u'ash', u'return', u'australia']
[u'dead', u'turkey', u'crash']
[u'bank', u'japan', u'tighten', u'monetari', u'polici']
[u'bank', u'interven', u'store', u'credit']
[u'basebal', u'launch', u'probe', u'bond', u'dope', u'claim']
[u'beachley', u'semi', u'final']
[u'bendigo', u'campus', u'boss', u'quit']
[u'unabl', u'explain', u'gift', u'debt']
[u'birt', u'join', u'tassi', u'team', u'mate', u'derbyshir']
[u'british', u'knock', u'aussi']
[u'break', u'hill', u'urg', u'help', u'address', u'skill', u'shortag']
[u'bronco', u'take', u'bennett', u'critic']
[u'brown', u'lion']
[u'brumbi', u'bench', u'young', u'shark', u'encount']
[u'bulk', u'bill', u'rat', u'abbott']
[u'bulldog', u'look', u'confid', u'boost']
[u'bull', u'recal', u'hauritz', u'hobart', u'match']
[u'bushfir', u'break', u'contain', u'line']
[u'chang', u'time']
[u'call', u'rock', u'protect']
[u'canada', u'surpris', u'world', u'basebal', u'classic']
[u'canegrow', u'unhappi', u'sugar', u'refus']
[u'batteri', u'spark', u'cattl', u'poison']
[u'bomb', u'outsid', u'baghdad', u'hospit', u'kill']
[u'child', u'porn', u'owner', u'avoid', u'jail', u'term']
[u'china', u'hit', u'right', u'report']
[u'chines', u'girl', u'latest', u'bird', u'victim']
[u'refer', u'council', u'claim', u'ombudsman']
[u'cole', u'inquiri', u'focus', u'wheat', u'shipment']
[u'cole', u'inquiri', u'tell', u'iraqi', u'govt', u'transact']
[u'committe', u'move', u'block', u'port', u'deal']
[u'confus', u'surround', u'situat', u'iraqi', u'secur']
[u'coron', u'adjourn', u'ching', u'inquest']
[u'council', u'allow', u'grey', u'water']
[u'council', u'oppos', u'indigen', u'land', u'claim']
[u'council', u'vote', u'braidwood', u'develop', u'plan']
[u'court', u'jail', u'hole', u'roof', u'bandit']
[u'crean', u'deni', u'beg', u'faction', u'stitch']
[u'cuban', u'strong', u'debut', u'basebal', u'classic']
[u'darwin', u'bank', u'rob', u'time']
[u'death', u'spark', u'renew', u'campaign', u'phone']
[u'debat', u'continu', u'wool', u'sell']
[u'deer', u'hunter', u'push', u'poach', u'control']
[u'derail', u'clear']
[u'dingo', u'pet', u'threaten', u'secur', u'fenc']
[u'dog', u'sniff', u'drug', u'school']
[u'dog', u'sniff', u'school', u'drug']
[u'downer', u'defend', u'aceh', u'work']
[u'dragon', u'play', u'favourit']
[u'drug', u'sniffer', u'dog', u'work', u'gippsland', u'school']
[u'dwight', u'claim', u'sydney', u'want']
[u'entri', u'flow', u'outback', u'prize']
[u'environ', u'group', u'oppos', u'melvill']
[u'ergon', u'move', u'plan', u'substat']
[u'deputi', u'mayor', u'cousin', u'stand', u'elect']
[u'fall', u'commod', u'price', u'put', u'dollar', u'pressur']
[u'famili', u'readi', u'drink', u'driver', u'jail']
[u'farmer', u'offer', u'cash', u'prize', u'feral', u'trap']
[u'farm', u'survey', u'find', u'support', u'export', u'monopoli']
[u'father', u'polic', u'guard', u'wife', u'murder']
[u'festiv', u'embarrass', u'algal', u'bloom', u'forc']
[u'fiji', u'schooli', u'push', u'doesnt', u'faze', u'tourism', u'boss']
[u'firefight', u'continu', u'battl', u'gladston', u'blaze']
[u'fish', u'trial', u'benefici', u'bowel', u'cancer', u'patient']
[u'fish', u'wash', u'beach', u'trawler', u'bycatch']
[u'order', u'lockhart', u'river', u'follow', u'riot']
[u'flag', u'defac', u'baton', u'relay', u'protest']
[u'flood', u'keep', u'nation', u'park', u'close']
[u'flood', u'spark', u'natur', u'disast', u'declar']
[u'green', u'farm', u'sell', u'near']
[u'ministeri', u'staffer', u'question', u'basi']
[u'friend', u'game', u'place', u'drug', u'cheat']
[u'gene', u'regul', u'separ', u'human', u'ape', u'studi']
[u'govt', u'consid', u'radicalis', u'terrorist']
[u'govt', u'urg', u'boost', u'indigen', u'work', u'skill']
[u'green', u'group', u'reject', u'wild', u'river', u'legisl', u'claim']
[u'green', u'pledg', u'hous', u'fund']
[u'grocon', u'upgrad']
[u'group', u'condemn', u'close', u'meet']
[u'gunmen', u'captur', u'peopl', u'baghdad', u'secur', u'firm']
[u'harden', u'meatwork', u'work']
[u'health', u'worker', u'welcom', u'state', u'base', u'employ']
[u'henri', u'expect', u'rise', u'occas']
[u'hoffman', u'rule', u'elect']
[u'howard', u'trust', u'matter']
[u'howard', u'rule', u'reform']
[u'illawarra', u'support', u'faction', u'chang']
[u'maintain', u'zimbabw', u'sanction']
[u'inquest', u'hear', u'boy', u'tragic', u'accid']
[u'iranian', u'leader', u'warn', u'west', u'nuclear', u'disput']
[u'iraq', u'seek', u'half', u'million', u'tonn', u'wheat', u'report']
[u'iron', u'price', u'continu', u'rise', u'allianc']
[u'job', u'figur', u'drive', u'share', u'market', u'higher']
[u'job', u'growth', u'figur', u'higher', u'expect']
[u'juri', u'problem', u'delay', u'murder', u'trial']
[u'kerin', u'defend', u'river', u'murray', u'fund']
[u'kersten', u'drug', u'test', u'time', u'game', u'lead']
[u'klim', u'make', u'butterfli', u'focus']
[u'labor', u'lose', u'preselect']
[u'labor', u'plan', u'track', u'crimin', u'satellit']
[u'labor', u'protect', u'worker', u'law']
[u'nina', u'extrem', u'climat']
[u'nina', u'promis', u'rain', u'australia']
[u'leader', u'studi', u'cultur', u'camp', u'idea']
[u'lennon', u'staffer', u'admit', u'dirt', u'dig', u'team']
[u'liber', u'highlight', u'state', u'dump', u'opposit']
[u'liber', u'outlin', u'wait', u'list', u'plan']
[u'liber', u'promis', u'clean', u'drink', u'water', u'west']
[u'deal', u'sign', u'japanes', u'firm']
[u'profil', u'rural', u'campaign', u'llewellyn']
[u'face', u'court', u'accus', u'high', u'speed', u'drink', u'drive']
[u'mayor', u'back', u'push', u'chang', u'veget', u'law']
[u'mayor', u'say', u'studi', u'show', u'need', u'council', u'merger']
[u'mcisaac', u'start', u'team', u'mat']
[u'migrant', u'worker', u'expect', u'unrealist']
[u'miner', u'faze', u'china', u'report']
[u'miss', u'tourist', u'safe']
[u'miss', u'tongeren', u'trial', u'adjourn']
[u'labor', u'threat']
[u'peopl', u'call', u'kalgoorli', u'home']
[u'rain', u'mackay']
[u'mother', u'stab', u'death', u'children', u'home']
[u'back', u'calm', u'burn']
[u'introduc', u'smash', u'repair']
[u'say', u'forestri', u'money', u'readi', u'wait']
[u'say', u'safeguard', u'place', u'snowi', u'sale']
[u'murchison', u'feel', u'flood', u'impact']
[u'murder', u'inform', u'urg', u'come', u'forward']
[u'nation', u'newspap', u'fin', u'court', u'breach']
[u'nationwid', u'search', u'uncov', u'motor']
[u'bodi', u'overse', u'south', u'east', u'water']
[u'law', u'clarifi', u'abus', u'report', u'rule']
[u'nomin', u'close', u'eurobodalla', u'elect']
[u'decid', u'warrior', u'appeal']
[u'offic', u'expos', u'asbesto']
[u'number', u'speed', u'camera', u'detect', u'vari']
[u'central', u'bank', u'hold', u'rat', u'steadi']
[u'oldest', u'explos', u'univers', u'record']
[u'organis', u'cancel', u'gold', u'coast', u'triathlon']
[u'parrot', u'fever', u'suspect', u'tasmanian', u'death']
[u'payn', u'stick', u'cowboy']
[u'pietersen', u'steadi', u'england', u'murki']
[u'pittman', u'pull', u'world', u'athlet', u'tour', u'meet']
[u'plan', u'motocross', u'site', u'declar', u'natur', u'reserv']
[u'polic', u'charg', u'drug', u'crop']
[u'polic', u'closer', u'know', u'steal', u'explos']
[u'polic', u'seek', u'help', u'find', u'motorcycl', u'club', u'member']
[u'polic', u'seek', u'owner', u'steal', u'properti']
[u'polic', u'station', u'build', u'contract', u'announc']
[u'polic', u'store', u'bodi']
[u'port', u'phillip', u'dredg', u'project', u'delay']
[u'powerlin', u'incid', u'spark', u'safeti', u'remind']
[u'project', u'aim', u'water', u'loss']
[u'project', u'boost', u'bunburi', u'dolphin', u'research', u'plan']
[u'project', u'focus', u'report', u'crime']
[u'properti', u'search', u'continu', u'murder', u'probe']
[u'public', u'council', u'plan']
[u'public', u'servant', u'pressur', u'cpsu']
[u'public', u'tell', u'discolour', u'water', u'safe', u'drink']
[u'publish', u'photo', u'help', u'polic', u'identifi', u'cronulla']
[u'push', u'boost', u'japan', u'visitor', u'number']
[u'qanta', u'refus', u'rule', u'cut']
[u'qanta', u'slash', u'job']
[u'summit', u'address', u'obes']
[u'quinlan', u'hail', u'act', u'econom', u'strength']
[u'rann', u'govt', u'touch', u'farmer']
[u'rat', u'notic', u'error', u'end', u'council', u'mail', u'hous']
[u'redman', u'carr', u'rid', u'high', u'gold', u'coast']
[u'tape', u'hold', u'filipino', u'work', u'contract']
[u'remot', u'poll', u'begin']
[u'reprimand', u'wont', u'silenc', u'lehmann']
[u'rescu', u'squad', u'emerg', u'vehicl', u'status']
[u'residenti', u'develop', u'downsiz']
[u'resid', u'alert', u'burn', u'smoke']
[u'resourc', u'bodi', u'back', u'mcgradi', u'uranium', u'mine']
[u'revamp', u'ballarat', u'rail', u'station', u'reopen']
[u'robbin', u'doubl', u'scull', u'final']
[u'roll', u'drug', u'court', u'time']
[u'roll', u'unhappi', u'lose', u'deputi', u'mayor', u'spot']
[u'rot', u'whale', u'remov']
[u'sack', u'worker', u'payout', u'contractor']
[u'govt', u'urg', u'chang', u'public', u'servant', u'award']
[u'scientist', u'nervous', u'orbit', u'near', u'mar']
[u'search', u'continu', u'miss', u'tourist']
[u'sharapova', u'debut', u'wait']
[u'snuppi', u'confirm', u'world', u'clone']
[u'stosur', u'reach', u'indian', u'well', u'second', u'round']
[u'striker', u'ask', u'caus']
[u'strong', u'currenc', u'doubl', u'edg', u'sword']
[u'support', u'tribut', u'beatti']
[u'survey', u'support', u'fluorid']
[u'swim', u'australia', u'thorp', u'replac']
[u'sydney', u'give', u'york', u'green', u'light', u'leav']
[u'health', u'renew']
[u'teacher', u'plan', u'industri', u'unrest']
[u'technolog', u'roll', u'boost', u'remot', u'educ']
[u'tharanga', u'wrest', u'lead', u'lanka', u'superb']
[u'countri', u'hour', u'broadcast', u'esper']
[u'thousand', u'march', u'sudan', u'peacekeep']
[u'tiger', u'wari', u'improv', u'swan']
[u'tokyo', u'approv', u'olymp']
[u'toowoomba', u'plan', u'navi', u'freedom', u'entri', u'celebr']
[u'town', u'turn', u'support', u'worker']
[u'troop', u'return', u'pakistan', u'quak', u'mission']
[u'trucki', u'charg', u'coupl', u'kill']
[u'trust', u'say', u'forest', u'access', u'allow']
[u'postpon', u'tour']
[u'restrict', u'bloodi', u'hell', u'tourism']
[u'union', u'prepar', u'qanta', u'cut']
[u'decid', u'australian', u'ambassador']
[u'veteran', u'paralympian', u'milton', u'carri', u'flag', u'turin']
[u'vintag', u'crash', u'claim', u'live']
[u'vline', u'highlight', u'bendigo', u'rail', u'problem']
[u'farmer', u'struggl', u'spray', u'resist', u'ryegrass']
[u'farmer', u'urg', u'address', u'wild', u'problem']
[u'mental', u'health', u'plan', u'target']
[u'weather', u'bureau', u'make', u'grim', u'predict', u'danger']
[u'windi', u'slump', u'styri', u'centuri']
[u'wine', u'agreement', u'caus', u'concern']
[u'woman', u'plead', u'guilti', u'aborigin', u'corp', u'theft']
[u'mine', u'joint', u'ventur', u'announc']
[u'alloc', u'wimmera', u'environ', u'project']
[u'ghraib', u'detaine', u'move']
[u'accus', u'paedophil', u'face', u'charg', u'polic']
[u'action', u'launch', u'patel']
[u'pledg', u'pacif', u'aid', u'fight']
[u'censorship', u'surpris', u'tourism', u'chief']
[u'pledg', u'disabl', u'transport', u'help']
[u'promis', u'practic', u'indigen', u'polici']
[u'promis', u'boost', u'doctor']
[u'pass', u'corpor', u'regul', u'annual', u'check']
[u'aust', u'donat', u'fund']
[u'australian', u'prison', u'tortur', u'claim', u'take', u'serious']
[u'australia', u'world', u'basebal', u'classic']
[u'australia', u'tripl', u'transplant', u'patient', u'die']
[u'beazley', u'demand', u'infight']
[u'sport', u'weekend', u'bendigo']
[u'turnout', u'expect', u'woolarama']
[u'bishop', u'rebut', u'vinci', u'code', u'onlin']
[u'boe', u'worker', u'sign', u'individu', u'contract']
[u'boro', u'spring', u'euro', u'shock', u'roma']
[u'broom', u'airport', u'miss', u'secur', u'fund']
[u'bull', u'troubl', u'tiger']
[u'local', u'campaign', u'attract', u'busi', u'support']
[u'conserv', u'park', u'protect', u'cultur']
[u'candid', u'unabl', u'hour', u'polic', u'pledg']
[u'carlton', u'west', u'coast', u'prepar', u'traeger', u'park', u'clash']
[u'cathol', u'teacher', u'unlik', u'strike', u'union']
[u'warn', u'threat']
[u'chang', u'illeg', u'fish', u'law', u'flag']
[u'chelsea', u'liverpool', u'chase', u'premier', u'leagu', u'boost']
[u'cocain', u'ecstasi', u'speed', u'reveal', u'player', u'drug']
[u'committe', u'coordin', u'memori', u'fund', u'donat']
[u'commonwealth', u'employe', u'cole', u'inquiri']
[u'confer', u'aim', u'accid', u'rate']
[u'connor', u'say', u'wimbledon', u'borg', u'trophi']
[u'corrupt', u'hinder', u'potabl', u'water', u'suppli']
[u'costello', u'lament', u'fall']
[u'council', u'financ', u'spotlight']
[u'councillor', u'air', u'develop', u'consult', u'concern']
[u'council', u'negoti', u'ocean', u'shore', u'land', u'sale']
[u'council', u'seek', u'polic', u'station']
[u'council', u'see', u'fli', u'claim']
[u'council', u'meet', u'discuss', u'local', u'issu']
[u'court', u'refus', u'hear', u'appeal', u'british']
[u'court', u'reject', u'dead', u'priest', u'appeal', u'child', u'case']
[u'cowboy', u'look', u'brag', u'right', u'bronco']
[u'crow', u'demolish', u'dee', u'book', u'final', u'berth']
[u'crusad', u'close', u'encount', u'physic', u'kind']
[u'democrat', u'want', u'fisheri', u'port', u'lincoln']
[u'dept', u'silent', u'claim', u'sourc', u'legionnair']
[u'develop', u'reject', u'council', u'critic']
[u'disput', u'nuclear', u'dump', u'propon']
[u'doctor', u'pull', u'emerald', u'hospit']
[u'doctor', u'condemn', u'guantanamo', u'forc', u'feed']
[u'drink', u'drive', u'mad', u'prompt', u'alcohol']
[u'driver', u'jail', u'egyptian', u'crash']
[u'duck', u'shooter', u'ask', u'lookout', u'bird', u'sign']
[u'educ', u'dept', u'aim', u'school', u'staff']
[u'egypt', u'crash', u'sentenc', u'light']
[u'enceph', u'darwin', u'poultri']
[u'warn', u'hama', u'palestinian', u'fund']
[u'atsic', u'head', u'predict', u'tougher', u'aborigin']
[u'expert', u'back', u'integr', u'water', u'plan']
[u'falconio', u'case', u'reward', u'stand']
[u'falconio', u'murder', u'reward', u'withdraw']
[u'farmer', u'face', u'veget', u'manag', u'tape']
[u'north', u'record', u'jump', u'intern', u'tourist']
[u'feder', u'fund', u'target', u'wine', u'grape', u'fruit', u'grower']
[u'finish', u'touch', u'council', u'review']
[u'flood', u'water', u'surg', u'kalbarri']
[u'food', u'campaign', u'get', u'tast', u'baton', u'relay']
[u'forestri', u'industri', u'expect', u'cut']
[u'canberra', u'centenari', u'patron']
[u'leader', u'happi', u'educ', u'terrorist']
[u'game', u'baton', u'arriv', u'tasmania']
[u'game', u'boss', u'defend', u'media', u'threat']
[u'game', u'boss', u'eas', u'media']
[u'gate', u'buffett', u'billionair', u'list']
[u'gate', u'top', u'rich', u'list']
[u'gatton', u'woman', u'arrest', u'flight', u'incid']
[u'gleeson', u'excit', u'croc', u'coach']
[u'govt', u'face', u'question', u'cost', u'resourc']
[u'govt', u'mull', u'link', u'welfar', u'school', u'attend']
[u'govt', u'welfar', u'approach', u'indigen']
[u'govt', u'urg', u'investig', u'hospit', u'overcrowd']
[u'green', u'focus', u'campaign', u'econom']
[u'griffin', u'vow', u'cooper', u'faction', u'foe']
[u'grower', u'elig', u'drought']
[u'harvey', u'norman', u'record', u'profit', u'increas']
[u'health', u'servic', u'stand', u'patholog', u'test', u'review', u'time']
[u'hobart', u'hospit', u'contract', u'releas']
[u'hockeyroo', u'demolish', u'england']
[u'home', u'lend', u'slight']
[u'india', u'open', u'door', u'kookaburra', u'ball', u'test']
[u'indigen', u'adorn', u'pari', u'museum', u'wall']
[u'indigen', u'council', u'impos', u'youth', u'curfew']
[u'indonesia', u'confirm', u'bird', u'death']
[u'investor', u'play', u'safe', u'ahead', u'figur']
[u'japan', u'writer', u'murakami', u'accus', u'editor']
[u'jovic', u'urg', u'serbian', u'citizenship']
[u'knight', u'team', u'beat', u'kimmorley']
[u'kookaburra', u'buri', u'malaysia']
[u'labor', u'urg', u'probe', u'illeg', u'fish', u'fund']
[u'landmin', u'kill', u'wed', u'parti', u'member']
[u'langer', u'go', u'martyn', u'kasper']
[u'nina', u'predict', u'prematur']
[u'lawyer', u'fear', u'tortur', u'australian']
[u'leader', u'pledg', u'money', u'health']
[u'leagu', u'reject', u'warrior', u'appeal']
[u'legionnair', u'put', u'optus', u'mainten', u'scrutini']
[u'liber', u'extend', u'morwel', u'preselect', u'deadlin']
[u'liber', u'gear', u'tough', u'south', u'west', u'contest']
[u'liber', u'promis', u'wipe', u'nation', u'trust', u'debt']
[u'liber']
[u'lifelin', u'call', u'counsel', u'fund']
[u'listeria', u'fear', u'prompt', u'chees', u'recal']
[u'log', u'protest', u'stop', u'gippsland', u'work']
[u'lose', u'school', u'group', u'bad', u'prepar', u'rescuer']
[u'lose', u'school', u'group', u'rescu']
[u'magistr', u'judg', u'charg', u'berlusconi', u'mill']
[u'mama', u'africa', u'say', u'farewel', u'adelaid']
[u'charg', u'garden', u'crash']
[u'court', u'minibus', u'crash']
[u'involv', u'violent', u'home', u'invas', u'jail']
[u'jail', u'drug', u'dealer', u'murder']
[u'recov', u'shoot']
[u'face', u'trial', u'accus', u'drug', u'syndic']
[u'mastermind', u'admit', u'bangladesh', u'attack']
[u'mayor', u'say', u'littl', u'chanc', u'overturn', u'resciss']
[u'mayor', u'welcom', u'nina', u'predict']
[u'media', u'rule', u'protect', u'game', u'surpris', u'govt']
[u'michael', u'jackson', u'fin', u'order', u'close', u'neverland']
[u'north', u'coast', u'unsung', u'tourism', u'destin']
[u'miller', u'say', u'forc', u'clash', u'match']
[u'milton', u'carri', u'flag', u'paralymp', u'open']
[u'industri', u'push', u'femal', u'involv']
[u'miss', u'student', u'rescu', u'park', u'ordeal']
[u'govt', u'fund', u'seek', u'stop', u'bird', u'pest']
[u'mother', u'lose', u'fail', u'sterilis']
[u'moot', u'chang', u'school', u'leav']
[u'satisfi', u'attunga', u'height', u'concern', u'address']
[u'seek', u'travel', u'allow', u'respit', u'cancer']
[u'urg', u'govt', u'sick', u'woman']
[u'welcom', u'nrma', u'crash', u'repair', u'backdown']
[u'murali', u'emul', u'warn', u'lanka', u'brink']
[u'nation', u'program', u'target', u'young', u'bulli']
[u'adelaid', u'festiv', u'boss', u'announc']
[u'law', u'tougher', u'dodgi', u'real', u'estat', u'agent']
[u'patel', u'case', u'heartbreak', u'victim']
[u'section', u'bypass', u'open']
[u'kill', u'abduct', u'nepal']
[u'surpris', u'anstey', u'name']
[u'cash', u'strap', u'lib']
[u'ban', u'hole', u'tongu', u'stud']
[u'nurs', u'strike', u'offer']
[u'ogilvi', u'share', u'palm', u'beach', u'lead']
[u'open', u'switch', u'date', u'avoid', u'ash', u'clash']
[u'opposit', u'plan', u'uranium', u'reopen']
[u'optus', u'offic', u'confirm', u'sourc', u'legionnair']
[u'orang', u'mayor', u'contest', u'state', u'elect']
[u'orbit', u'prepar', u'circl', u'mar']
[u'parent', u'feel', u'impact', u'childcar', u'worker', u'rise']
[u'welcom', u'qanta', u'job', u'decis']
[u'polic', u'charg', u'supermarket', u'theft']
[u'polic', u'arrest', u'stab']
[u'polic', u'probe', u'blaze']
[u'polic', u'probe', u'shop', u'centr', u'break', u'bodi', u'link']
[u'polic', u'seiz', u'drug', u'crop', u'worth']
[u'pratt', u'make', u'round', u'exit']
[u'prefer', u'site', u'flag', u'billion', u'dollar']
[u'profession', u'surfer', u'avoid', u'jail']
[u'profession', u'surfer', u'escap', u'jail']
[u'hart', u'unlik', u'paint']
[u'public', u'readi', u'polici', u'debnam']
[u'public', u'warn', u'high', u'wimmera', u'malle', u'threat']
[u'qgcs', u'sydney', u'takeov', u'stumbl']
[u'pay', u'derail', u'compo']
[u'ralph', u'develop', u'fear', u'remain']
[u'rann', u'rule', u'road', u'toll']
[u'redback', u'dent', u'blue', u'final', u'hop']
[u'cross', u'urg', u'blood', u'donat']
[u'retir', u'villag', u'leas', u'sign', u'soon']
[u'robbin', u'doubl', u'scull']
[u'roger', u'unlik', u'play', u'minut']
[u'rural', u'bank', u'steal', u'market', u'survey']
[u'safeti', u'regul', u'hamper', u'school', u'excurs']
[u'seven', u'femal', u'graduat', u'remot', u'school']
[u'scandal', u'profumo', u'die']
[u'shed', u'hostag', u'victim', u'hous', u'shoot']
[u'shire', u'baulk', u'plan', u'panel']
[u'slater', u'win', u'duranbah', u'beach']
[u'south', u'african', u'team', u'boss', u'aussi']
[u'strong', u'show', u'karratha', u'hous', u'block']
[u'strong', u'retail', u'fail', u'lift', u'market']
[u'surplus', u'prompt', u'cut']
[u'suspici', u'blast', u'virtual', u'destroy', u'townhous']
[u'sydney', u'keen', u'york']
[u'symond', u'fourth', u'dayer']
[u'govt', u'bulli', u'health', u'critic']
[u'tasmanian', u'win', u'glover', u'landscap', u'prize']
[u'teacher', u'rise', u'threat', u'wriedt']
[u'teen', u'await', u'sentenc', u'servic', u'station', u'hold']
[u'teen', u'passeng', u'avoid', u'jail', u'fatal', u'crash']
[u'thai', u'fin', u'share', u'deal']
[u'time', u'unlucki', u'boonen', u'beat', u'davi']
[u'thousand', u'expect', u'port', u'fairi', u'festiv']
[u'thousand', u'watch', u'game', u'ceremoni', u'rehears']
[u'threat', u'legal', u'action', u'loom', u'wast', u'plant', u'plan']
[u'tiger', u'odd', u'repeat', u'titl', u'triumph']
[u'tiger', u'seat', u'beller']
[u'tiger', u'snatch', u'gasp', u'victori']
[u'time', u'run', u'wilder', u'area']
[u'tourism', u'bodi', u'appeal']
[u'track', u'rider', u'face', u'british', u'challeng']
[u'work', u'accid']
[u'jail', u'massiv', u'drug', u'crop']
[u'union', u'sidestep', u'dorazio', u'resign']
[u'union', u'ralli', u'tey', u'bros', u'meatwork']
[u'famili', u'plan', u'patel', u'toddler', u'death']
[u'fight', u'bushrang']
[u'nation', u'prepar']
[u'waratah', u'thrash', u'cat']
[u'warilla', u'face', u'court', u'cronulla', u'riot']
[u'water', u'commiss', u'face', u'hard', u'issu', u'mayor']
[u'webber', u'say', u'split', u'wont', u'dent', u'william']
[u'west', u'indi', u'even', u'pois']
[u'veteran', u'celebr', u'year']
[u'accc', u'approv', u'patrick', u'takeov']
[u'campaign', u'push', u'beefi', u'nutrit', u'messag']
[u'african', u'union', u'endors', u'takeov', u'darfur']
[u'alleg', u'rapist', u'deni', u'bail']
[u'anti', u'bulli', u'campaign', u'wast', u'fund', u'union', u'say']
[u'dead', u'fallujah', u'blast']
[u'aussi', u'readi', u'strike', u'singapor']
[u'aussi', u'posit', u'basebal', u'classic', u'loss']
[u'australia', u'level', u'seri']
[u'australia', u'thriller', u'seri', u'aliv']
[u'weather', u'make', u'kumbl', u'wait', u'test', u'wicket']
[u'ban', u'pathologist', u'allow', u'work']
[u'barcelona', u'meet', u'benfica', u'champion']
[u'bennett', u'tight', u'lip', u'line']
[u'blair', u'condoleezza', u'game', u'list']
[u'bloodi', u'lift', u'websit', u'hit']
[u'bomb', u'indian', u'train', u'station']
[u'british', u'regul', u'defend']
[u'brumbi', u'battl', u'past', u'shark']
[u'bush', u'pick', u'ambassador', u'australia']
[u'bush', u'troubl', u'fail', u'port', u'deal']
[u'emerg', u'beacon', u'school', u'expedit']
[u'shift', u'supercar', u'event', u'adelaid', u'citi']
[u'carr', u'role', u'draw']
[u'run', u'toddler']
[u'cat', u'book', u'final', u'date', u'crow']
[u'cave', u'reveal', u'indigen', u'lifestyl', u'secret']
[u'chang', u'alcohol', u'tax', u'crime', u'propos']
[u'cole', u'myer', u'weigh', u'chang']
[u'convict', u'murder', u'lose', u'high', u'court', u'appeal']
[u'count', u'begin', u'elect']
[u'defenc', u'advertis', u'domin', u'elect', u'campaign']
[u'detail', u'hostag', u'death', u'unclear']
[u'drink', u'drive', u'policeman', u'lose', u'licenc']
[u'eat', u'disord', u'leav', u'untreat', u'health', u'worker']
[u'eclips', u'caus', u'psycholog', u'discomfort']
[u'riot', u'arrest', u'photo', u'releas']
[u'equip', u'failur', u'forc', u'patient', u'travel']
[u'guerrilla', u'command', u'elect', u'kosovo', u'prime']
[u'financi', u'concern', u'outweigh', u'terror', u'fear']
[u'financi', u'literaci', u'push', u'aim', u'protect', u'investor']
[u'fishermen', u'rock', u'lobster', u'elect', u'agenda']
[u'yugoslav', u'presid', u'milosev', u'die']
[u'strength', u'knight', u'climb']
[u'gaven', u'elect', u'clean', u'fight']
[u'ginn', u'featur', u'coxless', u'victori']
[u'govt', u'reject', u'claim', u'patient', u'die']
[u'govt', u'warn', u'urban', u'sprawl', u'liber', u'elect']
[u'green', u'lobbi', u'toughen', u'recreat', u'boat', u'safeti']
[u'hama', u'warn', u'israel', u'border', u'plan']
[u'health', u'fund', u'pledg', u'scrutini']
[u'health', u'fund', u'promis', u'scrutini']
[u'help', u'promis', u'airport', u'link', u'oper']
[u'hewitt', u'say', u'belarus', u'tough', u'challeng']
[u'honda', u'davidson', u'top', u'second', u'practic', u'bahrain']
[u'huge', u'reserv', u'northern']
[u'indigen', u'struggl', u'cast', u'shadow', u'chief']
[u'intern', u'muslim', u'group', u'denounc', u'western']
[u'put', u'rail', u'union', u'notic']
[u'jordan', u'execut', u'diplomat', u'killer']
[u'kiribati', u'coupl', u'adrift', u'day']
[u'knight', u'secur', u'second', u'half', u'blitz']
[u'labor', u'fli', u'high', u'liber', u'launch']
[u'labor', u'hit', u'gross', u'incompet', u'handl', u'jovic']
[u'minut', u'deal', u'save', u'airport', u'cold', u'storag']
[u'lawrenc', u'accus', u'polit', u'parti']
[u'liber', u'pledg', u'better', u'drink', u'water']
[u'liber', u'reject', u'hospit', u'contract', u'claim']
[u'moral', u'hinder', u'court', u'process', u'stefaniak']
[u'major', u'parti', u'fail', u'elector', u'lawrenc', u'say']
[u'major', u'parti', u'sport', u'fund', u'pledg']
[u'charg', u'shaft', u'bodi']
[u'match', u'delic', u'pois', u'durban']
[u'melbourn', u'port', u'secur', u'fear', u'eas']
[u'mental', u'typewrit', u'read', u'mind']
[u'nasa', u'probe', u'achiev', u'mar', u'orbit']
[u'nation', u'museum', u'chalk', u'fifth', u'birthday']
[u'technic', u'support', u'class', u'teacher']
[u'count', u'cost', u'patholog', u'test', u'error']
[u'reject', u'indigen', u'welfar']
[u'student', u'fail', u'meet', u'nation', u'standard']
[u'charg', u'coodenup', u'drug', u'raid']
[u'pakistani', u'attack', u'kill', u'milit']
[u'panther', u'dog', u'scrappi', u'affair']
[u'polic', u'charg', u'stab', u'murder']
[u'pont', u'give', u'smith', u'verbal', u'backhand']
[u'prope', u'go', u'orbit', u'mar']
[u'push', u'week', u'deadlin', u'iran', u'stop']
[u'quak', u'rattl', u'zealand']
[u'raider', u'upset', u'eagl']
[u'rape', u'claim', u'canberra', u'nurs', u'home']
[u'redback', u'turn', u'screw', u'adelaid']
[u'red', u'break', u'forc']
[u'red', u'look', u'sharp']
[u'report', u'question', u'indian', u'nuclear', u'record']
[u'rice', u'flag', u'china', u'issu', u'aust', u'talk']
[u'rocca', u'star', u'pie', u'bounc', u'roo']
[u'roman', u'arch', u'surpris', u'australian', u'victori']
[u'russia', u'mount', u'mass', u'poultri', u'vaccin']
[u'school', u'devast', u'wandin']
[u'scud', u'bow', u'indian', u'well']
[u'secur', u'fear', u'shut', u'melbourn', u'pier']
[u'slay', u'american', u'bodi', u'dump', u'garbag']
[u'sydney', u'choke', u'nation', u'worst', u'pollut']
[u'task', u'forc', u'aim', u'lift', u'educ', u'standard']
[u'thale', u'target', u'australian', u'defenc', u'compani']
[u'tiger', u'control', u'beller']
[u'tiger', u'lose', u'marshal', u'fulton']
[u'tom', u'clear', u'miami']
[u'tongan', u'boxer', u'deni', u'entri', u'australia', u'game']
[u'train', u'accid', u'kill', u'children']
[u'tredrea', u'injuri', u'mar', u'port', u'victori']
[u'tripl', u'transplant', u'patient', u'death', u'leav', u'last']
[u'mission', u'save', u'tourism']
[u'regul', u'defend', u'pull', u'bloodi', u'tourism']
[u'defend', u'guantanamo', u'forc', u'feed']
[u'hostag', u'dead', u'iraq']
[u'stock', u'jump', u'strong', u'job', u'growth']
[u'voter', u'gear', u'gallop', u'seat', u'elect']
[u'waratah', u'disappoint', u'elsom', u'decis']
[u'warrior', u'build', u'healthi', u'lead']
[u'west', u'indi', u'chase', u'victori']
[u'confirm', u'indonesian', u'bird', u'death']
[u'woman', u'sexual', u'assault', u'amid', u'jack']
[u'yarra', u'tram', u'warn', u'game', u'delay']
[u'cruis', u'passeng', u'hobart']
[u'aborigin', u'sacr', u'site', u'desecr']
[u'adriano', u'end', u'goal', u'drought', u'inter']
[u'afghan', u'politician', u'surviv', u'bomb', u'attack']
[u'forc', u'test', u'melbourn', u'secur']
[u'aussi', u'hope', u'basebal', u'growth']
[u'aussi', u'gorg', u'game', u'gold']
[u'australia', u'bat', u'decid']
[u'australia', u'lag', u'indigen', u'health', u'oxfam', u'say']
[u'baghdad', u'attack', u'kill']
[u'blue', u'redback', u'ensur', u'tight', u'finish']
[u'bond', u'drag', u'content']
[u'bull', u'break', u'jinx', u'highland']
[u'bushfir', u'claim', u'victorian', u'home']
[u'bushrang', u'chase', u'final', u'spot']
[u'bush', u'warn', u'iran', u'meddl', u'iraq']
[u'campaign', u'take', u'myna', u'bird']
[u'canberra', u'prepar', u'royal', u'visit']
[u'chile', u'swear', u'femal', u'presid']
[u'classi', u'storm', u'hold', u'warrior']
[u'oppos', u'closur']
[u'pledg', u'polic', u'desk']
[u'coalit', u'dismiss', u'share', u'claim']
[u'commonwealth', u'game', u'offici', u'confirm', u'bid']
[u'cowboy', u'whip', u'bronco']
[u'crean', u'extend', u'oliv', u'branch', u'beazley']
[u'crean', u'offer', u'help', u'unit', u'labor', u'faction']
[u'databas', u'leak', u'worri', u'polic']
[u'dead', u'boy', u'warn', u'train', u'station']
[u'democrat', u'urg', u'labor', u'famili', u'vote']
[u'dept', u'challeng', u'teacher', u'skill', u'test']
[u'disappear', u'teen', u'buddha', u'rais', u'concern']
[u'diver', u'elud', u'polic', u'melbourn', u'secur', u'scare']
[u'donald', u'overhaul', u'stumbl', u'tom', u'ogilvi', u'lurk']
[u'downer', u'back', u'ambassador']
[u'duck', u'shoot', u'season', u'spark', u'tension']
[u'effort', u'erad', u'indian', u'myna']
[u'emerg', u'servic', u'union', u'test', u'game', u'readi']
[u'england', u'pacemen', u'strike', u'kumbl', u'reach']
[u'meet', u'curbishley', u'england', u'interview', u'begin']
[u'fiji', u'hear', u'secur', u'trade', u'concern']
[u'firefight', u'struggl', u'contain', u'blaze']
[u'french', u'polic', u'break', u'student', u'protest']
[u'galla', u'strike', u'win', u'london', u'derbi', u'chelsea']
[u'game', u'girl', u'rooney']
[u'gear', u'snatch', u'late', u'hurrican']
[u'govt', u'fail', u'declar', u'share']
[u'govt', u'spend', u'eas', u'emerg', u'ward', u'crisi']
[u'green', u'lose', u'support', u'labor', u'poll']
[u'guilti', u'saddam', u'hang', u'quick', u'prosecutor']
[u'hama', u'finalis', u'polici', u'program']
[u'howard', u'shed', u'tear', u'milosev']
[u'howard', u'wish', u'game', u'athlet', u'luck']
[u'feel', u'gallop', u'say']
[u'iran', u'rule', u'foreign', u'enrich', u'plan']
[u'itali', u'earn', u'away', u'point']
[u'labor', u'win', u'elect']
[u'landown', u'urg', u'neighbour', u'oppos', u'wind', u'farm']
[u'lenton', u'dismiss', u'chanc', u'seven', u'gold']
[u'liber', u'launch', u'focus', u'labor', u'fault']
[u'liber', u'promis', u'kingston', u'school', u'fund']
[u'lib', u'afford', u'elect', u'promis', u'rann']
[u'local', u'tribut', u'train', u'accid', u'victim']
[u'mardan', u'hold', u'singapor', u'master', u'victori']
[u'melbourn', u'welcom', u'princ', u'edward']
[u'miller', u'injuri', u'dampen', u'raider', u'fine', u'victori']
[u'milosev', u'cheat', u'justic', u'death']
[u'milton', u'snare', u'silver', u'turin']
[u'accus', u'mugab', u'kill', u'plot']
[u'fisher', u'question', u'marin', u'park', u'plan']
[u'nation', u'databas', u'doctor', u'medic']
[u'netanyahu', u'rule', u'kadima', u'partnership']
[u'major', u'breakthrough', u'talk']
[u'timber', u'mill', u'struggl', u'opposit', u'say']
[u'ogara', u'kick', u'ireland', u'victori']
[u'opposit', u'pledg', u'payrol']
[u'osullivan', u'clear', u'australia']
[u'osullivan', u'australian', u'select', u'question']
[u'parti', u'play', u'opinion', u'poll']
[u'partnership', u'customis', u'teach', u'cours']
[u'perth', u'problem', u'reflect', u'wider', u'turmoil', u'union']
[u'pilot', u'die', u'light', u'plane', u'accid']
[u'polic', u'investig', u'children', u'fatal', u'train', u'track']
[u'poll', u'indic', u'labor', u'major']
[u'pont', u'lead', u'australia', u'record', u'total']
[u'govt', u'interven', u'rail', u'disput']
[u'quak', u'prompt', u'thai', u'evacu', u'plan']
[u'queen', u'elizabeth', u'land', u'australia']
[u'ralli', u'ramp', u'elect', u'campaign']
[u'rann', u'promis', u'hospit']
[u'rann', u'star', u'labor', u'launch']
[u'highway', u'complet']
[u'ronaldo', u'penalti', u'miss', u'cost', u'real', u'victori']
[u'rooster', u'rabbitoh']
[u'rudd', u'reject', u'beazley', u'leadership', u'concern']
[u'schumach', u'put', u'ferrari', u'pole', u'bahrain']
[u'scientist', u'discov', u'swim', u'ant']
[u'south', u'african', u'slum', u'celebr', u'tsotsi', u'oscar']
[u'lanka', u'wrap', u'bangladesh', u'test', u'seri']
[u'stosur', u'exit', u'indian', u'well', u'event']
[u'strand', u'adventur', u'pluck', u'floe']
[u'sudanes', u'troop', u'accus', u'massacr']
[u'sydney', u'hospit', u'cash', u'squeez', u'eas', u'dept', u'say']
[u'sydney', u'hospit', u'cash', u'strap', u'opposit', u'say']
[u'tasgold', u'post', u'increas', u'loss']
[u'tasmania', u'welcom', u'toll', u'takeov', u'undertak']
[u'winemak', u'bypass', u'grape', u'glut']
[u'teacher', u'plan', u'industri', u'action']
[u'boy', u'kill', u'train', u'accid']
[u'tiger', u'boost', u'final', u'chanc', u'outright']
[u'tredrea', u'undergo', u'knee', u'surgeri']
[u'truck', u'convoy', u'action', u'protest', u'deregul']
[u'charg', u'bash', u'death']
[u'victorian', u'bushfir', u'intensifi']
[u'victoria', u'win', u'king']
[u'warn', u'lambast', u'ridicul', u'smith']
[u'wheelchair', u'bind', u'woman', u'die', u'cliff', u'fall']
[u'woman', u'take', u'sudoku', u'world', u'championship']
[u'kill', u'trap', u'chines', u'coal']
[u'execut', u'legal', u'saddam', u'trial', u'tell']
[u'arrest', u'nightclub', u'brawl']
[u'year', u'queensland', u'graduat', u'univers']
[u'aborigin', u'elder', u'matilda', u'hous', u'name', u'canberran']
[u'actu', u'call', u'visa', u'inquiri']
[u'agassi', u'want', u'borg', u'trophi', u'tenni', u'famili']
[u'offer', u'altern', u'merger', u'plan']
[u'branch', u'presid', u'rethink', u'uranium', u'forum']
[u'pledg', u'port', u'augusta', u'health', u'boost']
[u'applaud', u'health', u'pledg', u'major', u'parti']
[u'highlight', u'bulk', u'bill', u'worri']
[u'hit', u'griew', u'overcrowd', u'comment']
[u'technician', u'start', u'week', u'long', u'strike']
[u'autopsi', u'find', u'milosev', u'die', u'heart', u'attack']
[u'backbench', u'hold', u'hope', u'child', u'care', u'chang']
[u'barca', u'pair', u'send', u'defeat', u'osasuna']
[u'barefoot', u'brave', u'outback', u'walk', u'help', u'father']
[u'beazley', u'crean', u'discuss', u'differ']
[u'beazley', u'get', u'rudd', u'support', u'ahead', u'meet']
[u'beer', u'flow', u'norwegian', u'apart', u'tap']
[u'black', u'cap', u'claim', u'auckland', u'test']
[u'voyag', u'dont', u'forget', u'spacesuit']
[u'bottleshop', u'close', u'follow', u'woman', u'death']
[u'bring', u'owen', u'gerrard', u'plead']
[u'brumbi', u'hand', u'bushfir']
[u'bulk', u'bill', u'increas', u'news']
[u'bushrang', u'hold', u'card']
[u'buyer', u'snap', u'hart', u'collect']
[u'better', u'health', u'fund', u'valu']
[u'remot', u'chopper', u'pilot']
[u'bigger', u'home', u'owner', u'grant']
[u'cane', u'toad', u'muster', u'begin', u'tonight']
[u'celtic', u'great', u'johnston', u'die']
[u'centr', u'offer', u'heal', u'child', u'abus']
[u'charg', u'daughter', u'drop', u'fake', u'death']
[u'child', u'care', u'giant', u'halt', u'trade', u'ahead']
[u'child', u'care', u'rebat', u'stay', u'say', u'costello']
[u'childcar', u'shortag', u'expect', u'worsen', u'woden']
[u'children', u'think', u'spark', u'grass']
[u'clean', u'begin']
[u'closer']
[u'closerpm']
[u'concept', u'design', u'releas', u'road', u'tunnel']
[u'coron', u'investig', u'plane', u'crash', u'death']
[u'council', u'consid', u'pound', u'sit']
[u'council', u'water', u'intak']
[u'crean', u'beazley', u'discuss', u'differ']
[u'crean', u'beazley', u'iron', u'differ']
[u'crew', u'continu', u'fight', u'fire']
[u'croc', u'coach', u'get', u'choos', u'assist']
[u'crusad', u'remain', u'super']
[u'plan', u'oppon', u'continu', u'fight']
[u'dept', u'await', u'teacher', u'strike', u'number']
[u'design', u'chang', u'delay', u'roll', u'corner', u'work']
[u'develop', u'appeal', u'age', u'care', u'decis']
[u'develop', u'beat', u'fill', u'age', u'care', u'centr']
[u'domest', u'violenc', u'help', u'line', u'take', u'call']
[u'drink', u'driver', u'attitud', u'concern', u'polic']
[u'driver', u'accus', u'time', u'blood']
[u'dubbo', u'polic', u'station', u'tender', u'call']
[u'earthquak', u'rattl', u'island']
[u'earthquak', u'shake', u'northern', u'pakistan']
[u'court', u'alleg', u'mugab', u'death', u'plot']
[u'face', u'wheat', u'export', u'industri', u'like', u'chang']
[u'famili', u'criticis', u'rail', u'tragedi']
[u'fatal', u'flight', u'think', u'origin', u'break']
[u'fear', u'bushfir', u'grow', u'substanti']
[u'feder', u'polli', u'bolster', u'maywald', u'campaign']
[u'feder', u'nadal', u'advanc', u'indian', u'well']
[u'fellowship', u'honour', u'hospit', u'contribut']
[u'asian', u'governor', u'general', u'zealand']
[u'autumn', u'rain', u'fall', u'central']
[u'bird', u'case', u'burma']
[u'bird', u'case', u'cameroon']
[u'foreign', u'doctor', u'blame', u'communic']
[u'governor', u'general', u'canberra', u'centenari']
[u'forum', u'alcohol', u'relat', u'crime']
[u'fund', u'tweed', u'river', u'rehab']
[u'fund', u'skate', u'park', u'closer', u'realiti']
[u'gambl', u'outrag', u'xenophon']
[u'game', u'organis', u'away', u'ticket', u'seat']
[u'game', u'organis', u'releas', u'unsold', u'ticket']
[u'leak', u'scare', u'close', u'road']
[u'gibb', u'shock', u'record']
[u'gold', u'coast', u'brisban', u'water', u'intak']
[u'goldfield', u'esper', u'monday', u'march']
[u'govt', u'ask', u'reconsid', u'scanner', u'hospit']
[u'govt', u'attack', u'highway', u'critic']
[u'govt', u'urg', u'offer', u'revenu']
[u'guterr', u'jail', u'term', u'reinstat', u'east', u'timor']
[u'hay', u'challeng', u'stoner', u'imposs']
[u'health', u'servic', u'defend', u'action', u'amidst', u'claim']
[u'heart', u'attack', u'kill', u'milosev']
[u'heritag', u'plan', u'draw', u'posit', u'respons']
[u'histor', u'melbourn', u'bridg', u'receiv', u'facelift']
[u'hobart', u'cheapest', u'hous', u'cost']
[u'homestead', u'escap', u'flood']
[u'hous', u'group', u'seek', u'home', u'owner', u'grant', u'boost']
[u'hyuk', u'vote', u'roar', u'best']
[u'india', u'chase', u'victori', u'mohali', u'test']
[u'india', u'england', u'dream']
[u'industri', u'relat', u'centr', u'stage']
[u'irrig', u'compani', u'come', u'term', u'fatal', u'crash']
[u'juve', u'hold', u'milan', u'closer', u'titl']
[u'labor', u'liber', u'roll', u'health', u'pledg']
[u'labor', u'safeguard', u'law', u'lennon']
[u'leader', u'trade', u'polit', u'punch', u'elect', u'heat']
[u'lewi', u'promot', u'desal', u'wind', u'farm', u'link']
[u'liber', u'promis', u'tackl', u'bird', u'plagu']
[u'liber', u'promis', u'upgrad', u'high', u'school']
[u'liberia', u'seek', u'taylor', u'extradit', u'nigeria']
[u'major', u'parti', u'support', u'uranium', u'export', u'china']
[u'charg', u'drink', u'spike', u'drug']
[u'die', u'weekend', u'crash']
[u'jail', u'chariti', u'fraud']
[u'marantz', u'good']
[u'marantz', u'good', u'competit']
[u'marin', u'pair', u'bind', u'german', u'trial']
[u'market', u'surpris', u'myer', u'sale', u'price']
[u'mayor', u'keen', u'start', u'island', u'lake', u'project']
[u'mayor', u'reject', u'bridg', u'levi']
[u'mcmullan', u'face', u'preselect', u'battl']
[u'meatwork', u'lock', u'plant', u'second', u'time']
[u'milosev', u'deliber', u'take', u'wrong', u'medicin', u'expert']
[u'milosev', u'die', u'heart', u'attack', u'autopsi']
[u'minist', u'hear', u'super', u'school']
[u'minist', u'hear', u'coal', u'opposit']
[u'minist', u'wont', u'interven', u'school', u'disput']
[u'miss', u'walk', u'polic', u'station']
[u'mobil', u'beam', u'cheap', u'broadband', u'bush']
[u'rain', u'need', u'overcom', u'drought', u'impact']
[u'detain', u'pakistan', u'kite']
[u'young', u'blood', u'seek', u'club']
[u'morley', u'eyebal', u'week']
[u'morley', u'good', u'game', u'cusack']
[u'mother', u'fear', u'boy', u'safeti', u'train', u'accid']
[u'motorcyclist', u'accus', u'flee']
[u'motorcyclist', u'die', u'crash']
[u'hurt', u'crash']
[u'myer', u'sell']
[u'nation', u'flag', u'best', u'leav', u'chavez', u'critic']
[u'nelson', u'farewel', u'troop', u'bind', u'afghanistan']
[u'netbal', u'time']
[u'harvey', u'beef', u'owner', u'control']
[u'marin', u'park', u'anger', u'fisher']
[u'highway']
[u'technolog', u'allow', u'hornless', u'cattl']
[u'want', u'agricultur', u'includ', u'japan']
[u'north', u'tragedi', u'life', u'jacket', u'law', u'chang']
[u'examin', u'olymp', u'stadium', u'surfac']
[u'aborigin', u'elder', u'welcom', u'youth', u'educ']
[u'need', u'victori']
[u'smoke']
[u'look', u'secur', u'match']
[u'minist', u'kick', u'pacif', u'tour']
[u'ogilvi', u'finish', u'second', u'florida']
[u'opposit', u'want', u'crackdown', u'teen', u'parti']
[u'ozjet', u'go']
[u'ozjet', u'ground', u'surpris', u'travel', u'compani']
[u'ozjet', u'failur', u'surpris']
[u'ozjet', u'failur', u'vindic', u'rann', u'decis']
[u'parad', u'highlight', u'live', u'condit']
[u'student', u'studi', u'coral', u'diseas']
[u'pilbara', u'rain', u'boost', u'threat']
[u'plan', u'aim', u'stop', u'cost', u'weed', u'spread']
[u'plane', u'crash', u'kill', u'father']
[u'back', u'cobb']
[u'polic', u'consid', u'fatal', u'hous', u'suspici']
[u'polic', u'interview', u'girlfriend', u'cliff', u'death']
[u'polic', u'investig', u'alleg', u'assault', u'game']
[u'policeman', u'face', u'court', u'accus', u'drink', u'drive']
[u'polic', u'piec', u'fatal', u'train', u'accid']
[u'poll', u'show', u'undecid', u'tassi', u'voter', u'return']
[u'probe', u'continu', u'fatal', u'road', u'crash']
[u'propos', u'nation', u'medic', u'regist', u'unnecessari']
[u'protest', u'stage', u'night', u'vigil', u'thai']
[u'public', u'transport', u'option', u'review']
[u'queen', u'call', u'action', u'aid']
[u'queen', u'welcom', u'sydney']
[u'radiolog', u'firm', u'sign', u'john', u'deal']
[u'rain', u'welcom', u'relief', u'bushfir', u'blaze']
[u'rain', u'expect', u'help', u'contain', u'bushfir']
[u'real', u'estat', u'tycoon', u'wylli', u'die']
[u'report', u'find', u'gulf', u'plane', u'crash', u'unsurviv']
[u'resourc', u'lift', u'share', u'market']
[u'riverbank', u'fund', u'oper', u'year']
[u'river', u'boat', u'hunt', u'bali', u'bomb', u'suspect']
[u'rudd', u'urg', u'govt', u'pursu', u'china']
[u'rundl', u'mall', u'open', u'holiday', u'lib']
[u'campaign', u'enter', u'final', u'week']
[u'defeat', u'miss', u'final']
[u'sailor', u'waratah']
[u'savill', u'carri', u'australian', u'flag']
[u'secret', u'detail', u'easili', u'internet', u'report']
[u'secur', u'camera', u'closer', u'realiti']
[u'serbian', u'leader', u'rule', u'milosev', u'state', u'funer']
[u'shoot', u'chang', u'walker', u'danger']
[u'sick', u'cert', u'chang', u'undermin', u'integr']
[u'sorenstam', u'win', u'season', u'open']
[u'south', u'africa', u'await', u'pollock', u'fit', u'test']
[u'spanish', u'artist', u'chamber', u'work', u'anger', u'jewish']
[u'state', u'funer', u'rule', u'milosev']
[u'africa', u'clinch', u'seri', u'record']
[u'tasmanian', u'student', u'trail', u'nation', u'studi']
[u'team', u'boss', u'move', u'defus', u'ugli']
[u'teenag', u'pregnanc', u'rat', u'higher', u'rural', u'area']
[u'thief', u'write', u'apolog', u'net', u'arrest']
[u'face', u'tribun']
[u'thumb', u'give', u'cotton', u'ball']
[u'tiger', u'confirm', u'marshal', u'miss', u'week']
[u'toll', u'vow', u'broker', u'rail', u'freight', u'deal']
[u'total', u'water', u'enforc', u'mitchel', u'river']
[u'tourism', u'minist', u'campaign', u'overturn']
[u'toxin', u'pine', u'blaze', u'wors']
[u'toyota', u'endur', u'shock', u'start', u'season']
[u'trader', u'ask', u'follow', u'code', u'conduct']
[u'trio', u'pluck', u'safeti', u'blowhol', u'rescu']
[u'trip', u'confirm', u'worldwid', u'mine']
[u'hint', u'novemb', u'tour']
[u'uncertainti', u'air', u'kalbarri', u'harbour', u'closur']
[u'consid', u'break', u'hill', u'campus']
[u'union', u'encourag', u'labour', u'celebr']
[u'marin', u'train', u'north']
[u'water', u'administr', u'warn', u'snowi', u'hydro']
[u'face', u'domest', u'cricket', u'final']
[u'crime', u'tribun', u'confirm', u'milosev', u'caus']
[u'water', u'fund', u'issu', u'spotlight']
[u'water', u'plan', u'creat', u'mari', u'river', u'worri']
[u'wenger', u'leav', u'door', u'open', u'beckham']
[u'western', u'bulk', u'bill', u'rat', u'rise']
[u'william', u'make', u'promis', u'port', u'select']
[u'worker', u'ralli', u'law']
[u'wors', u'result', u'drink', u'drive', u'blitz']
[u'abbott', u'commit', u'unsniff', u'fuel', u'roll']
[u'academ', u'disgust', u'premier', u'comment', u'train']
[u'accus', u'killer', u'suffer', u'psychiatr']
[u'adelaid', u'host', u'breed', u'championship']
[u'adelaid', u'host', u'panther', u'storm', u'clash']
[u'age', u'care', u'meet', u'agre', u'polic', u'check']
[u'age', u'care', u'meet', u'aim', u'address', u'abus', u'concern']
[u'airbag', u'fault', u'forc', u'holden', u'recal']
[u'deni', u'preselect', u'battl', u'claim']
[u'anim', u'cruelti', u'case', u'involv', u'farmer', u'isol']
[u'aquapon', u'help', u'save', u'groceri']
[u'aussi', u'dive', u'hop', u'clear', u'game']
[u'aussi', u'gymnast', u'wrap', u'game', u'prepar']
[u'aussi', u'rule', u'top', u'danger', u'sport', u'list']
[u'australian', u'share', u'fall', u'record', u'high']
[u'author', u'play', u'kalbarri', u'flood', u'concern']
[u'babcock', u'brown', u'profit', u'get', u'boost']
[u'shortag', u'contribut', u'death', u'health', u'dept', u'say']
[u'crowd', u'vie', u'ticket']
[u'birney', u'sack', u'shadow', u'attorney', u'general']
[u'bovi', u'lend', u'leas', u'choos', u'memori']
[u'britain', u'announc', u'iraq', u'troop', u'withdraw']
[u'britain', u'withdraw', u'troop', u'iraq']
[u'break', u'hill', u'offer', u'local', u'govt', u'advic']
[u'bronco', u'stick', u'plan', u'say', u'civoniceva']
[u'brooker', u'highway', u'receiv', u'facelift', u'labor', u'win']
[u'burk', u'council', u'get', u'fund', u'barra', u'facil']
[u'busi', u'group', u'air', u'medic', u'certif', u'worri']
[u'campaign', u'aim', u'lure', u'tourist', u'grampian']
[u'campaign', u'underway', u'aust', u'myna', u'menac']
[u'candid', u'happi', u'rann', u'support']
[u'casa', u'safeti', u'review', u'look', u'educ', u'train']
[u'case', u'milosev', u'close']
[u'centrebet', u'tip', u'labor', u'tasmania']
[u'chatswood', u'legionnair', u'risk', u'minim', u'health']
[u'chines', u'protest', u'arrest', u'close', u'parliament']
[u'christi', u'abandon', u'australian', u'auction']
[u'closer']
[u'closer']
[u'cole', u'inquiri', u'question', u'wheat', u'export', u'scrutini']
[u'colleagu', u'urg', u'birney', u'improv', u'communic']
[u'commonwealth', u'reject', u'beatti', u'water', u'recycl']
[u'communiti', u'access', u'clean', u'drink', u'water']
[u'concern', u'rais', u'plan', u'tourism', u'spend']
[u'council', u'back', u'govt', u'bushfir']
[u'councillor', u'ask', u'tourism', u'chang']
[u'council', u'grant', u'review', u'build', u'cod']
[u'countri', u'labor', u'keep', u'close', u'watch', u'tweed']
[u'cowboy', u'hop', u'cater', u'crowd']
[u'bundaberg', u'campus', u'chief', u'quit']
[u'crime', u'victim', u'say', u'opposit', u'plan']
[u'crime', u'victim', u'enter', u'elect', u'campaign']
[u'davi', u'pois', u'snatch', u'hackett', u'crown']
[u'debat', u'milosev', u'death', u'continu']
[u'democrat', u'deni', u'face', u'uphil', u'battl', u'elect']
[u'democrat', u'petit', u'guantanamo', u'closur']
[u'deputi', u'mayor', u'attack', u'boulder', u'polic']
[u'divid', u'rich', u'poor', u'widest', u'year']
[u'dizzi', u'play', u'yorkshir']
[u'docker', u'lose', u'grover', u'season', u'open']
[u'dozen', u'bodi', u'baghdad']
[u'duke', u'chase', u'histori', u'rome']
[u'england', u'target', u'plus', u'medal']
[u'english', u'plot', u'sink', u'aussi', u'swimmer']
[u'esper', u'resid', u'urg', u'lock']
[u'expert', u'claim', u'milosev', u'take', u'wrong', u'medicin']
[u'expert', u'say', u'reef', u'rezon', u'cost', u'warn', u'ignor']
[u'fairbank', u'fill', u'giteaus', u'shoe', u'blue']
[u'famili', u'plea', u'help', u'miss', u'woman']
[u'farmer', u'concern', u'pastur', u'research', u'fund']
[u'farm', u'group', u'call', u'spend']
[u'farm', u'incom', u'predict', u'increas']
[u'fatal', u'crash', u'treat', u'work', u'accid']
[u'fatal', u'plane', u'crash', u'spark', u'plane', u'defenc']
[u'fifa', u'lift', u'photo', u'restrict']
[u'fighter', u'plane', u'purchas', u'ahead', u'despit', u'concern']
[u'brigad', u'get', u'zone', u'command']
[u'spark', u'clear']
[u'floodwat', u'bring', u'mossi', u'problem']
[u'suffer', u'ask', u'wear', u'mask']
[u'iraqi', u'judg', u'shiit', u'execut', u'legal']
[u'rebel', u'soldier', u'deni', u'civil', u'strife']
[u'govt', u'regain', u'control', u'modburi', u'hospit']
[u'govt', u'relax', u'cross', u'media', u'ownership', u'law']
[u'govt', u'urg', u'address', u'hall', u'creek', u'social', u'woe']
[u'green', u'want', u'year', u'vote', u'option']
[u'green', u'want', u'altern', u'pulp']
[u'hewitt', u'grind', u'california']
[u'widow', u'support', u'victim', u'advoc']
[u'home', u'brand', u'label', u'increas', u'shopper']
[u'hope', u'review', u'consid', u'boarder', u'right']
[u'dont', u'feel', u'like', u'best', u'coach', u'world']
[u'indian', u'masseur', u'charg', u'game', u'villag', u'assault']
[u'indigen', u'leadership', u'institut', u'open']
[u'injur', u'motorcyclist', u'remain', u'hospit']
[u'inquiri', u'question', u'scrutini', u'wheat', u'contract']
[u'isra', u'storm', u'palestinian', u'jail']
[u'jana', u'worst', u'enemi', u'say', u'fianc']
[u'kiwi', u'netbal', u'suffer', u'blow', u'ahead', u'game']
[u'labor', u'elect']
[u'labor', u'expect', u'retain', u'countri', u'seat']
[u'labor', u'pledg', u'public', u'school']
[u'liber', u'mine', u'polici', u'allow', u'communiti']
[u'liber', u'reward', u'motorist', u'good', u'behaviour']
[u'mackay', u'pass', u'lead', u'australian']
[u'charg', u'snooker', u'hall', u'stab']
[u'fin', u'exot', u'snake']
[u'front', u'court', u'partner', u'death']
[u'marin', u'hold', u'townsvill', u'exercis']
[u'mayor', u'back', u'myer', u'decis']
[u'mayor', u'predict', u'good', u'water', u'futur']
[u'media', u'chang', u'divers', u'opposit', u'warn']
[u'media', u'ownership', u'law', u'relax']
[u'medic', u'certif', u'chang', u'worri', u'busi', u'chamber']
[u'meet', u'reject', u'educ', u'transfer', u'plan']
[u'meet', u'discuss', u'fruit', u'fight']
[u'melbourn', u'polic', u'continu', u'search', u'courthous']
[u'merger', u'price', u'influenc', u'foreign', u'market']
[u'metal', u'price', u'hing', u'mcarthur', u'river']
[u'milosev', u'famili', u'want', u'belgrad', u'burial']
[u'moneghetti', u'prais', u'game', u'villag']
[u'mission', u'australian', u'troop', u'iraq']
[u'morley', u'suspend', u'week']
[u'mother', u'proud', u'boy', u'long', u'walk', u'help', u'die']
[u'moussaoui', u'sentenc', u'doubt', u'wit']
[u'multi', u'million', u'dollar', u'jetti', u'overhaul', u'criticis']
[u'murdoch', u'tell', u'paper', u'adapt', u'technolog']
[u'expand', u'singapor']
[u'nelson', u'announc', u'troop', u'redeploy', u'iraq']
[u'nelson', u'discuss', u'joint', u'illeg', u'fish', u'patrol']
[u'nettl', u'visit', u'detaine', u'mental', u'health', u'facil']
[u'probe', u'lifter', u'drug', u'claim']
[u'north', u'west', u'sport', u'facil', u'share', u'fund']
[u'council', u'amalgam', u'experi', u'troubl']
[u'govt', u'pressur', u'smoke', u'ban']
[u'memori', u'despit', u'famili', u'concern']
[u'opal', u'fuel', u'distribut', u'crucial', u'report']
[u'opposit', u'take', u'poll']
[u'paddl', u'steamer', u'action']
[u'panel', u'consid', u'submiss', u'wind', u'farm']
[u'pharmaceut', u'boss', u'face', u'court', u'record']
[u'pharmaceut', u'boss', u'court', u'record']
[u'paper', u'reject', u'elect', u'coverag', u'bias', u'claim']
[u'patrick', u'sharehold', u'urg', u'reject', u'toll']
[u'peopl', u'symptom', u'urg', u'wear', u'mask']
[u'pittman', u'pull', u'baton', u'relay']
[u'plan', u'fundrais', u'injur', u'footbal']
[u'polic', u'charg', u'indian', u'game', u'team', u'staffer']
[u'polic', u'dumbfound', u'highway', u'speed']
[u'polic', u'investig', u'secur', u'guard', u'shoot']
[u'policeman', u'meet', u'miss']
[u'polic', u'minist', u'examin', u'mobil', u'phone']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'swoop', u'drink', u'driver']
[u'polic', u'charg', u'inmat', u'prison', u'stand']
[u'polic', u'identifi', u'hous', u'blaze', u'victim']
[u'poll', u'reflect', u'labor', u'week']
[u'poll', u'result', u'prompt', u'labor', u'powerbrok', u'meet']
[u'project', u'help', u'address', u'domest', u'violenc']
[u'protest', u'queen', u'baton', u'relay']
[u'public', u'link', u'road', u'plan']
[u'queen', u'plant', u'eucalypt', u'canberra', u'ceremoni']
[u'queen', u'prais', u'australia', u'generos']
[u'rabbitoh', u'urg', u'ditch', u'loser']
[u'race', u'mower', u'rest']
[u'rail', u'trail', u'spark', u'farm', u'concern']
[u'redback', u'coach', u'push', u'dizzi', u'case']
[u'reef', u'research', u'focus', u'weed', u'eat', u'fish']
[u'research', u'aim', u'address', u'skill', u'shortag']
[u'resid', u'lose', u'brisban', u'busway', u'plan']
[u'retail', u'confid', u'odd', u'realiti', u'survey']
[u'road', u'toll', u'increas', u'worri', u'polic']
[u'roger', u'team', u'ullrich', u'season', u'open']
[u'rooney', u'world', u'best', u'player', u'roeder']
[u'rural', u'rout', u'consult', u'begin']
[u'dental', u'need', u'shake', u'green']
[u'safeti', u'concern', u'disrupt', u'coalfield', u'train']
[u'sanitis', u'bloodi', u'campaign', u'launch']
[u'ralli', u'show', u'support', u'singl', u'wheat', u'export', u'desk']
[u'sawmil', u'legal', u'action', u'timber']
[u'scientist', u'super', u'earth']
[u'scandal', u'erupt', u'game', u'build']
[u'share', u'offer', u'rais', u'work', u'capit']
[u'race', u'organis', u'beat', u'despit', u'injuri']
[u'socceroo', u'finalis', u'world', u'plan']
[u'solut', u'offer', u'darwin', u'hospit', u'overflow']
[u'south', u'coast', u'fin', u'abus', u'email']
[u'south', u'park', u'chef', u'quit', u'cite', u'religi', u'bigotri']
[u'studi', u'consid', u'rocki', u'longreach', u'rout']
[u'studi', u'consid', u'water', u'suppli', u'plan']
[u'supermarket', u'cashier', u'get', u'suspend', u'sentenc']
[u'sydney', u'teen', u'sentenc', u'month', u'detent']
[u'talk', u'continu', u'smelter', u'enterpris']
[u'talk', u'focus', u'catch', u'reduct']
[u'green', u'hang', u'parliament', u'block', u'pulp']
[u'tasmanian', u'wine', u'demand', u'buck', u'nation', u'trend']
[u'teacher', u'charg', u'sexual', u'assault', u'releas']
[u'teacher', u'court', u'charg']
[u'teacher', u'strike', u'disput']
[u'teacher', u'march', u'deal']
[u'teen', u'prepar', u'record', u'break', u'climb']
[u'teen', u'charg', u'cabbi', u'assault']
[u'teen', u'face', u'court', u'accus', u'knife', u'assault']
[u'telco', u'open', u'dedic', u'offic', u'longreach']
[u'thief', u'get', u'weekend', u'detent', u'steal']
[u'thousand', u'march', u'thai', u'prime', u'minist', u'offic']
[u'jail', u'brisban', u'bash']
[u'tiger', u'fulton', u'wipe', u'season']
[u'timber', u'busi', u'suspici']
[u'time', u'run', u'duck', u'hunter', u'test']
[u'toll', u'takeov', u'patrick', u'good', u'news', u'small']
[u'polic', u'offic', u'face', u'court', u'rape', u'charg']
[u'tornado', u'west']
[u'transplant', u'recipi', u'farewel', u'brisban']
[u'troop', u'stay', u'iraq', u'long', u'necessari']
[u'truck', u'firm', u'face', u'hundr', u'charg']
[u'turnbul', u'slam', u'state', u'water', u'plan']
[u'bodi', u'burn', u'hous']
[u'union', u'consid', u'action', u'tey', u'bros']
[u'unsniff', u'fuel', u'answer', u'leader']
[u'extend', u'sanction', u'iran']
[u'uterin', u'line', u'stem', u'cell', u'like', u'heart', u'cell']
[u'vcat', u'hear', u'brothel', u'issu']
[u'rivermouth', u'close', u'water', u'rise']
[u'wast', u'plant', u'opposit', u'draw', u'partisan', u'support']
[u'windi', u'lose', u'sarwan', u'rest', u'tour']
[u'woman', u'appoint', u'legisl', u'council', u'clerk']
[u'woman', u'arrest', u'cronulla', u'riot', u'retali']
[u'woman', u'take', u'hospit', u'bite']
[u'woolstor', u'plan', u'council', u'scrutini']
[u'youth', u'centr', u'plan', u'face', u'hurdl']
[u'abbott', u'disappoint', u'beatti', u'boycott', u'health']
[u'learn', u'competitor', u'kid']
[u'aborigin', u'peopl', u'build', u'water', u'tunnel', u'research']
[u'parent', u'urg', u'resolut', u'teacher', u'disput']
[u'unlik', u'say']
[u'age', u'care', u'industri', u'give', u'support', u'govt', u'reform']
[u'alic', u'spring', u'communiti', u'slam', u'school', u'reform']
[u'member', u'quit', u'gut', u'infight']
[u'ambassador', u'dismiss', u'warn', u'kickback']
[u'ashley', u'cooper', u'earli', u'return']
[u'asian', u'demand', u'drive', u'plantat', u'woodchip', u'industri']
[u'aust', u'china', u'uranium', u'deal', u'close']
[u'australia', u'bowl', u'option']
[u'aust', u'teacher', u'releas', u'palestinian']
[u'babi', u'abandon', u'footpath']
[u'bangladesh', u'discov', u'ancient', u'fort', u'citi']
[u'beatti', u'absenc', u'doesnt', u'faze', u'gaven', u'candid']
[u'beef', u'export', u'resum', u'malaysia']
[u'bendigo', u'contract', u'game', u'fever']
[u'chang', u'forecast']
[u'birney', u'reject', u'leadership', u'challeng', u'talk']
[u'blaze', u'affect', u'phone', u'servic']
[u'bondi', u'surfer', u'shark', u'scare']
[u'break', u'hill', u'small', u'campus']
[u'cabooltur', u'yellow', u'ribbon', u'cancel']
[u'councillor', u'refocus']
[u'canberra', u'welcom', u'health', u'fund', u'boost']
[u'cane', u'grower', u'number', u'drop']
[u'carer', u'walk', u'free', u'attempt', u'murder', u'guilti', u'plea']
[u'chamber', u'longer', u'mine', u'expo']
[u'chamber', u'say', u'council', u'figur', u'wrong']
[u'cheer', u'jeer', u'queen', u'melbourn']
[u'chemic', u'caus', u'fish', u'death']
[u'china', u'mine', u'death', u'toll', u'rise']
[u'christian', u'sect', u'member', u'attack', u'green']
[u'clark', u'criticis', u'cartoon', u'public']
[u'cliff', u'death', u'suicid', u'say', u'famili']
[u'climat', u'chang', u'spark', u'farm', u'opportun']
[u'closer']
[u'clot', u'bust', u'prevent', u'miscarriag']
[u'emiss', u'damag', u'coral', u'reef', u'studi']
[u'coal', u'deliv', u'okay', u'amidst', u'safeti', u'concern']
[u'coca', u'cola', u'neglig', u'verdict', u'overturn']
[u'code', u'practic', u'develop', u'catch']
[u'colleg', u'surgeon', u'doesnt', u'griffith']
[u'consum', u'confid', u'continu', u'upward', u'trend']
[u'convict', u'child', u'killer', u'withdraw', u'parol', u'applic']
[u'council', u'consid', u'rate', u'charg']
[u'council', u'say', u'rise', u'report', u'mistak']
[u'council', u'look', u'better', u'budget', u'control']
[u'councillor', u'air', u'prostitut', u'fear']
[u'councillor', u'woolstor', u'plan']
[u'coupl', u'arrest', u'aceh', u'break', u'islam']
[u'courthous', u'escape', u'recaptur']
[u'cowboy', u'leav', u'unchang', u'man', u'clash']
[u'cronulla', u'riot', u'meet', u'frank', u'product', u'sculli']
[u'defenc', u'offici', u'concern', u'fighter']
[u'dfat', u'offici', u'recal', u'truck', u'fee', u'discuss']
[u'doctor', u'highlight', u'health', u'contract', u'fail']
[u'dont', u'treat', u'like', u'babi']
[u'dorey', u'head', u'scholarship', u'list']
[u'doubt', u'cast', u'snap', u'nurs', u'home', u'inspect']
[u'dozen', u'bodi', u'baghdad']
[u'drought', u'despit', u'rain', u'mayor']
[u'engin', u'work', u'plan', u'eas', u'meat', u'worker']
[u'ethanol', u'industri', u'futur', u'doubt']
[u'expans', u'extend', u'landfil', u'life']
[u'farmer', u'reap', u'benefit', u'bigger', u'rice', u'crop']
[u'fear', u'resurg', u'palestinian', u'violenc']
[u'feder', u'fund', u'firm', u'make', u'counter', u'terror']
[u'govt', u'call', u'review', u'payment', u'illeg']
[u'feedback', u'seek', u'potenti', u'beach', u'eros']
[u'feral', u'cull', u'consid', u'safer', u'option']
[u'flood', u'threaten', u'greec', u'bulgaria']
[u'foreign', u'hostag', u'free', u'gaza']
[u'minist', u'apologis', u'pay', u'exot']
[u'forum', u'shoalhaven', u'futur']
[u'fruit', u'exclus', u'zone', u'declar', u'pest', u'free']
[u'fund', u'denham', u'communiti', u'centr', u'revamp']
[u'fund', u'rais', u'cancer', u'research']
[u'futur', u'uranium', u'discuss', u'darwin']
[u'game', u'athlet', u'offici', u'tast', u'local', u'produc']
[u'game', u'organis', u'tight', u'lip', u'final', u'baton', u'runner']
[u'game', u'subdu', u'moomba', u'celebr']
[u'gaza', u'turmoil', u'prompt', u'appeal', u'calm']
[u'govt', u'aim', u'improv', u'export', u'posit', u'world']
[u'govt', u'defend', u'elect']
[u'govt', u'doubt', u'nina', u'benefit']
[u'govt', u'reject', u'truck', u'rego', u'rise']
[u'green', u'highlight', u'biolog', u'spot', u'site']
[u'green', u'reveal', u'fund', u'elect', u'promis']
[u'green', u'warn', u'voter', u'christian', u'sect']
[u'group', u'back', u'push', u'wine', u'train', u'studi']
[u'gunn', u'look', u'extend', u'long', u'career']
[u'hewitt', u'exit', u'indian', u'well']
[u'highway', u'unlik', u'reopen']
[u'hous', u'blaze', u'consid', u'suspici']
[u'howard', u'comment', u'renew', u'republ', u'debat']
[u'howard', u'say', u'advertis', u'unlik']
[u'hunter', u'athlet', u'prepar', u'game', u'glori']
[u'immunis', u'rank', u'largest', u'public', u'health']
[u'inmat', u'escap', u'long', u'jail']
[u'internet', u'base', u'bulli', u'common', u'survey']
[u'jackson', u'confirm', u'opal', u'game', u'open']
[u'judg', u'refus', u'bail', u'alleg', u'gang', u'warfar', u'case']
[u'kalbarri', u'floodwat', u'continu', u'rise']
[u'kersten', u'readi', u'blue', u'riband', u'tilt']
[u'kidnap', u'australian', u'mistreat', u'say', u'downer']
[u'labor', u'appear', u'elect']
[u'late', u'game', u'surg', u'swell', u'melbourn', u'hotel']
[u'latest', u'hous', u'consid', u'suspici']
[u'liber', u'candid', u'pledg', u'juic', u'school']
[u'liber', u'parti', u'unveil', u'fund', u'elect']
[u'liber', u'forc', u'chang']
[u'loan', u'help', u'eas', u'hous', u'situat', u'rfds', u'staff']
[u'lotus', u'glen', u'worker', u'vote', u'continu', u'strike']
[u'bust', u'billion', u'dollar', u'bill']
[u'citi', u'reach']
[u'die', u'highway', u'tanker', u'crash']
[u'face', u'court', u'assault']
[u'court', u'game', u'assault']
[u'stabl', u'condit', u'melbourn', u'stab']
[u'court', u'sieg']
[u'market', u'climb', u'amid', u'rate', u'talk']
[u'martin', u'reject', u'sniffabl', u'fuel']
[u'maruff', u'hous', u'sale', u'recommend', u'worri', u'meal']
[u'mayor', u'back', u'emerg', u'dept', u'plan']
[u'mayor', u'call', u'sonic', u'boom', u'compo']
[u'meat', u'worker', u'action', u'workplac', u'agreement']
[u'meet', u'focus', u'bush', u'hospit', u'closur']
[u'meet', u'focus', u'council', u'tourism', u'budget', u'cut']
[u'north', u'coast', u'long', u'term', u'plan', u'blueprint']
[u'miller', u'cloth', u'retail']
[u'miller', u'undergo', u'surgeri']
[u'milosev', u'buri', u'serbia']
[u'miner', u'export', u'earn', u'break', u'record']
[u'mine', u'explor', u'doubl']
[u'minist', u'call', u'zero', u'toler', u'elder', u'abus']
[u'minist', u'reject', u'health', u'servic', u'budget', u'claim']
[u'miss', u'angler', u'aliv']
[u'fund', u'seek', u'help', u'return', u'stock']
[u'seal', u'silver', u'citi', u'highway']
[u'mourner', u'farewel', u'tripl', u'transplant', u'recipi']
[u'hop', u'doctor', u'model']
[u'urg', u'focus', u'famili', u'need']
[u'worri', u'ambul', u'roster', u'chang', u'risk', u'live']
[u'murder', u'famili', u'remain', u'mysteri']
[u'nation', u'want', u'consult', u'media', u'chang']
[u'editor', u'canberra', u'time', u'want']
[u'newspap', u'accus', u'bias', u'elect', u'campaign']
[u'north', u'west', u'indigen', u'group', u'join', u'game', u'protest']
[u'label', u'year', u'hero']
[u'govt', u'welcom', u'illeg', u'fish', u'discuss']
[u'export', u'asia', u'prove', u'cost']
[u'number', u'economi', u'order', u'tasmanian']
[u'duti', u'polic', u'attack', u'alic', u'spring']
[u'open', u'ceremoni', u'begin', u'melbourn']
[u'oval', u'project', u'fund', u'short', u'mark']
[u'pair', u'plead', u'guilti', u'busselton', u'bash']
[u'palestinian', u'territori', u'brace', u'wave']
[u'parent', u'union', u'reject', u'school', u'report']
[u'parti', u'fail', u'address', u'busi', u'concern']
[u'partnership', u'help', u'boost', u'indigen', u'employ']
[u'perilya', u'boost', u'revenu']
[u'pittman', u'miss', u'open', u'ceremoni']
[u'cast', u'doubt', u'futur', u'monarchi']
[u'play', u'possibl']
[u'urg', u'action', u'tasmanian', u'pulp']
[u'polic', u'charg', u'fourth', u'person', u'man', u'murder']
[u'polic', u'hunt', u'servic', u'station', u'knife', u'bandit']
[u'polic', u'investig', u'miss', u'radio', u'station', u'money']
[u'polic', u'investig', u'suspici', u'death']
[u'policeman', u'accus', u'drink', u'drive', u'stand']
[u'polic', u'probe', u'claim', u'ignor', u'call', u'threat']
[u'polic', u'seek', u'coupl', u'murder', u'investig']
[u'polic', u'urg', u'lose', u'faith', u'road', u'safeti', u'fight']
[u'port', u'panther', u'member', u'hear', u'asset', u'plan']
[u'premier', u'defend', u'bauxit', u'negoti']
[u'public', u'urg', u'prepar', u'season']
[u'public', u'urg', u'remain', u'vigil']
[u'purcel', u'play', u'ambul', u'delay', u'claim']
[u'queen', u'open', u'melbourn', u'game']
[u'rental', u'properti', u'demand']
[u'report', u'highlight', u'council', u'higher', u'servic', u'level']
[u'republ', u'advoc', u'seiz', u'comment']
[u'resid', u'overdu', u'fin', u'relief']
[u'rice', u'touch', u'sydney']
[u'rice', u'urg', u'greater', u'reform', u'indonesia', u'arm']
[u'rooster', u'miss', u'morley']
[u'threaten', u'timber', u'project']
[u'rudd', u'meet', u'darl', u'down', u'grain', u'grower']
[u'russian', u'doctor', u'endors', u'dutch', u'autopsi', u'milosev']
[u'saddam', u'half', u'brother', u'deni', u'involv', u'massacr']
[u'saddam', u'take', u'stand']
[u'sailor', u'confirm', u'wing', u'waratah']
[u'salvag', u'train', u'put', u'tasmanian', u'communiti']
[u'school', u'reform', u'anger', u'alic', u'spring', u'communiti']
[u'secur', u'guard', u'win', u'compo', u'news']
[u'senat', u'cross', u'floor', u'media', u'chang']
[u'sensor', u'problem', u'delay', u'shuttl', u'launch']
[u'servic', u'deliveri', u'review', u'consid', u'doctor']
[u'seven', u'snub', u'luger']
[u'shortag', u'live', u'export', u'ship', u'pose', u'problem']
[u'snow', u'snow', u'go']
[u'studi', u'disprov', u'wool', u'unprofit', u'claim']
[u'survey', u'highlight', u'fall', u'builder', u'optim']
[u'suspect', u'meningococc', u'case', u'dubbo']
[u'syring', u'australian', u'sport', u'academi']
[u'voter', u'urg', u'consid', u'right']
[u'technolog', u'allow', u'polic', u'finger', u'crime']
[u'children', u'home', u'dead', u'mother']
[u'bali', u'bomb', u'accus', u'court']
[u'tiger', u'play', u'marshal', u'hotel', u'stoush']
[u'titan', u'eager', u'nonsens', u'fit', u'approach']
[u'titan', u'tough', u'fit']
[u'toowoomba', u'gambl', u'doesnt', u'surpris', u'lifelin', u'worker']
[u'finish', u'aussi', u'paralympian']
[u'trilater', u'talk', u'threat', u'china', u'downer']
[u'trio', u'face', u'court', u'bali', u'bomb']
[u'multi', u'channel', u'convert', u'aussi']
[u'vet', u'invent', u'lift']
[u'busi', u'buy', u'sunraysia', u'wineri']
[u'drug', u'trial', u'leav', u'intens', u'care']
[u'unit', u'airlin', u'job']
[u'tough', u'iran', u'say', u'rice']
[u'virus', u'put', u'sharp', u'doubt', u'clash', u'tah']
[u'voyag', u'discoveri', u'find', u'tonn', u'krill']
[u'liber', u'presid', u'call', u'squabbl']
[u'parliament', u'consid', u'offend', u'law']
[u'reject', u'ellison', u'stop', u'jail', u'fishermen']
[u'warm', u'weather', u'mean', u'earli', u'grape', u'ripen']
[u'warn', u'say', u'australia', u'like', u'play', u'spinner']
[u'uranium', u'miss', u'opportun', u'govt']
[u'weather', u'hamper', u'illeg', u'fish', u'investig']
[u'wheatbelt', u'host', u'skill', u'shortag', u'forum']
[u'youv', u'place', u'googl', u'mar']
[u'rock', u'concert', u'wont', u'hurt', u'anim']
[u'abba', u'order', u'return', u'palestinian', u'milit']
[u'abbott', u'hit', u'beatti', u'health', u'crisi']
[u'awar', u'local', u'broadcast', u'problem']
[u'fund', u'suffici', u'costello']
[u'accus', u'drug', u'traffick', u'refus', u'bail']
[u'anim', u'right', u'group', u'target', u'live', u'sheep', u'import']
[u'anti', u'dope', u'agenc', u'test', u'syring']
[u'apollo', u'develop', u'hear', u'defer']
[u'archibald', u'packer', u'choos', u'portrait', u'handyman']
[u'galleri', u'fraud', u'probe']
[u'artist', u'work', u'class', u'win', u'packer', u'prize']
[u'art', u'cairn', u'icon', u'seek', u'horizon']
[u'art', u'curat', u'choic']
[u'art', u'textil', u'design', u'share', u'secret']
[u'aussi', u'team', u'rout', u'lanka']
[u'aussi', u'squash', u'player', u'easili', u'round']
[u'aust', u'businessman', u'arrest']
[u'aust', u'intellig', u'know', u'breach']
[u'aust', u'polic', u'help', u'crack', u'global', u'child', u'porn', u'racket']
[u'australia', u'kersten', u'win', u'time', u'trial']
[u'australia', u'sweep', u'women', u'medley']
[u'australia', u'take', u'silver', u'men', u'relay']
[u'bali', u'appeal', u'gambl']
[u'bali', u'appeal', u'death', u'sentenc']
[u'bank', u'sorri', u'credit', u'card', u'offer', u'send']
[u'beatti', u'urg', u'rethink', u'uranium', u'mine', u'opposit']
[u'beazley', u'announc', u'plan', u'build', u'childcar', u'centr']
[u'beazley', u'brave', u'face', u'dismal', u'poll']
[u'busi', u'move', u'kimberley']
[u'birney', u'leadership', u'rival', u'shut']
[u'blueprint', u'shoalhaven', u'summit', u'loom']
[u'boat', u'mishap', u'spark', u'rescu']
[u'british', u'serious', u'drug', u'trial']
[u'bronz', u'australian', u'weightlift']
[u'brough', u'dismiss', u'hall', u'creek', u'plan', u'concern']
[u'businessman', u'approach', u'southern', u'health']
[u'butterfli', u'queen', u'schipper', u'shine']
[u'park', u'consid', u'vital', u'strand', u'revamp']
[u'central', u'victorian', u'amass', u'million', u'unpaid', u'fin']
[u'chamberlain', u'group', u'buy', u'merlin', u'garag', u'door', u'open']
[u'chan', u'sukumaran', u'appeal', u'death', u'sentenc']
[u'cheap', u'import', u'threaten', u'barra', u'industri']
[u'child', u'abus', u'report', u'rise']
[u'children', u'kill', u'raid', u'iraqi', u'polic']
[u'clark', u'boost', u'australia', u'debut']
[u'clark', u'reflect', u'game', u'ceremoni', u'thrill']
[u'closer']
[u'club', u'lose', u'staff', u'poki', u'bite']
[u'coal', u'industri', u'look', u'greenhous', u'gas']
[u'communiti', u'leadership', u'need', u'solv', u'petrol']
[u'costello', u'reject', u'fastest', u'grow', u'economi', u'claim']
[u'council', u'reject', u'campus', u'doubt']
[u'councillor', u'face', u'steal', u'charg']
[u'countri', u'labor', u'cast', u'doubt', u'candid']
[u'courier', u'mail', u'move', u'tabloid', u'size']
[u'court', u'rule', u'pave', u'hous', u'develop']
[u'cray', u'fisher', u'urg', u'watch', u'coral', u'spawn']
[u'cyclist', u'converg', u'albani', u'week', u'ride']
[u'date', u'falconio', u'case', u'appeal']
[u'debnam', u'put', u'youth', u'crime', u'focus', u'parent']
[u'dept', u'consid', u'water', u'storag', u'submiss']
[u'detect', u'see', u'stun', u'benefit']
[u'dfat', u'qualifi', u'check', u'contract']
[u'disabl', u'group', u'foreshadow', u'fund', u'push']
[u'doubt', u'cast', u'shark', u'import', u'plan']
[u'duck', u'flight', u'label', u'stunt']
[u'edmiston', u'jone', u'eye', u'record']
[u'elect', u'result', u'hous', u'market']
[u'emot', u'welcom', u'return', u'soldier']
[u'energex', u'contractor', u'strike', u'contract']
[u'famili', u'want', u'poki', u'go']
[u'death', u'think', u'suspici']
[u'firm', u'apologis', u'drug', u'trial', u'disast']
[u'catch', u'island', u'season', u'excit']
[u'flinder', u'fear', u'prefer', u'flow']
[u'fourth', u'legionnair', u'case', u'confirm']
[u'fume', u'aussi', u'swim', u'chief', u'deni', u'dope', u'problem']
[u'gari', u'glitter', u'appeal', u'child', u'sentenc']
[u'site', u'worri', u'spark', u'communiti', u'consult']
[u'group', u'call', u'major', u'parti', u'smear']
[u'german', u'dinosaur', u'ruffl', u'feather']
[u'global', u'research', u'project', u'focus', u'surgeri']
[u'govt', u'accus', u'mishandl', u'health', u'woe']
[u'govt', u'defend', u'defam', u'payout', u'millionair']
[u'green', u'question', u'liber', u'pamphlet', u'origin']
[u'group', u'maintain', u'fight', u'stop', u'duck', u'shoot']
[u'group', u'maintain', u'opposit', u'marin', u'park', u'plan']
[u'group', u'meet', u'inskip', u'overcrowd']
[u'guest', u'worker', u'program', u'control', u'say', u'actu']
[u'gunmen', u'raid', u'bank', u'post', u'offic']
[u'hammer']
[u'head', u'knock', u'forc', u'flatley', u'retir']
[u'heritag', u'list', u'canberra', u'church', u'site', u'give']
[u'high', u'demand', u'outback', u'muster', u'worker']
[u'higher', u'fee', u'forc', u'pub', u'turn']
[u'high', u'hop', u'brain', u'swell', u'treatment', u'trial']
[u'hockeyroo', u'match', u'game']
[u'hop', u'harvest']
[u'injuri', u'concern', u'harmison', u'ahead', u'final', u'test']
[u'injuri', u'put', u'brake', u'cyclist', u'game', u'hop']
[u'inmat', u'letter', u'rais', u'secur', u'concern']
[u'inquest', u'hear', u'break', u'request']
[u'inquiri', u'hear', u'aust', u'intellig', u'know']
[u'iraqi', u'parliament', u'briefli', u'conven']
[u'jackson', u'worker', u'wag']
[u'kalbarri', u'flood', u'expect', u'peak', u'today']
[u'kemp', u'confirm', u'drug']
[u'kemp', u'confirm', u'drug', u'weightlift', u'room']
[u'kemp', u'hop', u'quick', u'drug', u'test', u'result']
[u'kerin', u'hearten', u'margin', u'seat', u'opinion', u'poll']
[u'kimberley', u'indigen', u'artist', u'die']
[u'labor', u'liber', u'odd', u'murray', u'river', u'manag']
[u'labor', u'liber', u'releas', u'spend', u'detail']
[u'labor', u'plan', u'gaven', u'elect']
[u'labor', u'propos', u'child', u'care', u'school', u'link']
[u'lenton', u'seven', u'end', u'earli']
[u'lenton', u'upstag', u'fli', u'scot']
[u'liber', u'pledg', u'drug', u'rehab', u'centr']
[u'lobster', u'fisher', u'unhappi', u'naval', u'surveil']
[u'potenti', u'turn', u'cyclon']
[u'pollut', u'worri']
[u'mackay', u'secur', u'rural', u'clinic', u'school']
[u'malaysia', u'resum', u'beef', u'import']
[u'bash', u'investig', u'nois']
[u'marathon', u'runner', u'rebuk', u'caffein', u'remark']
[u'market', u'follow', u'wall', u'record']
[u'mayor', u'hop', u'landmark', u'type', u'develop']
[u'mayor', u'reflect', u'game', u'ceremoni', u'thrill']
[u'mcmeniman', u'red', u'tour', u'squad']
[u'mear', u'win', u'aussi', u'gold']
[u'mediat', u'urg', u'teacher', u'disput']
[u'merger', u'model', u'expect', u'incorpor', u'region']
[u'million', u'seek', u'highway', u'repair']
[u'milosev', u'bodi', u'arriv', u'serbia']
[u'milosev', u'bodi', u'place', u'public', u'display']
[u'minist', u'expect', u'support', u'age', u'care', u'chang']
[u'fund', u'canopi', u'walk']
[u'criticis', u'councillor', u'vote']
[u'outlin', u'advertis', u'opposit']
[u'nation', u'slam', u'media', u'propos']
[u'nation', u'consid', u'coalit', u'liber']
[u'nation', u'weather']
[u'neqtar', u'buy', u'evan', u'tate', u'wineri']
[u'dental', u'clinic', u'help', u'wait', u'list']
[u'doctor', u'name', u'quirindi']
[u'fish', u'resourc', u'discov', u'southern', u'ocean']
[u'discrep', u'medicar', u'fund', u'liber']
[u'english', u'speak', u'student', u'need', u'resourc']
[u'pressur', u'sell', u'uranium', u'india', u'rice']
[u'pressur', u'water', u'barwon']
[u'nurs', u'home', u'worker', u'acquit', u'assault']
[u'opposit', u'claim', u'hospit', u'bed', u'avail']
[u'optus', u'cut', u'main', u'manag', u'job']
[u'optus', u'job']
[u'oxfam', u'probe', u'tsunami', u'fund', u'theft']
[u'oxfam', u'reassur', u'australian', u'donor']
[u'ozjet', u'demis', u'blow', u'canberra', u'airport']
[u'pakistani', u'guilti', u'peopl', u'smuggl']
[u'pepper', u'kill', u'prostat', u'cancer', u'cell', u'studi']
[u'petrol', u'station', u'shut', u'door']
[u'seek', u'help', u'remov', u'fijian', u'soldier']
[u'polic', u'investig', u'build', u'site', u'blast']
[u'policeman', u'drink', u'drive', u'charg', u'unaccept']
[u'polic', u'benefit', u'main', u'street', u'secur', u'camera']
[u'polic', u'investig', u'drug', u'leak']
[u'polic', u'warn', u'fake', u'note']
[u'porn', u'ring', u'victim', u'australian']
[u'port', u'stephen', u'council', u'save', u'million']
[u'powel', u'boost', u'collin', u'pull']
[u'priest', u'face', u'assault', u'charg']
[u'print', u'error', u'reveal', u'karratha', u'land', u'ballot']
[u'prison', u'embarrass', u'polic']
[u'public', u'urg', u'help', u'stop', u'mossi', u'breed']
[u'croc', u'farmer', u'disappoint', u'latest', u'crop']
[u'policeman', u'charg', u'drink', u'drive']
[u'rain', u'welcom', u'need']
[u'ralli', u'urg', u'parti', u'growth', u'log']
[u'rann', u'keen', u'adopt', u'assault', u'chang']
[u'rare', u'frog', u'communic', u'ultrason', u'sound']
[u'receiv', u'call', u'contractor']
[u'recherch', u'land', u'owner', u'forc', u'sell']
[u'research', u'hit', u'disgrac', u'clone', u'expert']
[u'reward', u'offer', u'chemic', u'dump', u'sourc']
[u'rice', u'criticis', u'grow', u'chines', u'militari']
[u'roddick', u'baghdati', u'hingi']
[u'rudd', u'reaffirm', u'singl', u'desk', u'support']
[u'labor', u'detail', u'money', u'save', u'plan', u'ahead']
[u'scent', u'bank', u'sniffer', u'dog', u'task']
[u'scot', u'second', u'swim', u'gold', u'steven', u'fourth']
[u'search', u'wine', u'grapevin']
[u'secur', u'flaw', u'blame', u'break', u'out', u'opposit']
[u'senior', u'player', u'return', u'lion']
[u'sharp', u'sidelin', u'waratah', u'clash']
[u'ship', u'termin', u'protest', u'confront', u'beatti']
[u'shire', u'fear', u'higher', u'build', u'licenc', u'cost']
[u'shire', u'bushfir', u'appeal', u'rais', u'thousand']
[u'sierra', u'leon', u'offici', u'rush', u'hospit']
[u'silver', u'bronz', u'australia', u'men', u'butterfli']
[u'singapor', u'england', u'earli', u'warn', u'tabl']
[u'sing', u'begin', u'life', u'america']
[u'snake', u'valley', u'blaze', u'highlight', u'phone', u'need']
[u'snowi', u'flow', u'boost', u'help', u'dalgeti', u'water', u'suppli']
[u'south', u'africa', u'australia']
[u'south', u'hedland', u'hous', u'revamp']
[u'spi', u'know', u'iraqi', u'sanction', u'breach']
[u'studi', u'find', u'cholesterol', u'treatment', u'revers', u'heart']
[u'sweden', u'confirm', u'bird', u'virus', u'case']
[u'symbion', u'health', u'post', u'line', u'loss']
[u'liber', u'highlight', u'econom', u'issu', u'final']
[u'tasmanian', u'rail', u'deal', u'agre']
[u'tasmanian', u'want', u'live', u'export', u'rspca']
[u'teacher', u'good', u'spirit', u'gaza', u'ordeal']
[u'teacher', u'forward', u'reform', u'plan']
[u'telstra', u'countrywid', u'name', u'central']
[u'test', u'team', u'remain', u'mysteri']
[u'arrest', u'rice', u'protest']
[u'aust', u'charg', u'child', u'porn', u'ring']
[u'kill', u'papua', u'protest']
[u'tourist', u'critic', u'condit', u'fall']
[u'trio', u'jail', u'arm', u'robberi']
[u'compani', u'buy', u'stake', u'dragon']
[u'tweed', u'bowler', u'prim', u'game', u'competit']
[u'tweed', u'bowler', u'undergo', u'intens', u'game', u'prepar']
[u'separ', u'road', u'death']
[u'media', u'pounc', u'republ', u'remark']
[u'union', u'striker', u'despit', u'law']
[u'unit', u'airlin', u'staff', u'issu', u'ultimatum']
[u'uranium', u'group', u'steer', u'clear', u'indian', u'issu']
[u'base', u'firm', u'deliv', u'illawarra', u'benefit']
[u'judg', u'ask', u'reconsid', u'moussaoui', u'evid']
[u'label', u'iran', u'biggest', u'threat']
[u'cancer', u'surgeri', u'techniqu', u'subject']
[u'govt', u'consid', u'canteen', u'junk', u'food']
[u'lobster', u'season']
[u'wisher', u'queen']
[u'fund', u'boost', u'kakadu', u'tourism']
[u'academ', u'predict', u'stuart']
[u'accc', u'probe', u'patrick', u'purchas']
[u'dark', u'law', u'start', u'date']
[u'ambul', u'offic', u'plead', u'defibril', u'return']
[u'melbourn', u'legionnair', u'case', u'diagnos']
[u'woolworth', u'team', u'cash', u'machin', u'deal']
[u'apologis', u'rice', u'scandal', u'beazley', u'urg']
[u'archibald', u'packer', u'choos', u'portrait', u'handyman']
[u'aussi', u'semi', u'final']
[u'aussi', u'sweep', u'cycl', u'gold', u'kersten', u'turn']
[u'aust', u'push', u'case', u'game', u'badminton']
[u'australia', u'hit', u'gold', u'women', u'trap']
[u'australian', u'ethanol', u'plant', u'stir']
[u'australian', u'murder', u'sweden']
[u'australian', u'pair', u'pistol', u'gold']
[u'australian', u'weightlift', u'clear', u'drug', u'test']
[u'australia', u'gold', u'content']
[u'australia', u'push', u'badminton', u'case']
[u'furor', u'rais', u'eyebrow', u'oversea']
[u'lawyer', u'demand', u'paper']
[u'babi', u'death', u'prompt', u'brisban', u'heart', u'surgeri', u'review']
[u'barnett', u'rule', u'liber', u'leadership', u'challeng']
[u'bat', u'take', u'point', u'race', u'gold']
[u'beaconsfield', u'gold']
[u'beatti', u'issu', u'gatecrash', u'warn']
[u'belarus', u'protest', u'face', u'death', u'penalti']
[u'bennett', u'ponder', u'lockyer']
[u'bomber', u'tiger', u'rememb', u'mildura', u'crash', u'victim']
[u'bomb', u'injur', u'central', u'chines', u'citi']
[u'boomer', u'crush', u'scotland']
[u'brack', u'deni', u'preselect', u'ignor', u'rural', u'voter']
[u'burni', u'meningococc', u'case', u'confirm']
[u'bush', u'hurrican', u'relief', u'spend', u'approv']
[u'busselton', u'say', u'friendship', u'saint', u'tropez']
[u'bigger', u'busi', u'chamber']
[u'gulf', u'vet', u'test', u'uranium']
[u'mandatori', u'report', u'elder', u'abus']
[u'campaign', u'seek', u'build', u'industri', u'young', u'blood']
[u'cartoonist', u'work', u'wash', u'archibald', u'judg']
[u'chairman', u'see', u'recoveri', u'croesus']
[u'chen', u'long', u'sail', u'away', u'fish', u'controversi']
[u'china', u'drop', u'case', u'time', u'research']
[u'claim', u'faction', u'puppet', u'move', u'countri', u'seat']
[u'clark', u'think', u'debut', u'come']
[u'closer', u'news']
[u'commonwealth', u'confid', u'reinstat', u'youth']
[u'compass', u'urg', u'coca', u'cola', u'shoot', u'case']
[u'concern', u'rais', u'exercis', u'program', u'futur']
[u'corbi', u'case', u'prosecut', u'burn', u'evid']
[u'council', u'increas', u'dirt', u'dump', u'cost']
[u'councillor', u'fin', u'dead', u'anim']
[u'council', u'outlin', u'airport', u'revamp', u'plan']
[u'croesus', u'mine', u'seek', u'secur', u'trade', u'halt']
[u'crusad', u'cruis', u'home', u'cat']
[u'davidson', u'put', u'honda', u'malaysia']
[u'determin', u'kersten', u'reflect', u'gold', u'medal', u'win']
[u'distanc', u'obstacl', u'patrick']
[u'dragon', u'plead', u'help', u'hang', u'gasnier']
[u'drought', u'devast', u'south', u'east']
[u'expect', u'duck', u'shooter', u'protest', u'clash']
[u'toit', u'set', u'world', u'record']
[u'industri', u'seek', u'compo', u'bigger', u'chicken', u'cage']
[u'elder', u'paedophil', u'seek', u'lenient', u'sentenc']
[u'masri', u'star', u'bulldog', u'flog', u'tiger']
[u'england', u'davenport', u'win', u'men', u'freestyl']
[u'erupt', u'keep', u'rescuer', u'miss']
[u'erupt', u'strand', u'scientist']
[u'evan', u'tate', u'report', u'loss']
[u'evid', u'destroy', u'corbi', u'case']
[u'expert', u'urg', u'home', u'buyer', u'wait']
[u'farmer', u'head', u'toowoomba', u'goat', u'championship']
[u'farmer', u'rais', u'concern', u'rail', u'trail', u'plan']
[u'farmer', u'face', u'court', u'anim', u'cruelti']
[u'rise', u'forc', u'cancel', u'subscript']
[u'fin', u'storm', u'point', u'race', u'gold']
[u'woman', u'appoint', u'clerk', u'upper', u'hous']
[u'hors', u'dead', u'cheltenham', u'meet']
[u'fletcher', u'certain', u'england', u'shake', u'harmison']
[u'flood', u'level', u'drop', u'kalbarri']
[u'fli', u'fenc', u'retrial', u'order']
[u'forecast', u'monitor', u'coral']
[u'divid', u'futur', u'energi', u'suppli']
[u'game', u'assault', u'case', u'adjourn']
[u'game', u'athlet', u'central', u'proud']
[u'gang', u'rapist', u'jail', u'year']
[u'georg', u'hope', u'pollut', u'concern', u'rest']
[u'govt', u'put', u'faith', u'speed', u'camera']
[u'govt', u'review', u'worker', u'compens']
[u'govt', u'urg', u'speed', u'hospit', u'plan']
[u'vie', u'consum', u'protect', u'award']
[u'green', u'littl', u'comfort', u'greenhous']
[u'green', u'tip', u'hold', u'balanc', u'power']
[u'grinham', u'final', u'women', u'squash']
[u'group', u'see', u'transport', u'fail', u'draft', u'region']
[u'group', u'quiz', u'gaven', u'candid', u'open', u'space']
[u'group', u'want', u'leas', u'rockhampton', u'yeppoon', u'rail', u'line']
[u'hama', u'hop', u'peac', u'israel']
[u'health', u'servic', u'urg', u'diversifi']
[u'help', u'truck', u'driver', u'bad', u'injur', u'crash']
[u'henri', u'claim', u'sprint', u'queen', u'titl']
[u'henri', u'snare', u'game', u'record', u'heat']
[u'high', u'school', u'class', u'shortag', u'affect', u'mundubbera']
[u'hill', u'appoint', u'ambassador']
[u'hill', u'name', u'ambassador']
[u'hockeyroo', u'swamp', u'malaysia']
[u'howard', u'downer', u'deni', u'lie', u'scandal']
[u'human', u'skull', u'near', u'brisban', u'airport']
[u'idea', u'money', u'need', u'ensur', u'clean', u'water', u'goal']
[u'dont', u'know', u'steroid', u'look', u'like', u'hackett']
[u'iemma', u'reconfirm', u'equin', u'centr', u'fund']
[u'india', u'deal', u'unrav', u'pakistan']
[u'indonesian', u'tsunami', u'kill']
[u'inquest', u'find', u'child', u'fatal']
[u'inquest', u'tell', u'break', u'team', u'need']
[u'jackson', u'neverland', u'close', u'good']
[u'japan', u'confirm', u'case']
[u'jone', u'line', u'breast', u'stroke', u'clean', u'sweep']
[u'joyc', u'speak', u'farmer', u'futur']
[u'kalbarri', u'resid', u'escap', u'murchison', u'flood']
[u'kookaburra', u'open', u'match']
[u'labor', u'fail', u'surgeri', u'patient', u'smyth', u'say']
[u'labor', u'warn', u'minor', u'govern']
[u'labor', u'predict', u'poll', u'loom']
[u'labour', u'council', u'femal', u'presid']
[u'warn', u'plung', u'south', u'africa', u'troubl']
[u'lethal', u'leisel', u'stun', u'edmiston']
[u'live', u'export', u'egypt', u'agenda', u'welfar']
[u'llewellyn', u'avert', u'doctor', u'resign']
[u'loreal', u'bodi', u'shop']
[u'lie', u'alleg', u'absurd', u'say']
[u'reopen', u'vehicl', u'pile']
[u'face', u'trial', u'accus', u'rape']
[u'mayor', u'pleas', u'strand', u'support']
[u'mcewen', u'expect', u'elect', u'landslid', u'result']
[u'miatk', u'lead', u'aussi', u'sweep', u'butterfli']
[u'milosev', u'poison', u'tribun', u'say']
[u'mine', u'boom', u'benefit', u'foreign', u'westpac']
[u'fund', u'avail', u'fight', u'weed']
[u'back', u'child', u'care', u'packag']
[u'reaffirm', u'revamp', u'pledg']
[u'nation', u'museum', u'buy', u'bodylin', u'stump']
[u'nativ', u'titl', u'tribun', u'disput', u'charlevill', u'permit']
[u'navi', u'ship', u'head', u'home', u'accid']
[u'nevill', u'sens', u'reviv']
[u'allianc', u'look', u'boost', u'resourc', u'industri']
[u'legionnair', u'case', u'report', u'sydney']
[u'ship', u'port', u'piri', u'say']
[u'north', u'west', u'drought', u'stricken']
[u'nucifora', u'grudg', u'fire', u'brumbi']
[u'launch', u'avian', u'campaign']
[u'maintain', u'reign', u'aussi', u'miss', u'medal']
[u'omodei', u'challeng', u'liber', u'leadership']
[u'open', u'papua', u'scrutini', u'right', u'group']
[u'opposit', u'grow', u'truck', u'charg', u'hike']
[u'opposit', u'see', u'long', u'hospit', u'wait', u'list']
[u'page', u'attend', u'mayor', u'gather']
[u'partial', u'victori', u'princ', u'charl', u'diari']
[u'parti', u'trade', u'insult', u'promis', u'cost']
[u'pension', u'jail', u'centrelink', u'fraud']
[u'peopl', u'seek', u'osteoarthr', u'studi']
[u'perth', u'mandurah', u'rail', u'project', u'face', u'long', u'delay']
[u'plan', u'kava', u'concern', u'pacif', u'nation']
[u'deni', u'knowledg', u'kickback']
[u'downplay', u'signific', u'intellig', u'report']
[u'polic', u'arrest', u'pari', u'clash']
[u'polic', u'murder', u'charg']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'probe', u'longreach', u'assault']
[u'polic', u'promis', u'anderson', u'talk']
[u'polic', u'seek', u'theft', u'detail']
[u'power', u'player', u'impress']
[u'prefer', u'guid', u'mcewen']
[u'prescrib', u'burn', u'start', u'depend', u'weather']
[u'price', u'erupt', u'northern', u'timber', u'mill']
[u'prosecutor', u'burn', u'corbi', u'evid']
[u'psychic', u'contact', u'lennon', u'seanc']
[u'public', u'view', u'seek', u'fortuna', u'villa']
[u'qanta', u'flag', u'offshor', u'mainten']
[u'flag', u'rail', u'disput']
[u'rann', u'tip', u'elect']
[u'resourc', u'council', u'back', u'coal', u'fund']
[u'resourc', u'council', u'seek', u'studi', u'wild', u'river', u'law']
[u'retrial', u'order', u'accus', u'buck', u'night', u'rape']
[u'rice', u'salut', u'australian', u'troop']
[u'rice', u'thank', u'australia', u'steadfast', u'friendship']
[u'rice', u'thank', u'australian', u'troop', u'intern']
[u'riot', u'claim', u'live', u'papua', u'provinc']
[u'campaign', u'enter', u'final', u'hour']
[u'sampi', u'fin', u'domest', u'disput']
[u'search', u'indigen', u'traine', u'ranger']
[u'search', u'involv', u'high', u'speed', u'pursuit']
[u'sentenc', u'submiss', u'hear', u'arson', u'case']
[u'servic', u'rememb', u'irrig', u'worker']
[u'shackleton', u'stay', u'rooster']
[u'share', u'market', u'nudg', u'mark']
[u'shoot', u'coke', u'worker', u'payout']
[u'singapor', u'arrest', u'bear', u'suit', u'cloth', u'australian']
[u'springborg', u'find', u'wast', u'water', u'plan', u'hard', u'swallow']
[u'swan', u'hill', u'ethanol', u'plant', u'fund']
[u'swim', u'team', u'appeal', u'piper']
[u'teen', u'swim', u'rais', u'fund', u'paralympian']
[u'telstra', u'share', u'year']
[u'tender', u'award', u'swim', u'centr']
[u'terror', u'law', u'concern', u'intern', u'jurist']
[u'test', u'clear', u'weightlift', u'drug']
[u'year', u'jail', u'cannabi', u'dealer']
[u'truck', u'crash', u'highlight', u'bypass', u'need']
[u'union', u'back', u'polic', u'distribut', u'review']
[u'union', u'push', u'super', u'contribut']
[u'uranium', u'industri', u'seek', u'standard', u'polici']
[u'world', u'basebal', u'classic']
[u'probe', u'iraqi', u'civilian', u'death']
[u'upbeat', u'iran', u'talk']
[u'vella', u'diamond', u'shine', u'brightest', u'men', u'trap']
[u'veteran', u'weightlift', u'sarkisian', u'finish']
[u'watchdog', u'play', u'impact', u'resign']
[u'waterhous', u'face', u'irregular', u'bet', u'charg']
[u'water', u'suppli', u'go', u'hard']
[u'weightlift', u'boss', u'say', u'athlet', u'innoc']
[u'weightlift', u'face', u'drug', u'probe']
[u'welsh', u'slump', u'fourth', u'backstrok']
[u'windi', u'struggl', u'franklin']
[u'wine', u'glut', u'lead', u'hangov', u'tandou']
[u'woman', u'bash', u'road', u'rage', u'incid']
[u'woman', u'grant', u'bail', u'slaveri', u'case']
[u'woman', u'rescu', u'burn', u'hous']
[u'woman', u'stab', u'sentenc', u'increas']
[u'woodsid', u'announc', u'plan']
[u'world', u'display', u'sydney']
[u'domain', u'porn', u'sit', u'propos']
[u'allenbi', u'pampl', u'pois', u'strike', u'florida']
[u'deliv', u'resound', u'elect', u'victori']
[u'pois', u'light']
[u'predict', u'major', u'govt', u'elect']
[u'major', u'elect', u'despit', u'swing']
[u'win', u'major', u'power', u'elect']
[u'anti', u'protest', u'turn', u'brisban']
[u'asylum', u'seeker', u'number', u'continu', u'fall']
[u'atapattu', u'rule', u'pakistan', u'tour']
[u'aussi', u'golfer', u'second', u'china']
[u'aussi', u'gymnast', u'second', u'gold', u'medal']
[u'aussi', u'kahlefeldt', u'take', u'men', u'triathlon']
[u'aussi', u'netbal', u'humbl', u'wale']
[u'aussi', u'pair', u'shoot', u'bronz']
[u'australian', u'gymnast', u'golden', u'trick']
[u'australia', u'shoot', u'ahead', u'drug', u'cloud', u'lift']
[u'bangladesh', u'smash', u'kenya', u'dayer']
[u'bayley', u'win', u'sprint', u'gold']
[u'beatti', u'forecast', u'elect', u'defeat']
[u'birney', u'leadership', u'fight']
[u'bloodi', u'overturn']
[u'blue', u'upset', u'brumbi', u'auckland']
[u'bodi', u'wash', u'ashor', u'beach']
[u'probe', u'petrol', u'station', u'leak']
[u'britain', u'lift', u'bloodi']
[u'british', u'govt', u'appeal', u'hick', u'citizenship']
[u'british', u'high', u'court', u'hear', u'appeal', u'hick']
[u'british', u'regul', u'lift', u'bloodi']
[u'british', u'regul', u'lift', u'tourism']
[u'british', u'regul', u'overturn', u'tourism']
[u'bronco', u'snatch', u'late', u'shark']
[u'bronz', u'australia', u'women', u'weightlift']
[u'buck', u'tradit', u'get', u'maywald', u'elect']
[u'bulldog', u'fan', u'face', u'brawl']
[u'cape', u'town', u'test', u'grab']
[u'clark', u'lead', u'australia', u'victori']
[u'closer', u'news']
[u'closer']
[u'deputi', u'leader', u'speak', u'accid']
[u'council', u'revers', u'concert', u'decis']
[u'count', u'begin', u'poll', u'close']
[u'cowboy', u'hold', u'man']
[u'cyclon', u'larri', u'continu', u'westward', u'tract']
[u'cyclon', u'larri', u'expect', u'intensifi']
[u'demon', u'blue', u'hawk', u'chalk', u'preseason', u'win']
[u'dope', u'offici', u'defend', u'time', u'weightlift']
[u'downer', u'downplay', u'talk', u'china', u'focus']
[u'dreamwork', u'film', u'librari', u'sell']
[u'duck', u'shoot', u'season']
[u'earli', u'count', u'swing', u'hit', u'labor']
[u'earli', u'swing', u'good', u'news', u'rann']
[u'east', u'timores', u'troop', u'sack', u'protest']
[u'eel', u'outlast', u'warrior', u'waikato']
[u'elder', u'eildon', u'woman', u'drown']
[u'england', u'edg', u'australia', u'team', u'pursuit']
[u'expert', u'predict', u'landslid', u'labor']
[u'fashion', u'design', u'cassini', u'die']
[u'fatah', u'refus', u'join', u'hama', u'govt']
[u'fatah', u'wont', u'join', u'hama', u'govt']
[u'fava', u'give', u'clear']
[u'fava', u'undergo', u'test', u'convuls']
[u'fifa', u'introduc', u'team', u'point', u'penalti', u'racist']
[u'filipino', u'general', u'face', u'coup', u'court', u'martial']
[u'fisichella', u'snatch', u'malaysia', u'pole']
[u'fleme', u'knock', u'put', u'control', u'windi']
[u'french', u'secur', u'forc', u'alert', u'violenc']
[u'fuel', u'spill', u'clean', u'month']
[u'geelong', u'fight', u'preseason', u'final']
[u'gold', u'rush', u'australia', u'women', u'swimmer']
[u'govt', u'defend', u'phone', u'power']
[u'govt', u'prolong', u'marin', u'protect', u'area', u'consult']
[u'govt', u'fail', u'convent', u'centr']
[u'grandstand', u'speak', u'eel', u'skipper', u'nathan', u'cayless']
[u'green', u'rail', u'grubbi', u'campaign']
[u'hama', u'ministri', u'choic', u'spur', u'unrest', u'fear']
[u'hayden', u'pick', u'aussi', u'batsmen']
[u'hid', u'conced', u'defeat']
[u'hid', u'conced', u'tasmania']
[u'holm', u'court', u'crow', u'confid', u'ahead', u'south']
[u'hotel', u'grand', u'take', u'randwick', u'guinea']
[u'hotel', u'owner', u'weigh', u'obes', u'issu']
[u'indigen', u'film', u'premier', u'film', u'festiv']
[u'injuri', u'plagu', u'preseason', u'finalist']
[u'investig', u'perth', u'blaze']
[u'iran', u'agreement', u'iraq', u'talk', u'divers', u'say']
[u'iran', u'free', u'high', u'profil', u'dissid', u'writer']
[u'iraq', u'oper', u'fail', u'insurg']
[u'israel', u'confirm', u'bird', u'outbreak']
[u'japan', u'aust', u'hold', u'secur', u'talk']
[u'jone', u'remain', u'track', u'trebl']
[u'kerin', u'conced', u'defeat']
[u'kerin', u'conced', u'defeat', u'elect']
[u'labor', u'flood', u'drown', u'hartley']
[u'labor', u'hit', u'minist', u'illeg', u'fish']
[u'labor', u'like', u'retain', u'govt', u'tasmania']
[u'labor', u'look', u'strong']
[u'labor', u'oust', u'liber', u'newland']
[u'labor', u'rais', u'concern', u'terror', u'hotlin']
[u'labor', u'return']
[u'labor', u'major', u'elect', u'despit']
[u'labor', u'tighten', u'grip', u'norwood']
[u'latest', u'space', u'shuttl', u'accid', u'prompt', u'warn']
[u'latham', u'hope', u'south', u'africa', u'trip', u'despit']
[u'warn', u'plung', u'south', u'africa', u'troubl']
[u'lennon', u'claim', u'victori', u'elect']
[u'lennon', u'predict', u'hold', u'major']
[u'lenton', u'lead', u'australia', u'clean']
[u'lenton', u'win', u'classic', u'decid']
[u'liberia', u'request', u'extradit', u'taylor']
[u'bash', u'game', u'rugbi', u'match']
[u'charg', u'murder', u'australian', u'girlfriend']
[u'mcewen', u'retain', u'mount', u'gambier']
[u'mear', u'take', u'silver', u'sprint', u'final']
[u'mental', u'health', u'fear', u'detent', u'centr', u'detaine']
[u'milosev', u'famili', u'pull', u'funer']
[u'milosev', u'support', u'dismiss', u'tribun', u'report']
[u'mitchel', u'vote', u'go', u'wire']
[u'mix', u'result', u'predict', u'elect']
[u'urg', u'crackdown', u'hoon']
[u'nation', u'food', u'tasmanian', u'cheesemak']
[u'law', u'affect', u'teacher', u'disput']
[u'abandon', u'pakistan', u'struggl']
[u'ohalloran', u'vow']
[u'olymp', u'support', u'spur', u'labor', u'swing']
[u'opposit', u'green', u'unimpress', u'climat']
[u'polic', u'identifi', u'wash', u'bodi']
[u'port', u'arthur', u'tragedi', u'survivor', u'hope', u'posit']
[u'privat', u'contractor', u'question', u'suppli']
[u'resid', u'urg', u'prepar', u'cyclon']
[u'rann', u'claim', u'victori']
[u'rann', u'claim', u'victori', u'elect']
[u'rann', u'deliv', u'decis', u'elect', u'victori']
[u'rann', u'tip', u'easili', u'elect']
[u'rann', u'govern', u'voter']
[u'elect', u'lennon', u'envisag', u'stronger', u'tasmania']
[u'rickard', u'claim', u'bronz', u'breast', u'stroke']
[u'labor', u'like', u'major']
[u'premier', u'predict', u'close', u'elect', u'result']
[u'schipper', u'close', u'butterfli', u'gold']
[u'sharapova', u'beat', u'hingi', u'reach', u'indian', u'well', u'final']
[u'shark', u'highland']
[u'snowsil', u'snare', u'triathlon', u'gold']
[u'stott', u'despoja', u'reflect', u'tough', u'campaign']
[u'strauss', u'put', u'england', u'command']
[u'stripper', u'protect', u'award']
[u'swan', u'premiership', u'season']
[u'taiwanes', u'train', u'accid', u'kill']
[u'taliban', u'rebel', u'kill', u'afghanistan']
[u'labor', u'confid', u'count', u'begin']
[u'tasmanian', u'rush', u'vote']
[u'tasmanian', u'vote', u'major', u'govern']
[u'voter', u'head', u'poll']
[u'tender', u'call', u'mint', u'refurbish']
[u'terror', u'hotlin', u'caller', u'monitor']
[u'terri', u'hick', u'hop', u'best', u'son', u'citizenship', u'case']
[u'thousand', u'gather', u'farewel', u'milosev']
[u'thousand', u'taiwanes', u'ralli', u'china']
[u'pacer', u'contest', u'world', u'richest', u'event']
[u'train', u'kill', u'contest', u'accid']
[u'turner', u'win', u'men', u'weightlift', u'gold']
[u'sydney', u'accid']
[u'tribun', u'rule', u'milosev', u'poison']
[u'iraqi', u'forc', u'fail', u'insurg']
[u'offici', u'investig', u'possibl', u'death', u'link']
[u'offici', u'probe', u'possibl', u'death', u'link']
[u'waratah', u'sink', u'forc', u'second', u'half', u'blitz']
[u'wellington', u'hore', u'sink', u'bull', u'late']
[u'welsh', u'klim', u'silver', u'bronz']
[u'worker', u'free', u'build', u'site', u'mishap']
[u'injur', u'gold', u'coast', u'brawl']
[u'abba', u'say', u'wont', u'reject', u'hama', u'cabinet', u'list']
[u'aborigin', u'leader', u'welcom', u'premier', u'reconcili']
[u'opposit', u'fear', u'art', u'neglect']
[u'teacher', u'disput', u'intensifi']
[u'aussi', u'mccann', u'win', u'marathon', u'gold']
[u'aussi', u'netbal', u'rout', u'barbado']
[u'aussi', u'youngster', u'gorman', u'take', u'silver']
[u'australia', u'forc', u'share', u'game', u'spotlight']
[u'australian', u'shooter', u'pick', u'gold']
[u'australian', u'sprint', u'hop', u'semi']
[u'australia', u'mactier', u'win', u'pursuit', u'gold']
[u'australia', u'sim', u'win', u'unlik', u'gold']
[u'australia', u'women', u'tabl', u'tenni', u'team', u'semi']
[u'australia', u'build', u'relationship', u'japan']
[u'night', u'green']
[u'barca', u'point', u'clear']
[u'beazley', u'say', u'reform', u'influenc', u'state', u'elect']
[u'belarus', u'vote', u'tens', u'presidenti', u'elect']
[u'blake', u'stun', u'nadal', u'feder', u'showdown']
[u'bosman', u'kick', u'cheetah', u'victori', u'stormer']
[u'buckl', u'keep', u'howel', u'china']
[u'cahil', u'set', u'sight', u'europ']
[u'cane', u'toad', u'thin']
[u'carri', u'win', u'scotland', u'fourth', u'pool', u'gold']
[u'cathol', u'school', u'teacher', u'disput']
[u'census', u'campaign', u'target', u'region']
[u'cfmeu', u'warn', u'build', u'chang', u'result']
[u'china', u'open', u'theme', u'park', u'dedic', u'gold']
[u'claim', u'villawood', u'detaine', u'hunger']
[u'clark', u'lead', u'australia', u'victori']
[u'clark', u'upstag', u'pitch', u'test', u'wash']
[u'closer']
[u'closer', u'news']
[u'cole', u'inquiri', u'term', u'refer', u'amend']
[u'colombian', u'author', u'seiz', u'cocain', u'haul']
[u'cowboy', u'hold', u'man']
[u'cyclon', u'larri', u'build', u'categori', u'north']
[u'cyclon', u'upgrad', u'move', u'closer', u'coast']
[u'cyclon', u'warn', u'extend', u'inland', u'area']
[u'disput', u'money', u'fight']
[u'downer', u'hold', u'talk', u'japanes', u'counterpart']
[u'dunn', u'deal', u'aussi', u'granni']
[u'earthquak', u'rattl', u'indonesia', u'aceh']
[u'edfor', u'edg', u'aussi', u'buckl', u'china']
[u'egypt', u'report', u'human', u'bird', u'death']
[u'england', u'burnett', u'win', u'men']
[u'fear', u'belarus', u'elect', u'turn', u'violent']
[u'fear', u'violenc', u'belarus', u'poll']
[u'north', u'brace', u'cyclon', u'onslaught']
[u'north', u'brace', u'massiv', u'cyclon', u'frontag']
[u'feder', u'learn', u'state', u'lennon']
[u'whale', u'beach', u'indonesia']
[u'fli', u'scot', u'cycl', u'team', u'pursuit']
[u'say', u'iraq', u'embroil', u'unfortun', u'civil']
[u'drug', u'trial', u'volunt', u'regain', u'conscious']
[u'franc', u'secur', u'nation', u'titl']
[u'french', u'polic', u'protestor', u'clash', u'reform']
[u'cannabi', u'health', u'risk', u'reveal']
[u'global', u'protest', u'mark', u'anniversari', u'iraq']
[u'gold', u'coast', u'brawl', u'isol', u'incid']
[u'golden', u'girl', u'celebr', u'game', u'gear']
[u'gold', u'australian', u'sharp', u'shooter']
[u'govt', u'alter', u'cole', u'inquiri', u'term', u'refer']
[u'govt', u'releas', u'detail', u'law']
[u'green', u'blame', u'fear', u'campaign']
[u'grinham', u'sister', u'clash', u'final']
[u'gunner', u'pressur', u'rival']
[u'hadley', u'knee', u'reconstruct']
[u'hama', u'complet', u'palestinian', u'cabinet']
[u'hama', u'cabinet', u'posit']
[u'hockeyroo', u'cruis', u'semi', u'final']
[u'hoggard', u'doubl', u'strike', u'put', u'england']
[u'howard', u'criticis', u'colleagu', u'elect']
[u'hundr', u'thousand', u'protest', u'french', u'youth']
[u'hutchinson', u'edg', u'men', u'scratch', u'race', u'final']
[u'injuri', u'doubt', u'osullivan']
[u'iraqi', u'polit', u'stalem', u'danger']
[u'japan', u'slam', u'korea', u'reach', u'basebal', u'final']
[u'kerin', u'bow']
[u'klim', u'welsh', u'fastest', u'final']
[u'knight', u'thrash', u'raider', u'point', u'spree']
[u'leagu', u'segreg', u'option', u'violenc']
[u'lethal', u'leisel', u'set', u'pace', u'heat']
[u'liber', u'push', u'earli', u'leadership', u'ballot']
[u'lion', u'come', u'cost']
[u'liverpool', u'apologis', u'crowd', u'behaviour']
[u'malaysia', u'charg', u'gold', u'team', u'badminton']
[u'malaysian', u'make', u'histori', u'snake', u'kiss', u'feat']
[u'die', u'injur', u'motorbik', u'accid']
[u'milosev', u'buri', u'famili', u'ground']
[u'milosev', u'buri', u'home', u'town']
[u'minor', u'parti', u'await', u'prefer', u'result']
[u'moder', u'earthquak', u'shake', u'northern', u'pakistan']
[u'mourinho', u'deni', u'inter', u'link']
[u'morialta', u'thank', u'rann']
[u'north', u'korean', u'famili', u'defect', u'south', u'wooden', u'boat']
[u'north', u'prepar', u'cyclon', u'larri']
[u'policeman', u'charg', u'alleg', u'internet', u'child']
[u'close', u'seri', u'windi']
[u'offici', u'reveal', u'pittman', u'requir', u'epidur']
[u'opal', u'enjoy']
[u'opal', u'semi', u'final']
[u'palmer', u'grinham', u'squash', u'quarterfin']
[u'pampl', u'grab', u'lead', u'hill']
[u'panther', u'scrape', u'home', u'dragon']
[u'parisian', u'student', u'riot', u'employ', u'law']
[u'criticis', u'colleagu', u'elect']
[u'deni', u'law', u'hurt', u'liber']
[u'deni', u'law', u'play', u'result']
[u'polic', u'start', u'search', u'boat', u'man', u'bodi']
[u'polic', u'tearga', u'french', u'protest']
[u'polic', u'welcom', u'boost', u'rank']
[u'poll', u'open', u'benin', u'presidenti', u'elect']
[u'poll', u'open', u'belarus', u'presidenti', u'elect']
[u'pont', u'clark', u'test']
[u'powncebi', u'round']
[u'premier', u'minist', u'cyclon', u'warn', u'area']
[u'presid', u'fear', u'fijian', u'mercenari', u'head']
[u'protest', u'mark', u'anniversari', u'iraq']
[u'putt', u'disappoint']
[u'govt', u'suspend', u'water', u'manag', u'charg']
[u'get', u'chairman']
[u'rabbitoh', u'agre', u'privatis']
[u'ramadhani', u'give', u'tanzania', u'marathon', u'golden']
[u'rann', u'outlin', u'futur', u'plan']
[u'razzaq', u'help', u'pakistan', u'wicket']
[u'renault', u'fisichella', u'win', u'malaysia']
[u'resid', u'urg', u'prepar', u'cyclon']
[u'elect', u'analysi']
[u'labor', u'secur', u'major']
[u'liber', u'leader', u'expect', u'quit', u'elect']
[u'schipper', u'beat', u'lenton', u'butterfli', u'gold']
[u'scolari', u'report', u'talk', u'england']
[u'scotland', u'trounc', u'itali', u'nation']
[u'search', u'miss', u'trio', u'step']
[u'seven', u'dead', u'blast', u'rip', u'pakistani', u'polic']
[u'sever', u'cyclon', u'continu', u'march', u'north']
[u'sharapova', u'win', u'indian', u'well', u'titl']
[u'singapor', u'battl', u'crowd', u'aust', u'tabl', u'tenni']
[u'south', u'accept', u'takeov']
[u'storm', u'hold', u'late', u'charg', u'rooster']
[u'synchronis', u'pair', u'silver']
[u'labor', u'defi', u'poll', u'major']
[u'thousand', u'farewel', u'yugoslav', u'leader']
[u'fear', u'miss', u'meekatharra', u'trip']
[u'tourki', u'withdraw']
[u'trezeguet', u'strike', u'twice', u'juventus', u'livorno']
[u'tropic', u'cyclon', u'larri', u'intensifi']
[u'union', u'welcom', u'csiro', u'manag', u'chang']
[u'tienen', u'withdraw', u'game']
[u'visitor', u'protocol', u'aim', u'curb', u'anti', u'social']
[u'water', u'pub', u'concert', u'free']
[u'woman', u'charg', u'stab', u'murder']
[u'abetz', u'defend', u'liber']
[u'administr', u'unhappi', u'meatwork', u'debt', u'remain']
[u'reject', u'reject', u'alinta', u'takeov']
[u'alinta', u'present', u'takeov', u'sharehold']
[u'athlet', u'marathon', u'game', u'effort']
[u'attempt', u'servic', u'station', u'hold', u'earn', u'suspend']
[u'aussi', u'dudley', u'trail', u'macey', u'decathlon']
[u'aussi', u'fargus', u'surg', u'backstrok', u'gold']
[u'aussi', u'krueger', u'win', u'women', u'hammer', u'titl']
[u'aussi', u'stroll', u'walk', u'clean', u'sweep']
[u'aussi', u'women', u'snare', u'relay', u'gold']
[u'australia', u'immun', u'drug', u'disast']
[u'australian', u'share', u'market', u'hit', u'record', u'high']
[u'australia', u'women', u'settl', u'bowl', u'silver']
[u'aust', u'vet', u'review', u'global', u'live', u'export', u'procedur']
[u'author', u'assess', u'massiv', u'cyclon', u'damag']
[u'execut', u'expect', u'iraqi']
[u'barratt', u'pick', u'freestyl', u'bronz']
[u'baryulgil', u'compo', u'case', u'begin', u'soon']
[u'bayley', u'blast', u'dirti', u'rider', u'kersten']
[u'beatti', u'reject', u'push', u'cruis', u'ship', u'termin']
[u'beatti', u'beat', u'flight', u'boost', u'tourism']
[u'belarus', u'leader', u'cruis', u'victori']
[u'crowd', u'farewel', u'father']
[u'bishop', u'reflect', u'islam', u'poll']
[u'black', u'cock', u'rais', u'eyebrow', u'game']
[u'black', u'cap', u'secur', u'seri']
[u'blair', u'attend', u'game', u'close', u'ceremoni']
[u'blaze', u'forc', u'supermarket', u'evacu']
[u'bodi', u'end', u'hunt', u'miss', u'woman']
[u'boyl', u'rule', u'inskip', u'privat', u'sector', u'sale']
[u'brumbi', u'beat', u'tah', u'stay']
[u'bull', u'bushrang', u'ring', u'chang', u'final']
[u'bunburi', u'carniv', u'organis', u'look', u'futur', u'growth']
[u'bush', u'say', u'plan', u'victori', u'iraq']
[u'cancer', u'council', u'seek', u'travel', u'assist', u'scheme']
[u'action', u'plan', u'releas', u'wilcannia']
[u'cane', u'banana', u'crop', u'hard', u'cyclon']
[u'cattl', u'produc', u'lean', u'smaller', u'export']
[u'charg', u'policeman', u'throw', u'court']
[u'cheney', u'dismiss', u'iraq', u'civil', u'claim']
[u'closer']
[u'closer']
[u'cole', u'defend', u'govern', u'intellig', u'handl']
[u'cole', u'myer', u'line', u'profit', u'jump']
[u'communiti', u'ask', u'substanc', u'abus']
[u'communiti', u'rais', u'fund', u'injur', u'firefight']
[u'concern', u'rais', u'trawl', u'fisheri', u'chang']
[u'cotton', u'grower', u'face', u'water', u'woe']
[u'council', u'expect', u'seek', u'special', u'rate', u'rise']
[u'council', u'consid', u'contract', u'claim']
[u'council', u'seek', u'rate', u'rise', u'approv']
[u'crop', u'dust', u'pilot', u'tell', u'save', u'famili']
[u'crop', u'wipe', u'cyclon']
[u'crop', u'wipe', u'cyclon']
[u'croydon', u'brace', u'cyclon', u'larri']
[u'cyclist', u'saddl', u'ride']
[u'cyclon', u'homeless', u'payment']
[u'cyclon', u'larri', u'traci']
[u'cyclon', u'larri', u'batter', u'north', u'town']
[u'cyclon', u'larri', u'head', u'inland', u'weather', u'bureau']
[u'cyclon', u'form']
[u'damag', u'widespread', u'cyclon', u'move', u'inland']
[u'davi', u'signal', u'aussi', u'distanc', u'dynasti']
[u'debnam', u'shuffl', u'frontbench', u'tink', u'resign']
[u'defenc', u'forc', u'respond', u'call', u'help']
[u'dfat', u'offic', u'deni', u'knowledg', u'truck', u'compani']
[u'dfat', u'offic', u'alert', u'breach']
[u'docker', u'power', u'clear', u'mele']
[u'doctor', u'attack', u'canberra', u'hospit', u'ground']
[u'drought', u'hit', u'south', u'east']
[u'drought', u'tighten', u'grip', u'hunter']
[u'drought', u'tighten', u'grip', u'west']
[u'economist', u'warn', u'econom', u'downturn']
[u'edington', u'claim', u'second', u'gold', u'game']
[u'edit', u'vision', u'cyclon', u'larri', u'batter']
[u'edit', u'vision', u'cyclon', u'larri', u'batter', u'cairn']
[u'edit', u'vision', u'aftermath', u'cyclon']
[u'elector', u'postal', u'vote', u'close']
[u'emerg', u'help']
[u'emerg', u'servic', u'tri', u'innisfail']
[u'england', u'cook', u'win', u'breast', u'stroke', u'rickard']
[u'ethanol', u'plant', u'promis', u'job', u'boost']
[u'eyewit', u'account']
[u'farmer', u'shoulder', u'veget', u'cost', u'say', u'mcgauran']
[u'farmer', u'welcom', u'suspend', u'water', u'charg']
[u'fear', u'hold', u'accus', u'drug', u'import']
[u'fear', u'poki', u'forc', u'club', u'closur']
[u'figur', u'increas', u'drought', u'area']
[u'flood', u'damag']
[u'forc', u'closur', u'gaza', u'cross', u'caus', u'food']
[u'foxtel', u'benefit', u'switkowski']
[u'fuel', u'replenish', u'flood', u'affect', u'communiti']
[u'good', u'see', u'build', u'legisl']
[u'govt', u'ask', u'fast', u'track', u'rural', u'ambul', u'dispatch']
[u'govt', u'urg', u'address', u'region', u'doctor']
[u'hama', u'unveil', u'cabinet', u'list']
[u'hawk', u'qualifi', u'fastest', u'freestyl']
[u'high', u'hous', u'market', u'grow']
[u'passeng', u'sentenc', u'year']
[u'home', u'owner', u'elig', u'hous', u'rais']
[u'hous', u'back', u'omodei', u'liber', u'rein']
[u'huge', u'task', u'face', u'emerg', u'servic']
[u'indigen', u'milan']
[u'indigen', u'languag', u'film', u'show', u'adelaid', u'art']
[u'infam', u'nude', u'photograph', u'take', u'talent']
[u'injur', u'harmison', u'return', u'home']
[u'innisfail', u'devast']
[u'innisfail', u'minist', u'hide', u'cyclon', u'larri']
[u'jarvi', u'wont', u'rule', u'seek', u'stuart', u'recount']
[u'johnson', u'final']
[u'jone', u'smash', u'breast', u'stroke']
[u'kakadu', u'gain', u'fund', u'boost']
[u'landown', u'urg', u'involv', u'bird', u'protect']
[u'land', u'valuat', u'meet', u'postpon']
[u'larri', u'batter', u'north', u'queensland']
[u'larri', u'downgrad', u'move', u'inland']
[u'commiss', u'test', u'sedit', u'boundari']
[u'lengthi', u'sidelin', u'stint', u'lappin']
[u'lenton', u'lead', u'freestyl', u'sweep']
[u'lewi', u'miss', u'final']
[u'liber', u'deni', u'scott', u'link', u'hurt', u'gambier', u'campaign']
[u'link', u'sole', u'motherhood', u'poor', u'mental']
[u'local', u'compar', u'damag', u'caus', u'cyclon', u'larri']
[u'accus', u'drink', u'drive', u'time']
[u'accus', u'sexual', u'assault', u'girl']
[u'arrest', u'dubbo', u'stab']
[u'injur', u'castlemain', u'assault']
[u'face', u'court', u'stab']
[u'marathon', u'casualti', u'smyth', u'mend']
[u'martin', u'congratul', u'colleagu']
[u'mason', u'free', u'face', u'knight']
[u'mccann', u'sprint', u'home', u'marathon', u'gold']
[u'mcintosh', u'win', u'aussi', u'gold']
[u'miner', u'sand', u'firm', u'announc', u'profit']
[u'minist', u'urg', u'reject', u'truck', u'fee', u'hike']
[u'time', u'wast', u'facil', u'submiss']
[u'tough', u'time', u'predict', u'winemak']
[u'mottram', u'take', u'silver']
[u'urg', u'sentenc', u'advisori', u'council', u'chang']
[u'natali', u'grinham', u'win', u'battl', u'aussi', u'squash']
[u'nation', u'appeal', u'help', u'cyclon', u'victim']
[u'neil', u'clark', u'mayor', u'johnston', u'shire', u'say', u'area']
[u'nelson', u'admit', u'iraq', u'deploy', u'unpopular']
[u'film', u'reviv', u'ancient', u'arnhemland', u'tribal', u'custom']
[u'ghan', u'servic', u'arriv', u'darwin']
[u'poki', u'say', u'learn']
[u'regul']
[u'govt', u'continu', u'court', u'challeng', u'law']
[u'polic', u'water', u'cannon']
[u'communiti', u'count', u'larri', u'cost']
[u'survey', u'damag', u'wake', u'larri']
[u'prison', u'help', u'cane', u'toad', u'erad']
[u'attorney', u'general', u'resign']
[u'pampl', u'clinch', u'dramat', u'florida']
[u'patel', u'patient', u'come', u'grip', u'loss']
[u'pederick', u'look', u'secur', u'hammond']
[u'pedestrian', u'die', u'woorige']
[u'pini', u'take', u'pngs', u'gold', u'klim', u'second']
[u'visit', u'cyclon', u'zone']
[u'polic', u'baffl', u'hunter', u'valley', u'murder']
[u'polic', u'conduct', u'test', u'item', u'murder', u'victim']
[u'polic', u'happi', u'game', u'traffic']
[u'polic', u'hunt', u'servic', u'station', u'bandit']
[u'polic', u'maintain', u'search', u'miss']
[u'polic', u'probe', u'nude', u'photo', u'sale']
[u'polic', u'seek', u'drive', u'shoot', u'inform']
[u'polic', u'upgrad', u'charg', u'murder']
[u'polic', u'urg', u'notic']
[u'poll', u'show', u'ignor', u'islam']
[u'powel', u'eas', u'metr', u'victori']
[u'power', u'station', u'panel', u'sit', u'today']
[u'prime', u'minist', u'john', u'howard', u'say', u'feder', u'govt']
[u'princ', u'edward', u'meet', u'victorian', u'firefight']
[u'promis', u'find', u'fight', u'pest']
[u'protest', u'destroy', u'explor', u'camp']
[u'protest', u'sandon', u'picket', u'pledg']
[u'public', u'ask', u'aerodrom', u'input']
[u'public', u'urg', u'region', u'polit', u'candid']
[u'purcel', u'outlin', u'cyclon', u'relief', u'prioriti']
[u'push', u'assess', u'starl', u'number']
[u'need', u'human', u'right', u'civil', u'liberti', u'council']
[u'queensland', u'premier', u'peter', u'beatti', u'mackay']
[u'real', u'valencia', u'lose', u'grind']
[u'red', u'latham', u'time']
[u'relay', u'rais', u'cancer', u'awar', u'money']
[u'report', u'highlight', u'econom', u'contribut']
[u'resid', u'tidi', u'royal', u'visit']
[u'roar', u'interest', u'packer']
[u'rockhampton', u'councillor', u'push', u'bull', u'statu']
[u'rockhampton', u'soft', u'pine', u'forest', u'expans', u'near']
[u'ranger', u'criticis', u'govt', u'respons', u'illeg']
[u'sensit', u'media', u'coverag', u'urg', u'port', u'arthur']
[u'sewag', u'contamin', u'kakadu']
[u'ship', u'clear', u'ill']
[u'singapor', u'crush', u'australia', u'women', u'tabl', u'tenni']
[u'leg', u'lamb', u'bear', u'belgium']
[u'snowsil', u'gold', u'medal', u'high']
[u'squash', u'snake', u'seek', u'scientif', u'studi']
[u'stanhop', u'want', u'continu', u'iraq', u'involv', u'explain']
[u'state', u'transport', u'minist', u'vote', u'truck', u'rego']
[u'steffensen', u'breez', u'semi']
[u'steven', u'action', u'heat']
[u'stingi', u'milan', u'delight', u'ancelotti']
[u'strike', u'threaten', u'french', u'youth']
[u'support', u'improv']
[u'survivor', u'evid', u'road', u'inquiri']
[u'suspect', u'terrorist', u'abus', u'custodi', u'court', u'tell']
[u'sydney', u'rugbi', u'leagu', u'fan', u'face', u'segreg']
[u'tancock', u'beat', u'welsh', u'backstrok']
[u'task', u'forc', u'consid', u'pumiceston', u'passag', u'issu']
[u'teen', u'arrest', u'break']
[u'thousand', u'protest', u'alleg', u'fraud', u'belarus']
[u'face', u'court', u'gold', u'coast', u'brawl']
[u'tiger', u'farah', u'break', u'hand']
[u'tourist', u'condit', u'worsen', u'uluru', u'fall']
[u'tropic', u'cyclon', u'larri', u'batter', u'north', u'queensland']
[u'tweed', u'resid', u'debat', u'communiti', u'issu']
[u'unidentifi', u'woman', u'bodi']
[u'union', u'brand', u'reform', u'communist']
[u'union', u'risk', u'legal', u'action', u'challeng', u'law']
[u'union', u'squar', u'renew', u'fight']
[u'tongeren', u'court', u'cost', u'famili']
[u'grower', u'grape']
[u'volcano', u'recoveri', u'team', u'search', u'miss']
[u'wagga', u'triathlet', u'celebr', u'golden', u'game']
[u'webber', u'home', u'malaysia', u'failur']
[u'wembley', u'worker', u'evacu']
[u'wide', u'warn', u'strong', u'wind']
[u'woman', u'dead', u'drive', u'shoot']
[u'woman', u'face', u'court', u'accus', u'kill', u'partner']
[u'women', u'skeet', u'pair', u'gold', u'australia']
[u'xstrata', u'address', u'environment', u'issu']
[u'kill', u'rebel', u'target', u'iraqi', u'polic']
[u'acoss', u'urg', u'servic', u'cut']
[u'adelaid', u'festiv', u'wrap']
[u'adelaid', u'hous', u'think', u'suspici']
[u'algerian', u'earthquak', u'kill']
[u'alp', u'stuart', u'lead']
[u'shoot', u'gold', u'australia']
[u'asbesto', u'victim', u'welcom', u'research', u'centr']
[u'attack', u'prompt', u'hospit', u'secur', u'review']
[u'aussi', u'oneil', u'romp', u'time', u'trial', u'victori']
[u'aussi', u'strong', u'samoa']
[u'aussi', u'women', u'shatter', u'medley', u'relay']
[u'aust', u'post', u'stamp', u'approv', u'golden', u'girl']
[u'australian', u'banana', u'crop', u'wipe']
[u'australian', u'quiz', u'bougainvill', u'activ']
[u'australian', u'finish', u'floor']
[u'babi', u'boom', u'fuel', u'popul', u'growth']
[u'beazley', u'announc', u'plan', u'block', u'internet', u'porn']
[u'belarusian', u'elect', u'protest', u'continu']
[u'reviv', u'ship', u'industri', u'threat']
[u'biennal', u'festiv', u'aim', u'contact']
[u'gorilla', u'pick', u'weightlift', u'gold']
[u'biker', u'club', u'member', u'bail', u'brawl', u'court', u'case']
[u'biki', u'gang', u'member', u'face', u'drug', u'charg']
[u'bird', u'split', u'strain']
[u'boycott', u'halt', u'thai', u'elect']
[u'break', u'axl', u'blame', u'derail']
[u'brown', u'snatch', u'breast', u'stroke', u'gold']
[u'brown', u'throw', u'gauntlet', u'steffensen']
[u'call', u'duck', u'shoot', u'victoria']
[u'call', u'withdraw', u'minist', u'control', u'truck', u'rego']
[u'canberra', u'celebr', u'birthday', u'bike', u'ride']
[u'canberra', u'popul', u'growth', u'slow']
[u'cane', u'banana', u'crop', u'hard', u'larri']
[u'carcass', u'point', u'devil', u'diseas', u'spread']
[u'central', u'west', u'govt', u'minist', u'die']
[u'chamber', u'play', u'releas']
[u'chemic', u'spill', u'port', u'piri']
[u'citrus', u'industri', u'issu', u'fruit', u'remind']
[u'clean', u'begin', u'larri', u'lash']
[u'clean', u'begin', u'innisfail']
[u'closer']
[u'closer']
[u'coal', u'produc', u'predict', u'higher', u'contract', u'price']
[u'cole', u'inquiri', u'evid', u'vindic', u'govt', u'downer']
[u'commend', u'recognis', u'polic', u'effort']
[u'commonwealth', u'ask', u'help', u'fund', u'nannup', u'bridg']
[u'compani', u'reject', u'lake', u'macleod', u'claim']
[u'conserv', u'group', u'criticis', u'connector', u'leve', u'road']
[u'council', u'announc', u'narrawalle', u'inlet', u'plan']
[u'council', u'call', u'fluorid', u'referendum']
[u'council', u'get', u'petit', u'afford', u'hous']
[u'council', u'meet', u'nativ', u'titl', u'claim']
[u'council', u'levi', u'landhold', u'fund', u'stormwat', u'plan']
[u'council', u'recognis', u'indigen', u'communiti']
[u'coupl', u'escap', u'injuri', u'drive', u'shoot']
[u'court', u'jail', u'drink', u'drive', u'time']
[u'court', u'jail', u'teen', u'rape']
[u'cousin', u'plead', u'guilti', u'flee', u'booz']
[u'cowboy', u'pitch', u'cyclon', u'relief']
[u'cowdrey', u'target', u'world', u'champ']
[u'croesus', u'form', u'plan', u'turn', u'loss']
[u'cyclon', u'destruct', u'stun', u'resid']
[u'cyclon', u'devast', u'prompt', u'diseas', u'fear']
[u'cyclon', u'larri', u'clean', u'begin']
[u'darwin', u'hospit', u'secur', u'oncologist']
[u'davi', u'end', u'aussi', u'reign', u'gold']
[u'dead', u'hous', u'blaze', u'spark', u'call']
[u'deal', u'free', u'anzac', u'clash']
[u'delug', u'caus', u'localis', u'flood', u'katherin']
[u'develop', u'control', u'plan', u'form', u'wilton']
[u'disabl', u'support', u'delay']
[u'disgrac', u'magistr', u'face', u'abus']
[u'doctor', u'warn', u'racial', u'abus', u'wake', u'patel']
[u'downer', u'vail', u'brief', u'kickback', u'dfat']
[u'begin', u'fuel', u'reduct', u'burn']
[u'dudley', u'fall', u'short', u'gold', u'decathlon']
[u'edington', u'make', u'splash', u'second', u'game', u'gold']
[u'edit', u'vision', u'innisfail', u'resid', u'clean']
[u'train', u'collid', u'rail', u'yard']
[u'escal', u'violenc', u'kill', u'nepal']
[u'push', u'fresh', u'belarus', u'elect']
[u'warn', u'belarus', u'sanction', u'like']
[u'cyclon', u'larri', u'weaken', u'land']
[u'flight', u'attend', u'avoid', u'jail', u'child', u'porn']
[u'expert', u'play', u'indigen', u'declar']
[u'race', u'club', u'offici', u'get', u'suspend', u'jail', u'term']
[u'wildlif', u'ranger', u'face', u'court', u'cannabi', u'crop']
[u'famous', u'croc', u'paint', u'arriv', u'darwin']
[u'farmer', u'welcom', u'rain']
[u'farm', u'group', u'urg', u'govt', u'focus', u'region']
[u'fava', u'latham', u'forc', u'super', u'round']
[u'agent', u'moussaoui', u'fear', u'ignor']
[u'fear', u'untreat', u'sewerag', u'damag', u'kakadu']
[u'ferri', u'employe', u'order', u'work']
[u'firefight', u'control', u'swamp', u'land', u'blaze']
[u'firefight', u'plan', u'granit', u'creek', u'burn']
[u'fisher', u'stay', u'brumbi']
[u'fli', u'doctor', u'base', u'upgrad']
[u'forestri', u'activ', u'renew', u'corrupt', u'watchdog']
[u'fring', u'festiv', u'chief', u'resign']
[u'fruit', u'market', u'suffer', u'larri', u'flatten', u'crop']
[u'fund', u'water', u'qualiti', u'boost']
[u'fund', u'target', u'greenhous', u'emiss']
[u'gene', u'link', u'violent', u'tendenc']
[u'govt', u'criticis', u'approv', u'near', u'world']
[u'govt', u'reject', u'push', u'higher', u'truck', u'fee']
[u'great', u'lake', u'council', u'consid', u'seek', u'rate']
[u'grower', u'await', u'cyclon', u'sugar', u'price', u'impact']
[u'guard', u'run', u'iran', u'nuclear', u'arm', u'program', u'exil']
[u'hammer', u'final']
[u'hawk', u'chanc', u'swim', u'gold']
[u'hell', u'canada', u'problem', u'bloodi']
[u'hewitt']
[u'higher', u'sheep', u'price', u'forecast', u'amid', u'steep', u'demand']
[u'hodg', u'bronco']
[u'hous', u'downturn', u'continu']
[u'hous', u'slump', u'forecast', u'continu']
[u'howard', u'bush', u'discuss', u'uranium', u'sale']
[u'human', u'spur', u'worst', u'extinct', u'dinosaur']
[u'iemma', u'consid', u'polic', u'school', u'squad']
[u'indonesia', u'execut', u'crimin']
[u'injuri', u'forc', u'green', u'mundin', u'fight', u'delay']
[u'inquiri', u'evid', u'indic', u'warn']
[u'insur', u'claim', u'build', u'larri', u'aftermath']
[u'law', u'standard', u'live', u'opposit']
[u'jacob', u'back', u'birney', u'liber', u'leader']
[u'jamieson', u'take', u'silver', u'track']
[u'japan', u'beat', u'cuba', u'basebal', u'classic', u'crown']
[u'knight', u'beef', u'secur', u'bulldog', u'game']
[u'kookaburra', u'rout', u'england']
[u'koomarri', u'centr', u'open']
[u'latham', u'hope', u'latest', u'diagnosi']
[u'collin', u'tulli', u'district', u'banana', u'farmer', u'tell']
[u'liber', u'consid', u'joint', u'leadership', u'ticket']
[u'liber', u'play', u'leadership', u'tension']
[u'local', u'athlet', u'celebr', u'game', u'medal']
[u'local', u'urg', u'join', u'chang', u'protest']
[u'log', u'protest', u'promis', u'styx', u'valley', u'fight']
[u'male', u'swimmer', u'finish', u'high', u'note']
[u'charg', u'fatal']
[u'send', u'grand', u'daughter', u'messag', u'abus', u'court']
[u'mayor', u'pleas', u'barcaldin', u'block', u'auction']
[u'mayor', u'reject', u'rocki', u'boundari', u'plan']
[u'melbourn', u'myer', u'centr', u'heritag', u'list']
[u'miner', u'face', u'heavi', u'machineri', u'tyre', u'shortag']
[u'minist', u'reject', u'region', u'represent', u'claim']
[u'minist', u'stand', u'assess', u'process']
[u'mission', u'beach', u'resid', u'tell', u'cyclon']
[u'fund', u'cervic', u'cancer', u'screen']
[u'weightlift', u'gold', u'australia']
[u'push', u'richmond', u'command', u'polic']
[u'urg', u'vote', u'best', u'leadership', u'candid']
[u'multiplex', u'struggl', u'complet', u'wembley', u'stadium']
[u'immedi', u'chang', u'expect', u'high', u'patient']
[u'govt', u'promis', u'water', u'cannon', u'quell', u'rioter']
[u'nurs', u'home', u'worker', u'face', u'rape', u'charg']
[u'minist', u'move', u'backbench']
[u'omodei', u'leadership', u'challeng', u'selfish']
[u'opposit', u'launch', u'gaven', u'elect', u'campaign']
[u'osullivan', u'limp', u'away', u'game']
[u'pair', u'jail', u'shop', u'centr', u'stab']
[u'pakistan', u'test', u'fire', u'cruis', u'missil']
[u'park', u'servic', u'conduct', u'burn', u'off']
[u'polic', u'investig', u'suspici', u'retir', u'villag']
[u'polic', u'oper', u'target', u'trucki', u'drink', u'drive']
[u'polic', u'seek', u'home', u'invas', u'wit']
[u'polic', u'union', u'appal', u'assault', u'sentenc']
[u'pong', u'scuttl']
[u'porn', u'block', u'plan', u'slow', u'internet']
[u'port', u'campbel', u'group', u'lose', u'motel', u'fight']
[u'princ', u'head', u'dubbo']
[u'prof', u'school', u'implement', u'inquiri']
[u'public', u'help', u'seek', u'solv', u'drive', u'slay']
[u'push', u'sell', u'aquacultur', u'softwar', u'oversea']
[u'dismiss', u'elect', u'bias', u'claim']
[u'raider', u'look', u'bounc', u'rooster']
[u'rail', u'cross', u'crash', u'spark', u'driver', u'safeti', u'warn']
[u'rate', u'peg', u'decis', u'wont', u'affect', u'illawarra']
[u'read', u'book', u'heaven']
[u'region', u'think', u'secur', u'public', u'transport']
[u'relief', u'oper', u'clean', u'begin', u'innisfail']
[u'retir', u'quinlan', u'defend', u'budget', u'blow']
[u'rice', u'complet', u'medley', u'doubl']
[u'russia', u'build', u'pipelin', u'china']
[u'samuel', u'take', u'bronz', u'women', u'discus']
[u'schipper', u'break', u'game', u'record']
[u'schipper', u'line', u'doubl']
[u'schoeman', u'sizzl', u'win', u'freestyl']
[u'schu', u'look', u'forward', u'albert', u'park']
[u'scientist', u'develop', u'power', u'save', u'devic']
[u'ranger', u'train', u'make', u'sens']
[u'search', u'go', u'miss']
[u'second', u'servic', u'station', u'robberi', u'wagga']
[u'offend', u'plan', u'worri', u'resid']
[u'sick', u'seal']
[u'speed', u'complaint', u'rise']
[u'state', u'emerg', u'declar', u'cyclon', u'ravag', u'area']
[u'stock', u'market', u'retreat', u'record', u'high']
[u'stuart', u'remain', u'undecid']
[u'studi', u'highlight', u'cost', u'water', u'cart', u'option']
[u'swimmer', u'urg', u'wari', u'rip']
[u'sydney', u'ferri', u'staff', u'hold', u'snap', u'strike']
[u'tanzania', u'bangladesh', u'athlet', u'miss']
[u'tascoss', u'pursu', u'govt', u'hous', u'strategi']
[u'tasmanian', u'urg', u'donat', u'blood']
[u'teacher', u'talk', u'fail']
[u'south', u'east', u'field', u'day']
[u'ticket', u'hit', u'roll', u'stone', u'fan']
[u'torren', u'river', u'pollut', u'astonish']
[u'transport', u'bodi', u'back', u'govt', u'opposit', u'higher']
[u'transport', u'group', u'celebr', u'higher']
[u'travel', u'warn', u'woman', u'bodi']
[u'troop', u'cyclon', u'recoveri', u'effort']
[u'tropic', u'north', u'queensland', u'tuesday', u'march']
[u'truck', u'industri', u'say', u'rural', u'win', u'higher']
[u'tsunami', u'lesson', u'cyclon', u'relief']
[u'dead', u'suspect', u'murder', u'suicid']
[u'union', u'say', u'hospit', u'meet', u'ban']
[u'union', u'say', u'smelter', u'job', u'save']
[u'probe', u'iraqi', u'civilian', u'kill']
[u'util', u'pull', u'plug', u'eucalyptus', u'energi']
[u'vanston', u'mark', u'harmoni']
[u'vanuatus', u'beat', u'leadership', u'challeng']
[u'grower', u'urg', u'greater', u'market']
[u'vietnames', u'scientist', u'develop', u'generic', u'tamiflu']
[u'grower', u'unabl', u'banana', u'demand']
[u'wangui', u'give', u'earli', u'golden', u'birthday', u'present']
[u'wast', u'facil', u'propon', u'offer', u'grind', u'water']
[u'wati', u'unlik', u'pose', u'threat', u'mackay', u'region']
[u'abolish', u'tax']
[u'wheat', u'ralli', u'seek', u'singl', u'desk', u'support']
[u'wheat', u'survey', u'aim', u'profit', u'secret']
[u'wignal', u'win', u'hurdl', u'gold']
[u'windsor', u'back', u'call', u'heavi', u'vehicl', u'bypass']
[u'wood', u'lead', u'time', u'trial', u'clean', u'sweep']
[u'workplac', u'overhaul']
[u'xstrata', u'say', u'prompt', u'decis', u'mcarthur', u'river']
[u'aborigin', u'display', u'middl', u'east']
[u'actu', u'endeavour', u'dodg', u'chang']
[u'actu', u'plan', u'union', u'membership', u'hotlin']
[u'adler', u'appeal', u'jail', u'sentenc']
[u'lure', u'skill', u'worker']
[u'afghan', u'armi', u'kill', u'taliban']
[u'asbesto', u'train', u'station']
[u'asbesto', u'support', u'group', u'back', u'interst', u'move']
[u'asic', u'take', u'bet', u'boss', u'court']
[u'atkinson', u'talk', u'court', u'fund', u'push']
[u'aussi', u'court', u'british', u'coach', u'reviv', u'men', u'swim']
[u'aussi', u'squash', u'minut']
[u'australia', u'accus', u'lack', u'cooper', u'mafia']
[u'australia', u'name', u'team', u'road', u'race']
[u'australian', u'netbal', u'draw', u'jamaica']
[u'australia', u'take', u'gold', u'silver', u'synchro', u'dive']
[u'aust', u'take', u'bronz', u'men', u'lawn', u'bowl', u'pair']
[u'author', u'look', u'stamp', u'cricket', u'racism']
[u'author', u'struggl', u'power', u'north']
[u'lawyer', u'push', u'ministeri', u'testimoni']
[u'bell', u'pavlich', u'lead', u'docker']
[u'bichel', u'name', u'player', u'year']
[u'erupt', u'fear', u'philippin', u'volcano', u'belch']
[u'bird', u'kill', u'azerbaijan']
[u'blair', u'grill', u'loan', u'lordship', u'affair']
[u'bloodi', u'hell', u'despit', u'canadian', u'concern']
[u'boomer', u'cruis', u'final']
[u'boswel', u'retain', u'high', u'jump', u'crown']
[u'bowl', u'gold', u'australian', u'pair']
[u'bring', u'woodward', u'english', u'rugbi', u'johnson']
[u'broom', u'green', u'light', u'push', u'remain', u'traffic', u'light']
[u'build', u'industri', u'pressur', u'green']
[u'bundaberg', u'trial', u'video', u'link', u'counsel']
[u'bush', u'successor', u'decid', u'iraq', u'troop', u'pull']
[u'cardross', u'crash', u'fund', u'divid', u'famili']
[u'castlemain', u'join', u'scheme', u'greenhous']
[u'chang', u'horsham', u'fluorid', u'decis', u'unlik']
[u'china', u'impos', u'chopstick']
[u'claim', u'accus', u'stop', u'polic', u'stab', u'sister']
[u'closer']
[u'coal', u'termin', u'upgrad', u'lead', u'load', u'delay']
[u'cole', u'inquiri', u'consid', u'summon', u'senior', u'minist']
[u'communiti', u'mourn', u'children', u'kill', u'train', u'accid']
[u'councillor', u'meet', u'conduct', u'train']
[u'council', u'see', u'pavilion', u'concept', u'plan']
[u'council', u'lobbi', u'govt', u'address', u'rural', u'woe']
[u'council', u'seek', u'rate', u'variat']
[u'council', u'spend', u'pyap', u'revamp']
[u'coupl', u'charg', u'produc', u'child', u'porn']
[u'cowboy', u'tell', u'evan']
[u'cruis', u'passeng', u'help', u'boost', u'esper', u'economi']
[u'cyclon', u'damag', u'region', u'await', u'ministeri', u'visit']
[u'cyclon', u'devast', u'keep', u'polli', u'away']
[u'cyclon', u'impact', u'bring', u'short', u'term', u'gain', u'banana']
[u'cyclon', u'relief', u'packag', u'offer', u'hope', u'beatti']
[u'cyclon', u'wati', u'sit', u'tight']
[u'david', u'jone', u'share', u'fall', u'despit', u'profit', u'growth']
[u'decis', u'reserv', u'adler', u'appeal']
[u'denton', u'final', u'appendix', u'flare']
[u'disgrac', u'scientist', u'strip', u'titl']
[u'dive', u'gold', u'australia']
[u'drink', u'driver', u'acquit', u'landmark', u'case']
[u'driver', u'urg', u'avoid', u'easter', u'drink', u'drive']
[u'drought', u'barcoo', u'shire', u'offer', u'cyclon', u'relief']
[u'edington', u'take', u'game', u'gold', u'medal']
[u'estrada', u'take', u'stand', u'graft', u'trial']
[u'declar', u'perman', u'ceas']
[u'etoo', u'strike', u'twice', u'barca', u'point', u'clear']
[u'exclus', u'brethren', u'member', u'defend']
[u'export', u'boost', u'manufactur', u'product']
[u'farmer', u'optimist', u'despit', u'cyclon', u'devast']
[u'feder', u'clijster', u'name', u'player', u'year']
[u'ferri', u'disput', u'handl', u'immatur', u'iemma']
[u'japanes', u'nuclear', u'plant']
[u'firm', u'hospit', u'revamp']
[u'flintoff', u'udal', u'lead', u'england', u'test', u'victori']
[u'flood', u'cut', u'bark', u'highway']
[u'fluorid', u'futur', u'rest', u'council']
[u'food', u'drop', u'arrang', u'cardwel', u'resid']
[u'fraud', u'accus', u'claim', u'royal', u'heritag']
[u'french', u'mull', u'youth', u'chang']
[u'fund', u'help', u'turn', u'feedlot', u'manur', u'energi']
[u'game', u'boss', u'close', u'ceremoni', u'giveaway']
[u'gold', u'lobbi', u'group', u'face', u'abolit', u'amid', u'industri']
[u'goulburn', u'pool', u'open', u'despit', u'water', u'shortag']
[u'govt', u'hint', u'fund', u'boost', u'mental', u'health']
[u'govt', u'seek', u'delay', u'open', u'lane', u'cove']
[u'govt', u'prompt', u'roadwork', u'time', u'frame']
[u'govt', u'quiz', u'qanta', u'mainten', u'plan']
[u'govt', u'support', u'reject', u'higher', u'truck', u'rego']
[u'govt', u'fund', u'studi', u'deep', u'mine', u'equip']
[u'govt', u'spend', u'mental', u'health', u'servic']
[u'govt', u'urg', u'reinstat', u'millmerran', u'stock', u'inspector']
[u'goward', u'mention', u'schultz', u'replac']
[u'grant', u'help', u'research', u'group', u'tackl', u'indigen']
[u'greenpeac', u'want', u'ocean', u'protect']
[u'hama', u'leader', u'stand', u'arm', u'resist']
[u'health', u'benefit', u'flow', u'child', u'obes', u'studi']
[u'health', u'servic', u'promot', u'financi', u'progress']
[u'heat', u'victori', u'johnson', u'batman']
[u'helicopt', u'clip', u'powerlin', u'crash']
[u'holi', u'mile', u'review', u'creat', u'tenant', u'worri']
[u'hope', u'honeysuckl', u'park']
[u'howard', u'outlin', u'cyclon', u'relief', u'packag']
[u'hunt', u'echuca', u'arsonist']
[u'iemma', u'snub', u'upset', u'asbesto', u'campaign']
[u'india', u'win', u'battl', u'super', u'women']
[u'industri', u'fear', u'tourism', u'slump', u'amid', u'cyclon', u'disast']
[u'inflat', u'fear', u'push', u'market']
[u'ingal', u'take', u'smart', u'approach', u'supercar', u'season']
[u'iraqi', u'resid', u'bodi', u'video', u'raid']
[u'urg', u'meatwork', u'lockout', u'illeg']
[u'iron', u'compani', u'sign', u'china']
[u'jamaica', u'look', u'cleansweep']
[u'jam', u'hardi', u'contest']
[u'johnson', u'lead', u'aussi', u'charg']
[u'johnson', u'lead', u'aussi', u'charg']
[u'justic', u'reject', u'murder', u'spirit', u'defenc']
[u'kookaburra', u'head', u'semi']
[u'labour', u'council', u'launch', u'websit']
[u'nina', u'bring', u'beach', u'eros']
[u'lapierr', u'take', u'long', u'jump', u'bronz']
[u'latham', u'court', u'case', u'adjourn']
[u'lawrenc', u'appeal', u'bali', u'sentenc']
[u'liverpool', u'destroy', u'birmingham']
[u'local', u'govt', u'group', u'maintain', u'opposit', u'plan']
[u'local', u'crew', u'readi', u'help', u'cyclon', u'north']
[u'local', u'volunt', u'help', u'cyclon', u'victim']
[u'macarthur', u'river', u'expans', u'give', u'second', u'chang']
[u'mackay', u'region', u'readi', u'help', u'cyclon']
[u'magistr', u'convinc', u'porteous', u'unfit', u'face']
[u'arrest', u'attempt', u'murder']
[u'charg', u'rocki', u'kawana', u'rap']
[u'face', u'court', u'accus', u'teen', u'assault']
[u'mayor', u'offer', u'swim', u'centr', u'assur']
[u'maywald', u'back', u'saff', u'safe', u'seat', u'claim']
[u'medic', u'face', u'court', u'martial', u'iraq', u'protest']
[u'meet', u'focus', u'lithgow', u'futur']
[u'minist', u'defend', u'ambul', u'servic']
[u'minist', u'detail', u'detaine', u'life', u'skill', u'scheme']
[u'morwel', u'shooter', u'win', u'game', u'silver', u'malta']
[u'cast', u'doubt', u'opposit', u'region', u'claim']
[u'want', u'action', u'stop', u'anim', u'death']
[u'want', u'public', u'hous', u'overcrowd']
[u'push', u'market', u'mark']
[u'nation', u'food', u'agre', u'betta', u'milk', u'deal']
[u'netbal', u'face', u'reckon']
[u'water', u'restrict', u'loom']
[u'board', u'youth']
[u'sale']
[u'drama', u'jana', u'hurdl', u'heat']
[u'north', u'queensand', u'resid', u'await', u'ministeri', u'visit']
[u'north', u'west', u'record', u'meningococc', u'case']
[u'govt', u'propos', u'polic', u'schoolyard']
[u'govt', u'stand', u'firm', u'middl', u'school', u'start', u'date']
[u'communiti', u'angri', u'relief', u'effort']
[u'seek', u'indigen', u'phone', u'servic', u'upgrad']
[u'oakey', u'armi', u'chopper', u'help', u'cyclon', u'relief', u'effort']
[u'oneil', u'say', u'game', u'gold', u'career', u'highlight']
[u'opposit', u'want', u'bendigo', u'driver', u'centr']
[u'opposit', u'welcom', u'snub', u'higher', u'truck', u'rego']
[u'oversea', u'mainten', u'qanta']
[u'pair', u'charg', u'cannabi']
[u'pakistan', u'beat', u'lanka', u'secur', u'trophi', u'berth']
[u'papua', u'clash', u'toll', u'rise']
[u'announc', u'emerg', u'fund']
[u'awar', u'warn']
[u'assess', u'cyclon', u'damag']
[u'visit', u'cyclon', u'ravag']
[u'polic', u'appeal', u'help', u'assault', u'case']
[u'polic', u'deal', u'knockout', u'blow', u'game', u'drinker']
[u'policeman', u'face', u'court', u'burglari', u'extort']
[u'polic', u'probe', u'blair', u'loan', u'lordship']
[u'polic', u'probe', u'fatal', u'crash']
[u'polic', u'search', u'miss', u'sierra', u'leon', u'athlet']
[u'polic', u'urg', u'bail', u'pair', u'accus', u'servic']
[u'polic', u'urg', u'explain', u'styx', u'oper']
[u'probe', u'begin', u'claim', u'soldier', u'kill', u'iraqi']
[u'progress', u'associ', u'back', u'rate', u'rise', u'plan']
[u'protest', u'dump', u'dead', u'duck', u'outsid', u'offic']
[u'public', u'get', u'chanc', u'discuss', u'skate', u'park', u'plan']
[u'push', u'region', u'communiti', u'legal', u'centr']
[u'rabobank', u'open', u'cloncurri', u'main', u'street', u'offic']
[u'ralli', u'urg', u'xstrata', u'expans']
[u'rann', u'unveil', u'bench']
[u'rare', u'bladder', u'surgeri', u'prompt', u'cancer', u'warn']
[u'retir', u'prompt', u'recount', u'fail', u'candid']
[u'riot', u'polic', u'call', u'bulldog', u'game']
[u'rollison', u'beat', u'steeplechas', u'gold']
[u'move', u'ensur', u'indigen', u'site', u'protect']
[u'sarava', u'take', u'silver', u'aust']
[u'school', u'decis', u'end', u'learn', u'centr', u'fight']
[u'scientist', u'check', u'reef', u'cyclon', u'damag']
[u'abus', u'inquiri', u'need', u'fund']
[u'ship', u'subsidi', u'review']
[u'sledg', u'man', u'game', u'say', u'celtic', u'boss']
[u'smelter', u'worker', u'strike']
[u'speed', u'camera', u'rule', u'open', u'legal', u'challeng']
[u'steffensen', u'win', u'men', u'titl']
[u'steven', u'rue', u'lack', u'prepar']
[u'sting', u'target', u'busi', u'sell', u'children']
[u'stott', u'despoja', u'consid', u'quit', u'polit']
[u'stuart', u'count', u'go', u'wire']
[u'stubbl', u'burn', u'blaze', u'escap']
[u'support', u'grow', u'break', u'explor', u'plan']
[u'survey', u'show', u'wors', u'homeless', u'problem']
[u'swimmer', u'bitter', u'media', u'coverag', u'piper']
[u'farmer', u'cyclon', u'counterpart']
[u'task', u'forc', u'crack', u'illeg', u'tobacco']
[u'tasmania', u'celebr', u'multicultur', u'harmoni']
[u'push', u'maintain', u'freight', u'subsidi']
[u'teen', u'arrest', u'crime', u'spree']
[u'tendulkar', u'rule', u'odi']
[u'toll', u'rais', u'patrick', u'corp']
[u'torrenti', u'rain', u'hamper', u'cyclon', u'relief', u'effort']
[u'tourism', u'restrict', u'reason']
[u'turnbul', u'criticis', u'state', u'water', u'plan']
[u'ullrich', u'race', u'giro']
[u'outlin', u'farm', u'threat', u'water']
[u'report', u'call', u'mix', u'tribun']
[u'report', u'seek', u'action', u'solomon', u'child']
[u'warn', u'global', u'water', u'suppli', u'threat', u'worsen']
[u'urg', u'north', u'korea', u'resum', u'nuclear', u'talk']
[u'victorian', u'face', u'internet', u'hack', u'charg']
[u'vili', u'take', u'gold', u'shoot']
[u'violenc', u'surg', u'sudan']
[u'vote', u'halt', u'infight', u'birney']
[u'waff', u'joyc', u'decis']
[u'wast', u'plant', u'plan', u'worri', u'councillor']
[u'west', u'coast', u'player', u'wafl', u'game']
[u'wheat', u'consortium', u'submit', u'tender', u'iraq', u'contract']
[u'wheeler', u'take', u'silver', u'heptathlon']
[u'woman', u'fin', u'anim', u'cruelti']
[u'woman', u'jail', u'communiti', u'servic', u'failur']
[u'wrestl', u'champ', u'plead', u'guilti', u'drug', u'charg']
[u'xstrata', u'confirm', u'propos', u'expand']
[u'xstrata', u'continu', u'mcarthur', u'river', u'expans']
[u'zappavigna', u'fight', u'gavin', u'lightweight', u'semi', u'final']
[u'lot', u'billiton']
[u'kill', u'baghdad', u'bomb']
[u'timber', u'get', u'state', u'approv']
[u'aborigin', u'tracker', u'continu', u'search', u'trio']
[u'chief', u'call', u'arrest', u'footag', u'restrict']
[u'reach', u'cyclon', u'victim']
[u'forc', u'sink', u'pong', u'heroin', u'ship']
[u'alburi', u'secur', u'water', u'energi', u'conserv', u'fund']
[u'amphetamin', u'rise']
[u'angri', u'ararat', u'resid', u'fight', u'stop', u'soil', u'treatment']
[u'aussi', u'hurdl', u'final']
[u'aussi', u'martin', u'win', u'discus', u'final', u'throw']
[u'aussi', u'win', u'weightlift', u'gold']
[u'beatti', u'blame', u'legal', u'cyclon', u'recoveri']
[u'bentley', u'biscuit', u'fail', u'record']
[u'biodiesel', u'plant', u'open']
[u'blackbutt', u'bowler', u'star', u'australia']
[u'bladder', u'surgeri', u'techniqu', u'lead', u'cancer']
[u'blaze', u'destroy', u'cabinet', u'make', u'busi']
[u'bleak', u'futur', u'horticultur', u'industri']
[u'booki', u'odd', u'england', u'ash']
[u'bore', u'bureaucrat', u'beg', u'million', u'dollar', u'salvat']
[u'braham', u'urg', u'parent', u'work', u'irrkerlanty']
[u'brimbl', u'inquest', u'hear', u'evid']
[u'brisban', u'base', u'soldier', u'return', u'iraq']
[u'bronco', u'play', u'hunt', u'defect', u'talk']
[u'bush', u'pressur', u'afghanistan', u'christian', u'convert']
[u'sanction', u'papua', u'visa', u'grant']
[u'canada', u'claim', u'mountain', u'bike', u'gold']
[u'cannon', u'join', u'forc', u'casualti', u'list']
[u'capac', u'race', u'club', u'stormwat', u'pond', u'doubl']
[u'cattl', u'council', u'reliev', u'higher', u'truck', u'charg']
[u'children', u'kidnap', u'unicef']
[u'closer']
[u'closer', u'news']
[u'coach', u'input', u'rule', u'chang']
[u'collector', u'fin', u'import', u'rusti', u'grenad']
[u'compens', u'demand', u'outrag', u'cruis', u'victim', u'famili']
[u'cosgrov', u'lead', u'cyclon', u'clean']
[u'cost', u'council', u'build', u'label']
[u'council', u'say', u'seven', u'trade']
[u'council', u'employe', u'accus', u'assault', u'councillor']
[u'council', u'fight', u'increas', u'subdivis', u'size']
[u'council', u'give', u'final', u'approv', u'mayor', u'yard']
[u'council', u'offer', u'council', u'contract']
[u'council', u'seek', u'plan', u'talk', u'state', u'govt']
[u'council', u'plan', u'rate', u'rise']
[u'council', u'seek', u'set', u'asid', u'water']
[u'cyclist', u'shoot', u'chest']
[u'cyclon', u'wati', u'pose', u'immedi', u'threat']
[u'dairi', u'compani', u'compet', u'supplier']
[u'dairi', u'farmer', u'unhappi', u'price', u'rise']
[u'doubl', u'shoot', u'gold', u'australia']
[u'driver', u'quick', u'action', u'prevent', u'major', u'spill']
[u'driver', u'surviv', u'level', u'cross', u'crash']
[u'dubbo', u'royal', u'visit', u'fail', u'attract', u'intern']
[u'educ', u'dept', u'play', u'school', u'retent', u'figur']
[u'esper', u'fail', u'industri', u'park', u'plan']
[u'ceasefir', u'announc', u'caution']
[u'black', u'list', u'unsaf', u'airlin']
[u'expert', u'warn', u'global', u'warm', u'malaria', u'threat']
[u'packer', u'roar']
[u'feder', u'urg', u'understand', u'cyclon']
[u'fight', u'continu', u'preserv', u'styx', u'valley', u'tree']
[u'ant', u'gladston']
[u'servic', u'extend', u'bushfir', u'danger', u'period']
[u'firm', u'say', u'staff', u'take', u'care', u'collaps']
[u'fletcher', u'pitt', u'shot', u'gold']
[u'food', u'price', u'soar', u'cyclon', u'wake']
[u'museum', u'director', u'die']
[u'fresh', u'deal', u'save', u'milk', u'suppli', u'tasmanian']
[u'firm', u'await', u'feder', u'fund', u'decis']
[u'good', u'reason', u'middl', u'school', u'support', u'princip']
[u'goulburn', u'face', u'week', u'water']
[u'govt', u'apologis', u'latest', u'immigr', u'bungl']
[u'govt', u'apologis', u'wrong', u'detent']
[u'govt', u'defend', u'william', u'bush', u'centr', u'fund', u'delay']
[u'govt', u'deni', u'auditor', u'general', u'sack', u'claim']
[u'govt', u'deni', u'law', u'offer', u'unfair', u'dismiss', u'bypass']
[u'govt', u'move', u'prevent', u'indonesian', u'anger', u'papuan']
[u'govt', u'open', u'consul', u'near', u'gallipoli']
[u'govt', u'releas', u'ravensthorp', u'land']
[u'govt', u'say', u'drink', u'drive', u'penalti', u'tough']
[u'govt', u'say', u'forestri', u'privatis']
[u'govt', u'ignor', u'kimberley', u'hous', u'crisi', u'bishop', u'say']
[u'govt', u'lack', u'cooper', u'anger', u'investig']
[u'govt', u'watch', u'trauma', u'centr', u'fund']
[u'govt', u'understand', u'cyclon', u'relief', u'frustrat']
[u'govt', u'urg', u'preschool', u'train', u'children']
[u'grain', u'grower', u'meet', u'rudd', u'singl', u'desk']
[u'green', u'want', u'answer', u'cyanid', u'transport', u'question']
[u'hawk', u'stand', u'faction']
[u'health', u'dept', u'consid', u'coron', u'find']
[u'health', u'servic', u'financ', u'worri']
[u'heroin', u'smuggl', u'ship', u'sink', u'coast']
[u'hockeyroo', u'gold', u'medal', u'match']
[u'hodg', u'prim', u'bull']
[u'hope', u'govt', u'improv', u'kempsey', u'mental']
[u'hospit', u'look', u'address', u'budget', u'deficit']
[u'howard', u'pressur', u'cole', u'inquiri']
[u'howe', u'lead', u'local', u'trio', u'pole', u'vault', u'final']
[u'immigr', u'dept', u'slam', u'detent']
[u'indian', u'weightlift', u'test', u'posit', u'drug']
[u'india', u'set', u'final', u'date', u'hockeyroo']
[u'india', u'gandhi', u'quit', u'parliament']
[u'injuri', u'setback', u'roo', u'young']
[u'inmat', u'stab', u'death', u'prison']
[u'intellig', u'knight', u'bulldog', u'polic']
[u'iraq', u'wheat', u'sale', u'track', u'consortium']
[u'jackson', u'lead', u'aussi', u'basketbal', u'titl']
[u'johnson', u'finish', u'fourth']
[u'johnson', u'final']
[u'john', u'mileston', u'knight']
[u'kating', u'jail', u'demolish']
[u'kenya', u'kipchirchir', u'win', u'men', u'gold']
[u'materi', u'examin', u'dfat', u'review']
[u'landslid', u'kill', u'indonesian']
[u'larri', u'relief', u'effort', u'step', u'appeas', u'local']
[u'local', u'anger', u'prompt', u'enhanc', u'larri', u'relief', u'effort']
[u'local', u'expertis', u'help', u'cyclon', u'victim']
[u'lose', u'gear', u'curb', u'spacewalk']
[u'major', u'supermarket', u'exclud', u'code']
[u'accus', u'child', u'assault']
[u'charg', u'disord', u'behaviour', u'flight']
[u'face', u'court', u'accus', u'chequebook', u'fraud']
[u'face', u'court', u'charg', u'robinval', u'murder']
[u'jail', u'adelaid', u'rap']
[u'plead', u'guilti', u'yacht', u'theft']
[u'appear', u'court', u'heroin', u'smuggl', u'charg']
[u'face', u'attempt', u'murder', u'charg', u'south']
[u'market', u'continu', u'record', u'high']
[u'maywald', u'keep', u'river', u'murray', u'role']
[u'mccain', u'food', u'pressur', u'deliv']
[u'milk', u'price', u'hike', u'avoid']
[u'minchin', u'deni', u'interfer', u'state', u'polit']
[u'minist', u'stand', u'easter', u'trade', u'ban']
[u'miss', u'famili', u'walk', u'remot', u'communiti']
[u'mokbel', u'trial', u'continu', u'despit', u'defenc', u'team']
[u'molik', u'readi', u'comeback']
[u'moor', u'return', u'chelsea', u'beat', u'newcastl']
[u'mountain', u'bike', u'heartbreak', u'jongewaard']
[u'rais', u'worri', u'snowi', u'flow', u'liabil']
[u'offic', u'target', u'anti', u'duck', u'shoot']
[u'nation', u'water', u'initi', u'lack', u'urgenc', u'clear']
[u'netbal', u'track', u'bypass', u'silver', u'fern']
[u'netbal', u'clash', u'england', u'semi']
[u'newberi', u'make', u'splash', u'second', u'game', u'gold']
[u'marron', u'plant', u'boost', u'export', u'potenti']
[u'task', u'forc', u'focus', u'north', u'west', u'issu']
[u'zealand', u'cyclist', u'assault', u'claim']
[u'northcot', u'shoot', u'random', u'polic']
[u'storm', u'damag', u'report']
[u'communiti', u'warn', u'immin', u'coastal', u'biosecur']
[u'flower', u'grower', u'meet', u'game', u'shortfal']
[u'incid', u'assault', u'team', u'boss']
[u'opposit', u'demand', u'immigr', u'royal', u'commiss']
[u'opposit', u'seek', u'town', u'status', u'alic']
[u'opposit', u'urg', u'forens', u'servic']
[u'oversea', u'nurs', u'recruit', u'state', u'shortag']
[u'pair', u'charg', u'drug']
[u'papuan', u'refuge', u'grant', u'asylum']
[u'papuan', u'grant', u'temporari', u'visa']
[u'papuan', u'hide', u'protest']
[u'parker', u'accept', u'bennett', u'realiti', u'check']
[u'penfold', u'seek', u'opposit', u'frontbench', u'spot']
[u'pittman', u'silenc', u'detractor']
[u'plan', u'aim', u'boost', u'dairi', u'profit']
[u'spotlight', u'cole', u'inquiri']
[u'face', u'charg', u'infect']
[u'polic', u'examin', u'letter', u'search', u'tongeren']
[u'polic', u'hand', u'fourth', u'bomb', u'suspect', u'prosecutor']
[u'polic', u'closer', u'find', u'miss', u'woman']
[u'polic', u'interview', u'game', u'volunt']
[u'polic', u'wont', u'investig', u'athlet', u'alleg', u'assault']
[u'pong', u'sink', u'send', u'strong', u'messag', u'ruddock']
[u'power', u'extend', u'white', u'contract']
[u'prawn', u'fisher', u'logbook', u'studi']
[u'premier', u'hear', u'region', u'busi', u'issu']
[u'prime', u'minist', u'visit', u'nowra', u'april']
[u'princ', u'prais', u'support', u'youth', u'award', u'program']
[u'produc', u'phil', u'spector', u'murder', u'trial', u'postpon']
[u'prosecutor', u'seek', u'jail', u'term', u'trader']
[u'rais', u'question']
[u'public', u'urg', u'report', u'suspici', u'activ']
[u'safeti', u'sale']
[u'question', u'rais', u'hide', u'pool', u'detail']
[u'rain', u'help', u'boost', u'water', u'suppli']
[u'rain', u'help', u'qlder']
[u'raider', u'arrest', u'princ', u'highway']
[u'rann', u'cabinet', u'swear']
[u'ratepay', u'quiz', u'theatr', u'levi']
[u'retir', u'judg', u'tell', u'continu', u'inquiri']
[u'tinto', u'move', u'ahead', u'pleasant', u'plan']
[u'russel', u'miss', u'mark', u'doubl', u'trap', u'final']
[u'season', u'citi', u'cole']
[u'seven', u'charg', u'heroin', u'bust']
[u'simpson', u'stun', u'campbel']
[u'singapor', u'fire', u'line', u'netbal', u'seek']
[u'situat', u'get', u'better', u'iraq', u'howard', u'say']
[u'smelter', u'oper', u'assess', u'stoppag', u'effect']
[u'soldier', u'give', u'date', u'ration', u'cyclon']
[u'south', u'african', u'mental', u'suspect', u'say', u'warn']
[u'springborg', u'back', u'tougher', u'sentenc']
[u'statist', u'high', u'number', u'unsentenc']
[u'strand', u'yachtsman', u'rescu']
[u'suicid', u'report', u'spark', u'copycat', u'research', u'find']
[u'grower', u'hope', u'attract', u'intern']
[u'power', u'station', u'close', u'year']
[u'teen', u'seek', u'court', u'permiss', u'marri']
[u'tey', u'bros', u'industri', u'continu']
[u'hostag', u'free', u'iraq']
[u'time', u'run', u'waterfront', u'plan']
[u'tinnitus', u'interfer', u'tough', u'mental', u'task']
[u'off', u'bulldog', u'polic', u'crackdown']
[u'athlet', u'region', u'tour']
[u'tourki', u'roast', u'canadian', u'final', u'dive']
[u'tour', u'oper', u'warn', u'email', u'book', u'scam']
[u'trucki', u'issu', u'overtak', u'warn']
[u'program', u'number', u'graduat']
[u'indict', u'colombian', u'rebel', u'leader', u'cocain']
[u'win', u'men', u'hurdl']
[u'victorian', u'polic', u'search', u'miss', u'game', u'athlet']
[u'volunt', u'arriv', u'help', u'cyclon', u'victim']
[u'banana', u'head', u'interst']
[u'wati', u'expect', u'bring', u'wave']
[u'wheat', u'meet', u'share', u'inform']
[u'wingecarribbe', u'council', u'retrench', u'staff']
[u'wood', u'go', u'miss', u'sawgrass']
[u'world', u'forum', u'call', u'local', u'govern', u'role']
[u'young', u'blitz', u'golden', u'bear', u'record']
[u'kill', u'wound', u'afghan', u'arm', u'dump', u'blast']
[u'abandon', u'yacht', u'recov']
[u'abar', u'warn', u'intern', u'competit']
[u'access', u'clean', u'drink', u'water', u'issu', u'studi', u'find']
[u'account', u'jail', u'steal']
[u'govt', u'question', u'feder', u'preschool', u'plan']
[u'sign', u'water', u'agreement']
[u'water', u'save', u'trial', u'perman']
[u'dismiss', u'leagu', u'poach', u'specul']
[u'asbesto', u'remov', u'bowral', u'hospit']
[u'aussi', u'diver', u'synchro', u'gold']
[u'aussi', u'final']
[u'aussi', u'rendel', u'clinch', u'hammer', u'gold']
[u'aussi', u'bat', u'durban']
[u'aussi', u'skipper', u'hand', u'babi', u'leav']
[u'aussi', u'recov', u'earli', u'loss', u'hayden']
[u'aussi', u'bronz', u'men', u'synchro', u'springboard']
[u'aussi', u'tabl', u'tenni', u'semi']
[u'australian', u'soldier', u'injur', u'afghanistan']
[u'secretari', u'unabl', u'locat', u'document']
[u'ballarat', u'sign', u'india', u'agreement']
[u'beazley', u'releas', u'unfair', u'dismiss', u'polici']
[u'birney', u'dump', u'liber', u'leader']
[u'boomer', u'gold', u'thriller']
[u'brack', u'talk', u'game', u'benefit']
[u'brisban', u'woman', u'jail', u'drink', u'drive', u'accid']
[u'british', u'high', u'commiss', u'happi', u'meet', u'hickss', u'father']
[u'build', u'work', u'begin', u'buddhist', u'shrine']
[u'bull', u'snare', u'earli', u'wicket']
[u'bushrang', u'bat', u'gabba']
[u'busselton', u'beachfront', u'campsit', u'review']
[u'canberra', u'teen', u'rejuven', u'bushfir', u'ravag', u'kambah']
[u'cannabi', u'link', u'lung', u'diseas']
[u'owner', u'urg', u'pet']
[u'cave', u'standbi', u'water', u'rise', u'kimberley']
[u'secur', u'camera', u'plan', u'take', u'step', u'forward']
[u'cement', u'australia', u'take', u'cornwal', u'coal', u'market']
[u'cheat', u'alleg', u'light', u'problem', u'badminton']
[u'chines', u'fish', u'boat', u'catch', u'australian', u'water']
[u'claim', u'local', u'council', u'marginalis', u'state', u'govt']
[u'closer', u'news']
[u'closer', u'news']
[u'coast', u'basketbal', u'score', u'game', u'gold']
[u'concern', u'air', u'grow', u'town', u'camp', u'popul']
[u'connolli', u'complet', u'jigsaw', u'puzzl']
[u'constitut', u'challeng', u'launch', u'brimbl']
[u'cosgrov', u'commit', u'innisfail']
[u'cosgrov', u'prais', u'cyclon', u'relief', u'effort']
[u'cosgrov', u'tour', u'devast', u'innisfail']
[u'cosgrov', u'unveil', u'reconstruct', u'plan']
[u'councillor', u'show', u'support']
[u'countri', u'allianc', u'elect', u'irrig', u'mildura', u'branch']
[u'cruis', u'ship', u'death', u'inquest', u'adjourn']
[u'halt', u'brick', u'product', u'maitland', u'facil']
[u'cyclon', u'victim', u'welcom', u'cosgrov']
[u'cyclon', u'wati', u'prompt', u'weather', u'warn', u'northern']
[u'dairi', u'farmer', u'need', u'tasmania']
[u'dairi', u'industri', u'ralli', u'produc']
[u'deak', u'captur', u'walk', u'doubl']
[u'deal', u'pave', u'coral', u'expans']
[u'educ', u'centr', u'continu', u'warragul', u'leongatha']
[u'educ', u'union', u'call', u'plan', u'strike']
[u'elder', u'funer', u'spark', u'alcohol', u'agreement']
[u'emerg', u'market', u'help', u'grape', u'grower']
[u'nurs', u'disput', u'sight']
[u'energi', u'firm', u'hop', u'power', u'station', u'green', u'light']
[u'agre', u'belarus', u'sanction']
[u'consid', u'valu', u'contract', u'immigr']
[u'chief', u'approv', u'iraq', u'payment', u'despit']
[u'extra', u'polic', u'beef', u'secur', u'funer']
[u'farmer', u'face', u'evacu', u'floodwat', u'rise']
[u'farmer', u'support', u'singl', u'desk', u'export']
[u'farmer', u'sign', u'save', u'rare', u'cocki']
[u'fear', u'compo', u'payment', u'restrict', u'farmer', u'borrow']
[u'feder', u'govt', u'offer', u'highway', u'upgrad', u'fund']
[u'time', u'entrant', u'win', u'archibald', u'prize']
[u'forecast', u'close', u'watch', u'tropic']
[u'forestri', u'tasmania', u'wont', u'vilifi', u'worker', u'defac']
[u'chief', u'front', u'cole', u'inquiri']
[u'foster', u'hylton', u'win', u'hurdl', u'mclellan', u'fall']
[u'sierra', u'leon', u'athlet', u'miss']
[u'french', u'student', u'protest', u'turn', u'violent']
[u'time', u'polic', u'make', u'impact', u'desert', u'communiti']
[u'fungus', u'threaten', u'frog']
[u'game', u'chief', u'confirm', u'indian', u'dope', u'test']
[u'game', u'distanc', u'walker', u'disqualifi']
[u'game', u'offici', u'deni', u'dope', u'cover']
[u'game', u'organis', u'review', u'test', u'procedur']
[u'gang', u'rapist', u'sentenc']
[u'global', u'warm', u'help', u'spread', u'mossi', u'diseas']
[u'govt', u'announc', u'board', u'restructur']
[u'govt', u'deni', u'tri', u'control', u'univers']
[u'govt', u'act', u'earlier', u'measl']
[u'govt', u'remov', u'abc', u'staff', u'elect', u'director']
[u'group', u'say', u'murray', u'water', u'restrict', u'avoid']
[u'safe', u'rip', u'wall', u'steal']
[u'haddril', u'race', u'clock']
[u'hamilton', u'smith', u'rule', u'tilt', u'liber']
[u'handwrit', u'declin', u'studi']
[u'health', u'dept', u'chief', u'resign']
[u'hodg', u'make', u'queensland']
[u'hooker', u'down', u'markov', u'pole', u'vault']
[u'horneri', u'confid', u'wetland', u'safe']
[u'howard', u'conced', u'inquiri', u'cooper', u'delay']
[u'howard', u'defend', u'inquiri', u'cooper', u'delay']
[u'hurrican', u'beat', u'shark']
[u'india', u'call', u'peac', u'treati', u'pakistan']
[u'indonesian', u'ambassador', u'recal']
[u'indonesia', u'protest', u'australia', u'papua', u'visa', u'decis']
[u'indonesia', u'recal', u'ambassador', u'papuan', u'decis']
[u'indonesia', u'recal', u'aust', u'ambassador']
[u'japan', u'court', u'order', u'nuclear', u'reactor', u'close']
[u'jewel', u'lead', u'victorian', u'fight']
[u'judg', u'find', u'turf', u'club', u'neglig']
[u'kenya', u'central', u'bank', u'head', u'face', u'corrupt', u'charg']
[u'kenya', u'ochichi', u'turn', u'silver', u'gold']
[u'kerkow', u'win', u'men', u'lawn', u'bowl', u'gold']
[u'knight', u'outgun', u'bulldog']
[u'kookaburra', u'play', u'pakistan', u'gold']
[u'labor', u'get', u'green', u'prefer', u'gaven', u'elect']
[u'lake', u'blue', u'green', u'alga', u'clear']
[u'largest', u'australian', u'biodiesel', u'plant', u'launch']
[u'larri', u'reduc', u'coral', u'bleach', u'expert', u'say']
[u'laza', u'urg', u'blue', u'stay', u'posit']
[u'leaki', u'pipe', u'close', u'tasmanian', u'hydro', u'power', u'station']
[u'liber', u'deputi', u'leader', u'leav', u'polit']
[u'live', u'export', u'campaign', u'improv', u'welfar']
[u'love', u'furyk', u'sawgrass', u'pace', u'allenbi', u'tie']
[u'magistr', u'want', u'remot', u'court', u'sit']
[u'die', u'cart', u'flip']
[u'fin', u'child', u'porn', u'offenc']
[u'injur', u'explos']
[u'plead', u'guilti', u'murder', u'woman', u'daughter']
[u'question', u'robberi', u'sexual', u'assault']
[u'charg', u'crash', u'calder', u'highway']
[u'face', u'court', u'accus', u'northcliff', u'road', u'rage']
[u'market', u'strong', u'despit', u'dollar', u'declin']
[u'melt', u'sheet', u'hasten', u'rise', u'studi']
[u'guilti', u'drink', u'spike']
[u'seek', u'avoid', u'give', u'evid', u'cruis', u'ship']
[u'minist', u'wont', u'rule', u'rural', u'ambul', u'probe']
[u'miss', u'man', u'mother', u'support', u'tongeren', u'claim']
[u'moodi', u'review', u'push', u'share']
[u'council', u'staff', u'readi', u'offer', u'cyclon']
[u'mosqu', u'blast', u'kill']
[u'moy', u'back', u'cahil', u'turn', u'tabl', u'liverpool']
[u'crab', u'fisheri', u'chang', u'aim', u'rebuild', u'stock']
[u'murali', u'give', u'take', u'wicket']
[u'natur', u'resourc', u'hear', u'pool', u'site', u'option']
[u'water', u'plant', u'improv', u'qualiti', u'river']
[u'chang', u'papua', u'recognit', u'stanc', u'downer']
[u'minist', u'reject', u'resign']
[u'nurs', u'await', u'decis', u'manslaught', u'trial']
[u'economi', u'figur', u'hint', u'recess']
[u'offic', u'send', u'reliev', u'exhaust', u'colleagu']
[u'lansdown', u'river', u'bridg', u'dismantl']
[u'opera', u'hous', u'success', u'replic', u'keat']
[u'opposit', u'rebuild']
[u'oroton', u'post', u'profit', u'despit', u'marc', u'poor']
[u'parent', u'concern', u'countri', u'school', u'servic']
[u'parent', u'protest', u'middl', u'school', u'plan']
[u'parent', u'shouldnt', u'forc', u'send', u'kid']
[u'passeng', u'kill', u'highway', u'crash']
[u'pastoralist', u'worri', u'fund', u'assist']
[u'peter', u'perfect', u'help', u'waratah', u'thrash', u'blue']
[u'pilot', u'tell', u'inquest', u'unstopp']
[u'outrag', u'afghan', u'christian', u'convert', u'case']
[u'polic', u'appeal', u'help', u'miss', u'girl']
[u'polic', u'dispers', u'protest', u'belarus']
[u'polic', u'increas', u'morn', u'patrol', u'assault']
[u'polic', u'hous', u'blaze', u'victim']
[u'polic', u'prais', u'citizen', u'arrest']
[u'polic', u'seek', u'famili', u'identifi', u'dead', u'sailor']
[u'polic', u'hold', u'intern', u'investig', u'coast']
[u'pong', u'sink', u'deterr', u'drug', u'traffick']
[u'propos', u'link', u'road', u'govern']
[u'public', u'chanc', u'hospit', u'concern']
[u'qanta', u'worker', u'protest', u'job']
[u'council', u'continu', u'effici', u'talk']
[u'rain', u'contribut', u'toddler', u'road', u'death']
[u'reconstruct', u'chief', u'cosgrov', u'tour', u'devast']
[u'redmond', u'compet', u'leadership']
[u'report', u'clear', u'polic', u'student', u'death']
[u'research', u'find', u'indigen', u'educ', u'stagnant']
[u'research', u'focus', u'merino', u'meat', u'breed']
[u'resid', u'busi', u'flood', u'levi']
[u'resid', u'urg', u'consid', u'onslow', u'enhanc']
[u'resolut', u'loom', u'tey', u'bros', u'lockout']
[u'return', u'south', u'park', u'chef', u'score', u'rat']
[u'rooney', u'wont', u'tempt', u'world', u'fate']
[u'rule', u'head', u'galway']
[u'rural', u'job', u'resort', u'migrant', u'agent']
[u'ryde', u'redevelop', u'propos', u'approv']
[u'barley', u'grower', u'vote', u'singl', u'desk']
[u'sailor', u'grate', u'start', u'chanc']
[u'thiev', u'marron', u'poach']
[u'scientist', u'bring', u'student', u'speed']
[u'score', u'kill', u'somali', u'battl']
[u'scott', u'dedic', u'gold', u'larri', u'victim']
[u'scud', u'advanc', u'miami']
[u'search', u'spark', u'travel', u'safeti', u'plea']
[u'build', u'contract', u'earn', u'million']
[u'seven', u'kill', u'baghdad']
[u'shire', u'budget', u'surplus', u'year']
[u'shire', u'conduct', u'effici', u'servic', u'review']
[u'shirt', u'aussi', u'kerkow', u'win', u'gold']
[u'silver', u'line', u'mark']
[u'skaif', u'snare', u'adelaid', u'pole']
[u'smith', u'stay', u'brumbi']
[u'steal', u'generat', u'film', u'premier', u'adelaid']
[u'mammal', u'risk', u'studi']
[u'tassi', u'rat', u'island', u'destin']
[u'taxi', u'driver', u'nab', u'centrelink', u'fraud', u'crackdown']
[u'thompson', u'set', u'long', u'jump', u'record']
[u'town', u'isol', u'downpour', u'close', u'highway']
[u'townsvill', u'reconnect', u'burdekin', u'water']
[u'transport', u'firm', u'fin', u'fatal', u'road', u'crash']
[u'twilight', u'beach', u'popular']
[u'phone', u'habit', u'strip', u'bare']
[u'extend', u'afghanistan', u'mission', u'mandat']
[u'uranium', u'explor', u'float']
[u'varieti', u'store', u'suffer', u'smoke', u'damag', u'arson', u'attack']
[u'wallabi', u'welcom', u'gasnier', u'switch', u'mortlock']
[u'resourc', u'sector', u'grow', u'near']
[u'watch', u'patholog', u'servic', u'accredit', u'loss']
[u'wati', u'forc', u'beach', u'close']
[u'weather', u'condit', u'eas', u'western']
[u'weather', u'worri', u'mooloolaba', u'triathlon']
[u'weather', u'worri', u'triathlon']
[u'western', u'hostag', u'free', u'iraq']
[u'woman', u'say', u'sorri', u'gambier', u'arson', u'attack']
[u'fishermen', u'miss', u'boat', u'sink']
[u'hospitalis', u'balconi', u'collaps']
[u'abba', u'eye', u'isra', u'peac', u'deal']
[u'board', u'decis', u'welcom']
[u'aborigin', u'prepar', u'remain', u'return']
[u'accc', u'close', u'indigen', u'probe']
[u'ancient', u'skull', u'look', u'ancestor']
[u'argentina', u'mark', u'dirti', u'anniversari']
[u'asylum', u'seeker', u'case', u'threaten', u'indon', u'relat']
[u'aussi', u'helm', u'destroy', u'despati', u'sweep']
[u'aussi', u'jone', u'take', u'tripl', u'jump', u'bronz']
[u'aussi', u'kiwi', u'netbal', u'rematch']
[u'aussi', u'sizzl', u'england', u'falter']
[u'aussi', u'slip', u'powel', u'power', u'jamaica', u'gold']
[u'aussi', u'women', u'bronz']
[u'aust', u'indon', u'relat', u'strain', u'amid', u'visa', u'disput']
[u'australian', u'medallist', u'return', u'irregular', u'drug', u'test']
[u'australia', u'seal', u'controversi', u'relay', u'doubl']
[u'australia', u'rhythmic', u'team', u'bronz']
[u'australia', u'silver', u'bronz', u'men', u'javelin']
[u'barton', u'take', u'shoot', u'silver']
[u'beatti', u'deni', u'cyclon', u'relief', u'chao']
[u'beatti', u'approv', u'rat', u'fall']
[u'beatti', u'say', u'cyclon', u'relief', u'effort', u'chao']
[u'beatti', u'busi', u'worri', u'poll']
[u'beefi', u'defunct', u'freddi', u'king', u'botham']
[u'bird', u'kill', u'cambodian', u'girl']
[u'birney', u'dump', u'fail', u'infight']
[u'blair', u'arriv', u'melbourn']
[u'boswel', u'rival', u'lose', u'preselect', u'tussl']
[u'drown']
[u'bull', u'bright', u'start', u'chase']
[u'bushrang']
[u'canberra', u'plan', u'blueprint', u'award']
[u'central', u'african', u'face', u'starvat']
[u'cheetah', u'overcom', u'red', u'scrappi', u'contest']
[u'cheney', u'keep', u'caffein', u'free']
[u'christian', u'convert', u'spar', u'death', u'penalti']
[u'closer']
[u'closer']
[u'controversi', u'surround', u'archibald', u'winner']
[u'cosgrov', u'begin', u'cyclon', u'clean']
[u'council', u'warn', u'law']
[u'custom', u'boat', u'sail', u'ghost', u'ship']
[u'cyclon', u'relief', u'effort', u'chao', u'beatti']
[u'cyclon', u'relief', u'team', u'disast', u'power', u'extend']
[u'death', u'mar', u'ralli', u'catalunya', u'loeb', u'take', u'control']
[u'doubt', u'cast', u'omega', u'benefit']
[u'earthquak', u'jolt', u'southern', u'iran']
[u'england', u'oust', u'kiwi', u'tiebreak', u'hockey']
[u'england', u'amateur', u'come', u'fight']
[u'impos', u'sanction', u'belarus']
[u'north', u'mend', u'cosgrov']
[u'fear', u'surg', u'illeg', u'chines', u'fish']
[u'fletcher', u'pitt', u'gold', u'box']
[u'flood', u'cut', u'kimberley', u'town']
[u'flood', u'wash', u'kimberley', u'road']
[u'rebel', u'contest', u'congo', u'elect']
[u'french', u'leader', u'fail', u'agre', u'job', u'plan']
[u'game', u'offici', u'help', u'india', u'drug']
[u'gangmast', u'guilti', u'manslaught']
[u'gangmast', u'guilti', u'shellfish', u'picker', u'death']
[u'seed', u'stanc', u'draw', u'greenpeac']
[u'googl', u'rise', u'lift', u'stock']
[u'govt', u'overse', u'tsunami', u'warn', u'extens']
[u'grinham', u'kneipp', u'combo', u'squash', u'final']
[u'gulf', u'ghost', u'ship', u'search', u'fail', u'unlock', u'mysteri']
[u'hickss', u'father', u'meet', u'ambassador']
[u'hiddink', u'quit', u'post']
[u'report', u'concern', u'best', u'address', u'inquest']
[u'hockeyroo', u'aveng', u'manchest', u'loss']
[u'howe', u'set', u'commonwealth', u'pole', u'vault', u'record']
[u'hudson', u'fire', u'hockeyroo', u'gold']
[u'huge', u'blast', u'rock', u'french', u'univers']
[u'india', u'mourn', u'loss', u'ancient', u'gift']
[u'indian', u'shooter', u'jung', u'miss', u'sixth', u'gold']
[u'intern', u'project', u'team', u'trial', u'superson']
[u'iraqi', u'leader', u'meet', u'amid', u'bloodsh']
[u'iraq', u'focus', u'blair', u'australia', u'visit']
[u'joint', u'exercis', u'test', u'emerg', u'crew']
[u'jone', u'carri', u'flag', u'close', u'ceremoni']
[u'lara', u'help', u'windi', u'solid', u'start']
[u'lawyer', u'probe', u'trochus', u'compens']
[u'liverpool', u'chelsea', u'meet', u'semi', u'final']
[u'log', u'protest', u'vow', u'stay', u'aloft']
[u'lownd', u'take', u'race', u'adelaid']
[u'maher', u'grind', u'queensland']
[u'maher', u'put', u'bull', u'command']
[u'charg', u'fatal']
[u'man', u'power', u'shark']
[u'maoist', u'kill']
[u'marijuana', u'link', u'earli', u'onset', u'lung', u'diseas']
[u'mauresmo', u'thrash', u'stosur', u'miami']
[u'mice', u'cell', u'stem', u'cell', u'share', u'similar', u'scientist']
[u'minist', u'claim', u'indonesian', u'militari', u'tortur']
[u'mortlock', u'sterl', u'play', u'seal', u'victori', u'brumbi']
[u'mottram', u'crash']
[u'nasa', u'end', u'spacewalk']
[u'nebo', u'hous', u'kill']
[u'strike', u'earli', u'south', u'africa']
[u'newberi', u'blackshaw', u'silver', u'bronz', u'springboard']
[u'dean', u'aim', u'boost', u'congreg']
[u'photo', u'reveal', u'mar', u'channel']
[u'nois', u'rais', u'heart', u'attack', u'risk']
[u'plan', u'sierra', u'leon', u'say', u'game', u'chief']
[u'foreign', u'dentist']
[u'fear', u'illeg', u'fish', u'influx']
[u'opposit', u'plan', u'tax']
[u'offici', u'order', u'peopl', u'cyclon', u'damag']
[u'opposit', u'welcom', u'afp', u'report']
[u'otago', u'defenc', u'lead', u'cat']
[u'owen', u'undergo', u'surgeri']
[u'plane', u'crash', u'bankstown', u'airport']
[u'polic', u'offic', u'hospitalis', u'crash']
[u'polic', u'power', u'extend', u'cyclon', u'zone']
[u'polic', u'presenc', u'prevent', u'footi', u'violenc']
[u'pont', u'earn', u'advantag', u'australia']
[u'pont', u'play', u'bradman', u'record']
[u'power', u'restor', u'part', u'cyclon', u'ravag', u'area']
[u'price', u'right', u'english', u'fighter', u'gold']
[u'protea', u'stage', u'late', u'fight', u'durban']
[u'qlds', u'speaker', u'suffer', u'brain', u'tumour']
[u'quaid', u'sue', u'brokeback', u'salari']
[u'quick', u'win', u'pistol', u'bronz']
[u'rain', u'sightseer', u'hamper', u'cyclon', u'relief']
[u'rickett', u'boswel', u'squash', u'final']
[u'roadsid', u'bomb', u'kill']
[u'rossi', u'set', u'pace', u'spain']
[u'russia', u'deni', u'iraq', u'intellig', u'claim']
[u'russia', u'tell', u'iraq', u'plan', u'report']
[u'school', u'caus', u'damag']
[u'school', u'damag', u'redevelop', u'build']
[u'scott', u'plan', u'aggress', u'major', u'approach']
[u'scramjet', u'team', u'happi', u'woomera', u'flight']
[u'senat', u'panel', u'hear', u'bush', u'censur']
[u'singapor', u'gold', u'guarante', u'tabl', u'tenni']
[u'slenderton', u'claim', u'rule', u'fals']
[u'somali', u'clash', u'toll', u'rise']
[u'spacex', u'privat', u'rocket', u'flight', u'bust']
[u'lanka', u'lose', u'vaa', u'test']
[u'student', u'share', u'propos', u'alarm', u'union']
[u'sydney', u'bomb', u'plot', u'accus', u'face', u'court']
[u'sydney', u'woman', u'charg', u'alleg', u'bomb', u'plot']
[u'talk', u'fail', u'eas', u'french', u'tension']
[u'teen', u'court', u'alleg', u'home', u'invas', u'rape']
[u'tension', u'grow', u'christian', u'convert', u'case']
[u'terri', u'hick', u'meet', u'british', u'high', u'commission']
[u'thousand', u'march', u'mexican', u'wall', u'plan']
[u'thousand', u'protest', u'disput', u'elect', u'belarus']
[u'australian', u'dive', u'final']
[u'thurston', u'lead', u'cowboy', u'rout']
[u'tortois', u'die', u'age']
[u'transmitt', u'reveal', u'croc', u'territori', u'natur']
[u'charg', u'alleg', u'abduct']
[u'plung', u'murray']
[u'kill', u'crash']
[u'darfur', u'peacekeep', u'plan', u'speed']
[u'food', u'inquiri', u'extend']
[u'threaten', u'econom', u'sanction', u'belarus']
[u'iran', u'discuss', u'iraq', u'rice']
[u'join', u'belarus', u'sanction']
[u'visa', u'decis', u'undermin', u'indonesian', u'relat']
[u'visa', u'huff', u'show', u'contempt', u'brown']
[u'waratah', u'lose', u'roger', u'injuri']
[u'warrior', u'break', u'christchurch', u'duck']
[u'wati', u'edg', u'australian', u'coast']
[u'fight', u'shop', u'centr', u'union']
[u'woman', u'abduct', u'rape', u'investig']
[u'crash', u'market', u'stall']
[u'seattl', u'parti', u'shoot']
[u'abba', u'warn', u'hama', u'agenda']
[u'consid', u'biospher', u'reserv']
[u'actu', u'urg', u'labor', u'attent']
[u'afghan', u'convert', u'case', u'disgust']
[u'aggress', u'kalli', u'power', u'protea', u'stump']
[u'arab', u'state', u'assur', u'hama']
[u'arrest', u'doctor', u'assault']
[u'asbesto', u'fear', u'complic', u'cyclon', u'clean']
[u'asbesto', u'fear', u'cyclon', u'relief', u'effort']
[u'aussi', u'hayman', u'claim', u'shock', u'road', u'race', u'gold']
[u'aussi', u'fall', u'short', u'time', u'game', u'record']
[u'aussi', u'take', u'bronz', u'canadian', u'match', u'game']
[u'balconi', u'collaps', u'investig']
[u'bangladeshi', u'athlet', u'charg', u'assault']
[u'barcelona', u'hold', u'malaga']
[u'bat', u'win', u'road', u'race', u'gold']
[u'belarussian', u'polic', u'break', u'poll', u'protest']
[u'spend', u'host', u'citi', u'say', u'game']
[u'bronco', u'eel']
[u'bull', u'bat', u'bushrang', u'final']
[u'cabooltur', u'hospit', u'offer', u'extravag']
[u'capirossi', u'pole', u'rossi', u'struggl', u'spain']
[u'accid', u'kill', u'canberra']
[u'church', u'figur', u'call', u'australian', u'help', u'papua']
[u'closer']
[u'closer']
[u'say', u'mottram', u'readi', u'challeng', u'kenyan']
[u'communiti', u'thank', u'live', u'lose', u'cyclon']
[u'countri', u'music', u'great', u'owen', u'die']
[u'cyclon', u'cut', u'macadamia', u'crop']
[u'cyclon', u'thanksgiv', u'servic', u'hold', u'innisfail']
[u'darwin', u'specialist', u'help', u'cyclon', u'victim']
[u'dragon', u'demolish', u'rabbitoh']
[u'drogba', u'doubl', u'get', u'blue', u'track']
[u'win', u'world', u'richest', u'race']
[u'england', u'gear', u'india', u'dayer']
[u'english', u'rugbi', u'deni', u'woodward', u'talk', u'claim']
[u'explos', u'sink', u'trawler', u'lankan', u'navi', u'boat']
[u'famili', u'member', u'question', u'toddler', u'death']
[u'lose', u'rain', u'colombo']
[u'flood', u'kimberley', u'road', u'remain']
[u'floodwat', u'survey', u'respons', u'disturb']
[u'forc', u'remain', u'winless', u'bull', u'loss']
[u'forster', u'girl', u'drown']
[u'break', u'youth', u'detent', u'centr']
[u'free', u'british', u'peac', u'activist', u'return', u'home']
[u'fuel', u'rebat', u'cyclon', u'busi']
[u'game', u'feder', u'name', u'weightlift', u'drug', u'probe']
[u'game', u'revel', u'encourag', u'live', u'sit']
[u'ghost', u'ship', u'navig', u'hazard']
[u'grinham', u'sister', u'doubl', u'gold']
[u'group', u'call', u'indonesia', u'tie', u'australia']
[u'henman', u'overcom', u'hewitt', u'hurdl']
[u'henzel', u'take', u'silver', u'men', u'singl', u'tabl', u'tenni']
[u'howard', u'discuss', u'possibl', u'execut', u'afghan']
[u'howard', u'understand', u'indonesia', u'visa', u'anger']
[u'human', u'skull', u'haiti']
[u'hussey', u'marshal', u'australia', u'middl', u'order']
[u'iaea', u'chief', u'urg', u'secur', u'council', u'reform']
[u'immigr', u'chang', u'spark', u'protest']
[u'innisfail', u'give', u'thank', u'live', u'spar']
[u'investig', u'differ', u'egypt', u'plane', u'crash']
[u'iraq', u'hostag', u'arriv', u'london']
[u'law', u'bite', u'immedi', u'union']
[u'kalli', u'hold', u'south', u'african', u'inning']
[u'kewel', u'stunner', u'settl', u'stormi', u'derbi']
[u'kookaburra', u'game', u'gold']
[u'kookaburra', u'laugh']
[u'labor', u'infight', u'stop', u'overhaul', u'loom']
[u'larg', u'lemon', u'dont', u'sour', u'cyprus']
[u'larri', u'open']
[u'larri', u'cost', u'beatti', u'say']
[u'leadership', u'hamper', u'minist']
[u'hallam', u'crown', u'badminton', u'king', u'queen']
[u'light', u'plane', u'crash', u'highway', u'near', u'hobart']
[u'liquor', u'law', u'aim', u'loutish', u'teen', u'crimin']
[u'live', u'export', u'econom', u'question']
[u'lower', u'hous', u'count', u'near']
[u'maher', u'love', u'torment', u'bushrang']
[u'charg', u'toddler', u'murder']
[u'sever', u'finger', u'roadsid']
[u'market', u'stall', u'crash', u'kill']
[u'melbourn', u'farewel', u'game', u'style']
[u'milan', u'close', u'juve', u'hold', u'roma']
[u'miss', u'sierra', u'leonean', u'urg', u'report', u'polic']
[u'motorbik', u'rider', u'die', u'great', u'ocean', u'crash']
[u'motorbik', u'troup', u'member', u'kill', u'post', u'crash']
[u'plan', u'trade', u'freez', u'visa', u'backstab']
[u'nation', u'promis', u'nerang', u'station']
[u'neighbourhood', u'disput', u'end', u'stab']
[u'nigeria', u'agre', u'extradit', u'taylor']
[u'nigeria', u'hand', u'indict', u'taylor']
[u'ocean', u'struggl', u'cope', u'greenhous', u'gas']
[u'omodei', u'offer', u'barnett', u'bench', u'spot']
[u'charg', u'window', u'smash', u'spree']
[u'papua', u'open']
[u'understand', u'indonesian', u'anger', u'papuan']
[u'podcast', u'revolutionis', u'radio', u'world']
[u'polic', u'car', u'damag', u'parti', u'violenc']
[u'polic', u'search', u'bundaberg', u'boy', u'killer']
[u'pope', u'ask', u'karzai', u'spare', u'convert']
[u'power', u'restor', u'cyclon', u'area']
[u'princ', u'charl', u'urg', u'religi', u'toler']
[u'protea', u'batsmen', u'falter', u'earli']
[u'protea', u'count', u'kalli']
[u'protest', u'march', u'bangkok', u'shop', u'district']
[u'ract', u'call', u'compulsori', u'drive', u'class']
[u'railcorp', u'conduct', u'asbesto', u'check']
[u'rare', u'nativ', u'bird', u'thrive', u'advers']
[u'refuge', u'flee', u'home', u'central', u'african', u'republ']
[u'report', u'fail', u'satisfi', u'victim', u'famili']
[u'rickett', u'boswel', u'silver']
[u'riot', u'polic', u'protest', u'clash', u'belarus']
[u'robber', u'grab', u'million', u'south', u'africa', u'airport', u'heist']
[u'rooster', u'trounc', u'raider']
[u'papuan', u'disturb', u'friendship']
[u'ryde', u'develop', u'ignor', u'local', u'concern']
[u'saleh', u'centuri', u'guid', u'bangladesh', u'whitewash']
[u'parliamentari', u'seat', u'finalis']
[u'scotland', u'usher', u'smoke']
[u'scott', u'crash', u'championship', u'content']
[u'silver', u'fern', u'gain', u'game', u'reveng']
[u'softwar', u'blame', u'perth', u'flight', u'mishap']
[u'death', u'prompt', u'review', u'safeti', u'regul']
[u'death', u'prompt', u'safeti', u'warn']
[u'squash', u'gold', u'australia', u'mix', u'doubl', u'pair']
[u'stamped', u'south', u'korean', u'amus', u'park', u'injur']
[u'stefaniak', u'highlight', u'court', u'administr', u'issu']
[u'stuart', u'highway', u'crash', u'kill']
[u'student', u'leader', u'snub', u'french']
[u'sydney', u'women', u'ralli', u'racial', u'harmoni']
[u'territorian', u'urg', u'cyclon', u'readi']
[u'thai', u'ralli']
[u'destroy', u'andamooka', u'school']
[u'thousand', u'ralli', u'thailand', u'protest']
[u'toowoomba', u'objector', u'begin', u'anti', u'recycl', u'campaign']
[u'track', u'final', u'dog', u'controversi']
[u'ukrainian', u'parliamentari', u'elect', u'begin']
[u'extend', u'food', u'inquiri']
[u'union', u'demand', u'labor', u'attent']
[u'union', u'predict', u'sack']
[u'call', u'iraqi', u'militia', u'crackdown']
[u'weather', u'bureau', u'monitor', u'tropic']
[u'whincup', u'lead', u'seri', u'race', u'triumph']
[u'urg', u'bird', u'gaza']
[u'windi', u'control', u'weather', u'end']
[u'writer', u'jail', u'defam']
[u'yushchenko', u'vote', u'ukrain', u'elect']
[u'zhang', u'win', u'women', u'singl', u'tabl', u'tenni']
[u'kill', u'road', u'accid']
[u'polic', u'releas', u'report', u'fatal']
[u'ame', u'eas', u'shoot', u'victori', u'player']
[u'andamooka', u'fire', u'forc', u'student', u'transfer']
[u'arab', u'minist', u'reject', u'isra', u'border', u'plan']
[u'athlet', u'afraid', u'return', u'sierra', u'leon']
[u'dead', u'philippin', u'bomb', u'blast']
[u'australian', u'global', u'ecstasi', u'user']
[u'accus', u'reneg', u'wheat', u'commit']
[u'baghdati', u'miami']
[u'beef', u'produc', u'wagyu', u'cattl', u'product']
[u'behead', u'bodi', u'near', u'baghdad']
[u'bellingen', u'council', u'mull', u'budget', u'capit', u'work']
[u'bendigo', u'game', u'villag', u'hail', u'success']
[u'berlusconi', u'warn', u'babi', u'boil', u'communist']
[u'birney', u'urg', u'leav', u'polit']
[u'blair', u'address', u'joint', u'sit', u'parliament']
[u'blair', u'defend', u'iraq']
[u'blake', u'red', u'return']
[u'bomb', u'explod', u'baghdad', u'mosqu', u'kill']
[u'bomb', u'kill', u'iraqi', u'base', u'mosul']
[u'borg', u'decid', u'sell', u'trophi']
[u'bowl', u'club', u'arm', u'robberi', u'attempt', u'investig']
[u'bull', u'close', u'titl']
[u'calm', u'raid', u'baghdad', u'mosqu']
[u'call', u'driver', u'educ', u'tasmanian', u'school']
[u'campaign', u'aim', u'compulsori', u'desex', u'cat']
[u'camp', u'group', u'issu', u'warn', u'council']
[u'carnarvon', u'solar', u'power', u'near', u'mileston']
[u'childer', u'hostel', u'mediat', u'begin']
[u'china', u'look', u'australian', u'uranium', u'deal']
[u'christian', u'convert', u'free', u'afghanistan']
[u'closer', u'news']
[u'closer']
[u'closer']
[u'coastal', u'land', u'grab', u'residenti', u'zone']
[u'coast', u'group', u'produc', u'nation', u'suicid', u'prevent']
[u'compromis', u'deal', u'signal', u'poki', u'disput']
[u'concern', u'rais', u'tasmanian', u'drink', u'water']
[u'coral', u'expans', u'deal', u'provid', u'indigen']
[u'coron', u'examin', u'mental', u'health']
[u'crimin', u'offenc']
[u'crusti', u'demon', u'continu', u'tour', u'despit', u'death']
[u'csus', u'battersbi', u'head', u'ballarat']
[u'csus', u'faculti', u'reduct', u'plan', u'cost', u'cut']
[u'cyclist', u'pedestrian', u'rodney', u'bridg', u'lane']
[u'bullish', u'matchplay', u'hop']
[u'detail', u'fair', u'commiss', u'reveal']
[u'dili', u'quiet', u'soldier', u'rampag']
[u'domest', u'violenc', u'report', u'mount', u'affluent', u'sydney']
[u'dragon', u'wait', u'ryle', u'scan']
[u'dubbo', u'need', u'save', u'live', u'say', u'aborigin']
[u'investig', u'doesnt']
[u'elector', u'commission', u'flag', u'disclosur', u'law', u'review']
[u'employ', u'guilti', u'workplac', u'law']
[u'employ', u'appear', u'rush', u'power']
[u'eurobodalla', u'highway', u'black', u'spot', u'upgrad']
[u'famili', u'green', u'tip', u'upper', u'hous']
[u'fargus', u'withdraw', u'drink', u'spike', u'complaint']
[u'farmer', u'expect', u'condit', u'worsen']
[u'farmer', u'produc']
[u'centr', u'defend', u'procedur']
[u'flood', u'disrupt', u'traffic', u'alic']
[u'flood', u'plan', u'start', u'port', u'piri']
[u'floodwat', u'send', u'shark', u'inland']
[u'fonterra', u'milk', u'supplier', u'fight', u'better', u'price']
[u'footi', u'better', u'love', u'british', u'bloke']
[u'chaplain', u'plead', u'guilti', u'student']
[u'franklin', u'seat', u'close']
[u'french', u'protest', u'demand', u'job', u'protest']
[u'french', u'studi', u'reveal', u'cannabi', u'health', u'risk']
[u'frog', u'kill', u'fungus', u'spread', u'tasmania']
[u'fugit', u'saddam', u'aid', u'urg', u'govt', u'boycott', u'report']
[u'gambl', u'compani', u'announc', u'merger']
[u'game', u'secur', u'budget', u'blow']
[u'game', u'volunt', u'flood', u'melbourn', u'street']
[u'thank', u'larri', u'volunt']
[u'ghost', u'ship', u'sight', u'day', u'intercept']
[u'giant', u'lose', u'legend', u'point']
[u'gold', u'medallist', u'withdraw', u'drink', u'spike', u'complaint']
[u'governor', u'general', u'arriv', u'innisfail']
[u'govt', u'accus', u'doubl', u'standard', u'kickback']
[u'govt', u'defend', u'workplac', u'chang']
[u'govt', u'felt', u'untouch', u'scandal', u'inquiri']
[u'govt', u'hail', u'chang', u'histor']
[u'govt', u'reject', u'mental', u'health', u'kempsey']
[u'govt', u'weigh', u'medibank', u'privat', u'sell']
[u'green', u'light', u'gall', u'stadium', u'rebuild']
[u'green', u'accus', u'govt', u'racism', u'papua']
[u'halangahu', u'readi', u'half', u'challeng']
[u'hama', u'urg', u'talk', u'peac', u'mideast']
[u'hargreav', u'mall', u'revamp', u'plan', u'display']
[u'heavi', u'rain', u'prompt', u'weed', u'warn', u'farmer']
[u'hewitt', u'name', u'davi']
[u'home', u'need', u'polic', u'unit']
[u'hornet', u'say', u'thank', u'sale']
[u'horrif', u'assault', u'prompt', u'polic', u'warn']
[u'hostag', u'releas', u'nigeria']
[u'hunter', u'clear', u'manslaught']
[u'imag', u'devic', u'provid', u'earli', u'heart', u'diseas']
[u'indonesia', u'attack', u'senat', u'papua', u'stanc']
[u'indonesian', u'ambassador', u'stay', u'away']
[u'indycar', u'driver', u'die', u'crash']
[u'injur', u'critic', u'condit', u'roadsid']
[u'inquest', u'announc', u'death', u'assault', u'victim']
[u'iraqi', u'secur', u'forc', u'kill', u'death', u'squad']
[u'chang', u'affect', u'worker', u'union']
[u'chang', u'hail', u'govt', u'histor']
[u'chang', u'effect', u'today']
[u'israel', u'elect', u'leader']
[u'jakarta', u'postpon', u'bird', u'agreement', u'papuan']
[u'kempsey', u'council', u'manag', u'confid', u'motion']
[u'kimberley', u'phys', u'confer', u'kick']
[u'kimberley', u'town', u'cyclon', u'alert']
[u'labor', u'say', u'chang', u'spell', u'fair']
[u'labor', u'target', u'law', u'parliament']
[u'labour', u'council', u'shame', u'file']
[u'lappin', u'opt', u'ankl', u'surgeri']
[u'leader', u'blair', u'terror']
[u'lockyer', u'prove', u'wrong', u'webck', u'tell', u'critic']
[u'macquari', u'group', u'plan', u'toll', u'road', u'sale']
[u'malle', u'dump', u'progress', u'welcom']
[u'arrest', u'docker', u'river', u'hous']
[u'court', u'nephew', u'murder']
[u'court', u'rocket', u'launcher', u'theft']
[u'plead', u'guilti', u'student', u'murder']
[u'sexual', u'assault', u'freeway', u'robberi']
[u'marin', u'park', u'opposit', u'hysteria']
[u'mcgradi', u'comfort', u'talk', u'surgeon']
[u'mcgradi', u'thank', u'support', u'brain', u'tumour']
[u'medicar', u'smart', u'card', u'brand', u'card', u'stealth']
[u'minist', u'defend', u'outsourc', u'hospit', u'servic']
[u'miss', u'african', u'athlet', u'sydney']
[u'miss', u'athlet', u'give', u'bridg', u'visa']
[u'miss', u'sierra', u'leonean', u'athlet', u'sydney']
[u'miss', u'sierra', u'leonean', u'sydney']
[u'cyclon', u'victim', u'power', u'restor']
[u'motorist', u'warn', u'school']
[u'mutton', u'bird', u'season', u'rais', u'protest']
[u'mysteri', u'chemic', u'affect', u'newcastl', u'nightclub']
[u'napthin', u'support', u'asher', u'liber', u'deputi']
[u'nation', u'sight', u'kimberley', u'seat']
[u'tafe', u'promis', u'biloela']
[u'north', u'coast', u'local', u'worri', u'highway']
[u'disast', u'respons', u'expert', u'help', u'larri', u'clean']
[u'pilot', u'die', u'crop', u'duster', u'crash']
[u'plan', u'equin', u'centr', u'need', u'land']
[u'forecast', u'middl', u'class', u'shift', u'china', u'india']
[u'poki', u'agreement', u'fair', u'reason', u'iemma']
[u'polic', u'hunt', u'arana', u'hill', u'arm', u'robber']
[u'polic', u'investig', u'bunga', u'hous']
[u'polic', u'investig', u'bunyan', u'hous']
[u'polic', u'investig', u'fatal', u'lake', u'macquari', u'crash']
[u'polic', u'investig', u'swimmer', u'drink', u'spike', u'claim']
[u'polic', u'offic', u'attack', u'bourk']
[u'polic', u'prais', u'mourner', u'teen', u'funer']
[u'polic', u'interview', u'murray', u'accid', u'survivor']
[u'polic', u'warn', u'parti', u'gatecrash']
[u'pont', u'hayden', u'pummel', u'protea']
[u'pont', u'post', u'half', u'centuri']
[u'port', u'bodi', u'optimist', u'expans', u'plan']
[u'power', u'station', u'boost', u'dalbi', u'region']
[u'primari', u'industri', u'week', u'focus', u'agricultur']
[u'prison', u'guard', u'face', u'trial', u'statement']
[u'privat', u'oper', u'extend', u'cabooltur', u'hospit']
[u'produc', u'diesel']
[u'hart', u'children', u'visit', u'ail', u'artist']
[u'russia', u'yanukovych', u'lead', u'ukrain', u'vote']
[u'public', u'help', u'need', u'mackay', u'pothol']
[u'detent', u'centr', u'hous', u'illeg', u'fishermen']
[u'quak', u'hit', u'japan', u'injuri', u'report']
[u'rabbitoh', u'face', u'suspens']
[u'radio', u'face', u'podcast', u'threat']
[u'rain', u'set', u'fight', u'noxious', u'weed']
[u'record', u'leichhardt', u'river', u'flood', u'report']
[u'region', u'develop', u'worker', u'nomin', u'labor']
[u'renmark', u'deserv', u'toxic', u'wast', u'dump', u'hear']
[u'research', u'back', u'hear', u'program']
[u'research', u'plan', u'second', u'scramjet', u'test']
[u'restrict', u'version', u'report', u'releas']
[u'retir', u'priest', u'escap', u'offend', u'regist']
[u'rice', u'predict', u'signific', u'pullout', u'iraq']
[u'land', u'valuat', u'need', u'replac']
[u'royal', u'newcastl', u'hospit', u'farewel']
[u'salt', u'maker', u'rebuild', u'quick', u'factori']
[u'scramjet', u'test', u'success']
[u'scholarship', u'award', u'encourag', u'indigen']
[u'poach', u'member', u'pay', u'fee', u'industri']
[u'senat', u'plan', u'meet', u'target', u'age', u'care', u'abus']
[u'share', u'market', u'extend', u'record', u'gain']
[u'sierra', u'leon', u'athlet', u'urg', u'contact', u'polic']
[u'singl', u'mother', u'cyclon', u'donat', u'appreci']
[u'sixth', u'demonstr', u'hold', u'cartoon', u'protest']
[u'solon', u'compens', u'hear', u'begin']
[u'solon', u'damag', u'hear', u'begin']
[u'southern', u'asthma', u'drink', u'rat', u'higher']
[u'specialis', u'autism', u'class', u'welcom', u'wagga']
[u'spiral', u'whitefli', u'darwin', u'backyard']
[u'spotlight', u'futur', u'walgett', u'shire']
[u'stand', u'firm', u'fight', u'democraci', u'blair', u'say']
[u'state', u'politician', u'converg', u'gaven']
[u'kilda', u'pier', u'kiosk', u'open']
[u'student', u'threaten', u'teacher', u'knive']
[u'swan', u'long', u'shoot', u'repeat', u'premiership']
[u'tasmanian', u'wine', u'grape', u'short', u'suppli']
[u'review', u'evid', u'adhd']
[u'windi', u'test', u'washout']
[u'terrac', u'hous', u'damag', u'melbourn']
[u'youth', u'detent', u'centr', u'escap', u'catch']
[u'thursday', u'night', u'great', u'night', u'footbal', u'worsfold']
[u'watson', u'bull', u'pile', u'pain']
[u'tourist', u'die', u'suspect', u'snorkel', u'accid']
[u'town', u'hall', u'polic', u'post', u'inappropri', u'say', u'councillor']
[u'tradesmen', u'arriv', u'cairn', u'help', u'cyclon', u'effort']
[u'tredrea', u'fit', u'race', u'wanganeen', u'reach']
[u'teen', u'kill', u'tumbl']
[u'ukrain', u'poll', u'close']
[u'ukrain', u'presid', u'start', u'coalit', u'talk']
[u'underground', u'power', u'consid', u'cyclon', u'area']
[u'union', u'lower', u'eureka', u'flag', u'mark']
[u'lose', u'save', u'buninyong', u'pool']
[u'iraqi', u'troop', u'kill', u'suspect']
[u'rat', u'rise', u'specul', u'push', u'aussi', u'dollar']
[u'vichealth', u'grant', u'help', u'sport', u'club']
[u'victim', u'crime', u'reform', u'announc']
[u'victoria', u'thank', u'game', u'volunt', u'footi', u'ticket']
[u'coral', u'coast', u'net', u'unexpect', u'flood', u'bonus']
[u'dolphin', u'strand', u'prompt', u'emerg', u'respons']
[u'liber', u'tension', u'erupt']
[u'crime', u'tribun', u'call', u'arrest']
[u'fight', u'chunk']
[u'watson', u'score', u'doubl', u'bull', u'charg']
[u'william', u'nomin', u'liber', u'deputi', u'leadership']
[u'wine', u'bottler', u'back', u'tetra', u'pak']
[u'woman', u'death', u'highlight', u'ambul', u'fault']
[u'workcov', u'campaign', u'target', u'small', u'busi']
[u'workshop', u'build', u'long', u'term', u'fish', u'plan']
[u'yamba', u'polic', u'shack', u'need', u'replac']
[u'kill', u'pakistani', u'clash']
[u'academ', u'restart', u'staff', u'talk']
[u'adelaid', u'hospit', u'upgrad', u'radiotherapi', u'unit']
[u'adelaid', u'lose', u'phillip', u'wnba']
[u'afghanistan', u'free', u'christian', u'convert']
[u'agent', u'orang', u'victim', u'demand', u'justic']
[u'condition', u'kill', u'switch', u'trial', u'adelaid']
[u'airc', u'remain', u'relev', u'presid']
[u'alleg', u'thief', u'claim', u'friend', u'hold', u'hostag']
[u'predict', u'negat', u'work', u'chang', u'impact']
[u'qaeda', u'oper', u'tell', u'court', u'white', u'hous']
[u'ambul', u'servic', u'say', u'singl', u'offic', u'crew', u'rare']
[u'andrew', u'reject', u'law', u'sack', u'link']
[u'get', u'fund', u'rural', u'clinic', u'school']
[u'world', u'mourn', u'loss', u'painter']
[u'investig', u'player', u'manag']
[u'audit', u'hospit', u'food', u'complaint']
[u'aussi', u'wicket', u'victori']
[u'australia', u'china', u'sign', u'nuclear', u'agreement']
[u'australia', u'china', u'sign', u'uranium', u'deal']
[u'australia', u'china', u'uranium', u'deal', u'step', u'closer']
[u'australian', u'artist', u'hart', u'die', u'age']
[u'tell', u'small', u'target']
[u'ballarat', u'chemic', u'spill', u'clean']
[u'banana', u'woe', u'help', u'appl', u'pear', u'grower']
[u'banana', u'woe', u'necessarili', u'boon', u'appl']
[u'ban', u'bunni', u'miss', u'shark', u'clash']
[u'beach', u'feel', u'impact', u'wati']
[u'beatti', u'confirm', u'uranium', u'stanc']
[u'beazley', u'crack', u'labor', u'fight']
[u'beazley', u'take', u'blame', u'troubl']
[u'bendigo', u'host', u'wast', u'dump', u'panel']
[u'pension', u'strike', u'hit', u'school', u'travel']
[u'blair', u'back', u'asia', u'pacif', u'climat', u'pact']
[u'blair', u'howard', u'stand', u'firm', u'iraq']
[u'blair', u'offer', u'advic']
[u'blair', u'say', u'best', u'talent', u'state', u'polit']
[u'blaze', u'destroy', u'peak', u'shed']
[u'brough', u'goal', u'repatri', u'indigen', u'remain']
[u'builder', u'senior', u'centr']
[u'bulldog', u'extra', u'polic']
[u'bull', u'crush', u'victoria', u'claim', u'titl']
[u'bush', u'want', u'perspect', u'maintain', u'immigr']
[u'busi', u'chamber', u'want', u'focus', u'council', u'merger']
[u'businesswoman', u'get', u'suspend', u'sentenc']
[u'hous', u'includ', u'bushfir', u'safeti', u'pod']
[u'stronger', u'harvey', u'polic', u'presenc']
[u'carpent', u'stand', u'uranium', u'polici']
[u'carrol', u'boost', u'bronco', u'defenc']
[u'closer', u'news']
[u'closer']
[u'club', u'face', u'poki']
[u'club', u'salari', u'hike']
[u'cole', u'inquiri', u'chang', u'fail', u'stop', u'legal', u'disput']
[u'cole', u'inquiri', u'hear', u'govt', u'tell', u'limit', u'info']
[u'concern', u'air', u'long', u'term', u'secur']
[u'concern', u'rais', u'water', u'project', u'condit']
[u'cooma', u'trader', u'urg', u'drink']
[u'coonan', u'play', u'rural', u'media', u'concern']
[u'coron', u'tell', u'mother', u'death', u'devast']
[u'council', u'chief', u'execut', u'accus', u'fraud']
[u'council', u'get', u'tough', u'recycl', u'contamin']
[u'council', u'insur', u'rise']
[u'councillor', u'divid', u'alic', u'speed', u'limit']
[u'council', u'make', u'meet', u'chang']
[u'council', u'quiz', u'daylight', u'save']
[u'council', u'stand', u'propos', u'cut']
[u'excema', u'outbreak', u'pose', u'threat']
[u'csiro', u'workshop', u'research', u'centr', u'plan']
[u'cyclon', u'clean', u'effort', u'earn', u'prais']
[u'cyclon', u'glenda', u'threat', u'grow']
[u'cyclon', u'glenda', u'upgrad', u'categori']
[u'cyclon', u'impact', u'expect', u'boost', u'build', u'materi']
[u'cyclon', u'task', u'forc', u'readi', u'emot', u'fallout']
[u'dead', u'fish', u'wash', u'great', u'southern', u'beach']
[u'diet', u'link', u'asthma', u'symptom']
[u'doyl', u'see', u'unit', u'liber', u'team']
[u'eastern', u'perth', u'singl', u'growth']
[u'east', u'pilbara', u'face', u'locust', u'invas']
[u'elector', u'commiss', u'begin', u'distribut']
[u'electron', u'nose', u'solv', u'sheep', u'industri', u'woe']
[u'elsom', u'itch', u'return', u'fray']
[u'england', u'restrict', u'india', u'modest', u'total']
[u'envestra', u'challeng', u'price', u'rule']
[u'farmer', u'feel', u'debt', u'impact']
[u'farm', u'group', u'back', u'feder', u'work', u'chang']
[u'father', u'plead', u'guilti', u'indec', u'deal']
[u'fin', u'crab', u'raider']
[u'fisher', u'welcom', u'dredg', u'start', u'date']
[u'kill', u'afghanistan', u'blast']
[u'food', u'drop', u'plan', u'flood', u'north']
[u'liberian', u'leader', u'taylor', u'miss']
[u'fortescu', u'boss', u'challeng', u'legal', u'action']
[u'fortescu', u'face', u'asic', u'charg']
[u'kill', u'norhtern', u'iraq', u'suicid', u'bomb']
[u'foundat', u'want', u'fund', u'tackl', u'alcohol']
[u'franc', u'face', u'nation', u'strike', u'youth']
[u'freight', u'train', u'derail', u'probe']
[u'fuel', u'leak', u'spacex', u'launch']
[u'game', u'polic', u'fail', u'extra']
[u'gaven', u'candid', u'defend']
[u'ghost', u'ship', u'rais', u'secur', u'concern']
[u'glass', u'fear', u'prompt', u'recal']
[u'gold', u'miner', u'offset', u'market', u'loss']
[u'govern', u'urg', u'support', u'cyclon', u'sugar']
[u'govt', u'continu', u'push', u'passeng', u'train', u'return']
[u'govt', u'face', u'claim', u'limit']
[u'govt', u'wast', u'dump', u'hear', u'absenc']
[u'govt', u'urg', u'ensur', u'cancer', u'treatment', u'access']
[u'group', u'question', u'power', u'cabl', u'rout']
[u'harbhajan', u'steer', u'india', u'victori']
[u'harito', u'murder', u'suspect', u'plead', u'guilti']
[u'hospit', u'defer', u'elect', u'surgeri']
[u'household', u'cop', u'higher', u'debt']
[u'hundr', u'thousand', u'protest', u'french']
[u'indonesia', u'commit', u'australian', u'tie']
[u'injur', u'roger', u'wont', u'rush', u'return']
[u'chang', u'bring', u'mix', u'opinion']
[u'law', u'abattoir', u'lockout']
[u'law', u'risk', u'volunt', u'job']
[u'isra', u'vote', u'border', u'referendum']
[u'juri', u'fail', u'agre', u'harri', u'scarf', u'case']
[u'koutoufid', u'play', u'mileston', u'match', u'demon']
[u'labor', u'attack', u'andrew', u'benefit']
[u'landmark', u'melbourn', u'kiosk', u'reopen']
[u'letter', u'seek', u'age', u'care', u'boost']
[u'liquor', u'accord', u'chief', u'want']
[u'creat', u'danger', u'surf', u'condit']
[u'accus', u'attempt', u'murder', u'face', u'court']
[u'face', u'court', u'rape', u'charg']
[u'mayor', u'highlight', u'lake', u'remedi', u'worri']
[u'mcname', u'swap', u'tenni', u'golf']
[u'meat', u'worker', u'disput', u'court']
[u'meatwork', u'provid', u'live', u'sheep', u'altern']
[u'mental', u'health', u'inquest', u'hear', u'conflict', u'evid']
[u'milk', u'price', u'increas', u'anger', u'farmer']
[u'minist', u'meet', u'hall', u'creek', u'communiti', u'leader']
[u'mirnyi', u'spearhead', u'belarus']
[u'miss', u'cameroon', u'athlet', u'contact', u'perth', u'offici']
[u'miss', u'link', u'scienc', u'manuscript', u'sale']
[u'miss', u'mokbel', u'convict', u'drug', u'smuggl']
[u'mix', u'respons', u'wool', u'contract']
[u'mokbel', u'sentenc', u'absentia']
[u'african', u'athlet', u'give', u'bridg', u'visa']
[u'miss', u'athlet', u'give', u'bridg', u'visa']
[u'sierra', u'leonean', u'sydney']
[u'mother', u'investig', u'shackl', u'daughter']
[u'motlop', u'readi', u'face', u'team', u'mat']
[u'defend', u'chang']
[u'introduc', u'airport', u'ombudsman']
[u'urg', u'boost', u'snowi', u'environment', u'flow']
[u'worri', u'game', u'cost', u'blow']
[u'nasa', u'restor', u'fund', u'ax', u'asteroid', u'probe']
[u'nation', u'fear', u'media', u'divers', u'law']
[u'nation', u'push', u'debat', u'recycl', u'water']
[u'nativ', u'titl', u'test', u'case', u'help', u'pastor']
[u'code', u'combat', u'spam', u'email']
[u'rule', u'minist']
[u'law', u'target', u'serial', u'drink', u'driver']
[u'psoriasi', u'treatment', u'cut', u'effect']
[u'nia', u'mark', u'devast', u'quak']
[u'north', u'west', u'ergon', u'worker', u'help', u'north']
[u'club', u'salari', u'hike']
[u'plan', u'increas', u'salari']
[u'inquiri', u'investig', u'workplac', u'law']
[u'poki', u'agreement', u'promis', u'secur', u'futur']
[u'govt', u'mull', u'uranium', u'sale', u'timefram']
[u'host', u'intern', u'defenc', u'exercis']
[u'anti', u'protest', u'greet', u'blair']
[u'object', u'boyn', u'cemeteri', u'crematorium']
[u'omedei', u'mull', u'rule', u'silenc', u'feud']
[u'opposit', u'question', u'highway', u'studi']
[u'owner', u'walk', u'glori']
[u'pair', u'arrest', u'cannabi']
[u'pair', u'surviv', u'month', u'adrift']
[u'parliament', u'debat', u'terror', u'legisl']
[u'parliament', u'consid', u'liquor', u'law']
[u'plane', u'crash', u'probe', u'continu']
[u'plenti', u'fee', u'creat', u'difficult', u'birth']
[u'polic', u'arrest', u'alleg', u'abduct']
[u'polic', u'bodi', u'miss', u'fisherman']
[u'polic', u'issu', u'warrant', u'rutherford', u'drive']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'urg', u'safeti', u'teen', u'surf', u'death']
[u'premiership', u'advantag', u'roo']
[u'hart', u'generous', u'countri']
[u'hart', u'rememb']
[u'protest', u'smoke', u'parliament']
[u'protest', u'continu', u'maleni', u'supermarket']
[u'public', u'urg', u'dismiss', u'mall', u'revamp', u'plan']
[u'push', u'pipelin', u'extend', u'north', u'west']
[u'push', u'indigen', u'jail', u'guard']
[u'urg', u'wage', u'subsidi', u'cyclon', u'ravag']
[u'barista', u'hope', u'cream', u'opposit']
[u'queen', u'offer', u'sympathi', u'larri', u'victim']
[u'rann', u'comfort', u'china', u'uranium', u'deal']
[u'rann', u'conven', u'cabinet', u'meet']
[u'renault', u'team', u'beat', u'webber']
[u'retail', u'flag', u'eftpo', u'withdraw']
[u'rise', u'tattoo', u'guitarist', u'die']
[u'rough', u'surf', u'prompt', u'safeti', u'warn']
[u'rous', u'urg', u'fund', u'rainwat', u'tank']
[u'threaten', u'king', u'memori', u'servic']
[u'dam', u'time', u'decad']
[u'sartor', u'say', u'power', u'extrem']
[u'scale', u'surveil', u'worri', u'trawler', u'oper']
[u'scientif', u'whale', u'studi']
[u'senat', u'urg', u'action', u'timber', u'disput']
[u'volunt', u'stun', u'innisfail', u'devast']
[u'shark', u'snake', u'crocodil', u'invad', u'cyclon', u'ravag']
[u'shire', u'crack', u'illeg', u'wast', u'dump']
[u'site', u'boulder', u'polic', u'post', u'vote']
[u'skull', u'rubbish', u'dump', u'haiti']
[u'sniffer', u'dog', u'hunt', u'cane', u'toad']
[u'sport', u'club', u'receiv', u'game', u'equip']
[u'stain', u'portrait', u'win', u'bald', u'archi']
[u'stanhop', u'introduc', u'union']
[u'storm', u'bring', u'localis', u'riverland', u'flood']
[u'studi', u'investig', u'pneumococc', u'vaccin']
[u'survey', u'show', u'peopl', u'healthier', u'northern', u'sydney']
[u'talk', u'continu', u'timor', u'soldier', u'disput']
[u'tasmanian', u'child', u'support', u'worker', u'offer']
[u'tasmanian', u'lowest', u'pay', u'worker']
[u'tax', u'fee', u'push', u'hous', u'price']
[u'teenag', u'charg', u'school', u'arson']
[u'trader', u'urg', u'speak', u'railway', u'land', u'futur']
[u'truck', u'crash', u'inquest', u'hear', u'evid']
[u'hurt', u'kakadu', u'waterfal', u'accid']
[u'miss', u'cameroon', u'athlet', u'contact', u'perth']
[u'union', u'accus', u'part', u'compani', u'spi']
[u'uranium', u'deal', u'china', u'close', u'howard', u'say']
[u'accus', u'shiit', u'mosqu', u'assault', u'misinform']
[u'liber', u'elect', u'deputi', u'leader']
[u'polic', u'probe', u'bug', u'claim', u'part', u'maker']
[u'vieira', u'readi', u'face', u'gunner']
[u'warn', u'make', u'doubl', u'breakthrough', u'durban']
[u'wast', u'dump', u'panel', u'chief', u'consid', u'imparti']
[u'water', u'author', u'detail', u'pipelin', u'plan']
[u'wider', u'opal', u'roll', u'strateg']
[u'titl', u'go', u'bushrang', u'draw']
[u'woodsid', u'develop', u'vincent', u'offshor', u'product']
[u'woodsid', u'spend', u'billion', u'vincent', u'field']
[u'murder', u'accus', u'plan', u'doublecross']
[u'zous', u'killer', u'arrest', u'dig', u'bodi']
[u'kill', u'afghanistan', u'attack']
[u'lose', u'resid', u'state']
[u'adam', u'gilchrist', u'interview']
[u'adcock', u'join', u'lion', u'injuri', u'list']
[u'adelaid', u'accus', u'riverland', u'crime']
[u'aircondition', u'woe', u'cancel', u'oper']
[u'alic', u'mayor', u'seek', u'govt', u'help', u'cope', u'urban']
[u'qaeda', u'detaine', u'contradict', u'moussaoui', u'testimoni']
[u'amateur', u'golf', u'titl', u'decid', u'thriller']
[u'ambros', u'nascar', u'debut']
[u'armstrong', u'announc', u'retir']
[u'barossa', u'council', u'withdraw', u'hall', u'contract']
[u'beazley', u'flag', u'polici', u'debat']
[u'beckham', u'spruik', u'eriksson', u'real']
[u'blair', u'urg', u'inclus', u'climat', u'chang', u'pact']
[u'bluescop', u'area', u'biggest', u'employ']
[u'blue', u'draft', u'pick', u'demon', u'clash']
[u'booth', u'win', u'bass', u'nail', u'bite', u'finish']
[u'bowen', u'hop', u'incent', u'boost', u'film']
[u'brown', u'appeal', u'canberra', u'hunt', u'rock']
[u'busi', u'usual', u'alonso', u'renault']
[u'busi', u'hire', u'confid', u'rise']
[u'cameroon', u'athlet', u'seek', u'asylum', u'advic']
[u'campaign', u'continu', u'rogu', u'tour', u'guid']
[u'cape', u'lambert', u'sell', u'gold', u'asset']
[u'cathol', u'teacher', u'ask', u'patient']
[u'child', u'fli', u'brisban', u'fatal', u'crash']
[u'children', u'fear', u'lose', u'disabl', u'vehicl']
[u'chocol', u'deepen', u'depress']
[u'chopper', u'servic', u'beat', u'govt', u'talk']
[u'citi', u'seagul', u'bulk']
[u'cleal', u'quit', u'man', u'rabbitoh']
[u'closer']
[u'closer', u'news']
[u'closer']
[u'cockpit', u'smoke', u'forc', u'plane', u'airport']
[u'cole', u'reject', u'opposit', u'call', u'expand', u'inquiri']
[u'commiss', u'urg', u'delay', u'rise', u'rule']
[u'concern', u'mount', u'steal', u'croc']
[u'consum', u'feel', u'squeez', u'banana', u'price', u'rise']
[u'coron', u'investig', u'horsham', u'man', u'death']
[u'coron', u'tell', u'prison', u'staff', u'ignor', u'health', u'complaint']
[u'corpor', u'world', u'negoti', u'regul']
[u'costello', u'slam', u'doubl', u'taxat']
[u'council', u'consid', u'option', u'tree', u'fell', u'case']
[u'council', u'face', u'mount', u'wast', u'dump', u'legal']
[u'council', u'burwood', u'build', u'talk']
[u'council', u'respons', u'sick', u'tree']
[u'council', u'consid', u'wast', u'water', u'recycl']
[u'council', u'upgrad', u'floodplain', u'risk', u'manag']
[u'court', u'hear', u'respit', u'care', u'shortag']
[u'csiro', u'work', u'grain', u'farmer', u'harvest']
[u'dept', u'urg', u'crack', u'violenc']
[u'doubt', u'cast', u'rail', u'mainten']
[u'drive', u'shoot', u'accus', u'refus', u'bail']
[u'driver', u'reinstat', u'unfair', u'sack']
[u'weather', u'extend', u'bushfir', u'risk']
[u'east', u'timor', u'vow', u'catch', u'rioter']
[u'eclips', u'sweep', u'dark', u'path', u'africa', u'middl']
[u'emerg', u'servic', u'head', u'helicopt', u'crash', u'scene']
[u'employ', u'confid', u'construct', u'sector']
[u'eurobodalla', u'council', u'reject', u'marin', u'park', u'plan']
[u'european', u'winter', u'hit', u'global', u'poppi', u'industri']
[u'explor', u'licenc', u'grant', u'near', u'price']
[u'farmer', u'urg', u'remain', u'safe', u'despit', u'fewer', u'farm']
[u'fear', u'plan', u'law', u'caus', u'delay']
[u'feder', u'fund', u'boost', u'fisherman']
[u'feder', u'welcom', u'rann', u'uranium', u'turnaround']
[u'feder', u'roddick', u'advanc', u'miami']
[u'firefight', u'call', u'twice', u'armidal', u'hous']
[u'fisheri', u'probe', u'fish', u'kill']
[u'flood', u'market', u'make', u'life', u'tough', u'citrus', u'grower']
[u'food', u'drop', u'arriv', u'flood', u'gulf', u'region']
[u'minist', u'sue', u'opposit']
[u'mortgag', u'broker', u'face', u'fraud', u'charg']
[u'fuel', u'price', u'toll', u'central', u'west', u'tourism']
[u'fund', u'boost', u'indigen', u'heritag']
[u'gather', u'discuss', u'schooli', u'strategi']
[u'glass', u'scare', u'see', u'recal', u'jam']
[u'glenda', u'upgrad', u'categori']
[u'govt', u'plan', u'elimin', u'island', u'rat']
[u'govt', u'probe', u'subdivis', u'plan']
[u'govt', u'put', u'limit', u'indigen', u'scheme']
[u'govt', u'reject', u'health', u'agreement', u'claim']
[u'govt', u'say', u'hospit', u'ceremoni', u'time', u'coincid']
[u'govt', u'pursu', u'fraudul', u'cyclon', u'relief', u'claim']
[u'govt', u'school', u'fund', u'distribut']
[u'grazier', u'inspect', u'flood', u'damag']
[u'group', u'protest', u'hospit', u'plan']
[u'grower', u'warn', u'locust', u'threat']
[u'guantanamo', u'tribun', u'challeng', u'court']
[u'gulf', u'flood', u'cost', u'million']
[u'gunmen', u'open', u'baghdad', u'shop']
[u'henjak', u'bench', u'forc']
[u'henjak', u'pressur', u'revers', u'form', u'slump']
[u'creditor', u'like', u'receiv', u'payout']
[u'creditor', u'payment']
[u'hmas', u'diamantina', u'refloat', u'dock', u'undergo']
[u'home', u'evacu', u'cyclon', u'glenda', u'move']
[u'homicid', u'squad', u'lead', u'brimbl', u'death', u'investig']
[u'homicid', u'squad', u'take', u'brimbl', u'case']
[u'hotel', u'worker', u'claim', u'right', u'appeal']
[u'howard', u'admit', u'cole', u'inquiri', u'have', u'limit', u'power']
[u'hundr', u'arrest', u'pari', u'labour', u'protest']
[u'hundr', u'ralli', u'law']
[u'indonesia', u'clear', u'king', u'memori']
[u'indonesian', u'death', u'christian', u'seek', u'presidenti']
[u'bypass', u'council', u'redevelop', u'plan']
[u'chang', u'impact', u'women', u'disadvantag']
[u'hear', u'fail', u'teacher', u'disput']
[u'put', u'hold', u'nurs', u'redund', u'plan']
[u'hear', u'minimum', u'wage', u'case']
[u'japan', u'prepar', u'darwin', u'anti', u'terror', u'drill']
[u'john', u'anzac', u'test']
[u'john', u'celebr', u'mileston', u'warrior']
[u'joyc', u'miss', u'parliament', u'antarct', u'trip']
[u'judd', u'worri', u'saint', u'tagger']
[u'kiwi', u'test', u'abandon', u'napier']
[u'kyneton', u'road', u'safeti', u'boost']
[u'labor', u'posit', u'beazley', u'admiss']
[u'lack', u'apolog', u'cost', u'taxpay', u'opposit']
[u'land', u'trust', u'want', u'beagl']
[u'launceston', u'hospit', u'complet', u'tough', u'food']
[u'lawyer', u'question', u'asio', u'power']
[u'locust', u'plagu', u'threaten', u'pilbara', u'pastoralist']
[u'logan', u'mayor', u'candid', u'accus', u'send']
[u'lose', u'purs', u'million', u'dollar', u'content', u'return']
[u'luck', u'irish', u'extend', u'expat']
[u'major', u'iraq', u'wheat', u'deal', u'rais', u'australian', u'hop']
[u'accus', u'hoon', u'face', u'court']
[u'accus', u'girl', u'porn']
[u'charg', u'cronulla', u'riot']
[u'charg', u'central', u'coast', u'murder']
[u'jail', u'park', u'murder']
[u'market', u'hit', u'high', u'despit', u'shaki', u'start']
[u'mcleod', u'expect', u'line', u'pie']
[u'meet', u'back', u'chang', u'walgett', u'boundari']
[u'militari', u'tribun', u'challeng', u'court']
[u'million', u'protest', u'pari', u'youth', u'labour', u'law']
[u'miner', u'pressur', u'look', u'worker']
[u'minist', u'say', u'recent', u'sack', u'unusu']
[u'miss', u'drug', u'hospit']
[u'montvill', u'link', u'decis', u'wont']
[u'motorhom', u'plan', u'draw', u'mix', u'respons']
[u'motorist', u'warn', u'petrol', u'price', u'hike']
[u'highlight', u'million', u'hec', u'debt']
[u'zealand', u'flock', u'australia']
[u'nigeria', u'arrest', u'fugit', u'taylor']
[u'local', u'council', u'blast', u'godzilla', u'power', u'grab']
[u'polic', u'clarifi', u'anderson', u'apolog']
[u'nurs', u'vincent', u'fail', u'reach', u'agreement']
[u'olmert', u'claim', u'victori', u'israel']
[u'palliat', u'care', u'fund', u'boost']
[u'peta', u'aim', u'turn', u'asian', u'kid', u'vegetarian']
[u'pilot', u'kill', u'chopper', u'crash']
[u'plan', u'afoot', u'rehabilit', u'asbesto']
[u'admit', u'cole', u'inquiri', u'have', u'limit', u'power']
[u'boost', u'cyclon', u'clean', u'fund']
[u'reject', u'cole', u'inquiri', u'cover', u'claim']
[u'polic', u'captur', u'alleg', u'gunman']
[u'polic', u'hunt', u'firebug']
[u'polic', u'investig', u'attempt', u'child', u'abduct']
[u'polic', u'plea', u'public', u'help', u'brawl', u'investig']
[u'polic', u'road', u'safeti', u'campaign']
[u'poll', u'predict', u'kadima', u'isra', u'elect']
[u'potato', u'grower', u'lock', u'mccain', u'price', u'talk']
[u'prison', u'offic', u'statement', u'charg', u'drop']
[u'propos', u'close', u'major', u'children', u'hospit']
[u'putt', u'give', u'elect', u'night', u'speech']
[u'face', u'contempt', u'charg', u'mokbel', u'case']
[u'urg', u'support', u'formula']
[u'radio', u'tower', u'warrant', u'preserv', u'historian']
[u'remain', u'sierra', u'leonean', u'appli', u'visa', u'today']
[u'research', u'show', u'rise', u'canberra', u'hous', u'price', u'drive']
[u'resid', u'remind', u'council']
[u'resid', u'sign', u'petit', u'oppos', u'homeswest', u'hous']
[u'ritalin', u'maker', u'face', u'class', u'action']
[u'rock', u'rock', u'drink', u'driver', u'miss', u'uluru']
[u'effect', u'contracept']
[u'pill', u'target', u'breast', u'cancer']
[u'schumach', u'look', u'redempt', u'melbourn']
[u'scramjet', u'launch', u'result', u'promis']
[u'search', u'continu', u'miss', u'nowra', u'woman']
[u'smart', u'card', u'inevit', u'costello']
[u'lanka', u'pakistan', u'huge', u'victori', u'target']
[u'stage', u'ring', u'road', u'begin']
[u'starl', u'search', u'find', u'popul']
[u'stem', u'cell', u'transplant', u'restor', u'mobil']
[u'struggl', u'glori', u'announc', u'sign']
[u'studi', u'reveal', u'blow', u'govt', u'charg', u'home']
[u'studi', u'consid', u'gulf', u'detent', u'centr']
[u'supermarket', u'report', u'banana', u'price', u'rise']
[u'symond', u'media', u'beat', u'sutherland']
[u'telstra', u'stand', u'phone', u'closur']
[u'ten', u'profit', u'fall', u'percent']
[u'tey', u'bros', u'say', u'time', u'frame', u'workplac']
[u'tough', u'time', u'potato', u'farmer']
[u'tourism', u'group', u'wine', u'bodi', u'work', u'better']
[u'tourist', u'licenc', u'suspend', u'crash']
[u'trawler', u'search', u'net', u'tonn', u'fish']
[u'truck', u'crash', u'inquest', u'hear', u'doubt', u'academ']
[u'trucki', u'jail', u'surgeon', u'imperson']
[u'turtl', u'nest', u'site', u'record', u'drop', u'visitor']
[u'unionist', u'ralli', u'law']
[u'union', u'pledg', u'lengthi', u'fight']
[u'union', u'wage', u'campaign', u'law']
[u'reject', u'cost', u'cut', u'claim']
[u'upper', u'hous', u'block', u'smoke', u'law', u'challeng']
[u'upper', u'hous', u'green', u'light', u'local', u'plan', u'law']
[u'uralla', u'resid', u'survey', u'water', u'payment']
[u'uranium', u'deal', u'strict', u'safeguard']
[u'militari', u'tribun', u'face', u'suprem', u'court', u'challeng']
[u'rate', u'rise', u'revers', u'wall', u'street', u'price']
[u'unawar', u'prayer', u'room', u'assault']
[u'vail', u'confid', u'iraq', u'wheat', u'deal']
[u'vail', u'hop', u'confirm', u'report', u'multi', u'million']
[u'vail', u'talk', u'resourc', u'boom']
[u'vanston', u'incompet', u'indol', u'say', u'govt']
[u'virus', u'put', u'tomato', u'grower', u'alert']
[u'visa', u'issu', u'sierra', u'leon', u'athlet']
[u'wanganeen', u'proud', u'join', u'club']
[u'plan', u'relax', u'alcohol', u'law']
[u'warn', u'spearhead', u'australia', u'seri', u'victori']
[u'warn', u'wicket', u'haul', u'secur', u'aussi', u'test', u'victori']
[u'warwick', u'play', u'youth', u'parti', u'strategi']
[u'water', u'main', u'work', u'block', u'street']
[u'wati', u'whip', u'swell', u'sydney']
[u'waugh', u'back', u'bench']
[u'weaker', u'glenda', u'track', u'coastlin']
[u'whale', u'research', u'sway', u'japan']
[u'white', u'hous', u'chief', u'staff', u'resign']
[u'opt', u'british', u'open', u'qualif']
[u'wine', u'tourism', u'train', u'owner']
[u'workshop', u'focus', u'horsham', u'tourism']
[u'work', u'shortag', u'inquiri', u'wont', u'broaden', u'term']
[u'youth', u'job', u'spark', u'protest']
[u'student', u'hospit', u'take', u'drug']
[u'overcom', u'paint', u'fume']
[u'expect', u'stop', u'wast', u'dump', u'oppon']
[u'staff', u'ralli', u'board', u'chang']
[u'support', u'ralli', u'sydney']
[u'aborigin', u'lose', u'elector', u'chang']
[u'consid', u'separ', u'celebr', u'civil', u'union']
[u'action', u'group', u'look', u'forward', u'pump']
[u'grant', u'heterosexu', u'coupl']
[u'afl', u'drug', u'polici', u'flaw', u'coach']
[u'play', u'court', u'fund']
[u'anti', u'terror', u'law', u'inferior', u'liber']
[u'ask', u'help', u'tempt', u'tonga']
[u'aussi', u'test', u'clean', u'sweep']
[u'aust', u'troop', u'wind', u'mission']
[u'author', u'investig', u'aust', u'death', u'baghdad']
[u'inquiri', u'chief', u'defend', u'secreci', u'order']
[u'inquiri', u'seek', u'minist', u'input']
[u'council', u'seek', u'rate', u'rise']
[u'bowler', u'see', u'sunday', u'trade', u'decis']
[u'brabham', u'hop', u'webber', u'podium']
[u'braidwood', u'make', u'heritag', u'list']
[u'brogan', u'stay', u'power']
[u'break', u'hill', u'invit', u'farewel', u'hart']
[u'brown', u'confirm', u'loyalti', u'dragon']
[u'busi', u'chamber', u'support', u'pilot', u'train', u'plan']
[u'businessman', u'face', u'charg']
[u'button', u'look', u'capitalis', u'renault', u'error']
[u'cabinet', u'warm', u'smart', u'card', u'plan']
[u'centr', u'fume', u'investig']
[u'rise', u'hous', u'cost', u'address']
[u'call', u'train', u'station', u'revamp']
[u'campaign', u'aim', u'lure', u'away', u'coast', u'busi']
[u'crash', u'whitsunday', u'hous']
[u'chang', u'japanes', u'histori', u'textbook', u'anger', u'south', u'korea']
[u'chopper', u'break', u'apart']
[u'cleanup', u'bungl', u'fish', u'oper', u'continu']
[u'closer', u'abcnew']
[u'closer']
[u'confus', u'surround', u'aust', u'resid', u'iraq', u'death']
[u'convict', u'humili', u'cooper', u'court', u'tell']
[u'councillor', u'mayor', u'spot']
[u'council', u'depart', u'save', u'measur']
[u'council', u'beat', u'tourist', u'centr', u'futur']
[u'council', u'vote', u'continu', u'meal', u'wheel', u'rent']
[u'council', u'wont', u'adopt', u'code', u'chang']
[u'court', u'lift', u'suppress', u'order', u'murder', u'accus']
[u'curtain', u'close', u'longreach', u'cinema']
[u'cyclon', u'creat', u'problem']
[u'cyclon', u'disast', u'power', u'continu']
[u'cyclon', u'glenda', u'batter', u'onslow']
[u'cyclon', u'glenda', u'cross', u'coast']
[u'cyclon', u'glenda', u'gather', u'pace']
[u'cyclon', u'glenda', u'hit', u'dampier', u'courtesi']
[u'cyclon', u'glenda', u'hit', u'wickham', u'courtesi', u'mark']
[u'cyclon', u'glenda', u'make', u'landfal']
[u'cyclon', u'larri', u'insur', u'claim', u'expect']
[u'cyclon', u'like', u'cross', u'south', u'karratha']
[u'death', u'prompt', u'group', u'defend', u'safeti', u'standard']
[u'debnam', u'prais', u'outgo', u'armstrong']
[u'dingo', u'cartoon', u'fail', u'faze', u'howard']
[u'disgrac', u'lobbyist', u'jail', u'fraud']
[u'dive', u'cost', u'footbal', u'post', u'game']
[u'doubt', u'rais', u'cdep', u'chang']
[u'downer', u'vail', u'call', u'cole', u'inquiri']
[u'consid', u'robinson', u'case', u'appeal']
[u'drill', u'determin', u'plateau', u'groundwat', u'level']
[u'echuca', u'rail', u'worri', u'surfac']
[u'econom', u'sector', u'split', u'secur', u'china']
[u'elector', u'reform', u'group', u'voic', u'donkey', u'vote', u'concern']
[u'evan', u'elect', u'liber', u'leader']
[u'fair', u'trade', u'breach', u'cost']
[u'fast', u'court', u'work', u'australia', u'say', u'hewitt']
[u'feder', u'parliament', u'approv', u'snowi', u'sale']
[u'feedback', u'seek', u'boundari', u'chang', u'submiss']
[u'feedback', u'seek', u'stall']
[u'ferguson', u'urg', u'turnaround', u'uranium']
[u'fifa', u'player', u'bet', u'world']
[u'figo', u'slam', u'real', u'madrid', u'circus']
[u'destroy', u'forb', u'unit']
[u'brazilian', u'astronaut', u'blast']
[u'fuel', u'price', u'rise']
[u'fund', u'seek', u'health', u'servic', u'aliv']
[u'seal', u'make', u'rare', u'appear', u'outsid', u'usual']
[u'gail', u'rain', u'lash', u'karratha', u'cyclon', u'glenda']
[u'gale', u'forc', u'wind', u'karratha']
[u'glenda', u'open', u'news']
[u'gold', u'coast', u'honour', u'game', u'athlet']
[u'govt', u'ask', u'provid', u'fund', u'wine', u'push']
[u'govt', u'boost', u'fund', u'larri', u'victim']
[u'govt', u'deliber', u'limit', u'scope', u'inquiri']
[u'govt', u'deni', u'break', u'forest', u'promis']
[u'govt', u'doubl', u'wagga', u'dialysi', u'servic']
[u'govt', u'urg', u'help', u'fund', u'water', u'treatment', u'plant']
[u'hama', u'cabinet', u'swear']
[u'health', u'servic', u'chief', u'reject', u'snub', u'claim']
[u'health', u'fail', u'mental', u'senat']
[u'herd', u'bar', u'bodi', u'creditor', u'owe', u'million']
[u'highway', u'upgrad', u'benefit', u'plenti', u'say', u'scullion']
[u'hird', u'posit', u'calf', u'injuri']
[u'histor', u'cattl', u'station', u'sell']
[u'hodgman', u'take', u'charg', u'liber']
[u'holland', u'charg', u'alleg', u'assault']
[u'hospit', u'masterplan', u'await', u'fund', u'green', u'light']
[u'howard', u'stand', u'defenc']
[u'humpti', u'reopen']
[u'iemma', u'debnam', u'trade', u'blow', u'crime']
[u'independ', u'beat', u'elect', u'chanc']
[u'indian', u'doctor', u'jail', u'abort', u'femal', u'foetus']
[u'indian', u'weightlift', u'feder', u'suspend']
[u'indigen', u'job', u'group', u'fear', u'fund', u'loss']
[u'indonesian', u'dingo', u'cartoon', u'offens']
[u'inquiri', u'urg', u'circl', u'sentenc']
[u'insur', u'industri', u'profit', u'rebound']
[u'investig', u'launch', u'australian', u'death']
[u'iran', u'reject', u'nuclear', u'demand']
[u'law', u'blue', u'collar', u'support', u'beazley']
[u'law', u'motiv', u'lazi', u'hungov', u'worker']
[u'itali', u'grant', u'afghan', u'christian', u'asylum']
[u'jail', u'threat', u'farmer', u'employ', u'illeg', u'worker']
[u'emerg', u'land']
[u'kangaroo', u'koala', u'home']
[u'kidnap', u'journalist', u'releas', u'iraq']
[u'labor', u'warn', u'possibl', u'commerci', u'sabotag']
[u'landhold', u'assess', u'flood', u'damag']
[u'lappin', u'confid', u'comeback', u'surgeri']
[u'law', u'pass', u'allow', u'boost']
[u'leav', u'chang', u'equal', u'worst']
[u'levi', u'rail', u'upgrad', u'anger', u'grain', u'grower']
[u'lewi', u'dump', u'cullen', u'get']
[u'liber', u'report', u'tourist', u'centr', u'unsaf']
[u'logan', u'mayor', u'candid', u'sorri', u'threat']
[u'long', u'process', u'develop', u'mandarin']
[u'malik', u'save', u'test', u'pakistan']
[u'charg', u'park', u'attack']
[u'jail', u'daughter', u'friend']
[u'jail', u'girlfriend', u'slay']
[u'face', u'court', u'accus', u'beaudesert', u'rape']
[u'factor', u'tunnel', u'collaps']
[u'martin', u'quiet', u'uranium', u'debat', u'rag']
[u'mayfield', u'rehab', u'start']
[u'mays', u'young', u'farewel', u'darwin']
[u'mcclennan', u'reappoint', u'kiwi', u'coach']
[u'mcginti', u'forc', u'guarante', u'patient', u'surgeri']
[u'mclaren', u'driver', u'swerv', u'music', u'chair', u'debat']
[u'medibank', u'privat', u'sale', u'wont', u'affect', u'premium']
[u'medic', u'board', u'pursu', u'patel', u'accus']
[u'student', u'give', u'million', u'dollar', u'incent']
[u'mental', u'man', u'detent', u'question']
[u'minist', u'push', u'nation', u'smartcard']
[u'mix', u'respons', u'fund', u'plan']
[u'hurdl', u'skate', u'park', u'plan']
[u'profession', u'choos', u'time', u'work']
[u'student', u'school', u'tragedi']
[u'ask', u'submit', u'secur', u'check']
[u'say', u'govt', u'miss', u'snowi', u'opportun']
[u'mugab', u'vow', u'resist', u'colonalist']
[u'multin', u'forc', u'probe', u'baghdad', u'death']
[u'armi', u'cadet', u'unit', u'open', u'cowra']
[u'data', u'buoy', u'hous', u'sector']
[u'monopoli', u'game', u'includ', u'toowoomba']
[u'palestinian', u'govern', u'swear']
[u'strategi', u'urg', u'combat', u'bush', u'doctor', u'shortag']
[u'northern', u'grampian', u'shire', u'appoint']
[u'wimmera', u'malle', u'hear', u'upset', u'group']
[u'oconnor', u'replac', u'horan', u'wallabi', u'selector']
[u'field', u'investig', u'begin']
[u'ombudsman', u'rais', u'concern', u'mental']
[u'omodei', u'shoot', u'appeal', u'decis', u'reserv']
[u'oval', u'inadequaci', u'touch', u'footi', u'player', u'turn']
[u'overdos', u'student', u'take', u'drug']
[u'pedestrian', u'hurt', u'tri', u'cross', u'highway']
[u'petrol', u'price', u'hike', u'expect', u'say', u'ract']
[u'pittman', u'appoint', u'tribun']
[u'player', u'leagu', u'odd', u'rise']
[u'move', u'placat', u'aust', u'indonesian', u'relationship']
[u'polic', u'issu', u'photo', u'want', u'child']
[u'polic', u'charg', u'drug', u'crop']
[u'policeman', u'want', u'nightclub', u'shutdown']
[u'polic', u'probe', u'drink', u'spike', u'claim']
[u'polic', u'seek', u'bail', u'streamlin', u'mokbel', u'search']
[u'polic', u'unabl', u'establish', u'motiv', u'steal', u'croc']
[u'potato', u'grower', u'maintain', u'crop', u'product']
[u'plate', u'driver', u'plead', u'guilti', u'fatal', u'crash']
[u'protestor', u'forc', u'closur', u'bangkok', u'shop']
[u'push', u'elect', u'bodi', u'repres', u'indigen']
[u'qanta', u'continu', u'discuss']
[u'polic', u'search', u'steal', u'croc']
[u'qsia', u'say', u'govt', u'part', u'blame', u'restructur', u'need']
[u'ralli', u'urg', u'visa', u'salvadorian', u'famili']
[u'rare', u'finch', u'make', u'comeback']
[u'region', u'equip', u'claim', u'baffl']
[u'region', u'fuel', u'price', u'tip', u'rise']
[u'report', u'rais', u'concern', u'chariti', u'collect']
[u'resid', u'second', u'supermarket', u'fear']
[u'resid', u'await', u'flood', u'insur', u'assess']
[u'resourc', u'stock', u'continu', u'market', u'record']
[u'ruud', u'best', u'europ', u'say', u'ferguson']
[u'sack', u'canberra', u'trucki', u'rehir']
[u'saint', u'subiaco', u'challeng', u'thoma']
[u'salin', u'threaten', u'barossa', u'valley', u'expert']
[u'sartor', u'releas', u'region', u'develop', u'strategi']
[u'scholarship', u'award', u'honour', u'bali', u'bomb']
[u'scramjet', u'engin', u'launch', u'beauti']
[u'second', u'tanzanian', u'boxer', u'disappear', u'melbourn']
[u'secur', u'prioriti', u'isra', u'govern']
[u'shop', u'trial', u'ahead']
[u'sexual', u'assault', u'case', u'manag', u'ombudsman']
[u'sharapova', u'down', u'myskina', u'miami']
[u'shire', u'lament', u'motocross', u'race', u'cancel']
[u'silver', u'gull', u'urban', u'diet']
[u'smartcard', u'hold', u'health', u'info']
[u'socceroo', u'spring', u'world', u'surpris', u'cahil']
[u'solar', u'eclips', u'enthral', u'viewer', u'countri']
[u'specialist', u'court', u'rape', u'victim', u'consid']
[u'suicid', u'bomber', u'miss', u'canadian', u'convoy']
[u'sunbeam', u'sell', u'riverland', u'orchard']
[u'survey', u'show', u'barrier', u'reef', u'larg', u'undamag']
[u'taiwan', u'tell', u'beij', u'drop', u'china', u'stanc']
[u'taylor', u'trial', u'unlik', u'start', u'quick']
[u'taylor', u'take', u'custodi', u'liberia']
[u'telstra', u'urg', u'remov', u'phone']
[u'sprinter', u'confirm', u'stawel', u'gift']
[u'travel', u'urg', u'care', u'truck', u'number']
[u'tree', u'poison', u'mistak', u'prove', u'cost']
[u'ugandan', u'toll', u'wors', u'iraq']
[u'market', u'aust', u'dollar', u'bounc']
[u'offici', u'charg', u'lie', u'sleeper', u'cell', u'case']
[u'council', u'invit', u'game', u'fish']
[u'coastal', u'communiti', u'shut', u'cyclon', u'near']
[u'communiti', u'brace', u'cyclon', u'glenda']
[u'waratah', u'sign', u'caldwel']
[u'student', u'visit', u'crash', u'victim', u'aust']
[u'webber', u'welcom', u'stoddart', u'involv']
[u'windsor', u'back', u'farmer', u'compo']
[u'woman', u'charg', u'surf', u'death']
[u'woman', u'face', u'court', u'high', u'speed', u'chase']
[u'wooli', u'plan', u'rutherford', u'store']
[u'workplac', u'inspector', u'protect', u'worker', u'right']
[u'world', u'bank', u'outlin', u'role', u'australia', u'bird']
[u'worsfold', u'say', u'sorri', u'spastic', u'spray']
[u'abba', u'congratul', u'olmert', u'elect', u'victori']
[u'accus', u'horror', u'murder', u'court', u'hear']
[u'airport', u'blitz', u'target', u'cabbi']
[u'ambul', u'staff', u'hospit', u'access', u'worri']
[u'angri', u'gees', u'give', u'home']
[u'armidal', u'ident', u'join', u'committe', u'age']
[u'armidal', u'prepar', u'graduat', u'influx']
[u'art', u'bodi', u'urg', u'pass', u'resal']
[u'asic', u'get', u'westpoint', u'director', u'asset', u'freez']
[u'asic', u'citigroup', u'court', u'insid']
[u'athlet', u'prepar', u'port', u'macquari', u'ironman']
[u'bahrain', u'ferri', u'accid']
[u'aussi', u'protea', u'pont']
[u'bank', u'america', u'pursu', u'parmalat', u'damag']
[u'beckham', u'determin', u'stay', u'real']
[u'benbrika', u'accus', u'court', u'terror', u'charg']
[u'crowd', u'prepar', u'dirt', u'dust']
[u'biki', u'extradit', u'gold', u'coast', u'brawl']
[u'bowden', u'richmond', u'debut']
[u'plan', u'wheat', u'base', u'ethanol', u'factori']
[u'braidwood', u'list', u'state', u'heritag', u'regist']
[u'brazil', u'world', u'secret', u'plenti']
[u'brisban', u'want', u'athlet', u'championship']
[u'bulldog', u'demolish', u'richmond']
[u'bushfir', u'appeal', u'end', u'today']
[u'busi', u'accus', u'union', u'scare', u'campaign']
[u'busi', u'chamber', u'back', u'firm', u'right', u'sack', u'worker']
[u'centr', u'staff', u'leav', u'hospit', u'toxic', u'fume']
[u'park', u'hamper', u'motel', u'plan']
[u'categori', u'glenda', u'continu', u'coast']
[u'centr', u'flood', u'affect', u'gulf', u'produc']
[u'chamber', u'say', u'chang', u'mirror', u'workchoic']
[u'china', u'taiwan', u'rivalri', u'caus', u'unrest', u'corrupt']
[u'citigroup', u'accus', u'insid', u'trade']
[u'citigroup', u'face', u'insid', u'trade', u'case']
[u'civil', u'liberti', u'group', u'damn', u'phone', u'law']
[u'closer']
[u'closer']
[u'closer']
[u'coalit', u'face', u'voter', u'backlash', u'law']
[u'cole', u'content', u'georgia']
[u'compani', u'urg', u'improv', u'safeti', u'shunt']
[u'concern', u'uranium', u'share', u'price', u'crash']
[u'coron', u'clear', u'telstra', u'network', u'delay']
[u'costello', u'refus', u'critic']
[u'council', u'govt', u'offici', u'meet', u'offend']
[u'councillor', u'quit', u'decis', u'readvertis']
[u'council', u'seek', u'joint', u'local', u'govt', u'review']
[u'council', u'execut', u'director', u'posit']
[u'council', u'beat', u'nelson', u'appeal']
[u'council', u'want', u'hydro', u'cloud']
[u'countdown', u'gaven', u'elect', u'begin']
[u'court', u'find', u'melbourn', u'guilti', u'receiv']
[u'court', u'reject', u'nativ', u'titl', u'compens', u'claim']
[u'court', u'request', u'chang', u'venu', u'taylor', u'trial']
[u'cowboy', u'eel', u'clash', u'webb']
[u'cowboy', u'power', u'eel']
[u'crimin', u'gang', u'sydney', u'shoot']
[u'custom', u'seiz', u'steroid', u'packag', u'melbourn', u'airport']
[u'cyclon', u'glenda', u'downgrad', u'batter', u'onslow']
[u'cyclon', u'glenda', u'karratha']
[u'daili', u'drink', u'health', u'benefit', u'exagger']
[u'rais', u'begin', u'soon', u'mayor']
[u'dfat', u'fear', u'unregist', u'iraq', u'travel']
[u'downer', u'vail', u'statement', u'vindic', u'govt']
[u'emerg', u'hoaxer', u'warn', u'penalti']
[u'employ', u'accus', u'union', u'scaremong']
[u'expect', u'strong', u'wind', u'prompt']
[u'extra', u'polic', u'patrol', u'sydney', u'crime', u'spot']
[u'confirm', u'wembley', u'wont', u'readi', u'year']
[u'famili', u'chang', u'dont', u'field']
[u'fear', u'cut', u'affect', u'region']
[u'fear', u'steal', u'croc', u'safeti']
[u'govt', u'oppos', u'civil', u'union', u'law']
[u'fisher', u'forklift', u'flock', u'portland']
[u'gold', u'coast', u'date', u'agenc', u'investig']
[u'free', u'hostag', u'describ', u'ordeal']
[u'french', u'constitut', u'council', u'approv', u'youth']
[u'flow', u'dubbo', u'tamworth', u'pipelin']
[u'geologist', u'play', u'chanc', u'miner', u'deposit']
[u'glenda', u'peter']
[u'global', u'ethanol', u'target', u'major', u'stake']
[u'govt', u'ask', u'green', u'light', u'commerci', u'harvest']
[u'govt', u'dept', u'ban', u'smoke', u'break']
[u'govt', u'pick', u'nuclear', u'dump', u'site', u'senat']
[u'govt', u'seek', u'improv', u'fraser', u'coast', u'birth']
[u'govt', u'stand', u'school', u'fund', u'plan']
[u'graphit', u'bat', u'withdraw', u'octob']
[u'green', u'group', u'warn', u'region', u'plan', u'backlash']
[u'complet', u'wast', u'money']
[u'domin', u'meet', u'aust', u'treasur']
[u'hama', u'defend', u'suicid', u'bomb']
[u'henri', u'promis', u'decis', u'futur']
[u'highway', u'claim', u'live']
[u'honda', u'lead', u'open', u'practic', u'session']
[u'hous', u'industri', u'welcom', u'encourag', u'figur']
[u'howard', u'surpris', u'cole', u'request']
[u'hull', u'air', u'opposit', u'snowi', u'sale']
[u'indonesian', u'king', u'memori', u'possibl', u'terrorist']
[u'inflat', u'fear', u'wall', u'street']
[u'inquiri', u'reveal', u'region', u'dental', u'woe']
[u'iran', u'fire', u'missil', u'evad', u'radar', u'report']
[u'iran', u'sanction', u'idea', u'iaea', u'chief']
[u'ironmen', u'splash', u'surf', u'lifesav']
[u'irrig', u'hold', u'water', u'futur', u'legal', u'action']
[u'japan', u'opposit', u'leader', u'quit', u'fake', u'email']
[u'kangaroo', u'resid', u'face', u'power', u'disrupt']
[u'kean', u'get', u'unit', u'testimoni']
[u'land', u'specul', u'wont', u'influenc', u'govt', u'yandina']
[u'larri', u'take', u'toll', u'sugar', u'industri']
[u'chang', u'need', u'allow', u'lang', u'park', u'cyclon']
[u'lift', u'death', u'prompt', u'polic', u'safeti', u'warn']
[u'magistr', u'clear', u'china', u'tour', u'tiger', u'employe']
[u'accus', u'internet', u'child', u'porn', u'offenc']
[u'die', u'highway', u'crash']
[u'drown', u'gold', u'coast']
[u'guilti', u'murder', u'girlfriend', u'babi']
[u'market', u'end', u'week', u'high']
[u'mayor', u'see', u'stabil', u'appoint']
[u'mayor', u'want', u'patholog', u'unit', u'normal']
[u'mix', u'reaction', u'airport', u'card']
[u'mokbel', u'get', u'year', u'jail']
[u'charg', u'like', u'drink', u'drive', u'accus']
[u'incent', u'need', u'biofuel']
[u'motel', u'loss', u'worri', u'tourism', u'offici']
[u'call', u'stronger', u'consum', u'protect', u'law']
[u'nacewa', u'help', u'blue', u'beat', u'bull']
[u'nation', u'reject', u'liquor', u'licens', u'claim']
[u'gold', u'start', u'extract']
[u'liber', u'leader', u'shun', u'aggress', u'debat']
[u'mules', u'altern', u'help', u'lamb', u'fatter']
[u'polic', u'district', u'prompt', u'youth', u'focus']
[u'consid', u'purchas', u'hart', u'work']
[u'nickel', u'term', u'refer', u'approv']
[u'nightclub', u'lockout', u'look', u'like', u'continu']
[u'quick', u'decis', u'wagga', u'mental', u'health', u'plan']
[u'odd', u'treasur', u'revenu']
[u'parliament', u'hear', u'pros', u'con', u'ban', u'kava']
[u'union', u'urg', u'govt', u'help', u'protect', u'worker']
[u'appl', u'grower', u'continu', u'fight', u'access', u'aust']
[u'opposit', u'want', u'australian', u'nuclear', u'watchdog']
[u'overload', u'blame', u'bahrain', u'boat', u'accid']
[u'pack', u'plant', u'accident', u'investig', u'say']
[u'palm', u'council', u'reject', u'home', u'offer']
[u'pentagon', u'prepar', u'gigant', u'bunker', u'buster', u'test']
[u'perman', u'riverland', u'magistr', u'start', u'work']
[u'pie', u'prim', u'mount', u'challeng', u'buckley']
[u'piggin', u'deni', u'access', u'takeov', u'vote']
[u'pilot', u'kill', u'brisban', u'plane', u'crash']
[u'break', u'growth', u'log', u'promis']
[u'expect', u'minist', u'cole', u'inquiri']
[u'expect', u'minist', u'submit', u'cole', u'inquiri']
[u'polic', u'cannabi', u'crop', u'week']
[u'port', u'piri', u'prepar', u'master', u'game', u'influx']
[u'power', u'outag', u'caus', u'major', u'sydney', u'airport', u'delay']
[u'pressur', u'mount', u'iran', u'curb', u'nuclear', u'ambit']
[u'protea', u'lose', u'earli', u'wicket']
[u'protea', u'lunch']
[u'push', u'stonefruit', u'export', u'protocol']
[u'question', u'waikeri', u'price']
[u'radic', u'chang', u'wheat', u'export', u'cost']
[u'raina', u'spur', u'india', u'wicket', u'victori']
[u'rain', u'see', u'time', u'farmer']
[u'ratepay', u'watch', u'council', u'manag', u'cost']
[u'say', u'critic', u'unfair']
[u'rehab', u'centr', u'patient']
[u'reptil', u'keeper', u'hand', u'child', u'eat', u'snake']
[u'boost', u'basic', u'train']
[u'rice', u'shrug', u'english', u'protest']
[u'rivaldo', u'stay', u'olympiako']
[u'rooki', u'drum', u'includ', u'docker', u'squad']
[u'amnesti', u'end', u'today']
[u'liber', u'urg', u'leadership', u'ballot']
[u'salvo', u'close', u'employ', u'plus', u'branch']
[u'sartor', u'leav', u'link', u'road', u'talk', u'debus']
[u'satellit', u'fault', u'disrupt', u'optus', u'servic']
[u'school', u'drug', u'overdos', u'prompt', u'rule']
[u'scientist', u'develop', u'clean', u'energi', u'cocktail']
[u'score', u'drown', u'boat', u'sink', u'bahrain']
[u'score', u'kill', u'quak', u'strike', u'iran']
[u'chang', u'meet', u'focus', u'infrastructur', u'fund']
[u'search', u'begin', u'miss', u'culburra', u'beach']
[u'seat', u'museum', u'chariti', u'flight', u'scarc']
[u'expect', u'lengthi', u'glenda', u'clean']
[u'shear', u'cours', u'target', u'keen', u'teen']
[u'shock', u'burglar', u'run', u'sumo']
[u'site', u'select', u'hospit']
[u'slipper', u'hop', u'late']
[u'sniffer', u'dog', u'help', u'cane', u'toad', u'fight']
[u'solar', u'thermal', u'power', u'tout', u'energi', u'solut']
[u'solskjaer', u'get', u'unit', u'deal']
[u'southbi', u'halbish', u'announc', u'retir']
[u'lanka', u'rule', u'parti', u'head', u'local', u'elect']
[u'student', u'attend', u'earn', u'perman']
[u'suicid', u'bomber', u'kill', u'west', u'bank']
[u'sydney', u'airport', u'power', u'restor', u'delay', u'expect']
[u'tamworth', u'host', u'rotari', u'confer']
[u'teacher', u'jail', u'student', u'abus']
[u'team', u'question', u'worth', u'friday', u'practic']
[u'teen', u'get', u'year', u'brisban', u'shoe', u'robberi']
[u'terror', u'fear', u'rais', u'king', u'memori', u'near']
[u'test', u'driver', u'fastest', u'australian', u'practic']
[u'test', u'continu', u'fatal', u'hous', u'blaze']
[u'thoma', u'sentenc', u'year', u'terror', u'offenc']
[u'tongan', u'king', u'appoint', u'common']
[u'tourism', u'welcom', u'crackdown', u'rogu', u'oper']
[u'tourism', u'crisi', u'meet', u'hold', u'wake', u'cyclon']
[u'tourist', u'ship', u'sink', u'bahrain']
[u'trio', u'question', u'anti', u'terror', u'oper']
[u'uncertainti', u'surround', u'tunarama', u'quest']
[u'union', u'seek', u'mourilyan', u'assur']
[u'union', u'want', u'smoke', u'breach', u'penalti', u'clarifi']
[u'seek', u'latrob', u'valley', u'medic', u'school']
[u'hostag', u'free', u'iraq']
[u'reach', u'agreement', u'japan', u'reopen', u'beef']
[u'vaccin', u'program', u'larri', u'region']
[u'vail', u'downer', u'happi', u'appear', u'cole', u'inquiri']
[u'nistelrooy', u'unit', u'chase']
[u'escap', u'worst', u'cyclon', u'glenda']
[u'wallac', u'claim', u'insid', u'knowledg', u'bulldog']
[u'waratah', u'underestim', u'cheetah']
[u'waratah', u'send', u'cheetah', u'pack']
[u'wast', u'dump', u'oppon', u'urg', u'rethink', u'cost', u'fee']
[u'water', u'restrict', u'loom', u'irrig']
[u'webber', u'hop', u'condit']
[u'work', u'feud', u'treasur']
[u'wembley', u'delay', u'concert', u'schedul']
[u'wembley', u'wont', u'readi', u'footbal', u'year']
[u'wendel', u'sailor', u'chris', u'whitak', u'ewen', u'mckenzi']
[u'wollemi', u'pin', u'sale', u'celebr']
[u'woman', u'jail', u'daughter', u'tortur']
[u'woman', u'jail', u'famili', u'youth', u'servic', u'blaze']
[u'yankunytjatjara', u'peopl', u'devast', u'nativ']
[u'arrest', u'melbourn', u'terror', u'charg']
[u'alonso', u'confid', u'qualifi', u'fastest']
[u'amphetamin', u'death', u'climb', u'aust']
[u'auschwitz', u'escape', u'alert', u'world', u'die']
[u'beatti', u'fear', u'elect', u'strike']
[u'beauchamp', u'win', u'central', u'coast', u'marin', u'medal']
[u'bomber', u'upset', u'swan']
[u'brett', u'kimmorley', u'adam', u'dyke']
[u'button', u'claim', u'pole', u'melbourn']
[u'stillbirth', u'autopsi']
[u'captain', u'detain', u'bahrain', u'boat', u'accid']
[u'cat', u'torch', u'woeful', u'lion']
[u'chirac', u'okay', u'divis', u'french', u'youth']
[u'citigroup', u'accus', u'insid', u'trade']
[u'citigroup', u'reject', u'insid', u'trade', u'claim']
[u'clark', u'lead', u'attack', u'protea']
[u'clinton', u'schifcofsk', u'simon', u'woolford', u'learoyd']
[u'closer', u'abcnew']
[u'closer']
[u'counter', u'terror', u'polic', u'rule']
[u'crusad', u'capitalis', u'chanc', u'beat', u'hurrican']
[u'darwin', u'benefit', u'timor', u'site']
[u'disagr', u'wwii', u'tower', u'plan']
[u'downer', u'seek', u'distanc', u'govt', u'aust', u'cartoon']
[u'eel', u'suffer', u'injuri', u'woe']
[u'fenc', u'fall', u'pedestrian', u'injur']
[u'ferrari', u'face', u'offic']
[u'flood', u'applic', u'championship']
[u'fifa', u'name', u'refere', u'world']
[u'forc', u'stormer', u'nail', u'biter']
[u'french', u'union', u'reject', u'chirac', u'compromis']
[u'fruit', u'grower', u'push', u'appl']
[u'gaza', u'blast', u'spark', u'clash']
[u'gerrard', u'irk', u'diver']
[u'glenda', u'spar', u'resourc', u'compani']
[u'govt', u'condemn', u'tasteless', u'cartoon']
[u'govt', u'dept', u'introduc', u'smoke']
[u'govt', u'underestim', u'reaction', u'papuan', u'visa']
[u'govt', u'urg', u'plan', u'hobart', u'hospit']
[u'urg', u'action', u'dwindl', u'doctor', u'number']
[u'hama', u'order', u'gunmen', u'street', u'clash']
[u'heidfeld', u'fastest', u'melbourn', u'track']
[u'homer', u'reveal', u'simpson', u'movi']
[u'indigen', u'health', u'worker', u'gain', u'medicar', u'recognit']
[u'indonesian', u'bird', u'toll', u'rise']
[u'indonesian', u'polic', u'doubt', u'attack', u'warn']
[u'industri', u'condemn', u'mislead', u'forestri', u'claim']
[u'investig', u'probe', u'brisban', u'plane', u'crash']
[u'iran', u'quak', u'toll', u'rise']
[u'concern', u'fuel', u'elect', u'loss', u'hodgman']
[u'inspector', u'toothless', u'union']
[u'israel', u'medic', u'mull', u'long', u'term', u'care', u'sharon']
[u'jayasuriya', u'announc', u'test', u'cricket', u'retir']
[u'maxwel', u'speak', u'adam', u'gilchrist']
[u'kalli', u'accept', u'verdict', u'controversi', u'dismiss']
[u'kangaroo', u'strong', u'power']
[u'kill', u'lade', u'inspir', u'dalai', u'lama']
[u'larg', u'turnout', u'record', u'samoan', u'poll']
[u'polish', u'communist', u'leader', u'face', u'charg']
[u'lauaki', u'inspir', u'waikato', u'close', u'otago']
[u'ljubic', u'crush', u'nalbandian', u'reach', u'miami', u'final']
[u'long', u'mobil', u'phone', u'lift', u'tumour', u'risk', u'studi']
[u'majest', u'feder', u'breez', u'miami', u'final']
[u'major', u'cobalt', u'plan']
[u'man', u'composur', u'beat', u'rooster']
[u'mayer', u'sue', u'wada', u'chief', u'drug']
[u'meet', u'protest', u'marin', u'park', u'propos']
[u'melbourn', u'charg', u'terror', u'offenc']
[u'melbourn', u'charg', u'terror', u'offenc']
[u'melbourn', u'trio', u'charg', u'terror', u'offenc']
[u'melbourn', u'trio', u'tie', u'terror', u'suspect', u'lawyer', u'say']
[u'mental', u'health', u'team', u'join', u'larri', u'relief', u'effort']
[u'mickelson', u'charg', u'clear', u'georgia']
[u'abattoir', u'sack', u'employe']
[u'treasur', u'continu']
[u'releas', u'emerg', u'call']
[u'ochoa', u'retain', u'lead', u'california']
[u'share', u'pull', u'stock']
[u'opposit', u'posit', u'favour', u'result', u'gaven']
[u'opposit', u'urg', u'immedi', u'action']
[u'perth', u'firm', u'eye', u'timor', u'field']
[u'plane', u'carri', u'peopl', u'disappear', u'brazil']
[u'prehistor', u'wollemi', u'pine', u'go', u'sale']
[u'princ', u'stand', u'firm', u'south', u'africa']
[u'nation', u'claim', u'victori', u'gaven', u'elect']
[u'quak', u'hit', u'eastern', u'indonesia', u'casualti', u'report']
[u'quentin', u'hull', u'speak', u'nigel', u'lappin']
[u'racq', u'rais', u'brisban', u'toll', u'bridg', u'concern']
[u'research', u'show', u'daili', u'alcohol', u'health', u'benefit']
[u'resid', u'group', u'make', u'nois', u'dragway', u'plan']
[u'rice', u'acknowledg', u'thousand', u'mistak', u'iraq']
[u'rice', u'acknowledg', u'mistak', u'iraq']
[u'build', u'approv', u'rise']
[u'schifcofsk', u'heroic', u'sink', u'panther']
[u'search', u'continu', u'survivor', u'iran', u'quak']
[u'seventi', u'dead', u'injur', u'iran', u'earthquak']
[u'shark', u'hold', u'winless', u'bunni']
[u'spacecraft', u'carri', u'brazilian', u'astronaut', u'dock']
[u'swan', u'feel', u'extra', u'pressur']
[u'team', u'find', u'sourc', u'nile']
[u'terror', u'arrest', u'stem', u'signific', u'threat']
[u'thai', u'elect', u'expect', u'eas', u'polit']
[u'thai', u'consid', u'state', u'emerg', u'ahead']
[u'arrest', u'melbourn', u'terror', u'charg']
[u'melbourn', u'face', u'terror', u'relat', u'charg']
[u'charg', u'tough', u'terror', u'law']
[u'time', u'mechan', u'seek', u'lofti']
[u'toyn', u'deni', u'ignor', u'nurs', u'safeti']
[u'hospit', u'carpark', u'shoot']
[u'paper', u'mark', u'april', u'penguin', u'visit']
[u'resolut', u'prepar', u'taylor', u'crime', u'trial']
[u'back', u'indonesia', u'terror', u'warn']
[u'cut', u'contact', u'hama']
[u'offer', u'quak', u'strike', u'iran']
[u'offer', u'iran', u'earthquak']
[u'vail', u'downer', u'statement', u'vindic', u'govt']
[u'webber', u'lift', u'local', u'hop']
[u'webber', u'rule', u'secur', u'pole']
[u'wenger', u'pledg', u'long', u'term', u'futur', u'gunner']
[u'wenger', u'want', u'fifa', u'lead', u'dive']
[u'wheat', u'grower', u'suppli', u'ethanol', u'plant']
[u'woodsid', u'secur', u'mauritanian', u'project']
[u'workplac', u'smoke', u'ban', u'spread', u'group']
[u'abbott', u'stoke', u'medibank', u'sale', u'specul']
[u'warn', u'china', u'uranium', u'deal']
[u'alonso', u'win', u'dramat', u'grand', u'prix']
[u'andrew', u'concern', u'workplac', u'sack']
[u'anniversari', u'king', u'tragedi', u'mark', u'memori']
[u'aussi', u'revert', u'open', u'race']
[u'aussi', u'refere', u'choos', u'world', u'duti']
[u'aust', u'china', u'sign', u'uranium', u'agreement']
[u'author', u'issu', u'poison', u'mushroom', u'warn']
[u'beatti', u'play', u'elect', u'loss']
[u'bekel', u'win', u'fifth', u'world', u'cross', u'countri', u'titl']
[u'hornbi', u'nathan', u'brown', u'wayn', u'bennett']
[u'blast', u'chines', u'explos', u'plant', u'kill']
[u'blue', u'surpris', u'winner', u'demon']
[u'bomb', u'landmin', u'kill', u'pakistan']
[u'button', u'melbourn', u'hop', u'smoke']
[u'aborigin', u'studi', u'compulsori']
[u'capsiz', u'boat', u'licens', u'offici']
[u'cathol', u'mark', u'anniversari', u'pope', u'death']
[u'central', u'european', u'resid', u'brace', u'flood']
[u'chelsea', u'hold', u'draw', u'battl', u'birmingham']
[u'child', u'care', u'hotlin', u'offer', u'vacanc', u'detail']
[u'china', u'agre', u'safeguard', u'ensur', u'aust', u'uranium']
[u'chines', u'deal', u'lift', u'aust', u'uranium', u'limit', u'miner']
[u'chopper', u'rescu', u'strand', u'tourist']
[u'closer', u'abcnew']
[u'closer']
[u'common', u'virus', u'link', u'stillbirth']
[u'craig', u'bellami', u'sheen']
[u'cruis', u'ship', u'death', u'prompt', u'sniffer', u'plan']
[u'eckstein', u'win', u'ironman', u'titl']
[u'elliott', u'laud', u'inspir', u'schifcofsk']
[u'embassi', u'condemn', u'indonesian', u'aust', u'cartoon']
[u'cartoon', u'indonesia', u'labor', u'say']
[u'england', u'beat', u'fiji', u'seven', u'thriller']
[u'england', u'question', u'pittman', u'offer']
[u'europ', u'battl', u'rise', u'floodwat']
[u'fatah', u'gunmen', u'defi', u'order', u'stay', u'street']
[u'fear', u'contractor', u'road', u'work', u'contract']
[u'ferrari', u'suffer', u'weekend', u'forget']
[u'teen', u'stab', u'brisban']
[u'come', u'bird', u'fli']
[u'free', u'report', u'forc', u'anti', u'video']
[u'govt', u'hasti', u'public', u'transport', u'technolog']
[u'govt', u'sign', u'china', u'uranium', u'deal']
[u'graffiti', u'artist', u'seek', u'skate', u'park', u'design']
[u'green', u'push', u'probe', u'forestri', u'group']
[u'gunmen', u'protest', u'palenstinian']
[u'hawk', u'hold', u'docker', u'surg']
[u'hundr', u'ralli', u'condemn', u'alleg', u'abus', u'west']
[u'hussey', u'rescu', u'australia', u'final', u'test']
[u'iemma', u'commit', u'curb', u'sydney', u'violenc']
[u'indonesian', u'plan', u'visit', u'australia', u'papuan']
[u'indonesian', u'polic', u'tighten', u'secur', u'amid', u'attack']
[u'innisfail', u'power', u'suppli', u'reliabl', u'improv']
[u'investig', u'launch', u'meat', u'worker']
[u'iraqi', u'insurg', u'claim', u'helicopt', u'down']
[u'iraqi', u'reject', u'resign', u'call']
[u'iraq', u'shiit', u'resign']
[u'iraq', u'shiit', u'urg', u'quit']
[u'sack', u'prompt', u'state', u'probe']
[u'ivan', u'cleari', u'michael', u'hagan']
[u'japanes', u'minist', u'flag', u'iraq', u'pullout', u'delay']
[u'jayasuriya', u'quit', u'world']
[u'maxwel', u'speak', u'michael', u'hussey']
[u'john', u'miss', u'warrior', u'encount']
[u'juve', u'close', u'titl', u'despit', u'draw']
[u'kuznetsova', u'beat', u'sharapova', u'claim', u'miami', u'titl']
[u'langer', u'doubt', u'remaind', u'test']
[u'lib', u'urg', u'scrap', u'communiti', u'forestri', u'support']
[u'burn', u'nudist', u'resort', u'accid']
[u'die', u'doubl', u'shoot']
[u'matthew', u'elliott', u'john', u'lang']
[u'matt', u'orford', u'craig', u'fitzgibbon', u'ricki', u'stuart']
[u'meatwork', u'sack', u'highlight', u'impact', u'labor']
[u'meatwork', u'sack', u'concern', u'andrew']
[u'mechan', u'problem', u'webber', u'dream']
[u'memori', u'hold', u'nia', u'king', u'victim']
[u'memori', u'mark', u'anniverari', u'king', u'tragedi']
[u'memori', u'mark', u'king', u'crash']
[u'memori', u'mark', u'king', u'tragedi']
[u'miner', u'predict', u'china', u'deal', u'lift', u'uranium']
[u'motorist', u'warn', u'death', u'road']
[u'mourinho', u'scoff', u'ferguson', u'dream', u'snatch']
[u'condemn', u'marin', u'park', u'protest']
[u'nation', u'gaven', u'elect']
[u'gaven', u'go', u'market', u'leader']
[u'look', u'dragon', u'buri', u'bronco']
[u'treat', u'capsicum', u'spray', u'incid']
[u'wound', u'thailand', u'elect', u'bomb']
[u'combat', u'memori', u'unveil', u'sydney']
[u'crack', u'health', u'sector', u'fraud']
[u'organ', u'donor', u'honour']
[u'papuan', u'protest', u'wont', u'affect', u'relat', u'rudd']
[u'plane', u'crash', u'kill', u'brazil']
[u'rule', u'special', u'uranium', u'deal', u'china']
[u'polic', u'investig', u'hospit', u'child', u'assault']
[u'polic', u'warn', u'home', u'secur', u'break']
[u'politician', u'pedal', u'diabet']
[u'poll', u'open', u'thai', u'elect']
[u'protest', u'highlight', u'west', u'papuan', u'plight']
[u'rice', u'meet', u'muslim', u'leader', u'england']
[u'rice', u'straw', u'iraq', u'break', u'govt', u'deadlock']
[u'rigor', u'safeguard', u'china', u'uranium', u'deal']
[u'ronaldo', u'help', u'real', u'draw', u'barcelona']
[u'rule', u'parti', u'win', u'samoan', u'poll']
[u'sack', u'leader', u'support', u'storm', u'offic', u'shoot']
[u'communiti', u'forget', u'multicultur', u'root']
[u'shark', u'beat', u'red', u'super', u'thriller']
[u'shot', u'hear', u'sydney', u'west']
[u'lankan', u'communiti', u'welcom', u'templ', u'open']
[u'superannu', u'law', u'caus', u'hardship']
[u'survey', u'predict', u'doctor', u'exodus']
[u'sydney', u'hous', u'cinema', u'close', u'door']
[u'taliban', u'insurg', u'kill', u'afghan', u'policemen']
[u'teen', u'driver', u'kill', u'pile']
[u'territorian', u'warn', u'illeg', u'wildlif', u'trade']
[u'thailand', u'await', u'elect', u'result']
[u'thailand', u'go', u'poll']
[u'thai', u'militari', u'leader', u'call', u'protest', u'stop']
[u'tiger', u'slack']
[u'toyn', u'push', u'hospit', u'secur', u'escort']
[u'union', u'launch', u'websit', u'grievanc']
[u'unit', u'close', u'chelsea']
[u'chopper', u'crash', u'iraq']
[u'want', u'prolong', u'need', u'guantanamo', u'rice']
[u'scientist', u'claim', u'test', u'stem', u'cell', u'breakthrough']
[u'vatican', u'rush', u'beatifi', u'john', u'paul']
[u'violenc', u'escal', u'turkey']
[u'govt', u'stand', u'uranium', u'mine', u'polici']
[u'warlord', u'taylor', u'arrest']
[u'warrior', u'capitalis', u'johnss', u'withdraw']
[u'wilder', u'societi', u'elect', u'action']
[u'woman', u'die', u'doubl', u'shoot']
[u'accus', u'drug', u'traffick', u'link', u'bali']
[u'accus', u'terrorist', u'frame']
[u'campaign', u'lure', u'sydneysid']
[u'opposit', u'call', u'suspens', u'workplac']
[u'barrier', u'competit', u'wood', u'chop']
[u'airlin', u'stay', u'termin']
[u'assault', u'indic', u'nightclub', u'behaviour']
[u'aussi', u'fight', u'test']
[u'aust', u'china', u'sign', u'uranium', u'safeguard', u'agreement']
[u'australia', u'china', u'sign', u'landmark', u'uranium', u'export', u'deal']
[u'australian', u'await', u'hong', u'kong', u'drug', u'traffic']
[u'aust', u'sign', u'uranium', u'export', u'deal', u'china']
[u'aust', u'team', u'prepar', u'north', u'pole', u'trek']
[u'aust', u'trio', u'jail', u'hong', u'kong', u'drug', u'traffic']
[u'bechtel', u'plant', u'leak', u'confirm']
[u'bennett', u'high', u'prais', u'hodg']
[u'better', u'diseas', u'report', u'system', u'urgent', u'need']
[u'crowd', u'see', u'wild', u'outback']
[u'biki', u'court', u'kickbox', u'event', u'violenc']
[u'blast', u'shootout', u'kill', u'pakistani', u'tribal', u'area']
[u'blue', u'mountain', u'track', u'repair', u'prove', u'arduous', u'task']
[u'bomb', u'kurdish', u'riot', u'turkey']
[u'cabinet', u'declar', u'sharon', u'premiership', u'report']
[u'call', u'alcohol', u'premix', u'ban', u'underag']
[u'canberra', u'cyclist', u'win', u'gillett', u'scholarship']
[u'central', u'australian', u'cattl', u'head', u'west']
[u'centrelink', u'crack', u'riverland', u'welfar', u'cheat']
[u'chamber', u'predict', u'strong', u'econom', u'growth']
[u'chanc', u'talk', u'liquor', u'law']
[u'cheetah', u'oelschig', u'miss', u'match', u'strike']
[u'china', u'australia', u'uranium', u'deal', u'split', u'labor']
[u'closer']
[u'closer', u'abcnew']
[u'closer', u'georg']
[u'cole', u'question', u'unsurpris', u'say', u'downer']
[u'commiss', u'declar', u'final', u'elect', u'result']
[u'concern', u'mount', u'wool', u'qualiti']
[u'confer', u'highlight', u'farm', u'mental', u'health', u'issu']
[u'cosgrov', u'prais', u'north', u'cyclon', u'prepar']
[u'costello', u'hang', u'comparison', u'studi']
[u'council', u'sack', u'creat', u'stadium', u'concern']
[u'council', u'deleg', u'want', u'link', u'road', u'fund']
[u'council', u'seek', u'continu', u'drought']
[u'council', u'beat', u'rail', u'link']
[u'confid', u'refresh', u'eagl', u'conquer', u'crow']
[u'cricket', u'chief', u'fret', u'player', u'burnout']
[u'croker', u'store', u'reopen', u'year', u'cyclon', u'ingrid']
[u'crow', u'smoke', u'hometown', u'fume']
[u'crow', u'overpow', u'magpi']
[u'crow', u'signal', u'pressur', u'game']
[u'cultur', u'toler', u'book', u'target', u'primari', u'school']
[u'cyclist', u'finish', u'long', u'ride']
[u'cyclon', u'damag', u'water', u'suppli', u'fix']
[u'defenc', u'chief', u'stand', u'king', u'chopper']
[u'dept', u'leas', u'research', u'station']
[u'solv', u'decad', u'rape', u'case']
[u'doubt', u'cast', u'koala']
[u'downer', u'talk', u'chines', u'uranium', u'deal', u'complianc']
[u'download', u'push', u'song', u'chart']
[u'drill', u'result', u'highlight', u'uranium', u'mine']
[u'driver', u'warn', u'rise', u'fuel', u'price']
[u'drug', u'centr', u'fear', u'sweet', u'alcohol', u'drink', u'target']
[u'dun', u'road', u'work', u'worri', u'tradit', u'owner']
[u'earli', u'hobart', u'settlement', u'prepar', u'facelift']
[u'elect', u'rep', u'back', u'plan', u'permit', u'stoush']
[u'timor', u'unveil', u'plan', u'combat', u'poverti']
[u'fair', u'continu', u'sponsor', u'need']
[u'falun', u'gong', u'claim', u'victori', u'freedom', u'express']
[u'famili', u'feud', u'brawl', u'polic']
[u'final', u'seat', u'decid', u'upper', u'hous']
[u'fisher', u'want', u'exit', u'plan', u'detail']
[u'forum', u'focus', u'popul', u'boom']
[u'fourth', u'person', u'charg', u'relat', u'rutherford']
[u'fraser', u'beat', u'retain', u'seat']
[u'fund', u'outback', u'highway', u'work']
[u'good', u'samaritan', u'bash', u'anger', u'bishop']
[u'good', u'servic', u'price', u'rise']
[u'govern', u'investig', u'abattoir', u'sack']
[u'govt', u'accus', u'plan', u'help', u'wind', u'farm']
[u'govt', u'lobbi', u'chines', u'premier', u'death', u'penalti']
[u'govt', u'seek', u'time', u'conclus', u'china', u'free', u'trade']
[u'govt', u'staffer', u'win', u'assembl', u'seat']
[u'govt', u'china', u'uranium', u'stanc']
[u'govt', u'urg', u'time', u'negoti', u'china']
[u'concern', u'medicin', u'effect']
[u'grain', u'grower', u'expect', u'approach', u'plant']
[u'group', u'push', u'ahead', u'biofuel', u'trial']
[u'health', u'minist', u'seek', u'way', u'fight', u'alcohol']
[u'hemp', u'possibl', u'altern', u'farmer']
[u'holder', u'mickelson', u'romp', u'victori']
[u'howard', u'seal', u'china', u'nuclear', u'safeguard', u'deal']
[u'hunter', u'rainfal', u'level']
[u'iemma', u'say', u'thank', u'canberra', u'campaign']
[u'india', u'take', u'evas', u'action', u'googl', u'earth']
[u'indigen', u'group', u'threaten', u'legal', u'action', u'gold']
[u'iran', u'claim', u'fastest', u'underwat', u'missil']
[u'iraq', u'tell', u'run', u'time', u'form']
[u'law', u'author', u'admit', u'work', u'condit', u'abolish']
[u'law', u'fail', u'worker', u'smith']
[u'italo', u'australian', u'gear', u'oversea', u'elect']
[u'rise', u'hint', u'labour', u'market', u'upturn']
[u'judg', u'notic', u'impact', u'climat', u'chang', u'wine']
[u'labor', u'accus', u'govt', u'cynic']
[u'labor', u'divid', u'china', u'uranium', u'deal']
[u'labor', u'fear', u'gold', u'coast', u'seat', u'wipe']
[u'larg', u'govt', u'depart', u'introduc', u'smoke']
[u'lawyer', u'highlight', u'high', u'asbesto', u'relat']
[u'lawyer', u'push', u'communiti', u'protest', u'protect']
[u'loxton', u'woman', u'name', u'citizen']
[u'bash', u'tie', u'leav', u'burn', u'build']
[u'seek', u'compo', u'wagga', u'polic', u'arrest']
[u'manufactur', u'activ', u'expand']
[u'matthew', u'philosoph', u'lion', u'loss']
[u'medic', u'school', u'decis', u'loom']
[u'meet', u'discuss', u'wiluna', u'hous', u'plan']
[u'memori', u'honour', u'leprosi', u'victim']
[u'arrest', u'alleg', u'groceri', u'theft', u'scam']
[u'menkin', u'back', u'local', u'bauxit', u'process']
[u'milit', u'palestinian', u'readi', u'attack', u'israel']
[u'militari', u'memorabilia', u'sell', u'widow']
[u'minist', u'announc', u'probe', u'rural', u'ambul']
[u'mix', u'view', u'mandatori', u'age', u'care', u'abus']
[u'injuri', u'fear', u'langer', u'kasper']
[u'mortlock', u'sign', u'brumbi', u'deal']
[u'mortlock', u'renew', u'brumbi']
[u'motel', u'evacu', u'blaze', u'claim', u'hous']
[u'music', u'singl', u'stag', u'comeback']
[u'newton', u'vie', u'gold', u'logi']
[u'nicotin', u'interfer', u'cancer', u'drug', u'studi', u'find']
[u'probe', u'hill', u'clash']
[u'govt', u'slam', u'leak', u'disclosur', u'delay']
[u'weigh', u'real', u'estat', u'vendor', u'disclosur', u'statement']
[u'appoint', u'governor', u'general']
[u'food', u'inquiri', u'miss', u'howard', u'statement', u'say']
[u'opposit', u'call', u'releas', u'govt', u'report']
[u'opposit', u'demand', u'releas', u'report']
[u'opposit', u'unveil', u'spend', u'transpar', u'plan']
[u'organis', u'happi', u'surf', u'contest']
[u'ozon', u'hole', u'close', u'greenhous', u'gas', u'wors']
[u'paedophil', u'plead', u'guilti', u'multipl', u'charg']
[u'pair', u'accus', u'throw', u'firework']
[u'pair', u'surviv', u'highway', u'roll']
[u'papuan', u'land', u'melbourn']
[u'park', u'victoria', u'say', u'snowi', u'river', u'entranc']
[u'pearc', u'flay', u'spineless', u'citi']
[u'pietersen', u'india']
[u'plan', u'afoot', u'tennant', u'creek', u'servic']
[u'plantat', u'tree', u'contribut', u'greenhous']
[u'play', u'see', u'webb', u'break', u'drought']
[u'polic', u'drink']
[u'polic', u'hunt', u'knife', u'bandit']
[u'polic', u'investig', u'attack', u'student']
[u'polic', u'investig', u'fatal', u'crash', u'maitland']
[u'polic', u'investig', u'fatal', u'highway', u'crash']
[u'polic', u'investig', u'mildura', u'assault']
[u'polic', u'probe', u'knife', u'threat', u'report']
[u'polic', u'seek', u'steal', u'violent', u'robberi']
[u'polic', u'seek', u'wit', u'sydney', u'gunshot', u'report']
[u'polic', u'hunt', u'bowravill', u'thiev']
[u'polic', u'road', u'crash', u'victim']
[u'poll', u'thai', u'voter', u'divid']
[u'premier', u'stand', u'firm', u'uranium', u'mine']
[u'protea', u'test']
[u'protest', u'continu', u'wooli', u'open', u'door']
[u'publican', u'train', u'apprentic', u'beer', u'drink']
[u'public', u'urg', u'join', u'guard', u'group']
[u'push', u'maintain', u'student', u'guild']
[u'qanta', u'mainten', u'decis', u'australian']
[u'upbeat', u'bauxit', u'deal', u'talk', u'china']
[u'red', u'send', u'injur', u'pair', u'home']
[u'relay', u'fundrais', u'help', u'boost', u'cancer', u'servic']
[u'report', u'prais', u'council', u'civic', u'centr', u'fund', u'plan']
[u'research', u'reveal', u'higher', u'rural', u'violenc', u'rat']
[u'resid', u'koala', u'conserv', u'plan']
[u'resid', u'seek', u'cull']
[u'resourc', u'stock', u'fuel', u'market']
[u'retail', u'crackdown', u'deter', u'youth', u'smoke', u'cancer']
[u'rice', u'urg', u'progress', u'iraq', u'polit', u'process']
[u'road', u'water', u'head', u'agenda', u'thuringowa', u'mayor']
[u'roger', u'rule', u'crusad', u'clash']
[u'roster', u'revamp', u'polic']
[u'erupt', u'wwii', u'transmiss', u'tower']
[u'member', u'seek', u'answer', u'state', u'execut']
[u'rspca', u'appeal', u'lenient', u'killer', u'sentenc']
[u'govt', u'predict', u'apprentic', u'sack']
[u'discrimin', u'inquiri', u'begin', u'today']
[u'sangakkara', u'rescu', u'lanka']
[u'school', u'develop', u'marin', u'centr']
[u'scientist', u'fear', u'japanes', u'whale', u'threaten']
[u'self', u'promot', u'need', u'agricultur', u'industri']
[u'senat', u'nuclear', u'wast', u'dump', u'plan']
[u'shoalhaven', u'host', u'health', u'summit']
[u'shoalhaven', u'search', u'bodi']
[u'signal', u'woe', u'blame', u'weekend', u'train', u'woe']
[u'slater', u'danger', u'miss', u'origin']
[u'solomon', u'union', u'threaten', u'disrupt', u'elect']
[u'submiss', u'flow', u'potenti', u'wast', u'dump']
[u'supervisor', u'plead', u'guilti', u'alcan', u'death', u'charg']
[u'support', u'thaksin', u'divid', u'thai', u'poll', u'count']
[u'sydney', u'shoot', u'info', u'crucial', u'polic']
[u'sydney', u'valhalla', u'cinema', u'earmark', u'offic']
[u'synergi', u'take', u'residenti', u'power', u'bill']
[u'tait', u'latest', u'injuri', u'australia']
[u'cancer', u'fundrais', u'support', u'overwhelm']
[u'review', u'prompt', u'call', u'cut', u'margin']
[u'thailand', u'await', u'elect', u'result']
[u'world', u'listen', u'rural', u'australia', u'countri']
[u'detaine', u'court', u'baxter']
[u'face', u'melbourn', u'court', u'terror']
[u'tiger', u'lock', u'halatau']
[u'trade', u'deficit', u'narrow']
[u'trawl', u'group', u'see', u'posit', u'exit', u'plan']
[u'tribut', u'flow', u'plane', u'crash', u'victim']
[u'tuna', u'return', u'lure', u'angler', u'wide']
[u'union', u'condemn', u'school', u'perform', u'tabl']
[u'union', u'highlight', u'rate', u'discrep']
[u'union', u'pursu', u'apprentic', u'sack', u'legal', u'case']
[u'polici', u'lead', u'dark', u'night', u'gorbachev']
[u'vaccin', u'trial', u'aim', u'prevent', u'childhood', u'asthma']
[u'version']
[u'home', u'wheat', u'base', u'ethanol', u'plant']
[u'wait', u'clear', u'kerr', u'slatteri', u'charg']
[u'wait', u'report', u'dampen', u'blue']
[u'premier', u'stand', u'uranium', u'mine', u'polici']
[u'waratah', u'cours', u'crusad', u'showdown']
[u'whale', u'oper', u'unaffect', u'sharehold']
[u'wind', u'farm', u'expans', u'high', u'prioriti']
[u'wind', u'toll', u'bundaberg', u'cane']
[u'wollongong', u'applaud', u'game', u'athlet']
[u'woman', u'charg', u'tablet', u'amphetamin', u'bust']
[u'woman', u'surviv', u'bash', u'boulder', u'camp']
[u'woolmer', u'accus', u'pitch', u'tamper']
[u'world', u'mark', u'anniversari', u'pope', u'john', u'paul']
[u'wattyl', u'owner', u'flag', u'cut']
[u'yarloop', u'resid', u'water', u'assur']
[u'yudhoyono', u'call', u'cartoon', u'asylum']
[u'yudhoyono', u'regret', u'asylum', u'seeker', u'visa']
[u'yuvraj', u'dazzl', u'india', u'england']
[u'aborigin', u'corpor', u'place', u'liquid']
[u'accus', u'sydney', u'model', u'killer', u'arrest', u'london']
[u'budg', u'drug', u'polici']
[u'alcohol', u'cloud', u'spot', u'deep', u'space']
[u'alic', u'record', u'rise', u'murder', u'assault']
[u'say', u'elect', u'loss', u'doesnt', u'mean', u'state']
[u'closer', u'abcnew']
[u'anim', u'activist', u'face', u'court', u'live', u'export']
[u'asif', u'rip', u'lanka']
[u'astronaut', u'camp', u'space', u'station', u'airlock']
[u'australian', u'appeal', u'drug', u'convict']
[u'bali', u'arrest', u'scar', u'wit', u'court', u'hear']
[u'ballarat', u'mayor', u'face', u'uncertain', u'futur']
[u'bottl', u'concert']
[u'bank', u'seek', u'regul', u'book', u'practic']
[u'biodiesel', u'fuel', u'plant', u'open', u'adelaid']
[u'blue', u'green', u'alga', u'forc', u'lake', u'restrict']
[u'broadband', u'popular', u'surg', u'ahead']
[u'bushfir', u'inquest', u'tell', u'firefight', u'locat']
[u'busi', u'urg', u'adopt', u'train', u'focus']
[u'bypass', u'estim', u'cost']
[u'cabinet', u'give', u'ahead', u'medibank', u'privat', u'sale']
[u'campus', u'give', u'medic', u'school', u'plan']
[u'bomb', u'kill', u'seven', u'baghdad']
[u'cash', u'miner', u'warn']
[u'closer']
[u'closer', u'abcnew']
[u'commonwealth', u'overrid', u'uranium']
[u'concern', u'air', u'polic', u'roster']
[u'convict', u'rapist', u'suspect', u'king', u'park', u'sexual']
[u'costello', u'flag', u'constitut', u'argument']
[u'costello', u'plan', u'legisl', u'cut']
[u'council', u'back', u'farm', u'environment', u'manag']
[u'council', u'endors', u'thirroul', u'develop', u'control']
[u'council', u'consid', u'elect', u'delay']
[u'council', u'refund', u'worth', u'park', u'fin']
[u'court', u'close', u'terror', u'trial', u'asio', u'evid']
[u'cowra', u'abattoir', u'back', u'sack']
[u'crash', u'disrupt', u'highway', u'traffic']
[u'cruis', u'ship', u'meningococc', u'death', u'rais', u'nation']
[u'crustacean', u'crop', u'growth', u'surpris', u'farmer']
[u'dallaglio', u'like', u'miss', u'tour']
[u'hous', u'turtl', u'hatcheri']
[u'debat', u'continu', u'wast', u'dump', u'legal', u'cost']
[u'defenc', u'forc', u'withdraw', u'cyclon', u'zone']
[u'dentist', u'boost', u'see', u'cut', u'wait']
[u'despit', u'strong', u'resourc', u'market', u'close']
[u'doctor', u'face', u'manslaught', u'trial']
[u'donald', u'host', u'youth', u'retent', u'hear']
[u'dose', u'realiti', u'youth', u'risk', u'drink', u'drive']
[u'monitor', u'tomato', u'region', u'amidst', u'virus', u'concern']
[u'urg', u'resourc', u'money']
[u'dutch', u'welcom', u'joint', u'afghanistan', u'mission']
[u'troop', u'iraq']
[u'emerg', u'medicin', u'director', u'stand']
[u'stadium', u'chief', u'say', u'explan', u'sack']
[u'famili', u'reliev', u'arrest', u'model', u'accus', u'killer']
[u'farmer', u'tell', u'grain', u'price', u'link']
[u'farmer', u'warn', u'loss', u'singl', u'desk', u'wheat']
[u'favourit', u'fare', u'slipper', u'draw']
[u'femal', u'pilot', u'sight', u'geraldton']
[u'destroy', u'aust', u'mine', u'firm', u'offic']
[u'forum', u'spotlight', u'road', u'issu']
[u'french', u'street', u'kill', u'youth']
[u'friend', u'bomaderri', u'creek', u'reject', u'link', u'plan']
[u'steam', u'ahead', u'miner', u'sand', u'plant']
[u'goat', u'abattoir', u'lay', u'quarantin', u'disput']
[u'golden', u'slipper', u'doesnt', u'chill']
[u'govt', u'confirm', u'taiwan', u'uranium', u'export', u'deal']
[u'govt', u'consid', u'help', u'student', u'studi', u'oversea']
[u'govt', u'doubl', u'grog', u'penalti']
[u'govt', u'interven', u'abattoir', u'sack', u'escap']
[u'govt', u'move', u'closer', u'medibank', u'sell']
[u'govt', u'offer', u'angler', u'marin', u'park', u'assur']
[u'govt', u'offic', u'charg', u'break', u'palm', u'drink']
[u'govt', u'plan', u'regist']
[u'govt', u'slow', u'restaur', u'worker', u'claim']
[u'govt', u'offer', u'regist']
[u'govt', u'privatis', u'medibank', u'privat']
[u'govt', u'review', u'occup', u'health', u'safeti']
[u'green', u'group', u'court', u'action']
[u'headland', u'hotel', u'sale']
[u'health', u'servic', u'find', u'patholog', u'review', u'patient']
[u'helicopt', u'employ', u'repair', u'blue', u'mountain']
[u'hervey', u'fish', u'farm', u'potenti', u'highlight']
[u'hewitt', u'happi', u'kooyong', u'surfac']
[u'hill', u'cop', u'week', u'suspens']
[u'hill', u'move', u'hoist', u'product', u'asia']
[u'hohn', u'step']
[u'howard', u'dutch', u'reaffirm', u'relationship']
[u'howard', u'signal', u'move', u'repair', u'aust', u'indonesian']
[u'hunter', u'forens', u'grief', u'counsellor']
[u'iemma', u'urg', u'chariti', u'fund', u'rise']
[u'master', u'stay', u'golf', u'greatest']
[u'immigr', u'detaine', u'live', u'communiti']
[u'india', u'probe', u'fashion', u'wardrob', u'malfunct']
[u'iran', u'test', u'land', u'missil']
[u'iraq', u'regim', u'demand', u'payment']
[u'law', u'impact', u'felt', u'agreement']
[u'irrig', u'face', u'higher', u'water', u'cost']
[u'isra', u'aircraft', u'strike', u'gaza', u'secur', u'compound']
[u'juri', u'decid', u'moussaoui', u'elig', u'death', u'penalti']
[u'juri', u'take', u'moussaoui', u'closer', u'execut']
[u'kalgoorli', u'record', u'extra', u'march']
[u'karzai', u'defend', u'releas', u'christian', u'convert']
[u'kerr', u'slatteri', u'accept', u'strike', u'reprimand']
[u'labor', u'back', u'taiwan', u'uranium', u'deal']
[u'labor', u'highlight', u'work', u'ahead', u'elect']
[u'labor', u'warn', u'premium', u'medibank', u'sell']
[u'larg', u'turnout', u'expect', u'port', u'arthur', u'massacr']
[u'kasprowicz', u'guid', u'australia', u'victori']
[u'lennon', u'like', u'restor', u'member', u'cabinet']
[u'link', u'indonesia', u'rebuild', u'howard']
[u'long', u'guard', u'strike', u'roster']
[u'mackay', u'record', u'drink', u'driver']
[u'accus', u'child', u'assault']
[u'charg', u'port', u'phillip', u'prison', u'murder']
[u'escap', u'jail', u'ep', u'parti', u'stab']
[u'critic', u'condit', u'lightn', u'strike']
[u'injur', u'helicopt', u'crash']
[u'plead', u'guilti', u'kill']
[u'plead', u'guilti', u'possess', u'child', u'abus', u'imag']
[u'march', u'hotter', u'drier']
[u'martin', u'name', u'chief', u'justic']
[u'martin', u'toe', u'parti', u'line', u'uranium', u'mine']
[u'medibank', u'privat', u'closer', u'sale']
[u'medibank', u'privat', u'sale', u'concern', u'play']
[u'melbourn', u'retail', u'easter', u'trade']
[u'melbourn', u'terror', u'suspect', u'mental']
[u'merger', u'drive', u'wall', u'street', u'higher']
[u'miner', u'look', u'product', u'year']
[u'minist', u'hear', u'push', u'western', u'bypass']
[u'minist', u'wind', u'farm', u'support', u'attack']
[u'children', u'restrain', u'proper', u'vehicl']
[u'moussaoui', u'elig', u'death', u'penalti']
[u'council', u'probe']
[u'urg', u'wait', u'paddl', u'steamer', u'fund']
[u'murphi', u'earn', u'rise', u'star', u'nomin']
[u'father', u'arthur', u'ponder', u'tenni', u'futur']
[u'meat', u'author', u'chief', u'overse', u'saleyard']
[u'pilbara', u'iron', u'project', u'start']
[u'patholog', u'unveil']
[u'south', u'wale', u'abattoir', u'withdraw', u'sack', u'notic']
[u'aussi', u'autograph', u'bangladesh', u'tour']
[u'excus', u'english', u'failur', u'world', u'beckham']
[u'progress', u'joint', u'korean', u'olymp', u'team', u'offici']
[u'north', u'coast', u'mossi', u'diseas', u'rate', u'rise']
[u'meet', u'wast', u'dump', u'plan']
[u'numbat', u'live', u'breed', u'north']
[u'nurs', u'age', u'care', u'home', u'job']
[u'firm', u'buy', u'carter', u'holt', u'harvey']
[u'tenni', u'player', u'lose', u'kazakhstan']
[u'offici', u'stat', u'mask', u'true', u'unemploy', u'figur']
[u'olmert', u'peretz', u'agre', u'work', u'israel', u'coalit']
[u'opposit', u'air', u'ambul', u'inquiri', u'concern']
[u'opposit', u'warn', u'health', u'fund', u'custom', u'medibank']
[u'organ', u'get', u'royal', u'approv']
[u'peak', u'forestri', u'bodi', u'call', u'conserv']
[u'pentagon', u'releas', u'guantanamo', u'document']
[u'peopl', u'urg', u'vaccin', u'season', u'approach']
[u'pilot', u'wait', u'secur', u'card']
[u'plantat', u'timber', u'industri', u'play', u'greenhous']
[u'financ', u'minist', u'dump']
[u'polic', u'investig', u'daylight', u'home', u'invas', u'rape']
[u'polic', u'locat', u'tongeren']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'play', u'violenc', u'worri']
[u'polic', u'role', u'criticis', u'hong', u'kong', u'drug']
[u'polic', u'tell', u'driver', u'lock', u'lose']
[u'polic', u'warn', u'hire', u'children', u'job']
[u'hart', u'farewel', u'state', u'funer']
[u'hart', u'lay', u'rest']
[u'public', u'quiz', u'water', u'fluorid']
[u'public', u'want', u'stay', u'inform', u'offend']
[u'push', u'boost', u'hunter', u'forestri', u'industri']
[u'qanta', u'deni', u'cater', u'busi', u'sell', u'immin']
[u'govt', u'pledg', u'cyclon', u'larri', u'relief']
[u'high', u'school', u'compar', u'perform', u'report']
[u'polic', u'launch', u'easter', u'safeti', u'campaign']
[u'qraa', u'staff', u'help', u'speed', u'farm', u'recoveri']
[u'radio', u'digit', u'say', u'coonan']
[u'tip', u'leav', u'rat', u'hold']
[u'red', u'undergo', u'manag', u'revamp']
[u'region', u'airport', u'counter', u'terror', u'spotlight']
[u'resid', u'call', u'hotel', u'develop']
[u'saddam', u'face', u'trial', u'genocid']
[u'doctor', u'warn', u'loom', u'number', u'shortag']
[u'african', u'detect', u'kill', u'peopl', u'motiv', u'unknown']
[u'school', u'good', u'perform', u'help', u'retain', u'bush']
[u'school', u'uniform', u'rule', u'lack', u'support', u'say']
[u'search', u'go', u'miss', u'woman']
[u'selector', u'chairman', u'hohn', u'step']
[u'extend', u'roar', u'stay']
[u'abus', u'hear', u'doctor', u'scrap']
[u'share', u'market', u'hit', u'record', u'high']
[u'sharon', u'surgeri', u'postpon']
[u'sheep', u'succumb', u'lupinosi', u'outbreak']
[u'shepparton', u'vie', u'mother', u'year', u'award']
[u'goal', u'ricciuto', u'forward', u'push']
[u'skin', u'problem', u'affect', u'indigen', u'communiti']
[u'slater', u'challeng', u'kick', u'charg', u'grade']
[u'solomon', u'lawyer', u'fail', u'oust', u'ramsi']
[u'song', u'writer', u'search', u'alic', u'anthem']
[u'sport', u'star', u'catch']
[u'starl', u'erad', u'scheme', u'intensifi']
[u'storm', u'damag', u'brisban', u'home']
[u'storm', u'get', u'time', u'decid', u'slater', u'charg']
[u'studi', u'look', u'build', u'birdsvill', u'power']
[u'sudan', u'deni', u'bar', u'envoy', u'darfur']
[u'survey', u'reveal', u'gunnedah', u'bing', u'drink', u'rat']
[u'sweden', u'urg', u'boycott', u'world', u'slaveri']
[u'worker', u'dismiss', u'flimsi', u'reason', u'union']
[u'taylor', u'face', u'crime', u'court']
[u'taylor', u'plead', u'guilti', u'crime', u'human']
[u'teen', u'face', u'court', u'accus', u'rape']
[u'thai', u'acknowledg', u'erod', u'support']
[u'town', u'sale', u'ebay']
[u'transplant', u'patient', u'grow', u'bladder']
[u'tremor', u'injur', u'peopl', u'northern', u'pakistan']
[u'triathlet', u'get', u'payout', u'swim', u'accid']
[u'tribun', u'reject', u'southern', u'bluefin', u'tuna']
[u'polic', u'arrest', u'aust', u'death', u'model']
[u'call', u'inquiri', u'worri']
[u'court', u'reject', u'bush', u'enemi', u'combat', u'power', u'case']
[u'flag', u'investig', u'scandal']
[u'join', u'dairi', u'subsidi']
[u'tornado', u'death', u'toll', u'mount']
[u'seek', u'bushfir', u'probe']
[u'beagl', u'retir', u'distinguish', u'sniff']
[u'visa', u'prompt', u'indonesian', u'hotel', u'aussi']
[u'wallac', u'say', u'shutdown', u'tactic', u'hurt', u'game']
[u'warn', u'premium', u'increas', u'follow', u'medibank']
[u'water', u'author', u'urg', u'defer', u'water', u'rat']
[u'weather', u'figur', u'highlight', u'tough', u'farm', u'condit']
[u'confirm', u'indonesian', u'bird', u'death']
[u'wine', u'grape', u'oversuppli', u'impact', u'compani', u'profit']
[u'wineri', u'research', u'boost', u'yield']
[u'world', u'asthma', u'treatment', u'launch', u'perth']
[u'world', u'junior', u'titl', u'beij', u'beckon', u'toowoomba']
[u'yeppoon', u'hospit', u'get', u'second', u'doctor', u'appoint']
[u'youth', u'caus', u'problem', u'swansea', u'centr']
[u'billion', u'boost', u'mental', u'health', u'servic']
[u'boat', u'catch', u'illeg', u'fish', u'raid']
[u'drown', u'tanzanian', u'boat', u'capsiz']
[u'abbott', u'urg', u'state', u'match', u'mental', u'health', u'fund']
[u'abetz', u'back', u'continu', u'plantat', u'timber', u'industri']
[u'academ', u'highlight', u'indigen', u'health', u'fail']
[u'accc', u'probe', u'child', u'care', u'takeov', u'plan']
[u'attempt', u'lure', u'skill', u'worker']
[u'govt', u'water', u'conserv', u'plan', u'draw', u'mix']
[u'presid', u'want', u'debat', u'uranium', u'mine']
[u'antivir', u'consid', u'best', u'chanc', u'minimis', u'bird']
[u'asbesto', u'fibr', u'villawood', u'detent', u'centr']
[u'aussi', u'swim', u'thing', u'shanghai']
[u'australian', u'servic', u'sector', u'regist', u'pick']
[u'threaten', u'challeng', u'inquiri']
[u'bare', u'bum', u'sheep', u'produc', u'better', u'wool', u'expert']
[u'beatti', u'check', u'insur', u'compani', u'larri']
[u'beatti', u'announc', u'hospit', u'site']
[u'belarus', u'dont', u'fear', u'hewitt', u'mirnyi']
[u'bird', u'claim', u'cambodian']
[u'blueprint', u'aim', u'maintain', u'basin', u'sustain']
[u'bomb', u'squad', u'polic', u'indonesian', u'blast']
[u'break', u'hill', u'join', u'heritag', u'week', u'celebr']
[u'builder', u'warn', u'construct', u'contract', u'risk']
[u'build', u'demolish', u'salt', u'firm', u'blaze']
[u'camp', u'lift', u'swim', u'profil']
[u'caution', u'urg', u'navig', u'channel']
[u'children', u'murwillumbah', u'road', u'crash']
[u'citrus', u'grower', u'export', u'return', u'tip', u'fall']
[u'closer']
[u'closer']
[u'closer']
[u'coastal', u'communiti', u'experi', u'continu', u'growth']
[u'cole', u'releas', u'apolog', u'document']
[u'commerci', u'water', u'user', u'face', u'price', u'rise']
[u'concern', u'air', u'irrig', u'futur']
[u'concern', u'air', u'needl', u'exchang', u'fund']
[u'work', u'ensur', u'surviv', u'rare']
[u'council', u'announc', u'poll', u'vote', u'detail']
[u'council', u'fear', u'farmer', u'right', u'fail']
[u'councillor', u'agre', u'bridg', u'design', u'delay']
[u'councillor', u'rais', u'surf', u'club', u'expans', u'worri']
[u'councillor', u'want', u'prayer', u'chang']
[u'council', u'meet', u'discuss', u'saleyard', u'cost']
[u'council', u'want', u'incent', u'attract']
[u'council', u'wont', u'remov', u'park', u'activist']
[u'court', u'appear', u'youth', u'charg', u'chase']
[u'court', u'hear', u'sukumaran', u'inspect', u'mule', u'brisban']
[u'cowra', u'abattoir', u'abandon', u'plan', u'sack', u'staff']
[u'custom', u'confirm', u'arriv', u'papuan', u'asylum']
[u'custom', u'confirm', u'second', u'papuan', u'group', u'arriv']
[u'custom', u'evid', u'papuan', u'arriv']
[u'deceas', u'pilot', u'presid', u'pilot', u'associ']
[u'dizzi', u'test', u'squad']
[u'dizzi', u'delight', u'test', u'recal']
[u'dravid', u'keep', u'faith', u'slump', u'sehwag']
[u'dutch', u'exhibit', u'highlight', u'earli', u'explor']
[u'earth', u'work', u'join', u'stargaz']
[u'equip', u'sale', u'end', u'hope', u'meatwork', u'reopen']
[u'ethanol', u'plant', u'plan', u'coleamb']
[u'evid', u'suffici', u'wood', u'extradit', u'ruddock']
[u'market', u'remain', u'firm']
[u'expert', u'finalis', u'price', u'mcguigan', u'grower']
[u'govt', u'block', u'wind', u'farm', u'plan']
[u'restrict', u'eas']
[u'forestri', u'industri', u'disput', u'product', u'claim']
[u'secur', u'minist', u'urg', u'aust', u'commit']
[u'french', u'polic', u'tear', u'youth']
[u'fund', u'target', u'elect', u'surgeri', u'wait', u'list']
[u'fund', u'cut', u'elect', u'surgeri', u'wait']
[u'fund', u'famili', u'servic']
[u'fund', u'help', u'elect', u'surgeri', u'wait', u'time']
[u'gallagh', u'elect', u'deputi', u'chief', u'minist']
[u'game', u'volunt', u'tell', u'court', u'alleg', u'assault']
[u'gillespi', u'test', u'squad']
[u'gold', u'price', u'increas', u'forc', u'jewelleri']
[u'govt', u'commit', u'tackl', u'mental', u'health', u'crisi']
[u'govt', u'confirm', u'second', u'papuan', u'group', u'arriv', u'aust']
[u'govt', u'count', u'cost', u'cyclon', u'glenda']
[u'govt', u'expect', u'block', u'wind', u'farm', u'plan']
[u'govt', u'mull', u'border', u'secur', u'increas', u'amid']
[u'govt', u'play', u'medibank', u'sale', u'concern']
[u'govt', u'reject', u'public', u'claim', u'abattoir']
[u'govt', u'reject', u'call', u'airport', u'secur', u'screen']
[u'govt', u'urg', u'improv', u'electr', u'industri']
[u'green', u'fight', u'ahead', u'mundin', u'bout']
[u'green', u'group', u'seek', u'marin', u'park', u'support']
[u'halloran', u'head', u'victoria', u'polic', u'task', u'forc']
[u'hart', u'stop']
[u'hasselbaink', u'readi', u'boro', u'exit']
[u'health', u'servic', u'get', u'fund', u'help', u'wait', u'time']
[u'high', u'price', u'reviv', u'southern', u'fruit']
[u'highway', u'task', u'forc', u'seek', u'fund']
[u'hussey', u'surg', u'bat']
[u'iemma', u'find', u'fund', u'elect', u'surgeri']
[u'iemma', u'say', u'south', u'coast', u'feel', u'workchoic', u'impact']
[u'indigen', u'life', u'expect', u'year']
[u'indonesia', u'presid', u'issu', u'warn', u'papua']
[u'insur', u'step', u'cyclon', u'recoveri']
[u'rat', u'remain', u'unchang']
[u'iraq', u'reject', u'call', u'step', u'asid']
[u'isra', u'presid', u'endors', u'olmert']
[u'jail', u'term', u'increas', u'sydney', u'gang', u'rapist']
[u'japanes', u'compani', u'stop', u'sell', u'whale', u'meat']
[u'jesus', u'walk', u'water', u'studi']
[u'provid', u'open', u'centr']
[u'judg', u'deni', u'rapist', u'upbring', u'play', u'role']
[u'kangaroo', u'clash', u'kick', u'nation']
[u'kick', u'long', u'lose', u'danih']
[u'kidnap', u'gillespi', u'daughter', u'reunit', u'mother']
[u'kiwi', u'expect', u'tough', u'seri', u'harden', u'protea']
[u'klimt', u'paint', u'steal', u'nazi', u'display']
[u'labor', u'urg', u'commonwealth', u'veto', u'water', u'agreement']
[u'lack', u'evid', u'hamper', u'cronulla', u'riot', u'case']
[u'lara', u'go', u'tendulkar']
[u'larapinta', u'trail', u'ban', u'place']
[u'lennon', u'announc', u'govt', u'line']
[u'liber', u'support']
[u'local', u'custom', u'remain', u'prioriti', u'banana']
[u'local', u'govt', u'group', u'fear', u'road', u'fund']
[u'magistr', u'throw', u'bushfir', u'case', u'evid']
[u'malle', u'famili', u'relationship', u'centr']
[u'charg', u'student', u'robberi', u'assault']
[u'die', u'south', u'wale', u'light', u'plane', u'crash']
[u'face', u'court', u'road', u'death']
[u'fail', u'court', u'break']
[u'mayor', u'beat', u'power', u'plant', u'benefit']
[u'see', u'need', u'hous', u'price', u'stabil']
[u'mcewen', u'pull', u'ghent', u'race', u'lancast', u'hurt']
[u'million', u'strike', u'pari', u'law']
[u'milosev', u'die', u'natur', u'death', u'dutch', u'prosecutor']
[u'miner', u'reject', u'flood', u'studi', u'nativ', u'titl', u'claim']
[u'minist', u'back', u'push', u'chang']
[u'morley', u'work', u'tackl', u'techniqu']
[u'motorcyclist', u'angri', u'road', u'safeti']
[u'china', u'invest', u'talk']
[u'mushroom', u'grower', u'guy']
[u'nation', u'weather']
[u'newcastl', u'firm', u'secur', u'ferri', u'safeti', u'contract']
[u'person', u'sydney', u'shoot', u'probe']
[u'plan', u'call', u'chang', u'singl', u'desk', u'wheat']
[u'suspect', u'school', u'blaze']
[u'govt', u'wait', u'detail', u'mental', u'health', u'fund']
[u'opposit', u'accus', u'govt', u'dumb', u'school']
[u'nurs', u'home', u'problem', u'surpris', u'say', u'union']
[u'polic', u'union', u'seek', u'burqa', u'wear', u'driver']
[u'teen', u'take', u'test', u'drive']
[u'explor', u'begin']
[u'pair', u'rescu', u'servic', u'traine']
[u'pakistan', u'clinch', u'lanka', u'seri']
[u'palestinian', u'offici', u'claim', u'escal', u'civilian']
[u'papuan', u'famili', u'arriv', u'aust', u'island', u'custom']
[u'papua', u'open']
[u'pengiun', u'feed', u'habit', u'studi']
[u'person', u'trainer', u'get', u'month', u'client']
[u'perth', u'compani', u'cash']
[u'pest', u'threaten', u'cocoa', u'crop']
[u'pilot', u'die', u'bankstown', u'airport', u'crash']
[u'announc', u'mental', u'health', u'fund', u'boost']
[u'confid', u'indonesian', u'relat', u'endur']
[u'polic', u'hunt', u'flora', u'hill', u'intrud']
[u'polic', u'investig', u'smash', u'grab']
[u'polic', u'prais', u'respons', u'unruli', u'behaviour']
[u'polic', u'seek', u'second', u'opinion', u'cronulla', u'charg']
[u'polic', u'station', u'plan', u'creat', u'communiti', u'concern']
[u'poll', u'close', u'solomon', u'island']
[u'pont', u'readi', u'lose', u'match', u'save', u'langer']
[u'posit', u'see', u'ramsar', u'boundari', u'chang']
[u'concern', u'drive', u'govt', u'interven', u'abattoir']
[u'fish', u'compens', u'claim', u'deadlin', u'extend']
[u'parent', u'urg', u'proper', u'restrain', u'children']
[u'welcom', u'inquiri']
[u'red', u'recruit', u'prop']
[u'region', u'lose', u'farmer', u'experi', u'gain']
[u'revenu', u'shortfal', u'mean', u'water', u'project', u'review']
[u'revis', u'shop', u'plaza', u'plan', u'year']
[u'rice', u'farmer', u'product']
[u'riot', u'squad', u'handl', u'juvenil', u'unrest']
[u'rise', u'katherin', u'floodwat', u'prompt', u'concern']
[u'perform', u'stem', u'cell', u'implant', u'oper']
[u'roma', u'rent', u'price', u'worri', u'tenanc', u'group']
[u'saddam', u'face', u'second', u'trial']
[u'saddam', u'face', u'genocid', u'charg']
[u'saddam', u'trial', u'resum', u'amid', u'fresh', u'genocid', u'charg']
[u'march', u'wetter', u'averag']
[u'polic', u'consid', u'respons', u'time', u'target', u'overhaul']
[u'properti', u'acquir', u'road', u'upgrad']
[u'sewerag', u'saga', u'develop', u'drop', u'industri']
[u'sharemarket', u'close', u'high']
[u'sheedi', u'ponder', u'way', u'manag', u'hird']
[u'shire', u'seek', u'hous', u'qanta', u'worker']
[u'year', u'fight', u'clear', u'doctor']
[u'slater', u'origin']
[u'slow', u'start', u'solomon', u'island', u'vote']
[u'songwrit', u'sing', u'town']
[u'southern', u'gold', u'coast', u'enjoy', u'good', u'rainfal']
[u'space', u'station', u'camp', u'cancel', u'fals', u'alarm']
[u'stadium', u'chairman', u'reject', u'sack', u'claim']
[u'stanhop', u'anger', u'opposit', u'water']
[u'state', u'territori', u'urg', u'match', u'mental', u'health']
[u'steffensen', u'bypass', u'stawel', u'gift']
[u'figur', u'prompt', u'child', u'abus', u'report']
[u'stoner', u'debnam', u'disagre', u'independ']
[u'stosur', u'reach', u'florida', u'second', u'round']
[u'student', u'accus', u'throw', u'rock', u'teacher']
[u'support', u'west', u'heavi', u'boat', u'lifter']
[u'tassi', u'devil', u'arriv', u'unharm', u'denmark']
[u'telstra', u'start', u'gippsland', u'roll']
[u'telstra', u'urg', u'rethink', u'phone', u'remov', u'plan']
[u'tennant', u'creek', u'dengu', u'mosquito', u'erad']
[u'thai', u'stand', u'asid']
[u'thai', u'step']
[u'thaksin', u'step', u'asid', u'thai', u'prime', u'minist']
[u'thought', u'laughter', u'boost', u'feel', u'good', u'hormon']
[u'thousand', u'march', u'jakarta', u'labour', u'law']
[u'twin', u'boom']
[u'deplor', u'envoy', u'deni', u'entri', u'sudan']
[u'union', u'govt', u'claim', u'cowra', u'abattoir']
[u'union', u'want', u'nurs', u'state', u'matter']
[u'univers', u'stand', u'movi', u'trailer']
[u'singer', u'gene', u'pitney', u'die', u'tour']
[u'tongeren', u'face', u'court', u'bail', u'breach']
[u'vecci', u'seek', u'clean', u'coal', u'technolog', u'fund']
[u'governor', u'thank', u'servic']
[u'creat', u'student', u'insur', u'concern']
[u'govt', u'speed', u'hall', u'creek', u'land', u'releas']
[u'wangaratta', u'revisit', u'apex', u'park', u'lake', u'plan']
[u'opposit', u'step', u'pressur', u'uranium', u'mine']
[u'travel', u'contract', u'doubl', u'health']
[u'waugh', u'start', u'line']
[u'whale', u'research', u'meet', u'hobart']
[u'woman', u'charg', u'stab']
[u'woman', u'die', u'highway', u'crash']
[u'wood', u'agre', u'extradit']
[u'wood', u'appear', u'london', u'court']
[u'wood', u'appear', u'london', u'court']
[u'wood', u'face', u'london', u'court']
[u'work', u'continu', u'art', u'entertain', u'centr']
[u'worker', u'protect', u'law', u'futil', u'labor']
[u'youth', u'servic', u'fail', u'secur', u'feder', u'grant']
[u'zuma', u'deni', u'posit', u'court', u'hear']
[u'arrest', u'joint', u'polic', u'raid']
[u'abort', u'pill', u'seiz', u'raid']
[u'airport', u'burnout', u'prove', u'cost', u'driver']
[u'aust', u'task', u'group', u'begin', u'afghanistan', u'oper']
[u'author', u'asylum', u'seeker', u'search']
[u'author', u'hope', u'katherin', u'river', u'reach']
[u'author', u'remain', u'flood', u'watch']
[u'reject', u'wheat', u'export', u'plan']
[u'challeng', u'cole', u'inquiri', u'rule']
[u'lodg', u'court', u'challeng']
[u'beckham', u'struggl', u'worri']
[u'protest', u'expect', u'meet', u'discuss', u'shire']
[u'bird', u'scotland']
[u'blue', u'woodchip', u'shipment', u'japan']
[u'boat', u'capsiz', u'indonesian', u'fear', u'dead']
[u'bombala', u'water', u'restrict', u'tougher']
[u'apprenticeship', u'scheme']
[u'review', u'consid', u'better', u'beach', u'access']
[u'campaign', u'reduc', u'region', u'injuri']
[u'cancer', u'fund', u'welcom', u'oncolog', u'unit', u'reopen']
[u'casa', u'highlight', u'weather', u'safeti', u'issu']
[u'cattl', u'sale', u'freez', u'condit']
[u'centuri', u'chees', u'factori', u'chang', u'hand']
[u'cheeki', u'monkey', u'tell', u'phone']
[u'children', u'appeal', u'work', u'death', u'compo', u'payout']
[u'closer']
[u'closer']
[u'closer']
[u'coastwatch', u'call', u'search', u'papuan']
[u'compani', u'start', u'uranium', u'drill']
[u'consult', u'probe', u'complaint', u'council', u'staff']
[u'corbi', u'lawyer', u'furious', u'airport', u'camera', u'tamper']
[u'council', u'highlight', u'bendigo', u'invest']
[u'council', u'highlight', u'drop', u'develop', u'applic']
[u'councillor', u'quit', u'committe', u'assault', u'claim']
[u'council', u'stand', u'respons', u'report']
[u'council', u'vote', u'saleyard', u'revamp']
[u'count', u'begin', u'solomon', u'elect']
[u'craig', u'play', u'impact', u'chang']
[u'cyclon', u'larri', u'hit', u'banana', u'sale']
[u'cyclon', u'rebuild', u'elder', u'retir']
[u'darwin', u'boast', u'crab', u'farm']
[u'darwin', u'river', u'capac']
[u'demetriou', u'signal', u'salari', u'rise']
[u'dept', u'papuan', u'visa', u'decis', u'vanston']
[u'door', u'close', u'learn', u'centr']
[u'downer', u'vail', u'statement', u'tabl', u'cole', u'inquiri']
[u'downpour', u'caus', u'flood', u'central', u'west']
[u'reject', u'law', u'court']
[u'urg', u'greater', u'understand', u'justic']
[u'want', u'chang', u'defenc', u'case', u'crimin']
[u'eftpo', u'transact', u'rise', u'march']
[u'egypt', u'scotland', u'vietnam', u'deal', u'bird']
[u'eminem', u'file', u'divorc', u'month']
[u'evid', u'suggest', u'govt', u'work', u'close']
[u'farm', u'success', u'debat', u'dubbo']
[u'england', u'manag', u'world']
[u'favour', u'wast', u'dump', u'sit', u'specul', u'advis']
[u'feder', u'govt', u'consid', u'abil', u'stop', u'dump', u'plan']
[u'feedback', u'seek', u'park', u'plan']
[u'firefight', u'monitor', u'kangaroo', u'valley', u'blaze']
[u'threat', u'remain', u'south', u'west']
[u'firm', u'say', u'wind', u'farm', u'reject', u'polit', u'motiv']
[u'accus', u'intimid', u'face', u'court']
[u'flood', u'evacue', u'shelter', u'katherin', u'school']
[u'forest', u'practic', u'plan', u'useless', u'green']
[u'offic', u'guilti', u'murder']
[u'policeman', u'guilti', u'murder']
[u'fund', u'boost', u'mental', u'health']
[u'fund', u'help', u'investig', u'invest', u'opportun']
[u'giteau', u'paul', u'action', u'brumbi']
[u'global', u'show', u'save', u'bilbi', u'campaign']
[u'glori', u'give', u'green', u'light', u'recruit']
[u'govt', u'flag', u'cut', u'achiev', u'save']
[u'govt', u'wont', u'withdraw', u'dump', u'panel', u'legal', u'represent']
[u'green', u'group', u'applaud', u'land', u'transfer']
[u'green', u'group', u'want', u'bolster', u'region', u'plan']
[u'greenhous', u'reduct', u'wont', u'econom', u'growth']
[u'green', u'member', u'lobbi', u'cardboard', u'coffin']
[u'guccion', u'open', u'davi', u'hostil']
[u'heal', u'name', u'skipper', u'comeback']
[u'henjak', u'start']
[u'hewitt', u'confid', u'voltchkov', u'measur']
[u'hodgson', u'eye', u'repres', u'jumper']
[u'homicid', u'doubl', u'alic', u'latest', u'crime', u'figur']
[u'hope', u'mental', u'health', u'fund', u'help', u'suicid']
[u'hope', u'mental', u'health', u'fund', u'reach', u'rural', u'area']
[u'hospit', u'doesnt', u'mind', u'wag', u'resolv']
[u'indian', u'masseur', u'convict', u'indec', u'assault']
[u'india', u'fourth', u'england', u'dayer', u'clinch', u'seri']
[u'indonesia', u'cancel', u'parliamentari', u'visit']
[u'indonesian', u'island', u'focus', u'rural', u'develop']
[u'indonesian', u'polic', u'ahead', u'execut', u'plan']
[u'iraqi', u'court', u'dismiss', u'cameraman', u'case']
[u'isra', u'forc', u'detain', u'palestinian', u'minist', u'hama']
[u'israel', u'releas', u'palestinian', u'minist']
[u'israel', u'presid', u'ask', u'olmert', u'form', u'govern']
[u'figur', u'spark', u'talk', u'rate', u'rise']
[u'jobless', u'rate', u'equal', u'year']
[u'joey', u'clear']
[u'jovic', u'grant', u'month', u'visa']
[u'judg', u'decid', u'licenc', u'danger', u'driver']
[u'juvenil', u'justic', u'worker', u'power']
[u'kangaroo', u'skipper', u'play', u'gold', u'coast']
[u'katherin', u'bridg', u'flood', u'author', u'warn']
[u'katherin', u'flood', u'threat', u'eas']
[u'katherin', u'isol', u'floodwat']
[u'katherin', u'open']
[u'katherin', u'resid', u'higher', u'grind']
[u'katherin', u'resid', u'strand', u'flood', u'water']
[u'kimberley', u'resid', u'elig', u'disast']
[u'kingsley', u'cat']
[u'labor', u'abandon', u'school', u'fund', u'polici']
[u'langer', u'reject', u'retir', u'talk']
[u'lawyer', u'seek', u'way', u'involv', u'govt', u'stadium', u'court']
[u'lenton', u'cruis', u'semi']
[u'local', u'hospit', u'error', u'prone', u'list']
[u'local', u'preschool', u'join', u'fund', u'protest']
[u'lyle', u'lead', u'asia', u'qualifi', u'british', u'open']
[u'mackay', u'sugar', u'crop', u'worth']
[u'magistr', u'advis', u'prosecut', u'reconsid']
[u'accus', u'child', u'assault', u'face', u'trial']
[u'front', u'court', u'accus', u'murder']
[u'plead', u'guilti']
[u'plead', u'guilti', u'mint', u'theft']
[u'mass', u'grave', u'discov', u'iraq']
[u'mayor', u'reject', u'elect']
[u'mayor', u'worri', u'futur', u'merger']
[u'media', u'giant', u'search', u'podcast', u'audienc']
[u'melbourn', u'lord', u'mayor', u'back', u'call', u'easter', u'trade']
[u'mental', u'health', u'worker', u'fund', u'boost']
[u'militari', u'exercis', u'darwin']
[u'miner', u'confid', u'find', u'boulia', u'area', u'diamond']
[u'minist', u'criticis', u'oper', u'target', u'illeg']
[u'delay', u'miner', u'sand', u'export', u'plan']
[u'land', u'releas', u'seek', u'properti', u'demand', u'rise']
[u'mother', u'face', u'trial', u'quadrupl', u'murder']
[u'bewild', u'water', u'decis']
[u'urg', u'catt', u'compens']
[u'want', u'tougher', u'licenc', u'condit', u'ensur']
[u'trader', u'jail']
[u'nasa', u'monitor', u'great', u'barrier', u'reef', u'coral', u'bleach']
[u'nation', u'network', u'track', u'pseudoephedrin', u'sale']
[u'needl', u'exchang', u'fund', u'continu']
[u'shire', u'look', u'challeng']
[u'stadium', u'olymp', u'park']
[u'nixon', u'welcom', u'halloran', u'return']
[u'chang', u'sick', u'leav', u'polici', u'dept', u'say']
[u'find', u'fund', u'hope', u'reduc', u'hospit']
[u'reject', u'kumbl', u'eye', u'spot']
[u'opposit', u'subdivis', u'plan', u'withdraw']
[u'opposit', u'discuss', u'transport', u'water', u'manag']
[u'pakistan', u'kill', u'milit', u'near', u'afghan', u'border']
[u'founder', u'face', u'retrial']
[u'papuan', u'famili', u'probabl', u'land', u'howard', u'say']
[u'papuan', u'prepar', u'risk', u'live', u'asylum']
[u'petit', u'seek', u'gratia', u'payment']
[u'defend', u'right', u'overrid', u'state', u'law']
[u'highlight', u'grow', u'cyclon', u'applic']
[u'slam', u'papuan', u'independ', u'support']
[u'polic', u'inact', u'claim', u'prove', u'fals']
[u'polic', u'seek', u'inform', u'escape']
[u'polic', u'seek', u'indec', u'assault']
[u'polic', u'unit', u'tackl', u'middl', u'eastern', u'crime']
[u'pong', u'crewman', u'jail', u'drug', u'traffic']
[u'port', u'fairi', u'need', u'volunt']
[u'posit', u'drug', u'drive', u'test', u'prompt', u'polic', u'warn']
[u'princip', u'snub', u'report', u'guidelin']
[u'hart', u'break', u'hill']
[u'properti', u'purchas', u'plan', u'boost', u'truffl']
[u'govt', u'investig', u'offend', u'tag']
[u'rape', u'victim', u'prais', u'speak']
[u'concern', u'rais']
[u'present', u'manag', u'review', u'strategi']
[u'edit', u'footag', u'katherin', u'flood']
[u'reinforc', u'fli', u'bangladesh']
[u'report', u'find', u'error', u'fail', u'drug', u'trial']
[u'resid', u'develop', u'withdraw']
[u'resid', u'face', u'long', u'drive']
[u'resourc', u'firm', u'see', u'benefit', u'mine', u'right', u'deal']
[u'resourc', u'push', u'market', u'record', u'high']
[u'reynold', u'seek', u'assess', u'alleg', u'palm']
[u'riverland', u'urg', u'remain', u'beat', u'economi']
[u'prepar', u'talk', u'memori', u'vandal']
[u'rural', u'doctor', u'want', u'fund', u'psychologist']
[u'russian', u'bank', u'safin', u'fear', u'factor']
[u'construct', u'worker', u'protest', u'law']
[u'saddam', u'defiant', u'cross', u'examin']
[u'saint', u'deni', u'tassi', u'split']
[u'scientist', u'stem', u'cell', u'repair', u'bone']
[u'search', u'papuan', u'call']
[u'servic', u'station', u'group', u'say', u'easter', u'fuel']
[u'seven', u'kill', u'nepal', u'raid']
[u'sewag', u'vote', u'cost', u'toowoomba', u'million']
[u'time', u'sydney']
[u'singer', u'songwrit', u'gene', u'pitney', u'die', u'age']
[u'kill', u'turkish', u'violenc']
[u'stand', u'trial', u'alleg', u'bali', u'drug', u'plot']
[u'skull', u'baffl', u'chines', u'polic']
[u'smile', u'australian', u'world', u'happiest']
[u'snow', u'bind', u'student', u'rescu']
[u'solomon', u'elect', u'count', u'begin']
[u'solomon', u'parti', u'leader', u'lose', u'seat']
[u'superannu', u'advic', u'inaccur', u'survey', u'find']
[u'south', u'hedland', u'aborigin', u'urg', u'consid', u'hous']
[u'special', u'riot', u'team', u'youth', u'detent', u'centr']
[u'state', u'call', u'mental', u'health', u'fund', u'push']
[u'stem', u'rust', u'diseas']
[u'storm', u'road', u'power', u'central']
[u'strong', u'wind', u'head']
[u'student', u'rescu', u'snowi', u'ordeal']
[u'research', u'yield', u'unexpect', u'result']
[u'survey', u'highlight', u'worker', u'shortag']
[u'tassi', u'devil', u'home', u'copenhagen']
[u'thomson', u'tip', u'ogilvi', u'master', u'challeng']
[u'tiger', u'privat', u'pain', u'master', u'concern']
[u'trader', u'jail', u'scandal']
[u'trio', u'arrest', u'drug', u'oper']
[u'plan', u'spark', u'call', u'assur']
[u'kill', u'iraq', u'bomb']
[u'govt', u'wont', u'incent']
[u'gold', u'rush', u'predict']
[u'sign', u'nation', u'water', u'initi']
[u'weather', u'spark', u'hunter']
[u'dont', u'want', u'tell', u'papuan']
[u'welsh', u'reliev', u'embattl', u'aussi']
[u'wildlif', u'group', u'appeal', u'wallabi', u'kill']
[u'wind', u'farm', u'reject', u'baffl', u'wind', u'energi', u'industri']
[u'wind', u'hinder', u'firefight', u'effort']
[u'woman', u'sack', u'union', u'say']
[u'wood', u'agre', u'extradit']
[u'wood', u'extradit']
[u'woolford', u'ponder', u'futur', u'eighth', u'suspens']
[u'worker', u'seek', u'sydney', u'airport', u'secur', u'investig']
[u'work', u'holiday', u'tourism', u'chief']
[u'worm', u'doubl', u'escap', u'surpris', u'scientist']
[u'kill', u'kashmir', u'crash']
[u'african', u'agenc', u'warn', u'loom', u'humanitarian']
[u'anti', u'water', u'fluorid', u'campaign', u'cancer']
[u'aquacultur', u'accus', u'caus', u'pollut']
[u'artc', u'say', u'updat', u'strategi', u'money', u'spend']
[u'aussi', u'qualifi', u'british', u'open']
[u'aust', u'ballet', u'blend', u'indigen', u'classic', u'step']
[u'australian', u'firm', u'talk', u'develop', u'met', u'stadium']
[u'australian', u'shanghai', u'pace']
[u'award', u'cap', u'fine', u'season', u'jaqu']
[u'open']
[u'ballet', u'indigen', u'danc', u'come']
[u'bangladesh', u'loss', u'rankl', u'pont']
[u'bank', u'charg', u'fail', u'transact']
[u'baric', u'reject', u'report', u'contest', u'upper', u'hous']
[u'barossa', u'group', u'seek', u'develop', u'freez']
[u'barossa', u'resid', u'warn', u'develop', u'crisi']
[u'beatti', u'open', u'central', u'highland', u'coal']
[u'bermagui', u'stalwart', u'name', u'senior']
[u'blair', u'ahern', u'nthn', u'irish', u'leader', u'ultimatum']
[u'bomber', u'kill', u'baghdad', u'mosqu']
[u'brack', u'fear', u'govt', u'scuttl', u'residenti']
[u'brack', u'quiz']
[u'census', u'collector']
[u'canberra', u'cafe', u'fail', u'safeti', u'inspect']
[u'captain', u'name', u'face', u'eagl']
[u'cattl', u'sale', u'strong']
[u'champion', u'wrestler', u'jail', u'drug', u'offenc']
[u'christi', u'close', u'shop']
[u'closer']
[u'closer']
[u'closer']
[u'cole', u'promis', u'downer', u'vail', u'scrutini']
[u'committe', u'find', u'help', u'bolster', u'inland', u'rail']
[u'contamin', u'scare', u'blame', u'hydrant', u'test']
[u'coolgardi', u'resid', u'feel', u'neglect']
[u'costello', u'announc', u'tape', u'cut']
[u'council', u'hop', u'plan', u'scheme', u'approv', u'soon']
[u'councillor', u'criticis', u'plan', u'rate', u'rise']
[u'councillor', u'urg', u'consid', u'joint', u'saleyard']
[u'court', u'allow', u'salmonella', u'compo', u'claim']
[u'court', u'reserv', u'judgment', u'work', u'death', u'compo', u'case']
[u'cowboy', u'tiger']
[u'cowboy', u'reject', u'grand', u'final', u'replay', u'claim']
[u'cowboy', u'romp', u'victori']
[u'crew', u'rescu', u'sweep', u'away', u'floodwat']
[u'crocodil', u'attack', u'katherin', u'flood']
[u'crocodil', u'diseas', u'emerg', u'threaten', u'katherin']
[u'crocodil', u'diseas', u'follow', u'katherin', u'flood']
[u'crusad', u'hold', u'gallant', u'waratah']
[u'crusad', u'host', u'improv', u'waratah']
[u'cyclon', u'batter', u'tourism', u'drive']
[u'cyclon', u'hubert', u'batter', u'pilbara', u'coast']
[u'cyclon', u'victim', u'threaten', u'fin', u'damag']
[u'deadlin', u'northern', u'ireland', u'assembl']
[u'downer', u'vail', u'cole', u'inquiri']
[u'downpour', u'delay', u'tourist', u'attract', u'open']
[u'easter', u'travel', u'face', u'high', u'petrol', u'price']
[u'elder', u'die', u'adelaid', u'hous']
[u'elder', u'woman', u'push', u'lake', u'snatch']
[u'elect', u'expert', u'expect', u'redistribut']
[u'energex', u'deni', u'prevent', u'protest', u'involv']
[u'england', u'lose', u'dawson', u'retir']
[u'explos', u'maker', u'debut']
[u'export', u'concern', u'indonesian']
[u'famili', u'mourn', u'woman', u'kill', u'accid']
[u'father', u'face', u'court', u'tripl', u'murder', u'charg']
[u'flood', u'news', u'mayor']
[u'flood', u'take', u'toll', u'irrig', u'scheme']
[u'flood', u'open']
[u'forest', u'stand', u'reduct', u'burn']
[u'ambassador', u'deni', u'know', u'host', u'alia']
[u'mayor', u'testifi', u'trial']
[u'foskey', u'disappoint', u'decis', u'sell']
[u'freight', u'group', u'hand', u'report']
[u'fruit', u'drink', u'group', u'squeez', u'market']
[u'fuel', u'spill', u'contain', u'evacu']
[u'fund', u'drive', u'buddhist', u'shrine']
[u'gillespi', u'mother', u'rule', u'sell', u'abduct', u'stori']
[u'gillespi', u'reunit', u'long', u'lose', u'daughter']
[u'gold', u'coast', u'mayor', u'name', u'possibl']
[u'gold', u'miner', u'get', u'lifelin']
[u'govt', u'gazett', u'bateman', u'marin', u'park']
[u'govt', u'remov', u'council', u'plan', u'power']
[u'govt', u'provid', u'bathhous']
[u'govt', u'review', u'asylum', u'seeker', u'applic', u'process']
[u'govt', u'slash', u'busi', u'tape']
[u'govt', u'urg', u'boost', u'region', u'psychologist']
[u'govt', u'urg', u'leav', u'polit', u'papuan', u'debat']
[u'govt', u'urg', u'maintain', u'irrig', u'reform', u'commit']
[u'govt', u'urg', u'maintain', u'learn', u'centr', u'support']
[u'group', u'join', u'forc', u'inland', u'rail', u'line', u'rout']
[u'guccion', u'put', u'australia']
[u'hama', u'condemn', u'freez', u'blackmail']
[u'health', u'boss', u'urg', u'tasmanian', u'receiv', u'vaccin']
[u'health', u'servic', u'lament', u'doctor', u'departur']
[u'hewitt', u'power', u'australia', u'lead']
[u'hick', u'lawyer', u'criticis', u'militari', u'commiss']
[u'highway', u'reopen', u'south', u'katherin']
[u'hilditch', u'replac', u'hohn', u'chairman', u'selector']
[u'hong', u'kong', u'woman', u'face', u'court', u'prostitut']
[u'hope', u'distilleri', u'tourism', u'attract']
[u'howard', u'announc', u'papuan', u'asylum', u'review']
[u'howard', u'support', u'nuclear', u'power', u'stir', u'debat']
[u'indigen', u'communiti', u'fail', u'battl', u'save', u'school']
[u'indonesian', u'citi', u'outlaw', u'lengthi', u'pash']
[u'indonesia', u'welcom', u'australian', u'review', u'asylum']
[u'injur', u'council', u'worker', u'lucki', u'aliv']
[u'injur', u'jone', u'miss', u'fifth', u'dayer']
[u'show', u'purpl', u'leas']
[u'john', u'get', u'final', u'clear']
[u'katherin', u'flood', u'recoveri', u'chief', u'appoint']
[u'katherin', u'floodwat', u'begin', u'drop']
[u'katherin', u'flood', u'water', u'rise']
[u'katherin', u'floodwat', u'reced']
[u'katherin', u'resid', u'face', u'uncertain']
[u'retail', u'wool', u'campaign']
[u'labor', u'flag', u'famili', u'friend', u'work', u'agreement']
[u'labor', u'want', u'famili', u'workplac', u'agreement']
[u'lawyer', u'mull', u'vail', u'downer', u'statement']
[u'lenton', u'race', u'freestyl', u'gold']
[u'lion', u'chang', u'bomber', u'clash']
[u'local', u'emerg', u'room', u'wait', u'time', u'lower']
[u'lockyer', u'affect', u'talk', u'bennett']
[u'malaysian', u'guilti', u'kill', u'aust', u'businessman']
[u'charg', u'child', u'pornograph', u'imag']
[u'court', u'gun', u'possess']
[u'market', u'subsid', u'buoyant', u'week']
[u'mayor', u'call', u'fairer', u'poki', u'return']
[u'mayor', u'name', u'possibl']
[u'mcgauran', u'talk', u'trade', u'secretari']
[u'melbourn', u'student', u'perform', u'london', u'anzac']
[u'melbourn', u'woman', u'daughter', u'break', u'silenc']
[u'miller', u'begin', u'dimboola', u'product']
[u'miner', u'offer', u'rehab', u'assur']
[u'miner', u'boost', u'gascoyn', u'uranium', u'explor']
[u'minist', u'endors', u'disast', u'report', u'recommend']
[u'minist', u'develop', u'nation', u'disast', u'plan']
[u'minist', u'take', u'action', u'blaze', u'compo', u'delay']
[u'peopl', u'arriv', u'katherin', u'evacu', u'centr']
[u'wit', u'canberra', u'bushfir', u'inquiri']
[u'worker', u'seek', u'great', u'southern', u'mine']
[u'motorbik', u'ride', u'hotel', u'rais', u'chariti']
[u'back', u'resid', u'oppos', u'land', u'sale']
[u'highlight', u'emerg', u'treatment', u'concern']
[u'say', u'work', u'address', u'truanci']
[u'nation', u'park', u'excis', u'worri', u'colong', u'foundat']
[u'nepales', u'polic', u'arrest', u'protest']
[u'home', u'loan', u'doubl', u'market', u'expect']
[u'ireland', u'give', u'deadlin', u'power', u'share']
[u'opal', u'taipei']
[u'opposit', u'question', u'juvenil', u'justic', u'legisl']
[u'paceman', u'mortaza', u'call', u'face', u'australia']
[u'pakistani', u'peopl', u'smuggler', u'jail', u'year']
[u'papua', u'better', u'indonesia']
[u'parent', u'stricter', u'bail', u'condit', u'polic']
[u'parent', u'ralli', u'fear', u'preschool', u'fund']
[u'penfold', u'see', u'busi', u'background', u'help']
[u'penguin', u'surviv', u'dinosaur', u'die']
[u'petrol', u'price', u'investig', u'accc']
[u'pharmaci', u'initi', u'impact', u'drug']
[u'plantat', u'group', u'urg', u'concess']
[u'player', u'salari', u'talk']
[u'ask', u'indonesian', u'understand', u'papuan']
[u'set', u'watchdog', u'easter', u'petrol', u'price', u'hike']
[u'quiz', u'welfar', u'group', u'fund', u'snub']
[u'polic', u'chief', u'continu', u'northern', u'tour']
[u'polic', u'hunt', u'arm', u'oxenford', u'home', u'invad']
[u'polic', u'charg', u'drug', u'raid']
[u'polic', u'bolster', u'traffic', u'patrol']
[u'polic', u'identifi', u'dead']
[u'passeng', u'kill', u'accid']
[u'port', u'arthur', u'cost', u'innoc']
[u'power', u'run', u'cyclon', u'hubert', u'bear']
[u'public', u'offer', u'drink', u'water', u'assur']
[u'public', u'remind', u'need', u'bushfir', u'prevent']
[u'pulp', u'propon', u'consid', u'transport', u'option']
[u'qanta', u'mainten', u'plan', u'fuel', u'sack', u'fear']
[u'rabbitoh', u'poach', u'bulldog', u'recruit', u'manag']
[u'rainfal', u'avoid', u'water', u'shortag']
[u'rain', u'forc', u'race', u'meet']
[u'releas', u'indonesian', u'playboy', u'spark', u'protest']
[u'remot', u'town', u'clean', u'energi', u'role', u'model']
[u'rental', u'properti', u'shortag', u'affect', u'nagambi', u'growth']
[u'research', u'aim', u'safe', u'fever', u'vaccin']
[u'resid', u'council', u'elect', u'wish', u'ignor']
[u'resid', u'ask', u'pipelin']
[u'rise', u'world', u'price', u'blame', u'high', u'petrol']
[u'riverland', u'council', u'seek', u'common', u'grind', u'rat']
[u'road', u'revamp', u'depend', u'weather']
[u'rockhampton', u'host', u'backpack', u'group']
[u'saint', u'hold', u'half', u'time', u'lead']
[u'saint', u'prevail', u'tenaci', u'tiger']
[u'saint', u'tiger', u'look', u'bounc']
[u'urg', u'clean', u'river', u'torren']
[u'school', u'evacu', u'massiv', u'petrol', u'spill']
[u'scientist', u'blue', u'ring', u'uranus']
[u'senior', u'public', u'servant', u'rise']
[u'servic', u'honour', u'chopper', u'crash', u'pilot']
[u'seven', u'arrest', u'major', u'drug', u'bust']
[u'seven', u'court', u'alleg', u'syndic']
[u'singh', u'song', u'ogilvi']
[u'soldier', u'return', u'home', u'quak', u'effort']
[u'springborg', u'beat', u'gympi', u'chanc']
[u'staff', u'shortag', u'affect', u'ravensthorp', u'polic', u'station']
[u'state', u'emerg', u'declar', u'katherin']
[u'stoner', u'pole', u'motogp', u'dream']
[u'strong', u'wind', u'swell', u'tassi']
[u'sunraysia', u'triathlet', u'compet', u'hawaii']
[u'swan', u'deliveri', u'premiership', u'flag']
[u'swim', u'tournament', u'boost', u'economi']
[u'sydney', u'readi', u'second', u'team', u'demetriou']
[u'tafe', u'director']
[u'tassi', u'lawn', u'bowler', u'nation', u'titl']
[u'test', u'confirm', u'bird', u'britain']
[u'toddler', u'sleep', u'mountain', u'search']
[u'tourism', u'confer', u'hear', u'need', u'space']
[u'tropic', u'north', u'queensland', u'friday', u'april']
[u'turner', u'masterpiec', u'smash', u'auction', u'record']
[u'union', u'watch', u'law', u'implement']
[u'see', u'benefit', u'psychologist', u'mental']
[u'unit', u'seek', u'ninth', u'life', u'catch', u'chelsea']
[u'block', u'hick', u'citizenship', u'lawyer', u'say']
[u'nation', u'leader', u'attack', u'liber']
[u'victoria', u'swear', u'governor']
[u'censorship', u'law', u'target', u'video', u'game']
[u'polic', u'cyber', u'predat']
[u'premier', u'sign', u'feder', u'water', u'deal']
[u'word', u'erupt', u'south', u'west', u'salmon', u'fisheri']
[u'water', u'bill', u'reflect', u'summer']
[u'water', u'reach', u'roof', u'home', u'flood', u'stricken']
[u'white', u'hous', u'aid', u'claim', u'bush', u'authoris', u'classifi']
[u'wind', u'farm', u'reject', u'boost', u'wast', u'dump', u'oppon']
[u'windsurf', u'feel', u'need', u'speed']
[u'wollongong', u'relationship', u'centr']
[u'begin', u'census', u'collector', u'recruit', u'drive']
[u'accc', u'reject', u'expand', u'petrol', u'price', u'regul']
[u'applaud', u'medic', u'train', u'boost']
[u'anger', u'decis', u'wit']
[u'kill', u'iraq', u'suicid', u'attack']
[u'aust', u'artist', u'conquer', u'york']
[u'australia', u'davi', u'semi']
[u'bangladesh', u'face', u'huge', u'aussi']
[u'beatti', u'unhappi', u'preferenti', u'treatment']
[u'bernardi', u'replac', u'hill', u'senat']
[u'surf', u'creat', u'danger', u'condit', u'swimmer']
[u'bird', u'mourinho', u'flutter']
[u'boonen', u'tilt', u'unpreced', u'doubl']
[u'bridg', u'reopen', u'katherin', u'floodwat', u'fall']
[u'british', u'offici', u'appeal', u'calm', u'bird']
[u'bronco', u'lose', u'enni', u'scrappi']
[u'calm', u'defend', u'wine', u'region', u'burn', u'off']
[u'campaign', u'end', u'ahead', u'italian', u'elect']
[u'campbel', u'grab', u'master', u'lead']
[u'bomb', u'kill', u'iraq']
[u'cat', u'rack', u'thrash']
[u'chief', u'score', u'late', u'draw', u'bull']
[u'china', u'tell', u'stone', u'clean']
[u'closer']
[u'closer']
[u'compani', u'merger', u'bring', u'commerci', u'muscl']
[u'cyclist', u'sutherland', u'ban', u'dope']
[u'dali', u'river', u'resid', u'flood', u'alert']
[u'danni', u'buderus', u'andrew', u'john', u'michael', u'hagan']
[u'darren', u'lockyer', u'thaiday', u'interview']
[u'vinci', u'code', u'author', u'win', u'plagiar', u'case']
[u'vinci', u'code', u'breach', u'copyright', u'british']
[u'hard', u'fan', u'passion', u'grave']
[u'director', u'blame', u'human', u'error', u'wrong', u'prison']
[u'docker', u'hang', u'surg', u'blue']
[u'dog', u'stay', u'ladder']
[u'driver', u'flee', u'fatal', u'collis']
[u'drought', u'famin', u'grip', u'eastern', u'africa']
[u'emerg', u'boss', u'wont']
[u'enceph', u'warn', u'pilbara']
[u'extra', u'regul', u'wont', u'lower', u'petrol', u'price', u'accc']
[u'govt', u'boost', u'health', u'train']
[u'destroy', u'histor', u'cottag']
[u'fli', u'dutch', u'lenton']
[u'forc', u'remain', u'winless', u'highland', u'loss']
[u'kill', u'darl', u'down', u'road', u'crash']
[u'gabba', u'curs', u'continu', u'bomber']
[u'hop', u'slipper', u'fit']
[u'govt', u'council', u'join', u'forc', u'save', u'jetti']
[u'govt', u'prepar', u'repel', u'asylum', u'seeker', u'ellison', u'say']
[u'govt', u'spend', u'train', u'doctor']
[u'gritti', u'gonzalez', u'keep', u'chile', u'level']
[u'hop', u'telstra', u'fix', u'line', u'deal', u'draw', u'custom']
[u'howard', u'announc', u'train', u'doctor']
[u'indonesian', u'death', u'christian', u'clemenc', u'fail']
[u'indonesia', u'ensur', u'papua', u'fund', u'spend']
[u'iraq', u'blast', u'kill']
[u'iraqi', u'suicid', u'bomber', u'dress', u'women']
[u'isra', u'airstrik', u'kill', u'palestinian']
[u'isra', u'missil', u'kill', u'milit', u'gaza']
[u'accid', u'survivor', u'head', u'home']
[u'katherin', u'floodwat', u'reced']
[u'knight', u'embarrass', u'dragon', u'wollongong']
[u'late', u'blue', u'halt', u'stormer', u'charg']
[u'lehmann', u'beat', u'kahn', u'germani', u'world', u'race']
[u'lehmann', u'fete', u'redback']
[u'lenton', u'record', u'falter']
[u'kill', u'motorbik', u'crash']
[u'martin', u'face', u'sidelin', u'uranium', u'debat']
[u'martin', u'stand', u'flood', u'warn', u'time', u'frame']
[u'minist', u'review', u'nation', u'emerg', u'plan']
[u'minist', u'wont', u'receiv', u'special', u'treatment']
[u'minist', u'tell', u'forest', u'protect', u'follow']
[u'miss', u'finland', u'take', u'golden', u'slipper']
[u'want', u'indigen', u'affair', u'abolish']
[u'murray', u'analys', u'west', u'tiger']
[u'nepal', u'impos', u'curfew', u'protest', u'continu']
[u'nepali', u'protest', u'kill', u'ralli']
[u'major', u'damag', u'katherin', u'flood']
[u'educ', u'chang', u'union', u'warn']
[u'north', u'flood', u'threat', u'eas']
[u'offici', u'admit', u'iraq', u'state', u'civil']
[u'opal', u'record', u'second', u'taipei']
[u'opposit', u'flag', u'tram', u'extens', u'cost', u'blowout']
[u'opposit', u'urg', u'complet', u'manag', u'plan']
[u'owen', u'edg', u'closer', u'comeback']
[u'pakistan', u'relief', u'troop', u'head', u'home']
[u'palestinian', u'leader', u'condemn', u'cut']
[u'parent', u'protest', u'preschool', u'fund']
[u'announc', u'doctor', u'nurs', u'train']
[u'criticis', u'domest', u'nuclear', u'power', u'idea']
[u'address', u'vic', u'campaign', u'liber']
[u'polic', u'patrol', u'katherin', u'looter']
[u'polic', u'search', u'miss', u'backpack']
[u'polic', u'seek', u'rise']
[u'polic', u'seek', u'help', u'miss']
[u'privat', u'sector', u'consid', u'build', u'nuclear', u'plant']
[u'protea', u'retain', u'squad', u'test']
[u'protest', u'block', u'entranc', u'cross', u'citi', u'tunnel']
[u'push', u'emerg', u'servic', u'boost', u'cyanid', u'rout']
[u'reinstat', u'accc', u'power', u'petrol', u'price', u'nrma', u'say']
[u'relay', u'record', u'libbi', u'light', u'shanghai']
[u'resid', u'warn', u'burley', u'griffin', u'develop']
[u'resid', u'welcom', u'redevelop', u'charg']
[u'rooster', u'sneak', u'home', u'shark']
[u'rossi', u'equal', u'doohan', u'qatar']
[u'russia', u'control', u'croatia', u'hold']
[u'saracen', u'stay', u'jone']
[u'seven', u'brumbi', u'riot']
[u'kill', u'gaza', u'raid']
[u'solomon', u'elect', u'free', u'fair', u'observ']
[u'spend', u'promis', u'ensur', u'doctor']
[u'state', u'bicker', u'health', u'fund']
[u'strong', u'job', u'data', u'hit', u'wall', u'street']
[u'student', u'suspend', u'drug']
[u'studi', u'challeng', u'aprotinin', u'tendon', u'treatment']
[u'suicid', u'attack', u'kill', u'afghanistan']
[u'suicid', u'bomber', u'kill', u'iraq', u'mosqu']
[u'symond', u'dump', u'test', u'team']
[u'telstra', u'hop', u'fix', u'line', u'deal', u'pull']
[u'thaiday', u'power', u'bronco']
[u'face', u'court', u'sydney', u'stab']
[u'thursfield', u'season', u'end', u'round']
[u'tiger', u'rock', u'marshal', u'injuri']
[u'train', u'crew', u'abandon', u'industri', u'action']
[u'appeal', u'east', u'african', u'drought']
[u'uranium', u'export', u'safeguard', u'insuffici', u'garrett']
[u'suspend', u'palestinian', u'govt']
[u'virus', u'train', u'build', u'tini', u'batteri']
[u'warn', u'deni', u'attack', u'murali']
[u'white', u'hous', u'deni', u'leak', u'polit', u'motiv']
[u'white', u'hous', u'dodg', u'leak', u'alleg']
[u'white', u'hous', u'respond', u'iraq', u'leak', u'alleg']
[u'kill', u'stamped', u'pakistan', u'religi']
[u'investig', u'offic', u'psychic', u'consult']
[u'offic', u'suspend', u'psychic']
[u'investig', u'offic', u'psychic', u'consult']
[u'closer']
[u'american', u'beat', u'opal']
[u'australia', u'whitewash', u'belarus']
[u'aust', u'troop', u'leav', u'earthquak', u'pakistan']
[u'driver', u'put', u'hospit', u'pressur']
[u'bangladesh', u'away', u'stun', u'start']
[u'beatti', u'slam', u'govt', u'health', u'train', u'plan']
[u'beazley', u'demand', u'cut', u'middl', u'incom', u'earner']
[u'beazley', u'rule', u'shadow', u'ministri', u'reshuffl']
[u'belarussian', u'presid', u'take', u'oath', u'attack', u'critic']
[u'kennedi', u'hasler', u'ivan', u'cleari', u'toni', u'martin']
[u'swell', u'shut', u'beach']
[u'bulldog', u'shrug', u'raider']
[u'campbel', u'lead', u'weather']
[u'crash', u'yard', u'kill', u'child']
[u'cervic', u'cancer', u'project', u'get', u'boost']
[u'warn', u'chimney', u'fire']
[u'christi', u'abandon', u'australian', u'market']
[u'clarkson', u'wont', u'write', u'pie']
[u'closer', u'abcnew']
[u'creat', u'coastguard', u'stop', u'papuan', u'refuge', u'beazley']
[u'croatia', u'teeter', u'doubl', u'loss']
[u'djibouti', u'boat', u'accid', u'death', u'toll', u'mount']
[u'downer', u'prepar', u'cole', u'inquiri', u'appear']
[u'downer', u'readi', u'inquiri', u'appear']
[u'downer', u'vail', u'cole', u'inquiri']
[u'downer', u'wont', u'discuss', u'cole', u'inquiri', u'appear']
[u'drunken', u'vandal', u'face', u'clean', u'sentenc']
[u'eagl', u'thriller', u'adelaid']
[u'easter', u'power', u'promis', u'cyclon', u'region']
[u'bodi', u'canadian', u'forest']
[u'kill', u'gaza', u'airstrik']
[u'kill', u'gaza', u'strike']
[u'expert', u'call', u'overhaul', u'treatment']
[u'feder', u'polic', u'deal', u'psychic', u'claim', u'govt']
[u'brave', u'giant', u'surf']
[u'gillespi', u'strike']
[u'good', u'sale', u'suggest', u'hous', u'market', u'turnaround']
[u'govt', u'criticis', u'handl', u'papuan', u'asylum']
[u'govt', u'disarray', u'papuan', u'asylum', u'seeker', u'posit']
[u'govt', u'mull', u'woomera', u'satellit', u'launch', u'site']
[u'govt', u'slam', u'opposit', u'speed', u'toler', u'propos']
[u'govt', u'examin', u'claim', u'faulti', u'train', u'brake']
[u'grandmoth', u'appeal', u'return', u'papuan', u'girl']
[u'hire', u'doctor', u'fewer', u'public', u'servant', u'govt', u'tell']
[u'hundr', u'arrest', u'protest', u'defi', u'curfew']
[u'india', u'dayer', u'abandon', u'amid', u'crowd', u'violenc']
[u'inter', u'restor', u'batter', u'pride']
[u'investig', u'suspect', u'arson', u'factori', u'fire']
[u'iraqi', u'civil', u'threaten', u'region', u'mubarak', u'say']
[u'iraq', u'midst', u'civil', u'senior', u'offici']
[u'iraq', u'state', u'civil', u'govt', u'offici']
[u'iraqi', u'offici', u'say', u'countri', u'civil']
[u'iraq', u'leader', u'deni', u'civil', u'claim']
[u'irish', u'raider', u'win', u'grand', u'nation']
[u'islam', u'jihad', u'leader', u'say', u'halt', u'israel', u'attack']
[u'isra', u'strike', u'kill', u'milit']
[u'israel', u'step', u'shell', u'palestinian', u'post']
[u'italian', u'prepar', u'vote']
[u'italian', u'head', u'poll']
[u'katherin', u'darwin', u'road', u'reopen']
[u'katherin', u'flood', u'learn', u'experi', u'chief']
[u'katherin', u'flood', u'victim', u'assist', u'packag']
[u'katherin', u'mayor', u'move', u'eas', u'flood', u'insur', u'fear']
[u'katherin', u'resid', u'assess', u'flood', u'damag']
[u'labor', u'call', u'probe', u'afp', u'psychic']
[u'labor', u'continu', u'opposit', u'fee']
[u'labor', u'flag', u'tighter', u'famili', u'benefit', u'test']
[u'labor', u'maintain', u'opposit', u'place']
[u'lifesav', u'test', u'boat', u'sea']
[u'kill', u'sydney', u'shoot']
[u'miss', u'huge', u'sea', u'coast']
[u'minist', u'promis', u'hear', u'educ', u'concern']
[u'nafe', u'centuri', u'give', u'bangladesh', u'promis', u'start']
[u'nafe', u'stun', u'australia']
[u'nepal', u'author', u'extend', u'curfew']
[u'offici', u'conced', u'civil', u'grip', u'iraq']
[u'pakistan', u'deploy', u'soldier', u'arriv', u'home']
[u'panther', u'overcom', u'gower', u'loss', u'torch', u'eel']
[u'hunter', u'warn', u'namadgi']
[u'back', u'digger', u'anzac', u'march']
[u'polic', u'interview', u'doubl', u'stab']
[u'polic', u'investig', u'alic', u'stab']
[u'polic', u'investig', u'mandurah', u'raid']
[u'polic', u'investig', u'sydney', u'shoot']
[u'polic', u'offic', u'injur', u'bike', u'chase']
[u'polic', u'urg', u'caution', u'road', u'easter']
[u'poll', u'open', u'italian', u'elect']
[u'port', u'swan', u'winless']
[u'preston', u'campbel', u'rhys', u'wesser', u'john', u'lang', u'brian']
[u'quicktim', u'doubl', u'lenton']
[u'railcorp', u'deni', u'faulti', u'brake', u'accus']
[u'rare', u'red']
[u'rocca', u'goal', u'blitz', u'hand', u'magpi']
[u'industri', u'fear', u'futur']
[u'salon', u'fraca', u'land', u'court']
[u'sandwich', u'cater', u'upper', u'crust']
[u'eagl', u'prevail', u'warrior']
[u'seven', u'dead', u'road']
[u'solomon', u'face', u'battl', u'retain', u'power']
[u'south', u'coast', u'marin', u'park', u'impact', u'studi', u'inadequ']
[u'space', u'station', u'crew', u'return', u'earth']
[u'spur', u'boost', u'european', u'hop']
[u'state', u'medic', u'train', u'place', u'need']
[u'steve', u'folk', u'matthew', u'elliott', u'interview']
[u'teenag', u'critic', u'condit', u'fall']
[u'teen', u'charg', u'doubl', u'stab']
[u'teen', u'stab', u'movi']
[u'tennesse', u'mop', u'tornado', u'kill']
[u'foreign', u'student', u'take', u'medic', u'train']
[u'tourism', u'restructur', u'expect', u'boost', u'visitor']
[u'kill', u'crash', u'tree']
[u'assault', u'kill', u'suspect', u'iraqi', u'insurg']
[u'valencia', u'second', u'real', u'draw']
[u'govt', u'want', u'medic', u'student', u'place']
[u'vineyard', u'owner', u'concern', u'raini', u'weather']
[u'welsh', u'seek', u'fourth', u'gold', u'china']
[u'wood', u'take', u'fifth', u'green', u'jacket']
[u'world', u'bank', u'chief', u'arriv', u'timor']
[u'zimbabwean', u'shortest', u'lifespan']
[u'dead', u'china', u'truck', u'smash']
[u'injur', u'ferri', u'collid', u'whale']
[u'aborigin', u'camp', u'hop', u'domain', u'repriev']
[u'aborigin', u'corp', u'go', u'liquid']
[u'accid', u'see', u'take', u'perth', u'surgeri']
[u'dismiss', u'pesticid', u'test', u'concern']
[u'age', u'care', u'chang', u'jump']
[u'age', u'care', u'industri', u'overhaul', u'target', u'staff']
[u'age', u'care', u'minist', u'agre', u'industri', u'overhaul']
[u'seek', u'nation', u'tenanc', u'databas', u'law']
[u'urg', u'fight', u'retain', u'region', u'health', u'servic']
[u'anim', u'welfar', u'concern', u'endang', u'victorian']
[u'arm', u'home', u'invad', u'attack', u'elder']
[u'artist', u'beat', u'odd', u'score', u'success']
[u'asbesto', u'contamin', u'forc', u'detaine', u'reloc']
[u'kill', u'kenyan', u'militari', u'plane', u'crash']
[u'aussi', u'face', u'argentina', u'davi', u'semi']
[u'award', u'win', u'organ', u'farmer', u'guilti', u'anim']
[u'babi', u'meerkat', u'steal', u'adelaid']
[u'bangladesh', u'australia']
[u'bangladesh', u'resum', u'strong', u'posit']
[u'barca', u'come', u'draw', u'race']
[u'barossa', u'council', u'unhappi', u'readvertis']
[u'bendigo', u'lose', u'medic', u'school']
[u'bendigo', u'back', u'anzac', u'youth', u'involv']
[u'biloela', u'hous', u'develop', u'offic']
[u'blaze', u'destroy', u'hangar']
[u'brazilian', u'rid', u'victori', u'surfest']
[u'bresciano', u'help', u'parma', u'victori']
[u'bush', u'consid', u'iran', u'militari', u'campaign', u'journalist']
[u'busi', u'lobbi', u'group', u'head', u'retir']
[u'regul', u'alcohol', u'consumpt', u'price']
[u'teen', u'lover', u'moot']
[u'caravan', u'park', u'prepar', u'flood', u'evacue']
[u'christi', u'hold', u'final', u'aust', u'auction']
[u'church', u'build', u'school', u'orang']
[u'closer']
[u'closer']
[u'closer']
[u'colour', u'chang', u'polic', u'uniform']
[u'communiti', u'get', u'normal', u'power', u'woe']
[u'compet', u'claim', u'cloud', u'solomon', u'elect', u'result']
[u'coordin', u'seek', u'chang', u'project']
[u'council', u'contractor', u'discuss', u'revamp', u'work']
[u'councillor', u'deni', u'wrongdo', u'plan']
[u'council', u'decid', u'residenti', u'develop', u'work']
[u'council', u'seek', u'feder', u'fund', u'freight', u'complex']
[u'countdown', u'world', u'youth', u'begin']
[u'cowboy', u'coach', u'beat', u'continu', u'win']
[u'crime', u'level', u'drop']
[u'cyclon', u'larri', u'appeal', u'rais']
[u'dali', u'river', u'resid', u'prepar', u'evacu']
[u'damag', u'tunbridg', u'abl', u'meet', u'need']
[u'danger', u'tackl', u'see', u'staniforth', u'out']
[u'doctor', u'group', u'see', u'posit', u'medic', u'school']
[u'doctor', u'urg', u'wari', u'diseas', u'monger']
[u'doubt', u'cast', u'local', u'impact', u'mental', u'health', u'boost']
[u'doubt', u'cast', u'medic', u'school', u'place', u'boost']
[u'drought', u'relief', u'fund', u'increas', u'rais', u'question']
[u'eagl', u'look', u'match', u'season', u'start']
[u'effort', u'reopen', u'cyclon', u'natur']
[u'employ', u'away', u'older', u'worker', u'survey', u'find']
[u'export', u'look', u'reinstat', u'indonesian', u'trade']
[u'eyr', u'peninsula', u'bushfir', u'case', u'drop']
[u'farmer', u'urg', u'intervent', u'goulburn', u'water', u'crisi']
[u'fatal', u'crash', u'spark', u'speed', u'reduct']
[u'father', u'daughter', u'reunit', u'refuge', u'arriv', u'aust']
[u'feder', u'fund', u'decid', u'jetti', u'fate']
[u'figur', u'highlight', u'drink', u'spend', u'race']
[u'firefight', u'injur', u'train', u'exercis']
[u'fire', u'link']
[u'fish', u'kill', u'rais', u'swan', u'river', u'concern']
[u'fitzi', u'expect', u'heat', u'argentina']
[u'flood', u'delay', u'asian', u'live', u'cattl', u'export']
[u'french', u'say', u'misunderstand', u'abandon', u'youth']
[u'fuel', u'reduct', u'burn', u'start']
[u'german', u'hostag', u'plead', u'live']
[u'goldfield', u'plan', u'improv', u'indigen', u'health']
[u'good', u'turnout', u'district', u'fundrais']
[u'govt', u'accus', u'fail', u'heed', u'warn']
[u'govt', u'accus', u'plan', u'downgrad', u'health', u'servic']
[u'govt', u'fund', u'boost', u'process', u'illeg', u'fishermen']
[u'govt', u'disarray', u'indonesia', u'relationship', u'labor']
[u'govt', u'marin', u'park', u'studi']
[u'gower', u'clear', u'injuri']
[u'health', u'scheme', u'aim', u'combat', u'indigen', u'kidney']
[u'henri', u'confirm', u'canberra', u'coach']
[u'hiddink', u'camp', u'dismiss', u'england', u'specul']
[u'high', u'sea', u'prompt', u'beach', u'warn']
[u'hird', u'clash', u'bulldog']
[u'histori', u'project', u'promis', u'benefit', u'indigen']
[u'home', u'raid', u'sydney', u'shoot', u'probe']
[u'hope', u'scheme', u'boost', u'indigen', u'tertiari', u'studi']
[u'howard', u'cole', u'inquiri']
[u'howard', u'statement', u'inquiri']
[u'howard', u'provid', u'statement', u'cole', u'inquiri']
[u'didnt', u'cabl', u'vail', u'say']
[u'independ', u'advoc', u'seek', u'nurs', u'home']
[u'indigen', u'repres', u'block', u'meet']
[u'indonesian', u'decis', u'creat', u'uncertainti', u'tabl']
[u'indonesia', u'help', u'need', u'identifi', u'asylum', u'seeker']
[u'industri', u'give', u'qualifi', u'back', u'age', u'care']
[u'injur', u'keen', u'flood', u'elector']
[u'iran', u'dismiss', u'attack', u'plan', u'report']
[u'iraqi', u'futur', u'line']
[u'israel', u'intensifi', u'gaza', u'strip', u'bombard']
[u'israel', u'label', u'hama', u'palestinian', u'author']
[u'italian', u'poll', u'station', u'reopen', u'general']
[u'italian', u'vote', u'reach', u'half', u'mark']
[u'jail', u'man', u'mother', u'criticis', u'govt', u'rehab']
[u'jam', u'hardi', u'stifl', u'competit', u'accc']
[u'japanes', u'firm', u'develop', u'major', u'field']
[u'japanes', u'test', u'pilot']
[u'junior', u'wallabi', u'thrash', u'romania']
[u'katherin', u'mayor', u'surpris', u'resid', u'want']
[u'labor', u'accus', u'vail', u'gross', u'neglig']
[u'labor', u'announc', u'simpler', u'super', u'plan']
[u'legal', u'lobbi', u'reject', u'lawyer', u'immun', u'abolit', u'plan']
[u'lenton', u'sound', u'beij', u'warn']
[u'local', u'tourism', u'sector', u'feel', u'skill', u'shortag', u'impact']
[u'macgil', u'shin', u'aussi', u'stutter']
[u'macquari', u'bank', u'move', u'enter', u'taxi', u'market']
[u'guilti', u'murder', u'cape', u'barren', u'island']
[u'hurt', u'vineyard', u'accid']
[u'take', u'hospit', u'acid', u'bottl', u'blast']
[u'face', u'court', u'hotel', u'crossbow', u'incid']
[u'face', u'drug', u'charg']
[u'court', u'polic', u'stand']
[u'mayor', u'pleas', u'swim', u'centr', u'progress']
[u'mayor', u'see', u'shire', u'benefit', u'miner', u'expans']
[u'mcguir', u'know', u'defici']
[u'merger', u'creat', u'largest', u'aust']
[u'mickelson', u'win', u'master', u'titl']
[u'minist', u'easter', u'trade', u'exempt']
[u'minist', u'wont', u'earli', u'alumina', u'refineri', u'decis']
[u'murray', u'beat', u'cowboy', u'win', u'streak']
[u'nation', u'pesticid', u'test', u'regim', u'seek']
[u'nation', u'open', u'bundaberg', u'nomin']
[u'nepal', u'declar', u'curfew', u'contain', u'rise', u'protest']
[u'rule', u'design', u'fatigu', u'player', u'matthew']
[u'diabet', u'case']
[u'extend', u'tour', u'duti', u'afghanistan']
[u'road', u'rider', u'lose', u'sand', u'dune', u'area']
[u'food', u'offici', u'criticis', u'vail']
[u'treatment', u'centr', u'open', u'northern']
[u'opal', u'outshin', u'chines', u'taipei']
[u'opposit', u'announc', u'driver', u'educ', u'centr', u'plan']
[u'opposit', u'want', u'lake', u'grace', u'road', u'fix']
[u'opposit', u'weigh', u'weekend', u'detent', u'polici']
[u'physicist', u'order', u'chao']
[u'bull', u'registr', u'deadlin', u'pass']
[u'plaqu', u'honour', u'mcgrane', u'rail', u'line', u'effort']
[u'provid', u'statement', u'inquiri']
[u'polic', u'continu', u'investig', u'person']
[u'polic', u'investig', u'cafe', u'assault', u'theft']
[u'polic', u'charg', u'home', u'invas']
[u'polic', u'arrest', u'control', u'parti']
[u'polic', u'probe', u'attack']
[u'polic', u'reinforc', u'tough', u'messag', u'drunk']
[u'polic', u'send', u'sailor', u'death', u'report', u'coron']
[u'poll', u'reopen', u'italian', u'general', u'elect']
[u'pont', u'hayden', u'go', u'dhaka']
[u'port', u'lincoln', u'hop', u'replic', u'south', u'east']
[u'potenti', u'fatal', u'diseas', u'rise']
[u'preliminari', u'chopper', u'crash', u'report', u'today']
[u'preschool', u'support', u'ralli', u'fund']
[u'princ', u'highway', u'petit', u'tabl', u'parliament']
[u'prison', u'review', u'board', u'head', u'appoint']
[u'prostitut', u'jail', u'murder', u'client']
[u'psychologist', u'applaud', u'medicar']
[u'public', u'servant', u'shut', u'shopfront', u'clear', u'case']
[u'public', u'cossack', u'plan']
[u'putt', u'continu', u'lead', u'green']
[u'queen', u'elizabeth', u'send', u'email']
[u'refuge', u'review', u'alarm', u'human', u'right', u'group']
[u'report', u'question', u'road', u'econom', u'viabil']
[u'report', u'unabl', u'fulli', u'explain', u'fatal', u'chopper', u'crash']
[u'resid', u'highway', u'revamp', u'worri']
[u'resid', u'hous', u'demolit', u'concern']
[u'review', u'appli', u'asylum', u'applic', u'say']
[u'riddel', u'face', u'week']
[u'riverway', u'track', u'juli', u'open']
[u'road', u'upgrad', u'announc', u'pleas', u'beef']
[u'rocca', u'confid', u'best']
[u'rooney', u'owen', u'rift', u'gambl', u'claim', u'report']
[u'fear', u'undignifi', u'anzac', u'parad']
[u'rule', u'crush', u'wind', u'farm', u'hop']
[u'rural', u'counsellor', u'lose', u'murray', u'darl', u'preselect']
[u'govt', u'reject', u'river', u'torren', u'pollut', u'claim']
[u'scarlett', u'face', u'match']
[u'scheme', u'aim', u'attract', u'skill', u'migrant']
[u'scheme', u'highlight', u'internet', u'predat', u'danger']
[u'scholarship', u'high', u'note', u'bariton']
[u'scientist', u'discov', u'frost', u'resist', u'plant', u'gene']
[u'search', u'continu', u'miss', u'angler']
[u'search', u'priest', u'kidnapp']
[u'send', u'cash', u'egg', u'cyclon', u'relief', u'mayor', u'say']
[u'share', u'market', u'subdu', u'amid', u'fall']
[u'sheep', u'shear', u'phone', u'ring', u'true', u'soon']
[u'shire', u'get', u'mobil', u'phone', u'coverag', u'boost']
[u'shoe', u'away', u'egyptian', u'disguis']
[u'soar', u'plumb', u'rat', u'cyclon', u'rebuild']
[u'stanhop', u'defend', u'stanc', u'tent', u'embassi']
[u'steer', u'gore', u'put', u'hospit']
[u'studi', u'show', u'fish', u'zone', u'affect', u'southern']
[u'submiss', u'flow', u'alcohol', u'restrict']
[u'swimmer', u'easter', u'safeti', u'remind']
[u'talk', u'fail', u'break', u'darfur', u'impass']
[u'tasmanian', u'winemak', u'interst', u'wine']
[u'teenag', u'jail', u'role', u'rise', u'death']
[u'territorian', u'util']
[u'terror', u'suspect', u'refus', u'bail']
[u'arrest', u'forest', u'protest']
[u'tomato', u'produc', u'call', u'erad', u'plant']
[u'tourism', u'group', u'hop', u'avoid', u'flood', u'holiday']
[u'tourism', u'resum', u'katherin', u'recov', u'flood']
[u'town', u'crier', u'herald', u'crime', u'fight']
[u'town', u'side', u'prove', u'good', u'countri']
[u'trade', u'pick', u'coastal', u'ship', u'servic']
[u'troop', u'thank', u'quak', u'relief', u'effort']
[u'truck', u'block', u'hume', u'highway']
[u'bushfir', u'think', u'deliber']
[u'uncertainti', u'surround', u'medic', u'centr', u'futur']
[u'get', u'medic', u'school']
[u'nuclear', u'inspector', u'work', u'iran']
[u'upwey', u'landscap', u'fetch']
[u'play', u'zarqawi', u'role', u'iraq', u'report']
[u'presid', u'pressur', u'intellig', u'leak']
[u'vail', u'criticis', u'food', u'offici']
[u'vail', u'say', u'recal', u'tell', u'kickback']
[u'victim', u'give', u'conflict', u'advic', u'flood', u'clean']
[u'villawood', u'detaine', u'reloc', u'easter']
[u'violent', u'video', u'game', u'leav', u'player', u'paranoid']
[u'vote', u'continu', u'itali', u'elect']
[u'dairi', u'farmer', u'secur', u'price', u'rise']
[u'whiski', u'busi', u'tasmanian', u'milk', u'compani']
[u'white', u'hous', u'staff', u'intrud']
[u'wind', u'energi', u'industri', u'decri', u'govt', u'stanc']
[u'women', u'children', u'kill', u'pakistan', u'mosqu', u'stamped']
[u'kill', u'lanka', u'blast']
[u'polic', u'increas', u'unlik', u'minist', u'say']
[u'charg', u'madrid', u'train', u'bomb']
[u'abbott', u'seek', u'bigger', u'role', u'nurs']
[u'census', u'recruit', u'drive']
[u'rich', u'poor', u'grow']
[u'afl', u'anzac', u'clash', u'sell']
[u'alburi', u'oppos', u'anzac', u'protest', u'plan']
[u'alic', u'town', u'camp', u'despair']
[u'amcor', u'sue', u'alleg', u'price', u'fix']
[u'amnesti', u'criticis', u'chang', u'refuge', u'polici']
[u'attitud', u'chang', u'child', u'abus', u'solut']
[u'aussi', u'cricket', u'hold', u'number', u'rank']
[u'aussi']
[u'aussi', u'fight', u'dhaka']
[u'aust', u'ambassador', u'face', u'indonesian', u'parliamentari']
[u'australia', u'bracken', u'cullen']
[u'bali', u'bomber', u'famili', u'fail', u'seek', u'clemenc']
[u'bangladeshi', u'athlet', u'give', u'life', u'game']
[u'bangladeshi', u'get', u'life', u'game', u'assault']
[u'bangladesh', u'lead']
[u'beazley', u'monitor', u'cyclon', u'rebuild', u'effort']
[u'berlusconi', u'disput', u'italian', u'elect', u'result']
[u'tuna', u'catch', u'spark', u'restraint']
[u'boat', u'suppli', u'karumba']
[u'bodi', u'canadian', u'farm', u'tie', u'biker', u'gang']
[u'hospit']
[u'brack', u'paint', u'sell', u'million']
[u'budget', u'deliv', u'reform', u'acci', u'say']
[u'bush', u'deni', u'iran', u'militari', u'strike', u'plan']
[u'busi', u'confid', u'activ', u'jump', u'survey']
[u'passeng', u'cost', u'improv']
[u'case', u'diabet', u'continu', u'rise']
[u'centr', u'sure', u'biosecur', u'expert']
[u'chef', u'jail', u'manslaught']
[u'closer']
[u'closer']
[u'closer']
[u'cole', u'inquiri', u'receiv', u'statement']
[u'committe', u'probe', u'snowi', u'hydro', u'impact']
[u'communiti', u'preschool', u'urg', u'hire', u'qualifi']
[u'council', u'ceo', u'resign', u'spark', u'debat']
[u'council', u'debat', u'visitor', u'centr', u'futur']
[u'council', u'meet', u'impend', u'water', u'crisi']
[u'council', u'assess', u'maloney', u'beach', u'tourism', u'plan']
[u'council', u'consid', u'environment', u'protect', u'zone']
[u'court', u'blame', u'power', u'surg', u'fli']
[u'court', u'set', u'deadlin', u'aborigin', u'protest']
[u'crack', u'appear', u'industri']
[u'crime', u'figur']
[u'custom', u'sniff', u'fake', u'perfum', u'haul']
[u'cyclon', u'larri', u'victim', u'forc', u'live', u'caravan']
[u'darwin', u'architect', u'lament', u'innov']
[u'date', u'jovic', u'deport', u'case']
[u'davi', u'continu', u'address', u'health', u'woe']
[u'vinci', u'code', u'author', u'face', u'plagiar', u'claim']
[u'death', u'reignit', u'ambul', u'staff']
[u'debat', u'wind', u'wind', u'farm', u'approv']
[u'dementia', u'plan', u'outcom', u'disappoint', u'lobbi', u'group']
[u'dfat', u'abil', u'investig', u'limit', u'downer']
[u'disney', u'lose', u'onlin']
[u'doctor', u'face', u'illeg', u'charg', u'remand']
[u'downer', u'defend', u'govt', u'action']
[u'downer', u'give', u'conflict', u'evid']
[u'downer', u'tell', u'alia', u'concern', u'lindberg']
[u'driver', u'urg', u'stay', u'safe', u'easter']
[u'drogba', u'blast', u'mourinho', u'sign']
[u'east', u'secur', u'elect']
[u'elder', u'cyclist', u'make', u'life']
[u'electr', u'market', u'report', u'recommend', u'deregul']
[u'approv', u'miner', u'sand', u'plan']
[u'etoo', u'tell', u'spain', u'grip', u'racism']
[u'condit', u'indigen', u'health', u'problem']
[u'famili', u'push', u'chang']
[u'femal', u'avail', u'determin', u'male', u'size']
[u'figur', u'reveal', u'fall', u'domest', u'violenc', u'report']
[u'fishermen', u'tabl', u'licenc', u'concern']
[u'fisher', u'keen', u'gulf', u'countri']
[u'foster', u'sell', u'european', u'unit']
[u'kill', u'papua', u'clash']
[u'free', u'brekki', u'easter', u'drive', u'safe', u'campaign']
[u'frog', u'supermarket', u'salad']
[u'fuel', u'price', u'worri', u'child', u'abus']
[u'fund', u'boost', u'help', u'health', u'servic', u'process', u'illeg']
[u'ghan', u'bring', u'tourist', u'katherin']
[u'gilchrist', u'lead', u'aussi', u'fight']
[u'govt', u'defend', u'law', u'disput']
[u'govt', u'know', u'indonesian', u'fruit', u'protocol']
[u'govt', u'reject', u'convinc', u'grind', u'acquisit', u'claim']
[u'govt', u'suppress', u'wage', u'report', u'labor']
[u'govt', u'urg', u'improv', u'region', u'transport', u'option']
[u'govt', u'urg', u'offer', u'scholarship', u'fund']
[u'govt', u'number', u'stop', u'senat', u'inquiri']
[u'gower', u'clear', u'storm', u'clash']
[u'gower', u'hold', u'hope', u'play', u'storm']
[u'griffith', u'church', u'get', u'heritag', u'list']
[u'group', u'help', u'boost', u'pilbara', u'indigen', u'health']
[u'hall', u'creek', u'alcohol', u'need', u'plan']
[u'help', u'seek', u'lake', u'burley', u'griffin', u'revamp']
[u'hiddink', u'russian', u'coach']
[u'high', u'petrol', u'price', u'deter', u'outback', u'visitor']
[u'highway', u'claim', u'live']
[u'histori', u'show', u'need', u'dock', u'law', u'andrew']
[u'hous', u'project', u'unlik', u'impact', u'endang']
[u'dont', u'specif', u'recollect', u'downer', u'tell']
[u'ill', u'trescothick', u'indian', u'departur']
[u'immigr', u'detaine', u'arriv', u'port', u'augusta']
[u'indonesian', u'presid', u'urg', u'save', u'threaten']
[u'injur', u'kimmorley', u'origin', u'content']
[u'injur', u'marshal', u'suspend', u'week']
[u'principl', u'agreement', u'reach', u'nurs']
[u'japanes', u'firm', u'confirm', u'plan']
[u'jetstar', u'expand', u'intern', u'rout']
[u'jetti', u'revamp', u'plan', u'hit', u'snag']
[u'judg', u'toss', u'peat', u'case']
[u'kangaroo', u'negoti', u'gold', u'coast', u'presenc']
[u'katherin', u'flood', u'siren', u'late']
[u'katherin', u'flood', u'warn', u'appropri']
[u'lake', u'bonney', u'support', u'wetland']
[u'leather', u'busi', u'suffer', u'impact', u'drought']
[u'legum', u'molecul', u'fight', u'cancer']
[u'liber', u'candid', u'tell', u'parti', u'line']
[u'local', u'nightclub', u'wont', u'troubl', u'earli', u'lockout']
[u'loftus', u'maintain', u'plan', u'stand', u'independ']
[u'magpi', u'thoma', u'collect', u'rise', u'star', u'nomin']
[u'accus', u'speed', u'unrestrain', u'children']
[u'face', u'court', u'traffic', u'offenc']
[u'jail', u'speed', u'equip', u'possess']
[u'jail', u'transport', u'heroin']
[u'plead', u'guilti', u'kill', u'girlfriend']
[u'man', u'surrend', u'end', u'canberra', u'suburb', u'lock']
[u'marin', u'park', u'misinform', u'worri', u'group']
[u'mayor', u'accus', u'snub', u'barcaldin']
[u'mayor', u'wait', u'beatti', u'arrang', u'chalco']
[u'medhurst', u'escap', u'suspens']
[u'meet', u'discuss', u'levi']
[u'melbourn', u'flower', u'threat']
[u'memori', u'recognis', u'aborigin', u'girl', u'train']
[u'memori', u'fail', u'compos', u'downer', u'cole', u'inquiri']
[u'miner', u'appoint', u'manag', u'director']
[u'miss', u'finland', u'confirm', u'sire', u'produc', u'stake']
[u'mission', u'aust', u'rivskil', u'program']
[u'mix', u'view', u'civic', u'hall', u'futur']
[u'fund', u'seek', u'diabet', u'dialysi', u'unit', u'plan']
[u'mother', u'plead', u'lead', u'miss', u'daughter', u'case']
[u'demand', u'inquiri', u'rail', u'woe']
[u'recommend', u'childcar', u'model']
[u'murray', u'flow', u'averag']
[u'nation', u'galleri', u'rais', u'fund']
[u'dalbi', u'age', u'care', u'centr', u'open']
[u'caledonia', u'project', u'close']
[u'figur', u'drop', u'sydney', u'crime', u'rat']
[u'suppli', u'eas', u'shortag']
[u'nightclub', u'face', u'lockout']
[u'reloc', u'feder', u'state', u'govern']
[u'brand', u'highway', u'pass', u'lane', u'easter']
[u'shortag', u'candid', u'socceroo', u'post']
[u'npws', u'beat', u'park', u'larri']
[u'power', u'price', u'rise']
[u'cut', u'invest', u'tax']
[u'price', u'boost', u'market']
[u'claim', u'tram', u'expans', u'cost', u'blow']
[u'pair', u'charg', u'burpengari', u'attack']
[u'pair', u'face', u'court', u'drug']
[u'paperwork', u'delay', u'deer', u'park', u'bypass']
[u'pastoralist', u'expect', u'doubl', u'cattl', u'product']
[u'petrol', u'price', u'head', u'higher']
[u'reward', u'develop', u'progress']
[u'polic', u'hunt', u'petrol', u'station', u'bandit']
[u'polic', u'investig', u'teen']
[u'polic', u'issu', u'easter', u'road', u'safeti', u'warn']
[u'polic', u'lock', u'canberra', u'suburb']
[u'port', u'piri', u'hous', u'price', u'rise']
[u'priest', u'recov', u'abduct', u'ordeal']
[u'prodi', u'claim', u'victori', u'close', u'italian', u'poll']
[u'prostitut', u'murder', u'get', u'year', u'jail']
[u'public', u'urg', u'embrac', u'grampian', u'tourism']
[u'public', u'urg', u'lock', u'home']
[u'qanta', u'clip', u'australian', u'airlin', u'wing']
[u'qanta', u'australian', u'airlin']
[u'fever', u'vaccin', u'shortag', u'worri', u'schwarten']
[u'report', u'give', u'away', u'govt', u'wag', u'agenda', u'labor']
[u'resourc', u'industri', u'staff', u'problem', u'expect']
[u'rhoad', u'want', u'coalit', u'independ']
[u'riddel', u'cop', u'match']
[u'rise', u'report', u'vandal', u'attack']
[u'robinson', u'face', u'court', u'abus', u'power', u'charg']
[u'roger', u'eye', u'brumbi', u'clash']
[u'rooki', u'thoma', u'delight', u'dream', u'start']
[u'rooney', u'dismiss', u'talk', u'owen', u'rift']
[u'ruddock', u'shrug', u'legal', u'servic', u'concern']
[u'sack', u'optus', u'staff', u'offer', u'lower', u'job']
[u'sack', u'optus', u'worker', u'face', u'actu', u'say']
[u'sandwich', u'price', u'hard', u'chew']
[u'santand', u'await', u'punish', u'racist', u'abus']
[u'scarlett', u'ban', u'match']
[u'send', u'refuge', u'boat', u'indonesia', u'say']
[u'offend', u'track', u'trial', u'continu']
[u'seymour', u'dump', u'rooster', u'clash']
[u'sharon', u'declar', u'perman', u'incapacit']
[u'sheep', u'tempera', u'impact', u'reproduct', u'rate']
[u'shire', u'chief', u'promot', u'merger', u'discuss']
[u'shoalhaven', u'run', u'hous', u'jail']
[u'children', u'afghan', u'rocket', u'attack']
[u'slater', u'iron', u'doubt', u'bell']
[u'smith', u'donat', u'veteran', u'recognit']
[u'sonni', u'return', u'rabbitoh']
[u'strong', u'commod', u'price', u'push', u'market', u'higher']
[u'swan', u'shrug', u'critic']
[u'sydney', u'eateri', u'global']
[u'talk', u'focus', u'possibl', u'bega', u'shire', u'hospit']
[u'timber', u'plantat', u'chang', u'afoot']
[u'gilchrist', u'lead', u'aussi', u'fightback']
[u'italian', u'mafia', u'boss', u'arrest', u'decad']
[u'tourism', u'spot', u'reopen', u'cyclon']
[u'trio', u'arrest', u'home', u'invas']
[u'trucki', u'wont', u'freight', u'rat', u'campaign']
[u'umpir', u'hail', u'player', u'handl', u'rule', u'chang']
[u'corner', u'iraq', u'wheat', u'market']
[u'vege', u'grower', u'outperform', u'broadacr', u'farmer', u'report']
[u'venus', u'probe', u'seek', u'greenhous', u'answer']
[u'victorian', u'take', u'young', u'auction', u'award']
[u'villawood', u'detaine', u'reloc', u'protest']
[u'villawood', u'detaine', u'run', u'troubl']
[u'villawood', u'detaine', u'resist', u'reloc']
[u'villawood', u'inmat', u'resist', u'reloc']
[u'violent', u'protest', u'continu', u'nepal']
[u'health', u'need', u'support', u'professor', u'warn']
[u'name', u'like', u'extinct', u'hotspot']
[u'water', u'suppli', u'plan', u'rais', u'concern']
[u'western', u'arteri', u'road', u'reopen', u'month']
[u'confirm', u'indonesia', u'bird', u'case']
[u'william', u'paint', u'fetch', u'record', u'price']
[u'wind', u'farm', u'propon', u'rule', u'second']
[u'woodsid', u'forecast', u'strong', u'growth']
[u'campaign', u'lure', u'visitor', u'kakadu']
[u'student', u'protest', u'arrest']
[u'kill', u'hurt', u'lanka', u'market', u'blast']
[u'accc', u'blame', u'petrol', u'price', u'hike']
[u'accc', u'put', u'telstra', u'notic', u'wholesal', u'price']
[u'accc', u'steer', u'clear', u'petrol', u'price', u'debat']
[u'aerial', u'patrol', u'manag', u'unhappi', u'shark', u'summit']
[u'move', u'offend', u'jail']
[u'airlin', u'shake', u'see', u'have', u'north', u'benefit']
[u'airport', u'chief', u'beat', u'prepared']
[u'alic', u'town', u'camp', u'problem', u'high', u'prioriti']
[u'andrew', u'move', u'allay', u'easter', u'sack', u'fear']
[u'argentinian', u'captain', u'confid', u'scupper', u'aussi']
[u'arid', u'zone', u'research', u'group', u'research', u'focus']
[u'arsonist', u'walk', u'free', u'court']
[u'atsb', u'investig', u'sailor', u'death']
[u'attack', u'kill', u'polic', u'lanka']
[u'australia', u'close', u'comeback', u'bangladesh', u'victori']
[u'australia', u'get', u'year', u'larkham']
[u'australian', u'look', u'sponsor']
[u'australian', u'super', u'asset']
[u'australia', u'start', u'chase']
[u'aust', u'research', u'help', u'googl']
[u'bail', u'refus', u'termin', u'accus', u'drug']
[u'ball', u'koschitzk', u'miss', u'lion', u'clash']
[u'bangladesh', u'revel', u'give', u'australia', u'game']
[u'beazley', u'outlin', u'labor', u'plan']
[u'beazley', u'outlin', u'labor', u'polici']
[u'beazley', u'urg', u'exit', u'fund', u'banana', u'grower']
[u'berlusconi', u'refus', u'admit', u'defeat']
[u'berlusconi', u'refus', u'conced', u'defeat']
[u'blast', u'project']
[u'burn', u'gippsland']
[u'bushfir', u'inquest', u'hear', u'firefight', u'concern']
[u'canberra', u'hospit', u'introduc', u'park', u'fee']
[u'candid', u'confirm', u'fiji', u'elect']
[u'candid', u'mayor', u'spot']
[u'cave', u'resort', u'lift', u'occup', u'receiv']
[u'lift', u'region', u'restrict']
[u'chanderpaul', u'quit', u'windi', u'skipper']
[u'child', u'safeti', u'offic', u'fin', u'palm', u'alcohol']
[u'claim', u'half', u'pngs', u'forest', u'destroy']
[u'closer']
[u'closer']
[u'closer']
[u'consum', u'unfaz', u'petrol', u'price', u'hike']
[u'costello', u'fear', u'price', u'push', u'inflat']
[u'costello', u'hedg', u'cut']
[u'council', u'get', u'build', u'offic']
[u'councillor', u'accus', u'sauci', u'incid', u'urg', u'quit']
[u'court', u'hear', u'councillor', u'like', u'plead', u'guilti']
[u'court', u'refus', u'caravan', u'park', u'applic']
[u'court', u'reject', u'appeal', u'hick', u'citizenship']
[u'crime', u'prove', u'cost', u'australian', u'farmer']
[u'dairi', u'factori', u'close']
[u'dairi', u'farmer', u'restructur', u'go', u'ahead', u'despit', u'profit']
[u'demon', u'rediscov', u'win', u'way', u'danih']
[u'dick', u'smith', u'donat', u'australian', u'memori']
[u'doctor', u'clown', u'alic', u'spring']
[u'door', u'close', u'dairi', u'factori']
[u'draft', u'report', u'releas', u'firefight', u'plane', u'crash']
[u'driver', u'urg', u'heed', u'easter', u'safeti', u'warn']
[u'east', u'timores', u'babi', u'life', u'save', u'surgeri']
[u'tourism', u'plan', u'announc', u'north', u'east']
[u'produc', u'seek', u'ministeri', u'back']
[u'enceph', u'fear', u'hold', u'katherin', u'flood']
[u'energi', u'firm', u'begin', u'talk', u'tradit', u'owner']
[u'farmer', u'qualifi', u'support', u'salt', u'plan']
[u'farm', u'grant', u'environment', u'project']
[u'father', u'escap', u'punish', u'assault']
[u'firebug', u'blame', u'gippsland', u'blaze']
[u'fish', u'precinct', u'open', u'sell', u'option']
[u'troop', u'kill', u'iraq']
[u'forum', u'seek', u'snowi', u'hydro', u'sale', u'answer']
[u'french', u'student', u'stage', u'victori', u'march']
[u'fund', u'boost', u'zirconia', u'project']
[u'gatlin', u'take', u'world', u'record']
[u'ghost', u'ship', u'sink', u'coral']
[u'gold', u'coast', u'council', u'break', u'water', u'agreement']
[u'googl', u'defend', u'censorship', u'polici', u'china']
[u'govern', u'announc', u'deviat', u'prefer', u'tender']
[u'govt', u'accus', u'panic', u'prosecut', u'backdown']
[u'govt', u'announc', u'bega', u'valley', u'hospit']
[u'govt', u'ask', u'address', u'bendigo', u'shortag']
[u'govt', u'green', u'light', u'oilse', u'plant', u'expans']
[u'govt', u'iraqi', u'sanction', u'oblig', u'expert']
[u'govt', u'reassur', u'worker', u'chang']
[u'govt', u'agre', u'work', u'communiti', u'servic']
[u'govt', u'say', u'separ', u'inquiri', u'claim']
[u'govt', u'urg', u'develop', u'bendigo', u'court', u'precinct']
[u'gower', u'paddock']
[u'guyra', u'council', u'consid', u'cattl', u'yard', u'sale']
[u'health', u'threat', u'keep', u'pool', u'close']
[u'heat', u'meet', u'debat', u'park', u'hand', u'plan']
[u'hemp', u'food', u'hit', u'market']
[u'heritag', u'list', u'hermannsburg', u'aborigin']
[u'hick', u'solitari', u'confin', u'lawyer']
[u'high', u'price', u'drive', u'market']
[u'hobart', u'expand', u'road', u'safeti', u'campaign']
[u'horticultur', u'industri', u'supplier', u'notic']
[u'howard', u'call', u'cole', u'inquiri']
[u'howard', u'cole', u'inquiri']
[u'hussey', u'fall', u'dhaka']
[u'iemma', u'sign', u'train', u'technolog', u'deal']
[u'indonesia', u'ask', u'help', u'track', u'attack']
[u'inquiri', u'consid', u'suitabl', u'wast', u'dump', u'panel']
[u'internet', u'filter', u'trial', u'begin']
[u'iran', u'complet', u'uranium', u'enrich']
[u'iranian', u'nuclear', u'claim', u'step', u'wrong', u'direct']
[u'iran', u'success', u'enrich', u'uranium']
[u'iron', u'ring', u'perfect', u'bell']
[u'italian', u'refus', u'conced', u'elector', u'defeat']
[u'keech', u'hop', u'airlin', u'demis', u'wont', u'hurt', u'tourist']
[u'killer', u'wife', u'hop', u'jail', u'bring', u'closur']
[u'labor', u'outlin', u'workplac', u'polici']
[u'labor', u'plan', u'return', u'flaw']
[u'labor', u'urg', u'downer', u'vail', u'quit']
[u'labour', u'call', u'overhaul']
[u'lake', u'conserv', u'list', u'plan', u'worri', u'farmer']
[u'late', u'night', u'venu', u'group', u'tri', u'stop', u'drunken']
[u'launceston', u'home', u'treatment', u'plant']
[u'lawyer', u'visit', u'hick', u'singl', u'occup', u'cell']
[u'locust', u'swarm', u'wheatbelt']
[u'mackay', u'canegrow', u'hope', u'bumper', u'harvest']
[u'charg', u'rivett', u'lockdown']
[u'mandurah', u'railway', u'cost', u'blow']
[u'get', u'year', u'jail', u'cape', u'barren', u'murder']
[u'get', u'good', u'behaviour', u'bond', u'load', u'rifl']
[u'get', u'year', u'brother', u'death']
[u'marathon', u'tattoo', u'etch', u'record', u'book']
[u'marin', u'park', u'draft', u'zone', u'creat', u'concern']
[u'mayor', u'back', u'fund', u'boost', u'ail', u'visitor']
[u'mayor', u'clear', u'pecuniari', u'claim']
[u'mayor', u'posit', u'water', u'effort']
[u'mayor', u'sooth', u'barossa', u'develop', u'concern']
[u'medic', u'centr', u'fail', u'medicar', u'provid']
[u'medic', u'school', u'boost', u'hospit', u'redevelop', u'hop']
[u'meet', u'decid', u'marina', u'futur']
[u'melbourn', u'italian', u'parliament', u'seat']
[u'melbourn', u'polic', u'oper', u'net', u'driver']
[u'like', u'divorc', u'come']
[u'export', u'help', u'boost', u'townsvill', u'port', u'trade']
[u'minist', u'marina', u'expans', u'plan']
[u'counsel', u'servic', u'plan', u'north']
[u'fire', u'spark', u'renew', u'servic']
[u'motorcycl', u'rider', u'reunit', u'year']
[u'murray', u'prepar', u'john', u'onslaught']
[u'narkl', u'clear', u'convict', u'quash']
[u'nation', u'choos', u'thuringowa', u'candid']
[u'natur', u'reserv', u'blaze', u'contain']
[u'councillor', u'look', u'stronger', u'council', u'communiti']
[u'law', u'target', u'flee', u'driver']
[u'north', u'west', u'flood', u'benefit', u'wetland']
[u'nurseri', u'forc', u'destroy', u'plant', u'declar', u'noxious']
[u'nusa', u'hop', u'gather', u'support', u'action']
[u'opal', u'seek', u'upset']
[u'optim', u'air', u'chilli', u'trial']
[u'outlook', u'north', u'korean', u'nuclear', u'talk']
[u'patrick', u'accc']
[u'pipe', u'bomb', u'tamworth', u'post']
[u'cole', u'inquiri']
[u'polic', u'accus', u'tri', u'stop', u'evid']
[u'polic', u'believ', u'teen', u'death', u'drug', u'relat']
[u'polic', u'consid', u'fin', u'truck', u'blockad']
[u'polic', u'extend', u'seatbelt', u'campaign']
[u'polic', u'offer', u'counsel', u'rivett', u'lockdown']
[u'polic', u'pleas', u'dealer', u'respons']
[u'polic', u'probe', u'fatal', u'truck', u'crash']
[u'polic', u'recov', u'angler', u'bodi']
[u'polic', u'urg', u'parent', u'crack', u'troublesom']
[u'premier', u'open', u'miner', u'separ', u'plant']
[u'prenat', u'smoke', u'boost', u'teen', u'girl', u'asthma', u'risk']
[u'prison', u'drug', u'program', u'upgrad', u'urg']
[u'problem', u'see', u'lockout', u'plan']
[u'produc', u'winter', u'worri']
[u'hart', u'paint', u'fetch', u'sale']
[u'protest', u'demand', u'govt', u'invest', u'tertiari']
[u'protest', u'stag', u'outsid', u'indonesian', u'playboy', u'offic']
[u'public', u'holiday', u'plan', u'anger', u'employ']
[u'qanta', u'share', u'schedul']
[u'qanta', u'chang', u'see', u'challeng', u'domest', u'tourism']
[u'ralli', u'hold', u'sack', u'optus', u'worker']
[u'reloc', u'fail', u'deter', u'immigr', u'protest']
[u'rise', u'fuel', u'cost', u'tip', u'hurt', u'outback', u'tourism']
[u'riverland', u'citrus', u'grower', u'lock', u'indonesian']
[u'ross', u'boss', u'chase', u'gift', u'titl']
[u'campaign', u'monument']
[u'defend', u'allow', u'turkish', u'vet', u'anzac', u'march']
[u'rudd', u'see', u'merit', u'china', u'trade', u'push']
[u'russian', u'confirm', u'guus', u'appoint']
[u'ryan', u'seek', u'polici', u'feedback']
[u'sack', u'wallabi', u'assist', u'line', u'saracen']
[u'saddam', u'trial', u'adjourn', u'brief', u'session']
[u'save', u'wetland', u'bird', u'risk']
[u'school', u'worker', u'plead', u'guilti', u'teen', u'assault']
[u'score', u'kill', u'pakistani', u'blast']
[u'search', u'intensifi', u'miss', u'woman']
[u'shark', u'tooth', u'teen', u'foot']
[u'shiit', u'fail', u'decid', u'jaafari', u'fate']
[u'snail', u'face', u'reloc', u'develop']
[u'confid', u'domain', u'protest', u'pack']
[u'star', u'show', u'pooh', u'worth', u'bother']
[u'strauss', u'help', u'england', u'wicket']
[u'suicid', u'bomber', u'kill', u'pakistan', u'attack']
[u'swimmer', u'warn', u'stinger', u'threat']
[u'sydney', u'gear', u'world', u'youth']
[u'tasmanian', u'famili', u'trial', u'internet', u'porn', u'filter']
[u'tourism', u'head', u'bag', u'local', u'servic']
[u'teen', u'get', u'supervis', u'order', u'kidnap']
[u'tender', u'call', u'pump', u'station']
[u'rais', u'australian', u'paint', u'price', u'record']
[u'charg', u'traffic']
[u'time', u'wicket', u'australia']
[u'town', u'meet', u'katherin', u'flood', u'complaint']
[u'transgend', u'woman', u'challeng', u'elect']
[u'tredrea', u'firm', u'start']
[u'trescothick', u'defend', u'india', u'exit']
[u'trucki', u'feel', u'impact', u'rise', u'fuel', u'cost']
[u'doctor', u'approv', u'prescrib']
[u'guilti', u'businessman', u'murder']
[u'court', u'reject', u'appeal', u'hick', u'citizenhsip']
[u'govt', u'hint', u'appeal', u'hick', u'case']
[u'union', u'wont', u'accept', u'simplot', u'redund']
[u'upper', u'hunter', u'record', u'job', u'downturn']
[u'offic', u'reliev', u'duti', u'amid', u'iraq', u'kill']
[u'warn', u'iran', u'nuclear', u'enrich']
[u'victorian', u'tourist', u'attract', u'reopen']
[u'villawood', u'protest', u'ahead']
[u'vioxx', u'user', u'win', u'damag', u'payout']
[u'wallabi', u'jumper', u'grab', u'oconnor']
[u'warn', u'gillespi', u'clean', u'bangladesh']
[u'watchdog', u'peg', u'fare', u'inflat', u'rate']
[u'water', u'suppli', u'revert', u'hard', u'river']
[u'weather', u'blame', u'hike', u'fish', u'price']
[u'woman', u'jail', u'hammer', u'attack']
[u'xstrata', u'appli', u'second', u'test']
[u'year', u'hard', u'work', u'ahead', u'ead', u'warn', u'bulldog']
[u'yellow', u'leaf', u'curl', u'virus', u'outbreak', u'hit', u'tomato']
[u'injur', u'overturn']
[u'iraqi', u'flee', u'home', u'fear']
[u'charg', u'west', u'gippsland', u'brawl']
[u'abattoir', u'give', u'green', u'light', u'halal', u'beef', u'export']
[u'nation', u'rural', u'news']
[u'staff', u'fear', u'board', u'chang', u'risk', u'independ']
[u'govt', u'defend', u'hospit', u'park', u'decis']
[u'adelaid', u'local', u'concern', u'mobil', u'phone', u'tower']
[u'afridi', u'announc', u'test', u'hiatus']
[u'forc', u'offic', u'jail', u'refus', u'order']
[u'alleg', u'terror', u'agent', u'refus', u'bail']
[u'angler', u'influx', u'boost', u'portland', u'tourism']
[u'arsenal', u'draw', u'lowli', u'portsmouth']
[u'art', u'curat', u'choic']
[u'asylum', u'chang', u'pander', u'indonesia', u'fraser']
[u'asylum', u'process', u'chang', u'pander']
[u'australia', u'avoid', u'embarrass', u'dhaka', u'test']
[u'australian', u'make', u'emerg', u'land']
[u'blood', u'boil', u'power', u'docker']
[u'baker', u'fin', u'sell', u'underweight', u'loav']
[u'bangladesh', u'polic', u'kill', u'food', u'fuel', u'protest']
[u'berlusconi', u'rail', u'poll', u'result']
[u'biki', u'member', u'face', u'court', u'gold', u'coast', u'shoot']
[u'britain', u'appeal', u'hick', u'passport', u'decis']
[u'broom', u'taxi', u'fleet', u'increas']
[u'buswel', u'renew', u'public', u'fund', u'push']
[u'discount', u'water', u'rat', u'continu']
[u'call', u'north', u'coast', u'polic']
[u'call', u'strong', u'step', u'iran']
[u'caloundra', u'mayor', u'welcom', u'local', u'govt', u'agreement']
[u'campbel', u'vow', u'fight', u'spida', u'close']
[u'central', u'victoria', u'surviv', u'harsh', u'season']
[u'centrelink', u'doubt', u'lose', u'man', u'claim']
[u'closer']
[u'closer']
[u'closer']
[u'coastal', u'project', u'help', u'protect', u'marin']
[u'cockpit', u'record', u'releas', u'fat', u'sept']
[u'cole', u'inquiri', u'adjourn', u'take', u'stand']
[u'communiti', u'bank', u'open', u'saturday']
[u'compani', u'face', u'trial', u'paper', u'accid']
[u'costello', u'examin', u'busi', u'level']
[u'councillor', u'oppos', u'polit', u'parti', u'ticket', u'plan']
[u'court', u'order', u'terror', u'charg', u'reword']
[u'court', u'reserv', u'decis', u'croatian', u'extradit']
[u'croc', u'captur', u'katherin', u'main', u'street']
[u'croc', u'warn', u'sign', u'steal']
[u'dapto', u'face', u'court', u'cano', u'club', u'blaze']
[u'databas', u'form', u'lure', u'skill', u'worker']
[u'daylight', u'save', u'liber', u'agenda']
[u'deal', u'lead', u'sunshin', u'coast', u'flight']
[u'debnam', u'dismiss', u'opinion', u'poll']
[u'demand', u'high', u'easter', u'seafood']
[u'doctor', u'hop', u'prescrib', u'month']
[u'doctor', u'import']
[u'domain', u'campsit', u'protest', u'give', u'deadlin']
[u'doubl', u'injuri', u'blow', u'bronco']
[u'driver', u'warn', u'doubl', u'demerit', u'point']
[u'condit', u'spark', u'shoalhaven', u'water']
[u'easter', u'boost', u'seafood', u'sale']
[u'easter', u'put', u'bilbi', u'breed', u'program', u'focus']
[u'eat', u'frog', u'keep', u'lose', u'aliv']
[u'educ', u'see', u'better', u'indigen', u'health']
[u'elect', u'surgeri', u'patient', u'wait', u'longer']
[u'employ', u'chang', u'focus', u'citrus', u'demand', u'drop']
[u'encourag', u'terror', u'crime', u'britain']
[u'continu', u'sewag', u'spill', u'probe']
[u'espanyol', u'swamp', u'zaragoza', u'spanish']
[u'estrogen', u'increas', u'breast', u'cancer', u'risk', u'studi']
[u'farmer', u'environment', u'grant', u'pork', u'barrel']
[u'father', u'face', u'court', u'accus', u'daughter']
[u'fatigu', u'put', u'driver', u'risk']
[u'feder', u'court', u'dismiss', u'darwin', u'nativ', u'titl']
[u'firefight', u'tackl', u'truck', u'grass', u'fire']
[u'flintoff', u'carri', u'england', u'hayden']
[u'flood', u'affect', u'grazier', u'home']
[u'forestri', u'impact', u'studi', u'cross', u'side', u'border']
[u'prime', u'minist', u'malcolm', u'fraser', u'criticis']
[u'fuel', u'price', u'tip', u'hurt', u'bega', u'valley', u'tourism']
[u'fund', u'concern', u'threaten', u'fuel', u'watchdog']
[u'girl', u'die', u'road', u'crash']
[u'good', u'friday', u'easter', u'monday', u'protect', u'labor']
[u'govt', u'confirm', u'plan', u'transfer', u'asylum', u'seeker']
[u'govt', u'consid', u'process', u'refuge', u'claim', u'offshor']
[u'govt', u'hide', u'cole', u'inquiri']
[u'govt', u'plan', u'transfer', u'asylum', u'seeker', u'offshor']
[u'govt', u'urg', u'landown', u'releas', u'land', u'free']
[u'govt', u'prevent', u'return', u'hick', u'ruddock']
[u'grave', u'concern', u'hold', u'miss', u'kempsey', u'woman']
[u'grazier', u'prosecut', u'tree', u'clear']
[u'green', u'help', u'ensur', u'land', u'stay', u'public', u'hand']
[u'group', u'fund', u'domest', u'violenc', u'work']
[u'gunmen', u'storm', u'palestinian', u'offic']
[u'health', u'advisori', u'council', u'chief', u'quit']
[u'health', u'servic', u'say', u'age', u'care', u'check']
[u'hewitt', u'defam', u'case', u'head', u'trial']
[u'hick', u'return', u'home', u'free']
[u'hick', u'return', u'australia', u'free']
[u'horror', u'crash', u'leav', u'dead']
[u'howard', u'await', u'wheat', u'kickback', u'inquiri', u'appear']
[u'howard', u'front', u'cole', u'inquiri']
[u'howard', u'say', u'govt', u'secret']
[u'didnt', u'rort', u'cabl', u'howard']
[u'iemma', u'debnam', u'agre', u'defenc', u'ship']
[u'incid', u'control', u'bushfir']
[u'indigen', u'right', u'protest', u'pack', u'campsit']
[u'indonesia', u'cautious', u'ambassador', u'return']
[u'indonesia', u'move', u'closer', u'execut', u'bali', u'bomber']
[u'industri', u'leader', u'appoint', u'colleg', u'director']
[u'injur', u'watson', u'seri']
[u'inquiri', u'appear', u'prove', u'account']
[u'inquiri', u'tell', u'higher', u'water', u'price', u'deter']
[u'inskip', u'polic', u'patrol', u'step']
[u'iran', u'shun', u'call', u'freez', u'nuclear', u'program']
[u'order', u'halt', u'qanta', u'redund']
[u'itali', u'jail', u'drug', u'smuggler']
[u'jakarta', u'polic', u'want', u'playboy', u'issu']
[u'offer', u'year', u'enrol', u'tafe', u'nurs']
[u'agenc', u'say', u'incent', u'need', u'attract']
[u'jogger', u'serious', u'injur']
[u'kangaroo', u'stand', u'home', u'guernsey']
[u'labor', u'call', u'govt', u'review', u'uranium', u'mine']
[u'labor', u'oppos', u'knee', u'jerk', u'asylum', u'chang']
[u'larkham', u'mark', u'tuqiri']
[u'latham', u'red']
[u'go', u'banger', u'break']
[u'littbarski', u'stay', u'sydney']
[u'littl', u'central', u'aust', u'critter', u'popular']
[u'llewellyn', u'back', u'hemp', u'farm']
[u'log', u'creat', u'fear', u'parrot']
[u'arrest', u'alleg', u'fals', u'polic', u'report']
[u'drown', u'newcastl', u'harbour']
[u'face', u'court', u'accus', u'murder']
[u'find', u'dead', u'bodi', u'home']
[u'jail', u'basebal', u'attack']
[u'market', u'subdu', u'lead', u'easter']
[u'marshal', u'return', u'week']
[u'mcmeniman', u'miss', u'domest', u'test']
[u'murray', u'council', u'seek', u'offic', u'upgrad']
[u'migrant', u'right', u'advoc', u'die']
[u'millic', u'lose', u'bonshor', u'park', u'playground']
[u'minist', u'order', u'probe', u'council', u'sauc', u'stoush']
[u'rain', u'need', u'avoid', u'winter', u'drought']
[u'mosqu', u'attack', u'see', u'misguid']
[u'back', u'council', u'fluorid', u'opposit']
[u'mysteri', u'skull', u'artist', u'polic']
[u'neel', u'jump', u'phoenix']
[u'nepal', u'polic', u'arrest', u'lawyer', u'protest', u'continu']
[u'hous', u'block', u'sale', u'wellington']
[u'italian', u'govt', u'unlik', u'prodi']
[u'legisl', u'delay', u'serial', u'offend', u'releas']
[u'mayor', u'announc', u'west', u'region', u'council']
[u'planet', u'larger', u'pluto']
[u'xstrata', u'plan', u'effect', u'open', u'mine']
[u'korea', u'vow', u'commit', u'militari', u'deterr']
[u'govt', u'deni', u'preschool', u'staff', u'advic']
[u'north', u'coast', u'name', u'spot']
[u'research', u'revolutionis', u'internet']
[u'defenc', u'contract']
[u'launch', u'kakadu', u'tourism', u'drive']
[u'nuclear', u'watchdog', u'hold', u'emerg', u'talk', u'iran']
[u'nusa', u'encourag', u'action', u'respons']
[u'opposit', u'urg', u'tougher', u'stanc', u'road', u'toll']
[u'pacif', u'highway', u'project', u'stall', u'oakeshott', u'say']
[u'parreira', u'reliev', u'ronaldo', u'injuri']
[u'pay', u'earli', u'child', u'care', u'option', u'say']
[u'beat', u'mcgowan', u'lake', u'meet']
[u'await', u'wheat', u'kickback', u'inquiri', u'appear']
[u'front', u'cole', u'inquiri']
[u'say', u'govt', u'secret']
[u'pointer', u'sister', u'die', u'cancer']
[u'polic', u'inform', u'priest', u'abduct']
[u'polic', u'weapon', u'drug', u'stockpil', u'melbourn']
[u'polic', u'injur', u'break', u'wild', u'parti']
[u'polic', u'question', u'drouin', u'parti']
[u'polic', u'urg', u'boost', u'public', u'communic']
[u'polic', u'urg', u'easter', u'driver', u'care']
[u'polic', u'warn', u'easter', u'road', u'crackdown']
[u'polic', u'warn', u'increas', u'break', u'risk']
[u'polit', u'erupt', u'powerlin', u'fund']
[u'pont', u'guid', u'brink', u'victori']
[u'pont', u'set', u'dhaka']
[u'prioriti', u'scheme', u'place', u'dwindl', u'fever']
[u'public', u'remind', u'fruit', u'crackdown']
[u'push', u'local', u'option', u'snowi', u'share']
[u'doctor', u'permit', u'prescrib']
[u'whistleblow', u'bribe', u'proof']
[u'reef', u'fish', u'shortag', u'possibl', u'easter']
[u'replac', u'offer', u'memori', u'model']
[u'resid', u'flee', u'danub', u'river', u'rise']
[u'resid', u'quiz', u'broadcast']
[u'resid', u'legal', u'action', u'tugun', u'bypass']
[u'riewoldt', u'fire', u'saint', u'turn']
[u'riewoldt', u'star', u'saint', u'lion']
[u'road', u'open', u'delay', u'frustrat', u'local']
[u'rocket', u'launcher', u'recommend', u'draw']
[u'santand', u'fin', u'racist', u'chant', u'etoo']
[u'search', u'find', u'miss', u'women', u'safe']
[u'search', u'miss', u'fisher']
[u'second', u'arrest', u'alic', u'spring', u'murder']
[u'seiz', u'fake', u'cloth', u'worth']
[u'sharehold', u'vote', u'rebuild', u'norpli', u'factori']
[u'sierra', u'leon', u'athlet', u'appli', u'extend', u'visa']
[u'simpson', u'call', u'loyalti', u'amid', u'kangaroo']
[u'singapor', u'acced', u'kyoto', u'protocol']
[u'solomon', u'elector', u'process', u'scrutini']
[u'student', u'finish', u'chariti', u'walk']
[u'sudan', u'clash', u'kill']
[u'sydney', u'riot', u'victim', u'call', u'justic']
[u'farmer', u'produc', u'hemp', u'food']
[u'task', u'forc', u'urg', u'better', u'burrup', u'resourc', u'industri']
[u'univers', u'pharmaci', u'softwar', u'world']
[u'team', u'drum', u'support', u'ethanol', u'blend', u'fuel']
[u'telstra', u'hold', u'line', u'price', u'rise']
[u'telstra', u'mull', u'legal', u'option', u'accc', u'claim']
[u'thousand', u'expect', u'gospel', u'music', u'festiv']
[u'tomato', u'virus', u'prompt', u'call', u'quarantin', u'zone']
[u'tredrea', u'clear', u'final', u'hurdl']
[u'troubl', u'health', u'servic', u'undergo', u'audit']
[u'turner', u'pcyc', u'reloc', u'suburb']
[u'union', u'beat', u'paper', u'mill', u'invest']
[u'success', u'crack', u'rich', u'list']
[u'vaughan', u'ponder', u'retir']
[u'viduka', u'schwarzer', u'send', u'boro', u'semi']
[u'violenc', u'break', u'fan', u'homag', u'indian']
[u'visitor', u'centr', u'woe', u'blame', u'govt', u'fund', u'shortfal']
[u'water', u'break']
[u'wildcard', u'bell']
[u'wind', u'energi', u'group', u'seek', u'clarif']
[u'wine', u'grape', u'dump', u'oversuppli', u'woe', u'grower']
[u'wineri', u'secur', u'record', u'contract']
[u'worst', u'qaeda', u'jail', u'indefinit']
[u'wyndham', u'gear', u'battl', u'barra']
[u'young', u'rooster', u'give', u'chanc', u'shine']
[u'kill', u'egypt', u'church', u'knife', u'attack']
[u'kill', u'nigerian', u'land', u'disput']
[u'aborigin', u'maintain', u'park', u'protest']
[u'adelaid', u'street', u'liken', u'baghdad']
[u'amnesti', u'condemn', u'refuge', u'chang']
[u'archbishop', u'urg', u'peac', u'easter']
[u'asylum', u'chang', u'lack', u'moral', u'courag']
[u'australia', u'play', u'cricket', u'waugh']
[u'banana', u'bowler', u'hat', u'mark', u'beckett', u'birthday']
[u'bayley', u'mear', u'fall', u'flat', u'world', u'champ']
[u'bean', u'fart', u'link', u'factual', u'realiti']
[u'blue', u'forc', u'winless', u'auckland']
[u'bomb', u'kill', u'policemen', u'afghanistan']
[u'bomb', u'kill', u'sunni', u'mosqu']
[]
[u'british', u'soldier', u'jail', u'refus', u'iraq']
[u'british', u'troop', u'hurt', u'afghan', u'suicid', u'blast']
[u'brochur', u'rais', u'question', u'school', u'promot']
[u'bronco', u'prove', u'good', u'rooster']
[u'brumbi', u'waratah', u'add', u'spice', u'super']
[u'camper', u'warn', u'crocodil', u'risk']
[u'chelsea', u'look', u'titl', u'boost', u'drop', u'battl']
[u'china', u'tighten', u'media', u'regul']
[u'christian', u'australian', u'attend', u'good', u'friday', u'servic']
[u'class', u'action', u'file', u'septemb', u'dust']
[u'closer']
[u'closer']
[u'closer']
[u'coupl', u'charg', u'sextuplet', u'hoax']
[u'dali', u'river', u'continu', u'rise']
[u'develop', u'process', u'target']
[u'docker', u'squad', u'strengthen', u'port', u'clash']
[u'donat', u'roll', u'hospit', u'good', u'friday', u'appeal']
[u'dozen', u'protest', u'remain', u'king', u'domain', u'camp']
[u'easter', u'celebr', u'begin', u'rome']
[u'easter', u'epic', u'draw', u'ancient', u'music']
[u'employ', u'ask', u'honour', u'penalti', u'rat']
[u'danger', u'season', u'end']
[u'dead', u'hurt', u'kashmir', u'attack']
[u'franc', u'deni', u'bomb', u'chadian', u'rebel']
[u'franc', u'deni', u'bomb', u'rebel', u'chad']
[u'general', u'rumsfeld', u'resign']
[u'globe', u'trekker', u'deport', u'russia']
[u'govt', u'accus', u'profit', u'flood', u'loan']
[u'gulf', u'flood', u'hinder', u'fli', u'doctor']
[u'harvey', u'suffer', u'injuri', u'blow']
[u'imag', u'worri', u'immigr', u'dept', u'staff']
[u'indigen', u'protest', u'threaten', u'jogger']
[u'injur', u'owen', u'vow', u'return', u'season']
[u'iran', u'brush', u'nuclear', u'deadlin']
[u'iran', u'dismiss', u'nuclear', u'deadlin']
[u'iraqi', u'politician', u'edg', u'agreement']
[u'halt', u'qanta', u'cut']
[u'japan', u'court', u'reject', u'withdraw', u'iraq', u'troop']
[u'jone', u'eye', u'test', u'comeback', u'england']
[u'chang', u'boost', u'live', u'organ', u'donat']
[u'leader', u'reflect', u'confront', u'easter', u'messag']
[u'libya', u'remain', u'terror', u'list']
[u'fall', u'bridg', u'fear']
[u'mear', u'claim', u'time', u'trial', u'silver', u'world', u'titl']
[u'mourinho', u'plan', u'tripl', u'transfer', u'swoop']
[u'moussaoui', u'ask', u'juror', u'jail', u'term']
[u'moussaoui', u'regret', u'septemb']
[u'allay', u'doctor', u'deport', u'fear']
[u'nation', u'road', u'toll', u'reach']
[u'nativ', u'titl', u'rule', u'pleas', u'darwin', u'mayor']
[u'nepales', u'king', u'call', u'general', u'elect']
[u'nepales', u'polic', u'clash', u'protestor']
[u'boat', u'peopl', u'polici', u'immor', u'church']
[u'zealand', u'australia', u'junior', u'world']
[u'colombia', u'mudslid']
[u'fish', u'stock', u'drastic', u'reduc', u'report']
[u'blame', u'petrol', u'price', u'hike', u'costello']
[u'opposit', u'seek', u'releas', u'cabinet', u'report']
[u'panic', u'passeng', u'jump', u'bridg']
[u'patrick', u'accept', u'toll', u'takeov']
[u'patrick', u'accept', u'toll', u'takeov']
[u'polic', u'investig', u'medina', u'man', u'death']
[u'pollock', u'feel', u'bless', u'play', u'test']
[u'pope', u'begin', u'easter', u'celebr']
[u'pope', u'urg', u'worshipp', u'humil']
[u'polic', u'seek', u'indigen', u'recruit']
[u'doctor', u'jail', u'refus', u'iraq']
[u'rapist', u'free', u'finish', u'rehab']
[u'rebel', u'reach', u'chadian', u'capit']
[u'reconstruct', u'top', u'cyclon', u'relief', u'agenda']
[u'refuge', u'activist', u'converg', u'holsworthi']
[u'refuge', u'advoc', u'readi', u'protest']
[u'refuge', u'open']
[u'refuge', u'fate', u'uncertain', u'chad', u'break', u'tie']
[u'roger', u'brumbi', u'encount']
[u'scientist', u'urg', u'switch', u'thorium']
[u'search', u'continu', u'brisban', u'toddler']
[u'slow', u'start', u'yacht', u'race']
[u'soni', u'help', u'jackson', u'financ']
[u'surfer', u'blow', u'wale', u'england']
[u'sydney', u'taxi', u'driver', u'attack']
[u'taylor', u'seiz', u'lead', u'south', u'carolina']
[u'teen', u'die', u'farm', u'accid']
[u'thiev', u'steal', u'carlton', u'memorabilia']
[u'thousand', u'attend', u'funer', u'pakistani', u'bomb', u'victim']
[u'toll', u'look', u'asia', u'patrick', u'deal']
[u'toll', u'success', u'patrick', u'takeov']
[u'scientist', u'predict', u'degre', u'temperatur', u'rise']
[u'tourist', u'chair', u'claim', u'comment', u'misrepres']
[u'town', u'welcom', u'chines', u'worker']
[u'tsunami', u'survivor', u'ditch', u'agenc']
[u'ukrain', u'orang', u'revolut', u'alli', u'reunit']
[u'undersea', u'worm', u'thrive', u'heat']
[u'union', u'claim', u'great', u'victori', u'qanta']
[u'unit', u'church', u'amnesti', u'condemn', u'refuge', u'chang']
[u'bond', u'surg', u'holiday', u'trade']
[u'freez', u'member', u'fund']
[u'offic', u'offer', u'apolog', u'babylon', u'destruct']
[u'threaten', u'forc', u'iran', u'nuclear', u'plan']
[u'vickerman', u'wari', u'formid', u'brumbi']
[u'viduka', u'tell', u'boro', u'dutch']
[u'polic', u'monitor', u'chase', u'law']
[u'wildlif', u'park', u'join', u'devil', u'breed', u'program']
[u'wirrpanda', u'chalk', u'mileston', u'tiger']
[u'woman', u'charg', u'death']
[u'collaps', u'continu', u'caus', u'health', u'problem']
[u'suspect', u'taliban', u'kill', u'major', u'afghan', u'battl']
[u'fear', u'dead', u'colombian', u'flood']
[u'program', u'reflect', u'modern', u'lifestyl']
[u'aborigin', u'protest', u'spend', u'night', u'outdoor']
[u'afghan', u'district', u'governor', u'kill', u'ambush']
[u'archbishop', u'reflect', u'port', u'arthur', u'massacr']
[u'asylum', u'chang', u'deliber', u'tactic', u'lawyer']
[u'asylum', u'open']
[u'asylum', u'process', u'chang', u'terribl']
[u'attempt', u'coup', u'chad', u'halt', u'sudanes', u'refuge']
[u'author', u'muriel', u'spark', u'die', u'itali']
[u'baddeley', u'find', u'touch', u'south', u'carolina']
[u'ballot', u'check', u'dash', u'berlusconi', u'hop']
[u'barca', u'edg', u'closer', u'spanish', u'titl']
[u'bayley', u'disappoint', u'sprint', u'qualifi']
[u'beadman', u'hawk', u'derbi']
[u'berlusconi', u'appeal', u'fail']
[u'blast', u'india', u'largest', u'mosqu']
[u'british', u'scientist', u'warn', u'sever', u'global', u'warm']
[u'bush', u'defend', u'rumsfeld', u'critic']
[u'bush', u'defend', u'rumsfeld', u'handl', u'iraq']
[u'carter', u'lead', u'rout', u'cheetah']
[u'cat', u'miss', u'scarlett']
[u'chad', u'unrest', u'see', u'close', u'border']
[u'chad', u'warn', u'expel', u'refuge']
[u'chines', u'undergo', u'face', u'transplant']
[u'church', u'anticip', u'pack', u'easter', u'servic']
[u'closer', u'abcnew']
[u'closer']
[u'control', u'flood', u'eas', u'danub', u'flow']
[u'controversi', u'halt', u'aust', u'ambassador', u'appoint']
[u'david', u'croft', u'tune']
[u'dead', u'brisban', u'bird', u'clear', u'avian']
[u'deadlin', u'pass', u'remov', u'indigen', u'camp']
[u'debnam', u'signal', u'support', u'land', u'chang']
[u'debut', u'inspir', u'india', u'crush']
[u'demolit', u'crew', u'find', u'sept', u'victim', u'bone']
[u'dragon', u'thriller', u'brookval']
[u'eagl', u'power', u'away', u'tiger']
[u'easter', u'ceremoni', u'lament', u'attack', u'famili']
[u'faith', u'son', u'search', u'touch', u'karat', u'master']
[u'film', u'compani', u'consid', u'major', u'invest']
[u'wimbledon', u'champion', u'martinez', u'retir']
[u'free', u'hostag', u'describ', u'iraq', u'captiv']
[u'fresh', u'protest', u'nepal', u'despit', u'king', u'pledg']
[u'gastro', u'outbreak', u'caus', u'panic']
[u'harvey', u'gehrig', u'sidelin']
[u'hawk', u'skipper', u'richi', u'vandenberg']
[u'hawk', u'thump', u'cat', u'upset']
[u'hawk', u'thump', u'cat', u'upset']
[u'hiddink', u'sign', u'russian', u'manag']
[u'hop', u'screen', u'time', u'survey', u'shock', u'parent']
[u'immigr', u'protest', u'target', u'villawood']
[u'indonesia', u'deni', u'arm', u'smuggl']
[u'indonesian', u'train', u'crash', u'kill']
[u'injur', u'abseil', u'rescu', u'blue', u'mountain']
[u'injuri', u'fatigu', u'worri', u'australia']
[u'iran', u'label', u'israel', u'die', u'tree']
[u'kersten', u'take', u'silver', u'bordeaux']
[u'late', u'lift', u'chief', u'scrappi']
[u'lawyer', u'see', u'agenda', u'asylum', u'chang']
[u'litter', u'rubbish', u'dump', u'fin', u'boost']
[u'littl', u'hope', u'find', u'miss', u'fisherman']
[u'mallett', u'join', u'lankan']
[u'custodi', u'priest', u'assault']
[u'mark', u'gasnier', u'nathan', u'brown']
[u'merino', u'stud', u'celebr', u'centenari']
[u'milan', u'derbi', u'close', u'juve']
[u'seek', u'phone', u'tower', u'instal', u'review']
[u'molli', u'rescu', u'york']
[u'urg', u'beswick', u'flood', u'risk', u'probe']
[u'nation', u'speed', u'camera', u'standard', u'seek']
[u'york', u'race', u'save', u'trap']
[u'motorcyclist', u'death', u'lift', u'easter', u'road', u'toll']
[u'opposit', u'pledg', u'open', u'easter', u'trade']
[u'orbit', u'chines', u'space', u'capsul', u'return', u'earth']
[u'palestinian', u'overcom', u'fund', u'squeez']
[u'papuan', u'tell', u'churchgoer', u'trauma']
[u'peopl', u'flock', u'church', u'archbishop']
[u'philippin', u'leader', u'pledg', u'prison']
[u'polic', u'investig', u'teen', u'death']
[u'pope', u'deliv', u'solemn', u'good', u'friday', u'messag']
[u'pressur', u'mount', u'rumsfeld', u'resign']
[u'hospit', u'surgeri', u'record']
[u'queen', u'elizabeth', u'buckingham', u'palac']
[u'raider', u'steal', u'late', u'warrior']
[u'red', u'sneak']
[u'result', u'wont', u'happen', u'overnight', u'say', u'cooley']
[u'rooster', u'injuri', u'crisi', u'worsen']
[u'rule', u'frustrat', u'edith', u'fall', u'camper']
[u'rumsfeld', u'allow', u'guantanamo', u'abus', u'report']
[u'rumsfeld', u'exact', u'need', u'bush']
[u'russia', u'offer', u'hama']
[u'govt', u'urg', u'park', u'guarante']
[u'search', u'call', u'miss', u'fisherman']
[u'sever', u'storm', u'warn', u'issu', u'darwin']
[u'lanka', u'blast', u'kill', u'soldier']
[u'lankan', u'rebel', u'pull', u'peac', u'talk']
[u'storm', u'record', u'panther']
[u'surf', u'lifesav', u'urg', u'complac']
[u'swan', u'scrape', u'blue']
[u'sydney', u'tap', u'deep', u'water', u'reserv']
[u'sydney', u'water', u'perform', u'warrant', u'reform']
[u'takeov', u'solv', u'pacif', u'nation', u'woe']
[u'talbot', u'shoot', u'investig']
[u'tasmanian', u'sell', u'vodka', u'russia']
[u'ten', u'thousand', u'head', u'nation', u'folk', u'festiv']
[u'territori', u'iron', u'meet', u'fund', u'goal']
[u'thousand', u'commemor', u'good', u'friday', u'jerusalem']
[u'tipoki', u'cop', u'massiv']
[u'toll', u'deni', u'takeov', u'stifl', u'competit']
[u'toll', u'say', u'patrick', u'takeov', u'stifl']
[u'trucki', u'protest', u'toohey', u'chang']
[u'children', u'drown', u'easter', u'gather']
[u'children', u'drown', u'famili', u'easter', u'out']
[u'holsworthi', u'detaine', u'take', u'hospit']
[u'children', u'drown', u'famili', u'gather']
[u'ukrain', u'coalit', u'agreement', u'falter']
[u'unit', u'hold', u'goalless', u'releg', u'sunderland']
[u'ambassador', u'appoint', u'hold']
[u'ambassador', u'appoint', u'hold']
[u'death', u'lift', u'easter', u'road', u'toll']
[u'weekend', u'protest', u'continu', u'villawood']
[u'wilkinson', u'line', u'fresh', u'comeback']
[u'quiet', u'role', u'afghan', u'battl']
[u'alcohol', u'relat', u'case', u'swamp', u'hospit']
[u'push', u'reform', u'alcohol', u'tax']
[u'say', u'payment', u'disclosur', u'vital']
[u'arab', u'advis', u'hama', u'adopt', u'peac', u'initi']
[u'asylum', u'chang', u'kid', u'detain', u'labor']
[u'aust', u'help', u'curb', u'nuclear', u'prolifer']
[u'australia', u'await', u'warn', u'fit', u'check']
[u'australia', u'domin', u'chittagong']
[u'australia', u'regain', u'world', u'team', u'pursuit', u'crown']
[u'babi', u'bear', u'metro', u'ride', u'free']
[u'babi', u'giraff', u'make', u'debut']
[u'baddeley', u'furyk', u'share', u'lead', u'south', u'carolina']
[u'bangladesh']
[u'bangladesh', u'seven']
[u'bangladesh', u'struggl', u'cullen', u'debut']
[u'berlusconi', u'alli', u'find', u'elect', u'error']
[u'black', u'cap', u'rattl', u'protea']
[u'bowen', u'brillianc', u'sink', u'knight']
[u'bresciano', u'grab', u'victori', u'parma']
[u'british', u'soldier', u'kill', u'iraq']
[u'brumbi', u'need', u'match', u'waratah', u'connolli']
[u'compani', u'deni', u'plan', u'fare', u'increas']
[u'camp', u'rule', u'anger', u'indigen', u'protest']
[u'canberra', u'resid', u'urg', u'rejoin', u'church']
[u'capsiz', u'yachtsman', u'winch', u'safeti']
[u'bomb', u'kill', u'near', u'mosqu', u'baghdad']
[u'chadian', u'rebel', u'deni', u'sudan', u'link']
[u'chelsea', u'close', u'titl', u'defenc']
[u'chines', u'communist', u'parti', u'chief', u'call', u'talk']
[u'civilian', u'target', u'latest', u'iraq', u'violenc']
[u'cleric', u'urg', u'reflect', u'human', u'right']
[u'closer', u'abcnew']
[u'closer']
[u'colombian', u'expand', u'coca', u'crop']
[u'congreg', u'hear', u'messag', u'hope']
[u'craig', u'bellami', u'john', u'lang']
[u'crow', u'hold', u'spirit', u'demon']
[u'dali', u'river', u'flood', u'fear', u'reced']
[u'breach', u'aid', u'flood', u'danub', u'town']
[u'detect', u'widow', u'win', u'compo', u'battl']
[u'detent', u'centr', u'shortag', u'put', u'girl', u'risk']
[u'doctor', u'test', u'diseas', u'treatment']
[u'dog', u'bomber', u'dockland']
[u'violenc', u'displac']
[u'easter', u'parad', u'featur', u'choir', u'donkey']
[u'easter', u'prayer', u'focus', u'peac', u'justic']
[u'educ', u'dept', u'budget', u'criticis']
[u'nato', u'chief', u'join', u'rumsfeld', u'sack']
[u'yuko', u'boss', u'attack', u'prison']
[u'diseas', u'patient', u'trial', u'surgic', u'cure']
[u'fear', u'asylum', u'seeker', u'polici', u'send', u'children']
[u'fee', u'disclosur', u'disrupt', u'treatment']
[u'fight', u'continu', u'afghanistan']
[u'fisherman', u'swim', u'ashor', u'boat', u'capsiz']
[u'flash', u'flood', u'byron']
[u'folk', u'festiv', u'tip', u'attract', u'record', u'crowd']
[u'kill', u'afghan', u'battl']
[u'fremantl', u'prove', u'strong', u'port']
[u'golden', u'staph', u'strain', u'antibiot', u'resist']
[u'gonzalez', u'lift', u'sociedad', u'drop', u'zone']
[u'govt', u'deni', u'cost', u'overhaul', u'health', u'insur']
[u'govt', u'attack', u'asylum', u'seeker', u'polici']
[u'grape', u'produc', u'fear', u'alcohol', u'reform']
[u'habib', u'produc', u'tortur', u'video']
[u'habib', u'tortur', u'film', u'prison']
[u'harmison', u'doubt', u'lord', u'test']
[u'heaven', u'wait', u'beat', u'monohul', u'gladston']
[u'hiker', u'rescu', u'night', u'bush']
[u'hospit', u'park', u'put', u'nurs', u'risk', u'smyth']
[u'immigr', u'chang', u'kid', u'detain', u'labor']
[u'india', u'detain', u'mosqu', u'attack']
[u'india', u'singh', u'win', u'china', u'open']
[u'iranian', u'suicid', u'squad', u'readi', u'british']
[u'iraqi', u'leader', u'accus', u'fail', u'citizen']
[u'irish', u'parad', u'mark', u'easter', u'rise']
[u'japan', u'renew', u'whale', u'intent']
[u'japan', u'push', u'commerci', u'whale']
[u'japan', u'renew', u'whale', u'push']
[u'johnathan', u'thurston', u'matt', u'bowen', u'graham', u'murray']
[u'kahlefeldt', u'win', u'nation', u'triathlon', u'titl']
[u'labor', u'pledg', u'budget', u'transpar']
[u'labor', u'say', u'immigr', u'chang', u'kid']
[u'lout', u'ban', u'public', u'area']
[u'lyon', u'claim', u'french', u'crown']
[u'die', u'drug', u'overdos', u'brisban', u'rave']
[u'man', u'bodi', u'boat', u'collis']
[u'marin', u'safeti', u'bodi', u'back', u'drug', u'test']
[u'matthew', u'elliott', u'ivan', u'cleari']
[u'melbourn', u'parad', u'newest', u'attract']
[u'miss', u'bushwalk', u'unharm']
[u'negoti', u'continu', u'hobart', u'prison']
[u'negoti', u'call', u'risdon', u'prison', u'standoff']
[u'beat', u'brumbi', u'bruis', u'encount']
[u'ochoa', u'triumph', u'vega']
[u'opus', u'distanc', u'moham', u'cartoon']
[u'perth', u'polic', u'crack', u'drink', u'driver']
[u'pig', u'snout', u'snout', u'russian', u'game']
[u'pope', u'call', u'nuclear', u'diplomaci']
[u'pope', u'label', u'resurrect', u'crucial', u'leap']
[u'democraci', u'protest', u'continu', u'nepal']
[u'protest', u'delay', u'start', u'chittagong', u'test']
[u'refuge', u'catch', u'crossfir', u'chad']
[u'refuge', u'support', u'protest', u'kirribilli', u'hous']
[u'rusti', u'hurrican', u'overcom', u'otago']
[u'scientist', u'warn', u'major', u'public', u'health', u'problem']
[u'scrabbl', u'champ', u'word']
[u'secur', u'deterior', u'southern', u'afghanistan']
[u'shark', u'stay', u'distant', u'hunt', u'super', u'semi']
[u'solomon', u'elect', u'vote']
[u'stanhop', u'admit', u'dragway', u'delay']
[u'storm', u'high', u'thrash', u'panther']
[u'stroke', u'spark', u'park', u'communic', u'concern']
[u'strong', u'quak', u'shake', u'taiwan']
[u'sudan', u'connect', u'deni', u'chadian', u'rebel']
[u'survey', u'show', u'children', u'glue', u'screen']
[u'suspect', u'drug', u'overdos', u'kill', u'brisban', u'partygo']
[u'tiger', u'stroll', u'home', u'shark']
[u'sheen', u'stuart', u'raper']
[u'treacher', u'sea', u'lifesav', u'busi']
[u'tunnel', u'upgrad', u'speed', u'escap', u'time']
[u'beauti', u'queen', u'boat', u'capsiz']
[u'offici', u'probe', u'mump', u'outbreak']
[u'push', u'iran', u'focus', u'world', u'power', u'meet']
[u'waratah', u'beat', u'brumbi', u'bruis', u'encount']
[u'warrior', u'captain', u'steve', u'price']
[u'whale', u'open']
[u'woman', u'trap', u'trailer']
[u'woman', u'death', u'lift', u'easter', u'road', u'toll']
[u'worsfold', u'pay', u'tribut', u'calm', u'eagl']
[u'hospitalis', u'leak', u'sydney']
[u'kill', u'blast', u'iraq']
[u'folk', u'festiv', u'wind']
[u'studi', u'target', u'domest', u'abus']
[u'adelaid', u'taxi', u'driver', u'bash', u'rob']
[u'atapattu', u'england', u'tour']
[u'author', u'chemic', u'prison', u'sieg']
[u'open']
[u'awb', u'payment', u'sever', u'inflat', u'offici']
[u'backer', u'speak', u'embattl', u'rumsfeld']
[u'baddeley', u'break', u'victori']
[u'flight', u'make', u'emerg', u'land', u'kazakhstan']
[u'beij', u'storm', u'cover', u'citi', u'sand']
[u'bishop', u'hit', u'govt', u'refuge', u'polici']
[u'blaze', u'rip', u'retail', u'outlet']
[u'boss', u'race', u'doncast']
[u'botch', u'drug', u'trial', u'victim', u'go', u'meltdown']
[u'kill', u'injur', u'accid', u'privat']
[u'break', u'investig']
[u'british', u'adventur', u'hop', u'court', u'fight']
[u'bulldog', u'lose', u'tall', u'long', u'term', u'injuri']
[u'bulldog', u'surg', u'past', u'rabbitoh']
[u'bunni', u'hunt', u'mark', u'easter']
[u'bureaucraci', u'blame', u'closur', u'scallop', u'fisher']
[u'rethink', u'heavi', u'vehicl', u'inspect']
[u'save', u'babi', u'life']
[u'caus', u'hous', u'investig']
[u'ceremoni', u'rememb', u'indigen', u'massacr']
[u'chemic', u'agent', u'prison', u'sieg']
[u'chemic', u'agent', u'prison', u'standoff']
[u'chemic', u'prison', u'sieg']
[u'china', u'face', u'transplant', u'patient', u'progress']
[u'christian', u'leader', u'easter', u'messag', u'blast', u'conspiraci']
[u'civilian', u'kill', u'afghanistan', u'battl']
[u'claim', u'intellig', u'photo', u'iranian', u'nuclear']
[u'closer']
[u'closer', u'abcnew']
[u'colombian', u'mudslid', u'toll', u'hit']
[u'complet', u'junction', u'project', u'see', u'rail', u'servic', u'boost']
[u'construct', u'begin', u'china', u'yellow', u'river', u'hydro']
[u'contend', u'solomon']
[u'coron', u'report', u'miss', u'fisher']
[u'council', u'chang', u'hillsid', u'develop', u'law']
[u'crew', u'shake', u'woman', u'die', u'flight', u'sydney']
[u'cyclon', u'loom', u'coast']
[u'cyclon', u'monica', u'continu', u'march', u'north']
[u'cyclon', u'victim', u'enjoy', u'bundaberg', u'sponsor', u'break']
[u'cyclon', u'victim', u'urg', u'support', u'job', u'scheme']
[u'danub', u'flood', u'hit', u'part', u'eastern', u'europ']
[u'deadlin', u'loom', u'reef', u'compo', u'request']
[u'defenc', u'forc', u'confirm', u'case', u'illeg', u'drug']
[u'dickensian', u'condit', u'prompt', u'risdon', u'sieg']
[u'doubt', u'cast', u'law', u'target', u'troublemak']
[u'dragon', u'coach', u'talk', u'head', u'role', u'man']
[u'easter', u'outback', u'prove', u'winner']
[u'easter', u'rise', u'parad', u'draw', u'thousand', u'dublin']
[u'easter', u'road', u'death', u'reach']
[u'charg', u'gold', u'protest']
[u'extrem', u'weather', u'event', u'affect', u'rural', u'commod']
[u'famili', u'escap', u'burn', u'home']
[u'famili', u'fail', u'hous', u'move']
[u'fight', u'break', u'sunni', u'district', u'baghdad']
[u'fish', u'reel', u'melzer', u'clay', u'court', u'titl']
[u'floodwat', u'affect', u'search', u'banana', u'prawn']
[u'fli', u'put', u'dutch']
[u'food', u'fli', u'flood', u'affect', u'town']
[u'death', u'lift', u'road', u'toll']
[u'fowler', u'boost', u'liverpool', u'push', u'second', u'spot']
[u'group', u'hijack', u'easter', u'event', u'critic']
[u'georg', u'michael', u'smash', u'time', u'london', u'report']
[u'govt', u'announc', u'fisheri', u'sector']
[u'govt', u'call', u'fever', u'vaccin', u'tender']
[u'govt', u'downplay', u'militari', u'drug', u'despit', u'posit']
[u'govt', u'guidelin', u'aim', u'better', u'coastal', u'protect']
[u'govt', u'sign', u'aborigin', u'servic', u'agreement']
[u'govt', u'tight', u'lip', u'dfat', u'chief', u'mission']
[u'govt', u'urg', u'revamp', u'lindesay', u'section']
[u'grape', u'glut', u'hit']
[u'grass', u'caus', u'disrupt', u'easter', u'travel']
[u'greek', u'train', u'derail', u'kill']
[u'group', u'develop', u'good', u'behaviour', u'guid', u'tourist']
[u'bird', u'pakistani', u'farm']
[u'head', u'joey', u'say', u'dragon', u'coach']
[u'heavi', u'sea', u'prevent', u'search', u'miss', u'fisherman']
[u'hobart', u'prison', u'surrend', u'sieg']
[u'indonesia', u'call', u'stronger', u'territori', u'support']
[u'indonesian', u'slop', u'merapi', u'prepar']
[u'iran', u'donat', u'hama', u'govern']
[u'iran', u'vow', u'continu', u'nuclear', u'work']
[u'iraq', u'bribe', u'know', u'practic', u'corner']
[u'iraqi', u'rebel', u'kill', u'amid', u'leadership', u'divid']
[u'iraq', u'payment', u'secret', u'diplomat', u'say']
[u'iraq', u'leader', u'fail', u'resolv', u'disput']
[u'istanbul', u'bomb', u'wound']
[u'jaqu', u'go', u'rain', u'signal', u'lunch']
[u'wit', u'step', u'closer', u'front', u'cole', u'inquiri']
[u'lack', u'apolog', u'rankl', u'gillett', u'team']
[u'lajamanu', u'take', u'lightn', u'carniv']
[u'lake', u'georg', u'resid', u'push', u'world', u'heritag']
[u'landhold', u'offer', u'coal', u'mine', u'assur']
[u'larkham', u'wait', u'news', u'hamstr', u'injuri']
[u'larrakia', u'dialogu', u'ongo', u'despit', u'nativ', u'titl']
[u'latham', u'clear', u'hamstr', u'injuri']
[u'leppitsch', u'fevola', u'ban']
[u'lethal', u'wont', u'leav', u'lion', u'lurch']
[u'longer', u'delay', u'elect', u'surgeri', u'wait']
[u'lose', u'bushwalk', u'spark', u'safeti', u'remind']
[u'malaysian', u'minist', u'urg', u'world', u'leav']
[u'charg', u'airport', u'drug']
[u'die', u'accid']
[u'die', u'dune', u'buggi', u'accid']
[u'die', u'rail', u'mishap']
[u'hurt', u'runaway', u'crash']
[u'stab', u'karaok', u'die']
[u'court', u'accus', u'fail', u'stop']
[u'court', u'accus', u'keppel', u'sand', u'bash']
[u'mark', u'omeley', u'luke', u'patten']
[u'mayor', u'back', u'road', u'fund', u'inglewood', u'shire']
[u'mcguigan', u'price', u'bring', u'grower', u'satisfact']
[u'media', u'protest', u'polic', u'attack', u'chittagong']
[u'melbourn', u'youngster', u'win', u'stawel', u'gift']
[u'messag', u'peac', u'domin', u'easter', u'servic']
[u'methadon', u'success', u'prison', u'treatment', u'studi']
[u'methadon', u'program', u'shrink', u'prison', u'number', u'studi']
[u'militari', u'parad', u'mark', u'ireland', u'rise']
[u'motorcyclist', u'face', u'court', u'accus', u'high', u'speed']
[u'mott', u'favourit', u'stawel', u'gift']
[u'nathan', u'buckley']
[u'nation', u'road', u'toll', u'stand']
[u'navi', u'assist', u'darwin', u'marin', u'rescu']
[u'nepal', u'urg', u'starv', u'king', u'fund']
[u'injuri', u'scare', u'john']
[u'readi', u'maiden', u'speech']
[u'coolac', u'bypass', u'delay']
[u'nomin', u'flow', u'nurs', u'award']
[u'surf', u'today', u'bell']
[u'drought', u'worsen']
[u'cyclon', u'alert', u'monica', u'approach']
[u'oram', u'centuri', u'rescu', u'black', u'cap']
[u'outback', u'tourism', u'campaign', u'spotlight', u'break', u'hill']
[u'peter', u'hewat', u'georg', u'gregan', u'georg', u'smith', u'adam']
[u'petrova', u'captur', u'charleston', u'titl']
[u'philippin', u'spar', u'death', u'convict']
[u'pie', u'turn', u'kangaroo']
[u'plan', u'aim', u'boost', u'oyster', u'industri', u'protect']
[u'plan', u'dolphin', u'watch', u'pearl', u'oyster', u'farm']
[u'polic', u'arrest', u'freeway', u'assault']
[u'policeman', u'hurt', u'high', u'speed', u'pursuit']
[u'polic', u'pair', u'recognis', u'brave', u'effort']
[u'polic', u'probe', u'fatal', u'road', u'crash']
[u'polic', u'probe', u'hotel']
[u'polic', u'search', u'taxi', u'robber']
[u'polic', u'review', u'taxi', u'video', u'driver']
[u'campaign', u'launch', u'support', u'rumsfeld']
[u'prison', u'sieg', u'show', u'staff', u'risk']
[u'probe', u'begin', u'fatal', u'boat', u'crash']
[u'govt', u'urg', u'offer', u'incent', u'green', u'farmer']
[u'rain', u'welcom', u'drought', u'break']
[u'rain', u'wreck', u'chittagong']
[u'recreat', u'fisher', u'oppos', u'island', u'sanctuari']
[u'restor', u'order', u'prioriti', u'alic', u'spring', u'camp']
[u'risdon', u'standoff', u'continu']
[u'risdon', u'standoff', u'end', u'inmat', u'chemic']
[u'river', u'danub', u'flood', u'part', u'eastern', u'europ']
[u'roo', u'face', u'tough', u'task', u'stop', u'collingwood', u'forward']
[u'russian', u'militari', u'turn', u'church', u'curb', u'bulli']
[u'saddam', u'handwrit', u'scrutini', u'hear']
[u'search', u'grapevin', u'genom', u'move', u'step', u'closer']
[u'simpl', u'diseas', u'treatment', u'triall', u'melbourn']
[u'south', u'east', u'resid', u'flock', u'easter', u'servic']
[u'speed', u'driver', u'worri', u'polic']
[u'lankan', u'rebel', u'suspend', u'truce', u'talk']
[u'studi', u'focus', u'abalon', u'habitat']
[u'sudan', u'deni', u'back', u'chad', u'coup']
[u'suicid', u'bomber', u'kill', u'aviv']
[u'support', u'ralli', u'rumsfeld', u'defenc']
[u'open']
[u'tassi', u'youth', u'join', u'uluru', u'pilgrimag']
[u'softwar', u'remedi', u'global', u'prescript', u'error']
[u'wildlif', u'park', u'devil', u'futur', u'hand']
[u'teacher', u'group', u'member', u'mark', u'report', u'card']
[u'teen', u'charg', u'assault']
[u'teen', u'charg', u'knife', u'attack']
[u'thousand', u'seek', u'servic', u'turn', u'away', u'year']
[u'timber', u'plantat', u'group', u'stand', u'move']
[u'tomato', u'plant', u'virus', u'spread']
[u'hama', u'arrest', u'jerusalem']
[u'tour', u'oper', u'urg', u'enter', u'award']
[u'seek', u'fund', u'boost', u'medic']
[u'valencia', u'crank', u'pressur', u'real']
[u'vaughan', u'captainci', u'issu', u'england', u'chief']
[u'govt', u'dump', u'plan', u'consult']
[u'look', u'combat', u'spread', u'golden', u'staph']
[u'polic', u'probe', u'rockingham', u'death']
[u'wheat', u'kickback', u'easi', u'detect', u'offici']
[u'woman', u'catch', u'speed', u'twice', u'minut']
[u'work', u'track', u'bun', u'site']
[u'world', u'blow', u'england', u'king']
[u'worldwid', u'easter', u'servic', u'push', u'peac', u'theme']
[u'yudhoyono', u'warn', u'volcan', u'activ']
[u'bodi', u'baghdad']
[u'dog', u'cat', u'save', u'hous', u'horror']
[u'parti', u'worth']
[u'kill', u'mexico', u'crash']
[u'offic', u'injur', u'solomon', u'island', u'protest']
[u'accid', u'rescu', u'chopper', u'busi']
[u'accus', u'sob', u'child', u'assault', u'charg', u'read', u'court']
[u'survey', u'show', u'upbeat', u'busi', u'confid']
[u'save', u'million', u'public', u'servic']
[u'offic', u'injur', u'solomon', u'island', u'unrest']
[u'report', u'safe', u'indonesian', u'ferri']
[u'lobbi', u'govt', u'overhaul', u'wine']
[u'warn', u'doctor', u'shortag']
[u'angler', u'score', u'tuna', u'record', u'port', u'macdonnel']
[u'archerfield', u'show', u'ground']
[u'asylum', u'seeker', u'alleg', u'indonesian', u'coercion']
[u'aussi', u'face', u'rugbi', u'play', u'off']
[u'australian', u'offic', u'injur', u'violenc', u'break']
[u'author', u'probe', u'caus', u'moorabbin', u'factori', u'blaze']
[u'bach', u'wife', u'write', u'work', u'expert', u'say']
[u'bangladesh', u'journo', u'protest', u'test', u'grind', u'attack']
[u'bathurst', u'airport', u'secur', u'revamp']
[u'beatti', u'rule', u'reef', u'drill']
[u'blaze', u'claim', u'station', u'shear', u'shed']
[u'board', u'keen', u'seek', u'feedback', u'local', u'tourism']
[u'break', u'hand', u'sidelin', u'hodgson']
[u'brook', u'win', u'pulitz', u'prize']
[u'brown', u'doubt', u'lion', u'clash']
[u'busi', u'owner', u'fin', u'fair', u'trade', u'inspector']
[u'bureaucrat', u'moral']
[u'call', u'extra', u'staff', u'risdon']
[u'campaign', u'improv', u'public', u'educ', u'come']
[u'canberra', u'forward', u'out', u'week']
[u'channel', u'countri', u'cattlemen', u'welcom', u'floodwat']
[u'chernobyl', u'death', u'toll', u'underestim', u'say', u'greenpeac']
[u'china', u'pledg', u'revis', u'east', u'china', u'sail']
[u'chines', u'presid', u'prepar', u'visit']
[u'closer']
[u'closer']
[u'cloud', u'seed', u'silver', u'line', u'goulburn']
[u'commerci', u'fishermen', u'leav', u'net', u'long']
[u'compani', u'abandon', u'plan', u'upper', u'hunter', u'link']
[u'contempori', u'music', u'compos', u'perform', u'australia']
[u'cosgrov', u'dorey', u'receiv']
[u'council', u'ban', u'domest', u'wast', u'burn']
[u'council', u'look', u'boost', u'recycl', u'wast']
[u'councillor', u'reject', u'transport', u'hous', u'unit']
[u'council', u'defer', u'decis', u'increas', u'build']
[u'council', u'reject', u'confer', u'sponsorship', u'plan']
[u'council', u'stand', u'increas', u'park', u'fee']
[u'council', u'want', u'half', u'coastlin', u'close', u'fisher']
[u'dairi', u'compani', u'hasten', u'plan', u'factori']
[u'tout', u'katherin', u'electr', u'water', u'solut']
[u'danub', u'reach', u'highest', u'level', u'year']
[u'villier', u'kalli', u'lead', u'south', u'african', u'recoveri']
[u'attack', u'spark', u'warn', u'parent']
[u'doubt', u'cast', u'lout', u'law']
[u'downer', u'call', u'hama', u'condemn', u'suicid', u'bomb']
[u'dozen', u'crew', u'continu', u'battl', u'moorabbin']
[u'drug', u'gun', u'seiz', u'polic', u'biki', u'gang', u'raid']
[u'easter', u'driver', u'good', u'polic']
[u'easter', u'prove', u'boom', u'time', u'caravan', u'park']
[u'easter', u'travel', u'road']
[u'easter', u'visitor', u'help', u'lift', u'grampian', u'tourism']
[u'elvi', u'festiv', u'shake', u'imperson']
[u'extra', u'polic', u'presenc', u'help', u'inskip', u'crowd']
[u'famili', u'lose', u'hous']
[u'famili', u'burden', u'women', u'report']
[u'farm', u'group', u'cast', u'doubt', u'winter', u'crop', u'predict']
[u'north', u'readi', u'cyclon', u'monica', u'onslaught']
[u'south', u'coast', u'farmer', u'tip', u'face', u'tough', u'winter']
[u'faulti', u'luggag', u'forc', u'baggag', u'handl', u'rethink']
[u'feder', u'govt', u'fund', u'target', u'sugar', u'industri']
[u'feder', u'state', u'agreement', u'offer', u'hope', u'indigen']
[u'feder', u'drop', u'mont', u'carlo']
[u'festiv', u'organis', u'hope', u'make', u'small', u'surplus']
[u'fevola', u'leppitsch', u'accept', u'suspens']
[u'damag', u'wood', u'manufactur', u'plant']
[u'firefight', u'battl', u'moorabbin', u'factori', u'blaze']
[u'firefight', u'bring', u'massiv', u'melbourn', u'blaze']
[u'fish', u'boat', u'carri', u'peopl', u'sink']
[u'prepar', u'monica']
[u'garbag', u'collector', u'threaten', u'strike', u'action']
[u'deputi', u'mayor', u'court', u'charg']
[u'geraldton', u'back', u'agreement', u'eas', u'cost', u'shift']
[u'play', u'gavaskar', u'tell', u'cricket']
[u'gillespi', u'centuri', u'lift', u'aussi', u'lead']
[u'gillespi', u'score', u'maiden', u'test']
[u'global', u'price', u'continu', u'rise']
[u'gold', u'protest', u'leav', u'area']
[u'govt', u'buy', u'properti', u'protect', u'wetland']
[u'govt', u'defend', u'famili', u'benefit']
[u'govt', u'look', u'rock', u'power', u'potenti']
[u'govt', u'mull', u'fund', u'model', u'region']
[u'govt', u'region', u'road', u'condit']
[u'group', u'seek', u'communiti', u'sponsorship', u'fund']
[u'hama', u'say', u'aviv', u'attack', u'justifi']
[u'hama', u'say', u'aviv', u'suicid', u'attack', u'justifi']
[u'high', u'countri', u'rail', u'trail', u'open']
[u'highest', u'pay', u'public', u'servant', u'good', u'health']
[u'high', u'wind', u'blow', u'roof', u'showground', u'shelter', u'shed']
[u'holiday', u'maker', u'flock', u'gippsland', u'easter']
[u'howard', u'reject', u'indonesian', u'call', u'papuan', u'asylum']
[u'hunter', u'jaeger', u'sight', u'finish']
[u'iran', u'armi', u'hand', u'aggressor', u'presid']
[u'israel', u'fire', u'missil', u'gaza', u'build']
[u'israel', u'strike', u'palestinian', u'factori']
[u'jackson', u'sign', u'seattl', u'storm']
[u'john', u'chanc', u'face', u'bunni']
[u'joyc', u'warn', u'coalit', u'scrap', u'singl', u'desk']
[u'katherin', u'resid', u'want', u'flood', u'plan']
[u'kebab', u'shop', u'owner', u'jail', u'year']
[u'knight', u'john', u'replac']
[u'labor', u'famili', u'benefit', u'plan', u'begin']
[u'labor', u'famili', u'benefit', u'polici', u'confus', u'say']
[u'larkham', u'week']
[u'latham', u'miss', u'stormer', u'clash']
[u'lifesav', u'achiev', u'zero', u'drown', u'toll', u'goal']
[u'lithgow', u'council', u'seek', u'huge', u'rate', u'rise']
[u'lloyd', u'rule', u'anzac', u'clash']
[u'lobbi', u'group', u'order', u'appeal', u'court', u'cost']
[u'lomu', u'comeback', u'hop', u'hamper', u'ankl', u'injuri']
[u'arrest', u'prison', u'escap']
[u'charg', u'robinval', u'doubl', u'murder']
[u'man', u'bodi', u'recov', u'drown', u'tragedi']
[u'mayor', u'call', u'highway', u'bypass', u'delay']
[u'mayor', u'dark', u'camper', u'ill']
[u'mcgauran', u'back', u'singl', u'desk', u'wheat', u'polici', u'amid', u'govt']
[u'charg', u'manslaught', u'town', u'camp', u'death']
[u'miner', u'consid', u'communiti', u'hand', u'plan']
[u'minist', u'criticis', u'wind', u'farm', u'stanc']
[u'minist', u'hope', u'palm', u'plan', u'reduc', u'alcohol']
[u'ministeri', u'clout', u'need', u'resolv', u'indonesian']
[u'ministeri', u'clout', u'need', u'resolv', u'say']
[u'miss', u'bushwalk']
[u'moorabbin', u'factori', u'blaze', u'contain']
[u'moorabbin', u'factori', u'spread']
[u'custom', u'offic', u'help', u'illeg', u'fish', u'fight']
[u'music', u'festiv', u'prayer', u'answer']
[u'mutton', u'make', u'comeback']
[u'nation', u'road', u'toll', u'reach']
[u'nation', u'region', u'childcar', u'place']
[u'project', u'prompt', u'call', u'protect', u'sacr', u'sit']
[u'easter', u'road', u'fatal', u'record', u'tamworth']
[u'north', u'coast', u'jobless', u'rate', u'slight']
[u'north', u'game', u'format', u'review']
[u'brace', u'cyclon', u'monica']
[u'obes', u'studi', u'miss', u'point', u'castella', u'say']
[u'price', u'hike', u'push', u'petrol', u'inflat']
[u'opposit', u'critic', u'hospit', u'parti']
[u'opposit', u'demand', u'disclosur', u'year', u'prison']
[u'opposit', u'say', u'govt', u'blame', u'indonesian']
[u'optus', u'telstra', u'line', u'rental', u'price', u'rise']
[u'opus', u'seek', u'vinci', u'disclaim']
[u'petrol', u'price', u'expect', u'rise']
[u'attempt', u'rebuild', u'jakarta', u'relat']
[u'expect', u'defend', u'famili', u'payment']
[u'reject', u'indonesian', u'call', u'papuan', u'asylum']
[u'say', u'upcom', u'budget', u'shouldnt', u'fuel']
[u'stand', u'papuan', u'visa', u'decis']
[u'respons', u'mother', u'papua', u'visa', u'case']
[u'polic', u'speed', u'limit', u'car']
[u'polic', u'happi', u'peopl', u'behaviour', u'easter']
[u'polic', u'highlight', u'disgrac', u'speed']
[u'polic', u'pleas', u'easter', u'driver']
[u'polic', u'seek', u'help', u'find', u'miss', u'woman']
[u'poor', u'water', u'clariti', u'hamper', u'prawn', u'season']
[u'poppi', u'farmer', u'await', u'contract', u'decis']
[u'poppi', u'grower', u'contract', u'slash']
[u'port', u'youngster', u'name', u'rise', u'star']
[u'princ', u'tiger', u'captain']
[u'hart', u'print', u'help', u'race', u'club']
[u'properti', u'develop', u'consult', u'rail']
[u'properti', u'group', u'rais', u'fear', u'westpoint', u'style']
[u'prosecut', u'delay', u'parent', u'murder', u'trial']
[u'push', u'higher', u'capit', u'gain', u'threshold']
[u'emerg', u'crew', u'theyr', u'readi', u'cyclon']
[u'rape', u'investig']
[u'resid', u'group', u'confid', u'bypass', u'legal', u'action']
[u'resid', u'urg', u'remain', u'conscious']
[u'retrial', u'find', u'sydney', u'gang', u'rapist', u'guilti']
[u'retrial', u'restor', u'guilti', u'verdict', u'sydney', u'gang']
[u'return', u'emerg', u'dept', u'eas', u'communiti', u'concern']
[u'risdon', u'staff', u'level', u'adequ', u'say', u'minist']
[u'rodeo', u'venu', u'vandal', u'wont', u'stop', u'event']
[u'rottnest', u'author', u'stand', u'sanctuari', u'plan']
[u'ruddock', u'order', u'dissent', u'backbench']
[u'rumsfeld', u'dismiss', u'resign', u'call']
[u'rusti', u'molik', u'miss', u'spot']
[u'saddam', u'confirm', u'death', u'warrant', u'signatori']
[u'saint', u'harvey', u'prove', u'fit', u'ahead', u'port', u'clash']
[u'sandstorm', u'choke', u'beij']
[u'schwarzer', u'keep', u'clean', u'sheet', u'boro']
[u'scientist', u'develop', u'motor', u'neuron', u'test']
[u'eagl', u'join']
[u'search', u'miss', u'boat', u'trio']
[u'seminar', u'clear', u'law', u'misinform']
[u'singl', u'bargain', u'unit', u'overse', u'ballarat']
[u'slash', u'contract', u'surpris', u'poppi', u'grower']
[u'solomon', u'elect', u'rini']
[u'south', u'eastern', u'european', u'flee', u'worst', u'flood']
[u'south', u'east', u'immun', u'easter', u'traffic', u'problem']
[u'speed', u'driver', u'baffl', u'polic']
[u'ambassador', u'nomin']
[u'squid', u'studi', u'reveal', u'person', u'plus']
[u'stanhop', u'pois', u'announc', u'quinlan', u'replac']
[u'station', u'master', u'honour', u'rail', u'accid', u'victim']
[u'strong', u'wind', u'damag', u'home', u'melbourn']
[u'suicid', u'bomb', u'kill', u'israel']
[u'sunfish', u'mull', u'legal', u'action', u'marin', u'park']
[u'group', u'crack', u'russian', u'vodka', u'market']
[u'hospit', u'wait', u'list', u'releas']
[u'tate', u'thorn', u'return', u'bronco']
[u'teen', u'accus', u'home', u'invas', u'get', u'bail']
[u'aviv', u'suicid', u'bomb', u'kill']
[u'terror', u'case', u'adjourn']
[u'thanksgiv', u'mass', u'celebr', u'barcaldin', u'woman', u'life']
[u'toll', u'patrick', u'share', u'jump', u'takeov', u'approv']
[u'toll', u'takeov', u'help', u'market', u'soar', u'high']
[u'trade', u'ship', u'replica', u'shelter', u'south', u'west']
[u'trio', u'charg', u'judiciari']
[u'turnbul', u'get', u'catch', u'public', u'transport']
[u'vail', u'offic', u'deni', u'indonesian', u'minist', u'trip']
[u'blame', u'govt', u'dental', u'wait', u'list']
[u'liber', u'appoint', u'frontbench']
[u'virus', u'probabl', u'caus', u'fish', u'death', u'say', u'expert']
[u'banana', u'send', u'east']
[u'wangi', u'fall', u'close', u'swimmer', u'croc']
[u'opposit', u'pledg', u'review', u'senior', u'public']
[u'water', u'worri', u'surfac', u'road', u'revamp', u'debat']
[u'whyalla', u'lobbi', u'group', u'lose', u'fight', u'onesteel']
[u'wit', u'gang', u'attack', u'urg', u'come', u'forward']
[u'wooli', u'announc', u'sale', u'growth', u'quarter']
[u'world', u'provid', u'water']
[u'world', u'vision', u'blast', u'spend', u'reluct']
[u'aust', u'polic', u'injur', u'solomon', u'island', u'riot']
[u'oppos', u'medibank', u'privat', u'sale']
[u'aborigin', u'elder', u'extraordinari', u'woman']
[u'local', u'fight', u'wind', u'farm', u'world', u'heritag']
[u'agenc', u'consid', u'region', u'report']
[u'agricultur', u'colleg', u'appoint', u'campus', u'manag']
[u'airlin', u'ax', u'perth', u'geraldton', u'flight']
[u'alleg', u'sydney', u'terrorist', u'plead', u'guilti']
[u'amrozi', u'testifi', u'bashir', u'trial']
[u'anger', u'air', u'rail', u'chang']
[u'help', u'develop', u'world', u'power', u'telescop']
[u'appl', u'packhous', u'upgrad']
[u'audit', u'question', u'perform']
[u'australia', u'fresh']
[u'australia', u'send', u'reinforc', u'honiara']
[u'aust', u'increas', u'agricultur', u'east', u'timor']
[u'aust', u'troop', u'leav', u'solomon']
[u'aust', u'troop', u'quell', u'solomon', u'riot']
[u'ballot', u'hold', u'hous', u'block']
[u'bangladesh', u'struggl', u'gillespi', u'record', u'knock']
[u'barca', u'hitman', u'giuli', u'want', u'world', u'place']
[u'bashir', u'bali', u'bomb', u'amrozi', u'testifi']
[u'beatti', u'announc', u'water', u'save', u'initi']
[u'beef', u'cattl', u'tool', u'preen']
[u'great', u'compos']
[u'biocan', u'stiff', u'competit']
[u'brain', u'tumour', u'research', u'uncov', u'gene']
[u'break', u'hill', u'record', u'higher', u'easter', u'tourism', u'number']
[u'brook', u'shield', u'welcom', u'second', u'child']
[u'bush', u'reiter', u'warn', u'iran']
[u'bushwalk', u'apologis', u'wast', u'search']
[u'refuge', u'help', u'address', u'rural', u'labour']
[u'rural', u'specif', u'suicid', u'prevent', u'scheme']
[u'cannon', u'rule', u'crusad', u'clash']
[u'cape', u'communiti', u'brace', u'monica', u'arriv']
[u'categori', u'monica', u'cross', u'coast']
[u'cathol', u'church', u'enter', u'immigr', u'polici', u'debat']
[u'chalco', u'visit', u'boost', u'townsvill', u'alumina', u'refineri']
[u'charter', u'right', u'send', u'children', u'care']
[u'china', u'sell', u'prison', u'organ', u'report']
[u'christma', u'group', u'welcom', u'asylum', u'seeker', u'polici']
[u'claim', u'free', u'park', u'trial', u'cost', u'council', u'thousand']
[u'claim', u'wollongong', u'media', u'threat', u'propos']
[u'closer']
[u'closer', u'abcnew']
[u'closer']
[u'club', u'forc', u'player', u'detector', u'test']
[u'coast', u'deputi', u'mayor', u'deni', u'provid', u'fals']
[u'cocain', u'smuggl', u'trial', u'continu']
[u'communiti', u'servic', u'provid', u'feel']
[u'competit', u'see', u'keep', u'fuel', u'price', u'lower']
[u'costello', u'quash', u'rumour', u'melbourn', u'home']
[u'cotton', u'farmer', u'feel', u'diesel', u'price', u'pinch']
[u'council', u'approv', u'wine', u'storag', u'tank']
[u'council', u'consid', u'campervan', u'site']
[u'councillor', u'plead', u'guilti', u'steal', u'charg']
[u'council', u'manag', u'plan', u'open', u'public', u'comment']
[u'council', u'open', u'comment', u'infrastructur', u'program']
[u'council', u'push', u'silver', u'servic']
[u'court', u'find', u'pilbara', u'guilti', u'murder']
[u'court', u'hear', u'councillor', u'applic']
[u'court', u'rule', u'ignor', u'public', u'principl']
[u'court', u'rule', u'extend', u'paedophil', u'jail', u'term']
[u'cousin', u'doubt', u'roo', u'match']
[u'cuban', u'trace', u'dinosaur', u'kill', u'meteor']
[u'curfew', u'declar', u'hit', u'honiara', u'street']
[u'cyclon', u'monica', u'track', u'inland']
[u'diplomaci', u'australia', u'indonesia', u'relat']
[u'diver', u'miss', u'probe']
[u'docker', u'debut', u'crow', u'clash']
[u'doctor', u'shortag', u'increas', u'emerg', u'dept', u'workload']
[u'dog', u'train', u'detect', u'parasit']
[u'doubt', u'cast', u'marin', u'park', u'plan']
[u'driver', u'note', u'polic', u'safeti', u'messag']
[u'driver', u'urg', u'fuel', u'wise']
[u'ead', u'look', u'forward', u'leav', u'dockland']
[u'death', u'wont', u'stop', u'festiv']
[u'elect', u'factor', u'honiara', u'violenc']
[u'royal', u'newcastl']
[u'exit', u'bell', u'ring', u'defend', u'champ', u'munro']
[u'famili', u'group', u'want', u'telstra', u'optus', u'join', u'porn']
[u'farmer', u'lobbi', u'govt', u'regul', u'plantat']
[u'farmer', u'urg', u'report', u'wild', u'dog']
[u'farmer', u'urg', u'watch', u'powerlin']
[u'farm', u'land', u'forc', u'wast', u'dump', u'rethink']
[u'fee', u'run', u'stock', u'rout']
[u'ferrari', u'bounc', u'schumach']
[u'fine', u'default', u'warn', u'tough', u'measur']
[u'firrito', u'receiv', u'strike', u'reprimand']
[u'freedman', u'boss', u'oak']
[u'fruit', u'outbreak', u'affect', u'market', u'access']
[u'websit', u'health', u'servic', u'welcom']
[u'gillespi', u'put', u'australia', u'seat']
[u'gillespi', u'centuri', u'push', u'aust', u'lead']
[u'gillespi', u'pass', u'australia', u'declar']
[u'gospel', u'music', u'festiv', u'pump', u'local', u'economi']
[u'govt', u'clear', u'tunnel', u'document', u'leak']
[u'govt', u'defend', u'robinval', u'hous', u'plan']
[u'seek', u'inquiri', u'elder', u'woman', u'death']
[u'graincorp', u'close', u'silo']
[u'green', u'group', u'seek', u'tourism', u'impact', u'studi']
[u'group', u'consid', u'option', u'court', u'uphold']
[u'hall', u'creek', u'hous', u'boost']
[u'health', u'worker', u'monitor', u'condom', u'tree']
[u'heed', u'medibank', u'sale', u'concern', u'gillard', u'urg']
[u'higher', u'water', u'charg', u'loom', u'riverina']
[u'hird', u'lead', u'bomber']
[u'holden', u'offer', u'refund']
[u'holiday', u'crowd', u'flock', u'balloon', u'festiv']
[u'honiara', u'violenc', u'result', u'simmer', u'polit']
[u'hospit', u'outlin', u'vision', u'surgeri']
[u'hous', u'survey', u'show', u'citi', u'price', u'slump']
[u'immigr', u'dept', u'fault', u'death', u'syrian']
[u'index', u'show', u'slow', u'econom', u'growth']
[u'industri', u'group', u'recommend', u'offshor', u'expans']
[u'inflat', u'contain', u'face', u'crisi']
[u'injuri', u'relief', u'archer']
[u'iranian', u'presid', u'make', u'threat', u'aggressor']
[u'iraq', u'finalis', u'wheat', u'purchas']
[u'review', u'secret', u'ballot', u'rule']
[u'iron', u'knob', u'power', u'servic', u'spark', u'anger']
[u'protest', u'target', u'brisban']
[u'kathmandu', u'curfew', u'protest', u'death']
[u'kati', u'holm', u'give', u'birth', u'babi', u'girl']
[u'kiama', u'caus', u'remain', u'unknown']
[u'kimberley', u'home', u'coal', u'region']
[u'kimberley', u'visitor', u'urg', u'protect', u'indigen']
[u'landhold', u'urg', u'work', u'reduc']
[u'loot', u'continu', u'australian', u'forc', u'head']
[u'accus', u'bash', u'face', u'court']
[u'critic', u'condit', u'stab']
[u'man', u'interim']
[u'question', u'power', u'station', u'entri']
[u'marin', u'polic', u'investig', u'turtl', u'report']
[u'market', u'hit', u'record', u'high', u'despit', u'soar', u'price']
[u'mass', u'exodus', u'easter', u'cattl']
[u'meninde', u'inflow', u'time']
[u'retain', u'technolog', u'licens', u'right']
[u'mine', u'compani', u'boost', u'chopper', u'contribut']
[u'money', u'flow', u'easter', u'yearl', u'sale']
[u'monica', u'begin', u'buffet', u'lockhart', u'river']
[u'monica', u'cross', u'coast']
[u'monica', u'strengthen', u'rout', u'coast']
[u'power', u'caus', u'alarm', u'spenc']
[u'myle', u'accept', u'match']
[u'nation', u'farm', u'help', u'restor', u'farmer', u'imag']
[u'life', u'breath', u'ulverston', u'wharf']
[u'nightclub', u'lockout', u'statewid']
[u'ireland', u'polic', u'claim', u'major', u'bomb', u'foil']
[u'guarante', u'doctor', u'stay', u'clinic', u'advisori']
[u'option', u'fight', u'dargo']
[u'npws', u'defend', u'bait', u'practic']
[u'ntini', u'take', u'protea', u'crush', u'zealand']
[u'easter', u'road', u'toll', u'rise']
[u'price', u'rise', u'felt', u'bowser']
[u'ombudsman', u'report', u'question', u'immigr', u'dept']
[u'optus', u'launch', u'legal', u'action', u'telstra']
[u'osteoporosi', u'drug', u'reduc', u'breast', u'cancer', u'risk']
[u'pagan', u'sweat', u'lappin', u'fit']
[u'paramed', u'pass', u'confid', u'motion']
[u'petrol', u'price', u'fail', u'deter', u'tourist']
[u'pine', u'terror', u'network', u'accus', u'tell', u'court']
[u'player', u'agre', u'test', u'schedul', u'sutherland']
[u'defend', u'famili', u'benefit', u'plan']
[u'polic', u'hope', u'cyclon', u'wont', u'hamper', u'torr', u'search']
[u'polic', u'probe', u'attack']
[u'polic', u'seek', u'earlier', u'nightspot', u'lockout']
[u'polic', u'step', u'search', u'woman', u'miss', u'rave']
[u'pont', u'face', u'question', u'chief']
[u'poor', u'attend', u'show', u'transit', u'process', u'rush']
[u'poppi', u'grower', u'urg', u'hang', u'tough']
[u'poultri', u'worker', u'bird', u'vaccin']
[u'pressur', u'negoti', u'secur', u'better', u'market']
[u'princ', u'pier', u'restor', u'glori']
[u'public', u'access', u'resort', u'environment', u'report']
[u'ramsi', u'offic', u'riot', u'respons', u'criticis']
[u'recommend', u'theatr', u'compani']
[u'record', u'number', u'predict', u'landsail', u'event']
[u'region', u'miss', u'game', u'benefit']
[u'resid', u'readi', u'leav', u'merapi', u'stir']
[u'revolutionari', u'american', u'compos', u'reach', u'aust', u'shore']
[u'riot', u'continu', u'troop', u'leav', u'solomon']
[u'riot', u'continu', u'honiara']
[u'river', u'murray', u'user', u'benefit', u'salt']
[u'rivskil', u'administr', u'news', u'creditor']
[u'road', u'kill', u'relat', u'insur', u'claim']
[u'romanian', u'evacu', u'danub', u'breach']
[u'ruddock', u'disappoint', u'unhcr', u'critic']
[u'rumsfeld', u'stay', u'cabinet', u'shake']
[u'ryan', u'mourn', u'son', u'sudden', u'death']
[u'ryan', u'seek', u'polici', u'feedback']
[u'saddam', u'sign', u'death', u'document', u'judg', u'rule']
[u'sailor', u'hospit', u'wave', u'hit', u'ship']
[u'franciso', u'mark', u'earthquak', u'anniversari']
[u'school', u'closur', u'plan', u'teacher', u'union', u'cautious']
[u'selector', u'heed', u'bellami', u'origin', u'warn', u'ing']
[u'attack', u'spark', u'secur', u'concern']
[u'shark', u'centr', u'attract', u'visitor']
[u'shearer', u'career', u'face', u'prematur']
[u'sister', u'await', u'mokbel', u'sureti', u'rule']
[u'slater', u'iron', u'bell']
[u'solomon', u'midopen']
[u'solomon', u'open']
[u'wine', u'grape', u'grower', u'face', u'higher', u'price']
[u'south', u'korea', u'appoint', u'femal']
[u'stanhop', u'flag', u'school', u'closur']
[u'stirl', u'urg', u'staff', u'remot']
[u'strengthen', u'cyclon', u'monica', u'north', u'coast']
[u'sydney', u'terror', u'suspect', u'plead', u'guilti']
[u'tamworth', u'council', u'promot', u'park', u'chang']
[u'tasmanian', u'miss', u'port', u'arthur', u'counsel']
[u'tasmania', u'consid', u'nation', u'driver', u'licenc', u'plan']
[u'thurston', u'verg', u'test', u'select']
[u'thwait', u'saleyard', u'petit']
[u'tourist', u'encourag', u'visit', u'flood', u'katherin']
[u'tourist', u'gold', u'coast']
[u'concern', u'aust', u'asylum', u'polici']
[u'union', u'demand', u'detail', u'public', u'servic', u'chang']
[u'union', u'fear', u'driver', u'safeti']
[u'unit', u'want', u'spoil', u'chelsea', u'parti']
[u'govt', u'announc', u'coastal', u'develop', u'restrict']
[u'council', u'feel', u'skill', u'shortag', u'impact']
[u'wag', u'doubl', u'world', u'refere']
[u'wallac', u'confront', u'tiger', u'injuri', u'woe']
[u'mine', u'industri', u'reject', u'gold', u'theft', u'plan']
[u'nation', u'urg', u'disast', u'relief', u'rethink']
[u'premier', u'want', u'fong', u'contract', u'finalis']
[u'webb', u'commit', u'cowboy']
[u'welfar', u'fund', u'fail', u'meet', u'demand']
[u'wenger', u'readi', u'champion', u'leagu', u'cultur', u'clash']
[u'wind', u'rain', u'batter', u'tropic', u'cyclon']
[u'woman', u'kill', u'nepal', u'protest', u'continu']
[u'woodsid', u'choos', u'plant', u'locat']
[u'work', u'parti', u'discuss', u'build', u'height', u'limit']
[u'world', u'organis', u'unveil', u'golden', u'ball']
[u'youth', u'mental', u'health', u'advisori', u'board', u'announc']
[u'action', u'group', u'support', u'compo']
[u'barrier', u'relat', u'death', u'studi', u'find']
[u'seek', u'overdu', u'health', u'report', u'card']
[u'amwu', u'find', u'avenu', u'industri', u'action']
[u'angl', u'club', u'sting', u'burglari']
[u'arnhem', u'land', u'prepar', u'monica']
[u'artist', u'win', u'gallipoli', u'prize', u'anzac', u'cove', u'ghost']
[u'assur', u'call', u'rail', u'network']
[u'asylum', u'seeker', u'deserv', u'digniti', u'bishop']
[u'aussi', u'uzbekistan']
[u'aussi', u'score', u'convinc']
[u'aust', u'quarantin', u'diseas', u'outbreak']
[u'aust', u'forc', u'prepar', u'violenc']
[u'australia', u'astonish', u'dizzi', u'dream', u'inning']
[u'australian', u'scientist', u'claim', u'breakthrough', u'brain']
[u'australian', u'flee', u'solomon']
[u'australia', u'debt', u'free']
[u'aust', u'soldier', u'brace', u'violenc', u'honiara']
[u'author', u'hope', u'contain', u'blaze']
[u'author', u'probe', u'fatal', u'race', u'accid']
[u'baddeley', u'seek', u'maintain', u'momentum', u'houston']
[u'bangladesh', u'worst', u'enemi', u'pont']
[u'barn', u'go', u'say', u'miller']
[u'bathurst', u'accid', u'investig']
[u'beazley', u'forget', u'senat']
[u'better', u'price', u'expect', u'barley', u'grower']
[u'blaze', u'claim', u'centuri', u'hous']
[u'blue', u'green', u'alga', u'prompt', u'health', u'warn']
[u'boat', u'collid', u'indonesian', u'water', u'miss']
[u'boss', u'fin', u'logger', u'styx', u'valley', u'death']
[u'bring', u'child', u'asylum', u'seeker', u'home', u'famili']
[u'broadacr', u'grain', u'grower', u'want', u'debat']
[u'bunburi', u'form', u'disast', u'plan', u'committe']
[u'busi', u'chamber', u'sell', u'infrastructur', u'levi']
[u'cairn', u'flood', u'threat', u'eas']
[u'greater', u'measur', u'save', u'water']
[u'calm', u'return', u'honiara']
[u'canal', u'swim', u'enclosur', u'decis', u'leav', u'council']
[u'case', u'foreign', u'currenc', u'trader', u'simpl', u'court']
[u'children', u'charg', u'shop', u'robberi']
[u'cleaner', u'fear', u'prompt', u'ralli']
[u'cleaner', u'ralli', u'chang']
[u'closer']
[u'closer']
[u'commonwealth', u'call', u'peac', u'solomon']
[u'compani', u'outlin', u'plan', u'road', u'rail', u'termin']
[u'compani', u'say', u'medic', u'wast', u'plan', u'wont', u'affect', u'public']
[u'concern', u'indigen', u'health', u'remot', u'victoria']
[u'concern', u'sydney', u'harbour', u'fishermen', u'poison']
[u'confid', u'reveal', u'queen', u'retir']
[u'cosgrov', u'laud', u'cyclon', u'relief', u'effort']
[u'costello', u'urg', u'consid', u'chang']
[u'council', u'seek', u'privat', u'fund', u'pool', u'plan']
[u'council', u'look', u'wast', u'manag', u'system']
[u'council', u'hire', u'consult', u'lobbi', u'road', u'fund']
[u'council', u'work', u'greater', u'cooper']
[u'curfew', u'calm', u'honiara', u'rioter']
[u'cyclon', u'monica', u'hover', u'gulf']
[u'develop', u'levi', u'liken', u'highway', u'robberi']
[u'dfat', u'updat', u'alert', u'indonesia']
[u'disabl', u'hous', u'open', u'mount', u'gambier']
[u'diver', u'help', u'search', u'miss', u'woman']
[u'dozen', u'arrest', u'train', u'crime', u'crackdown']
[u'mull', u'charg', u'chines', u'fisher']
[u'drought', u'program', u'speed', u'applic']
[u'drought', u'spark', u'farm', u'subsidi']
[u'england', u'world', u'fan', u'advis', u'beer']
[u'timor', u'author', u'ignor', u'polic', u'abus', u'report']
[u'europ', u'flood', u'threat', u'escal']
[u'farm', u'group', u'want', u'spotlight', u'drought']
[u'fear', u'honiara', u'violenc']
[u'fevola', u'absenc', u'caus', u'headach', u'hawk']
[u'filipino', u'sailor', u'death', u'investig']
[u'fisher', u'offer', u'discount', u'marina', u'rat']
[u'custodi', u'drug', u'bust']
[u'case', u'tomato', u'virus', u'detect']
[u'flood', u'landslid', u'kill', u'java']
[u'fli', u'milton', u'break', u'australian', u'speed', u'record']
[u'survey', u'cyclon', u'damag']
[u'forc', u'stand', u'solomon', u'swear']
[u'forssel', u'haul', u'birmingham', u'drop', u'zone']
[u'fraser', u'coast', u'deleg', u'air', u'weir', u'worri']
[u'fund', u'improv', u'age', u'care', u'worker', u'skill']
[u'fund', u'replac', u'surgic', u'equip']
[u'garbag', u'collector', u'attack', u'melbourn']
[u'giteau', u'hurrican', u'clash']
[u'gold', u'coast', u'council', u'decid', u'weekend']
[u'gold', u'fingerprint', u'technolog', u'snub', u'puzzl']
[u'govt', u'commit', u'water', u'reform']
[u'govt', u'move', u'blood', u'test', u'sydney', u'harbour', u'fishermen']
[u'govt', u'rebuild', u'ravag', u'natur', u'reserv']
[u'grain', u'grower', u'fear', u'depot', u'closur', u'impact']
[u'group', u'take', u'wait', u'approach', u'wast', u'dump']
[u'health', u'servic', u'discuss', u'mortgag', u'decis']
[u'high', u'fuel', u'price', u'boost', u'demand', u'convers']
[u'highway', u'reopen', u'crash']
[u'hird', u'surpris', u'lead', u'bomber']
[u'honiara', u'violenc', u'flare']
[u'hospit', u'order', u'hand', u'abort', u'record']
[u'hotel', u'group', u'look', u'load', u'cattl', u'manag']
[u'howard', u'powerless', u'lower', u'petrol', u'price']
[u'hunter', u'tourism', u'boom']
[u'predict', u'continu', u'australian', u'growth']
[u'think', u'retir', u'howard']
[u'injur', u'policewoman', u'like', u'stay', u'solomon']
[u'injur', u'sailor', u'die', u'hospit']
[u'criticis', u'worker', u'sack']
[u'kaiser', u'germani', u'bust']
[u'keelti', u'defend', u'honiara', u'riot', u'respons']
[u'knife', u'wield', u'rob', u'servic', u'station']
[u'labor', u'attack', u'govt', u'diplomat', u'visit']
[u'latrob', u'valley', u'fuel', u'price', u'hit', u'litr']
[u'lennon', u'schoolbook', u'fetch']
[u'lift', u'drive', u'littl']
[u'local', u'school', u'open', u'flood', u'reced']
[u'lomus', u'season', u'ankl', u'break']
[u'lose', u'bushwalk', u'nation']
[u'jail', u'bash', u'pregnant', u'partner']
[u'shoot', u'dead', u'sydney', u'laneway']
[u'mater', u'build', u'unit', u'prostat', u'cancer', u'patient']
[u'matilda', u'face', u'tough', u'task']
[u'matthew', u'make', u'chang', u'lion', u'squad']
[u'milit', u'ambush', u'pakistani', u'troop']
[u'minist', u'call', u'poultri', u'farm', u'plan']
[u'money', u'launder', u'chang', u'draconian']
[u'monica', u'caus', u'sever', u'flood']
[u'monica', u'expect', u'intensifi', u'gulf']
[u'morri', u'play', u'fear', u'blue', u'bias', u'test', u'team']
[u'motel', u'urg', u'help', u'fund', u'confer']
[u'motorway', u'ramp', u'mishap', u'earn', u'drive']
[u'concern', u'blue', u'card']
[u'stand', u'resort', u'approv', u'process']
[u'nail', u'gun', u'theft', u'worri', u'polic']
[u'napier', u'seek', u'wait', u'list', u'commit']
[u'nation', u'select', u'gippsland', u'east', u'candid']
[u'nativ', u'titl', u'agreement', u'cover', u'cultur']
[u'drug', u'halv', u'breast', u'cancer', u'risk', u'research']
[u'england', u'farmer', u'want', u'rain']
[u'fruit', u'pack', u'facil', u'offer', u'boost', u'batlow']
[u'look', u'add', u'anzac', u'excit', u'sheedi']
[u'power', u'solomon', u'polic']
[u'power', u'station', u'open']
[u'control', u'centr', u'open']
[u'buyer', u'canneri']
[u'releg', u'south', u'african', u'super', u'team']
[u'north', u'north', u'coast', u'rank', u'tourist', u'spot']
[u'sign', u'petrol', u'price', u'drop']
[u'govt', u'keen', u'resolv', u'water', u'recycl', u'issu']
[u'conductor', u'rais', u'bach', u'conspiraci', u'theori']
[u'educ', u'dept', u'decentralis']
[u'price', u'concern', u'pull', u'market']
[u'paedophil', u'poster', u'polic', u'investig']
[u'patrick', u'worker', u'know', u'futur', u'month']
[u'pension', u'worthless', u'banknot', u'block', u'sewer']
[u'pilot', u'crash', u'plane', u'ban', u'fli']
[u'pine', u'protest', u'stand', u'trial']
[u'move', u'sunshin', u'state']
[u'polic', u'hunt', u'miss', u'prison']
[u'polic', u'hunt', u'servic', u'station', u'robber']
[u'polic', u'probe', u'theft']
[u'polic', u'strive', u'identifi', u'dead', u'camper']
[u'politician', u'see', u'hous', u'packag', u'benefit']
[u'premier', u'come', u'mcginti', u'defenc']
[u'prodi', u'confirm', u'italian', u'elect', u'victor']
[u'progress', u'report', u'risdon', u'disput', u'talk']
[u'project', u'offer', u'region', u'women', u'work', u'opportun']
[u'protect', u'taxpay', u'agent', u'error']
[u'protest', u'kill', u'kathmandu', u'curfew', u'enforc']
[u'push', u'loddon', u'malle', u'highway', u'revamp']
[u'govt', u'commit', u'water', u'project']
[u'storm', u'season']
[u'queanbeyan', u'painter', u'win', u'anzac', u'competit']
[u'real', u'confirm', u'gerrard']
[u'receiv', u'control', u'westpoint', u'director', u'asset']
[u'record', u'price', u'yearl', u'sydney', u'sale']
[u'redback', u'coach', u'say', u'dizzi', u'ash', u'frame']
[u'dust', u'lobbi', u'group', u'consid', u'legal', u'avenu']
[u'refuge', u'number', u'year']
[u'report', u'find', u'good', u'council', u'oper']
[u'rescu', u'boat', u'boost', u'beach', u'safeti']
[u'resid', u'peak', u'hill', u'ambul', u'worri']
[u'retir', u'kennedi', u'put', u'hand', u'test']
[u'revamp', u'temporarili', u'close', u'oper', u'theatr']
[u'riot', u'gear', u'rais', u'suspicion', u'christma']
[u'robertson', u'confid', u'surgeri', u'probe']
[u'rooney', u'pele', u'say', u'charlton']
[u'royal', u'newcastl', u'patient']
[u'russia', u'urg', u'stop', u'iranian', u'nuclear', u'project']
[u'adopt', u'children', u'right', u'charter']
[u'saff', u'stand', u'anim', u'welfar', u'code']
[u'salt', u'intercept', u'project', u'benefit', u'murray', u'river']
[u'miner', u'northern', u'explor', u'licenc']
[u'schoolboy', u'alleg', u'abus']
[u'search', u'miss', u'swimmer', u'continu']
[u'second', u'major', u'hospit', u'consider']
[u'seller', u'charg', u'ebay', u'fraud']
[u'sheen', u'tip', u'marshal', u'earli', u'return']
[u'slater', u'triumph', u'bell']
[u'snowi', u'hydro', u'sale', u'inquiri', u'urg']
[u'solomon', u'polic', u'grant', u'power']
[u'solomon', u'unrest', u'spread']
[u'school', u'dumb', u'english', u'class']
[u'stirl', u'reject', u'teacher', u'shortag', u'claim']
[u'supermarket', u'investig']
[u'tate', u'hodg', u'bronco']
[u'temco', u'investig']
[u'thousand', u'flee', u'danub', u'flood', u'romania']
[u'tiger', u'drive', u'chariti', u'race']
[u'tomato', u'virus', u'spread', u'bowen']
[u'diplomat', u'prepar', u'indonesian', u'talk']
[u'like', u'nuclear', u'wast', u'dump']
[u'tourist', u'attract', u'highlight', u'public']
[u'tourist', u'urg', u'avoid', u'dead', u'whale']
[u'traffic', u'forum', u'debat', u'speed', u'limit', u'car']
[u'traffic', u'light', u'rule', u'waterfront', u'plan']
[u'treasur', u'greek', u'villa', u'link', u'getti']
[u'trio', u'stand', u'trial', u'secur', u'guard', u'death']
[u'troop', u'expect', u'immedi', u'impact']
[u'truck', u'driver', u'live', u'poverti', u'line']
[u'ulverston', u'wharf', u'reciev', u'face', u'lift']
[u'vandal', u'fail', u'stop', u'rodeo']
[u'vaughan', u'net']
[u'vertic', u'burial', u'plan', u'stand', u'approv']
[u'warrant', u'issu', u'miss', u'mokbel']
[u'wast', u'dump', u'setback', u'doesnt', u'faze', u'council']
[u'water', u'plan', u'boost', u'latrob', u'river', u'flow']
[u'water', u'util', u'littl', u'poor', u'custom']
[u'westbrook', u'jail', u'review', u'breakout']
[u'wheat', u'discoveri', u'prompt', u'question']
[u'windi', u'contract']
[u'wittenoom', u'resid', u'angri', u'plan', u'power']
[u'wollongong', u'council', u'take', u'effici', u'test']
[u'wood', u'consid', u'play', u'australia']
[u'work', u'start', u'makyb', u'diva', u'monument']
[u'yarra', u'flow', u'litr', u'boost']
[u'absent', u'nation', u'fail', u'protest', u'parliament']
[u'accus', u'blood', u'scene', u'court', u'hear']
[u'addict', u'treatment', u'help', u'sting', u'swimmer']
[u'back', u'industri', u'park', u'plan']
[u'amwu', u'claim', u'worker', u'sack', u'smirk']
[u'appeal', u'court', u'uphold', u'vinci', u'code', u'rule']
[u'assist', u'lose', u'friend', u'harass', u'suit']
[u'aust', u'doubl', u'solomon', u'troop']
[u'australian', u'navi', u'rescu', u'tongan', u'island']
[u'australia', u'plan', u'whale', u'protect', u'measur']
[u'australia', u'send', u'troop', u'solomon']
[u'australia', u'triumphant', u'seoul']
[u'aveburi', u'seal', u'nickel', u'deal']
[u'awb', u'act', u'step']
[u'battl', u'giteau', u'spark', u'salari']
[u'beatti', u'rule', u'support', u'upper', u'hous']
[u'bid', u'begin', u'radio', u'right']
[u'biki', u'gang', u'fatal', u'shoot', u'victim', u'name']
[u'boat', u'mishap', u'forc', u'long', u'swim', u'shore']
[u'bodi', u'search', u'plan', u'burn', u'honiara', u'build']
[u'bodi', u'search', u'plan', u'burn', u'solomon', u'build']
[u'bookmak', u'fear', u'victorian', u'fee', u'decis']
[u'die', u'shoot', u'mishap']
[u'british', u'court', u'approv', u'wood', u'extradit']
[u'break', u'hill', u'council', u'rais', u'water', u'price', u'issu']
[u'bush', u'reaffirm', u'china', u'polici']
[u'chief', u'hold', u'cheetah']
[u'chines', u'media', u'white', u'hous', u'heckler']
[u'clergymen', u'child', u'charg', u'extradit']
[u'closer']
[u'closer']
[u'closer']
[u'coal', u'product', u'fall']
[u'compani', u'join', u'forc', u'greenhous', u'gas']
[u'constant', u'rain', u'larri', u'hamper', u'dairi', u'farm']
[u'convict', u'murder', u'appeal', u'high', u'court']
[u'costello', u'defend', u'cronulla', u'stadium', u'fund']
[u'costello', u'urg', u'learn', u'mistak']
[u'council', u'consid', u'cabl', u'beach', u'camel', u'tour', u'tender']
[u'council', u'green', u'light', u'polic', u'station', u'design', u'chang']
[u'council', u'keen', u'casino', u'byron', u'rail', u'servic']
[u'court', u'jail', u'driver', u'hotel', u'crash']
[u'cousin', u'kangaroo', u'clash']
[u'cowboy', u'lose', u'skipper', u'shark', u'encount']
[u'cyanid', u'watch', u'protest', u'dubbo']
[u'cyclon', u'monica', u'intensifi']
[u'darl', u'down', u'yearl', u'fetch']
[u'darwin', u'seek', u'respons', u'fluorid', u'concern']
[u'daytim', u'curfew', u'impos', u'kathmandu']
[u'dfat', u'head', u'hold', u'indonesia', u'talk', u'today']
[u'disabl', u'tasmanian', u'wait', u'support']
[u'docker', u'retain', u'win', u'formula']
[u'doherti', u'arrest', u'hour', u'avoid', u'jail']
[u'dubbo', u'orang', u'bathurst', u'council', u'plan', u'join', u'forc']
[u'dubbo', u'teen', u'lose', u'finger', u'attack']
[u'eagl', u'gardin', u'return', u'fold']
[u'eel', u'form', u'tiger']
[u'eel', u'seek', u'rare', u'victori']
[u'thiev', u'prepar', u'ride', u'live']
[u'exempt', u'allow', u'transport', u'home', u'break', u'hill']
[u'extra', u'calcium', u'littl', u'healthi', u'kid']
[u'extra', u'polic', u'call', u'control', u'more', u'brawl']
[u'extra', u'staff', u'deal', u'end', u'risdon', u'prison', u'lock']
[u'farmer', u'await', u'autumn', u'break']
[u'farmer', u'cast', u'doubt', u'feder', u'govt', u'websit']
[u'farmer', u'cautious', u'plan', u'herbicid']
[u'farmer', u'forc', u'travel', u'store', u'graincorp']
[u'fashion', u'brand', u'brace', u'soar', u'price']
[u'fertilis', u'plant', u'closur', u'mean', u'room']
[u'secur', u'million', u'deal']
[u'final', u'stage', u'port', u'expans', u'give', u'green', u'light']
[u'firefight', u'tackl', u'south', u'coast', u'blaze']
[u'fish', u'kill', u'temporarili', u'close', u'lake', u'indoon']
[u'fodder', u'export', u'compani', u'invest', u'dougla', u'dali']
[u'forc', u'earn', u'thrill', u'draw', u'crusad']
[u'fresh', u'doubt', u'zidan']
[u'check', u'sydney', u'harbour', u'pollut', u'urg']
[u'goulburn', u'water', u'capac', u'critic', u'level']
[u'govt', u'ask', u'investig', u'woman', u'hospit', u'releas']
[u'govt', u'ask', u'review', u'fluorid', u'decis']
[u'govt', u'promis', u'meet', u'funer', u'cost', u'mildura']
[u'govt', u'hand', u'tie', u'water', u'trade', u'disput']
[u'graincorp', u'name', u'silo', u'close']
[u'graincorp', u'avers', u'keep', u'silo', u'open']
[u'gunner', u'seek', u'juggl', u'ambit']
[u'hama', u'govt', u'creat', u'secur', u'forc']
[u'hawk', u'favourit', u'overcom', u'blue']
[u'hawk', u'outclass', u'blue']
[u'health', u'servic', u'cut', u'elect', u'surgeri', u'wait', u'line']
[u'hiddink', u'advic', u'advocaat']
[u'honiara', u'calm', u'polit', u'tension', u'remain']
[u'hope', u'develop', u'repeat', u'hindmarsh']
[u'hostil', u'indonesia', u'howard']
[u'hotel', u'expect', u'occup', u'rate', u'drop']
[u'howard', u'quiet', u'georgiou', u'seat', u'challeng']
[u'iemma', u'open', u'miner', u'sand', u'plant']
[u'illeg', u'land', u'clear', u'rampant', u'say', u'leak', u'report']
[u'indonesia', u'continu', u'seek', u'child', u'return']
[u'indonesian', u'playboy', u'ebay', u'publish', u'mull']
[u'insuffici', u'evid', u'hancock', u'murder']
[u'strong', u'develop', u'hospit', u'site']
[u'investig', u'continu', u'forest', u'blaze']
[u'italian', u'cardin', u'back', u'condom', u'prevent', u'aid']
[u'jail', u'mafia', u'boss', u'keep']
[u'king', u'plead', u'wimbledon', u'equal', u'money']
[u'klinsmann', u'slam', u'door', u'scholl']
[u'labor', u'want', u'apprenticeship', u'visa', u'scrap']
[u'labor', u'want', u'cut', u'offset', u'rise', u'fuel', u'cost']
[u'lack', u'resourc', u'imped', u'alcohol', u'enforc']
[u'lanc', u'eye', u'york', u'marathon']
[u'landcar', u'popular', u'wan']
[u'liber', u'seek', u'bendigo', u'nomin']
[u'lion', u'monitor', u'keat', u'fit']
[u'liverpool', u'insist', u'gerrard', u'sale']
[u'lose', u'famili', u'make', u'contact']
[u'mainten', u'worker', u'crush', u'accid']
[u'malik', u'undergo', u'surgeri', u'correct', u'action']
[u'burn', u'home', u'attack']
[u'die', u'crash', u'near', u'manildra']
[u'balloon', u'heroin', u'polic']
[u'lose', u'appeal', u'murder', u'convict']
[u'man', u'bodi', u'damag', u'unit']
[u'face', u'court', u'robinval', u'murder']
[u'market', u'end', u'week', u'lower']
[u'mass', u'demonstr', u'kathmandu']
[u'mayor', u'urg', u'victim', u'appeal']
[u'milit', u'leader', u'head', u'palestinian', u'author']
[u'minist', u'defend', u'govt', u'water', u'trade', u'effort']
[u'monica', u'intensifi', u'journey', u'gulf']
[u'monica', u'strength', u'prompt', u'cyclon', u'warn']
[u'south', u'east', u'drought', u'declar']
[u'solomon', u'evacue', u'arriv']
[u'troop', u'solomon']
[u'morwel', u'get', u'special', u'olymp']
[u'reject', u'call', u'govt', u'snowi', u'hydro']
[u'sorri', u'lack', u'region']
[u'urg', u'dedic', u'drug', u'squad', u'northern', u'river']
[u'gambier', u'theatr', u'compani', u'fold']
[u'murray', u'give', u'littl', u'think', u'cowboy', u'buffer']
[u'musket', u'tell', u'georgiou']
[u'naracoort', u'hospit', u'facil', u'open', u'today']
[u'nation', u'seek', u'nativ', u'veget', u'raid', u'explan']
[u'nation', u'want', u'bounti', u'reinstat']
[u'movi', u'mildura']
[u'newcastl', u'uni', u'pharmaci', u'student', u'graduat']
[u'newman', u'defend', u'transport', u'plan']
[u'reach', u'product']
[u'task', u'forc', u'tackl', u'anti', u'social', u'behaviour']
[u'nigeria', u'shake', u'debt', u'burden']
[u'nobl', u'take', u'struggl', u'wigan']
[u'quick', u'decis', u'museum', u'site']
[u'norway', u'urg', u'stop', u'commerci', u'whale']
[u'verg', u'salari', u'adjust']
[u'govt', u'test', u'harbour', u'fishermen', u'poison']
[u'town', u'brace', u'cyclon', u'monica']
[u'nullabor', u'muster', u'boost', u'remot', u'town']
[u'octob', u'finish', u'moot', u'airport', u'build', u'work']
[u'price', u'rise', u'affect', u'tourism', u'area']
[u'owen', u'return']
[u'plan', u'intensifi', u'singl', u'region', u'health']
[u'player', u'give', u'thumb']
[u'dodg', u'question', u'futur']
[u'rule', u'petrol', u'relief']
[u'polic', u'bash', u'suspect', u'turn']
[u'polic', u'hunt', u'teen', u'culprit']
[u'polic', u'identifi', u'sydney', u'gunman']
[u'polic', u'intensifi', u'search', u'miss', u'woman']
[u'polic', u'investig', u'alic', u'spring', u'stab']
[u'polic', u'lead', u'search', u'miss', u'famili']
[u'policeman', u'attack', u'win', u'parol', u'hear']
[u'polic', u'probe', u'elder', u'tweed', u'woman', u'death']
[u'polic', u'seiz', u'drug', u'cash', u'griffith', u'home']
[u'pollut', u'stop', u'belling', u'river', u'oyster', u'harvest']
[u'poor', u'light', u'forc', u'footbal', u'match', u'cancel']
[u'port', u'lincoln', u'go', u'age', u'care', u'approach']
[u'public', u'dental', u'servic', u'shut', u'temporarili']
[u'public', u'invit', u'discuss', u'sewerag', u'plan']
[u'public', u'offer', u'assur', u'seawe', u'alga']
[u'fever', u'vaccin', u'suppli', u'dwindl']
[u'govt', u'seiz', u'control', u'water', u'suppli']
[u'queen', u'elizabeth', u'turn']
[u'queen', u'elizabeth', u'turn']
[u'monitor', u'region', u'fuel', u'price']
[u'region', u'doctor', u'opposit', u'bond', u'plan']
[u'region', u'extend', u'drought']
[u'repres', u'tight', u'lip', u'cool', u'jakarta']
[u'resid', u'oppos', u'wind', u'farm', u'plan']
[u'resid', u'urg', u'report', u'malici', u'damag']
[u'rioter', u'attack', u'tennant', u'creek', u'polic']
[u'tinto', u'output', u'fall']
[u'tinto', u'win', u'iron', u'explor', u'licenc']
[u'robert', u'artwork', u'go', u'inverel']
[u'rock', u'round', u'clock', u'land', u'japanes', u'woman']
[u'rubi', u'mine', u'plan', u'creat', u'environ', u'worri']
[u'secreci', u'surround', u'aust', u'indonesian', u'talk']
[u'secreci', u'surround', u'australian', u'envoy', u'indonesian']
[u'senat', u'laugh', u'beazley', u'slip']
[u'sentenc', u'adjourn', u'wife', u'stab', u'case']
[u'sexual', u'predat', u'jail', u'year']
[u'shark', u'safeti', u'review', u'find', u'effect']
[u'shire', u'want', u'environment', u'friend', u'site', u'port']
[u'sixer', u'lightn', u'sale']
[u'snow', u'close', u'lomond', u'road']
[u'solomon', u'confid', u'order', u'return']
[u'solomon', u'confid', u'order', u'return', u'honiara']
[u'solomon', u'stand', u'firm']
[u'solomon', u'team', u'welcom', u'reinforc']
[u'south', u'west', u'grazier', u'hope', u'winter', u'rain', u'relief']
[u'station', u'evacu', u'monica', u'near']
[u'stormer', u'strong', u'red']
[u'stud', u'owner', u'optimist', u'onlin', u'sale']
[u'support', u'seek', u'lobbi', u'govt', u'sustain']
[u'swan', u'hill', u'host', u'rediscov', u'weekend']
[u'swedish', u'tenni', u'star', u'enqvist', u'quit', u'report']
[u'sydney', u'easter', u'wrap']
[u'break', u'need', u'pulp', u'paper', u'expans']
[u'taylor', u'join', u'rabbitoh', u'coach', u'rank']
[u'technolog', u'improv', u'prostat', u'cancer', u'treatment']
[u'telco', u'altern', u'broadband', u'plan']
[u'test', u'fail', u'identifi', u'bodi', u'suitcas']
[u'ticket', u'chang', u'allow', u'easier', u'melbourn', u'travel']
[u'timber', u'industri', u'attack', u'govt']
[u'tourism', u'group', u'look', u'exposur']
[u'trio', u'jail', u'life', u'jewelleri', u'store', u'robberi']
[u'tweed', u'farmer', u'win', u'medal', u'excel']
[u'charg', u'bunburi', u'assault']
[u'approv', u'wood', u'extradit']
[u'china', u'meet', u'disrupt', u'protest']
[u'get', u'tough', u'water', u'restrict']
[u'govt', u'settl', u'legal', u'action', u'teacher']
[u'vietnam', u'court', u'uphold', u'australian', u'death', u'sentenc']
[u'water', u'commiss', u'stunt', u'opposit']
[u'water', u'transport', u'panel', u'deliv', u'final', u'report']
[u'webb', u'content', u'georgia']
[u'weed', u'threaten', u'nullarbor', u'lake']
[u'woman', u'jail', u'fatal', u'drink', u'spike', u'incid']
[u'worker', u'sack', u'smirk', u'amwu']
[u'arrest', u'valley', u'raid']
[u'alonso', u'pip', u'schumach', u'imola', u'practic']
[u'seek', u'educ', u'commit', u'govern']
[u'anim', u'right', u'group', u'attempt', u'rodeo', u'entri']
[u'applebi', u'stay', u'ahead', u'raini', u'houston']
[u'arnhem', u'flight', u'servic', u'remain', u'hand']
[u'aussi', u'snooker', u'player', u'world', u'championship']
[u'aussi', u'world', u'rugbi', u'titl']
[u'australian', u'enthusiast', u'recycl']
[u'australian', u'soldier', u'die', u'baghdad']
[u'australian', u'soldier', u'kill', u'iraq']
[u'australia', u'deliv', u'messag', u'solomon']
[u'author', u'assess', u'playground', u'safeti', u'boy']
[u'beazley', u'urg', u'howard', u'stay', u'elect']
[u'bennett', u'say', u'sticki', u'situat', u'cost', u'hodg']
[u'bomber', u'lose', u'lloyd', u'season']
[u'bomb', u'squad', u'examin', u'potato', u'farmer']
[u'bow', u'eye', u'brock', u'race', u'record']
[u'kill', u'playground', u'accid']
[u'brumbi', u'hang', u'gritti']
[u'build', u'activ', u'slow']
[u'bulldog', u'beat', u'geelong', u'thriller']
[u'cabooltur', u'hospit', u'contract', u'rais', u'question']
[u'celebr', u'hold', u'queen', u'elizabeth', u'birthday']
[u'children', u'abandon', u'overturn']
[u'chines', u'white', u'hous', u'protest', u'charg', u'court']
[u'chopper', u'misguid']
[u'close', u'school', u'hous', u'child', u'care', u'green']
[u'closer', u'abcnew']
[u'closer']
[u'concern', u'veteran', u'orang', u'anzac', u'protest']
[u'consum', u'group', u'welcom', u'telco', u'chang']
[u'counti', u'tyron', u'take', u'sydney']
[u'coupl', u'success', u'adopt', u'surrog', u'bear', u'child']
[u'crow', u'fremantl', u'subiaco']
[u'custom', u'find', u'drug', u'wine', u'bottl']
[u'cyclon', u'monica', u'upgrad']
[u'cyclon', u'monica', u'move', u'closer', u'coast']
[u'cyclon', u'monica', u'reach', u'categori']
[u'defenc', u'forc', u'probe', u'soldier', u'death', u'iraq']
[u'defenc', u'forc', u'probe', u'soldier', u'death']
[u'dioxin', u'seafood', u'contamin', u'fear']
[u'disabl', u'woman', u'plight', u'unusu', u'liber']
[u'domin', u'storm', u'annihil', u'knight']
[u'downer', u'arriv', u'solomon', u'island']
[u'downer', u'discuss', u'corrupt', u'claim', u'solomon']
[u'downer', u'rais', u'corrupt', u'claim', u'solomon']
[u'downer', u'warn', u'solomon', u'corrupt']
[u'downer', u'urg', u'solomon', u'corrupt']
[u'dozen', u'hurt', u'kathmandu', u'clash']
[u'drink', u'drive', u'blitz', u'result', u'frighten', u'polic']
[u'european', u'wasp']
[u'feder', u'nadal', u'cruis', u'mont', u'carlo', u'semi']
[u'duti', u'polic', u'offic', u'confront']
[u'flood', u'fear', u'grow', u'cyclon', u'monica', u'taunt', u'coast']
[u'forc', u'boost', u'gutsi', u'draw']
[u'forc', u'earn', u'thrill', u'draw', u'crusad']
[u'aid', u'name', u'iraqi']
[u'aid', u'name', u'iraq']
[u'brazil', u'footbal', u'coach', u'santana', u'die']
[u'french', u'champ', u'costa', u'quit']
[u'gerrard', u'vow', u'snub', u'real', u'deal']
[u'giteau', u'confirm', u'forc']
[u'giteau', u'pois', u'join', u'forc', u'record', u'deal', u'report']
[u'great', u'lake', u'minist', u'urg', u'sanction', u'rebel']
[u'hawk', u'outclass', u'blue']
[u'injur', u'shearer', u'career']
[u'italian', u'reject', u'final', u'elect', u'outcom']
[u'junk', u'food', u'caus', u'childhood', u'obes', u'studi']
[u'larrakia', u'peopl', u'appeal', u'darwin', u'nativ', u'titl']
[u'loss', u'iron', u'licenc', u'blow', u'cazali']
[u'charg', u'tweed', u'murder']
[u'face', u'court', u'chase']
[u'miss', u'trawler', u'capsiz', u'sunshin']
[u'question', u'hit', u'teenag']
[u'minist', u'begin', u'role', u'stanhop', u'reshuffl']
[u'monica', u'upgrad', u'categori']
[u'nepales', u'opposit', u'parti', u'reject', u'king', u'offer']
[u'nepales', u'opposit', u'promis', u'defi', u'fresh', u'curfew']
[u'nepal', u'king', u'return', u'power', u'peopl']
[u'kill', u'plung', u'bangladesh', u'river']
[u'million', u'miss', u'hart', u'estat', u'polic']
[u'reinstat', u'indonesia', u'ambassador']
[u'govt', u'asid', u'playground']
[u'wait', u'monica', u'cross', u'coast']
[u'price', u'hit', u'barrel']
[u'open', u'soldier', u'abcnew']
[u'opposit', u'parti', u'continu', u'nepal', u'protest']
[u'oshea', u'hop', u'continu', u'win', u'way', u'fooram']
[u'owen', u'name', u'newcastl', u'squad']
[u'palestinian', u'presid', u'block', u'hama', u'appoint']
[u'petrol', u'price', u'tip', u'soar']
[u'playground', u'equip', u'raze', u'boy']
[u'probe', u'launch', u'soldier', u'death', u'iraq']
[u'protest', u'resum', u'nepal', u'despit', u'king', u'offer']
[u'queen', u'celebr', u'birthday']
[u'risdon', u'lockdown', u'search']
[u'romania', u'break', u'danub', u'dike', u'save', u'villag']
[u'royal', u'famili', u'celebr', u'queen']
[u'confirm', u'price', u'tunnel', u'filter']
[u'program', u'monitor', u'veteran', u'health']
[u'seven', u'warrior', u'trounc', u'rabbitoh']
[u'shark', u'halt', u'cowboy', u'unbeaten']
[u'sheen', u'wife', u'get', u'restrain', u'order', u'death']
[u'sing', u'berlusconi']
[u'skaif', u'open', u'account', u'pukekoh']
[u'solomon', u'confid', u'despit', u'reject']
[u'solomon', u'riot', u'victim', u'evacu', u'china']
[u'state', u'parliament', u'debat', u'snowi', u'hydro']
[u'storm', u'prepar', u'joey', u'scenario']
[u'hous', u'high', u'start', u'slow']
[u'liber', u'compet', u'senat', u'vacanc']
[u'tiger', u'tame', u'lion', u'gabba']
[u'ferri', u'continu', u'serv', u'maria', u'island']
[u'union', u'offici', u'lose', u'right', u'enter', u'build', u'sit']
[u'upbeat', u'dog', u'prepar', u'face', u'cat']
[u'ambassador', u'delay', u'unconscion']
[u'continu', u'test', u'recal', u'contact', u'len']
[u'dollar', u'end', u'week', u'lower']
[u'urg', u'militari', u'sale', u'iran']
[u'viduka', u'struggl', u'boro', u'rotat']
[u'villawood', u'detaine', u'return', u'asbesto', u'remov']
[u'weather', u'hamper', u'search', u'miss', u'fisherman']
[u'webb', u'stay', u'touch', u'georgia']
[u'windi', u'player', u'shock', u'contract', u'deadlin']
[u'world', u'chief', u'say', u'ground', u'readi']
[u'rescu', u'burn', u'boat', u'rottnest', u'island']
[u'famili', u'member', u'drown', u'fish', u'comp']
[u'survey', u'begin']
[u'palestinian', u'author', u'block']
[u'appeal', u'court', u'confirm', u'prodi', u'italian', u'elect']
[u'applebi', u'lead', u'houston']
[u'look', u'parti', u'agreement', u'giteau']
[u'aussi', u'home', u'chittagong']
[u'aussi', u'play', u'off']
[u'australia', u'commit', u'troop', u'solomon']
[u'australia', u'send', u'troop', u'solomon']
[u'author', u'search', u'miss', u'teen', u'swimmer']
[u'balkan', u'battl', u'swell', u'river', u'relief', u'sight']
[u'benitez', u'prais', u'star', u'kewel']
[u'die', u'critic', u'injur', u'port', u'crash']
[u'bronco', u'classi', u'panther']
[u'bull', u'thrash', u'hapless', u'cat']
[u'bush', u'hail', u'iraqi', u'nomin']
[u'bush', u'prais', u'iraqi', u'govt']
[u'review', u'cruis', u'ship', u'health']
[u'canada', u'afghan']
[u'cathol', u'teacher', u'interim', u'rise']
[u'clark', u'doubt', u'pool', u'accid']
[u'closer']
[u'closer']
[u'corser', u'start', u'pole', u'valencia']
[u'cronulla', u'riot', u'backdrop', u'star', u'cross', u'lover']
[u'cyclon', u'monica', u'near', u'coast']
[u'cyclon', u'monica', u'pick', u'speed']
[u'darwin', u'alert', u'cyclon', u'monica']
[u'darwin', u'cyclon', u'watch', u'monica', u'approach']
[u'darwin', u'urg', u'prepar', u'cyclon', u'plan']
[u'daytim', u'curfew', u'forc', u'nepal']
[u'dead', u'soldier', u'releas']
[u'deceas', u'australian', u'soldier', u'releas']
[u'defenc', u'forc', u'releas', u'dead', u'soldier']
[u'demon', u'scrape', u'home', u'swan']
[u'eagl', u'unbeaten', u'record', u'intact']
[u'exhibit', u'honour', u'prolif', u'aust', u'photograph']
[u'fatah', u'gunmen', u'palestinian', u'ministri', u'report']
[u'fear', u'beazley', u'health', u'fail', u'deni']
[u'feder', u'set', u'dream', u'final', u'nadal']
[u'fernandez', u'castano', u'win', u'asian', u'open']
[u'forc', u'celebr', u'giteau', u'deal']
[u'forc', u'reveal', u'detail', u'giteau', u'deal']
[u'canadian', u'soldier', u'kill', u'afghanistan', u'report']
[u'gaza', u'secur', u'disput', u'trigger', u'intern', u'clash']
[u'georgiou', u'win', u'preselect', u'ballot']
[u'german', u'enlist', u'basil', u'fawlti', u'world', u'charm']
[u'cruis', u'babi', u'puzzl', u'isra']
[u'govt', u'rais', u'desalin', u'plant', u'question']
[u'govt', u'defend', u'fish', u'licenc', u'scheme']
[u'govt', u'fund', u'search', u'hmas', u'sydney']
[u'govt', u'hint', u'childcar', u'measur']
[u'govt', u'urg', u'home']
[u'govt', u'unveil', u'plan', u'reviv', u'natur', u'reserv']
[u'guyana', u'polic', u'probe', u'polit', u'motiv', u'minist']
[u'hama', u'reaction', u'proof', u'crusad', u'lade']
[u'health', u'confer', u'focus', u'indigen', u'issu']
[u'health', u'servic', u'reduc', u'pressur', u'hospit']
[u'holist', u'approach', u'need', u'solomon', u'woe']
[u'howard', u'hail', u'appoint', u'iraq']
[u'indonesia', u'suharto', u'look', u'healthi', u'wed', u'report']
[u'iran', u'play', u'russian', u'nuclear', u'deal']
[u'iraqi', u'shiit', u'leader', u'win', u'back']
[u'jawad', u'maliki', u'head', u'iraq', u'post', u'govt']
[u'kangaroo', u'cull', u'perth', u'reserv']
[u'kewel', u'shin', u'liverpool', u'foil', u'chelsea', u'doubl']
[u'klitschko', u'win', u'titl']
[u'lib', u'decid', u'georgiou', u'preselect']
[u'lloyd', u'shatter', u'hamstr', u'injuri']
[u'makaay', u'seedorf', u'leav', u'dutch', u'squad']
[u'drown', u'rescu', u'children']
[u'drown', u'save', u'children', u'gold', u'coast']
[u'hospit', u'melbourn', u'bash']
[u'man', u'score', u'impress']
[u'milan', u'juve', u'lead', u'point']
[u'aust', u'troop', u'send', u'solomon']
[u'investig', u'honiara', u'riot']
[u'nasa', u'satellit', u'launch', u'postpon', u'time']
[u'nepal', u'announc', u'curfew']
[u'nepales', u'protest', u'repeat', u'call', u'republ']
[u'nepal', u'protestor', u'deter', u'polic']
[u'nhulunbuy', u'resid', u'shelter']
[u'resid', u'shelter', u'cyclon', u'siren', u'sound']
[u'town', u'spar', u'cyclon', u'monica', u'lash', u'coastlin']
[u'obes', u'find', u'prompt', u'call']
[u'omalley', u'content', u'asian', u'open']
[u'opposit', u'question', u'cabooltur', u'hospit', u'deal']
[u'opposit', u'question', u'public', u'servic', u'plan']
[u'opposit', u'slam', u'privatis', u'garden', u'bookshop']
[u'pakistan', u'strike', u'quak', u'recoveri', u'deal']
[u'patienc', u'requir', u'papuan', u'visa', u'say', u'hawk']
[u'pienaar', u'spark', u'shark', u'victori', u'blue']
[u'polic', u'hold', u'littl', u'hope', u'miss', u'fisherman']
[u'polic', u'riot', u'gear', u'stop', u'wild', u'parti']
[u'poll', u'open', u'hungari', u'general', u'elect']
[u'potato', u'bomb']
[u'protea', u'open', u'gibb']
[u'hen', u'return', u'rail', u'celebr']
[u'risdon', u'prison', u'lockdown', u'end']
[u'unveil', u'drink', u'spike', u'law']
[u'schumach', u'secur', u'imola', u'pole']
[u'score', u'wound', u'kathmandu', u'unrest']
[u'search', u'miss', u'fisherman', u'resum']
[u'search', u'miss', u'swimmer', u'scale']
[u'shop', u'centr', u'work', u'safeti', u'check']
[u'siren', u'sound', u'cyclon', u'near', u'coast']
[u'kill', u'mortar', u'attack', u'iraq', u'defenc']
[u'skaif', u'equal', u'brock', u'zealand']
[u'soft', u'drink', u'school']
[u'soldier', u'bodi', u'home', u'iraq']
[u'soldier', u'widow', u'consult', u'inquiri']
[u'solomon', u'open']
[u'solomon', u'opposit', u'deni', u'conspiraci', u'claim']
[u'solomon', u'polic', u'arrest', u'opposit']
[u'solomon', u'polic', u'probe', u'politician', u'riot', u'role']
[u'sorenstam', u'seiz', u'lpga', u'lead']
[u'speed', u'boat', u'racer', u'hospit', u'accid']
[u'speed', u'driver', u'appeal', u'succeed']
[u'famili', u'member', u'tasmanian', u'boat']
[u'toll', u'pledg', u'mend', u'pacif', u'nation']
[u'enlist', u'cane', u'toad', u'fight']
[u'ukrain', u'supermarket', u'bomb', u'wind']
[u'govt', u'impos', u'school', u'soft', u'drink']
[u'villarr', u'rest', u'star', u'crash']
[u'wallabi', u'join', u'fight', u'super', u'bug']
[u'want', u'solomon', u'escap', u'arrest']
[u'weaken', u'stun', u'germani', u'holder', u'russia', u'level']
[u'wenger', u'furious', u'spur', u'stay', u'ahead', u'gunner']
[u'widow', u'play', u'soldier', u'death', u'inquiri']
[u'wit', u'seek', u'serious', u'injur']
[u'urg', u'marin', u'park', u'fund', u'boost']
[u'zimbabw', u'legalis', u'witchcraft']
[u'aborigin', u'group', u'angri', u'domain', u'decis']
[u'aborigin', u'health', u'group', u'say', u'prevent', u'program']
[u'agricultur', u'worker', u'number', u'declin']
[u'air', u'water', u'price', u'worri']
[u'anzac', u'servic', u'honour', u'kovco']
[u'applebi', u'blitz', u'houston', u'field']
[u'archaeologist', u'search', u'gunner', u'grave']
[u'assault', u'teen', u'shock', u'polic']
[u'attack', u'highlight', u'iraqi', u'challeng']
[u'australia', u'solomon', u'archbishop', u'say']
[u'aust', u'secur', u'forc', u'arrest', u'solomon']
[u'author', u'clash', u'nepales', u'protest']
[u'author', u'mull', u'western', u'memori', u'canberra']
[u'author', u'probe', u'workplac', u'death']
[u'author', u'attack', u'water', u'plan', u'support']
[u'document', u'suppress', u'rule', u'loom']
[u'inquiri', u'erod', u'govt', u'support']
[u'bail', u'condit', u'fail', u'deter', u'pine', u'protest']
[u'bayliss', u'extend', u'superbik', u'lead']
[u'beazley', u'scuttl', u'ill', u'rumour']
[u'beazley', u'shrug', u'poll', u'result']
[u'beckham', u'weak', u'captain', u'england', u'robson']
[u'shortag', u'frustrat', u'hospit', u'staff']
[u'thing', u'predict', u'young', u'longreach', u'model']
[u'gate', u'receiv', u'vietnam']
[u'lade', u'tape', u'inspir', u'defiant', u'downer']
[u'blaze', u'claim', u'lightn', u'ridg', u'hotel']
[u'blaze', u'doesnt', u'stop', u'hotel', u'trade']
[u'boat', u'sink', u'collis']
[u'bodi', u'australian', u'soldier', u'head', u'home']
[u'bodi', u'aust', u'soldier', u'flight', u'home']
[u'hospit']
[u'brumbi', u'charg', u'home', u'straight', u'loom']
[u'budget', u'think', u'road']
[u'burton', u'charg', u'strike']
[u'china', u'warn', u'citizen', u'avoid', u'solomon']
[u'clone', u'celebr', u'birthday', u'south', u'korea']
[u'closer']
[u'closer']
[u'closer']
[u'cole', u'gun', u'buri', u'miseri', u'gasp', u'miss']
[u'collin', u'labor', u'state', u'secretari']
[u'convict', u'arm', u'robber', u'face', u'deport']
[u'cooler', u'weather', u'aid', u'fuel', u'reduct', u'burn']
[u'coron', u'ask', u'investig', u'gold', u'coast']
[u'council', u'push', u'link', u'road', u'plan']
[u'council', u'say', u'flood', u'doesnt', u'mean', u'drought']
[u'council', u'seek', u'hospit', u'plan', u'detail']
[u'council', u'seek', u'supermarket', u'develop']
[u'council', u'look', u'state', u'financ', u'pipelin']
[u'council', u'urg', u'fight', u'pedestrian', u'railway']
[u'court', u'hear', u'dairi', u'debat']
[u'critic', u'witch', u'hunt', u'bushfir', u'offic', u'say']
[u'cyclon', u'larri', u'insur', u'cost', u'higher', u'expect']
[u'cyclon', u'warn', u'sound', u'kakadu']
[u'darwin', u'await', u'cyclon', u'monica', u'arriv']
[u'darwin', u'brace', u'cyclon', u'monica']
[u'darwin', u'brace', u'intens', u'cyclon', u'monica']
[u'darwin', u'cyclon', u'alert']
[u'darwin', u'prepar', u'cyclon', u'monica']
[u'deceas', u'soldier', u'bodi', u'arriv', u'australia']
[u'downer', u'say', u'reduc', u'troop', u'number', u'iraq']
[u'detail', u'embezzl', u'alleg']
[u'pursu', u'clerk', u'steal', u'fund']
[u'driver', u'die', u'south', u'east', u'truck', u'crash']
[u'die', u'woman', u'lose', u'medic', u'neglig', u'case']
[u'effort', u'counter', u'human', u'traffic', u'ineffici']
[u'equip', u'woe', u'blackout']
[u'ask', u'brand', u'ltte', u'terrorist', u'group']
[u'farmer', u'expect', u'concess']
[u'fatal', u'tree', u'fell', u'mishap', u'investig']
[u'fear', u'cyclon', u'monica', u'australia', u'sever']
[u'fear', u'fresh', u'violenc', u'solomon', u'island']
[u'fear', u'wild', u'river', u'law', u'hamper', u'diamond']
[u'dead', u'miss', u'afghan', u'plane', u'crash']
[u'forecast', u'see', u'rat', u'hold']
[u'resid', u'urg']
[u'soldier', u'protest', u'turn', u'violent', u'dili']
[u'frydenberg', u'blame', u'faction', u'loss']
[u'fuel', u'committe', u'stand', u'feder', u'elect', u'candid']
[u'fund', u'visitor', u'centr', u'upgrad']
[u'fund', u'help', u'lobster', u'industri', u'break']
[u'gday', u'week', u'focus', u'mateship']
[u'gene', u'discoveri', u'alter', u'cancer', u'treatment']
[u'georgious', u'vindic', u'refuge', u'stanc']
[u'gerrard', u'rooney', u'clinch', u'award']
[u'gile', u'rule', u'lankan', u'seri']
[u'govt', u'accus', u'hide', u'tunnel', u'filter', u'cost']
[u'govt', u'releas', u'health', u'bureaucrat', u'deal']
[u'govt', u'support', u'inquiri']
[u'govt', u'urg', u'help', u'eas', u'water', u'crisi']
[u'group', u'stage', u'vigil', u'anzac']
[u'hama', u'fatah', u'tension', u'flare', u'clash']
[u'hama', u'stay', u'clear', u'lade', u'comment']
[u'har', u'club', u'seek', u'rezon', u'answer']
[u'hodg', u'bennett']
[u'holiday', u'teenag', u'shoot', u'dead']
[u'hope', u'remain', u'grain', u'silo']
[u'howard', u'deni', u'iraq', u'disast']
[u'howard', u'downplay', u'talk', u'plan', u'downscal']
[u'hungarian', u'socialist', u'elector', u'histori']
[u'iemma', u'open', u'miner', u'sand', u'project']
[u'indigen', u'chair', u'call', u'remov', u'mistreat']
[u'injur', u'neitz', u'sidelin', u'match']
[u'inmat', u'support', u'rais', u'health', u'care', u'concern']
[u'iron', u'project', u'get', u'environment', u'approv']
[u'irrig', u'confid', u'access', u'water']
[u'irukandji', u'sting', u'rise']
[u'island', u'evacu', u'monica', u'near', u'land']
[u'joint', u'market', u'scheme', u'prove', u'posit', u'stud']
[u'judg', u'reserv', u'decis', u'document']
[u'lang', u'concern', u'gower', u'health']
[u'late', u'payment', u'frustrat', u'small', u'busi']
[u'lethal', u'shrug', u'push', u'incid']
[u'long', u'serv', u'cathol', u'priest', u'die']
[u'machineri', u'hotel', u'destroy', u'fire']
[u'magpi', u'good', u'shape', u'head', u'anzac', u'clash']
[u'accus', u'assault', u'face', u'court']
[u'jail', u'brother', u'murder']
[u'jail', u'kill', u'grandfath']
[u'jail', u'murder', u'mindari', u'woman']
[u'plead', u'guilti', u'girl', u'abduct', u'sexual']
[u'mayor', u'worri', u'jail', u'decis', u'forc', u'council']
[u'mcguigan', u'reject', u'analyst', u'price']
[u'meet', u'discuss', u'order', u'tree', u'remov']
[u'meet', u'focus', u'mari', u'river', u'futur']
[u'melbourn', u'jail', u'murder', u'girlfriend']
[u'deal', u'boost', u'indigen', u'job']
[u'minichiello', u'rule', u'anzac', u'clash']
[u'minist', u'keen', u'summit', u'canva', u'wine', u'concern']
[u'minist', u'urg', u'green', u'light', u'lake', u'cathi', u'school']
[u'morawa', u'get', u'accommod', u'fund']
[u'morrison', u'lose', u'licenc', u'drink', u'drive', u'offenc']
[u'mountain', u'grow', u'larger', u'help', u'eros']
[u'moy', u'begin', u'england', u'meet']
[u'arrest', u'halt', u'solomon', u'parliament']
[u'multipl', u'bomb', u'kill', u'baghdad']
[u'mundubbera', u'face', u'tougher', u'water', u'ban']
[u'nation', u'soft', u'drink', u'school', u'seek']
[u'nation', u'sport', u'museum', u'home']
[u'nepales', u'opposit', u'continu', u'protest']
[u'nepal', u'impos', u'curfew']
[u'sale', u'fall']
[u'children', u'court', u'hear', u'case']
[u'resid', u'wait', u'cyclon', u'monica', u'onslaught']
[u'polic', u'consid', u'appeal', u'clergymen']
[u'malle', u'plant', u'develop', u'buoy', u'success']
[u'omodei', u'flag', u'water', u'propos', u'concern']
[u'order', u'chang', u'extinguish', u'domain']
[u'osama', u'record', u'genuin', u'offici']
[u'outback', u'bike', u'race', u'benefit', u'desert', u'town']
[u'pair', u'face', u'court', u'accus', u'home', u'invas']
[u'pair', u'court', u'launceston', u'bash']
[u'pair', u'court', u'theft']
[u'pedestrian', u'safeti', u'council', u'agenda']
[u'perri', u'face', u'match']
[u'defend', u'govt', u'petrol', u'excis']
[u'dismiss', u'latest', u'opinion', u'poll']
[u'say', u'lade', u'tape', u'highlight', u'import']
[u'polic', u'ram', u'arrest', u'break']
[u'polic', u'chief', u'fail', u'boulder', u'polic', u'post', u'push']
[u'polic', u'deni', u'involv', u'alleg', u'tunnel', u'drama']
[u'polic', u'fear', u'worst', u'miss', u'fisherman']
[u'polic', u'probe', u'crash', u'doubl', u'fatal']
[u'polic', u'probe', u'castlemain', u'theft']
[u'polic', u'driver', u'get', u'messag']
[u'port', u'hold', u'victori', u'saint']
[u'prawn', u'fishermen', u'worri', u'fuel', u'run']
[u'princip', u'want', u'chang', u'teacher', u'offenc', u'law']
[u'produc', u'warn', u'shortag']
[u'product', u'cost', u'figur', u'rise', u'slight']
[u'public', u'ask', u'help', u'centr', u'thiev']
[u'push', u'reviv', u'soldier', u'memori', u'tasmania']
[u'coal', u'industri', u'dig', u'deep', u'draglin']
[u'govt', u'veto', u'sunshin', u'coast', u'golf', u'cours']
[u'cross', u'fear', u'offshor', u'blood', u'process']
[u'region', u'victoria', u'feel', u'high', u'fuel', u'price', u'impact']
[u'resid', u'feel', u'snub', u'highway', u'rout', u'assess']
[u'resourc', u'bump', u'share', u'market', u'higher']
[u'plan', u'fuel', u'surcharg', u'rise']
[u'riot', u'polic', u'dili', u'watch', u'protest']
[u'river', u'oyster', u'harvest', u'closur', u'surpris', u'food']
[u'rover', u'west', u'strong', u'oppon']
[u'urg', u'earli', u'attend', u'dawn', u'servic']
[u'saddam', u'signatur', u'incrimin', u'document', u'court']
[u'search', u'miss', u'call']
[u'senat', u'highlight', u'magistr', u'court', u'problem']
[u'nepal', u'rebel', u'raid', u'town']
[u'sober', u'sunday', u'seek', u'port', u'augusta']
[u'soldier', u'bodi', u'rout', u'australia']
[u'solomon', u'solomon', u'island', u'corrupt', u'focus']
[u'solomon', u'parliament', u'gather', u'guard']
[u'solomon', u'expect', u'arrest']
[u'solon', u'compo', u'case', u'month']
[u'speed', u'camera', u'sit', u'publicis']
[u'strong', u'number', u'expect', u'anzac', u'dawn', u'servic']
[u'stuart', u'back', u'dragon', u'pair', u'hodg']
[u'super', u'monitor', u'urg']
[u'survey', u'reveal', u'grow', u'weight', u'problem']
[u'swan', u'press', u'panic', u'button']
[u'scallop', u'fisher', u'rais', u'concern']
[u'teen', u'court', u'stab']
[u'terror', u'accus', u'plan', u'bomb', u'attack']
[u'terror', u'accus', u'plan', u'bomb', u'attack', u'court', u'tell']
[u'terror', u'manual', u'alleg', u'accus']
[u'thousand', u'flock', u'rail', u'festiv']
[u'tiger', u'meet', u'discuss', u'brown', u'rehab']
[u'tiger', u'continu', u'rest', u'brown']
[u'toll', u'urg', u'guarante', u'worker', u'right']
[u'hand', u'luggag', u'safeti', u'risk', u'casa', u'say']
[u'toowoomba', u'offer', u'water', u'poll', u'cooper']
[u'tradit', u'owner', u'miner', u'sign', u'kimberley', u'deal']
[u'tredrea', u'open', u'season', u'saint']
[u'trial', u'date', u'accus', u'kill', u'chariti']
[u'tribut', u'flow', u'brisban', u'mayor']
[u'tripl', u'drown', u'devast', u'tasman', u'peninsula']
[u'highway', u'truck', u'crash']
[u'ullrich', u'start', u'season', u'tour', u'romandi']
[u'unearth', u'mortar', u'threat']
[u'union', u'claim', u'ship', u'crew', u'exploit']
[u'union', u'fear', u'mitsubishi', u'worker', u'job']
[u'union', u'say', u'fund', u'boost', u'highway']
[u'upper', u'hous', u'debat', u'seek', u'snowi', u'sale']
[u'vail', u'see', u'room', u'road', u'spend']
[u'vanston', u'deni', u'asylum', u'seeker', u'plan', u'breach']
[u'vet', u'threaten', u'dawn', u'servic', u'pension', u'protest']
[u'victorian', u'name', u'australia', u'best', u'barista']
[u'villa', u'deni', u'barca', u'titl', u'shoot', u'trick']
[u'water', u'author', u'say', u'robinval', u'fluorid']
[u'webb', u'finish', u'second', u'georgia']
[u'white', u'zimbabwean', u'abl', u'appli', u'farm']
[u'woman', u'accus', u'assault', u'fellow', u'worker']
[u'wwii', u'bomb', u'harvest', u'potato', u'farm']
[u'lone', u'pine', u'offspr', u'plant', u'melbourn']
[u'zimbabw', u'confid', u'ahead', u'windi', u'tour']
[u'charg', u'plot', u'overthrow', u'arroyo']
[u'abba', u'tell', u'hama', u'face', u'realiti']
[u'anti', u'fluorid', u'campaign', u'warn', u'resid', u'cancer']
[u'anzac', u'ceremoni', u'hold', u'indigen', u'soldier']
[u'anzac', u'crowd', u'pleas', u'veteran']
[u'anzac', u'mark', u'region']
[u'anzac', u'rememb', u'globe']
[u'anzac', u'servic', u'draw', u'thousand']
[u'anzac', u'turnout', u'pleas', u'veteran']
[u'anzac', u'midopen']
[u'anzac', u'servic', u'hear', u'peac', u'valu']
[u'apathi', u'blame', u'committe', u'demis']
[u'artist', u'partnership', u'give', u'festiv', u'boost']
[u'australia', u'honour', u'dead']
[u'australian', u'fashion', u'week', u'sydney']
[u'australian', u'fashion', u'week', u'launch']
[u'australian', u'stabl', u'condit', u'egypt', u'blast']
[u'australian', u'soldier', u'iraq', u'lament', u'death', u'jacob']
[u'australian', u'rememb', u'anzac', u'veteran']
[u'australian', u'stori', u'peter', u'andrew', u'share']
[u'australian', u'teacher', u'jail', u'abus', u'cambodian']
[u'australia', u'rememb', u'fall', u'soldier']
[u'barca', u'look', u'aveng', u'final', u'defeat']
[u'basebal', u'attack', u'put', u'teen', u'hospit']
[u'black', u'hole', u'fuel', u'effici', u'engin']
[u'blast', u'kill', u'egypt']
[u'brazilian', u'cafu', u'extend', u'milan', u'contract']
[u'break', u'hill', u'resid', u'mark', u'anzac']
[u'burnout', u'cost', u'australia', u'ash', u'gilli']
[u'burton', u'carr', u'elect', u'contest', u'charg']
[u'cameraman', u'describ', u'cyclon', u'damag']
[u'campbel', u'stymi', u'second', u'wind', u'farm']
[u'canadian', u'farmer', u'drive', u'home', u'incom', u'woe']
[u'canberra', u'anzac', u'crowd', u'remind', u'mateship']
[u'caracella', u'anzac', u'clash']
[u'bomb', u'kill', u'baghdad', u'sadr', u'citi']
[u'find', u'fifa', u'step', u'anti', u'dope', u'code']
[u'cazali', u'unlik', u'tenement', u'expert']
[u'chariti', u'solicit', u'sharehold', u'dividend']
[u'children', u'honour', u'servicemen', u'legaci']
[u'chinchilla', u'council', u'close', u'saleyard']
[u'citrus', u'giant', u'back', u'mate', u'refus', u'govt', u'access']
[u'closer']
[u'closer']
[u'coast', u'weekend', u'plan', u'dumb', u'decis']
[u'collingwood', u'prevail', u'anzac', u'clash']
[u'commonwealth', u'game', u'athlet', u'visa']
[u'concern', u'sniffer', u'dog', u'damag', u'club', u'busi']
[u'oppos', u'water', u'alloc']
[u'council', u'anger', u'public', u'stunt']
[u'council', u'back', u'saleyard', u'revamp']
[u'council', u'reform', u'time']
[u'council', u'vote', u'batteri', u'recycl', u'plant']
[u'counsellor', u'prepar', u'port', u'arthur', u'anniversari']
[u'fatal', u'crash']
[u'crowd', u'dawn', u'servic']
[u'crowd', u'cheer', u'anzac', u'marcher']
[u'crowd', u'linger', u'memori']
[u'crowd', u'mark', u'anzac', u'coast']
[u'crowd', u'turn', u'anzac', u'ceremoni']
[u'custom', u'gulf', u'illeg', u'boat', u'sight']
[u'cyclon', u'appeal', u'fund', u'readi', u'distribut']
[u'cyclon', u'monica', u'continu', u'weaken']
[u'cyclon', u'monica', u'downgrad', u'categori']
[u'cyclon', u'monica', u'hit', u'arnhem', u'land']
[u'darwin', u'avoid', u'predict', u'onslaught']
[u'darwin', u'spar', u'monica', u'weaken']
[u'vinci', u'code', u'church', u'anger', u'clergi']
[u'dawn', u'servic', u'attract', u'western', u'crowd']
[u'dawn', u'servic', u'mark', u'anzac']
[u'death', u'prompt', u'boat', u'safeti', u'chang']
[u'debnam', u'call', u'expand', u'cadet', u'program']
[u'debnam', u'secret', u'sustain', u'farm', u'foray']
[u'doctor', u'welcom', u'neglig', u'appeal', u'rule']
[u'downer', u'surpris', u'georgiou']
[u'downer', u'surpris', u'poll', u'result']
[u'downer', u'urg', u'patienc', u'indonesia']
[u'dragon', u'strong', u'dog', u'rooster']
[u'driver', u'escap', u'tanker', u'explos']
[u'east', u'timor', u'join', u'anzac', u'servic']
[u'egypt', u'blast', u'toll', u'revis']
[u'egyptian', u'resort', u'town', u'explos']
[u'engin', u'troubl', u'spark', u'emerg', u'land']
[u'fall', u'price', u'hit', u'energi', u'stock']
[u'farmer', u'hope', u'ahead', u'winter', u'plant']
[u'fear', u'nurs', u'restructur', u'prompt', u'downgrad']
[u'firefight', u'month', u'battl', u'blaze']
[u'fishermen', u'spot', u'illeg', u'boat', u'gulf']
[u'kill', u'lanka', u'armi', u'chief', u'wound', u'bomb']
[u'fowler', u'overpass', u'fund', u'alloc']
[u'fuel', u'suppli', u'rout', u'gulf', u'fish', u'industri']
[u'fulham', u'surviv', u'upset', u'wigan', u'euro']
[u'fuzzi', u'wuzzi', u'medal']
[u'fuzzi', u'wuzzi', u'angel', u'march', u'helensburgh']
[u'galleri', u'showcas']
[u'gippsland', u'communiti', u'honour', u'deceas', u'aust', u'soldier']
[u'goulburn', u'island', u'resid', u'head', u'home']
[u'govt', u'add', u'australian', u'memori', u'nation']
[u'govt', u'spend', u'intern']
[u'greek', u'protest', u'gas', u'rice', u'visit']
[u'group', u'watch', u'mari', u'river']
[u'heritag', u'list', u'protect', u'memori']
[u'highway', u'fund', u'start']
[u'home', u'build', u'cost', u'fall', u'uneven']
[u'hope', u'microbicid', u'breakthrough']
[u'hop', u'diamond', u'shine']
[u'hunter', u'observ', u'anzac']
[u'indecis', u'blame', u'mobil']
[u'indigen', u'veteran', u'wife', u'attend', u'anzac']
[u'injur', u'australian', u'move', u'cairo', u'treatment']
[u'iran', u'presid', u'say', u'sanction', u'unlik']
[u'iran', u'suspend', u'iaea', u'tie', u'sanction', u'impos']
[u'iraq', u'base', u'troop', u'rememb', u'fall', u'comrad']
[u'iraq', u'cabinet', u'readi', u'week', u'design']
[u'island', u'communiti', u'remain', u'intact', u'cyclon']
[u'klinsmann', u'dous', u'bayern', u'demand', u'scholl']
[u'komodo', u'dragon', u'birth', u'leav', u'expert', u'baffl']
[u'kovco', u'rememb', u'anzac', u'servic']
[u'gather', u'memori', u'site']
[u'life', u'imit', u'thief', u'return', u'babi']
[u'magician', u'spend', u'week', u'water']
[u'malaysian', u'jail', u'murder', u'aust']
[u'arrest', u'rundl', u'mall', u'stab']
[u'charg', u'fatal', u'sydney', u'shoot']
[u'charg', u'lake', u'macquari', u'sieg']
[u'mcgauran', u'deni', u'break', u'promis', u'fruit', u'code']
[u'melbourn', u'dawn', u'servic', u'draw', u'thousand']
[u'messag', u'hope', u'peac', u'gambier', u'dawn', u'servic']
[u'minist', u'back', u'depart', u'polic', u'raid']
[u'monica', u'keep', u'travel']
[u'mountain', u'hors', u'effort', u'honour']
[u'moussaoui', u'juri', u'begin', u'deliber']
[u'push', u'port', u'piri', u'biofuel', u'plant']
[u'murder', u'accus', u'releas', u'blunder']
[u'nation', u'weather']
[u'nation', u'rememb', u'anzac', u'veteran']
[u'nativ', u'titl', u'rule', u'cheer', u'tradit', u'owner']
[u'nepales', u'king', u'reinstat', u'parliament']
[u'nepales', u'king', u'restor', u'parliament']
[u'nepali', u'celebr', u'peopl', u'victori']
[u'nepal', u'king', u'oppon', u'split', u'offer', u'open']
[u'england', u'crowd', u'anzac']
[u'group', u'vow', u'fight', u'canberra', u'jail']
[u'law', u'crack', u'drink', u'spike']
[u'techniqu', u'reduc', u'fish', u'death']
[u'nois', u'deal', u'review', u'builder']
[u'premier', u'pay', u'tribut', u'troop', u'oversea']
[u'public', u'glimps', u'train']
[u'task', u'forc', u'analys', u'road', u'death']
[u'mark', u'anzac', u'despit', u'cyclon']
[u'govt', u'bid', u'medal']
[u'offic', u'tell', u'hop', u'smaller', u'crowd']
[u'olymp', u'stadium', u'grass', u'replac']
[u'olymp', u'stadium', u'undergo', u'inspect']
[u'opposit', u'seek', u'chang', u'fong', u'contract']
[u'opposit', u'support', u'push', u'crime', u'squad']
[u'pardew', u'look', u'hammer', u'home', u'credenti']
[u'hospit', u'wall', u'crumbl', u'away']
[u'recommend', u'offer', u'hope', u'diabet']
[u'physic', u'secret', u'weapon', u'tenni']
[u'deni', u'contempt', u'claim']
[u'contempt', u'food', u'inquiri']
[u'polic', u'band', u'lead', u'anzac', u'parad']
[u'port', u'come', u'cost']
[u'power', u'rest', u'laurel']
[u'govt', u'predict', u'rock', u'boom']
[u'rain', u'cancel', u'perth', u'anzac', u'servic']
[u'rain', u'fail', u'deter', u'anzac', u'crowd']
[u'record', u'crowd', u'rememb', u'anzac']
[u'remot', u'communiti', u'bear', u'cyclon', u'wrath', u'danger']
[u'research', u'look', u'plant', u'sourc', u'omega']
[u'robert', u'newspap', u'letter']
[u'roger', u'will', u'summaris', u'port', u'kilda']
[u'romeo', u'juliet', u'product', u'take', u'australian']
[u'back', u'call', u'award', u'medal', u'fuzzi', u'wuzzi']
[u'rspca', u'back', u'japanes', u'cattl', u'export']
[u'rutherglen', u'bakeri', u'burgl']
[u'saddam', u'trial', u'adjourn']
[u'salt', u'harvest', u'combat', u'murray', u'darl', u'salin']
[u'schwarzer', u'world']
[u'search', u'end', u'plane', u'land', u'safe']
[u'serbia', u'charg', u'policemen', u'kosovo', u'kill']
[u'korea', u'say', u'abandon', u'disput', u'isl']
[u'sleep', u'problem', u'impair', u'child', u'develop']
[u'soldier', u'death', u'add', u'weight', u'anzac', u'servic']
[u'solomon', u'base', u'troop', u'mark', u'anzac']
[u'solomon', u'opposit', u'boycott', u'parliament', u'vote']
[u'solomon', u'parliament', u'remain', u'heavili', u'guard']
[u'solomon', u'polic', u'defend', u'arrest']
[u'solomon', u'troop', u'attend', u'anzac', u'servic']
[u'space', u'travel', u'dilemma', u'muslim', u'astronaut']
[u'stab', u'victim', u'thank', u'stranger', u'help']
[u'state', u'fund', u'help', u'beautifi', u'damag']
[u'state', u'govt', u'appoint', u'irrig', u'manag']
[u'state', u'govt', u'warn', u'dubbo', u'council', u'pool']
[u'stuart', u'expect', u'dragon', u'breath']
[u'sudan', u'reject', u'laden', u'jihad']
[u'survey', u'deliv', u'bouquet', u'mansfield', u'council']
[u'survey', u'pinpoint', u'prioriti', u'pest', u'locat']
[u'swan', u'membership', u'soar', u'despit', u'poor', u'start']
[u'sweep', u'uncov', u'iraqi', u'prison', u'abus']
[u'anzac', u'servic', u'focus', u'peac']
[u'thousand', u'commemor', u'anzac']
[u'thousand', u'flee', u'romanian', u'dike', u'burst']
[u'thousand', u'anzac', u'respect', u'sydney']
[u'thousand', u'appreci', u'adelaid', u'anzac', u'march']
[u'timber', u'plantat', u'break', u'fight', u'heat']
[u'toowoomba', u'resid', u'honour', u'anzac']
[u'treat', u'princ', u'harri', u'like', u'ordinari', u'soldier', u'defenc']
[u'trucki', u'promis', u'fuel', u'price', u'protest']
[u'australian', u'hurt', u'egypt', u'blast']
[u'australian', u'injur', u'egypt', u'bomb', u'attack']
[u'extend', u'east', u'timor', u'stay']
[u'veteran', u'appreci', u'young', u'anzac']
[u'veteran', u'hop', u'anzac', u'continu']
[u'veteran', u'plan', u'anzac', u'protest']
[u'veteran', u'welcom', u'young', u'anzac', u'celebr']
[u'veteran', u'urg', u'east', u'diplomaci']
[u'govern', u'ban', u'sale', u'soft', u'drink', u'school']
[u'wakelin', u'charg', u'strike']
[u'weaker', u'monica', u'spare', u'darwin']
[u'wenger', u'back', u'campbel', u'reign', u'spain']
[u'western', u'focus', u'anzac', u'ceremoni']
[u'wine', u'grape', u'price', u'set', u'heat']
[u'world', u'leader', u'condemn', u'dead', u'egypt', u'bomb']
[u'abetz', u'hint', u'illeg', u'fish', u'fight', u'fund']
[u'break', u'rat', u'buck', u'nation', u'trend']
[u'adelaid', u'motorist', u'warn', u'price', u'hike']
[u'alinta', u'merg', u'energi', u'asset']
[u'alia', u'boss', u'tell', u'meet', u'austrad', u'rep']
[u'anxieti', u'patient', u'trial', u'onlin', u'treatment']
[u'anzac', u'commemor', u'draw', u'record', u'crowd']
[u'anzac', u'observ', u'increas', u'popular']
[u'april', u'rainfal', u'set', u'darwin', u'record']
[u'make', u'gasnier', u'formal', u'offer']
[u'offer', u'gasnier', u'formal', u'contract']
[u'aussi', u'debut', u'novel', u'earn', u'orang', u'prize', u'nomin']
[u'aussi', u'score', u'comfort', u'dhaka']
[u'aust', u'effort', u'focus', u'indonesia', u'philippin']
[u'australian', u'blame', u'solomon', u'riot']
[u'australia', u'warn', u'pacif', u'polit']
[u'aust', u'help', u'improv', u'vietnames', u'industri']
[u'bank', u'commit', u'loan', u'incom', u'earner']
[u'barcelona', u'prepar', u'weather', u'milan', u'storm']
[u'batteri', u'recycl', u'see', u'health', u'risk']
[u'crowd', u'gather', u'goldfield', u'anzac', u'dawn', u'servic']
[u'blair', u'deputi', u'admit', u'affair']
[u'booz', u'locat', u'servic', u'worri', u'polic']
[u'break', u'hill', u'citi', u'council', u'warn', u'resolv', u'conflict']
[u'bulldog', u'expect', u'tough', u'challeng', u'crow']
[u'burton', u'ban', u'match']
[u'bush', u'announc', u'petrol', u'price', u'inquiri']
[u'busi', u'group', u'want', u'joint', u'respons', u'town']
[u'cabinet', u'approv', u'smart', u'card']
[u'cabinet', u'reignit', u'smart', u'card', u'debat']
[u'camera', u'search', u'miner']
[u'camp', u'group', u'target', u'illeg', u'site', u'provid']
[u'aim', u'encourag', u'miner']
[u'offic', u'question', u'bushfir', u'polici']
[u'chernobyl', u'impact', u'felt', u'year']
[u'chernobyl', u'rememb', u'worst', u'nuclear', u'disast']
[u'chief', u'minist', u'inspect', u'arnhem', u'land', u'cyclon', u'damag']
[u'closer', u'penni']
[u'commonwealth', u'game', u'athlet', u'seek', u'asylum']
[u'concern', u'express', u'develop', u'aborigin']
[u'concern', u'brolga', u'popul', u'wind', u'farm']
[u'concern', u'futur', u'illawarra', u'tech', u'colleg']
[u'confer', u'studi', u'coral', u'spawn', u'effect']
[u'council', u'drop', u'viva', u'gong', u'festiv']
[u'council', u'take', u'action', u'anti', u'howard', u'graffiti']
[u'court', u'oppos', u'chicken', u'meat', u'produc', u'joint']
[u'court', u'uphold', u'bali', u'ringlead', u'death', u'sentenc']
[u'trigger', u'rate', u'specul']
[u'crowd', u'expect', u'age', u'care', u'home', u'public', u'meet']
[u'crowd', u'welcom', u'resign', u'solomon', u'island']
[u'custom', u'destroy', u'illeg', u'boat']
[u'custom', u'seiz', u'illeg', u'fish', u'boat']
[u'cyclon', u'bring', u'ghost', u'net', u'surfac']
[u'dandenong', u'hospit', u'revamp', u'reveal']
[u'danger', u'condit', u'hamper', u'rescu']
[u'date', u'lleyton', u'court', u'case']
[u'date', u'tugan', u'bypass', u'legal', u'challeng']
[u'debri', u'hamper', u'rescu', u'effort']
[u'dept', u'plan', u'ensur', u'drink', u'water', u'protect']
[u'dont', u'play', u'nice', u'waugh', u'tell', u'aussi']
[u'downer', u'play', u'role', u'kooyong', u'preselect']
[u'driver', u'fin', u'fatal', u'accid']
[u'drought', u'stricken', u'grazier', u'lose', u'hope']
[u'duyfken', u'replica', u'esper']
[u'egypt', u'blast', u'survivor', u'lucki', u'aliv']
[u'elder', u'kill', u'train', u'accid']
[u'energi', u'firm', u'sale', u'boost', u'futur', u'fund']
[u'eager', u'china', u'uranium', u'sale']
[u'ethanol', u'plant', u'construct', u'june']
[u'cyclon', u'monica', u'unlik', u'reform']
[u'famili', u'lucki', u'escap', u'burn', u'cabin']
[u'fear', u'futur', u'aborigin', u'heritag']
[u'fear', u'hold', u'trap', u'tasmanian', u'miner']
[u'feder', u'court', u'hear', u'habib', u'case']
[u'feder', u'maintain', u'technic', u'colleg']
[u'fewer', u'fuel', u'reduct', u'burn', u'plan', u'grampian']
[u'agre', u'deal']
[u'fight', u'break', u'timber', u'plantat']
[u'fine', u'leg', u'anzac', u'match']
[u'flood', u'isol', u'town']
[u'forest', u'industri', u'reject', u'break', u'claim']
[u'forum', u'updat', u'famili', u'avail', u'servic']
[u'fruit', u'outbreak', u'hit', u'wingfield']
[u'fuzzi', u'wuzzi', u'angel', u'seek', u'offici', u'recognit']
[u'gippsland', u'elder', u'question', u'melbourn', u'camp']
[u'cotton', u'trial', u'east', u'kimberley']
[u'govt', u'boost', u'vietnam', u'vet', u'children']
[u'govt', u'commit', u'fund', u'dandenong', u'facelift']
[u'govt', u'pledg', u'reduc', u'welfar', u'depend']
[u'govt', u'pledg', u'extra', u'fund', u'asia', u'pacif']
[u'govt', u'roll', u'plan', u'nation', u'smart', u'card']
[u'govt', u'sell', u'medibank', u'privat']
[u'grain', u'grower', u'futur', u'look', u'rosi']
[u'group', u'welcom', u'museum', u'public', u'forum', u'decis']
[u'guardian', u'attack', u'remov', u'mental', u'detaine']
[u'histor', u'bishop', u'lodg', u'wont', u'sell', u'develop']
[u'holland', u'offer', u'match']
[u'hope', u'util', u'sale', u'boost', u'region', u'suppli']
[u'hospit', u'face', u'shortag']
[u'summer', u'blame', u'power', u'bill', u'increas']
[u'howard', u'bad', u'advis', u'port', u'arthur', u'attend']
[u'human', u'bone', u'like', u'grave']
[u'human', u'urg', u'adopt', u'anim', u'eat', u'pattern']
[u'improv', u'crop', u'help', u'farmer', u'debt']
[u'increas', u'harvest', u'put', u'pressur', u'quota']
[u'industri', u'downturn', u'blame', u'increas', u'financi']
[u'injuri', u'sven', u'world', u'option', u'open']
[u'invest', u'scheme', u'urg', u'stop', u'vineyard']
[u'iran', u'readi', u'share', u'nuclear', u'technolog']
[u'katherin', u'resid', u'express', u'anger', u'flood']
[u'kovco', u'wife', u'give', u'support', u'soldier', u'iraq']
[u'lack', u'rain', u'doesnt', u'prevent', u'crop', u'sow']
[u'latham', u'assault', u'case', u'adjourn']
[u'latham', u'face', u'court']
[u'lie', u'lead', u'suburb', u'lock', u'court', u'hear']
[u'local', u'busi', u'farmer', u'urg']
[u'locust', u'threat', u'diminish']
[u'lodhi', u'terror', u'case', u'base', u'specul', u'court', u'hear']
[u'lodi', u'defenc', u'say', u'prosecut', u'case', u'pure', u'specul']
[u'magpi', u'morrison', u'apologis', u'team', u'mat']
[u'malle', u'grain', u'grower', u'expect', u'start', u'sow']
[u'arrest', u'cyber', u'predat', u'law']
[u'charg', u'bomb', u'plot']
[u'convict', u'murder', u'inadequ', u'evid']
[u'market', u'close', u'record', u'high']
[u'matthew', u'head', u'rooster']
[u'mayor', u'stand', u'firm', u'weekend']
[u'mcgee', u'prosecut', u'case', u'dismiss']
[u'meet', u'focus', u'address', u'social']
[u'melbourn', u'fuel', u'price', u'high']
[u'memori', u'garden', u'burial', u'facil', u'extend']
[u'mildura', u'grassroot', u'style']
[u'militia', u'spark', u'civil', u'maliki']
[u'rescu', u'effort', u'hamper', u'debri']
[u'minist', u'accus', u'mislead', u'public']
[u'mokbel', u'sister', u'order', u'surrend']
[u'incent', u'urg', u'rural', u'doctor']
[u'mother', u'get', u'suspend', u'sentenc', u'son']
[u'mourner', u'candl', u'mark', u'chernobyl', u'anniversari']
[u'mules', u'replac', u'trial', u'ax']
[u'plead', u'guilti', u'stalk', u'charg']
[u'nake', u'wedg', u'chimney']
[u'nerv', u'failur', u'link', u'high', u'potassium', u'level']
[u'newcastl', u'shipment', u'provid', u'export']
[u'council', u'subdivis', u'rule', u'naiv', u'unwork']
[u'date', u'age', u'care', u'assault', u'case']
[u'preserv', u'linear', u'park']
[u'soybean', u'process', u'plant', u'darl', u'down']
[u'play', u'rethink', u'urg']
[u'communiti', u'continu', u'cyclon', u'monica', u'clean']
[u'oper', u'aim', u'target', u'burglar', u'label']
[u'opposit', u'attack', u'medibank', u'privat', u'sale', u'plan']
[u'overn', u'confirm', u'medibank', u'privat', u'sale']
[u'ozwid', u'weather']
[u'pacif', u'highway', u'campaign', u'react', u'fund']
[u'parliamentari', u'committe', u'uphold']
[u'parol', u'offic', u'tie', u'murder', u'suspect', u'probe']
[u'perri', u'match']
[u'plan', u'reveal', u'state', u'tidbinbilla', u'natur']
[u'plan', u'expand', u'geotherm', u'power', u'product']
[u'plantat', u'industri', u'concern', u'possibl']
[u'wheat', u'scandal', u'prosecut']
[u'polic', u'concern', u'miss', u'elder', u'man', u'safeti']
[u'port', u'arthur', u'anniversari', u'concert', u'postpon']
[u'pregnant', u'woman', u'assault', u'neighbourhood', u'disput']
[u'program', u'aim', u'encourag', u'countri', u'practic']
[u'public', u'meet', u'hold', u'health', u'servic']
[u'public', u'transport', u'fare', u'evas', u'decreas']
[u'want', u'privat', u'road', u'map']
[u'opposit', u'back', u'energi', u'firm', u'sell']
[u'region', u'famili', u'care', u'oper', u'fear', u'futur']
[u'rescu', u'mission', u'continu', u'trap', u'miner']
[u'rescuer', u'agonis', u'close', u'trap', u'miner']
[u'residenti', u'develop', u'work', u'begin']
[u'resid', u'nervous', u'semi', u'trailer', u'run']
[u'ricki', u'stuart', u'nathan', u'brown', u'rooster']
[u'rini', u'quit', u'solomon', u'island']
[u'rini', u'quit', u'solomon']
[u'rise', u'fuel', u'price', u'forc', u'qanta', u'fare']
[u'robe', u'marina', u'construct', u'ahead']
[u'rock', u'hinder', u'rescu', u'trap', u'miner']
[u'continu', u'heritag', u'site', u'irrig', u'pump']
[u'pleas', u'attend', u'anzac', u'servic']
[u'presid', u'blame', u'law', u'sack']
[u'rural', u'resid', u'issu', u'time', u'bushfir', u'warn']
[u'ryle', u'face', u'week', u'sidelin']
[u'ryle', u'sidelin', u'week']
[u'satellit', u'track', u'collar', u'track', u'dingo']
[u'school', u'fund', u'boost', u'solar', u'power', u'vehicl']
[u'search', u'engin', u'target', u'arab', u'speaker']
[u'search', u'plaqu', u'honour', u'victoria']
[u'secur', u'council', u'approv', u'congo', u'deploy']
[u'singaporean', u'soldier', u'drop', u'parachut', u'train']
[u'smart', u'card', u'subject', u'debat']
[u'smart', u'card', u'introduct', u'rais', u'region', u'concern']
[u'solomon', u'island', u'quit']
[u'solomon', u'island', u'resign']
[u'solomon', u'resign']
[u'solomon', u'resign', u'spark', u'celebr']
[u'soundshel', u'work', u'track', u'finish']
[u'southern', u'grower', u'fear', u'miss', u'high', u'banana']
[u'speed', u'driver', u'polic', u'sight']
[u'speedi', u'motorcyclist', u'licenc', u'suspend']
[u'lanka', u'retali', u'suicid', u'attack']
[u'strike', u'forc', u'investig', u'teen', u'death']
[u'summit', u'hear', u'wine', u'grape', u'industri', u'concern']
[u'surfer', u'drown', u'beach']
[u'symond', u'slam', u'aussi', u'whip', u'bangladesh']
[u'syring', u'fast', u'food', u'hold']
[u'tavern', u'order', u'compo', u'patron', u'attack']
[u'teen', u'author', u'accus', u'literari', u'ident', u'theft']
[u'teen', u'deni', u'bail', u'girl', u'murder']
[u'telework', u'project', u'aim', u'help', u'rural', u'women']
[u'arrest', u'egypt', u'bomb']
[u'terramin', u'notifi', u'drill', u'result']
[u'person', u'charg', u'fuel', u'drum', u'murder']
[u'tiger', u'youngster', u'get', u'rise', u'star']
[u'tilligeri', u'peninsula', u'bushfir', u'risk', u'medium']
[u'suicid', u'bomber', u'strike', u'egypt']
[u'union', u'worri', u'violenc', u'push', u'nurs']
[u'govt', u'publish', u'list', u'mobil', u'speed', u'camera']
[u'vicroad', u'consid', u'pedestrian', u'cross']
[u'victoria', u'cross', u'survivor', u'rememb', u'anzac', u'legend']
[u'wakelin', u'rub', u'pie', u'clash']
[u'waratah', u'hope', u'keep', u'kanaar']
[u'waratah', u'stick', u'win', u'line']
[u'warn', u'stand', u'murder', u'trial']
[u'wast', u'coal', u'propos', u'hunter', u'power', u'station']
[u'webck', u'announc', u'retir']
[u'push', u'cattl', u'price']
[u'wheatbelt', u'resid', u'urg', u'check', u'lotto', u'ticket']
[u'white', u'hous', u'appoint', u'news', u'host']
[u'workcov', u'deni', u'file', u'lose', u'failur']
[u'wound', u'australian', u'remain', u'cairo', u'hospit']
[u'wont', u'wind', u'say', u'rooney']
[u'zarqawi', u'make', u'public', u'appear']
[u'book', u'bendigo', u'blitz']
[u'game', u'athlet', u'overstay', u'visa']
[u'abattoir', u'confid', u'worker', u'receiv']
[u'accc', u'target', u'pricelin', u'cosmet', u'label']
[u'adelaid', u'host', u'plastic', u'surgeri', u'confer']
[u'appeal', u'katia', u'sentenc']
[u'airport', u'condit', u'border', u'inhuman']
[u'airport', u'develop', u'decis', u'anger', u'minist']
[u'alleg', u'austrad', u'offici', u'alia', u'manag']
[u'maintain', u'medibank', u'premium', u'rise']
[u'record', u'record', u'half', u'year', u'profit']
[u'armi', u'target', u'region', u'rug', u'terrain', u'exercis']
[u'aussi', u'quinella', u'fiji', u'surf', u'event']
[u'author', u'assess', u'maningrida', u'cyclon', u'damag']
[u'averag', u'fuel', u'price', u'head', u'record']
[u'averag', u'household', u'worth']
[u'keep', u'detail', u'dfat', u'paper']
[u'bereav', u'grandma', u'push', u'bridg', u'upgrad']
[u'bird', u'forc', u'britain', u'cull', u'chicken']
[u'bosnian', u'croat', u'leader', u'crime', u'trial', u'begin']
[u'bowman', u'extend', u'cowboy', u'contract']
[u'brisban', u'chemist', u'contest', u'broadwat']
[u'brumbi', u'vulner', u'larkham', u'miller']
[u'bulldog', u'maitua', u'charg', u'drink', u'drive']
[u'bulldog', u'matua', u'charg', u'drink', u'drive']
[u'bushfir', u'communic', u'unaccept', u'inquest', u'hear']
[u'hire', u'basebal', u'coach', u'field', u'consult']
[u'communiti', u'consult', u'rathdowney']
[u'greater', u'transpar', u'shovelanna', u'disput']
[u'chang', u'riot', u'charg', u'drop']
[u'rego', u'relief', u'offset', u'fuel', u'price']
[u'call', u'secur', u'review', u'gunman', u'enter']
[u'camel', u'ship', u'desert', u'claim', u'farmer']
[u'camp', u'sovereignti', u'ember', u'framlingham']
[u'cape', u'road', u'close', u'month']
[u'workshop', u'gut', u'tenterfield']
[u'ceremoni', u'hold', u'chernobyl', u'victim']
[u'china', u'send', u'satellit', u'space']
[u'civilian', u'flee', u'govt', u'raid', u'tamil', u'tiger']
[u'civil', u'libertarian', u'highlight', u'smart', u'card', u'privaci']
[u'climat', u'research', u'paint', u'mix', u'pictur']
[u'closer']
[u'closer']
[u'cloth', u'design', u'bigger', u'slice', u'market']
[u'cole', u'hear', u'complaint', u'howard', u'conduct']
[u'colonel', u'face', u'graib', u'abus', u'charg']
[u'commod', u'stock', u'drive', u'market', u'lower']
[u'communiti', u'ask', u'outlin', u'case', u'public', u'phone']
[u'communiti', u'group', u'feel', u'pinch', u'petrol', u'price', u'climb']
[u'commut', u'longer', u'travel', u'time']
[u'complaint', u'girl', u'death', u'inquest', u'hear']
[u'convict', u'killer', u'sack', u'lawyer']
[u'council', u'back', u'plan', u'chang', u'convent', u'centr']
[u'council', u'credit', u'communiti', u'anger', u'turnaround']
[u'councillor', u'satisfi', u'ceo', u'resign']
[u'councillor', u'welcom', u'corrupt']
[u'council', u'seek', u'clariti', u'cyclon', u'warn', u'role']
[u'council', u'tell', u'minist', u'phone', u'concern']
[u'council', u'urg', u'look', u'altern', u'rat', u'hike']
[u'court', u'hear', u'terrorist', u'train', u'evid']
[u'crawford', u'sign', u'hawk']
[u'crowd', u'court', u'caus', u'murder', u'case', u'postpon']
[u'crow', u'despit', u'heavi', u'schedul']
[u'dandenong', u'major']
[u'debut', u'novelist', u'second', u'gong']
[u'defenc', u'investig', u'bodi', u'bungl']
[u'detail', u'clear', u'smart', u'card', u'concern', u'hockey']
[u'doctor', u'closer', u'prescript']
[u'doubl', u'murder', u'appeal', u'draw', u'close']
[u'driver', u'fail', u'heed', u'speed', u'warn']
[u'eastern', u'corridor', u'hing', u'refineri', u'decis']
[u'econom', u'downturn', u'wag']
[u'effort', u'continu', u'staff', u'hospit']
[u'ansett', u'staff']
[u'policeman', u'deni', u'involv', u'insur', u'scam']
[u'famili', u'devast', u'bodi']
[u'farina', u'snip', u'coach', u'comment']
[u'farmer', u'silo', u'fight', u'graincorp']
[u'fate', u'miss', u'miner', u'unknown']
[u'destroy', u'tenterfield', u'workshop']
[u'forc', u'refus', u'underestim', u'cat']
[u'galactico', u'laugh', u'real', u'presid', u'resign']
[u'shrug', u'talli', u'comment']
[u'hospit', u'greater', u'autonomi', u'abbott']
[u'cotton', u'research', u'win', u'award']
[u'govt', u'face', u'polit', u'pressur', u'petrol', u'price']
[u'govt', u'devot', u'alcohol', u'abus']
[u'govt', u'urg', u'fruit', u'code']
[u'great', u'lake', u'unrest', u'investig']
[u'grind', u'zero', u'redevelop', u'agre']
[u'hazard', u'reduct', u'burn', u'ahead']
[u'helicopt', u'team', u'rescu', u'taiwanes', u'fishermen']
[u'highland', u'conspir', u'rain', u'waratah', u'parad']
[u'home', u'detent', u'bail', u'alleg', u'murder']
[u'hope', u'down', u'ahead']
[u'hop', u'landmark', u'weed', u'fight', u'link', u'inspir']
[u'hop', u'reserv', u'save', u'endang', u'speci']
[u'howard', u'urg', u'tighter', u'control']
[u'hunt', u'centuri', u'burial', u'site']
[u'hydro', u'sale', u'inquiri', u'call', u'grow']
[u'innisfail', u'group', u'propos', u'larri', u'donat']
[u'iraq', u'unveil', u'plan', u'coalit', u'troop', u'cut']
[u'johansson', u'brumbi', u'clash']
[u'john', u'spend', u'week', u'sidelin']
[u'judg', u'silent', u'code', u'vinci', u'code', u'rule']
[u'kangaroo', u'confid', u'stay', u'melbourn']
[u'kempsey', u'shop', u'propos', u'display']
[u'kovco', u'bodi', u'bungl', u'terribl', u'mistak', u'nelson']
[u'kovco', u'famili', u'anger', u'return', u'incorrect', u'bodi']
[u'kovco', u'famili', u'demand', u'answer']
[u'lara', u'regain', u'west', u'indi', u'captainci']
[u'lawrenc', u'welcom', u'jail', u'sentenc', u'reduct']
[u'livestock', u'head', u'unfaz', u'meat', u'protest']
[u'lodhi', u'trial', u'hear', u'train', u'camp']
[u'pressur', u'caus', u'flood']
[u'magistr', u'adjourn', u'fatal', u'accid', u'case']
[u'magistr', u'fire', u'part', u'shoot', u'region', u'road']
[u'magpi', u'holland', u'week']
[u'magpi', u'sponsorship', u'jeopardi', u'drink', u'drive']
[u'stabl', u'freak', u'burn', u'accid']
[u'market', u'creditor', u'sue', u'alleg', u'insolv']
[u'mawson', u'expedit', u'survivor', u'celebr']
[u'mayor', u'welcom', u'central', u'weir', u'propos']
[u'mccamley', u'sell', u'cattl', u'properti']
[u'mediat', u'notif', u'process', u'anger', u'piggeri']
[u'medibank', u'sale', u'rais', u'premium']
[u'meningococc', u'death', u'prompt', u'health', u'warn']
[u'men', u'shed', u'give', u'local', u'place', u'meet']
[u'miner', u'bodi', u'recov', u'tasmania']
[u'miner', u'open', u'abcnew']
[u'minichiello', u'fight', u'prove', u'fit']
[u'minist', u'seek', u'local', u'feedback', u'wagerup', u'refineri']
[u'mitsubishi', u'price', u'break', u'model']
[u'mother', u'stand', u'trial', u'daughter', u'death']
[u'backflip', u'add', u'solomon', u'uncertainti']
[u'tip', u'rate', u'hike', u'like']
[u'nation', u'park', u'carri', u'burnoff']
[u'nation', u'seek', u'referendum', u'countri', u'fluorid']
[u'nation', u'vintag', u'number', u'season']
[u'nativ', u'titl', u'negoti', u'continu']
[u'nebo', u'shire', u'seek', u'govt', u'commit', u'water']
[u'nepal', u'rebel', u'declar', u'ceas']
[u'prompt', u'build', u'polic', u'station']
[u'polic', u'station', u'assur', u'communiti']
[u'report', u'card', u'welcom', u'parent']
[u'nobel', u'prize', u'winner', u'make', u'trip', u'home']
[u'injuri', u'latest', u'sinai', u'suicid', u'bomb']
[u'issu', u'penalti', u'salari', u'breach']
[u'rat', u'hold']
[u'offici', u'deni', u'alia', u'knowledg', u'austrad']
[u'railway', u'barrack', u'demolish']
[u'miner', u'dead']
[u'panel', u'urg', u'nation', u'approach', u'technolog']
[u'park', u'urg', u'speak', u'malle', u'dump']
[u'passeng', u'walk', u'away', u'light', u'plane', u'crash']
[u'pastoralist', u'brush']
[u'patient', u'return', u'cabooltur', u'hospit', u'govt']
[u'patient', u'win', u'fight', u'return', u'home']
[u'pie', u'worri', u'short', u'buckley']
[u'pie', u'worri', u'short', u'buckley']
[u'plastic', u'surgeon', u'predict', u'rise', u'decad']
[u'face', u'opposit', u'smart', u'card']
[u'make', u'statement', u'cole', u'inquiri']
[u'comment', u'wont', u'influenc', u'rule', u'cole']
[u'urg', u'tighter', u'law']
[u'polic', u'criticis', u'anti', u'drug', u'oper']
[u'polic', u'investig', u'braybrook', u'shoot']
[u'predict', u'kiama', u'hous', u'price', u'reach']
[u'press', u'protest', u'joli', u'secur', u'raid']
[u'probe', u'reveal', u'secret', u'flight']
[u'prosecutor', u'seek', u'arrest', u'hyundai', u'motor', u'chief']
[u'push', u'communiti', u'incent', u'entic']
[u'govt', u'propos', u'mari', u'river']
[u'region', u'fund', u'boost', u'whale', u'watch', u'compani']
[u'remot', u'station', u'nomin', u'altern']
[u'rescuer', u'tunnel', u'reach', u'trap', u'miner']
[u'rescuer', u'tunnel', u'save', u'trap', u'miner']
[u'rescuer', u'miner', u'dead']
[u'rescu', u'team', u'miner', u'dead']
[u'research', u'head', u'japan', u'behaviour', u'studi']
[u'rice', u'rumsfeld', u'meet', u'iraq', u'govern']
[u'rini', u'resign', u'eas', u'solomon', u'crisi']
[u'rival', u'biki', u'attend', u'bandido', u'leader', u'funer']
[u'river', u'citi', u'motorway', u'consortium', u'build', u'bypass']
[u'riverland', u'industri', u'repres', u'toxic', u'dump']
[u'brew', u'european', u'bumblebe', u'plan']
[u'rwandan', u'rebel', u'oust']
[u'measl', u'case', u'prompt', u'call', u'vaccin']
[u'premier', u'call', u'upper', u'hous', u'reform']
[u'sawmil', u'insist', u'privat', u'forest', u'protect']
[u'search', u'continu', u'miss', u'miner']
[u'search', u'resum', u'miss', u'clarenc', u'river']
[u'sentenc', u'submiss', u'paedophil', u'case', u'adjourn']
[u'trade', u'util', u'dam']
[u'servic', u'mark', u'chernobyl', u'anniversari']
[u'sheedi', u'float', u'idea', u'time', u'contract']
[u'sister', u'iraq', u'vice', u'presid', u'shoot', u'dead']
[u'smart', u'card', u'impact', u'state', u'servic']
[u'smart', u'card', u'rais', u'privaci', u'concern']
[u'smart', u'card', u'save', u'keep', u'wrap']
[u'soldier', u'bodi', u'blunder', u'investig']
[u'soldier', u'famili', u'anger', u'return', u'incorrect', u'bodi']
[u'solomon', u'night', u'curfew', u'lift']
[u'bali', u'jail', u'term']
[u'state', u'govt', u'blame', u'law', u'technic', u'colleg']
[u'stawel', u'oper', u'predict', u'improv', u'product']
[u'stop', u'illeg', u'fish', u'licenc', u'govt', u'tell']
[u'studi', u'spell', u'troubl', u'singl', u'desk', u'opposit']
[u'surfer', u'death', u'remain', u'mysteri']
[u'surgeon', u'escap', u'suspens', u'child', u'porn', u'imag']
[u'swan', u'cancel', u'train', u'session', u'olymp', u'stadium']
[u'swan', u'cat', u'clash']
[u'task', u'forc', u'dismiss', u'sight']
[u'teacher', u'die', u'accid']
[u'teck', u'cominco', u'seek', u'employe', u'reopen', u'zinc']
[u'thiev', u'ask', u'return', u'steal', u'antiqu', u'hospit']
[u'titl', u'reach', u'chelsea', u'host', u'unit']
[u'charg', u'polic', u'assault']
[u'win', u'day', u'cycl', u'star', u'go']
[u'cop', u'fine', u'concert', u'nois']
[u'union', u'claim', u'alcoa', u'bulli', u'worker']
[u'union', u'seek', u'undertak', u'nurs', u'protect']
[u'vagana', u'tip', u'thurston', u'overlook']
[u'vail', u'address', u'grain', u'grower']
[u'govt', u'appeal', u'wind', u'farm', u'decis']
[u'victori', u'secur', u'defens', u'pair']
[u'wall', u'stock', u'year', u'high']
[u'weather', u'keep', u'elect', u'surgeri', u'hold']
[u'wenger', u'wari', u'ronaldinho', u'pari']
[u'wind', u'farm', u'compani', u'consid', u'communiti', u'concern']
[u'woman', u'face', u'court', u'pregnant', u'neighbour', u'assault']
[u'yass', u'substat', u'improv', u'electr', u'servic']
[u'icon', u'england', u'name']
[u'kill', u'insurg', u'attack', u'iraq']
[u'project', u'explor', u'storm', u'water', u'save', u'idea']
[u'water', u'save', u'deal', u'announc']
[u'accus', u'kovco']
[u'council', u'put', u'support', u'propos', u'wind', u'farm']
[u'aflpa', u'critic', u'morrison', u'fine']
[u'afridi', u'withdraw', u'test', u'retir']
[u'agassi', u'rome', u'master']
[u'alcohol', u'program', u'fund', u'pittanc']
[u'altern', u'nest', u'arrang', u'osprey']
[u'ambul', u'execut', u'jail', u'fraud']
[u'anim', u'activist', u'abattoir', u'protest', u'backfir']
[u'applebi', u'content']
[u'aussi', u'breez', u'victori', u'dhaka']
[u'australia', u'step', u'ash']
[u'ballina', u'ferri', u'user', u'face', u'rise']
[u'beatti', u'flag', u'home', u'resumpt', u'dam']
[u'bendigo', u'councillor', u'seek', u'liber', u'feder']
[u'blue', u'green', u'alga', u'spread']
[u'bodi', u'australian', u'soldier', u'begin', u'journey', u'home']
[u'bodi', u'australian', u'soldier', u'homeward', u'bind']
[u'bodi', u'aust', u'soldier', u'rout', u'aust']
[u'bodi', u'aust', u'soldier', u'make', u'homeward', u'journey']
[u'budget', u'room', u'major', u'reform', u'labor']
[u'burn', u'off', u'cover', u'melbourn', u'smoke']
[u'burn', u'victim', u'coma', u'week']
[u'busi', u'sector', u'fuel', u'lend', u'increas']
[u'protocol', u'militari', u'death']
[u'canadian', u'research', u'work']
[u'cappo', u'appoint', u'social', u'inclus', u'commission']
[u'cattl', u'breeder', u'vow', u'fight', u'plan']
[u'caution', u'air', u'store', u'front', u'plan']
[u'cazali', u'claim', u'discrimin', u'iron', u'decis']
[u'childcar', u'bodi', u'urg', u'benefit', u'boost']
[u'cholera', u'sweep', u'papua']
[u'citizenship', u'test', u'plan', u'simplist']
[u'closer']
[u'closer', u'abcnew']
[u'closer']
[u'club', u'foul', u'salari', u'rule']
[u'coag', u'forum', u'control', u'debat', u'beatti']
[u'communiti', u'group', u'coastal', u'polici', u'concern']
[u'confid', u'shark', u'strong', u'panther']
[u'councillor', u'air', u'broom', u'worker', u'shortag', u'worri']
[u'council', u'pledg', u'wellington', u'dunedoo', u'fund']
[u'council', u'reject', u'sack', u'claim']
[u'council', u'vote', u'indoor', u'pool', u'plan']
[u'council', u'seek', u'job', u'melbourn']
[u'court', u'acquit', u'accus', u'murder']
[u'court', u'reserv', u'decis', u'pair', u'murder', u'appeal']
[u'court', u'shut', u'unlicens', u'insur']
[u'court', u'hand', u'nativ', u'titl', u'claim', u'rule']
[u'critic', u'oppos', u'test', u'migrant']
[u'crocodil', u'steal', u'man', u'chainsaw']
[u'crow', u'sweat', u'fit']
[u'cyclon', u'packag', u'undergo', u'tweak']
[u'cystic', u'fibrosi', u'suffer', u'lack', u'servic', u'doctor']
[u'deputi', u'mayor', u'surviv', u'censur']
[u'doctor', u'optimist', u'heart', u'surgeri', u'east']
[u'drought', u'expir']
[u'eagl', u'kerr', u'doubt', u'lion', u'clash']
[u'earth', u'need', u'intergalact', u'polic', u'ethicist']
[u'east', u'timores', u'babi', u'receiv', u'life', u'save', u'surgeri']
[u'egypt', u'blast', u'survivor', u'home', u'soon']
[u'timor', u'riot', u'prompt', u'dfat', u'travel', u'warn', u'increas']
[u'timor', u'soldier', u'continu', u'protest']
[u'timor', u'thank', u'australian', u'babi', u'surgeri']
[u'mayor', u'beat', u'elect', u'chanc']
[u'teacher', u'jail', u'abus']
[u'extra', u'road', u'fund', u'certainti', u'kelli']
[u'farm', u'water', u'alloc', u'threat']
[u'fear', u'fuel', u'price', u'climb', u'litr']
[u'chief', u'warn', u'price', u'impact']
[u'deni', u'plan', u'london', u'transport', u'bomb']
[u'leader', u'contest', u'aceh', u'poll']
[u'geraldton', u'offer', u'reward', u'catch', u'mosqu', u'vandal']
[u'govt', u'action', u'seek', u'electr', u'price', u'chang']
[u'govt', u'consid', u'citizenship', u'test', u'migrant']
[u'govt', u'invest', u'sovereign', u'hill', u'disast']
[u'group', u'continu', u'help', u'youth']
[u'haas', u'beat', u'transport', u'fund']
[u'hama', u'consid', u'softer', u'stanc', u'israel']
[u'health', u'servic', u'stand', u'safeti', u'measur']
[u'high', u'aussi', u'dollar', u'hurt', u'farm', u'profit']
[u'hope', u'boost', u'stop', u'arson']
[u'hospit', u'hire', u'emerg', u'doctor', u'nurs']
[u'howard', u'deni', u'kovco', u'cover', u'claim']
[u'hundr', u'reflect', u'port', u'arthur', u'tragedi']
[u'hundr', u'turn', u'age', u'care', u'meet']
[u'investig', u'continu', u'abattoir', u'pollut']
[u'investig', u'continu', u'ferri', u'firm', u'asset']
[u'chang', u'blame', u'train', u'facil']
[u'iron', u'plan', u'creat', u'infrastructur', u'concern']
[u'jake', u'kovco', u'mother', u'accus', u'govt', u'lie']
[u'jenkin', u'name', u'wale', u'coach']
[u'loss', u'link', u'wage', u'reduct', u'labor']
[u'john', u'chanc', u'face', u'rabbitoh']
[u'king', u'river', u'clean', u'continu']
[u'knight', u'foul', u'salari', u'rule']
[u'kovco', u'famili', u'sydney', u'meet', u'bodi']
[u'kovco', u'bodi', u'arriv', u'home', u'soon']
[u'lake', u'author', u'play', u'seafood', u'dioxin', u'risk']
[u'liber', u'broadwat', u'candid', u'elector']
[u'male', u'contracept', u'trial', u'prove', u'success']
[u'accus', u'tri', u'group']
[u'ban', u'drive', u'fatal', u'accid']
[u'face', u'court', u'fatal', u'crash']
[u'give', u'communiti', u'base', u'order']
[u'maningrida', u'need', u'help', u'cyclon', u'clean']
[u'marshal', u'chanc', u'face', u'kangaroo']
[u'medhurst', u'dump', u'saint', u'clash']
[u'million', u'alloc', u'water', u'project']
[u'rescu', u'team', u'progress', u'slow']
[u'miner', u'green', u'tour']
[u'mine', u'product', u'tip', u'pick']
[u'minist', u'promis', u'close', u'studi', u'rubi', u'mine']
[u'minist', u'urg', u'famili', u'lodg', u'complaint', u'son']
[u'mini', u'turbin', u'generat', u'farm', u'power']
[u'mokbel', u'brother', u'face', u'drug', u'charg']
[u'work', u'fresh', u'produc', u'code']
[u'morrison', u'escap', u'sack', u'fine']
[u'mother', u'guilti', u'son', u'friend']
[u'mourner', u'reflect', u'port', u'arthur', u'tragedi']
[u'attribut', u'lower', u'jobless', u'rate', u'commonwealth']
[u'tell', u'shift', u'focus', u'council']
[u'multiplex', u'secur', u'toowoomba', u'shop', u'centr']
[u'muscl', u'tight', u'sidelin', u'koschitzk']
[u'musician', u'jail', u'girlfriend', u'murder']
[u'nation', u'mark', u'year', u'port', u'arthur', u'massacr']
[u'nation', u'share', u'port', u'arthur', u'grief']
[u'nepal', u'parliament', u'open', u'design', u'fail']
[u'nepal', u'design', u'sick', u'swear']
[u'broadcast', u'deal', u'offer', u'countri', u'race', u'hope']
[u'newcastl', u'make', u'final', u'solar', u'citi']
[u'israel', u'govern', u'reduc', u'settlement']
[u'rescu', u'mission', u'trap', u'miner']
[u'appeal', u'lodg', u'miner', u'sand', u'plan']
[u'north', u'report', u'tomato', u'virus']
[u'govt', u'pledg', u'combat', u'alcohol', u'abus']
[u'nurs', u'home', u'worker', u'face', u'abus', u'trial']
[u'olymp', u'stadium', u'turf', u'give', u'green', u'light']
[u'opposit', u'rule', u'support', u'civil', u'union']
[u'opposit', u'warn', u'rail', u'station', u'woe']
[u'ouyen', u'supermarket', u'shut']
[u'owen', u'say', u'readi', u'return']
[u'park', u'develop', u'boost', u'job']
[u'patel', u'compens', u'scheme', u'extend']
[u'perenjori', u'look', u'industri', u'project']
[u'perilya', u'break', u'hill', u'lift', u'cash', u'flow']
[u'philip', u'morri', u'pull', u'maori', u'cigarett']
[u'appoint', u'nepal']
[u'polic', u'arrest', u'break', u'crackdown']
[u'polic', u'probe', u'airport', u'cattl', u'shoot']
[u'polic', u'identifi', u'waterhol', u'bodi']
[u'polic', u'drown', u'victim']
[u'politician', u'cast', u'doubt', u'south', u'east', u'plan']
[u'port', u'arthur', u'mark', u'year', u'massacr']
[u'port', u'arthur', u'servic', u'reflect', u'hope']
[u'premier', u'attack', u'feder', u'govt', u'wind', u'farm']
[u'proud', u'randel', u'happi', u'quit']
[u'public', u'govt', u'varsiti', u'lake', u'land']
[u'public', u'urg', u'workplac', u'chang']
[u'coffe', u'plantat', u'forecast', u'record', u'harvest']
[u'rail', u'land', u'meet', u'hear', u'park', u'concern']
[u'chief', u'hit', u'econom', u'coverag']
[u'refuge', u'scheme', u'requir', u'public', u'support']
[u'region', u'indigen', u'leader', u'urg', u'stand']
[u'report', u'attack', u'crop', u'block']
[u'resid', u'worri', u'council', u'disrupt']
[u'resourc', u'stock', u'fall', u'pull', u'market']
[u'retail', u'outlet', u'overcharg', u'watchdog', u'find']
[u'chair', u'expect', u'chines', u'market', u'boost', u'revenu']
[u'tinto', u'fast', u'track', u'iron']
[u'risdon', u'inmat', u'guilti', u'throw', u'urin']
[u'riverina', u'appl', u'grower', u'hope', u'better', u'season']
[u'roar', u'deal', u'mclaren']
[u'ross', u'look', u'spoil', u'penrith', u'homecom']
[u'fail', u'anzac', u'model', u'albani']
[u'rspca', u'probe', u'kangaroo', u'cruelti', u'claim']
[u'sack', u'spark', u'defenc', u'medic', u'centr']
[u'sheep', u'station', u'transform', u'natur', u'reserv']
[u'search', u'continu', u'miss', u'miner']
[u'search', u'expect', u'reach', u'trap', u'miner']
[u'secker', u'say', u'road', u'claim', u'misguid']
[u'secur', u'camera', u'help', u'coonambl', u'crime']
[u'senat', u'inquiri', u'recommend', u'postnat', u'depress']
[u'shark', u'help', u'illeg', u'fishermen']
[u'shire', u'develop', u'plan', u'strategi', u'ahead']
[u'shire', u'say', u'roundabout', u'rule', u'confus', u'driver']
[u'short', u'break', u'wont', u'phase', u'bomber', u'clarkson']
[u'showground', u'rezon', u'plan', u'stay', u'display', u'longer']
[u'sistani', u'urg', u'action', u'iraqi', u'militia']
[u'smart', u'card', u'save', u'estim', u'releas']
[u'stage', u'irrig', u'project', u'complet']
[u'stanhop', u'pledg', u'defend', u'civil', u'union']
[u'state', u'urg', u'drop', u'ban']
[u'stephen', u'lawyer', u'appeal', u'uphold', u'sentenc']
[u'steril', u'fruit', u'fli', u'fail', u'satisfli', u'partner']
[u'break', u'freddi', u'warn', u'botham']
[u'talk', u'continu', u'propos', u'indigen', u'land']
[u'taronga', u'releas', u'rescu', u'anim']
[u'tasmania', u'denmark', u'forg', u'nurs', u'link']
[u'tasmanian', u'miner', u'miss']
[u'tender', u'call', u'motorway', u'duplic']
[u'tennant', u'creek', u'resid', u'oppos', u'toxic', u'dump']
[u'thorn', u'clear', u'return']
[u'thousand', u'expect', u'flock', u'beef', u'showcas']
[u'tiger', u'blue', u'chase', u'second']
[u'tiger', u'outlast', u'blue']
[u'late', u'stop', u'snowi', u'hydro', u'sale', u'della', u'bosca']
[u'tourism', u'plan', u'spark', u'accommod', u'boost']
[u'tradesman', u'electrocut', u'site', u'licens']
[u'tripodi', u'announc', u'power', u'upgrad']
[u'tweed', u'council', u'unveil', u'harbour', u'redevelop', u'plan']
[u'dead', u'level', u'cross', u'accid']
[u'dead', u'injur', u'train', u'crash']
[u'kill', u'level', u'cross', u'accid']
[u'union', u'say', u'law', u'muzzl', u'media']
[u'union', u'welcom', u'ansett', u'payment']
[u'hit', u'sanction', u'darfur']
[u'vail', u'comment', u'disappoint', u'wheat', u'grower']
[u'price', u'increas', u'flow', u'farmer']
[u'govt', u'challeng', u'wind', u'farm']
[u'victim', u'applaud', u'offend', u'guilti', u'verdict']
[u'victorian', u'doctor', u'plan', u'stop', u'work', u'meet']
[u'waratah', u'prevail', u'highland']
[u'warwick', u'delay', u'fluorid', u'survey']
[u'water', u'trade', u'avail', u'southern', u'farmer']
[u'weather', u'forecast', u'trust', u'bushfir']
[u'white', u'mous', u'award', u'honour']
[u'wineri', u'turn', u'attent', u'vodka']
[u'woman', u'hop', u'health', u'complaint', u'evid', u'help']
[u'woman', u'jail', u'centrelink', u'fraud']
[u'wool', u'bale', u'sell', u'fashion', u'hous']
[u'work', u'begin', u'world', u'trade', u'centr', u'site']
[u'work', u'swing', u'golf', u'cours']
[u'treat', u'strike']
[u'dolphin', u'wash', u'zanzibar', u'beach']
[u'abduct', u'child', u'unharm']
[u'play', u'role', u'indonesian', u'terror', u'raid']
[u'america', u'break', u'iraq', u'zawahri']
[u'analyst', u'support', u'cappo', u'appoint']
[u'anim', u'welfar', u'focus', u'meat', u'congress']
[u'arrest', u'spark', u'parol', u'reform', u'call']
[u'ash', u'prepar', u'track', u'gilchrist']
[u'aussi', u'evan', u'romandi', u'stage']
[u'author', u'voic', u'concern', u'local', u'govern']
[u'bangladesh', u'nafe', u'fin', u'dissent']
[u'beaconsfield', u'rescu', u'tunnel', u'take', u'shape']
[u'bronco', u'raider']
[u'budget', u'hold', u'clue', u'middl', u'school', u'carney']
[u'build', u'suppli', u'busi', u'win', u'approv']
[u'bungl', u'affect', u'kovco', u'death', u'probe']
[u'bush', u'approv', u'dubai', u'buy', u'defenc', u'supplier']
[u'call', u'inquiri', u'fatal', u'train', u'crash']
[u'calm', u'return', u'dili', u'riot']
[u'canberra', u'bushfir', u'season', u'extend']
[u'carr', u'condemn', u'airport', u'develop', u'plan']
[u'closer', u'abcnew']
[u'closer']
[u'colonel', u'charg', u'ghraib', u'abus']
[u'council', u'airport', u'rat']
[u'crime', u'pay', u'text', u'inform']
[u'crow', u'bulldog', u'win', u'streak']
[u'demon', u'roo', u'thriller']
[u'dili', u'brace', u'troubl']
[u'discoveri', u'fuel', u'tank', u'upgrad', u'hold']
[u'doctor', u'optimist', u'babi', u'maria']
[u'downer', u'urg', u'oppos', u'strike', u'iran']
[u'drink', u'drive', u'soldier', u'lose', u'licenc']
[u'eagl', u'maintain', u'unbeaten', u'streak']
[u'everton', u'boss', u'back', u'cahil', u'dream']
[u'explos', u'indonesian', u'raid']
[u'famili', u'mourn', u'soldier', u'death', u'defenc', u'inquiri']
[u'fatal', u'train', u'crash', u'investig']
[u'feder', u'confirm', u'davi', u'return']
[u'find', u'trap', u'miner', u'prioriti']
[u'workchoic', u'case', u'reach', u'court']
[u'fleme', u'heroic', u'shut', u'protea']
[u'forc', u'blow']
[u'frazer', u'urg', u'research', u'fund', u'boost']
[u'french', u'honour', u'surpris', u'veteran']
[u'garcia', u'mullin', u'miss', u'final']
[u'giant', u'panda', u'releas', u'wild']
[u'govt', u'mull', u'move', u'risk', u'camp', u'kid']
[u'guard', u'honour', u'kovco', u'bodi', u'return', u'home']
[u'hayden', u'lead', u'turkey', u'practic']
[u'highland', u'skipper', u'cite', u'stamp']
[u'hundr', u'mourn', u'famili', u'trio', u'kill', u'boat']
[u'hundr', u'romanian', u'home', u'danub', u'reced']
[u'hurrican', u'class', u'chief']
[u'hyundai', u'chairman', u'arrest', u'fraud', u'charg']
[u'rule', u'world']
[u'independ', u'train', u'crash', u'probe', u'seek']
[u'india', u'maoist', u'rebel', u'kill', u'civilian', u'polic']
[u'indonesia', u'appeal', u'bali', u'sentenc', u'cut']
[u'indonesian', u'polic', u'close', u'noordin']
[u'indonesia', u'polic', u'raid', u'miss', u'captur', u'milit']
[u'indonesia', u'appeal', u'bali', u'sentenc', u'cut']
[u'investig', u'seek', u'fatal', u'train', u'crash']
[u'iran', u'reject', u'demand', u'abandon', u'uranium', u'enrich']
[u'iran', u'speed', u'nuclear', u'work', u'iaea']
[u'iran', u'speed', u'nuclear', u'workiaea']
[u'iran', u'spurn', u'pressur', u'nuclear', u'disput']
[u'iraqi', u'pullout']
[u'jake', u'kovco', u'bodi', u'return', u'australia']
[u'john', u'play', u'rabbitoh']
[u'kovco', u'bodi', u'reach', u'aust', u'shore']
[u'kovco', u'bodi', u'return', u'aust']
[u'kovco', u'midopen']
[u'kovco', u'bodi', u'home', u'soil']
[u'kovco', u'bodi', u'arriv', u'sydney']
[u'lara', u'determin', u'improv', u'windi', u'fortun']
[u'leaney', u'share', u'orlean']
[u'measl', u'outbreak', u'prompt', u'vaccin']
[u'microsoft', u'woe', u'market']
[u'montgomeri', u'arrest', u'fraud', u'charg']
[u'mortlock', u'injuri', u'sour', u'brumbi']
[u'nasa', u'flag', u'lunar', u'commerc']
[u'nativ', u'titl', u'state', u'gridlock']
[u'open', u'kovco']
[u'opposit', u'call', u'greater', u'scrutini', u'rail', u'line']
[u'opposit', u'suspect', u'redund', u'govt']
[u'rise', u'wont', u'health', u'budget', u'govt']
[u'polic', u'fear', u'abduct', u'babi']
[u'polic', u'explos', u'rotterdam', u'arrest']
[u'polic', u'search', u'miss']
[u'polic', u'seek', u'assault', u'victim']
[u'power', u'flow', u'basslink']
[u'princ', u'harri', u'honour', u'chariti']
[u'prodi', u'face', u'uphil', u'battl', u'parliament']
[u'prodriv', u'enter', u'team']
[u'protest', u'ralli', u'corrupt', u'kyrgyzstan']
[u'poki', u'number', u'control']
[u'raid', u'order', u'deport']
[u'rail', u'line', u'contract', u'reach', u'court']
[u'redford', u'appoint', u'upper', u'hous']
[u'region', u'famili', u'feel', u'petrol', u'pinch']
[u'resort', u'avoid']
[u'restor', u'theatr', u'stage', u'show']
[u'river', u'rehabilit', u'fund', u'avail']
[u'rock', u'blast', u'attempt', u'reach', u'trap', u'minor']
[u'roger', u'didnt', u'commit', u'suicid']
[u'rooster', u'stun', u'cowboy', u'townsvill']
[u'unlik', u'dog', u'clash']
[u'rural', u'train', u'program', u'impress', u'doctor']
[u'sadr', u'milit', u'target', u'australian', u'troop']
[u'scolari', u'reject', u'england', u'post']
[u'search', u'abduct', u'child', u'continu']
[u'sharp', u'take', u'hull']
[u'sight', u'abduct', u'child', u'confirm']
[u'spectat', u'injur', u'targa', u'tasmania']
[u'lanka', u'edg', u'despit', u'ceas']
[u'helen', u'hospit', u'crisi', u'intern', u'advis']
[u'storm', u'strong', u'dragon']
[u'streaker', u'face', u'bigger', u'fin', u'germani']
[u'sudan', u'food', u'ration', u'halv']
[u'swan', u'return', u'winner', u'list']
[u'terrorist', u'kill', u'year']
[u'terri', u'relish', u'prospect', u'shut', u'unit']
[u'test', u'clear', u'chicken']
[u'thiev', u'urg', u'return', u'steal', u'devil', u'monitor']
[u'spectat', u'injur', u'targa', u'crash']
[u'tiger', u'satisfi', u'blue']
[u'tokyo', u'join', u'race', u'host', u'olymp']
[u'evad', u'indonesian', u'polic', u'raid']
[u'totti', u'target', u'italian', u'final', u'return']
[u'trap', u'miner', u'famili', u'prioriti']
[u'tunnel', u'reach', u'beaconsfield', u'miner']
[u'timor', u'unrest']
[u'tier', u'govt', u'prefer', u'studi']
[u'union', u'hold', u'gather', u'earli']
[u'halv', u'sudan', u'food', u'ration']
[u'eas', u'petrol', u'price', u'liber']
[u'veteran', u'fear', u'loss', u'psychologist']
[u'xavi', u'return', u'barca']
[u'yahoo', u'deni', u'aid', u'dissid', u'arrest']
[u'target', u'demon']
[u'abattoir', u'close', u'second', u'wastewat', u'spill']
[u'airport', u'work', u'delay', u'byron']
[u'anti', u'demonstr', u'york', u'street']
[u'risk', u'kid', u'hostel', u'plan', u'shock']
[u'australian', u'dairi', u'farmer', u'technolog']
[u'crew', u'reach', u'stradbrok', u'blaze']
[u'barrack', u'explos', u'kill', u'nepali', u'soldier']
[u'basslink', u'doesnt', u'sulli', u'power', u'suppli', u'hydro']
[u'beaconsfield', u'miner', u'aliv']
[u'beatti', u'urg', u'govt', u'consid', u'ethanol']
[u'search', u'launch', u'miss']
[u'bomber', u'look', u'derail', u'hawk', u'start']
[u'brough', u'call', u'welfar', u'debat']
[u'brough', u'mull', u'welfar', u'chang', u'kid', u'benefit']
[u'brumbi', u'star', u'pull', u'hapless', u'red']
[u'budget', u'fund', u'target', u'illeg', u'fish']
[u'bulldog', u'sloppi', u'warrior']
[u'bull', u'stay', u'race', u'beat', u'shark']
[u'buru', u'quartet', u'author', u'die', u'age']
[u'bush', u'hail', u'iraq', u'polit', u'progress']
[u'calm', u'restor', u'dili', u'street']
[u'camper', u'evacu', u'stradbrok', u'rag']
[u'chelsea', u'crush', u'unit', u'retain', u'titl']
[u'chelsea', u'harder', u'season', u'cole']
[u'child', u'abduct', u'alert', u'appropri']
[u'child', u'protect', u'report', u'rise', u'disturb']
[u'concern', u'govt', u'propos', u'direct', u'debit', u'welfar']
[u'costello', u'caution', u'fuel', u'price', u'predict']
[u'costello', u'play', u'specul']
[u'costello', u'warn', u'higher', u'petrol', u'price']
[u'council', u'award', u'chamber', u'construct', u'contract']
[u'council', u'suspici', u'merger', u'motiv']
[u'court', u'reject', u'bail', u'matern', u'ward', u'gunman']
[u'cyclon', u'clean', u'volunt', u'head', u'home']
[u'cyclon', u'relief', u'fund', u'short', u'target']
[u'dafur', u'peac', u'agreement', u'immin']
[u'deadlin', u'approach', u'darfur', u'peac', u'deal']
[u'debut', u'deluca', u'replac', u'injur', u'brogan']
[u'devil', u'tumour', u'diseas', u'spread']
[u'dili', u'calm', u'despit', u'unrest', u'fear']
[u'docker', u'filthi', u'draw', u'saint']
[u'doherti', u'arrest', u'drug', u'case']
[u'economist', u'galbraith', u'die']
[u'effort', u'continu', u'free', u'trap', u'miner']
[u'egyptian', u'govt', u'seek', u'extend', u'emerg']
[u'egypt', u'unveil', u'memori', u'wwii', u'digger']
[u'england', u'sweat', u'rooney', u'break', u'foot']
[u'evan', u'stage', u'place']
[u'footscray', u'blaze', u'damag', u'luxuri', u'car']
[u'foskey', u'hous', u'sale', u'price', u'reserv']
[u'franklin', u'patel', u'pressur', u'protea']
[u'govt', u'propos', u'direct', u'debit', u'welfar']
[u'govt', u'releas', u'direct', u'debit', u'welfar', u'propos']
[u'grandson', u'aim', u'emul', u'tiki', u'voyag']
[u'green', u'seek', u'poki', u'review']
[u'grower', u'smile', u'rice', u'product', u'tripl']
[u'hawk', u'sneak', u'home', u'bomber']
[u'hop', u'rain', u'eas', u'stradbrok', u'threat']
[u'hop', u'rain', u'quench', u'stradbrok']
[u'ingham', u'cyclon', u'shelter', u'strengthen']
[u'inquiri', u'kovco', u'death', u'month']
[u'iran', u'increas', u'nuclear', u'enrich', u'level']
[u'iran', u'reject', u'pressur', u'abandon', u'nuclear', u'programm']
[u'iran', u'set', u'condit', u'maximum', u'nuclear', u'cooper']
[u'italian', u'berlusconi', u'quit']
[u'itali', u'berlusconi', u'quit']
[u'ivan', u'cleari', u'steve', u'folk']
[u'kidnapp', u'order', u'indian', u'afghanistan']
[u'king', u'say']
[u'knight', u'overcom', u'determin', u'bunni']
[u'kovco', u'inquiri', u'month']
[u'labor', u'warn', u'high', u'budget', u'expect']
[u'lara', u'guid', u'west', u'indi', u'labour']
[u'leaney', u'lurk', u'orlean']
[u'lose', u'vivaldi', u'work', u'aust', u'debut']
[u'magpi', u'continu', u'win', u'way']
[u'mcalist', u'help', u'blue', u'edg', u'cheetah']
[u'memori', u'servic', u'heart', u'diseas', u'focus']
[u'michael', u'hagan']
[u'rescu', u'effort', u'continu']
[u'miner', u'mother', u'tell', u'beaconsfield', u'miracl']
[u'miner', u'retriev', u'hour', u'away']
[u'motorist', u'warn', u'potenti', u'petrol', u'price', u'rise']
[u'mourinho', u'consid', u'leav', u'chelsea']
[u'nathan', u'fien', u'willi', u'mason']
[u'nelson', u'defend', u'kovco', u'investig']
[u'nepal', u'swear']
[u'nepal', u'premier', u'call', u'maoist', u'renounc']
[u'nigerian', u'milit', u'bomb', u'fuel', u'tanker']
[u'hostel', u'plan', u'frown']
[u'open', u'kovco']
[u'opinion', u'seek', u'mari', u'river', u'plan']
[u'parliament', u'unlik', u'probe', u'school', u'disput']
[u'petrol', u'open']
[u'petrol', u'price', u'domest', u'tourism']
[u'play', u'school', u'come', u'outback', u'australian']
[u'blame', u'dili', u'riot', u'foreign', u'interest']
[u'pont', u'content', u'australia', u'progress']
[u'protest', u'hold', u'anti', u'terror', u'law']
[u'deni', u'bungl', u'school', u'servic']
[u'public', u'servic', u'second', u'rate', u'smyth']
[u'rain', u'aid', u'firefight', u'stradbrok']
[u'rebel', u'reluct', u'sign', u'darfur', u'peac', u'deal']
[u'rescuer', u'talk', u'trap', u'miner']
[u'research', u'find', u'chronic', u'shortag']
[u'restaur', u'case', u'test', u'law', u'labor']
[u'roll', u'stone', u'richard', u'suffer', u'concuss']
[u'ronaldinho', u'move', u'barca', u'closer', u'titl']
[u'saint', u'docker', u'stage', u'climact', u'draw']
[u'school', u'servic', u'cancel', u'mistak']
[u'eagl', u'edg', u'eel', u'thriller']
[u'seven', u'injur', u'clash', u'papua']
[u'shortag', u'leav', u'patient']
[u'skirmish', u'continu', u'lanka']
[u'booz', u'warn', u'scrap']
[u'lankan', u'rebel', u'raid', u'kill']
[u'steve', u'menzi', u'hasler']
[u'stirl', u'deni', u'middl', u'school', u'decis']
[u'stormer', u'snap', u'crusad', u'unbeaten', u'streak']
[u'sudanes', u'govt', u'accept', u'darfur', u'peac', u'deal']
[u'taliban', u'confirm', u'kill', u'indian', u'hostag']
[u'targa', u'safeti', u'guidelin', u'review']
[u'tasmanian', u'win', u'golden', u'tripod', u'honour']
[u'chang', u'seek', u'boost', u'explor']
[u'thousand', u'march', u'anti', u'ralli']
[u'thurston', u'name', u'kangaroo', u'bench']
[u'train', u'crash', u'prompt', u'cross', u'review', u'call']
[u'trap', u'beaconsfield', u'miner', u'aliv']
[u'treasur', u'apologis', u'kovco', u'famili']
[u'guard', u'stab', u'brawl']
[u'resourc', u'leav', u'princip', u'struggl', u'union']
[u'understand', u'muslim', u'paramount', u'beazley']
[u'unesco', u'plan', u'tsunami', u'alert', u'test']
[u'vermeulen', u'take', u'pole', u'suzuki']
[u'lose', u'distribut', u'ripper']
[u'warn', u'ask', u'quick', u'decis', u'return']
[u'webb', u'keep', u'slim', u'victori', u'hop', u'aliv']
[u'west', u'brom', u'birmingham']
[u'wind', u'expect', u'stradbrok']
[u'woman', u'charg', u'elizabeth', u'grove', u'stab']
[u'arrest', u'melbourn', u'drug', u'raid']
[u'hindus', u'kill', u'kashmir']
[u'program', u'rise', u'award']
[u'academ', u'urg', u'action', u'tackl', u'pistol']
[u'govt', u'urg', u'offer', u'disabl', u'servic']
[u'face', u'financi', u'backlash', u'bookmak']
[u'agforc', u'criticis', u'grain', u'silo', u'closur', u'handl']
[u'bilk', u'look', u'good', u'alic', u'spring']
[u'leagu', u'target', u'veteran', u'socceroo']
[u'black', u'oliv', u'clear', u'stamp']
[u'american', u'couch', u'seal', u'dramat', u'orlean']
[u'amla', u'centuri', u'take', u'south', u'africa', u'safeti']
[u'anderson', u'seek', u'life', u'limelight']
[u'andrew', u'call', u'beazley', u'apolog']
[u'antarct', u'mine', u'fanci']
[u'armi', u'stage', u'south', u'east', u'exercis']
[u'athlet', u'mare', u'take', u'campdraft', u'comp']
[u'aust', u'troop', u'make', u'progress', u'southern', u'iraq']
[u'author', u'suspect', u'arson', u'destroy', u'jail']
[u'ball', u'secur', u'let', u'cowboy', u'murray']
[u'beaconsfield', u'rescu', u'effort', u'continu']
[u'beaconsfield', u'resid', u'celebr', u'news', u'trap']
[u'bengal', u'tiger', u'win', u'militari', u'strip']
[u'number', u'expect', u'labour', u'march']
[u'sponsorship', u'deal', u'sign', u'emerg', u'chopper']
[u'brough', u'defend', u'direct', u'debit', u'welfar']
[u'brough', u'defend', u'direct', u'debit', u'welfar', u'plan']
[u'bundaberg', u'record', u'strong', u'poki', u'growth']
[u'bush', u'administr', u'defend', u'forc', u'size', u'iraq']
[u'bush', u'reject', u'powel', u'claim', u'insuffici', u'iraq']
[u'bush', u'turn', u'chanc', u'kill', u'zarqawi']
[u'busi', u'group', u'urg', u'alloc', u'review']
[u'review', u'school', u'math', u'amid', u'poor', u'rat']
[u'care', u'budget', u'wont', u'pressur', u'rat']
[u'cattlemen', u'unabl', u'murder', u'teen']
[u'central', u'skill', u'shortag']
[u'chines', u'charg', u'illeg', u'fish']
[u'chines', u'face', u'illeg', u'fish', u'charg']
[u'climber', u'phone', u'trigger', u'mountain', u'rescu']
[u'closer', u'abcnew']
[u'coffe', u'research']
[u'commerci', u'centr', u'strategi']
[u'compani', u'beat', u'revers', u'wind', u'farm', u'reject']
[u'concern', u'air', u'heritag', u'rail', u'servic']
[u'coron', u'find', u'kovco', u'die', u'gunshot', u'wind']
[u'coron', u'releas', u'initi', u'kovco', u'death', u'find']
[u'council', u'back', u'rubibi', u'nativ', u'titl', u'rule']
[u'council', u'plan', u'wast']
[u'council', u'unhappi', u'govt', u'waterfront', u'land']
[u'countri', u'race', u'group', u'back', u'race', u'broadcast', u'rethink']
[u'court', u'delay', u'cost', u'thousand']
[u'crow', u'hop', u'showdown']
[u'member', u'converg', u'narrabri']
[u'plan', u'predict', u'ruin', u'live']
[u'decis', u'soon', u'game', u'machin', u'kerang']
[u'digit', u'test', u'transmiss', u'start']
[u'direct', u'debit', u'welfar', u'plan', u'criticis']
[u'test', u'help', u'protect', u'shark']
[u'docker', u'confid', u'win', u'point', u'protest']
[u'doctor', u'sue', u'specialist', u'colleg', u'million']
[u'doubt', u'cast', u'sovereign', u'hill', u'fund']
[u'downpour', u'hit', u'south', u'coast']
[u'drunken', u'cyclist', u'tell', u'receiv', u'counsel']
[u'emerg', u'hoax', u'anger', u'polic']
[u'kalgoorli', u'back', u'rehash', u'welfar', u'direct']
[u'expert', u'consult', u'retriev', u'miner']
[u'expert', u'consult', u'safe', u'retriev', u'miner']
[u'fair', u'commiss', u'caus', u'wage', u'freez', u'actu']
[u'chief', u'apologis', u'council', u'consult']
[u'firefight', u'union', u'warn', u'staff', u'crisi']
[u'focus', u'industri', u'relat', u'labour']
[u'ground', u'plan']
[u'food', u'fresh', u'water', u'trap', u'miner']
[u'underworld', u'solicitor', u'accus', u'polic']
[u'escap', u'burn', u'hous']
[u'gehrig', u'escap', u'hay', u'farmer', u'lucki']
[u'giant', u'prove', u'good', u'buccan']
[u'ginger', u'firm', u'record', u'rise', u'profit']
[u'ginseng', u'manag', u'invest', u'scheme', u'wind']
[u'gippsland', u'woman', u'secur', u'indigen', u'leadership']
[u'govt', u'blast', u'beazley', u'politicis', u'miner', u'plight']
[u'govt', u'boost', u'rural', u'medic', u'scholarship']
[u'govt', u'defend', u'law', u'despit', u'labour', u'protest']
[u'govt', u'green', u'light', u'bathurst', u'hospit', u'revamp']
[u'govt', u'incap', u'direct', u'debit', u'welfar', u'plan']
[u'govt', u'say', u'hand', u'tie', u'roxbi', u'down', u'power', u'cost']
[u'govt', u'target', u'road', u'safeti']
[u'govt', u'unveil', u'art', u'fund']
[u'govt', u'urg', u'consid', u'concess']
[u'govt', u'water', u'brochur', u'label', u'propaganda']
[u'shortag', u'forecast']
[u'grain', u'grower', u'hope', u'better', u'harvest']
[u'grand', u'final', u'rematch', u'highlight', u'leagu', u'round']
[u'grand', u'final', u'replay', u'highlight', u'leagu']
[u'green', u'group', u'plan', u'worri']
[u'greyhound', u'get', u'chairman']
[u'guantanamo', u'prison', u'releas', u'plan', u'hold']
[u'halloran', u'begin', u'polic']
[u'harmless', u'garden', u'pest', u'invad', u'home']
[u'high', u'petrol', u'price', u'stay']
[u'hundr', u'flee', u'romanian', u'home', u'defenc', u'break']
[u'hunt', u'glad', u'turn', u'kiwi']
[u'hunt', u'join', u'kangaroo', u'squad']
[u'hunt', u'replac', u'injur', u'minichiello', u'test']
[u'india', u'question', u'australian', u'wheat', u'shipment']
[u'indonesian', u'jail', u'harbour', u'alleg']
[u'infrastructur', u'spend', u'boost', u'job']
[u'inquiri', u'launch', u'shire', u'transfer', u'plan']
[u'itali', u'name', u'squad', u'world']
[u'jewish', u'leader', u'spiegel', u'die']
[u'joyc', u'propos', u'antarct', u'mine', u'ventur']
[u'juve', u'track', u'siena']
[u'labour', u'mark', u'barcaldin']
[u'land', u'council', u'feel', u'snub', u'wild', u'river']
[u'land', u'ownership', u'chang', u'coastal', u'lockout']
[u'larri', u'expos', u'inadequ', u'telstra']
[u'live', u'canberra', u'campaign', u'kick']
[u'loeb', u'win', u'argentina', u'atkinson', u'sixth']
[u'main', u'road', u'tugun', u'work']
[u'arrest', u'adelaid', u'shoot']
[u'charg', u'arm', u'hold']
[u'charg', u'stradbrok', u'fire']
[u'hospit', u'skydiv', u'mishap']
[u'face', u'court', u'attack']
[u'mcclaren', u'pois', u'england', u'report']
[u'melbourn', u'twin', u'join', u'forc', u'hospit', u'appeal']
[u'merger', u'report', u'handl', u'anger', u'local', u'govern']
[u'milit', u'massacr', u'hindus', u'indian', u'kashmir']
[u'compani', u'urg', u'clean', u'dust', u'level']
[u'miner', u'sand', u'forest', u'explor', u'get', u'green', u'light']
[u'rescu', u'day']
[u'miner', u'wait', u'free']
[u'miner', u'plight', u'point', u'reform', u'fail', u'beazley']
[u'miner', u'rescu', u'away']
[u'minist', u'accus', u'ignor', u'seal', u'rock', u'warn']
[u'minist', u'respons', u'beaconsfield']
[u'mladic', u'hide', u'deadlin', u'pass']
[u'moorabbin', u'compani', u'work']
[u'land', u'seek', u'west', u'wyalong', u'boom']
[u'confid', u'continu']
[u'see', u'benefit', u'southern', u'central', u'rail', u'line', u'plan']
[u'mundin', u'defend', u'beazley', u'comment']
[u'mundin', u'want', u'better', u'condit', u'local']
[u'muslim', u'bodi', u'appoint', u'presid']
[u'nadal', u'close', u'vila', u'record']
[u'nandewar', u'scene', u'inspect']
[u'doctor', u'start', u'work', u'cobar']
[u'chief', u'justic', u'hop', u'modernis', u'court']
[u'nixon', u'mull', u'sack', u'suspend', u'polic', u'offic']
[u'rise', u'virgin', u'blue', u'fuel', u'surcharg']
[u'support', u'idea', u'bull', u'statu']
[u'public', u'hous', u'shake']
[u'gold', u'lift', u'market']
[u'opposit', u'call', u'solomon', u'parliament']
[u'orica', u'aim', u'address', u'narrandera', u'chemic', u'plant']
[u'owen', u'reveal', u'damag']
[u'palestinian', u'crisi', u'talk', u'shelv', u'amid', u'power']
[u'papuan', u'asylum', u'claim', u'delay']
[u'parad', u'herald', u'start', u'muster', u'season']
[u'paramed', u'treat', u'children', u'river', u'ordeal']
[u'pilbara', u'pastor', u'strike', u'anniversari', u'rememb']
[u'plant', u'extract', u'cure', u'skin', u'cancer']
[u'polic', u'crack', u'road', u'fatigu']
[u'polic', u'fail', u'miss']
[u'polic', u'arrest', u'byron', u'brawl']
[u'port', u'hedland', u'determin', u'underground', u'power', u'charg']
[u'portland', u'aluminium', u'worker', u'maintain', u'wage', u'rise', u'push']
[u'predict', u'rate', u'rise', u'play']
[u'hart', u'galleri', u'remain', u'open']
[u'public', u'comment', u'seek', u'updat', u'adopt', u'law']
[u'pub', u'close', u'famili', u'feud', u'reignit']
[u'rain', u'put', u'hand', u'feed']
[u'rebel', u'group', u'reject', u'darfur', u'peac', u'deal']
[u'record', u'turnout', u'labour', u'ralli']
[u'rescu', u'effort', u'continu', u'trap', u'miner']
[u'rescu', u'miner', u'day']
[u'rescu', u'trap', u'miner', u'day']
[u'reserv', u'bank', u'urg', u'increas', u'rat']
[u'resid', u'return', u'dili', u'say', u'foreign', u'minist']
[u'revamp', u'plan', u'visitor', u'centr']
[u'rice', u'urg', u'iran', u'suspend', u'nuclear', u'enrich']
[u'road', u'death', u'sadden', u'dooki']
[u'robert', u'call', u'inquest', u'teen']
[u'robert', u'evid', u'prostitut', u'death']
[u'senat', u'want', u'labor', u'uranium', u'polici', u'overturn']
[u'secker', u'talk', u'lower', u'jobless', u'rate']
[u'error', u'hand', u'commiss']
[u'servic', u'rememb', u'heart', u'diseas', u'victim']
[u'servic', u'restor', u'cyclon', u'ravag', u'communiti']
[u'organis', u'defend', u'hurt']
[u'skill', u'migrant', u'intak', u'level', u'maintain']
[u'skin', u'cancer', u'trial', u'get', u'posit', u'result']
[u'smoke', u'alarm', u'mandatori', u'home']
[u'soldier', u'famili', u'urg', u'action', u'compens']
[u'south', u'africa', u'host', u'world']
[u'spring', u'thaw', u'releas', u'trap', u'pollut', u'say', u'russia']
[u'lanka', u'navi', u'attack', u'tamil', u'tiger']
[u'storm', u'clean', u'effort', u'continu']
[u'strong', u'demand', u'mackay', u'wollemi', u'pine']
[u'stuart', u'defend', u'test', u'select']
[u'studi', u'find', u'success', u'combin', u'mental', u'health', u'drug']
[u'sudanes', u'rebel', u'reject', u'peac', u'deal']
[u'support', u'packag', u'let', u'sack', u'factori', u'worker']
[u'swim', u'coach', u'court', u'child', u'charg']
[u'swim', u'australia', u'mourn', u'offici', u'death']
[u'tabl', u'grape', u'export', u'resum', u'indonesia']
[u'taylor', u'bowl', u'windi', u'victori']
[u'teacher', u'anger', u'super', u'short', u'skirt']
[u'telstra', u'launch', u'legal', u'challeng', u'line', u'rental']
[u'word', u'april']
[u'thousand', u'attend', u'brisban', u'seafood', u'festiv']
[u'kill', u'egypt', u'sweep', u'sinai', u'bomb']
[u'trap', u'miner', u'time', u'day']
[u'treasur', u'promis', u'tax', u'budget']
[u'trio', u'jail', u'man', u'death', u'cannabi', u'crop', u'raid']
[u'truck', u'compani', u'pass', u'increas', u'fuel', u'cost']
[u'trust', u'want', u'heritag', u'valu', u'protect']
[u'undef', u'west', u'prove', u'good', u'rover']
[u'union', u'gather', u'highlight', u'work', u'chang', u'worri']
[u'union', u'say', u'teacher', u'recruit', u'plan', u'hurt']
[u'union', u'worri', u'miner', u'suffer', u'work', u'law']
[u'illeg', u'immigr', u'stop', u'work', u'protest']
[u'stall', u'guantanamo', u'releas']
[u'vagana', u'right', u'test', u'escap', u'suspens']
[u'valencia', u'delay', u'barca', u'celebr', u'malaga']
[u'vanston', u'warn', u'possibl', u'timor', u'refuge']
[u'water', u'bomb', u'dous', u'stradbrok']
[u'season', u'take', u'toll', u'live', u'cattl', u'export']
[u'whistleblow', u'say', u'worri']
[u'white', u'lewi', u'hop', u'lose', u'contract']
[u'woman', u'charg', u'steal', u'good']
[u'women', u'hospit', u'leak', u'backpack']
[u'world', u'imposs', u'rooney', u'gerrard']
[u'world', u'worker', u'fete', u'battl', u'labour']
[u'wreck', u'train', u'remov', u'line']
[u'zylvest', u'streak', u'field', u'alic']
[u'abalon', u'diver', u'fee', u'crippl', u'industri']
[u'academ', u'see', u'benefit', u'senior', u'hous', u'push']
[u'accommod', u'book', u'agfair', u'draw', u'closer']
[u'assembl', u'pass', u'asbesto', u'anim', u'cruelti', u'law']
[u'govt', u'plan', u'attract', u'skill', u'worker', u'kick']
[u'govt', u'review', u'adopt', u'legisl']
[u'act', u'april', u'coldest', u'seven', u'year']
[u'wont', u'rush', u'siren', u'investig']
[u'anderson', u'jone', u'england', u'injuri', u'worri']
[u'andrew', u'deni', u'law', u'flaw', u'train']
[u'aust', u'boost', u'sierra', u'leon', u'court', u'fund']
[u'australia', u'refuge', u'democrat']
[u'aviat', u'worker', u'face', u'drug', u'alcohol', u'test']
[u'bailey', u'accept', u'match']
[u'beazley', u'commit', u'work', u'hard']
[u'beazley', u'defend', u'link', u'fight', u'miner', u'plight']
[u'beazley', u'dismiss', u'leadership', u'poll']
[u'beazley', u'unrepent', u'rhetor']
[u'berlusconi', u'resign', u'italian']
[u'crowd', u'turn', u'march']
[u'blueprint', u'target', u'strategi', u'combat', u'rural']
[u'bogut', u'buck', u'verg', u'elimin']
[u'bolivia', u'nationalis', u'resourc']
[u'bomb', u'java', u'polic', u'raid']
[u'bore', u'machin', u'oper', u'rescu']
[u'breakthrough', u'wind', u'farm', u'power', u'connect']
[u'brough', u'pledg', u'indigen', u'input', u'town', u'camp']
[u'budget', u'airlin', u'help', u'bolster', u'airport', u'busi']
[u'depot', u'secur', u'boost']
[u'plung', u'creek', u'dead']
[u'campaign', u'bait', u'wild', u'dog']
[u'candi', u'premier', u'sydney']
[u'canola', u'grower', u'benefit', u'high', u'price']
[u'cattleman', u'say', u'fault', u'japan', u'beef']
[u'put', u'focus', u'break', u'hill', u'orebodi']
[u'central', u'australian', u'watch', u'budget', u'prioriti']
[u'child', u'malnutrit', u'problem', u'address', u'unicef']
[u'climat', u'chang', u'shift', u'goyder', u'line']
[u'closer', u'abcnew']
[u'head', u'warn', u'tax', u'compo']
[u'seek', u'polic', u'report', u'biki', u'brawl']
[u'coal', u'miner', u'seek', u'mine', u'method']
[u'cole', u'increas', u'comeback', u'pace']
[u'commerci', u'beekeep', u'close', u'shop']
[u'communiti', u'group', u'appeal', u'wind', u'farm']
[u'compani', u'overstep', u'mark', u'promot', u'drug']
[u'consum', u'demand', u'boost', u'busi', u'confid', u'survey']
[u'coral', u'boat', u'ramp', u'work', u'expect', u'start', u'soon']
[u'corrim', u'rotari', u'member', u'help', u'filipino', u'child']
[u'cosgrov', u'smash', u'half', u'centuri', u'glamorgan']
[u'council', u'administr', u'accus', u'declar']
[u'council', u'apologis', u'hous', u'number']
[u'council', u'consid', u'airport', u'expans']
[u'council', u'play', u'pond', u'health', u'concern']
[u'council', u'contribut', u'indigen', u'apolog', u'document']
[u'council', u'urg', u'form', u'allianc', u'share', u'resourc']
[u'council', u'crack', u'disabl', u'park', u'breach']
[u'council', u'warn', u'dodgi', u'contractor']
[u'crew', u'work', u'blast', u'damag', u'adelaid', u'build']
[u'dairi', u'industri', u'revis', u'target']
[u'diamond', u'miner', u'focus', u'worker', u'accommod']
[u'discoveri', u'command', u'wave', u'goodby', u'nasa']
[u'diver', u'inspect', u'ship', u'ground']
[u'doctor', u'shortag', u'creat', u'unsaf', u'work', u'hour', u'worri']
[u'domino', u'eye', u'slice', u'european', u'market']
[u'downer', u'consid', u'request', u'extens', u'timor']
[u'dozen', u'detain', u'timor', u'riot']
[u'season', u'arriv']
[u'east', u'timor', u'rebel', u'leader', u'continu', u'fight']
[u'timor', u'soldier', u'didnt', u'protest', u'ramo']
[u'evacu', u'bushfir', u'flare']
[u'expert', u'arriv', u'advis', u'miner', u'rescu']
[u'playboy', u'model', u'anna', u'nicol', u'smith', u'win', u'rule']
[u'extra', u'fuel', u'subsidi', u'urg', u'sugar', u'farmer']
[u'famili', u'fellow', u'soldier', u'farewel', u'privat', u'kovco']
[u'farmer', u'confid', u'fall', u'price', u'rise']
[u'farmer', u'western', u'derbi']
[u'farmer', u'risk', u'match']
[u'farmer', u'hope', u'feder', u'drought']
[u'fear', u'miss', u'adelaid', u'blast']
[u'fear', u'miss', u'adelaid', u'blast']
[u'feder', u'govt', u'fund', u'airport', u'secur', u'upgrad']
[u'firefight', u'union', u'welcom', u'staff', u'review']
[u'firm', u'asbesto', u'site']
[u'forens', u'test', u'adelaid', u'blast', u'scene']
[u'freshwat', u'flow', u'need', u'protect', u'rainforest']
[u'fuel', u'effici', u'futur', u'industri']
[u'field', u'promis', u'benefit']
[u'geraldton', u'happi', u'longer', u'merger', u'right']
[u'gillard', u'rudd', u'popular', u'beazley']
[u'govt', u'urg', u'encourag', u'water', u'tank']
[u'greenpeac', u'urg', u'illeg', u'log', u'timber']
[u'heart', u'diseas', u'obes', u'stat', u'caus', u'alarm', u'heart']
[u'hick', u'arrog']
[u'rock', u'search', u'power', u'steam', u'turbin']
[u'hundr', u'attend', u'kovco', u'funer']
[u'illusionist', u'blain', u'hold', u'breath']
[u'immigr', u'deni', u'endang', u'chines', u'asylum']
[u'increas', u'amphetamin', u'alarm', u'govt']
[u'india', u'clear', u'wheat', u'shipment', u'pesticid', u'fear']
[u'inquiri', u'examin', u'fund', u'transport', u'corridor']
[u'investor', u'ask', u'lodg', u'saleyard', u'leas', u'propos']
[u'iran', u'jail', u'swede', u'spi']
[u'court', u'challeng', u'reason', u'chanc', u'beatti']
[u'jacob', u'kovco', u'lay', u'rest']
[u'juri', u'show', u'video', u'raid', u'lodhi', u'home']
[u'kalgoorli', u'attack', u'direct', u'debit', u'welfar', u'plan']
[u'kangaroo', u'accus', u'disrespect']
[u'kangaroo', u'throw', u'support', u'hunt']
[u'kempsey', u'council', u'look', u'balanc', u'budget']
[u'laidley', u'stand', u'thompson']
[u'lake', u'cowal', u'produc', u'gold']
[u'lawyer', u'reject', u'claim', u'hick', u'arrog']
[u'lethal', u'admit', u'midfield', u'past']
[u'lethal', u'say', u'docker', u'deserv', u'point']
[u'local', u'govt', u'group', u'defend', u'councillor', u'polit']
[u'maitland', u'council', u'look', u'rate', u'rise', u'govt']
[u'maitua', u'recal', u'bulldog']
[u'male', u'suicid', u'forum', u'aim', u'answer']
[u'charg', u'alleg', u'semi', u'automat']
[u'get', u'year', u'jail', u'murder', u'lover']
[u'condit', u'blue', u'mountain', u'fall']
[u'kill', u'adelaid', u'cafe', u'explos']
[u'rescu', u'water', u'tank', u'ordeal']
[u'pocket', u'save', u'face', u'court']
[u'marin', u'retain']
[u'market', u'plan', u'aim', u'boost', u'student', u'number']
[u'mayor', u'open', u'emerg', u'centr']
[u'mayor', u'reflect', u'drought', u'impact']
[u'mayor', u'beat', u'templ', u'support']
[u'medic', u'scholarship', u'erod']
[u'meet', u'canva', u'fortuna', u'villa', u'view']
[u'rescu', u'attempt', u'enter', u'delic', u'stage']
[u'rescu', u'make', u'slow', u'progress']
[u'rescu', u'progress', u'slowli']
[u'miner', u'rescu', u'enter', u'phase']
[u'miner', u'rescu', u'oper', u'enter', u'phase']
[u'miner', u'face', u'night', u'underground']
[u'minist', u'stand', u'hospit', u'time', u'line']
[u'mitchel', u'leav', u'red']
[u'money', u'alcohol', u'court', u'say', u'agenc']
[u'reject', u'local', u'govt', u'merger', u'report']
[u'say', u'wind', u'farm', u'legal', u'fight', u'wast', u'money']
[u'mudge', u'go', u'rainfal', u'trend']
[u'napster', u'offer', u'free', u'music']
[u'hold', u'high', u'hop', u'sixer', u'futur']
[u'minist', u'target', u'hous', u'cost']
[u'pump', u'manag', u'team', u'oper', u'soon']
[u'resolut', u'airport', u'region', u'servic', u'issu']
[u'north', u'straddi', u'flare']
[u'judg', u'face', u'health', u'check']
[u'rescu', u'expert', u'head', u'tasmania']
[u'budget', u'alloc', u'fall', u'short', u'polic']
[u'price', u'comment', u'boost', u'dollar']
[u'dead', u'melbourn', u'build', u'collaps']
[u'insurg', u'kill', u'ramadi']
[u'pearl', u'farm', u'purchas', u'posit', u'sign', u'industri']
[u'phelp', u'pull', u'stump']
[u'plan', u'transform', u'legal']
[u'plant', u'evolv', u'quicker', u'tropic', u'zone', u'studi']
[u'attend', u'kovco', u'funer']
[u'polar', u'bear', u'hippo', u'threaten']
[u'polic', u'fatal', u'train', u'crash', u'wit']
[u'polic', u'continu', u'appeal', u'driver']
[u'polic', u'man', u'bodi', u'adelaid', u'explos']
[u'polic', u'investig', u'toddler', u'drown']
[u'polic', u'uncov', u'bali', u'explos', u'devic', u'link']
[u'plater', u'clock', u'lose', u'licenc']
[u'public', u'urg', u'storm', u'readi']
[u'push', u'continu', u'mental', u'health', u'hous']
[u'qanta', u'welcom', u'aviat', u'drug', u'test', u'plan']
[u'govt', u'give', u'decis', u'week']
[u'rat', u'uncertainti', u'ahead', u'meet']
[u'repair', u'affect', u'shepparton', u'melbourn', u'rail']
[u'rescu', u'effort', u'continu', u'trap', u'miner']
[u'research', u'highlight', u'improv', u'snowi', u'health']
[u'research', u'suggest', u'australian', u'work', u'hard']
[u'resid', u'form', u'committe']
[u'resid', u'highlight', u'level', u'cross', u'safeti', u'fear']
[u'resourc', u'bank', u'drag', u'market', u'lower']
[u'result', u'sheep', u'pesticid', u'review', u'time']
[u'rfds', u'highlight', u'remot', u'recruit', u'challeng']
[u'rice', u'deputi', u'head', u'darfur', u'peac', u'talk']
[u'richard', u'make', u'speedi', u'recoveri']
[u'ruddock', u'inspect', u'work', u'famili', u'crisi', u'centr']
[u'rugbi', u'tour', u'boost', u'economi']
[u'rural', u'student', u'seek', u'mine', u'vacanc']
[u'search', u'miss', u'japanes', u'engin']
[u'season', u'whale', u'sight', u'expect', u'surfac']
[u'secker', u'feder', u'govt', u'confer']
[u'senat', u'committe', u'back', u'abolit', u'board', u'post']
[u'shark', u'face', u'punish', u'drunken']
[u'shot', u'fire', u'melbourn', u'jewelleri', u'theft']
[u'skeptic', u'silvestr', u'say', u'deserv', u'place']
[u'skill', u'migrant', u'minimum', u'wage', u'hurt', u'busi']
[u'skill', u'shortag', u'spark', u'council']
[u'staff', u'shortag', u'banana', u'grower']
[u'stem', u'cell', u'research', u'boost', u'brisban']
[u'georg', u'post', u'record', u'half', u'year', u'profit']
[u'stirl', u'hand', u'sound', u'budget']
[u'stockman', u'boost', u'outback', u'tourism']
[u'supermarket', u'sale', u'sadden', u'owner']
[u'survey', u'pressur', u'rate', u'rise']
[u'sydney', u'lord', u'mayor', u'answer', u'ratepay']
[u'tambo', u'council', u'get', u'health', u'centr', u'fund']
[u'tens', u'wait', u'rescu', u'enter', u'delic', u'stage']
[u'territori', u'taxi', u'servic', u'deplor', u'say', u'hargreav']
[u'thaiday', u'week']
[u'thousand', u'attend', u'alic', u'spring']
[u'jail', u'scream', u'theft']
[u'kill', u'suicid', u'attack']
[u'tokyo', u'restaur', u'victorian', u'produc']
[u'tonga', u'origin', u'hop', u'rock']
[u'tourism', u'australia', u'urg', u'work', u'play']
[u'check', u'urg', u'swallow', u'magnet']
[u'trap', u'miner', u'good', u'spirit', u'rescu', u'continu']
[u'trap', u'miner', u'walk', u'union', u'say']
[u'tribut', u'flow', u'labor', u'hero']
[u'turnbul', u'hear', u'river', u'flow', u'worri']
[u'kill', u'secur', u'base', u'blast']
[u'kill', u'suspect', u'suicid', u'attack']
[u'illeg', u'stop', u'work', u'protest', u'immigr', u'law']
[u'vanston', u'cap', u'refuge', u'number']
[u'vet', u'warn', u'preserv', u'food']
[u'govt', u'extend', u'school', u'speed', u'zone']
[u'victoria', u'introduc', u'human', u'right', u'charter']
[u'polic', u'defend', u'retreat', u'assault', u'sentenc']
[u'premier', u'rule', u'kimberley', u'water', u'canal']
[u'warn', u'rule', u'comeback']
[u'tech', u'colleg', u'open', u'year']
[u'welfar', u'move', u'prompt', u'concern', u'needi']
[u'wiki', u'test', u'injur', u'hamstr']
[u'wingecarribe', u'council', u'union', u'return']
[u'wolfensohn', u'step', u'gaza', u'envoy']
[u'woman', u'die', u'crash']
[u'woman', u'hurt', u'blast']
[u'tortur', u'bodi', u'baghdad']
[u'earmark', u'gunnedah', u'capit', u'work']
[u'aborigin', u'corpor', u'fin', u'neglect', u'cattl']
[u'abus', u'victim', u'support', u'centr', u'open']
[u'accid', u'delay', u'beaconsfield', u'gold', u'dividend']
[u'accus', u'deni', u'role', u'brink', u'robberi']
[u'adelaid', u'darwin', u'freight', u'oper', u'seek']
[u'miss', u'place']
[u'situat', u'say', u'pagan']
[u'wait', u'solomon', u'leader']
[u'agforc', u'see', u'benefit', u'work', u'chang', u'law']
[u'passeng', u'crew', u'kill', u'armenian', u'crash']
[u'ambassador', u'mull', u'aust', u'troop', u'deploy', u'sudan']
[u'ampute', u'break', u'prosthet', u'everest', u'climb']
[u'extens', u'darfur', u'peac', u'talk']
[u'aust', u'mammal', u'endang']
[u'australian', u'contractor', u'injur', u'iraq', u'blast']
[u'australian', u'film', u'presenc', u'cann', u'success']
[u'barrett', u'close', u'decis', u'futur']
[u'batchelor', u'defend', u'fast', u'rail', u'contract', u'chang']
[u'beatti', u'open', u'health', u'fund', u'benchmark']
[u'beazley', u'consign', u'medicar', u'gold', u'histori']
[u'beazley', u'defiant', u'despit', u'critic']
[u'beazley', u'dump', u'latham', u'school', u'polici']
[u'beazley', u'maintain', u'steadi', u'fight', u'offic']
[u'bike', u'rid', u'arm', u'bandit', u'rob', u'credit', u'union']
[u'black', u'box', u'record', u'polic', u'car']
[u'boss', u'consid', u'blog']
[u'brack', u'urg', u'action', u'rat']
[u'brazil', u'star', u'quartet', u'featur', u'open']
[u'brenton', u'bowen', u'win', u'start', u'cowboy']
[u'break', u'hill', u'council', u'await', u'local', u'govt', u'report']
[u'brough', u'wont', u'oppos', u'nation', u'park', u'hand']
[u'burrowscop', u'aid', u'fight', u'save', u'penguin']
[u'busi', u'warn', u'rate', u'rise', u'aftermath']
[u'campaign', u'urg', u'public', u'report', u'danger', u'drive']
[u'canberra', u'busi', u'condemn', u'skill', u'migrant']
[u'cancer', u'council', u'caution', u'screen', u'research']
[u'launch', u'tenth', u'season']
[u'chang', u'improv']
[u'childcar', u'giant', u'lose', u'court', u'appeal']
[u'chines', u'fail', u'asylum', u'seeker', u'vanston']
[u'closer', u'abcnew']
[u'dismiss', u'unremark', u'budget']
[u'coal', u'alli', u'record', u'hunter', u'coal', u'mine', u'profit']
[u'commiss', u'meet', u'siren', u'fiasco']
[u'commiss', u'rule', u'siren', u'fiasco']
[u'communiti', u'welcom', u'confirm']
[u'compani', u'rais', u'fund', u'altern', u'energi', u'search']
[u'concern', u'rais', u'aquif', u'plan', u'environment']
[u'costello', u'dismiss', u'impact', u'rate', u'rise']
[u'costello', u'play', u'line', u'ball', u'rate', u'hike']
[u'councillor', u'warn', u'tree', u'remov']
[u'council', u'alert', u'beatti', u'worri']
[u'council', u'water', u'comment', u'puzzl', u'countri', u'energi']
[u'council', u'ask', u'vote', u'chang']
[u'council', u'want', u'work', u'rail', u'group', u'boost']
[u'countri', u'allianc', u'name', u'western', u'region', u'candid']
[u'cowboy', u'pick', u'brenton', u'bowen', u'penrith', u'clash']
[u'crusad', u'rest', u'captain', u'vital', u'bull', u'clash']
[u'defenc', u'face', u'helicopt', u'blow']
[u'docker', u'award', u'saint']
[u'doctor', u'blame', u'water', u'babi', u'defect']
[u'drill', u'begin', u'trap', u'miner']
[u'drill', u'start', u'rescu']
[u'driver', u'fin', u'beach', u'speed']
[u'condit', u'toll']
[u'elect', u'surgeri', u'wait', u'time', u'drop', u'mackay']
[u'electr', u'wire', u'spark', u'blaze']
[u'england', u'lose', u'injur', u'anderson', u'month']
[u'explain', u'water', u'charg', u'reduct']
[u'cancel', u'talk', u'serbia']
[u'expens', u'bike', u'target', u'cycl', u'shop', u'theft']
[u'deni', u'ferguson', u'eriksson', u'rift']
[u'farmer', u'battl', u'fleaban']
[u'farmer', u'disput', u'govt', u'report', u'figur']
[u'foam', u'save', u'australian']
[u'forum', u'focus', u'burrup', u'rock', u'signific']
[u'friday', u'funer', u'servic', u'farewel', u'silo', u'manag']
[u'fruit', u'grower', u'attend', u'crisi', u'summit']
[u'fund', u'expand', u'servic', u'elder']
[u'germani', u'second', u'favourit', u'rooney', u'injuri']
[u'giant', u'snake', u'skin', u'fascin', u'nathalia']
[u'gold', u'medal', u'take', u'perth', u'robberi']
[u'govt', u'acknowledg', u'countri', u'medic', u'foundat']
[u'govt', u'criticis', u'hold', u'age', u'care']
[u'govt', u'dismiss', u'impact', u'rate', u'rise']
[u'govt', u'offer', u'diesel', u'price', u'rise', u'assur']
[u'govt', u'quiz', u'portland', u'land', u'issu']
[u'hacker', u'defam', u'canadian', u'train', u'sign']
[u'hiker', u'lose', u'snow', u'cover', u'highland']
[u'hill', u'lead', u'bomber', u'lloyd', u'absenc']
[u'hitman', u'jail', u'underworld', u'kill']
[u'hope', u'meet', u'resolv', u'stop', u'issu']
[u'hospit', u'chief', u'prais', u'effort', u'surgeri']
[u'illeg', u'fishermen', u'spot', u'gulf']
[u'indonesia', u'say', u'receiv', u'tsunami']
[u'industri', u'fund', u'benefit', u'mitsubishi', u'worker']
[u'infil', u'sewerag', u'project', u'caus', u'traffic', u'delay']
[u'injur', u'timores', u'offic', u'move', u'darwin']
[u'injuri', u'ravag', u'red', u'chang']
[u'inquiri', u'begin', u'disast']
[u'inquiri', u'look', u'toughen', u'domest', u'drug', u'law']
[u'rate', u'blow', u'homeown']
[u'rate', u'promis', u'intact', u'howard']
[u'rat', u'rise']
[u'rat', u'rise']
[u'iran', u'sanction', u'prematur', u'ambassador']
[u'iran', u'warn', u'strike']
[u'irrig', u'water', u'restor', u'amidst', u'blue', u'green', u'alga']
[u'kangaroo', u'target', u'marshal']
[u'kempsey', u'council', u'seek', u'fund', u'maria', u'river']
[u'kennedi', u'seek', u'reveng', u'kiwi']
[u'khodorkovski', u'hunger', u'strike']
[u'knight', u'lament', u'injuri', u'suspens']
[u'larg', u'sale', u'slump']
[u'lawyer', u'tight', u'lip', u'averi', u'status']
[u'leaki', u'defenc', u'sink', u'pole']
[u'liber', u'seek', u'answer', u'chief', u'scientist']
[u'lodhi', u'workmat', u'tell', u'view']
[u'macfarlan', u'support', u'clone', u'human', u'embryo']
[u'maitland', u'council', u'defend', u'rate', u'rise', u'plan']
[u'malik', u'surgeri', u'correct', u'action']
[u'jail', u'stepdaught', u'abus']
[u'face', u'court', u'accus', u'traffic']
[u'market', u'shrug', u'rate', u'rise']
[u'marshal', u'clear', u'line', u'kangaroo']
[u'mayor', u'beat', u'main', u'street', u'makeov']
[u'meat', u'compani', u'consid', u'option', u'worker']
[u'media', u'score', u'global', u'trust', u'poll']
[u'medic', u'profession', u'face', u'assault', u'trial']
[u'meet', u'put', u'piggeri', u'plan', u'spotlight']
[u'melb', u'busi', u'leader', u'launch', u'salvo', u'appeal']
[u'death', u'prompt', u'manslaught', u'debat']
[u'rescu', u'hold', u'concret', u'dri']
[u'minist', u'tell', u'drought', u'impact']
[u'monsoon', u'trough', u'begin', u'away']
[u'mortag', u'duti', u'effect']
[u'throat', u'cut', u'remark', u'draw', u'protest']
[u'want', u'boost', u'patient', u'transport', u'subsidi']
[u'nation', u'seek', u'better', u'protect', u'volunt']
[u'nation', u'protest', u'propos', u'detent', u'law']
[u'set', u'june', u'deadlin', u'sixer', u'sale']
[u'netbal', u'get', u'star', u'treatment']
[u'defenc', u'helicopt', u'unsaf', u'audit']
[u'idea', u'showcas', u'innov', u'festiv']
[u'law', u'tighten', u'contract', u'rule']
[u'busi', u'chamber']
[u'korea', u'unlik', u'cave', u'south', u'korea']
[u'sign', u'survivor', u'plane', u'crash', u'site']
[u'thing', u'puppi', u'expert']
[u'green', u'hous', u'law', u'threat']
[u'doctor', u'backflip', u'legal', u'drink']
[u'opposit', u'attack', u'beach', u'land']
[u'opposit', u'introduc', u'civil', u'union']
[u'armenian', u'plane', u'crash']
[u'patient', u'urg', u'question', u'medic', u'cost']
[u'petit', u'highlight', u'marin', u'park', u'worri']
[u'plane', u'passeng', u'crash', u'black']
[u'polic', u'charg', u'wood', u'carolin', u'byrn', u'murder']
[u'polic', u'consid', u'murder', u'motiv', u'adelaid', u'blast']
[u'polic', u'investig', u'bodi']
[u'polic', u'charg', u'town', u'camp', u'death']
[u'polic', u'seek', u'fatal', u'crash', u'wit']
[u'polic', u'seek', u'public', u'help', u'miss']
[u'poll', u'open', u'side', u'chad', u'elect']
[u'protest', u'clash', u'polic', u'indonesian']
[u'public', u'submiss', u'seek', u'sussex', u'inlet', u'plan']
[u'public', u'support', u'recycl', u'scheme']
[u'punch', u'mouth', u'earn', u'jail', u'sentenc']
[u'push', u'phase', u'farm']
[u'push', u'simplifi', u'school', u'report']
[u'qanta', u'plan', u'job']
[u'rain', u'come', u'right', u'time', u'grain', u'grower']
[u'rain', u'forc', u'fuel', u'reduct', u'burn', u'rethink']
[u'ralli', u'condemn', u'urban', u'plan', u'polici']
[u'ramo', u'horta', u'play', u'rebel', u'claim']
[u'rate', u'hike', u'unwelcom', u'unjustifi']
[u'ratepay', u'face', u'rate', u'rise']
[u'rate', u'rise', u'ludicr', u'farmer']
[u'rate', u'rise', u'home', u'buyer', u'hardest', u'real']
[u'rat', u'hike', u'hurt', u'commod', u'outlook']
[u'rais', u'rat']
[u'rais', u'rat']
[u'rescuer', u'drill', u'trap', u'miner']
[u'rescuer', u'prepar', u'final', u'stage', u'rescu']
[u'rini', u'demand', u'australia', u'recal', u'diplomat']
[u'road', u'victim', u'daughter', u'welcom', u'upgrad']
[u'rudd', u'back', u'beazley', u'leadership']
[u'screen', u'prompt', u'drop', u'breast', u'cancer', u'death', u'rate']
[u'search', u'barraba', u'altern', u'water', u'suppli']
[u'serial', u'paedophil', u'deport']
[u'servic', u'industri', u'chart', u'growth']
[u'shire', u'plan', u'look', u'jobless', u'rate']
[u'shoot', u'death', u'consid', u'suspici']
[u'shop', u'centr', u'say', u'code', u'address', u'dress', u'standard']
[u'snowi', u'hydro', u'defend', u'privatis']
[u'feel', u'rate', u'rise']
[u'speed', u'contribut', u'fatal', u'road', u'crash']
[u'spend', u'cut', u'motion', u'prompt', u'debat']
[u'stanhop', u'reject', u'budget', u'deficit', u'claim']
[u'state', u'ward', u'inquiri', u'look', u'foster', u'care']
[u'stirl', u'admit', u'middl', u'school', u'time', u'constraint']
[u'sting', u'posti', u'forc', u'return', u'compo']
[u'sugar', u'plead', u'guilti', u'pollut', u'waterway']
[u'summit', u'tackl', u'obes', u'problem']
[u'support', u'kimberley', u'water', u'plan', u'reject']
[u'swan', u'hope', u'keep', u'kennelli']
[u'swiss', u'travel', u'agent', u'tast', u'ningaloo']
[u'toyn', u'admit', u'health', u'fund', u'miss', u'budget']
[u'trap', u'miner', u'assist', u'rescu', u'effort']
[u'trap', u'miner', u'rescu']
[u'treasur', u'urg', u'improv', u'health']
[u'trio', u'plead', u'guilti', u'harito', u'murder']
[u'trucki', u'die', u'irrig', u'channel', u'crash']
[u'campaign', u'highlight', u'bypass', u'delay']
[u'lose', u'anzac', u'brawl']
[u'uluru', u'sunris', u'boost', u'visitor', u'number']
[u'uncertain', u'futur', u'night', u'patrol']
[u'union', u'call', u'lift', u'standard']
[u'gogh', u'portrait', u'fetch']
[u'vegi', u'grower', u'angri', u'govt', u'label', u'stanc']
[u'violenc', u'greet', u'brough', u'wadey']
[u'boom', u'rate', u'rise', u'buffer', u'economist']
[u'govt', u'move', u'closer', u'name', u'potenti', u'remand']
[u'wait', u'list', u'outsid', u'benchmark']
[u'opposit', u'urg', u'state', u'relief']
[u'premier', u'dismiss', u'kimberley', u'water', u'project']
[u'waratah', u'work', u'hard', u'scrum']
[u'water', u'access', u'hinder', u'explos', u'plant', u'plan']
[u'weld', u'accid', u'injur', u'elder']
[u'wind', u'farm', u'discuss', u'paper', u'debat']
[u'wind', u'turbin', u'plan', u'creat', u'worri']
[u'wood', u'rout', u'sydney']
[u'wood', u'sydney', u'face', u'murder', u'charg']
[u'wool', u'pool', u'help', u'grower']
[u'work', u'continu', u'lake', u'feder', u'project']
[u'worker', u'lose', u'lower', u'meatwork', u'mishap']
[u'work', u'holiday', u'visa', u'rule', u'relax']
[u'workshop', u'debat', u'highway', u'revamp', u'option']
[u'miss', u'bulk', u'carrier', u'sink']
[u'abba', u'peac', u'deal', u'vote']
[u'abbott', u'see', u'struggl', u'medicar', u'gold']
[u'acf', u'hop', u'feder', u'budget']
[u'tweak', u'civil', u'union']
[u'actus', u'solut', u'child', u'care', u'headach']
[u'club', u'demand', u'massiv', u'fund', u'boost']
[u'census', u'shed', u'light', u'cattl', u'number']
[u'agfest', u'crowd', u'brave', u'tassi', u'cold']
[u'airport', u'see', u'benefit', u'qanta', u'expans']
[u'asthma', u'treatment', u'guidelin', u'outdat', u'studi']
[u'aust', u'singapor', u'lead', u'pandem', u'test']
[u'bank', u'resourc', u'stock', u'drag', u'market', u'lower']
[u'barcelona', u'championship', u'class']
[u'barrett', u'confirm', u'wigan']
[u'beatti', u'put', u'obes', u'fight']
[u'blackburn', u'snap', u'hugh']
[u'bogut', u'buck', u'play', u'off']
[u'bolton', u'boss', u'tip', u'mcclaren', u'england']
[u'britain', u'take', u'charg', u'isaf', u'afghanistan']
[u'budget', u'committe', u'accus', u'silli']
[u'budget', u'fund', u'illeg', u'fish', u'crackdown']
[u'budget', u'help', u'incontin', u'suffer']
[u'bushwalk', u'miss', u'pair']
[u'cater', u'industri', u'seek', u'asio', u'brief']
[u'caution', u'urg', u'woolgrow', u'want', u'quit']
[u'offic', u'deni', u'take', u'charg', u'bushfir']
[u'child', u'abus', u'safe', u'hous', u'open', u'brisban']
[u'chines', u'pair', u'face', u'court', u'illeg', u'fish', u'charg']
[u'civic', u'centr', u'begin', u'tender', u'accept']
[u'click', u'retir', u'shear']
[u'closer']
[u'closer', u'abcnew']
[u'coal', u'price', u'prompt', u'reopen']
[u'communiti', u'meet', u'offend', u'concern']
[u'compens', u'chang', u'help', u'victim', u'crime']
[u'competit', u'hot', u'beef']
[u'concern', u'elect', u'surgeri', u'patient', u'tell']
[u'cook', u'veget', u'acid', u'soft', u'drink']
[u'corbel', u'acknowledg', u'civil', u'union', u'opposit']
[u'coron', u'see', u'crimin', u'ching', u'death']
[u'council', u'approv', u'rocklea', u'develop']
[u'council', u'invit', u'tender', u'airport', u'upgrad']
[u'councillor', u'defend', u'vote', u'park']
[u'council', u'need', u'share', u'rat', u'mayor']
[u'council', u'shark', u'visitor', u'centr']
[u'council', u'urg', u'continu', u'market', u'push']
[u'courthous', u'bomb', u'kill', u'iraqi']
[u'croc', u'pull', u'popular', u'swim', u'area']
[u'final', u'balanc', u'roma', u'salvag', u'draw']
[u'death', u'child', u'protect', u'fall']
[u'deform', u'cattl', u'virus', u'spread', u'west']
[u'develop', u'claim', u'approv', u'croc', u'park']
[u'dioxin', u'leak', u'shut', u'water', u'treatment', u'plant']
[u'docker', u'reliev', u'award', u'victori']
[u'doctor', u'stop', u'work', u'rise', u'disput']
[u'downer', u'confid', u'solomon', u'peac', u'hold']
[u'downer', u'unfaz', u'ambassador', u'absenc']
[u'doyl', u'quit', u'victorian', u'liber', u'leader']
[u'drill', u'begin', u'rescu', u'effort']
[u'eriksson', u'give', u'mcclaren', u'england', u'thumb']
[u'esper', u'desalin', u'plant']
[u'call', u'serbian', u'membership', u'talk']
[u'exmouth', u'sentenc', u'child', u'porn']
[u'insur', u'england', u'world', u'exit']
[u'farmer', u'seek', u'stake', u'cane', u'product']
[u'farmer', u'tell', u'daughter', u'experi', u'egypt', u'blast']
[u'fear', u'port', u'macquari', u'hospit', u'mental', u'health']
[u'fear', u'young', u'hospit', u'worker', u'suffer']
[u'final', u'statement', u'lodg', u'gambl', u'licenc', u'review']
[u'fishermen', u'spot', u'illeg', u'oper', u'gulf']
[u'fish', u'industri', u'tell', u'improv', u'safeti']
[u'fortun', u'tell', u'judg', u'sack', u'come']
[u'fuel', u'theft', u'prompt', u'diesel', u'warn']
[u'fund', u'alloc', u'pacif', u'highway', u'upgrad']
[u'geraldton', u'station', u'understaf', u'year']
[u'global', u'warm', u'weaken', u'current']
[u'gold', u'carniv']
[u'govt', u'deni', u'deal', u'busselton', u'jetti', u'restor']
[u'govt', u'holiday', u'worker', u'scheme', u'extend']
[u'govt', u'rule', u'fee', u'public', u'dental']
[u'govt', u'attack', u'press', u'freedom']
[u'govt', u'urg', u'work', u'improv', u'council']
[u'govt', u'boost', u'assist', u'drought', u'stricken']
[u'govt', u'pressur', u'fund', u'maryborough', u'scanner']
[u'govt', u'urg', u'begin', u'corella', u'bait']
[u'govt', u'urg', u'help', u'wool', u'debt']
[u'govt', u'use', u'websit', u'boost', u'anti', u'whale', u'effort']
[u'green', u'defend', u'legisl', u'chang', u'yallingup']
[u'green', u'leader', u'question', u'bushfir', u'prepar']
[u'growcom', u'urg', u'compo', u'affect', u'farmer']
[u'hackett', u'earli', u'return', u'injuri']
[u'haddin', u'lead', u'team', u'festiv']
[u'heat', u'crusad', u'super', u'bull', u'ring']
[u'high', u'court', u'challeng', u'begin']
[u'high', u'court', u'law', u'case']
[u'hodgson', u'chanc', u'face', u'eagl']
[u'hop', u'whale', u'shark', u'festiv', u'educ']
[u'hous', u'trust', u'chang', u'diabol', u'chariti']
[u'hundr', u'hurt', u'clash', u'south', u'korea', u'base']
[u'iemma', u'seek', u'detail', u'wood', u'bail']
[u'indigen', u'hous', u'crisi', u'investig']
[u'case', u'consid', u'constitut', u'author', u'intent']
[u'japanes', u'firm', u'plan', u'sequestr', u'project']
[u'ski', u'lifesav', u'coastal', u'darwin']
[u'juri', u'sentenc', u'moussaoui', u'life', u'prison']
[u'kennett', u'mull', u'return', u'polit']
[u'labor', u'accus', u'privat', u'school', u'fund', u'freez']
[u'lamb', u'sale', u'japan', u'boom']
[u'law', u'allow', u'test', u'mental', u'offend']
[u'lead', u'waltz', u'matilda', u'expert', u'die']
[u'leav', u'buddi', u'testifi', u'drug', u'smuggl', u'trial']
[u'lion', u'debut']
[u'littbarski', u'walk', u'away', u'sydney']
[u'local', u'govt', u'guid', u'spell', u'oblig']
[u'local', u'lobbi', u'rail', u'option', u'south', u'east']
[u'local', u'welcom', u'bypass', u'tender']
[u'lose', u'bushwalk', u'prepar', u'prais']
[u'face', u'court', u'arm', u'robberi']
[u'sue', u'right', u'graffiti', u'hous']
[u'face', u'court']
[u'tasmanian', u'ignor', u'weight', u'issu', u'studi']
[u'massiv', u'quak', u'hit', u'tonga']
[u'mckinna', u'sign', u'marin']
[u'medicar', u'cover', u'midwiferi', u'nurs']
[u'fin', u'molass', u'spill']
[u'mill', u'govt', u'arriv', u'timber', u'deal']
[u'rescu', u'enter', u'critic', u'stag']
[u'rescu', u'mission', u'progress']
[u'rescu', u'team', u'battl', u'competit']
[u'miner', u'night', u'underground']
[u'minist', u'confid', u'nation', u'park', u'negoti']
[u'minist', u'head', u'western', u'drought', u'worsen']
[u'mitchel', u'join', u'forc']
[u'moussaoui', u'escap', u'death', u'sentenc']
[u'moussaoui', u'sentenc', u'life', u'prison']
[u'deposit', u'unearth', u'ballarat', u'gold']
[u'murray', u'cross', u'search', u'begin']
[u'solomon', u'elect']
[u'solomon', u'urg', u'work']
[u'costello', u'jump', u'labor']
[u'home', u'pipelin', u'worker', u'council']
[u'north', u'coast', u'construct', u'corner']
[u'school', u'shut', u'list', u'barr']
[u'timet', u'fluorid', u'rollout', u'dept']
[u'cut', u'dont']
[u'nurs', u'home', u'test', u'law']
[u'nutritionist', u'sceptic', u'compulsori', u'food', u'warn']
[u'opposit', u'seek', u'detail', u'mari', u'valley']
[u'opposit', u'slam', u'costello', u'dismiss', u'rat']
[u'optus', u'invest', u'despit', u'profit', u'squeez']
[u'orang', u'council', u'vote', u'rat', u'rise']
[u'petrol', u'station', u'driver', u'jail']
[u'picasso', u'portrait', u'excit', u'bidder']
[u'polic', u'assault', u'stanc', u'tough']
[u'polic', u'continu', u'probe', u'build', u'blast']
[u'polic', u'fear', u'lose', u'walker', u'health']
[u'polic', u'drug', u'crop', u'damag', u'hous']
[u'polic', u'interview', u'jump', u'plane']
[u'polic', u'press', u'doubl', u'murder', u'inquiri']
[u'polic', u'seek', u'help', u'attack', u'public']
[u'polic', u'seek', u'wit', u'break', u'hill', u'hous']
[u'pool', u'remain', u'close', u'mening', u'fear']
[u'poppi', u'processor', u'slash', u'price']
[u'hart', u'estat', u'claim', u'misinform']
[u'push', u'suicid', u'prevent', u'target', u'indigen']
[u'offer', u'landown', u'support', u'fight']
[u'rann', u'extend', u'jackson', u'nelson', u'term']
[u'rat', u'rise', u'help', u'australian', u'costello']
[u'resign', u'decis', u'doyl']
[u'retail', u'industri', u'shock', u'rate', u'rise']
[u'rioli', u'flag', u'possibl', u'retir']
[u'tinto', u'sharehold', u'queri', u'freeport', u'activ']
[u'rooney', u'need', u'world', u'miracl', u'eriksson']
[u'saint', u'wont', u'challeng', u'point', u'decis']
[u'saturn', u'day', u'longer', u'think']
[u'search', u'resum', u'walker', u'central', u'highland']
[u'secur', u'council', u'undecid', u'iran']
[u'sept', u'conspir', u'jail', u'life']
[u'sept', u'relat', u'welcom', u'moussaoui', u'sentenc']
[u'serena', u'miss', u'wimbledon', u'french', u'open']
[u'shark', u'disciplin']
[u'solomon', u'elect']
[u'soward', u'stay', u'rooster']
[u'staff', u'berri', u'courthous', u'ahead', u'open']
[u'state', u'union', u'challeng', u'law', u'high', u'court']
[u'steeplechas', u'race', u'carniv']
[u'stem', u'cell', u'research', u'centr', u'open']
[u'stirl', u'deni', u'middl', u'school', u'backdown']
[u'swan', u'track', u'roo']
[u'sydney', u'court', u'grant', u'wood', u'bail']
[u'tait', u'hop', u'impress', u'seri']
[u'takeov', u'chairman', u'resign', u'committe']
[u'leak', u'blame', u'dissolv', u'clay']
[u'task', u'forc', u'beaconsfield', u'recoveri']
[u'rescu', u'enter', u'critic', u'stag']
[u'overhaul', u'plan', u'find', u'support']
[u'teen', u'attempt', u'murder', u'sentenc', u'uphold']
[u'teen', u'face', u'court', u'mackay', u'murder']
[u'terror', u'warn', u'hotel', u'restaur']
[u'thousand', u'flee', u'mount', u'merapi', u'lava']
[u'tiwi', u'island', u'school', u'deal', u'landmark']
[u'tonga', u'lucki', u'quak', u'escap']
[u'tonga', u'quak', u'panic', u'zealand']
[u'nation', u'fluke', u'say', u'mcclennan']
[u'truck', u'driver', u'welcom']
[u'tsunami', u'fals', u'alarm', u'trigger', u'panic']
[u'tsunami', u'panic', u'prompt', u'emerg', u'plan', u'review']
[u'kill', u'south', u'east', u'crash']
[u'unhcr', u'hold', u'support', u'offshor', u'asylum']
[u'unionist', u'ralli', u'workplac', u'minist']
[u'warn', u'restructur', u'harm', u'nurs']
[u'assault', u'kill', u'iraqi', u'medic']
[u'dismiss', u'absurd', u'rendit', u'claim']
[u'vail', u'warn', u'doha', u'round', u'face', u'delay']
[u'vaughan', u'harmison', u'rule', u'lanka', u'test']
[u'juic', u'grade', u'appl', u'buyer']
[u'opposit', u'leader', u'resign']
[u'victorian', u'doctor', u'reject', u'deal']
[u'visa', u'chang', u'boost', u'backpack', u'number']
[u'potato', u'farmer', u'battl', u'wateri', u'condit']
[u'scienc', u'council', u'futur', u'uncertain']
[u'waterfront', u'delay', u'claim', u'reject']
[u'water', u'shame', u'campaign', u'resort']
[u'warn', u'govt', u'tri', u'stop', u'wind', u'farm']
[u'westpac', u'record', u'half', u'year', u'profit']
[u'whitak', u'break', u'waratah', u'game', u'record']
[u'wiki', u'fit', u'race', u'anzac', u'test']
[u'wimmera', u'launch', u'midwiferi', u'care', u'program']
[u'wind', u'farm', u'oppon', u'welcom', u'nation', u'code']
[u'wollongong', u'hospit', u'elect', u'surgeri', u'list', u'slash']
[u'women', u'urg', u'reach', u'star', u'local']
[u'wood', u'grant', u'bail', u'carolin', u'byrn', u'murder', u'case']
[u'wood', u'grant', u'bail', u'model', u'murder', u'case']
[u'worker', u'widen', u'rescu', u'tunnel']
[u'marin', u'park', u'design']
[u'world', u'onlin', u'survey', u'find']
[u'plan', u'town', u'camp']
[u'abbott', u'ask', u'gippsland', u'asbesto', u'research', u'fund']
[u'staff', u'elect', u'dempster', u'board']
[u'aileron', u'resid', u'sombrero', u'mexican', u'mutton']
[u'akermani', u'doubt', u'swan', u'clash']
[u'alpin', u'road', u'link', u'cost', u'rise']
[u'angkor', u'templ', u'reopen', u'public']
[u'angler', u'keen', u'join', u'fish', u'fiesta']
[u'aussi', u'trio', u'start', u'confid', u'north', u'carolina']
[u'australian', u'soldier', u'injur', u'afghanistan']
[u'aust', u'warn', u'solomon', u'cabinet', u'appoint']
[u'back', u'air', u'plan', u'crack', u'illeg']
[u'bathurst', u'accid', u'victim', u'die']
[u'beatti', u'back', u'sydney', u'rockhampton', u'flight']
[u'beatti', u'reject', u'valley', u'claim']
[u'beazley', u'brush', u'union', u'pressur', u'smith']
[u'beazley', u'howard', u'reject', u'school', u'fee', u'rebat']
[u'beef', u'program', u'add', u'produc', u'return']
[u'bike', u'journey', u'audit', u'region', u'road', u'condit']
[u'blair', u'local', u'elect']
[u'blair', u'reshuffl', u'cabinet', u'local', u'elect']
[u'bogut', u'head', u'rooki', u'squad']
[u'brumbi', u'turn', u'attent', u'johansson']
[u'brumbi', u'turn', u'attent', u'johansson']
[u'burn', u'victim', u'sophi']
[u'businessman', u'shock', u'cyclon', u'grant', u'snub']
[u'water', u'save', u'promot']
[u'cancer', u'servic', u'upgrad', u'delay', u'disadvantag']
[u'cat', u'lose', u'streak', u'continu']
[u'census', u'target', u'outback', u'grazier']
[u'champion', u'leagu', u'chase', u'spice', u'premiership', u'final']
[u'chlorid', u'ymca', u'shut', u'door', u'good']
[u'closer', u'abcnew']
[u'colleg', u'pleas', u'convers', u'deal']
[u'comment', u'seek', u'nation', u'senior', u'certif']
[u'commod', u'lift', u'market', u'higher']
[u'communiti', u'group', u'tougher', u'gambl', u'law']
[u'communiti', u'group', u'share']
[u'compani', u'fin', u'employe', u'death']
[u'consum', u'help', u'improv', u'tabl', u'grape']
[u'contact', u'len', u'solut', u'withdraw']
[u'coolgardi', u'shire', u'name', u'area']
[u'corbel', u'keelti', u'settl', u'polic']
[u'cosgrov', u'smash', u'debut', u'counti']
[u'council', u'rais', u'mine', u'worri', u'govt']
[u'council', u'seek', u'landfil', u'tender']
[u'cousin', u'face', u'final', u'fit', u'hurdl']
[u'cowboy', u'prepar', u'penrith', u'clash', u'ideal']
[u'cautious', u'licenc', u'test', u'propos']
[u'crew', u'extend', u'north', u'stradbrok', u'break']
[u'cricket', u'hand', u'rout']
[u'crowd', u'flock', u'break', u'hill', u'agfair']
[u'crow', u'wait', u'ricciuto', u'decis']
[u'push', u'north', u'west', u'radiotherapi', u'unit']
[u'cyclist', u'marathon', u'ride', u'youth', u'chariti']
[u'danih', u'expect', u'hungri', u'cat', u'outfit']
[u'darfur', u'peac', u'deal', u'deadlin', u'pass']
[u'darfur', u'rebel', u'faction', u'sudan', u'govt', u'agre', u'peac', u'deal']
[u'doctor', u'group', u'want', u'feder', u'budget', u'deliv']
[u'owner', u'fin', u'roam', u'pet']
[u'drain', u'drown', u'scare', u'prompt', u'council']
[u'drill', u'start', u'tugun', u'desal', u'plant', u'pipe', u'test']
[u'drug', u'council', u'fear', u'cannabi', u'harm']
[u'time', u'spark', u'return', u'level', u'water']
[u'dungog', u'council', u'defend', u'rate', u'rise', u'plan']
[u'dylan', u'debut', u'stun', u'critic']
[u'england', u'camp', u'upbeat', u'rooney', u'world', u'hop']
[u'exchang', u'rat', u'wool', u'market']
[u'expans', u'plan', u'crime', u'prevent', u'centr']
[u'export', u'drop', u'widen', u'trade', u'deficit']
[u'extremist', u'show', u'evid', u'lodhi', u'trial']
[u'feder', u'govt', u'ask', u'waiv', u'road', u'fund', u'contribut']
[u'feedlot', u'expect', u'beef', u'coonambl', u'job']
[u'festiv', u'organis', u'play', u'fear', u'polic']
[u'final', u'drill', u'phase', u'underway', u'rescu']
[u'firebird', u'look', u'phoenix', u'upset']
[u'fischer', u'back', u'call', u'bolster', u'gippsland', u'passeng']
[u'pandem', u'certainti', u'expert']
[u'folic', u'acid', u'link', u'high', u'risk', u'vitro', u'twin']
[u'footi', u'club', u'celebr', u'year']
[u'forc', u'welcom', u'welborn', u'fitter']
[u'ford', u'fund', u'deal', u'secur', u'industri']
[u'coupl', u'wed', u'brisban', u'british', u'consul']
[u'gidley', u'step', u'duti']
[u'girl', u'safe', u'yeppoon']
[u'goldfield', u'esper', u'friday']
[u'govt', u'antenat', u'care', u'plan', u'rais', u'health', u'risk']
[u'govt', u'transfer', u'futur', u'fund']
[u'govt', u'urg', u'rethink', u'burrup', u'industri']
[u'govt', u'urg', u'academ', u'report', u'suspici']
[u'grape', u'grower', u'seek', u'stock', u'level', u'transpar']
[u'guru', u'cooley', u'return', u'begin', u'ash', u'prepar']
[u'hall', u'creek', u'tougher', u'alcohol', u'restrict']
[u'hauritz', u'quit', u'bull', u'blue']
[u'higher', u'fuel', u'cost', u'hurt', u'remot', u'dialysi', u'patient']
[u'higher', u'petrol', u'cost', u'forc', u'dairi', u'price']
[u'holi', u'grail', u'unfair', u'target', u'wag']
[u'howard', u'back', u'kennett', u'leadership']
[u'howard', u'back', u'possibl', u'kennett', u'comeback']
[u'hurrican', u'triumph', u'red']
[u'husband', u'jail', u'domest', u'violenc']
[u'injur', u'aust', u'soldier', u'arriv', u'home']
[u'jail', u'swear', u'solomon', u'cabinet']
[u'johnson', u'feel', u'effect']
[u'jone', u'lankan', u'seri']
[u'kangaroo', u'extract', u'reveng', u'kiwi']
[u'kangaroo', u'keen', u'amend']
[u'kennett', u'pull', u'leadership', u'race']
[u'kennett', u'rule', u'leadership']
[u'kennett', u'withdraw', u'leadership', u'race']
[u'kirbi', u'warn', u'challeng', u'impact']
[u'labor', u'urg', u'nation', u'coast', u'plan']
[u'level', u'cross', u'crash', u'close', u'ballarat', u'west', u'rail', u'line']
[u'macquari', u'bank', u'make', u'patrick']
[u'malawi', u'call', u'mugab', u'african', u'hero']
[u'die', u'nimbin', u'crash']
[u'jail', u'kill']
[u'jail', u'polic', u'death', u'grant', u'parol']
[u'kill', u'head', u'collis']
[u'marin', u'park', u'declar', u'anger', u'green', u'group']
[u'martin', u'stand', u'wadey', u'polic', u'polici']
[u'mayor', u'play', u'orica', u'plant', u'closur']
[u'mayor', u'urg', u'action', u'midland', u'highway']
[u'medic', u'council', u'play', u'hospit', u'closur']
[u'medic', u'group', u'say', u'smart', u'state', u'state']
[u'melbourn', u'terror', u'suspect', u'grant', u'bail']
[u'mildura', u'welcom', u'kennett', u'return']
[u'rescu', u'slower', u'expect']
[u'miner', u'unfaz', u'slow', u'rescu']
[u'minist', u'return', u'nation', u'park', u'tradit']
[u'mitchel', u'make', u'mistak', u'horan']
[u'health', u'servic', u'redund', u'offer']
[u'illeg', u'fish', u'sight', u'anger', u'local', u'fisher']
[u'moussaoui', u'seek', u'jail', u'transfer']
[u'attack', u'nation', u'green', u'snowi', u'allianc']
[u'urg', u'camel', u'industri', u'docker', u'river']
[u'want', u'chang', u'natur', u'disast', u'relief']
[u'want', u'detail', u'escape', u'investig']
[u'law', u'alic', u'town']
[u'call', u'school', u'examin', u'group']
[u'nickel', u'corp', u'negoti', u'iron', u'sale']
[u'nickel', u'creat', u'child', u'care', u'demand']
[u'time', u'give', u'miner', u'retriev']
[u'govt', u'lobbi', u'ax', u'fuel', u'subsidi', u'scheme']
[u'number', u'unsuccess', u'applic']
[u'nurs', u'head', u'goldfield', u'forum']
[u'court', u'record', u'return']
[u'crime', u'wave', u'escap', u'custodi']
[u'oxfam', u'sack', u'aceh', u'staff', u'fraud']
[u'park', u'consid', u'museum', u'applic']
[u'pell', u'anger', u'muslim']
[u'pell', u'deni', u'ignor', u'islam']
[u'perth', u'chase', u'leav', u'dead']
[u'pilbara', u'iron', u'home', u'complet']
[u'plowman', u'back', u'kennett', u'decis', u'leadership']
[u'declar', u'confid', u'telstra', u'boss']
[u'open', u'east', u'timor', u'deploy']
[u'polic', u'charg', u'child', u'assault']
[u'polic', u'charg', u'steal', u'properti', u'drug']
[u'policeman', u'recov', u'crash']
[u'politician', u'odd', u'denmark', u'wind', u'farm']
[u'politician', u'odd', u'futur', u'rat', u'rise']
[u'poppi', u'processor', u'defend', u'price']
[u'port', u'augusta', u'clean', u'beach', u'award']
[u'primari', u'produc', u'frustrat', u'lack', u'harvest']
[u'public', u'hous', u'polici', u'chang', u'opposit']
[u'public', u'quiz', u'payphon', u'remov', u'plan']
[u'public', u'urg', u'help', u'drug', u'relat', u'crime']
[u'purcel', u'back', u'break', u'volunt']
[u'rail', u'firm', u'urg', u'local', u'worker']
[u'ramo', u'horta', u'play', u'dili', u'violenc']
[u'ramsi', u'like', u'continu', u'downer']
[u'randi', u'quaid', u'drop', u'brokeback', u'mountain', u'lawsuit']
[u'rathdowney', u'landown', u'meet', u'concern']
[u'confid', u'rat', u'hike', u'head', u'inflat']
[u'eas', u'economi', u'concern']
[u'real', u'climb', u'second', u'spain']
[u'rebel', u'refus', u'sign', u'darfur', u'peac', u'deal']
[u'region', u'feel', u'cost', u'shift', u'impact']
[u'rescuer', u'chang', u'tunnel', u'rout']
[u'research', u'suggest', u'asthma', u'attack', u'treatment']
[u'resid', u'urg', u'clean', u'town']
[u'retail', u'work', u'limit', u'armidal', u'park']
[u'roeder', u'newcastl', u'dream', u'suffer', u'blow']
[u'rooney', u'quit', u'swim']
[u'consid', u'princ', u'highway', u'revamp', u'option']
[u'rugbi', u'fin', u'kanaar', u'deal']
[u'russia', u'allow', u'briton', u'continu', u'trek']
[u'scientist', u'discov', u'ocean', u'speci']
[u'second', u'choic', u'baillieu', u'upbeat']
[u'secur', u'issu', u'delay', u'qanta', u'flight']
[u'secur', u'plan', u'darwin', u'palmerston', u'bus']
[u'sit', u'silenc', u'good', u'health', u'research']
[u'somer', u'jacki', u'fug', u'award']
[u'sophi', u'delezio', u'condit', u'better']
[u'spiritu', u'group', u'link', u'measl', u'outbreak']
[u'sport', u'centr', u'profit', u'dispel', u'loss', u'fear']
[u'state', u'worth', u'preserv', u'high', u'court', u'judg']
[u'station', u'staff', u'train', u'anim', u'neglect']
[u'stoner', u'accus', u'polic']
[u'student', u'disciplin', u'air', u'tape']
[u'suharto', u'admit', u'hospit']
[u'surf', u'call', u'tahiti']
[u'teacher', u'die', u'road', u'crash']
[u'teen', u'applic', u'marri', u'withdraw']
[u'team', u'leagu', u'world']
[u'terror', u'accus', u'ask', u'visit', u'die', u'brother']
[u'terror', u'accus', u'bail', u'visit', u'brother']
[u'terri', u'give', u'clear', u'world']
[u'soldier', u'kill', u'bomb', u'iraq']
[u'tiwi', u'home', u'ownership', u'deal', u'step', u'forward']
[u'tomingley', u'gold', u'oper', u'year']
[u'townsvill', u'lose', u'motorcycl', u'convent']
[u'trap', u'miner', u'enjoy', u'meal']
[u'trap', u'miner', u'good', u'shape']
[u'treatment', u'jail', u'cannabi', u'problem']
[u'tribut', u'flow', u'waltz', u'matilda', u'expert']
[u'chief', u'urg', u'direct', u'iran', u'talk']
[u'union', u'rais', u'luca', u'height', u'safeti', u'concern']
[u'union', u'want', u'meatwork', u'return', u'regular', u'duti']
[u'beef', u'market', u'comeback', u'threaten', u'export']
[u'deni', u'tortur', u'alleg']
[u'vail', u'push', u'broad', u'chines']
[u'vescont', u'lead', u'seoul', u'golf']
[u'get', u'licenc']
[u'beef', u'penalti', u'drive', u'offenc']
[u'wadey', u'journalist', u'concern', u'unfound', u'scullion']
[u'hospit', u'capac', u'disastr', u'say']
[u'opposit', u'reject', u'wind', u'farm', u'claim']
[u'webb', u'chase', u'leader', u'tennesse']
[u'whale', u'season', u'record']
[u'make', u'histori', u'south', u'korea']
[u'wilson', u'head', u'bishop', u'confer']
[u'workcov', u'fin', u'busi']
[u'work', u'parti', u'probe', u'wine', u'industri', u'smoke', u'damag']
[u'work', u'rescu', u'tunnel', u'progress']
[u'xenophon', u'urg', u'inquiri', u'dpps', u'offic']
[u'youth', u'steal', u'motel', u'safe']
[u'fund', u'mental', u'health', u'nurs', u'scholarship']
[u'urg', u'public', u'hous']
[u'alic', u'spring', u'mayor', u'back', u'town']
[u'alonso', u'ahead', u'schu', u'euro', u'practic']
[u'condemn', u'alic', u'town', u'camp', u'fund']
[u'annan', u'push', u'sudan', u'fast', u'peacekeep']
[u'applebi', u'pace', u'north', u'carolina']
[u'season', u'possibl']
[u'blair', u'reshuffl', u'cabinet', u'local', u'backlash']
[u'british', u'helicopt', u'crash', u'iraq']
[u'brumbi', u'suffer', u'shock', u'home', u'loss']
[u'burgess', u'vault', u'victori', u'osaka']
[u'bush', u'liken', u'terror', u'wwiii']
[u'busi', u'reliev', u'retail', u'develop', u'reject']
[u'busi', u'lobbi', u'urg', u'train', u'reform']
[u'fiji', u'elect', u'chief', u'resign']
[u'boss', u'quit']
[u'climat', u'chang', u'shift', u'rainfal', u'line']
[u'closer']
[u'colleg', u'warn', u'junior', u'doctor', u'basic', u'skill']
[u'concern', u'bushfir', u'stradbrok']
[u'concern', u'rais', u'possibl', u'suburban', u'board']
[u'council', u'fight', u'govt', u'retir', u'villag']
[u'cousin', u'chanc', u'derbi']
[u'cowboy', u'post', u'comfort', u'panther']
[u'crow', u'comfort', u'winner', u'adelaid', u'showdown']
[u'cruis', u'liner', u'english', u'coast']
[u'delezio', u'critic', u'stabl']
[u'delezio', u'expect', u'face', u'surgeri']
[u'delezio', u'unconsci', u'life', u'support']
[u'dfat', u'east', u'timor', u'travel', u'warn', u'cautious']
[u'disast', u'survivor', u'urg', u'ghost', u'town', u'restor']
[u'disney', u'pixar', u'finalis', u'merger']
[u'docker', u'earn', u'brag', u'right', u'west']
[u'dog', u'desper', u'aton', u'saint']
[u'downer', u'condemn', u'solomon', u'cabinet', u'decis']
[u'draft', u'budget', u'focus', u'citi', u'improv']
[u'drill', u'repair', u'delay', u'rescu', u'tunnel']
[u'driver', u'charg', u'delezio', u'accid']
[u'driver', u'charg', u'delezio', u'crash']
[u'drug', u'council', u'issu', u'snapshot', u'cannabi']
[u'east', u'timor', u'travel', u'advic']
[u'england', u'miss', u'australian', u'tour']
[u'timor', u'appeal', u'help']
[u'timor', u'ask', u'continu', u'presenc']
[u'timor', u'wont', u'request', u'aust', u'militari', u'assist']
[u'cruis', u'liner', u'english', u'coast']
[u'kill', u'isra', u'attack', u'gaza', u'strip']
[u'fowler', u'extend', u'liverpool', u'contract']
[u'recoveri', u'expect', u'sophi', u'delezio']
[u'govt', u'attack', u'baillieu', u'liber', u'leadership']
[u'govt', u'rebel', u'group', u'sign', u'darfur', u'peac', u'deal']
[u'grandstand', u'speak', u'raider', u'coach', u'matt', u'elliott']
[u'head', u'crash', u'kill', u'teen', u'driver']
[u'hop', u'campaign', u'baillieu']
[u'hunt', u'club', u'investig', u'dead', u'mistreat']
[u'indigen', u'custodian', u'manag', u'park']
[u'isra', u'strike', u'kill']
[u'jail', u'bali', u'bomber', u'guid', u'want', u'terrorist']
[u'jenner', u'coach', u'african', u'spinner']
[u'klinsmann', u'summon', u'player', u'test']
[u'leed', u'flight', u'suffer', u'setback']
[u'main', u'phase', u'rescu', u'tunnel', u'complet']
[u'stab', u'stradbrok', u'brawl']
[u'medic', u'student', u'defend', u'skill', u'level']
[u'midopen']
[u'rescuer', u'metr']
[u'mitchel', u'confirm', u'forc']
[u'nation', u'park', u'hand', u'indigen', u'owner']
[u'diet', u'focus', u'young', u'women']
[u'ntini', u'rip', u'black', u'cap']
[u'labor', u'odd', u'futur', u'rat', u'rise']
[u'polic', u'brace', u'nimbin', u'mardi', u'grass']
[u'polic', u'hunt', u'cycl', u'path', u'offend']
[u'polic', u'probe', u'fatal', u'pursuit']
[u'poll', u'open', u'fiji']
[u'raider', u'good', u'hapless', u'eel']
[u'rain', u'forc', u'cancel', u'round']
[u'rescuer', u'predict', u'reach', u'miner', u'tomorrow', u'morn']
[u'rescu', u'tunnel', u'drill', u'continu']
[u'rescu', u'tunnel', u'near', u'trap', u'miner']
[u'richo', u'urg', u'tiger', u'build', u'consist']
[u'robben', u'expect', u'stay', u'chelsea', u'improv']
[u'rural', u'doctor', u'midwiv', u'plan']
[u'saint', u'hold', u'crucial', u'dog']
[u'search', u'airport', u'escap', u'continu']
[u'sophi', u'delezio', u'stabl', u'condit']
[u'storm', u'triumph', u'crocker', u'troubl']
[u'stuart', u'hail', u'irreplac', u'john']
[u'suicid', u'bomber', u'kill', u'iraqi', u'offic']
[u'surgeon', u'doubt', u'wait', u'list', u'pledg']
[u'miner', u'face', u'night', u'underground']
[u'miner', u'trap', u'night']
[u'teahupoo', u'produc', u'custom', u'wave']
[u'teenag', u'latim', u'lead', u'crusad', u'victori']
[u'dead', u'helicopt', u'crash']
[u'tiger', u'scrape', u'home', u'bomber']
[u'tiwi', u'host', u'wadey', u'gang', u'member']
[u'town', u'anticip', u'miner', u'releas']
[u'trap', u'miner', u'face', u'night', u'underground']
[u'trap', u'miner', u'prepar', u'rescu']
[u'seek', u'leav', u'appeal', u'hick', u'decis']
[u'block', u'palestinian', u'diplomat']
[u'helicopt', u'crash', u'afghanistan']
[u'send', u'chines', u'guantanamo', u'detaine', u'albania']
[u'violent', u'footi', u'parent', u'prompt', u'call']
[u'wall', u'street', u'hit', u'year', u'high']
[u'waratah', u'fall', u'chief']
[u'warn', u'wicket', u'hampshir']
[u'wine', u'export', u'china', u'surg']
[u'drink', u'driver', u'catch', u'weekend', u'blitz']
[u'alonso', u'pole', u'european', u'grand', u'prix']
[u'anasta', u'look', u'team', u'mat']
[u'anti', u'polio', u'campaign', u'begin', u'afghan', u'pakistan']
[u'backmark', u'webber', u'look', u'forward']
[u'barca', u'neighbour', u'merci']
[u'brain', u'damag', u'fear', u'delezio']
[u'brimbl', u'daughter', u'deserv', u'answer', u'death']
[u'british', u'govt', u'deni', u'hick', u'appeal']
[u'british', u'govt', u'lose', u'hick', u'appeal']
[u'british', u'helicopt', u'report', u'shoot', u'iraq']
[u'british', u'militari', u'confirm', u'kill', u'helicopt']
[u'budget', u'deliv', u'sweeten', u'work', u'mum']
[u'bulldog', u'power', u'rooster']
[u'burn', u'cruis', u'ship', u'arriv', u'safe']
[u'butcher', u'ponder', u'sydney']
[u'bomb', u'kerbala', u'baghdad', u'kill']
[u'bomb', u'kill', u'iraq']
[u'cat', u'claim', u'rare', u'blue']
[u'civil', u'libertarian', u'ralli', u'nude', u'bather']
[u'claim', u'union', u'go', u'soft']
[u'closer']
[u'connolli', u'give', u'docker', u'fan', u'serv']
[u'costello', u'leav', u'leadership', u'decis', u'liber']
[u'costello', u'say', u'budget', u'focus', u'mum', u'road']
[u'council', u'award', u'clean', u'power']
[u'cricket', u'move', u'closer', u'umpir', u'challeng']
[u'crow', u'comfort', u'winner', u'adelaid', u'showdown']
[u'czech', u'chief', u'don', u'televis', u'disguis']
[u'hoya', u'drop', u'mayorga', u'triumphant', u'return']
[u'dizzi', u'effort', u'vain', u'yorkshir', u'lose']
[u'downer', u'meet', u'solomon']
[u'drill', u'problem', u'delay', u'rescu']
[u'earli', u'morn', u'rescu', u'delay']
[u'east', u'timor', u'deni', u'unrest', u'report']
[u'egeland', u'hope', u'peacekeep', u'access', u'darfur']
[u'specul', u'kovco', u'death', u'wife', u'ask']
[u'famili', u'mother', u'target', u'budget']
[u'fatal', u'clash', u'follow', u'iraq', u'chopper', u'crash']
[u'fear', u'hold', u'miss', u'bushwalk']
[u'ferguson', u'hail', u'kean', u'greatest']
[u'final', u'metr', u'progress', u'slowli']
[u'forc', u'final', u'break', u'duck']
[u'fuel', u'tank', u'blast', u'investig']
[u'glass', u'alert', u'drowsi', u'driver']
[u'between', u'frontman', u'mclennan', u'die']
[u'govt', u'defend', u'record', u'endang', u'speci']
[u'govt', u'warn', u'food', u'allergi', u'school', u'kid']
[u'gower', u'lead', u'citi']
[u'gregan', u'water']
[u'hard', u'rock', u'delay', u'rescu', u'tunnel']
[u'hart', u'auction', u'expect', u'record', u'price']
[u'hundr', u'gather', u'lockhart', u'river', u'plane', u'crash']
[u'envious', u'ronaldinho', u'ronaldo']
[u'independ', u'breen', u'join', u'labor', u'parti']
[u'iran', u'reject', u'talk']
[u'isra', u'polic', u'evict', u'settler', u'hebron', u'hous']
[u'journalist', u'richard', u'carleton', u'die']
[u'kiwi', u'battl', u'kalli', u'join', u'sober', u'club']
[u'koschitzk', u'injuri', u'woe', u'continu']
[u'kovco', u'wife', u'call', u'specul']
[u'labour', u'shortag', u'delay', u'chines', u'museum', u'upgrad']
[u'larg', u'famili', u'payment', u'extend']
[u'lennon', u'dreamland', u'beckon']
[u'liber', u'slur', u'make', u'decrepit']
[u'lion', u'swan', u'rivalri', u'manufactur', u'roo']
[u'loan', u'shark', u'club', u'fin']
[u'local', u'ralli', u'marin', u'park', u'zone']
[u'lucki', u'miller', u'make', u'teari', u'return']
[u'magpi', u'hammer', u'blue', u'spot']
[u'mahmood', u'select', u'england', u'test']
[u'mcgee', u'second', u'giro', u'time', u'trial']
[u'mental', u'health', u'nurs', u'program', u'question']
[u'rescu', u'delay', u'drill', u'problem']
[u'rescu', u'effort', u'delay']
[u'rescu', u'encount', u'problem']
[u'miner', u'remain', u'trap', u'tough', u'rock', u'hinder']
[u'miner', u'unlik', u'free', u'today']
[u'miss', u'bushwalk']
[u'mix', u'emot', u'newcastl']
[u'nation', u'welcom', u'road', u'fund', u'boost']
[u'newcastl', u'home', u'bronco']
[u'urg', u'budget', u'cancer', u'unit', u'fund']
[u'opposit', u'urg', u'relief', u'middl', u'australia']
[u'perth', u'sieg', u'end', u'arrest']
[u'plan', u'boost', u'fund', u'skill', u'train']
[u'polic', u'negoti', u'arm', u'hold', u'year']
[u'raper', u'rapt', u'shark']
[u'rate', u'rise', u'fail', u'dampen', u'properti', u'auction']
[u'report', u'richard', u'carleton', u'collaps']
[u'rescuer', u'hop', u'reach', u'softer', u'rock']
[u'right', u'group', u'claim', u'tortur', u'rise', u'zimbabw']
[u'rule', u'parti', u'win', u'singapor', u'elect']
[u'scott', u'surg', u'content', u'north', u'carolina']
[u'eagl', u'tiger']
[u'shark', u'good', u'dragon']
[u'small', u'wave', u'prevail', u'teahupoo']
[u'sober', u'celebr', u'austria', u'freud']
[u'solomon', u'defend', u'cabinet', u'decis']
[u'solomon', u'defend', u'cabinet', u'select']
[u'solomon', u'urg', u'ramsi', u'exit', u'strategi']
[u'sophi', u'delezio', u'face', u'critic', u'hour']
[u'sophi', u'delezio', u'remain', u'critic', u'stabl']
[u'south', u'east', u'mop', u'torrenti', u'rain']
[u'star', u'shine', u'asia', u'award']
[u'stuart', u'loss', u'follow', u'defeat', u'bulldog']
[u'swan', u'pile', u'miseri', u'lion']
[u'tasmanian', u'retain', u'seat']
[u'thai', u'star', u'win', u'maiden', u'titl', u'incheon', u'open']
[u'thompson', u'lead', u'roo', u'victori', u'hawk']
[u'thousand', u'ralli']
[u'tiger', u'past', u'eagl']
[u'tiger', u'scrape', u'home', u'bomber']
[u'tribut', u'flow', u'carleton']
[u'trio', u'jail', u'walsham', u'murder']
[u'troubl', u'joondalup', u'council', u'get', u'mayor']
[u'tight', u'lip', u'boss', u'departur']
[u'victori', u'shark', u'unlik', u'catch', u'brumbi']
[u'violent', u'clash', u'follow', u'chopper', u'crash']
[u'watford', u'wallop', u'palac', u'play']
[u'troop', u'afghan', u'reconstruct']
[u'kill', u'palestinian', u'faction', u'clash']
[u'plant', u'build']
[u'fund', u'properti', u'buyout']
[u'age', u'care', u'industri', u'need', u'technolog']
[u'brink', u'report']
[u'alonso', u'face', u'world', u'heartbreak']
[u'anti', u'smoke', u'focus', u'gangren']
[u'struggl', u'thompson']
[u'appl', u'win', u'court', u'battl', u'beatl']
[u'aust', u'troop', u'prepar', u'iraq', u'tour']
[u'baillieu', u'elect', u'victorian', u'liber', u'leader']
[u'baillieu', u'target', u'health', u'educ', u'transport']
[u'bayliss', u'continu', u'superbik', u'domin']
[u'billiton', u'win', u'rescu', u'comp']
[u'swell', u'teahupoo']
[u'blair', u'reject', u'timet', u'departur']
[u'brisban', u'lion', u'coach', u'leigh', u'matthew']
[u'break', u'hill', u'honour', u'bronhil', u'plaqu']
[u'broom', u'port', u'hedland', u'servic', u'termin']
[u'budget', u'unlik', u'boost', u'coastal', u'infrastructur']
[u'burn', u'bega', u'forest']
[u'bush', u'nomin', u'militari', u'chief']
[u'bush', u'weekend', u'attend', u'previous', u'year']
[u'butcher', u'discuss', u'sydney']
[u'lockhart', u'river', u'crash', u'report', u'releas']
[u'chariti', u'bike', u'ride', u'rais', u'fund', u'leukaemia']
[u'chines', u'expect', u'return', u'solomon']
[u'claim', u'govt', u'mega', u'plan', u'face', u'strong']
[u'clean', u'continu', u'kingston', u'storm']
[u'closer']
[u'closer', u'michell']
[u'cobalt', u'miner', u'await', u'feder', u'approv']
[u'confer', u'promot', u'ethanol', u'fuel']
[u'conserv', u'council', u'want', u'govt', u'commit', u'green']
[u'cooloola', u'mayor', u'want', u'plan', u'explain']
[u'coordin', u'need', u'case', u'judg', u'say']
[u'corryong', u'introduc', u'chlorin', u'water']
[u'costello', u'cut']
[u'costello', u'flag', u'possibl', u'cut', u'budget']
[u'costello', u'urg', u'provid', u'cut']
[u'cotton', u'result', u'rece', u'expect']
[u'council', u'contribut', u'environment', u'impact']
[u'council', u'park', u'joint', u'manag', u'turtl', u'nest']
[u'council', u'explain', u'rat', u'rise']
[u'cousin', u'return', u'magpi']
[u'crash', u'prompt', u'call', u'headlight']
[u'crocker', u'wipe', u'origin']
[u'crusad', u'charg', u'brumbi', u'face', u'test']
[u'death', u'prompt', u'cruis', u'control', u'remov']
[u'declin', u'enrol', u'close', u'preschool']
[u'deep', u'bioprospect', u'law', u'urg']
[u'dengu', u'fever', u'outbreak']
[u'desailli', u'offici', u'call', u'time', u'career']
[u'develop', u'star', u'resort', u'delay']
[u'dig', u'final', u'gold']
[u'discrimin', u'fear', u'prompt', u'law', u'review']
[u'sniff', u'oper', u'lead', u'arrest']
[u'domest', u'violenc', u'awar', u'campaign', u'target']
[u'dont', u'look', u'good', u'today']
[u'dozen', u'trail', u'biker', u'charg', u'park', u'reserv']
[u'review', u'acquitt', u'polic', u'murder', u'case']
[u'dragon', u'soul', u'search']
[u'driver', u'acquit', u'polic', u'offic', u'highway']
[u'drug', u'trace', u'dead', u'babi', u'court', u'hear']
[u'egypt', u'bomb', u'victim', u'vow', u'travel']
[u'timor', u'minist', u'resign', u'riot']
[u'timor', u'need', u'manag', u'affair', u'alkatiri']
[u'farmer', u'rais', u'railway', u'cross', u'concern', u'govt']
[u'father', u'polic', u'offic']
[u'fear', u'marin', u'park', u'boundari', u'forc']
[u'fish', u'industri', u'protest', u'marin', u'park']
[u'flanneri', u'leav', u'museum']
[u'foreign', u'expert', u'smart', u'card', u'project']
[u'fund', u'commit', u'allergi', u'research']
[u'process', u'train', u'shutdown']
[u'gelbvieh', u'bull', u'take', u'champion', u'award']
[u'golden', u'circl', u'black']
[u'govt', u'chang', u'rule', u'urban', u'water', u'usag']
[u'govt', u'spend', u'upgrad', u'indigen', u'town', u'camp']
[u'gower', u'unfaz', u'lyon', u'specul']
[u'green', u'condemn', u'costello', u'budget', u'leak']
[u'green', u'seek', u'southport', u'lagoon']
[u'gregan', u'miss', u'crusad', u'encount']
[u'group', u'question', u'tuna', u'global', u'list']
[u'helicopt', u'hijack', u'releas', u'prison']
[u'hick', u'step', u'closer', u'freedom']
[u'highway', u'provid', u'econom', u'benefit']
[u'illeg', u'fish', u'plan', u'need', u'labor', u'say']
[u'incom', u'cut', u'tip', u'feder', u'budget']
[u'indian', u'heatwav', u'kill']
[u'indonesia', u'prepar', u'bali', u'bomb', u'trial']
[u'injur', u'perri', u'confid', u'face', u'eagl']
[u'injur', u'tendulkar', u'seek', u'divin', u'help']
[u'investig', u'offic', u'continu']
[u'iran', u'leader', u'send', u'letter', u'bush']
[u'law', u'build', u'constitut']
[u'iron', u'concentr', u'test', u'encourag']
[u'year']
[u'kerr', u'come', u'tennesse']
[u'labor', u'govt', u'rat']
[u'land', u'acquir', u'memorabilia', u'museum']
[u'landsail', u'comp', u'hail', u'success']
[u'pong', u'conspir', u'jail', u'year']
[u'lead', u'barrist', u'licenc', u'suspend']
[u'legal', u'hiccup', u'hit', u'medicar', u'abus', u'investig']
[u'lifelin', u'train', u'unemploy']
[u'lion', u'filthi', u'leak']
[u'local', u'builder', u'work', u'honour', u'award']
[u'local', u'govt', u'consid', u'amalgam']
[u'magician', u'prepar', u'underwat', u'record', u'attempt']
[u'marin', u'park', u'wont', u'affect', u'rock', u'lobster', u'industri']
[u'markaranka', u'floodplain', u'benefit', u'water']
[u'meet', u'call', u'address', u'obstacl', u'countri']
[u'melanesian', u'minist', u'meet', u'support', u'solomon']
[u'mental', u'health', u'patient', u'hostel', u'ideal']
[u'midwif', u'shortag', u'impact', u'matern', u'servic']
[u'open']
[u'rescu', u'comp', u'highlight', u'import', u'skill']
[u'rescuer', u'approach', u'metr', u'rock']
[u'train', u'facil', u'open']
[u'minichiello', u'miss', u'origin']
[u'minist', u'urg', u'regular', u'smear']
[u'fear', u'qanta', u'plan', u'servic', u'cut']
[u'mooney', u'face', u'week']
[u'motorist', u'warn', u'snow', u'creat', u'slipperi', u'road']
[u'offer', u'bounti']
[u'respect', u'richard', u'carleton']
[u'nativ', u'speci', u'replac', u'cotter', u'pine', u'plantat']
[u'anti', u'smoke', u'start']
[u'book', u'chart', u'wran', u'decad', u'power']
[u'seek', u'region', u'road', u'rail', u'spend']
[u'nurs', u'win', u'award']
[u'opposit', u'promis', u'school', u'fund', u'boost']
[u'nude', u'beach', u'goer', u'wil', u'exposur', u'charg']
[u'industri', u'look', u'boost', u'local', u'product']
[u'price', u'see', u'barrel']
[u'oliv', u'shortag', u'drive', u'price']
[u'olymp', u'swim', u'coach', u'face', u'court', u'child', u'charg']
[u'open', u'marin', u'tafe', u'campus', u'delay']
[u'opposit', u'push', u'road', u'safeti', u'fund']
[u'pace', u'depth', u'issu', u'cooley']
[u'pair', u'charg', u'numer', u'drive', u'offenc']
[u'pair', u'plead', u'guilti', u'threaten', u'gangland', u'widow']
[u'papua', u'threaten', u'univers', u'tie']
[u'peta', u'live', u'export', u'campaign', u'target', u'middl', u'east']
[u'petrol', u'price', u'forc', u'showmen', u'chang', u'circuit']
[u'pilot', u'like', u'escap', u'ching', u'charg']
[u'plan', u'expand', u'broadband', u'avail']
[u'polic', u'minist', u'lose', u'portfolio', u'licenc']
[u'polic', u'pleas', u'mardi', u'grass', u'crowd', u'behaviour']
[u'polic', u'report', u'break', u'enter', u'mackay']
[u'polic', u'search', u'alleg', u'assault']
[u'polic', u'seek', u'wit', u'fatal', u'crash']
[u'polici', u'doesnt', u'rule', u'high', u'rise', u'council', u'say']
[u'port', u'author', u'appoint', u'journo']
[u'propos', u'councillor', u'busi', u'class']
[u'protea', u'receiv', u'rank', u'boost', u'seri']
[u'govt', u'approv', u'mangrov', u'manag', u'plan']
[u'push', u'commonwealth', u'road', u'fund']
[u'tape', u'blame', u'doctor', u'delay']
[u'regatta', u'rais', u'awar', u'breast', u'cancer']
[u'report', u'criticis', u'public', u'hous', u'scheme']
[u'report', u'bush', u'want', u'guantanamo', u'close']
[u'rescu', u'effort', u'continu', u'trap', u'miner']
[u'rescuer', u'prepar', u'final']
[u'resid', u'rais', u'water', u'concern', u'turnbul']
[u'resourc', u'boom', u'rais', u'hous', u'shortag', u'fear']
[u'retail', u'spend', u'slight']
[u'rock', u'roll', u'festiv', u'go', u'strong']
[u'roeder', u'fear', u'owen', u'face']
[u'rooney', u'replac', u'groth', u'citi']
[u'ross', u'river', u'fever', u'case', u'gladston']
[u'runner', u'record', u'puff', u'billi', u'great']
[u'back', u'anti', u'smoke', u'gangren']
[u'africa', u'zuma', u'acquit', u'rape']
[u'saint', u'kilda', u'coach', u'grant', u'thoma']
[u'satellit', u'help', u'whale', u'rescu', u'effort']
[u'school', u'ralli', u'injur', u'sophi']
[u'scientist', u'invit', u'mackay', u'discuss', u'reef']
[u'sect', u'leader', u'make', u'want', u'list']
[u'sewerag', u'registr', u'deadlin', u'extend']
[u'sexual', u'abus', u'threat', u'liberia', u'recoveri', u'report']
[u'sharp', u'aviat', u'increas', u'ticket', u'price']
[u'showcas', u'highlight', u'illawarra', u'innov', u'centr']
[u'sim', u'call', u'countri', u'squad']
[u'sim', u'withdraw', u'countri', u'squad']
[u'korean', u'parent', u'love', u'face', u'lift']
[u'slow', u'progress', u'continu', u'rescu', u'effort']
[u'small', u'busi', u'hope', u'relief', u'feder', u'budget']
[u'smart', u'card', u'task', u'forc', u'head', u'resign']
[u'solomon', u'refus', u'bail']
[u'harbour', u'fishermen', u'refus', u'licenc', u'buyout', u'offer']
[u'sophi', u'accid', u'spark', u'cross', u'safeti', u'audit']
[u'spate', u'soda', u'bomb', u'attack', u'rock', u'kangaroo', u'flat']
[u'sudanes', u'govt', u'accept', u'peacekeep']
[u'sudan', u'will', u'accept', u'peacekeep']
[u'suharto', u'recov', u'surgeri']
[u'suharto', u'undergo', u'surgeri']
[u'liber', u'rememb', u'break', u'oday', u'mayor']
[u'cut', u'wouldnt', u'lift', u'inflat', u'turnbul']
[u'teen', u'arrest', u'theft']
[u'teen', u'rapist', u'avoid', u'jail', u'term']
[u'telstra', u'regul', u'decis', u'delay']
[u'tey', u'bros', u'consid', u'build', u'cattl', u'tunnel']
[u'thai', u'court', u'nullifi', u'elect']
[u'titan', u'sink', u'survivor', u'die']
[u'toll', u'challeng', u'patrick', u'macquari', u'talk']
[u'train', u'place', u'help', u'dentist', u'shortag', u'govt', u'say']
[u'trap', u'miner', u'face', u'night', u'underground']
[u'trap', u'miner', u'face', u'night', u'underground']
[u'trap', u'miner', u'spend', u'night', u'underground']
[u'trap', u'miner', u'prepar', u'night']
[u'trap', u'miner', u'unlik', u'free', u'today']
[u'escap', u'injuri', u'tree', u'fall', u'car']
[u'kill', u'head', u'collis']
[u'chief', u'retreat', u'troubl', u'sudan', u'camp']
[u'union', u'happi', u'bartter', u'offer']
[u'urg', u'better', u'darfur', u'access']
[u'navi', u'sailor', u'plead', u'guilti', u'smuggl', u'trial']
[u'liber', u'endors']
[u'wall', u'gain', u'lift', u'local', u'market']
[u'opposit', u'want', u'mental', u'health', u'nurs', u'station']
[u'warrior', u'defect', u'blue']
[u'water', u'plan', u'flaw', u'forum', u'hear']
[u'websit', u'push', u'mackay', u'fish', u'holiday']
[u'west', u'pilbara', u'region', u'get', u'rescu', u'boat']
[u'west', u'rover', u'round', u'match']
[u'windi', u'crush', u'zimbabw', u'record', u'total']
[u'wool', u'price', u'expect', u'pick']
[u'young', u'footbal', u'kill', u'accid']
[u'bodi', u'tigri', u'river']
[u'children', u'fear', u'drown', u'nepal']
[u'qaeda', u'suspect', u'trial', u'germani']
[u'chair', u'applaud', u'budget', u'boost']
[u'govt', u'criticis', u'pine', u'plantat', u'decis']
[u'albani', u'busi', u'target', u'weekend', u'graffiti']
[u'candid', u'attack', u'govt', u'water', u'crisi']
[u'amend', u'protect', u'parliamentari', u'privileg']
[u'angler', u'turn', u'barra', u'nation']
[u'armi', u'lawyer', u'warn', u'scandal']
[u'astronom', u'dwarf', u'galaxi']
[u'baillieu', u'dump', u'half', u'toll', u'polici']
[u'bali', u'bomb', u'accus', u'face', u'court']
[u'banana', u'busi', u'farmer']
[u'basslink', u'open', u'ensur', u'extra', u'power', u'tassi']
[u'beaconsfield', u'celebr', u'miracl']
[u'beaconsfield', u'farewel', u'dead', u'miner']
[u'beaconsfield', u'resid', u'celebr', u'miner', u'rescu']
[u'beaconsfield', u'timelin']
[u'blain', u'go', u'blue']
[u'blair', u'reject', u'timet', u'departur']
[u'bogut', u'confirm', u'avail', u'world', u'champ']
[u'bomb', u'squad', u'head', u'flatten', u'factori']
[u'bronco', u'bench', u'berrigan', u'eagl', u'clash']
[u'budget', u'back', u'australia', u'scientif', u'abil']
[u'budget', u'child', u'care', u'concern']
[u'budget', u'deliv', u'fund', u'boost']
[u'budget', u'deliv', u'famili']
[u'budget', u'ignor', u'indigen', u'health', u'obes']
[u'budget', u'like', u'boost', u'secur', u'fund']
[u'budget', u'maintain', u'nation', u'secur', u'focus']
[u'budget', u'benefit', u'middl', u'incom', u'earner']
[u'budget', u'road', u'rail', u'track']
[u'bullimor', u'attempt', u'world', u'solo', u'voyag']
[u'bush', u'nomin', u'chief']
[u'bush', u'send', u'food', u'darfur']
[u'busi', u'confid', u'declin']
[u'busi', u'say', u'help', u'economi', u'budget']
[u'action', u'avon', u'river', u'build']
[u'bipartisan', u'push', u'lachlan', u'irrig']
[u'canker', u'produc', u'meet', u'govt']
[u'cann', u'festiv', u'showcas', u'record', u'aust', u'film']
[u'theft', u'prompt', u'push', u'secur', u'camera']
[u'cat', u'contest', u'mooney', u'charg']
[u'chamber', u'seek', u'fuel', u'rebat', u'region', u'busi']
[u'civil', u'libertarian', u'nude', u'beach']
[u'closer']
[u'closer', u'abcnew']
[u'closer']
[u'coalit', u'question', u'offshor', u'asylum', u'seeker']
[u'communiti', u'urg', u'fight', u'hydro', u'sale']
[u'concern', u'marin', u'park', u'zone']
[u'concern', u'cut', u'erod', u'live', u'cost']
[u'coonan', u'flag', u'charg', u'westpoint', u'director']
[u'costello', u'deliv', u'budget']
[u'costello', u'urg', u'wipe', u'ecolog', u'deficit']
[u'council', u'reject', u'divis', u'propos']
[u'council', u'urg', u'communiti', u'comment', u'hargreav']
[u'court', u'reject', u'wrong', u'birth', u'case']
[u'credit', u'scheme', u'chang', u'anger', u'farmer']
[u'crocker', u'hint', u'origin', u'conspiraci', u'follow']
[u'vinci', u'code', u'spark', u'hunger', u'strike']
[u'death', u'warn', u'rail', u'graffiti', u'vandal']
[u'defenc', u'handl', u'repatri', u'kovco']
[u'delezio', u'stabl']
[u'deport', u'papuan', u'like', u'struggl']
[u'depress', u'concern', u'drought', u'woe', u'worsen']
[u'implor', u'power', u'maintain', u'consist']
[u'diabet', u'self', u'test', u'avail', u'supermarket']
[u'dingo', u'sniff', u'cane', u'toad']
[u'dolphin', u'recognis', u'whistl', u'name', u'studi']
[u'dorazio', u'resign', u'cabinet']
[u'dragon', u'season', u'go', u'wors']
[u'dutch', u'leav', u'david', u'cold']
[u'dyke', u'go', u'month']
[u'death', u'investig', u'includ', u'local', u'anecdot']
[u'escape', u'elud', u'polic']
[u'ethanol', u'industri', u'eye', u'product', u'boost']
[u'timor', u'unrest', u'attempt', u'coup']
[u'minist', u'implic', u'nauruan', u'passport', u'fraud']
[u'famili', u'tip', u'budget', u'winner']
[u'farmer', u'urg', u'diversifi']
[u'feder', u'fund', u'earmark', u'great', u'lake', u'research']
[u'ferguson', u'drop', u'everton']
[u'fertilis', u'firm', u'chang', u'hand']
[u'fiji', u'elect', u'rig', u'opposit', u'leader', u'say']
[u'final', u'breakthrough', u'come', u'quick']
[u'final', u'decis', u'panther', u'hotel', u'expect', u'year']
[u'fisherman', u'concern', u'marin', u'park', u'zone']
[u'flintoff', u'take', u'england', u'honour']
[u'forestri', u'compani', u'look', u'south', u'hardwood']
[u'forestri', u'review', u'expect', u'budget']
[u'free', u'miner', u'medic', u'treatment']
[u'freightlink', u'eye', u'nuclear', u'wast', u'transport']
[u'frustrat', u'servic', u'miss', u'fund']
[u'fund', u'flow', u'murray', u'darl', u'basin']
[u'gangland', u'widow', u'tell', u'court', u'death', u'threat']
[u'georgeson', u'beachley', u'progress', u'tahiti']
[u'german', u'cannib', u'sentenc', u'life', u'prison']
[u'gold', u'council', u'futur', u'hang', u'balanc']
[u'govern', u'shelv', u'plan', u'detent', u'centr']
[u'govt', u'begin', u'defend', u'case']
[u'govt', u'commit', u'indigen', u'fund']
[u'govt', u'sydney', u'water', u'plan', u'flaw', u'opposit']
[u'grazier', u'eager', u'await', u'floodwat']
[u'health', u'receiv', u'fund', u'inject']
[u'hodgson', u'urg', u'concentr']
[u'hope', u'young', u'hous', u'fund']
[u'hop', u'river', u'murray', u'windfal', u'feder', u'budget']
[u'hunter', u'mental', u'health', u'servic', u'shorten', u'wait', u'time']
[u'illawarra', u'prais', u'innov']
[u'independ', u'cross', u'floor', u'fight', u'workchoic']
[u'india', u'tender', u'tonn', u'wheat', u'import']
[u'injuri', u'end', u'vidmar', u'campaign']
[u'challeng', u'affect', u'territori']
[u'jone', u'begin', u'red']
[u'keelti', u'warn', u'unstabl', u'neighbour']
[u'kimberley', u'develop', u'water', u'plan']
[u'kintor', u'explor', u'boost', u'employ']
[u'koeman', u'take', u'hiddink']
[u'labor', u'back', u'sweep', u'cut']
[u'labor', u'question', u'possibl', u'iraq', u'deploy', u'chang']
[u'lasri', u'repres', u'bali', u'ringlead']
[u'latham', u'rule', u'highland', u'match']
[u'leed', u'beat', u'preston', u'reach', u'play', u'final']
[u'lion', u'lose', u'johnson', u'refus']
[u'littl', u'hope', u'rang', u'fund', u'windfal']
[u'local', u'council', u'starv', u'fund']
[u'long', u'arson', u'probe', u'south', u'hedland', u'hous']
[u'macquari', u'abandon', u'patrick']
[u'acquit', u'graduat', u'parti', u'shoot']
[u'airlift', u'sydney', u'mudge', u'crash']
[u'assault', u'teen', u'girl', u'home']
[u'charg', u'fatal', u'boat', u'crash']
[u'face', u'court', u'firearm', u'charg']
[u'fin', u'epirb', u'fals', u'alarm']
[u'market', u'quiet', u'lead', u'budget']
[u'maroon', u'confid', u'despit', u'crocker']
[u'marshal', u'continu', u'comeback', u'trail']
[u'media', u'face', u'court', u'boy', u'name']
[u'manag', u'happi', u'rescu', u'effort']
[u'rescu', u'worker', u'outlin', u'final', u'push']
[u'miner', u'open']
[u'miner', u'treat', u'launceston', u'hospit']
[u'miner', u'walk', u'free', u'underground', u'ordeal']
[u'mine', u'boom', u'prompt', u'fear', u'hous', u'shortag']
[u'miss', u'trio', u'surviv', u'week']
[u'mooney', u'match']
[u'papuan', u'coast']
[u'moussaoui', u'bar', u'chang', u'plea']
[u'confid', u'budget', u'deliv', u'feder', u'highway']
[u'nation', u'number', u'seat']
[u'hail', u'reform']
[u'urg', u'polit', u'motiv', u'school']
[u'damag', u'estim', u'nangwarri']
[u'feder', u'fund', u'port', u'road']
[u'need', u'vinci', u'code', u'disclaim', u'director']
[u'govt', u'back', u'water', u'recycl']
[u'oenpelli', u'children', u'risk', u'asbesto', u'exposur']
[u'olymp', u'coach', u'stand', u'trial', u'child', u'charg']
[u'dead', u'arrest', u'timor', u'attack']
[u'dead', u'miss', u'blast', u'flatten', u'factori']
[u'open', u'budget', u'abcnew']
[u'opposit', u'back', u'anti', u'terror', u'law']
[u'opposit', u'counsel', u'wise', u'alloc', u'fund']
[u'opposit', u'seek', u'mental', u'health', u'crisi', u'probe']
[u'parent', u'welcom', u'healthier', u'canteen', u'menus']
[u'patel', u'case', u'adjourn']
[u'peac', u'alburi', u'seig']
[u'philippin', u'sign', u'australian', u'secur', u'pact']
[u'pitcairn', u'abus', u'guilti', u'prepar', u'final', u'court']
[u'polic', u'clock', u'biker', u'speed', u'limit']
[u'polic', u'hunt', u'servic', u'station', u'robber']
[u'policeman', u'shoot', u'hobart']
[u'polic', u'search', u'patient', u'thiev']
[u'polic', u'seek', u'review', u'assault', u'case']
[u'politician', u'express', u'delight', u'rescu']
[u'polo', u'recognis', u'star', u'debut']
[u'pool', u'delay', u'anger', u'paraburdoo', u'local']
[u'port', u'lincoln', u'factori', u'explos', u'investig']
[u'power', u'station', u'develop', u'suppli', u'water']
[u'research', u'reveal', u'hollywood', u'coma', u'flaw']
[u'resid', u'wast', u'collect', u'servic', u'thumb']
[u'review', u'nudist', u'polic', u'seek']
[u'risdon', u'cove', u'sign', u'remov', u'caus', u'controversi']
[u'robberi', u'suspect', u'recaptur', u'perth']
[u'robson', u'hit', u'walcott', u'gambl']
[u'roger', u'tell', u'gasnier', u'expect']
[u'continu', u'highway', u'upgrad', u'talk']
[u'deni', u'highway', u'rout', u'west']
[u'rural', u'communiti', u'tell', u'overhaul', u'health']
[u'russel', u'celebr', u'drink']
[u'africa', u'zuma', u'apologis', u'sexual', u'conduct']
[u'museum', u'director', u'quit', u'research', u'post']
[u'school', u'protest', u'adjac', u'brothel']
[u'school', u'massiv', u'growth', u'prompt', u'fund', u'push']
[u'school', u'biggest', u'slice', u'educ', u'fund']
[u'scientist', u'success', u'grow', u'southern', u'bluefin', u'tuna']
[u'second', u'bodi', u'factori', u'blast']
[u'semi', u'manufactur', u'lay', u'staff']
[u'sergeant', u'undergo', u'surgeri', u'highway']
[u'shaft', u'precis', u'help', u'final', u'breakthrough']
[u'shire', u'seek', u'compo', u'hydro', u'wear', u'tear']
[u'solomon', u'court', u'deni', u'bail', u'polic', u'minist']
[u'state', u'urg', u'follow', u'govt', u'lead', u'truck', u'fee']
[u'stylish', u'board', u'rome']
[u'supermarket', u'protest', u'meet', u'unlik', u'affect']
[u'sydney', u'water', u'accus', u'capit', u'work', u'neglect']
[u'talk', u'hold', u'prospect', u'hang', u'parliament']
[u'tasmania', u'reflect', u'rescu']
[u'break', u'budget']
[u'thompson', u'worri', u'cat', u'fight']
[u'toll', u'say', u'patrick', u'buyout', u'gain', u'momentum']
[u'town', u'camp', u'popul', u'doubl', u'census', u'figur']
[u'trap', u'miner', u'calm', u'rescuer', u'break']
[u'trap', u'miner', u'free']
[u'trap', u'miner', u'walk', u'free', u'week', u'ordeal']
[u'tuckey', u'confirm', u'intent', u'stand']
[u'kill', u'blast', u'flatten', u'factori']
[u'road', u'death', u'spark', u'care', u'plea']
[u'union', u'coach', u'judiciari', u'overhaul']
[u'union', u'express', u'relief', u'rescu']
[u'vanston', u'discuss', u'migrat', u'chang']
[u'expert', u'play', u'rescu']
[u'water', u'wast', u'money', u'iemma']
[u'water', u'cost', u'push', u'commod', u'price']
[u'wayn', u'swan', u'budget']
[u'wenger', u'hope', u'keep', u'henri', u'arsenal']
[u'windsor', u'seek', u'greater', u'health', u'fund']
[u'woodsid', u'platform', u'head', u'exmouth', u'coast']
[u'world', u'trade', u'chang', u'pose', u'problem', u'fruit', u'grower']
[u'kill', u'baghdad', u'april', u'iraqi', u'presid']
[u'million', u'encourag', u'recycl']
[u'iraqi', u'terror', u'suspect', u'escap', u'coalit']
[u'accc', u'urg', u'investig', u'milk', u'price']
[u'accus', u'plead', u'guilti', u'student', u'kidnap']
[u'junk', u'food', u'school', u'canteen']
[u'adelaid', u'polic', u'shoot', u'investig']
[u'plan', u'bypass', u'hama', u'govern']
[u'turn', u'kean', u'testimoni']
[u'withdraw', u'gasnier', u'offer']
[u'assembl', u'consid', u'spend', u'critic', u'motion']
[u'athlet', u'welcom', u'tour', u'block', u'broom']
[u'email', u'date', u'wrong', u'say']
[u'urg', u'independ', u'inquiri']
[u'baillieu', u'urg', u'retain', u'speed', u'polici']
[u'beaconsfield', u'face', u'challeng', u'disast', u'aftermath']
[u'beaconsfield', u'resid', u'upbeat', u'futur']
[u'bendigo', u'miner', u'deep', u'miner', u'widow']
[u'bishop', u'vow', u'rebuild', u'gut', u'church']
[u'bowen', u'play', u'start']
[u'brenton', u'bowen', u'keep', u'start']
[u'bridg', u'camera', u'network', u'extend']
[u'brisban', u'home', u'school', u'evacu', u'bomb', u'scare']
[u'brisban', u'immigr', u'site', u'detent', u'centr']
[u'bris', u'polic', u'wont', u'rule', u'terror', u'bomb', u'scare']
[u'britney', u'spear', u'pregnant']
[u'budget', u'benefit', u'univers', u'sport', u'institut']
[u'budget', u'boost', u'south', u'east', u'nairn']
[u'budget', u'breakthrough', u'highway']
[u'budget', u'build', u'year', u'work', u'costello']
[u'budget', u'deliv', u'fund', u'boost']
[u'budget', u'disappoint', u'pacif', u'highway', u'task']
[u'budget', u'fail', u'infrastructur']
[u'budget', u'pleas', u'tasmanian', u'busi']
[u'budget', u'put', u'brake', u'road', u'fund', u'brack']
[u'budget', u'put', u'pressur', u'rat', u'labor', u'say']
[u'budget', u'illeg', u'fish', u'measur', u'inadequ']
[u'budget', u'spur', u'market', u'activ']
[u'budget', u'support', u'dollar', u'rise']
[u'budget', u'cut', u'respons', u'howard']
[u'busi', u'retir', u'budget']
[u'cahil', u'name', u'squad']
[u'rethink', u'rural', u'doctor', u'crisi']
[u'canker', u'affect', u'citrus', u'grower', u'undecid']
[u'caravan', u'park', u'evict', u'anger', u'local', u'politician']
[u'caravan', u'park', u'tenant', u'face', u'evict']
[u'cattl', u'protest', u'littl', u'impact', u'brack']
[u'channel', u'ident', u'contempt', u'hear']
[u'chief', u'minist', u'want', u'industri', u'expans']
[u'childcar', u'centr', u'fin', u'leav', u'babi']
[u'closer']
[u'closer']
[u'commod', u'boom', u'prompt', u'budget', u'spend', u'spree']
[u'compens', u'consid', u'kawana', u'charg']
[u'competit', u'chang', u'boost', u'water', u'recycl']
[u'concern', u'hotel', u'develop', u'aborigin', u'land']
[u'confer', u'outlin', u'impact', u'agricultur']
[u'copper', u'hit', u'record', u'high']
[u'corn', u'notch', u'centuri', u'bulldog']
[u'corpor', u'court', u'rule', u'stave', u'administr']
[u'costello', u'super', u'plan', u'prais']
[u'council', u'approv', u'millmerran', u'boom', u'develop']
[u'council', u'move', u'slow', u'eurobodalla', u'eros']
[u'council', u'seek', u'communiti', u'feedback', u'websit']
[u'council', u'urg', u'creativ', u'boost', u'invest']
[u'cousin', u'like', u'starter', u'pie', u'blockbust']
[u'crocker', u'want', u'judiciari', u'overhaul']
[u'cyclon', u'monica', u'rippl', u'continu']
[u'dakar', u'organis', u'promis', u'improv', u'safeti']
[u'releas', u'namoi', u'flow']
[u'danih', u'dismiss', u'neitz', u'critic']
[u'defenc', u'road', u'spend', u'boost', u'hunter']
[u'domain', u'extinguish']
[u'driver', u'urg', u'servic', u'car', u'weekend', u'spill']
[u'town', u'decis', u'surpris', u'council']
[u'dutch', u'soldier', u'afghanistan']
[u'england', u'joke', u'walcott', u'say']
[u'england', u'bridg', u'nightclub', u'brawl']
[u'timor', u'govt', u'make', u'contact', u'sack', u'soldier']
[u'communist', u'elect', u'italian', u'presid']
[u'explos', u'shoot', u'accus', u'say']
[u'scan', u'revolutionis', u'diagnos']
[u'fail', u'investor', u'divid', u'westpoint', u'class', u'action']
[u'farmer', u'welcom', u'fund', u'rural', u'sector']
[u'farmer', u'water', u'woe', u'inquiri']
[u'fear', u'budget', u'cut', u'wont']
[u'fijian', u'brush', u'elect', u'complaint']
[u'destroy', u'histor', u'church']
[u'flintoff', u'relish', u'england', u'captainci']
[u'lion', u'hart', u'go', u'aker']
[u'forrest', u'plan', u'stand']
[u'fuel', u'price', u'cut', u'virgin', u'blue', u'profit']
[u'fund', u'boost', u'illeg', u'fish', u'arrest', u'ellison']
[u'rush', u'switch', u'decis']
[u'geraldton', u'get', u'juvenil', u'justic', u'supervis']
[u'kick', u'outback', u'tour']
[u'globe', u'circl', u'cyclist', u'reunit', u'steal', u'bike']
[u'govt', u'taunt', u'labor', u'budget', u'respons']
[u'govt', u'hold', u'promis', u'fuel', u'rebat']
[u'govt', u'continu', u'law', u'defenc']
[u'green', u'light', u'floor', u'supermarket', u'protest']
[u'green', u'push', u'legisl', u'explan']
[u'group', u'seek', u'domain', u'alight']
[u'guantanamo', u'detaine', u'transfer', u'talk', u'continu']
[u'plantat', u'decis', u'setback', u'council']
[u'hama', u'fatah', u'carri', u'gun']
[u'heavi', u'workload', u'blame', u'doctor', u'resign']
[u'hick', u'benefit', u'transfer', u'deal']
[u'high', u'court', u'judg', u'question', u'workchoic', u'titl']
[u'highway', u'fund', u'boost', u'help', u'gunn', u'brown']
[u'hinkler', u'welcom', u'rail', u'fund', u'commit']
[u'hume', u'highway', u'reopen']
[u'illawarra', u'land', u'infrastructur', u'develop']
[u'illeg', u'boat', u'burn', u'facil', u'busi']
[u'destin', u'hero', u'mundin']
[u'indonesia', u'back', u'iran', u'peac', u'nuclear', u'program']
[u'indonesian', u'court', u'reject', u'review', u'christian']
[u'ing', u'origin', u'berth']
[u'injur', u'miner', u'releas', u'hospit']
[u'injur', u'petacchi', u'tour']
[u'irrig', u'await', u'guarante', u'ahead', u'hydro', u'sale']
[u'island', u'great', u'escap']
[u'israel', u'siez', u'explos', u'gaza', u'coast']
[u'juri', u'discharg', u'fail', u'reach', u'decis']
[u'keelti', u'question', u'suitabl', u'solomon', u'polic']
[u'kelli', u'hail', u'budget', u'famili']
[u'kipper', u'field', u'purchas', u'boost', u'longford']
[u'kununurra', u'plan', u'bigger', u'visitor', u'centr']
[u'labor', u'give', u'support', u'feder', u'budget']
[u'land', u'council', u'appeal', u'nativ', u'titl', u'compo']
[u'limit', u'oper', u'consid', u'beaconsfield']
[u'malthous', u'critic', u'rooki', u'rule']
[u'guilti', u'murder', u'student']
[u'maret', u'island', u'host', u'process']
[u'marin', u'retain', u'local', u'pair']
[u'maritim', u'emerg', u'vessel', u'base', u'dampier']
[u'mayor', u'face', u'court', u'assault', u'charg']
[u'suffer', u'slam', u'refer', u'group', u'delay']
[u'medic', u'school', u'open', u'gambier']
[u'meet', u'leav', u'oppon', u'unconvinc']
[u'surviv', u'week', u'lose']
[u'treat', u'dehydr', u'week', u'adrift']
[u'middlesbrough', u'fulli', u'final']
[u'militia', u'ceas', u'mogadishu']
[u'mine', u'delay', u'surpris', u'current', u'climat']
[u'minist', u'risk', u'lie', u'punish', u'lavarch']
[u'back', u'paraburdoo', u'local', u'pool', u'frustrat']
[u'confid', u'earli', u'hume', u'highway', u'deadlin']
[u'fight', u'explor', u'scheme', u'despit', u'budget']
[u'murdoch', u'host', u'hillari', u'clinton', u'fund', u'raiser']
[u'nadal', u'edg', u'moya', u'progress', u'rome']
[u'nevill', u'back', u'budget', u'fund']
[u'newcastl', u'give', u'permiss', u'appoint', u'roeder']
[u'red', u'coach', u'face', u'critic']
[u'deputi', u'polic', u'commission', u'appoint']
[u'compens', u'mari', u'water', u'loss', u'beatti']
[u'changer', u'budget']
[u'releas', u'snowi', u'hydro', u'sale', u'document']
[u'author', u'brace', u'season']
[u'coastal', u'resid', u'urg', u'prepar']
[u'resid', u'miss', u'budget', u'stirl']
[u'nurs', u'sack', u'consid', u'benchmark']
[u'foreign', u'minist', u'email', u'leak']
[u'offic', u'upset', u'polic', u'killer', u'earli', u'releas']
[u'ombudsman', u'recommend', u'visa', u'tiananmen', u'wit']
[u'onus', u'muslim', u'leader', u'support', u'moder', u'islam']
[u'opposit', u'say', u'budget', u'rais', u'rat']
[u'health', u'need', u'forget', u'mayor']
[u'papuan', u'indonesian', u'militari', u'guilti', u'reveng']
[u'rise', u'forc', u'disabl', u'servic', u'cut']
[u'perth', u'hospit', u'trial', u'asthma', u'treatment']
[u'pilot', u'distress', u'drown', u'report', u'find']
[u'plan', u'reject', u'adult', u'shop', u'move']
[u'plan', u'unveil', u'secur', u'industri', u'futur']
[u'polic', u'criticis', u'dorazio', u'case']
[u'polic', u'probe', u'caus', u'gladston', u'blast']
[u'polic', u'seiz', u'explos', u'home']
[u'public', u'appeal', u'fund', u'ballarat', u'paddl', u'steamer']
[u'pushbik', u'robber', u'refus', u'bail']
[u'reduct', u'wheat', u'export', u'levi', u'hold']
[u'represent', u'concern', u'ahead', u'councillor']
[u'resid', u'hope', u'preserv', u'land']
[u'resid', u'commonwealth', u'lead', u'poison']
[u'resourc', u'boom', u'hasten', u'kalkaroo', u'develop']
[u'ricciuto', u'face', u'kangaroo']
[u'richard', u'brain', u'surgeri']
[u'right', u'abus', u'elect', u'council']
[u'robot', u'search', u'blast', u'victim']
[u'ruud', u'boot', u'fergi', u'report']
[u'saddam', u'lawyer', u'attack', u'sham', u'trial']
[u'group', u'applaud', u'budget']
[u'salin', u'threat', u'prompt', u'council', u'turnaround']
[u'mental', u'health', u'sector', u'face', u'hous', u'crisi']
[u'school', u'reopen', u'bomb', u'scare']
[u'scientist', u'harvest', u'tree', u'experi']
[u'scrap', u'tourism', u'plan', u'anger', u'montvill']
[u'second', u'bodi', u'recov', u'blast', u'site']
[u'sehwag', u'order']
[u'semi', u'crash', u'close', u'hume', u'highway']
[u'senat', u'urg', u'vote', u'migrat']
[u'offend', u'agre', u'deport', u'order']
[u'face', u'charg', u'dili', u'unrest']
[u'slater', u'power', u'round', u'teahupoo']
[u'small', u'busi', u'disappoint', u'budget']
[u'snow', u'fall', u'earli', u'season']
[u'south', u'west', u'resid', u'alert', u'virus', u'outbreak']
[u'spoof', u'film', u'director', u'internet']
[u'spur', u'demand', u'game', u'replay']
[u'state', u'anti', u'argument', u'extrem']
[u'super', u'industri', u'senior', u'welcom', u'budget', u'plan']
[u'super', u'benefit', u'budget', u'costello']
[u'sweden', u'ring', u'chang', u'defenc']
[u'tasmania', u'secur', u'bevan', u'season']
[u'cut', u'super', u'plan', u'labor', u'support']
[u'tendulkar', u'train', u'ahead', u'test', u'seri']
[u'tey', u'bros', u'season', u'earli']
[u'bolter', u'socceroo', u'squad']
[u'tran', u'tasman', u'power', u'cabl', u'open']
[u'trap', u'beaconsfield', u'miner', u'enjoy', u'limelight']
[u'treasur', u'pleas', u'budget', u'respons']
[u'trio', u'charg', u'audio', u'store', u'break']
[u'trio', u'lose', u'claim', u'credibl']
[u'union', u'win', u'chang', u'school', u'staff', u'plan']
[u'vaughan', u'need', u'time', u'comeback']
[u'vieri', u'diana', u'itali', u'squad']
[u'warner', u'seal', u'groundbreak', u'deal', u'film']
[u'west', u'give', u'iran', u'breather', u'nuclear']
[u'west', u'say', u'good', u'feder', u'budget']
[u'wheat', u'yield', u'threat', u'dept', u'confirm', u'virus']
[u'wind', u'farm', u'elect', u'issu']
[u'windsor', u'welcom', u'budget', u'highway', u'fund']
[u'woman', u'hospit', u'drug', u'relat']
[u'women', u'best', u'trust', u'mat', u'instinct', u'studi']
[u'wrong', u'life', u'rule', u'prompt', u'reform']
[u'yamba', u'polic', u'station', u'upgrad']
[u'want', u'scholl', u'german', u'team']
[u'kill', u'iraq', u'maliki', u'miss', u'deadlin']
[u'abandon', u'prison', u'project', u'urg']
[u'learn', u'expans', u'issu', u'accc']
[u'accc', u'investig', u'sunbeam', u'price', u'set']
[u'actor', u'showcas', u'uniqu', u'relationship', u'film']
[u'promis', u'heed', u'pipelin', u'concern']
[u'boost', u'pacif']
[u'seek', u'fund', u'age', u'care', u'infrastructur']
[u'appeal', u'factori', u'explos', u'victim']
[u'argentina', u'heinz', u'messi', u'pick', u'world']
[u'auction', u'set', u'record', u'warhol', u'soup', u'seri']
[u'aussi', u'fall', u'teahupoo']
[u'aust', u'boost', u'pacif']
[u'aust', u'doctor', u'begin', u'aspirin', u'studi']
[u'aust', u'mark', u'intern', u'trade']
[u'australia', u'africa', u'sign', u'climat', u'chang', u'deal']
[u'aust', u'women', u'heed', u'warn', u'breast', u'screen']
[u'public', u'servant', u'like', u'remain']
[u'beaconsfield', u'inquiri', u'push']
[u'beaconsfield', u'miner', u'demand', u'independ', u'inquiri']
[u'beaconsfield', u'resid', u'join', u'parti', u'miner']
[u'beaconsfield', u'survivor', u'attend', u'union', u'meet']
[u'beatti', u'outlin', u'concern', u'reef', u'plan']
[u'beazley', u'target', u'child', u'care', u'skill', u'budget', u'repli']
[u'beazley', u'focus', u'skill', u'crisi']
[u'beazley', u'tackl', u'skill', u'shortag', u'budget']
[u'right', u'debat', u'need']
[u'bird', u'vaccin', u'trial', u'encourag']
[u'bogut', u'rooki', u'vote']
[u'bougainvill', u'violenc', u'concern', u'downer']
[u'brain', u'tumour', u'case', u'prompt', u'build', u'closur']
[u'brisban', u'teacher', u'charg', u'terror', u'offenc']
[u'bris', u'teacher', u'face', u'charg', u'explos']
[u'britain', u'denounc', u'guantanamo', u'prison']
[u'broadbent', u'quit', u'intern', u'netbal']
[u'budget', u'littl', u'address', u'cost', u'vice', u'chancellor']
[u'budget', u'ensur', u'mildura', u'airport', u'secur', u'overhaul']
[u'budget', u'fail', u'address', u'skill', u'shortag', u'opposit']
[u'budget', u'cut', u'lure', u'migrant']
[u'bunburi', u'council', u'prais', u'vote', u'aquif']
[u'bush', u'tip', u'brother', u'white', u'hous']
[u'call', u'guantanamo', u'closur', u'increas']
[u'carer', u'payment', u'increas', u'inadequ', u'group', u'claim']
[u'cautious', u'respons', u'murray', u'darl', u'spend']
[u'ceremoni', u'melb', u'stamp']
[u'ciss', u'see', u'final', u'ticket', u'world']
[u'closer']
[u'club', u'consid', u'dump', u'event']
[u'recommend', u'charg', u'gold', u'coast', u'elect']
[u'communiti', u'tell', u'councillor', u'behav']
[u'communiti', u'consult', u'indigen', u'wage', u'fund']
[u'competit', u'council', u'defend', u'alcohol', u'regul']
[u'council', u'meet', u'minist', u'secur', u'rate', u'rise']
[u'council', u'reject', u'row', u'cours', u'propos']
[u'council', u'select', u'bogan', u'tourist', u'info', u'site']
[u'council', u'fight', u'princ', u'highway', u'fund']
[u'council', u'decid', u'coal', u'creek', u'futur']
[u'council', u'wont', u'challeng', u'chinderah', u'marina']
[u'court', u'rule', u'toppl', u'law']
[u'cricket', u'australia', u'celebr', u'aborigin', u'team', u'tour']
[u'cyclon', u'rainfal', u'leav', u'unsaf', u'public']
[u'dairi', u'australia', u'effici', u'microscop']
[u'debat', u'law', u'curb', u'troublesom', u'boati']
[u'debnam', u'meet', u'famili', u'slay', u'policemen']
[u'defenc', u'chief', u'back', u'older', u'recruit', u'plan']
[u'downer', u'awar', u'papuan', u'kill', u'claim']
[u'downer', u'plan', u'meet', u'papua']
[u'downer', u'ralli', u'support', u'migrat', u'chang']
[u'dri', u'fruit', u'grower', u'hand', u'pick', u'fruit']
[u'driver', u'jail', u'tourist', u'death']
[u'drought', u'ram', u'home', u'effect', u'sheep']
[u'east', u'timor', u'invit', u'probe', u'violenc']
[u'ergon', u'warn', u'harvest', u'watch', u'powerlin']
[u'famili', u'fear', u'petrol', u'rat']
[u'famili', u'speak', u'shoot', u'policeman']
[u'farmer', u'seek', u'inform', u'kangaloon', u'aquif']
[u'farmer', u'tell', u'homework', u'ahead', u'water', u'auction']
[u'fiji', u'elect', u'chief', u'defend', u'poll', u'process']
[u'flintoff', u'call', u'emphat', u'lanka']
[u'forc', u'determin', u'avoid', u'wooden', u'spoon']
[u'senat', u'urg', u'local', u'govern', u'consolid']
[u'charg', u'raid', u'heroin', u'stash']
[u'gatlin', u'attempt', u'world', u'record', u'doha']
[u'global', u'pulp', u'industri', u'verg', u'collaps']
[u'govt', u'criticis', u'indigen', u'health', u'spend']
[u'govt', u'deni', u'defenc', u'cost', u'cover']
[u'govt', u'give', u'weekend', u'deadlin', u'capricorn', u'hospit']
[u'govt', u'refus', u'waiv', u'lachlan', u'irrig', u'charg']
[u'govt', u'rein', u'cost']
[u'govt', u'releas', u'area', u'petroleum', u'explor']
[u'govt', u'set', u'sight', u'kyogl', u'council']
[u'gower', u'say', u'citi', u'readi', u'countri']
[u'grape', u'grower', u'mull', u'mothbal', u'vine']
[u'harvey', u'hint', u'retir']
[u'high', u'court', u'reserv', u'decis']
[u'highway', u'bypass', u'threaten', u'rare', u'underground', u'orchid']
[u'hmas', u'diamantina', u'return', u'dock']
[u'hospit', u'heritag', u'status', u'commerci', u'advantag']
[u'howard', u'decid', u'beaconsfield']
[u'hydro', u'sale', u'opposit', u'grow', u'inquiri', u'head']
[u'india', u'replic', u'form', u'say', u'chappel']
[u'indigen', u'census', u'collector', u'local', u'communiti']
[u'indonesian', u'agent', u'coerc', u'plea', u'papuan', u'girl']
[u'indon', u'govt', u'face', u'papua', u'charg']
[u'iranian', u'presid', u'play', u'suggest']
[u'israel', u'vanish', u'iranian', u'presid', u'say']
[u'jayasuriya', u'revers', u'retir', u'decis']
[u'kewel', u'seek', u'antidot', u'istanbul', u'blue']
[u'beazley', u'respond', u'budget']
[u'labor', u'ralli', u'beazley']
[u'sit', u'democrat', u'quit']
[u'council', u'wari', u'hick', u'transfer', u'deal']
[u'leap', u'croc', u'shock', u'scientist']
[u'liber', u'support', u'mountain', u'cattlemen']
[u'lion', u'dump']
[u'plant', u'leak']
[u'local', u'join', u'shark', u'futur', u'plan']
[u'local', u'telstra', u'boss', u'promis', u'better', u'mobil']
[u'london', u'bomber', u'like', u'qaeda', u'contact']
[u'lyon', u'drop', u'hurrican', u'clash']
[u'magpi', u'rest', u'buckley', u'eagl', u'clash']
[u'malle', u'eye', u'nation', u'titl']
[u'charg', u'child', u'offenc']
[u'face', u'court', u'eimeo', u'murder']
[u'marin', u'park', u'boundari', u'botch']
[u'mari', u'talk', u'stunt', u'springborg']
[u'mayor', u'confid', u'mine', u'boom', u'offset', u'baxter']
[u'mayor', u'confid', u'futur', u'despit', u'assault', u'charg']
[u'mcgauran', u'grain', u'council', u'fight', u'levi']
[u'mcgradi', u'begin', u'european', u'parliamentari', u'trip']
[u'mckenzi', u'concern', u'gasnier', u'saga']
[u'meteorit', u'impact', u'space', u'rock', u'theori']
[u'midwiferi', u'care', u'find', u'welcom']
[u'mine', u'appoint', u'bring', u'explor', u'closer']
[u'troubl', u'renew', u'pulp', u'debat']
[u'minist', u'flag', u'busi', u'access', u'smart', u'card', u'data']
[u'minist', u'take', u'swipe', u'commonwealth', u'medic']
[u'minist', u'vow', u'independ']
[u'mogadishu', u'ceas', u'collaps']
[u'molik', u'ask', u'chase', u'french', u'open', u'wildcard']
[u'case', u'worker', u'head', u'coast']
[u'charg', u'expect', u'brisban', u'bomb', u'scare']
[u'mornington', u'boss', u'quit', u'quell', u'critic']
[u'murder', u'trial', u'move', u'melbourn']
[u'music', u'industri', u'clamp', u'scalper']
[u'post', u'half', u'year', u'profit']
[u'nelson', u'deni', u'delay', u'bodi', u'repatri']
[u'news', u'corp', u'doubl', u'quarter', u'profit']
[u'korea', u'accept', u'food']
[u'norman', u'say', u'time', u'scott']
[u'norman', u'play', u'australian', u'open']
[u'club', u'salari']
[u'nullarbor', u'busi', u'welcom', u'eyr', u'highway', u'upgrad']
[u'nurs', u'warn', u'defenc', u'centr', u'sack']
[u'rail', u'line', u'miss', u'budget']
[u'giant', u'accus', u'briberi']
[u'opposit', u'promis', u'pressur', u'govt', u'road']
[u'owner', u'take', u'fight', u'pitbul', u'court']
[u'oxygen', u'tank', u'insect', u'afloat']
[u'parliament', u'consid', u'migrat']
[u'dock', u'fundrais', u'knight', u'famili']
[u'fee', u'rise', u'hit', u'club']
[u'perth', u'hospit', u'win', u'fund', u'fight']
[u'petit', u'call', u'hang', u'hart', u'work']
[u'plantat', u'reform', u'plan', u'unveil']
[u'blame', u'trial', u'delay', u'hick', u'legal', u'team']
[u'move', u'help', u'bodi', u'famili']
[u'play', u'india', u'uranium', u'sale', u'talk']
[u'polic', u'deni', u'heavi', u'handed', u'domain', u'protest']
[u'polic', u'fli', u'arrest', u'tree', u'sitter']
[u'polic', u'killer', u'wouldnt', u'chang', u'recent', u'releas']
[u'policeman', u'hurt', u'bougainvill', u'shoot']
[u'policeman', u'suspens', u'rape', u'charg', u'continu']
[u'polo', u'gain', u'rise', u'star', u'status']
[u'popul', u'boom', u'busselton', u'airport']
[u'prodi', u'communist', u'support']
[u'promis', u'shop', u'centr', u'creat', u'job']
[u'whale', u'nation', u'recruit', u'ahead', u'vote']
[u'pulp', u'propon', u'head', u'canberra']
[u'push', u'childcar', u'worker', u'skill', u'migrat']
[u'push', u'improv', u'transport', u'countri', u'victoria']
[u'govt', u'launch', u'ethanol', u'campaign']
[u'quirindi', u'resid', u'wait', u'telstra', u'phone']
[u'ramo', u'horta', u'warn', u'polit', u'parti', u'behav']
[u'ratepay', u'foot', u'water', u'infrastructur']
[u'recycl', u'plant', u'save', u'drink', u'water']
[u'report', u'link', u'liquor', u'store', u'number', u'crime', u'rate']
[u'report', u'releas', u'fatal', u'hotham', u'crash']
[u'resid', u'angri', u'caravan', u'park', u'closur']
[u'richard', u'leav', u'hospit']
[u'riot', u'squad', u'stand', u'dubbo', u'hous', u'estat']
[u'rural', u'counsel', u'fund', u'welcom']
[u'rural', u'properti', u'valu', u'tip']
[u'sack', u'worker', u'await', u'airc', u'decis']
[u'govt', u'promis', u'murray', u'water', u'purchas']
[u'saltbush', u'shrubland', u'plan', u'anger', u'grazier']
[u'share', u'inch', u'record']
[u'sonia', u'gandhi', u'win', u'elect']
[u'south', u'coast', u'forest', u'target', u'fuel', u'reduct']
[u'south', u'korea', u'shock', u'world', u'say', u'coach']
[u'studi', u'reveal', u'child', u'obes', u'epidem']
[u'take', u'tammin']
[u'talk', u'hold', u'possibl', u'player', u'strike']
[u'tangl', u'humpback', u'free', u'bunburi']
[u'tree', u'sitter', u'hail', u'hero']
[u'teacher', u'charg', u'terror', u'offenc']
[u'teacher', u'remand', u'custodi', u'bomb', u'haul']
[u'terrorist', u'main', u'focus', u'australia']
[u'terrorist', u'reli', u'cut', u'edg', u'technolog']
[u'textil', u'factori', u'clean']
[u'theophan', u'lose', u'high', u'court', u'super']
[u'thorp', u'make', u'progress', u'break', u'hand']
[u'complic', u'blast', u'factori', u'search']
[u'toll', u'achiev', u'control', u'patrick']
[u'tottenham', u'replay', u'appeal', u'turn']
[u'tree', u'protest', u'grant', u'bail']
[u'trio', u'jail', u'darwin', u'man', u'murder']
[u'trio', u'torr', u'strait', u'rescu', u'answer', u'prayer']
[u'paraguay', u'player', u'train']
[u'court', u'recommend', u'alleg', u'hacker', u'extradit']
[u'unemploy', u'rate', u'rise', u'slight']
[u'highlight', u'plight', u'sudanes', u'refuge', u'chad']
[u'stay', u'timor', u'month']
[u'investor', u'rollercoast', u'ride']
[u'reject', u'call', u'guantanamo', u'closur']
[u'reject', u'guantanamo', u'closur']
[u'budget', u'confirm', u'surplus']
[u'budget', u'tip', u'black']
[u'walcott', u'readi', u'intern', u'footbal', u'crouch']
[u'premier', u'reopen', u'trade', u'hour', u'debat']
[u'waratah', u'prim', u'perform']
[u'west', u'rescu', u'chopper', u'progress', u'report']
[]
[u'windi', u'seal', u'zimbabw', u'seri']
[u'wine', u'industri', u'seek', u'rebat']
[u'woman', u'hire', u'hear', u'drug', u'test']
[u'worker', u'dock', u'beaconsfield', u'whip', u'round']
[u'youth', u'gang', u'blame', u'rail', u'theft']
[u'servic', u'southern']
[u'servic', u'restor']
[u'remot', u'agenc', u'award', u'fund']
[u'abduct', u'suspect', u'elud', u'polic']
[u'accus', u'child', u'offend', u'releas', u'bail']
[u'alcohol', u'abus', u'crime', u'link', u'report']
[u'qaeda', u'video', u'urg', u'attack', u'cartoon']
[u'amnesti', u'head', u'win', u'peac', u'prize']
[u'anim', u'right', u'activist', u'jail', u'grave', u'rob']
[u'kill', u'ethiopian', u'blast']
[u'aussi', u'groom', u'share', u'second', u'place', u'india']
[u'aussi', u'morrison', u'down', u'iron', u'teahupoo']
[u'face', u'export', u'woe']
[u'baillieu', u'expand', u'shadow', u'cabinet']
[u'ballack', u'doubt', u'chelsea']
[u'bank', u'profit']
[u'barossa', u'resid', u'seek', u'infrastructur', u'talk']
[u'barr', u'defend', u'teacher', u'deal']
[u'beazley', u'continu', u'pitch', u'middl', u'australia']
[u'beazley', u'stand', u'budget', u'initi']
[u'biosecur', u'plan', u'protect', u'northern']
[u'blast', u'damag', u'build', u'demolish']
[u'blast', u'victim', u'famili', u'visit', u'site']
[u'bodi', u'control', u'water', u'suppli']
[u'boxer', u'delisl', u'rematch', u'wood']
[u'brazil', u'beat', u'germani', u'say', u'parreira']
[u'brisban', u'teacher', u'face', u'terror', u'charg']
[u'brisban', u'terror', u'accus', u'face', u'court']
[u'brisban', u'water', u'price', u'rise']
[u'bris', u'teacher', u'custodi', u'terror', u'charg']
[u'briton', u'floss', u'teeth', u'screwdriv', u'survey']
[u'budget', u'alloc', u'kimberley', u'health', u'upgrad']
[u'budget', u'contribut', u'fund', u'karratha', u'power']
[u'budget', u'critic', u'surpris', u'ripper']
[u'budget', u'ignor', u'north', u'coast', u'communiti', u'group']
[u'build', u'delay', u'hurt', u'iluka', u'line']
[u'bulk', u'bill', u'kid', u'record', u'high', u'abbott']
[u'bulldog', u'pass', u'membership', u'mileston']
[u'bush', u'dodg', u'domest', u'spi', u'alleg']
[u'butcher', u'hit', u'sydney', u'talk']
[u'detail', u'fish', u'licenc', u'buyout']
[u'cannabi', u'smoker', u'ban', u'drive']
[u'cape', u'call', u'cyclon', u'assist']
[u'caravan', u'park', u'resid', u'meet', u'rent', u'rise']
[u'carleton', u'life', u'celebr', u'servic']
[u'casino', u'bar', u'liquor', u'licenc', u'temporarili', u'suspend']
[u'cat', u'snap', u'lose', u'streak', u'saint']
[u'chickenpox', u'outbreak', u'queanbeyan']
[u'climat', u'chang', u'worsen', u'melioidosi', u'outbreak']
[u'closer']
[u'closer', u'abcnew']
[u'closer', u'abcnew']
[u'action', u'wont', u'impact', u'council', u'oper']
[u'coercion', u'claim', u'draw', u'respons', u'indonesian']
[u'compani', u'fin', u'water', u'pollut']
[u'council', u'consid', u'special', u'pip', u'recycl', u'water']
[u'council', u'mull', u'rate', u'rise', u'figur']
[u'council', u'seek', u'chang', u'explor', u'notif']
[u'countri', u'edg', u'citi', u'late']
[u'certain', u'starter', u'magpi']
[u'crow', u'coach', u'say', u'rare']
[u'custodi', u'condit', u'terror', u'accus', u'draconian']
[u'cyber', u'crimin', u'jail', u'term', u'light']
[u'dead', u'woman', u'parent', u'want', u'health', u'chang']
[u'dept', u'warn', u'telephon', u'scam']
[u'downer', u'prais', u'indonesia', u'anti', u'terror', u'effort']
[u'earli', u'ovarian', u'cancer', u'detect', u'trial', u'begin']
[u'charg', u'attempt', u'murder']
[u'timor', u'reject', u'need', u'peacekeep']
[u'famili', u'friend', u'farewel', u'mclennan']
[u'farmer', u'seek', u'support', u'extens']
[u'station', u'mediat', u'process']
[u'acquit', u'gang', u'fight', u'charg']
[u'foley', u'econom', u'growth', u'claim', u'wrong', u'luca']
[u'owner', u'defend', u'decis', u'sell', u'caravan']
[u'teen', u'idol', u'leif', u'garrett', u'jail']
[u'offici', u'give', u'evid', u'cole', u'inquiri']
[u'forum', u'discuss', u'chemic', u'assess', u'program']
[u'fraser', u'coast', u'mayor', u'criticis', u'propos']
[u'free', u'beaconsfield', u'miner', u'public']
[u'free', u'flow', u'water', u'pass', u'auction']
[u'fund', u'dont', u'extend', u'emerg', u'support', u'welfar']
[u'ganguli', u'head', u'counti', u'cricket']
[u'geologist', u'scoop', u'desert', u'live', u'award']
[u'gerrard', u'seek', u'tonic', u'road', u'germani']
[u'meet', u'local', u'outback']
[u'girl', u'kill', u'teen', u'boy', u'hospit', u'rural']
[u'govt', u'pledg', u'combat', u'diabet']
[u'govt', u'pursu', u'forest', u'worker', u'payout', u'bungl']
[u'govt', u'put', u'wagga', u'defenc', u'base']
[u'grape', u'varieti', u'trial', u'hold']
[u'plantat', u'push', u'farmer']
[u'health', u'spend', u'wont', u'stanhop']
[u'heenan', u'clear', u'crusad', u'clash']
[u'henri', u'hop', u'england', u'world']
[u'hewitt', u'pull', u'hamburg', u'master']
[u'highway', u'upgrad', u'overview', u'urgent', u'need']
[u'driver', u'jail']
[u'hospit', u'overcrowd', u'lead', u'violenc', u'staff']
[u'hundr', u'penguin', u'catch', u'slick']
[u'increas', u'attack', u'student', u'union', u'claim']
[u'indonesia', u'downplay', u'iran', u'disput', u'role']
[u'indonesia', u'drop', u'suharto', u'graft', u'case']
[u'inexperi', u'allow', u'contract']
[u'inflat', u'fear', u'worri', u'investor']
[u'integr', u'attack', u'surpris', u'nixon']
[u'inter', u'milan', u'retain', u'italian']
[u'internet', u'regul', u'rule', u'domain']
[u'iran', u'nuclear', u'issu', u'test']
[u'protest', u'greet', u'joyc', u'central']
[u'workshop', u'discuss', u'chang']
[u'japanes', u'space', u'sneaker', u'ultra', u'high', u'heel']
[u'joyc', u'vote', u'migrat', u'legisl']
[u'juri', u'continu', u'deliber', u'gang', u'fight', u'trial']
[u'kanck', u'urg', u'consid', u'successor']
[u'keelti', u'support', u'tighten', u'explos', u'sale']
[u'kemp', u'leav', u'parliament']
[u'kennedi', u'socceroo', u'differ']
[u'labor', u'attack', u'baillieus', u'team']
[u'labor', u'hail', u'beazley', u'budget', u'repli']
[u'labor', u'ralli', u'beazley']
[u'land', u'purchas', u'banskia', u'conserv']
[u'licuria', u'puzzl', u'buckley', u'absenc']
[u'lime', u'mine', u'loss', u'unlik', u'event', u'sale']
[u'liquid', u'check', u'alleg', u'fraud']
[u'local', u'protest', u'hous', u'plan', u'offend']
[u'london', u'bomber', u'stop', u'report']
[u'london', u'bomb', u'couldv', u'prevent', u'report']
[u'london', u'bomb', u'report', u'useless']
[u'plead', u'guilti', u'rape', u'robberi', u'abduct']
[u'matthew', u'admit', u'leppitsch', u'futur', u'doubt']
[u'matthew', u'deni', u'rift']
[u'medicar', u'cover', u'diabet', u'servic']
[u'member', u'seek', u'flexibl', u'bendigo', u'water', u'suppli']
[u'mice', u'warn', u'farmer']
[u'mainten', u'crew', u'work']
[u'miner', u'injur', u'drill', u'accid']
[u'mine', u'expert', u'focus', u'friend', u'wast', u'dump']
[u'battl', u'loom', u'australia', u'india']
[u'mother', u'celebr', u'year', u'award']
[u'moussaoui', u'save', u'death', u'lone', u'juror', u'report']
[u'concern', u'refuge', u'support', u'program']
[u'defend', u'alp', u'decis', u'vote', u'ethanol']
[u'label', u'human', u'right', u'law', u'danger']
[u'mret', u'polici', u'still', u'wind', u'farm', u'plan']
[u'mundin', u'welcom', u'dubbo', u'estat', u'experi']
[u'murray', u'environment', u'flow', u'widespread', u'support']
[u'nadal', u'reach', u'feder', u'clash', u'loom']
[u'naval', u'clash', u'prompt', u'lankan', u'emerg', u'talk']
[u'navi', u'stand', u'timor', u'deploy']
[u'navi', u'ship', u'prepar', u'possibl', u'timor', u'duti']
[u'nervous', u'wait', u'brumbi', u'lose', u'crusad']
[u'school', u'plan', u'albion', u'park']
[u'ask', u'singer', u'like', u'maria']
[u'nixon', u'attack', u'bulli', u'probe']
[u'link', u'brisban', u'teacher', u'terrorist']
[u'wildlif', u'benefit', u'grape', u'glut']
[u'trail', u'ethanol', u'push', u'opposit']
[u'consid', u'tighter', u'explos', u'sale', u'control']
[u'nurs', u'urg', u'bonus', u'long', u'term', u'servic']
[u'offici', u'discuss', u'beaconsfield', u'mine', u'futur']
[u'opposit', u'grow', u'horsham', u'water']
[u'opposit', u'prais', u'beazley', u'budget', u'repli']
[u'papua', u'open']
[u'parent', u'welcom', u'fitzroy', u'cross', u'school', u'fund']
[u'plantat', u'industri', u'investor', u'concess']
[u'player', u'choos', u'strike']
[u'defend', u'oversea', u'trip']
[u'polic', u'continu', u'murder', u'investig']
[u'polic', u'interview', u'prison', u'lawrenc', u'murder']
[u'polic', u'investig', u'casino', u'fatal', u'stab']
[u'polic', u'quiet', u'brimbl', u'case']
[u'polic', u'seek', u'wit', u'drive', u'shoot']
[u'polic', u'suspect', u'link', u'vicious', u'stab']
[u'port', u'leav', u'door', u'open']
[u'prison', u'bar', u'save', u'semen']
[u'protest', u'target', u'joyc', u'law']
[u'public', u'invit', u'comment', u'memori', u'park']
[u'qualif', u'case', u'tarnish', u'nurs', u'reput']
[u'rabuka', u'bail', u'mutini', u'charg']
[u'red', u'beat', u'otago', u'finish', u'season', u'high']
[u'region', u'question', u'budget', u'fund']
[u'resid', u'angri', u'cockburn', u'hous', u'demolit']
[u'resign', u'surgeon', u'choic']
[u'rise', u'dead', u'infect', u'studi']
[u'rlpa', u'satisfi', u'propos', u'increas']
[u'rmit', u'launch', u'tumour', u'investig']
[u'road', u'reopen', u'smoke', u'haze', u'thin']
[u'rossi', u'scorch', u'rival']
[u'ruddock', u'await', u'detail', u'civil', u'union', u'law']
[u'runway', u'expans', u'canberra', u'airport', u'progress']
[u'saddam', u'novel', u'public']
[u'govt', u'urg', u'meet', u'road', u'grant', u'oblig']
[u'scandal', u'prompt', u'juve', u'board', u'quit']
[u'scheme', u'salti', u'river', u'water']
[u'scientist', u'hwang', u'indict', u'fraud']
[u'scientist', u'predict', u'sever', u'weather']
[u'scott', u'grab', u'share', u'lead', u'irv']
[u'seafood', u'lover', u'feel', u'pinch', u'crab', u'price']
[u'second', u'goat', u'meat', u'plant', u'boost', u'job']
[u'senior', u'polic', u'stand', u'lawrenc', u'murder']
[u'shark', u'school', u'construct', u'work', u'begin']
[u'shark', u'fin', u'illeg', u'fish', u'boat']
[u'shearer', u'bid', u'farewel', u'goal']
[u'shop', u'centr', u'develop', u'await', u'site', u'approv']
[u'skill', u'shortag', u'hold', u'region', u'australia', u'crean']
[u'skill', u'shortag', u'hurt', u'financ', u'construct', u'area']
[u'smoke', u'hinder', u'school', u'work', u'travel']
[u'smyth', u'stand', u'caravan', u'park', u'sale']
[u'snowdon', u'cast', u'doubt', u'ranger', u'fund']
[u'sophi', u'condit', u'improv']
[u'steve', u'irwin', u'influenc', u'minist', u'croc', u'safari', u'rule']
[u'student', u'union', u'await', u'fine', u'decis']
[u'sydney', u'jail', u'rape', u'murder', u'plot']
[u'tanzanian', u'monkey', u'speci']
[u'polic', u'implement', u'coron', u'recommend']
[u'tattoo', u'improv', u'appear']
[u'team', u'research', u'way', u'patient', u'hospit']
[u'tevez', u'mascherano', u'releas', u'corinthian']
[u'thief', u'make', u'choir', u'costum']
[u'timber', u'industri', u'mourn', u'influenti', u'figur']
[u'italian', u'club', u'involv', u'match', u'fix']
[u'trio', u'stand', u'trial', u'tripl', u'murder']
[u'consid', u'chad', u'deploy']
[u'talk', u'direct', u'iran', u'annan']
[u'vail', u'stay', u'clear', u'wheat', u'disput']
[u'veteran', u'catt', u'england', u'frame']
[u'polic', u'consid', u'holster']
[u'wada', u'threaten', u'fifa', u'olymp']
[u'wall', u'street', u'drag', u'market', u'lower']
[u'wash', u'bodi', u'suspect', u'biki', u'murder', u'polic']
[u'water', u'price', u'rise', u'canberra']
[u'weaken', u'brumbi', u'risk', u'super', u'elimin']
[u'webb', u'fire', u'williamsburg']
[u'wodonga', u'repres', u'attend', u'fluorid', u'meet']
[u'wodonga', u'soccer', u'star', u'prepar', u'world']
[u'yorta', u'yorta', u'peopl', u'wont', u'support', u'bridg', u'plan']
[u'hurt', u'storey', u'bridg', u'accid']
[u'abort', u'law', u'prompt', u'communic', u'threat']
[u'addi', u'ababa', u'bomb', u'toll', u'rise']
[u'alderman', u'hear', u'enthusiast', u'concern']
[u'alonso', u'make', u'fine', u'start', u'spain']
[u'alonso', u'snare', u'spanish', u'pole']
[u'annan', u'urg', u'talk', u'lankan', u'crisi']
[u'aussi', u'competit', u'india']
[u'australian', u'hurt', u'west', u'bank', u'protest']
[u'beaconsfield', u'safeti', u'concern', u'rais']
[u'beethoven', u'immortalis', u'diamond']
[u'flee', u'polic', u'custodi', u'traffic', u'light']
[u'brit', u'claim', u'world', u'fuel']
[u'british', u'church', u'leader', u'speak']
[u'briton', u'melt', u'water', u'swim', u'record']
[u'brown', u'star', u'lion', u'hammer', u'hawk']
[u'burn', u'leav', u'home', u'power']
[u'bush', u'approv', u'rat', u'hit', u'fresh']
[u'bush', u'approv', u'rat', u'hit']
[u'canberra', u'bulk', u'bill', u'rate', u'averag']
[u'caravan', u'park', u'owner', u'urg', u'meet', u'resid']
[u'china', u'uranium', u'export', u'issu', u'howard', u'say']
[u'closer']
[u'closer', u'abcnew']
[u'convict', u'japanes', u'traffick', u'releas', u'melbourn']
[u'cyclist', u'criticis', u'bike', u'path', u'budget']
[u'dead', u'mini', u'biker', u'ride', u'helmet', u'polic']
[u'debut', u'mahmood', u'rip', u'lanka']
[u'demon', u'trounc', u'docker']
[u'discoveri', u'prepar', u'juli', u'launch']
[u'documentari', u'follow', u'young', u'aborigin']
[u'domin', u'bronco', u'repel', u'eagl']
[u'regist', u'step', u'closer']
[u'downer', u'play', u'timor', u'intervent']
[u'eagl', u'battl', u'bird']
[u'east', u'timor', u'await', u'navi', u'ship', u'brief']
[u'timor', u'deploy', u'strain', u'militari', u'labor']
[u'plan', u'iran', u'away', u'nuclear', u'program']
[u'raid', u'offici', u'home']
[u'feder', u'scrap', u'rome', u'nadal', u'cruis']
[u'fiji', u'tighten', u'secur', u'elect', u'near']
[u'destroy', u'coburg', u'school', u'build']
[u'foreign', u'worker', u'push', u'outrag', u'cfmeu']
[u'boss', u'die']
[u'fund', u'asid', u'mildura', u'rail', u'upgrad']
[u'funer', u'hold', u'pakistani', u'dead', u'german']
[u'gang', u'fight', u'acquitt', u'disappoint']
[u'gatlin', u'break']
[u'ghana', u'ring', u'chang', u'world', u'squad']
[u'goulburn', u'seek', u'drought', u'declar']
[u'hackett', u'strike', u'win', u'form', u'comeback', u'swim']
[u'home', u'ownership', u'plan', u'shape', u'palm', u'elect']
[u'hospit', u'open', u'adolesc', u'patient', u'unit']
[u'hotlin', u'eas', u'rmit', u'tumour', u'concern']
[u'howard', u'see', u'grow', u'need', u'allianc']
[u'rice', u'fall', u'short', u'brisban']
[u'indonesia', u'issu', u'alert', u'volcano']
[u'indonesia', u'major', u'nuclear', u'plant']
[u'inflat', u'fear', u'investor']
[u'form', u'scott', u'share', u'lead', u'irv']
[u'injuri', u'dragon', u'prevail', u'warrior']
[u'knee', u'reconstruct', u'yield', u'good', u'result', u'report']
[u'korean', u'cross', u'border', u'rail', u'link', u'test']
[u'lawrenc', u'murder', u'investig', u'look', u'interst']
[u'leader', u'muslim', u'countri', u'meet', u'bali']
[u'legisl', u'renew', u'energi', u'target', u'urg']
[u'lord', u'vote', u'assist', u'die']
[u'lucki', u'escap', u'ultralight', u'crew']
[u'manag', u'hope', u'reopen', u'month']
[u'manaudou', u'break', u'world', u'freestyl', u'record']
[u'mccaw', u'name', u'black', u'captain']
[u'mcewen', u'bag', u'giro', u'trick']
[u'meet', u'clarifi', u'union', u'communic', u'rule']
[u'merg', u'council', u'play', u'servic', u'concern']
[u'minist', u'back', u'polic', u'commission', u'lawrenc']
[u'minist', u'lobbi', u'wind', u'farm', u'option']
[u'mint', u'warn', u'smelt', u'coin', u'copper', u'price']
[u'mogadishu', u'resid', u'flee', u'fight']
[u'dead', u'nigerian', u'pipelin', u'blast']
[u'drug', u'user', u'drive', u'intox', u'survey']
[u'moussaoui', u'appeal', u'life', u'sentenc']
[u'moussaoui', u'lodg', u'appeal', u'life', u'sentenc']
[u'white', u'hous', u'spokesman', u'fluff', u'brief']
[u'nigerian', u'explos', u'toll', u'reach']
[u'nigerian', u'govt', u'say', u'blame', u'pipelin']
[u'nigerian', u'govt', u'say', u'pipelin', u'explos', u'fault']
[u'nigerian', u'petrol', u'thiev', u'know', u'risk']
[u'nigerian', u'pipelin', u'blast', u'kill']
[u'north', u'head', u'heritag', u'list']
[u'surpris', u'croatian', u'world', u'squad']
[u'join', u'call', u'medic', u'train', u'review']
[u'nurs', u'year', u'thrill']
[u'offshor', u'process', u'standard', u'worri', u'unhcr']
[u'opposit', u'criticis', u'ship', u'deploy']
[u'oriol', u'continu', u'win', u'start']
[u'oxfam', u'criticis', u'lack']
[u'pacif', u'journalist', u'keith', u'reid', u'die', u'brisban']
[u'arriv', u'washington', u'talk']
[u'hop', u'stabil', u'east', u'timor']
[u'see', u'grow', u'need', u'allianc']
[u'polic', u'consid', u'fiji', u'elect', u'result', u'secur']
[u'polic', u'deliveri', u'mobil', u'lock']
[u'prison', u'plot', u'investig', u'lengthi']
[u'medic', u'charg', u'hospit', u'frazer']
[u'quartet', u'plan', u'fall', u'short']
[u'ramo', u'horta', u'say', u'ship', u'deploy', u'unnecessari']
[u'ramo', u'horta', u'unawar', u'ship', u'deploy']
[u'cross', u'search', u'blast', u'survivor']
[u'redman', u'carr', u'win', u'teahupoo']
[u'red', u'happi', u'finish', u'season', u'win', u'note']
[u'red', u'miller']
[u'regular', u'blood', u'pressur', u'check', u'urg']
[u'rescu', u'miner', u'lash', u'media']
[u'rescu', u'miner', u'lash', u'media']
[u'road', u'accid', u'claim', u'live']
[u'rooki', u'rider', u'claim', u'china', u'pole']
[u'rooney', u'make', u'good', u'progress', u'doctor']
[u'runaway', u'tortois', u'travel', u'month']
[u'russia', u'jail', u'guantanamo', u'detaine']
[u'sailor', u'rugbi', u'futur', u'jeopardi']
[u'sailor', u'stand', u'indefinit']
[u'schu', u'fastest', u'barca', u'practic']
[u'chart', u'indigen', u'live']
[u'shark', u'knock', u'brumbi', u'semi', u'final', u'race']
[u'shiit', u'parti', u'abandon', u'iraqi', u'cabinet', u'talk']
[u'shoot', u'protest', u'injuri', u'life', u'threaten']
[u'chanchu', u'hit', u'philippin']
[u'question', u'coburg', u'school']
[u'soca', u'warrior', u'world', u'line']
[u'soldier', u'die', u'iraqi', u'armi', u'unit', u'clash']
[u'solon', u'condit', u'know', u'immigr', u'offici']
[u'solon', u'medic', u'condit', u'know', u'immigr']
[u'solon', u'payout', u'lawyer']
[u'storey', u'bridg', u'reopen', u'pile']
[u'storm', u'overpow', u'cowboy']
[u'stosur', u'pragu', u'semi']
[u'suharto', u'conscious', u'intern', u'bleed', u'doctor']
[u'suspens', u'health', u'reform', u'failur', u'flegg']
[u'swan', u'unleash', u'tiger']
[u'sydney', u'hurt', u'west', u'bank', u'protest']
[u'tarkin', u'tourism', u'manag', u'plan', u'develop']
[u'factori', u'blast', u'victim']
[u'health', u'bureaucrat', u'suspend']
[u'immigr', u'offici', u'know', u'solon', u'condit']
[u'trawler', u'sink', u'coast', u'miss']
[u'attack', u'worker']
[u'extend', u'east', u'timor', u'mission']
[u'kill', u'nigerian', u'pipelin', u'blast']
[u'admit', u'hold', u'secret', u'detaine', u'icrc']
[u'court', u'suspend', u'guantanamo', u'tribun', u'case']
[u'reject', u'talk', u'iran']
[u'volunt', u'seek', u'cancer', u'detect', u'test']
[u'cut', u'radiotherapi', u'wait', u'list']
[u'waikato', u'overpow', u'auckland', u'derbi']
[u'waratah', u'blow', u'chanc', u'host', u'semi']
[u'webb', u'maintain', u'lead', u'williamsburg']
[u'westpoint', u'sharehold', u'ralli', u'outsid', u'home']
[u'youth', u'charg', u'student', u'stab']
[u'zimbabw', u'inflat', u'rate', u'top']
[u'kill', u'brazilian', u'polic', u'station', u'attack']
[u'deni', u'sargeant', u'sack', u'base']
[u'reject', u'netbal', u'comment', u'sack', u'claim']
[u'accid', u'prompt', u'road', u'warn']
[u'campaign', u'call', u'school', u'fund', u'boost']
[u'black', u'william', u'cite', u'danger', u'tackl']
[u'amazon', u'stoneheng', u'brazil']
[u'anti', u'protest', u'heckl', u'howard']
[u'arab', u'discuss', u'fund', u'palestinian']
[u'ausalli', u'look', u'unseat', u'telstra', u'bush']
[u'aussi', u'webber', u'lurk', u'india']
[u'aust', u'health', u'care', u'effici', u'confer']
[u'baghdad', u'bomb', u'kill']
[u'barthez', u'win', u'battl', u'french', u'keeper']
[u'basra', u'secur', u'chief', u'accus', u'terror']
[u'mistak', u'cabbi', u'expert']
[u'beazley', u'call', u'howard', u'contest', u'elect']
[u'beazley', u'urg', u'adopt', u'childcar', u'polici']
[u'blue', u'battl', u'cellar', u'dweller']
[u'boy', u'turn', u'role']
[u'brent', u'tate', u'thaiday', u'wayn', u'bennett', u'hasler']
[u'budget', u'improv', u'nurs', u'bureaucrat', u'relationship']
[u'bulldog', u'hold', u'eel']
[u'bull', u'qualifi', u'super', u'semi', u'final']
[u'bush', u'defend', u'phone', u'surveil', u'program']
[u'bush', u'talk', u'phone', u'record', u'furor']
[u'knock', u'sleep']
[u'cheetah', u'super', u'win', u'note']
[u'china', u'ordain', u'bishop']
[u'closer']
[u'closer', u'abcnew']
[u'commission', u'call', u'smart', u'card', u'safeguard']
[u'council', u'seek', u'fund', u'defenc', u'site', u'roadwork']
[u'crocodil', u'remov', u'katherin', u'river']
[u'crow', u'crush']
[u'back', u'peac', u'nuclear', u'program']
[u'darwin', u'park', u'earmark', u'upgrad']
[u'deak', u'finish', u'fifth', u'world', u'meet']
[u'death', u'toll', u'rise', u'baghdad', u'blast']
[u'diamond', u'shine', u'women', u'hockey', u'final']
[u'dima', u'quiet', u'solon', u'email', u'claim']
[u'dimia', u'confirm', u'solon', u'claim']
[u'dimia', u'confirm', u'solon', u'email', u'claim']
[u'dog', u'thrash', u'hapless', u'power']
[u'east', u'timor', u'stabl', u'sensit']
[u'elect', u'monitor', u'satisfi', u'fiji', u'poll']
[u'espanyol', u'escap', u'releg']
[u'expert', u'see', u'pressur', u'northern', u'water', u'suppli']
[u'farley', u'reconcili', u'effort', u'prais']
[u'feder', u'nadal', u'dream', u'final']
[u'forum', u'hear', u'foundri', u'expans', u'concern']
[u'frazer', u'call', u'healthcar', u'fund', u'boost']
[u'frustrat', u'surgeon', u'public', u'health']
[u'fund', u'victorian', u'bike']
[u'goulburn', u'farmer', u'appeal', u'drought', u'status']
[u'govt', u'track', u'sell', u'rest', u'telstra', u'minchin']
[u'govt', u'open', u'mind', u'uranium', u'wast']
[u'gunn', u'cut', u'wood', u'supplier', u'contract']
[u'hackett', u'impress', u'brisban']
[u'hackett', u'dump', u'beij']
[u'hatton', u'take', u'welterweight', u'titl']
[u'heart', u'scottish', u'penalti', u'shoot']
[u'heckler', u'confront', u'howard', u'washington']
[u'howard', u'bush', u'discuss', u'nuclear', u'issu']
[u'howard', u'discuss', u'iraq', u'offici']
[u'indonesian', u'villag', u'evacu', u'amid', u'volcano', u'alert']
[u'indonesian', u'villag', u'flee', u'volcano']
[u'indonesia', u'build', u'major', u'nuclear', u'power', u'plant']
[u'iran', u'will', u'share', u'nuclear', u'detail']
[u'joint', u'exercis', u'test', u'volunt', u'skill']
[u'kewel', u'week']
[u'landslid', u'kill', u'indonesian', u'digger']
[u'lava', u'stream', u'indonesian', u'volcano']
[u'liber', u'push', u'launceston', u'ring', u'road']
[u'lifestyl', u'diseas', u'threat', u'indigen', u'communiti']
[u'liverpool', u'victori', u'dramat', u'final']
[u'liverpool', u'win', u'final']
[u'luke', u'patten', u'willi', u'mason', u'steve', u'folk', u'brian']
[u'malthous', u'stand', u'buckley', u'omiss']
[u'martinez', u'win', u'teahupoo']
[u'mass', u'commemor', u'john', u'paul', u'shoot']
[u'melbourn', u'storm', u'coach', u'craig', u'bellami']
[u'minchin', u'urg', u'liber', u'sell', u'chang']
[u'mother', u'camp', u'protest']
[u'moussaoui', u'move', u'supermax', u'prison']
[u'rule', u'make', u'shorten']
[u'merapi', u'emerg', u'pictur']
[u'nathan', u'brown', u'trent', u'barrett', u'shaun', u'timmin', u'clint']
[u'nation', u'open', u'katter', u'return']
[u'nepali', u'king', u'power']
[u'law', u'legalis', u'download', u'tap']
[u'specul', u'howard', u'retir']
[u'nigeria', u'begin', u'pipelin', u'explos', u'probe']
[u'bibl', u'hospit']
[u'need', u'explain', u'navi', u'movement', u'howard']
[u'world', u'italian', u'refere', u'santi']
[u'duti', u'policeman', u'charg', u'drink', u'drive']
[u'panesar', u'strike', u'england']
[u'panther', u'lose', u'streak']
[u'pedrosa', u'claim', u'maiden', u'motogp', u'victori']
[u'petrol', u'excis', u'polici', u'minchin']
[u'downplay', u'uranium', u'leas', u'propos']
[u'policeman', u'back', u'mullett', u'bulli', u'claim']
[u'pope', u'urg', u'opposit', u'marriag']
[u'protest', u'mark', u'uzbek', u'massacr', u'anniversari']
[u'name', u'suspend', u'health', u'bureaucrat']
[u'retir', u'open', u'abcnew']
[u'reward', u'urg', u'search', u'steal', u'model']
[u'richard', u'stop', u'skaif', u'record']
[u'sack', u'apprentic', u'reinstat', u'appeal']
[u'safeti', u'campaign', u'promot', u'seatbelt']
[u'sailor', u'drop', u'conduct', u'breach']
[u'sailor', u'give', u'week', u'challeng', u'dope', u'test']
[u'sailor', u'stand', u'dope', u'manag', u'say']
[u'scale', u'telstra', u'sale', u'decid']
[u'scotland', u'hold', u'japan', u'kirin']
[u'scott', u'immelman', u'share', u'byron', u'nelson', u'lead']
[u'search', u'continu', u'fish', u'crew']
[u'search', u'continu', u'trawler', u'crew']
[u'search', u'trawler', u'crew', u'continu']
[u'shark']
[u'shaun', u'mcrae', u'john', u'lang']
[u'sheen', u'lash', u'controversi']
[u'kill', u'accid']
[u'skaif', u'track', u'break', u'brock', u'record']
[u'skill', u'shortag', u'make', u'foreign', u'worker', u'necessari']
[u'somalian', u'warn', u'minist', u'militia']
[u'spate', u'accid', u'kill', u'injur']
[u'steal', u'plan', u'remov', u'mainten']
[u'stosur', u'move', u'pragu', u'final']
[u'stuart', u'raper', u'matt', u'elliott']
[u'studi', u'monitor', u'tunnel', u'health', u'impact']
[u'team', u'await', u'russel', u'debut', u'game']
[u'telstra', u'sale', u'track', u'minchin']
[u'theo', u'stun', u'sven', u'silenc']
[u'gorg', u'project', u'rais', u'question']
[u'timber', u'giant', u'turn', u'walnut']
[u'sheen', u'michael', u'hagan']
[u'trio', u'lodg', u'parliament', u'protest', u'sentenc']
[u'trueman', u'suffer', u'cancer']
[u'ukrainian', u'prison', u'suicid', u'protest']
[u'unicef', u'condemn', u'attack', u'worker']
[u'union', u'welcom', u'unfair', u'dismiss', u'rule']
[u'vail', u'defend', u'coalit', u'childcar', u'measur']
[u'vail', u'defend', u'govt', u'childcar', u'measur']
[u'vail', u'deni', u'budget', u'fail', u'child', u'care']
[u'verbruggh', u'win', u'giro', u'stage', u'honchar', u'take', u'race', u'lead']
[u'villag', u'defi', u'volcano', u'evacu', u'order']
[u'warlord', u'reinforc', u'fighter', u'mogadishu']
[u'webb', u'widen', u'lead', u'williamsburg']
[u'windi', u'rain', u'forc', u'share', u'spoil']
[u'wood', u'comfort', u'zone', u'delisl']
[u'help', u'diabet', u'suffer']
[u'abba', u'urg', u'hama', u'respect', u'peac', u'deal']
[u'govt', u'accus', u'break', u'polic', u'elect']
[u'agforc', u'reflect', u'farley', u'legaci']
[u'anasta', u'gower', u'name', u'blue', u'halv']
[u'andrew', u'seek', u'state', u'wage', u'case', u'delay']
[u'asbesto', u'provis', u'hit', u'line']
[u'rais', u'sanction', u'threat', u'darfur', u'rebel']
[u'aust', u'fall', u'financi', u'technolog']
[u'australia', u'grip', u'diabet', u'epidem', u'studi']
[u'australian', u'drown', u'timor']
[u'australia', u'resolv', u'fight', u'terror', u'strong', u'bush']
[u'australia', u'suffer', u'diabet', u'epidem', u'research']
[u'baillieu', u'accept', u'region', u'challeng']
[u'ballack', u'join', u'chelsea', u'mourinho']
[u'basso', u'take', u'grip', u'giro', u'ditalia']
[u'drop', u'wheat', u'product', u'tip']
[u'bodi', u'recov', u'sink', u'trawler']
[u'boy', u'audit', u'peter', u'allen', u'product']
[u'breathalys', u'error', u'margin', u'spark', u'safeti']
[u'buhrmann', u'end', u'wait', u'maiden', u'asian', u'tour', u'titl']
[u'businessman', u'face', u'court', u'pregnant', u'woman', u'beat']
[u'campaign', u'aim', u'lure', u'blood', u'industri']
[u'campaign', u'push', u'weed', u'awar']
[u'caravan', u'safari', u'help', u'lift', u'domest', u'tourism']
[u'carlton', u'fisher']
[u'chanc', u'defend', u'transport', u'fund', u'decis']
[u'channel', u'star', u'clear', u'contempt', u'case']
[u'closer']
[u'closer']
[u'closer', u'abcnew']
[u'coastal', u'patrol', u'work', u'progress']
[u'colleg', u'say', u'time', u'disabl', u'student']
[u'communiti', u'rais', u'fund', u'sick', u'twin']
[u'concern', u'rais', u'adelaid', u'train', u'signal']
[u'contractor', u'woodchip', u'demand', u'drop']
[u'council', u'look', u'protect', u'farm', u'land']
[u'councillor', u'secur', u'nation', u'dubbo', u'preselect']
[u'councillor', u'urg', u'quiet', u'lead', u'issu']
[u'council', u'need', u'time', u'consid', u'draft', u'water']
[u'council', u'play', u'land', u'charg', u'impact']
[u'council', u'report', u'detail', u'shoalhaven', u'recycl', u'effort']
[u'council', u'upset', u'budget', u'highway', u'fund']
[u'council', u'consid', u'retir', u'villag', u'plan']
[u'council', u'creek', u'pollut']
[u'council', u'urg', u'delay', u'howard', u'reserv', u'sale']
[u'countri', u'allianc', u'campaign', u'snowi']
[u'court', u'hear', u'alleg', u'bomb', u'plot']
[u'crusad', u'hurrican', u'earn', u'home', u'grind', u'advantag']
[u'czech', u'strength', u'squad']
[u'decapit', u'roo', u'focus', u'investig']
[u'defiant', u'saddam', u'refus', u'plead', u'trial']
[u'diabet', u'figur', u'alarm']
[u'test', u'confirm', u'explos', u'death']
[u'doctor', u'hold', u'stroke', u'fear', u'suharto']
[u'appeal', u'man', u'murder', u'acquitt', u'polic']
[u'draper', u'put', u'case', u'hospit', u'fund', u'iemma']
[u'drought', u'put', u'children', u'risk', u'horn']
[u'drug', u'meet', u'tackl', u'abus', u'problem']
[u'educ', u'union', u'want', u'tafe', u'inquiri']
[u'energex', u'sale', u'prompt', u'continu', u'rescu']
[u'timor', u'face', u'leadership', u'challeng']
[u'footi', u'star', u'sexual', u'assault']
[u'experi', u'twist', u'japan']
[u'explos', u'sale', u'control', u'tighten']
[u'farmer', u'livestock', u'sale']
[u'farmer', u'fall', u'tree', u'chainsaw']
[u'feder', u'govt', u'pressur', u'state', u'toughen', u'cannabi']
[u'law', u'resolv', u'hardi', u'compens', u'disput']
[u'fisher', u'snap', u'marina', u'berth']
[u'fujitsu', u'help', u'desk', u'head', u'sydney']
[u'fundrais', u'hold', u'injur', u'footbal']
[u'gene', u'research', u'open', u'food']
[u'govern', u'urg', u'port', u'augusta', u'transport']
[u'govt', u'ask', u'ensur', u'mistak', u'doesnt', u'hurt']
[u'govt', u'defend', u'health', u'advertis']
[u'govt', u'ground', u'fleet', u'navi', u'helicopt']
[u'green', u'concern', u'spark', u'special', u'area', u'road']
[u'green', u'label', u'plan', u'desal', u'plant', u'disast']
[u'gunn', u'lose', u'insur', u'payout', u'case']
[u'play', u'build', u'approv', u'fall']
[u'hodg', u'fire', u'lancashir']
[u'horror', u'night', u'north', u'coast', u'road']
[u'hospit', u'look', u'intern', u'boost', u'benefit']
[u'howard', u'bush', u'meet', u'washington']
[u'howard', u'reaffirm', u'terror', u'stanc']
[u'hunter', u'westpoint', u'investor', u'decid', u'class']
[u'iemma', u'seek', u'review', u'racist', u'book']
[u'indonesian', u'villag', u'stay', u'despit', u'volcano', u'threat']
[u'indonesian', u'volcano', u'spew']
[u'indonesia', u'polic', u'raid', u'thwart', u'milit']
[u'iraq', u'blast', u'kill']
[u'iraqi', u'children', u'suffer', u'alarm', u'malnutrit']
[u'japan', u'ohata', u'surpass', u'camp', u'record']
[u'jayawarden', u'fall', u'england', u'advanc']
[u'jone', u'complet', u'breaststrok', u'doubl']
[u'joyc', u'back', u'servic', u'station', u'oper']
[u'joyc', u'protect', u'independ', u'servic', u'station', u'owner']
[u'junk', u'food', u'stay', u'despit', u'diabet', u'report']
[u'juve', u'claim', u'taint', u'titl', u'final']
[u'kanck', u'address', u'democrat', u'meet', u'defend']
[u'kanck', u'condemn', u'report', u'ecstasi', u'comment']
[u'katter', u'consid', u'return', u'nation', u'fold']
[u'kelli', u'tone', u'childcar', u'critic']
[u'kewel', u'offici', u'greec', u'warm']
[u'kewel', u'week']
[u'lamb', u'product', u'spring', u'high']
[u'landcar', u'group', u'monitor', u'river', u'pollut', u'scheme']
[u'leaver', u'week', u'celebr']
[u'legion', u'face', u'charg', u'hangar', u'collaps']
[u'lennon', u'consid', u'request', u'beaconsfield', u'inquiri']
[u'liber', u'moder', u'govt', u'childcar', u'critic']
[u'liber', u'silent', u'leadership', u'talk']
[u'litani', u'mistak', u'blame', u'ground', u'helicopt']
[u'lloyd', u'visit', u'put', u'road', u'fund', u'spotlight']
[u'accus', u'elanora', u'knife', u'incid']
[u'charg', u'fraud', u'forgeri', u'polic', u'raid']
[u'contact', u'polic', u'farley', u'death']
[u'die', u'mishap']
[u'die', u'north', u'road', u'crash']
[u'hospit', u'stab']
[u'court', u'accus', u'knife', u'threat']
[u'maroon', u'inject', u'fresh', u'blood']
[u'maroon', u'rooki', u'ing', u'avoid', u'hype']
[u'matthew', u'tight', u'lip', u'return']
[u'mayor', u'talk', u'bird', u'pest', u'devic']
[u'mayor', u'beat', u'outback', u'visit']
[u'meet', u'consid', u'state', u'option']
[u'meet', u'pass', u'vote', u'confid', u'stirl']
[u'melb', u'centenarian', u'aust', u'citizen']
[u'mine', u'explor', u'project', u'approv']
[u'minist', u'focus', u'indigen', u'literaci', u'skill']
[u'minist', u'stand', u'firm', u'palm', u'alcohol', u'limit']
[u'minist', u'sign', u'colleg', u'fund', u'deal']
[u'mitchel', u'mind', u'field', u'behaviour']
[u'fund', u'need', u'hospit', u'revamp', u'opposit']
[u'motorcyclist', u'death', u'lift', u'road', u'toll']
[u'urg', u'commonwealth', u'block', u'plan']
[u'narrabundah', u'caravan', u'park', u'resid', u'consid', u'futur']
[u'nation', u'strategi', u'tackl', u'drug', u'problem']
[u'navi', u'chopper', u'ground']
[u'navi', u'ship', u'stand', u'possibl', u'timor']
[u'nelson', u'consid', u'seasprit', u'futur']
[u'nelson', u'ground', u'seasprit', u'helicopt']
[u'nelson', u'weigh', u'scrap', u'helicopt', u'fleet']
[u'nestl', u'factori', u'want', u'decis', u'plant', u'futur']
[u'boss', u'hydro', u'tasmania']
[u'tourism', u'campaign', u'focus', u'kalbarri']
[u'warn', u'issu', u'possibl', u'timor', u'violenc']
[u'northern', u'ireland', u'assembl', u'sit', u'time']
[u'govt', u'announc', u'depart', u'restructur']
[u'politician', u'debat', u'nuclear', u'fuel', u'leas']
[u'duti', u'policeman', u'shoot', u'hunt', u'trip']
[u'open', u'howard']
[u'opposit', u'air', u'technic', u'colleg', u'worri']
[u'opposit', u'question', u'breathalys', u'machin', u'margin']
[u'palm', u'court', u'action', u'stop', u'alcohol', u'plan']
[u'panel', u'tell', u'wast', u'dump', u'site', u'close', u'sacr', u'site']
[u'parent', u'urg', u'reveal', u'children', u'concept']
[u'perkin', u'oneil', u'hall', u'fame']
[u'petrova', u'eye', u'french', u'open', u'berlin', u'triumph']
[u'phone', u'outag', u'cost', u'busi', u'million']
[u'pioneer', u'ltyenty', u'apurt', u'score', u'weekend', u'win']
[u'plane', u'crash', u'rais', u'rescu', u'respons', u'question']
[u'polic', u'blitz', u'net', u'drink', u'driver']
[u'polic', u'investig', u'suspici', u'lakemba', u'death']
[u'polic', u'quiz', u'nightclub', u'incid']
[u'powel', u'vow', u'reclaim', u'world', u'record']
[u'pregnant', u'woman', u'bash', u'unconsci', u'home']
[u'premier', u'sound', u'warn', u'nuclear', u'wast', u'dump']
[u'preval', u'swear', u'haiti', u'presid']
[u'push', u'leas', u'train', u'requir']
[u'rathdowney', u'fight', u'expect', u'intensifi']
[u'region', u'hard', u'polic', u'young', u'driver']
[u'report', u'highlight', u'waterway', u'death']
[u'research', u'look', u'boost', u'china', u'wine', u'consumpt']
[u'research', u'show', u'lawyer', u'dissatisfi', u'career']
[u'retir', u'judg', u'condemn', u'intrus', u'anti', u'terror', u'law']
[u'riverway', u'phase', u'discuss']
[u'roar', u'finalis', u'milic', u'sign']
[u'robert', u'sexual', u'assault']
[u'royal', u'fli', u'doctor', u'servic', u'turn']
[u'safeti', u'concern', u'domin', u'beaconsfield', u'meet']
[u'africa', u'zuma', u'reinstat', u'parti', u'deputi']
[u'govt', u'accus', u'syphon', u'water', u'revenu']
[u'govt', u'boost', u'land', u'drink', u'water']
[u'sailor', u'admit', u'fail', u'team', u'mat']
[u'saint', u'hudghton', u'face', u'week', u'sidelin']
[u'coupl', u'give', u'recognit']
[u'sarwan', u'bravo', u'lead', u'west', u'indi', u'easi']
[u'scott', u'fall', u'short', u'irv']
[u'share', u'tumbl', u'wall', u'street', u'sell']
[u'sheedi', u'face', u'life', u'hird']
[u'shire', u'mayor', u'oppos', u'propos']
[u'slow', u'elect', u'count', u'fiji']
[u'smith', u'walk', u'eel']
[u'minist', u'quiz', u'howard', u'leadership']
[u'socceroo', u'reschedul', u'asian', u'clash']
[u'specul', u'rife', u'howard', u'retir']
[u'stefaniak', u'challeng', u'smyth', u'leadership']
[u'strong', u'batch', u'heroin', u'blame']
[u'strong', u'expect', u'explor', u'licenc']
[u'studi', u'consid', u'student', u'financ', u'wake']
[u'stunt', u'flight', u'earn', u'grollo', u'good', u'behaviour', u'bond']
[u'sunflow', u'concern', u'prompt', u'push', u'identifi']
[u'surgeon', u'shortag', u'rais', u'worri', u'futur']
[u'swede', u'edfor', u'win', u'british', u'master']
[u'sydneysid', u'protest', u'snowi', u'sale']
[u'tassi', u'farmer', u'recognis', u'vege', u'industri']
[u'taylor', u'take', u'smith', u'walkout']
[u'terrorist', u'suspect', u'deni', u'bail']
[u'togo', u'saudi', u'friend']
[u'tourism', u'group', u'scoff', u'scenic', u'bypass', u'plan']
[u'town', u'extra', u'help', u'rehabilit', u'offend']
[u'tribut', u'flow', u'head', u'farley']
[u'tropic', u'athlet', u'program', u'award']
[u'truss', u'tour', u'expect', u'boost', u'cape', u'york', u'cyclon']
[u'run', u'peak', u'farm']
[u'uncap', u'keeper', u'name', u'angola', u'squad']
[u'union', u'premier', u'discuss', u'scope', u'disast']
[u'helicopt', u'shoot', u'iraq']
[u'basten', u'opt', u'youth']
[u'vibrat', u'reveal', u'star', u'inner', u'secret']
[u'visit', u'aim', u'boost', u'berri', u'feder', u'fund']
[u'wall', u'street', u'fall', u'rattl', u'local', u'investor']
[u'seek', u'vegi', u'vision', u'represent']
[u'webb', u'russel', u'attend', u'inquiri', u'meet']
[u'webb', u'win', u'comfort', u'williamsburg']
[u'week', u'sailor', u'challeng', u'drug', u'test']
[u'wickham', u'leak']
[u'william', u'escap', u'danger', u'tackl', u'penalti']
[u'william', u'tough', u'decis']
[u'work', u'begin', u'west', u'kimberley', u'power', u'boost']
[u'work', u'dwyer', u'reserv', u'start']
[u'young', u'coolum', u'surfer', u'rid', u'wave', u'success']
[u'rescu', u'arthur', u'seat', u'chairlift']
[u'grant', u'mitsubishi', u'holden']
[u'busi', u'brace', u'lean', u'budget']
[u'adelaid', u'lose', u'pant', u'season']
[u'drive', u'competit']
[u'afghanistan', u'mission', u'renam', u'connot']
[u'akhtar', u'track', u'england', u'tour']
[u'presid', u'play', u'shorten', u'leadership', u'talk']
[u'annan', u'urg', u'countri', u'resum', u'north', u'korea', u'nuclear']
[u'argentina', u'leav', u'zanetti', u'gambl', u'heinz']
[u'kill', u'baghdad', u'market', u'bomb']
[u'aust', u'plan', u'uranium', u'wast']
[u'aust', u'japan', u'sign', u'terror', u'fund', u'data', u'share', u'deal']
[u'address', u'alleg', u'conflict']
[u'search', u'market', u'strand', u'wheat']
[u'bali', u'blast', u'recreat', u'earn', u'emmi', u'nomin']
[u'bali', u'bomb', u'accus', u'tortur', u'confess']
[u'bauxit', u'refineri', u'decis', u'loom']
[u'beaconsfield', u'worker', u'seek', u'entitl', u'guarante']
[u'beslan', u'massacr', u'accus', u'guilti', u'terror']
[u'black', u'institut', u'launch', u'bipolar', u'disord']
[u'blueprint', u'aim', u'boost', u'women', u'miner', u'number']
[u'brack', u'defend', u'polic', u'decis', u'releas']
[u'brazil', u'consid', u'paolo', u'troop', u'deploy']
[u'brazilian', u'author', u'return', u'order', u'jail']
[u'breakaway', u'talk', u'lionor', u'deal']
[u'bresciano', u'relish', u'underdog', u'status']
[u'brian', u'smith', u'grandstand', u'interview', u'eel']
[u'break', u'hill', u'council', u'finalis', u'budget']
[u'builder', u'develop', u'urg', u'join', u'caravan', u'park']
[u'bush', u'gift', u'includ', u'ipod', u'bibl', u'bono']
[u'bush', u'send', u'nation', u'guard', u'patrol', u'mexican', u'border']
[u'bush', u'biggest', u'terrorist', u'world', u'today']
[u'busi', u'confid', u'level', u'doubl', u'budget']
[u'interim', u'ambul', u'resourc']
[u'water', u'tank', u'incent']
[u'castro', u'deni', u'report', u'wealth', u'million']
[u'cattl', u'industri', u'beef', u'profit']
[u'closer']
[u'closer']
[u'coalit', u'labor', u'neck', u'neck', u'newspol']
[u'coast', u'councillor', u'accus', u'mislead', u'face']
[u'communiti', u'consid', u'hoon']
[u'contact', u'len', u'cleaner', u'recal', u'worldwid']
[u'cool', u'reaction', u'water', u'plan']
[u'coron', u'tour', u'depot', u'trucki', u'kill']
[u'costello', u'call', u'tougher', u'penalti', u'illeg']
[u'costello', u'fund', u'home', u'indigen', u'communiti']
[u'costello', u'recognis', u'break', u'hill', u'contribut']
[u'cote', u'stick', u'tri', u'test', u'formula']
[u'cotton', u'machin', u'death', u'investig']
[u'council', u'address', u'bulli', u'complaint']
[u'council', u'defer', u'shop', u'decis']
[u'council', u'give', u'deadlin', u'remov', u'catchment', u'blockag']
[u'council', u'want', u'public', u'consult', u'fluorid', u'plan']
[u'cricket', u'australia', u'anticip', u'record', u'ash', u'crowd']
[u'crow', u'dismiss', u'inconsist', u'talk']
[u'cultur', u'violenc', u'uncov', u'central', u'australia']
[u'danih', u'wont', u'specul']
[u'debt', u'obstacl', u'wool', u'merger']
[u'dell', u'outer', u'connolli']
[u'democrat', u'assess', u'kanck', u'situat']
[u'doubl', u'ampute', u'conquer', u'everest']
[u'doubt', u'cast', u'feder', u'support', u'plan']
[u'downer', u'confid', u'indonesian', u'ambassador', u'return']
[u'drop', u'catch', u'baffl', u'flintoff']
[u'drunken', u'player', u'continu', u'eel', u'woe']
[u'duck', u'lobbi', u'group', u'fire', u'litter', u'critic', u'shooter']
[u'trap', u'arthur', u'seat', u'chairlift']
[u'energi', u'iraq', u'domin', u'howard', u'talk']
[u'england', u'captain', u'rule', u'tour', u'hell', u'repeat']
[u'timores', u'worker', u'help', u'build', u'wind', u'farm']
[u'farm', u'group', u'quit']
[u'feder', u'govt', u'urg', u'faster', u'stop', u'illeg']
[u'feder', u'push', u'tougher', u'nation', u'cannabi', u'law']
[u'fiji', u'tip', u'tight', u'elect', u'result']
[u'fiji', u'win', u'seat', u'easili']
[u'film', u'document', u'live', u'aborigin']
[u'financi', u'media', u'stock', u'help', u'market', u'regain', u'grind']
[u'forest', u'harvest', u'record', u'small', u'rise']
[u'famili', u'court', u'judg', u'back', u'marriag']
[u'world', u'squad']
[u'gasnier', u'fail', u'train']
[u'gate', u'otellini', u'sceptic']
[u'geraldton', u'face', u'court', u'child', u'charg']
[u'urg', u'bush', u'communiti', u'internet']
[u'gid', u'announc', u'health', u'bureaucraci', u'clean']
[u'gold', u'coast', u'sweep', u'green', u'award']
[u'good', u'news', u'punter', u'reach', u'truce']
[u'governor', u'general', u'tour', u'outback']
[u'govt', u'accus', u'misus']
[u'govt', u'reject', u'port', u'access', u'road', u'cost', u'claim']
[u'govt', u'defend', u'sydney', u'counter', u'terror', u'exercis']
[u'govt', u'health', u'worri']
[u'govt', u'polic', u'databas', u'bungl']
[u'govt', u'urg', u'releas', u'dead', u'murder', u'suspect']
[u'green', u'mundin', u'prim', u'battl']
[u'greenough', u'shire', u'welcom', u'merger', u'fund']
[u'gundagai', u'council', u'delay', u'rate', u'rise', u'plan']
[u'health', u'expert', u'issu', u'bacteria', u'warn']
[u'hobart', u'host', u'boomer', u'match']
[u'hospit', u'fire', u'foreign', u'train', u'doctor']
[u'howard', u'rule', u'nuclear', u'wast', u'accept']
[u'hudghton', u'ban', u'week']
[u'indigen', u'group', u'warn', u'violenc', u'worsen']
[u'inform', u'session', u'offer', u'advic', u'forest']
[u'seek', u'marina', u'revamp']
[u'itali', u'pick', u'inzaghi', u'buffon']
[u'katter', u'look', u'join', u'balanc', u'power', u'parti']
[u'katter', u'rejoin', u'nation']
[u'keelti', u'secur', u'talk', u'minist']
[u'kimmorley', u'frame', u'return']
[u'klinsmann', u'spring', u'world', u'surpris']
[u'knitathon', u'benefit', u'brisban', u'homeless']
[u'kosciuszko', u'manag', u'plan', u'finalis']
[u'kremerskothen', u'ditch', u'tiger']
[u'land', u'council', u'head', u'plead', u'guilti', u'throw']
[u'land', u'prompt', u'safeti', u'fear']
[u'lava', u'flow', u'indonesia', u'merapi']
[u'lennon', u'hop', u'inquiri', u'agreement']
[u'life', u'return', u'normal', u'lake', u'grace', u'flood']
[u'macquari', u'bank', u'profit']
[u'macquari', u'defend', u'execut', u'packet']
[u'hunt', u'melbourn', u'shoot']
[u'plead', u'guilti', u'child', u'offenc', u'asia']
[u'seek', u'leav', u'appeal', u'high', u'court', u'compo']
[u'mcgee', u'battl', u'stay', u'giro']
[u'meet', u'fail', u'agre', u'indonesian', u'ambassador']
[u'melbourn', u'polic', u'shoot', u'investig']
[u'melbourn', u'traffic', u'congest', u'govt', u'spotlight']
[u'merapi', u'rumbl', u'local', u'stand', u'firm']
[u'minist', u'repair', u'indonesia', u'australia']
[u'mix', u'respons', u'propos', u'murder', u'chang']
[u'fund', u'allow', u'student', u'hostel', u'work', u'begin']
[u'kill', u'brazil', u'violenc']
[u'mottram', u'stronger', u'game', u'fall']
[u'music', u'mind', u'alter', u'substanc']
[u'navi', u'offic', u'allow', u'mediat', u'abus', u'case']
[u'plate', u'rule']
[u'siren', u'arriv', u'york', u'park']
[u'nigerian', u'author', u'investig', u'bribe', u'claim']
[u'secur', u'right', u'miner', u'televis', u'interview']
[u'commemor', u'china', u'cultur', u'revolut']
[u'case', u'stomach', u'bridgetown']
[u'northern', u'grower', u'price', u'banana']
[u'time', u'doubt', u'parreira', u'make', u'obvious']
[u'time', u'frame', u'rebuild', u'explos', u'factori']
[u'labor', u'back', u'union', u'feder', u'leader']
[u'defend', u'effort', u'tackl', u'remot', u'communiti']
[u'doubl', u'ampute', u'climb', u'everest']
[u'put', u'timor', u'evacu', u'plan', u'place']
[u'mine', u'rehabilit']
[u'opposit', u'air', u'natur', u'resourc', u'manag']
[u'oral', u'gastroenter', u'vaccin', u'avail', u'week']
[u'pair', u'continu', u'bail', u'bodi', u'barrel', u'case']
[u'paper', u'detail', u'remot', u'communiti', u'violenc']
[u'piggeri', u'protest', u'heat']
[u'plea', u'govern', u'tackl', u'region', u'male']
[u'deliv', u'standard', u'repli', u'leadership', u'question']
[u'plan', u'studi', u'centr']
[u'rule', u'nuclear', u'wast', u'accept']
[u'poland', u'dump', u'dudek']
[u'polic', u'apologis', u'doubl', u'demerit', u'point', u'bungl']
[u'polic', u'crash', u'victim']
[u'polic', u'shoot', u'alleg', u'arm', u'robberi']
[u'polic', u'boost', u'coastal', u'patrol']
[u'power', u'boost', u'plan', u'land']
[u'power', u'prepar', u'throw', u'towel']
[u'price', u'excit', u'maroon', u'youngster']
[u'public', u'warn', u'latest', u'internet', u'scam']
[u'putin', u'offer', u'palestinian']
[u'rain', u'hamper', u'cape', u'cyclon', u'recoveri', u'effort']
[u'rain', u'lift', u'winter', u'hop']
[u'resourc', u'stock', u'pull', u'market']
[u'retail', u'accus', u'cash', u'credit', u'reform']
[u'retir', u'villag', u'get', u'provision', u'approv']
[u'riddel', u'smith', u'dump', u'reserv']
[u'river', u'murray', u'water', u'restrict', u'possibl', u'say']
[u'road', u'crash', u'victim', u'yarrahapinni']
[u'robert', u'defend', u'teen', u'coron', u'inquest']
[u'roeder', u'offici', u'take', u'newcastl']
[u'anglican', u'church', u'reduc', u'servic', u'fund']
[u'democrat', u'keen', u'serv', u'term']
[u'salvo', u'focus', u'town', u'camp']
[u'paulo', u'prison', u'riot', u'control']
[u'scolari', u'lack', u'quaresma']
[u'shorten', u'flag', u'labor', u'leadership']
[u'skoko', u'grant', u'gambier']
[u'soccer', u'star', u'grant', u'citi']
[u'softwar', u'glitch', u'blame', u'rail', u'delay']
[u'spain', u'snub', u'liverpool', u'morient']
[u'stefaniak', u'win', u'opposit', u'leadership', u'challeng']
[u'stoush', u'erupt', u'nuclear', u'wast', u'comment']
[u'student', u'accus', u'tape', u'face', u'disciplinari']
[u'student', u'farm', u'skill', u'test']
[u'studi', u'consid', u'goldfield', u'skill', u'shortag']
[u'studi', u'find', u'sign', u'iraq', u'syndrom']
[u'suspect', u'meteorit', u'streak']
[u'swimmer', u'graham', u'announc', u'retir']
[u'tafe', u'offer', u'tourism', u'work', u'north', u'west']
[u'talk', u'begin', u'resolv', u'tension', u'indonesia']
[u'lawyer', u'strike', u'trust', u'fund', u'alleg']
[u'telstra', u'probe', u'phone', u'internet', u'blackout']
[u'test', u'fail', u'caus', u'rmit', u'staff', u'tumour']
[u'thaksin', u'quiet', u'resum', u'duti', u'thai']
[u'thousand', u'dili', u'resid', u'return', u'home']
[u'treasuri', u'secretari', u'defend', u'budget', u'infrastructur']
[u'truck', u'driver', u'fin', u'fatal', u'westgat', u'crash']
[u'truss', u'get', u'better', u'appreci', u'cape', u'york', u'flood']
[u'truss', u'highway', u'upgrad', u'hand']
[u'turner', u'prize', u'shortlist', u'announc']
[u'show', u'help', u'lure', u'femal', u'cattl', u'worker']
[u'umaga', u'wari', u'waratah']
[u'union', u'boss', u'demand', u'time', u'world']
[u'union', u'beat', u'sack', u'worker', u'futur']
[u'unit', u'seek', u'fund', u'marin', u'centr', u'open']
[u'court', u'halt', u'guantanamo', u'militari', u'trial']
[u'impos', u'militari', u'sanction', u'vanezuela']
[u'releas', u'iraqi', u'detent']
[u'renew', u'tie', u'libya']
[u'restor', u'libyan', u'relat']
[u'troop', u'order', u'mexican', u'border']
[u'branch', u'call', u'apolog', u'genocid']
[u'govt', u'consid', u'offend', u'chang']
[u'violenc', u'central', u'australia', u'reveal']
[u'exercis', u'test', u'respons', u'foot', u'mouth']
[u'polic', u'arrest', u'coupl', u'question']
[u'propos', u'batter', u'women', u'defenc', u'murder']
[u'wenger', u'confid', u'beat', u'barca']
[u'wenger', u'stay', u'arsenal']
[u'wollongong', u'academ', u'lead', u'tafe', u'probe']
[u'woman', u'face', u'court', u'theft', u'mental', u'health']
[u'woman', u'lose', u'fridg', u'door', u'compo']
[u'work', u'begin', u'marina', u'septemb']
[u'suspect', u'illeg', u'fish', u'boat', u'catch']
[u'iraqi', u'work', u'cabinet']
[u'abbott', u'medicin', u'subsidi', u'cut']
[u'forc', u'chief', u'plane', u'head', u'memori']
[u'sack', u'distract', u'lion']
[u'boulia', u'shire', u'drought', u'declar']
[u'audit', u'find', u'explos', u'unservic']
[u'australian', u'netbal', u'strike', u'avert']
[u'australian', u'world', u'fan', u'warn', u'nazi', u'mockeri']
[u'author', u'look', u'better', u'water', u'suppli', u'manag']
[u'averi', u'complaint', u'hand']
[u'seek', u'beaconsfield', u'payout', u'assur']
[u'bailey', u'join', u'barrett', u'wigan']
[u'beazley', u'play', u'intern', u'poll']
[u'beazley', u'play', u'leadership', u'poll']
[u'bigger', u'sugar', u'crop', u'tip', u'year']
[u'blair', u'push', u'nuclear', u'power', u'agenda']
[u'blair', u'put', u'nuclear', u'power', u'agenda']
[u'blue', u'lose', u'injur', u'cooper']
[u'botul', u'outbreak', u'unlik', u'rare', u'strain']
[u'botul', u'vaccin', u'question']
[u'brack', u'alloc', u'transport', u'revamp']
[u'brazilian', u'author', u'deni', u'gang', u'deal']
[u'british', u'govt', u'unveil', u'london', u'bomb', u'memori', u'plan']
[u'brough', u'back', u'away', u'paedophil', u'ring', u'claim']
[u'brough', u'take', u'paedophilia', u'concern', u'polic']
[u'brough', u'paedophil', u'ring', u'claim']
[u'brough', u'urg', u'hand', u'paedophilia', u'evid']
[u'brown', u'say', u'mari', u'river', u'best', u'option']
[u'burgess', u'make', u'case', u'lead']
[u'bush', u'predict', u'howard', u'stay', u'power']
[u'bush', u'shower', u'prais', u'howard']
[u'busselton', u'govt', u'sign', u'jetti', u'agreement']
[u'butcher', u'name', u'sydney', u'coach']
[u'call', u'worker', u'sleep']
[u'call', u'youth', u'detent', u'review']
[u'canada', u'altern', u'climat', u'pact']
[u'canberra', u'caravan', u'park', u'develop', u'ahead']
[u'cancer', u'care', u'centr', u'open', u'latrob', u'hospit']
[u'caravan', u'park', u'closur', u'cost', u'taxpay']
[u'carnarvon', u'area', u'trial', u'indian', u'sandalwood']
[u'carpent', u'say', u'issu', u'kucera', u'comeback']
[u'central', u'face', u'challeng', u'tourism', u'worker']
[u'secur', u'interview', u'survivor']
[u'chestnut', u'roast']
[u'chief', u'magistr', u'urg', u'review', u'court']
[u'child', u'abus', u'report', u'scheme', u'work', u'doctor']
[u'closer']
[u'closer']
[u'closer']
[u'concern', u'rais', u'shape', u'mackay', u'futur']
[u'council', u'investig', u'park', u'option']
[u'council', u'seek', u'levi', u'rebat']
[u'council', u'longwal', u'mine', u'worri']
[u'court', u'approv', u'public', u'apolog']
[u'court', u'divers', u'scheme', u'take', u'differ', u'approach']
[u'crash', u'victim', u'sophi', u'emerg', u'coma']
[u'crow', u'dismiss', u'injuri', u'concern']
[u'research', u'see', u'problem', u'carp', u'erad']
[u'cyclon', u'reduc', u'land', u'cossack', u'hous']
[u'dairi', u'farmer', u'milk', u'payment', u'boost']
[u'deadlin', u'loom', u'yarragade', u'aquif', u'plan']
[u'defenc', u'appeal', u'hinch', u'lose', u'kovco', u'report']
[u'develop', u'offer', u'resid', u'industri', u'site']
[u'dfat', u'offici', u'deal', u'proper']
[u'dfat', u'warn', u'world', u'fan', u'nazi', u'jib']
[u'urg', u'debat', u'murder', u'defenc', u'chang']
[u'draft', u'dairi', u'report', u'recommend', u'support', u'crop']
[u'drought', u'relief', u'extend', u'farmer']
[u'dutch', u'lawmak', u'quit', u'asylum']
[u'employ', u'work', u'retain', u'staff', u'expert']
[u'environ', u'booklet', u'aim', u'indigen', u'communiti']
[u'offer', u'iran', u'nuclear', u'compromis']
[u'beatl', u'paul', u'mccartney', u'split', u'wife']
[u'policemen', u'grant', u'extra', u'time', u'compo', u'case']
[u'exxon', u'valdez', u'spill', u'threat', u'studi']
[u'fan', u'desert', u'carlton']
[u'farmer', u'meet', u'graincorp', u'silo', u'futur']
[u'pois', u'unveil', u'butcher']
[u'fear', u'wild', u'dog', u'pose', u'tourist', u'threat']
[u'fisher', u'seek', u'illeg', u'fish', u'probe']
[u'fletcher', u'warn', u'freddi', u'fumbler']
[u'foley', u'defend', u'transport', u'dept', u'boss', u'remov']
[u'year', u'leav', u'resourc', u'boom', u'expert']
[u'fretilin', u'congress', u'give', u'timor', u'warm', u'welcom']
[u'friendship', u'rais', u'stake', u'beaconsfield', u'rescu']
[u'fuel', u'retail', u'move', u'dont', u'faze', u'ethanol', u'produc']
[u'fund', u'pledg', u'sport', u'club', u'plan']
[u'gascoyn', u'airport', u'secur', u'boost']
[u'gastro', u'vaccin', u'protect', u'aust', u'children']
[u'gatlin', u'world', u'record', u'amend']
[u'ghana', u'collis', u'kill']
[u'giteau', u'expect', u'miss', u'england', u'test']
[u'govt', u'announc', u'caravan', u'park', u'evict', u'task', u'forc']
[u'govt', u'ask', u'bolster', u'energi', u'effici', u'hous', u'push']
[u'govt', u'inspect', u'help', u'decid', u'continu', u'drought']
[u'govt', u'pledg', u'region', u'transport', u'boost']
[u'govt', u'urg', u'rethink', u'gordon', u'estat', u'plan']
[u'quit', u'bureaucrat', u'bungl']
[u'green', u'group', u'see', u'sawmil', u'demis', u'proof', u'industri']
[u'group', u'oppos', u'give', u'nation', u'park']
[u'gunman', u'injur', u'turkish', u'judg', u'court', u'attack']
[u'hickey', u'cast', u'doubt', u'rate', u'rise', u'request']
[u'indigen', u'leader', u'address', u'wollongong', u'student']
[u'infrastructur', u'cost', u'hold', u'irrig', u'scheme']
[u'infrastructur', u'spend', u'help', u'boost', u'local', u'job']
[u'inquest', u'begin', u'beaconsfield', u'death']
[u'iran', u'offer', u'incent', u'stop', u'nuclear']
[u'irrig', u'trust', u'back', u'water', u'plan']
[u'japan', u'fingerprint', u'foreign', u'visitor']
[u'kennett', u'urg', u'nation', u'water', u'plan', u'fund']
[u'kovco', u'inquiri', u'bungl', u'leav', u'nelson', u'furious']
[u'kovco', u'famili', u'condemn', u'latest', u'bungl']
[u'labor', u'backbench', u'dismiss', u'shorten', u'leadership']
[u'labor', u'apologis', u'gallop', u'depress', u'comment']
[u'land', u'council', u'hop', u'action', u'neglect']
[u'land', u'concern', u'fish', u'industri']
[u'lava', u'flow', u'merapi', u'dwindl']
[u'law', u'crack', u'graffiti', u'problem']
[u'leadership', u'specul', u'confront', u'major', u'parti']
[u'liber', u'open', u'door', u'donnelli']
[u'liquor', u'licenc', u'easi']
[u'lodhi', u'deni', u'terror', u'connect']
[u'lodhi', u'deni', u'terrorist', u'link']
[u'mackay', u'rental', u'vacanc', u'rate', u'reach', u'year']
[u'malfunct', u'threaten', u'chairlift', u'futur']
[u'charg', u'polic', u'seiz', u'cannabi']
[u'question', u'melbourn', u'shoot']
[u'refus', u'bail', u'fraud', u'charg']
[u'take', u'machin']
[u'market', u'level', u'earlier', u'rise']
[u'mayor', u'ask', u'lake', u'road', u'fund']
[u'mckenzi', u'shuffl', u'deck']
[u'miner', u'monitor', u'aim', u'improv', u'safeti']
[u'mine', u'compani', u'beaconsfield', u'worker']
[u'minist', u'ask', u'attend', u'doctor', u'shortag', u'meet']
[u'minist', u'stop', u'short', u'commit', u'support']
[u'mobil', u'phone', u'servic', u'return', u'central', u'highland']
[u'mooney', u'use', u'access', u'kiss', u'detail']
[u'region', u'school', u'join', u'youth', u'health', u'event']
[u'mount', u'polic', u'return', u'help', u'fight', u'geraldton', u'crime']
[u'criticis', u'gallop', u'depress', u'comment']
[u'seek', u'wangaratta', u'fluorid', u'delay']
[u'murder', u'girl', u'parent', u'suspect', u'record']
[u'nation', u'region', u'disadvantag', u'fuel']
[u'nelson', u'furious', u'kovco', u'inquiri', u'bungl']
[u'netbal', u'receiv', u'rise']
[u'riot', u'van', u'polic']
[u'robinval', u'motel', u'eas', u'accommod', u'shortag']
[u'news', u'editor', u'escap', u'convict', u'contempt', u'case']
[u'servic', u'help', u'eas', u'child', u'handov']
[u'weather', u'forecast', u'region', u'centr']
[u'websit', u'focus', u'rural', u'job']
[u'northern', u'council', u'hope', u'lure', u'interst', u'worker']
[u'north', u'queensland', u'cook', u'biodiesel', u'market']
[u'norway', u'summon', u'australia', u'whale', u'protest']
[u'govt', u'unlik', u'fight', u'croc', u'decis']
[u'opposit', u'alarm', u'possibl', u'brain', u'drain']
[u'ownership', u'snowi', u'hydro', u'sale']
[u'pacif', u'countri', u'test', u'tsunami', u'warn']
[u'paedophil', u'ring', u'claim', u'unfound', u'polic']
[u'paedophil', u'ring', u'evid', u'central', u'aust', u'brough']
[u'paedophil', u'ring', u'oper', u'central', u'aust', u'brough']
[u'pair', u'arrest', u'perth', u'sydney', u'doubl', u'murder']
[u'pair', u'hurt', u'poona', u'crash']
[u'pentagon', u'releas', u'sept', u'video']
[u'prais', u'bush', u'lead', u'terror']
[u'quit', u'murdoch']
[u'polic', u'allow', u'victim', u'parent', u'murder']
[u'polic', u'charg', u'anti', u'log', u'protest']
[u'polic', u'examin', u'devic', u'woden', u'centr', u'evacu']
[u'polic', u'hunt', u'servic', u'station', u'bandit']
[u'polic', u'investig', u'miss', u'sidney', u'nolan', u'paint']
[u'polic', u'probe', u'unconfirm', u'boat', u'distress', u'report']
[u'polic', u'seek', u'extradit', u'doubl', u'murder', u'suspect']
[u'polic', u'follow', u'servic', u'station', u'concern']
[u'polit', u'congress', u'toppl', u'alkatiri']
[u'port', u'chang', u'lion', u'clash']
[u'prodi', u'overcom', u'infight', u'italian']
[u'public', u'consult', u'continu', u'medowi', u'plan']
[u'qaras', u'claim', u'victori', u'fiji', u'elect']
[u'quak', u'pakistan', u'look', u'rebuild']
[u'rail', u'oper', u'fin', u'weed', u'spread']
[u'rat', u'rise', u'hit', u'consum', u'confid']
[u'retir', u'specul', u'dog', u'visit']
[u'robert', u'tell', u'abus', u'teen']
[u'roll', u'stone', u'rock', u'issu']
[u'saddam', u'court', u'hear', u'defenc', u'wit']
[u'paulo', u'gang', u'violenc', u'toll', u'rise']
[u'satellit', u'phone', u'subsidi', u'scheme', u'continu']
[u'scholz', u'announc', u'netbal', u'retir']
[u'seasprit', u'problem', u'blame', u'softwar', u'firm']
[u'seven', u'kill', u'caucasus', u'suicid', u'bomb']
[u'shipwreck', u'cook', u'endeavour']
[u'shorten', u'threat', u'leadership', u'beazley']
[u'sophi', u'delezio', u'coma']
[u'sourc', u'telecom', u'leak']
[u'spacecraft', u'failur', u'blame', u'mismanag']
[u'spectat', u'arriv', u'mundin', u'green']
[u'strand', u'wheat', u'ship', u'leav', u'geraldton']
[u'studi', u'highlight', u'skill', u'migrat', u'benefit']
[u'swan', u'hill', u'council', u'defer', u'piggeri', u'decis']
[u'sydney', u'better', u'form', u'year', u'ead']
[u'forest', u'book', u'target', u'oversea', u'woodchip', u'buyer']
[u'telstra', u'announc', u'board', u'member']
[u'test', u'confirm', u'meningococc', u'case']
[u'travel', u'expo', u'boost', u'economi']
[u'question', u'melbourn', u'shoot']
[u'union', u'protest', u'defenc', u'nurs', u'sack']
[u'urg', u'action', u'darfur', u'peac', u'deal']
[u'make', u'world', u'safer', u'howard']
[u'poet', u'stanley', u'kunitz', u'die', u'age']
[u'venabl', u'line', u'boro']
[u'galleri', u'search', u'charl', u'blackman', u'paint']
[u'govt', u'interest', u'freight']
[u'volunt', u'seek', u'asthma', u'studi']
[u'warn', u'catch', u'hairi', u'situat']
[u'spinal', u'research', u'receiv', u'fund', u'boost']
[u'reap', u'reward', u'brazil', u'iron', u'deal']
[u'weak', u'wag', u'growth', u'take', u'pressur']
[u'webck', u'call', u'control', u'aggress', u'maroon']
[u'webck', u'warn', u'drug']
[u'websit', u'offer', u'child', u'rear', u'help', u'rural', u'famili']
[u'wheelchair', u'bind', u'woman', u'leg', u'amput', u'train']
[u'confirm', u'bird', u'case', u'indonesia']
[u'wild', u'bait', u'tamborin']
[u'wind', u'farm', u'object', u'outweigh', u'submiss']
[u'wine', u'industri', u'urg', u'restructur', u'amidst', u'glut']
[u'woman', u'death', u'consid', u'suspici']
[u'woosha', u'play', u'judd', u'mileston']
[u'worker', u'bash', u'basebal']
[u'ymca', u'build', u'moot', u'bowl', u'alley']
[u'young', u'star', u'join', u'socceroo']
[u'zinc', u'miner', u'consid', u'kangaroo', u'oper']
[u'deal', u'see', u'china', u'leav', u'burrup']
[u'kill', u'afghan', u'battl']
[u'abba', u'order', u'gaza', u'polic', u'action']
[u'abetz', u'reject', u'illeg', u'fish', u'inquiri']
[u'aborigin', u'leader', u'exclud', u'violenc', u'summit']
[u'face', u'shake', u'kovco', u'bungl']
[u'head', u'prais', u'despit', u'kovco', u'bungl']
[u'adler', u'lose', u'dishonesti', u'sentenc', u'appeal']
[u'akermani', u'verg', u'return']
[u'urg', u'mental', u'health', u'check', u'prison']
[u'prais', u'superannu', u'chang']
[u'angola', u'cholera', u'epidem', u'kill']
[u'begin', u'cancel', u'bledislo', u'ticket']
[u'aust', u'market', u'dive', u'wall', u'street', u'lead']
[u'autopsi', u'problem', u'expect', u'fix', u'soon']
[u'babi', u'focus', u'speech', u'experi']
[u'bathurst', u'council', u'seek', u'saleyard', u'express']
[u'beaconsfield', u'deni', u'claim', u'worker', u'safeti']
[u'belgian', u'base', u'jumper', u'tackl', u'eiffel', u'tower']
[u'belgium', u'ambassador', u'tour', u'kregling', u'wineri']
[u'bendigo', u'mayor', u'urg', u'govt', u'remov', u'poki']
[u'bichel', u'excit', u'toowoomba', u'match']
[u'crowd', u'expect', u'gympi']
[u'bird', u'protect', u'prompt', u'farm', u'irrig', u'concern']
[u'bligh', u'urg', u'uranium', u'industri', u'prove', u'safeti']
[u'boom', u'time', u'feedlot']
[u'boonah', u'firm', u'export', u'anim', u'plasma']
[u'bougainvill', u'king', u'deni', u'plan', u'overthrow']
[u'think', u'die', u'heart', u'attack']
[u'brough', u'exclud', u'aborigin', u'leader', u'violenc']
[u'brough', u'propos', u'indigen', u'violenc', u'summit']
[u'brough', u'propos', u'nation', u'summit', u'tackl', u'violenc']
[u'bunburi', u'elector', u'longer', u'pivot']
[u'call', u'higher', u'payout', u'fresh', u'kovco', u'bungl']
[u'campbel', u'applaud', u'rangeland', u'plan']
[u'campbel', u'talk', u'canadian', u'climat', u'chang', u'deal']
[u'canadian', u'soldier', u'kill', u'afghanistan']
[u'cattl', u'sell', u'drought', u'tighten', u'grip']
[u'central', u'coast', u'resid', u'face', u'water', u'hike']
[u'charg', u'upgrad', u'consid', u'fight', u'night', u'bash']
[u'china', u'hold', u'firm', u'iron', u'price', u'talk']
[u'china', u'launch', u'satellit']
[u'claim', u'atsic', u'demis', u'contribut', u'collaps']
[u'cleaner', u'wag', u'protest', u'meet']
[u'closer', u'abcnew']
[u'closer']
[u'coalit', u'odd', u'farmer', u'fuel', u'rebat']
[u'cole', u'inquiri', u'releas', u'apolog']
[u'competit', u'push', u'bank', u'fee', u'survey']
[u'concern', u'inferior', u'wool', u'bale']
[u'confus', u'religi', u'educ', u'school']
[u'contract', u'finalis', u'highway', u'work']
[u'convent', u'centr', u'upgrad']
[u'coronor', u'call', u'inform', u'knight', u'inquest']
[u'costello', u'back', u'remov', u'tackl', u'violenc']
[u'costello', u'tight', u'lip', u'leadership', u'success']
[u'council', u'adopt', u'structur', u'plan', u'waterfront']
[u'council', u'award', u'interim', u'rise']
[u'council', u'defend', u'secur', u'camera', u'placement']
[u'crusad', u'feet', u'grind', u'bull']
[u'cudgegong', u'council']
[u'plan', u'prompt', u'lungfish', u'concern']
[u'date', u'thoma', u'case']
[u'vinci', u'code', u'premier', u'globe']
[u'debnam', u'reject', u'polic', u'station', u'closur', u'claim']
[u'desper', u'grape', u'grower', u'sell', u'water', u'right']
[u'develop', u'applic', u'snub', u'prompt', u'smoke']
[u'earli', u'human', u'chimp']
[u'drink', u'driver', u'sentenc', u'inadequ', u'appeal', u'court', u'judg']
[u'driver', u'jail', u'polic', u'chase']
[u'driver', u'road', u'train', u'remind']
[u'drought', u'fuel', u'cost', u'toll', u'landcar']
[u'educ', u'union', u'urg', u'fund', u'reach', u'student']
[u'eriksson', u'set', u'rooney', u'deadlin']
[u'timor', u'move', u'head', u'leadership', u'challeng']
[u'famili', u'youth', u'servic', u'build', u'site', u'clear']
[u'famili', u'damn', u'armi', u'handl', u'kovco', u'case']
[u'famili', u'reveal', u'darl', u'down', u'candid']
[u'fear', u'air', u'region', u'cabbi', u'hour']
[u'fear', u'transport', u'fund', u'bypass', u'echuca', u'region']
[u'consid', u'asian']
[u'fijian', u'militari', u'look', u'influenc']
[u'fiji', u'militari', u'head', u'warn', u'incom', u'govern']
[u'fiji', u'consid', u'action', u'command']
[u'forum', u'focus', u'tamar', u'valley', u'qualiti']
[u'fraudster', u'jail', u'con', u'senior']
[u'fresh', u'kovco', u'bungl', u'prompt', u'higher', u'payout']
[u'futur', u'water', u'recycl', u'scheme', u'know']
[u'gasnier', u'clear', u'play', u'origin']
[u'gasnier', u'face', u'fit', u'decis']
[u'gatlin', u'unhappi', u'share', u'world', u'record']
[u'govt', u'accus', u'fail', u'secur', u'medic', u'record']
[u'govt', u'assess', u'drought']
[u'govt', u'consid', u'narrabundah', u'caravan', u'park']
[u'govt', u'fund', u'sniffer', u'team', u'central', u'australia']
[u'govt', u'tell', u'expans', u'import']
[u'govt', u'turn', u'save', u'children', u'fund']
[u'govt', u'urg', u'alter', u'marin', u'park', u'draft', u'zone', u'plan']
[u'green', u'mundin', u'fight', u'spark', u'fatal', u'brawl']
[u'green', u'tip', u'mundin', u'world', u'titl']
[u'gunman', u'kill', u'turkish', u'judg']
[u'hardgrav', u'open', u'bairnsdal', u'technic', u'school']
[u'health', u'worker', u'say', u'indigen', u'violenc', u'widespread']
[u'henri', u'bitter', u'spray']
[u'high', u'sugar', u'price', u'push', u'profit']
[u'drive', u'chariti', u'challeng']
[u'howard', u'accus', u'decept', u'hick', u'claim']
[u'human', u'genom', u'finish']
[u'indonesian', u'look', u'mend', u'aust', u'tie']
[u'inquiri', u'hear', u'hous', u'educ', u'barrier']
[u'inquiri', u'releas', u'apolog']
[u'iran', u'reject', u'nuclear', u'deal']
[u'iraq', u'deploy', u'scale', u'general']
[u'itali', u'prodi', u'propos', u'withdraw', u'iraq', u'troop']
[u'katherin', u'seek', u'help', u'fund', u'flood', u'repair']
[u'kovco', u'famili', u'angri', u'report', u'loss']
[u'kovco', u'famili', u'angri', u'latest', u'bungl']
[u'labor', u'accus', u'govt', u'continu', u'cover']
[u'labor', u'promis', u'foreign', u'worker', u'safeguard']
[u'lara', u'elev', u'surpris', u'master', u'blaster']
[u'thwart', u'sale', u'whale', u'secret']
[u'lion', u'nathan', u'half', u'year', u'profit']
[u'live', u'trade', u'egypt', u'start', u'soon']
[u'local', u'market', u'tumbl', u'wall', u'plung']
[u'lodhi', u'buy', u'map', u'impress']
[u'lodhi', u'deni', u'own', u'mujaheddin', u'train', u'manual']
[u'accus', u'hold', u'refus', u'bail']
[u'charg', u'explos', u'seiz']
[u'charg', u'work', u'site', u'bash']
[u'die', u'fight', u'night', u'brawl']
[u'recov', u'robina', u'stab']
[u'mayor', u'say', u'budget', u'road', u'fund']
[u'meet', u'discuss', u'nhill', u'water', u'plan']
[u'miner', u'dark', u'safeti', u'right']
[u'minist', u'threaten', u'andrew', u'boycott']
[u'urg', u'apologis', u'sack', u'earl']
[u'money', u'wont', u'indigen', u'violenc', u'howard']
[u'help', u'urg', u'indigen', u'sexual']
[u'speed', u'driver', u'worri', u'polic']
[u'mortlock', u'tip', u'posit', u'england']
[u'mother', u'accus', u'speed', u'child']
[u'call', u'govt', u'north', u'coast', u'hospit']
[u'propos', u'work', u'dole', u'cross', u'attend']
[u'warn', u'loom', u'higher', u'fuel', u'price']
[u'mundin', u'defeat', u'green', u'round']
[u'mundin', u'readi', u'kessler']
[u'mysteri', u'light', u'enthral', u'thousand']
[u'nepal', u'parliament', u'reduc', u'king', u'power']
[u'antibiot', u'target', u'superbug']
[u'bodi', u'develop', u'industri']
[u'command', u'lead', u'middl', u'east', u'forc']
[u'nlis', u'frustrat']
[u'nowra', u'famili', u'relationship', u'centr', u'year']
[u'central', u'coast', u'feel', u'drought', u'bite']
[u'chief', u'minist', u'boycott', u'violenc', u'summit']
[u'budget', u'offer', u'invest', u'expens', u'cut']
[u'offic', u'face', u'punish', u'kovco', u'bungl']
[u'okelli', u'miss', u'ireland', u'tour']
[u'olmert', u'order', u'wildcat', u'settlement', u'dismantl']
[u'opera', u'aust', u'showcas', u'latest', u'product']
[u'origin', u'blowtorch', u'meninga', u'lewi']
[u'overdos', u'treatment', u'help', u'spider', u'bite', u'patient']
[u'palu', u'return', u'boost', u'tah']
[u'panel', u'probe', u'plan', u'strategi']
[u'pangallo', u'seek', u'support', u'mental', u'health', u'facil']
[u'payn', u'deport', u'indonesia', u'serv']
[u'peterborough', u'growth', u'plan']
[u'plan', u'tourism', u'manag', u'visitor']
[u'dodg', u'specul', u'futur']
[u'regret', u'latest', u'kovco', u'bungl']
[u'tight', u'lip', u'murdoch', u'comment']
[u'polic', u'allow', u'feud', u'famili', u'slug']
[u'polic', u'investig', u'fake', u'note']
[u'polic', u'probe', u'motel', u'violenc', u'report']
[u'port', u'author', u'beat', u'harbour', u'bomb', u'remov']
[u'portrait', u'gari', u'macdonald', u'win', u'peopl', u'choic']
[u'port', u'secur', u'crackdown', u'yamba']
[u'pricey', u'gastro', u'vaccin', u'reach', u'aust']
[u'prodi', u'swear', u'italian']
[u'promin', u'solicitor', u'marsden', u'die']
[u'properti', u'boom', u'push', u'darwin', u'rat', u'higher']
[u'properti', u'council', u'open', u'transport', u'option']
[u'properti', u'council', u'see', u'benefit']
[u'public', u'ask', u'probe']
[u'public', u'urg', u'measl', u'immunis']
[u'qanta', u'cut', u'job']
[u'qanta', u'job']
[u'health', u'blame', u'radiat', u'machin', u'delay']
[u'prison', u'defacto', u'asylum']
[u'red', u'step']
[u'report', u'recommend', u'grass', u'dairi', u'cow']
[u'tinto', u'seal', u'price', u'rise', u'japanes', u'steel']
[u'rmit', u'staff', u'brief', u'mobil', u'phone', u'tower', u'test']
[u'robert', u'identifi', u'alleg', u'abus']
[u'rural', u'health', u'expert', u'consid', u'internet']
[u'farmer', u'wait', u'botul', u'confirm']
[u'school', u'zone', u'drive', u'penalti', u'beef']
[u'second', u'appeal', u'launch', u'gladston', u'blast']
[u'shire', u'accept', u'builder', u'care', u'centr', u'upgrad']
[u'shorten', u'outlin', u'ambit']
[u'sick', u'sheep', u'seek', u'healthi', u'food', u'research']
[u'socceroo', u'latest', u'rank', u'list']
[u'socceroo', u'sign', u'sydney', u'intern']
[u'solvent', u'sniff', u'rat', u'fall', u'south', u'west']
[u'sport', u'scheme', u'prove', u'posit']
[u'stanhop', u'deni', u'scrap', u'busway']
[u'sugar', u'decreas', u'crop', u'estim']
[u'let', u'pie', u'hook']
[u'decid', u'collingwood', u'link']
[u'seek', u'hall', u'fame', u'entri']
[u'tender', u'process', u'begin', u'emerg', u'chopper']
[u'tennant', u'creek', u'resid', u'plan', u'strike']
[u'governor', u'general', u'hit', u'birdsvill', u'track']
[u'thoma', u'challeng', u'terror', u'convict']
[u'timbercorp', u'reveal', u'half', u'year', u'profit']
[u'toddler', u'drown', u'adelaid', u'hill', u'water', u'tank']
[u'tribut', u'flow', u'marsden']
[u'tripodi', u'prais', u'skill', u'shortag', u'respons']
[u'turnbul', u'call', u'uniform', u'water', u'restrict']
[u'kill', u'china', u'typhoon']
[u'typhoon', u'batter', u'southern', u'china']
[u'union', u'member', u'concern']
[u'unlimit', u'interchang', u'protect', u'younger', u'player']
[u'australia', u'sign', u'anti', u'terror', u'pact']
[u'sailor', u'jail', u'drug', u'smuggl']
[u'polic', u'fin', u'unauthoris', u'databas', u'access']
[u'victori', u'recruit', u'brazilian', u'striker']
[u'vidmar', u'home', u'test']
[u'ask', u'consid', u'miner', u'explor', u'plan']
[u'wage', u'growth', u'steadi']
[u'impos', u'stop', u'virus']
[u'waratah', u'focus', u'make', u'amend']
[u'seek', u'bigger', u'slice', u'resourc', u'boom']
[u'western', u'cast', u'doubt', u'region', u'director']
[u'preschool', u'minist', u'say']
[u'rome', u'stosur', u'bow']
[u'confirm', u'egyptian', u'woman', u'die', u'bird']
[u'wine', u'grape', u'grower', u'urg', u'stand', u'hear']
[u'women', u'urg', u'join', u'export']
[u'york', u'honour', u'captainci', u'role']
[u'aborigin', u'man', u'child', u'sentenc', u'stand']
[u'caravan', u'park', u'resid', u'protest', u'civic']
[u'adelaid', u'face', u'grave', u'shortag', u'report']
[u'interchang', u'rule', u'leav']
[u'agricultur', u'dept', u'stand', u'fruit', u'vege', u'restrict']
[u'scratch', u'matthew']
[u'back', u'armi', u'deploy', u'remot', u'communiti']
[u'andrew', u'tackl', u'retail', u'industri', u'worker', u'shortag']
[u'apologis', u'mastercard', u'debit', u'bungl']
[u'ape', u'prove', u'forward', u'think']
[u'asbesto', u'prompt', u'hospit', u'clean']
[u'aussi', u'touch', u'texa']
[u'aussi', u'pace', u'texa']
[u'australia', u'commit', u'stabl', u'afghanistan']
[u'australia', u'get', u'hivaid', u'ambassador']
[u'barcaldin', u'tree', u'knowledg', u'poison']
[u'bash', u'cabbi', u'appeal', u'public', u'help']
[u'billabong', u'clubhous', u'hop', u'share', u'mental']
[u'birdsvill', u'track', u'pastoralist', u'face', u'continu']
[u'blue', u'odonnel', u'go', u'easi', u'cowboy', u'mat']
[u'boat', u'safeti', u'report', u'target', u'faulti', u'construct']
[u'boat', u'supplier', u'face', u'investig', u'torr']
[u'brisban', u'council', u'secur', u'pooh', u'corner']
[u'brit', u'woman', u'sail', u'wrong']
[u'buddhist', u'monk', u'connect', u'indigen', u'communiti']
[u'cahil', u'lock', u'injuri', u'battl']
[u'campbel', u'challeng', u'high', u'court', u'redevelop']
[u'campbel', u'consid', u'orang', u'roughi', u'fish']
[u'candid', u'say', u'mildura', u'passeng', u'train', u'return']
[u'cano', u'kick', u'aussi', u'cann', u'conting']
[u'carpent', u'defend', u'transport', u'decis']
[u'rule', u'casson', u'transfer']
[u'champ', u'leagu', u'admit', u'send', u'blunder']
[u'chaudhri', u'accept', u'ministri', u'fiji', u'cabinet']
[u'china', u'plan', u'nuclear', u'power', u'plant']
[u'citi', u'folk', u'saddl', u'outback', u'cattl', u'drive']
[u'climat', u'talk', u'critic', u'dismiss']
[u'closer', u'abcnew']
[u'closer']
[u'committe', u'examin', u'strathalbyn', u'concern']
[u'commonwealth', u'state', u'agre', u'nation', u'energi']
[u'communiti', u'consult', u'plan']
[u'concern', u'hold', u'colleg', u'compani', u'ban']
[u'concern', u'understand', u'carnal', u'knowledg']
[u'costello', u'play', u'share', u'market', u'fall']
[u'costello', u'urg', u'bank', u'lower', u'fee']
[u'council', u'consid', u'rate', u'rise', u'need', u'cover']
[u'council', u'consid', u'wetland', u'wast', u'water', u'plan']
[u'countdown', u'stage', u'australia', u'wide']
[u'court', u'seek', u'ugandan', u'rebel', u'leader', u'arrest']
[u'court', u'throw', u'speed', u'fine']
[u'organis', u'reward', u'patient', u'fan', u'ticket']
[u'darfur', u'food', u'shipment', u'fall', u'short']
[u'death', u'toll', u'typhoon', u'chanchu', u'rise']
[u'defenc', u'depart', u'control', u'labor']
[u'defenc', u'parent', u'pay', u'parent', u'leav']
[u'defenc', u'silent', u'deliveri', u'kovco', u'report']
[u'demon', u'continu', u'win']
[u'derbi', u'hospit', u'open', u'dental', u'clinic']
[u'dizzi', u'lead', u'yorkshir', u'resist']
[u'doctor', u'urg', u'closer', u'supervis', u'foreign']
[u'cast', u'doubt', u'propos', u'judici', u'law']
[u'drought', u'take', u'person', u'toll', u'irrig']
[u'embley', u'give', u'judd', u'glow', u'refer']
[u'esper', u'burglari', u'rate', u'fall']
[u'timor', u'buoy', u'fretilin', u'support']
[u'ban', u'work', u'near', u'phone', u'tower']
[u'follow', u'hoffa', u'case']
[u'fear', u'hold', u'miss', u'boati']
[u'fear', u'hold', u'tree', u'knowledg', u'surviv']
[u'fear', u'indigen', u'violenc', u'summit']
[u'fear', u'tree', u'knowledg', u'lose']
[u'guantanamo', u'detaine', u'interrog', u'command']
[u'fight', u'telecast', u'end', u'break', u'hill', u'brawl']
[u'fijian', u'command', u'comment']
[u'fijian', u'sight', u'dairi', u'industri']
[u'fiji', u'labour', u'agre', u'multi', u'parti', u'cabinet']
[u'ant', u'comalco', u'refineri']
[u'flore', u'hobbit', u'sick', u'human', u'scientist']
[u'footbal', u'fan', u'urg', u'blast', u'appeal']
[u'forum', u'focus', u'north', u'coast', u'transport']
[u'accus', u'york', u'peninsula', u'abalon', u'poach']
[u'guilti', u'teen', u'stab', u'murder']
[u'prison', u'attempt', u'suicid', u'guantanamo']
[u'fratern', u'club', u'unabl', u'trade', u'debt']
[u'friend', u'launch', u'appeal', u'kovco', u'widow']
[u'fund', u'save', u'histor', u'harbourmast', u'build']
[u'glenormiston', u'colleg', u'diversifi', u'cours']
[u'govt', u'discuss', u'murray', u'river', u'recoveri']
[u'govt', u'unconcern', u'iraq', u'wheat', u'deal', u'failur', u'report']
[u'govt', u'urg', u'boost', u'region', u'infrastructur', u'fund']
[u'graincorp', u'listen', u'silo', u'closur', u'opposit']
[u'grandpar', u'mind', u'drown', u'twin']
[u'green', u'group', u'step', u'murray', u'health', u'push']
[u'guantanamo', u'secret', u'prison', u'close']
[u'hama', u'aid', u'catch', u'border']
[u'hapless', u'eel', u'panther']
[u'harbour', u'dioxin', u'level', u'cover', u'alleg']
[u'hardi', u'record', u'vintag']
[u'harri', u'potter', u'steal', u'fli', u'home']
[u'health', u'dept', u'investig', u'doctor', u'registr']
[u'henri', u'sign', u'arsenal', u'contract', u'report']
[u'hope', u'remain', u'seafar', u'centr']
[u'hop', u'high', u'river', u'meet']
[u'hospit', u'board', u'maintain', u'fund', u'fight']
[u'hospit', u'reject', u'asbesto', u'clean', u'request']
[u'howard', u'address', u'canadian', u'parliament']
[u'howard', u'urg', u'attend', u'violenc', u'summit']
[u'huge', u'caus', u'illeg', u'fish', u'concern']
[u'hume', u'shire', u'consid', u'rate', u'rise']
[u'huxley', u'join', u'brumbi']
[u'illawarra', u'secur', u'better', u'rescu', u'chopper']
[u'immigr', u'consid', u'tighter', u'staff', u'dress', u'code']
[u'indigen', u'council', u'head', u'back', u'violenc', u'summit']
[u'indonesia', u'seek', u'sovereignti', u'claus', u'secur']
[u'indonesia', u'merapi', u'quieten']
[u'innisfail', u'busi', u'boom', u'cyclon']
[u'insid', u'knowledg', u'advantag', u'ead']
[u'iraq', u'violenc', u'kill']
[u'japanes', u'tourist', u'prefer', u'asian']
[u'joyc', u'hear', u'push', u'enterpris', u'zone', u'trial']
[u'karzai', u'blame', u'pakistan', u'taliban', u'attack']
[u'kon', u'investig', u'farmland', u'hous', u'approv']
[u'land', u'council', u'hail', u'nativ', u'titl', u'victori']
[u'lawrenc', u'murder', u'suspect', u'dead', u'prison', u'cell']
[u'lawyer', u'cast', u'doubt', u'drink', u'drive', u'law']
[u'leadership', u'see', u'address', u'indigen']
[u'legal', u'servic', u'support', u'feud', u'famili', u'fist', u'fight']
[u'local', u'govt', u'leader', u'money', u'save', u'idea']
[u'lord', u'mayor', u'melbourn', u'record', u'attempt']
[u'malthous', u'eye', u'heavyweight', u'geelong']
[u'charg', u'hartley', u'fatal', u'crash']
[u'charg', u'servic', u'station', u'arm', u'robberi']
[u'jail', u'molest', u'daughter']
[u'plead', u'guilti', u'stalk', u'civil', u'liberti']
[u'refus', u'bail', u'kidnap', u'assault']
[u'seek', u'bega', u'doubl', u'shoot']
[u'market', u'level', u'drop']
[u'mayor', u'back', u'investig']
[u'meet', u'consid', u'water', u'suppli', u'issu']
[u'melbourn', u'woman', u'fear', u'kidnap']
[u'mentor', u'program', u'help', u'youth']
[u'miner', u'say', u'long', u'wall', u'mine', u'green', u'requir']
[u'minist', u'call', u'women', u'aborigin', u'refug']
[u'minist', u'sign', u'water', u'trade', u'deal']
[u'say', u'live', u'trade', u'struggl', u'despit', u'cattl']
[u'fund', u'seek', u'drought', u'recoveri', u'offic']
[u'fund', u'seek', u'school']
[u'nepales', u'royal', u'rule', u'come']
[u'nigerian', u'presid', u'agre', u'stand']
[u'govt', u'move', u'recruit', u'nurs']
[u'solicitor', u'blame', u'alcohol', u'indigen']
[u'wont', u'attend', u'indigen', u'violenc', u'summit']
[u'opposit', u'call', u'sanction', u'burmes']
[u'orang', u'roughi', u'cost', u'job', u'fisherman', u'say']
[u'pair', u'charg', u'road', u'rage', u'attack']
[u'pakistan', u'deni', u'back', u'afghan', u'insurg']
[u'peacekeep', u'forc', u'call', u'remot']
[u'petit', u'urg', u'region', u'polic']
[u'phoenix', u'expect', u'fight', u'bird']
[u'plan', u'accommod', u'boost']
[u'plan', u'afoot', u'hous', u'race', u'club']
[u'address', u'canadian', u'parliament']
[u'anticip', u'intens', u'nuclear', u'debat']
[u'tight', u'lip', u'leadership', u'specul']
[u'take', u'stand', u'customari']
[u'polic', u'clear', u'hoteli', u'post', u'box', u'bout']
[u'polic', u'fear', u'miss', u'boati']
[u'polic', u'investig', u'road', u'sign', u'vandal']
[u'polic', u'issu', u'home', u'secur', u'remind']
[u'polic', u'pleas', u'drug', u'smuggler', u'jail', u'term']
[u'polic', u'determin', u'assault', u'link']
[u'post', u'mortem', u'crash', u'victim']
[u'prodi', u'withdraw', u'italian', u'troop', u'iraq']
[u'pyrethrum', u'price']
[u'call', u'murray', u'darl', u'basin', u'improv']
[u'race', u'finalis', u'leonora', u'golden', u'gift']
[u'repair', u'paddl', u'steamer', u'head', u'home']
[u'research', u'centr', u'econom', u'benefit', u'evalu']
[u'resid', u'anger', u'tower', u'plan']
[u'resili', u'tourism', u'industri', u'cop', u'fuel', u'hike']
[u'tinto', u'set', u'iron', u'price', u'benchmark']
[u'ruddock', u'seek', u'sedit', u'advic', u'islam', u'book']
[u'bid', u'championship']
[u'safina', u'end', u'clijster', u'number', u'hop']
[u'twin', u'toddler', u'accid']
[u'search', u'continu', u'miss', u'pension']
[u'senat', u'committe', u'warn', u'petrol', u'sniff']
[u'send', u'armi', u'aborigin', u'communiti']
[u'servic', u'station', u'cut', u'hour', u'troubl', u'spot']
[u'seven', u'forecast', u'avail']
[u'shire', u'stand', u'moor', u'fee']
[u'silt', u'flood', u'problem', u'prompt', u'call', u'barrag']
[u'soft', u'drink', u'benzen', u'level', u'consid', u'safe']
[u'solomon', u'mission', u'long', u'haul', u'downer', u'say']
[u'sophi', u'intens', u'care']
[u'specialis', u'train', u'firefight']
[u'suharto', u'critic', u'condit', u'oper']
[u'surgeri', u'help', u'cerebr', u'palsi', u'suffer']
[u'survey', u'highlight', u'prefer', u'site', u'justic']
[u'sydney', u'light', u'rail', u'possibl']
[u'teen', u'murder', u'life', u'sentenc', u'spark', u'anger']
[u'telstra', u'shed', u'region', u'job']
[u'theatr', u'compani', u'offer', u'actor', u'secur']
[u'thiev', u'target', u'dalwalinu', u'shire', u'offic', u'safe']
[u'thompson', u'return', u'victori']
[u'thousand', u'expect', u'flock', u'fred']
[u'threaten', u'squirrel', u'gilder', u'south', u'east']
[u'red', u'player', u'seven', u'squad']
[u'focus', u'cruis', u'ship', u'termin']
[u'torr', u'strait', u'death', u'tragedi', u'wait', u'happen']
[u'tune', u'deserv', u'wallabi', u'latham']
[u'twin', u'toddler', u'drown', u'water', u'tank']
[u'bird', u'death', u'confirm', u'indonesia']
[u'union', u'face', u'fin', u'mobil', u'tower', u'work']
[u'kill', u'afghan', u'violenc']
[u'judg', u'dismiss', u'tortur', u'case', u'nation']
[u'open', u'north', u'korea', u'peac', u'treati']
[u'senat', u'grill', u'nomine']
[u'back', u'water', u'trade', u'deal']
[u'scientist', u'help', u'final', u'chromosom']
[u'viduka', u'unsur', u'retain', u'captainci']
[u'children', u'health', u'need', u'neglect', u'scott']
[u'walcott', u'offici', u'youngest', u'player', u'world']
[u'waratah', u'edg', u'hurrican']
[u'waratah', u'unfaz', u'poor', u'record', u'refere']
[u'water', u'transfer', u'blame', u'restrict']
[u'welfar', u'group', u'warn', u'higher', u'food', u'cost', u'hurt']
[u'set', u'medic', u'trial', u'report', u'standard']
[u'william', u'keen', u'stick', u'port']
[u'woden', u'bomb', u'scare', u'devic', u'danger', u'polic']
[u'woman', u'serious', u'harm', u'hous', u'smash']
[u'world', u'fan', u'warn', u'measl', u'risk']
[u'kill', u'baghdad', u'blast']
[u'kill', u'turkey', u'crash']
[u'ancic', u'robredo', u'hamburg', u'semi']
[u'armi', u'call', u'mortar', u'shell']
[u'asbesto', u'worker', u'famili', u'seek', u'research']
[u'asian', u'countri', u'count', u'cost', u'typhoon']
[u'aussi', u'kennedi', u'maintain', u'lead', u'macau', u'open']
[u'aussi', u'singer', u'front', u'germani', u'eurovis', u'entri']
[u'australia', u'canada', u'protect', u'uranium', u'industri']
[u'australia', u'plan', u'record', u'team', u'beij']
[u'australia', u'vow', u'protect', u'uranium', u'interest']
[u'blind', u'fan', u'snap', u'world', u'ticket']
[u'canada', u'express', u'climat', u'chang']
[u'crash', u'suburban', u'bedroom']
[u'hous', u'accid', u'prompt', u'call', u'safeti']
[u'carney', u'trick', u'boost', u'knight']
[u'charg', u'warrior', u'shock', u'tiger']
[u'chipp', u'challeng', u'democrat', u'senat', u'ahead']
[u'closer', u'abcnew']
[u'closer']
[u'coast', u'resid', u'urg', u'resist', u'weekend']
[u'craig', u'say', u'crow', u'improv']
[u'crusad', u'super', u'final']
[u'vinci', u'code', u'ban', u'town']
[u'democrat', u'drug', u'comment', u'worri', u'mental', u'health', u'worker']
[u'divis', u'clear', u'aust', u'nuclear', u'debat']
[u'driver', u'continu', u'mobil', u'survey']
[u'eccleston', u'sign', u'deal', u'manufactur']
[u'edward', u'fastest', u'french', u'motogp', u'practic']
[u'england', u'count', u'owen', u'cool', u'finish']
[u'timores', u'leadership', u'ballot', u'prompt', u'democraci']
[u'timor', u'elect', u'amid', u'instabl']
[u'recommend', u'plan', u'sale', u'iran']
[u'explos', u'rip', u'palestinian', u'intellig']
[u'golf', u'cours', u'communiti', u'develop']
[u'govt', u'commit', u'landmin', u'clear']
[u'govt', u'commit', u'protect', u'risk', u'teen']
[u'govt', u'cooper', u'indian', u'wheat', u'inquiri', u'ruddock']
[u'green', u'claim', u'snowi', u'sale', u'dead']
[u'gronholm', u'set', u'pace', u'sardinia']
[u'guantanamo', u'protest', u'leav', u'injur']
[u'guantanamo', u'detaine', u'injur', u'riot']
[u'guantanamo', u'inmat', u'treat', u'law']
[u'henri', u'sign', u'contract']
[u'hick', u'involv', u'guantanamo', u'attack', u'dfat']
[u'hick', u'involv', u'guantanamo', u'riot']
[u'hingi', u'venus', u'reach', u'rome', u'semi', u'final']
[u'horrach', u'win', u'stage', u'basso', u'retain', u'giro', u'lead']
[u'howard', u'wont', u'draw', u'murdoch', u'comment']
[u'immigr', u'dept', u'dress', u'code', u'draconian']
[u'indigen', u'communiti', u'rebuff', u'suggest']
[u'industri', u'deni', u'reviv', u'live', u'cattl', u'trade']
[u'iraq', u'blast', u'kill']
[u'iraq', u'get', u'govern']
[u'iraq', u'leader', u'agre', u'govern']
[u'iraq', u'wheat', u'deal', u'doubt']
[u'crew', u'prepar', u'space', u'walk']
[u'joel', u'bowden', u'andrew', u'kellaway']
[u'jone', u'european', u'meet']
[u'kennedi', u'lead', u'aussi', u'charg', u'macau', u'open']
[u'kimmorley', u'face', u'bulldog']
[u'knight', u'compens', u'talk', u'prematur']
[u'kovco', u'widow', u'brief', u'repatri', u'report']
[u'labor', u'criticis', u'indigen', u'violenc', u'summit']
[u'magpi', u'annihil', u'disappoint', u'cat']
[u'magpi', u'prepar', u'flood']
[u'break', u'time', u'darfur']
[u'charg', u'fatal', u'shoot']
[u'owner', u'recov', u'second', u'stroke']
[u'martin', u'want', u'indigen', u'issu', u'coag', u'agenda']
[u'mcewen', u'quit', u'giro', u'ill']
[u'migrain', u'drug', u'eas', u'sever', u'face', u'pain']
[u'mottram', u'eye', u'race', u'record']
[u'murder', u'suspect', u'death', u'prompt', u'inquiri']
[u'mysteri', u'penalti', u'sink', u'waratah']
[u'iraqi', u'wheat', u'deal', u'negoti', u'shaki']
[u'scrap', u'methadon', u'privat', u'clinic', u'licenc']
[u'govt', u'assess', u'indigen', u'abus', u'claim']
[u'nuclear', u'energi', u'debat', u'sham']
[u'indigen', u'rap', u'survey']
[u'palestinian', u'clash', u'hama', u'aid', u'catch', u'cash']
[u'pampl', u'take', u'texa', u'lead']
[u'pavlich', u'steer', u'docker', u'victori']
[u'call', u'nuclear', u'debat']
[u'keep', u'open', u'mind', u'nuclear', u'energi']
[u'polic', u'investig', u'arson', u'attack']
[u'polit', u'arrest', u'zimbabw', u'tri', u'stop']
[u'polit', u'overshadow', u'indigen', u'abus', u'action']
[u'presid', u'wont', u'interven', u'suharto', u'case']
[u'urg', u'review', u'euthanasia', u'law']
[u'radiologist', u'shortag', u'see', u'sick', u'discharg']
[u'relief', u'continu', u'arriv', u'larri', u'victim']
[u'report', u'reveal', u'indigen', u'rap']
[u'report', u'senior', u'taliban', u'command', u'captur']
[u'report', u'senior', u'taliban', u'leader', u'captur']
[u'roadhous', u'hit', u'grampian', u'communiti']
[u'roger', u'forc', u'giro']
[u'rough', u'week', u'stock', u'end', u'rise']
[u'paulo', u'calm', u'clash', u'toll', u'climb']
[u'eagl', u'storm']
[u'search', u'continu', u'miss', u'melbourn', u'woman']
[u'shevchenko', u'decid', u'futur', u'week']
[u'sign', u'feed', u'prehistor', u'bird', u'alaska']
[u'singer', u'freddi', u'garriti', u'die']
[u'sleep', u'apnoea', u'devic', u'nab', u'australian', u'design', u'award']
[u'stanhop', u'anger', u'union', u'defenc', u'super', u'cut']
[u'stoner', u'fastest', u'french', u'practic']
[u'suspect', u'death', u'wont', u'murder', u'investig', u'polic']
[u'swan', u'comfort', u'winner', u'bulldog']
[u'swift', u'strong', u'oriol']
[u'tabl', u'tenni', u'world', u'wow', u'champ']
[u'tasmanian', u'judg', u'question', u'fair', u'hick', u'trial']
[u'nurs', u'concern', u'chang', u'wag']
[u'gorg', u'wall', u'complet']
[u'injur', u'road', u'accid']
[u'polic', u'offic', u'injur', u'brawl']
[u'tiger', u'knock', u'crow', u'perch']
[u'timores', u'surviv', u'leadership', u'challeng']
[u'fishermen', u'rescu']
[u'question', u'taxi', u'assault']
[u'third', u'troop', u'combat', u'readi', u'nelson']
[u'underwat', u'uluru', u'coast']
[u'dismiss', u'guantanamo', u'tortur', u'report']
[u'soldier', u'kill', u'wound', u'afghan', u'battl']
[u'stretch', u'guantanomo', u'judg']
[u'govt', u'doubl', u'dump', u'fee']
[u'young', u'aborigin', u'risk', u'rape', u'report']
[u'zidan', u'say', u'franc', u'recov', u'team', u'spirit']
[u'miner', u'trap', u'hush', u'accid']
[u'year', u'tabl', u'tenni', u'champ', u'win', u'fan']
[u'boost', u'kangaroo']
[u'actu', u'highlight', u'safeti', u'concern', u'chang']
[u'quiet', u'timor', u'anniversari']
[u'consid', u'remot', u'communiti', u'troop', u'deploy']
[u'urg', u'snowi', u'hydro', u'sale', u'safeguard']
[u'arrhythmia', u'trial', u'find', u'ablat', u'better', u'drug']
[u'barca', u'lose', u'etoo', u'finish', u'scorer']
[u'beaconsfield', u'sharehold', u'unhappi', u'manag']
[u'beatti', u'reject', u'cap', u'popul']
[u'beatti', u'drive', u'train', u'doctor', u'continu']
[u'blackman', u'paint', u'turn']
[u'blair', u'welcom', u'perman', u'iraqi', u'govt']
[u'bond', u'equal', u'babe', u'ruth', u'record']
[u'brisban', u'bouncer', u'charg', u'murder']
[u'brisban', u'bouncer', u'charg', u'murder']
[u'buderus', u'origin', u'injuri', u'scare']
[u'bulldog', u'repel', u'shark', u'onslaught']
[u'cabbi', u'face', u'fine', u'refus', u'commission']
[u'cartoon', u'help', u'kid', u'understand', u'mental', u'ill']
[u'chines', u'cann', u'film', u'spark', u'threat']
[u'church', u'urg', u'speak', u'indigen', u'victim']
[u'closer', u'abcnew']
[u'closer']
[u'cosgrov', u'land', u'defenc', u'role']
[u'custom', u'chase', u'suspect', u'poacher']
[u'young', u'hand', u'queensland', u'hockey', u'titl']
[u'disabl', u'discrimin', u'head', u'refus']
[u'disgrac', u'presid', u'live', u'opera']
[u'downer', u'join', u'push', u'nuclear', u'debat']
[u'downer', u'seek', u'expand', u'local', u'nuclear', u'debat']
[u'downer', u'welcom', u'iraqi', u'govern']
[u'eagl', u'battl', u'past', u'commit', u'bomber']
[u'environment', u'test', u'delay', u'dragway']
[u'peac', u'talk', u'immin', u'spain', u'say']
[u'extra', u'train', u'driver', u'stand', u'holiday', u'sick']
[u'fear', u'trap', u'chines', u'coal', u'miner']
[u'feder', u'govt', u'join', u'labor', u'condemn', u'tree']
[u'finland', u'win', u'eurovis', u'song', u'contest']
[u'bush', u'backer', u'urg', u'republican', u'split']
[u'french', u'soldier', u'dead', u'afghan', u'battl']
[u'govt', u'blame', u'helen', u'doctor', u'crisi', u'barnett']
[u'harmison', u'leav', u'wait', u'england']
[u'hart', u'face', u'lengthi', u'sidelin', u'stint']
[u'healey', u'win', u'french', u'wildcard']
[u'hiddink', u'give', u'viduka']
[u'hingi', u'face', u'safina', u'rome', u'final']
[u'hurrican', u'batter', u'orlean', u'resid', u'vote']
[u'indonesia', u'press', u'australia', u'support', u'papua']
[u'innisfail', u'ahead', u'clean', u'schedul']
[u'iraq', u'govt', u'uniti', u'prais', u'intern', u'communiti']
[u'iraqi', u'vow', u'maximum', u'forc', u'amid', u'bomb', u'blast']
[u'law', u'miner', u'risk', u'union']
[u'israel', u'free', u'palestinian', u'fund']
[u'isra', u'strike', u'kill', u'palestinian', u'gaza']
[u'owner', u'show', u'go']
[u'kashmiri', u'memori', u'attack', u'kill']
[u'knight', u'payout', u'talk', u'prompt', u'compo', u'review']
[u'labor', u'blame', u'vail', u'wheat', u'deal', u'collaps']
[u'lion', u'class', u'power', u'trounc']
[u'loeb', u'close', u'fifth', u'gronholm', u'crash']
[u'charg', u'card', u'game', u'death']
[u'die', u'paraglid', u'accid']
[u'die', u'outsid', u'brisban', u'hotel']
[u'martin', u'call', u'indigen', u'issu', u'head', u'coag']
[u'mckenzi', u'rue', u'waratah', u'miss', u'chanc']
[u'mine', u'disast', u'china']
[u'miss', u'woman', u'fianc', u'beg', u'help']
[u'montenegro', u'vote', u'independ']
[u'teacher', u'strike', u'deal', u'reject']
[u'mottram', u'win', u'miss', u'record']
[u'mundin', u'consid', u'troop', u'deploy', u'remot']
[u'mundin', u'urg', u'govt', u'address', u'basic', u'indigen']
[u'orlean', u'mayor', u'win', u'narrow', u'victori']
[u'injuri', u'drive', u'home']
[u'north', u'west', u'lead', u'job', u'growth']
[u'nrma', u'back', u'school', u'zone', u'plan']
[u'pair', u'charg', u'cabbi', u'assault']
[u'palestinian', u'assassin', u'attempt', u'thwart']
[u'palestinian', u'chief', u'wound', u'gaza', u'blast']
[u'pampl', u'ralli', u'share', u'texa', u'lead']
[u'pedrosa', u'pip', u'nakano', u'french', u'pole']
[u'piepoli', u'win', u'stage', u'basso', u'extend', u'giro', u'lead']
[u'polic', u'anti', u'riot', u'power', u'extend']
[u'polic', u'break', u'afghan', u'hunger', u'strike', u'dublin']
[u'polic', u'standbi', u'ahead', u'shark', u'bulldog', u'clash']
[u'polic', u'probe', u'fatal', u'paraglid', u'crash']
[u'power', u'handl', u'enrich', u'govt']
[u'public', u'offer', u'stake', u'snowi', u'hydro']
[u'region', u'market', u'nation', u'hous', u'afford']
[u'rescu', u'miner', u'plan', u'amput', u'leg']
[u'riverina', u'harvest', u'bumper', u'rice', u'crop']
[u'robredo', u'line', u'stepanek', u'hamburg', u'final']
[u'rooster', u'hold', u'surg', u'bunni']
[u'saint', u'touch', u'struggl', u'blue']
[u'lobbi', u'fast', u'food']
[u'porn', u'jakarta', u'protest']
[u'secur', u'treati', u'includ', u'papua', u'claus']
[u'senat', u'speak', u'disgrac', u'hydro', u'sale']
[u'shorten', u'call', u'review', u'compo', u'law']
[u'slater', u'fiji', u'event']
[u'snowi', u'hydro', u'ownership', u'safeguard', u'urg']
[u'snowi', u'hydro', u'sale', u'open', u'ordinari', u'australian']
[u'sonni', u'william', u'steve', u'folk', u'stuart', u'raper']
[u'speed', u'camera', u'warn', u'light', u'propos', u'slow']
[u'suharto', u'condit', u'improv', u'doctor']
[u'taliban', u'captur', u'fighter', u'call', u'journo', u'deni']
[u'teen', u'charg', u'sexual', u'assault', u'attempt']
[u'teen', u'face', u'court', u'polic', u'chase']
[u'tennant', u'creek', u'strike', u'shelv']
[u'territori', u'doctor', u'back', u'call', u'indigen', u'fund']
[u'charg', u'brisban', u'death']
[u'time', u'lucki', u'munster', u'european']
[u'trap', u'miner', u'speak', u'fear', u'determin']
[u'extradit', u'boxer', u'shoot']
[u'injur', u'echuca', u'rough', u'land']
[u'typhoon', u'leav', u'miss']
[u'envoy', u'visit']
[u'coal', u'blast', u'kill']
[u'vail', u'blame', u'wheat', u'deal', u'fail', u'labor', u'say']
[u'prison', u'guard', u'defend', u'murder', u'suspect', u'movement']
[u'butt', u'stop', u'global', u'warm']
[u'windi', u'edg', u'india', u'thriller']
[u'worker', u'safeti', u'protect', u'law', u'govt']
[u'world', u'leader', u'hail', u'iraqi', u'govt']
[u'world', u'leader', u'welcom', u'perman', u'iraqi', u'govt']
[u'young', u'england', u'squad']
[u'iraqi', u'wheat', u'deal', u'fail']
[u'iraqi', u'wheat', u'deal', u'fall']
[u'kill', u'violenc']
[u'chairman', u'back', u'fairfax', u'exec', u'appoint']
[u'ghraib', u'abus', u'suspect', u'front', u'court']
[u'govt', u'prevent', u'repeat', u'park', u'debacl']
[u'activist', u'bear', u'london', u'protest']
[u'aloisi', u'look', u'doubt', u'showdown']
[u'criticis', u'benambra', u'candid']
[u'want', u'council', u'lose', u'councillor']
[u'aluminium', u'smelter', u'elect', u'issu']
[u'armi', u'need', u'wadey', u'say', u'commission']
[u'armi', u'vehicl', u'bomb', u'afghanistan']
[u'aussi', u'face', u'year', u'jail', u'indonesian', u'drug']
[u'austimb', u'demis', u'blame', u'shift']
[u'australian', u'face', u'drug', u'charg', u'indonesia']
[u'ban', u'gun', u'mail', u'caus', u'problem', u'post']
[u'belyando', u'council', u'overhaul', u'town', u'plan']
[u'blood', u'clot', u'kill', u'chief']
[u'bomber', u'wont', u'resort', u'basketbal', u'crap', u'sheedi']
[u'bouncer', u'appli', u'murder', u'charg', u'bail']
[u'bouncer', u'face', u'court', u'brisban', u'death']
[u'bouncer', u'face', u'murder', u'charg', u'hotel', u'death']
[u'britain', u'expect', u'troop', u'iraq']
[u'broad', u'rang', u'inquiri', u'promis']
[u'buderus', u'origin', u'open']
[u'buderus', u'mend']
[u'budget', u'cut', u'fail', u'boost', u'coalit', u'poll']
[u'busi', u'chamber', u'welcom', u'aztec', u'opportun']
[u'open', u'land']
[u'crash', u'mildura', u'jewelleri', u'store']
[u'cargo', u'ship', u'rescu', u'strand', u'yachti']
[u'access', u'loan']
[u'child', u'cancer', u'survivor', u'face', u'troubl', u'report']
[u'china', u'launch', u'tibet', u'railway']
[u'chines', u'deleg', u'offer', u'hope', u'school', u'exchang']
[u'chines', u'illeg', u'fish', u'influx', u'worri', u'govt']
[u'chines', u'rescu', u'effort', u'ongo']
[u'clark', u'wont', u'seek', u'second', u'term', u'mayor']
[u'closer']
[u'closer', u'abcnew']
[u'closer']
[u'coalit', u'meet', u'urg', u'consid', u'tradespeopl']
[u'combin', u'effort', u'tree', u'knowledg', u'vandal']
[u'coron', u'probe', u'babi', u'casino', u'hotel', u'death']
[u'corrupt', u'dead', u'aid', u'say', u'bono']
[u'cosgrov', u'step', u'cyclon', u'recoveri', u'mission']
[u'costello', u'dismiss', u'question', u'time', u'bait']
[u'council', u'consid', u'plan', u'sell', u'tree', u'knowledg']
[u'council', u'doesnt', u'want', u'lose', u'fund']
[u'council', u'fund', u'add', u'hous', u'woe', u'lgant']
[u'council', u'green', u'light', u'artesian', u'bath', u'plan']
[u'council', u'decid', u'entertain', u'centr', u'site']
[u'council', u'urg', u'form', u'water', u'strategi']
[u'counsellor', u'visit', u'kovco', u'famili']
[u'cyclon', u'damag']
[u'defect', u'gene', u'blame', u'devil', u'diseas']
[u'demand', u'banana', u'prompt', u'desper', u'measur']
[u'denmark', u'hospit', u'site', u'focus', u'worri', u'green']
[u'detaine', u'return', u'psychiatrist', u'advic']
[u'destroy', u'attack', u'girl']
[u'drink', u'drive', u'offic', u'sorri', u'action']
[u'eagl', u'soft', u'touch', u'say', u'graham']
[u'earli', u'result', u'serbia', u'montenegro', u'like']
[u'guerrouj', u'hang', u'run', u'shoe']
[u'fairfax', u'exec', u'manag', u'director']
[u'fairfax', u'execut', u'boss']
[u'fairfax', u'execut', u'head']
[u'farley', u'rememb', u'sydney', u'servic']
[u'farmer', u'fund', u'campaign', u'nativ', u'veget']
[u'farm', u'group', u'oppos', u'plan', u'chang', u'diesel', u'rebat']
[u'fear', u'region', u'driver', u'wors', u'grant']
[u'firm', u'taxi', u'order', u'road']
[u'folk', u'let']
[u'fortescu', u'await', u'costello', u'decis', u'rail']
[u'fund', u'gwalia', u'landmark']
[u'fund', u'seek', u'shoot', u'film', u'mildura']
[u'gold', u'help', u'boost', u'race', u'club', u'financ']
[u'govt', u'flag', u'coastal', u'secur', u'trial']
[u'govt', u'offer', u'fund', u'help', u'nurs', u'fight', u'sack']
[u'govt', u'stand', u'firm', u'teacher', u'deal']
[u'govt', u'urg', u'hold', u'fluorid', u'referendum']
[u'govt', u'urg', u'protect', u'hunter', u'bushland', u'corridor']
[u'grandfath', u'front', u'court', u'infect', u'charg']
[u'green', u'peel', u'deviat', u'stanc']
[u'group', u'confid', u'river', u'project', u'harmoni']
[u'hawthorn', u'roughead', u'lose', u'driver', u'licenc']
[u'hermit', u'cave', u'heritag', u'list']
[u'hingi', u'elit']
[u'hous', u'work', u'boost', u'grow', u'whyalla']
[u'howard', u'minchin', u'odd', u'nuclear', u'energi']
[u'howard', u'predict', u'tecton', u'chang', u'china']
[u'howard', u'upbeat', u'iraqi', u'govern']
[u'hundr', u'turn']
[u'hydro', u'tasmania', u'warn', u'govt', u'handout']
[u'industri', u'welcom', u'trade', u'school', u'announc']
[u'ingram', u'vow', u'maintain', u'campaign', u'snowi']
[u'injuri', u'delay', u'hart', u'testimoni', u'match']
[u'iraq', u'wheat', u'deal', u'collaps']
[u'irrig', u'tip', u'snap', u'water', u'alloc']
[u'japan', u'hint', u'expand', u'role', u'iraq']
[u'juic', u'face', u'court', u'action', u'teen']
[u'junk', u'food', u'spotlight']
[u'kentucki', u'derbi', u'champion', u'life', u'balanc']
[u'kimberley', u'indigen', u'artist', u'enjoy', u'sydney', u'success']
[u'kovco', u'famili', u'brief', u'repatri', u'bungl']
[u'kovco', u'widow', u'brief', u'bodi', u'bungl', u'find']
[u'labor', u'blame', u'vail', u'wheat', u'deal', u'failur']
[u'labor', u'workplac', u'safeti', u'claim', u'mislead', u'costello']
[u'labor', u'tell', u'vail', u'save', u'iraq', u'wheat', u'deal']
[u'latrob', u'valley', u'make', u'victoria', u'famili']
[u'magistr', u'prais', u'drug', u'court', u'rehab', u'program']
[u'charg', u'road', u'sign', u'damag']
[u'court', u'accus', u'hotel', u'hold']
[u'marin', u'park', u'group', u'fail', u'reach', u'zone', u'plan']
[u'market', u'fade', u'despit', u'posit', u'start']
[u'martin', u'agre', u'talk', u'indigen', u'child', u'abus']
[u'martin', u'brough', u'discuss', u'communiti', u'violenc']
[u'mayor', u'confid', u'templ', u'approv']
[u'meet', u'give', u'principl', u'back', u'murray', u'water']
[u'milat', u'link', u'miss', u'nurs', u'case']
[u'milit', u'kill', u'kashmir', u'polit', u'ralli']
[u'inquiri', u'announc']
[u'miner', u'rais', u'platinum', u'studi']
[u'miner', u'consid', u'radic', u'escap', u'plan']
[u'minist', u'flag', u'perman', u'replac', u'tent']
[u'miss', u'bushwalk', u'safe']
[u'molik', u'play', u'pari', u'clay']
[u'montenegro', u'vote', u'independ']
[u'foreign', u'seek', u'address', u'rural', u'doctor']
[u'indigen', u'paedophilia', u'charg']
[u'problem', u'parliament', u'bollard']
[u'time', u'experiment', u'wood', u'process', u'plant']
[u'say', u'yakka', u'closur', u'link', u'tariff']
[u'encourag', u'combet', u'parliament']
[u'want', u'price', u'hike', u'stem', u'aborigin', u'alcohol']
[u'nation', u'dairi', u'farmer', u'contest', u'rodney']
[u'boss', u'undecid', u'advertis']
[u'newcastl', u'councillor', u'call', u'council', u'sack']
[u'river', u'classif', u'creat', u'oyster', u'industri']
[u'wyndham', u'east', u'kimberley', u'councillor', u'elect']
[u'admit', u'decis', u'wrong']
[u'bodi', u'condemn', u'qanta', u'plan']
[u'form', u'earn', u'lobster', u'council', u'prais']
[u'open', u'miner', u'abcnew']
[u'opposit', u'announc', u'tank', u'home']
[u'paedophil', u'refus', u'bail', u'child', u'porn', u'charg']
[u'pair', u'accus', u'taxi', u'hold', u'refus', u'bail']
[u'pair', u'remand', u'custodi', u'sydney', u'shoot']
[u'pampl', u'texa']
[u'attent', u'intern', u'kirbi']
[u'petrol', u'price', u'blame', u'sale', u'decreas']
[u'pitcairn', u'look', u'social', u'worker']
[u'plan', u'deliv', u'rural', u'broadband', u'dump']
[u'odd', u'minchin', u'nuclear', u'power', u'cost']
[u'claim', u'victori', u'montenegro', u'referendum']
[u'minchin', u'odd', u'nuclear', u'energi']
[u'pursu', u'nuclear', u'debat']
[u'polic', u'associ', u'say', u'chang', u'help', u'region']
[u'polic', u'chief', u'disappoint', u'wit', u'ignor', u'attack']
[u'polic', u'criticis', u'blood', u'test', u'drown']
[u'polic', u'fear', u'gambier', u'blaze']
[u'polic', u'hunt', u'woman']
[u'polic', u'investig', u'fatal', u'highway', u'crash']
[u'polic', u'like', u'charg', u'horsham', u'brawl']
[u'polic', u'minist', u'visit', u'troubl', u'wadey']
[u'polic', u'search', u'gunman', u'wagga', u'wagga', u'drive']
[u'polic', u'search', u'nose']
[u'poll', u'point', u'montenegro', u'independ']
[u'pressur', u'grow', u'itali', u'coach', u'lippi', u'resign']
[u'priddi', u'prim', u'replac', u'buderus']
[u'public', u'ask', u'vote', u'alic']
[u'public', u'rate', u'rise', u'plan']
[u'public', u'urg', u'petit', u'polic']
[u'pulp', u'develop', u'applic', u'lodg']
[u'push', u'boost', u'indigen', u'mental', u'health', u'worker']
[u'push', u'list', u'orang', u'roughi', u'endang', u'speci']
[u'move', u'thwart', u'jail', u'phone', u'merchant']
[u'rare', u'botul', u'strain', u'blight', u'farm', u'expert']
[u'region', u'drag', u'drought']
[u'remand', u'centr', u'delay', u'hamper', u'polic', u'opposit']
[u'renouf', u'miss', u'nolan']
[u'report', u'favour', u'plan']
[u'rescuer', u'free', u'trap', u'whale']
[u'review', u'panel', u'charg', u'weekend', u'game']
[u'rice', u'foreshadow', u'guantanamo', u'closur']
[u'rise', u'cost', u'threaten', u'small', u'busi']
[u'roadhous', u'blaze', u'shock', u'communiti']
[u'rooney', u'fit', u'battl', u'say', u'england']
[u'rspca', u'consid', u'charg', u'saleyard', u'video']
[u'russel', u'webb', u'manag', u'blame']
[u'saddam', u'lawyer', u'kick', u'trial', u'resum']
[u'sailor', u'fight', u'drug', u'test', u'result']
[u'defenc', u'industri', u'readi', u'say']
[u'rais', u'school', u'leav']
[u'school', u'assess', u'road', u'safeti', u'packag']
[u'scientist', u'cast', u'doubt', u'nuclear', u'benefit']
[u'senat', u'angri', u'telstra', u'estim']
[u'senior', u'scheme', u'hop', u'secur', u'long', u'term', u'dig']
[u'sexi', u'smell', u'help', u'trap', u'toad']
[u'shale', u'deposit', u'promis', u'benefit']
[u'shire', u'tell', u'parker', u'youv', u'busi']
[u'shopper', u'flee']
[u'similar', u'citrus', u'harvest', u'expect', u'year']
[u'socceroo', u'blow', u'cobweb']
[u'solomon', u'defend', u'appoint', u'jail']
[u'stone', u'venezuela', u'coup', u'film', u'chavez', u'say']
[u'sudanes', u'govt', u'accus', u'break', u'peac', u'deal']
[u'tamil', u'tiger', u'leader', u'kill', u'lanka']
[u'charg', u'halt', u'market', u'gurus', u'tour']
[u'teen', u'charg', u'umpir', u'assault']
[u'teen', u'custodi', u'tripl', u'sexual', u'assault', u'charg']
[u'teen', u'mother', u'sorri', u'taxi', u'driver', u'bash']
[u'telstra', u'grill', u'internet', u'porn', u'filter']
[u'textil', u'worker', u'want', u'firm']
[u'thai', u'work', u'tackl', u'violenc']
[u'trochus', u'shell', u'indonesian', u'boat', u'say']
[u'uncertain', u'futur', u'central', u'aust', u'bike', u'challeng']
[u'union', u'expect', u'forc', u'redund', u'kelso']
[u'cattlemen', u'lose', u'confid', u'japanes', u'market']
[u'gunman', u'kill', u'wife', u'grandpar']
[u'prison', u'popul', u'rise']
[u'raid', u'kill', u'score', u'afghanistan']
[u'utai', u'face', u'week']
[u'back', u'train', u'foreign', u'doctor', u'go']
[u'wadey', u'consid', u'evacu', u'violenc']
[u'wadey', u'elder', u'help']
[u'wadey', u'violenc', u'lead', u'evacu']
[u'farmer', u'anxious', u'rain']
[u'wait', u'week', u'knee', u'injuri']
[u'wanganeen', u'miss', u'month']
[u'water', u'deal', u'bring', u'benefit', u'say', u'commiss']
[u'water', u'minist', u'label', u'weekend', u'dumb']
[u'wheat', u'sale', u'collaps', u'commerci', u'matter']
[u'windi', u'unchang', u'squad', u'dayer']
[u'woman', u'die', u'plung', u'lagoon']
[u'woman', u'face', u'court', u'drive', u'charg']
[u'work', u'begin', u'remov', u'tweed', u'river', u'sand']
[u'act', u'role', u'special', u'costello']
[u'act', u'role', u'special', u'costello', u'say']
[u'mourn', u'loss', u'voic', u'race']
[u'help', u'lure', u'worker', u'grampian', u'pyrene']
[u'court', u'player', u'drug']
[u'amend', u'royal', u'commiss', u'cole']
[u'injuri', u'worri', u'socceroo']
[u'archbishop', u'back', u'pope', u'indigen', u'plight']
[u'stitch', u'time', u'ward', u'depress']
[u'kill', u'iraq', u'unrest']
[u'aussi', u'journalist', u'catch', u'timor', u'violenc']
[u'aussi', u'swarm', u'fiji', u'round']
[u'australia', u'donat', u'forens', u'equip']
[u'australian', u'featur', u'britain', u'horticultur']
[u'bali', u'bomb', u'accus', u'apologis', u'court']
[u'beaconsfield', u'gold', u'fund', u'worker', u'entitl']
[u'belfast', u'airport', u'honour', u'best']
[u'berlusconi', u'reclaim', u'presid', u'milan']
[u'bogut', u'kiwi']
[u'critic', u'hurt', u'motorway', u'crash']
[u'brazil', u'team', u'caus', u'stir', u'arriv', u'switzerland']
[u'brisban', u'bouncer', u'grant', u'bail']
[u'budapest', u'ape', u'tast', u'wine']
[u'bulk', u'bill', u'shortfal', u'hamper', u'hospit', u'plan']
[u'firm', u'make', u'visitor', u'centr', u'space']
[u'bushfir', u'prevent', u'work', u'begin']
[u'businessman', u'landeryou', u'declar', u'bankrupt']
[u'freight', u'linkag', u'south', u'wale', u'north']
[u'drought', u'transport', u'subsidi']
[u'transport', u'subsidi']
[u'campbel', u'play', u'global', u'warm', u'report']
[u'canberra', u'shabbi', u'hotel', u'hurt', u'tourism', u'industri']
[u'capit', u'work', u'winner', u'tamworth', u'budget']
[u'bomb', u'kill', u'baghdad']
[u'carlton', u'senior', u'star']
[u'chang', u'urg', u'shark', u'net', u'stop', u'whale', u'woe']
[u'child', u'care', u'debat', u'focus', u'place', u'peak', u'bodi']
[u'children', u'death', u'tragic', u'accid', u'coron']
[u'child', u'sexual', u'abus', u'worri', u'palm', u'island']
[u'china', u'hold', u'iron', u'price']
[u'chines', u'trawler', u'hand', u'quarantin', u'offic']
[u'closer']
[u'closer']
[u'cole', u'myer', u'sale', u'defi', u'consum', u'sentiment']
[u'colombian', u'troop', u'kill', u'polic', u'offic']
[u'comment', u'aplenti', u'flow', u'aquif', u'plan']
[u'concern', u'lack', u'respons', u'drive']
[u'connolli', u'say', u'super', u'star', u'rest']
[u'contribut', u'factor', u'train', u'crash', u'reveal']
[u'costello', u'confirm', u'fortescu', u'block', u'rail', u'line']
[u'costello', u'open']
[u'costello', u'want', u'wadey', u'polic', u'crackdown']
[u'council', u'financ', u'worri', u'local', u'councillor']
[u'councillor', u'say', u'park', u'fine', u'amnesti']
[u'council', u'say', u'build', u'dam', u'answer']
[u'council', u'secur', u'lake', u'georg', u'pledg']
[u'counterfeit', u'aust', u'note', u'seiz', u'colombian', u'raid']
[u'death', u'blame', u'rare', u'botul', u'strain']
[u'critic', u'addit', u'infrastructur', u'levi']
[u'critic', u'fail', u'dent', u'vinci', u'offic', u'success']
[u'customari', u'excus', u'say', u'brough']
[u'darwin', u'equip', u'wadey', u'evacu']
[u'scheme', u'aim', u'curb', u'impact']
[u'drought', u'demand', u'subsidi', u'farmer']
[u'drought', u'resist', u'aust', u'garden', u'grab', u'chelsea', u'gold']
[u'drought', u'wear', u'goulburn', u'farmer']
[u'flag', u'opposit', u'golf', u'club', u'plan']
[u'effluent', u'lagoon', u'storag', u'expand']
[u'environment', u'program', u'hit', u'longreach', u'state', u'school']
[u'environ', u'dept', u'merg', u'calm']
[u'everest', u'climber', u'defend', u'leav', u'die', u'briton']
[u'extra', u'polic', u'patrol', u'wadey']
[u'faction', u'polit', u'blame', u'loss']
[u'farmer', u'associ', u'say', u'subsidi', u'necess']
[u'farmer', u'reduc', u'herd', u'number', u'drought', u'continu']
[u'fashion', u'industri', u'seek', u'trochus', u'shell', u'partnership']
[u'feder', u'state', u'erupt', u'illeg', u'fish']
[u'feedback', u'seek', u'bushfir', u'impact']
[u'final', u'result', u'confirm', u'montenegro', u'independ']
[u'fisher', u'tag', u'remind']
[u'fishi', u'cane', u'toad', u'threaten', u'nativ', u'speci']
[u'flanneri', u'take', u'gong', u'premier', u'literari', u'award']
[u'flood', u'troubl', u'snowi', u'river']
[u'minist', u'urg', u'royal', u'commiss']
[u'fresh', u'violenc', u'erupt', u'east', u'timor']
[u'fund', u'announc', u'expect', u'govt', u'visit']
[u'leak', u'investig']
[u'gastro', u'outbreak', u'warn', u'illawarra']
[u'head', u'home', u'wiluna']
[u'govt', u'defend', u'state', u'care', u'spend']
[u'govt', u'keep', u'tab', u'gambl', u'plan']
[u'govt', u'question', u'aborigin', u'hous', u'care', u'abil']
[u'govt', u'telstra', u'assur', u'seek', u'rollout']
[u'govt', u'review', u'releas', u'mental']
[u'govt', u'tough', u'line', u'aborigin', u'justic']
[u'govt', u'urg', u'boost', u'rabbit', u'fenc', u'fund']
[u'gower', u'origin', u'open', u'buderus', u'clear']
[u'greek', u'turkish', u'jet', u'collid', u'intercept', u'move']
[u'group', u'arrest', u'string', u'arm', u'robberi']
[u'guantanamo', u'host', u'deleg']
[u'health', u'servic', u'announc', u'shorter', u'wait', u'list']
[u'heritag', u'award', u'honour', u'albani']
[u'homeless', u'get', u'help', u'coff', u'harbour']
[u'hope', u'remain', u'textil', u'worker', u'job']
[u'hostel', u'wont', u'build', u'time']
[u'hotel', u'murder', u'accus', u'grant', u'bail']
[u'hundr', u'wadey', u'local', u'homeless', u'hungri']
[u'ideal', u'east', u'coast', u'nuclear', u'plant', u'sit', u'identifi']
[u'independ', u'inquiri', u'unnecessari', u'societi']
[u'indigen', u'violenc', u'spark', u'hous']
[u'inquest', u'begin', u'blaze', u'child', u'death']
[u'irish', u'label', u'howard', u'warmong']
[u'irish', u'label', u'howard', u'xenophob']
[u'irrig', u'plan', u'reject']
[u'israel', u'claim', u'captur', u'hama', u'leader']
[u'japan', u'whale', u'fleet', u'head', u'northern', u'pacif']
[u'joey', u'reject', u'blue']
[u'journalist', u'safe', u'renew', u'timor', u'unrest']
[u'junk', u'mail', u'deliver', u'household']
[u'knight', u'lose', u'breach', u'appeal']
[u'labor', u'happi', u'govt', u'spend']
[u'land', u'council', u'reject', u'open', u'land']
[u'leader', u'concern', u'local', u'govern', u'debt']
[u'argu', u'tradit', u'fish', u'need', u'health']
[u'charg', u'cash']
[u'charg', u'melbourn', u'murder']
[u'charg', u'woman', u'murder']
[u'escap', u'prison', u'term', u'cannabi', u'convict']
[u'plead', u'guilti', u'drug', u'firearm', u'charg']
[u'market', u'guru', u'william', u'grant', u'bail']
[u'martin', u'play', u'possibl', u'wadey', u'evacu']
[u'mayb', u'better', u'leav', u'unit', u'ruud']
[u'meninga', u'look', u'sell', u'blue', u'dummi']
[u'merredin', u'trial', u'doctor', u'plan']
[u'minchin', u'stump', u'anti', u'terror', u'hotlin', u'number']
[u'plan', u'boost', u'indigen', u'employ']
[u'miner', u'talk', u'abandon', u'strike', u'action']
[u'miss', u'abandon', u'homestead']
[u'molik', u'knock', u'earli', u'turkey']
[u'mosquito', u'bear', u'diseas', u'concern']
[u'debat', u'nuclear', u'merit']
[u'seek', u'restrict', u'snowi', u'hydro', u'ownership']
[u'compani', u'control', u'plan', u'dam']
[u'hospit', u'say', u'hello', u'goodby']
[u'rehabilit', u'centr', u'open', u'sale']
[u'news', u'merger', u'unlik']
[u'violenc', u'erupt', u'east', u'timor']
[u'need', u'harsh', u'gold', u'coast', u'water', u'ban', u'clark']
[u'noosa', u'mayor', u'suggest', u'popul']
[u'unveil', u'classroom', u'apprenticeship', u'plan']
[u'offshor', u'asylum', u'process', u'get', u'negat', u'respons']
[u'oliv', u'stone', u'deni', u'plan', u'venezuela', u'coup', u'film']
[u'opposit', u'see', u'health', u'worker', u'hous', u'good', u'start']
[u'orica', u'expect', u'strong', u'futur', u'despit', u'profit', u'loss']
[u'ouyen', u'rais', u'communiti', u'club', u'rescu', u'fund']
[u'palm', u'mayor', u'call', u'understand']
[u'parliamentari', u'offic', u'subject', u'graffiti', u'attack']
[u'perth', u'bash', u'victim', u'die', u'hospit']
[u'plan', u'aim', u'lure', u'perth', u'firm', u'south', u'west']
[u'plan', u'civic', u'precinct', u'discuss']
[u'plastic', u'phase', u'remain']
[u'plastic', u'report', u'criticis']
[u'polic', u'continu', u'investig', u'kooring']
[u'polic', u'investig', u'fatal', u'stab']
[u'polic', u'industri', u'accid', u'victim']
[u'priest', u'convict', u'newstart', u'fraud']
[u'princ', u'name', u'world', u'sexiest', u'vegetarian']
[u'psychologist', u'urg', u'servic', u'profession']
[u'public', u'ask', u'report', u'drug', u'activ']
[u'rabbit', u'tortur', u'accus', u'mental', u'health', u'rule']
[u'ratepay', u'warn', u'wast', u'manag', u'cost']
[u'inquiri', u'hear', u'ambul', u'employe', u'evid']
[u'remind', u'howard', u'whos', u'boss', u'sheehan', u'urg']
[u'reput', u'count', u'littl', u'hiddink']
[u'rescu', u'highlight', u'need', u'boat', u'safeti']
[u'research', u'trustworthi', u'australian', u'survey']
[u'resurg', u'economi', u'reliant', u'commod', u'boom', u'oecd']
[u'richard', u'roll']
[u'riddel', u'recal', u'smith', u'cold']
[u'robot', u'milk', u'cow', u'farmer', u'reap', u'benefit']
[u'roma', u'saleyard', u'replac', u'stock', u'equip']
[u'rove', u'mcmanus', u'gabba', u'challeng']
[u'school', u'accus', u'law', u'teacher']
[u'scientist', u'blow', u'blowfli', u'resist']
[u'serbia', u'montenegro', u'play', u'world']
[u'share', u'market', u'continu', u'downward', u'trend']
[u'share', u'market', u'fall', u'correct', u'costello', u'say']
[u'shark', u'sack', u'latu', u'alleg', u'assault']
[u'shire', u'tell', u'review', u'bulli', u'code']
[u'shout', u'match', u'end', u'senat', u'estim', u'committe']
[u'singapor', u'name', u'outfit']
[u'appear', u'court', u'town', u'camp', u'murder']
[u'skipperless', u'yacht', u'surviv', u'solo', u'adventur']
[u'slow', u'go', u'road', u'reconstruct']
[u'slow', u'progress', u'princ', u'highway', u'upgrad']
[u'soldier', u'kill', u'timor', u'battl']
[u'step', u'forward', u'pacif', u'highway', u'upgrad']
[u'strong', u'show', u'snow', u'expo']
[u'studi', u'consid', u'wine', u'industri', u'futur']
[u'suspect', u'illeg', u'fisher', u'take', u'detent']
[u'sven', u'buoy', u'owen']
[u'tamar', u'propos', u'reject']
[u'premier', u'defend', u'beaconsfield', u'inquiri']
[u'taxi', u'director', u'clarifi', u'castlemain', u'action']
[u'teenag', u'charg', u'sexual', u'assault']
[u'teen', u'charg', u'grievous', u'bodili', u'harm']
[u'teen', u'face', u'court', u'accus', u'road', u'rage', u'attack']
[u'teen', u'plead', u'guilti', u'repeat', u'rape']
[u'tendulkar', u'unfit', u'windi', u'test']
[u'thai', u'make', u'comeback', u'step', u'asid', u'amid']
[u'timelin', u'need', u'beaconsfield', u'inquiri']
[u'titan', u'pick', u'leed', u'mather']
[u'today', u'tonight', u'fin', u'name', u'alleg', u'rape', u'victim']
[u'tool', u'near', u'plane', u'crash', u'relev', u'bureau']
[u'tornado', u'rip', u'southern', u'perth']
[u'tougher', u'abalon', u'limit', u'moot']
[u'town', u'farewel', u'factori', u'blast', u'victim']
[u'trial', u'come', u'rockhampton', u'effort', u'curb']
[u'tunnel', u'pollut', u'report', u'take', u'context']
[u'court', u'custom', u'ecstasi']
[u'kill', u'princ', u'highway', u'collis']
[u'union', u'air', u'law', u'safeti', u'concern']
[u'union', u'seek', u'job', u'yakka', u'worker']
[u'blame', u'taliban', u'civilian', u'death']
[u'utai', u'out', u'week']
[u'vandenberg', u'out', u'lose', u'appeal']
[u'vandenberg', u'out', u'week']
[u'vandenberg', u'fight', u'strike', u'charg']
[u'vet', u'braham', u'fertil', u'research', u'honour']
[u'virus', u'greater', u'problem', u'hack', u'report']
[u'visit', u'minist', u'urg', u'address', u'cost', u'shift']
[u'wadey', u'communiti', u'call', u'evacu']
[u'wallac', u'shrug', u'sheedi', u'gibe']
[u'guus', u'say', u'viduka']
[u'wheat', u'futur', u'near', u'time', u'high']
[u'wildlif', u'offic', u'face', u'whale', u'rescu', u'danger']
[u'wildlif', u'offic', u'metr', u'croc', u'katherin']
[u'world', u'back', u'lippi']
[u'worsen', u'violenc', u'forc', u'wadey', u'evacu']
[u'fear', u'dead', u'thailand', u'flood']
[u'hospit', u'bed']
[u'abetz', u'urg', u'cooper', u'illeg', u'fish', u'fight']
[u'affect', u'landhold', u'compo', u'assur']
[u'licenc', u'chang', u'expect', u'boost']
[u'airport', u'track', u'record', u'passeng', u'number']
[u'clear', u'give', u'dump']
[u'amnesti', u'condemn', u'terror', u'doublespeak']
[u'aunt', u'give', u'evid', u'babi', u'inquest']
[u'aussi', u'surfer', u'revel', u'fiji']
[u'aust', u'await', u'timor', u'request']
[u'australian', u'wellb', u'improv']
[u'australia', u'place', u'deal', u'bird']
[u'aust', u'send', u'troop', u'timor']
[u'aust', u'troop', u'readi', u'timor', u'deploy']
[u'awar', u'aim', u'curb', u'indigen', u'alcohol', u'abus']
[u'baghdad', u'blast', u'kill']
[u'ballina', u'council', u'move', u'closer', u'fluorid']
[u'bash', u'victim', u'remain', u'hospit']
[u'beazley', u'rule', u'nuclear', u'power', u'plant']
[u'beazley', u'shin', u'spotlight', u'miss', u'penalti', u'rat']
[u'beazley', u'want', u'nuclear', u'sit', u'list']
[u'benefit', u'see', u'psychologist', u'referr', u'scheme']
[u'discuss', u'rail', u'network', u'share']
[u'biki', u'charg', u'nightclub', u'violenc']
[u'blue', u'confid', u'finch', u'perform']
[u'blue', u'play', u'joey']
[u'brisban', u'bouncer', u'bail', u'applic', u'adjourn']
[u'brough', u'call', u'customari', u'defenc']
[u'brough', u'welcom', u'sentenc', u'mistak', u'admiss']
[u'brumbi', u'budget', u'drought', u'offic', u'fund']
[u'burni', u'long']
[u'bush', u'welcom', u'west', u'bank', u'plan']
[u'land', u'communiti', u'constabl', u'posit']
[u'campbel', u'seek', u'anti', u'whale', u'support']
[u'cana', u'dope', u'reduc']
[u'await', u'approv', u'western', u'mineralis', u'plan']
[u'chines', u'illeg', u'fish', u'fear', u'dismiss']
[u'closer']
[u'closer']
[u'club', u'meet', u'secur', u'issu']
[u'cluster', u'indonesian', u'bird', u'death', u'concern']
[u'cole', u'inquiri', u'asset', u'sale', u'profit']
[u'commod', u'rise', u'boost']
[u'connolli', u'take', u'charg']
[u'contain', u'brown', u'connolli']
[u'council', u'clear', u'apart', u'plan']
[u'council', u'consid', u'wast', u'chang']
[u'council', u'criticis', u'coal', u'creek', u'park', u'fund']
[u'council', u'reject', u'shop', u'centr', u'resciss', u'motion']
[u'council', u'road', u'safeti', u'scheme', u'win', u'recognit']
[u'council', u'take', u'email', u'precaut']
[u'council', u'want', u'equal', u'treatment', u'commonwealth']
[u'customari', u'spark', u'fieri', u'debat']
[u'develop', u'win', u'court', u'appeal', u'build', u'senior']
[u'devil', u'diseas', u'blame', u'defect', u'gene']
[u'dont', u'diminish', u'health', u'fund', u'opposit', u'urg']
[u'doubl', u'murder', u'probe', u'lead', u'polic', u'interst']
[u'doubt', u'cast', u'nuclear', u'power', u'debat']
[u'dozen', u'kill', u'thai', u'flood']
[u'drive', u'shoot', u'trigger', u'polic', u'hunt']
[u'drug', u'support', u'group', u'back', u'limit', u'chrome', u'trial']
[u'review', u'wind', u'farm', u'plan', u'panel', u'report']
[u'durack', u'auction', u'perth']
[u'east', u'timor', u'seek', u'assist']
[u'east', u'timor', u'seek', u'help']
[u'arrest', u'anti', u'terror', u'raid']
[u'engin', u'firm', u'turn', u'chines', u'labour']
[u'english', u'polic', u'anti', u'terror', u'arrest']
[u'environ', u'calm', u'merger', u'bring', u'mix', u'respons']
[u'timor', u'consid', u'aust', u'militari', u'assist', u'offer']
[u'timor', u'consid', u'help']
[u'failur', u'option', u'german', u'book', u'room']
[u'famili', u'support', u'worker', u'struggl', u'north']
[u'farmer', u'welcom', u'transport', u'subsidi']
[u'farm', u'land', u'flood', u'snowi', u'mouth', u'silt', u'close']
[u'fatal', u'truck', u'crash', u'block', u'highway']
[u'fear', u'council', u'delay', u'saleyard', u'rule']
[u'feder', u'govt', u'add', u'meander']
[u'finch', u'stay', u'cool', u'origin']
[u'finch', u'hero', u'blue', u'thriller']
[u'fitzroy', u'river', u'water', u'auction', u'set', u'local', u'price']
[u'food', u'label', u'ridicul', u'heffernan']
[u'accc', u'boss', u'work', u'smartcard', u'project']
[u'fund', u'urg', u'platypus', u'fungus', u'studi']
[u'fund', u'boost', u'bowen', u'power', u'suppli']
[u'shock', u'wiluna', u'school']
[u'govt', u'accus', u'hand', u'respons']
[u'govt', u'push', u'ahead', u'snowi', u'hydro', u'sale']
[u'govt', u'tackl', u'bing', u'drink']
[u'govt', u'staff', u'flee', u'east', u'timor']
[u'govt', u'fine', u'parent', u'truant', u'student']
[u'govt', u'scrap', u'hear']
[u'govt', u'urg', u'includ', u'water', u'pipelin', u'fund']
[u'greek', u'turkish', u'plan', u'collid', u'disput', u'airspac']
[u'hawk', u'launch', u'vandenberg', u'appeal']
[u'health', u'group', u'predict', u'hospit', u'turn', u'away']
[u'heroin', u'user', u'sentenc', u'abscond']
[u'howard', u'beazley', u'argu', u'nuclear', u'power']
[u'hundr', u'invit', u'canberra', u'beaconsfield']
[u'hungarian', u'activist', u'poster']
[u'immigr', u'investig', u'torr', u'strait', u'arriv']
[u'immigr', u'polici', u'violat', u'convent', u'amnesti']
[u'india', u'includ', u'raina', u'windi', u'seri']
[u'inmat', u'quadripleg', u'prison', u'accid']
[u'inquiri', u'damag', u'intern', u'reput']
[u'iraq', u'violenc', u'kill', u'month']
[u'irish', u'snub', u'howard', u'parliament', u'address']
[u'irish', u'boycott', u'howard', u'speech']
[u'law', u'forc', u'cost', u'legal', u'battl', u'union']
[u'irrig', u'infrastructur', u'fund', u'target', u'robinval']
[u'japan', u'china', u'meet', u'thaw', u'relat']
[u'cut', u'kraft', u'food']
[u'judg', u'warn', u'distort', u'customari', u'debat']
[u'landhold', u'plan', u'worri']
[u'landhold', u'lose', u'right', u'appeal', u'pulp']
[u'laport', u'quit', u'french']
[u'lilli', u'pest', u'ban']
[u'local', u'artist', u'take', u'prestigi', u'prize']
[u'local', u'reaction', u'posit', u'snowi']
[u'lodhi', u'didnt', u'sign', u'violenc', u'wit']
[u'longreach', u'council', u'screen', u'cinema', u'help']
[u'lower', u'bulk', u'bill', u'rate', u'pressur', u'hospit']
[u'lure', u'warm', u'see', u'crime', u'heat']
[u'lygon', u'trader', u'fight', u'park', u'meter', u'plan']
[u'prison', u'fall', u'rehab', u'crack', u'report']
[u'maroon', u'deep', u'troubl', u'break']
[u'mayor', u'call', u'nuclear', u'power', u'debat']
[u'mayor', u'criticis', u'ambul', u'respons', u'time']
[u'mayor', u'say', u'shop', u'plan', u'meet', u'unnecessari']
[u'mcgee', u'brother', u'plead', u'guilti']
[u'melbourn', u'bid', u'homeless', u'world']
[u'overcom', u'fume']
[u'firm', u'urg', u'engag', u'communiti']
[u'minist', u'play', u'nuclear', u'power', u'specul']
[u'late', u'night', u'staff', u'seek', u'danger', u'rail']
[u'mother', u'want', u'better', u'road', u'safeti', u'school']
[u'motorcyclist', u'polic', u'chase', u'reach']
[u'moussaoui', u'involv', u'sept', u'lade']
[u'back', u'tougher', u'stanc', u'school', u'zone', u'drive']
[u'navi', u'ship', u'pois', u'timor', u'mission']
[u'netbal', u'chief', u'leav', u'sport', u'good', u'shape']
[u'ambul', u'roll']
[u'gold', u'offici', u'open']
[u'law', u'blame', u'unexpect', u'sack']
[u'websit', u'promot', u'south', u'burnett']
[u'drought', u'break', u'rain', u'forecast']
[u'rain', u'forc', u'crop', u'sow', u'delay']
[u'say', u'everest', u'legend', u'hillari']
[u'opposit', u'critic', u'cross', u'plan']
[u'state', u'school', u'soft', u'drink']
[u'soft', u'drink', u'school']
[u'appoint', u'cosgrov', u'style', u'wadey', u'boss']
[u'introduc', u'season', u'worker', u'program', u'pacif']
[u'offici', u'quiz', u'embarrass', u'solomon', u'email']
[u'olmert', u'bush', u'discuss', u'middl', u'east', u'peac']
[u'ombudsman', u'probe', u'complaint', u'miriam', u'vale']
[u'origin', u'hero', u'brett', u'finch', u'willi', u'mason']
[u'origin', u'sydney']
[u'papuan', u'asylum', u'seeker', u'appeal', u'visa']
[u'papuan', u'refuge', u'miss', u'protect', u'visa']
[u'papuan', u'visa', u'request', u'reject']
[u'parti', u'trade', u'barb', u'indigen', u'abus']
[u'passeng', u'figur', u'dont', u'faze', u'airport']
[u'pilot', u'kill', u'collis', u'aegean']
[u'plan', u'approv', u'grant', u'newman', u'villag']
[u'flag', u'asylum', u'seeker', u'issu']
[u'polic', u'hunt', u'driver', u'offic', u'knock']
[u'polic', u'hunt', u'suspect', u'illeg', u'worker', u'victoria']
[u'polic', u'prosecutor', u'drop', u'case', u'union', u'offici']
[u'polic', u'recaptur', u'suspect', u'illeg', u'worker']
[u'polic', u'recov', u'steal', u'good']
[u'polic', u'investig', u'rivskil', u'fraud', u'claim']
[u'polic', u'urg', u'attend', u'north', u'race', u'relat']
[u'premier', u'line', u'reject', u'nuclear', u'plant']
[u'govt', u'cardwel', u'rang', u'delay']
[u'name', u'earl', u'multicultur', u'champion']
[u'rainforest', u'fruit', u'produc', u'take', u'nation']
[u'boss', u'issu', u'explain']
[u'remot', u'educ', u'chang', u'excit']
[u'resid', u'want', u'brake', u'museum']
[u'retir', u'villag', u'expans', u'moot']
[u'doubl', u'profit']
[u'rise', u'hous', u'price', u'delay', u'home', u'buyer']
[u'rock', u'climber', u'die', u'fall']
[u'roll', u'stone', u'postpon', u'tour']
[u'rossi', u'spurn', u'stay', u'motogp']
[u'comedian', u'laugh', u'edinburgh']
[u'saint', u'march', u'york', u'park']
[u'saint', u'march', u'york', u'park']
[u'leav', u'school', u'chang', u'face', u'critic']
[u'scapegoat', u'wont', u'thompson']
[u'scientist', u'battl', u'save', u'hairi', u'nose', u'wombat']
[u'score', u'dead', u'latest', u'afghan', u'fight']
[u'sheedi', u'reveal', u'rama', u'fear']
[u'shepherdson', u'keen', u'cement', u'wallabi', u'spot']
[u'shire', u'reveal', u'hous', u'plan']
[u'shoulder', u'troubl', u'roddick', u'ahead', u'french']
[u'snowi', u'sale', u'legal']
[u'snowi', u'sale', u'plan', u'ahead', u'costello']
[u'socceroo', u'close', u'door']
[u'socceroo', u'greek', u'frustrat', u'guus']
[u'solomon', u'minist', u'deni', u'bail']
[u'state', u'origin', u'highlight']
[u'stefaniak', u'fine', u'mobil', u'phone']
[u'strong', u'econom', u'growth', u'forecast']
[u'structur', u'chang', u'seek', u'coolgardi', u'shire']
[u'support', u'scheme', u'urg', u'petrol', u'sniff', u'fight']
[u'suspect', u'illeg', u'immigr', u'detain']
[u'sydney', u'butcher', u'asio', u'charg', u'drop']
[u'sydney', u'water', u'util', u'win', u'intern', u'prize']
[u'confer', u'tell', u'ident', u'theft', u'rise']
[u'teen', u'charg', u'shop', u'blaze']
[u'teen', u'murder', u'convict', u'overturn']
[u'tour', u'shed', u'light', u'timber', u'process', u'precinct']
[u'troubl', u'east', u'timor', u'ask', u'help']
[u'meningoccoc', u'case', u'diagnos']
[u'uncl', u'tobi', u'worker', u'face', u'uncertain', u'futur']
[u'unit', u'sack', u'rooney', u'doctor']
[u'slump', u'warm', u'defeat']
[u'dispel', u'goldfish', u'second', u'memori', u'myth']
[u'vet', u'push', u'foreign', u'abattoir', u'audit']
[u'budget', u'boost', u'polic', u'forens']
[u'suspend', u'sentenc', u'crime']
[u'vidmar', u'undergo', u'heart', u'surgeri']
[u'lift', u'wheat', u'import']
[u'wallabi', u'forward', u'orient', u'sharp']
[u'pump', u'resourc', u'daili']
[u'washington', u'sniper', u'accomplic', u'take', u'stand']
[u'westpoint', u'founder', u'submit', u'food']
[u'wont', u'copi', u'richmond', u'say', u'pagan']
[u'wheat', u'export', u'author', u'farmer']
[u'wimmera', u'river', u'surviv', u'drought']
[u'woolworth', u'name']
[u'ymca', u'closur', u'leav', u'squash', u'player', u'limbo']
[u'year', u'old', u'heart', u'surgeri', u'cancel', u'time']
[u'abba', u'lay', u'referendum', u'ultimatum']
[u'abbott', u'label', u'labor', u'snivel', u'grub']
[u'aborigin', u'violenc', u'increas', u'myth', u'confer', u'tell']
[u'accessori', u'gruesom', u'murder', u'suspend']
[u'accus', u'time', u'terror']
[u'cold', u'night', u'queensland']
[u'govt', u'rule', u'junk', u'food', u'canteen']
[u'alonso', u'fastest', u'monaco', u'open', u'practic']
[u'asic', u'wind', u'fascial', u'futur']
[u'kill', u'fresh', u'mogadishu', u'fight']
[u'aussi', u'flee', u'timor', u'unrest']
[u'aussi', u'strang', u'round', u'leader', u'philippin']
[u'aust', u'aid', u'lankan', u'clearanc']
[u'aust', u'everest', u'climber', u'defend', u'team', u'decis']
[u'aust', u'forc', u'secur', u'dili', u'airport']
[u'aust', u'troop', u'arriv', u'dili']
[u'aust', u'troop', u'prepar', u'dili', u'violenc']
[u'baillieu', u'tight', u'lip', u'opinion', u'poll']
[u'beaconsfield', u'job']
[u'beatti', u'defend', u'mental', u'killer']
[u'beckham', u'seek', u'world', u'cure', u'madrid', u'blue']
[u'averag', u'temperatur', u'continu']
[u'bench', u'role', u'loom', u'kewel']
[u'hunter', u'oliv', u'crop', u'predict']
[u'biolog', u'clock', u'tick', u'studi']
[u'blackmail', u'rise', u'report']
[u'blake', u'sign', u'red']
[u'briberi', u'charg', u'launceston', u'mayor', u'drop']
[u'bridg', u'build', u'begin', u'maroochi', u'river']
[u'british', u'dog', u'better', u'owner']
[u'bronco', u'count', u'wound']
[u'brough', u'martin', u'odd', u'indigen', u'talk']
[u'brough', u'team', u'plan', u'anti', u'violenc', u'strategi']
[u'budget', u'includ', u'prevent', u'fund']
[u'busi', u'chamber', u'criticis', u'griffith', u'council']
[u'busi', u'hear', u'backflip', u'embarrass']
[u'higher', u'prioriti', u'assault', u'health']
[u'indigen', u'hous', u'fund']
[u'shop', u'complex', u'chang']
[u'camp', u'dili', u'refuge']
[u'carpent', u'stand', u'south', u'west', u'budget', u'spend']
[u'workshop', u'build']
[u'chocol', u'boost', u'brain', u'power']
[u'claim', u'mari', u'environ', u'plan', u'wast']
[u'clark', u'say', u'coast', u'revis']
[u'closer']
[u'closer']
[u'cloth', u'sale', u'boost', u'david', u'joness', u'revenu']
[u'happi', u'pilbara', u'rail', u'process']
[u'collect', u'plan', u'wine', u'grape', u'grower']
[u'commando', u'compani', u'rout', u'east', u'timor']
[u'communiti', u'enjoy', u'lower', u'petrol', u'sniff', u'rate']
[u'communiti', u'support', u'need', u'qanta', u'deal']
[u'compani', u'push', u'ahead', u'power', u'upgrad']
[u'compost', u'supplier', u'demis', u'creat', u'mushroom', u'industri']
[u'concern', u'protest', u'wellb']
[u'controversi', u'greet', u'everest', u'climber']
[u'council', u'back', u'ship', u'sink', u'dive', u'plan']
[u'council', u'deni', u'exploit', u'law']
[u'councillor', u'attack', u'water', u'upgrad', u'approv']
[u'councillor', u'gag', u'bottl', u'recycl', u'water']
[u'council', u'tell', u'surviv', u'threat']
[u'council', u'sale', u'car', u'public', u'road']
[u'council', u'work', u'integr', u'health', u'care']
[u'crime', u'figur', u'littl', u'comfort', u'resid']
[u'csiro', u'industri', u'creat', u'super', u'salmon']
[u'cyclon', u'larri', u'benefit', u'concert', u'cancel']
[u'cyclon', u'larri', u'victim', u'receiv', u'offset']
[u'delay', u'refug', u'handov']
[u'develop', u'frustrat', u'plan', u'refus']
[u'dili', u'tens', u'standoff', u'rebel']
[u'dili', u'violenc', u'flare']
[u'law', u'introduc']
[u'door', u'shut', u'castlemain', u'taxi', u'servic']
[u'doubt', u'cast', u'govt', u'truanci', u'plan']
[u'downer', u'congratul', u'fijian', u'elect']
[u'electr', u'wast', u'trial', u'work']
[u'energi', u'levi', u'custom']
[u'england', u'ignor', u'tour', u'lesson', u'say']
[u'environment', u'scientist', u'flag', u'impact', u'human']
[u'timor', u'rebel', u'leader', u'welcom', u'foreign', u'troop']
[u'timor', u'rebel', u'train', u'australia', u'downer']
[u'eurobodalla', u'beach', u'pass', u'water', u'qualiti', u'test']
[u'export', u'middl', u'eastern', u'market']
[u'extra', u'fund', u'help', u'carer']
[u'famili', u'prais', u'scott', u'origin', u'perform']
[u'famili', u'support', u'worker', u'seek', u'fund', u'increas']
[u'farmer', u'hope', u'rain']
[u'fatal', u'crash', u'suspend', u'train', u'servic']
[u'fear', u'hold', u'trucki', u'level', u'cross', u'crash']
[u'feder', u'govt', u'accus', u'sit', u'region', u'fund']
[u'fellowship', u'hous', u'open', u'albani']
[u'finch', u'expect', u'gower', u'origin']
[u'finch', u'goal', u'give', u'blue', u'origin']
[u'control', u'turkish', u'airport']
[u'forest', u'trial', u'yield', u'posit', u'result']
[u'gang', u'block', u'dili', u'street']
[u'gasnier', u'commit', u'leagu']
[u'gasnier', u'pois', u'announc', u'decis']
[u'gold', u'miner', u'call', u'central', u'australian']
[u'goulburn', u'drought', u'forc', u'sport']
[u'goulburn', u'rail', u'workshop', u'privatis']
[u'govern', u'cautious', u'subiaco', u'redevelop']
[u'govern', u'slam', u'indigen', u'polici']
[u'govt', u'consid', u'wiluna', u'school', u'reloc']
[u'govt', u'reject', u'offend', u'prison', u'plan']
[u'govt', u'say', u'townsvill', u'race', u'cost']
[u'govt', u'tell', u'prepar', u'loss', u'industri']
[u'govt', u'threaten', u'halt', u'fund']
[u'govt', u'urg', u'heed', u'church', u'leader', u'indigen', u'call']
[u'govt', u'urg', u'improv', u'appeal', u'mine', u'town']
[u'green', u'group', u'target', u'log', u'loophol']
[u'group', u'call', u'inquiri', u'power', u'link']
[u'guid', u'offer', u'help', u'central', u'australian', u'buyer']
[u'gulf', u'shire', u'advertis', u'fish', u'polic']
[u'hard', u'work', u'pay', u'tambo', u'teddi']
[u'hart', u'widow', u'deni', u'miss', u'million']
[u'health', u'depart', u'spend', u'extravag']
[u'health', u'servic', u'chief', u'get', u'vote', u'confid']
[u'hewitt', u'clear', u'doubt', u'remain']
[u'hotel', u'owner', u'defend', u'staff', u'racism', u'claim']
[u'hous', u'price', u'fall', u'illawarra']
[u'hous', u'block', u'alloc', u'today']
[u'howard', u'head', u'globe', u'trot', u'list']
[u'howard', u'speed', u'timor', u'troop', u'deploy']
[u'hunter', u'jail']
[u'australia', u'say', u'timor', u'rebel', u'leader']
[u'independ', u'call', u'class', u'action', u'snowi', u'hydro']
[u'independ', u'call', u'elect', u'date', u'chang']
[u'industri', u'welcom', u'crackdown', u'illeg', u'fish']
[u'injuri', u'toll', u'port']
[u'debat', u'flare', u'question', u'time']
[u'ivanho', u'host', u'water', u'meet']
[u'jervi', u'nuclear', u'mischief', u'reject']
[u'kalac', u'tip', u'start']
[u'kalac', u'play', u'ahead', u'schwarzer']
[u'keelti', u'meet', u'cole', u'kickback']
[u'kingston', u'mayor', u'catch', u'guard', u'nuclear']
[u'kraft', u'cream', u'chees', u'factori', u'move']
[u'local', u'govt', u'urg', u'infrastructur', u'fund', u'hike']
[u'macneil', u'resign', u'wheat', u'fight']
[u'makyb', u'diva', u'help', u'chariti']
[u'appear', u'court', u'sydney', u'teen', u'bash']
[u'criticis', u'handl', u'discoveri']
[u'jail', u'partner', u'babi', u'bash']
[u'matilda', u'beat', u'mexico', u'curtain', u'raiser']
[u'mayor', u'downplay', u'specul', u'hospit']
[u'mayor', u'say', u'plan', u'ignor', u'local', u'farm', u'water']
[u'mayor', u'unhappi', u'fli', u'surgeon', u'decis']
[u'mayor', u'beat', u'water', u'pipelin']
[u'mcewen', u'reject', u'chicken', u'plan']
[u'mcmanus', u'return', u'lion']
[u'meander', u'farmer', u'welcom', u'fund']
[u'student', u'expel', u'secret', u'tape']
[u'meet', u'focus', u'region', u'health', u'servic']
[u'metal', u'forc', u'market']
[u'minist', u'defend', u'teacher', u'condit']
[u'minist', u'put', u'focus', u'cape', u'york', u'tourism']
[u'minist', u'urg', u'hospit', u'junk', u'food', u'sale']
[u'miss', u'indigen', u'money', u'worthi', u'royal', u'commiss']
[u'monash', u'westgat', u'lane', u'deal', u'investig']
[u'graduat', u'tackl', u'wild', u'woe']
[u'job', u'treatment', u'firm', u'expand']
[u'mother', u'jail', u'attempt', u'babi', u'life']
[u'stop', u'snowi', u'sale']
[u'murrurundi', u'water', u'crisi', u'deepen']
[u'mutant', u'mice', u'challeng', u'hered', u'law']
[u'nation', u'galleri', u'seek', u'second', u'opinion', u'cancer']
[u'nation', u'warn', u'region', u'pool', u'closur']
[u'nelson', u'throw', u'support', u'defenc', u'chief']
[u'anthem', u'choos', u'alic', u'spring']
[u'gold', u'open', u'near', u'menzi']
[u'newspap', u'apologis', u'iran', u'untru', u'stori']
[u'nomin', u'open', u'elect']
[u'north', u'communiti', u'urg', u'attend', u'polic', u'meet']
[u'nurs', u'redund', u'victoria']
[u'polic', u'seiz', u'drug', u'worth']
[u'offici', u'head', u'timor', u'troop', u'talk']
[u'olmert', u'warn', u'congress', u'iranian', u'threat']
[u'perth', u'hous', u'price', u'skyrocket']
[u'pickl', u'fish', u'fillet', u'drug', u'smuggl', u'court']
[u'vow', u'sell', u'snowi', u'hydro']
[u'poki', u'approv', u'kerang']
[u'polic', u'prepar', u'crackdown', u'knight', u'match']
[u'polic', u'probe', u'school', u'vandal']
[u'polic', u'retriev', u'rock', u'climb', u'policeman', u'bodi']
[u'polic', u'union', u'oppos', u'militari', u'presenc']
[u'premier', u'public', u'sector', u'cut']
[u'privat', u'facil', u'avail', u'public', u'cancer']
[u'public', u'educ', u'terror', u'law']
[u'public', u'servant', u'protest', u'propos', u'super', u'chang']
[u'public', u'servic', u'cut', u'break', u'promis']
[u'push', u'stop', u'black', u'market', u'moor']
[u'cold', u'snap', u'continu']
[u'queen', u'birthday', u'holiday', u'coincid', u'fenaclng']
[u'quinn', u'challeng', u'cruis', u'ship', u'termin', u'stanc']
[u'research', u'wari', u'drug', u'drive', u'crackdown']
[u'research', u'highlight', u'flood', u'impact', u'dolphin']
[u'resid', u'receiv', u'rebat', u'rainwat', u'tank']
[u'restaurateur', u'plead', u'guilti', u'food', u'poison']
[u'retail', u'group', u'support', u'cent', u'hour', u'rise']
[u'rmit', u'mobil', u'phone', u'tower', u'give', u'clear']
[u'oppos', u'sale', u'snowi', u'hydro', u'icon']
[u'scam', u'letter', u'urg', u'worker', u'quit', u'union']
[u'scientif', u'whale', u'unsustain', u'report']
[u'serial', u'escape', u'jail', u'alleg', u'burglari']
[u'site', u'contamin', u'delay', u'dubbo', u'polic', u'station']
[u'snowi', u'hydro', u'sale', u'deal', u'say', u'howard']
[u'soccer', u'fan', u'descend']
[u'socceroo', u'greec', u'half', u'time']
[u'socceroo', u'hang']
[u'solomon', u'happi', u'troop', u'withdraw']
[u'specul', u'sale', u'nation', u'food']
[u'spirit', u'tasmania', u'owner', u'threaten', u'sell']
[u'lanka', u'england']
[u'state', u'minist', u'disappoint', u'comment']
[u'studi', u'consid', u'ethanol', u'product', u'feasibl']
[u'sunshin', u'coast', u'politician', u'oppos', u'nuclear', u'power']
[u'superannu', u'scheme', u'promot', u'jail']
[u'suspicion', u'women', u'cloth']
[u'sydney', u'shun', u'hous', u'price', u'trend']
[u'taliban', u'attack', u'afghanistan', u'like', u'rise']
[u'telstra', u'aust', u'post', u'deni', u'union', u'scam', u'involv']
[u'telstra', u'say', u'opposit', u'broadband', u'claim', u'prematur']
[u'thorp', u'european', u'meet']
[u'town', u'bypass', u'support', u'reinforc']
[u'troop', u'arriv', u'east', u'timor']
[u'tuna', u'hatcheri', u'build', u'eyr', u'peninsula']
[u'uncl', u'tobi', u'sale', u'creat', u'fear', u'worker']
[u'uneasi', u'truce', u'coca', u'cola', u'water', u'battl']
[u'union', u'warn', u'kraft', u'cut']
[u'open', u'timor', u'refuge', u'camp']
[u'prepar', u'dili', u'refuge']
[u'urg', u'timor', u'violenc']
[u'vandenberg', u'lovett', u'lose', u'appeal']
[u'govt', u'consid', u'renew', u'energi', u'scheme']
[u'blame', u'bar', u'closur']
[u'wadey', u'consid', u'sue', u'discrimin']
[u'water', u'associ', u'highlight', u'desal', u'plant', u'green']
[u'workshop', u'focus', u'antisoci', u'behaviour']
[u'youth', u'leader', u'back', u'focus', u'indigen']
[u'plan', u'grandstand']
[u'abba', u'call', u'resolut', u'deadlin']
[u'abbott', u'question', u'oncolog', u'unit', u'cost']
[u'aborigin', u'infant', u'death', u'alarm', u'report']
[u'alpha', u'welcom', u'doctor']
[u'chief', u'highlight', u'indigen', u'worri']
[u'american', u'smith', u'surpris', u'high', u'memphi']
[u'ankl', u'scare', u'ballack', u'ahead', u'world']
[u'annan', u'urg', u'burma', u'releas']
[u'annerley', u'sieg', u'end', u'peac']
[u'anti', u'bulli', u'report', u'releas']
[u'anti', u'porn', u'group', u'await', u'brothel', u'decis']
[u'anti', u'union', u'campaign', u'work', u'disgruntl']
[u'arm', u'gang', u'main', u'threat', u'secur', u'iraqi']
[u'aust', u'defeat', u'greec', u'soccer', u'friend']
[u'aust', u'everest', u'climber', u'aliv']
[u'aust', u'troop', u'deploy', u'timor', u'acceler']
[u'aust', u'troop', u'patrol', u'dili', u'street']
[u'award', u'recognis', u'skin', u'cancer', u'research', u'effort']
[u'baillieu', u'happi', u'listen', u'rail', u'return', u'appeal']
[u'barn', u'pick', u'red', u'bronco']
[u'beaconsfield', u'disast', u'expect', u'deter', u'mine']
[u'beaconsfield', u'miner', u'unhappi', u'inspector']
[u'beatti', u'open', u'down', u'plant']
[u'beef', u'giant', u'pay', u'station']
[u'beslan', u'hostag', u'taker', u'jail', u'life']
[u'secur', u'iron', u'price', u'rise']
[u'crowd', u'tip', u'welcom', u'hedland', u'night']
[u'bourk', u'public', u'invit', u'sign', u'sorri', u'book']
[u'brack', u'appoint', u'auditor', u'general']
[u'brough', u'reject', u'call', u'indigen', u'communiti']
[u'bulldog', u'outclass', u'magpi']
[u'bulldog', u'outclass', u'pie']
[u'bush', u'accept', u'blame', u'iraq', u'mistak']
[u'bush', u'blair', u'seek', u'support', u'iraqi', u'govern']
[u'cafu', u'carlo', u'label', u'brazil', u'public']
[u'independ', u'commiss', u'probe', u'local']
[u'wage', u'increas', u'phase']
[u'calm', u'return', u'dili']
[u'calm', u'return', u'east', u'timores', u'capit']
[u'canberra', u'fare', u'rise']
[u'cann', u'applaud', u'young', u'australian', u'director']
[u'crash', u'victim', u'surviv', u'night', u'wreckag']
[u'catchment', u'plan', u'threaten', u'pine', u'industri']
[u'chao', u'monaco', u'practic']
[u'child', u'abus', u'recent', u'develop', u'aborigin']
[u'chimp', u'reveal', u'aid', u'origin', u'research']
[u'china', u'aust', u'talk', u'make', u'progress']
[u'chines', u'spend', u'surg']
[u'closer']
[u'closer']
[u'closer']
[u'concern', u'indonesian', u'bird', u'death']
[u'confus', u'aust', u'climber', u'fate', u'everest']
[u'confus', u'surround', u'iraqi', u'wheat', u'deal']
[u'coron', u'find', u'wit', u'die', u'heroin', u'overdos']
[u'council', u'hand', u'fluorid', u'decis', u'health', u'dept']
[u'council', u'protest', u'phone', u'loss']
[u'council', u'crack', u'fake', u'road', u'crash', u'claim']
[u'council', u'wont', u'alter', u'crime', u'scene']
[u'cousin', u'deem', u'play']
[u'cousin', u'sign', u'eagl']
[u'crew', u'continu', u'clear', u'train', u'truck', u'collis', u'site']
[u'cult', u'leader', u'stand', u'trial', u'charg']
[u'cycl', u'sponsor', u'pull', u'plug', u'dope', u'probe', u'widen']
[u'dili', u'calmer', u'danger', u'houston', u'say']
[u'dili', u'evacue', u'arriv', u'darwin']
[u'district', u'attempt', u'attract', u'doctor']
[u'stock', u'theft', u'investig']
[u'donald', u'claim', u'wentworth', u'cours', u'tame']
[u'downer', u'expect', u'enthusiast', u'respons', u'aust', u'troop']
[u'draft', u'sippi', u'down', u'plan', u'see', u'vital', u'manag']
[u'dragon', u'turn', u'tabl', u'buri', u'knight']
[u'birkenhead', u'wont', u'impact', u'diesel', u'suppli', u'mobil']
[u'dubbo', u'lose', u'councillor', u'cancer']
[u'eagl', u'fine']
[u'effort', u'continu', u'trucki', u'bodi']
[u'enron', u'boss', u'guilti']
[u'timor', u'confirm', u'famili', u'kill', u'violenc']
[u'timor', u'violenc', u'stop', u'ballarat', u'deleg']
[u'etroop', u'open']
[u'worker', u'stand', u'trial', u'fraud', u'charg']
[u'farnham', u'step', u'cyclon', u'larri', u'benefit', u'concert']
[u'fear', u'hungri', u'cassowari', u'aggress']
[u'feder', u'govt', u'money', u'antioxid', u'develop']
[u'figur', u'reveal', u'higher', u'teen', u'rate', u'north']
[u'firm', u'plan', u'busi', u'park', u'near', u'airport']
[u'portugues', u'troop', u'head', u'timor', u'week']
[u'flee', u'australian', u'arriv', u'darwin']
[u'food', u'process', u'factori', u'save']
[u'senat', u'wheeldon', u'die']
[u'ganguli', u'aussi']
[u'explor', u'broom', u'port', u'expans']
[u'gasnier', u'confid', u'knight', u'clash']
[u'gladston', u'bait']
[u'gold', u'coast', u'rate', u'rise', u'like', u'year']
[u'govt', u'challeng', u'reveal', u'snowi', u'sale', u'legal', u'advic']
[u'govt', u'deni', u'blame', u'taxi', u'servic', u'closur']
[u'govt', u'help', u'fund', u'goulburn', u'water', u'plan']
[u'govt', u'say', u'heritag', u'list', u'wont', u'delay', u'jetti', u'work']
[u'govt', u'consid', u'gold', u'coast']
[u'govt', u'water', u'scheme', u'fund']
[u'green', u'urg', u'school', u'junk', u'food']
[u'grim', u'winter', u'rain', u'outlook', u'eastern', u'australia']
[u'grow', u'kangaroo', u'forestri', u'industri', u'prompt', u'port']
[u'gulf', u'fisher', u'illeg', u'fish', u'crackdown']
[u'gunfir', u'report', u'near', u'compound', u'dili']
[u'hama', u'withdraw', u'forc', u'gaza', u'street']
[u'hawthorn', u'see', u'flaw', u'tribun', u'process']
[u'hewitt', u'draw', u'nadal', u'earli', u'french', u'open']
[u'highway', u'levi', u'plan', u'worri', u'council']
[u'hous', u'challeng', u'confront', u'cyclon', u'larri']
[u'howard', u'attack', u'east', u'timor', u'govern']
[u'howard', u'urg', u'timor', u'govt', u'control']
[u'hurrican', u'unleash', u'devil', u'henchmen']
[u'immigr', u'defend', u'offshor', u'process']
[u'improv', u'whale', u'protect', u'measur', u'announc']
[u'indigen', u'crisi', u'prompt', u'commiss']
[u'indigen', u'hous', u'shortag', u'hamper', u'order']
[u'indonesian', u'fisher', u'jail', u'trochus', u'shell']
[u'injur', u'socceroo', u'recov']
[u'injuri', u'hamper', u'port', u'ahead', u'essendon', u'clash']
[u'injuri', u'forc', u'world', u'team', u'reshuffl']
[u'invis', u'theori', u'light']
[u'iraqi', u'nation', u'tenni', u'coach', u'player', u'kill']
[u'japan', u'court', u'pacif', u'island', u'state', u'summit']
[u'judg', u'criticis', u'mental', u'health', u'servic']
[u'keeper', u'blow', u'england', u'defeat']
[u'kimberley', u'get', u'justic', u'dept', u'posit']
[u'knight', u'refus', u'carney', u'leav', u'test']
[u'kraft', u'shock', u'union']
[u'lippi', u'investig', u'soccer', u'scandal']
[u'local', u'govt', u'group', u'look', u'forward', u'council', u'financ']
[u'magpi', u'confid', u'clash', u'bulldog']
[u'major', u'verdict', u'come', u'forc']
[u'jail', u'kidnap', u'tortur', u'teenag']
[u'face', u'court', u'accus', u'arm', u'robberi']
[u'market', u'end', u'week', u'high']
[u'mayor', u'highlight', u'mine', u'communiti', u'worri']
[u'mayor', u'look', u'job', u'boost', u'privatis', u'rail']
[u'mayor', u'beat', u'biggenden', u'shire']
[u'miner', u'chamber', u'elect', u'chief']
[u'miner', u'expand', u'precious', u'metal', u'search']
[u'minist', u'accus', u'neglect', u'south', u'coast', u'student']
[u'minist', u'downplay', u'ring', u'road', u'critic']
[u'mlas', u'judg', u'face', u'super', u'cut']
[u'charg', u'accus', u'terrorist']
[u'feder', u'fund', u'urg', u'council']
[u'legal', u'protect', u'seek', u'assault']
[u'rainfal', u'need', u'boost', u'stream', u'flow']
[u'cite', u'break', u'hill', u'skill']
[u'nelson', u'challeng', u'harbour', u'bomb']
[u'zealand', u'polic', u'smash', u'drug', u'ring']
[u'night', u'patrol', u'get', u'boost']
[u'go', u'meander', u'say', u'minist']
[u'north', u'back', u'coupl', u'recognit']
[u'earn', u'bird', u'exercis', u'prais']
[u'govt', u'unveil', u'disabl', u'plan']
[u'nuclear', u'power', u'econom', u'viabl', u'ansto']
[u'offshor', u'asylum', u'plan', u'discriminatori', u'unhcr']
[u'offshor', u'process', u'liken', u'wwii', u'jewish', u'refuge']
[u'opposit', u'fear', u'govt', u'reneg', u'offend']
[u'opposit', u'say', u'site', u'expens', u'develop']
[u'origin', u'player', u'bronco']
[u'pesticid', u'blaze', u'investig']
[u'pilbara', u'resid', u'join', u'sorri', u'activ']
[u'plan', u'redevelop', u'increas', u'capac']
[u'plunkett', u'haul', u'inspir', u'england']
[u'defend', u'vote', u'snowi', u'hydro', u'sale']
[u'convinc', u'extra', u'polic', u'wadey']
[u'step', u'assault', u'customari']
[u'polic', u'conduct', u'radio', u'station', u'fraud', u'probe']
[u'policeman', u'clear', u'shoot', u'death']
[u'polic', u'seek', u'wit']
[u'polic', u'support', u'geraldton', u'cctv', u'plan']
[u'port', u'power', u'wanganeen', u'week']
[u'samson', u'move', u'promot', u'tourism']
[u'public', u'quiz', u'bushfir', u'media', u'coverag']
[u'govt', u'pledg', u'dalbi', u'wast', u'water', u'scheme']
[u'origin', u'player', u'bronco']
[u'rebel', u'forc', u'welcom', u'aust', u'troop']
[u'regga', u'legend', u'desmond', u'dekker', u'die']
[u'rehhagel', u'mount', u'pressur', u'greek']
[u'releas', u'insan', u'killer', u'name', u'parliament']
[u'report', u'highlight', u'malle', u'educ', u'disadvantag']
[u'resort', u'servic', u'station', u'sniffabl', u'fuel']
[u'reward', u'offer', u'inform', u'tree', u'vandal']
[u'riverina', u'possibl', u'nuclear', u'wast', u'dump', u'site', u'tripodi']
[u'rooney', u'brace', u'world', u'decis']
[u'rooney', u'rule', u'earli', u'stag', u'world']
[u'farmer', u'group', u'plan', u'shake']
[u'scott', u'spend', u'season', u'sidelin']
[u'shake', u'wool', u'industri']
[u'shellharbour', u'ratepay', u'waterway', u'levi']
[u'shire', u'appeal', u'pipelin', u'rat', u'decis']
[u'snowi', u'sale', u'investig', u'speed']
[u'sorri', u'throw', u'spotlight', u'violenc']
[u'south', u'korea', u'beat', u'bosnia', u'world', u'warm']
[u'spirit', u'aliv', u'outback', u'say']
[u'stanhop', u'say', u'site', u'like', u'nuclear']
[u'steal', u'generat', u'share', u'experi', u'sorri']
[u'sudan', u'allow', u'darfur', u'assess', u'mission']
[u'support', u'air', u'fraud', u'task', u'forc']
[u'sweet', u'skoko', u'goal', u'help', u'socceroo', u'beat', u'greec']
[u'teacher', u'rise', u'bribe', u'ripper', u'say']
[u'terror', u'suspect', u'face', u'charg']
[u'thousand', u'expect', u'roll', u'pumpkin', u'festiv']
[u'torbay', u'talk', u'save', u'ymca']
[u'tourism', u'bodi', u'dark', u'spirit', u'troubl']
[u'tourism', u'fund', u'tripl', u'gold', u'coast', u'campaign']
[u'tribun', u'verdict', u'leav', u'hawk', u'flap']
[u'tripodi', u'say', u'dump', u'list', u'worri', u'break', u'hill']
[u'troop', u'assert', u'presenc', u'dili']
[u'troop', u'pour', u'dili']
[u'troop', u'appropri', u'forc', u'timor']
[u'tuckey', u'urg', u'broker', u'state', u'feder', u'salin', u'deal']
[u'wheel', u'schuey', u'win', u'giro', u'stage']
[u'underdog', u'ghana', u'arriv', u'germani']
[u'unhcr', u'bar', u'papua']
[u'union', u'meet', u'empir', u'rubber', u'financi', u'woe']
[u'union', u'want', u'action', u'save', u'troubl', u'ferri']
[u'union', u'want', u'entitl', u'pay', u'worker']
[u'stock', u'ralli', u'corpor', u'deal']
[u'vandenberg', u'lovett', u'lose', u'appeal']
[u'detect', u'guilti', u'raid', u'drug', u'theft']
[u'farmer', u'urg', u'adopt', u'technolog']
[u'vietnames', u'deleg', u'bowen', u'basin']
[u'view', u'mountain', u'socceroo', u'impress']
[u'virgin', u'stand', u'wheelchair', u'decis']
[u'wadey', u'consid', u'sue', u'neglig']
[u'govt', u'urg', u'build', u'wiluna', u'school']
[u'warm', u'winter', u'averag', u'rain']
[u'wanganeen', u'miss', u'week']
[u'wine', u'ralli', u'hear', u'plan', u'partial', u'compo', u'packag']
[u'worker', u'walk', u'site', u'employe', u'death']
[u'work', u'home', u'rise']
[u'famous', u'husband', u'lennon', u'letter', u'net']
[u'kill', u'somali', u'battl', u'reignit']
[u'indonesian', u'bird', u'death', u'confirm']
[u'dead', u'indonesian', u'quak']
[u'abus', u'payout', u'forc', u'radic', u'chang', u'archbishop']
[u'actu', u'look', u'help', u'asian', u'beer', u'sale', u'girl']
[u'adopt', u'council', u'push', u'perman', u'regist']
[u'anti', u'bulli', u'chang', u'overburden', u'teacher', u'union']
[u'aquif', u'propos', u'generat', u'submiss']
[u'indonesian', u'quak']
[u'aussi', u'strang', u'hold', u'narrow', u'lead', u'manila']
[u'aussi', u'troop', u'secur', u'dili', u'facil']
[u'aust', u'climber', u'aliv', u'everest']
[u'aust', u'soldier', u'begin', u'control', u'east', u'timor', u'violenc']
[u'aust', u'soldier', u'begin', u'take', u'control', u'east', u'timor']
[u'vow', u'minimis', u'beaconsfield', u'cut']
[u'banana', u'price', u'forecast', u'stay', u'high']
[u'bass', u'grass', u'crack', u'drug', u'user']
[u'beslan', u'hostag', u'taker', u'jail', u'life']
[u'bishop', u'condemn', u'unfair', u'dismiss', u'law']
[u'bodi', u'lead', u'murder', u'charg']
[u'bomber', u'season', u'continu']
[u'brisban', u'origin', u'star', u'keen', u'aveng', u'loss']
[u'bronco', u'wild', u'bulldog']
[u'bront', u'consid', u'jane', u'eyr', u'rewrit', u'letter']
[u'brown', u'assist', u'anti', u'campaign']
[u'brown', u'scar', u'debat', u'forestri', u'issu']
[u'budget', u'extend', u'graffiti', u'clean', u'program']
[u'burma', u'extend', u'kyi', u'arrest']
[u'capitol', u'build', u'reopen', u'secur', u'scare']
[u'channel', u'point', u'develop', u'tender']
[u'chechen', u'milit', u'jail', u'beslan', u'school', u'sieg']
[u'clark', u'anticip', u'year', u'long', u'timor', u'mission']
[u'clement', u'pull', u'french', u'open']
[u'closer']
[u'closer', u'news']
[u'commonwealth', u'refus', u'bail', u'line']
[u'cotter', u'catchment', u'plan', u'win', u'prais']
[u'crow', u'record', u'blue']
[u'crusad', u'expect', u'retain', u'super', u'titl']
[u'crusad', u'sixth', u'super', u'titl']
[u'dili', u'violenc', u'continu', u'despit', u'troop']
[u'dog', u'lose', u'murphi', u'season']
[u'domest', u'violenc', u'report', u'releas', u'urg']
[u'dont', u'question', u'australia', u'timor', u'decis', u'beazley']
[u'drought', u'order', u'leav', u'british', u'clown', u'high']
[u'drug', u'child', u'porn', u'discov', u'raid']
[u'earthquak', u'injur', u'hundr', u'indonesia']
[u'east', u'timor', u'solv', u'problem', u'downer']
[u'eastwood', u'come', u'shield']
[u'econom', u'data', u'bolster', u'market']
[u'fashion', u'afield', u'attempt', u'rewrit', u'doomben', u'record']
[u'franc', u'creek', u'reopen', u'fund', u'rais']
[u'garat', u'win', u'giro', u'stage', u'ullrich', u'quit']
[u'germani', u'lose', u'ballack', u'luxembourg', u'friend']
[u'germani', u'promis', u'action']
[u'ghana', u'hold', u'turkey', u'warm']
[u'gunfir', u'sound', u'hear', u'capitol', u'build']
[u'hama', u'avoid', u'deadlin', u'recognis', u'israel']
[u'hawk', u'face', u'tough', u'task', u'swan']
[u'hope', u'burmes', u'opposit', u'leader', u'releas']
[u'accus', u'taylor', u'crime']
[u'includ', u'indigen', u'peopl', u'anti', u'poverti', u'plan']
[u'indigen', u'australian', u'spirit', u'break']
[u'indonesian', u'quak', u'kill', u'injur', u'hundr']
[u'indonesian', u'quak', u'kill', u'thousand']
[u'intern', u'pullout', u'leav', u'timor', u'vulner']
[u'intl', u'communiti', u'support', u'iraq', u'govt', u'blair']
[u'iran', u'meet', u'power', u'iraqi', u'cleric']
[u'iran', u'open', u'enrich']
[u'iran', u'reject', u'talk', u'iraq']
[u'iran', u'say', u'attack']
[u'islam', u'jihad', u'offici', u'kill', u'lebanon']
[u'italian', u'troop', u'leav', u'iraq', u'year']
[u'jabiru', u'resid', u'head', u'poll']
[u'java', u'open', u'news']
[u'java', u'quak', u'death', u'toll', u'rise']
[u'kill', u'blair', u'justifi', u'galloway']
[u'kyoto', u'state', u'discuss', u'post', u'cut']
[u'lara', u'lead', u'windi', u'seri']
[u'leav', u'customari', u'debat', u'toyn']
[u'liber', u'newman', u'second', u'term']
[u'major', u'crisi', u'loom', u'lanka']
[u'charg', u'murder', u'brother']
[u'mari', u'antoinett', u'mop', u'cann']
[u'meander', u'approv', u'caus', u'controversi']
[u'mount', u'everest', u'climber', u'arriv', u'base', u'camp']
[u'mount', u'everest', u'climber', u'danger']
[u'mount', u'everest', u'climber', u'serious']
[u'mount', u'everest', u'climber', u'sever']
[u'employe', u'convict', u'trade', u'scandal']
[u'nepal', u'govern', u'rebel', u'peac']
[u'song', u'tiger', u'sink', u'boot', u'cat']
[u'opposit', u'question', u'fraud', u'squad', u'chang']
[u'oriol', u'thunderbird', u'post', u'comfort', u'win']
[u'dead', u'indonesian', u'quak']
[u'palestinian', u'econom', u'plight', u'worsen']
[u'parent', u'pleas', u'delay']
[u'parliament', u'lie', u'chang', u'absurd']
[u'pietersen', u'put', u'england']
[u'polic', u'alight']
[u'polic', u'investig', u'fatal', u'motorbik', u'accid']
[u'polic', u'investig', u'suspici', u'death']
[u'polic', u'probe', u'weston', u'contamin']
[u'pregnant', u'woman', u'transfer', u'unaccept']
[u'promot', u'busi', u'employ', u'apprentic']
[u'pass', u'futur', u'fund', u'law']
[u'quak', u'rock', u'indonesia']
[u'raider', u'nail', u'golden', u'victori']
[u'rann', u'woo', u'defenc', u'univers']
[u'repair', u'difficulti', u'track', u'close']
[u'research', u'fear', u'whale', u'kill', u'quota', u'creep']
[u'roughi', u'take', u'doomben']
[u'ruddock', u'stand', u'offshor', u'process', u'plan']
[u'salvo', u'warn', u'bogus', u'collector']
[u'schumach', u'pole', u'investig', u'monaco']
[u'scott', u'miss', u'wentworth']
[u'serena', u'confirm', u'wimbledon', u'withdraw']
[u'shark', u'prove', u'strong', u'warrior']
[u'shevchenko', u'leav', u'milan', u'eye', u'chelsea']
[u'shoot', u'victim', u'undergo', u'surgeri']
[u'smoke', u'alarm', u'save', u'melbourn', u'coupl']
[u'socceroo', u'face', u'punish', u'train', u'schedul']
[u'sophi', u'skin', u'graft', u'surgeri', u'success']
[u'spanish', u'mexican', u'film', u'lead', u'cann', u'race']
[u'spotlight', u'worker', u'lash', u'touch', u'howard']
[u'spotlight', u'worker', u'say', u'touch']
[u'stile', u'snare', u'memphi', u'lead', u'senden', u'touch']
[u'hous', u'arrest', u'extend']
[u'kyi', u'hous', u'arrest', u'meet', u'intern', u'scorn']
[u'swan', u'romanc', u'paddl', u'boat', u'german', u'lake']
[u'swan', u'smash', u'hawk']
[u'tanker', u'blast', u'victim', u'overwhelm', u'benin', u'hospit']
[u'teen', u'alcohol', u'rise', u'confer', u'hear']
[u'teen', u'go', u'rampag', u'berlin']
[u'territori', u'like', u'target', u'nuke', u'power', u'station']
[u'terror', u'accus', u'jail', u'regim', u'absurd']
[u'terror', u'suspect', u'refus', u'bail']
[u'thousand', u'flee', u'mogadishu', u'fight', u'rag']
[u'timor', u'violenc', u'expos', u'secur', u'forc', u'divis']
[u'timor', u'violenc', u'coup', u'say']
[u'total', u'mad', u'gang', u'fight', u'dili']
[u'transfer', u'pregnant', u'woman', u'accept']
[u'troop', u'time', u'frame', u'timor', u'uncertain']
[u'charg', u'drug', u'offenc']
[u'win', u'greater', u'access', u'warplan', u'technolog']
[u'gain', u'access', u'darfur']
[u'prepar', u'evacu', u'staff', u'east', u'timor']
[u'report', u'accus', u'nepales', u'armi', u'tortur']
[u'staff', u'prepar', u'evacu', u'east', u'timor']
[u'marin', u'like', u'face', u'massacr', u'charg']
[u'marin', u'like', u'face', u'murder', u'charg']
[u'outclass', u'venezuela', u'tune']
[u'raid', u'kill', u'taliban', u'afghanistan']
[u'senat', u'confirm', u'hayden', u'director']
[u'venabl', u'boro', u'run', u'report']
[u'ballet', u'frank', u'hurt', u'crash']
[u'warren', u'tredrea']
[u'weston', u'deni', u'contamin', u'warn', u'delay']
[u'keep', u'bird', u'alert', u'steadi']
[u'wing', u'carri', u'paratroop']
[u'woman', u'hospitalis', u'jack']
[u'young', u'fleet', u'make', u'road', u'safer']
[u'dead', u'plough', u'group']
[u'offic', u'join', u'timor', u'effort']
[u'displac', u'fight', u'east', u'timor']
[u'abetz', u'open', u'timber', u'import', u'control']
[u'action', u'urg', u'strip', u'sherpa']
[u'opposit', u'want', u'law', u'tighten']
[u'offic', u'east', u'timor']
[u'ambul', u'network', u'breakdown', u'probe']
[u'ambul', u'servic', u'budget', u'boost']
[u'amnesti', u'ralli', u'internet', u'repress']
[u'anger', u'grow', u'snowi', u'hydro', u'sale']
[u'ansett', u'properti', u'sell']
[u'armi', u'chief', u'dili', u'stabilis']
[u'arson', u'suspect', u'palmerston', u'blaze']
[u'aust', u'polic', u'join', u'east', u'timor', u'effort']
[u'aust', u'tripl', u'indonesian', u'quak']
[u'banker', u'arrest', u'china', u'tragedi']
[u'basso', u'edg', u'closer', u'giro', u'victori']
[u'beaconsfield', u'host', u'thank']
[u'birth', u'centr', u'program', u'review']
[u'bishop', u'wrong', u'abetz']
[u'blue', u'hero', u'finch', u'focus', u'eel', u'clash']
[u'bradman', u'snap', u'auction']
[u'british', u'deputi', u'pressur', u'quit', u'report']
[u'brown', u'lead', u'anti', u'flotilla', u'hope']
[u'budget', u'fund', u'hill', u'hospit']
[u'bush', u'liken', u'terror', u'cold']
[u'cabinet', u'decid', u'spirit', u'fate', u'lennon']
[u'cameron', u'smith', u'craig', u'bellami', u'john', u'lang']
[u'church', u'revis', u'profession', u'standard']
[u'closer']
[u'closer', u'news']
[u'club', u'worker', u'fingerprint']
[u'collin', u'skipper', u'black']
[u'contamin', u'scare', u'close', u'weston', u'plant']
[u'croatia', u'team', u'titl', u'davi', u'crown']
[u'cronk', u'step', u'nail', u'panther']
[u'cyclist', u'die', u'highway', u'crash']
[u'darwin', u'festiv', u'goer', u'turn', u'idol']
[u'dili', u'evacue', u'soldier', u'help', u'reduc', u'violenc']
[u'dili', u'resid', u'flee', u'amid', u'ongo', u'violenc']
[u'doctor', u'avoid', u'censur', u'wadey', u'comment']
[u'dont', u'nazi', u'ruin', u'world', u'german', u'striker']
[u'dont', u'lockyer', u'bennett']
[u'accus', u'siphon', u'petrol']
[u'eagl', u'tight', u'encount', u'west']
[u'east', u'timor', u'unrest', u'polit', u'motiv', u'alkatiri']
[u'eel', u'hold', u'charg', u'rooster']
[u'europ', u'iran', u'suffer', u'presid']
[u'feder', u'start', u'french', u'challeng', u'argentin']
[u'food', u'tamper', u'law', u'fast', u'track', u'beatti']
[u'futur', u'fund', u'head', u'rule', u'snowi', u'transfer']
[u'gang', u'continu', u'rampag', u'dili']
[u'gatlin', u'powel', u'showdown', u'call']
[u'german', u'dutch', u'french', u'enjoy', u'friend', u'win']
[u'giant', u'mass', u'preced', u'pope', u'auschwitz', u'trip']
[u'grape', u'grower', u'seek', u'subsidi']
[u'hall', u'everest', u'base', u'camp']
[u'hall', u'slow', u'everest', u'descent', u'continu']
[u'hama', u'milit', u'forc', u'return', u'street']
[u'herron', u'track', u'consecut', u'titl']
[u'howard', u'avoid', u'protest', u'peac', u'tree', u'handov']
[u'howard', u'look', u'boost', u'earthquak']
[u'howel', u'maintain', u'wentworth', u'lead']
[u'indonesian', u'quak', u'death', u'toll', u'rise']
[u'indonesian', u'quak', u'relief', u'oper', u'underway']
[u'indonesian', u'quak', u'toll', u'pass']
[u'injur', u'timores', u'land', u'darwin']
[u'iran', u'take', u'court', u'action', u'saddam']
[u'islam', u'workshop', u'improv', u'understand']
[u'israel', u'bomb', u'base', u'lebanon']
[u'jabiru', u'voter', u'shun', u'council', u'member']
[u'jason', u'taylor', u'ricki', u'stuart']
[u'java', u'quak', u'death', u'toll', u'pass']
[u'joli', u'pitt', u'babi', u'girl']
[u'kewel', u'link', u'socceroo']
[u'labor', u'elector', u'reform', u'effort', u'abysm']
[u'lara', u'say', u'chappel', u'remark', u'inspir', u'windi']
[u'local', u'flee', u'dili']
[u'charg', u'nightclub', u'stab']
[u'meander', u'consign', u'parrot', u'extinct']
[u'messi', u'miss', u'argentina', u'open']
[u'brit', u'desert', u'iraq', u'report']
[u'music', u'director', u'crash', u'rock', u'ballet']
[u'nelson', u'flag', u'timor', u'death', u'probe']
[u'public', u'garden', u'showcas', u'nativ']
[u'timet', u'lengthen', u'sydney', u'wollongong', u'trip']
[u'place', u'sulker', u'brazil', u'squad']
[u'take', u'dirti', u'ashtray', u'award']
[u'pair', u'want', u'scarborough', u'stab']
[u'peer', u'davydenko', u'french', u'open', u'warm']
[u'polic', u'probe', u'melbourn', u'chemic']
[u'polic', u'join', u'east', u'timor', u'deploy']
[u'pope', u'hop', u'john', u'paul', u'earli', u'sainthood']
[u'port', u'germein', u'caus', u'damag']
[u'princ', u'lead', u'rout', u'rabbitoh']
[u'protest', u'want', u'snowi', u'hydro', u'sale', u'stop']
[u'protest', u'continu', u'snowi', u'sale']
[u'protocol', u'reason', u'inact', u'food', u'scare']
[u'lib', u'nat', u'unit']
[u'quak', u'open', u'news']
[u'rampant', u'brown', u'lead', u'docker', u'demolit']
[u'rescuer', u'climber', u'everest']
[u'rescuer', u'prepar', u'bring', u'hall', u'everest']
[u'resid', u'warn', u'earli', u'bushfir', u'season']
[u'govt', u'give', u'doctor', u'rise']
[u'saint', u'strong', u'struggl', u'kangaroo']
[u'sale', u'secur', u'english', u'rugbi', u'titl']
[u'prawn', u'fish', u'program', u'deem', u'success']
[u'schumach', u'strip', u'monaco', u'pole']
[u'search', u'indonesian', u'quak', u'survivor']
[u'search', u'resum', u'miss', u'deckhand']
[u'serbia', u'montenegro', u'pledg', u'close', u'tie']
[u'sharon', u'move', u'long', u'term', u'clinic']
[u'simul', u'crash', u'test', u'emerg', u'servic']
[u'springborg', u'question', u'mental', u'health', u'fund']
[u'lanka', u'fight', u'rain']
[u'swift', u'spot', u'kestrel', u'notch']
[u'notifi', u'weston', u'contamin']
[u'taxi', u'driver', u'find', u'miss', u'elder']
[u'teen', u'die', u'plate', u'driver', u'roll']
[u'cano', u'win', u'cann', u'prize']
[u'timores', u'gang', u'forc', u'embassi', u'evacu']
[u'timor', u'evacue', u'land', u'darwin']
[u'sheen']
[u'troop', u'struggl', u'dili', u'gang']
[u'troop', u'disarm', u'timores', u'command']
[u'airlift', u'plane', u'crash']
[u'unmet', u'demand', u'buffer', u'build', u'industri']
[u'urg', u'support', u'postwar', u'nation']
[u'urgent', u'doctor', u'quak', u'strike', u'indonesia']
[u'veteran', u'film', u'design', u'bumstead', u'die']
[u'violenc', u'flare', u'mogadishu']
[u'beef', u'pollut', u'penalti']
[u'week', u'put', u'spotlight', u'kidney', u'diseas']
[u'weston', u'incid', u'think', u'random']
[u'weston', u'food', u'tamper', u'consum', u'terror', u'beatti']
[u'weston', u'plant', u'close', u'contamin', u'scare']
[u'look', u'boost', u'neglect', u'diseas', u'research']
[u'kill', u'iraqi', u'bomb', u'polic']
[u'kill', u'indonesian', u'earthquak']
[u'aborigin', u'peopl', u'urg', u'speak']
[u'wont', u'argu', u'snowi', u'sale']
[u'age', u'care', u'nurs', u'face']
[u'agreement', u'reach', u'tourism', u'plan']
[u'trickl', u'quak', u'citi']
[u'airport', u'search', u'suspect', u'leak']
[u'albani', u'warn', u'marin', u'drive', u'clear']
[u'benambra', u'candid']
[u'alston', u'preselect', u'involv', u'inappropri']
[u'aqi', u'offic', u'alert']
[u'atsb', u'give', u'prioriti', u'fatal', u'level', u'cross', u'crash']
[u'aust', u'gold', u'council', u'merg', u'miner', u'council']
[u'aust', u'blame', u'timor']
[u'australian', u'climber', u'fear', u'dead', u'nepal']
[u'aust', u'ineffici', u'age', u'popul']
[u'author', u'work', u'taxi', u'solut']
[u'bali', u'blast', u'survivor', u'didnt', u'consid', u'terrorist']
[u'bangladesh', u'student', u'exam']
[u'bash', u'manslaught', u'charg', u'drop']
[u'barrett', u'face', u'week']
[u'barter', u'trade', u'leav', u'pocket']
[u'bayliss', u'secur', u'silverston', u'doubl']
[u'beaconsfield', u'rescu', u'emot', u'linger']
[u'beaconsfield', u'survivor', u'tribut', u'rescuer']
[u'bellami', u'warn', u'storm', u'complac']
[u'blaze', u'damag', u'hous', u'car']
[u'bond', u'pass', u'babe', u'ruth']
[u'borbidg', u'back', u'push', u'singl', u'conserv', u'parti']
[u'brack', u'hint', u'famili', u'friend', u'budget']
[u'brazen', u'centrelink', u'fraud', u'earn', u'woman', u'home', u'detent']
[u'brazil', u'happi', u'lightweight', u'friend']
[u'british', u'director', u'win', u'cann']
[u'break', u'hill', u'host', u'sydney', u'symphoni', u'orchestra']
[u'campaign', u'oppos', u'law', u'roll', u'south']
[u'bushmast', u'test', u'southern']
[u'businessman', u'consum', u'wast', u'dump', u'fight']
[u'elect', u'hold', u'elect', u'councillor']
[u'canberra', u'need', u'popul', u'growth', u'report']
[u'canola', u'price']
[u'chariti', u'upset', u'lack', u'media']
[u'civil', u'liberti', u'group', u'urg', u'storag']
[u'close', u'finish', u'champion', u'leagu', u'match']
[u'closer']
[u'closer', u'news']
[u'colombian', u'presid', u'secur', u'second', u'term']
[u'commiss', u'move', u'settl', u'patel', u'compo', u'case']
[u'commod', u'lift', u'monday', u'trade']
[u'consult', u'begin', u'water', u'share', u'plan']
[u'council', u'form', u'allianc']
[u'council', u'consid', u'saleyard', u'report']
[u'court', u'decis', u'halt', u'tugun', u'bypass']
[u'hop', u'rate', u'rise', u'backdown']
[u'cultur', u'sensit', u'hurt', u'indigen', u'futur']
[u'darwin', u'host', u'slinger', u'aussi', u'debut']
[u'detain', u'fishermen', u'move', u'baxter']
[u'dfat', u'cole', u'expens', u'balloon']
[u'differ', u'senior', u'curriculum', u'chaotic']
[u'data', u'review', u'plan', u'polic', u'misus', u'sampl']
[u'doubt', u'cast', u'environment', u'law', u'crackdown']
[u'deport', u'foreign', u'hold', u'coup', u'plot']
[u'drought', u'lift', u'mental', u'health', u'referr']
[u'drown', u'twin', u'farewel', u'adelaid']
[u'promot', u'good', u'start', u'indigen', u'educ']
[u'east', u'timores', u'leader', u'discuss', u'polit', u'crisi']
[u'east', u'timor', u'face', u'humanitarian', u'crisi', u'world', u'vision']
[u'emerg', u'drill', u'lord', u'howe']
[u'england', u'thump', u'barbarian', u'head', u'australia']
[u'timor', u'face', u'humanitarian', u'crisi']
[u'timor', u'govern', u'split', u'labor', u'say']
[u'timor', u'leader', u'attempt', u'solv', u'polit', u'crisi']
[u'timor', u'leader', u'crisi', u'talk']
[u'everest', u'record', u'deadliest', u'year']
[u'advis', u'plead', u'guilti', u'fraud', u'charg']
[u'fairleigh', u'assur', u'knight', u'grade', u'coach']
[u'farmer', u'confid', u'level']
[u'fenc', u'post', u'collaps', u'kill', u'year']
[u'field', u'goal', u'match', u'cowboy', u'murray']
[u'fight', u'erupt', u'kabul', u'militari', u'accid']
[u'caus', u'damag', u'school']
[u'flautist', u'nevill', u'amadio', u'die']
[u'flood', u'fear', u'cut']
[u'futur', u'doctor', u'ask', u'view', u'marriag']
[u'giro', u'make', u'basso', u'firm', u'favourit', u'tour']
[u'gold', u'steal', u'charg', u'drop']
[u'govt', u'predict', u'face', u'aquif', u'plan', u'scrutini']
[u'govt', u'say', u'reef', u'fish', u'compo', u'exceed']
[u'govt', u'monitor', u'timor', u'refuge', u'situat', u'vanston']
[u'govt', u'broiler', u'farm', u'stanc']
[u'govt', u'urg', u'revamp', u'truck', u'inspect', u'facil']
[u'gregan', u'refocus', u'world']
[u'train', u'guerra', u'face', u'charg']
[u'gusmao', u'appeal', u'calm']
[u'hall', u'arriv', u'everest', u'base', u'camp']
[u'hall', u'arriv', u'everest', u'base', u'camp']
[u'hall', u'expect', u'kathmandu', u'day']
[u'hama', u'withdraw', u'talk']
[u'har', u'club', u'consid', u'fundrais', u'option']
[u'hay', u'suffer', u'season', u'end', u'knee', u'injuri']
[u'heavi', u'rain', u'hamper', u'quak', u'rescu']
[u'hobgood', u'burrow', u'light', u'express', u'session']
[u'howard', u'oppos', u'conserv', u'parti', u'merger']
[u'howel', u'runaway', u'wentworth']
[u'immigr', u'delay', u'hamper', u'goat', u'meat', u'abattoir']
[u'indonesia', u'confirm', u'bird', u'death']
[u'indonesia', u'declar', u'state', u'emerg']
[u'indonesian', u'fisher', u'catch', u'coast']
[u'indonesian', u'quak', u'toll', u'pass']
[u'investig', u'launch', u'polic', u'crash']
[u'jazz', u'player', u'hit', u'right', u'note', u'scholarship']
[u'judg', u'ask', u'rule', u'archibald']
[u'katter', u'reject', u'liber', u'nation', u'merger', u'plan']
[u'knife', u'mishap', u'end', u'accident', u'stab']
[u'lampard', u'dismiss', u'goal', u'score', u'fear']
[u'gasp', u'penalti', u'give', u'croatia', u'draw', u'iran']
[u'lennon', u'defend', u'ferri', u'manag']
[u'llewellyn', u'play', u'meander', u'clear', u'concern']
[u'plate', u'drive', u'catch']
[u'lyon', u'lead', u'maori']
[u'guilti', u'threaten', u'woman']
[u'hurt', u'crash']
[u'involv', u'laidley', u'clash', u'die']
[u'jail', u'sexual', u'abus', u'stepdaught']
[u'jail', u'polic', u'bash']
[u'face', u'court', u'accus', u'polic', u'attack']
[u'court', u'accus', u'drug', u'possess']
[u'market', u'scheme', u'help', u'lure', u'resid', u'inland']
[u'maroon', u'chang']
[u'matilda', u'mexico']
[u'mayor', u'confid', u'public', u'support', u'rate', u'rise']
[u'mayor', u'outlin', u'rate', u'rise', u'plan']
[u'mcguigan', u'share', u'trade', u'halt']
[u'mcleod', u'futur', u'depend', u'salari']
[u'midwiv', u'voic', u'concern', u'birth', u'centr', u'capac']
[u'mildura', u'promot', u'china']
[u'miner', u'seek', u'delay', u'truck', u'remov', u'plan']
[u'miner', u'urg', u'consid', u'frog', u'protect']
[u'trial', u'wast', u'water', u'irrig', u'plan']
[u'work', u'begin', u'near', u'fifield']
[u'minist', u'warn', u'indigen', u'communiti', u'viabil']
[u'miss', u'motorcyclist']
[u'highlight', u'wood', u'process', u'plant', u'benefit']
[u'seek', u'cyclon', u'farmer', u'exit']
[u'extrem', u'weather', u'predict', u'victoria']
[u'motorcyclist', u'surviv', u'cold', u'night', u'forest']
[u'urg', u'show', u'snowi', u'sale', u'ralli']
[u'nation', u'join', u'liber', u'merger', u'plan']
[u'nevill', u'look', u'conserv']
[u'hall', u'creek', u'look', u'address', u'social', u'issu']
[u'union', u'repres', u'young', u'worker']
[u'nightclub', u'fingerprint', u'plan', u'worri', u'lawyer']
[u'rooki', u'wallabi', u'squad']
[u'merger', u'feder', u'nation', u'vail', u'say']
[u'clear', u'casson', u'transfer']
[u'concern', u'futur', u'aborigin', u'homeland']
[u'govt', u'unhappi', u'dirti', u'ashtray', u'award']
[u'opposit', u'back', u'toowoomba', u'hospit', u'boost']
[u'outback', u'enjoy', u'sydney', u'symphoni', u'orchestra']
[u'pace', u'spin', u'sweep', u'windi', u'victori']
[u'padthaway', u'famili', u'leav', u'dili', u'unrest']
[u'pair', u'court', u'accus', u'theft']
[u'rise', u'offer', u'bribe', u'teacher', u'carpent']
[u'peachey', u'join', u'rabbitoh']
[u'plan', u'join', u'search', u'miss', u'deckhand']
[u'play', u'dough', u'cannabi', u'lead', u'charg']
[u'reject', u'merger', u'propos', u'coalit']
[u'polic', u'bust', u'suspect', u'child', u'traffic', u'gang']
[u'polic', u'crash', u'victim']
[u'polic', u'crash', u'victim']
[u'polic', u'reopen', u'fatal', u'crash', u'case']
[u'polic', u'return', u'spot', u'bodi']
[u'polic', u'ambiti', u'road', u'toll', u'target']
[u'policewoman', u'recov', u'bash']
[u'pope', u'pray', u'nazi', u'death', u'camp']
[u'psychiatrist', u'admit', u'pay', u'patient', u'stay']
[u'public', u'boost', u'salvo', u'donat']
[u'public', u'help', u'identifi', u'ant']
[u'public', u'warn', u'prepar', u'storm', u'season']
[u'budget', u'boost', u'boat', u'ship', u'safeti']
[u'coalit', u'conserv', u'merger']
[u'investor', u'launch', u'test', u'case', u'westpoint']
[u'liber', u'nation', u'consid', u'merger']
[u'quak', u'death', u'toll', u'pass']
[u'question', u'remain', u'develop', u'groundwat']
[u'rail', u'author', u'talk', u'timet']
[u'refuge', u'activist', u'criticis', u'baxter', u'facil']
[u'report', u'warn', u'threat']
[u'rescu', u'crew', u'continu', u'search', u'earthquak']
[u'restaur', u'reject', u'filipino', u'worker', u'alleg']
[u'reward', u'doubl', u'miss', u'coupl', u'case']
[u'russel', u'webb', u'thank', u'rescuer']
[u'saint', u'rise', u'flood', u'tactic']
[u'sale', u'commod', u'blame', u'bridgeston']
[u'salvo', u'shield', u'appeal', u'rais', u'thousand']
[u'sedit', u'chang', u'protect', u'free', u'speech']
[u'back', u'fund', u'support']
[u'offend', u'monitor', u'releas']
[u'sharapova', u'fight', u'pari']
[u'sheldon', u'slipper', u'conserv', u'merger', u'plan']
[u'shire', u'back', u'infant', u'literaci', u'scheme']
[u'shorten', u'head']
[u'south', u'east', u'urg', u'prepar', u'earli', u'bushfir']
[u'stakehold', u'gather', u'marin', u'park', u'meet']
[u'state', u'emerg', u'declar', u'java']
[u'station', u'sale', u'allow', u'expans']
[u'steffensen', u'flop', u'comeback']
[u'jude', u'triumph', u'maggert']
[u'strang', u'secur', u'solid', u'philippin']
[u'street', u'close', u'leak', u'scare']
[u'strong', u'show', u'mine', u'energi', u'event']
[u'tarrant', u'seven', u'player', u'charg']
[u'compani', u'win', u'pacif', u'island', u'radio', u'contract']
[u'thousand', u'snowi', u'share', u'float']
[u'aust', u'mountain', u'fear', u'dead']
[u'tree', u'knowledg', u'poison', u'see', u'wake']
[u'troop', u'increas', u'patrol', u'dili']
[u'tuckey', u'confid', u'support']
[u'tree']
[u'british', u'soldier', u'kill', u'iraq', u'bomb', u'attack']
[u'motorcyclist', u'miss', u'wombat', u'state', u'forest']
[u'broker', u'ceasefir', u'isra', u'lebanes', u'border']
[u'union', u'eurobodalla', u'campaign']
[u'union', u'seek', u'guest', u'worker', u'inquiri']
[u'unrest', u'continu', u'timor', u'street']
[u'lawmak', u'vow', u'probe', u'iraq', u'civilian', u'death']
[u'govt', u'blame', u'council', u'rate', u'rise']
[u'liber', u'land', u'cut']
[u'wallabi', u'squad']
[u'weston', u'anti', u'contamin', u'plan', u'place']
[u'find', u'evid', u'phone', u'tower', u'cancer', u'link']
[u'wine', u'export', u'price', u'drop']
[u'wine', u'grape', u'group', u'defend', u'grower', u'compo', u'plan']
[u'woman', u'die', u'burn', u'mishap']
[u'worker', u'vote', u'secret', u'strike', u'ballot']
[u'work', u'near', u'complet', u'special', u'school']
[u'work', u'begin', u'anabranch', u'pipelin']
[u'million', u'iraq', u'wheat', u'deal', u'proceed']
[u'grain', u'profit', u'jump']
[u'abigroup', u'contractor', u'award', u'bonvill', u'deviat']
[u'absent', u'troop', u'impact', u'defenc', u'contract']
[u'academ', u'warn', u'pacif', u'polit']
[u'agenc', u'struggl', u'java']
[u'worker', u'ramp', u'effort', u'quak', u'zone']
[u'black', u'fin', u'handbag', u'incid']
[u'ambul', u'hike', u'card']
[u'anim', u'cruelti', u'concern', u'spark', u'saleyard', u'summit']
[u'asylum', u'seeker', u'hous', u'brisban']
[u'aussi', u'cansdel', u'fiji', u'runner']
[u'aust', u'command', u'reject', u'timor', u'humanitarian', u'crisi']
[u'aust', u'lobbi', u'anti', u'whale', u'support']
[u'aust', u'peacekeep', u'struggl', u'order']
[u'australia', u'gear', u'whale', u'fight']
[u'australian', u'base', u'jumper', u'kill', u'norway']
[u'autopsi', u'river', u'bodi']
[u'awa', u'strip', u'away', u'award', u'condit', u'labor']
[u'lodg', u'feder', u'court', u'claim', u'withhold', u'materi']
[u'banana', u'levi', u'rise']
[u'barrett']
[u'barrett', u'struggl', u'accept']
[u'baxter', u'frame', u'posit', u'switch']
[u'beatti', u'criticis', u'council', u'narangba', u'hous']
[u'beatti', u'stand', u'firm', u'mari', u'river', u'plan']
[u'beaver', u'club']
[u'beef', u'industri', u'help', u'quak', u'recoveri', u'effort']
[u'bomb', u'explod', u'near', u'greek', u'minist', u'home']
[u'break', u'hill', u'miner', u'sand', u'bound']
[u'brown', u'chanc', u'freo', u'clash']
[u'budget', u'expect', u'bendigo', u'water', u'suppli']
[u'bungedor', u'defenc', u'step', u'closer']
[u'burundi', u'rebel', u'govern', u'talk', u'tanzania']
[u'civil', u'liberti', u'concern', u'fingerprint', u'plan']
[u'climber', u'hall', u'receiv', u'medic', u'help', u'kathmandu']
[u'closer']
[u'closer', u'news']
[u'cole', u'question', u'awb', u'document', u'complianc']
[u'communiti', u'rais', u'fund', u'dead', u'worker', u'famili']
[u'concept', u'plan', u'urg', u'entranc', u'resort', u'site']
[u'consortium', u'announc', u'iraq', u'wheat', u'deal']
[u'corrupt', u'educ', u'region', u'bodi']
[u'costello', u'urg', u'sell', u'budget', u'amid', u'latest', u'poll']
[u'council', u'reject', u'water', u'fund', u'merger', u'plan']
[u'council', u'ask', u'consid', u'rat', u'model', u'rethink']
[u'council', u'offer', u'parkland', u'preschool']
[u'council', u'revis', u'budget']
[u'council', u'retir', u'villag', u'effort']
[u'crisi', u'talk', u'resum', u'east', u'timor']
[u'croc', u'hazard', u'north', u'golfer']
[u'cyclist', u'kill', u'moulamein', u'ride']
[u'dont', u'rush', u'say', u'backbench', u'birney']
[u'dozen', u'kill', u'iraqi', u'bomb', u'blast']
[u'dracula', u'castl', u'return', u'famili']
[u'driver', u'lose', u'licenc', u'speed', u'outsid', u'polic']
[u'east', u'timor', u'leader', u'resum', u'crisi', u'talk']
[u'educ', u'plan', u'moot', u'boost', u'level', u'cross']
[u'elder', u'coupl', u'reunit', u'nurs', u'home']
[u'environment', u'project', u'award', u'million', u'extra']
[u'seek', u'public', u'comment', u'yarragade', u'aquif']
[u'timor', u'govt', u'surviv', u'crisi', u'talk', u'minist']
[u'put', u'tamil', u'tiger', u'terror', u'list']
[u'extens', u'grant', u'forestri', u'chang']
[u'extra', u'million', u'plan', u'mental', u'health']
[u'famili', u'friend', u'budget', u'forget', u'time', u'buyer']
[u'famili', u'hope', u'miss', u'mountain', u'aliv']
[u'famili', u'miss', u'climber', u'give', u'hope']
[u'fan', u'push', u'germani', u'final', u'say', u'beckenbau']
[u'festiv', u'overcom', u'ambul', u'offic', u'shortag']
[u'field', u'frustrat', u'petrol', u'excis', u'brickwal']
[u'find', u'delay', u'psychiatr', u'patient', u'inquest']
[u'destroy', u'darwin', u'snack', u'shop']
[u'firefight', u'demand', u'health', u'monitor', u'asbesto']
[u'fisher', u'seek', u'better', u'deal']
[u'food', u'shortag', u'caus', u'chao', u'dili']
[u'olymp', u'boxer', u'trial', u'alleg', u'bash']
[u'gateway', u'project', u'take', u'step', u'forward']
[u'govt', u'accus', u'misguid', u'plan']
[u'govt', u'hop', u'boost', u'land', u'council', u'particip']
[u'govt', u'agre', u'snowi', u'hydro', u'foreign', u'ownership']
[u'govt', u'urg', u'address', u'rail', u'freight', u'inequ']
[u'green', u'group', u'seek', u'greater', u'pest', u'spray', u'scrutini']
[u'group', u'hope', u'state', u'budget', u'fund']
[u'group', u'want', u'share', u'zone', u'close', u'indonesian']
[u'gusmao', u'assum', u'emerg', u'power']
[u'hadden', u'doesnt', u'want', u'offend', u'releas']
[u'hall', u'receiv', u'treatment', u'kathmandu']
[u'heavi', u'rain', u'hamper', u'java', u'effort']
[u'honeymoon', u'face', u'hurdl']
[u'honeymoon', u'oper', u'push', u'uranium', u'licenc']
[u'howard', u'vail', u'warn', u'nation', u'merger']
[u'hundr', u'stock', u'hors', u'gather', u'polocross']
[u'indigen', u'communiti', u'equip']
[u'indonesian', u'presid', u'continu', u'quak', u'zone', u'tour']
[u'indonesian', u'quak', u'death', u'toll', u'rise']
[u'indonesia', u'approach', u'bird', u'concern', u'abbott']
[u'indonesia', u'merapi', u'spew', u'lava']
[u'injur', u'steel', u'worker', u'compens']
[u'inmat', u'move', u'disturb']
[u'investig', u'continu', u'woodchip', u'termin']
[u'investor', u'advis', u'westpoint']
[u'iraqi', u'afghan', u'violenc', u'kill']
[u'iraq', u'wheat', u'deal']
[u'irrig', u'oppos', u'groundwat', u'licenc', u'cut']
[u'japan', u'fear', u'breakdown', u'socceroo']
[u'kewel', u'keep', u'cotton', u'wool', u'train']
[u'labor', u'accus', u'govt', u'dump', u'smart', u'card', u'trial']
[u'labor', u'buoy', u'poll']
[u'labor', u'say', u'govt', u'cole', u'inquiri', u'avoid']
[u'laidley', u'shatter', u'fan', u'death']
[u'light', u'oppon', u'claim', u'roundabout', u'safer']
[u'lobster', u'price', u'higher', u'year']
[u'mackay', u'launch', u'tourism', u'brochur']
[u'malaysian', u'urg', u'muslim', u'world', u'west', u'bridg']
[u'charg', u'balloon', u'heroin', u'haul']
[u'bail', u'babi', u'tumbl', u'dryer', u'charg']
[u'court', u'accus', u'cattl', u'duf']
[u'market', u'despit', u'strong', u'retail', u'figur']
[u'matilda', u'sweep', u'mexico']
[u'mcguigan', u'simeon', u'declar', u'year', u'profit']
[u'mcisaac', u'say', u'wallabi', u'welcom']
[u'medic', u'transport', u'servic', u'lose', u'major', u'contract']
[u'project', u'offer', u'futur', u'beaconsfield', u'worker']
[u'miner', u'council', u'prepar', u'deal', u'gold', u'issu']
[u'miner', u'plan', u'duckmaloi', u'gold', u'search']
[u'miss', u'climber', u'companion', u'return', u'advanc']
[u'miss', u'climber', u'famili', u'give', u'hope']
[u'mix', u'predict', u'pulp']
[u'morrison', u'quit', u'eel']
[u'motorcyclist', u'die', u'dubbo', u'crash']
[u'back', u'push', u'stop', u'snowi', u'hydro', u'sale']
[u'push', u'nyngan', u'ambul', u'boost']
[u'prepar', u'snowi', u'sale', u'challeng']
[u'mural', u'plan', u'reveal', u'normanton']
[u'murray', u'darl', u'candid', u'head', u'head']
[u'mutat', u'sheep', u'lead', u'higher', u'qualiti', u'wool']
[u'consid', u'crucial', u'support', u'parti']
[u'natimuk', u'experi', u'rabbit', u'plagu']
[u'nation', u'indigen', u'council', u'repres']
[u'caravan', u'park', u'owner', u'reject', u'buyback', u'offer']
[u'conserv', u'reserv', u'declar']
[u'librari', u'alic', u'spring', u'hospit']
[u'look', u'tasmanian', u'prison', u'readi', u'open']
[u'presid', u'moruya', u'busi', u'chamber']
[u'newspol', u'put', u'ahead', u'coalit']
[u'parliament', u'open']
[u'train', u'program', u'help', u'chef', u'shortag']
[u'concern', u'snowi', u'hydro', u'privatis']
[u'evid', u'suspect', u'son', u'mother', u'murder']
[u'secondari', u'student', u'allow', u'attend', u'strike']
[u'win', u'dirti', u'ashtray', u'award']
[u'oakeshott', u'see', u'posit', u'liber', u'nation']
[u'help', u'riverland', u'citrus', u'export']
[u'oneil', u'back', u'socceroo', u'round']
[u'owen', u'injuri', u'scare']
[u'owen', u'injuri', u'scare', u'role', u'gerrard', u'report']
[u'pari', u'showcas', u'indigen']
[u'back', u'hydro', u'sale', u'condit']
[u'polic', u'arrest', u'child', u'traffic', u'ring']
[u'polic', u'offic', u'punish', u'leap', u'misus']
[u'polic', u'search', u'crash', u'driver']
[u'polic', u'seek', u'help', u'sportsground', u'vandal']
[u'polic', u'unsur', u'caus', u'fatal', u'crash']
[u'polic', u'anti', u'hoon', u'law', u'seiz', u'vehicl']
[u'popul', u'push', u'canberra']
[u'port', u'youngster', u'receiv', u'rise', u'star']
[u'posit', u'retail', u'figur', u'surpris', u'analyst']
[u'potenti', u'buyer', u'interest', u'kyneton', u'factori']
[u'press', u'group', u'urg', u'justic', u'murder']
[u'privat', u'collector', u'loan', u'alic', u'wonderland']
[u'public', u'wast', u'dump', u'regul']
[u'qanta', u'cleaner', u'contract', u'legionnair']
[u'coalit', u'plan', u'split', u'feder']
[u'quak', u'relief', u'gain', u'momentum']
[u'rabbitoh', u'carpet', u'macdougal']
[u'rann', u'rule', u'nuclear', u'power', u'plant']
[u'rat', u'revenu', u'shortfal', u'gunnedah', u'budget']
[u'hair', u'link', u'endometriosi']
[u'region', u'firefight', u'protest']
[u'revamp', u'cityrail', u'timet', u'bring', u'reliabl']
[u'roadhous', u'oper', u'say', u'cape', u'open', u'despit', u'cyclon']
[u'ruddock', u'examin', u'recommend', u'sedit', u'law']
[u'famili', u'push', u'workplac', u'death', u'law']
[u'safeti', u'fear', u'prompt', u'toyota', u'prius', u'recal']
[u'search', u'miss', u'deckhand', u'call']
[u'shark', u'shire', u'presid', u'wont', u'chang', u'outspoken']
[u'simpson', u'back', u'nation', u'liber', u'merger', u'plan']
[u'slater', u'miss', u'spot', u'storm']
[u'snowi', u'river', u'clearanc', u'work', u'littl', u'late']
[u'social', u'worker', u'highlight', u'lack', u'support']
[u'springborg', u'meet', u'vail', u'merger']
[u'stabil', u'remain', u'elus', u'east', u'timor']
[u'stand', u'loom', u'coalit', u'merger', u'plan']
[u'state', u'govt', u'fail', u'bushfir', u'victim', u'claim']
[u'storeroom', u'forc', u'hospit', u'evacu']
[u'strawberri', u'price', u'tip', u'fall']
[u'strelow', u'retir', u'mayor', u'year']
[u'studi', u'test', u'link', u'smoke', u'cannabi']
[u'subsidi', u'tout', u'wine', u'glut', u'solut']
[u'suffer', u'continu', u'cyclon', u'monica', u'victim']
[u'suspend', u'miller', u'need', u'smarter', u'green']
[u'talk', u'fail', u'restor', u'stabil', u'east', u'timor']
[u'tarrant', u'loss', u'pie', u'black']
[u'taxi', u'shutdown', u'caus', u'problem', u'senior', u'citizen']
[u'technolog', u'upgrad', u'disrupt', u'mobil', u'phone', u'servic']
[u'teen', u'refus', u'bail', u'robberi', u'charg']
[u'teen', u'charg', u'assault', u'pregnant', u'woman']
[u'thailand', u'approv', u'octob', u'poll']
[u'kill', u'west', u'bank', u'raid']
[u'australian', u'climber', u'presum', u'dead']
[u'score', u'bradman']
[u'torbay', u'say', u'truck', u'inspect', u'facil']
[u'traffic', u'jam', u'hinder', u'quak', u'relief', u'effort']
[u'travel', u'undet', u'fuel', u'price']
[u'troop', u'face', u'constant', u'battl', u'disarm', u'gang']
[u'truck', u'crash', u'block', u'highway']
[u'tupou', u'keen', u'stick', u'bronco']
[u'pedestrian', u'critic', u'injur']
[u'union', u'call', u'secondari', u'colleg', u'build', u'fund']
[u'union', u'protest', u'ferri', u'sale']
[u'union', u'visit', u'shoalhaven']
[u'union', u'unhappi', u'polic', u'attack', u'sentenc']
[u'vail', u'ask', u'nat', u'presid', u'stand']
[u'vail', u'deni', u'leav', u'merger', u'talk']
[u'vail', u'meet', u'posit', u'springborg', u'say']
[u'veget', u'clear', u'warn', u'surpris', u'council']
[u'budget', u'target', u'famili']
[u'polic', u'plan', u'aim', u'road', u'toll']
[u'violenc', u'continu', u'despit', u'foreign', u'presenc']
[u'virgin', u'blue', u'defend', u'wheelchair', u'polici']
[u'virgin', u'wheelchair', u'polici', u'discriminatori', u'group']
[u'visa', u'condit', u'undermin', u'abattoir', u'worker', u'labor']
[u'ban', u'biodiesel', u'plant']
[u'water', u'restrict', u'stir', u'councillor']
[u'whale', u'rescuer', u'readi', u'annual', u'migrat']
[u'woman', u'face', u'court', u'partner', u'stab']
[u'work', u'begin', u'bathurst', u'tourist', u'facil']
[u'young', u'aussi', u'urg', u'outback']
[u'hour', u'brothel', u'ahead', u'shepparton']
[u'allow', u'educ', u'plan', u'forward']
[u'defenc', u'headquart', u'proceed']
[u'activist', u'council', u'saleyard', u'fight']
[u'announc', u'repatri', u'chang']
[u'afghan', u'want', u'truck', u'crash', u'death', u'pursu']
[u'alleg', u'biki', u'standov', u'refus', u'bail']
[u'urg', u'cigarett', u'packet', u'cover']
[u'urg', u'govt', u'address', u'pacif', u'aid', u'epidem']
[u'ambul', u'servic', u'increas']
[u'ash', u'excit', u'reach', u'fever', u'pitch']
[u'bodi', u'iraq']
[u'australian', u'armour', u'vehicl', u'damag', u'iraq', u'attack']
[u'australian', u'beef', u'industri', u'enjoy', u'diseas']
[u'australian', u'team', u'join', u'quak', u'effort']
[u'beatti', u'outlin', u'budget', u'central']
[u'rock', u'fall', u'worri']
[u'bigger', u'council', u'fund']
[u'bowler', u'fight', u'privat', u'high', u'school']
[u'brack', u'say', u'budget', u'keep', u'competit']
[u'bridgetown', u'deviat', u'design', u'caus', u'concern']
[u'brough', u'tabl', u'land', u'right', u'chang']
[u'brough', u'unveil', u'land', u'right', u'overhaul', u'plan']
[u'budget', u'fund', u'local', u'facil', u'upgrad']
[u'budget', u'offer', u'preschool', u'boost']
[u'busi', u'urg', u'watch', u'credit', u'card', u'scam']
[u'cahil', u'come', u'train', u'unscath']
[u'cairn', u'health', u'offic', u'earn', u'scholarship']
[u'kangaroo', u'emerg', u'mobil', u'phone', u'servic']
[u'call', u'improv', u'indigen', u'health', u'servic']
[u'carpent', u'claim', u'west', u'support', u'nuclear']
[u'chamber', u'criticis', u'earli', u'state', u'infrastructur', u'plan']
[u'chao', u'continu', u'dili', u'street']
[u'child', u'care', u'school', u'ground', u'solut', u'green']
[u'chilean', u'student', u'protest', u'poor', u'condit']
[u'chines', u'orchestra', u'tour', u'aust']
[u'closer']
[u'closer']
[u'closer', u'news']
[u'command', u'appeal', u'timores', u'remain', u'calm']
[u'command', u'defend', u'work', u'aust', u'troop', u'east', u'timor']
[u'communiti', u'urg', u'safe', u'harbour', u'plan']
[u'complic', u'fear', u'pregnant', u'woman']
[u'concern', u'rais', u'spend']
[u'concert', u'hold', u'crash', u'victim']
[u'coolgardi', u'council', u'consid', u'kambalda', u'split']
[u'council', u'detail', u'rate', u'rise', u'reason']
[u'councillor', u'confid', u'save', u'ymca']
[u'council', u'present', u'revis', u'plan']
[u'council', u'seek', u'extend', u'parent', u'respons']
[u'council', u'cost', u'concern', u'local', u'govt']
[u'court', u'hear', u'firebal', u'inciner', u'occup']
[u'court', u'order', u'compo', u'work', u'accid', u'victim']
[u'cowboy', u'resolv', u'test', u'murray']
[u'crow', u'take', u'bomber', u'light']
[u'custom', u'test', u'skill', u'south', u'east']
[u'danih', u'call', u'tribun', u'overhaul']
[u'defenc', u'repatri', u'chang', u'step', u'forward']
[u'defenc', u'chang', u'bodi', u'repatri', u'procedur']
[u'democrat', u'want', u'rann', u'state', u'posit', u'uranium']
[u'devonport', u'council', u'resign']
[u'doctor', u'enter', u'public', u'problem']
[u'dummi', u'fail', u'safeti', u'test', u'research']
[u'east', u'timores', u'presid', u'take', u'control', u'armi']
[u'eriksson', u'like', u'look', u'england']
[u'timores', u'ask', u'return', u'home', u'wake', u'crisi']
[u'timor', u'deni', u'lose', u'control']
[u'export', u'improv', u'reduc', u'month', u'trade', u'deficit']
[u'famili', u'mourn', u'dead', u'climber']
[u'farmer', u'budget', u'thumb']
[u'north', u'urg', u'cash', u'chines', u'tourism']
[u'fatal', u'crash', u'victim', u'name']
[u'figur', u'highlight', u'fewer', u'north', u'coast', u'break']
[u'finch', u'frame', u'blue', u'select']
[u'flinder', u'nativ', u'tourism', u'plan']
[u'food', u'poison', u'cost', u'restaurateur']
[u'footi', u'club', u'put', u'focus', u'sport', u'drink']
[u'world', u'champion', u'boxer', u'appear', u'melbourn']
[u'forum', u'stress', u'awar', u'toxic', u'chemic']
[u'frazer', u'cervic', u'cancer', u'research', u'win', u'award']
[u'fuel', u'price', u'pressur', u'chariti']
[u'fund', u'announc', u'dementia', u'train', u'centr']
[u'gillard', u'suspend', u'snivel', u'grub', u'remark']
[u'govt', u'ask', u'maintain', u'countri', u'hospit', u'board', u'ceo']
[u'govt', u'assign', u'role', u'troop', u'iraq']
[u'govt', u'consid', u'offer', u'narrabundah', u'caravan']
[u'govt', u'sign', u'mathoura', u'feedlot', u'plan']
[u'grain', u'consortium', u'hope', u'deal', u'iraq']
[u'grant', u'boost', u'indigen', u'cattl', u'station']
[u'grazier', u'gut', u'paper', u'drug', u'syndic', u'mistak']
[u'gunn', u'reject', u'pulp', u'report', u'find']
[u'gusmao', u'charg', u'secur', u'troop', u'leader']
[u'gusmao', u'take', u'control', u'east', u'timores', u'armi']
[u'hagan', u'see', u'challeng', u'face', u'knight', u'bulldog']
[u'hamstr', u'hird', u'remain', u'sidelin']
[u'health', u'dept', u'confirm', u'airport', u'legionnair', u'case']
[u'rat', u'level', u'say']
[u'hoil', u'maori', u'match']
[u'hop', u'mutant', u'sheep', u'help', u'wool', u'industri']
[u'hop', u'state', u'emerg', u'stabilis', u'timor']
[u'hous', u'approv', u'delay', u'hold', u'develop']
[u'hunter', u'say', u'river', u'cross', u'wait']
[u'indigen', u'hous', u'chief', u'question', u'communiti']
[u'injur', u'judd', u'face', u'match', u'break']
[u'iraq', u'govt', u'probe', u'involv', u'massacr']
[u'iraqi', u'ambassador', u'claim', u'marin', u'intent']
[u'iraqi', u'declar', u'basra', u'emerg']
[u'iraq', u'violenc', u'kill']
[u'irrig', u'group', u'question', u'snowi', u'sharehold', u'plan']
[u'island', u'niue', u'power']
[u'japan', u'hold', u'germani', u'surpris', u'draw']
[u'joyc', u'back', u'allianc', u'plan', u'enterpris', u'zone', u'trial']
[u'karratha', u'polic', u'sight', u'taser', u'gun']
[u'kazakh', u'lighter', u'tower', u'catch']
[u'kiwi', u'begin', u'send', u'cod', u'letter']
[u'kovco', u'mistak', u'prompt', u'repatri', u'chang']
[u'labour', u'shortag', u'hit', u'northern']
[u'lake', u'conjola', u'sand', u'build', u'caus', u'concern']
[u'land', u'permit', u'slow', u'indigen', u'economi']
[u'lettuc', u'aphid']
[u'lion', u'lift', u'pie', u'clash', u'black']
[u'lithuanian', u'govt', u'resign', u'biggest', u'parti', u'quit']
[u'long', u'season', u'creat', u'trucki', u'headach']
[u'major', u'project', u'accus', u'hide', u'dump', u'inform']
[u'jail', u'casino', u'stab']
[u'man', u'surfer', u'hope', u'ride', u'record', u'book']
[u'market', u'lose', u'grind', u'overnight', u'fall']
[u'marshal', u'join', u'whale', u'commiss']
[u'mayor', u'play', u'rate', u'rise', u'fear']
[u'mayor', u'question', u'polic', u'attack', u'sentenc']
[u'mayor', u'welcom', u'work', u'shoalwat', u'road']
[u'mcguigan', u'simeon', u'move', u'write', u'stock', u'valu']
[u'medic', u'vacanc', u'fraser', u'coast', u'health']
[u'melbourn', u'gangland', u'figur', u'grant', u'bail']
[u'men', u'shed', u'open', u'shellharbour']
[u'merger', u'plan', u'fallout', u'hit', u'nation']
[u'milosev', u'poison', u'report']
[u'miner', u'council', u'applaud', u'zinifex', u'invest']
[u'mine', u'stock', u'weigh', u'market']
[u'minist', u'outrag', u'style', u'cigarett']
[u'minist', u'reject', u'interpret', u'centr', u'plan']
[u'grower', u'seek', u'altern', u'water', u'payment', u'option']
[u'push', u'ahead', u'plan']
[u'say', u'infrastructur', u'announc']
[u'murder', u'victim', u'lament', u'lopsid', u'justic']
[u'negoti', u'call', u'report', u'shoot']
[u'hospit', u'bed', u'eas', u'winter', u'demand']
[u'pari', u'galleri', u'showcas', u'indigen']
[u'racial', u'vilif', u'law']
[u'communiti', u'contact', u'panel', u'plan', u'power']
[u'decis', u'fate', u'seasprit', u'helicopt']
[u'govt', u'send', u'mattress', u'cyclon', u'victim']
[u'send', u'replac', u'generat', u'niue']
[u'ogilvi', u'pampl', u'book', u'late', u'open', u'spot']
[u'opposit', u'continu', u'attack', u'workplac', u'law']
[u'opposit', u'question', u'palm', u'beach', u'polic', u'station', u'plan']
[u'opposit', u'say', u'littl', u'infrastructur', u'plan']
[u'opposit', u'siez', u'figur']
[u'organ', u'meat', u'firm', u'beat', u'singapor', u'prospect']
[u'pair', u'jail', u'threat', u'kill', u'judi', u'moran']
[u'parent', u'payment', u'bribe', u'opposit', u'say']
[u'parti', u'merger', u'unlik', u'chang', u'vote', u'habit']
[u'parti', u'merger', u'confid', u'voter', u'approv']
[u'pedestrian', u'kill', u'noarlunga', u'collis']
[u'penalti', u'assault', u'polic', u'increas']
[u'person', u'debt', u'increas']
[u'person', u'injuri', u'insur', u'chang', u'unnecessari']
[u'plan', u'merger', u'achiev', u'vail', u'say']
[u'plan', u'start', u'hospit']
[u'plan', u'surgic', u'mission', u'annual']
[u'polic', u'claim', u'success', u'crime', u'crackdown']
[u'polic', u'continu', u'hunt', u'arm', u'bandit']
[u'polic', u'probe', u'coast', u'arm', u'robberi']
[u'polic', u'smash', u'major', u'north', u'drug', u'ring']
[u'poor', u'rat', u'mine', u'approv', u'process']
[u'pork', u'product', u'recal', u'salmonella', u'outbreak']
[u'port', u'author', u'happi', u'respons']
[u'portland', u'emerg', u'depart', u'face', u'doctor', u'shortag']
[u'prehistor', u'ecosystem', u'unearth', u'israel']
[u'pressur', u'mount', u'vail', u'quit', u'trade', u'portfolio']
[u'prison', u'hospit', u'escap', u'investig']
[u'privaci', u'law', u'review']
[u'propos', u'allow', u'brothel', u'free', u'zone']
[u'coalit', u'merger', u'plan', u'limbo']
[u'coalit', u'merger', u'quash']
[u'liber', u'nation', u'agre', u'scrap', u'merger', u'plan']
[u'liber', u'reconsid', u'parti', u'merger']
[u'local', u'govt', u'seek', u'feder', u'fund']
[u'nation', u'liber', u'merger', u'unlik', u'vail']
[u'quak', u'death', u'toll', u'top']
[u'rann', u'say', u'recent', u'discuss', u'uranium']
[u'reduct', u'north', u'west', u'break', u'enter', u'crime']
[u'research', u'rethink', u'breast', u'cancer', u'treatment']
[u'review', u'find', u'condit', u'scrap', u'individu']
[u'road', u'congest', u'hamper', u'quak', u'relief']
[u'sandiland', u'chanc', u'face', u'tiger']
[u'scheme', u'address', u'indigen', u'communiti', u'staff', u'level']
[u'secur', u'guard', u'propos', u'north', u'coast', u'club']
[u'senior', u'nation', u'member', u'doubt', u'merger', u'success']
[u'crime', u'unit', u'offic', u'loot', u'dili']
[u'shuttl', u'servic', u'eas', u'canberra', u'airport', u'delay']
[u'signific', u'rise', u'north', u'coast', u'assault', u'figur']
[u'skill', u'shortag', u'squeez', u'mine', u'growth', u'year']
[u'snowi', u'hydro', u'remain', u'cooma']
[u'snowi', u'sale', u'oppon', u'push', u'tighter', u'ownership']
[u'soprano', u'maria', u'prerauer', u'die']
[u'south', u'korea', u'park', u'doubt', u'norway', u'clash']
[u'speaker', u'stand', u'gillard', u'suspens']
[u'spirit', u'fund', u'decis', u'unfair', u'say', u'union']
[u'sporad', u'violenc', u'report', u'dili']
[u'state', u'fund', u'announc', u'facil', u'upgrad']
[u'strong', u'return', u'qanta', u'board']
[u'suppli', u'dili', u'camp']
[u'surf', u'club', u'unawar', u'problem', u'suspend']
[u'survey', u'point', u'excel', u'outlook', u'dairi']
[u'appl', u'industri', u'face', u'challeng']
[u'smart', u'card', u'user', u'switch', u'access', u'card']
[u'tentat', u'success', u'evapor', u'manag']
[u'test', u'reveal', u'good', u'albani', u'qualiti']
[u'tiger', u'decis', u'brown']
[u'tradit', u'owner', u'lose', u'control', u'land']
[u'treasur', u'hope', u'miner', u'transport', u'solut']
[u'troop', u'afghanistan', u'fire', u'self', u'defenc']
[u'truck', u'driver', u'bodi', u'remov', u'train', u'debri']
[u'dead', u'south', u'east', u'murder', u'suicid']
[u'union', u'vow', u'save', u'devonport', u'ferri', u'servic']
[u'unrest', u'continu', u'dili', u'street']
[u'open', u'revamp', u'gatton', u'hors', u'research', u'centr']
[u'react', u'warili', u'iran', u'offer', u'talk']
[u'publicis', u'report', u'alleg', u'iraq', u'massacr']
[u'govt', u'green', u'light', u'pulp']
[u'vieira', u'fit']
[u'violent', u'game', u'hurt', u'communiti']
[u'vodafon', u'say', u'loss', u'wont', u'hurt', u'australian', u'market']
[u'washington', u'sniper', u'guilti', u'murder', u'count']
[u'wast', u'water', u'light', u'home', u'research']
[u'wheat', u'australia', u'secur', u'iraq', u'contract']
[u'wilcannia', u'resid', u'unit', u'reconcili']
[u'wind', u'farm', u'propos', u'pyrene', u'shire']
[u'woman', u'condit', u'glen', u'waverley']
[u'wood', u'play', u'open']
[u'world', u'dream', u'japan', u'tanaka']
[u'beaconsfield', u'miner', u'lose', u'job']
[u'abbott', u'back', u'medibank', u'oper', u'good', u'guy', u'campaign']
[u'abbott', u'grill', u'medibank', u'sale']
[u'retail', u'criticis', u'approach', u'underag']
[u'rule', u'night', u'final']
[u'donat', u'patrol', u'boat', u'solomon', u'island']
[u'pressur', u'mount', u'plan']
[u'andrew', u'brush', u'workplac', u'survey']
[u'anim', u'right', u'protest', u'plead', u'guilti', u'wharf']
[u'apolog', u'send', u'bosnian', u'famili', u'coffin']
[u'appeal', u'lodg', u'retail', u'develop']
[u'ash', u'ticket', u'demand', u'highest']
[u'ash', u'ticket', u'sale']
[u'ash', u'ticket', u'high', u'demand']
[u'aust', u'doctor', u'java', u'quak', u'zone']
[u'australian', u'market', u'bounc']
[u'australia', u'infect', u'rate', u'increas']
[u'aust', u'renew', u'anti', u'whale', u'effort']
[u'aust', u'troop', u'return', u'iraq']
[u'aust', u'troop', u'return', u'home', u'muthanna']
[u'beatti', u'stand', u'firm', u'plan', u'despit', u'opposit']
[u'beatti', u'talk', u'townsvill', u'health', u'fund']
[u'beef', u'export', u'brace', u'competit']
[u'bishop', u'fail', u'caravan', u'park', u'talk']
[u'blatter', u'elect', u'fifa', u'chief']
[u'blood', u'process', u'stay', u'australia', u'govt']
[u'boswel', u'admit', u'lobbi', u'merger']
[u'brochur', u'dont', u'faze', u'wast', u'water', u'plan', u'oppon']
[u'brookton', u'seek', u'help', u'sport', u'recommend']
[u'budget', u'includ', u'industri', u'fund']
[u'burk', u'includ', u'world']
[u'bushfir', u'inquest', u'hear', u'firefight', u'role']
[u'busi', u'invest', u'outlook', u'remain', u'posit']
[u'calf', u'injuri', u'sidelin', u'giant', u'star', u'shaw']
[u'call', u'investig', u'mental', u'health']
[u'canberra', u'famili', u'centr', u'open', u'month']
[u'caravan', u'park', u'submiss', u'flow']
[u'cattl', u'feedlot', u'give', u'green', u'light']
[u'cervic', u'cancer', u'vaccin', u'trial']
[u'chef', u'train', u'program', u'benefit', u'industri']
[u'closer']
[u'closer']
[u'closer', u'news']
[u'commission', u'cole', u'chief', u'hold', u'talk']
[u'council', u'approv', u'budget', u'amidst', u'rise', u'cost']
[u'council', u'get', u'time', u'implement', u'inquiri']
[u'council', u'action', u'group', u'legal', u'cost']
[u'council', u'abandon', u'plan', u'indigen', u'apolog']
[u'council', u'lure', u'game', u'fish', u'sculptur']
[u'council', u'unhappi', u'govt', u'respons', u'hous', u'plan']
[u'court', u'hear', u'lodhi', u'tell', u'pack', u'lie']
[u'croc', u'sight', u'ashburton', u'river']
[u'crow', u'rest', u'clark', u'bomber', u'clash']
[u'cyclon', u'monica', u'victim', u'sleep', u'concret']
[u'dairi', u'farmer', u'optimist', u'futur']
[u'oppon', u'question', u'figur']
[u'darwin', u'swimmer', u'encourag', u'plung']
[u'defenc', u'move', u'ahead', u'militari', u'justic', u'shake']
[u'develop', u'board', u'vote', u'island', u'resort']
[u'downer', u'call', u'iran', u'open', u'talk']
[u'draper', u'say', u'preschool', u'fund', u'need']
[u'dutch', u'litmus', u'test', u'aussi', u'world', u'build']
[u'england', u'bank', u'blend', u'youth', u'experi']
[u'timor', u'camp', u'struggl', u'amid', u'renew', u'violenc']
[u'timor', u'rebel', u'overthrow']
[u'deputi', u'iran', u'soccer', u'snub']
[u'export', u'market', u'feral', u'turn', u'label']
[u'fairleigh', u'leav', u'knight', u'season']
[u'farmer', u'face', u'higher', u'irrig', u'cost']
[u'faulti', u'blade', u'caus', u'jetstar', u'engin', u'failur']
[u'feder', u'fund', u'currarong', u'boat', u'ramp']
[u'feder', u'govt', u'accus', u'inadequ', u'hedland', u'support']
[u'figur', u'highlight', u'time', u'riverina']
[u'figur', u'highlight', u'rise', u'properti', u'valu']
[u'firefight', u'shatter', u'bushfir', u'blame']
[u'burn', u'proud', u'hewitt']
[u'franc', u'rais', u'world', u'hop', u'itali', u'struggl']
[u'fraser', u'blanchett', u'join', u'snowi', u'hydro', u'sale', u'opposit']
[u'french', u'polic', u'clash', u'riot', u'youth']
[u'fundrais', u'launch', u'trucki', u'famili']
[u'fund', u'target', u'wimmera', u'weed', u'erad']
[u'futur', u'nation', u'liber', u'merger', u'possibl']
[u'suppli', u'failur', u'leav', u'local', u'cold']
[u'gilgandra', u'look', u'communiti', u'bank', u'open']
[u'gillard', u'throw', u'chamber', u'second']
[u'girl', u'chang', u'stori', u'aust', u'rape', u'case']
[u'giteau', u'doubt', u'starter', u'open', u'english', u'test']
[u'glen', u'inn', u'area', u'farmer', u'talk', u'drought']
[u'glori', u'return', u'train', u'financi', u'cloud']
[u'goulburn', u'school', u'care', u'place']
[u'govt', u'blueprint', u'bush', u'reveal']
[u'govt', u'extend', u'parent', u'respons']
[u'govt', u'reappoint', u'sack', u'health', u'servic', u'board', u'member']
[u'grandfath', u'charg', u'spread', u'face']
[u'grazier', u'maintain', u'drug', u'crop', u'awar']
[u'great', u'southern', u'winemak', u'produc', u'super', u'blend']
[u'green', u'seek', u'disclosur', u'talk']
[u'green', u'seiz', u'environ', u'report', u'card']
[u'gusmao', u'call', u'timor', u'uniti']
[u'gusmao', u'make', u'appeal', u'timor', u'uniti']
[u'gwydir', u'council', u'face', u'hard', u'time']
[u'hard', u'work', u'pay', u'jensen', u'swamp']
[u'health', u'servic', u'seek', u'hospit', u'revamp', u'detail']
[u'heavi', u'rain', u'prompt', u'gippsland', u'flood', u'warn']
[u'hewitt', u'advanc', u'pari']
[u'heywood', u'welcom', u'pulp', u'approv']
[u'hid', u'lash', u'media', u'elect', u'loss']
[u'high', u'achiev', u'honour', u'great']
[u'high', u'endang', u'plant', u'steal']
[u'hobbit', u'tool', u'shed', u'light', u'human', u'evolut']
[u'hospit', u'give', u'medic', u'student']
[u'iemma', u'want', u'recognit', u'mental', u'health']
[u'indigen', u'artist', u'stage', u'london', u'sale', u'dialysi']
[u'indigen', u'group', u'fear', u'highway', u'plan', u'destroy']
[u'indonesian', u'quak', u'camp', u'struggl', u'cope']
[u'indonesian', u'quak', u'hospit', u'overload', u'say']
[u'indonesia', u'quak', u'death', u'toll', u'pass']
[u'indonesia', u'refus', u'quak', u'loan']
[u'insur', u'execut', u'kill', u'light', u'plane', u'crash']
[u'investig', u'begin', u'babi', u'bodi', u'disappear']
[u'iran', u'reject', u'condit', u'nuclear', u'talk']
[u'irrig', u'face', u'doubl', u'water', u'blow']
[u'island', u'plant', u'plan', u'spark', u'green', u'concern']
[u'jail', u'decis', u'expect', u'help', u'hous', u'growth']
[u'japan', u'kaji', u'like', u'readi', u'socceroo', u'clash']
[u'japan', u'target', u'goal', u'final', u'world', u'test']
[u'labor', u'target', u'region', u'coalit', u'voter']
[u'laidley', u'keen']
[u'land', u'council', u'defend', u'land', u'permit']
[u'land', u'right', u'chang', u'threat', u'land', u'council']
[u'law', u'stem', u'kenya', u'rape', u'epidem', u'govt']
[u'lawyer', u'consid', u'saleyard', u'compo', u'case']
[u'liber', u'fear', u'bathhous', u'closur', u'impact']
[u'light', u'snow', u'boost', u'hop', u'good', u'season', u'start']
[u'local', u'govt', u'gather', u'hear', u'merger', u'issu']
[u'major', u'defenc', u'evid', u'unchalleng', u'lodhi']
[u'charg', u'northern', u'drug']
[u'get', u'life', u'sentenc', u'doubl', u'murder']
[u'plead', u'guilti', u'mokbel', u'drug']
[u'face', u'court', u'weapon', u'reptil']
[u'mayor', u'cast', u'doubt', u'bush', u'blueprint']
[u'molik', u'thrive', u'sharapova', u'challeng']
[u'monaco', u'princ', u'acknowledg', u'second', u'illegitim']
[u'money', u'wont', u'night', u'grand', u'final']
[u'fund', u'seek', u'secur', u'domest', u'violenc']
[u'fund', u'help', u'boost', u'tourism', u'competit']
[u'time', u'bridgetown', u'deviat', u'comment']
[u'call', u'inquiri', u'bodi']
[u'cast', u'doubt', u'central', u'pipelin', u'plan']
[u'test', u'negat', u'legionnair', u'diseas']
[u'urg', u'north', u'break', u'hill', u'rat', u'plan']
[u'murrumbidge', u'malici', u'damag', u'report', u'rise']
[u'nation', u'comp', u'protect', u'tradit', u'club']
[u'nation', u'surrend', u'fail', u'merger', u'beazley']
[u'navi', u'admit', u'femal', u'offic', u'abus', u'claim']
[u'nelson', u'kovco', u'comment', u'investig']
[u'age', u'care', u'bed', u'plan', u'warracknab']
[u'armi', u'chopper']
[u'question', u'surfac', u'line', u'govern']
[u'korea', u'invit', u'nuclear', u'envoy']
[u'school', u'train', u'centr']
[u'nrma', u'want', u'budget', u'focus', u'pacif', u'highway']
[u'consid', u'price', u'push', u'tackl', u'alcohol', u'problem']
[u'offic', u'technic', u'prevent', u'compens']
[u'ombudsman', u'review', u'damn', u'opposit', u'say']
[u'opposit', u'criticis', u'polic', u'attack', u'crackdown']
[u'opposit', u'pledg', u'showground', u'pavilion', u'fund']
[u'outback', u'urg', u'push', u'uniqu', u'tourism', u'experi']
[u'outrag', u'politician', u'mental', u'health', u'comment']
[u'patriot', u'swear', u'chief']
[u'pelican', u'attack', u'forc', u'wheelchair', u'bind']
[u'plan', u'afoot', u'senior', u'hous']
[u'announc', u'pilbara', u'technic', u'colleg']
[u'criticis', u'role', u'merger', u'collaps']
[u'polic', u'chief', u'review', u'trauma', u'case']
[u'polic', u'forc', u'farewel', u'north', u'west', u'offic']
[u'polic', u'investig', u'cabooltur', u'murder', u'suicid']
[u'polit', u'situat', u'shaki', u'timor']
[u'prison', u'like', u'extend', u'stay', u'north']
[u'promin', u'australian', u'snowi', u'letter', u'give']
[u'properti', u'boom', u'leav', u'short', u'land']
[u'prostitut', u'fin', u'client', u'theft']
[u'public', u'urg', u'creativ', u'playground', u'design']
[u'pulp', u'rail', u'talk', u'track']
[u'nat', u'boss', u'deni', u'vail', u'keep', u'merger', u'plan']
[u'ratepay', u'group', u'attack', u'rat', u'review', u'meet']
[u'ravlich', u'meet', u'wiluna', u'communiti']
[u'renew', u'energi', u'market', u'cheapest', u'answer', u'industri']
[u'rossi', u'stay', u'yamaha']
[]
[u'search', u'miss', u'pink', u'diamond']
[u'sediment', u'core', u'hold', u'secret', u'arctic', u'climat']
[u'senat', u'confid', u'anti', u'whale', u'vote']
[u'senior', u'cat', u'face']
[u'shev', u'latest', u'sign', u'chelsea']
[u'simplot', u'increas', u'price', u'grower']
[u'socceroo', u'kewel', u'percent']
[u'south', u'coast', u'jail', u'submiss', u'close']
[u'space', u'shuttl', u'clear', u'critic', u'hurdl', u'launch']
[u'springborg', u'deni', u'snub', u'meet']
[u'springborg', u'play', u'fail', u'merger', u'fallout']
[u'staff', u'interview', u'miss', u'babi', u'bodi']
[u'star', u'hotel', u'fail', u'reach', u'reserv', u'price']
[u'state', u'longer', u'afford', u'manag', u'health']
[u'stock', u'agent', u'group', u'back', u'saleyard', u'summit']
[u'student', u'protest', u'law']
[u'super', u'smith', u'win', u'player', u'year', u'award']
[u'survey', u'find', u'reduct', u'manufactur']
[u'tabcorp', u'hold', u'offer', u'rival', u'unitab', u'takeov']
[u'taiwan', u'presid', u'relinquish', u'power']
[u'wind', u'farm', u'compani', u'win', u'chines', u'contract']
[u'teen', u'arrest', u'supermarket', u'break']
[u'teen', u'urg', u'consid', u'join', u'cattl', u'industri']
[u'tender', u'want', u'wimmera', u'malle', u'pipelin']
[u'thousand', u'flock', u'peopl']
[u'help', u'locat', u'gulf', u'ghost', u'net']
[u'titan', u'snap', u'bronco']
[u'tradit', u'owner', u'claim', u'suburb', u'name', u'snub']
[u'train', u'servic', u'return', u'normal']
[u'trial', u'water', u'restrict', u'perman']
[u'tripodi', u'beat', u'road', u'handl', u'extra', u'truck']
[u'troop', u'abl', u'predict', u'gang', u'movement', u'brigadi']
[u'minist', u'resign', u'timor', u'crisi']
[u'forum', u'discuss', u'impact']
[u'union', u'say', u'job', u'go', u'forestri', u'polici']
[u'union', u'plan', u'protest', u'downer', u'visit']
[u'order', u'ethic', u'train', u'troop']
[u'will', u'hold', u'direct', u'talk', u'iran']
[u'vanuatu', u'pledg', u'continu', u'support', u'anti', u'whale']
[u'treat', u'legionnair']
[u'opposit', u'pledg', u'focus', u'educ']
[u'virgin', u'back', u'wheelchair', u'polici']
[u'bus', u'trial', u'diesel', u'fuel']
[u'westpoint', u'chief', u'order', u'appear', u'court']
[u'wit', u'seek', u'second', u'drive', u'shoot']
[u'wool', u'broker', u'play', u'buyer', u'protest']
[u'write', u'wont', u'affect', u'grower', u'payment', u'mcguigan']
[u'youth', u'gang', u'shatter', u'dili', u'calm']
[u'wind', u'farm', u'agreement', u'finalis']
[u'rais', u'develop', u'copper', u'deposit']
[u'kill', u'hurt', u'baghdad', u'market', u'bomb', u'attack']
[u'expat', u'abduct', u'nigeria']
[u'abattoir', u'visa', u'breach', u'minor', u'issu']
[u'accc', u'examin', u'babi', u'dummi']
[u'accus', u'face', u'court', u'violent', u'brawl']
[u'alic', u'endur', u'cold', u'weather']
[u'win', u'stake', u'china', u'bank']
[u'apec', u'call', u'progress', u'stall', u'global', u'trade']
[u'aquat', u'centr', u'fish']
[u'releas', u'guidelin']
[u'privat', u'investig', u'hunt']
[u'aussi', u'memori', u'hunt']
[u'aust', u'command', u'hop', u'meet', u'timor', u'rebel', u'leader']
[u'aust', u'command', u'meet', u'timor', u'rebel', u'leader']
[u'aust', u'medic', u'tend', u'quak', u'wound']
[u'australian', u'ballet', u'dancer', u'pilbara']
[u'australian', u'birth', u'rise']
[u'australian', u'command', u'meet', u'timor', u'rebel', u'leader']
[u'australian', u'medic', u'open', u'centr', u'quak', u'zone']
[u'aust', u'troop', u'confid', u'quell', u'dili', u'gang']
[u'barassi', u'take', u'kokoda', u'track']
[u'footag', u'show', u'murder', u'iraqi', u'civilian']
[u'bendigo', u'properti', u'valu', u'rise']
[u'benitez', u'sign', u'year', u'deal', u'liverpool']
[u'crowd', u'farewel', u'policeman']
[u'crowd', u'tip', u'attend', u'brushmen', u'bush']
[u'blaze', u'damag', u'yarloop', u'hous']
[u'brazil', u'wari', u'australia']
[u'british', u'journalist', u'return', u'steal', u'paint']
[u'bronco', u'want', u'lang', u'park', u'grand', u'final']
[u'brown', u'lion', u'resurg', u'matthew']
[u'bundaberg', u'seek', u'bigger', u'slice', u'poki', u'revenu']
[u'scrutini', u'beaconsfield', u'fund']
[u'can', u'stock', u'rout', u'reach', u'mileston']
[u'caravan', u'park', u'resid', u'ralli', u'outsid', u'compani']
[u'threaten', u'cancel', u'ash', u'ticket']
[u'crack', u'ash', u'scalper']
[u'central', u'victoria', u'record', u'lower', u'rainfal']
[u'ceremoni', u'mark', u'sydney', u'harbour', u'attack']
[u'childcar', u'fraud', u'target', u'govt', u'plan']
[u'childcar', u'crazi', u'union', u'say']
[u'clark', u'unawar', u'councillor', u'boycott']
[u'closer']
[u'closer', u'news']
[u'coalit', u'troop', u'iraq', u'ethic', u'train']
[u'coal', u'plan', u'spark', u'independ', u'water', u'studi']
[u'comment', u'seek', u'draft', u'wide', u'burnett', u'region']
[u'concern', u'grape', u'glut', u'super', u'fund']
[u'cooper', u'give', u'dragon', u'score']
[u'cordingley', u'test', u'injur', u'foot', u'club', u'match']
[u'council', u'look', u'govt', u'nelson', u'help']
[u'councillor', u'fear', u'loss', u'balanc', u'budget']
[u'council', u'reject', u'plan', u'airport', u'hart']
[u'council', u'seek', u'help', u'find', u'park', u'vandal']
[u'council', u'fish']
[u'council', u'urg', u'form', u'allianc']
[u'cowboy', u'play', u'origin', u'spot', u'murray']
[u'cricket', u'australia', u'threaten', u'cancel', u'ash', u'ticket']
[u'cyclon', u'monica', u'leav', u'communiti', u'reel']
[u'oppon', u'urg', u'lodg', u'submiss']
[u'defenc', u'evid', u'lodhi', u'case', u'unchalleng', u'court']
[u'denmark', u'legalis', u'lesbian', u'artifici', u'insemin']
[u'doctor', u'maintain', u'back', u'singl', u'hospit']
[u'drag', u'strip', u'plan', u'move', u'closer']
[u'dutch', u'lose', u'playmak', u'socceroo', u'clash']
[u'dutch', u'reserv', u'mexico']
[u'electrolux', u'worker', u'reject', u'offer']
[u'emerald', u'discuss', u'rural', u'health', u'issu']
[u'england', u'brace', u'stronger', u'wallabi', u'pack']
[u'entri', u'flow', u'cossack', u'award']
[u'environ', u'watchdog', u'slam', u'sustain']
[u'timor', u'reject', u'rebel', u'leader', u'resign']
[u'expert', u'warn', u'alcohol', u'abus']
[u'farmer', u'boost', u'soil', u'qualiti']
[u'farmer', u'warn', u'fin', u'wander', u'stock']
[u'feder', u'struggl', u'nadal', u'cruis']
[u'govt', u'withdraw', u'snowi', u'hydro', u'sale']
[u'fesa', u'fear', u'high', u'risk']
[u'finch', u'firm', u'origin']
[u'firm', u'seek', u'overturn', u'block', u'multi', u'million']
[u'turn', u'technic', u'colleg']
[u'focus', u'fund', u'childhood', u'obes', u'opposit']
[u'footi', u'club', u'room', u'revamp']
[u'ausaid', u'advis', u'sentenc', u'child', u'porn']
[u'teacher', u'charg', u'child', u'offenc']
[u'freight', u'train', u'derail', u'close', u'line']
[u'fuel', u'rebat', u'chang', u'delay', u'expect', u'help', u'farmer']
[u'gatlin', u'powel', u'showdown', u'track']
[u'good', u'gold', u'coast', u'rain', u'predict', u'month', u'away']
[u'govt', u'ask', u'drop', u'appeal', u'nativ', u'titl']
[u'govt', u'ask', u'upgrad', u'pain', u'manag', u'clinic']
[u'govt', u'scrap', u'snowi', u'hydro', u'sale']
[u'govt', u'stand', u'tourism', u'brochur', u'spend']
[u'govt', u'help', u'retrench', u'miner', u'work']
[u'govt', u'urg', u'protect', u'local', u'ethanol', u'industri']
[u'goward', u'approach', u'liber', u'preselect']
[u'grain', u'grower', u'tell', u'stop', u'sow', u'crop']
[u'grandfath', u'deni', u'bail', u'infect', u'case']
[u'grape', u'grower', u'call', u'vine', u'remov', u'consider']
[u'hauritz', u'casson', u'blue', u'sign']
[u'hiddink', u'keen', u'kewel', u'play', u'warm']
[u'hotel', u'fin', u'liquor', u'licenc', u'breach']
[u'howard', u'welcom', u'timor', u'ministeri', u'chang']
[u'impress', u'crow', u'humili', u'bomber']
[u'indonesian', u'fisher', u'face', u'court', u'poach']
[u'indonesian', u'nurs', u'hone', u'english', u'skill', u'darwin']
[u'industri', u'work', u'water', u'qualiti']
[u'intern', u'space', u'station', u'crew', u'start', u'spacewalk']
[u'iran', u'offer', u'incent', u'uranium', u'enrich']
[u'japan', u'call', u'realiti', u'check']
[u'java', u'quak', u'respons', u'move', u'phase']
[u'patrol', u'help', u'lower', u'drown', u'rate']
[u'keith', u'richard', u'make', u'complet', u'recoveri']
[u'group', u'bush', u'blueprint']
[u'labor', u'underplay', u'achiev', u'keat', u'say']
[u'lawyer', u'refus', u'undergo', u'secur', u'clearanc']
[u'lawyer', u'welcom', u'compo', u'overhaul']
[u'littl', u'coastal', u'rain', u'reach', u'catchment']
[u'loeb', u'set', u'pace', u'acropoli', u'curtain', u'raiser']
[u'longreach', u'cinema', u'reopen']
[u'loot', u'continu', u'dili', u'street']
[u'bring', u'rain', u'south', u'east']
[u'accus', u'sell', u'drug', u'indigen']
[u'jail', u'child', u'porn', u'offenc']
[u'shoot', u'london', u'anti', u'terror', u'raid']
[u'maori', u'snatch', u'victori', u'waratah']
[u'maroon', u'dump', u'bowen', u'murray']
[u'mayor', u'candid', u'prepar', u'earli']
[u'mayor', u'attack', u'indigen', u'hous', u'plan']
[u'meatwork', u'hear', u'offer']
[u'million', u'cake', u'destroy', u'tamper']
[u'miner', u'memori', u'plan', u'reveal', u'soon']
[u'mine', u'compani', u'welcom', u'stockbrok', u'attent']
[u'minist', u'launch', u'desert', u'race']
[u'minist', u'meet', u'gold', u'coast', u'councillor']
[u'monsoon', u'kill', u'score', u'india']
[u'polic', u'need', u'timor', u'ellison', u'say']
[u'motorcyclist', u'die', u'trailer', u'crash']
[u'myer', u'sale', u'finalis']
[u'neitz', u'keen', u'mileston']
[u'bridg', u'open', u'south', u'east']
[u'crack', u'childcar', u'fraud']
[u'school', u'wiluna', u'blast']
[u'warn', u'issu', u'iran', u'nuclear', u'capabl']
[u'plan', u'earli', u'elect', u'beatti', u'say']
[u'nrma', u'maintain', u'road', u'fund', u'pressur']
[u'host', u'apec', u'meet']
[u'senat', u'urg', u'govt', u'spend', u'indigen', u'fund']
[u'opposit', u'keep', u'pressur', u'govt', u'line']
[u'palestinian', u'pledg', u'wag']
[u'paralysi', u'chariti', u'kick', u'home', u'bris', u'famili']
[u'welfar', u'spotlight']
[u'rule', u'premium', u'rise', u'medibank', u'sale']
[u'reject', u'feder', u'takeov', u'hospit']
[u'polic', u'exhum', u'bodi', u'potenti', u'murder', u'case']
[u'polic', u'investig', u'perth', u'jewel', u'murder']
[u'polic', u'reconcili', u'statement', u'give']
[u'polic', u'warn', u'drink', u'driver', u'catch']
[u'port', u'piri', u'budget', u'deliv', u'rate', u'rise']
[u'power', u'final', u'william']
[u'project', u'address', u'great', u'lake', u'eros']
[u'protea', u'windi', u'battl', u'money']
[u'public', u'urg', u'help', u'miss', u'deckhand']
[u'quak', u'strike', u'near', u'tonga']
[u'race', u'fink', u'volunt']
[u'rail', u'link', u'stay', u'close', u'train', u'derail']
[u'ramo', u'horta', u'cautious', u'call', u'resign']
[u'ramo', u'horta', u'timor', u'defenc', u'minist']
[u'ranger', u'open', u'nitmiluk', u'gorg']
[u'inquiri', u'head', u'ballarat']
[u'recent', u'behaviour', u'appropri', u'say', u'howard']
[u'region', u'express', u'pull', u'armidal']
[u'report', u'jail', u'chines', u'villag', u'anger', u'human']
[u'report', u'find', u'lower', u'surviv', u'rat', u'indigen']
[u'report', u'highlight', u'lower', u'dairi', u'confid']
[u'research', u'order', u'chao', u'locust', u'swarm']
[u'retrench', u'plan', u'beaconsfield']
[u'rooney', u'spot', u'kick', u'ball', u'spark', u'bet', u'spree']
[u'sanfl', u'ceo', u'wife', u'implic', u'smoke', u'saga']
[u'warrawong', u'sanctuari', u'sell']
[u'secur', u'council', u'member', u'agre', u'iran', u'incent']
[u'share', u'market', u'end', u'week', u'flat']
[u'shire', u'start', u'fundrais', u'trucki', u'famili']
[u'shire', u'help', u'bathhous', u'closur']
[u'shire', u'lower', u'interpret', u'centr', u'entri']
[u'snowi', u'deal', u'collaps']
[u'snowi', u'hydro', u'sale', u'call']
[u'snowi', u'hydro', u'sale', u'collaps']
[u'snowi', u'hydro', u'sale', u'scrap']
[u'snowi', u'sale', u'backflip', u'nation', u'govt', u'say']
[u'snowi', u'sale', u'collaps', u'wont', u'affect', u'school', u'fund']
[u'spacewalk', u'complet', u'station', u'repair']
[u'springborg', u'defend', u'coalit']
[u'strong', u'head', u'australia', u'council', u'art']
[u'student', u'protest', u'work', u'chang']
[u'studi', u'examin', u'depress', u'cardiac', u'patient']
[u'studi', u'albani', u'region', u'wetland']
[u'submiss', u'favour', u'entertain', u'centr']
[u'syrian', u'forc', u'kill', u'alleg', u'terrorist', u'report']
[u'parliament', u'celebr', u'anniversari']
[u'plan', u'fuel', u'ethanol', u'industri', u'concern']
[u'team', u'find', u'rubbl', u'asteroid', u'hold', u'graviti']
[u'thoma', u'rest', u'lion', u'clash']
[u'thompson', u'wield', u'ahead', u'eagl', u'clash']
[u'time', u'snowi', u'hydro', u'fund', u'plan', u'govt', u'say']
[u'trucki', u'hurt', u'level', u'cross', u'crash']
[u'ugli', u'sheep', u'save', u'wool', u'industri']
[u'union', u'continu', u'fight', u'public', u'servic', u'super']
[u'union', u'question', u'fish', u'packag']
[u'unitab', u'headquart', u'stay', u'bligh']
[u'power', u'offer', u'iran', u'nuclear', u'incent', u'packag']
[u'upbeat', u'eel', u'readi', u'dragon', u'challeng']
[u'order', u'ethic', u'train', u'iraq', u'troop']
[u'promis', u'justic', u'murder', u'iraqi', u'civilian']
[u'vanston', u'defend', u'immigr', u'dept', u'jean']
[u'vest', u'act', u'coach', u'glori']
[u'court', u'hear', u'wil', u'spread']
[u'vietnam', u'vet', u'feder', u'govt', u'measur']
[u'vineyard', u'spark', u'mediat', u'confer']
[u'voluntari', u'euthanasia', u'campaign', u'hold', u'workshop']
[u'govt', u'indigen', u'deal']
[u'walcott', u'gambl']
[u'wast', u'water', u'pipelin', u'ditch', u'measur', u'beatti']
[u'webck', u'mcguir', u'warrior', u'clash']
[u'weston', u'destroy', u'cake', u'stock']
[u'wimmera', u'malle', u'pipelin', u'cost', u'climb']
[u'winter', u'chill', u'prompt', u'child', u'safeti', u'warn']
[u'wollongong', u'adopt', u'state', u'back', u'plan', u'blueprint']
[u'woman', u'die', u'sunshin', u'coast', u'blaze']
[u'woman', u'abus', u'scandal', u'await', u'compo']
[u'work', u'begin', u'cudal', u'hospit']
[u'adriano', u'avoid', u'socceroo', u'defend']
[u'allow', u'take', u'queensland', u'oak']
[u'ankl', u'fractur', u'put', u'shoaib', u'england', u'tour', u'doubt']
[u'annan', u'criticis', u'aid', u'confer', u'outcom']
[u'aust', u'command', u'refus', u'portug']
[u'australia', u'face', u'embarrass', u'law', u'actu']
[u'injuri', u'threaten', u'allenbi', u'open']
[u'beaconfield', u'worker', u'give', u'monday', u'deadlin']
[u'beaconsfield', u'miner', u'recount', u'ordeal', u'audienc']
[u'beaconsfield', u'miner', u'weigh', u'redund', u'packag']
[u'beckham', u'nomin', u'world']
[u'birth', u'highlight', u'asylum', u'seeker', u'polici', u'cruelti']
[u'brutal', u'flintoff', u'give', u'england', u'edg']
[u'buckley', u'lead', u'pie', u'lion']
[u'builder', u'foreign', u'worker', u'answer', u'shortag']
[u'bulldog', u'ecstat', u'knight']
[u'bulldog', u'class', u'knight']
[u'centralis', u'control', u'aust', u'water']
[u'calm', u'weigh', u'continu', u'whale', u'search']
[u'canada', u'polic', u'arrest', u'terror', u'offenc']
[u'carrol', u'play', u'origin', u'meninga']
[u'carter', u'warn', u'iran', u'condit']
[u'caterpillar', u'wish', u'debut', u'robe']
[u'childcar', u'group', u'give', u'qualifi', u'support', u'swipe']
[u'childcar', u'monitor', u'plan', u'prompt', u'cost', u'fear']
[u'closer']
[u'closer', u'news']
[u'denmark', u'move', u'femal', u'success', u'throne']
[u'dont', u'leav', u'late', u'republican', u'debat', u'say']
[u'downer', u'arriv', u'dili', u'peac', u'talk']
[u'downer', u'arriv', u'dili', u'talk']
[u'downer', u'arriv', u'east', u'timor']
[u'downer', u'call', u'larger', u'role', u'timor']
[u'downer', u'meet', u'timor', u'leader']
[u'downer', u'nuclear', u'power', u'idea', u'ridicul', u'say', u'labor']
[u'downer', u'hold', u'talk', u'timor', u'leader']
[u'eagl', u'produc', u'miracul', u'escap', u'cat']
[u'eastman', u'public', u'hous', u'flat']
[u'egypt', u'polic', u'kill', u'want', u'dahab', u'blast']
[u'emot', u'homecom', u'hiddink']
[u'eriksson', u'name', u'shoot', u'quartet']
[u'timor', u'refuge', u'camp', u'potenti', u'flashpoint']
[u'europ', u'space', u'station', u'arriv', u'florida']
[u'ford', u'claim', u'quinella', u'open', u'race']
[u'ford', u'quinella', u'open', u'race']
[u'judg', u'lead', u'renew', u'free', u'hick']
[u'fraser', u'urg', u'water', u'inquiri', u'snowi', u'backflip']
[u'fremantl', u'make', u'progress', u'counter', u'terror']
[u'fremantl', u'outlast', u'gallant', u'tiger']
[u'georg', u'weston', u'secur', u'effort', u'encourag', u'health']
[u'germani', u'thrash', u'colombia', u'final', u'warm']
[u'giant', u'meteor', u'spawn', u'australian', u'contin']
[u'gibernau', u'take', u'pole', u'ducati', u'mugello']
[u'girl', u'die', u'iranian', u'earthquak']
[u'govern', u'concret', u'aid', u'commit']
[u'govt', u'exagger', u'claim', u'teacher', u'union', u'say']
[u'green', u'plan', u'snowi', u'hydro', u'sell', u'consent']
[u'hawk', u'suffer', u'loss']
[u'heffernan', u'call', u'water', u'referendum']
[u'hell', u'angel', u'face', u'disrupt', u'head', u'west']
[u'henin', u'hardenn', u'myskina', u'eas']
[u'hewitt', u'close', u'nadal', u'clash', u'french', u'open']
[u'howard', u'discuss', u'iran', u'iraq', u'bush']
[u'blow', u'molik', u'admit']
[u'examin', u'workplac', u'law']
[u'indian', u'woman', u'wed', u'king', u'cobra']
[u'indonesia', u'dili', u'unrest', u'say', u'downer']
[u'indonesian', u'quak', u'survivor', u'shake', u'tremor']
[u'ing', u'lead', u'storm', u'victori']
[u'iranian', u'presid', u'reject', u'nuclear', u'incent', u'packag']
[u'iran', u'signal', u'defianc', u'nuclear', u'incent']
[u'iraq', u'reject', u'probe', u'clear', u'troop', u'kill']
[u'japan', u'injuri', u'crisi', u'boost', u'socceroo']
[u'junior', u'strong', u'fiji']
[u'kewel', u'surpris', u'return', u'action']
[u'labor', u'condemn', u'appeal', u'nativ', u'titl']
[u'restrict', u'lotteri', u'ticket', u'sale']
[u'lawyer', u'john', u'marsden', u'farewel']
[u'lawyer', u'lead', u'renew', u'call', u'free', u'hick']
[u'malthous', u'warn', u'brown', u'fixat']
[u'arrest', u'alleg', u'drive']
[u'meninga', u'hold', u'fond', u'memori', u'canberra']
[u'minist', u'flag', u'mitchel', u'liquor', u'licenc']
[u'minist', u'ignor', u'deceit', u'spirit', u'ferri']
[u'nelson', u'seek', u'asian', u'help', u'timor']
[u'nepal', u'communist', u'republ']
[u'newman', u'call', u'brisban', u'wast', u'water', u'debat']
[u'speci', u'discov', u'coast']
[u'jail', u'ghraib', u'handler']
[u'norway', u'urg', u'lower', u'whale', u'quota']
[u'nurs', u'welcom', u'rise']
[u'opposit', u'call', u'telstra', u'medibank', u'pull']
[u'opposit', u'want', u'investig', u'infect']
[u'opposit', u'welcom', u'snowi', u'decis']
[u'wwii', u'bomb', u'world', u'final', u'venu']
[u'port', u'brogan', u'involv', u'alleg', u'alterc']
[u'portug', u'refus', u'aust', u'command', u'timor']
[u'portug', u'refus', u'australian', u'command', u'timor']
[u'pregnant', u'sow', u'exercis']
[u'budget', u'includ', u'helicopt', u'spend']
[u'child', u'servic', u'centr', u'budget', u'boost']
[u'raider', u'hold', u'beat', u'rabbitoh']
[u'rain', u'hit', u'memori']
[u'rossi', u'reign', u'italian', u'practic']
[u'rubi', u'award', u'recognis', u'artist', u'contribut']
[u'russian', u'diplomat', u'report', u'kill', u'iraq']
[u'union', u'debat', u'reopen', u'canada']
[u'schifcofsk', u'reliev', u'narrow', u'rabbitoh']
[u'search', u'miss', u'tourist']
[u'senior', u'liber', u'want', u'centralis', u'control']
[u'solana', u'visit', u'iran', u'propos']
[u'specif', u'intellig', u'prompt', u'london', u'anti']
[u'thousand', u'turn', u'maoist', u'ralli', u'nepal']
[u'thunderbird', u'turn', u'class']
[u'apologis', u'incorrect', u'renew', u'notic']
[u'tourist', u'locat', u'crash']
[u'trap', u'babi', u'rescu', u'heat', u'duct']
[u'tribun', u'jail', u'rwandan', u'militia', u'chief']
[u'troop', u'claim', u'local', u'victori', u'taliban']
[u'turnbul', u'pour', u'cold', u'water', u'referendum']
[u'arrest', u'london', u'anti', u'terror', u'raid']
[u'appeal', u'quak', u'survivor']
[u'appeal', u'indonesia']
[u'appeal', u'quak', u'relief']
[u'uruguay', u'penalti', u'shoot']
[u'clear', u'troop', u'iraqi', u'death', u'ishaqi']
[u'share', u'mix', u'weak', u'job', u'report']
[u'troop', u'clear', u'misconduct']
[u'troop', u'clear', u'iraqi', u'death', u'ishaqi']
[u'help', u'timor', u'request', u'say', u'rumsfeld']
[u'vietnam', u'vet', u'assur', u'support', u'servic', u'continu']
[u'view', u'mountain']
[u'wada', u'blast', u'armstrong', u'report', u'farc']
[u'wadey', u'resid', u'seek', u'return', u'outstat']
[u'warrant', u'issu', u'alleg', u'fraudster']
[u'west', u'indi', u'control', u'india']
[u'miss', u'stun', u'upset']
[u'arrest', u'canadian', u'anti', u'terror', u'raid']
[u'kill', u'basra', u'bomb', u'blast']
[u'arrest', u'drug']
[u'offic', u'arriv', u'timor']
[u'offic', u'bolster', u'aust', u'troop', u'timor']
[u'armi', u'deploy', u'tackl', u'indian', u'plagu']
[u'asian', u'countri', u'urg', u'help', u'east', u'timor']
[u'atsb', u'report', u'lead', u'aircraft', u'tyre', u'retread', u'chang']
[u'aussi', u'darchinyan', u'retain', u'flyweight', u'titl']
[u'australian', u'sizzl', u'mare', u'nostrum']
[u'aust', u'troop', u'return', u'iraq']
[u'ballet', u'young', u'choreograph', u'beauti', u'music']
[u'banana', u'grower', u'council', u'levi']
[u'basra', u'bomb', u'death', u'toll', u'rise']
[u'beatti', u'open', u'suggest', u'wild', u'river', u'law']
[u'brogan', u'overreact', u'joke', u'say', u'alleg', u'victim']
[u'bronco', u'edg', u'past', u'warrior']
[u'budget', u'fund', u'ambul', u'servic']
[u'canadian', u'polic', u'foil', u'terror', u'cell']
[u'canadian', u'terror', u'suspect', u'face', u'court']
[u'canadian', u'terror', u'suspect', u'face', u'court']
[u'canberra', u'islam', u'group', u'steer', u'clear', u'nation']
[u'caracella', u'face', u'season', u'sidelin']
[u'carpent', u'urg', u'nuclear', u'wake']
[u'chilean', u'needl', u'grass', u'invad', u'hobart']
[u'closer']
[u'closer', u'news']
[u'conserv', u'opposit', u'favourit', u'czech']
[u'crouch', u'take', u'flak', u'despit', u'trick']
[u'darwin', u'polic', u'search', u'torch', u'vehicl']
[u'debat', u'begin', u'nuclear', u'futur']
[u'defo', u'fli', u'rooney', u'cover']
[u'downer', u'doubt', u'indonesian', u'involv', u'east', u'timor']
[u'timor', u'violenc', u'continu']
[u'feder', u'govt', u'pull', u'state', u'wage', u'case', u'hear']
[u'servic', u'monitor', u'cooyar']
[u'afghan', u'kill', u'bomber', u'target', u'governor']
[u'telephon', u'worker', u'shoot', u'dead', u'baghdad']
[u'fresh', u'clash', u'erupt', u'dili', u'street']
[u'fresh', u'fight', u'break', u'east', u'timor']
[u'gayl', u'bravo', u'sarwan', u'windi']
[u'govt', u'accus', u'secreci', u'nuclear', u'power', u'station']
[u'govt', u'commit', u'telstra', u'sale', u'vail']
[u'govt', u'quash', u'govt', u'say', u'transfer', u'power']
[u'grate', u'dead', u'keyboardist', u'die']
[u'impress', u'tiger', u'cowboy']
[u'indonesia', u'hop', u'timor', u'unrest']
[u'iran', u'presid', u'consid', u'atom', u'propos']
[u'iraqi', u'bloodsh', u'claim', u'live']
[u'islam', u'council', u'faction', u'announc', u'board']
[u'jamieson', u'power', u'york']
[u'kidnap', u'british', u'worker', u'free', u'nigeria']
[u'lownd', u'take', u'winton', u'round']
[u'barramundi', u'number', u'alarmist']
[u'maverick', u'final']
[u'mayor', u'prepar', u'cooma', u'snowi', u'victori', u'parti']
[u'arrest', u'follow', u'anti', u'terror', u'raid', u'canada']
[u'menzi', u'celebr', u'mileston', u'panther']
[u'menzi', u'jubil', u'mileston', u'match']
[u'militia', u'fight', u'rag', u'somalia', u'dead']
[u'minist', u'criticis', u'childcar', u'track', u'propos']
[u'minist', u'promis', u'region', u'polic', u'budget', u'fund']
[u'mix', u'emot', u'panther', u'stadium']
[u'montenegro', u'declar', u'independ']
[u'montenegro', u'proclaim', u'independ']
[u'arrest', u'like', u'fuel', u'theft', u'polic']
[u'moscow', u'confirm', u'diplomat', u'kill', u'kidnap']
[u'murali', u'win', u'battl', u'pietersen']
[u'nadal', u'escap', u'marathon', u'hewitt', u'clash']
[u'nation', u'challeng', u'watkin', u'goulburn', u'workshop']
[u'neitz', u'continu', u'record', u'spree']
[u'neitz', u'lead', u'demon', u'saint']
[u'zealand', u'troop', u'rock', u'dili', u'haka']
[u'nigerian', u'presid', u'join', u'hostag', u'mediat']
[u'evid', u'indonesian', u'involv', u'east']
[u'want', u'feder', u'snowi', u'share']
[u'nuclear', u'list', u'earmark', u'research', u'say', u'govt']
[u'nuclear', u'power', u'cost', u'report', u'launch', u'debat']
[u'opposit', u'demand', u'releas', u'econom', u'report']
[u'organ', u'transplant', u'recipi', u'thank']
[u'limit', u'gambl', u'counsellor']
[u'perth', u'mandurah', u'rail', u'project', u'hit', u'mileston']
[u'pettersson', u'scott', u'lurk']
[u'phoenix', u'crush', u'oriol']
[u'plan', u'permiss', u'seek', u'hatter', u'mural']
[u'resign', u'solv', u'timor', u'crisi']
[u'polic', u'appeal', u'public', u'cyclist', u'death']
[u'polic', u'investig', u'pair', u'dead', u'properti']
[u'polic', u'investig', u'violent', u'death', u'melbourn']
[u'port', u'power', u'carlton']
[u'postal', u'worker', u'wage', u'protest', u'boss', u'home']
[u'power', u'problem', u'pacif', u'paradis']
[u'polic', u'percent', u'fund', u'boost', u'beatti']
[u'quiet', u'tiananmen', u'anniversari', u'beij']
[u'radiat', u'vaccin', u'possibl']
[u'alert', u'effect', u'merapi']
[u'resid', u'celebr', u'demis', u'snowi', u'hydro', u'sale']
[u'russian', u'diplomat', u'kill', u'kidnap']
[u'migrant', u'honour', u'monument']
[u'reject', u'feder', u'water', u'control']
[u'scientist', u'frazer', u'name', u'queensland', u'year']
[u'shelter', u'concern', u'java', u'quak', u'relief']
[u'perci', u'snatch', u'epsom', u'triumph']
[u'south', u'africa', u'world']
[u'sport', u'field', u'restor', u'fund']
[u'staniforth', u'forc', u'reckon']
[u'strong', u'wind', u'warn', u'northern', u'australian', u'coast']
[u'studi', u'discov', u'sing', u'help', u'mental', u'health']
[u'swan', u'snatch', u'late', u'kangaroo']
[u'tiger', u'satisfi', u'cowboy', u'reflect']
[u'tight', u'tussl', u'auckland']
[u'seed', u'high', u'alert']
[u'troop', u'return', u'home', u'month', u'muthanna']
[u'tunnel', u'funnel', u'stop', u'say', u'govt']
[u'polic', u'search', u'chemic', u'bomb']
[u'terror', u'suspect', u'say', u'polic', u'shoot', u'warn']
[u'endors', u'blueprint', u'fight', u'aid']
[u'union', u'hop', u'bailout', u'spirit', u'ferri']
[u'staff', u'warn', u'east', u'timor', u'massacr', u'probe']
[u'captain', u'reyna', u'czech', u'open']
[u'vail', u'back', u'boswel', u'select']
[u'vail', u'hold', u'name', u'nuclear', u'reactor', u'sit']
[u'vaughan', u'need', u'counti', u'cricket']
[u'urg', u'protect', u'growth', u'forest']
[u'wilkshir', u'start', u'dutch']
[u'woman', u'driver', u'arrest', u'breath', u'test']
[u'worksaf', u'investig', u'build', u'site', u'accid']
[u'zico', u'say', u'japan', u'surpris', u'store']
[u'power', u'boost', u'camoow']
[u'abbott', u'slam', u'rural', u'health', u'hyperbol']
[u'acupunctur', u'link', u'success']
[u'alkatiri', u'brush', u'resign', u'call']
[u'alleg', u'taxi', u'theft', u'lead', u'bodi', u'discoveri']
[u'ansto', u'dismiss', u'conflict', u'claim']
[u'arm', u'robber', u'assault', u'fast', u'food', u'staff']
[u'artist', u'avoid', u'jail', u'centrelink', u'fraud']
[u'rais', u'refuge', u'illawarra']
[u'baggag', u'courier', u'face', u'stalk', u'charg']
[u'bailey', u'come', u'blue']
[u'ballina', u'mayor', u'say', u'absente', u'prevent', u'vote']
[u'batteri', u'hill', u'mine', u'centr', u'close']
[u'beaconsfield', u'redund', u'fall', u'short']
[u'beatti', u'consid', u'take', u'control', u'council', u'water']
[u'beij', u'stall']
[u'bell', u'protest', u'go', u'nation']
[u'bendigo', u'resid', u'rais', u'issu', u'pollut']
[u'black', u'specul', u'budget', u'fund', u'break', u'hill']
[u'bowen', u'dump', u'origin']
[u'brigadi', u'rule', u'kick', u'ars', u'dili']
[u'brogan', u'apologis', u'airport', u'alterc']
[u'break', u'hill', u'discuss', u'unfair', u'rat', u'hickey']
[u'brown', u'coal', u'rat', u'poor', u'environment', u'review']
[u'bundaberg', u'busi', u'support', u'econom', u'develop']
[u'cahil', u'say', u'socceroo', u'work']
[u'campaign', u'underlin', u'seafood', u'industri']
[u'canberra', u'sport', u'oval', u'restor']
[u'cape', u'group', u'fight', u'wild', u'river', u'protect']
[u'caracella', u'injuri', u'prompt', u'call', u'rule', u'review']
[u'caracella', u'futur', u'doubt']
[u'crash', u'kill', u'coupl']
[u'train', u'collis', u'kill']
[u'claim', u'develop', u'chang', u'cost', u'council']
[u'clean', u'plan', u'kakadu', u'uranium', u'mine', u'reveal']
[u'closer']
[u'closer']
[u'closer']
[u'colleg', u'work', u'rural', u'school']
[u'communic', u'breakdown', u'mar', u'london', u'bomb']
[u'concern', u'miss', u'caloundra']
[u'concern', u'remain', u'snowi', u'sale']
[u'councillor', u'urg', u'firm', u'stanc', u'nightclub']
[u'council', u'criticis', u'timber', u'plantat', u'draft', u'cod']
[u'council', u'urg', u'budget', u'wast', u'manag']
[u'cowboy', u'lack', u'half', u'intens', u'coach']
[u'crime', u'expert', u'call', u'post', u'jail']
[u'csiro', u'predict', u'larg', u'water', u'price', u'rise']
[u'csiro', u'predict', u'water', u'price', u'rise']
[u'csiro', u'warn', u'rise', u'water', u'price']
[u'cure', u'evangelist', u'sentenc', u'abus']
[u'protest', u'threat', u'wont', u'sway', u'beatti']
[u'demand', u'worker', u'steadi']
[u'dept', u'fishermen', u'warn', u'import', u'prawn', u'diseas']
[u'doctor', u'warn', u'rural', u'health', u'crisi']
[u'dozen', u'baghdad', u'transport', u'worker', u'abduct']
[u'drink', u'drive', u'policeman', u'demot']
[u'drink', u'driver', u'arrest', u'twice']
[u'weather', u'allow', u'late', u'fuel', u'reduct', u'burn']
[u'eagl', u'swap', u'footbal', u'egg', u'train']
[u'east', u'timor', u'leader', u'need', u'howard']
[u'timor', u'parliament', u'begin', u'emerg', u'sit']
[u'timor', u'violenc', u'control', u'downer']
[u'timor', u'violenc', u'control', u'downer', u'say']
[u'evan', u'tate', u'rule']
[u'expert', u'sceptic', u'perth', u'water', u'price', u'rise']
[u'presid', u'garcia', u'win', u'peru', u'elect']
[u'fall', u'snapper', u'price', u'prompt', u'call', u'limit']
[u'fan', u'promis', u'fewer', u'problem', u'final', u'ash']
[u'father', u'unlik', u'charg', u'shoot']
[u'fear', u'develop', u'chang', u'prove', u'cost']
[u'fink', u'desert', u'race', u'underway']
[u'firefight', u'protect', u'hous', u'blaze']
[u'fisher', u'wild', u'barramundi', u'catch', u'limit']
[u'nuclear', u'plant', u'need', u'viabil', u'ansto']
[u'disrupt', u'flight', u'melbourn', u'airport']
[u'nuclear', u'plant', u'need', u'econom', u'viabil']
[u'fourth', u'place', u'finish', u'scott']
[u'fraser', u'coast', u'doctor', u'group', u'call', u'wiser', u'health']
[u'frazer', u'name', u'queensland', u'year']
[u'fund', u'alloc', u'overhaul', u'hospit', u'emerg']
[u'fund', u'shortfal', u'hinder', u'rescu', u'train']
[u'gladston', u'interest', u'refineri', u'mayor']
[u'between', u'bridg', u'propos', u'win', u'support']
[u'gold', u'coast', u'nation', u'contend', u'withdraw']
[u'govern', u'urg', u'boost', u'murray', u'protect']
[u'govt', u'consid', u'tafe', u'train', u'restaur', u'futur']
[u'govt', u'stand', u'firm', u'light', u'rail', u'propos']
[u'govt', u'urg', u'interven', u'sawmil', u'disput']
[u'grafton', u'await', u'highway', u'rout', u'decis']
[u'gronholm', u'win', u'ralli', u'greec']
[u'group', u'seek', u'govt', u'help', u'reduc', u'region', u'alcohol']
[u'herp', u'like', u'virus', u'threaten', u'abalon', u'stock']
[u'hewitt', u'plot', u'nadal', u'downfal']
[u'higher', u'fuel', u'cost', u'brake', u'drive', u'holiday']
[u'histor', u'outback', u'hotel', u'sale']
[u'hope', u'welfar', u'work', u'boost', u'childcar', u'worker']
[u'howard', u'deni', u'timor', u'troop', u'overstretch']
[u'howard', u'tight', u'lip', u'nuclear', u'inquiri', u'boss']
[u'howard', u'pursu', u'talk', u'yudhoyono']
[u'howard', u'warn', u'nuclear', u'fear', u'campaign']
[u'hundr', u'evacu', u'near', u'indonesian', u'volcano']
[u'hunter', u'region', u'push', u'better', u'mental', u'health']
[u'indian', u'father', u'sell', u'twin']
[u'indonesia', u'deni', u'fuel', u'dili', u'unrest']
[u'indonesian', u'fishermen', u'jail', u'poach']
[u'indonesian', u'volcano', u'churn', u'lava']
[u'injur', u'timores', u'polic', u'mend']
[u'injuri', u'forc', u'leppitsch', u'retir']
[u'inquest', u'find', u'unit', u'blaze', u'death', u'accident']
[u'iran', u'curb', u'suppli', u'amid', u'nuclear']
[u'iran', u'disrupt', u'suppli', u'nuclear']
[u'iraqi', u'jail', u'worker', u'death']
[u'irwin', u'croc', u'hunt', u'claim', u'base', u'fact']
[u'islamist', u'seiz', u'mogadishu', u'warlord']
[u'jaffer', u'give', u'india', u'upper', u'hand']
[u'java', u'nuclear', u'plan', u'worri']
[u'joyc', u'want', u'ethanol', u'subsidi', u'extend']
[u'judiciari', u'hand', u'heavi', u'penalti', u'rough']
[u'kangaroo', u'island', u'call', u'emerg', u'mobil']
[u'kangaroo', u'loss', u'lowest', u'point', u'season']
[u'kempsey', u'resid', u'want', u'council', u'investig']
[u'land', u'releas', u'gungahlin', u'age', u'care', u'home']
[u'launceston', u'lead', u'popul', u'growth']
[u'lennon', u'announc', u'spirit', u'sale']
[u'liber', u'nation', u'bicker', u'senat', u'ticket']
[u'littl', u'public', u'support', u'show', u'plan']
[u'lobster', u'fishermen', u'deni', u'flood', u'market', u'snapper']
[u'mackay', u'residenti', u'construct', u'delay']
[u'charg', u'warrnambool', u'stab']
[u'die', u'train', u'collis']
[u'die', u'maitland', u'crash']
[u'guilti', u'bondag', u'death']
[u'march', u'flood', u'continu', u'impact', u'river', u'crop']
[u'marin', u'hang', u'clark', u'petri']
[u'mcgradi', u'air', u'nuclear', u'facil', u'opposit']
[u'mine', u'attract', u'england', u'skill', u'worker']
[u'minist', u'defend', u'teacher', u'manual', u'divers']
[u'miss', u'deckhand', u'famili', u'give', u'hope']
[u'mitsubishi', u'buck', u'sale', u'trend']
[u'kill', u'iraq', u'attack']
[u'reject', u'nuclear', u'propos', u'goulburn']
[u'see', u'turmoil', u'conserv', u'leader']
[u'interest', u'have', u'nuclear', u'reactor']
[u'mysteri', u'surround', u'tree', u'knowledg', u'poison']
[u'navel', u'gaze', u'church', u'priest', u'say']
[u'time', u'frame', u'henti', u'land', u'rezon']
[u'govt', u'hear', u'shire', u'concern']
[u'chief', u'minist', u'pressur']
[u'nuclear', u'propos', u'danger', u'rann']
[u'nuclear', u'reactor', u'welcom', u'goulburn', u'mayor', u'say']
[u'metal', u'price', u'boost']
[u'seed', u'crush', u'plant', u'boost', u'hour']
[u'pair', u'charg', u'frank', u'crash']
[u'petrol', u'station', u'price', u'fix', u'appeal', u'uphold']
[u'inquiri', u'hear', u'evid', u'miss', u'woman']
[u'breed', u'code', u'criticis', u'cruel']
[u'plan', u'afoot', u'address', u'abalon', u'virus']
[u'detail', u'nuclear', u'inquiri', u'plan']
[u'unveil', u'detail', u'nuclear', u'inquiri']
[u'warn', u'nuclear', u'fear', u'campaign']
[u'polic', u'arrest', u'truck', u'driver', u'fuel', u'theft']
[u'polic', u'charg', u'pair', u'nightclub', u'drug', u'oper']
[u'polic', u'consid', u'prosecut', u'brogan', u'airport']
[u'polic', u'hunt', u'groceri', u'store', u'knife', u'bandit']
[u'polic', u'probe', u'lesli', u'media', u'appear']
[u'polic', u'search', u'fast', u'food', u'outlet', u'thief']
[u'polic', u'threaten', u'teen', u'elder']
[u'polic', u'monitor', u'climat', u'chang', u'protest']
[u'poll', u'find', u'support', u'recycl', u'refund']
[u'project', u'build', u'polic', u'station', u'welcom']
[u'protest', u'shop', u'centr', u'recreat']
[u'conserv', u'scrap', u'corner', u'contest']
[u'region', u'airport', u'receiv', u'secur', u'upgrad']
[u'quak', u'death', u'toll', u'revis']
[u'queensland', u'coalit', u'parti', u'choos', u'broadwat']
[u'radic', u'plan', u'hold', u'world', u'year']
[u'radio', u'assault', u'celebr', u'poll', u'condemn']
[u'rain', u'fail', u'eas', u'goulburn', u'drought']
[u'recycl', u'water', u'disput', u'go', u'tribun']
[u'redback', u'squad', u'field', u'newcom']
[u'region', u'food', u'compani', u'feder', u'grant']
[u'repair', u'hamper', u'water', u'servic']
[u'road', u'accid', u'site', u'need', u'better', u'light', u'safeti']
[u'disappear', u'puzzl', u'wildlif', u'park']
[u'councillor', u'panel', u'appoint']
[u'club', u'go', u'receivership']
[u'rudd', u'urg', u'polic', u'timor']
[u'rural', u'doctor', u'highlight', u'world', u'health', u'servic']
[u'saddam', u'lawyer', u'wast', u'time']
[u'salvo', u'push', u'poki', u'phase']
[u'save', u'water', u'stop', u'price', u'rise', u'thwait']
[u'schwarzer', u'start', u'guarante', u'hiddink']
[u'sexual', u'assault', u'spark', u'polic', u'hunt']
[u'sizzler', u'food', u'poison', u'claim', u'probe']
[u'smirker', u'employ', u'administr']
[u'smith', u'win', u'logan', u'elect']
[u'snowtown', u'accomplic', u'appeal', u'sentenc']
[u'snowi', u'celebr', u'ting', u'concern']
[u'socceroo', u'hold', u'dutch', u'draw', u'world', u'warm']
[u'socceroo', u'hold', u'netherland', u'draw']
[u'socceroo', u'surviv', u'group', u'stage', u'ruud']
[u'socceroo', u'readi', u'world', u'hiddink']
[u'guantanamo', u'detaine', u'hunger', u'strike']
[u'spirit', u'boss', u'heartbroken']
[u'stanhop', u'deni', u'windfal', u'squander']
[u'state', u'squander', u'great', u'shame']
[u'state', u'blame', u'water', u'woe', u'turnbul']
[u'student', u'arrest', u'anti', u'howard', u'protest']
[u'student', u'showcas', u'environment', u'sound', u'project']
[u'student', u'plant', u'tree', u'nation', u'park']
[u'support', u'expect', u'continu', u'ethanol', u'blend']
[u'surfer', u'drown', u'coast']
[u'sydney', u'ferri', u'sell']
[u'test', u'posit', u'hydatid', u'tapeworm']
[u'tasmania', u'enforc', u'woodheat', u'regul']
[u'tasmanian', u'appl', u'industri', u'face', u'tough', u'competit']
[u'windfal', u'spend', u'public', u'servant', u'salari']
[u'teacher', u'face', u'student', u'assault', u'charg']
[u'teen', u'remain', u'critic', u'injur', u'crash']
[u'teen', u'want', u'school', u'stab']
[u'charg', u'lay', u'weekend', u'play']
[u'terror', u'suspect', u'lawyer', u'refus', u'check']
[u'timber', u'worker', u'payout', u'tax']
[u'time', u'run', u'council', u'draft', u'manag', u'plan']
[u'town', u'camp', u'bash', u'victim', u'move', u'adelaid']
[u'troop', u'battl', u'control', u'timor', u'violenc']
[u'tunnel', u'oper', u'mull', u'legal', u'action', u'road']
[u'criticis', u'portray', u'asylum', u'seeker']
[u'push', u'iran', u'nuclear', u'offer']
[u'refus', u'compens', u'agent', u'orang', u'victim']
[u'appeal', u'osland', u'petit', u'merci', u'rule']
[u'victoria', u'urg', u'renew', u'energi', u'focus']
[u'view', u'mountain', u'fan', u'rotterdam']
[u'violenc', u'continu', u'dili', u'street']
[u'violenc', u'timor', u'control', u'downer']
[u'farmer', u'advis', u'stop', u'plant']
[u'warn', u'issu', u'tweed', u'offer']
[u'water', u'review', u'rais', u'cost', u'tamworth', u'region']
[u'urg', u'natur', u'power', u'nuclear']
[u'wed', u'comedi', u'reign', u'movi', u'award']
[u'westpoint', u'promot', u'asset', u'freez']
[u'wilkshir', u'say', u'send', u'unfair']
[u'wodonga', u'rat', u'rise']
[u'woman', u'charg', u'attempt', u'arm', u'robberi']
[u'young', u'choreograph', u'face', u'music']
[u'abba', u'push', u'referendum', u'border']
[u'abba', u'date', u'border', u'referendum']
[u'crew', u'attack', u'dili']
[u'abort', u'drug', u'bind']
[u'academ', u'fear', u'higher', u'math', u'uptak']
[u'presid', u'warn', u'nuclear', u'expans']
[u'budget', u'rais', u'cost', u'live']
[u'govt', u'unveil', u'budget']
[u'afl', u'headland', u'ablett', u'clear', u'charg']
[u'italian', u'holiday', u'blair', u'fli', u'home', u'cost']
[u'agforc', u'cast', u'doubt', u'csiro', u'water', u'plan']
[u'fail', u'rais', u'bomb', u'question']
[u'anti', u'alkatiri', u'protest', u'enter', u'dili']
[u'archipelago', u'declar', u'indigen', u'protect', u'area']
[u'galleri', u'adopt', u'entri', u'donat']
[u'asthmat', u'warn', u'perth', u'smoke', u'haze']
[u'astronaut', u'shuttl']
[u'australia', u'tougher', u'croatia', u'japan', u'nakamura']
[u'aust', u'wheat', u'price', u'surg', u'intern']
[u'award', u'recognis', u'southern', u'school']
[u'backbench', u'brief', u'nuclear', u'plan']
[u'barraba', u'resid', u'cautious', u'welcom', u'mine']
[u'bashir', u'free', u'week']
[u'blairgowri', u'yacht', u'thief', u'jail']
[u'blue', u'injuri', u'free', u'train']
[u'bowler', u'maintain', u'pipelin', u'push']
[u'charg', u'school', u'stab']
[u'bribbare', u'decid', u'bore', u'drill']
[u'budget', u'school', u'closur', u'shock', u'parent']
[u'builder', u'ask', u'foreign', u'worker']
[u'burrel', u'guilti', u'whelan', u'murder']
[u'busi', u'chamber', u'look', u'budget', u'foster']
[u'cabinet', u'debat', u'nuclear', u'power']
[u'drought', u'prepared']
[u'carpent', u'hint', u'project', u'approv']
[u'cash', u'incent', u'germani', u'star']
[u'channel', u'job']
[u'closer']
[u'closer']
[u'coalit', u'put', u'focus', u'win', u'hervey']
[u'coltman', u'favourit', u'contest', u'ballarat', u'liber']
[u'committe', u'fight', u'shop', u'centr', u'plan']
[u'commonwealth', u'overturn', u'civil', u'union']
[u'communiti', u'closer', u'itali', u'trochus', u'deal']
[u'communiti', u'facilit', u'posit', u'readvertis']
[u'compani', u'criticis', u'search', u'explos', u'factori']
[u'concern', u'rais', u'dolphin', u'death', u'increas']
[u'council', u'adopt', u'plan', u'slop', u'sit']
[u'council', u'budget', u'water', u'main', u'repair']
[u'council', u'employe', u'protest', u'propos']
[u'council', u'hop', u'thousand', u'attend']
[u'council', u'maintain', u'convent', u'centr', u'support']
[u'council', u'rethink', u'rise', u'jetti', u'moor', u'fee']
[u'council', u'boulder', u'polic', u'station', u'site']
[u'court', u'evan', u'tate', u'liquid', u'decis']
[u'cowboy', u'question', u'bowen', u'scott', u'origin', u'dump']
[u'crash', u'investig', u'find', u'plane', u'stall']
[u'current', u'account', u'deficit', u'fall']
[u'dairi', u'oper', u'seek', u'investor', u'fund']
[u'devonport', u'melbourn', u'ferri', u'fare', u'rise']
[u'diseas', u'outbreak', u'hit', u'abalon', u'industri']
[u'distribut', u'centr', u'contribut', u'town', u'growth']
[u'dog', u'deserv', u'point', u'despit', u'extra', u'mitchel']
[u'driver', u'die', u'level', u'cross', u'crash']
[u'driver', u'die', u'picton', u'crash']
[u'dump', u'nation', u'candid', u'doubt', u'liber']
[u'eel', u'smith', u'out', u'refere', u'push']
[u'releas', u'plant', u'recommend']
[u'offer', u'iran', u'fresh', u'anti', u'nuclear', u'deal']
[u'evan', u'tate', u'stave', u'liquid']
[u'polic', u'life', u'murder']
[u'expens', u'fee', u'grain', u'price', u'impact', u'grazier']
[u'telstra', u'chief', u'head', u'nuclear', u'inquiri']
[u'telstra', u'chief', u'head', u'nuclear', u'review']
[u'field', u'fossil', u'digger']
[u'fight', u'fund', u'oppos', u'supermarket', u'plan']
[u'finish', u'touch', u'kosciuszko', u'manag', u'plan']
[u'rebel', u'kill', u'indian', u'kashmir', u'clash']
[u'flintoff', u'specialist', u'ankl', u'problem']
[u'foreign', u'worker', u'help', u'xstrata', u'smelter', u'revamp']
[u'forestri', u'tasmania', u'boss', u'retir', u'satisfi']
[u'treasur', u'defend', u'govt', u'financi', u'manag']
[u'fuel', u'subsidi', u'extens', u'help', u'concret', u'firm']
[u'fund', u'allow', u'faster', u'emerg', u'dept', u'treatment']
[u'gender', u'bend', u'cane', u'toad']
[u'gidley', u'play', u'newcastl']
[u'gold', u'coast', u'back', u'govt', u'water', u'infrastructur']
[u'good', u'rain', u'critic', u'wimmera', u'malle', u'crop']
[u'govt', u'accus', u'sabotag', u'cross', u'citi', u'tunnel']
[u'govt', u'send', u'polic', u'timor', u'ruddock']
[u'govt', u'urg', u'deliv', u'budget', u'water', u'infrastructur']
[u'govt', u'urg', u'council', u'rate', u'peg']
[u'govt', u'warn', u'expand', u'nuclear', u'industri']
[u'grandmoth', u'sack', u'test', u'law']
[u'green', u'group', u'cautious', u'yarragade', u'aquif', u'plan']
[u'green', u'qualifi', u'open']
[u'green', u'seiz', u'gunn', u'market', u'downgrad']
[u'gusmao', u'plead', u'violenc']
[u'headland', u'ablett', u'challeng', u'charg']
[u'headland', u'ablett', u'clear', u'charg']
[u'health', u'servic', u'unhappi', u'leav', u'packag']
[u'hewitt', u'aim', u'wimbledon', u'dangerman']
[u'high', u'tech', u'solut', u'town', u'hall', u'clock']
[u'hope', u'remain', u'foreign', u'doctor', u'work', u'region']
[u'howard', u'deni', u'troop', u'handl', u'gang', u'violenc']
[u'howard', u'unveil', u'nuclear', u'inquiri', u'detail']
[u'hunt', u'fulfil', u'origin', u'dream']
[u'indigen', u'project', u'short', u'list', u'environ']
[u'indigen', u'women', u'confer', u'promot']
[u'indonesian', u'fisher', u'question', u'trepang', u'poach']
[u'industri', u'wast', u'consid', u'biodiesel', u'option']
[u'ing', u'rule', u'origin']
[u'ing', u'undergo', u'maroon', u'medic']
[u'injur', u'cootamundra', u'jockey', u'send', u'sydney']
[u'internet', u'affair', u'fuel', u'divorc', u'rate', u'studi']
[u'investig', u'continu', u'fatal', u'fight']
[u'iran', u'see', u'posit', u'sign', u'atom', u'propos']
[u'iraqi', u'releas', u'prison']
[u'judg', u'repeat', u'forens', u'test', u'critic']
[u'kobelk', u'read', u'report', u'decid', u'bushfir']
[u'land', u'right', u'campaign', u'vincent', u'die']
[u'late', u'dima', u'offic', u'displeas']
[u'latham', u'good', u'behaviour', u'bond']
[u'latham', u'good', u'behaviour', u'bond']
[u'leonora', u'gift', u'declar', u'success']
[u'liber', u'councillor', u'question', u'rate', u'rise']
[u'lion', u'keen', u'role', u'leppitsch']
[u'local', u'firm', u'infrastructur', u'fund']
[u'macadamia', u'farmer', u'face', u'bumper', u'crop', u'problem']
[u'face', u'court', u'biki', u'brawl', u'kickbox', u'comp']
[u'manufactur', u'activ', u'drop', u'year']
[u'maroon', u'bank', u'bigger', u'pack']
[u'mcguigan', u'simeon', u'suspend', u'grower', u'contract']
[u'militia', u'group', u'seiz', u'control', u'somalian', u'capit']
[u'minist', u'talk', u'spirit', u'ferri', u'servic']
[u'mix', u'view', u'air', u'water', u'debat']
[u'adventur', u'tourist', u'head', u'desert']
[u'light', u'shed', u'pedestrian', u'black', u'spot']
[u'staff', u'help', u'damag', u'grampian']
[u'back', u'beatti', u'push']
[u'hope', u'budget', u'deliv', u'road', u'fund']
[u'reject', u'claim', u'water', u'horticultur']
[u'want', u'hurdl', u'futur', u'snowi', u'sale']
[u'multiplex', u'continu', u'contractor', u'suit']
[u'fin', u'school', u'park', u'stoush']
[u'nation', u'campaign', u'address', u'level', u'cross', u'crash']
[u'nation', u'park', u'group', u'seek', u'forest', u'cattl', u'graze']
[u'countri', u'health', u'board', u'get', u'local', u'represent']
[u'newcrest', u'downgrad', u'product', u'estim']
[u'chang', u'water', u'shortag', u'order']
[u'compo', u'vietnames', u'agent', u'orang', u'victim']
[u'list', u'possibl', u'nuclear', u'sit', u'minist', u'say']
[u'budget', u'deficit', u'draw', u'critic']
[u'budget', u'fall']
[u'govern', u'deliv', u'budget', u'deficit']
[u'nuclear', u'power', u'debat', u'begin', u'canberra']
[u'nurs', u'home', u'safeti', u'crackdown', u'urg']
[u'offic', u'admit', u'suspect', u'murder', u'probe', u'flaw']
[u'opposit', u'fear', u'govt', u'cut', u'highway', u'patrol']
[u'page', u'look', u'nation', u'leadership']
[u'parramatta', u'eel', u'smith', u'out', u'refere', u'push']
[u'phone', u'scam', u'promis', u'florida', u'holiday']
[u'planemo', u'abl', u'form', u'system']
[u'plan', u'panel', u'reject', u'supermarket', u'plan']
[u'play', u'roger', u'insid', u'centr', u'say', u'horan']
[u'deni', u'nuclear', u'review', u'conflict']
[u'poki', u'increas', u'rule']
[u'polic', u'admit', u'mistak', u'vaughan', u'case']
[u'polic', u'identifi', u'train', u'crash', u'victim']
[u'polic', u'imperson', u'kidnap', u'baghdad']
[u'polic', u'implement', u'kapunda', u'recommend']
[u'polic', u'search', u'bank', u'robber']
[u'polic', u'threat', u'probe', u'begin', u'elcho']
[u'polic', u'sampl', u'record']
[u'pool', u'cool', u'balmi', u'darwin']
[u'poor', u'communic', u'blame', u'london', u'bomb']
[u'prejudic', u'civil', u'union', u'challeng']
[u'pritchard', u'commit', u'panther']
[u'produc', u'urg', u'watch', u'bird', u'pest']
[u'protest', u'add', u'eleph', u'suffer']
[u'protest', u'urg', u'alkatiri', u'resign']
[u'pump', u'caus', u'albert', u'blaze']
[u'govt', u'hand', u'budget', u'surplus']
[u'health', u'assess', u'tast', u'procedur']
[u'unveil', u'budget', u'surplus']
[u'quak', u'effort', u'hit', u'stride', u'amid', u'volcano', u'fear']
[u'rain', u'reveal', u'fossil', u'aplenti']
[u'richmond', u'brown', u'return']
[u'road', u'mainten', u'opposit']
[u'road', u'train', u'kill', u'pedestrian', u'katherin']
[u'rooney', u'train', u'england', u'comeback', u'hop', u'mount']
[u'rosa', u'star', u'rise']
[u'rudd', u'say', u'polic', u'need', u'east', u'timor']
[u'sack', u'grandmoth', u'test', u'law']
[u'sculptor', u'crowd', u'see']
[u'secker', u'face', u'speed', u'charg']
[u'secur', u'check', u'stoush', u'delay', u'terror', u'trial']
[u'sever', u'head', u'iraq']
[u'sexual', u'diseas', u'report', u'indigen', u'toddler']
[u'shire', u'put', u'condit', u'extra', u'tourist', u'bureau', u'fund']
[u'shoaib', u'tight', u'deadlin', u'prove', u'england', u'tour']
[u'simpson', u'want', u'budget', u'help', u'hospit', u'staff']
[u'sizzler', u'stay', u'open', u'despit', u'ill', u'concern']
[u'small', u'busi', u'issu']
[u'small', u'fall', u'malle', u'wild', u'number']
[u'smoke', u'ban', u'trade']
[u'socceroo', u'arriv', u'germani']
[u'socceroo', u'hold', u'german', u'base']
[u'grampian', u'school', u'fundrais', u'staff']
[u'south', u'break', u'hill', u'water', u'suppli', u'boost']
[u'spirit', u'sale', u'unlik', u'inflat', u'airfar']
[u'springborg', u'doubt', u'budget', u'promis']
[u'studi', u'consid', u'cabl', u'beach', u'impact']
[u'super', u'chang', u'afford', u'dutton']
[u'surgeon', u'remov', u'babi']
[u'suspect', u'murder', u'victim', u'widow', u'shoot']
[u'sydney', u'delug', u'miss', u'catchment']
[u'textil', u'firm', u'offer', u'redund']
[u'approv', u'import']
[u'thousand', u'petit', u'asylum', u'chang']
[u'thousand', u'protest', u'alkatiri', u'resign']
[u'treasur', u'approv', u'merger']
[u'trinidad', u'tobago', u'stop']
[u'troop', u'head', u'dili', u'protest']
[u'tuckey', u'urg', u'tidal', u'power']
[u'tuckey', u'wouldnt', u'oppos', u'local', u'nuclear', u'reactor']
[u'turtl', u'threaten', u'pipelin']
[u'union', u'move', u'beaconsfield', u'miner', u'job']
[u'fall', u'knock', u'share', u'market', u'lower']
[u'fight', u'nuclear', u'plant', u'plan']
[u'volunt', u'seek', u'census', u'histori', u'project']
[u'voss', u'lament', u'loss', u'physic']
[u'wadey', u'tension', u'eas', u'resid']
[u'wall', u'jitter', u'send', u'plummet']
[u'windi', u'chase', u'victori']
[u'windi', u'coach', u'downplay', u'catch', u'controversi']
[u'winemak', u'group', u'downgrad', u'vintag', u'estim']
[u'work', u'begin', u'marina', u'berth']
[u'workshop', u'discuss', u'dust', u'woe']
[u'bali', u'bomber', u'reveal', u'motiv']
[u'zero', u'emiss', u'coal', u'power', u'horizon']
[u'kidnap', u'iraqi', u'aliv']
[u'european', u'nation', u'facilit', u'rendit', u'report']
[u'fund', u'packag', u'benefit', u'suburban', u'ground']
[u'urg', u'alter', u'civil', u'union', u'law']
[u'administr', u'tribun', u'decid', u'high', u'rise', u'plan']
[u'alkatiri', u'agre', u'investig']
[u'back', u'whale', u'court', u'challeng']
[u'anti', u'whale', u'activist', u'stage', u'nation', u'protest']
[u'arm', u'stand', u'close', u'bundaberg', u'street']
[u'auspin', u'staff', u'pawn', u'contract', u'disput']
[u'aust', u'announc', u'dili', u'polic', u'deploy']
[u'australian', u'mountain', u'arriv', u'home']
[u'aust', u'join', u'dili', u'polic', u'deploy']
[u'conduct', u'beaconsfield', u'probe']
[u'babi', u'whale', u'rescu', u'near', u'geraldton']
[u'bashir', u'releas', u'immin']
[u'beatti', u'warn', u'age', u'care', u'home', u'safeti']
[u'beer', u'label', u'sexist']
[u'harvest', u'good', u'price', u'cheer', u'cane', u'grower']
[u'black', u'talk', u'budget', u'benefit', u'west']
[u'blokland', u'chief', u'magistr']
[u'british', u'soldier', u'clear', u'iraqi', u'murder', u'charg']
[u'broad', u'reject', u'bass', u'coast', u'shire', u'review']
[u'brown', u'push', u'exclus', u'brethren', u'probe']
[u'brumbi', u'hold', u'talk', u'rooster', u'cross']
[u'budget', u'deliv', u'mackay', u'road', u'fund']
[u'budget', u'offer', u'million', u'roadwork']
[u'bulldog', u'extra', u'blame', u'player']
[u'bush', u'welcom', u'possibl', u'iran', u'breakthrough']
[u'busi', u'chamber', u'highlight', u'budget', u'shortcom']
[u'busi', u'group', u'see', u'good', u'budget']
[u'cairn', u'mayor', u'moot', u'north', u'south', u'water', u'pipe']
[u'extra', u'year', u'mental', u'health']
[u'scrutini', u'wine', u'compo', u'packag']
[u'crash', u'victim', u'famili', u'seek', u'tougher', u'driver']
[u'carrol', u'rule', u'origin']
[u'child', u'rape', u'sentenc', u'increas', u'welcom']
[u'child', u'rapist', u'sentenc', u'increas']
[u'child', u'accus', u'flag', u'guilti', u'plea']
[u'china', u'accus', u'block', u'googl']
[u'china', u'accept', u'iron', u'price', u'hike']
[u'civil', u'union', u'threat', u'marriag']
[u'clark', u'unhappi', u'budget', u'transport', u'initi']
[u'closer', u'news']
[u'commonwealth', u'seek', u'staff', u'mutitjulu', u'polic']
[u'complaint', u'lodg', u'indigen', u'polic', u'staff']
[u'complaint', u'review', u'seek', u'booz']
[u'corbel', u'play', u'concern']
[u'costello', u'see', u'mine', u'boost', u'growth']
[u'council', u'await', u'notif', u'develop']
[u'council', u'brief', u'epsom', u'shop', u'plan']
[u'council', u'fund', u'medic', u'servic']
[u'council', u'includ', u'road', u'repair', u'fund', u'draft', u'budget']
[u'councillor', u'cull', u'applic']
[u'council', u'prepar', u'showground', u'showdown']
[u'council', u'govt', u'meet', u'south', u'coast', u'strategi']
[u'council', u'hold', u'bypass', u'plan', u'meet', u'resid']
[u'cowra', u'get', u'liquor', u'accord']
[u'debnam', u'commit', u'stamp', u'duti', u'concess']
[u'decis', u'reserv', u'paedophil', u'detent']
[u'demetriou', u'deni', u'clamp', u'game', u'physic']
[u'law', u'need', u'fix', u'opposit', u'say']
[u'doctor', u'step', u'campaign']
[u'dodgi', u'collector', u'cerebr', u'palsi', u'leagu', u'fund']
[u'drink', u'drive', u'transport', u'minist', u'leav', u'portfolio']
[u'drug', u'fill', u'envelop', u'head']
[u'eagl', u'concern', u'percentag']
[u'eel', u'fine', u'player', u'hotel', u'incid']
[u'elder', u'extradit', u'face', u'child']
[u'emerg', u'servic', u'boss', u'resign', u'budget']
[u'emiss', u'free', u'power', u'station', u'research']
[u'england', u'varndel', u'australia', u'test']
[u'probe', u'break', u'creek', u'pollut']
[u'eriksson', u'plead', u'calm', u'rooney', u'comeback', u'hop']
[u'timor', u'deploy', u'miser', u'say', u'labor']
[u'hostag', u'volunt', u'nuclear', u'panel']
[u'teacher', u'like', u'face', u'abus', u'charg']
[u'father', u'forc', u'deliv', u'stillborn', u'babi', u'roadsid']
[u'ferri', u'fare', u'rise', u'altern', u'seek']
[u'ferri', u'fare', u'rise', u'impact', u'limit', u'wriedt']
[u'fish', u'death', u'prompt', u'safeti', u'warn']
[u'bricki', u'take', u'centr', u'stage', u'milan']
[u'magistr', u'lose', u'regain']
[u'fraser', u'see', u'good', u'budget']
[u'supplier', u'see', u'benefit', u'nuclear', u'power', u'inquiri']
[u'gatto', u'front', u'primelif', u'case']
[u'east', u'coast', u'worker', u'chanc', u'beazley', u'say']
[u'global', u'polit', u'featur', u'festiv']
[u'govt', u'accus', u'break', u'polic', u'station', u'pledg']
[u'govt', u'defend', u'renew', u'energi', u'invest']
[u'govt', u'get', u'tough', u'juvenil', u'detaine']
[u'govt', u'tight', u'lip', u'stadium', u'fund']
[u'great', u'western', u'highway', u'budget', u'fund', u'drop', u'nrma']
[u'growth', u'climb']
[u'hall', u'creek', u'youth', u'scheme']
[u'hama', u'give', u'day', u'palestinian', u'statehood']
[u'help', u'gorgon', u'build', u'mainland', u'plant', u'govt', u'tell']
[u'hop', u'landcar', u'deal', u'reviv', u'movement']
[u'hoteli', u'blame', u'smoke', u'ban', u'trade', u'drop']
[u'howard', u'deni', u'govt', u'ignor', u'renew', u'energi']
[u'illeg', u'fish', u'compo', u'claim', u'reject']
[u'immigr', u'deni', u'hamper', u'access', u'asylum']
[u'india', u'offer', u'nepal', u'packag']
[u'intern', u'union', u'bodi', u'condemn', u'law']
[u'iran', u'cautious', u'nuclear', u'offer']
[u'chang', u'caus', u'wage', u'freez', u'actu']
[u'irrig', u'mainten', u'concern']
[u'japan', u'determin', u'present', u'unit', u'world']
[u'jealous', u'lover', u'sentenc', u'life', u'prison']
[u'joint', u'pearl', u'regul', u'agre']
[u'juri', u'prepar', u'consid', u'lodhi', u'terror', u'charg']
[u'land', u'council', u'announc', u'groot', u'eylandt', u'resort']
[u'landhold', u'learn', u'wild', u'trap']
[u'langer', u'return']
[u'law', u'mandat', u'food', u'tamper', u'report']
[u'lawyer', u'give', u'appeal', u'contempt', u'convict']
[u'local', u'health', u'worker', u'help', u'quak', u'victim']
[u'launch', u'action', u'leak', u'joli', u'pic']
[u'charg', u'cronulla', u'reveng', u'attack']
[u'custodi', u'bundaberg', u'stand']
[u'appear', u'sexual', u'assault']
[u'market', u'eas', u'metal', u'price', u'fall']
[u'mayor', u'upset', u'opposit', u'water', u'pressur']
[u'mokbel', u'accus', u'avoid', u'jail', u'term']
[u'monaro', u'share', u'budget', u'fund']
[u'detail', u'canada', u'terror', u'plot', u'releas']
[u'polic', u'head', u'east', u'timor']
[u'rain', u'miss', u'sydney', u'catchment']
[u'time', u'mildura', u'film', u'invest']
[u'mount', u'alexand', u'shire', u'plan', u'rate', u'rise']
[u'differ', u'budget', u'benefit', u'sunshin', u'coast']
[u'unhappi', u'budget', u'hospit', u'fund']
[u'murray', u'back', u'lillyman', u'origin', u'debut']
[u'nadal', u'set', u'ljubic', u'date', u'french', u'semi']
[u'neill', u'urg', u'refere', u'allow', u'tough', u'fair', u'play']
[u'nelson', u'defend', u'timor', u'troop', u'wag']
[u'nelson', u'hail', u'timor', u'deploy', u'impact']
[u'golf', u'tournament', u'asia', u'pacif']
[u'northern', u'tasmania', u'wednesday', u'june']
[u'north', u'south', u'water', u'pipe', u'econom', u'unfeas']
[u'women', u'access']
[u'budget', u'rural', u'transport', u'fund', u'disappoint']
[u'nuclear', u'task', u'forc', u'open', u'mind', u'switkowski']
[u'organ', u'growth', u'year', u'away', u'aust', u'scientist']
[u'outback', u'highway']
[u'paedophil', u'jail', u'attack', u'trio']
[u'hear', u'tell', u'miss', u'woman', u'harass']
[u'pilbara', u'reopen']
[u'defend', u'nuclear', u'inquiri', u'appoint']
[u'deni', u'govt', u'ignor', u'renew', u'energi']
[u'polic', u'hunt', u'hotel', u'bandit']
[u'polic', u'prepar', u'east', u'timor', u'deploy']
[u'polic', u'probe', u'widow', u'shoot']
[u'polic', u'renew', u'call', u'inform']
[u'polic', u'seek', u'help', u'find', u'miss']
[u'polic', u'union', u'hop', u'budget', u'deliv', u'staff', u'boost']
[u'polic', u'kill', u'crash']
[u'polic', u'elder', u'drown', u'victim']
[u'portland', u'hospit', u'remain', u'doctor']
[u'post', u'mortem', u'level', u'cross', u'crash', u'victim']
[u'prototyp', u'toilet', u'flush', u'away', u'drought']
[u'public', u'urg', u'benalla', u'budget']
[u'polic', u'join', u'timor', u'deploy']
[u'rann', u'urg', u'coag', u'world']
[u'rape', u'accus', u'remain', u'jail', u'offici']
[u'rape', u'review', u'deadlin', u'extend']
[u'rat', u'hold']
[u'rayoni', u'urg', u'auspin', u'answer', u'offer']
[u'centr', u'unveil', u'squar']
[u'tape', u'blame', u'land', u'crisi']
[u'refuge', u'clear', u'disabl', u'woman', u'rape']
[u'reserv', u'bank', u'put', u'rat', u'hold']
[u'resid', u'poll', u'karratha', u'ward']
[u'reveng', u'factor', u'wallabi', u'latham']
[u'revis', u'term', u'refer', u'snowi', u'inquiri']
[u'roebourn', u'jail', u'polic', u'knife', u'attack']
[u'ronaldinho', u'urg', u'refere', u'look', u'brazilian']
[u'ronaldo', u'recov', u'foot', u'complaint']
[u'rooki', u'replac', u'injur', u'carrol']
[u'ruddock', u'deni', u'chang', u'freez', u'wag']
[u'rumsfeld', u'hold', u'indonesian', u'defenc', u'commit']
[u'rumsfeld', u'receiv', u'blunt', u'warn', u'indonesia']
[u'scientist', u'help', u'bodi', u'grow', u'organ']
[u'secker', u'face', u'preselect', u'challeng']
[u'abus', u'claim', u'handl', u'anger', u'parent']
[u'sheedi', u'put', u'bomber', u'notic']
[u'shire', u'say', u'powerlin', u'worri', u'prematur']
[u'shop', u'centr', u'murder', u'suspect', u'acquit']
[u'sing', u'leav', u'cowboy', u'season']
[u'sink', u'illeg', u'fish', u'boat', u'beazley']
[u'slater', u'ban', u'match']
[u'socceroo', u'eye', u'japan', u'clash']
[u'socceroo', u'prepar', u'final', u'warm']
[u'socceroo', u'shield', u'crazi']
[u'solvent', u'abus', u'gang', u'worri', u'polic']
[u'southern', u'share', u'budget', u'fund']
[u'spirit', u'sale', u'fund', u'tourism', u'campaign']
[u'sprint', u'king', u'clash', u'palac']
[u'stadium', u'task', u'forc', u'chief', u'flag', u'subiaco', u'demolit']
[u'stanhop', u'challeng', u'budget', u'detractor']
[u'stanhop', u'defend', u'tough', u'budget']
[u'stanhop', u'appeal', u'civil', u'union', u'law']
[u'state', u'polic', u'shouldnt', u'need', u'timor']
[u'statist', u'socceroo', u'chanc']
[u'rise', u'indigen', u'children']
[u'stirl', u'unveil', u'middl', u'school', u'plan']
[u'stoner', u'say', u'highway', u'patrol', u'number', u'compromis', u'road']
[u'switkowski', u'bring', u'open', u'mind', u'nuke', u'review']
[u'task', u'forc', u'help', u'alic', u'crime', u'rate']
[u'tasmanian', u'economi', u'set', u'record']
[u'offic', u'join', u'timor', u'effort']
[u'terror', u'suspect', u'lose', u'legal', u'fund']
[u'tidal', u'energi', u'firm', u'back', u'altern', u'energi', u'debat']
[u'transport', u'accus', u'stifl', u'kangaroo', u'small']
[u'trust', u'fund', u'rais', u'money', u'kovco', u'widow']
[u'turtl', u'plant', u'exist', u'campbel']
[u'australian', u'kill', u'snowmobil', u'accid']
[u'union', u'defend', u'index', u'death', u'disabl', u'benefit']
[u'union', u'fear', u'middl', u'school', u'rush']
[u'back', u'chang', u'singl', u'desk']
[u'govt', u'rule', u'poki']
[u'govt', u'urg', u'share', u'fund', u'council']
[u'victorian', u'drive', u'wear', u'tyre', u'survey']
[u'volcano', u'threat', u'cloud', u'quak', u'relief', u'effort']
[u'feder', u'labor', u'debat', u'pipelin']
[u'growth', u'outstrip', u'state']
[u'wallabi', u'face', u'wale', u'dress', u'rehears']
[u'wanganeen', u'retir', u'game', u'career']
[u'wanganeen', u'announc', u'retir']
[u'memori', u'tree', u'fell', u'park']
[u'watson', u'highlight', u'nuclear', u'debat', u'import']
[u'wine', u'associ', u'oppos', u'bail', u'plan']
[u'western', u'mix', u'view', u'state', u'budget']
[u'windi', u'pair', u'hang', u'draw']
[u'winegrow', u'forc', u'dump', u'fruit']
[u'woman', u'surviv', u'horsham', u'hous', u'blaze']
[u'world', u'bank', u'take', u'cambodian', u'grant', u'fraud']
[u'year', u'jail', u'ongo', u'child', u'abus']
[u'suspect', u'taliban', u'kill', u'afghan', u'violenc']
[u'accc', u'green', u'light', u'pipelin', u'expans']
[u'accc', u'monitor', u'petrol', u'price']
[u'govt', u'step', u'civil', u'union', u'campaign']
[u'step', u'civil', u'union', u'campaign']
[u'agenc', u'seek', u'timor', u'death', u'toll', u'inquiri']
[u'alcott', u'join', u'rabbitoh']
[u'alkatiri', u'deni', u'arm', u'secur', u'forc']
[u'alkatiri', u'deni', u'recruit', u'death', u'squad']
[u'alkatiri', u'recruit', u'arm', u'forc']
[u'alleg', u'offend', u'grant', u'bail', u'delay']
[u'system', u'rooney', u'england']
[u'annan', u'welcom', u'releas', u'burmes', u'right', u'activist']
[u'ansto', u'head', u'quit', u'focus', u'nuclear', u'inquiri']
[u'asylum', u'work', u'violat', u'human', u'right']
[u'australia', u'blood', u'england']
[u'averag', u'price', u'export', u'wine', u'decreas']
[u'ballack', u'doubt', u'linger', u'fail', u'train', u'session']
[u'bashir', u'releas', u'hand', u'downer']
[u'beaconsfield', u'inquiri', u'receiv', u'find']
[u'beatti', u'reject', u'water', u'pipelin']
[u'turnout', u'expect', u'indigen', u'festiv']
[u'turnout', u'tip', u'farmfest']
[u'blaze', u'claim', u'barnawartha', u'hotel']
[u'blaze', u'damag', u'denmark', u'home']
[u'blaze', u'rip', u'empir', u'rubber']
[u'board', u'consid', u'option', u'eas', u'roadwork', u'expens']
[u'brisban', u'pull', u'cave']
[u'budget', u'need', u'explor', u'focus']
[u'bush', u'food', u'launch']
[u'climat', u'research', u'maintain', u'wheat']
[u'call', u'probe', u'timor', u'death', u'toll']
[u'campaign', u'aim', u'boost', u'rural', u'doctor', u'number']
[u'campbel', u'rule', u'stupid', u'carbon']
[u'candid', u'council', u'spot']
[u'cane', u'harvest', u'prompt', u'driver', u'fatigu', u'concern']
[u'chang', u'retir', u'worri', u'union']
[u'china', u'drop', u'curtain', u'vinci', u'code']
[u'chook', u'farm', u'look', u'product', u'boost']
[u'church', u'timor', u'death', u'investig']
[u'ciss', u'world', u'break']
[u'civil', u'union', u'step', u'howard']
[u'clark', u'look', u'loosen', u'water', u'restrict']
[u'cloncurri', u'council', u'take', u'road', u'fund', u'campaign']
[u'closer']
[u'closer']
[u'closer', u'news']
[u'concern', u'rais', u'petrol', u'price']
[u'condescend', u'offici', u'prompt', u'wadey', u'walkout']
[u'coonan', u'prepar', u'media', u'ownership', u'law', u'submiss']
[u'cosgrov', u'slam', u'doubl']
[u'council', u'look', u'altern', u'revenu', u'rais', u'mean']
[u'council', u'push', u'rail', u'line', u'stay', u'open']
[u'court', u'jail', u'defiant', u'businessman']
[u'court', u'set', u'august', u'date', u'hear', u'wind', u'farm', u'challeng']
[u'cyclist', u'widow', u'seek', u'apolog', u'polic', u'conduct']
[u'cyclon', u'pawpaw', u'impact', u'wors', u'fear']
[u'dairi', u'farmer', u'extend', u'drought']
[u'driver', u'guilti', u'fatal', u'crash']
[u'driver', u'hospit', u'south', u'west', u'crash']
[u'driver', u'ignor', u'school', u'zone', u'polic']
[u'east', u'timor', u'unrest', u'delay', u'balibo', u'inquest']
[u'eastwood', u'get']
[u'econom', u'boom', u'hurt', u'poor']
[u'european', u'nation', u'accus', u'collud']
[u'european', u'accus', u'toler', u'rendit']
[u'extradit', u'rape', u'accus', u'deni', u'bail']
[u'famili', u'farewel', u'level', u'cross', u'crash', u'victim']
[u'farina', u'back', u'schwarzer', u'keep', u'role']
[u'fink', u'desert', u'race', u'trophi', u'return', u'australia']
[u'firefight', u'unhappi']
[u'burni', u'priest', u'return', u'court', u'child']
[u'liber', u'run', u'nation', u'rocki']
[u'french', u'windsurf', u'cross', u'indian', u'ocean']
[u'fuel', u'price', u'expect', u'long', u'weekend', u'visitor']
[u'fuel', u'price', u'urgent', u'nuclear', u'power']
[u'fund', u'announc', u'local', u'health', u'servic']
[u'fund', u'help', u'maintain', u'blood', u'lead', u'reduct']
[u'geelong', u'councillor', u'face', u'campaign', u'charg']
[u'germani', u'skipper', u'miss', u'open']
[u'gillard', u'hunter', u'talk', u'health', u'issu']
[u'govt', u'deni', u'nuclear', u'promot', u'expens', u'ethanol']
[u'govt', u'meet', u'bring', u'littl', u'coal', u'action']
[u'govt', u'urg', u'molloy', u'critic']
[u'govt', u'urg', u'ramp', u'bypass', u'access', u'fund']
[u'greengroc', u'beat', u'label', u'law']
[u'groot', u'elyandt', u'offici', u'protect']
[u'health', u'fund', u'eas', u'citi', u'hospit', u'burden']
[u'health', u'indigen', u'summit', u'agenda']
[u'henin', u'hardenn', u'clijster', u'meet', u'pari']
[u'hiddink', u'warn', u'sloppi', u'socceroo']
[u'historian', u'say', u'bulldoz', u'destroy', u'kelli', u'gang', u'site']
[u'homeless', u'servic', u'cut', u'fear']
[u'hospit', u'deni', u'cover', u'manag', u'departur']
[u'rock', u'power', u'suggest', u'nuclear', u'altern']
[u'hous', u'forens', u'examin', u'girl', u'death']
[u'howard', u'order', u'holiday', u'petrol', u'price', u'monitor']
[u'icac', u'find', u'prison', u'deputi', u'cover', u'assault']
[u'iemma', u'defend', u'econom', u'growth']
[u'indonesia', u'pledg', u'east', u'timor']
[u'inflat', u'fear', u'wipe', u'market']
[u'inquiri', u'member', u'say', u'nuclear', u'power', u'clean', u'safe']
[u'internet', u'affair', u'increas', u'divorc', u'rate']
[u'iraqi', u'parliament', u'finalis', u'ministri', u'post']
[u'iraqi', u'declar', u'zarqawi', u'dead']
[u'irrig', u'group', u'call', u'water', u'bank']
[u'jobless', u'rate', u'hit', u'record']
[u'korp', u'death', u'accident']
[u'jumbo', u'size', u'world', u'kick']
[u'korp', u'inquest', u'begin', u'melbourn']
[u'koschitzk', u'return', u'saint', u'train']
[u'labor', u'cross', u'floor', u'mari', u'river']
[u'latu', u'serv', u'period', u'detent', u'servo', u'assault']
[u'local', u'chemist', u'help', u'illeg', u'drug', u'fight']
[u'lodhi', u'juri', u'begin', u'deliber']
[u'lower', u'teacher', u'blame', u'chang']
[u'ltte', u'clash', u'kill']
[u'charg', u'ballet', u'dancer', u'attack']
[u'charg', u'fatal', u'crash']
[u'guilti', u'sunshin', u'coast', u'murder']
[u'hospitalis', u'trench', u'collaps']
[u'face', u'murder', u'charg', u'apart', u'blaze']
[u'court', u'bundaberg', u'sieg']
[u'maroon', u'wont', u'listen', u'outsid', u'opinion']
[u'mccallum', u'clear', u'ambassador']
[u'meet', u'confirm', u'suspend', u'winegrow', u'contract']
[u'meninga', u'give', u'hodg', u'chanc']
[u'merapi', u'spew', u'volcan', u'gas']
[u'milit', u'leader', u'zarqawi', u'kill', u'iraq']
[u'molloy', u'bulli', u'vote', u'opposit']
[u'need', u'levi', u'mulcahi']
[u'troop', u'return', u'iraq']
[u'mother', u'stillborn', u'criticis', u'ambul', u'decis']
[u'motorcyclist', u'die', u'bundal', u'crash']
[u'call', u'perman', u'region', u'magistr']
[u'want', u'reef', u'author', u'leav']
[u'multiplex', u'founder', u'robert', u'die']
[u'nasa', u'clear', u'shuttl', u'fuel', u'tank', u'flight']
[u'nevill', u'back', u'wide', u'rang', u'nuclear', u'power', u'debat']
[u'generat', u'aid', u'drug', u'wider', u'trial']
[u'haka', u'shelv', u'notic']
[u'level', u'cross', u'boom', u'gate', u'test']
[u'gambier', u'librari', u'prove', u'cost']
[u'norseman', u'face', u'charg']
[u'talk', u'nuclear', u'technolog', u'iranian', u'presid']
[u'croc', u'bite', u'pari', u'fashion']
[u'polic', u'associ', u'proper', u'staff']
[u'nuclear', u'inquiri', u'head', u'quit', u'ansto']
[u'nurs', u'seek', u'eas', u'winter', u'pressur']
[u'nurs', u'home', u'staff', u'feel', u'valu', u'studi']
[u'fall', u'rise', u'fuel', u'inventori']
[u'pair', u'face', u'court', u'accus', u'drug', u'possess']
[u'petrol', u'price', u'continu', u'rise']
[u'philippin', u'rais', u'volcano', u'alert']
[u'pilbara', u'rock', u'earli', u'sign', u'life', u'earth']
[u'plan', u'continu', u'polic', u'station', u'revamp']
[u'plan', u'meatwork', u'site', u'know', u'soon']
[u'discuss', u'secur', u'treati', u'indonesia']
[u'polic', u'rais', u'traffic', u'offenc', u'quota']
[u'polic', u'review', u'reward']
[u'polic', u'wait', u'murder', u'investig', u'suspect']
[u'polic', u'tree', u'fell', u'victim']
[u'port', u'stephen', u'mayor', u'seek', u'liber', u'preselect']
[u'public', u'invit', u'contribut', u'snowi', u'inquiri']
[u'public', u'urg', u'help', u'illeg', u'drug', u'lab']
[u'quak', u'jolt', u'indonesia', u'sumatra']
[u'ramo', u'horta', u'readi', u'timor']
[u'recycl', u'water', u'near']
[u'cross', u'deni', u'turn', u'asylum', u'seeker', u'away']
[u'cross', u'shut', u'hobart', u'youth', u'servic']
[u'relentless', u'rain', u'china', u'bring', u'dead', u'flood']
[u'replica', u'ship', u'commemor', u'histor', u'trip']
[u'report', u'rule', u'neglig', u'babi', u'disappear']
[u'revel', u'jail', u'anti', u'bash']
[u'rival', u'palestinian', u'faction', u'agre', u'clash']
[u'roadsid', u'birth', u'symptom', u'rural', u'health', u'woe']
[u'rooney', u'train', u'england', u'squad']
[u'rooster', u'withdraw', u'cross', u'offer']
[u'offici', u'sack', u'properti', u'deal']
[u'school', u'free', u'connect']
[u'scientist', u'claim', u'revolutionari', u'fossil']
[u'scientist', u'breed', u'allergi', u'free', u'kitti']
[u'scientist', u'hunt', u'dodo', u'die']
[u'secker', u'defend', u'speed', u'charg']
[u'shire', u'associ', u'unhappi', u'budget', u'offer']
[u'shopper', u'urg', u'report', u'food', u'label']
[u'singaporean', u'win', u'defam', u'case']
[u'socceroo', u'beat', u'liechtenstein', u'final', u'world']
[u'socceroo', u'liechtenstein']
[u'sophi', u'delezio', u'leav', u'hospit', u'smile']
[u'sophi', u'delezio', u'return', u'home']
[u'spirit', u'ferri', u'fare', u'rise']
[u'stefaniak', u'attack', u'desper', u'budget']
[u'stomach', u'virus', u'hit', u'passeng']
[u'student', u'group', u'warn', u'flinder', u'servic', u'cut']
[u'suharto', u'celebr', u'birthday']
[u'support', u'specialis', u'rural', u'doctor', u'plan']
[u'switkowski', u'quit', u'ansto', u'board']
[u'switkowski', u'ansto', u'resign', u'sensibl']
[u'switkowski', u'step', u'ansto', u'board']
[u'sydney', u'council', u'push', u'lower', u'suburban', u'speed', u'limit']
[u'taliban', u'suspect', u'tamper', u'victim', u'bodi']
[u'govt', u'urg', u'resolv', u'suppli']
[u'teen', u'jail', u'home', u'rape']
[u'telstra', u'claim', u'improv', u'remot', u'coverag']
[u'terror', u'iraq', u'despit', u'zarqawi', u'death']
[u'theatr', u'product', u'examin', u'indigen', u'displac']
[u'thompson', u'dismiss', u'specul', u'futur']
[u'tough', u'season', u'ahead', u'sheep', u'produc']
[u'treasur', u'urg', u'fund', u'inner', u'citi', u'bypass']
[u'trench', u'collaps', u'victim', u'hospit']
[u'tropic', u'north', u'queensland', u'thursday', u'june']
[u'twickenham', u'maul', u'wont', u'affect', u'wallabi', u'robinson']
[u'tyre', u'condit', u'link', u'road', u'toll']
[u'critic', u'anger']
[u'unemploy', u'hit', u'record']
[u'union', u'look', u'deal', u'boral', u'disput']
[u'unit', u'confid', u'lure', u'lazaridi']
[u'unrest', u'spread', u'dili']
[u'vaughan', u'disappear', u'case', u'resum', u'sydney']
[u'virgin', u'wait', u'discrimin', u'appeal', u'rule']
[u'vizard', u'deni', u'knowledg', u'polic', u'investig']
[u'vizard', u'spokesman', u'dismiss', u'perjuri', u'accus']
[u'volunt', u'address', u'eros', u'hast', u'river']
[u'voter', u'demand', u'drought', u'proof', u'turnbul']
[u'wadey', u'meet', u'consid', u'suburb', u'creation']
[u'govt', u'consid', u'land', u'ballot']
[u'wallabi', u'blood', u'england']
[u'lift', u'mine', u'say', u'greenpeac', u'founder']
[u'wast', u'transport', u'kangaroo']
[u'water', u'price', u'concern', u'prompt', u'polici', u'review']
[u'wetland', u'restor', u'project', u'near', u'complet']
[u'wildcat', u'search', u'bailey', u'replac']
[u'wood', u'export', u'dump', u'global', u'softwood', u'market']
[u'work', u'start', u'tottenham', u'health', u'centr']
[u'wound', u'lion', u'face', u'tough', u'task', u'crow', u'voss']
[u'head', u'criticis', u'econom', u'nuclear', u'inquiri']
[u'xenophon', u'back', u'victim', u'right', u'confront', u'offend']
[u'youth', u'detaine', u'law', u'prompt', u'child', u'right', u'concern']
[u'zarqawi', u'death', u'great', u'victori', u'downer']
[u'zarqawi', u'kill', u'iraq']
[u'zarqawi', u'death', u'import', u'victori']
[u'abalon', u'poach', u'earn', u'fin', u'jail', u'term']
[u'abort', u'cattl', u'duf', u'trial', u'reschedul']
[u'civil', u'union', u'amend', u'cut', u'wait', u'time']
[u'offic', u'join', u'dili', u'patrol']
[u'alic', u'high', u'school', u'merger', u'like']
[u'alkatiri', u'claim', u'probe', u'east', u'timor']
[u'confer', u'focus', u'feder', u'chang']
[u'qaeda', u'zawahiri', u'reject', u'palestinian', u'referendum']
[u'ambassador', u'return', u'pleas', u'downer']
[u'apec', u'pandem', u'respons', u'test', u'success']
[u'aust', u'cancer', u'vaccin', u'approv']
[u'australian', u'civilian', u'kill', u'iraq']
[u'seek', u'feder', u'court', u'rule', u'document']
[u'bahraini', u'woman', u'newest', u'presid']
[u'bakeri', u'say', u'thiev', u'respons', u'glass']
[u'ballack', u'believ', u'world', u'open']
[u'ballarat', u'give', u'hope', u'technic', u'colleg']
[u'balranald', u'station', u'nation', u'park']
[u'bargain', u'hunter', u'help', u'market', u'rebound']
[u'staff', u'escap', u'charg', u'serv', u'drink', u'patron']
[u'beaconsfield', u'gold', u'farewel', u'staff']
[u'beazley', u'stay', u'franklin', u'preselect', u'battl']
[u'beazley', u'visit', u'rescu', u'today']
[u'blue', u'wari', u'maroon', u'backlin', u'trio']
[u'bomb', u'fear', u'prompt', u'baghdad', u'curfew']
[u'book', u'mount', u'season', u'begin']
[u'brogan', u'fin', u'airport', u'incid']
[u'brothel', u'owner', u'jail', u'enslav', u'women']
[u'brothel', u'owner', u'jail', u'slaveri', u'welcom']
[u'brough', u'review', u'indigen', u'visitor', u'permit']
[u'brown', u'miss', u'crow', u'clash']
[u'bush', u'warn', u'iraq', u'bloodsh']
[u'cabaret', u'festiv', u'featur', u'keat', u'opera']
[u'heywood', u'natur', u'connect']
[u'call', u'investig', u'timor', u'mass', u'murder']
[u'call', u'probe', u'timor', u'mass', u'murder', u'claim']
[u'restor', u'midwiv', u'role']
[u'cambodian', u'court', u'uphold', u'aussi', u'rape', u'convict']
[u'cane', u'toad', u'icon', u'list']
[u'castral', u'make', u'major', u'impact', u'lpga', u'championship']
[u'cat', u'bounc', u'bomber']
[u'cat', u'record', u'strong', u'bomber']
[u'causeway', u'work', u'creat', u'driver', u'delay']
[u'central', u'aust', u'dialysi', u'machin', u'shortag']
[u'cervic', u'cancer', u'vaccin', u'win', u'approv']
[u'chanc', u'discoveri', u'help', u'prevent', u'cancer']
[u'chief', u'magistr', u'reject', u'magistr', u'shop', u'claim']
[u'closer']
[u'closer']
[u'colleg', u'reject', u'teacher', u'claim']
[u'commission', u'question', u'prison', u'offic']
[u'connolli', u'talk', u'england', u'abil']
[u'convent', u'centr', u'promis', u'benefit']
[u'coonan', u'approv', u'telstra', u'region', u'plan']
[u'coonan', u'say', u'govt', u'wont', u'revers', u'telstra']
[u'corbel', u'pledg', u'meet', u'polic', u'target']
[u'council', u'consid', u'increas', u'sewerag', u'rat']
[u'council', u'develop', u'corp', u'launch', u'whitsunday', u'plan']
[u'council', u'look', u'resolv', u'nativ', u'veget']
[u'council', u'closer', u'resolv', u'money']
[u'council', u'deliv', u'cane', u'money']
[u'court', u'jail', u'machet']
[u'cowboy', u'look', u'confid', u'boost']
[u'crash', u'spark', u'driver', u'safeti']
[u'croc', u'safari', u'consid', u'australian', u'hunter']
[u'crouch', u'readi', u'lift', u'england']
[u'custom', u'hail', u'robust', u'cargo']
[u'cyber', u'predat', u'arrest', u'alarm', u'polic']
[u'cycl', u'team', u'boss', u'step', u'dope', u'probe']
[u'oppon', u'resign', u'work', u'go', u'ahead']
[u'decis', u'reserv', u'jovic', u'visa', u'case']
[u'demot', u'navi', u'offic', u'win', u'compens']
[u'detail', u'zarqawi', u'death', u'emerg']
[u'dialysi', u'self', u'care', u'plan', u'stop', u'alic', u'spring']
[u'dili', u'camp', u'crowd', u'spark', u'diseas', u'outbreak']
[u'chang', u'retrospect']
[u'doctor', u'focus', u'bush', u'health', u'woe']
[u'doctor', u'leav', u'servic']
[u'dog', u'strike', u'ahead', u'docker', u'clash']
[u'doubt', u'cast', u'late', u'night', u'venu', u'close', u'time', u'plan']
[u'dutch', u'coach', u'optimist', u'injur', u'trio', u'play']
[u'timor', u'need', u'long', u'term', u'solut', u'ambassador']
[u'exot', u'squirrel', u'import', u'criticis']
[u'farmer', u'ask', u'restor', u'wetland']
[u'farmer', u'fink']
[u'farmer', u'face', u'rate', u'rise']
[u'farmer', u'plenti', u'saltbush', u'govt', u'bodi']
[u'fatal', u'crash', u'earn', u'teen', u'suspend', u'sentenc']
[u'feder', u'nadal', u'reach', u'dream', u'final']
[u'fink', u'racer', u'undergo', u'safeti', u'check']
[u'flare', u'illeg', u'fish', u'boat']
[u'case', u'wast', u'taxpay', u'money']
[u'forest', u'shoot', u'plan', u'worri', u'green', u'group']
[u'accus', u'militari', u'medal', u'theft']
[u'fuel', u'woe', u'help', u'break', u'hill', u'tourism']
[u'fund', u'help', u'reviv', u'biripai', u'indigen', u'languag']
[u'nation', u'stingier', u'despit', u'promis']
[u'ganguli', u'call', u'priest']
[u'gatto', u'defend', u'construct', u'industri', u'role']
[u'germani', u'cost', u'rica', u'kick']
[u'gerrard', u'half', u'chanc', u'england', u'open']
[u'hear', u'act', u'civil', u'union', u'case']
[u'govt', u'delay', u'fast', u'rail', u'timet', u'releas']
[u'govt', u'offer', u'ferri', u'assur', u'amidst', u'tourism', u'fear']
[u'govt', u'step', u'iraq', u'warn', u'aust', u'death']
[u'govt', u'energi', u'effici', u'target']
[u'govt', u'warn', u'stay', u'away', u'iraq']
[u'grape', u'grower', u'warn', u'expect', u'govt', u'bailout']
[u'green', u'group', u'fear', u'panic', u'land', u'clear']
[u'gregori', u'servic', u'farewel', u'chopper', u'pilot']
[u'gunmen', u'kidnap', u'iraqi', u'offici']
[u'high', u'school', u'extens', u'open']
[u'hill', u'seek', u'apolog', u'health', u'cover', u'claim']
[u'immigr', u'admit', u'wrong', u'detent']
[u'indecis', u'risk', u'expuls']
[u'indonesian', u'ambassador', u'return', u'aust']
[u'intervent', u'threaten', u'foster', u'develop', u'moor']
[u'iran', u'acceler', u'uranium', u'enrich', u'report']
[u'iraqi', u'govt', u'complet']
[u'isra', u'strike', u'kill', u'palestinian', u'leader']
[u'japan', u'move', u'establish', u'defenc', u'ministri']
[u'joke', u'iemma', u'say', u'lighten']
[u'jovic', u'deni', u'procedur', u'fair', u'lawyer']
[u'jovic', u'take', u'resid', u'fight', u'court']
[u'junior', u'black', u'romp', u'victori', u'samoa']
[u'justic', u'urg', u'leadership', u'elder', u'abus', u'fight']
[u'kestrel', u'illitch', u'quit', u'intern', u'netbal']
[u'killer', u'lose', u'appeal', u'cabooltur', u'death']
[u'kuznetsova', u'eye', u'french', u'open', u'reveng']
[u'labor', u'threaten', u'independ']
[u'council', u'urg', u'help', u'hick']
[u'lawyer', u'lobbi', u'compo', u'chang']
[u'cornu', u'develop', u'seek', u'special', u'status']
[u'straight', u'gatto']
[u'let', u'physic', u'beckham']
[u'liber', u'candid', u'back', u'civil', u'union']
[u'liber', u'labor', u'debat', u'unemploy', u'rate']
[u'lillyman', u'prove', u'selector', u'right']
[u'jobless', u'rate', u'help', u'central', u'west', u'growth']
[u'malthous', u'urg', u'crack', u'danger', u'tackl']
[u'court', u'accus', u'dubbo']
[u'market', u'push', u'look', u'boost', u'orang', u'sale']
[u'matthew', u'urg', u'clariti', u'shoulder', u'rule']
[u'maverick', u'beat', u'heat', u'final', u'open']
[u'mayor', u'look', u'futur', u'level', u'water', u'restrict']
[u'melbourn', u'professor', u'win', u'nation', u'medic', u'award']
[u'mental', u'acquit', u'violent', u'attack']
[u'merapi', u'belch', u'volcan', u'cloud']
[u'worker', u'stay', u'cottag']
[u'pitcairn', u'island', u'face', u'charg']
[u'air', u'safeti', u'worri', u'murray', u'river', u'traffic']
[u'attack', u'hospit', u'cut']
[u'husband', u'support', u'decis', u'cross', u'floor']
[u'suggest', u'recycl', u'aircondition', u'water']
[u'urg', u'govt', u'fund', u'south', u'east', u'road', u'repair']
[u'narrabri', u'council', u'await', u'manag', u'review', u'result']
[u'nation', u'region', u'tourism', u'spend']
[u'nation', u'presid', u'quit', u'merger']
[u'nation', u'strategi', u'address', u'pest', u'anim']
[u'airport', u'moot', u'expans']
[u'caledonia', u'wharf', u'blockad', u'end']
[u'investor', u'save', u'colleg', u'develop']
[u'law', u'safeguard', u'snowi', u'ownership']
[u'quick', u'answer', u'cane', u'toad', u'scientist']
[u'norway', u'question', u'lankan', u'peac', u'process']
[u'opal', u'lightn', u'ridg', u'prospect', u'block']
[u'opposit', u'call', u'drug', u'drive', u'test']
[u'opposit', u'guest', u'worker', u'visa', u'itensifi']
[u'overload', u'migrant', u'boat', u'sink', u'malta']
[u'permit', u'press', u'indigen', u'issu', u'martin']
[u'perth', u'resid', u'fight', u'stadium', u'plan']
[u'petrol', u'price', u'rise', u'need', u'ethanol', u'senat']
[u'pietersen', u'ignor', u'henri', u'jib']
[u'defend', u'soldier', u'timor']
[u'cruis', u'ship', u'sanitis']
[u'poland', u'ecuador', u'surpris']
[u'polic', u'benchmark', u'increas', u'unachiev']
[u'polic', u'boost', u'long', u'weekend', u'road', u'patrol']
[u'polic', u'prepar', u'long', u'weekend', u'crackdown']
[u'polic', u'test', u'gun', u'shepparton', u'shoot']
[u'polic', u'urg', u'driver', u'stay', u'safe', u'long', u'weekend']
[u'primev', u'solar', u'discov']
[u'outlaw', u'ident', u'theft']
[u'quick', u'grow', u'kingfish', u'trial']
[u'rain', u'help', u'south', u'coast', u'dam']
[u'ramo', u'horta', u'call', u'death', u'squad', u'investig']
[u'whistleblow', u'pleas', u'progress']
[u'red', u'sign', u'player']
[u'research', u'cast', u'doubt', u'swan', u'fidel', u'theori']
[u'review', u'find', u'good', u'emerg', u'respons', u'factori']
[u'rowl', u'vote', u'greatest', u'live', u'british', u'writer']
[u'rubbish', u'truck', u'land', u'sydney', u'hous']
[u'rule', u'prevent', u'melbourn', u'sailor', u'seek', u'compo']
[u'ryan', u'call', u'heritag', u'villag', u'financi']
[u'africa', u'say', u'terror', u'suspect', u'hand']
[u'girl', u'unusu', u'death', u'investig']
[u'scientist', u'test', u'bait', u'chemic']
[u'scott', u'lead', u'westchest']
[u'senat', u'highlight', u'fall', u'enrol']
[u'skoko', u'leav', u'convinc', u'hiddink']
[u'socceroo', u'mascot', u'head', u'germani']
[u'softwar', u'test', u'blame', u'port', u'chao']
[u'springborg', u'hear', u'rathdowney', u'concern']
[u'steroid', u'give', u'mother', u'premmi']
[u'stewart', u'snatch', u'late', u'eagl']
[u'sydney', u'desalin', u'plant', u'unnecessari', u'inquiri']
[u'sydney', u'pair', u'claim', u'base', u'jump', u'record']
[u'takeaway', u'alcohol', u'licenc', u'limit', u'pub']
[u'polic', u'increas', u'traffic', u'offenc', u'quota']
[u'tassi', u'grower', u'want', u'higher', u'forward', u'grain', u'price']
[u'test', u'drill', u'burial', u'site']
[u'test', u'flaw', u'caus', u'custom', u'chao', u'review']
[u'tiger', u'wari', u'struggl', u'kangaroo']
[u'tourism', u'plan', u'anger']
[u'tunnel', u'work', u'start', u'tugun', u'bypass']
[u'accid']
[u'demand', u'feder', u'traine', u'fund']
[u'vision', u'impair', u'account', u'parliament']
[u'wakool', u'shire', u'celebr', u'year']
[u'wallabi', u'face', u'crunch', u'england', u'test']
[u'water', u'sale', u'treat', u'capit', u'gain']
[u'weather', u'delay', u'malle', u'burn']
[u'webck', u'wari', u'winless', u'rabbitoh']
[u'wheat', u'yield', u'predict', u'consid', u'modest']
[u'wife', u'face', u'court', u'millionair', u'death']
[u'wilcannia', u'work', u'scheme', u'model']
[u'wildlif', u'offic', u'seiz', u'giant', u'python']
[u'wine', u'industri', u'compo', u'hard', u'justifi', u'mcgauran']
[u'winter', u'spark', u'electr', u'safeti', u'warn']
[u'winton', u'escape', u'arrest']
[u'woolli', u'cattl', u'open', u'small', u'opportun', u'hobbi']
[u'world', u'assess', u'import', u'zarqawi', u'death']
[u'world', u'leader', u'welcom', u'death', u'zarqawi']
[u'world', u'leader', u'welcom', u'zarqawi', u'death']
[u'yellow', u'cloth', u'thai', u'mark', u'king', u'anniversari']
[u'zarqawi', u'death', u'boost', u'iraqi', u'forc', u'howard']
[u'zarqawi', u'death', u'detail', u'emerg']
[u'zarqawi', u'death', u'fight', u'keelti']
[u'zarqawi', u'legaci', u'fighter', u'taliban']
[u'zarqawi', u'support', u'continu', u'fight']
[u'kill', u'torrenti', u'rain', u'lash', u'southern', u'china']
[u'aborigin', u'dancer', u'dreamtim', u'stoneheng']
[u'accus', u'london', u'bomber', u'releas', u'charg']
[u'alkatiri', u'face', u'alleg', u'kill']
[u'alkatiri', u'guilti', u'mass', u'murder', u'say', u'rebel']
[u'alonso', u'british', u'grand', u'prix', u'pole', u'posit']
[u'kill', u'pakistan', u'raid']
[u'attack', u'kill', u'palestinian', u'secur', u'offic']
[u'australian', u'charg', u'wife', u'murder', u'win', u'bail']
[u'ballack', u'definit', u'open']
[u'batter', u'wall', u'street', u'tri', u'shake', u'fear']
[u'beaconsfield', u'miner', u'satisfi', u'redund']
[u'beatti', u'choos', u'dam']
[u'beazley', u'vow', u'protect', u'public', u'holiday', u'penalti']
[u'blast', u'kill', u'afghanistan']
[u'britain', u'franc', u'sign', u'deal', u'share', u'nuclear', u'expertis']
[u'brown', u'rare', u'roo']
[u'clarifi', u'liquor', u'law', u'staff']
[u'replac', u'queen', u'birthday', u'holiday']
[u'cargo', u'work', u'say', u'custom', u'minist']
[u'china', u'move', u'contain', u'bird', u'outbreak']
[u'claim', u'yarragade', u'essenti', u'perth', u'water', u'plan']
[u'closer', u'news']
[u'closer']
[u'communiti', u'urg', u'continu', u'fight', u'school']
[u'council', u'threaten', u'legal', u'action', u'unpaid', u'rat']
[u'crow', u'edg', u'lion']
[u'custom', u'pledg', u'industri', u'liaison', u'port', u'gridlock']
[u'protest', u'march', u'confer']
[u'dancer', u'dreamtim', u'stoneheng']
[u'dozen', u'australian', u'wrong', u'hold', u'immigr']
[u'dragon', u'comfort', u'winner', u'panther']
[u'driver', u'start', u'honour', u'desert', u'race']
[u'dudek', u'lash', u'poland']
[u'ecuador', u'lead', u'pole', u'half', u'time']
[u'ecuador', u'shock', u'poland']
[u'timor', u'face', u'alleg', u'kill']
[u'excit', u'fan', u'pack', u'munich', u'world', u'open']
[u'fear', u'glut', u'forc', u'grower', u'quit', u'wine', u'industri']
[u'confirm', u'neesken', u'departur']
[u'kid', u'dwindl', u'research']
[u'induct', u'hall', u'fame']
[u'meet', u'focus', u'energi', u'squeez']
[u'gatto', u'claim', u'public', u'smear', u'campaign', u'amid', u'colour']
[u'group', u'lobbi', u'senat', u'civil', u'union']
[u'german', u'defenc', u'worri', u'kaiser']
[u'germani', u'lead', u'costa', u'rica', u'half', u'time']
[u'gerrard', u'readi', u'england', u'open']
[u'global', u'astronom', u'studi', u'rare', u'pluto', u'view']
[u'govt', u'consid', u'indigen', u'sexual', u'abus', u'report']
[u'haiti', u'swear']
[u'hama', u'appeal', u'avert', u'referendum']
[u'hama', u'end', u'ceas', u'beachsid', u'attack']
[u'hama', u'end', u'truce', u'beachsid', u'attack']
[u'hama', u'end', u'truce', u'beachsid', u'shell']
[u'hama', u'say', u'rocket', u'fire', u'israel']
[u'hama', u'resum', u'israel', u'attack']
[u'henin', u'hardenn', u'seek', u'french', u'crown']
[u'hiddink', u'warn', u'socceroo', u'clean']
[u'hornbi', u'satisfi', u'dragon']
[u'hospit', u'care', u'unit', u'win', u'architectur', u'award']
[u'iemma', u'commit', u'workplac', u'chang', u'fight']
[u'immigr', u'lawyer', u'welcom', u'drug', u'assault', u'claim']
[u'indigen', u'leader', u'urg', u'address', u'wadey', u'tension']
[u'indigen', u'stori', u'win', u'book', u'award']
[u'iraq', u'violenc', u'continu', u'despit', u'death', u'zarqawi']
[u'japan', u'look', u'tactic', u'know']
[u'japan', u'yanagisawa', u'socceroo', u'clash']
[u'klose', u'doubl', u'net', u'win', u'start', u'germani']
[u'kubica', u'quickest', u'british', u'practic']
[u'montagna', u'win', u'stradbrok']
[u'late', u'employe', u'stall', u'robberi']
[u'late', u'flavel', u'help', u'patchi']
[u'london', u'terror', u'suspect', u'releas']
[u'charg', u'melbourn', u'murder']
[u'charg', u'sexual', u'assault', u'girl']
[u'die', u'stab', u'sydney']
[u'shoot', u'gold', u'coast', u'road']
[u'question', u'coupl', u'murder']
[u'maradona', u'snub', u'open', u'ceremoni']
[u'minist', u'greek', u'festiv']
[u'alleg', u'alkatiri', u'back', u'kill']
[u'nation', u'resign', u'end', u'merger', u'talk']
[u'claim', u'alkatiri', u'back', u'kill']
[u'vinci', u'draw', u'discov']
[u'oliv', u'race', u'track']
[u'parent', u'stillborn', u'counsel']
[u'parti', u'deni', u'hospit', u'burma']
[u'peruvian', u'famili', u'evacu', u'volcano', u'threaten']
[u'poet', u'invent', u'help', u'blind']
[u'polic', u'arrest', u'german', u'england', u'fan']
[u'polic', u'free', u'brother', u'hold', u'bomb', u'raid']
[u'polic', u'investig', u'woman', u'dead', u'creek']
[u'polic', u'investig', u'pedestrian', u'road', u'death']
[u'politician', u'mull', u'rise', u'despit', u'throat']
[u'pressur', u'build', u'argentina', u'ahead', u'cote', u'clash']
[u'rabbitoh', u'break', u'duck', u'bronco']
[u'lawyer', u'shock', u'wrong', u'detent']
[u'singh', u'shoot', u'lead']
[u'grape', u'glut', u'predict', u'year']
[u'saint', u'swan', u'win']
[u'satellit', u'give', u'glimps', u'insid', u'cloud', u'nasa']
[u'examin', u'chang']
[u'schumach', u'remain', u'driver', u'repres']
[u'schumach', u'top', u'final', u'silverston', u'practic']
[u'shark', u'cowboy']
[u'sleepi', u'worker', u'cost', u'japan', u'billion']
[u'soccer', u'brazilian', u'driver']
[u'socceroo', u'tri', u'hard', u'neesken']
[u'softwar', u'train', u'blame', u'custom', u'breakdown']
[u'stab', u'investig', u'focus', u'secur', u'footag']
[u'stanhop', u'defend', u'rat', u'legisl', u'scrutini']
[u'state', u'help', u'need', u'book', u'ruddock']
[u'student', u'deport', u'alleg', u'terrorist']
[u'recov', u'hospit', u'visit', u'parti']
[u'sydneysid', u'water', u'conserv', u'report']
[u'bird', u'swift', u'unbeaten']
[u'thousand', u'march', u'right', u'poland']
[u'thousand', u'ralli', u'taiwanes', u'presid']
[u'tiger', u'happi', u'point']
[u'tiger', u'good', u'roo']
[u'troop', u'famili', u'launch', u'anti', u'campaign']
[u'troop', u'readi', u'disarm', u'timor', u'rebel', u'ask']
[u'polic', u'condemn', u'counter', u'terror', u'raid']
[u'envoy', u'kosovo', u'polic', u'clash', u'protest']
[u'union', u'condemn', u'commiss', u'staff', u'cut']
[u'union', u'welcom', u'consult', u'plan', u'school']
[u'milit', u'kill', u'pakistani', u'raid']
[u'call', u'somalia', u'meet', u'islamist', u'gain']
[u'concern', u'burma', u'hospit']
[u'warn', u'terrorist', u'attack', u'china']
[u'veteran', u'larsson', u'york', u'twilight', u'duel']
[u'villawood', u'manag', u'scrutini', u'drug']
[u'villawood', u'open']
[u'villawood', u'rape', u'alleg', u'investig']
[u'villawood', u'sexual', u'assault', u'claim', u'investig']
[u'volcano', u'spew', u'central', u'philippin']
[u'wallabi', u'england', u'step', u'unknown']
[u'water', u'restrict', u'nurseri', u'industri']
[u'webb', u'content', u'storm', u'hit', u'second', u'round']
[u'import', u'record', u'gregan']
[u'world', u'spark', u'mogadishu', u'protest']
[u'world', u'dream', u'turn', u'nightmar', u'togo', u'coach']
[u'world', u'offici', u'open']
[u'wrong', u'detent', u'case', u'cost']
[u'zarqawi', u'aliv', u'polic', u'arriv']
[u'zarqawi', u'initi', u'surviv', u'strike']
[u'aust', u'troop', u'arriv', u'home', u'iraq', u'duti']
[u'trinidad', u'hold', u'sweden', u'shock', u'draw']
[u'kill', u'iraqi', u'british', u'clash']
[u'abba', u'announc', u'palestinian', u'referendum']
[u'abba', u'push', u'ahead', u'referendum']
[u'ablett', u'name', u'greatest']
[u'actu', u'launch', u'fresh', u'workplac', u'law']
[u'african', u'leader', u'approv', u'draft', u'democraci', u'charter']
[u'alic', u'spring', u'teen', u'take', u'lead', u'fink', u'desert', u'race']
[u'alkatiri', u'accus', u'death', u'threat']
[u'alkatiri', u'accus', u'make', u'death', u'threat']
[u'alonso', u'win', u'british', u'grand', u'prix']
[u'annual', u'desert', u'race', u'roar', u'start']
[u'argentina', u'grab', u'half', u'time', u'lead']
[u'argentina', u'rap', u'warn', u'rival']
[u'argentina', u'rap', u'warn', u'rival']
[u'aussi', u'seri']
[u'aust', u'medic', u'team', u'offer', u'hope', u'indonesian']
[u'autopsi', u'complet', u'zarqawi', u'bodi']
[u'banana', u'theft', u'rise']
[u'beazley', u'abolish', u'awa']
[u'beazley', u'union', u'launch', u'fresh', u'attack', u'workplac']
[u'bush', u'vow', u'crackdown', u'zarqawi', u'follow']
[u'busi', u'rais', u'concern', u'loss', u'servic']
[u'busi', u'welfar', u'group', u'seek', u'slice', u'budget']
[u'call', u'extens', u'hariri', u'murder', u'probe']
[u'chawalit', u'edg', u'gibson', u'home', u'triumph', u'thailand']
[u'classi', u'warrior', u'triumph', u'rooster']
[u'closer']
[u'cooper', u'name', u'blue']
[u'dazzl', u'sehwag', u'give', u'india', u'control']
[u'detaine', u'suicid', u'prompt', u'fresh', u'call']
[u'dettori', u'land', u'timer']
[u'disput', u'continu', u'footscray', u'pool', u'site']
[u'dog', u'edg', u'docker']
[u'driver', u'credit', u'card', u'charg', u'petrol']
[u'dutch', u'youngster', u'seek', u'roll']
[u'eagl', u'steal', u'thrill']
[u'east', u'timor', u'opposit', u'leader', u'flee', u'dili']
[u'england', u'grind', u'paraguay']
[u'eriksson', u'beckham', u'happi', u'england', u'heat']
[u'eriksson', u'defens', u'paraguay', u'perform']
[u'timor', u'rebel', u'leader', u'want', u'greater', u'power']
[u'evan', u'extend', u'davitamon', u'contract']
[u'expert', u'tackl', u'violenc', u'footbal']
[u'feder', u'verg', u'great']
[u'festiv', u'organis', u'reward', u'design', u'driver']
[u'arrest', u'fatal', u'sydney', u'stab']
[u'minist', u'warn', u'energi', u'price', u'threaten', u'global']
[u'generat', u'put', u'weight', u'faster']
[u'german', u'polic', u'prais', u'impecc', u'england', u'fan']
[u'govt', u'condemn', u'beazley', u'cave']
[u'govt', u'deni', u'sewag', u'enter', u'sydney', u'water', u'catchment']
[u'govt', u'dismiss', u'latest', u'alkatiri', u'death', u'threat', u'claim']
[u'govt', u'propos', u'solut', u'south', u'east', u'water']
[u'govt', u'fund', u'aborigin', u'languag', u'dictionari']
[u'green', u'outrag', u'scrap', u'environ', u'dept']
[u'green', u'seek', u'hick', u'return', u'guantanamo', u'suicid']
[u'guantanamo', u'lawyer', u'demand', u'hear', u'follow']
[u'guantanamo', u'open']
[u'hama', u'accus', u'abba', u'coup', u'attempt']
[u'hama', u'accus', u'abba', u'plan', u'coup', u'attempt']
[u'henin', u'hardenn', u'win', u'french', u'open', u'crown']
[u'hiddink', u'dismiss', u'dirti', u'roo', u'claim']
[u'huge', u'shipment', u'set', u'sail', u'dili']
[u'improv', u'mexico', u'mean', u'busi', u'iran']
[u'indonesian', u'ambassador', u'return', u'australia']
[u'iran', u'condemn', u'nuclear', u'incent']
[u'iraq', u'free', u'prison']
[u'israel', u'condemn', u'beachsid', u'attack']
[u'israel', u'face', u'critic', u'gaza', u'beach', u'shell']
[u'isra', u'strike', u'kill', u'palestinian']
[u'japan', u'lose', u'winger', u'kaji']
[u'labor', u'call', u'probe', u'alkatiri', u'threat']
[u'labor', u'commit', u'uranium', u'mine', u'phase']
[u'labor', u'disendors', u'stanc']
[u'labor', u'leav', u'confer', u'propos']
[u'labor', u'push', u'action', u'whale']
[u'labor', u'phase', u'uranium', u'mine', u'albanes']
[u'lawyer', u'concern', u'hick', u'welfar']
[u'local', u'govt', u'presid', u'welcom', u'councillor', u'retrain']
[u'long', u'weekend', u'crash', u'kill']
[u'arrest', u'gold', u'coast', u'shoot']
[u'charg', u'destruct', u'statu']
[u'charg', u'melbourn', u'coupl', u'murder']
[u'mauritania', u'pledg', u'open', u'woodsid', u'deal']
[u'mayo', u'climb', u'tour', u'content']
[u'merapi', u'spew', u'lava', u'author', u'remain', u'alert']
[u'minist', u'defend', u'decis', u'drop', u'state']
[u'mogg', u'sign', u'catalan', u'dragon']
[u'mortlock', u'tip', u'larkham', u'strong', u'return']
[u'nepal', u'formal', u'curb', u'king', u'power']
[u'polic', u'releas', u'cronulla', u'riot', u'photo']
[u'dead', u'injur', u'kashmir', u'fight']
[u'outcri', u'grow', u'govt', u'plan', u'close', u'school']
[u'outrag', u'petrol', u'charg']
[u'polic', u'hunt', u'stab', u'suspect']
[u'polic', u'probe', u'suspici', u'death']
[u'polic', u'releas', u'cronulla', u'riot', u'photo']
[u'polic', u'seek', u'inform', u'gold', u'coast', u'shoot']
[u'portug', u'angola', u'readi', u'emot', u'clash']
[u'power', u'blow', u'hawk', u'away']
[u'princ', u'philip', u'celebr', u'birthday']
[u'puppet', u'gather', u'nation', u'summit', u'hobart']
[u'rain', u'relief', u'drought', u'ravag', u'goulburn']
[u'rescuer', u'prais', u'save', u'fisherman']
[u'schumach', u'live', u'bubbl', u'hill']
[u'score', u'hurt', u'bangladesh', u'protest']
[u'scott', u'shoot', u'lead']
[u'ship', u'arriv', u'scuttl', u'east', u'coast']
[u'arrest', u'drug', u'bust']
[u'charg', u'drug', u'offenc', u'perth', u'raid']
[u'sleep', u'research']
[u'sniffer', u'hunt', u'cane', u'toad']
[u'socceroo', u'face', u'curs', u'japan', u'mascot']
[u'somali', u'islamist', u'demand', u'warlord', u'surrend']
[u'spanish', u'protest', u'peac', u'talk']
[u'springbok', u'kick', u'test', u'season', u'impress']
[u'storm', u'eel', u'spot']
[u'storm', u'sole', u'leader', u'down', u'eel']
[u'street', u'scuffl', u'england']
[u'suicid', u'suspect', u'guantanamo', u'detaine', u'death']
[u'suspect', u'remand', u'custodi', u'stab', u'death']
[u'tassi', u'devil', u'adopt', u'plan', u'spark', u'outrag']
[u'terrorist', u'threat', u'stop', u'nuclear', u'debat']
[u'commit', u'suicid', u'guantanamo']
[u'tribun', u'dismiss', u'nativ', u'titl', u'applic']
[u'troop', u'return', u'iraq', u'deploy']
[u'troop', u'seiz', u'afghan', u'drug', u'stockpil']
[u'charg', u'cronulla', u'riot']
[u'dead', u'guantanamo', u'detaine', u'name']
[u'union', u'open']
[u'confirm', u'guantanamo', u'detaine', u'commit', u'suicid']
[u'militari', u'begin', u'zarqawi', u'autopsi']
[u'viduka', u'rejoin', u'australian', u'train']
[u'wallabi', u'win', u'way']
[u'wallabi', u'connolli', u'win', u'start']
[u'warrior', u'good', u'rooster']
[u'webb', u'remain', u'championship', u'hunt']
[u'west', u'bank', u'milit', u'free', u'student', u'hostag']
[u'west', u'bank', u'milit', u'kidnap', u'isra']
[u'woman', u'charg', u'cronulla', u'riot']
[u'york', u'ecstat', u'upset']
[u'zarqawi', u'beat', u'death', u'wit']
[u'hunter', u'resid', u'honour', u'queen', u'birthday']
[u'award', u'queen', u'birthday', u'honour']
[u'canberran', u'honour', u'list']
[u'tasmanian', u'queen', u'birthday', u'award']
[u'queen', u'birthday', u'honour']
[u'queensland', u'honour', u'list']
[u'abalon', u'virus', u'spark', u'fish']
[u'runner', u'win', u'birdsvill', u'gift']
[u'list', u'celebr', u'conduct', u'civil', u'union']
[u'adelaid', u'host', u'cabaret', u'festiv']
[u'adelaid', u'dampen', u'injuri', u'blow']
[u'advisori', u'council', u'visit', u'determin', u'drought']
[u'aussi', u'pilot', u'prais', u'cool', u'courag']
[u'aust', u'pilot', u'surviv', u'emerg', u'land']
[u'australia', u'trail', u'half', u'time']
[u'author', u'back', u'retrain', u'councillor', u'plan']
[u'award', u'ceremoni', u'pay', u'tribut', u'volunt']
[u'ballack', u'readi', u'world']
[u'spend', u'water', u'crisi']
[u'beazley', u'bulli', u'union', u'pledg', u'say']
[u'beazley', u'defend', u'polici']
[u'beazley', u'step', u'opposit']
[u'bellingen', u'council', u'back', u'timber', u'worker']
[u'berri', u'correct', u'centr', u'upgrad']
[u'crowd', u'rememb', u'myall', u'creek', u'massacr']
[u'black', u'hawk', u'memori', u'vandalis', u'townsvill']
[u'brave', u'wale', u'edg', u'argentina']
[u'break', u'hill', u'pair', u'share', u'queen', u'birthday', u'award']
[u'bulldog', u'grant', u'expect', u'miss', u'week']
[u'busi', u'plan', u'scrap', u'awa', u'beazley']
[u'busi', u'lobbi', u'criticis', u'beazley', u'pledg']
[u'cash', u'shortag', u'forc', u'hospit', u'delay', u'pay']
[u'chariti', u'worker', u'humbl', u'queen', u'birthday', u'honour']
[u'child', u'labour', u'rampant', u'cambodia', u'unicef']
[u'china', u'criticis', u'arm', u'export']
[u'closer']
[u'closer']
[u'closer', u'news']
[u'communiti', u'angri', u'lose', u'control', u'work']
[u'concern', u'rais', u'child', u'fit']
[u'crescent', u'head', u'resid', u'handov', u'local']
[u'czech', u'face', u'pivot', u'world', u'showdown']
[u'darwin', u'festiv', u'showcas', u'greek', u'cultur']
[u'arujo', u'seek', u'fresh', u'timor', u'vote']
[u'doctor', u'gather', u'hear', u'region', u'workload']
[u'trainer', u'honour', u'queen', u'birthday', u'award']
[u'domin', u'demon', u'eas', u'past', u'magpi']
[u'drought', u'task', u'forc', u'help', u'bourk']
[u'east', u'gippsland', u'adopt', u'year', u'tourism', u'plan']
[u'east', u'timor', u'ask', u'probe', u'dili', u'violenc']
[u'elliott', u'warn', u'raider', u'complac']
[u'eriksson', u'mull', u'rooney', u'return', u'trinidad', u'clash']
[u'estrang', u'partner', u'plead', u'guilti', u'murder']
[u'nation', u'parti', u'presid', u'get', u'queen', u'birthday']
[u'explos', u'maker', u'back', u'ammunit', u'sale', u'crackdown']
[u'north', u'resid', u'share', u'queen', u'birthday', u'award']
[u'father', u'score', u'fink', u'desert']
[u'father', u'hop', u'hick', u'hold']
[u'fatter', u'children', u'studi']
[u'feder', u'rue', u'miss', u'opportun']
[u'boost', u'water', u'bill']
[u'fink', u'winner', u'readi', u'parti']
[u'footbal', u'vanuatu', u'pull', u'plug', u'china']
[u'chief', u'minist', u'win', u'queen', u'birthday', u'honour']
[u'fund', u'boost', u'give', u'film', u'student', u'opportun']
[u'futur', u'unclear', u'disabl', u'accommod']
[u'general', u'dismiss', u'zarqawi', u'bash', u'claim']
[u'gippsland', u'near', u'intersect']
[u'gold', u'coast', u'resid', u'warn', u'fin', u'water']
[u'goulburn', u'murray', u'celebr', u'queen', u'birthday', u'award']
[u'govt', u'accus', u'snub', u'region', u'rail', u'user']
[u'govt', u'help', u'nifti', u'idea', u'sniff', u'cane', u'toad']
[u'govt', u'plan', u'mandatori', u'train', u'judg']
[u'govt', u'quiz', u'health', u'chief', u'departur']
[u'govt', u'urg', u'mandat', u'biofuel']
[u'guantanamo', u'suicid', u'label', u'stunt']
[u'guantanamo', u'suicid', u'good']
[u'henderson', u'question', u'product', u'gain']
[u'henin', u'hardenn', u'rank', u'french', u'open']
[u'hick', u'desper', u'lose', u'weight', u'lawyer', u'say']
[u'higher', u'fuel', u'price', u'stop', u'visitor']
[u'howard', u'unmov', u'immigr', u'poll']
[u'howard', u'urg', u'pressur', u'singapor', u'death', u'penalti']
[u'howel', u'cite', u'danger', u'throw']
[u'humphrey', u'bear', u'creator', u'get', u'queen', u'birthday']
[u'hundr', u'attend', u'black', u'hawk', u'memori']
[u'hygien', u'better', u'drug', u'bird', u'fight']
[u'inconsist', u'rain', u'fall', u'riverina']
[u'indigen', u'leader', u'honour', u'queen', u'birthday']
[u'indonesian', u'judg', u'reopen', u'suharto', u'case']
[u'injur', u'power', u'return']
[u'iran', u'criticis', u'nuclear', u'incent']
[u'isra', u'attack', u'kill', u'hama', u'milit']
[u'isra', u'train', u'derail', u'dead']
[u'itali', u'prepar', u'sacrific', u'flair', u'win', u'start']
[u'jail', u'solomon', u'island', u'minist', u'replac']
[u'japan', u'deserv', u'socceroo', u'respect', u'hiddink']
[u'japan', u'hope', u'speed', u'power']
[u'joey', u'involv', u'bet', u'plung', u'gallop']
[u'judg', u'touch', u'bereav', u'father']
[u'kean', u'retir', u'footbal']
[u'kid', u'drive', u'famili', u'near']
[u'kyogl', u'council', u'take', u'crown', u'reserv']
[u'labor', u'soft', u'middl', u'eastern', u'offend', u'debnam']
[u'launceston', u'childcar', u'boom', u'harm', u'local', u'provid']
[u'lawyer', u'defend', u'aborigin', u'elder', u'rape', u'sentenc']
[u'lawyer', u'warn', u'case', u'tree', u'clear', u'law']
[u'liber', u'parti', u'delay', u'preselect']
[u'local', u'wine', u'grape', u'grower', u'disappoint', u'summit']
[u'major', u'quak', u'caus', u'light', u'injuri', u'japan']
[u'die', u'singl', u'vehicl', u'road', u'crash']
[u'face', u'court', u'rockhampton', u'arm', u'robberi']
[u'mcguir', u'pledg', u'rebuild']
[u'media', u'blame', u'townsvill', u'mistrial']
[u'melbourn', u'collingwood']
[u'moimoi', u'charg', u'bite']
[u'molloy', u'fraca', u'distract', u'polici', u'plagiar']
[u'oppos', u'offshor', u'asylum', u'seeker', u'process', u'poll']
[u'murray', u'back', u'maroon', u'decis', u'start', u'webb']
[u'mysteri', u'surround', u'shepparton', u'shoot']
[u'newcastl', u'accus', u'attack', u'girl']
[u'newcastl', u'continu', u'fight', u'retain', u'seat']
[u'england', u'resid', u'honour', u'queen']
[u'enrich', u'technic', u'polit', u'iran']
[u'sheffield', u'ambul', u'centr', u'near', u'complet']
[u'north', u'coast', u'local', u'queen', u'birthday', u'award']
[u'north', u'east', u'player', u'line', u'socceroo', u'japan']
[u'north', u'net', u'queen', u'birthday', u'award']
[u'say', u'workplac', u'advoc', u'doesnt', u'duplic']
[u'batter', u'wild', u'storm']
[u'oam', u'recognis', u'cohuna', u'resid']
[u'price', u'stay', u'high', u'boss', u'say']
[u'dead', u'hurt', u'kashmir', u'attack']
[u'oper', u'say', u'problem', u'rail', u'softwar', u'fix']
[u'opposit', u'seek', u'detail', u'basslink', u'cost']
[u'orang', u'wine', u'industri', u'uniqu', u'advantag']
[u'outrag', u'grow', u'school', u'closur']
[u'outstand', u'aussi', u'queen', u'birthday', u'honour']
[u'outstand', u'aussi', u'recognis', u'queen', u'birthday']
[u'owen', u'come', u'good', u'cole']
[u'pacif', u'highway', u'revamp', u'cost', u'task']
[u'down', u'webb', u'lpga', u'championship', u'play']
[u'pakistan', u'blast', u'kill', u'wound']
[u'palestinian', u'threaten', u'assassin']
[u'pauleta', u'goal', u'see', u'portug', u'past', u'angola']
[u'payn', u'sidelin', u'clash', u'dragon']
[u'plaudit', u'boy', u'toni', u'award']
[u'play', u'kewel', u'start']
[u'disput', u'report', u'hickss', u'condit']
[u'polic', u'consid', u'vandal', u'link', u'morwel']
[u'polic', u'finish', u'cronulla', u'riot', u'investig']
[u'polic', u'seek', u'clarif', u'drug', u'drive', u'law']
[u'polic', u'unhappi', u'long', u'weekend', u'drive', u'offenc']
[u'polic', u'unhappi', u'long', u'weekend', u'driver']
[u'protest', u'iran', u'world', u'match']
[u'govt', u'slow', u'address', u'water', u'crisi', u'opposit']
[u'quad', u'bike', u'crash', u'put', u'rider', u'hospit']
[u'quadripleg', u'forc', u'abandon', u'oversea', u'stem', u'cell']
[u'queen', u'honour', u'australian']
[u'queen', u'birthday', u'award', u'honour', u'artist', u'athlet']
[u'queen', u'birthday', u'award', u'honour', u'mine', u'school', u'chief']
[u'queen', u'birthday', u'honour', u'recognis', u'busker', u'festiv']
[u'queen', u'birthday', u'honour', u'wide', u'burnett']
[u'queen', u'birthday', u'list', u'honour', u'illawarra', u'region']
[u'queen', u'birthday', u'list', u'honour', u'indigen', u'social']
[u'raider', u'hold', u'bulldog']
[u'raider', u'thrill', u'gutsi']
[u'rain', u'help', u'lift', u'farmer', u'spirit']
[u'rare', u'grace', u'shore']
[u'rawl', u'offer', u'match']
[u'cross', u'head', u'guantanamo', u'suicid']
[u'region', u'youth', u'prone', u'solvent', u'abus', u'drug']
[u'request', u'probe', u'timor', u'violenc']
[u'research', u'studi', u'winter', u'mood', u'effect']
[u'road', u'reopen', u'outback', u'rain']
[u'runner', u'track', u'race', u'rattler']
[u'rural', u'leagu', u'player', u'outback', u'muster', u'experi']
[u'russian', u'polic', u'mistak', u'rugbi', u'match', u'brawl']
[u'sabata', u'win', u'road', u'safeti', u'song', u'award']
[u'humanitarian', u'worker', u'win', u'queen', u'birthday', u'honour']
[u'savag', u'storm', u'blackout', u'auckland']
[u'scott', u'runner', u'singh']
[u'secur', u'guard', u'face', u'court', u'main', u'beach', u'shoot']
[u'servic', u'honour', u'black', u'hawk', u'crash', u'victim']
[u'socceroo', u'japan', u'open']
[u'south', u'east', u'share', u'queen', u'birthday', u'honour']
[u'southern', u'resid', u'recognis', u'honour', u'list']
[u'specialist', u'fail', u'sway', u'govt', u'hospit']
[u'storm', u'wreak', u'havoc']
[u'sugar', u'cane', u'diseas', u'prompt', u'farm', u'quarantin']
[u'swan', u'hill', u'carniv', u'look', u'record']
[u'tasmanian', u'devil', u'export', u'plan', u'criticis']
[u'taxi', u'return', u'castlemain']
[u'teacher', u'stand', u'firm', u'disput']
[u'technic', u'colleg', u'wouldnt', u'skill', u'shortag', u'king']
[u'teen', u'assault', u'earn', u'pair', u'suspend', u'jail', u'term']
[u'thayeb', u'pledg', u'repair', u'australian', u'tie']
[u'treat', u'chemic', u'leak']
[u'totti', u'featur', u'ghana']
[u'tourist', u'enjoy', u'cattl', u'drive', u'bush', u'charact']
[u'transport', u'magnat', u'get', u'second', u'queen', u'birthday']
[u'truck', u'accid', u'leav', u'resid', u'power']
[u'dead', u'taiwan', u'mudslid']
[u'iraqi', u'children', u'dead', u'raid']
[u'kill', u'gaza', u'attack']
[u'face', u'fine', u'aid', u'worker']
[u'soldier', u'kill', u'hurt', u'afghan', u'battl']
[u'agre', u'timor', u'probe']
[u'agre', u'investig', u'dili', u'death', u'minist', u'say']
[u'ask', u'interven', u'election']
[u'unrest', u'week', u'resolv', u'ramo', u'horta']
[u'seek', u'fund', u'timores', u'refuge']
[u'investig', u'timor', u'death', u'horta', u'say']
[u'investig', u'timor', u'violenc', u'minist', u'say']
[u'launch', u'timor', u'probe']
[u'criticis', u'guantanamo', u'suicid']
[u'deni', u'abus', u'zarqawi', u'bodi']
[u'drive', u'world', u'militari', u'spend', u'record', u'high']
[u'offici', u'label', u'tripl', u'suicid', u'stunt']
[u'feel', u'winter']
[u'green', u'seek', u'whale', u'migrat', u'studi']
[u'propos', u'world']
[u'warn', u'issu', u'fake', u'bank', u'email']
[u'western', u'bulldog', u'grant', u'expect', u'miss', u'week']
[u'western', u'queensland', u'honour', u'queen', u'birthday']
[u'western', u'resid', u'share', u'queen', u'birthday', u'honour']
[u'west', u'nowra', u'depot', u'see', u'rise', u'asbesto', u'dump']
[u'wheatbelt', u'search', u'end', u'theft', u'charg']
[u'wildcat', u'sack', u'import', u'follow', u'posit', u'drug', u'test']
[u'windi', u'wilt', u'indian', u'pressur']
[u'winegrow', u'group', u'say', u'inform', u'lack']
[u'wine', u'industri', u'deni', u'compens']
[u'women', u'network', u'gather', u'info', u'rural', u'nurs']
[u'work', u'begin', u'makyb', u'diva', u'statu']
[u'world', u'test', u'robot']
[u'heroin', u'dealer', u'jail']
[u'farm', u'regist', u'livestock', u'scheme']
[u'kill', u'kirkuk', u'bomb']
[u'cancer', u'case', u'year', u'workplac', u'report']
[u'injur', u'bangladeshi', u'continu', u'strike']
[u'hop', u'rest', u'civil', u'union']
[u'actor', u'matt', u'damon', u'wife', u'give', u'birth', u'babi', u'girl']
[u'quiz', u'feder', u'school', u'fund']
[u'seek', u'cross', u'border', u'school', u'subsidi']
[u'urg', u'overturn', u'civil', u'union', u'law']
[u'bust', u'alleg', u'cocain', u'ring']
[u'agent', u'doubt', u'stamp', u'duti', u'claim']
[u'strike', u'kill', u'gaza']
[u'branch', u'reach', u'compromis']
[u'offici', u'say', u'chang', u'help', u'parti']
[u'qaeda', u'name', u'sept', u'hijack']
[u'qaeda', u'name', u'zarqawi', u'successor']
[u'american', u'sever', u'injur', u'kakadu', u'crash']
[u'anti', u'bulli', u'group', u'chief', u'examin', u'bendigo', u'anti']
[u'anti', u'whale', u'go', u'shock', u'valu']
[u'aust', u'interven', u'east', u'timor', u'polit', u'downer']
[u'aust', u'celebr', u'socceroo', u'victori']
[u'aust', u'indonesia', u'urg', u'mend', u'bilater', u'relationship']
[u'australian', u'celebr', u'socceroo']
[u'australian', u'jubil', u'socceroo']
[u'rollback', u'vote', u'winner']
[u'backbench', u'pressur', u'govt', u'asylum', u'legisl']
[u'barcod', u'track', u'student', u'movement']
[u'barrist', u'question', u'govt', u'claim', u'hickss', u'good']
[u'beazley', u'union', u'captiv', u'howard']
[u'beazley', u'claim', u'parti', u'support', u'pledg']
[u'beef', u'export', u'look', u'expand', u'oversea', u'market']
[u'bendigo', u'doctor', u'tell', u'repay', u'medicar']
[u'bendigo', u'sweep', u'volleybal', u'championship', u'horsham']
[u'billiton', u'fin', u'blast', u'death']
[u'blackout', u'report', u'urg', u'higher', u'compo', u'payment']
[u'blaze', u'destroy', u'cohuna', u'hardwar', u'store']
[u'blue', u'expect', u'fire', u'maroon', u'pack']
[u'bowen', u'call', u'maroon', u'squad']
[u'brazil', u'skipper', u'face', u'prison', u'passport']
[u'brimbl', u'inquest', u'resum']
[u'break', u'hill', u'endur', u'long', u'weekend', u'fuel', u'price', u'spike']
[u'bulk', u'save', u'crash', u'injuri']
[u'bush', u'advis', u'wont', u'charg', u'leak']
[u'bush', u'cabinet', u'assess', u'iraq']
[u'bush', u'warn', u'zarqawi', u'successor']
[u'busi', u'long', u'weekend', u'boat', u'patrol']
[u'cahil', u'fire', u'socceroo', u'time']
[u'crash', u'victim', u'succumb', u'injuri']
[u'see', u'scapegoat', u'financi', u'troubl']
[u'chemic', u'firm', u'worker', u'guinea', u'pig']
[u'claim', u'cultur', u'abus', u'immigr', u'detent']
[u'closer']
[u'closer', u'news']
[u'coalit', u'question', u'migrat']
[u'coalit', u'senat', u'threaten', u'migrat', u'revolt']
[u'cold', u'weather', u'freez', u'water', u'pip']
[u'cole', u'sign', u'year', u'deal', u'chelsea']
[u'commonwealth', u'quash', u'union', u'law']
[u'compens', u'agre', u'hopper', u'case']
[u'program', u'caus', u'nativ', u'veget']
[u'concern', u'rais', u'sewag', u'darwin', u'harbour']
[u'cool', u'season', u'mean', u'earli', u'mango']
[u'corrupt', u'alleg', u'child', u'death', u'case']
[u'council', u'monitor', u'beaconsfield', u'redund']
[u'council', u'allow', u'consult', u'moor', u'fee']
[u'cricket', u'australia', u'revamp', u'unpopular', u'ash', u'ticket']
[u'cross', u'sign', u'forc']
[u'crouch', u'longer', u'feel', u'like', u'danc']
[u'cyclist', u'rais', u'fund', u'polic', u'legaci', u'ride']
[u'dancer', u'dreamtim', u'stoneheng']
[u'demand', u'soar', u'softwood']
[u'doubt', u'rais', u'margaret', u'river', u'electr', u'grid']
[u'doubt', u'surfac', u'mental', u'health', u'unit', u'fund']
[u'educ', u'minist', u'rais', u'concern', u'nation']
[u'elder', u'jail', u'daughter', u'rape']
[u'elect', u'observ', u'caution', u'fijian', u'militari']
[u'emerg', u'dept', u'face', u'doctor', u'shortag']
[u'fuel', u'tank', u'blame', u'plane', u'crash']
[u'england', u'stronger', u'melbourn']
[u'entertain', u'tell', u'quiet', u'brimbl']
[u'esper', u'aborigin', u'health', u'servic', u'face', u'fund']
[u'evacu', u'urg', u'tropic', u'storm', u'threaten']
[u'familiar', u'blame', u'countri', u'road', u'death']
[u'famili', u'develop', u'fail', u'project']
[u'farmer', u'help', u'biodiesel']
[u'fatah', u'gunmen', u'torch', u'hama', u'bank', u'offic']
[u'fear', u'forest', u'log', u'wipe', u'quokka', u'habitat']
[u'fear', u'grape', u'grower', u'face', u'ruin']
[u'feder', u'agenc', u'internet', u'secur', u'report']
[u'kill', u'israel', u'rail', u'cross', u'smash']
[u'florida', u'hurrican', u'watch', u'alberto', u'near']
[u'fli', u'scientist', u'aim', u'scienc']
[u'folk', u'lament', u'bulldog', u'stupid']
[u'irish', u'prime', u'minist', u'die']
[u'fortescu', u'railway', u'appeal', u'prematur']
[u'franc', u'slay', u'ghost']
[u'fund', u'seek', u'exmouth', u'marin', u'research', u'centr']
[u'funer', u'hold', u'week', u'factori', u'blast']
[u'disallow', u'civil', u'union', u'law']
[u'govt', u'question', u'migrat']
[u'govt', u'auckland', u'power', u'blackout']
[u'govt', u'urg', u'expand', u'water', u'save', u'plan']
[u'grazier', u'label', u'mulga', u'cod', u'unwork']
[u'green', u'energi', u'plan', u'smaller', u'solar', u'tower']
[u'green', u'contest', u'seat', u'eastern', u'victoria']
[u'green', u'help', u'lower', u'cancer', u'risk']
[u'habib', u'compo', u'case', u'august']
[u'harbour', u'sewag', u'pipe', u'closur', u'year', u'away']
[u'heat', u'factor', u'jubil', u'socceroo']
[u'hick', u'report', u'good', u'health']
[u'high', u'prais', u'triumphant', u'socceroo']
[u'homebuy', u'grant', u'cheat', u'forc', u'repay']
[u'hous', u'rebuild', u'step', u'post', u'cyclon']
[u'hundr', u'test', u'bike', u'skill', u'fink', u'desert', u'race']
[u'warn', u'current', u'account', u'deficit']
[u'incompar', u'brazil', u'launch', u'sixth']
[u'indian', u'flood', u'kill', u'displac']
[u'indigen', u'elder', u'look', u'form', u'nation', u'council']
[u'indigen', u'festiv', u'highlight', u'road', u'toll', u'issu']
[u'indonesia', u'follow', u'migrat', u'close']
[u'indonesia', u'lower', u'volcano', u'alert', u'merapi']
[u'indonesian', u'ambassador', u'appeal', u'cooper']
[u'injur', u'serbian', u'defend', u'vidic']
[u'inmat', u'halal', u'meat', u'challeng']
[u'ireland', u'unchang', u'second', u'test']
[u'japan', u'desper', u'relaunch', u'world', u'campaign']
[u'japanes', u'soccer', u'fan', u'disappoint']
[u'judg', u'cut', u'short', u'saddam', u'trial', u'defenc']
[u'kalgoorli', u'boulder', u'council', u'hybrid', u'fuel']
[u'karratha', u'liquid', u'ammonia', u'leav', u'taiwan']
[u'kempsey', u'council', u'decid', u'rate', u'rise']
[u'kennedi', u'junior', u'coach', u'see', u'role', u'socceroo']
[u'kitti', u'glori']
[u'koller', u'quarter', u'final']
[u'korea', u'world']
[u'lack', u'awar', u'problem', u'skill', u'shortag']
[u'group', u'cast', u'doubt', u'perman']
[u'level', u'water', u'restrict', u'start']
[u'lion', u'hope', u'pressur']
[u'livestock', u'produc', u'warn', u'feed']
[u'macdougal', u'accept', u'month', u'long']
[u'macdougal', u'howel', u'accept', u'suspens']
[u'die', u'goldfield', u'highway', u'crash']
[u'maroon', u'prove', u'critic', u'wrong', u'meninga']
[u'mayor', u'want', u'water', u'save', u'rebat', u'extend']
[u'meet', u'consid', u'wyndham', u'ambul', u'servic']
[u'mental', u'health', u'team', u'visit', u'nauru', u'detaine']
[u'mick', u'malthous', u'neal', u'danih', u'speak']
[u'militari', u'agreement', u'sign', u'turkey']
[u'miner', u'appeal', u'pilbara', u'rail', u'line', u'decis']
[u'worker', u'skill', u'boost']
[u'minist', u'accus', u'fail', u'local', u'govt']
[u'minist', u'weigh', u'return', u'doubl', u'decker', u'bus']
[u'moimoi', u'clear', u'bite', u'charg']
[u'flexibl', u'seek', u'sentenc', u'decis']
[u'mother', u'murder', u'fight', u'killer', u'releas']
[u'motorcyclist', u'die', u'port', u'piri', u'road', u'crash']
[u'motorcyclist', u'urg', u'govt', u'wire', u'rope', u'barrier']
[u'confid', u'health', u'servic', u'despit', u'ceo']
[u'fear', u'health', u'board', u'merger', u'close', u'bush']
[u'survey', u'show', u'confid', u'declin']
[u'natasha', u'ryan', u'face', u'court']
[u'nation', u'seek', u'wider', u'spread', u'health', u'resourc']
[u'councillor', u'want', u'ward', u'divis']
[u'law', u'forc', u'hand', u'paper']
[u'noosa', u'branch', u'discuss', u'molloy', u'futur']
[u'polic', u'mobil']
[u'road', u'rider', u'target', u'canunda', u'nation', u'park']
[u'olymp', u'boxer', u'convict', u'adelaid', u'bash']
[u'onetel', u'collaps', u'blame', u'coincid']
[u'opposit', u'urg', u'surveil', u'bashir']
[u'palestinian', u'tourism', u'minist', u'resign', u'amid', u'violenc']
[u'fin', u'worker', u'death']
[u'parti', u'back', u'beazley', u'polici']
[u'petit', u'aim', u'save', u'taxi', u'firm']
[u'fin', u'stevedor', u'death']
[u'polic', u'charg', u'woman', u'crash', u'hous']
[u'polic', u'hunt', u'bottl', u'shop', u'bandit']
[u'polic', u'investig', u'shoot', u'warn', u'public']
[u'polic', u'seiz', u'document', u'biki', u'gang', u'raid']
[u'polic', u'welcom', u'guilti', u'plea', u'fianc', u'kill']
[u'power', u'youngl', u'earn', u'rise', u'star', u'nomin']
[u'prison', u'plead', u'guilti', u'risdon', u'sieg', u'charg']
[u'puppet', u'gather', u'nation', u'confer']
[u'die', u'singl', u'vehicl', u'congupna', u'crash']
[u'rain', u'spark', u'winter', u'grain', u'crop', u'plant']
[u'rain', u'slow', u'india', u'push', u'victori']
[u'rawl', u'ban', u'match']
[u'relationship', u'centr', u'open', u'temporari', u'offic']
[u'report', u'detail', u'grim', u'outlook', u'wimmera', u'malle']
[u'report', u'urg', u'asylum', u'chang', u'drop']
[u'right', u'charter', u'empow', u'crime', u'victim']
[u'road', u'death', u'prompt', u'ecstasi', u'warn']
[u'rural', u'worker', u'risk', u'cancer', u'report', u'show']
[u'ryan', u'boyfriend', u'fight', u'runaway', u'charg']
[u'seawe', u'compound', u'resort', u'save', u'tree']
[u'senat', u'urg', u'protect', u'civil', u'union']
[u'sentenc', u'law', u'review', u'win', u'support']
[u'offend', u'continu', u'detent', u'defend']
[u'socceroo', u'japan']
[u'socceroo', u'world', u'hurdl']
[u'somali', u'warlord', u'face', u'travel', u'ban']
[u'stevedor', u'kill', u'adelaid', u'wharf', u'accid']
[u'studi', u'look', u'heat', u'stress', u'concern', u'helmet']
[u'sugar', u'cane', u'diseas', u'devast']
[u'farmer', u'buy', u'world', u'pricey', u'sheep']
[u'tasmania', u'look', u'recruit', u'bangladeshi', u'talent']
[u'therapi', u'centr', u'help', u'youth', u'disabl']
[u'court', u'parti', u'mele']
[u'tast', u'bakeri', u'reopen', u'food', u'tamper', u'scare']
[u'tough', u'water', u'restrict', u'south', u'east']
[u'tourism', u'boom', u'pose', u'risk', u'antarct', u'wilder']
[u'tribun', u'decid', u'albani', u'high', u'rise', u'plan']
[u'tribun', u'hear', u'anti', u'elect', u'pamphlet', u'case']
[u'trio', u'challeng', u'charg']
[u'trio', u'challeng', u'charg', u'tribun']
[u'tripodi', u'open', u'harrington', u'boat', u'facil']
[u'charg', u'rodeo', u'bull', u'abus']
[u'crash', u'near', u'geraldton']
[u'brother', u'speak', u'terrorist', u'raid', u'fear']
[u'unicef', u'track', u'miss', u'timores', u'children']
[u'union', u'seek', u'overs', u'public', u'servic']
[u'union', u'seek', u'communiti', u'support', u'law']
[u'launch', u'timor', u'appeal']
[u'back', u'away', u'guantanamo', u'stunt', u'remark']
[u'rate', u'fear', u'wipe', u'market']
[u'vandal', u'classroom', u'ablaz']
[u'veteran', u'advic', u'help', u'fink', u'race', u'winner']
[u'view', u'mountain', u'australia', u'japan']
[u'volunt', u'work', u'rise', u'survey']
[u'wadey', u'riot', u'accus', u'queue', u'justic']
[u'exercis', u'test', u'anti', u'terror', u'respons']
[u'wallabi', u'face', u'fit', u'test']
[u'webbi', u'award', u'honour', u'network', u'site']
[u'weipa', u'want', u'state', u'wide', u'water', u'save', u'rebat']
[u'wilcannia', u'work', u'scheme', u'model']
[u'wind', u'farm', u'refer', u'group', u'decid', u'soon']
[u'world', u'diet', u'leav', u'australian', u'danger']
[u'aborigin', u'legal', u'servic', u'seek', u'fund']
[u'afghan', u'guantanamo', u'soon', u'offici']
[u'agreement', u'aim', u'cover', u'region', u'health', u'servic']
[u'airlin', u'consid', u'griffith', u'melbourn', u'rout']
[u'albani', u'sewerag', u'work', u'restrict', u'traffic']
[u'tender', u'liber', u'newslett', u'debat']
[u'push', u'increas', u'wadey', u'abus', u'notif']
[u'anti', u'program', u'short', u'sight']
[u'asbesto', u'compens', u'lift']
[u'auditor', u'general', u'attack', u'health', u'reform']
[u'aussi', u'cricket', u'disciplin', u'england']
[u'aussi', u'hop', u'golf', u'major', u'drought']
[u'australia', u'miner', u'export', u'fall']
[u'aust', u'rout', u'rule', u'unlik', u'chang']
[u'babi', u'arriv', u'home', u'glass', u'hous', u'mountain']
[u'babysitt', u'rapist', u'await', u'sentenc']
[u'baillieus', u'financ', u'scrutini']
[u'barca', u'sign', u'gudjohnsen', u'year', u'deal']
[u'bashir', u'free', u'indonesian', u'jail']
[u'bashir', u'free', u'jail']
[u'bashir', u'releas', u'indonesian', u'jail']
[u'bashir', u'releas', u'jail']
[u'beazley', u'deni', u'ax', u'awa', u'lower', u'wag']
[u'beckham', u'back', u'owen', u'bounc']
[u'crisi', u'grip', u'townsvill', u'hospit']
[u'bedouri', u'cancel', u'camel', u'race']
[u'bligh', u'call', u'calm', u'molloy', u'controversi']
[u'blue', u'fear', u'locki', u'step']
[u'brimbl', u'inquest', u'continu']
[u'brisban', u'council', u'budget', u'rais', u'rat']
[u'buffalo', u'chees', u'win', u'gold', u'festiv']
[u'bush', u'hold', u'talk', u'iraq']
[u'bushrang', u'bulk', u'squad']
[u'busi', u'bodi', u'reject', u'mandatori', u'death', u'charg']
[u'cahil', u'elat', u'socceroo', u'victori']
[u'call', u'mount', u'govt', u'drop', u'migrat']
[u'campbel', u'talk', u'whale', u'vote', u'prospect']
[u'cane', u'diseas', u'prompt', u'grower', u'calm']
[u'part', u'maker', u'cut', u'job']
[u'challeng', u'put', u'wadey', u'riot', u'case', u'hold']
[u'chariti', u'struggl', u'econom', u'boom', u'hurt', u'poor']
[u'chef', u'tell', u'frighten', u'storey', u'lift', u'plung']
[u'closer', u'news']
[u'closer']
[u'cloud', u'hang', u'break', u'hill', u'har', u'race']
[u'cold', u'snap', u'take', u'toll', u'prawn', u'oper']
[u'communiti', u'back', u'rail', u'trail', u'develop', u'board']
[u'problem', u'delay', u'flight']
[u'conflux', u'audio']
[u'contract', u'sign', u'clean', u'power', u'station']
[u'costello', u'call', u'reform']
[u'council', u'call', u'govt', u'sewerag', u'help']
[u'council', u'make', u'plan', u'marina']
[u'council', u'seek', u'legal', u'advic', u'camel', u'oper']
[u'court', u'dismiss', u'archibald', u'prize', u'challeng']
[u'court', u'dismiss', u'appeal']
[u'court', u'jail', u'north', u'cannabi', u'grower']
[u'court', u'jail', u'fatal', u'stab']
[u'court', u'jail', u'pharmaci', u'drug', u'theft']
[u'court', u'refus', u'drop', u'ryan', u'charg']
[u'crash', u'driver', u'guilti', u'manslaught']
[u'cross', u'return', u'rugbi']
[u'cruis', u'passeng', u'tell', u'sleazi', u'travel']
[u'daloisio', u'wont', u'head', u'merg']
[u'dalrympl', u'boost', u'coal', u'capac']
[u'dental', u'clinic', u'equip', u'boost']
[u'dentist', u'highlight', u'tragic', u'lack', u'emerg']
[u'diver', u'complaint', u'reignit', u'darwin', u'sewag', u'debat']
[u'handler', u'learn', u'dutch', u'recruit']
[u'confirm', u'round', u'poison', u'tree']
[u'drought', u'hamper', u'hunter', u'burn', u'plan']
[u'exot', u'cane', u'diseas', u'detect']
[u'expert', u'rais', u'mari', u'river', u'leakag', u'fear']
[u'expert', u'help', u'socceroo', u'recov', u'drain']
[u'farmer', u'rais', u'pipe', u'capac', u'worri']
[u'farmsaf', u'maintain', u'cancer', u'risk', u'minimis']
[u'fear', u'lose', u'domin', u'arab', u'derbi', u'build']
[u'fifa', u'promis', u'water', u'combat', u'heat']
[u'firefight', u'kill', u'emerg', u'crash']
[u'flood', u'caus', u'chao', u'south', u'asia']
[u'fortescu', u'roch', u'form', u'mine', u'allianc']
[u'fossil', u'place', u'crocodil', u'ancestor']
[u'fourth', u'teen', u'sentenc', u'rise']
[u'fund', u'hospit', u'power', u'boost']
[u'futur', u'togo', u'coach', u'doubt']
[u'german', u'pole', u'threaten', u'countri', u'hop']
[u'gold', u'coast', u'resid', u'bring', u'water', u'bucket']
[u'gold', u'price', u'drop', u'earli']
[u'govt', u'dept', u'defend', u'wheelchair', u'effort']
[u'govt', u'extend', u'water', u'save', u'rebat']
[u'govt', u'memo', u'back', u'region', u'paramed', u'concern']
[u'govt', u'stand', u'firm', u'offshor', u'process']
[u'govt', u'urg', u'outlaw', u'commerci', u'cotton', u'crop']
[u'green', u'defend', u'spirit', u'disclosur']
[u'green', u'group', u'protest', u'council', u'saleyard']
[u'group', u'scrutini', u'mine', u'plan']
[u'gusmao', u'vow', u'guard', u'constitut']
[u'hama', u'minist', u'carri', u'million', u'dollar']
[u'hawk', u'extend', u'clarkson', u'contract']
[u'fin', u'drink', u'match']
[u'high', u'court', u'dismiss', u'child', u'detaine', u'citizenship']
[u'high', u'court', u'reject', u'compo', u'case']
[u'honour', u'fail', u'water', u'access']
[u'hope', u'remain', u'cancel', u'jazz', u'festiv']
[u'hotel', u'seek', u'oper', u'stop', u'world']
[u'hous', u'fire', u'blame', u'faulti', u'flue']
[u'humphri', u'regret', u'civil', u'union', u'intervent']
[u'give', u'direct', u'umpir', u'referr']
[u'indigen', u'figur', u'caus', u'conflict']
[u'indigen', u'peopl', u'consult', u'confer', u'tell']
[u'indonesia', u'merapi', u'alert']
[u'indonesia', u'urg', u'tab', u'bashir']
[u'pictur', u'muse', u'quai', u'bran', u'pari']
[u'insur', u'money', u'cover', u'kapunda', u'statu', u'repair']
[u'rate', u'jitter', u'push', u'consum', u'confid']
[u'intern', u'team', u'probe', u'timor', u'violenc']
[u'irish', u'consid', u'commemor', u'famin']
[u'jackson', u'make', u'decad', u'team']
[u'java', u'quak', u'leav', u'jobless']
[u'frenkel', u'interview']
[u'judg', u'warn', u'teen', u'fatal', u'theft', u'consequ']
[u'kambah', u'high', u'student', u'boycott', u'class', u'school']
[u'kidwel', u'head', u'rabbitoh']
[u'klim', u'stay', u'melbourn']
[u'labor', u'hit', u'busi', u'lobbi']
[u'legal', u'argument', u'delay', u'terror', u'hear']
[u'liber', u'split', u'civil', u'union', u'law']
[u'livestock', u'produc', u'urg', u'appli', u'subsidi']
[u'luca', u'height', u'accid', u'threat']
[u'charg', u'drug', u'babi', u'cloth']
[u'crush', u'kerang', u'industri', u'accid']
[u'injur', u'world', u'celebr']
[u'jail', u'cannabi', u'mail', u'attempt']
[u'market', u'edg', u'posit', u'territori']
[u'market', u'overcom', u'investor', u'nerv']
[u'maroon', u'hold', u'handi', u'lead']
[u'maroon', u'triumph', u'blue']
[u'mari', u'river', u'leak', u'claim', u'deni']
[u'mayor', u'pledg', u'support', u'resolv', u'nurs', u'home', u'delay']
[u'meet', u'consid', u'possibl', u'hospit', u'sit']
[u'meet', u'decid', u'festiv', u'futur']
[u'miami', u'ralli', u'edg', u'dalla']
[u'migrat', u'chang', u'consid', u'indonesia', u'concern']
[u'militia', u'claim', u'somali', u'warlord', u'stronghold']
[u'minist', u'seek', u'wild', u'river', u'moratorium']
[u'minist', u'revisit', u'mulga', u'harvest', u'issu']
[u'busi', u'need', u'natur', u'suppli']
[u'hors', u'seek', u'polocross', u'world']
[u'sugar', u'cane', u'smut', u'case', u'investig']
[u'mortlock', u'skipper', u'wallabi']
[u'mount', u'barker', u'colleg', u'project', u'track', u'govt']
[u'diagnosi', u'prompt', u'legionnair', u'search']
[u'gambier', u'resid', u'protest', u'bypass', u'plan']
[u'murray', u'irrig', u'alloc', u'restrict']
[u'nation', u'park', u'search', u'continu', u'miss', u'woman']
[u'nation', u'cast', u'doubt', u'transport', u'chang']
[u'newcastl', u'council', u'drop', u'infrastructur', u'levi', u'plan']
[u'concern', u'land', u'clear', u'law']
[u'task', u'forc', u'tackl', u'child', u'abus']
[u'comment', u'health', u'dept', u'scapego', u'claim']
[u'farmer', u'banana', u'theft']
[u'polic', u'bust', u'bet', u'ring']
[u'youngster', u'dump', u'shoplift']
[u'plan', u'indigen', u'generat', u'chang']
[u'nullarbor', u'farmer', u'renew', u'plea', u'drought', u'relief']
[u'opposit', u'school', u'payment', u'plan', u'hurt', u'famili']
[u'origin', u'brisban']
[u'pakistani', u'girl', u'save', u'marriag']
[u'palestinian', u'govern', u'worker', u'storm', u'parliament']
[u'parliament', u'guard', u'face', u'assault', u'charg']
[u'parreira', u'guarante', u'place', u'lacklustr', u'ronaldo']
[u'penalti', u'work', u'death', u'inadequ', u'say']
[u'pepper', u'spray', u'schoolgirl', u'arrest']
[u'petit', u'seek', u'reinstat', u'health', u'servic', u'fund']
[u'pioneer', u'valley', u'offer', u'rang', u'attract']
[u'bull', u'maul', u'hunter', u'valley']
[u'pluto', u'event', u'attract', u'astronom']
[u'stand', u'migrat', u'decis']
[u'polic', u'associ', u'air', u'cell', u'concern']
[u'polic', u'investig', u'armidal', u'sport', u'centr', u'blaze']
[u'polic', u'wine', u'theft', u'vendetta']
[u'polic', u'warn', u'winter', u'danger']
[u'porn', u'ban', u'appli', u'phone']
[u'power', u'eagl', u'litmus', u'test']
[u'power', u'station', u'plan', u'get', u'condit', u'approv']
[u'price', u'rise', u'magic', u'million']
[u'public', u'support', u'twin', u'citi', u'fund', u'stoush']
[u'queensland', u'win']
[u'race', u'film', u'rev', u'road', u'safeti', u'concern']
[u'rampant', u'maroon', u'forc', u'decid']
[u'rebel', u'threaten', u'disrupt', u'philippin', u'mine']
[u'record', u'low', u'malle', u'cold', u'snap']
[u'recycl', u'resort']
[u'refere', u'give', u'japan', u'penalti', u'fifa']
[u'ruddock', u'trade', u'blow', u'civil', u'union']
[u'safin', u'unimpress', u'despit', u'snap', u'lose', u'streak']
[u'sale', u'hospit', u'paediatrician']
[u'scam', u'target', u'tourism', u'oper']
[u'senat', u'approv', u'inquiri', u'indigen', u'steal']
[u'share', u'market', u'fall', u'inflat', u'fear']
[u'shire', u'maintain', u'push', u'justic', u'complex']
[u'singaporean', u'stand', u'firm', u'death', u'penalti']
[u'singapor', u'welcom', u'canberra']
[u'snowi', u'hydro', u'rethink', u'develop', u'plan']
[u'socceroo', u'plot', u'upset', u'mighti', u'brazil']
[u'softwar', u'help', u'aborigin', u'languag', u'teach']
[u'soldier', u'rebel', u'kill', u'afghan', u'clash']
[u'solomon', u'chang', u'corrupt']
[u'south', u'west', u'wednesday', u'june']
[u'spain', u'unchang', u'doubt', u'linger', u'shevchenko']
[u'state', u'feder', u'erupt', u'reef', u'heritag', u'list']
[u'state', u'origin', u'decid', u'melbourn']
[u'steve', u'jackson', u'interview']
[u'stranger', u'drive', u'girl', u'hour', u'worri']
[u'summer', u'fruit', u'industri', u'look', u'govt', u'support']
[u'sydney', u'nuclear', u'leak', u'rais', u'safeti', u'concern']
[u'team', u'gear', u'origin']
[u'telstra', u'sale', u'hurdl', u'near', u'clear', u'coonan']
[u'terror', u'case', u'delay', u'caus', u'concern']
[u'terror', u'case', u'fund', u'stoush', u'resolv']
[u'test', u'confirm', u'hobart', u'area']
[u'toowoomba', u'owner', u'marshal', u'taxi', u'rank']
[u'tourism', u'chief', u'seek', u'fewer', u'hurdl', u'foreign']
[u'truss', u'offer', u'qualifi', u'support', u'nuclear', u'power']
[u'win', u'scud']
[u'suspend', u'guantanamo', u'militari', u'trial']
[u'vanston', u'stand', u'migrat']
[u'venus', u'william', u'confirm', u'hopman']
[u'town', u'trial', u'medicin', u'vend', u'machin']
[u'wallabi', u'wait', u'heenan', u'scan', u'result']
[u'walli', u'lewi', u'statu', u'get', u'blue']
[u'weather', u'take', u'toll', u'farmer']
[u'westpoint', u'promot', u'asset', u'freez', u'extend']
[u'wheatbelt', u'farmer', u'seek', u'financi', u'advic']
[u'wine', u'bring', u'prais', u'local', u'drop']
[u'woman', u'burn', u'cloth', u'catch']
[u'woolworth', u'sell', u'distribut', u'centr']
[u'work', u'start', u'toowoomba', u'cancer', u'treatment', u'unit']
[u'young', u'rugbi', u'player', u'dump', u'shoplift']
[u'properti', u'raid', u'asset', u'check']
[u'accc', u'rule', u'fruit', u'tree', u'restrict']
[u'act', u'health', u'area', u'boss', u'move', u'allay', u'concern']
[u'aerial', u'spray', u'rule', u'tighten']
[u'agenc', u'fear', u'dili', u'violenc', u'impact', u'children']
[u'aird', u'budget']
[u'investig', u'travel', u'claim']
[u'black', u'continu', u'experi']
[u'figur', u'compulsori', u'ethanol', u'level', u'fuel']
[u'anasta', u'keen', u'make', u'amend', u'melbourn']
[u'ansto', u'detail', u'nuclear', u'accid']
[u'competit', u'focus', u'cancer', u'survivor']
[u'asylum', u'chang', u'excis', u'mainland', u'beazley']
[u'australia', u'soften', u'anti', u'whale', u'stanc', u'expert']
[u'author', u'investig', u'tower', u'legionnair']
[u'bashir', u'urg', u'howard', u'convert', u'islam']
[u'beaconsfield', u'miss', u'opportun']
[u'beadman', u'junior', u'win', u'brag', u'right']
[u'birthday', u'servic', u'laud', u'queen', u'human']
[u'black', u'hawk', u'compo', u'resolut', u'close', u'govt', u'say']
[u'brack', u'defend', u'dismiss', u'ministeri', u'staff']
[u'briberi', u'appeal', u'decis', u'pleas', u'mayor']
[u'brimbl', u'cruis', u'teen', u'warn', u'person']
[u'brisban', u'water', u'price', u'hike', u'anger', u'local', u'councillor']
[u'british', u'galleri', u'display', u'slate']
[u'break', u'hand', u'sidelin', u'koutoufid']
[u'buderus', u'urg', u'blue', u'faith']
[u'bush', u'keen', u'close', u'guantanamo']
[u'bush', u'urg', u'support', u'iraqi', u'govt']
[u'busi', u'group', u'warn', u'popul', u'crisi']
[u'busi', u'lobbi', u'need', u'perspect', u'awa']
[u'busi', u'lobbi', u'step', u'critic', u'beazley']
[u'chang', u'drought', u'criteria']
[u'carpent', u'back', u'beazley', u'pledg']
[u'castlemain', u'resid', u'welcom', u'taxi']
[u'cattlemen', u'associ', u'back', u'chief']
[u'chemotherapi', u'treatment', u'offer', u'south', u'east']
[u'child', u'care', u'woe', u'continu', u'dongara']
[u'china', u'step', u'secur', u'region', u'leader']
[u'civil', u'union', u'vote', u'appal']
[u'closer']
[u'closer']
[u'coalit', u'forc', u'launch', u'afghanistan', u'offens']
[u'coal', u'ship', u'delay', u'expect', u'newcastl']
[u'cold', u'weather', u'caus', u'hous', u'flood']
[u'connolli', u'repeat', u'support', u'gregan']
[u'conserv', u'group', u'concern', u'cotton']
[u'coordin', u'bomb', u'kill', u'thailand']
[u'coron', u'rule', u'toddler', u'die', u'sever', u'shake']
[u'costa', u'rica', u'face', u'ecuador', u'clash']
[u'council', u'concern', u'flood', u'mitig', u'fund']
[u'council', u'defend', u'rate', u'rise']
[u'council', u'deni', u'phone', u'blow']
[u'councillor', u'question', u'health', u'servic', u'fund']
[u'council', u'decid', u'develop', u'plan']
[u'court', u'acquit', u'charg']
[u'court', u'fin', u'fake', u'arm', u'robberi', u'report']
[u'court', u'rule', u'crime', u'accus', u'detent', u'legal']
[u'court', u'uphold', u'glitter', u'abus', u'sentenc']
[u'crisi', u'talk', u'hold', u'cane', u'diseas', u'crisi', u'deepen']
[u'cronulla', u'rioter', u'lose', u'sentenc', u'appeal']
[u'cross', u'border', u'school', u'fund', u'request', u'draw', u'critic']
[u'crow', u'decid', u'mcleod', u'surgeri']
[u'deadlin', u'loom', u'wildlif', u'survey']
[u'diari', u'reveal', u'scrutini', u'baillieu', u'famili']
[u'dili', u'patient', u'doctor', u'say']
[u'doctor', u'placement', u'polici', u'scrutini']
[u'dont', u'bring', u'poor', u'qualiti', u'stock', u'saleyard', u'farmer']
[u'downer', u'question', u'bashir', u'role', u'quak']
[u'drug', u'seizur', u'disrupt', u'traffic', u'ring']
[u'england', u'vow', u'step', u'trinidad', u'tobago']
[u'exot', u'fungus', u'threaten', u'cane', u'crop']
[u'expert', u'look', u'close', u'drug', u'abus']
[u'famili', u'win', u'appeal', u'meatwork', u'death', u'fine']
[u'farmer', u'rais', u'concern']
[u'farmer', u'urg', u'segreg', u'frost', u'damag', u'fruit']
[u'croc', u'come', u'scientist']
[u'presid', u'surgeri', u'colon', u'cancer']
[u'foster', u'sell', u'shanghai', u'oper']
[u'funer', u'hear', u'blast', u'victim', u'play', u'natur']
[u'fungus', u'kill', u'cancer', u'centr', u'patient']
[u'fungus', u'outbreak', u'threaten', u'cane', u'crop']
[u'fyshwich', u'develop', u'threaten', u'retail', u'nairn']
[u'term', u'extend']
[u'global', u'warm', u'appeal', u'fail', u'mine']
[u'glori', u'owner']
[u'goldstar', u'drill', u'show', u'promis', u'result']
[u'govt', u'call', u'uniti', u'harbour', u'bomb', u'disput']
[u'govt', u'say', u'quick', u'sugar', u'cane', u'diseas']
[u'govt', u'beat', u'maintain', u'river', u'flow']
[u'govt', u'urg', u'encourag', u'sale', u'doctor', u'stay']
[u'govt', u'urg', u'help', u'fund', u'mobil', u'desalin', u'plant']
[u'grant', u'give', u'communiti', u'respit']
[u'green', u'outlin', u'poker', u'machin', u'cut']
[u'hama', u'seek', u'ceas', u'israel']
[u'hast', u'need', u'sewag', u'divers', u'martin']
[u'heywood', u'pulp', u'face', u'legal', u'challeng']
[u'hick', u'open']
[u'high', u'school', u'rebuild', u'work', u'near', u'complet']
[u'radio', u'station', u'fin', u'celebr', u'attack']
[u'hoon', u'flout', u'law']
[u'hope', u'remain', u'har', u'club', u'fund']
[u'hospit', u'emerg', u'unit', u'close', u'hour']
[u'hundr', u'flee', u'toxic', u'leak', u'indonesia']
[u'indonesian', u'meet', u'papuan', u'asylum', u'seeker']
[u'industri', u'call', u'nation', u'fish', u'bodi']
[u'insur', u'issu', u'blame', u'lion', u'festiv']
[u'inventor', u'converg', u'rockhampton']
[u'iran', u'vow', u'press', u'nuclear', u'program']
[u'iraq', u'conflict', u'fuel', u'rise', u'global', u'refuge', u'survey']
[u'iraq', u'hail', u'qaeda', u'document']
[u'irrig', u'face', u'alloc', u'restrict']
[u'irrig', u'seek', u'water', u'pipelin', u'commit']
[u'jandakot', u'airport', u'move']
[u'junior', u'doctor', u'strike', u'hour']
[u'kanaar', u'sign', u'waratah']
[u'kandahar', u'bomb', u'attack', u'kill']
[u'kosciuszko', u'manag', u'plan', u'releas']
[u'labor', u'alleg', u'nuclear', u'accid', u'cover']
[u'labor', u'pressur', u'govt', u'black', u'hawk', u'crash', u'compo']
[u'labor', u'oppos', u'offshor', u'process']
[u'lack', u'rain', u'blame', u'reduct', u'grain', u'export']
[u'landhold', u'wimerra', u'malle', u'pipelin', u'worri']
[u'lara', u'equal', u'waugh', u'save', u'windi']
[u'lawyer', u'air', u'elder', u'abus', u'fear']
[u'leeton', u'woman', u'dismay', u'bashir', u'releas']
[u'liber', u'senat', u'cross', u'floor', u'civil', u'union']
[u'lismor', u'look', u'fluorid', u'water']
[u'lockyer', u'silenc', u'critic']
[u'major', u'anti', u'taliban', u'oper']
[u'charg', u'cake', u'contamin']
[u'charg', u'tast', u'contamin']
[u'mayor', u'pin', u'tourism', u'hop', u'croc', u'fossil']
[u'mayor', u'threaten', u'legal', u'action', u'indigen']
[u'mickelson', u'focus', u'major', u'challeng']
[u'minist', u'dismiss', u'fear', u'sewag', u'poison', u'fish']
[u'mix', u'irrig', u'tough', u'financi']
[u'mogg', u'determin', u'origin', u'spot']
[u'moratorium', u'wild', u'river', u'law']
[u'moss', u'avoid', u'charg', u'drug', u'scandal']
[u'mother', u'tell', u'shock', u'ryan', u'reappear']
[u'highlight', u'timber', u'auction', u'scheme', u'worri']
[u'reject', u'resign', u'call']
[u'say', u'govt', u'tri', u'ensur', u'secur', u'border']
[u'murray', u'darl', u'fish', u'strategi', u'yield', u'success']
[u'nakata', u'slam', u'journo']
[u'committe', u'overse', u'safeti']
[u'drug', u'speed', u'stroke', u'recoveri']
[u'report', u'plan', u'mackay', u'convent', u'centr']
[u'night', u'flight', u'worsen', u'climat', u'chang', u'studi']
[u'nurs', u'warn', u'law', u'threat']
[u'consid', u'riot', u'definit', u'chang']
[u'lead', u'nation', u'road', u'death', u'rate']
[u'farmer', u'encourag', u'head', u'tassi']
[u'isra', u'ordnanc', u'possibl', u'link', u'beach', u'death']
[u'oper', u'name', u'soon', u'mobil', u'servic']
[u'palestinian', u'public', u'servant', u'storm', u'parliament']
[u'paraguay', u'swede', u'sweat']
[u'petrol', u'station', u'ownership', u'rule', u'uphold']
[u'pfister', u'confirm', u'togo']
[u'clarifi', u'claim', u'support', u'reef', u'heritag']
[u'phantom', u'cattl', u'prompt', u'audit', u'livestock']
[u'piggeri', u'backer', u'chang', u'plan']
[u'pipelin', u'wont', u'solv', u'water', u'problem', u'resid', u'warn']
[u'plan', u'pipelin', u'extend']
[u'play', u'migrat', u'rift']
[u'polic', u'commission', u'accus', u'senat', u'mislead']
[u'polic', u'forc', u'lose', u'offic', u'industri']
[u'polic', u'seizur']
[u'polic', u'offic', u'injur', u'bottl', u'attack']
[u'polic', u'question', u'widow', u'partner', u'death']
[u'polic', u'ride', u'abduct']
[u'polic', u'see', u'posit', u'palm', u'alcohol', u'plan']
[u'presid', u'date', u'king']
[u'princess', u'margaret', u'jewel', u'excit', u'bidder']
[u'hart', u'auction', u'delay']
[u'strike', u'origin', u'hop', u'aliv']
[u'race', u'club', u'seek', u'recov', u'steal', u'fund']
[u'radioact', u'releas', u'risk', u'ansto']
[u'cross', u'seek', u'blood', u'collect', u'chang']
[u'report', u'show', u'potenti', u'futur', u'residenti']
[u'research', u'calcul', u'gold', u'earth', u'core']
[u'resourc', u'boom', u'eas', u'abar']
[u'reticul', u'work', u'worri', u'sport', u'group']
[u'review', u'urg', u'counter', u'terror', u'chang']
[u'road', u'minist', u'work', u'princ', u'lobbi', u'group']
[u'ronaldo', u'world', u'health', u'scare']
[u'incent', u'offer', u'trinidadian', u'footbal']
[u'safeti', u'film', u'counter', u'tokyo', u'drift']
[u'homeown', u'cheat', u'grant']
[u'saint', u'skipper', u'deem', u'play']
[u'rider', u'championship', u'train', u'squad']
[u'school', u'solar']
[u'seafood', u'council', u'substitut', u'leav', u'industri']
[u'senat', u'rule', u'reopen', u'medicar', u'offic']
[u'senat', u'fail', u'reinstat', u'civil', u'union', u'law']
[u'shakespear', u'biographi', u'win', u'fiction', u'prize']
[u'shire', u'extend', u'posit', u'biodiesel', u'trial']
[u'smut', u'outbreak', u'delay', u'sugarcan', u'crush']
[u'snowi', u'hydro', u'warn', u'debt', u'increas']
[u'socceroo', u'fan', u'warn', u'behaviour']
[u'sophi', u'delezio', u'court', u'case', u'adjourn']
[u'lankan', u'attack', u'kill', u'score']
[u'stanthorp', u'council', u'crack', u'water']
[u'kilda', u'skipper', u'deem', u'play']
[u'tamil', u'attack', u'explos']
[u'invent', u'diagnos', u'diseas']
[u'credit', u'review', u'rais', u'biofuel', u'concern']
[u'telstra', u'lose', u'flat', u'rate', u'charg']
[u'time', u'run', u'farmer', u'plant', u'crop']
[u'toowoomba', u'compani', u'seek', u'work', u'russia']
[u'toowoomba', u'host', u'indigen', u'health', u'gather']
[u'troop', u'make', u'inroad', u'afghan', u'insurg']
[u'tropic', u'storm', u'alberto', u'fizzl']
[u'execut', u'quit']
[u'agre', u'jail', u'liberian', u'presid']
[u'govt', u'deni', u'hick', u'access']
[u'minist', u'call', u'guantanamo', u'recruit', u'agent']
[u'ultra', u'virgin', u'oliv', u'techniqu', u'patent']
[u'cancel', u'contract', u'bashir', u'link']
[u'union', u'call', u'educ', u'vision']
[u'union', u'deal', u'protect', u'wine', u'export']
[u'secur', u'increas', u'attack']
[u'hick', u'citizenship', u'oath']
[u'vandal', u'forc', u'access', u'road', u'crackdown']
[u'vanston', u'urg', u'backbench', u'support', u'migrat', u'law']
[u'vanston', u'urg', u'dissid', u'migrat']
[u'victori', u'focus', u'origin', u'decid']
[u'volcano', u'trap', u'hillsid', u'bunker']
[u'wait', u'continu', u'dust', u'clean']
[u'wallabi', u'accus', u'england', u'dirti', u'trick']
[u'wall', u'rebound', u'lift', u'local', u'stock']
[u'water', u'tank', u'trial']
[u'weather', u'condit', u'blame', u'fatal', u'crash']
[u'widow', u'charg', u'husband', u'murder']
[u'wind', u'farm', u'backer', u'welcom', u'feasibl', u'studi', u'result']
[u'windschuttl', u'appoint', u'unaccept']
[u'winter', u'put', u'squeez', u'adelaid', u'chariti']
[u'youth', u'worker', u'graduat']
[u'communiti', u'casework', u'port', u'macquari']
[u'insurg', u'kill', u'afghan', u'attack']
[u'bomb', u'suspect', u'arrest', u'thailand']
[u'aborigin', u'health', u'servic', u'chief', u'reject', u'critic']
[u'accc', u'merger', u'concern', u'disappoint', u'alinta']
[u'administr', u'help', u'gladston', u'veteran', u'claim']
[u'age', u'enter', u'care', u'home', u'later', u'live', u'longer', u'report']
[u'ahmadinejad', u'call', u'holocaust', u'inquiri']
[u'reach', u'storm', u'zealand']
[u'forc', u'maintain', u'attack', u'ltte']
[u'airlin', u'retain', u'region', u'flight']
[u'airport', u'reloc', u'compromis', u'patient', u'safeti']
[u'angler', u'alarm', u'marin', u'park', u'plan']
[u'angola', u'team', u'lash', u'witch', u'doctor', u'report']
[u'assist', u'murgon', u'farmer', u'extend']
[u'australian', u'imam', u'label', u'bashir', u'inform']
[u'australia', u'step', u'anti', u'whale', u'campaign']
[u'australia', u'tell', u'stay', u'indonesian', u'affair']
[u'aust', u'soldier', u'hurt', u'afghanistan']
[u'baghdad', u'mosqu', u'blast', u'kill']
[u'ballarat', u'polic', u'crack', u'traffic', u'offenc']
[u'banana', u'grower', u'prepar', u'suppli', u'market']
[u'bashir', u'releas', u'harm', u'aust', u'indonesian', u'relat']
[u'bennett', u'wari', u'wound', u'dragon']
[u'gate', u'quit', u'microsoft']
[u'blast', u'close', u'construct', u'site']
[u'blast', u'shake', u'adelaid', u'build']
[u'brack', u'reject', u'baillieu', u'dirt', u'file', u'claim']
[u'brazilian', u'play', u'mind', u'game', u'say', u'neill']
[u'brimbl', u'death', u'ruin', u'man', u'holiday']
[u'brimbl', u'famili', u'hear', u'pain', u'tape', u'inquest']
[u'brimbl', u'inquest', u'hear', u'rebuff']
[u'bronco', u'fear', u'origin', u'backlash']
[u'brough', u'question', u'indigen', u'hous', u'spend']
[u'budget', u'break', u'elect', u'promis', u'hinchliff']
[u'bureaucrat', u'intimid', u'worker', u'awa', u'union']
[u'cadburi', u'plan', u'expans']
[u'bipartisan', u'support', u'harbour', u'bomb']
[u'carlton', u'captain', u'delay', u'retir', u'decis']
[u'carpent', u'back', u'labor', u'polici']
[u'chang', u'indigen', u'employ', u'program', u'criticis']
[u'childcar', u'fund', u'disappoint', u'indigen', u'famili']
[u'closer']
[u'closer']
[u'closer']
[u'coff', u'resid', u'warn', u'watch', u'cane', u'toad']
[u'commerci', u'whale', u'return', u'japan', u'agenda']
[u'concern', u'paediatrician', u'delay', u'sale']
[u'concern', u'rais', u'possibl', u'cut']
[u'confid', u'argentina', u'tackl', u'injuri', u'serbia']
[u'coober', u'pedi', u'call', u'help', u'alcohol', u'problem']
[u'coron', u'say', u'blame', u'children']
[u'costello', u'flag', u'migrat', u'law', u'compromis']
[u'council', u'consid', u'compani', u'saleyard', u'upgrad']
[u'councillor', u'question', u'function', u'expens']
[u'countri', u'hour', u'highlight']
[u'countri', u'hour', u'highlight']
[u'cowboy', u'wait', u'thurston', u'knee']
[u'cowra', u'meatwork', u'disput', u'settl']
[u'crop', u'grower', u'desper', u'rain']
[u'crow', u'notch', u'crush', u'saint']
[u'darwin', u'harbour', u'fish', u'safe', u'vatskali']
[u'debat', u'begin', u'water', u'recycl', u'propos']
[u'dili', u'soldier', u'begin', u'hand', u'weapon']
[u'rais', u'hobart', u'alarm']
[u'doctor', u'fin', u'human', u'growth', u'hormon', u'sale']
[u'dragon', u'snatch', u'gasp']
[u'drought', u'drag', u'bourk', u'economi']
[u'drought', u'increas', u'south', u'east']
[u'drought', u'stricken', u'farmer', u'queensland', u'field']
[u'drought', u'tighten', u'grip']
[u'eagl', u'cautious', u'form', u'port']
[u'east', u'timores', u'rebel', u'await', u'disarm']
[u'elder', u'preacher', u'jail', u'child', u'abus']
[u'elect', u'fund', u'email', u'leak', u'upset', u'omodei']
[u'endang', u'speci', u'list', u'process', u'criticis']
[u'england', u'look', u'confid', u'boost']
[u'eriksson', u'mull', u'rooney', u'sweden', u'clash']
[u'timores', u'rebel', u'surrend', u'weapon']
[u'timor', u'rebel', u'surrend', u'weapon', u'aust', u'command']
[u'endors', u'palestinian', u'scheme']
[u'pacif', u'polici', u'caus', u'concern']
[u'fight', u'save', u'pavilion', u'australian']
[u'fish', u'industri', u'govt', u'agre', u'leas']
[u'shortag', u'prompt', u'remind', u'senior']
[u'gate', u'daili', u'role', u'microsoft']
[u'girl', u'kill', u'accid']
[u'gold', u'coast', u'plan', u'record', u'spend', u'infrastructur']
[u'govern', u'urg', u'inject', u'money', u'snowi', u'hydro']
[u'govt', u'ask', u'extend', u'drought', u'subsidi']
[u'govt', u'concern', u'qanta', u'withdraw', u'burni']
[u'govt', u'refus', u'payment', u'council', u'amalgam']
[u'govt', u'suggest', u'school', u'option', u'tamworth']
[u'govt', u'urg', u'assist', u'fund', u'sack']
[u'greenpeac', u'fear', u'whale', u'meet', u'expuls']
[u'hama', u'will', u'ceas']
[u'hawaiian', u'island', u'world', u'biggest', u'marin']
[u'hawk', u'hope', u'finish']
[u'hiddink', u'face', u'dilemma', u'yellow', u'card']
[u'high', u'profil', u'lawyer', u'charg', u'steal']
[u'hous', u'plan', u'requir', u'spend', u'boost', u'shelter']
[u'humphri', u'good', u'colleagu', u'despit', u'dissent']
[u'hundr', u'farewel', u'iraq', u'blast', u'victim']
[u'illeg', u'net', u'threaten', u'inland', u'fish', u'stock']
[u'indonesian', u'warn', u'aust', u'silent', u'enemi']
[u'indonesia', u'stand', u'firm', u'bashir', u'case']
[u'injuri', u'forc', u'hodg', u'bronco', u'clash']
[u'iran', u'see', u'nuclear', u'deal', u'step', u'forward']
[u'iran', u'welcom', u'nuclear', u'incent', u'packag']
[u'iron', u'compani', u'sign', u'nativ', u'titl', u'agreement']
[u'japan', u'norway', u'whale', u'push']
[u'kaiser', u'doesnt', u'want', u'face', u'england']
[u'kangaroo', u'support', u'despit', u'suspens']
[u'kouta', u'wont', u'hand']
[u'kovco', u'inquiri', u'begin', u'monday']
[u'labor', u'plan', u'regress']
[u'labor', u'demand', u'radiat', u'accid', u'disclosur']
[u'labor', u'plan', u'threaten', u'live', u'standard']
[u'land', u'council', u'negoti', u'river', u'protect']
[u'lawyer', u'charg', u'deni', u'bail']
[u'liber', u'want', u'registr', u'instead', u'civil', u'union']
[u'lion', u'brown', u'expect', u'sidelin']
[u'macquari', u'gatecrash', u'port', u'deal']
[u'male', u'grainbelt', u'desper', u'rain']
[u'charg', u'thuringowa', u'assault']
[u'jail', u'tortur', u'kitten']
[u'market', u'rise', u'best', u'start']
[u'market', u'surg', u'inflat', u'fear', u'subsid']
[u'matthew', u'unruffl', u'latest', u'akermani', u'barb']
[u'mayor', u'fear', u'shortag', u'council', u'nomin']
[u'mexico', u'look', u'quick', u'qualif']
[u'miami', u'beat', u'dalla', u'level', u'final']
[u'mildura', u'councillor', u'call', u'travel', u'subsidi']
[u'minist', u'trade', u'insult', u'water', u'summit']
[u'minist', u'talk', u'banana', u'import', u'fear']
[u'molloy', u'predict', u'problem']
[u'monti', u'seiz', u'open', u'lead']
[u'seek', u'quak', u'victim']
[u'bomb', u'southern', u'thailand']
[u'more', u'indigen', u'youth', u'festiv', u'threat']
[u'mosquito', u'spread', u'virus', u'south']
[u'motor', u'rego', u'cost', u'increas', u'normal']
[u'mourner', u'crowd', u'factori', u'blast', u'victim', u'funer']
[u'refus', u'legionnair', u'test']
[u'say', u'fuel', u'tax', u'discourag', u'biofuel']
[u'mudge', u'organ', u'pip', u'restor']
[u'mules', u'altern', u'avail']
[u'murder', u'parol', u'stand', u'despit', u'govt', u'submiss']
[u'nation', u'prepar', u'state', u'confer']
[u'nepal', u'rebel', u'chief', u'hold', u'talk']
[u'director', u'appoint', u'board']
[u'news', u'criticis', u'propos', u'media', u'chang']
[u'news', u'withhold', u'support', u'media', u'reform']
[u'noosa', u'budget', u'bring', u'moder', u'rat', u'rise']
[u'unveil', u'hous', u'plan', u'indigen', u'communiti']
[u'nuclear', u'open']
[u'nurs', u'guilti', u'fatal', u'crash', u'charg']
[u'probe', u'clear', u'hous', u'chief']
[u'onetel', u'founder', u'defend', u'perform']
[u'onlin', u'game', u'tackl', u'internet', u'crime']
[u'orang', u'council', u'back', u'propos', u'rat', u'plan']
[u'osprey', u'nest', u'move', u'substitut', u'tree']
[u'pere', u'welcom', u'hamass', u'ceas', u'plan']
[u'petit', u'urg', u'investig', u'ballarat', u'health']
[u'plato', u'urg', u'primari', u'review']
[u'polic', u'releas', u'fatal']
[u'polic', u'start', u'season', u'drug', u'blitz']
[u'privaci', u'commission', u'urg', u'probe', u'baillieu', u'dirt']
[u'nepean', u'make', u'heritag', u'list']
[u'sit', u'report', u'releas']
[u'quak', u'hit', u'near', u'solomon', u'island']
[u'rebel', u'weapon', u'surrend', u'like', u'timor']
[u'tape', u'hold', u'water', u'reform']
[u'remain', u'ash', u'ticket', u'releas']
[u'renmark', u'fin', u'overfish']
[u'report', u'odd', u'govt', u'option', u'murray']
[u'report', u'find', u'nurs', u'home', u'fail', u'meet', u'patient']
[u'resid', u'shut', u'wind', u'farm', u'negoti']
[u'retrench', u'beaconsfield', u'gold', u'miner', u'urg', u'head']
[u'review', u'order', u'share', u'respons', u'agreement']
[u'riverland', u'malle', u'futur', u'land']
[u'road', u'safeti', u'statist', u'prompt', u'penalti', u'review']
[u'rodeo', u'nomin', u'rocket']
[u'romania', u'find', u'evid', u'secret', u'prison']
[u'seek', u'member', u'retent', u'strategi']
[u'ruddock', u'reject', u'terror', u'list', u'propos']
[u'ruddock', u'urg', u'heed', u'secur', u'report']
[u'rural', u'women', u'organis', u'launch', u'keith', u'branch']
[u'ryan', u'scar', u'come', u'forward']
[u'salmonella', u'case', u'prompt', u'cook', u'warn']
[u'school', u'closur', u'hard', u'sell', u'macdonald']
[u'school', u'distanc', u'educ', u'celebr', u'year']
[u'search', u'miss', u'warrnambool', u'continu']
[u'second', u'smut', u'outbreak', u'near', u'childer']
[u'senat', u'debat', u'elector', u'chang']
[u'smut', u'outbreak', u'threaten', u'cane', u'crush']
[u'snow', u'caus', u'problem', u'farmer']
[u'snowi', u'hydro', u'bond', u'scheme', u'moot']
[u'socceroo', u'readi', u'david', u'goliath', u'battl']
[u'son', u'gwalia', u'creditor', u'challeng', u'approv']
[u'south', u'africa', u'rememb', u'soweto', u'upris']
[u'lanka', u'edg', u'england']
[u'staff', u'chang', u'salvat', u'armi', u'refug', u'criticis']
[u'state', u'defend', u'indigen', u'hous', u'underspend']
[u'stockman', u'make', u'major', u'leagu', u'debut']
[u'stone', u'regret', u'fail', u'statehood']
[u'studi', u'assess', u'pearl', u'environment', u'impact']
[u'studi', u'examin', u'impact', u'drought', u'small']
[u'swift', u'toppl', u'bird']
[u'theatr', u'makeov']
[u'task', u'forc', u'urg', u'access', u'card', u'limit']
[u'teari', u'spear', u'ask', u'photograph']
[u'toddler', u'kill', u'driveway', u'accid']
[u'tourism', u'industri', u'oppos', u'propos', u'alic', u'alcohol']
[u'turnbul', u'reject', u'state', u'claim', u'water', u'fund']
[u'turnbul', u'reject', u'water', u'fund', u'complaint']
[u'tweed', u'council', u'review', u'river', u'boat', u'rule']
[u'underwat', u'camera', u'coastlin', u'research']
[u'union', u'claim', u'victori', u'nurs', u'job']
[u'union', u'angri', u'lifeguard', u'stoush']
[u'urg', u'urgent', u'action', u'ocean']
[u'creat', u'world', u'biggest', u'marin', u'park']
[u'retract', u'china', u'terror', u'warn']
[u'say', u'zarqawi', u'successor', u'unclear']
[u'troop', u'death', u'iraq', u'reach']
[u'nistelrooy', u'unfaz', u'critic', u'ahead', u'ivori']
[u'compani', u'win', u'light', u'contract']
[u'viduka', u'say', u'brazil', u'vulner']
[u'volcano', u'heat', u'kill', u'trap']
[u'wallabi', u'keen', u'build', u'win', u'momentum']
[u'move', u'reduc', u'risk', u'whale']
[u'weapon', u'surrend', u'expect', u'east', u'timor']
[u'whale', u'arriv', u'logan', u'beach']
[u'widow', u'accus', u'murder', u'seek', u'bail']
[u'wife', u'charg', u'councillor', u'murder']
[u'wine', u'market', u'promot', u'tourism']
[u'world', u'rivalri', u'break', u'abattoir']
[u'wrotham', u'park', u'cattl', u'station', u'sell']
[u'young', u'worker', u'warn', u'exploit', u'work']
[u'year', u'charg', u'rape']
[u'kill', u'dozen', u'hurt', u'string', u'attack']
[u'group', u'urg', u'fund', u'indonesia']
[u'black', u'hold', u'plucki', u'ireland']
[u'black', u'rest', u'player', u'ireland', u'match']
[u'angola', u'hold', u'mexico', u'interv']
[u'angola', u'brake', u'mexico']
[u'argentina', u'hammer', u'past', u'serb']
[u'dead', u'tamil', u'tiger', u'clash']
[u'aust', u'lead', u'timor', u'forc', u'ramo', u'horta']
[u'aust', u'troop', u'like', u'redeploy', u'iraq']
[u'author', u'step', u'action', u'contain', u'smut']
[u'author', u'lift', u'voluntari']
[u'backbench', u'school']
[u'bashir', u'asset', u'freez', u'vice', u'presid']
[u'bird', u'appeal', u'attract', u'meagr', u'fund']
[u'black', u'skipper', u'lion']
[u'bulldog', u'maintain', u'win', u'form', u'lion']
[u'bunni', u'break', u'deni', u'roger', u'white']
[u'campbel', u'declar', u'minor', u'victori', u'whale', u'vote']
[u'campbel', u'encourag', u'anti', u'whale']
[u'carr', u'criticis', u'iemma', u'tunnel']
[u'cat', u'face', u'clash', u'docker']
[u'cat', u'triumphant', u'docker']
[u'chechen', u'rebel', u'chief', u'report', u'kill']
[u'chemic', u'blast', u'china', u'kill', u'injur']
[u'closer']
[u'closer']
[u'compani', u'fin', u'speed', u'camera', u'failur']
[u'czech', u'need', u'bounc', u'ghana']
[u'danish', u'polic', u'distract', u'world', u'match']
[u'darwin', u'hospit', u'defend', u'emerg', u'dept', u'treatment']
[u'dead', u'street', u'clash', u'break', u'nigeria']
[u'death', u'toll', u'rise', u'lanka', u'battl']
[u'dont', u'fight', u'aussi', u'coach', u'tell']
[u'dutch']
[u'east', u'timores', u'leader', u'leav', u'indonesia', u'talk']
[u'east', u'timor', u'rebel', u'continu', u'weapon', u'hand']
[u'eel', u'power', u'away', u'south']
[u'industri', u'fear', u'repercuss', u'salmonella']
[u'egg', u'link', u'salmonella', u'outbreak', u'pasta']
[u'dead', u'baghdad', u'mosqu', u'bomb']
[u'england', u'good', u'gerrard', u'admit']
[u'england', u'tell', u'smart', u'perish']
[u'set', u'constitut', u'deadlin']
[u'famili', u'fear', u'unknown', u'intervent', u'asylum', u'case']
[u'feder', u'surviv', u'match', u'point', u'reach', u'semi']
[u'fiji', u'reveng', u'itali']
[u'firebird', u'trot']
[u'franc', u'crack', u'immigr']
[u'govt', u'call', u'ethanol', u'price', u'check']
[u'govt', u'defend', u'tourism', u'bodi', u'manag', u'staff', u'cut']
[u'govt', u'speed', u'camera', u'racv']
[u'govt', u'plan', u'malle', u'plant', u'renew']
[u'govt', u'plan', u'control', u'state', u'fund', u'rural']
[u'kill', u'melbourn', u'clinic']
[u'grower', u'fear', u'wine', u'industri', u'doom', u'govt']
[u'gusmao', u'meet', u'indonesian', u'presid']
[u'hewitt', u'benefit', u'nadal', u'injuri', u'blow']
[u'hiddink', u'readi', u'gambl', u'brazil']
[u'hunt', u'sidelin', u'week']
[u'ibrahimov', u'probabl', u'england', u'game']
[u'dont', u'care', u'brazil', u'think', u'kewel']
[u'intern', u'indigen', u'auction']
[u'inzi', u'blame', u'dayer', u'injuri']
[u'isra', u'strike', u'gaza', u'kill']
[u'isra', u'strike', u'kill', u'palestinian', u'milit']
[u'itali', u'fear', u'american', u'backlash']
[u'reject', u'japanes', u'secret', u'ballot']
[u'japan', u'disench', u'commission']
[u'japan', u'lose', u'vote']
[u'japan', u'lose', u'second', u'vote', u'whale', u'meet']
[u'japan', u'threaten', u'leav']
[u'japan', u'threaten', u'withdraw', u'whale', u'commiss']
[u'junior', u'outclass', u'tonga']
[u'kimmorley', u'lead', u'shark', u'victori']
[u'labor', u'deni', u'lie', u'spotlight', u'case']
[u'labor', u'deni', u'mislead', u'public', u'spotlight']
[u'lack', u'fund', u'hinder', u'indonesian', u'quak', u'relief']
[u'lara', u'need', u'speed', u'ignor']
[u'charg', u'melbourn', u'doctor', u'murder']
[u'market', u'fall', u'talk', u'stir', u'rate', u'jitter']
[u'matilda', u'stumbl', u'shanghai']
[u'minist', u'unapologet', u'pressur', u'teacher']
[u'misfir', u'owen', u'worri', u'england', u'place']
[u'missil', u'launch', u'warn', u'issu', u'north', u'korea']
[u'molloy', u'say', u'sexism', u'fuel']
[u'aust', u'troop', u'bind', u'solomon']
[u'mother', u'duck', u'make', u'annual', u'traffic', u'stop', u'trip']
[u'time', u'frame', u'iraq', u'troop', u'withdraw', u'nelson']
[u'ogilvi', u'fire', u'tiger', u'miss']
[u'ogilvi', u'open', u'hunt']
[u'resum', u'oper', u'northern']
[u'opposit', u'seek', u'assur', u'darwin', u'harbour']
[u'perth', u'freez', u'record', u'temperatur']
[u'philippoussi', u'hand', u'wimbledon', u'wildcard']
[u'polic', u'bulli', u'caus', u'offic', u'drop', u'compo', u'case']
[u'polic', u'investig', u'dead', u'train']
[u'portug', u'face', u'desper', u'iran']
[u'potenti', u'role', u'chang', u'aust', u'troop', u'iraq']
[u'power', u'score', u'boilov']
[u'propos', u'immigr', u'bridg', u'plan', u'releas']
[u'ramo', u'horta', u'call', u'australia', u'lead']
[u'ramo', u'horta', u'promis', u'probe', u'weapon', u'claim']
[u'rebel', u'join', u'nepal', u'govern']
[u'redeploy', u'like', u'aust', u'troop', u'iraq']
[u'rolf', u'harri', u'win', u'queen', u'birthday', u'honour', u'britain']
[u'ronaldinho', u'back', u'ronaldo', u'australia']
[u'rossi', u'fastest', u'catalan', u'practic']
[u'samoa', u'sink', u'japan', u'pacif', u'nation']
[u'scud', u'get', u'wildcard', u'wish']
[u'sharapova', u'scream', u'semi']
[u'smart', u'card', u'report', u'prompt', u'privaci', u'concern']
[u'somali', u'warlord', u'flee']
[u'specul', u'mount', u'muthanna', u'troop']
[u'lanka', u'renew', u'raid', u'tamil', u'tiger']
[u'swim', u'allow', u'berri', u'spring', u'park']
[u'marin', u'reserv', u'plan', u'worri', u'fish', u'industri']
[u'charg', u'biker', u'murder']
[u'tiger', u'star', u'turn', u'rooster']
[u'toddler', u'death', u'prompt', u'call', u'childproof']
[u'tomb', u'raider', u'lead', u'author', u'ancient', u'paint']
[u'troop', u'leav', u'solomon', u'island']
[u'troop', u'strike', u'taliban', u'meet', u'southern']
[u'tuberculosi', u'case', u'discov', u'brisban', u'childcar']
[u'vote', u'transfer', u'taylor', u'trial']
[u'prepar', u'catastroph', u'report']
[u'probe', u'possibl', u'haditha', u'cover', u'complet']
[u'return', u'bodi', u'guantanamo', u'detaine']
[u'send', u'home', u'bodi', u'guantanamo', u'detaine']
[u'warn', u'north', u'korea', u'missil', u'test', u'launch']
[u'vail', u'clarifi', u'posit', u'futur']
[u'vail', u'clarifi', u'posit', u'futur']
[u'vermeulen', u'start', u'fourth', u'barcelona', u'grid']
[u'govt', u'mull', u'decriminalis', u'public', u'drunken']
[u'victim', u'hail', u'preacher', u'jail', u'child', u'abus']
[u'virus', u'outbreak', u'threaten', u'abalon', u'industri']
[u'govt', u'move', u'allow', u'live', u'will', u'termin']
[u'wallabi', u'complet', u'seri', u'sweep']
[u'wallabi', u'regain', u'cook']
[u'weapon', u'surrend', u'knife', u'amnesti']
[u'whale', u'commiss', u'reject', u'secret', u'ballot']
[u'world', u'crazi', u'cop', u'ignor', u'emerg']
[u'boy', u'kill', u'farm', u'accid']
[u'busi', u'urg', u'mind', u'manner']
[u'chief', u'minist', u'arriv', u'timor']
[u'commission', u'justic', u'minist', u'meet', u'polic']
[u'argentina', u'beat', u'wale']
[u'aust', u'critic', u'japan', u'commerci', u'whale', u'plan']
[u'australia', u'polic', u'forc', u'doubl', u'east', u'timor']
[u'author', u'look', u'lose', u'north']
[u'author', u'sign', u'lethal', u'abalon', u'virus']
[u'bashir', u'issu', u'separ', u'migrat', u'chang', u'govt']
[u'beazley', u'challeng', u'public', u'debat']
[u'beazley', u'pledg', u'unwork', u'say']
[u'beazley', u'stand', u'pledg', u'scrap', u'awa']
[u'beazley', u'stand', u'polici', u'scrap', u'awa']
[u'birth', u'spike', u'babi', u'bonus', u'introduct']
[u'bok', u'secur', u'seri', u'spirit', u'scot']
[u'bomb', u'attack', u'kill', u'iraq']
[u'booz', u'blitz', u'catch', u'dozen']
[u'lose', u'hand', u'accid', u'industri', u'site']
[u'brazil', u'australia', u'fan', u'parti', u'street']
[u'brazil', u'australia', u'fan', u'parti', u'street']
[u'bulldog', u'pleas', u'cowboy']
[u'defenc', u'help', u'stop', u'cane', u'toad', u'invas']
[u'campaign', u'urg', u'toler', u'bing', u'drink']
[u'campbel', u'attack', u'japan', u'horrend', u'whale', u'hunt']
[u'cardin', u'pell', u'fear', u'law', u'drive', u'wag']
[u'chechnya', u'claim', u'separatist', u'scalp']
[u'closer']
[u'closer']
[u'connolli', u'expect', u'tougher', u'test', u'ireland']
[u'cowboy', u'slump', u'loss']
[u'crowd', u'celebr', u'queen', u'elizabeth', u'birthday']
[u'fan', u'lose', u'trouser', u'sponsor']
[u'centr', u'eat', u'disord', u'victim', u'announc']
[u'demon', u'extend', u'bomber', u'miseri']
[u'franc', u'korean']
[u'effect', u'increas', u'loom', u'say', u'opposit']
[u'compani', u'urg', u'identifi', u'amid']
[u'england', u'wont', u'lose', u'avoid', u'germani']
[u'test', u'darwin', u'harbour', u'contamin']
[u'timor', u'polic', u'deploy', u'doubl']
[u'timor', u'presid', u'say', u'reinado', u'rebel']
[u'famili', u'demand', u'investig', u'guantanamo']
[u'feder', u'hall', u'final', u'borg', u'sight']
[u'unawar', u'bet', u'probe', u'socceroo']
[u'fifa', u'step', u'prevent', u'togo']
[u'fifa', u'unlik', u'probe', u'socceroo', u'bet']
[u'firework', u'bunker', u'explod', u'near', u'alic', u'spring']
[u'kill', u'latest', u'iraq', u'violenc']
[u'freier', u'foot', u'injuri', u'give', u'hardman', u'chanc']
[u'lobbi', u'consid', u'coupl', u'registr']
[u'ghana', u'erupt', u'world']
[u'ghana', u'stun', u'czech', u'hop', u'aliv']
[u'easi', u'bleari', u'eye', u'soccer', u'fan', u'beazley']
[u'gold', u'rush', u'rower']
[u'govt', u'stop', u'whale', u'greenpeac']
[u'govt', u'urg', u'close', u'devonport', u'airport']
[u'graveney', u'admit', u'england', u'face', u'ash', u'struggl']
[u'greenpeac', u'continu', u'anti', u'whale', u'action']
[u'hahn', u'continu', u'bulldog', u'injuri', u'curs']
[u'hawk', u'lose', u'trot']
[u'hewitt', u'winner', u'henman', u'blow']
[u'howard', u'attack', u'labor', u'stanc']
[u'howard', u'await', u'repli', u'indonesian', u'presid']
[u'howard', u'say', u'earli', u'leav', u'iraq']
[u'independ', u'plan', u'euthanasia']
[u'indigen', u'communiti', u'mull', u'govt', u'land', u'deal']
[u'itali', u'level', u'explos', u'half']
[u'focus', u'conserv', u'whale', u'aust']
[u'jackson', u'stun', u'sharapova', u'reach', u'final']
[u'japan', u'lose', u'whale', u'vote']
[u'japan', u'lose', u'vote', u'relax', u'anti', u'whale', u'regul']
[u'japan', u'order', u'attack', u'croatia']
[u'kid', u'catch', u'knive', u'parliament']
[u'koschitzk', u'collaps', u'interview']
[u'lankan', u'beat', u'england']
[u'long', u'recov', u'weapon', u'timor']
[u'successor', u'say', u'klinsmann']
[u'mcgee', u'tour', u'franc']
[u'minist', u'chief', u'inspect', u'oper', u'timor']
[u'minist', u'declar', u'feral', u'fish']
[u'miss', u'bushwalk', u'safe']
[u'allan', u'polit']
[u'introduc', u'privat', u'voluntari']
[u'munich', u'heat', u'favour', u'socceroo']
[u'nasa', u'set', u'date', u'shuttl', u'launch']
[u'nation', u'look', u'hinchinbrook', u'candid']
[u'bridg', u'propos', u'lake', u'burley', u'griffin']
[u'korea', u'missil', u'test', u'fear']
[u'korea', u'offici', u'deni', u'missil', u'launch', u'plan', u'report']
[u'paul', u'mccartney', u'celebr', u'birthday']
[u'nrma', u'applaud', u'scrutini', u'fuel', u'price', u'differ']
[u'nrma', u'welcom', u'fuel', u'price', u'scrutini', u'plan']
[u'coalit', u'agre', u'elect', u'contest', u'deal']
[u'dismiss', u'plan', u'control', u'state', u'fund']
[u'ogilvi', u'mickelson', u'ferri', u'share', u'open', u'lead']
[u'opposit', u'back', u'resid', u'anger', u'tugun', u'bypass']
[u'peacock', u'tri', u'pull', u'chick', u'petrol', u'pump']
[u'perth', u'weather', u'break', u'record']
[u'plastic', u'vegetarian', u'dog', u'product']
[u'attack', u'labor', u'stanc']
[u'polic', u'fleet', u'plagu', u'breakdown']
[u'polic', u'probe', u'accid', u'ambul', u'kill']
[u'pope', u'urg', u'respect', u'refuge', u'right']
[u'portug', u'break', u'year', u'drought']
[u'qanta', u'withdraw', u'spark', u'fear', u'devonport']
[u'quartet', u'back', u'fund', u'mechan', u'palestinian']
[u'queen', u'elizabeth', u'celebr', u'turn']
[u'raider', u'loss', u'storm']
[u'report', u'condemn', u'japanes', u'whale', u'kill', u'method']
[u'road', u'accid', u'claim', u'live', u'weekend']
[u'serbia', u'boss', u'leg', u'final']
[u'sniffer', u'nightclub', u'raid', u'misdirect']
[u'socceroo', u'brazil', u'best', u'shoot']
[u'stanhop', u'back', u'footbridg', u'propos']
[u'storm', u'maintain', u'win', u'form']
[u'swim', u'australia', u'arm', u'schedul']
[u'sydney', u'galleri', u'host', u'churcher', u'exhibit']
[u'iraqi', u'baker', u'kidnap']
[u'recreat', u'legendari', u'launch', u'world', u'tour']
[u'fifa', u'offici', u'admit', u'world', u'scalp']
[u'traffic', u'fin', u'court', u'action', u'cost', u'govt', u'million']
[u'properti', u'quarantin', u'smut']
[u'union', u'welcom', u'govt', u'truce', u'teacher']
[u'strike', u'afghanistan', u'surg', u'report']
[u'coach', u'slam', u'world', u'refere']
[u'frustrat', u'itali', u'bruiser']
[u'vanston', u'battl', u'backbench', u'immigr']
[u'vanston', u'backbench', u'support']
[u'violenc', u'erupt', u'kashmir']
[u'warrior', u'buri', u'knight']
[u'warrior', u'good', u'knight']
[u'whale', u'method', u'report', u'increas', u'urgenc']
[u'deal', u'replac', u'king', u'black', u'hawk']
[u'cold', u'tablet', u'seiz', u'arrest']
[u'seek', u'boost', u'ballarat', u'entranc']
[u'cronulla', u'riot', u'arrest']
[u'abrolho', u'island', u'abl', u'handl', u'tourist', u'say']
[u'alcohol', u'guidelin', u'pregnant', u'women', u'irrespons']
[u'alcohol', u'restrict', u'come', u'forc', u'palm']
[u'alleg', u'sizzler', u'food', u'poison', u'deni', u'bail']
[u'qaeda', u'abort', u'york', u'subway', u'attack', u'book', u'say']
[u'alstom', u'win', u'australian', u'energi', u'contract']
[u'arctic', u'seed', u'bank', u'readi', u'doomsday', u'scenario']
[u'armstrong', u'call', u'disciplinari', u'action']
[u'look', u'form', u'break', u'hill', u'branch']
[u'aung', u'turn', u'hous', u'arrest']
[u'aussi', u'tough', u'brazil', u'say', u'roberto']
[u'australia', u'warn', u'north', u'korea', u'missil', u'test']
[u'aust', u'troop', u'train', u'iraq', u'secur', u'forc']
[u'auto', u'worker', u'redund']
[u'bass', u'strait', u'drill', u'onshor']
[u'expans', u'sandalwood', u'plantat']
[u'blake', u'ireland', u'clash']
[u'bomber', u'upset', u'armband', u'fine']
[u'boswel', u'back', u'therapeut', u'clone']
[u'brack', u'deni', u'campaign', u'innuendo', u'baillieu']
[u'brazil', u'beat', u'socceroo']
[u'british', u'forc', u'hail', u'success', u'afghanistan']
[u'burni', u'airport', u'upgrad', u'hang', u'balanc']
[u'burn', u'expert', u'warn', u'smoke']
[u'busi', u'group', u'want', u'devonport', u'airport', u'close']
[u'byron', u'councillor', u'defend', u'action']
[u'campaign', u'workplac', u'chang', u'head', u'north']
[u'campaign', u'warn', u'problem', u'gambl']
[u'candid', u'want', u'hour', u'polic', u'station']
[u'accid', u'victim', u'fli', u'sydney', u'hospit']
[u'carlo', u'alberto', u'parreira', u'speak', u'media']
[u'chemic', u'explos', u'feral', u'fish']
[u'china', u'india', u'open', u'ancient', u'trade', u'rout']
[u'china', u'visit', u'essenti', u'templ', u'propos']
[u'closer']
[u'closer']
[u'closer']
[u'cold', u'trap', u'smoke', u'burn']
[u'colleg', u'form', u'water', u'save', u'wetland', u'project']
[u'confer', u'discuss', u'water', u'strategi']
[u'cooper', u'water', u'manag', u'commiss']
[u'corbi', u'half', u'brother', u'stand', u'trial', u'home']
[u'council', u'push', u'polic', u'administr', u'posit']
[u'council', u'urg', u'land', u'asid', u'privat']
[u'court', u'dismiss', u'briberi', u'charg', u'mayor']
[u'cray', u'industri', u'agre', u'wildlif', u'protect', u'chang']
[u'support', u'urg']
[u'defenc', u'complaint', u'procedur', u'improv', u'ombudsman']
[u'deputi', u'mayor', u'support', u'plan', u'staff', u'structur']
[u'derbi', u'consid', u'way', u'address', u'alcohol', u'woe']
[u'differ', u'remain', u'migrat', u'propos']
[u'docker', u'player', u'fin', u'assault', u'polic', u'offic']
[u'driver', u'disqualifi', u'accident', u'death']
[u'drug', u'drive', u'test', u'wont', u'effect']
[u'elder', u'seal', u'deal', u'export', u'beef', u'cattl', u'russia']
[u'enertrad', u'call', u'fire', u'power', u'station', u'tender']
[u'timor', u'rebel', u'start', u'firearm', u'surrend']
[u'evid', u'timor', u'arm', u'militia']
[u'famili', u'member', u'face', u'court', u'cannabi', u'charg']
[u'farmer', u'fear', u'cost', u'smut', u'outbreak']
[u'farmer', u'customis', u'product']
[u'farmer', u'urg', u'census', u'form']
[u'farmer', u'urg', u'involv', u'carbon', u'trade']
[u'water', u'strategi', u'submiss', u'trickl']
[u'damag', u'high', u'school', u'classroom']
[u'ash', u'ticket', u'general', u'sale', u'snap']
[u'champion', u'call', u'court', u'attitud']
[u'detail', u'anti', u'communist', u'oper']
[u'forum', u'focus', u'disabl', u'issu']
[u'franc', u'deni', u'valid', u'goal', u'domenech']
[u'futur', u'maitland', u'assur', u'govt']
[u'galleri', u'unveil', u'picasso', u'paint']
[u'gay', u'herring', u'skate', u'park']
[u'getti', u'museum', u'antiqu', u'buy', u'suspect']
[u'govt', u'agre', u'discuss', u'timber', u'worker', u'sack']
[u'govt', u'railcorp', u'chief', u'discuss', u'outstand', u'compo']
[u'govt', u'treat', u'privat', u'school', u'better', u'union', u'say']
[u'govt', u'urg', u'crack', u'interst', u'egg']
[u'govt', u'urg', u'offer', u'mine', u'incent']
[u'govt', u'urg', u'offer', u'roadsid', u'graze', u'concess']
[u'gracemer', u'host', u'region', u'develop', u'gather']
[u'green', u'group', u'see', u'problem', u'water', u'pipe', u'plan']
[u'grab', u'fuel', u'go', u'state']
[u'hargreav', u'ministri', u'drink', u'drive']
[u'hargreav', u'mall', u'plan', u'target', u'problem', u'area']
[u'hewitt', u'queen', u'triumph']
[u'high', u'rise', u'reject', u'wont', u'deter', u'develop', u'say']
[u'horan', u'closer', u'make', u'state', u'polit', u'decis']
[u'howard', u'announc', u'plan', u'troop', u'iraq']
[u'indec', u'assault', u'accus', u'ask', u'suspend']
[u'indigen', u'communiti', u'desert', u'trek']
[u'indigo', u'shire', u'plan', u'rate', u'rise']
[u'injur', u'burger', u'month']
[u'inquiri', u'hear', u'kovco', u'dream', u'death']
[u'inquiri', u'hear', u'kovco', u'dream', u'death']
[u'inquiri', u'hear', u'kovco', u'dream', u'shoot']
[u'inquiri', u'recommend', u'save', u'plan', u'young', u'worker']
[u'investig', u'continu', u'attack', u'polic']
[u'investig', u'target', u'deadbeat', u'dad']
[u'iraq', u'confirm', u'troop', u'withdraw', u'muthanna']
[u'irrig', u'donat', u'water', u'die', u'gum']
[u'domin', u'feder', u'parliament']
[u'japan', u'fail', u'whale', u'sanctuari']
[u'japan', u'win', u'whale', u'vote']
[u'japan', u'win', u'signific', u'whale', u'vote']
[u'japan', u'win', u'symbol', u'whale', u'vote']
[u'jetstar', u'domest', u'seat', u'stamped']
[u'kewel', u'play', u'spat']
[u'kewel', u'face', u'disciplinari', u'panel']
[u'klimt', u'paint', u'get', u'record', u'report']
[u'knife', u'bandit', u'steal', u'teen', u'mobil', u'phone']
[u'koschitzk', u'collaps', u'relat', u'head', u'injuri']
[u'koschitzk', u'meet', u'neurosurgeon']
[u'kovco', u'inquiri', u'start', u'today']
[u'kovco', u'inquiri', u'underway']
[u'labor', u'wrong', u'awa', u'howard']
[u'labor', u'surpris', u'school', u'closur', u'plan']
[u'labor', u'seek', u'cost', u'senat', u'elector', u'offic']
[u'liber', u'label', u'omodei', u'tactic', u'desper', u'pathet']
[u'locum', u'speech', u'therapist', u'break', u'hill', u'job']
[u'lodhi', u'guilti', u'plot', u'terrorist', u'attack']
[u'lodhi', u'guilti', u'terror', u'charg']
[u'charg', u'nightclub', u'attack']
[u'charg', u'melbourn', u'doctor', u'murder']
[u'mandurah', u'mayor', u'lobbi', u'region', u'fund']
[u'maroon', u'canvass', u'select', u'option']
[u'marsh', u'committe', u'wind']
[u'martin', u'tell', u'confer']
[u'matthew', u'float', u'rule', u'chang', u'stop', u'flood']
[u'mayor', u'criticis', u'reserv', u'issu']
[u'mayor', u'back', u'town', u'hall', u'polic', u'post', u'option']
[u'militari', u'base', u'offer', u'stand', u'say']
[u'ministeri', u'forum', u'focus', u'northern', u'gold', u'coast']
[u'minist', u'say', u'lifelin', u'exist', u'indigen']
[u'govt', u'help', u'need', u'tackl', u'indigen']
[u'state', u'polic', u'bind', u'timor']
[u'nation', u'debat', u'nuclear', u'power']
[u'campaign', u'launch', u'grampian', u'tourism']
[u'claim', u'emerg', u'timor', u'squad']
[u'council', u'general', u'manag', u'aldermen', u'support']
[u'execut', u'appoint', u'honeymoon', u'project']
[u'newman', u'accus', u'child', u'assault']
[u'korea', u'like', u'fuel', u'ballist', u'missil']
[u'nokia', u'siemen', u'merg']
[u'nrma', u'question', u'separ', u'freight', u'corridor', u'plan']
[u'administr', u'prais', u'rfds', u'work']
[u'readi', u'approv', u'aborigin', u'land', u'leas', u'brough']
[u'ogilvi', u'break', u'australian', u'major', u'drought']
[u'ogilvi', u'win', u'open']
[u'omodei', u'warn', u'liber', u'public', u'dissent']
[u'opposit', u'question', u'chopper', u'purchas']
[u'opposit', u'renew', u'bring', u'troop', u'home']
[u'pair', u'hurt', u'highway', u'crash']
[u'parent', u'protest', u'paediatrician', u'resign']
[u'partnership', u'pilbara', u'health']
[u'pell', u'back', u'civil', u'union']
[u'perth', u'weather', u'break', u'record']
[u'petrol', u'sniff', u'vanish', u'mornington']
[u'plaudit', u'flow', u'ogilvi', u'follow', u'open']
[u'announc', u'plan', u'troop', u'iraq']
[u'govt', u'onshor', u'natur', u'suppli']
[u'polic', u'hunt', u'galleri', u'thief']
[u'polic', u'interview', u'stab', u'victim']
[u'polic', u'negoti', u'stand', u'continu', u'cairn']
[u'polic', u'offic', u'imperson', u'jail']
[u'pornographi', u'flood', u'indigen', u'communiti']
[u'port', u'author', u'accus', u'surpris', u'cut']
[u'properti', u'slow', u'predict', u'prematur']
[u'prosecutor', u'seek', u'death', u'saddam']
[u'protest', u'apolog', u'terror']
[u'whale', u'lobbi', u'hail', u'vote']
[u'qanta', u'withdraw', u'spark', u'tourism']
[u'nurs', u'injur', u'drive', u'shoot', u'thailand']
[u'queen', u'wheel']
[u'quick', u'kick', u'work', u'player', u'harder', u'matthew']
[u'rail', u'group', u'question', u'timet', u'delay']
[u'rape', u'compo', u'appeal', u'adjourn']
[u'rat', u'hike', u'highris', u'owner']
[u'resourc', u'boom', u'caus', u'skill', u'shortag', u'busi']
[u'resourc', u'drag', u'market', u'lower']
[u'resourc', u'iraq', u'inadequ', u'kovco', u'inquiri', u'hear']
[u'retrench', u'beaconsfield', u'miner', u'job']
[u'ring', u'road', u'unit', u'townsvill', u'say', u'mayor']
[u'egg', u'link', u'salmonella', u'outbreak']
[u'weekend', u'road', u'toll', u'reach']
[u'school', u'servic', u'galiwinku', u'adequ', u'stirl']
[u'scott', u'robbin', u'face', u'wrestl', u'charg']
[u'scream', u'terror', u'hear', u'drink', u'bleach']
[u'search', u'fail', u'miss']
[u'shark', u'lose', u'vagana', u'rabbitoh']
[u'shevchenko', u'struggl', u'ukrain']
[u'shire', u'want', u'chang', u'address', u'name']
[u'sieg', u'end', u'cairn']
[u'socceroo', u'defeat', u'brazil']
[u'socceroo', u'unfaz', u'import', u'croatian', u'clash']
[u'soldier', u'reveal', u'timor', u'oper', u'email']
[u'south', u'korea', u'upset', u'kookaburra']
[u'specif', u'fund', u'region', u'health', u'care', u'propos']
[u'spotlight', u'focus', u'churcher']
[u'spread', u'sugar', u'cane', u'diseas', u'inevit']
[u'storm', u'stall', u'sunshin', u'coast', u'sailor', u'plan']
[u'studi', u'find', u'steroid', u'help', u'senior', u'mobil']
[u'studi', u'continu', u'examin', u'rock', u'pollut']
[u'swiss', u'coach', u'look', u'improv']
[u'taliban', u'kill', u'afghanistan']
[u'govt', u'target', u'elder', u'fall', u'prevent']
[u'task', u'forc', u'chief', u'consid', u'region', u'concern']
[u'teen', u'lose', u'perth', u'attack']
[u'thousand', u'gather', u'support', u'socceroo']
[u'charg', u'illicit', u'drug']
[u'kill', u'lankan', u'violenc']
[u'timmin', u'fin', u'follow', u'practic', u'joke']
[u'timor', u'rebel', u'refus', u'surrend']
[u'toowoomba', u'water', u'research', u'centr', u'partner']
[u'troop', u'iraqi', u'forc', u'howard', u'say']
[u'thank', u'tasmanian', u'post', u'surplus']
[u'tunisia', u'derail', u'spanish', u'juggernaut']
[u'charg', u'attack']
[u'umaga', u'play', u'franc']
[u'uncertainti', u'surround', u'mental', u'health', u'unit', u'fund']
[u'unsniff', u'fuel', u'program', u'success', u'abbott']
[u'upgrad', u'albani', u'port', u'grain', u'termin', u'track']
[u'forc', u'surround', u'iraqi', u'rebel', u'town']
[u'troop', u'push', u'ahead', u'ramadi', u'oper']
[u'utai', u'face', u'week', u'sidelin']
[u'vandal', u'target', u'renmark', u'high', u'school']
[u'vandal', u'wreak', u'havoc', u'mine', u'compani', u'shed']
[u'compani', u'happi', u'northern', u'properti', u'purchas']
[u'wade', u'lift', u'heat', u'brink', u'titl']
[u'govt', u'spend', u'stamp', u'starl']
[u'waterfal', u'crash', u'claim', u'need', u'finalis', u'govt']
[u'water', u'restrict', u'prompt', u'medic']
[u'weight', u'limit', u'potenti', u'posti']
[u'whitnal', u'lead', u'blue', u'kouta', u'absenc']
[u'woman', u'face', u'court', u'accus', u'drug', u'offenc']
[u'worksaf', u'investig', u'firework', u'bunker', u'explos']
[u'peopl', u'dead', u'sunshin', u'coast', u'properti']
[u'abbott', u'consid', u'medic', u'school', u'plan']
[u'acid', u'concern', u'rais', u'ceduna', u'key', u'develop']
[u'offic', u'leav', u'east', u'timor']
[u'african', u'refuge', u'suffer', u'settlement', u'problem']
[u'allawi', u'assassin', u'plot', u'suspect', u'trial']
[u'alleg', u'priest', u'abductor', u'appear', u'court']
[u'candid', u'distanc', u'patel', u'letter']
[u'ancic', u'open', u'bosch', u'defenc']
[u'armband', u'fine', u'mean', u'spirit', u'say', u'bomber']
[u'astronom', u'await', u'data', u'pluto']
[u'aust', u'kid', u'get', u'fatter', u'studi']
[u'australian', u'hors', u'line', u'royal', u'ascot', u'glori']
[u'australia', u'warn', u'consequ', u'north', u'korea']
[u'aust', u'shoot', u'busi', u'feud', u'relat', u'thai', u'polic']
[u'aust', u'troop', u'alert', u'dili', u'protest']
[u'aust', u'troop', u'withdraw', u'southern', u'iraqi']
[u'baghdad', u'bomb', u'kill']
[u'banana', u'price', u'flow', u'effect']
[u'baro', u'hop', u'face', u'itali']
[u'beagl', u'fetch', u'humanitarian', u'prize']
[u'brack', u'want', u'stem', u'cell', u'law', u'relax']
[u'bronco', u'hunt', u'enter', u'hospit', u'surgeri']
[u'broom', u'countri', u'club', u'plan', u'excit']
[u'bropho', u'appeal', u'child', u'offenc', u'fail']
[u'bush', u'issu', u'iran', u'ultimatum']
[u'carlton', u'heath', u'scotland', u'appear', u'court']
[u'carolina', u'hurrican', u'stanley']
[u'carrol', u'return', u'eagl']
[u'chapter', u'end', u'gladston', u'bookstor']
[u'children', u'frequent', u'miss', u'meal', u'studi']
[u'closer']
[u'closer']
[u'closer', u'news']
[u'commod', u'drop', u'hit']
[u'construct', u'firm', u'administr', u'asset']
[u'council', u'green', u'light', u'runway', u'work']
[u'council', u'leak', u'prompt', u'councillor', u'concern']
[u'council', u'look', u'joint', u'ownership', u'paint']
[u'councillor', u'withdraw', u'general', u'manag']
[u'council', u'discuss', u'pipelin', u'firefight']
[u'countri', u'allianc', u'seek', u'fewer', u'poki']
[u'countri', u'driver', u'urg', u'awar']
[u'court', u'block', u'cole', u'document']
[u'court', u'find', u'trucki', u'guilti', u'fatal', u'crash']
[u'cricket', u'forc', u'drug']
[u'custom', u'intercept', u'chemic']
[u'cyclon', u'larri', u'taskforc', u'stay']
[u'dairi', u'farmer', u'anim', u'welfar', u'inform', u'kit']
[u'daughter', u'sell', u'mother', u'morphin', u'jail']
[u'debat', u'focus', u'underag', u'drink', u'home']
[u'defenc', u'spend', u'upgrad', u'equip']
[u'delay', u'school', u'closur', u'till', u'say']
[u'downer', u'look', u'franc', u'resolut', u'timor']
[u'push', u'ahead', u'cane', u'diseas', u'erad', u'plan']
[u'dwight', u'call', u'england', u'alli', u'boost', u'soca']
[u'egg', u'blame', u'salmonella', u'outbreak']
[u'email', u'scam', u'target', u'credit', u'union', u'custom']
[u'endang', u'cockatoo', u'fear', u'thwart', u'pulp']
[u'environ', u'report', u'identifi', u'challeng']
[u'timor', u'babi', u'discharg', u'heart', u'surgeri']
[u'explos', u'orang', u'garag']
[u'export', u'kingfish', u'boost', u'economi']
[u'extent', u'census', u'small', u'farm', u'welcom']
[u'westpac', u'worker', u'ban', u'financi', u'servic']
[u'farmer', u'plead', u'surrey', u'river', u'mouth', u'forc', u'open']
[u'farmer', u'criticis', u'coordin', u'grampian']
[u'farmer', u'urg', u'wari', u'stock', u'theft']
[u'father', u'jail', u'punch', u'newborn', u'death']
[u'fear', u'air', u'council', u'tourism', u'plan']
[u'fesa', u'act', u'servic', u'review', u'recommend']
[u'deliv', u'kewel', u'submiss']
[u'fish', u'compani', u'fin', u'prawn', u'trawler', u'death']
[u'freier', u'week']
[u'fund', u'jetti', u'upgrad']
[u'giant', u'panda', u'number', u'surpris', u'scientist']
[u'gold', u'coast', u'council', u'look', u'boost', u'public', u'confid']
[u'govt', u'accus', u'play', u'aborigin', u'rock']
[u'govt', u'reject', u'opposit', u'hospit', u'idea']
[u'govt', u'urg', u'skill', u'work', u'concern']
[u'govt', u'urg', u'form', u'mental', u'health', u'bodi']
[u'govt', u'urg', u'stop', u'fluorid', u'water', u'suppli']
[u'greenpeac', u'surviv', u'vote']
[u'grim', u'outlook', u'grain', u'product']
[u'gunn', u'fin', u'asbesto', u'warn', u'failur']
[u'victim', u'famili', u'seek', u'compens']
[u'squad', u'leader', u'prepar', u'testifi']
[u'hobart', u'secur', u'porter', u'hill', u'bushland']
[u'houlihan', u'beat', u'rough', u'conduct', u'charg']
[u'houlihan', u'fight', u'rough', u'conduct', u'charg']
[u'howard', u'childcar', u'break']
[u'howard', u'dismiss', u'warn', u'bashir', u'issu']
[u'howard', u'quash', u'intern', u'debat']
[u'indian', u'monkey', u'draw', u'crowd']
[u'indigen', u'home', u'pari']
[u'industri', u'concern', u'taxi', u'driver', u'rape', u'claim']
[u'infrastructur', u'spend', u'opposit', u'say']
[u'injur', u'jockey', u'make', u'progress']
[u'inquiri', u'report', u'effect', u'opal', u'fuel']
[u'intern', u'mine', u'list', u'rank', u'lower']
[u'investig', u'appar', u'murder', u'suicid', u'ongo']
[u'iron', u'drill', u'project', u'produc', u'disappoint']
[u'irrig', u'want', u'continu', u'fund', u'drought']
[u'itali', u'legend', u'watch', u'histori', u'repeat']
[u'japanes', u'troop', u'leav', u'iraq']
[u'joyc', u'contest', u'contractor', u'law']
[u'judg', u'revok', u'bail', u'convict', u'paedophil']
[u'kalgoorli', u'boulder', u'face', u'charg']
[u'kalgoorli', u'wont', u'stand', u'event']
[u'kalli', u'endors', u'critic', u'futur', u'tour', u'program']
[u'kewel', u'clear', u'play', u'croatia']
[u'kewel', u'face', u'possibl', u'suspens']
[u'kizon', u'plead', u'guilti', u'insid', u'trade']
[u'koschitzk', u'hop', u'return', u'soon']
[u'kovco', u'death', u'possibl', u'bungl', u'joke']
[u'kovco', u'inquiri', u'continu']
[u'kovco', u'inquiri', u'hear', u'revel']
[u'kovco', u'sing', u'laugh', u'death', u'inquiri', u'hear']
[u'labor', u'listen', u'mine', u'council', u'awa']
[u'lethal', u'virus', u'abalon', u'stock']
[u'liberia', u'taylor', u'head', u'hagu', u'trial']
[u'lodhi', u'convict', u'thank', u'anti', u'terror', u'law', u'ellison']
[u'malthous', u'pleas', u'pie', u'progress']
[u'malthous', u'roo', u'talk', u'bumper', u'clash']
[u'jail', u'drive', u'revers', u'freeway']
[u'kill', u'hit', u'hors']
[u'court', u'middlemount', u'stab']
[u'mark', u'refuge', u'scrap', u'migrat']
[u'mayor', u'hope', u'park', u'entri', u'equiti']
[u'mayor', u'offer', u'guarante', u'council', u'job']
[u'mayor', u'urg', u'rail', u'wast', u'transport']
[u'mayor', u'hear', u'plant', u'remov', u'concern']
[u'mcleod', u'skip', u'surgeri']
[u'melbourn', u'die', u'kokoda', u'track']
[u'migrat', u'delay', u'indonesia', u'visit']
[u'migrat', u'impass', u'stretch', u'august']
[u'minist', u'defend', u'school', u'closur', u'plan']
[u'minist', u'return', u'cabinet', u'draw', u'critic']
[u'miss', u'soldier', u'tortur', u'kill', u'iraq']
[u'mobil', u'build', u'solv', u'indigen', u'hous']
[u'mock', u'bomb', u'explos', u'test', u'polic', u'emerg']
[u'secur', u'prison', u'urg', u'north']
[u'defend', u'palm', u'alcohol', u'plan']
[u'say', u'nuclear', u'debat', u'prematur']
[u'withdraw', u'letter', u'ask', u'martin']
[u'nation', u'lament', u'health', u'centr', u'fund', u'budget']
[u'nelson', u'defend', u'defenc', u'equip']
[u'iraqi', u'mission', u'danger', u'nelson']
[u'iraq', u'role', u'potenti', u'danger', u'nelson']
[u'test', u'genet', u'disord', u'rais', u'design']
[u'ngos', u'support', u'aborigin', u'health', u'agenc', u'youth']
[u'noccundra', u'hotel', u'leas', u'sale']
[u'decis', u'prefer', u'site', u'sunshin']
[u'dog', u'life', u'countri', u'pooch']
[u'nokia', u'siemen', u'merg']
[u'north', u'east', u'walk', u'track', u'reopen', u'week']
[u'plan', u'remov', u'anti', u'tamper', u'rule']
[u'urg', u'refer', u'corpor', u'power']
[u'angri', u'pacif', u'island', u'whale', u'vote']
[u'offic', u'send', u'home', u'timor', u'email']
[u'ogilvi', u'hop', u'open', u'triumph', u'launch', u'australian', u'surg']
[u'ogilvi', u'keep', u'socceroo']
[u'parliament', u'hous', u'get', u'heritag', u'list']
[u'omodei', u'break']
[u'open', u'ash', u'clash', u'sell']
[u'opposit', u'air', u'nurs', u'shortag', u'concern']
[u'opposit', u'seek', u'independ', u'investig']
[u'opposit', u'want', u'intellig', u'iraq', u'mission']
[u'opposit', u'want', u'time', u'budget', u'scrutini']
[u'paper', u'maker', u'add']
[u'papuan', u'ralli', u'grant', u'asylum']
[u'parkland', u'execut', u'offic', u'resign']
[u'passeng', u'number', u'hobart', u'airport']
[u'peopl', u'migrat']
[u'person', u'brimbl', u'inquiri', u'excus']
[u'perth', u'face', u'court', u'child', u'porn']
[u'petrol', u'sniff', u'problem', u'need', u'long', u'term', u'fund']
[u'petrol', u'sniff', u'treatment', u'scheme', u'spotlight']
[u'end', u'migrat', u'debat']
[u'quash', u'intern', u'debat']
[u'unfaz', u'migrat', u'impass']
[u'point', u'pride', u'stake', u'pole', u'tico']
[u'polic', u'continu', u'murder', u'investig']
[u'polic', u'imperson', u'fin']
[u'polic', u'seek', u'fatal', u'crash', u'wit']
[u'polic', u'suspect', u'doubl', u'murder', u'suicid', u'bodi']
[u'propos', u'bridg', u'mark', u'migrant', u'histori']
[u'prosecut', u'call', u'execut', u'saddam']
[u'prosecutor', u'seek', u'death', u'saddam']
[u'protest', u'alkatiri', u'resign']
[u'protest', u'demand', u'alkatiri', u'resign']
[u'canegrow', u'assur', u'smut', u'outbreak', u'control']
[u'record', u'price', u'pay', u'break', u'hill', u'hous']
[u'revel', u'continu', u'kovco', u'inquiri']
[u'river', u'blue', u'green', u'alga', u'level', u'danger']
[u'rooney', u'england', u'sweden', u'jinx']
[u'royal', u'mint', u'thief', u'need', u'challeng']
[u'ruddock', u'push', u'state', u'polic', u'pornographi']
[u'rumour', u'tasmanian', u'hous', u'ferri', u'true']
[u'govt', u'accus', u'ignor', u'warn']
[u'saudi', u'coach', u'blame', u'rain', u'ukrainian', u'rout']
[u'wine', u'group', u'air', u'share', u'solut', u'oversuppli']
[u'senat', u'committe', u'number']
[u'offend', u'regist', u'law', u'delay']
[u'sexual', u'abus', u'victim', u'sue', u'educ', u'minist']
[u'shire', u'offer', u'tourist', u'bureau', u'fund', u'boost']
[u'shoot', u'victim', u'travel', u'thailand']
[u'shoot', u'nurs', u'accident', u'victim', u'busi', u'feud']
[u'shoot', u'nurs', u'intens', u'care', u'bangkok']
[u'singer', u'seek', u'intervent', u'order']
[u'skill', u'shortag', u'worri', u'honeymoon', u'oper']
[u'snow', u'expect', u'mountain', u'peak', u'north', u'east']
[u'socceroo', u'assist', u'coach', u'graham', u'arnold']
[u'socceroo', u'look', u'mirror', u'croatia', u'arnold']
[u'warn', u'touch', u'bleach', u'court', u'hear']
[u'storm', u'sign', u'bellami']
[u'student', u'convict', u'flatmat', u'basebal', u'murder']
[u'suit', u'dismiss', u'syriana']
[u'survey', u'find', u'local', u'driver', u'worst', u'headlight']
[u'sven', u'play', u'rooney', u'hop']
[u'tanker', u'spill', u'forc', u'highway', u'closur']
[u'push', u'parti', u'drug', u'debat']
[u'teen', u'counsel', u'suspect', u'doubl', u'murder']
[u'humbl', u'billi', u'cart', u'go', u'school']
[u'tissu', u'compani', u'foreign', u'labour', u'investig']
[u'town', u'camp', u'resid', u'seek', u'construct', u'solut']
[u'tree', u'forc', u'eastlink', u'bypass', u'deviat']
[u'tribal', u'museum', u'open', u'pari']
[u'union', u'want', u'action', u'region', u'ambul']
[u'soldier', u'charg', u'murder']
[u'utai', u'out', u'week']
[u'extend', u'water', u'rebat', u'scheme']
[u'firm', u'lake', u'bonney', u'wind', u'farm', u'turbin']
[u'victori', u'ecuador', u'vital', u'confid', u'say']
[u'govt', u'renew', u'attack', u'starl', u'menac']
[u'warn', u'kasper', u'look', u'good', u'ash']
[u'warner', u'brother', u'help', u'save', u'devil']
[u'warrant', u'issu', u'timores', u'minist']
[u'take', u'fight', u'cane', u'toad', u'wing']
[u'week', u'focus', u'drug', u'abus', u'educ']
[u'milit', u'kill', u'afghanistan']
[u'trade', u'post', u'centr', u'job']
[u'abbott', u'eye', u'alic', u'spring', u'opal', u'rollout']
[u'abbott', u'patern', u'push', u'find', u'littl', u'support']
[u'abbott', u'urg', u'patern', u'aborigin']
[u'govt', u'accus', u'fudg', u'school', u'cost', u'figur']
[u'akermani', u'clarifi', u'offend', u'email']
[u'alkatiri', u'mull', u'resign']
[u'childcar', u'centr', u'open', u'yuendumu']
[u'angola', u'dream', u'shock', u'qualif']
[u'anti', u'mules', u'campaign', u'protest', u'soccer', u'world']
[u'auction', u'rais', u'fund', u'environ']
[u'asylum', u'open']
[u'aussi', u'build', u'coach', u'queen']
[u'aussi', u'bush', u'hors', u'win', u'ascot']
[u'australian', u'develop', u'blood', u'fluke', u'vaccin']
[u'australian', u'improv', u'report', u'card', u'health']
[u'ballarat', u'stock', u'agent', u'lobbi', u'sell', u'area']
[u'bendigo', u'council', u'defend', u'park', u'project', u'delay']
[u'bendigo', u'lose', u'telstra', u'job']
[u'biki', u'group', u'road', u'safeti', u'campaign']
[u'bland', u'council', u'reject', u'rate', u'rise']
[u'blaze', u'destroy', u'toongabbi', u'hous']
[u'blue', u'mussel', u'farm', u'australia', u'largest']
[u'bouncer', u'manslaught', u'convict', u'quash']
[u'face', u'charg', u'road', u'death']
[u'brimbl', u'famili', u'champion', u'cruis', u'safeti']
[u'broadbeach', u'pcyc', u'boost', u'membership']
[u'petrol', u'weekday', u'accc', u'advis']
[u'cancel', u'hundr', u'ash', u'ticket']
[u'slide', u'scale', u'water', u'charg']
[u'canker', u'victim', u'urg', u'better', u'govt', u'farmer']
[u'chang', u'afoot', u'ronaldinho', u'say', u'brazil']
[u'cheaper', u'sept', u'memori', u'plan', u'unveil']
[u'china', u'agre', u'iron', u'price', u'rise']
[u'citrus', u'canker', u'report', u'recommend', u'aqi', u'chang']
[u'closer']
[u'closer']
[u'collingwood', u'rest', u'injur', u'player']
[u'commission', u'accept', u'burn', u'shortfal']
[u'communiti', u'ralli', u'orphan', u'teen']
[u'concern', u'gunnedah', u'ambul', u'staff', u'shortag']
[u'concern', u'rais', u'futur', u'open', u'hour']
[u'council', u'rail', u'corridor', u'plan']
[u'council', u'seek', u'feedback', u'shoalhaven', u'showground']
[u'court', u'rule', u'delay', u'cole', u'inquiri', u'find']
[u'crow', u'confid', u'mcleod', u'recoveri']
[u'denmark', u'council', u'vote', u'hospit', u'locat']
[u'dept', u'investig', u'childcar', u'centr', u'abus', u'claim']
[u'docker', u'turn', u'season', u'connolli']
[u'decapit', u'alarm', u'rspca']
[u'drink', u'driver', u'jail', u'motorcyclist', u'death']
[u'drought', u'farmer', u'rental', u'relief']
[u'dutch', u'face', u'dazzl', u'argentina']
[u'emerg', u'servic', u'chief', u'meet', u'grampian', u'farmer']
[u'euston', u'develop', u'approv']
[u'excess', u'level', u'lead', u'drink', u'water']
[u'famili', u'receiv', u'free', u'internet', u'filter']
[u'farmer', u'urg', u'manag', u'invest']
[u'fast', u'rail', u'project', u'wast', u'money', u'opposit']
[u'father', u'guilti', u'son', u'death']
[u'father', u'shoot', u'woman', u'meet', u'thai', u'doctor']
[u'financi', u'counsellor', u'rais', u'drought', u'issu']
[u'break', u'fraser', u'concern', u'conserv', u'group']
[u'firefight', u'protest', u'parliament']
[u'fish', u'supplement', u'eas', u'adhd', u'symptom']
[u'flood', u'kill', u'indonesia']
[u'timor', u'interior', u'minist', u'hous', u'arrest']
[u'timor', u'minist', u'hous', u'arrest']
[u'liberian', u'dictat', u'arriv', u'hagu']
[u'liberian', u'presid', u'dutch', u'custodi']
[u'free', u'internet', u'filter', u'half', u'bake', u'solut']
[u'game', u'ten', u'advertis', u'revenu']
[u'garden', u'club', u'member', u'fruit', u'fight']
[u'gove', u'senat', u'propos']
[u'govt', u'fund', u'allow', u'continu', u'cancer', u'treatment']
[u'govt', u'avoid', u'account', u'howard', u'say']
[u'govt', u'senat', u'propos']
[u'govt', u'sign', u'south', u'coast', u'power', u'station']
[u'govt', u'offer', u'free', u'internet', u'porn', u'filter']
[u'govt', u'offer', u'central', u'highland', u'health']
[u'grab', u'remain', u'ash', u'ticket', u'intensifi']
[u'grant', u'help', u'student', u'plan', u'mine', u'career']
[u'green', u'demand', u'consult', u'militari', u'base']
[u'gusmao', u'ask', u'alkatiri', u'resign']
[u'gusmao', u'ask', u'alkatiri', u'resign']
[u'hall', u'fail', u'short', u'list']
[u'hewitt', u'receiv', u'wimbledon', u'seed', u'boost']
[u'hingi', u'return', u'mix', u'memori']
[u'hous', u'shortag', u'forc', u'resid', u'live', u'tent']
[u'howard', u'fail', u'agre', u'migrat', u'law']
[u'howard', u'fail', u'reach', u'agreement', u'migrat']
[u'howard', u'slam', u'public', u'school', u'charg', u'admin', u'fee']
[u'index', u'signal', u'improv', u'econom', u'growth']
[u'indigen', u'program', u'reduc', u'crime']
[u'indigo', u'shire', u'rat', u'rise']
[u'indonesian', u'landslid', u'kill']
[u'injur', u'nurs', u'remain', u'critic', u'condit']
[u'inverel', u'park', u'upgrad', u'festiv']
[u'meet', u'end', u'boycott']
[u'japan', u'resum', u'beef', u'import']
[u'justic', u'catch', u'year']
[u'kalgoorli', u'pursu', u'plan', u'attract', u'skill']
[u'kewel', u'clear', u'fifa']
[u'kovco', u'inquiri', u'enter']
[u'kovco', u'play', u'joke', u'weapon', u'clearanc']
[u'labor', u'condemn', u'senat', u'committe', u'chang']
[u'leak', u'toxic', u'ship', u'head', u'brisban']
[u'longreach', u'pipe', u'band', u'seek', u'musician']
[u'loxton', u'waikeri', u'resid', u'face', u'rat', u'rise']
[u'macquari', u'bank', u'confirm', u'pccw', u'talk']
[u'die', u'arm', u'stand']
[u'mango', u'industri', u'target', u'young', u'famili']
[u'jail', u'vicious', u'unprovok', u'pharmaci', u'stab']
[u'court', u'accus', u'mobil', u'phone', u'theft']
[u'martin', u'apolog', u'forc', u'backbench', u'say']
[u'martin', u'leadership', u'sieg']
[u'martin', u'need', u'better', u'advic', u'aborigin', u'activist']
[u'mayor', u'see', u'benefit', u'collinsvill', u'power', u'station']
[u'mcgrath', u'play', u'ash', u'seri']
[u'mexico', u'hope', u'rise', u'like', u'eagl', u'portug']
[u'microsoft', u'look', u'power', u'robot', u'industri']
[u'mine', u'boom', u'creat', u'hous', u'shortag']
[u'mine', u'bursari', u'offer', u'student']
[u'mine', u'resum', u'gold', u'deposit']
[u'minist', u'open', u'sewerag', u'treatment', u'plant']
[u'australian', u'urg', u'meat']
[u'nation', u'warn', u'korean', u'missil', u'test']
[u'mother', u'give', u'birth', u'hospit', u'lift', u'push']
[u'call', u'horsham', u'rail', u'station', u'upgrad']
[u'outrag', u'abbott', u'patern', u'push']
[u'want', u'inland', u'flood', u'plan', u'investig']
[u'children', u'test', u'amid', u'lead', u'fear']
[u'warn', u'port', u'cut']
[u'natur', u'resourc', u'grant', u'avail', u'farm']
[u'nelson', u'flag', u'iraq', u'deploy', u'review']
[u'nelson', u'flag', u'iraq', u'troop', u'withdraw']
[u'law', u'target', u'illeg', u'fishermen']
[u'market', u'thorium', u'export', u'physicist', u'say']
[u'york', u'citi', u'top', u'courtesi', u'survey']
[u'korean', u'missil', u'test', u'threaten', u'food']
[u'india', u'wheat', u'contract']
[u'rift', u'lille']
[u'evid', u'alkatiri', u'weapon']
[u'land', u'summit', u'south', u'west']
[u'kovco', u'commit', u'suicid', u'inquiri', u'hear']
[u'wimbledon', u'dokic']
[u'club', u'support', u'chang', u'anti', u'tamper', u'law']
[u'govt', u'interchang', u'cost']
[u'properti', u'boom', u'continu']
[u'number', u'millionair']
[u'offic', u'shoot', u'suspect', u'steal']
[u'otter', u'breakout']
[u'senat', u'fear', u'dismiss']
[u'owen', u'rule', u'world']
[u'pagan', u'seek', u'consist', u'blue']
[u'paramed', u'steal', u'morphin', u'escap', u'jail']
[u'parliament', u'pass', u'elector', u'chang']
[u'peopl', u'lose', u'plot', u'milat', u'privileg']
[u'petit', u'call', u'unbias', u'govt', u'fund', u'pregnanc']
[u'pharmaci', u'roof', u'collaps', u'dead']
[u'plan', u'help', u'manag', u'gambier', u'hous', u'growth']
[u'polic', u'crack', u'speed', u'wodonga']
[u'polic', u'hunt', u'mayfield', u'home', u'invad']
[u'polic', u'investig', u'fatal', u'crash']
[u'portland', u'hospit', u'gain', u'fund', u'locum', u'doctor']
[u'consid', u'cruis', u'safeti', u'plan']
[u'public', u'meet', u'plan', u'delay']
[u'public', u'servic', u'freez', u'plan', u'opposit']
[u'qanta', u'predict', u'profit', u'slump']
[u'govt', u'cooper', u'cmcs', u'nutal', u'investig']
[u'unit', u'church', u'leader', u'speak']
[u'quarantin', u'offic', u'blame', u'citrus', u'canker']
[u'rabbit', u'chew', u'milawa', u'phone', u'line']
[u'rain', u'add', u'littl', u'dam']
[u'random', u'hammer', u'attack', u'kill']
[u'rathdowney', u'oppon', u'want', u'local', u'announc']
[u'reef', u'research', u'urg', u'focus', u'fish']
[u'research', u'fail']
[u'research', u'studi', u'impact', u'develop', u'moranbah']
[u'resourc', u'bank', u'stock', u'boost', u'market']
[u'review', u'decid', u'darl', u'down', u'council', u'merger']
[u'roddick', u'seek', u'chang', u'fortun']
[u'royal', u'mint', u'thief', u'jail']
[u'russia', u'develop', u'tast', u'kingfish']
[u'saddam', u'lawyer', u'kill']
[u'saddam', u'lawyer', u'kill', u'baghdad', u'report']
[u'govt', u'plan', u'cork', u'bing', u'drink']
[u'abolish', u'stamp', u'duti', u'water', u'transact']
[u'schifcofsk', u'sign', u'chanc', u'jone']
[u'school', u'sheep', u'kill', u'steal']
[u'king', u'crash', u'inquiri', u'adjourn', u'consid', u'bias']
[u'senat', u'committe', u'chang', u'criticis']
[u'senat', u'committe', u'chang', u'evil', u'beazley']
[u'serbia', u'petkov', u'want', u'digniti']
[u'warn', u'bushwalk', u'cold', u'weather', u'danger']
[u'seven', u'sell', u'stake', u'telstra', u'dome']
[u'sexual', u'abus', u'report', u'indigen', u'communiti']
[u'shepherdson', u'humbl', u'make', u'test', u'debut']
[u'shepherdson', u'debut', u'ireland']
[u'shire', u'fund', u'help', u'maintain', u'servic']
[u'shire', u'struggl', u'cyclon']
[u'simun', u'doesnt', u'regret', u'snub', u'socceroo']
[u'singer', u'seymour', u'win', u'intervent', u'order']
[u'snowtown', u'convict', u'appeal', u'sentenc']
[u'socceroo', u'expect', u'firework', u'croatia']
[u'socceroo', u'high', u'ahead', u'croatian', u'clash']
[u'soldier', u'provid', u'evid', u'kovco', u'inquiri']
[u'stefaniak', u'see', u'jail', u'shortfal']
[u'studi', u'focus', u'femal', u'peacekeep', u'issu']
[u'swan', u'hill', u'council', u'accept', u'piggeri', u'plan']
[u'sweden', u'confid', u'beat', u'germani']
[u'takeov', u'target', u'take', u'royal', u'ascot', u'storm']
[u'taliban', u'fiercer', u'expect', u'command']
[u'tamworth', u'perman', u'taxi', u'rank', u'secur', u'guard']
[u'industri', u'competit', u'accc']
[u'theatr', u'spread', u'conserv', u'messag']
[u'children', u'kill', u'wound', u'isra']
[u'life', u'footbridg', u'murder']
[u'guilti', u'kill', u'chermsid']
[u'tourism', u'group', u'cast', u'doubt', u'plan', u'chang']
[u'univers', u'launch', u'school', u'break', u'hill']
[u'bishop', u'criticis', u'view']
[u'vegi', u'export', u'drop']
[u'veteran', u'william', u'retir', u'season']
[u'viduka', u'appeal', u'common', u'sens', u'refere']
[u'violent', u'femm', u'boost', u'music']
[u'wade', u'lead', u'heat', u'titl']
[u'wagga', u'council', u'defend', u'restructur']
[u'govt', u'plan', u'overhaul', u'bunburi', u'perth', u'rail', u'link']
[u'minist', u'back', u'initi', u'stop', u'petrol']
[u'great', u'southern', u'face', u'hefti', u'problem']
[u'widder', u'sign', u'rabbitoh']
[u'wollondilli', u'council', u'seek', u'speed', u'limit', u'review']
[u'wollongong', u'courthous', u'restor']
[u'world', u'injur', u'owen']
[u'pilot', u'reunit', u'darwin']
[u'passport', u'applic', u'lose', u'mail']
[u'abalon', u'precaut', u'mcewen', u'say']
[u'abar', u'urg', u'lower', u'wheat', u'yield', u'estim']
[u'floriad', u'remain', u'free']
[u'addict', u'trial', u'methadon', u'program']
[u'adelaid', u'citi', u'council', u'elect', u'delay']
[u'deepli', u'regret', u'iraqi', u'shoot']
[u'investig', u'iraqi', u'bodyguard', u'shoot']
[u'investig', u'iraqi', u'shoot']
[u'age', u'care', u'group', u'restructur', u'decis', u'make']
[u'agri', u'colleg', u'bulli', u'incid']
[u'alinta', u'merger', u'finalis']
[u'alkatiri', u'like', u'resign']
[u'alkatiri', u'learn', u'polit', u'fate', u'today']
[u'qaeda', u'plan', u'australian', u'attack', u'report']
[u'urg', u'test', u'taint', u'implant', u'recipi']
[u'oppos', u'home', u'nurs', u'hour']
[u'asham', u'gusmao', u'threaten', u'resign']
[u'aust', u'escort', u'mistak', u'leav', u'iraqi', u'guard', u'dead']
[u'aust', u'investig', u'iraqi', u'bodyguard', u'shoot']
[u'australian', u'astronom', u'univers', u'applaud']
[u'australian', u'footbal', u'winner', u'hiddink']
[u'australia', u'send', u'philippin']
[u'baldock', u'give', u'legend', u'status']
[u'bangkok', u'shoot', u'victim', u'die']
[u'bangladesh', u'bashar', u'captain', u'world']
[u'beardi', u'festiv', u'fund', u'releas']
[u'beatti', u'hear', u'resid', u'chemic', u'concern']
[u'brother', u'prompt', u'tighten', u'broadcast', u'rule']
[u'birdwatch', u'welcom', u'land', u'endang', u'cockatoo']
[u'black', u'cap', u'focus', u'dayer', u'world']
[u'blue', u'heeler', u'star', u'guilti', u'drink', u'drive']
[u'box', u'attempt', u'murder', u'charg', u'drop']
[u'bright', u'futur', u'orchestra']
[u'bronco', u'pair', u'fight']
[u'brough', u'indigen', u'abus']
[u'brough', u'order', u'indigen', u'order', u'audit']
[u'burnett', u'budget', u'look', u'futur']
[u'termin', u'get', u'help', u'hand', u'govt']
[u'buyer', u'urg', u'regist', u'hous', u'estat']
[u'cairn', u'scheme', u'vie', u'nation', u'drug', u'alcohol']
[u'campbel', u'see', u'corrupt', u'practic']
[u'cataract', u'gorg', u'hous', u'get', u'ahead']
[u'claim', u'goulburn', u'children', u'ward', u'close', u'weekend']
[u'claim', u'steal', u'bodi', u'part', u'treat', u'australian']
[u'closer']
[u'closer']
[u'close', u'indigen', u'unit', u'disservic', u'opposit']
[u'coalit', u'therapeut', u'clone', u'debat', u'inadequ']
[u'concern', u'air', u'north', u'west', u'medic', u'transport']
[u'contractor', u'law', u'actu']
[u'controversi', u'gulpilil', u'portrait', u'auction']
[u'council', u'back', u'highway', u'chang']
[u'council', u'land', u'sell', u'aim', u'eas', u'hous', u'shortag']
[u'council', u'urg', u'pictur', u'saleyard']
[u'court', u'quash', u'firearm', u'convict']
[u'crimin', u'jail', u'prison', u'break', u'plan']
[u'dairi', u'farmer', u'warn', u'prepar', u'drop', u'incom']
[u'darwin', u'harbour', u'fish', u'test']
[u'detaine', u'drug', u'claim', u'unsourc', u'untest']
[u'discoveri', u'despit', u'safeti', u'concern']
[u'probe', u'macquari', u'marsh', u'illeg', u'land']
[u'donut', u'compani', u'defend', u'school', u'fundrais']
[u'doubt', u'cast', u'marin', u'park', u'sanctuari', u'zone']
[u'doubt', u'rais', u'perth', u'bunburi', u'rail', u'plan']
[u'question', u'lawyer', u'secur', u'check', u'evid']
[u'driver', u'die', u'fieri', u'crash']
[u'drought', u'claim', u'reach', u'record', u'level']
[u'drought', u'savag', u'agricultur']
[u'speak', u'pump', u'station', u'lock']
[u'dunn', u'domin', u'mexico', u'surf', u'heat']
[u'eastern', u'sydney', u'drug', u'ring', u'bust']
[u'east', u'timor', u'lobato', u'face', u'unrest', u'charg']
[u'report', u'anger', u'tuna', u'industri']
[u'extra', u'fund', u'need', u'communiti', u'bank', u'open']
[u'familiar', u'czech', u'face', u'stand', u'itali']
[u'farmer', u'urg', u'panic', u'cane', u'smut', u'spread']
[u'film', u'help', u'educ', u'expect', u'indigen', u'mum']
[u'finch', u'anasta', u'critic', u'fitzgibbon']
[u'thing', u'ghana']
[u'fish', u'buyback', u'tender', u'close']
[u'fish', u'licenc', u'buyout', u'tender']
[u'flood', u'death', u'toll', u'approach']
[u'jail', u'drive', u'shoot']
[u'soldier', u'kill', u'afghanistan']
[u'franc', u'south', u'africa', u'storm', u'final']
[u'frost', u'hit', u'winter', u'potato', u'crop']
[u'gastro', u'outbreak', u'prompt', u'hygien', u'warn']
[u'golf', u'club', u'wont', u'rush', u'develop', u'decis']
[u'govt', u'ask', u'clarifi', u'small', u'claim', u'mine', u'rule']
[u'govt', u'dismiss', u'qaeda', u'plot', u'report']
[u'govt', u'grant', u'inquiri', u'extens']
[u'govt', u'move', u'streamlin', u'classif']
[u'govt', u'postpon', u'migrat', u'debat']
[u'govt', u'project', u'preserv', u'shipwreck']
[u'govt', u'rebel', u'criticis', u'migrat', u'stand']
[u'govt', u'reluct', u'back', u'petrol', u'price', u'inquiri']
[u'govt', u'public', u'hous', u'cut']
[u'govt', u'urg', u'help', u'fli', u'fox']
[u'gusmao', u'threaten', u'resign', u'alkatiri', u'decis']
[u'harbour', u'bomb', u'remov', u'parti', u'polit']
[u'hick', u'post', u'centuri', u'worcestershir']
[u'high', u'court', u'uphold', u'murder', u'convict']
[u'liquid', u'sue', u'turnbul']
[u'hope', u'drought', u'continu']
[u'hope', u'remain', u'troubl', u'ymca']
[u'hospit', u'accid', u'prompt', u'road', u'cross']
[u'hous', u'burn', u'dili', u'tension', u'flare']
[u'hous', u'start', u'unexpect', u'surg']
[u'howard', u'travel', u'top']
[u'hundr', u'kill', u'indonesian', u'landslid', u'flood']
[u'open', u'gold', u'coast', u'centr']
[u'indigen', u'communiti', u'secondari', u'school']
[u'indonesia', u'back', u'away', u'aust', u'secur', u'deal']
[u'indonesian', u'ferri', u'sink']
[u'injur', u'firefight', u'reliv', u'hospit', u'ordeal']
[u'inquiri', u'investig', u'petrol', u'price']
[u'ipswich', u'stand', u'end']
[u'iran', u'set', u'incent', u'respons', u'timet']
[u'iraq', u'bodyguard', u'shoot', u'threaten', u'trade', u'deal']
[u'iraqi', u'bodyguard', u'death', u'threaten', u'trade', u'deal']
[u'iraqi', u'shoot', u'renew', u'call', u'bring', u'troop', u'home']
[u'irregular', u'meal', u'link', u'childhood', u'obes']
[u'irrig', u'protest', u'council', u'rat', u'plan']
[u'tell', u'polic', u'mutijulu', u'paedophil', u'brough']
[u'kyli', u'reschedul', u'showgirl', u'concert']
[u'land', u'council', u'elect', u'chairman']
[u'landlord', u'warn', u'rais', u'rent']
[u'launceston', u'flood', u'gate', u'test']
[u'leaki', u'cargo', u'ship', u'arriv', u'brisban']
[u'lennon', u'laugh', u'recent', u'controversi']
[u'liber', u'say', u'strong', u'show', u'forrest']
[u'lobato', u'front', u'court', u'dili']
[u'loos', u'connect', u'blame', u'blaze']
[u'lower', u'life', u'expect', u'rat', u'blame', u'lower', u'incom']
[u'man', u'bodi', u'fitzroy', u'river']
[u'market', u'decid', u'townsvill', u'develop', u'council']
[u'mathew', u'name', u'swan', u'line']
[u'mayor', u'hop', u'resign']
[u'mayor', u'play', u'tooleybuc', u'break', u'away']
[u'mcdonald', u'win', u'mile', u'franklin', u'award']
[u'medic', u'board', u'review', u'process', u'amid', u'damn']
[u'meet', u'consid', u'protect', u'histor', u'find']
[u'migrat', u'debat', u'postpon']
[u'migrat', u'law', u'delay', u'anger']
[u'milat', u'suicid', u'watch', u'amid', u'privileg']
[u'minist', u'offer', u'narrabri', u'hospit', u'assur']
[u'minist', u'north', u'coast', u'announc']
[u'miss', u'passport', u'applic']
[u'heartach', u'await', u'zico']
[u'test', u'king']
[u'air', u'hospit', u'health', u'risk', u'worri']
[u'catch', u'drink', u'drive', u'take', u'sick', u'leav']
[u'urg', u'council', u'appoint', u'right']
[u'murder', u'accus', u'teen', u'remand', u'custodi']
[u'mutitjulu', u'paedophil', u'report', u'say']
[u'nebo', u'sewag', u'plant']
[u'breed', u'sheep', u'produc']
[u'team', u'dog', u'event', u'featur', u'rodeo']
[u'nickel', u'project', u'spark', u'ravensthorp']
[u'korea', u'nuclear', u'concern', u'push', u'gold', u'price']
[u'restrict', u'place', u'power', u'station', u'employ']
[u'call', u'inquiri', u'abus', u'claim']
[u'launch', u'child', u'abus', u'inquiri']
[u'promis', u'action', u'abus', u'alleg']
[u'nuclear', u'dump', u'protest', u'case', u'canberra']
[u'nurs', u'strike', u'nurs', u'home', u'sack']
[u'current', u'account', u'deficit', u'hit', u'record']
[u'ogilvi', u'take', u'confid', u'open']
[u'dead', u'highway', u'crash']
[u'open', u'baghdad']
[u'oper', u'manual', u'contribut', u'land', u'mishap']
[u'overnight', u'rain', u'help', u'lift', u'water', u'storag', u'hop']
[u'owen', u'injuri', u'trigger', u'magpi', u'ruud']
[u'owen', u'reveal', u'guilt', u'knee', u'injuri']
[u'paedophil', u'avoid', u'indefinit', u'jail', u'term']
[u'parliament', u'pass', u'legisl']
[u'pearson', u'reject', u'indigen', u'patern']
[u'pietersen', u'eager', u'lead', u'role']
[u'plan', u'target', u'feral', u'pest']
[u'announc', u'troop', u'riski', u'iraq', u'post']
[u'polic', u'defend', u'action', u'sieg', u'death']
[u'polic', u'diver', u'search', u'teen', u'murder', u'evid']
[u'polic', u'expect', u'seek', u'extradit', u'arm']
[u'polic', u'investig', u'doctor', u'surgeri', u'blaze']
[u'polic', u'wont', u'investig', u'mules', u'complaint']
[u'possibl', u'public', u'servic', u'job', u'freez', u'disappoint']
[u'pregnanc', u'counsellor', u'evalu', u'reli']
[u'pregnant', u'women', u'warn', u'alcohol', u'danger']
[u'lincoln', u'mayor', u'urg', u'methadon']
[u'push', u'improv', u'warrego', u'river']
[u'qanta', u'flag', u'compens', u'airbus', u'delay']
[u'queanbeyan', u'council', u'challeng', u'water']
[u'rain', u'delay', u'cane', u'harvest']
[u'research', u'look', u'cane', u'toad', u'secondari', u'poison']
[u'resid', u'rais', u'group', u'home', u'concern']
[u'retail', u'aid', u'market', u'boost']
[u'rise', u'cost', u'manufactur', u'sector']
[u'rossi', u'hop', u'race', u'despit', u'break']
[u'safeti', u'concern', u'wharf', u'chang']
[u'senat', u'call', u'long', u'term', u'commit', u'wipe']
[u'sentenc', u'delay', u'brisban', u'manslaught', u'case']
[u'seven', u'soldier', u'charg', u'iraqi', u'death']
[u'assault', u'investig', u'stretch', u'polic', u'resourc']
[u'shire', u'offer', u'home', u'owner', u'nativ', u'titl', u'claim']
[u'shoot', u'victim', u'die', u'bangkok']
[u'sid', u'group', u'encourag', u'autopsi']
[u'skate', u'park', u'near', u'horsham']
[u'skier', u'grant', u'year', u'round', u'access', u'lake']
[u'skier', u'welcom', u'lake', u'access']
[u'skyrocket', u'fuel', u'price', u'prompt', u'qanta', u'review']
[u'socceroo', u'destini', u'hand']
[u'socceroo', u'focus', u'draw']
[u'spain', u'aznar', u'join', u'news', u'corp', u'board']
[u'state', u'feder', u'group', u'discuss', u'illeg', u'fish']
[u'steeler', u'celebr', u'year']
[u'stoner', u'ministeri', u'critic', u'labor', u'parti', u'beat']
[u'strict', u'guidelin', u'need', u'red', u'sign', u'walker', u'say']
[u'talent', u'search', u'focus', u'indigen', u'perform']
[u'face', u'devil', u'cancer', u'battl']
[u'deal', u'rais', u'vet']
[u'teenag', u'girl', u'charg', u'murder']
[u'thai', u'polic', u'regret', u'nurs', u'death']
[u'thiev', u'target', u'cigarett', u'raid']
[u'thurston', u'tip', u'blue', u'unchang', u'line']
[u'toxic', u'contain', u'ship', u'risk', u'assess']
[u'toxic', u'ship', u'escort', u'brisban']
[u'truss', u'comment', u'spark', u'rail', u'infrastructur', u'stoush']
[u'veteran', u'pilot', u'question', u'crash', u'probe', u'find']
[u'govt', u'overhaul', u'plate']
[u'victorian', u'catch', u'drink', u'drive']
[u'volunt', u'help', u'bushfir', u'recoveri']
[u'wallabi', u'look', u'bright', u'start', u'irish']
[u'move', u'eas', u'hous', u'land', u'crisi']
[u'webb', u'seek', u'build', u'momentum', u'open']
[u'wheat', u'grower', u'time', u'nation', u'survey']
[u'woman', u'charg', u'theft']
[u'women', u'effort', u'forget', u'drought', u'research']
[u'work', u'continu', u'chemic', u'leak']
[u'xstrata', u'play', u'smelter', u'health', u'risk']
[u'water', u'skier', u'grant', u'perman', u'train', u'grind']
[u'fin', u'email', u'spray']
[u'akermani', u'fin', u'email', u'spray']
[u'albani', u'council', u'releas', u'waterfront', u'develop']
[u'alleg', u'assault', u'victim', u'jail', u'subpoena', u'failur']
[u'qaeda', u'suspect', u'kill', u'saudi', u'shoot']
[u'alrc', u'urg', u'feder', u'sentenc', u'guidelin']
[u'condemn', u'nurs', u'power', u'rise']
[u'asylum', u'seeker', u'return']
[u'kill', u'iraq', u'mosqu', u'blast']
[u'atsb', u'awar', u'plan', u'tyre', u'incid']
[u'aust', u'fan', u'celebr', u'world', u'result']
[u'aust', u'offer', u'zero', u'emiss', u'coal', u'partnership']
[u'australian', u'fan', u'celebr', u'socceroo', u'advanc']
[u'road', u'cost', u'state', u'report']
[u'ballarat', u'liber', u'protest', u'toxic', u'wast', u'rail']
[u'banana', u'buyer', u'flock', u'carnarvon']
[u'beatti', u'reject', u'narangba', u'stunt', u'claim']
[u'beaudesert', u'spend', u'road']
[u'brother', u'adult', u'ax']
[u'crowd', u'expect', u'whitsunday']
[u'phil', u'admit', u'want', u'england']
[u'blizzard', u'caus', u'havoc', u'zealand']
[u'blizzard', u'condit', u'close', u'road']
[u'boati', u'urg', u'date', u'navig', u'gear']
[u'border', u'return', u'australian', u'select', u'panel']
[u'borgetti', u'face', u'argentina']
[u'boss', u'taunt', u'blame', u'fast', u'food', u'worker', u'eat']
[u'boulder', u'polic', u'accept', u'locat']
[u'brad', u'cooper', u'jail', u'year']
[u'brad', u'cooper', u'jail', u'year', u'deal']
[u'brett', u'emerton']
[u'break', u'hill', u'extra', u'welfar', u'worker']
[u'broom', u'lose', u'illeg', u'fish', u'monitor']
[u'brough', u'continu', u'attack', u'govt']
[u'cahil', u'delight', u'australia', u'success']
[u'call', u'govern', u'help', u'save', u'ymca']
[u'cane', u'smut', u'wont', u'stop', u'isi', u'sugar', u'crush']
[u'caracella', u'futur', u'undecid']
[u'cassowari', u'habitat', u'map', u'protect', u'plan']
[u'cervic', u'cancer', u'vaccin', u'avail', u'month']
[u'chief', u'justic', u'slam', u'draconian', u'terror', u'law']
[u'china', u'give', u'picki', u'panda', u'space']
[u'cigarett', u'butt', u'blame', u'restaur']
[u'cloncurri', u'host', u'citi', u'countri', u'leagu', u'clash']
[u'code', u'aim', u'protect', u'indigen', u'artist']
[u'complaint', u'drop', u'walgett', u'council']
[u'conserv', u'council', u'warn', u'commercialis']
[u'coonan', u'approv', u'telstra', u'split', u'plan']
[u'cooper', u'jail', u'year', u'deal']
[u'council', u'cast', u'doubt', u'higher', u'staff']
[u'council', u'unhappi', u'minist', u'hospit', u'visit', u'delay']
[u'craig', u'moor']
[u'croc', u'festiv', u'futur', u'secur']
[u'drink', u'drive', u'hirsh', u'quit', u'labor', u'parti']
[u'earth', u'warmest', u'year', u'research']
[u'emerton', u'shatter', u'miss', u'itali', u'showdown']
[u'environment', u'demand', u'blame', u'road', u'delay']
[u'europ', u'pois', u'foreign', u'wine', u'threat']
[u'coff', u'radio', u'station', u'boss', u'face', u'fraud', u'charg']
[u'fan', u'celebr', u'socceroo', u'advanc']
[u'farmer', u'affect', u'tree', u'clear', u'law', u'share']
[u'farmer', u'welcom', u'overnight', u'rain']
[u'feder', u'fund', u'revamp', u'maitland', u'church']
[u'financi', u'plan', u'guidelin', u'improv', u'consum']
[u'flare', u'throw', u'soccer', u'fan', u'arrest']
[u'continu', u'delay', u'flight']
[u'delay', u'flight']
[u'forb', u'teen', u'charg', u'doctor', u'surgeri']
[u'forest', u'worker', u'drug', u'test', u'coron']
[u'forget', u'agreement', u'cost', u'hindmarsh', u'council']
[u'franc', u'face', u'moment', u'truth', u'zidan']
[u'franc', u'henri', u'trezeguet']
[u'frontbench', u'appoint', u'reward']
[u'fuel', u'expect', u'negat', u'impact']
[u'fundrais', u'begin', u'ballarat', u'paddl', u'steamer']
[u'futur', u'longreach', u'doubt']
[u'gayl', u'ganga', u'windi', u'earli', u'advantag']
[u'ghana', u'parti', u'team', u'reach']
[u'gold', u'coast', u'seek', u'hinz', u'project', u'partner']
[u'govt', u'launch', u'dive', u'websit']
[u'govt', u'move', u'eas', u'rural', u'doctor', u'shortag']
[u'govt', u'load', u'asylum', u'seeker', u'democrat']
[u'govt', u'play', u'trade', u'threat', u'iraq', u'shoot']
[u'govt', u'unveil', u'judici', u'appoint']
[u'gusmao', u'resign', u'standoff', u'alkatiri']
[u'gusmao', u'resign', u'threat', u'hard', u'believ']
[u'gusmao', u'vow', u'serv', u'timor']
[u'harriet', u'tortois', u'die']
[u'head', u'stay', u'dragon']
[u'health', u'servic', u'offer', u'paediatr', u'ward', u'assur']
[u'high', u'fuel', u'cost', u'threaten', u'manufactur', u'union', u'say']
[u'open']
[u'home', u'owner', u'grant', u'defraud', u'penalis']
[u'howard', u'allow', u'therapeut', u'clone', u'debat']
[u'howard', u'tell', u'mutijulu', u'abus', u'year', u'say']
[u'human', u'epidem', u'estim']
[u'hundr', u'risk', u'children', u'await', u'case', u'manag']
[u'iemma', u'rann', u'champion', u'world']
[u'immigr', u'dept', u'warn', u'abattoir', u'visa', u'breach']
[u'india', u'instrument', u'nepal', u'upris', u'rebel', u'say']
[u'indigen', u'summit', u'line', u'chang']
[u'investig', u'cyclist', u'death', u'await', u'expert']
[u'iraqi', u'shoot', u'affect', u'trade']
[u'iraq', u'shoot', u'wont', u'affect', u'trade', u'howard']
[u'irc', u'workchoic', u'inquiri', u'pure', u'fact', u'find']
[u'irish', u'wari', u'wallabi', u'connolli']
[u'jam', u'hardi', u'asbesto', u'compo', u'jeopardi']
[u'judg', u'consid', u'tribal', u'punish', u'sentenc']
[u'kalac', u'reliev', u'kewel', u'spar', u'blush']
[u'kangaroo', u'overpow', u'blue']
[u'kewel', u'equalis', u'greatest']
[u'kingaroy', u'student', u'prepar', u'chariti', u'cycl', u'trek']
[u'lobato', u'implic', u'alkatiri', u'squad', u'claim']
[u'lower', u'petrol', u'price', u'expect', u'senat']
[u'macquari', u'strike', u'deal']
[u'die', u'truck', u'crash']
[u'jail', u'kill', u'partner', u'mother']
[u'maranoa', u'council', u'discuss', u'merg']
[u'market', u'end', u'week', u'lower']
[u'mark', u'viduka']
[u'media', u'puzzl']
[u'minichiello', u'extend', u'contract', u'rooster']
[u'mine', u'town', u'teeth', u'problem', u'expect']
[u'minist', u'play', u'pulp', u'scrap', u'fear']
[u'hous', u'see', u'import', u'vineyard']
[u'mother', u'mission', u'help', u'sick', u'children']
[u'call', u'colleg', u'dorm', u'upgrad']
[u'urg', u'central', u'hous', u'shortag', u'investig']
[u'murali', u'england', u'tour', u'report']
[u'murray', u'promis', u'stay', u'calm', u'wimbledon']
[u'music', u'balloon', u'inspir', u'midsumm', u'dream']
[u'neighbour', u'disput', u'rise', u'cyclon', u'aftermath']
[u'neill', u'blow', u'away', u'socceroo', u'success']
[u'newcastl', u'threaten', u'legal', u'action', u'owen']
[u'donut', u'chain', u'spark', u'fundrais']
[u'pambula', u'river', u'bridg', u'construct']
[u'play', u'question', u'aussi', u'loyalti', u'bush']
[u'nirranda', u'greenhous', u'project', u'risk', u'research', u'group']
[u'help', u'port', u'hedland', u'softbal', u'reloc']
[u'natur', u'shortag', u'minist', u'say']
[u'govt', u'tackl', u'road', u'safeti', u'issu']
[u'lead', u'host', u'world']
[u'opposit', u'welcom', u'fish', u'toxicolog', u'test']
[u'parliament', u'pass', u'budget']
[u'abus', u'inquiri', u'window', u'dress']
[u'offici', u'suspect', u'petrol', u'bomb', u'start', u'colleg']
[u'pilbara', u'gold', u'reopen']
[u'dead', u'lismor', u'unit', u'blaze']
[u'organ', u'beef', u'produc', u'feel', u'drought']
[u'pagan', u'urg', u'charg', u'faith']
[u'pasco', u'appoint', u'democrat', u'presid']
[u'person', u'fail', u'avoid', u'brimbl', u'inquest']
[u'petrol', u'price', u'inquiri', u'look', u'compani']
[u'petrova', u'pull', u'wimbledon']
[u'piano', u'teacher', u'jail', u'systemat', u'abus']
[u'pilot', u'avoid', u'jail', u'gondola', u'cabl', u'accid']
[u'pilot', u'fli', u'crash', u'atsb']
[u'plan', u'moot', u'central', u'feder', u'seat']
[u'plastic', u'levi', u'need', u'govt', u'say']
[u'closer', u'news']
[u'polic', u'appeal', u'info', u'mother', u'home', u'murder']
[u'polic', u'deni', u'target', u'liber', u'senat']
[u'polic', u'investig', u'quad', u'bike', u'farm', u'death']
[u'polic', u'question', u'sunshin', u'coast', u'death']
[u'polic', u'seek', u'chang', u'riot', u'charg', u'drop']
[u'polic', u'track', u'colli', u'teen', u'final', u'hour']
[u'polic', u'tri', u'rescu', u'teen', u'burn']
[u'polit', u'stalem', u'continu', u'east', u'timor']
[u'politician', u'moot', u'host']
[u'portland', u'local', u'sceptic', u'hospit', u'fund']
[u'princ', u'highway', u'fund', u'announc']
[u'coalit', u'condemn', u'seat', u'propos']
[u'rear', u'vehicl', u'sensor', u'tout', u'lifesav']
[u'rebel', u'biki', u'own', u'hide', u'polic']
[u'reef', u'tour', u'oper', u'call', u'total', u'commerci']
[u'riverland', u'record', u'quiet', u'duck', u'hunt', u'season']
[u'roger', u'mcdonald', u'win', u'highest', u'literari', u'honour']
[u'saddam', u'end', u'hunger', u'strike']
[u'saddam', u'hunger', u'strike']
[u'judg', u'legal', u'histori']
[u'salt', u'lake', u'statu', u'focus', u'tourism', u'push']
[u'pass', u'water', u'trade', u'exempt']
[u'school', u'offer', u'counsel', u'student', u'death']
[u'schwarzer', u'like', u'recal', u'kalac']
[u'seven', u'arrest', u'alleg', u'chicago', u'plot']
[u'assault', u'nurs', u'examin', u'start', u'work', u'soon']
[u'ship', u'toxic', u'cargo', u'leav', u'brisban', u'port']
[u'shire', u'provid', u'fund', u'help', u'attract']
[u'skill', u'shortag', u'threaten', u'boot', u'suppli']
[u'korea', u'food', u'poison', u'affect', u'children']
[u'slay', u'woman', u'children', u'safe']
[u'socceroo', u'inspir', u'say', u'gregan']
[u'socceroo', u'world', u'knockout']
[u'spanish', u'bench', u'hop', u'impress', u'saudi']
[u'stakehold', u'discuss', u'armidal', u'paint', u'sale', u'plan']
[u'stanhop', u'sorri', u'school', u'closur', u'angst']
[u'storm', u'steal', u'victori', u'bulldog']
[u'strategi', u'tackl', u'vegi', u'suppli', u'plan', u'remot']
[u'strict', u'rule', u'introduc', u'young', u'driver']
[u'swedish', u'cameraman', u'kill', u'somalia']
[u'swiss', u'south', u'korea', u'play']
[u'sydney', u'delay', u'flight', u'ferri']
[u'sydney', u'delay', u'flight', u'nationwid']
[u'talk', u'possibl', u'cooma', u'jail', u'expans']
[u'teen', u'hospit', u'mishap']
[u'terror', u'accus', u'declar', u'innoc']
[u'approv', u'cervic', u'cancer', u'vaccin']
[u'thai', u'polic', u'expect', u'arrest', u'fitzpatrick', u'case']
[u'eyr', u'peninsula', u'properti', u'report', u'sheep', u'theft']
[u'thorp', u'postpon', u'comeback']
[u'thurston', u'keen', u'dragon', u'challeng']
[u'transend', u'defend', u'hour', u'blackout']
[u'travel', u'urg', u'check', u'flight', u'time']
[u'troop', u'watch', u'dili', u'protest']
[u'troop', u'withdraw', u'begin', u'muthanna']
[u'tunisia', u'stand', u'ukrain']
[u'union', u'beat', u'goulburn', u'rail', u'job']
[u'brown', u'coal', u'reduc', u'greenhous']
[u'run', u'success', u'missil', u'defenc', u'test']
[u'senat', u'approv', u'fund']
[u'senat', u'debat', u'iraq', u'withdraw']
[u'view', u'mountain', u'draw', u'victori']
[u'villawood', u'abus', u'report', u'criticis']
[u'desert', u'town', u'phone', u'broadband', u'upgrad']
[u'wagga', u'council', u'review', u'rais', u'staff', u'exodus', u'fear']
[u'warhol', u'sell', u'thousand']
[u'water', u'crisi', u'threaten', u'nurseri']
[u'tourism', u'town', u'contest', u'open']
[u'white', u'collar', u'crimin', u'urg', u'heed', u'cooper']
[u'will', u'mexico', u'tour', u'event']
[u'wimmera', u'sheep', u'sale', u'increas']
[u'wind', u'farm', u'forget', u'amid', u'nuclear', u'debat', u'state']
[u'wollongong', u'citi', u'centr', u'plan', u'track']
[u'world', u'gain', u'momentum']
[u'young', u'cyclist', u'die', u'highway', u'crash']
[u'young', u'driver', u'forum', u'aim', u'curb', u'illawarra', u'road']
[u'zinifex', u'smelter', u'upgrad', u'emiss']
[u'taliban', u'kill', u'attack']
[u'dead', u'attempt', u'creek', u'cross', u'tasmania']
[u'charg', u'bodi', u'forest']
[u'advic', u'seek', u'astound', u'compo', u'rule']
[u'airlin', u'fight', u'backlog']
[u'alkatiri', u'hint', u'resign']
[u'alkatiri', u'resign', u'premiership', u'report']
[u'honour', u'gallop']
[u'qaeda', u'vow', u'reveng', u'zarqawi', u'death']
[u'annan', u'urg', u'support', u'peacebuild', u'bodi']
[u'armstrong', u'dismiss', u'latest', u'drug', u'claim']
[u'asbesto', u'fund', u'rule', u'obnoxi']
[u'asbesto', u'fund', u'rule', u'cost', u'taxpay']
[u'asbesto', u'victim', u'compens', u'risk']
[u'aussi', u'loyalti', u'bush', u'question']
[u'australian', u'lead', u'warship', u'persian', u'gulf']
[u'busi', u'socceroo']
[u'barr', u'school', u'promis']
[u'lade', u'deputi', u'vow', u'aveng', u'zarqawi', u'death']
[u'bird', u'strain', u'unabl', u'caus', u'pandem']
[u'bird', u'test', u'prompt', u'mutat', u'concern']
[u'birney', u'hit', u'liabil', u'barnett']
[u'bishop', u'lobbi', u'flag', u'desecr', u'penalti']
[u'brown', u'anonym', u'donat']
[u'buffon', u'confid', u'itali', u'face', u'nemesi', u'guus']
[u'cahil', u'neill', u'hand', u'penalti']
[u'call', u'monitor', u'cervic', u'cancer', u'vaccin']
[u'canada', u'look', u'charg', u'photograph', u'tortur']
[u'chechen', u'rebel', u'leader', u'vow', u'wider', u'attack']
[u'chicago', u'plotter', u'seek', u'sept']
[u'closer']
[u'closer']
[u'urg', u'longer', u'budget', u'estim', u'hear']
[u'communiti', u'seek', u'ownership', u'histor', u'sit']
[u'compens', u'chang', u'opportunist', u'corbel']
[u'connolli', u'pull', u'straight']
[u'costello', u'urg', u'save', u'asbesto', u'fund']
[u'darwin', u'fish', u'toxin', u'test', u'extend']
[u'death', u'toll', u'rise', u'indonesian', u'flood', u'landslid']
[u'defenc', u'commit', u'fighter', u'despit', u'flaw']
[u'delay', u'passeng', u'leav', u'book', u'flight']
[u'dementieva', u'unhappi', u'offici', u'dutch']
[u'democrat', u'look', u'rebuild', u'support']
[u'district', u'polic', u'detect', u'chief', u'kill']
[u'dragon', u'power', u'sixth', u'straight']
[u'east', u'timor', u'main', u'enemi', u'aust', u'general']
[u'exit', u'unaccept', u'klinsmann', u'germani']
[u'govt', u'ask', u'step', u'hardi', u'decis']
[u'govt', u'ask', u'step', u'jam', u'hardi']
[u'fifa', u'back', u'poll']
[u'fifa', u'reform', u'rank', u'say', u'blatter']
[u'delay', u'sydney', u'bind', u'flight']
[u'delay', u'melbourn', u'flight']
[u'charg', u'sydney', u'kidnap']
[u'franc', u'surviv', u'beat', u'togo']
[u'fretilin', u'meet', u'delay', u'protest']
[u'gasquet', u'eye', u'second', u'success', u'nottingham', u'titl']
[u'gatlin', u'jone', u'triumph', u'championship']
[u'govt', u'deni', u'choos', u'nuclear', u'wast', u'site']
[u'govt', u'purchas', u'fighter', u'despit', u'flaw']
[u'gregan', u'talk', u'irish', u'back']
[u'gusmao', u'withdraw', u'resign', u'threat']
[u'guus', u'hiddink', u'talk', u'press']
[u'hardi', u'compli', u'rule', u'costello']
[u'hardi', u'open']
[u'hayden', u'snatch', u'victori', u'dutch']
[u'henderson', u'defend', u'abus', u'claim', u'handl']
[u'henin', u'hardenn', u'meet', u'myskina', u'eastbourn', u'final']
[u'hewitt', u'hand', u'favour', u'wimbledon', u'draw']
[u'hobbi', u'farm', u'quarantin', u'fatal', u'virus']
[u'hopkin', u'claim', u'dutch', u'pole']
[u'howard', u'yudhoyono', u'confirm', u'meet']
[u'human', u'human', u'bird', u'transmiss', u'detect']
[u'incumb', u'win', u'labor', u'presid', u'ballot']
[u'india', u'fight', u'sarwan', u'make', u'histori']
[u'iraqi', u'bodyguard', u'death', u'investig']
[u'iraqi', u'bodyguard', u'shoot', u'probe', u'begin']
[u'court', u'appoint', u'polit', u'say']
[u'iron', u'win', u'mexico']
[u'italian', u'club', u'claim', u'innoc']
[u'itali', u'rossi', u'ban', u'match']
[u'jam', u'hardi', u'compens', u'deal', u'risk']
[u'junior', u'black', u'wrap', u'championship']
[u'justic', u'see', u'posit', u'impact', u'right']
[u'see', u'support', u'voluntari', u'euthanasia']
[u'kookaburra', u'face', u'dutch', u'final']
[u'kubica', u'top', u'second', u'montreal', u'practic']
[u'labor', u'see', u'coalit', u'infight', u'redistribut']
[u'luca', u'urg', u'screen', u'soccer', u'fan']
[u'major', u'anti', u'taliban', u'oper', u'continu']
[u'messi', u'aim', u'doubl', u'argentinian', u'parti']
[u'monitor', u'cancer', u'vaccin', u'recipi', u'urg']
[u'beazley', u'premier']
[u'lead', u'reinvigor', u'morcomb', u'investig']
[u'plane', u'flaw', u'compromis', u'defenc', u'labor']
[u'favourit', u'mindil', u'resort', u'propon']
[u'aborigin', u'record', u'unlock']
[u'polic', u'defend', u'handl', u'abus']
[u'nuttal', u'defend', u'hospit', u'site', u'select']
[u'field', u'chao', u'drama', u'azzurri', u'say', u'hiddink']
[u'ogilvi', u'say', u'chang', u'harm', u'golf']
[u'dodo', u'bone']
[u'philippin', u'abolish', u'death', u'penalti']
[u'pie', u'hold', u'upset', u'swan']
[u'plastic', u'effort', u'fall', u'short']
[u'polic', u'deni', u'sieg', u'death', u'report', u'delay']
[u'polic', u'warn', u'london', u'bomber', u'technician']
[u'protest', u'forc', u'fretilin', u'postpon', u'meet']
[u'protest', u'stop', u'alkatiri', u'attend', u'fretilin', u'meet']
[u'poison', u'telstra', u'worker', u'cup']
[u'record', u'number', u'attend', u'cabaret', u'festiv']
[u'refere', u'poll', u'fate', u'balanc']
[u'rossi', u'plan', u'race', u'despit', u'injuri']
[u'samo', u'head', u'pari']
[u'push', u'nation', u'abus', u'inquiri']
[u'health', u'economi', u'tip', u'grow']
[u'scholar', u'pinpoint', u'year', u'happiest']
[u'seven', u'charg', u'terror', u'offenc']
[u'shark', u'trump', u'luckless', u'knight']
[u'smoke', u'wont', u'deter', u'patron', u'survey']
[u'socceroo', u'fear']
[u'spain', u'ensur', u'spot']
[u'spain', u'saudi', u'arabia', u'half', u'time']
[u'strikebreak', u'organis', u'jail', u'steal', u'car']
[u'swiss', u'lead', u'south', u'korea', u'half', u'time']
[u'swiss', u'send', u'angri', u'korea', u'crash']
[u'tabcorp', u'welcom', u'unitab', u'trade', u'propos']
[u'taxhardi', u'open']
[u'bird', u'point', u'kestrel']
[u'road']
[u'tiger', u'blow', u'chanc']
[u'togo', u'hold', u'franc']
[u'tripl', u'host', u'win', u'drug', u'report', u'award']
[u'tunisia', u'reduc', u'jaziri', u'see']
[u'produc', u'spell', u'die']
[u'ukrain', u'beat', u'tunisia', u'shevchenko', u'penalti']
[u'union', u'urg', u'drug', u'polici', u'forestri', u'worker']
[u'arbour', u'urg', u'restraint', u'terror', u'fight']
[u'england', u'fan', u'arrest']
[u'urban', u'kidman', u'nuptial', u'excit', u'cabooltur']
[u'caution', u'guantanamo', u'prison', u'closur']
[u'confirm', u'financ', u'track', u'program']
[u'deni', u'warn', u'north', u'korea', u'missil']
[u'senat', u'vote', u'isol', u'hama', u'govt']
[u'stock', u'fall', u'investor', u'worri']
[u'terror', u'plot', u'highlight', u'home', u'grow', u'danger']
[u'vietnam', u'leader', u'resign', u'report']
[u'wallabi', u'overcom', u'tire', u'ireland']
[u'weapon', u'relinquish', u'alkatiri', u'face', u'parti']
[u'rest', u'readi', u'rocca', u'warn']
[u'wind', u'farm', u'oper', u'fear', u'incent']
[u'wriedt', u'flag', u'greenhous', u'report', u'rule']
[u'chief', u'urg', u'doha', u'breakthrough']
[u'yanner', u'hop', u'wild', u'river', u'protect']
[u'passeng', u'quarantin', u'powder', u'scare']
[u'saudi', u'releas', u'guantanamo', u'prison']
[u'polic', u'miss', u'train', u'deadlin']
[u'abbott', u'sign', u'indonesian', u'bird', u'help', u'packag']
[u'actu', u'warn', u'intimid', u'ralli']
[u'agassi', u'retir', u'open']
[u'airport', u'powder', u'scare', u'see', u'hundr', u'quarantin']
[u'clear', u'adelaid', u'airport', u'powder', u'scare']
[u'alleg', u'drug', u'mule', u'face', u'court']
[u'urg', u'immedi', u'start', u'babi', u'bonus']
[u'anna', u'nicol', u'smith', u'quiet', u'stepson', u'death']
[u'argentina', u'mexico', u'extra', u'time']
[u'arrest', u'cameraman', u'kill']
[u'asbestosi', u'suffer', u'reduc', u'payout']
[u'australia', u'post', u'defend', u'ralli', u'warn']
[u'babi', u'hospit', u'driveway', u'accid']
[u'barr', u'deni', u'mislead', u'parent', u'school', u'closur']
[u'bashir', u'criticis', u'aust', u'ahead', u'howard', u'yudhoyono']
[u'bashir', u'defiant', u'begin', u'indonesia', u'visit']
[u'benji', u'go', u'season']
[u'brisban', u'ralli', u'protest', u'tortur']
[u'bronco', u'break', u'brookval', u'hoodoo']
[u'bronco', u'final', u'brookval']
[u'cabinet', u'prefer', u'telstra', u'sale', u'share', u'transfer']
[u'california', u'detain', u'drink', u'pelican']
[u'calm', u'urg', u'jam', u'hardi', u'rule']
[u'canadian', u'watch', u'word', u'quebec', u'visit']
[u'carrick', u'wait', u'england', u'chanc', u'ecuador']
[u'carter', u'lead', u'black', u'puma']
[u'casey', u'overtak', u'monti']
[u'chanderpaul', u'strand', u'windi', u'collaps']
[u'clerc', u'score', u'twice', u'springbok', u'home']
[u'closer']
[u'closer', u'news']
[u'coalit', u'offer', u'help', u'appoint', u'health', u'boss']
[u'crew', u'neutralis', u'toxic', u'cargo']
[u'csiro', u'deni', u'back', u'whistl', u'blow', u'warn']
[u'curti', u'extend', u'lead', u'washington']
[u'dead', u'hors', u'test', u'hendra', u'virus']
[u'democrat', u'meet', u'affirm', u'knack', u'leadership']
[u'disabl', u'friend', u'pool', u'open', u'maribyrnong']
[u'disabl', u'extra', u'communiti', u'activ', u'day']
[u'dutch', u'portug', u'jinx']
[u'educ', u'dept', u'unawar', u'incid']
[u'blame', u'game', u'indigen', u'issu', u'green']
[u'england', u'germani', u'fan', u'clash', u'stuttgart']
[u'escap', u'porcupin', u'england']
[u'expert', u'toowoomba', u'sewag', u'recycl', u'plan']
[u'farmer', u'consid', u'bank', u'secur', u'water', u'suppli']
[u'fatah', u'hama', u'leader', u'discuss', u'approach', u'israel']
[u'fatal', u'crash', u'close', u'warrego', u'hway']
[u'franc', u'ask', u'turkish', u'ceram']
[u'gallagh', u'play', u'wait', u'list', u'rise']
[u'gasquet', u'make', u'histori', u'nottingham']
[u'gay', u'lesbian', u'march', u'europ']
[u'germani', u'hungri', u'glori', u'say', u'klinsmann']
[u'germani', u'lead', u'sweden', u'half', u'time']
[u'granit', u'creek', u'death', u'investig']
[u'green', u'greater', u'scrutini']
[u'green', u'urg', u'bicker', u'indigen', u'issu']
[u'henin', u'hardenn', u'claim', u'grass', u'titl']
[u'hors', u'ride', u'mark', u'norforc', u'anniversari']
[u'horta', u'open', u'news']
[u'horta', u'stand', u'alkatiri', u'tell', u'resign']
[u'howard', u'fuel', u'price', u'monitor', u'question']
[u'howard', u'talk', u'indonesian', u'tie']
[u'howard', u'yudhoyono', u'meet', u'indonesia']
[u'hubbl', u'telescop', u'camera', u'shut']
[u'hundr', u'quarantin', u'powder', u'scare']
[u'hundr', u'quarantin', u'powder', u'scare']
[u'indonesia', u'drop', u'suppli', u'flood', u'affect', u'area']
[u'inquiri', u'consid', u'move', u'wit', u'protect', u'program']
[u'insurg', u'launch', u'dead', u'raid', u'iraq']
[u'iranian', u'german', u'leader', u'negoti', u'nuclear', u'issu']
[u'iran', u'want', u'nuclear', u'talk', u'precondit']
[u'iraqi', u'unveil', u'reconcili', u'plan']
[u'islamist', u'enforc', u'world']
[u'israel', u'carri', u'gaza', u'arrest', u'raid']
[u'isra', u'forc', u'launch', u'arrest', u'raid']
[u'itali', u'defend', u'nesta', u'australia', u'match']
[u'itali', u'perrotta', u'play', u'brazil']
[u'japanes', u'troop', u'begin', u'iraq', u'withdraw']
[u'jayawarden', u'take', u'woeful', u'england', u'apart']
[u'kidmania', u'hit', u'sydney', u'ahead', u'wed']
[u'kidman', u'urban', u'man']
[u'kidman', u'urban', u'knot']
[u'krajicek', u'defeat', u'safina', u'dutch', u'final']
[u'lacklustr', u'itali', u'unfaz', u'critic']
[u'lavarch', u'rule', u'neighbourhood', u'disput', u'court']
[u'fair', u'tribun', u'wag', u'green']
[u'maliki', u'reconcili', u'plan', u'offer', u'amnesti']
[u'melbourn', u'host', u'latin', u'danc', u'championship']
[u'migaloo', u'spot', u'coff']
[u'migrat', u'stall', u'head', u'indonesia']
[u'migrat', u'unlik', u'chang', u'minchin']
[u'million', u'visit', u'franc', u'answer', u'googl', u'earth']
[u'nadal', u'readi', u'play', u'despit', u'shoulder', u'injuri']
[u'nevill', u'miss', u'ecuador', u'ferdinand', u'readi']
[u'law', u'curtail', u'prison', u'letter', u'write']
[u'excus', u'say', u'beckham']
[u'oboeist', u'win', u'young', u'perform', u'award']
[u'english', u'footbal', u'fan', u'arrest']
[u'opposit', u'flag', u'rise', u'hospit', u'wait', u'list']
[u'palestinian', u'kill', u'raid', u'isra', u'armi', u'post']
[u'parreira', u'fear', u'ghana', u'shoot', u'sight']
[u'passeng', u'decontamin', u'airport', u'powder']
[u'passeng', u'send', u'home', u'airport', u'powder', u'scare']
[u'phoenix', u'extend', u'win']
[u'dismiss', u'minist', u'outburst', u'fuel', u'price']
[u'podolski', u'doubl', u'help', u'germani', u'brush', u'swede', u'asid']
[u'poki', u'data', u'protect', u'revenu', u'studi']
[u'polic', u'grant', u'extra', u'time', u'train']
[u'polic', u'investig', u'central', u'death']
[u'polic', u'seek', u'shop', u'assist', u'con']
[u'polic', u'warn', u'drink', u'driver', u'theyr', u'watch']
[u'postal', u'worker', u'bulli', u'ralli', u'union']
[u'protest', u'pledg', u'allow', u'fretilin', u'meet']
[u'nurs', u'cremat', u'thailand']
[u'raider']
[u'raider', u'torch', u'rooster']
[u'ramo', u'horta', u'resign', u'protest']
[u'resort', u'promot', u'indigen', u'cultur']
[u'restrict', u'order', u'signal', u'isra', u'outpost', u'action']
[u'resurg', u'wallabi', u'face', u'mount', u'injuri', u'toll']
[u'russian', u'space', u'ship', u'head']
[u'african', u'minibus', u'crash', u'kill', u'schoolteach']
[u'june', u'road', u'toll', u'rise']
[u'saudi', u'arabia', u'detain', u'suspect', u'milit']
[u'saudi', u'author', u'arrest', u'suspect', u'milit']
[u'schwarzer', u'return', u'goal', u'itali']
[u'second', u'fretilin', u'meet', u'timor']
[u'sendero', u'world']
[u'shoe', u'thief', u'leav', u'victim', u'money']
[u'shoot', u'holidaymak', u'cremat', u'thailand']
[u'skull', u'lawnmow', u'commut', u'loss']
[u'socceroo', u'guus', u'warn', u'earli']
[u'socceroo', u'wont', u'element', u'surpris', u'neill']
[u'stop', u'blame', u'game', u'indigen', u'issu', u'green']
[u'strauss', u'issu', u'world', u'warn', u'england']
[u'sudan', u'angri', u'rebel', u'helicopt', u'ride']
[u'super', u'maxi', u'fire', u'argentina']
[u'takeov', u'target', u'foil', u'ascot', u'doubl']
[u'taxpay', u'shouldnt', u'fund', u'hardi', u'compo', u'howard']
[u'tear', u'flow', u'mexico', u'world', u'agoni']
[u'teen', u'injur', u'surf', u'accid']
[u'thousand', u'ralli', u'taiwan', u'presid']
[u'tiger', u'extend', u'monitor', u'withdraw', u'deadlin']
[u'toxic', u'contain', u'load', u'ship']
[u'tripl', u'fatal', u'sadden', u'west', u'coast', u'communiti']
[u'troop', u'urg', u'facilit', u'fretilin', u'meet']
[u'charg', u'pacif', u'motorway', u'shoot']
[u'isra', u'dead', u'miss', u'palestinian']
[u'shoot', u'highway', u'struggl']
[u'underground', u'aqueduct', u'free', u'parkland']
[u'union', u'deni', u'influenc', u'beazley', u'awa']
[u'unrest', u'dili', u'fretilin', u'back']
[u'indonesian', u'tie', u'hinder', u'bashir', u'rudd']
[u'nistelrooy', u'pledg', u'ruud', u'awaken']
[u'wallabi', u'better', u'black', u'irish']
[u'want', u'cleric', u'head', u'somali', u'parliament']
[u'protest', u'begin', u'union', u'week', u'action']
[u'warrior', u'rabbitoh', u'touch']
[u'warrior', u'obliter', u'hapless', u'rabbitoh']
[u'warrior', u'webb', u'sign', u'leed']
[u'webber', u'say', u'team', u'mate', u'rosberg', u'hold']
[u'wit', u'attempt', u'assault', u'seek']
[u'woman', u'seek', u'highway', u'shoot']
[u'ymca', u'fund', u'school', u'breakfast', u'program']
[u'zimbabw', u'inform', u'minist', u'dead']
[u'cri', u'foul', u'penalti', u'shoot']
[u'question', u'dubious', u'penalti']
[u'move', u'drink', u'drive', u'notic']
[u'alkatiri', u'appeal', u'calm', u'support', u'ralli']
[u'alkatiri', u'charg', u'squad', u'claim']
[u'alkatiri', u'summon', u'squad', u'claim']
[u'alkatiri', u'appear', u'court']
[u'black', u'underdog', u'coach']
[u'black', u'underdog', u'henri']
[u'ambul', u'volunt', u'await', u'news', u'wentworth']
[u'amnesti', u'criticis', u'british', u'decis', u'hick']
[u'anti', u'graft', u'politician', u'name', u'vietnam', u'presid']
[u'armi', u'take', u'seiz', u'weapon', u'condobolin']
[u'rise', u'modest', u'commod', u'gain']
[u'aust', u'indonesia', u'agre', u'papuan', u'cooper']
[u'australia', u'think', u'like', u'republ', u'costello']
[u'australia', u'indonesia', u'track']
[u'australia', u'anti', u'corrupt', u'effort', u'prais']
[u'aust', u'reput', u'damag', u'scandal', u'watchdog']
[u'aust', u'woman', u'surviv', u'tripl', u'transplant', u'surgeri']
[u'aust', u'world', u'campaign']
[u'aviat', u'author', u'call', u'caution', u'turbul']
[u'bathurst', u'engin', u'return', u'indonesian', u'relief']
[u'beazley', u'call', u'caution', u'fighter', u'jet', u'purchas']
[u'beazley', u'outlin', u'small', u'busi', u'plan']
[u'beazley', u'urg', u'tougher', u'stanc', u'indonesia']
[u'crowd', u'protest', u'nurs', u'home', u'staff', u'cut']
[u'blair', u'lose', u'say', u'sack', u'minist']
[u'borneo', u'chameleon', u'snake', u'surpris', u'scientist']
[u'brack', u'defend', u'tobacco', u'invest']
[u'brazil', u'wari', u'lose', u'black', u'star']
[u'brimbl', u'inquest', u'hear', u'cruis', u'passeng']
[u'britain', u'refus', u'lobbi', u'hick', u'releas']
[u'brough', u'reject', u'indigen', u'packag', u'chang']
[u'buckley', u'wari', u'tenaci', u'tiger']
[u'burni', u'airport', u'upgrad', u'proceed']
[u'burn', u'rub', u'knight', u'clash']
[u'drive', u'instructor', u'licens']
[u'cane', u'grower', u'resign', u'smut', u'infect']
[u'cathol', u'leader', u'meet', u'slave', u'trade']
[u'central', u'gippsland', u'head', u'parch', u'june']
[u'centrelink', u'offer', u'incom', u'support', u'assur']
[u'chamber', u'strip', u'european', u'metr', u'titl']
[u'chicken', u'industri', u'concern', u'hormon', u'myth']
[u'china', u'execut', u'anti', u'drug']
[u'citrus', u'grower', u'consid', u'frost', u'impact']
[u'closer']
[u'closer']
[u'closer']
[u'coffe', u'drinker', u'lower', u'diabet', u'risk', u'say', u'studi']
[u'cold', u'snap', u'hurt', u'avocado', u'grower']
[u'commission', u'move', u'small', u'busi']
[u'concern', u'govt', u'poki', u'stanc']
[u'confid', u'spain', u'send', u'franc', u'home']
[u'council', u'happi', u'hospit', u'communiti', u'park', u'decis']
[u'councillor', u'warn', u'endors', u'saleyard', u'report']
[u'council', u'seek', u'court', u'permiss', u'sell', u'half']
[u'court', u'reject', u'winni', u'pooh']
[u'curti', u'victori', u'hold', u'soggi', u'avenel']
[u'cyclon', u'larri', u'victim', u'settl', u'insur', u'claim']
[u'daintre', u'develop', u'anger', u'landown']
[u'dairi', u'farm', u'botul', u'outbreak', u'confirm']
[u'deco', u'miss', u'england', u'game', u'card', u'appeal', u'fail']
[u'despair', u'soccer', u'fan', u'australian', u'defeat']
[u'seek', u'indigen', u'packag']
[u'dog', u'itali', u'deserv']
[u'dont', u'talk', u'lethal']
[u'doubt', u'remain', u'highway', u'fund']
[u'doubt', u'rais', u'king', u'island', u'water', u'test']
[u'dozen', u'kill', u'southern', u'afghan', u'violenc']
[u'congo', u'militia', u'free', u'peacekeep']
[u'drink', u'driver', u'hit', u'polic']
[u'drink', u'rise', u'arrest', u'attack', u'guard']
[u'dynamit', u'explos', u'kill', u'china']
[u'east', u'timor', u'deploy', u'solid', u'nelson']
[u'elizabeth', u'tech', u'colleg', u'open']
[u'ethiopian', u'militari', u'kill', u'rebel']
[u'excis', u'plan', u'near']
[u'offici', u'condemn', u'intellig', u'handl']
[u'expert', u'erad']
[u'wallabi', u'walker', u'bind', u'franc']
[u'fan', u'come', u'grip', u'socceroo', u'loss']
[u'farmer', u'odd', u'popul', u'claim']
[u'fear', u'clash', u'alkatiri', u'support', u'head', u'dili']
[u'fernleigh', u'track', u'risk', u'warn']
[u'gut', u'glenray', u'industri', u'build']
[u'fishermen', u'escap', u'detent', u'centr']
[u'fitzgibbon', u'thompson', u'sign']
[u'fund', u'alloc', u'mackay', u'east', u'west', u'connector', u'road']
[u'glori', u'player', u'head', u'oversea']
[u'gold', u'coast', u'council', u'want', u'nation', u'standard']
[u'gold', u'coast', u'face', u'court', u'death', u'wife']
[u'gordon', u'estat', u'move', u'prompt', u'racism', u'claim']
[u'govt', u'ask', u'domest', u'violenc', u'centr']
[u'govt', u'consid', u'clear', u'beaconsfield', u'debt']
[u'govt', u'restrict', u'monkey', u'dolphin', u'tour']
[u'govt', u'call', u'year', u'outback']
[u'greek', u'pair', u'drop', u'drug', u'appeal']
[u'gusmao', u'appoint', u'timor', u'prime', u'minist']
[u'hawk', u'youngster', u'name', u'rise', u'star']
[u'head', u'crash', u'block', u'pacif', u'highway']
[u'health', u'servic', u'join', u'fight', u'indigen']
[u'hick', u'father', u'fight', u'despit', u'decis']
[u'hick', u'lawyer', u'mull', u'approach']
[u'hodg', u'rule', u'origin']
[u'home', u'detent', u'scheme', u'review']
[u'hong', u'kong', u'journalist', u'slam', u'china', u'plan']
[u'hotel', u'anxious', u'smoke', u'impact']
[u'howard', u'yudhoyono', u'closer', u'secur', u'agreement']
[u'hundr', u'celebr', u'alkatiri', u'resign']
[u'indigen', u'armi', u'regiment', u'honour']
[u'indonesia', u'ignor', u'bashir', u'demand', u'howard']
[u'inland', u'gun', u'countri', u'week']
[u'investig', u'continu', u'telstra', u'poison']
[u'isra', u'armi', u'prepar', u'attack', u'kidnap']
[u'italian', u'reject', u'constitut', u'overhaul']
[u'kambah', u'communiti', u'fight', u'school', u'closur']
[u'kangaroo', u'cat', u'microchip']
[u'kangaroo', u'pair', u'escap', u'suspens']
[u'korean', u'woman', u'miss', u'central', u'australia']
[u'kuznetsova', u'enjoy', u'birthday']
[u'lake', u'macquari', u'ponder', u'transport', u'option']
[u'lara', u'lament', u'lack', u'firepow']
[u'firm', u'discuss', u'amcor', u'class', u'action']
[u'lawyer', u'warn', u'remov', u'customari']
[u'legendari', u'music', u'produc', u'mardin', u'die']
[u'leviathan', u'appli', u'explor', u'licenc']
[u'appear', u'court', u'child', u'murder']
[u'charg', u'shop', u'centr', u'murder']
[u'charg', u'child', u'murder']
[u'charg', u'assault', u'ablett', u'refus', u'bail']
[u'face', u'court', u'shop', u'centr', u'murder']
[u'manildra', u'score', u'govt', u'ethanol', u'contract']
[u'mayor', u'reject', u'crazi', u'boundari', u'chang', u'propos']
[u'menegazzo', u'crash', u'link', u'storm']
[u'menegazzo', u'plane', u'surround', u'storm', u'crash']
[u'face', u'court', u'polic', u'assault']
[u'mildura', u'polic', u'seek', u'inform', u'miss', u'woman']
[u'milk', u'processor', u'explor', u'merger', u'option']
[u'blaze', u'damag', u'think']
[u'mine', u'giant', u'forg', u'takeov']
[u'moondarra', u'bushfir', u'review']
[u'mother', u'tell', u'brimbl', u'inquest', u'drink', u'spike', u'fear']
[u'mother', u'tell', u'murder', u'trial', u'toddler', u'show', u'sign']
[u'motion', u'presid', u'fail', u'taiwan']
[u'say', u'bunburi', u'plan', u'spark', u'communiti', u'anger']
[u'mum', u'protest', u'matern', u'servic']
[u'mundin', u'warn', u'higher', u'indigen', u'imprison']
[u'murdoch', u'appeal', u'date']
[u'murray', u'concern', u'gasnier', u'switch']
[u'nelson', u'inspect', u'fighter', u'purchas']
[u'nelson', u'seek', u'fighter', u'guarante']
[u'spider', u'speci', u'water']
[u'announc', u'meet', u'resolv', u'quarantin']
[u'bail', u'charg', u'ablett', u'assault']
[u'feral', u'pig', u'go', u'market']
[u'tobacco', u'share']
[u'announc', u'detail', u'child', u'abus', u'inquiri']
[u'clarifi', u'sentenc', u'violent', u'crime']
[u'nurs', u'urg', u'head', u'north']
[u'olmert', u'refus', u'kidnapp', u'demand']
[u'olmert', u'threaten', u'militari', u'action', u'soldier']
[u'origin', u'duti', u'dent', u'bronco', u'line']
[u'orthopaed', u'surgeri', u'wait', u'list', u'target']
[u'palestinian', u'polici', u'deal', u'implicit', u'accept', u'israel']
[u'penalti', u'goal', u'end', u'aust', u'world', u'dream']
[u'peni', u'obsess', u'convict', u'partner', u'murder']
[u'perkin', u'urg', u'perman', u'school', u'sport', u'fund']
[u'perth', u'glori', u'player', u'head', u'oversea']
[u'perth', u'kid', u'catch', u'world', u'fever']
[u'southern', u'china', u'meet', u'shipment']
[u'wont', u'expend', u'polit', u'capit', u'media', u'chang']
[u'polic', u'help', u'vandal', u'attack']
[u'polic', u'investig', u'richmond', u'death']
[u'polic', u'issu', u'warrant', u'murder', u'woman']
[u'polic', u'probe', u'fatal', u'princ', u'smash']
[u'polic', u'search', u'clue', u'miss', u'tourist']
[u'polic', u'seek', u'hotel', u'assault', u'wit']
[u'polic', u'closer', u'nightclub', u'patron']
[u'polic', u'urg', u'caution', u'road']
[u'probe', u'continu', u'england', u'crash']
[u'profit', u'blog', u'start', u'flow']
[u'properti', u'hike', u'slow', u'economi']
[u'protest', u'rule', u'illeg', u'australia', u'post', u'worker']
[u'public', u'chanc', u'petrol', u'price', u'view']
[u'ramo', u'horta', u'unawar', u'alkatiri', u'warrant', u'claim']
[u'light', u'camera', u'gambier']
[u'rental', u'shortag', u'forc', u'peopl', u'crisi']
[u'residenti', u'develop', u'inquiri', u'begin']
[u'right', u'bodi', u'monitor', u'indigen', u'packag']
[u'risdon', u'rehabilit', u'program', u'understaf']
[u'rplb', u'chief', u'air', u'levi', u'concern']
[u'rural', u'doctor', u'group', u'prais', u'liber', u'health', u'plan']
[u'rural', u'land', u'protect', u'board', u'worri']
[u'russian', u'compani', u'work', u'iran']
[u'saddam', u'genocid', u'trial', u'date']
[u'saff', u'rejoin', u'nation', u'farmer', u'feder']
[u'propos', u'higher', u'fin', u'unsaf', u'workplac']
[u'schwarzer', u'target', u'world']
[u'scientist', u'hope', u'uncov', u'fossil']
[u'cliff', u'bridg', u'engin', u'award']
[u'secret', u'servic', u'collud', u'rendit']
[u'secur', u'camera', u'plan', u'wollongong', u'citi', u'centr']
[u'shire', u'confid', u'despit', u'croesus', u'administr']
[u'socceroo', u'foul', u'penalti']
[u'socceroo', u'world', u'clash', u'grip', u'griffith']
[u'solanki', u'call', u'england', u'squad']
[u'solicitor', u'murder', u'trial', u'fail', u'reach', u'verdict']
[u'state', u'govt', u'reject', u'mudge', u'abattoir', u'offer']
[u'steal', u'solicitor', u'jail', u'year']
[u'georg', u'resid', u'face', u'water', u'hike']
[u'structur', u'murray', u'donat', u'scheme', u'develop']
[u'studi', u'find', u'dingo', u'aid', u'site', u'recoveri']
[u'studi', u'focus', u'muslim', u'youth']
[u'studi', u'look', u'rail', u'servic', u'north', u'maroochi']
[u'govt', u'consid', u'drastic', u'step', u'curb', u'road', u'toll']
[u'team', u'learn', u'tour', u'fate', u'weekend']
[u'teen', u'face', u'court', u'theft']
[u'test', u'clear', u'king', u'water', u'suppli']
[u'thorn', u'return', u'black', u'squad']
[u'time', u'boundari', u'decis', u'unclear']
[u'toilet', u'murder', u'shock', u'perth', u'communiti']
[u'toohey', u'driver', u'disput']
[u'tourism', u'offic', u'posit', u'hang', u'balanc']
[u'town', u'beaconsfield', u'miss', u'tourism', u'boom']
[u'trade', u'talk', u'prompt', u'europ', u'sheepmeat']
[u'tripl', u'transplant', u'doesnt', u'faze', u'cowra', u'woman']
[u'soldier', u'kill', u'afghanistan']
[u'seek', u'hick', u'releas']
[u'union', u'campaign', u'power', u'wag']
[u'union', u'seek', u'meet', u'onesteel', u'smorgon', u'merger']
[u'union', u'discuss', u'mine', u'issu', u'break', u'hill']
[u'stock', u'defi', u'rate', u'jitter']
[u'victorian', u'govern', u'honour', u'ogilvi']
[u'view', u'mountain', u'lose']
[u'vinokourov', u'team', u'ax', u'tour']
[u'wage', u'rise', u'push', u'employ', u'awa']
[u'walgett', u'collarenebri', u'fluorid', u'water']
[u'nation', u'criticis', u'fuel']
[u'word', u'erupt', u'doctor', u'number']
[u'wesser', u'happi', u'maroon']
[u'wild', u'pig', u'spread', u'sugar', u'cane', u'diseas', u'say']
[u'wilhelm', u'tell', u'brimbl', u'overdos', u'passeng']
[u'winter', u'increas', u'demand', u'health']
[u'workshop', u'aim', u'curb', u'child', u'alcohol', u'abus']
[u'abbott', u'reject', u'push', u'onlin', u'medicin']
[u'drive', u'instructor', u'criticis']
[u'adelaid', u'passeng', u'move', u'intern']
[u'adelaid', u'bassett', u'limp', u'train']
[u'deni', u'talk', u'player', u'strike', u'wag']
[u'aker', u'accept', u'fine']
[u'alleg', u'nake', u'photo', u'stalker', u'grant', u'bail']
[u'head', u'kimberley', u'indigen', u'issu']
[u'anti', u'alkatiri', u'protest', u'leav', u'dili']
[u'risk', u'gambl', u'rise']
[u'aussi', u'conting', u'slash', u'ahead', u'tour']
[u'aust', u'pledg', u'support', u'north', u'korea', u'issu']
[u'australian', u'sailor', u'rescu', u'coral']
[u'aust', u'sailor', u'rescu', u'coral']
[u'open']
[u'baggi', u'green', u'sale']
[u'ballarat', u'look', u'form', u'ratepay', u'group']
[u'ballina', u'byron', u'welcom', u'rat', u'rise', u'approv']
[u'basebal', u'fanat', u'passion', u'support']
[u'beaconsfield', u'gold', u'partner', u'plan']
[u'beaconsfield', u'reopen']
[u'beazley', u'applaud', u'patriot', u'protest']
[u'builder', u'drag', u'market']
[u'busi', u'lead', u'show', u'law', u'extrem', u'andrew']
[u'crowd', u'gather', u'protest', u'work', u'chang']
[u'bing', u'drink', u'report', u'prompt', u'warn', u'worker']
[u'blair', u'signal', u'support', u'nuclear', u'plant']
[u'busi', u'survey', u'find', u'hire', u'confid']
[u'caution', u'cassowari', u'death']
[u'chang', u'draft', u'moyn', u'budget']
[u'riverland', u'emerg', u'hous']
[u'call', u'inquiri', u'bakewel', u'bridg']
[u'cane', u'toad', u'close', u'border']
[u'caution', u'urg', u'ahead', u'cracker', u'night']
[u'china', u'urg', u'calm', u'north', u'korea', u'situat']
[u'china', u'warn', u'missil', u'intervent']
[u'civoniceva', u'join', u'maroon', u'melbourn']
[u'closer']
[u'closer']
[u'closer']
[u'cole', u'inquiri', u'releas', u'kickback', u'document']
[u'communiti', u'concern', u'blood', u'donat', u'servic']
[u'communiti', u'readi', u'tackl', u'indigen', u'child']
[u'compani', u'offer', u'medico', u'eas', u'doctor']
[u'softwar', u'credit', u'secur', u'rat', u'rise']
[u'consum', u'chief', u'say', u'fine', u'send', u'warn', u'busi']
[u'copper', u'gold', u'move', u'closer', u'realiti']
[u'council', u'abandon', u'tourism', u'offic', u'posit']
[u'council', u'green', u'light', u'extens']
[u'councillor', u'decid', u'museum', u'barrack', u'issu']
[u'councillor', u'worri', u'govt', u'encroach', u'council']
[u'council', u'restructur', u'plan', u'fail', u'outdoor']
[u'council', u'seek', u'latest', u'hinz', u'work']
[u'council', u'lament', u'rate', u'rise', u'refus']
[u'council', u'share', u'roadwork', u'fund']
[u'council', u'welcom', u'govt', u'approv', u'rate', u'rise']
[u'court', u'reserv', u'bodi', u'cook', u'case', u'decis']
[u'cowboy', u'reshuffl', u'announc', u'ahead', u'rabbitoh']
[u'crime', u'drop']
[u'cruis', u'worker', u'deni', u'avoid', u'polic']
[u'debnam', u'stoner', u'tour', u'break', u'hill']
[u'denmark', u'council', u'vote', u'rezon', u'communiti', u'park']
[u'dili', u'descend', u'anarchi']
[u'disgrac', u'clone', u'expert', u'continu', u'work']
[u'docker', u'chang', u'sydney', u'clash']
[u'hendra', u'virus', u'respons']
[u'drought', u'extend', u'western', u'farmer']
[u'drought', u'see', u'cattl', u'giant', u'herd', u'number']
[u'drought', u'see', u'machineri', u'firm', u'staff']
[u'dungog', u'fail', u'rate', u'rise']
[u'move', u'intens', u'care']
[u'effort', u'save', u'tree', u'knowledg', u'fail']
[u'empir', u'theatr', u'mark', u'anniversari']
[u'expert', u'sceptic', u'australian', u'indonesian', u'patrol']
[u'premier', u'lead', u'committe', u'overhaul', u'public']
[u'farmer', u'extend', u'drought']
[u'farmer', u'highlight', u'bushfir', u'loss']
[u'farm', u'lobbi', u'group', u'concern', u'biosecur', u'law']
[u'fear', u'smoke', u'hotel', u'line']
[u'feder', u'govt', u'urg', u'continu', u'north', u'west', u'drought']
[u'maroon', u'miss', u'train']
[u'genet', u'like', u'myopia', u'caus', u'report']
[u'golf', u'club', u'say', u'smoke', u'law', u'nuisanc']
[u'govt', u'accus', u'emerg', u'servic', u'budget', u'blowout']
[u'govt', u'deni', u'beaconsfield', u'loan', u'favour', u'bank']
[u'govt', u'tighten', u'parol', u'condit', u'interst']
[u'govt', u'urg', u'curb', u'sydney', u'sewag', u'dump']
[u'govt', u'urg', u'extend', u'water', u'tank', u'subsidi']
[u'govt', u'urg', u'stem', u'flow', u'region', u'rat', u'dollar']
[u'govt', u'urg', u'chang', u'habit', u'fight', u'global']
[u'great', u'britain', u'destroy', u'kiwi', u'london']
[u'greek', u'student', u'clash', u'polic', u'reform']
[u'green', u'welcom', u'renew', u'energi', u'target']
[u'gusmao', u'threaten', u'earli', u'elect']
[u'hama', u'leader', u'threaten', u'soldier', u'abduct']
[u'heat', u'unstabl', u'track', u'blame', u'derail']
[u'hope', u'petit', u'forc', u'rethink', u'school']
[u'hop', u'govt', u'rethink', u'club', u'smoke']
[u'hornbi', u'throw', u'scare', u'blue', u'camp']
[u'hotel', u'revamp', u'begin', u'year']
[u'howard', u'say', u'protest', u'threaten', u'resourc', u'trade']
[u'hunter', u'cattl', u'road']
[u'indigen', u'elder', u'committe', u'consult']
[u'indigen', u'involv', u'crucial', u'solv', u'problem']
[u'indigen', u'traine', u'join', u'urban', u'renew', u'project', u'team']
[u'intervent', u'doesnt', u'reduc', u'asthma', u'onset', u'studi']
[u'protest', u'street']
[u'irrig', u'attack', u'rat', u'structur']
[u'israel', u'begin', u'gaza', u'incurs']
[u'isra', u'forc', u'enter', u'gaza', u'strip']
[u'isra', u'raid', u'gaza', u'crime', u'human', u'abba']
[u'israel', u'paus', u'gaza', u'incurs']
[u'john', u'gimmick', u'need', u'cricket', u'australia']
[u'john', u'play', u'cricket']
[u'john', u'hand', u'cricket']
[u'judd', u'eagl', u'return']
[u'lack', u'flexibl', u'work', u'hit', u'jobseek', u'mental']
[u'larger', u'compani', u'prefer', u'light', u'law']
[u'lawyer', u'terror', u'suspect', u'refus', u'secur', u'check']
[u'lengthi', u'land', u'right', u'claim', u'end', u'island', u'ceremoni']
[u'major', u'tsunami', u'outstand']
[u'major', u'worker', u'lack', u'info', u'survey']
[u'face', u'court', u'rape']
[u'kill', u'alleg']
[u'kill', u'snowi', u'mountain', u'road', u'crash']
[u'shoot', u'melbourn', u'overnight']
[u'marsupi', u'help', u'save', u'southern', u'sandalwood']
[u'mauresmo', u'whitewash', u'croatian', u'qualifi']
[u'mayor', u'leav', u'highway', u'task', u'forc', u'execut']
[u'mcgowan', u'clarifi', u'wind', u'farm', u'comment']
[u'avoid', u'convict', u'shoot', u'fli', u'fox']
[u'take', u'belong', u'cabin', u'brimbl', u'death']
[u'mexican', u'serial', u'killer', u'execut', u'texa']
[u'michael', u'jackson', u'move', u'europ', u'resum', u'career']
[u'miller', u'baggi', u'green', u'sell', u'auction']
[u'minist', u'confid', u'local', u'govt', u'food', u'label']
[u'minist', u'defend', u'rise']
[u'minist', u'green', u'light', u'higher', u'rat']
[u'minist', u'green', u'light', u'riverina', u'rate', u'rise']
[u'minist', u'question', u'school', u'closur']
[u'mooney', u'make', u'secur', u'alumina', u'refineri']
[u'detect', u'arriv', u'mutijulu']
[u'mount', u'gambier', u'reject', u'countri', u'health', u'board', u'locat']
[u'accus', u'heckl', u'misrepres']
[u'disgust', u'drunken', u'abus', u'parliament']
[u'nelson', u'rule', u'emptiv', u'strike', u'north', u'korea']
[u'nesta', u'high', u'doubt', u'ukrain', u'match']
[u'technolog', u'mine', u'leas', u'life']
[u'threaten', u'challeng', u'hardi', u'rule']
[u'feral', u'export', u'market', u'dri']
[u'govt', u'seek', u'resourc', u'process', u'illeg']
[u'indigen', u'health', u'servic', u'look', u'break', u'hill']
[u'polic', u'seek', u'colleagu', u'help', u'child']
[u'nuclear', u'flag', u'power', u'sourc', u'desalin']
[u'nuclear', u'particip', u'receiv', u'extra', u'health', u'care']
[u'nuclear', u'test', u'cancer', u'treatment', u'offer', u'long', u'overdu']
[u'nuclear', u'test', u'subject', u'free', u'cancer', u'treatment']
[u'number', u'assault', u'jump']
[u'nurs', u'question', u'health', u'cost', u'cut']
[u'opposit', u'fear', u'econom', u'impact', u'lose', u'region']
[u'opposit', u'rais', u'mine', u'sector', u'worri']
[u'origin', u'contact', u'energi', u'merger']
[u'pagan', u'say', u'carlton', u'miss', u'self', u'belief']
[u'palermo', u'link', u'bresciano']
[u'palmero', u'link', u'aussi', u'world', u'star', u'bresciano']
[u'passiv', u'smoke', u'dead', u'children', u'govt', u'report']
[u'patient', u'support', u'group', u'see', u'problem']
[u'perth', u'schoolgirl', u'murder', u'connect', u'bulger']
[u'plan', u'hatch', u'save', u'yangtz', u'dolphin']
[u'sign', u'deal', u'china']
[u'polic', u'investig', u'miss', u'parliament', u'antiqu']
[u'polic', u'post', u'expect', u'reduc', u'antisoci', u'behaviour']
[u'politician', u'leftist', u'leader', u'murder', u'philippin']
[u'pont', u'play', u'tiger']
[u'pont', u'trump', u'tendulkar', u'best', u'test', u'batsman']
[u'port', u'author', u'chairman', u'quit']
[u'prescript', u'approv', u'wast', u'doctor', u'time', u'say']
[u'pulp', u'backer', u'learn', u'inquiri']
[u'radic', u'facial', u'surgeri', u'declar', u'success']
[u'rain', u'bring', u'relief', u'farmer']
[u'rain', u'help', u'eas', u'water', u'restrict']
[u'rain', u'stop', u'play', u'england', u'lanka', u'dayer']
[u'ralli', u'open']
[u'rate', u'rise', u'didnt', u'deter', u'growth', u'say', u'westpac']
[u'rat', u'rise', u'alexand', u'shire']
[u'renmark', u'council', u'warn', u'futur', u'rate', u'rise']
[u'report', u'find', u'children', u'disadvantag']
[u'report', u'highlight', u'desir', u'chang', u'wheat']
[u'report', u'highlight', u'healthi', u'canberran']
[u'rescu', u'sailor', u'head', u'land']
[u'richo', u'chanc', u'pie']
[u'roadwork', u'breach', u'licenc', u'condit']
[u'roger', u'like', u'play']
[u'ronaldo', u'smile', u'put', u'record']
[u'rural', u'commod', u'downturn', u'see', u'busi', u'shed']
[u'safeti', u'fear', u'drive', u'worker', u'kogan', u'construct']
[u'opal', u'industri', u'eye', u'chines', u'market']
[u'school', u'usual', u'despit', u'teacher', u'head', u'protest']
[u'smart', u'card', u'access', u'govt', u'payment', u'atm']
[u'socceroo', u'squad', u'major', u'shake']
[u'south', u'sack', u'assist', u'coach', u'kitina']
[u'lanka', u'toss', u'england']
[u'tafe', u'join', u'forc', u'onesteel', u'compani']
[u'tamil', u'tiger', u'regret', u'gandhi', u'death']
[u'govt', u'consid', u'wipe', u'beaconsfield', u'debt']
[u'surfer', u'search', u'ultim', u'ride']
[u'tension', u'rise', u'timor', u'capit']
[u'terror', u'trial', u'delay']
[u'terror', u'suspect', u'lawyer', u'stand', u'firm', u'secur']
[u'thousand', u'expect', u'nation', u'union', u'ralli']
[u'thousand', u'join', u'ralli']
[u'thousand', u'protest', u'law']
[u'thousand', u'ralli', u'law']
[u'thousand', u'ralli', u'workplac', u'law']
[u'threat', u'opportun', u'see', u'agricultur']
[u'brazilian', u'player', u'treatment']
[u'time', u'final', u'world']
[u'townsvill', u'council', u'contribut', u'licens']
[u'truck', u'driver', u'jail', u'murder', u'girlfriend', u'lover']
[u'truss', u'commit', u'fight', u'mari', u'river']
[u'ugandan', u'rebel', u'leader', u'freedom', u'fighter']
[u'union', u'confid', u'support', u'despit', u'lack', u'rural']
[u'senat', u'flag', u'burn', u'fail']
[u'venus', u'spacecraft', u'spot', u'doubl', u'vortex']
[u'hoon', u'face', u'confisc']
[u'voronin', u'blow', u'ukrain']
[u'build', u'societi', u'merger', u'get', u'clear']
[u'wadey', u'exodus', u'continu', u'condit', u'improv']
[u'request', u'feder', u'fund', u'detain', u'illeg']
[u'wast', u'oppon', u'speak', u'environ', u'group']
[u'water', u'restrict', u'chang', u'afoot']
[u'welcom', u'natur', u'deal', u'china']
[u'wayward', u'deer', u'caus', u'chao']
[u'wetland', u'death', u'prompt', u'fenc', u'repair']
[u'wimbledon', u'launch', u'bet', u'probe']
[u'woman', u'cook', u'partner', u'bodi', u'appeal']
[u'worker', u'hear', u'concern']
[u'abolish', u'awa', u'wont', u'hurt', u'mine', u'sector', u'beazley']
[u'action', u'group', u'score', u'saleyard']
[u'report', u'bomb', u'blast', u'near', u'aust', u'troop', u'iraq']
[u'indonesian', u'polic', u'crack', u'major', u'drug', u'ring']
[u'agreement', u'reach', u'prison', u'exchang', u'deal']
[u'agreement', u'reach', u'prison', u'swap', u'deal']
[u'forc', u'chief', u'prais', u'townsvill', u'base']
[u'alkatiri', u'support', u'head', u'dili']
[u'anglican', u'church', u'split', u'wont', u'affect', u'australia']
[u'australian', u'shoot', u'thailand']
[u'archbishop', u'sceptic', u'church', u'split', u'propos']
[u'arm', u'robberi', u'accus', u'face', u'charg']
[u'armidal', u'crack', u'park']
[u'artifici', u'wave', u'squeez', u'reserv']
[u'aust', u'shoot', u'thai', u'studi', u'tour']
[u'australian', u'offici', u'world', u'grade']
[u'abolit', u'crippl', u'resourc', u'boom', u'howard']
[u'award', u'replac', u'opera', u'hous', u'architect', u'spark']
[u'award', u'win', u'chees', u'factori', u'boost', u'product']
[u'bathurst', u'industri', u'relat', u'protest', u'attract']
[u'beatti', u'offer', u'cemeteri', u'assur', u'debat']
[u'beazley', u'take', u'campaign', u'region']
[u'bendigo', u'rubber', u'worker', u'face', u'uncertain', u'futur']
[u'admit', u'olymp', u'safeti', u'breach']
[u'predict', u'tough', u'year', u'iron']
[u'blackal', u'beef', u'properti', u'fetch', u'price']
[u'bluescop', u'ax', u'job']
[u'bluescop', u'worker', u'receiv', u'govt', u'assist']
[u'boat', u'mishap', u'see', u'passeng', u'throw', u'overboard']
[u'brimbl', u'inquest', u'wit', u'criticis', u'select']
[u'british', u'govt', u'opposit', u'face', u'elector', u'test']
[u'bronco', u'hang', u'hunt']
[u'bull', u'shark', u'warn', u'cairn']
[u'busi', u'suffer', u'condit', u'continu']
[u'cabin', u'breach', u'confound', u'cruis', u'secur']
[u'intervent', u'palestinian', u'minist']
[u'call', u'tafe', u'fund', u'skill', u'shortag']
[u'camel', u'ride', u'monopoli', u'spark', u'price', u'rise', u'concern']
[u'canberra', u'airport', u'say', u'entir', u'blame']
[u'develop', u'expect', u'worsen', u'park', u'woe']
[u'chappel', u'pressur', u'india', u'stutter']
[u'child', u'abus', u'need', u'nation', u'solut']
[u'closer']
[u'closer']
[u'closer']
[u'concern', u'intellig', u'unit', u'plan']
[u'concret', u'sleeper', u'decis', u'threaten', u'timber', u'job']
[u'confer', u'consid', u'cyber', u'bulli']
[u'connolli', u'eye', u'teen', u'larkham', u'successor']
[u'coonan', u'reject', u'murdoch', u'media', u'polici', u'critic']
[u'corbi', u'bali', u'group', u'guarante', u'transfer']
[u'costello', u'play', u'vail', u'portfolio', u'specul']
[u'council', u'await', u'contract', u'sign', u'offer']
[u'council', u'choos']
[u'councillor', u'green', u'light', u'rat', u'rise']
[u'council', u'maintain', u'support', u'bridg', u'western', u'option']
[u'council', u'offer', u'help', u'hand', u'ymca']
[u'council', u'outlin', u'budget', u'spend']
[u'cruis', u'industri', u'urg', u'clean']
[u'dili', u'protest', u'shout', u'long', u'live', u'alkatiri']
[u'distract', u'blame', u'taliban', u'resurg']
[u'doctor', u'strike', u'medic', u'centr', u'arson', u'attempt']
[u'driver', u'warn', u'gateway', u'truck']
[u'drought', u'relief', u'cut', u'creat', u'financi', u'crisi']
[u'drug', u'bust', u'wasp', u'time', u'away']
[u'drum', u'debut', u'docker']
[u'condit', u'threaten', u'local', u'economi']
[u'dutch', u'coalit', u'shaki', u'citizenship']
[u'east', u'timor', u'presid', u'appeal', u'calm']
[u'extens', u'consid', u'repriev', u'small', u'town']
[u'emerson', u'kaka', u'worri', u'brazil']
[u'expert', u'warn', u'increas']
[u'farm', u'practic', u'blame', u'loom', u'mice', u'plagu']
[u'fear', u'fund', u'cut', u'affect', u'safeti']
[u'feder', u'parliament', u'extens', u'consid']
[u'flintoff', u'doubt', u'pakistan', u'test']
[u'footbal', u'author', u'racist', u'spectat']
[u'newcom', u'springbok', u'nation', u'squad']
[u'fund', u'lift', u'paraglid', u'club']
[u'gambl', u'rise']
[u'gardin', u'return', u'eagl']
[u'gardin', u'return', u'west', u'coast']
[u'gilgandra', u'music', u'plan', u'hit', u'right', u'note', u'council']
[u'giteau', u'aim', u'wallabi', u'start', u'posit']
[u'glen', u'eden', u'childcar', u'centr', u'shut', u'door']
[u'govt', u'ask', u'sight', u'greater', u'forest']
[u'govt', u'bail', u'bluescop', u'worker']
[u'govt', u'urg', u'trial', u'enterpris', u'zone']
[u'grain', u'council', u'agenda', u'baffl', u'presid']
[u'grazier', u'welcom', u'west', u'drought', u'relief']
[u'green', u'light', u'give', u'abalon', u'farm']
[u'green', u'king', u'fear']
[u'guyra', u'council', u'put', u'bridg', u'replac', u'scheme']
[u'hama', u'warn', u'open', u'round']
[u'harmer', u'rule', u'contest', u'elect']
[u'health', u'profession', u'urg', u'hospit', u'rat']
[u'health', u'servic', u'offer', u'restructur', u'assur']
[u'heritag', u'council', u'offer', u'hotel', u'revamp', u'assur']
[u'hewitt']
[u'hewitt', u'cruis', u'scud', u'bow']
[u'high', u'cost', u'take', u'focus', u'burni', u'camera', u'plan']
[u'highway', u'upgrad', u'larri', u'aftermath']
[u'home', u'detent', u'woman', u'help', u'fake', u'husband']
[u'hotlin', u'help', u'cope', u'depress']
[u'hous', u'shortag', u'see', u'cobar', u'miss']
[u'howard', u'back', u'vail', u'perform']
[u'hundr', u'gather', u'wagga', u'protest', u'law']
[u'indigen', u'health', u'bodi', u'back', u'inquiri', u'close']
[u'indonesia', u'aust', u'discuss', u'prison', u'exchang']
[u'indonesian', u'prison', u'swap', u'deal', u'retrospect']
[u'isra', u'troop', u'arrest', u'hama']
[u'itali', u'bargnani', u'draft', u'pick']
[u'itali', u'soccer', u'trial', u'abrupt', u'adjourn']
[u'itali', u'tribun', u'open', u'match', u'fix', u'trial']
[u'jam', u'hardi', u'win', u'deduct', u'request']
[u'japan', u'chang', u'guard', u'zico', u'dream', u'fail']
[u'fear', u'ahead', u'maker', u'announc']
[u'vacanc', u'rise', u'percent']
[u'trobe', u'ax', u'mildura', u'year', u'scienc']
[u'council', u'welcom', u'prison', u'swap', u'plan']
[u'local', u'worker', u'protest', u'chang']
[u'lodhi', u'escap', u'life', u'sentenc']
[u'charg', u'murder', u'bodi', u'discoveri']
[u'charg', u'murder', u'miss', u'mildura', u'woman']
[u'face', u'court', u'cannabi', u'charg']
[u'refus', u'bail', u'alleg', u'cronulla', u'repris']
[u'maroon', u'hope', u'shake', u'virus', u'origin']
[u'meet', u'discuss', u'dairi', u'futur']
[u'metal', u'price', u'push', u'market', u'higher']
[u'milit', u'taunt', u'israel', u'kidnap', u'soldier']
[u'millar', u'prim', u'yellow', u'jersey']
[u'process', u'plant', u'gear', u'product']
[u'safeti', u'overhaul', u'aim', u'consist']
[u'minist', u'review', u'extend', u'break', u'year']
[u'miss', u'isra', u'settler', u'kill', u'report']
[u'mix', u'lobster', u'season', u'draw']
[u'mokbel', u'brother', u'court', u'kill', u'threat']
[u'accus', u'govt', u'back', u'indigen', u'violenc']
[u'say', u'trade', u'stay', u'nation']
[u'murder', u'schoolgirl', u'bodi', u'belgium']
[u'murray', u'drop', u'waist', u'deep', u'level']
[u'mysteri', u'ape', u'chubbi', u'chimp', u'zoologist']
[u'natoli', u'say', u'council', u'deliv', u'respons', u'budget']
[u'nelson', u'slam', u'boe', u'delay']
[u'nesta', u'rule', u'ukrain', u'quarter', u'final']
[u'nevill', u'train', u'england']
[u'forb', u'saleyard', u'prove', u'tourist']
[u'newley', u'focus', u'croc', u'draft', u'withdraw']
[u'pool', u'promis', u'better', u'water', u'safeti']
[u'dead', u'rain', u'caus', u'flood', u'eastern']
[u'nitschk', u'euthanasia', u'display', u'refus']
[u'answer', u'ceo', u'departur', u'great', u'southern']
[u'aust', u'troop', u'injur', u'iraq', u'bomb', u'attack']
[u'nurs', u'home', u'staff']
[u'cabbi', u'longer', u'bind', u'offer', u'credit']
[u'firework', u'test']
[u'ask', u'brough', u'listen', u'indigen', u'peopl']
[u'nurs', u'home', u'get', u'clear', u'virus', u'outbreak']
[u'origin', u'field', u'develop', u'ahead']
[u'origin', u'star', u'encourag', u'indigen', u'youth', u'stay']
[u'palestinian', u'leader', u'appeal']
[u'palestinian', u'prison', u'exchang', u'israel']
[u'parliament', u'ensur', u'mullighan', u'inquiri', u'evid', u'wont']
[u'perth', u'murder', u'connect', u'bulger', u'ellison']
[u'scaremong', u'polici']
[u'polic', u'anxious', u'lockup', u'delay']
[u'polic', u'info', u'refut', u'bulger', u'link', u'rumour', u'court', u'tell']
[u'polic', u'investig', u'slaveri', u'case', u'australia']
[u'policewoman', u'recov', u'bash']
[u'polic', u'wont', u'strike', u'station', u'fund']
[u'poor', u'pay', u'philippin', u'polic', u'offic', u'pawn', u'gun']
[u'poor', u'weather', u'forc', u'cano', u'race', u'chang']
[u'prison', u'deal', u'help', u'australian']
[u'prison', u'deal', u'help', u'bali']
[u'prison', u'midopen']
[u'public', u'servant', u'claim', u'mari', u'river', u'critic']
[u'putin', u'order', u'forc', u'hunt', u'diplomat', u'killer']
[u'qanta', u'withdraw', u'boost', u'ticket', u'price']
[u'outback', u'attempt', u'draw', u'bigger', u'crowd']
[u'question', u'wisdom', u'bloodi', u'hell', u'tourism']
[u'woman', u'reach', u'half', u'solo', u'sail']
[u'radiat', u'exposur', u'find', u'disput']
[u'rain', u'enabl', u'farmer', u'finish', u'sow', u'crop']
[u'refuge', u'flee', u'latest', u'timor', u'violenc']
[u'renmark', u'arrest', u'drug', u'crop']
[u'report', u'near', u'collis', u'highlight']
[u'report', u'show', u'high', u'alcohol', u'consumpt']
[u'resid', u'consid', u'highway', u'consult', u'legal']
[u'resid', u'await', u'highway', u'rout', u'decis']
[u'retail', u'target', u'underag', u'smoke', u'studi']
[u'rodeo', u'mark', u'stock', u'rout', u'anniversari']
[u'rogu', u'deer', u'catch', u'corner', u'near', u'brisban']
[u'ruthless', u'feder', u'push', u'henman', u'closer', u'career']
[u'farm', u'test', u'posit', u'botul']
[u'health', u'get', u'chief']
[u'school', u'flasher', u'prompt', u'polic', u'appeal']
[u'search', u'resum', u'north', u'teen']
[u'sharapova', u'sweep', u'round']
[u'shire', u'chief', u'criticis', u'limit', u'park', u'rezon']
[u'shoalhaven', u'oper', u'home', u'tourism', u'gong']
[u'soft', u'intern', u'demand', u'blame', u'drop', u'milk']
[u'south', u'coast', u'attract', u'tourism', u'gong']
[u'south', u'east', u'child', u'abus', u'claim', u'investig']
[u'south', u'west', u'voter', u'face', u'elect']
[u'specul', u'mount', u'futur', u'vail']
[u'kilda', u'skipper', u'warn', u'player', u'strike', u'threat', u'real']
[u'strict', u'control', u'develop', u'move', u'machineri']
[u'submiss', u'look', u'retain', u'region', u'youth']
[u'coast', u'surfer', u'ride', u'wave', u'success']
[u'talk', u'hold', u'player', u'payment']
[u'talk', u'focus', u'improv', u'bush', u'health', u'servic']
[u'tare', u'council', u'pleas', u'rat', u'rise', u'approv']
[u'teen', u'safe', u'miss', u'bush']
[u'telstra', u'boss', u'take', u'blame', u'share', u'price', u'dive']
[u'telstra', u'rule', u'threaten', u'high', u'speed', u'broadband']
[u'thousand', u'gather', u'support', u'alkatiri']
[u'tiger', u'harri', u'head', u'waratah']
[u'townsvill', u'union', u'join', u'chang']
[u'transfer', u'prison', u'serv', u'minimum', u'term']
[u'korea', u'discuss', u'make', u'joint', u'olymp', u'team']
[u'ugandan', u'rebel', u'leader', u'deni', u'crime']
[u'umaga', u'sign', u'french']
[u'union', u'heart', u'turnout', u'protest']
[u'flood', u'claim', u'live']
[u'market', u'lift', u'reserv', u'discuss', u'rate', u'rise']
[u'viduka', u'hint', u'retir']
[u'volunt', u'ambul', u'servic']
[u'warn', u'signag', u'question', u'drown', u'inquest']
[u'upper', u'hous', u'reject', u'nuclear', u'power', u'uranium', u'mine']
[u'webb', u'look', u'open', u'titl']
[u'webck', u'back', u'maroon', u'forward']
[u'wife', u'help', u'fake', u'husband', u'death', u'protect', u'daughter']
[u'wind', u'energi', u'critic', u'betray', u'farm', u'sector']
[u'wind', u'farm', u'industri', u'fraud', u'mcgauran']
[u'worker', u'expect', u'feel', u'loss', u'workcov', u'offic']
[u'workshop', u'tackl', u'domest', u'violenc', u'abus', u'issu']
[u'yanyuwa', u'peopl', u'urg', u'seiz', u'econom', u'benefit']
[u'youth', u'feedback', u'prompt', u'advisori', u'board', u'develop']
[u'zidan', u'miss', u'train', u'play', u'brazil']
[u'dead', u'arrest', u'violenc', u'flare', u'indian']
[u'go', u'gascoyn', u'region', u'school']
[u'aborigin', u'elder', u'jail', u'abus', u'grand', u'daughter']
[u'aborigin', u'justic', u'group', u'say', u'prison']
[u'pilot', u'disput', u'crash', u'statist', u'find']
[u'probe', u'ballarat', u'skill', u'shortag']
[u'strike', u'kill', u'palestinian', u'milit']
[u'alkatiri', u'ignor', u'prosecutor', u'summon']
[u'alkatiri', u'court', u'squad', u'claim']
[u'alkatiri', u'urg', u'support', u'unit']
[u'amnesti', u'welcom', u'rule', u'militari', u'commiss']
[u'anti', u'australia', u'world', u'rant', u'reborn', u'ring', u'tone']
[u'arnold', u'back', u'neill', u'socceroo', u'captain']
[u'arnold', u'doesnt', u'want', u'socceroo']
[u'asbesto', u'diseas', u'support', u'group', u'back', u'hardi']
[u'risk', u'peopl', u'urg', u'shoot']
[u'aust', u'case', u'rise']
[u'vow', u'fight', u'kickback', u'lawsuit']
[u'penni', u'pickett', u'haunt', u'port']
[u'bank', u'offer', u'reward', u'raid', u'inform']
[u'bartlett', u'push', u'nation', u'school']
[u'beatti', u'welcom', u'cross', u'border', u'partnership']
[u'beckham', u'shrug', u'blatter', u'jibe']
[u'bird', u'nasa', u'flap']
[u'lade', u'hail', u'zarqawi', u'martyr']
[u'bomber', u'kangaroo']
[u'breakthrough', u'miss', u'antiqu']
[u'brimbl', u'voluntarili', u'take', u'drug', u'silvestri']
[u'brimbl', u'want', u'drug', u'inquest', u'tell']
[u'broom', u'camel', u'ride', u'contract', u'criticis']
[u'brown', u'continu', u'squash', u'squeez']
[u'bungl', u'sack', u'good', u'springborg']
[u'bush', u'give', u'koizumi', u'elvi', u'heavi', u'jukebox']
[u'elect', u'voter', u'urg', u'read', u'question']
[u'campasp', u'shire', u'support', u'push', u'western', u'bridg']
[u'blaze', u'forc', u'apart', u'evacu']
[u'charg', u'lay', u'ecstasi', u'haul']
[u'child', u'burn', u'hous']
[u'closer', u'news']
[u'closer', u'news']
[u'closer']
[u'cold', u'hamper', u'orchestra', u'region', u'tour']
[u'consolid', u'plan', u'see', u'foster', u'offload', u'wineri']
[u'coron', u'rule', u'korp', u'death', u'suicid']
[u'corpor', u'closur', u'creat', u'cdep', u'uncertainti']
[u'costello', u'back', u'hardi', u'rule']
[u'council', u'flag', u'reluct', u'chang', u'polici']
[u'council', u'happi', u'receiv', u'communiti', u'fund']
[u'council', u'question', u'mcgauran', u'wind', u'power', u'comment']
[u'council', u'reject', u'intern', u'audit', u'committe', u'plan']
[u'council', u'seek', u'communiti', u'input', u'moruya', u'structur']
[u'council', u'state', u'case', u'road', u'seal', u'fund']
[u'crash', u'report', u'urg', u'special', u'train']
[u'csiro', u'begin', u'instal', u'wind', u'turbin']
[u'custom', u'seiz', u'ecstasi']
[u'cyclist', u'face', u'court', u'cigarett', u'theft', u'charg']
[u'dajka', u'face', u'court', u'cigarett', u'theft', u'charg']
[u'drink', u'spiker', u'jail', u'year']
[u'drink', u'spiker', u'sentenc', u'year']
[u'drought', u'impact', u'sheep', u'number']
[u'vow', u'saddl']
[u'eagl', u'stick', u'worsfold']
[u'econom', u'forecast', u'criticis', u'livestock', u'price']
[u'extra', u'fund', u'victoria', u'hway', u'upgrad']
[u'fair', u'trade', u'minist', u'appal', u'caravan', u'park', u'slum']
[u'famili', u'protect', u'welfar', u'chang', u'say']
[u'famili', u'criticis', u'potenti', u'fine', u'olymp']
[u'famili', u'fight', u'releas', u'korp', u'video']
[u'farmer', u'anxious', u'follow', u'rain']
[u'farmer', u'offer', u'cash', u'protect', u'threaten', u'speci']
[u'farm', u'urg', u'join', u'rural', u'census']
[u'fate', u'wyndham', u'hospit', u'reveal']
[u'feder', u'fund', u'avail', u'solv', u'sewag', u'woe']
[u'fiji', u'plead', u'guilti', u'mutini', u'charg']
[u'destroy', u'premer']
[u'disrupt', u'carter', u'holt', u'harvey', u'fibreboard']
[u'foster', u'plan', u'spark', u'fear']
[u'frost', u'damag', u'push', u'avocado', u'cost']
[u'geldof', u'urg', u'help', u'africa']
[u'germani', u'draw', u'spirit', u'argentina']
[u'germani', u'ullrich', u'tour', u'franc']
[u'goldacr', u'close', u'arnaud', u'offic']
[u'govt', u'accus', u'delay', u'highfield', u'ambul']
[u'govt', u'deni', u'miscalcul', u'claim', u'rail', u'servic']
[u'govt', u'decid', u'merg', u'council', u'opposit']
[u'grampian', u'bushfir', u'appeal', u'draw', u'close']
[u'green', u'group', u'criticis', u'dept', u'environ']
[u'guantanamo', u'militari', u'commiss', u'illeg', u'suprem']
[u'gusmao', u'promis', u'probe', u'timor', u'crisi']
[u'guyra', u'shire', u'approv', u'health', u'servic']
[u'hall', u'back', u'roo', u'swan', u'cull']
[u'hamdan', u'open']
[u'hardi', u'fund', u'rule', u'contradictori', u'actu']
[u'health', u'dept', u'hospit', u'plan']
[u'hickey', u'outlin', u'reason', u'rate', u'rise', u'applic']
[u'hick', u'gitmo']
[u'hick', u'trial', u'howard']
[u'highway', u'fund', u'outlin']
[u'hindmarsh', u'shire', u'introduc', u'rate', u'rise']
[u'driver', u'appeal', u'compo']
[u'home', u'lend', u'increas']
[u'hornbi', u'prove', u'fit', u'origin']
[u'horticultur', u'group', u'lament', u'loss', u'scienc', u'cours']
[u'howard', u'back', u'trial', u'hick']
[u'iemma', u'defend', u'greenhous', u'gas', u'plan']
[u'iemma', u'send', u'govt', u'staffer', u'discuss', u'bourk', u'crime']
[u'indian', u'visit', u'farmer', u'suicid', u'belt', u'stem']
[u'indonesia', u'refus', u'merci', u'death', u'drug']
[u'industri', u'commiss', u'hear', u'union', u'concern']
[u'injun', u'saddl', u'rodeo', u'action']
[u'investig', u'head', u'site', u'fatal', u'road', u'crash']
[u'iran', u'request', u'clarif', u'nuclear', u'deal']
[u'israel', u'continu', u'gaza', u'strip', u'offens']
[u'israel', u'deni', u'bargain', u'soldier']
[u'israel', u'strike', u'palestinian', u'ministri', u'offic']
[u'jam', u'hardi', u'excus', u'costello']
[u'korp', u'death', u'suicid', u'coron']
[u'joint', u'korean', u'olymp', u'team', u'suffer', u'setback']
[u'kalgoorli', u'carnarvon', u'trial', u'pest', u'poison']
[u'kanaar', u'miss', u'month']
[u'katherin', u'school', u'celebr', u'anniversari']
[u'kewel', u'vital', u'campaign', u'arnold']
[u'knight', u'win', u'form']
[u'knight', u'lead', u'man', u'half', u'time']
[u'kuwaiti', u'await', u'poll', u'result']
[u'labor', u'urg', u'costello', u'interven', u'hardi', u'case']
[u'lampard', u'ankl', u'knock', u'put', u'scare', u'england', u'camp']
[u'liber', u'continu', u'push', u'better', u'south', u'east', u'road']
[u'librari', u'space', u'redesign', u'scrap']
[u'lonard', u'share', u'earli', u'lead', u'river', u'highland']
[u'magistr', u'refus', u'bail', u'murder', u'accus']
[u'mail', u'contractor', u'final', u'quit', u'mail']
[u'arrest', u'chines', u'student', u'murder']
[u'matthew', u'call', u'fatherson', u'overhaul']
[u'miner', u'reject', u'council', u'rate', u'figur']
[u'mine', u'compani', u'hop', u'rare', u'earth']
[u'minist', u'back', u'brown', u'appoint', u'safeti']
[u'say', u'coalit', u'save', u'singleton', u'hospit']
[u'tour', u'kimberley', u'region']
[u'mutitjulu', u'abus', u'task', u'forc', u'complet', u'interview']
[u'nation', u'fight', u'ax', u'rural', u'seat']
[u'begin', u'student']
[u'owner', u'cut', u'mobil', u'worker']
[u'ireland', u'face', u'chanc', u'peac']
[u'nitschk', u'challeng', u'euthanasia', u'advic']
[u'regret', u'militari', u'commiss', u'support', u'downer']
[u'opposit', u'gain', u'women', u'elect', u'kuwaiti']
[u'opposit', u'urg', u'better', u'south', u'coast', u'rail', u'servic']
[u'region', u'mossi', u'erad']
[u'palestinian', u'demand', u'israel', u'stop', u'gaza', u'raid']
[u'brickwork', u'close', u'plan', u'upgrad']
[u'picasso', u'exhibit', u'chart', u'lover', u'influenc']
[u'picasso', u'go', u'display', u'melbourn']
[u'order', u'report', u'shaw', u'investig']
[u'pilot', u'error', u'blame', u'airport', u'accid']
[u'pitchfork', u'wielder', u'jail', u'break']
[u'playboy', u'editor', u'centrefold', u'name', u'indec', u'case']
[u'player', u'welcom', u'deal']
[u'commit', u'hick', u'trial']
[u'urg', u'interven', u'drought', u'fund']
[u'polic', u'bust', u'complex', u'drug', u'ring']
[u'polic', u'expect', u'easi', u'transit', u'lockout']
[u'polic', u'investig', u'attempt', u'abduct', u'girl']
[u'polic', u'issu', u'hoon', u'warn']
[u'polic', u'probe', u'stab', u'assault']
[u'poll', u'show', u'isra', u'prefer', u'talk', u'captur']
[u'public', u'servic', u'associ', u'urg', u'region']
[u'push', u'continu', u'dubbo', u'technic', u'colleg']
[u'redistribut', u'cut', u'anderson', u'seat']
[u'regulatori', u'tribun', u'hold', u'hear', u'water']
[u'retir', u'wine', u'group', u'head', u'predict', u'industri']
[u'rice', u'market', u'regul', u'end']
[u'rise', u'benefit', u'food', u'crop', u'question']
[u'rock', u'lobster', u'fishermen', u'hang', u'pot']
[u'roo', u'fight', u'bomber']
[u'roo', u'roll']
[u'rugbi', u'kanaar', u'miss', u'month']
[u'runaway', u'boyfriend', u'guilti', u'deceiv', u'polic']
[u'runaway', u'fin', u'polic', u'hunt']
[u'rural', u'financi', u'counsel', u'servic', u'unit']
[u'servic', u'chang', u'caus', u'concern']
[u'seahors', u'powder', u'export', u'face', u'charg']
[u'second', u'nurs', u'school', u'minist']
[u'sharehold', u'support', u'dairi', u'group']
[u'share', u'market', u'shrug', u'rate', u'rise']
[u'sheep', u'chemic', u'declar', u'unsaf']
[u'shev', u'loom', u'itali', u'familiar', u'threat']
[u'site', u'juvenil', u'remand', u'centr', u'name']
[u'south', u'leagu', u'club', u'call', u'administr']
[u'special', u'olymp', u'offici', u'warn', u'phone', u'scam']
[u'spirit', u'sale', u'attract', u'intern']
[u'student', u'floral', u'tribut', u'murder', u'girl']
[u'student', u'win', u'theatr', u'award', u'refuge', u'theme', u'play']
[u'support', u'grow', u'stem', u'cell', u'research', u'survey']
[u'heritag', u'law', u'review']
[u'compani', u'paint', u'brighter', u'pictur']
[u'scallop', u'industri', u'test', u'self', u'regul']
[u'tourism', u'face', u'tough', u'time']
[u'cut', u'benefit', u'larger', u'famili']
[u'offic', u'focus', u'timber', u'plantat', u'record']
[u'thailand', u'pardon', u'aust', u'paedophil']
[u'thiev', u'snatch', u'litr', u'petrol']
[u'thiev', u'steel', u'petrol']
[u'dairi', u'compani', u'announc', u'milk', u'price', u'reduct']
[u'time', u'run', u'honeymoon']
[u'titan', u'snap', u'webster']
[u'tourism', u'oper', u'feel', u'impact', u'higher', u'petrol']
[u'town', u'vincent', u'resist', u'boundari', u'chang']
[u'tree', u'plan', u'leav', u'poplar', u'futur', u'doubt']
[u'trujillo', u'share', u'comment', u'upset', u'howard']
[u'year', u'jail', u'road', u'rage', u'stab']
[u'ullrich', u'basso', u'name', u'dope', u'probe', u'report']
[u'ullrich', u'basso', u'throw', u'tour']
[u'strength', u'knight', u'desper']
[u'union', u'seek', u'feder', u'assist', u'nurs', u'home']
[u'deal', u'hick', u'howard']
[u'vaughan', u'miss', u'ash']
[u'group', u'seek', u'action', u'feral', u'deer', u'number']
[u'viduka', u'go', u'boro']
[u'vino', u'team', u'get', u'tour', u'ahead']
[u'rais', u'childcar', u'cost', u'opposit']
[u'record', u'driest', u'june', u'record']
[u'warrnambool', u'drown', u'victim', u'famili', u'thank', u'rescuer']
[u'wast', u'manag', u'committe', u'end', u'south', u'west', u'public']
[u'water', u'resourc', u'plan', u'contributor', u'question', u'slow']
[u'welfar', u'group', u'criticis', u'cut']
[u'welfar', u'reform', u'bush', u'resid', u'acoss']
[u'west', u'coast', u'mayor', u'protest', u'power', u'station', u'closur']
[u'widow', u'speak', u'euthanasia', u'ralli']
[u'wilhelm', u'deni', u'give', u'brimbl', u'drug', u'inquest', u'tell']
[u'woman', u'jail', u'daughter', u'methodon', u'murder']
[u'workplac', u'drug', u'test', u'reliabl', u'professor']
[u'burglar', u'polic']
[u'green', u'seek', u'greenhous', u'target']
[u'airport', u'imag', u'need', u'makeov', u'wriedt']
[u'alic', u'polic', u'check', u'break', u'link']
[u'criticis', u'welfar', u'chang']
[u'amnesti', u'join', u'hick', u'releas', u'call']
[u'anti', u'monarchist', u'attack', u'tongan', u'king', u'home']
[u'applianc', u'rat', u'help', u'water']
[u'aquif', u'sydney', u'water', u'suppli']
[u'armstrong', u'settl', u'legal', u'disput']
[u'attack', u'soldier', u'jeopardi', u'haniyah']
[u'aussi', u'rider', u'davi', u'implic', u'dope', u'affair']
[u'aust', u'artefact', u'return', u'home']
[u'aust', u'popul', u'increas', u'immin', u'senat']
[u'australian', u'cyclist', u'davi', u'name', u'dope', u'scandal']
[u'aust', u'increas', u'swan']
[u'aust', u'benefit', u'french', u'nuclear', u'technolog']
[u'barr', u'reject', u'school', u'closur', u'audit']
[u'beatti', u'condemn', u'thai', u'pardon', u'paedophil']
[u'beatti', u'defend', u'chief', u'appoint']
[u'beatti', u'deni', u'water', u'rebat', u'chaotic']
[u'beazley', u'reaffirm', u'kyoto', u'intent']
[u'berlin', u'match', u'end', u'ugli', u'scene']
[u'bomb', u'kill', u'near', u'baghdad']
[u'bosnian', u'command', u'give', u'jail', u'term', u'crime']
[u'botham', u'back', u'captain', u'freddi', u'ash']
[u'bad', u'hurt', u'gold', u'coast', u'fall']
[u'rescu', u'hous']
[u'brazil', u'look', u'miss', u'spark', u'franc']
[u'brooklyn', u'museum', u'put', u'graffiti', u'display']
[u'bungendor', u'get', u'communiti', u'bank']
[u'cameroon', u'lose', u'doctor']
[u'captur', u'isra', u'soldier', u'aliv', u'palestinian', u'offici']
[u'career', u'best', u'taylor', u'india']
[u'cheltenham', u'woman', u'die', u'multi', u'accid']
[u'child', u'relat', u'barossa', u'death']
[u'china', u'open', u'world', u'highest', u'railway']
[u'china', u'presid', u'urg', u'corrupt', u'crackdown']
[u'civoniceva', u'suffer']
[u'closer']
[u'closer']
[u'cowboy', u'roll', u'rabbitoh', u'thriller']
[u'refere', u'best']
[u'cycl', u'australia', u'boss', u'say', u'dope', u'scandal']
[u'danger', u'driver', u'risk', u'confisc']
[u'darfur', u'crisi', u'world', u'worst', u'rudd']
[u'davidson', u'top', u'practic']
[u'demon', u'outclass', u'power']
[u'demon', u'saint', u'lead', u'half', u'time']
[u'devil', u'diseas', u'alter', u'ecolog']
[u'discov', u'properti', u'parliament']
[u'dope', u'scandal', u'rock', u'tour', u'franc']
[u'driver', u'face', u'random', u'drug', u'test']
[u'earli', u'goal', u'give', u'itali', u'half', u'time', u'lead']
[u'educ', u'name', u'territorian', u'year']
[u'eel', u'edg', u'raider']
[u'eel', u'rabbitoh', u'hold', u'half', u'time', u'advantag']
[u'egypt', u'send', u'mediat', u'gaza', u'raid', u'continu']
[u'elector', u'chang', u'repres', u'voter']
[u'england', u'face', u'scolari', u'jinx']
[u'timor', u'malnutrit', u'africa']
[u'timor', u'malnutrit', u'compar', u'africa']
[u'team', u'mat', u'wife', u'stand', u'testimoni']
[u'famili', u'miss', u'cut', u'opposit']
[u'famili', u'chang', u'alter', u'parent']
[u'feder', u'steam']
[u'fine', u'increas', u'unnecessari', u'clark']
[u'flight', u'delay', u'bulldog', u'bomb', u'joke']
[u'fourth', u'charg', u'ecstasi', u'bust']
[u'deal', u'secur', u'region', u'power', u'suppli']
[u'gaza', u'open']
[u'germani', u'argentina', u'extra', u'time']
[u'germani', u'argentina', u'goalless', u'half', u'time']
[u'germani', u'reach', u'semi', u'penalti', u'drama']
[u'gerriti', u'win', u'meet', u'power', u'station', u'futur']
[u'giteau', u'injur', u'rugbi', u'return']
[u'govt', u'consid', u'repeat', u'driver', u'test']
[u'hama', u'leader', u'call', u'isra', u'offens']
[u'henin', u'hardenn', u'sail', u'fourth', u'round']
[u'hewitt', u'scrap', u'past']
[u'hingi', u'crash', u'clijster', u'progress']
[u'hundr', u'ralli', u'tooronga', u'villag', u'revamp']
[u'huon', u'collaps', u'put', u'job', u'risk']
[u'prison', u'assault', u'declin']
[u'iraqi', u'kidnap', u'bomb', u'death', u'toll', u'rise']
[u'law', u'week', u'action', u'wind']
[u'itali', u'germani', u'reach', u'world', u'semi', u'final']
[u'itali', u'tribun', u'verdict', u'world']
[u'koizumi', u'bush', u'diplomat', u'duet']
[u'labor', u'criticis', u'botch', u'welfar', u'chang']
[u'lampard', u'nevill', u'play']
[u'council', u'guantanamo', u'stanc', u'vindic']
[u'lawyer', u'condemn', u'hick', u'case', u'handl']
[u'lion', u'battl', u'past', u'blue']
[u'lion', u'docker', u'half', u'time']
[u'lonard', u'slip', u'second', u'river', u'highland']
[u'die', u'workplac', u'accid']
[u'condit', u'crash']
[u'stand', u'polic']
[u'manufactur', u'data', u'hit', u'stock']
[u'martin', u'urg', u'territorian', u'embrac', u'statehood']
[u'middl', u'australia', u'burden', u'increas', u'swan']
[u'nasa', u'name', u'rocket', u'mar']
[u'navi', u'sink', u'tamil', u'tiger', u'boat']
[u'welfar', u'work', u'law', u'danger', u'welfar', u'group']
[u'extern', u'probe', u'beaconsfield', u'rock', u'fall']
[u'worri', u'zidan', u'say', u'vieira']
[u'polic', u'nurs', u'increas']
[u'ongo', u'detent', u'paedophil', u'question']
[u'opal', u'good', u'russia']
[u'outspoken', u'japanes', u'hashimoto', u'die']
[u'owen', u'knee', u'surgeri']
[u'palestinian', u'kidnapp', u'demand', u'prison', u'releas']
[u'palestinian', u'kidnapp', u'list', u'demand']
[u'palestinian', u'call', u'isra', u'offens']
[u'pedrosa', u'quickest', u'rossi', u'pick', u'pace']
[u'pekerman', u'resign', u'amid', u'argentin', u'acrimoni']
[u'polic', u'accus', u'kill', u'demonstr']
[u'polic', u'alleg', u'attack', u'oper']
[u'polic', u'investig', u'suspici', u'broom']
[u'polic', u'launch', u'investig', u'bodi']
[u'polic', u'suspect', u'bust', u'drug', u'syndic', u'link']
[u'polic', u'target', u'dead', u'baghdad', u'bomb']
[u'polic', u'wait', u'post', u'mortem', u'establish', u'barossa']
[u'properti', u'council', u'fear', u'impact', u'levi']
[u'smoke', u'ban', u'effect']
[u'quick', u'drink', u'drive', u'chang', u'urg']
[u'rabbitoh', u'extend', u'peachey', u'deal']
[u'rain', u'delay', u'random', u'drug', u'test']
[u'ramo', u'horta', u'name', u'caretak', u'govt', u'boss']
[u'ronaldo', u'england', u'clash']
[u'roozenda', u'deni', u'tunnel', u'chang', u'claim']
[u'safe', u'get', u'cheaper', u'britain']
[u'saint', u'annihil', u'hapless', u'hawk']
[u'record', u'rainfal', u'low']
[u'scandal', u'boost', u'evan', u'tour', u'hop']
[u'second', u'soldier', u'kidnap', u'palestinian', u'milit']
[u'shiit', u'sunni', u'fighter', u'clash', u'north', u'baghdad']
[u'shoot', u'farmer', u'mistak', u'child']
[u'shop', u'elder', u'open', u'japan']
[u'skaif', u'track', u'creat', u'histori']
[u'smoke', u'inquiri', u'fail', u'lobbi', u'group']
[u'stanhop', u'play', u'levi', u'fear']
[u'risk', u'lose', u'fund']
[u'strauss', u'state', u'captainci', u'case']
[u'suicid', u'prompt', u'critic', u'mental', u'health']
[u'suspect', u'murder', u'suicid', u'shock', u'barossa', u'communiti']
[u'swan', u'sink', u'docker', u'final', u'term', u'blitz']
[u'swift', u'firebird', u'remain', u'undef']
[u'teen', u'charg', u'elder', u'woman', u'murder']
[u'toni', u'strike', u'twice', u'itali', u'coast', u'semi']
[u'tour', u'subdu', u'start']
[u'hurt', u'melbourn', u'print', u'press', u'blast']
[u'post', u'reward', u'masri', u'lead']
[u'troop', u'accus', u'rap', u'kill', u'iraqi']
[u'troop', u'face', u'iraq', u'rape', u'inquest']
[u'warn', u'long', u'qaeda', u'fight']
[u'vail', u'see', u'progress', u'talk']
[u'vatican', u'reveal', u'knowledg', u'nazism']
[u'venu', u'spend', u'smoker', u'happi']
[u'firefight', u'agre', u'deal']
[u'warrior', u'panther', u'auckland']
[u'cut', u'come', u'forc']
[u'water', u'commiss', u'strip', u'fund']
[u'weather', u'improv', u'put', u'discoveri', u'track']
[u'webb', u'touch', u'open', u'leader']
[u'welfar', u'chang', u'boost', u'popul']
[u'welfar', u'work', u'chang', u'hurt', u'vulner']
[u'warn', u'bird', u'case', u'spike']
[u'world', u'bank', u'grant', u'zambia', u'debt', u'relief']
[u'youth', u'worker', u'name', u'year']
[u'fear', u'dead', u'ferri', u'capsiz', u'nepal']
[u'ecstasi', u'tablet', u'seiz', u'raid']
[u'cyclon', u'insur', u'claim', u'outstand']
[u'list', u'relationship', u'regist']
[u'abba', u'deni', u'kidnap', u'negoti', u'impass']
[u'abba', u'warn', u'wors', u'time', u'ahead']
[u'adelaid', u'woman', u'euthanis', u'switzerland']
[u'adopt', u'plan', u'eas', u'shortag', u'expert']
[u'agassi', u'farewel', u'wimbledon']
[u'black', u'tell', u'line', u'nation']
[u'alleg', u'govt', u'conspir', u'kickback', u'cover']
[u'qaeda', u'pose', u'threat', u'report']
[u'annan', u'urg', u'action', u'conflict']
[u'stand', u'jam', u'hardi', u'rule']
[u'stand', u'firm', u'hardi', u'rule']
[u'australia', u'boost', u'food', u'timor']
[u'aust', u'bridg', u'east', u'timor']
[u'babi', u'bronco', u'hold', u'half', u'time', u'edg', u'shark']
[u'babi', u'bronco', u'stun', u'shark']
[u'weather', u'forc', u'discoveri', u'delay']
[u'basso', u'hurt', u'calm', u'tour', u'suspens']
[u'beatti', u'face', u'oppon']
[u'beckham', u'quit', u'england', u'captainci']
[u'beef', u'produc', u'seek', u'independ', u'nlis', u'audit']
[u'better', u'protect', u'park', u'offic', u'seek']
[u'brother', u'evict', u'pair', u'amid', u'claim']
[u'lade', u'tape', u'post', u'internet']
[u'lade', u'warn', u'iraqi', u'shiit']
[u'bloodi', u'battl', u'commemor']
[u'bluescop', u'look', u'chines', u'market']
[u'boswel', u'upset', u'palmer', u'open', u'final']
[u'brazil', u'shock', u'loss', u'franc']
[u'brazil', u'stun', u'franc']
[u'britain', u'franc', u'mark', u'somm', u'anniversari']
[u'british', u'press', u'bid', u'good', u'riddanc', u'sven']
[u'bulldog', u'outclass', u'tiger']
[u'bulldog', u'outclass', u'west', u'tiger']
[u'bulldog', u'upset', u'eagl', u'perth']
[u'call', u'abandon', u'brother']
[u'cancer', u'victoria', u'biggest', u'killer']
[u'crash', u'victim', u'life', u'support']
[u'china', u'high', u'altitud', u'train', u'arriv', u'tibet']
[u'clash', u'continu', u'afghanistan', u'kill']
[u'closer', u'news']
[u'closer']
[u'club', u'shoot', u'victim', u'critic', u'condit']
[u'costello', u'call', u'greater', u'economi', u'respons']
[u'costello', u'renew', u'port', u'handov']
[u'council', u'employ', u'barri', u'manilow', u'calm', u'rowdi', u'youth']
[u'cristiano', u'ronaldo', u'confirm', u'real', u'madrid']
[u'crow', u'crush', u'cat']
[u'crow', u'fli', u'high', u'half', u'time']
[u'cyclist', u'canberra', u'runway', u'pace']
[u'decept', u'stand', u'continu']
[u'decept', u'stand', u'end']
[u'disabl', u'group', u'condemn', u'welfar', u'chang']
[u'downer', u'doubl', u'timor']
[u'label', u'hick', u'case', u'disgrac']
[u'dravid', u'stand', u'tall', u'india']
[u'drink', u'smoke', u'wors', u'combin', u'studi']
[u'drug', u'discov', u'bushland']
[u'east', u'timor', u'day']
[u'elector', u'chang', u'challeng', u'costello']
[u'england', u'portug', u'extra', u'time']
[u'england', u'portug', u'lock']
[u'england', u'cricket', u'great', u'trueman', u'die']
[u'england', u'player', u'devast', u'failur']
[u'estonian', u'reign', u'wife', u'carri', u'championship']
[u'timor', u'demonstr', u'watersh']
[u'fall', u'death', u'prompt', u'site', u'safeti', u'review']
[u'fall', u'australian', u'honour', u'somm', u'servic']
[u'feder', u'fail', u'australia', u'costello']
[u'fifa', u'investig', u'germani', u'argentina', u'mele']
[u'figur', u'reveal', u'june']
[u'franc', u'dump', u'brazil', u'world']
[u'franc', u'hold', u'brazil', u'half', u'time']
[u'franc', u'upset', u'brazil', u'reach', u'world', u'semi', u'final']
[u'gaza', u'crisi', u'worsen']
[u'giteau', u'clear', u'fractur', u'thumb']
[u'green', u'help', u'greenhous', u'strategi', u'stanhop']
[u'haniyeh', u'urg', u'action', u'isra', u'strike']
[u'helicopt', u'call', u'help', u'injur', u'bushwalk']
[u'hewitt', u'make', u'short', u'work', u'rochus']
[u'hewitt', u'readi', u'dogfight', u'duel', u'ferrer']
[u'hospit', u'boss', u'doubt', u'rat', u'scheme', u'effect']
[u'hushovd', u'win', u'tour', u'prologu']
[u'iraq', u'bomb', u'kill']
[u'israel', u'attack', u'headquart', u'palestinian']
[u'isra', u'missil', u'hit', u'palestinian', u'offic']
[u'isra', u'order', u'armi']
[u'israel', u'refus', u'prison', u'swap', u'palestin']
[u'labor', u'seek', u'answer', u'collus']
[u'lami', u'ask', u'break', u'deadlock']
[u'land', u'swap', u'save', u'caravan', u'park', u'resid']
[u'lift', u'number', u'eas', u'hospit', u'load', u'smyth']
[u'lonard', u'leaderboard', u'slide']
[u'lownd', u'record', u'victori']
[u'charg', u'train', u'assault']
[u'mauresmo', u'thrash', u'pratt', u'william', u'go']
[u'mcewen', u'frame', u'sprinter', u'come', u'play']
[u'melbourn', u'thiev', u'copper', u'rod']
[u'microbiologist', u'urg', u'recycl', u'water', u'attitud', u'shift']
[u'murray', u'dump', u'roddick']
[u'nasa', u'say', u'discoveri', u'launch', u'despit', u'glitch']
[u'neill', u'say', u'australia', u'semi']
[u'north', u'korea', u'bolster', u'deterr']
[u'evid', u'brother', u'investig']
[u'adelaid', u'villag', u'develop', u'defend', u'demolit']
[u'minist', u'visit', u'nuclear', u'wast', u'option']
[u'offic', u'palestinian', u'target']
[u'opposit', u'seek', u'audit', u'deal']
[u'offer', u'retent', u'rat', u'polic']
[u'pedrosa', u'pole', u'british']
[u'polic', u'continu', u'parliament', u'furnish', u'probe']
[u'polic', u'investig', u'windsor', u'shoot']
[u'polic', u'seek', u'public', u'help', u'identifi', u'bodi']
[u'portug', u'send', u'england', u'pack']
[u'princ', u'charl', u'lead', u'somm', u'commemor']
[u'road', u'toll', u'alarm', u'safeti', u'council']
[u'robert', u'charg', u'assault']
[u'ronaldo', u'unlik', u'welcom', u'trafford']
[u'school', u'fail', u'challeng', u'gift', u'student']
[u'schu', u'pole', u'indianapoli']
[u'shire', u'cooper', u'strateg', u'tourism', u'rout']
[u'year', u'drown']
[u'soldier', u'talk', u'near', u'impass', u'palestinian']
[u'sorenstam', u'share', u'open', u'lead']
[u'lanka', u'tear', u'record', u'book']
[u'steve', u'folk', u'sheen']
[u'storm', u'cloud', u'delay', u'discoveri', u'launch']
[u'studi', u'prompt', u'prevent', u'medicin']
[u'suspect', u'overdos', u'close', u'sydney', u'rave']
[u'sven', u'blame', u'player', u'england', u'exit']
[u'territorian', u'year', u'overwhelm']
[u'arrest', u'machet', u'attack']
[u'charg', u'machet', u'attack']
[u'tiger', u'magpi', u'measur', u'half', u'time']
[u'tiger', u'trounc', u'disappoint', u'magpi']
[u'tour', u'scandal', u'leav', u'aussi', u'limbo']
[u'treasur', u'back', u'commonwealth', u'control']
[u'treasur', u'open']
[u'tresco', u'back', u'strauss', u'despit', u'latest', u'maul']
[u'hospit', u'suspect', u'overdos']
[u'british', u'soldier', u'kill', u'afghan', u'attack']
[u'hurt', u'homemad', u'firework', u'explos']
[u'kill', u'bangladesh']
[u'unknown', u'sunni', u'group', u'claim', u'market', u'bomb']
[u'resid', u'fear', u'dump', u'site', u'convers']
[u'washington', u'attack', u'laden', u'dark', u'vision']
[u'watkin', u'defend', u'public', u'transport', u'fare', u'rise']
[u'wayn', u'bennett', u'stuart', u'raper']
[u'weather', u'delay', u'space', u'shuttl', u'launch']
[u'western', u'bulldog', u'upset', u'eagl', u'perth']
[u'woman', u'death', u'renew', u'euthanasia', u'law', u'push']
[u'wwii', u'displac', u'japanes', u'visit', u'homeland']
[u'zarqawi', u'buri', u'secret', u'grave']
[u'zimbabw', u'free', u'apartheid', u'spi']
[u'abbott', u'support', u'rollout', u'opal', u'fuel']
[u'design', u'vehicl', u'anim', u'emerg']
[u'govt', u'spend', u'mental', u'health', u'stagnant']
[u'african', u'union', u'extend', u'darfur', u'forc']
[u'alkatiri', u'forc', u'discuss', u'role', u'timor']
[u'ambul', u'offic', u'action', u'accid']
[u'articul', u'focus', u'june']
[u'asteroid', u'narrowli', u'miss', u'earth']
[u'aust', u'figur', u'make', u'wave', u'south', u'africa']
[u'bali', u'bomber', u'execut', u'jail']
[u'balloon', u'soar', u'mourner', u'farewel', u'sofia']
[u'bartlett', u'criticis', u'lack', u'polit', u'courag']
[u'bathurst', u'communiti', u'win', u'hospit', u'hydrotherapi']
[u'bear', u'maintain', u'win', u'streak']
[u'beatti', u'announc', u'logan', u'river', u'detail']
[u'crowd', u'support', u'townsvill']
[u'bigfoot', u'share', u'human', u'root']
[u'biosecur', u'attack', u'prepared', u'patchi', u'expert']
[u'bird', u'kill', u'human', u'indonesia']
[u'blood', u'donat', u'polici', u'challeng']
[u'break', u'thumb', u'sidelin', u'black', u'nonu']
[u'build', u'site', u'safeti', u'check', u'imped', u'govt']
[u'bulldog', u'rule', u'premiership', u'ambit']
[u'ditch', u'govt', u'fund', u'amid', u'brother', u'outrag']
[u'look', u'bolster', u'volunt', u'rank']
[u'chanc', u'victori', u'dash', u'mcewen', u'follow']
[u'childer', u'inquest', u'begin']
[u'children', u'near', u'blaze', u'build']
[u'closer']
[u'closer', u'news']
[u'closer']
[u'comet', u'continu', u'win', u'streak']
[u'committe', u'undertak', u'riverland', u'socio', u'econom']
[u'commonwealth', u'state', u'urg', u'cooper']
[u'compani', u'medic', u'product', u'bodi', u'part']
[u'complaint', u'lead', u'blood', u'donat', u'polici', u'chang']
[u'confer', u'promis', u'boost', u'thursday', u'tourism']
[u'conlon', u'deni', u'abus', u'fellow', u'parliamentari']
[u'connolli', u'claim', u'kiwi', u'spi', u'ahead', u'bledislo', u'clash']
[u'council', u'consid', u'cataract', u'gorg', u'heritag', u'list']
[u'council', u'urg', u'fight', u'feder', u'govt']
[u'council', u'extend', u'secur', u'camera', u'project']
[u'court', u'adjourn', u'anim', u'cruelti', u'case']
[u'miss', u'week']
[u'croc', u'festiv', u'return', u'hall', u'creek']
[u'cyclon', u'doubl', u'town', u'averag', u'rainfal', u'figur']
[u'decis', u'bring', u'certainti', u'local']
[u'develop', u'seek', u'court', u'clarif', u'age', u'care']
[u'luca', u'pull', u'tour']
[u'door', u'roll', u'year']
[u'downer', u'back', u'push', u'power', u'state']
[u'drink', u'smoke', u'dead', u'studi', u'find']
[u'dubbo', u'diabet', u'dialysi', u'unit']
[u'earthquak', u'shake', u'upper', u'hunter', u'valley', u'town']
[u'earth', u'safe', u'asteroid']
[u'elector', u'boundari', u'chang', u'voter', u'anderson']
[u'elector', u'chang', u'weed', u'dirti', u'tactic']
[u'england', u'prioriti', u'remain', u'ash']
[u'environ', u'report', u'highlight', u'bushfir', u'threat']
[u'timor', u'parliament', u'consid', u'current', u'crisi']
[u'expect', u'germani', u'prepar', u'semi', u'final']
[u'falun', u'gong', u'pursu', u'legal', u'action', u'downer']
[u'farmer', u'face', u'water', u'cut']
[u'fearless', u'itali', u'readi', u'nation']
[u'feder', u'score', u'upset', u'west']
[u'govt', u'criticis', u'fraser', u'protect']
[u'feral', u'pig', u'destroy', u'ingham', u'crop']
[u'firefight', u'search', u'blaze', u'build']
[u'ravag', u'communiti', u'rebuild']
[u'fluorid', u'oppon', u'cite', u'global', u'research']
[u'fluorid', u'oppon', u'maintain', u'fight']
[u'warn', u'instabl', u'china']
[u'fortnight', u'water', u'tower', u'collaps', u'inquiri']
[u'forum', u'focus', u'mackay', u'hous', u'need']
[u'foster', u'sell', u'jamieson', u'wineri']
[u'friendship', u'tenni', u'champ', u'spark']
[u'fring', u'difficult', u'german', u'fifa', u'ask']
[u'fundrais', u'tamworth', u'tour']
[u'funer', u'hold', u'murder', u'perth', u'girl']
[u'gasnier', u'weak', u'link', u'murray']
[u'gasnier', u'play', u'centr', u'lockyer']
[u'gipsi', u'moth', u'return', u'sydney']
[u'giteau', u'clear', u'open', u'nation', u'clash']
[u'brother', u'cash', u'counsel', u'centr', u'say']
[u'global', u'trade', u'talk', u'fail']
[u'gold', u'coast', u'polic', u'hunt', u'driver']
[u'govt', u'confirm', u'good', u'qualiti', u'southern', u'highland']
[u'govt', u'defend', u'prevent', u'medicin', u'fund']
[u'govt', u'green', u'light', u'carpentaria', u'shire', u'hous', u'plan']
[u'govt', u'monitor', u'johnston', u'shire', u'council']
[u'govt', u'urg', u'continu', u'trial', u'miracl', u'drug']
[u'govt', u'urg', u'prison', u'plan']
[u'green', u'group', u'use', u'rubi', u'drill', u'detail']
[u'guerra', u'farmer', u'face', u'stint', u'sidelin']
[u'gundillion', u'local', u'wrap', u'roadwork']
[u'hama', u'call', u'intervent', u'gaza', u'incurs']
[u'hama', u'threaten', u'civilian', u'attack']
[u'hewitt', u'murray', u'chase', u'quarter', u'final', u'date']
[u'highway', u'upgrad', u'long', u'overdu', u'say', u'council']
[u'hometown', u'favourit', u'henri', u'seal', u'maiden', u'tour']
[u'hop', u'relationship', u'centr', u'reduc', u'famili', u'court']
[u'hospit', u'shortag', u'worsen']
[u'hostel', u'owner', u'breach', u'safeti', u'standard']
[u'houllier', u'right', u'socceroo', u'cahil']
[u'howard', u'want', u'brother', u'take']
[u'hundr', u'arriv', u'honour', u'sofia', u'funer']
[u'hunter', u'get', u'power', u'price', u'rise']
[u'industri', u'sector', u'welcom', u'rise', u'manufactur']
[u'rate', u'rise', u'fail', u'dent', u'hous', u'market']
[u'internet', u'predat', u'avoid', u'jail']
[u'isra', u'tank', u'push', u'gaza']
[u'israel', u'pressur', u'hama', u'sixth', u'night', u'gaza']
[u'israel', u'reject', u'ultimatum', u'soldier']
[u'judg', u'swear', u'khmer', u'roug', u'trial']
[u'kangaroo', u'plantat', u'knock']
[u'keat', u'face', u'court', u'assault', u'charg']
[u'kumbl', u'bowl', u'india', u'histor']
[u'kununurra', u'get', u'consum', u'protect', u'offic']
[u'lawyer', u'expect', u'smoke', u'challeng']
[u'releas', u'jail']
[u'lismor', u'environment', u'defend', u'offic']
[u'littl', u'rain', u'dampen', u'dryland', u'farmer', u'spirit']
[u'lobster', u'season', u'extend', u'perman']
[u'locust', u'fear', u'prompt', u'chemic']
[u'longreach', u'mark', u'naidoc', u'week', u'celebr']
[u'mackay', u'hospit', u'look', u'expand', u'servic']
[u'magic', u'bullet', u'attack', u'rogu', u'godfath', u'gene']
[u'die', u'soon', u'arrest']
[u'matthew', u'laud', u'gaelic', u'recruit']
[u'mayor', u'back', u'port', u'author', u'chief']
[u'maywald', u'stand', u'murray', u'water', u'return', u'effort']
[u'mcewan', u'pace', u'open', u'tour', u'stage']
[u'mcewen', u'finish', u'second', u'open', u'tour', u'stage']
[u'mexican', u'elect', u'close']
[u'million', u'spend', u'drought']
[u'minist', u'rule', u'sydney', u'congest']
[u'test', u'contamin', u'soil']
[u'mother', u'jail', u'have', u'son', u'friend']
[u'reject', u'call', u'gordon', u'estat', u'inquiri']
[u'urg', u'continu', u'farm', u'benefit']
[u'urg', u'greater', u'park', u'construct', u'certainti']
[u'murder', u'perth', u'schoolgirl', u'farewel']
[u'murray', u'darl', u'seat', u'consid', u'vulner']
[u'nesta', u'unlik', u'face', u'germani']
[u'council', u'administr', u'look', u'forward']
[u'safeti', u'rule', u'need', u'chang', u'childer']
[u'north', u'coast', u'fuel', u'price', u'rise']
[u'north', u'overpass', u'bridg', u'open']
[u'north', u'west', u'celebr', u'naidoc', u'week']
[u'water', u'murray', u'lachlan', u'valley', u'irrig']
[u'nurs', u'practition', u'scheme', u'upset', u'doctor']
[u'olymp', u'champion', u'gatlin', u'injur']
[u'rise', u'union']
[u'opal', u'czech', u'republ']
[u'opposit', u'concern', u'curriculum', u'report']
[u'opposit', u'question', u'cultur', u'centr', u'white', u'eleph']
[u'opposit', u'say', u'south', u'east', u'gather', u'crisi']
[u'river', u'irrig', u'scheme', u'expans', u'approv']
[u'palestinian', u'milit', u'group', u'hour', u'deadlin']
[u'parent', u'warn', u'child', u'care', u'disrupt']
[u'perilya', u'pay', u'break', u'hill']
[u'petrol', u'sniff', u'committe', u'form', u'amidst', u'fuel', u'soak']
[u'back', u'costello', u'feder', u'push']
[u'polic', u'water', u'safeti', u'campaign']
[u'polic', u'charg', u'person', u'palm', u'alcohol']
[u'polic', u'continu', u'fatal', u'crash', u'probe']
[u'polic', u'hope', u'interview', u'shoot', u'victim']
[u'polic', u'investig', u'beachmer', u'bodi']
[u'polic', u'investig', u'stab', u'assault']
[u'polic', u'look', u'motiv', u'wollongong', u'park']
[u'polic', u'drug', u'high', u'countri']
[u'polic', u'probe', u'echuca', u'bash']
[u'polic', u'probe', u'brawl']
[u'polic', u'life', u'save', u'benefit', u'anti', u'hoon', u'law']
[u'power', u'firm', u'look', u'improv', u'servic', u'coron']
[u'price', u'fluctuat', u'delay', u'wind', u'farm', u'expans', u'studi']
[u'product', u'continu', u'ail', u'empir', u'rubber']
[u'public', u'quiz', u'elector', u'boundari', u'chang']
[u'premier', u'promot', u'water', u'rebat', u'scheme']
[u'rabbitoh', u'sign', u'asotasi', u'year']
[u'rabbit', u'tortur', u'jail']
[u'ralli', u'protest', u'woodchip', u'industri']
[u'ramo', u'horta', u'prepar', u'interim', u'timor']
[u'ramo', u'horta', u'address', u'humanitarian', u'crisi']
[u'recruit', u'start', u'wellington', u'jail', u'job']
[u'research', u'confirm', u'devil', u'disappear']
[u'research', u'reject', u'bias', u'claim', u'veteran']
[u'restaur', u'blaze', u'think', u'deliber']
[u'risdon', u'jail', u'condit', u'liken', u'guantanamo']
[u'road', u'help', u'cement', u'itali', u'stanthorp', u'connect']
[u'roar', u'sign', u'celtic', u'forward']
[u'royal', u'hobart', u'hospit', u'upgrad', u'underway']
[u'ruddock', u'back', u'remov', u'customari']
[u'ruddock', u'dismiss', u'critic', u'govt', u'handl']
[u'runaway', u'ryan', u'escap', u'punish']
[u'rural', u'ambul', u'probe', u'delay']
[u'cabinet', u'sit', u'peterborough']
[u'sack', u'worker', u'wait', u'week', u'welfar']
[u'search', u'miss', u'bushwalk']
[u'season', u'carlton', u'murphi']
[u'seiz', u'drug', u'destin', u'local', u'market', u'polic']
[u'seneg', u'chad', u'presid', u'trial']
[u'share', u'market', u'finish', u'high', u'note']
[u'silver', u'fern', u'strong', u'squad', u'play', u'australia']
[u'kill', u'secur', u'checkpoint', u'explos']
[u'socceroo', u'return', u'school']
[u'soldier', u'captor', u'israel', u'hour', u'deadlin']
[u'sorenstam', u'hurst', u'squar', u'open', u'play']
[u'state', u'angri', u'costello', u'feder', u'push']
[u'state', u'angri', u'costello', u'plan']
[u'state', u'reject', u'costello', u'feder', u'overhaul']
[u'studi', u'consid', u'acid', u'sulphat', u'soil', u'impact']
[u'studi', u'scrutinis', u'kalgoorli', u'drink', u'habit']
[u'switch', u'mobil', u'domenech', u'tell', u'french']
[u'govt', u'consid', u'regular', u'drive', u'test']
[u'taxi', u'council', u'move', u'suspend', u'licenc']
[u'taxi', u'driver', u'want', u'cabbi', u'face', u'child', u'porn', u'charg']
[u'ticket', u'rush', u'bolster', u'call', u'ferri', u'rethink']
[u'join', u'naidoc', u'week', u'festiv']
[u'train', u'crash', u'kill', u'spain']
[u'tuckey', u'reject', u'wheat', u'survey', u'result']
[u'cricket']
[u'guild', u'sign', u'fund', u'agreement']
[u'union', u'air', u'contractor', u'agreement', u'concern']
[u'union', u'begin', u'investig', u'worksit', u'fatal']
[u'union', u'cast', u'doubt', u'council', u'agreement']
[u'bush', u'strategi', u'eas', u'doctor', u'shortag', u'report']
[u'utai', u'water', u'high', u'tackl']
[u'vegmachin', u'give', u'farmer']
[u'hoon', u'law', u'come', u'effect']
[u'farmer', u'singl', u'wheat', u'desk']
[u'wallabi', u'assess', u'giteau', u'injuri']
[u'wife', u'daughter', u'saddam', u'name', u'fugit']
[u'work', u'snowi', u'river', u'school']
[u'world', u'fan', u'hurt', u'career']
[u'talk', u'crisi', u'point', u'vail']
[u'xstrata', u'expect', u'submit', u'revis', u'mcarthur', u'river']
[u'youth', u'face', u'court', u'accus', u'break']
[u'board', u'deceiv', u'public', u'jone', u'book']
[u'abduct', u'soldier', u'aliv', u'isra', u'govern', u'say']
[u'aborigin', u'apprentic', u'deflect', u'loom']
[u'aborigin', u'miss', u'million', u'cultur']
[u'abort', u'clinic', u'turn', u'cancer', u'drug']
[u'goulburn', u'cathol', u'leader', u'die']
[u'govt', u'accus', u'ignor', u'advic', u'school']
[u'adelaid', u'pair', u'jail', u'businessman', u'murder']
[u'black', u'muliaina', u'centr']
[u'ahead', u'opinion', u'poll']
[u'latest', u'newspol']
[u'qaeda', u'sympathis', u'tri', u'infiltr']
[u'concern', u'elect', u'surgeri', u'cancel']
[u'anger', u'air', u'nimbin', u'drug', u'blitz']
[u'angri', u'nadal', u'condemn', u'dope', u'lie']
[u'name', u'contend']
[u'aust', u'govt', u'discuss', u'hick', u'futur']
[u'polici', u'reason', u'poll', u'gain', u'beazley']
[u'awga', u'seek', u'unifi', u'wool', u'industri', u'vision']
[u'babi', u'die', u'toowoomba', u'hous', u'blaze']
[u'bali', u'bomber', u'execut']
[u'bali', u'bomber', u'final', u'appeal', u'death']
[u'bali', u'attack', u'plan', u'final', u'second']
[u'forc', u'hospit', u'ward', u'evacu']
[u'berwick', u'suggest', u'sell', u'daintre', u'ferri']
[u'brother', u'pair', u'action', u'mean']
[u'bionic', u'futur', u'closer', u'realiti']
[u'birney', u'see', u'loser', u'costello', u'plan']
[u'blatter', u'back', u'futur', u'australian', u'world']
[u'boost', u'remot', u'servic', u'eas', u'hospit', u'load']
[u'break', u'hill', u'petrol', u'sniff', u'consid', u'chronic']
[u'bunburi', u'prison', u'staff', u'trial', u'person', u'alarm']
[u'burni', u'say', u'goodby', u'qantaslink', u'hello']
[u'busselton', u'hospitalis']
[u'cameron', u'see', u'barnawartha', u'biodiesel', u'plant', u'hand']
[u'cancer', u'drug', u'abort', u'doctor', u'say']
[u'cancer', u'drug', u'treat', u'blind']
[u'central', u'celebr', u'indigen', u'cultur']
[u'chamber', u'claim', u'chang', u'provid', u'job']
[u'chariti', u'charg', u'meal']
[u'childer', u'hostel', u'oper', u'excus', u'give']
[u'closer', u'news']
[u'closer']
[u'compani', u'sentenc', u'hangar', u'collaps']
[u'costello', u'flag', u'feder', u'reform']
[u'council', u'accept', u'storm', u'clean', u'fund']
[u'councillor', u'highlight', u'caravan', u'park', u'resid', u'plight']
[u'council', u'recommend', u'retain', u'pay', u'park']
[u'council', u'staff', u'ralli', u'dismiss']
[u'cours', u'teach', u'life', u'skill', u'indigen', u'student']
[u'crack', u'delay', u'shuttl', u'launch']
[u'curtain', u'close', u'intern', u'puppetri', u'carniv']
[u'darwin', u'hospit', u'prais', u'staff', u'perform']
[u'deadlin', u'expir', u'captur', u'isra', u'soldier']
[u'deadlin', u'isra', u'soldier', u'exchang', u'expir']
[u'deadlin', u'loom', u'isra', u'hostag', u'gaza']
[u'deep', u'fryer', u'think', u'spark', u'manildra', u'hotel']
[u'design', u'work', u'begin', u'famili', u'youth', u'servic']
[u'disabl', u'consult', u'offer', u'improv', u'youth']
[u'human', u'diseas', u'research']
[u'east', u'timor', u'militari', u'transform']
[u'electrician', u'tri', u'hostel', u'alarm', u'inquest']
[u'eleph', u'remain', u'strand', u'thailand']
[u'monitor', u'asbesto', u'damag', u'tafe', u'clean']
[u'ethic', u'campaign', u'push', u'temin', u'gene']
[u'eurobodalla', u'shire', u'council', u'seek', u'communiti', u'input']
[u'european', u'buyer', u'spirit', u'ferri']
[u'expand', u'nation', u'shape', u'close', u'contest']
[u'expans', u'plan', u'paspaley', u'shop', u'centr']
[u'fall', u'popul', u'see', u'threat', u'nation']
[u'fallon', u'charg', u'race', u'fraud', u'plot']
[u'farmer', u'accept', u'match']
[u'float', u'help', u'rais', u'fund', u'gordon', u'copper']
[u'chairman', u'resign', u'compani', u'board']
[u'secretari', u'plead', u'guilti', u'fraud']
[u'trader', u'jail']
[u'soldier', u'charg', u'iraqi', u'rape', u'murder']
[u'forum', u'allow', u'forest', u'investig']
[u'fund', u'administr', u'consid']
[u'gid', u'offer', u'ambul', u'offic', u'condit']
[u'govt', u'accus', u'threat', u'claim']
[u'govt', u'deni', u'busi', u'neglect', u'budget']
[u'govt', u'offer', u'protect', u'port', u'macquari', u'coloni']
[u'grape', u'grower', u'urg', u'mothbal', u'vineyard']
[u'greec', u'ban', u'fifa']
[u'griffith', u'vote', u'retain', u'councillor']
[u'group', u'help', u'deliv', u'better', u'waterway']
[u'guerra', u'ban', u'match']
[u'gunmen', u'kidnap', u'iraqi', u'deputi', u'minist']
[u'hewitt', u'power', u'prayer']
[u'high', u'petrol', u'price', u'prompt', u'fuel', u'theft', u'spike']
[u'hird', u'injuri', u'heap', u'miseri', u'bomber']
[u'hird', u'bounc', u'injuri', u'lloyd']
[u'hope', u'river', u'scheme', u'stage', u'allow', u'sugar']
[u'hope', u'wineri', u'revamp', u'boost', u'tourism']
[u'horsham', u'develop', u'complet', u'year']
[u'howard', u'dismiss', u'fluctuat', u'poll']
[u'indian', u'superman', u'sing', u'danc', u'offic']
[u'indigen', u'group', u'face', u'essenti', u'servic', u'fund']
[u'indonesian', u'say', u'papuan', u'issu', u'settl']
[u'inquiri', u'like', u'recommend']
[u'investig', u'underway', u'worker', u'sack']
[u'commiss', u'hear', u'nurs', u'home', u'complaint']
[u'isra', u'troop', u'seiz', u'west', u'bank', u'polic', u'post']
[u'israel', u'reject', u'prison', u'releas', u'demand']
[u'israel', u'continu', u'gaza', u'offens']
[u'jail', u'time', u'belgian', u'dealer']
[u'japanes', u'honour', u'kill', u'alli', u'prison']
[u'japanes', u'pay', u'homag', u'wwii', u'alli', u'victim']
[u'japanes', u'star', u'nakata', u'retir', u'footbal']
[u'jockey', u'munc', u'arrest', u'hong', u'kong']
[u'karoonda', u'trial', u'truck', u'zone']
[u'king', u'island', u'water', u'suppli', u'give', u'clear']
[u'lake', u'macquari', u'plan', u'rate', u'review', u'assist', u'citi']
[u'landown', u'wetland', u'boundari', u'chang']
[u'lara', u'reconsid', u'captainci']
[u'lawyer', u'renew', u'plea', u'hickss', u'releas']
[u'lawyer', u'seek', u'psychiatr', u'treatment', u'murder']
[u'leak', u'damag', u'hydro', u'busi', u'minist']
[u'prepar', u'repres', u'break', u'hill']
[u'lion', u'stiller', u'earn', u'rise', u'star', u'nomin']
[u'logan', u'river', u'build', u'wyaralong']
[u'machin', u'licenc', u'recal', u'affect']
[u'mackay', u'share', u'mine', u'simul', u'access']
[u'accus', u'steal', u'indigen', u'group']
[u'charg', u'shoot', u'near', u'wollongong']
[u'flee', u'polic', u'interview']
[u'jail', u'pizza', u'shop', u'robberi', u'assault']
[u'jail', u'stab', u'wife']
[u'prefer', u'jail', u'home', u'grandfath']
[u'face', u'court', u'accus', u'attempt', u'murder']
[u'mayor', u'pleas', u'beatti', u'consult']
[u'mayor', u'say', u'cost', u'plan', u'doesnt', u'hold', u'water']
[u'mayor', u'urg', u'easier', u'drought', u'process']
[u'mcewen', u'throw', u'gauntlet']
[u'meet', u'discuss', u'polic', u'offer', u'disappoint']
[u'mildura', u'consid', u'host', u'balloon', u'titl']
[u'million', u'gather', u'germani', u'moment', u'truth']
[u'firm', u'guarante', u'worker', u'qualif']
[u'miner', u'get', u'oversubscrib', u'public', u'share', u'offer']
[u'worker', u'sack', u'investig']
[u'miss', u'bushwalk', u'safe']
[u'curriculum', u'seek']
[u'air', u'water', u'price', u'rise', u'worri']
[u'predict', u'welfar', u'work', u'scheme', u'problem']
[u'say', u'bullock', u'plan', u'overdu']
[u'multipl', u'arrest', u'illeg', u'drug', u'crackdown']
[u'rogu', u'trader', u'jail']
[u'nasa', u'approv', u'shuttl', u'launch']
[u'nasa', u'confirm', u'crack', u'delay', u'launch']
[u'nation', u'announc', u'candid', u'ripon']
[u'nation', u'urg', u'greater', u'region', u'tourism', u'focus']
[u'natur', u'disast', u'implic', u'dodo', u'extinct']
[u'player', u'fin', u'posit', u'cannabi', u'test']
[u'neill', u'keen', u'invest', u'leagu']
[u'machin', u'monitor', u'prematur', u'babi']
[u'measur', u'help', u'protect', u'alpin', u'river']
[u'polic', u'cell', u'block', u'loom', u'naracoort']
[u'noisi', u'vehicl', u'identif', u'trial']
[u'nuclear', u'inquiri', u'ignor', u'environ', u'opposit']
[u'nuclear', u'task', u'forc', u'wont', u'recommend']
[u'nullarbor', u'farmer', u'happi', u'hear', u'chanc', u'drought']
[u'number', u'govt', u'power', u'democrat']
[u'nundl', u'sawmil', u'save', u'thank', u'negoti', u'delay']
[u'nurs', u'school', u'curb', u'staff', u'shortag', u'hospit']
[u'offici', u'seek', u'answer', u'unusu', u'race', u'bet']
[u'boat', u'busi', u'close', u'lake', u'sink', u'lower']
[u'opposit', u'find', u'poll', u'plan', u'hard', u'swallow']
[u'perth', u'chief', u'resign']
[u'plantagenet', u'council', u'regul', u'fund', u'barker']
[u'pole', u'vaulter', u'burgess', u'finish', u'athen']
[u'polic', u'disgust', u'cemeteri', u'vandal']
[u'polic', u'investig', u'death', u'custodi']
[u'polic', u'investig', u'bodi', u'murder']
[u'polic', u'label', u'driver', u'callous']
[u'polic', u'maintain', u'focus', u'antisoci', u'behaviour']
[u'posit', u'solut', u'seek', u'bourk', u'youth', u'crime']
[u'process', u'delay', u'forc', u'saleyard', u'nlis', u'overhaul']
[u'project', u'offic', u'overse', u'lake', u'mokoan']
[u'prosecutor', u'call', u'releg', u'italian', u'club']
[u'push', u'autonomi', u'region', u'offic']
[u'green', u'rathdowney']
[u'vietnam', u'veteran', u'claim', u'harass']
[u'racist', u'comment', u'prompt', u'footbal', u'club', u'tighten']
[u'radio', u'station', u'face', u'uncertain', u'futur']
[u'ratepay', u'council', u'budget']
[u'relationship', u'centr', u'help', u'avoid', u'divorc']
[u'report', u'urg', u'govt', u'help', u'ail', u'commerci']
[u'resid', u'urg', u'rann', u'rethink', u'school', u'polici']
[u'revis', u'plan', u'damag', u'river', u'tradit']
[u'richo', u'certain', u'starter', u'port']
[u'riverina', u'hurri', u'hick', u'lawyer']
[u'roberto', u'carlo', u'quit', u'brazilian', u'nation', u'team']
[u'roebourn', u'council', u'elect', u'presid']
[u'roger', u'cut', u'tie', u'controversi', u'sport', u'doctor']
[u'rooney', u'gobsmack', u'card']
[u'apologis', u'suprem', u'court', u'remark']
[u'sack', u'worker']
[u'sign', u'warn', u'sand', u'dune', u'collaps', u'danger']
[u'smooth', u'transit', u'lockout', u'polic']
[u'snow', u'corbel', u'bicker', u'civic', u'plan']
[u'sonni', u'court', u'hear', u'adjourn']
[u'spanish', u'train', u'crash', u'kill']
[u'spanish', u'train', u'crash', u'kill']
[u'specul', u'drive', u'share', u'market']
[u'spirit', u'near', u'book']
[u'support', u'call', u'rate', u'hospit', u'perform']
[u'govt', u'back', u'away', u'agreement']
[u'govt', u'crack', u'violenc']
[u'territori', u'kid', u'youth', u'parliament', u'week']
[u'thoma', u'say', u'tortur', u'threat', u'talk']
[u'tonga', u'rush', u'cover', u'hannay']
[u'earli', u'makyb', u'hall', u'fame', u'boss']
[u'toowoomba', u'water', u'studi', u'good', u'opposit']
[u'tourist', u'train', u'rule', u'expens']
[u'train', u'boost', u'remot', u'resid', u'skill']
[u'truck', u'crash', u'prompt', u'stock', u'movement', u'warn']
[u'tune', u'recal', u'wallabi', u'squad']
[u'union', u'flag', u'legal', u'action', u'alleg', u'sack']
[u'train', u'cancer', u'treatment']
[u'univers', u'urg', u'crack', u'essay', u'sale']
[u'univers', u'union', u'expect', u'loss']
[u'say', u'indonesian', u'quak', u'relief', u'million']
[u'forc', u'kill', u'qaeda', u'bomb', u'suspect']
[u'tourist', u'admit', u'hospit', u'yacht', u'rescu']
[u'utai', u'out', u'match']
[u'valencia', u'train', u'crash', u'kill']
[u'vandal', u'destroy', u'histor', u'headston']
[u'push', u'singl', u'wheat', u'desk', u'chang']
[u'court', u'jail', u'rogu', u'trader']
[u'victorian', u'univers', u'student']
[u'vote', u'complic', u'moral', u'socialist', u'agenda']
[u'welfar', u'chang', u'expect', u'local', u'impact']
[u'wine', u'grape', u'ethanol', u'trial']
[u'winemak', u'launch', u'advertis', u'campaign']
[u'woman', u'jail', u'stop', u'assault', u'elder']
[u'workplac', u'servic', u'investig', u'worker']
[u'wyaralong', u'best', u'option', u'beatti', u'say']
[u'xstrata', u'plan', u'open']
[u'board', u'interfer', u'jonestown', u'decis', u'labor']
[u'film', u'critic', u'john', u'hind', u'die']
[u'person', u'die', u'age']
[u'accc', u'win', u'court', u'action']
[u'actu', u'welcom', u'investig', u'centr']
[u'agent', u'detain', u'jockey', u'fear', u'worst']
[u'relat', u'blind', u'treatment', u'receiv', u'boost']
[u'alic', u'spring', u'accus', u'child', u'assault']
[u'rais', u'question', u'medic', u'school', u'train']
[u'warn', u'doctor', u'train', u'crisi']
[u'aust', u'condemn', u'north', u'korean', u'missil', u'test']
[u'aust', u'jockey', u'accus', u'race', u'fix']
[u'australia', u'competit', u'target']
[u'aust', u'share', u'market', u'drop']
[u'award', u'recognis', u'firefight', u'braveri']
[u'baghdati', u'head', u'hewitt', u'realiti', u'check']
[u'incid', u'prompt', u'rule', u'review']
[u'beatti', u'announc', u'plan', u'angri', u'gympi', u'local']
[u'beazley', u'accus', u'govt', u'support', u'militari']
[u'beazley', u'deni', u'labor', u'split', u'skill', u'foreign']
[u'beef', u'cattl', u'grant', u'entri']
[u'beef', u'produc', u'fear', u'impact', u'nuclear', u'dump']
[u'bega', u'council', u'green', u'light', u'rat', u'rise']
[u'bellingen', u'resid', u'trap', u'myna', u'bird']
[u'brother', u'scandal', u'prompt', u'rule', u'review']
[u'blair', u'urg', u'british', u'muslim', u'step', u'fight']
[u'blue', u'confid', u'claim', u'seri', u'victori']
[u'blue', u'maroon', u'origin', u'wrestl']
[u'bodyguard', u'free', u'iraq']
[u'bomber', u'plan', u'rest', u'hird', u'remaind', u'season']
[u'brain', u'research', u'affect', u'legal', u'defenc']
[u'bronco', u'sign', u'young', u'forward']
[u'brumbi', u'announc', u'contract', u'extens']
[u'busi', u'chamber', u'back', u'expand', u'irrig']
[u'busi', u'group', u'want', u'snowi', u'sale', u'agenda']
[u'urgent', u'solut', u'nurs', u'home', u'land', u'issu']
[u'camel', u'rid', u'doesnt', u'faze', u'tourism', u'market', u'group']
[u'cancer', u'centr', u'aim', u'reduc', u'treatment', u'wait', u'list']
[u'camera', u'review', u'delay']
[u'chequebook', u'fraud', u'earn', u'jail', u'term']
[u'child', u'offend', u'urg', u'away', u'victim']
[u'china', u'urg', u'caution', u'missil', u'test']
[u'church', u'group', u'vow', u'accept']
[u'church', u'lobbi', u'hick', u'tri', u'australia']
[u'cinema', u'curtail', u'cultur', u'centr', u'film']
[u'citi', u'student', u'countri', u'practic']
[u'closer']
[u'closer']
[u'closer']
[u'compani', u'director', u'jail', u'breach']
[u'welcom', u'toothfish', u'plan']
[u'costello', u'comment', u'reignit', u'leadership', u'specul']
[u'costello', u'spark', u'fresh', u'round', u'leadership']
[u'council', u'accept', u'extend', u'truck', u'deadlin']
[u'council', u'accus', u'neglect', u'rural', u'area']
[u'council', u'like', u'reject', u'hardi', u'propos']
[u'councillor', u'cast', u'doubt', u'ymca', u'futur']
[u'councillor', u'urg', u'road', u'afford']
[u'council', u'offer', u'computerbank', u'england', u'assur']
[u'council', u'seek', u'feedback', u'draft', u'general', u'plan']
[u'council', u'debat', u'mall', u'option']
[u'council', u'urg', u'justifi', u'licens', u'rise']
[u'countri', u'music', u'festiv', u'sponsorship', u'hit', u'right', u'note']
[u'cruis', u'line', u'continu', u'pay', u'commiss']
[u'dairi', u'farmer', u'form', u'collect', u'bargain', u'group']
[u'decis', u'surpris', u'ford']
[u'danih', u'warn', u'canberra']
[u'darwin', u'chariti', u'charg', u'homeless', u'meal']
[u'death', u'inquest', u'tell', u'poor', u'safeti', u'measur', u'place']
[u'defenc', u'agenc', u'deni', u'troop', u'equip']
[u'defenc', u'dept', u'accus', u'provid', u'troop']
[u'democrat', u'hope', u'despit', u'senat', u'departur', u'plan']
[u'devil', u'give', u'feder', u'vulner', u'speci', u'list']
[u'discoveri', u'launch', u'success']
[u'discoveri', u'fuel', u'tank', u'perform']
[u'discoveri', u'space', u'shuttl', u'crew', u'search', u'damag']
[u'east', u'timor', u'rebel', u'hand', u'weapon']
[u'equip', u'supplier', u'admit', u'make', u'mistak']
[u'evan', u'tate', u'challeng', u'distributor', u'legal']
[u'explos', u'factori', u'resum', u'work', u'year']
[u'famili', u'contact', u'grave', u'vandal']
[u'farmer', u'disput', u'costello', u'feder', u'reform', u'plan']
[u'farm', u'land', u'valu', u'rise']
[u'farm', u'rain', u'plan', u'fail', u'deliv']
[u'feder', u'govt', u'replac']
[u'govt', u'ask', u'play', u'greater', u'role', u'oversea']
[u'forc', u'water', u'save', u'devic', u'retro', u'cuthbert']
[u'childer', u'hostel', u'owner', u'unlik', u'face']
[u'frost', u'hit', u'riversun', u'export']
[u'fund', u'leav', u'aborigin', u'youth']
[u'fund', u'help', u'indigen', u'languag', u'retent']
[u'german', u'shatter', u'dream', u'die']
[u'govt', u'fund', u'research', u'age', u'popul']
[u'govt', u'pressur', u'global', u'warm']
[u'great', u'lake', u'councillor', u'tender', u'surpris', u'resign']
[u'gusmao', u'silent', u'timor', u'interim', u'govt']
[u'hannay', u'name', u'start', u'blue']
[u'head', u'militari', u'justic', u'announc']
[u'higher', u'petrol', u'price', u'fuel', u'rail', u'return']
[u'highway', u'upgrad', u'destroy', u'life']
[u'historian', u'claim', u'king', u'kill', u'burk']
[u'victim', u'famili', u'plead', u'driver']
[u'hop', u'machin', u'improv', u'health', u'prematur']
[u'immigr', u'dept', u'apologis', u'mother', u'year']
[u'insur', u'cost', u'catch', u'boomer']
[u'communiti', u'condemn', u'north', u'korea', u'missil', u'test']
[u'rat', u'hold']
[u'intern', u'disapprov', u'korean', u'missil']
[u'iran', u'postpon', u'nuclear', u'talk']
[u'iron', u'boomerang', u'plan', u'onshor', u'iron', u'process']
[u'israel', u'broaden', u'militari', u'offens', u'gaza']
[u'isra', u'aircraft', u'attack', u'interior', u'ministri', u'gaza']
[u'israel', u'vow', u'forc', u'secur', u'soldier', u'releas']
[u'itali', u'book', u'world', u'final', u'berth']
[u'itali', u'victori', u'celebr', u'melbourn']
[u'japan', u'alert', u'missil', u'launch']
[u'japan', u'threaten', u'sanction', u'north', u'korea', u'missil']
[u'johnston', u'shire', u'council', u'investig']
[u'kangaloon', u'resid', u'ask', u'share', u'water']
[u'kilburn', u'automot', u'sack', u'worker']
[u'killer', u'jellyfish', u'identifi', u'classifi']
[u'labor', u'divid', u'skill', u'foreign', u'worker', u'polici']
[u'lack', u'rain', u'limit', u'water', u'irrig']
[u'larkham', u'excit', u'mark', u'carter']
[u'lawyer', u'dismiss', u'call', u'teenag', u'strangl']
[u'lawyer', u'agre', u'childer', u'hostel', u'oper']
[u'lennon', u'defend', u'deputi', u'monopoli', u'deal']
[u'liber', u'hint', u'famili']
[u'liber', u'parti', u'branch', u'presid', u'put', u'hand']
[u'liber', u'want', u'aerial', u'bait', u'victoria']
[u'lippi', u'hail', u'brave', u'azzurri']
[u'livestock', u'exchang', u'set', u'sheep', u'lamb', u'record']
[u'lyon', u'sign', u'eagl']
[u'mackay', u'youth', u'need', u'money', u'manag']
[u'makyb', u'diva', u'induct', u'hall', u'fame']
[u'jail', u'kill', u'partner', u'grandfath']
[u'maroon', u'reclaim', u'origin', u'titl']
[u'mayor', u'back', u'wyaralong', u'decis']
[u'meet', u'consid', u'restart', u'work', u'explos']
[u'melbourn', u'garden', u'archaeolog']
[u'meninga', u'call', u'earli', u'assault']
[u'minist', u'keep', u'quiet', u'state', u'educ', u'fund']
[u'missil', u'open']
[u'assessor', u'call', u'check', u'heavi']
[u'effort', u'need', u'track', u'asteroid', u'research']
[u'epsom', u'shop', u'centr', u'plan', u'lodg']
[u'fight', u'nurs', u'home']
[u'mumbai', u'commut', u'wade', u'knee', u'deep', u'monsoon', u'rain']
[u'munc', u'face', u'steward', u'inquiri']
[u'murder', u'girl', u'famili', u'seek', u'answer']
[u'murder', u'sister', u'parent', u'await', u'polic']
[u'aborigin', u'health', u'centr', u'open', u'near', u'alic']
[u'card', u'protect', u'children', u'victoria']
[u'newcastl', u'councillor', u'defi', u'council', u'smoke', u'ban']
[u'newcastl', u'histor', u'ocean', u'bath', u'facelift']
[u'communiti', u'centr', u'plan', u'dooki']
[u'figur', u'boost', u'hunter', u'train', u'travel']
[u'medic', u'chart', u'eas', u'pressur', u'hospit']
[u'korea', u'launch', u'missil', u'japan']
[u'korea', u'missil', u'test', u'condemn']
[u'north', u'korean', u'missil', u'test', u'condemn']
[u'crack', u'prison', u'smuggl']
[u'fighter', u'ropabl', u'truck', u'cut']
[u'liber', u'school', u'readi', u'bulldoz']
[u'govt', u'wont', u'stop', u'chariti', u'charg', u'meal']
[u'nuclear', u'power', u'inquiri', u'attack']
[u'nurs', u'home', u'head']
[u'antarct', u'scienc', u'program', u'doubt']
[u'coast', u'victori']
[u'opal', u'fuel', u'roll']
[u'opposit', u'back', u'bigger', u'rise', u'polic']
[u'origin', u'decid', u'kick', u'melbourn']
[u'palm', u'council', u'claim', u'alcohol', u'plan', u'racist']
[u'parliament', u'remov', u'polit', u'aborigin', u'paint']
[u'patient', u'show', u'specialist', u'medic', u'servic']
[u'plan', u'form', u'address', u'bourk', u'crime']
[u'pledg', u'clean', u'school', u'asbesto']
[u'offic', u'deni', u'power', u'deal', u'costello']
[u'post', u'mortem', u'south', u'east', u'whale']
[u'prison', u'overpow', u'polic', u'escap']
[u'protest', u'fight', u'woodchip', u'outsid', u'eden']
[u'public', u'support', u'feder', u'control', u'snowi', u'hydro']
[u'quak', u'rock', u'goldfield']
[u'rapid', u'respons', u'polic', u'group', u'plan', u'malle']
[u'rapist', u'want', u'confess', u'year']
[u'rat', u'repriev', u'brief', u'economist', u'warn']
[u'rave', u'attend', u'drug', u'research', u'democrat']
[u'reserv', u'bank', u'rate', u'decis', u'help']
[u'robert', u'plead', u'guilti', u'assault', u'charg']
[u'roger', u'shock', u'outsprint', u'sprinter']
[u'roll', u'door', u'celebr', u'year']
[u'roof', u'compani', u'fin', u'thousand', u'hangar']
[u'rspca', u'chief', u'call', u'peak', u'bodi', u'overse', u'anim']
[u'salvag', u'crew', u'board', u'ground', u'carrier']
[u'servic', u'sector', u'activ', u'rise']
[u'seven', u'plead', u'guilti', u'palm', u'riot']
[u'sharehold', u'vote', u'sydney', u'futur', u'exchang']
[u'shdh', u'claim', u'insuffici', u'fund', u'fli']
[u'snow', u'criticis', u'epicentr', u'sale']
[u'snowi', u'hydro', u'inquiri', u'unnecessari', u'communiti', u'group']
[u'space', u'shuttl', u'discoveri', u'launch', u'success']
[u'lanka', u'smash', u'record']
[u'steward', u'grill', u'munc', u'bet', u'scam', u'claim']
[u'stone', u'artwork', u'repres', u'wilcannia', u'histori']
[u'student', u'union', u'squabbl', u'alloc', u'govern']
[u'studi', u'aim', u'eas', u'chemo', u'effect']
[u'sydney', u'part', u'respons', u'paralys']
[u'tasmanian', u'woman', u'alarm', u'mammographi', u'breakdown']
[u'region', u'airport', u'upgrad', u'plan', u'resurrect']
[u'thrive', u'town', u'defi', u'statist']
[u'mill', u'closur', u'forc', u'import']
[u'toni', u'santic', u'talk', u'belov', u'mare']
[u'tourist', u'bureau', u'question', u'fund', u'condit']
[u'tradit', u'owner', u'criticis', u'mcarthur', u'river']
[u'umaga', u'clear', u'play', u'franc']
[u'talk', u'innov', u'campus']
[u'govt', u'defend', u'pulp', u'consult']
[u'govt', u'pick', u'timber', u'worker']
[u'victorian', u'school', u'reopen', u'destroy']
[u'victorian', u'recognis', u'brave', u'act']
[u'health', u'minist', u'push', u'tighter', u'liquor']
[u'water', u'author', u'question', u'lake', u'eppalock']
[u'trial', u'person', u'alarm', u'jail', u'guard']
[u'westpoint', u'chief', u'beneficiari', u'trust', u'court', u'tell']
[u'wider', u'roll', u'opal', u'fuel', u'welcom']
[u'wild', u'river', u'law', u'insult', u'indigen', u'leader']
[u'wine', u'industri', u'precious']
[u'woman', u'jail', u'theft']
[u'women', u'learn', u'fight', u'bushfir']
[u'women', u'prepar', u'retir', u'report']
[u'worker', u'burn', u'smelter', u'accid']
[u'world', u'move', u'australia']
[u'worsfold', u'consid', u'ruck', u'option']
[u'abbott', u'say', u'indigen', u'communiti']
[u'accc', u'block', u'wattyl', u'takeov']
[u'action', u'driver', u'strike']
[u'hour', u'contact', u'expect', u'employe', u'survey']
[u'age', u'care', u'nurs', u'keen']
[u'alkatiri', u'blame', u'aust', u'downfal']
[u'alkatiri', u'accept', u'media', u'critic', u'howard']
[u'alleg', u'unsaf', u'mine', u'practic', u'investig']
[u'almond', u'plantat', u'plan', u'hold']
[u'amateur', u'fishermen', u'oppos', u'barramundi', u'farm']
[u'ambul', u'offic', u'closer', u'take', u'action']
[u'annan', u'urg', u'isra', u'palestinian', u'step']
[u'launch', u'public', u'databas', u'histor', u'figur']
[u'appl', u'grower', u'look', u'boost', u'product']
[u'assault', u'claim', u'polic', u'squad', u'futur', u'doubt']
[u'aussi', u'face', u'year', u'indonesian', u'jail', u'drug']
[u'barloworld', u'abandon', u'wattyl', u'takeov']
[u'bateman', u'park', u'fee', u'rise']
[u'fancier', u'grant', u'access', u'british', u'parliament']
[u'beatti', u'readi', u'backlash', u'decis']
[u'beazley', u'push', u'howard', u'elect', u'commit']
[u'bendigo', u'hospit', u'get', u'budget', u'boost']
[u'brother', u'scandal', u'pose', u'challeng', u'govt', u'say']
[u'booth', u'challeng', u'truck', u'accid', u'figur']
[u'bourk', u'court', u'video', u'conferenc']
[u'bundaberg', u'sugar', u'close', u'mourilyan', u'good']
[u'bunker', u'discov', u'torquay', u'dun']
[u'subsidi', u'cabbi', u'transport']
[u'camera', u'fail', u'deter', u'speed', u'driver']
[u'cathol', u'pallottin', u'order', u'leav', u'kimberley']
[u'cattl', u'sale', u'return', u'alic', u'spring']
[u'caution', u'urg', u'offend', u'regist']
[u'central', u'communiti', u'sniffabl', u'opal']
[u'chamberlain', u'juri', u'note', u'sale']
[u'china', u'push', u'negoti', u'north', u'korea']
[u'china', u'urg', u'support', u'north', u'korean', u'missil']
[u'citrus', u'grower', u'unlik', u'dump', u'fruit']
[u'clean', u'program']
[u'closer']
[u'closer']
[u'closer']
[u'coalit', u'soldier', u'kill', u'afghanistan']
[u'competit', u'farmer', u'market', u'share', u'studi']
[u'connolli', u'say', u'black', u'best', u'test']
[u'council', u'issu', u'fin', u'faulti', u'septic', u'system']
[u'council', u'offer', u'help', u'airlin']
[u'council', u'advertis', u'initi']
[u'council', u'urg', u'spend', u'treatment', u'plant']
[u'council', u'water', u'save', u'plan', u'criticis']
[u'court', u'jail', u'rape', u'threat', u'kill']
[u'offer', u'free', u'union', u'membership']
[u'craig', u'sign', u'deal', u'crow']
[u'cruis', u'oper', u'promis', u'refund', u'brimbl', u'fare']
[u'csiro', u'south', u'korea', u'conduct', u'joint', u'research']
[u'deal', u'see', u'hous', u'lot', u'kununurra']
[u'dobb', u'head', u'medic', u'lobbi', u'group']
[u'driver', u'get', u'suspend', u'sentenc', u'collis', u'death']
[u'time', u'toll', u'race', u'track']
[u'dubbo', u'firm', u'fin', u'chemic', u'spill']
[u'educ', u'minist', u'disagre', u'nation', u'exam']
[u'elder', u'man', u'attack', u'jail']
[u'fals', u'oper', u'licenc', u'trigger', u'industri']
[u'farm', u'accid', u'prompt', u'care']
[u'farmer', u'concern', u'wimmera', u'pipelin']
[u'farmer', u'fin', u'wander', u'stock']
[u'farmer', u'urg', u'awar', u'powerlin', u'safeti']
[u'faulti', u'boom', u'gate', u'caus', u'traffic', u'chao']
[u'fear', u'escal', u'north', u'korea', u'missil']
[u'fear', u'hold', u'jail', u'job']
[u'feedback', u'seek', u'forster', u'hous', u'plan']
[u'fight', u'break', u'gaza']
[u'financ', u'firm', u'detect', u'irregular']
[u'firefight', u'help', u'avoid', u'blaze']
[u'fish', u'compani', u'southern', u'indian', u'ocean']
[u'fletcher', u'jone', u'build', u'list', u'heritag']
[u'forc', u'shepherd', u'manu', u'samoa', u'clash']
[u'enron', u'chief', u'die']
[u'franc', u'itali', u'achiev', u'best', u'feat', u'domenech']
[u'fretilin', u'leader', u'launch', u'court', u'action']
[u'fund', u'help', u'develop', u'popul', u'polici']
[u'fund', u'help', u'start', u'mine', u'deal']
[u'leak', u'forc', u'armi', u'base', u'evacu']
[u'disput', u'threaten', u'split', u'unit', u'church']
[u'global', u'warm', u'studi', u'predict', u'mix', u'result']
[u'goldfield', u'resid', u'strike', u'lucki', u'lotto']
[u'govt', u'accus', u'delay', u'council', u'poki']
[u'govt', u'internet', u'regulatori', u'plan', u'criticis']
[u'govt', u'recognis', u'mental', u'health', u'worker', u'woe']
[u'govt', u'slow', u'address', u'migrant', u'worker', u'rort']
[u'govt', u'nativ', u'veget', u'regul']
[u'handbag', u'haka', u'outrag', u'black']
[u'harri', u'charg', u'ident', u'fraud']
[u'heat', u'treatment', u'cure', u'grape', u'vine', u'virus', u'compani', u'say']
[u'helicopt', u'safeti', u'concern', u'cowra', u'skate', u'park']
[u'historian', u'question', u'govt', u'teach', u'plan']
[u'histor', u'eurana', u'hous', u'shop']
[u'hodgson', u'blame', u'origin', u'loss']
[u'hospit', u'move', u'doctor', u'train']
[u'hous', u'search', u'gangland', u'murder', u'investig']
[u'howard', u'demand', u'equip', u'brief']
[u'howard', u'deni', u'costello', u'leadership', u'deal']
[u'hunter', u'record', u'rise', u'chlamydia', u'case']
[u'husband', u'jail', u'attempt', u'murder']
[u'ident', u'fraud', u'suspect', u'leav', u'hospit']
[u'india', u'post', u'darwin']
[u'india', u'score', u'convinc']
[u'indigen', u'leader', u'accus', u'assault', u'wife']
[u'individu', u'worker', u'fin']
[u'indonesia', u'ship', u'polici', u'benefit']
[u'inquest', u'examin', u'aborigin', u'tent', u'embassi', u'fire']
[u'inquest', u'hold', u'princ', u'highway', u'death']
[u'inquiri', u'chief', u'criticis', u'snowi', u'sale', u'secreci']
[u'israel', u'expand', u'gaza', u'offens', u'rocket']
[u'isra', u'tank', u'roll', u'northern', u'gaza']
[u'job', u'jeopardi', u'weight', u'loss', u'clinic', u'enter']
[u'kanck', u'comment', u'prompt', u'emerg', u'meet']
[u'lazaridi', u'keen', u'perth']
[u'lead', u'smelter', u'undergo', u'emiss', u'review']
[u'lennon', u'urg', u'releas', u'legal', u'advic']
[u'librari', u'prove', u'popular', u'toowoomba', u'resid']
[u'mackay', u'properti', u'sale', u'remain', u'strong']
[u'jail', u'keep', u'child', u'slave']
[u'jail', u'welfar']
[u'mayor', u'back', u'probe', u'council', u'oper']
[u'mcadam', u'flag', u'alic', u'accommod', u'boost']
[u'mcewen', u'eye', u'tour', u'stage']
[u'mcewen', u'sprint', u'tour', u'franc', u'fourth', u'stage']
[u'meet', u'focus', u'safeti']
[u'melbourn', u'paramed', u'threaten', u'strike']
[u'sentenc', u'tasman', u'fire']
[u'miner', u'find', u'pilbara', u'deposit']
[u'minist', u'consid', u'union', u'boral', u'plan']
[u'minist', u'deni', u'coal', u'mine', u'get', u'water']
[u'missil', u'launch', u'rais', u'price']
[u'missil', u'open']
[u'mitsubishi', u'gain', u'popular']
[u'mobil', u'welcom', u'opal', u'roll', u'plan']
[u'mogg', u'satisfi', u'origin', u'career']
[u'polic', u'need', u'pyne']
[u'morn', u'final', u'consid', u'swim']
[u'call', u'drought', u'extens']
[u'predict', u'support', u'penola', u'bypass']
[u'deliv', u'interchang', u'petit', u'govt']
[u'warn', u'polic', u'exodus', u'better', u'offer']
[u'nation', u'critic', u'plan', u'abolish', u'elector']
[u'breast', u'cancer', u'diagnosi', u'devast']
[u'newcastl', u'bash', u'victim', u'die']
[u'cancer', u'clinic', u'open']
[u'tasmanian', u'wait', u'heart', u'surgeri']
[u'korea', u'warn', u'missil', u'launch']
[u'govt', u'blame', u'cronulla', u'restaur', u'closur']
[u'doctor', u'begin', u'talk']
[u'korea', u'warn', u'missil', u'test']
[u'nuclear', u'inquiri', u'urg', u'consid', u'thorium', u'reactor']
[u'ogradi', u'battl', u'pain', u'barrier', u'remain']
[u'film', u'silent']
[u'opposit', u'offer', u'state', u'award', u'pledg']
[u'opposit', u'studi']
[u'outlook', u'bleak', u'apiarist']
[u'palestinian', u'kill', u'fierc', u'gaza', u'fight']
[u'offer', u'brimbl', u'famili', u'refund']
[u'patient', u'thank', u'paramed', u'life', u'save', u'effort']
[u'payment', u'sheikh', u'hilali', u'suspend']
[u'peak', u'hill', u'midst', u'crime', u'wave', u'say', u'local']
[u'pearson', u'call', u'watchdog', u'monitor', u'indigen']
[u'back', u'critic', u'aborigin', u'mourn', u'time']
[u'urg', u'interven', u'strike', u'rail', u'worker', u'case']
[u'jail', u'cannabi', u'smuggl']
[u'polic', u'arrest', u'escape']
[u'polic', u'arrest', u'woman', u'ident', u'theft']
[u'polic', u'offic', u'convict', u'send', u'explicit']
[u'polic', u'probe', u'deliber', u'hous', u'blaze']
[u'polic', u'probe', u'alburi', u'death', u'caller']
[u'polic', u'speak', u'shoot', u'victim']
[u'polic', u'union', u'call', u'brack', u'disband']
[u'possibl', u'copper', u'boom', u'cloncurri']
[u'potenti', u'sponsor', u'music', u'festiv']
[u'premier', u'face', u'sale', u'price', u'spirit']
[u'probe', u'consid', u'tuna', u'industri', u'wast', u'water', u'option']
[u'public', u'nation', u'park', u'manag']
[u'public', u'warn', u'open', u'danger']
[u'public', u'warn', u'avoid', u'escap', u'prison']
[u'win', u'origin', u'seri']
[u'queensland', u'celebr', u'origin', u'victori']
[u'radiotherapi', u'clinic', u'begin', u'cancer', u'centr']
[u'ralph', u'develop', u'design', u'betray']
[u'rann', u'fund', u'shipbuild', u'site', u'expans']
[u'region', u'driver', u'urg', u'wait', u'fuel', u'price', u'drop']
[u'riverland', u'fund', u'health', u'staff', u'retent']
[u'rockhol', u'girl', u'death', u'suspici', u'polic']
[u'seek', u'grade', u'exempt', u'junior', u'student']
[u'scientist', u'build', u'theori', u'monkey', u'monkey', u'know']
[u'scolari', u'say', u'franc', u'deserv', u'victori']
[u'secret', u'land', u'hear', u'extraordinari', u'seslja']
[u'senat', u'call', u'local', u'back', u'alcohol', u'plan']
[u'shop', u'propon', u'face', u'death', u'threat']
[u'shake', u'magistr', u'option']
[u'sheedi', u'endors', u'youth', u'polici']
[u'shire', u'work', u'fix', u'pool', u'problem']
[u'smartcard', u'compani', u'woe', u'wont', u'cost', u'taxpay']
[u'smut', u'affect', u'cane', u'see', u'ideal', u'candi']
[u'south', u'west', u'polic', u'clock', u'motorcyclist']
[u'speaker', u'defend', u'remov', u'indigen', u'paint']
[u'speed', u'motorcyclist', u'fast', u'catch']
[u'stress', u'leav', u'figur', u'unsurpris', u'prison', u'offic']
[u'studi', u'find', u'island', u'suffer', u'brunt', u'cyclon']
[u'suicid', u'bomber', u'kill', u'iranian', u'pilgrim', u'iraq']
[u'sydney', u'hospit', u'develop', u'criticis']
[u'sydney', u'woman', u'die', u'meningococc', u'diseas']
[u'takeov', u'push', u'share', u'market', u'higher']
[u'take', u'nuclear', u'wast', u'govt', u'plan', u'howard']
[u'tasmania', u'launch', u'safeti', u'truck', u'driver']
[u'produc', u'warn', u'climat', u'chang', u'impact']
[u'teacher', u'wari', u'busi', u'school', u'tie', u'push']
[u'terror', u'charg', u'challeng', u'rule', u'august']
[u'test', u'reveal', u'clean', u'ballarat']
[u'thief', u'jail', u'rob', u'policeman']
[u'truck', u'crash', u'prompt', u'explos', u'fear']
[u'kill', u'isra', u'strike', u'gaza']
[u'uncertainti', u'surround', u'babi', u'whale', u'death']
[u'debat', u'north', u'korea', u'missil', u'test']
[u'univers', u'game', u'titl']
[u'launch', u'north', u'korea', u'diplomat', u'pressur']
[u'warn', u'north', u'korea', u'missil', u'test']
[u'vaughan', u'definit', u'ash', u'seri']
[u'victorian', u'polic', u'dog', u'misconduct', u'claim']
[u'virus', u'lurk', u'koala', u'genom']
[u'voss', u'prepar', u'strike', u'deal']
[u'memori', u'open', u'somm', u'exhibit']
[u'watchdog', u'defend', u'legal', u'action', u'rail', u'worker']
[u'water', u'tower', u'inquest', u'hear', u'claim', u'inadequ']
[u'wholesal', u'threaten', u'ep', u'market', u'boycott']
[u'wimmera', u'inform', u'network', u'seek', u'support']
[u'woman', u'charg', u'alleg', u'fraud', u'offenc']
[u'world', u'cut', u'credit', u'higher', u'retail']
[u'xstrata', u'look', u'lead', u'test', u'plan']
[u'ymca', u'woe', u'pressur', u'pcyc']
[u'youth', u'help', u'clean', u'cemeteri', u'vandal']
[u'year', u'london', u'rememb', u'terrorist', u'attack']
[u'abattoir', u'open']
[u'boss', u'rule', u'radio']
[u'brisban', u'staff', u'strike', u'cancer', u'concern']
[u'case', u'coincident', u'say', u'cancer', u'fund']
[u'chief', u'back', u'biographi', u'scrap']
[u'learn', u'takeov', u'boost', u'hutchison', u'stock']
[u'request', u'cancer', u'probe', u'review']
[u'staff', u'meet', u'manag', u'cancer', u'case']
[u'accus', u'woman', u'appear', u'court']
[u'adventur', u'athlet', u'head', u'hinz']
[u'age', u'care', u'nurs', u'consid', u'staff', u'cut', u'plan']
[u'airport', u'arbitr', u'debt']
[u'alleg', u'woman', u'face', u'court']
[u'qaeda', u'releas', u'london', u'bomb', u'video']
[u'ambul', u'auxiliari', u'volunt', u'converg']
[u'ambul', u'disput', u'go', u'commiss']
[u'applic', u'ralph', u'develop', u'reintroduc']
[u'armi', u'reject', u'kapooka', u'evacu', u'claim']
[u'asic', u'clear', u'westpoint', u'financ', u'carey', u'say']
[u'asic', u'warn', u'credit', u'scheme', u'request', u'pin']
[u'astronomi', u'club', u'sight', u'observatori']
[u'dead', u'gaza', u'violenc']
[u'aussi', u'mckenzi', u'tie', u'lead', u'illinoi']
[u'aust', u'coupl', u'arrest', u'vietnam', u'heroin']
[u'aust', u'soldier', u'clear', u'iraq', u'bodyguard', u'shoot']
[u'aust', u'troop', u'clear', u'iraqi', u'bodyguard', u'shoot']
[u'rate', u'concern', u'labor']
[u'beatti', u'urg', u'proper', u'process', u'review']
[u'crowd', u'expect', u'alic', u'open']
[u'damag', u'orang', u'retail', u'complex']
[u'tobacco', u'case']
[u'blair', u'want', u'great', u'britain', u'footbal', u'team']
[u'brisban', u'staff', u'strike', u'breast', u'cancer']
[u'brisban', u'host', u'men', u'hard', u'court', u'champ']
[u'builder', u'warn', u'industri', u'action', u'probe']
[u'bureau', u'reflect', u'cyclon', u'monica', u'destruct']
[u'driver', u'apologis', u'strike', u'disrupt']
[u'bushfir', u'help', u'farmer']
[u'bush', u'howard', u'discuss', u'north', u'korea', u'crisi']
[u'bush', u'push', u'unilater', u'action', u'north', u'korea']
[u'watchdog', u'monitor', u'govern']
[u'canberra', u'bus', u'resum', u'concern', u'air']
[u'canberra', u'ceremoni', u'hold', u'mark', u'london', u'bomb']
[u'caravan', u'park', u'mediat']
[u'restaur', u'footpath', u'discriminatori']
[u'challeng', u'test', u'rescu', u'abil']
[u'chamberlain', u'juror', u'note', u'remov', u'ebay']
[u'china', u'coal', u'mine', u'villag', u'blast', u'kill']
[u'clinic', u'school', u'expect', u'benefit', u'north']
[u'closer', u'news']
[u'closer', u'news']
[u'closer']
[u'coal', u'sale', u'wont', u'delay', u'hunter', u'project']
[u'commiss', u'urg', u'ambul', u'worker']
[u'compulsori', u'indigen', u'earli', u'educ', u'agre']
[u'concern', u'plan', u'fix', u'school', u'entri', u'date']
[u'concern', u'air', u'longwal', u'coal', u'mine', u'creek']
[u'concern', u'air', u'wind', u'farm', u'plan', u'transpar']
[u'concern', u'humpback', u'whale', u'tangl', u'rope']
[u'conserv', u'plan', u'fish']
[u'conserv', u'knife', u'edg', u'mexican', u'elect']
[u'council', u'highlight', u'rise', u'greenhous', u'emiss']
[u'council', u'boost', u'india', u'busi', u'relat']
[u'council', u'decid', u'cirqu', u'soleil', u'show', u'futur']
[u'cowra', u'abattoir', u'sack', u'deem', u'legal']
[u'cowra', u'sack', u'deem', u'legal']
[u'cricket', u'star', u'farewel', u'fieri', u'fred', u'trueman']
[u'crimin', u'charg', u'rule', u'childer', u'hostel']
[u'cruis', u'worker', u'offer', u'retrain']
[u'defenc', u'report', u'find', u'error', u'repatri', u'process']
[u'derbi', u'west', u'kimberley', u'vote', u'forgo', u'elect']
[u'dfat', u'cut', u'north', u'korea', u'diplomat', u'tie']
[u'difficult', u'time', u'lime', u'plant', u'close']
[u'disendors', u'molloy', u'expect', u'repres', u'govt']
[u'drought', u'prove', u'boon', u'countri', u'laundrett']
[u'drought', u'put', u'squeez', u'citrus', u'crop']
[u'winter', u'slash', u'grain', u'crop', u'product']
[u'use', u'protein', u'store', u'data']
[u'educ', u'minist', u'consid', u'anglican', u'school']
[u'electrolux', u'worker', u'accept', u'industri', u'agreement']
[u'council', u'reject', u'deer', u'pest']
[u'exchang', u'merger', u'get', u'court', u'approv']
[u'expert', u'cast', u'doubt', u'vanston', u'outstat']
[u'soldier', u'plead', u'guilti', u'iraq', u'rape', u'case']
[u'famili', u'farewel', u'victim']
[u'fear', u'petrol', u'litr']
[u'feder', u'fund', u'offer', u'busi', u'idea']
[u'feder', u'fund', u'target', u'green', u'project']
[u'feder', u'govt', u'back', u'green', u'issu', u'address']
[u'feder', u'help', u'need', u'mental', u'health', u'servic']
[u'final', u'countdown', u'continu', u'franc', u'itali']
[u'financ', u'firm', u'probe', u'miss']
[u'forestri', u'criticis', u'eagl', u'nest', u'destruct']
[u'westpoint', u'director', u'demand', u'probe']
[u'fortescu', u'launch', u'joint', u'iron', u'venur']
[u'frazer', u'urg', u'cancer', u'vaccin', u'research']
[u'fund', u'revamp', u'nation', u'park', u'road']
[u'beat', u'list', u'spark', u'investig', u'call']
[u'gaza', u'clash', u'claim', u'live']
[u'germani', u'spoil', u'figo', u'swansong']
[u'gillard', u'address', u'midwiv', u'confer']
[u'good', u'start', u'kerbsid', u'collect']
[u'govt', u'announc', u'bridg', u'replac']
[u'govt', u'board']
[u'gunnedah', u'vote', u'airport', u'terror', u'insur']
[u'handov', u'delay', u'creat', u'meatwork', u'uncertainti']
[u'hardi', u'appoint', u'compens', u'fund', u'director']
[u'health', u'servic', u'highlight', u'fluorid', u'consult']
[u'indonesian', u'arrest', u'drug', u'syndic']
[u'interst', u'plant', u'pest', u'creat', u'wine', u'worri']
[u'iraq', u'mosqu', u'sectarian', u'attack']
[u'isra', u'troop', u'kill', u'milit']
[u'isra', u'troop', u'kill', u'palestinan', u'milit']
[u'israel', u'strengthen', u'offens']
[u'itali', u'defend', u'nesta', u'rule', u'world', u'final']
[u'jam', u'hardi', u'reap', u'rise']
[u'japan', u'condemn', u'north', u'korean', u'threat']
[u'jonestown', u'reflect', u'report', u'say']
[u'karoonda', u'council', u'foreshadow', u'rat', u'rise']
[u'klose', u'dream', u'golden', u'shoe', u'titl']
[u'leftist', u'candid', u'contest', u'mexican', u'vote']
[u'local', u'govt', u'group', u'discuss', u'highway', u'inquest']
[u'london', u'bomber', u'video', u'releas']
[u'lung', u'cancer', u'statist', u'surpris']
[u'mackay', u'wind', u'success', u'naidoc', u'week']
[u'manag', u'consult', u'staff', u'cancer', u'case']
[u'face', u'court', u'canberra', u'bomb', u'threat']
[u'market', u'ralli', u'tobacco', u'decis']
[u'matthew', u'deni', u'grant', u'earli', u'releas']
[u'mayor', u'criticis', u'snowi', u'sale', u'oppon']
[u'mcewen', u'hold', u'green', u'jersey']
[u'meatwork', u'turn', u'anim', u'fuel']
[u'melbourn', u'storm', u'outplay', u'bronco']
[u'mental', u'health', u'bed', u'target']
[u'menzi', u'council', u'rethink', u'keep', u'indigen']
[u'oppon', u'nation', u'park', u'declar']
[u'minist', u'welcom', u'nation', u'educ', u'test', u'delay']
[u'monaro', u'resid', u'wind', u'farm']
[u'fund', u'announc', u'wiluna', u'school']
[u'morley', u'photographi', u'sydney']
[u'motorist', u'warn', u'petrol', u'price', u'squeez']
[u'mount', u'manypeak', u'blaze', u'take', u'toll', u'scrub', u'bird']
[u'mous', u'potato', u'himbo', u'googl', u'mainstream']
[u'say', u'welfar', u'work', u'disadvantag']
[u'urg', u'fund', u'water', u'pipelin']
[u'want', u'road', u'inquiri', u'includ', u'pacif', u'highway']
[u'murder', u'victim', u'parent', u'crimin', u'file']
[u'murray', u'look', u'guru', u'coach', u'step']
[u'mysteri', u'bunker']
[u'nadal', u'beat', u'nieminen', u'reach', u'wimbledon', u'semi']
[u'naidoc', u'ralli', u'put', u'spotlight', u'indigen', u'educ']
[u'netbal', u'slide', u'door']
[u'campaign', u'encourag', u'better', u'stress', u'manag']
[u'disciplinari', u'action', u'kovco', u'bodi']
[u'investig', u'endeavor', u'safeti']
[u'law', u'break', u'cowra', u'abattoir']
[u'norwegian', u'firm', u'claim', u'ferri', u'sale', u'lockout']
[u'nrma', u'say', u'compani', u'exploit', u'north', u'korea', u'missil']
[u'govt', u'car', u'opal', u'fuel']
[u'justic', u'chief', u'name']
[u'nurseri', u'industri', u'urg', u'vote', u'recycl', u'water']
[u'omalley', u'content', u'ireland']
[u'opal', u'steal', u'victori', u'china']
[u'opposit', u'play', u'health', u'staff', u'accommod']
[u'compo', u'flow', u'miriuwong', u'gajerong', u'peopl']
[u'pilbara', u'teacher', u'win', u'indigen', u'educ', u'award']
[u'plan', u'darwin', u'fish', u'farm']
[u'polic', u'await', u'licenc', u'suspens', u'form']
[u'polic', u'investig', u'kill']
[u'polic', u'arrest', u'bash']
[u'polic', u'better']
[u'polic', u'question', u'scissor', u'stab']
[u'polic', u'recov', u'steal', u'farm', u'equip']
[u'polic', u'seek', u'bash']
[u'pope', u'name', u'australia', u'jesuit', u'bishop']
[u'port', u'piri', u'abattoir', u'sack', u'staff']
[u'prosecutor', u'child', u'porn', u'charg', u'prompt', u'case', u'review']
[u'prosecutor', u'stand', u'porn', u'charg']
[u'public', u'fund', u'seek', u'disast', u'relief', u'foundat']
[u'public', u'look', u'pioneer', u'park', u'revamp']
[u'govt', u'wont', u'southern', u'border', u'cotton']
[u'sugar', u'debt', u'declin']
[u'queensland', u'lead', u'nation', u'hemp', u'industri']
[u'queensland', u'polic', u'recaptur', u'escape']
[u'want', u'fuel', u'price', u'dispar', u'explan']
[u'rebat', u'chang', u'expect', u'stop', u'altern']
[u'report', u'find', u'countri', u'peopl', u'dig', u'deepest']
[u'report', u'show', u'rural', u'serv', u'cancer']
[u'rescuer', u'stand', u'entangl', u'whale']
[u'resourc', u'push', u'market', u'higher']
[u'rodeo', u'walk', u'fame']
[u'roger', u'eye', u'yellow', u'jersey']
[u'erupt', u'stinger', u'treatment', u'method']
[u'rural', u'debt', u'survey', u'reveal', u'good']
[u'sandon', u'hous', u'plan', u'releas']
[u'student', u'activ', u'build', u'futur']
[u'scrap', u'iron', u'recycl', u'test', u'steel']
[u'slater', u'determin', u'fresh', u'start']
[u'smut', u'affect', u'cane', u'burn', u'ahead', u'harvest']
[u'south', u'coast', u'naidoc', u'celebr', u'continu']
[u'stanhop', u'defend', u'secreci', u'cabinet', u'document']
[u'state', u'resist', u'push', u'standard', u'year', u'certif']
[u'stone', u'throw', u'hobart', u'firefight']
[u'storm', u'hope', u'record', u'crowd', u'bronco', u'clash']
[u'storm', u'outplay', u'bronco']
[u'stosur', u'mix', u'doubl', u'draw']
[u'strategi', u'focus', u'counsel', u'servic', u'deliveri']
[u'strike', u'worker', u'warn', u'fin']
[u'studi', u'highlight', u'dusti', u'mildura']
[u'sugar', u'ship', u'salvag', u'effort', u'grow']
[u'survey', u'show', u'grain', u'grower', u'exist', u'industri']
[u'beekeep', u'protect', u'leatherwood', u'honey']
[u'govt', u'forc', u'reveal', u'detail']
[u'telstra', u'worker', u'ask', u'union']
[u'tharwa', u'water', u'suppli', u'expens', u'stanhop']
[u'thiev', u'target', u'snake', u'collect']
[u'reserv', u'rise', u'decis']
[u'tollner', u'want', u'debat', u'nuclear', u'wast', u'storag']
[u'tongan', u'princ', u'kill', u'crash']
[u'trap', u'cardwel', u'croc']
[u'truck', u'driver', u'unawar', u'fight', u'fatigu']
[u'tuna', u'process', u'industri', u'back', u'sewer', u'option']
[u'ask', u'countri', u'help', u'close', u'guantanamo']
[u'deadlock', u'north', u'korean', u'sanction']
[u'union', u'say', u'cowra', u'abattoir', u'decis', u'surpris']
[u'union', u'warn', u'strike', u'fin', u'begin']
[u'union', u'urg', u'compani', u'caution', u'licenc']
[u'talk', u'medic', u'cours']
[u'unlicens', u'drink', u'driver', u'get', u'harsher', u'sentenc']
[u'struggl', u'reach', u'korea', u'agreement']
[u'kill', u'forc', u'clash', u'iraqi']
[u'govt', u'blame', u'mental', u'health', u'inadequaci']
[u'wadey', u'rioter', u'jail', u'month', u'reveng']
[u'wallabi', u'black', u'jostl', u'underdog', u'status']
[u'watchdog', u'warn', u'cowra', u'find', u'preced']
[u'watch', u'hous', u'staff', u'defend', u'escap']
[u'worker', u'blame', u'possibl', u'fin', u'lobbi', u'group']
[u'webb', u'victori', u'open', u'matchplay', u'duel']
[u'windorah', u'host', u'nation', u'bronco', u'brand', u'contest']
[u'work', u'begin', u'gold', u'open', u'pit', u'expans']
[u'zidan', u'short', u'list', u'golden', u'ball', u'award']
[u'dead', u'day', u'rainstorm', u'china']
[u'girl', u'give', u'birth', u'amazon']
[u'urg', u'staff', u'concern', u'cancer', u'risk']
[u'worker', u'return', u'strike', u'cancer', u'fear']
[u'black', u'humbl', u'wallabi']
[u'architect', u'engin', u'challeng', u'monopoli']
[u'darwin']
[u'signal', u'cautious', u'approach']
[u'aussi', u'hunt', u'chopra', u'take', u'lead']
[u'aust', u'ask', u'amend', u'rwanda', u'inact']
[u'australia', u'slump', u'loss']
[u'barr', u'reject', u'suggest', u'school', u'closur', u'agenda']
[u'barr', u'say', u'mechan', u'ensur', u'basic', u'educ']
[u'battl', u'oldest', u'school', u'independ']
[u'beatti', u'pledg', u'support', u'cancer', u'concern']
[u'blatter', u'admit', u'dive']
[u'brad', u'otten', u'glad', u'geelong', u'bounc']
[u'britain', u'rememb', u'bomb', u'victim']
[u'cahil', u'back', u'houllier']
[u'canadian', u'charg', u'urin', u'memori']
[u'canberra', u'tourist', u'attract', u'record', u'increas']
[u'cat', u'crush', u'blue', u'sharpshoot']
[u'closer']
[u'confid', u'shuttl', u'crew', u'inspect', u'heat', u'shield']
[u'studi', u'year', u'say']
[u'care', u'enrol', u'child', u'obes', u'fight']
[u'dee', u'classi', u'lion']
[u'defenc', u'group', u'kovco', u'report']
[u'defenc', u'group', u'welcom', u'kovco', u'report']
[u'docker', u'overpow', u'bomber']
[u'drop', u'profit', u'warn', u'job', u'data']
[u'stand', u'child', u'porn', u'case']
[u'eagl', u'ralli', u'hawk']
[u'eel', u'spoil', u'joey', u'record', u'night']
[u'feder', u'nadal', u'line', u'duel']
[u'timor', u'order', u'face', u'court']
[u'italian', u'order', u'stand', u'trial']
[u'lebanes', u'presid', u'die']
[u'govt', u'will', u'partner', u'cover']
[u'govt', u'urg', u'fund', u'altern', u'poison']
[u'grim', u'time', u'farmer']
[u'hama', u'call', u'ceasefir', u'israel']
[u'hama', u'reject', u'isra', u'hint', u'prison', u'releas']
[u'heenan', u'rest', u'year']
[u'heffernan', u'accus', u'brogden', u'dirt', u'file', u'involv']
[u'heffernan', u'deni', u'dirti', u'trick', u'campaign']
[u'hoggard', u'upbeat', u'test', u'chanc', u'freak']
[u'investig', u'player', u'workload']
[u'india', u'host', u'world', u'final']
[u'investig', u'continu', u'child', u'abus']
[u'isra', u'forc', u'widen', u'gaza', u'offens']
[u'israel', u'pull', u'forc', u'north', u'gaza', u'strip']
[u'israel', u'widen', u'gaza', u'offens']
[u'jaeger', u'stun', u'bird']
[u'japan', u'begin', u'withdraw', u'troop', u'iraq']
[u'japan', u'urg', u'sanction', u'north', u'korea']
[u'judg', u'order', u'berlusconi', u'stand', u'trial', u'fraud', u'case']
[u'kashmir', u'woman', u'leader', u'surviv', u'attack', u'kill']
[u'kovco', u'report', u'wide', u'accept']
[u'labor', u'claim', u'govt', u'collud']
[u'labor', u'urg', u'reveal', u'step']
[u'liber', u'ministeri', u'code', u'conduct', u'need']
[u'lippi', u'reject', u'unit', u'rumour']
[u'london', u'bomb', u'victim', u'rememb']
[u'london', u'rememb', u'bomb', u'victim']
[u'arrest', u'attack', u'princess', u'ann', u'convoy']
[u'charg', u'attempt', u'murder', u'mother']
[u'mbeki', u'hail', u'world', u'beacon', u'hope']
[u'militari', u'pound', u'taliban', u'afghanistan', u'rebel']
[u'mix', u'result', u'educ', u'meet']
[u'mosqu', u'attack', u'claim', u'live']
[u'mosqu', u'attack', u'claim', u'live', u'iraq']
[u'newmont', u'loss', u'possibl']
[u'gout', u'kewel', u'surgeri', u'keep']
[u'lawyer', u'appoint', u'defenc', u'post']
[u'polic', u'disciplin', u'properti', u'interfer']
[u'nuclear', u'wast', u'fact', u'find', u'tour', u'use', u'say']
[u'nurs', u'group', u'slam', u'corridor', u'wait', u'polici']
[u'pakistani', u'women', u'jail', u'minor', u'crime', u'free']
[u'panther', u'battl', u'past', u'raider']
[u'pavarotti', u'recov', u'cancer', u'surgeri']
[u'futur', u'know', u'christma']
[u'decid', u'futur', u'christma']
[u'podolski', u'name', u'best', u'young', u'player', u'world']
[u'polic', u'question', u'attack', u'woman']
[u'postal', u'worker', u'injur', u'power', u'attack']
[u'power', u'blank', u'tiger', u'triumph']
[u'ramo', u'horta', u'name', u'east', u'timor']
[u'ramo', u'horta', u'name', u'east', u'timor']
[u'read', u'renew', u'test', u'pakistan']
[u'red', u'chase', u'schifcofsk']
[u'resid', u'report', u'minor', u'earthquak', u'flinder']
[u'ritalin', u'regular', u'prescrib', u'doctor']
[u'roger', u'evan', u'yellow', u'jersey']
[u'scorpion', u'worm', u'ant', u'gourmet', u'grade']
[u'eagl', u'strong', u'rooster']
[u'south', u'africa', u'plan', u'silenc', u'doubter']
[u'strike', u'brisban', u'worker', u'return', u'work']
[u'tait', u'happi', u'face', u'vaughan']
[u'task', u'forc', u'assist', u'communiti', u'affect', u'dam']
[u'teen', u'critic', u'condit', u'balconi', u'fall']
[u'arrest', u'bomb', u'plot']
[u'hold', u'bomb', u'plot']
[u'transfer', u'tenni', u'championship', u'brisban']
[u'nation', u'open', u'world', u'foundat']
[u'turnbul', u'defend', u'heffernan', u'smear', u'campaign']
[u'unbeat', u'mcewen', u'claim', u'stage']
[u'continu', u'debat', u'north', u'korea', u'sanction']
[u'union', u'call', u'talk', u'abattoir', u'loss']
[u'diplomaci', u'effort', u'continu', u'north', u'korea', u'crisi']
[u'draft', u'evad', u'meet', u'canada']
[u'vietnam', u'drug', u'arrest', u'iceberg']
[u'liber', u'leader', u'warn', u'costello', u'feder']
[u'watchdog', u'say', u'cowra', u'find', u'preced']
[u'weather', u'clear', u'final']
[u'webb', u'go', u'women', u'match', u'play']
[u'whitlam', u'celebr', u'birthday']
[u'whitlam', u'celebr', u'birthday', u'cabinet']
[u'wine', u'export', u'surg']
[u'yemen', u'acquit', u'qaeda', u'link', u'trial']
[u'zizou', u'franc', u'say', u'jacquet']
[u'foreign', u'crash', u'russian', u'plane']
[u'clean', u'yarra']
[u'girl', u'take', u'crocodil']
[u'kill', u'crocodil']
[u'alic', u'hail', u'success']
[u'astronaut', u'spacewalk']
[u'siberian', u'plane', u'crash']
[u'australia', u'chalk', u'darwin']
[u'author', u'launch', u'probe', u'siberian', u'plane', u'crash']
[u'beirut', u'extradit', u'terror', u'suspect', u'australia']
[u'betfair', u'race', u'victoria', u'deal', u'approv']
[u'boomer', u'squad', u'name', u'kiwi', u'seri']
[u'bryan', u'brother', u'complet', u'grand', u'slam']
[u'buck', u'night', u'prank', u'leav', u'hospit']
[u'bulldog', u'beat', u'warrior', u'thriller']
[u'bulldog', u'celebr', u'golden', u'point', u'triumph']
[u'campbel', u'leav', u'arsenal']
[u'closer']
[u'closer']
[u'connolli', u'rue', u'elsom', u'yellow', u'card']
[u'crow', u'outclass', u'swan']
[u'discoveri', u'astronaut', u'begin', u'spacewalk']
[u'discoveri', u'struggl', u'lanc']
[u'doctor', u'group', u'say', u'ritalin', u'guidelin', u'outdat']
[u'dragon', u'classi', u'rabbitoh']
[u'dragon', u'wear', u'plucki', u'rabbitoh']
[u'congo', u'militia', u'free', u'nepales', u'peacekeep']
[u'devil', u'dead', u'properti']
[u'famous', u'yacht', u'return', u'sydney']
[u'farmer', u'stay', u'despit', u'bleak', u'forecast']
[u'figo', u'pauleta', u'portug', u'career']
[u'mexican', u'presid', u'clear', u'genocid']
[u'educ', u'minist', u'die']
[u'fuel', u'chang', u'threaten', u'biodiesel', u'industri']
[u'gaza', u'conflict', u'continu', u'israel', u'reject']
[u'gaza', u'face', u'health', u'crisi']
[u'gaza', u'violenc', u'worsen']
[u'german', u'magazin', u'publish', u'evid']
[u'germani', u'portug', u'draw', u'half', u'time']
[u'goggin', u'illinoi']
[u'govt', u'await', u'confirm', u'jamal', u'extradit']
[u'govt', u'await', u'lebanes', u'advic', u'jamal', u'extradit']
[u'govt', u'reject', u'budget', u'claim']
[u'gunmen', u'kill', u'baghdad', u'rampag']
[u'hate', u'figur', u'ronaldo', u'flee', u'england']
[u'hockeyroo', u'happi', u'dutch', u'draw']
[u'hoggard', u'name', u'despit', u'hand', u'injuri']
[u'horta', u'rule', u'govt', u'reshuffl']
[u'india', u'test', u'nuclear', u'capabl', u'missil']
[u'israel', u'launch', u'strike', u'rebuff', u'ceasefir']
[u'israel', u'reject', u'palestinian', u'ceasefir']
[u'judg', u'associ', u'quit', u'access', u'porn', u'sit']
[u'julich', u'crash', u'tour']
[u'labor', u'seiz', u'howard', u'leadership', u'report']
[u'labor', u'seiz', u'leadership', u'report']
[u'lehmann', u'pull', u'obscen', u'gestur']
[u'liber', u'leadership', u'debat', u'intensifi']
[u'liber', u'leadership', u'debat', u'strengthen']
[u'liber', u'lie', u'leadership', u'say', u'opposit']
[u'liber', u'come', u'clean', u'secret', u'leadership']
[u'liber', u'tension', u'prompt', u'feder', u'debat', u'bligh']
[u'kill', u'york', u'peninsula', u'crash']
[u'remand', u'custodi', u'mother', u'attack']
[u'mauresmo', u'claim', u'wimbledon', u'titl']
[u'mauresmo', u'take', u'wimbledon', u'titl']
[u'mauresmo', u'win', u'wimbledon', u'titl']
[u'mcisaac', u'miss', u'springbok', u'clash']
[u'kill', u'siberian', u'plane', u'crash']
[u'urg', u'howard', u'order', u'site', u'reloc']
[u'navi', u'decommiss', u'patrol', u'boat']
[u'neighbour', u'rival', u'showdown']
[u'appoint', u'cultur', u'corpor']
[u'battl', u'shake', u'mogadishu', u'dead']
[u'east', u'timor', u'swear', u'monday']
[u'korea', u'vow', u'concess', u'brace']
[u'korea', u'leader', u'vow', u'concess']
[u'polic', u'search', u'miss', u'crewman']
[u'pair', u'face', u'drug', u'assault', u'charg', u'search']
[u'patel', u'patient', u'bulli', u'compens', u'process']
[u'peacekeep', u'kill', u'afghanistan']
[u'polic', u'consid', u'charg', u'brawl', u'chase']
[u'port', u'piri', u'mayor', u'vow', u'fight', u'abattoir', u'worker']
[u'princess', u'visit', u'sydney']
[u'protest', u'shipwork', u'hope', u'employ']
[u'questacon', u'look', u'exhibit', u'expans']
[u'rag', u'forc', u'samoa']
[u'ramo', u'horta', u'readi', u'east', u'timor']
[u'rann', u'order', u'report', u'taxi', u'driver', u'charg']
[u'real', u'estat', u'group', u'say', u'cancer', u'fear', u'affect']
[u'report', u'show', u'benefit', u'watch']
[u'report', u'promis', u'leadership', u'costello']
[u'roger', u'miss', u'yellow', u'team', u'take', u'control']
[u'rooney', u'get', u'match']
[u'roo', u'deep', u'dog']
[u'sack', u'ship', u'crew', u'make', u'employ']
[u'sack', u'ship', u'crew', u'refus', u'leav']
[u'sack', u'ship', u'crew', u'stand', u'firm', u'despit', u'fin', u'threat']
[u'saint', u'sizzl', u'poor', u'pie']
[u'schifcofsk', u'tempt', u'queensland', u'switch']
[u'schweinsteig', u'take', u'germani', u'spot']
[u'shipwork', u'tool', u'law']
[u'shipwork', u'protest', u'unjust', u'law']
[u'suspect', u'qaeda', u'support', u'arrest', u'germani']
[u'sydney', u'report', u'warn', u'crack', u'subsid']
[u'teen', u'coma', u'tavern', u'bash']
[u'meet', u'peebl']
[u'thousand', u'protest', u'mexico', u'presidenti', u'vote', u'result']
[u'tiger', u'power', u'away', u'upset', u'shark']
[u'tiger', u'strong', u'shark']
[u'titl', u'sweet', u'mauresmo']
[u'toll', u'back', u'nation', u'port', u'reform']
[u'trail', u'bike', u'rider', u'kill']
[u'kill', u'port', u'kennedi', u'collis']
[u'polic', u'offic', u'hospitalis', u'attack']
[u'union', u'pledg', u'fight', u'fund', u'strike', u'worker']
[u'say', u'gaza', u'face', u'health', u'disast']
[u'back', u'china', u'inform', u'north', u'korea', u'talk']
[u'hint', u'north', u'korea', u'talk', u'sanction', u'push']
[u'militari', u'brace', u'iraqi', u'kill', u'report']
[u'govt', u'reject', u'preschool', u'poll', u'result']
[u'webb', u'sorenstam', u'exit', u'matchplay']
[u'weld', u'organis', u'predict']
[u'wind', u'farm', u'studi', u'confound', u'critic', u'say', u'govt']
[u'world', u'final', u'fever', u'heat', u'antarct']
[u'suprem', u'court', u'judg', u'swear']
[u'beach', u'concern', u'prompt', u'clearer', u'council']
[u'abattoir', u'closur', u'impact', u'livestock', u'produc']
[u'acdc', u'frontman', u'grave', u'plaqu']
[u'acdc', u'singer', u'grave', u'plaqu', u'steal']
[u'driver', u'die', u'head', u'crash']
[u'campaign', u'highlight', u'link', u'diabet']
[u'agreement', u'save', u'servic']
[u'alburi', u'polic', u'pledg', u'tougher', u'drink', u'drive', u'campaign']
[u'anim', u'shelter', u'plan', u'drop']
[u'archer', u'learn', u'extent', u'shoulder', u'injuri']
[u'arnhem', u'land', u'crocodil', u'popul', u'concern']
[u'artist', u'fight', u'unsw', u'takeov']
[u'asic', u'seek', u'wind', u'westpoint', u'relat', u'firm']
[u'baggag', u'courier', u'face', u'theft', u'charg']
[u'baghdad', u'bomb', u'kill']
[u'baghdad', u'violenc', u'spark', u'civil', u'fear']
[u'bathurst', u'council', u'elect', u'posit', u'decid']
[u'beatti', u'rule', u'hire', u'patel', u'bureaucrat']
[u'beazley', u'scrap', u'research', u'break']
[u'crowd', u'expect', u'art', u'festiv']
[u'crowd', u'give', u'thumb', u'riverway', u'develop']
[u'infect', u'cattl', u'quarantin']
[u'bland', u'shire', u'break', u'hill']
[u'assur', u'motorist', u'opal', u'safeti']
[u'brake', u'failur', u'caus', u'siberian', u'crash']
[u'budget', u'estim', u'farc', u'opposit']
[u'buffon', u'chang', u'style', u'say']
[u'busi', u'usual', u'troop', u'timor']
[u'busi', u'jitter', u'rise', u'amid', u'soar', u'fuel']
[u'cabinet', u'consid', u'media', u'reform']
[u'drought', u'certainti']
[u'crash', u'kill', u'near', u'stawel']
[u'carpet', u'underlay', u'asbesto', u'risk']
[u'centrelink', u'say', u'worker', u'defraud', u'commonwealth']
[u'chapman', u'valley', u'victori', u'powder', u'puff', u'footi']
[u'charg', u'expect', u'servic', u'station', u'knife', u'attack']
[u'charg', u'lay', u'boy', u'death']
[u'citrus', u'grower', u'export', u'china']
[u'citi', u'violenc', u'kill', u'somalia']
[u'closer']
[u'closer']
[u'closer', u'news']
[u'club', u'plan', u'redevelop', u'wake', u'smoke', u'law']
[u'coag', u'leader', u'lobbi', u'howard', u'asbesto', u'fund']
[u'coag', u'meet', u'offer', u'hope', u'health', u'cours']
[u'code', u'conduct', u'welfar', u'criticis']
[u'communiti', u'school', u'say', u'save', u'figur', u'flaw']
[u'compo', u'debat', u'delay', u'polic', u'timor', u'departur']
[u'coonan', u'establish', u'post', u'complaint', u'offic']
[u'correct', u'moham', u'guerbouzi']
[u'costello', u'contradict', u'leadership', u'deal']
[u'cotton', u'properti', u'fail', u'sell']
[u'council', u'seek', u'mediat', u'child', u'care', u'applic']
[u'crime', u'fight', u'robo', u'patrol', u'yarra']
[u'croc', u'cull', u'debat', u'renew', u'girl', u'kill']
[u'crocodil', u'victim', u'uncl', u'urg', u'shorelin', u'search']
[u'crowd', u'greet', u'pope', u'valencia', u'spain', u'absent']
[u'oppon', u'governor', u'broker', u'deal']
[u'darwin', u'chemic', u'spill', u'contain']
[u'deflat', u'french', u'fan', u'trudg', u'home']
[u'democrat', u'presid', u'quit', u'kanck', u'comment']
[u'develop', u'board', u'plea', u'meatwork', u'reopen']
[u'discoveri', u'astronaut', u'start', u'second', u'spacewalk']
[u'discuss', u'paper', u'canva', u'alcohol', u'plan']
[u'domenech', u'understand', u'zidan', u'rage']
[u'downer', u'mull', u'cut', u'australian', u'troop', u'east']
[u'season', u'committe', u'provid', u'valuabl', u'farmer']
[u'die', u'blame', u'wife', u'attack']
[u'emerg', u'servic', u'parad', u'canberra']
[u'emerg', u'worker', u'contain', u'toxic', u'chemic']
[u'empir', u'rubber', u'job', u'decis', u'loom']
[u'offic', u'respons', u'bushfir', u'death']
[u'feder', u'committe', u'investig', u'tourism', u'work']
[u'feder', u'make', u'tenni', u'histori']
[u'firefight', u'tackl', u'central', u'west', u'hous', u'fire']
[u'flat', u'telescop', u'offer', u'view', u'star', u'origin']
[u'fortescu', u'cullen', u'pilbara', u'iron', u'joint', u'ventur']
[u'french', u'ferri', u'compani', u'buy', u'spirit']
[u'fugit', u'otter', u'recaptur', u'month']
[u'fund', u'help', u'retain', u'indigen', u'languag']
[u'geelong', u'bypass', u'plan', u'creat', u'traffic', u'chao']
[u'geraldton', u'northampton', u'water', u'pipelin', u'moot']
[u'ghan', u'fuel', u'surcharg', u'temporari']
[u'goggin', u'share', u'second', u'western', u'open']
[u'govt', u'canvass', u'industri', u'polici', u'overhaul']
[u'govt', u'opt', u'site', u'reloc', u'debat']
[u'grain', u'product', u'forecast']
[u'griffith', u'italian', u'communiti', u'grip', u'world']
[u'henri', u'say', u'evid']
[u'heritag', u'list', u'stone']
[u'heritag', u'erupt', u'kelli', u'gang', u'site']
[u'hewitt', u'roddick', u'slide']
[u'hindmarsh', u'book', u'lift']
[u'hobart', u'hop', u'benefit', u'tech', u'colleg', u'push']
[u'horta', u'swear', u'timor']
[u'hostel', u'demolit', u'criticis']
[u'howard', u'deni', u'leadership', u'deal']
[u'howard', u'deni', u'leadership', u'deal', u'costello']
[u'howard', u'promis', u'handov', u'costello']
[u'howard', u'reject', u'costello', u'deal', u'claim']
[u'howard', u'renew', u'pressur', u'leadership', u'deal']
[u'hunter', u'warn', u'loom', u'water', u'ban']
[u'india', u'confirm', u'missil', u'test', u'failur']
[u'investig', u'begin', u'siberian', u'plane', u'crash']
[u'back', u'dairi', u'farmer', u'plan']
[u'islam', u'warlord', u'militia', u'resum', u'battl']
[u'israel', u'continu', u'gaza', u'offens']
[u'italian', u'delight', u'fourth', u'world', u'conquest']
[u'italian', u'delight', u'fourth', u'world', u'conquest']
[u'itali', u'world', u'champion']
[u'itali', u'beat', u'franc', u'world', u'final']
[u'itali', u'win', u'world']
[u'judg', u'jail', u'elder', u'paedophil']
[u'kidnap', u'soldier', u'urg', u'israel', u'negoti']
[u'klose', u'win', u'golden', u'shoe']
[u'labor', u'see', u'howard', u'costello', u'duet']
[u'landhold', u'urg', u'fight', u'valuat', u'increas']
[u'lappin', u'unlik', u'play', u'season']
[u'lawyer', u'question', u'juvenil', u'detent', u'centr', u'law']
[u'leagu', u'player', u'jail', u'ecstasi', u'stash']
[u'leak', u'report', u'spark', u'forest', u'fear']
[u'liber', u'candid', u'play', u'effect']
[u'life', u'leav', u'shop', u'centr', u'plan']
[u'lincicom', u'captur', u'lpga', u'match', u'play', u'titl']
[u'lippi', u'step', u'world', u'report']
[u'local', u'businessman', u'secur', u'ballarat', u'liber', u'spot']
[u'magnet', u'enlist', u'gene', u'therapi', u'research']
[u'market', u'shake', u'negat', u'lead']
[u'mayor', u'prepar', u'cast', u'vote', u'green']
[u'meat', u'worker', u'sack', u'abattoir', u'closur', u'fallout']
[u'meet', u'countri', u'club', u'plan']
[u'plead', u'guilti', u'fantasi', u'charg']
[u'target', u'stroke', u'awar', u'campaign']
[u'mexican', u'elect', u'bodi', u'deni', u'vote', u'count', u'manipul']
[u'murray', u'council', u'boost', u'rat', u'revenu']
[u'mildura', u'council', u'face', u'higher', u'dump', u'fight', u'cost']
[u'miner', u'reject', u'subsid', u'claim']
[u'miner', u'surviv', u'collieri', u'mishap']
[u'minist', u'approv', u'palerang', u'rat', u'hike']
[u'miss', u'crewman', u'phone', u'home']
[u'mockumentari', u'win', u'newcastl', u'short', u'film', u'contest']
[u'montoya', u'head', u'nascar']
[u'roo', u'boost', u'wild', u'number']
[u'insurg', u'kill', u'afghan', u'clash']
[u'soldier', u'charg', u'iraqi', u'rape']
[u'fear', u'reef', u'author', u'futur']
[u'listen', u'radio', u'station', u'worri']
[u'urg', u'heavi', u'machineri', u'worker', u'dodgi']
[u'nasa', u'shuttl', u'declar', u'free', u'heat', u'shield', u'damag']
[u'nauru', u'offici', u'visit', u'baxter', u'detent', u'centr']
[u'newcastl', u'preselect', u'delay', u'caus', u'local', u'angst']
[u'tonbridg', u'heist', u'suspect', u'appear', u'british']
[u'feder', u'fund', u'tourism', u'park', u'plan']
[u'need', u'polic', u'timor', u'commonwealth']
[u'norwegian', u'compani', u'make', u'spirit']
[u'polic', u'confirm', u'sight', u'miss']
[u'nurs', u'home', u'ignor', u'complaint', u'court', u'tell']
[u'nurs', u'home', u'owner', u'open', u'roster', u'talk']
[u'unconcern', u'collin', u'natur']
[u'product', u'limit', u'reach', u'expert']
[u'olmert', u'refus', u'scale', u'gaza', u'oper']
[u'organis', u'pleas', u'beef', u'auction', u'price']
[u'pair', u'hurt', u'dubbo', u'jack']
[u'pakistani', u'plane', u'crash', u'kill']
[u'parti', u'oppos', u'elector', u'boundari', u'chang']
[u'patient', u'advoc', u'reject', u'patel', u'compens']
[u'deni', u'leadership', u'deal']
[u'offer', u'leadership', u'deal', u'costello']
[u'polic', u'continu', u'fatal', u'crash', u'probe']
[u'polic', u'hunt', u'loader', u'wine', u'thiev']
[u'polic', u'hunt', u'palm', u'beach', u'bash', u'thief']
[u'polic', u'prepar', u'bring', u'jamal', u'lebanon']
[u'polic', u'receiv', u'inform', u'cemeteri']
[u'port', u'fee', u'rise', u'gippsland']
[u'port', u'piri', u'abattoir', u'urg', u'hire', u'worker']
[u'possum', u'fall', u'victim', u'predat', u'reloc']
[u'post', u'offic', u'robber', u'jail']
[u'manag', u'choos', u'liber', u'bendigo', u'candid']
[u'protest', u'claim', u'victori', u'demolit', u'plan']
[u'protest', u'shield', u'histor', u'build', u'bulldoz']
[u'protest', u'ship', u'worker', u'ignor', u'threat']
[u'public', u'council', u'servic']
[u'boss', u'censur', u'origin', u'comment']
[u'rain', u'caus', u'indian', u'build', u'collaps']
[u'ramo', u'horta', u'pledg', u'restor', u'secur']
[u'ramo', u'horta', u'swear', u'timor']
[u'reconstruct', u'career', u'archer']
[u'record', u'littl', u'appeas', u'john', u'huge', u'loss']
[u'reduc', u'sentenc', u'rugbi', u'player', u'guilti', u'assault']
[u'replica', u'plane', u'sale']
[u'report', u'find', u'elect', u'surgeri', u'shortfal']
[u'report', u'urg', u'film', u'archiv', u'demerg']
[u'revamp', u'onslow', u'school', u'facil', u'open']
[u'roadsid', u'drug', u'test', u'unreli', u'research']
[u'russia', u'investig', u'siberian', u'plane', u'crash']
[u'saddam', u'lawyer', u'boycott', u'close', u'stage', u'trial']
[u'opposit', u'call', u'refineri']
[u'tenni', u'lose']
[u'search', u'continu', u'children', u'miss', u'bush']
[u'search', u'croc', u'attack', u'victim', u'continu']
[u'shell', u'tanker', u'crew', u'demand', u'job', u'guarante']
[u'slum', u'leav', u'filipino', u'homeless']
[u'smut', u'affect', u'cane', u'burn']
[u'solar', u'citi', u'special', u'kalgoorli', u'campbel']
[u'southern', u'railway', u'fare', u'increas']
[u'springbok', u'hope', u'exploit', u'wallabi', u'scrum']
[u'state', u'accus', u'shirk', u'road', u'fund']
[u'statist', u'suggest', u'hard', u'econom', u'time', u'ahead']
[u'stolt', u'crew', u'order', u'resum', u'duti']
[u'strike', u'ship', u'crew', u'heed', u'zinifex', u'plea']
[u'studi', u'highlight', u'age', u'popul']
[u'survey', u'predict', u'small', u'unemploy', u'rise']
[u'tasmanian', u'radio', u'listen', u'aid', u'rescu']
[u'team', u'sack', u'ullrich', u'mentor']
[u'terrain', u'hamper', u'search', u'crocodil', u'victim', u'bodi']
[u'titan', u'sign', u'cowboy', u'young']
[u'earli', u'judg', u'mine', u'impact']
[u'tourism', u'chief', u'meet', u'camel', u'ride', u'oper']
[u'tourism', u'threat']
[u'tourist', u'bureau', u'seek', u'idea', u'address', u'financi', u'woe']
[u'transfield', u'founder', u'die', u'itali']
[u'trio', u'face', u'strike', u'charg']
[u'women', u'mull', u'legal', u'action', u'mammogram', u'fail']
[u'help', u'land', u'council', u'better', u'manag', u'resourc']
[u'accus', u'fuel', u'korean']
[u'urg', u'farm', u'incom', u'measur']
[u'govt', u'tri', u'muzzl', u'doctor']
[u'view', u'mountain', u'final']
[u'view', u'mountain', u'socceroo']
[u'vulcanologist', u'downgrad', u'merapi', u'alert']
[u'wallabi', u'begin', u'prepar', u'springbok', u'clash']
[u'minist', u'label', u'teacher', u'incent', u'plan', u'nonsens']
[u'watchdog', u'review', u'child', u'ritalin', u'prescript']
[u'western', u'golfer', u'make', u'club', u'championship']
[u'west', u'hold', u'rover']
[u'woman', u'charg', u'policeman']
[u'woman', u'injur', u'roll']
[u'zidan', u'name', u'cup', u'best', u'despit', u'headbutt']
[u'subdivis', u'plan', u'approv', u'merimbula']
[u'percent', u'rise', u'murray', u'rat']
[u'ablett', u'accus', u'attack', u'die']
[u'absent', u'landhold', u'creat', u'concern']
[u'affect', u'abalon', u'virus', u'unknown']
[u'strike', u'kill', u'taliban', u'fighter']
[u'analyst', u'claim', u'democrat', u'doom']
[u'charg', u'lay', u'teacher', u'attack']
[u'archer', u'hope', u'play', u'season']
[u'astronaut', u'complet', u'critic', u'repair']
[u'australia']
[u'australia', u'send']
[u'australian', u'forc', u'need', u'timor', u'horta']
[u'babi', u'marathon', u'queen', u'radcliff']
[u'bali', u'bomb', u'accus', u'await', u'verdict']
[u'beaconsfield', u'fund', u'inform', u'session', u'schedul']
[u'beatti', u'continu', u'fight', u'extra', u'medic', u'student']
[u'beekeep', u'discuss', u'industri', u'futur']
[u'biodiesel', u'plant', u'plan', u'riverland']
[u'blair', u'escap', u'action', u'anti', u'welsh', u'rant']
[u'book', u'ban', u'spark', u'debat']
[u'breweri', u'site', u'sell', u'million', u'westpoint']
[u'busi', u'jitteri', u'despit', u'econom', u'strength']
[u'cabinet', u'meet', u'amid', u'leadership', u'rift']
[u'cabonn', u'sewerag', u'upgrad', u'prioriti']
[u'campaign', u'robinval', u'funer', u'chapel']
[u'camp', u'heighten', u'rural', u'health', u'hop']
[u'canadian', u'parlay', u'paper', u'clip', u'home']
[u'canberra', u'busi', u'fear', u'impact', u'auction', u'stoush']
[u'cattl', u'diseas', u'prompt', u'farmer', u'feder', u'warn']
[u'chechen', u'warlord', u'die']
[u'chiltern', u'health', u'face', u'closur', u'lack', u'fund']
[u'china', u'jail', u'bird', u'whistleblow']
[u'china', u'oppos', u'sanction', u'north', u'korea']
[u'clone', u'showjump', u'hors', u'bear', u'texa']
[u'closer']
[u'closer', u'news']
[u'coag', u'consid', u'law', u'forc', u'indigen', u'testimoni']
[u'commodor', u'member', u'milan', u'william', u'die']
[u'commonwealth', u'freez', u'mutijulu', u'fund']
[u'communiti', u'urg', u'ponder', u'futur', u'direct']
[u'compani', u'fin', u'fatal', u'factori', u'blast']
[u'compani', u'appli', u'wind', u'farm']
[u'cosgrov', u'hit', u'australia']
[u'costello', u'howard', u'continu', u'work']
[u'council', u'consid', u'public', u'swim', u'centr', u'worri']
[u'council', u'scale', u'eureka', u'stockad']
[u'countri', u'club', u'plan', u'get', u'main', u'posit', u'respons']
[u'court', u'appear', u'shop', u'centr', u'murder', u'accus']
[u'court', u'overturn', u'defenc', u'pitcairn', u'appeal']
[u'court', u'rule', u'pitcairn', u'island', u'subject', u'british']
[u'csiro', u'begin', u'research', u'grape', u'qualiti', u'potenti']
[u'danih', u'say', u'australian', u'talk', u'prematur']
[u'darwin', u'facil', u'target', u'petrol', u'sniff']
[u'dead', u'pilot', u'bill', u'telstra', u'phone']
[u'death', u'outsid', u'hospit']
[u'democrat', u'learn', u'lesson', u'surviv']
[u'democrat', u'nation', u'presid', u'quit']
[u'depth', u'prop', u'wallabi', u'scrum', u'connolli']
[u'diabet', u'suffer', u'warn', u'heart', u'diseas', u'risk']
[u'diver', u'fear', u'desal', u'plant', u'marin', u'life', u'impact']
[u'nation', u'park', u'cost', u'hundr']
[u'doubt', u'sunshin', u'coast', u'airport', u'extens']
[u'dragon', u'sign', u'macdougal']
[u'energi', u'stock', u'drag', u'market', u'lower']
[u'timor', u'squad', u'surrend', u'weapon']
[u'chanc', u'rainfal', u'predict', u'western']
[u'festiv', u'go', u'trad', u'govt', u'grant']
[u'fisheri', u'meet', u'shape', u'shark', u'fisher', u'futur']
[u'fitzhenri', u'extend', u'tiger', u'stay']
[u'nomin', u'councillor', u'spot']
[u'leader', u'see', u'democrat', u'tatter']
[u'french', u'guilti', u'favourit']
[u'fungi', u'weed', u'kill', u'trial']
[u'geelong', u'bypass', u'decis', u'polit', u'mayor']
[u'gipsi', u'moth', u'return', u'sydney', u'harbour']
[u'gough', u'celebr', u'birthday']
[u'govt', u'urg', u'rework', u'fuel']
[u'green', u'sidestep', u'deal', u'question']
[u'guantanamo', u'prison', u'wont', u'move']
[u'gusmao', u'urg', u'east', u'timor', u'reform', u'militari']
[u'hamil', u'return', u'delay', u'surgeri']
[u'hindmarsh', u'enter', u'guilti', u'plea']
[u'suspect', u'didnt', u'realis', u'offic', u'hurt']
[u'infect', u'case', u'draw', u'alleg', u'victim']
[u'home', u'loan', u'surg', u'rais', u'rat', u'specul']
[u'howard', u'costello', u'distract', u'beazley']
[u'howard', u'costello', u'team']
[u'howard', u'costello', u'continu', u'current', u'role']
[u'howard', u'refus', u'demot', u'costello']
[u'illeg', u'fish', u'rule', u'revis']
[u'india', u'monsoon', u'death', u'toll', u'near']
[u'indonesia', u'pass', u'aceh', u'autonomi']
[u'injur', u'climber', u'remain', u'hospit']
[u'inquest', u'hear', u'defenc', u'offic']
[u'order', u'stolt', u'strike']
[u'israel', u'attack', u'gaza', u'draw', u'hama', u'threat']
[u'isra', u'soldier', u'keep', u'prison']
[u'isra', u'soldier', u'treat']
[u'italian', u'world', u'hero', u'welcom', u'home']
[u'jet', u'reject', u'takeov', u'rumour']
[u'kelli', u'claim', u'support', u'laguna', u'intern']
[u'kerr', u'strike', u'reduc']
[u'kerr', u'contest', u'strike', u'charg']
[u'khmer', u'roug', u'tribun', u'wit', u'hide']
[u'kyli', u'recoveri', u'uphil', u'battl']
[u'labor', u'fear', u'case', u'cost', u'farmer']
[u'latest', u'speed', u'camera', u'bungl', u'unaccept']
[u'leadership', u'feud', u'escal']
[u'legal', u'appoint', u'outcri', u'damag', u'court']
[u'liber', u'leadership', u'debat', u'continu']
[u'liber', u'leadership', u'feud', u'escal']
[u'liber', u'leadership', u'stoush', u'continu']
[u'live', u'export', u'protest', u'avoid', u'fin', u'jail']
[u'local', u'input', u'seek', u'eas', u'dam', u'impact']
[u'mahogoni', u'timber', u'harvest', u'head', u'floorboard']
[u'accus', u'home', u'invas', u'seek', u'bail']
[u'face', u'trial', u'ecstasi', u'traffic']
[u'maroon', u'push', u'neutral', u'refere']
[u'materazzi', u'say', u'zidan', u'super', u'arrog']
[u'mayor', u'deni', u'salari', u'claim']
[u'mayor', u'push', u'better', u'bush', u'road']
[u'meet', u'hear', u'rail', u'trail', u'concern']
[u'melbourn', u'lawyer', u'kill', u'foil', u'robberi']
[u'oper', u'grant', u'access', u'defenc', u'land']
[u'mine', u'greenhous', u'emiss', u'doubl', u'report']
[u'minist', u'hop', u'better', u'rail', u'line', u'hazard']
[u'minist', u'northern', u'medic', u'place', u'push']
[u'applic', u'seek', u'share', u'sustain']
[u'forest', u'hunt', u'creat', u'safeti', u'worri']
[u'morwel', u'nurs', u'home', u'close']
[u'tilt', u'train', u'crash', u'compo', u'claim', u'settl']
[u'motorcyclist', u'jail', u'speed', u'offenc']
[u'forecast', u'greater', u'role', u'reef', u'author']
[u'howard', u'leadership']
[u'gambier', u'arson', u'investig']
[u'nation', u'echo', u'address', u'wild', u'woe']
[u'newcomb', u'set', u'feder', u'french', u'challeng']
[u'deal', u'satisfi', u'polic', u'chief']
[u'hous', u'announc', u'kimberley']
[u'hous', u'plan', u'unveil', u'newman']
[u'industri', u'park', u'offer', u'lower', u'cost']
[u'law', u'toughen', u'drive', u'offenc', u'penalti']
[u'nicotin', u'vaccin', u'offer', u'hope', u'smoker']
[u'diplomat', u'solut', u'north', u'korea', u'crisi']
[u'news', u'copper', u'deposit', u'size']
[u'help', u'raider', u'retain', u'schifcofsk']
[u'govt', u'criticis', u'taxpay', u'fund', u'world']
[u'minist', u'nation', u'talk', u'illeg', u'fish']
[u'cole', u'myer', u'employe', u'sack']
[u'overdu', u'bushwalk', u'worri', u'polic']
[u'oyster', u'sort', u'innov', u'get', u'fund', u'boost']
[u'pair', u'face', u'court', u'accus', u'point']
[u'pakistani', u'plane', u'crash', u'kill']
[u'pakistan', u'plane', u'crash', u'investig', u'record']
[u'paladin', u'bid', u'valhalla', u'resourc']
[u'palm', u'beach', u'bash', u'victim', u'speak']
[u'parliamentari', u'silverwar', u'beach']
[u'patient', u'choos', u'treatment', u'hospit', u'trial']
[u'piggeri', u'object', u'vcat']
[u'plane', u'damag', u'crash']
[u'polic', u'arrest', u'teen', u'medic', u'centr', u'attempt']
[u'polic', u'investig', u'high', u'perform', u'part', u'theft']
[u'polic', u'investig', u'murder', u'lawyer', u'final', u'minut']
[u'polic', u'stand', u'roadsid', u'drug', u'test']
[u'polic', u'swoop', u'alleg', u'ident', u'fraud']
[u'polic', u'threaten', u'escal', u'disput']
[u'port', u'augusta', u'select', u'wind', u'farm', u'project']
[u'power', u'contest', u'charg']
[u'emptiv', u'strike', u'plan', u'alarm', u'south', u'korea']
[u'prison', u'assault', u'sentenc', u'backdat']
[u'public', u'dark', u'uranium', u'advanc', u'institut']
[u'public', u'oppos', u'pulp', u'green']
[u'rail', u'commut', u'face', u'fuel', u'surcharg']
[u'rat', u'variat', u'allow', u'dubbo', u'entertain', u'centr']
[u'redfern', u'hous', u'youth', u'centr']
[u'red', u'lose', u'valentin', u'waratah']
[u'repetit', u'view', u'benefici', u'expert']
[u'request', u'defer', u'plan', u'aborigin', u'massacr', u'site']
[u'research', u'faster', u'decod', u'gene']
[u'retrench', u'abattoir', u'worker', u'eas', u'skill']
[u'revamp', u'boost', u'emerg', u'dept', u'effici']
[u'road', u'fund', u'strategi', u'look', u'posit', u'labor']
[u'rocki', u'growth', u'mean', u'earlier', u'need', u'hous']
[u'push', u'compromis', u'protect', u'cenotaph']
[u'rudd', u'back', u'ongo', u'timor', u'deploy']
[u'rural', u'student', u'urg', u'seek', u'nurs', u'scholarship']
[u'saddam', u'aid', u'boycott', u'trial', u'second']
[u'govt', u'urg', u'address', u'wine', u'concern']
[u'senat', u'committe', u'hear', u'thirsti', u'world']
[u'nation', u'fuel', u'offic', u'inquiri', u'tell']
[u'blackmail', u'send', u'jail']
[u'sheep', u'theft', u'lead', u'livestock', u'truck']
[u'ship', u'crew', u'resum', u'strike']
[u'kill', u'kashmir', u'blast']
[u'small', u'town', u'driver', u'figur', u'high', u'seatbelt', u'offenc']
[u'solicitor', u'killer', u'hurt']
[u'somali', u'warlord', u'surrend', u'islamist']
[u'southcar', u'rescu', u'helicopt', u'remain', u'ground']
[u'spate', u'build', u'site', u'theft', u'caus', u'concern']
[u'spate', u'hous', u'fire', u'cunnamulla']
[u'spirit', u'sell']
[u'state', u'forc', u'testimoni', u'power', u'ellison']
[u'student', u'sing', u'firefight', u'sorri', u'song']
[u'surgeri', u'cut', u'short', u'william', u'career']
[u'tasmanian', u'fisheri', u'defi', u'nation', u'trend']
[u'student', u'embrac', u'colour', u'road', u'safeti']
[u'taxi', u'upgrad', u'help', u'prevent', u'assault']
[u'kill', u'baghdad', u'gunmen', u'ambush']
[u'chechen', u'warlord', u'die']
[u'tour', u'talk', u'monaco', u'start']
[u'wollongong', u'open', u'extens']
[u'unionist', u'ralli', u'ship', u'crew', u'sack']
[u'union', u'mull', u'court', u'action', u'conroy', u'redund']
[u'union', u'seek', u'talk', u'meatwork', u'redund', u'payment']
[u'union', u'welcom', u'ombudsman', u'postal', u'power']
[u'unit', u'disabl', u'greater', u'autonomi']
[u'actress', u'june', u'allyson', u'die']
[u'export', u'prompt', u'timber', u'mill', u'upgrad']
[u'farmer', u'file', u'billion', u'dollar', u'lawsuit']
[u'senat', u'hold', u'hear', u'terror']
[u'vaccin', u'firm', u'back', u'newcastl', u'chlamydia', u'research']
[u'wheat', u'farmer']
[u'group', u'call', u'restructur']
[u'victoria', u'approv', u'fire', u'power', u'station']
[u'vinegar', u'maker', u'gain', u'oversea', u'knowledg']
[u'wagin', u'pair', u'albani', u'highway', u'crash']
[u'govt', u'neglect', u'pastor', u'land']
[u'warehous', u'closur', u'affect', u'job']
[u'watson', u'haddin', u'lead', u'team', u'charg']
[u'weather', u'hinder', u'search', u'miss', u'policeman']
[u'whitlam', u'celebr', u'labor', u'faith']
[u'winemak', u'warn', u'cheap', u'price', u'impact']
[u'world', u'champion', u'welcom', u'home', u'rome']
[u'young', u'bowler', u'step', u'say', u'pietersen']
[u'kill', u'mumbai', u'train', u'attack']
[u'activist', u'blockad', u'timber', u'site']
[u'actor', u'gulpilil', u'face', u'weapon', u'charg']
[u'adelaid', u'host', u'lead', u'virus', u'expert']
[u'adelaid', u'host', u'intern', u'tournament']
[u'nfsa', u'merger', u'failur', u'report']
[u'profit', u'cold', u'snap']
[u'alic', u'communiti', u'radio', u'get', u'grant']
[u'chief', u'seek', u'kimberley', u'health']
[u'ambul', u'offic', u'warn', u'strike', u'talk', u'fail']
[u'arsenal', u'chase', u'french', u'star', u'riberi', u'report']
[u'australian', u'trail', u'happi', u'rank']
[u'australia', u'offer', u'help', u'bomb', u'mumbai']
[u'award', u'recognis', u'warracknab', u'branch']
[u'bartlett', u'stand', u'elect']
[u'beazley', u'push', u'exempt', u'hardi']
[u'compani', u'jump', u'blog', u'bandwagon']
[u'blaze', u'damag', u'workman', u'club']
[u'bluescop', u'cut', u'meet', u'disappoint']
[u'bomber', u'chase', u'draft', u'pick', u'say', u'sheedi']
[u'bourk', u'polic', u'tough', u'crime']
[u'british', u'museum', u'return', u'maori', u'head']
[u'bundaberg', u'shed', u'blaze', u'destroy', u'machineri']
[u'burgoyn', u'miss', u'remaind', u'season']
[u'bushfir', u'coron', u'urg', u'recommend', u'burn', u'off']
[u'bush', u'offer', u'guantanamo', u'detaine', u'geneva', u'convent']
[u'dairi', u'industri', u'overhaul', u'equip']
[u'cancer', u'death', u'probe', u'near']
[u'cattlemen', u'claim', u'best', u'season', u'year']
[u'restructur', u'shun', u'sydney']
[u'extend', u'triako', u'offer']
[u'challeng', u'tamworth', u'appeal', u'tender']
[u'cherri', u'grower', u'urg', u'support', u'levi', u'increas']
[u'china', u'releas', u'base', u'film', u'maker']
[u'closer', u'news']
[u'concern', u'grow', u'detain', u'japanes', u'academ']
[u'confer', u'focus', u'sustain']
[u'connect', u'retir', u'decor', u'mare']
[u'connolli', u'bring', u'giteau', u'fava']
[u'consum', u'confid', u'strong', u'rebound']
[u'convinc', u'grind', u'get', u'heritag', u'list']
[u'cord', u'blood', u'bank', u'boost', u'indigen', u'donat']
[u'costello', u'call', u'smooth', u'handov']
[u'costello', u'rule', u'leadership', u'challeng']
[u'council', u'back', u'roundabout', u'palm']
[u'council', u'green', u'light', u'newcastl', u'west', u'develop']
[u'council', u'maintain', u'fight', u'plan']
[u'council', u'palaszczuk', u'trade', u'blow', u'water', u'woe']
[u'court', u'reject', u'megalong', u'valley', u'church', u'develop']
[u'cowboy', u'deni', u'rumour']
[u'crocodil', u'victim', u'bodi', u'miss']
[u'darwin', u'council', u'push', u'stronger', u'firework']
[u'death', u'outsid', u'hospit', u'prompt', u'secur', u'upgrad']
[u'denham', u'accus', u'death', u'threat', u'partner']
[u'detect', u'spoof', u'win', u'covet', u'write', u'prize']
[u'discoveri', u'crew', u'practic', u'heat', u'tile', u'repair']
[u'doc', u'role', u'boy', u'case', u'question']
[u'doubt', u'cast', u'breastscreen', u'reliabl']
[u'draft', u'plan', u'look', u'greater', u'burrup', u'peninsula']
[u'drought', u'forc', u'irrig', u'restrict']
[u'elector', u'commiss', u'deni', u'super', u'seat', u'popul']
[u'estim', u'hear', u'tell', u'mental', u'health']
[u'timor', u'readi', u'govern']
[u'evan', u'urg', u'strategi', u'boost', u'engin', u'number']
[u'farmer', u'rail', u'trail', u'plan']
[u'farm', u'group', u'want', u'studi', u'aquif', u'pump', u'plan']
[u'farm', u'machineri', u'busi', u'hand', u'administr']
[u'father', u'jail', u'sexual', u'abus', u'daughter']
[u'festiv', u'exhibit', u'boost', u'mackay', u'trade']
[u'fifa', u'consid', u'strip', u'zidan', u'golden', u'ball']
[u'firefight', u'offer', u'free', u'asbesto', u'test']
[u'flinder', u'student', u'organis', u'merg']
[u'fossil', u'uncov', u'killer', u'kangaroo']
[u'foster', u'kid', u'health', u'passport']
[u'hold', u'port', u'stephen', u'immigr', u'raid']
[u'fuel', u'cost', u'push', u'rail', u'price']
[u'gaza', u'strike', u'kill', u'wound']
[u'global', u'condemn', u'follow', u'mumbai', u'blast']
[u'govt', u'advis', u'infrastructur', u'woe']
[u'govt', u'approv', u'media', u'ownership', u'chang']
[u'govt', u'approv', u'power', u'station', u'green', u'credenti']
[u'govt', u'criticis', u'hospit', u'capac', u'report']
[u'grandmoth', u'escal', u'sack', u'case']
[u'grape', u'grower', u'sing', u'local', u'worker', u'prais']
[u'green', u'hold', u'line', u'contract']
[u'group', u'work', u'develop', u'draft', u'build']
[u'grub', u'termit', u'keep', u'miss', u'offic', u'aliv']
[u'guantanamo', u'detaine', u'offer', u'geneva', u'right']
[u'guantanamo', u'prison', u'interest', u'democrat']
[u'gunnss', u'invit', u'brief', u'condemn']
[u'hannay', u'leav', u'cowboy', u'season']
[u'hezbollah', u'claim', u'hold', u'isra', u'soldier']
[u'hickss', u'father', u'hop', u'polici', u'shift', u'improv']
[u'hind', u'farewel', u'sydney']
[u'honey', u'produc', u'form', u'nation', u'code', u'practic']
[u'hous', u'crisi', u'intellectu', u'disabl']
[u'howard', u'quiet', u'smooth', u'handov']
[u'hundr', u'riot', u'south', u'west', u'china']
[u'iemma', u'back', u'beazley', u'hardi', u'plan']
[u'illeg', u'fish', u'crew', u'give', u'good', u'behaviour', u'bond']
[u'incat', u'continu', u'recruit', u'push']
[u'indigen', u'youth', u'centr', u'tip', u'boost', u'region']
[u'indonesia', u'lower', u'alert', u'level', u'merapi', u'volcano']
[u'iran', u'nuclear', u'talk', u'standstil']
[u'israel', u'confirm', u'hezbollah', u'hold', u'soldier']
[u'israel', u'invad', u'south', u'lebanon', u'hezbollah']
[u'isra', u'strike', u'chang', u'rule', u'battl', u'milit']
[u'isra', u'troop', u'step', u'gaza', u'campaign']
[u'israel', u'step', u'militari', u'campaign']
[u'italian', u'politician', u'brand', u'franc', u'team', u'black']
[u'italian', u'want', u'match', u'claim']
[u'japanes', u'vow', u'love', u'space', u'heaven']
[u'joint', u'ventur', u'secur', u'footbridg', u'contract']
[u'joyc', u'vow', u'scrutinis', u'media', u'reform']
[u'judg', u'seek', u'sentenc', u'option', u'mental']
[u'kanck', u'brave', u'attend', u'rave', u'doctor']
[u'kangaroo', u'skin', u'hit', u'fashion', u'capit']
[u'klinsmann', u'resign', u'german', u'coach']
[u'klinsmann', u'step', u'german', u'coach']
[u'land', u'valu', u'rise']
[u'law', u'leav', u'grassland', u'unprotect', u'trust']
[u'lawyer', u'flood', u'breast', u'cancer', u'enquiri']
[u'liber', u'need', u'smooth', u'leadership', u'chang', u'costello']
[u'lippi', u'stand', u'itali', u'coach']
[u'major', u'group', u'mumbai', u'blast', u'polic']
[u'arrest', u'miss', u'murder', u'inquest']
[u'arrest', u'melbourn', u'lawyer', u'murder']
[u'charg', u'postman']
[u'deepli', u'sorri', u'push', u'elder', u'woman']
[u'mcewen', u'evan', u'think', u'tour']
[u'mcewen', u'unabl', u'snatch', u'fourth', u'stage', u'tour']
[u'media', u'reform', u'divers']
[u'media', u'shake', u'chang', u'approv']
[u'media', u'takeov', u'specul', u'lift', u'market']
[u'melbourn', u'lawyer', u'know', u'killer']
[u'mental', u'mother', u'acquit', u'babi', u'murder']
[u'micro', u'movi', u'featur', u'film', u'festiv']
[u'microsoft', u'fin', u'million', u'anti', u'trust', u'case']
[u'millic', u'catch', u'shop', u'hour', u'time', u'warp']
[u'illeg', u'fish', u'boat', u'see', u'gulf']
[u'mourner', u'farewel', u'impress', u'hind']
[u'studi', u'antisoci', u'behaviour', u'strategi']
[u'mumbai', u'death', u'toll', u'pass']
[u'museum', u'find', u'survey', u'whale', u'strand', u'link']
[u'nation', u'approach', u'tackl', u'fruit', u'outbreak']
[u'nation', u'accus', u'climat', u'chang', u'snub']
[u'nation', u'morwel', u'candid']
[u'partnership', u'boost', u'indigen', u'train']
[u'tourism', u'chief', u'look', u'boost', u'visitor', u'number']
[u'treatment', u'facil', u'help', u'petrol', u'sniffer']
[u'oscar', u'train', u'troubl']
[u'crocodil', u'hunt', u'program', u'restart']
[u'push', u'mutijulu', u'administr']
[u'open', u'blast']
[u'opposit', u'reveal', u'toowoomba', u'water', u'polici']
[u'oxiana', u'plan', u'ride', u'copper', u'boom']
[u'pakistan', u'climb', u'england', u'world', u'test', u'rank']
[u'pakistan', u'ground', u'fokker', u'plan', u'crash']
[u'pakistani', u'kashmiri', u'voter', u'shun', u'islamist', u'parti']
[u'palerang', u'shire', u'defend', u'percent', u'rate', u'rise']
[u'perth', u'land', u'sale', u'westpoint', u'investor']
[u'plan', u'expand', u'nation', u'scienc', u'centr']
[u'handov', u'leadership', u'liber']
[u'polic', u'investig', u'home', u'bash']
[u'polic', u'investig', u'possibl', u'heavi', u'machineri', u'theft']
[u'polic', u'investig', u'suspici', u'gatton', u'fire']
[u'polic', u'know', u'corowa', u'vandal']
[u'polic', u'probe', u'boy', u'shoot', u'accid']
[u'polic', u'remov', u'southwood', u'develop', u'protest']
[u'polic', u'wage', u'campaign', u'respons', u'carpent']
[u'poor', u'rainfal']
[u'push', u'super', u'access', u'homebuy', u'continu']
[u'push', u'chang', u'servic', u'levi']
[u'health', u'recruit', u'exceed', u'target']
[u'rann', u'refus', u'restrain', u'court', u'case', u'comment']
[u'region', u'suffer', u'cole', u'myer', u'cut']
[u'remain', u'crocodil', u'attack', u'site']
[u'research', u'focus', u'quail', u'number']
[u'reverend', u'urg', u'unit', u'church', u'split']
[u'reward', u'teacher', u'classroom', u'effort', u'research']
[u'rid', u'sheep']
[u'rumsfeld', u'see', u'polit', u'iraqi', u'secur']
[u'sack', u'conroy', u'worker', u'offer', u'search', u'help']
[u'sartor', u'pass', u'buck', u'petrol', u'theft', u'opposit']
[u'taxi', u'group', u'say', u'measur', u'work']
[u'scientist', u'predict', u'antarct', u'bloom']
[u'scud', u'arthur', u'triumph', u'rhode', u'island']
[u'secur', u'increas', u'india', u'train']
[u'shire', u'seek', u'better', u'govt', u'relat']
[u'small', u'communiti', u'feel', u'lack', u'famili', u'welfar']
[u'special', u'transmiss', u'mark', u'marconi', u'anniversari']
[u'steel', u'worker', u'look', u'redund', u'packag', u'amwu']
[u'stirl', u'decid', u'polit', u'futur']
[u'strike', u'crew', u'ignor', u'order']
[u'strong', u'demand', u'expect', u'marina', u'moor', u'leas']
[u'studi', u'show', u'sever', u'drought', u'ahead', u'aust']
[u'sudanes', u'militari', u'accus', u'aid', u'rebel']
[u'suicid', u'bomber', u'kill', u'baghdad', u'diner']
[u'swan', u'davi', u'drop']
[u'swim', u'boss', u'snub', u'demand', u'final', u'chang']
[u'talbot', u'fear', u'thorp', u'mayb', u'past', u'best']
[u'approv', u'plan', u'hold']
[u'pulp', u'document', u'leak']
[u'taxi', u'council', u'defend', u'driver', u'pin', u'plan']
[u'tenni', u'academi', u'open', u'sydney']
[u'thiev', u'maleni', u'jewelleri']
[u'thousand', u'tip', u'attend', u'fenaclng', u'festiv']
[u'titan', u'announc', u'sign']
[u'clash', u'even', u'pois']
[u'tour', u'brace', u'high', u'mountain', u'stage']
[u'tourism', u'allianc', u'prepar', u'corridor', u'promot']
[u'line', u'receiv', u'govt', u'fund']
[u'turnbul', u'face', u'water', u'pipelin', u'pressur']
[u'turnbul', u'water', u'tour', u'take', u'goulburn', u'valley']
[u'bodi', u'iraq', u'abduct']
[u'price', u'recycl', u'water', u'tribun']
[u'union', u'warn', u'legal', u'action', u'abattoir', u'sack']
[u'unit', u'look', u'sell', u'cristiano', u'ronaldo']
[u'armi', u'halliburton', u'contract', u'report']
[u'stray', u'geneva', u'convent', u'downer']
[u'research', u'grow', u'crop', u'mar']
[u'victoria', u'put', u'doctor', u'train', u'fund']
[u'fisher', u'scrap', u'deal']
[u'seek', u'support', u'hous', u'mental']
[u'water', u'author', u'expect', u'council', u'plea']
[u'water', u'tower', u'inquest', u'hear', u'final', u'submiss']
[u'water', u'treatment', u'plant', u'commiss', u'start']
[u'western', u'power', u'payout', u'unjustifi', u'say', u'opposit']
[u'white', u'feel', u'pressur', u'ahead', u'wallabi', u'clash']
[u'wind', u'farm', u'oppon', u'prepar', u'round']
[u'wind', u'farm', u'reduc', u'greenhous', u'emiss', u'report']
[u'wit', u'help', u'polic', u'lawyer', u'murder', u'case']
[u'wool', u'price', u'increas', u'predict']
[u'work', u'begin', u'snowi', u'sewerag', u'scheme']
[u'world', u'popular', u'basketbal']
[u'world', u'leader', u'condemn', u'mumbai', u'bomb']
[u'worsfold', u'unfaz', u'forc', u'chang']
[u'demand', u'cash']
[u'timores', u'displac']
[u'boss', u'meet', u'staff', u'cancer', u'concern']
[u'order', u'breast', u'cancer', u'probe']
[u'order', u'breast', u'cancer', u'probe']
[u'aborigin', u'group', u'keen', u'help', u'upgrad', u'condobolin']
[u'airport', u'camera', u'problem', u'prompt', u'call', u'inquiri']
[u'strike', u'destroy', u'palestinian', u'foreign', u'ministri']
[u'moot', u'fee', u'plan', u'boost', u'region']
[u'anderson', u'loss', u'pleas', u'govt']
[u'anderson', u'suit', u'fail']
[u'antarct', u'melt', u'carbon', u'dioxid', u'level', u'rise']
[u'attempt', u'link', u'bomb', u'kashmir', u'disput']
[u'aussi', u'coach', u'prefer', u'glori']
[u'aussi', u'trumpet', u'hop']
[u'australia', u'domin', u'posit']
[u'bash', u'woodford', u'inmat', u'die']
[u'approv', u'boost', u'renew', u'energi']
[u'blaze', u'destroy', u'salvo']
[u'blaze', u'destroy', u'showground', u'build']
[u'blood', u'type', u'barrier', u'kidney', u'transplant']
[u'hospitalis', u'danc', u'parti', u'stab']
[u'brack', u'promis', u'geelong', u'bypass', u'fund']
[u'bradken', u'mackay', u'worker', u'plan', u'industri', u'unrest']
[u'breastscreen', u'problem', u'forc', u'staff', u'chang']
[u'bridgewat', u'convict', u'site', u'heritag', u'list']
[u'britain', u'target', u'australia', u'game']
[u'break', u'hill', u'rental', u'properti', u'high', u'return']
[u'brown', u'fear', u'import', u'rock']
[u'cancer', u'probe', u'head', u'urg', u'staff', u'stay']
[u'caracella', u'groov']
[u'carer', u'seek', u'closer', u'govt', u'dept', u'relat']
[u'volunt', u'protest']
[u'china', u'russia', u'offer', u'north', u'korea', u'resolut']
[u'chines', u'communist', u'parti', u'say', u'member']
[u'cloncurri', u'saddl', u'stockman', u'challeng']
[u'closer']
[u'closer']
[u'closer']
[u'coal', u'miner', u'continu', u'product']
[u'committe', u'probe', u'green', u'deal']
[u'concern', u'rais', u'hillsong', u'role', u'welfar']
[u'construct', u'industri', u'welcom', u'approv', u'overhaul']
[u'cost', u'rotavirus', u'vaccin', u'reject']
[u'council', u'accus', u'neglect', u'waterfront', u'area']
[u'council', u'back', u'hors', u'train', u'facil']
[u'council', u'lose', u'rule', u'powerlin']
[u'council', u'work', u'address', u'climat', u'chang']
[u'cross', u'media', u'ownership', u'law']
[u'csiro', u'join', u'coal', u'gasif', u'trial']
[u'csiro', u'revamp', u'comment', u'polici']
[u'cwealth', u'urg', u'abolish', u'teach', u'scholarship']
[u'dam', u'task', u'forc', u'chief', u'expect', u'long', u'appoint']
[u'darwin', u'festiv', u'line', u'announc']
[u'decis', u'close', u'sixer', u'futur']
[u'decis', u'loom', u'pilbara', u'region', u'council', u'futur']
[u'delaney', u'put', u'famili', u'titan', u'deal']
[u'diamantina', u'council', u'infrastructur', u'fund']
[u'rule', u'appeal', u'sentenc']
[u'dreadlock', u'threat', u'fire', u'smith']
[u'driver', u'die', u'western', u'highway', u'crash']
[u'drought', u'spark', u'closer', u'rural', u'tie']
[u'drought', u'take', u'toll', u'merriwa', u'water']
[u'season', u'committe', u'look', u'altern', u'drought']
[u'east', u'timor', u'appoint', u'envoy', u'foreign']
[u'smith', u'join', u'rabbitoh']
[u'emerton', u'bemus', u'rank']
[u'england', u'minut', u'decis', u'hoggard']
[u'entangl', u'dolphin', u'free', u'fourth', u'time']
[u'court', u'stymi', u'soni', u'merger']
[u'expert', u'heritag', u'bodi', u'reef', u'rule']
[u'famili', u'decis', u'seal', u'titan', u'delaney', u'sign']
[u'farmer', u'natur', u'conserv', u'amend']
[u'farm', u'incom', u'drought', u'concess', u'extend']
[u'fellowship', u'keeper', u'conserv', u'research']
[u'fifa', u'lift', u'greec', u'suspens']
[u'fijian', u'commit', u'cabinet', u'cooper']
[u'firefight', u'contain', u'warehous', u'blaze']
[u'fish', u'lobbi', u'group', u'releas', u'zone', u'plan']
[u'foreign', u'trucker', u'plan', u'rile', u'union']
[u'freak', u'gate', u'mishap', u'injur', u'toddler']
[u'fuel', u'price', u'chang', u'rural', u'lifestyl']
[u'gladston', u'nickel', u'design', u'major', u'project']
[u'govt', u'agre', u'extend', u'farm', u'incom', u'measur']
[u'govt', u'announc', u'media', u'industri', u'reform']
[u'govt', u'dept', u'criticis', u'tower', u'collaps', u'inquest']
[u'govt', u'keen', u'help', u'develop', u'harbour']
[u'govt', u'pledg', u'access', u'wyaralong']
[u'govt', u'reject', u'blame', u'hospit', u'ceo', u'departur']
[u'govt', u'unveil', u'media', u'industri', u'reform']
[u'grant', u'widen', u'toad', u'buster', u'rang']
[u'gunn', u'pulp', u'pollut', u'bass', u'strait']
[u'harbour', u'exclus', u'zone', u'prompt', u'renew', u'safeti', u'fear']
[u'hickey', u'reject', u'council', u'rate', u'rise', u'plea']
[u'hoggard', u'play', u'test']
[u'hope', u'lose', u'poison', u'tree', u'knowledg']
[u'hope', u'remain', u'cold', u'affect', u'crop']
[u'howard', u'claim', u'major', u'parti', u'support']
[u'howard', u'defend', u'rule']
[u'howard', u'support', u'push', u'leadership', u'declar']
[u'howard', u'barter', u'extra', u'medic', u'place']
[u'howard', u'discuss', u'futur', u'colleagu']
[u'howard', u'upbeat', u'coag', u'meet']
[u'chang', u'prompt', u'port', u'access', u'worri']
[u'india', u'anger', u'pakistan', u'bomb', u'comment']
[u'india', u'buri', u'dead', u'mumbai', u'bomb']
[u'inquiri', u'find', u'ward', u'state', u'abus']
[u'investig', u'launch', u'glen', u'inn', u'brawl']
[u'invest', u'need', u'control', u'buffel', u'grass', u'expert']
[u'iran', u'stand', u'nuclear', u'program']
[u'iran', u'refer', u'secur', u'council']
[u'iraqi', u'troop', u'charg', u'muthanna']
[u'israel', u'bomb', u'beirut', u'airport']
[u'israel', u'enforc', u'lebanon', u'blockad']
[u'isra', u'strike', u'target', u'palestinian', u'foreign']
[u'israel', u'respond']
[u'israel', u'tell', u'lebanon', u'evacu', u'suburb']
[u'wont', u'stamped', u'howard', u'say']
[u'figur', u'pressur', u'rat']
[u'figur', u'stronger', u'expect']
[u'judici', u'inquiri', u'seek', u'wast', u'dump', u'site']
[u'kangaroo', u'ditch', u'canberra', u'gold', u'coast']
[u'klinsmann', u'tell', u'world', u'burn']
[u'kookaburra', u'well', u'world']
[u'lebanes', u'govt', u'deni', u'knowledg', u'milit', u'attack']
[u'lebanon', u'govt', u'deni', u'knowledg', u'milit', u'attack']
[u'liber', u'push', u'annual', u'plug', u'mainten']
[u'lodhi', u'sentenc', u'delay']
[u'lodhi', u'learn', u'terror', u'sentenc', u'today']
[u'lure', u'home', u'great', u'schifcofsk']
[u'mackay', u'sugar', u'consid', u'closur']
[u'madam', u'condemn', u'suburban', u'brothel', u'surg']
[u'main', u'road', u'conced', u'muir', u'highway', u'work', u'need']
[u'remand', u'mother', u'murder', u'inquest']
[u'remand', u'lawyer', u'shoot']
[u'marathon', u'condemn', u'opportunist', u'takeov']
[u'market', u'dive', u'despit', u'media', u'gain']
[u'mayor', u'question', u'drought', u'proof', u'polici']
[u'media', u'chang', u'hurt', u'democraci', u'labor']
[u'media', u'reform', u'widespread', u'impact']
[u'meet', u'put', u'focus', u'tweed', u'drink', u'drive']
[u'charg', u'arm', u'robberi']
[u'mine', u'compani', u'director', u'say', u'asic', u'concern']
[u'minist', u'defend', u'breastscreen', u'reassess']
[u'monti', u'turn', u'shrink', u'open', u'help']
[u'north', u'kangaroo', u'radar']
[u'meet', u'cole', u'myer', u'cut']
[u'mumbai', u'bomb', u'investig', u'intensifi']
[u'mumbai', u'bomb', u'prompt', u'call', u'better', u'transport']
[u'murder', u'woman', u'face', u'court']
[u'deal', u'boost', u'polic', u'number']
[u'legal', u'offic', u'complet', u'albani', u'justic']
[u'medic', u'centr', u'high', u'demand']
[u'fund', u'health', u'servic', u'budget']
[u'relief', u'sight', u'irrig', u'water']
[u'resolut', u'wagga', u'council', u'job']
[u'nurs', u'home', u'staff', u'face', u'wag', u'delay']
[u'ogilvi', u'hungri', u'british', u'challeng']
[u'olley', u'donat', u'birthday', u'picasso', u'galleri']
[u'opposit', u'fear', u'media', u'ownership', u'chang']
[u'page', u'want', u'protect', u'water', u'suppli']
[u'pedestrian', u'die', u'highway', u'mishap']
[u'philippoussi', u'advanc', u'rhode', u'island']
[u'plan', u'gold', u'coast', u'rapid', u'transport']
[u'pledg', u'address', u'rail', u'trail', u'worri']
[u'ask', u'slow', u'water', u'trade']
[u'quiet', u'leadership', u'plan']
[u'poison', u'wreak', u'havoc', u'java']
[u'polic', u'continu', u'alburi', u'bash', u'investig']
[u'polic', u'defend', u'bail', u'paedophilia', u'accus']
[u'polic', u'investig', u'post', u'soccer', u'match', u'attack']
[u'power', u'thrive', u'champ', u'challeng']
[u'premier', u'prefer', u'howard', u'leader']
[u'princess', u'ann', u'board', u'gipsi', u'moth']
[u'protest', u'stag', u'power', u'station', u'plan']
[u'health', u'play', u'mammogram', u'reassess']
[u'liber', u'lose', u'major', u'backer']
[u'question', u'mark', u'hang', u'cristiano']
[u'rais', u'public', u'school', u'profil', u'smyth', u'urg']
[u'remain', u'search', u'killer', u'crocodil']
[u'research', u'unveil', u'messag', u'devic']
[u'resid', u'closer', u'free', u'water']
[u'riverland', u'citrus', u'estim', u'revis']
[u'rocki', u'resid', u'face', u'rate', u'rise']
[u'rotavirus', u'vaccin', u'plan', u'stymi']
[u'erupt', u'power', u'struggl']
[u'rural', u'properti', u'valu', u'steadi']
[u'ryle', u'bulldog', u'clash']
[u'scheme', u'help', u'indigen', u'cancer', u'patient']
[u'schifcofsk', u'expect', u'announc', u'switch']
[u'schifcofsk', u'move', u'famili', u'jone']
[u'scientist', u'predict', u'tree', u'growth', u'antarctica']
[u'score', u'detain', u'mumbai', u'bomb']
[u'second', u'charg', u'coupl', u'murder']
[u'shopkeep', u'assail', u'releas', u'jail']
[u'korea', u'talk', u'collaps', u'north']
[u'small', u'earthquak', u'rattl', u'melbourn', u'suburb']
[u'solicitor', u'murder', u'accus', u'face', u'court']
[u'state', u'challeng', u'embryo', u'research', u'ban']
[u'strike', u'bind', u'stolt', u'prepar', u'depart']
[u'studi', u'chart', u'futur', u'mandurah', u'growth']
[u'studi', u'find', u'disench', u'surfer', u'paradis', u'local']
[u'suspect', u'copper', u'deposit', u'prompt', u'investor']
[u'worker', u'head', u'west']
[u'indigen', u'youth', u'centr', u'plan', u'unveil']
[u'sydney', u'danc', u'compani', u'artist', u'director', u'quit']
[u'teen', u'question', u'cronulla', u'stab']
[u'tender', u'flow', u'rescu', u'chopper', u'servic']
[u'terrorist', u'lodhi', u'sentenc', u'delay']
[u'good', u'ugli']
[u'titan', u'hook', u'shark']
[u'toddler', u'injur', u'secur', u'gate', u'crush']
[u'towel', u'giant', u'cut', u'job']
[u'toxic', u'weed', u'cost', u'million']
[u'toyn', u'play', u'alic', u'dialysi', u'short', u'fall']
[u'tree', u'knowledg', u'die', u'barcaldin']
[u'tree', u'knowledg', u'poison', u'stump', u'polic']
[u'tropic', u'storm', u'pound', u'taiwan']
[u'turnbul', u'say', u'water', u'pipelin', u'plan', u'meet', u'fund']
[u'uganda', u'request', u'amnesti', u'leader']
[u'labour', u'parti', u'fundrais', u'arrest']
[u'pay', u'telstra', u'worker']
[u'unemploy', u'rate', u'stay', u'steadi']
[u'union', u'awar', u'marshal', u'bulli', u'claim']
[u'union', u'fear', u'reduc', u'riverina', u'phone', u'servic']
[u'union', u'seek', u'certainti', u'closur', u'time']
[u'union', u'warn', u'telstra', u'cut', u'hurt', u'hunter']
[u'unenthusiast', u'russian', u'korea', u'resolut']
[u'stock', u'lose']
[u'vandal', u'leav', u'trail', u'destruct', u'lismor']
[u'vanston', u'catch', u'piggeri', u'cruelti']
[u'visit', u'aim', u'inspir', u'aust', u'award', u'nomin']
[u'wasley', u'piggeri', u'reject', u'cruelti', u'claim']
[u'webcam', u'accus', u'miss', u'deploy']
[u'woman', u'remov', u'communiti', u'fatal', u'stab']
[u'wool', u'qualiti', u'product', u'agenda', u'merino']
[u'workchoic', u'impact', u'know', u'year']
[u'yellow', u'jersey', u'leav', u'gerran', u'mountain', u'climb']
[u'staff', u'expert', u'cancer', u'panel']
[u'aborigin', u'tent', u'embassi', u'claim', u'court']
[u'actor', u'comedian', u'button', u'die']
[u'great', u'push', u'injuri', u'fund']
[u'ambul', u'offic', u'strike']
[u'comeback', u'lomu']
[u'ansto', u'grant', u'nuclear', u'reactor', u'licenc']
[u'exhibit', u'extend', u'lifelin', u'chariti', u'group']
[u'asia', u'paper', u'demand', u'boon', u'plantat', u'industri']
[u'investig', u'junior', u'mine', u'compani']
[u'aussi', u'touch', u'scotland']
[u'aussi', u'softbal', u'eclips', u'china']
[u'aust', u'leader', u'agre', u'nation', u'reform']
[u'australia', u'victori', u'foil']
[u'australia', u'reopen', u'lebanon', u'embassi']
[u'author', u'probe', u'brisban', u'crush', u'death']
[u'bacteria', u'link', u'gold', u'nugget', u'format']
[u'bakeri', u'fin', u'slug', u'sandwich']
[u'ballarat', u'east', u'face', u'elect', u'contest']
[u'bash', u'accus', u'bail', u'alleg', u'withdraw']
[u'bega', u'midwif', u'end', u'labour', u'love']
[u'sponsor', u'withdraw', u'end', u'sport', u'festiv']
[u'bowler', u'reject', u'mlas', u'pipelin', u'claim']
[u'brack', u'flag', u'stem', u'cell', u'research']
[u'brown', u'promis', u'fight', u'burrup', u'develop', u'plan']
[u'bulldog', u'dragon']
[u'burger', u'confid', u'south', u'africa', u'return']
[u'businessman', u'call', u'bigger', u'art', u'precinct']
[u'cahil', u'line', u'striker', u'role', u'everton']
[u'carpent', u'hail', u'coag', u'outcom']
[u'thief', u'attack', u'broadbeach']
[u'volunt', u'await', u'date', u'protest']
[u'childcar', u'centr', u'uncertainti', u'manag', u'walk']
[u'closer']
[u'closer', u'news']
[u'coag', u'deal', u'improv', u'aborigin', u'communiti']
[u'coag', u'endors', u'nation', u'reform', u'agenda']
[u'committe', u'recommend', u'herceptin', u'subsidi']
[u'concern', u'rais', u'drink', u'smoke', u'rural']
[u'contrit', u'kieli', u'stay', u'parliament']
[u'costello', u'state', u'leader', u'fire', u'line']
[u'council', u'seek', u'help', u'clear', u'cyclon', u'tree']
[u'council', u'seek', u'help', u'stem', u'brothel', u'boom']
[u'countri', u'hour', u'highlight']
[u'court', u'allow', u'fatal', u'crash', u'accus', u'return']
[u'curtain', u'fall', u'famous', u'london', u'courthous']
[u'jail', u'counterfeit', u'currenc']
[u'task', u'forc', u'chief', u'meet', u'local']
[u'dapto', u'woman', u'welcom', u'possibl', u'review', u'attempt']
[u'davi', u'outburst', u'unfortun', u'say', u'fellow', u'swan']
[u'demand', u'boom', u'high', u'perth', u'hous']
[u'demon', u'march']
[u'demon', u'tiger', u'tactic']
[u'detect', u'investig', u'agenc', u'spark', u'concern']
[u'dfat', u'issu', u'lebanon', u'travel', u'warn']
[u'docker', u'sweat', u'carr', u'longmuir']
[u'owner', u'take', u'avoid', u'fine']
[u'clear', u'piggeri', u'cruelti']
[u'drought', u'kill', u'ancient', u'outback', u'tree']
[u'dubbo', u'tamworth', u'flow', u'begin']
[u'east', u'timores', u'urg', u'seiz', u'moment']
[u'east', u'timor', u'govt', u'swear']
[u'empir', u'rubber', u'loss', u'know', u'today']
[u'energi', u'infrastructur', u'bust', u'budget']
[u'equip', u'spark', u'start', u'whyalla', u'factori']
[u'european', u'snail', u'launceston']
[u'govt', u'back', u'univers', u'joint', u'medic', u'program']
[u'figur', u'highlight', u'region', u'fuel', u'price', u'struggl']
[u'fishermen', u'stalker', u'avoid', u'jail']
[u'fish', u'boat', u'catch', u'darwin']
[u'frost', u'affect', u'orang', u'juic']
[u'fruit', u'pick', u'say', u'grower']
[u'threaten', u'blood', u'suppli', u'safeti', u'research']
[u'fund', u'help', u'recycl', u'stormwat']
[u'gangland', u'suspect', u'agre', u'extradit']
[u'gate', u'accid', u'toddler', u'mend']
[u'gid', u'defend', u'state', u'ward', u'abus', u'report']
[u'gold', u'miner', u'announc', u'joint', u'ventur']
[u'govern', u'world']
[u'govt', u'blame', u'rape', u'investig', u'crisi']
[u'govt', u'destroy', u'local', u'industri']
[u'govt', u'tell', u'alcoa', u'want', u'fewer', u'emiss']
[u'govt', u'water', u'macquari', u'marsh']
[u'green', u'face', u'audit']
[u'green', u'group', u'attack', u'govt', u'phillip', u'rezon']
[u'green', u'group', u'back', u'wider', u'adopt', u'water']
[u'gregan', u'predict', u'dour', u'struggl']
[u'gunn', u'confirm', u'pulp', u'wood', u'plan']
[u'gusmao', u'swear', u'govern']
[u'heavi', u'machineri', u'oper', u'claim', u'discrimin']
[u'high', u'petrol', u'price', u'fuel', u'downturn', u'kimberley']
[u'spread', u'accus', u'face', u'question']
[u'hoodoo', u'guru', u'lend', u'amplifi']
[u'human', u'societi', u'win', u'right', u'file', u'lawsuit']
[u'hunt', u'continu', u'mumbai', u'bomber']
[u'huon', u'worker', u'strike', u'entitl']
[u'indonesia', u'confirm', u'bird', u'death']
[u'indi', u'driver', u'tagliani', u'look', u'forward', u'home', u'town']
[u'consid', u'sack', u'costello', u'say']
[u'inquiri', u'consid', u'bottl', u'subsidi']
[u'israel', u'bomb', u'hezbollah', u'stronghold']
[u'israel', u'hit', u'lebanon', u'target']
[u'isra', u'offens', u'step', u'olmert']
[u'isra', u'tank', u'leav', u'central', u'gaza', u'strip']
[u'israel', u'open']
[u'israel', u'plan', u'bomb', u'beirut', u'airport', u'fourth', u'time']
[u'israel', u'target', u'hezbollah', u'stronghold']
[u'israel', u'threaten', u'strike', u'hezbollah', u'leader']
[u'italian', u'club', u'await', u'match', u'fix', u'verdict']
[u'japan', u'end', u'year', u'rat', u'hold']
[u'japan', u'compromis', u'north', u'korea']
[u'jetstar', u'hope', u'interview']
[u'kilkivan', u'council', u'consid', u'water', u'warn']
[u'kimberley', u'woman', u'celebr', u'birthday']
[u'kogarah', u'heavyweight', u'tussl']
[u'koschitzk', u'near', u'return']
[u'kubica', u'fastest', u'french', u'practic']
[u'leader', u'negoti', u'nation', u'product']
[u'leader', u'strike', u'mammoth', u'reform', u'deal']
[u'marin', u'park', u'draft', u'plan', u'reveal']
[u'martin', u'applaud', u'indigen', u'plan', u'commit']
[u'martin', u'back', u'kieli', u'despit', u'stupid', u'comment']
[u'materazzi', u'face', u'fifa', u'zidan', u'incid']
[u'mayor', u'mull', u'eas', u'water']
[u'media', u'chang', u'alarm', u'protectionist']
[u'meerkat', u'pup', u'teach', u'hunt', u'studi']
[u'meet', u'team']
[u'melbourn', u'wild', u'thing']
[u'middl', u'east', u'tension', u'send', u'share', u'market', u'tumbl']
[u'middl', u'east', u'unrest', u'wipe', u'market']
[u'miner', u'find', u'zinc', u'deposit', u'kangaroo', u'island']
[u'miner', u'mark', u'golden', u'mileston']
[u'miner', u'urg', u'seek', u'deposit']
[u'miss', u'aliv', u'state', u'forest']
[u'mogg', u'exit', u'stone']
[u'evacu', u'tropic', u'storm', u'hit']
[u'time', u'bushvis', u'licenc', u'trial']
[u'moura', u'mark', u'year', u'coal', u'disast']
[u'north', u'get', u'laidley', u'approv']
[u'back', u'strzelecki', u'forest']
[u'seek', u'chang', u'cost', u'freehold', u'convers']
[u'urg', u'canungra']
[u'mum', u'wheel', u'copper']
[u'musharraf', u'pledg', u'help', u'mumbai']
[u'narromin', u'health', u'boost', u'medic']
[u'book', u'detail', u'pilbara', u'miner', u'indigen', u'relat']
[u'emerald', u'doctor', u'see', u'mileston']
[u'judg', u'appoint', u'district', u'court']
[u'nightclub', u'crash', u'driver', u'jail']
[u'arrest', u'indigen', u'abus']
[u'northcott', u'aim', u'address', u'servic']
[u'galleri', u'receiv', u'generous', u'donat']
[u'banana', u'grower', u'cash', u'price']
[u'seek', u'rotavirus', u'vaccin', u'rule', u'brief']
[u'price', u'soar']
[u'oliv', u'leav', u'cancer', u'kill', u'potenti']
[u'spot', u'licenc', u'allow']
[u'opposit', u'criticis', u'region', u'health', u'servic']
[u'opposit', u'push', u'homeless', u'shelter']
[u'opposit', u'say', u'geelong', u'bypass', u'rout', u'rush']
[u'palm', u'riot', u'accus', u'win', u'trial']
[u'petrol', u'forecast', u'litr']
[u'petrol', u'price', u'economi', u'check']
[u'polic', u'crack', u'unlicens', u'bouncer']
[u'polic', u'ignor', u'alert', u'solicitor', u'offic', u'wit']
[u'polic', u'charg', u'gold', u'coast', u'drug', u'raid']
[u'polic', u'seek', u'wit', u'latest', u'alburi', u'attack']
[u'premier', u'begin', u'coag', u'talk', u'canberra']
[u'publican', u'confid', u'falconio', u'bodi']
[u'public', u'ask', u'donat', u'bodi', u'medic', u'school']
[u'public', u'school', u'fund', u'control']
[u'public', u'look', u'world', u'oldest', u'croc']
[u'purcel', u'admit', u'emerg', u'servic', u'spend']
[u'rann', u'celebr', u'buck', u'night', u'lodg']
[u'red', u'hope', u'lure', u'queensland', u'home']
[u'redund', u'payment', u'hing', u'huon', u'sale']
[u'relat', u'fear', u'australian', u'lebanon']
[u'research', u'link', u'asthma', u'obes']
[u'respons', u'hand', u'coalit', u'forc']
[u'reveng', u'riot', u'attack', u'accus', u'face', u'court']
[u'reward', u'fail', u'bring', u'lead', u'homeless', u'man']
[u'roo', u'slap', u'wayward', u'davi']
[u'rotavirus', u'vaccin', u'rule', u'unbeliev']
[u'saff', u'sell', u'build', u'debt']
[u'saleyard', u'feel', u'cost', u'nlis']
[u'north', u'shiver', u'record', u'cold', u'snap']
[u'savag', u'blow', u'kennedi']
[u'scant', u'rainfal', u'dash', u'farmer', u'hop']
[u'scienc', u'paddock', u'win', u'award', u'school']
[u'seafood', u'associ', u'plead', u'feder', u'fund']
[u'plan', u'sink', u'north']
[u'secur', u'camera', u'consid', u'complet', u'solut']
[u'senden', u'sparkl', u'misfir']
[u'serena', u'comeback', u'blow', u'joint']
[u'sewerag', u'pond', u'overflow', u'stop']
[u'educ', u'program', u'benefit', u'student', u'studi']
[u'sheep', u'number', u'western']
[u'shepherd', u'ioan', u'lead', u'australia', u'romp']
[u'solomon', u'island', u'urg', u'help', u'riot', u'inquiri']
[u'solo', u'yachtswoman', u'cancel', u'record', u'attempt']
[u'lanka', u'rebel', u'kill', u'soldier', u'firefight']
[u'staff', u'welcom', u'plan', u'improv', u'imag', u'public']
[u'stakehold', u'discuss', u'quarantin', u'concern']
[u'state', u'urg', u'match', u'mental', u'health', u'fund']
[u'studi', u'reveal', u'higher', u'port', u'hedland', u'respiratori']
[u'swift', u'track', u'minor', u'premiership']
[u'swiss', u'keeper', u'zuberbuehl', u'join', u'west', u'brom']
[u'sydney', u'dancer', u'strand', u'lebanon']
[u'sydney', u'nuclear', u'reactor', u'give', u'final', u'approv']
[u'talk', u'save', u'convent', u'build']
[u'tall', u'black', u'level', u'boomer']
[u'teacher', u'jail', u'student']
[u'telstra', u'wont', u'rule', u'cut']
[u'telstra', u'worker', u'tell', u'local', u'loss']
[u'tiger', u'spot']
[u'tourist', u'flock', u'boulia', u'camel', u'race']
[u'trade', u'deficit', u'disappoint', u'economist']
[u'transwa', u'back', u'cost', u'effect', u'transport', u'plan']
[u'trucki', u'die', u'fieri', u'highway', u'crash']
[u'trucki', u'shortag', u'threaten', u'economi']
[u'typhoon', u'kill', u'filipino']
[u'govt', u'minist', u'question', u'donor', u'probe']
[u'medic', u'school', u'place']
[u'uranium', u'drill', u'draw', u'posit', u'result']
[u'veto', u'condemn', u'israel', u'attack']
[u'vandenberg', u'crow', u'clash']
[u'nistelrooy', u'agre', u'real', u'deal', u'report']
[u'virus', u'rule', u'hannay', u'panther', u'clash']
[u'farmer', u'desper', u'drought']
[u'western', u'down', u'tast', u'intern']
[u'weve', u'lose', u'tour', u'discoveri', u'boss']
[u'woman', u'accus', u'assault', u'extradit']
[u'wyaralong', u'famili', u'snub', u'dam', u'task', u'forc', u'chief']
[u'youth', u'express', u'view', u'bateman', u'mural']
[u'aborigin', u'lash', u'inact']
[u'adelaid', u'council', u'financi', u'posit', u'improv']
[u'adelaid', u'charg', u'child', u'offenc']
[u'agenc', u'say', u'displac', u'timor']
[u'urg', u'state', u'stem', u'cell']
[u'angler', u'angri', u'bateman', u'marin', u'park', u'plan']
[u'astronaut', u'inspect', u'heat', u'shield', u'return', u'home']
[u'aust', u'charg', u'child', u'offenc']
[u'australian', u'architectur', u'display', u'itali']
[u'bomb', u'kill', u'baghdad', u'sunni', u'mosqu', u'polic']
[u'breast', u'cancer', u'drug', u'subsidi', u'recommend', u'welcom']
[u'brown', u'urg', u'govt', u'save', u'rock']
[u'burgess', u'vault', u'victori', u'rome']
[u'chang', u'doubl', u'jeopardi', u'law', u'welcom']
[u'chaser', u'comedian', u'grossli', u'irrespons']
[u'chechen', u'rebel', u'odd', u'peac']
[u'chief', u'minist', u'hypocrit', u'harass']
[u'closer']
[u'closer']
[u'coag', u'plan', u'like', u'littl', u'late', u'indigen']
[u'comedian', u'charg', u'footbal', u'match', u'prank']
[u'concern', u'impact', u'drug', u'rehab', u'fund', u'cut']
[u'cornelia', u'adelaid']
[u'cornelia', u'miss']
[u'cornelia', u'miss', u'arnhem', u'land']
[u'council', u'flag', u'licenc']
[u'crow', u'pull', u'away', u'plucki', u'hawk']
[u'debt', u'ride', u'wine', u'maker', u'sell', u'properti', u'million']
[u'depart', u'role', u'question', u'spread', u'case']
[u'discoveri', u'leav', u'intern', u'space', u'station']
[u'doctor', u'welcom', u'coag', u'rural', u'medicin']
[u'eagl', u'pull', u'thrill', u'resurg']
[u'eel', u'hold', u'defeat', u'warrior']
[u'fear', u'coag', u'fail', u'indigen', u'problem']
[u'fear', u'antarct', u'island', u'plagu', u'rabbit']
[u'fear', u'israel', u'lebanon', u'conflict', u'turn']
[u'fear', u'israel', u'lebanon']
[u'firewood', u'drive', u'distribut', u'tonn']
[u'forestri', u'lobbi', u'defend', u'gunn', u'pulp']
[u'isra', u'sailor', u'miss', u'hezbollah', u'attack']
[u'govt', u'win', u'poki', u'despit', u'record', u'loss']
[u'great', u'artesian', u'basin', u'conserv', u'fund', u'welcom']
[u'green', u'plan', u'law', u'remov', u'public', u'input']
[u'green', u'stand', u'asid', u'amid', u'probe']
[u'gunmen', u'attack', u'checkpoint', u'kill', u'iraqi', u'soldier']
[u'gunmen', u'kidnap', u'iraqi', u'olymp', u'chief']
[u'gun', u'trade', u'bicycl', u'congo']
[u'harmison', u'strike', u'bell', u'toll', u'pakistan']
[u'hezbollah', u'chief', u'declar', u'open', u'isra']
[u'hezbollah', u'missil', u'hit', u'isra', u'warship']
[u'hous', u'kill', u'elder', u'woman']
[u'hundr', u'ralli', u'isra', u'offens']
[u'iemma', u'howard', u'continu', u'asbesto', u'fund', u'talk']
[u'veteran', u'fear', u'evict']
[u'immunis', u'rat', u'alarm', u'expert']
[u'indian', u'link', u'bomb', u'pakistani']
[u'indian', u'visit', u'survivor', u'mumbai', u'rail', u'bomb']
[u'indian', u'warn', u'damag', u'pakistan', u'peac', u'process']
[u'injur', u'gatlin', u'hope', u'race', u'powel']
[u'injuri', u'scare', u'cut', u'short', u'lomus', u'comeback']
[u'israel', u'bomb', u'hama', u'offic', u'gaza']
[u'israel', u'confirm', u'sailor', u'miss', u'naval', u'ship']
[u'isra', u'warship', u'target', u'hezbollah', u'missil']
[u'israel', u'set', u'condit', u'ceasefir']
[u'israel', u'press', u'gaza', u'assault']
[u'italian', u'giant', u'stun', u'match', u'fix', u'punish']
[u'italian', u'soccer', u'club', u'punish', u'match', u'fix']
[u'italian', u'trio', u'releg', u'match', u'fix']
[u'maze', u'know']
[u'recruit', u'best', u'anti', u'whale', u'hope', u'campbel']
[u'jackson', u'juri', u'deliv', u'split', u'verdict']
[u'john', u'holland', u'win', u'galleri', u'construct', u'tender']
[u'koschitzk', u'suffer', u'head', u'knock']
[u'societi', u'approv', u'updat', u'hous', u'sale', u'contract']
[u'leak', u'forc', u'discoveri', u'land', u'revamp']
[u'lebanon', u'evacu', u'beli', u'australian', u'claim']
[u'lebanon', u'open']
[u'licenc', u'boost', u'taxi', u'servic', u'disabl']
[u'lion', u'scrape', u'home', u'roo']
[u'malik', u'hand', u'pakistan', u'injuri', u'headach']
[u'die', u'stab', u'wound', u'parramatta', u'assault']
[u'face', u'court', u'violent', u'home', u'invas']
[u'mcewen', u'landi', u'deal', u'jersey', u'threat']
[u'mcleod', u'play', u'despit', u'train', u'absenc']
[u'melandri', u'set', u'pace', u'german', u'practic']
[u'middl', u'east', u'worri', u'stock']
[u'east', u'conflict', u'rais', u'petrol', u'price']
[u'mideast', u'open']
[u'milat', u'regain', u'prison', u'privileg']
[u'minist', u'defend', u'milat', u'privileg', u'review']
[u'mogadishu', u'airport', u'open']
[u'moura', u'mark', u'disast', u'anniversari']
[u'mugab', u'rebuff', u'state', u'emerg']
[u'nightclub', u'stab', u'investig']
[u'safe', u'lebanon', u'gambaro']
[u'bring', u'review', u'panel']
[u'appoint', u'repres', u'caledonia']
[u'opposit', u'urg', u'probe', u'parliament']
[u'pakistan', u'deni', u'support', u'mumbai', u'bomber']
[u'panther', u'grind', u'cowboy']
[u'papuan', u'kill', u'offic', u'shoot']
[u'pentagon', u'flag', u'aust', u'purchas', u'defenc', u'system']
[u'photo', u'anger', u'princess', u'diana', u'son']
[u'plan', u'chang', u'limit', u'comment', u'green']
[u'polic', u'charg', u'spread', u'accus']
[u'prison', u'return', u'sandwich', u'maker', u'milat']
[u'pulp', u'impact', u'statement', u'predict', u'nativ', u'forest']
[u'rafter', u'hall', u'fame', u'induct']
[u'ralli', u'condemn', u'illeg', u'meander']
[u'safe', u'adelaid']
[u'relat', u'question', u'dfat', u'lebanon', u'effort']
[u'relat', u'question', u'govt', u'lebanon', u'effort']
[u'reveng', u'motiv', u'say', u'gregan']
[u'rspca', u'inspect', u'delight', u'piggeri']
[u'saint', u'luckless', u'bomber']
[u'schu', u'feel', u'heat', u'final', u'french', u'practic']
[u'scolari', u'extend', u'portug', u'contract']
[u'scud', u'secur', u'semi', u'final', u'spot']
[u'eagl', u'triumphant', u'rabbitoh']
[u'secur', u'council', u'discuss', u'middl', u'east', u'crisi']
[u'senden', u'stay', u'touch']
[u'shardey', u'question', u'ambul', u'resourc']
[u'shuttl', u'astronaut', u'final', u'damag', u'inspect']
[u'silverwar', u'theft', u'part', u'nation', u'fault']
[u'suicid', u'bomber', u'kill', u'pakistani', u'cleric']
[u'suspend', u'temporari', u'work', u'visa', u'actu']
[u'takeov', u'target', u'fail', u'juli']
[u'tamil', u'tiger', u'return', u'soldier', u'bodi']
[u'tasmania', u'crack', u'truck', u'safeti']
[u'tavern', u'assault', u'victim', u'emerg', u'coma']
[u'teen', u'face', u'court', u'robberi', u'charg']
[u'thousand', u'protest', u'kashmir', u'attack']
[u'toni', u'blair', u'world', u'leader', u'item']
[u'tour', u'rider', u'face', u'scorch', u'heat', u'longest', u'stage']
[u'uganda', u'begin', u'peac', u'talk']
[u'edg', u'north', u'korea', u'resolut']
[u'union', u'call', u'extra', u'school', u'fund', u'govt']
[u'univers', u'welcom', u'extra', u'school', u'place']
[u'nistelrooy', u'ask', u'leav', u'unit']
[u'victorian', u'catch', u'speed']
[u'villag', u'flee', u'ecuador', u'erupt']
[u'govt', u'ask', u'reveal', u'knowledg', u'energi', u'payout']
[u'wallabi', u'demolish', u'springbok']
[u'wallabi', u'thrash', u'hapless', u'springbok']
[u'export', u'valu', u'highest', u'australia']
[u'util', u'urg', u'greater', u'water', u'save']
[u'weaken', u'pakistan', u'send', u'replac', u'england']
[u'western', u'power', u'redund', u'know', u'januari']
[u'take', u'hospit', u'withdraw']
[u'wildfir', u'form', u'massiv', u'california', u'blaze']
[u'abbott', u'doubt', u'state', u'pursu', u'clone', u'threat']
[u'appeal', u'kerr', u'verdict']
[u'black', u'wari', u'wound', u'springbok']
[u'urg', u'communiti', u'sport', u'fund']
[u'arrang', u'lebanon', u'evact', u'difficult', u'howard']
[u'artist', u'urg', u'appli', u'scenic', u'resid']
[u'atapattu', u'target', u'champion', u'trophi', u'return']
[u'aussi', u'play']
[u'aussi', u'softbal', u'hammer']
[u'australian', u'flee', u'lebanon']
[u'bomb', u'squad', u'destroy', u'wash', u'flare']
[u'broader', u'murder', u'investig', u'urg', u'pathologist']
[u'driver', u'union', u'hop', u'protect', u'servic']
[u'camel', u'winner', u'plan', u'titl', u'defenc']
[u'cancer', u'battl', u'give', u'kyli', u'fresh', u'outlook']
[u'cat', u'prevail', u'power']
[u'chines', u'accid', u'kill']
[u'church', u'push', u'control', u'poki']
[u'closer']
[u'closer']
[u'coalit', u'forc', u'progress', u'afghanistan']
[u'coalit', u'probe', u'afghan', u'civilian', u'death', u'claim']
[u'come', u'clean', u'leadership', u'plan', u'say', u'opposit']
[u'debnam', u'spearhead', u'ethanol', u'fuel', u'drive']
[u'declin', u'recruit', u'standard', u'worri', u'polic', u'union']
[u'democrat', u'leader', u'defend', u'kanck', u'ecstasi', u'furor']
[u'discoveri', u'leav', u'wing', u'free', u'damag']
[u'docker', u'strong', u'magpi']
[u'dog', u'surg', u'blue']
[u'dozen', u'involv', u'sydney', u'brawl']
[u'dozen', u'swap', u'knive', u'ticket']
[u'drought', u'boost', u'global', u'warm', u'scientist']
[u'ecstasi', u'damag', u'democrat', u'offici']
[u'evan', u'look', u'ahead', u'lone', u'alpin', u'rid']
[u'fatal', u'attack', u'israel', u'cross', u'line']
[u'firefight', u'gain', u'californian', u'blaze']
[u'aussi', u'champion', u'trophi']
[u'foreign', u'doctor', u'crucial', u'medic', u'school']
[u'khmer', u'roug', u'militari', u'chief', u'coma']
[u'frighten', u'australian', u'flee', u'lebanon']
[u'leader', u'tackl', u'stalem']
[u'gallagh', u'defend', u'homeless', u'children', u'studi']
[u'game', u'kick', u'chicago']
[u'govt', u'consid', u'aust', u'evacut', u'lebanon']
[u'govt', u'interven', u'alic', u'childcar', u'centr', u'crisi']
[u'govt', u'learn', u'oversea', u'train', u'terror']
[u'govt', u'prepar', u'aust', u'evacu', u'lebanon']
[u'govt', u'disput', u'respons', u'veteran', u'hous']
[u'goward', u'nomin', u'liber', u'preselect']
[u'goward', u'preselect', u'welcom']
[u'green', u'reinstat', u'clear', u'say']
[u'gunn', u'growth', u'pledg', u'hard', u'believ', u'wilder']
[u'harold', u'holt', u'pool', u'make', u'heritag', u'list']
[u'holiday', u'squeez', u'worsen', u'doctor', u'shortag']
[u'howard', u'hint', u'stay', u'leader']
[u'howard', u'say', u'lebanon', u'evacu', u'possibl', u'ferri']
[u'howard', u'say', u'liber', u'want']
[u'india', u'press', u'anti', u'terror', u'statement']
[u'indonesian', u'boat', u'catch', u'aust', u'water']
[u'indonesian', u'protest', u'condemn', u'israel', u'attack']
[u'israel', u'act', u'self', u'defenc', u'say', u'howard']
[u'israel', u'aim', u'destroy', u'hezbollah']
[u'isra', u'strike', u'continu', u'pound', u'lebanon']
[u'isra', u'troop', u'enter', u'gaza', u'strip']
[u'israel', u'strike', u'hama', u'weapon', u'factori']
[u'juventus', u'face', u'mission', u'imposs', u'coach']
[u'kanck', u'buoy', u'public', u'respons']
[u'korean', u'hospit', u'sydney', u'stab']
[u'koschitzk', u'return', u'readi']
[u'lara', u'face', u'investig', u'select', u'outburst']
[u'lava', u'flow', u'prompt', u'mayon', u'erupt', u'fear']
[u'leadership', u'rift', u'hurt', u'coalit', u'say']
[u'lebanes', u'call', u'ceas']
[u'lebanes', u'call', u'isra', u'ceas']
[u'lucki', u'adelaid', u'edg', u'victori']
[u'stab', u'fight', u'critic', u'condit']
[u'marin', u'park', u'protect', u'plan', u'defend']
[u'marin', u'sydney', u'notch', u'preseason', u'win']
[u'matilda', u'crush', u'south', u'korea']
[u'middl', u'east', u'peac', u'process', u'dead', u'arab', u'leagu']
[u'navi', u'net', u'foreign', u'fish', u'boat']
[u'head', u'take', u'cautious', u'stanc']
[u'taxi', u'assault', u'claim', u'investig']
[u'need', u'homeless', u'shelter', u'govt']
[u'north', u'korea', u'reject', u'missil', u'sanction']
[u'deal', u'russia']
[u'launch', u'prevent', u'campaign']
[u'tourism', u'minist', u'retir', u'polit']
[u'opinion', u'poll', u'influenc', u'palm', u'trial', u'locat']
[u'opposit', u'campaign', u'resign']
[u'papal', u'envoy', u'alarm', u'spate', u'filipino', u'murder']
[u'parramatta', u'river', u'fairi', u'floss', u'mysteri', u'confound']
[u'pedrosa', u'take', u'german', u'pole']
[u'phoenix', u'eye', u'home', u'semi', u'final']
[u'urg', u'extra', u'doctor', u'train', u'place']
[u'polic', u'investig', u'road', u'death']
[u'pressur', u'mount', u'mumbai', u'bomb', u'arrest']
[u'punter', u'winner', u'annual', u'camel']
[u'warn', u'wrong', u'convict', u'propos']
[u'rafter', u'induct', u'hall', u'fame']
[u'raider', u'prevail', u'golden', u'point', u'thriller']
[u'rain', u'fail', u'spoil', u'rann', u'garden', u'wed']
[u'region', u'fear', u'lebanon', u'crisi', u'worsen']
[u'reward', u'fail', u'elicit', u'murder', u'clue']
[u'rooney', u'insist', u'card', u'offenc', u'accid']
[u'rooster', u'horror']
[u'rooster', u'lose', u'streak']
[u'royal', u'societi', u'induct', u'sar', u'expert']
[u'investig', u'internet', u'demerit', u'point', u'trade']
[u'schu', u'take', u'french', u'pole']
[u'scud', u'fire', u'hall', u'fame', u'final']
[u'seafood', u'industri', u'bodi', u'restructur']
[u'seal', u'move', u'paddock', u'hors']
[u'senden', u'snare', u'shoot', u'lead']
[u'korea', u'issu', u'flood', u'crisi', u'warn']
[u'solskjaer', u'determin', u'lose', u'time']
[u'somali', u'islamist', u'enter', u'peac', u'talk', u'despit']
[u'storm', u'repel', u'improv', u'knight']
[u'storm', u'good', u'improv', u'knight']
[u'tasmanian', u'dupe', u'govt']
[u'tcci', u'urg', u'support', u'pulp']
[u'teenag', u'die', u'stab', u'wound']
[u'thwait', u'flag', u'trail', u'bike', u'crackdown']
[u'townsvill', u'racist', u'despit', u'trial']
[u'tropic', u'storm', u'kill', u'score', u'china']
[u'impos', u'weapon', u'sanction', u'north', u'korea']
[u'impos', u'weapon', u'sanction', u'north', u'korea']
[u'vote', u'impos', u'weapon', u'sanction', u'north', u'korea']
[u'hindus', u'question', u'fijian', u'standard']
[u'victoria', u'invest', u'extra', u'renew', u'energi']
[u'victorian', u'opera', u'debut', u'pack', u'hous']
[u'villag', u'flee', u'ecuador', u'volcano', u'spew', u'melt', u'rock']
[u'voigt', u'win', u'stage', u'pereiro', u'take', u'yellow']
[u'wallabi', u'forward', u'answer', u'critic', u'say', u'gregan']
[u'watkin', u'mull', u'cctv', u'bus']
[u'women', u'centr', u'call', u'fund']
[u'yousuf', u'lift', u'pakistan', u'unbeaten', u'centuri']
[u'kill', u'iraq', u'market', u'massacr']
[u'billion', u'fund', u'mental', u'health']
[u'australian', u'evacu', u'lebanon']
[u'abbott', u'deni', u'health', u'insur', u'rebat', u'ineffect']
[u'aborigin', u'embrac', u'capit']
[u'seek', u'fund', u'doctor', u'shortag']
[u'launch', u'school', u'fund', u'campaign']
[u'afghan', u'raid', u'kill', u'qaeda', u'fighter']
[u'group', u'warn', u'rate', u'rise']
[u'aird', u'stand', u'econom', u'growth', u'forecast']
[u'raid', u'retali', u'haifa', u'attack', u'israel']
[u'leagu', u'snap', u'asian', u'champion', u'leagu', u'spot']
[u'arm', u'youth', u'recip', u'disast', u'polic']
[u'asbesto', u'find', u'expect', u'stop', u'rail', u'upgrad']
[u'question', u'goward', u'nomin']
[u'aussi', u'assum', u'underdog', u'status', u'silver', u'fern']
[u'aussi', u'complet', u'clean', u'sweep']
[u'aussi', u'domin', u'triathlon']
[u'aussi', u'softbal', u'play']
[u'aust', u'consult', u'israel', u'lebanon', u'evacu']
[u'autopsi', u'schedul', u'remain', u'near', u'crocodil']
[u'barr', u'stand', u'school', u'cost', u'calcul']
[u'crowd', u'turn', u'festiv', u'food', u'wine']
[u'birdsvill', u'name', u'cleanest', u'town']
[u'bledislo', u'ticket', u'go']
[u'boat', u'seizur', u'hurt', u'fish', u'syndic']
[u'boomerang', u'come', u'success', u'flight']
[u'bronco', u'champ', u'ahead', u'cowboy', u'clash']
[u'broom', u'resid', u'camel', u'oper']
[u'bush', u'blair', u'mideast', u'chat', u'catch', u'open', u'microphon']
[u'cabinet', u'consid', u'herceptin', u'subsidi', u'urgent']
[u'cairn', u'join', u'disabl', u'awar', u'week']
[u'camplin', u'hang', u'ski']
[u'boost', u'mine', u'lead', u'zinc', u'grade']
[u'charg', u'lay', u'abus', u'aborigin', u'communiti']
[u'childcar', u'centr', u'seek', u'place']
[u'childcar', u'committe', u'resign', u'lose', u'director']
[u'chines', u'flood', u'toll', u'reach']
[u'chines', u'blast', u'toll', u'rise']
[u'closer']
[u'closer']
[u'closer']
[u'confer', u'examin', u'dog', u'human', u'health', u'link']
[u'confus', u'surround', u'iraqi', u'market', u'attack']
[u'construct', u'worker', u'demand', u'site', u'allow']
[u'coron', u'call', u'road', u'safeti', u'instruct']
[u'cossack', u'award', u'hail', u'success']
[u'cossu', u'remand', u'custodi']
[u'councillor', u'declar', u'return', u'mark']
[u'council', u'request', u'brief', u'water', u'polici']
[u'cross', u'injuri', u'worri', u'storm']
[u'cyclist', u'knock', u'bike', u'south', u'casino']
[u'chief', u'prepar', u'hold', u'talk']
[u'predict', u'hurt', u'local', u'busi']
[u'democrat', u'founder', u'aghast', u'parti', u'problem']
[u'discoveri', u'shuttl', u'land', u'safe']
[u'dizzi', u'bichel', u'form', u'england']
[u'dog', u'sniff', u'alic', u'airport', u'drug']
[u'drought', u'choke', u'carbon', u'dioxid', u'absorpt']
[u'face', u'court', u'stab', u'murder']
[u'effici', u'wash', u'machin', u'rebat', u'demand']
[u'elliott', u'prais', u'raider', u'nerv']
[u'evan', u'chanc', u'alp', u'manag']
[u'wife', u'admit', u'murder', u'trial']
[u'farmer', u'warn', u'bait', u'dead', u'dog']
[u'father', u'plead', u'guilti', u'babi', u'manslaught']
[u'femal', u'jockey', u'win', u'melbourn', u'camel', u'race']
[u'ravag', u'church', u'demolish']
[u'dead', u'indonesian', u'quak', u'tsunami']
[u'foley', u'regret', u'stoush', u'xenophon']
[u'springbok', u'white', u'head']
[u'hospit', u'follow', u'weekend', u'assault']
[u'seal', u'make', u'unusu', u'journey']
[u'call', u'restraint', u'middl', u'east', u'conflict']
[u'leader', u'middl', u'east', u'ceas']
[u'summit', u'focus', u'turn', u'middl', u'east', u'trade']
[u'gippsland', u'flood', u'watch']
[u'girl', u'succumb', u'crash', u'injuri']
[u'good', u'rain', u'end', u'town', u'seven', u'year', u'spell']
[u'govt', u'consid', u'rescu', u'plan', u'trap', u'aussi']
[u'green', u'group', u'renew', u'power', u'polici']
[u'group', u'disput', u'govt', u'figur', u'school', u'closur']
[u'health', u'insur', u'bodi', u'reject', u'rebat', u'critic']
[u'hockeyroo', u'finish', u'fifth', u'champion', u'trophi']
[u'hospit', u'action', u'group', u'odd', u'doctor']
[u'hospit', u'clinic', u'talk', u'staff', u'level']
[u'hospit', u'beat', u'deliv']
[u'howard', u'outlin', u'energi', u'superpow', u'vision']
[u'howard', u'outlin', u'water', u'energi', u'vision']
[u'howard', u'water', u'energi', u'plan', u'distract']
[u'howard', u'unfaz', u'opinion', u'poll']
[u'immigr', u'admit', u'detent', u'secur', u'laps']
[u'indian', u'call', u'pakistan', u'combat', u'terror']
[u'indigen', u'elder', u'order', u'shepparton', u'foot', u'patrol']
[u'indonesian', u'fish', u'boat', u'catch', u'aust', u'water']
[u'inquest', u'hear', u'esb', u'updat', u'inadequ']
[u'israel', u'flatten', u'foreign', u'ministri', u'hama', u'offic']
[u'isra', u'strike', u'continu']
[u'israel', u'retali', u'haifa', u'strike']
[u'israel', u'continu', u'offens']
[u'israel', u'vow', u'retali', u'haifa', u'attack']
[u'israel', u'warn', u'increas', u'strike']
[u'israel', u'warn', u'villag', u'flee']
[u'jakarta', u'quak', u'spark', u'tsunami', u'watch']
[u'jayawardena', u'stay', u'lankan', u'captain']
[u'jetstar', u'investig', u'soccer', u'team', u'strand']
[u'jone', u'wait', u'news', u'ash', u'fate']
[u'judg', u'suspend', u'jail', u'term', u'danger', u'drive', u'case']
[u'judiciari', u'sonni']
[u'kanck', u'lose', u'confid', u'vote', u'sourc']
[u'karijini', u'nation', u'park', u'plan', u'provid', u'cabin']
[u'edg', u'gulbi', u'claim', u'ohio']
[u'kobelk', u'miss', u'polic', u'negoti']
[u'koschitzk', u'report', u'umpir']
[u'koschitzk', u'undergo', u'test']
[u'kovco', u'death', u'accident', u'docto']
[u'kovco', u'death', u'accid', u'pathologist']
[u'kovco', u'parent', u'want', u'testimoni', u'troop', u'iraq']
[u'land', u'dept', u'reject', u'land', u'owner', u'cost', u'critic']
[u'liber', u'minist', u'leadership', u'feud']
[u'grape', u'price', u'leav', u'grower', u'whine']
[u'magistr', u'clear', u'woocoo', u'council', u'chief', u'execut']
[u'die', u'run']
[u'guilti', u'manslaught', u'murder']
[u'get', u'suspend', u'jail', u'term', u'danger', u'drive']
[u'injur', u'wed', u'chapel', u'collaps']
[u'manslaught', u'case', u'adjourn', u'amid', u'patholog', u'concern']
[u'maoist', u'raid', u'kill', u'indian', u'villag']
[u'marsh', u'consider', u'india', u'clash']
[u'martin', u'mislead', u'public', u'customari']
[u'matthew', u'impress', u'lion', u'fight', u'qualiti']
[u'mayor', u'push', u'public', u'phone', u'stay']
[u'mcphee', u'face', u'match']
[u'middl', u'east', u'compromis', u'urg', u'onslaught', u'continu']
[u'middl', u'east', u'experi', u'bloodiest', u'conflict']
[u'middl', u'east', u'violenc', u'dampen', u'share', u'trade']
[u'middl', u'east', u'worri', u'push', u'market']
[u'mitchel', u'unfaz', u'kerr', u'punish']
[u'mobil', u'refineri', u'mothbal', u'period', u'extend']
[u'medic', u'place', u'see', u'posit']
[u'motorcyclist', u'suffer', u'head', u'injuri', u'highway', u'crash']
[u'murder', u'accus', u'teen', u'grant', u'bail']
[u'muslim', u'leader', u'seek', u'urgent', u'meet', u'jewish']
[u'chang', u'sherri', u'port', u'label']
[u'nasa', u'wake', u'discoveri', u'crew', u'land']
[u'nation', u'award', u'recognis', u'school', u'farm', u'focus']
[u'chief', u'eas', u'toll', u'fund', u'highway']
[u'taxi', u'assault', u'claim', u'disappoint']
[u'marin', u'park', u'plan', u'upset', u'fish', u'environment']
[u'butter', u'suspend', u'europ']
[u'look', u'lebanon', u'evacu']
[u'engin', u'firm', u'celebr', u'mileston']
[u'ozpoki', u'open']
[u'paedophilia', u'accus', u'grant', u'bail']
[u'palm', u'student', u'share', u'croc', u'festiv', u'cultur']
[u'partnership', u'rehabilit', u'derwent', u'river', u'catchment']
[u'petrol', u'price', u'lift', u'inflat', u'rate']
[u'petrol', u'station', u'owner', u'expect', u'theft', u'rise']
[u'philippoussi', u'enjoy', u'rank', u'rise']
[u'plan', u'scale', u'bulli', u'brickwork', u'site']
[u'plea', u'empir', u'rubber', u'worker', u'return', u'work']
[u'urg', u'patienc', u'lebanon', u'evacu']
[u'polic', u'enact', u'licenc', u'power']
[u'polic', u'hunt', u'griffith', u'arm', u'bandit']
[u'polic', u'probe', u'alic', u'vandal']
[u'polic', u'probe', u'electron', u'store', u'theft', u'review']
[u'poll', u'show', u'public', u'believ', u'costello']
[u'price', u'worri', u'renew', u'energi', u'target']
[u'prosecutor', u'refus', u'charg', u'london', u'polic']
[u'public', u'believ', u'costello', u'leadership', u'debat']
[u'fli', u'doctor', u'recruit', u'therapist']
[u'question', u'aris', u'council', u'convent', u'fund']
[u'rain', u'mix', u'bless', u'west']
[u'rain', u'eas', u'time', u'goulburn', u'valley', u'farmer']
[u'rainfal', u'boost', u'riverland', u'malle']
[u'rainfal', u'hit', u'livestock', u'sale', u'number']
[u'rain', u'forc', u'evacu', u'japan']
[u'rain', u'help', u'save', u'central', u'victorian', u'crop']
[u'rain', u'offer', u'grain', u'crop', u'hope']
[u'rain', u'set', u'graingrow', u'western']
[u'rain', u'welcom', u'wish']
[u'ralli', u'plan', u'rail', u'chang', u'plan']
[u'rampant', u'wallabi', u'need', u'improv', u'connolli']
[u'reform', u'payrol', u'ripper']
[u'roo', u'catch', u'dump', u'davi']
[u'rossi', u'battl', u'german', u'motogp']
[u'russia', u'open', u'beef', u'export', u'market']
[u'educ', u'cours', u'upset', u'famili']
[u'school', u'fund', u'campaign', u'target', u'state']
[u'second', u'charg', u'mallia', u'murder']
[u'seqwat', u'hop', u'rain', u'catchment']
[u'shoot', u'payout', u'end', u'iraqi', u'trade', u'threat']
[u'sidebottom', u'hit', u'campaign', u'trail', u'earli']
[u'site', u'memori', u'erect', u'kill']
[u'skill', u'shortag', u'hit', u'canberra', u'hard']
[u'sleepi', u'town', u'oppos', u'room', u'motel', u'complex']
[u'smith', u'famili', u'close', u'emerg', u'help', u'centr']
[u'smith', u'say', u'dog']
[u'smoke', u'level', u'rise', u'smut', u'affect', u'cane', u'burn']
[u'somali', u'govt', u'say', u'form', u'team', u'meet']
[u'accus', u'dead', u'assault', u'father']
[u'south', u'east', u'farm', u'steadi', u'soak']
[u'south', u'east', u'rainfal', u'prove', u'patchi']
[u'southern', u'lebanon', u'raid', u'continu']
[u'state', u'govern', u'dig', u'garfish', u'closur']
[u'steal', u'gun', u'trigger', u'polic', u'fear']
[u'stricken', u'sugar', u'carrier']
[u'stuart', u'deni', u'rooster', u'look', u'offload', u'finch']
[u'suicid', u'bomb', u'kill', u'iraq']
[u'takeov', u'hamper', u'gold', u'search']
[u'tasmania', u'economi', u'predict', u'lose', u'grind']
[u'teen', u'arrest', u'girl', u'death']
[u'thousand', u'continu', u'fight', u'california', u'fire']
[u'load', u'aust', u'evacu', u'lebanon']
[u'toddler', u'death', u'prompt', u'meningococc', u'warn']
[u'tough', u'slog', u'predict', u'artist']
[u'tour', u'trio', u'deck']
[u'townsvill', u'jail', u'facil', u'revamp']
[u'town', u'good', u'countri', u'weekend', u'clash']
[u'tradit', u'owner', u'timber', u'creek', u'claim']
[u'train', u'crash', u'prompt', u'safeti', u'measur', u'upgrad']
[u'transport', u'report', u'embarrass', u'labor']
[u'truss', u'dismiss', u'fear', u'price', u'soar', u'past']
[u'union', u'welcom', u'bluescop', u'chief', u'comment']
[u'unlicens', u'driver', u'jail', u'crash']
[u'vandal', u'power', u'eimeo']
[u'vandal', u'target', u'hous']
[u'vickerman', u'expect', u'face', u'black']
[u'economi', u'burst', u'seam', u'report', u'say']
[u'warrior', u'batsman', u'get']
[u'white', u'keen', u'stay', u'springbok', u'coach']
[u'white', u'whale', u'spot', u'north']
[u'wider', u'drought', u'relief', u'seek']
[u'worker', u'hop', u'holden', u'sale']
[u'world', u'power', u'work', u'lebanon', u'stabilis', u'forc']
[u'bird', u'smuggler', u'fin']
[u'ymca', u'move', u'reopen']
[u'breast', u'cancer', u'panel', u'research']
[u'abort', u'trial', u'hear', u'gross', u'neglig']
[u'deal', u'secur', u'water', u'region', u'communiti']
[u'adelaid', u'oval', u'farewel', u'victori', u'test', u'veteran']
[u'administr', u'appoint', u'dysfunct', u'mutijulu']
[u'confid', u'asian', u'qualifi', u'ahead']
[u'play', u'complaint', u'umpir']
[u'putin', u'triumph', u'hangov']
[u'black', u'recal', u'thorn', u'springbok', u'clash']
[u'warn', u'govt', u'shortag']
[u'analyst', u'claim', u'confid', u'cudeco', u'despit', u'fall']
[u'anger', u'probat', u'drink', u'drive', u'mother']
[u'armstrong', u'spell', u'team']
[u'urg', u'nation', u'comp', u'hold']
[u'aussi', u'softbal', u'beat']
[u'aussi', u'shine', u'madrid']
[u'australian', u'evacu', u'effort', u'intensifi']
[u'australian', u'evacu', u'lebanon']
[u'australian', u'singer', u'wed', u'partner']
[u'aust', u'survivor', u'tell', u'metr', u'tsunami']
[u'author', u'decid', u'euthanis', u'beach', u'babi']
[u'author', u'recaptur', u'escap', u'detaine']
[u'awex', u'backflip', u'auction', u'room', u'decis']
[u'banana', u'industri', u'expect', u'regain', u'strength']
[u'beatti', u'reject', u'claim', u'review', u'pledg']
[u'franci', u'guilti', u'magistr', u'remark']
[u'bowden', u'challeng', u'strike', u'charg']
[u'bowden', u'cop', u'match']
[u'brisban', u'hous', u'compani', u'assur', u'whitsunday']
[u'bronco', u'hodg', u'cowboy', u'clash']
[u'brough', u'step', u'pressur', u'customari']
[u'brumbi', u'young', u'verg', u'quit', u'rugbi']
[u'bullet', u'black', u'undergo', u'surgeri']
[u'bushfir', u'coron', u'urg', u'communic']
[u'call', u'peacekeep', u'forc', u'middl', u'east']
[u'camel', u'competit', u'fierc', u'western']
[u'canberra', u'link', u'asteroid', u'detect', u'telescop']
[u'catfish', u'steal', u'aquarium', u'supplier']
[u'cat', u'file', u'complaint', u'umpir', u'comment']
[u'cattl', u'suppli', u'assur', u'cut', u'competit']
[u'chiquita', u'share', u'price', u'rise', u'takeov']
[u'closer']
[u'closer']
[u'readi', u'contest', u'elect', u'resign']
[u'coff', u'harbour', u'host', u'blitz']
[u'communiti', u'push', u'migrant']
[u'conflict', u'hinder', u'evacu', u'lebanon']
[u'coonawarra', u'wine', u'score', u'drop', u'wine']
[u'coral', u'diseas', u'outbreak', u'prevent', u'scientist']
[u'council', u'contract', u'standardis', u'propos', u'welcom']
[u'councillor', u'focus', u'entertain', u'centr']
[u'councillor', u'continu', u'state', u'elect']
[u'council', u'merger', u'plan', u'includ', u'kangaroo']
[u'council', u'consid', u'convinc', u'grind', u'plan']
[u'council', u'union', u'reach', u'agreement', u'staff', u'chang']
[u'council', u'urg', u'time', u'art', u'precinct']
[u'court', u'decid', u'releas', u'document']
[u'court', u'urg', u'drop', u'energex', u'boss', u'child']
[u'crisi', u'centr', u'put', u'tsunami', u'death', u'toll']
[u'crocker', u'line', u'return', u'shark']
[u'cyclist', u'miss', u'anniversari', u'ceremoni']
[u'dam', u'task', u'forc', u'hold', u'gather']
[u'davi', u'futur', u'swan', u'guarante', u'roo']
[u'deputi', u'mayor', u'run', u'christian', u'democrat', u'seat']
[u'doctor', u'group', u'call', u'govern', u'support']
[u'control', u'improv', u'life', u'remot', u'communiti']
[u'dozen', u'kill', u'iraq', u'bomb', u'explos']
[u'play', u'cane', u'smut', u'financi', u'impact']
[u'say', u'pool', u'fish', u'idea']
[u'dragon', u'chief', u'quit', u'short', u'stay']
[u'drought', u'put', u'pressur', u'cabonn', u'shire', u'child', u'care']
[u'eagl', u'suspend', u'gardin', u'contract']
[u'emerg', u'crew', u'brace', u'plane', u'land']
[u'emerg', u'land', u'prompt', u'fleet', u'ground']
[u'escap', u'forc', u'dept', u'shift', u'detaine', u'interst']
[u'evan', u'finish', u'podium', u'say', u'roger']
[u'fleet', u'ground', u'emerg', u'land']
[u'land', u'safe', u'emerg']
[u'make', u'emerg', u'land']
[u'facilit', u'review', u'council', u'merger']
[u'fail', u'cooper', u'takeov', u'boost', u'beer', u'sale']
[u'farmer', u'criticis', u'construct']
[u'farmer', u'hope', u'hazelnut', u'market']
[u'farmer', u'pass', u'motion', u'consult']
[u'farmer', u'predict', u'pipelin', u'save', u'lake', u'eildon']
[u'farmer', u'compens', u'vitamin', u'price']
[u'fear', u'futur', u'hume', u'highway', u'driver', u'rest', u'spot']
[u'feder', u'govt', u'urg', u'consid', u'water', u'fund', u'chang']
[u'financi', u'servic', u'shut', u'door']
[u'firefight', u'protest', u'ralli', u'postpon']
[u'charg', u'chariti', u'worker', u'murder']
[u'fund', u'offer', u'colorado', u'takeov']
[u'fund', u'boost', u'truanci', u'scheme']
[u'funer', u'tomorrow', u'deputi', u'lord', u'mayor']
[u'gardin', u'question', u'perth', u'crash']
[u'explor', u'closer', u'colac']
[u'leak', u'seal', u'firefight']
[u'gasnier', u'doubt', u'raider', u'clash']
[u'goulburn', u'airport', u'rent']
[u'govern', u'call', u'tourist', u'rout', u'upgrad', u'tender']
[u'govern', u'provid', u'million', u'improv', u'lake', u'water']
[u'govern', u'target', u'dodgi', u'seafood', u'oper']
[u'govt', u'accus', u'cave', u'mobil', u'refineri']
[u'govt', u'defend', u'lebanon', u'crisi', u'respons']
[u'govt', u'launch', u'youth', u'mental', u'health', u'program']
[u'govt', u'water', u'fund', u'say', u'turnbul']
[u'gunmen', u'attack', u'home', u'gaza', u'secur', u'chief', u'kill']
[u'haifa', u'pmopen']
[u'baler', u'fail', u'meet', u'safeti', u'standard', u'survey']
[u'hezbollah', u'continu', u'attack', u'haifa']
[u'holiday', u'relief', u'overwork', u'doctor']
[u'hop', u'power', u'restor', u'south', u'coast', u'home']
[u'howard', u'arriv', u'dili']
[u'howard', u'meet', u'timor']
[u'hundr', u'kill', u'miss', u'java', u'tsunami']
[u'bogut', u'readi', u'face', u'tall', u'black']
[u'india', u'final', u'adopt', u'cricket']
[u'indigen', u'group', u'say', u'feder', u'fund']
[u'indonesian', u'beach', u'town', u'devast', u'tsunami']
[u'isra', u'armi', u'leav', u'gaza', u'town', u'offens', u'continu']
[u'israel', u'reject', u'evacu', u'ceas', u'request']
[u'israel', u'vow', u'continu', u'attack', u'lebanon']
[u'israel', u'vow', u'continu', u'militari', u'offens']
[u'israel', u'vow', u'fight', u'palestinian']
[u'israel', u'wont', u'rule', u'lebanon', u'grind', u'assault']
[u'itali', u'skipper', u'lead', u'exodus', u'juve', u'report']
[u'japan', u'look', u'financi', u'sanction', u'north', u'korea']
[u'jaqu', u'put', u'australia', u'control']
[u'jobless', u'worker', u'wait', u'assist']
[u'kountouri', u'succeed', u'alcott', u'australia', u'physio']
[u'kovco', u'room', u'clean', u'forens', u'exam', u'inquiri']
[u'kovco', u'room', u'clean', u'test', u'inquiri', u'tell']
[u'castlemain', u'issu', u'recal', u'worker']
[u'landhold', u'seek', u'wild', u'river', u'talk']
[u'land', u'gear', u'problem', u'forc', u'dump', u'fuel']
[u'larsson', u'quit', u'intern', u'footbal']
[u'liber', u'say', u'public', u'hous', u'prioriti']
[u'loom', u'lettuc', u'shortag', u'prompt', u'grower']
[u'macedon', u'rang', u'council', u'decid', u'wind', u'farm']
[u'face', u'court', u'tast', u'contamin']
[u'stabl', u'condit', u'polic', u'shoot']
[u'market', u'close', u'lower', u'mix']
[u'matilda', u'post', u'second', u'asian']
[u'mayor', u'urg', u'control', u'council']
[u'meander', u'work', u'ongo', u'despit', u'rock', u'fall']
[u'miner', u'boom', u'spark', u'huge', u'port', u'expans']
[u'minist', u'deni', u'delay', u'water', u'agreement']
[u'mix', u'victori', u'tradit', u'timber', u'creek', u'owner']
[u'moodi', u'star', u'rise']
[u'australian', u'leav', u'lebanon']
[u'donat', u'urg', u'breast', u'cancer', u'onlin']
[u'dead', u'indonesian', u'tsunami']
[u'fear', u'dead', u'indonesian', u'tsunami']
[u'confid', u'mcpherson']
[u'fear', u'greenhous', u'plan', u'drive', u'away', u'industri']
[u'resign', u'labor', u'murder', u'book']
[u'nasa', u'resum', u'regular', u'shuttl', u'flight']
[u'figur', u'highlight', u'appal', u'drought']
[u'resid', u'group', u'scrutinis', u'council']
[u'night', u'raid', u'shake', u'lebanon', u'israel', u'vow']
[u'agreement', u'polic', u'rise']
[u'novelist', u'mickey', u'spillan', u'die']
[u'govt', u'dismiss', u'howard', u'critic', u'water']
[u'lobbi', u'public', u'transport', u'concess']
[u'offic', u'escap', u'charg', u'london', u'shoot']
[u'ogilvi', u'expect', u'major', u'breakthrough', u'british', u'link']
[u'papuan', u'face', u'court', u'worker', u'death']
[u'petit', u'urg', u'council', u'surrend', u'goolawah']
[u'petrol', u'theft', u'increas', u'price', u'climb', u'higher']
[u'reassur', u'dili', u'aust', u'support']
[u'polari', u'secur', u'north', u'west', u'iron', u'project']
[u'polic', u'communiti', u'support']
[u'polic', u'investig', u'hermannsburg', u'death']
[u'polic', u'minist', u'urg']
[u'polic', u'seek', u'help', u'search', u'woman', u'bodi']
[u'polic', u'shoot', u'melbourn', u'stand']
[u'polic', u'tour', u'kimberley', u'indigen', u'communiti']
[u'polic', u'widen', u'investig', u'librari', u'assault']
[u'portabl', u'heater', u'set', u'build', u'alight', u'kilda']
[u'power', u'wont', u'turn', u'life', u'support', u'woman']
[u'public', u'comment', u'seek', u'perth', u'bunburi', u'highway']
[u'rabbit', u'wreak', u'havoc', u'macquari', u'island']
[u'promis', u'oper', u'review']
[u'record', u'aussi', u'conting', u'contest', u'open']
[u'redback', u'retain', u'lehmann', u'captain']
[u'region', u'town', u'lose', u'driver', u'licenc', u'test']
[u'region', u'infrastructur', u'vital', u'strateg']
[u'rescuer', u'hunt', u'indonesia', u'tsunami', u'survivor']
[u'research', u'develop', u'vaccin', u'sex', u'dog']
[u'research', u'report', u'growth', u'humpback', u'whale', u'number']
[u'role', u'model', u'mundin', u'join', u'fight', u'petrol']
[u'rural', u'ambul', u'review', u'prompt', u'manag', u'overhaul']
[u'rural', u'ambul', u'receiv', u'oper']
[u'scientist', u'fear', u'chanc', u'slim', u'beach', u'babi']
[u'score', u'kill', u'indonesian', u'tsunami']
[u'secker', u'back', u'local', u'news', u'guarante']
[u'second', u'front', u'court', u'underworld', u'figur']
[u'sever', u'tropic', u'storm', u'wreak', u'havoc', u'china']
[u'sewag', u'leak', u'major', u'heath', u'risk', u'local']
[u'sharpham', u'elect', u'deputi', u'mayor']
[u'shoaib', u'chanc', u'test']
[u'short', u'wait', u'expect', u'spirit', u'redund', u'news']
[u'sleep', u'disord', u'mine', u'worker', u'rise']
[u'snowi', u'mountain', u'murder', u'mysteri', u'premier', u'sydney']
[u'malle', u'farmer', u'miss', u'good', u'rain']
[u'space', u'shuttl', u'discoveri', u'return', u'earth']
[u'spate', u'break', u'orana', u'region']
[u'starl', u'erad', u'step']
[u'strand', u'tourist', u'begin', u'leav', u'tibooburra']
[u'strauss', u'happi', u'stand', u'flintoff']
[u'strip', u'club', u'assault', u'charg', u'eminem', u'drop']
[u'student', u'associ', u'beat', u'restructur']
[u'student', u'repres', u'nation', u'space', u'olymp']
[u'sustain', u'polici', u'chang', u'victorian', u'shop']
[u'team', u'mat', u'honour', u'gillett', u'year']
[u'tendulkar', u'declar', u'seri']
[u'thousand', u'flee', u'lebanon', u'violenc']
[u'kill', u'hurt', u'fresh', u'violenc', u'lanka']
[u'tour', u'favourit', u'mountain', u'free']
[u'tribun', u'leav', u'toxic', u'wast', u'dump']
[u'troop', u'leav', u'dili', u'say', u'howard']
[u'ullrich', u'tri', u'face', u'ultimatum']
[u'peacekeep', u'need', u'middl', u'east', u'annan', u'blair']
[u'warn', u'humanitarian', u'crisi', u'lebanon']
[u'forc', u'face', u'heavi', u'fight', u'afghanistan']
[u'violenc', u'intensifi', u'middl', u'east']
[u'labor', u'prepar', u'preselect', u'battl']
[u'weekend', u'rain', u'leav', u'lake']
[u'wind', u'farm', u'track', u'renew', u'energi']
[u'woolworth', u'record', u'surg', u'sale']
[u'work', u'begin', u'cape', u'jaffa', u'marina']
[u'work', u'continu', u'plan', u'chang', u'industri']
[u'youth', u'survey', u'highlight', u'citycountri', u'differ']
[u'youth', u'vandal', u'cost', u'jindabyn', u'communiti']
[u'need', u'commit', u'greenhous', u'strategi']
[u'coordin', u'lebanon', u'evacu']
[u'dismiss', u'cat', u'complaint']
[u'grant', u'blue', u'packag']
[u'afl', u'respons', u'umpir', u'complaint', u'expect']
[u'honour', u'canberra', u'polic']
[u'antarct', u'research', u'risk', u'bone', u'densiti']
[u'kick', u'septemb']
[u'appeal', u'process', u'begin', u'power', u'plant']
[u'applic', u'drop', u'child', u'charg']
[u'asbesto', u'campaign', u'encourag', u'talk']
[u'target', u'sharehold', u'properti', u'investor']
[u'audit', u'reveal', u'corrupt', u'cemeteri', u'industri']
[u'aussi', u'boost', u'elli', u'return']
[u'aussi', u'head', u'ship', u'lebanon', u'raid', u'continu']
[u'aust', u'climber', u'bodi', u'recov', u'peru']
[u'australia', u'command', u'cairn']
[u'australia', u'bag', u'rice', u'deal', u'suppli', u'south', u'korea']
[u'aust', u'troop', u'leav', u'east', u'timor']
[u'batter', u'springbok', u'ring', u'chang', u'black']
[u'beatti', u'urg', u'robert', u'sleep', u'quit', u'plan']
[u'beirut', u'open']
[u'toowoomba', u'drought', u'proof']
[u'bombola', u'seek', u'chatsworth', u'preselect']
[u'surfer', u'tell', u'pretti', u'scari', u'tsunami', u'encount']
[u'exhibit', u'rais', u'breast', u'cancer', u'awar']
[u'bronco', u'concern', u'cowboy', u'crisi']
[u'businessman', u'face', u'fine', u'illeg', u'abalon']
[u'busi', u'help', u'disast', u'prepar']
[u'caltex', u'chief', u'predict', u'rise', u'petrol', u'cost']
[u'canberra', u'meet', u'focus', u'cane', u'smut', u'respons', u'plan']
[u'carlton', u'assist', u'deal', u'close', u'say', u'demetriou']
[u'cctv', u'standard', u'polic', u'better', u'access', u'say']
[u'central', u'continu', u'drought']
[u'chanc', u'nullarbor', u'drought']
[u'chemic', u'control', u'fli', u'fox']
[u'china', u'japan', u'post', u'win', u'asian']
[u'chiquita', u'takeov', u'affect', u'riverland', u'oper']
[u'climat', u'chang', u'expert', u'urg', u'industri']
[u'closer']
[u'closer']
[u'commiss', u'say', u'meander', u'safeti', u'concern']
[u'committe', u'hop', u'steer', u'bureau', u'financi']
[u'commod', u'nudg', u'market', u'lower']
[u'commonwealth', u'reach', u'water', u'agreement']
[u'communiti', u'worri', u'wind', u'farm', u'propos']
[u'concern', u'australian', u'trap', u'lebanon']
[u'coolac', u'bypass', u'expect', u'start']
[u'council', u'agre', u'recycl', u'water', u'irrig']
[u'council', u'defer', u'decis', u'goulburn', u'airport', u'sale']
[u'council', u'highlight', u'meet', u'procedur', u'breach']
[u'council', u'like', u'rtas', u'prefer', u'ramp']
[u'councillor', u'call', u'resign', u'advisori', u'committe']
[u'council', u'releas', u'budget']
[u'council', u'water', u'initi', u'hurt', u'rat', u'revenu']
[u'council', u'leas', u'accommod', u'facil']
[u'court', u'action', u'aim', u'recov', u'empir', u'rubber', u'worker']
[u'court', u'find', u'guilti', u'veteran', u'murder']
[u'court', u'rule', u'delay', u'decis']
[u'criterion', u'hotel', u'auction']
[u'crow', u'kangaroo', u'clash', u'sell']
[u'disabl', u'tasmanian', u'benefit', u'helper']
[u'donor', u'pledg', u'darfur']
[u'drink', u'driver', u'refus', u'bail']
[u'driver', u'jail', u'polic', u'chase']
[u'drought', u'situat', u'despit', u'good', u'weekend']
[u'earthquak', u'shake', u'build', u'indonesian', u'capit']
[u'econom', u'growth', u'steam', u'ahead']
[u'elli', u'bail', u'assault', u'relat', u'charg']
[u'emerg', u'land', u'crew', u'back']
[u'evan', u'lose', u'grind', u'landi', u'yellow']
[u'farm', u'group', u'rethink', u'crop', u'support']
[u'fear', u'miss', u'tourist', u'bourk', u'district']
[u'fear', u'shoalhaven', u'lose', u'templ']
[u'feder', u'govt', u'spend', u'blame', u'game']
[u'ferri', u'evacu', u'australian', u'lebanon']
[u'film', u'radio', u'hop', u'lure', u'kid', u'class']
[u'financi', u'solut', u'offer', u'lagoon', u'sewag', u'leak']
[u'fitzgibbon', u'back', u'troubl', u'finch']
[u'flintoff', u'bat', u'setback']
[u'foreign', u'buyer', u'warn', u'australian', u'sheep', u'expens']
[u'foreign', u'flee', u'beirut']
[u'boxer', u'elli', u'releas', u'bail']
[u'host', u'marshal', u'court', u'abus']
[u'charg', u'connect', u'orang', u'murder']
[u'fund', u'freez', u'hurt', u'mutijulu', u'resid']
[u'gardin', u'charg', u'drink', u'drive']
[u'gardin', u'eagl', u'career', u'effect', u'worsfold']
[u'gillett', u'memori', u'unveil', u'germani']
[u'girl', u'home', u'reunion', u'expect', u'emot']
[u'golf', u'club', u'fight', u'door', u'open']
[u'govern', u'extend', u'assist', u'drought', u'plagu']
[u'govt', u'accus', u'leav', u'australian', u'strand']
[u'govt', u'audit', u'find', u'australia', u'face', u'scientist']
[u'govt', u'defend', u'rural', u'doctor', u'effort']
[u'govt', u'stand', u'road', u'accid', u'rescu', u'chang']
[u'green', u'seek', u'referendum', u'nuclear', u'enrich']
[u'green', u'urg', u'solar', u'option', u'adelaid']
[u'hagan', u'leap', u'joey', u'defenc']
[u'hawthorn', u'star', u'plead', u'guilti', u'drive', u'offenc']
[u'health', u'minist', u'examin', u'offer', u'school']
[u'heavi', u'rain', u'japan', u'leav', u'dead', u'miss']
[u'help', u'avail', u'drought', u'farmer']
[u'heritag', u'council', u'explain', u'demolit', u'protect']
[u'hezbollah', u'iran', u'coordin', u'soldier', u'abduct']
[u'higher', u'demand', u'see', u'bigger', u'plan', u'fli', u'west']
[u'historian', u'beat', u'futur', u'kelli', u'gang', u'sieg']
[u'holt', u'pool', u'recognis', u'stark', u'architectur']
[u'immelman', u'withdraw', u'gift', u'buckl', u'open', u'berth']
[u'india', u'ban', u'access', u'blog']
[u'indigen', u'communiti', u'challeng', u'nuclear', u'dump']
[u'indigen', u'famili', u'violenc', u'anim', u'cruelti', u'link']
[u'indonesian', u'tsunami', u'death', u'toll', u'near']
[u'rat', u'push', u'build', u'industri']
[u'inzi', u'yousuf', u'pont', u'stay']
[u'iraqi', u'bomb', u'kill']
[u'isra', u'forc', u'clash', u'milit', u'gaza']
[u'isra', u'name', u'iran', u'coordin', u'kidnap']
[u'israel', u'send', u'grind', u'troop', u'lebanon']
[u'java', u'resid', u'spook', u'aftershock']
[u'judg', u'urg', u'quick', u'resolut', u'claim']
[u'kid', u'diet', u'exercis', u'scrutinis', u'fight', u'obes']
[u'chief', u'say', u'staff', u'worri']
[u'land', u'care', u'group', u'spend', u'environ', u'project']
[u'landi', u'leav', u'evan', u'climb']
[u'lebanes', u'communiti', u'brand', u'govt', u'respons', u'slow']
[u'lebanes', u'communiti', u'pressur', u'feder', u'govt']
[u'legal', u'advic', u'support', u'palm', u'island', u'riot', u'trial']
[u'lithgow', u'see', u'benefit', u'elector', u'boundari', u'plan']
[u'charg', u'arm', u'robberi']
[u'face', u'court', u'drug', u'raid']
[u'face', u'court', u'priest', u'abduct']
[u'manilla', u'bash', u'home']
[u'mcgauran', u'criticis', u'renew', u'energi', u'target']
[u'mental', u'benefit', u'program']
[u'middl', u'road', u'trick', u'earn', u'polic', u'rebuk']
[u'mitchel', u'johnson', u'interview']
[u'arrest', u'vietnam', u'drug', u'ring']
[u'fund', u'seek', u'clean', u'indigen']
[u'isra', u'airstrik', u'lebanon']
[u'peopl', u'charg', u'melbourn', u'underworld']
[u'label', u'school', u'lunch', u'restrict', u'discrimin']
[u'promis', u'reveal', u'mari', u'river', u'document']
[u'myle', u'sign', u'rooster']
[u'document', u'help', u'futur', u'plantat', u'develop']
[u'program', u'give', u'student', u'chanc', u'state']
[u'newspap', u'plead', u'guilti', u'publish']
[u'task', u'forc', u'announc', u'fight', u'obes']
[u'excus', u'zidan', u'say', u'materazzi']
[u'warn', u'tsunami']
[u'drought', u'worsen']
[u'farmer', u'drought', u'extens']
[u'accus', u'tugun', u'bypass', u'breach']
[u'hospit', u'review', u'littl', u'late', u'kieli']
[u'make', u'posit', u'step', u'aborigin', u'communiti']
[u'compani', u'look', u'capitalis', u'lower', u'tariff']
[u'ogilvi', u'contest', u'australian', u'open']
[u'olymp', u'swim', u'hero', u'hall', u'attack', u'shark']
[u'opposit', u'call', u'improv', u'queenstown']
[u'opposit', u'call', u'probe', u'disclosur']
[u'origin', u'waiv', u'power', u'life', u'support', u'woman']
[u'peel', u'superintend', u'claim', u'coast', u'road']
[u'phil', u'jaqu', u'interview']
[u'plan', u'place', u'allow', u'census', u'reach', u'remot']
[u'call', u'canada', u'ship', u'doubl', u'book']
[u'extend', u'drought', u'relief', u'farmer']
[u'polic', u'charg', u'sydney', u'shoot']
[u'polic', u'theft', u'arrest']
[u'policeman', u'assault', u'capsicum', u'spray']
[u'pool', u'refurbish', u'money', u'mayor']
[u'pork', u'supplier', u'play', u'hepat', u'fear']
[u'preselect', u'candid', u'call', u'stand', u'asid']
[u'pricey', u'ticket', u'view', u'world', u'expens']
[u'privaci', u'law', u'hinder', u'council', u'collect']
[u'pulp', u'plan', u'see', u'threat', u'endang']
[u'raaf', u'defend', u'safeti', u'fleet']
[u'railway', u'yard', u'turn', u'student', u'hous']
[u'rain', u'littl', u'eas', u'drought', u'condit']
[u'rain', u'help', u'save', u'crop']
[u'ratepay', u'year', u'bill', u'averag']
[u'record', u'reward', u'open', u'champ']
[u'recycl', u'plant', u'bring', u'region', u'closer']
[u'rent', u'rise', u'forc', u'veteran', u'band']
[u'report', u'highlight', u'electr', u'fail', u'adelaid']
[u'report', u'spark', u'polic', u'hold', u'cell', u'closur']
[u'report', u'urg', u'electr', u'substat', u'adelaid']
[u'rescuer', u'battl', u'rough', u'weather', u'free', u'whale']
[u'resid', u'warn', u'increas', u'rat']
[u'road', u'seal', u'rain', u'stop', u'oper']
[u'rocket', u'northern', u'israel']
[u'rotavirus', u'vaccin', u'trial', u'propos', u'indigen']
[u'rubber', u'deal', u'save', u'job']
[u'scud', u'win', u'end', u'indianapoli']
[u'secker', u'beat', u'preselect']
[u'senat', u'demand', u'govt', u'correct', u'evid', u'give']
[u'serena', u'william', u'make', u'win', u'return', u'cincinnati']
[u'servic', u'station', u'accus', u'blatant', u'profit']
[u'shear', u'hard', u'work', u'pay', u'aussi', u'canada']
[u'shire', u'push', u'surplus', u'power']
[u'solomon', u'forc', u'need', u'improv', u'link', u'local']
[u'south', u'west', u'grip', u'drought']
[u'steal', u'drink', u'driver', u'jail']
[u'stone', u'discuss', u'welfar', u'work', u'chang']
[u'strategi', u'cater', u'age', u'popul', u'releas']
[u'survey', u'find', u'teacher', u'shortag', u'impact']
[u'ban', u'burma', u'independ']
[u'sydney', u'airport', u'announc', u'earn', u'increas']
[u'sydney', u'hop', u'freedom', u'ireland']
[u'sydney', u'teacher', u'plead', u'guilti', u'drug', u'charg']
[u'taliban', u'hold', u'district', u'afghan', u'govt', u'control']
[u'talk', u'attract', u'worker', u'tourism', u'industri']
[u'tarong', u'energi', u'boss', u'lose']
[u'rule', u'plastic', u'levi', u'pay', u'custom']
[u'thief', u'compens', u'victim', u'steal', u'bike']
[u'thousand', u'foreign', u'flee', u'beirut']
[u'tiger', u'faldo', u'feud', u'simmer', u'away']
[u'tour', u'rider', u'face', u'galibi', u'summit', u'finish']
[u'transport', u'industri', u'fear', u'higher', u'fuel', u'cost', u'amid']
[u'trap', u'whale', u'free', u'net']
[u'tripl', u'bomb', u'attack', u'baghdad', u'univers']
[u'troop', u'head', u'home', u'timor']
[u'tsunami', u'death', u'toll', u'top']
[u'campus', u'miss', u'medic', u'place']
[u'unidentifi', u'kovco']
[u'unidentifi', u'kovco']
[u'union', u'reject', u'condit', u'bonus', u'plan']
[u'unit', u'announc', u'short', u'term', u'sign']
[u'move', u'block', u'uranium', u'enrich', u'dont', u'faze']
[u'research', u'look', u'strawberri', u'erad']
[u'veteran', u'brass', u'band', u'win', u'repriev']
[u'wind', u'farm', u'give', u'ahead', u'victoria']
[u'winter', u'storm', u'uncov', u'shipwreck', u'mysteri']
[u'woman', u'charg', u'incid']
[u'work', u'begin', u'artifici', u'doubl', u'heart', u'pump', u'project']
[u'ymca', u'receiv', u'govern', u'grant']
[u'aborigin', u'leader', u'seek', u'busi', u'idea']
[u'govt', u'say', u'payment', u'summari', u'error', u'resolv']
[u'increas', u'begin']
[u'offic', u'injur', u'lebanon']
[u'dump', u'hawk', u'clash']
[u'albani', u'get', u'communiti', u'bank']
[u'albani', u'rat', u'rise']
[u'alcohol', u'court', u'deal', u'case']
[u'aldermen', u'convinc', u'marina', u'develop']
[u'alga', u'project', u'win', u'renew', u'energi', u'grant']
[u'alkatiri', u'question', u'squad', u'alleg']
[u'alkatiri', u'face', u'prosecutor', u'timor']
[u'alkatiri', u'restrict', u'movement', u'hous', u'arrest']
[u'fear', u'obes', u'survey', u'bias']
[u'antarct', u'link', u'shock']
[u'arthur', u'follow', u'scud', u'exit', u'safin', u'crash']
[u'tight', u'lip', u'sailor', u'case']
[u'audit', u'report', u'urg', u'illeg', u'land', u'clear', u'test', u'case']
[u'aussi', u'strand', u'beirut']
[u'aussi', u'strand', u'beirut']
[u'aust', u'evacu', u'thwart']
[u'australian', u'lebanon', u'urg']
[u'australian', u'work', u'harder', u'live', u'longer']
[u'aust', u'soldier', u'injur', u'afghanistan']
[u'autopsi', u'reveal', u'hermannsburg', u'woman', u'stab']
[u'beatti', u'deni', u'plan', u'elect']
[u'bernank', u'comment', u'lift', u'world', u'market']
[u'billiton', u'review', u'pilbara', u'iron', u'oper']
[u'cattl', u'shipment', u'unload', u'broom', u'port']
[u'blood', u'bank', u'call', u'pay', u'staff', u'park', u'hospit']
[u'boati', u'urg', u'safeti']
[u'bok', u'hit', u'panic', u'button']
[u'boundari', u'chang', u'plan', u'alburi']
[u'bowler', u'doesnt', u'want', u'pool', u'complex', u'heritag', u'list']
[u'brumbi', u'young', u'make', u'tough', u'decis']
[u'bulldog', u'lose', u'giansiracusa', u'injuri']
[u'bush', u'veto', u'stem', u'cell', u'research']
[u'campbel', u'reject', u'push', u'resurrect', u'rail', u'project']
[u'part', u'compani', u'talk', u'strike', u'action']
[u'central', u'west', u'rugbi', u'score', u'provinci', u'championship']
[u'centrex', u'seal', u'chines', u'export', u'deal']
[u'ceo', u'agre', u'scrap', u'anti', u'tamper']
[u'child', u'care', u'degre', u'launch', u'tasmania']
[u'clark', u'lawsuit', u'rule', u'assault', u'victim']
[u'clark', u'accus', u'win', u'permiss']
[u'closer']
[u'closer']
[u'run', u'elect', u'campaign', u'caravan']
[u'commonwealth', u'juggl', u'univers', u'role']
[u'compani', u'director', u'charg', u'evas', u'probe']
[u'conflict', u'israel', u'hezbollah', u'intensifi']
[u'contractu', u'requir', u'delay', u'wheat', u'shipment']
[u'coral', u'project', u'face']
[u'coron', u'find', u'tent', u'embassi', u'arson']
[u'costello', u'stand', u'feder', u'comment']
[u'council', u'consid', u'code', u'conduct', u'complaint']
[u'council', u'prais', u'convent', u'decis']
[u'council', u'oppos', u'seat', u'chang', u'seek', u'elector']
[u'cousin', u'pie', u'encount']
[u'croc', u'see', u'resort', u'island']
[u'croc', u'victim', u'famili', u'hold', u'ceremoni', u'news']
[u'crow', u'monitor', u'surg', u'dee']
[u'get', u'feder', u'grant', u'ethanol', u'product']
[u'cummin', u'deni', u'minist']
[u'oppon', u'welcom', u'task', u'forc', u'creation']
[u'demand', u'swamp', u'relationship', u'centr']
[u'dentist', u'renew', u'fund', u'boost']
[u'deport', u'activist', u'seek', u'access', u'asio', u'file']
[u'dog', u'kill', u'girl']
[u'reject', u'lake', u'mokoan', u'cost', u'blow', u'claim']
[u'elector', u'commission', u'urg', u'hear', u'seat', u'chang']
[u'emerg', u'servic', u'defend', u'cyclon', u'advic']
[u'endang', u'cockatoo', u'featur', u'coin']
[u'enforc', u'smoke', u'law', u'nightmar', u'mayor']
[u'engin', u'queri', u'cyclon', u'safeti', u'advic']
[u'evan', u'hunt', u'yellow']
[u'famili', u'dioxin', u'test', u'elev', u'level']
[u'farmer', u'frustrat', u'late', u'drought', u'extens']
[u'farmer', u'drought', u'extens']
[u'farmer', u'welcom', u'assist', u'extens']
[u'fast', u'food', u'worker', u'shoot']
[u'fatal', u'attack', u'prompt', u'law', u'review']
[u'believ', u'world', u'realist']
[u'will', u'bring', u'socceroo', u'home']
[u'film', u'school', u'offer', u'prize', u'newcom']
[u'firm', u'fear', u'council', u'push', u'beaconsfield', u'communiti']
[u'forest', u'activist', u'lament', u'land', u'sale']
[u'socceroo', u'fox', u'grab', u'leed', u'lifelin']
[u'forum', u'focus', u'agricultur', u'challeng']
[u'forum', u'highlight', u'way', u'road', u'toll']
[u'rebel', u'civilian', u'kill', u'fresh', u'kashmir']
[u'goldfield', u'esper', u'thursday', u'juli']
[u'govt', u'deni', u'union', u'claim', u'work', u'place', u'chang']
[u'govt', u'abandon', u'australian', u'lebanon', u'howard']
[u'govt', u'promis', u'ship', u'rescu']
[u'govt', u'reject', u'push', u'hick', u'australia']
[u'govt', u'tell', u'trap', u'australian', u'help']
[u'govt', u'error', u'public', u'servant']
[u'govt', u'urg', u'extend', u'drought', u'relief', u'fund']
[u'govt', u'welcom', u'court', u'order', u'mutijulu', u'administr']
[u'heatwav', u'spark', u'open', u'fear']
[u'hedblom', u'launch', u'open', u'rain', u'delay']
[u'hick', u'outcri', u'fall', u'deaf', u'ear', u'father', u'say']
[u'higher', u'hous', u'price', u'affect', u'mackay', u'polic']
[u'hold', u'cite', u'benefit', u'polic', u'cell', u'closur']
[u'hospit', u'test', u'illeg', u'fish', u'suspect']
[u'hundr', u'aussi', u'evacu', u'lebanon']
[u'idea', u'moot', u'riverland', u'shift', u'holiday']
[u'iinet', u'sell', u'provid']
[u'illeg', u'fishermen', u'give', u'good', u'behaviour', u'bond']
[u'indigen', u'hotel', u'staff', u'plan', u'outrag']
[u'indigen', u'leader', u'seek', u'young', u'liber', u'apolog']
[u'indigen', u'student', u'tourism', u'cadetship']
[u'indonesia', u'say', u'tsunami', u'kill', u'displac']
[u'industri', u'warm', u'light', u'hand', u'pipelin', u'approach']
[u'infrastructur', u'work', u'outlin', u'kempsey', u'draft']
[u'inquiri', u'tell', u'kovco', u'death', u'suicid']
[u'internet', u'help', u'farmer', u'recruit', u'backpack']
[u'iran', u'reject', u'demand', u'freez', u'nuclear', u'work']
[u'law', u'fine', u'tune', u'ruddock']
[u'warn', u'mark', u'shearer', u'award', u'anniversari']
[u'isra', u'plan', u'pound', u'target', u'beirut']
[u'israel', u'target', u'suspect', u'hezbollah', u'bunker']
[u'israel', u'warn', u'civilian', u'gaza', u'store']
[u'jaqu', u'power', u'second']
[u'jaqu', u'power', u'second']
[u'job', u'expect', u'blayney', u'food', u'plant']
[u'joyc', u'care', u'monitor', u'media', u'chang']
[u'judg', u'order', u'restrict', u'mutijulu', u'administr']
[u'judg', u'reserv', u'decis', u'applic', u'drop']
[u'kimberley', u'season', u'burn', u'finish']
[u'kovco', u'mother', u'walk', u'inquiri']
[u'societi', u'call', u'judg', u'select', u'panel']
[u'leak', u'acci', u'report', u'wish', u'list']
[u'lebanes', u'civilian', u'fear', u'worst', u'come']
[u'lebanon', u'crisi', u'get', u'wors', u'hour']
[u'letter', u'campaign', u'fight', u'forest', u'protect']
[u'liber', u'hope', u'reject', u'burleigh', u'bronx', u'comparison']
[u'local', u'rice', u'grower', u'benefit', u'south', u'korea']
[u'luca', u'open', u'tanbi', u'kinka', u'beach', u'connect', u'road']
[u'macquari', u'bank', u'forecast', u'profit', u'rise']
[u'makeshift', u'beach', u'offer', u'london', u'oasi']
[u'malaysia', u'mahathir', u'accus', u'leadership', u'push']
[u'manag', u'team', u'form']
[u'mail', u'explos', u'court', u'cost']
[u'mayor', u'say', u'report', u'vindic', u'water', u'futur', u'support']
[u'meatwork', u'charg', u'work', u'death']
[u'memori', u'barrier', u'deja', u'research']
[u'micro', u'alga', u'provid', u'altern', u'fuel']
[u'mogg', u'opt', u'french']
[u'mooney', u'cite', u'benefit', u'second', u'chines', u'sister', u'citi']
[u'aust', u'evacue', u'return', u'home']
[u'fund', u'seek', u'rural', u'financi', u'counsellor']
[u'back', u'yeppoon', u'festiv', u'train']
[u'push', u'earlier', u'diesel', u'legisl']
[u'narromin', u'host']
[u'market', u'open', u'tasmanian', u'appl']
[u'middl', u'east', u'lamb', u'export', u'record']
[u'nativ', u'titl', u'claim', u'lodg', u'western', u'victoria']
[u'newspap', u'hick']
[u'nomin', u'open', u'liber', u'grey', u'preselect']
[u'north', u'west', u'featur', u'promin', u'probe']
[u'opposit', u'push', u'ethanol', u'blend', u'petrol']
[u'urg', u'tackl', u'illeg', u'land', u'clear']
[u'censur', u'cover', u'work']
[u'oleari', u'leav', u'villa']
[u'parrot', u'endang', u'list', u'nomin', u'threaten', u'wind']
[u'passeng', u'accus', u'traffic', u'drug', u'short']
[u'perilya', u'boost', u'break', u'hill', u'metal', u'product']
[u'perth', u'septuagenarian', u'plead', u'guilti', u'drug', u'deal']
[u'plummer', u'lament', u'lack', u'prepar']
[u'polic', u'associ', u'take', u'push', u'shepparton']
[u'polic', u'hold', u'cell', u'upgrad']
[u'polic', u'hold', u'cell', u'close']
[u'polic', u'investig', u'fatal', u'highway', u'crash']
[u'polic', u'search', u'driver']
[u'polic', u'ramp', u'industri', u'action']
[u'polic', u'uncov', u'adelaid', u'cannabi', u'factori']
[u'porgi', u'be', u'opera', u'tour', u'australia']
[u'premier', u'water', u'fund', u'criticis']
[u'product', u'review', u'result', u'disappoint', u'truss']
[u'public', u'ask', u'help', u'catch', u'ball', u'bear', u'throw']
[u'businessman', u'jail', u'illeg', u'abalon', u'trade']
[u'rapist', u'jail', u'harrow', u'ordeal']
[u'rasmussen', u'emerg', u'mountain', u'king']
[u'ratepay', u'face', u'septic', u'tank', u'price', u'slug']
[u'record', u'water', u'trade', u'north', u'west']
[u'recycl', u'water', u'stoush', u'continu']
[u'red', u'beat', u'japanes', u'tourist']
[u'region', u'miss', u'continu', u'drought']
[u'resid', u'urg', u'maintain', u'fight']
[u'riverina', u'illeg', u'hunter', u'notic']
[u'rocket', u'kill', u'isra', u'children']
[u'rural', u'medicin', u'legisl', u'recognit', u'see']
[u'saddam', u'counsel', u'hunger', u'strike']
[u'consid', u'curfew', u'plate', u'driver']
[u'scheme', u'help', u'wellington', u'salin']
[u'search', u'potenti', u'dead', u'wasp']
[u'second', u'quak', u'rock', u'java', u'tsunami', u'vision', u'emerg']
[u'senat', u'urg', u'interst', u'headhunt', u'worker']
[u'senior', u'hous', u'plan']
[u'separ', u'wage', u'rule', u'issu', u'decid']
[u'ship', u'delay', u'leav', u'retail', u'short', u'fruit']
[u'ship', u'rescu', u'thwart']
[u'shire', u'leav', u'drought', u'fund', u'region']
[u'sophi', u'go', u'school']
[u'sophi', u'return', u'school']
[u'speed', u'camera', u'audit', u'dispel', u'revenu', u'rais', u'myth']
[u'stone', u'address', u'age', u'work', u'forc', u'issu']
[u'struggl', u'farmer', u'urg', u'consid', u'work']
[u'studi', u'reveal', u'rememb', u'good', u'time']
[u'sydney', u'famili', u'high', u'level', u'dioxin']
[u'talk', u'continu', u'part', u'compani', u'strike']
[u'ambul', u'offic', u'strike']
[u'tourism', u'oper', u'tell', u'embrac', u'internet']
[u'tension', u'high', u'girl', u'kill', u'dog']
[u'thousand', u'darwin', u'women', u'turn', u'ladi']
[u'doctor', u'leav', u'timboon', u'hospit']
[u'jail', u'adelaid', u'hotel', u'brawl']
[u'sentenc', u'wadey', u'riot']
[u'toowong', u'factori', u'close']
[u'tourism', u'bodi', u'defend', u'indigen', u'hotel', u'staff', u'plan']
[u'tourism', u'bodi', u'look', u'capitalis', u'visitor']
[u'townsvill', u'troop', u'head', u'home', u'timor']
[u'tsunami', u'text', u'warn', u'coordin', u'offici']
[u'union', u'appeal', u'industri', u'save', u'huon', u'worker']
[u'union', u'chief', u'urg', u'driver', u'report', u'drive', u'hour']
[u'union', u'want', u'tougher', u'health', u'check', u'food', u'recal']
[u'australian', u'evacu']
[u'govt', u'question', u'surgeri', u'delay']
[u'victorian', u'water', u'trader', u'record']
[u'busi', u'sceptic', u'foreign', u'compani']
[u'grape', u'grower', u'face', u'tough', u'outlook']
[u'wakool', u'shire', u'slash', u'budget']
[u'weather', u'bureau', u'say', u'overnight', u'temperatur', u'lowest']
[u'white', u'hous', u'outlin', u'plan', u'guantanamo', u'detaine']
[u'wind', u'farm', u'postpon', u'renew', u'energi', u'target']
[u'woman', u'decid', u'kieli', u'sexual', u'harass']
[u'woman', u'plead', u'guilti', u'abduct', u'elder']
[u'workcov', u'outsourc', u'union', u'opposit']
[u'zidan', u'suspend', u'match']
[u'sale', u'defi', u'market', u'trend']
[u'abbott', u'back', u'roch', u'dinner', u'probe']
[u'team', u'decad', u'defend', u'vote']
[u'aborigin', u'leader', u'oppos', u'leas', u'deal']
[u'adelaid', u'host', u'emerg', u'skill', u'competit']
[u'help', u'evacu', u'strand', u'aussi']
[u'administr', u'sue', u'recov', u'huon', u'asset']
[u'alinta', u'press', u'merger']
[u'tell', u'away', u'lion']
[u'anger', u'plan', u'dept', u'size', u'reject']
[u'annan', u'call', u'ceas']
[u'nation', u'team', u'hold']
[u'asian', u'demand', u'drive', u'woodchip', u'boom']
[u'aussi', u'confid', u'ahead', u'clash', u'kiwi']
[u'aussi', u'test']
[u'aussi', u'jockey', u'passport', u'plea', u'reject', u'hong', u'kong']
[u'aussi', u'stun', u'landi', u'hit']
[u'australian', u'escap', u'slam', u'govt']
[u'aust', u'troop', u'lebanon', u'evacu']
[u'author', u'approv', u'canola', u'export', u'licenc']
[u'auto', u'worker', u'tuesday', u'ford', u'say']
[u'baghdad', u'curfew', u'extend', u'amid', u'bloodsh']
[u'bandido', u'member', u'face', u'extort', u'charg']
[u'barcelona', u'sign', u'deal', u'zambrotta', u'thuram']
[u'beaconsfield', u'fund', u'time']
[u'beatti', u'play', u'gympi', u'elect', u'chanc']
[u'bendigo', u'miner', u'find', u'gold']
[u'bennett', u'back', u'final']
[u'better', u'asbesto', u'train', u'test', u'want']
[u'billboard', u'brack', u'govt', u'fail']
[u'bishop', u'question', u'labor', u'hec', u'plan']
[u'blayney', u'surviv', u'cut', u'mayor']
[u'blaze', u'forc', u'palm', u'beach', u'hotel', u'evacu']
[u'bodi', u'mount', u'reserv']
[u'border', u'attack', u'continu']
[u'run', u'help', u'crash']
[u'brogden', u'return', u'work']
[u'brogden', u'take', u'posit', u'manchest', u'uniti']
[u'cash', u'strap', u'give', u'coach', u'hunt']
[u'chamberlain', u'juri', u'note', u'sale', u'illeg']
[u'china', u'storm', u'toll', u'rise']
[u'citi', u'light', u'stargaz', u'festiv']
[u'civic', u'centr', u'bash', u'victim', u'comatos']
[u'closer']
[u'closer', u'melinda', u'friday']
[u'commod', u'price', u'fall', u'maket']
[u'communiti', u'broadcast', u'hous']
[u'convoy', u'race', u'beirut', u'evacu', u'point']
[u'council', u'move', u'closer', u'chines', u'pagoda', u'project']
[u'council', u'push', u'rural', u'address', u'rethink']
[u'council', u'seek', u'petrol', u'sniff', u'pictur']
[u'council', u'need', u'tough', u'owner', u'govt', u'say']
[u'croc', u'startl', u'camper']
[u'curbishley', u'aitken', u'oneil', u'link', u'villa']
[u'oppon', u'welcom', u'project', u'timelin']
[u'develop', u'alter', u'kangaroo', u'resort', u'plan']
[u'dfat', u'attempt', u'mass', u'evacu']
[u'dfat', u'attempt', u'mass', u'evacu', u'lebanon']
[u'doctor', u'welcom', u'landmark', u'deal']
[u'driver', u'cop', u'fine', u'overload']
[u'drought', u'farmer', u'work']
[u'econom', u'boom', u'push', u'state', u'worker', u'union']
[u'employe', u'choos', u'resourc', u'retail', u'sector']
[u'evacu', u'oper', u'enter', u'final', u'phase']
[u'expans', u'plan', u'young', u'earli', u'intervent']
[u'farmer', u'urg', u'check', u'drought', u'elig']
[u'fear', u'water', u'poll', u'reject', u'harm', u'murray', u'darl']
[u'feder', u'govt', u'stifl', u'wind', u'farm', u'plan']
[u'feder', u'govt', u'urg', u'fund', u'anzac', u'western']
[u'fern', u'confid', u'aussi', u'hungri']
[u'fevola', u'expect', u'tough']
[u'final', u'prepar', u'cane', u'smut', u'plan']
[u'firefight', u'step', u'wag', u'campaign']
[u'ford', u'staff', u'stand', u'huon', u'strike']
[u'forest', u'log', u'oppon', u'fear', u'quokka']
[u'khmer', u'roug', u'chief', u'die']
[u'foster', u'care', u'lobbi', u'prais', u'initi']
[u'isra', u'soldier', u'kill']
[u'freir', u'withdraw', u'ensur', u'green', u'mcewen']
[u'friday', u'night', u'game', u'live']
[u'fuel', u'cost', u'spin', u'lose', u'higher', u'freight']
[u'gallagh', u'launch', u'indigen', u'health', u'plan']
[u'gorbachev', u'back', u'altern', u'power', u'sourc']
[u'govt', u'offer', u'water', u'cart', u'help']
[u'govt', u'send', u'ship', u'beirut']
[u'govt', u'urg', u'rais', u'renew', u'energi', u'target']
[u'govt', u'releas', u'explor', u'sit']
[u'grant', u'boost', u'ethanol', u'industri']
[u'green', u'want', u'stop', u'barrington', u'top', u'rubi', u'mine']
[u'grower', u'challeng', u'import', u'aust', u'coffe']
[u'helicopt', u'scan', u'snow', u'field', u'miss']
[u'heritag', u'offic', u'comment', u'develop']
[u'hezbollah', u'rocket', u'barrag', u'wound', u'haifa']
[u'hezobollah', u'leader', u'defiant']
[u'hiddink', u'get', u'tast', u'russia']
[u'high', u'court', u'allow', u'civil', u'case', u'clark']
[u'higher', u'fuel', u'price', u'forc', u'chopper', u'fee']
[u'home', u'ownership', u'prioriti', u'aborigin']
[u'howard', u'defend', u'law']
[u'howard', u'unveil', u'beaconsfield', u'memori']
[u'hundr', u'head', u'home', u'lebanon']
[u'huon', u'rescu', u'packag', u'long']
[u'huon', u'strike', u'hit', u'ford']
[u'illawarra', u'rain', u'offer', u'littl', u'dam']
[u'illawarra', u'vie', u'clean', u'beach', u'titl']
[u'illeg', u'fish', u'suspect', u'suffer']
[u'independ', u'flag', u'support', u'ralph', u'project']
[u'indonesian', u'leader', u'want', u'tsunami', u'search', u'continu']
[u'indonesian', u'tsunami', u'survivor', u'pack', u'refuge', u'camp']
[u'injur', u'tendulkar', u'india']
[u'internet', u'user', u'plead', u'guilti', u'procur', u'charg']
[u'iodin', u'defici', u'rat', u'worri', u'expert']
[u'islamist', u'defend', u'somalia', u'ethiopia']
[u'isra', u'chopper', u'collid', u'near', u'lebanon']
[u'isra', u'troop', u'kill', u'palestinian', u'gunmen']
[u'jackman', u'jean']
[u'japanes', u'student', u'lose', u'visa', u'case']
[u'jurien', u'growth', u'watch', u'tourism']
[u'juve', u'lose', u'star']
[u'kambah', u'resid', u'continu', u'phone', u'tower', u'fight']
[u'kitchen', u'knife', u'pass', u'airport', u'secur']
[u'kookaburra', u'seek', u'improv', u'spain']
[u'kouta', u'fevola', u'bomber', u'encount']
[u'labor', u'unveil', u'higher', u'educ', u'packag']
[u'labor', u'vow', u'place']
[u'lebanon', u'evacu', u'effort', u'succeed']
[u'lennon', u'quiet', u'preselect', u'link']
[u'linfox', u'urg', u'match', u'cole', u'payout']
[u'lockup', u'closur', u'plan', u'expect', u'boost', u'polic']
[u'lotteri', u'grant', u'boost', u'region', u'ambul', u'station']
[u'macdougal', u'return', u'knight']
[u'malthous', u'unruffl', u'train', u'show']
[u'jail', u'pursu', u'girl', u'onlin']
[u'market', u'board', u'fear', u'wineri', u'sale', u'loss']
[u'mayor', u'call', u'tourist', u'focus', u'capit', u'work']
[u'mayor', u'wont', u'comment']
[u'merckx', u'give', u'win', u'belief', u'landi']
[u'australian', u'prepar', u'leav', u'lebanon']
[u'grower', u'seek', u'financi', u'counsellor', u'help']
[u'mussel', u'prompt', u'boat', u'detent', u'review']
[u'mussel', u'rais', u'habour', u'pest', u'concern']
[u'mutijulu', u'communiti', u'fight', u'administr', u'attempt']
[u'mutitjulu', u'public', u'servant', u'canberra', u'home', u'raid']
[u'nation', u'biodiesel', u'grade', u'develop']
[u'council', u'improv', u'state', u'commonwealth', u'tie']
[u'reef', u'patrol', u'target', u'illeg', u'fish']
[u'shire', u'administr', u'seek', u'lightn', u'ridg']
[u'nightclub', u'stab', u'earn', u'year', u'jail', u'term']
[u'extra', u'drug', u'test', u'wallabi']
[u'govt', u'review', u'law']
[u'home', u'safe', u'cyclon', u'engin']
[u'opposit', u'say', u'hospit', u'water', u'woe', u'world']
[u'orchestra', u'tune', u'research', u'fundrais']
[u'owner', u'safeti', u'role', u'iemma']
[u'ozon', u'hole', u'affect', u'ocean', u'food', u'suppli']
[u'paedophil', u'win', u'compo', u'jail', u'attack']
[u'parent', u'want', u'kid', u'white', u'collar', u'job', u'survey']
[u'parrot', u'intellig', u'young', u'children']
[u'payn', u'quit', u'tweed', u'council', u'role']
[u'announc', u'fund', u'beaconsfield']
[u'polic', u'bowler', u'odd', u'comment']
[u'polic', u'charg', u'fatal', u'chase', u'driver']
[u'polic', u'industri', u'action', u'caus', u'court', u'problem']
[u'polic', u'investig', u'student', u'claim']
[u'polic', u'investig', u'teen', u'motorcycl', u'crash']
[u'polic', u'benefit', u'school', u'vandal', u'crackdown']
[u'polic', u'seek', u'help', u'stop', u'narrogin', u'thiev']
[u'polic', u'stand', u'chase', u'polici']
[u'portland', u'hospit', u'turn', u'foreign', u'doctor']
[u'program', u'aim', u'countri', u'kid', u'talk']
[u'public', u'ask', u'help', u'steal', u'gear']
[u'public', u'bateman', u'blueprint']
[u'ethanol', u'industri', u'receiv', u'boost']
[u'firm', u'urg', u'save', u'water']
[u'rain', u'forc', u'draw', u'cairn']
[u'rann', u'flag', u'depart', u'merger']
[u'real', u'madrid', u'continu', u'talent', u'search', u'juventus']
[u'report', u'releas', u'death']
[u'report', u'urg', u'water', u'user']
[u'resid', u'remain', u'worri', u'fuel', u'tank', u'leakag']
[u'say', u'recent', u'spate', u'fire', u'avoid']
[u'road', u'work', u'compo', u'limit', u'acquisit']
[u'roma', u'mayor', u'reject', u'council', u'conflict']
[u'rooster', u'finch']
[u'rooster', u'finch']
[u'russian', u'ballet', u'battl', u'london']
[u'sailor', u'ax', u'cocain']
[u'sailor', u'cocain', u'incid', u'coach']
[u'sailor', u'adrift']
[u'mine', u'explor', u'reach', u'high']
[u'revamp', u'infrastructur', u'secur']
[u'scott', u'spearhead', u'australia', u'open', u'challeng']
[u'spurg', u'threaten', u'nativ', u'plant']
[u'shark', u'readi', u'storm']
[u'sheriff', u'aggress', u'complaint', u'investig']
[u'shoaib', u'cours', u'test']
[u'skaf', u'seek', u'consider', u'jail', u'condit']
[u'slick', u'crow', u'dismantl', u'kanga']
[u'southern', u'plant', u'turn', u'coal', u'diesel']
[u'springborg', u'confid', u'coalit', u'head', u'govt']
[u'storm', u'bring', u'need', u'rain', u'south', u'west']
[u'storm', u'surg', u'eighth', u'straight']
[u'submiss', u'lack', u'fish', u'farm', u'support', u'centr']
[u'suicid', u'theori', u'question', u'kovco', u'inquiri']
[u'swan', u'interest', u'roo']
[u'tafe', u'cours', u'futur', u'know', u'soon']
[u'talk', u'continu', u'huon', u'rescu', u'packag']
[u'tara', u'moss', u'offici', u'floriad']
[u'govt', u'seek', u'apolog', u'meander', u'photo']
[u'newspap', u'celebr', u'birthday']
[u'taylor', u'hop', u'wollongong', u'titl', u'shoot']
[u'telstra', u'base', u'station', u'upgrad']
[u'arrest', u'mumbai', u'train', u'blast']
[u'tongan', u'mourn', u'royal', u'coupl']
[u'earli', u'specul', u'search', u'success']
[u'tour', u'turn', u'home', u'pari']
[u'toyota', u'product', u'continu', u'despit', u'supplier']
[u'travel', u'warn', u'danger']
[u'host', u'rule', u'unfit', u'face', u'charg']
[u'face', u'court', u'fast', u'food', u'outlet', u'shoot']
[u'announc', u'tour', u'date']
[u'ullrich', u'face', u'fraud', u'charg']
[u'call', u'ceas']
[u'demand', u'immedi', u'ceasefir']
[u'union', u'urg', u'reinvestig', u'staff', u'issu']
[u'vail', u'want', u'free', u'trade', u'deadlock']
[u'vline', u'servic', u'track', u'septemb']
[u'volunt', u'battl', u'noxious', u'weed']
[u'wadey', u'riot', u'accus', u'plead', u'guilti']
[u'websit', u'support', u'male', u'breast', u'cancer', u'patient']
[u'william', u'get', u'tredrea']
[u'woman', u'charg', u'babi', u'throw']
[u'woman', u'charg', u'babi', u'murder']
[u'work', u'women', u'centr', u'close']
[u'accc', u'ask', u'probe', u'ethanol', u'fuel', u'price']
[u'accc', u'monitor', u'ethanol', u'fuel', u'price']
[u'accc', u'urg', u'monitor', u'ethanol', u'price']
[u'opposit', u'want', u'burnout', u'crackdown']
[u'american', u'actor', u'jack', u'warden', u'die']
[u'arson', u'suspect', u'kangaroo']
[u'arson', u'suspect', u'north', u'melbourn']
[u'aust', u'minist', u'discuss', u'ramsi', u'timor']
[u'australian', u'evacu', u'effort']
[u'australian', u'evacue', u'arriv', u'cyprus']
[u'aust', u'terror', u'sentenc', u'reconsid']
[u'barossa', u'histor', u'wine', u'train', u'resum', u'servic']
[u'beaconsfield', u'consid', u'futur']
[u'blue', u'snatch', u'draw', u'bomber']
[u'boateng', u'hand', u'boro', u'armband']
[u'british', u'banker', u'hold', u'bond']
[u'bulldog', u'post', u'solid', u'rooster']
[u'bulldog', u'trounc', u'hapless', u'rooster']
[u'canberra', u'hospit', u'bypass', u'polici', u'continu', u'liber']
[u'carter', u'guid', u'black', u'victori']
[u'china', u'storm', u'toll', u'creep']
[u'clarkson', u'fear', u'akermani', u'factor']
[u'climat', u'chang', u'kill', u'ancient', u'citi']
[u'closer']
[u'closer', u'penni', u'nodisplay']
[u'concern', u'australian', u'injur', u'isra', u'attack']
[u'concern', u'voic', u'forestri', u'plantat']
[u'confer', u'draw', u'world', u'leader', u'brisban']
[u'cowboy', u'strong', u'bronco']
[u'cowboy', u'queensland', u'derbi']
[u'crow', u'continu', u'charg']
[u'crow', u'face', u'loss', u'mcleod']
[u'danger', u'chang', u'rush']
[u'decis', u'repatri', u'cost']
[u'dell', u'warn', u'see', u'market', u'fall']
[u'expect', u'scale', u'incurs', u'israel']
[u'escape', u'hand', u'polic']
[u'evacu', u'australian', u'arriv', u'cyprus']
[u'evan', u'chanc', u'tour', u'podium']
[u'fear', u'australian', u'injur', u'isra', u'attack']
[u'fear', u'econom', u'boom', u'caus', u'hous', u'crisi']
[u'rip', u'north', u'melbourn', u'club']
[u'fish', u'wast', u'head', u'dinner', u'plate']
[u'flintoff', u'england', u'return', u'doubt']
[u'govt', u'deni', u'vendetta', u'mutijulu']
[u'govt', u'foot', u'lebanon', u'evacu']
[u'govt', u'urg', u'victim', u'claim', u'paedophil', u'compo']
[u'handler', u'kill', u'eleph', u'tennesse', u'sanctuari']
[u'hobart', u'struggl', u'famili', u'lebanon']
[u'hundr', u'attend', u'khmer', u'roug', u'leader', u'funer']
[u'hundr', u'dead', u'miss', u'north', u'korea', u'flood']
[u'indigen', u'abus', u'highlight', u'australia', u'racism']
[u'indonesian', u'tsunami', u'death', u'toll', u'rise']
[u'iraq', u'announc', u'nation', u'reconcili', u'commiss']
[u'israel', u'call', u'reserv', u'soldier']
[u'isra', u'forc', u'mass', u'lebanon', u'border']
[u'israel', u'prepar', u'grind', u'offens']
[u'israel', u'warn', u'lebanes', u'flee', u'call', u'reserv']
[u'itali', u'match', u'fix', u'appeal', u'begin']
[u'knight', u'hold', u'rabbitoh']
[u'kouta', u'brace', u'dogfight']
[u'labor', u'concern', u'missil', u'bungl', u'claim']
[u'lebanon', u'strike', u'continu']
[u'lion', u'fight', u'hawk']
[u'magpi', u'win', u'way']
[u'magpi', u'victori', u'eagl']
[u'arrest', u'kenya', u'mumbai', u'bomb']
[u'fire', u'taxi', u'disput']
[u'mark', u'ricciuto', u'game', u'highlight']
[u'matilda', u'draw', u'north', u'korea']
[u'mciver', u'elect', u'presid', u'nation']
[u'microsoft', u'player', u'target', u'appl', u'ipod']
[u'marin', u'pest', u'boat', u'darwin']
[u'money', u'despit', u'treasur', u'protest']
[u'morley', u'face', u'earli', u'career']
[u'mourinho', u'wont', u'plunder', u'juve']
[u'noisi', u'hotel', u'patron', u'prompt', u'formal', u'complaint']
[u'opal', u'miner', u'rescu']
[u'orica', u'send', u'toxic', u'wast', u'germani']
[u'palestinian', u'nurs', u'kill', u'west', u'bank']
[u'perth', u'mint', u'prevent', u'swindl']
[u'pie', u'bomber', u'half', u'time']
[u'polic', u'minist', u'get', u'ignit', u'lock', u'plan']
[u'polic', u'warn', u'troubl', u'sydney', u'protest']
[u'protest', u'march', u'middl', u'east', u'violenc']
[u'ramo', u'horta', u'offer', u'weapon', u'amnesti']
[u'report', u'ethiopian', u'troop', u'prompt', u'somali', u'protest']
[u'report', u'aussi', u'injur', u'lebanon', u'dfat']
[u'research', u'investig', u'grow', u'fish', u'effluent']
[u'resid', u'flee', u'southern', u'lebanon']
[u'rice', u'middl', u'east']
[u'rice', u'hold', u'talk', u'middl', u'east']
[u'rice', u'travel', u'middl', u'east']
[u'robert', u'domin', u'motogp', u'practic']
[u'roddick', u'ginepri', u'indianapoli', u'showdown']
[u'drink', u'water', u'contamin', u'uranium']
[u'search', u'resum', u'miss', u'alp']
[u'serena', u'safe', u'cincinnati', u'semi']
[u'shoot', u'investig', u'lead', u'polic', u'drug']
[u'silver', u'fern', u'class', u'defeat', u'australia']
[u'skill', u'databas', u'match', u'employ', u'older']
[u'soccer', u'cemeteri', u'cater', u'hard', u'fan']
[u'ferri', u'leav', u'lebanon', u'half', u'howard']
[u'serial', u'killer', u'deni', u'parol']
[u'south', u'west', u'china', u'quak', u'kill']
[u'swan', u'bounc', u'thrash', u'tiger']
[u'sydney', u'overcom', u'determin', u'jet']
[u'sydney', u'overcom', u'determin', u'jet']
[u'sydney', u'trio', u'arrest', u'credit', u'card', u'fraud']
[u'tander', u'pole', u'shoot']
[u'tander', u'win', u'pole', u'queensland']
[u'teen', u'crush', u'death', u'bakeri', u'accid']
[u'thailand', u'vote', u'octob']
[u'thoma', u'lodhi', u'terror', u'sentenc', u'increas']
[u'thousand', u'protest', u'middl', u'east', u'violenc']
[u'tour', u'time', u'trial', u'showdown']
[u'troop', u'mass', u'lebanes', u'border']
[u'wind', u'farm', u'shelv']
[u'ullrich', u'sack', u'mobil']
[u'set', u'focus', u'east', u'humanitarian', u'woe']
[u'troop', u'iraq', u'kill', u'includ', u'child']
[u'vail', u'say', u'coalit', u'hop', u'rest']
[u'veteran', u'york', u'play']
[u'woman', u'amput', u'crash']
[u'woman', u'trap', u'shaft']
[u'wood', u'open', u'collis', u'cours']
[u'afghan', u'forc', u'kill', u'taliban']
[u'black', u'accus', u'springbok', u'fake', u'injuri']
[u'black', u'look', u'forward', u'wallabi', u'clash']
[u'perfect', u'tander', u'blitz', u'field']
[u'seek', u'better', u'communic', u'hospit']
[u'atherton', u'question', u'england']
[u'aust', u'boy', u'fear', u'dead', u'lebanon', u'aliv']
[u'aust', u'evacu', u'wind', u'soon', u'ambassador']
[u'aust', u'evacue', u'arriv', u'home']
[u'aust', u'evacue', u'lebanon', u'arriv', u'sydney']
[u'australia', u'humili', u'fiji']
[u'australian', u'boy', u'aliv', u'southern', u'lebanon']
[u'australian', u'evacue', u'arriv', u'sydney']
[u'australian', u'evacue', u'lebanon', u'arriv', u'sydney']
[u'australian', u'scientist', u'hope', u'drug', u'cure']
[u'author', u'plan', u'marin', u'pest', u'clean', u'boat']
[u'beirut', u'bomb', u'violat', u'humanitarian']
[u'bergkamp', u'overcom', u'arsenal', u'farewel']
[u'blake', u'roddick', u'titl', u'duel']
[u'bomb', u'kill', u'iraqi']
[u'british', u'cast', u'doubt', u'david', u'kelli', u'suicid']
[u'bush', u'step', u'critic', u'syria', u'iran']
[u'busi', u'reopen', u'follow', u'tsunami']
[u'govt', u'reinstat', u'environ', u'minist']
[u'cat', u'edg', u'dog', u'thriller']
[u'champion', u'kookaburra', u'edg', u'open']
[u'chang', u'urg', u'research', u'work', u'visa']
[u'claim', u'prison', u'deni', u'shower', u'capsicum', u'spray']
[u'claim', u'govt', u'ignor', u'danger', u'dog']
[u'claim', u'egg', u'fals', u'label', u'free', u'rang']
[u'classi', u'eel', u'smash', u'tiger']
[u'closer']
[u'closer', u'news']
[u'compani', u'downplay', u'worker', u'uranium', u'exposur']
[u'cowboy', u'suffer', u'thurston', u'blow']
[u'darwin', u'set', u'sail', u'beer', u'regatta']
[u'debut', u'dalrympl', u'add', u'england', u'squad']
[u'docker', u'melbourn']
[u'downer', u'urg', u'australian', u'lebanon', u'decid']
[u'duff', u'complet', u'newcastl']
[u'eel', u'hammer', u'tiger']
[u'kill', u'afghan', u'suicid', u'blast']
[u'evan', u'roger', u'score', u'finish']
[u'fan', u'beat', u'burrow', u'aussi', u'final']
[u'final', u'australian', u'evacu', u'lebanon', u'schedul']
[u'flintoff', u'struggl', u'ash']
[u'fourth', u'wed', u'north', u'korean', u'leader', u'report']
[u'frogwatch', u'volunt', u'help', u'toad', u'number']
[u'gold', u'bullion', u'scam', u'foil']
[u'govt', u'consid', u'troop', u'afghanistan', u'nelson']
[u'govt', u'consid', u'strengthen', u'afghan', u'deploy']
[u'govt', u'eas', u'water', u'restrict', u'elder']
[u'govt', u'program', u'give', u'job', u'foreign', u'worker', u'studi']
[u'govt', u'accept', u'defenc', u'equip', u'recommend']
[u'govt', u'increas', u'aust', u'troop', u'number', u'oversea']
[u'govt', u'region', u'council', u'fund']
[u'govt', u'urg', u'generous', u'lebanes', u'refuge']
[u'heroic', u'save', u'famili']
[u'hundr', u'return', u'australia', u'escap', u'lebanon']
[u'india', u'test', u'surfac', u'missil']
[u'indonesian', u'tsunami', u'death', u'toll', u'pass']
[u'infrastructur', u'crippl', u'isra', u'raid']
[u'iraq', u'prison', u'abus', u'routin', u'organis']
[u'israel', u'focus', u'assault', u'lebanes', u'border']
[u'isra', u'raid', u'continu']
[u'israel', u'mount', u'troop', u'lebanon', u'border']
[u'israel', u'seiz', u'hezbollah', u'stronghold']
[u'israel', u'strike', u'beirut', u'suburb']
[u'israel', u'take', u'lebanon', u'villag']
[u'israel', u'take', u'villag', u'southern', u'lebanon']
[u'joyc', u'urg', u'measur', u'protect', u'local', u'radio']
[u'juve', u'hope', u'appeal', u'start']
[u'labor', u'want', u'inquiri', u'embassi']
[u'landi', u'succeed', u'armstrong', u'honchar', u'win', u'time']
[u'langer', u'ball', u'hugh', u'comment']
[u'lion', u'grant', u'akermani', u'temporari', u'leav']
[u'major', u'step', u'fight', u'hepat']
[u'arrest', u'adelaid', u'grenad', u'scare']
[u'man', u'sneak', u'home', u'panther']
[u'mcewen', u'target', u'final', u'stage', u'champ', u'elyse']
[u'melbourn', u'vote', u'tourist', u'spot']
[u'charg', u'adelaid', u'grenad', u'scare']
[u'methodist', u'cathol', u'mend', u'histor', u'rift']
[u'milit', u'gaza', u'agre', u'ceas', u'palestinian']
[u'minist', u'say', u'ambul', u'compris']
[u'decor', u'digger', u'honour', u'display']
[u'nepal', u'fall', u'kill']
[u'nrma', u'back', u'accc', u'watch', u'ethanol', u'fuel', u'price']
[u'opposit', u'question', u'bipartisan', u'status']
[u'palestinian', u'milit', u'offer', u'ceas']
[u'pizza', u'staff', u'forc', u'work', u'free']
[u'polic', u'action', u'prais', u'foil', u'gold', u'swindl']
[u'nation', u'parti', u'brace', u'elect', u'year']
[u'quak', u'spark', u'fresh', u'tsunami', u'fear']
[u'back', u'ignit', u'lock', u'drink', u'driver']
[u'raider', u'dragon']
[u'raider', u'overpow', u'dragon']
[u'raider', u'strong', u'dragon']
[u'saint', u'break', u'power', u'jinx']
[u'eagl', u'steal', u'panther']
[u'sticki', u'remind', u'urg', u'student', u'respect']
[u'submiss', u'seek', u'inquiri']
[u'govt', u'look', u'hawk', u'match']
[u'toil', u'wood', u'keep', u'lead', u'garcia', u'charg']
[u'highlight', u'lebanon', u'humanitarian', u'crisi']
[u'highlight', u'lebanon', u'humanitarian', u'crisi']
[u'launch', u'appeal', u'beirut']
[u'back', u'israel', u'follow', u'lebanon', u'incurs']
[u'soldier', u'clear', u'iraq', u'manslaught']
[u'vail', u'broker', u'free', u'trade', u'talk']
[u'vaughan', u'aim', u'year', u'return']
[u'vermeulen', u'grab', u'pole', u'moto']
[u'vinni', u'mark', u'year', u'serv', u'communiti']
[u'voss', u'want', u'stay']
[u'william', u'comeback', u'end', u'zvonareva']
[u'woman', u'burn', u'lightn', u'strike']
[u'work', u'visa', u'erod', u'graduat', u'opportun', u'studi']
[u'toughen', u'anti', u'terror', u'law', u'howard']
[u'accus', u'breach', u'terror', u'case']
[u'african', u'littl', u'late', u'oxfam']
[u'agforc', u'go', u'charlevill', u'annual', u'confer']
[u'agreement', u'reach', u'wild', u'river', u'legisl']
[u'anti', u'nuclear', u'push', u'visit', u'sit']
[u'apprentic', u'forc', u'train', u'union']
[u'ariel', u'sharon', u'health', u'worsen']
[u'australia', u'singapor', u'begin', u'joint', u'militari']
[u'australian', u'perform', u'tour', u'franc']
[u'australian', u'urg', u'evacu', u'lebanon']
[u'babi', u'put', u'ogilvi', u'doubl', u'attempt', u'hold']
[u'baillieu', u'plan', u'help', u'problem', u'gambler']
[u'banana', u'industri', u'look', u'cyclon', u'proof']
[u'bank', u'warm', u'smart', u'card', u'idea', u'hockey']
[u'bathurst', u'fundrais', u'cyclist', u'return', u'home']
[u'beatti', u'undecid', u'elect', u'date']
[u'beazley', u'move', u'scrap', u'mine', u'polici']
[u'beazley', u'want', u'mine', u'polici', u'scrap']
[u'blake', u'down', u'roddick', u'indianapoli', u'final']
[u'book', u'focus', u'mother', u'daughter']
[u'boost', u'fertil', u'rate', u'vital', u'australia']
[u'brimbl', u'coron', u'deni', u'witch', u'hunt', u'claim']
[u'british', u'jew', u'ralli', u'support', u'israel']
[u'break', u'hill', u'lead', u'indigen', u'popul']
[u'build', u'worker', u'support', u'colleagu']
[u'busi', u'feel', u'wage', u'squeez', u'chamber']
[u'water', u'domest']
[u'calliop', u'council', u'budget', u'includ', u'rate', u'rise']
[u'camera', u'monitor', u'illeg', u'dump']
[u'campbel', u'stand', u'cloud', u'break', u'approv']
[u'part', u'staff', u'vote', u'strike']
[u'charter', u'flight', u'bring', u'australian', u'home']
[u'china', u'storm', u'toll', u'climb', u'past']
[u'citrus', u'grower', u'contribut', u'canker', u'packag']
[u'citi', u'locum', u'eas', u'countri', u'doctor', u'burden']
[u'closer']
[u'closer']
[u'closer', u'news']
[u'comput', u'knee', u'reconstruct']
[u'comput', u'improv', u'knee', u'surgeri', u'outcom']
[u'connolli', u'upbeat', u'fremantl', u'form']
[u'council', u'give', u'youth', u'centr', u'progress', u'deadlin']
[u'councillor', u'clarifi', u'hospit', u'plan']
[u'councillor', u'say', u'resid', u'mind', u'long', u'term']
[u'council', u'come', u'farmer']
[u'council', u'tri', u'landfil', u'approv']
[u'council', u'meet', u'super', u'elector', u'plan']
[u'cowboy', u'encourag', u'thurston', u'prognosi']
[u'cross', u'border', u'health', u'agreement', u'seek', u'soon']
[u'dairi', u'increas', u'return', u'farmer']
[u'darwin', u'celebr', u'humbl', u'beer']
[u'democrat', u'launch', u'water', u'recycl', u'petit']
[u'derwent', u'river', u'pollut', u'reduct', u'plan', u'announc']
[u'diplomat', u'effort', u'intensifi', u'middl', u'east']
[u'doctor', u'group', u'fear', u'birth', u'specialist', u'shortag']
[u'dog', u'attack']
[u'driver', u'hospit', u'highway', u'roll']
[u'drug', u'trial', u'review', u'urg', u'earli', u'caution']
[u'substitut', u'threaten', u'free', u'rang', u'produc']
[u'england', u'consid', u'arrang', u'match', u'ahead']
[u'test', u'factori', u'site', u'wast']
[u'evan', u'seek', u'clarif', u'educ', u'budget']
[u'porn', u'entrepreneur', u'fin', u'drug']
[u'fleet', u'clear']
[u'fleet', u'fli', u'high']
[u'ferri', u'pick', u'australian', u'tyre']
[u'consid', u'video', u'technolog', u'dive', u'crackdown']
[u'figur', u'highlight', u'dentist', u'shortag']
[u'footi', u'fan', u'fork', u'team', u'fabric']
[u'fuel', u'price', u'forc', u'taxi', u'fare', u'increas']
[u'leak', u'link', u'ship', u'contain']
[u'gatlin', u'avoid', u'showdown', u'powel', u'claim']
[u'gold', u'boost', u'break', u'hill', u'job']
[u'govt', u'block', u'probe', u'polic', u'colleg', u'harass']
[u'govt', u'open', u'marin', u'mammal', u'centr', u'help', u'save']
[u'govt', u'reject', u'dungog', u'council', u'rate', u'rise']
[u'govt', u'urg', u'boost', u'veteran', u'compo']
[u'grape', u'glut', u'crush', u'wine', u'price']
[u'grigorieva', u'medal', u'snatch', u'safe']
[u'hall', u'creek', u'group', u'form', u'alcohol', u'action', u'plan']
[u'hayden', u'win', u'rossi', u'falter']
[u'high', u'school', u'keen', u'bookpurnong', u'terrac', u'drainag']
[u'highway', u'work', u'spark', u'fear']
[u'hobart', u'hospit', u'remodel', u'geriatr', u'care']
[u'hous', u'afford', u'declin', u'report']
[u'howard', u'hope', u'australian', u'victoria', u'cross']
[u'hunger', u'strike', u'put', u'saddam', u'hospit']
[u'huon', u'rescu', u'talk', u'continu']
[u'indian', u'rescu', u'metr']
[u'indigen', u'leader', u'accus', u'punch', u'wife']
[u'indonesia', u'creat', u'terror', u'task', u'forc']
[u'injuri', u'end', u'tredrea', u'season']
[u'iraq', u'bomb', u'attack', u'kill']
[u'iraq', u'slide', u'civil']
[u'israel', u'continu', u'gaza', u'campaign']
[u'israel', u'continu', u'lebanon', u'strike']
[u'isra', u'troop', u'captur', u'hezbollah', u'fighter']
[u'isra', u'troop', u'captur', u'hezbollah', u'fighter']
[u'isra', u'troop', u'captur', u'hezbollah', u'guerilla']
[u'israel', u'lift', u'blockad', u'beirut', u'port']
[u'israel', u'violat', u'humanitarian', u'offici']
[u'jerusalem', u'meet', u'discuss', u'lebanon', u'conflict']
[u'juror', u'sell', u'lindi', u'chamberlain', u'trial', u'note', u'onlin']
[u'kagayama', u'break', u'superbik', u'aussi']
[u'kangaroo', u'search', u'base']
[u'keat', u'warn', u'snatch', u'grab', u'media']
[u'kerbsid', u'recycl', u'begin', u'kempsey', u'shire']
[u'kovco', u'investig', u'learn', u'experi', u'inquiri']
[u'labor', u'back', u'break', u'jam', u'hardi']
[u'labor', u'divid', u'mine', u'polici', u'scrap']
[u'lack', u'intimid', u'need', u'beat', u'silver', u'fern']
[u'latest', u'develop', u'upright', u'shear']
[u'lebanon', u'bomb', u'continu']
[u'licenc', u'allow', u'geotherm', u'power', u'explor']
[u'lion', u'leav', u'door', u'open']
[u'littl', u'princ', u'cunego', u'fulfil', u'expect', u'tour']
[u'manag', u'committe', u'question', u'water', u'pump']
[u'margaret', u'river', u'develop', u'grape']
[u'market', u'see', u'boost', u'wine', u'sale']
[u'matilda', u'asian', u'semi']
[u'mcewen', u'green', u'hushovd', u'win', u'final', u'stage']
[u'mcleod', u'undergo', u'foot', u'oper']
[u'meet', u'seek', u'support', u'town', u'hall']
[u'melbourn', u'vote', u'tourism', u'destin']
[u'minist', u'see', u'place', u'migrant', u'address', u'local']
[u'minist', u'hear', u'central', u'coast', u'water', u'woe']
[u'miss', u'boati', u'island']
[u'miss', u'woman']
[u'moira', u'shire', u'lift', u'rat']
[u'monto', u'shire', u'rat', u'rise']
[u'older', u'women', u'mum']
[u'australian', u'evacu', u'lebanon']
[u'morley', u'refer', u'straight', u'judiciari']
[u'motlop', u'mop', u'miss', u'shoot']
[u'multipl', u'charg', u'lay', u'follow', u'fieri', u'subiaco', u'clash']
[u'murder', u'woman', u'restrain', u'order']
[u'mysteri', u'leak', u'put', u'hospit']
[u'nation', u'worri', u'newborn', u'miss', u'hear']
[u'perform', u'art', u'produc', u'posit', u'bathurst']
[u'technolog', u'see', u'crucial', u'dryland', u'farm']
[u'northern', u'irrig', u'urg', u'break', u'hill', u'water']
[u'show', u'stall', u'terror', u'hear']
[u'sign', u'doha', u'round', u'breakthrough']
[u'nowra', u'licenc']
[u'govt', u'deni', u'plan', u'snowi', u'sell']
[u'dead', u'injur', u'motorway', u'collis']
[u'opec', u'want', u'avoid', u'high', u'price']
[u'orang', u'lose', u'sport', u'ground', u'hospit']
[u'paramed', u'prais', u'boy', u'crash', u'braveri']
[u'parti', u'trade', u'financi', u'manag', u'insult']
[u'pigpass', u'identifi', u'food', u'safeti', u'risk']
[u'defend', u'evacu', u'effort']
[u'point', u'pearc', u'futur', u'uncertain']
[u'polic', u'miss', u'elder', u'woman']
[u'polic', u'hope', u'law', u'reduc', u'road', u'toll']
[u'polic', u'investig', u'fatal', u'hous']
[u'polic', u'investig', u'fatal', u'lameroo', u'crash']
[u'polic', u'drug', u'charg', u'mildura', u'hous', u'search']
[u'polic', u'seek', u'help', u'miss', u'woman']
[u'polic', u'talk', u'miss', u'bushwalk']
[u'polic', u'maintain', u'school', u'zone', u'blitz']
[u'post', u'natal', u'adelaid', u'mother', u'recov', u'style']
[u'power', u'author', u'offer', u'bremer', u'assur']
[u'premier', u'ask', u'hear', u'resid', u'land', u'sale']
[u'produc', u'price', u'rise', u'rat', u'economist']
[u'project', u'consid', u'hopetoun', u'renew', u'energi']
[u'properti', u'sale', u'end', u'host', u'raquetbal', u'contest']
[u'puerto', u'rico', u'win', u'miss', u'univers']
[u'elder', u'grant', u'water', u'exempt']
[u'kitten', u'canberra']
[u'motorway', u'reopen', u'fatal', u'crash']
[u'sign', u'adelaid']
[u'raider', u'stun', u'dragon', u'fifth', u'straight']
[u'rasmussen', u'homework', u'mountain', u'titl']
[u'report', u'find', u'rocki', u'hous', u'afford']
[u'research', u'consid', u'alga', u'altern', u'fuel']
[u'resourc', u'stock', u'push', u'share', u'market', u'south']
[u'respons', u'plan', u'fish', u'farm', u'overwhelm']
[u'restaur', u'refus', u'entri', u'guid', u'say']
[u'revis', u'cane', u'smut', u'plan', u'green', u'light']
[u'rice', u'arriv', u'beirut']
[u'rice', u'urg', u'restraint', u'middl', u'east', u'conflict']
[u'roebourn', u'woman', u'jail', u'fatal', u'stab']
[u'rover', u'hold', u'beat', u'pioneer']
[u'seek', u'memori', u'hall', u'revamp']
[u'ruddock', u'warn', u'terror', u'law']
[u'need', u'communiti', u'legal', u'centr', u'opposit']
[u'scientist', u'donat', u'prize', u'money', u'indigen', u'student']
[u'search', u'find', u'bodi', u'miss']
[u'second', u'detain', u'fisherman', u'test', u'posit']
[u'second', u'patrol', u'boat', u'plan', u'reef']
[u'silvestri', u'admit', u'lie', u'polic', u'drug']
[u'silvestri', u'admit', u'lie', u'brimbl', u'inquest']
[u'silvestri', u'deni', u'have', u'illeg', u'drug', u'board']
[u'sleep', u'coupl', u'surviv', u'crash', u'bedroom']
[u'southern', u'warn', u'sever', u'weather']
[u'state', u'ask', u'match', u'feder', u'rail', u'fund']
[u'state', u'fund', u'sport', u'field', u'revamp']
[u'storm', u'lash', u'south', u'west']
[u'suck', u'spider', u'defi', u'scientif', u'classif']
[u'sydney', u'secur', u'guard', u'plead', u'guilti', u'murder']
[u'syria', u'readi', u'enter', u'conflict', u'threaten']
[u'tamworth', u'consid', u'harsher', u'water', u'restrict']
[u'farm', u'threaten', u'tree', u'plantat']
[u'vodka', u'win', u'intern', u'award']
[u'terror', u'committ', u'begin', u'melbourn']
[u'terror', u'accus', u'qaeda', u'propaganda', u'film']
[u'thai', u'teacher', u'shoot', u'dead', u'class']
[u'thoma', u'appeal', u'terror', u'convict']
[u'thorn', u'webck', u'bang', u'head', u'intens', u'train']
[u'thousand', u'join', u'jewish', u'prayer', u'peac']
[u'thuringowa', u'rat', u'rise']
[u'water', u'region', u'map']
[u'torch', u'motorcyclist', u'spark', u'polic', u'safeti']
[u'train', u'grind', u'report', u'find', u'asbesto', u'exposur']
[u'trio', u'face', u'child', u'porn', u'charg']
[u'singl', u'accid']
[u'soldier', u'serv', u'iraq', u'face', u'kovco', u'inquiri']
[u'bodi', u'team', u'student', u'servic']
[u'union', u'lodg', u'complaint', u'indigen', u'offic']
[u'union', u'reject', u'claim', u'law', u'silenc']
[u'union', u'voic', u'safeti', u'concern']
[u'uni', u'place']
[u'victoria', u'cross', u'auction']
[u'walgett', u'council', u'owe', u'late', u'rat']
[u'wallabi', u'gift', u'carter', u'penalti', u'smith']
[u'wallabi', u'ponder', u'recal', u'rodzilla']
[u'weather', u'stay', u'fine', u'festiv']
[u'websit', u'track', u'drought', u'impact']
[u'westpoint', u'head', u'accus', u'lie', u'court']
[u'whale', u'succumb', u'injuri']
[u'wollongong', u'lebanes', u'communiti', u'urg', u'govt', u'help']
[u'wreidt', u'draw', u'disput']
[u'talk', u'collaps']
[u'york', u'unsur', u'futur']
[u'zvonareva', u'claim', u'cincinnati', u'titl']
[u'activist', u'attempt', u'block', u'woodchip', u'shipment']
[u'patient', u'give', u'elect', u'surgeri']
[u'plan', u'cloth', u'equip', u'purchas', u'overhaul']
[u'urg', u'beach', u'safeti', u'precaut']
[u'advoc', u'fin', u'elector', u'breach']
[u'agassi', u'open', u'defenc', u'determin']
[u'ambul', u'forc', u'home']
[u'akhtar', u'talk', u'need', u'speed']
[u'black', u'strength', u'wallabi', u'clash']
[u'anti', u'group', u'launch', u'internet', u'petit']
[u'offer', u'grigorieva', u'replac', u'medal']
[u'asic', u'question', u'westpoint', u'founder', u'asset']
[u'aussi', u'throw', u'grade', u'cricket', u'lifelin', u'freddi']
[u'aussi', u'focus', u'pass', u'game', u'silver']
[u'aussi', u'upset', u'silver', u'fern']
[u'aust', u'musuem', u'facelift']
[u'australia', u'institut', u'blast', u'environ']
[u'australia', u'look', u'assur', u'hewitt', u'argentina']
[u'aust', u'wind', u'evacu', u'effort']
[u'bank', u'warn', u'fake', u'websit', u'scam']
[u'barnett', u'examin', u'singapor', u'anti', u'obes', u'program']
[u'barr', u'defend', u'handl', u'school', u'inquiri']
[u'beamer', u'rais', u'consum', u'issu']
[u'beazley', u'unfaz', u'uranium', u'mine', u'debat']
[u'beazley', u'uranium', u'polici', u'split', u'labor']
[u'beazley', u'uranium', u'push', u'split']
[u'bendigo', u'huon', u'worker', u'rescu', u'packag']
[u'benni', u'escap', u'lebanon']
[u'crowd', u'expect', u'attend', u'ralli', u'hospit']
[u'black', u'truffl', u'yield', u'fantast']
[u'boomer', u'look', u'socceroo', u'inspir']
[u'brack', u'commit', u'term']
[u'breen', u'admit', u'hospit']
[u'bridestow', u'estat', u'lavend', u'farm', u'sale']
[u'brimbl', u'coron', u'doubt', u'silvestri', u'memori', u'laps']
[u'bronco', u'berrigan', u'half']
[u'buchanan', u'keen', u'flintoff', u'offer', u'grade']
[u'busi', u'choic']
[u'busi', u'hear', u'concern', u'lennon']
[u'carter', u'holt', u'harvey', u'closur', u'cost', u'job']
[u'appoint', u'craig', u'financ', u'offic']
[u'investig', u'toxic', u'report']
[u'chaplin', u'star', u'shin', u'bright']
[u'circus', u'workshop', u'beat', u'holiday', u'boredom']
[u'cliff', u'head', u'product', u'well', u'complet']
[u'closer']
[u'closer', u'news']
[u'compani', u'beat', u'life']
[u'confer', u'expect', u'strong', u'focus', u'wine']
[u'connor', u'hop', u'rekindl', u'roddick', u'win', u'passion']
[u'council', u'continu', u'address', u'entertain', u'centr']
[u'council', u'highlight', u'land', u'clear', u'law', u'loophol']
[u'council', u'like', u'approv', u'shop', u'complex', u'plan']
[u'council', u'reject', u'polic', u'posit', u'explan']
[u'council', u'reject', u'stage', u'dwyer', u'site', u'project']
[u'council', u'condemn', u'elector', u'merger', u'plan']
[u'council', u'ahead', u'sale']
[u'court', u'jail', u'brother', u'stab', u'death']
[u'court', u'reject', u'subpoena', u'campbel', u'wind']
[u'court', u'tell', u'workcov', u'employe', u'falsifi']
[u'cross', u'dress', u'lawyer', u'challeng', u'boy', u'club']
[u'custom', u'apprehend', u'fish', u'boat']
[u'darwin', u'consid', u'condom', u'vend', u'machin', u'trial']
[u'demon', u'welcom', u'say', u'robertson']
[u'docker', u'pair', u'ban', u'match']
[u'dog', u'fatal', u'attack', u'girl']
[u'draft', u'timber', u'harvest', u'regul', u'anger']
[u'drought', u'forc', u'cost']
[u'employ', u'unpaid', u'wag']
[u'environ', u'group', u'critic', u'australia', u'institut']
[u'escape', u'hand', u'polic']
[u'evacue', u'fear', u'leav']
[u'explos', u'factori', u'worker', u'return', u'work']
[u'famili', u'breakdown', u'part', u'blame', u'youth', u'woe']
[u'farmer', u'lament', u'talk', u'failur']
[u'stem', u'cell', u'muscl', u'cell']
[u'fee', u'transport', u'pressur', u'prompt', u'emerg']
[u'figur', u'reveal', u'seeker']
[u'flight', u'centr', u'fin', u'breach']
[u'flight', u'return', u'normal', u'clear']
[u'disrupt', u'melbourn', u'flight']
[u'forb', u'trial', u'livestock', u'auction']
[u'forum', u'focus', u'cane', u'smut', u'impact']
[u'freier', u'aim', u'nation', u'return']
[u'fund', u'allow', u'start', u'drought', u'pipelin']
[u'fungal', u'diseas', u'wipe', u'wheat', u'crop']
[u'gerrard', u'want', u'england', u'captain']
[u'gladston', u'harbour', u'polic', u'boost']
[u'gold', u'coast', u'get', u'overnight', u'rain']
[u'gold', u'worker', u'hous', u'break', u'hill']
[u'govt', u'call', u'japan', u'respect', u'whale', u'sanctuari']
[u'govt', u'defend', u'surgeri', u'date', u'notif', u'time']
[u'govt', u'question', u'china', u'organ', u'harvest']
[u'govt', u'urg', u'reinstat', u'electr', u'concess']
[u'grandpar', u'support', u'plan']
[u'green', u'cop', u'head', u'butt']
[u'hawk', u'want', u'match']
[u'healthcar', u'worker', u'vaccin', u'move']
[u'health', u'educ', u'import', u'nuclear']
[u'hervey', u'fisher', u'qsia', u'chang']
[u'high', u'wag', u'see', u'contribut', u'hous']
[u'hird', u'headlin', u'return', u'bomber']
[u'need', u'burn', u'approv']
[u'huon', u'custom', u'consid', u'rescu', u'packag']
[u'ing', u'return', u'dragon']
[u'inquest', u'tell', u'difficult', u'mother', u'relationship']
[u'investig', u'continu', u'bodi', u'river']
[u'investig', u'launch', u'fatal', u'road', u'crash']
[u'israel', u'target', u'flee', u'civilian']
[u'israel', u'allow', u'airlift', u'lebanon']
[u'japanes', u'soldier', u'arriv', u'home', u'iraq']
[u'japan', u'report', u'high', u'rate', u'pregnanc', u'hunt']
[u'john', u'buchanan', u'interview']
[u'judg', u'guid', u'detail', u'refer', u'gay', u'aborigin']
[u'justic', u'staff', u'investig', u'inappropri']
[u'kingston', u'accept', u'match']
[u'kovco', u'bodi', u'escort', u'front', u'inquiri']
[u'labor', u'uranium', u'plan', u'critic', u'grow', u'louder']
[u'land', u'sale', u'upset', u'indigen', u'communiti']
[u'liber', u'want', u'answer', u'carter', u'holt', u'harvey', u'closur']
[u'libya', u'foreign', u'medic', u'retrial', u'adjourn']
[u'low', u'call', u'renew', u'energi']
[u'malaysian', u'woman', u'charg', u'heroin', u'haul']
[u'jail', u'ecstasi', u'sale', u'overdos']
[u'plead', u'guilti', u'wife', u'manslaught']
[u'welcom', u'help', u'famili', u'flee', u'lebanon']
[u'martin', u'back', u'expans', u'uranium', u'mine']
[u'martin', u'defend', u'uranium', u'mine', u'support']
[u'match', u'club', u'hear', u'appeal', u'verdict']
[u'mayor', u'councillor', u'continu', u'stoush']
[u'mayor', u'plan', u'replac', u'diseas', u'hyde', u'park', u'tree']
[u'medal', u'steal', u'hockeyroo', u'skipper']
[u'blaze', u'remain', u'unsolv']
[u'mine', u'news', u'boost', u'stock', u'market']
[u'monopoli', u'swap', u'cash', u'card']
[u'australian', u'evacue', u'arriv', u'turkey']
[u'claim', u'lodg', u'sack', u'conroy']
[u'uni', u'student', u'place', u'nurs']
[u'motel', u'owner', u'deni', u'knife', u'wield', u'bandit']
[u'gibson', u'iron', u'plan', u'aztec', u'takeov']
[u'nasa', u'readi', u'atlanti', u'lift']
[u'servic', u'begin']
[u'research', u'bring', u'treatment', u'hope']
[u'technolog']
[u'korea', u'issu', u'domin', u'asean', u'talk', u'downer']
[u'north', u'coast', u'jobless', u'rate', u'fall', u'slight']
[u'govt', u'flag', u'law', u'alcohol', u'free', u'area']
[u'offer', u'join', u'peacekeep', u'forc', u'lebanon']
[u'opposit', u'urg', u'stamp', u'duti', u'relief']
[u'person', u'defend', u'brimbl', u'rescu', u'effort']
[u'photo', u'southgat']
[u'pill', u'altern', u'trial', u'australia']
[u'plummer', u'put', u'reput', u'line']
[u'back', u'polici', u'slash', u'poker', u'machin', u'number']
[u'urg', u'geelong', u'bypass', u'rout', u'rethink']
[u'urg', u'local', u'action', u'reconcili']
[u'polic', u'blitz', u'prompt', u'drink', u'drive', u'warn']
[u'polic', u'wit', u'assault', u'blind']
[u'polic', u'push', u'second', u'kimberley', u'magistr']
[u'polic', u'remov', u'woodchip', u'protest']
[u'polic', u'want', u'talk', u'factori', u'blaze']
[u'post', u'mortem', u'reveal', u'die', u'intern', u'injuri']
[u'power', u'station', u'water', u'scandal']
[u'public', u'ask', u'help', u'catch', u'cemeteri', u'vandal']
[u'public', u'comment', u'seek', u'great', u'artesian', u'basin']
[u'public', u'urg', u'speak', u'workchoic']
[u'polic', u'offic', u'charg', u'alleg']
[u'rabbitoh', u'leash']
[u'ratepay', u'group', u'look', u'work', u'council']
[u'region', u'resid', u'vote', u'fish', u'chip']
[u'replac', u'church', u'unlik', u'equal', u'origin']
[u'research', u'warn', u'high', u'dose', u'vitamin', u'effect']
[u'rice', u'begin', u'talk', u'durabl', u'solut']
[u'rice', u'fli', u'israel', u'lebanon', u'visit']
[u'rice', u'hold', u'talk', u'lebanes', u'isra', u'leader']
[u'rice', u'israel', u'lebanon', u'visit']
[u'rice', u'survey', u'tear', u'middl', u'east']
[u'rice', u'urg', u'focus', u'remain', u'palestinian', u'state']
[u'consid', u'altern', u'intersect', u'design']
[u'safe', u'condobolin']
[u'sale', u'threaten', u'hobart', u'church']
[u'sartor', u'urg', u'interven', u'supermarket', u'plan']
[u'scout', u'camp', u'receiv', u'grant', u'build']
[u'search', u'miss', u'elder', u'coupl']
[u'selga', u'back', u'move', u'permit', u'legal', u'advic']
[u'serena', u'rank', u'rise']
[u'servic', u'hop', u'maintain', u'second', u'rural', u'financi']
[u'seven', u'boss', u'buy', u'medal', u'record', u'price']
[u'shepparton', u'servic']
[u'shire', u'presid', u'reject', u'critic', u'hospit']
[u'shire', u'seek', u'drink', u'water', u'option']
[u'silvestri', u'deni', u'neglig', u'brimbl', u'inquest']
[u'socceroo', u'look', u'leagu', u'star', u'stay', u'away']
[u'soldier', u'jail', u'tablet', u'ecstasi', u'haul']
[u'soldier', u'link', u'kovco', u'bodi', u'bungl', u'front', u'inquiri']
[u'soldier', u'leav', u'afghanistan']
[u'south', u'east', u'asian', u'statement', u'burma', u'water']
[u'spida', u'swan', u'croad']
[u'stoke', u'reveal', u'buyer']
[u'teacher', u'jail']
[u'test', u'jenolan', u'cave', u'world', u'oldest']
[u'thai', u'elector', u'commission', u'jail']
[u'tiger', u'chase', u'wallac']
[u'dayer', u'finish']
[u'trade', u'talk', u'failur', u'blow', u'aust', u'farmer']
[u'transmitt', u'assist', u'knee', u'reconstruct']
[u'trap', u'australian', u'urg', u'join', u'convoy']
[u'udia', u'urg', u'water', u'debat', u'emot']
[u'uncertainti', u'surround', u'barossa', u'wine', u'train', u'plan']
[u'rapporteur', u'examin', u'homeless']
[u'uranium', u'confer', u'protest', u'criticis', u'beazley']
[u'uranium', u'confer', u'discuss', u'labor', u'backflip']
[u'uranium', u'turn', u'hurt', u'labor', u'greenpeac']
[u'get', u'month', u'spi', u'michael', u'jackson']
[u'vail', u'focus', u'domest', u'issu', u'boswel']
[u'victoria', u'renew', u'petrol', u'price', u'inquiri']
[u'entitl', u'uranium', u'stanc', u'smith']
[u'wallabi', u'mauger']
[u'water', u'suppli', u'plan', u'prove', u'cost']
[u'urg', u'protect', u'skill', u'migrant']
[u'westpoint', u'promot', u'restrict', u'extend']
[u'whale', u'sight', u'year']
[u'wimmera', u'waterway', u'environment', u'flow']
[u'wine', u'train', u'track']
[u'women', u'servic', u'combin']
[u'world', u'trade', u'talk', u'failur']
[u'world', u'trade', u'talk', u'suspend']
[u'yunupingu', u'issu', u'domest', u'violenc', u'order']
[u'yunupingu', u'refus', u'domest', u'violenc', u'deal']
[u'abar', u'present', u'outlook', u'confer', u'north', u'west']
[u'accc', u'keep', u'plan', u'chiquita', u'takeov']
[u'actu', u'mull', u'legal', u'action', u'campaign', u'muckrak']
[u'adelaid', u'wait', u'horvath', u'decis']
[u'claim', u'hospit', u'budget']
[u'ancient', u'prayer', u'book']
[u'annan', u'bomb', u'claim', u'shock', u'israel']
[u'rate', u'rise', u'analyst']
[u'offer', u'replac', u'powel', u'steal', u'medal']
[u'arthur', u'exit', u'event']
[u'attack', u'boost', u'hezbollah', u'popular']
[u'auckland', u'wellington', u'passeng', u'servic', u'scrap']
[u'aust', u'criticis', u'law']
[u'australian', u'trap', u'lebanon']
[u'aust', u'soldier', u'injur', u'afghanistan']
[u'aust', u'troop', u'wind', u'iraqi']
[u'bali', u'bomber', u'face', u'august', u'execut']
[u'benaud', u'talk', u'england', u'chanc']
[u'bendigo', u'face', u'harsher', u'water', u'restrict']
[u'hold', u'meet', u'caroona', u'coal', u'basin', u'plan']
[u'polar', u'studi', u'find', u'anti', u'depress', u'help']
[u'black', u'seek', u'chang', u'draft', u'forestri', u'code']
[u'blake', u'inclus', u'base', u'bulk', u'connolli']
[u'boyl', u'criticis', u'indigen', u'council', u'financ']
[u'branxholm', u'win', u'fight', u'polic', u'resid']
[u'breakthrough', u'sunflow', u'diseas', u'identif']
[u'brimbl', u'photo', u'possibl', u'say', u'silvestri']
[u'brough', u'give', u'state', u'child', u'care', u'regul', u'deadlin']
[u'bruton', u'join', u'boomer', u'squad']
[u'buchanan', u'play', u'open', u'duel']
[u'builder', u'say', u'asbesto', u'rule', u'cost']
[u'busi', u'urg', u'workplac', u'chang', u'support']
[u'call', u'alcohol', u'abus', u'fund']
[u'camera', u'melbourn', u'tourist', u'attract']
[u'camera', u'snap', u'unregist', u'uninsur', u'driver']
[u'campbel', u'reject', u'wind', u'farm', u'accus']
[u'campbel', u'wind', u'farm', u'decis', u'polit', u'labor']
[u'cannavaro', u'complet', u'real']
[u'capit', u'fail', u'snare', u'grima']
[u'catania', u'back', u'plan', u'uranium', u'review']
[u'central', u'victoria', u'turn', u'poor', u'workplac']
[u'consid', u'permit', u'polici', u'review']
[u'chinchilla', u'shire', u'budget', u'road', u'focus']
[u'chines', u'opposit', u'scupper', u'macquari', u'pccw']
[u'church', u'offer', u'support', u'stricken', u'farmer']
[u'clarenc', u'council', u'speed', u'process']
[u'closer']
[u'closer']
[u'cole', u'excus', u'review', u'legal', u'privileg']
[u'commerc', u'monitor', u'cane', u'smut', u'issu']
[u'concern', u'air', u'goulburn', u'antisoci', u'behaviour']
[u'concern', u'air', u'biodiesel', u'fund', u'decis']
[u'confer', u'hear', u'uranium', u'compani', u'blind', u'greed']
[u'cooloola', u'rat', u'rise']
[u'council', u'commit', u'galleri', u'project']
[u'council', u'green', u'light', u'calala', u'subdivis']
[u'councillor', u'lodg', u'graviti', u'resciss', u'motion']
[u'councillor', u'stand', u'mackay', u'rat', u'rise']
[u'council', u'review', u'sustain']
[u'counsel', u'offer', u'polic', u'fatal', u'highway']
[u'court', u'jail', u'dead', u'drug', u'sale']
[u'increas', u'burn', u'bank', u'retail', u'stock']
[u'darwin', u'develop', u'desper', u'concret']
[u'daughter', u'husband', u'deni', u'violenc', u'porritt', u'inquest']
[u'dead', u'lie', u'highway']
[u'demograph', u'beli', u'need', u'school', u'closur']
[u'diseas', u'tree', u'spark', u'sydney']
[u'dont', u'blame', u'escort', u'kovco', u'soldier']
[u'door', u'open', u'south', u'east', u'polic', u'station']
[u'downer', u'begin', u'malaysia', u'talk']
[u'downer', u'flag', u'signific', u'timor', u'troop', u'withdraw']
[u'drought', u'offic', u'angri', u'loss']
[u'drought', u'prompt', u'west', u'crisi', u'meet']
[u'drought', u'water', u'price', u'blame', u'drop', u'irrig']
[u'drug', u'code', u'improv', u'transpar', u'say', u'watchdog']
[u'eagl', u'chase', u'consist']
[u'east', u'timores', u'rebel', u'leader', u'arrest']
[u'econom', u'confid', u'hit', u'year', u'bank']
[u'economist', u'data']
[u'eurobodalla', u'council', u'put', u'plan', u'hold']
[u'fatal', u'crash', u'involv', u'second', u'polic']
[u'fear', u'observ', u'kill', u'isra', u'attack']
[u'fear', u'worker', u'kill', u'isra', u'attack']
[u'ferrari', u'fatal', u'highway', u'accid']
[u'foley', u'defend', u'basketbal', u'debt', u'write']
[u'sport', u'broadcast', u'die']
[u'gardin', u'fin', u'ban', u'drive']
[u'garrett', u'oppos', u'beazley', u'uranium', u'plan']
[u'gaza', u'strike', u'kill', u'hama', u'milit']
[u'girl', u'assault', u'south', u'adelaid']
[u'girl', u'hospit', u'park', u'accid']
[u'glaxo', u'predict', u'bird', u'vaccin']
[u'govern', u'deni', u'respons', u'possibl', u'pest']
[u'govt', u'urg', u'dump', u'council', u'rate', u'peg']
[u'grain', u'price', u'rise', u'turn', u'ethanol']
[u'green', u'head', u'butt', u'brain', u'fade', u'danih']
[u'hackett', u'show', u'faith', u'thorp', u'comeback']
[u'hagan', u'unfaz', u'knight', u'injuri', u'list']
[u'hewitt', u'upset']
[u'hoggard', u'back', u'flintoff', u'grade', u'plan']
[u'holden', u'sign', u'rescu', u'plan', u'huon', u'strike']
[u'hop', u'fade', u'miss', u'fisherman']
[u'howard', u'birthday', u'spark', u'fresh', u'leadership', u'specul']
[u'howard', u'resist', u'call', u'declar', u'hand', u'leadership']
[u'huon', u'disput', u'affect', u'tare', u'worker']
[u'huon', u'disput', u'threaten', u'holden', u'product']
[u'increas', u'pademelon', u'death', u'alarm']
[u'indigen', u'council', u'struggl', u'financ']
[u'infalt', u'open']
[u'inflat', u'exceed', u'rbas', u'target', u'rang']
[u'inflat', u'figur', u'increas', u'prospect', u'rate', u'hike']
[u'injuri', u'overshadow', u'trafford', u'test']
[u'investig', u'council', u'bulli', u'claim', u'wind']
[u'iraq', u'address', u'congress']
[u'israel', u'criticis', u'gaza', u'power', u'plant', u'bomb']
[u'isra', u'strike', u'kill', u'worker']
[u'isra', u'strike', u'kill', u'observ']
[u'isra', u'express', u'sorrow', u'death', u'mistak']
[u'isra', u'troop', u'advanc', u'south', u'lebanon']
[u'israel', u'kill', u'palestinian', u'gaza']
[u'jamieson', u'set', u'australian', u'record', u'stockholm']
[u'japan', u'china', u'hold', u'sidelin', u'meet', u'asean']
[u'jayasuriya', u'select', u'riddl', u'lankan']
[u'jetstar', u'asia', u'aust', u'carrier', u'integr', u'brand']
[u'juri', u'intimid', u'claim', u'investig']
[u'kouta', u'allow', u'retir', u'term']
[u'charter', u'ferri', u'leav', u'lebanon']
[u'lismor', u'open', u'murwillumbah', u'offic']
[u'local', u'firm', u'urg', u'speak', u'plan']
[u'long', u'wait', u'hall', u'creek', u'pool']
[u'jail', u'wadey', u'riot', u'role']
[u'sentenc', u'partner', u'manslaught']
[u'win', u'fight', u'oversea', u'stem', u'cell', u'treatment']
[u'martin', u'face', u'feder', u'critic', u'uranium', u'mine']
[u'mayor', u'will', u'wait', u'polic', u'station', u'fund']
[u'mcgauran', u'announc', u'landcar', u'fund']
[u'mcgrath', u'disappoint', u'england', u'form', u'slump']
[u'meet', u'decid', u'futur', u'volunt', u'ambul']
[u'meet', u'discuss', u'alinta', u'compo', u'offer']
[u'minist', u'ask', u'wwii', u'veteran', u'gold', u'card', u'claim']
[u'say', u'town', u'powerlin', u'benefit']
[u'keep', u'close', u'report', u'station']
[u'seek', u'public', u'inquiri', u'boundari', u'chang', u'plan']
[u'gambler', u'initi', u'self', u'impos', u'ban']
[u'devast', u'rape', u'charg', u'acquitt']
[u'plead', u'guilti', u'babi', u'manslaught']
[u'murray', u'impress', u'payn', u'half', u'effort']
[u'museum', u'give', u'joli', u'pitt', u'babi', u'waxi', u'honour']
[u'nation', u'want', u'council', u'share']
[u'home', u'seek', u'bankrupt', u'villag', u'resid']
[u'price', u'agreement', u'strzelecki', u'buyback', u'talk']
[u'norma', u'plummer', u'laura', u'bertouch', u'sharell', u'mcmahon']
[u'save', u'sydney', u'tree']
[u'novelti', u'lens', u'restrict', u'consider']
[u'offic', u'charg', u'sadden', u'polic', u'chief']
[u'olmert', u'express', u'sorrow', u'attack']
[u'opal', u'roll', u'sniff', u'solut']
[u'paper', u'canvass', u'sentenc', u'role', u'juri']
[u'part', u'deliveri', u'avert', u'holden', u'stand']
[u'plan', u'hobart', u'whale', u'research', u'centr']
[u'plan', u'truant', u'centrelink', u'payment', u'criticis']
[u'plunkett', u'join', u'england', u'injuri', u'list']
[u'pluto', u'think', u'warm']
[u'birthday', u'prompt', u'leadership', u'call']
[u'open', u'talk', u'vail']
[u'polic', u'car', u'damag', u'chase']
[u'polic', u'investig', u'derbi', u'skull']
[u'polic', u'investig', u'dead', u'blaze', u'seek', u'public', u'help']
[u'polic', u'boat', u'blaze', u'link', u'attempt']
[u'polic', u'unawar', u'schooli', u'week', u'terror', u'threat']
[u'prison', u'escap', u'plan']
[u'prize', u'offer', u'hobart', u'waterfront', u'redesign']
[u'public', u'urg', u'oppos', u'elector', u'seat', u'chang']
[u'rain', u'bring', u'littl', u'relief', u'farmer']
[u'rare', u'butterfli', u'arnhem', u'land']
[u'red', u'sign', u'highland']
[u'report', u'critic', u'doomadge', u'communiti', u'council']
[u'report', u'find', u'farm', u'water', u'drop']
[u'resid', u'rat', u'rise', u'anger']
[u'retir', u'develop', u'talk', u'remain', u'secret']
[u'room', u'mackay', u'rocki', u'cash', u'coal', u'busi']
[u'continu', u'water', u'crisi']
[u'rudd', u'gift', u'howard', u'goat']
[u'ruddock', u'seek', u'tougher', u'classif', u'law']
[u'basketbal', u'debt', u'deal']
[u'sack', u'conroy', u'worker', u'urg', u'consid', u'port']
[u'lose', u'rural', u'counsellor']
[u'salvo', u'settl', u'abus', u'claim']
[u'coupl', u'inquiri', u'tell', u'discrimin']
[u'second', u'string', u'socceroo', u'unavoid', u'oneil']
[u'silvestri', u'brimbl', u'inquest']
[u'shire', u'urg', u'join', u'plan', u'joint', u'landfil']
[u'shoalhaven', u'council', u'decid', u'supermarket', u'plan']
[u'silvestri', u'deni', u'evid', u'suppress']
[u'singl', u'bodi', u'deliv', u'rural', u'financi']
[u'smith', u'coach', u'glori']
[u'soccer', u'field', u'light', u'appeas', u'resid', u'group']
[u'somali', u'islamist', u'blame', u'ethiopia', u'stall', u'peac']
[u'stirl', u'back', u'beazley', u'uranium', u'polici']
[u'surgeri', u'end', u'anasta', u'season']
[u'suspens', u'end', u'morley', u'career']
[u'sydney', u'chauvel', u'cinema', u'reopen']
[u'sydney', u'terror', u'trial', u'adjourn']
[u'urg', u'spirit', u'money', u'aborigin']
[u'teen', u'accus', u'incit', u'attack']
[u'countri', u'hour', u'road', u'murrayvill']
[u'titan', u'council', u'resolv', u'stadium']
[u'toowoomba', u'prepar', u'recycl', u'sewag', u'vote']
[u'toowoomba', u'water', u'phone', u'poll', u'investig']
[u'tourism', u'australia', u'lose', u'manag', u'director']
[u'trade', u'shortag', u'blame', u'wilcannia', u'hous', u'woe']
[u'line', u'passeng', u'number', u'declin']
[u'tuna', u'report', u'prompt', u'popul', u'check']
[u'ullrich', u'basso', u'davi', u'learn', u'dope', u'fate']
[u'chief', u'repeat', u'lebanon', u'ceas']
[u'death', u'pressur', u'rome', u'talk', u'ceas']
[u'unfit', u'davi', u'miss']
[u'union', u'fear', u'campaign', u'expos', u'say', u'howard']
[u'worker', u'kill', u'isra', u'attack']
[u'uranium', u'shortag', u'forc', u'commod', u'price']
[u'troop', u'baghdad']
[u'vandal', u'target', u'queen', u'victoria', u'statu']
[u'resist', u'tighter', u'restrict']
[u'visitor', u'centr', u'financ', u'see', u'vital']
[u'wallabi', u'poke', u'black', u'claim']
[u'wallabi', u'recal', u'rodzilla', u'clash']
[u'word', u'erupt', u'councillor', u'state']
[u'wast', u'dump', u'public', u'hear', u'wind']
[u'wind', u'farmer', u'hope', u'shift', u'renew', u'energi']
[u'wineri', u'look', u'boost', u'storag']
[u'wodonga', u'record', u'fever', u'case']
[u'wollongong', u'council', u'back', u'land', u'sale', u'opposit']
[u'youth', u'bodi', u'fear', u'eros', u'right', u'feder']
[u'youth', u'complex', u'delay', u'creat', u'councillor', u'concern']
[u'zinifex', u'boost', u'centuri', u'product']
[u'abc', u'corner', u'breach', u'code', u'practic', u'acma']
[u'action', u'urg', u'protect', u'post', u'offic', u'build']
[u'adelaid', u'bank', u'kick', u'report', u'season']
[u'adelaid', u'unit', u'line', u'finalis']
[u'expect', u'opposit', u'censorship', u'push']
[u'reach', u'southern', u'lebanon']
[u'alcan', u'plead', u'guilti', u'worker', u'injuri']
[u'dead', u'afghanistan', u'helicopt', u'crash']
[u'black', u'readi', u'resurg', u'wallabi']
[u'black', u'reject', u'haka', u'critic']
[u'name', u'hunter', u'candid']
[u'altern', u'model', u'unveil', u'wollongong']
[u'review', u'superannu', u'advic']
[u'astronom', u'specul', u'kuiper', u'belt']
[u'attorney', u'general', u'discuss', u'terror', u'book']
[u'aurora', u'help', u'drive', u'wag', u'say', u'union']
[u'aussi', u'dollar', u'hit', u'month', u'high']
[u'australian', u'kill', u'southern', u'lebanon', u'report']
[u'australian', u'kill', u'worst', u'isra', u'loss']
[u'australia', u'pull', u'soldier', u'south', u'lebanon']
[u'aust', u'woman', u'jail', u'drug', u'indonesia']
[u'restructur', u'boost', u'transpar']
[u'unaccount', u'say', u'tuckey']
[u'backpack', u'murder', u'trial', u'start']
[u'ballina', u'decid', u'fluorid', u'support']
[u'banana', u'suppli', u'expect', u'bend', u'upward', u'soon']
[u'council', u'stand', u'rat', u'rise']
[u'beaconsfield', u'owner', u'consid', u'sale']
[u'beatti', u'hint', u'recycl', u'water', u'elect', u'platform']
[u'beazley', u'warn', u'tripl', u'whammi', u'rate', u'rise']
[u'berri', u'barmera', u'council', u'announc', u'rat', u'rise']
[u'buck', u'tip', u'hepburn', u'littl', u'black', u'dress']
[u'stalk', u'western', u'sydney']
[u'rate', u'rise', u'loom', u'longreach', u'resid']
[u'bourk', u'say', u'magistr', u'live', u'local']
[u'brimbl', u'death', u'cabin', u'mat', u'shadi']
[u'bses', u'beat', u'smut', u'plan', u'approv']
[u'busi', u'chamber', u'fear', u'potenti', u'rat']
[u'chase', u'accus', u'refus', u'bail']
[u'censorship', u'law', u'domin', u'attorney', u'general', u'meet']
[u'centr', u'tackl', u'land', u'substanc', u'abus']
[u'china', u'win', u'final', u'birth', u'asian']
[u'clarkson', u'draw', u'sheedi', u'wisdom']
[u'closer']
[u'closer']
[u'closer']
[u'figur', u'deni', u'intern', u'dissent', u'scullion']
[u'presid', u'unawar', u'scullion', u'challeng']
[u'compani', u'renew', u'portland', u'wave', u'project']
[u'connolli', u'condemn', u'throat', u'cut', u'haka']
[u'costello', u'relief', u'petrol', u'price']
[u'council', u'consid', u'water', u'improv', u'cost']
[u'council', u'investig', u'bottl', u'great', u'artesian']
[u'council', u'ranger', u'urg', u'know', u'danger']
[u'council', u'say', u'beach', u'skydiv', u'plan']
[u'council', u'say', u'second', u'build']
[u'council', u'fund', u'ymca', u'fold']
[u'council', u'underlin', u'import', u'poki', u'issu']
[u'custom', u'pay', u'cargo', u'compo']
[u'dead', u'attack', u'rock', u'busi', u'baghdad', u'district']
[u'decis', u'sack', u'aker', u'hard']
[u'decis', u'sack', u'aker', u'hard', u'say', u'brown']
[u'diplomat', u'fail', u'agre', u'lebanon', u'ceas']
[u'downer', u'confirm', u'australian', u'death', u'lebanon']
[u'drink', u'driver', u'accus', u'ram', u'polic', u'twice']
[u'drought', u'rescu', u'packag', u'farmer']
[u'earthquak', u'rock', u'indonesian', u'island', u'nia']
[u'bank', u'research', u'sand', u'dredg']
[u'timor', u'ask', u'continu', u'suppli', u'polic']
[u'expert', u'hire', u'answer', u'gladston', u'blast']
[u'farmer', u'hop', u'assist', u'packag', u'town']
[u'feasibl', u'studi', u'finish', u'clean', u'coal', u'project']
[u'feder', u'govt', u'urg', u'fund', u'pipelin', u'firefight']
[u'feder', u'draper', u'quit', u'polit']
[u'firm', u'look', u'latrob', u'valley', u'synthet', u'fuel']
[u'convoy', u'reach', u'southern', u'lebanon']
[u'ladi', u'rais', u'awar', u'silent', u'killer']
[u'turn', u'tweed', u'hospit', u'research']
[u'delay', u'canberra', u'flight']
[u'footi', u'club', u'evict', u'rent', u'stoush']
[u'rugbi', u'leagu', u'comment', u'die']
[u'fresh', u'inform', u'add', u'death', u'controversi']
[u'frog', u'status', u'threaten', u'power', u'upgrad']
[u'fund', u'long', u'term', u'drought', u'relief', u'effort']
[u'fund', u'seek', u'homeless', u'crisi', u'accommod']
[u'gilbert', u'coach', u'britain', u'murray']
[u'goulburn', u'keep', u'wast', u'water', u'vote']
[u'govt', u'blame', u'human', u'error', u'miss', u'devil']
[u'govt', u'move', u'address', u'elder', u'abus', u'issu']
[u'govt', u'disagre', u'safeti', u'technolog']
[u'govt', u'tighten', u'elder', u'abus', u'law']
[u'govt', u'urg', u'consid', u'river', u'scheme', u'expans']
[u'green', u'group', u'question', u'draft', u'log', u'code']
[u'green', u'fear', u'port', u'environment', u'impact']
[u'group', u'urg', u'payment', u'live', u'organ', u'donor']
[u'gryll', u'roll', u'daylight', u'save', u'stanc']
[u'hama', u'minist', u'partial', u'salari']
[u'hickey', u'say', u'council', u'rate', u'peg', u'stay']
[u'holden', u'reliev', u'huon', u'strike', u'end']
[u'hooker', u'jump', u'victori', u'helsinki']
[u'howard', u'warn', u'liber', u'complac']
[u'illeg', u'south', u'east', u'worker', u'deport']
[u'inadequ', u'water', u'infrastructur', u'hamper', u'develop']
[u'infrastructur', u'help', u'coal', u'miner', u'profit']
[u'inquiri', u'consid', u'young', u'peopl', u'civic', u'particip']
[u'inquiri', u'hear', u'brimbl', u'evid', u'problem']
[u'intellectu', u'disabl', u'teen', u'escap', u'jail', u'term']
[u'inter', u'milan', u'name', u'italian', u'champion']
[u'intern', u'communiti', u'divid', u'east']
[u'israel', u'defens', u'death']
[u'israel', u'defens', u'worker', u'death']
[u'isra', u'warn', u'prepar', u'long', u'campaign']
[u'israel', u'mull', u'wider', u'offens', u'soldier', u'death']
[u'israel', u'pound', u'south', u'lebanon']
[u'israel', u'resum', u'tyre', u'raid']
[u'ivori', u'coast', u'militia', u'begin', u'disarm']
[u'japanes', u'face', u'court', u'fatal', u'crash']
[u'judg', u'adjourn', u'saddam', u'trial', u'consid', u'verdict']
[u'junior', u'campus', u'expect', u'help', u'push', u'second']
[u'junk', u'food', u'target', u'children', u'studi']
[u'keech', u'excit', u'gold', u'coast', u'china', u'flight', u'talk']
[u'killer', u'famili', u'face', u'sentenc', u'cover']
[u'king', u'cross', u'needl', u'photo', u'doctor']
[u'labor', u'pin', u'elect', u'hop']
[u'leadership', u'chang', u'northern', u'tourism', u'group']
[u'lion', u'divorc', u'akermani']
[u'luck', u'save', u'offic', u'khiam', u'blast']
[u'maitland', u'illeg', u'dump', u'trigger', u'surveil']
[u'malthous', u'say', u'buckley', u'earn', u'greatest']
[u'charg', u'attack', u'polic', u'offic']
[u'fin', u'drug', u'possess']
[u'brisban', u'hospit']
[u'jail', u'rap', u'teenag', u'babysitt']
[u'market', u'recov', u'inflat', u'blow']
[u'matilda', u'world']
[u'meet', u'focus', u'hall', u'futur']
[u'meet', u'consid', u'meatwork', u'futur']
[u'memori', u'honour', u'murder', u'sister']
[u'mental', u'health', u'concern', u'switch', u'young', u'peopl']
[u'mideast', u'ceas', u'talk', u'fail']
[u'extend', u'condol', u'worker', u'death']
[u'miner', u'regul', u'chief', u'awar', u'mine', u'concern']
[u'mix', u'reaction', u'disclosur', u'rule']
[u'mix', u'reaction', u'hotel']
[u'mock', u'terror', u'experi', u'invalu', u'commission']
[u'morley', u'pay', u'high', u'price', u'rooster']
[u'move', u'dump', u'senat']
[u'say', u'rise', u'inflat', u'hurt', u'famili']
[u'murder', u'victim', u'grant', u'bail']
[u'nation', u'choos', u'rowel', u'staffer', u'contest']
[u'tafe', u'campus', u'open', u'geraldton']
[u'korea', u'say', u'nuclear', u'talk', u'lift']
[u'nrma', u'call', u'revers', u'sensor', u'camera']
[u'school', u'sausag', u'sizzl']
[u'happi', u'releas', u'ship', u'quarantin', u'protocol']
[u'orang', u'add', u'list', u'trial', u'secur', u'taxi', u'rank']
[u'organ', u'donat', u'slump', u'percent']
[u'pair', u'extradit', u'murder', u'charg']
[u'palm', u'council', u'discuss', u'audit']
[u'panel', u'review', u'land', u'plan']
[u'papuan', u'independ', u'leader', u'shun', u'violenc']
[u'rule', u'send', u'troop', u'lebanon']
[u'shoot', u'minist', u'junk', u'food', u'debat']
[u'poki', u'addict', u'sentenc', u'steal']
[u'polic', u'offer', u'staff', u'assur', u'wake', u'cell']
[u'polic', u'offic', u'charg', u'teen', u'rape']
[u'polic', u'question', u'falcon', u'owner', u'fatal']
[u'polic', u'woman', u'dead', u'canal']
[u'possum', u'live', u'bushfir', u'ravag', u'area']
[u'premier', u'urg', u'help', u'timber', u'worker', u'access', u'fund']
[u'prison', u'need', u'staff', u'trauma', u'strategi', u'professor']
[u'prosecutor', u'child', u'porn', u'case', u'adjourn']
[u'protest', u'greet', u'campaign']
[u'protest', u'ralli', u'oppos', u'marin', u'park', u'plan']
[u'public', u'test', u'urg', u'hospit']
[u'purcel', u'renew', u'firefight', u'servic']
[u'pyap', u'prepar', u'cruis', u'murray']
[u'summit', u'examin', u'climat', u'trend']
[u'racq', u'question', u'bruce', u'highway', u'strategi']
[u'rainbow', u'woe', u'remain', u'unresolv']
[u'ramo', u'horta', u'promis', u'movement', u'timor', u'deal']
[u'record', u'crowd', u'view', u'annemiek', u'mein', u'exhibit']
[u'recycl', u'water', u'industri', u'household', u'quinn']
[u'reef', u'benefit', u'indigen', u'peopl', u'depend']
[u'road', u'train', u'australia', u'sell', u'livestock', u'divis']
[u'rockhampton', u'tell', u'hand', u'mackay', u'busi']
[u'roddick', u'find', u'form']
[u'urg', u'help', u'veteran']
[u'rspca', u'worri', u'domest', u'dog', u'die', u'wild']
[u'saddam', u'challeng', u'court', u'valid']
[u'saddam', u'request', u'shoot', u'sentenc', u'death']
[u'sangakkara', u'jayawarden', u'lanka']
[u'sculli', u'hint', u'wagga', u'polic', u'station', u'revamp']
[u'search', u'continu', u'miss', u'fisherman']
[u'secur', u'camera', u'moot', u'berri']
[u'shop', u'plan', u'prompt', u'councillor', u'tour']
[u'sizzl', u'santa', u'sweat', u'summer', u'summit']
[u'smith', u'delay', u'decis', u'play', u'futur']
[u'state', u'attorney', u'general', u'fend', u'censorship']
[u'stosur', u'reach', u'stanford', u'quarter']
[u'strauss', u'urg', u'england', u'self', u'belief']
[u'student', u'drain', u'worri', u'school', u'support']
[u'swim', u'meet', u'mascot', u'fairi', u'penguin']
[u'tasmanian', u'grant', u'rise']
[u'tastebud', u'map', u'beef', u'meat', u'market']
[u'telstra', u'exec', u'shun', u'fix', u'phone', u'line']
[u'tenni', u'australia', u'boost', u'secur', u'lure', u'hewitt']
[u'mccamley', u'cattl', u'empir']
[u'thousand', u'signatur', u'gwydir', u'ax']
[u'threaten', u'speci', u'northern']
[u'threat', u'break', u'hill', u'councillor']
[u'toxic', u'wast', u'transport', u'ballarat']
[u'ban', u'darwin']
[u'transport', u'plan', u'form', u'south', u'east']
[u'trip', u'clear', u'river', u'divers', u'concern']
[u'line', u'rule', u'sydney', u'trip', u'spirit']
[u'arrest', u'dalbi', u'port', u'macquari', u'stab']
[u'tyre', u'home', u'target', u'isra', u'raid']
[u'uefa', u'refus', u'milan', u'champion', u'spot']
[u'death', u'prompt', u'aust', u'peacekeep']
[u'union', u'back', u'age', u'care', u'plan']
[u'union', u'urg', u'indigen', u'educ', u'fund', u'overhaul']
[u'unit', u'thump', u'celtic', u'friend']
[u'open']
[u'forc', u'begin', u'bomb', u'mission']
[u'ambassador', u'steer', u'clear', u'local', u'polit']
[u'vaa', u'rule', u'test']
[u'vail', u'discuss', u'futur', u'trade', u'minist']
[u'opposit', u'target', u'rural', u'voter']
[u'victorian', u'govt', u'apologis', u'abus', u'victim']
[u'victoria', u'pressur', u'hick']
[u'wagga', u'polic', u'pair', u'face', u'charg']
[u'wast', u'dump', u'panel', u'reject', u'govt', u'offer']
[u'waugh', u'webb', u'fli', u'french', u'start']
[u'weapon', u'seiz', u'alic', u'spring', u'raid']
[u'weather', u'warn', u'issu', u'perth', u'region']
[u'wool', u'compani', u'look', u'partial', u'integr']
[u'worker', u'turn', u'debat', u'chang']
[u'work', u'track', u'open', u'illeg', u'fish', u'detent']
[u'workshop', u'detail', u'substanc', u'abus', u'effort']
[u'game', u'mileston']
[u'abattoir', u'fish', u'project', u'like', u'expand']
[u'actu', u'push', u'wage', u'increas']
[u'compens', u'offic', u'harass']
[u'investig', u'spite', u'semi', u'final']
[u'speedi', u'resolut', u'hick', u'case']
[u'worker', u'struggl', u'tsunami', u'useless']
[u'forc', u'cadet', u'suicid', u'case', u'settl']
[u'albani', u'experi', u'job', u'growth']
[u'consid', u'super', u'advic', u'refund']
[u'anstey', u'join', u'boomer', u'injur', u'list']
[u'privat', u'eye', u'elimin', u'scalper']
[u'aust', u'famili', u'fli', u'israel', u'buri', u'soldier']
[u'australia', u'keen', u'press', u'ahead', u'lebanon', u'match']
[u'auswind', u'reject', u'regress', u'liber', u'polici']
[u'restructur', u'lobbi']
[u'banana', u'grower', u'fear', u'price', u'drop']
[u'banana', u'grower', u'reject', u'rate', u'hike', u'respons']
[u'bash', u'turn', u'hughenden', u'orang']
[u'beef', u'produc', u'urg', u'diseas', u'inform']
[u'potenti', u'see', u'meatwork', u'site']
[u'townsvill', u'crowd', u'tip']
[u'bishop', u'urg', u'fair', u'incom', u'earner']
[u'blaze', u'destroy', u'cooranbong', u'colleg', u'build']
[u'blaze', u'destroy', u'panel', u'beat', u'shop']
[u'coma', u'alleg', u'gang', u'bash']
[u'brimbl', u'ask', u'danc', u'say', u'wit']
[u'broom', u'pair', u'escap', u'caravan', u'blaze']
[u'brother', u'arrest', u'mumbai', u'train', u'attack', u'probe']
[u'bunburi', u'host', u'disast', u'plan', u'gather']
[u'firm', u'find', u'home', u'visitor', u'centr']
[u'bushfir', u'victim', u'upset', u'withdraw']
[u'census', u'document', u'region', u'chang']
[u'cherbourg', u'resid', u'demand', u'answer', u'death']
[u'clark', u'pledg', u'commit', u'titan']
[u'clark', u'see', u'better', u'option', u'drink', u'treat']
[u'closer']
[u'closer', u'news']
[u'communiti', u'give', u'fight']
[u'compani', u'say', u'job', u'pine', u'closur']
[u'conductor', u'frank', u'leav', u'hospit']
[u'consular', u'offici', u'check', u'aust', u'evacue']
[u'coron', u'mull', u'canberra', u'bushfir', u'evid']
[u'council', u'consid', u'grandstand', u'revamp']
[u'councillor', u'mix', u'view', u'local', u'govt', u'probe']
[u'council', u'urg', u'improv', u'water', u'monitor']
[u'court', u'lenient', u'aborigin', u'domest', u'violenc']
[u'cowboy', u'high', u'rooster', u'clash', u'loom']
[u'crime', u'author', u'blast', u'charg']
[u'crocodil', u'fall', u'victim', u'trophi', u'hunter']
[u'deadlin', u'loom', u'forest', u'commiss']
[u'defam', u'magistr', u'give', u'generous', u'payment']
[u'defenc', u'land', u'includ', u'hill', u'heritag']
[u'devil', u'escap', u'prompt', u'secur', u'review']
[u'doubt', u'cast', u'zone', u'plan']
[u'downer', u'attend', u'talk', u'north', u'korea', u'program']
[u'await', u'abalon', u'virus', u'test', u'result']
[u'dusti', u'attract', u'strong', u'crowd']
[u'educ', u'inquiri', u'parent', u'voic']
[u'ellison', u'open', u'corbi', u'inform', u'request']
[u'engin', u'boost', u'webber', u'william']
[u'timor', u'rebel', u'leader', u'face', u'attempt', u'murder', u'charg']
[u'europ', u'deni', u'authoris', u'conflict', u'continu']
[u'europ', u'heatwav', u'claim', u'live']
[u'footbal', u'bash', u'sentenc', u'reduc']
[u'feder', u'court', u'begin', u'hear', u'zentai', u'argument']
[u'fenc', u'protect', u'post', u'offic', u'redevelop']
[u'firebird', u'oriol']
[u'flintoff', u'track', u'ash']
[u'fli', u'doctor', u'servic', u'take', u'region']
[u'food', u'price', u'year', u'high']
[u'franci', u'boss', u'remors', u'magistr', u'comment']
[u'inquest', u'face', u'arrest', u'byrn', u'warn']
[u'strength', u'knight', u'readi', u'shark']
[u'strength', u'knight', u'readi', u'shark']
[u'gang', u'rapist', u'hand', u'extend', u'sentenc']
[u'gang', u'rapist', u'skaf', u'sentenc', u'extend']
[u'goldspink', u'put', u'chapman', u'incid']
[u'govt', u'ask', u'defer', u'environment', u'flow']
[u'govt', u'deni', u'timber', u'industri', u'forest', u'code', u'claim']
[u'govt', u'push', u'embrac', u'crop']
[u'green', u'group', u'pleas', u'quokka', u'campaign', u'respons']
[u'gunnedah', u'hous', u'market', u'perform', u'strong']
[u'hadden', u'lower', u'hous']
[u'haka', u'controversi', u'heat']
[u'harmison', u'rout', u'pakistan', u'england', u'domin']
[u'hear', u'debat', u'plan', u'militari', u'train', u'area']
[u'henri', u'coach', u'take', u'charg']
[u'hick', u'discuss', u'domin', u'meet']
[u'historian', u'disput', u'thunderbolt', u'fact']
[u'hospit', u'park', u'regul', u'unclear']
[u'howard', u'ask', u'israel', u'australian', u'safe']
[u'howard', u'mute', u'leadership', u'futur']
[u'independ', u'investig', u'launch', u'issu']
[u'infrastructur', u'boost', u'urg', u'cash', u'mine']
[u'inquiri', u'hear', u'kovco', u'mishandl', u'weapon']
[u'inquiri', u'tell', u'kovco', u'caution', u'misus', u'pistol']
[u'investig', u'spark', u'council', u'train', u'review']
[u'investor', u'away', u'small', u'list']
[u'israel', u'call', u'reservist']
[u'isra', u'cabinet', u'vote', u'invad', u'lebanon']
[u'isra', u'cabinet', u'vote', u'continu', u'assault']
[u'israel', u'prepar', u'battl']
[u'israel', u'step', u'lebanon', u'offens']
[u'israel', u'intensifi', u'militari', u'campaign']
[u'jacob', u'fight', u'second', u'esper', u'high', u'school']
[u'japan', u'beef', u'decis', u'caus', u'panic']
[u'kazaa', u'settl', u'internet', u'piraci', u'lawsuit']
[u'kerouac', u'classic', u'publish', u'scroll']
[u'knight', u'notch', u'tight', u'shark']
[u'koschitzk', u'return', u'hold']
[u'labor', u'plan', u'childcar', u'break']
[u'labor', u'promis', u'childcar', u'break']
[u'labour', u'council', u'prais', u'workchoic', u'probe']
[u'landfil', u'oppon', u'face', u'tougher', u'fight']
[u'landi', u'fail', u'drug', u'test']
[u'lawyer', u'lodg', u'final', u'appeal', u'bali', u'bomber']
[u'lebanon', u'death', u'count', u'pass']
[u'play', u'contain', u'home', u'propos']
[u'lighthous', u'revamp', u'await', u'council', u'green', u'light']
[u'livingston', u'mayor', u'rule', u'drink', u'treat']
[u'pay', u'worker', u'deserv', u'rise']
[u'usag', u'forc', u'immunis', u'clinic', u'halt']
[u'magpi', u'post', u'easi', u'hawk']
[u'maiden', u'gulli', u'communiti', u'detail']
[u'arrest', u'rock', u'throw', u'car']
[u'jail', u'brisban', u'transport', u'bomb', u'hoax']
[u'jail', u'life', u'girlfriend', u'stab', u'murder']
[u'face', u'court', u'hotel', u'stab']
[u'american', u'ray']
[u'martin', u'uranium', u'stanc', u'inconsist']
[u'mayor', u'expect', u'rate', u'rise', u'anger']
[u'mcgauran', u'join', u'push', u'lift', u'crop']
[u'meet', u'discuss', u'intersect', u'safeti']
[u'meet', u'hear', u'glenroi', u'fresh', u'food', u'woe']
[u'meet', u'discuss', u'irrig']
[u'meet', u'seek', u'phillip', u'hour', u'polic', u'station']
[u'melbourn', u'host', u'march']
[u'melbourn', u'host', u'march', u'grand', u'prix']
[u'mental', u'health', u'associ', u'chief', u'jail']
[u'miner', u'feel', u'impact', u'mackay', u'hous', u'cost']
[u'minist', u'criticis', u'labor', u'childcar', u'plan']
[u'miss', u'fisherman', u'slip', u'overboard', u'polic']
[u'morn', u'jogger', u'bodi', u'nightcliff']
[u'say', u'govt', u'respons', u'polic', u'counter']
[u'kembla', u'recognis', u'mine', u'heritag']
[u'murder', u'case', u'halt', u'lose', u'tshirt']
[u'mutijulu', u'administr', u'order', u'extend']
[u'nasa', u'mull', u'mothbal', u'research']
[u'nation', u'urg', u'heater', u'rebat', u'region']
[u'patrol', u'boat', u'join', u'illeg', u'fish', u'fight']
[u'korea', u'iran', u'prepar', u'asean', u'meet']
[u'hezbollah', u'attack']
[u'north', u'korean', u'player', u'suspend', u'violenc']
[u'nrma', u'announc', u'fuel', u'crisi', u'summit']
[u'closer', u'set', u'traine', u'surgeon', u'number']
[u'author', u'encourag', u'inquest']
[u'scientist', u'investig', u'attack']
[u'call', u'govt', u'medic', u'boost']
[u'ombudsman', u'urg', u'interven', u'waterfront', u'land']
[u'pair', u'charg', u'suppli', u'drug']
[u'pavin', u'set', u'record', u'milwauke']
[u'phone', u'compani', u'face', u'fin', u'servic']
[u'plan', u'commiss', u'reject', u'townhous', u'plan']
[u'plea', u'accept', u'voluntari', u'student', u'union']
[u'interven', u'minimum', u'wage', u'rise']
[u'misrepres', u'health', u'minist', u'meet']
[u'releas', u'wage', u'increas', u'figur', u'actu']
[u'polic', u'wit', u'bodi']
[u'polic', u'probe', u'pedestrian', u'death']
[u'polic', u'question', u'ferrari', u'crash']
[u'polic', u'seiz', u'weapon', u'alic', u'spring', u'raid']
[u'polic', u'worri', u'maroochydor', u'watch', u'hous']
[u'port', u'akermani']
[u'professor', u'warn', u'oncolog', u'servic', u'collaps']
[u'public', u'help', u'seek', u'grind', u'water', u'sale']
[u'pyramid', u'pioneer', u'spot', u'research']
[u'rain', u'fall', u'catchment', u'area']
[u'chairman', u'defend', u'prais']
[u'recycl', u'water', u'vote', u'loom']
[u'resourc', u'bank', u'slump', u'drag', u'market']
[u'resourc', u'boom', u'help', u'break', u'hill', u'job']
[u'rise', u'humanitarian', u'concern', u'lebanon']
[u'ruddock', u'welcom', u'censorship', u'decis']
[u'rumsfeld', u'extend', u'tour', u'troop']
[u'barrist', u'promot', u'feder', u'magistr']
[u'saddam', u'trial', u'adjourn', u'pend', u'verdict']
[u'safeti', u'barrier', u'highway']
[u'sailor', u'give', u'time', u'consid', u'appeal']
[u'irrig', u'water']
[u'push', u'feder', u'award', u'rise']
[u'scientist', u'discov', u'possibl', u'arthriti', u'cure']
[u'chang', u'bridg', u'win', u'repriev']
[u'search', u'continu', u'boat', u'accid']
[u'second', u'front', u'brimbl', u'inquest']
[u'secur', u'council', u'fail', u'condemn', u'post', u'attack']
[u'resort', u'hope', u'snow']
[u'somali', u'minist', u'assassin', u'outsid', u'mosqu']
[u'lankan', u'destroy', u'south', u'africa']
[u'state', u'fund', u'help', u'wimmera', u'expans']
[u'statu', u'honour', u'outback', u'women']
[u'student', u'kick', u'tree', u'plant']
[u'survey', u'confirm', u'school', u'closur', u'plan']
[u'suspect', u'internet', u'predat', u'arrest']
[u'swan', u'hill', u'claim', u'master', u'builder', u'apprentic']
[u'optomerist', u'contact', u'lens']
[u'teen', u'die', u'sydney', u'jail']
[u'telstra', u'play', u'retrench', u'impact']
[u'terror', u'suspect', u'warn', u'attend', u'court', u'hear']
[u'arrest', u'polic', u'chase']
[u'jail', u'role', u'palm', u'island', u'riot']
[u'time', u'run', u'elector', u'boundari']
[u'shearer', u'battl', u'diamond', u'shear', u'crown']
[u'tote', u'reject', u'elwick', u'safeti', u'concern']
[u'tour', u'champion', u'landi', u'deni', u'dope']
[u'tourism', u'bodi', u'reject', u'promot', u'critic']
[u'tran', u'tasman', u'netbal', u'competit', u'card']
[u'trap', u'villag', u'evacu', u'tyre']
[u'troop', u'face', u'increas', u'danger', u'afghanistan']
[u'truant', u'student', u'lose', u'benefit']
[u'union', u'air', u'concern', u'bluescop', u'redund']
[u'union', u'say', u'workplac', u'agreement', u'forc']
[u'union', u'push', u'wage', u'rise']
[u'univers', u'boost', u'research', u'fund']
[u'skirt', u'prompt', u'talk', u'nation', u'law']
[u'signal', u'hick', u'trial', u'year']
[u'vandenberg', u'rule', u'pie', u'clash']
[u'victorian', u'liber', u'deni', u'undermin', u'workchoic']
[u'vinni', u'shop', u'close', u'damag']
[u'volunt', u'begin', u'deliv', u'census', u'form']
[u'wada', u'chief', u'attack', u'cycl', u'anti', u'dope', u'strategi']
[u'face', u'construct', u'worker', u'shortag']
[u'wage', u'case', u'decis', u'receiv', u'mix', u'respons']
[u'wall', u'trader', u'ride', u'rollercoast']
[u'wandoan', u'banana', u'rail', u'link', u'timelin']
[u'water', u'pip', u'tip', u'boost', u'job']
[u'webb', u'fire', u'french', u'lead']
[u'urg', u'better', u'communic', u'bird', u'fight']
[u'wool', u'compani', u'sign', u'merger']
[u'academ', u'brand', u'anti', u'research']
[u'backbench', u'join', u'school', u'closur', u'protest']
[u'actor', u'gibson', u'arrest', u'drink', u'drive']
[u'addit', u'tram', u'project', u'extens', u'plan']
[u'adelaid', u'tram', u'budget', u'mask', u'cost', u'blow']
[u'award', u'abus', u'victim', u'compo']
[u'agassi', u'exit', u'final', u'titl', u'defenc']
[u'black', u'hold', u'wallabi']
[u'black', u'classi', u'wallabi']
[u'critic', u'train', u'back']
[u'ankl', u'surgeri', u'leap', u'leon', u'croad', u'clear']
[u'armi', u'attack', u'strain', u'darfur', u'peac', u'deal']
[u'arson', u'squad', u'probe', u'dead', u'blaze']
[u'aussi', u'green', u'second', u'milwauke', u'open']
[u'aust', u'rescu', u'wife', u'daughter', u'lebanon']
[u'australia', u'stay', u'bali', u'bomber', u'appeal']
[u'limit', u'chang', u'abalon', u'poach']
[u'bali', u'bomber', u'appeal', u'sentenc']
[u'blair', u'petit', u'ceas']
[u'bomber', u'snap', u'winless', u'streak']
[u'break', u'chilean', u'club', u'head', u'hunt', u'zidan']
[u'bush', u'open']
[u'bush', u'push', u'reform', u'middl', u'east']
[u'bystand', u'lift', u'trap', u'cyclist']
[u'californian', u'heat', u'wave', u'kill']
[u'caltex', u'fine', u'fund', u'wetland', u'restor']
[u'appeal', u'jackson', u'breast', u'flash', u'fine']
[u'census', u'chart', u'muslim', u'communiti', u'growth']
[u'closer']
[u'closer', u'news']
[u'cook', u'bell', u'pile', u'pressur', u'pakistan']
[u'crossin', u'parti', u'line', u'uranium']
[u'crow', u'swoop', u'injur', u'eagl']
[u'debnam', u'play', u'poor', u'poll', u'show']
[u'decis', u'deni', u'biki', u'firearm', u'licenc', u'uphold']
[u'delhi', u'declar', u'detail', u'bird', u'fight']
[u'dfat', u'unabl', u'warn', u'convoy', u'danger']
[u'doctor', u'train', u'cut', u'plan', u'flaw']
[u'eagl', u'blow', u'flag', u'race', u'wide', u'open']
[u'educ', u'dept', u'unhappi', u'teacher', u'compo', u'reinstat']
[u'eel', u'juggernaut', u'track']
[u'engin', u'firm', u'go', u'green']
[u'worldcom', u'boss', u'lose', u'sentenc', u'appeal']
[u'fear', u'rise', u'antarct', u'ecosystem']
[u'final', u'hop', u'line', u'lion']
[u'finland', u'denmark', u'withdraw', u'lanka', u'observ']
[u'fishermen', u'accus', u'kill', u'dugong']
[u'qaeda', u'suspect', u'captur']
[u'govt', u'launch', u'rail', u'safeti', u'campaign']
[u'govt', u'urg', u'settl', u'harass', u'claim']
[u'growcom', u'push', u'plan', u'chang', u'protect']
[u'hobart', u'airport', u'upgrad']
[u'homebuy', u'grant', u'seek', u'elder']
[u'hungri', u'attract', u'heavier', u'women', u'british', u'studi']
[u'israel', u'bomb', u'gaza', u'weapon', u'factori']
[u'isra', u'shell', u'hit', u'civilian', u'convoy']
[u'israel', u'stymi', u'humanitarian', u'truce']
[u'israel', u'warn', u'convoy', u'danger', u'spokesman']
[u'japanes', u'end', u'iraq', u'mission']
[u'japanes', u'student', u'releas', u'villawood']
[u'tight', u'gregan']
[u'king', u'black', u'lang', u'park', u'prank']
[u'knit', u'circl', u'come', u'warm', u'needi']
[u'kon', u'shun', u'develop']
[u'labor', u'predict', u'rate', u'rise']
[u'landi', u'plead', u'innoc', u'say', u'testosteron']
[u'latu', u'face', u'possibl', u'arrest']
[u'law', u'mean', u'wind', u'farm', u'build', u'campbel']
[u'lebanon', u'open']
[u'seek', u'state', u'water', u'fund']
[u'charg', u'seattl', u'hate', u'crime', u'shoot']
[u'face', u'drink', u'drive', u'charg', u'children']
[u'marin', u'crush', u'victori', u'sydney', u'hold']
[u'seek', u'owner', u'builder', u'law', u'review']
[u'mccartney', u'guitar', u'strike', u'chord']
[u'mcgauran', u'announc', u'label', u'probe']
[u'mortar', u'lebanon', u'evacu', u'convoy']
[u'nation', u'watch', u'toowoomba', u'water', u'vote']
[u'nato', u'blame', u'afghan', u'violenc', u'drug']
[u'navi', u'christen', u'hmas', u'piri']
[u'neutral', u'venu', u'like', u'socceroo', u'lebanon', u'game']
[u'charg', u'melbourn', u'drug', u'raid']
[u'mottram', u'london']
[u'reject', u'water', u'share', u'propos']
[u'opposit', u'warn', u'rate', u'rise']
[u'pacif', u'forum', u'warn', u'tongan', u'summit', u'protest']
[u'parramatta', u'honour', u'asbesto', u'victim', u'advoc']
[u'mob', u'protest']
[u'urg', u'commit', u'reform', u'process']
[u'polic', u'corrupt', u'claim', u'rariti']
[u'pratt', u'urg', u'resourc', u'fight', u'crime']
[u'rabbitoh', u'upset', u'raider']
[u'rate', u'rise', u'hop', u'lift', u'stock']
[u'record', u'shatter', u'lanka', u'pound', u'south', u'africa']
[u'rice', u'head', u'middl', u'east']
[u'riot', u'follow', u'somali', u'shoot']
[u'ruddock', u'continu', u'push', u'hick', u'trial']
[u'saff', u'welcom', u'veget', u'manag', u'chang']
[u'schu', u'speed', u'german']
[u'search', u'resum', u'miss', u'boat', u'passeng']
[u'search', u'yield', u'sign', u'miss']
[u'seattl', u'shoot', u'dead', u'injur']
[u'replac', u'bibl', u'stori', u'radio']
[u'solana', u'sure', u'resolut']
[u'somali', u'murder', u'link', u'intern', u'terror']
[u'space', u'probe', u'spot', u'lake', u'titan']
[u'specialist', u'decri', u'hospit', u'recruit', u'polici']
[u'lanka', u'world', u'record', u'partnership']
[u'stanhop', u'front', u'angri', u'parent']
[u'statu', u'acknowledg', u'outback', u'women', u'effort']
[u'stosur', u'shoot', u'california']
[u'swan', u'port']
[u'sydney', u'airport', u'give', u'clear', u'radiat']
[u'symphoni', u'take', u'orchestra', u'edg']
[u'teacher', u'accept', u'tafe', u'deal']
[u'thousand', u'flee', u'indonesian', u'blast']
[u'tiger', u'final', u'hop', u'dive']
[u'toowoomba', u'knock', u'recycl', u'water', u'plan']
[u'toowoomba', u'reject', u'recycl', u'water', u'earli', u'result']
[u'toowoomba', u'reject', u'recycl', u'water', u'propos']
[u'toowoomba', u'resid', u'decid', u'drink', u'water', u'futur']
[u'toowoomba', u'vote', u'outcom', u'difficult', u'predict']
[u'toowoomba', u'water', u'figur', u'expect', u'hour', u'poll']
[u'arrest', u'protest']
[u'arrest', u'protest']
[u'call', u'hour', u'east', u'truce']
[u'convoy', u'rout', u'collect', u'refuge']
[u'univers', u'look', u'doctor', u'train', u'time']
[u'reach', u'draft', u'agreement', u'iran']
[u'resolut', u'iran', u'deadlin']
[u'decid', u'auschwitz', u'chang']
[u'shut', u'secret', u'jail', u'bodi']
[u'step', u'diplomat', u'pressur', u'middl', u'east']
[u'nistelrooy', u'complet', u'real']
[u'victoria', u'parrot', u'threat', u'report', u'campbel']
[u'voter', u'punish', u'debnam', u'reform']
[u'walli', u'scrub', u'clean', u'rugbi', u'blackwash']
[u'consid', u'recycl', u'drink', u'water', u'expert']
[u'webb', u'steal', u'lead', u'franc']
[u'wesser', u'propel', u'panther', u'impress']
[u'william', u'airc', u'commission']
[u'woman', u'assault', u'beach']
[u'woman', u'charg', u'nurs', u'home', u'attack']
[u'kill', u'bahrain', u'blaze']
[u'kill', u'lebanon', u'bomb']
[u'year', u'home', u'loan', u'plan', u'find', u'support']
[u'kill', u'escal', u'lankan', u'bomb']
[u'seek', u'census', u'volunt']
[u'activist', u'win', u'conger', u'cuddl']
[u'aid', u'hide', u'research']
[u'albanes', u'vow', u'fight', u'beazley', u'uranium']
[u'black', u'retain', u'bledislo']
[u'aust', u'ask', u'join', u'lebanon', u'peacekeep', u'forc']
[u'australia', u'ask', u'join', u'peacekeep', u'forc']
[u'baillieu', u'ear', u'wait', u'list', u'stori']
[u'bank', u'offer', u'year', u'home', u'loan']
[u'bark', u'paint', u'auction']
[u'beatti', u'announc', u'water', u'referendum']
[u'beatti', u'announc', u'wider', u'recycl', u'water', u'vote']
[u'beazley', u'uranium', u'polici', u'optimist', u'albanes']
[u'beer', u'regatta', u'reach', u'fundrais', u'target']
[u'blair', u'defend', u'ceas', u'time', u'frame']
[u'blaze', u'break', u'bond']
[u'blue', u'humbl', u'docker']
[u'charg', u'arm', u'robberi']
[u'claim', u'tourist', u'trophi', u'croc', u'part']
[u'closer']
[u'closer', u'news']
[u'congoles', u'head', u'poll']
[u'costello', u'deni', u'make', u'excus', u'inflat']
[u'costello', u'urg', u'caution', u'extend', u'home', u'loan']
[u'council', u'see', u'kill', u'smoke']
[u'craig', u'leav', u'look', u'silver', u'line']
[u'crocodil', u'number', u'recoveri']
[u'dead', u'girl', u'short', u'insid', u'crocodil']
[u'debnam', u'pledg', u'green', u'school', u'ground']
[u'demon', u'strong', u'bulldog']
[u'demon', u'trounc', u'bulldog']
[u'downer', u'consid', u'lebanon', u'troop', u'deploy']
[u'brigad', u'deni', u'protect', u'gear', u'standard']
[u'free', u'trade', u'talk', u'depend']
[u'gatlin', u'face', u'possibl', u'life']
[u'gatlin', u'coach', u'say', u'sprinter']
[u'gibson', u'apologis', u'drunken', u'antic']
[u'goulburn', u'decid', u'recycl', u'water', u'month']
[u'govt', u'probe', u'motorway', u'nois', u'complaint']
[u'shortag', u'need', u'solut']
[u'hama', u'vow', u'attack', u'strike', u'lebanon']
[u'harmison', u'panesar', u'bowl', u'england', u'victori']
[u'harri', u'potter', u'actor', u'take', u'stage', u'role']
[u'health', u'servic', u'critic', u'intensifi']
[u'hezbollah', u'defiant', u'rice', u'call', u'fight']
[u'death', u'law', u'toughen']
[u'howard', u'ask', u'urg', u'rate', u'rise']
[u'howard', u'see', u'fruit', u'inflat', u'impact', u'diminish']
[u'hundr', u'walk', u'spirit', u'festiv']
[u'play', u'vaughan']
[u'inland', u'communiti', u'fewer', u'water', u'option']
[u'iran', u'warn', u'nuclear', u'resolut']
[u'iraq', u'footbal', u'coach', u'resign', u'follow', u'death', u'threat']
[u'israel', u'bomb', u'gaza', u'milit', u'home']
[u'isra', u'strike', u'kill', u'lebanon']
[u'isra', u'kill', u'palestinian', u'milit']
[u'japanes', u'club', u'chase', u'larkham', u'report']
[u'kewel', u'throw', u'hissi', u'snub']
[u'kookaburra', u'miss', u'shoot', u'final']
[u'labor', u'wari', u'year', u'loan']
[u'land', u'acquir', u'perth', u'bunburi', u'highway']
[u'lebanon', u'cancel', u'diplomat', u'visit']
[u'lebanon', u'offens', u'kill', u'civilian']
[u'lebanon', u'terror', u'say', u'bush']
[u'lebanon', u'peacekeep', u'deal', u'possibl', u'day']
[u'liber', u'reject', u'term', u'perform', u'review']
[u'arrest', u'alleg', u'drug']
[u'charg', u'palm', u'stab']
[u'matilda', u'beat', u'asian', u'shoot']
[u'migrant', u'miss', u'boat', u'sink', u'malta']
[u'murder', u'case', u'evid', u'loss', u'surpris']
[u'north', u'korea', u'demand', u'asian', u'match']
[u'nurs', u'recruit', u'drive', u'target', u'school', u'student']
[u'olymp', u'champion', u'gatlin', u'admit', u'fail', u'drug', u'test']
[u'olymp', u'chief', u'blast', u'dope', u'crimin']
[u'oxfam', u'shop', u'auction', u'break', u'weapon']
[u'parent', u'vote', u'lamington', u'drive']
[u'parreira', u'coach', u'world', u'host', u'south', u'africa']
[u'peacekeep', u'open']
[u'perth', u'adelaid', u'play', u'scoreless', u'draw']
[u'polic', u'leak', u'threaten', u'safeti', u'moroney']
[u'polic', u'probe', u'tafe', u'ground', u'assault']
[u'poll', u'open', u'congo', u'landmark', u'vote']
[u'possibl', u'beaconsfield', u'sale', u'anger', u'miner']
[u'prais', u'crab', u'catch', u'size', u'limit', u'review']
[u'town', u'leav', u'high']
[u'quak', u'rattl', u'nia', u'island', u'area']
[u'raikkonen', u'take', u'german', u'pole']
[u'ralli', u'protest', u'bushland', u'develop']
[u'recycl', u'water', u'vote', u'need', u'urgent', u'mayor']
[u'recycl', u'water', u'vote', u'urgent', u'say', u'beatti']
[u'rice', u'middl', u'east']
[u'rice', u'return', u'middl', u'east']
[u'rice', u'urg', u'truce', u'war', u'bloodiest', u'attack']
[u'roo', u'domin', u'cat', u'manuka', u'farewel']
[u'rooster', u'crush', u'cowboy']
[u'rooster', u'maintain', u'domin', u'cowboy']
[u'rumour', u'dutch', u'maestro', u'head', u'orchestra']
[u'school', u'closur', u'divid', u'labor']
[u'school', u'fund', u'withdraw', u'outrag', u'parent']
[u'score', u'kill', u'isra', u'strike']
[u'breez', u'eas', u'californian', u'heat', u'wave']
[u'search', u'miss', u'boat', u'passeng', u'continu']
[u'search', u'miss', u'fishermen']
[u'second', u'person', u'die', u'ipswich']
[u'accid', u'send', u'hospit']
[u'size', u'forc', u'determin', u'troop', u'commit', u'downer']
[u'stab', u'suspect', u'die', u'crash']
[u'storm', u'answer', u'challeng']
[u'storm', u'roll']
[u'student', u'rais', u'issu', u'councillor']
[u'surgeon', u'warn', u'hospit', u'wait', u'list', u'grow']
[u'sydney', u'readi', u'recycl', u'water']
[u'tasmanian', u'die', u'cliff', u'fall', u'canada']
[u'bird', u'phoenix', u'second']
[u'tbird', u'phoenix', u'second']
[u'thai', u'eleph', u'australia']
[u'thousand', u'evacu', u'kill', u'indian', u'monsoon']
[u'thousand', u'march', u'bangladesh', u'elector', u'reform']
[u'tiger', u'continu', u'bronco', u'slide']
[u'tiger', u'strong', u'bronco']
[u'tomb', u'china', u'emperor', u'grandma', u'discov']
[u'toowoomba', u'vote', u'blow', u'recycl']
[u'tree', u'grow', u'environment', u'awar']
[u'soldier', u'injur', u'isra', u'strike']
[u'arriv', u'beirut']
[u'brazil', u'flag', u'doha', u'round', u'talk']
[u'troop', u'kill', u'afghanistan']
[u'urg', u'asean', u'catastroph', u'cooper']
[u'warn', u'eritrea', u'ethiopia', u'somalia']
[u'wallabi', u'encourag', u'despit', u'loss']
[u'yacht', u'win', u'round', u'world', u'race']
[u'webb', u'comeback', u'gather', u'speed']
[u'wheelchair', u'bind', u'woman', u'die', u'hous']
[u'zimbabw', u'edg', u'bangladesh', u'thriller']
[u'abalon', u'diver', u'welcom', u'tighter', u'limit']
[u'ablett', u'face', u'season', u'ender']
[u'accus', u'thief', u'grant', u'bail']
[u'acoust', u'tag', u'track', u'fish', u'movement']
[u'adelaid', u'longer', u'premiership', u'certainti', u'roo']
[u'albani', u'polic', u'warn', u'counterfeit', u'money']
[u'annan', u'appeal', u'secur', u'council', u'action']
[u'argument', u'interrupt', u'terror', u'suspect', u'hear']
[u'articul', u'focus', u'juli']
[u'asian', u'eleph', u'soon', u'australia', u'home']
[u'aust', u'compani', u'boast', u'zero', u'climat', u'impact']
[u'australia', u'asian', u'warm', u'tournament']
[u'award', u'recognis', u'rural', u'tourism', u'attract']
[u'backer', u'talk', u'gold', u'coast', u'franchis']
[u'bangladesh', u'draw', u'level', u'zimbabw', u'collaps']
[u'build', u'group', u'debt', u'revis']
[u'urg', u'budg', u'wast', u'water']
[u'beazley', u'applaud', u'carpent', u'energi', u'propos']
[u'coal', u'plan', u'spark', u'liverpool']
[u'bird', u'barren', u'return']
[u'brisban', u'artist', u'charg', u'million', u'theft']
[u'brisban', u'train', u'servic', u'return', u'normal']
[u'bronco', u'investig', u'alleg', u'hotel', u'incid']
[u'byron', u'council', u'fight', u'kelli', u'caravan', u'decis']
[u'cafe', u'owner', u'fear', u'impact', u'tourism', u'grant']
[u'call', u'complet', u'maldon', u'dombarton', u'rail', u'link']
[u'call', u'sandon', u'point', u'inquiri', u'recommend']
[u'candl', u'suspect', u'caus', u'housefir']
[u'cane', u'toad', u'plagu', u'threaten', u'indigen', u'cultur']
[u'cane', u'train', u'crash', u'investig']
[u'casterton', u'go']
[u'ceduna', u'mayor', u'back', u'light', u'beer', u'polici']
[u'central', u'west', u'list', u'warm', u'town', u'list']
[u'clijster', u'claim', u'stanford', u'titl']
[u'closer']
[u'closer']
[u'coalit', u'welcom', u'howard', u'leadership', u'decis']
[u'cole', u'myer', u'spend', u'million', u'makeov']
[u'complaint', u'investig']
[u'consult', u'group', u'examin', u'break', u'hill', u'school']
[u'contract', u'wrangl', u'cloud', u'webber', u'futur']
[u'coron', u'investig', u'murder', u'mysteri']
[u'costello', u'remain', u'treasur']
[u'costello', u'stay', u'treasur']
[u'councillor', u'fight', u'stradbrok', u'effluent', u'pond']
[u'councillor', u'unconcern', u'fake']
[u'council', u'move', u'help', u'smoke', u'restrict']
[u'countri', u'rail', u'cross', u'neglect', u'opposit']
[u'darwin', u'harbour', u'develop', u'damag', u'ecosystem']
[u'date', u'wollongong', u'manufactur', u'summit']
[u'debt', u'figur', u'increas', u'rate', u'rise', u'specul']
[u'defenc', u'explain', u'shoalwat', u'expans']
[u'demand', u'person', u'credit', u'rise']
[u'distress', u'jetstar', u'passeng', u'escap', u'charg']
[u'dupa', u'link', u'halvagi', u'murder', u'inquest']
[u'elector', u'boundari', u'submiss', u'avail', u'websit']
[u'employ', u'defend', u'firefight', u'contract', u'offer']
[u'england', u'want', u'monti']
[u'expans', u'aust', u'largest', u'goat', u'abattoir', u'get']
[u'fear', u'air', u'terang', u'doctor', u'number']
[u'fear', u'showground', u'vandal', u'damag', u'more']
[u'flash', u'flood', u'kill', u'chines', u'highway', u'builder']
[u'gatlin', u'sampl', u'posit', u'report']
[u'gibson', u'arrest', u'spark', u'alleg', u'anti', u'semit']
[u'gibson', u'condemn', u'alleg', u'anti', u'semit']
[u'gillard', u'refus', u'comment', u'beazley', u'uranium']
[u'gillard', u'tour', u'central', u'australia']
[u'girl', u'escap', u'attempt', u'abduct']
[u'goulburn', u'resid', u'question']
[u'govt', u'give', u'support', u'miss', u'central', u'rail', u'link']
[u'govt', u'move', u'fast', u'track', u'jungl']
[u'govt', u'move', u'swift', u'boost', u'dentist', u'number']
[u'govt', u'criticis', u'brain', u'injuri', u'awar']
[u'govt', u'blame', u'tramlin', u'opposit', u'say']
[u'govt', u'urg', u'build', u'public', u'hous']
[u'grain', u'council', u'await', u'restructur', u'detail']
[u'grant', u'offer', u'sport', u'club']
[u'gregan', u'ask', u'miss', u'wallabi', u'european', u'tour']
[u'gregan', u'consid', u'miss', u'european', u'tour']
[u'gunmen', u'kidnap', u'peopl', u'baghdad']
[u'haa', u'fight', u'titl']
[u'high', u'petrol', u'price', u'hit', u'south', u'west', u'tourism']
[u'home', u'rabbi', u'attack', u'sydney']
[u'hop', u'refuge', u'program', u'help', u'tamworth']
[u'hop', u'shear', u'comp', u'attract', u'young', u'peopl']
[u'howard', u'pmopen']
[u'howard', u'set', u'exampl', u'older', u'worker', u'busi']
[u'howard', u'contest', u'elect']
[u'howard', u'fight', u'elect']
[u'howard', u'stay', u'elect']
[u'huon', u'mediat', u'start']
[u'hyde', u'park', u'anzac', u'memori', u'complet']
[u'iaaf', u'confirm', u'gatlin', u'face', u'life']
[u'industri', u'group', u'warn', u'rat', u'rise', u'hurt']
[u'injur', u'ablett', u'miss', u'match']
[u'injuri', u'report', u'deliv', u'good', u'news', u'ruckmen']
[u'rat', u'uncertainti', u'affect', u'home', u'sale']
[u'internet', u'option', u'avail', u'nation', u'census']
[u'invest', u'scheme', u'fund', u'plantat']
[u'israel', u'defend', u'qana', u'strike']
[u'israel', u'suspend', u'attack']
[u'israel', u'expand', u'offens', u'immedi', u'truce']
[u'israel', u'stop', u'strike', u'hour']
[u'israel', u'suspend', u'attack', u'hour']
[u'israel', u'suspend', u'attack', u'hour']
[u'israel', u'suspend', u'lebanon', u'assault']
[u'japan', u'airlin', u'flight', u'boost', u'alic', u'airport']
[u'killer', u'crocodil', u'believ', u'dead']
[u'kimberley', u'artwork', u'recognis', u'steal', u'generat']
[u'kookaburra', u'finish', u'fourth', u'champion', u'trophi']
[u'labor', u'back', u'celebr', u'candid']
[u'lacklustr', u'finish']
[u'land', u'conserv', u'plan', u'acquisit']
[u'lebanon', u'brand', u'civilian', u'death', u'crime']
[u'lebanon', u'mourn', u'bomb', u'attack', u'victim']
[u'lgaq', u'confid', u'councillor', u'train', u'program']
[u'lion', u'lose', u'charman', u'season']
[u'locat', u'drug', u'rehabilit', u'centr']
[u'macfarlan', u'say', u'govt', u'interfer', u'commerci']
[u'mackay', u'council', u'staff', u'vote', u'industri', u'action']
[u'alleg', u'put', u'cigarett', u'child']
[u'believ', u'drown', u'roper', u'river']
[u'coma', u'myall', u'river', u'boat', u'accid']
[u'rob', u'knife', u'point', u'cairn']
[u'matilda', u'gain', u'intern', u'respect']
[u'mayor', u'secur', u'port', u'stephen', u'select']
[u'meat', u'industri', u'agreement', u'tackl', u'skill', u'visa']
[u'miner', u'expand', u'rockland', u'explor']
[u'minist', u'attack', u'travel', u'amid', u'polic']
[u'minist', u'deni', u'hospit', u'crisi']
[u'miss', u'boat', u'passeng', u'bodi']
[u'moimoi', u'face', u'seven', u'week', u'suspens']
[u'monaro', u'platypus', u'habitat', u'clean']
[u'rain', u'need', u'improv', u'crop']
[u'mulrunji', u'dead', u'ahead', u'palm', u'hear']
[u'muralitharan', u'bowl', u'lanka', u'easi', u'victori']
[u'nato', u'take', u'secur', u'southern', u'afghanistan']
[u'newcastl', u'polic', u'investig', u'fatal', u'crash']
[u'help', u'preserv', u'aborigin', u'languag']
[u'need', u'stanhop', u'say']
[u'north', u'coast', u'resid', u'urg', u'census']
[u'rotten', u'state', u'denmark']
[u'govt', u'move', u'save', u'ymca']
[u'household', u'save', u'billion', u'litr', u'water']
[u'currenc', u'chang', u'lighten', u'pocket']
[u'foreign', u'minist', u'brisban', u'hospit']
[u'prepar', u'offer', u'small', u'scale', u'help', u'lebanon']
[u'omodei', u'seek', u'advic', u'dissid']
[u'onlin', u'grain', u'exchang', u'near', u'launch']
[u'opposit', u'union', u'warn', u'school', u'closur']
[u'palestinian', u'protest', u'storm', u'build']
[u'palm', u'alcohol', u'plan', u'caus', u'discrimin']
[u'pavin', u'end', u'victori', u'drought']
[u'petrol', u'increas', u'run', u'cost', u'nrma']
[u'plantagenet', u'shire', u'chase', u'unpaid', u'tree', u'farm', u'rat']
[u'inspect', u'cyclon', u'larri', u'recoveri', u'work']
[u'make', u'elect', u'commit']
[u'prais', u'cyclon', u'reconstruct', u'effort']
[u'decis', u'face', u'elector', u'welcom']
[u'contest', u'elect']
[u'stay', u'elect']
[u'polic', u'investig', u'bowen', u'crop', u'sabotag']
[u'polic', u'investig', u'castlemain', u'attack']
[u'polic', u'investig', u'tyson', u'fatal', u'accid']
[u'polic', u'investig', u'puppi', u'dump']
[u'polic', u'investig', u'vandal', u'synagogu', u'ground']
[u'polic', u'seek', u'condello', u'murder']
[u'polic', u'seek', u'school', u'vandal']
[u'polic', u'investig', u'condobolin', u'school']
[u'poll', u'calm', u'congo']
[u'poor', u'ball', u'control', u'cost', u'bronco', u'bennett']
[u'poor', u'weather', u'end', u'balloon', u'flight', u'record']
[u'pressur', u'mount', u'earli', u'water', u'referendum']
[u'prostat', u'cancer', u'dairi', u'food', u'link', u'rule']
[u'protea', u'forc', u'colombo', u'test', u'fifth']
[u'protest', u'oppos', u'riverslea', u'subdivis']
[u'push', u'bunburi', u'memori']
[u'push', u'higher', u'news', u'standard', u'countri']
[u'push', u'mount', u'index', u'home', u'stamp', u'duti', u'threshold']
[u'rail', u'link', u'approv']
[u'rare', u'rhino', u'kill', u'nepal']
[u'rat', u'rise', u'livingston', u'shire']
[u'investig', u'mildura', u'harass', u'complaint']
[u'recycl', u'effluent', u'impract', u'small', u'town', u'wide']
[u'research', u'project', u'design', u'shed', u'light', u'miss']
[u'resid', u'close', u'person']
[u'rice', u'hint', u'earli', u'east', u'ceas']
[u'rice', u'say', u'lebanon', u'truce', u'near']
[u'rockhampton', u'award', u'environment', u'work']
[u'rooster', u'determin', u'season', u'high']
[u'oldest', u'oper', u'sale']
[u'schumach', u'close', u'germani', u'victori']
[u'search', u'continu', u'miss']
[u'search', u'burn', u'toddler', u'cigarett']
[u'secur', u'tighten', u'synagogu', u'attack']
[u'sign', u'good', u'basslink', u'viabil', u'hydro']
[u'skywest', u'takeov']
[u'smoke', u'ban', u'pub', u'club']
[u'snow', u'fall', u'boost', u'season', u'hop']
[u'south', u'african', u'deputi', u'zuma', u'trial', u'postpon']
[u'sport', u'group', u'urg', u'prepar', u'tougher', u'water']
[u'springbok', u'seek', u'reveng', u'loss', u'wallabi']
[u'stanhop', u'hold', u'faith', u'school', u'closur', u'polici']
[u'sydney', u'synagogu', u'attack', u'condemn']
[u'tamil', u'tiger', u'ceas']
[u'call', u'water', u'treatment', u'plant']
[u'technic', u'colleg', u'open', u'launceston']
[u'teenag', u'pursu', u'legal', u'action', u'polic']
[u'telstra', u'plan', u'bright', u'public', u'phone']
[u'tiger', u'ruckmen', u'face', u'suspens']
[u'probe', u'croc', u'decapit']
[u'tourism', u'bodi', u'reject', u'fund', u'critic']
[u'townsvill', u'base', u'troop', u'iraq', u'give', u'role']
[u'treat', u'effluent', u'need', u'drink']
[u'lithgow', u'road', u'accid']
[u'teenag', u'north', u'west', u'accid']
[u'condemn', u'qana', u'attack']
[u'consid', u'middl', u'east', u'respons']
[u'deplor', u'death', u'southern', u'lebanon']
[u'union', u'warn', u'telstra', u'sack', u'affect', u'phone']
[u'skip', u'australian', u'grand', u'prix', u'weekend']
[u'bridg', u'save', u'chang']
[u'doctor', u'claim', u'patient', u'suffer']
[u'govt', u'criticis', u'state', u'yarra', u'river']
[u'govt', u'delay', u'water', u'restrict']
[u'resort', u'welcom', u'snow', u'fall']
[u'wage', u'commiss', u'tell', u'unemploy', u'rise']
[u'minist', u'head', u'karratha']
[u'nurs', u'step', u'rise', u'push']
[u'webber', u'philosoph', u'german', u'heartach']
[u'wembley', u'finish', u'date', u'push']
[u'wheat', u'belt', u'communiti', u'tackl', u'achohol', u'relat']
[u'wine', u'glut', u'take', u'toll', u'hunter']
[u'woman', u'jail', u'fraud']
[u'wool', u'grower', u'seek', u'speedi', u'industri', u'bodi', u'merger']
[u'poison', u'threat', u'anim', u'welfar']
[u'australian', u'southern', u'lebanon']
[u'papuan', u'grant', u'protect', u'visa']
[u'dead', u'lanka', u'ceas', u'crumbl']
[u'adelaid', u'busi', u'profit', u'mitsubishi', u'plant']
[u'dangl', u'cash', u'premiership', u'carrot']
[u'alleg', u'murder', u'control', u'action']
[u'american', u'raider', u'melbourn']
[u'anim', u'welfar', u'group', u'fear', u'dump', u'rise']
[u'injuri']
[u'wembley', u'delay', u'hit', u'chanc']
[u'anthoni', u'cut', u'upgrad', u'give', u'highest', u'prioriti']
[u'apart', u'demand', u'boost', u'build', u'approv']
[u'asic', u'warn', u'consum', u'onlin', u'tutor', u'servic']
[u'hold', u'breath', u'rat', u'announc']
[u'attack', u'open']
[u'augusta', u'margaret', u'river', u'shire', u'consid', u'recycl']
[u'australia', u'need', u'commit', u'nation', u'build']
[u'call', u'drink', u'water', u'survey']
[u'lower', u'estim', u'pool', u'return']
[u'backbench', u'convinc', u'offshor']
[u'bail', u'refus', u'sydney', u'terror', u'suspect']
[u'ballarat', u'lobbi', u'group', u'chairman', u'resign']
[u'ballarat', u'univers', u'staff', u'give', u'chanc']
[u'bank', u'push', u'water', u'trade', u'farrer']
[u'bateman', u'polic', u'claim', u'major', u'drug', u'ring', u'break']
[u'beatti', u'urg', u'start', u'wast', u'water', u'campaign']
[u'beazley', u'pin', u'possibl', u'rate', u'rise', u'howard']
[u'benetton', u'wool', u'deal', u'collaps']
[u'bomber', u'blitz', u'iraqi', u'forc', u'dead']
[u'boucher', u'lead', u'protea', u'dayer']
[u'brack', u'shrug', u'supercar', u'snub']
[u'brisban', u'woman', u'face', u'fraud', u'charg']
[u'britain', u'publish', u'terrorist', u'threat', u'level']
[u'british', u'soldier', u'kill', u'iraq', u'mortar', u'attack']
[u'break', u'hill', u'host', u'rural', u'health', u'care', u'confer']
[u'bronco', u'probe', u'second', u'assault', u'claim', u'seymour', u'name']
[u'brown', u'fast', u'track', u'wont', u'speed', u'futur', u'plan']
[u'cabcharg', u'persist', u'taxi', u'compani']
[u'better', u'shark', u'bird', u'protect']
[u'castro', u'temporarili', u'hand', u'power', u'brother']
[u'chines', u'star', u'sign', u'roar']
[u'civilian', u'flee', u'zone']
[u'claim', u'highway', u'indecis', u'lead', u'ill']
[u'closer']
[u'closer']
[u'closer']
[u'coalit', u'labor', u'neck', u'neck', u'poll']
[u'commonwealth', u'bank', u'instal', u'bomb', u'atm']
[u'compani', u'back', u'call', u'scrutini', u'worker', u'visa']
[u'consult', u'review', u'adelaid', u'festiv', u'centr']
[u'controversi', u'play', u'open', u'sydney']
[u'costello', u'announc', u'reserv', u'bank', u'governor']
[u'costello', u'dismiss', u'recess', u'talk']
[u'council', u'cancel', u'town', u'hall', u'entertain', u'licenc']
[u'court', u'hear', u'mokbel', u'girlfriend', u'money', u'london']
[u'danc', u'compani', u'win', u'nation', u'award']
[u'debri', u'caus', u'problem', u'scallop', u'fisher']
[u'dental', u'school', u'outgrow', u'gold', u'coast', u'base']
[u'dingo', u'tout', u'weapon', u'cane', u'toad']
[u'test', u'clear', u'soldier', u'kovco', u'involv']
[u'doctor', u'better', u'health', u'screen', u'foster']
[u'doctor', u'survey', u'knowledg', u'hour', u'servic']
[u'downer', u'urg', u'cooper', u'japan']
[u'dupa', u'weapon', u'link', u'halvagi', u'murder', u'inquest']
[u'economist', u'expect', u'rate', u'rise']
[u'elder', u'rural', u'bank', u'profit']
[u'elector', u'redistribut', u'object', u'pressur']
[u'england', u'drop', u'wicket', u'keeper', u'jone']
[u'exodus', u'southern', u'lebanon', u'begin']
[u'west', u'tourism', u'oper', u'award']
[u'fear', u'australian', u'miss', u'bali']
[u'fear', u'australian', u'remain', u'lebanon']
[u'fear', u'hold', u'australian', u'trap', u'lebanon']
[u'fierc', u'battl', u'fight', u'southern', u'lebanon']
[u'film', u'exhibit', u'melbourn']
[u'fisheri', u'manag', u'author', u'prais']
[u'fish', u'licenc', u'buyback', u'respons', u'overwhelm']
[u'echuca', u'brothel', u'histor', u'signific']
[u'trust', u'manag', u'return']
[u'kill', u'lanka', u'navi', u'base', u'attack']
[u'fund', u'uncertainti', u'threaten', u'student', u'union', u'job']
[u'gillard', u'fear', u'dialysi', u'patient', u'turn', u'away']
[u'gladston', u'port', u'world', u'coal']
[u'glenorchi', u'grain', u'grower', u'silo', u'fight']
[u'gold', u'coast', u'defer', u'wast', u'water', u'decis']
[u'gold', u'coast', u'bail', u'traffic', u'charg']
[u'goulburn', u'consid', u'water', u'recycl']
[u'govern', u'accus', u'lenient', u'hoon']
[u'govern', u'cover', u'patton', u'murder', u'trial', u'cost']
[u'govt', u'extend', u'jam', u'hardi', u'compo', u'agreement', u'deadlin']
[u'govt', u'take', u'polic', u'disput']
[u'govt', u'school', u'grade']
[u'govt', u'want', u'privat', u'boat', u'patrol', u'northern', u'water']
[u'govt', u'weigh', u'appeal', u'papuan', u'visa', u'decis']
[u'grant', u'instal', u'bulldog', u'loyal', u'servant']
[u'gryll', u'see', u'benefit', u'corpor', u'invest']
[u'halvagi', u'murder', u'inquest', u'adjourn']
[u'head', u'turn', u'melbourn', u'favourit']
[u'herbert', u'welcom', u'liber', u'leadership', u'decis']
[u'want', u'doubl', u'homebuy', u'grant']
[u'hindmarsh', u'return', u'eel', u'fold']
[u'victim', u'father', u'welcom', u'inquest', u'pledg']
[u'hobart', u'alderman', u'sue', u'fellow', u'alderman', u'defam']
[u'hollywood', u'agent', u'demand', u'gibson', u'boycott']
[u'hop', u'sand', u'pump', u'save', u'beach']
[u'howard', u'admit', u'petrol', u'price', u'threat']
[u'howard', u'decis', u'encourag', u'tuckey']
[u'howard', u'tour', u'north']
[u'iemma', u'warn', u'stanhop', u'school', u'closur']
[u'increas', u'approv', u'dont', u'mean', u'hous', u'sector']
[u'indian', u'selector', u'rais', u'ganguli', u'hop']
[u'inquiri', u'criticis', u'time', u'frame', u'land', u'right']
[u'iran', u'reject', u'resolut', u'suspend', u'nuclear']
[u'iraq', u'power', u'suppli', u'improv', u'corrupt']
[u'isra', u'attack', u'unintend', u'target']
[u'isra', u'crush', u'ceas', u'hop']
[u'israel', u'pound', u'hezbollah', u'posit']
[u'israel', u'step', u'combat', u'oper']
[u'israel', u'step', u'offens']
[u'israel', u'widen', u'grind', u'offens']
[u'japanes', u'student', u'extradit', u'alleg', u'death']
[u'judg', u'advis', u'mediat', u'mutijulu', u'disput']
[u'keat', u'surpris', u'showbiz', u'award']
[u'labor', u'question', u'telstra', u'broadband']
[u'lake', u'macquari', u'crime', u'prevent', u'pilot']
[u'leadership', u'issu', u'close']
[u'lebanon', u'soccer', u'leav', u'adelaid', u'high']
[u'lebanon', u'socceroo', u'game', u'scrap']
[u'leica', u'falcon', u'miss', u'spring', u'carniv']
[u'lille', u'back', u'flintoff', u'plan']
[u'plane', u'inspect', u'powerlin']
[u'accus', u'terror', u'offenc', u'seek']
[u'appear', u'court', u'arm', u'robberi']
[u'arrest', u'attempt', u'abduct']
[u'charg', u'connect', u'fatal', u'crash']
[u'injur', u'lead', u'smelter', u'fall']
[u'manufactur', u'activ', u'weaken']
[u'market', u'agreement', u'boost', u'vanadium', u'project']
[u'marsh', u'charg', u'redback']
[u'gibson', u'enter', u'detox', u'program', u'arrest']
[u'milk', u'shortag', u'forc', u'processor', u'increas', u'price']
[u'minist', u'hear', u'region', u'problem']
[u'moimoi', u'accept', u'seven', u'match']
[u'money', u'need', u'spend', u'port', u'upgrad', u'inquiri']
[u'wodonga', u'industri', u'land', u'sell']
[u'deni', u'govt', u'elect', u'foot']
[u'hop', u'state', u'money', u'pipelin']
[u'multiplex', u'announc', u'wembley', u'delay']
[u'murder', u'suspect', u'chang', u'plea']
[u'mutijulu', u'wit', u'defend', u'appear']
[u'boat', u'improv', u'rescu', u'south', u'west', u'coast']
[u'deputi', u'speaker', u'announc']
[u'rule', u'expect', u'impact', u'posit']
[u'transmiss', u'line', u'improv', u'cairn', u'power']
[u'need', u'investig', u'student']
[u'polic', u'arrest', u'alleg', u'drug', u'maker']
[u'prison', u'escap', u'give', u'longer', u'sentenc']
[u'govt', u'slam', u'cannonball']
[u'carpet', u'compani', u'consid', u'melbourn', u'offer']
[u'olmert', u'crush', u'hop', u'ceas']
[u'year', u'event', u'weather', u'pattern', u'say']
[u'opposit', u'fear', u'privat', u'school']
[u'opposit', u'seek', u'clarif', u'counter']
[u'panel', u'hear', u'concern', u'toxic', u'wast', u'dump']
[u'plan', u'overhaul', u'goldfield', u'custodi', u'servic']
[u'talk', u'costello', u'record', u'treasur']
[u'state', u'emerg', u'affect', u'plan']
[u'polic', u'continu', u'investig', u'suspici']
[u'polic', u'dismiss', u'walsham', u'death', u'theori']
[u'polic', u'recov', u'tatiana', u'medal']
[u'polic', u'search', u'driver']
[u'polic', u'search', u'suspect', u'attempt', u'abduct']
[u'polic', u'seek', u'miss', u'person', u'inform']
[u'polic', u'staff', u'issu', u'refer', u'worksaf']
[u'poll', u'show', u'govt', u'labor', u'neck', u'neck']
[u'public', u'slam', u'coverag', u'mutijulu', u'abus']
[u'push', u'establish', u'rebellion', u'group', u'riverina']
[u'push', u'fast', u'track', u'mackay', u'boardwalk']
[u'railcorp', u'fund', u'mainten', u'histor', u'train']
[u'rare', u'cloud', u'antarctica', u'suggest', u'global', u'warm']
[u'rat', u'rise', u'bulloo', u'shire']
[u'recycl', u'water', u'inevit', u'goulburn']
[u'residenti', u'hous', u'centr', u'open', u'villawood']
[u'retrench', u'affect', u'servic', u'telstra']
[u'rural', u'battl', u'batter', u'bridg']
[u'govt', u'flag', u'tramlin', u'extens']
[u'saint', u'lose', u'baker']
[u'sapl', u'tree', u'destroy', u'vandal', u'attack']
[u'scientist', u'step', u'obes', u'vaccin']
[u'search', u'scale']
[u'ship', u'scuttl', u'bring', u'tourism', u'dollar']
[u'shire', u'offer', u'support', u'darkan', u'hemp', u'industri']
[u'korean', u'ambassador', u'say', u'tension', u'unlik']
[u'smelter', u'worker', u'question', u'strike']
[u'sofia', u'murder', u'accus', u'appear', u'court']
[u'soldier', u'say', u'kovco', u'suicid', u'unlik']
[u'steal', u'item', u'return', u'queensland', u'parliament']
[u'somlyay', u'welcom', u'elect', u'decis']
[u'sooth', u'singer', u'struggl', u'fund']
[u'sport', u'star', u'childhood', u'obes', u'crackdown']
[u'lanka', u'bomb', u'rebel', u'blast']
[u'stafford', u'challeng', u'charg']
[u'staff', u'reject', u'hospit', u'fund', u'claim']
[u'stand', u'develop', u'kimberley', u'indigen']
[u'stanhop', u'mull', u'order', u'inquest', u'student', u'death']
[u'stock', u'rout', u'favour', u'pipelin']
[u'stosur', u'diego']
[u'studi', u'look', u'region', u'poker', u'machin', u'addict']
[u'set', u'daylight', u'save', u'jacob']
[u'survey', u'find', u'major', u'support', u'effluent']
[u'survey', u'expect', u'delay', u'bypass', u'work', u'land']
[u'swallow', u'win', u'rise', u'star']
[u'swan', u'prepar', u'luck', u'bomber']
[u'swift', u'firebird', u'edg', u'histori']
[u'memori', u'plan', u'present', u'space', u'problem']
[u'synthet', u'testosteron', u'landi', u'sampl', u'report']
[u'tamil', u'tiger', u'declar', u'ceas']
[u'govt', u'support', u'worker', u'compo', u'chang', u'challeng']
[u'telescop', u'snap', u'imag', u'second', u'jupit', u'spot']
[u'tooth', u'decay', u'increas', u'teen']
[u'train', u'derail', u'clean', u'begin']
[u'tribun', u'overturn', u'papuan', u'refuge', u'decis']
[u'troubl', u'chauffeur', u'busi', u'save', u'owner']
[u'nato', u'troop', u'kill', u'afghanistan']
[u'uefa', u'dive', u'crackdown']
[u'union', u'negoti', u'firefight', u'workplac', u'agreement']
[u'reschedul', u'lebanon', u'peacekeep', u'meet']
[u'admit', u'make', u'threat', u'dismemb']
[u'warn', u'elector', u'chang', u'hurt', u'wide']
[u'warn', u'rate', u'rise', u'affect', u'mackay', u'properti']
[u'west', u'tourist', u'rout', u'offici', u'open']
[u'west', u'faith', u'schoolboy', u'winger']
[u'wide', u'offer', u'pioneer']
[u'wimmera', u'economi', u'hard', u'drought']
[u'woman', u'charg', u'manslaught']
[u'polic', u'deploy', u'troubl', u'provinc']
[u'abbott', u'flag', u'hospit', u'fund', u'chang']
[u'abbott', u'shi', u'away', u'junk', u'food']
[u'accus', u'kidnapp', u'deni', u'bail']
[u'act', u'general', u'manag', u'brewarrina', u'shire']
[u'rule', u'hand', u'nation', u'park', u'manag']
[u'afghan', u'forc', u'kill', u'taliban', u'guerrilla']
[u'announc', u'massiv', u'salari', u'hike']
[u'agricultur', u'invest', u'scheme', u'support', u'prematur']
[u'ainsli', u'villag', u'manslaught', u'accus', u'front', u'court']
[u'airport', u'retail', u'develop', u'open', u'high']
[u'alectown', u'bushfir', u'damag', u'assess']
[u'alleg', u'vizard', u'burglar', u'stand', u'trial']
[u'anaesthet', u'drug', u'sheep', u'mules']
[u'angri', u'korean', u'demand', u'life', u'ban']
[u'annan', u'seek', u'troop', u'darfur', u'forc']
[u'art', u'centr', u'like', u'exceed', u'budget']
[u'auditor', u'general', u'hospit', u'report', u'draw', u'opposit']
[u'aust', u'muslim', u'push', u'lebanon', u'ceas']
[u'australian', u'snorkel', u'die', u'bali']
[u'aust', u'host', u'ditch', u'trade', u'talk']
[u'bathurst', u'recycl', u'servic', u'review']
[u'beazley', u'vow', u'respons', u'indigen']
[u'berghof', u'push', u'addit', u'task', u'forc']
[u'label', u'dealership', u'immor']
[u'daddi', u'pollock', u'boost', u'south', u'africa']
[u'diesel', u'plant', u'struggl', u'meet', u'standard']
[u'bottl', u'water', u'blame', u'tooth', u'decay']
[u'bundaberg', u'polic', u'continu', u'target', u'hoon']
[u'burgoyn', u'prepar', u'centuri', u'mileston']
[u'project', u'wast', u'million']
[u'call', u'health', u'advisori', u'council', u'chair']
[u'call', u'relinquish', u'hezbollah', u'terror', u'status']
[u'bradman', u'nemesi', u'go', u'hammer']
[u'caracella', u'hang', u'boot']
[u'carpent', u'seek', u'quick', u'polic', u'disput']
[u'carpent', u'seiz', u'unrest', u'pipelin', u'sell']
[u'cash', u'rate', u'rise', u'hit', u'market']
[u'castro', u'good', u'spirit', u'surgeri']
[u'child', u'abus', u'file', u'backlog', u'concern', u'nation']
[u'child', u'safeti', u'minist', u'tell', u'rest', u'voic']
[u'child', u'abus', u'inquiri', u'need', u'widen', u'approach']
[u'chlorin', u'erad', u'exot', u'marin', u'pest']
[u'civilian', u'escap', u'south', u'lebanon']
[u'closer']
[u'closer']
[u'closer']
[u'coach', u'keep', u'faith', u'wilko']
[u'cold', u'snap', u'fuel', u'retail', u'spend', u'rise']
[u'committe', u'meet', u'manufactur', u'compani']
[u'communiti', u'leader', u'tackl', u'unemploy', u'peel']
[u'compani', u'seek', u'grower', u'help', u'meet', u'demand']
[u'corbel', u'defend', u'busway', u'plan']
[u'council', u'plan', u'creat', u'hous', u'block', u'averag']
[u'council', u'urg', u'customari', u'expert']
[u'council', u'want', u'reviv', u'youth', u'represent']
[u'court', u'kill', u'threat', u'accus', u'bail']
[u'detaine', u'remain', u'insecur', u'darwin', u'centr']
[u'docker', u'plan', u'trade', u'medhurst']
[u'driver', u'charg', u'passeng', u'death']
[u'drop', u'hezbollah', u'terrorist', u'list', u'academ']
[u'produc', u'audit']
[u'elder', u'charg', u'parliament', u'theft']
[u'farmer', u'tri', u'wife', u'murder']
[u'fast', u'rail', u'project', u'near', u'complet']
[u'fear', u'rate', u'rise', u'busi']
[u'festiv', u'organis', u'fear', u'fund', u'cut']
[u'film', u'prompt', u'copycat', u'suicid', u'fear']
[u'fish', u'chip', u'sherlock', u'holm', u'join', u'icon', u'list']
[u'silo', u'month', u'repriev']
[u'carcass', u'confirm', u'fear']
[u'gatlin', u'masseur', u'deni', u'coach', u'stori']
[u'girl', u'deni', u'incit', u'alleg', u'attack']
[u'girl', u'abus', u'jail', u'year']
[u'gold', u'coast', u'shopkeep', u'warn', u'fake', u'cash']
[u'good', u'back', u'premiership', u'payment']
[u'goodwood', u'handicap', u'move', u'weight']
[u'govt', u'deni', u'major', u'develop', u'status', u'cornu']
[u'govt', u'criticis', u'petrol', u'approach']
[u'reviv', u'roadsid', u'accid']
[u'graincorp', u'grain', u'receiv', u'sit', u'open']
[u'grain', u'council', u'seek', u'inquiri', u'cost', u'guarante']
[u'green', u'claim', u'support', u'health', u'work', u'group']
[u'grower', u'jail', u'marijuana', u'crop']
[u'hannay', u'drop', u'reserv']
[u'hansen', u'set', u'world', u'breaststrok', u'record']
[u'heffernan', u'joyc', u'spar', u'water']
[u'hoon', u'problem', u'gold', u'coast']
[u'hors', u'rider', u'protest', u'propos', u'kosciuszko']
[u'hospit', u'fund', u'reform', u'overdu']
[u'howard', u'defend', u'rate', u'rise']
[u'howard', u'urg', u'lead', u'talk']
[u'howard', u'warn', u'debt', u'level']
[u'hunt', u'unawar', u'alleg', u'nightclub', u'incid']
[u'ill', u'prompt', u'cuban', u'power', u'shift']
[u'indigen', u'council', u'boss', u'back', u'remot', u'jail', u'plan']
[u'industri', u'network', u'welcom', u'effect']
[u'inflat', u'main', u'factor', u'latest', u'rate', u'rise']
[u'rate', u'rise']
[u'rat', u'rise']
[u'rat', u'rise']
[u'rat', u'costello']
[u'intern', u'act', u'boost', u'entertain', u'centr']
[u'israel', u'continu', u'gaza', u'raid']
[u'israel', u'count', u'time', u'weaken', u'hezbollah']
[u'israel', u'utmost', u'evacu']
[u'isra', u'back', u'aust', u'peacekeep', u'effort']
[u'isra', u'troop', u'captur', u'hezbollah', u'member']
[u'israel', u'step', u'grind', u'assault']
[u'israel', u'lebanon']
[u'chang', u'mclaren', u'take']
[u'jackman', u'return']
[u'jail', u'deterr', u'alcohol', u'abus', u'lawyer']
[u'japanes', u'recoveri', u'benefit', u'produc']
[u'japan', u'see', u'man', u'moon', u'station']
[u'johnston', u'shire', u'face', u'sack']
[u'juventus', u'sell', u'vieira', u'inter', u'milan']
[u'kennett', u'play', u'parti', u'divis', u'claim']
[u'kookaburra', u'world', u'squad']
[u'kovco', u'colleagu', u'play', u'gun', u'soldier']
[u'labor', u'urg', u'junk', u'food', u'advertis', u'ban']
[u'lack', u'coverag', u'kill', u'women', u'sport', u'inquiri', u'tell']
[u'lawyer', u'fin', u'damag', u'howard']
[u'lead', u'edg', u'illawarra']
[u'light', u'head', u'litchfield', u'litterbug', u'leav', u'licenc']
[u'lion', u'unlik', u'rush', u'injur', u'player']
[u'lithgow', u'subdivis', u'ahead', u'court']
[u'longest', u'serv', u'femal', u'mayor', u'retir']
[u'luczak', u'agassi', u'earli', u'washington', u'exit']
[u'macquari', u'field', u'polic', u'downplay', u'brawl', u'fear']
[u'magpi', u'fin', u'brawl']
[u'magpi', u'pair', u'polic', u'investig']
[u'attack', u'shop', u'centr', u'park']
[u'plead', u'guilti', u'murder', u'guilti']
[u'marin', u'fish', u'propos', u'criticis']
[u'market', u'unruffl', u'wake', u'rate', u'rise']
[u'mayor', u'defend', u'tourism', u'offic', u'redund', u'decis']
[u'mayor', u'say', u'threat', u'maker', u'throw']
[u'mayor', u'reject', u'beatti', u'water', u'blame', u'game']
[u'mcdonald', u'look', u'oversea', u'job']
[u'member', u'mildura', u'blame', u'ramsay', u'lack']
[u'minist', u'support', u'claim']
[u'minist', u'fight', u'local', u'busi', u'support']
[u'miss', u'surfer', u'famili', u'indonesia']
[u'mules', u'spray', u'fail', u'appeas', u'peta']
[u'murder', u'accus', u'victim', u'peni']
[u'muscat', u'keen', u'miss', u'world']
[u'mutijulu', u'administr', u'restrict', u'lift']
[u'nation', u'unveil', u'fund', u'ahead', u'elect']
[u'neighbour', u'appear', u'court', u'relat', u'attack']
[u'fund', u'disast', u'prepared']
[u'jail', u'hop', u'north']
[u'lead', u'halt', u'child', u'inquest']
[u'korean', u'flood', u'toll', u'think']
[u'govt', u'split', u'nuclear', u'dump', u'plan']
[u'nobbi', u'lighthous', u'get', u'green', u'light']
[u'noordin', u'sight', u'prompt', u'java', u'search']
[u'nurseri', u'industri', u'lose', u'billion', u'sale']
[u'taxpay', u'cost', u'cancel', u'tour']
[u'guilti', u'road', u'rage', u'murder']
[u'opposit', u'propos', u'north', u'coast', u'ethanol', u'plant']
[u'packag', u'solv', u'horticultur', u'problem']
[u'painkil', u'rais', u'heart', u'attack', u'risk', u'studi']
[u'palu', u'australian', u'start']
[u'palu', u'australia', u'start']
[u'pietersen', u'keen', u'run']
[u'politician', u'withdraw', u'project', u'threat']
[u'unrest', u'threaten', u'pipelin']
[u'polic', u'communic', u'centr']
[u'polic', u'dive', u'search', u'miss', u'fishermen']
[u'policemen', u'face', u'court', u'alleg', u'assault']
[u'preacher', u'quiz', u'benbrika', u'terror', u'plan']
[u'produc', u'stop', u'cull', u'sheep']
[u'public', u'meet', u'great', u'artesian', u'basin']
[u'railway', u'bomb', u'kill', u'thai', u'policemen']
[u'rare', u'diseas', u'threaten', u'sunflow']
[u'rate', u'rise', u'put', u'pressur', u'govt']
[u'rate', u'rise', u'effect', u'australian']
[u'rat', u'pmopen']
[u'rat', u'rise', u'murweh', u'shire']
[u'rat', u'rise', u'million', u'household']
[u'lift', u'rate']
[u'rais', u'rate']
[u'remot', u'famili', u'seek', u'boost', u'allow']
[u'research', u'bust', u'head', u'size', u'intellig', u'link']
[u'resid', u'kick', u'stink', u'lake', u'illeg']
[u'retail', u'spend', u'prompt', u'debt', u'warn']
[u'rmit', u'cancer', u'case', u'statist', u'normal']
[u'robert', u'clear', u'danger', u'throw']
[u'ruddock', u'tight', u'lip', u'terror', u'law', u'talk']
[u'rural', u'sector', u'cope', u'rate', u'rise']
[u'saint', u'appeal', u'baker', u'suspens']
[u'abus', u'confession']
[u'school', u'damag', u'bill', u'assess']
[u'search', u'remain', u'follow', u'skull']
[u'secur', u'issu', u'hamper', u'lebanon', u'effort']
[u'senat', u'hear', u'water', u'polici', u'concern']
[u'senat', u'welcom', u'famili', u'relationship', u'centr']
[u'socceroo', u'leagu', u'squad']
[u'souvenir', u'hunter', u'blame', u'croc', u'kill']
[u'specul', u'sunshin', u'coast', u'hospit', u'site']
[u'spida', u'season']
[u'sport', u'heavyweight', u'join', u'obes', u'fight']
[u'springbok', u'deni', u'plan', u'hurt', u'larkham']
[u'lankan', u'armi', u'rebel', u'trade']
[u'steve', u'thoma', u'stay', u'state']
[u'storag', u'critic', u'vaccin', u'studi']
[u'storm', u'kill', u'philippin']
[u'survey', u'reveal', u'bike', u'ride', u'benefit', u'albani']
[u'tasmanian', u'win', u'world', u'orient', u'championship']
[u'tbird', u'request', u'chang', u'final', u'elig', u'rule']
[u'teenag', u'arrest', u'arm', u'robberi']
[u'teen', u'charg', u'macquari', u'field', u'disturb']
[u'telstra', u'talk', u'accc', u'take', u'long', u'coonan', u'say']
[u'telstra', u'technician', u'loss', u'impact', u'servic']
[u'rate', u'rise', u'impact', u'perth']
[u'thousand', u'shiit', u'march', u'baghdad']
[u'timber', u'group', u'urg', u'govern', u'think']
[u'time', u'run', u'demon', u'moloney']
[u'toddler', u'kill', u'accid']
[u'tougher', u'anti', u'hoon', u'law', u'improv', u'road', u'safeti']
[u'trade', u'polici', u'expert', u'talk', u'possibl', u'japan']
[u'trezeguet', u'stay', u'juventus', u'vieira', u'inter']
[u'confid', u'maintain', u'iraq', u'wheat', u'market']
[u'vizard', u'daughter', u'tell', u'court', u'burglari', u'scare']
[u'walker', u'depart', u'storm', u'person', u'reason']
[u'watchdog', u'probe', u'gibson', u'arrest', u'process']
[u'endors', u'report']
[u'young', u'murder', u'face', u'life', u'jail']
[u'zidan', u'head', u'butt', u'song', u'top', u'french', u'chart']
[u'academi', u'abus', u'perpetr', u'policemen']
[u'accc', u'drop', u'merger', u'opposit']
[u'accc', u'halt', u'unitab', u'takeov']
[u'govt', u'blame', u'offic', u'space', u'shortag']
[u'adelaid', u'festiv', u'centr', u'review']
[u'adelaid', u'woman', u'die', u'snorkel', u'bali']
[u'look', u'player', u'code', u'conduct']
[u'alcohol', u'produc', u'streamlin', u'australian', u'oper']
[u'drop', u'hezbollah', u'list', u'push']
[u'closer']
[u'warn', u'hospit', u'train', u'cutback']
[u'approv', u'process', u'draw', u'open']
[u'asian', u'boss', u'rebuff', u'north', u'korea']
[u'detent', u'need', u'indonesian', u'approv']
[u'aussi', u'tenni', u'boss', u'recov', u'heart', u'surgeri']
[u'australian', u'evacue', u'leav', u'lebanon']
[u'announc', u'chief']
[u'baker', u'appeal', u'dismiss']
[u'barbaro', u'plead', u'guilti', u'arm', u'robberi']
[u'beatti', u'urg', u'push', u'water', u'referendum', u'forward']
[u'beazley', u'vow', u'repeal', u'dump', u'law']
[u'blair', u'see', u'lebanon', u'resolut', u'day']
[u'boomer', u'squad', u'world', u'champ']
[u'bouncer', u'respons', u'man', u'death', u'coron']
[u'brawl', u'victim', u'famili', u'bouncer']
[u'brown', u'role', u'falconio', u'movi']
[u'buddhist', u'abbot', u'approv', u'shoalhaven', u'tourism', u'site']
[u'camel', u'ride', u'disput', u'go', u'state', u'author']
[u'canberra', u'record', u'warmest', u'winter', u'year']
[u'carney', u'neglig', u'claim', u'strike']
[u'find', u'incompet', u'polic', u'forc']
[u'cdma', u'network', u'replac', u'track', u'telstra']
[u'cherri', u'grower', u'pick', u'cost', u'levi']
[u'chief', u'justic', u'slam', u'drug', u'test', u'delay']
[u'child', u'care', u'age', u'care', u'combin', u'centr']
[u'china', u'fli', u'lebanon']
[u'class', u'resum', u'macquari', u'field', u'school']
[u'closer']
[u'closer']
[u'communiti', u'call', u'fight']
[u'communiti', u'leader', u'deplor', u'racist', u'attack']
[u'compani', u'put', u'contractor', u'safeti', u'risk', u'union']
[u'connolli', u'bank', u'larkham', u'tour', u'europ']
[u'costello', u'look', u'bright', u'rat', u'rise']
[u'council', u'urg', u'review', u'polici', u'control', u'hawker']
[u'court', u'upgrad', u'help', u'victim']
[u'cowboy', u'injuri', u'woe', u'worsen']
[u'rule', u'saint', u'clash']
[u'csiro', u'gambier', u'research', u'centr', u'close']
[u'cuba', u'quiet', u'castro', u'condit']
[u'custom', u'seiz', u'fake', u'design', u'brand']
[u'cyclon', u'wag', u'relief', u'program', u'extend']
[u'darwin', u'african', u'immigr', u'tell', u'intimid']
[u'desper', u'farmer', u'underpric', u'water']
[u'destroy', u'project', u'centr', u'open']
[u'detent', u'ship', u'plan', u'requir', u'indonesian', u'support']
[u'diplomat', u'hope', u'east', u'ceas']
[u'docker', u'sign', u'defend']
[u'draft', u'seed', u'import', u'regul', u'worri', u'grower']
[u'highlight', u'turtl', u'conserv', u'crisi']
[u'eel', u'treat', u'dragon', u'encount']
[u'effort', u'step', u'doctor', u'recruit', u'drive']
[u'ellison', u'label', u'detent', u'ship', u'critic', u'unfound']
[u'empir', u'rubber', u'futur']
[u'european', u'central', u'bank', u'rais', u'rat']
[u'site', u'approv', u'recreat', u'park']
[u'falconio', u'film', u'prompt', u'break']
[u'famili', u'corbel', u'welcom', u'rise', u'inquest']
[u'farm', u'equip', u'steal', u'shed']
[u'father', u'hold', u'alleg', u'abduct']
[u'ferri', u'rescu', u'trap', u'australian']
[u'flintoff', u'aim', u'ash', u'test', u'return']
[u'releas', u'fruit', u'farm', u'raid']
[u'franc', u'snub', u'peac', u'forc']
[u'freight', u'compani', u'prais', u'action', u'cane', u'toad']
[u'frosti', u'morn', u'toll', u'wildflow']
[u'fruit', u'farm', u'raid', u'extort', u'claim']
[u'fund', u'seek', u'tackl', u'long', u'spin', u'urchin']
[u'galla', u'lose', u'number', u'shirt', u'ballack']
[u'gaza', u'strip', u'oper', u'kill']
[u'ghana', u'anniversari', u'plan', u'anger', u'poor']
[u'gibson', u'drink', u'drive', u'charg']
[u'glass', u'hous', u'mountain', u'heritag', u'list']
[u'goulburn', u'blue', u'festiv', u'focus', u'strateg', u'growth']
[u'govt', u'criticis', u'ship', u'detent', u'plan']
[u'govt', u'dismiss', u'hospit', u'park', u'pledg']
[u'govt', u'prison', u'mother', u'ship', u'plan']
[u'govt', u'urg', u'bulldoz', u'convent', u'centr']
[u'headless', u'croc', u'dead', u'juli']
[u'health', u'bureaucrat', u'departur', u'tragedi']
[u'henri', u'insist', u'decis', u'post', u'world']
[u'hensbi', u'plan', u'season', u'earli']
[u'hewitt', u'ralli', u'escap', u'upset', u'washington']
[u'hezbollah', u'launch', u'major', u'rocket', u'attack']
[u'hezbollah', u'launch', u'rocket', u'offens']
[u'hezbollah', u'pound', u'northern', u'israel']
[u'hobart', u'youth', u'get', u'starter']
[u'hostel', u'death', u'juri', u'show', u'footag']
[u'hound', u'destroy', u'elviss', u'teddi', u'bear']
[u'howard', u'stand', u'firm', u'stem', u'cell', u'research']
[u'hreoc', u'ask', u'probe', u'detent']
[u'human', u'right', u'watch', u'put', u'qana', u'death', u'toll']
[u'milk', u'kiwi', u'cow', u'sydney', u'spida']
[u'iemma', u'mark', u'anniversari', u'premier']
[u'illawarra', u'gear', u'school', u'music']
[u'industri', u'confid', u'mules', u'spray']
[u'institut', u'lobbi', u'rate']
[u'isra', u'raid', u'resum', u'tyre']
[u'israel', u'resum', u'bombard', u'beirut']
[u'israel', u'resum', u'tyre', u'bombard']
[u'judg', u'condemn', u'anti', u'protest', u'action']
[u'kookaburra', u'focus', u'south', u'korean', u'seri']
[u'kosmina', u'join', u'socceroo', u'kuwait', u'clash']
[u'law', u'prevent', u'petrol', u'profit', u'crackdown', u'accc']
[u'lebanon', u'deploy', u'like', u'specialis', u'nelson']
[u'lebanon', u'pmopen']
[u'lenton', u'unfaz', u'lose']
[u'level', u'water', u'restrict', u'like', u'sunshin']
[u'level', u'threat', u'suppli', u'snowi', u'hydro']
[u'liber', u'line', u'feder', u'seat', u'preselect']
[u'lithgow', u'resid', u'consid', u'legal', u'action']
[u'lobbyist', u'welcom', u'bendigo', u'train', u'line']
[u'long', u'term', u'surgeri', u'wait', u'list', u'dramat']
[u'mackay', u'see', u'hospit', u'wait', u'time']
[u'malle', u'field', u'record', u'crowd']
[u'mandurah', u'green', u'hous', u'project']
[u'keep', u'secret', u'fear', u'ridicul']
[u'marina', u'expans', u'begin', u'year']
[u'massiv', u'hezbollah', u'attack', u'probe', u'israel']
[u'meatwork', u'warn', u'visa', u'probe', u'oper']
[u'medicar', u'bill', u'breach', u'privaci', u'say']
[u'medic', u'kakadu', u'gorg', u'accid']
[u'gibson', u'charg', u'drink', u'drive']
[u'memori', u'seek', u'film', u'premier', u'restag']
[u'mine', u'project', u'director', u'geraldton', u'council']
[u'miss', u'children', u'canberra']
[u'award', u'makyb', u'diva']
[u'innov', u'need', u'overcom', u'wine', u'glut', u'expert']
[u'depress', u'hotlin']
[u'moylan', u'defend', u'amid', u'preselect', u'rumour']
[u'murder', u'lose', u'wrong', u'arrest', u'case']
[u'muslim', u'nation', u'demand', u'lebanon', u'ceas']
[u'nat', u'condemn', u'plan', u'auction', u'water']
[u'nat', u'welcom', u'latest', u'hospit', u'figur']
[u'negoti', u'continu', u'polic', u'communic']
[u'nelson', u'cut', u'east', u'timor', u'deploy']
[u'nelson', u'dismiss', u'conscript']
[u'nelson', u'rule', u'conscript']
[u'cunnamulla', u'depot', u'mean', u'better', u'work']
[u'machin', u'solv', u'kidney', u'problem', u'home']
[u'strategi', u'boost', u'employ', u'illawarra']
[u'syring', u'bin', u'lachlan', u'shire']
[u'petrol', u'price', u'relief', u'sight']
[u'nurs', u'urg', u'report', u'domest', u'violenc']
[u'foreign', u'english', u'counti']
[u'opposit', u'blame', u'govt', u'rat', u'rise']
[u'pakistan', u'face', u'test', u'nerv']
[u'perilya', u'look', u'extend', u'life', u'break', u'hill']
[u'petrol', u'price', u'inquiri', u'begin']
[u'petrol', u'price', u'similar', u'collus', u'joyc']
[u'petrol', u'price', u'similar', u'necessarili']
[u'muslim', u'leader', u'condemn', u'middl', u'east', u'conflict']
[u'drink', u'recycl', u'water', u'springborg', u'say']
[u'polic', u'charg', u'mildura', u'stab']
[u'polic', u'drop', u'estim', u'crop', u'affect', u'poison']
[u'polic', u'fear', u'miss', u'children']
[u'policemen', u'stand', u'trial', u'assault']
[u'power', u'retail', u'employe', u'forc']
[u'prison', u'ship', u'hold', u'illeg', u'fishermen', u'asylum']
[u'profit', u'result', u'buoy', u'wall']
[u'qana', u'bomb', u'mistak', u'isra', u'inquiri']
[u'qana', u'bomb', u'mistak', u'inquiri']
[u'govt', u'pressur', u'pull', u'weight', u'water']
[u'wait', u'list', u'longer', u'say', u'opposit']
[u'rate', u'rise', u'hit', u'busi', u'confid']
[u'rate', u'rise', u'like', u'countri', u'famili', u'harder']
[u'rate', u'rise', u'like', u'impact', u'small', u'busi']
[u'rate', u'rise', u'affect', u'market']
[u'region', u'council', u'dump', u'fee', u'unjust']
[u'resourc', u'stock', u'buoy', u'market']
[u'tinto', u'half', u'year', u'profit']
[u'road', u'safeti', u'messag', u'get']
[u'roo', u'wont', u'stand', u'rocca', u'dream']
[u'runaway', u'captiv']
[u'russian', u'theft', u'worth', u'dealer']
[u'abalon', u'industri', u'fear', u'virus', u'widespread']
[u'nurs', u'state', u'award']
[u'school', u'data', u'websit', u'accur', u'govt', u'tell']
[u'sentenc', u'shoot', u'alleg', u'sydney']
[u'snowfield', u'safeti', u'increas']
[u'special', u'patrol', u'halt', u'railway', u'monkey', u'busi']
[u'lanka', u'monitor', u'withdraw', u'devast']
[u'lanka', u'urg', u'talk', u'rebel']
[u'stab', u'victim', u'take', u'adelaid']
[u'staff', u'pressur', u'return', u'rmit', u'build']
[u'stanhop', u'parent', u'odd']
[u'rat', u'world', u'level', u'group', u'say']
[u'stosur', u'fall', u'diego']
[u'student', u'suspend', u'brawl', u'plan']
[u'subcontractor', u'ask', u'union']
[u'suicid', u'bomb', u'kill', u'civilian', u'afghanistan']
[u'supermarket', u'fuel', u'price', u'accc']
[u'surgeri', u'wait', u'list', u'detail', u'releas']
[u'swimmer', u'petit', u'morn', u'final']
[u'sydney', u'children', u'safe']
[u'tamworth', u'superschool', u'unlik', u'say', u'feder']
[u'tarnish', u'sneak', u'champion', u'leagu']
[u'tarrant', u'johnson', u'slam', u'magpi', u'great']
[u'tarrant', u'johnson', u'face', u'crow']
[u'govt', u'tout', u'hunt', u'parti', u'solut']
[u'test', u'fail', u'identifi', u'remain', u'crocodil']
[u'toddler', u'drown', u'plant', u'nurseri']
[u'toyota', u'domin', u'sale']
[u'transport', u'minist', u'call', u'equiti', u'fuel']
[u'treatment', u'work', u'eas', u'sewag', u'odour']
[u'trojan', u'infect', u'australian']
[u'tuckey', u'plan']
[u'tumut', u'shire', u'site', u'snowi', u'hydro', u'plant']
[u'tuvalu', u'voter', u'poll']
[u'union', u'meet', u'dept', u'head', u'discuss', u'mismanag']
[u'soldier', u'tell', u'smile', u'comrad', u'kill', u'iraqi']
[u'util', u'mull', u'enter', u'nation', u'market']
[u'boss', u'sight', u'olymp', u'park']
[u'polic', u'concern', u'centralis']
[u'expand', u'countri', u'rail', u'servic']
[u'tourism', u'face', u'downturn', u'rate', u'rise']
[u'visitor', u'plead', u'guilti', u'fraud', u'charg']
[u'govt', u'investig', u'skill', u'shortag']
[u'wallabi', u'expect', u'confront', u'springbok']
[u'warwick', u'council', u'urg', u'introduc', u'differenti']
[u'westpac', u'pass', u'rate', u'rise']
[u'wimmera', u'malle', u'water', u'releas', u'dam']
[u'wolfmoth', u'lead', u'fall', u'line']
[u'worker', u'bash', u'highgat', u'hill', u'shop', u'robberi']
[u'xstrata', u'plan', u'mine', u'expans']
[u'york', u'strike', u'groin', u'injuri']
[u'isra', u'kill', u'rocket', u'attack']
[u'year', u'turtl', u'wash', u'ashor', u'ballina']
[u'abetz', u'put', u'condit', u'feder', u'fund']
[u'standard', u'morgu', u'soldier']
[u'afghanistan', u'deploy', u'increas']
[u'afghan', u'suicid', u'attack', u'kill']
[u'afghan', u'suicid', u'bomb', u'kill']
[u'alleg', u'rape', u'victim', u'accus', u'polic', u'ignor']
[u'allenbi', u'best', u'place', u'aussi', u'michigan']
[u'ambul', u'head', u'commit', u'resolv', u'conflict']
[u'analyst', u'say', u'wool', u'market', u'perform']
[u'anglican', u'bishop', u'host', u'islam', u'workshop']
[u'announc', u'rate', u'rise']
[u'chairman', u'step', u'asid']
[u'author', u'monitor', u'archer', u'point', u'croc']
[u'beatti', u'wont', u'rule', u'earli', u'poll']
[u'beazley', u'promis', u'world', u'indigen', u'health']
[u'billiton', u'put', u'youth', u'art']
[u'blair', u'put', u'holiday', u'hold', u'resolut']
[u'bodi', u'custodi', u'battl', u'continu']
[u'brisban', u'trial', u'week', u'recycl', u'pick']
[u'break', u'hill', u'racecours', u'get', u'facelift']
[u'broom', u'properti', u'market', u'unaffect', u'rate', u'hike']
[u'bunburi', u'face', u'drug', u'charg']
[u'bushfir', u'game', u'breath', u'life', u'volunt']
[u'cairn', u'charg', u'indec', u'assault', u'girl']
[u'call', u'mules', u'continu', u'despit', u'spray']
[u'campbel', u'defend', u'wind', u'farm', u'review']
[u'campbel', u'reconsid', u'wind', u'farm']
[u'canowindra', u'guilti', u'offenc']
[u'childcar', u'centr', u'fin', u'boy', u'escap']
[u'citrus', u'grower', u'frost', u'assist']
[u'civic', u'nexus', u'take', u'station', u'redevelop']
[u'clean', u'myer', u'creek', u'sewag', u'spill', u'complet']
[u'cloncurri', u'muster', u'kick']
[u'closer']
[u'closer']
[u'closer']
[u'conlon', u'defend', u'taxi', u'driver']
[u'corbel', u'push', u'airport', u'develop', u'scrutini']
[u'coron', u'urg', u'miss', u'person', u'unit', u'revamp']
[u'council', u'hop', u'wind', u'farm', u'court']
[u'council', u'wont', u'respons', u'reserv']
[u'court', u'judg', u'home']
[u'cowboy', u'pack', u'ask', u'dog']
[u'crowd', u'flag', u'help', u'stab']
[u'csiro', u'shut', u'gambier', u'offic']
[u'sign', u'breach', u'law', u'academ']
[u'date', u'amundsen', u'committ']
[u'david', u'stay', u'spur', u'season']
[u'desert', u'festiv', u'promis', u'cultur', u'oasi']
[u'snap', u'muirhead', u'site']
[u'disabl', u'boy', u'abus', u'jail']
[u'disconnect', u'land', u'feet']
[u'docker', u'hawk', u'your', u'tassi', u'anymor']
[u'doctor', u'gift', u'donat', u'studi']
[u'doctor', u'drug', u'compani', u'cosi', u'studi']
[u'doctor', u'shortag', u'see', u'peopl', u'head', u'east', u'surgeri']
[u'door', u'leav', u'open', u'rate', u'rise']
[u'stand', u'embattl', u'pathologist']
[u'drought', u'threaten', u'prawn', u'industri']
[u'dubbo', u'woman', u'london', u'train', u'come', u'home']
[u'eagl', u'power', u'away', u'saint']
[u'eagl', u'saint']
[u'east', u'timor', u'command', u'say', u'need', u'combat']
[u'econom', u'trend', u'encourag', u'tree', u'chang']
[u'economist', u'forecast', u'rate', u'rise']
[u'eddi', u'hit', u'tarrant']
[u'eel', u'continu', u'surg', u'ladder']
[u'straight', u'year', u'profit', u'build', u'societi']
[u'elder', u'drug', u'traffick', u'jail']
[u'emerg', u'land', u'balloonist']
[u'engin', u'damag', u'blame', u'charter', u'plane', u'emerg']
[u'turn', u'cairn', u'trade', u'talk', u'invit']
[u'extens', u'grant', u'dump', u'site', u'investig']
[u'falconio', u'movi', u'film', u'break', u'hill']
[u'fall', u'wheat', u'crop', u'blame', u'share', u'drop']
[u'fame', u'soprano', u'schwarzkopf', u'die', u'age']
[u'farmer', u'commit', u'find', u'mules', u'altern']
[u'farmer', u'confid', u'fall']
[u'farmer', u'encourag', u'sell', u'anim', u'lupin', u'seed']
[u'farm', u'worker', u'kill', u'strike', u'near', u'syria']
[u'fear', u'hold', u'trap', u'aussi', u'lebanon']
[u'ferguson', u'break', u'silenc', u'nistelrooy', u'sale']
[u'file', u'show', u'beatti', u'blame', u'water', u'crisi', u'newman']
[u'filipino', u'worker', u'kidnap', u'nigeria']
[u'fijian', u'player', u'ban', u'follow', u'drunken', u'brawl']
[u'flight', u'cut', u'strain', u'port', u'lincoln', u'health', u'servic']
[u'head', u'indigen', u'abus', u'inquiri']
[u'carcass', u'freez']
[u'bench', u'consid', u'hillier', u'case']
[u'gaza', u'strip', u'strike', u'kill']
[u'german', u'record', u'breaker', u'spur', u'aussi', u'lenton']
[u'german', u'swimmer', u'record', u'fall']
[u'glaxo', u'poppi', u'order', u'late', u'grower']
[u'gold', u'coast', u'visit', u'mean', u'elect', u'mode', u'liber']
[u'govt', u'probe', u'report', u'anti', u'israel', u'terror', u'plot']
[u'govt', u'say', u'awar', u'malnutrit']
[u'royal', u'hobart', u'hospit', u'colleagu']
[u'greenpeac', u'urg', u'probe', u'swedish', u'nuclear']
[u'growth', u'slow', u'major', u'economi', u'say', u'oecd']
[u'gympi']
[u'hackett', u'prim', u'hobart', u'short', u'cours', u'meet']
[u'hard', u'choic', u'face', u'launceston']
[u'hewitt', u'advanc', u'washington', u'quarter']
[u'hezbollah', u'leader', u'threaten', u'attack', u'aviv']
[u'hezbollah', u'leader', u'threaten', u'aviv', u'attack']
[u'hooligan', u'blame', u'late', u'night', u'brawl', u'sheedi']
[u'balloon', u'forc', u'land']
[u'hume', u'highway', u'claim', u'life']
[u'husband', u'stand', u'trial', u'year', u'murder']
[u'year', u'webber']
[u'indian', u'scam', u'target', u'airlin', u'worker']
[u'indigen', u'child', u'abus', u'inquiri', u'boss', u'quit']
[u'indigen', u'communiti', u'join', u'rugbi', u'competit']
[u'indigen', u'leader', u'seek', u'input', u'glasshous']
[u'indonesia', u'probe', u'bomb', u'plot', u'claim']
[u'industri', u'expect', u'turn', u'albani', u'boom', u'town']
[u'inflat', u'strength', u'unexpect']
[u'inflat', u'stronger', u'expect']
[u'influenti', u'rocker', u'arthur', u'die', u'memphi']
[u'investor', u'seek', u'biloela', u'ethanol', u'refineri']
[u'israel', u'attack', u'milit', u'target', u'gaza']
[u'israel', u'suffer', u'heavi', u'loss']
[u'jakarta', u'host', u'asian', u'final']
[u'judg', u'order', u'releas', u'korp', u'video']
[u'kilkivan', u'water', u'deem', u'unsaf']
[u'lebanon', u'strike', u'convoy']
[u'leeuwin', u'chang', u'young', u'live']
[u'lightn', u'strike', u'damag', u'cronulla', u'unit']
[u'llewellyn', u'welcom', u'task', u'forc', u'fund']
[u'loxton', u'olympian', u'honour', u'street', u'name']
[u'ethanol', u'mandatori', u'hockey', u'say']
[u'extradit', u'alleg', u'abduct']
[u'mayor', u'draft', u'capit', u'citi', u'polici']
[u'east', u'casualti', u'increas']
[u'mini', u'mart', u'liquor', u'licenc', u'suspend', u'breach']
[u'mine', u'compani', u'look', u'minimis', u'environment']
[u'minist', u'hint', u'shark', u'fish']
[u'minist', u'move', u'help', u'boost', u'primari', u'school']
[u'australian', u'evacu', u'lebanon']
[u'morgu', u'decis', u'blame', u'kovco', u'bungl', u'inquiri']
[u'moroney', u'sack', u'disgrac', u'polic', u'opposit']
[u'mount', u'gambier', u'arsonist', u'loos', u'appeal']
[u'muchea', u'servic']
[u'murali', u'baulk', u'south', u'africa', u'second', u'test']
[u'pass', u'rat', u'rise']
[u'narangba', u'contamin', u'cover', u'alleg']
[u'narangba', u'test', u'massiv', u'level', u'harm']
[u'nash', u'back', u'council', u'ethanol']
[u'neill', u'tip', u'strong', u'aussi', u'team', u'bahrain']
[u'nelson', u'quiet', u'fighter', u'plan']
[u'nelson', u'reiter', u'commit', u'iraq']
[u'charg', u'polic', u'raid']
[u'limit', u'money', u'hungri', u'sharapova']
[u'northern', u'expressway', u'budget', u'blow', u'confirm']
[u'northern', u'isra', u'flee', u'hezbollah', u'rocket']
[u'weather', u'worri', u'gregan']
[u'turn', u'wish', u'bronco']
[u'offic', u'assist', u'risdon']
[u'opposit', u'seek', u'answer', u'sack']
[u'palmer', u'step', u'indigen', u'inquiri']
[u'oper', u'welcom', u'anti', u'siphon', u'review']
[u'perkin', u'question', u'thorp', u'commit']
[u'phelp', u'beat', u'world', u'record', u'holder', u'crocker']
[u'pig', u'target', u'save', u'turtl']
[u'polic', u'ask', u'investig', u'public', u'servic']
[u'polic', u'vehicl', u'alleg', u'involv']
[u'polic', u'releas', u'descript', u'gladston', u'attack']
[u'polic', u'seek', u'attempt', u'abduct']
[u'polic', u'stress', u'caution', u'need', u'road']
[u'poor', u'season', u'affect', u'transport', u'compani']
[u'poppi', u'grower', u'ask', u'boost', u'product']
[u'port', u'wakefield', u'move', u'sydney']
[u'possum', u'caus', u'widespread', u'power']
[u'punter', u'flock', u'outback', u'race']
[u'health', u'defend', u'forens', u'backlog']
[u'raikkonen', u'fastest', u'hungari', u'practic']
[u'ramo', u'horta', u'quiz', u'death', u'squad', u'probe']
[u'rbas', u'easier', u'howard']
[u'rbas', u'outlook', u'weigh', u'market']
[u'launch', u'children', u'appeal']
[u'redman', u'push', u'local', u'agenda', u'state', u'meet']
[u'resid', u'face', u'higher', u'rubbish', u'cost', u'plan', u'burn']
[u'resolv', u'land', u'disput', u'hezbollah', u'siniora']
[u'ronaldo', u'stick', u'unit']
[u'rural', u'busi', u'help', u'bank', u'boss']
[u'saint', u'plenti', u'play', u'eagl']
[u'school', u'girl', u'test', u'cruis', u'termin', u'brisban']
[u'scientist', u'tougher', u'fish', u'theft', u'law']
[u'scrap', u'health', u'servic', u'help', u'communiti']
[u'secur', u'guard', u'acquit', u'murder']
[u'secur', u'guard', u'guilti']
[u'signific', u'diamond', u'prompt', u'mine', u'hop']
[u'marin', u'face', u'iraqi', u'assault', u'charg']
[u'sixth', u'hospit', u'clinic', u'open']
[u'snowi', u'river', u'pollut', u'investig']
[u'solut', u'seek', u'cooma', u'traffic', u'issu']
[u'south', u'coast', u'greater']
[u'swift', u'roll']
[u'farmer', u'fight', u'timber', u'plantat']
[u'teacher', u'court', u'abus', u'charg']
[u'telecom', u'blame', u'aapt', u'loss']
[u'terror', u'suspect', u'request', u'group', u'prayer']
[u'terrorist', u'suspect', u'lose', u'high', u'court', u'hear']
[u'thorp', u'mother', u'jump', u'defenc']
[u'thousand', u'flee', u'lankan', u'fight']
[u'kill', u'raid', u'lebanon', u'polic']
[u'tiger', u'veteran', u'stafford', u'retir']
[u'tomato', u'grower', u'profit', u'quarantin']
[u'toyn', u'stay', u'polit']
[u'trial', u'find', u'effect', u'breast', u'cancer', u'drug']
[u'truck', u'driver', u'releas', u'question']
[u'trucki', u'question', u'fatal']
[u'tunnel', u'oper', u'take', u'swipe', u'iemma']
[u'tuvalu', u'vote', u'cabinet']
[u'typhoon', u'prapiroon', u'make', u'landfal', u'china']
[u'ullrich', u'spend', u'thousand', u'drug', u'claim', u'expert']
[u'command', u'warn', u'iraq', u'civil', u'risk']
[u'general', u'warn', u'iraq', u'precipic']
[u'communiti', u'lobbi', u'feder', u'firefight']
[u'victoria', u'get', u'high', u'speed', u'region', u'train', u'servic']
[u'victorian', u'polic', u'review', u'case']
[u'vidmar', u'resum', u'play', u'marin']
[u'violenc', u'threat', u'pipelin', u'develop']
[u'volunt', u'work', u'save', u'ladi', u'nelson']
[u'liber', u'preselect', u'challeng', u'mount']
[u'revamp', u'apprentic', u'train']
[u'whale', u'trail', u'rope', u'buoy']
[u'wild', u'martin', u'odd', u'abus', u'hear']
[u'william', u'relax', u'tredrea', u'decis']
[u'woyli', u'declin', u'prompt', u'investig']
[u'yuendumu', u'sport', u'weekend', u'kick']
[u'kill', u'northern', u'china', u'coal', u'accid']
[u'abbott', u'confus', u'stem', u'cell', u'research', u'liber']
[u'urg', u'patienc', u'census', u'lodgement']
[u'adelaid', u'unbeaten', u'knight']
[u'adventur', u'coupl', u'make', u'trek', u'chariti']
[u'advoc', u'welcom', u'nation', u'support']
[u'agenc', u'urg', u'push', u'ceas']
[u'organis', u'pressur', u'lebanon', u'crisi']
[u'alleg', u'prison', u'escap', u'arrest', u'sydney']
[u'allenbi', u'content', u'michigan']
[u'allsopp', u'give', u'melbourn', u'late', u'victori']
[u'alonso', u'titl', u'hop', u'suffer', u'major', u'blow']
[u'anti', u'smoke', u'group', u'disappoint', u'compani', u'fund']
[u'atapattu', u'return', u'seri']
[u'aussi', u'shot', u'ash', u'build']
[u'aussi', u'wright', u'share', u'british', u'open']
[u'beatti', u'urg', u'focus', u'water', u'crisi', u'solut']
[u'blue', u'break', u'drought', u'demon']
[u'blue', u'strong', u'demon']
[u'break', u'end', u'maguir', u'season']
[u'brown', u'slam', u'flanneri', u'nuclear', u'power', u'suggest']
[u'bulldog', u'cruis', u'home', u'tiger']
[u'crash', u'accus', u'withdraw', u'guilti', u'plea', u'retrial']
[u'castro', u'recov', u'satisfactorili', u'cuban', u'health']
[u'child', u'refuge', u'risk', u'propos', u'migrat']
[u'church', u'apologis', u'woman', u'say', u'hollingworth']
[u'classi', u'bulldog', u'embarrass', u'cowboy']
[u'clement', u'stun', u'hewitt', u'reach', u'semi', u'final']
[u'clement', u'stun', u'hewitt', u'reach', u'washington', u'semi']
[u'closer']
[u'closer']
[u'investig', u'polic', u'handl', u'break']
[u'costa', u'call', u'plan', u'stop', u'rate']
[u'council', u'childcar', u'fund', u'unfair']
[u'crew', u'search', u'miss', u'region']
[u'crow', u'surviv', u'magpi', u'scare']
[u'debnam', u'pledg', u'disabl', u'fund', u'boost']
[u'doctor', u'demand', u'role', u'plan', u'hospit', u'budget']
[u'electron', u'chang', u'suit', u'mood', u'viewer']
[u'englishwoman', u'trek', u'chariti']
[u'father', u'refus', u'bail', u'alleg', u'abduct']
[u'govt', u'question', u'road', u'project', u'cost', u'blow']
[u'foley', u'unawar', u'plan', u'close', u'armi', u'base']
[u'frenchman', u'display', u'world', u'longest', u'poem']
[u'gaza', u'hardship', u'forget', u'say']
[u'gibson', u'bring', u'veteran', u'defenc', u'lawyer', u'amid', u'drink']
[u'govt', u'urg', u'close', u'school', u'sit']
[u'blast', u'medicar', u'approv', u'tape']
[u'green', u'make', u'appear', u'stand']
[u'green', u'secular', u'altern', u'religion']
[u'group', u'vow', u'attack', u'isra', u'target']
[u'hackett', u'return', u'shoulder', u'surgeri']
[u'heavi', u'bombard', u'report', u'south', u'lebanon']
[u'helen', u'caldicott', u'criticis', u'flanneri']
[u'hezbollah', u'repel', u'isra', u'commando']
[u'hezbollah', u'rocket', u'israel']
[u'hezbollah', u'rocket', u'strike', u'israel']
[u'hick', u'deserv', u'award', u'stanhop']
[u'hickss', u'nomin', u'politicis', u'father', u'year']
[u'hopoat', u'win', u'second', u'fight']
[u'indigen', u'educ', u'train', u'theme', u'garma']
[u'injuri', u'worsen', u'saint', u'woe']
[u'iran', u'ban', u'nobel', u'laureat', u'ebadi', u'right', u'group']
[u'iraq', u'shiit', u'hold', u'huge', u'hezbollah', u'ralli']
[u'isra', u'raid', u'continu', u'lebanon']
[u'isra', u'raid', u'kill', u'civilian', u'lebanon']
[u'isra', u'strike', u'kill', u'civilian']
[u'isra', u'strike', u'kill', u'farm', u'labour']
[u'isra', u'bomb', u'halt', u'convoy']
[u'isra', u'plan', u'continu', u'bomb', u'lebanon']
[u'israel', u'kill', u'palestinian', u'gaza', u'medic']
[u'israel', u'raid', u'near', u'tyre', u'hezbollah', u'fire', u'rocket']
[u'israel', u'renew', u'raid', u'lebanon', u'talk', u'continu']
[u'specul', u'worri', u'public', u'servant']
[u'landiss', u'sampl', u'test', u'posit']
[u'lord', u'mayor', u'push', u'nation', u'polici', u'urban']
[u'dead', u'hous']
[u'motorcyclist', u'hike', u'encourag']
[u'nation', u'miss', u'person', u'databas']
[u'urg', u'rate', u'rise', u'prevent', u'plan']
[u'minist', u'concern', u'attack', u'african']
[u'ogradi', u'extend', u'deal']
[u'oneil', u'appoint', u'villa', u'manag']
[u'pietersen', u'defend', u'decis', u'walk']
[u'polic', u'arrest', u'peopl', u'serial', u'kill']
[u'polic', u'wit', u'rock', u'hit', u'taxi']
[u'polic', u'investig', u'stab', u'nightclub', u'bouncer']
[u'polic', u'seek', u'info', u'queen', u'mall', u'stab']
[u'polic', u'union', u'dismiss', u'sexual', u'harass', u'inquiri']
[u'preselect', u'battl', u'domin', u'labor']
[u'govt', u'indigen', u'steal', u'wag']
[u'raikkonen', u'take', u'pole', u'hungari']
[u'report', u'find', u'child', u'refuge', u'risk']
[u'report', u'find', u'council', u'unsound']
[u'ruddock', u'criticis', u'father', u'year', u'nomin']
[u'russia', u'angri', u'sanction', u'iran', u'deal']
[u'schu', u'punish', u'briator', u'alleg', u'dark', u'practic']
[u'shark', u'lose', u'streak', u'continu']
[u'springbok', u'hop', u'nation']
[u'lanka', u'battl', u'rebel', u'displac', u'flee']
[u'lanka', u'rebel', u'eastern', u'offens', u'halt']
[u'stanhop', u'accus', u'politicis', u'father', u'award']
[u'state', u'push', u'control', u'airport', u'plan']
[u'steam', u'train', u'oper', u'welcom', u'upgrad', u'plan']
[u'steyn', u'take', u'lanka', u'battl']
[u'swan', u'sneak']
[u'central', u'station', u'celebr', u'birthday']
[u'labor', u'oppos', u'beazley', u'uranium', u'plan']
[u'tasmania', u'watchdog']
[u'terri', u'hick', u'deserv', u'father', u'award', u'nomin']
[u'tobacco', u'compani', u'help', u'provid', u'smoke', u'area']
[u'trujillo', u'sever', u'packag', u'question']
[u'arrest', u'phoenix', u'sniper', u'attack']
[u'typhoon', u'death', u'toll', u'rise', u'china']
[u'typhoon', u'kill', u'china']
[u'ugandan', u'rebel', u'declar', u'ceas']
[u'ukrain', u'parliament', u'approv', u'yanukovich']
[u'ceas', u'resolut', u'close']
[u'firm', u'give', u'telstra', u'boss', u'handshak']
[u'market', u'dip', u'ahead', u'meet']
[u'govt', u'make', u'offer', u'financ', u'scandal', u'victim']
[u'wallabi', u'pull', u'late', u'victori']
[u'wallabi', u'steal', u'victori', u'springbok']
[u'webster', u'bag', u'storm', u'thrash', u'tiger']
[u'william', u'webber', u'leav']
[u'woomera', u'demount', u'hous', u'peopl', u'alic']
[u'york', u'rule', u'glori', u'clash']
[u'zimbabw', u'seal', u'seri', u'bangladesh']
[u'adventur', u'cross', u'australia', u'horseback']
[u'allenbi', u'stay', u'touch', u'tiger']
[u'urg', u'govt', u'address', u'breast', u'screen', u'servic']
[u'ankl', u'injuri', u'sidelin', u'carrick']
[u'artwork', u'unveil', u'mark', u'hiroshima', u'bomb']
[u'aussi', u'brown', u'win', u'tour', u'stage']
[u'bartlett', u'unawar', u'parti', u'unrest', u'ralph']
[u'beatti', u'flag', u'state', u'emerg', u'south', u'east']
[u'beazley', u'call', u'mini', u'budget']
[u'beazley', u'determin', u'seat']
[u'beazley', u'indigen', u'health', u'goal', u'unrealist']
[u'bodi', u'darwin', u'mangrov']
[u'brosqu', u'doubl', u'sink', u'glori']
[u'bulldog', u'crush', u'cowboy']
[u'zone', u'declar', u'rock', u'attack']
[u'canberra', u'extend', u'brisban', u'slump']
[u'canberra', u'motorsport', u'event', u'limbo', u'major']
[u'cat', u'final', u'hop', u'aliv']
[u'census', u'worker', u'ensur', u'homeless', u'popul']
[u'chair', u'propos', u'parliamentari', u'watchdog']
[u'civilian', u'kill', u'isra', u'raid']
[u'clement', u'reach', u'washington', u'final']
[u'clijster', u'sharapova', u'diego', u'showdown']
[u'closer']
[u'closer']
[u'cole', u'myer', u'sharehold', u'brace', u'restructur']
[u'compani', u'defend', u'cost', u'overrun', u'elwick', u'racecours']
[u'conserv', u'planner', u'make', u'perth', u'stagnat']
[u'costello', u'commit', u'win', u'elect', u'say', u'howard']
[u'council', u'want', u'hour', u'station', u'amid', u'alleg', u'polic']
[u'counterfeit', u'oscar', u'withdraw', u'sale']
[u'curfew', u'goulburn', u'polic', u'academi']
[u'death', u'toll', u'climb', u'bridg', u'collaps']
[u'disabl', u'advoc', u'group', u'urg', u'greater', u'sensit']
[u'docker', u'coast', u'hawk']
[u'wallabi', u'black']
[u'drink', u'drive', u'treatment', u'program', u'aim', u'improv']
[u'drug', u'trial', u'victim', u'earli', u'sign', u'cancer']
[u'egypt', u'group', u'leader', u'join', u'qaeda', u'zawahri', u'video']
[u'elig', u'farmer', u'drought', u'support', u'extens']
[u'environ', u'centr', u'criticis', u'nuclear']
[u'petrol', u'price', u'go', u'howard']
[u'england', u'manag', u'robson', u'hospitalis']
[u'face', u'life', u'threaten', u'rugbi', u'refere']
[u'father', u'condit', u'accident']
[u'injur', u'crash', u'coast']
[u'flash', u'flood', u'ravag', u'southern', u'china', u'typhoon']
[u'folk', u'prais', u'near', u'perfect', u'dog']
[u'footbal', u'die', u'rugbi', u'leagu', u'match']
[u'franc', u'agre', u'resolut', u'lebanon']
[u'frogwatch', u'uncov', u'cane', u'toad', u'infest']
[u'gene', u'silenc', u'ryegrass', u'cut', u'fever']
[u'gibb', u'steer', u'south', u'africa', u'healthi', u'lead']
[u'govt', u'close', u'finalis', u'indonesia', u'prison']
[u'govt', u'urg', u'lebanon']
[u'hackett', u'back', u'thorp', u'claim']
[u'hand', u'water', u'mayor', u'tell', u'premier']
[u'hansen', u'improv', u'breast', u'stroke']
[u'health', u'minist', u'consid', u'addit', u'alcohol']
[u'health', u'propos', u'curb', u'bing', u'drink']
[u'hezbollah', u'rocket', u'strike', u'kill', u'isra', u'soldier']
[u'hiroshima', u'rememb', u'atom', u'attack']
[u'hong', u'kong', u'pass', u'controversi', u'surveil']
[u'howard', u'unmov', u'migrat']
[u'tour', u'champion', u'say', u'pereiro']
[u'india', u'expel', u'pakistani', u'diplomat']
[u'indian', u'ban', u'pressur', u'cola', u'giant']
[u'indonesian', u'prison', u'exchang', u'deal', u'finalis']
[u'indonesia', u'prison', u'exchang', u'deal', u'close', u'ruddock']
[u'infant', u'childcar', u'place', u'lack', u'studi', u'find']
[u'iran', u'dismiss', u'nuclear', u'deadlin']
[u'iraqi', u'murder', u'rape', u'case', u'legal', u'hear']
[u'israel', u'claim', u'captur', u'soldier', u'abductor']
[u'israel', u'continu', u'bombard', u'lebanon']
[u'israel', u'detain', u'palestinian', u'parliamentari', u'speaker']
[u'israel', u'hezbollah', u'conflict', u'rag', u'secur']
[u'isra', u'hezbollah', u'clash', u'continu']
[u'israel', u'move', u'isol', u'lebanes', u'region']
[u'knight']
[u'knight', u'strong', u'rooster']
[u'ladi', u'luck', u'smile', u'crow']
[u'landi', u'vow', u'clear']
[u'lebanes', u'hospit', u'fuel']
[u'lebanon', u'conflict', u'domin', u'hiroshima', u'anniversari']
[u'die', u'stab', u'attack', u'bondi', u'beach']
[u'critic', u'condit', u'bondi', u'bash']
[u'injur', u'park', u'disput']
[u'stab', u'death', u'sydney', u'brawl']
[u'steal', u'escap', u'polic', u'chase']
[u'mexico', u'order', u'partial', u'recount', u'presidenti', u'vote']
[u'mideast', u'conflict', u'continu']
[u'mideast', u'violenc', u'continu']
[u'miss', u'safe']
[u'miss', u'teen', u'day']
[u'privat', u'hospit', u'treat', u'patient', u'home']
[u'murray', u'meet', u'clement', u'washington', u'final']
[u'nation', u'parti', u'competit', u'welcom', u'say', u'omodei']
[u'newman', u'say', u'beatti', u'water', u'debat']
[u'research', u'identifi', u'diabet', u'kidney', u'diseas']
[u'polic', u'academi', u'face', u'curfew']
[u'older', u'queensland', u'water', u'restrict']
[u'pair', u'arrest', u'policeman', u'injur']
[u'patton', u'murder', u'accus', u'norfolk']
[u'pedestrian', u'kill', u'brisban', u'northsid']
[u'plane', u'make', u'emerg', u'land', u'north']
[u'plan', u'tram', u'extens', u'public', u'comment']
[u'downplay', u'stem', u'cell', u'conscienc', u'vote']
[u'flag', u'petrol', u'price']
[u'face', u'backbench', u'anger', u'petrol', u'price']
[u'polic', u'miss', u'elder', u'woman']
[u'polic', u'investig', u'dead', u'bondi', u'stab']
[u'polic', u'reopen', u'leahi', u'arnold', u'murder', u'case']
[u'protest', u'hiroshima', u'anniversari']
[u'rabbitoh', u'straight']
[u'rabbitoh', u'roll']
[u'raider', u'punish', u'sloppi', u'bronco']
[u'roo', u'continu', u'win', u'form']
[u'search', u'intensifi', u'miss', u'outback']
[u'see', u'shoe', u'offer', u'help', u'blind']
[u'somali', u'leader', u'agre', u'rift', u'crisi', u'talk']
[u'steinhauer', u'eye', u'open', u'titl']
[u'storm', u'continu', u'surg']
[u'tamil', u'tiger', u'armi', u'trade', u'massacr', u'charg']
[u'task', u'forc', u'isra', u'murder']
[u'labor', u'resolv', u'worker', u'comp', u'divis']
[u'orient', u'achiev', u'result', u'world']
[u'teen', u'kill', u'crash']
[u'thousand', u'flee', u'lankan', u'fight']
[u'thousand', u'ring', u'tune', u'brisban']
[u'consid', u'lebanon', u'resolut']
[u'consid', u'resolut', u'lebanon']
[u'underwat', u'relay', u'team', u'cross', u'english', u'channel']
[u'discuss', u'mideast', u'ceasefir', u'draft']
[u'secur', u'council', u'mull', u'draft', u'resolut']
[u'govt', u'high', u'bacteria', u'level']
[u'wallabi', u'celebr', u'ugli']
[u'nation', u'leader', u'wont', u'pursu', u'union']
[u'warrior', u'edg', u'shark']
[u'watchdog', u'reject', u'polic', u'union', u'concern']
[u'west', u'coast', u'unveil', u'anniversari', u'team']
[u'youni', u'yousuf', u'defi', u'england']
[u'year', u'jail', u'shoot', u'death']
[u'protest', u'plan', u'sell', u'reserv', u'armi', u'depot']
[u'aquacultur', u'seafood', u'firm']
[u'lose', u'payment', u'centrelink', u'crackdown']
[u'abalon', u'virus', u'quarantin', u'zone', u'like', u'extend']
[u'aborigin', u'histori', u'controversi', u'reynold']
[u'accc', u'sign', u'merger', u'supervis', u'protocol']
[u'secur', u'deal', u'bushmast', u'vehicl', u'suppli']
[u'agenc', u'probe', u'lankan', u'massacr']
[u'crisi', u'worsen', u'lebanon']
[u'ancient', u'dagger', u'tomb']
[u'antarct', u'ship', u'contract', u'open']
[u'architect', u'urg', u'offic', u'demolit']
[u'aussi', u'team', u'beij', u'olymp']
[u'aussi', u'win', u'amateur', u'titl', u'michigan']
[u'australian', u'arrest', u'indonesia', u'alleg', u'child']
[u'australian', u'injur', u'iraq', u'bomb', u'blast']
[u'australian', u'surfer', u'die', u'bali']
[u'invit', u'guest', u'brawl']
[u'bayliss', u'stretch', u'superbik', u'lead']
[u'beatti', u'take', u'water', u'portfolio']
[u'bega', u'council', u'anxious', u'await', u'independ', u'review']
[u'boy', u'champion', u'leagu', u'entranc']
[u'bondi', u'murder', u'accus', u'expect', u'seek', u'bail']
[u'bowel', u'cancer', u'test', u'kit', u'mail']
[u'brewarrina', u'shire', u'council', u'await', u'decis']
[u'bronco', u'guilti', u'tri', u'hard']
[u'bronco', u'tri', u'hard']
[u'broom', u'famili', u'hop', u'marrow', u'donor']
[u'brown', u'rival', u'lion', u'captainci']
[u'bulldog', u'want', u'extra', u'player', u'deal', u'heat']
[u'bushfir', u'suspect', u'refus', u'inquest']
[u'canberra', u'cab', u'defend', u'phone']
[u'canegrow', u'profit', u'ethanol']
[u'castro', u'regain', u'strength', u'chavez']
[u'celebr', u'mark', u'anniversari', u'mount']
[u'census', u'form', u'deliveri', u'continu']
[u'centenari', u'celebr', u'sydney', u'central']
[u'chariot', u'sack', u'near', u'staff']
[u'china', u'comprehens', u'downer']
[u'china', u'storm', u'toll', u'rise']
[u'claim', u'gogh', u'fake']
[u'clark', u'welcom', u'govern', u'action', u'water', u'shortag']
[u'closer', u'news']
[u'closer']
[u'club', u'owner', u'charg', u'stab', u'death']
[u'coalit', u'rule', u'cut', u'petrol', u'excis']
[u'code', u'privat', u'log', u'impact', u'forest']
[u'comalco', u'port', u'get', u'upgrad']
[u'communiti', u'group', u'flag', u'increas', u'homeless', u'number']
[u'conlon', u'await', u'expressway', u'cost', u'explan']
[u'coonan', u'question', u'telstra', u'broadband', u'decis']
[u'countri', u'leagu', u'probe', u'point', u'slaughter']
[u'crash', u'coron', u'urg', u'communic', u'improv']
[u'cultur', u'exchang', u'festiv']
[u'digger', u'dealer', u'confer', u'kick']
[u'doohan', u'charg', u'nightclub', u'assault']
[u'draft', u'water', u'plan', u'detail', u'trade', u'scheme']
[u'drought', u'extens', u'dairi', u'farmer']
[u'dunedin', u'station', u'build']
[u'english', u'rise', u'conquer', u'outback']
[u'farmer', u'want', u'govt', u'rethink', u'fuel']
[u'farmer', u'welcom', u'campaign', u'promot', u'benefit']
[u'footrot', u'erad', u'program', u'prove', u'unsuccess']
[u'priest', u'plead', u'guilti', u'child', u'abus']
[u'nation', u'presid', u'die']
[u'charg', u'ecstasi', u'haul']
[u'fraud', u'accus', u'avoid', u'jail', u'term']
[u'fremantl', u'stab', u'catch', u'video']
[u'fuel', u'cost', u'domin', u'coalit', u'meet']
[u'futur', u'vision', u'canberra']
[u'fyff', u'fanci', u'chanc', u'presid']
[u'geneticist', u'decri', u'gene', u'discoveri', u'emphasi']
[u'geraldton', u'retir', u'villag']
[u'gerroa', u'youngster', u'crown', u'king', u'grom']
[u'gerroa', u'youngster', u'win', u'french', u'surf', u'contest']
[u'ghan', u'ban', u'smoke', u'board']
[u'govt', u'criticis', u'plan', u'tax', u'levi']
[u'grafton', u'region', u'galleri', u'acquir', u'boyd', u'print']
[u'green', u'urg', u'probe', u'complaint']
[u'group', u'want', u'review', u'plan', u'hazard', u'wast']
[u'heal', u'centr', u'child', u'abus', u'victim']
[u'hezbollah', u'rocket', u'attack', u'kill']
[u'high', u'summer', u'temperatur', u'predict']
[u'hih', u'fodera', u'face', u'committ', u'hear']
[u'howard', u'discuss', u'petrol', u'energi']
[u'humanitarian', u'crisi', u'worsen', u'lebanon']
[u'illus', u'crack', u'sydney', u'hobart']
[u'improv', u'squash', u'champ', u'move', u'england']
[u'india', u'warn', u'terrorist', u'attack']
[u'indigen', u'health', u'facil', u'open', u'busi']
[u'indigen', u'health', u'improv', u'report']
[u'injur', u'contractor', u'evacu', u'iraq']
[u'inquiri', u'examin', u'public', u'view', u'propos']
[u'investig', u'aim', u'improv', u'bank', u'servic']
[u'iran', u'expand', u'nuclear', u'program']
[u'iraqi', u'forc', u'clash', u'sadr', u'militia']
[u'isra', u'raid', u'lebanes', u'villag', u'kill']
[u'isra', u'strike', u'kill', u'lebanon', u'delay', u'vote']
[u'israelmon', u'open']
[u'israel', u'respond', u'hezbollah', u'attack']
[u'juri', u'hear', u'hostel', u'emerg']
[u'labor', u'condemn', u'tunnel', u'cost', u'blow']
[u'labour', u'market', u'growth', u'slow']
[u'lang', u'fear', u'final', u'reach']
[u'larg', u'fish', u'kill', u'report', u'adelaid', u'hill', u'farm']
[u'lebanon', u'crisi', u'worsen']
[u'liber', u'nation', u'prepar', u'state', u'elect']
[u'llewellyn', u'name', u'act', u'premier']
[u'lord', u'mayor', u'talk', u'brisban', u'safeti']
[u'manag', u'jeopardis', u'fred', u'pass']
[u'arrest', u'fatal', u'bondi', u'stab']
[u'charg', u'attack']
[u'jail', u'cricket', u'murder']
[u'plead', u'guilti', u'social', u'secur', u'fraud']
[u'refus', u'bail', u'alleg', u'abduct', u'children']
[u'rescu', u'cliff', u'fall']
[u'marin', u'youngster', u'add', u'socceroo', u'train', u'camp']
[u'market', u'drift', u'higher', u'amid', u'rat', u'specul']
[u'mayoralti', u'secur', u'despit', u'clark', u'back', u'power']
[u'mcgrath', u'get', u'champ', u'trophi']
[u'mechan', u'unlik', u'blame', u'bathurst', u'plane']
[u'meet', u'aim', u'resolv', u'holbrook', u'council', u'issu']
[u'mental', u'detaine', u'return', u'baxter']
[u'indigen', u'health', u'abbott']
[u'waver', u'smelter', u'support']
[u'mundubberra', u'mandarin', u'head', u'china']
[u'murder', u'committ', u'begin', u'norfolk']
[u'nation', u'challeng', u'legal', u'bridg', u'decis']
[u'councillor', u'look', u'forward', u'task', u'ahead']
[u'croc', u'arriv', u'ting', u'sad']
[u'law', u'eas', u'neighbourhood', u'row']
[u'restrict', u'curb', u'spread', u'electr']
[u'labor', u'faction', u'criticis']
[u'wild', u'control', u'increas', u'coordin']
[u'price', u'drop', u'horizon', u'economist']
[u'quick', u'soultion', u'brisban', u'homeless']
[u'north', u'coast', u'council', u'relat', u'good', u'financi']
[u'nurs', u'say', u'hospit', u'chang', u'hurt', u'patient']
[u'opposit', u'seek', u'nightclub', u'secur', u'crackdown']
[u'opposit', u'urg', u'action', u'assault']
[u'parti', u'chang', u'renew', u'elect', u'specul']
[u'patient', u'transport', u'offic', u'close', u'public']
[u'patton', u'parent', u'face', u'alleg', u'killer']
[u'pavlich', u'hop', u'docker', u'continu', u'fine', u'form']
[u'philippin', u'volcano', u'erupt', u'immin']
[u'phillip', u'welcom', u'inclus', u'redback', u'trio']
[u'pie', u'hope', u'youngster', u'play', u'season']
[u'log', u'industri', u'corrupt', u'report']
[u'polic', u'investig', u'pedestrian', u'death']
[u'policeman', u'fin', u'club', u'disput']
[u'polic', u'rais', u'unpreced', u'complaint']
[u'polic', u'search', u'arm', u'robberi', u'suspect']
[u'polic', u'seek', u'public', u'help', u'man', u'whereabout']
[u'pollut', u'cut', u'dalgeti', u'water', u'suppli']
[u'poor', u'season', u'affect', u'lupin', u'number']
[u'port', u'focus', u'young', u'player']
[u'plater', u'warn', u'drive', u'high', u'power', u'car']
[u'prankster', u'sue', u'tsang', u'fish']
[u'project', u'seek', u'onlin', u'submiss', u'rural', u'youth']
[u'properti', u'price', u'link', u'school', u'perform']
[u'public', u'comment', u'seek', u'reduct', u'burn']
[u'cabinet', u'consid', u'water', u'plan']
[u'liber', u'roll', u'quinn']
[u'real', u'estat', u'agent', u'welcom', u'chang']
[u'record', u'attend', u'expect', u'darwin', u'carniv']
[u'redman', u'like', u'challeng', u'omodei']
[u'report', u'card', u'fail', u'student', u'gutwein']
[u'report', u'reveal', u'econom', u'benefit', u'nation', u'park']
[u'ricciuto', u'week', u'sidelin']
[u'rivercat', u'crash', u'blame', u'human', u'error']
[u'roadsid', u'bomb', u'injur', u'aust', u'contractor', u'iraq']
[u'rockhampton', u'croc', u'doubl', u'surpris']
[u'roddick', u'open', u'prepar', u'stall']
[u'roo', u'want', u'incent', u'struggl', u'club']
[u'stress', u'coral', u'studi']
[u'sack', u'worker', u'job', u'year']
[u'sale', u'golf', u'club', u'wait', u'rezon', u'decis']
[u'plan', u'tougher', u'smoke', u'rule']
[u'death', u'inquiri', u'criticis', u'prepar']
[u'death', u'rule', u'unforese', u'accid']
[u'satellit', u'imag', u'reveal', u'timber', u'type', u'land']
[u'schifcofsk', u'call', u'support', u'fan']
[u'school', u'crash', u'injur']
[u'scientist', u'call', u'farmer', u'collect', u'rabbit']
[u'season', u'lion', u'pair']
[u'seminari', u'endors', u'plan', u'cathol', u'school']
[u'senior', u'govt', u'figur', u'quit', u'polit']
[u'seven', u'letter', u'scare', u'palestinian', u'offic']
[u'seventh', u'cabbi', u'charg', u'sexual', u'offenc']
[u'sharapova', u'end', u'clijster', u'jinx']
[u'sherri', u'urg', u'support', u'labor', u'candid']
[u'skandia', u'skipper', u'win', u'court', u'battl']
[u'slater', u'face']
[u'snowi', u'hydro', u'say', u'pollut', u'environment']
[u'snowi', u'pollut', u'investig']
[u'south', u'australian', u'wheat', u'bind', u'iraq']
[u'south', u'dragon', u'coach', u'lofti', u'aspir']
[u'stanhop', u'reject', u'discrep', u'claim']
[u'studi', u'reveal', u'extent', u'worker', u'drug']
[u'suicid', u'detaine', u'visa', u'reconsid']
[u'tasmania', u'cautious', u'feder', u'fund']
[u'teen', u'disappear', u'mysteri']
[u'telstra', u'criticis', u'public', u'phone', u'plan']
[u'telstra', u'pull', u'internet', u'infrastructur']
[u'telstra', u'sale', u'possibl', u'despit', u'broadband', u'decis']
[u'telstra', u'scrap', u'broadband', u'network', u'plan']
[u'thargomindah', u'search', u'solut', u'water']
[u'thousand', u'flee', u'philippin', u'volcano']
[u'thousand', u'turn', u'bush', u'sport', u'event']
[u'aborigin', u'artist', u'attract', u'strong', u'bid']
[u'tornado', u'destroy', u'australind', u'home']
[u'train', u'base', u'tourism', u'benefit', u'high', u'petrol']
[u'tribut', u'pay', u'nation', u'presid']
[u'divis', u'delay', u'vote', u'lebanon']
[u'envoy', u'assess', u'timor', u'progress']
[u'militari', u'court', u'tell', u'soldier', u'take', u'turn', u'rape']
[u'troop', u'reinforc', u'arriv', u'baghdad']
[u'vail', u'deni', u'claim', u'bias']
[u'say', u'rail', u'infrastructur', u'need', u'urgent', u'upgrad']
[u'player', u'mass', u'docksid', u'brawl']
[u'galleri', u'defend', u'paint', u'forgeri', u'claim']
[u'hospit', u'track', u'super', u'infect']
[u'waugh', u'say', u'wife', u'recov']
[u'whale', u'carcass', u'wash', u'ashor', u'newcastl']
[u'wimmera', u'footbal', u'leagu', u'urg', u'rollout', u'polici']
[u'wine', u'industri', u'fear', u'wine', u'glut', u'affect', u'local']
[u'woman', u'drive', u'glenelg', u'jetti']
[u'wood', u'bag', u'titl']
[u'australian', u'trap', u'lebanon']
[u'year', u'jail', u'term', u'seek', u'azahari', u'associ']
[u'sheep', u'sale', u'onlin']
[u'arrest', u'latest', u'timor', u'unrest']
[u'accc', u'monitor', u'ethanol', u'blend', u'price']
[u'accus', u'patton', u'crime', u'scene']
[u'teacher', u'strike', u'disput']
[u'albani', u'polic', u'investig', u'weekend', u'burglari']
[u'black', u'line', u'woe']
[u'urg', u'action', u'rhetor', u'health', u'plan']
[u'andrew', u'reject', u'probe', u'leak', u'claim']
[u'resign', u'morn', u'swim', u'final']
[u'aramac', u'council', u'get', u'disast', u'relief', u'fund']
[u'arnold', u'confid']
[u'ausaid', u'spearhead', u'anti', u'malaria', u'program']
[u'australian', u'count']
[u'autopsi', u'reveal', u'drown']
[u'award', u'honour', u'monash', u'lectur', u'braveri']
[u'talk', u'resum', u'export', u'iraq']
[u'baghdad', u'bomb', u'attack', u'kill']
[u'bangladesh', u'captain', u'call', u'loss', u'biggest', u'debacl']
[u'bank', u'firm', u'lift', u'market']
[u'bartel', u'half']
[u'bateman', u'communiti', u'marina']
[u'beatti', u'set', u'water', u'initi', u'timelin']
[u'beazley', u'urg', u'quantifi', u'indigen', u'pledg']
[u'beef', u'price', u'predict', u'stay', u'high']
[u'bell', u'enthusiast', u'ring', u'brisban']
[u'board', u'right', u'fred', u'pass', u'stoush']
[u'bogeyman', u'happi', u'underdog']
[u'boomer', u'coach', u'take', u'swipe', u'critic']
[u'brack', u'lock', u'motogp']
[u'branson', u'reiter', u'ethanol', u'plan']
[u'bris', u'school', u'poison', u'alert']
[u'brown', u'fin', u'spray']
[u'burnett', u'catchment', u'group', u'get', u'weed', u'remov', u'fund']
[u'bushfir', u'coron', u'visit', u'locat']
[u'busi', u'lobbi', u'reject', u'watchdog', u'propos']
[u'busi', u'promot', u'group', u'increas', u'membership']
[u'incid', u'dun']
[u'campbel', u'deni', u'wind', u'farm', u'deceit', u'claim']
[u'canberra', u'caravan', u'park', u'save', u'redevelop']
[u'canberra', u'stadium', u'defend', u'cost', u'game', u'attend']
[u'cane', u'grower', u'want', u'grind', u'water', u'includ']
[u'child', u'abus', u'accus', u'declin', u'consular', u'help']
[u'church', u'hop', u'priest', u'jail', u'help', u'victim']
[u'claim', u'grain', u'compani', u'perform']
[u'closer']
[u'closerpm']
[u'coal', u'bauxit', u'shipment', u'drive', u'port', u'gladston']
[u'coastal', u'communiti', u'seek', u'info', u'retain', u'wall']
[u'communiti', u'show', u'littl', u'park', u'name']
[u'conjoin', u'twin', u'separ', u'success']
[u'copper', u'theft', u'increas', u'price', u'rise']
[u'coron', u'deliv', u'open', u'find', u'infant', u'death']
[u'cosgrov', u'featur', u'daintre']
[u'council', u'prais', u'volunt', u'australind', u'tornado']
[u'court', u'hear', u'detail', u'fodera', u'deal']
[u'crow', u'nest', u'resid', u'unhappi', u'wind', u'farm']
[u'cummin', u'play', u'promot', u'prospect']
[u'curat', u'famili', u'arrest', u'hermitag', u'museum']
[u'cyber', u'predat', u'jail', u'fin']
[u'cyber', u'predat', u'jail', u'warn', u'polic']
[u'debnam', u'polic', u'comment', u'disgrac']
[u'demon', u'youngster', u'get', u'rise', u'star']
[u'design', u'grass', u'scare', u'bird']
[u'dissid', u'stand', u'firm', u'offshor', u'process']
[u'doohan', u'fin', u'strip', u'club', u'assault']
[u'drug', u'accus', u'proceed', u'defam', u'plan']
[u'dun', u'investig', u'taxi', u'damag']
[u'educ', u'resolv', u'social', u'problem', u'group']
[u'elit', u'polic', u'rais', u'bulli', u'interfer', u'concern']
[u'emerg', u'crew', u'prais', u'crash', u'pilot']
[u'etsa', u'call', u'servic', u'improv', u'panel']
[u'expert', u'warn', u'mine', u'industri', u'sleep', u'depriv']
[u'falun', u'gong', u'banner', u'lift']
[u'farmer', u'tell', u'check', u'crop', u'stripe', u'rust']
[u'farmer', u'urg', u'continu', u'support', u'grower', u'market']
[u'fear', u'staff', u'shortag', u'impact', u'gold', u'coast']
[u'feder', u'fund', u'chlamydia', u'fight']
[u'fight', u'rag', u'lebanon', u'talk', u'drag']
[u'film', u'maker', u'avoid', u'jail', u'mutil', u'threat']
[u'fishermen', u'reel', u'marlin', u'dampier', u'classic']
[u'flegg', u'optimist', u'futur', u'springborg']
[u'flood', u'maroon', u'thousand', u'indian', u'citi']
[u'priest', u'jail', u'child', u'abus']
[u'fund', u'boost', u'program', u'increas', u'literaci']
[u'gatlin', u'lawyer', u'defenc']
[u'genet', u'databank', u'catalogu', u'resid']
[u'georgiou', u'cross', u'floor', u'asylum']
[u'googl', u'news', u'corp', u'sign', u'search', u'deal']
[u'govt', u'consid', u'petrol', u'price', u'relief']
[u'govt', u'consid', u'seat', u'belt', u'bus']
[u'govt', u'escap', u'rate', u'rise', u'poll']
[u'govt', u'expect', u'declar', u'emerg', u'water']
[u'govt', u'sell', u'telstra', u'coonan']
[u'govt', u'mull', u'plan', u'combat', u'bendigo', u'water', u'shortag']
[u'govt', u'say', u'intent', u'coastal', u'land']
[u'govt', u'urg', u'volunt', u'search']
[u'govt', u'weigh', u'option', u'say', u'coonan']
[u'grain', u'industri', u'divid', u'singl', u'desk']
[u'green', u'announc', u'comeback', u'fight']
[u'hart', u'blow', u'crow']
[u'havilah', u'encourag', u'gold', u'nugget', u'discoveri']
[u'heritag', u'list', u'stop', u'power', u'station']
[u'high', u'temp', u'dairi', u'farmer', u'hard']
[u'home', u'owner', u'prais', u'pilot', u'rescu']
[u'hous', u'shortag', u'delay', u'polic', u'offic', u'arriv']
[u'howard', u'pressur', u'rat', u'claim']
[u'howard', u'pressur', u'petrol', u'price']
[u'hundr', u'miss', u'ethiopian', u'flood']
[u'iemma', u'outlin', u'year', u'plan']
[u'indigen', u'women', u'live', u'longer']
[u'indonesia', u'powerless', u'stop', u'milit', u'travel']
[u'innisfail', u'turf', u'club', u'readi', u'banana', u'race']
[u'intellig', u'island', u'grant', u'panel', u'name']
[u'israel', u'threaten', u'wider', u'conflict', u'diplomaci', u'stall']
[u'israel', u'warn', u'lebanes', u'strike']
[u'jail', u'escap', u'return']
[u'jail', u'term', u'seek', u'bali', u'bomb', u'accus']
[u'jayawarden', u'guid', u'lanka', u'wicket']
[u'jone', u'say', u'sorri', u'terrorist', u'slur']
[u'kalgoorli', u'lack', u'gold', u'treatment', u'facil']
[u'kelli', u'urg', u'ethanol', u'support', u'protect', u'cane']
[u'labor', u'queri', u'howard', u'petrol', u'calcul']
[u'labor', u'step', u'offshor', u'process', u'opposit']
[u'lack', u'fee', u'caus', u'sheep', u'suffer', u'rspca']
[u'lebanes', u'troop', u'control', u'hezbollah', u'territori']
[u'lebanes', u'troop', u'control', u'south']
[u'lennon', u'accus', u'break', u'road', u'safeti', u'promis']
[u'liber', u'leader', u'defend', u'preselect', u'process']
[u'plead', u'guilti', u'girlfriend', u'murder']
[u'maryborough', u'independ', u'maintain', u'focus', u'mari']
[u'mayor', u'hop', u'hear', u'reinforc', u'opposit']
[u'mayor', u'agre', u'beatti', u'water', u'plan']
[u'migrat', u'agent', u'urg', u'waiver', u'long', u'term']
[u'mine', u'confer', u'chief', u'urg', u'substitut']
[u'townsvill', u'soldier', u'arriv', u'timor']
[u'australian', u'happi', u'broadband', u'speed', u'coonan']
[u'say', u'book', u'fee', u'make', u'travel', u'expens']
[u'murder', u'accus', u'admit', u'run', u'patton']
[u'murray', u'drought', u'face', u'extens', u'good', u'rain']
[u'nalbandian', u'dump', u'toronto', u'upset']
[u'nation', u'candid', u'welcom', u'mcgradi']
[u'nelson', u'pledg', u'protect', u'unstabl', u'nation']
[u'cobar', u'agre', u'purchas', u'residenti', u'land']
[u'doctor', u'eas', u'pressur', u'condobolin', u'hospit']
[u'polic', u'station', u'track', u'sculli']
[u'nurs', u'home', u'spot', u'check', u'work', u'santoro']
[u'court', u'sink', u'french', u'agent', u'rainbow', u'warrior', u'case']
[u'opposit', u'seek', u'resourc', u'countri']
[u'orica', u'seek', u'hazard', u'wast', u'export', u'licenc']
[u'pathologist', u'detail', u'patton', u'injuri']
[u'petit', u'call', u'waiver']
[u'pilot', u'coma', u'plane', u'hit', u'hous']
[u'pipelin', u'leak', u'push', u'price', u'higher']
[u'plane', u'crash', u'brisban', u'hous']
[u'plane', u'crash', u'brisban', u'hous']
[u'playground', u'poison', u'identifi', u'ratsak']
[u'play', u'log', u'industri', u'alleg']
[u'polar', u'bear', u'separ']
[u'polic', u'offic', u'fin', u'goulburn', u'club', u'incid']
[u'possibl', u'derail', u'caus', u'identifi']
[u'privat', u'hospit', u'closer', u'hour', u'clinic']
[u'progress', u'indigen', u'health']
[u'qana', u'strike', u'fit', u'conflict', u'pattern', u'annan']
[u'qanta', u'defend', u'self', u'check', u'delay']
[u'qanta', u'extend', u'dixon', u'contract']
[u'drop', u'palm', u'polic', u'station', u'plan']
[u'nation', u'parti', u'stalwart', u'dead']
[u'quick', u'plan', u'china']
[u'quinn', u'remain', u'tight', u'lip', u'futur', u'dump']
[u'over', u'optimist', u'growth']
[u'region', u'area', u'brace', u'petrol', u'price', u'hike']
[u'report', u'show', u'govern', u'hamper', u'servic', u'deliveri']
[u'research', u'caution', u'rush', u'land', u'right']
[u'restructur', u'boost', u'account']
[u'ricciuto', u'miss', u'date', u'docker']
[u'road', u'blame', u'crash']
[u'robinson', u'trial', u'adjourn']
[u'robot', u'riot', u'robocup']
[u'miss', u'date', u'docker']
[u'rural', u'doctor', u'associ', u'reject', u'health']
[u'sabotag', u'fear', u'aust', u'trout', u'death']
[u'saint', u'march', u'tassi']
[u'opposit', u'renew', u'call', u'seatbelt']
[u'school', u'search', u'uncov', u'poison', u'polic']
[u'school', u'search', u'amid', u'poison', u'scare']
[u'servic', u'want', u'fund', u'forens', u'doctor']
[u'sick', u'veteran', u'refus', u'gold', u'card']
[u'slater', u'cop', u'week']
[u'slater', u'forc', u'fight']
[u'snowi', u'hydro', u'blame', u'contractor', u'advic', u'releas']
[u'springbok', u'refresh', u'squad', u'nation']
[u'steel', u'price', u'hoist', u'concern', u'hill']
[u'stellar', u'season', u'boost', u'machineri', u'dealer', u'confid']
[u'stem', u'cell', u'rule', u'risk', u'brain', u'drain', u'senat']
[u'supplier', u'warn', u'maker']
[u'surgeon', u'work', u'separ', u'conjoin', u'twin']
[u'swim', u'coach', u'attack', u'thorpedo', u'critic']
[u'task', u'forc', u'probe', u'school', u'poison', u'threat']
[u'teenag', u'impal', u'tree', u'branch']
[u'test', u'reveal', u'swim', u'area', u'health']
[u'thompson', u'extend', u'raider', u'deal']
[u'dead', u'lanka', u'bomb', u'attack']
[u'timber', u'industri', u'landown', u'want', u'draft', u'code', u'scrap']
[u'time', u'take', u'suspend', u'accus', u'transit', u'offic']
[u'tongan', u'give', u'fund', u'grate', u'museum']
[u'toowoomba', u'hospit', u'prepar', u'antibiot']
[u'hospit', u'turn', u'away', u'pregnant', u'woman']
[u'ceas', u'negoti', u'delay']
[u'union', u'movement', u'angri', u'campaign', u'investig']
[u'union', u'say', u'bluescop', u'allow', u'voluntari']
[u'union', u'scrutinis', u'empir', u'rubber', u'sale']
[u'hous', u'critic', u'worri']
[u'vail', u'take', u'credit', u'ethanol', u'monitor']
[u'vanston', u'weigh', u'futur', u'asylum', u'seeker', u'jack']
[u'disput', u'shape', u'test', u'case']
[u'grain', u'grower', u'pursu', u'lose', u'incom']
[u'wambo', u'mayor', u'pay', u'tribut', u'robert', u'spark']
[u'warrant', u'issu', u'fraud', u'charg']
[u'wartim', u'tragedi', u'resurfac', u'wreck']
[u'waterfal', u'train', u'crash', u'safeti', u'recommend']
[u'watermelon', u'grower', u'welcom', u'winter', u'rain']
[u'webber', u'eager', u'turn', u'bull', u'titl', u'contend']
[u'wine', u'grower', u'improv', u'sale']
[u'woman', u'life', u'support', u'get', u'electr', u'concess']
[u'woman', u'tell', u'stay', u'away', u'sister', u'alleg']
[u'women', u'warn', u'repeat', u'caesarean', u'risk']
[u'wool', u'grower', u'reject', u'diazinon', u'altern']
[u'worker', u'urg', u'chase', u'reduc', u'hour', u'law']
[u'workshop', u'educ', u'princip', u'report', u'card']
[u'young', u'rooster', u'paea', u'join', u'titan']
[u'troop', u'bind', u'afghanistan']
[u'accus', u'smoke', u'cannabi', u'patton', u'murder']
[u'govt', u'defend', u'caravan', u'park', u'land', u'deal']
[u'afghanistan', u'withdraw', u'mistak', u'beazley']
[u'leagu', u'socceroo', u'chanc', u'shine']
[u'demand', u'hospit', u'equip', u'upgrad']
[u'andrew', u'receiv', u'help', u'sell', u'chang']
[u'aquacultur', u'ruin', u'beach', u'say']
[u'arab', u'leagu', u'make', u'case']
[u'arrest', u'expect', u'central', u'australian']
[u'arsenal', u'romp', u'zagreb', u'sweep', u'asid']
[u'asher', u'toxic', u'dump', u'comment']
[u'asic', u'shut', u'tweed', u'takeov']
[u'asylum', u'seeker', u'suicid', u'attempt', u'warn']
[u'aust', u'commit', u'extra', u'troop', u'afghanistan']
[u'seek', u'grower', u'support', u'export', u'monopoli']
[u'aztec', u'consid', u'takeov']
[u'backpack', u'hear', u'tell', u'accus', u'admit']
[u'baghdad', u'attack', u'kill']
[u'bar', u'nude', u'women', u'upset', u'church']
[u'bathurst', u'council', u'tackl', u'unauthoris', u'brothel']
[u'benefit', u'rule', u'threaten', u'second', u'teen', u'pension']
[u'bang', u'machin', u'gear', u'atom', u'smash']
[u'bigger', u'plan', u'mildura', u'melbourn', u'rout']
[u'blast', u'victim', u'famili', u'give', u'remain']
[u'bodi', u'miss', u'fisherman', u'polic']
[u'brack', u'apologis', u'state', u'ward', u'treatment']
[u'brazilian', u'land', u'safe', u'door', u'fall']
[u'british', u'golfer', u'doubl', u'hole']
[u'break', u'hill', u'mayor', u'reject', u'water', u'recycl']
[u'bronco', u'fine', u'costigan', u'follow', u'drink', u'drive']
[u'bronco', u'close', u'door']
[u'broom', u'ask', u'name', u'suggest']
[u'burrel', u'sentenc', u'life', u'whelan', u'murder']
[u'cahil', u'contribut', u'everton', u'preseason']
[u'caloundra', u'council', u'ask', u'explain', u'water', u'spend']
[u'campbel', u'face', u'censur', u'wind', u'farm']
[u'campbel', u'lift', u'portsmouth']
[u'cancer', u'research', u'volunt', u'number', u'drop']
[u'cathol', u'educ', u'wagga', u'need', u'shake', u'priest']
[u'post', u'record', u'profit']
[u'centrelink', u'grant', u'leukaemia', u'suffer', u'pension']
[u'cfmeu', u'settl', u'blue', u'court', u'case']
[u'chang', u'guard', u'murray', u'henman']
[u'charg', u'lay', u'chemic', u'import']
[u'chariti', u'fundrais', u'method', u'question']
[u'citizen', u'arrest', u'applaud', u'taxi', u'driver', u'death', u'case']
[u'citrus', u'grower', u'prepar', u'fruit', u'zone']
[u'closer', u'news']
[u'closer']
[u'cloud', u'seed', u'answer', u'water', u'crisi', u'engin']
[u'club', u'seek', u'council', u'meet', u'sport', u'grind']
[u'coalit', u'argu', u'asylum', u'high', u'grind']
[u'cole', u'inquiri', u'run', u'budget']
[u'commonwealth', u'bank', u'profit', u'near']
[u'condemn', u'bali', u'bomber', u'execut', u'urg']
[u'connolli', u'gregan', u'stay']
[u'coral', u'reef', u'benefit', u'indigen']
[u'corn', u'stay', u'loyal', u'power']
[u'cotrel', u'win', u'dampier', u'classic', u'fish', u'comp']
[u'council', u'recommend', u'preston', u'explor']
[u'csiro', u'unveil', u'proof', u'plastic']
[u'cycl', u'boss', u'promis', u'huge', u'shake']
[u'deadlin', u'turtl', u'interpret', u'centr']
[u'debt', u'fear', u'grow', u'home', u'loan', u'rise']
[u'demon', u'seek', u'redempt', u'swan']
[u'diabet', u'suffer', u'number', u'rise']
[u'diplomat', u'struggl', u'lebanon', u'resolut']
[u'dissid', u'label', u'migrat', u'disturb']
[u'dissid', u'vote', u'asylum', u'chang']
[u'dockland', u'join', u'citi', u'melbourn']
[u'eagl', u'decis']
[u'einfeld', u'deni', u'wrongdo', u'speed', u'fine']
[u'england', u'set', u'ash', u'clash']
[u'escondida', u'miner', u'reject', u'billiton', u'offer']
[u'ethanol', u'plant', u'plan', u'darl', u'down']
[u'ethiopian', u'flood', u'death', u'toll']
[u'timor', u'parliament', u'pass', u'delay', u'budget']
[u'expans', u'work', u'blame', u'gladston', u'delay']
[u'expert', u'warn', u'ethanol', u'short', u'term', u'solut']
[u'extort', u'accus', u'grant', u'bail']
[u'fear', u'hold', u'tourist', u'sweep']
[u'fight', u'continu', u'mideast']
[u'kill', u'attack', u'tiger', u'territori']
[u'flegg', u'boost', u'coalit', u'chanc', u'messeng', u'say']
[u'polic', u'traine', u'face', u'weapon', u'charg']
[u'question', u'school', u'poison', u'threat']
[u'safe', u'emerg', u'plane', u'land']
[u'worker', u'kidnap', u'ship', u'nigeria']
[u'fueltrac', u'cast', u'doubt', u'petrol', u'predict']
[u'moon', u'spark', u'mayon', u'erupt', u'fear']
[u'leak', u'emerg', u'culprit', u'jail']
[u'generos', u'lead', u'budget', u'shortfal', u'silver']
[u'govt', u'consid', u'incent']
[u'green', u'criticis', u'council', u'branxholm', u'water']
[u'gunn', u'defend', u'cost']
[u'hewitt', u'elimin', u'chela', u'toronto']
[u'hickey', u'case', u'near']
[u'hickey', u'guilti', u'mislead']
[u'hih', u'fodera', u'stand', u'trial']
[u'hostel', u'accus', u'warn', u'stop', u'drink']
[u'howard', u'ramp', u'law', u'sell']
[u'immigr', u'ask', u'employ', u'suspect']
[u'investig', u'speak', u'crash', u'pilot']
[u'island', u'sale']
[u'isra', u'raid', u'kill']
[u'isra', u'strike', u'kill']
[u'isra', u'cabinet', u'mull', u'wider', u'lebanon', u'offens']
[u'isra', u'cricket', u'team', u'forc', u'flee', u'protest']
[u'israel', u'strike', u'palestinian', u'refuge', u'camp']
[u'oppos', u'noosa', u'mayor', u'say']
[u'jail', u'raid', u'spark', u'wider', u'cell', u'search']
[u'jet', u'pleas', u'knight', u'stadium', u'deal']
[u'kosmina', u'back', u'arnold', u'socceroo']
[u'labor', u'petit', u'onshor', u'blood', u'process']
[u'labor', u'slam', u'coonan', u'broadband', u'comment']
[u'labor', u'uranium', u'polici', u'ridicul']
[u'landi', u'say', u'dope', u'test', u'flaw']
[u'land', u'swap', u'secur', u'caravan', u'home']
[u'larkham', u'stand', u'embattl', u'gregan']
[u'trobe', u'review', u'region', u'campus']
[u'legal', u'action', u'threaten', u'disput']
[u'leukemia', u'patient', u'deni', u'centrelink', u'disabl']
[u'liber', u'vote', u'asylum', u'chang']
[u'liber', u'lock', u'horn', u'asylum']
[u'liverpool', u'face', u'maccabi', u'threat', u'benitez']
[u'lobbyist', u'pressur', u'asylum']
[u'convers', u'subsidi', u'possibl', u'howard']
[u'magpi', u'dismiss', u'specul', u'malthous', u'futur']
[u'arrest', u'sydney', u'gang', u'rape']
[u'charg', u'fatal', u'accid', u'caperte']
[u'jail', u'beat', u'wife', u'wheel', u'spanner']
[u'jail', u'pregnant', u'wife', u'death']
[u'unfit', u'question', u'taxi', u'driver', u'death']
[u'mayor', u'reject', u'critic', u'kiss', u'point']
[u'mayor', u'warn', u'water', u'manag', u'plan']
[u'mcewan', u'beach', u'brace', u'king', u'tide']
[u'mcleod', u'content', u'return', u'docker']
[u'militari', u'lawyer', u'reappoint', u'hick', u'case']
[u'minist', u'promis', u'fair', u'consider', u'bypass']
[u'mokbel', u'brother', u'refus', u'bail']
[u'molloy', u'evict', u'water', u'debat']
[u'monash', u'lectur', u'win', u'braveri', u'award']
[u'rais', u'rural', u'health', u'concern']
[u'mulcahi', u'urg', u'debt', u'collect', u'outsourc']
[u'murder', u'worker', u'help', u'tsunami']
[u'nation', u'urg', u'greater', u'biofuel', u'support']
[u'newcastl', u'lord', u'mayor', u'criticis']
[u'machin', u'restor', u'cancer', u'treatment', u'servic']
[u'manag', u'western', u'region', u'council']
[u'news', u'corp', u'report', u'profit', u'surg']
[u'nrma', u'forese', u'petrol', u'litr']
[u'farmer', u'district', u'council', u'support', u'local', u'dairi']
[u'polic', u'sign', u'border', u'deal']
[u'shelter', u'hop', u'aborigin', u'hous', u'rethink']
[u'oakaje', u'port', u'pressur', u'geraldton', u'miner']
[u'obikwelu', u'go', u'second']
[u'offshor', u'process', u'debat']
[u'food', u'inquiri', u'budget']
[u'fatti', u'meal', u'affect', u'arteri', u'studi', u'find']
[u'onlin', u'census', u'form', u'popular']
[u'organis', u'laud', u'fist', u'film']
[u'organis', u'committe', u'quit', u'begonia', u'ralli']
[u'outback', u'citi', u'slicker', u'star', u'say']
[u'paddl', u'steamer', u'rescu', u'elder']
[u'pakistan', u'hold', u'asif', u'fourth', u'test']
[u'parent', u'group', u'meet', u'address', u'rural', u'safeti']
[u'parent', u'rais', u'concern', u'rural', u'school', u'safeti']
[u'patton', u'murder', u'accus', u'phone', u'wife']
[u'petrol', u'price', u'hit', u'torr', u'strait']
[u'petrol', u'price', u'hit', u'electr', u'cost']
[u'urg', u'probe', u'einfeld', u'fine', u'evid']
[u'polic', u'appeal', u'info', u'darl', u'harbour', u'gang', u'rape']
[u'polic', u'manipul', u'statement', u'kovco', u'wit']
[u'polic', u'allay', u'fear', u'sydney', u'gang', u'rape']
[u'polic', u'question', u'patton', u'murder', u'committ']
[u'polic', u'welcom', u'complaint', u'probe']
[u'premier', u'council', u'work', u'water']
[u'pressur', u'escal', u'asylum']
[u'public', u'school', u'shut', u'fund', u'inquiri']
[u'qlder', u'urg', u'lodg', u'petrol', u'inquiri', u'submiss']
[u'qualiti', u'school', u'affect', u'hous', u'price']
[u'ralph', u'reserv', u'extend', u'water', u'mark']
[u'poison', u'offend', u'warn', u'attack', u'continu']
[u'region', u'visitor', u'centr', u'offer', u'indigen']
[u'research', u'link', u'diabet', u'kidney', u'diseas']
[u'resourc', u'sector', u'concern', u'environment', u'law']
[u'restaur', u'receiv', u'heart', u'tick']
[u'road', u'condit', u'question', u'plung']
[u'rock', u'icon', u'sing', u'school', u'attend']
[u'ronaldo', u'brave', u'boy']
[u'children', u'protect', u'cigarett', u'smoke', u'car']
[u'forest', u'industri', u'fear', u'skill', u'shortag']
[u'increas', u'bird', u'prepar', u'fund']
[u'veteran', u'fight', u'medic', u'treatment', u'fund']
[u'school', u'hit', u'year']
[u'scientist', u'plan', u'grey', u'falcon', u'studi']
[u'scullion', u'back', u'land', u'right', u'chang']
[u'search', u'resum', u'miss', u'worker']
[u'world', u'prepar', u'farewel', u'polar', u'bear']
[u'second', u'person', u'charg', u'sydney', u'gang', u'rape']
[u'settlement', u'reach', u'premer', u'grain', u'disput']
[u'shepparton', u'draft', u'budget', u'focus', u'infrastructur']
[u'stosur', u'like', u'chanc', u'davenport']
[u'strauss', u'say', u'england', u'hungri']
[u'studi', u'find', u'self', u'monitor', u'help', u'type']
[u'sugar', u'power', u'properti', u'boom']
[u'sunbeam', u'set', u'share', u'hold']
[u'survey', u'confirm', u'tourist', u'appeal']
[u'tanker', u'crash', u'close', u'princ']
[u'taxi', u'death', u'suspect', u'forc', u'sampl']
[u'tbird', u'hope', u'claim', u'second', u'place']
[u'tbird', u'hope', u'claim', u'second', u'spot']
[u'telstra', u'reassur', u'resid']
[u'terror', u'accus', u'stand', u'trial']
[u'terrorist', u'cricket', u'accept', u'jone', u'apolog']
[u'test', u'snowi', u'river', u'pollut', u'releas']
[u'toddler', u'dryer', u'time']
[u'fatal', u'hous', u'fire', u'investig']
[u'hold', u'wide', u'rang', u'dope', u'review']
[u'polic', u'arrest', u'alleg', u'royal', u'phone']
[u'franc', u'rework', u'lebanon', u'resolut']
[u'market', u'despit', u'rate', u'hike', u'halt']
[u'servicemen', u'miss', u'iraq', u'chopper', u'crash']
[u'slowdown', u'hit', u'local', u'market']
[u'vcoss', u'call', u'public', u'transport']
[u'virus', u'handl', u'review', u'near', u'complet']
[u'voss', u'wont', u'happi', u'bench', u'role']
[u'wine', u'grower', u'consid', u'bottl', u'plant']
[u'woolmer', u'back', u'england', u'ash']
[u'worksaf', u'ask', u'probe', u'sack']
[u'york', u'expect', u'miss', u'adelaid', u'clash']
[u'york', u'adelaid', u'game']
[u'yuendumu', u'riot', u'investig', u'continu']
[u'die', u'baghdad', u'juli', u'morgu', u'say']
[u'kill', u'lankan', u'unrest', u'rebel']
[u'accus', u'see', u'near', u'hostel', u'storeroom', u'blaze']
[u'agenc', u'payment', u'failur', u'prompt', u'call']
[u'airlin', u'bomb', u'plot', u'suggest', u'qaeda']
[u'airlin', u'cancel', u'flight', u'bomb', u'plot', u'share', u'drop']
[]
[u'anger', u'indonesia', u'role', u'migrat', u'debat']
[u'archi', u'fit', u'race']
[u'argentina', u'captain', u'scoff', u'hewitt', u'mind', u'game']
[u'aussi', u'brown', u'win', u'final', u'tour', u'germani', u'stage']
[u'australia', u'curat', u'meet', u'ash']
[u'aust', u'travel', u'urg', u'arriv', u'earli', u'flight']
[u'beazley', u'tuckey', u'trade', u'insult', u'migrat']
[u'beazley', u'tuckey', u'trade', u'migrat', u'insult']
[u'bligh', u'apologis', u'mock', u'liber']
[u'boxer', u'reject', u'drug', u'test', u'religi', u'ground']
[u'caltex', u'discount', u'ethanol', u'blend']
[u'brad', u'scott', u'announc', u'retir']
[u'brisban', u'ekka', u'get']
[u'brisban', u'host', u'socceroo', u'friend']
[u'british', u'woman', u'jail', u'ecstasi', u'import']
[u'bronco', u'sack', u'seymour', u'costigan']
[u'brother', u'guilti', u'kill', u'nigerian']
[u'brown', u'attack', u'major', u'parti', u'tarkin', u'heritag']
[u'bull', u'sale', u'solid']
[u'bundaberg', u'region', u'step', u'closer', u'smut']
[u'busi', u'communiti', u'council', u'fight', u'hotel']
[u'busi', u'forc', u'reimburs', u'employe']
[u'canowindra', u'branch', u'save', u'younger', u'member']
[u'carpent', u'back', u'patholog', u'despit', u'scar']
[u'centr', u'excel', u'tour', u'africa']
[u'central', u'unemploy', u'figur', u'nation']
[u'central', u'pipelin', u'upgrad', u'detail', u'reveal']
[u'centr', u'apologis', u'famili', u'withhold', u'man']
[u'claim', u'racism', u'surround', u'estat', u'redevelop']
[u'closer']
[u'communiti', u'urg', u'fight', u'petrol']
[u'concern', u'voic', u'feder', u'seat', u'boundari']
[u'coron', u'prais', u'braveri', u'drown', u'rescuer']
[u'council', u'marina', u'estat', u'manag']
[u'court', u'dismiss', u'farmer', u'uranium', u'concern']
[u'crash', u'survivor', u'recov', u'lucki', u'escap']
[u'cycl', u'boss', u'defend', u'landi', u'test', u'result']
[u'dairi', u'owner', u'face', u'farm', u'closur', u'fight']
[u'track', u'complet']
[u'death', u'spawn', u'human', u'speci']
[u'dfat', u'urg', u'vigil', u'wake', u'bomb', u'plot']
[u'disabl', u'claim', u'neglect', u'hospit']
[u'disabl', u'swimmer', u'world', u'championship', u'spot']
[u'diva', u'meet', u'mate']
[u'document', u'prove', u'develop', u'mislead', u'site']
[u'dozen', u'kill', u'iraqi', u'suicid', u'attack']
[u'drown', u'inquest', u'continu', u'port', u'macquari']
[u'dubbo', u'jazz', u'festiv', u'appeal', u'local', u'support']
[u'dun', u'fin', u'incid']
[u'earli', u'elect', u'card']
[u'famili', u'devast', u'gladston', u'blast', u'remain']
[u'feder', u'govt', u'dismiss', u'appeal', u'fund']
[u'taliban', u'kill', u'attack', u'base']
[u'footbal', u'popular', u'rugbi', u'cod', u'report']
[u'foreign', u'diplomat', u'dodg', u'fin']
[u'forum', u'road', u'safeti', u'attract', u'enorm']
[u'charg', u'school', u'rugbi', u'brawl']
[u'hospit', u'miracul', u'crash', u'land']
[u'fruit', u'vegi', u'campaign', u'push', u'gain', u'momentum']
[u'gatlin', u'lawyer', u'prepar', u'except', u'circumst']
[u'german', u'swimmer', u'lead', u'dope', u'show', u'say', u'chief']
[u'gonzalez', u'help', u'liverpool', u'surviv', u'champion', u'leagu']
[u'govt', u'outlin', u'develop', u'koala', u'area']
[u'govt', u'pose', u'greatest', u'threat', u'privaci', u'googl']
[u'govt', u'struggl', u'sell', u'chang', u'combet']
[u'govt', u'target', u'problem', u'dog', u'breed']
[u'govt', u'urg', u'follow', u'dali', u'promis']
[u'growth', u'concern', u'spook', u'market']
[u'gunn', u'press', u'damag', u'case']
[u'heathrow', u'shut', u'incom', u'flight', u'amid', u'terror']
[u'hewitt', u'doubt', u'open']
[u'hezbollah', u'vow', u'lebanon', u'israel', u'graveyard']
[u'hezbollah', u'vow', u'creat', u'isra', u'graveyard']
[u'hous', u'develop', u'slash', u'number']
[u'hous', u'shortag', u'mean', u'labour', u'sleep']
[u'howard', u'hail', u'fall', u'jobless', u'figur']
[u'howard', u'unimpress', u'beazley', u'tuckey', u'stoush']
[u'illeg', u'immigr', u'arrest', u'gundagai']
[u'injuri', u'blow', u'hewitt']
[u'inzamam', u'urg', u'relinquish', u'captainci']
[u'irrig', u'fin', u'steal', u'water']
[u'islamist', u'control', u'central', u'somali', u'town']
[u'island', u'sale', u'attract', u'attent']
[u'isra', u'forc', u'advanc', u'lebanon']
[u'isra', u'troop', u'push', u'lebanon']
[u'israel', u'push', u'lebanon']
[u'israel', u'seiz', u'lebanes', u'town']
[u'israel', u'warn', u'south', u'beirut', u'resid', u'leav']
[u'figur', u'prompt', u'rate', u'rise', u'specul']
[u'job', u'data', u'forc', u'rate', u'rise', u'economist']
[u'keat', u'prais', u'opera', u'hous', u'backer']
[u'king', u'tide', u'expect', u'beach', u'scarp']
[u'kite', u'give', u'clear']
[u'fear', u'test']
[u'labor', u'play', u'polit', u'restaur', u'worker']
[u'labor', u'urg', u'protect', u'kokoda', u'track', u'mine']
[u'lake', u'burley', u'griffin', u'summer', u'bustl']
[u'landown', u'discuss', u'chalco', u'decis', u'govt']
[u'lawyer', u'group', u'support', u'school', u'safeti', u'campaign']
[u'lebanon', u'conflict']
[u'lower', u'hous', u'pass', u'migrat']
[u'malthous', u'dismiss', u'health', u'rumour']
[u'face', u'court', u'taxi', u'driver', u'murder']
[u'lose', u'snowtown', u'sentenc', u'appeal']
[u'unit', u'appeal', u'rooney', u'schole', u'ban']
[u'mayor', u'rais', u'resourc', u'problem', u'region', u'art']
[u'memorandum', u'sign', u'improv', u'interact']
[u'charg', u'royal', u'famili', u'phone', u'tap', u'scandal']
[u'migrat', u'pass', u'lower', u'hous']
[u'montana', u'father', u'sentenc', u'drug', u'crime']
[u'polic', u'north', u'coast']
[u'women', u'enter', u'mine', u'workforc']
[u'comment', u'aquacultur', u'develop', u'misguid']
[u'murchison', u'metal', u'hold', u'talk', u'farmer']
[u'nation', u'prepar', u'elect', u'battl', u'green']
[u'nelson', u'outlin', u'afghan', u'troop', u'deploy']
[u'alloc', u'polic', u'associ']
[u'newcastl', u'mater', u'hospit', u'figur', u'drop']
[u'polic', u'offic', u'post', u'england']
[u'polic', u'target', u'road', u'minist']
[u'uranium', u'mine', u'watch', u'carpent', u'say']
[u'leagu', u'trial', u'weight', u'comp']
[u'produc', u'cattl', u'set', u'record', u'price', u'ekka']
[u'offic', u'workplac', u'servic', u'investig', u'bakeri']
[u'offic', u'move', u'goulburn', u'polic', u'colleg']
[u'opposit', u'promis', u'tourism', u'bodi', u'independ']
[u'million', u'evacu', u'typhoon', u'hit', u'china']
[u'patholog', u'forc', u'retest']
[u'patton', u'murder', u'wit', u'hear', u'scream', u'court', u'tell']
[u'perth', u'mother', u'plead', u'guilti', u'drug', u'traffic']
[u'perth', u'rail', u'feel', u'fuel', u'price', u'pressur']
[u'polic', u'fear', u'attack', u'link']
[u'polic', u'miss', u'plane', u'occup']
[u'polic', u'hunt', u'alleg', u'sydney', u'gang', u'rapist']
[u'polic', u'launch', u'anti', u'truanci', u'campaign']
[u'polic', u'arrest', u'follow', u'major', u'drug', u'bust']
[u'polic', u'presenc', u'increas', u'hunter', u'region']
[u'polic', u'local', u'poison']
[u'polic', u'union', u'back', u'complaint', u'investig']
[u'polic', u'urg', u'resid', u'report', u'crime']
[u'port', u'macquari', u'health', u'ward', u'commit', u'question']
[u'posit', u'labour', u'forc', u'data', u'expect']
[u'powercorp', u'interest', u'build', u'tennant', u'creek']
[u'power', u'plant', u'bring', u'job', u'central', u'coast']
[u'pay', u'petrol', u'trial', u'aim', u'curb', u'theft']
[u'privat', u'oper', u'fail', u'aborigin', u'work', u'dole']
[u'promin', u'judg', u'accus', u'lie', u'court']
[u'propos', u'liquor', u'accord', u'park']
[u'propos', u'galleri', u'mix', u'reaction']
[u'pyap', u'busi']
[u'health', u'reject', u'claim', u'ignor']
[u'queensland', u'produc', u'ekka']
[u'raider', u'suffer', u'injuri', u'blow']
[u'ratepay', u'shell', u'extra', u'week']
[u'rebel', u'labor', u'say', u'lose', u'friend']
[u'rebel', u'cross', u'floor', u'asylum']
[u'recharg', u'gilchrist', u'readi', u'ash', u'fight']
[u'region', u'parent', u'group', u'rais', u'assist', u'concern']
[u'religi', u'nude']
[u'report', u'find', u'pilot', u'like', u'incapacit']
[u'resort', u'complex', u'discuss', u'council']
[u'retir', u'minist', u'urg', u'industri', u'water']
[u'ruddock', u'want', u'anti', u'terror', u'law', u'cover', u'hoax']
[u'rural', u'commod', u'price', u'index']
[u'rural', u'plan', u'meet', u'wrap', u'today']
[u'govt', u'unmov', u'seatbelt', u'critic']
[u'sailor', u'drug', u'suspens', u'stand']
[u'sand', u'separ', u'plant', u'oper', u'year']
[u'season', u'port', u'loni']
[u'senat', u'call', u'review', u'census', u'procedur']
[u'sewerag', u'scheme', u'cost', u'continu', u'rise']
[u'sheedi', u'clueless', u'hird', u'futur']
[u'sport', u'program', u'eas', u'african', u'indigen', u'tension']
[u'lankan', u'ceas', u'dead', u'militari', u'say']
[u'stosur', u'shock', u'davenport']
[u'support', u'fight', u'convict', u'murder', u'releas']
[u'support', u'grow', u'wollongong', u'leagu', u'club']
[u'surgeon', u'concern', u'health', u'chang']
[u'survey', u'identifi', u'timor', u'diamond']
[u'camembert', u'take', u'world', u'chees', u'award']
[u'tri', u'weapon', u'addict', u'battl']
[u'teenag', u'driver', u'die', u'accid']
[u'teen', u'court', u'darl', u'harbour', u'gang', u'rape']
[u'telstra', u'post', u'worst', u'profit', u'result']
[u'telstra', u'profit', u'drop']
[u'telstra', u'profit', u'dive']
[u'telstra', u'profit']
[u'telstra', u'result', u'littl', u'impact', u'investor']
[u'telstra', u'talk', u'turnaround']
[u'thiev', u'withdraw', u'deposit', u'fiasco']
[u'injur', u'lake', u'macquari', u'hous']
[u'soldier', u'kill', u'miss', u'iraq']
[u'tornado', u'affect', u'resid', u'encourag', u'attend']
[u'tourism', u'whitsunday', u'get', u'surpris', u'budget']
[u'tuckey', u'beazley', u'argu', u'migrat']
[u'deni', u'bail', u'darl', u'harbour', u'rape', u'case']
[u'face', u'sydney', u'court', u'rape', u'charg']
[u'dead', u'charg', u'doubl', u'murder']
[u'arrest', u'killarney', u'vale', u'murder']
[u'polic', u'foil', u'plane', u'bomb', u'plot']
[u'polic', u'foil', u'plane', u'terror', u'plot']
[u'polic', u'foil', u'terrorist', u'plot']
[u'unemploy', u'rate', u'fall']
[u'union', u'opposit', u'odd', u'school']
[u'union', u'meet', u'discuss', u'servic', u'futur']
[u'govern', u'water', u'rebat']
[u'liber', u'welcom', u'return', u'tech', u'school']
[u'voss', u'miss', u'tiger', u'clash']
[u'extend', u'christma', u'trade', u'time']
[u'health', u'review', u'medic', u'servic']
[u'wallabi', u'resist', u'wholesal', u'chang', u'clash']
[u'warumpi', u'singer', u'educ', u'role', u'model']
[u'roger', u'smash', u'tripl', u'england']
[u'water', u'chlorin', u'meet', u'strong', u'opposit']
[u'waugh', u'wife', u'continu', u'recoveri', u'brain', u'surgeri']
[u'wine', u'industri', u'blueprint', u'promot', u'innov']
[u'wit', u'hear', u'scream', u'patton', u'murder']
[u'woman', u'wave', u'patton', u'short', u'murder']
[u'wool', u'grower', u'plan', u'ethic', u'wool', u'brand', u'launch']
[u'worsfold', u'take', u'kangaroo', u'light']
[u'young', u'girl', u'kill', u'isra', u'strike', u'gaza']
[u'peopl', u'charg', u'drug', u'raid']
[u'project', u'restor', u'snowi', u'river', u'wetland']
[u'dead', u'miss', u'china', u'typhoon', u'saomai']
[u'accus', u'stand', u'trial', u'patton', u'murder']
[u'adelaid', u'preseason', u'final']
[u'prepar', u'liquid', u'explos', u'say', u'keelti']
[u'airlin', u'plot', u'kill', u'thousand', u'offici']
[u'amla', u'harbour', u'hard', u'feel', u'jone']
[u'andrew', u'investig', u'meat', u'industri', u'visa']
[u'asian', u'pacif', u'airlin', u'associ', u'back', u'stricter']
[u'aussi', u'leaper', u'target', u'medal', u'beij']
[u'aussi', u'buckl', u'earn', u'major', u'berth']
[u'aust', u'airport', u'heighten', u'level', u'vigil']
[u'australian', u'airport', u'boost', u'secur']
[u'aust', u'vulner', u'attack', u'beazley']
[u'aust', u'threat', u'level', u'unchang']
[u'author', u'urg', u'resid', u'trust', u'qualiti']
[u'bank', u'freez', u'account', u'arrest', u'terror']
[u'beatti', u'need', u'earli', u'elect']
[u'beckham', u'england']
[u'beij', u'shoot', u'space', u'funer', u'plan']
[u'bendigo', u'benefit', u'build', u'activ', u'increas']
[u'berkeley', u'woman', u'face', u'drug', u'charg']
[u'blood', u'see', u'accus', u'wife', u'cloth', u'court']
[u'bodi', u'miss', u'soldier']
[u'bomber', u'shock', u'magpi']
[u'bomb', u'plot', u'investig', u'continu']
[u'recov', u'attack']
[u'brandi', u'urg', u'seat', u'name', u'thiess']
[u'british', u'polic', u'arrest', u'bomb', u'plot']
[u'british', u'polic', u'question', u'terror', u'suspect']
[u'briton', u'arrest', u'pakistan', u'anti', u'terror']
[u'broom', u'turf', u'club', u'get', u'upgrad', u'fund']
[u'brown', u'plan', u'exclus', u'brethren', u'inquiri', u'motion']
[u'bush', u'warn', u'ongo', u'terror', u'risk']
[u'cairn', u'face', u'relat', u'charg']
[u'call', u'inquiri', u'isra', u'offens']
[u'calm', u'restor', u'darwin', u'northern', u'suburb', u'say']
[u'caltex', u'discount', u'ethanol', u'blend', u'fuel', u'north']
[u'canberra', u'tribut', u'local', u'veteran']
[u'carmen', u'product', u'head', u'north', u'coast']
[u'carpent', u'back', u'inland', u'freight', u'port']
[u'cautious', u'support', u'harbour', u'seafood', u'studi']
[u'central', u'aust', u'artist', u'win', u'prize']
[u'charg', u'wadey', u'polic', u'offic', u'quash']
[u'china', u'warn', u'japan', u'shrine', u'visit']
[u'church', u'move', u'close', u'nude', u'danc', u'club', u'door']
[u'church', u'neighbour', u'resist', u'nude', u'danc', u'pressur']
[u'citi', u'meet', u'bush', u'brisban', u'ekka']
[u'clarion', u'vege', u'farmer']
[u'classic', u'music', u'music', u'aust', u'ear']
[u'closer']
[u'closer']
[u'coastlin', u'manag', u'plan', u'expect', u'restrict']
[u'compani', u'explor', u'way', u'reduc', u'power', u'line']
[u'compani', u'plan', u'demolish', u'damag', u'heritag']
[u'concern', u'busi', u'raaf', u'base']
[u'condit', u'hamper', u'search', u'tourist', u'fear', u'drown']
[u'disappoint', u'koala', u'habitat']
[u'corbi', u'appli', u'appeal']
[u'council', u'advoc', u'orana', u'mall', u'expans']
[u'council', u'consid', u'prosecut', u'owner']
[u'councillor', u'unhappi', u'plan', u'allow', u'truck']
[u'councillor', u'urg', u'replac', u'dredg', u'sand']
[u'council', u'lose', u'battl', u'nelli', u'develop']
[u'council', u'mull', u'rate', u'increas', u'combat', u'budget']
[u'court', u'tell', u'hostel', u'start', u'stairwel']
[u'crew', u'work', u'night', u'clear', u'sewag', u'spill']
[u'croker', u'franc']
[u'cudeco', u'say', u'latest', u'drill', u'prove', u'deposit', u'size']
[u'dam', u'blame', u'fuel', u'dead', u'indian', u'flood']
[u'darwin', u'detent', u'centr', u'oper']
[u'death', u'toll', u'typhoon', u'china', u'rise']
[u'debt', u'prompt', u'ymca', u'build', u'sale']
[u'defenc', u'probe', u'flight', u'secur', u'laps']
[u'depart', u'child', u'safeti', u'reject', u'critic']
[u'develop', u'chief', u'seek', u'mandat', u'ethanol']
[u'doctor', u'accus', u'inappropri', u'relationship']
[u'electr', u'moment', u'melbourn', u'tram']
[u'emerald', u'hospit', u'seek', u'medic', u'offic']
[u'ethanol', u'compani', u'flag', u'market', u'access', u'obstacl']
[u'bullrid', u'champ', u'search', u'local', u'talent']
[u'expert', u'tell', u'court', u'backpack', u'deliber']
[u'export', u'reduc', u'trade', u'deficit']
[u'famili', u'flee', u'beirut', u'wake', u'isra', u'attack']
[u'father', u'urg', u'safeti', u'sign', u'son', u'drown', u'death']
[u'feder', u'battl', u'toronto', u'quarter']
[u'sway', u'foreign', u'coach']
[u'field', u'meet', u'papuan', u'migrat', u'vote']
[u'firefight', u'arrest', u'arson', u'spain']
[u'fletcher', u'readi', u'faith', u'strauss']
[u'atsic', u'commission', u'consid', u'senat']
[u'detect', u'seek', u'apolog', u'forc']
[u'priest', u'jail', u'time', u'increas']
[u'forrest', u'resign', u'nation', u'whip']
[u'jail', u'pool', u'hall', u'shoot']
[u'convers', u'workshop', u'owner', u'play', u'rebat']
[u'gaza', u'border', u'open', u'humanitarian', u'case']
[u'goulburn', u'polic', u'offic', u'transfer', u'knee', u'jerk']
[u'govt', u'accus', u'mislead', u'nurs', u'offer']
[u'govt', u'approv', u'turbin', u'wind', u'farm', u'develop']
[u'govt', u'lawyer', u'seek', u'access', u'secret', u'document']
[u'govt', u'polici', u'hold', u'uranium', u'explor', u'miner']
[u'govt', u'consult', u'industri', u'detent', u'improv']
[u'govt', u'blow', u'rail', u'link', u'cost']
[u'govt', u'urg', u'rebuild', u'public', u'school']
[u'govt', u'help', u'japanes', u'firm', u'develop', u'kimberley']
[u'green', u'target', u'danger', u'hunt', u'state', u'forest']
[u'grenad', u'aust', u'soldier', u'luggag']
[u'group', u'urg', u'nation', u'approach', u'work', u'forc']
[u'heathrow', u'terror', u'scare', u'caus', u'minor', u'qanta', u'delay']
[u'iaaf', u'probe', u'gatlin', u'coach']
[u'illicit', u'drug', u'cost', u'aust', u'studi']
[u'indigen', u'abus', u'inquiri', u'individu', u'case']
[u'indonesian', u'hold', u'prayer', u'vigil', u'ahead', u'execut']
[u'indonesian', u'urg', u'weapon', u'hezbollah']
[u'invas', u'warn', u'ceas', u'plan', u'fail']
[u'israel', u'reject', u'russian', u'plan', u'dead', u'lebanon']
[u'jockey', u'safeti', u'handicap', u'overhaul']
[u'joyc', u'consid', u'migrat', u'effect']
[u'juve', u'sell', u'ibrahimov', u'inter']
[u'kapunda', u'track', u'save', u'develop']
[u'king', u'tide', u'erod', u'land', u'mcewan', u'beach']
[u'landown', u'encourag', u'monitor', u'groundwat']
[u'windscreen', u'manufactur', u'plant', u'close']
[u'launceston', u'council', u'flag', u'opposit', u'retail']
[u'die', u'injuri', u'fall']
[u'mandurah', u'wait', u'green', u'light', u'land', u'lot']
[u'fin', u'weapon', u'haul']
[u'lead', u'polic', u'chase']
[u'face', u'court', u'alleg', u'amphetamin']
[u'court', u'cannabi', u'discoveri']
[u'matthew', u'expect', u'michael', u'continu']
[u'mayor', u'expect', u'council', u'adopt', u'rat', u'plan']
[u'media', u'critic', u'justic', u'chief']
[u'melbourn', u'taxi', u'driver', u'safeti', u'issu']
[u'migrat', u'take', u'wrong', u'approach', u'say', u'govt']
[u'expans', u'drive', u'coal', u'loader', u'urgenc']
[u'worker', u'kidnap', u'nigeria']
[u'servic', u'applic', u'lodg', u'council']
[u'mundin', u'declar', u'polit', u'intent']
[u'mundin', u'declar', u'polit', u'intent']
[u'nadal', u'crash', u'toronto']
[u'nation', u'park', u'assoc', u'claim', u'illeg', u'log']
[u'doubt', u'telstra', u'sale']
[u'legisl', u'echuca', u'bridg', u'deadlock']
[u'regul', u'restrict', u'anim', u'health', u'work', u'vet']
[u'reduc', u'sewag', u'seepag']
[u'wheat', u'varieti', u'approv', u'japanes', u'market']
[u'noosa', u'mayor', u'question', u'water', u'save', u'plan', u'detail']
[u'bomb', u'prankster', u'court', u'judg']
[u'food', u'hear', u'resum']
[u'road', u'cycl', u'lane', u'mishmash']
[u'opposit', u'claim', u'educ', u'mislead', u'govt']
[u'panesar', u'bother', u'exclus']
[u'peopl', u'urg', u'contact', u'census', u'form']
[u'plan', u'region', u'hospit', u'ahead']
[u'player', u'boss', u'question', u'bronco', u'sack']
[u'polic', u'continu', u'bomb', u'plot', u'probe']
[u'polic', u'follow', u'patton', u'evid']
[u'polic', u'investig', u'motel', u'burglari']
[u'polic', u'investig', u'poison', u'copycat']
[u'polic', u'improv', u'miss', u'person', u'handl']
[u'polic', u'target', u'minor', u'street', u'crime', u'arrest']
[u'polic', u'tight', u'lip', u'teen', u'sexual', u'assault']
[u'polish', u'keeper', u'kuszczak', u'move', u'trafford']
[u'poll', u'booth', u'stay', u'wanbi']
[u'pont', u'play', u'friendship', u'fear']
[u'quilpi', u'council', u'spend', u'road']
[u'quinn', u'quit', u'polit']
[u'research', u'aim', u'sugarcan', u'smut', u'resist']
[u'restor', u'canva', u'open', u'tintinara', u'centenari']
[u'rider', u'saddl', u'rodeo']
[u'rooney', u'make', u'peac', u'ronaldo']
[u'rule', u'chang', u'stop', u'flood', u'craig']
[u'russia', u'call', u'lebanon', u'humanitarian', u'truce']
[u'scott', u'welcom', u'move', u'discount', u'ethanol', u'fuel']
[u'scud', u'challeng']
[u'eagl', u'boost', u'knight', u'clash']
[u'eagl', u'break', u'newcastl', u'drought']
[u'secur', u'boost', u'bind', u'flight']
[u'self', u'confess', u'paedophil', u'sentenc']
[u'senat', u'hear', u'price', u'drop', u'caus', u'problem']
[u'senat', u'undecid', u'asylum', u'vote']
[u'serena', u'reach']
[u'share', u'market', u'feel', u'impact', u'british', u'terror', u'plot']
[u'shark', u'action', u'applebi', u'senden', u'second']
[u'research', u'organis', u'benefit', u'health']
[u'korea', u'send', u'flood', u'north', u'korea']
[u'soak', u'rain', u'long', u'say', u'minist']
[u'soar', u'lesson', u'leav', u'eagl', u'sore']
[u'soldier', u'pay', u'tribut', u'kovco', u'inquiri']
[u'speed', u'bring', u'suspicion', u'powel']
[u'agreement', u'east', u'ceas']
[u'stosur', u'bow']
[u'sunbeam', u'wont', u'renew', u'currant', u'contract']
[u'suprem', u'court', u'dismiss', u'lobbi', u'group', u'action', u'dust']
[u'suspici', u'substanc', u'brisban', u'school']
[u'swan', u'peak', u'right', u'time', u'say', u'kirk']
[u'swift', u'phoenix', u'maintain', u'unbeaten']
[u'swift', u'best', u'best']
[u'ban', u'boat', u'protect', u'abalon']
[u'get', u'good', u'weed']
[u'govt', u'conduct', u'road', u'safeti', u'review', u'near', u'westerway']
[u'taxi', u'driver', u'strike', u'disrupt', u'traffic']
[u'teen', u'famili', u'appeal', u'info', u'fatal', u'crash']
[u'tendulkar', u'near', u'fit', u'chappel']
[u'charg', u'relat', u'sydney', u'gang', u'rape']
[u'parti', u'overse', u'nlis', u'audit']
[u'travel', u'agenc', u'urg', u'awar', u'secur']
[u'travel', u'stock', u'drag', u'share', u'market']
[u'trio', u'fin', u'magic', u'mushroom', u'gather']
[u'flight', u'return', u'normal', u'terror']
[u'polic', u'arrest', u'bomb', u'plot']
[u'polic', u'question', u'terror', u'suspect']
[u'remain', u'critic', u'alert', u'amid', u'terror', u'plot']
[u'union', u'surpris', u'restaur', u'worker']
[u'union', u'monitor', u'takeov']
[u'unit', u'keen', u'offer', u'rooney', u'contract']
[u'lebanon', u'resolut', u'progress', u'slow']
[u'hold', u'peac', u'talk']
[u'uranium', u'demand', u'predict', u'rise']
[u'islam', u'fascist', u'bush', u'say']
[u'terror', u'alert']
[u'warn', u'indian', u'citi', u'target', u'attack']
[u'vanston', u'avoid', u'indigen', u'abus', u'question']
[u'vanston', u'offer', u'meet', u'senat']
[u'vidmar', u'line', u'marin', u'debut']
[u'warn', u'queri', u'ash', u'boot', u'camp']
[u'whistleblow', u'concern', u'polic', u'forc']
[u'windsor', u'question', u'water', u'entitl']
[u'wine', u'expert', u'predict', u'grape', u'glut']
[u'wollongong', u'centr', u'plan', u'boost', u'job']
[u'wool', u'grower', u'urg', u'research', u'levi']
[u'young', u'sportsman', u'escap', u'punish', u'drink']
[u'alleg', u'insurg', u'seiz', u'iraq']
[u'abalon', u'council', u'want', u'farm', u'review', u'diseas']
[u'push', u'traine', u'doctor', u'place']
[u'alic', u'command', u'carrol', u'classic']
[u'antarct', u'snow', u'shock', u'corner']
[u'australian', u'return', u'home', u'bomb', u'scare']
[u'australia', u'meet', u'windi', u'seri', u'open']
[u'author', u'pinpoint', u'terror', u'plot', u'suspect']
[u'author', u'concern', u'hobart', u'airport', u'retail']
[u'beatti', u'prepar', u'tough', u'elect', u'fight']
[u'beatti', u'slump', u'poll', u'amid', u'elect', u'specul']
[u'beatti', u'poll', u'slump', u'hearten', u'flegg']
[u'beatti', u'springborg', u'play', u'poll', u'chanc']
[u'beazley', u'unfaz', u'tuckey', u'stoush']
[u'beazley', u'urg', u'rapid', u'airport', u'secur', u'upgrad']
[u'bennett', u'shuffl', u'deck']
[u'bodi', u'flood', u'reced', u'indian', u'citi']
[u'bomber', u'upset', u'magpi']
[u'bomb', u'suspect', u'releas', u'british', u'custodi']
[u'boomer', u'greec']
[u'ramp', u'alaskan', u'oper']
[u'brisban', u'task', u'forc', u'address', u'climat', u'chang']
[u'builder', u'await', u'contract', u'detail']
[u'butcher', u'warn', u'sydney']
[u'canberra', u'stadium', u'smoke', u'free']
[u'case', u'set', u'oversea', u'medic', u'treatment', u'preced']
[u'ceasefir', u'hop', u'firm', u'resolut']
[u'closer']
[u'closer']
[u'collector', u'begin', u'gather', u'census', u'form']
[u'corbi', u'mother', u'welcom', u'appeal', u'news']
[u'costello', u'reaffirm', u'secur', u'commit']
[u'court', u'order', u'bomb', u'joker', u'chariti']
[u'crew', u'cooge', u'townhous', u'complex', u'blaze']
[u'darwin', u'detent', u'centr', u'refurbish', u'cost', u'blow']
[u'deal', u'forg', u'middl', u'east', u'ceas', u'draft']
[u'defenc', u'stretch', u'lebanon', u'deploy']
[u'hasler', u'michael', u'hagan']
[u'studi', u'show', u'cancer', u'cell', u'transmiss']
[u'poll', u'worker', u'arrest', u'falsifi', u'result']
[u'eagl', u'roll', u'kangaroo']
[u'eel', u'juggernaut', u'roll']
[u'return', u'england', u'number']
[u'england', u'beckham']
[u'england', u'fall', u'beckham']
[u'flight', u'arriv']
[u'food', u'suppli', u'confer', u'kick']
[u'fox', u'leed', u'return']
[u'franc', u'creek', u'report', u'releas']
[u'german', u'swim', u'vow', u'hard', u'line', u'dope']
[u'govt', u'consult', u'taxi', u'driver']
[u'gritti', u'gevaert', u'pull', u'euro', u'sprint', u'doubl']
[u'growth', u'worri', u'stock']
[u'hargreav', u'welcom', u'citizenship', u'applic']
[u'high', u'court', u'justic', u'prais', u'lawyer', u'asylum']
[u'immigr', u'give', u'detail', u'kill', u'asylum', u'seeker']
[u'indigen', u'artist', u'inspir', u'nativ', u'affair']
[u'indigen', u'inquiri', u'critic', u'disappoint', u'wild']
[u'indonesia', u'grant', u'christian', u'minut', u'execut']
[u'industri', u'question', u'illeg', u'tuna', u'fish', u'claim']
[u'israel', u'broaden', u'lebanon', u'oper']
[u'isra', u'incurs', u'continu', u'despit', u'ceasefir']
[u'israel', u'lebanon', u'ceas', u'resolut', u'report']
[u'israel', u'lebanon', u'warn', u'ceas', u'resolut']
[u'israel', u'push', u'deeper', u'vote']
[u'itali', u'arrest', u'secur', u'swoop']
[u'japan', u'accus', u'illeg', u'tuna', u'catch']
[u'judg', u'order', u'mental', u'health', u'test', u'tot']
[u'kelli', u'take', u'victori', u'oran', u'park']
[u'koala', u'rule', u'wont', u'hinder', u'develop']
[u'kookaburra', u'humbl', u'south', u'korea']
[u'kuszczak', u'pen', u'year', u'unit', u'deal']
[u'labor', u'call', u'airport', u'secur', u'overhaul']
[u'laidley', u'talk', u'kanga', u'chanc']
[u'latif', u'call', u'jone', u'forgiv']
[u'lebanon', u'deploy', u'possibl', u'downer']
[u'loeb', u'set', u'blister', u'pace', u'germani']
[u'incent', u'decid']
[u'get', u'year', u'jail', u'toddler', u'bash']
[u'condit', u'dandenong', u'assault']
[u'kill', u'singl', u'vehicl', u'accid']
[u'refus', u'bail', u'alleg', u'abduct']
[u'marin', u'jet', u'secur', u'final', u'spot']
[u'mcleod', u'like', u'play', u'docker']
[u'minist', u'seek', u'alic', u'town', u'camp', u'hous', u'solut']
[u'miss', u'fisherman', u'month']
[u'mourinho', u'benitez', u'clash', u'english', u'season', u'open']
[u'murray', u'feder', u'toronto', u'semi']
[u'muslim', u'protest', u'blair', u'foreign', u'polici']
[u'narrabundah', u'resid', u'tell', u'land', u'swap', u'deal']
[u'navi', u'parad', u'darwin']
[u'nobel', u'prize', u'winner', u'grass', u'admit', u'serv', u'nazi']
[u'regret', u'tuckey', u'stoush', u'beazley']
[u'govt', u'releas', u'mental', u'health', u'overhaul']
[u'revamp', u'scienc', u'curriculum']
[u'nuisanc', u'dog', u'cost', u'council', u'hundr']
[u'outback', u'host']
[u'pakistan', u'confirm', u'british', u'nation', u'bomb', u'plot']
[u'parti', u'brawl', u'occur', u'despit', u'secur', u'polic']
[u'perth', u'airport', u'rekindl', u'recycl', u'program']
[u'polic', u'free', u'person', u'arrest', u'british', u'terror']
[u'polic', u'hunt', u'brisban', u'attack']
[u'polic', u'search', u'doubl', u'stab']
[u'polic', u'trawl', u'terror', u'plot', u'evid']
[u'power', u'upset', u'bulldog']
[u'princip', u'seek', u'kindi', u'program', u'debat']
[u'introduc', u'learner', u'law']
[u'quak', u'shake', u'sumatra', u'island']
[u'ract', u'call', u'highway', u'upgrad']
[u'rebel', u'break', u'lanka', u'defenc']
[u'rooster', u'notch', u'penrith']
[u'scientist', u'probe', u'illeg', u'tuna', u'fish', u'claim']
[u'senden', u'trail', u'colorado', u'lead']
[u'serb', u'polic', u'open', u'hire', u'busi']
[u'shatter', u'kennedi', u'career', u'balanc']
[u'shuttl', u'readi', u'complet', u'space', u'station', u'nasa']
[u'lanka', u'rebel', u'fight', u'spread', u'north']
[u'studi', u'show', u'scientist', u'underestim', u'glacier']
[u'swan', u'roll', u'kirk']
[u'swan', u'prove', u'strong', u'demon']
[u'tasmanian', u'resum', u'seal', u'research']
[u'thousand', u'ralli', u'east', u'peac']
[u'thousand', u'ralli', u'peac', u'lebanon']
[u'coalit', u'soldier', u'kill', u'afghanistan']
[u'tiger', u'reign', u'suprem', u'catfight']
[u'tuna', u'catch', u'fraud', u'claim', u'anger', u'fishermen']
[u'teen', u'kill', u'collis']
[u'bomb', u'suspect', u'alleg', u'link', u'qaeda']
[u'univers', u'open', u'learn', u'hub']
[u'resolut', u'fan', u'east', u'ceasefir', u'hop']
[u'secur', u'council', u'pass', u'lebanon', u'ceas']
[u'seek', u'peacekeep', u'timor']
[u'discuss', u'peac', u'resolut', u'israel', u'lebanon']
[u'date', u'israel', u'lebanon', u'ceas']
[u'unanim', u'adopt', u'lebanes', u'peac', u'resolut']
[u'unanim', u'agre', u'lebanes', u'peac', u'resolut']
[u'vanston', u'call', u'asylum', u'seeker', u'claim']
[u'vaughan', u'confid', u'ash', u'defenc']
[u'govt', u'defend', u'cane', u'toad', u'hotlin']
[u'outstrip', u'nation', u'export']
[u'warn', u'star', u'hampshir']
[u'warrior', u'hammer', u'hapless', u'cowboy']
[u'wignal', u'worker', u'unlik', u'pay']
[u'william', u'semi']
[u'xenophon', u'call', u'law', u'protect', u'build']
[u'boss', u'propos', u'facelift']
[u'aid', u'decad']
[u'race', u'economi']
[u'black', u'annoy', u'french', u'tactic']
[u'welcom', u'medicar', u'swipe', u'card', u'plan']
[u'aussi', u'golfer', u'fire', u'open', u'cours', u'record']
[u'beach', u'whale']
[u'beatti', u'tear', u'elect', u'decis']
[u'beatti', u'weigh', u'earli', u'elect']
[u'beatti', u'decid', u'earli', u'poll']
[u'bigland', u'minut', u'chang']
[u'broadband', u'plan', u'salvag', u'trujillo']
[u'bulldog', u'dragon']
[u'bulldog', u'notch', u'easi', u'dragon']
[u'bush', u'pledg', u'continu', u'terror']
[u'campbel', u'defend', u'climat', u'chang', u'effort']
[u'campbel', u'battl', u'cigarett', u'butt']
[u'campbel', u'urg', u'action', u'cigarett', u'butt', u'litter']
[u'castro', u'walk', u'talk', u'chavez', u'visit']
[u'cattlemen', u'group', u'push', u'indigen']
[u'boss', u'focus', u'relationship']
[u'ceasefir', u'midopen']
[u'chao', u'grip', u'british', u'airport']
[u'chavez', u'regist', u'contest', u'decemb', u'elect']
[u'child', u'death', u'spark', u'papuan', u'fight']
[u'clark', u'wife', u'lose', u'battl', u'cancer']
[u'closer']
[u'closer']
[u'committe', u'review', u'student', u'visit', u'canberra']
[u'cuba', u'get', u'glimps', u'post', u'castro']
[u'detect', u'investig', u'suspici']
[u'docker', u'straight']
[u'downer', u'urg', u'travel', u'alert']
[u'drought', u'crippl', u'china', u'water', u'suppli']
[u'drought', u'respons', u'ancient', u'anim', u'extinct']
[u'eel', u'coach', u'jason', u'taylor']
[u'eel', u'maintain', u'win', u'form']
[u'england', u'name', u'unchang', u'squad']
[u'countri', u'plan', u'robust', u'forc', u'lebanon']
[u'famili', u'oppos', u'govt', u'migrat']
[u'feder', u'face', u'gasquet', u'canada', u'final']
[u'field', u'oppos', u'migrat', u'senat']
[u'fight', u'continu', u'lankan', u'peninsula']
[u'figur', u'loom', u'student', u'sexual', u'assault', u'crisi']
[u'caus', u'damag', u'ambul', u'build']
[u'firefight', u'bureaucrat', u'issu', u'caus']
[u'terrorist', u'plot', u'foil', u'britain']
[u'fring', u'artist', u'work', u'bard']
[u'gay', u'lesbian', u'mark', u'marriag']
[u'gerrard', u'ronaldo', u'action', u'disgrac']
[u'govt', u'announc', u'medicar', u'swipe', u'card']
[u'govt', u'review', u'disabl', u'servic', u'provis']
[u'grant', u'avail', u'youth', u'initi']
[u'grass', u'condemn', u'nazi', u'confess']
[u'green', u'machin', u'roll']
[u'green', u'address', u'global', u'warm', u'health', u'develop']
[u'green', u'seek', u'action', u'illeg', u'tuna']
[u'green', u'point', u'colorado', u'lead']
[u'hawk', u'break', u'lose', u'streak']
[u'hezbollah', u'down', u'isra', u'helicopt', u'lebanon']
[u'high', u'speed', u'internet', u'option', u'trujillo']
[u'hobart', u'ralli', u'support', u'lebanon', u'ceas']
[u'hockey', u'urg', u'meet', u'strike', u'fine', u'worker']
[u'howard', u'concern', u'east', u'peac', u'deal']
[u'warn', u'world', u'complac']
[u'iemma', u'say', u'classroom', u'demount', u'store']
[u'indigen', u'expert', u'seek', u'govt', u'back']
[u'injur', u'roof', u'jumper', u'face', u'court']
[u'insur', u'bodi', u'deni', u'ralph', u'risk', u'claim']
[u'surgeri', u'medicar', u'rebat', u'scheme', u'confirm']
[u'israel', u'lebanon', u'agre', u'ceas']
[u'israel', u'attack', u'convoy', u'approv', u'say']
[u'israel', u'hezbollah', u'agre', u'ceas', u'time']
[u'isra', u'cabinet', u'approv', u'ceas', u'plan']
[u'isra', u'cabinet', u'vote', u'truce', u'plan']
[u'israel', u'consid', u'plan']
[u'joyc', u'look', u'amend', u'migrat']
[u'kookaburra', u'hold', u'south', u'korean']
[u'kosmina', u'talk', u'roo']
[u'chanc', u'cat']
[u'lazaridi', u'kuwait', u'clash']
[u'lebanon', u'agre', u'ceas', u'resolut']
[u'lebanon', u'agre', u'requir']
[u'lebanon', u'israel', u'agre', u'ceas', u'date', u'annan', u'say']
[u'lebanon', u'open']
[u'liber', u'readi', u'earli', u'elect', u'flegg', u'say']
[u'loeb', u'close', u'germani']
[u'lownd', u'win', u'oran', u'park']
[u'mandatori', u'anti', u'smoke', u'cinema', u'seek']
[u'kill', u'highway']
[u'undergo', u'surgeri', u'stab']
[u'maskaev', u'stop', u'rahman', u'heavyweight', u'titl']
[u'melbourn', u'dead', u'jamaican', u'hotel', u'room']
[u'melbourn', u'teacher', u'claim', u'citi', u'surf', u'crown']
[u'east', u'ceas', u'plan', u'finalis']
[u'migrat', u'hang', u'balanc']
[u'migrat', u'open']
[u'troop', u'south', u'afghanistan', u'say', u'nato']
[u'ill', u'rais', u'earli', u'poll', u'specul']
[u'speed', u'camera', u'target', u'black', u'spot']
[u'east', u'violenc']
[u'need', u'stem', u'cell', u'research', u'vote']
[u'overlap', u'climat', u'chang', u'task', u'forc']
[u'plan', u'tough', u'anti', u'gang', u'law']
[u'offshor', u'process', u'bill', u'passag', u'uncertain']
[u'opposit', u'attack', u'govt', u'unus', u'demount']
[u'organis', u'unawar', u'unregist', u'census', u'form']
[u'outback', u'organis', u'hope', u'host', u'event']
[u'overhaul', u'child', u'welfar', u'depart', u'overdu']
[u'cautious', u'lebanon', u'ceas']
[u'urg', u'face', u'japan', u'fish', u'accus']
[u'polic', u'appeal', u'inform', u'miss', u'backpack']
[u'polic', u'appeal', u'wit', u'alleg', u'sexual']
[u'polic', u'brisban', u'stab', u'attack', u'appear']
[u'polic', u'seek', u'inform', u'alleg', u'sexual', u'assault']
[u'polic', u'seek', u'wit', u'attempt', u'arm', u'robberi']
[u'polic', u'identifi', u'victim']
[u'protea', u'deni', u'terrorist', u'nicknam']
[u'qanta', u'chief', u'reject', u'jetstar', u'sale', u'specul']
[u'qanta', u'flag', u'shift', u'awa']
[u'qanta', u'finalis', u'redund']
[u'liber', u'readi', u'elect', u'flegg']
[u'quak', u'shake', u'central']
[u'racq', u'hail', u'road', u'safeti', u'chang']
[u'raider', u'steal', u'golden', u'point', u'tiger']
[u'record', u'field', u'gather', u'citi', u'surf']
[u'record', u'number', u'citi', u'surf']
[u'rescu', u'woman', u'charg', u'set', u'hous']
[u'rescuer', u'attempt', u'save', u'beach', u'whale']
[u'robertson', u'hail', u'doctor', u'registr']
[u'rooney', u'doubt', u'premiership', u'open']
[u'africa', u'warn', u'white', u'farmer', u'expropri']
[u'saint', u'edg', u'cat']
[u'saint', u'jump']
[u'saint', u'good', u'cat']
[u'scan', u'clear', u'kennedi', u'damag']
[u'score', u'kill', u'lanka', u'battl']
[u'sharapova', u'william', u'oust', u'semi', u'final']
[u'lankan', u'rebel', u'deni', u'offer', u'talk']
[u'lanka', u'readi', u'peac', u'talk']
[u'stanford', u'build', u'canada', u'lead']
[u'storm', u'hold', u'gallant', u'bronco']
[u'storm', u'surg', u'continu']
[u'teenag', u'win', u'award', u'youth', u'suicid', u'film']
[u'work', u'gazza', u'magic']
[u'thai', u'rebel', u'blast', u'kill']
[u'thousand', u'meander', u'tour']
[u'seed', u'sharapova', u'upset', u'dementieva']
[u'tyre', u'bomb', u'fire', u'threaten', u'hospit']
[u'call', u'media', u'restraint', u'terror', u'plot']
[u'flight', u'delay', u'continu']
[u'face', u'uruguay', u'world', u'play']
[u'kill', u'iraqi', u'rebel']
[u'open', u'hop', u'fade', u'hewitt']
[u'warrior', u'satisfi', u'cowboy']
[u'woman', u'die', u'shaft', u'fall']
[u'world', u'contend', u'busi']
[u'yarra', u'petrol', u'spill', u'probe']
[u'abalon', u'virus', u'threaten', u'tasmanian', u'industri']
[u'backbench', u'return', u'unschedul', u'estim']
[u'action', u'urg', u'adelaid', u'hill', u'transport']
[u'administr', u'unabl', u'answer', u'cowra', u'meatwork']
[u'allianc', u'seek', u'pacif', u'highway', u'upgrad']
[u'anticip', u'hospit', u'fund', u'plan']
[u'appeal', u'fund', u'address', u'meninde', u'lake', u'suppli']
[u'applic', u'seek', u'port', u'kembla', u'grant']
[u'armi', u'equip', u'lebanon', u'deploy']
[u'aussi', u'cyclist', u'shine']
[u'aussi', u'hope', u'win', u'beij', u'water', u'polo', u'gold']
[u'aussi', u'women', u'lift', u'water', u'polo', u'world']
[u'aust', u'economi', u'stabl', u'industri', u'forum', u'tell']
[u'australian', u'soldier', u'injur', u'rocket', u'attack']
[u'aust', u'troop', u'injur', u'baghdad']
[u'aust', u'tuna', u'fish', u'continu', u'despit', u'illeg']
[u'aust', u'deal', u'pave', u'cheaper', u'solar', u'power']
[u'backbench', u'sawford', u'announc', u'retir']
[u'flight', u'turn', u'mobil', u'phone', u'ring']
[u'bangladesh', u'wrap', u'seri', u'kenya']
[u'bendigo', u'bank', u'post', u'plus', u'profit']
[u'open']
[u'bomb', u'kill', u'tamil', u'tiger']
[u'boomer', u'beat', u'franc', u'world', u'champ', u'warm']
[u'boro', u'confirm', u'emerton']
[u'boswel', u'vow', u'help', u'meatwork', u'secur', u'visa']
[u'brown', u'public', u'vilifi', u'exclus', u'brethren']
[u'brown', u'reject', u'exclus', u'brethren', u'vilif']
[u'burton', u'doubt', u'final']
[u'bush', u'communiti', u'hold', u'outback']
[u'canberra', u'hospit', u'park', u'fee', u'effect']
[u'cattl', u'surveil', u'program', u'near']
[u'china', u'forbid', u'foreign', u'cartoon', u'prime', u'time']
[u'claim', u'medicar', u'swipe', u'card', u'fuel', u'doctor']
[u'closer']
[u'closer', u'news']
[u'club', u'target', u'polic', u'drug', u'oper']
[u'communiti', u'welcom', u'elector', u'commiss']
[u'concern', u'govt', u'antenat', u'care', u'plan']
[u'consid', u'moylan', u'contribut', u'say']
[u'coordin', u'baghdad', u'blast', u'kill', u'dozen']
[u'coron', u'kununurra', u'crash', u'inquest']
[u'costello', u'blame', u'state', u'hous', u'cost']
[u'costello', u'hous', u'comment', u'touch']
[u'council', u'seek', u'crime', u'blueprint']
[u'council', u'share', u'water', u'consult', u'cost']
[u'council', u'speak', u'irrig', u'waranga']
[u'cowdrey', u'austin', u'head', u'world', u'champ', u'squad']
[u'cowra', u'abattoir', u'hand', u'receiv']
[u'cowra', u'abattoir', u'receivership']
[u'crane', u'crash', u'gold', u'coast', u'marina']
[u'criterion', u'futur', u'unknown', u'auction', u'end']
[u'cronj', u'crash', u'caus', u'pilot', u'error']
[u'crow', u'injuri', u'list', u'grow']
[u'death', u'father', u'attempt', u'stop']
[u'death', u'father', u'killer', u'say', u'wife']
[u'darwin', u'hous', u'price', u'near', u'doubl']
[u'dementieva', u'down', u'jankov', u'claim', u'titl']
[u'doubt', u'remain', u'ceas', u'loom']
[u'eagl', u'chick', u'charg', u'strike']
[u'eagl', u'readi', u'peak', u'say', u'stenglein']
[u'economist', u'cast', u'doubt', u'popul', u'target']
[u'job', u'lose', u'internet', u'servic', u'close']
[u'investig', u'yarra', u'petrol', u'spill']
[u'farmer', u'fear', u'chemic', u'ban']
[u'farmer', u'predict', u'drought']
[u'feder', u'beat', u'gasquet', u'career', u'titl']
[u'destroy', u'cowra', u'guid', u'hall']
[u'forrest', u'blast', u'abstent', u'migrat', u'vote']
[u'fuel', u'price', u'hurt', u'govt', u'poll']
[u'giant', u'panda', u'babi', u'boom']
[u'gold', u'coast', u'offer', u'share', u'water', u'region']
[u'govt', u'bulli', u'senat', u'migrat']
[u'govt', u'detail', u'retir', u'villag', u'law']
[u'govt', u'say', u'renal', u'unit', u'give', u'prioriti']
[u'govt', u'scrap', u'asylum']
[u'grey', u'nomad', u'sparkl', u'gemfield']
[u'gympi', u'reject', u'oppon', u'offer', u'stand']
[u'hagan', u'swear', u'wasnt', u'condon', u'joey', u'spray']
[u'heathrow', u'departur', u'amid', u'secur']
[u'herbalist', u'join', u'regul', u'industri']
[u'hezbollah', u'fighter', u'kill', u'lebanon', u'israel']
[u'hop', u'post', u'mortem', u'shed', u'light', u'whale', u'death']
[u'hospit', u'stand', u'respons', u'doctor', u'misconduct']
[u'hous', u'standard', u'fail', u'meet', u'intern']
[u'howard', u'disappoint', u'immigr', u'scrap']
[u'howard', u'unveil', u'altern', u'fuel', u'packag']
[u'human', u'clear', u'megafauna', u'death']
[u'iemma', u'detail', u'plan', u'student', u'behaviour', u'centr']
[u'indonesia', u'deepli', u'regret', u'migrat', u'bill', u'failur']
[u'investig', u'widen', u'terror', u'plot']
[u'irrig', u'tell', u'plan', u'histor', u'season']
[u'israel', u'approv', u'peac', u'plan']
[u'israel', u'attack', u'continu', u'ahead', u'deadlin']
[u'israel', u'begin', u'withdraw', u'troop']
[u'isra', u'strike', u'continu', u'ahead', u'ceas']
[u'isra', u'troop', u'begin', u'lebanon', u'withdraw']
[u'israel', u'step', u'offens', u'ceas']
[u'jetstar', u'awa', u'intern', u'flight', u'staff']
[u'job', u'cowra', u'abattoir', u'slide', u'receivership']
[u'joey', u'face', u'week']
[u'joey', u'water', u'outburst']
[u'katan', u'suppli', u'water', u'golf', u'cours']
[u'kovco', u'case', u'wit', u'take', u'arab', u'phrase', u'claim']
[u'labor', u'attempt', u'delay', u'land', u'right', u'chang', u'fail']
[u'labor', u'consid', u'school', u'closur', u'delay']
[u'launceston', u'citi', u'council', u'approv', u'rat']
[u'launceston', u'rat', u'debat', u'continu']
[u'lebanon', u'ceas', u'come', u'effect']
[u'leighton', u'hold', u'see', u'strong', u'profit', u'increas']
[u'deflect', u'respons', u'hous', u'price']
[u'lion', u'roar', u'matthew']
[u'live', u'solo', u'take', u'environment', u'toll']
[u'local', u'myspac', u'launch', u'prompt', u'safeti', u'warn']
[u'log', u'detriment', u'possum', u'life', u'studi']
[u'loxton', u'unveil']
[u'subsidi', u'margin']
[u'mackay', u'identifi', u'miss', u'person']
[u'charg', u'school', u'fraud']
[u'die', u'snowi', u'mountain', u'accid']
[u'kill', u'weekend', u'motorbik', u'crash']
[u'mayor', u'seek', u'answer', u'purpos', u'town', u'camp']
[u'mcclaren', u'leav', u'door', u'ajar', u'beckham']
[u'meander', u'preced', u'larg', u'scale', u'project']
[u'mental', u'laps', u'hurt', u'bronco', u'hodg']
[u'migrat', u'passag', u'uncertain']
[u'migrat', u'scrap']
[u'migrat', u'papuan', u'exil', u'lawyer']
[u'death', u'investig']
[u'mini', u'mart', u'robber', u'jail']
[u'mix', u'recept', u'court', u'coach', u'experi']
[u'back', u'propos', u'name', u'elector']
[u'confid', u'restructur', u'ensur', u'csiro', u'lab']
[u'seek', u'chang', u'livestock', u'transport', u'concess']
[u'urg', u'accc', u'loongana', u'lime']
[u'murder', u'melbourn', u'funni', u'talent']
[u'muscat', u'skipper', u'socceroo']
[u'muster', u'provid', u'venu', u'minist', u'pastor']
[u'firefight', u'measur', u'counteract', u'land']
[u'guidelin', u'help', u'sort', u'drug', u'maze']
[u'law', u'retir', u'greater', u'protect']
[u'norcia', u'monasteri', u'artwork', u'display']
[u'korean', u'leader', u'appear', u'time']
[u'fair', u'trial', u'hick', u'soon', u'lawyer', u'say']
[u'govt', u'parti', u'criticis', u'plan', u'senat']
[u'north', u'west', u'monday', u'august']
[u'rush', u'player', u'say', u'ferguson']
[u'truck', u'monitor', u'eyr', u'peninsula']
[u'award', u'showcas', u'indigen', u'talent']
[u'aviat', u'buff', u'bush']
[u'open', u'dayer', u'wash', u'colombo']
[u'oper', u'tip', u'help', u'save', u'toddler']
[u'opposit', u'attack', u'govt', u'packag']
[u'opposit', u'hear', u'communiti', u'gordon', u'estat']
[u'pedestrian', u'cross', u'review', u'bus', u'experi']
[u'peopl', u'smuggler', u'dump', u'reef']
[u'owner', u'warn', u'calici', u'virus', u'releas']
[u'photo', u'castro', u'aliv']
[u'plan', u'riverina', u'ethanol', u'plant']
[u'pull', u'migrat']
[u'scrap', u'migrat']
[u'unveil', u'fuel', u'plan']
[u'withdraw', u'migrat', u'senat']
[u'polic', u'desper', u'petrol', u'theft']
[u'polic', u'examin', u'boat']
[u'polic', u'forens', u'sexual', u'harass', u'complaint']
[u'polic', u'investig', u'flyer', u'show', u'racism', u'aliv']
[u'polic', u'promis', u'check', u'offend']
[u'polic', u'seek', u'watch', u'hous', u'escape', u'backyard']
[u'pollock', u'ntini', u'doubt', u'dayer']
[u'pollut', u'help', u'marin', u'alien', u'spread']
[u'possibl', u'ajax', u'closur', u'rais', u'fear']
[u'professor', u'push', u'junk', u'food', u'price', u'increas']
[u'qanta', u'awa', u'decis', u'understand', u'andrew']
[u'cabinet', u'discuss', u'earli', u'elect']
[u'say', u'job', u'fair', u'lure', u'sydney', u'worker']
[u'reintroduc', u'plat', u'driver']
[u'rape', u'convict', u'doctor', u'stand']
[u'rescu', u'japanes', u'sailor', u'recov']
[u'research', u'back', u'wittenoom', u'resid', u'fight', u'stay']
[u'resid', u'settl', u'break', u'hill', u'newest', u'nurs']
[u'road', u'safeti', u'week', u'target', u'student', u'driver']
[u'rodeo', u'revenu', u'boost', u'coffer']
[u'roo', u'satisfi', u'davi', u'progress']
[u'saint', u'encourag', u'koschitzk', u'return']
[u'save', u'school', u'angri', u'inform', u'delay']
[u'secur', u'concern', u'threaten', u'factori', u'develop']
[u'secur', u'hotlin', u'get', u'lead', u'ruddock']
[u'servic', u'station', u'join', u'pay', u'petrol', u'push']
[u'share', u'market', u'make', u'slight', u'gain']
[u'sheen', u'critic', u'ref', u'perform']
[u'shipment', u'fodder', u'blame', u'livestock', u'death']
[u'shire', u'offic', u'emerg', u'centr']
[u'shortag', u'child', u'wit', u'support']
[u'singl', u'desk', u'chang', u'share']
[u'sivivatu', u'return', u'black', u'squad']
[u'articl', u'leav', u'obeid', u'stun', u'speechless']
[u'soldier', u'victim', u'random', u'rocket', u'attack']
[u'sydney', u'famili', u'swamp', u'tree', u'chang', u'expo']
[u'sorenstam', u'retain', u'home', u'crown']
[u'special', u'school', u'place', u'rise']
[u'stanford', u'stumbl', u'hand', u'kerr', u'canadian', u'crown']
[u'state', u'blame', u'rate', u'rise', u'costello']
[u'station', u'upgrad', u'tie', u'wimmera', u'transport']
[u'studi', u'find', u'bodi', u'imag', u'affect', u'percept']
[u'surgeon', u'colleg', u'back', u'mackay', u'doctor', u'alleg']
[u'tasmania', u'renal', u'unit', u'collaps', u'opposit']
[u'team', u'decad', u'midcourt']
[u'team', u'secur', u'fund', u'boost', u'assist', u'age']
[u'teen', u'charg', u'cardwel', u'stab']
[u'teen', u'face', u'court', u'attempt', u'rape', u'elder']
[u'timber', u'blame', u'loss', u'rat']
[u'toni', u'allan']
[u'bureaucrat', u'mine', u'town', u'excurs']
[u'townsvill', u'council', u'prepar', u'boundari', u'propos']
[u'plot', u'justifi', u'terror', u'law', u'keelti']
[u'uniqu', u'bridg', u'near', u'complet']
[u'unit', u'claim', u'underdog']
[u'announc', u'airlin', u'secur', u'rule']
[u'reduc', u'flight', u'threat', u'level']
[u'wheat', u'forecast', u'continu', u'drop']
[u'crime', u'rate', u'fall']
[u'wagga', u'council', u'announc', u'airport', u'secur']
[u'waugh', u'desper', u'start', u'black']
[u'wilson', u'beat', u'lehmann', u'intern', u'play']
[u'winegrow', u'urg', u'consolid']
[u'wizard', u'plan', u'compet', u'bank']
[u'woman', u'bodi', u'retriev', u'shaft']
[u'world', u'bank', u'urg', u'season', u'labour', u'plan', u'pacif']
[u'xenophon', u'push', u'super', u'equiti']
[u'young', u'hawk', u'guilti', u'bash']
[u'zinc', u'water', u'pastor', u'firm', u'fee']
[u'zone', u'anomali', u'young', u'town', u'hall', u'redevelop']
[u'cowra', u'meatwork', u'stand']
[u'academ', u'say', u'tafe', u'squeez', u'fund']
[u'accus', u'wrist', u'charg', u'court']
[u'accus', u'paedophil', u'arrest', u'thailand']
[u'announc', u'record', u'budget', u'surplus']
[u'letter', u'premier', u'peter', u'beatti']
[u'alic', u'upgrad', u'airport', u'improv', u'amen']
[u'black', u'toeava', u'centr']
[u'appeal', u'help', u'disappear', u'case']
[u'attack', u'unlik', u'alter', u'baghdad', u'mission', u'nelson']
[u'aust', u'die', u'iraq', u'blast', u'injuri']
[u'australian', u'judg', u'make', u'mark', u'english']
[u'australian', u'share', u'close', u'lower']
[u'aust', u'surgeon', u'help', u'somali']
[u'baghdad', u'rocket', u'attack', u'spark', u'reloc', u'talk']
[u'beatti', u'announc', u'earli', u'elect']
[u'beatti', u'call', u'elect']
[u'beatti', u'call', u'general', u'elect']
[u'beatti', u'visit', u'governor', u'elect']
[u'bendigo', u'loddon', u'increas', u'crime']
[u'bendigo', u'bank', u'attribut', u'profit', u'style']
[u'bendigo', u'bank', u'consid', u'extend', u'western', u'servic']
[u'bendigo', u'council', u'call', u'fewer', u'poki']
[u'bidgood', u'call', u'surveil', u'mackay']
[u'trace', u'prove', u'nliss', u'worth']
[u'blayney', u'council', u'debat', u'communiti', u'centr']
[u'boom', u'collaps', u'littl', u'impact', u'gunn']
[u'die', u'sand', u'collaps', u'beach']
[u'budget', u'report', u'criticis', u'minist']
[u'bush', u'say', u'hezbollah', u'loser', u'conflict']
[u'seat', u'belt', u'year', u'away']
[u'canneri', u'win', u'export', u'deal']
[u'carpentaria', u'council', u'budget', u'capit', u'work']
[u'carpent', u'kalgoorli']
[u'cathol', u'church', u'welcom', u'scrap', u'migrat']
[u'cattl', u'feedlot', u'host', u'ethanol', u'plant']
[u'celebr', u'mark', u'year', u'japanes', u'surrend']
[u'chamber', u'mentor', u'say', u'team', u'mat']
[u'chick', u'cop', u'game']
[u'china', u'announc', u'bird', u'death']
[u'china', u'condemn', u'japanes', u'visit', u'shrine']
[u'closer']
[u'closer']
[u'closer']
[u'cobb', u'pleas', u'opposit', u'park']
[u'colombo', u'seri', u'match', u'postpon', u'amid', u'secur']
[u'compani', u'defend', u'airport', u'shop', u'centr', u'plan']
[u'coober', u'pedi', u'secur', u'adequ', u'mayor']
[u'coron', u'link', u'fruiter', u'shepparton', u'murder']
[u'council', u'consid', u'pass', u'merimbula']
[u'council', u'staff', u'protest', u'surpris', u'wagga', u'mayor']
[u'council', u'consid', u'macleay', u'river', u'sign']
[u'countri', u'student', u'help', u'senat']
[u'cronj', u'crash', u'caus', u'pilot', u'error']
[u'cuban', u'show', u'birthday', u'video', u'castro']
[u'cull', u'urg', u'aggress', u'invas']
[u'darwin', u'council', u'consid', u'fund', u'ship', u'shuttl']
[u'dawson', u'happi', u'repres', u'larger', u'elector']
[u'sale', u'better', u'expect']
[u'documentari', u'shed', u'light', u'death', u'socialit']
[u'drought', u'affect', u'farmer', u'moral', u'counsellor']
[u'duck', u'hunt', u'protest', u'repres', u'hull', u'wife']
[u'dwarf', u'better', u'know', u'justic', u'poll']
[u'famili', u'prepar', u'earli', u'elect']
[u'farmer', u'welcom', u'migrat', u'bill', u'collaps']
[u'fish', u'group', u'urg', u'govt', u'maintain', u'shark']
[u'foley', u'assur', u'northern', u'freeway', u'cost', u'wont', u'chang']
[u'foley', u'rise', u'pack']
[u'minist', u'question', u'defam', u'case']
[u'fortescu', u'begin', u'iron', u'mine', u'pilbara']
[u'garden', u'vision', u'turn', u'eyesor', u'award', u'winner']
[u'gaza', u'raid', u'injur']
[u'gold', u'discoveri', u'near', u'blayney']
[u'good', u'unfaz', u'brownlow', u'specul']
[u'govt', u'fuel', u'incent', u'help', u'north']
[u'govt', u'accus', u'contradict', u'stanc']
[u'govt', u'hear', u'farmer', u'chemic', u'access', u'concern']
[u'govt', u'pressur', u'hick', u'return']
[u'govt', u'urg', u'help', u'cowra', u'abattoir', u'worker']
[u'greec', u'cyprus', u'rememb', u'plane', u'crash']
[u'green', u'campaign', u'bald', u'hill', u'wind', u'farm']
[u'griffith', u'toddler', u'driveway']
[u'grimaldi', u'apologis', u'back', u'joey', u'spray']
[u'grog', u'card', u'optim']
[u'growcom', u'support', u'guest', u'worker', u'program']
[u'grower', u'urg', u'canker', u'farm']
[u'gwydir', u'park', u'elector', u'inquiri', u'good']
[u'tell', u'pull', u'sock']
[u'helicopt', u'crash', u'inquest', u'hear', u'passeng', u'want']
[u'hezbollah', u'claim', u'victori']
[u'hickss', u'father', u'doubt', u'trial', u'near']
[u'hilder', u'add', u'titan', u'squad']
[u'hodg', u'stay', u'bulldog', u'clash']
[u'hous', u'start', u'lighter', u'firefight']
[u'hous', u'downturn', u'hurt', u'boral', u'profit']
[u'howard', u'play', u'indonesian', u'asylum', u'warn']
[u'indian', u'prime', u'minist', u'call', u'kill']
[u'indigen', u'abus', u'inquiri']
[u'indigen', u'inquiri', u'term', u'refer', u'announc']
[u'indigen', u'child', u'abus', u'inquiri', u'meet', u'sceptic']
[u'indonesia', u'lament', u'migrat', u'failur']
[u'injur', u'soldier', u'queensland']
[u'insur', u'warn', u'motorist', u'convers']
[u'iron', u'project', u'receiv', u'intern']
[u'israel', u'begin', u'pullout', u'day', u'diplomat']
[u'israel', u'hezbollah', u'maintain', u'ceas']
[u'isra', u'promis', u'inquiri']
[u'joey', u'plea', u'deadlin', u'extend']
[u'john', u'seek', u'lighter', u'punish']
[u'johnston', u'mayor', u'report', u'threat', u'violenc']
[u'julia', u'creek', u'weather', u'station', u'final', u'fix']
[u'kalgoorli', u'polic', u'plan', u'action']
[u'koizumi', u'dismiss', u'foreign', u'critic', u'shrine', u'visit']
[u'koizumi', u'make', u'controversi', u'visit', u'shrine']
[u'koizumi', u'visit', u'shrine', u'wwii', u'anniversari']
[u'kovco', u'warn', u'play', u'pistol', u'inquiri']
[u'lake', u'grace', u'give', u'fund', u'flood', u'proof']
[u'landown', u'want', u'charlott', u'barn', u'stay']
[u'langer', u'satisfi', u'ash', u'prepar']
[u'lebanes', u'return', u'tear', u'suburb']
[u'clark', u'feel', u'ash', u'pain']
[u'letter', u'send', u'voter', u'reveal', u'plan']
[u'worri', u'timber', u'loss', u'result']
[u'maguir', u'undergo', u'second', u'oper']
[u'charg', u'assault', u'year', u'woman']
[u'die', u'eat', u'toadfish']
[u'mandurah', u'build', u'librari', u'falcon']
[u'mckinlay', u'flinder', u'govt', u'fund', u'flood']
[u'middl', u'east', u'ceas', u'lower', u'price']
[u'middl', u'east', u'ceas', u'maintain']
[u'middl', u'east', u'unrest', u'hit', u'cattl', u'export']
[u'east', u'ceas', u'hold', u'despit', u'skirmish']
[u'mildura', u'collis', u'leav', u'student', u'bruis']
[u'minist', u'defend', u'secur', u'region', u'airport']
[u'minist', u'mull', u'nation', u'process', u'wind', u'farm']
[u'minist', u'check', u'local', u'govt', u'financi', u'honesti']
[u'moon', u'land', u'tape', u'lose']
[u'concern', u'live']
[u'take', u'canberra', u'cab', u'confus', u'parliament']
[u'school', u'recognis', u'showcas', u'award']
[u'win', u'payout', u'school', u'break', u'read', u'promis']
[u'murray', u'lowest', u'inflow', u'record', u'govt', u'keep']
[u'musselro', u'council', u'approv', u'tourism', u'report']
[u'navi', u'dive', u'team', u'inspect', u'suspect']
[u'arriv', u'justifi', u'excis', u'island', u'vanston']
[u'break', u'hill', u'counsellor', u'offer', u'gambl']
[u'fuel', u'packag', u'benefit', u'manildra', u'plant']
[u'fuel', u'packag', u'benefit', u'rural', u'driver', u'scott']
[u'govt', u'regul', u'assess', u'cost']
[u'newspol', u'coalit']
[u'zealand', u'mourn', u'maori', u'queen', u'death']
[u'reli', u'pension', u'strain', u'north', u'coast']
[u'retir', u'financi', u'protect']
[u'nutley', u'return', u'home', u'join', u'rooster']
[u'mull', u'world', u'bank', u'pacif', u'worker', u'plan']
[u'obeid', u'ask', u'nomin', u'articl']
[u'opposit', u'fail', u'motion', u'confid']
[u'opposit', u'say', u'fyshwick', u'retail']
[u'opposit', u'say', u'govt', u'block', u'media', u'access']
[u'osteoporosi', u'patient', u'treatment', u'studi']
[u'paramed', u'tell', u'death', u'father', u'cough']
[u'passeng', u'safeti', u'shift', u'small', u'car']
[u'defend', u'migrat', u'demis']
[u'tabl', u'stem', u'cell', u'conscienc', u'vote']
[u'allow', u'stem', u'cell', u'conscienc', u'vote']
[u'health', u'minist', u'admit', u'slow', u'respons']
[u'polar', u'attract', u'depart', u'alaskan', u'date']
[u'polic', u'plan', u'industri', u'action', u'ax', u'worker']
[u'polic', u'seek', u'info', u'shoot', u'incid']
[u'popular', u'pressur', u'extend', u'fring']
[u'premier', u'consid', u'promot', u'fund']
[u'premier', u'peter', u'beatti', u'announc', u'earli', u'elect']
[u'prendergast', u'appeal']
[u'purfleet', u'rock', u'throw', u'problem', u'polic']
[u'govt', u'launch', u'attack', u'elect', u'campaign']
[u'poll', u'date', u'spark', u'candid', u'scrambl']
[u'premier', u'call', u'elect']
[u'queensland', u'poll']
[u'recruit', u'concern', u'cloud', u'expans', u'plan']
[u'redund', u'abattoir', u'worker', u'give', u'tafe', u'train']
[u'reef', u'arriv', u'bring', u'mainland', u'green']
[u'refere', u'boss', u'robert', u'finch']
[u'refere', u'boss', u'say', u'abus', u'wont', u'toler']
[u'region', u'theft', u'drug', u'rise', u'polic']
[u'renmark', u'countri', u'club', u'cost']
[u'reward', u'offer', u'dead']
[u'riccardi', u'sum', u'cat', u'season']
[u'robert', u'decid', u'stand']
[u'sack', u'abattoir', u'worker', u'receiv']
[u'school', u'vote', u'prompt', u'confid', u'motion']
[u'secur', u'tight', u'india', u'mark', u'independ']
[u'senat', u'reject', u'exclus', u'brethren', u'inquiri']
[u'senat', u'call', u'releas', u'biofuel', u'target', u'review']
[u'senat', u'question', u'advic', u'telstra', u'share']
[u'torch', u'help', u'glasshous', u'mtns', u'rescu']
[u'shark', u'stalwart', u'lose', u'battl', u'cancer']
[u'skill', u'migrant', u'scheme', u'work', u'vanston']
[u'smith', u'demot', u'black', u'clash']
[u'socceroo', u'take', u'kuwait', u'light']
[u'socceroo', u'stand', u'stand']
[u'charg', u'drop', u'paedophilia', u'claim']
[u'springbok', u'struggl', u'injuri']
[u'lankan', u'school', u'close']
[u'state', u'minist', u'hold', u'region', u'cabinet', u'meet']
[u'storm', u'bring', u'hail', u'blanket', u'sydney']
[u'supermarket', u'giant', u'remot', u'store']
[u'suprem', u'court', u'mention', u'costa', u'defam', u'case']
[u'sydney', u'step', u'fund', u'servic']
[u'talk', u'continu', u'abduct', u'journalist']
[u'tanker', u'spill', u'tonn', u'crude', u'indian']
[u'budget', u'blow', u'result', u'restructur']
[u'coron', u'deliv', u'find', u'woman', u'death']
[u'tasmanian', u'face', u'wait', u'convers']
[u'terror', u'suspect', u'kidnap', u'court', u'hear']
[u'thousand', u'ralli', u'celebr', u'peac', u'aceh']
[u'tidbinilla', u'put', u'stellar']
[u'tiger', u'wont', u'endors', u'steroid', u'wallac']
[u'toaster', u'caus', u'hous']
[u'enterpris', u'grant', u'poppi', u'process', u'licenc']
[u'tuna', u'studi', u'chang', u'fish', u'harvest']
[u'govt', u'lower', u'secur', u'threat', u'level']
[u'union', u'back', u'govt', u'process', u'migrant', u'abattoir']
[u'academ', u'discuss', u'jazeera', u'impact']
[u'issu', u'passport', u'despit', u'secur', u'concern']
[u'journalist', u'kidnap', u'gaza']
[u'govt', u'accus', u'sell', u'access', u'minist']
[u'taxi', u'trial', u'safeti', u'screen']
[u'victorian', u'taxi', u'driver', u'meet', u'discuss', u'safeti']
[u'race', u'get', u'safeti', u'approv']
[u'wag', u'recruit', u'labor']
[u'wallabi', u'back', u'waugh', u'breakdown', u'abil']
[u'polic', u'ralli', u'rise']
[u'push', u'feder', u'drought', u'relief', u'fund']
[u'clear', u'swan', u'valley', u'brickwork']
[u'wesfarm', u'post', u'profit']
[u'wodonga', u'polic', u'pleas', u'crime', u'reduct']
[u'woman', u'bodi', u'forster', u'motel']
[u'work', u'stop', u'wiluna', u'west', u'site']
[u'million', u'fund', u'alloc']
[u'abalon', u'fisheri', u'close', u'virus', u'check']
[u'accc', u'recommend', u'threaten', u'phone', u'rental', u'pariti']
[u'accc', u'reject', u'tabcorp', u'takeov']
[u'accid', u'rescu', u'disput', u'near']
[u'deni', u'delay', u'school', u'closur', u'debat']
[u'adelaid', u'oval', u'hous', u'sheffield', u'shield']
[u'akhtar', u'rule', u'final', u'test']
[u'alinta', u'post', u'half', u'year', u'profit']
[u'black', u'ditch', u'rotat', u'europ', u'tour']
[u'alleg', u'paedophil', u'flee', u'thailand', u'polic']
[u'push', u'hardi', u'exempt']
[u'anti', u'group', u'target', u'south', u'east', u'seat']
[u'announc', u'offic', u'attract', u'fund']
[u'armi', u'discharg', u'recruit', u'accus', u'murder']
[u'arson', u'accus', u'escap', u'girlfriend', u'court', u'tell']
[u'artist', u'mourn', u'loss', u'local', u'work']
[u'assur', u'specialist', u'servic', u'continu']
[u'astronom', u'vote', u'planet']
[u'auditor', u'criticis', u'road', u'mainten']
[u'australia', u'play', u'malaysia', u'seri']
[u'baghdad', u'blast', u'kill', u'clash', u'erupt']
[u'bangladesh', u'complet', u'kenya', u'rout']
[u'bateman', u'compani', u'build', u'nowra', u'centr']
[u'beatti', u'plan', u'extend', u'water', u'rebat', u'state']
[u'beatti', u'promis', u'water', u'plan']
[u'beatti', u'quit', u'labor', u'lose', u'poll']
[u'beazley', u'back', u'stem', u'cell', u'conscienc', u'vote']
[u'bike', u'rider', u'rob', u'assault']
[u'bjelk', u'petersen', u'prepar', u'challeng', u'nanango', u'seat']
[u'black', u'back', u'brown', u'lion', u'captainci']
[u'bleak', u'aborigin', u'land', u'right']
[u'blue', u'whale', u'ancestor', u'gentl', u'giant']
[u'brickwork', u'approv', u'generat', u'concern']
[u'break', u'hill', u'local', u'audit', u'falconio', u'film']
[u'cane', u'smut', u'emerg', u'respons', u'rule']
[u'caravan', u'park', u'landlord', u'meet', u'posit']
[u'maker', u'offer', u'ajax', u'rescu', u'packag']
[u'knock', u'equip', u'bushfir', u'probe', u'hear']
[u'chao', u'engulf', u'british', u'airport']
[u'civilian', u'flood', u'south', u'lebanon']
[u'civilian', u'return', u'lebanon']
[u'closer']
[u'closer']
[u'closer']
[u'commonwealth', u'stay', u'clear', u'carbon', u'scheme']
[u'concern', u'damag', u'chip', u'machineri', u'impact']
[u'contin', u'collid', u'form', u'australia', u'research']
[u'convict', u'paedophil', u'fight', u'payout']
[u'cool', u'chang', u'breed', u'bear']
[u'corbi', u'case', u'worri', u'drug', u'ring', u'accus', u'court', u'tell']
[u'costello', u'await', u'impact', u'consum', u'confid', u'drop']
[u'costello', u'say', u'wage', u'growth', u'figur', u'beli', u'concern']
[u'costigan', u'cowboy', u'radar']
[u'council', u'consid', u'loiter', u'sign', u'harrington']
[u'council', u'consid', u'phillip', u'island', u'develop']
[u'council', u'crack', u'alcohol', u'relat', u'crime']
[u'council', u'increas', u'pool', u'entri', u'cost']
[u'council', u'rush', u'hold', u'elect']
[u'cultur', u'short', u'cut', u'king', u'crash']
[u'danih', u'look', u'inspir']
[u'deal', u'young', u'disabl', u'age', u'care']
[u'develop', u'doubt', u'toxic', u'chemic', u'discoveri']
[u'develop', u'limbo', u'increas', u'daintre', u'threat']
[u'devil', u'dump']
[u'discuss', u'paper', u'suggest', u'abolit', u'hospit']
[u'dog', u'demon', u'play', u'canberra']
[u'dolphin', u'death', u'prompt', u'border', u'secur']
[u'downer', u'say', u'embassi', u'stay', u'baghdad']
[u'dredg', u'murchison', u'river']
[u'drug', u'ring', u'accus', u'book', u'courier', u'flight']
[u'eagl', u'play', u'minor', u'premiership', u'aspir']
[u'elect', u'campaign', u'get', u'western']
[u'emerg', u'crew', u'clean', u'strathalbyn', u'pesticid']
[u'environ', u'group', u'carbon', u'trade']
[u'environ', u'victoria', u'push', u'water', u'task', u'forc']
[u'timor', u'court', u'rule', u'leadership', u'vote', u'legitim']
[u'fall', u'festiv', u'ticket', u'queue', u'mess', u'anger', u'alderman']
[u'farmer', u'hail', u'success', u'tuna', u'trial', u'program']
[u'farmer', u'urg', u'lobbi', u'weed', u'control']
[u'father', u'control', u'plung']
[u'feder', u'take', u'tough', u'cincinnati']
[u'govt', u'oppos', u'carbon', u'trade', u'plan']
[u'fierc', u'debat', u'expect', u'stem', u'cell']
[u'final', u'need', u'gain', u'respect', u'connolli']
[u'fin', u'minor', u'breach', u'worsen', u'driver', u'shortag']
[u'fine', u'young', u'jail', u'rape', u'attempt']
[u'fish', u'parti', u'miss', u'offici', u'registr']
[u'food', u'watchdog', u'review', u'tran', u'fatti', u'acid']
[u'footi', u'push', u'upset', u'launceston', u'tourism', u'group']
[u'star', u'enter', u'hall', u'fame']
[u'worker', u'free', u'nigeria']
[u'freddi', u'back', u'ash']
[u'fund', u'shortfal', u'blame', u'degre']
[u'gentlemen', u'manner', u'cloud', u'estim', u'meet']
[u'gospel', u'festiv', u'remain', u'toowoomba']
[u'govt', u'defend', u'fund']
[u'govt', u'guarante', u'cowra', u'meatwork', u'entitl']
[u'gradi', u'hensbi']
[u'greenhous', u'plan', u'lift', u'electr', u'price']
[u'greenhous', u'plan', u'crippl', u'resourc', u'sector']
[u'green', u'light', u'give', u'poppi', u'processor']
[u'griev', u'famili', u'urg', u'care', u'sand', u'cave']
[u'hackett', u'upset', u'final', u'schedul']
[u'henin', u'hardenn', u'set', u'sight', u'open']
[u'histor', u'tourist', u'train', u'oper', u'support']
[u'hous', u'committe', u'actcoss']
[u'howard', u'support', u'draft', u'stem', u'cell']
[u'didnt', u'fee', u'say']
[u'illeg', u'fish', u'battl', u'stretch', u'ranger']
[u'iran', u'respond', u'halt', u'nuclear', u'plan']
[u'isra', u'continu', u'lebanon', u'withdraw']
[u'isra', u'strike', u'kill', u'gaza']
[u'israel', u'threaten', u'stop', u'withdraw']
[u'jail', u'program', u'crime', u'cycl']
[u'john', u'get', u'match', u'suspens']
[u'kovco', u'investig', u'face', u'unaccept', u'delay']
[u'labor', u'blame', u'uncertainti', u'telstra', u'slump']
[u'labor', u'oppos', u'allow', u'increas']
[u'labor', u'see', u'hypocrisi', u'subsidi']
[u'lack', u'rain', u'threaten', u'grain', u'crop']
[u'land', u'debat', u'lack', u'respect', u'tradit']
[u'landhold', u'warn', u'care', u'burn']
[u'lebanes', u'troop', u'south']
[u'pump', u'ash', u'seri']
[u'liber', u'reshuffl', u'wont', u'affect', u'voter', u'support', u'mcardl']
[u'life', u'sentenc', u'feroci', u'stab', u'murder']
[u'charg', u'ballarat', u'cemeteri', u'vandal']
[u'charg', u'fairi', u'meadow', u'attack']
[u'charg', u'steal', u'super', u'fund']
[u'mandurah', u'hold', u'extraordinari', u'elect']
[u'jail', u'year', u'murder']
[u'mcmillan', u'omit', u'champion', u'trophi', u'squad']
[u'melb', u'taxi', u'driver', u'secur']
[u'midwif', u'shortag', u'put', u'longreach', u'matern', u'servic']
[u'midwif', u'shortag', u'threaten', u'longreach', u'matern']
[u'migrant', u'scheme', u'fail', u'skill', u'shortag']
[u'minist', u'defend', u'handl', u'road']
[u'mock', u'plane', u'crash', u'test', u'emerg', u'servic']
[u'molik', u'make', u'earli', u'montreal', u'exit']
[u'monaro', u'wind', u'farm', u'propos', u'debat']
[u'mull', u'stem', u'cell', u'question']
[u'prepar', u'stem', u'cell', u'debat']
[u'baldi', u'prison']
[u'mulrunji', u'partner', u'describ', u'care']
[u'mysteri', u'virus', u'wipe', u'fli', u'fox']
[u'nation', u'award', u'highlight', u'porongurup', u'wine', u'success']
[u'newcastl', u'jail', u'fraud']
[u'elect', u'battleground', u'say', u'analyst']
[u'begin', u'week', u'mourn', u'maori', u'queen']
[u'offic', u'defend', u'investig', u'kovco', u'death']
[u'ogilvi', u'play', u'australian']
[u'open', u'triangular', u'abandon']
[u'orthopaed', u'servic', u'unchang', u'surgeon']
[u'pakistan', u'extradit', u'terror', u'suspect']
[u'palm', u'island', u'inquest', u'hear', u'griev', u'fianc']
[u'patterson', u'introduc', u'stem', u'cell']
[u'philippin', u'seek', u'help', u'spill']
[u'phonak', u'team', u'disband', u'landi', u'test']
[u'pip', u'irrig', u'channel', u'unrealist', u'irrig']
[u'plantagenet', u'shire', u'defend', u'club', u'evict', u'decis']
[u'attack', u'carbon', u'trade', u'scheme']
[u'deni', u'fund', u'crisi']
[u'issu', u'challeng', u'state']
[u'pipelin', u'plan', u'doubt']
[u'polic', u'investig', u'fatal', u'beach', u'cave']
[u'polic', u'investig', u'suspect', u'school', u'arson', u'attempt']
[u'polic', u'investig', u'talli', u'incid']
[u'polic', u'notic', u'drop', u'graffiti', u'charg']
[u'polic', u'probe', u'prompt', u'second', u'sack']
[u'polic', u'seek', u'chemist', u'robber']
[u'polic', u'seek', u'public', u'help', u'bendigo', u'stab']
[u'natal', u'plan', u'rais', u'bush', u'fear']
[u'prison', u'reform', u'compromis', u'custodi', u'inspector']
[u'profit', u'report', u'lift', u'share', u'market']
[u'punter', u'beatti', u'elect', u'race']
[u'push', u'arcadia', u'forest', u'add', u'nation']
[u'push', u'preserv', u'histor', u'gunnedah', u'build']
[u'elect', u'campaign', u'begin']
[u'rann', u'call', u'region', u'airport', u'secur', u'upgrad']
[u'rann', u'presid']
[u'rate', u'rise', u'crush', u'consum', u'confid']
[u'real', u'look', u'sign', u'rey']
[u'recent', u'rain', u'eas', u'byrock', u'water', u'crise']
[u'refuge', u'return', u'south', u'lebanon']
[u'renown', u'australian', u'playwright', u'die']
[u'renown', u'playwright', u'buzo', u'die']
[u'report', u'confirm', u'neglect', u'road', u'opposit']
[u'report', u'show', u'teen', u'mum', u'smoke']
[u'residenti', u'subdivis', u'rise']
[u'rooney', u'schole', u'suffer', u'match', u'ban']
[u'rat', u'opera', u'open', u'syndey']
[u'rubbl', u'greet', u'lebanon', u'refuge']
[u'scott', u'push', u'flag', u'burn', u'punish']
[u'senat', u'hear', u'cape', u'york', u'employ', u'worker', u'lose']
[u'offend', u'jail', u'murder', u'plot']
[u'sharon', u'condit', u'critic']
[u'shire', u'get', u'legal', u'advic', u'camel', u'decis']
[u'shredder', u'machin', u'oper', u'council', u'deal']
[u'socceroo', u'kuwait']
[u'socceroo', u'kuwait', u'break']
[u'somali', u'islamist', u'port']
[u'spain', u'fire', u'burn', u'size', u'area']
[u'springborg', u'move', u'defus', u'leadership', u'tension']
[u'state', u'council', u'select', u'robina', u'liber', u'candid']
[u'steve', u'corica', u'socceroo']
[u'student', u'concern', u'injur', u'classmat']
[u'student', u'prais', u'experi']
[u'sugar', u'price', u'drop']
[u'surgeri', u'delay', u'like', u'surgeon', u'deregist']
[u'syria', u'iran', u'claim', u'victori', u'lebanon']
[u'wine', u'get', u'research', u'boost']
[u'tension', u'rise', u'river', u'murray', u'water']
[u'time', u'run', u'elector', u'enrol']
[u'titan', u'push', u'ahead', u'turner', u'recruit']
[u'tonga', u'king', u'grow', u'sicker']
[u'tour', u'boss', u'flag', u'drug', u'scandal', u'damag']
[u'tripodi', u'retract', u'claim', u'corrupt', u'clear']
[u'pardon', u'execut', u'soldier']
[u'union', u'step', u'attack', u'rural', u'ambul']
[u'univers', u'fund', u'record', u'level', u'minist']
[u'look', u'speedi', u'lebanon', u'deploy']
[u'vanston', u'mull', u'option', u'nauru', u'detaine']
[u'vatskali', u'push', u'gurindji', u'cattl', u'station']
[u'energi', u'scheme', u'boost', u'power', u'price']
[u'wag', u'rise']
[u'warn', u'light', u'runner', u'delay', u'bridg']
[u'watchdog', u'probe', u'branch', u'stack', u'claim']
[u'water', u'safe', u'despit', u'alga', u'level', u'water']
[u'warn', u'feder', u'govt', u'nuclear', u'wast']
[u'weak', u'forecast', u'cloud', u'record', u'profit']
[u'wealth', u'barrier', u'water', u'crisi']
[u'wool', u'bodi', u'launch', u'nation', u'mules', u'assur']
[u'wool', u'grower', u'want', u'postpon', u'wool', u'levi', u'vote']
[u'work', u'begin', u'bathurst', u'hospit', u'redevelop']
[u'abba', u'make', u'assur', u'kidnap', u'cameraman']
[u'rais', u'offer', u'right']
[u'accept', u'state', u'view', u'wind', u'farm', u'code', u'campbel', u'tell']
[u'activist', u'slam', u'stem', u'cell', u'conscienc', u'vote']
[u'admin', u'cost', u'swallow', u'bathurst', u'hous', u'fund']
[u'adrift', u'fishermen', u'surviv', u'month']
[u'club', u'receiv', u'financi', u'windfal']
[u'black', u'want', u'maintain', u'wood', u'wallabi']
[u'land', u'famili', u'hungri', u'day', u'week']
[u'arrest', u'jonbenet', u'murder']
[u'arrest', u'jonbenet', u'ramsey', u'murder']
[u'asean', u'call', u'chang', u'free', u'trade', u'talk']
[u'asio', u'offic', u'reloc']
[u'asylum', u'seeker', u'transfer', u'nauru']
[u'australian', u'dead', u'indonesia']
[u'australian', u'pace', u'attack', u'superior', u'england', u'cooley']
[u'aust', u'reject', u'timor', u'mission']
[u'aust', u'soldier', u'injur', u'iraq', u'stabl', u'condit']
[u'author', u'monitor', u'tangl', u'whale']
[u'ballarat', u'mayor', u'appear', u'court']
[u'battl', u'heat', u'histor', u'wooden', u'pipelin']
[u'beatti', u'promis', u'cheaper', u'fuel', u'ethanol', u'plan']
[u'beatti', u'urg', u'consid', u'water', u'pipelin']
[u'bellingen', u'jazz', u'festiv', u'attract', u'intern']
[u'biki', u'charg', u'nightclub', u'shoot']
[u'bluescop', u'buy', u'smorgon', u'share']
[u'brack', u'baillieu', u'prepar', u'poll', u'battl']
[u'brickwork', u'decis', u'set', u'danger', u'preced']
[u'brisban', u'ratepay', u'face', u'cabinet']
[u'bushfir', u'inquest', u'adelaid']
[u'seatbelt', u'instal', u'timelin', u'criticis']
[u'busselton', u'properti', u'market', u'continu', u'grow']
[u'inform', u'know', u'croc', u'shoot']
[u'call', u'open', u'protect', u'scallop']
[u'campbel', u'return', u'critic', u'brickplant']
[u'canberra', u'garbag', u'collector', u'strike']
[u'cane', u'smut', u'fall', u'outsid', u'guidelin', u'commonwealth']
[u'carr', u'warn', u'tighter', u'disclosur', u'rule']
[u'cell', u'open']
[u'charact', u'actor', u'kirbi', u'die']
[u'chariti', u'withdraw', u'welfar', u'work', u'scheme']
[u'clijster', u'retir', u'wrist', u'injuri', u'montreal']
[u'cloncurri', u'hospit', u'lose', u'doctor', u'privat', u'sector']
[u'closer']
[u'closer']
[u'closer']
[u'cole', u'myer', u'announc', u'takeov', u'talk']
[u'cole', u'myer', u'confirm', u'ownership', u'talk']
[u'cole', u'myer', u'report', u'strong', u'sale']
[u'cole', u'myer', u'share', u'soar', u'takeov', u'talk']
[u'cole', u'see', u'driver', u'cut', u'mileag']
[u'commerci', u'build', u'boom', u'offset', u'slump', u'home']
[u'communiti', u'mourn', u'brother', u'freak', u'accid']
[u'communiti', u'tell', u'dept', u'educ', u'concern']
[u'concern', u'lack', u'fund', u'councillor', u'rise']
[u'construct', u'firm', u'charg', u'tunnel', u'death']
[u'corbi', u'prison', u'sentenc']
[u'cost', u'legal', u'battl', u'port', u'bomb', u'clear', u'absurd']
[u'council', u'close', u'hampden', u'bridg', u'sink', u'concern']
[u'council', u'confid', u'fluorid', u'fund']
[u'council', u'turnaround', u'plastic', u'flower', u'cemeteri']
[u'council', u'releas', u'govt', u'report', u'oper']
[u'council', u'price', u'extens', u'seek', u'feedback']
[u'council', u'warn', u'land', u'disput', u'ramif']
[u'court', u'grant', u'polic', u'extra', u'time', u'quiz', u'terror']
[u'court', u'hear', u'letter', u'refer', u'martyrdom']
[u'crow', u'welcom', u'gun', u'bulldog', u'clash']
[u'urg', u'australian', u'consid', u'recycl', u'water']
[u'death', u'father', u'stand', u'trial']
[u'deadlin', u'book', u'revamp']
[u'doctor', u'urg', u'better', u'outpati', u'servic', u'drug']
[u'dodd', u'tip', u'bigger', u'thing', u'impress']
[u'doubl', u'mean', u'prompt', u'street', u'chang']
[u'dubbo', u'outlin', u'radiotherapi', u'unit']
[u'england', u'bang', u'greec']
[u'ethiopia', u'flood', u'kill', u'hundr']
[u'minist', u'discuss', u'terror', u'threat']
[u'expert', u'urg', u'water', u'data', u'share']
[u'farmer', u'urg', u'consid', u'nation', u'emiss', u'target']
[u'farm', u'raid', u'leav', u'chicken', u'dead']
[u'fear', u'core', u'teach', u'suffer', u'chang']
[u'fear', u'region', u'driver', u'lose', u'sydney']
[u'femal', u'prison', u'bowen', u'park', u'clean']
[u'fishermen', u'argu', u'shark', u'refug', u'access']
[u'folbigg', u'lawyer', u'flag', u'appeal']
[u'dictat', u'stroessner', u'die']
[u'fuel', u'keep', u'qanta', u'profit']
[u'furious', u'malthous', u'defend', u'tarrant']
[u'injuri', u'problem', u'springbok']
[u'geelong', u'announc', u'intern', u'review']
[u'govt', u'aim', u'telstra', u'monopoli']
[u'govt', u'opposit', u'commemor', u'battl', u'long']
[u'govt', u'union', u'recycl', u'water']
[u'grid', u'fee', u'kangaroo', u'busi']
[u'dump', u'kangaroo']
[u'hiddink', u'russian', u'stint', u'success', u'start']
[u'hird', u'play', u'season', u'bomber']
[u'historian', u'meet', u'improv', u'school', u'teach']
[u'hobart', u'airport', u'develop', u'assess', u'rigor']
[u'hop', u'hour', u'librari', u'chute', u'boost']
[u'howard', u'urg', u'histori', u'curriculum', u'revamp']
[u'hydro', u'rethink', u'pipelin', u'demolit', u'plan']
[u'immedi', u'deploy', u'lebanes', u'troop']
[u'indonesia', u'cut', u'corbi', u'sentenc']
[u'investig', u'launch', u'fertilis', u'plant']
[u'israel', u'call', u'peac', u'plan', u'enforc']
[u'israel', u'transfer', u'half', u'occupi', u'lebanon', u'zone']
[u'israel', u'urg', u'action', u'arm', u'embargo']
[u'itali', u'beat', u'win', u'germani', u'dutch']
[u'jam', u'hardi', u'report', u'profit', u'slump']
[u'jcus', u'student', u'associ', u'close', u'job', u'lose']
[u'joey', u'reliev']
[u'kookaburra', u'secur', u'seri', u'south', u'korea']
[u'koutoufid', u'commit', u'blue']
[u'labor', u'question', u'goward', u'appoint']
[u'labor', u'jam', u'hardi', u'debat', u'fail']
[u'landown', u'enlist', u'bettong', u'reveget', u'plan']
[u'land', u'right', u'chang', u'attack', u'social', u'justic', u'academ']
[u'land', u'suppli', u'shortag', u'drive', u'hous', u'price']
[u'target', u'retail', u'sell', u'cigarett', u'teen']
[u'lebanon', u'deploy', u'unlik', u'downer']
[u'welcom', u'land', u'right', u'amend']
[u'liber', u'senat', u'break', u'rank', u'support', u'pregnanc']
[u'long', u'command', u'want', u'medal', u'review']
[u'look', u'underli', u'health', u'problem', u'drink']
[u'charg', u'pedestrian', u'assault']
[u'deni', u'deliber', u'start', u'fatal', u'hostel']
[u'kill', u'western', u'highway', u'crash']
[u'marin', u'park', u'endang', u'futur', u'fish']
[u'maroochi', u'councillor', u'quit', u'state']
[u'martin', u'support', u'land', u'right', u'chang', u'question']
[u'mayor', u'complain', u'region', u'airlin', u'safeti']
[u'mayor', u'welcom', u'govt', u'decis', u'anna', u'resort']
[u'mccaw', u'readi', u'waugh']
[u'medic', u'worker', u'kidnap', u'afghanistan']
[u'melbourn', u'compani', u'fin', u'worker', u'death']
[u'mildura', u'unlik', u'secur', u'perman', u'magistr']
[u'militari', u'death', u'notif', u'criticis']
[u'minist', u'invit', u'view', u'bushland', u'site']
[u'minist', u'reject', u'high', u'school', u'student', u'drug', u'test']
[u'molik', u'give', u'open', u'wild', u'card']
[u'mosquito', u'confer', u'hear', u'grim', u'dengu', u'outlook']
[u'mother', u'revers']
[u'motorist', u'warn', u'convers', u'delay']
[u'call', u'inquiri', u'long', u'medal']
[u'defend', u'increas', u'print', u'allow']
[u'divid', u'stem', u'cell', u'approach']
[u'split', u'stem', u'cell', u'approach']
[u'multiplex', u'post', u'profit']
[u'murray', u'river', u'flow', u'record']
[u'murray', u'stun', u'feder']
[u'nasa', u'set', u'atlanti', u'launch', u'date']
[u'nimmitabel', u'tri', u'shore', u'water', u'suppli']
[u'degre', u'north', u'coast', u'student']
[u'back', u'titan', u'turner']
[u'older', u'children', u'highest', u'level', u'tooth']
[u'opposit', u'plan', u'water', u'project', u'boost']
[u'opposit', u'tell', u'come', u'clean', u'wast', u'dump', u'plan']
[u'passeng', u'inform', u'increas', u'terror']
[u'upset', u'decis', u'close', u'south', u'burnett']
[u'pension', u'charg', u'superannu', u'sting']
[u'phase', u'handov', u'resolv', u'rescu', u'disput']
[u'philippin', u'plea', u'spill', u'help']
[u'plane', u'threat', u'hoax', u'polic']
[u'plan', u'lebanon', u'forc', u'shape']
[u'plot', u'blow', u'school', u'fantasi']
[u'polic', u'appeal', u'wit', u'shoot']
[u'polic', u'investig', u'latest', u'jogger', u'attack']
[u'polic', u'investig', u'threat', u'fiji', u'sydney', u'flight']
[u'polic', u'question', u'pedestrian', u'attack']
[u'polic', u'seek', u'alic', u'spring', u'jail', u'escape']
[u'polic', u'radar', u'search', u'clue', u'murder']
[u'politician', u'tribut', u'long', u'veteran']
[u'politician', u'tribut', u'vietnam', u'veteran']
[u'postal', u'worker', u'hockeyroo', u'steal', u'olymp']
[u'prison', u'artwork', u'fetch']
[u'qanta', u'profit', u'plummet']
[u'need', u'doctor', u'health', u'minist']
[u'radio', u'telescop', u'construct', u'benefit', u'local']
[u'rebel', u'kill', u'lanka', u'fight', u'militari']
[u'research', u'applaud', u'stem', u'cell', u'conscienc', u'vote']
[u'resid', u'face', u'summer', u'public', u'swim']
[u'rise', u'fuel', u'price', u'prompt', u'drove', u'reviv']
[u'rushdi', u'spring', u'defenc', u'guenter', u'grass']
[u'salin', u'water', u'overcom']
[u'school', u'travel', u'program', u'expand']
[u'scud', u'give', u'open', u'wild', u'card']
[u'king', u'victim', u'famili', u'seek', u'justic', u'inquiri']
[u'season', u'injur', u'brown']
[u'seat', u'decid', u'coalit', u'premier', u'flegg']
[u'second', u'stringer', u'prove', u'theyr']
[u'sendt', u'urg', u'govern', u'data', u'valid']
[u'seymour', u'avoid', u'charg', u'hotel', u'incid']
[u'shoalhaven', u'team', u'meet', u'costello', u'action', u'plan']
[u'showground', u'revamp', u'fee', u'draw', u'critic']
[u'sink', u'telstra', u'share', u'price', u'prompt', u'futur', u'fund']
[u'snowi', u'hydro', u'water', u'licens', u'sacrosanct']
[u'socceroo', u'instal', u'earli', u'asian', u'favourit']
[u'soldier', u'southern', u'lebanon']
[u'somar', u'seek', u'answer', u'border', u'shoot']
[u'south', u'africa', u'pull', u'lanka', u'seri']
[u'stag', u'return', u'school', u'violent', u'student']
[u'stanhop', u'say', u'anti', u'dragway', u'feel', u'offens']
[u'stem', u'cell', u'research', u'push', u'gain', u'momentum']
[u'strauss', u'tell', u'stand', u'press', u'ash', u'claim']
[u'strong', u'wind', u'whyalla', u'dust', u'woe']
[u'summit', u'agre', u'nation', u'approach', u'histori']
[u'summit', u'determin', u'aust', u'histori', u'curriculum']
[u'suspect', u'object', u'identifi', u'moor', u'buoy']
[u'takeov', u'panel', u'investig', u'mine', u'move']
[u'takeov', u'specul', u'profit', u'report', u'boost', u'market']
[u'talli', u'hotel', u'complaint', u'withdraw']
[u'tamworth', u'secur', u'polic', u'chaplain']
[u'teacher', u'confess', u'jonbenet', u'murder']
[u'teacher', u'confess', u'jonbenet', u'ramsey', u'murder']
[u'teacher', u'begin', u'roll', u'strike']
[u'teacher', u'seek', u'boost', u'counsellor', u'number']
[u'teen', u'plead', u'guilti', u'loxton', u'woman', u'murder']
[u'tennant', u'creek', u'ratepay', u'rat', u'hike']
[u'terror', u'concern', u'water', u'shortag', u'studi']
[u'titan', u'confid', u'secur', u'turner']
[u'tourism', u'slump', u'expect', u'region']
[u'toxicologist', u'dismiss', u'school', u'drug', u'test', u'propos']
[u'translat', u'error', u'confus', u'welsh', u'cyclist']
[u'tripodi', u'revel', u'prompt', u'audit']
[u'troop', u'southern', u'lebanon']
[u'race', u'coupl']
[u'face', u'court', u'cliff', u'robberi']
[u'student', u'protest', u'israel', u'offens']
[u'inflat', u'figur', u'lift', u'market']
[u'vandal', u'damag', u'wind', u'tower']
[u'vanston', u'accus', u'labor', u'skew', u'skill', u'migrant']
[u'victoria', u'plan', u'harsher', u'drink', u'drive', u'law']
[u'virgin', u'mari', u'statu', u'arriv', u'adelaid']
[u'state', u'school', u'lose', u'student']
[u'whale', u'think', u'toothi', u'fossil']
[u'wine', u'godfath', u'evan', u'die']
[u'women', u'lose', u'dead', u'duck', u'dump', u'appeal']
[u'hour', u'health', u'helplin', u'launch']
[u'acci', u'say', u'union', u'push', u'minimum', u'wage', u'rise']
[u'adelaid', u'perth', u'transport', u'plan', u'releas']
[u'offic', u'arrest', u'dili', u'violenc']
[u'ajax', u'custom', u'count', u'stock']
[u'ajax', u'custom', u'fail', u'agre', u'rescu', u'deal']
[u'ajax', u'worker', u'entitl', u'costello']
[u'ajax', u'stand', u'employe']
[u'alinta', u'snap', u'share']
[u'allenbi', u'lead', u'aussi', u'charg']
[u'form', u'tobacco', u'harm', u'studi']
[u'appl', u'pear', u'industri', u'unveil', u'competit', u'plan']
[u'archbishop', u'invit', u'idea', u'church', u'futur']
[u'asif', u'justifi', u'mcgrath', u'comparison']
[u'aussi', u'solid', u'heat']
[u'autopsi', u'rule', u'suspicion', u'alburi', u'death']
[u'babi', u'brain', u'scan', u'detect', u'abnorm']
[u'bali', u'bomber', u'execut', u'lawyer']
[u'beatti', u'promis', u'gold', u'coast', u'hospit']
[u'beazley', u'urg', u'vietnam', u'medal', u'review']
[u'bendigo', u'mine', u'investig', u'contamin', u'water', u'leak']
[u'berwick', u'jail', u'culpabl', u'drive']
[u'boomer', u'earn', u'respect', u'japan']
[u'question', u'beatti', u'ethanol', u'mandat']
[u'brack', u'hail', u'job', u'figur']
[u'brack', u'thank', u'veteran', u'servic', u'sacrific']
[u'breweri', u'site', u'revamp', u'includ', u'skyscrap']
[u'break', u'hill', u'honour', u'local', u'sportsmen', u'women']
[u'bronco', u'aim', u'match', u'bulldog', u'forward']
[u'bronco', u'thump', u'injuri', u'bulldog']
[u'brumbi', u'announc', u'project', u'fund', u'gippsland']
[u'busselton', u'real', u'estat', u'slump', u'disput']
[u'food', u'fortifi', u'iodin']
[u'call', u'rehabilit', u'centr', u'port', u'augusta']
[u'campbel', u'tout', u'tree', u'plant', u'plan']
[u'capsicum', u'spray', u'subdu', u'brawl']
[u'caravan', u'resid', u'tenant', u'right', u'govt']
[u'carbon', u'credit', u'blue', u'plantat', u'get', u'green', u'light']
[u'case', u'drop', u'patel', u'boss']
[u'claim', u'guid', u'data']
[u'chopper', u'overload', u'crash', u'coron', u'say']
[u'church', u'govt', u'odd', u'welfar']
[u'church', u'welfar', u'work', u'pullout', u'stunt', u'hockey']
[u'citi', u'librari', u'close', u'bold', u'upgrad']
[u'closer']
[u'closer']
[u'closer']
[u'warn', u'parti', u'baseless', u'complaint']
[u'coalit', u'promis', u'expand', u'noosa', u'hospit', u'servic']
[u'coff', u'council', u'unreason', u'roadsid']
[u'contractor', u'guilti', u'afghan', u'assault']
[u'coober', u'pedi', u'paper', u'face', u'uncertain', u'futur']
[u'cooma', u'monaro', u'pipelin', u'claim', u'reject']
[u'coron', u'criticis', u'hospit', u'caus', u'death']
[u'coron', u'urg', u'charg', u'homeless', u'man', u'death']
[u'costello', u'quiet', u'cole', u'takeov', u'prospect']
[u'costello', u'wont', u'comment', u'rate', u'rise', u'predict']
[u'council', u'allianc', u'attack', u'ahead', u'confer']
[u'council', u'delay', u'decis', u'minimum', u'size']
[u'council', u'disappoint', u'have', u'pulp', u'approv']
[u'council', u'push', u'orang', u'radiotherapi', u'unit']
[u'cowboy', u'plan', u'unchang', u'joey', u'suspens']
[u'crean', u'confirm', u'presid', u'stand']
[u'oppon', u'criticis', u'valuat', u'confus']
[u'dartmoor', u'cleaner', u'drink', u'water']
[u'dawn', u'servic', u'honour', u'vietnam', u'veteran']
[u'delay', u'charlevill', u'weather', u'radar', u'upgrad']
[u'descend', u'enact', u'wave', u'hill', u'walk']
[u'develop', u'hold', u'talk', u'ambienc', u'licens']
[u'dfat', u'reissu', u'indonesia', u'travel', u'warn']
[u'docker', u'look', u'seven', u'straight']
[u'doctor', u'caus', u'deadlin']
[u'injuri', u'prompt', u'rspca', u'warn', u'ute']
[u'maul', u'toddler']
[u'drug', u'runner', u'target', u'indigen', u'communiti']
[u'eel', u'clear', u'groth', u'wrongdo']
[u'emerg', u'servic', u'seek', u'call', u'block']
[u'england', u'fear', u'mcgrath', u'buchanan']
[u'ethnic', u'childcar', u'unit', u'closur', u'blow']
[u'cole', u'myer', u'boss', u'support', u'takeov', u'talk']
[u'fake', u'queen', u'scot', u'portrait', u'display']
[u'famili', u'jail', u'murder', u'plot']
[u'farmer', u'predict', u'crop', u'failur', u'week']
[u'feder', u'help', u'need', u'fuel', u'seepag', u'victim', u'say']
[u'feder', u'spend', u'port', u'bomb', u'fight', u'justifi', u'say']
[u'flag', u'memori', u'fund', u'tie', u'eas']
[u'flegg', u'deni', u'liber', u'lack', u'health', u'polici']
[u'flegg', u'deni', u'shop', u'centr', u'confront']
[u'flood', u'mitig', u'fund', u'put', u'pressur']
[u'forestri', u'restrict', u'protest', u'plan']
[u'swim', u'coach', u'jail', u'child']
[u'forster', u'death', u'treat', u'murder']
[u'foster', u'kid', u'like', u'drop', u'studi', u'say']
[u'gibson', u'year', u'probat']
[u'global', u'warm', u'prompt', u'need', u'wine', u'reform', u'say']
[u'govt', u'give', u'burma']
[u'govt', u'reject', u'claim', u'drought', u'relief']
[u'govt', u'rework', u'water', u'share', u'plan', u'pressur']
[u'goward', u'role', u'preselect', u'insur', u'labor']
[u'greyhound', u'trainer', u'ban', u'fake']
[u'griffith', u'disappoint', u'loss', u'local', u'servic']
[u'groot', u'island', u'wildlif', u'document']
[u'guidanc', u'seek', u'lebanon', u'peacekeep', u'mission']
[u'hama', u'demand', u'head', u'palestinian', u'coalit']
[u'henri', u'bag', u'nation']
[u'hockey', u'defend', u'print', u'allow']
[u'holden', u'job', u'risk']
[u'holden', u'warn', u'job', u'fallout']
[u'hoon', u'warn', u'weekend', u'crackdown']
[u'hundr', u'march', u'mark', u'long', u'anniversari']
[u'iaria', u'death', u'hotlin', u'yield', u'inform']
[u'iron', u'supplier', u'aztec', u'strike', u'deal', u'china']
[u'iroquoi', u'hover', u'long', u'commemor']
[u'israel', u'hope', u'prison', u'exchang']
[u'isra', u'justic', u'minist', u'face', u'harass', u'charg']
[u'judg', u'tast', u'test', u'fine', u'food']
[u'karzai', u'coalit', u'clash', u'bomb', u'death']
[u'kovco', u'colleagu']
[u'labor', u'ethanol', u'pledg', u'get', u'mix', u'respons']
[u'lebanes', u'replac', u'isra', u'forc', u'south']
[u'lebanes', u'soldier', u'welcom', u'south']
[u'lebanon', u'troop', u'widen', u'histor', u'deploy', u'south']
[u'lehmann', u'quit', u'yorkshir']
[u'lifesav', u'confer', u'aim', u'reduc', u'beach']
[u'lismor', u'gear', u'herb', u'health', u'festiv']
[u'liverpool', u'sign', u'dutch', u'master', u'kuyt']
[u'lodhi', u'lawyer', u'welcom', u'thoma', u'appeal']
[u'long', u'rememb', u'anniversari']
[u'macfarlan', u'flag', u'rate', u'rise']
[u'macfarlan', u'tip', u'rate', u'rise']
[u'assault', u'policewomen', u'arrest']
[u'charg', u'cannabi', u'haul']
[u'fin', u'kill', u'nativ', u'bird']
[u'jail', u'assault', u'nurs', u'remot', u'clinic']
[u'moral', u'respons', u'backpack', u'death']
[u'receiv', u'suspend', u'sentenc', u'illeg']
[u'remand', u'custodi', u'seri', u'incid']
[u'maroochi', u'town', u'plan', u'simplifi']
[u'mauger', u'injuri', u'expos', u'black', u'midfield']
[u'mauger', u'mcalist', u'black']
[u'mayor', u'sign', u'water', u'save', u'measur']
[u'medic', u'student', u'degre']
[u'memori', u'open']
[u'minist', u'defend', u'hospit', u'handl', u'pregnant']
[u'modern', u'warfar', u'take', u'toll', u'mental', u'state']
[u'call', u'tafe', u'fund', u'boost', u'england']
[u'urg', u'easier', u'fund', u'rural', u'student']
[u'urg', u'withdraw', u'gilandra', u'hotel', u'heritag']
[u'nadal', u'murray', u'reach', u'cincinnati']
[u'nauru', u'urg', u'aust', u'speed', u'asylum', u'seeker']
[u'nelson', u'apologis', u'vietnam', u'veteran']
[u'bomb', u'dive', u'give', u'clear']
[u'children', u'worst', u'teeth', u'studi']
[u'prison', u'display']
[u'miss', u'fuel', u'price', u'relief']
[u'stone', u'fruit', u'grower', u'access']
[u'olmert', u'suspend', u'west', u'bank', u'withdraw']
[u'opposit', u'promis', u'mayal', u'intersect']
[u'outsid', u'water', u'ban', u'suppli', u'slip']
[u'owen', u'face', u'season', u'sidelin']
[u'parent', u'school', u'belt']
[u'parol', u'board', u'accus', u'law']
[u'peanut', u'festiv', u'hop', u'benefit', u'vote']
[u'physicist', u'talk', u'uranium', u'potenti']
[u'pie', u'snatch', u'thrill', u'port']
[u'plan', u'ceas', u'bell', u'power', u'station', u'oper']
[u'play', u'suspend', u'india', u'lanka', u'dayer']
[u'impress', u'histori', u'lesson']
[u'polar', u'bear', u'arriv', u'meet', u'domin', u'femal']
[u'polic', u'stand', u'stun', u'gun', u'introduct']
[u'polic', u'interview', u'judg', u'einfeld', u'week']
[u'polic', u'union', u'put', u'industri', u'action', u'hold']
[u'pratt', u'montreal', u'quarter']
[u'prosecut', u'play', u'dirti', u'trick', u'terror', u'trial']
[u'qanta', u'increas', u'fuel', u'surcharg']
[u'govt', u'defend', u'pipelin']
[u'opposit', u'fend', u'polici', u'claim']
[u'chief', u'flag', u'rate', u'rise']
[u'reggina', u'stay', u'seri']
[u'revamp', u'cameo', u'break', u'crockeri', u'prize']
[u'tone', u'physic', u'play', u'style']
[u'reap', u'reward', u'giant', u'inflat', u'stubbi']
[u'rural', u'women', u'isol', u'topic', u'youth', u'survey']
[u'saint', u'expect', u'maguir', u'recoveri']
[u'student', u'drug', u'test', u'plan', u'criticis']
[u'schipper', u'break', u'butterfli']
[u'scientist', u'sequenc', u'bovin', u'anim']
[u'scientist', u'think', u'planet', u'definit']
[u'search', u'miss', u'fisherman', u'suspend']
[u'second', u'arrest', u'jamaica', u'murder', u'case']
[u'second', u'charg', u'king', u'cross', u'shoot']
[u'shiit', u'pilgrim', u'gather', u'year', u'bloodiest']
[u'shire', u'excit', u'grave', u'site', u'search']
[u'shire', u'increas', u'drought', u'fund', u'communiti']
[u'shooter', u'convict', u'fin', u'plane', u'mistak']
[u'skier', u'hope', u'despit', u'spars', u'season']
[u'soldier', u'deni', u'handl', u'kovco']
[u'soldier', u'uncertain', u'kovco']
[u'star', u'fish', u'order', u'anger', u'scallop', u'fisher']
[u'steal', u'sergeant', u'sentenc', u'suspend']
[u'strathalbyn', u'good', u'economi']
[u'takeov', u'talk', u'bolster', u'cole', u'myer', u'price']
[u'tamil', u'tiger', u'launch', u'jaffna', u'offens']
[u'tangl', u'humpback', u'whale', u'free']
[u'tbird', u'test', u'perfect', u'swift']
[u'teacher', u'say', u'jonbenet', u'death', u'accid']
[u'team', u'decad', u'shooter', u'coach']
[u'thoma', u'acquit', u'terror', u'charg']
[u'thoma', u'acquit', u'terror', u'convict']
[u'thoma', u'terror', u'charg', u'throw']
[u'tobacco', u'firm', u'liabl', u'conspiraci']
[u'tourism', u'minist', u'tackl', u'domest', u'slump']
[u'truck', u'rest', u'fund', u'western', u'highway', u'applaud']
[u'twin', u'spacecraft', u'photograph']
[u'union', u'say', u'qanta', u'stanc', u'cut', u'live']
[u'unitab', u'post', u'profit']
[u'unit', u'welcom', u'chines', u'striker', u'fold', u'final']
[u'lebanon', u'forc', u'busi']
[u'struggl', u'draft', u'east', u'peacekeep', u'rule']
[u'veteran', u'honour', u'long', u'ceremoni']
[u'uniform', u'water', u'restrict']
[u'vietnam', u'open']
[u'vietnam', u'veteran', u'honour', u'long', u'servic']
[u'vietnam', u'veteran', u'rememb', u'fall', u'comrad']
[u'villeneuv', u'criticis', u'schus', u'dirti', u'trick']
[u'grappl', u'school', u'seatbelt', u'issu']
[u'wait', u'come', u'aliv']
[u'wallabi', u'buoyant', u'ahead', u'black', u'clash']
[u'wallabi', u'shoot', u'plan']
[u'grant', u'payris']
[u'wave', u'hill', u'walk', u'rout', u'declar', u'heritag', u'site']
[u'worker', u'wag', u'outstrip', u'nation']
[u'westpac', u'confirm', u'locat', u'review']
[u'whale', u'catch', u'fish', u'north']
[u'white', u'hous', u'see', u'huge', u'challeng', u'iraq']
[u'york', u'park', u'gate', u'name', u'bacon']
[u'youth', u'job', u'deserv', u'campaign', u'attent']
[u'acoss', u'urg', u'govt', u'rethink', u'welfar', u'scheme']
[u'acss', u'urg', u'welfar', u'think']
[u'defend', u'timor', u'unrest', u'handl']
[u'black', u'claim', u'nation', u'titl']
[u'black', u'commit', u'wallabi']
[u'andrew', u'appoint', u'england', u'rugbi', u'supremo']
[u'aussi', u'claim', u'silver', u'bronz', u'medal', u'canada']
[u'baggag', u'handler', u'fear', u'job', u'bomb', u'threat']
[u'battl', u'rossi', u'send', u'warn']
[u'beatti', u'follow', u'coalit', u'polici', u'cruis', u'ship']
[u'beatti', u'scrap', u'plan', u'cruis', u'ship', u'termin']
[u'billion', u'dollar', u'buyback', u'restor', u'wetland']
[u'boat', u'carri', u'asylum', u'seeker', u'sink', u'itali']
[u'bomb', u'threat', u'caus', u'fals', u'alarm', u'british', u'plane']
[u'boomer', u'upset', u'brazil', u'world', u'champ', u'open']
[u'british', u'airport', u'maintain', u'tough', u'secur']
[u'british', u'polic', u'uncov', u'martyrdom', u'video']
[u'broom', u'melt', u'offer', u'hope', u'teen']
[u'bulldog', u'sweat', u'injur']
[u'bulldog', u'upset', u'crow']
[u'burmes', u'asylum', u'seeker', u'appeal', u'minist']
[u'bush', u'call', u'support', u'north', u'korean', u'nuclear']
[u'bush', u'warn', u'north', u'korea', u'nuclear', u'test']
[u'busi', u'group', u'say', u'rise', u'justifi']
[u'cat', u'crow', u'enjoy', u'half', u'time', u'lead']
[u'cat', u'sink', u'swan', u'stay', u'aliv']
[u'chappel', u'replac', u'buchanan']
[u'chilean', u'court', u'lift', u'pinochet', u'immun']
[u'chlamydia', u'spread', u'captiv', u'croc']
[u'closer']
[u'closer']
[u'coke', u'sue', u'pesticid', u'level']
[u'cole', u'leav', u'chelsea', u'deal', u'unlik', u'wenger']
[u'cole', u'share', u'price', u'surg', u'rais', u'question']
[u'concern', u'thoma', u'rule', u'toughen', u'terror', u'law']
[u'costello', u'dismiss', u'elect', u'campaign', u'critic']
[u'court', u'hear', u'accus', u'lie', u'cover', u'theft']
[u'dept', u'admit', u'error', u'meningococc', u'alert']
[u'didak', u'hero', u'magpi']
[u'emerton', u'end', u'doubt', u'rover']
[u'emerton', u'look', u'continu', u'heroic']
[u'expert', u'say', u'port', u'kembla', u'recycl', u'water']
[u'fatal', u'lebanon', u'raid', u'violat', u'truce']
[u'fear', u'legisl', u'chang', u'thoma', u'releas']
[u'fear', u'thoma', u'releas', u'prompt', u'legisl']
[u'crew', u'struggl', u'contain', u'sydney', u'blaze']
[u'flood', u'leav', u'thousand', u'strand', u'ethiopia']
[u'ford', u'slash', u'product']
[u'run', u'presid']
[u'kill', u'lebanon', u'raid']
[u'fremantl', u'leap']
[u'gallagh', u'flag', u'demand', u'midwiferi', u'servic']
[u'govt', u'role', u'airport', u'retail', u'plan', u'question']
[u'govt', u'welfar', u'scheme', u'harsh', u'anglicar']
[u'hamburg', u'defend', u'boulahrouz', u'chelsea']
[u'hardi', u'compens', u'bonus']
[u'hardi', u'tell', u'settl', u'compo', u'pay', u'bonus']
[u'hawk', u'hold', u'bomber']
[u'hingi', u'sweep', u'montreal', u'semi']
[u'hous', u'burn', u'dili', u'unrest']
[u'india', u'lanka', u'match', u'abandon']
[u'indigen', u'land', u'deal', u'creat', u'pastor', u'career']
[u'israel', u'deni', u'attack', u'eastern', u'lebanon']
[u'israel', u'deni', u'lebanon', u'strike']
[u'isra', u'warplan', u'eastern', u'lebanon', u'polic']
[u'israel', u'object', u'troop', u'inclus']
[u'israel', u'seiz', u'palestinian', u'offici']
[u'jam', u'hardi', u'board', u'claim', u'ludicr']
[u'jonbenet', u'murder', u'suspect', u'deport']
[u'juventus', u'fail', u'match', u'appeal']
[u'kirbi', u'call', u'unit', u'effort', u'right']
[u'kirbi']
[u'knight', u'overcom', u'cowboy']
[u'kookaburra', u'sweep', u'south', u'korea']
[u'leagu', u'great', u'kearney', u'die']
[u'arrest', u'german', u'bomb']
[u'marion', u'jone', u'fail', u'drug', u'test', u'report']
[u'martin', u'accus', u'hide', u'land', u'right', u'detail']
[u'meningococc', u'diseas', u'death', u'spark', u'health']
[u'nadal', u'knock', u'cincinnati']
[u'aussi', u'pac', u'final']
[u'breakthrough', u'ajax', u'crisi', u'talk']
[u'govt', u'accus', u'encourag', u'aviat', u'breach']
[u'ogilvi', u'make', u'championship']
[u'ogilvi', u'surg']
[u'overcrowd', u'anger', u'brisban', u'driver']
[u'pakistan', u'arrest', u'bomb', u'consul']
[u'panther', u'chase', u'shark']
[u'panther', u'steal', u'victori', u'shark']
[u'parent', u'research', u'claim', u'way', u'behaviour']
[u'passeng', u'arrest', u'flight', u'violenc']
[u'plane', u'reach', u'melbourn', u'safeti', u'scare', u'delay']
[u'tell', u'state', u'releas', u'land', u'hous']
[u'polic', u'investig', u'molotov', u'cocktail', u'attack']
[u'polic', u'investig', u'overnight', u'road', u'accid']
[u'powel', u'equal', u'world', u'record']
[u'plater', u'charg', u'highway', u'drag', u'race']
[u'campaign', u'poll', u'show', u'gain', u'labor']
[u'afford', u'loan', u'hospit', u'plan', u'bligh']
[u'coalit', u'poll', u'slide', u'hiccup']
[u'boss', u'annoy', u'howard', u'elect', u'campaign']
[u'boss', u'flag', u'rate', u'rise']
[u'roddick', u'end', u'murray', u'giant', u'kill']
[u'rugbi', u'match', u'tribut', u'late', u'maori', u'queen']
[u'safina', u'demolish', u'pratt', u'montreal']
[u'africa', u'dismiss', u'aid', u'respons', u'critic']
[u'teacher', u'control', u'career']
[u'senat', u'say', u'tasmanian', u'awa', u'earn']
[u'south', u'africa', u'reject', u'critic', u'seri']
[u'lankan', u'govt', u'continu', u'attack', u'tamil', u'tiger']
[u'stamped', u'fear', u'prompt', u'vehicl', u'baghdad']
[u'stanhop', u'confid', u'caravan', u'park', u'deal']
[u'sudan', u'bulldoz', u'home', u'darfur', u'refuge']
[u'swift', u'final', u'phoenix', u'firebird']
[u'sydney', u'marina', u'caus', u'damag']
[u'sydney', u'yacht', u'club', u'caus', u'diesel', u'spill']
[u'error', u'basslink', u'cabl', u'short', u'period']
[u'urg', u'provid', u'special', u'need', u'support']
[u'littl', u'piggi', u'go', u'nake', u'artist']
[u'rescu', u'freak', u'wave', u'accid']
[u'toddler', u'hospit', u'attack']
[u'tougher', u'terror', u'law', u'predict', u'thoma']
[u'injur', u'crash']
[u'citi', u'pilot', u'high', u'speed', u'wimax', u'wireless']
[u'maintain', u'tough', u'secur', u'despit', u'airport', u'chao']
[u'polic', u'martyr', u'video']
[u'polic', u'martyr', u'video', u'laptop']
[u'concern', u'strand', u'civilian', u'lanka']
[u'envoy', u'slam', u'africa', u'respons', u'aid']
[u'union', u'urg', u'nation', u'plan', u'troubl', u'industri']
[u'unit', u'secur', u'titl', u'shoot']
[u'unit', u'warn', u'hargreav']
[u'urg', u'larger', u'european', u'presenc', u'lebanon']
[u'stock', u'week', u'high']
[u'govt', u'reject']
[u'victori', u'glori', u'roar']
[u'vietnam', u'evacu', u'thousand', u'flood', u'toll', u'rise']
[u'walk', u'anniversari', u'bring', u'gurindji', u'peopl']
[u'terror', u'year', u'costello']
[u'warrior', u'storm', u'streak']
[u'wind', u'farm', u'compani', u'aim', u'chines', u'market']
[u'woman', u'attack', u'qanta', u'flight']
[u'woman', u'go', u'home', u'year', u'surgeri', u'complic']
[u'yousuf', u'overpow', u'england']
[u'abbott', u'accus', u'inflam', u'stem', u'cell', u'debat']
[u'abbott', u'remain', u'unconvinc', u'stem', u'cell', u'benefit']
[u'abbott', u'voic', u'opposit', u'stem', u'cell', u'research']
[u'urg', u'protect', u'dragon', u'habitat']
[u'afghan', u'clash', u'kill', u'soldier']
[u'black', u'reap', u'reward', u'rotat', u'polici']
[u'black', u'rest', u'super']
[u'annan', u'condemn', u'isra', u'raid']
[u'annan', u'say', u'isra', u'raid', u'violat', u'ceas']
[u'asylum', u'seeker', u'kill', u'boat', u'accid']
[u'aussi', u'extradit', u'illeg', u'citizenship', u'claim']
[u'aussi', u'extradit', u'illeg', u'citizenship', u'claim']
[u'hop', u'agreement', u'ajax', u'rescu']
[u'beatti', u'plan', u'outlaw', u'spike', u'drink', u'alcohol']
[u'belgian', u'polic', u'search', u'prison', u'escap']
[u'blood', u'donat', u'campaign', u'cycl', u'adelaid']
[u'british', u'bridesmaid', u'travel', u'overland', u'brisban']
[u'canberra', u'teacher', u'threaten', u'strike', u'cut']
[u'central', u'australia', u'road', u'toll', u'rise']
[u'closer', u'news']
[u'closer']
[u'coalit', u'outlin', u'anti', u'drug', u'plan', u'school']
[u'connolli', u'say', u'wallabi', u'close']
[u'costello', u'shrug', u'campaign', u'critic']
[u'darfur', u'attack', u'kill', u'peacekeep', u'wound']
[u'darwin', u'farewel', u'soldier', u'bind']
[u'demon', u'ralli', u'roo']
[u'hasler', u'shaun', u'mcrae']
[u'devonport', u'student', u'astronaut', u'chat', u'short']
[u'disabl', u'campaign', u'say', u'home', u'refit', u'delay']
[u'donald', u'lead', u'birdi', u'assault']
[u'dont', u'believ', u'beatti', u'health', u'pledg', u'say']
[u'dragon', u'final', u'drought']
[u'dragon', u'wont', u'easi', u'say', u'princ']
[u'drink', u'drive', u'charg', u'expect', u'pedestrian']
[u'eagl', u'claim', u'spot']
[u'eel', u'maintain', u'win', u'form']
[u'elder', u'woman', u'drown', u'resort', u'lake']
[u'test', u'jone', u'admit', u'coach']
[u'famili', u'blame', u'hospit', u'meningococc', u'death']
[u'father', u'blame', u'hospit', u'meningococc', u'death']
[u'fear', u'abbott', u'mislead', u'stem', u'cell', u'debat']
[u'footbal', u'workshop', u'bring', u'refuge']
[u'fremantl', u'plan', u'late', u'night', u'communiti', u'taxi', u'servic']
[u'german', u'hostag', u'free', u'nigeria']
[u'german', u'polic', u'detain', u'terror', u'suspect']
[u'girl', u'intens', u'care', u'perth', u'crash']
[u'global', u'trekki', u'beam', u'vega']
[u'governor', u'jewel', u'steal', u'resid']
[u'greek', u'religi', u'icon', u'steal', u'dare', u'plot']
[u'greenpeac', u'alarm', u'philippin', u'spill']
[u'harmison', u'defend', u'record']
[u'hingi', u'montreal', u'final']
[u'winter', u'day', u'forecast', u'south']
[u'hundr', u'evacu', u'spray']
[u'hundr', u'evacu', u'spray', u'night']
[u'hundr', u'honour', u'vietnam', u'vet', u'adelaid']
[u'impress', u'roddick', u'march', u'cincinnati', u'final']
[u'india', u'deni', u'chappel', u'futur', u'decid']
[u'indigen', u'aust', u'mark', u'walk', u'anniversari']
[u'indonesia', u'confirm', u'bird', u'death']
[u'iran', u'readi', u'israel', u'action']
[u'iran', u'reject', u'halt', u'nuclear', u'work']
[u'israel', u'accus', u'violat', u'ceas']
[u'isra', u'attack', u'ceas', u'violat', u'annan']
[u'isra', u'raid', u'threaten', u'ceas']
[u'isra', u'raid', u'violat', u'ceas', u'annan']
[u'israel', u'push', u'lebanon', u'raid']
[u'itali', u'probe', u'navi', u'role', u'migrant', u'boat', u'wreck']
[u'jason', u'taylor', u'ricki', u'stuart']
[u'jonbenet', u'murder', u'accus', u'leav', u'thai', u'cell']
[u'joness', u'coach', u'scoff', u'latest', u'dope', u'alleg']
[u'juve', u'win', u'start', u'twilight', u'zone']
[u'knight', u'strong', u'cowboy']
[u'koizumi', u'shrine', u'visit', u'block', u'chines', u'tie']
[u'lebanon', u'angri', u'eastern', u'raid']
[u'lebanon', u'angri', u'isra', u'raid']
[u'lebanon', u'threaten', u'suspend', u'troop', u'deploy']
[u'shoot', u'dead', u'punchbowl', u'driveway']
[u'manufactur', u'tariff', u'stay', u'china']
[u'use', u'capsicum', u'spray', u'night', u'club', u'patron']
[u'mcclaren', u'hit', u'rooney']
[u'medic', u'board', u'investig', u'indian', u'train']
[u'melbourn', u'like', u'face', u'water', u'restrict']
[u'meningococc', u'alert', u'delay', u'mistak']
[u'middl', u'east', u'pivot', u'moment', u'say', u'bush']
[u'mother', u'rescu', u'daughter', u'burn', u'hous']
[u'nasa', u'begin', u'delic', u'shuttl', u'repair']
[u'neill', u'viduka', u'forgett', u'open']
[u'nepales', u'protest', u'fuel', u'price', u'hike']
[u'scanner', u'benefit', u'cancer', u'heart']
[u'independ', u'say', u'labor', u'divid', u'land', u'right']
[u'ogilvi', u'look', u'chase', u'wood']
[u'opposit', u'question', u'meningococc', u'patient']
[u'pakistan', u'fail', u'curb', u'extrem']
[u'pakistan', u'control', u'harmi', u'tresco', u'expos']
[u'palestinian', u'kill', u'west', u'bank', u'shoot']
[u'perth', u'privat', u'hospit', u'expans']
[u'perth', u'servic', u'mark', u'year', u'long']
[u'polic', u'break', u'cockfight', u'ring']
[u'polic', u'millmerran', u'crash', u'victim']
[u'polic', u'raid', u'milat', u'home']
[u'poll', u'suggest', u'retain', u'bundaberg']
[u'devast', u'player', u'death']
[u'rain', u'ruin', u'india', u'lanka', u'dayer']
[u'rejuven', u'ferrero', u'cruis', u'final']
[u'research', u'perfect', u'techniqu']
[u'review', u'call', u'meningococc', u'death']
[u'road', u'safeti', u'group', u'warn', u'girl', u'hoon', u'drive']
[u'roo', u'lose', u'laidley']
[u'rossi', u'take', u'czech', u'pole', u'hayden', u'sight']
[u'rugbi', u'communiti', u'devast', u'player', u'death']
[u'african', u'govt', u'aid', u'polici']
[u'schipper', u'strike', u'gold']
[u'eagl', u'fight', u'rabbitoh']
[u'shiit', u'pilgrim', u'kill', u'baghdad', u'attack']
[u'shiit', u'pilgrim', u'pour', u'baghdad', u'year']
[u'sierra', u'leonean', u'athlet', u'grant', u'perman', u'visa']
[u'sierra', u'leoneon', u'athlet', u'grant', u'perman', u'visa']
[u'korea', u'pledg', u'food', u'flood', u'north']
[u'korea', u'send', u'flood', u'north']
[u'southport', u'ralli', u'focus', u'marina', u'plan']
[u'lanka', u'bomb', u'tiger', u'base']
[u'state', u'tax', u'blame', u'hous', u'price']
[u'kill', u'hundr', u'crocodil']
[u'taliban', u'fighter', u'kill', u'clash', u'nato']
[u'tasmania', u'launch', u'packag', u'teen', u'care']
[u'teacher', u'deport', u'jonbenet', u'murder']
[u'tiger', u'outclass', u'cellar', u'dweller']
[u'sheen', u'nathan', u'brown']
[u'tougher', u'penalti', u'driver', u'drug']
[u'tuqiri', u'cite', u'danger', u'tackl']
[u'tuqiri', u'receiv', u'match']
[u'turkey', u'bounc', u'boomer', u'come']
[u'union', u'call', u'baggag', u'handler', u'safeti', u'review']
[u'union', u'call', u'safeti', u'measur', u'baggag']
[u'veteran', u'gather', u'mark', u'long', u'anniversari']
[u'veteran', u'mark', u'long', u'anniversari', u'adelaid']
[u'victoria', u'approv', u'larg', u'wind', u'farm']
[u'govt', u'releas', u'hous', u'land']
[u'charg', u'woorabinda', u'disturb']
[u'dead', u'violent', u'storm', u'budapest']
[u'ajax', u'disput', u'put', u'thousand', u'job', u'jeopardi']
[u'ajax', u'disput', u'threaten', u'thousand', u'job']
[u'ajax', u'disrupt', u'damag', u'industri', u'reput']
[u'ajax', u'halt', u'product']
[u'albani', u'council', u'approv', u'nightclub', u'open']
[u'appeal', u'delay', u'bali', u'bomber', u'execut']
[u'aussi', u'olymp', u'rower', u'wood', u'die']
[u'australian', u'offic', u'assault', u'timor']
[u'babi', u'death', u'accident', u'father', u'say']
[u'baker', u'creek', u'meatwork', u'stand', u'worker']
[u'ballarat', u'stockag', u'frustrat', u'slow', u'stockyard']
[u'batchelor', u'play', u'govt', u'poll', u'rat']
[u'beatti', u'pledg', u'cyclon', u'prepar', u'fund']
[u'beatti', u'springborg', u'agre', u'allow']
[u'beatti', u'springborg', u'continu', u'elect', u'push', u'north']
[u'bega', u'want', u'debat', u'council', u'report']
[u'revis', u'escondida', u'offer']
[u'brit', u'skateboard', u'trek']
[u'break', u'hill', u'council', u'consid', u'rainwat', u'tank']
[u'brother', u'jail', u'park', u'bash', u'death']
[u'brough', u'defend', u'sourc', u'demount', u'fund']
[u'brown', u'encourag', u'stumbl']
[u'bulldog', u'lose', u'tonga', u'season']
[u'bulldog', u'welcom']
[u'canberra', u'focus', u'posit', u'parent']
[u'cattl', u'empir', u'founder', u'die']
[u'cayless', u'clear', u'fractur', u'socket']
[u'children', u'counsel', u'crash']
[u'chines', u'fisherman', u'appear', u'court']
[u'cityrail', u'begin', u'railway', u'reconstruct']
[u'clarenc', u'valley', u'share', u'water', u'mayor']
[u'climat', u'time', u'capsul', u'look', u'futur']
[u'closer']
[u'closer']
[u'coalit', u'backbench', u'push', u'scrap', u'telstra', u'sale']
[u'coalit', u'backbench', u'want', u'telstra', u'sale', u'scrap']
[u'colac', u'otway', u'council', u'surpris', u'wind', u'farm']
[u'cole', u'board', u'meet', u'amid', u'takeov', u'talk']
[u'construct', u'begin', u'swan', u'hill', u'ethanol', u'plant']
[u'construct', u'begin', u'townsvill', u'medic', u'unit']
[u'convict', u'paedophil', u'remand', u'custodi']
[u'coonambl', u'mayor', u'reject', u'claim', u'labor', u'support']
[u'coron', u'find', u'death', u'custodi', u'natur', u'caus']
[u'cost', u'wipe', u'bluescop', u'profit']
[u'councillor', u'reject', u'mayor', u'resign']
[u'court', u'rule', u'wallabi', u'cull']
[u'covert', u'polic', u'oper', u'catch', u'hoon', u'driver']
[u'daytim', u'barrier', u'jone', u'nightclub', u'music']
[u'death', u'toll', u'rise', u'congo', u'violenc']
[u'dee', u'time', u'boost']
[u'dept', u'announc', u'team', u'review', u'meningococc', u'death']
[u'deputi', u'mayor', u'plead', u'guilti']
[u'dune', u'collis', u'caus', u'injuri']
[u'eagl', u'unfaz', u'derbi', u'hype']
[u'egyptian', u'train', u'crash', u'kill', u'injur', u'dozen']
[u'eighteen', u'year', u'stand', u'gippsland', u'east']
[u'famili', u'hop', u'divers', u'broom', u'hold', u'donor']
[u'famili', u'seek', u'answer', u'unwant', u'medic', u'order']
[u'ferguson', u'target', u'hargreav']
[u'festiv', u'learn', u'govt', u'fund']
[u'fight', u'erupt', u'congo', u'head', u'poll']
[u'destroy', u'histor', u'kembla', u'build']
[u'fire', u'prompt', u'call', u'land', u'clean']
[u'foodi', u'flock', u'hobart']
[u'govt', u'minist', u'trezis', u'die']
[u'wharfi', u'launch', u'hungri', u'mile', u'push']
[u'year', u'term', u'prioriti']
[u'freight', u'train', u'corridor', u'open']
[u'futur', u'freight', u'scheme', u'doubt']
[u'futur', u'nickel', u'assur']
[u'garrett', u'back', u'freedom', u'holiday', u'plan']
[u'rice', u'contamin', u'crop']
[u'govt', u'encourag', u'activist', u'illeg', u'fli']
[u'govt', u'intervent', u'urg', u'ajax', u'disput']
[u'patient', u'tell', u'sexual', u'misconduct']
[u'greyhound', u'death', u'prompt', u'safeti', u'inquiri']
[u'grower', u'fear', u'cole', u'myer', u'takeov']
[u'tree', u'experi', u'test', u'climat', u'chang', u'impact']
[u'hair', u'stranger', u'controversi']
[u'hair', u'follow', u'oval', u'test', u'debacl']
[u'harcourt', u'appl', u'grower', u'irrig']
[u'hargreav', u'deni', u'pressur', u'firm']
[u'henti', u'villag', u'win', u'legal', u'battl', u'tree']
[u'hezbollah', u'warn', u'reignit', u'conflict']
[u'hingiss', u'titl', u'hold']
[u'hors', u'wyndham', u'race', u'highlight']
[u'horsham', u'council', u'surpris', u'railway', u'upgrad', u'plan']
[u'hous', u'chariti', u'see', u'australian', u'demand', u'grow']
[u'howard', u'say', u'convers', u'subsidi', u'success']
[u'howard', u'undecid', u'telstra', u'sale']
[u'hundr', u'ralli', u'nativ', u'timber', u'chang']
[u'hundr', u'test', u'bone', u'marrow', u'match', u'teenag']
[u'hurst', u'victori', u'portland']
[u'iemma', u'back', u'port', u'stephen', u'labor', u'candid']
[u'indian', u'music', u'maestro', u'bismillah', u'khan', u'die']
[u'investig', u'launch', u'meningococc', u'death']
[u'iran', u'continu', u'nuclear', u'work', u'ayatollah', u'say']
[u'begin', u'workplac', u'chang', u'inquiri']
[u'isra', u'general', u'say', u'arm', u'forc', u'guilti']
[u'israel', u'justic', u'minist', u'resign', u'harass']
[u'israel', u'warn', u'strengthen', u'iran', u'hama', u'tie']
[u'jet', u'optimist', u'season', u'start']
[u'jewish', u'muslim', u'student', u'attack', u'campus']
[u'job', u'threat', u'ajax', u'rescu', u'talk', u'fail']
[u'jonbenet', u'murder', u'suspect', u'arriv']
[u'jonbenet', u'murder', u'suspect', u'arriv']
[u'jonbenet', u'suspect', u'deport']
[u'juri', u'urg', u'focus', u'fact', u'backpack']
[u'labor', u'warn', u'telstra', u'futur', u'fund', u'option']
[u'land', u'right', u'stoush', u'brew', u'labor', u'caucus', u'meet']
[u'lane', u'cove', u'tunnel', u'traffic', u'fear', u'reject']
[u'firm', u'cudeco', u'stock', u'price']
[u'lawyer', u'confid', u'interview', u'wont', u'send', u'thoma']
[u'lebanon', u'truce', u'unravel']
[u'liverpool', u'suffer', u'doubl', u'injuri', u'blow']
[u'locum', u'replac', u'surgeon', u'mackay']
[u'deni', u'bail', u'alleg', u'immigr', u'fraud']
[u'mangerton', u'home', u'robberi', u'injur', u'year']
[u'maori', u'leader', u'choos', u'king']
[u'maori', u'queen', u'lay', u'rest']
[u'mason', u'charg', u'add', u'bulldog', u'woe']
[u'molik', u'suffer', u'round', u'loss']
[u'molloy', u'quit', u'labor', u'parti']
[u'mooney', u'face', u'strike', u'charg']
[u'australian', u'troop', u'afghanistan']
[u'moylan', u'surviv', u'preselect', u'challeng']
[u'nanango', u'aim', u'join', u'mayor', u'water', u'issu']
[u'nasa', u'shuttl', u'bolt', u'chang', u'complet']
[u'nation', u'push', u'mitchel', u'river']
[u'broom', u'rat', u'generat', u'extra']
[u'exmouth', u'power', u'station', u'week']
[u'expert', u'probe', u'nation', u'galleri', u'cancer', u'case']
[u'technolog', u'save', u'water', u'farmer']
[u'zealand', u'blast', u'appal', u'assault']
[u'norfolk', u'island', u'want', u'model', u'govt', u'minist']
[u'back', u'titan', u'turner']
[u'opposit', u'push', u'ethanol', u'sale']
[u'nurs', u'claim', u'wag', u'shortfal']
[u'nyngan', u'station']
[u'opinion', u'seek', u'airport', u'develop']
[u'mother', u'patch']
[u'paedophilia', u'accus', u'fli', u'perth']
[u'peerless', u'tiger', u'coast', u'victori']
[u'petit', u'reject', u'wimmera', u'water', u'flow', u'releas']
[u'petrol', u'price', u'forc', u'motor', u'innov', u'expert']
[u'phelp', u'break']
[u'pmcloser']
[u'polic', u'seek', u'help', u'brawl', u'inquiri']
[u'polic', u'station', u'rob', u'offend', u'catch']
[u'polici', u'plan', u'preserv', u'dingo', u'bloodlin']
[u'prank', u'theori', u'kovco', u'death', u'unlik', u'colleagu']
[u'princ', u'upgrad', u'move', u'ahead']
[u'profit', u'result', u'buoy', u'market']
[u'protest', u'defend', u'pakistan', u'pride', u'inzamam']
[u'public', u'encourag', u'attend', u'assembl', u'debat']
[u'public', u'inquiri', u'reassess', u'wright', u'seat']
[u'push', u'nation', u'approach', u'fuel', u'price']
[u'qantaslink', u'boost', u'presenc', u'england']
[u'quick', u'inquiri', u'meningococc', u'death', u'promis']
[u'rabbit', u'infest', u'hit', u'crop']
[u'raider', u'chase', u'costigan']
[u'rail', u'deal', u'delay', u'threaten', u'tourism', u'oper']
[u'rebel', u'member', u'arrest', u'drug', u'weapon', u'charg']
[u'rebel', u'member', u'remand', u'custodi']
[u'resid', u'seek', u'releas', u'spit']
[u'reynold', u'lead', u'dubbo', u'elect']
[u'rival', u'bid', u'leav', u'sedimentari', u'futur', u'uncertain']
[u'riverland', u'polic', u'crack', u'drink', u'driver']
[u'roch', u'give', u'evid', u'terror', u'committ']
[u'rooney', u'threaten', u'withdraw', u'england', u'support']
[u'rural', u'broadband', u'uptak', u'lag', u'survey', u'find']
[u'sack', u'bronco', u'face', u'court', u'drink', u'drive', u'charg']
[u'saddam', u'refus', u'plead', u'genocid', u'trial']
[u'saddam', u'lawyer', u'leav', u'court', u'protest']
[u'sailor', u'seek', u'drug', u'reduc']
[u'soldier', u'court', u'girlfriend', u'assault']
[u'score', u'egyptian', u'train', u'crash']
[u'score', u'kill', u'egyptian', u'train', u'crash']
[u'semi', u'trailer', u'roll', u'kill', u'hundr', u'goat']
[u'seven', u'kill', u'moscow', u'market', u'explos']
[u'sharehold', u'consid', u'telstra']
[u'share', u'woe', u'sale', u'doubt']
[u'sierra', u'leon', u'angri', u'athlet', u'visa']
[u'smorgon', u'onesteel', u'reaffirm', u'merger', u'plan']
[u'soldier', u'baffl', u'kovco']
[u'south', u'africa', u'pull', u'hurt', u'cricket', u'chief']
[u'south', u'east', u'target', u'bridal', u'creeper']
[u'springborg', u'promis', u'apprentic', u'incent']
[u'stargaz', u'celebr', u'asteroid', u'charlevill']
[u'stirl', u'deni', u'rift', u'land', u'right', u'chang']
[u'stand', u'hospit', u'staff', u'face', u'investig']
[u'swan', u'hill', u'polic', u'fear', u'teen', u'drink', u'increas']
[u'sydney', u'famili', u'financi', u'burden', u'grow']
[u'talk', u'salvag', u'ajax', u'continu']
[u'health', u'reject', u'claim', u'nurs', u'wage', u'shortfal']
[u'telco', u'open']
[u'telstra', u'blame', u'accc', u'profit', u'slump']
[u'telstra', u'boss', u'advis', u'govt', u'futur', u'fund']
[u'telstra', u'boss', u'warn', u'futur', u'fund', u'option']
[u'tenterfield', u'fluorid', u'water', u'year']
[u'test', u'abandon', u'ball', u'tamper', u'protest']
[u'tiger', u'cruis', u'victori']
[u'townsvill', u'ocean', u'termin', u'worri', u'gold']
[u'transport', u'corridor', u'aim', u'auslink', u'fund']
[u'traveston', u'committe', u'visit', u'paradis']
[u'turnbul', u'water', u'paper', u'call', u'privat', u'sector']
[u'blackwat', u'hospit', u'staff', u'stand']
[u'flag', u'strike', u'garbag', u'worker']
[u'ultralight', u'pilot', u'escap', u'ivanho', u'crash']
[u'uni', u'divert', u'fund', u'student', u'union', u'chang']
[u'wind', u'farm', u'power', u'ahead']
[u'wagga', u'airport', u'evacu', u'child', u'bomb', u'remark']
[u'govt', u'fail', u'drought', u'relief', u'opposit']
[u'wake', u'plan', u'godfath', u'wine', u'industri']
[u'nation', u'push', u'biofuel', u'industri']
[u'water', u'agreement', u'necessari', u'noosa', u'mayor']
[u'water', u'chopper', u'stand', u'earli', u'season']
[u'weaken', u'adelaid', u'face', u'victori']
[u'weston', u'bowl', u'club', u'sell', u'chariti']
[u'wiluna', u'school', u'cater', u'mine', u'industri']
[u'wine', u'sale', u'chang', u'lead', u'violenc', u'hear']
[u'wollongong', u'squid', u'stop', u'rubbish', u'enter', u'ocean']
[u'woman', u'charg', u'boy', u'death']
[u'wood', u'putt', u'victori', u'illinoi']
[u'woolworth', u'play', u'takeov', u'talk', u'record']
[u'woolworth', u'post', u'billion', u'dollar', u'profit']
[u'woomera', u'choos', u'rocket', u'launch', u'site', u'space']
[u'young', u'lion', u'hop', u'voss', u'continu']
[u'renew', u'energi']
[u'young', u'offend', u'mental', u'studi']
[u'accus', u'palm', u'rioter', u'face', u'court', u'brisban']
[u'lose', u'centrelink', u'project', u'adelaid']
[u'identifi', u'chemic', u'buri', u'canist']
[u'ajax', u'get', u'month', u'repriev']
[u'ajax', u'staff', u'accept', u'rescu', u'packag']
[u'ajax', u'worker', u'accept', u'rescu', u'deal']
[u'ajax', u'worker', u'accept', u'rescu', u'packag']
[u'ajax', u'worker', u'await', u'rescu', u'deal', u'detail']
[u'alleg', u'misus', u'healthi', u'eat', u'polici']
[u'nino', u'predict']
[u'aussi', u'rower', u'solid', u'start', u'world', u'champ']
[u'contract', u'negoti', u'unawar', u'kickback']
[u'fight', u'document', u'suppress']
[u'bacchus', u'marsh', u'irrig', u'offer', u'extra', u'water']
[u'bali', u'bomb', u'accus', u'beg', u'lenienc']
[u'beatti', u'downplay', u'latest', u'poll']
[u'boomer', u'lose', u'greec', u'second', u'basket']
[u'boy', u'bail', u'reappear', u'woorabinda', u'riot']
[u'boy', u'phone', u'porn', u'suspens', u'excess']
[u'brack', u'seek', u'support', u'extend', u'daylight', u'save']
[u'breast', u'cancer', u'drug', u'win', u'subsidi']
[u'break', u'hill', u'mourn', u'death', u'public', u'figur']
[u'bronco', u'aim', u'finish']
[u'brough', u'martin', u'play', u'land', u'right', u'critic']
[u'brough', u'seek', u'aborigin', u'communiti', u'polic', u'auditor']
[u'bulldog', u'lose', u'mason', u'final']
[u'bush', u'commit', u'lebanon']
[u'busi', u'ethic', u'debat', u'gain', u'momentum']
[u'busi', u'hop', u'minist', u'snap', u'croc', u'safari']
[u'cabinet', u'fail', u'telstra', u'decis']
[u'cabinet', u'debat', u'telstra', u'futur']
[u'servic', u'dark', u'strike', u'plan']
[u'caravan', u'design', u'contribut', u'famili', u'death', u'inquest']
[u'sale']
[u'castlemain', u'emerg', u'hous', u'appropri']
[u'centrelink', u'good', u'news', u'jobseek']
[u'china', u'sydney', u'flight', u'touch', u'bomb', u'scare']
[u'clear', u'tour', u'inzamam']
[u'closer']
[u'closer', u'midday']
[u'closer']
[u'coalit', u'leader', u'need', u'establish', u'work']
[u'chair', u'submiss', u'indigen', u'abus']
[u'cole', u'confirm', u'takeov']
[u'cole', u'myer', u'receiv', u'condit', u'offer']
[u'commiss', u'help', u'explain', u'liquor', u'licens', u'law']
[u'communiti', u'farewel', u'meningococc', u'victim']
[u'compani', u'confid', u'develop', u'papp', u'antidot']
[u'compass', u'urg', u'murder', u'accus']
[u'concern', u'ballarat', u'council', u'plan', u'demolish']
[u'costello', u'comment', u'disappoint', u'kennett']
[u'council', u'appli', u'fund', u'rail', u'link']
[u'council', u'budget', u'surplus', u'fund', u'brisban', u'bus']
[u'council', u'plan', u'mix', u'waterfront', u'develop']
[u'council', u'meet', u'resid', u'powerlin']
[u'court', u'dismiss', u'appeal', u'teen', u'sentenc']
[u'court', u'reject', u'convict', u'killer', u'releas', u'date']
[u'cryptic', u'code', u'breakthrough', u'take', u'eureka', u'award']
[u'csiro', u'lighten', u'load', u'car']
[u'dairi', u'industri', u'fight', u'percept']
[u'defenc', u'woomera', u'rocket', u'launch']
[u'deploy', u'troop', u'afghanistan', u'delay']
[u'dept', u'consult', u'hear', u'price', u'health', u'concern']
[u'doctor', u'underestim', u'asthma', u'patient', u'condit']
[u'embassi', u'unawar', u'bomb', u'scare', u'sydney', u'bind']
[u'woomera', u'nurs', u'sue', u'oper', u'psychiatr']
[u'famili', u'friend', u'mourn', u'death', u'woman', u'fell']
[u'farmer', u'prevent', u'veget', u'clear', u'inspect']
[u'farmer', u'share', u'stori', u'support']
[u'feder', u'cabinet', u'consid', u'telstra', u'sale']
[u'children', u'arrest', u'theft']
[u'fli', u'shovel', u'reunit', u'tindal']
[u'forestri', u'industri', u'skill', u'shortag', u'reach', u'crisi']
[u'anti', u'pulp', u'campaign', u'leav']
[u'labor', u'parti', u'stewart', u'die']
[u'galact', u'crash', u'shed', u'light', u'dark', u'matter']
[u'gasnet', u'subject', u'takeov']
[u'gatlin', u'record']
[u'gippsland', u'vline', u'train', u'week']
[u'girl', u'injur', u'theft', u'releas']
[u'gladston', u'appeal', u'victim', u'famili', u'end']
[u'govt', u'doubl', u'redund']
[u'govt', u'recruit', u'gippsland', u'firefight']
[u'govt', u'rule', u'year', u'term', u'referendum']
[u'govt', u'subsidis', u'breast', u'cancer', u'drug']
[u'govt', u'urg', u'extend', u'drought', u'relief', u'small']
[u'gulf', u'communiti', u'benefit', u'expans']
[u'harvey', u'beef', u'move', u'cattl']
[u'hawk', u'disciplin', u'spida']
[u'hayden', u'mcgrath', u'return', u'squad']
[u'health', u'offici', u'assur', u'meningococc', u'case']
[u'henri', u'fit', u'ahead', u'short', u'cours', u'meet']
[u'henti', u'tree', u'clear', u'except', u'govt']
[u'hunt', u'return', u'wing', u'eel']
[u'immigr', u'bribe', u'payer', u'citizenship']
[u'immigr', u'dept', u'defend', u'citizenship', u'decis']
[u'indian', u'polic', u'kill', u'mumbai', u'blast', u'suspect']
[u'india', u'take', u'live', u'export', u'market', u'share']
[u'indigen', u'child', u'abus', u'inquiri', u'focus']
[u'indigen', u'communiti', u'higher', u'rat']
[u'initi', u'kovco', u'investig', u'limit']
[u'investig', u'front', u'kovco', u'inquiri']
[u'inzamam', u'want', u'oval', u'test', u'declar', u'void']
[u'iran', u'repli', u'nuclear', u'incent', u'offer']
[u'iran', u'vow', u'press', u'ahead', u'nuclear', u'program']
[u'isra', u'tank', u'enter', u'gaza', u'clash', u'milit']
[u'italian', u'deploy', u'condit', u'ceas']
[u'italian', u'tourist', u'niger', u'kidnap']
[u'ivanov', u'down', u'hingi', u'montreal', u'final']
[u'jade', u'rawl', u'announc', u'retir']
[u'japan', u'reserv', u'comment', u'tuna', u'catch', u'claim']
[u'johnson', u'ban', u'match']
[u'kennett', u'label', u'costello', u'disloy']
[u'council', u'want', u'govt', u'maintain', u'road']
[u'killer', u'tell', u'court', u'victim', u'husband', u'order']
[u'kirra', u'hill', u'fund', u'good', u'start', u'say', u'communiti']
[u'labor', u'back', u'expans', u'plan']
[u'leader', u'focus', u'campaign', u'health', u'hospit']
[u'lebanon', u'see', u'year', u'reconstruct', u'effort']
[u'lovett', u'track', u'say', u'sheedi']
[u'makyb', u'diva', u'mate', u'arriv', u'hunter', u'valley']
[u'charg', u'forster', u'motel', u'murder']
[u'face', u'court', u'racist', u'phone', u'call']
[u'injur', u'cherri', u'picker', u'fall']
[u'jail', u'stalk']
[u'man', u'footbal', u'charg', u'assault']
[u'sentenc', u'month', u'jail', u'robberi', u'spree']
[u'maroon', u'hope', u'retain', u'meninga']
[u'maywald', u'prais', u'decis', u'return', u'gigalitr']
[u'melb', u'skyscrap', u'prais', u'green', u'altern']
[u'west', u'develop', u'commiss', u'announc']
[u'mine', u'boom', u'lift', u'onesteel', u'result']
[u'mine', u'sector', u'back', u'nativ', u'titl', u'chang']
[u'minist', u'blame', u'parent', u'woorabinda', u'riot']
[u'say', u'home', u'nurs', u'fund', u'shortfal', u'highlight']
[u'mooney', u'accept', u'match']
[u'moora', u'nativ', u'plant', u'rescu', u'success']
[u'patient', u'evid']
[u'mother', u'face', u'court', u'young', u'son', u'murder']
[u'mullewa', u'shire', u'gain', u'doctor']
[u'murder', u'face', u'wait', u'parol']
[u'muster', u'organis', u'thank', u'communiti', u'group']
[u'mutual', u'decis', u'gilchrist', u'exclus']
[u'nativ', u'titl', u'chang', u'deni', u'justic', u'robinson']
[u'health', u'servic', u'confid', u'deliv']
[u'law', u'restrict', u'suspend', u'sentenc']
[u'newspol', u'predict', u'beatti', u'victori']
[u'north', u'coast', u'unemploy', u'lower']
[u'north', u'west', u'devil', u'cancer', u'free']
[u'freedom', u'tourism']
[u'polic', u'associ', u'welcom', u'auditor', u'appoint']
[u'convict', u'fatal', u'hostel']
[u'price', u'tip', u'boost', u'wool', u'market']
[u'olmert', u'rule', u'syrian', u'talk']
[u'omega', u'veget', u'tabl', u'biolog']
[u'opposit', u'remind', u'govt', u'gracetown', u'hous']
[u'oral', u'contracept', u'trial', u'help', u'curb', u'kangaroo']
[u'painter', u'get', u'period', u'detent', u'indec']
[u'paper', u'reignit', u'hobbit', u'debat']
[u'pet', u'death', u'renew', u'hunt', u'debat']
[u'piggeri', u'water', u'treatment']
[u'pay', u'tribut', u'journalist']
[u'polic', u'investig', u'attempt', u'arm', u'robberi']
[u'polic', u'urg', u'caution', u'night', u'spate']
[u'port', u'kembla', u'steelwork', u'staff', u'prais', u'output']
[u'power', u'lose', u'player', u'injuri']
[u'power', u'recal', u'trust', u'fund', u'email']
[u'project', u'promot', u'fish', u'drug']
[u'coalit', u'promis', u'money', u'remot']
[u'support', u'lower', u'speed', u'limit', u'accid', u'road']
[u'rann', u'consid', u'daylight', u'save', u'chang']
[u'talk', u'household', u'financ']
[u'rdaq', u'urg', u'patient', u'trust', u'foreign', u'train']
[u'real', u'estat', u'agent', u'renter', u'urg', u'help']
[u'repatri', u'protocol', u'follow', u'kovco', u'inquiri']
[u'rescu', u'fishermen', u'land']
[u'research', u'link', u'poor', u'hous', u'condit', u'sick']
[u'tinto', u'celebr', u'year', u'iron']
[u'ripper', u'broad', u'support', u'nativ', u'titl', u'chang']
[u'rise', u'violenc', u'caus', u'concern', u'polic']
[u'rise', u'fuel', u'cost', u'affect', u'region', u'tourism']
[u'rural', u'communiti', u'hang', u'drought']
[u'russian', u'airlin', u'crash', u'eastern', u'ukrain']
[u'saddam', u'refus', u'enter', u'plea', u'genocid', u'trial']
[u'salvat', u'armi', u'seek', u'convers', u'rebat']
[u'sarroff', u'robina']
[u'sartor', u'deni', u'underestim', u'popul', u'growth']
[u'scientist', u'pioneer', u'techniqu']
[u'satellit', u'monitor', u'bushfir', u'affect', u'mammal']
[u'scientist', u'trial', u'toxic', u'gold', u'extract']
[u'search', u'miss', u'tarrawanna', u'continu']
[u'seat', u'wright', u'meet', u'opposit', u'inquiri']
[u'seawe', u'chemic', u'offer', u'medic', u'hope']
[u'soccer', u'associ', u'anger', u'council', u'sport']
[u'staff', u'unfaz', u'kickback', u'inquiri', u'tell']
[u'stanhop', u'support', u'daylight', u'save', u'chang']
[u'state', u'emerg', u'extend', u'provinc']
[u'stosur', u'win', u'haven']
[u'strong', u'metal', u'price', u'lift', u'market']
[u'studi', u'call', u'increas', u'recruit', u'help']
[u'sink', u'freighter', u'protect', u'grave']
[u'sydney', u'captainci']
[u'tanker', u'spill', u'coastguard', u'say']
[u'teen', u'guilti', u'threaten', u'wit']
[u'test', u'forfeit', u'prompt', u'charg']
[u'jerri', u'smoke', u'scene', u'snuff']
[u'transport', u'compani', u'warn', u'driver', u'train', u'line']
[u'tribun', u'allow', u'patient', u'alleg']
[u'firm', u'explor', u'seab']
[u'polic', u'charg', u'airport', u'terror', u'plot']
[u'take', u'near', u'migrant']
[u'terror', u'accus', u'remand', u'custodi']
[u'ulladulla', u'swimmer', u'world', u'championship']
[u'union', u'concern', u'crimin', u'influenc']
[u'union', u'discuss', u'ajax', u'deal']
[u'univers', u'feel', u'pinch']
[u'unregist', u'birth', u'grow', u'problem', u'brough', u'say']
[u'rescu', u'ambassador', u'congo']
[u'kill', u'egypt', u'train', u'crash']
[u'council', u'appeal', u'drought', u'assist']
[u'govt', u'give', u'loddon', u'river', u'rehabilit']
[u'victoria', u'histori', u'encourag', u'chines', u'tourism']
[u'violenc', u'worsen', u'congo']
[u'volunt', u'lifesav', u'earli', u'morn', u'patrol']
[u'farmer', u'drought', u'help']
[u'wagga', u'council', u'code', u'criticis', u'local', u'govt', u'head']
[u'wagga', u'council', u'urg', u'hampden', u'bridg']
[u'wakool', u'shire', u'council', u'cut', u'cost', u'surviv']
[u'water', u'food', u'label', u'moot']
[u'weak', u'nino', u'relief', u'north', u'coast']
[u'wheat', u'virus', u'commerci', u'crop']
[u'work', u'visa', u'wont', u'benefit', u'island', u'immigr']
[u'young', u'demon', u'win', u'rise', u'star']
[u'young', u'diabet', u'risk', u'depress', u'research']
[u'young', u'mayor', u'condemn', u'racist', u'vandal']
[u'court', u'london', u'terror', u'plot']
[u'charg', u'lay', u'woorabinda', u'rampag']
[u'abduct', u'reunit', u'mother']
[u'abetz', u'voic', u'support', u'plantat', u'industri']
[u'take', u'film', u'road']
[u'downplay', u'dili', u'unrest', u'despit', u'injuri']
[u'ajax', u'continu', u'receiv', u'feder', u'fund']
[u'ajax', u'worker']
[u'leagu', u'action', u'kick', u'friday']
[u'black', u'chang']
[u'claim', u'veteran', u'deni', u'specialist', u'care']
[u'amnesti', u'accus', u'israel', u'crime']
[u'aplin', u'call', u'protect', u'antisoci']
[u'arthriti', u'suffer', u'report', u'improv', u'drug']
[u'asada', u'say', u'charg', u'pend', u'player']
[u'auditor', u'probe', u'smartcard', u'tender', u'process']
[u'aust', u'airlift', u'kokoda', u'track']
[u'australian', u'policemen', u'injur', u'dili']
[u'australian', u'win', u'math', u'prize']
[u'author', u'believ', u'bushfir', u'purpos']
[u'attempt', u'retract', u'cole', u'inquiri', u'evid']
[u'backbench', u'urg', u'support', u'educ', u'inquiri']
[u'baillieu', u'attempt', u'shrug', u'costello', u'kennett']
[u'bali', u'bomber', u'messag', u'terrorist', u'prison']
[u'beatti', u'forecast', u'farmer', u'water']
[u'beatti', u'offer', u'literaci', u'program', u'fund']
[u'bendigo', u'hold', u'public', u'meet', u'discuss', u'water']
[u'billiton', u'post', u'profit', u'rise']
[u'billiton', u'post', u'aust', u'biggest', u'profit']
[u'billiton', u'post', u'record', u'profit', u'jump']
[u'name', u'draft', u'wheat', u'deal', u'contract']
[u'black', u'recov', u'crash', u'russian', u'plane']
[u'blacklock', u'forc']
[u'boomer', u'face', u'lithuania', u'clash']
[u'boomer', u'lithuania']
[u'broom', u'hous', u'price', u'continu', u'rise', u'despit', u'slow']
[u'brown', u'shelv', u'sympathi', u'rival', u'coach', u'raper']
[u'busi', u'concern', u'exclus', u'drought']
[u'call', u'commonwealth', u'help', u'childcar']
[u'call', u'council', u'consid', u'stormwat']
[u'call', u'southport', u'broadwat', u'develop']
[u'canberra', u'cab', u'custom', u'satisfact', u'plummet']
[u'canberra', u'face', u'critic', u'skill', u'shortag']
[u'caus', u'fatal', u'ukrain', u'plane', u'crash', u'unclear']
[u'caus', u'ukrain', u'plane', u'crash', u'unclear']
[u'cayless', u'miss', u'final']
[u'centrelink', u'crackdown', u'welcom', u'welfar', u'group']
[u'centrelink', u'centr', u'locat', u'slap', u'face']
[u'centrelink', u'privaci', u'breach', u'disturb']
[u'child', u'protect', u'ban']
[u'china', u'detain', u'australian', u'airlin', u'bomb', u'threat']
[u'claim', u'climat', u'chang', u'boost', u'alcohol', u'level']
[u'closer', u'news']
[u'closer', u'news']
[u'closer']
[u'coalit', u'avoid', u'daylight', u'save', u'debat']
[u'code', u'practic', u'wast', u'water', u'dump']
[u'colleg', u'surgeon', u'blast', u'qlds', u'world']
[u'committ', u'hear', u'begin', u'girl', u'death']
[u'concern', u'rais', u'centrelink', u'privaci', u'breach']
[u'coonan', u'see', u'balanc', u'telstra', u'sale']
[u'corbi', u'turn', u'possibl', u'prison', u'transfer']
[u'coron', u'receiv', u'report', u'toddler', u'death']
[u'council', u'continu', u'push', u'eurana', u'hous', u'purchas']
[u'council', u'disappoint', u'decis', u'fuel']
[u'court', u'overturn', u'convict', u'indec', u'assault']
[u'cousin', u'deni', u'film', u'maker', u'friend', u'suicid']
[u'cowra', u'abattoir', u'administr', u'spell', u'meatwork']
[u'predict', u'profit', u'cervic', u'cancer', u'vaccin']
[u'daylight', u'save', u'propos', u'mix', u'reaction']
[u'defenc', u'cost']
[u'demount', u'hous', u'site', u'divid']
[u'develop', u'resid', u'land', u'swap']
[u'dfat', u'seek', u'access', u'aust', u'detain', u'bomb', u'hoax']
[u'doctor', u'guilti', u'abort', u'charg']
[u'domest', u'violenc', u'support', u'hard', u'access']
[u'driver', u'know', u'risk', u'survey']
[u'drug', u'test', u'frequent', u'schifcofsk']
[u'condit', u'boost', u'cattl', u'sheep', u'sale']
[u'weather', u'drastic', u'affect', u'crop', u'southern']
[u'earth', u'work', u'battl', u'save', u'arcadia', u'quokka']
[u'earth', u'work', u'watch', u'glen', u'nagl']
[u'earth', u'work', u'lure', u'high', u'countri']
[u'eel', u'rock', u'cayless', u'injuri']
[u'england', u'need', u'ash', u'rout', u'world', u'rank']
[u'timor', u'polic', u'activ']
[u'famili', u'accus', u'politician', u'point', u'score']
[u'farmer', u'oppos', u'move', u'extend', u'daylight', u'save']
[u'feder', u'mauresmo', u'seed', u'open']
[u'fight', u'hinder', u'effort', u'northern', u'lanka']
[u'children', u'remand', u'custodi', u'theft']
[u'foxtel', u'drop', u'channel']
[u'francou', u'call']
[u'franklin', u'upbeat', u'dragon']
[u'fund', u'shortag', u'delay', u'open', u'lifelin']
[u'girl', u'death', u'highlight', u'asthma', u'risk']
[u'govern', u'condemn', u'clps', u'code', u'conduct']
[u'govt', u'grant', u'help', u'ambul']
[u'govt', u'seek', u'indigen', u'communiti', u'polic', u'auditor']
[u'appoint', u'kaniva']
[u'grain', u'deliveri', u'rule', u'anger', u'farmer']
[u'grain', u'grower', u'warn', u'mous', u'increas']
[u'green', u'push', u'renew', u'energi', u'target']
[u'health', u'servic', u'warn', u'gastro', u'outbreak']
[u'expect', u'chang', u'build', u'code', u'follow']
[u'hick', u'get', u'wors', u'lawyer']
[u'hill', u'sale', u'result', u'suitabl', u'tender']
[u'homeless', u'accommod', u'plan', u'attract', u'strong', u'support']
[u'horsemanship', u'cours', u'improv', u'youth', u'prospect']
[u'howard', u'fund', u'stormwat', u'harvest', u'scheme']
[u'howard', u'prais', u'centrelink', u'tamper', u'respons']
[u'hundr', u'candlelight', u'vigil', u'hick']
[u'postpon', u'inzamam', u'hear']
[u'say', u'team', u'choos', u'umpir']
[u'iemma', u'begin', u'push', u'ethanol']
[u'index', u'show', u'economi', u'feel', u'rate', u'rise', u'impact']
[u'inquiri', u'hear', u'kovco', u'investig', u'hinder']
[u'iran', u'offer', u'compromis', u'nuclear', u'enrich']
[u'iran', u'offer', u'nuclear', u'discuss']
[u'order', u'polic', u'disput', u'compromis']
[u'israel', u'sign', u'contract', u'nuclear', u'capabl']
[u'job', u'lose', u'amcor', u'announc', u'restructur']
[u'johnson', u'post', u'sweden']
[u'journalist', u'lose', u'appeal', u'contempt', u'charg']
[u'truck', u'record', u'profit', u'drop']
[u'karr', u'front', u'court', u'jonbenet', u'murder']
[u'kokoda', u'emerg', u'rais', u'doubt', u'hospit']
[u'lake', u'macquari', u'resid', u'claim', u'victori', u'fight']
[u'airport', u'secur', u'risk', u'worker', u'safeti', u'union']
[u'liber', u'show', u'baillieu', u'readi', u'govern']
[u'lightn', u'strike', u'blame', u'ukrain', u'plane', u'crash']
[u'local', u'miss', u'boom', u'benefit']
[u'lodhi', u'get', u'year', u'terror', u'plot']
[u'lodhi', u'sentenc', u'stand', u'terror']
[u'lodhi', u'sentenc', u'year', u'jail']
[u'lyon', u'hungri', u'challeng', u'victori']
[u'magistr', u'find', u'deputi', u'mayor', u'case', u'answer']
[u'fin', u'suppli', u'petrol', u'woorabinda', u'youth']
[u'lose', u'farm', u'accid']
[u'man', u'feet', u'sever', u'train', u'accid']
[u'rate', u'hike', u'fail', u'dent', u'economi']
[u'mayor', u'suggest', u'town', u'squar', u'area']
[u'mckenzi', u'hit', u'kiwi', u'super', u'snub']
[u'mix', u'reaction', u'hospit', u'locat', u'announc']
[u'monto', u'announc', u'construct', u'complet', u'date']
[u'assault', u'report', u'suspect', u'identifi']
[u'protect', u'abalon', u'stock']
[u'mortgag', u'broker', u'say', u'hous', u'market', u'improv']
[u'question', u'bmpa', u'manag', u'departur']
[u'nation', u'weather']
[u'nrma', u'back', u'iemma', u'ethanol', u'plan']
[u'fund', u'rotavirus', u'vaccin', u'program']
[u'numer', u'sourc', u'caus', u'sydney', u'water', u'contamin']
[u'swear']
[u'explor', u'caus', u'diver', u'shortag']
[u'explor', u'compani', u'admit', u'spill']
[u'oliv', u'take', u'hospit', u'race', u'fall']
[u'opposit', u'plan', u'water', u'infrastructur', u'program']
[u'opposit', u'pledg', u'daylight', u'save']
[u'ozon', u'hole', u'stabl', u'scientist']
[u'ozwid', u'closer']
[u'pakistani', u'nuclear', u'scientist', u'diagnos', u'cancer']
[u'test', u'celebr', u'year', u'save', u'live']
[u'paramount', u'drop', u'cruis', u'recent', u'conduct']
[u'pascarl', u'reunion', u'abduct', u'wonder']
[u'patient', u'affair', u'doctor', u'reinstat']
[u'patient', u'posit', u'dentist', u'test']
[u'line', u'profit', u'go']
[u'perth', u'teen', u'charg', u'student', u'assault']
[u'plan', u'grey', u'water', u'treatment', u'system', u'river']
[u'player', u'associ', u'unawar', u'dope', u'infract']
[u'polic', u'probe', u'million', u'dollar', u'jewelleri', u'theft']
[u'polic', u'quiz', u'isra', u'presid', u'alleg']
[u'polic', u'rais', u'hospit']
[u'polic', u'unabl', u'enforc', u'hoon', u'law', u'opposit']
[u'porn', u'star', u'parad', u'draw', u'thousand']
[u'premier', u'websit', u'ditch', u'ferri', u'promot']
[u'profit', u'result', u'market', u'higher']
[u'propos', u'fourteenth', u'street', u'park']
[u'arthriti', u'drug', u'hail', u'major', u'advanc']
[u'artist', u'watson', u'win', u'prize']
[u'coalit', u'announc', u'drought', u'plan']
[u'labor', u'unveil', u'educ', u'polici']
[u'rabbit', u'plagu', u'prompt', u'question', u'calicivirus']
[u'research', u'show', u'ozon', u'hole', u'close']
[u'resid', u'fail', u'effort', u'save', u'avenu']
[u'retail', u'spend', u'petrol', u'rat', u'bite']
[u'welcom', u'flag', u'burner', u'sentenc']
[u'stand', u'speed', u'camera', u'evid', u'despit', u'rule']
[u'rural', u'resid', u'oppos', u'daylight', u'save', u'extens']
[u'safeti', u'fear', u'cloud', u'madonna', u'moscow', u'concert']
[u'govt', u'touch', u'speed', u'limit']
[u'search', u'resum', u'miss', u'alzheim', u'suffer']
[u'shortag', u'job', u'welder', u'trade', u'assist']
[u'snowi', u'hydro', u'negoti', u'river', u'flush']
[u'soldier', u'amaz', u'kovco', u'bodi', u'remov', u'scene']
[u'soni', u'snap', u'right', u'aussi', u'film']
[u'spinal', u'injuri', u'surgeri', u'cyclist']
[u'spring', u'forecast']
[u'stosur']
[u'student', u'demand', u'fund', u'wake']
[u'student', u'protest', u'sick', u'state', u'univers', u'union']
[u'support', u'flow', u'dubbo', u'preschool', u'lose', u'blaze']
[u'sydney', u'aquif', u'contamin', u'widen']
[u'sydney', u'borewat', u'extend']
[u'sydney', u'project', u'tackl', u'global', u'warm']
[u'research', u'point', u'safer', u'gold', u'extract']
[u'terror', u'unlik', u'caus', u'russian', u'plane', u'crash']
[u'timber', u'compani', u'invest', u'wine']
[u'tooth', u'decay', u'blame', u'poor', u'diet']
[u'tourist', u'warn', u'croc', u'kakadu', u'gorg']
[u'tour', u'murray', u'attract', u'strong', u'field', u'competitor']
[u'townsvill', u'enterpris', u'present', u'wish', u'list']
[u'towradgi', u'pool', u'undergo', u'major', u'revamp']
[u'toxic', u'pulp', u'claim', u'question']
[u'train', u'crash', u'leav', u'star', u'hospit']
[u'trial', u'soldier', u'adjourn']
[u'trujillo', u'role', u'question', u'telstra', u'share']
[u'turf', u'inspect', u'order', u'olymp', u'stadium']
[u'polic', u'want', u'time', u'hold', u'plot', u'suspect']
[u'ballarat', u'workplac', u'agreement', u'meet']
[u'union', u'blame', u'govt', u'amcor', u'loss']
[u'union', u'concern', u'onesteel', u'smorgon', u'merger']
[u'use', u'rain', u'fall', u'farm']
[u'user', u'obstetrician', u'indemn']
[u'plane', u'bind', u'india', u'turn', u'amsterdam']
[u'govt', u'continu', u'push', u'mildura', u'rail', u'line']
[u'virgin', u'blue', u'profit', u'rise', u'despit', u'fuel', u'cost']
[u'govt', u'support', u'biofuel', u'futur', u'minist']
[u'wallabi', u'confirm', u'european', u'schedul']
[u'wallabi', u'look', u'forward', u'return']
[u'warm', u'day', u'caus', u'grape', u'vine']
[u'scientist', u'look', u'alga', u'fuel']
[u'truffl', u'french']
[u'welfar', u'group', u'applaud', u'centrelink', u'crackdown']
[u'welfar', u'group', u'welcom', u'centrelink', u'crackdown']
[u'west', u'wind', u'energi', u'tour', u'propos', u'wind', u'farm', u'site']
[u'wildcat', u'buoyant', u'ahead', u'season']
[u'wine', u'stockpil', u'writedown', u'hit', u'mcguigan']
[u'women', u'centr', u'revamp']
[u'advoc', u'say', u'child', u'protect', u'fail']
[u'hold', u'hear', u'paterson', u'elector']
[u'consult', u'urg', u'govt', u'lift', u'crop']
[u'agreement', u'pave', u'east', u'kimberley']
[u'showcas', u'talent']
[u'candid', u'say', u'take', u'callid', u'seat', u'serious']
[u'call', u'politician', u'releas', u'health']
[u'amateur', u'fishermen', u'push', u'represent']
[u'amnesti', u'condemn', u'lebanon', u'offens']
[u'report', u'profit', u'rise']
[u'execut', u'resign']
[u'appl', u'patent', u'disput']
[u'assembl', u'gear', u'budget', u'vote']
[u'auspin', u'look', u'expand', u'despit', u'contract', u'disput']
[u'aust', u'offici', u'wait', u'access', u'detain']
[u'australia', u'nation', u'warn', u'portabl', u'missil']
[u'australian', u'feel', u'increas', u'overwork', u'survey']
[u'aust', u'scientist', u'discov', u'star', u'heartbeat']
[u'baillieu', u'spat', u'wont', u'harm', u'elect', u'chanc', u'kroger']
[u'beatti', u'open', u'power', u'plant']
[u'beatti', u'pledg', u'fast', u'track', u'major', u'project']
[u'bendigo', u'fireman', u'fight', u'blaze']
[u'sell', u'drag', u'market']
[u'bishop', u'make', u'promis', u'educ', u'report']
[u'boomer', u'advanc', u'world', u'champ']
[u'boomer', u'fight', u'surviv']
[u'boonah', u'resid', u'tell', u'line', u'lose']
[u'brack', u'back', u'extend', u'stem', u'cell', u'research']
[u'buckley', u'doubt', u'blue', u'clash']
[u'carr', u'back', u'stem', u'cell', u'research']
[u'cathol', u'dioces', u'look', u'oversea', u'priest']
[u'cattl', u'roam', u'haast', u'bluff', u'follow', u'ikunji', u'deal']
[u'caus', u'dubbo', u'preschool', u'determin']
[u'centrelink', u'keep', u'investig', u'detail', u'wrap']
[u'chemic', u'spill', u'prompt', u'children', u'hospit']
[u'chines', u'athlet', u'coach', u'catch', u'inject']
[u'claim', u'govt', u'order', u'shred', u'mari', u'river']
[u'clarenc', u'valley', u'fin', u'wast', u'dump']
[u'closer']
[u'closer']
[u'closer']
[u'want', u'uranium', u'enrich']
[u'coalit', u'promis', u'power', u'line', u'underground']
[u'commonwealth', u'commit', u'fund', u'rural', u'financi']
[u'commut', u'urg', u'check', u'train', u'book']
[u'compens', u'push', u'bore']
[u'concern', u'land', u'clear', u'legisl', u'villag']
[u'congress', u'report', u'fault', u'intellig', u'iran']
[u'cooktown', u'powder', u'magazin', u'save']
[u'cooma', u'resid', u'wheel']
[u'costa', u'aim', u'maintain', u'state', u'healthi', u'credit']
[u'council', u'embrac', u'govt', u'consider', u'scallop']
[u'council', u'help', u'employ', u'water']
[u'council', u'present', u'revis', u'aquat', u'centr', u'plan']
[u'court', u'rule', u'send', u'refuge']
[u'cowboy', u'sack', u'drug']
[u'cowboy', u'player', u'sack', u'posit', u'drug', u'test']
[u'crime', u'commiss', u'hear', u'minist', u'tap', u'phone']
[u'dairi', u'industri', u'discuss', u'artifici', u'breed']
[u'danih', u'walk', u'injuri', u'tightrop']
[u'diabet', u'drug', u'add']
[u'research', u'centr', u'open', u'adelaid']
[u'drug', u'cheat', u'wont', u'away', u'omeley']
[u'end', u'fish', u'comp']
[u'winter', u'impact', u'melbourn', u'water', u'storag']
[u'dutch', u'polic', u'arrest', u'plane', u'scare']
[u'dutch', u'polic', u'detain', u'airlin', u'passeng']
[u'dwight', u'give', u'clear']
[u'eagl', u'surpris', u'derbi', u'hype']
[u'einfeld', u'send', u'dossier', u'polic']
[u'emot', u'command', u'tell', u'kovco', u'bodi', u'bungl']
[u'engin', u'discuss', u'hous', u'cyclon', u'larri']
[u'ethanol', u'plan', u'benefit', u'rural', u'communiti']
[u'ban', u'contamin', u'rice', u'import']
[u'princip', u'alleg', u'misus', u'aborigin', u'school']
[u'fast', u'track', u'approv', u'wont', u'corner', u'beatti']
[u'father', u'angri', u'meatwork', u'supervis', u'decis']
[u'father', u'jail', u'rape', u'victim', u'murder', u'plot']
[u'firefight', u'continu', u'monitor', u'hillsid', u'blaze']
[u'firefight', u'prepar', u'danger', u'condit']
[u'firefight', u'battl', u'south', u'east']
[u'flegg', u'offer', u'restaur', u'healthi', u'menu', u'incent']
[u'foley', u'partner', u'legal', u'alcohol', u'limit']
[u'forestri', u'group', u'deni', u'push', u'lower', u'wag']
[u'foxtel', u'scrap', u'channel']
[u'gas', u'victim', u'testifi', u'saddam', u'trial']
[u'gatlin', u'serv', u'minimum', u'year', u'iaaf']
[u'gatlin', u'contest', u'year']
[u'german', u'train', u'bomb', u'suspect', u'arrest', u'lebanon']
[u'govt', u'abort', u'servic', u'regul']
[u'hackett', u'pool']
[u'hamil', u'line', u'saint', u'return']
[u'hindmarsh', u'cemeteri', u'vandal', u'disgust']
[u'posit', u'dentist', u'prais', u'swift', u'notif']
[u'screen', u'begin', u'dentist', u'patient']
[u'hospitalist', u'posit', u'improv', u'doctor', u'care']
[u'hospit', u'site', u'redevelop', u'expect', u'bring']
[u'hous', u'price', u'climb', u'capit', u'citi']
[u'howard', u'give', u'armi', u'boost']
[u'hunt', u'unfaz', u'whiz', u'hayn']
[u'increas', u'demand', u'lead', u'dubbo', u'sydney', u'flight']
[u'indigen', u'student', u'tast']
[u'injuri', u'concern', u'hindmarsh']
[u'inquiri', u'recommend', u'chang', u'cumbersom', u'foster']
[u'intern', u'tourism', u'figur', u'appal']
[u'internet', u'satellit', u'provid', u'high', u'speed', u'broadband']
[u'irrig', u'leak', u'beatti', u'water', u'plan']
[u'vice', u'chancellor', u'delight', u'student', u'servic']
[u'karralika', u'drug', u'rehabilit', u'facil', u'decis']
[u'kean', u'sunderland', u'manag']
[u'jong', u'china', u'visit', u'report']
[u'king', u'island', u'win', u'fight', u'forestri']
[u'labor', u'accus', u'buy', u'famili', u'vote']
[u'lachlan', u'shire', u'council', u'pair', u'penrith']
[u'landcar', u'pioneer', u'induct', u'hall', u'fame']
[u'launceston', u'amcor', u'employe', u'tell', u'job', u'safe']
[u'lawyer', u'concern', u'livestock', u'exchang', u'ownership']
[u'lawyer', u'suggest', u'greed', u'motiv', u'misconduct']
[u'lazio', u'match', u'fix', u'appeal', u'fail']
[u'lebanon', u'play', u'israel', u'syria', u'disput', u'troop']
[u'legisl', u'assembl', u'debat', u'budget']
[u'liber', u'senat', u'welcom', u'stem', u'cell', u'breakthrough']
[u'lion', u'johnson', u'swan', u'encount']
[u'loan', u'plan', u'help', u'tasmanian', u'dentur']
[u'manildra', u'welcom', u'ethanol', u'announc']
[u'reach']
[u'larg', u'threaten', u'woman']
[u'mauresmo', u'injuri', u'win', u'form']
[u'mcgrath', u'look', u'ash', u'seri']
[u'mcguigan', u'simeon', u'feel', u'pinch', u'industri']
[u'melbourn', u'sport', u'souri']
[u'mildura', u'balloon', u'nation']
[u'mine', u'lobbi', u'critic', u'feder', u'support']
[u'ministeri', u'visit', u'prompt', u'follow']
[u'minist', u'outrag', u'refus', u'treat', u'domest']
[u'minist', u'wilcannia', u'live', u'condit']
[u'miss', u'alzheim', u'patient', u'home']
[u'mitchel', u'wallabi']
[u'apologis', u'hack', u'tag', u'poll']
[u'firefight', u'head', u'bushfir']
[u'say', u'govt', u'fail', u'rail', u'line']
[u'grant', u'allow', u'boost']
[u'appeal', u'preselect', u'vote']
[u'multi', u'million', u'dollar', u'unit', u'complex', u'plan', u'present']
[u'negat', u'propaganda', u'forestri', u'skill', u'shortag']
[u'archbishop', u'aim', u'increas', u'awar']
[u'offenc', u'aim', u'stop', u'gang', u'violenc']
[u'northern', u'properti', u'long', u'term', u'invest']
[u'get', u'complaint', u'worsen', u'work']
[u'provid', u'newborn', u'free', u'rotavirus', u'vaccin']
[u'uranium', u'enrich', u'decim', u'tourism']
[u'murder', u'convict', u'quash']
[u'oliv', u'miss', u'carniv', u'start']
[u'opposit', u'call', u'better', u'polic', u'compens']
[u'opposit', u'criticis', u'magpi', u'cull', u'plan']
[u'opposit', u'support', u'analysi', u'uranium']
[u'pakistan', u'target', u'hair', u'stand', u'firm']
[u'palestinian', u'milit', u'releas', u'hostag', u'video']
[u'palestinian', u'call', u'kidnap', u'report']
[u'peac', u'deal', u'bring', u'calm', u'capit']
[u'phenomen', u'start', u'whale', u'watch', u'season']
[u'plastic', u'race', u'rail', u'safer']
[u'announc', u'armi', u'number', u'boost']
[u'give', u'armi', u'boost']
[u'hold', u'meet', u'ambassador']
[u'announc', u'armi', u'boost']
[u'sell', u'armi', u'good', u'life']
[u'deni', u'claim', u'offici', u'pay', u'indonesian', u'govt']
[u'health', u'minist', u'slam', u'documentari']
[u'polic', u'hunt', u'teen', u'assault', u'elder', u'woman']
[u'polic', u'abl', u'enforc', u'hoon', u'law', u'countri']
[u'polic', u'seek', u'wit', u'discov', u'woman']
[u'presid', u'reject', u'warn', u'rugbi', u'brawl']
[u'program', u'cut', u'childhood', u'obes', u'rate', u'research']
[u'propos', u'code', u'conduct']
[u'push', u'faster', u'deploy', u'lebanon', u'peac', u'forc']
[u'coalit', u'power', u'plan', u'criticis']
[u'dentist', u'pose', u'infect', u'risk']
[u'govt', u'announc', u'rise', u'region', u'doctor']
[u'govt', u'ask', u'help', u'kick', u'start', u'climat', u'allianc']
[u'rainfal', u'bring', u'relief', u'dairi', u'farmer']
[u'rare', u'opal', u'worth', u'thousand', u'coober', u'pedi']
[u'rat', u'relief', u'port', u'stephen', u'oyster', u'farmer']
[u'urg', u'hous', u'price']
[u'real', u'milan', u'ponder', u'ronaldo', u'futur']
[u'reiq', u'welcom', u'cyclon', u'threat', u'discuss']
[u'report', u'show', u'govt', u'spend', u'consult']
[u'resid', u'affect', u'water', u'sale', u'mayor']
[u'role', u'model', u'import', u'rural', u'youth', u'minist']
[u'roo', u'trial', u'birth', u'control', u'pill']
[u'santo', u'post', u'record', u'profit']
[u'sargent', u'sack', u'posit', u'drug', u'test']
[u'reintroduc', u'right']
[u'schacht', u'warn', u'health', u'crisi', u'rural']
[u'scientist', u'claim', u'hear', u'star', u'heartbeat']
[u'search', u'continu', u'miss', u'australian', u'india']
[u'senior', u'polic', u'vote', u'confid', u'kobelk']
[u'silver', u'bullion', u'treasur', u'hous']
[u'korea', u'warn', u'north', u'nuclear', u'test']
[u'face', u'month', u'wait', u'test', u'result']
[u'sonni', u'play', u'man']
[u'speaker', u'comment', u'confirm', u'school', u'closur', u'flaw']
[u'speed', u'camera', u'court', u'rule', u'alarm', u'opposit']
[u'springbok', u'chang']
[u'springborg', u'prepar', u'elect', u'visit', u'innisfail']
[u'stanhop', u'want', u'ethanol', u'task', u'forc']
[u'stem', u'cell', u'relev', u'say', u'senat']
[u'stem', u'cell', u'debat', u'flare', u'aust']
[u'stem', u'cell', u'debat', u'agenda', u'aust']
[u'stem', u'cell', u'oppon', u'hail', u'breakthrough']
[u'stem', u'cell', u'research', u'risk', u'remain']
[u'sunbeam', u'lift', u'share', u'number', u'restrict']
[u'suspect', u'qaeda', u'fighter', u'kill', u'afghanistan']
[u'suspect', u'illeg', u'fish', u'boat', u'escort', u'darwin']
[u'tabcorp', u'profit', u'surg']
[u'scrutini', u'committe', u'stunt', u'say']
[u'teen', u'accus', u'assault', u'cri', u'court']
[u'telstra', u'vow', u'continu', u'battl', u'accc']
[u'tent', u'citi', u'creat', u'address', u'hous']
[u'test', u'begin', u'scare']
[u'thoma', u'prais', u'maguir', u'mind', u'power']
[u'tollner', u'reject', u'tourism', u'argument', u'enrich']
[u'transport', u'link', u'move', u'second', u'stage', u'plan']
[u'trezis', u'farewel', u'state', u'servic']
[u'ukrain', u'mourn', u'crash', u'victim']
[u'cook', u'snail', u'mening', u'china']
[u'unit', u'rech', u'bench']
[u'compani', u'claim', u'stem', u'cell', u'breakthrough']
[u'discoveri', u'reviv', u'stem', u'cell', u'debat']
[u'plane', u'incid', u'terror', u'dutch', u'minist']
[u'research', u'claim', u'stem', u'cell', u'advanc']
[u'vaughan', u'inquiri', u'tell', u'tie', u'woman']
[u'video', u'bring', u'comfort', u'famili', u'kidnap', u'newsman']
[u'accus', u'backflip', u'wetland', u'polici']
[u'revis', u'lebanon', u'appeal', u'target']
[u'wind', u'farm', u'closur', u'surpris']
[u'woman', u'escap', u'year', u'garag']
[u'young', u'matilda', u'world', u'champ']
[u'zinifex', u'record', u'fold', u'profit', u'increas']
[u'million', u'aussi', u'drink', u'riski', u'level']
[u'jump', u'mine', u'employ']
[u'boost', u'benefit', u'domest', u'polic']
[u'recruit', u'offic']
[u'disturb', u'debnam', u'discuss', u'trial']
[u'agenc', u'seek', u'govt', u'help', u'stop', u'mine', u'town', u'exodus']
[u'reach', u'northern', u'lanka']
[u'allianc', u'urg', u'govt', u'reveal', u'highway', u'plan']
[u'anelka', u'sign', u'bolton']
[u'appl', u'recal', u'million', u'laptop']
[u'aussi', u'tast', u'lupin']
[u'australia', u'offer', u'train', u'troop', u'philippin']
[u'australia', u'lebanon', u'deploy', u'return']
[u'aviat', u'industri', u'implement', u'mandatori', u'drug']
[u'beaconsfield', u'council', u'decid', u'drop', u'cafe', u'idea']
[u'beatti', u'defend', u'brisban', u'base', u'region', u'candid']
[u'beatti', u'make', u'pilgrimag', u'tree', u'knowledg']
[u'beatti', u'reject', u'mari', u'river', u'studi', u'shred', u'claim']
[u'beatti', u'plan', u'farmer', u'stop', u'silli', u'agforc']
[u'beatti', u'unveil', u'order', u'polici']
[u'biggest', u'threat', u'crow', u'backyard']
[u'black', u'cockatoo', u'forum', u'hold', u'decad', u'research']
[u'boat', u'captain', u'charg', u'fail', u'pilot']
[u'wow', u'adelaid', u'audienc']
[u'broadcast', u'franci', u'give', u'suspend', u'sentenc']
[u'break', u'hill', u'open', u'water', u'exhibit']
[u'brough', u'move', u'clarifi', u'demount']
[u'budget', u'harm', u'taxpay', u'chamber']
[u'bulk', u'bill', u'rat', u'year', u'high']
[u'driver', u'seek', u'guarante', u'staff', u'number']
[u'bushfir', u'danger', u'period', u'begin', u'sept']
[u'businessman', u'interest', u'sunbeam', u'takeov']
[u'caltex', u'half', u'year', u'profit', u'jump']
[u'part', u'theft', u'rise', u'sydney']
[u'carpent', u'drop', u'dorazio', u'amid', u'probe']
[u'central', u'watch', u'amid', u'danger', u'condit']
[u'help', u'prepar', u'season']
[u'chaunci', u'vale', u'sanctuari', u'expand']
[u'chemic', u'brisban', u'airport', u'hazard']
[u'china', u'jail', u'research', u'york', u'time', u'scoop']
[u'chines', u'fishermen', u'hold', u'darwin']
[u'chirac', u'say', u'troop', u'lebanon', u'excess']
[u'church', u'step', u'fight', u'nude', u'danc', u'club']
[u'clean', u'wind', u'tornado', u'damag', u'australind']
[u'closer', u'news']
[u'closer']
[u'coalit', u'pledg', u'teacher', u'aid', u'prep']
[u'compulsori', u'school', u'uniform', u'propos']
[u'cooler', u'temperatur', u'bring', u'respit', u'crew']
[u'corbi', u'appeal', u'adjourn', u'cctv', u'search']
[u'corbi', u'lawyer', u'produc', u'fresh', u'evid']
[u'corbi', u'final', u'appeal', u'begin']
[u'corbi', u'launch', u'final', u'sentenc', u'appeal']
[u'council', u'abandon', u'plan', u'renam', u'sturt']
[u'council', u'restructur', u'save', u'bega']
[u'council', u'reassess', u'denmark', u'divis']
[u'court', u'uphold', u'parol', u'convict', u'killer']
[u'crew', u'call', u'chemic', u'blast']
[u'cyclist', u'kick', u'ride', u'chariti']
[u'demetriou', u'defend', u'drug', u'stanc']
[u'demolit', u'histor', u'hotel', u'stop']
[u'dental', u'therapist', u'seek', u'wider', u'clientel']
[u'diabet', u'group', u'welcom', u'drug', u'subsidi']
[u'divers', u'domest', u'violenc', u'victim', u'uneth']
[u'studi', u'hold', u'climat', u'hope']
[u'test', u'confirm', u'austrian', u'kidnap', u'girl', u'ident']
[u'doctor', u'hunter', u'drug', u'crop', u'histori', u'drug']
[u'dorazio', u'tell', u'inquiri', u'polic', u'offic']
[u'eagl', u'focus', u'beat', u'docker']
[u'elermor', u'vale', u'villag', u'develop', u'proceed']
[u'ellison', u'offic', u'say', u'tape', u'corbi', u'luggag']
[u'extra', u'offic', u'region', u'stabil']
[u'feder', u'labor', u'warn', u'nuclear', u'dump']
[u'deal', u'link', u'scienc', u'indigen', u'knowledg']
[u'firefight', u'battl', u'bring', u'south', u'east', u'blaze']
[u'firm', u'prosecut', u'prevent', u'claim']
[u'fish', u'poacher', u'slap', u'fine', u'serv']
[u'fish', u'rebound', u'reason', u'reduc', u'protect', u'gbrmpa']
[u'flegg', u'accus', u'conflict']
[u'flegg', u'invest', u'overshadow', u'coalit', u'campaign']
[u'nipper', u'name', u'surf', u'life', u'save', u'chief']
[u'franc', u'commit', u'troop', u'forc']
[u'frost', u'tobacco', u'crop', u'attract', u'price']
[u'fungi', u'coffe', u'tasti']
[u'gambl', u'profit', u'hand', u'communiti']
[u'geraldton', u'boost', u'plan', u'staff', u'cope']
[u'giant', u'ram', u'statu', u'move', u'cairo', u'pollut']
[u'gippsland', u'aero', u'busi', u'fli', u'high']
[u'gloucest', u'shire', u'mine', u'compani', u'invit']
[u'goodman', u'fielder', u'post', u'million', u'profit']
[u'govt', u'blame', u'wind', u'turbin', u'plant', u'closur']
[u'govt', u'bolster', u'number']
[u'govt', u'defend', u'telstra', u'sell']
[u'govt', u'list', u'terrorist', u'group']
[u'govt', u'sell', u'chunk', u'telstra']
[u'hackett', u'fire', u'earli', u'warn', u'hobart']
[u'hackett', u'prove', u'form']
[u'hama', u'see', u'progress', u'free', u'gaza', u'hostag']
[u'hamil', u'urg', u'shape', u'final']
[u'health', u'dept', u'cost', u'cut', u'blame', u'elder']
[u'hockeyroo', u'win']
[u'howard', u'sell', u'telstra', u'year']
[u'humphri', u'urg', u'teach', u'canberra', u'histori']
[u'hunter', u'bradken', u'plan', u'expand', u'china']
[u'incent', u'need', u'young', u'age', u'care', u'worker']
[u'investig', u'teen', u'prison']
[u'reform', u'dont', u'help', u'aborigin', u'lawyer']
[u'number', u'soar', u'qlds', u'mine', u'industri']
[u'justic', u'minist', u'deni', u'anti', u'gang', u'law', u'target']
[u'koch', u'call', u'grampian', u'nation', u'park', u'plan']
[u'kovco', u'probe', u'hear', u'forens', u'limit']
[u'labor', u'question', u'nuclear', u'enrich']
[u'landhold', u'disappoint', u'fast', u'rail', u'perform']
[u'land', u'parcel', u'increas', u'size', u'wildlif']
[u'lapaglia', u'increas', u'stake']
[u'lawyer', u'charg', u'child', u'offenc']
[u'lebanon', u'demand', u'port', u'blockad']
[u'lebanon', u'evacu', u'specialist', u'return', u'home']
[u'light', u'plane', u'make', u'emerg', u'land', u'melbourn']
[u'local', u'govern', u'feder', u'fund', u'boost']
[u'macfarlan', u'reject', u'blame', u'vesta', u'closur']
[u'malaysia', u'ibrahim', u'claim', u'evid', u'elector']
[u'arrest', u'carjack', u'griffith']
[u'charg', u'child', u'sexual', u'assault']
[u'tunnel', u'escap', u'avoid', u'fare', u'evas', u'fine']
[u'remain', u'condit', u'shoot']
[u'stand', u'trial', u'accus', u'child', u'murder']
[u'mask', u'trio', u'shot', u'sydney', u'nightclub']
[u'matthew', u'urg', u'general', u'play']
[u'mcgauran', u'predict', u'nation', u'declin']
[u'mcguaran', u'outlin', u'reason', u'leav', u'nation']
[u'meet', u'halt', u'canberra', u'servic']
[u'melbourn', u'victori', u'leagu', u'open']
[u'meninde', u'public', u'vote', u'confid']
[u'migrant', u'labour', u'paper', u'industri', u'answer']
[u'minist', u'adam', u'afford', u'region']
[u'miss', u'austrian', u'girl', u'reunit', u'famili']
[u'poll', u'rig', u'concern', u'cattl', u'council']
[u'french', u'troop', u'land', u'lebanon']
[u'troop', u'townsvill', u'overkil']
[u'isra', u'oppos', u'olmert', u'poll']
[u'tasmanian', u'distrust', u'govt', u'corrupt', u'poll']
[u'mother', u'respons', u'babi', u'death']
[u'murray', u'deni', u'involv', u'sargent', u'sack']
[u'mutitjulu', u'polic', u'adequ', u'train']
[u'nation', u'want', u'drought', u'council']
[u'nativ', u'titl', u'chang', u'erod', u'indigen', u'right']
[u'nativ', u'veget', u'law', u'blame', u'lack', u'coffin']
[u'nattai', u'reserv', u'close', u'feral', u'anim', u'cull']
[u'nelson', u'probe', u'plastic', u'surgeri']
[u'netherland', u'apologis', u'indian', u'hold']
[u'appoint', u'futur', u'fund']
[u'hope', u'arthriti', u'suffer']
[u'govt', u'review', u'nativ', u'timber', u'law']
[u'health', u'patholog', u'review', u'reveal', u'bungl']
[u'opera', u'hous', u'upgrad']
[u'opposit', u'accus', u'govt', u'cover', u'curriculum']
[u'orford', u'seal', u'man', u'victori']
[u'oxiana', u'give', u'ahead']
[u'oxiana', u'expand', u'promin', u'hill']
[u'paedophil', u'hous', u'disput', u'court']
[u'paedophil', u'hous', u'disput', u'hold']
[u'parent', u'welcom', u'respit', u'fund', u'warn']
[u'parol', u'board', u'revers', u'decis', u'releas', u'murder']
[u'pedestrian', u'strike', u'power', u'pole', u'truck']
[u'perth', u'unlik', u'pass', u'sydney', u'hous', u'price']
[u'pilot', u'prais', u'emerg', u'land']
[u'piri', u'flood', u'leve', u'wait', u'govt', u'fund']
[u'pluto', u'reclassifi', u'dwarf', u'planet']
[u'pluto', u'strip', u'planet', u'status']
[u'announc', u'boost', u'rank']
[u'announc', u'telstra', u'sale', u'plan']
[u'hop', u'speed', u'cancer', u'drug', u'subsidi']
[u'sell', u'telstra', u'year']
[u'want', u'custom', u'protect', u'corpor']
[u'reject', u'howard', u'secur', u'comment']
[u'polic', u'concern', u'miss', u'walker', u'safeti']
[u'polic', u'interview', u'youth', u'elder', u'woman']
[u'polic', u'search', u'miss', u'woodcutt']
[u'porn', u'email', u'dont', u'justifi', u'suspens', u'depart']
[u'portland', u'want', u'rail', u'standardis', u'export']
[u'premier', u'say', u'liber', u'apolog', u'accept']
[u'privat', u'school', u'accus', u'misus', u'feder', u'fund']
[u'pulp', u'construct', u'worker', u'come']
[u'health', u'wont', u'releas', u'dentist', u'patient']
[u'terror', u'suspect', u'prepar', u'bail', u'applic']
[u'raider', u'elliott', u'sargent', u'sack']
[u'raikkonen', u'set', u'pace', u'open', u'race']
[u'rape', u'alleg', u'prompt', u'student']
[u'real', u'drop', u'woodgat', u'gravesen']
[u'renmark', u'begin', u'murray', u'flood', u'commemor']
[u'resid', u'warn', u'secur', u'car', u'elud']
[u'retail', u'sector', u'lift', u'aust', u'market']
[u'safeti', u'group', u'encourag', u'helmet', u'grazier']
[u'saint', u'confirm', u'final', u'spot']
[u'sartor', u'defend', u'decis', u'expand', u'port', u'botani']
[u'school', u'program', u'weight', u'loss', u'winner']
[u'sonni', u'bill', u'intens']
[u'south', u'east', u'prais', u'find', u'illeg', u'worker']
[u'springbok', u'lose', u'niekerk', u'neck', u'injuri']
[u'springborg', u'join', u'sport', u'cheer', u'squad']
[u'stanton', u'urg', u'declar', u'beef']
[u'stem', u'cell', u'bill', u'unnecessari', u'say', u'abbott']
[u'stock', u'success', u'hing', u'studi']
[u'stoke', u'hand', u'memori']
[u'stoke', u'present', u'memori']
[u'sunshin', u'express', u'break', u'merger', u'talk']
[u'suspect', u'dugong', u'kill', u'senseless']
[u'takeov', u'talk', u'push', u'cole', u'record', u'price']
[u'tanami', u'gold', u'begin', u'pour']
[u'tasmanian', u'farmer', u'fear', u'plantat', u'impact']
[u'team', u'mate', u'say', u'sargent', u'sack', u'fair']
[u'teeth', u'problem', u'delay', u'sniffabl', u'petrol', u'ban']
[u'tent', u'embassi', u'closur', u'resist']
[u'thorp', u'fire', u'head', u'coach']
[u'timmin', u'dragon']
[u'dentist', u'happi', u'treat', u'posit']
[u'tractor', u'driver', u'finish', u'cross', u'countri', u'journey']
[u'trail', u'bike', u'rider', u'caus', u'nation', u'park', u'patrol']
[u'tugan', u'bypass', u'construct', u'run', u'ahead', u'schedul']
[u'suspect', u'arrest', u'german', u'bomb', u'probe']
[u'union', u'urg', u'govt', u'protect', u'contract', u'cleaner']
[u'vail', u'flag', u'problem', u'asean', u'free', u'trade', u'talk']
[u'vail', u'interest', u'japanes', u'east', u'asia', u'trade']
[u'high', u'countri', u'get', u'good', u'snowfal']
[u'victim', u'famili', u'outrag', u'driver', u'penalti']
[u'wagga', u'announc', u'director', u'corpor', u'servic']
[u'water', u'infrastructur', u'upgrad', u'wast', u'time']
[u'water', u'minist', u'defend', u'stanc', u'water', u'charg']
[u'webb', u'shadow', u'lead', u'ohio']
[u'wollongong', u'migrant', u'youth', u'servic']
[u'woman', u'serious', u'injur', u'hit', u'hors']
[u'wood', u'back', u'anti', u'dope', u'measur', u'golf']
[u'world', u'economi', u'absorb', u'price', u'rise', u'macfarlan']
[u'youth', u'worker', u'instat', u'remot', u'kimberley']
[u'maoist', u'attack', u'bangladesh']
[u'offic', u'injur', u'polic', u'collis']
[u'dead', u'miss', u'indian', u'flood']
[u'aborigin', u'group', u'welcom', u'rotavirus', u'vaccin', u'roll']
[u'child', u'protect', u'chang', u'arent']
[u'adelaid', u'aka', u'wish', u'list']
[u'afghan', u'presid', u'order', u'investig', u'battl']
[u'andrew', u'defend', u'impact', u'worker']
[u'argentina', u'spank', u'tall', u'black']
[u'aussi', u'rider', u'recov', u'spinal', u'surgeri']
[u'aussi', u'rider', u'strike', u'gold']
[u'aussi', u'wright', u'share', u'brunei', u'open', u'lead']
[u'australia', u'expect', u'carri', u'troop', u'burden', u'region']
[u'beatti', u'pledg', u'doubl', u'mine', u'explor', u'money']
[u'behaviour', u'problem', u'bing', u'drink', u'link', u'studi']
[u'biodiesel', u'produc', u'frustrat', u'tape']
[u'bird', u'shock', u'stun', u'hair', u'offer']
[u'boomer', u'plot', u'miracl']
[u'bus', u'servic', u'interrupt', u'train', u'rout']
[u'busi', u'fear', u'futur', u'vesta', u'shutdown']
[u'carpent', u'hold', u'price', u'intervent']
[u'casa', u'pursu', u'safeti', u'plan', u'airlin', u'laptop']
[u'cat', u'season', u'thrill', u'draw']
[u'church', u'bluff', u'plan', u'strip', u'club']
[u'closer']
[u'closer']
[u'club', u'prepar', u'legal', u'action', u'church', u'nude']
[u'coalit', u'accus', u'wild', u'river', u'backflip']
[u'cram', u'world', u'record', u'sweep', u'away']
[u'competitor', u'descend', u'fall', u'marathon']
[u'cross', u'citi', u'tunnel', u'cost', u'rise']
[u'darel', u'hair', u'offer', u'quit']
[u'debnam', u'move', u'extremist', u'organis']
[u'demon', u'bid', u'doubl', u'chanc']
[u'demon', u'hawk', u'lead', u'break']
[u'doctor', u'breach', u'contract', u'speak']
[u'dozen', u'hold', u'attack', u'australian', u'polic']
[u'dragon', u'edg', u'shark', u'half', u'time']
[u'dragon', u'prove', u'strong', u'struggl', u'shark']
[u'dragon', u'struggl', u'shark']
[u'escal', u'improv', u'opera', u'hous', u'access']
[u'commit', u'troop', u'lebanon', u'peacekeep', u'mission']
[u'boost', u'lebanon', u'peacekeep', u'forc']
[u'suppli', u'troop', u'lebanon', u'mission']
[u'explos', u'kill', u'lankan', u'soldier']
[u'famili', u'announc', u'prefer', u'alloc']
[u'famili', u'reveal', u'polici', u'blueprint']
[u'fatah', u'agre', u'nation', u'uniti', u'govern']
[u'ukrain', u'leader', u'jail']
[u'road']
[u'french', u'soldier', u'kill', u'afghanistan', u'blast']
[u'gatlin', u'expect', u'clear']
[u'gaza', u'captiv', u'say', u'unharm', u'deadlin', u'pass']
[u'german', u'fli', u'giant', u'shoe', u'world', u'tallest', u'woman']
[u'germani', u'confirm', u'sale', u'submarin', u'israel']
[u'govt', u'campaign', u'aim', u'sport', u'parent']
[u'govt', u'confirm', u'hick', u'wont', u'face', u'death', u'penalti']
[u'govt', u'dismiss', u'poll', u'corrupt', u'concern']
[u'govt', u'say', u'forcibl', u'disarm', u'hezbollah', u'suicid']
[u'govt', u'seek', u'public', u'comment', u'wilder', u'area']
[u'hair', u'offer', u'quit']
[u'hair', u'intern', u'futur', u'chappel']
[u'hawk', u'kangaroo', u'tasmania']
[u'hick', u'face', u'death', u'penalti', u'lawyer', u'warn']
[u'hill', u'hail', u'essenti', u'timor', u'mission']
[u'howard', u'defend', u'telstra', u'sale']
[u'howard', u'defend', u'telstra', u'sell', u'time']
[u'howard', u'staffer', u'criticis', u'state', u'coalit']
[u'indigen', u'communiti', u'weigh', u'tent', u'embassi', u'offer']
[u'insurg', u'kill', u'iraq', u'violenc', u'rag']
[u'iran', u'presid', u'inaugur', u'heavi', u'water', u'plant']
[u'isra', u'armi', u'kill', u'palestinian', u'west', u'bank', u'clash']
[u'israel', u'lebanon', u'hail', u'troop', u'pledg']
[u'japan', u'await', u'imperi', u'babi']
[u'maxwel', u'darrel', u'hair']
[u'joyc', u'question', u'time', u'telstra', u'sale']
[u'knight', u'romp', u'penrith']
[u'lenton', u'claim', u'commonwealth', u'record']
[u'lithuania', u'spain', u'turkey', u'reach', u'world', u'basketbal']
[u'arrest', u'dynamit', u'luggag']
[u'charg', u'alleg', u'chat', u'room', u'offer']
[u'injur', u'attempt', u'jack']
[u'kill', u'head', u'collis']
[u'mexican', u'fishermen', u'return', u'home', u'month']
[u'minchin', u'talk', u'telstra', u'sale']
[u'minist', u'defend', u'delay', u'electron', u'bracelet']
[u'minist', u'nurs', u'anim', u'cruelti', u'law']
[u'miss', u'near', u'cradl', u'mountain']
[u'nation', u'abandon', u'bush', u'telstra', u'beatti']
[u'saff', u'presid', u'elect']
[u'mission', u'bind', u'timor']
[u'nigerian', u'forc', u'destroy', u'slum', u'hous']
[u'consid', u'river', u'water', u'boost', u'sydney']
[u'spend', u'fat', u'snowi', u'hydro']
[u'mourn', u'pass', u'eddi', u'quong']
[u'opposit', u'say', u'govt', u'fail', u'snowi', u'river']
[u'peacekeep', u'deploy', u'lebanon']
[u'pilbara', u'artist', u'work', u'display', u'canberra']
[u'defend', u'telstra', u'sell', u'time']
[u'keep', u'promis', u'telstra', u'sale']
[u'polic', u'concern', u'miss']
[u'polic', u'seek', u'help', u'miss', u'woman']
[u'polic', u'stump', u'attack', u'dog']
[u'pont', u'laugh', u'pratt', u'ax', u'durham']
[u'liber', u'batter', u'opinion', u'poll']
[u'raider', u'brace', u'storm', u'backlash']
[u'richardson', u'star', u'tiger', u'beat', u'bomber']
[u'roar', u'ralli', u'late', u'sink', u'glori']
[u'ruddock', u'assur', u'hick', u'face', u'death', u'penalti']
[u'rural', u'communiti', u'concern', u'telstra', u'sale']
[u'sailor', u'appeal', u'drug']
[u'school', u'oval', u'boost', u'year']
[u'searcher', u'bodi', u'midland']
[u'search', u'resum', u'miss']
[u'seven', u'insurg', u'kill', u'british', u'strike']
[u'sevilla', u'stun', u'mighti', u'barcelona']
[u'storm', u'hold', u'fast', u'finish', u'raider']
[u'stosur', u'go', u'fight']
[u'swan', u'outclass', u'lion']
[u'swan', u'tiger', u'half', u'time']
[u'battleground', u'elect']
[u'teen', u'charg', u'elder', u'woman', u'assault']
[u'telstra', u'sale', u'keep', u'promis', u'howard']
[u'telstra', u'sale', u'right', u'thing', u'vail']
[u'telstra', u'sale', u'wont', u'improv', u'bush', u'servic', u'beatti']
[u'terror', u'train', u'exercis', u'expect', u'caus']
[u'texan', u'foil', u'burglari', u'britain', u'beatl', u'webcam']
[u'thai', u'armi', u'probe', u'bomb', u'plot']
[u'thai', u'accus', u'offic', u'assassin', u'plot']
[u'thatcher', u'suspend', u'citi', u'horror', u'tackl']
[u'thunderbird', u'secur', u'grand', u'final', u'berth']
[u'transatlant', u'flight', u'divert']
[u'troop', u'thompson', u'crown', u'cross', u'countri', u'champion']
[u'road', u'accid']
[u'releas', u'bail', u'manchest', u'murder']
[u'uganda', u'agre', u'condit', u'truce', u'rebel']
[u'uganda', u'rebel', u'agre', u'ceas', u'hostil']
[u'bomb', u'plot', u'suspect', u'remand', u'custodi']
[u'agre', u'right', u'disabl', u'treati']
[u'forc', u'takeov', u'aust', u'militari', u'timor']
[u'takeov', u'timor', u'polic']
[u'investig', u'isra', u'cluster', u'bomb']
[u'offic', u'plead', u'guilti', u'iraq', u'fraud', u'case']
[u'vail', u'talk', u'telstra', u'sale']
[u'venus', u'pull', u'open']
[u'vettel', u'fastest', u'second', u'istanbul', u'practic']
[u'vuelta', u'boss', u'hop', u'avoid', u'summer', u'scandal']
[u'wallabi', u'look', u'improv', u'away', u'record']
[u'warren', u'william', u'top', u'indigen', u'music', u'award']
[u'wood', u'forg', u'clear', u'bizarr', u'finish']
[u'work', u'start', u'brisban', u'bypass', u'tunnel']
[u'abbott', u'accus', u'scaremong']
[u'abbott', u'scaremong', u'barnett']
[u'abbott', u'scaremong', u'therapeut', u'clone']
[u'ahmadinejad', u'say', u'iran', u'threat', u'israel']
[u'black', u'fight', u'springbok']
[u'angri', u'sudanes', u'protest', u'envoy']
[u'appoint', u'rais', u'conflict', u'concern']
[u'armi', u'chief', u'welcom', u'forc', u'timor']
[u'australian', u'pair', u'lead', u'brunei', u'open']
[u'babi', u'return', u'timor', u'heart', u'oper']
[u'beachley', u'win', u'way']
[u'beatti', u'pledg', u'children', u'hospit']
[u'beatti', u'promis', u'children', u'hospit']
[u'bomb', u'baghdad', u'kill']
[u'bright', u'mind', u'dont', u'choos', u'teach', u'research']
[u'british', u'soldier', u'taliban', u'kill', u'afghanistan']
[u'bronco', u'eel', u'win', u'streak']
[u'brown', u'launch', u'elect', u'campaign']
[u'bulk', u'bill', u'increas', u'good', u'servic']
[u'carpent', u'spend', u'take', u'protect']
[u'cat', u'player', u'lose', u'kidney']
[u'ceas', u'hop', u'ugandan', u'conflict']
[u'child', u'protect', u'report']
[u'closer']
[u'closer']
[u'set', u'uranium', u'enrich', u'inquiri']
[u'coalit', u'make', u'order', u'elect', u'pitch']
[u'cowboy', u'post', u'moral', u'boost']
[u'davenport', u'open', u'injuri', u'scare']
[u'deak', u'break', u'australian', u'record']
[u'defenc', u'forc', u'address', u'bulli']
[u'dettori', u'prize', u'trophi', u'steal']
[u'docker', u'western', u'derbi']
[u'dozen', u'kill', u'plane', u'crash', u'offici']
[u'proceed', u'assault', u'charg']
[u'dragon', u'shark']
[u'eagl', u'docker', u'brace', u'massiv', u'derbi']
[u'ellison', u'rush', u'stem', u'cell', u'research']
[u'environ', u'group', u'back', u'creation', u'wilder', u'area']
[u'ferri', u'arriv', u'foreign', u'evacu', u'jaffna']
[u'finn', u'take', u'mobil', u'phone', u'throw', u'crown']
[u'expect', u'burn', u'night']
[u'flegg', u'tri', u'deflect', u'specul', u'staff']
[u'flood', u'anniversari', u'rememb', u'exhibit']
[u'free', u'sunday', u'public', u'transport']
[u'gaza', u'milit', u'releas', u'captur', u'newsmen']
[u'gold', u'rush', u'aussi', u'rower']
[u'govt', u'drive', u'telstra', u'share']
[u'govt', u'learn', u'lesson', u'katrina', u'bush', u'say']
[u'govt', u'hint', u'fund', u'darwin', u'regener']
[u'group', u'survey', u'chifley', u'local', u'school', u'need']
[u'hewitt', u'play', u'knee', u'pain']
[u'iemma', u'concern', u'teen', u'plastic', u'surgeri']
[u'inter', u'stage', u'stun', u'fightback', u'super']
[u'iran', u'threat', u'israel', u'ahmadinejad']
[u'iran', u'nuclear', u'program', u'enter', u'phase']
[u'iraqi', u'tribal', u'chief', u'agre', u'support', u'reconcili']
[u'isra', u'presid', u'protest', u'innoc', u'scandal']
[u'israel', u'lebanon', u'support', u'troop', u'deploy']
[u'israel', u'fool', u'iran', u'assur']
[u'israel', u'fool', u'iranian', u'nuclear', u'assur']
[u'kidnap', u'journalist', u'appear', u'videotap']
[u'kidnap', u'journalist', u'releas', u'gaza']
[u'knight', u'jet', u'play', u'scoreless', u'draw']
[u'kokoda', u'villag', u'break', u'trail', u'race', u'record']
[u'lethal', u'leisel', u'smash', u'short', u'cours', u'record']
[u'lightn', u'strike', u'delay', u'shuttl', u'launch']
[u'lightn', u'strike', u'delay', u'space', u'shuttl', u'launch']
[u'limit', u'local', u'drama', u'product', u'worri', u'industri']
[u'liverpool', u'stage', u'comeback', u'hammer']
[u'lyon', u'kick', u'saint', u'challeng']
[u'magpi', u'overcom', u'cellar', u'dweller']
[u'die', u'jump', u'move']
[u'premiership', u'pace']
[u'massa', u'snatch', u'maiden', u'pole', u'turkey']
[u'melbourn', u'water', u'reject', u'water', u'wast', u'report']
[u'mickelberg', u'serv', u'writ', u'perth', u'mint', u'swindl']
[u'minchin', u'reassur', u'telstra', u'sharehold']
[u'minist', u'pleas', u'showground', u'redevelop']
[u'minist', u'reassur', u'telstra', u'sharehold']
[u'taxi', u'bind', u'perth', u'street']
[u'morient', u'help', u'valencia', u'win', u'start']
[u'march', u'elect', u'hodgman']
[u'nairn', u'say', u'govt', u'put', u'prison', u'school']
[u'newborn', u'babi']
[u'move', u'cosmet', u'surgeri', u'teen']
[u'nuclear', u'fuel', u'product', u'iran', u'strateg', u'object']
[u'ochoa', u'take', u'lpga', u'lead']
[u'opposit', u'seek', u'polic', u'check', u'volunt']
[u'opposit', u'seek', u'taxi', u'secur', u'upgrad']
[u'ous', u'hospit', u'downgrad', u'health', u'centr']
[u'pakistan', u'author', u'impos', u'curfew', u'riot']
[u'pakistan', u'pledg', u'play', u'seri']
[u'pamper', u'pooch', u'treat', u'doggi', u'radio']
[u'parti', u'decid', u'futur', u'senat']
[u'local', u'set', u'kokoda', u'track', u'record']
[u'polic', u'charg', u'drug', u'bust']
[u'polic', u'charg', u'stab', u'death']
[u'polic', u'search', u'alleg', u'assault']
[u'poor', u'turn', u'teacher', u'away', u'research']
[u'power', u'roll', u'crow', u'derbi']
[u'premier', u'urg', u'young', u'driver', u'care']
[u'green', u'launch', u'elect', u'campaign']
[u'randwick', u'face', u'grand', u'final']
[u'rebel', u'chief', u'kill', u'pakistan']
[u'cross', u'evacu', u'lankan', u'peninsula']
[u'resid', u'disappoint', u'shoalhaven', u'water', u'propos']
[u'sastr', u'lead', u'tour', u'spain']
[u'seek', u'financi', u'advic', u'share', u'minchin', u'say']
[u'teen', u'need', u'plastic', u'surgeri', u'surgeon']
[u'speed', u'hop', u'hair', u'stay', u'elit', u'umpir']
[u'spirit', u'leav', u'sydney', u'final', u'voyag']
[u'spirit', u'iii', u'final', u'sail', u'remind', u'mismanag']
[u'springborg', u'confid', u'campaign', u'halfway', u'mark']
[u'strip', u'club', u'owner', u'confid', u'pend', u'legal']
[u'sydney', u'win', u'start']
[u'govt', u'stay', u'away', u'nightclub', u'fight']
[u'watchdog', u'committe', u'toothless', u'tiger']
[u'telstra', u'float', u'forc', u'share', u'lower', u'labor', u'warn']
[u'thatcher', u'charg', u'elbow', u'smash']
[u'thousand', u'ralli', u'bagladesh', u'mine']
[u'road']
[u'train', u'centr', u'unveil', u'expans']
[u'rebel', u'kill', u'lanka', u'clash', u'militari']
[u'dead', u'polic', u'investig']
[u'journalist', u'injur', u'isra', u'strike']
[u'kill', u'injur', u'bangladesh', u'protest', u'polic']
[u'kill', u'newspap', u'offic', u'bomb', u'attack']
[u'kill', u'sydney', u'glider', u'crash']
[u'palestinian', u'kill', u'newsmen', u'injur', u'gaza']
[u'ultralight', u'plane', u'crash', u'kill', u'sydney']
[u'dump', u'boomer', u'world', u'champ']
[u'seek', u'afghan', u'pakistan', u'border', u'crackdown']
[u'vatican', u'reject', u'ethic', u'stem', u'cell', u'breakthrough']
[u'warrior', u'demolish', u'rooster', u'auckland']
[u'windi', u'cricket', u'legend', u'walcott', u'die']
[u'wood', u'surrend', u'fireston', u'lead', u'surpris']
[u'young', u'injuri', u'blow', u'dragon']
[u'job', u'spirit', u'union']
[u'elect', u'peak', u'aborigin', u'bodi']
[u'offic', u'clinch', u'emmi']
[u'learn', u'post', u'profit', u'rise']
[u'abetz', u'canvass', u'option', u'ous', u'hospit']
[u'account', u'guilti', u'contract', u'murder', u'plot']
[u'acid', u'rain', u'affect', u'china', u'report']
[u'aerial', u'bait', u'miracl', u'solut', u'wild', u'dog']
[u'agassi', u'farewel', u'parti', u'start', u'york']
[u'agforc', u'hop', u'landmark', u'wont', u'servic', u'despit']
[u'agreement', u'reach', u'jail', u'disput']
[u'black', u'reinforc']
[u'aquacultur', u'confer', u'deleg', u'descend']
[u'kill', u'indian', u'flood']
[u'kill', u'iraq', u'violenc']
[u'austereo', u'profit', u'rise']
[u'austimb', u'auction']
[u'author', u'investig', u'plane', u'crash']
[u'visit', u'norwegian', u'orchard']
[u'valu', u'benefit', u'grower']
[u'partner', u'unit', u'farmer']
[u'baggag', u'courier', u'collect', u'women', u'hair']
[u'ballarat', u'upgrad', u'olymp', u'ring', u'precinct']
[u'beatti', u'blame', u'commonwealth', u'radiologist']
[u'beatti', u'pitch', u'north', u'vote']
[u'beatti', u'say', u'govt', u'address', u'radiologist', u'shortag']
[u'blast', u'turkey', u'injur', u'briton']
[u'bomb', u'injur', u'turkey']
[u'boost', u'qualiti', u'teacher', u'urg', u'opposit']
[u'boxer', u'friend', u'appeal', u'home', u'invas']
[u'overnight', u'search']
[u'britain', u'ask', u'terror', u'plot', u'suspect', u'extradit']
[u'break', u'hill', u'get', u'free', u'famili', u'help']
[u'bronco', u'peak', u'webck']
[u'buchanan', u'admit', u'near', u'shelf', u'life']
[u'cabbi', u'protest', u'book', u'problem']
[u'pacif', u'recruit']
[u'cancer', u'research', u'hail', u'facil']
[u'cancer', u'survivor', u'climb', u'kilimanjaro']
[u'captur', u'isra', u'soldier', u'safe', u'hama']
[u'cat', u'hope', u'lonergan', u'play']
[u'resourc', u'offer', u'triako', u'share', u'deal']
[u'central', u'farmer', u'predict', u'bumper', u'harvest']
[u'cervic', u'cancer', u'vaccin', u'avail']
[u'chalmer', u'guilti', u'cocain', u'plot']
[u'chemic', u'storag', u'regul', u'prove', u'cost']
[u'child', u'death', u'prompt', u'call', u'royal', u'commiss']
[u'church', u'move', u'shunt', u'stripper']
[u'clark', u'acknowledg', u'hama', u'role', u'cameraman', u'releas']
[u'closer']
[u'closer']
[u'coalit', u'pledg', u'fund', u'brisban', u'tunnel']
[u'commiss', u'overturn', u'king', u'plantat']
[u'confer', u'examin', u'aquacultur', u'indigen']
[u'conserv', u'group', u'call', u'marin']
[u'cooma', u'storm', u'home', u'decid', u'eden']
[u'coonambl', u'mayor', u'stand', u'state', u'parliament']
[u'coonan', u'defend', u'telstra', u'share', u'decis']
[u'coron', u'investig', u'fatal', u'glider', u'crash']
[u'council', u'consid', u'bridg', u'futur']
[u'council', u'test', u'water', u'contamin']
[u'counter', u'terror', u'exercis', u'disrupt', u'belconnen']
[u'court', u'appear', u'alleg', u'road', u'rage', u'murder']
[u'court', u'reject', u'gunn', u'claim', u'activist']
[u'cowboy', u'halfway', u'goal']
[u'crash', u'biker', u'unlik', u'walk', u'doctor']
[u'cricket', u'australia', u'confirm', u'buchanan']
[u'crop', u'season', u'rain', u'malle', u'farmer']
[u'dalai', u'lama', u'plan', u'australian', u'tour']
[u'darwin', u'host', u'indigen', u'music', u'award']
[u'debnam', u'undermin', u'paedophil', u'trial']
[u'didak', u'report', u'throw']
[u'docker', u'desper', u'finish']
[u'doom', u'plane', u'shorter', u'runway']
[u'dragway', u'oppon', u'deliv', u'petit']
[u'eagl', u'favourit', u'say', u'matthew']
[u'expert', u'reject', u'teacher', u'qualiti', u'slide']
[u'confirm', u'riverfir']
[u'farmer', u'confid', u'hit', u'year', u'survey']
[u'feder', u'push', u'teacher', u'perform', u'reject']
[u'year', u'renmark', u'rememb', u'murray', u'flood']
[u'figur', u'rise', u'mortgage', u'evict', u'notic']
[u'destroy', u'home', u'promin', u'forb', u'citizen']
[u'step', u'indigen', u'studi', u'centr']
[u'flegg', u'blame', u'govt', u'problem']
[u'florida', u'alert', u'tropic', u'storm']
[u'footbal', u'store', u'babi', u'cell', u'repair', u'kit']
[u'franc', u'treat', u'makelel', u'like', u'slave', u'mourinho']
[u'frazer', u'hail', u'cancer', u'vaccin']
[u'gold', u'coast', u'welcom', u'potenti', u'armi', u'battalion']
[u'govt', u'impos', u'curfew', u'jack', u'thoma']
[u'govt', u'teacher', u'qualiti', u'studi']
[u'govt', u'urg', u'implement', u'greenhous', u'polici']
[u'grazier', u'protect', u'indigen']
[u'greenpeac', u'call', u'moratorium', u'coal', u'mine']
[u'green', u'urg', u'immedi', u'lane', u'cove', u'tunnel', u'chang']
[u'growth', u'confer', u'examin', u'seachang', u'impact']
[u'gunn', u'push', u'anti', u'activ', u'claim']
[u'gympi', u'muster', u'music', u'magic']
[u'reveal', u'battl', u'manic', u'depress']
[u'hid', u'lack', u'faith', u'liber', u'lennon']
[u'hirsh', u'plead', u'guilti', u'second', u'drink', u'drive', u'charg']
[u'histor', u'hous', u'demolish']
[u'hockeyroo', u'avoid', u'place']
[u'horsham', u'polic', u'charg', u'antisoci']
[u'horticultur', u'code', u'delay', u'anger', u'grower']
[u'howard', u'open', u'holden', u'expans']
[u'husband', u'murder', u'suspect', u'win', u'bail']
[u'illeg', u'fisherman', u'legal']
[u'indonesia', u'deni', u'soldier', u'kill']
[u'insurg', u'gang', u'kill', u'dozen', u'iraq']
[u'iran', u'defiant', u'nuclear', u'ultimatum']
[u'isra', u'strike', u'kill', u'hama', u'secur', u'forc']
[u'jack', u'thoma', u'receiv', u'curfew']
[u'japanes', u'deni', u'shrine', u'visit', u'fuel', u'nation']
[u'jone', u'lenton', u'break', u'short', u'cours']
[u'kanck', u'concern', u'mine', u'water']
[u'kean', u'confirm', u'sunderland', u'boss']
[u'kidnap', u'journalist', u'free', u'gaza']
[u'kovco', u'comrad', u'claim', u'question']
[u'labor', u'powerbrok', u'back', u'dorazio']
[u'ladi', u'campaign']
[u'landmark', u'retrench', u'percent', u'employe']
[u'landown', u'concern', u'govt', u'commit', u'pipelin']
[u'launceston', u'council', u'debat', u'aquat', u'centr']
[u'leav', u'telstra', u'boss', u'say', u'beazley']
[u'discuss', u'boundari', u'chang', u'servic', u'share']
[u'liber', u'select', u'candid', u'forrest']
[u'littl', u'chang', u'share', u'market']
[u'lonergan', u'face', u'surgeri', u'kidney']
[u'lpga', u'ochoa']
[u'fin', u'abalon', u'sale']
[u'mango', u'grower', u'comfort', u'import', u'decis']
[u'keep', u'bail', u'despit', u'arm', u'robberi', u'admiss']
[u'plead', u'guilti', u'fatal', u'crash']
[u'mcgee', u'stand', u'trial', u'conduct']
[u'mcleod', u'sidelin', u'foot', u'infect']
[u'melbourn', u'water', u'restrict', u'tighten']
[u'fin', u'duck', u'shoot', u'legal', u'season']
[u'meningococc', u'diseas', u'suspect', u'infant', u'death']
[u'mildura', u'urg', u'improv', u'condit', u'backpack']
[u'minist', u'wast', u'dump', u'claim', u'provok', u'anger']
[u'moneghetti', u'name', u'victoria', u'father', u'year']
[u'medal', u'aussi', u'rower']
[u'moruya', u'celebr', u'busi', u'communiti', u'award']
[u'motorist', u'advis', u'seek', u'cheaper', u'petrol']
[u'moyston', u'communiti', u'meet', u'recoveri', u'support']
[u'nasa', u'keep', u'atlanti', u'launch', u'track', u'despit', u'storm']
[u'nasrallah', u'admit', u'regret', u'soldier', u'kidnap']
[u'neiwand', u'plead', u'guilti', u'stalk']
[u'presid', u'vow', u'restor', u'credibl']
[u'newcrest', u'post', u'profit', u'rise']
[u'brisban', u'green', u'bridg']
[u'ambassador', u'defend', u'hickss', u'detent']
[u'ambassador', u'defend', u'hick', u'treatment']
[u'decis', u'norfolk', u'govern']
[u'govt', u'order', u'snowi', u'hydro', u'clean', u'plung', u'pool']
[u'minist', u'approv', u'xstrata']
[u'cut', u'timor', u'deploy']
[u'olymp', u'expans', u'past', u'local']
[u'padthaway', u'local', u'urg', u'nomin', u'council']
[u'paedophil', u'near', u'school']
[u'perth', u'policewoman', u'bash', u'hammer']
[u'petrol', u'squeez', u'eas']
[u'player', u'associ', u'concern', u'drug', u'test']
[u'polic', u'concern', u'plate', u'driver', u'road']
[u'polic', u'confirm', u'lake', u'leak', u'murder']
[u'polic', u'investig', u'attack', u'woman']
[u'polic', u'start', u'ecstasi', u'test']
[u'poor', u'blame', u'report', u'drop', u'teacher']
[u'plater', u'clock', u'high', u'speed', u'orang']
[u'priest', u'ask', u'communiti', u'push', u'mental', u'health']
[u'privat', u'land', u'log', u'indiscrimin', u'say']
[u'prosecutor', u'appeal', u'gang', u'rape', u'sentenc']
[u'provis', u'age', u'care', u'place', u'fast', u'track']
[u'coalit', u'promis', u'improv']
[u'coalit', u'receiv', u'feder', u'support']
[u'coalit', u'suspici', u'water', u'meet', u'time']
[u'health', u'reject', u'claim']
[u'queensland', u'rural', u'communiti', u'lose']
[u'quick', u'decis', u'urg', u'uranquinti', u'power', u'station']
[u'renmark', u'irrig', u'reject', u'perman', u'water', u'transfer']
[u'repco', u'profit', u'slide']
[u'rioter', u'clash', u'polic', u'pakistan']
[u'riverland', u'council', u'meet', u'govt', u'horticultur']
[u'roger', u'rule', u'springbok', u'test']
[u'rooster', u'leav', u'hang', u'stuart', u'head']
[u'rooster', u'sack', u'stuart']
[u'hail', u'patrol', u'boat', u'name']
[u'farmer', u'feder', u'name', u'junior']
[u'sale', u'decis', u'push', u'telstra', u'share', u'price']
[u'search', u'elder', u'end']
[u'shoot', u'loss', u'heap', u'miseri', u'juve']
[u'shop', u'centr', u'develop', u'propos']
[u'site', u'choos', u'wwii', u'museum']
[u'spirit', u'dock', u'devonport', u'time']
[u'stab', u'spark', u'legal', u'overhaul']
[u'stawel', u'famili', u'servic', u'facil']
[u'storm', u'threat', u'ground', u'space', u'shuttl']
[u'strong', u'turnout', u'wind', u'farm', u'discuss']
[u'suicid', u'blast', u'afghanistan', u'kill']
[u'sunric', u'cautious', u'come', u'season']
[u'surf', u'life', u'save', u'australia', u'seek', u'financ']
[u'sydney', u'dump', u'recycl', u'powerhous']
[u'sydney', u'escap', u'fine', u'contract', u'breach']
[u'sydney', u'woman', u'treat', u'meningococc', u'diseas']
[u'taliban', u'kill', u'afghanistan']
[u'murder', u'victim', u'drug', u'convict']
[u'wildlif', u'reserv', u'doubl']
[u'teen', u'rape', u'suspect', u'match', u'court', u'tell']
[u'telstra', u'battl', u'market', u'sceptic']
[u'telstra', u'appeal', u'copper', u'network', u'price', u'rule']
[u'telstra', u'share', u'fall', u'sale', u'decis']
[u'telstra', u'share', u'blow']
[u'thoma', u'curfew', u'need', u'protect', u'communiti', u'ruddock']
[u'thoma', u'famili', u'vow', u'fight', u'control', u'order']
[u'ticket', u'scalp', u'fight', u'leav', u'promot']
[u'toowoomba', u'push', u'second', u'rang', u'cross']
[u'turkey', u'bomb', u'injur']
[u'chief', u'beirut', u'shore', u'fragil', u'peac']
[u'union', u'urg', u'invest', u'teacher']
[u'mull', u'nuclear', u'missil']
[u'ramp', u'beef', u'export', u'japan']
[u'vietnam', u'releas', u'lead', u'campaign']
[u'voss', u'stay', u'lethal']
[u'indigen', u'communiti', u'lead', u'aquacultur']
[u'mine', u'industri', u'debat', u'licenc', u'fee', u'govt']
[u'opposit', u'launch', u'hous', u'inquiri']
[u'weyman', u'avoid', u'suspens']
[u'wine', u'studi', u'encourag', u'region', u'leadership']
[u'wollongong', u'launch', u'cultur', u'initi']
[u'women', u'urg', u'continu', u'smear', u'despit', u'vaccin']
[u'woolmer', u'deni', u'ball', u'tamper', u'claim']
[u'xstrata', u'investig', u'environment', u'damag']
[u'yankuntjatjara', u'antakirinja', u'peopl', u'nativ', u'titl']
[u'youth', u'abus', u'cabbi', u'teen', u'death', u'court', u'tell']
[u'abetz', u'offer', u'support', u'hid', u'aim', u'feder']
[u'govt', u'seek', u'reconsider', u'extra']
[u'advertis', u'fund', u'help', u'stonefruit', u'grower']
[u'agassi', u'stay', u'aliv', u'open']
[u'alburi', u'airport', u'secur', u'upgrad']
[u'alburi', u'medic', u'centr']
[u'alderman', u'clark', u'want', u'free', u'parent', u'entri', u'alic']
[u'alic', u'council', u'speak', u'plan']
[u'annan', u'spell', u'ceas', u'guidelin']
[u'annan', u'tell', u'israel', u'hezbollah', u'disput', u'fast']
[u'ash', u'warn', u'swan', u'song']
[u'industri', u'work', u'safeti', u'standard']
[u'australia', u'lose', u'thousand', u'agricultur']
[u'australian', u'head', u'basketbal', u'world', u'bodi']
[u'author', u'investig', u'power', u'station', u'blackout']
[u'play', u'cole', u'inquiri', u'grower']
[u'world', u'heritag', u'landscap']
[u'barca', u'win', u'start']
[u'bartlett', u'unveil', u'school', u'curriculum']
[u'bashir', u'link', u'bali', u'bomb']
[u'beatti', u'deni', u'health', u'crisi']
[u'beatti', u'promis', u'protect', u'caravan', u'park']
[u'beazley', u'campaign', u'mortgag', u'belt', u'seat']
[u'belconnen', u'counter', u'terror', u'exercis']
[u'blast', u'iraqi', u'pipelin', u'site', u'kill']
[u'bowen', u'basin', u'infrastructur', u'summit', u'need']
[u'plead', u'guilti', u'assault', u'year']
[u'test', u'central', u'attack']
[u'bronco', u'home', u'final', u'ahead', u'warrior', u'clash']
[u'bulldog', u'suffer', u'injuri', u'blow']
[u'bunburi', u'appoint', u'replac', u'magistr']
[u'bundaberg', u'woman', u'attack', u'polic', u'give', u'probat']
[u'bush', u'battl', u'critic', u'hurrican', u'anniversari']
[u'busi', u'expect', u'record']
[u'campbel', u'parrot', u'fund', u'anger', u'brack']
[u'canberra', u'practic', u'counter', u'terror', u'evacu']
[u'canberra', u'public', u'servic', u'worker', u'live', u'longer']
[u'cathol', u'church', u'hop', u'messag', u'stick']
[u'central', u'highland', u'power', u'line', u'build']
[u'chamber', u'commerc', u'applaud', u'hotel', u'plan']
[u'channel', u'seven', u'report', u'profit', u'increas']
[u'charg', u'drop', u'ramsey', u'accus']
[u'chaser', u'star', u'plead', u'guilti', u'bulldog', u'prank']
[u'child', u'death', u'review', u'need', u'resourc', u'mcsweeni']
[u'child', u'killer', u'parol', u'rule', u'toughen']
[u'chipp', u'death', u'mark']
[u'chipp', u'honour', u'state', u'funer']
[u'classmat', u'appeal', u'famili', u'deport']
[u'closer']
[u'closer']
[u'closer']
[u'coalit', u'look', u'reopen', u'rural', u'matern', u'ward']
[u'coliban', u'pipelin', u'late', u'say', u'opposit']
[u'committe', u'equip', u'investig', u'child', u'death']
[u'communiti', u'call', u'burn', u'grampian']
[u'concern', u'rais', u'health', u'thoma']
[u'costello', u'question', u'baillieus', u'leadership']
[u'council', u'concern', u'hous', u'shortag']
[u'cruis', u'sign', u'film', u'financ', u'deal']
[u'cyclon', u'payout', u'reduc', u'promina', u'profit']
[u'darwin', u'rspca', u'close', u'parvovirus', u'outbreak']
[u'debnam', u'call', u'parol', u'chang']
[u'democrat', u'founder', u'die', u'age']
[u'democrat', u'founder', u'chipp', u'die', u'age']
[u'democrat', u'founder', u'receiv', u'state', u'funer']
[u'test', u'clear', u'karr']
[u'congo', u'rebel', u'leader', u'face', u'child', u'soldier', u'charg']
[u'drought', u'blame', u'cattl', u'indic', u'drop']
[u'einfeld', u'plead', u'guilti', u'park', u'offenc']
[u'english', u'recruit', u'secur', u'rise', u'star']
[u'open', u'lake', u'indoon', u'fish', u'kill']
[u'eriksson', u'expens', u'mistak', u'say']
[u'ernesto', u'soak', u'cuba', u'florida', u'target']
[u'farmer', u'vote', u'dairi', u'australia', u'levi']
[u'film', u'shoot', u'disrupt', u'traffic']
[u'florida', u'prepar', u'ernesto', u'arriv']
[u'forc', u'mitchel', u'chanc']
[u'jonbenet', u'murder', u'suspect', u'face', u'child', u'porn']
[u'judg', u'doubt', u'effect', u'nativ', u'titl']
[u'foster', u'toast', u'billion', u'dollar', u'profit']
[u'futur', u'fund', u'share', u'wont', u'influenc', u'telstra', u'costello']
[u'gain', u'telstra', u'major', u'bank', u'buoy', u'market']
[u'geelong', u'lonergan', u'stabl', u'condit']
[u'girl', u'accus', u'hinder', u'polic', u'search']
[u'gold', u'coast', u'prepar', u'climat', u'chang', u'say', u'mayor']
[u'govt', u'admit', u'liabil', u'westralia']
[u'govt', u'admit', u'westralia', u'liabil']
[u'govt', u'censor', u'scientist', u'caus', u'brain', u'drain']
[u'govt', u'seek', u'advic', u'alleg', u'interfer']
[u'govt', u'retain', u'telstra', u'control', u'tanner']
[u'govt', u'control', u'telstra', u'futur', u'fund', u'say']
[u'help', u'wollongong', u'medic', u'student']
[u'grazier', u'agre', u'rural', u'confid']
[u'green', u'announc', u'hervey', u'elect', u'prefer']
[u'green', u'wage', u'case', u'intervent', u'scrutini']
[u'gregan', u'support', u'stuart', u'code', u'switch']
[u'greyhound', u'trainer', u'sue', u'tote', u'tasmania', u'dog']
[u'gunn', u'boss', u'deni', u'target', u'legal', u'demonstr']
[u'harley', u'davidson', u'take', u'automot']
[u'hawk', u'predict', u'near', u'democrat']
[u'health', u'minist', u'accus', u'play', u'polit']
[u'howard', u'restrain', u'downer', u'uranium', u'talk']
[u'turn', u'franc', u'say', u'makelel']
[u'cancel', u'meet', u'pakistan']
[u'injuri', u'crow', u'face', u'final', u'challeng']
[u'innisfail', u'post', u'larri', u'spirit', u'recognis']
[u'investig', u'announc', u'abandon', u'man', u'death']
[u'investig', u'confirm', u'caus', u'kentucki', u'crash']
[u'isra', u'troop', u'kill', u'gunmen', u'west', u'bank']
[u'israel', u'conduct', u'inquiri', u'lebanon']
[u'japan', u'arson', u'attack', u'prompt', u'free', u'speech', u'fear']
[u'johnson', u'challeng', u'strike', u'charg']
[u'johnson', u'fail', u'reprimand', u'overturn']
[u'kalgoorli', u'boulder', u'council', u'expand', u'prison']
[u'kanu', u'doubl', u'put', u'portsmouth', u'second']
[u'king', u'explain', u'tree', u'farm', u'abetz']
[u'kofi', u'annan', u'fli', u'devast', u'south', u'lebanon']
[u'kurdish', u'rebel', u'claim', u'resort', u'blast']
[u'labor', u'pledg', u'build', u'better', u'health', u'tie']
[u'labor', u'unveil', u'tourism', u'packag']
[u'lasset', u'hotel', u'casino', u'drop', u'licenc', u'extens']
[u'ditch', u'botan', u'garden', u'makeov']
[u'lib', u'deni', u'jump', u'tunnel', u'fund']
[u'lithgow', u'cenotaph', u'facelift']
[u'mackay', u'nurseri', u'grow', u'diesel', u'tree']
[u'malaysia', u'withdraw', u'troop', u'timor']
[u'admit', u'violent', u'rob', u'coupl']
[u'mandurah', u'give', u'extra', u'capit', u'work']
[u'fin', u'illeg', u'sell', u'abalon']
[u'fin', u'kill', u'pastoralist']
[u'win', u'right', u'appeal', u'unlaw']
[u'margaret', u'river', u'polic', u'arrest', u'boy', u'long']
[u'mari', u'river', u'ralli', u'shift', u'restrict']
[u'maximum', u'penalti', u'inadequ', u'armi', u'train', u'death']
[u'mayor', u'brack', u'interven', u'echuca', u'moama']
[u'mcgauran', u'lean', u'voluntari', u'horticultur', u'code']
[u'merg', u'domest', u'violenc', u'group', u'unrealist']
[u'mexican', u'court', u'reject', u'elect', u'fraud', u'claim']
[u'mildura', u'charg', u'firearm', u'offenc']
[u'mine', u'wine', u'biggest', u'export', u'rann']
[u'minist', u'hail', u'chines', u'man', u'convict', u'fish']
[u'mock', u'fuel', u'spill', u'test', u'emerg', u'servic']
[u'control', u'order', u'possibl', u'ruddock']
[u'telstra', u'redund', u'western']
[u'troop', u'farewel', u'head']
[u'mount', u'arm', u'enterpris', u'exclus']
[u'murray', u'sympathis', u'dump', u'stuart']
[u'neiwand', u'jail', u'month']
[u'coach', u'need', u'intern', u'experi', u'warn']
[u'cruis', u'termin', u'host', u'ship']
[u'newman', u'doubt', u'gold', u'coast', u'exempt', u'water']
[u'program', u'encourag', u'indigen', u'peopl']
[u'project', u'murray', u'river', u'salin']
[u'need', u'neutral', u'umpir', u'pont']
[u'govt', u'extend', u'farmer', u'transport', u'subsidi']
[u'opposit', u'question', u'waterfront', u'develop']
[u'boom', u'aussi', u'success', u'stori']
[u'parent', u'face', u'son', u'alleg', u'murder']
[u'bird', u'tourist', u'delight']
[u'olymp', u'cyclist', u'neiwand', u'jail', u'month']
[u'oneil', u'step', u'post']
[u'opposit', u'call', u'inquiri', u'factori', u'outlet']
[u'opposit', u'concern', u'resign']
[u'organis', u'begin', u'recruit', u'volunt']
[u'parliamentari', u'inquiri', u'tell', u'wool', u'industri', u'vulner']
[u'parrot', u'fund', u'like', u'pour', u'money', u'drain']
[u'passeng', u'vent', u'anger', u'cruis', u'termin', u'delay']
[u'physic', u'prove', u'horror', u'movi', u'wrong']
[u'polic', u'investig', u'discoveri', u'elder', u'man', u'bodi']
[u'polic', u'offic', u'charg', u'goulburn', u'alterc']
[u'polic', u'seek', u'wit', u'fatal', u'cyclist']
[u'polic', u'uncov', u'drug', u'crop', u'weapon', u'raid']
[u'politician', u'tribut', u'chipp']
[u'pomeroy', u'judiciari']
[u'program', u'launch', u'assess', u'coorong', u'ecolog']
[u'hart', u'work', u'show', u'wangaratta']
[u'prosecutor', u'seek', u'death', u'penalti', u'libya', u'retrial']
[u'protest', u'ralli', u'support', u'charg', u'rail', u'line']
[u'coalit', u'beat', u'elect', u'campaign']
[u'polic', u'investig', u'queen', u'mall', u'stab']
[u'politician', u'accus', u'bid', u'health']
[u'rail', u'project', u'worker', u'rue', u'court', u'case']
[u'rail', u'strike', u'case', u'court']
[u'rain', u'eas', u'bushfir', u'threat', u'south', u'east']
[u'rebel', u'uganda', u'ahead', u'truce']
[u'recreat', u'fish', u'group', u'worri', u'marin']
[u'revalu', u'lift', u'westfield', u'profit']
[u'rocca', u'farewel']
[u'roma', u'clean', u'tidi', u'town', u'award']
[u'rspca', u'report', u'backlog', u'cruelti', u'hear']
[u'ruddock', u'accus', u'vilifi', u'jack', u'thoma']
[u'ruddock', u'concern', u'crime', u'secur', u'industri']
[u'ruddock', u'hint', u'control', u'order']
[u'give', u'million', u'environment', u'manag']
[u'saint', u'happi', u'leav', u'launceston', u'hawk']
[u'nativ', u'titl', u'disput', u'settl']
[u'schofield', u'call', u'quit']
[u'schoolboy', u'death', u'tragedi', u'say', u'chief', u'minist']
[u'scientist', u'claim', u'govt', u'silenc', u'idea']
[u'secur', u'industri', u'best', u'stop', u'dodgi']
[u'secur', u'offic', u'jail', u'shotgun', u'hold']
[u'shoalhaven', u'council', u'urg', u'attent']
[u'soft', u'drink', u'industri', u'remov', u'product']
[u'soft', u'drink', u'label', u'includ', u'energi', u'detail']
[u'soldier', u'deni', u'shoot', u'kovco']
[u'springborg', u'unveil', u'matern', u'ward', u'plan']
[u'stormwat', u'recycl', u'program', u'replenish', u'aquif']
[u'stripe', u'rust', u'wheat', u'crop']
[u'stuart', u'continu', u'kangaroo', u'coach']
[u'student', u'elit', u'welcom', u'perth', u'school']
[u'studi', u'find', u'infant', u'hear', u'aid', u'prevent', u'learn']
[u'suicid', u'bomber', u'target', u'nato', u'convoy', u'afghanistan']
[u'sunshin', u'coast', u'alleg', u'murder', u'grant', u'bail']
[u'surf', u'life', u'save', u'victoria', u'warrnambool']
[u'survey', u'dispel', u'myth', u'farm', u'harm', u'environ']
[u'suspect', u'kurdish', u'separatist', u'arrest', u'bomb']
[u'auditor', u'general', u'criticis', u'health', u'depart']
[u'opposit', u'call', u'better', u'crime']
[u'taxi', u'task', u'forc', u'meet', u'discuss', u'accredit']
[u'offic', u'disciplin', u'worker', u'privaci', u'breach']
[u'teenag', u'girl', u'escap', u'forc']
[u'telstra', u'declin', u'role', u'bush', u'anderson']
[u'thomass', u'control', u'order', u'result', u'admiss']
[u'thousand', u'rail', u'strike']
[u'toyn', u'quit', u'save', u'health']
[u'tradit', u'owner', u'warn', u'river', u'divers']
[u'tribut', u'pour', u'chipp']
[u'turkey', u'bomb', u'suspect', u'arrest']
[u'tweed', u'seagul', u'look', u'replac', u'coach']
[u'uganda', u'truce', u'take', u'effect']
[u'union', u'warn', u'long', u'fight', u'rail', u'project', u'worker']
[u'dog', u'katrina', u'legaci']
[u'stock', u'ralli', u'price', u'drop']
[u'govt', u'investig', u'water', u'pipelin', u'plan']
[u'senior', u'ticket', u'ride']
[u'warn', u'issu', u'plant', u'threat', u'lamb']
[u'weapon', u'prank', u'land', u'chaser', u'court']
[u'wimmera', u'malle', u'appeal', u'thwait', u'drought']
[u'airstrip', u'open', u'complet', u'torr', u'strait']
[u'abbott', u'help', u'liber', u'campaign']
[u'abetz', u'support', u'hid', u'senat', u'aspir']
[u'academ', u'apologis', u'racist', u'letter']
[u'govt', u'hide', u'epicentr', u'inquiri']
[u'win', u'drug', u'battl']
[u'control', u'turn', u'away', u'doom', u'take']
[u'alcohol', u'plan', u'credit', u'downturn', u'palm', u'crime']
[u'anim', u'continu', u'feel', u'cyclon', u'impact']
[u'anim', u'welfar', u'receiv', u'dairi', u'australia']
[u'annan', u'hop', u'isra', u'withdraw', u'lebanon']
[u'annan', u'urg', u'israel', u'ceas', u'blockad']
[u'annan', u'warn', u'israel', u'breach', u'truce']
[u'anti', u'campaign', u'turn', u'advertis']
[u'anti', u'windfarm', u'campaign', u'welcom', u'parrot', u'fund']
[u'test', u'red', u'depth', u'jone']
[u'dismiss', u'oneil', u'talk']
[u'asio', u'warn', u'terror', u'threat', u'real']
[u'develop', u'plan', u'audit', u'durat']
[u'aussi', u'softbal', u'thrash', u'botswana']
[u'aust', u'govt', u'sign', u'tedi', u'job', u'agreement']
[u'australian', u'oppos', u'abolish', u'ball', u'tamper']
[u'claus', u'cost', u'grower']
[u'execut', u'know', u'iraq', u'kickback']
[u'babinda', u'sugar', u'assess', u'damag']
[u'bashir', u'unlik', u'travel', u'australia', u'downer', u'say']
[u'beatti', u'offer', u'water', u'rebat']
[u'beatti', u'play', u'opinion', u'poll', u'lead']
[u'beatti', u'say', u'patient', u'assault', u'claim', u'ridicul']
[u'beazley', u'call', u'support', u'technician', u'protest']
[u'birth', u'program', u'continu', u'care']
[u'bold', u'water', u'plan', u'adelaid', u'suburb']
[u'bomb', u'iraqi', u'armi', u'recruit', u'kill']
[u'boy', u'death', u'prompt', u'tree', u'inspect']
[u'bull', u'sale', u'record']
[u'bunburi', u'prepar', u'environment', u'confer']
[u'bureau', u'issu', u'belling', u'flood', u'warn']
[u'bush', u'say', u'repeat', u'katrina', u'mistak']
[u'busi', u'urg', u'look', u'counterfeit', u'note']
[u'cash', u'plan', u'address', u'labour', u'shortag']
[u'cattl', u'council', u'rspca', u'talk', u'welfar']
[u'channel', u'hunt']
[u'child', u'assault', u'report', u'sydney', u'shop']
[u'chines', u'tomb', u'raider', u'suspend', u'death', u'sentenc']
[u'church', u'nightclub', u'disput', u'continu']
[u'clean', u'sea', u'eye', u'onshor', u'tuna', u'breed', u'success']
[u'closer']
[u'closer']
[u'closer', u'news']
[u'hop', u'stuart', u'elect']
[u'coalit', u'pledg', u'boost', u'cairn', u'cardiac', u'servic']
[u'coalit', u'promis', u'compulsori', u'rehab', u'cours']
[u'concern', u'famili', u'push', u'hous']
[u'concili', u'talk', u'fail', u'milan', u'fiorentina']
[u'consumer', u'nation', u'religion', u'say', u'boss']
[u'consum', u'spend', u'juli']
[u'costello', u'deni', u'conflict', u'cut']
[u'costigan', u'join', u'raider']
[u'council', u'consid', u'reward', u'vandal']
[u'council', u'investig', u'safeti', u'mall', u'structur']
[u'councillor', u'staff', u'relationship', u'investig']
[u'council', u'reject', u'liabil', u'footpath', u'accid']
[u'council', u'urg', u'care', u'stormwat']
[u'council', u'warn', u'elector', u'split']
[u'coupl', u'charg', u'alleg', u'cannabi']
[u'court', u'request', u'corner', u'tap', u'thoma']
[u'crime', u'hotspot', u'remain', u'despit', u'overal', u'fall']
[u'cycl', u'coach', u'jail', u'student']
[u'dardanup', u'assess', u'expans', u'opportun']
[u'need', u'resourc', u'review', u'union']
[u'develop', u'group', u'welcom', u'skill', u'shortag', u'scheme']
[u'diva', u'sibl', u'win', u'debut']
[u'doctor', u'withdraw', u'practic', u'abort']
[u'domest', u'violenc', u'hous', u'domin', u'talk', u'women']
[u'door', u'leav', u'open', u'broom', u'golf', u'develop']
[u'dozen', u'kill', u'baghdad', u'market', u'blast']
[u'draft', u'troop', u'resolut', u'seek', u'sudan', u'approv']
[u'driest', u'winter', u'record', u'expect']
[u'drought', u'condit', u'threaten', u'young', u'blue', u'gum']
[u'drug', u'user', u'urg', u'studi']
[u'ebay', u'buyer', u'face', u'ash', u'shut']
[u'egypt', u'striker', u'mido', u'return', u'spur']
[u'ellsison', u'hear', u'crime', u'concern', u'darwin']
[u'england', u'weigh', u'harmison', u'cover']
[u'enjoy', u'wide', u'beach', u'say', u'expert']
[u'environment', u'group', u'step', u'campaign', u'protect']
[u'environ', u'court', u'decid', u'supermarket', u'develop']
[u'eppalock', u'ballarat', u'pipelin', u'plan', u'criticis']
[u'ernesto', u'swirl', u'miami', u'weaken', u'tropic', u'storm']
[u'timor', u'rebel', u'leader', u'escap', u'jail']
[u'fall', u'commod', u'price', u'affect']
[u'farmer', u'urg', u'look', u'locust']
[u'faumuina', u'sack', u'warrior']
[u'fear', u'explicit', u'websit', u'target', u'student']
[u'flegg', u'blame', u'media', u'coverag', u'poll', u'slump']
[u'florida', u'offici', u'lift', u'hurrican', u'warn']
[u'forecast', u'predict', u'summer']
[u'premier', u'deni', u'role', u'busi', u'disput']
[u'fourth', u'fever', u'case', u'record']
[u'free', u'music', u'websit', u'challeng', u'itun']
[u'fyshwick', u'auction', u'probe', u'pleas', u'opposit']
[u'gillard', u'highlight', u'doctor', u'shortag']
[u'gold', u'coast', u'prepar']
[u'govt', u'move', u'eas', u'bore', u'water', u'charg', u'fear']
[u'govt', u'offer', u'unemploy', u'reloc', u'money']
[u'govt', u'urg', u'extend', u'polici', u'age', u'abus']
[u'govt', u'urg', u'prioritis', u'pacif', u'highway', u'upgrad']
[u'grandfath', u'dismay', u'dead']
[u'grandstand', u'disput']
[u'green', u'safeti', u'audit', u'racecours']
[u'green', u'question', u'rpdc', u'independ']
[u'green', u'seek', u'cremat', u'practic', u'probe']
[u'grower', u'water', u'author', u'team', u'save', u'appl']
[u'hagan', u'hop', u'stadium', u'upgrad', u'fight']
[u'hop', u'program', u'boost', u'aborigin', u'employ']
[u'hop', u'scheme', u'attract', u'fish', u'industri']
[u'hospit', u'press', u'manag', u'chang']
[u'howard', u'announc', u'solar', u'energi', u'trial', u'adelaid']
[u'howard', u'deni', u'govt', u'warn']
[u'hussey', u'victim', u'high', u'standard']
[u'industri', u'say', u'hous', u'build', u'increas']
[u'focus', u'septemb']
[u'injur', u'hall', u'face', u'blue']
[u'inquest', u'hear', u'rescu', u'delay']
[u'investig', u'releas', u'karr', u'confess', u'tap']
[u'isol', u'grower', u'ship', u'fruit', u'europ']
[u'isra', u'troop', u'kill', u'palestinian', u'attack']
[u'israel', u'unmov', u'lift', u'lebanon', u'blockad']
[u'naiv', u'say', u'thoma']
[u'japan', u'court', u'reject', u'damag', u'chines', u'slave']
[u'jobless', u'reloc', u'offer']
[u'kanck', u'resist', u'request', u'discuss', u'suicid']
[u'kempsey', u'turn', u'communiti', u'help']
[u'kovco', u'inquiri', u'test', u'potenti', u'murder', u'weapon']
[u'lack', u'polic', u'offic', u'affect', u'servic']
[u'lewthwait', u'case', u'prompt', u'plan', u'chang', u'bail']
[u'liber', u'call', u'nanni', u'subsidi']
[u'maclean', u'account', u'clarenc', u'councillor']
[u'accus', u'help', u'kill', u'friend', u'parent']
[u'mandurah', u'honour', u'councillor']
[u'jail', u'put', u'toddler', u'dryer']
[u'jail', u'newsag', u'hold']
[u'plead', u'guilti', u'sophi', u'delezio', u'case']
[u'damag']
[u'meal', u'wheel', u'volunt', u'need', u'meet', u'demand']
[u'meningococc', u'diseas', u'rule', u'boy', u'death']
[u'mental', u'health', u'law', u'review']
[u'metro', u'investig', u'caus']
[u'west', u'water', u'restrict', u'remain', u'unchang']
[u'mine', u'oper', u'creat', u'job', u'murray', u'malle']
[u'minist', u'studi', u'plan', u'ambul', u'carri']
[u'monitor', u'blame', u'lanka', u'forc', u'massacr']
[u'motorist', u'urg', u'look', u'wombat']
[u'murder', u'charg', u'stab', u'death']
[u'murilla', u'mayor', u'push', u'powerlin', u'consult']
[u'neitz', u'certain', u'starter']
[u'neqtar', u'buy', u'irympl', u'wineri']
[u'group', u'address', u'child', u'care', u'worker', u'shortag']
[u'plan', u'protect', u'orang', u'belli', u'parrot']
[u'test', u'cardiac', u'disord', u'save', u'live']
[u'uranium', u'doesnt', u'conflict', u'labor', u'polici']
[u'ninth', u'person', u'charg', u'alleg', u'terror', u'plot']
[u'nlis', u'poll', u'hack', u'probe', u'continu']
[u'offici', u'note', u'downer', u'say']
[u'move', u'exempt', u'chang']
[u'opposit', u'say', u'hobart', u'hospit', u'need', u'staff']
[u'origin', u'energi', u'announc', u'profit']
[u'speak', u'nurs', u'dismiss', u'disput']
[u'parent', u'ralli', u'time', u'teacher', u'aid']
[u'parent', u'ralli', u'brisban', u'prep', u'staff', u'level']
[u'pump', u'scheme', u'begin']
[u'pigeon', u'ownership', u'disput', u'ruffl', u'feather']
[u'plan', u'law', u'overhaul', u'exempt', u'minor', u'work']
[u'back', u'jobless', u'reloc', u'scheme']
[u'tackl', u'state', u'parti', u'issu']
[u'polic', u'prais', u'learn', u'opportun']
[u'polic', u'receiv', u'hospit', u'assault', u'complaint']
[u'polic', u'request', u'public', u'help', u'search', u'miss']
[u'polic', u'search', u'rob']
[u'polic', u'seek', u'help', u'babi', u'death', u'probe']
[u'polic', u'swap', u'remot', u'beat', u'seri']
[u'polic', u'welcom', u'action', u'drug', u'driver']
[u'poll', u'show', u'beatti', u'head', u'elect']
[u'poll', u'show', u'labor', u'ahead']
[u'pomeroy', u'free', u'finish', u'season']
[u'primari', u'school', u'soft', u'drink', u'free']
[u'prof', u'claim', u'justic', u'flaw']
[u'lib', u'blame', u'media', u'poll', u'result']
[u'close', u'loophol', u'fin', u'water', u'breach']
[u'water', u'bungl', u'dampen', u'poll', u'result']
[u'question', u'rais', u'alic', u'town', u'camp', u'leas']
[u'rain', u'rais', u'hop', u'success', u'spring', u'season']
[u'ranger', u'advis', u'mental', u'health', u'issu']
[u'reloc', u'payout', u'offer', u'reliev', u'skill']
[u'ricciuto', u'doubt', u'final']
[u'robertson', u'say', u'flegg', u'jump', u'cardiac']
[u'roebourn', u'shire', u'face', u'fund', u'crisi']
[u'break', u'qlder', u'victoria', u'cross']
[u'rural', u'press', u'announc', u'record', u'profit']
[u'sailor', u'admit', u'hospit', u'suspect', u'toxic']
[u'sand', u'open', u'mark', u'brack']
[u'wool', u'grower', u'oppos', u'levi', u'increas']
[u'scott', u'reach', u'high']
[u'seminar', u'help', u'improv', u'small', u'busi']
[u'sentenc', u'serv', u'warn', u'drunken']
[u'societi', u'black']
[u'south', u'promot', u'taylor', u'head', u'coach']
[u'make', u'return', u'room', u'marino']
[u'springborg', u'leav', u'elect', u'campaign', u'father']
[u'state', u'liber', u'look', u'forward', u'discuss']
[u'struggl', u'state', u'liber', u'tip', u'gun']
[u'govt', u'announc', u'plan', u'attract', u'math', u'scienc']
[u'tasmanian', u'hawthorn', u'footbal', u'deal', u'close']
[u'report', u'card', u'show', u'room', u'improv']
[u'showcas', u'coloni', u'furnitur', u'collect']
[u'thoma', u'tell', u'curfew', u'frustrat']
[u'thoma', u'vent', u'frustrat', u'treatment']
[u'thompson', u'keen', u'remain', u'cat', u'coach']
[u'illawarra', u'hospit', u'receiv', u'hospitalist']
[u'thwait', u'support', u'malle', u'water', u'cart']
[u'tobacco', u'rule', u'prompt', u'class', u'action', u'reform']
[u'tobacco', u'wholesal', u'high', u'court', u'appeal']
[u'tougher', u'gold', u'coast', u'water', u'restrict', u'need']
[u'tougher', u'water', u'restrict', u'melbourn']
[u'tourism', u'industri', u'elect', u'winner']
[u'unhcr', u'prais', u'withdraw', u'asylum', u'seeker']
[u'unprovok', u'stab', u'attack', u'baffl', u'victim']
[u'uranium', u'push', u'ahead']
[u'vizard', u'authoris', u'secret', u'cash', u'stash', u'court', u'hear']
[u'walgett', u'council', u'reduc', u'park', u'number']
[u'water', u'boost', u'tank', u'sale']
[u'western', u'power', u'payout', u'legal', u'over', u'generous']
[u'westpoint', u'head', u'pay', u'live', u'expens']
[u'wildcat', u'coach', u'deni', u'ronaldson', u'rift']
[u'wingecarribe', u'complet', u'draft', u'environ', u'plan']
[u'woolgrow', u'revis', u'peta', u'case', u'claim']
[u'worsfold', u'say', u'derbi', u'lesson', u'learn']
[u'project', u'investig', u'invas', u'nativ', u'scrub']
[u'evacu', u'tower', u'block']
[u'hunt', u'timor', u'prison', u'escap']
[u'search', u'timor', u'prison', u'escap']
[u'servic', u'recommend', u'curb', u'road', u'death', u'toll']
[u'annan', u'denounc', u'israel', u'cluster', u'bomb']
[u'annan', u'urg', u'israel', u'stop', u'kill', u'palestinian']
[u'aquacultur', u'industri', u'urg', u'improv', u'market']
[u'australia', u'oldest', u'boat', u'return']
[u'australia', u'senior', u'cricket', u'shelv', u'retir']
[u'beatl', u'ahead', u'unpaid']
[u'beatti', u'highlight', u'leadership', u'experi']
[u'belling', u'flood', u'warn', u'downgrad']
[u'benitez', u'offer', u'neill', u'reject']
[u'bionic', u'trial', u'reveal']
[u'booklet', u'assist', u'domest', u'violenc', u'victim']
[u'braveri', u'medal', u'centr', u'display']
[u'broad', u'closer', u'northern', u'region', u'seat']
[u'broom', u'region', u'univers', u'offer']
[u'busi', u'criticis', u'unemploy', u'scheme']
[u'timet', u'revamp', u'cut', u'patronag', u'servic']
[u'call', u'govt', u'control', u'sale', u'junk', u'food']
[u'carpent', u'voic', u'anger', u'attack', u'polici']
[u'theft', u'arrest', u'close', u'polic']
[u'chanc', u'nino', u'rais', u'forest', u'concern']
[u'china', u'jail', u'report', u'spi']
[u'closer']
[u'closer']
[u'closer', u'news']
[u'coalit', u'promis', u'crack', u'crime']
[u'colli', u'charg', u'dump', u'puppi']
[u'colorado', u'recommend', u'revis', u'takeov']
[u'commission', u'bulli', u'probe', u'satisfi', u'offic']
[u'commiss', u'pursu', u'misconduct', u'case', u'doctor']
[u'connolli', u'commend', u'pavlich', u'leadership']
[u'log', u'moratorium']
[u'controversi', u'surround', u'royal', u'film']
[u'convent', u'centr', u'small', u'tourism']
[u'corbel', u'stand', u'knife', u'law']
[u'council', u'confid', u'futur', u'solar', u'fund']
[u'council', u'move', u'gutter', u'bridg']
[u'council', u'promis', u'court', u'action', u'tree']
[u'council', u'fund', u'youth', u'program']
[u'crew', u'monitor', u'bushfir']
[u'vote', u'favour', u'marijuana', u'medicin']
[u'darwin', u'farewel', u'belov', u'local', u'charact']
[u'darwin', u'resid', u'vent', u'crime', u'wave', u'anger']
[u'denial', u'futur', u'fund', u'control', u'telstra']
[u'downer', u'deni', u'search', u'concern', u'cover']
[u'drop', u'forest', u'product', u'sale', u'blame', u'gunn']
[u'east', u'timor', u'seek', u'help', u'secur', u'jail']
[u'ebay', u'dark', u'cancel', u'ash', u'ticket']
[u'econom', u'growth', u'china', u'higher', u'think']
[u'ellison', u'defend', u'suicid', u'inform', u'control']
[u'employ', u'group', u'welcom', u'reloc', u'program']
[u'escap', u'timor', u'rebel', u'chief', u'say', u'plan']
[u'timor', u'escap', u'walk', u'jail', u'brigadi', u'say']
[u'expert', u'urg', u'stronger', u'water', u'rule']
[u'fairfax', u'hop', u'internet', u'lift', u'sink', u'profit']
[u'ferguson', u'welcom', u'uranium', u'thumb']
[u'fight', u'fund', u'lobbi', u'rail', u'link']
[u'figur', u'highest', u'rate', u'fatal']
[u'caus', u'damag', u'orphanag']
[u'destroy', u'bencubbin', u'supermarket']
[u'fisheri', u'scientist', u'fail', u'hook', u'fund']
[u'flag', u'return', u'renew', u'call', u'darwin']
[u'flegg', u'mislead', u'doctor', u'figur', u'robertson']
[u'flegg', u'say', u'doctor', u'pois']
[u'forget', u'children', u'incid', u'spark', u'safeti']
[u'kakadu', u'ranger', u'jail', u'assault']
[u'weapon', u'inspector', u'disappoint']
[u'fuel', u'price', u'increas', u'flight', u'centr', u'profit']
[u'futur', u'fund', u'wont', u'seek', u'control', u'telstra']
[u'gasnet', u'recommend', u'latest', u'takeov']
[u'go', u'take', u'tour', u'britain', u'yellow', u'jersey']
[u'goulburn', u'murray', u'water', u'divers', u'fair']
[u'govt', u'attack', u'labor', u'telstra', u'share', u'plan']
[u'govt', u'buy', u'stem', u'cell', u'report']
[u'govt', u'defend', u'surgeri', u'wait', u'list', u'procedur']
[u'green', u'boucher', u'despit', u'nuisanc', u'charg']
[u'hair', u'troubl', u'inzamam']
[u'hardi', u'asbesto', u'fund', u'deadlin', u'extend']
[u'hepburn', u'council', u'tourism', u'group', u'head']
[u'hewitt', u'advanc', u'scud', u'misfir']
[u'hickey', u'appeal', u'evid', u'convict']
[u'histor', u'birdsvill', u'sale']
[u'hop', u'emerg', u'studi', u'improv', u'disast']
[u'hostel', u'closur', u'displac', u'high', u'school', u'student']
[u'india', u'sign', u'nuclear', u'treati', u'vital', u'uranium']
[u'indigen', u'task', u'forc', u'begin', u'work']
[u'indigen', u'violenc', u'task', u'forc', u'begin', u'work']
[u'injur', u'star', u'thank', u'wisher']
[u'inverel', u'communiti', u'centr', u'fund']
[u'iran', u'defiant', u'nuclear', u'deadlin', u'loom']
[u'iraqi', u'forc', u'control', u'secur', u'month']
[u'feder', u'issu', u'poll', u'beazley', u'say']
[u'israel', u'criticis', u'cluster', u'bomb']
[u'israel', u'criticis', u'cluster', u'bomb']
[u'isra', u'kill', u'palestinian', u'milit', u'leader', u'west']
[u'jam', u'hardi', u'confid', u'fund', u'deadlin', u'extens']
[u'leav', u'thursday', u'island']
[u'kempsey', u'buck', u'region', u'crime', u'trend']
[u'kennelli', u'sign', u'swan']
[u'labor', u'pull', u'critic', u'elect', u'springborg']
[u'latest', u'talk', u'begin', u'beij']
[u'lawyer', u'defend', u'link', u'thoma', u'lade']
[u'lebanes', u'risk', u'unexplod', u'bomb']
[u'lewthwait', u'unlik', u'kill', u'child']
[u'magistr', u'brand', u'thoma', u'control', u'order', u'farcic']
[u'magistr', u'critic', u'thoma', u'control', u'order']
[u'magistr', u'criticis', u'thoma', u'restrict']
[u'accus', u'brisban', u'stab', u'appear', u'court']
[u'charg', u'sexual', u'assault', u'refus', u'bail']
[u'delusion', u'attack', u'teenag', u'girl']
[u'extradit', u'queensland', u'murder', u'warrant']
[u'mcewen', u'vuelta', u'finish', u'earli']
[u'megan', u'encourag', u'vigilant']
[u'continu', u'domin', u'execut', u'post']
[u'middl', u'east', u'conflict', u'influenc', u'blake', u'prize']
[u'middlesbrough', u'sign', u'huth', u'woodgat']
[u'open', u'mark', u'brack']
[u'rescu', u'skill', u'test']
[u'minist', u'say', u'jailbreak', u'destabilis', u'timor']
[u'mix', u'reaction', u'move', u'grant', u'propos']
[u'nation', u'galleri', u'showcas', u'indian']
[u'bladder', u'surgeri', u'avail', u'women']
[u'home', u'sale', u'continu', u'fall']
[u'nyngan', u'health', u'project', u'lodg', u'council']
[u'wiluna', u'school', u'plan', u'unveil']
[u'explan', u'lockhart', u'plane', u'crash', u'latest']
[u'need', u'chang', u'stem', u'cell', u'law']
[u'nswru', u'threaten', u'derail', u'nation', u'competit']
[u'debat', u'area', u'legisl']
[u'aim', u'attract', u'australian', u'public']
[u'oakey', u'courthous', u'close', u'amid', u'asbesto', u'concern']
[u'peak', u'cut', u'anger', u'council']
[u'dead', u'southern', u'thailand', u'bank', u'bomb']
[u'burden', u'favourit', u'slow', u'swift']
[u'opposit', u'say', u'govt', u'backflip', u'ecstasi']
[u'opposit', u'say', u'fail', u'servic', u'benchmark']
[u'ownership', u'solut', u'indigen', u'hous']
[u'pacif', u'highway', u'upgrad', u'blow', u'opposit']
[u'parent', u'warn', u'child', u'surf']
[u'permit', u'need', u'shoalhaven', u'burn', u'off']
[u'plan', u'surfer', u'polic', u'beat', u'spenc']
[u'releas', u'stem', u'cell', u'report']
[u'polic', u'charg', u'brisban', u'attack']
[u'polic', u'charg', u'woman', u'murder']
[u'polic', u'investig', u'boy', u'alleg', u'sexual', u'assault']
[u'polic', u'investig', u'mass', u'seal', u'shoot']
[u'polic', u'investig', u'seal', u'massacr']
[u'polic', u'minist', u'appeal', u'instat']
[u'polic', u'widen', u'search', u'timor', u'escap']
[u'polic', u'investig', u'hospit', u'complaint']
[u'post', u'film', u'star', u'glenn', u'ford', u'dead']
[u'pratt', u'second', u'round']
[u'premier', u'burrup', u'concern', u'unwarr', u'campbel']
[u'privat', u'sector', u'improv', u'indigen', u'literaci']
[u'privat', u'sector', u'lend', u'rise']
[u'public', u'help', u'seek', u'captur', u'forest', u'thiev']
[u'athlet', u'teach', u'student', u'healthi', u'live']
[u'fever', u'case', u'prompt', u'push', u'reloc', u'abattoir']
[u'parent', u'prep', u'school', u'protest']
[u'premier', u'launch', u'elect', u'campaign']
[u'quak', u'jolt', u'tokyo', u'injuri', u'report']
[u'rail', u'price', u'disput', u'grain', u'truck']
[u'rain', u'rescu', u'england', u'cardiff']
[u'record', u'break', u'prematur', u'babi', u'head', u'home']
[u'record', u'spell', u'worri', u'farmer']
[u'cross', u'worker', u'kidnap', u'kill', u'darfur']
[u'reinado', u'timor', u'escap']
[u'report', u'find', u'argument', u'therapeut']
[u'report', u'highlight', u'zimbabwean', u'homeless', u'crise']
[u'resourc', u'bank', u'gain', u'boost', u'sharemarket']
[u'resourc', u'boom', u'bring', u'energi', u'research', u'centr']
[u'retail', u'question', u'winemak', u'environment']
[u'robert', u'elect', u'despit', u'ballot', u'withdraw']
[u'roebourn', u'shire', u'question', u'unemploy', u'scheme']
[u'rspca', u'chief', u'want', u'book', u'throw', u'seal', u'shooter']
[u'rugbi', u'union', u'oneil', u'jone']
[u'bushfir', u'season', u'start', u'earli']
[u'sailor', u'follow', u'toxic', u'fume', u'exposur']
[u'saleyard', u'close', u'replac', u'readi']
[u'school', u'caravan', u'destroy']
[u'search', u'widen', u'timor', u'escap']
[u'seeney', u'step', u'lead', u'nat', u'campaign']
[u'sheedi', u'talk', u'sign', u'akermani']
[u'shoalhaven', u'free', u'nuclear', u'power', u'short', u'term']
[u'shoalhaven', u'river', u'pump', u'kill', u'mangrov', u'say']
[u'slip', u'taxi', u'standard', u'endang', u'passeng']
[u'socceroo', u'strong', u'squad', u'play', u'kuwait']
[u'solicitor', u'convict', u'fals', u'evid']
[u'charg', u'murder', u'elder', u'parent']
[u'sonni', u'plead', u'guilti', u'speed', u'charg']
[u'southern', u'crime', u'rat', u'steadi']
[u'spanish', u'tomato', u'festiv', u'leav', u'town']
[u'springborg', u'famili', u'death', u'halt', u'campaign']
[u'springborg', u'home', u'famili', u'member', u'death']
[u'studi', u'examin', u'children', u'blood', u'lead', u'level']
[u'sunbeam', u'food', u'black']
[u'sunshin', u'express', u'pull', u'schedul', u'flight']
[u'taylor', u'upbeat', u'rabbitoh', u'coach', u'role']
[u'teacher', u'strike', u'defend', u'public', u'educ', u'union']
[u'teacher', u'strike', u'ginninderra', u'school']
[u'teacher', u'union', u'welcom', u'behaviour', u'manag', u'plan']
[u'telstra', u'invest', u'chines', u'real', u'estat', u'websit']
[u'tender', u'call', u'coastal', u'patrol', u'helicopt']
[u'kill', u'pakistan', u'road', u'accid']
[u'thai', u'secur', u'offici', u'blame', u'malay', u'separatist']
[u'thoma', u'back', u'name', u'drug', u'user']
[u'thoma', u'control', u'order', u'condit', u'silli', u'magistr']
[u'thousand', u'flock', u'birdsvill', u'race']
[u'arrest', u'sydney', u'ecstasi', u'haul']
[u'thunderbird', u'look', u'upset', u'swift']
[u'tibetan', u'nomad', u'embrac', u'sheep', u'bank']
[u'tractor', u'trek', u'rais', u'fli', u'doctor', u'fund']
[u'truck', u'driver', u'face', u'tougher', u'rule', u'prevent']
[u'trucki', u'warn', u'random', u'drug', u'test']
[u'face', u'court', u'toddler', u'death']
[u'threaten', u'pull', u'lankan']
[u'uranium', u'explor', u'continu', u'north', u'west', u'search']
[u'urban', u'sprawl', u'wont', u'help', u'hous', u'price']
[u'carri', u'subcrit', u'nuclear', u'test']
[u'victorian', u'take', u'suprem', u'merino', u'titl']
[u'volunt', u'carer', u'welcom', u'law']
[u'extend', u'polic', u'power', u'terror']
[u'canvass', u'canola', u'fuel']
[u'lead', u'nation', u'construct', u'activ']
[u'wangaratta', u'polic', u'station', u'secur', u'review']
[u'wartim', u'flag', u'return', u'darwin']
[u'westpoint', u'chief', u'live', u'cost', u'rule', u'disgust']
[u'wheat', u'grower', u'win', u'young', u'farmer', u'titl']
[u'search', u'intellectu', u'dishonest', u'inspector']
[u'woman', u'die', u'accid']
[u'world', u'power', u'discuss', u'iran', u'sanction']
[u'wright', u'public', u'inquiri', u'worthwhil']
[u'york', u'leav', u'leagu', u'bind', u'sunderland']
[u'york', u'futur']
[u'zimbabwean', u'homeless', u'demolit']
[u'pledg', u'lebanon']
[u'kill', u'iran', u'airlin']
[u'commiss', u'chairman', u'hospit']
[u'rule', u'chang']
[u'agassi', u'win', u'hour', u'york']
[u'continu', u'fight', u'liquor', u'sale']
[u'honour', u'basketbal', u'star', u'jackson']
[u'ancient', u'grace', u'nation', u'galleri']
[u'armless', u'man', u'danger', u'drive', u'charg', u'drop']
[u'armi', u'offic', u'die', u'civilian', u'cargo', u'ship']
[u'ash', u'defeat', u'aussi', u'stronger', u'mcgrath']
[u'australia', u'endur', u'driest', u'august']
[u'australia', u'pledg', u'extra', u'sudan']
[u'ballarat', u'sailor', u'return', u'pleas', u'famili']
[u'ballarat', u'woman', u'charg', u'assault', u'give', u'bail']
[u'banana', u'price', u'tip', u'stay', u'high']
[u'bank', u'sector', u'drag', u'market']
[u'becton', u'approv', u'ignor', u'communiti', u'byron', u'mayor']
[u'brisban', u'broker', u'ban', u'illicit', u'trade']
[u'brisban', u'guilti', u'lure', u'schoolgirl']
[u'break', u'earth', u'restaur', u'close', u'leas']
[u'broom', u'shortlist', u'emmi']
[u'bulldog', u'ahead', u'break']
[u'bulldog', u'earn', u'gritti']
[u'cabinet', u'decis', u'ralph', u'develop']
[u'cattl', u'industri', u'prefer', u'duf', u'rustl']
[u'cattl', u'lamb', u'slaughter']
[u'classroom', u'courtroom', u'birdsvill', u'race']
[u'closer']
[u'club', u'confirm', u'cole', u'transfer', u'chelsea']
[u'coliban', u'water', u'warn', u'possibl', u'emerg', u'measur']
[u'court', u'hear', u'vizard', u'exist', u'artwork']
[u'court', u'question', u'extra', u'lodhi', u'charg']
[u'cray', u'fisher', u'hour', u'surveil', u'port']
[u'call', u'countri', u'origin', u'label']
[u'defiant', u'iran', u'prompt', u'sanction']
[u'della', u'bosca', u'higher', u'green', u'slip', u'premium']
[u'desert', u'festiv', u'showcas', u'local', u'talent']
[u'doubl', u'murder', u'grant', u'parol', u'appeal']
[u'drug', u'gang', u'get', u'harder', u'track', u'say']
[u'winter', u'spark', u'fear']
[u'dubbo', u'merino', u'sale', u'price']
[u'eel', u'suffer', u'consecut', u'defeat']
[u'face', u'terror', u'charg']
[u'stand', u'trial', u'terror', u'charg']
[u'stand', u'trial', u'terror', u'charg']
[u'embassi', u'cautious', u'drug', u'test', u'law']
[u'emot', u'farewel', u'darwin']
[u'ernesto', u'john', u'threaten', u'communiti']
[u'readi', u'world', u'rescu', u'oneil']
[u'fifth', u'fever', u'case', u'record']
[u'destroy', u'karratha', u'home']
[u'foreign', u'debt', u'approach', u'trade', u'deficit', u'improv']
[u'ansett', u'employe']
[u'energex', u'chair', u'stand', u'trial', u'child']
[u'director', u'plead', u'guilti']
[u'naturopath', u'charg', u'manslaught']
[u'futur', u'kimberley', u'flight']
[u'gene', u'therapi', u'beat', u'skin', u'cancer', u'studi']
[u'gibson', u'say', u'elect', u'unsur', u'despit', u'robert']
[u'gillard', u'disput', u'stand', u'stem', u'cell', u'report']
[u'global', u'push', u'lebanon', u'reconstruct', u'dollar']
[u'govt', u'defend', u'conflict', u'stem', u'cell', u'report']
[u'govt', u'defend', u'languag', u'train', u'program']
[u'govt', u'tight', u'lip', u'school', u'closur', u'decis']
[u'graham', u'dream', u'race', u'australia']
[u'greec', u'stun', u'reach', u'world', u'champ', u'final']
[u'green', u'withhold', u'prefer', u'gold', u'coast', u'seat']
[u'guard', u'arrest', u'bali', u'bomber', u'laptop']
[u'hawk', u'rule', u'perman', u'tasmania']
[u'helicopt', u'base', u'gove', u'illeg', u'boat']
[u'hingi', u'crash', u'open']
[u'histor', u'aussi', u'flag', u'return', u'darwin']
[u'hospit', u'postpon', u'oper', u'year']
[u'howard', u'deni', u'stem', u'cell', u'report', u'buy']
[u'howard', u'comment', u'risk', u'scapego', u'muslim', u'stanhop']
[u'human', u'cannonbal', u'injur', u'miss', u'target']
[u'iemma', u'urg', u'candid', u'shake']
[u'indigen', u'firm', u'local', u'secur']
[u'inquest', u'open', u'fatal', u'steal', u'accid']
[u'takeov', u'see', u'job']
[u'iran', u'nuclear', u'right', u'presid']
[u'israel', u'drop', u'lebanon', u'deploy', u'object', u'say']
[u'faster', u'shoaib', u'warn', u'england']
[u'jackson', u'announc', u'buster']
[u'kanck', u'speech', u'appear', u'nitschk', u'websit']
[u'kerr', u'miss', u'tiger', u'clash']
[u'kyogl', u'council', u'tell', u'deliv', u'reform']
[u'labour', u'candid', u'lowan', u'focus', u'small', u'town']
[u'launceston', u'qualiti', u'best', u'year']
[u'light', u'plane', u'crash', u'survivor', u'hospitalis']
[u'local', u'govt', u'talk', u'permit', u'polici']
[u'lockhe', u'martin', u'win', u'nasa', u'contract']
[u'lonergan', u'mend']
[u'lorian', u'graham', u'coast', u'watch', u'cycl', u'champ']
[u'appear', u'court', u'stanthorp', u'murder']
[u'arrest', u'taxi', u'theft']
[u'custodi', u'wangaratta', u'polic', u'station', u'crash']
[u'jail', u'teenag']
[u'plead', u'guilti', u'sexual', u'assault']
[u'manufactur', u'growth', u'figur', u'encourag']
[u'maroochi', u'mayor', u'say', u'govt', u'mismanag', u'qlds', u'growth']
[u'martin', u'back', u'coroni', u'inquest', u'aborigin']
[u'mass', u'seal', u'shoot', u'prompt', u'penalti', u'review']
[u'meningococc', u'diseas', u'patient', u'stabl', u'condit']
[u'mildura', u'cater', u'civic', u'ball', u'disgust']
[u'delay', u'terror', u'case', u'haqu']
[u'mother', u'send', u'jail', u'shake']
[u'murray', u'river', u'winter', u'flow', u'record']
[u'muslim', u'leader', u'car', u'attack', u'melbourn']
[u'nation', u'wider', u'assist']
[u'nelson', u'secret', u'troop', u'visit']
[u'heat', u'elect']
[u'laverton', u'creat', u'job']
[u'newton', u'name', u'produc', u'ombudsman']
[u'land', u'leav', u'busi', u'break', u'hill', u'council']
[u'chief', u'minist', u'detail', u'cabinet', u'reshuffl']
[u'powerless', u'kanck', u'speech', u'public']
[u'opposit', u'cautious', u'welcom', u'hobart', u'airport']
[u'opposit', u'seek', u'test', u'exempt', u'special', u'need']
[u'orang', u'crop', u'tonn']
[u'parent', u'court', u'babi', u'death']
[u'parti', u'open', u'elect']
[u'perth', u'raid', u'result', u'dozen', u'charg']
[u'pilot', u'say', u'plane', u'crash', u'statist', u'mislead']
[u'defend', u'stem', u'cell', u'report']
[u'integr', u'remark', u'unnecessari', u'muslim', u'leader']
[u'stand', u'muslim', u'integr', u'comment']
[u'polic', u'alleg', u'coupl', u'sell', u'drug', u'children']
[u'polic', u'arrest', u'boy', u'rape']
[u'polic', u'commission', u'address', u'goulburn', u'graduat']
[u'polic', u'probe', u'tuna', u'boat', u'captain', u'death']
[u'polic', u'scour', u'timor', u'escap', u'prison']
[u'port', u'kembla', u'accid', u'inquiri', u'clear', u'polic']
[u'port', u'wakefield', u'zone', u'signific']
[u'pow', u'return', u'dunera']
[u'publican', u'bring', u'home', u'bacon', u'outback', u'opera']
[u'green', u'shun', u'seat', u'prefer']
[u'salvo', u'give', u'best', u'honour']
[u'quarantin', u'protocol', u'fruit', u'veget', u'grower']
[u'ramo', u'horta', u'criticis', u'intern', u'forc']
[u'ricciuto', u'diagnos', u'parvo']
[u'ricciuto', u'diagnos', u'slap', u'cheek']
[u'roar', u'post', u'win']
[u'robertson', u'defend', u'health', u'patient', u'death']
[u'delezio', u'name', u'father', u'year']
[u'rudan', u'name', u'captain', u'sydney', u'look', u'york']
[u'ruddock', u'call', u'uniform', u'child', u'protect', u'law']
[u'sailor', u'remain', u'hospitalis', u'inhal', u'toxic']
[u'victim', u'father', u'criticis', u'billiton', u'fine']
[u'satellit', u'navig', u'safeti', u'spotlight']
[u'scallop', u'fish', u'allow', u'shark', u'refug']
[u'score', u'bushfir', u'victim', u'join', u'civil', u'action']
[u'seal', u'shoot', u'prompt', u'firearm']
[u'seal', u'slaughter', u'prompt', u'penalti', u'review']
[u'section', u'ride', u'collaps', u'teen', u'injur']
[u'sheep', u'farmer', u'ask', u'help', u'combat', u'footrot']
[u'snowi', u'mountain', u'reflect', u'busi', u'poor']
[u'appear', u'court', u'charg', u'parent', u'murder']
[u'spring', u'bring', u'higher', u'demand', u'flower']
[u'standov', u'man', u'killer', u'grant', u'releas']
[u'steroid', u'inject', u'effect', u'laser']
[u'surgeri', u'hard', u'gasp', u'injuri']
[u'swift', u'creat', u'histori', u'grand', u'final']
[u'syria', u'increas', u'border', u'secur', u'lebanon']
[u'govt', u'buy', u'hawk', u'name', u'right']
[u'protect', u'consum', u'inquiri', u'tell']
[u'tils', u'extend', u'raider', u'contract']
[u'tini', u'tasmanian', u'homeward', u'bind']
[u'soon', u'blame', u'timor', u'escap', u'downer']
[u'troop', u'respons', u'timor', u'escap', u'howard']
[u'troop', u'blame', u'timor', u'escap']
[u'injur', u'brisban', u'workshop', u'explos']
[u'uni', u'compli', u'fund', u'threat', u'awa', u'union']
[u'govt', u'review', u'wimmera', u'counsel', u'servic']
[u'region', u'citi', u'water', u'lifelin']
[u'region', u'train', u'safest', u'aust', u'say', u'govt']
[u'wagga', u'polic', u'bust', u'drug', u'syndic']
[u'light', u'plane', u'crash', u'kill', u'injur']
[u'wallabi', u'resist', u'experi', u'springbok']
[u'premier', u'mull', u'uniform', u'child', u'protect', u'law']
[u'westpac', u'predict', u'base', u'metal', u'price', u'drop']
[u'woman', u'plead', u'guilti', u'attempt', u'kill']
[u'wool', u'market', u'climb', u'slight']
[u'zimbabw', u'move', u'phone', u'internet']
[u'convict', u'child', u'killer', u'arrest', u'break', u'parol']
[u'delay', u'somali', u'peac', u'talk', u'begin']
[u'docker', u'claim', u'spot']
[u'dragon', u'come', u'beat', u'rooster']
[u'italian', u'troop', u'arriv', u'lebanon', u'boost', u'forc']
[u'loeb', u'gronholm', u'spin']
[u'young', u'light', u'plane', u'crash', u'victim', u'releas']
[u'back', u'sack', u'rape', u'accus']
[u'coalit', u'releas', u'polic', u'polici']
[u'queanbeyan', u'land', u'releas', u'develop', u'year', u'away']
[u'raider', u'clinch', u'seventh', u'place']
[u'raider', u'hang', u'shark']
[u'record', u'crowd', u'see', u'victori', u'sydney']
[u'rooster', u'storm', u'lead', u'half', u'time']
[u'saint', u'strong', u'lion']
[u'storm', u'good', u'man']
[u'palestinian', u'dead', u'clash', u'isra']
[u'chief', u'iran', u'bolster', u'lebanon', u'truce']
[u'argentina', u'claim', u'bronz']
[u'taliban', u'kill', u'afghanistan', u'nato']
[u'qaeda', u'releas', u'videotap']
[u'atkinson', u'finish', u'fourth', u'ralli', u'japan']
[u'beslan', u'rememb', u'hostag', u'crisi']
[u'britain', u'defend', u'crash', u'plan', u'safeti', u'record']
[u'bronco', u'guarante', u'webck', u'home', u'farewel']
[u'closer', u'news']
[u'downer', u'prepar', u'timor', u'secur', u'talk']
[u'glori', u'leav', u'marin', u'pointless']
[u'govt', u'urg', u'start', u'construct', u'dragway']
[u'import', u'plan', u'anger', u'banana', u'grower']
[u'indonesia', u'appeal', u'aust', u'timor', u'cooper']
[u'iran', u'seek', u'nuclear', u'talk']
[u'iraqi', u'journalist', u'kidnap']
[u'iraq', u'seiz', u'qaeda', u'iraq', u'deputi']
[u'labor', u'pledg', u'convent', u'centr', u'upgrad']
[u'ladi', u'cannonbal', u'suffer', u'break', u'spine']
[u'lebanes', u'reject', u'call', u'meet', u'olmert']
[u'palestinian', u'confirm', u'prison', u'swap', u'talk']
[u'coalit', u'offici', u'launch', u'campaign']
[u'premier', u'seiz', u'banana', u'import']
[u'regul', u'tighten', u'tour', u'crash']
[u'swift', u'domin', u'australian', u'squad']
[u'tiger', u'belt', u'rabbit', u'season', u'high']
[u'author', u'colin', u'thiel', u'die', u'age']
[u'bishop', u'taunt', u'beazley', u'googl', u'nation']
[u'receiv', u'birth', u'neglig', u'case']
[u'closer', u'news']
[u'coron', u'deliv', u'open', u'find', u'sydney', u'stab']
[u'crocodil', u'hunter', u'irwin', u'die']
[u'crocodil', u'hunter', u'steve', u'irwin', u'die']
[u'docker', u'rest', u'laurel']
[u'howard', u'support', u'medibank', u'privat', u'float']
[u'irwin', u'littl', u'chanc', u'expert', u'say']
[u'john', u'share', u'knight', u'captainci']
[u'kovco', u'famili', u'accus', u'militari', u'cover']
[u'life', u'dedic', u'conserv']
[u'aust', u'troop', u'iraq']
[u'taxi', u'rank', u'plan', u'adelaid']
[u'evid', u'samudra', u'plan', u'bali', u'bomb']
[u'prosecut', u'seek', u'fine', u'restaur', u'worker']
[u'ramo', u'horta', u'urg', u'peacekeep', u'stay', u'longer']
[u'speed', u'camera', u'reloc', u'target', u'black', u'spot']
[u'stuart', u'elect', u'septemb']
[u'support', u'grow', u'alcohol', u'swipe', u'card']
[u'tribut', u'flow', u'colin', u'thiel']
[u'tourist', u'kill', u'australian', u'wound', u'jordan']
[u'timor', u'forc', u'downer']
[u'victori', u'fred', u'face', u'violent', u'conduct', u'charg']
[u'kill', u'iraq', u'violenc', u'rag']
[u'year', u'jail', u'bali', u'bomber']
[u'warn', u'medibank', u'sale']
[u'aussi', u'focus', u'firm', u'ash', u'pont']
[u'australia', u'shrine']
[u'barr', u'call', u'union', u'compromis', u'teacher']
[u'castro', u'say', u'worst', u'health', u'crisi']
[u'chemeq', u'sack', u'staff']
[u'closer']
[u'cresswel', u'resign', u'lion', u'post']
[u'develop', u'outlin', u'grand', u'scheme', u'ralph']
[u'docker', u'unfaz', u'face', u'crow', u'adelaid']
[u'health', u'studi', u'shock', u'vietnam', u'veteran', u'group']
[u'hilliard', u'lawyer', u'appli', u'stay', u'proceed']
[u'liber', u'senat', u'reject', u'parliamentari', u'allow']
[u'older', u'time', u'like', u'autist']
[u'order', u'restor', u'timor', u'indonesia', u'say']
[u'prosecutor', u'fail', u'extend', u'gang', u'rapist', u'sentenc']
[u'report', u'find', u'vietnam', u'vet', u'healthier', u'averag']
[u'schoolgirl', u'killer', u'suspect', u'prison', u'overdos']
[u'smith', u'award', u'dalli', u'medal']
[u'steve', u'irwin', u'bodi', u'return', u'sunshin', u'coast']
[u'patient', u'return', u'bungl', u'reveal']
[u'abbott', u'attack', u'labor', u'bundaberg', u'candid']
[u'adelaid', u'ride', u'reopen', u'follow', u'malfunct']
[u'seek', u'royal', u'commiss', u'aborigin', u'patient']
[u'aust', u'govt', u'appeal', u'clemenc']
[u'blue', u'faith', u'pagan']
[u'campbel', u'await', u'ralph', u'advic']
[u'closer']
[u'corbi', u'lawyer', u'say', u'cctv', u'footag', u'airport']
[u'timor', u'boat', u'skipper', u'charg']
[u'fijian', u'soldier', u'kill', u'iraq']
[u'sharehold', u'secur', u'jubile', u'payout']
[u'fugit', u'timores', u'rebel', u'vow', u'surrend']
[u'govt', u'deni', u'worker', u'treat', u'like', u'slave']
[u'howard', u'prepar', u'clemenc', u'appeal', u'bali', u'drug']
[u'irwin', u'famili', u'declin', u'state', u'funer', u'offer']
[u'nation', u'account', u'offer', u'mix', u'pictur']
[u'economi', u'sound', u'despit', u'growth']
[u'polic', u'uncov', u'heroin', u'haul', u'traffic', u'blitz']
[u'govt', u'pledg', u'polic', u'academi']
[u'rate', u'fear', u'remain', u'despit', u'slow', u'economi']
[u'report', u'question', u'govt', u'subsidi', u'forecast']
[u'sentenc', u'open']
[u'west', u'awar', u'rape', u'alleg']
[u'yellow', u'duck', u'bandit', u'jail']
[u'closer']
[u'court', u'add', u'year', u'rapist', u'sentenc']
[u'daddio', u'radio', u'lunn', u'die']
[u'date', u'inzamam', u'hear']
[u'defenc', u'base', u'worker', u'face', u'wage', u'cut']
[u'quit', u'blair', u'govt']
[u'employ', u'defi', u'econom', u'slowdown']
[u'escap', u'lion', u'recaptur']
[u'health', u'minist', u'ensur', u'patient', u'flight', u'continu']
[u'illeg', u'catch', u'fetch', u'million']
[u'indonesian', u'skipper', u'admit', u'illeg', u'fish']
[u'lawyer', u'vizard', u'silenc', u'unfair', u'hilliard']
[u'kill', u'wild', u'sydney', u'weather']
[u'murchison', u'secur', u'approv']
[u'nato', u'call', u'reinforc', u'afghanistan']
[u'netherland', u'royalti', u'visit', u'australia']
[u'vow', u'maintain', u'freight', u'subsidi']
[u'polic', u'seiz', u'cash', u'weapon', u'drug', u'raid']
[u'labor', u'coalit', u'releas', u'cost']
[u'radio', u'rental', u'worker', u'work', u'despit']
[u'sprinborg', u'target', u'health', u'bundaberg']
[u'stirl', u'attack', u'candid', u'decis']
[u'clear', u'export', u'crop', u'contamin']
[u'vanston', u'return', u'alleg', u'visa', u'abus']
[u'vizard', u'didnt', u'mind', u'payment', u'author']
[u'kill', u'indian', u'blast']
[u'brock', u'open']
[u'closer']
[u'demon', u'surg', u'past', u'saint']
[u'drown', u'famili', u'member', u'imprud']
[u'priest', u'jail', u'abus', u'altar', u'boy']
[u'labor', u'stand', u'independ', u'stuart']
[u'gambl', u'addict', u'jail', u'fraud']
[u'gid', u'doesnt', u'expect', u'ralph', u'backlash']
[u'govt', u'propos', u'crown', u'land', u'reform']
[u'iemma', u'flag', u'adopt', u'school', u'grade']
[u'indonesia', u'ask', u'access', u'milit', u'hambali']
[u'labor', u'landslid', u'predict', u'elect']
[u'legal', u'backflip', u'victim', u'famili']
[u'mother', u'fish', u'poison', u'groot', u'eylandt', u'famili']
[u'mullen', u'inspir', u'knight']
[u'preliminari', u'date', u'elect']
[u'shuttl', u'countdown', u'continu', u'despit', u'glitch']
[u'thiel', u'farewel', u'brisban', u'funer']
[u'unit', u'humili', u'jet']
[u'secret', u'detent', u'offici']
[u'victim', u'mother', u'tell', u'train', u'accid', u'impact']
[u'west', u'indi', u'focus', u'champion', u'trophi', u'defenc']
[u'year', u'miss', u'forest']
[u'kill', u'afghan', u'offens', u'nato']
[u'beatti', u'claim', u'victori', u'labor']
[u'bruce', u'flegg', u'concess', u'speech']
[u'bulldog', u'form', u'oust', u'raider']
[u'bulldog', u'jubil', u'raider', u'ponder']
[u'elect', u'chang', u'littl', u'western', u'seat']
[u'explos', u'kill', u'iraq']
[u'foley', u'win', u'convinc', u'maryborough']
[u'labor', u'hold', u'north', u'seat']
[u'labor', u'hold', u'toowoomba', u'north']
[u'labor', u'nation', u'townsvill', u'region', u'seat']
[u'landslid', u'victori', u'beatti', u'govt']
[u'landslid', u'victori', u'labor']
[u'mari', u'river', u'cost', u'labor', u'seat']
[u'postal', u'vote', u'decid', u'bundaberg']
[u'prefer', u'decid', u'clayfield', u'indooroopilli']
[u'raikkonen', u'pole', u'apart', u'itali', u'qualifi']
[u'redcliff', u'return', u'labor']
[u'reliev', u'messeng', u'like', u'retain', u'burnett']
[u'scott', u'claw', u'joint', u'lead', u'singapor']
[u'ship', u'sail', u'lebanon', u'blockad', u'end']
[u'sit', u'member', u'retain', u'mackay', u'seat']
[u'swan', u'eagl', u'thriller']
[u'voter', u'beatti', u'chanc']
[u'abba', u'readi', u'resum', u'peac', u'talk']
[u'afghan', u'drought', u'threaten', u'million']
[u'australia', u'vulner', u'terror', u'beazley']
[u'closer']
[u'governor', u'score', u'kill', u'afghan', u'violenc']
[u'howard', u'deni', u'influenc', u'elect']
[u'howard', u'deni', u'law', u'influenc', u'elect']
[u'iran', u'nuclear', u'talk', u'product']
[u'iran', u'leav', u'enrich', u'question', u'past']
[u'iraq', u'violenc', u'kill']
[u'israel', u'fire', u'lebanes', u'boat']
[u'isra', u'readi', u'resum', u'palestinian', u'peac', u'talk']
[u'mass', u'protest', u'continu', u'taiwan', u'presid']
[u'miyazato', u'enjoy', u'home']
[u'nato', u'call', u'troop', u'afghanistan']
[u'deni', u'fail', u'coalit', u'merger', u'spur']
[u'polic', u'probe', u'brock', u'crash']
[u'rossi', u'win', u'malaysian', u'motogp']
[u'sailor', u'blame', u'kashmir', u'boat', u'tragedi']
[u'sudan', u'free', u'report']
[u'surfer', u'hold', u'vigil', u'steve', u'irwin']
[u'sydney', u'leav', u'poor', u'decis']
[u'thousand', u'attend', u'pope', u'homeland', u'mass']
[u'tourist', u'kill', u'thai', u'resort', u'island']
[u'conspiraci', u'theori', u'thrive']
[u'aborigin', u'elder', u'honour', u'improv', u'access']
[u'atlanti', u'link', u'intern', u'space', u'station']
[u'aust', u'mark', u'sept', u'anniversari']
[u'blair', u'run', u'protest', u'snub', u'lebanon', u'visit']
[u'blast', u'rock', u'afghan', u'governor', u'funer']
[u'closer']
[u'eagl', u'wont', u'overhaul', u'tactic']
[u'timores', u'refuge', u'forc', u'return', u'home']
[u'crew', u'say', u'resid', u'lucki']
[u'kurdish', u'guerrilla', u'testifi', u'saddam', u'trial']
[u'helicopt', u'evacu', u'injur', u'bushwalk']
[u'johnson', u'name', u'australian', u'captain']
[u'joyc', u'cross', u'floor', u'unsuccess', u'accc', u'motion']
[u'knight', u'bank', u'buderus', u'good', u'record']
[u'minist', u'say', u'levi', u'boost', u'shortfal']
[u'conserv', u'move', u'say', u'katter']
[u'polic', u'consid', u'offer', u'reward', u'timor']
[u'polic', u'investig', u'boy', u'drown', u'death']
[u'rann', u'slam', u'macfarlan', u'critic', u'gore']
[u'rare', u'rolex', u'watch', u'auction']
[u'search', u'resum', u'miss', u'japanes', u'student']
[u'student', u'return', u'class']
[u'victorian', u'compani', u'export', u'pie']
[u'kill', u'stamped', u'yemen', u'elect', u'ralli']
[u'atlanti', u'astronaut', u'major', u'space', u'station']
[u'aussi', u'competit', u'target']
[u'beatti', u'consid', u'look', u'cabinet']
[u'case', u'deja', u'miss', u'british', u'tourist']
[u'closer', u'news']
[u'coonan', u'push', u'media', u'ownership', u'chang']
[u'epworth', u'healthcar', u'deni', u'hospit', u'closur', u'claim']
[u'firefight', u'blaze', u'control']
[u'employe', u'admit', u'payment', u'award']
[u'gallagh', u'predict', u'heat', u'debat', u'nurs']
[u'govt', u'defeat', u'motion', u'royal', u'commiss']
[u'govt', u'reject', u'claim', u'mishandl', u'approv']
[u'govt', u'say', u'mitsubishi', u'plan', u'close']
[u'indian', u'court', u'sentenc', u'famili', u'member', u'dead']
[u'indigen', u'speak', u'demonis']
[u'latham', u'win', u'john', u'eal', u'medal']
[u'polic', u'drug', u'haul', u'signific', u'impact']
[u'fisheri', u'dept', u'investig', u'stingray', u'kill']
[u'sentenc', u'deterr', u'illeg', u'fish']
[u'singapor', u'opposit', u'leader', u'guilti']
[u'solomon', u'expuls', u'reflect', u'govt', u'labor']
[u'state', u'funer', u'honour', u'brock']
[u'embassi', u'attack', u'syria']
[u'alonso', u'insult', u'piti', u'say', u'schus', u'manag']
[u'aust', u'scientist', u'quarantin', u'concern']
[u'baghdad', u'death', u'squad', u'kill']
[u'baxter', u'detaine', u'maintain', u'roof', u'protest']
[u'buderus', u'fail', u'judiciari', u'appeal']
[u'canberra', u'teacher', u'refus', u'offer']
[u'demot', u'pluto', u'renam']
[u'green', u'defend', u'tasport', u'decis']
[u'howard', u'flag', u'media', u'chang']
[u'indonesia', u'consid', u'deport', u'channel', u'seven', u'crew']
[u'isra', u'general', u'quit', u'lebanon', u'cloud']
[u'lower', u'petrol', u'cost', u'fuel', u'spend']
[u'inform', u'clone', u'scientist']
[u'acquit', u'gang', u'member', u'shoot', u'murder']
[u'ongo', u'check', u'firefight', u'background']
[u'prosecutor', u'saddam', u'trial', u'demand', u'judg', u'quit']
[u'saint', u'powel', u'call']
[u'shuttl', u'astronaut', u'second', u'spacewalk']
[u'solomon', u'politician', u'requir', u'entri', u'visa']
[u'lanka', u'open', u'door', u'peac', u'talk']
[u'tourist', u'second', u'rescu']
[u'visa', u'chang', u'fail', u'sway', u'solomon', u'govt']
[u'voltaren', u'link', u'heart', u'attack']
[u'winemak', u'refocus', u'loss']
[u'lender', u'repossess', u'home']
[u'agforc', u'urg', u'minist', u'address', u'veget']
[u'choos', u'bulldog']
[u'alga', u'outbreak', u'see', u'resid', u'household']
[u'alga', u'outbreak', u'see', u'resid', u'shower']
[u'anti', u'pulp', u'leaflet', u'criticis']
[u'award', u'win', u'garden', u'bloom', u'despit', u'water', u'woe']
[u'bahama', u'hold', u'inquest', u'death', u'anna']
[u'bali', u'bomb', u'recruit', u'suspect', u'kill']
[u'beatti', u'recognis', u'coast', u'vote', u'langbroek', u'say']
[u'bell', u'dragon', u'stand', u'firm', u'gasnier']
[u'bennett', u'go', u'cullen']
[u'brimbl', u'person']
[u'break', u'hill', u'move', u'feder', u'seat']
[u'brown', u'say', u'allow', u'law']
[u'buderus', u'call', u'judiciari', u'chang']
[u'build', u'skill', u'commiss', u'quick']
[u'bust', u'channel', u'seven', u'crew', u'leav', u'indonesia']
[u'cancer', u'suffer', u'relief', u'alic', u'spring']
[u'car', u'blame', u'dead', u'smog']
[u'cartwright', u'play', u'concern', u'roger']
[u'child', u'killer', u'folbigg', u'hear', u'date']
[u'christian', u'colleg', u'vote', u'join', u'anglican', u'network']
[u'closer']
[u'closer']
[u'closer']
[u'seek', u'wetland', u'fund']
[u'controversi', u'liber', u'forsyth', u'resign']
[u'coonan', u'confid', u'media', u'agreement']
[u'cost', u'cut', u'wont', u'impact', u'patient', u'care']
[u'council', u'fear', u'drought', u'drive', u'away', u'resid']
[u'councillor', u'pain', u'wait', u'knee', u'continu']
[u'court', u'hear', u'racial', u'vilif', u'research']
[u'dellacqua', u'bali', u'intern']
[u'develop', u'maintain', u'commit', u'coke', u'plant']
[u'dfat', u'investig', u'report', u'base', u'jumper', u'death']
[u'diamond', u'expans', u'boost', u'kimberley']
[u'director', u'packag', u'push', u'worri', u'cudeco', u'investor']
[u'educ', u'bodi', u'happi', u'respons', u'needl', u'stick']
[u'electrolux', u'expect', u'announc', u'cut']
[u'emerg', u'crew', u'test', u'disast', u'respons']
[u'evan', u'tate', u'share', u'price', u'despit', u'loss']
[u'farmer', u'urg', u'govt', u'boost', u'drought', u'assist']
[u'feder', u'censorship', u'threaten', u'academ', u'freedom']
[u'fish', u'famili', u'suffer', u'despit', u'counsel']
[u'secretari', u'seek', u'record', u'straight']
[u'georg', u'welcom', u'boundari', u'chang']
[u'govt', u'defend', u'water', u'charg', u'hike']
[u'govt', u'reject', u'drought', u'counsel', u'fund', u'propos']
[u'govt', u'tabl', u'media', u'ownership', u'bill', u'senat']
[u'gunman', u'injur', u'montreal', u'colleg']
[u'gunman', u'open', u'montreal', u'colleg']
[u'harvey', u'sign', u'season']
[u'hedland', u'high', u'school', u'upgrad']
[u'hilliard', u'hospit']
[u'hoggard', u'latest', u'injuri', u'scare', u'england']
[u'holland', u'match', u'stand']
[u'hop', u'alcohol', u'restrict', u'trial', u'curb', u'abus']
[u'howard', u'demand', u'return', u'solomon']
[u'howard', u'issu', u'solomon', u'warn']
[u'howard', u'decid', u'citizenship', u'test']
[u'insulin', u'discoveri', u'lead', u'diabet', u'therapi']
[u'iraqi', u'polic', u'uncov', u'bodi']
[u'iraq', u'say', u'forc', u'kill', u'senior', u'qaeda', u'figur']
[u'push', u'schumach']
[u'killer', u'award', u'compo', u'jail', u'fight']
[u'kookaburra', u'demolish', u'pakistan', u'ahead', u'final']
[u'chang', u'retrial', u'bowravill', u'case']
[u'lewthwait', u'plead', u'guilti', u'obscen', u'exposur']
[u'lobster', u'trapper', u'monitor']
[u'local', u'seek', u'action', u'sewerag', u'program']
[u'hospit', u'stand', u'polic']
[u'injur', u'round', u'sheep']
[u'kill', u'kalgoorli', u'crash']
[u'brimbl', u'case', u'apologis']
[u'media', u'law', u'introduc', u'parliament']
[u'media', u'ownership', u'law', u'introduc', u'parliament']
[u'stabl', u'condit', u'doubl', u'shoot']
[u'minist', u'defend', u'catchment', u'appoint']
[u'minist', u'meet', u'griev', u'elder', u'famili']
[u'mobil', u'poll', u'increas', u'voter', u'turnout', u'alic']
[u'mount', u'gibson', u'aztec', u'offer', u'adequ']
[u'preserv', u'coloni', u'relic']
[u'mumbai', u'bomber', u'convict', u'attack']
[u'nasa', u'begin', u'unfurl', u'solar', u'energi', u'panel']
[u'nation', u'claim', u'burdekin']
[u'townsvill', u'minist', u'scene']
[u'offici', u'investig', u'cowra', u'abattoir']
[u'opposit', u'inflam', u'refuge', u'welfar']
[u'oakeshott', u'reject', u'abbott', u'hospit']
[u'older', u'peopl', u'memori', u'loss', u'head']
[u'onlin', u'shop', u'doubl']
[u'opal', u'thrash', u'seneg', u'world', u'champ']
[u'opposit', u'vow', u'replac', u'timber', u'bridg']
[u'organis', u'cultur', u'breed', u'corrupt', u'agius']
[u'pay', u'park', u'eas', u'traffic', u'congest', u'hospit']
[u'palmerston', u'mayor', u'defend', u'financi', u'posit']
[u'perth', u'offic', u'shortag', u'drive', u'rent']
[u'reject', u'keat', u'vendetta', u'media', u'law']
[u'polic', u'arrest', u'alic', u'prison', u'escape']
[u'polic', u'investig', u'environment', u'activist', u'death']
[u'polic', u'investig', u'murder', u'wagga', u'takeaway', u'food']
[u'polic', u'scale', u'murder', u'investig']
[u'polic', u'search', u'montreal', u'shoot', u'motiv']
[u'premier', u'open', u'salt', u'extract', u'plant']
[u'raymond', u'terrac', u'stay', u'paterson']
[u'report', u'recruit', u'kill', u'philippin']
[u'resid', u'data', u'foundat', u'crime', u'propos']
[u'review', u'call', u'pesticid', u'code', u'conduct']
[u'rowl', u'catch', u'heighten', u'airlin', u'secur']
[u'rush', u'parent', u'pray', u'clemenc']
[u'school', u'feel', u'bulli', u'telstra', u'rais', u'line', u'rental']
[u'scientist', u'discov', u'distant', u'galaxi']
[u'seeney', u'contest', u'nation', u'leadership']
[u'senat', u'committe', u'mull', u'therapeut', u'clone', u'bill']
[u'senat', u'meatwork', u'comment', u'odd', u'govt']
[u'shelley', u'kovco', u'welcom', u'return', u'troop']
[u'solomon', u'diplomat', u'intensifi']
[u'solomon', u'opposit', u'plan', u'toppl']
[u'springborg', u'quit', u'elect', u'loss']
[u'springborg', u'stand', u'opposit', u'leader']
[u'springborg', u'tip', u'announc', u'leadership', u'plan']
[u'blame', u'global', u'warm']
[u'swan', u'hope', u'longmir', u'stay']
[u'telstra', u'accus', u'bulli', u'school']
[u'tendulkar', u'windi']
[u'arrest', u'alleg', u'arm', u'robberi']
[u'injur', u'spanish', u'airport', u'roof', u'collaps']
[u'titl', u'issu', u'delay', u'billion', u'dollar', u'coke', u'plant']
[u'tourism', u'industri', u'back', u'gbrmpa']
[u'tremor', u'rattl', u'part', u'northern']
[u'dead', u'hurt', u'canada', u'colleg', u'shoot']
[u'deal', u'declar', u'wool']
[u'vanston', u'accus', u'beazley', u'play', u'race', u'card']
[u'govt', u'announc', u'child', u'wit', u'support']
[u'victori', u'unsuccess', u'overturn', u'fred']
[u'vizard', u'bookkeep', u'fail', u'court']
[u'iron', u'process', u'move', u'offshor']
[u'parliament', u'vote', u'commerci', u'trial']
[u'weather', u'bureau', u'predict', u'nino', u'type', u'pattern']
[u'work', u'begin', u'highland', u'hous', u'develop']
[u'young', u'risk']
[u'zeehan', u'boost', u'popul']
[u'fisher', u'hand', u'licenc']
[u'helicopt', u'base', u'townsvill']
[u'charg', u'gold', u'coast', u'raid']
[u'abort', u'case', u'doctor', u'criticis', u'investig']
[u'accc', u'sue', u'alinta', u'pipelin', u'second']
[u'access', u'sydney', u'airport', u'guarante', u'windsor']
[u'activist', u'murder', u'post', u'mortem', u'result', u'wrap']
[u'back', u'court', u'decis', u'racial', u'vilif']
[u'airlin', u'administr', u'happi', u'govt', u'respons']
[u'alcohol', u'jail', u'arm', u'robberi']
[u'vow', u'reduc', u'nation', u'margin']
[u'call', u'restrict', u'medic', u'complaint']
[u'arcadia', u'anti', u'logger', u'step', u'campaign']
[u'argentina', u'unchang', u'davi', u'semi']
[u'atom', u'watchdog', u'protest', u'report', u'iran']
[u'augusta', u'margaret', u'river', u'shire', u'plan']
[u'australian', u'arrest', u'smoke', u'flight']
[u'system', u'flag', u'part', u'contract']
[u'barr', u'rule', u'floriad', u'entri', u'fee']
[u'bat', u'disappear', u'puzzl', u'scientist']
[u'beazley', u'look', u'integr', u'public', u'privat', u'hospit']
[u'beazley', u'health', u'plan', u'lack', u'insight']
[u'bega', u'hospit', u'upgrad']
[u'benitez', u'want', u'need']
[u'bleiberg', u'question', u'knight', u'attack', u'abil']
[u'bleiberg', u'say', u'lang', u'park', u'inspir', u'opposit']
[u'brimbl', u'case', u'person', u'deni', u'drug']
[u'brimbl', u'coron', u'question', u'credibl', u'losic']
[u'brimbl', u'coron', u'question', u'losic', u'credibl']
[u'bronco', u'expect', u'high', u'ball', u'assault']
[u'brumbi', u'forc']
[u'bulldog', u'thrust', u'favourit', u'eagl']
[u'bush', u'face', u'parti', u'resist', u'guantanamo', u'plan']
[u'calm', u'shopkeep', u'murder']
[u'cane', u'farm', u'suffer', u'skill', u'shortag', u'grower']
[u'capirossi', u'fastest', u'practic', u'phillip', u'island']
[u'case', u'postpon', u'hilliard', u'hospit', u'stay']
[u'caution', u'urg', u'fruit', u'outbreak']
[u'chamber', u'commerc', u'urg', u'pulp', u'tafe']
[u'chief', u'minist', u'back', u'polic', u'action', u'stand']
[u'children', u'admit', u'desecr', u'japanes', u'cemeteri']
[u'chirac', u'voic', u'ticket', u'cheer', u'commut']
[u'citizenship', u'plan', u'slam']
[u'classi', u'dragon', u'blitz', u'eagl']
[u'clooney', u'nobel', u'prize', u'winner', u'urg', u'action']
[u'closer']
[u'closer']
[u'closer']
[u'commission', u'report', u'bulli']
[u'compani', u'give', u'green', u'light', u'investig', u'power']
[u'conwoman', u'harri', u'plead', u'guilti']
[u'copper', u'export', u'profit', u'doubl']
[u'councillor', u'reject', u'airport', u'upgrad', u'propos']
[u'crime', u'spree', u'culmin', u'year', u'jail', u'term']
[u'darwin', u'dump', u'generat', u'nation', u'award']
[u'darwin', u'prepar', u'mozzi', u'plagu']
[u'desalin', u'plan', u'prompt', u'environment', u'concern']
[u'detaine', u'rooftop', u'protest', u'end']
[u'detaine', u'rooftop', u'protest', u'enter']
[u'docker', u'final', u'break']
[u'dozen', u'bodi', u'baghdad']
[u'mull', u'camel', u'industri', u'develop']
[u'dragon', u'defenc', u'domin', u'man']
[u'dragon', u'eagl', u'fight', u'surviv']
[u'drug', u'addict', u'jail', u'hospit', u'attack']
[u'dubbo', u'mayor', u'hold', u'challeng']
[u'dwarf', u'planet', u'lose', u'xena', u'nicknam']
[u'eagl', u'hop', u'avoid', u'lose', u'season']
[u'einstein', u'percent', u'right']
[u'emerg', u'servic', u'personnel', u'seek', u'jail', u'term']
[u'senat', u'collin', u'face', u'child', u'charg']
[u'famili', u'urg', u'investig', u'worker']
[u'farmer', u'drought', u'advic']
[u'father', u'jail', u'physic', u'abus']
[u'feder', u'elect', u'essenti', u'quick']
[u'fee', u'shortag', u'spark', u'bushland', u'fear']
[u'ferguson', u'take', u'swipe', u'candid', u'select']
[u'rabbi', u'ordain', u'germani', u'holocaust']
[u'fail', u'yemeni', u'attack', u'plot']
[u'flintoff', u'relish', u'ash', u'pressur', u'cooley']
[u'ford', u'offer', u'worker', u'redund']
[u'foreign', u'worker', u'sack', u'workplac', u'injuri']
[u'fremantl', u'hope', u'banish', u'final', u'demon']
[u'gindalbi', u'metal', u'plant', u'news', u'say']
[u'goal', u'come', u'roar']
[u'govt', u'blame', u'remain', u'repatri', u'failur']
[u'govt', u'citizenship', u'plan', u'slam']
[u'govt', u'flag', u'citizenship', u'shake']
[u'govt', u'plan', u'citizenship', u'shake']
[u'govt', u'tighten', u'sale', u'pseudoephedrin']
[u'greek', u'wonder', u'exampl', u'integr']
[u'grower', u'farmer', u'reject', u'code', u'conduct']
[u'harri', u'plead', u'guilti', u'fraud', u'relat', u'charg']
[u'health', u'reason', u'bundaberg', u'defeat', u'say']
[u'hewitt', u'unpreced', u'secur', u'argentina']
[u'high', u'court', u'stand', u'honiara', u'riot', u'inquiri']
[u'hilliard', u'remain', u'hospit', u'overnight']
[u'home', u'renov', u'activ', u'rise']
[u'hospit', u'counsel', u'reject', u'evid', u'asthma', u'death']
[u'howard', u'citizenship', u'propos', u'unfair']
[u'huge', u'demand', u'croc', u'hunter', u'memori', u'ticket']
[u'queensland', u'jone']
[u'injur', u'harmison', u'miss', u'final', u'counti', u'match']
[u'interim', u'water', u'sourc', u'wycheproof']
[u'investig', u'park', u'nurs', u'home', u'find']
[u'reject', u'reinstat', u'polic', u'squad']
[u'irwin', u'fan', u'consider', u'respect']
[u'irwin', u'memori', u'ticket', u'predict', u'sell']
[u'irwin', u'memori', u'ticket']
[u'israel', u'conclud', u'post', u'bomb', u'tragic', u'error']
[u'japan', u'get', u'glimps', u'princ']
[u'jellat', u'brigad', u'hold', u'open', u'fuel']
[u'job', u'boom', u'northern', u'tasmanian']
[u'johnston', u'council', u'appeal', u'local', u'govt']
[u'jone', u'bring', u'curtain', u'season']
[u'kennedi', u'voter', u'rescu', u'wolv']
[u'castlemain', u'shutdown', u'disappoint', u'beatti']
[u'labor', u'flag', u'feder', u'health']
[u'landmark', u'slash', u'job']
[u'lawyer', u'insist', u'injur', u'traine', u'fire']
[u'lazaridi', u'leav', u'adelaid', u'fan', u'disappoint']
[u'leagu', u'player', u'ban', u'biff']
[u'leahi', u'philippin', u'visit', u'routin']
[u'licenc', u'buyback', u'rais', u'fisheri', u'concern']
[u'locust', u'plagu', u'predict']
[u'macfarlan', u'upbeat', u'castlemain', u'worker']
[u'avoid', u'jail', u'club', u'break']
[u'die', u'roll', u'accid', u'near', u'kalgoorli']
[u'fin', u'incit', u'polic', u'bash']
[u'maningrida', u'festiv', u'celebr', u'surviv']
[u'kill', u'motorbik', u'collis']
[u'manufactur', u'aliv', u'despit', u'electrolux', u'closur']
[u'market', u'fall', u'investor', u'await', u'data']
[u'maywald', u'defend', u'water', u'restrict']
[u'mcrae', u'decid', u'stay', u'rabbitoh']
[u'melbourn', u'doctor', u'clear', u'late', u'term', u'abort']
[u'melb', u'research', u'monitor', u'chemo', u'success']
[u'memo', u'foreshadow', u'train', u'guard', u'shortfal']
[u'microsoft', u'unveil', u'challeng', u'ipod']
[u'closur', u'good', u'communiti']
[u'martin', u'stick', u'labor']
[u'montreal', u'school', u'attack', u'kill']
[u'aust', u'troop', u'bind', u'iraq']
[u'urg', u'butt', u'stadium', u'inquiri']
[u'munc', u'free', u'bail', u'hong', u'kong']
[u'murray', u'valley', u'inflow', u'remain', u'record']
[u'nelson', u'announc', u'aust', u'troop', u'bind', u'iraq']
[u'nelson', u'urg', u'nato', u'boost', u'afghan', u'deploy']
[u'ambul', u'station', u'morgan']
[u'newcastl', u'lament', u'preselect', u'loss']
[u'fund', u'encourag', u'apprenticeship']
[u'japanes', u'princ']
[u'parol', u'board', u'put', u'victim', u'right', u'mcginti']
[u'plan', u'problem', u'fair', u'dinkum', u'migrant', u'howard']
[u'guarante', u'return', u'crow', u'star']
[u'price', u'rise', u'ticket']
[u'opposit', u'critic', u'health', u'chief', u'resign']
[u'nurs', u'home', u'staff', u'traumatis', u'withdraw', u'sack']
[u'give', u'deadlin', u'stadium', u'decis']
[u'opal', u'maintain', u'unbeaten']
[u'critic', u'tourism', u'push']
[u'opposit', u'leader', u'beazley', u'deliv', u'speech']
[u'opposit', u'bridg', u'repair', u'offer', u'welcom', u'kyogl']
[u'outdoor', u'smoke', u'law', u'frustrat', u'hoteli']
[u'pair', u'surviv', u'light', u'plane', u'crash']
[u'pakistani', u'parliament', u'slam', u'pope', u'comment']
[u'parol', u'chang', u'cosmet', u'opposit']
[u'paul', u'rule', u'european', u'tour']
[u'peckett', u'hang', u'boot']
[u'pepinnini', u'see', u'strong', u'uranium', u'ventur']
[u'perth', u'need', u'sprinkler', u'ban', u'say', u'water']
[u'poland', u'boost', u'afghan', u'nato', u'troop']
[u'polic', u'condemn', u'high', u'speed', u'chase']
[u'polic', u'interview', u'stand', u'man', u'associ']
[u'polic', u'multipl', u'drug', u'charg', u'gympi', u'raid']
[u'polic', u'probe', u'alic', u'attack']
[u'polic', u'seek', u'wit', u'mooroopna', u'attack']
[u'polic', u'stay', u'nude', u'danc']
[u'polic', u'identifi', u'mysteri', u'crash', u'victim']
[u'polic', u'union', u'move', u'squad', u'reinstat']
[u'port', u'arthur', u'movi', u'film']
[u'profil', u'emerg', u'death', u'obsess', u'montreal', u'gunman']
[u'profil', u'emerg', u'montreal', u'gunman']
[u'prosecut', u'seek', u'jail', u'term', u'abort', u'doctor']
[u'protest', u'plan', u'lodg', u'suprem', u'court', u'writ']
[u'protest', u'fail', u'sway', u'beatti', u'indigen']
[u'psychiatrist', u'call', u'mental', u'health', u'ministri']
[u'rain', u'encourag', u'north', u'west', u'agribusi']
[u'reef', u'author', u'critic', u'polit', u'say', u'group']
[u'report', u'warn', u'hous', u'repossess']
[u'research', u'discoveri', u'help', u'liver']
[u'robson', u'crew', u'rout', u'singapor']
[u'rock', u'vandal', u'condemn']
[u'rooster', u'anderson']
[u'rossi', u'eye', u'australian', u'motogp', u'titl', u'hunt']
[u'saddam', u'dictat', u'judg']
[u'sandwich', u'shop', u'hygien', u'scratch']
[u'sarin', u'attack', u'mastermind', u'face', u'execut']
[u'review', u'bullbar', u'safeti']
[u'servic', u'shift', u'prompt', u'rat', u'concern']
[u'offend', u'seek', u'supervis']
[u'simpson', u'rule', u'bronco', u'clash']
[u'solomon', u'island', u'diplomat', u'home', u'week']
[u'starv', u'babi', u'mother', u'deni', u'wrongdo']
[u'stockman', u'hall', u'host', u'best', u'rodeo']
[u'studi', u'find', u'elder', u'memori', u'loss', u'head']
[u'sydney', u'underworld', u'figur', u'saffron', u'die']
[u'tare', u'kill', u'jealous', u'rage']
[u'taxi', u'rid', u'cost']
[u'teen', u'donor', u'search', u'head']
[u'final', u'atlanti', u'spacewalk']
[u'thorp', u'return', u'home', u'month']
[u'leg', u'tasmanian', u'prosthet']
[u'tongan', u'king', u'sell', u'busi', u'interest']
[u'travel', u'agent', u'voic', u'concern', u'jetstar', u'transit']
[u'treatment', u'moot', u'croc', u'chlamydia']
[u'offer', u'young', u'compos', u'work', u'experi']
[u'prepar', u'celebr', u'year']
[u'push', u'meet', u'resist']
[u'union', u'condemn', u'castlemain', u'plant', u'closur']
[u'union', u'poll', u'support', u'forc', u'collect']
[u'union', u'urg', u'debat', u'collect', u'bargain', u'polici']
[u'scientist', u'bionic', u'woman', u'breakthrough']
[u'south', u'korea', u'recommit', u'parti', u'talk']
[u'wada', u'take', u'wait', u'stanc', u'landi']
[u'warn', u'take', u'task', u'punter']
[u'watchdog', u'hit', u'pace', u'region', u'fuel', u'price']
[u'water', u'decis', u'fail', u'address', u'drought']
[u'weapon', u'firm', u'name', u'export', u'year']
[u'western', u'elector', u'lose', u'shire']
[u'wilder', u'societi', u'mark', u'farmer']
[u'woman', u'bodi', u'hobart', u'beach']
[u'world', u'titl', u'contend', u'upstag', u'phillip', u'island']
[u'young', u'farmer', u'forum', u'focus', u'biofuel']
[u'abbott', u'urg', u'islam', u'leader', u'criticis', u'radic']
[u'act', u'weapon', u'export', u'industri', u'grow']
[u'teacher', u'reject', u'offer']
[u'adelaid', u'good', u'glori']
[u'afghan', u'communiti', u'rememb', u'slay', u'governor']
[u'airlin', u'urg', u'rout']
[u'argentinian', u'ogr', u'exil', u'jerusalem']
[u'astronaut', u'complet', u'work', u'space', u'station']
[u'australia', u'bat', u'india']
[u'australian', u'imam', u'ask', u'preach', u'english']
[u'australia', u'score', u'india']
[u'beckham', u'shock', u'england', u'snub']
[u'blair', u'flag', u'sudan', u'incent']
[u'brisban', u'shop', u'caus', u'damag']
[u'bronco', u'humbl', u'knight']
[u'bronco', u'obliter', u'knight']
[u'bush', u'push', u'guantanamo', u'trial', u'resumpt']
[u'bush', u'push', u'iran', u'nuclear', u'program']
[u'calcium', u'supplement', u'fail', u'prevent', u'fractur', u'studi']
[u'canada', u'boost', u'troop', u'afghanistan']
[u'checa', u'fastest', u'phillip', u'island', u'practic']
[u'china', u'urg', u'iran', u'flexibl', u'nuclear', u'issu']
[u'chief', u'seek', u'qaeda', u'interrog']
[u'cleric', u'urg', u'govt', u'assist', u'extrem', u'fight']
[u'closer']
[u'closer', u'news']
[u'communiti', u'shed', u'help', u'adjust', u'retir']
[u'council', u'clear', u'spencer', u'power', u'station']
[u'docker', u'stay', u'ground', u'ahead', u'swan', u'clash']
[u'dolphin', u'claim', u'queensland']
[u'doubt', u'rais', u'australia', u'face']
[u'dozen', u'bodi', u'baghdad']
[u'drought', u'grip']
[u'dumini', u'dippenaar', u'south', u'african']
[u'ead', u'play', u'pass', u'pressur']
[u'eagl', u'clash', u'crow']
[u'eagl', u'strong', u'bulldog']
[u'explos', u'caus', u'school', u'blaze', u'polic']
[u'fake', u'irwin', u'sticker', u'land', u'court']
[u'ford', u'announc', u'huge', u'cut', u'predict', u'loss']
[u'ford', u'job']
[u'injur', u'dili', u'clash']
[u'freo', u'break', u'final', u'duck']
[u'gemco', u'land', u'council', u'sign', u'agreement']
[u'girl', u'airlift', u'tractor', u'accid']
[u'govt', u'dig', u'mandatori', u'code', u'horticultur']
[u'govt', u'play', u'role', u'stop', u'extrem']
[u'govt', u'push', u'ahead', u'mandatori', u'code']
[u'goward', u'lose', u'preselect', u'battl']
[u'hayden', u'take', u'pole', u'phillip', u'island']
[u'hmas', u'westralia', u'decommiss']
[u'hmas', u'westralia', u'famili', u'prepar', u'compo', u'claim']
[u'hoggard', u'join', u'england', u'sick', u'list']
[u'iemma', u'shrug', u'internet', u'feedback']
[u'imam', u'open']
[u'irwin', u'fan', u'promis', u'unforgett', u'farewel', u'servic']
[u'keelti', u'warn', u'blame', u'muslim', u'terror']
[u'keelti', u'warn', u'racial', u'profil']
[u'knight', u'meet', u'brisban', u'head']
[u'kookaburra', u'world', u'final']
[u'lade', u'name', u'port', u'best']
[u'live', u'cane', u'toad', u'cross', u'border']
[u'loyalti', u'pledg', u'plan', u'australian', u'imam']
[u'malaysia', u'condemn', u'pope', u'comment']
[u'maningrida', u'celebr', u'cyclon', u'monica', u'recoveri']
[u'refus', u'bail', u'sexual', u'offenc', u'charg']
[u'mcgrath', u'sachin', u'lock', u'horn']
[u'charg', u'pseudoephedrin', u'haul']
[u'merkel', u'back', u'pope', u'islam', u'remark']
[u'monti', u'elimin', u'defend', u'champion', u'campbel']
[u'volunt', u'need', u'protect', u'darwin']
[u'muslim', u'confer', u'tackl', u'extrem']
[u'muslim', u'leader', u'demand', u'apolog', u'pope', u'remark']
[u'muslim', u'leader', u'flay', u'pope', u'remark']
[u'muslim', u'demand', u'apolog', u'pope', u'speech']
[u'grudg', u'liverpool', u'say', u'mourinho']
[u'plan', u'retir', u'say', u'fergi']
[u'liber', u'decid', u'ep', u'candid']
[u'resign', u'parliamentari', u'secretari']
[u'parliamentarian', u'resign']
[u'dead', u'critic', u'boat', u'crash']
[u'pakistan', u'manag', u'urg', u'player', u'respect', u'umpir']
[u'palestinian', u'intellig', u'offic', u'shoot', u'dead', u'gaza']
[u'polar', u'bear', u'drown', u'island', u'appear', u'arctic', u'thaw']
[u'polic', u'charg', u'coff', u'harbour', u'murder']
[u'polic', u'investig', u'bodi', u'hobart', u'beach']
[u'polic', u'offic', u'charg', u'sexual', u'offenc']
[u'polic', u'protest', u'face', u'singapor']
[u'polic', u'seek', u'histor', u'shop', u'gut']
[u'polic', u'seek', u'wit', u'melb', u'train', u'bash']
[u'pope', u'remark', u'anger', u'islam', u'world']
[u'pope', u'sorri', u'offenc', u'caus']
[u'quak', u'rock', u'indonesia']
[u'raid', u'carri', u'shinrikyo', u'cult']
[u'rann', u'hail', u'prospect', u'boom']
[u'rann', u'seek', u'coag', u'discuss', u'china', u'free', u'trade']
[u'religi', u'leader', u'urg', u'preach', u'english']
[u'ring', u'trench', u'protect', u'baghdad']
[u'defend', u'plan', u'crop', u'extens']
[u'appoint', u'footbal', u'ethic', u'chief']
[u'secur', u'bar', u'remov', u'beij', u'olymp', u'makeov']
[u'secur', u'council', u'discuss', u'human', u'right', u'abus']
[u'singapor', u'activist', u'stage', u'illeg', u'march']
[u'sister', u'suffer', u'burn', u'campsit']
[u'snowi', u'dwindl', u'trickl']
[u'solomon', u'diplomat', u'return', u'week']
[u'stainton', u'promis', u'unforgett', u'memori', u'irwin']
[u'stockman', u'hall', u'fame', u'host', u'rodeo', u'champion']
[u'backbench', u'stay']
[u'thousand', u'protest', u'gunn', u'plan']
[u'offici', u'kill', u'gaza']
[u'trust', u'hunt', u'miss', u'sydney', u'opera', u'hous', u'design']
[u'union', u'fear', u'health', u'servic', u'job', u'servic']
[u'shock', u'sexual', u'abus', u'congo']
[u'warn', u'state', u'support', u'buchanan']
[u'approv', u'spray', u'malaria']
[u'approv', u'malaria', u'control']
[u'miss', u'men']
[u'wine', u'industri', u'figur', u'celebr', u'evanss', u'life']
[u'woman', u'arrest', u'fake', u'irwin', u'sticker']
[u'woman', u'fin', u'irwin', u'fraud']
[u'woman', u'get', u'suspend', u'jail', u'term', u'bomb', u'threat']
[u'kill', u'thai', u'bomb', u'blast']
[u'kill', u'bodi', u'iraq']
[u'aborigin', u'health', u'group', u'warn', u'collaps']
[u'aceh', u'receiv', u'buffalo']
[u'chief', u'condemn', u'aust', u'troop', u'video']
[u'anti', u'pulp', u'ralli', u'warn', u'green']
[u'aussi', u'mclean', u'take', u'cycl', u'gold', u'switzerland']
[u'aussi', u'muster', u'shipment', u'differ']
[u'aust', u'muslim', u'confer', u'continu']
[u'australian', u'hurt', u'thai', u'bomb']
[u'australia', u'islam', u'board']
[u'aust', u'stand', u'forc', u'solomon', u'chang', u'trip']
[u'baghdad', u'bomb', u'kill']
[u'barassi', u'want', u'answer', u'victorian', u'wipe']
[u'beatti', u'pay', u'tribut', u'steve', u'irwin']
[u'belgium', u'itali', u'level', u'final']
[u'bella', u'take', u'prize', u'toronto', u'film', u'festiv']
[u'brisban', u'get', u'tripl', u'bledislo']
[u'casey', u'hammer', u'monti']
[u'choir', u'boost', u'bush', u'confid']
[u'closer']
[u'closer', u'news']
[u'coalit', u'launch', u'afghan', u'offens']
[u'communiti', u'urg', u'vanston', u'deport', u'famili']
[u'cooma', u'celebr', u'forget', u'wwii', u'hero']
[u'court', u'clear', u'bangladesh', u'dictat']
[u'darwin', u'ceremoni', u'welcom', u'australian', u'citizen']
[u'darwin', u'join', u'search', u'bone', u'marrow', u'donor']
[u'dean', u'john', u'support', u'criticis', u'prison', u'transfer']
[u'death', u'toll', u'rise', u'thailand', u'blast']
[u'debnam', u'back', u'goward', u'goulburn', u'seat']
[u'debnam', u'tight', u'lip', u'goward', u'campaign', u'talk']
[u'defeat', u'mexican', u'candid', u'declar', u'presid']
[u'defenc', u'probe', u'video', u'soldier', u'mishandl']
[u'defend', u'doubl', u'give', u'depor', u'villarr']
[u'develop', u'world', u'back', u'iran', u'nuclear', u'program']
[u'disgrac', u'face', u'consequ', u'iemma']
[u'drug', u'risk', u'campaign', u'target', u'young', u'profession']
[u'durbidg', u'score', u'huge', u'upset', u'slater']
[u'durbridg', u'score', u'huge', u'upset', u'slater']
[u'eagl', u'lift', u'howel', u'share', u'lead']
[u'ep', u'candid', u'urg', u'step', u'asid', u'deputi']
[u'servic', u'warn', u'bushfir', u'risk']
[u'qaeda', u'member', u'arrest', u'yemen']
[u'kill', u'thai', u'blast']
[u'plan', u'citizenship', u'overhaul']
[u'govt', u'call', u'feedback', u'citizenship', u'test']
[u'govt', u'drag', u'feet', u'immigr', u'labor', u'say']
[u'govt', u'flag', u'lift', u'plate', u'driver', u'train', u'hour']
[u'govt', u'releas', u'citizenship', u'test', u'paper']
[u'hurrican', u'downgrad', u'hit', u'mexico']
[u'hurrican', u'gain', u'forc', u'mexico']
[u'hussey', u'captain', u'australia', u'windi']
[u'india', u'pakistan', u'agre', u'kashmir', u'peac', u'talk']
[u'india', u'pakistan', u'agre', u'resum', u'peac', u'talk']
[u'india', u'pakistan', u'resum', u'kashmir', u'peac', u'talk']
[u'irwin', u'farewel', u'organis', u'releas', u'ticket']
[u'irwin', u'memori', u'organis', u'releas', u'ticket']
[u'israel', u'beef', u'lebanon', u'probe']
[u'italian', u'murder', u'somalia']
[u'jet', u'snatch', u'draw', u'sydney']
[u'johnson', u'latest', u'string', u'success']
[u'medibank', u'govt', u'hand', u'famili', u'say']
[u'kuznetsova', u'claim', u'bali', u'trick']
[u'labor', u'work', u'tourism', u'sector', u'visa', u'plan']
[u'launceston', u'communiti', u'renov', u'school']
[u'kill', u'glider', u'crash']
[u'melandri', u'beat', u'home', u'vermeulen', u'phillip', u'island']
[u'memori', u'mark', u'irwin', u'contribut', u'beatti', u'say']
[u'minist', u'call', u'global', u'green', u'technolog', u'share']
[u'motorcyclist', u'die', u'foggi', u'road', u'phillip']
[u'munich', u'kick', u'oktoberfest']
[u'nato', u'command', u'predict', u'year', u'afghan', u'campaign']
[u'vision', u'master']
[u'excus', u'drink', u'drive']
[u'align', u'state', u'condemn', u'israel']
[u'offens', u'transport', u'withdraw', u'complaint']
[u'price', u'fall', u'demand', u'forecast', u'lower']
[u'opposit', u'want', u'paedophil', u'task', u'forc', u'budget', u'boost']
[u'goal', u'save', u'wast', u'inter']
[u'palestinian', u'uniti', u'talk', u'threaten', u'stall']
[u'phillip', u'island', u'pay', u'tribut', u'brock']
[u'polic', u'probe', u'fatal', u'boat', u'crash']
[u'polic', u'search', u'boy', u'school']
[u'pompey', u'charlton']
[u'pope', u'apologis', u'controversi', u'remark']
[u'pope', u'apolog', u'inadequ', u'muslim', u'group']
[u'pope', u'sorri', u'anger', u'muslim']
[u'pressur', u'mount', u'pope', u'islam', u'comment']
[u'protest', u'ride', u'hors', u'land']
[u'prepar', u'nation', u'toughest', u'drug', u'drive', u'test']
[u'rain', u'save', u'india', u'rampant', u'johnson']
[u'red', u'strong', u'waratah']
[u'red', u'post', u'strong', u'waratah']
[u'remot', u'medic', u'servic', u'struggl', u'clinic']
[u'report', u'say', u'young', u'peopl', u'prosper', u'futur']
[u'seeney', u'nation', u'leadership']
[u'singapor', u'stand', u'enter', u'second']
[u'singapor', u'stand', u'tuesday']
[u'smith', u'defend', u'beazley', u'valu', u'visa']
[u'speed', u'contribut', u'fatal', u'boat', u'crash', u'polic']
[u'lanka', u'death', u'squad', u'kill', u'score', u'rebel']
[u'lanka', u'presid', u'hop', u'talk', u'bring', u'peac']
[u'stanhop', u'say', u'teacher', u'union', u'negoti']
[u'stoner', u'blitz', u'motogp', u'warm']
[u'suicid', u'bomber', u'target', u'iraqi', u'polic']
[u'swan', u'expect', u'cram', u'homebush']
[u'sydney', u'hold', u'newcastl']
[u'thai', u'blast', u'kill']
[u'thai', u'bomb', u'death', u'toll', u'rise']
[u'thompson', u'seal', u'melbourn']
[u'thousand', u'ralli', u'taiwan', u'presid']
[u'montreal', u'school', u'shoot', u'victim', u'critic']
[u'union', u'fear', u'work', u'condit', u'jetstar']
[u'vatican', u'issu', u'papal', u'apolog']
[u'vino', u'vuelta', u'victori']
[u'wallaroo', u'ireland', u'finish', u'seventh']
[u'refus', u'repatri', u'heroin', u'smuggler', u'thai']
[u'watch', u'mcgrath', u'learn', u'dravid']
[u'weekend', u'road', u'accid', u'claim', u'live']
[u'world', u'bank', u'urg', u'invest', u'young', u'peopl']
[u'aborigin', u'servic']
[u'acid', u'attack', u'flush', u'victim', u'brother', u'court', u'tell']
[u'deploy', u'affect', u'legaci', u'appeal']
[u'build', u'hydro', u'electr', u'plant']
[u'grade', u'footbal', u'final', u'crowd', u'commend', u'polic']
[u'alic', u'charg', u'rap', u'disabl', u'woman']
[u'therapi', u'add', u'fli', u'doctor', u'servic']
[u'asotasi', u'frame', u'return', u'bronco']
[u'assault', u'complaint', u'cresswel', u'drop']
[u'attack', u'parol', u'condit', u'save']
[u'aust', u'criticis', u'solomon', u'mission']
[u'australia', u'windi']
[u'australian', u'scientist', u'share', u'lasker', u'award']
[u'australian', u'wool', u'innov', u'quit']
[u'aust', u'work', u'issu', u'solomon']
[u'award', u'recipi', u'oppos', u'propos', u'citizenship']
[u'hand', u'hundr', u'document']
[u'unlik', u'appeal', u'document', u'rule']
[u'baghdati', u'batter', u'ancic', u'beij']
[u'bell', u'recoveri', u'case', u'enter', u'final', u'stage']
[u'bevan', u'give', u'australian', u'recal']
[u'bishop', u'join', u'call', u'compulsori', u'preschool']
[u'bodi', u'sunshin', u'coast', u'forest']
[u'bodi', u'identifi', u'miss', u'woman']
[u'brack', u'reject', u'water', u'price', u'review']
[u'brawl', u'suspect', u'return', u'detent', u'centr']
[u'bronco', u'distract', u'despit', u'bennett', u'specul']
[u'broom', u'port', u'hous']
[u'burglar', u'pocket', u'week', u'studi', u'show']
[u'bush', u'republican', u'close', u'compromis']
[u'busi', u'council', u'urg', u'water', u'price', u'review']
[u'busselton', u'beach', u'rescu', u'win', u'braveri', u'award']
[u'byron', u'worst', u'place', u'snake', u'say', u'snake', u'catcher']
[u'cairn', u'charg', u'indec', u'photo']
[u'call', u'billion', u'dollar', u'retrain', u'fund']
[u'canberra', u'rental', u'properti', u'short', u'suppli']
[u'cancer', u'warn', u'need', u'alcohol', u'salvat', u'armi']
[u'cane', u'toad']
[u'cane', u'toad', u'impact', u'boost', u'croc', u'hatchl', u'number']
[u'arson', u'continu', u'alic']
[u'carr', u'free', u'meet', u'swan']
[u'china', u'plan', u'olymp', u'drive']
[u'civilian', u'replac', u'polic', u'townsvill', u'watch', u'hous']
[u'clarenc', u'valley', u'council', u'push', u'timber', u'bridg']
[u'closer']
[u'closer']
[u'closer', u'news']
[u'collin', u'fight', u'child', u'charg']
[u'comment', u'seek', u'brisban', u'plan', u'chang']
[u'committe', u'push', u'kalgoorli', u'econom', u'benefit']
[u'competit', u'increas', u'henley', u'todd', u'regatta']
[u'compromis', u'flag', u'interrog']
[u'concern', u'rais', u'hous', u'downturn']
[u'coonambl', u'council', u'research', u'opportun']
[u'councillor', u'hand', u'drive', u'breath', u'test']
[u'council', u'suggest', u'hoon', u'law', u'boat']
[u'court', u'forc', u'hand', u'document']
[u'dambust', u'pose', u'racist', u'term', u'dilemma', u'jackson']
[u'defenc', u'disappoint', u'iraq', u'video']
[u'defenc', u'dismay', u'iraq', u'video']
[u'doctor', u'town', u'phone', u'help']
[u'dragon', u'chanc']
[u'driver', u'fatigu', u'reform', u'go', u'trucki']
[u'dunsborough', u'prepar', u'anaconda', u'adventur', u'race']
[u'east', u'kimberley', u'increas', u'tourism', u'promot']
[u'english', u'stayer', u'doubt', u'melbourn']
[u'english', u'stayer', u'melbourn']
[u'etoo', u'feel', u'pain', u'spain', u'beckham', u'bite']
[u'expert', u'tip', u'rate', u'rise', u'year']
[u'famili', u'await', u'bone', u'marrow', u'search', u'result']
[u'farm', u'deposit', u'scheme', u'help', u'staff']
[u'transport', u'minist', u'hear', u'coff', u'concern']
[u'femal', u'tourist', u'notch', u'space', u'record']
[u'season', u'start', u'octob']
[u'fish', u'industri', u'await', u'confirm', u'govt']
[u'eagl', u'knight', u'pick', u'train']
[u'flegg', u'quiet', u'coalit', u'deal', u'chang']
[u'food', u'standard', u'author', u'resist', u'transfat']
[u'footi', u'achiev', u'dream', u'toss', u'coin']
[u'gambier', u'wait', u'news', u'hydrotherapi', u'pool']
[u'glendal', u'court', u'stab', u'murder']
[u'glider', u'pilot', u'kill', u'airstrip', u'crash']
[u'global', u'push', u'dafur', u'peac']
[u'easi', u'kovco', u'escort', u'inquiri', u'urg']
[u'goulburn', u'murray', u'suffer', u'horror', u'weekend', u'road', u'toll']
[u'govt', u'begin', u'lead', u'test', u'children']
[u'govt', u'over', u'worri', u'nation', u'park']
[u'govt', u'say', u'mount', u'parkway']
[u'govt', u'adress', u'skill', u'shortag']
[u'goward', u'preselect', u'battl', u'tragedi', u'hewson']
[u'gulbi', u'davi', u'contest', u'australian', u'open']
[u'gunnedah', u'ethanol', u'plant', u'construct', u'begin']
[u'health', u'insur', u'profit', u'soar']
[u'help', u'seek', u'playground', u'attack', u'investig']
[u'henin', u'hardenn', u'injuri', u'hand', u'itali', u'titl']
[u'hilliard', u'case', u'adjourn', u'suicid', u'attempt']
[u'hospit', u'close', u'fear', u'invas']
[u'howard', u'stand', u'solomon', u'ambassador']
[u'hussey', u'centuri', u'steer', u'australia', u'solid', u'total']
[u'immigr', u'move', u'burmes', u'asylum', u'seeker', u'nauru']
[u'indigen', u'communiti', u'leav', u'school', u'closur']
[u'industri', u'group', u'seek', u'worker', u'retrain']
[u'ing', u'confid', u'clear', u'play']
[u'injur', u'question', u'bodi']
[u'innisfail', u'near', u'drown', u'bath']
[u'inquiri', u'advers', u'find', u'kovco']
[u'emerg', u'mode', u'chemic', u'leak']
[u'johnson', u'high', u'seri', u'success']
[u'kidsaf', u'issu', u'guidelin', u'home', u'safeti']
[u'knife', u'think', u'murder', u'weapon', u'test']
[u'knight', u'trio', u'name', u'xiii']
[u'kovco', u'inquiri', u'consid', u'internet', u'video']
[u'kovco', u'mother', u'say', u'armi', u'cover']
[u'lake', u'macq', u'council', u'consid', u'zone', u'cooranbong']
[u'landi', u'confid', u'drug', u'appeal', u'succeed']
[u'leav', u'militari', u'deal', u'iraq', u'video', u'howard']
[u'liber', u'educ', u'forum', u'shape', u'polici']
[u'lincou', u'knock', u'palmer', u'british', u'open']
[u'loxton', u'waikeri', u'enforc', u'burnoff', u'control']
[u'bash', u'bundaberg', u'coupl', u'backyard']
[u'maroochi', u'councillor', u'want', u'council']
[u'memo', u'heighten', u'honiara', u'riot', u'inquiri', u'fear']
[u'men', u'selfless', u'action', u'save', u'girl', u'live']
[u'militari', u'handl', u'iraq', u'video', u'howard']
[u'molloy', u'contest', u'feder', u'seat']
[u'moora', u'region', u'prepar', u'locust', u'boom']
[u'mottram', u'streak', u'victori', u'athen']
[u'barker', u'tourist', u'bureau', u'committe', u'recommend']
[u'mudge', u'motorcyclist', u'hospitalis', u'hit']
[u'murray', u'malle', u'want', u'control', u'road']
[u'narrow', u'victori', u'coorow', u'shire', u'elect']
[u'beekeep', u'tough']
[u'clark', u'anger', u'husband', u'rumour']
[u'king', u'guilti', u'fraud']
[u'opal', u'strong', u'brazil']
[u'hear', u'tell', u'polic', u'beat', u'prison']
[u'orang', u'careflight', u'servic', u'face', u'uncertain', u'futur']
[u'oxiana', u'boon', u'near', u'town']
[u'pair', u'charg', u'neglect', u'babi']
[u'parkin', u'add', u'uncertainti', u'thompson', u'futur']
[u'philippin', u'polic', u'seiz', u'huge', u'cach', u'explos']
[u'acknowledg', u'skill', u'shortag']
[u'open', u'temora', u'runway']
[u'play', u'footag']
[u'polic', u'catch', u'tamworth', u'drink', u'driver']
[u'polic', u'deni', u'beat', u'robberi', u'suspect']
[u'polic', u'investig', u'break', u'hill', u'fire']
[u'polic', u'investig', u'tweed', u'fatal', u'collis']
[u'polic', u'question', u'tram', u'stab']
[u'polic', u'seiz', u'suspect', u'vehicl']
[u'polic', u'treatment', u'suspect', u'equat', u'tortur']
[u'pope', u'apologis', u'controversi', u'remark']
[u'pope', u'apologis', u'offend', u'muslim']
[u'pope', u'apologis', u'pell']
[u'pope', u'regret', u'reaction', u'muslim', u'comment']
[u'pope', u'islam', u'comment', u'sadden', u'archbishop']
[u'port', u'hugh', u'golf', u'cours', u'propos', u'scrutinis']
[u'port', u'macquari', u'land', u'compo', u'case', u'step']
[u'preschool', u'educ', u'spend', u'lowest', u'oecd']
[u'prosecutor', u'seek', u'paedophilia', u'accus', u'case']
[u'public', u'urg', u'stori', u'pulp']
[u'polic', u'investig', u'child', u'death']
[u'queensland', u'lookout', u'locust']
[u'radiograph', u'readi', u'quit', u'condit']
[u'radio', u'rental', u'deni', u'sack', u'link', u'union']
[u'rann', u'announc', u'health', u'centr']
[u'renew', u'optim', u'fish', u'industri']
[u'report', u'show', u'aust', u'school', u'educ', u'lag']
[u'resid', u'discuss', u'katherin', u'flood', u'plan']
[u'resort', u'cop', u'despit', u'poor', u'snowfal']
[u'resourc', u'boom', u'blame', u'shortag']
[u'resourc', u'rebound', u'lift', u'market']
[u'concern', u'season']
[u'ricciuto', u'confid', u'face', u'eagl']
[u'rise', u'price', u'renew', u'reserv']
[u'roma', u'receiv', u'braveri', u'award', u'rescu']
[u'mcleod', u'boost', u'crow']
[u'rural', u'telephon', u'technician', u'stop', u'servic']
[u'saffron', u'rememb', u'gentl']
[u'african', u'surfer', u'line', u'record', u'break', u'ride']
[u'govt', u'wont', u'fund', u'south', u'east', u'transport', u'opposit']
[u'scotland', u'escap', u'convict']
[u'seeney', u'simpson', u'lead', u'nation']
[u'seeney', u'vow', u'fight', u'mari', u'river', u'construct']
[u'shepparton', u'push', u'univers', u'campus', u'fund']
[u'shoalhaven', u'river', u'ralli', u'worri', u'water', u'transfer']
[u'shoalwat', u'replica', u'town', u'troop']
[u'silver', u'citi', u'boast', u'good', u'number']
[u'kill', u'somali', u'parliament', u'blast']
[u'kidman', u'make', u'feedlot', u'invest']
[u'solomon', u'drop', u'einfeld', u'criticis', u'aust', u'govt']
[u'solomon', u'attack', u'howard']
[u'south', u'africa', u'zimbabw', u'match', u'postpon']
[u'speed', u'camera', u'revenu', u'drop']
[u'spoof', u'video', u'risk', u'defenc', u'forc', u'reput']
[u'stanhop', u'oppos', u'beazley', u'valu', u'visa']
[u'stanley', u'urg', u'compulsori', u'preschool']
[u'stockman', u'hall', u'fame', u'rodeo', u'enorm']
[u'suicid', u'bomber', u'kill', u'nato', u'soldier']
[u'suspici', u'bendigo', u'showground', u'caus']
[u'swedish', u'admit', u'elect', u'defeat']
[u'swim', u'coach', u'win', u'defam', u'payout']
[u'tame', u'water', u'buffalo', u'head', u'aceh']
[u'tasmanian', u'river', u'flow', u'year']
[u'research', u'question', u'calcium', u'supplement']
[u'telstra', u'say', u'cost', u'cut', u'wont', u'affect', u'rural', u'servic']
[u'thaiday', u'clear', u'bulldog', u'encount']
[u'thompson', u'specul', u'parkin']
[u'toad', u'juic', u'buyer', u'warn', u'explos', u'risk']
[u'train', u'blame', u'skill', u'shortag']
[u'trio', u'maintain', u'perfect', u'seri', u'start']
[u'trust', u'wonder', u'rock', u'mona', u'lisa', u'threaten']
[u'tune', u'chapman', u'injuri', u'cloud']
[u'turnbul', u'take', u'board', u'water', u'reform', u'plan']
[u'typhoon', u'shanshan', u'kill', u'japan']
[u'ulladulla', u'recognis', u'braveri', u'award']
[u'call', u'aust', u'help', u'restart', u'doha', u'round']
[u'veteran', u'wife', u'say', u'minist', u'fail', u'consid']
[u'video', u'soldier', u'let', u'steam']
[u'vino', u'take', u'tour', u'spain']
[u'visit', u'academ', u'say', u'pick']
[u'volunt', u'need', u'beer', u'survey']
[u'wagin', u'push', u'katan', u'saleyard']
[u'govt', u'neglect', u'region', u'joyc']
[u'govt', u'satisfi', u'progress', u'esper']
[u'govt', u'survey', u'opinion', u'point']
[u'govt', u'clean', u'port', u'hedland', u'dust']
[u'water', u'licens', u'fin', u'irrig', u'water', u'meter']
[u'wheatbelt', u'shire', u'consid', u'amalgam']
[u'whyalla', u'desalin', u'plant', u'good', u'option']
[u'woman', u'arrest', u'internet', u'scam']
[u'young', u'farmer', u'year', u'consid', u'prize']
[u'young', u'socceroo', u'triumph', u'malaysia']
[u'aborigin', u'prison', u'rehab', u'group', u'receiv', u'grant']
[u'adelaid', u'wari', u'slinger']
[u'airlin', u'administr', u'talk', u'investor']
[u'airport', u'profit', u'extra', u'tourist']
[u'urg', u'papal', u'comment', u'controversi']
[u'call', u'wider', u'cole', u'inquiri', u'power']
[u'annan', u'warn', u'iraq', u'brink', u'civil']
[u'archbishop', u'urg', u'balanc', u'stem', u'cell', u'debat']
[u'armi', u'discharg', u'recruit', u'face', u'murder', u'charg']
[u'asotasi', u'bronco', u'clash']
[u'asotasi', u'thrill']
[u'assault', u'complaint', u'cresswel', u'drop']
[u'assault', u'driver', u'premedit']
[u'audit', u'scath', u'govt', u'fleet', u'manag']
[u'australian', u'lose', u'cambodian', u'drug', u'sentenc', u'appeal']
[u'australian', u'unionist', u'join', u'picket', u'line']
[u'australia', u'put', u'sanction', u'north', u'korea']
[u'season', u'hit', u'snowi', u'busi', u'owner']
[u'bank', u'teller', u'jail', u'steal', u'custom', u'money']
[u'bathurst', u'hold', u'brock', u'memori']
[u'battlefield', u'remain', u'time', u'identifi']
[u'beamer', u'urg', u'tighter', u'credit', u'control']
[u'bleak', u'winter', u'predict', u'grain', u'grower']
[u'bligh', u'kick', u'desal', u'plant', u'construct']
[u'bodi', u'truck', u'crash', u'wreckag']
[u'book', u'reopen', u'crick', u'suicid', u'investig']
[u'brack', u'defend', u'open', u'hear', u'polic', u'assault']
[u'breed', u'program', u'boost', u'aust', u'alpaca', u'industri']
[u'brock', u'farewel', u'melbourn']
[u'brock', u'funer', u'begin', u'melbourn']
[u'brock', u'famili', u'thank', u'fan']
[u'bronco', u'humour', u'bennett', u'specul']
[u'busi', u'group', u'criticis', u'water', u'plan']
[u'cabooltur', u'stalker', u'jail', u'month']
[u'call', u'calm', u'muslim', u'comment']
[u'call', u'inquiri', u'depart', u'child', u'safeti']
[u'cancer', u'rate', u'rise']
[u'cattl', u'sell', u'continu', u'nino', u'fear', u'persist']
[u'central', u'coast', u'draft', u'strategi', u'downplay', u'popul']
[u'chee', u'end', u'singapor', u'stand']
[u'closer']
[u'closer']
[u'closer', u'news']
[u'cole', u'leav', u'solomon', u'island']
[u'coliban', u'downplay', u'blue', u'green', u'alga', u'outbreak']
[u'compass', u'resourc', u'creat', u'job']
[u'cool', u'chang', u'slow', u'nation', u'park']
[u'corica', u'face', u'disciplinari', u'hear']
[u'council', u'monitor', u'beach', u'sewag', u'spill']
[u'council', u'nomin', u'prompt', u'postal']
[u'court', u'secur', u'scare', u'fals', u'alarm']
[u'crow', u'look', u'forward', u'meet', u'judd']
[u'deputi', u'reject', u'claim', u'improp', u'action']
[u'didak', u'miss', u'start', u'season']
[u'dili', u'peacekeep', u'seiz', u'weapon']
[u'dohn', u'merino', u'sell']
[u'downer', u'urg', u'canada', u'stand', u'firm', u'afghanistan']
[u'downer', u'wont', u'comment', u'solomon', u'claim']
[u'underfund', u'understaf', u'report']
[u'drastic', u'drop', u'cotton', u'plant', u'expect']
[u'drug', u'drive', u'law', u'send', u'strong', u'messag']
[u'drug', u'report', u'show', u'need', u'cooper', u'ellison']
[u'winter', u'impact', u'grain', u'crop']
[u'monitor', u'wimmera', u'fuel', u'burnoff']
[u'ducat', u'return', u'armidal', u'dumaresq', u'mayor']
[u'exclus', u'brethren', u'fund', u'ryan']
[u'expel', u'solomon', u'commission', u'australia']
[u'expert', u'predict', u'petrol', u'price', u'drop']
[u'worker', u'angri', u'compens', u'reject']
[u'famili', u'prepar', u'irwin', u'memori']
[u'fan', u'farewel', u'brock', u'state', u'funer']
[u'farmer', u'hope', u'reviv', u'trade', u'talk']
[u'north', u'real', u'estat', u'strong']
[u'fatal', u'truck', u'crash', u'caus', u'partial', u'hume', u'highway']
[u'financi', u'grant', u'bail', u'rabbit', u'tortur', u'charg']
[u'bomber', u'helicopt', u'attack', u'blaze', u'vic']
[u'peni', u'transplant', u'revers', u'week']
[u'fish', u'licenc', u'buyback', u'effect', u'felt', u'support']
[u'fitzi', u'confid', u'davi', u'boilov']
[u'employe', u'face', u'fraud', u'charg']
[u'univers', u'turn', u'actor', u'mickey', u'hargitay']
[u'year', u'treat', u'motorbik', u'injuri']
[u'fuel', u'price', u'chang', u'outback', u'tourism', u'say', u'mayor']
[u'fundrais', u'group', u'receiv', u'environment', u'award']
[u'gallipoli', u'studi', u'reveal', u'hide', u'secret']
[u'gasnier', u'certainti', u'face', u'storm']
[u'googl', u'order', u'remov', u'belgian', u'news', u'websit']
[u'govt', u'reject', u'perth', u'nativ', u'titl', u'rule']
[u'govt', u'welcom', u'clear', u'fin', u'coff', u'develop']
[u'green', u'group', u'applaud', u'plan', u'hydro', u'plant']
[u'green', u'question', u'gunn', u'pollut', u'estim']
[u'green', u'urg', u'transpar', u'exclus', u'brethren']
[u'gregan', u'expect', u'benefit', u'miss', u'wallabi']
[u'gregan', u'european', u'tour']
[u'grinham', u'lose', u'british', u'open', u'final']
[u'water', u'consid', u'irrig', u'lake', u'eildon', u'plan']
[u'hardi', u'asbesto', u'victim', u'protest', u'director']
[u'hewitt', u'accus', u'creat', u'davi', u'circus']
[u'high', u'life', u'bush']
[u'hostel', u'child', u'abus', u'claim', u'unfound']
[u'hous', u'slump', u'blame', u'boral', u'timber', u'cut']
[u'hume', u'highway', u'remain', u'close', u'horrif', u'truck']
[u'hungarian', u'lie', u'spark', u'violent', u'protest']
[u'hungari', u'refus', u'resign', u'amid', u'anti', u'govern']
[u'hussey', u'reject', u'talk', u'succeed', u'pont']
[u'spike', u'prompt', u'sniffer', u'dog']
[u'warn', u'global', u'growth', u'peak']
[u'indi', u'prepar', u'track', u'organis']
[u'ing', u'storm']
[u'intellig', u'core', u'terror', u'prevent']
[u'intern', u'colleg', u'aim', u'reduc', u'skill']
[u'israel', u'fulli', u'withdraw', u'lebanon', u'day']
[u'world', u'demetriou']
[u'jam', u'hardi', u'defend', u'director', u'rise']
[u'jam', u'hardi', u'doubl', u'director']
[u'joint', u'project', u'soil', u'safeti', u'guidelin']
[u'jolli', u'thank', u'weekend']
[u'joyc', u'deni', u'nation', u'leg']
[u'kalli', u'confirm', u'class', u'protea', u'zimbabw']
[u'katherin', u'flood', u'plan', u'receiv']
[u'record', u'drink', u'patient', u'doctor', u'urg']
[u'king', u'timber', u'plantat', u'need', u'abetz']
[u'king', u'funer', u'bring', u'tonga', u'halt']
[u'kovco', u'mother', u'reject', u'weapon', u'play', u'claim']
[u'kovco', u'wife', u'lay', u'blame', u'bodi', u'bungl']
[u'kovco', u'widow', u'address', u'inquiri']
[u'kovco', u'widow', u'appear', u'inquiri']
[u'kovoc', u'play', u'weapon', u'mother']
[u'castlemain', u'urg', u'worker', u'termin']
[u'labor', u'renew', u'wider', u'cole', u'inquiri', u'power']
[u'ladi', u'nelson', u'return', u'water']
[u'landown', u'reject', u'meter', u'plan', u'privat', u'dam']
[u'lawyer', u'press', u'person', u'injuri', u'law', u'chang']
[u'leader', u'look', u'reviv', u'middl', u'east', u'peac', u'push']
[u'mackay', u'hous', u'price', u'catch', u'brisban']
[u'mandatori', u'horticultur', u'code', u'conduct', u'announc']
[u'manufactur', u'downbeat', u'despit', u'growth']
[u'market', u'slip', u'earli', u'gain']
[u'mayor', u'push', u'nation', u'swim', u'pool', u'cash']
[u'melbourn', u'swelter', u'record', u'equal', u'heat']
[u'minist', u'doubt', u'mandatori', u'report']
[u'minist', u'hear', u'loxton', u'polic', u'staff', u'worri']
[u'minist', u'urg', u'join', u'polic', u'fight']
[u'minist', u'want', u'answer', u'child', u'death']
[u'molik', u'fall', u'beij']
[u'monitor', u'danger', u'mental', u'health', u'patient', u'expert']
[u'more', u'bypass', u'construct', u'open', u'tender']
[u'mother', u'court', u'daughter', u'death']
[u'claim', u'gang', u'recruit', u'children', u'drug', u'courier']
[u'argu', u'smith', u'child', u'porn']
[u'vow', u'exploit']
[u'nation', u'park', u'blaze', u'ravag', u'hectar']
[u'nation', u'lobbi', u'central', u'pip', u'plan']
[u'target', u'kidney', u'diseas']
[u'rail', u'car', u'boost', u'peak', u'hour', u'capac']
[u'softwar', u'eas', u'schedul', u'headach']
[u'hurt', u'amid', u'black', u'hawk', u'emerg', u'land']
[u'polic', u'seek', u'extradit', u'child', u'accus']
[u'crack', u'shonki', u'health', u'practition']
[u'investig', u'lion', u'escap']
[u'nyoongar', u'peopl', u'nativ', u'titl', u'perth']
[u'omodei', u'shoot', u'convict', u'uphold']
[u'opal', u'stay', u'perfect', u'brazil']
[u'pani', u'retir']
[u'pell', u'anger', u'muslim', u'defenc', u'pope', u'comment']
[u'pell', u'defend', u'pope', u'comment']
[u'peter', u'brock', u'farewel', u'melbourn']
[u'petroleum', u'explor', u'permit', u'criticis']
[u'pitt', u'move', u'allay', u'indigen', u'portfolio', u'concern']
[u'defend', u'cardin', u'amid', u'papal', u'comment', u'controversi']
[u'pipelin', u'rout']
[u'polic', u'appeal', u'info', u'dapto']
[u'polic', u'investig', u'firebomb', u'shoot', u'perth']
[u'policeman', u'collaps', u'hear']
[u'policemen', u'deni', u'videotap', u'prison', u'abus']
[u'polic', u'satisfi', u'grand', u'prix', u'oper']
[u'power', u'station', u'closur', u'suppli']
[u'public', u'heed', u'playground', u'inform']
[u'racq', u'question', u'wide', u'petrol', u'price', u'dispar']
[u'rain', u'help', u'kangaroo', u'farmer']
[u'region', u'student', u'select', u'homestay', u'program']
[u'remand', u'centr', u'plan', u'abandon', u'amid', u'public', u'concern']
[u'reptil', u'centr', u'hold', u'irwin', u'tribut']
[u'royal', u'hobart', u'hospit', u'open', u'stroke', u'unit']
[u'russia', u'cancel', u'shell', u'field', u'permit']
[u'saddam', u'trial', u'hear', u'stillborn', u'child']
[u'scientist', u'develop', u'ocean', u'forecast']
[u'scott', u'confirm', u'australian']
[u'contain', u'home', u'sale', u'soar', u'hous']
[u'senat', u'link', u'death', u'govt', u'inact', u'petrol']
[u'small', u'busi', u'need', u'convers', u'subsidi', u'nrma']
[u'solomon', u'accus', u'meddl', u'justic', u'process']
[u'solomon', u'invit', u'downer', u'talk']
[u'somalia', u'presid', u'surviv', u'assassin', u'attempt']
[u'soni', u'batteri', u'troubl', u'spread', u'toshiba', u'laptop']
[u'station', u'closur', u'highlight', u'polic', u'shortag', u'union']
[u'stem', u'cell', u'treatment', u'improv', u'patient', u'heart']
[u'storm', u'sydney', u'final', u'chin']
[u'studi', u'allay', u'univers', u'admiss', u'concern']
[u'suicid', u'consid', u'kovco', u'inquiri']
[u'suspici', u'packag', u'prompt', u'court', u'evacu']
[u'sydney', u'harbour', u'bridg', u'tribut', u'brock', u'irwin']
[u'sydney', u'polic', u'extradit', u'child', u'abus', u'suspect']
[u'tanami', u'gold', u'treatment', u'plant', u'complet']
[u'farmer', u'urg', u'creativ', u'irrig']
[u'women', u'build', u'trade']
[u'tent', u'near', u'miss', u'prompt', u'emerg']
[u'tharwa', u'resid', u'fear', u'impact', u'bridg', u'closur']
[u'thousand', u'farewel', u'peter', u'brock']
[u'tiley', u'elect', u'clarenc', u'valley', u'mayor']
[u'time', u'run', u'trade', u'deal', u'vail']
[u'tiwi', u'island', u'rais', u'year', u'leas', u'concern']
[u'toad', u'buster', u'cull', u'delay', u'amphibian', u'arriv']
[u'total', u'ban', u'declar', u'part', u'southern']
[u'transport', u'biggest', u'problem', u'rural', u'women']
[u'treatment', u'plant', u'provid', u'opportun']
[u'tribut', u'flow', u'brock', u'funer']
[u'truss', u'speed', u'pacif', u'highway', u'upgrad']
[u'uninhabit', u'histor', u'centr', u'sell']
[u'firefight', u'watch', u'blaze']
[u'visitor', u'break', u'increas', u'polic']
[u'lead', u'aust', u'preschool', u'spend', u'ravlich']
[u'wall', u'street', u'subdu', u'ahead', u'rat', u'decis']
[u'western', u'bulldog', u'harri', u'accept']
[u'widow', u'testimoni', u'close', u'kovco', u'inquiri', u'hear']
[u'wild', u'wind', u'whip', u'victoria']
[u'wine', u'council', u'reject', u'vine', u'pull', u'address']
[u'woman', u'urg', u'leav', u'violent', u'husband', u'inquest', u'tell']
[u'remain', u'belgium']
[u'young', u'compos', u'music', u'symphoni']
[u'prepar', u'irwin', u'memori']
[u'reward', u'trade', u'fair', u'diamond', u'theft']
[u'adelaid', u'school', u'close']
[u'fishermen', u'miss', u'bangladeshi', u'storm']
[u'elect', u'parti', u'presid', u'japan']
[u'alleg', u'parliament', u'hous', u'crockeri', u'thief', u'fail']
[u'call', u'enhanc', u'disast', u'respons']
[u'annan', u'criticis', u'thai', u'coup']
[u'argentin', u'dont', u'like', u'hewitt', u'nalbandian']
[u'tribut', u'crocodil', u'hunter', u'steve', u'irwin']
[u'australian', u'soldier', u'return', u'timor']
[u'australian', u'warn', u'care', u'thailand']
[u'australia', u'host', u'world', u'championship']
[u'aust', u'scientist', u'develop', u'ocean', u'forecast']
[u'aust', u'push', u'reviv', u'world', u'trade', u'talk']
[u'aust', u'farm', u'product', u'plan', u'potenti']
[u'chief', u'push', u'food', u'inquiri']
[u'barrett', u'play', u'clark', u'appoint']
[u'baxter', u'lower', u'hous', u'seat']
[u'beaconsfield', u'miner', u'bypass', u'break', u'hill']
[u'beazley', u'back', u'possibl', u'nyoongar', u'rule', u'challeng']
[u'black', u'hawk', u'helicopt', u'return', u'base']
[u'blainey', u'promot', u'histori', u'teach', u'high', u'school']
[u'book', u'honour', u'outback', u'pioneer']
[u'boost', u'echuca', u'train', u'servic']
[u'bronco', u'ground', u'despit', u'knight', u'demolit']
[u'brough', u'face', u'mutijulu', u'communiti', u'martin']
[u'driver', u'continu', u'disput', u'negoti']
[u'bush', u'address', u'iran']
[u'busi', u'lobbi', u'welcom', u'chanc', u'feder', u'fund']
[u'servic', u'return', u'normal', u'driver', u'strike']
[u'cahil', u'seal', u'everton', u'wigan', u'exit', u'leagu']
[u'boost', u'north', u'coast', u'polic', u'number']
[u'call', u'global', u'legisl', u'achiev', u'global']
[u'cancer', u'diagnos', u'expect', u'climb', u'report']
[u'claim', u'bolton', u'boss', u'take', u'bribe']
[u'clark', u'lash', u'opposit', u'leader']
[u'closer']
[u'closer', u'news']
[u'communiti', u'help', u'urg', u'search', u'miss', u'woman']
[u'communiti', u'servic', u'time', u'sheet', u'falsifi']
[u'confer', u'seek', u'cancer', u'scienc', u'access']
[u'conserv', u'work', u'help', u'peopl', u'depress']
[u'coonan', u'rais', u'safeti', u'concern']
[u'corica', u'match']
[u'council', u'adopt', u'plan', u'waterfront', u'precinct']
[u'council', u'say', u'earli', u'work', u'propos', u'desal', u'site']
[u'council', u'seek', u'feedback', u'nowra', u'jail', u'propos']
[u'council', u'consid', u'impact', u'spring', u'gulli', u'power']
[u'council', u'formalis', u'cemeteri', u'closur']
[u'coup', u'necessari', u'thai', u'uniti', u'general', u'say']
[u'coup', u'open']
[u'court', u'jail', u'repeat', u'offend', u'opal', u'jewelleri']
[u'cowra', u'dairi', u'give', u'green', u'light', u'continu']
[u'crucial', u'weather', u'chang', u'help', u'fight']
[u'daddi', u'hero', u'say', u'bindi']
[u'dairi', u'farmer', u'win', u'homebrand', u'milk', u'contract']
[u'dellacqua', u'take', u'second', u'seed', u'kolkata']
[u'deputi', u'breach', u'code', u'conduct', u'phone', u'call']
[u'deputi', u'mayor', u'continu', u'travel', u'thailand']
[u'dfat', u'upgrad', u'thailand', u'travel', u'warn']
[u'dfat', u'upgrad', u'travel', u'advisori', u'thailand']
[u'docker', u'look', u'forward', u'homebush', u'debut']
[u'doubt', u'cast', u'trujillo', u'track', u'record']
[u'downer', u'concern', u'thai', u'coup', u'develop']
[u'downer', u'express', u'outrag', u'solomon']
[u'back', u'deputi', u'porn', u'action']
[u'dragon', u'prepar', u'gasnier']
[u'weather', u'impact', u'store', u'sheep', u'sale']
[u'winter', u'blame', u'poor', u'crop', u'yield']
[u'investig', u'nation', u'park', u'outbreak']
[u'dubbo', u'aborigin', u'student', u'hostel', u'open']
[u'embassi', u'readi', u'help', u'australian', u'thailand']
[u'emot', u'farewel', u'steve', u'irwin']
[u'encourag', u'need', u'young', u'aborigin']
[u'timores', u'protect', u'visa', u'send', u'home']
[u'timor', u'polic', u'return', u'beat']
[u'experi', u'pacif', u'island', u'team', u'tour', u'europ']
[u'presid', u'appeal', u'expuls']
[u'extradit', u'appear', u'court', u'child']
[u'famili', u'group', u'oppos', u'hour', u'childcar', u'centr']
[u'famili', u'pleas', u'irwin', u'memori']
[u'farmer', u'attack', u'busi', u'group', u'water', u'plan']
[u'femal', u'space', u'tourist', u'board']
[u'melbourn', u'councillor', u'throw', u'ring']
[u'free', u'pool', u'entri', u'prolong', u'upgrad']
[u'girl', u'recov', u'home', u'alleg', u'theft']
[u'govt', u'keep', u'word', u'hous', u'develop']
[u'govt', u'move', u'protect', u'oystercatch', u'nest', u'site']
[u'govt', u'urg', u'pipelin']
[u'goward', u'contest', u'goulburn', u'elect']
[u'green', u'disappoint', u'legaci', u'hous', u'decis']
[u'green', u'want', u'week', u'disclosur', u'polit']
[u'grower', u'welcom', u'horticultur', u'code']
[u'grower', u'welcom', u'industri', u'code']
[u'hair', u'penalis', u'say', u'pakistani', u'great']
[u'health', u'servic', u'adequ']
[u'hear', u'address', u'pulp', u'emiss', u'level']
[u'henjak', u'eye', u'wallabi', u'return']
[u'heritag', u'list', u'possibl', u'manag', u'hous']
[u'highway', u'patrol', u'gunnedah']
[u'wind', u'farmer', u'woe']
[u'howard', u'concern', u'perth', u'nativ', u'titl', u'rule']
[u'iemma', u'urg', u'westpac', u'job']
[u'independ', u'candid', u'hat', u'polit']
[u'india', u'crash', u'west', u'indi']
[u'india', u'toss', u'west', u'indi']
[u'indigen', u'group', u'vow', u'protect', u'nyoongar', u'rule']
[u'industri', u'action', u'commut', u'student']
[u'ing', u'prais', u'blow', u'proport', u'king']
[u'injur', u'jockey', u'mend']
[u'intern', u'celebr', u'honour', u'steve', u'irwin']
[u'iranian', u'leader', u'attack', u'iraq', u'occupi']
[u'iraqi', u'govt', u'remov', u'saddam', u'trial', u'judg']
[u'irwin', u'open']
[u'irwin', u'conserv', u'legaci', u'rememb']
[u'irwin', u'memori', u'provid', u'closur', u'scientist']
[u'israel', u'target', u'financ', u'outlet', u'west', u'bank', u'raid']
[u'jone', u'back', u'cordingley', u'gregan', u'spot']
[u'kazakh', u'blast', u'kill']
[u'labor', u'call', u'aust', u'host', u'region', u'disast']
[u'labor', u'emphasis', u'need', u'healthi', u'posit', u'age']
[u'labor', u'releas', u'age', u'care', u'discuss', u'paper']
[u'lacklustr', u'west', u'indi', u'hand', u'victori', u'india']
[u'lacklustr', u'indi', u'hand', u'victori', u'india']
[u'larkham', u'undecid', u'european', u'tour']
[u'latest', u'wind', u'farm', u'submiss', u'wast', u'time']
[u'lawyer', u'say', u'hear', u'polit', u'motiv']
[u'leader', u'focus', u'middl', u'east', u'peac']
[u'give', u'johnson', u'glow', u'endors']
[u'life', u'sentenc', u'adelaid', u'bash', u'partner']
[u'winter', u'rainfal', u'prompt', u'farmer', u'review']
[u'charg', u'murder', u'deni', u'bail']
[u'die']
[u'children', u'escap', u'hous']
[u'kill', u'denmark', u'crash']
[u'face', u'court', u'extradit']
[u'market', u'jitter', u'lead', u'drop']
[u'menzi', u'shire', u'reject', u'communiti', u'transfer']
[u'militari', u'coup', u'forc', u'thai', u'govt']
[u'militari', u'leader', u'control', u'bloodless', u'thai']
[u'militari', u'take', u'power', u'thailand']
[u'million', u'watch', u'irwin', u'funer']
[u'mine', u'area', u'vote', u'nation', u'joyc']
[u'critic', u'burrup', u'develop']
[u'mother', u'charg', u'manslaught', u'grant', u'bail']
[u'mother', u'sentenc', u'cattl', u'duf']
[u'play', u'polit', u'child', u'drug', u'courier', u'claim']
[u'nation', u'propos', u'payrol', u'cut', u'region']
[u'netbal', u'australia', u'hope', u'settl', u'disput']
[u'council', u'candid', u'nomin', u'elect']
[u'propos', u'bald', u'hill', u'wind', u'farm']
[u'websit', u'highlight', u'plight', u'migratori']
[u'move', u'remov', u'bail', u'right', u'lifetim']
[u'farmer', u'urg', u'census', u'form']
[u'nude', u'women', u'danger', u'bomb', u'bashir']
[u'offic', u'suspend', u'hear']
[u'obstetrician', u'doctor']
[u'open', u'end', u'commit', u'ravensthorp', u'power', u'suppli']
[u'opposit', u'fear', u'cut', u'environ', u'fund']
[u'opposit', u'porn', u'contradict']
[u'pacif', u'hydro', u'scrap', u'portland', u'wind', u'farm']
[u'panesar', u'prepar', u'ash', u'abus', u'psychologist']
[u'parol', u'board', u'tell', u'breach', u'inquest', u'hear']
[u'patel', u'lawyer', u'tie']
[u'patient', u'warn', u'doctor', u'shortag', u'caus', u'delay']
[u'peretz', u'confirm', u'lebanon', u'withdraw', u'plan']
[u'person', u'experi', u'enhanc', u'opera']
[u'photo', u'nake', u'soldier', u'mishandl', u'rifl']
[u'plan', u'pilbara', u'technic', u'colleg']
[u'irwin', u'tribut']
[u'weigh', u'perth', u'titl', u'debat']
[u'polic', u'appeal', u'help', u'yass', u'truck', u'crash']
[u'polic', u'commission', u'recognis', u'plumber', u'rescu']
[u'polic', u'investig', u'tumut', u'rape', u'case']
[u'polic', u'urg', u'safe', u'holiday', u'drive']
[u'potato', u'farmer', u'hold', u'plant', u'amid', u'drought']
[u'prison', u'call', u'sniff', u'illicit', u'phone']
[u'pulp', u'compat', u'tourism', u'task', u'forc', u'say']
[u'qanta', u'union', u'agre', u'enterpris', u'agreement']
[u'question', u'ask', u'horsham', u'obstetr', u'servic']
[u'region', u'mobil', u'phone', u'coverag', u'audit']
[u'region', u'motorist', u'higher', u'petrol', u'price']
[u'rent', u'price', u'skyrocket', u'mine', u'town']
[u'research', u'work', u'regrow', u'nerv']
[u'resid', u'outlin', u'retir', u'villag', u'concern']
[u'resourc', u'rich', u'state', u'outperform', u'rest']
[u'welcom', u'profit', u'cooma', u'rout']
[u'rhodium', u'board', u'unawar', u'fund', u'misus']
[u'rocki', u'beef', u'farmer', u'remain', u'agforc', u'head']
[u'roger', u'eye', u'fourth', u'world', u'crown']
[u'saddam', u'expel', u'courtroom']
[u'galleri', u'accus', u'show', u'fake', u'rodin']
[u'sartor', u'take', u'control', u'wollongong', u'redevelop']
[u'announc', u'budget', u'fund', u'boost']
[u'scientist', u'urg', u'list', u'local', u'shrub']
[u'seahors', u'breed', u'facil', u'open', u'tourist']
[u'seek', u'pay', u'stake', u'chines', u'job', u'websit']
[u'shuttl', u'atlanti', u'land', u'thursday']
[u'skill', u'labour', u'vacanc', u'rise']
[u'slump', u'hit', u'cattl', u'export']
[u'snowi', u'shire', u'mayor', u'give', u'term']
[u'stanhop', u'confirm', u'plan', u'outsourc', u'screenact']
[u'stat', u'gambl', u'busi']
[u'storm', u'cloud', u'studi', u'improv', u'weather']
[u'strong', u'econom', u'growth', u'forecast']
[u'studi', u'find', u'read', u'skill', u'depend', u'gene']
[u'swan', u'expect', u'boost', u'home', u'grind']
[u'swan', u'unchang', u'docker', u'clash']
[u'sydney', u'zoo', u'battl', u'tourist', u'dollar']
[u'research', u'work', u'reduc', u'jack', u'jumper', u'sting']
[u'terror', u'accus', u'deni', u'bail']
[u'thai', u'coup', u'leader', u'address', u'public']
[u'thai', u'coup', u'leader', u'seal', u'northern', u'border']
[u'thai', u'coup', u'leader', u'announc', u'polici']
[u'thai', u'coup', u'shake', u'financi', u'market']
[u'thai', u'militari', u'take', u'control', u'bangkok']
[u'thai', u'militari', u'vow', u'week']
[u'thai', u'polit', u'unrest', u'lead', u'coup']
[u'thousand', u'farewel', u'steve', u'irwin']
[u'tiger', u'feel', u'pressur', u'favourit']
[u'tiger', u'notic', u'pressur', u'favourit']
[u'toll', u'evad', u'need', u'penalis', u'roozenda']
[u'tourism', u'confer', u'hop', u'boost', u'indigen']
[u'holder', u'return', u'timor', u'confirm']
[u'trade', u'repres', u'meet', u'cairn']
[u'troop', u'prepar', u'afghan', u'mission']
[u'charg', u'shoot', u'train']
[u'stand', u'trial', u'terror', u'charg']
[u'rescu', u'gippsland', u'coast']
[u'offic', u'deni', u'push', u'suspect', u'stair']
[u'violent', u'protest', u'continu', u'hungari']
[u'vline', u'promis', u'improv', u'punctual']
[u'welcom', u'rain', u'fall', u'wimmera', u'malle']
[u'westpac', u'cut', u'decis', u'month', u'away']
[u'wholesal', u'concern', u'code', u'conduct']
[u'windsor', u'criticis', u'busi', u'council', u'water', u'plan']
[u'wirrpanda', u'give', u'time', u'prove', u'fit']
[u'wirrpanda', u'unlik', u'play', u'preliminari', u'final']
[u'head', u'say', u'trade', u'talk', u'salvag']
[u'zuma', u'corrupt', u'charg', u'throw']
[u'arrest', u'boy', u'sexual', u'assault']
[u'activist', u'push', u'intern', u'peac']
[u'alonso', u'wonder', u'goal', u'sink', u'newcastl']
[u'critic', u'govt', u'childcar', u'plan']
[u'asia', u'pacif', u'tell', u'ramp', u'fight']
[u'extend', u'darfur', u'forc', u'mandat']
[u'aust', u'hop', u'kick', u'start', u'trade', u'talk']
[u'beazley', u'dismiss', u'faction', u'dalek', u'comment']
[u'beazley', u'fend', u'faction', u'critic']
[u'budapest', u'brace', u'clash']
[u'bush', u'vow', u'hunt', u'lade']
[u'busi', u'warn', u'avoid', u'chain', u'letter', u'scam']
[u'california', u'sue', u'maker', u'global', u'warm']
[u'call', u'intern', u'peac']
[u'chavez', u'tell', u'bush', u'devil']
[u'closer']
[u'closer']
[u'cocain', u'open']
[u'cole', u'myer', u'announc', u'cut']
[u'cole', u'myer', u'profit']
[u'cole', u'myer', u'job']
[u'cole', u'job']
[u'cyclist', u'kill', u'collis', u'truck']
[u'debri', u'unlik', u'delay', u'atlanti']
[u'ellison', u'congratul', u'cocain', u'haul']
[u'faction', u'dalek', u'refus', u'respond']
[u'fli', u'doctor', u'hope', u'expand', u'men', u'health', u'program']
[u'minist', u'blast', u'parti', u'faction']
[u'labor', u'minist', u'slam', u'faction']
[u'serious', u'injur', u'crash']
[u'phillip', u'island', u'golf', u'cours', u'reject']
[u'govt', u'consid', u'nativ', u'titl', u'appeal']
[u'govt', u'forc', u'timores', u'famili', u'return', u'dili']
[u'health', u'winner', u'budget']
[u'howard', u'urg', u'compromis', u'doha', u'round']
[u'hungari', u'govern', u'seek', u'talk', u'opposit']
[u'hungari', u'pledg', u'riot', u'crackdown']
[u'icrc', u'visit', u'latest', u'guantanamo', u'detaine']
[u'india', u'hold', u'emerg', u'meet', u'tackl', u'polio']
[u'irwin', u'chariti', u'receiv', u'boost']
[u'irwin', u'fan', u'donat', u'wildlif', u'warrior']
[u'isra', u'firm', u'agre', u'shun', u'skinni', u'model']
[u'japan', u'parliament', u'leader', u'visit', u'china']
[u'jerusalem', u'lose', u'translat']
[u'justic', u'minist', u'prais', u'author', u'involv']
[u'kewel', u'knife']
[u'labor', u'criticis', u'childcar', u'shortag', u'quick']
[u'accus', u'work', u'saddam', u'regim', u'arrest']
[u'mayn', u'recommend', u'hospira', u'takeov']
[u'million', u'tune', u'irwin', u'farewel']
[u'supernova', u'discoveri', u'break', u'rule']
[u'respons', u'criticis', u'faction', u'leader']
[u'opal', u'semi']
[u'perth', u'nativ', u'titl', u'claim', u'wont', u'affect', u'resid']
[u'perth', u'nativ', u'titl', u'decis', u'signific']
[u'polic', u'investig', u'riverland', u'death']
[u'pont', u'back', u'hair', u'comeback']
[u'pope', u'urg', u'read', u'controversi', u'comment']
[u'herd', u'bolster', u'cattl']
[u'polic', u'trial', u'revis', u'safe', u'drive', u'polici']
[u'record', u'crowd', u'expect', u'melbourn']
[u'remain', u'timores', u'refuge', u'return', u'home']
[u'remain', u'earliest', u'child', u'ethiopia']
[u'remot', u'amazon', u'town', u'wireless', u'internet']
[u'ruddock', u'jump', u'nativ', u'titl', u'comment']
[u'seeney', u'admit', u'dissatisfact', u'coalit']
[u'shelley', u'kovco', u'make', u'privaci', u'plea', u'media']
[u'arrest', u'cocain', u'ecstasi', u'bust']
[u'sixteen', u'injur', u'detain', u'night']
[u'smoker', u'higher', u'risk', u'studi']
[u'sydney', u'point', u'knight']
[u'thai', u'coup', u'leader', u'claim', u'king', u'endors']
[u'thai', u'king', u'applaud', u'coup']
[u'thailand', u'work', u'hour', u'coup']
[u'thai', u'militari', u'coup', u'unjustifi']
[u'thai', u'opposit', u'demand', u'elect', u'month']
[u'thousand', u'demand', u'hungarian', u'stand']
[u'kill', u'tasmania', u'road', u'crash']
[u'tighten', u'sale', u'pseudoephedrin', u'success']
[u'gear', u'present', u'hurt', u'accid']
[u'tortur', u'rampant', u'iraqi', u'detent', u'centr', u'say']
[u'state', u'solut', u'refuge', u'problem', u'israel']
[u'brand', u'thai', u'coup', u'unjustifi']
[u'disappoint', u'thailand', u'coup']
[u'stock', u'higher']
[u'develop', u'plan', u'mudge', u'district']
[u'wind', u'danger', u'warn', u'victoria']
[u'abattoir', u'foreign', u'worker', u'plan', u'stall']
[u'abba', u'vow', u'israel', u'recognit']
[u'abram', u'tank', u'arriv', u'duti']
[u'drug', u'support', u'network', u'open', u'fund']
[u'cull', u'brumbi', u'near', u'townsvill']
[u'alic', u'council', u'draft', u'letter', u'approv']
[u'andrew', u'flag', u'workchoic', u'finetun']
[u'antarct', u'ozon', u'hole', u'close', u'record', u'size']
[u'appoint', u'receiv', u'feltex']
[u'appl', u'product', u'doubl']
[u'aussi', u'bat', u'malaysia']
[u'aussi', u'exit', u'kolkata', u'open']
[u'aussi', u'look', u'engin', u'beij']
[u'aust', u'govt', u'take', u'deliveri', u'tank']
[u'australia', u'struggl', u'india']
[u'bald', u'killer', u'appeal', u'decis', u'sensibl', u'fair']
[u'bald', u'teen', u'murder', u'lose', u'appeal']
[u'bali', u'bomber', u'file', u'death', u'appeal']
[u'ballarat', u'face', u'stage', u'water', u'restrict']
[u'basin', u'mine', u'futur', u'uncertain', u'say']
[u'beazley', u'back', u'possibl', u'appeal', u'nativ', u'titl']
[u'bellami', u'anfield', u'tunnel', u'fraca']
[u'bennett', u'quiet', u'confid', u'success', u'dog']
[u'breast', u'cancer', u'suffer', u'settl', u'court']
[u'bronco', u'bulldog', u'decid', u'forward']
[u'bronco', u'buri', u'bulldog', u'record', u'comeback']
[u'broom', u'emerg', u'servic', u'defend', u'respons', u'mango']
[u'brothel', u'owner', u'fight', u'evict', u'order']
[u'bundaberg', u'hospit', u'nurs', u'director', u'remain']
[u'burton', u'mcleod', u'risk', u'say', u'craig']
[u'bush', u'hail', u'detaine', u'interrog', u'deal']
[u'busi', u'usual', u'feltex', u'employe']
[u'cairn', u'group', u'call', u'doha', u'trade', u'talk']
[u'campaign', u'launch', u'offic', u'west']
[u'centr', u'plan', u'bourk', u'attract', u'medic']
[u'closer']
[u'closer']
[u'defend', u'candid', u'refus', u'talk']
[u'complain', u'stuart', u'poll', u'booth', u'decis']
[u'coff', u'council', u'push', u'resolut', u'hick', u'case']
[u'desper', u'pulp', u'fight']
[u'controversi', u'fyshwick', u'retail', u'project', u'approv']
[u'conwoman', u'get', u'year', u'jail']
[u'woman', u'jodi', u'harri', u'jail']
[u'cooper', u'surpris', u'storm', u'underdog']
[u'council', u'reject', u'phillip', u'island', u'develop', u'propos']
[u'coup', u'leader', u'tighten', u'hold', u'thailand']
[u'court', u'rais', u'concern', u'sentenc']
[u'crash', u'driver', u'micro', u'sleep', u'report']
[u'student', u'associ', u'take']
[u'custom', u'seiz', u'nitschk', u'book']
[u'damag', u'build', u'expect', u'strong', u'wind']
[u'deal', u'reach', u'anti', u'terror', u'law']
[u'deal', u'strike', u'terror', u'suspect', u'interrog']
[u'urg', u'build', u'central', u'hobart']
[u'market', u'stall', u'founder', u'die']
[u'test', u'cattl', u'duf', u'case']
[u'docker', u'face', u'moment', u'truth']
[u'downer', u'accus', u'bulli', u'tactic', u'solomon']
[u'downer', u'challeng', u'follow', u'aust', u'exampl']
[u'downer', u'express', u'outrag', u'solomon', u'counterpart']
[u'downer', u'hold', u'talk', u'solomon', u'counterpart']
[u'downer', u'play', u'tough', u'solomon', u'turmoil']
[u'drink', u'driver', u'jail', u'fatal', u'crash']
[u'drought', u'forc', u'murray', u'farmer', u'land']
[u'esplanad', u'tower', u'keep', u'plan', u'rule']
[u'execut', u'christian', u'spark', u'riot']
[u'execut', u'spark', u'riot', u'indonesia']
[u'fail', u'suicid', u'bomber', u'sentenc', u'hang']
[u'fan', u'final', u'farewel', u'brock']
[u'farmer', u'take', u'environment', u'reform', u'survey']
[u'fear', u'econom', u'slowdown', u'market']
[u'euro', u'tour', u'spot', u'grab', u'connolli']
[u'flinder', u'villa', u'final', u'tourism', u'award']
[u'floor', u'compani', u'fin', u'forklift', u'accid']
[u'flystrik', u'plagu', u'sheep']
[u'forget', u'been', u'say', u'boss']
[u'callid', u'member', u'resign', u'seeni']
[u'deputi', u'mayor', u'guilti', u'deliber']
[u'gibson', u'confirm', u'gympi', u'nation']
[u'gibson', u'look', u'form', u'adelaid']
[u'gibson', u'form', u'adelaid']
[u'gold', u'coast', u'nativ', u'titl', u'claim', u'land', u'grab']
[u'gold', u'coast', u'schooli', u'criticis', u'alcohol', u'free']
[u'govt', u'deni', u'cave']
[u'govt', u'deni', u'soften', u'law']
[u'govt', u'grant', u'extens', u'illawarra']
[u'govt', u'modifi', u'workchoic', u'protect', u'sick', u'leav']
[u'govt', u'refus', u'hawk', u'nest', u'develop', u'koala']
[u'govt', u'fund', u'destruct', u'crazi', u'coloni']
[u'goward', u'preselect', u'goulburn', u'seat']
[u'gunnedah', u'council', u'repair', u'pool', u'leak']
[u'water', u'wait', u'price', u'consid', u'eildon']
[u'hama', u'reject', u'israel', u'recognit', u'option']
[u'hitchhik', u'murder', u'parol', u'revok']
[u'tech', u'german', u'train', u'crash', u'kill']
[u'posit', u'dentist', u'patient', u'contact']
[u'hospit', u'staff', u'fault', u'colon', u'case', u'coron']
[u'huddersfield', u'sign', u'tiger', u'lolesi']
[u'human', u'wast', u'safe', u'food', u'crop', u'fertilis']
[u'hunter', u'hous', u'program', u'cut', u'greenhous']
[u'icac', u'investig', u'liber', u'phone', u'call', u'smith']
[u'issu', u'warn', u'commod', u'boom']
[u'imperi', u'stride', u'contest', u'melbourn']
[u'india', u'stand', u'australia']
[u'investor', u'launch', u'class', u'action', u'westpoint']
[u'iran', u'insist', u'nuclear', u'program', u'peac']
[u'iran', u'maintain', u'peac', u'nuclear', u'stanc']
[u'commiss', u'meet', u'toowoomba']
[u'itali', u'end', u'mission', u'iraq']
[u'japan', u'look', u'limit', u'propos']
[u'johnston', u'shire', u'fear', u'cyclon', u'say']
[u'kalgoorli', u'push', u'quick', u'eyr', u'tender']
[u'kilcoy', u'poet', u'win', u'award']
[u'killer', u'sentenc', u'polit', u'motiv', u'opposit']
[u'king', u'formal', u'endors', u'thai', u'coup', u'leader']
[u'labor', u'attack', u'workchoic', u'chang']
[u'labour', u'claim', u'telstra', u'hang', u'rural', u'aust']
[u'london', u'bomb', u'respons', u'expos', u'flaw', u'plan']
[u'long', u'wait', u'nhill', u'hospit', u'final']
[u'die', u'denmark', u'crash']
[u'escap', u'concern', u'babi', u'court', u'tell']
[u'river', u'murray', u'polic']
[u'jail', u'bondag', u'session', u'death']
[u'jail', u'manslaught', u'violent']
[u'kill', u'goldfield', u'rock', u'fall']
[u'mayor', u'defend', u'hale', u'bridg', u'consult']
[u'mayor', u'say', u'town', u'shock', u'fatal']
[u'melbourn', u'teen', u'get', u'year', u'friend', u'death']
[u'mine', u'compani', u'fin', u'workplac', u'death']
[u'minist', u'vow', u'implement', u'babi', u'death', u'report']
[u'miss', u'canoeist']
[u'momentum', u'gather', u'orang', u'radiotherapi', u'unit']
[u'monopoli', u'question', u'amid', u'probe', u'extens']
[u'buffalo', u'chalet', u'close', u'poor', u'season']
[u'munc', u'appli', u'race', u'spring', u'carniv']
[u'murray', u'sunset', u'head', u'privat', u'properti']
[u'music', u'director', u'crash', u'driver', u'plead', u'guilti']
[u'releas', u'canberra', u'woman', u'dead']
[u'name', u'kill', u'truck', u'collis']
[u'newcastl', u'mayor', u'concern', u'safeti', u'rail']
[u'home', u'sale', u'increas']
[u'winton', u'memori', u'rememb', u'ansett', u'crash']
[u'nineteen', u'afghan', u'worker', u'kill', u'ambush']
[u'evid', u'charg', u'dentist', u'coron', u'say']
[u'bushfir', u'season', u'start', u'earli']
[u'central', u'coast', u'get', u'tougher', u'water', u'restrict']
[u'govt', u'give', u'farm', u'environ', u'research']
[u'midwiv', u'fight', u'medicar', u'chang', u'rural']
[u'hoon', u'vehicl', u'confisc', u'polic']
[u'stormi', u'weather', u'yield', u'result']
[u'nun', u'open', u'environ', u'friend', u'hous', u'public']
[u'opal', u'gold', u'medal', u'match']
[u'oppon', u'confid', u'hale', u'bridg']
[u'orford', u'replac', u'gower', u'xiii']
[u'ottey', u'back', u'jone', u'dope']
[u'oxfam', u'report', u'show', u'rise', u'arm', u'trade']
[u'photo', u'show', u'thai', u'coup', u'leader', u'meet', u'king']
[u'plan', u'more', u'ethanol', u'plant']
[u'pmwork', u'open']
[u'polic', u'driver', u'come', u'forward', u'dapto']
[u'polic', u'protest', u'hear']
[u'polic', u'nixon', u'resign']
[u'polit', u'perth', u'nativ', u'titl', u'success']
[u'pope', u'set', u'meet', u'calm', u'tension', u'speech']
[u'port', u'maquari', u'zone', u'push', u'step', u'ahead']
[u'propos', u'rang', u'cross', u'toll']
[u'health', u'restructur', u'welcom']
[u'warn', u'north', u'west', u'fraudul', u'footbal', u'agent']
[u'raper', u'give', u'march', u'order']
[u'report', u'urg', u'better', u'ordin', u'servic']
[u'research', u'develop', u'treatment', u'hard', u'heal']
[u'research', u'help', u'onlin', u'shopper', u'improv', u'diet']
[u'riverina', u'murray', u'season', u'begin', u'earli']
[u'riverina', u'urg', u'alert', u'meningococc']
[u'river', u'murray', u'tree', u'makeov', u'govt', u'budget']
[u'roar', u'unit', u'share', u'point', u'brisban']
[u'roger', u'drop', u'beij', u'beckon']
[u'roger', u'time', u'trial', u'grip', u'break']
[u'rural', u'doctor', u'associ', u'call', u'region']
[u'rural', u'mum', u'like', u'access']
[u'rural', u'concern', u'farm', u'health', u'budget']
[u'budget', u'ignor', u'countri', u'area', u'kerin']
[u'salt', u'nightclub', u'murder', u'jail']
[u'sandown', u'prepar', u'brock', u'memori']
[u'school', u'senior', u'spend', u'formal', u'research']
[u'scud', u'prim', u'davi', u'dogfight']
[u'offend', u'face', u'danger', u'crimin']
[u'share', u'market', u'slip', u'sign', u'downturn']
[u'shark', u'coach', u'raper', u'sack']
[u'industri', u'meet', u'aim', u'lift', u'snow', u'tourism']
[u'socceroo', u'hero', u'fete']
[u'south', u'west', u'break', u'rare', u'metal', u'market']
[u'speed', u'limit', u'reduc', u'barossa']
[u'spencer', u'gulf', u'ferri', u'ticket', u'cost']
[u'strong', u'wind', u'damag', u'crop', u'hous']
[u'strong', u'wind', u'caus', u'damag', u'melbourn']
[u'strong', u'wind', u'damag', u'build']
[u'student', u'teacher', u'remain', u'hospit', u'gastro']
[u'sunbeam', u'recal', u'dri', u'fruit', u'product']
[u'suspens', u'appropri', u'school', u'bash', u'dept']
[u'swan', u'docker', u'reach', u'grand', u'final']
[u'swan', u'look', u'intimid', u'docker']
[u'cano', u'take', u'home', u'dead', u'award']
[u'thai', u'coup', u'leader', u'consolid', u'power']
[u'thai', u'demonstr', u'flout', u'protest']
[u'thai', u'militari', u'tighten', u'grip']
[u'toad', u'invas', u'favour', u'croc']
[u'tortur', u'rampant', u'iraqi', u'detent', u'centr']
[u'tower', u'darwin', u'land', u'valu', u'develop']
[u'trade', u'talk', u'fail', u'resolv', u'deadlock']
[u'dead', u'hospit', u'melbourn']
[u'eas', u'airport', u'secur', u'restrict']
[u'unit', u'afford', u'slip', u'carrick']
[u'billionair', u'say', u'forb']
[u'review', u'thailand']
[u'threaten', u'bomb', u'pakistan', u'musharaf']
[u'vail', u'achiev', u'trade', u'talk', u'opposit']
[u'vanston', u'maintain', u'stanc', u'voluntari', u'euthanasia']
[u'vatican', u'sadden', u'indonesia', u'execut']
[u'employ', u'urg', u'cut', u'workcov', u'premium']
[u'opposit', u'accus', u'govt', u'budget']
[u'seek', u'goldfield', u'world', u'heritag', u'list']
[u'trial', u'auto', u'machin']
[u'virgin', u'money', u'battl', u'global', u'warm']
[u'fruit', u'grower', u'welcom', u'mandatori', u'code']
[u'waikeri', u'medic', u'centr', u'get', u'boost', u'hour']
[u'crime', u'suspect', u'appeal', u'extradit', u'trial']
[u'marathon', u'bell', u'group', u'trial', u'end']
[u'undecid', u'appeal', u'nativ', u'titl', u'claim']
[u'wild', u'weather', u'produc', u'record', u'wave']
[u'wirrpanda', u'rule', u'eagl']
[u'head', u'warn', u'chang', u'singl', u'desk']
[u'challeng', u'vie', u'sydney', u'tourist', u'dollar']
[u'dead', u'german', u'train', u'crash']
[u'iraqi', u'troop', u'need', u'baghdad', u'say']
[u'radio', u'network', u'branch', u'tasmania']
[u'aborigin', u'leader', u'claim', u'nativ', u'titl', u'desert']
[u'daylight', u'save', u'kick', u'octob']
[u'allstat', u'lodg', u'appeal', u'beaconsfield', u'gold']
[u'alonso', u'determin', u'leav', u'renault', u'high']
[u'flag', u'solut', u'perth', u'doctor', u'shortag']
[u'atlanti', u'astronaut', u'collaps', u'welcom', u'home']
[u'australian', u'board', u'miss', u'chopper']
[u'beazley', u'attack', u'back', u'nativ', u'titl', u'appeal']
[u'black', u'nationalist', u'leader', u'step']
[u'brave', u'bronco', u'overrun', u'bulldog']
[u'call', u'govt', u'provid', u'nation', u'dental', u'care']
[u'canberra', u'princip', u'save', u'school', u'tshirt']
[u'cancer', u'survivor', u'satellit']
[u'capirossi', u'clinch', u'japan', u'pole']
[u'unit', u'target', u'gunshot', u'sydney']
[u'church', u'renew', u'indigen', u'justic', u'digniti']
[u'clean', u'continu', u'pacif', u'highway', u'part']
[u'closer']
[u'compani', u'find', u'increas', u'sand', u'reserv']
[u'conserv', u'group', u'prais', u'patagonian', u'toothfish']
[u'costello', u'interfer', u'muslim', u'govern', u'labor']
[u'costello', u'address', u'muslim', u'world', u'christian']
[u'costello', u'urg', u'muslim', u'nation', u'separ', u'church']
[u'coupl', u'line', u'passion', u'stilt']
[u'croc', u'wildcat', u'open']
[u'crow', u'eagl', u'line', u'shoot', u'swan']
[u'debnam', u'vow', u'back', u'preselect', u'battl']
[u'disabl', u'advoc', u'urg', u'travel', u'subsidi', u'carer']
[u'diver', u'claim', u'miss', u'soviet', u'ship']
[u'eagl', u'scrape', u'grand', u'final']
[u'eagl', u'grand', u'final', u'replay']
[u'timor', u'portug', u'polic', u'ramo']
[u'minist', u'vote', u'estonian', u'presid']
[u'figur', u'peopl', u'stay']
[u'flegg', u'play', u'report', u'coalit', u'rift']
[u'teen', u'charg', u'school']
[u'franc', u'probe', u'lade', u'death', u'claim']
[u'govt', u'fail', u'invest', u'mine', u'infrastructur']
[u'govt', u'turn', u'latest', u'applic', u'croc', u'safari']
[u'govt', u'urg', u'rethink', u'anti', u'terror', u'law']
[u'goward', u'step', u'move', u'elect', u'campaign']
[u'hezbollah', u'chief', u'attend', u'victori', u'ralli']
[u'hezbollah', u'chief', u'emerg', u'victori', u'ralli']
[u'hezbollah', u'declar', u'victori', u'ralli']
[u'hungarian', u'protest', u'biggest', u'demonstr']
[u'industri', u'blaze', u'spark', u'evacu']
[u'investig', u'begin', u'german', u'train', u'crash']
[u'iraq', u'servo', u'blast', u'kill', u'dozen']
[u'japanes', u'satellit', u'studi', u'sun', u'magnet', u'field']
[u'johnson', u'want', u'crackdown', u'dope', u'taint', u'coach']
[u'katter', u'claim', u'support', u'polit', u'forc']
[u'king', u'clear', u'dragon']
[u'king', u'doubt', u'clash', u'dragon']
[u'kosmina', u'see', u'stupid']
[u'landi', u'prepar', u'appeal', u'dope', u'charg']
[u'lebanes', u'troop', u'deploy', u'israel', u'border']
[u'bowl', u'australia', u'seri', u'final']
[u'legal', u'say', u'polic', u'inquiri', u'video', u'fuel']
[u'maradona', u'poke', u'hewitt']
[u'marin', u'jet', u'stalem']
[u'melbourn', u'charg', u'murder']
[u'oper', u'suspend', u'man', u'death']
[u'mushtaq', u'clinch', u'sussex', u'titl']
[u'nativ', u'titl', u'rule', u'boost', u'confid']
[u'navi', u'search', u'soldier', u'unmark', u'grave']
[u'miss', u'outback']
[u'korea', u'plan', u'plutonium', u'nuclear', u'arm']
[u'ogradi', u'gear', u'world', u'titl']
[u'compani', u'deni', u'fate', u'port', u'stanvac', u'refineri']
[u'opposit', u'back', u'decis', u'flexi']
[u'opposit', u'pledg', u'nation', u'dental', u'scheme']
[u'opposit', u'respond', u'costello', u'muslim', u'speech']
[u'opposit', u'urg', u'support', u'plan', u'seiz', u'drink']
[u'organis', u'hope', u'rodeo', u'help', u'local', u'forget']
[u'owner', u'damag', u'factori', u'pledg']
[u'pacif', u'highway', u'close', u'petrol', u'tanker', u'crash']
[u'pacif', u'highway', u'part', u'open', u'petrol']
[u'pacif', u'highway', u'remain', u'close', u'petrol', u'tanker']
[u'pair', u'guilti', u'illeg', u'captur', u'patagonian']
[u'palestinian', u'disatisfi', u'hama', u'govt']
[u'petrol', u'tanker', u'overturn', u'pacif', u'highway']
[u'plan', u'law', u'reduc', u'sperm', u'donor', u'number']
[u'applaud', u'youth', u'group', u'work']
[u'polic', u'chief', u'say', u'treatment', u'see', u'inquiri', u'video']
[u'polic', u'inquiri', u'video', u'ground']
[u'polic', u'interview', u'bodi', u'discoveri']
[u'polic', u'investig', u'fatal', u'traffic', u'accid']
[u'pont', u'clear', u'heat', u'discuss']
[u'pope', u'set', u'meet', u'calm', u'tension']
[u'privat', u'detect', u'admit', u'work', u'exclus']
[u'hope', u'feder', u'fund', u'water', u'pipelin']
[u'red', u'brumbi', u'waratah', u'defi', u'forc']
[u'research', u'develop', u'treatment', u'hard', u'heal']
[u'safin', u'youzhni', u'russia', u'command']
[u'scud', u'crush', u'hewitt', u'brink']
[u'search', u'mission', u'find', u'miss', u'trekker']
[u'smith', u'step', u'deputi', u'posit']
[u'storm', u'book', u'grand', u'final', u'berth']
[u'storm', u'dragon']
[u'super', u'sergio', u'stun', u'american', u'ryder']
[u'survey', u'fuel', u'call', u'nation', u'dental', u'care', u'scheme']
[u'suspend', u'enrich', u'unaccept', u'say', u'iranian']
[u'swan', u'better', u'place', u'time']
[u'sydney', u'ferri', u'probe', u'crash']
[u'taliban', u'tougher', u'expect']
[u'govt', u'wont', u'interfer', u'site', u'fight']
[u'thai', u'coup', u'leader', u'mull', u'appoint', u'interim']
[u'thai', u'govt', u'announc', u'interim']
[u'thai', u'junta', u'compil', u'leadership', u'shortlist']
[u'thai', u'junta', u'vow', u'action', u'foreign', u'media']
[u'thai', u'militari', u'ruler', u'meet', u'choos']
[u'thai', u'polic', u'injur', u'bomb', u'attack']
[u'thousand', u'protest', u'taiwan', u'presid']
[u'tiger', u'overpow', u'taipan']
[u'senat', u'follow', u'parti', u'disciplin', u'joyc']
[u'gear', u'present', u'take', u'step', u'crash']
[u'train', u'crash', u'kill', u'germani']
[u'gippsland', u'crash']
[u'kill', u'pakistan', u'bike', u'bomb', u'blast']
[u'union', u'happi', u'compani', u'penalti', u'worker']
[u'broaden', u'pressur', u'push', u'sudan']
[u'prepar', u'play', u'role', u'india', u'pakistan', u'peac']
[u'stand', u'firm', u'condit', u'despit', u'hama']
[u'stay', u'aliv', u'doubl', u'victori']
[u'stock', u'fall', u'amid', u'econom', u'jitter']
[u'vaughan', u'back', u'select', u'unfit', u'player']
[u'death', u'investig', u'underway']
[u'webb', u'leader', u'california']
[u'yahoo', u'host', u'hacker', u'festiv']
[u'abba', u'resum', u'uniti', u'govern', u'talk', u'hama']
[u'abduct', u'cross', u'worker', u'ethiopia', u'releas']
[u'back', u'costello', u'separ', u'islam', u'church']
[u'american', u'kill', u'iraq', u'palac', u'base']
[u'anger', u'gunnedah', u'coal']
[u'anti', u'protest', u'draw', u'thousand', u'manchest']
[u'argentina', u'knock', u'australia', u'davi']
[u'aussi', u'bat', u'final']
[u'aussi', u'crush', u'windi', u'seri']
[u'aussi', u'windi', u'victori']
[u'aussi', u'wood', u'sixth', u'women', u'road', u'race']
[u'australian', u'muslim', u'begin', u'month', u'long', u'ramadan']
[u'australian', u'board', u'miss', u'chopper']
[u'australia', u'windi', u'seek', u'champion', u'trophi', u'boost']
[u'author', u'search', u'caus', u'industri']
[u'weather', u'hamper', u'nepal', u'helicopt', u'search']
[u'blair', u'appeal', u'labour', u'stop', u'infight']
[u'blusteri', u'weather', u'knock', u'canberra', u'power']
[u'british', u'compos', u'malcolm', u'arnold', u'die']
[u'broom', u'tourist', u'suffer', u'violent', u'assault']
[u'bushfir', u'destroy', u'home']
[u'busi', u'like', u'eagl', u'prim']
[u'call', u'grow', u'conserv', u'polit']
[u'capirossi', u'win', u'japanes', u'motogp']
[u'cheat', u'cycl', u'team', u'tough']
[u'cheltenham', u'sale', u'opposit', u'continu']
[u'childer', u'backpack', u'hostel', u'sale']
[u'closer']
[u'concern', u'ambul', u'fee', u'interst']
[u'dental', u'associ', u'doubt', u'labor', u'provid', u'dental']
[u'diarra', u'earn', u'real', u'victori', u'beti']
[u'dive', u'industri', u'say', u'irwin', u'death', u'wont', u'impact', u'trade']
[u'dravid', u'urg', u'batsmen', u'lift', u'game']
[u'claim', u'place', u'comeback', u'race']
[u'damag', u'adelaid', u'warehous']
[u'emerg', u'south', u'sydney']
[u'firefight', u'battl', u'kooralbyn', u'blaze']
[u'firefight', u'battl', u'blaze', u'overnight']
[u'fire', u'burn', u'front', u'coast']
[u'femal', u'space', u'tourist', u'savour', u'singl']
[u'franc', u'unabl', u'confirm', u'lade', u'claim']
[u'franc', u'unabl', u'confirm', u'lade', u'death', u'report']
[u'fuel', u'price', u'hike', u'perth', u'unjustifi']
[u'gambian', u'presid', u'jammeh', u'win', u'term']
[u'garcia', u'magic', u'casey', u'inspir', u'europ']
[u'govt', u'attack', u'sydney', u'ferri', u'worker', u'drug']
[u'govt', u'back', u'optus', u'chief']
[u'green', u'senat', u'call', u'religi', u'group', u'come']
[u'group', u'want', u'annual', u'environ', u'report', u'pulp']
[u'hingi', u'face', u'poutchkova', u'kolkata', u'final']
[u'hobart', u'woman', u'return', u'home', u'radic', u'surgeri']
[u'home', u'lose', u'bushfir']
[u'hungarian', u'hold', u'ralli']
[u'india', u'join', u'search', u'helicopt']
[u'industri', u'survey', u'find', u'grow', u'support', u'pulp']
[u'iraq', u'blast', u'kill']
[u'iraqi', u'polic', u'head', u'colleagu']
[u'iraq', u'trigger', u'terror', u'say', u'intellig']
[u'katter', u'claim', u'support', u'conserv', u'parti']
[u'king', u'sixer', u'song']
[u'labor', u'claim', u'victori', u'stuart', u'elect']
[u'lampard', u'doubl', u'put', u'chelsea']
[u'die', u'veer', u'road']
[u'free', u'ditch', u'help', u'passer']
[u'mauresmo', u'kuznetsova', u'china', u'decid']
[u'milan', u'win', u'end']
[u'militari', u'leader', u'scale', u'thai', u'presenc']
[u'miss', u'helicopt', u'nepal']
[u'warn', u'spirit', u'campaign', u'public']
[u'mummifi', u'dog', u'buri', u'owner']
[u'muslim', u'council', u'presid', u'back', u'costello']
[u'nation', u'park', u'visitor', u'escort', u'road']
[u'nation', u'mourn', u'deputi', u'premier']
[u'nato', u'forc', u'rebel', u'kill', u'afghanistan']
[u'nepal', u'politician', u'assassin']
[u'law', u'limit', u'polic', u'power', u'charg']
[u'offici', u'sceptic', u'lade', u'death', u'claim']
[u'opal', u'world', u'championship']
[u'opposit', u'alarm', u'prison', u'access', u'drug']
[u'opposit', u'attack', u'govt', u'telstra', u'board', u'decis']
[u'opposit', u'vow', u'perform', u'elect']
[u'palestinian', u'uniti', u'talk', u'stall', u'abba']
[u'polic', u'admit', u'miss', u'drug', u'haul']
[u'polic', u'unravel', u'high', u'altitud', u'icon', u'robberi']
[u'power', u'restor', u'home', u'affect', u'storm']
[u'princ', u'charless', u'aid', u'boil', u'stori']
[u'privat', u'detect', u'admit', u'work', u'exclus']
[u'qanta', u'defend', u'price', u'grand', u'final', u'flight']
[u'leader', u'dismiss', u'katter', u'conserv', u'parti']
[u'ranger', u'trap', u'croc', u'fish', u'spot']
[u'replac', u'troop', u'bind', u'solomon']
[u'rescuer', u'continu', u'nepal', u'helicopt', u'search']
[u'research', u'want', u'help', u'mum', u'post']
[u'resid', u'evacu', u'wind', u'bushfir']
[u'saudi', u'govt', u'deni', u'laden', u'death', u'report']
[u'search', u'resum', u'miss', u'chopper', u'nepal']
[u'secker', u'hit', u'preselect']
[u'spaniard', u'corretja', u'announc', u'retir']
[u'storm', u'jubil', u'despit', u'crocker', u'injuri']
[u'storm', u'sweat', u'lucki', u'charm']
[u'strong', u'wind', u'fire', u'wreak', u'havoc', u'south', u'east']
[u'strong', u'wind', u'prompt', u'hundr', u'call']
[u'studi', u'fuel', u'govt', u'move', u'drug']
[u'teenag', u'die', u'accid']
[u'teen', u'hospitalis', u'assault']
[u'thousand', u'flee', u'indian', u'flood']
[u'thousand', u'peac', u'protest', u'budapest']
[u'teen', u'kill', u'central', u'west', u'accid']
[u'total', u'extend']
[u'train', u'secur', u'concern', u'prompt', u'creation']
[u'union', u'welcom', u'task', u'forc', u'combat', u'drug']
[u'vail', u'deni', u'scrutini', u'prompt', u'trade', u'swap']
[u'vail', u'deni', u'cole', u'inquiri', u'prompt', u'portfolio', u'chang']
[u'vail', u'swap', u'portfolio']
[u'vail', u'swap', u'trade', u'portfolio', u'transport']
[u'victori', u'continu', u'win']
[u'vintag', u'rev', u'year']
[u'fan', u'flock', u'grand', u'final']
[u'webb', u'eye', u'fourth', u'season']
[u'wild', u'weather', u'keep', u'busi', u'victoria']
[u'wirrpanda', u'like', u'grand', u'final']
[u'world', u'heart', u'encourag', u'healthi', u'live']
[u'yusuf', u'islam', u'criticis', u'pope', u'comment']
[u'run', u'woman', u'lie', u'highway']
[u'abar', u'predict', u'record', u'commod', u'export']
[u'radio', u'extend']
[u'aborigin', u'servic', u'liquid']
[u'personnel', u'welcom', u'home']
[u'afghanistan', u'troop']
[u'albani', u'entertain', u'centr', u'fund', u'easi', u'say']
[u'alcan', u'announc', u'cost', u'blowout']
[u'aboard', u'helicopt', u'kill', u'nepal']
[u'wont', u'pulp', u'odour', u'concern']
[u'arrow', u'boost', u'search', u'pipelin']
[u'arson', u'blame', u'fire']
[u'arsonist', u'blame', u'blaze']
[u'aussi', u'seri']
[u'aussi', u'peak', u'warn', u'punter']
[u'bolster', u'darfur', u'peacekeep', u'forc']
[u'avoid', u'death', u'statist', u'disappoint']
[u'uranium', u'sale', u'india', u'stand']
[u'barca', u'despit', u'valencia', u'draw']
[u'industri', u'insid', u'blame', u'expens', u'sting']
[u'bega', u'welcom', u'cathol', u'archbishop']
[u'bendigo', u'council', u'promot', u'capit', u'theatr', u'din']
[u'bendigo', u'roadwork', u'caus', u'traffic', u'mess', u'local', u'busi']
[u'biosecur', u'plan', u'aim', u'protect', u'mango', u'industri']
[u'blair', u'appeal', u'stop', u'parti', u'infight']
[u'blair', u'urg', u'labour', u'focus', u'polici']
[u'british', u'american', u'tobacco', u'pull', u'myrtleford']
[u'british', u'woman', u'charg', u'terror', u'offenc']
[u'brothel', u'owner', u'stormi', u'summer', u'win', u'evict', u'repriev']
[u'buckley', u'step', u'magpi', u'captain']
[u'bulldog', u'dragon', u'gain', u'consol']
[u'bushfir', u'wind', u'leav', u'rural', u'home', u'powerless']
[u'busi', u'award', u'finalist', u'pleas', u'nation']
[u'cabooltur', u'shire', u'consid', u'worthwhil', u'water']
[u'cat', u'thompson']
[u'central', u'west', u'affect', u'health', u'restructur']
[u'chick', u'buchanan', u'clear', u'play']
[u'childer', u'hostel', u'sale', u'caus', u'controversi']
[u'civoniceva', u'free', u'play']
[u'civoniceva', u'overcom', u'relief']
[u'claim', u'woolworth', u'law', u'reduc']
[u'clarenc', u'valley', u'push', u'bridg', u'repair', u'program']
[u'closer', u'news']
[u'closer']
[u'closer']
[u'colli', u'anti', u'log', u'protest', u'work', u'grind']
[u'colombian', u'unsur', u'psychic', u'appoint']
[u'communiti', u'meet', u'campaign', u'kurri', u'kurri']
[u'cooma', u'ranger', u'concern', u'conflict']
[u'costello', u'criticis', u'flight']
[u'costello', u'flight', u'label', u'polit', u'stunt']
[u'crash', u'plane', u'dangl', u'cliff']
[u'crocker', u'miss', u'bellami']
[u'darl', u'down', u'associ', u'welcom', u'health']
[u'deaf', u'attack', u'teen', u'polic']
[u'deputi', u'attend', u'rail', u'corridor', u'meet']
[u'detaine', u'climb', u'detent', u'centr', u'roof']
[u'help', u'frost', u'affect', u'goulburn', u'valley', u'grower']
[u'drought', u'yard', u'increas', u'sale']
[u'weather', u'prompt', u'wednesday', u'comparison']
[u'ecuador', u'crash', u'kill']
[u'embley', u'call', u'inclus', u'banfield']
[u'emerald', u'council', u'free', u'land', u'hous']
[u'england', u'bold', u'ash', u'chappel']
[u'clive', u'malcolm', u'hero', u'chanc']
[u'exclus', u'brethren', u'exempt', u'risk']
[u'farmer', u'anticip', u'irrig', u'repriev']
[u'farmer', u'vent', u'frustrat', u'ralli']
[u'feder', u'govt', u'boost', u'broadband', u'access', u'region']
[u'fin', u'enforc', u'toothfish', u'poacher', u'leav']
[u'firefight', u'combat', u'arson', u'kimberley']
[u'firefight', u'advantag', u'cool', u'chang']
[u'threat', u'eas', u'kooralbyn']
[u'fisheri', u'erad', u'guppi', u'darwin']
[u'fish', u'council', u'concern', u'mill', u'impact']
[u'fleet', u'bless', u'ceremoni', u'disrupt', u'high', u'wind']
[u'flinder', u'plane', u'crash', u'kill']
[u'councillor', u'enter', u'submiss', u'break']
[u'polic', u'offic', u'get', u'month']
[u'frost', u'destroy', u'goulburn', u'valley', u'stone', u'fruit', u'crop']
[u'gale', u'wreak', u'havoc', u'kill', u'motorcyclist']
[u'gebrselassi', u'post', u'best', u'marathon', u'year']
[u'gerrard', u'give', u'time', u'prove', u'fit']
[u'glen', u'inn', u'council', u'appeal', u'environ']
[u'global', u'warm', u'weed', u'battl', u'harder']
[u'gold', u'coast', u'partner', u'asia', u'research']
[u'goldstock', u'mine', u'search', u'gold']
[u'good', u'win', u'brownlow', u'medal']
[u'govt', u'dismiss', u'budget', u'critic', u'road', u'fund']
[u'govt', u'reject', u'claim', u'avoid', u'nativ', u'titl']
[u'govt', u'reveal', u'fish', u'industri', u'compens']
[u'govt', u'wont', u'pursu', u'kwinana', u'worker', u'industri']
[u'greenough', u'geraldton', u'vote', u'local', u'govt']
[u'griffth', u'mini', u'tornado', u'hit', u'reservoir', u'water']
[u'gunman', u'kill', u'afghan', u'provinci', u'women', u'affair', u'chief']
[u'hardman', u'share', u'surg', u'takeov']
[u'hepburn', u'indigen', u'ceremoni', u'caus', u'concern']
[u'hervey', u'push', u'govt', u'fund', u'support', u'growth']
[u'hingi', u'claim', u'kolkata', u'open', u'titl']
[u'hop', u'cool', u'chang', u'help', u'firefight']
[u'hop', u'cooler', u'weather', u'help', u'firefight']
[u'howard', u'urg', u'releas', u'find', u'war', u'impact']
[u'hunter', u'combat', u'climat', u'chang', u'opposit']
[u'hunter', u'fire', u'contain', u'today']
[u'cost', u'australia', u'generat', u'polic']
[u'wors', u'heroin', u'moroney']
[u'iemma', u'flag', u'damag', u'compens']
[u'indigen', u'leader', u'look', u'post', u'atsic']
[u'indigen', u'ranger', u'patrol', u'arnhem', u'land']
[u'innisfail', u'develop', u'delay', u'worker']
[u'inter', u'surviv', u'chievo', u'scare']
[u'iraqi', u'lawmak', u'chang', u'constitut']
[u'iraqi', u'polit', u'group', u'reach', u'agreement']
[u'iraq', u'increas', u'terror', u'report']
[u'iraq', u'trigger', u'terror', u'report']
[u'irish', u'super', u'tosser']
[u'israel', u'militari', u'court', u'hama', u'offici']
[u'judd', u'hope', u'brownlow']
[u'katter', u'plan', u'split', u'conserv', u'vote', u'boswel']
[u'kuznetsova', u'hold', u'nerv', u'defeat', u'mauresmo']
[u'lack', u'skill', u'worker', u'weaken', u'ship', u'labor']
[u'lebanes', u'christian', u'leader', u'criticis', u'hezbollah']
[u'light', u'plane', u'crash', u'flinder']
[u'loeb', u'win', u'ralli', u'cyprus']
[u'loxton', u'waikeri', u'council', u'leas', u'land']
[u'loxton', u'waikeri', u'test', u'contamin', u'soil']
[u'arrest', u'cocain', u'bust', u'bail']
[u'market', u'end', u'flat', u'despit', u'volatil']
[u'mayor', u'goulburn', u'ask', u'goward']
[u'mental', u'health', u'bed', u'closur', u'devast']
[u'minist', u'lobbi', u'govt', u'extend', u'fund']
[u'mother', u'plead', u'guilti', u'child', u'cruelti']
[u'moy', u'hail', u'cahil', u'tetchi', u'newcastl', u'draw']
[u'gambier', u'polic', u'blitz', u'catch', u'drink', u'driver']
[u'mudge', u'district', u'crash', u'claim', u'teenag', u'live']
[u'nation', u'scrap']
[u'nativ', u'veget', u'regul', u'cost', u'grazier']
[u'nepal', u'chopper', u'search', u'resum', u'morn']
[u'nepal', u'seek', u'villag', u'help', u'chopper', u'search']
[u'prison', u'unnecessari']
[u'bald', u'hill', u'wind', u'farm', u'plan', u'releas']
[u'fruit', u'ombudsman', u'inaccess', u'say']
[u'paver', u'purifi']
[u'thai', u'name', u'week', u'junta']
[u'websit', u'cater', u'outback', u'travel']
[u'extens', u'design', u'spark', u'debat']
[u'inmat']
[u'northern', u'grampian', u'use', u'wast', u'water', u'roadwork']
[u'trace', u'wast', u'melbourn', u'water', u'thwait']
[u'deputi', u'announc', u'resign', u'date']
[u'farmer', u'prais', u'bush', u'valu']
[u'liber', u'candid', u'stay', u'deputi']
[u'servic', u'rememb', u'polic', u'kill', u'duti']
[u'arrest', u'bali', u'alleg', u'marijuana', u'sale']
[u'opposit', u'cut', u'tie', u'exclus', u'brethren']
[u'oloughlin', u'finger', u'cross', u'good']
[u'critic', u'collis']
[u'opposit', u'predict', u'budget', u'surplus', u'backlash']
[u'ozon', u'hole', u'reach', u'record', u'size', u'research']
[u'palestinian', u'upbeat', u'uniti', u'push']
[u'pastor', u'colleg', u'entic', u'worker', u'wool']
[u'pilot', u'kill', u'flinder', u'plane', u'crash']
[u'plan', u'meninde', u'mildura', u'rail', u'project', u'need']
[u'plan', u'progress', u'pilbara', u'tech', u'colleg']
[u'plantagenet', u'council', u'attempt', u'peac', u'footbal']
[u'wont', u'forc', u'smith', u'goward', u'resign']
[u'polic', u'appeal', u'info', u'brutal', u'ballarat', u'attack']
[u'polic', u'confirm', u'death', u'crash', u'plan', u'pilot']
[u'polic', u'investig', u'fatal', u'light', u'plane', u'crash']
[u'polic', u'link', u'assault', u'broom', u'tourist']
[u'pope', u'say', u'christian', u'muslim', u'reject', u'violenc']
[u'power', u'consid', u'legal', u'action']
[u'power', u'restor', u'today', u'energi', u'australia', u'say']
[u'progress', u'restor', u'power', u'plan']
[u'public', u'servant', u'shouldnt', u'hear', u'minist']
[u'push', u'boost', u'fenc', u'profil']
[u'tourism', u'bodi', u'reject', u'british', u'barrier', u'reef']
[u'face', u'disciplinari', u'hear']
[u'rain', u'lift', u'tasmania', u'spirit']
[u'ravensthorp', u'boom', u'miner', u'deposit']
[u'reef', u'safe', u'despit', u'irwin', u'death', u'say', u'dive']
[u'referendum', u'confirm', u'tougher', u'swiss', u'asylum', u'law']
[u'rescuer', u'flinder', u'crash', u'site']
[u'rescu', u'team', u'locat', u'down', u'nepal', u'helicopt']
[u'championship', u'blaze', u'talent']
[u'rocki', u'gladston', u'growth', u'area']
[u'ruddock', u'rais', u'hick', u'case', u'counterpart']
[u'saddam', u'eject', u'genocid', u'trial']
[u'saff', u'predict', u'food', u'price', u'rise', u'water', u'restrict']
[u'govt', u'ignor', u'road', u'mainten', u'backlog']
[u'school', u'closur', u'file', u'disput', u'reach', u'court']
[u'scientist', u'warn', u'climat', u'chang', u'problem']
[u'sculli', u'astonish', u'deputi', u'decis']
[u'secker', u'criticis', u'vail', u'back', u'barker']
[u'offend', u'communiti', u'work', u'investig']
[u'sheep', u'cattl', u'price', u'slump']
[u'somali', u'islamist', u'seiz', u'southern', u'port']
[u'ausnet', u'power', u'shutdown', u'anger']
[u'lanka', u'say', u'tiger', u'kill', u'battl']
[u'stanhop', u'refus', u'meet', u'nativ', u'titl', u'claimant']
[u'station', u'look', u'unman', u'plan', u'tradit']
[u'statist', u'mackay', u'rapid', u'growth']
[u'street', u'socceroo', u'prepar', u'intern', u'comp']
[u'sunshin', u'state', u'need', u'star', u'hotel', u'govt', u'say']
[u'supplier', u'play', u'yarra', u'effluent', u'concern']
[u'swim', u'champ', u'encourag', u'remot', u'hope']
[u'tasmania', u'migrant', u'highest', u'wag']
[u'teen', u'remand', u'custodi', u'bash', u'death']
[u'telstra', u'board', u'nomin', u'impact', u'share', u'price']
[u'telstra', u'board', u'nomin', u'polit', u'thuggeri']
[u'telstra', u'govt', u'odd', u'board', u'nomine']
[u'telstra', u'refus', u'govt', u'board', u'nomine']
[u'thai', u'militari', u'ruler', u'reject', u'report', u'thaksin']
[u'thai', u'militari', u'withdraw', u'tank', u'bangkok']
[u'trujillo', u'reject', u'govt', u'telstra', u'board', u'nomin']
[u'poll', u'show', u'drop', u'support', u'brown']
[u'union', u'meet', u'educ', u'dept', u'teacher']
[u'uranium', u'sale', u'india', u'possibl', u'howard']
[u'vail', u'play', u'uranium', u'export', u'talk']
[u'vail', u'nation', u'messag']
[u'victoria', u'back', u'goldfield', u'heritag', u'list']
[u'voyag', u'disast', u'survivor', u'begin', u'compens', u'claim']
[u'voyag', u'disast', u'survivor', u'drink', u'suppress']
[u'dismiss', u'ruddock', u'ridicul', u'nativ', u'titl']
[u'employ', u'urg', u'hire', u'foreign', u'skill', u'worker']
[u'wagga', u'hampden', u'bridg', u'futur', u'say', u'engin']
[u'govt', u'research', u'sheep', u'lice', u'control']
[u'opposit', u'meet', u'yarragade', u'aquif', u'landown']
[u'weather', u'hamper', u'nepales', u'rescu']
[u'weather', u'hamper', u'rescu']
[u'webb', u'claim', u'fourth', u'titl', u'season']
[u'weet', u'name', u'popular', u'trademark']
[u'wind', u'caus', u'widespread', u'damag']
[u'windsor', u'announc', u'wont', u'join', u'independ']
[u'wit', u'tell', u'plane', u'crash', u'horror']
[u'woman', u'hire', u'hitman', u'kill', u'father', u'get', u'bail']
[u'xenophon', u'push', u'person', u'loan', u'rat']
[u'kill', u'afghan', u'suicid', u'bomb']
[u'aami', u'expand', u'adelaid', u'oper']
[u'abattoir', u'worker', u'visa', u'avail', u'condit']
[u'name', u'japanes']
[u'abetz', u'await', u'verif', u'tuna', u'overfish']
[u'accid', u'studi', u'recommend', u'tractor', u'design', u'chang']
[u'accus', u'plead', u'guilti', u'cemeteri', u'murder']
[u'actor', u'guild', u'honour', u'juli', u'andrew']
[u'afghan', u'violenc', u'underlin', u'risk', u'aust', u'soldier']
[u'crack', u'scalper']
[u'star', u'rememb', u'swan', u'hill', u'footbal', u'terri']
[u'push', u'west', u'unemploy', u'solut']
[u'albani', u'entertain', u'centr', u'fund', u'fight', u'deepen']
[u'alic', u'council', u'petit', u'declar', u'nuclear', u'free']
[u'alic', u'council', u'downsiz']
[u'alleg', u'omagh', u'bomber', u'trial']
[u'alleg', u'polic', u'imperson', u'psychiatr']
[u'allegi', u'discov', u'nickel', u'deposit']
[u'allen', u'umpir', u'seventh', u'decid']
[u'cut', u'entri', u'score']
[u'boost', u'sudan', u'deploy']
[u'lawyer', u'deni', u'ignor', u'ethic']
[u'tell', u'iraq', u'sanction', u'breach', u'inquiri', u'hear']
[u'ballarat', u'guest', u'hous', u'govt', u'fund', u'makeov']
[u'bendigo', u'curfew']
[u'benedict', u'move', u'mollifi', u'muslim']
[u'open', u'clone', u'law', u'debat']
[u'biofuel', u'studi', u'research', u'wimmera', u'opportun']
[u'board', u'nomin', u'spark', u'telstra']
[u'bodi', u'plane', u'crash', u'pilot', u'undergo', u'post', u'mortem']
[u'bomb', u'throw', u'photograph', u'work']
[u'breaker', u'spoil', u'dragon', u'debut']
[u'british', u'compani', u'takeov', u'perth', u'explor']
[u'brit', u'kill', u'senior', u'qaeda', u'oper']
[u'bronco', u'look', u'shut', u'smith']
[u'brownlow', u'winner', u'focus', u'grand', u'final']
[u'bushfir', u'prompt', u'establish', u'arson', u'squad']
[u'cairn', u'child', u'protect', u'worker', u'protest']
[u'call', u'trujillo', u'sack']
[u'child', u'safeti', u'worker', u'deliv', u'strike', u'messag']
[u'china', u'corrupt', u'scandal', u'predict', u'deepen']
[u'chopper', u'crash', u'victim', u'brother', u'join']
[u'citrus', u'grower', u'hop', u'better', u'orang', u'price']
[u'civoniceva', u'plead', u'guilti']
[u'closer', u'news']
[u'cold', u'winter', u'open', u'ozon', u'hole']
[u'cole', u'inquiri', u'document', u'odd', u'flugg', u'evid']
[u'condamin', u'allianc', u'partner', u'research']
[u'consum', u'protect', u'commission', u'take', u'shine']
[u'costello', u'question', u'trujillo', u'salari']
[u'costello', u'question', u'trujillo', u'salari']
[u'cotton', u'grower', u'offer', u'refund', u'crop', u'plough']
[u'council', u'back', u'alcohol', u'purchas']
[u'peninsula', u'seal']
[u'deleg', u'push', u'earlier', u'inland', u'rail', u'complet']
[u'dept', u'call', u'extra', u'staff', u'locust', u'program']
[u'directorship', u'trujillo', u'hand', u'costello']
[u'docker', u'accept', u'reprimand']
[u'doctor', u'antivir', u'drug', u'list']
[u'doctor', u'pulp', u'stanc', u'draw', u'critic']
[u'donnybrook', u'compani', u'win', u'nation', u'train', u'award']
[u'water', u'tank', u'rebat', u'stretch', u'farmer']
[u'drink', u'driver', u'give', u'suspend', u'jail', u'sentenc']
[u'eagl', u'better', u'season']
[u'earth', u'temperatur', u'near', u'million', u'year', u'high']
[u'east', u'timor', u'meet', u'rebel', u'leader']
[u'ebay', u'fraudster', u'probat']
[u'eyr', u'peninsula', u'coastal', u'develop', u'plan', u'garner']
[u'west', u'communiti', u'receiv', u'adsl']
[u'fear', u'crop', u'damag', u'pressur', u'inflat']
[u'feder', u'water', u'offic', u'creation', u'fantast', u'maywald']
[u'hike', u'prompt', u'univers', u'scholarship']
[u'fink', u'member', u'stand', u'trial', u'violent', u'brawl']
[u'firm', u'deni', u'drop', u'prosecut']
[u'fear', u'dead', u'road', u'crash']
[u'foster', u'parent', u'support']
[u'fruitgrow', u'send', u'letter', u'market', u'problem']
[u'fund', u'boost', u'world', u'music', u'festiv']
[u'gold', u'coast', u'expect', u'better', u'perform']
[u'goldfield', u'say', u'perth', u'nativ', u'titl', u'affect']
[u'goldstar', u'report', u'biggest', u'gold', u'drill', u'walhalla']
[u'govt', u'accept', u'site', u'need', u'hobart', u'hospit']
[u'govt', u'cut', u'mean', u'counsellor', u'loss', u'despit']
[u'govt', u'decid', u'timber', u'worker', u'fisap']
[u'govt', u'intern', u'program', u'send', u'doctor', u'central', u'west']
[u'govt', u'move', u'help', u'frost', u'disast']
[u'govt', u'stop', u'fight', u'telstra', u'beazley']
[u'govt', u'urg', u'consid', u'land', u'agreement']
[u'hardi', u'sell', u'kamberra', u'wineri']
[u'head', u'crash', u'claim']
[u'health', u'bar', u'equival', u'eat']
[u'health', u'bar', u'healthi', u'report']
[u'higher', u'dump', u'levi', u'push', u'rat']
[u'high', u'fli', u'portsmouth', u'suffer', u'defeat']
[u'hilliard', u'return', u'wit', u'stand']
[u'hilliard', u'trial', u'resum']
[u'hobart', u'host', u'free', u'trade', u'talk']
[u'hotlin', u'call', u'prove', u'law', u'unfair', u'hull']
[u'howard', u'play', u'water', u'ministri', u'specul']
[u'hughenden', u'concern', u'possibl', u'train', u'driver']
[u'hunter', u'guest', u'hous', u'cost', u'rebuild']
[u'hunter', u'mine', u'lockout', u'doco', u'parallel', u'current']
[u'hydro', u'tasmania', u'stand', u'offer']
[u'get', u'tough', u'racism']
[u'indecis', u'investor', u'push', u'market', u'higher']
[u'indigen', u'group', u'advis', u'catchment', u'author']
[u'inquiri', u'reveal', u'warn', u'breach']
[u'internet', u'secur', u'threat', u'increas']
[u'inzi', u'hear', u'schedul', u'oval']
[u'israel', u'complet', u'lebanon', u'withdraw', u'week']
[u'wont', u'howard', u'telstra', u'board', u'cousin']
[u'jamal', u'extradit', u'today']
[u'jam', u'hardi', u'criticis', u'director', u'rise']
[u'jam', u'hardi', u'director', u'rise', u'disrespect']
[u'john', u'clees', u'visit', u'dubbo', u'rhino', u'program']
[u'kwinana', u'desalin', u'plant', u'open', u'month']
[u'labor', u'maintain', u'poll', u'lead']
[u'labor', u'ahead', u'poll']
[u'lake', u'macquari', u'council', u'want', u'input']
[u'literaci', u'task', u'forc', u'visit', u'broom']
[u'livingston', u'council', u'want', u'town', u'fitzroy']
[u'lockyer', u'give', u'storm', u'favourit']
[u'longreach', u'give', u'citi', u'kid', u'tast', u'water']
[u'cost', u'rocket', u'fail', u'reach', u'space']
[u'mackay', u'hous', u'virtual', u'unafford']
[u'madrid', u'univers', u'join', u'googl', u'book', u'scan', u'plan']
[u'crush', u'tree']
[u'injur', u'babi', u'surviv', u'mildura', u'crash']
[u'jail', u'bash', u'theft']
[u'extradit', u'attempt', u'murder', u'charg']
[u'market', u'finish', u'unremark', u'note']
[u'maryborough', u'sugar', u'factori', u'announc', u'dividend']
[u'mater', u'hospit', u'nurs', u'hop', u'increas']
[u'mayor', u'highlight', u'alcohol', u'card', u'privaci', u'issu']
[u'mental', u'health', u'discrimin', u'caus', u'rural', u'suicid']
[u'minist', u'look', u'remot', u'servic']
[u'research', u'coral', u'reef', u'need', u'scientist']
[u'gambier', u'celebr', u'senior', u'award']
[u'unconcern', u'lead', u'blood', u'test']
[u'musharraf', u'book', u'reveal', u'allianc', u'motiv']
[u'nepal', u'helicopt', u'crash', u'kill']
[u'nepal', u'team', u'battl', u'recov', u'crash', u'bodi']
[u'law', u'help', u'coolgardi', u'polic', u'curb', u'domest']
[u'offic', u'tackl', u'water', u'crisi']
[u'program', u'bring', u'intern', u'illawarra', u'hospit']
[u'water', u'chief', u'sack']
[u'nightmar', u'troubl', u'voyag', u'survivor']
[u'nixon', u'meet', u'polic', u'concern']
[u'normal', u'rain', u'wont', u'eas', u'toowoomba', u'water', u'situat']
[u'north', u'expect', u'huge', u'mango', u'yield']
[u'locat', u'wander', u'trophi']
[u'urg', u'reject', u'abort', u'rule', u'chang']
[u'opal', u'focus', u'beij', u'gold']
[u'oper', u'tourism', u'promot', u'strategi']
[u'pambula', u'beach', u'colleg', u'facil']
[u'parti', u'team', u'oppos', u'poster', u'chang']
[u'patel', u'extradit', u'india', u'possibl', u'expert']
[u'patienc', u'urg', u'sydney', u'power', u'outag', u'continu']
[u'penola', u'ratepay', u'meet', u'air', u'concern', u'bypass']
[u'plectrum', u'petroleum', u'cautious', u'south', u'coast']
[u'wont', u'seiz', u'water', u'control']
[u'polic', u'experi', u'figur', u'caus', u'alarm']
[u'polic', u'fear', u'miss', u'spearfish', u'dead']
[u'policeman', u'book', u'speed']
[u'polic', u'victorian', u'road', u'crash', u'worst']
[u'polic', u'treat', u'fatal', u'caravan', u'blaze', u'suspici']
[u'polic', u'union', u'make', u'progress', u'commission', u'talk']
[u'pont', u'back', u'katich', u'open']
[u'pope', u'extend', u'oliv', u'branch', u'muslim']
[u'portfolio', u'shake', u'opposit']
[u'port', u'macquari', u'trial', u'centrelink', u'medicar']
[u'properti', u'price', u'expect', u'remain', u'flat']
[u'call', u'lower', u'gambier', u'petrol', u'price']
[u'renmark', u'park', u'propos', u'move', u'council']
[u'research', u'show', u'motorist', u'vehicl']
[u'crew', u'prais', u'effort', u'wollondilli', u'fire']
[u'riverland', u'fruit', u'grower', u'benefit', u'goulburn']
[u'saddam', u'general', u'eject', u'court']
[u'govt', u'combat', u'food', u'spike']
[u'saint', u'celebr', u'return', u'orlean', u'victori']
[u'court', u'alleg', u'indec', u'assault']
[u'chang', u'task', u'forc', u'meet', u'discuss']
[u'seven', u'confirm', u'dead', u'victorian', u'road', u'crash']
[u'seven', u'fear', u'dead', u'victorian', u'road', u'crash']
[u'sexual', u'sadist', u'free', u'jail']
[u'simpkin', u'polic', u'grand', u'final']
[u'head', u'crash']
[u'smith', u'lead', u'storm']
[u'south', u'east', u'fire', u'happen']
[u'southern', u'highland', u'begin', u'recov', u'gale']
[u'spaniard', u'fin', u'thousand', u'illeg', u'toothfish']
[u'spend', u'cut', u'fund', u'palerang', u'shire', u'pool']
[u'stosur', u'luxembourg']
[u'strong', u'socceroo', u'squad', u'name']
[u'stuart', u'charg', u'cronulla']
[u'student', u'school', u'day', u'chariti', u'work']
[u'suncoast', u'child', u'protect', u'worker', u'strike']
[u'suzuki', u'criticis', u'uranium', u'push']
[u'swimmer', u'receiv', u'prize', u'money', u'world']
[u'symond', u'determin', u'figur', u'ash']
[u'tafe', u'scrap', u'jackaroo', u'train', u'cours']
[u'taliban', u'bomb', u'afghanistan', u'kill']
[u'talk', u'fail', u'avert', u'child', u'protect', u'worker', u'strike']
[u'tammin', u'vote', u'shire', u'amalgam']
[u'tamworth', u'council', u'vote', u'refuge', u'resettl']
[u'teach', u'need', u'attract', u'opposit']
[u'technic', u'colleg', u'fund', u'deal', u'near']
[u'telstra', u'defend', u'trujillo', u'salari', u'packag']
[u'telstra', u'open']
[u'telstra', u'pmopen']
[u'thai', u'central', u'bank', u'chief', u'head', u'junta', u'advisori']
[u'thai', u'junta', u'grip', u'power']
[u'thai', u'militari', u'council', u'appoint']
[u'thommo', u'back', u'johnson', u'select']
[u'year', u'buy', u'ebay']
[u'toowoomba', u'growth', u'need', u'water', u'plan', u'urban']
[u'turnbul', u'appoint', u'spark', u'leadership', u'debat']
[u'turnbul', u'head', u'feder', u'water', u'offic']
[u'turnbul', u'head', u'water', u'offic']
[u'kill', u'caravan']
[u'union', u'push', u'tougher', u'rent', u'rise', u'rule']
[u'student', u'meningococc', u'diseas', u'treatment']
[u'uranium', u'boost', u'olymp', u'valu']
[u'urban', u'issu', u'import', u'rural', u'water', u'bodi', u'say']
[u'uruguay', u'silva', u'right', u'amput']
[u'bind', u'flight', u'restrict', u'eas']
[u'cigarett', u'case', u'spark', u'australian', u'suit']
[u'vail', u'win', u'support', u'railway', u'fast', u'track']
[u'warn', u'great', u'australian', u'captain']
[u'water', u'polici', u'boost']
[u'wealthi', u'canberran', u'saddl', u'debt']
[u'wimmera', u'malle', u'proud', u'good', u'brownlow']
[u'woodsid', u'energi', u'find', u'field', u'pilbara']
[u'mourn', u'loss', u'expert']
[u'imag', u'reveal', u'origin', u'mona', u'lisa']
[u'revenu', u'spend', u'indigen', u'popul']
[u'year', u'maralinga', u'atom', u'test', u'aust']
[u'activist', u'chain', u'toxic', u'ship', u'death', u'toll']
[u'await', u'passeng', u'bird', u'test', u'result']
[u'airstrip', u'closur', u'see', u'uncertain', u'futur', u'fli']
[u'back', u'health', u'district', u'chang']
[u'andren', u'deni', u'independ', u'parti']
[u'anti', u'log', u'protest', u'arrest']
[u'anti', u'pulp', u'campaign', u'stand', u'doctor']
[u'build', u'australia', u'biggest', u'offic', u'build']
[u'aussi', u'netbal', u'tour', u'give', u'green', u'light']
[u'australia', u'troubl', u'davi', u'end']
[u'australian', u'dream', u'get', u'smaller', u'cheaper']
[u'aust', u'sharemarket', u'surg']
[u'aust', u'soldier', u'iraq', u'skirmish']
[u'babi', u'meningococc', u'diseas', u'confirm']
[u'babi', u'treat', u'suspect', u'meningococc', u'diseas']
[u'bennett', u'pay', u'tribut', u'warrior', u'webck']
[u'bigland', u'miss', u'season']
[u'bird', u'rule', u'airport', u'scare']
[u'bird', u'test', u'passeng', u'vietnam']
[u'broom', u'wast', u'water', u'plant']
[u'bushfir', u'manag', u'meet', u'prove', u'posit']
[u'bush', u'order', u'public', u'releas', u'iraq', u'intellig']
[u'bush', u'reject', u'iraq', u'report', u'find']
[u'canberra', u'asbesto', u'awar', u'cours']
[u'caneland', u'futur', u'candi']
[u'chase', u'accus', u'appli', u'bail']
[u'chase', u'teen', u'convict', u'burglari']
[u'carpent', u'want', u'nativ', u'titl', u'talk', u'continu']
[u'chile', u'push', u'australian', u'wine', u'industri']
[u'climat', u'chang', u'impact', u'snowi', u'mountain']
[u'closer']
[u'communiti', u'mourn', u'donald', u'crash', u'victim']
[u'compani', u'say', u'zircon', u'grade', u'best', u'world']
[u'compo', u'offer', u'blackout', u'victim']
[u'concern', u'rais', u'oversea', u'train', u'doctor']
[u'costello', u'voic', u'confid', u'telstra', u'chairman']
[u'council', u'administr', u'play', u'nativ', u'titl', u'claim']
[u'council', u'focus', u'illeg', u'apart', u'rental']
[u'councillor', u'angri', u'walkout']
[u'council', u'ask', u'consid', u'climat', u'chang', u'plan']
[u'council', u'close', u'citi', u'laneway']
[u'court', u'rule', u'offend', u'hold', u'jail']
[u'crash', u'victim', u'famili', u'angri', u'plan', u'chang']
[u'darwin', u'court', u'reject', u'killer', u'appeal']
[u'david', u'jone', u'post', u'record', u'profit']
[u'dead', u'humpback', u'near', u'fraser']
[u'dfat', u'head', u'play', u'iraq', u'intellig', u'report']
[u'disput', u'fund', u'rural', u'financi']
[u'doctor', u'shortag', u'issu', u'bombala']
[u'doubt', u'cast', u'solar', u'power', u'trial']
[u'driver', u'time', u'limit', u'lose', u'licenc']
[u'drought', u'predict', u'worsen']
[u'drug', u'accus', u'extradit', u'queensland']
[u'educ', u'answer', u'reduc', u'road', u'fatal']
[u'timor', u'polic', u'beat']
[u'european', u'urg', u'think', u'twice', u'eat', u'fish']
[u'expert', u'urg', u'greater', u'focus', u'fight', u'bird']
[u'faith', u'determin', u'help', u'terri', u'irwin', u'cope']
[u'farmer', u'urg', u'tackl', u'climat', u'chang']
[u'farm', u'financi', u'counsel', u'servic', u'limbo']
[u'farm', u'group', u'decid', u'plantat', u'stanc']
[u'appoint', u'chairman']
[u'feder', u'govt', u'urg', u'boost', u'pipelin', u'fund']
[u'figur', u'prove', u'childcar', u'crisi', u'claim', u'wrong', u'govt']
[u'gold', u'pour', u'union', u'reef']
[u'fisherman', u'bodi', u'believ', u'coast']
[u'fish', u'find', u'technolog', u'bolster', u'marin']
[u'fish', u'speci', u'launch']
[u'forc', u'land', u'blame', u'engin', u'failur']
[u'formal', u'auction', u'increas', u'pressur', u'renter']
[u'lawyer', u'plead', u'guilti', u'procur', u'children']
[u'fortun', u'sit', u'forget', u'account', u'asic', u'say']
[u'firm', u'look', u'turn', u'loss']
[u'gibson', u'lose', u'defam', u'case']
[u'govt', u'council', u'odd', u'traeger', u'park', u'fenc', u'fund']
[u'govt', u'detail', u'south', u'east', u'road', u'fund']
[u'govt', u'oppos', u'media', u'chang']
[u'govt', u'play', u'iraq', u'intellig', u'report']
[u'govt', u'reject', u'goulburn', u'valley', u'natur', u'disast', u'call']
[u'govt', u'say', u'inland', u'rail', u'line', u'prioriti']
[u'govt', u'urg', u'bolster', u'protect', u'plan']
[u'govt', u'urg', u'boost', u'north', u'coast', u'polic']
[u'grain', u'belt', u'escap', u'frost', u'damag']
[u'group', u'call', u'badgeri', u'creek', u'airport']
[u'grower', u'quiz', u'market', u'downturn']
[u'heywood', u'mourn', u'loss', u'coupl', u'road', u'crash']
[u'houston', u'compar', u'afghan', u'mission', u'vietnam']
[u'houston', u'prais', u'soldier', u'work', u'afghanistan']
[u'hume', u'shire', u'elect', u'mayor']
[u'hungari', u'say', u'sorri', u'lie']
[u'hydro', u'worker', u'strike']
[u'indonesia', u'aust', u'secur', u'treati', u'inch', u'forward']
[u'inquiri', u'hear', u'manag', u'receiv', u'kickback']
[u'integr', u'energi', u'compens', u'custom', u'power']
[u'intersect', u'upgrad', u'pledg', u'fatal', u'smash']
[u'investig', u'launch', u'hous', u'blaze']
[u'investig', u'piec', u'detail', u'horrif']
[u'irish', u'life', u'support', u'bondi', u'bash']
[u'irwin', u'widow', u'devast', u'tell', u'death']
[u'isra', u'court', u'free', u'palestinian', u'deputi', u'lawyer']
[u'jackson', u'hospitalis', u'return', u'australia']
[u'janett', u'howard', u'useless', u'say', u'whitlam']
[u'japanes', u'elect']
[u'japan', u'hop', u'china', u'summit', u'month']
[u'john', u'jam', u'hospit', u'sale', u'deal', u'expect', u'soon']
[u'kerr', u'fail', u'finish', u'eagl', u'train']
[u'land', u'consid', u'bowen', u'industri', u'park']
[u'lawyer', u'deni', u'help', u'commit', u'crime']
[u'lawyer', u'inform', u'awb', u'question', u'payment']
[u'legisl', u'allow', u'panorama', u'race']
[u'lehmann', u'ponder', u'captainci', u'futur']
[u'licenc', u'remind', u'abalon', u'fisher']
[u'longreach', u'tourism', u'group', u'recruit', u'member']
[u'long', u'time', u'council', u'observ', u'inquiri']
[u'mackay', u'child', u'safeti', u'staff', u'strike', u'workload']
[u'macklin', u'blame', u'high', u'cost', u'fall']
[u'malfunct', u'plane', u'caus', u'airport', u'closur']
[u'charg', u'tourist', u'attack', u'broom']
[u'jail', u'prison', u'break', u'crime', u'spree']
[u'maralinga', u'mark', u'atom', u'test', u'anniversari']
[u'mayor', u'see', u'benefit', u'hospit', u'econom']
[u'medic', u'council', u'promis', u'complaint', u'handl']
[u'medic', u'practic', u'get', u'hour', u'fund', u'boost']
[u'west', u'drought', u'monitor', u'continu']
[u'miner', u'pressur', u'boost', u'council', u'fund']
[u'minor', u'parti', u'polici', u'pledg']
[u'molik', u'triumph', u'china']
[u'support', u'seek', u'nightclub', u'curfew']
[u'mori', u'marin']
[u'mortlock', u'wale', u'test']
[u'kelli', u'name', u'parliamentari', u'secretari']
[u'urg', u'process', u'entertain', u'centr', u'fund']
[u'worri', u'chang', u'land', u'right']
[u'hous', u'price']
[u'mulrunji', u'kick', u'death', u'coron']
[u'mundin', u'condemn', u'beazley', u'stanc', u'nativ', u'titl']
[u'nation', u'choos', u'businesswoman', u'contest', u'western']
[u'nation', u'contest', u'park', u'calar']
[u'nativ', u'titl', u'registrar', u'accept', u'claim', u'tennant']
[u'near', u'pay', u'tilt', u'train', u'crash', u'compo']
[u'mayor', u'elect', u'port', u'stephen']
[u'minist', u'hear', u'mcarthur', u'river', u'mine', u'concern']
[u'water', u'solut', u'lockwood', u'south']
[u'phase', u'fish', u'industri', u'buyout', u'begin']
[u'night', u'light', u'attribut', u'meteor']
[u'outback', u'council', u'cash', u'water', u'shortag']
[u'pacif', u'highway', u'announc', u'spark', u'compo']
[u'palm', u'inquest', u'deliv', u'find']
[u'pine', u'plantat', u'creat', u'concern']
[u'begin', u'gippsland', u'tour']
[u'defend', u'appoint', u'sack', u'public', u'servant']
[u'defend', u'telstra', u'board', u'appoint']
[u'hit', u'murray', u'darl', u'basin', u'effort']
[u'reject', u'telstra', u'argument', u'board']
[u'polic', u'appeal', u'assist', u'assault', u'case']
[u'polic', u'hunt', u'driver']
[u'policeman', u'blame', u'mulrunji', u'death', u'coron']
[u'polic', u'question', u'girl', u'drive', u'incid']
[u'polic', u'plane', u'crash', u'deliber']
[u'polic', u'union', u'condemn', u'palm', u'report']
[u'polic', u'union', u'reject', u'mulrunji', u'inquest', u'witch', u'hunt']
[u'polic', u'union', u'reject', u'palm', u'report']
[u'polic', u'union', u'welcom', u'compulsori', u'offic']
[u'program', u'find', u'passport', u'fraud', u'widespread']
[u'properti', u'focus', u'polic', u'oper']
[u'push', u'paroo', u'catchment', u'heritag', u'list']
[u'govt', u'urg', u'boost', u'sawfish', u'protect']
[u'urg', u'advantag', u'technolog']
[u'ban', u'match']
[u'ralli', u'highlight', u'wool', u'grower', u'frustrat']
[u'red', u'piec', u'microscop', u'jone']
[u'reef', u'author', u'dismiss', u'tourism', u'closur']
[u'renmark', u'council', u'put', u'street', u'closur', u'plan', u'hold']
[u'report', u'highlight', u'structur', u'issu', u'aborigin']
[u'rescuer', u'retriev', u'bodi', u'nepal', u'chopper', u'crash']
[u'resid', u'counsel', u'fatal', u'caravan', u'park', u'blaze']
[u'richardson', u'swiss', u'bank', u'deposit', u'reveal']
[u'rivalri', u'complic', u'nativ', u'titl', u'claim']
[u'warn', u'robert', u'testifi', u'inquest']
[u'road', u'design', u'possibl', u'crash', u'caus', u'polic']
[u'robert', u'pay', u'tribut', u'teen', u'inquest']
[u'rural', u'health', u'miss', u'budget', u'opposit', u'say']
[u'sach', u'urg', u'health', u'worker', u'support', u'anti', u'poverti']
[u'safeti', u'author', u'probe', u'tree', u'lop', u'death']
[u'danger', u'season', u'bring', u'forward']
[u'govt', u'reject', u'businessman']
[u'saleyard', u'sit', u'consider']
[u'school', u'revamp']
[u'shear', u'ram', u'restor']
[u'shopper', u'spend']
[u'sixer', u'blow', u'wildcat']
[u'smith', u'replac', u'injur', u'crocker']
[u'sorghum', u'price', u'rise']
[u'southern', u'gold', u'expand', u'cambodia']
[u'stanhop', u'talk', u'futur', u'wine', u'maker']
[u'storm', u'stay', u'focus', u'ahead']
[u'swan', u'river', u'get', u'breath', u'life']
[u'swan', u'mission', u'imposs', u'stop', u'judd']
[u'sydney', u'hungri', u'mile', u'campaign', u'success']
[u'symposium', u'focus', u'communiti', u'art', u'involv']
[u'defend', u'davi', u'walkov']
[u'tafe', u'bodi', u'call', u'vocat', u'overhaul']
[u'talk', u'continu', u'child', u'safeti', u'workload']
[u'talk', u'focus', u'help', u'capilano', u'worker']
[u'tamworth', u'council', u'consult', u'refuge', u'plan']
[u'tascoss', u'welcom', u'start', u'public', u'hous', u'project']
[u'task', u'forc', u'assign', u'mulrunji', u'find']
[u'teen', u'boy', u'catch', u'drive', u'steal']
[u'teen', u'charg', u'gold', u'coast']
[u'telstra', u'chair', u'defend', u'trujillo', u'packag']
[u'telstra', u'head', u'defend', u'trujillo', u'salari']
[u'terri', u'irwin', u'overwhelm', u'support']
[u'terror', u'suspect', u'grant', u'access', u'comput']
[u'plead', u'guilti', u'prison', u'sieg']
[u'timber', u'industri', u'growth', u'fast', u'track', u'fund']
[u'tourism', u'group', u'call', u'return', u'ghan', u'pension']
[u'trader', u'quiz', u'christma', u'trade']
[u'tsunami', u'damag', u'reef', u'human', u'activ']
[u'report', u'devast', u'howard', u'credibl']
[u'crash', u'horrif', u'polic']
[u'polic', u'continu', u'crash', u'investig']
[u'polic', u'taskforc', u'emerald', u'renam']
[u'victorian', u'stone', u'fruit', u'grower', u'face', u'crop', u'crisi']
[u'announc', u'record', u'budget', u'surplus']
[u'governor', u'tour', u'kimberley', u'indigen']
[u'water', u'offic', u'urg', u'help', u'deliv', u'uniform', u'price']
[u'advertis', u'children', u'commission']
[u'wit', u'helpless', u'firebal', u'engulf', u'crash']
[u'woolworth', u'buy', u'counterpart']
[u'work', u'start', u'year', u'batlow']
[u'young', u'star', u'need', u'press', u'kangaroo', u'case', u'price']
[u'young', u'star', u'need', u'press', u'case', u'price']
[u'accc', u'order', u'compo', u'condition', u'mislead']
[u'accus', u'abus', u'threaten', u'defam']
[u'australia', u'list', u'runner', u'world']
[u'knee', u'injuri', u'sidelin', u'etoo']
[u'china', u'say', u'organ', u'execut', u'prison']
[u'closer', u'news']
[u'cole', u'blast', u'inquiri', u'delay']
[u'commission', u'tight', u'lip', u'mulrunji', u'case']
[u'drug', u'confer', u'fail', u'solut']
[u'fairfax', u'warn', u'divers', u'threat']
[u'fugit', u'face', u'sydney', u'court']
[u'ganguli', u'receiv', u'boost', u'chief', u'selector']
[u'govt', u'releas', u'damn', u'report', u'sexual', u'assault']
[u'hunter', u'group', u'urg', u'croc', u'safari']
[u'marin', u'escap', u'controversi']
[u'report', u'damag', u'samoa', u'quak']
[u'nrma', u'accus', u'compani', u'unfair', u'practic']
[u'offic', u'palm', u'inquest', u'remov', u'duti']
[u'dismiss', u'afghan', u'troop', u'alleg']
[u'policeman', u'duti', u'follow', u'palm', u'inquest']
[u'ralli', u'urg', u'govt', u'appeal', u'perth', u'nativ', u'titl']
[u'saddam', u'lawyer', u'halt', u'trial']
[u'secur', u'forc', u'tear', u'quell', u'timor']
[u'seven', u'metr', u'fingernail', u'world', u'record']
[u'abbott', u'consid', u'opal', u'fuel', u'rollout', u'legisl']
[u'arrest', u'solomon', u'violat', u'sovereignti']
[u'brumbi', u'thrash', u'red', u'titl']
[u'chess', u'championship', u'rock', u'restroom']
[u'closer']
[u'cole', u'consid', u'terror', u'charg']
[u'duruz', u'face', u'disciplinari', u'hear']
[u'final', u'telstra', u'sale', u'week', u'away']
[u'gang', u'clash', u'dili', u'street']
[u'glori', u'notch', u'strong', u'jet']
[u'govt', u'reject', u'amex', u'foreign', u'worker']
[u'gunmen', u'kill', u'saddam', u'trial', u'judg', u'brother']
[u'iran', u'rule', u'suspend', u'nuclear', u'activ']
[u'isra', u'strike', u'kill', u'gaza']
[u'king', u'taipan', u'wildcat', u'post', u'win']
[u'lobbi', u'govt', u'stop', u'kokoda']
[u'russia', u'begin', u'evacu', u'georgian', u'capit']
[u'russian', u'firm', u'plan', u'power', u'station', u'report']
[u'schumach', u'lead', u'alonso', u'china', u'practic']
[u'sharehold', u'group', u'say', u'wont', u'affect']
[u'teenag', u'boy', u'shoot', u'london', u'mcdonald']
[u'thai', u'coup', u'leader', u'say', u'wont', u'control', u'govt']
[u'youni', u'assum', u'pakistan', u'captainci']
[u'anim', u'strut', u'stuff', u'olymp']
[u'bali', u'secur', u'boost', u'anniversari', u'attack']
[u'bangladeshi', u'garment', u'worker', u'riot', u'wag']
[u'brazilian', u'author', u'search', u'miss']
[u'brazilian', u'crash', u'amazon']
[u'burma', u'accus', u'detain', u'democraci']
[u'closer']
[u'darfur', u'rebel', u'accus', u'sudan', u'armi', u'attack']
[u'eagl', u'hold', u'swan', u'thriller']
[u'eagl', u'hold', u'swan', u'thrill', u'final']
[u'indian', u'polic', u'blame', u'pakistan', u'spi', u'mumbai']
[u'inzamam', u'rule', u'legal', u'action', u'hair']
[u'isra', u'minist', u'demand', u'swift', u'kill']
[u'john', u'worsfold', u'press', u'confer']
[u'lifeguard', u'attack', u'sentenc', u'disgrac', u'say', u'sculli']
[u'makelel', u'quit', u'euro', u'final']
[u'charg', u'blackmail', u'mcdermott']
[u'musharraf', u'say', u'pakistan', u'integr', u'fight']
[u'philippin', u'typhoon', u'toll', u'top']
[u'polic', u'investig', u'perth', u'mosqu', u'drive', u'shoot']
[u'ruddock', u'predict', u'charg', u'immin', u'hick']
[u'russia', u'suspend', u'georgia', u'troop', u'pull']
[u'swan', u'eagl', u'support', u'gather', u'final']
[u'thai', u'taxi', u'ram', u'tank', u'appar', u'coup', u'protest']
[u'west', u'coast', u'claim', u'flag']
[u'gaza', u'clash', u'rival', u'secur', u'forc']
[u'blake', u'take', u'thailand', u'open']
[u'bronco', u'storm', u'sixth', u'premiership']
[u'bronco', u'strong', u'storm']
[u'bronco', u'sixth', u'premiership']
[u'armi', u'chief', u'swear', u'interim', u'thai']
[u'general', u'swear', u'thai']
[u'hick', u'trial', u'move', u'cold', u'comfort', u'aust', u'lawyer']
[u'india', u'share', u'mumbai', u'bomb', u'evid', u'pakistan']
[u'israel', u'warn', u'hezbollah', u'pull', u'lebanon']
[u'kurdish', u'rebel', u'begin', u'ceas', u'turkey']
[u'clear', u'bird', u'scare', u'adelaid']
[u'meningococc', u'case', u'diagnos']
[u'nigerian', u'collaps', u'leav', u'dead', u'homeless']
[u'perth', u'boat', u'accid', u'leav', u'dead', u'miss']
[u'qanta', u'outsourc', u'threaten', u'job', u'union']
[u'africa', u'hunt', u'lose', u'apartheid', u'black']
[u'schumach', u'win', u'chines']
[u'solomon', u'opposit', u'claim', u'number', u'roll']
[u'steal', u'religi', u'icon', u'return', u'greek', u'monasteri']
[u'continu', u'stall', u'talk', u'passeng']
[u'woman', u'critic', u'condit', u'hous']
[u'kill', u'clash', u'burmes', u'armi', u'rebel']
[u'dead', u'sweep', u'bridg']
[u'armi', u'papua', u'solut', u'indonesia', u'say']
[u'calm', u'return', u'gaza', u'street', u'rice', u'fli']
[u'chines', u'polic', u'arrest', u'civil', u'right', u'lawyer']
[u'compani', u'accus', u'green', u'group', u'spi']
[u'downer', u'question', u'iraq', u'survey']
[u'embattl', u'hungarian', u'ask', u'parliament']
[u'fight', u'erupt', u'philippin', u'south']
[u'great', u'barrier', u'reef', u'chang', u'rule']
[u'gunmen', u'kidnap', u'baghdad', u'store']
[u'italian', u'polic', u'smash', u'suspect', u'algerian', u'terrorist']
[u'lebanes', u'armi', u'warn', u'israel', u'deploy', u'border']
[u'thai', u'look', u'harmoni', u'amid', u'post', u'coup', u'rift']
[u'ngos', u'accus', u'arm', u'maker', u'evad', u'ban']
[u'nobel', u'medicin', u'prize', u'award', u'gene', u'research']
[u'health', u'offici', u'fight', u'mosquito', u'diseas']
[u'poverti', u'push', u'peopl', u'alic', u'spring', u'indigen']
[u'russia', u'suspend', u'georgia', u'transport', u'link']
[u'solomon']
[u'solomon', u'gang', u'attack', u'australian', u'mission']
[u'taiwan', u'prosecutor', u'drop', u'probe', u'ladi']
[u'taliban', u'attack', u'kill', u'southern', u'afghanistan']
[u'telstra', u'open']
[u'thoma', u'fight', u'control', u'order', u'high', u'court']
[u'amnesti', u'reject', u'ruddock', u'view', u'sleep', u'depriv']
[u'bang', u'theori', u'work', u'win', u'nobel', u'physic']
[u'build', u'industri', u'call', u'stamp', u'duti', u'cut']
[u'closer', u'news']
[u'ellison', u'deni', u'moti', u'investig', u'polit']
[u'fifth', u'girl', u'dead', u'amish', u'school', u'shoot']
[u'appear', u'court', u'alleg', u'pine', u'break']
[u'govt', u'urg', u'solomon', u'hand', u'moti']
[u'group', u'anger', u'resumpt', u'live', u'export']
[u'japan', u'say', u'north', u'korea', u'nuclear', u'plan', u'threaten', u'peac']
[u'knight', u'coach', u'sanction']
[u'latvian', u'teen', u'stab', u'classmat', u'imit', u'movi']
[u'minist', u'defend', u'action', u'sexual', u'harass']
[u'misspend', u'put', u'million', u'risk', u'africa']
[u'moti', u'unseen', u'extradit', u'continu']
[u'korea', u'test', u'nuclear', u'weapon']
[u'wont', u'rush', u'expans', u'decis']
[u'palestinian', u'group', u'threaten', u'kill', u'hama', u'leader']
[u'concern', u'asylum', u'seeker', u'exodus', u'plan']
[u'say', u'justic', u'flag', u'thief', u'apolog']
[u'singapor', u'accus', u'ban', u'magazin']
[u'soldier', u'kill', u'iraq']
[u'thaksin', u'resign', u'parti', u'leader']
[u'veteran', u'allow', u'remain', u'belmor', u'home']
[u'veteran', u'celebr', u'avoid', u'evict']
[u'abba', u'hint', u'dissolv', u'govern']
[u'abduct', u'worker', u'releas']
[u'activist', u'murder', u'convict', u'repeal']
[u'conserv', u'council', u'back', u'water', u'restrict']
[u'research', u'nab', u'nobel', u'chemistri', u'prize']
[u'famili', u'tie', u'arm', u'snake', u'robberi']
[u'feder', u'live', u'fight', u'japan', u'open']
[u'socceroo', u'hang', u'boot']
[u'hopman', u'expand', u'asia']
[u'molik', u'second', u'round', u'tokyo']
[u'entitl', u'cross', u'floor', u'georgiou']
[u'zealand', u'name', u'newcom', u'nation']
[u'offic', u'seiz', u'alleg', u'biki', u'leak']
[u'polic', u'probe', u'unclassifi', u'porn']
[u'putin', u'warn', u'georgia', u'provoc']
[u'search', u'fail', u'miss', u'fisherman']
[u'stanhop', u'condemn', u'ruddock', u'tortur', u'comment']
[u'taipan', u'wildcat', u'good']
[u'thailand', u'resist', u'martial', u'pressur']
[u'thousand', u'rebel', u'afghan', u'amnesti', u'offer']
[u'timmin', u'announc', u'retir']
[u'western', u'contain']
[u'wit', u'question', u'head', u'crash']
[u'acci', u'reaffirm', u'support', u'awa']
[u'ambul', u'fail', u'meningococc', u'victim', u'report']
[u'asic', u'probe', u'mine', u'industri', u'share', u'market']
[u'busi', u'leader', u'back', u'deregul', u'liquor']
[u'closer']
[u'court', u'approv', u'extradit', u'clergi']
[u'minist', u'tell', u'govt', u'perth']
[u'king', u'gallant', u'breaker']
[u'lawyer', u'argu', u'inquiri', u'public', u'deni', u'fair', u'trial']
[u'millionth', u'spark', u'fresh', u'workplac', u'debat']
[u'moti', u'appoint', u'suspend', u'amid', u'crimin', u'charg']
[u'moti', u'suspend', u'attorney', u'general']
[u'nation', u'senat', u'lose', u'joint', u'ticket', u'select']
[u'opposit', u'press', u'charg', u'decis']
[u'perth', u'acquit', u'plot', u'kill', u'member']
[u'post', u'coup', u'thai', u'stock', u'cabinet', u'bank']
[u'rice', u'leav', u'israel', u'agreement', u'eas']
[u'sign', u'violenc', u'campaign']
[u'crocodil', u'captur', u'darwin', u'region']
[u'plane', u'crash']
[u'threaten', u'north', u'korea', u'nuclear', u'test']
[u'warn', u'north', u'korea', u'nuclear', u'test']
[u'vaughan', u'target', u'australian', u'seri']
[u'minist', u'warn', u'health', u'sack', u'doctor']
[u'reserv', u'polici', u'confus', u'opposit', u'say']
[u'aussi', u'gile', u'content', u'taiwan', u'open']
[u'bathurst', u'plane', u'crash', u'investig', u'stall']
[u'capit', u'humbl', u'ranger']
[u'claim', u'govt', u'plan', u'fuel', u'industri', u'uncertainti']
[u'coalit', u'senat', u'reject', u'central', u'element']
[u'darth', u'vader', u'imperson', u'rob', u'servo', u'second']
[u'didak', u'deni', u'drink']
[u'disgrac', u'psychiatrist', u'lose', u'appeal']
[u'crew', u'battl', u'blaze', u'katherin']
[u'hawk', u'past']
[u'health', u'dept', u'warn', u'poison', u'cook', u'powder']
[u'hungarian', u'say', u'blackmail']
[u'merrick', u'unfaz', u'thompson', u'absenc']
[u'moor', u'decis', u'respect', u'arnold']
[u'urg', u'allow', u'uranium', u'mine']
[u'neill', u'rue', u'lose', u'liverpool', u'opportun']
[u'dead', u'miss', u'vietnam', u'typhoon']
[u'rice', u'arriv', u'delay', u'stall', u'decis', u'iran']
[u'sogavar', u'confid', u'vote', u'postpon']
[u'worker', u'risk', u'infertil']
[u'ten', u'thousand', u'ralli', u'hama', u'govern']
[u'driver', u'injur', u'bathurst', u'crash']
[u'unit', u'outlast', u'marin']
[u'author', u'launch', u'probe', u'mexican', u'town', u'polic']
[u'closer']
[u'concern', u'trauma', u'specialist', u'shortag']
[u'croc', u'fight', u'taipan']
[u'desmond', u'tutu', u'turn']
[u'fear', u'religi', u'zealotri', u'rise', u'afghanistan']
[u'arrest', u'protest', u'blockad', u'pine']
[u'flintoff', u'confid', u'champion', u'trophi', u'victori']
[u'lebanes', u'urg', u'action', u'isra', u'flight']
[u'mar', u'rover', u'captur', u'dramat', u'pictur', u'crater']
[u'muslim', u'women', u'veil', u'divis', u'straw']
[u'nato', u'soldier', u'kill', u'afghanistan', u'attack']
[u'offic', u'voluntarili', u'stand', u'asid', u'amid', u'death']
[u'goal', u'spoil', u'socceroo', u'farewel', u'bash']
[u'polic', u'bust', u'organis', u'crime', u'syndic']
[u'rodzilla', u'name', u'red', u'best']
[u'skaif', u'take', u'fifth', u'bathurst', u'pole']
[u'socceross', u'draw', u'friend', u'paraguay']
[u'supercar', u'undergo', u'review']
[u'woman', u'charg', u'teen', u'death']
[u'world', u'power', u'mull', u'sanction', u'iran']
[u'world', u'power', u'mull', u'sanction', u'threat', u'iran']
[u'youni', u'reinstat', u'pakistan', u'captain']
[u'militiamen', u'kill', u'clash', u'southern', u'iraq']
[u'arnold', u'defend', u'mass', u'substitut']
[u'bangladeshi', u'protest', u'power', u'generat', u'drop']
[u'closer']
[u'crew', u'brace', u'long', u'night', u'bushfir', u'rag']
[u'fan', u'tribut', u'king', u'mountain']
[u'feder', u'overpow', u'henman', u'japan', u'open']
[u'japanes', u'put', u'alonso', u'brink', u'second', u'titl']
[u'lee', u'critic', u'falconio', u'investig']
[u'minist', u'say', u'arundel', u'plan', u'flaw']
[u'olymp', u'committe', u'urg', u'press', u'china', u'human']
[u'pakistan', u'rememb', u'quak', u'victim']
[u'palm', u'policeman', u'stand', u'asid']
[u'porter', u'die', u'bathurst', u'crash', u'injuri']
[u'roar', u'sydney', u'play', u'draw']
[u'saddam', u'lawyer', u'boycott', u'genocid', u'trial']
[u'somali', u'militia', u'vow', u'recaptur', u'port']
[u'lankan', u'soldier', u'miss', u'heavi', u'fight']
[u'trujillo', u'predict', u'glow', u'telstra', u'result']
[u'trujillo', u'start', u'hard', u'sell']
[u'driver', u'porter', u'die']
[u'victori', u'maintain', u'win', u'form']
[u'volcano', u'rock', u'rabaul']
[u'advertis', u'encourag', u'sexi', u'kid', u'report', u'say']
[u'aussi', u'golf', u'better', u'applebi']
[u'aust', u'condemn', u'korea', u'nuclear', u'test']
[u'teen', u'late', u'night', u'drive', u'academ', u'urg']
[u'beazley', u'say', u'compani', u'tri', u'forc', u'construct']
[u'bodi', u'think', u'miss', u'fisherman']
[u'driver', u'remain', u'frustrat', u'book', u'servic']
[u'climat', u'report', u'warn', u'refuge', u'flood']
[u'closer']
[u'coonan', u'mission', u'salvag', u'media', u'legisl']
[u'cricket', u'terror', u'claim', u'investig']
[u'electrolux', u'plant', u'afternoon', u'shift']
[u'million', u'dollar', u'reward', u'offer', u'catch', u'killer']
[u'korea', u'nuclear', u'test', u'condemn']
[u'opposit', u'say', u'chang', u'crimin', u'code']
[u'kill', u'gang', u'fight', u'timor', u'capit']
[u'prospectus', u'warn', u'wont', u'hurt', u'sale', u'minchin']
[u'somali', u'islamist', u'declar', u'jihad', u'ethiopia']
[u'sprint', u'legend', u'farewel', u'melbourn']
[u'teenag', u'killer', u'damilola', u'jail', u'year']
[u'telstra', u'govt', u'launch', u'sell', u'round']
[u'iraqi', u'polic', u'hundr', u'sick', u'suspect']
[u'right', u'chief', u'say', u'hundr', u'die', u'darfur', u'attack']
[u'japan', u'decis', u'action', u'north', u'korea']
[u'vietnam', u'airlin', u'implic', u'money']
[u'firefight', u'fear', u'outbreak']
[u'watchdog', u'play', u'child', u'model', u'concern']
[u'alonso', u'warn', u'armour']
[u'disput', u'govt', u'claim', u'health']
[u'set', u'hobart', u'hospit', u'watchdog']
[u'andrew', u'dismiss', u'workchoic', u'survey', u'find']
[u'australian', u'camp', u'oven', u'festiv', u'draw', u'larg', u'crowd']
[u'aust', u'rais', u'object', u'north', u'korean', u'ambassador']
[u'bahrain', u'clash', u'great', u'level', u'say', u'arnold']
[u'barton', u'admit', u'moon']
[u'bathurst', u'crash', u'prompt', u'safeti', u'warn']
[u'bathurst', u'driver', u'clark', u'releas', u'intens', u'care']
[u'bedsid', u'hear', u'hold', u'alleg', u'drug', u'smuggler']
[u'bird', u'scare', u'coupl', u'face', u'drug', u'charg']
[u'bird', u'scare', u'face', u'drug', u'charg']
[u'bowler', u'urg', u'standardis', u'hour']
[u'injur', u'mackay', u'goalpost', u'collaps']
[u'bureaucrat', u'central', u'queensland', u'hous', u'woe']
[u'burn', u'toilet', u'block', u'offer', u'relief', u'walker']
[u'owner', u'face', u'cruelti', u'charg']
[u'climat', u'chang', u'overshadow', u'state', u'elect', u'coal']
[u'closer']
[u'closer']
[u'coalit', u'media', u'stalem']
[u'communiti', u'warn', u'intens', u'bushfir', u'season']
[u'recognis', u'landcar', u'award']
[u'convict', u'child', u'rapist', u'face', u'charg']
[u'council', u'back', u'wybong', u'applic']
[u'council', u'green', u'light', u'supermarket', u'shelter']
[u'councillor', u'thrill', u'bridg', u'oper']
[u'council', u'plan', u'sale', u'kabl', u'build']
[u'countri', u'phone', u'technician', u'protest', u'take', u'toll']
[u'cruis', u'compani', u'drop', u'schooli', u'trip']
[u'david', u'jone', u'deni', u'sexualis', u'children']
[u'depress', u'websit', u'access', u'eas', u'symptom']
[u'doctor', u'group', u'want', u'focus', u'recruit']
[u'downer', u'maintain', u'communic', u'north', u'korea']
[u'european', u'leader', u'warn']
[u'evan', u'urg', u'clariti', u'water', u'restrict']
[u'flintoff', u'pietersen', u'line', u'open']
[u'kiwi', u'debut', u'kangaroo']
[u'fund', u'target', u'disadvantag', u'student']
[u'googl', u'acquir', u'youtub']
[u'goondiwindi', u'mayor', u'justifi', u'canal', u'construct']
[u'govt', u'furious', u'moti', u'releas']
[u'govt', u'oppn', u'debat', u'crime', u'stat']
[u'govt', u'urg', u'ensur', u'basic']
[u'health', u'servic', u'back', u'mental', u'health', u'announc']
[u'huge', u'effort', u'histor', u'plane', u'home']
[u'human', u'error', u'blame', u'athen', u'plane', u'crash']
[u'japan', u'wont', u'nuclear', u'vow']
[u'jelli', u'trigger', u'german', u'secur', u'alert']
[u'jet', u'coach', u'sack', u'stabil']
[u'judg', u'call', u'correct', u'overhaul']
[u'legisl', u'pave', u'wind', u'power']
[u'lennon', u'urg', u'reveal', u'audit', u'find']
[u'governor', u'artist', u'scientist', u'kanck']
[u'makyb', u'diva', u'statu', u'near', u'complet']
[u'marin', u'park', u'zone', u'base', u'scienc', u'author']
[u'mcginti', u'reject', u'radiolog', u'contract', u'claim']
[u'meet', u'spotlight', u'pemberton', u'pool']
[u'money', u'teacher', u'literaci', u'numeraci']
[u'moti', u'arrest', u'solomon', u'island']
[u'move', u'address', u'jetti', u'demolit', u'fear']
[u'want', u'boom', u'gate']
[u'want', u'media', u'law', u'mandatori', u'local', u'content']
[u'see', u'rat', u'hold']
[u'nation', u'smaller', u'elector']
[u'nato', u'afghan', u'command', u'pakistan', u'help']
[u'cartoon', u'anger', u'denmark', u'muslim']
[u'join', u'parliamentari', u'sit']
[u'pay', u'compo', u'wrong', u'imprison']
[u'ogradi', u'race', u'tour']
[u'organis', u'record', u'floriad', u'crowd']
[u'peac', u'talk', u'resum', u'nepal']
[u'pharmacist', u'push', u'drug', u'monitor']
[u'pie', u'wont', u'tarrant', u'cheapli']
[u'pipelin', u'builder', u'order', u'perform', u'rehabilit']
[u'agre', u'backbench', u'media', u'request']
[u'probe', u'moti', u'escap']
[u'polic', u'bodi', u'baghdad', u'bomb', u'kill']
[u'polic', u'retriev', u'bathurst', u'plane', u'crash', u'bodi']
[u'polic', u'seek', u'burglari', u'inform']
[u'power', u'project', u'moranbah']
[u'drug', u'campaign', u'meyerhoff', u'die']
[u'proto', u'make', u'share', u'offer', u'fund', u'tibooburra', u'gold']
[u'qanta', u'face', u'fine', u'mislead']
[u'qatar', u'palestinian', u'mediat', u'fail']
[u'radio', u'rental', u'disput', u'resolv', u'collect']
[u'ramo', u'horta', u'happi', u'aust', u'troop', u'timor']
[u'report', u'moti', u'question', u'polic', u'solomon']
[u'report', u'solomon', u'island', u'polic', u'question', u'moti']
[u'retail', u'exploit', u'children', u'advertis', u'report']
[u'revolutionari', u'australia', u'home']
[u'robot', u'carri', u'kidney', u'surgeri']
[u'rspca', u'seek', u'fund', u'boost', u'region', u'effort']
[u'rural', u'doctor', u'receiv', u'babi', u'deliveri', u'bonus']
[u'rural', u'women', u'seek', u'train']
[u'scheme', u'offer', u'earli', u'hospit', u'discharg', u'mum']
[u'search', u'miss', u'tasmanian', u'continu']
[u'secur', u'council', u'condemn', u'north', u'korea', u'nuclear', u'test']
[u'shire', u'plan', u'yate', u'closur']
[u'sixer', u'captain', u'hospitalis', u'viral', u'infect']
[u'skill', u'migrant', u'orang', u'region']
[u'korean', u'foreign', u'minist', u'nomin', u'head']
[u'studi', u'find', u'case', u'drug', u'resist']
[u'support', u'mount', u'anti', u'campaign']
[u'taipei', u'go', u'nation', u'protest']
[u'tate', u'urg', u'region', u'voic', u'media', u'chang']
[u'terror', u'expert', u'doubt', u'bali', u'bomb', u'repeat']
[u'sack', u'stabil']
[u'thiev', u'target', u'broom', u'diamond']
[u'thiev', u'target', u'sunraysia', u'school']
[u'thorp', u'train', u'sydney']
[u'dead', u'plane', u'accid', u'norwegian']
[u'union', u'select', u'candid', u'oppos']
[u'mull', u'tougher', u'sanction', u'north', u'korea']
[u'vatican', u'unveil', u'roman', u'necropoli']
[u'voss', u'chanc', u'australian']
[u'weather', u'hit', u'tourism', u'flinder', u'rang']
[u'wheat', u'price', u'hit', u'year', u'high', u'littl']
[u'work', u'parti', u'consid', u'blayney', u'communiti', u'centr']
[u'iraqi', u'die', u'invas', u'studi']
[u'abba', u'palestinian', u'elect']
[u'abort', u'easi', u'propos', u'law']
[u'advisori', u'council', u'canva', u'health', u'issu']
[u'alic', u'resid', u'endur', u'water', u'woe']
[u'amnesti', u'slam', u'child', u'soldier']
[u'anti', u'tank', u'rocket', u'damag', u'bosnian', u'mosqu']
[u'anti', u'wind', u'farm', u'group', u'rais', u'fund', u'doubt']
[u'apprentic', u'quota', u'tie', u'public', u'project']
[u'austar', u'coal', u'product']
[u'aust', u'cambodia', u'sign', u'prison', u'transfer', u'agreement']
[u'australia', u'renew', u'moti', u'extradit']
[u'aust', u'tourist', u'fin', u'buy', u'cambodian', u'artefact']
[u'ballarat', u'council', u'search', u'saleyard', u'site']
[u'bank', u'retail', u'stock', u'drive', u'market', u'higher']
[u'barton', u'fin', u'moon']
[u'basebal', u'ban', u'cannabi', u'test']
[u'beatti', u'urg', u'feder', u'overhaul']
[u'beatti', u'vow', u'water', u'price']
[u'beef', u'produc', u'land', u'expand', u'oper']
[u'speed', u'hospit', u'build', u'work']
[u'blayney', u'medic', u'centr', u'help', u'town', u'secur', u'doctor']
[u'bok', u'play', u'world', u'leicest']
[u'brain', u'fluid', u'drain', u'eas', u'dementia', u'research']
[u'break', u'home', u'wollongong']
[u'brown', u'urg', u'farmer', u'scheme', u'concern']
[u'bull', u'strike', u'earli']
[u'busi', u'blitz', u'uncov', u'breach']
[u'bypass', u'construct', u'penola', u'oppos']
[u'cabbi', u'fin', u'dead', u'crash']
[u'carney', u'question', u'darwin', u'revamp', u'cost']
[u'offic', u'decis', u'record']
[u'chief', u'justic', u'demand', u'answer', u'report']
[u'chief', u'minist', u'inform', u'mutijulu', u'abus']
[u'closer']
[u'closer']
[u'closer']
[u'communiti', u'learn', u'mental', u'health', u'issu']
[u'consum', u'shrug', u'rate', u'rise']
[u'coonan', u'upbeat', u'media', u'bill', u'prospect']
[u'copper', u'wire', u'replac', u'deter', u'rail', u'thiev']
[u'costello', u'welcom', u'boost', u'consum', u'confid']
[u'council', u'green', u'light', u'mental', u'health', u'facil']
[u'councillor', u'maintain', u'push', u'council', u'issu', u'debat']
[u'councillor', u'speak', u'mexico', u'reef', u'symposium']
[u'crew', u'confid', u'tackl', u'fire']
[u'debat', u'continu', u'media']
[u'debat', u'media', u'continu']
[u'debat', u'tank', u'rebat']
[u'debnam', u'pledg', u'mental', u'health', u'rehab', u'centr']
[u'dentist', u'govt', u'inact', u'region']
[u'doctor', u'deni', u'neglect', u'dead', u'patient']
[u'doctor', u'develop', u'diagnost', u'techniqu', u'coeliac']
[u'doctor', u'prais', u'opposit', u'mental', u'health', u'polici']
[u'dope', u'test', u'weed', u'kiwi', u'athlet']
[u'doubt', u'effect', u'water', u'share', u'plan']
[u'downer', u'warn', u'north', u'korea', u'nuclear', u'test']
[u'warn', u'unauthoris', u'banana']
[u'drought', u'cut', u'food', u'product']
[u'condit', u'increas', u'rabbit', u'menac']
[u'time', u'forecast', u'carnarvon']
[u'eureka', u'tower', u'open', u'melbourn']
[u'eurobodalla', u'psychologist', u'secur', u'cancer', u'research']
[u'nurs', u'home', u'chief', u'promis', u'staff']
[u'expert', u'inspect', u'fake', u'gogh']
[u'farmer', u'alert', u'avocado', u'theft']
[u'faulkner', u'win', u'presid']
[u'fear', u'australian', u'miss', u'indonesian', u'chopper']
[u'govt', u'flag', u'heritag', u'list', u'chang']
[u'govt', u'inform', u'year']
[u'feral', u'cat', u'toll', u'woyli', u'popul']
[u'field', u'support', u'media', u'overhaul']
[u'crew', u'monitor', u'kosciuszko', u'blaze']
[u'crew', u'stop', u'spread', u'blaze', u'near', u'port', u'lincoln']
[u'firefight', u'gain', u'upper', u'hand', u'hobart', u'bushfir']
[u'firefight', u'control', u'nation', u'park', u'blaze']
[u'flag', u'burner', u'ask', u'carri', u'flag', u'anzac', u'parad']
[u'flag', u'steal', u'teen', u'lead', u'anzac', u'parad']
[u'french', u'head', u'train', u'crash', u'kill']
[u'fresh', u'blaze', u'spark', u'hobart']
[u'frost', u'affect', u'wangaratta', u'farmer', u'angri']
[u'fund', u'cut', u'rais', u'sport', u'cost']
[u'funer', u'slay', u'russian', u'journalist']
[u'geelong', u'reject', u'independ', u'review']
[u'gibb', u'arriv', u'india', u'match', u'fix']
[u'giteau', u'tour', u'scrum', u'half', u'connolli']
[u'freddi', u'space', u'plead', u'gat']
[u'goondiwindi', u'caravan', u'ralli', u'flag']
[u'goulburn', u'resid', u'face', u'higher', u'water', u'cost']
[u'govern', u'urg', u'boost', u'council', u'support']
[u'govern', u'urg', u'offer', u'busi', u'drought']
[u'govt', u'urg', u'communiti', u'care', u'mental']
[u'group', u'fear', u'thousand', u'illawarra', u'go', u'hungri']
[u'happi', u'gilmor', u'spoil', u'beachley', u'parti']
[u'hewitt', u'love', u'tenni', u'say', u'rashe']
[u'home', u'buyer', u'wari', u'rate', u'rise']
[u'hop', u'law', u'stop', u'terrorist', u'fund']
[u'horta', u'deni', u'aust', u'role', u'timor', u'coup']
[u'howard', u'blame', u'solomon', u'ouster', u'attempt']
[u'howard', u'meet', u'cambodian']
[u'ibuprofen', u'survey', u'prompt', u'drug', u'research']
[u'indian', u'writer', u'youngest', u'femal', u'booker', u'winner']
[u'india', u'uranium', u'sale', u'prioriti', u'downer', u'say']
[u'indonesian', u'helicopt', u'transport', u'aussi', u'safe']
[u'interst', u'grower', u'irrespons', u'fruit']
[u'iraq', u'approv', u'autonom', u'region']
[u'isra', u'strike', u'hit', u'home', u'hama', u'politician']
[u'jail', u'offici', u'clear', u'jewel', u'murder']
[u'joyc', u'prepar', u'cross', u'floor', u'media']
[u'kakadu', u'fire', u'tip', u'burn', u'season']
[u'kaka', u'give', u'brazil', u'victori', u'ecuador']
[u'kalgoorli', u'council', u'rule', u'christma', u'shop']
[u'keelti', u'reject', u'move', u'spirit', u'moti']
[u'kure', u'kid', u'emot', u'aust', u'visit']
[u'labor', u'grill', u'govt', u'place']
[u'labor', u'launch', u'petit', u'medibank', u'sale']
[u'lennon', u'hand', u'report']
[u'lift', u'thai', u'martial', u'urgent']
[u'linfox', u'challeng', u'reject', u'phillip']
[u'long', u'walk', u'help', u'prompt', u'polic', u'warn']
[u'lyon', u'tip', u'silvagni', u'assist']
[u'mackay', u'council', u'investig', u'goalpost', u'mishap']
[u'mallard', u'expect', u'seek', u'compens']
[u'die', u'construct', u'site', u'mishap']
[u'mango', u'sell', u'cardboard', u'tray']
[u'marin', u'park', u'impact', u'report', u'worri', u'council']
[u'mayor', u'hop', u'tour', u'spark', u'water', u'alloc']
[u'mayor', u'unhappi', u'colleg', u'temporari', u'accommod']
[u'meet', u'debat', u'rehab', u'centr', u'site']
[u'spot', u'frankston', u'bodi', u'site']
[u'mental', u'health', u'fund', u'increas', u'welcom']
[u'mental', u'health', u'rehabilit', u'program', u'win']
[u'mildura', u'net', u'hockey', u'facil']
[u'nuclear', u'test', u'depend', u'stanc', u'north', u'korea']
[u'mortar', u'attack', u'spark', u'baghdad', u'ammunit', u'dump']
[u'moti', u'appear', u'solomon', u'magistr']
[u'moti', u'extradit', u'effort', u'polit', u'keelti', u'say']
[u'want', u'contain', u'deposit', u'law', u'clean', u'region']
[u'want', u'health', u'facil', u'site', u'unchang']
[u'worri', u'tobacco', u'grower', u'forc', u'oppos', u'exit']
[u'dissatisfi', u'health', u'servic', u'respons']
[u'nadal', u'blake', u'confirm', u'sydney', u'intern']
[u'nash', u'back', u'media', u'law', u'compromis']
[u'nash', u'joyc', u'support', u'media', u'chang']
[u'nation', u'promis', u'countri', u'health']
[u'neill', u'face', u'reinvent', u'socceroo']
[u'manufactur', u'plant', u'boost', u'maitland', u'job']
[u'saint', u'coach', u'hunt', u'ruckman']
[u'news', u'media']
[u'newspap', u'readership', u'stabl', u'report']
[u'unit', u'tri', u'lift', u'indigen', u'life', u'expect']
[u'korea', u'conduct', u'second', u'nuclear', u'test', u'report']
[u'korean', u'nuclear', u'test', u'increas', u'region', u'tension']
[u'decis', u'pipelin', u'cost']
[u'evid', u'second', u'north', u'korea', u'test']
[u'stop', u'kimberley', u'properti', u'boom']
[u'nuclear', u'test', u'north', u'korea', u'suprem']
[u'nurs', u'angri', u'nurs', u'director', u'plan', u'orang']
[u'ogorman', u'back', u'correct', u'overhaul']
[u'geraldton', u'cottag', u'demolish']
[u'opposit', u'look', u'regul', u'money', u'lender']
[u'opposit', u'pledg', u'mental', u'health']
[u'packer', u'delight', u'betfair', u'perform']
[u'packer', u'satisfi', u'media', u'overhaul']
[u'passeng', u'injur', u'citi', u'crash']
[u'rise', u'british', u'troop', u'iraq', u'afghanistan']
[u'philippin', u'secur', u'tighten', u'dead', u'bomb']
[u'plan', u'kosciuszko', u'track']
[u'polic', u'confisc', u'hoon', u'car']
[u'polic', u'identifi', u'bodi', u'miss', u'tasmanian']
[u'polic', u'offic', u'prison', u'safeti', u'train']
[u'polic', u'search', u'auburn', u'hold']
[u'polic', u'suspect', u'hobart', u'bushfir', u'arson']
[u'pope', u'urg', u'christian', u'ident', u'firm']
[u'privat', u'compani', u'gain', u'access', u'sydney', u'water']
[u'public', u'warn', u'risk']
[u'pulp', u'plan', u'prompt', u'hous', u'concern']
[u'push', u'independ', u'politician']
[u'putin', u'vow', u'punish', u'journalist', u'killer']
[u'chase', u'beat', u'tasmania']
[u'coal', u'boom', u'bring', u'hous', u'squeez']
[u'pick', u'bonus', u'point', u'thrash']
[u'rann', u'like', u'feder', u'deputi']
[u'rapist', u'spend', u'year', u'jail']
[u'region', u'manag', u'boost', u'literaci', u'program']
[u'reserv', u'bank', u'hint', u'rate', u'rise']
[u'resid', u'fear', u'health', u'effect', u'plan', u'phone']
[u'robot', u'provid', u'surgic', u'relief']
[u'rogu', u'banana', u'trader', u'jeopardis', u'sale', u'deal']
[u'rugbi', u'nation', u'revert', u'match', u'tournament']
[u'saddam', u'eject', u'trial', u'outburst']
[u'crew', u'brace', u'worsen', u'condit']
[u'saniti', u'prevail', u'audit', u'submiss']
[u'search', u'continu', u'miss', u'elder', u'women']
[u'secur', u'breach', u'adfa', u'campus']
[u'separ', u'regul', u'lift', u'rail', u'safeti', u'expert']
[u'servic', u'age', u'begin', u'port', u'macquari']
[u'shepparton', u'includ', u'rid']
[u'shortag', u'orthopaed', u'bendigo']
[u'socceroo', u'score', u'comfort', u'victori']
[u'socceroo', u'half', u'time']
[u'solomon', u'govt', u'surviv', u'confid', u'vote']
[u'solomon', u'surviv', u'confid', u'motion']
[u'southern', u'queensland', u'wednesday', u'octob']
[u'spida', u'manag', u'criticis', u'draft', u'time']
[u'lankan', u'militari', u'tiger', u'rebel', u'clash']
[u'stakehold', u'committe', u'consid', u'saleyard', u'site']
[u'stanhop', u'pledg', u'steadi', u'art', u'fund']
[u'station', u'owner', u'want', u'viabl', u'feral', u'cattl', u'reduct']
[u'studi', u'consid', u'diet', u'mental', u'health', u'link']
[u'studi', u'consid', u'hotel', u'facad', u'plan']
[u'studi', u'help', u'blackwood', u'fishermen']
[u'sydney', u'name']
[u'talk', u'resum', u'teacher', u'aid']
[u'tangentyer', u'resum', u'patrol']
[u'tanker', u'crew', u'refus', u'sail', u'better', u'wag']
[u'tasmanian', u'tell', u'exercis', u'mental', u'health']
[u'school', u'receiv', u'environment', u'honour']
[u'teacher', u'insight', u'resourc', u'sector', u'skill']
[u'teen', u'charg', u'chariti', u'worker', u'murder', u'grant']
[u'teen', u'jail', u'stab']
[u'tough', u'sanction', u'say', u'north', u'korea']
[u'debat', u'sanction', u'north', u'korea']
[u'union', u'protest', u'teacher', u'salari']
[u'decid', u'north', u'korean', u'sanction']
[u'struggl', u'agre', u'north', u'korea', u'action']
[u'struggl', u'agre', u'north', u'korea', u'sanction']
[u'agre', u'north', u'korean', u'sanction']
[u'valentin', u'head', u'indigen', u'communiti', u'polic']
[u'school', u'promis', u'grant']
[u'govt', u'lodg', u'nativ', u'titl', u'challeng']
[u'govt', u'offer', u'citi', u'shire', u'merger', u'fund']
[u'opposit', u'air', u'yarragade', u'aquif', u'worri']
[u'revok', u'incompet', u'doctor', u'licenc']
[u'warmer', u'weather', u'sign', u'climat', u'chang']
[u'water', u'shortag', u'pose', u'problem', u'citrus', u'grower']
[u'wheat', u'grower', u'seek', u'fairer', u'price', u'veto']
[u'windi', u'strike', u'boost', u'qualifi', u'hop']
[u'wind', u'hobart', u'blaze']
[u'woman', u'court', u'drug', u'charg']
[u'work', u'group', u'consid', u'busselton', u'jetti', u'feedback']
[u'yallourn', u'worker', u'lockout', u'continu']
[u'fire', u'burn']
[u'dead', u'flood', u'burma', u'thailand']
[u'iraqi', u'die', u'start', u'studi']
[u'bureaucrat', u'perman', u'post']
[u'graze', u'plan', u'prove', u'success', u'manag']
[u'aborigin', u'centr', u'call', u'gunn', u'fund']
[u'aborigin', u'mlas', u'martin', u'mutijulu', u'memo']
[u'acci', u'cautious', u'welcom', u'skill', u'packag']
[u'action', u'parti', u'back', u'coal', u'explor', u'oppon']
[u'lawyer', u'agog', u'rapist', u'year', u'jail', u'sentenc']
[u'adelaid', u'maher', u'hospit']
[u'offer', u'patel', u'charg', u'deal']
[u'angler', u'help', u'track', u'platypus', u'diseas']
[u'arnold', u'want', u'socceroo', u'time']
[u'arson', u'suspect', u'hobart', u'bushfir']
[u'australia', u'urg', u'join', u'world', u'largest', u'experi']
[u'balines', u'unfurl', u'cloth', u'mark', u'bomb']
[u'bank', u'report', u'profit', u'jump']
[u'resort', u'plan', u'near', u'scottsdal']
[u'bioreactor', u'oppon', u'suggest', u'altern', u'site']
[u'bomb', u'threat', u'forc', u'tilt', u'train', u'evacu']
[u'bundaberg', u'sugar', u'abandon', u'ethanol', u'plant', u'plan']
[u'bus', u'replac', u'train', u'track', u'repair']
[u'bushfir', u'flare', u'adelaid']
[u'bushfir', u'burn', u'control']
[u'bush', u'rule', u'north', u'korea', u'militari', u'action']
[u'busi', u'feel', u'impact', u'marin', u'park', u'studi']
[u'busi', u'tell', u'south', u'korean', u'invest']
[u'busi', u'urg', u'check', u'work', u'visa']
[u'centr', u'closur', u'criticis']
[u'campbel', u'tabl', u'amend', u'environ', u'law']
[u'capsicum', u'spray', u'necessari', u'break', u'brawl']
[u'crash', u'studi', u'reveal', u'need', u'chang', u'driver']
[u'warn', u'burn', u'off']
[u'stand', u'firebomb', u'locat', u'decis']
[u'charg', u'press', u'test']
[u'citrus', u'grower', u'decid']
[u'climat', u'chang', u'crop', u'yield']
[u'closer']
[u'closer']
[u'commiss', u'consid', u'electranet', u'transmiss', u'line']
[u'commiss', u'beat', u'pool', u'reopen']
[u'communiti', u'member', u'safeti']
[u'communiti', u'servic', u'culprit']
[u'conserv', u'council', u'voic', u'recycl', u'budget']
[u'coonan', u'welcom', u'media', u'law', u'passag']
[u'council', u'consid', u'underground', u'effluent', u'plan']
[u'council', u'urg', u'clean', u'ceremoni', u'site']
[u'court', u'quash', u'yunupingu', u'domest', u'violenc']
[u'court', u'reject', u'resid', u'guantanamo']
[u'court', u'set', u'payout', u'defam', u'minist']
[u'ask', u'apolog', u'council', u'racist']
[u'crew', u'alert', u'high', u'danger']
[u'cyclon', u'warn', u'resid']
[u'affect', u'resid', u'unawar', u'compo']
[u'darwin', u'look', u'singapor', u'tropic', u'lead']
[u'disgrac', u'azharuddin', u'indian', u'honour']
[u'cattl', u'fee', u'test', u'draw', u'attent']
[u'clear', u'hendra', u'virus', u'handl']
[u'drink', u'drive', u'fund', u'transport']
[u'drown', u'death', u'rise', u'report']
[u'east', u'timor', u'howard', u'discuss', u'secur']
[u'elli', u'resum', u'giant', u'battl']
[u'employ', u'figur', u'boost', u'chanc', u'rat', u'rise']
[u'environment', u'concern', u'surround', u'road', u'plan']
[u'expert', u'seek', u'govern', u'attent', u'adhd']
[u'exxonmobil', u'compliment', u'carpent', u'polici']
[u'feedlot', u'group', u'seek', u'grain', u'price', u'rise']
[u'fijian', u'polic', u'hunt', u'conman', u'foster']
[u'firefight', u'tackl', u'snake', u'valley']
[u'servic', u'battl', u'cessnock', u'blaze']
[u'threat', u'eas']
[u'threaten', u'hobart', u'home']
[u'pip', u'lay', u'water', u'grid']
[u'fish', u'stock', u'affect', u'water']
[u'footi', u'club', u'order', u'soun', u'park']
[u'forb', u'rememb', u'bali', u'dead']
[u'palestinian', u'kill', u'isra', u'strike']
[u'french', u'firm', u'clear', u'takeov']
[u'french', u'vote', u'adopt', u'armenia', u'genocid']
[u'fund', u'offer', u'farm', u'initi']
[u'fund', u'support', u'school', u'renov', u'plan']
[u'gorrel', u'join', u'catalan']
[u'governor', u'visit', u'see', u'import']
[u'govt', u'announc', u'skill', u'packag']
[u'govt', u'claim', u'credit', u'unemploy', u'rate']
[u'govt', u'make', u'poki', u'reduct', u'pledg']
[u'govt', u'offer', u'extra', u'albani', u'waterfront']
[u'govt', u'train', u'voucher', u'posit', u'respons']
[u'govt', u'halv', u'council', u'rat', u'drought', u'affect']
[u'govt', u'urg', u'boost', u'rural', u'counsellor', u'fund']
[u'govt', u'urg', u'rail', u'line', u'revamp', u'plan']
[u'green', u'reject', u'plan', u'landfil', u'site']
[u'hanson', u'sue', u'recov', u'elector', u'fund']
[u'hayden', u'target', u'world']
[u'health', u'servic', u'reject', u'doctor', u'claim']
[u'health', u'servic', u'urg', u'apologis', u'son', u'death']
[u'hospit', u'rehab', u'unit', u'close']
[u'howard', u'announc', u'skill', u'packag']
[u'howard', u'maintain', u'commit', u'solomon']
[u'howard', u'announc', u'skill', u'packag']
[u'illawarra', u'resid', u'consid', u'stand']
[u'indian', u'polic', u'question', u'gibb']
[u'group', u'case', u'airport']
[u'strike', u'deal', u'crew', u'disput']
[u'john', u'aloisi']
[u'johnson', u'miln', u'stay']
[u'judg', u'back', u'govt', u'pine', u'break']
[u'kalgoorli', u'senior', u'get', u'award']
[u'kangaroo', u'debut', u'wont', u'overaw', u'stuart']
[u'kangaroo', u'island', u'blaze', u'contain']
[u'kiwi', u'lead', u'netbal', u'test']
[u'lara', u'sound', u'champion', u'trophi', u'warn']
[u'lavarch', u'tight', u'lip', u'view', u'patel', u'deal']
[u'light', u'plane', u'crash', u'spark', u'panic', u'york']
[u'local', u'choos', u'restaur', u'lesse']
[u'locust', u'prompt', u'call', u'farmer', u'vigil']
[u'inflat', u'rbas', u'prioriti', u'howard']
[u'mackay', u'tourism', u'seek', u'showground', u'certainti']
[u'magistr', u'throw', u'charg', u'biki']
[u'face', u'court', u'fatal', u'stab']
[u'give', u'year', u'jail', u'order', u'gang', u'rape']
[u'market', u'weaker', u'energi', u'retail', u'loss']
[u'martin', u'urg', u'resign', u'mutijulu', u'claim']
[u'media', u'law', u'debat', u'gag']
[u'media', u'taunt', u'bungl', u'england']
[u'melbourn', u'temperatur', u'near', u'record', u'high']
[u'melbourn', u'water', u'possibl']
[u'memori', u'unveil', u'bali', u'bomb']
[u'mildura', u'supermarket', u'sell', u'wine']
[u'militari', u'offici', u'retir', u'bureaucrat', u'domin']
[u'miner', u'memori', u'design', u'choos']
[u'mine', u'expans', u'affect', u'water', u'resourc']
[u'minist', u'anxious', u'hospit', u'plan']
[u'minist', u'beat', u'solv', u'dubbo', u'hospit']
[u'miss', u'safe']
[u'crew', u'send', u'battl', u'kosciuszko']
[u'home', u'buyer', u'enter', u'market']
[u'polic', u'expect', u'timor']
[u'mourner', u'angri', u'delay', u'justic', u'bali']
[u'frown', u'donger', u'meet', u'hous', u'shortag']
[u'promis', u'monitor', u'govern']
[u'welcom', u'bypass', u'road', u'progress']
[u'netbal', u'break', u'tran', u'tasman', u'lose', u'streak']
[u'hous', u'mental', u'health', u'patient']
[u'polic', u'station', u'kalumburu']
[u'secur', u'camera', u'oper', u'soon']
[u'york', u'crash', u'prompt', u'terror', u'fear']
[u'york', u'plane', u'crash', u'spark', u'secur', u'scare']
[u'ngarrindjeri', u'elder', u'hunter', u'die']
[u'face', u'drug', u'traffic', u'charg', u'raid']
[u'nori', u'recognis', u'rail', u'trail', u'tourist', u'potenti']
[u'communiti', u'find', u'health', u'utopia']
[u'urg', u'address', u'water', u'manag', u'outag']
[u'opposit', u'want', u'bike', u'lane', u'remov']
[u'parasit', u'threaten', u'crab']
[u'parent', u'encourag', u'bing', u'drink', u'cultur']
[u'park', u'blaze', u'threaten', u'properti']
[u'parti', u'urg', u'rescu', u'chopper', u'stanc']
[u'philippin', u'militari', u'extrem', u'alert']
[u'pilbara', u'high', u'school', u'forc', u'cleaner']
[u'plane', u'crash', u'caus', u'secur', u'scare']
[u'unveil', u'skill', u'strategi']
[u'polic', u'challeng', u'pornographi', u'case', u'dismiss']
[u'polic', u'investig', u'pedestrian', u'death']
[u'polic', u'seek', u'help', u'catch', u'hoon']
[u'polic', u'tobacco', u'grower', u'meet', u'request']
[u'public', u'urg', u'help', u'hammer', u'attack']
[u'block', u'death', u'deal']
[u'premier', u'admit', u'reject', u'patel', u'deal']
[u'seek', u'review', u'staff', u'level']
[u'ramo', u'horta', u'back', u'region', u'secur', u'assist']
[u'chief', u'hint', u'rate', u'rise']
[u'governor', u'hint', u'rat', u'rise']
[u'report', u'expect', u'manyana', u'land', u'rezon']
[u'report', u'highlight', u'nation', u'math', u'teacher', u'shortag']
[u'resid', u'brace', u'bushfir', u'near', u'hobart']
[u'resort', u'buyer', u'pledg', u'preserv', u'build']
[u'review', u'find', u'room', u'improv', u'council', u'financi']
[u'river', u'contamin', u'worri', u'oyster', u'grower']
[u'road', u'crash', u'famili', u'continu', u'treatment']
[u'road', u'mishap', u'rise']
[u'rural', u'women', u'celebr', u'western']
[u'face', u'toughest', u'water', u'restrict']
[u'sale', u'hear', u'push', u'climat', u'chang', u'strategi']
[u'search', u'miss', u'child', u'begin']
[u'aust', u'face', u'emerg']
[u'australia', u'grip', u'emerg']
[u'secur', u'camera', u'watch', u'region', u'taxi']
[u'senat', u'pass', u'media', u'law', u'overhaul']
[u'servic', u'mark', u'bali', u'bomb', u'anniversari']
[u'simultan', u'raid', u'link', u'money', u'launder']
[u'defend', u'journalist', u'reportag', u'despit']
[u'socceroo', u'finish', u'asian', u'group']
[u'solomon', u'surviv', u'confid', u'vote']
[u'solomon', u'polic', u'investig', u'moti', u'escap']
[u'stadium', u'task', u'forc', u'head', u'appeal', u'manag']
[u'stefaniak', u'seek', u'sexual', u'assault', u'reform']
[u'storm', u'displac', u'famili', u'home']
[u'stosur', u'win', u'moscow']
[u'string', u'pearl', u'adorn', u'saturn']
[u'strong', u'wind', u'kangaroo', u'blaze']
[u'strong', u'wind', u'bushfir']
[u'sugar', u'flag', u'golf', u'ball', u'make']
[u'suncorp', u'offer', u'promina']
[u'survey', u'put', u'iraq', u'death', u'count']
[u'home', u'threaten', u'wind', u'fire']
[u'tasmania', u'face', u'worst', u'condit']
[u'director', u'audit', u'releas']
[u'telstra', u'bring', u'network', u'riverina']
[u'theft', u'incid', u'decreas', u'polic', u'action']
[u'thorp', u'admit', u'struggl', u'adapt']
[u'thousand', u'affect', u'power', u'outag']
[u'thousand', u'flock', u'look', u'launceston']
[u'thousand', u'litr', u'diesel', u'steal', u'park']
[u'tiger', u'rooster', u'upstag', u'chariti', u'shield']
[u'timet', u'chang', u'prompt', u'rail', u'cross', u'warn']
[u'train', u'hit', u'dead']
[u'train', u'fund', u'eas', u'skill', u'shortag']
[u'train', u'line', u'remain', u'close', u'hour']
[u'train', u'passeng', u'dark', u'bomb', u'threat']
[u'tree', u'farm', u'award']
[u'tribut', u'offer', u'parliament', u'bali', u'bomb']
[u'turkish', u'novelist', u'win', u'nobel', u'literatur']
[u'unemploy', u'hit', u'year']
[u'deni', u'payer', u'jump', u'queue']
[u'univers', u'grant', u'boost', u'research']
[u'fighter', u'jet', u'scrambl', u'plane', u'crash']
[u'seek', u'quick', u'vote', u'north', u'korean', u'sanction']
[u'firefight', u'battl', u'bushfir']
[u'vline', u'trail', u'derail', u'investig']
[u'voss', u'set', u'intern', u'swansong']
[u'polic', u'beat', u'indigen', u'polic', u'review']
[u'warmer', u'water', u'fish', u'stock']
[u'warra', u'resid', u'face', u'outdoor', u'water']
[u'wellington', u'put', u'focus', u'climat', u'chang']
[u'wildcat', u'streak', u'aliv']
[u'wind', u'gippsland', u'blaze']
[u'wind', u'terrain', u'hamper', u'fight', u'effort']
[u'yanke', u'pitcher', u'kill', u'plane', u'crash']
[u'crew', u'prepar', u'horror', u'afternoon']
[u'agforc', u'urg', u'drought', u'flexibl']
[u'alarm', u'rise', u'infect', u'rate']
[u'alic', u'win', u'award', u'promot', u'multicultur']
[u'amish', u'school', u'demolish', u'shoot']
[u'anti', u'aust', u'sentiment', u'rule', u'solomon', u'unrest']
[u'studi', u'suggest', u'rate', u'elder', u'fall']
[u'arsonist', u'respons', u'subway', u'shop', u'blaze']
[u'aurukun', u'monitor', u'mornington', u'council']
[u'aussi', u'dollar', u'rise', u'amid', u'encourag', u'figur']
[u'aust', u'help', u'search', u'north', u'korean', u'ship']
[u'australia', u'help', u'enforc', u'sanction', u'north', u'korea']
[u'baddeley']
[u'bangladesh', u'banker', u'poor', u'nobel', u'peac']
[u'bendigo', u'record', u'record', u'octob', u'heat']
[u'bird', u'simul', u'test', u'australia', u'respons']
[u'blackburn', u'boss', u'keen', u'sort', u'neill', u'futur']
[u'bombala', u'hunt']
[u'brother', u'charg', u'fals', u'kidnap', u'claim']
[u'bullet', u'cruis', u'past']
[u'bull', u'crash', u'gabba']
[u'bushfir', u'continu', u'burn', u'state']
[u'busi', u'chamber', u'back', u'skill', u'packag']
[u'byron', u'councillor', u'fear', u'brothel', u'impact']
[u'cambodian', u'see', u'wagga', u'agricultur', u'innov']
[u'camouflag', u'speed', u'camera', u'grab', u'cash']
[u'cancer', u'council', u'push', u'playground', u'shade', u'cloth']
[u'capilano', u'offer', u'support', u'sweeten', u'sack']
[u'centenarian', u'anti', u'age', u'breakthrough']
[u'central', u'aust', u'face', u'major', u'risk']
[u'central', u'west', u'council', u'drought', u'action']
[u'cereal', u'farmer', u'head', u'north']
[u'citrus', u'grower', u'seek', u'support']
[u'closer']
[u'cobar', u'meet', u'seek', u'nativ', u'vege', u'chang']
[u'concern', u'govt', u'slow', u'park', u'develop', u'boom']
[u'contest', u'give', u'amateur', u'film', u'maker', u'hour']
[u'cooler', u'weather', u'help', u'firefight']
[u'coron', u'urg', u'window', u'washer']
[u'cost', u'forc', u'council', u'limit', u'develop', u'panel']
[u'council', u'await', u'templ', u'tourism', u'decis']
[u'council', u'hop', u'land', u'firm', u'pilot', u'train', u'program']
[u'countri', u'hour', u'highlight']
[u'crew', u'contain', u'east', u'hobart', u'fire']
[u'croc', u'hang', u'noos']
[u'csiro', u'warn', u'increas', u'bushfir', u'threat']
[u'dairi', u'group', u'warn', u'milk', u'suppli', u'drop']
[u'delahunti', u'unhappi', u'drought', u'deal']
[u'demand', u'renew', u'energi', u'surg']
[u'draw', u'good', u'lazaridi']
[u'drought', u'land', u'valu', u'increas']
[u'drought', u'push', u'bush', u'recess']
[u'drought', u'forc', u'revis', u'usda', u'wheat', u'forecast']
[u'drought', u'lift', u'suicid', u'rat', u'kennett']
[u'drought', u'outlook', u'grim']
[u'dungog', u'councillor', u'accus', u'code', u'conduct']
[u'nino', u'delay', u'cyclon', u'activ']
[u'england', u'ruffl', u'rooney', u'feather']
[u'fan', u'feel', u'pain', u'spain']
[u'farmer', u'spend', u'natur', u'resourc', u'manag']
[u'farmer', u'meet', u'drought', u'respons']
[u'farmer', u'urg', u'speed', u'wimmera', u'malle', u'pipelin']
[u'fear', u'monaro', u'rural', u'counsel', u'access']
[u'feder', u'court', u'sit', u'pilbara', u'hear', u'rail']
[u'chief', u'honour', u'volunt', u'firefight']
[u'fire', u'continu', u'blaze', u'state']
[u'threaten', u'eastern', u'hobart']
[u'flintoff', u'lead', u'england', u'warm']
[u'franc', u'armenian', u'genocid', u'anger', u'turkey']
[u'french', u'outrag', u'turkey']
[u'fund', u'announc', u'pittsworth', u'technolog', u'centr']
[u'gift', u'children', u'support', u'workshop', u'tour', u'region']
[u'gold', u'coast', u'penthous', u'sell']
[u'govt', u'deni', u'alcohol', u'chang', u'mean', u'death', u'knell']
[u'govt', u'fail', u'rein', u'inflat']
[u'govt', u'plan', u'fine', u'employ', u'work', u'visa', u'breach']
[u'govt', u'pledg', u'water', u'fund']
[u'govt', u'protect', u'strzelecki', u'forest']
[u'govt', u'warn', u'worst', u'drought']
[u'govt', u'wont', u'bail', u'scienc', u'centr']
[u'gympi', u'take', u'anti', u'fight', u'canberra']
[u'settl', u'breastfe', u'disput']
[u'health', u'author', u'search', u'measl', u'suffer']
[u'hear', u'aim', u'hospit', u'staff']
[u'high', u'school', u'enforc', u'school', u'pool', u'rule']
[u'hobart', u'resid', u'urg', u'limit', u'water']
[u'hoon', u'damag', u'gold', u'club', u'turf']
[u'hope', u'altern', u'build', u'product']
[u'hospit', u'visitor', u'urg', u'wash', u'hand', u'reduc']
[u'howard', u'back', u'north', u'korean', u'sanction']
[u'howard', u'urg', u'calm', u'drought', u'take', u'hold']
[u'indigen', u'communiti', u'close']
[u'indigen', u'consult', u'bodi', u'hold', u'meet']
[u'iraq', u'blast', u'kill', u'polic', u'command']
[u'isra', u'attack', u'kill', u'gaza', u'strip']
[u'agenc', u'skill', u'packag']
[u'junk', u'food', u'hit', u'child', u'health', u'expert']
[u'king', u'look', u'settl', u'score']
[u'kosciuszko', u'blaze', u'burn', u'week']
[u'kyoto', u'protocol', u'wont', u'solv', u'drought', u'crisi', u'campbel']
[u'labor', u'outlin', u'plan', u'stop', u'exploit']
[u'lavarch', u'regret', u'patel', u'deal', u'silenc']
[u'leisur', u'centr', u'plan', u'display']
[u'liber', u'contest', u'elector']
[u'livestock', u'number', u'prompt', u'saleyard', u'chang']
[u'live', u'murray', u'group', u'boost', u'understand', u'local']
[u'price', u'prompt', u'call', u'boycott']
[u'macquari', u'radio', u'fear', u'media', u'chang']
[u'madonna', u'allow', u'malawi', u'orphan', u'home']
[u'magistr', u'biki', u'gang', u'member', u'decis', u'disappoint']
[u'male', u'fertil', u'drop', u'studi', u'show']
[u'arrest', u'miss', u'person', u'case']
[u'charg', u'leav', u'daughter']
[u'hospitalis', u'death', u'adder', u'attack']
[u'hospitalis', u'death', u'adder', u'bite']
[u'jail', u'accid', u'macquari']
[u'jail', u'cannabi', u'stash']
[u'jail', u'rape', u'kidnap']
[u'plead', u'guilti', u'murder', u'child']
[u'manslaught', u'mother', u'need', u'assist']
[u'marin', u'overpow']
[u'maroochi', u'council', u'open', u'consid']
[u'mcclennan', u'look', u'clinic', u'approach']
[u'media', u'reform', u'spur', u'takeov', u'accc']
[u'melb', u'suburb', u'recycl']
[u'hospitalis', u'boat', u'capsiz']
[u'meninga', u'stay', u'maroon']
[u'meningococc', u'vaccin', u'test', u'near']
[u'mine', u'energi', u'gain', u'boost', u'market']
[u'minist', u'call', u'investig', u'cave']
[u'monitor', u'critic', u'shoot', u'investig']
[u'guantanamo', u'releas']
[u'want', u'ambul', u'equip', u'upgrad']
[u'murray', u'sunset', u'park', u'blaze', u'contain']
[u'mushroom', u'farm', u'pine', u'plantat', u'damag', u'blaze']
[u'naturopath', u'arrest', u'follow', u'sexual', u'assault']
[u'nelson', u'outlin', u'time', u'line', u'revamp']
[u'nelson', u'rule', u'iraq', u'troop', u'withdraw']
[u'newcastl', u'court', u'human', u'growth']
[u'korea', u'warn', u'japan', u'sanction']
[u'thai', u'tank', u'danc', u'girl']
[u'defend', u'record', u'tackl', u'water', u'shortag']
[u'approv', u'mcarthur', u'expans']
[u'indigen', u'urg', u'push']
[u'nurs', u'vote', u'industri', u'action', u'staff']
[u'women', u'miss', u'breast', u'cancer', u'test']
[u'orang', u'base', u'hospit', u'tender', u'whittl']
[u'parasit', u'bolster', u'call', u'seafood', u'import']
[u'parliament', u'pass', u'secur', u'hospit', u'land']
[u'patel', u'patient', u'seek', u'answer', u'decis']
[u'perren', u'steadi', u'bull']
[u'perth', u'arrest', u'thailand', u'child', u'porn']
[u'pioneer', u'merger', u'expect', u'help', u'expans']
[u'plan', u'moot', u'turn', u'hostel', u'indigen', u'footi']
[u'plate', u'movement', u'blame', u'tremor', u'darwin']
[u'polic', u'hold', u'fear', u'miss', u'girl']
[u'polic', u'seek', u'help', u'identifi', u'school', u'arsonist']
[u'polic', u'seek', u'help', u'investig']
[u'polic', u'union', u'apolog', u'witch', u'hunt', u'claim']
[u'premier', u'clash', u'drought', u'respons']
[u'premier', u'bicker', u'drought', u'respons']
[u'push', u'quick', u'north', u'korean', u'sanction', u'falter']
[u'govt', u'farmer', u'destroy', u'smut', u'infest']
[u'select', u'uncertain', u'sunday', u'game']
[u'radio', u'station', u'air', u'media', u'worri']
[u'rasmussen', u'debut', u'lightn']
[u'red', u'open', u'campaign', u'home']
[u'referendum', u'date', u'know', u'soon', u'plan', u'local', u'govt']
[u'region', u'urg', u'tougher', u'melbourn', u'water']
[u'retrain', u'aim', u'protect', u'math', u'teacher']
[u'rout', u'chang', u'tourist', u'railway']
[u'sadist', u'offend', u'avoid', u'indefinit', u'sentenc']
[u'safework', u'audit', u'auto', u'fitter']
[u'african', u'broadcast', u'block', u'critic']
[u'saleyard', u'break', u'livestock', u'record']
[u'school', u'swim', u'lesson', u'threat']
[u'scientist', u'warn', u'worst', u'drought']
[u'second', u'rhodium', u'investig', u'launch']
[u'offend', u'jail', u'abus', u'girl']
[u'skill', u'packag', u'trade', u'hall', u'council']
[u'korea', u'china', u'reach', u'north', u'korea', u'agreement']
[u'solomon', u'govt', u'threaten', u'expel', u'australian']
[u'solomon', u'support', u'moti', u'caus', u'divis']
[u'spida', u'pleas', u'north']
[u'spida', u'swan', u'tarrant', u'docker']
[u'spirit', u'closur', u'strain', u'devonport', u'busi']
[u'stanhop', u'award', u'justic', u'prize']
[u'state', u'urg', u'reserv', u'bank', u'rate', u'rise']
[u'studi', u'find', u'bowel', u'cancer', u'dead', u'women']
[u'studi', u'highlight', u'roebuck', u'wildlif', u'divers']
[u'submiss', u'close', u'hale', u'bridg']
[u'suicid', u'bomber', u'kill', u'afghan']
[u'symond', u'watson', u'lead', u'practic']
[u'taiwan', u'presid', u'surviv', u'ouster']
[u'inquiri', u'hear', u'auditor', u'concern', u'scheme']
[u'teen', u'charg', u'train', u'bomb', u'hoax']
[u'thailand', u'insist', u'problem', u'asian', u'host']
[u'tiger', u'bull', u'gabba']
[u'tiger', u'command', u'gabba']
[u'tunnel', u'stormwat', u'irrig', u'sydney', u'park']
[u'turkish', u'author', u'award', u'nobel', u'prize']
[u'turkish', u'press', u'half', u'heart', u'celebr']
[u'arson', u'suspect', u'charg']
[u'charg', u'polic', u'crash']
[u'armi', u'chief', u'say', u'iraq', u'withdraw', u'need', u'soon']
[u'union', u'critic', u'govt', u'high', u'school', u'clean', u'stanc']
[u'union', u'reject', u'wage', u'polici']
[u'stall', u'north', u'korea', u'action']
[u'amend', u'draft', u'north', u'korea', u'resolut']
[u'troop', u'unlaw', u'kill', u'journalist', u'coron']
[u'vasiljkov', u'extradit', u'challeng', u'postpon']
[u'blaze', u'threaten', u'properti']
[u'chardonnay', u'win', u'adelaid', u'show', u'drop']
[u'farmer', u'drought', u'assist', u'packag']
[u'vicfir', u'open']
[u'fire', u'continu', u'rage']
[u'flag', u'tougher', u'water', u'limit']
[u'govt', u'defend', u'record', u'wetland', u'protect']
[u'grower', u'miss', u'wheat', u'price', u'flow']
[u'warrior', u'post', u'open']
[u'warrior', u'solid', u'target']
[u'water', u'crisi', u'spur', u'piddl', u'fund', u'state']
[u'water', u'initi', u'room', u'improv', u'report']
[u'water', u'year', u'ban']
[u'water', u'trade', u'plan', u'damag', u'countri', u'town', u'joyc']
[u'webb', u'trail', u'leader', u'california']
[u'winegrow', u'bodi', u'urg', u'unit', u'sell', u'group']
[u'wit', u'seek', u'hit']
[u'work', u'start', u'nation', u'biggest', u'wind', u'farm']
[u'young', u'nation', u'union']
[u'zidan', u'name', u'player', u'year', u'shortlist']
[u'kill', u'gaza', u'isra', u'offens', u'continu']
[u'miss', u'ship', u'collid', u'china', u'gorg']
[u'acclaim', u'businesswoman', u'win', u'literari', u'award']
[u'busi', u'group', u'welcom', u'rhodium', u'inquiri']
[u'deni', u'sport', u'fund', u'cut', u'reduc']
[u'adelaid', u'good', u'ranger']
[u'afghan', u'governor', u'escap', u'assassin', u'attempt']
[u'anti', u'violenc', u'squad', u'patrol', u'sydney', u'beach']
[u'australian', u'monitor', u'timor', u'elect']
[u'author', u'warn', u'extrem', u'danger']
[u'figur', u'face', u'crimin', u'charg']
[u'backyard', u'menac', u'hide', u'diva']
[u'bangladesh', u'score', u'consol']
[u'beatti', u'shift', u'blame', u'patel', u'case', u'opposit']
[u'blair', u'back', u'armi', u'chief', u'iraq', u'pull']
[u'brumbi', u'player', u'finger', u'amput']
[u'bull', u'troubl', u'gabba']
[u'bull', u'fight', u'tiger']
[u'bush', u'sign', u'curb', u'onlin', u'gambl']
[u'cap', u'unbeaten', u'open', u'account']
[u'cigarett', u'like', u'caus', u'fatal', u'hous']
[u'citizen', u'flee', u'iraq', u'violenc', u'worsen']
[u'clarenc', u'truck', u'steal', u'damag']
[u'closer']
[u'closer']
[u'coalit', u'singl', u'desk', u'address', u'nation']
[u'cool', u'chang', u'help', u'extinguish', u'sydney', u'grass', u'fire']
[u'cooler', u'condit', u'victorian', u'firefight']
[u'crew', u'battl', u'grass', u'fire', u'south', u'west']
[u'crew', u'hope', u'weather', u'forecast', u'quell']
[u'crimin', u'charg', u'await', u'figur']
[u'cum', u'take', u'fifth', u'guinea']
[u'doubl', u'bogey', u'cost', u'baddeley']
[u'drought', u'relief', u'domin', u'nation', u'confer']
[u'everton', u'boss', u'furious', u'late', u'cahil']
[u'thai', u'leader', u'thaksin', u'return', u'exil']
[u'farmer', u'demoralis', u'drought']
[u'farm', u'bodi', u'say', u'water', u'threaten']
[u'favour', u'weather', u'aid', u'crew', u'make']
[u'prepar', u'scorcher']
[u'flintoff', u'rush', u'bowl']
[u'flood', u'water', u'threaten', u'thai', u'world', u'heritag', u'templ']
[u'fossilis', u'micro', u'embryo', u'shed', u'light', u'complex']
[u'gerran', u'retain', u'cycl', u'titl']
[u'govern', u'blame', u'scienc', u'centr', u'closur']
[u'govt', u'commit', u'cut', u'road', u'death']
[u'hobart', u'school', u'reach', u'workplac', u'deal', u'child']
[u'inquiri', u'order', u'alleg', u'guantanamo', u'abus']
[u'intestin', u'ailment', u'turn', u'stomach']
[u'japan', u'close', u'port', u'north', u'korea']
[u'kangaroo', u'win', u'start']
[u'kangaroo', u'win', u'start', u'nation']
[u'latrob', u'launceston', u'nurs', u'join', u'strike']
[u'lawyer', u'vote', u'condemn', u'govt', u'treatment', u'hick']
[u'liber', u'call', u'commiss', u'probe', u'alleg']
[u'lockyer', u'wari', u'desper', u'kiwi']
[u'charg', u'wife', u'murder', u'year']
[u'mauresmo', u'sharapova', u'exit', u'moscow']
[u'mcgrath', u'peak', u'ash', u'buchanan']
[u'mexican', u'archaeologist', u'largest', u'aztec', u'figur']
[u'mock', u'terror', u'exercis', u'plan', u'adelaid']
[u'nalbandian', u'upset', u'roddick', u'vienna']
[u'nation', u'vote', u'support', u'singl', u'desk']
[u'nato', u'soldier', u'die', u'afghan', u'suicid', u'blast']
[u'nat', u'open']
[u'netbal', u'keen', u'close', u'seri']
[u'secretari', u'general', u'elect']
[u'ireland', u'power', u'share', u'deal', u'unveil']
[u'nobel', u'donat', u'bangladeshi', u'poverti', u'project']
[u'nobel', u'peac', u'prize', u'winner', u'name']
[u'govt', u'dismiss', u'water', u'manag', u'critic']
[u'histori', u'book', u'prize', u'winner', u'bring', u'fresh']
[u'oppn', u'question', u'valid', u'water', u'project']
[u'pair', u'kill', u'crash', u'remot', u'highway']
[u'offer', u'unlik', u'retain', u'doctor', u'say']
[u'peacekeep', u'prepar', u'timor', u'unrest']
[u'pentagon', u'reject', u'verdict', u'kill', u'british']
[u'perth', u'polic', u'investig', u'suspect', u'drive']
[u'perus', u'shin', u'path', u'founder', u'sentenc', u'life']
[u'stop', u'cole', u'investig', u'govt', u'minist', u'rudd']
[u'polic', u'probe', u'caus', u'hobart', u'bushfir']
[u'polic', u'search', u'steal', u'gunpoint']
[u'pope', u'tell', u'italian', u'defend', u'tradit', u'famili']
[u'pringl', u'face', u'fierc', u'preselect', u'contest']
[u'pringl', u'lose', u'hawkesburi', u'select', u'battl']
[u'defend', u'water', u'manag', u'record']
[u'reliev', u'jet', u'thump', u'knight']
[u'rescu', u'fisher', u'releas', u'hospit']
[u'resid', u'urg', u'prepar', u'tough', u'bushfir']
[u'rudd', u'critic', u'solomon', u'respons']
[u'rudd', u'criticis', u'downer', u'approach', u'solomon']
[u'rwanda', u'rule', u'parti', u'back', u'death', u'penalti', u'abolit']
[u'safeti', u'warn', u'fishermen', u'boat', u'death']
[u'labor', u'hold', u'confer', u'amid', u'right']
[u'scientist', u'discov', u'aborigin', u'rock', u'site']
[u'scientist', u'uncov', u'aborigin', u'site']
[u'secur', u'council', u'agre', u'north', u'korea', u'sanction']
[u'secur', u'council', u'vote', u'north', u'korean', u'resolut']
[u'silver', u'fern', u'squar', u'seri']
[u'skateboard', u'road', u'set', u'world', u'record']
[u'korea', u'hop', u'chief', u'help', u'resolv']
[u'slater', u'win', u'eighth', u'world', u'titl']
[u'sogavar', u'refus', u'withdraw', u'ramsi', u'threat']
[u'sogavar', u'threaten', u'aust', u'mission', u'solomon']
[u'solomon', u'threaten', u'refus', u'australian']
[u'solomon', u'threaten', u'shun', u'aust']
[u'spirit', u'demis', u'cost', u'devonport', u'busi']
[u'lanka', u'humbl', u'west', u'indi']
[u'stoner', u'set', u'pace', u'portugues']
[u'sydney', u'memori', u'hold', u'victim', u'lebanon']
[u'symond', u'back', u'watson', u'open']
[u'taipan', u'steal', u'king']
[u'tarrant', u'eas', u'pressur', u'pavlich']
[u'terri', u'hick', u'welcom', u'resolut', u'lawyer', u'group']
[u'thornton', u'stay', u'blue']
[u'tiger', u'inning', u'point', u'bull']
[u'toddler', u'drown']
[u'triathlon', u'world', u'champ', u'ban', u'miss', u'test']
[u'truss', u'say', u'charg', u'disappoint']
[u'turkey', u'accus', u'armenia', u'fire', u'territori']
[u'armi', u'chief', u'insist', u'britain', u'stay', u'iraq']
[u'ireland', u'propos', u'step', u'irish', u'deal']
[u'rule', u'larg', u'scale', u'iraq', u'withdraw']
[u'agre', u'north', u'korea', u'sanction']
[u'chief', u'hail', u'south', u'korean', u'successor']
[u'vote', u'test', u'point', u'north', u'korea', u'claim']
[u'vote', u'north', u'korea', u'resolut']
[u'stock', u'week', u'high']
[u'investig', u'guantanamo', u'abus', u'boast']
[u'vail', u'promis', u'billion', u'dollar', u'drought', u'packag']
[u'vanston', u'unveil', u'photo', u'exhibit', u'kick']
[u'blaze', u'control', u'line']
[u'mart', u'fin', u'labour', u'breach']
[u'watson', u'insid', u'run', u'open', u'spot']
[u'webb', u'shot', u'lead', u'california']
[u'west', u'ham', u'ferdinand', u'arrest']
[u'xstrata', u'say', u'meet', u'environment', u'standard']
[u'mission', u'attract', u'skill', u'worker']
[u'recruit', u'plan', u'nation']
[u'afghan', u'gunmen', u'kidnap', u'italian', u'journalist']
[u'anti', u'poverti', u'week', u'prompt']
[u'launch', u'industri', u'scholarship']
[u'aussi', u'bika', u'lose', u'titl', u'fight']
[u'aussi', u'sheehan', u'victori', u'japan']
[u'aust', u'govt', u'welcom', u'north', u'korea', u'sanction']
[u'aust', u'govt', u'welcom', u'sanction', u'north', u'korea']
[u'author', u'probe', u'hobart', u'hous', u'break']
[u'blackburn', u'boss', u'prais', u'socceroo']
[u'bleiberg', u'wari', u'glori', u'attack']
[u'blue', u'redback', u'tough', u'chase']
[u'boswel', u'call', u'nation', u'uniti']
[u'boswel', u'call', u'uniti', u'nation', u'confer']
[u'breakthrough', u'battl', u'batteri', u'point', u'foreshor']
[u'british', u'school', u'suspend', u'teacher', u'muslim']
[u'bush', u'prais', u'vote', u'result']
[u'cabinet', u'consid', u'extens', u'farmer']
[u'boost', u'polic', u'number', u'dept', u'launch']
[u'cech', u'lucki', u'aliv', u'say', u'mourinho']
[u'chakvetadz', u'upset', u'petrova', u'kremlin', u'final']
[u'closer']
[u'closer']
[u'communic', u'biofuel', u'motion', u'back', u'nation']
[u'confer', u'tell', u'bird', u'risk', u'health', u'worker']
[u'cooler', u'condit', u'firefight']
[u'cycl', u'event', u'mar', u'heart', u'attack', u'pile']
[u'cyclist', u'ride', u'chariti']
[u'dalit', u'chang', u'religion', u'cast', u'protest']
[u'darwin', u'polic', u'hail', u'success', u'holiday', u'street']
[u'debham', u'defend', u'preselect', u'process', u'amid', u'candid']
[u'defenc', u'assoc', u'back', u'recruit', u'plan']
[u'defenc', u'forc', u'recruit', u'target', u'school', u'leaver']
[u'defenc', u'group', u'back', u'recruit', u'plan']
[u'demand', u'mine', u'worker', u'soar', u'report']
[u'doubl', u'blast', u'kill', u'baghdad']
[u'downer', u'cancel', u'meet', u'moti', u'affair']
[u'downer', u'suspend', u'ministeri', u'contact']
[u'downer', u'suspend', u'ministeri', u'visit']
[u'earthquak', u'rattl', u'south', u'tonga']
[u'elia', u'win', u'portug', u'rossi', u'assum', u'overal']
[u'elliott', u'borga', u'lead', u'redback', u'victori']
[u'dismiss', u'concern', u'vehicl', u'fleet', u'viabil']
[u'farmer', u'trial', u'camel', u'weed', u'battl']
[u'floor', u'kosmina', u'get', u'laugh']
[u'goosen', u'defend', u'titl', u'china']
[u'govt', u'dither', u'mcarthur', u'river', u'decis']
[u'govt', u'intent', u'resurrect', u'nation']
[u'govt', u'mull', u'navi', u'ship', u'offer', u'enforc', u'north', u'korea']
[u'griffith', u'high', u'follow', u'tassi']
[u'gronholm', u'boost', u'titl', u'hop', u'turkey']
[u'group', u'claim', u'underpass', u'design', u'flaw']
[u'group', u'say', u'govt', u'need', u'target', u'industri', u'harder']
[u'halv', u'combin', u'better', u'lockyer']
[u'hayden', u'scan', u'finger', u'injuri']
[u'haze', u'put', u'malaysia', u'firefli', u'wildlif', u'risk']
[u'holm', u'bateup', u'victori', u'coolangatta', u'gold']
[u'holm', u'bateup', u'coolangatta']
[u'honour', u'share', u'curri', u'final']
[u'hundr', u'rememb', u'siev', u'victim']
[u'isra', u'raid', u'kill']
[u'japan', u'hint', u'north', u'korean', u'sanction']
[u'kangaroo', u'leagu', u'test']
[u'king', u'land', u'titl', u'bangkok']
[u'landown', u'urg', u'clean', u'season']
[u'late', u'goal', u'salvag', u'draw', u'milan']
[u'major', u'blaze', u'control', u'victoria']
[u'charg', u'bike', u'track', u'sexual', u'assault']
[u'mason', u'vow', u'aveng', u'cheap', u'shoot']
[u'melbourn', u'face', u'stage', u'water', u'restrict']
[u'memori', u'servic', u'rememb', u'siev', u'tragedi']
[u'mine', u'industri', u'warn', u'skill', u'shortag']
[u'minist', u'warn', u'drought', u'drive', u'food', u'price']
[u'multicultur', u'festiv', u'attract', u'thousand']
[u'netbal', u'focus', u'seri', u'decid']
[u'korea', u'sanction', u'vote', u'pass']
[u'monitor', u'worst', u'crimin']
[u'opposit', u'question', u'patel', u'extradit', u'delay']
[u'physicist', u'hawk', u'star', u'movi']
[u'clarif', u'ministeri', u'contact', u'ban']
[u'polic', u'arrest', u'peopl', u'valley', u'crackdown']
[u'polic', u'defend', u'slow', u'respons', u'anti', u'terror']
[u'rain', u'help', u'firefight', u'kosciuszko']
[u'real', u'slip', u'defeat', u'ronaldo', u'see']
[u'roar', u'victori', u'glori']
[u'roger', u'north', u'warrior', u'control']
[u'roger', u'put', u'warrior', u'command']
[u'rossi', u'snatch', u'pole', u'portug']
[u'safin', u'set', u'russian', u'showdown', u'moscow']
[u'saint', u'claim', u'fifth', u'super', u'leagu', u'titl']
[u'labor', u'confer', u'defer', u'debat', u'uranium', u'polici']
[u'school', u'leaver', u'target', u'defenc', u'recruit']
[u'school', u'leaver', u'target']
[u'search', u'resum', u'miss']
[u'seven', u'arrest', u'polic', u'quell', u'strong', u'anti']
[u'siev', u'memori', u'organis', u'hope']
[u'siev', u'tragedi', u'rememb', u'canberra']
[u'sit', u'angri', u'liber', u'preselect', u'loss']
[u'springbok', u'debut', u'novemb']
[u'lanka', u'navi', u'sink', u'alleg', u'tiger', u'trawler']
[u'staff', u'shortag', u'junior', u'nurs', u'leadership']
[u'struggl', u'farmer', u'urg', u'miner']
[u'stuart', u'unconcern', u'test', u'brawl']
[u'sudan', u'eastern', u'rebel', u'sign', u'peac', u'deal']
[u'surgeri', u'brunswick', u'shoot']
[u'suspend', u'ministeri', u'visit', u'send', u'wrong']
[u'sydney', u'bulleen', u'post', u'comfort', u'win']
[u'thaksin', u'return', u'exil', u'thai']
[u'tiger', u'complet', u'crush', u'victori']
[u'tiger', u'verg', u'outright']
[u'tiger', u'place', u'outright']
[u'impos', u'sanction', u'north', u'korea']
[u'impos', u'trade', u'militari', u'sanction', u'north', u'korea']
[u'pmopen']
[u'respons', u'swift', u'tough', u'bush']
[u'unanim', u'approv', u'north', u'korea', u'sanction']
[u'viduka', u'cahil', u'target', u'premier', u'leagu']
[u'volunt', u'firefight', u'rais', u'vehicl', u'safeti']
[u'vote', u'rorter', u'wont', u'toler', u'say', u'beatti']
[u'driver', u'face', u'random', u'drug', u'test']
[u'memori', u'flag', u'australia', u'vietnam']
[u'warrior', u'good', u'start', u'bushrang']
[u'water', u'suppli', u'restor', u'lindisfarn', u'pipe']
[u'webb', u'slip', u'content', u'california']
[u'wembley', u'host', u'final', u'report']
[u'westgat', u'bridg', u'collaps', u'rememb']
[u'wildcat', u'maintain', u'win', u'start']
[u'medium', u'term', u'answer', u'canberra', u'water', u'shortag']
[u'goulburn', u'cathedr', u'restor']
[u'countri', u'nuclear', u'weapon', u'iaea']
[u'separ', u'south', u'coast', u'road', u'crash']
[u'hurt', u'pacif', u'highway', u'crash']
[u'receiv', u'editori', u'guidelin']
[u'accid', u'spark', u'soccer', u'goal', u'safeti', u'code']
[u'eye', u'oversea', u'worker', u'address', u'skill']
[u'alic', u'spring', u'see', u'lower', u'strength', u'alcohol']
[u'say', u'bureaucrat', u'inertia', u'stall', u'patient']
[u'urg', u'launceston', u'wood', u'heater']
[u'american', u'civilian', u'kill', u'iraq', u'violenc']
[u'analyst', u'say', u'infrastructur']
[u'anti', u'fluorid', u'campaign', u'issu', u'warn']
[u'arsonist', u'target', u'vacant', u'flat']
[u'aussi', u'sharpshoot', u'extend', u'clermont']
[u'aussi', u'seal', u'seri', u'silver', u'fern']
[u'aussi', u'strong', u'silver', u'fern']
[u'australia', u'south', u'pacif', u'condit']
[u'blame', u'drought', u'cut']
[u'barbaro', u'jail', u'arm', u'robberi']
[u'beach', u'access', u'feud', u'breakthrough']
[u'beatti', u'promis', u'vote', u'rort', u'claim']
[u'beazley', u'look', u'forward', u'parti', u'uranium', u'debat']
[u'beazley', u'wait', u'media', u'law', u'overhaul']
[u'beazley', u'confer', u'access', u'rule']
[u'better', u'wag', u'urg', u'age', u'care', u'worker']
[u'tinto', u'boost', u'share', u'market']
[u'blake', u'retain', u'stockholm', u'crown']
[u'bluefin', u'tuna', u'plunder', u'catch', u'japan']
[u'boe', u'accept', u'collect', u'agreement', u'worker']
[u'brown', u'seek', u'permiss', u'visit', u'hick']
[u'burk', u'push', u'labor', u'polici', u'review', u'tpvs']
[u'burma', u'resist', u'pressur', u'democratis']
[u'busi', u'night', u'alic', u'polic']
[u'caloundra', u'public', u'cut', u'water']
[u'campbel', u'beat', u'titan', u'train']
[u'casa', u'defend', u'plan', u'traine', u'pilot', u'fli', u'time']
[u'cattlemen', u'consid', u'live', u'cattl', u'option']
[u'chapman', u'name', u'gladston', u'councillor']
[u'chelsea', u'keeper', u'surgeri', u'fractur', u'skull']
[u'chickpea', u'grower', u'experi', u'bumper', u'crop']
[u'child', u'trial', u'energex', u'chairman', u'begin']
[u'christian', u'priest', u'shoot', u'dead', u'indonesia']
[u'citrus', u'grower', u'push', u'applic']
[u'clergymen', u'lose', u'appeal', u'extradit']
[u'closer']
[u'closer']
[u'closer']
[u'collingwood', u'johnson', u'face', u'court']
[u'compani', u'look', u'oversea', u'labour']
[u'corbi', u'half', u'brother', u'sentenc', u'home', u'invas']
[u'council', u'attend', u'local', u'govt', u'confer']
[u'court', u'dismiss', u'rise', u'porteous', u'prescript']
[u'crew', u'brace', u'weather', u'fire', u'subsid']
[u'crop', u'stubbl', u'blame', u'fuel', u'eyr', u'peninsula']
[u'earn', u'prais', u'mental', u'health', u'centr']
[u'debat', u'focus', u'citizenship', u'test', u'plan']
[u'defenc', u'plane', u'land', u'safe', u'emerg']
[u'dizzi', u'captain', u'england']
[u'donat', u'help', u'salvo']
[u'downer', u'mismanag', u'disput', u'say', u'labor']
[u'driver', u'die', u'crash', u'cane', u'tractor']
[u'drought', u'crush', u'moral', u'bourk']
[u'drought', u'grip', u'hunter']
[u'dubbo', u'student', u'hostel', u'reopen']
[u'durum', u'wheat', u'product']
[u'earthquak', u'hit', u'hawaii']
[u'earthquak', u'knock', u'hawaii', u'power']
[u'fund', u'extens', u'grant', u'surround']
[u'educ', u'see', u'vital', u'curb', u'crime']
[u'elliott', u'doubt', u'blue', u'clash']
[u'energex', u'chief', u'quit', u'amid', u'share', u'deal', u'probe']
[u'environ', u'dept', u'probe', u'toxic', u'chemic', u'concern']
[u'farmer', u'ralli', u'water', u'payment']
[u'farmer', u'urg', u'help', u'revers', u'climat', u'chang']
[u'farmer', u'welcom', u'drought', u'packag']
[u'farm', u'group', u'fear', u'impact', u'rate']
[u'feder', u'govt', u'offer', u'bendigo', u'water', u'recycl']
[u'firefight', u'black', u'nation', u'park', u'blaze']
[u'season', u'offici', u'start']
[u'threat', u'remain', u'despit', u'milder', u'condit']
[u'outbreak', u'exercis', u'test', u'nation', u'readi']
[u'ford', u'cut', u'product', u'broadmeadow']
[u'fraud', u'compani', u'increas']
[u'frost', u'hit', u'orchard']
[u'fund', u'reject', u'threaten', u'wollemi', u'research']
[u'gascoyn', u'senior', u'year', u'name']
[u'industri', u'lobbi', u'warn', u'tougher', u'regul']
[u'leak', u'prompt', u'emerg', u'crew']
[u'gaza', u'milit', u'warn', u'widen', u'offens']
[u'gippsland', u'face', u'level', u'water', u'restrict']
[u'global', u'warm', u'intensifi', u'drought', u'pattern', u'csiro']
[u'good', u'news', u'breast', u'cancer', u'rate']
[u'govt', u'announc', u'drought', u'packag']
[u'govt', u'ban', u'north', u'korean', u'ship', u'aust', u'port']
[u'govt', u'defend', u'decis', u'minist', u'visit']
[u'govt', u'flag', u'help', u'carer']
[u'govt', u'editori', u'polici', u'coonan']
[u'govt', u'school', u'leaver', u'recruit', u'drive']
[u'govt', u'talk', u'bunburi', u'emerg', u'servic']
[u'govt', u'restrict', u'high', u'food', u'sale', u'school']
[u'govt', u'unveil', u'drought', u'relief', u'packag']
[u'govt', u'urg', u'develop', u'improv', u'water', u'strategi']
[u'govt', u'urg', u'freez', u'land', u'acquisit']
[u'govt', u'urg', u'reduc', u'migrat', u'tape']
[u'grain', u'compani', u'feel', u'impact', u'drought']
[u'grazier', u'fin', u'nlis', u'breach']
[u'guidelin', u'counter', u'bias', u'claim']
[u'handpick', u'festiv', u'fail', u'live']
[u'hawk', u'prepar', u'clash']
[u'hayden', u'ash']
[u'helicopt', u'crash', u'near', u'bendigo']
[u'high', u'build', u'cost', u'forc', u'jail', u'size', u'reduct']
[u'hill', u'urg', u'meet', u'naracoort', u'hospit', u'fund']
[u'howard', u'back', u'nuclear', u'power', u'industri']
[u'indigen', u'concern', u'spark', u'bushwalk']
[u'injur', u'bond', u'rule', u'kiwi']
[u'rate', u'rise', u'delay', u'hous', u'sector']
[u'investig', u'launch', u'leak', u'sourc']
[u'iraq', u'attack', u'kill']
[u'iraq', u'violenc', u'escal']
[u'irrig', u'meet', u'consid', u'northern', u'crop']
[u'irrig', u'face', u'water', u'alloc']
[u'janett', u'howard', u'reveal', u'battl', u'cervic']
[u'kidwel', u'look', u'forward', u'face', u'mason']
[u'kimberley', u'urg', u'drought']
[u'king', u'resid', u'seek', u'wave', u'power', u'studi']
[u'kosmina', u'face', u'disciplinari', u'hear']
[u'labor', u'attempt', u'censur', u'iraq']
[u'labor', u'talk', u'confer', u'media', u'access', u'rule']
[u'launceston', u'runner', u'desert', u'marathon']
[u'lavarch', u'beatti', u'absent', u'patel', u'confus', u'mount']
[u'lion', u'nathan', u'lose', u'cooper', u'takeov', u'appeal']
[u'lion', u'club', u'gear', u'convent']
[u'lomu', u'deal', u'titan']
[u'macfarlan', u'endors', u'nuclear', u'energi']
[u'critic', u'woman', u'stabl', u'helicopt', u'crash']
[u'court', u'accus', u'servic', u'station']
[u'court', u'west', u'busselton', u'stab']
[u'mason', u'vow', u'play', u'pain']
[u'mayor', u'pleas', u'water', u'save', u'effort']
[u'mayor', u'highlight', u'drought', u'shortcom']
[u'media', u'content', u'requir', u'dog', u'breakfast']
[u'minist', u'recal', u'educ', u'chief', u'damn']
[u'minist', u'senior', u'polic', u'defend', u'benchmark']
[u'miss', u'safe']
[u'mix', u'reaction', u'school', u'canteen', u'sweet']
[u'train', u'place', u'need', u'busi', u'lobbi', u'say']
[u'scheme', u'aim', u'lure', u'teacher', u'bush']
[u'noosa', u'water', u'plan', u'anger', u'mayor']
[u'teenag', u'heed', u'skin', u'cancer', u'warn']
[u'abus', u'inquiri', u'offic', u'face', u'sack']
[u'nurs', u'industri', u'affect', u'hospit', u'surgeri']
[u'ochoa', u'down', u'sorenstam', u'desert', u'duel']
[u'field', u'riot', u'erupt', u'rugbi', u'tournament']
[u'opinion', u'vari', u'chang', u'cyclon', u'warn', u'scheme']
[u'opposit', u'seek', u'inquiri', u'pilot', u'licenc']
[u'pair', u'accus', u'assault', u'phone', u'theft']
[u'pakistan', u'recal', u'akhtar', u'asif', u'posit', u'dope']
[u'pakistan', u'recal', u'shoaib', u'asif', u'posit', u'test']
[u'tight', u'lip', u'network', u'takeov']
[u'perth', u'stand', u'record', u'attempt', u'aim', u'highlight']
[u'pineappl', u'anti', u'dump', u'measur', u'expand']
[u'plane', u'passeng', u'endur', u'emerg', u'ordeal']
[u'announc', u'drought', u'packag']
[u'back', u'nuclear', u'power', u'industri']
[u'resourc', u'minist', u'endors', u'nuclear', u'power']
[u'announc', u'drought', u'relief', u'packag']
[u'polic', u'appal', u'drunken', u'lout']
[u'polic', u'appeal', u'help', u'attempt', u'murder']
[u'polic', u'charg', u'robberi']
[u'polic', u'deni', u'govt', u'interfer']
[u'polic', u'investig', u'maroubra', u'alleg', u'racial', u'attack']
[u'polic', u'arrest', u'motorway', u'pursuit']
[u'polic', u'kayak', u'victim']
[u'poli', u'push', u'charg', u'israel', u'presid', u'rape']
[u'pope', u'turkey', u'trip', u'ahead']
[u'porteous', u'prescript', u'tamper', u'case', u'injustic']
[u'port', u'secur', u'alert', u'london', u'trip']
[u'project', u'look', u'mules', u'genet', u'altern']
[u'public', u'help', u'seek', u'fatal', u'motorcycl', u'crash']
[u'firefight', u'bushfir', u'watch']
[u'rapist', u'assess', u'method', u'inadequ', u'studi']
[u'ratten', u'join', u'blue', u'coach', u'panel']
[u'cross', u'urg', u'safeguard', u'blood', u'suppli']
[u'report', u'highlight', u'south', u'west', u'poverti']
[u'resourc', u'minist', u'endors', u'nuclear', u'option']
[u'heap', u'resourc', u'blaze', u'danger', u'period']
[u'claim', u'prompt', u'call', u'commission']
[u'robot', u'pioneer', u'win', u'scienc', u'prize']
[u'roger', u'north', u'verg', u'histori']
[u'roger', u'north', u'tame', u'bushrang']
[u'roger', u'north', u'fall', u'short', u'record']
[u'romario', u'receiv', u'warm', u'welcom', u'adelaid']
[u'rooki', u'hit', u'vega', u'jackpot']
[u'rudd', u'say', u'relationship', u'mismanag']
[u'saddam', u'urg', u'insurg']
[u'govt', u'school', u'mainten', u'backlog']
[u'increas', u'fund', u'bird', u'readi']
[u'scientist', u'reject', u'propos', u'farmer', u'north']
[u'scorch', u'summer', u'predict']
[u'score', u'kill', u'lanka', u'suicid', u'blast']
[u'shark', u'patrol', u'get', u'fund', u'boost']
[u'solomon', u'island', u'respons', u'moti', u'departur']
[u'solomon', u'lose', u'post', u'cabinet', u'reshuffl']
[u'solomon', u'warn', u'remov', u'danger']
[u'improv', u'south', u'east', u'drought']
[u'irrig', u'face', u'water', u'entitl', u'restrict']
[u'southern', u'cross', u'secur', u'research', u'grant']
[u'spray', u'target', u'locust']
[u'star', u'citi', u'agre', u'breach', u'care', u'patron']
[u'string', u'croc', u'go', u'miss']
[u'studi', u'find', u'sequestr', u'leader']
[u'superfish', u'million', u'pond']
[u'support', u'seek', u'rural', u'counsel', u'staff']
[u'hurt', u'chopper', u'crash']
[u'titan', u'sign', u'lomu']
[u'tradit', u'owner', u'back', u'court', u'action', u'mcarthur']
[u'tuckshop', u'confectionari', u'hard', u'enforc']
[u'arrest', u'ritualist', u'goat', u'kill']
[u'union', u'concern', u'bias', u'test']
[u'union', u'group', u'bolster', u'campaign', u'law']
[u'pressur', u'china', u'enforc', u'north', u'korea', u'sanction']
[u'govt', u'ignor', u'poki', u'advic']
[u'violenc', u'escal', u'iraq']
[u'forget', u'drought', u'relief', u'packag']
[u'water', u'restrict', u'possibl', u'summer']
[u'water', u'restrict', u'introduc', u'break']
[u'water', u'rise', u'alburi']
[u'wellington', u'unit', u'fight', u'drought']
[u'wildlif', u'take', u'seat', u'mozart']
[u'lift', u'jet', u'confid']
[u'winter', u'crop', u'hop', u'remain', u'england', u'north', u'west']
[u'women', u'ignor', u'cancer', u'gene', u'concern', u'studi']
[u'hurt', u'snowi', u'chopper', u'mishap']
[u'moyn', u'councillor', u'attend', u'prendergast', u'forum']
[u'govt', u'criticis', u'door', u'util', u'levi']
[u'akhtar', u'asif', u'face', u'tribun']
[u'bag', u'cannabi']
[u'closer']
[u'angri', u'farmer', u'ralli', u'water', u'cost']
[u'asset', u'sale', u'specul', u'halt', u'trade', u'share']
[u'astronom', u'credit', u'dish', u'help', u'secur']
[u'aust', u'lawyer', u'repres', u'solomon', u'moti', u'issu']
[u'aust', u'lawyer', u'assess', u'moti', u'extradit']
[u'australia', u'lag', u'innov', u'index']
[u'australian', u'catch', u'record', u'opium', u'haul']
[u'aust', u'uni', u'condemn', u'move', u'student']
[u'ax', u'customari', u'issu', u'wont', u'reduc', u'indigen']
[u'bail', u'refus', u'driver', u'accus', u'kill']
[u'ballarat', u'gold', u'lihir', u'gold', u'merger', u'plan']
[u'bank', u'sector', u'drag', u'market', u'lower']
[u'benalla', u'flood', u'awar']
[u'bendigo', u'water', u'plan', u'foster', u'govern', u'uniti']
[u'bird', u'threaten', u'alic', u'spring', u'park', u'captiv', u'wildlif']
[u'blue', u'longmuir']
[u'brisban', u'expressway', u'crack', u'forc', u'ramp', u'closur']
[u'brown', u'fail', u'visit', u'hick']
[u'bureaucrat', u'convict', u'leak', u'info', u'overturn']
[u'burrup', u'studi', u'prove', u'industri', u'rock', u'exist']
[u'bushrang', u'troubl', u'warrior']
[u'busi', u'offer', u'support', u'ralli', u'farmer']
[u'busi', u'lobbi', u'defend', u'filipino', u'worker', u'sack']
[u'pakistani', u'dope', u'stanc']
[u'govern', u'action', u'childhood']
[u'volunt', u'bird', u'vaccin', u'trial']
[u'simpler', u'drought', u'criteria']
[u'campbel', u'ask', u'wind', u'farm', u'decis']
[u'canadian', u'farmer', u'launch', u'class', u'action']
[u'canberra', u'scientist', u'win', u'scienc', u'award']
[u'cane', u'toad', u'head', u'south', u'flood', u'rain']
[u'carbon', u'end', u'stint']
[u'part', u'maker', u'iron', u'administr']
[u'cash', u'theft', u'spark', u'polic', u'warn']
[u'censur', u'motion', u'fail', u'ravlich', u'abus']
[u'central', u'elector', u'rate', u'high', u'poverti', u'report']
[u'head', u'tell', u'poor', u'communic', u'black']
[u'clark', u'confirm', u'australian']
[u'cleaner', u'march', u'condit']
[u'closer']
[u'cloud', u'juic', u'head', u'export', u'market']
[u'coalit', u'debat', u'futur', u'monopoli']
[u'colac', u'crew', u'hop', u'favour', u'condit']
[u'communiti', u'urg', u'share', u'view', u'school', u'closur']
[u'compani', u'expans', u'plan', u'creat', u'job']
[u'cook', u'reject', u'branch', u'stack', u'plot', u'specul']
[u'coonambl', u'continu', u'push', u'hospit']
[u'coonan', u'alert', u'regul', u'cronulla', u'monopoli']
[u'costello', u'talk', u'trade', u'practic', u'chang']
[u'council', u'green', u'group', u'join', u'forc', u'tackl', u'weed']
[u'councillor', u'brief', u'inquiri', u'evid', u'time']
[u'council', u'reject', u'demolit', u'plan']
[u'council', u'look', u'oversea', u'bolster', u'work', u'forc']
[u'cubbi', u'station', u'water', u'capac']
[u'debnam', u'deni', u'branch', u'stack', u'accus']
[u'dept', u'head', u'scapegoat', u'misconduct', u'report']
[u'diamond', u'ice', u'million', u'wed', u'cake']
[u'disabl', u'project', u'hail', u'earli', u'success']
[u'door', u'open', u'hair']
[u'downer', u'slam', u'labor', u'iraq', u'pullout', u'plan']
[u'drought', u'come', u'right', u'time']
[u'drought', u'packag', u'bypass', u'barker', u'elector']
[u'drought', u'assist', u'inject', u'fire', u'viabil']
[u'drought', u'assist', u'packag', u'criticis']
[u'drought', u'assist', u'packag', u'ignit', u'debat']
[u'drought', u'farmer', u'supplement', u'incom']
[u'drought', u'packag', u'expect', u'wimmera']
[u'drought', u'relief', u'critic', u'agrarian', u'genocid']
[u'drought', u'relief', u'govt']
[u'take', u'toll', u'river', u'level']
[u'econom', u'boom', u'poverti', u'downsid']
[u'egan', u'get', u'ahead', u'contract', u'extens']
[u'elliott', u'clash']
[u'emerg', u'servic', u'airstrip', u'build', u'mckinlay']
[u'esper', u'shire', u'defend', u'camp', u'polici']
[u'exercis', u'test', u'readi', u'bird', u'outbreak']
[u'explor', u'firm', u'warn']
[u'farmer', u'seek', u'drought', u'offer']
[u'farmer', u'urg', u'check', u'drought', u'elig']
[u'farm', u'group', u'cite', u'drought', u'packag', u'shortcom']
[u'fear', u'licenc', u'plan', u'damag', u'boat', u'hire', u'industri']
[u'fear', u'water', u'restrict', u'impact', u'malle']
[u'feedback', u'seek', u'plan', u'skate', u'park', u'site']
[u'fertil', u'rate', u'hit', u'year', u'high']
[u'filipino', u'worker', u'seek', u'legal', u'advic', u'sack']
[u'firefight', u'work', u'ensur', u'barmah', u'park', u'flare']
[u'cole', u'exec', u'head', u'outback', u'store', u'initi']
[u'detaine', u'get', u'compo', u'human', u'right', u'breach']
[u'energex', u'chairman', u'deni', u'child', u'charg']
[u'foskey', u'concern', u'young', u'anti', u'smoke']
[u'frost', u'hit', u'cherri', u'grower', u'hardest']
[u'fund', u'announc', u'indonesian', u'erupt']
[u'govt', u'abandon', u'paradis', u'water', u'tender', u'process']
[u'govt', u'defend', u'school', u'closur', u'plan']
[u'govt', u'fund', u'firefight', u'helicopt']
[u'govt', u'offer', u'ballarat', u'water', u'suppli', u'assur']
[u'govt', u'provid', u'region', u'visitor', u'centr', u'fund']
[u'govt', u'reject', u'respons', u'project', u'insolv']
[u'govt', u'talk', u'indi', u'invest']
[u'govt', u'urg', u'offer', u'rate', u'relief', u'drought']
[u'govt', u'urg', u'reject', u'flood', u'level', u'chang']
[u'grazier', u'air', u'drought', u'fear']
[u'great', u'britain', u'graham', u'nation']
[u'griffith', u'mayor', u'debat', u'local', u'content']
[u'group', u'attack', u'lake', u'cowal', u'water', u'alloc']
[u'grove', u'claim', u'gong']
[u'gunn', u'drop', u'major', u'legal', u'claim', u'wilder', u'societi']
[u'health', u'bodi', u'offer', u'rehab', u'servic', u'assur']
[u'hingi', u'book', u'return', u'gold', u'coast']
[u'horni', u'beetl', u'tini', u'test', u'studi']
[u'regret', u'posit', u'dope', u'test']
[u'tough', u'cheat', u'waugh', u'say']
[u'law', u'filipino', u'worker', u'alleg']
[u'iron', u'price', u'forecast', u'increas']
[u'jail', u'rethink', u'prompt', u'call', u'better', u'spend']
[u'king', u'defend', u'kidwel', u'mason', u'clear']
[u'kosmina', u'appear', u'person', u'hear']
[u'legisl', u'shield', u'medibank', u'takeov']
[u'lennon', u'defend', u'keep', u'audit', u'wrap']
[u'lennon', u'refer', u'parliamentari', u'power', u'committe']
[u'liquor', u'accord', u'provid', u'lout']
[u'elli', u'interview']
[u'lomu', u'brush', u'asid', u'health', u'concern']
[u'lomu', u'cautious', u'meet', u'titan']
[u'mackay', u'council', u'reject', u'need', u'earlier', u'safeti']
[u'critic', u'injur', u'hous', u'blaze']
[u'guilti', u'sexual', u'abus', u'girl']
[u'jail', u'defraud', u'australia', u'post']
[u'jail', u'drug', u'haul']
[u'mcevoy', u'lead', u'godolphin', u'caulfield', u'charg']
[u'mcgauran', u'assur', u'farmer', u'drought', u'assist']
[u'mcgauran', u'offer', u'drought', u'hope', u'irrig']
[u'meatwork', u'site', u'buyer', u'consid', u'depot', u'plan']
[u'millmerran', u'council', u'push', u'gore', u'highway', u'fund']
[u'minchin', u'downplay', u'macfarlan', u'nuclear', u'energi']
[u'expans', u'bond']
[u'minist', u'warn', u'perth', u'site', u'possibl', u'nuclear']
[u'time', u'allow', u'marin', u'park', u'submiss']
[u'mount', u'stromlo', u'observatori', u'return', u'glori']
[u'back', u'water', u'bomber', u'decis']
[u'omodei', u'liquor', u'deregul']
[u'want', u'farm', u'loan', u'extend']
[u'music', u'industri', u'sue', u'file', u'sharer']
[u'nasa', u'camera', u'eye', u'mar', u'possibl', u'man', u'mission']
[u'open', u'oper', u'soon']
[u'korea', u'prepar', u'second', u'nuclear', u'test', u'report']
[u'anti', u'gang', u'law', u'necessari', u'sterl']
[u'pass', u'law', u'restrict', u'gang', u'activ']
[u'omodei', u'support', u'alcohol', u'chang', u'puzzl', u'hotel']
[u'dead', u'hurt', u'rome', u'subway', u'crash']
[u'opposit', u'call', u'releas', u'cronulla', u'riot']
[u'opposit', u'say', u'guest', u'worker', u'exploit']
[u'parent', u'plead', u'guilti', u'children', u'attempt']
[u'share', u'trade', u'halt']
[u'pine', u'protest', u'fin', u'resist', u'polic']
[u'polic', u'confirm', u'name', u'plane', u'crash', u'victim']
[u'polic', u'investig', u'alleg', u'attack', u'jewish']
[u'polic', u'investig', u'alleg', u'racist', u'attack']
[u'polic', u'investig', u'guest', u'worker', u'sack']
[u'polic', u'seek', u'help', u'find', u'letterbox', u'bomber']
[u'polic', u'seek', u'wit', u'geelong', u'bash', u'death']
[u'polic', u'seiz', u'fourth', u'hoon', u'crackdown']
[u'polic', u'warn', u'hoon', u'crackdown']
[u'politician', u'debat', u'merit', u'aust', u'involv']
[u'public', u'need', u'know', u'nuclear', u'site', u'plan', u'say', u'labor']
[u'push', u'nativ', u'titl', u'land', u'bolster', u'cape', u'cattl']
[u'get', u'tie', u'knot']
[u'racv', u'want', u'safer', u'calder', u'highway']
[u'redback', u'posit', u'start']
[u'redback', u'promis', u'blue']
[u'relief', u'packag', u'make', u'drought', u'wors']
[u'report', u'find', u'australian', u'addict']
[u'research', u'urg', u'govt', u'tough', u'drug']
[u'return', u'footbal', u'fatal', u'cech', u'warn']
[u'road', u'closur', u'caus', u'chao', u'brisban']
[u'roar', u'murdocca', u'remain', u'sidelin']
[u'scientist', u'discov', u'superheavi', u'element']
[u'seafood', u'import', u'reject', u'restrict']
[u'shooter', u'hand', u'polic']
[u'snowi', u'council', u'count', u'cost', u'vandal']
[u'sport', u'cod', u'bet', u'regul', u'propos']
[u'lanka', u'carri', u'retaliatori', u'attack']
[u'lanka', u'say', u'commit', u'talk', u'rebel']
[u'stem', u'cell', u'research', u'address', u'donor', u'issu']
[u'stephen', u'reject', u'babi', u'bonus', u'abus', u'claim']
[u'strand', u'tourist']
[u'strike', u'kill', u'senior', u'taliban', u'nato']
[u'strong', u'quak', u'spark', u'tsunami', u'warn']
[u'student', u'join', u'indigen', u'cultur', u'celebr']
[u'student', u'stabl', u'school', u'stab']
[u'studi', u'predict', u'lower', u'gold', u'industri', u'growth']
[u'suspect', u'diamond', u'thiev', u'leav', u'broom']
[u'tamil', u'tiger', u'blame', u'suicid', u'attack']
[u'frost', u'drive', u'fruit', u'price']
[u'teen', u'charg', u'supermarket', u'theft']
[u'telstra', u'flag', u'pass', u'custom']
[u'thailand', u'hand', u'asian', u'repriev']
[u'thame', u'water', u'sell', u'macquari', u'consortium']
[u'skin', u'caus', u'eczema', u'studi']
[u'thwait', u'respond', u'goulburn', u'water', u'fear']
[u'titan', u'begin', u'talk', u'lomu']
[u'earli', u'know', u'nuclear', u'plant', u'build']
[u'tubbi', u'tast', u'ironi', u'urn', u'return']
[u'tupou', u'kangaroo', u'debut']
[u'union', u'seek', u'skill', u'migrat', u'scheme', u'inquiri']
[u'report', u'recommend', u'alkatiri', u'investig']
[u'sanction', u'north', u'korea']
[u'confirm', u'north', u'korean', u'nuclear', u'test']
[u'confirm', u'nuclear', u'test']
[u'popul', u'hit', u'million']
[u'vanston', u'attack', u'labor', u'siev', u'claim']
[u'back', u'drought', u'announc']
[u'vic', u'spirit', u'start', u'second', u'inning']
[u'victim', u'group', u'prais', u'clergi', u'extradit', u'order']
[u'water', u'plan', u'criticis']
[u'driver', u'face', u'drug', u'alcohol', u'test']
[u'farmer', u'give', u'feder']
[u'webb', u'haka', u'disrespect', u'maitua']
[u'welfar', u'group', u'urg', u'support', u'rural']
[u'wide', u'hinkler', u'poverti', u'rank', u'highest']
[u'woman', u'die', u'bruce', u'highway', u'crash']
[u'worksaf', u'victoria', u'urg', u'care', u'flammabl']
[u'yarriambiack', u'seek', u'bore']
[u'zip', u'miss', u'caulfield', u'start']
[u'compon', u'worker', u'redund']
[u'abalon', u'farm', u'keen', u'restock', u'virus']
[u'abbott', u'urg', u'individu', u'activ', u'role']
[u'aborigin', u'women', u'like']
[u'academ', u'question', u'silli', u'fund']
[u'accus', u'want', u'crash', u'case', u'hear', u'outsid', u'mildura']
[u'farmer', u'feel', u'drought', u'impact']
[u'teenag', u'retail']
[u'play', u'role', u'cambodia', u'drug', u'case', u'ellison']
[u'alkatiri', u'reject', u'report', u'alleg']
[u'alleg', u'rape', u'victim', u'speak']
[u'candid', u'play', u'pipe', u'announc', u'time']
[u'seek', u'telstra', u'region', u'repair', u'prioriti']
[u'anglican', u'church', u'elect', u'aborigin', u'leader']
[u'round', u'fade', u'molik']
[u'austexx', u'defend', u'payment', u'epicentr', u'site']
[u'aust', u'forens', u'expert', u'assist', u'lanka', u'murder']
[u'australian', u'economi', u'continu', u'grow']
[u'australian', u'privat', u'wealth', u'hit', u'record', u'high']
[u'australian', u'advis', u'avoid', u'lanka']
[u'australian', u'wont', u'ask', u'leav', u'solomon']
[u'australia', u'post', u'report', u'profit', u'jump']
[u'australia', u'target', u'muslim', u'extremist']
[u'backlash', u'teen', u'smoke', u'law']
[u'bolt', u'come', u'boe', u'plane', u'casa']
[u'bosch', u'offer', u'pacifica', u'group']
[u'boxer', u'bronco', u'johnson', u'die']
[u'face', u'court', u'school', u'stab']
[u'breaker', u'drought']
[u'brisban', u'face', u'second', u'traffic', u'gridlock']
[u'british', u'troop', u'risk', u'provoc', u'iraq']
[u'bun', u'say', u'grapevin', u'seiz']
[u'bushrang', u'salvag', u'draw']
[u'cahil', u'nomin', u'prestigi', u'award']
[u'cairn', u'nurs', u'recognis', u'indigen', u'effort']
[u'canberra', u'park', u'shortag', u'worsen']
[u'cane', u'farmer', u'warn', u'readi', u'smut', u'outbreak']
[u'carpent', u'stand', u'ravlich']
[u'car', u'crash', u'near', u'spill']
[u'cattl', u'price', u'slump', u'drought', u'spread']
[u'cessnock', u'jail', u'get', u'tough', u'contraband']
[u'champ', u'leagu', u'boy', u'stay', u'track']
[u'chanc', u'maintain', u'push', u'nullarbor', u'drought']
[u'channel', u'ten', u'earn', u'drop']
[u'closer']
[u'closer']
[u'closer']
[u'coalit', u'split', u'awb', u'singl', u'desk']
[u'cobb', u'reject', u'farmer', u'leav', u'land']
[u'coliban', u'water', u'award', u'pipelin', u'contract']
[u'communiti', u'rais', u'concern', u'brisban', u'detent']
[u'communiti', u'school', u'overhaul']
[u'concern', u'govt', u'regul', u'limit', u'mine']
[u'cooma', u'council', u'seek', u'reserv', u'vandal']
[u'councillor', u'push', u'ahead', u'intersect', u'safeti']
[u'council', u'seek', u'wind', u'power', u'desalin', u'plant']
[u'council', u'fear', u'work', u'danger', u'chang']
[u'council', u'unit', u'combat', u'teen', u'bing', u'drink']
[u'council', u'worker', u'safeti', u'award']
[u'crew', u'battl', u'state', u'forest', u'fire']
[u'croc', u'good', u'wildcat']
[u'deitz', u'steer', u'redback', u'total']
[u'dfat', u'warn', u'lankan', u'sport', u'attack']
[u'diver', u'retriev', u'bodi', u'warrego', u'river']
[u'doctor', u'guilti', u'profession', u'misconduct']
[u'dope', u'alleg', u'mark', u'ogradi']
[u'downer', u'say', u'timor', u'work', u'reinado']
[u'drought', u'delay', u'develop', u'forb', u'factori']
[u'drought', u'farmer', u'urg', u'seek', u'bank', u'talk']
[u'drought', u'trim', u'econom', u'growth', u'economist']
[u'claim', u'gunn', u'fight']
[u'timor', u'alert', u'damn', u'report']
[u'timor', u'work', u'reinado', u'downer']
[u'expert', u'play', u'age', u'care', u'crisi', u'fear']
[u'fall', u'metal', u'bolt', u'come', u'plane']
[u'farm', u'expo', u'highlight', u'drought', u'effect']
[u'feral', u'control', u'central', u'australia']
[u'farmer', u'accept', u'drought', u'offer']
[u'fiji', u'call', u'calm']
[u'geelong', u'clean', u'mini', u'tornado']
[u'geraldton', u'face', u'smaller', u'grain', u'harvest']
[u'govt', u'crack', u'adventur', u'tourism', u'oper']
[u'govt', u'dept', u'reject', u'water', u'claim']
[u'grain', u'silo', u'closur', u'affect', u'smaller', u'farm', u'saff']
[u'greenough', u'voter', u'ask', u'referendum']
[u'green', u'question', u'govt', u'region', u'strategi', u'chang']
[u'hadden', u'air', u'pipelin', u'doubt']
[u'hardgrav', u'reject', u'tafe', u'hostil', u'claim']
[u'health', u'waterway', u'poor', u'report']
[u'hick', u'defenc', u'team', u'appeal', u'terror']
[u'patient', u'healthi', u'children', u'studi']
[u'holden', u'watch', u'supplier', u'futur']
[u'hors', u'rid', u'teacher', u'abus', u'sentenc', u'suspend']
[u'human', u'right', u'group', u'criticis', u'terror']
[u'hunter', u'fertil', u'wan', u'slight']
[u'iceland', u'commerci', u'whale', u'resumpt', u'mockeri']
[u'iceland', u'resum', u'commerci', u'whale']
[u'icpa', u'confer', u'focus', u'electron', u'distanc']
[u'illeg', u'drag', u'racer', u'keen', u'warn']
[u'immigr', u'minist', u'court', u'moti', u'affair']
[u'india', u'report', u'dengu', u'death']
[u'indi', u'drain', u'polic', u'resourc', u'atkinson']
[u'inquiri', u'begin', u'wagga', u'council']
[u'iraq', u'domin', u'parliament']
[u'isra', u'troop', u'push', u'gaza', u'palestinian', u'kill']
[u'jaqu', u'solid', u'form', u'redback']
[u'jaqu', u'star', u'blue', u'redback']
[u'job', u'scheme', u'urg', u'drought', u'bite']
[u'kalgoorli', u'vie', u'water', u'award']
[u'kosmina', u'hand', u'lengthi', u'suspens']
[u'labor', u'fail', u'gain', u'iraq', u'apolog']
[u'labor', u'label', u'media', u'law', u'undemocrat']
[u'landown', u'warn', u'readi']
[u'lavarch', u'meet', u'patel', u'patient']
[u'leav', u'earli', u'defend', u'home', u'report']
[u'lennon', u'commit', u'steal', u'generat']
[u'reject', u'wentworth', u'group', u'idea']
[u'lion', u'appoint', u'hudson', u'coach', u'staff']
[u'locust', u'plagu', u'threaten', u'crop']
[u'lyon', u'return', u'australia']
[u'madonna', u'defend', u'adopt', u'malawian']
[u'mail', u'centr', u'powder', u'scare', u'forc', u'evacu']
[u'face', u'court', u'shot', u'fire', u'outsid', u'school']
[u'face', u'court', u'gunfir', u'near', u'school']
[u'masterfood', u'reject', u'school', u'canteen', u'junk', u'food']
[u'mcmahon', u'stay', u'cool', u'prize', u'snub']
[u'media', u'bill', u'pass', u'hous', u'rep']
[u'media', u'critic', u'cold', u'shower']
[u'media', u'law', u'spark', u'labor', u'brawl']
[u'media', u'ownership', u'chang', u'democraci']
[u'media', u'sector', u'push', u'market', u'higher']
[u'medibank', u'sale', u'introduc', u'parliament']
[u'melbourn', u'professor', u'win', u'scienc', u'award']
[u'mine', u'expo', u'rivalri', u'remain', u'mackay', u'rocki']
[u'minist', u'defend', u'handl', u'brisban', u'expressway']
[u'minist', u'rule', u'free', u'public', u'transport', u'eas']
[u'miss', u'finland', u'lead', u'thousand', u'guinea', u'field']
[u'miss', u'finland', u'win', u'thousand', u'guinea']
[u'miss', u'kiama', u'child', u'sydney']
[u'molik', u'team', u'scud', u'hopman']
[u'monaro', u'resist', u'livestock', u'load']
[u'mourinho', u'reveal', u'cech', u'ambul', u'drama']
[u'air', u'doubt', u'xtrata', u'contribut', u'pledg']
[u'rowdi', u'iraq', u'debat']
[u'nation', u'worri', u'push', u'remov']
[u'nativ', u'veget', u'legisl', u'decid', u'soon']
[u'nato', u'forc', u'kill', u'insurg', u'afghanistan']
[u'live', u'project', u'begin', u'south', u'hedland']
[u'media', u'law', u'label', u'undemocrat']
[u'korea', u'defiant', u'amid', u'fear', u'nuclear', u'test']
[u'korea', u'defiant', u'amid', u'fear', u'second', u'nuclear', u'test']
[u'nkorea', u'turn', u'despit', u'intern', u'anger']
[u'parliament', u'approv', u'doubl', u'jeopardi', u'chang']
[u'govt', u'compens', u'steal', u'generat', u'lawyer']
[u'obes', u'reduct', u'program', u'realist', u'bishop']
[u'occi', u'tip', u'parkinson', u'bigger', u'thing']
[u'dead', u'hundr', u'injur', u'rome', u'subway', u'crash']
[u'opposit', u'motion', u'transpar', u'school']
[u'opposit', u'reject', u'north', u'nuclear', u'power']
[u'confirm', u'media', u'interest', u'sale']
[u'sell', u'stake', u'media', u'interest']
[u'set', u'media', u'compani']
[u'warn', u'sell', u'breach', u'competit', u'law']
[u'warn', u'sell', u'breach', u'competit', u'law']
[u'pele', u'daughter', u'die']
[u'piec', u'fall', u'place', u'caulfield', u'fanci']
[u'pink', u'makeov', u'rais', u'resid', u'moral']
[u'polic', u'hunt', u'gladston', u'arm', u'bandit']
[u'port', u'hedland', u'back', u'plan', u'charg', u'miner', u'rat']
[u'project', u'aim', u'indigen', u'poverti']
[u'quit']
[u'quit', u'cite', u'depress']
[u'compani', u'plan', u'sack', u'oversea', u'worker']
[u'razzaq', u'hero', u'pakistan', u'bounc']
[u'refer', u'group', u'consid', u'educ', u'meet', u'result']
[u'remain', u'hmas', u'sydney', u'sailor']
[u'report', u'highlight', u'break', u'hill', u'alcohol', u'woe']
[u'report', u'highlight', u'drought', u'impact', u'waterway']
[u'revamp', u'plan', u'fred', u'hollow', u'grave']
[u'rice', u'outlin', u'sweep', u'plan', u'north', u'korea', u'cargo']
[u'farmer', u'drought', u'assur']
[u'farmer', u'urg', u'prepar', u'drought']
[u'satellit', u'photograph', u'forest']
[u'sedimentari', u'seek', u'gold', u'explor', u'partner']
[u'seven', u'lift', u'stake', u'newspap']
[u'shoaib', u'asif', u'deni', u'dope', u'charg']
[u'snake', u'steal', u'sydney', u'wildlif', u'park']
[u'solomon', u'minist', u'arrest', u'moti', u'affair']
[u'southern', u'star', u'clash']
[u'stawel', u'youth', u'charg', u'manslaught']
[u'stoke', u'take', u'advantag', u'media', u'law']
[u'steal', u'generat', u'compens', u'packag', u'welcom']
[u'strip', u'export', u'monopoli', u'coalit']
[u'strong', u'face', u'japan']
[u'support', u'increas', u'hobart', u'game']
[u'sydney', u'orchestra', u'rais', u'republ', u'proposit']
[u'tafe', u'suffer', u'underfund', u'report']
[u'tara', u'council', u'open', u'pool', u'free']
[u'broadband', u'trial', u'begin']
[u'govt', u'announc', u'steal', u'generat', u'compens']
[u'scientist', u'make', u'pollut', u'discoveri']
[u'teenag', u'face', u'offenc', u'charg']
[u'teen', u'coupl', u'rule', u'young', u'marri']
[u'soldier', u'kill', u'iraq']
[u'jail', u'town', u'camp', u'stab']
[u'kill', u'tamil', u'suicid', u'attack']
[u'townsvill', u'enterpris', u'play', u'nuclear', u'power']
[u'transport', u'busi', u'boom', u'farmer', u'send', u'stock']
[u'tuckey', u'attack', u'nation', u'stanc']
[u'unicef', u'urg', u'attent', u'child', u'poverti']
[u'union', u'lift', u'redfern', u'demolit']
[u'send', u'clear', u'warn', u'north', u'korea']
[u'drug', u'squad', u'deputi', u'guilti', u'traffic', u'drug']
[u'victori', u'content', u'solid', u'start']
[u'victori', u'content', u'win', u'start']
[u'begin', u'alcohol', u'law', u'debat']
[u'newspap', u'sharehold', u'back', u'seven']
[u'warn', u'incid', u'prompt', u'ash', u'coverag', u'debat']
[u'water', u'cost', u'rise', u'suppli', u'plan']
[u'test', u'influenza', u'outbreak', u'respons']
[u'watson', u'get', u'open', u'role']
[u'wellington', u'council', u'say', u'devon', u'north', u'wind', u'farm']
[u'west', u'indi', u'australia']
[u'wollondilli', u'mayor', u'face', u'confid', u'motion']
[u'woman', u'jail', u'restaur', u'rock', u'attack']
[u'women', u'tast']
[u'workshop', u'seek', u'indigen', u'cattlemen']
[u'xstrata', u'refus', u'releas', u'mcarthur', u'river', u'plan']
[u'yahoo', u'air', u'plan', u'profit', u'slump']
[u'yeat', u'arriv', u'australia', u'melbourn', u'tilt']
[u'firefight', u'battl', u'bathurst', u'blaze']
[u'kill', u'iraqi', u'suicid', u'attack']
[u'boost', u'announc', u'hunter']
[u'gold', u'coast', u'waterway', u'score', u'report', u'card']
[u'abbott', u'urg', u'state', u'agre', u'cross', u'border']
[u'health', u'reject', u'claim', u'insuffici']
[u'strike', u'deal', u'govt']
[u'health', u'impact', u'patel', u'decis', u'beatti']
[u'agreement', u'reach', u'hospit', u'matern']
[u'anderson', u'put', u'case', u'reinstat', u'rural', u'counsel']
[u'anger', u'govt', u'plan', u'slash', u'small', u'school']
[u'join', u'gravit', u'wave', u'observatori', u'project']
[u'apprenticeship', u'applic', u'drop', u'gladston']
[u'asic', u'crack', u'ban', u'director']
[u'australia', u'enter', u'pacif', u'nation']
[u'australia', u'head', u'econom', u'tsunami']
[u'australian', u'gymnast', u'finish', u'medal']
[u'australian', u'unsympathet', u'homeless', u'survey', u'find']
[u'award', u'recognis', u'communiti', u'member', u'effort']
[u'bali', u'nine', u'rush', u'amrozi', u'cell', u'say', u'lawyer']
[u'blue', u'begin', u'chase']
[u'board', u'hous', u'resid', u'offer', u'work', u'help']
[u'boati', u'urg', u'safer']
[u'bourk', u'get', u'emerg', u'water', u'suppli', u'fund']
[u'brisban', u'driver', u'continu', u'traffic', u'woe']
[u'brisban', u'expressway', u'repair', u'wont', u'rush']
[u'bush', u'accept', u'iraq', u'vietnam', u'comparison']
[u'bush', u'authoris', u'space', u'polici']
[u'busi', u'chamber', u'claim', u'grape', u'grower', u'wast', u'water']
[u'busi', u'welcom', u'expans', u'approv']
[u'nation', u'respons', u'gynaecolog', u'cancer']
[u'canberra', u'water', u'usag', u'go', u'despit', u'restrict']
[u'cancer', u'fund', u'back', u'chemotherapi', u'renal', u'dialysi']
[u'cathol', u'educ', u'chief', u'reflect', u'challeng']
[u'causley', u'announc', u'polit', u'retir']
[u'charg', u'drop', u'alleg', u'gang', u'rape', u'case']
[u'closer']
[u'closer']
[u'cole', u'myer', u'consid', u'broule', u'shop', u'centr']
[u'cole', u'myer', u'reject', u'revis', u'takeov', u'offer']
[u'cole', u'myer', u'takeov', u'collaps']
[u'commonwealth', u'urg', u'boost', u'indigen', u'hous']
[u'compo', u'murray', u'valley', u'irrig', u'rule']
[u'concern', u'polic', u'station', u'fail', u'answer', u'phone']
[u'concern', u'air', u'communiti', u'centr', u'work', u'parti']
[u'condobolin', u'age', u'care', u'revamp', u'move', u'closer']
[u'consortium', u'threaten', u'pull', u'cole', u'myer', u'deal']
[u'consult', u'follow', u'cronulla', u'riot', u'report']
[u'coonan', u'deni', u'media', u'law', u'favour', u'mogul']
[u'coonan', u'dismiss', u'claim', u'media', u'frenzi']
[u'costello', u'hail', u'trade', u'practic', u'chang']
[u'councillor', u'air', u'art', u'centr', u'cost', u'worri']
[u'councillor', u'reject', u'mayor', u'claim']
[u'councillor', u'urg', u'water', u'cotton', u'crop']
[u'council', u'urg', u'debat', u'plan', u'speed', u'limit']
[u'court', u'send', u'theft', u'institut']
[u'dead', u'month', u'troop', u'iraq']
[u'dead', u'octob', u'iraq']
[u'democrat', u'iraq', u'troop', u'withdraw']
[u'dept', u'detain', u'illeg', u'worker']
[u'detect', u'consid', u'appeal', u'traffic']
[u'drought', u'discuss', u'paper', u'consid', u'seed', u'bank']
[u'drought', u'domin', u'nation', u'field', u'day']
[u'drought', u'affect', u'dairi', u'food', u'suppli', u'export', u'say']
[u'drought', u'petrol', u'price', u'strain', u'kangaroo', u'harvest']
[u'drought', u'take', u'toll', u'sheep', u'sale']
[u'earli', u'iraq', u'withdraw', u'boost', u'terror', u'asia']
[u'kill', u'iraq', u'bank', u'attack']
[u'elder', u'driver', u'die', u'highway', u'crash']
[u'elvi', u'firefight', u'helicopt', u'wast']
[u'engin', u'continu', u'search', u'expressway', u'fault']
[u'england', u'demand', u'oval', u'test', u'compens', u'month']
[u'famili', u'vote', u'boost', u'gambl', u'labor', u'say']
[u'farmer', u'question', u'think', u'tank', u'fund', u'drought']
[u'south', u'coast', u'seek', u'inclus']
[u'father', u'confisc', u'son', u'burnout']
[u'fear', u'drought', u'focus', u'delay', u'return', u'snowi']
[u'feder', u'govt', u'help', u'patterson', u'clone']
[u'fien', u'name', u'test', u'squad']
[u'firm', u'beat', u'desal', u'plant', u'support']
[u'fish', u'licenc', u'buyback', u'scheme', u'secur']
[u'forum', u'focus', u'saleyard', u'site']
[u'franc', u'top', u'tourist', u'destin', u'despit', u'frosti']
[u'free', u'vote', u'opposit', u'daylight', u'save']
[u'gang', u'target', u'cairn', u'armour']
[u'goodna', u'creek', u'sewag', u'leak', u'clean']
[u'govt', u'announc', u'rural', u'centr', u'excel']
[u'govt', u'rock', u'solid', u'democrat', u'iraq', u'howard', u'say']
[u'govt', u'audit', u'grind', u'water', u'licenc']
[u'govt', u'urg', u'abolish', u'catchment', u'levi', u'water']
[u'govt', u'urg', u'fund', u'gibb', u'river', u'revamp']
[u'govt', u'urg', u'rethink', u'leasehold', u'land', u'rental']
[u'graincorp', u'back', u'wheat', u'export']
[u'green', u'concern', u'air', u'hinchinbrook', u'rock', u'wall']
[u'green', u'group', u'fear', u'fungus', u'spread']
[u'greenpeac', u'disappoint', u'iceland', u'whale', u'plan']
[u'health', u'servic', u'board', u'stop', u'doctor', u'mediat']
[u'surviv', u'rat', u'improv', u'studi']
[u'hobbi', u'farm', u'evacu', u'blaze', u'rag']
[u'holden', u'recal', u'commodor']
[u'howard', u'govt', u'corrupt', u'secur', u'polici']
[u'howard', u'say', u'media', u'out', u'unrel', u'law']
[u'imperi', u'stride', u'face', u'fit', u'test', u'caulfield']
[u'indigen', u'group', u'work', u'cultur', u'law']
[u'indigen', u'pregnanc', u'death', u'surpris']
[u'ipod', u'hazard', u'dummi', u'shonki', u'award']
[u'iraqi', u'minist', u'predict', u'handov', u'date']
[u'iraq', u'midopen']
[u'japan', u'rule', u'nuclear', u'weapon', u'develop']
[u'joyc', u'cross', u'floor', u'trade', u'practic']
[u'juri', u'retir', u'dun', u'case']
[u'kazakhstan', u'misspel', u'bank', u'money']
[u'kimberley', u'die', u'fight']
[u'kiwi', u'work', u'cohes']
[u'knuckl', u'undecid', u'giteaus', u'futur']
[u'lawyer', u'rule', u'hick', u'plea', u'deal']
[u'leap', u'stingray', u'stab', u'florida', u'chest']
[u'ledger', u'cornish', u'gain', u'nomin']
[u'lennon', u'return', u'land', u'reconcili']
[u'rain', u'blame', u'lower', u'maroochi', u'river', u'waterway']
[u'levi', u'boost', u'help', u'open', u'export', u'market']
[u'life', u'save', u'chief', u'say', u'competit', u'fierc']
[u'lobster', u'processor', u'join', u'forc']
[u'lockyer', u'hop', u'melbourn', u'crowd']
[u'lownd', u'focus', u'ahead', u'indi', u'weekend']
[u'face', u'court', u'polic', u'pursuit']
[u'court', u'accus', u'knife', u'threat']
[u'market', u'close', u'lower', u'mix', u'data']
[u'mayor', u'unhappi', u'polic', u'station', u'staff']
[u'meatwork', u'undergo', u'safeti', u'inspect']
[u'meet', u'call', u'council', u'chief', u'execut', u'quit']
[u'melinda', u'nucifora']
[u'minist', u'concern', u'school', u'siev', u'case', u'studi']
[u'minist', u'warn', u'surgeri', u'disrupt']
[u'mental', u'health', u'help', u'seek', u'drought', u'bite']
[u'south', u'hedland', u'land', u'releas']
[u'soldier', u'face', u'court', u'martial', u'iraqi']
[u'accus', u'businessman', u'role', u'murder']
[u'urg', u'stop', u'hattah', u'lake', u'environment', u'flow']
[u'munch', u'microb', u'help', u'battl', u'global']
[u'narromin', u'council', u'open', u'rat', u'structur']
[u'nation', u'lobbi', u'mine', u'flow', u'share']
[u'nato', u'troop', u'civilian', u'kill', u'afghan', u'suicid']
[u'councillor', u'carpentaria', u'shire', u'posit']
[u'polic', u'station', u'displeas', u'jondaryan', u'mayor']
[u'zealand', u'launch', u'america', u'challeng']
[u'korean', u'leader', u'china', u'envoy', u'meet']
[u'nkorea', u'open']
[u'korea', u'warn', u'sell', u'nuclear', u'arm']
[u'link', u'violenc', u'report']
[u'northam', u'merger', u'vote', u'like', u'close']
[u'water', u'save', u'rebat', u'extend']
[u'consid', u'review', u'name', u'young', u'offend']
[u'govt', u'spend', u'indigen', u'hous', u'fund']
[u'nuclear', u'group', u'push', u'power', u'station']
[u'nurs', u'industri', u'disput', u'escal']
[u'undertak', u'admit', u'steal', u'bodi', u'part']
[u'oliv', u'rub', u'plate']
[u'opposit', u'highlight', u'ax', u'servic']
[u'opposit', u'unconvinc', u'epicentr', u'sale', u'fair']
[u'begin', u'court', u'action', u'hobart', u'employ']
[u'pakistan', u'dope', u'hear', u'week']
[u'pakistan', u'unveil', u'dope', u'tribun']
[u'parti', u'accus', u'ignor', u'royal', u'commiss']
[u'parti', u'urg', u'greater', u'focus', u'region']
[u'passeng', u'rout', u'emerg', u'land']
[u'patel', u'patient', u'seek', u'answer']
[u'peopl', u'power', u'founder', u'abandon']
[u'plan', u'focus', u'tuart', u'forest', u'manag']
[u'playground', u'death', u'investig']
[u'tell', u'need', u'help', u'upper', u'hunter', u'farmer']
[u'urg', u'australian', u'support', u'farmer']
[u'warn', u'region', u'threat', u'iraq', u'withdraw']
[u'wrong', u'sack', u'filipino', u'worker']
[u'polic', u'arrest', u'bug']
[u'polic', u'cronulla', u'respons', u'flaw', u'report']
[u'polic', u'hunt', u'child', u'attack', u'suspect']
[u'polic', u'monitor', u'know', u'arsonist', u'bushfir']
[u'polic', u'question', u'hous', u'blaze']
[u'polic', u'respons', u'cronulla', u'flaw', u'inadequ']
[u'polic', u'search', u'alic', u'spring', u'attack']
[u'pont', u'prais', u'west', u'indian', u'spinner']
[u'public', u'hous', u'boost', u'announc', u'north', u'east']
[u'pub', u'urg', u'adopt', u'outdoor', u'smoke', u'area', u'licenc']
[u'push', u'consid', u'compens', u'steal']
[u'qanta', u'chief', u'defend', u'offshor', u'job']
[u'qanta', u'hundr', u'job']
[u'poverti', u'problem', u'highlight']
[u'racist', u'messag', u'cronulla', u'number']
[u'rang', u'use', u'possibl', u'treat', u'water']
[u'ranger', u'uranium', u'oper', u'consid', u'expans']
[u'redback', u'build', u'lead']
[u'redback', u'secur', u'inning', u'point']
[u'region', u'growth', u'defi', u'drought']
[u'rehab', u'conting', u'plan', u'ahead']
[u'report', u'consid', u'indigen', u'restor', u'justic']
[u'report', u'question', u'gunn', u'pulp', u'propos']
[u'research', u'team', u'form', u'examin', u'hydrogen']
[u'resourc', u'council', u'play', u'mine', u'expo', u'rivalri']
[u'rice', u'seek', u'north', u'korea', u'sanction', u'support']
[u'rice', u'visit', u'seoul', u'secur', u'north', u'korea', u'sanction']
[u'tinto', u'gain', u'stake', u'ivanho', u'mine']
[u'road', u'crash', u'claim', u'live']
[u'continu', u'media', u'law']
[u'rural', u'counsel', u'allianc', u'hold', u'fund', u'hop']
[u'tourism', u'chief', u'step']
[u'scientist', u'plot', u'cours', u'great', u'white', u'shark']
[u'second', u'charg', u'suburban', u'stab']
[u'secur', u'breach', u'lead', u'sydney', u'airport', u'evacu']
[u'waterway', u'give', u'mix', u'report']
[u'shire', u'back', u'wind', u'farm', u'despit', u'devon', u'north']
[u'shop', u'centr', u'work', u'close', u'park']
[u'singapor', u'airlin', u'claim', u'ownership', u'mysteri', u'bolt']
[u'smith', u'confid', u'abil', u'knight', u'grand']
[u'smith', u'confid', u'premiership', u'success']
[u'smoke', u'forc', u'plane', u'emerg', u'land']
[u'socceroo', u'climb', u'spot', u'fifa', u'rank']
[u'south', u'coast', u'get', u'firefight', u'fund', u'boost']
[u'southern', u'cross', u'dismiss', u'talk', u'takeov']
[u'southern', u'hous', u'demand', u'expect', u'stay', u'strong']
[u'lankan', u'govt', u'push', u'ahead', u'peac', u'talk']
[u'sydney', u'artist', u'donat', u'galleri']
[u'payout', u'steal', u'generat']
[u'tennant', u'creek', u'wind', u'farm', u'submiss', u'assess']
[u'diplomat', u'name', u'head', u'ramsi']
[u'line', u'urg', u'focus', u'tourist']
[u'union', u'say', u'inquiri', u'find', u'prove', u'tafe', u'short']
[u'unit', u'rule', u'appeal', u'kosmina']
[u'unsold', u'sheep', u'take']
[u'uranium', u'industri', u'heavili', u'regul', u'chief']
[u'casino', u'magnat', u'give', u'picasso', u'dream', u'elbow']
[u'virgin', u'blue', u'welcom', u'court', u'decison', u'sydney']
[u'chief', u'justic', u'back', u'crimin', u'case', u'review']
[u'wambo', u'plan', u'tourist', u'crop', u'type']
[u'memori', u'servic', u'honour', u'signific', u'battalion']
[u'water', u'author', u'issu', u'theft', u'warn']
[u'water', u'trade']
[u'whitsunday', u'dive', u'compani', u'go']
[u'yenda', u'scooter', u'rider', u'hurt', u'crash']
[u'filipino', u'worker', u'job']
[u'busi', u'news', u'market', u'analysi']
[u'aborigin', u'stockmen', u'saddl']
[u'actcoss', u'urg', u'govt', u'boost', u'welfar', u'resourc']
[u'govt', u'buy', u'properti', u'homeless']
[u'action', u'group', u'pleas', u'doctor', u'boost']
[u'revis', u'relationship']
[u'surplus', u'downgrad']
[u'afghan', u'violenc', u'continu']
[u'water', u'abc', u'broadcast', u'role']
[u'agricultur', u'group', u'talk', u'farmer']
[u'alic', u'darwin', u'rail', u'line', u'reopen', u'crash']
[u'anglican', u'confess', u'child', u'abus', u'remain']
[u'anna', u'nicol', u'smith', u'buri']
[u'antarct', u'ozon', u'hole', u'biggest', u'record', u'report']
[u'societi', u'stag', u'post', u'exhibit']
[u'ash', u'go', u'display']
[u'asia', u'pacif', u'competit', u'blame', u'dive', u'firm']
[u'aussi', u'power', u'set', u'pace', u'indi']
[u'aussi', u'train', u'irish', u'condit']
[u'australian', u'want', u'action', u'climat', u'chang']
[u'bank', u'staff', u'refus', u'train', u'indian', u'replac']
[u'bishop', u'accus', u'scientist', u'stem', u'cell', u'debat']
[u'blue', u'redback', u'clash', u'end', u'draw']
[u'blue', u'chase', u'target']
[u'brack', u'defend', u'polic', u'chief', u'anti', u'corrupt']
[u'bradley', u'carlton', u'coach', u'role']
[u'bright', u'song', u'indi', u'practic']
[u'brisban', u'riversid', u'expressway', u'reopen']
[u'broom', u'incid', u'prompt', u'foreign', u'doctor', u'screen']
[u'bullet', u'power', u'past', u'hawk']
[u'busselton', u'plead', u'guilti', u'child', u'charg']
[u'butcher', u'deni', u'player', u'revolt']
[u'crack', u'ash', u'coverag']
[u'return', u'indigen', u'manag']
[u'call', u'biosecur', u'aust', u'independ']
[u'campbel', u'give', u'final', u'approv', u'mcarthur']
[u'sale', u'improv', u'septemb']
[u'charg', u'upgrad', u'school', u'stab']
[u'child', u'sexual', u'abus', u'get', u'year', u'jail']
[u'china', u'urg', u'north', u'korea', u'return', u'talk']
[u'china', u'vow', u'implement', u'north', u'korea', u'sanction']
[u'china', u'warn', u'pyongyang', u'nuclear', u'test']
[u'church', u'servic', u'offer', u'support', u'drought']
[u'closer']
[u'closer']
[u'cobb', u'urg', u'stand', u'disabl', u'slur']
[u'cole', u'inquiri', u'legal', u'cost', u'disgust', u'taxpay']
[u'commission', u'call', u'riot', u'report', u'hype']
[u'commission', u'consid', u'action', u'recruit']
[u'confus', u'north', u'korea', u'nuclear', u'plan']
[u'coron', u'call', u'fund', u'support', u'servic']
[u'cosgrov', u'back', u'govt', u'iraqi', u'polici']
[u'cosgrov', u'dismiss', u'vietnam', u'iraq', u'comparison']
[u'cosgrov', u'say', u'iraq', u'base', u'fals', u'premis']
[u'cost', u'wrap', u'pipelin', u'builder', u'announc']
[u'council', u'give', u'march', u'order', u'hardwar', u'store']
[u'council', u'offer', u'rate', u'rise', u'assur']
[u'court', u'jail', u'arm', u'theft']
[u'court', u'order', u'halt', u'opal', u'mine', u'leas', u'sale']
[u'crew', u'scrambl', u'bushfir', u'rag', u'near', u'bathurst']
[u'cronulla', u'riot', u'polic', u'command', u'structur', u'unclear']
[u'custom', u'apprehend', u'illeg', u'fish', u'suspect']
[u'doubl', u'fatal', u'close', u'highway']
[u'draft', u'plan', u'reveal', u'look', u'bega']
[u'driver', u'escap', u'jail', u'term', u'sophi', u'delezio']
[u'drought', u'issu', u'agricultur']
[u'drink', u'driver', u'time', u'limit']
[u'embryon', u'stem', u'cell', u'research', u'inquiri']
[u'emerg', u'coordin', u'studi', u'experi']
[u'engrav', u'help', u'combat', u'crime']
[u'escape', u'jail', u'squeez', u'prison', u'bar']
[u'everton', u'boss', u'put', u'faith', u'cahil']
[u'baggag', u'courier', u'plead', u'guilti', u'steal']
[u'export', u'compani', u'perform', u'better']
[u'expressway', u'ramp', u'undergo', u'stress', u'test']
[u'fabrega', u'sign', u'year', u'deal', u'gunner']
[u'fairfax', u'target', u'murdoch', u'share', u'raid']
[u'fairfax', u'upbeat', u'news', u'corp', u'share', u'raid']
[u'fallon', u'hail', u'yeat', u'best', u'raider']
[u'farmer', u'look', u'rotten', u'banana', u'fuel']
[u'farmer', u'advic', u'help', u'risk', u'evalu']
[u'farm', u'group', u'predict', u'strong']
[u'fatal', u'truck', u'crash', u'close', u'hume', u'highway']
[u'fear', u'qaeda', u'entrench']
[u'feedback', u'seek', u'lobster', u'plan']
[u'figur', u'boost', u'indigen', u'employ']
[u'fish', u'fossil', u'shed', u'light', u'earli', u'life']
[u'dead', u'injur', u'north', u'west', u'pakistan', u'blast']
[u'forest', u'group', u'fear', u'log', u'hurt', u'water', u'suppli']
[u'risdon', u'inmat', u'jail', u'riot']
[u'fresh', u'wave', u'bomb', u'attack', u'iraq']
[u'fund', u'model', u'prompt', u'age', u'care', u'provid', u'concern']
[u'girl', u'die', u'earli', u'morn', u'highway', u'crash']
[u'govt', u'announc', u'doubl', u'drive', u'licenc']
[u'govt', u'ask', u'help', u'irrig']
[u'govt', u'ask', u'play', u'save', u'burrup', u'rock']
[u'govt', u'green', u'light', u'hotham', u'villag', u'expans']
[u'govt', u'urg', u'address', u'hous', u'afford']
[u'grain', u'presid', u'resign', u'singl', u'desk', u'comment']
[u'grape', u'grower', u'welcom', u'trade', u'chang']
[u'grow', u'doubt', u'iraq']
[u'gunmen', u'hama', u'convoy', u'casualti']
[u'hawk', u'divorc', u'second', u'wife', u'report']
[u'health', u'campus', u'rais', u'fund', u'children', u'ward']
[u'health', u'offici', u'suspend', u'forgeri']
[u'help', u'resettl', u'guantanamo', u'detaine', u'offici']
[u'high', u'rise', u'oppon', u'see', u'improv', u'design']
[u'honeymoon', u'promis', u'break', u'hill', u'job', u'boost']
[u'hop', u'talk', u'mean', u'monopoli']
[u'hospit', u'staff', u'continu']
[u'howard', u'urg', u'calm', u'murdoch', u'fairfax']
[u'iemma', u'open', u'termin', u'freight']
[u'immigr', u'dept', u'admit', u'visa', u'error']
[u'imperi', u'stride', u'scratch', u'caulfield']
[u'imperi', u'stride', u'start', u'caulfield']
[u'indi', u'carniv', u'prompt', u'weekend', u'traffic', u'remind']
[u'invis', u'cloak', u'step', u'closer']
[u'iranian', u'presid', u'warn', u'israel', u'disappear']
[u'kiwi', u'coach', u'expect', u'firework']
[u'kosmina', u'unfaz', u'vantag', u'point']
[u'labor', u'mcarthur', u'speech']
[u'lake', u'boga', u'plan', u'prompt', u'environment']
[u'lampard', u'back', u'drogba', u'blue', u'flag', u'fli', u'high']
[u'levi', u'govt', u'depart', u'boost', u'drought']
[u'lion', u'nation', u'warm']
[u'liquor', u'licens', u'await', u'news', u'chang']
[u'lockhart', u'review', u'member', u'defend', u'therapeut', u'clone']
[u'locust', u'threaten', u'nullarbor', u'crop']
[u'longreach', u'host', u'bush', u'blueprint', u'forum']
[u'loom', u'ash', u'spice', u'champion', u'trophi', u'clash']
[u'maher', u'doubt', u'clash']
[u'accus', u'train', u'rape', u'grant', u'bail']
[u'die', u'train', u'mishap']
[u'shoot', u'kiama', u'argument']
[u'surviv', u'sting', u'barb']
[u'marin', u'strong', u'glori']
[u'mason', u'kiwi', u'clash']
[u'play', u'council', u'offic', u'quit']
[u'mayor', u'beat', u'master', u'game', u'success']
[u'media', u'mccartney', u'divorc', u'battl']
[u'media', u'warn', u'bushfir', u'inquest']
[u'mildura', u'swan', u'hill', u'friday', u'octob']
[u'minist', u'mull', u'reopen', u'brisban', u'expressway']
[u'modburi', u'hospit', u'takeov', u'wast', u'money']
[u'sawtel', u'firm', u'breach']
[u'play', u'ambul', u'station', u'upgrad']
[u'mull', u'support', u'nuclear', u'power', u'station']
[u'warn', u'pipelin', u'assumpt']
[u'murdoch', u'open']
[u'murdoch', u'buy', u'percent', u'stake', u'fairfax']
[u'murdoch', u'make', u'raid', u'fairfax']
[u'murdoch', u'posit', u'media', u'shakeup']
[u'murdoch', u'raid', u'increas', u'divers']
[u'nation', u'campaign', u'aim', u'lift', u'beef', u'sale']
[u'nation', u'unfaz', u'prospect', u'page', u'liber']
[u'newcastl', u'host', u'suburban', u'mayhem', u'premier']
[u'rural', u'counsel', u'servic', u'unlik']
[u'thai', u'govt', u'swear']
[u'noosa', u'council', u'want', u'rail', u'bomb', u'hoax', u'answer']
[u'north', u'coast', u'jobless', u'rate', u'drop']
[u'boost', u'aborigin', u'hous', u'fund']
[u'nurs', u'union', u'reject', u'govt', u'respons', u'staff']
[u'offici', u'open', u'today', u'wimmera', u'oasi']
[u'opec', u'agre', u'surpris', u'output']
[u'opec', u'cut', u'product']
[u'opposit', u'call', u'releas', u'second', u'riot', u'report']
[u'outcri', u'adopt', u'stun', u'madonna', u'report']
[u'pakistan', u'dope', u'tribun', u'start', u'saturday']
[u'parliament', u'pass', u'chang']
[u'parri', u'leav', u'tour']
[u'petrovski', u'rue', u'carbon', u'departur']
[u'dismiss', u'call', u'cobb', u'sack']
[u'expect', u'north', u'korea', u'attempt', u'second', u'test']
[u'polic', u'fear', u'drought', u'boost', u'stock', u'theft']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'raid', u'offic', u'solomon']
[u'potosi', u'stag', u'develop', u'get']
[u'premier', u'back', u'sculli', u'handl', u'riot', u'report']
[u'premier', u'back', u'sculli', u'handl', u'riot', u'report']
[u'professor', u'resign', u'stun', u'liber']
[u'qanta', u'flight', u'return', u'normal', u'baggag', u'delay']
[u'compani', u'agre', u'hand', u'book', u'union']
[u'council', u'sign', u'nativ', u'titl', u'agreement']
[u'rain', u'aid', u'firefight', u'blaze', u'contain']
[u'ranger', u'open', u'season', u'account']
[u'ratepay', u'group', u'attack', u'council', u'merger', u'stanc']
[u'rental', u'properti', u'shortag', u'push', u'price']
[u'report', u'highlight', u'environment', u'friend']
[u'report', u'aim', u'migrant', u'support']
[u'report', u'children', u'rail', u'death', u'recommend', u'safeti']
[u'research', u'plan', u'studi', u'gene', u'control', u'bone']
[u'resourc', u'media', u'stock', u'drive', u'market']
[u'roebourn', u'public', u'urg', u'elect', u'vote']
[u'rise', u'miami']
[u'sartor', u'south', u'coast', u'region', u'strategi']
[u'search', u'fail', u'miss', u'victorian']
[u'secret', u'busi', u'group', u'repres', u'gunn']
[u'senat', u'committe', u'back', u'guest', u'worker', u'scheme']
[u'senat', u'reject', u'region', u'health', u'claim']
[u'socceroo', u'play', u'ghana', u'london', u'friend']
[u'solomon', u'govt', u'move', u'sack', u'aust', u'head', u'polic']
[u'southern', u'star', u'edg', u'zealand']
[u'south', u'west', u'brisban', u'blaze', u'contain']
[u'spray', u'target', u'southern', u'cross', u'locust']
[u'sudan', u'militari', u'declar', u'envoy', u'persona', u'grata']
[u'suspect', u'illeg', u'immigr', u'detain', u'victoria']
[u'suspend', u'driver', u'doubl', u'licenc']
[u'home', u'connect']
[u'tassi', u'devil', u'test', u'repel', u'properti']
[u'tatiara', u'council', u'push', u'drought', u'declar']
[u'teen', u'jail', u'granni', u'flat', u'blast']
[u'train', u'truck', u'collid', u'rail', u'cross']
[u'tripodi', u'reveal', u'port', u'kembla', u'port', u'corp', u'build']
[u'truck', u'driver', u'get', u'communiti', u'base', u'order', u'fatal']
[u'trucki', u'lose', u'licenc', u'fatal', u'crash']
[u'line', u'pleas', u'reduc', u'oper', u'cost']
[u'tuckey', u'hope', u'export', u'monopoli']
[u'union', u'want', u'media', u'law', u'backburn']
[u'polic', u'expand', u'timor', u'oper']
[u'applaud', u'china', u'north', u'korea']
[u'vicar', u'knicker', u'rescu', u'town']
[u'day', u'miss', u'bushland']
[u'govt', u'urg', u'meet', u'local', u'govt', u'smoke', u'law']
[u'wangkatjungka', u'school', u'revamp', u'complet']
[u'watkin', u'apologis', u'rail', u'carriag', u'delay']
[u'western', u'urg', u'push', u'scrub', u'clear']
[u'wind', u'whip', u'bathurst', u'bushfir']
[u'yarloop', u'resid', u'fear', u'town', u'die']
[u'yoko', u'sue', u'record', u'group', u'lennon', u'royalti']
[u'young', u'cattl', u'price', u'slip']
[u'dead', u'militia', u'polic', u'clash', u'southern', u'iraq']
[u'kill', u'polic', u'militia', u'clash', u'iraq']
[u'govt', u'continu', u'push', u'recognit']
[u'akhtar', u'asif', u'appear', u'dope', u'tribun']
[u'alic', u'spring', u'host', u'master', u'game', u'event']
[u'anti', u'branch', u'stack', u'move', u'littl', u'late']
[u'aussi', u'bloke', u'high', u'valu', u'male', u'respect', u'studi']
[u'aussi', u'claim', u'gymnast', u'silver']
[u'aussi', u'power', u'secur', u'indi', u'pole']
[u'australia', u'england']
[u'australia', u'win', u'thriller', u'kiwi']
[u'author', u'confid', u'arrang', u'apec']
[u'berdych', u'crash', u'nadal', u'parti']
[u'blaze', u'barmah', u'state', u'forest', u'contain']
[u'bring', u'beckham', u'say', u'henri']
[u'bush', u'admit', u'tactic', u'iraq', u'chang']
[u'bush', u'conced', u'iraq', u'secur', u'worsen']
[u'calm', u'return', u'southern', u'iraq', u'citi']
[u'capit', u'plucki', u'bulleen']
[u'cat', u'want', u'rule', u'push', u'china']
[u'chariti', u'bike', u'ride', u'rais', u'rehab', u'fund']
[u'china', u'report', u'progress', u'north', u'korean', u'talk']
[u'closer']
[u'closer']
[u'colombia', u'order', u'militari', u'rescu', u'hostag']
[u'conflict', u'report', u'north', u'korean', u'nuclear', u'plan']
[u'discoveri', u'human', u'remain', u'sept', u'site', u'anger']
[u'drought', u'push', u'dairi', u'brink', u'farmer']
[u'kill', u'bangladesh', u'stamped', u'free']
[u'kill', u'kashmir', u'clash', u'blast']
[u'expressway', u'ramp', u'remain', u'close', u'test']
[u'fairfax', u'stake', u'friend', u'murdoch']
[u'fairfax', u'stake', u'hostil', u'murdoch']
[u'farmer', u'hail', u'adjourn', u'nativ', u'veget', u'bill']
[u'fast', u'finish', u'kangaroo', u'break', u'kiwi', u'heart']
[u'payback', u'victori']
[u'feder', u'breez', u'madrid', u'final']
[u'destroy', u'second', u'hand', u'store']
[u'firefight', u'tackl', u'state', u'forest', u'blaze', u'near', u'perth']
[u'flintoff', u'australia', u'sight']
[u'franc', u'urg', u'israel', u'stop', u'violat']
[u'georg', u'michael', u'say', u'cannabi', u'keep', u'sane']
[u'glori', u'keeper', u'break']
[u'govt', u'urg', u'waiv', u'stamp', u'duti', u'farm', u'sale']
[u'grazier', u'urg', u'prove', u'sustainabl']
[u'green', u'push', u'revis']
[u'hay', u'take', u'caulfield']
[u'health', u'insur', u'reform', u'eros', u'medicar']
[u'human', u'error', u'blame', u'nepal', u'crash']
[u'immigr', u'apologis', u'visa']
[u'indian', u'armi', u'arrest', u'pakistan']
[u'iraq', u'limit', u'data', u'death', u'toll', u'violenc']
[u'iraq', u'open']
[u'iraq', u'rush', u'troop', u'control', u'street', u'battl']
[u'keith', u'urban', u'enter', u'rehab']
[u'king', u'smash', u'razor', u'taipan', u'tiger', u'triumph']
[u'kuznetsova', u'zurich', u'semi']
[u'lawyer', u'call', u'vanston', u'correct', u'visa']
[u'leed', u'top', u'england', u'hooligan', u'list']
[u'lobbi', u'group', u'welcom', u'plan', u'review', u'right']
[u'london', u'exhibit', u'celebr', u'histori', u'video']
[u'magnitud', u'quak', u'hit', u'peru', u'coast']
[u'dead', u'sydney', u'hous']
[u'escap', u'melbourn', u'hous']
[u'hospit', u'stab', u'attack']
[u'mcarthur', u'mine', u'chief', u'discount', u'tradit', u'owner']
[u'mecca', u'meet', u'seek', u'iraq', u'sectarian', u'violenc']
[u'mental', u'ill', u'rise', u'drought', u'take', u'hold']
[u'human', u'remain', u'site']
[u'human', u'remain', u'sept', u'site']
[u'wait', u'list', u'oppn']
[u'moroney', u'confid', u'arrang', u'apec']
[u'moroney', u'open']
[u'murder', u'suicid', u'suspect', u'dead']
[u'nasho', u'recognis', u'memori']
[u'fountain', u'commemor', u'nasho']
[u'korea', u'readi', u'join', u'nuclear', u'talk']
[u'willi', u'worri', u'say', u'lockyer']
[u'liber', u'plan', u'rule', u'stop', u'branch', u'stack']
[u'polic', u'chief', u'face', u'report', u'controversi']
[u'price', u'fall']
[u'older', u'kelli', u'win', u'supercar', u'race']
[u'anonym', u'pulp', u'oppon', u'timber', u'lobbi', u'say']
[u'perth', u'beach', u'close', u'snare']
[u'polic', u'apec', u'prepar', u'report']
[u'polic', u'chief', u'face', u'riot', u'report', u'controversi']
[u'polic', u'prepar', u'apec', u'cronulla']
[u'polic', u'rspca', u'investig', u'death', u'wallabi', u'school']
[u'polic', u'search', u'gold', u'coast', u'kidnap']
[u'polic', u'treat', u'store', u'blaze', u'suspici']
[u'pom', u'want', u'ash', u'schedul', u'chang']
[u'power', u'pole', u'indi']
[u'defend', u'polici', u'light', u'rail', u'death']
[u'quak', u'hit', u'central', u'west']
[u'rabbit', u'blame', u'penguin', u'death', u'landslid']
[u'rain', u'hinder', u'contain', u'rankin']
[u'restrict', u'halt', u'water', u'parkland']
[u'retail', u'count', u'cost', u'brisban', u'expressway', u'closur']
[u'rice', u'cast', u'doubt', u'north', u'korea', u'nuclear', u'test', u'pledg']
[u'russia', u'play', u'victim', u'vote', u'rome', u'best']
[u'council', u'reject', u'speed', u'camera']
[u'school', u'stab', u'victim', u'recov', u'surgeri']
[u'schumach', u'edg', u'alonso', u'brazil', u'practic']
[u'sculli', u'apologis', u'riot', u'report', u'handl']
[u'sculli', u'deni', u'lie', u'parliament', u'riot', u'report']
[u'dead', u'blast', u'hit', u'pakistani', u'shop', u'crowd']
[u'solomon', u'investig', u'offic', u'raid']
[u'solomon', u'investig', u'ramsi', u'raid', u'offic']
[u'solomon', u'solicitor', u'general', u'decid', u'return']
[u'solomon', u'solicitor', u'general', u'pull']
[u'solomon', u'solicitor', u'general', u'return', u'aust']
[u'somali', u'govern', u'troop', u'town']
[u'sphenophyta', u'lead', u'caulfield', u'bet']
[u'lanka', u'track', u'rout', u'kiwi']
[u'lankan', u'navi', u'tiger', u'clash', u'battl']
[u'sydney', u'public', u'transport', u'inadequ', u'report']
[u'sydney', u'suburb', u'name', u'state', u'worst', u'water', u'waster']
[u'nurs', u'dismiss', u'staff', u'plan']
[u'tawqeet', u'take', u'caulfield']
[u'thai', u'seek', u'support', u'region', u'neighbour']
[u'theme', u'taxi', u'bandit']
[u'thompson', u'doubl', u'sink', u'sydney']
[u'tourism', u'group', u'say', u'abandon', u'hors', u'event']
[u'tree', u'project', u'team', u'forc', u'scale', u'design']
[u'tuckey', u'hold', u'hope', u'wheat', u'monopoli', u'decis']
[u'tyson', u'unimpress', u'exhibit']
[u'museum', u'urg', u'negoti', u'aborigin']
[u'stock', u'flat', u'caterpillar', u'take', u'fall']
[u'watson', u'johnson', u'restrict', u'england']
[u'world', u'casualti', u'ciss', u'train']
[u'troop', u'farewel', u'darwin']
[u'cameramen', u'collect', u'award', u'excel']
[u'adelaid', u'clinch', u'second', u'knight']
[u'airport', u'oper', u'busi', u'usual']
[u'black', u'unearth', u'marshal']
[u'amateur', u'rocket', u'scientist', u'reach', u'space']
[u'aussi', u'jone', u'triumph', u'hawaii']
[u'aust', u'beat', u'england', u'champion', u'trophi']
[u'australian', u'scientist', u'record', u'sound', u'rare', u'whale']
[u'australian', u'win', u'taiwan', u'race', u'world', u'tallest']
[u'australia', u'status', u'pacif', u'weaken', u'rudd']
[u'aust', u'scientist', u'sound', u'track', u'whale', u'movement']
[u'beatti', u'back', u'brisban', u'bridg', u'propos']
[u'beatti', u'set', u'target', u'faster', u'broadband']
[u'beckham', u'frustrat', u'bench', u'role']
[u'beenleigh', u'school', u'damag', u'second', u'arson', u'attack']
[u'birthday', u'martyn', u'make', u'australia']
[u'brisban', u'motorist', u'warn', u'road', u'closur']
[u'british', u'employe', u'afghan', u'jail', u'bedroom']
[u'bush', u'militari', u'command', u'discuss', u'iraq', u'tactic']
[u'bush', u'stand', u'firm', u'iraq', u'despit', u'mount', u'violenc']
[u'bush', u'general', u'mull', u'chang', u'iraq', u'strategi']
[u'bush', u'vow', u'press', u'iraq', u'unrest', u'intensifi']
[u'cabinet', u'consid', u'chang', u'drought', u'rule']
[u'cabinet', u'consid', u'drought', u'assist']
[u'cane', u'toad', u'arriv', u'year', u'report']
[u'crash', u'kill', u'teen']
[u'cat', u'power', u'london']
[u'closer']
[u'closer']
[u'csiro', u'close', u'darwin', u'plant', u'research', u'divis']
[u'cycl', u'group', u'push', u'safe', u'school', u'rout']
[u'depor', u'climb', u'second', u'atletico']
[u'detail', u'teenag', u'crash', u'victim', u'releas']
[u'elder', u'seek', u'return', u'aborigin', u'burn']
[u'ferguson', u'urg', u'labor', u'uranium', u'mine']
[u'flintoff', u'play', u'ash', u'worri']
[u'teen', u'kill', u'crash']
[u'gambl', u'pay', u'cat']
[u'german', u'nazi', u'ralli', u'jail', u'singer']
[u'gnangara', u'plantat', u'fire', u'contain']
[u'govt', u'consid', u'drought', u'assist']
[u'grape', u'vulner', u'climat', u'chang', u'research']
[u'green', u'perman', u'water', u'restrict']
[u'howard', u'attend', u'pacif', u'forum', u'amid', u'increas']
[u'hundr', u'children', u'subject', u'avo']
[u'iceland', u'break', u'moratorium', u'whale', u'catch']
[u'iceland', u'whaler', u'kill', u'whale']
[u'investig', u'begin', u'fatal', u'crash']
[u'investig', u'continu', u'fatal', u'teen', u'crash']
[u'iraq', u'amopen']
[u'iraq', u'violenc', u'continu', u'despit', u'mecca', u'peac']
[u'iraq', u'violenc', u'intensifi']
[u'islamist', u'forc', u'gather', u'somali', u'prepar', u'flee']
[u'hear', u'traffic', u'case', u'court']
[u'kelli', u'brother', u'shine', u'gold', u'coast']
[u'kingston', u'forum', u'back', u'take', u'land', u'trail']
[u'liber', u'call', u'inquiri', u'quarri', u'sale']
[u'liberator', u'back', u'state', u'origin', u'call']
[u'macgil', u'ash', u'spin', u'play']
[u'charg', u'shanghai', u'club', u'stab']
[u'shoot', u'melbourn', u'stand']
[u'face', u'heroin', u'import', u'charg']
[u'neighbour', u'lift', u'govern', u'standard', u'howard']
[u'jail', u'luxuri', u'accommod']
[u'quak', u'caus', u'damag']
[u'teen', u'smoke', u'year', u'survey']
[u'nuclear', u'carrot', u'stick', u'approach', u'doom', u'iran']
[u'obes', u'post', u'menopaus', u'women', u'prone', u'breast', u'cancer']
[u'omalley', u'chase', u'lead', u'mallorca']
[u'oppn', u'say', u'airlin', u'insur', u'affect']
[u'opposit', u'maintain', u'pressur', u'sculli']
[u'pacino', u'honour', u'lifetim', u'achiev']
[u'pain', u'fire', u'tiger', u'waca']
[u'patrol', u'boat', u'fleet', u'return', u'servic']
[u'peacekeep', u'bring', u'fresh', u'violenc']
[u'philharmon', u'societi', u'close', u'costum', u'hire', u'busi']
[u'philipp', u'take', u'gold', u'coast', u'indi']
[u'philipp', u'triumphant', u'power', u'shunt']
[u'tell', u'pacif', u'govt', u'lift', u'standard']
[u'polic', u'releas', u'detail', u'teenag', u'crash', u'victim']
[u'polic', u'releas', u'detail', u'teen', u'crash', u'victim']
[u'polic', u'seiz', u'drug', u'weapon', u'broadmarsh']
[u'polic', u'urg', u'vigil', u'abduct', u'attempt']
[u'pont', u'hail', u'easi', u'england']
[u'pont', u'promis', u'bouncer', u'barrag', u'ash']
[u'pope', u'call', u'sectarian', u'violenc', u'iraq']
[u'protest', u'ralli', u'plan', u'closur']
[u'rann', u'accus', u'inact', u'taxi', u'problem']
[u'research', u'call', u'macquari', u'rabbit', u'cull']
[u'research', u'defend', u'iraq', u'death', u'estim']
[u'revitalis', u'jet', u'stun', u'roar']
[u'rice', u'meet', u'editor', u'murder', u'russian']
[u'rice', u'ralli', u'support', u'russia', u'north', u'korea']
[u'rizzo', u'make', u'australian', u'gymnast', u'histori']
[u'rolton', u'undergo', u'knee', u'scan']
[u'ruddock', u'confid', u'secur', u'apec']
[u'ruddock', u'happi', u'apec', u'secur', u'prepar']
[u'rudd', u'say', u'iraq', u'reput']
[u'dairi', u'farmer', u'verg', u'quit']
[u'safeti', u'light', u'instal', u'outsid', u'school']
[u'labor', u'drop', u'confer', u'union']
[u'urg', u'chang', u'ahead', u'feder']
[u'schu', u'sidelin', u'second', u'titl', u'beckon', u'alonso']
[u'servic', u'media', u'law', u'introduc']
[u'seven', u'foreign', u'worker', u'free', u'nigeria']
[u'sharapova', u'set', u'hantuchova', u'showdown']
[u'shevchenko', u'break', u'goal', u'drought']
[u'shopkeep', u'criticis', u'slow', u'brigad', u'respons']
[u'sing', u'shower', u'wast', u'money']
[u'small', u'earthquak', u'hit', u'south', u'east', u'melbourn']
[u'sogavar', u'say', u'offic', u'raid', u'provoc']
[u'soldier', u'control', u'iraqi', u'citi', u'clash', u'spread']
[u'southern', u'star', u'thriller']
[u'stott', u'despoja', u'exit', u'democrat']
[u'stott', u'despoja', u'polit']
[u'stott', u'despoja', u'leav', u'polit']
[u'sudan', u'expel', u'envoy', u'darfur']
[u'sydney', u'hospit', u'isol', u'babi', u'stomach', u'virus']
[u'tander', u'win', u'race']
[u'tawqeet', u'yeat', u'duel', u'favourit']
[u'thousand', u'gather', u'alic', u'master', u'game']
[u'tiger', u'control', u'waca']
[u'tiger', u'dragon', u'winless']
[u'tiger', u'steadi', u'send']
[u'ugandan', u'presid', u'meet', u'rebel', u'peac', u'talk']
[u'vanston', u'refus', u'comment', u'visa', u'mistak']
[u'firefight', u'battl', u'blaze', u'overnight']
[u'tackl', u'climat', u'chang']
[u'vietnam', u'accus', u'fear', u'control', u'internet']
[u'water', u'pipe', u'remain', u'break', u'despit', u'loom']
[u'dead', u'bangladesh', u'ferri', u'accid']
[u'million', u'afford', u'dental', u'care', u'acoss']
[u'iron', u'engin', u'worker', u'lose', u'job']
[u'miss', u'bangladesh', u'ferri', u'crash', u'polic']
[u'keep', u'credit', u'rat']
[u'chopper', u'make', u'emerg', u'land']
[u'australian', u'pilot', u'kill', u'crash']
[u'australian', u'perfect', u'cancer', u'gene', u'screen']
[u'bali', u'bomb', u'milit', u'free']
[u'blaze', u'spark', u'west']
[u'blood', u'suppli', u'need', u'urgent']
[u'boycott', u'call', u'fletcher', u'head']
[u'bull', u'hand', u'cap', u'blue', u'clash']
[u'fraser', u'island', u'fund']
[u'canberra', u'construct', u'boom', u'expect', u'continu']
[u'cap', u'show', u'commit', u'caus']
[u'china', u'releas', u'journalist', u'charg']
[u'closer']
[u'corrupt', u'watchdog', u'investig', u'council', u'bribe']
[u'court', u'consid', u'impact', u'name', u'juvenil']
[u'crew', u'battl', u'rubbish', u'dump', u'blaze']
[u'csiro', u'back', u'govt', u'climat', u'chang', u'plan']
[u'downer', u'condemn', u'sudan', u'expuls', u'envoy']
[u'economist', u'question', u'boom', u'predict']
[u'englishman', u'stand', u'trial', u'tourist', u'murder']
[u'famili', u'friend', u'mourn', u'teen', u'death']
[u'farm', u'safe', u'plantat', u'abetz']
[u'troop', u'kill', u'baghdad']
[u'forest', u'manag', u'sustain', u'confer', u'tell']
[u'fraser', u'master', u'record', u'final', u'go']
[u'fuel', u'reduct', u'burn', u'prompt', u'phone', u'call']
[u'gatecrash', u'amend', u'window', u'dress']
[u'gippsland', u'restrict', u'come', u'earli']
[u'goonellabah', u'communiti', u'mourn', u'teen', u'death']
[u'govt', u'launch', u'secur', u'site']
[u'govt', u'urg', u'boost', u'welfar', u'spend']
[u'govt', u'urg', u'attent', u'workplac', u'safeti']
[u'gregan', u'accompani', u'japan']
[u'grow', u'concern', u'solomon', u'stalem']
[u'heal', u'add', u'coach']
[u'aid', u'rat', u'spike', u'govt']
[u'howard', u'deni', u'australia', u'solomon', u'raid']
[u'hungerford', u'hill', u'secur', u'drop', u'award']
[u'hunter', u'winegrow', u'urg', u'climat', u'chang']
[u'take', u'toll', u'north', u'east', u'crop']
[u'indigen', u'theatr', u'head', u'sydney', u'opera', u'hous']
[u'inquiri', u'bash', u'death', u'prompt', u'parol']
[u'iraq', u'impos', u'curfew', u'tens', u'shiit', u'town']
[u'lake', u'entranc', u'plan', u'face', u'cost', u'blowout']
[u'langer', u'retali', u'day', u'pain']
[u'fin', u'drive', u'offenc']
[u'jail', u'branch', u'bash']
[u'melbourn', u'ballarat', u'goldrush', u'train', u'track']
[u'melbourn', u'super', u'council', u'propos', u'reject']
[u'monaghetti', u'hail', u'marathon', u'rise', u'star']
[u'reject', u'bore', u'predict']
[u'guarante', u'butcher']
[u'avoid', u'speedi', u'reform', u'crash']
[u'govt', u'avoid', u'speedi', u'reform', u'crash']
[u'mother', u'like', u'pay', u'matern', u'leav']
[u'oppn', u'say', u'epicentr', u'court', u'case', u'cost', u'taxpay']
[u'opposit', u'call', u'govt', u'futur', u'proof']
[u'oxley', u'moyhu', u'face', u'water', u'restrict']
[u'phar', u'arsenic', u'claim', u'prematur', u'expert']
[u'arriv', u'fiji', u'amid', u'coup', u'fear']
[u'condemn', u'australian', u'arrog']
[u'polic', u'search', u'miss', u'teen']
[u'power', u'return', u'home']
[u'queen', u'london', u'home', u'night']
[u'report', u'predict', u'econom', u'boom', u'australia']
[u'resourc', u'slump', u'fail', u'market']
[u'rooki', u'quick', u'debut', u'bushrang']
[u'parent', u'avoid', u'charg', u'gatecrash']
[u'school', u'closur', u'impact', u'child', u'obes']
[u'scientist', u'super', u'earth', u'ball']
[u'seven', u'year', u'jail', u'drug', u'squad']
[u'solomon', u'offic', u'raid', u'condemn', u'vanuatu']
[u'stem', u'cell', u'research', u'scientist']
[u'stott', u'despoja', u'deni', u'retir', u'send', u'wrong', u'messag']
[u'suncorp', u'boss', u'unconcern', u'takeov', u'talk']
[u'teen', u'girl', u'face', u'trial', u'cabbi', u'murder']
[u'test', u'allevi', u'bird', u'fear', u'australian']
[u'tiger', u'continu', u'batter', u'warrior']
[u'tiger', u'pile', u'miseri', u'declar']
[u'trio', u'reject', u'alleg', u'parkland', u'rape', u'assault']
[u'ultraviolet', u'light', u'help', u'asthma', u'suffer', u'studi']
[u'ultraviolet', u'reduc', u'asthma', u'symptom', u'mice']
[u'victoria', u'announc', u'extra', u'drought', u'fund']
[u'virgin', u'flag', u'drop', u'fuel', u'surcharg']
[u'volcan', u'blanket', u'philippin', u'villag']
[u'water', u'author', u'tell', u'need', u'farmer', u'input']
[u'woman', u'plead', u'guilti', u'stab', u'boyfriend']
[u'open', u'afghan', u'school']
[u'news', u'photograph', u'kidnap', u'gaza']
[u'australian', u'gorg', u'natur', u'resourc']
[u'aust', u'stay', u'ramsi']
[u'koala', u'list', u'vulner']
[u'closer']
[u'girl', u'attack', u'appal', u'brack', u'say']
[]
[u'govt', u'defend', u'qeii', u'site', u'tender']
[u'govt', u'extend', u'drought', u'relief', u'packag']
[u'hong', u'kong', u'detain', u'north', u'korean', u'cargo', u'ship']
[u'howard', u'applaud', u'pacif', u'leader', u'back', u'ramsi']
[u'hungarian', u'polic', u'brace', u'violenc']
[u'langer', u'show', u'wash']
[u'moti', u'appear', u'honiara', u'court']
[u'push', u'drought']
[u'pacif', u'leader', u'agre', u'ramsi', u'review']
[u'pacif', u'leader', u'agre', u'review', u'ramsi', u'oper']
[u'reaction', u'mix', u'plan', u'mandatori', u'domest']
[u'lanka', u'south', u'africa']
[u'thai', u'parliament', u'appoint', u'head']
[u'union', u'confer', u'spark', u'fresh', u'debat']
[u'univers', u'ink', u'research', u'collabor']
[u'victori', u'coach', u'merrick', u'defend', u'butcher']
[u'aust', u'fend', u'ramsi', u'leadership', u'challeng']
[u'australian', u'injur', u'timor', u'violenc']
[u'closer']
[u'cruis', u'ship', u'regul', u'scrutini']
[u'drought', u'forc', u'scale', u'road', u'grade', u'program']
[u'drug', u'turn', u'foxi', u'ladi', u'mother']
[u'solomon', u'face', u'court']
[u'giteau', u'excit', u'half', u'switch']
[u'green', u'group', u'welcom', u'solar', u'plant', u'plan']
[u'hop', u'star', u'bonus', u'point']
[u'hop', u'star', u'bull', u'bonus', u'point']
[u'inflat', u'figur', u'indic', u'rat', u'rise']
[u'inflat', u'figur', u'point', u'rat', u'rise']
[u'iran', u'say', u'second', u'enrich', u'cascad', u'instal']
[u'lowi', u'implic', u'isra', u'corrupt']
[u'mitsubishi', u'criticis', u'closur', u'report']
[u'polic', u'minist', u'sculli', u'quit']
[u'premier', u'sack', u'sculli']
[u'remov', u'ramsi', u'happen', u'solomon']
[u'steal', u'wag', u'inquiri', u'hear', u'evid']
[u'support', u'group', u'understand', u'patel', u'deal']
[u'tiger', u'point', u'thriller']
[u'dead', u'timor', u'violenc']
[u'attack', u'continu', u'ahead', u'lanka', u'peac', u'talk']
[u'strain', u'forc', u'queen', u'elizabeth', u'cancel', u'visit']
[u'china', u'crack', u'great', u'wall', u'tourism']
[u'chines', u'author', u'arrest', u'alleg']
[u'closer']
[u'compani', u'fin', u'employe', u'sustain', u'sever']
[u'dfat', u'issu', u'travel', u'warn', u'timor']
[u'father', u'reiter', u'support', u'madonna', u'adopt']
[u'fijian', u'polic', u'wait', u'question', u'injur', u'foster']
[u'govt', u'contraven', u'labour', u'treati', u'safeti']
[u'govt', u'stand', u'firm', u'teacher', u'deal', u'offer']
[u'govt', u'report', u'water']
[u'howard', u'leav', u'door', u'open', u'drought']
[u'wild']
[u'charg', u'doubl', u'murder']
[u'mcgrath', u'keep', u'ball', u'ash']
[u'nato', u'say', u'taliban', u'civilian', u'shield']
[u'polic', u'search', u'miss', u'fishermen']
[u'polic', u'warn', u'brisban', u'women', u'assault']
[u'russia', u'reject', u'europ', u'draft', u'resolut', u'iran']
[u'korean', u'coastguard', u'search', u'russian', u'crew']
[u'solomon', u'maintain', u'ramsi', u'critic']
[u'southern', u'star', u'crush', u'kiwi', u'brisban']
[u'woman', u'miss', u'south', u'stradbrok']
[u'akhtar', u'asif', u'statement', u'dope', u'panel']
[u'author', u'resum', u'search', u'miss', u'fisher']
[u'boucher', u'kemp', u'defi', u'pakistan', u'match']
[u'closer', u'news']
[u'govt', u'counsel', u'rebat', u'target', u'abort']
[u'hilali', u'refus', u'resign']
[u'hundr', u'mourn', u'teenag', u'crash', u'victim']
[u'iran', u'step', u'enrich', u'work', u'defianc']
[u'jet', u'point', u'controversi', u'finish']
[u'knuckl', u'keen', u'gregan', u'pump']
[u'malawi', u'judg', u'adjourn', u'madonna', u'adopt', u'case']
[u'minist', u'say', u'sheikh', u'remark', u'reinforc', u'rape']
[u'novel', u'approach', u'indigen', u'literaci']
[u'polic', u'alleg', u'perth', u'childcar', u'centr', u'tie']
[u'power', u'lesson', u'confid', u'trip']
[u'rockmelon', u'link', u'salmonella', u'outbreak']
[u'queen', u'cancel', u'engag', u'doctor', u'order']
[u'sheikh', u'take', u'break', u'refus', u'resign']
[u'sydney', u'adelaid', u'canberra', u'notch', u'wnbl', u'win']
[u'union', u'oppos', u'beazley', u'teacher', u'scheme']
[u'tiger', u'point', u'waca']
[u'quarter', u'growth', u'slump']
[u'australian', u'accus', u'incit', u'east', u'timor', u'violenc']
[u'brough', u'face', u'protest', u'polic', u'station']
[u'closer']
[u'field', u'omagh', u'claim', u'plate']
[u'fiji', u'vow', u'deal', u'armi', u'chief']
[u'flame']
[u'grassfir', u'close', u'road', u'near', u'tamborin']
[u'gunmen', u'kidnap', u'iraqi', u'soldier', u'north', u'baghdad']
[u'hasan', u'turn', u'bangladesh', u'caretak', u'leader', u'post']
[u'hirvonen', u'control', u'ralli', u'australia']
[u'hundr', u'farewel', u'teen', u'crash', u'victim']
[u'die', u'sydney', u'fish', u'accid']
[u'marin', u'hold', u'roar', u'snatch', u'draw']
[u'miandad', u'want', u'power', u'pakistan', u'coach']
[u'pakistan', u'coach', u'summon', u'dope', u'inquiri']
[u'pressur', u'grow', u'german', u'govt', u'afghan']
[u'sudan', u'accus', u'bomb', u'town', u'chad']
[u'taliban', u'say', u'peac', u'talk', u'kabul']
[u'tiger', u'cruis', u'victori', u'croc']
[u'umaga', u'french', u'debut']
[u'west', u'indi', u'bat', u'england']
[u'hilali', u'ask', u'avoid', u'brisban', u'festiv']
[u'aust', u'command', u'reject', u'timor', u'death', u'report']
[u'australian', u'catch', u'smuggl', u'weapon', u'yemen']
[u'aust', u'soldier', u'role', u'iraq']
[u'bodi', u'link', u'plane', u'crash', u'polic']
[u'bull', u'chase', u'victori']
[u'closer']
[u'dragon', u'break', u'duck']
[u'drought', u'affect', u'waterbird', u'popul', u'survey']
[u'energi', u'firm', u'sign', u'bolivian', u'agreement']
[u'feder', u'govt', u'announc', u'school', u'chaplain', u'program']
[u'feder', u'govt', u'fund', u'chaplain', u'school']
[u'hirvonen', u'win', u'ralli', u'loeb', u'take', u'titl']
[u'india', u'bat', u'australia']
[u'industri', u'fear', u'fallout', u'dicaprio', u'blood']
[u'isra', u'presid', u'step', u'asid']
[u'jewel', u'eye', u'centuri', u'vic', u'control']
[u'labor', u'launch', u'rat', u'campaign']
[u'moti', u'reject', u'abus', u'alleg']
[u'nepal', u'rebel', u'extend', u'truce', u'boost', u'peac', u'talk']
[u'lanka', u'peac', u'deleg', u'battl']
[u'sydney', u'muslim', u'communiti', u'celebr']
[u'wolfmoth', u'domin', u'aria', u'award']
[u'arm', u'farmer', u'put', u'stock']
[u'blue', u'bull', u'winless']
[u'brack', u'baillieu', u'look', u'forward', u'campaign']
[u'britain', u'push', u'extend', u'carbon', u'trade', u'market']
[u'campbel', u'urg', u'incent']
[u'childcar', u'centr', u'worker', u'suspend', u'restraint']
[u'climat', u'chang', u'cost', u'world', u'trillion', u'report']
[u'closer']
[u'consular', u'staff', u'seek', u'access', u'aust', u'trio', u'arrest']
[u'council', u'clear', u'tugun', u'desalin', u'plant']
[u'fallon', u'confid', u'yeat']
[u'forecast', u'predict', u'land', u'price', u'drop']
[u'grain', u'grower', u'want', u'wheat', u'export', u'chang']
[u'detain', u'woman', u'bodi']
[u'melbourn', u'woman', u'recount', u'plane', u'crash']
[u'criticis', u'redevelop', u'plan']
[u'research', u'wont', u'chang', u'school', u'polici', u'govt', u'say']
[u'order', u'resolv', u'code', u'black', u'disput']
[u'print', u'firm', u'order', u'chines']
[u'rerden', u'take', u'east', u'timor', u'command']
[u'skill', u'migrant', u'fundament', u'flaw']
[u'suharto', u'releas', u'jail']
[u'thousand', u'mourn', u'nigerian', u'sultan', u'kill', u'crash']
[u'youth', u'mental', u'health', u'program', u'stay']
[u'youth', u'worker', u'blame', u'drug', u'dili', u'violenc']
[u'approach', u'indigen', u'domest']
[u'downer', u'fear', u'fiji', u'coup', u'happen', u'quick']
[u'director', u'claim', u'unpaid', u'expens']
[u'govt', u'defend', u'oversea', u'worker', u'canberra']
[u'govt', u'refus', u'motion', u'emiss', u'target']
[u'hayden', u'play', u'safe', u'comeback']
[u'heart', u'foundat', u'want', u'rework', u'food', u'label']
[u'israel', u'vow', u'continu', u'lebanon', u'flight']
[u'larg', u'polic', u'presenc', u'expect', u'hilali', u'ralli']
[u'lawyer', u'say', u'murder', u'accus', u'aggriev']
[u'lynch', u'look', u'return', u'knight']
[u'magistr', u'oshan', u'face', u'conduct', u'investig']
[u'mandela', u'lead', u'tribut', u'africa', u'botha']
[u'end', u'stand', u'polic']
[u'jail', u'centrelink', u'fraud']
[u'mccain', u'confirm', u'cut']
[u'money', u'gaug', u'cricket', u'success']
[u'take', u'japan', u'match', u'serious']
[u'plane', u'crash', u'victim', u'name']
[u'retrial', u'order', u'china', u'human', u'right', u'activist', u'case']
[u'govt', u'stand', u'drought', u'respons']
[u'nato', u'soldier', u'hurt', u'afghan', u'suicid', u'raid']
[u'young', u'gun', u'star', u'team']
[u'young', u'gun', u'pick', u'star', u'clash']
[u'chairman', u'faint', u'lectur']
[u'offer', u'assist', u'fiji', u'stand']
[u'atkinson', u'take', u'posit', u'away', u'increas']
[u'baillieu', u'brand', u'labor', u'dirti']
[u'breaker', u'thrash', u'tiger']
[u'closer']
[u'darwin', u'mayor', u'investig', u'fridg']
[u'farmer', u'urg', u'rethink', u'techniqu']
[u'fijian', u'stand', u'continu']
[u'fiji', u'prepar', u'unrest']
[u'leagu', u'player', u'win', u'defam', u'case']
[u'fund', u'inject', u'need', u'road', u'rule', u'polic']
[u'gid', u'reject', u'public', u'hospit', u'poach', u'claim']
[u'remand', u'custodi', u'daughter', u'death']
[u'warn', u'climat', u'action', u'cost']
[u'polic', u'investig', u'burn', u'bodi', u'discoveri']
[u'govt', u'admit', u'minor', u'glitch', u'traveston']
[u'sheikh', u'call', u'ralli', u'cancel']
[u'sign', u'languag', u'take', u'stage']
[u'stefianiak', u'tight', u'lip', u'intern', u'ruction']
[u'storm', u'hit', u'canberra', u'suburb', u'yacht', u'club']
[u'therapi', u'prove', u'shock', u'stroke', u'patient']
[u'liber', u'announc', u'educ', u'polici']
[u'major', u'parti', u'spend']
[u'clark', u'expect', u'tough', u'test', u'west', u'indi']
[u'drug', u'baron', u'daughter', u'jail']
[u'pinch', u'flame']
[u'firm', u'eye', u'worldwid', u'market', u'rifl', u'control']
[u'isra', u'sharon', u'move', u'intens', u'care']
[u'ghan', u'servic', u'resum', u'sunday', u'even']
[u'hetherington', u'take', u'lead', u'shima']
[u'iceberg', u'warn', u'ship', u'southern', u'ocean']
[u'idiot', u'fin', u'highlight', u'speed', u'camera', u'locat']
[u'italian', u'photograph', u'free', u'afghanistan']
[u'lion', u'look', u'improv', u'perform']
[u'palestinian', u'kill', u'gaza', u'mosqu', u'sieg']
[u'surviv', u'australian', u'somar']
[u'polic', u'bodi', u'baghdad', u'hour']
[u'polic', u'review', u'team', u'examin', u'handl', u'civil']
[u'taiwan', u'presid', u'wife', u'face', u'corrupt', u'charg']
[u'tascorp', u'predict', u'continu', u'interst', u'migrat']
[u'thailand', u'drop', u'charg', u'muslim', u'protest']
[u'charg', u'girl', u'behead', u'indonesia']
[u'post', u'nuclear', u'bomb', u'instruct', u'internet']
[u'leader', u'push', u'point', u'elect', u'debat']
[u'victori', u'snatch', u'draw', u'marin']
[u'walker', u'stand', u'unrel', u'ford', u'cut', u'amwu']
[u'brack', u'rule', u'second', u'debat']
[u'busi', u'group', u'liber', u'handl', u'leak', u'email']
[u'cap', u'breez', u'past', u'lightn', u'strong']
[u'russian', u'electr', u'worker', u'wound', u'iraq']
[u'freedman', u'starter']
[u'freedman', u'starter']
[u'gaza', u'unrest', u'continu']
[u'hair', u'loss', u'disappoint', u'pont']
[u'hawk', u'hold', u'bullet', u'breaker']
[u'jetcat', u'crew', u'come', u'sink', u'boat']
[u'legisl', u'amend', u'landmark']
[u'lion', u'upset', u'kangaroo']
[u'outclass', u'japan']
[u'polic', u'hold', u'grave', u'concern', u'miss', u'mother']
[u'polic', u'locat', u'down', u'plane']
[u'polic', u'search', u'prison', u'escape']
[u'seven', u'kill', u'thailand', u'south']
[u'sydney', u'blow', u'lead']
[u'victim', u'felt', u'snake', u'bite', u'expert']
[u'webb', u'keep', u'touch', u'japan']
[u'young', u'socceroo', u'qualifi', u'quarter']
[u'celebr', u'anniversari']
[u'pick', u'cinematograph', u'award']
[u'baillieu', u'share', u'creat', u'conflict']
[u'closer']
[u'dfat', u'work', u'speed', u'australian', u'charg']
[u'fiji', u'accus', u'aust', u'custom', u'breach']
[u'flegg', u'promis', u'clearer', u'messag', u'elect']
[u'howard', u'call', u'murray', u'darl', u'talk']
[u'nobl', u'urg', u'lion', u'push', u'kiwi']
[u'offici', u'visit', u'australian', u'detain', u'yemen']
[u'polic', u'arrest', u'prison', u'escape']
[u'polic', u'identifi', u'bodi', u'creswick', u'lake']
[u'polic', u'probe', u'rocket', u'sale', u'claim']
[u'ranger', u'outlast', u'lynx']
[u'saddam', u'receiv', u'death', u'sentenc']
[u'saddam', u'sentenc', u'death']
[u'saddam', u'verdict', u'import', u'mileston', u'iraq']
[u'webb', u'end', u'sorenstam', u'streak']
[u'wildcat', u'surg', u'overtim', u'defeat', u'razorback']
[u'windi', u'champ', u'trophi', u'final']
[u'windi', u'crash', u'champ', u'trophi', u'final']
[u'aapt', u'close', u'bendigo', u'centr']
[u'adelaid', u'cdep', u'worker', u'say', u'wouldnt']
[u'aerial', u'contractor', u'look', u'cost']
[u'alcohol', u'blame', u'increas', u'indigen']
[u'alic', u'council', u'need', u'sport', u'trust', u'fund', u'vatskali']
[u'alic', u'school', u'urg', u'govt', u'support', u'attend']
[u'black', u'cours', u'world', u'henri']
[u'maliki', u'welcom', u'saddam', u'death', u'penalti']
[u'seek', u'wait', u'list', u'guarante']
[u'anim', u'death', u'prompt', u'govt', u'farm']
[u'ash', u'pressur', u'england', u'pont']
[u'asic', u'forc', u'lend', u'compani', u'chang']
[u'asif', u'appeal', u'dope']
[u'aust', u'accus', u'fiji', u'weapon', u'import']
[u'aust', u'deni', u'weapon', u'smuggl', u'fiji']
[u'australian', u'market', u'close', u'higher']
[u'australian', u'hold', u'appal', u'condit', u'yemen']
[u'australian', u'woman', u'gore', u'eleph']
[u'ax', u'open', u'speed', u'limit', u'wont', u'affect', u'solar']
[u'biodivers', u'concern', u'devil', u'export', u'plan']
[u'bligh', u'attend', u'water', u'summit']
[u'bligh', u'visit', u'offer', u'relief', u'oppon']
[u'bomb', u'kill', u'thailand', u'south']
[u'borat', u'top', u'offic']
[u'brimbl', u'famili', u'assur', u'justic']
[u'brimbl', u'offic', u'order', u'testifi']
[u'bushfir', u'aircran', u'arriv', u'canberra']
[u'bush', u'hail', u'saddam', u'verdict', u'iraq', u'mileston']
[u'busi', u'chamber', u'urg', u'share', u'levi']
[u'busi', u'confid', u'fall']
[u'businessman', u'urg', u'state', u'wide', u'level', u'water', u'ban']
[u'canberra', u'confer', u'focus', u'hyperson', u'flight']
[u'candid', u'resign', u'drink', u'drive', u'laps']
[u'yard', u'arson', u'investig']
[u'cattl', u'price', u'recov']
[u'cdep', u'scrap', u'anger', u'aborigin', u'centr']
[u'charg', u'time', u'gun']
[u'children', u'battl', u'starl']
[u'chines', u'polic', u'dont', u'embrac', u'free', u'hug']
[u'claim', u'brimbl', u'cover', u'coron', u'say']
[u'clark', u'defend', u'polic', u'enter', u'fiji']
[u'closer']
[u'closer']
[u'closer']
[u'coal', u'termin', u'expans']
[u'concern', u'wwii', u'chemic', u'dump', u'coast']
[u'conman', u'foster', u'discharg', u'hospit']
[u'convoy', u'highlight', u'child', u'safeti', u'issu']
[u'coron', u'reprimand', u'brimbl', u'person']
[u'council', u'consid', u'art', u'centr', u'option']
[u'council', u'highlight', u'fall', u'hinz', u'suppli']
[u'council', u'discuss', u'chopper', u'tour', u'plan']
[u'council', u'beat', u'road', u'fund', u'plan', u'accept']
[u'council', u'urg', u'push', u'secur', u'camera']
[u'croc', u'shark', u'stinger', u'blight', u'mackay', u'beach']
[u'council', u'sign', u'agreement', u'boost', u'busi']
[u'cubbi', u'station', u'sale']
[u'debat', u'therapeut', u'clone', u'begin']
[u'diver', u'explor', u'histor', u'gallipoli', u'submarin']
[u'doctor', u'group', u'want', u'prioriti', u'medic', u'staff']
[u'dog', u'bite', u'man', u'nose']
[u'dont', u'bulli', u'aussi', u'reput', u'say', u'strauss']
[u'downer', u'confirm', u'staff', u'equip', u'send', u'fiji']
[u'drink', u'drive', u'number', u'disgust', u'alic', u'polic']
[u'drug', u'kingpin', u'sentenc', u'death']
[u'dryland', u'salin', u'scheme', u'extend', u'despit', u'protest']
[u'dubbo', u'polic', u'station', u'rebuild', u'affect', u'court']
[u'elder', u'succumb', u'crash', u'injuri']
[u'elect']
[u'ellenborough', u'reserv', u'futur', u'uncertain']
[u'england', u'confid', u'ash', u'bring', u'best']
[u'europ', u'give', u'mix', u'respons', u'saddam', u'verdict']
[u'palm', u'mayor', u'seek', u'support', u'renew', u'role']
[u'expert', u'want', u'dingo', u'control', u'relax']
[u'fairground', u'ride', u'revel', u'trap', u'upsid']
[u'farmer', u'hope', u'good', u'rain']
[u'farmer', u'seek', u'action', u'fall', u'latrob', u'aquif']
[u'festiv', u'centr', u'face', u'disrupt', u'casino', u'plan']
[u'fevola', u'miss', u'carlton', u'train']
[u'fiji', u'rabuka', u'confin', u'home']
[u'final', u'ash', u'ticket', u'sale']
[u'firefight', u'continu', u'park', u'contain', u'effort']
[u'health', u'centr', u'open']
[u'fli', u'reptil', u'fossil', u'excit', u'dino', u'hunter']
[u'turkish', u'bulent', u'ecevit', u'die']
[u'policeman', u'jail', u'bogus', u'drug', u'raid']
[u'gillespi', u'rule']
[u'gold', u'edit', u'good', u'ascot', u'vale', u'stake']
[u'govt', u'boost', u'fund', u'indigen', u'alcohol']
[u'govt', u'defend', u'send', u'staff', u'fiji']
[u'govt', u'outlin', u'south', u'west', u'drink', u'water', u'scheme']
[u'govt', u'plan', u'cut', u'indigen', u'work', u'dole', u'scheme']
[u'govt', u'urg', u'cotton', u'farm', u'amid', u'water', u'shortag']
[u'govt', u'urg', u'plan', u'irrig', u'water', u'cut']
[u'green', u'group', u'boost', u'effort', u'save', u'tuart', u'tree']
[u'green', u'group', u'fear', u'gulf', u'cotton', u'push']
[u'green', u'swan', u'hill', u'candid']
[u'group', u'hop', u'legal', u'case', u'forc', u'climat']
[u'guidelin', u'offer', u'choic', u'prematur', u'babi']
[u'hair', u'ponder', u'legal', u'action']
[u'heal', u'mackinnon', u'face', u'tribun']
[u'high', u'rabbit', u'number', u'worri', u'grazier']
[u'hospit', u'water', u'problem', u'forc', u'dialysi', u'reschedul']
[u'howard', u'defend', u'send', u'staff', u'fiji']
[u'hugh', u'deni', u'knowledg', u'boost', u'australian']
[u'ask', u'explain', u'hair', u'decis']
[u'iceberg', u'threaten', u'ship', u'near']
[u'illeg', u'reptil', u'find', u'concern', u'govt']
[u'indigen', u'team', u'tackl', u'bird', u'pest']
[u'inter', u'palermo', u'march']
[u'intern', u'transport', u'group', u'action']
[u'iraqi', u'welcom', u'saddam', u'guilti', u'verdict']
[u'iraq', u'like', u'issu', u'voter']
[u'irrig', u'chief', u'back', u'water', u'summit']
[u'jayawarden', u'lead', u'lanka', u'world']
[u'jump', u'survey']
[u'joyc', u'vote', u'clone', u'bill']
[u'kaniva', u'turn', u'talk', u'drought', u'issu']
[u'kingaroy', u'toughen', u'water', u'restrict']
[u'labor', u'promis', u'region', u'packag']
[u'labour', u'market', u'strengthen', u'survey']
[u'lake', u'hume', u'boat', u'speed', u'lower']
[u'liber', u'leader', u'deni', u'labor', u'prefer', u'deal']
[u'light', u'council', u'step', u'asid', u'polic', u'probe']
[u'lindsay', u'play', u'nuclear', u'power', u'talk']
[u'mackay', u'region', u'visit', u'fall']
[u'charg', u'bodi', u'lake', u'murder']
[u'charg', u'shoot', u'weekend', u'parti']
[u'court', u'bodi', u'lake', u'murder']
[u'court', u'accus', u'airport', u'drug']
[u'court', u'accus', u'assault']
[u'treat', u'noosa', u'stingray', u'attack']
[u'mason', u'ban', u'match']
[u'mason', u'deserv', u'punish', u'say', u'nobl']
[u'mass', u'trap', u'highlight', u'cane', u'toad', u'threat']
[u'mayor', u'lobbi', u'govt', u'cubbi', u'station']
[u'mcgauran', u'question', u'extend', u'drought']
[u'mcgowan', u'push', u'solar', u'citi', u'site']
[u'meet', u'hear', u'fear', u'colli', u'hospit', u'futur']
[u'melburnian', u'flock', u'parad']
[u'middl', u'east', u'visit', u'boost', u'coast', u'tourism']
[u'gear', u'hold', u'slow', u'kangaroo', u'explor']
[u'mine', u'boom', u'blame', u'basin', u'hous', u'shortag']
[u'mine', u'compani', u'requir', u'hous', u'worker']
[u'miss', u'finland', u'confirm', u'oak']
[u'asian', u'eleph', u'arriv', u'australia']
[u'delay', u'uranquinti', u'power', u'plant']
[u'polic', u'melbourn', u'airport']
[u'water', u'alloc', u'cut', u'like']
[u'mother', u'jail', u'starv', u'babi', u'death']
[u'question', u'feder', u'rail', u'fund', u'pledg']
[u'murdoch', u'say', u'death', u'toll', u'iraq', u'minut']
[u'murray', u'darl', u'water', u'summit', u'agenda']
[u'nation', u'surpris', u'report', u'prefer']
[u'newcastl', u'rail', u'revamp']
[u'transport', u'upgrad']
[u'polic', u'blame', u'rise', u'aborigin']
[u'pair', u'surviv', u'crash']
[u'plan', u'indigen', u'apprentic', u'countri']
[u'plan', u'afoot', u'agn', u'water', u'caravan', u'park']
[u'plan', u'scrap', u'indigen', u'cdep', u'concern', u'labor']
[u'defend', u'send', u'staff', u'fiji']
[u'wrestl', u'stem', u'cell', u'issu']
[u'polic', u'line', u'offic']
[u'polic', u'deni', u'brimbl', u'inquest', u'cover']
[u'polic', u'detain', u'youth', u'steal', u'car']
[u'polic', u'drug', u'oper', u'arrest']
[u'policeman', u'charg', u'alleg', u'capsicum', u'spray']
[u'polic', u'probe', u'motorcycl', u'crash']
[u'polic', u'seek', u'help', u'catch', u'servic', u'station', u'bandit']
[u'polic', u'warn', u'fake', u'note']
[u'power', u'hang', u'boot']
[u'prefer', u'deal', u'finalis', u'brack']
[u'priest', u'guilti', u'sexual', u'abus']
[u'prioriti', u'give', u'naracoort', u'hospit', u'revamp']
[u'propos', u'copyright', u'chang', u'clear']
[u'protest', u'unawar', u'heritag', u'boundari', u'forestri']
[u'publican', u'win', u'tourism', u'award']
[u'public', u'servant', u'jail', u'steal']
[u'pyrene', u'farmer', u'state', u'drought', u'fund', u'case']
[u'readi', u'work', u'feder', u'govt', u'cubbi']
[u'raider', u'look', u'rotat', u'captainci']
[u'rain', u'boost', u'cotton', u'plant', u'area']
[u'rain', u'expect', u'boost', u'locust', u'number']
[u'rainfal', u'drop', u'percent', u'studi']
[u'recreat', u'fisher', u'report', u'good', u'start', u'rock']
[u'rodd', u'concern', u'state', u'flemington', u'track']
[u'rural', u'clinic', u'school', u'quick', u'vacanc']
[u'saddam', u'appeal', u'start', u'amid', u'deep', u'iraq', u'divis']
[u'saddam', u'sentenc', u'rais', u'iraq', u'tension']
[u'scott', u'end', u'year', u'high']
[u'scott', u'eye', u'major', u'improv', u'bill']
[u'senat', u'debat', u'therapeut', u'clone']
[u'senat', u'boat', u'sink']
[u'senat', u'urg', u'support', u'stem', u'cell']
[u'senat', u'warn', u'canberra', u'cut', u'labor']
[u'serial', u'rapist', u'fardon', u'remain', u'custodi']
[u'sharemarket', u'expect', u'feel', u'fever']
[u'sheedi', u'fire', u'rule', u'rumbl']
[u'shepparton', u'iraqi', u'communiti', u'back', u'saddam', u'death']
[u'state', u'urg', u'adopt', u'water', u'save', u'devic']
[u'stefaniak', u'refus', u'comment', u'statutori', u'declar']
[u'strike', u'delay', u'continu', u'qanta', u'say']
[u'stud', u'breeder', u'seek', u'govt', u'assist']
[u'student', u'get', u'life', u'basebal', u'murder']
[u'student', u'work', u'child', u'protect', u'need']
[u'surgeon', u'argu', u'tougher', u'young', u'driver']
[u'surrog', u'mother', u'help', u'save', u'endang', u'wallabi']
[u'sydney', u'flight', u'schedul', u'qanta']
[u'forest', u'board', u'attack', u'environment', u'group']
[u'yachtsman', u'attempt', u'solo', u'sail', u'record']
[u'yachtsman', u'set', u'sail', u'child', u'chariti']
[u'tawqeet', u'endur', u'shoe', u'mishap']
[u'teen', u'arrest', u'fatal', u'stab']
[u'thai', u'eleph', u'final', u'australia', u'home']
[u'thousand', u'turn', u'melbourn', u'parad']
[u'timber', u'firm', u'plan', u'indian', u'sandalwood', u'boost']
[u'tourism', u'group', u'back', u'worker', u'villag', u'plan']
[u'traffic', u'delay', u'glenloch', u'interchang']
[u'trainer', u'confid', u'japanes', u'success', u'flemington']
[u'underwat', u'surveil', u'receiv', u'feder']
[u'union', u'hop', u'gingin', u'oversea', u'worker']
[u'union', u'urg', u'better', u'meatwork']
[u'open', u'door', u'pilot']
[u'uranium', u'explor', u'compani', u'boom']
[u'evangel', u'admit', u'sexual', u'immor']
[u'warn', u'rate', u'rise', u'impact', u'drought']
[u'labor', u'pledg', u'skill', u'train']
[u'cotton', u'research', u'continu', u'despit', u'focus']
[u'hospit', u'ban', u'junk', u'food']
[u'interven', u'save', u'electr']
[u'potato', u'grower', u'urg', u'pull', u'spud', u'earli']
[u'resist', u'call', u'plate', u'licenc', u'chang']
[u'water', u'bomb', u'helicopt', u'arriv', u'ahead', u'schedul']
[u'water', u'pipelin', u'project', u'ahead', u'schedul']
[u'weekend', u'rain', u'fail', u'boost', u'level']
[u'win', u'formula', u'dubbo', u'derbi']
[u'woman', u'die', u'kangaroo', u'flat', u'crash']
[u'work', u'begin', u'highway', u'black', u'spot']
[u'yarloop', u'reloc', u'scheme']
[u'yeat', u'firm', u'favourit']
[u'hunter', u'road', u'crash']
[u'croc', u'captur', u'darwin', u'river']
[u'commemor', u'year', u'report', u'news']
[u'academ', u'warn', u'climat', u'chang', u'impact']
[u'agforc', u'back', u'move', u'fee']
[u'agforc', u'urg', u'urban', u'rural', u'water', u'equiti']
[u'alkatiri', u'grill', u'alleg', u'arm', u'civilian']
[u'promis', u'north', u'east', u'emerg', u'servic', u'boost']
[u'armi', u'push', u'fiji', u'polic', u'commission', u'resign']
[u'aust', u'experi', u'worst', u'drought', u'year']
[u'aust', u'spotlight', u'africa', u'climat', u'summit']
[u'aust', u'troop', u'race', u'donkey', u'afghan', u'race']
[u'aztec', u'label', u'gibson', u'takeov', u'opportunist']
[u'baillieu', u'promis', u'water', u'plan', u'bendigo']
[u'crowd', u'tip', u'echuca', u'race', u'club']
[u'blair', u'oppos', u'saddam', u'death', u'sentenc']
[u'bono', u'invit', u'discuss', u'world', u'poverti']
[u'brimbl', u'person', u'question']
[u'brimbl', u'wit', u'question', u'inconsist']
[u'british', u'creat', u'human', u'embryo']
[u'british', u'scientist', u'unusu', u'stem', u'cell', u'debat']
[u'british', u'soldier', u'kill', u'iraq', u'attack']
[u'burdekin', u'moranbah', u'water', u'pipe', u'work', u'ahead', u'schedul']
[u'caldicott', u'reject', u'howard', u'nuclear', u'push']
[u'caldicott', u'reject', u'nuclear', u'power', u'stanc']
[u'govt', u'increas', u'home', u'owner', u'grant']
[u'telstra', u'sale', u'profit', u'highway']
[u'caloundra', u'council', u'plan', u'popul', u'growth']
[u'campbel', u'defend', u'govt', u'respons', u'cane', u'toad']
[u'free', u'day', u'consid', u'beij']
[u'jack', u'prompt', u'polic', u'warn']
[u'offer', u'wheat', u'farmer', u'year', u'contract']
[u'cdep', u'chief', u'vow', u'continu', u'riverland']
[u'cdep', u'cut', u'wont', u'indigen', u'corp']
[u'central', u'australian', u'coalit', u'call', u'tougher']
[u'citi', u'centr', u'plan', u'aim', u'revitalis', u'civic', u'precinct']
[u'clone', u'rais', u'senat', u'passion']
[u'closer']
[u'closer']
[u'closer']
[u'pursu', u'alleg', u'elector', u'rort']
[u'coast', u'punter', u'melbourn']
[u'communiti', u'leadership', u'scheme', u'offer', u'collabor']
[u'condemn', u'saddam', u'court']
[u'conroy', u'birth', u'prompt', u'surrogaci', u'review', u'call']
[u'corpor', u'deal', u'push', u'market', u'higher']
[u'council', u'back', u'southsid', u'tenni', u'centr', u'upgrad']
[u'council', u'defer', u'surfer', u'park', u'sale']
[u'council', u'develop', u'draft', u'flood', u'manag', u'plan']
[u'council', u'reject', u'irwin', u'memori', u'idea']
[u'council', u'wait', u'newman', u'kyoto', u'decis']
[u'court', u'delay', u'cost', u'month', u'epicentr']
[u'court', u'hear', u'british', u'qaeda', u'plan', u'intern']
[u'cuban', u'foreign', u'minist', u'wont', u'specul', u'castro']
[u'bet', u'year']
[u'crowd', u'behav', u'polic']
[u'cycl', u'dope', u'trial', u'start', u'franc']
[u'dairi', u'lift', u'milk', u'price']
[u'damn', u'submiss', u'indigen', u'abus', u'inquiri']
[u'plan', u'leav', u'mari', u'valley', u'resid', u'feel']
[u'dead', u'tornado', u'hit', u'japan']
[u'death', u'prompt', u'mini', u'motorbik', u'warn']
[u'delta', u'blue', u'lead', u'japanes', u'sweep']
[u'delta', u'blue', u'take', u'melbourn']
[u'design', u'dress', u'steal', u'store']
[u'driver', u'accus', u'time', u'limit']
[u'drought', u'roll', u'goulburn']
[u'drought', u'target', u'extrem', u'affect', u'area', u'vail']
[u'drought', u'hit', u'hors', u'race', u'stud']
[u'dump', u'committe', u'accus', u'govt', u'leav', u'dead']
[u'england', u'fear', u'flintoff']
[u'england', u'fear', u'freddi']
[u'epilept', u'driver', u'jail', u'fatal', u'accid']
[u'trade', u'chief', u'slam', u'china', u'counterfeit']
[u'expert', u'look', u'stem', u'cell', u'help', u'treat', u'glaucoma']
[u'expert', u'showcas', u'treatment', u'glaucoma']
[u'investig', u'coin', u'throw']
[u'feder', u'govt', u'clear', u'path', u'pulp']
[u'firefight', u'quell', u'nation', u'park', u'blaze']
[u'servic', u'unveil', u'water', u'tank']
[u'flemington', u'place', u'nation', u'heritag', u'list']
[u'foster', u'fiji', u'court', u'fraud', u'charg']
[u'foster', u'remand', u'custodi', u'fiji']
[u'plead', u'guilti', u'post', u'cronulla', u'riot', u'assault']
[u'gavaskar', u'tendulkar', u'attack', u'aussi', u'victori', u'antic']
[u'gippsland', u'liber', u'candid', u'stand']
[u'good', u'rain', u'benefit', u'kangaroo', u'beekeep']
[u'googl', u'warn', u'aust', u'copyright', u'law', u'crippl']
[u'govt', u'hide', u'indigen', u'child', u'abus']
[u'govt', u'reject', u'plan', u'test', u'electr']
[u'grant', u'go', u'underwat', u'surveil', u'project']
[u'grape', u'grower', u'warn', u'locust', u'readi']
[u'green', u'rule', u'block', u'superpip', u'plan']
[u'guidelin', u'deal', u'prematur', u'babi']
[u'gympi', u'swap', u'hors', u'camel', u'celebr']
[u'harbour', u'master', u'call', u'law', u'allow', u'boati', u'drug']
[u'hobart', u'bridg', u'reopen']
[u'hope', u'water', u'summit', u'deliv', u'last', u'outcom']
[u'houston', u'walk', u'tah']
[u'end', u'stand', u'rebel', u'india']
[u'iceberg', u'spot', u'close', u'mainland']
[u'iemma', u'wont', u'sack', u'minist', u'speed']
[u'increas', u'screen', u'see', u'indigen', u'cervic']
[u'inquiri', u'tell', u'vocal', u'minor', u'seek', u'council']
[u'insur', u'wont', u'appeal', u'jetti', u'compo', u'payout']
[u'interim', u'start', u'work', u'carpentaria', u'council']
[u'intern', u'energi', u'agenc', u'urg', u'widespread']
[u'iraq', u'start', u'lift', u'curfew', u'saddam', u'verdict']
[u'israel', u'withdraw', u'beit', u'hanoun']
[u'japanes', u'race', u'hail', u'heroic', u'melbourn', u'doubl']
[u'jockey', u'connect', u'celebr', u'success']
[u'kiwi', u'welcom', u'trio', u'clash']
[u'knife', u'wield', u'teen', u'hold', u'servic', u'station']
[u'korumburra', u'saleyard', u'close']
[u'latham', u'player', u'year', u'award']
[u'lawyer', u'dismiss', u'distinct', u'communiti', u'argument']
[u'leader', u'hear', u'drought', u'predica']
[u'lennon', u'criticis', u'withhold', u'report']
[u'lib', u'promis', u'bendigo', u'emerg', u'water', u'suppli']
[u'light', u'graceland']
[u'long', u'trek', u'help', u'sick', u'girl']
[u'long', u'wait', u'traffic', u'light', u'batteri']
[u'madrid', u'terror', u'suspect', u'jail']
[u'mail', u'process', u'review', u'urg', u'bomb', u'scare']
[u'assault', u'outsid', u'queanbeyan', u'hotel']
[u'plead', u'guilti', u'violent', u'home', u'invas', u'case']
[u'surrend', u'alleg', u'fast', u'food', u'restaur']
[u'martyn', u'lash', u'lille']
[u'mason', u'cop', u'chin']
[u'mayor', u'air', u'smythesdal', u'sewer', u'concern']
[u'mayor', u'frustrat', u'town', u'growth']
[u'melbourn', u'favourit', u'scratch']
[u'midsummit', u'open']
[u'minist', u'call', u'cooper', u'devil']
[u'minist', u'meet', u'fiji', u'talk']
[u'money', u'come', u'yeat']
[u'mortgag', u'pressur', u'push', u'famili', u'poverti']
[u'mother', u'take', u'famili', u'court', u'miss', u'children']
[u'ask', u'public', u'health', u'alert', u'issu']
[u'mutitjulu', u'raid', u'abus', u'polic', u'power']
[u'nation', u'databas', u'tackl', u'cerebr', u'palsi']
[u'nation', u'candid', u'push', u'cloud', u'seed']
[u'nation', u'continu', u'north', u'west', u'prefer', u'talk']
[u'nation', u'look', u'goldfield', u'candid']
[u'nato', u'soldier', u'kill', u'afghan', u'blast']
[u'regul', u'cray', u'fish', u'industri']
[u'favour', u'pom', u'pont']
[u'norfolk', u'island', u'reject', u'australian', u'citizenship']
[u'north', u'coast', u'tuesday', u'novemb']
[u'northern', u'region', u'homicid', u'link', u'domest']
[u'fruit', u'grower', u'bemoan', u'lose', u'sale']
[u'health', u'dept', u'defend', u'effort', u'dead', u'babi', u'case']
[u'toad', u'fight', u'boost']
[u'brick', u'water', u'sourc', u'park']
[u'stop', u'shop', u'sexual', u'assault', u'victim', u'need']
[u'papuan', u'get', u'life', u'murder', u'teacher']
[u'parent', u'senior', u'student', u'accommod']
[u'pedestrian', u'die']
[u'petr', u'report', u'keep', u'secret', u'year']
[u'pick', u'watson']
[u'pitt', u'worri', u'impact', u'indigen', u'work']
[u'play', u'area', u'reopen', u'toddler', u'death']
[u'polic', u'hunt', u'servic', u'station', u'knife', u'bandit']
[u'polic', u'investig', u'henti', u'child', u'abduct']
[u'polic', u'backyard', u'accid', u'victim']
[u'polic', u'raid', u'report', u'mutitjulu', u'communiti']
[u'polic', u'warn', u'punter', u'drink', u'drive']
[u'pont', u'line', u'rare', u'date', u'tiger']
[u'premier', u'gather', u'water', u'summit']
[u'premier', u'list', u'prioriti', u'water', u'summit']
[u'public', u'moolarben', u'coal', u'plan']
[u'punter', u'yeat', u'tawqeet']
[u'quoll', u'learn', u'cane', u'toad', u'scientist']
[u'race', u'club', u'tri', u'recov', u'miss', u'fund']
[u'raid', u'campaign', u'mutitjulu', u'labor']
[u'rain', u'boost', u'summer', u'sorghum', u'hope']
[u'rain', u'expect', u'clear', u'flemington']
[u'rain', u'help', u'boost', u'hunter', u'water', u'storag']
[u'rate', u'rise', u'inflat', u'check', u'say']
[u'recess', u'concern', u'expect', u'rate', u'rise']
[u'regul', u'mortgag', u'industri', u'need', u'peak', u'bodi']
[u'resourc', u'bank', u'stock', u'lift', u'market', u'record', u'high']
[u'retail', u'spend', u'flat', u'octob']
[u'ronaldinho', u'retain', u'fifpro', u'award']
[u'saddam', u'genocid', u'trial', u'resum']
[u'govt', u'urg', u'tackl', u'evapor']
[u'salin', u'affect', u'wine', u'grape', u'grower', u'vine']
[u'senat', u'pass', u'stem', u'cell']
[u'senat', u'brown', u'back', u'stem', u'cell']
[u'sheikh', u'pay', u'world', u'ball']
[u'shoalhaven', u'home', u'builder', u'expand']
[u'short', u'horn', u'cattl', u'need', u'luhrmann', u'film']
[u'sick', u'worker', u'rescu', u'iron', u'carrier']
[u'snowi', u'storag', u'reach', u'time', u'novemb']
[u'stem', u'cell', u'pass', u'senat']
[u'stem', u'cell', u'proceed']
[u'stem', u'cell', u'proceed', u'stage']
[u'stinger', u'danger', u'year', u'long']
[u'stott', u'despoja', u'call', u'nation', u'surrogaci', u'law']
[u'summit', u'agre', u'perman', u'water', u'trade']
[u'summit', u'hear', u'extent', u'drought']
[u'summit', u'push', u'interst', u'water', u'trade']
[u'surgeon', u'push', u'licenc', u'reform']
[u'survey', u'find', u'properti', u'awar', u'room']
[u'boxer', u'bind']
[u'compani', u'build', u'vineyard', u'protect', u'mould']
[u'farmer', u'urg', u'counsellor', u'drought']
[u'task', u'forc', u'tackl', u'youth', u'violenc']
[u'taxi', u'autom', u'book', u'work']
[u'teen', u'face', u'court', u'accus', u'murder']
[u'teen', u'spit', u'ambul', u'offic']
[u'thiev', u'fail', u'bank', u'break']
[u'tradefresh', u'boost', u'stake', u'chiquita']
[u'treasuri', u'hop', u'better', u'budget', u'forecast']
[u'tresco', u'brace', u'sledg', u'ordeal']
[u'turf', u'club', u'warn', u'race', u'goer', u'drink', u'respons']
[u'code', u'investig', u'focus', u'realiti', u'show']
[u'back', u'dental', u'school', u'pledg']
[u'union', u'claim', u'ambul', u'servic', u'understaf']
[u'union', u'fear', u'mass', u'aapt', u'centr', u'loss']
[u'uranium', u'price', u'expect', u'rise']
[u'poll', u'open', u'midterm', u'elect']
[u'poll', u'republican', u'gain']
[u'public', u'vote', u'remind']
[u'victim', u'famili', u'cheer', u'year', u'manslaught', u'sentenc']
[u'export', u'hold', u'yard', u'breach', u'standard', u'rspca']
[u'warn', u'fault', u'train', u'crash', u'artc']
[u'water', u'open']
[u'water', u'restrict', u'tighten', u'canberra', u'region']
[u'watkin', u'urg', u'visit', u'forster', u'deliv']
[u'weight', u'woe', u'jockey', u'melbourn', u'chanc']
[u'wentworth', u'shire', u'quit']
[u'windi', u'condit', u'hamper', u'locust', u'control', u'effort']
[u'woman', u'face', u'court', u'burglari', u'charg']
[u'formal', u'approv', u'vietnam', u'membership']
[u'yilgarn', u'drop', u'ward', u'scheme']
[u'young', u'socceroo', u'miss', u'world', u'berth']
[u'catch', u'post', u'melbourn', u'breath', u'test', u'blitz']
[u'action', u'group', u'unhappi', u'door', u'shut', u'snowi', u'water']
[u'chief', u'speak', u'fijian', u'counterpart']
[u'administr', u'offer', u'colleg', u'assur']
[u'agforc', u'question', u'beef', u'predict']
[u'zealand', u'get', u'tough', u'excess', u'baggag']
[u'akhtar', u'file', u'appeal', u'dope']
[u'black', u'ring', u'chang', u'franc', u'test']
[u'endors', u'swan', u'hill', u'candid']
[u'endors', u'teacher', u'clarenc']
[u'artist', u'john', u'coburn', u'die']
[u'aust', u'indonesia', u'secur', u'pact', u'undemocrat']
[u'aust', u'indonesia', u'sign', u'secur', u'pact']
[u'aust', u'indonesia', u'sign', u'secur', u'agreement']
[u'aust', u'indonesia', u'sign', u'secur', u'pact']
[u'aust', u'indonesia', u'sign', u'secur', u'treati']
[u'veto', u'wheat', u'export', u'licenc']
[u'baillieu', u'stand', u'elect', u'featur', u'kennett']
[u'bainimarama', u'seek', u'chang', u'coup', u'plan']
[u'biggenden', u'council', u'decid', u'tougher', u'water']
[u'blue', u'chase', u'victori']
[u'blue', u'post', u'maiden']
[u'borrow', u'seek', u'money', u'home', u'loan']
[u'brack', u'rule', u'recycl', u'water']
[u'brimbl', u'inquest', u'continu']
[u'brimbl', u'inquest', u'hear', u'second', u'account', u'nake']
[u'brimbl', u'wit', u'fear', u'polic', u'interview']
[u'britney', u'spear', u'file', u'divorc']
[u'briton', u'jail', u'year', u'terror', u'charg']
[u'buoyant', u'market', u'defi', u'predict']
[u'driver', u'high', u'rang', u'drink', u'drive', u'charg']
[u'busi', u'drought', u'lifelin']
[u'busi', u'group', u'back', u'drought']
[u'calicivirus', u'have', u'impact', u'alic']
[u'minist', u'sack', u'phone', u'call']
[u'canberra', u'hospit', u'receiv', u'machin']
[u'carney', u'return', u'sydney']
[u'clark', u'get', u'minut', u'blue']
[u'clinton', u'elect', u'york', u'senat']
[u'closer']
[u'closer']
[u'closer']
[u'coff', u'harbour', u'host', u'coastal', u'confer']
[u'compani', u'tell', u'revis', u'cancer', u'vaccin', u'submiss']
[u'connolli', u'ask', u'fava']
[u'council', u'approv', u'minmi', u'shop', u'complex']
[u'council', u'say', u'water', u'summit', u'recommend', u'welcom']
[u'council', u'tell', u'nurs', u'school', u'stay', u'north']
[u'counter', u'terror', u'exercis', u'plan', u'cairn']
[u'court', u'clear', u'jail', u'murder', u'charg']
[u'crew', u'continu', u'work', u'repair', u'storm', u'damag', u'home']
[u'csiro', u'help', u'guyra', u'popul', u'plan']
[u'damag', u'runway', u'light', u'forc', u'temporari', u'airport']
[u'democrat', u'control', u'hous']
[u'democrat', u'seat', u'elect']
[u'democrat', u'hous', u'rep']
[u'democrat', u'look', u'direct', u'iraq']
[u'dept', u'restrict', u'nation', u'park', u'road', u'rider']
[u'domest', u'violenc', u'expert', u'advis', u'indigen']
[u'agenc', u'seek', u'offic', u'tackl', u'workload']
[u'driver', u'fell', u'asleep', u'egypt', u'crash']
[u'driver', u'hurt', u'level', u'cross', u'crash']
[u'drought', u'prompt', u'seed', u'chang']
[u'drought', u'push', u'christma', u'price']
[u'earli', u'poll', u'result', u'favour', u'democrat']
[u'account', u'power', u'station']
[u'fairbairn', u'drop']
[u'farmer', u'warn', u'locust', u'wari']
[u'fear', u'foreign', u'invas', u'melbourn']
[u'feder', u'court', u'consid', u'nativ', u'titl', u'appeal']
[u'feedback', u'seek', u'gulf', u'water', u'plan']
[u'poach', u'heavi', u'hitter']
[u'servic', u'replac', u'petrol', u'vehicl']
[u'flood', u'plan', u'includ', u'voluntari', u'properti', u'purchas']
[u'india', u'captain', u'umrigar', u'die']
[u'minist', u'fight', u'child', u'charg']
[u'forrest', u'say', u'water', u'summit', u'outcom']
[u'foster', u'grant', u'bail', u'despit', u'flight', u'risk']
[u'frazer', u'disappoint', u'vaccin', u'reject']
[u'gascoign', u'arrest', u'assault', u'probe']
[u'glaucoma', u'expert', u'discuss', u'treatment', u'vision']
[u'govt', u'back', u'nuclear', u'energi', u'report']
[u'govt', u'extend', u'darwin', u'river', u'quarantin', u'period']
[u'govt', u'promis', u'emerg', u'servic', u'facil']
[u'green', u'group', u'unit', u'challeng', u'log']
[u'green', u'want', u'abort', u'remov', u'crime']
[u'growth', u'indigen', u'sector', u'difficult', u'track']
[u'hailstorm', u'rip']
[u'hawk', u'coast', u'taipan']
[u'health', u'servic', u'reject', u'health', u'alert', u'claim']
[u'high', u'court', u'clear', u'man', u'deport']
[u'higher', u'rat', u'start', u'bite', u'reserv', u'bank']
[u'hospit', u'physiotherapist']
[u'hous', u'rep', u'expect', u'pass', u'stem', u'cell']
[u'howard', u'beazley', u'battl', u'rate', u'rise']
[u'hunter', u'group', u'warn', u'coal', u'loader', u'bird', u'habitat']
[u'idea', u'moot', u'curb', u'coastal', u'litter']
[u'indonesian', u'secur', u'pact', u'highlight', u'strong']
[u'industri', u'group', u'warn', u'rate', u'rise', u'impact']
[u'injur', u'petkov', u'undecid', u'futur']
[u'inquiri', u'tell', u'littl', u'hope', u'rehabilit', u'council']
[u'rate', u'rise', u'unnecessari', u'farmer', u'group', u'say']
[u'rat', u'expect']
[u'rat', u'tip']
[u'iraq', u'domin', u'issu', u'term', u'elect']
[u'iron', u'plan', u'creat', u'nativ', u'veget']
[u'irrig', u'group', u'seek', u'water', u'fund']
[u'irrig', u'urg', u'stop', u'water', u'pump', u'flood']
[u'isra', u'forc', u'withdraw', u'beit', u'hanoun']
[u'japanes', u'signal', u'start', u'dynasti']
[u'kapunda', u'land', u'purchas', u'centr', u'polic', u'probe']
[u'labor', u'back', u'indonesia', u'secur', u'pact']
[u'landown', u'seek', u'ongo', u'powerlin', u'compo']
[u'latest', u'palestinian', u'death', u'destroy', u'chanc']
[u'launceston', u'hospit', u'nurs', u'strike']
[u'legal', u'challeng', u'delay', u'senat', u'result']
[u'lib', u'boost', u'public', u'transport']
[u'lion', u'stick', u'prove', u'squad', u'kiwi', u'encount']
[u'lownd', u'cop', u'fine', u'spray']
[u'guilti', u'jail', u'murder']
[u'market', u'retreat', u'record', u'high']
[u'mauresmo', u'upset', u'sharapova', u'henin', u'hardenn']
[u'mayor', u'put', u'recycl', u'drink', u'water', u'agenda']
[u'meet', u'discuss', u'doctor', u'shortag']
[u'minist', u'say', u'moranbah', u'woe', u'grow', u'pain']
[u'minist', u'public', u'money']
[u'mix', u'reaction', u'weir', u'plan']
[u'mix', u'view', u'air', u'busi', u'drought']
[u'mix', u'view', u'air', u'wast', u'issu']
[u'mobil', u'phone', u'tower', u'oppon', u'fight']
[u'long', u'term', u'plan', u'urg', u'tackl', u'drought']
[u'predict', u'away', u'plan']
[u'urg', u'irrig', u'compo']
[u'mutitjulu', u'raid', u'relat', u'email', u'leak']
[u'myle', u'charg', u'drink', u'drive']
[u'nadal', u'readi', u'master']
[u'nation', u'energi', u'polici', u'focus', u'coal', u'fire']
[u'nepal', u'arm', u'pact', u'open', u'elect']
[u'nepales', u'rebel', u'parliament']
[u'cancer', u'servic', u'begin']
[u'famili', u'care', u'help', u'outback']
[u'smut', u'fear']
[u'nightmar', u'eastwood', u'street', u'unit']
[u'compani', u'appli', u'stake', u'energi', u'market']
[u'minist', u'sack', u'amid', u'child', u'alleg']
[u'minist', u'sack', u'child', u'assault', u'charg']
[u'state', u'librari', u'host', u'rare', u'convict', u'collect']
[u'resid', u'discuss', u'statehood', u'seminar']
[u'shelter', u'fear', u'rate', u'rise', u'flow', u'effect']
[u'dead', u'highway', u'crash']
[u'optus', u'account', u'reflect', u'switch', u'broadband']
[u'ortega', u'power', u'nicaragua']
[u'pakistan', u'suicid', u'blast', u'toll', u'rise']
[u'palestinian', u'demand', u'meet', u'latest']
[u'patron', u'shoot', u'sydney', u'hotel', u'robberi']
[u'committe', u'reject', u'cervic', u'vaccin', u'fund']
[u'pedestrian', u'council', u'unhappi', u'hickey', u'fallout']
[u'back', u'close', u'wetland', u'drink', u'water', u'suppli']
[u'criticis', u'rate', u'rise']
[u'polic', u'boost', u'effort', u'kyneton', u'event']
[u'policeman', u'injur', u'speed', u'motorcyclist']
[u'polic', u'respect', u'offic']
[u'polic', u'probe', u'alexandra', u'headland', u'stab']
[u'polic', u'probe', u'fatal', u'crash']
[u'poll', u'open', u'midterm', u'elect']
[u'pont', u'offer', u'apolog', u'victori', u'antic', u'india']
[u'power', u'plant', u'worker', u'thank', u'lucki', u'escap']
[u'power', u'station', u'blaze', u'near', u'newcastl']
[u'program', u'aim', u'tasmanian', u'walk']
[u'propos', u'wetland', u'attack']
[u'public', u'mall', u'work']
[u'push', u'improv', u'region', u'power', u'suppli']
[u'govt', u'consid', u'rat', u'rebat', u'drought', u'area']
[u'lose', u'appeal', u'abalon', u'fine']
[u'rafter', u'urg', u'kid', u'tenni']
[u'rapist', u'get', u'year', u'parol', u'sentenc']
[u'rare', u'parrot', u'spot', u'year']
[u'rate', u'rise', u'draw', u'critic']
[u'rat', u'hike', u'news', u'renter', u'economist']
[u'ravlich', u'albert', u'appear', u'parliamentari']
[u'lift', u'rate', u'expect']
[u'lift', u'rate']
[u'rebel', u'confirm', u'offer']
[u'redback', u'blue']
[u'replac', u'announc', u'gindalbi', u'metal']
[u'report', u'highlight', u'child', u'protect', u'servic', u'flaw']
[u'review', u'highlight', u'council', u'budget', u'woe']
[u'roar', u'reddi', u'doubt', u'unit', u'clash']
[u'rowdi', u'melbourn', u'festiv', u'orang']
[u'rspca', u'closur', u'affect', u'region']
[u'sack', u'minist', u'releas', u'bail']
[u'sack', u'minist', u'releas', u'bail']
[u'saddam', u'urg', u'iraqi', u'forgiv', u'unit']
[u'govt', u'urg', u'stop', u'popul', u'growth', u'save']
[u'wind', u'farm', u'construct', u'second', u'stage']
[u'school', u'closur', u'list', u'unveil', u'upgrad']
[u'schwarzenegg', u'buck', u'trend', u'win', u'republican']
[u'senat', u'ferri', u'announc', u'retir']
[u'senat', u'say', u'evid', u'lack', u'support', u'stem', u'cell']
[u'senat', u'pass', u'stem', u'cell']
[u'shire', u'pass', u'draft', u'confid', u'motion', u'minist']
[u'skate', u'concern', u'spark', u'horsham', u'chang']
[u'small', u'busi', u'drought', u'relief']
[u'crop', u'cop', u'despit', u'drought']
[u'south', u'west', u'firm', u'small', u'busi', u'award']
[u'speed', u'like', u'caus', u'fatal', u'crash', u'polic']
[u'stem', u'cell', u'oppon', u'disappoint']
[u'studi', u'focus', u'turtl', u'protect']
[u'suicid', u'attack', u'kill', u'pakistani', u'soldier']
[u'summit', u'agre', u'interst', u'water', u'trade']
[u'farmer', u'embrac', u'counsel', u'servic']
[u'perform', u'poor', u'compar', u'state']
[u'teen', u'die', u'jump', u'move']
[u'teen', u'driver', u'charg', u'byron', u'smash']
[u'teen', u'face', u'court', u'dozen', u'offenc']
[u'telco', u'offer', u'hope', u'aapt', u'centr', u'worker']
[u'thai', u'revenu', u'dept', u'take', u'legal', u'action']
[u'thuringowa', u'weather', u'read']
[u'time', u'frame', u'child', u'protect']
[u'toowoomba', u'train', u'driver', u'score', u'honour']
[u'tote', u'boost', u'save']
[u'tourist', u'bite', u'croc', u'serious', u'injur']
[u'trainer', u'explain', u'jeun', u'flop']
[u'trial', u'begin', u'accus', u'schoolgirl']
[u'democrat', u'control', u'lower', u'hous']
[u'voter', u'deal', u'blow', u'marriag']
[u'valuabl', u'inform', u'receiv', u'brimbl', u'inquest']
[u'vandal', u'forc', u'bed', u'busi', u'closur']
[u'say', u'rat', u'rise', u'decis', u'hurt', u'drought']
[u'vibrat', u'delay', u'train', u'carriag']
[u'elect', u'campaign', u'continu']
[u'opposit', u'promis', u'polic', u'boost']
[u'volunt', u'centr', u'manag', u'back', u'grant']
[u'waff', u'welcom', u'small', u'busi', u'drought', u'fund']
[u'minist', u'resign', u'connect', u'burk']
[u'warn', u'expect', u'tough', u'battl', u'england']
[u'water', u'author', u'play', u'alga', u'concern']
[u'ugli', u'aussi']
[u'ugli', u'aussi', u'symond']
[u'wild', u'storm', u'south', u'east']
[u'score', u'write', u'award', u'trick']
[u'concern', u'plan', u'heritag', u'regist', u'chang']
[u'offic', u'face', u'assault', u'charg']
[u'long', u'gile', u'readi', u'play']
[u'agforc', u'see', u'good', u'veget', u'clear']
[u'warn', u'minist', u'deal', u'burk']
[u'alcohol', u'free', u'declar', u'expect', u'year']
[u'alderman', u'fear', u'launceston', u'campus']
[u'apricot', u'orchard', u'record', u'bumper', u'harvest']
[u'architectur', u'design', u'award', u'honour', u'wollongong', u'best']
[u'art', u'fund', u'help', u'foster', u'young', u'indigen', u'talent']
[u'veto', u'export', u'licenc']
[u'baillieu', u'defend', u'share', u'hold']
[u'bangladesh', u'milit', u'sentenc', u'death']
[u'bank', u'urg', u'hold', u'rat', u'rise']
[u'bathurst', u'accus', u'cost', u'arson', u'break']
[u'bega', u'valley', u'mayor', u'see', u'benefit', u'water', u'storag']
[u'beij', u'adopt', u'polici', u'combat', u'rabi']
[u'blanchett', u'upton', u'sydney', u'theatr']
[u'bligh', u'condemn', u'ridicul', u'cervic', u'cancer', u'vaccin']
[u'bligh', u'say', u'govt', u'commit', u'traveston']
[u'blind', u'mice']
[u'bomb', u'target', u'vehicl', u'showroom', u'southern']
[u'border', u'back', u'watson', u'johnson', u'gabba', u'test']
[u'british', u'surf', u'capit', u'aim', u'curb', u'night', u'time']
[u'bronco', u'cowboy', u'kick', u'season']
[u'cairn', u'ident', u'die', u'road', u'crash']
[u'campaign', u'rais', u'concern', u'interim', u'children']
[u'cancer', u'vaccin', u'cheaper', u'diseas', u'effect']
[u'cane', u'grower', u'urg', u'panic', u'smut']
[u'maker', u'urg', u'invest', u'hybrid']
[u'central', u'help', u'drive', u'state', u'economi', u'bligh']
[u'cervic', u'cancer', u'vaccin', u'fund', u'howard']
[u'cervic', u'cancer', u'vaccin', u'subsidis']
[u'chines', u'judg', u'speak', u'death', u'penalti']
[u'closer']
[u'closer']
[u'club', u'sell', u'shepparton', u'build']
[u'comedian', u'cosbi', u'settl', u'assault', u'case']
[u'construct', u'giant', u'urg', u'multifacet', u'skill']
[u'conwoman', u'harri', u'lose', u'appeal', u'sentenc']
[u'costello', u'play', u'employ', u'figur', u'concern']
[u'costello', u'sympathis', u'grower', u'veto']
[u'council', u'consid', u'altern', u'paint']
[u'council', u'urg', u'consid', u'global', u'warm', u'issu']
[u'council', u'doubl', u'residenti', u'fee']
[u'council', u'hear', u'aitkenval', u'drainag', u'concern']
[u'council', u'urg', u'barrack', u'decis']
[u'court', u'liquor', u'outlet', u'rule', u'worri', u'hoteli']
[u'crack', u'fuel', u'line', u'blame', u'qanta', u'emerg']
[u'cut', u'emiss', u'cheaper', u'expect', u'report']
[u'darwin', u'gang', u'violenc', u'increas', u'alderman']
[u'violenc', u'claim', u'live', u'iraq']
[u'democrat', u'aim', u'carbon', u'neutral', u'lifestyl']
[u'democrat', u'verg', u'control', u'senat']
[u'democrat', u'control', u'senat', u'report']
[u'diver', u'help', u'collect', u'marin', u'environ', u'data']
[u'dont', u'blame', u'martyn', u'push', u'pont']
[u'doubt', u'cast', u'park', u'trawler', u'strategi']
[u'dozen', u'taliban', u'kill', u'southern', u'afghan', u'clash']
[u'driver', u'die', u'barrier', u'highway', u'crash']
[u'drought', u'take', u'toll', u'small', u'nativ', u'mammal']
[u'earli', u'harvest', u'blame', u'apricot', u'price', u'drop']
[u'educ', u'health', u'focus', u'campaign']
[u'electr', u'import', u'agre', u'crash', u'test']
[u'energi', u'forum', u'push', u'altern', u'fuel']
[u'environ', u'flow', u'sight', u'drought', u'bite']
[u'esper', u'bag', u'environment', u'award']
[u'even', u'start', u'heritag', u'parad']
[u'go', u'blank', u'say', u'coast', u'lightn', u'victim']
[u'extrem', u'measur', u'consid', u'cope', u'drought']
[u'fan', u'leap', u'second', u'brazil']
[u'farmer', u'way', u'address', u'drought']
[u'farm', u'group', u'back', u'export', u'licenc', u'reject']
[u'farm', u'viabil', u'mean', u'higher', u'tax']
[u'fear', u'town', u'year']
[u'feder', u'wont', u'bend', u'seed', u'rule']
[u'fiji', u'militari', u'leader', u'snub', u'meet', u'defus']
[u'east', u'german', u'chief', u'dead']
[u'priest', u'jail', u'sexual', u'abus']
[u'premier', u'burk', u'resign']
[u'frazer', u'pleas', u'cancer', u'vaccin', u'assur']
[u'fruit', u'grower', u'halv', u'water', u'time']
[u'gaza', u'buri', u'dead', u'isra', u'strike']
[u'glider', u'collect', u'soil', u'climat', u'chang', u'inform']
[u'gold', u'coast', u'storm', u'dont', u'spare', u'chief']
[u'govt', u'back', u'goldfield', u'heritag', u'project']
[u'govt', u'close', u'yarloop', u'hospit', u'accid']
[u'govt', u'commonwealth', u'continu', u'mildura', u'rail', u'revamp']
[u'govt', u'dept', u'back', u'cdep', u'chang']
[u'govt', u'promis', u'eureka', u'centr', u'fund', u'boost']
[u'govt', u'rule', u'carbon']
[u'govt', u'urg', u'dump', u'school', u'boarder', u'food']
[u'grain', u'harvest', u'farmer', u'rat']
[u'green', u'group', u'oppos', u'expans', u'plan']
[u'green', u'group', u'question', u'biodivers', u'effort']
[u'gunner', u'chelsea', u'liverpool', u'avoid', u'leagu']
[u'gunn', u'prepar', u'spend', u'legal', u'case']
[u'health', u'servic', u'offer', u'patient', u'care', u'assur']
[u'heffernan', u'push', u'judici', u'commiss', u'inquiri']
[u'high', u'court', u'reject', u'father', u'deceit', u'claim']
[u'hope', u'fungus', u'tackl', u'blackberri', u'pest']
[u'howard', u'play', u'rumsfeld', u'resign']
[u'husband', u'wife', u'ban', u'model', u'industri']
[u'hear', u'crime', u'case', u'alleg']
[u'iemma', u'say', u'time', u'orkopoulo', u'brief', u'irrelev']
[u'iemma', u'sound', u'warn', u'orkopoulo', u'inact']
[u'illawarra', u'busi', u'feel', u'rat', u'rise', u'impact']
[u'indian', u'communiti', u'fear', u'adelaid', u'bash']
[u'indian', u'compani', u'sign', u'deal', u'qanta']
[u'indigen', u'educ', u'group', u'regain', u'member']
[u'indonesian', u'fisherman', u'sentenc', u'threaten']
[u'indonesian', u'prosecutor', u'seek', u'jail']
[u'iraq', u'elect', u'issu', u'howard']
[u'israel', u'probe', u'gaza', u'civilian', u'death']
[u'jam', u'hardi', u'secur', u'compens', u'fund', u'rule']
[u'jam', u'hardi', u'secur', u'privat', u'rule']
[u'jobless', u'rate', u'year']
[u'jone', u'go', u'youth', u'japan']
[u'judg', u'order', u'assault', u'accus', u'contact', u'biki']
[u'junior', u'footi', u'player', u'meet', u'player']
[u'kate', u'moss', u'centr', u'portrait', u'exhibit']
[u'labor', u'say', u'teenag', u'unemploy', u'high']
[u'land', u'council', u'urg', u'govt', u'rethink', u'field']
[u'late', u'grab', u'share']
[u'council', u'reject', u'indigen', u'sentenc', u'chang']
[u'leader', u'disagre', u'vote', u'implic']
[u'lightn', u'blame', u'weekend', u'fire']
[u'lion', u'close', u'rank', u'griev', u'fielden']
[u'local', u'group', u'share', u'heritag', u'fund']
[u'local', u'tafe', u'campus', u'share', u'fund']
[u'mackay', u'cane', u'farmer', u'await', u'smut', u'news']
[u'magistr', u'say', u'home', u'detent', u'order', u'soft']
[u'malaysia', u'mahathir', u'suffer', u'mild', u'heart', u'attack']
[u'die', u'throw']
[u'market', u'close', u'lower', u'bank', u'loss']
[u'mayor', u'say', u'councillor', u'agre', u'unit']
[u'mayor', u'set', u'support', u'debat', u'recycl']
[u'mcgauran', u'urg', u'farmer', u'appli', u'drought']
[u'mcname', u'confirm', u'offer']
[u'meatwork', u'boost', u'hop', u'train']
[u'mediat', u'highlight', u'depress', u'patel', u'case']
[u'microsoft', u'vista', u'oper', u'readi']
[u'mildura', u'resid', u'boost', u'home', u'borrow']
[u'miner', u'report', u'good', u'copper', u'drill', u'result']
[u'miss', u'finland', u'take', u'crown', u'oak']
[u'modern', u'aim', u'snare', u'wider', u'audienc']
[u'mokbel', u'sister', u'face', u'decept', u'charg']
[u'mother', u'urg', u'resubmit', u'defenc']
[u'mourner', u'farewel', u'walli', u'foreman']
[u'call', u'public', u'resumpt', u'cubbi', u'station']
[u'prepar', u'stem', u'cell', u'research', u'debat']
[u'council', u'back', u'rescu', u'chopper', u'trial']
[u'museum', u'merger', u'spark', u'intern', u'concern']
[u'nation', u'polic', u'bodi', u'seek', u'exempt', u'law']
[u'nation', u'pledg', u'disabl', u'accommod', u'boost']
[u'crow', u'coach', u'confid', u'success']
[u'injuri', u'setback', u'wilko']
[u'roster', u'disabl', u'worker', u'provoc']
[u'york', u'auction', u'fetch']
[u'zealand', u'zorbanaut', u'tumbl', u'histori']
[u'announc', u'renew', u'energi', u'target']
[u'govt', u'offer', u'help', u'hand', u'tugun', u'hospit']
[u'govt', u'promis', u'swift', u'action', u'hardi', u'deal']
[u'opposit', u'question', u'time', u'orkopoulo']
[u'omodei', u'push', u'labor', u'expel', u'marlborough', u'burk']
[u'opposit', u'say', u'child', u'protect', u'chang', u'need']
[u'orang', u'roughi', u'declar', u'threaten', u'speci']
[u'palestinian', u'reveng', u'attack', u'israel']
[u'parrot', u'sight', u'excit', u'naturalist']
[u'passeng', u'avoid', u'injuri', u'casino', u'crash']
[u'cancer', u'vaccin']
[u'perth', u'childcar', u'centr', u'allow', u'reopen']
[u'challeng', u'boswel', u'endors']
[u'dismiss', u'talk', u'iraq', u'withdraw']
[u'polic', u'accus', u'assault', u'committ']
[u'polic', u'baffl', u'sydney', u'toddler', u'kidnap']
[u'polic', u'hunt', u'woman', u'stab']
[u'polic', u'seek', u'overturn', u'court', u'decis', u'order']
[u'pont', u'keen', u'explain', u'action', u'indian', u'offici']
[u'port', u'waratah', u'coal', u'servic', u'coal', u'loader']
[u'power', u'provid', u'compet']
[u'power', u'station', u'staff', u'work']
[u'prayer', u'answer', u'rain', u'fall', u'central']
[u'propos', u'children', u'commission', u'pull', u'role']
[u'public', u'coastal', u'manag', u'plan']
[u'rapist', u'releas', u'risk']
[u'race', u'fall', u'leav', u'mcevoy', u'head', u'injuri']
[u'ramo', u'horta', u'pledg', u'solut', u'thousand']
[u'rat', u'rise', u'pressur', u'region', u'rental']
[u'real', u'estat', u'industri', u'play', u'rate', u'rise']
[u'reiq', u'confid', u'mackay', u'industri', u'absorb', u'rat']
[u'resid', u'lobbi', u'bligh', u'stop', u'bridg', u'plan']
[u'resourc', u'boom', u'help', u'northern', u'base', u'busi']
[u'riverb', u'coonambl']
[u'riverina', u'resid', u'monitor', u'stem', u'cell', u'debat']
[u'ruddock', u'meet', u'terri', u'hick']
[u'rumsfeld', u'resign', u'wont', u'alter', u'strategi', u'iraq']
[u'rumsfeld', u'resign', u'republican', u'elect', u'loss']
[u'rumsfeld', u'resign', u'elect', u'loss']
[u'rumsfeld', u'resign', u'democrat', u'face', u'senat', u'wait']
[u'ban', u'sale', u'split', u'cigarett', u'packet']
[u'lose', u'relief', u'teacher', u'union', u'say']
[u'farmer', u'fisher', u'criticis', u'weir', u'plan']
[u'samaritan', u'expect', u'feel', u'rate', u'rise', u'pressur']
[u'search', u'north', u'cane', u'smut']
[u'secker', u'urg', u'investig', u'weir', u'plan']
[u'secur', u'council', u'hear', u'gaza', u'shell', u'concern']
[u'secur', u'tight', u'ahead', u'ash', u'kick']
[u'clean', u'storm']
[u'serial', u'rapist', u'remain', u'jail', u'pend', u'appeal']
[u'worker', u'want', u'better', u'consult']
[u'shire', u'hop', u'wast', u'water', u'maintain']
[u'shoaib', u'slap', u'woolmer', u'claim', u'pakistan', u'secur']
[u'south', u'west', u'feral', u'trap', u'continu']
[u'ardmona', u'like', u'boost', u'earn']
[u'lanka', u'voic', u'regret', u'civilian', u'death']
[u'storm', u'black', u'sunshin', u'coast', u'home']
[u'stormi', u'summer', u'lose', u'fight', u'brothel']
[u'sudan', u'foreign', u'minist', u'oppos', u'peacekeep']
[u'planner', u'prepar', u'rise', u'sea', u'scientist']
[u'terri', u'hick', u'seek', u'meet', u'bono']
[u'timber', u'meet', u'snub', u'green', u'candid']
[u'time', u'run', u'nation', u'ballarat', u'east']
[u'envoy', u'burma', u'pressur', u'junta']
[u'townsvill', u'hunt', u'alumina', u'refineri']
[u'train', u'driver', u'say', u'prior', u'warn', u'truck', u'crash']
[u'transport', u'sector', u'call', u'better', u'infrastructur']
[u'union', u'urg', u'summit', u'debat', u'timber', u'issu']
[u'elect', u'sway', u'market', u'result']
[u'iraqi', u'politician', u'welcom', u'rumsfeld', u'departur']
[u'govt', u'water', u'situat']
[u'labor', u'announc', u'educ', u'polici']
[u'liber', u'pledg', u'health']
[u'victori', u'look', u'maintain', u'domin']
[u'victori', u'glori', u'dockland']
[u'violenc', u'forc', u'mexican', u'presid', u'cancel', u'aust']
[u'volunt', u'seek', u'melanoma', u'awar', u'video']
[u'vote', u'pmopen']
[u'wool', u'grower', u'want', u'mules', u'trial', u'money', u'redirect']
[u'lose', u'fraud', u'report']
[u'go', u'repair', u'flood', u'damag', u'road']
[u'school', u'sign', u'entri', u'trial']
[u'year', u'leas', u'benefit', u'communiti']
[u'govt', u'consid', u'drink', u'spike', u'law']
[u'agenc', u'end', u'darfur', u'obstruct']
[u'agforc', u'urg', u'govt', u'water', u'charg', u'drought']
[u'hick', u'action']
[u'demand', u'immedi', u'action', u'hick', u'trial']
[u'albani', u'summit', u'call']
[u'alburi', u'respit', u'facil']
[u'allstat', u'beaconsfield', u'gold', u'meet', u'mine']
[u'aluminium', u'smelter', u'revamp', u'cut', u'fluorid', u'emiss']
[u'worri', u'mental', u'health', u'patient', u'jail']
[u'ambul', u'group', u'seek', u'fund', u'defibril']
[u'anaesthetist', u'refus', u'work', u'disput']
[u'angri', u'farmer', u'voic', u'water', u'worri']
[u'argentina', u'seek', u'arrest', u'iranian', u'leader']
[u'asic', u'shut', u'financ', u'compani']
[u'aust', u'alli', u'meet', u'iraq']
[u'aust', u'minist', u'meet', u'rumsfeld', u'replac']
[u'weather', u'blame', u'valencia', u'crop']
[u'baghdad', u'rock', u'wave', u'bomb']
[u'beatti', u'brief', u'nuttal', u'investig', u'day']
[u'beatti', u'offer', u'cooper']
[u'beatti', u'woo', u'health', u'profession']
[u'blair', u'say', u'terror', u'struggl']
[u'bligh', u'startl', u'nuttal', u'loan', u'claim']
[u'bolton', u'nomin', u'troubl']
[u'boost', u'number', u'oversea', u'worker', u'welcom']
[u'borat', u'maker', u'face', u'lawsuit', u'dupe', u'colleg']
[u'bore', u'boost', u'northampton', u'water']
[u'boundari', u'push', u'prompt', u'beaudesert', u'mayor', u'warn']
[u'bulki', u'good', u'precinct', u'move', u'closer', u'realiti']
[u'bulldog', u'aker', u'savag', u'lion']
[u'burk', u'doesnt', u'extend', u'backbench']
[u'driver', u'drink', u'drive', u'charg', u'prompt', u'driver']
[u'busi', u'lobbi', u'shock', u'worker', u'compo', u'review']
[u'centr', u'worker', u'meet', u'discuss', u'futur']
[u'goldfield', u'indigen', u'job', u'scheme']
[u'cane', u'smut', u'crisi', u'talk', u'continu']
[u'casa', u'wont', u'investig', u'lockhart', u'river', u'crash']
[u'cervic', u'cancer', u'vaccin', u'program', u'unlik']
[u'chef', u'impress']
[u'child', u'abus', u'inquiri', u'track', u'chair', u'say']
[u'child', u'welfar', u'group', u'attack', u'interim', u'commission']
[u'clark', u'see', u'benefit', u'mayor', u'upper', u'hous']
[u'closer']
[u'closer']
[u'closer']
[u'coconut', u'power', u'innov', u'boat']
[u'colleagu', u'ralli', u'propos', u'children']
[u'councillor', u'air', u'migrant', u'visa', u'worri']
[u'councillor', u'wingecarribe']
[u'council', u'urg', u'effort', u'region', u'poki']
[u'court', u'reserv', u'decis', u'serial', u'rapist', u'releas']
[u'croc', u'adelaid']
[u'cudeco', u'drill', u'reveal', u'stagger', u'mineralis']
[u'dairi', u'processor', u'ask', u'help', u'supplier']
[u'della', u'bosca', u'deni', u'knowledg', u'assault', u'claim']
[u'design', u'choos', u'telescop', u'visitor', u'centr']
[u'detect', u'give', u'time', u'prepar', u'brimbl']
[u'develop', u'see', u'tourism', u'benefit', u'inskip', u'point']
[u'doctor', u'googl', u'diagnos', u'diseas', u'studi']
[u'doubl', u'murder', u'lose', u'appeal']
[u'driver', u'hurt', u'fieri', u'crash']
[u'electrolux', u'casual', u'job']
[u'england', u'crash']
[u'england']
[u'extravaganza', u'demolit', u'begin']
[u'fairfax', u'see', u'cost', u'save', u'news', u'corp', u'stake']
[u'fan', u'quick', u'snap', u'world', u'ticket']
[u'farmer', u'urg', u'check', u'cane', u'smut']
[u'farmer', u'warn', u'check', u'mice']
[u'probe', u'manag', u'bet', u'claim']
[u'fevola', u'return', u'blue', u'train']
[u'fiji', u'chief', u'support', u'govt']
[u'fish', u'farm', u'compani', u'pull']
[u'flame', u'capit', u'streak']
[u'fonterra', u'ask', u'boost', u'farmgat', u'price']
[u'cricket', u'umpir', u'child', u'charg']
[u'east', u'german', u'chief', u'die']
[u'forum', u'prefer', u'focus', u'promot', u'safe', u'drink']
[u'dead', u'wound', u'kashmir', u'mosqu', u'blast']
[u'debut', u'name', u'kookaburra', u'squad']
[u'jail', u'sydney', u'doubl', u'shoot']
[u'major', u'lift', u'lend', u'rat']
[u'franc', u'join', u'expand', u'leagu', u'nation']
[u'fruit', u'grower', u'forc', u'wear', u'hail', u'damag', u'cost']
[u'gay', u'jerusalem', u'ralli', u'tight', u'secur']
[u'govern', u'urg', u'sale', u'properti']
[u'govt', u'announc', u'bayonet', u'head', u'land', u'releas']
[u'govt', u'give', u'green', u'light', u'joint', u'strike', u'fighter']
[u'govt', u'launch', u'road', u'tourism', u'strategi']
[u'great', u'lake', u'cooper', u'plan']
[u'green', u'senat', u'inquiri', u'reject']
[u'green', u'say', u'stunt', u'media', u'coverag']
[u'groot', u'eylandt', u'resid', u'home', u'ownership']
[u'henin', u'hardenn', u'championship', u'semi', u'final']
[u'hermannsburg', u'get', u'tough', u'grog', u'smuggl']
[u'heywood', u'pulp', u'financi', u'negoti', u'near']
[u'hick', u'support', u'heckl', u'ruddock']
[u'holden', u'second', u'commodor', u'recal']
[u'hospit', u'say', u'patient', u'danger']
[u'howard', u'stand', u'iraq', u'involv']
[u'hugh', u'hop', u'tempt', u'beck', u'blackburn']
[u'iemma', u'vow', u'orkopol', u'affair', u'affect', u'govt']
[u'indonesia', u'hail', u'histor', u'secur', u'pact']
[u'rat', u'rise', u'pressur', u'young', u'home', u'buyer']
[u'intern', u'student', u'turn', u'work']
[u'irrig', u'group', u'criticis', u'compo', u'delay']
[u'israel', u'blame', u'technic', u'error', u'gaza', u'death']
[u'approach', u'abus', u'claim']
[u'japan', u'worri', u'milk', u'suppli', u'drought']
[u'korean', u'worker', u'tafe', u'train']
[u'labor', u'pledg', u'geelong', u'bypass', u'extens']
[u'lack', u'clean', u'water', u'kill', u'children', u'year']
[u'lennon', u'break', u'promis', u'suppli', u'timber']
[u'liber', u'pledg', u'reduc', u'public', u'servant', u'number']
[u'liber', u'duck', u'shoot', u'season']
[u'livestock', u'price', u'lower']
[u'lollypop', u'jail', u'islam', u'school']
[u'magistr', u'reopen', u'steal', u'water', u'tank', u'case']
[u'jail', u'traffic', u'cannabi', u'aborigin']
[u'jail', u'connect', u'samurai', u'sword']
[u'jail', u'molotov', u'cocktail', u'attack']
[u'label', u'monster', u'parliament', u'acquit']
[u'treat', u'hospit', u'hous', u'blaze']
[u'want', u'sydney', u'shoot', u'arrest']
[u'massiv', u'rescu', u'effort', u'save', u'strand', u'whale']
[u'master', u'game', u'bash', u'victim', u'rememb', u'littl']
[u'mayor', u'keen', u'rate', u'rise', u'vandal']
[u'mayor', u'say', u'cinema', u'need', u'fund', u'invest']
[u'meat', u'processor', u'offer', u'cash', u'incent']
[u'miner', u'predict', u'break', u'hill', u'job', u'boost']
[u'mine', u'boom', u'give', u'communiti', u'bright', u'futur']
[u'mine', u'growth', u'tip', u'lead', u'hous', u'shortag']
[u'money', u'wont', u'australasia', u'problem']
[u'moroney', u'call', u'orkopoulo', u'rumour', u'innuendo']
[u'highlight', u'flaw', u'privat', u'public', u'partnership']
[u'want', u'gang', u'charg', u'son', u'murder']
[u'murder', u'schoolgirl', u'famili', u'get', u'citizenship']
[u'murder', u'appeal', u'polic', u'trickeri']
[u'move', u'rat']
[u'westpac', u'pass', u'rate', u'rise']
[u'nation', u'state', u'case', u'dam']
[u'nation', u'standard', u'biodiesel', u'plan']
[u'navi', u'crew', u'march', u'bathurst', u'ancient']
[u'discov']
[u'chief', u'promis', u'envoy', u'north', u'korea']
[u'conflict', u'theatr', u'film', u'role', u'blanchett']
[u'crimin', u'charg', u'tilt', u'train', u'crash']
[u'push', u'ahead', u'tunnel', u'emiss', u'plan']
[u'wind', u'farm', u'ahead']
[u'gold', u'product']
[u'nurs', u'go', u'industri', u'commiss']
[u'nuttal', u'confid', u'vindic']
[u'onlin', u'club', u'embrac', u'life', u'dullest', u'pleasur']
[u'orang', u'roughi', u'unnecessari', u'fish', u'group', u'say']
[u'orang', u'roughi', u'declar', u'threaten', u'speci']
[u'orford', u'captain', u'man']
[u'patient', u'miss', u'psychiatr', u'hospit']
[u'abbott', u'odd', u'cervic', u'cancer', u'vaccin']
[u'flag', u'cancer', u'vaccin', u'program']
[u'push', u'cervic', u'cancer', u'vaccin', u'soon']
[u'bat', u'canberra']
[u'defeat', u'england']
[u'post', u'total', u'england']
[u'england', u'order']
[u'canberra']
[u'tip', u'coalit', u'liber', u'nation']
[u'discuss', u'iraq', u'blair', u'bush']
[u'polic', u'group', u'call', u'recruit', u'plan', u'better']
[u'polic', u'investig', u'involv', u'labor']
[u'poll', u'centr', u'mcfadden', u'card']
[u'pont', u'apolog', u'accept', u'indian', u'chief']
[u'port', u'kembla', u'share', u'freight', u'train', u'improv']
[u'priest', u'shortag', u'forc', u'chang', u'month', u'mass']
[u'profit', u'taker', u'wall']
[u'protest', u'want', u'immedi', u'trial', u'hick']
[u'public', u'urg', u'woolgoolga', u'land']
[u'fund', u'sustain', u'option', u'democrat']
[u'rain', u'offer', u'north', u'relief']
[u'record', u'hit', u'region']
[u'report', u'battl', u'follow', u'tamil', u'tiger']
[u'research', u'interview', u'gang', u'member']
[u'roar', u'chase', u'crucial', u'unit']
[u'ruddock', u'open']
[u'rural', u'educ', u'council', u'focus', u'rais', u'school']
[u'school', u'children', u'encourag', u'grow', u'poppi']
[u'schwarten', u'reject', u'upper', u'hous']
[u'season', u'demand', u'forc', u'jetstar', u'slash', u'servic']
[u'seri', u'bomb', u'attack', u'kill', u'iraq']
[u'silent', u'pictur', u'showman', u'stop', u'warwick']
[u'solomon', u'offer', u'moti', u'australia']
[u'speed', u'date', u'method', u'adopt', u'dubbo', u'seeker']
[u'split', u'rock', u'releas', u'draw', u'critic']
[u'storm', u'power', u'central']
[u'stormi', u'summer', u'reloc', u'brothel']
[u'struggl', u'film', u'industri', u'need', u'break', u'boost']
[u'sydney', u'destroy', u'knight']
[u'tafe', u'teacher', u'threaten', u'industri', u'unrest']
[u'talk', u'focus', u'tatiara', u'drought', u'applic']
[u'tamil', u'legisl', u'shoot', u'dead']
[u'tate', u'count', u'lang', u'park', u'turnout']
[u'tate', u'urg', u'qlder', u'support', u'nation']
[u'teen', u'get', u'year', u'jail', u'coward', u'attack']
[u'hors', u'tipster']
[u'thurston', u'focus', u'kangaroo', u'return']
[u'tiger', u'equal', u'cours', u'record', u'shanghai']
[u'toddler', u'junk', u'food', u'regular', u'studi']
[u'basebal', u'player', u'kalgoorli']
[u'tougher', u'water', u'ban', u'stop', u'mansfield', u'suppli']
[u'turner', u'play', u'titan']
[u'minist', u'say', u'kenyan', u'graft', u'aid', u'drug', u'trade']
[u'chief', u'warn', u'terrorist', u'plot']
[u'increas', u'patrol', u'timor']
[u'union', u'maintain', u'polic', u'boost']
[u'union', u'govt', u'teacher', u'cut']
[u'union', u'welcom', u'decis', u'close', u'hospit', u'bed']
[u'democrat', u'senat', u'control']
[u'veteran', u'cite', u'shortfal', u'cancer', u'treatment', u'fund']
[u'liber', u'plan', u'public', u'servic', u'job']
[u'vietnam', u'deport', u'citizen', u'terrorist', u'plot']
[u'vinni', u'sell', u'age', u'care', u'centr']
[u'govt', u'review', u'aborigin', u'cattl', u'station']
[u'warn', u'question', u'vaughan', u'inclus']
[u'marlborough', u'quit', u'burk', u'link', u'reveal']
[u'fastest', u'grow', u'state']
[u'water', u'ban', u'expect', u'deter', u'phillip']
[u'water', u'trade', u'rise']
[u'appoint', u'prompt', u'transpar']
[u'wildlif', u'ranger', u'recognis', u'quarantin', u'effort']
[u'wilkinson', u'miss', u'nation']
[u'william', u'interview', u'gangland', u'murder']
[u'wool', u'grower', u'seek', u'wool', u'poll', u'audit']
[u'wool', u'market', u'close', u'week', u'lower']
[u'work', u'wimmera', u'drought', u'applic']
[u'world', u'leader', u'cooper']
[u'abba', u'hop', u'palestinian', u'uniti', u'govt', u'decemb']
[u'govt', u'reject', u'plea', u'doubl', u'jeopardi', u'chang']
[u'report', u'salmonella', u'case']
[u'adelaid', u'prepar', u'annual', u'pride', u'march']
[u'albani', u'crown', u'tourism', u'town']
[u'call', u'nation', u'surgeri', u'review']
[u'reject', u'report', u'surgeri', u'infect', u'rat']
[u'aussi', u'compet', u'rock', u'paper', u'scissor', u'titl']
[u'aust', u'troop', u'leav', u'darwin', u'southern', u'iraq']
[u'blair', u'warn', u'lengthi', u'terror', u'struggl']
[u'blanchett', u'reject', u'claim', u'theatr', u'film', u'conflict']
[u'blaze', u'burn', u'swamp']
[u'bligh', u'want', u'cancer', u'vaccin', u'plan']
[u'bolton', u'appoint', u'like', u'fail']
[u'bolton', u'futur', u'bleak']
[u'boomer']
[u'brack', u'promis', u'westernport', u'fish']
[u'brisban', u'polic', u'investig', u'north', u'assault']
[u'british', u'muslim', u'leader', u'dismiss', u'radicalis']
[u'british', u'politican', u'guilti', u'incit']
[u'brit', u'nat', u'leader', u'acquit', u'racial', u'hatr']
[u'bunburi', u'port', u'strike', u'coal', u'compromis']
[u'bush', u'meet', u'iraq', u'strategi', u'group']
[u'bush', u'meet', u'iraq', u'studi', u'group']
[u'campaign', u'aim', u'convinc', u'sydneysid']
[u'campaign', u'urg', u'monument', u'forget', u'mine', u'corp']
[u'canberra', u'rememb', u'live', u'lose']
[u'chang', u'expect', u'iraq', u'polici']
[u'closer']
[u'closer']
[u'compani', u'win', u'contract', u'build', u'sydney', u'train']
[u'wast', u'grow', u'concern']
[u'coron', u'call', u'chang', u'plate', u'attitud']
[u'crowd', u'gather', u'flame', u'remembr']
[u'defiant', u'fijian', u'militari', u'give', u'govt']
[u'democrat', u'senat', u'seat', u'bartlett']
[u'divin', u'madonna', u'win', u'emir', u'stake']
[u'test', u'boost', u'dairi', u'product', u'studi']
[u'dozen', u'arrest', u'traffic', u'fin', u'scam']
[u'dragon', u'maintain', u'win', u'form']
[u'weather', u'prompt', u'snake', u'season', u'warn']
[u'ella', u'chide', u'selfish', u'latham']
[u'emmett', u'lose', u'battl', u'cancer']
[u'england', u'relish', u'pace', u'assault']
[u'environ', u'centr', u'welcom', u'fish', u'farm', u'withdraw']
[u'europ', u'russia', u'threaten', u'aust', u'fish', u'industri']
[u'farmer', u'fear', u'cane', u'smut', u'spread', u'mackay']
[u'fast', u'train', u'allow', u'fast', u'liber']
[u'fiji', u'militari', u'give', u'govern']
[u'flintoff', u'play', u'open', u'loss']
[u'minist', u'face', u'court']
[u'ford', u'quinella', u'open', u'race', u'tasmania']
[u'french', u'rugbi', u'captain', u'jail', u'murder']
[u'minist', u'merri', u'rise', u'face', u'court']
[u'escap', u'crash']
[u'whale', u'second', u'strand']
[u'close', u'carniv', u'style']
[u'govt', u'set', u'asid', u'remembr']
[u'govt', u'shouldnt', u'judg', u'minist', u'action']
[u'group', u'seek', u'case', u'rumsfeld', u'alleg']
[u'hama', u'readi', u'step', u'freez']
[u'holyfield', u'continu', u'comeback', u'unimpress']
[u'hour', u'long', u'ceremoni', u'mark', u'remembr']
[u'howard', u'discuss', u'iraq', u'global', u'warm', u'blair']
[u'hundr', u'commemor', u'dead', u'brisban']
[u'hundr', u'gather', u'remembr', u'darwin']
[u'iemma', u'accus', u'run', u'child', u'scandal']
[u'iemma', u'seek', u'oust', u'orkopoulo']
[u'iemma', u'seek', u'push', u'orkopoulo', u'parliament']
[u'iemma', u'seek', u'remov', u'orkopoulo']
[u'injuri', u'forc', u'lion', u'reshuffl']
[u'insur', u'slam', u'surgeri', u'success', u'rate']
[u'iraq', u'estim', u'kill', u'invas']
[u'king', u'georg', u'digger', u'uncov', u'possibl', u'wwii', u'bunker']
[u'kiwi', u'blitz', u'lion', u'final', u'dream', u'aliv']
[u'kosovo', u'disappoint', u'postpon', u'sovereignti']
[u'kovco', u'nari', u'add', u'honour', u'roll']
[u'kyli', u'stag', u'comeback', u'concert']
[u'labor', u'vow', u'reduc', u'spend', u'govt']
[u'polic', u'arrest', u'video']
[u'lara', u'defiant', u'windi', u'skittl', u'lahor']
[u'liber', u'leader', u'defend', u'public', u'servic', u'plan']
[u'lightn', u'spark', u'fire', u'western']
[u'accus', u'brisban', u'polic', u'racial', u'vilif']
[u'injur', u'deton', u'explos', u'jakarta']
[u'mauresmo', u'sharapova', u'clijster', u'semi']
[u'motorcyclist', u'die', u'alic', u'crash']
[u'nasa', u'spot', u'record', u'hurrican', u'saturn']
[u'nation', u'stop', u'rememb', u'dead']
[u'nazir', u'strike', u'leav', u'windi', u'troubl']
[u'plaqu', u'dedic', u'honour', u'remembr']
[u'newspol', u'predict', u'labor', u'elect']
[u'technolog', u'clean', u'drink', u'water']
[u'govt', u'announc', u'water', u'cut', u'irrig']
[u'opposit', u'back', u'orkopoulo', u'expuls']
[u'polic', u'crack', u'traffic', u'fine', u'fraud']
[u'minist', u'back', u'strike', u'alcohol', u'program']
[u'oneil', u'warn', u'unit', u'chelsea']
[u'oscar', u'win', u'actor', u'jack', u'palanc', u'die']
[u'pacif', u'island', u'deserv', u'nation', u'chanc']
[u'pakistan', u'control', u'windi', u'skittl']
[u'parent', u'join', u'campaign', u'propos', u'report', u'card']
[u'perth', u'soldier', u'die', u'await', u'assault', u'trial']
[u'polic', u'investig', u'alleg', u'prison', u'assault']
[u'polic', u'releas', u'offic', u'kill', u'crash']
[u'poll', u'predict', u'labor']
[u'power', u'track', u'rooki', u'award']
[u'protein', u'trigger', u'prostat', u'cancer']
[u'ecotour', u'award', u'honour', u'steve', u'irwin']
[u'nation', u'campaign', u'target', u'beazley', u'flynn']
[u'polic', u'offic', u'kill', u'crash']
[u'queanbeyan', u'rotari', u'reopen', u'farmer', u'market']
[u'remembr', u'ceremoni', u'mark', u'sacrific']
[u'remembr', u'crowd', u'turn', u'despit', u'rain']
[u'remot', u'communiti', u'warn', u'bacteria', u'water']
[u'renal', u'dialysi', u'clinic', u'celebr', u'year', u'success']
[u'respiratori', u'ill', u'nurs', u'home', u'claim', u'live']
[u'roar', u'fall', u'unit']
[u'roar', u'tilt', u'second', u'spot']
[u'russia', u'strike', u'bilater', u'deal']
[u'rwandan', u'sentenc', u'year', u'genocid']
[u'women', u'leagu']
[u'sartor', u'push', u'earli', u'cervic', u'vaccin', u'start']
[u'woman', u'strike', u'lightn']
[u'schifcofsk', u'kick', u'red', u'japan']
[u'scientist', u'search', u'pygmi', u'blue', u'tongu']
[u'scottish', u'chef', u'aim', u'record', u'break', u'pricey', u'pizza']
[u'short', u'quick', u'stuff', u'england', u'sweat', u'tait']
[u'sixer', u'fume', u'break', u'tackl']
[u'studi', u'link', u'crime', u'busi', u'ethnic']
[u'sydney', u'servic', u'rememb', u'sacrific']
[u'opposit', u'push', u'answer', u'wybra', u'hall']
[u'teen', u'charg', u'brisban', u'brawl']
[u'traffic', u'divert', u'fatal', u'accid']
[u'traralgon', u'rift', u'threaten', u'labor', u'morwel', u'seat']
[u'person', u'belinda', u'emmett', u'lose', u'cancer', u'battl']
[u'intellig', u'warn', u'terror', u'threat']
[u'ireland', u'push', u'ahead', u'irish', u'deal']
[u'urg', u'israel', u'ceas', u'flight', u'lebanon']
[u'militari', u'chief', u'signal', u'chang', u'ahead', u'iraq']
[u'lownd', u'build', u'lead', u'tasmania']
[u'liber', u'pledg', u'lotteri', u'licenc', u'investig']
[u'minist', u'quit', u'burk', u'link']
[u'west', u'indi', u'pakistan']
[u'murder', u'case', u'reopen']
[u'abus', u'victim', u'continu', u'come', u'forward']
[u'face', u'sever', u'firefight', u'shortag']
[u'alderman', u'resign', u'wont', u'impair', u'council', u'mayor']
[u'alkatiri', u'face', u'assassin', u'plot']
[u'black', u'destroy', u'franc', u'puma', u'stun', u'england']
[u'black', u'tidal', u'wave', u'sweep', u'franc', u'asid']
[u'arab', u'leagu', u'deni', u'motion', u'bias']
[u'award', u'honour', u'elli']
[u'babi', u'bonus', u'chang', u'teen', u'mum']
[u'babi', u'bonus', u'split', u'teen', u'mum']
[u'religion', u'say', u'elton', u'john']
[u'beatti', u'betray', u'nuttal', u'rise', u'scandal']
[u'beerfest', u'claim', u'success']
[u'bleiberg', u'resign', u'roar', u'boss']
[u'bligh', u'defend', u'govt', u'scandal', u'respons']
[u'blue', u'coast', u'england', u'attack']
[u'bullet', u'regist', u'easi', u'victori']
[u'bull', u'send', u'warrior']
[u'bush', u'flag', u'fresh', u'outlook', u'iraq']
[u'bushrang', u'bat']
[u'bushrang', u'stutter']
[u'bush', u'discuss', u'iraq', u'polici', u'chang']
[u'tougher', u'control', u'young', u'driver']
[u'urgent', u'action', u'homeless']
[u'canberra', u'farmer', u'run', u'option']
[u'canberran', u'report', u'water', u'breach']
[u'central', u'coast', u'tourist', u'face', u'child', u'porn', u'charg']
[u'church', u'plan', u'abus', u'out', u'support']
[u'closer']
[u'closer']
[u'connolli', u'unhappi', u'misfir', u'wallabi']
[u'coron', u'investig', u'policeman', u'highway', u'death']
[u'costello', u'back', u'carbon', u'trade']
[u'costello', u'push', u'carbon', u'trade', u'plan']
[u'costello', u'push', u'aust', u'role', u'carbon', u'trade']
[u'costello', u'wrong', u'carbon', u'scheme', u'time', u'opposit']
[u'council', u'sell', u'wind', u'farm', u'project']
[u'crew', u'battl', u'eyr', u'peninsula', u'blaze']
[u'date', u'pakistan', u'dope', u'appeal']
[u'downer', u'deni', u'relationship', u'democrat']
[u'downer', u'dismiss', u'qaeda', u'threat']
[u'downer', u'reject', u'qaeda', u'threat']
[u'downer', u'reject', u'qaeda', u'threat']
[u'drought', u'forc', u'food', u'price']
[u'mayor', u'lose', u'council', u'elect']
[u'england', u'jone', u'wicket', u'keeper']
[u'timores', u'mark', u'anniversari', u'santa', u'cruz']
[u'farm', u'closur', u'spark', u'fear', u'tiwi', u'environ']
[u'feder', u'outfox', u'nalbandian', u'master', u'open']
[u'firm', u'tourism', u'hall', u'fame']
[u'food', u'cost', u'rise', u'drought', u'bite']
[u'kill', u'congo', u'unrest']
[u'girl', u'endur', u'rape', u'trial']
[u'goosen', u'soar', u'tiger', u'whimper', u'windi', u'shanghai']
[u'govt', u'water', u'plan', u'deepen', u'rural', u'urban', u'divid']
[u'trick', u'drogba', u'unit', u'stay', u'clear']
[u'henin', u'hardenn', u'seal', u'year', u'spot']
[u'hezbollah', u'demand', u'reject', u'lebanon', u'govt', u'talk']
[u'hobart', u'council', u'reconsid', u'wildlif', u'refug', u'fund']
[u'howard', u'launch', u'liber', u'campaign']
[u'hundr', u'thousand', u'farewel', u'turkish']
[u'hundr', u'protest', u'china', u'polici']
[u'iemma', u'accus', u'ignor', u'scandal']
[u'iemma', u'back', u'child', u'scandal']
[u'iemma', u'run', u'scar', u'scandal', u'opposit']
[u'indigen', u'sector', u'take', u'say', u'expert']
[u'indonesia', u'secur', u'treati', u'need', u'ratif', u'nelson']
[u'injuri', u'drama', u'cahil']
[u'iran', u'consid', u'russian', u'uranium', u'propos']
[u'iran', u'russia', u'work', u'nuclear', u'crisi', u'solut']
[u'iraq', u'violenc', u'continu']
[u'jaqu', u'katich', u'blue', u'control', u'england']
[u'jaqu', u'notch', u'second', u'england']
[u'jet', u'climb', u'ladder', u'marin']
[u'johnson', u'make', u'test', u'case']
[u'kangaroo', u'island', u'contain']
[u'kangaroo', u'look', u'cost', u'lion']
[u'king', u'cool', u'memorabilia', u'rid', u'away', u'auction']
[u'klitschko', u'retain', u'world', u'heavyweight', u'titl']
[u'labor', u'vow', u'boost', u'newton', u'john', u'cancer', u'centr']
[u'lawyer', u'welcom', u'church', u'plan', u'handl', u'abus']
[u'lebanon', u'rift', u'threaten', u'polit', u'stabil']
[u'liber', u'deni', u'orkopol']
[u'liber', u'prefer', u'labor', u'ahead', u'green', u'upper']
[u'lion', u'coach', u'miff', u'nation', u'ref']
[u'unemploy', u'pinch', u'economi', u'costello']
[u'arrest', u'alleg', u'break', u'attack']
[u'kill', u'collis', u'railway', u'cross']
[u'medic', u'board', u'resum', u'patel', u'case']
[u'melbourn', u'face', u'blood', u'shortag']
[u'miner', u'hospitalis', u'substanc', u'scare']
[u'nakajima', u'win', u'taiheiyo', u'master']
[u'aim', u'cluster', u'bomb', u'devast']
[u'england']
[u'labor', u'deni', u'smear', u'campaign']
[u'polic', u'offic', u'die']
[u'nurs', u'home', u'battl', u'fatal', u'outbreak']
[u'confid', u'whale', u'safe']
[u'olmert', u'warn', u'prematur', u'pullout', u'iraq']
[u'pakistan', u'dope', u'appeal', u'meet', u'tuesday']
[u'pakistan', u'secur', u'offic', u'claim', u'investig']
[u'peopl', u'power', u'confid', u'prefer', u'deal']
[u'pine', u'creek', u'face', u'hous', u'shortag', u'council']
[u'pipe', u'bomb', u'caus', u'jakarta', u'restaur', u'blast', u'polic']
[u'urg', u'unveil', u'cancer', u'vaccin', u'plan']
[u'princess', u'take', u'stage']
[u'procedur', u'tighten', u'follow', u'mass', u'fine', u'scam']
[u'syrian', u'minist', u'quit', u'lebanes', u'govt']
[u'pump', u'halt', u'prompt', u'fear', u'murray', u'river']
[u'polic', u'offic', u'funer', u'honour']
[u'rag', u'wallabi', u'edg', u'itali']
[u'ranger']
[u'record', u'number', u'parliament']
[u'research', u'warn', u'water', u'divid']
[u'rival', u'forc', u'fight', u'battl', u'congo', u'capit']
[u'rove', u'hold']
[u'rumsfeld', u'deep', u'denial', u'iraq']
[u'shane', u'warn', u'street', u'rise', u'tsunami', u'devast']
[u'south', u'korean', u'yang', u'beat', u'best', u'shanghai']
[u'spenc', u'prais', u'fine', u'offic', u'kill', u'crash']
[u'spring', u'carniv', u'teen', u'drink']
[u'storm', u'bring', u'rain', u'power', u'outag']
[u'suicid', u'bomber', u'kill', u'baghdad']
[u'summit', u'aust', u'biggest', u'secur', u'event']
[u'tander', u'triumph', u'tasmania']
[u'tander', u'win', u'tasmania']
[u'test', u'hope', u'strut', u'stuff']
[u'text', u'exam', u'test', u'educ']
[u'thai', u'teach', u'panda', u'mate', u'porn', u'video']
[u'tiger', u'tumbl', u'chase', u'bushrang', u'total']
[u'totti', u'doubl', u'pile', u'miseri', u'falter', u'milan']
[u'treasur', u'push', u'carbon', u'trade', u'plan']
[u'troop', u'mark', u'remembr', u'iraq']
[u'truck', u'roll', u'kill']
[u'free', u'light', u'plane', u'wreckag']
[u'brown', u'back', u'stronger', u'anti', u'terror', u'power']
[u'envoy', u'meet', u'burma', u'junta', u'leader']
[u'union', u'pay', u'tribut', u'kill', u'offic']
[u'condemn', u'iran', u'hezbollah', u'terror', u'nexus']
[u'democrat', u'wont', u'forc', u'immedi', u'iraq', u'withdraw']
[u'veto', u'resolut', u'israel']
[u'veto', u'israel', u'resolut']
[u'valencia', u'hold', u'bilbao', u'late', u'strike']
[u'vickerman', u'rule']
[u'liber', u'launch', u'campaign']
[u'vietnam', u'step', u'secur', u'apec', u'summit']
[u'warrior', u'enterpris', u'start']
[u'warrior', u'struggl', u'bull']
[u'welfar', u'group', u'babi', u'bonus', u'break']
[u'shakira', u'want', u'shakira']
[u'world', u'rememb', u'dead']
[u'yousuf', u'malik', u'pakistan', u'control']
[u'farmer', u'appli', u'drought', u'subsidi', u'report']
[u'charg', u'traffic', u'fin', u'scam']
[u'abbott', u'warn', u'indigen', u'diabet', u'crisi']
[u'actu', u'attack', u'latest', u'chang']
[u'actu', u'critic', u'latest', u'chang']
[u'adelaid', u'boss', u'see', u'hill', u'collis']
[u'airport', u'pay', u'park', u'delay']
[u'allenbi', u'slam', u'golf', u'cours']
[u'anim', u'right', u'activist', u'chain']
[u'anti', u'terror', u'law', u'target', u'suspect', u'expert']
[u'apricot', u'orchard', u'reviv']
[u'arab', u'state', u'decid', u'break', u'sanction']
[u'arnold', u'safe', u'asian']
[u'asic', u'ban', u'transport', u'industri', u'oper']
[u'aust', u'push', u'kyoto', u'deal']
[u'australia', u'sign', u'secur', u'pact', u'indonesia']
[u'aust', u'push', u'kyoto', u'deal']
[u'award', u'recognis', u'road', u'worker', u'cyclon', u'effort']
[u'babi', u'die', u'highway', u'crash']
[u'baillieu', u'make', u'pledg']
[u'beer', u'fan', u'flock', u'festiv']
[u'crowd', u'see', u'hurst', u'open', u'ironman', u'final']
[u'bleiberg', u'anoint', u'farina', u'roar', u'successor']
[u'blue', u'declar', u'inning']
[u'blue', u'festiv', u'declar', u'success']
[u'borat', u'arriv', u'australia']
[u'bourk', u'shire', u'bone', u'recent', u'rain', u'littl']
[u'boy', u'swing', u'death', u'consid', u'suspici']
[u'brack', u'vow', u'rebuild', u'modernis', u'school']
[u'bridgewat', u'bridg', u'delay', u'unaccept', u'say']
[u'brisban', u'cabinet', u'back', u'hale', u'bridg', u'propos']
[u'brisban', u'labor', u'councillor', u'hale', u'bridg']
[u'british', u'jail', u'second', u'attempt']
[u'brough', u'defend', u'teen', u'babi', u'bonus', u'instal']
[u'cahil', u'ghana', u'game']
[u'fast', u'track', u'jezzin', u'barrack', u'communiti', u'trust']
[u'campbel', u'reject', u'govt', u'drag', u'feet', u'carbon']
[u'cervic', u'cancer', u'vaccin', u'agenda', u'pbac']
[u'citrus', u'grape', u'grower', u'brace', u'water', u'effect']
[u'closer']
[u'closer']
[u'investig', u'nuttal', u'cabinet', u'influenc', u'bligh']
[u'coliban', u'water', u'record', u'loss']
[u'concern', u'endang', u'fish']
[u'coron', u'call', u'recreat', u'dive', u'industri']
[u'costello', u'fear', u'rural', u'depress']
[u'council', u'inquiri', u'get', u'submiss']
[u'councillor', u'maintain', u'opposit', u'industri']
[u'council', u'sell', u'block', u'plan']
[u'court', u'tell', u'father', u'babi', u'fit', u'passion']
[u'credit', u'card', u'disput', u'common', u'complaint']
[u'csiro', u'make', u'guitarist', u'dream', u'realiti']
[u'secur', u'histor', u'town', u'titl']
[u'dalbi', u'rais', u'issu', u'welford']
[u'dept', u'urg', u'fund', u'children', u'care']
[u'dept', u'urg', u'tighten', u'prescrib', u'burn', u'procedur']
[u'devonport', u'see', u'opportun', u'sister', u'citi']
[u'downer', u'indonesia', u'sign', u'landmark', u'pact']
[u'downer', u'sign', u'australia', u'indonesia', u'secur', u'pact']
[u'drought', u'maintain', u'grip', u'region']
[u'drought', u'take', u'hold', u'south', u'east']
[u'drought', u'wors', u'local', u'group', u'seek', u'solut']
[u'england', u'fight', u'blue']
[u'equiti', u'allianc', u'urg', u'govt', u'rethink', u'spend']
[u'timor', u'youth', u'unit', u'peac', u'ralli']
[u'farmer', u'lose', u'hand', u'work', u'mishap']
[u'farm', u'group', u'expect', u'chang', u'drought']
[u'firefight', u'monitor', u'kangaroo', u'blaze']
[u'firefight', u'union', u'urg', u'victorian', u'vote']
[u'fish', u'farm', u'closur', u'cost', u'job', u'tiwi', u'land', u'council']
[u'fish', u'industri', u'cast', u'doubt', u'plan']
[u'minist', u'action', u'dont', u'reflect', u'govt', u'bligh']
[u'fold', u'increas', u'afghanistan', u'kill', u'report']
[u'court', u'woonona', u'brawl']
[u'fund', u'seek', u'creat', u'wiluna', u'aborigin', u'camp']
[u'widen', u'isol', u'student', u'citi']
[u'geraldton', u'grain', u'receiv']
[u'giant', u'baromet', u'support', u'structur', u'place']
[u'golden', u'dawn', u'pine', u'creek']
[u'govt', u'delay', u'releas', u'assault', u'servic']
[u'govt', u'launch', u'apprenticeship', u'program']
[u'govt', u'address', u'inflationari', u'pressur', u'labor']
[u'govt', u'neglect', u'skill', u'shortag', u'beazley']
[u'graincorp', u'say', u'lower', u'harvest', u'estim', u'million']
[u'gunnss', u'pulp', u'odour', u'control', u'measur', u'mislead']
[u'hayden', u'find', u'touch', u'warrior']
[u'high', u'borat', u'global', u'offic']
[u'honeymoon', u'attack', u'outrag', u'communiti']
[u'hospit', u'criticis', u'lack', u'communic']
[u'indigen', u'diabet', u'rate', u'crisi', u'point', u'abbott']
[u'indonesian', u'navi', u'darwin', u'train', u'exercis']
[u'investig', u'continu', u'fatal', u'train', u'crash']
[u'iraqi', u'call', u'cabinet', u'reshuffl']
[u'chang', u'rural', u'worker', u'union']
[u'chang', u'wont', u'help', u'worker', u'labor', u'say']
[u'irrig', u'alloc', u'assur']
[u'isra', u'armi', u'chief', u'urg', u'quit']
[u'jam', u'hardi', u'earli']
[u'japanes', u'certainti', u'year']
[u'jayant', u'patel', u'case', u'adjourn', u'februari']
[u'joyc', u'challeng', u'chang', u'senat']
[u'judg', u'strike', u'robert', u'defam', u'case']
[u'labor', u'accus', u'smear', u'campaign', u'orkopoulo']
[u'labor', u'cautious', u'welcom', u'secur', u'pact']
[u'land', u'council', u'secur', u'heritag', u'grant']
[u'lawyer', u'agre', u'wit', u'terror', u'committ']
[u'lebanes', u'govt', u'crisi', u'deepen']
[u'liber', u'committe', u'monitor', u'dpps']
[u'lion', u'long', u'return', u'home']
[u'local', u'govt', u'dept', u'ask', u'probe', u'council']
[u'love', u'centuri', u'put', u'bull', u'command']
[u'lyle', u'move', u'tour']
[u'macfarlan', u'welcom', u'uranium', u'industri', u'shake']
[u'get', u'probat', u'keep', u'child', u'porn']
[u'court', u'polic', u'chase']
[u'mason', u'suspens', u'felt', u'civoniceva']
[u'matern', u'group', u'highlight', u'need', u'public']
[u'mayor', u'rais', u'militari', u'museum', u'respons']
[u'mcevoy', u'ride', u'say']
[u'medal', u'recognis', u'gippsland', u'defenc', u'forc', u'member']
[u'media', u'spotlight', u'fall', u'moranbah', u'woe']
[u'miner', u'offer', u'expans', u'assur']
[u'minist', u'back', u'push', u'katan', u'saleyard']
[u'minist', u'seek', u'explan', u'devil', u'reject']
[u'minist', u'canva', u'issu', u'gold', u'coast']
[u'minist', u'beat', u'flat', u'revamp']
[u'weather', u'predict']
[u'rate', u'rise', u'need']
[u'chang', u'possibl', u'say']
[u'rate', u'hike', u'need']
[u'morwel', u'independ', u'issu', u'prefer', u'blow']
[u'mulcahi', u'replac', u'deputi', u'liber', u'leader']
[u'mutitjulu', u'raid', u'interfer', u'feder']
[u'nation', u'pledg', u'minist', u'senior']
[u'nation', u'urg', u'levi', u'chang']
[u'admit', u'refere', u'error']
[u'needl', u'exchang', u'program', u'mark', u'year']
[u'shed', u'help', u'boost', u'volunt', u'number']
[u'renmark', u'mayor', u'play', u'conflict']
[u'comment', u'beatti', u'alleg', u'blackmail']
[u'northern', u'mayor', u'spot', u'decid', u'strong', u'voter']
[u'govt', u'build', u'hunter', u'central']
[u'statehood', u'debat', u'reignit', u'survey']
[u'studi', u'look', u'shark', u'poach', u'impact']
[u'support', u'statehood', u'survey']
[u'nurs', u'offer', u'subject']
[u'stadium', u'threaten', u'world', u'prospect']
[u'offic', u'death', u'prompt', u'traffic']
[u'ogilvi', u'baddeley', u'draw', u'open']
[u'dead', u'critic', u'hurt', u'separ', u'motorbik']
[u'opposit', u'highlight', u'need', u'develop', u'smut']
[u'opposit', u'want', u'orkopouloss', u'super', u'suspend']
[u'orkopoulo', u'affair', u'alleg', u'continu']
[u'orkopoulo', u'quit', u'polit']
[u'orkopoulo', u'resign', u'parliament']
[u'packsaddl', u'pack', u'celebr']
[u'person', u'hospit', u'car', u'semi', u'crash']
[u'plane', u'owner', u'specul', u'reason']
[u'announc', u'carbon', u'trade', u'inquiri']
[u'defenc', u'command', u'deni', u'report', u'suspens']
[u'replac', u'act', u'polic', u'commission']
[u'polic', u'investig', u'rottnest', u'island', u'plane', u'crash']
[u'polic', u'probe', u'tourist', u'assault', u'theft']
[u'polic', u'probe', u'trawler', u'stab']
[u'polic', u'investig', u'teen', u'shoot']
[u'polic', u'question', u'crash']
[u'potato', u'grower', u'reject', u'mccain', u'offer']
[u'power', u'podium', u'secur', u'rooki', u'titl']
[u'power', u'decid', u'mayor', u'candidaci']
[u'protest', u'escort', u'piggeri']
[u'public', u'meet', u'plan', u'determin', u'shop']
[u'public', u'warn', u'steal', u'oyster', u'health', u'risk']
[u'govt', u'mull', u'water', u'charg', u'freez']
[u'report', u'fewer', u'discrimin', u'complaint']
[u'rain', u'fall', u'north', u'east', u'victoria']
[u'rain', u'relief', u'riverland', u'malle']
[u'rain', u'stop', u'play']
[u'statement', u'rate', u'futur']
[u'redback', u'drop', u'manou', u'england', u'dayer']
[u'refuge', u'run', u'away', u'join', u'circus']
[u'religion', u'prompt', u'arrow', u'kill', u'court', u'tell']
[u'replica', u'gun', u'theft', u'worri', u'polic']
[u'reserv', u'bank', u'quarter', u'statement']
[u'resid', u'abl', u'voic', u'local', u'govt', u'merger', u'concern']
[u'resid', u'councillor', u'meet', u'norm', u'smith', u'park']
[u'resid', u'need', u'survey', u'dengu', u'mosquito']
[u'resourc', u'drag', u'market', u'lower']
[u'portland', u'flight']
[u'tinto', u'hail', u'emiss', u'cut', u'iron', u'process']
[u'robberi', u'victim', u'threaten', u'knife']
[u'ronaldinho', u'nistelrooy', u'turn', u'spain']
[u'ruddock', u'dismiss', u'use', u'australian']
[u'sack', u'minist', u'park', u'fine', u'debnam', u'say']
[u'govt', u'take', u'report', u'card']
[u'scheme', u'look', u'boost', u'burdekin', u'river']
[u'scheme', u'standardis', u'elig', u'small', u'busi']
[u'schumach', u'retir', u'improv', u'competit']
[u'shearer', u'spin', u'yarn', u'reunion']
[u'sheep', u'genom', u'map', u'near', u'complet']
[u'short', u'live', u'children', u'commission', u'defend', u'work']
[u'socceroo', u'trio', u'ghana', u'friend']
[u'sophi', u'delezio', u'face', u'life', u'threaten']
[u'south', u'african', u'train', u'crash', u'kill']
[u'southern', u'phone', u'ring', u'strong', u'growth']
[u'state', u'shouldnt', u'reli', u'rain', u'water', u'suppli']
[u'strauss', u'lift', u'england', u'blue']
[u'survey', u'find', u'support', u'chifley', u'primari', u'school']
[u'taiwanes', u'quit', u'chen', u'scandal']
[u'talbot', u'take', u'leav', u'absenc', u'amid', u'loan']
[u'hop', u'free', u'year']
[u'tasmanian', u'worri', u'environ']
[u'teen', u'threaten', u'polic', u'snake']
[u'tiaro', u'council', u'reinstat']
[u'rain', u'caus', u'farmer', u'problem']
[u'town', u'entranc', u'tree', u'plant']
[u'union', u'criticis', u'workplac', u'chang']
[u'consid', u'iran', u'syria', u'contact', u'iraq']
[u'democrat', u'push', u'iraq', u'troop', u'withdraw']
[u'democrat', u'push', u'iraq', u'exit']
[u'vandal', u'forc', u'telstra', u'secur', u'guard']
[u'campaign', u'launch', u'focus', u'educ']
[u'liber', u'pledg', u'emerg', u'servic']
[u'voter', u'elect', u'gambier', u'mayor']
[u'cabinet', u'hear', u'broom', u'issu', u'region']
[u'wast', u'committe', u'member', u'reject', u'abandon', u'claim']
[u'water', u'topic', u'elect']
[u'water', u'cut', u'forc', u'farmer', u'difficult', u'choic']
[u'water', u'cut', u'forc', u'summer', u'crop', u'rethink']
[u'water', u'cut', u'shock', u'irrig']
[u'watson', u'symond', u'fail', u'impress', u'waca']
[u'wave', u'hill', u'walk', u'particip', u'die']
[u'wesley', u'mission', u'studi', u'financi', u'stress']
[u'west', u'indi', u'face', u'inning', u'defeat']
[u'woonona', u'cross']
[u'work', u'open']
[u'catch', u'drug', u'drive', u'polic']
[u'govt', u'chang', u'health', u'law']
[u'action', u'group', u'urg', u'council', u'reject', u'rubi', u'mine']
[u'activist', u'accus', u'rumsfeld', u'crime']
[u'activist', u'fear', u'secur', u'pact', u'constrain']
[u'alarm', u'help', u'famili', u'escap']
[u'alleg', u'cost', u'saint', u'coach', u'cresswel']
[u'anti', u'fluorid', u'group', u'vow', u'boycott', u'bill']
[u'arnold', u'target', u'asian', u'glori']
[u'arson', u'think', u'coolgardi', u'hous', u'blaze']
[u'aust', u'busi', u'jump', u'profit', u'survey']
[u'aust', u'indonesia', u'sign', u'secur', u'treati']
[u'australia', u'indonesia', u'sign', u'histor', u'secur', u'pact']
[u'australian', u'ash', u'test', u'farewel', u'taylor']
[u'aust', u'sanction', u'north', u'korea', u'increas']
[u'meet', u'discuss', u'challeng']
[u'babi', u'surviv', u'medic', u'help']
[u'baillieu', u'push', u'communiti', u'public', u'land', u'sale']
[u'bank', u'struggl', u'meet', u'countri', u'demand', u'manag']
[u'berdych', u'confirm', u'sydney', u'intern']
[u'blair', u'request', u'iranian', u'syrian', u'assist', u'iraq']
[u'bouncer', u'guilti', u'danger']
[u'brisban', u'poultri', u'clear', u'health', u'risk']
[u'break', u'hill', u'beach', u'safeti', u'initi']
[u'brough', u'pressur', u'restor', u'local', u'administr']
[u'bundaberg', u'cane', u'smut', u'quarantin', u'measur', u'relax']
[u'busi', u'chamber', u'seek', u'long', u'term', u'benefit']
[u'busker', u'ban', u'salamanca', u'squar']
[u'canberra', u'cyclist', u'undergo', u'spinal', u'surgeri']
[u'canberra', u'wine', u'select', u'drop']
[u'carpent', u'face', u'plant', u'protest']
[u'await', u'board', u'approv', u'break', u'hill']
[u'chemic', u'spray', u'keep', u'locust']
[u'cherri', u'grower', u'hop', u'avoid', u'pear', u'shape', u'season']
[u'child', u'care', u'worker', u'give', u'bail', u'assault', u'charg']
[u'claim', u'surgeri', u'cancel', u'continu']
[u'clark', u'keen', u'stake', u'ash', u'claim']
[u'closer']
[u'closer']
[u'councillor', u'reopen', u'bridg']
[u'council', u'ponder', u'coal', u'possibl']
[u'council', u'say', u'mistak', u'draft', u'conserv', u'plan']
[u'council', u'turn', u'feder', u'govt', u'barrack', u'offer']
[u'coupl', u'right', u'introduc', u'parliament']
[u'cousin', u'appoint', u'telstra', u'board']
[u'dairi', u'farmer', u'vote', u'contribut']
[u'darwin', u'nativ', u'titl', u'appeal', u'begin']
[u'diabet', u'impact', u'indigen', u'communiti', u'worri']
[u'document', u'reveal', u'minist', u'gift', u'beatti', u'term']
[u'fear', u'rule', u'howard']
[u'drought', u'spark', u'face', u'face']
[u'drug', u'network', u'smash', u'schooli']
[u'drunken', u'eleph', u'kill']
[u'elder', u'statesmen', u'ash', u'test', u'farewel']
[u'elect', u'forc', u'naracoort', u'lucindal', u'council', u'shake']
[u'emiss', u'trade', u'inquiri', u'question']
[u'emmett', u'farewel', u'friday']
[u'england', u'blue', u'clash', u'head', u'draw']
[u'england', u'player', u'racial', u'abus', u'australia']
[u'england', u'choic', u'jone', u'aussi', u'stump']
[u'question', u'support', u'carbon']
[u'evid', u'show', u'direct', u'iraqi', u'request']
[u'famili', u'hold', u'vigil', u'orkopoulo', u'bedsid']
[u'farm', u'owner', u'wont', u'rush', u'cane', u'smut', u'decis']
[u'fatal', u'crash', u'spark', u'safeti', u'barrier']
[u'fear', u'drought', u'boost', u'south', u'east', u'feral', u'deer']
[u'fear', u'orkopoulo', u'saga', u'overshadow', u'land', u'right']
[u'film', u'industri', u'hop', u'feder', u'budget', u'boost']
[u'firefight', u'battl', u'atherton', u'tableland', u'blaze']
[u'flat', u'trade', u'manag', u'push', u'market', u'higher']
[u'music', u'teacher', u'jail', u'sexual', u'abus']
[u'forum', u'focus', u'eurobodalla', u'cancer', u'servic']
[u'star', u'candl', u'princ', u'charless']
[u'french', u'half', u'michalak', u'month']
[u'frost', u'drought', u'hamper', u'wine', u'product']
[u'gladston', u'mayor', u'brand', u'coal', u'limit', u'regress']
[u'global', u'warm', u'wipe', u'bird']
[u'govt', u'ask', u'clarifi', u'water', u'pump', u'plan']
[u'govt', u'quiz', u'hospit', u'board']
[u'govt', u'say', u'fund', u'need', u'barrack', u'trust']
[u'govt', u'eas', u'cape', u'york', u'alcohol', u'restrict']
[u'govt', u'urg', u'alic', u'youth', u'strategi']
[u'govt', u'welcom', u'high', u'court', u'workplac', u'rule']
[u'green', u'group', u'reject', u'underground', u'water']
[u'green', u'light', u'christian', u'colleg']
[u'green', u'light', u'give', u'hale', u'toll', u'bridg']
[u'gregan', u'regret', u'miss', u'european', u'tour']
[u'grella', u'name', u'captain', u'ghana', u'friend']
[u'group', u'charg', u'colleg', u'theft']
[u'group', u'push', u'proportion', u'aborigin']
[u'gunmen', u'seiz', u'iraq', u'ministri']
[u'health', u'board', u'tour', u'south', u'east']
[u'high', u'court', u'dismiss', u'challeng']
[u'high', u'court', u'dismiss', u'workplac', u'challeng']
[u'high', u'court', u'judgement', u'law']
[u'high', u'court', u'reject', u'challeng']
[u'hodg', u'belt', u'tassi', u'attack']
[u'hodg', u'show', u'form', u'tiger']
[u'hoteli', u'prepar', u'smoke', u'ban']
[u'hous', u'issu', u'rais', u'ministeri', u'communiti', u'forum']
[u'huge', u'support', u'statehood', u'survey']
[u'hunter', u'storm', u'busi']
[u'illeg', u'catch', u'net', u'fisher', u'fine']
[u'indigen', u'health', u'expo', u'oakey', u'servic']
[u'find', u'brigad', u'guilti', u'hunter', u'fatal', u'case']
[u'johnson', u'help', u'bull', u'warrior']
[u'labor', u'claim', u'democrat', u'launch']
[u'labor', u'clear', u'duck', u'hunt', u'polici']
[u'labor', u'cynic', u'carbon', u'trade', u'inquiri']
[u'labor', u'boost', u'polic', u'equip', u'fund']
[u'landown', u'claim', u'intimid', u'push']
[u'langer', u'find', u'form', u'bull']
[u'langer', u'look', u'run', u'bull']
[u'escape', u'recaptur']
[u'lavarch', u'back', u'legal', u'silk', u'liber', u'senat']
[u'lennon', u'interest', u'blame', u'game', u'child']
[u'liber', u'candid', u'see', u'benefit', u'prefer']
[u'liber', u'seek', u'amend', u'daylight', u'save']
[u'liber', u'claim', u'govt', u'consid', u'toll', u'westgat']
[u'liber', u'promis', u'fulli', u'fund', u'connect']
[u'liber', u'communiti', u'public', u'land']
[u'lightn', u'phillip', u'win', u'wnbl', u'award']
[u'long', u'rang', u'forecast', u'look', u'autumn', u'rainfal']
[u'luxuri', u'camp', u'offer', u'heel']
[u'macquari', u'bank', u'post', u'half', u'year', u'record', u'profit']
[u'charg', u'trawler', u'stab']
[u'die', u'fieri', u'road', u'crash']
[u'mayor', u'call', u'western', u'highway', u'duplic']
[u'meet', u'spotlight', u'bombala', u'weed', u'control']
[u'meningococc', u'diseas', u'victim', u'famili']
[u'mine', u'confer', u'tackl', u'water', u'usag']
[u'chang', u'like', u'ireland', u'test', u'connolli']
[u'mulcahi', u'back', u'liber', u'parti', u'presid']
[u'murchopoli', u'aim', u'open', u'peopl', u'eye', u'pastor']
[u'murdoch', u'urg', u'australian', u'stick']
[u'anglican', u'bishop', u'wollongong', u'name']
[u'appoint', u'southern', u'gulf', u'catchment']
[u'brain', u'scan', u'offer', u'earli', u'warn', u'alzheim']
[u'emerg', u'respons', u'plan', u'fraser']
[u'health', u'council', u'seek', u'patient', u'feedback']
[u'agreement', u'cervic', u'cancer', u'vaccin', u'subsidi']
[u'norman', u'hint', u'australian', u'swan', u'song']
[u'better', u'state', u'minist']
[u'explor', u'project', u'benefit']
[u'oloughlin', u'appoint', u'indigen', u'ambassador']
[u'opposit', u'return', u'frontbench']
[u'orkopol', u'attempt', u'suicid']
[u'orkopol', u'hospitalis', u'suicid', u'attempt']
[u'orkopoulo', u'hospitalis', u'newcastl']
[u'orkopoulo', u'stabl', u'condit']
[u'orkopoulo', u'take', u'hospit']
[u'paedophilia', u'suspect', u'ask', u'govt', u'help']
[u'pair', u'court', u'accus', u'drug', u'possess']
[u'pakistan', u'beat', u'west', u'indi', u'lahor']
[u'palestinian', u'uniti', u'govt', u'wont', u'recognis', u'israel', u'hama']
[u'panesar', u'racial', u'abus', u'report']
[u'papageorgiou', u'drop', u'communiti', u'commit']
[u'phillip', u'prepar', u'schooli', u'influx']
[u'pietersen', u'shin', u'england', u'bowl']
[u'plan', u'finalis', u'gubing', u'plan']
[u'plan', u'beaconsfield', u'trust', u'fund', u'scrap']
[u'talk', u'implic', u'workplac', u'rule']
[u'boost', u'hivaid', u'spend']
[u'defenc', u'command', u'deni', u'suspens', u'report']
[u'polic', u'labor', u'plan', u'weapon']
[u'polic', u'chase', u'end', u'elder', u'woman', u'death']
[u'polic', u'concern', u'miss']
[u'polic', u'investig', u'fatal', u'polic', u'chase']
[u'polic', u'question', u'teen', u'kangaroo', u'die']
[u'polic', u'reopen', u'murder', u'case']
[u'polic', u'seek', u'help', u'statu', u'vandal']
[u'politician', u'seek', u'assur', u'mitsubishi']
[u'poor', u'field', u'afflict', u'england', u'draw', u'blue']
[u'power', u'station', u'hexham', u'water', u'saviour']
[u'power', u'station', u'plan', u'moot', u'near', u'mildura']
[u'prevent', u'child', u'abus', u'need', u'communiti', u'support']
[u'progress', u'group', u'label', u'water', u'offer', u'inadequ']
[u'qgcs', u'report', u'refus', u'anger', u'santo']
[u'quilpi', u'council', u'boost', u'wild', u'control', u'effort']
[u'rain', u'help', u'delay', u'water', u'restrict']
[u'redhag', u'take', u'gong']
[u'region', u'driver', u'enjoy', u'lower', u'fuel', u'price']
[u'regul', u'dive', u'safer', u'compani', u'say']
[u'report', u'liquor', u'licens', u'disappoint']
[u'research', u'overcom', u'stem', u'cell', u'transplant', u'problem']
[u'river', u'murray', u'shack', u'owner', u'face', u'level', u'water', u'ban']
[u'road', u'permit', u'issu', u'creat', u'grain', u'farmer', u'freight']
[u'road', u'group', u'back', u'bega', u'council', u'inclus']
[u'roar', u'player', u'surpris', u'bleiberg', u'resign']
[u'rockmelon', u'price', u'increas']
[u'rooney', u'question', u'polic']
[u'govt', u'consid', u'build', u'desalin', u'plant']
[u'search', u'prize', u'winner']
[u'senior', u'seal', u'victori', u'intern']
[u'shoalhaven', u'hospit', u'introduc', u'stroke', u'unit']
[u'shop', u'blaze', u'think', u'deliber']
[u'set', u'world', u'record']
[u'south', u'west', u'face', u'dust', u'storm']
[u'south', u'west', u'clean', u'dust', u'storm']
[u'stockman', u'hall', u'fame', u'vandalis']
[u'sunwat', u'defend', u'water', u'price']
[u'surpris', u'cold', u'snap', u'put', u'brake', u'spring']
[u'sydney', u'hobart', u'shape', u'tight', u'battl']
[u'task', u'forc', u'favour', u'clean', u'coal', u'democrat']
[u'initi', u'retain', u'local', u'skill']
[u'teen', u'caution', u'shoot', u'mishap']
[u'telstra', u'defend', u'trujillo']
[u'telstra', u'defend', u'trujillo']
[u'thousand', u'gather', u'break', u'grind', u'king', u'memori']
[u'thurston', u'return', u'kangaroo', u'line']
[u'tiger', u'earli', u'wicket']
[u'titan', u'train', u'indoor', u'minus', u'turner']
[u'traffic', u'restrict', u'ahead', u'summit']
[u'trescothick', u'ash', u'stress', u'ill']
[u'trescothick', u'quit', u'ash', u'tour']
[u'trujillo', u'defend', u'chang', u'telstra']
[u'trujillo', u'defend', u'telstra', u'chang']
[u'doctor', u'announc', u'alzheim', u'test']
[u'strike', u'energi', u'technolog', u'deal', u'firm']
[u'studi', u'unearth', u'rural', u'mental', u'health', u'issu']
[u'unit', u'sign', u'agreement', u'club']
[u'hunt', u'iraq', u'strategi']
[u'hous', u'reject', u'vietnam', u'trade', u'deal']
[u'suprem', u'court', u'turn', u'vinci', u'code', u'appeal']
[u'vcat', u'hear', u'wind', u'farm', u'case']
[u'promis', u'polic', u'boost']
[u'govt', u'consid', u'cost', u'commit']
[u'voluntari', u'euthanasia', u'advoc', u'ralli']
[u'voter', u'reject', u'beazley', u'promis']
[u'govt', u'urg', u'split', u'local', u'govt']
[u'wallabi', u'meat', u'process', u'industri', u'propos', u'king']
[u'word', u'erupt', u'pipelin', u'forum']
[u'water', u'cut', u'tip', u'hurt', u'entir', u'communiti']
[u'west', u'indi', u'face', u'defeat', u'despit', u'lara']
[u'wheat', u'price', u'fall', u'panic', u'buy', u'eas']
[u'world', u'forest', u'make', u'comeback', u'survey', u'find']
[u'youth', u'detent', u'centr', u'inmat', u'escap']
[u'year', u'plan', u'promis', u'polic', u'station', u'hospit']
[u'holden', u'job']
[u'abstudi', u'chang', u'blame', u'fall', u'indigen']
[u'adelaid', u'storm', u'home', u'west', u'sydney']
[u'leagu', u'coach', u'cull', u'continu']
[u'alinta', u'make', u'offer']
[u'stand', u'timboon', u'ambul', u'station', u'pledg']
[u'urg', u'psychiatrist', u'goldfield']
[u'annan', u'call', u'climat', u'chang', u'action']
[u'insur', u'compani', u'settl', u'disput']
[u'arnold', u'delight', u'socceroo', u'draw']
[u'aust', u'broadband', u'speed', u'disgrac', u'murdoch']
[u'aust', u'film', u'take', u'apartheid']
[u'australia', u'world', u'forc', u'arnold']
[u'aust', u'wag', u'post', u'small', u'rise']
[u'author', u'predict', u'direct', u'wheat', u'export']
[u'baillieu', u'unveil', u'road', u'bypass', u'plan']
[u'batchelor', u'bachelorett', u'strip', u'chariti']
[u'bateman', u'record', u'earli', u'tourist', u'boost']
[u'beatti', u'act', u'appropri', u'refer']
[u'beazley', u'outlin', u'blueprint', u'futur', u'prosper']
[u'beazley', u'rule', u'feder', u'reshuffl']
[u'beazley', u'rule', u'frontbench', u'reshuffl']
[u'biodiesel', u'club', u'produc', u'cheaper', u'fuel']
[u'bligh', u'outlin', u'reason', u'desal', u'plant']
[u'bodi', u'swan', u'river']
[u'brack', u'defend', u'labor', u'environment', u'polici']
[u'brack', u'spend', u'servic', u'senior']
[u'brimbl', u'evid', u'disput', u'resolv']
[u'brimbl', u'person', u'steal', u'cabin']
[u'break', u'hill', u'media', u'coverag']
[u'break', u'irrig', u'quiz', u'vail']
[u'burrito', u'isnt', u'sandwich', u'judg', u'rule']
[u'bushrang', u'declar', u'rain', u'interrupt']
[u'cancer', u'rat', u'rise']
[u'central', u'queensland', u'urg', u'cyclon', u'readi']
[u'cervic', u'cancer', u'vaccin', u'start', u'year']
[u'champion', u'trophi', u'drug', u'free', u'say']
[u'chang', u'afoot', u'region', u'hospit', u'govern']
[u'chilli', u'canberra', u'unusu', u'bureau', u'say']
[u'clarenc', u'council', u'urg', u'continu', u'water', u'pollut']
[u'clean', u'begin', u'follow', u'feroci', u'storm']
[u'closer']
[u'closer']
[u'critic', u'parliament', u'deal']
[u'cold', u'snap', u'bring', u'snow', u'macedon']
[u'cole', u'myer', u'post', u'modest', u'quarter', u'sale']
[u'comment', u'seek', u'border', u'river', u'region', u'water', u'trade']
[u'communiti', u'group', u'fight', u'wast', u'dump', u'campaign']
[u'concern', u'mitsubishi', u'futur']
[u'coonan', u'defend', u'broadband', u'speed']
[u'costa', u'offer', u'coal', u'assur']
[u'costello', u'defend', u'foreign', u'figur']
[u'costello', u'deni', u'rule', u'workplac', u'law', u'threaten']
[u'costello', u'warn', u'violent', u'protest']
[u'council', u'member', u'see', u'good', u'grog', u'smuggl']
[u'council', u'oblig', u'waterfront', u'meet']
[u'council', u'plan', u'scheme', u'label', u'racist']
[u'council', u'reject', u'plan', u'miner', u'camp']
[u'council', u'seek', u'land', u'meet', u'hous', u'demand']
[u'court', u'reserv', u'decis', u'mutitjulu', u'administr']
[u'cricket', u'memento', u'home']
[u'crime', u'centr', u'establish', u'shoalhaven', u'polic']
[u'dedic', u'centr', u'seek', u'boost', u'forest', u'health']
[u'doctor', u'long', u'term', u'solut', u'whyalla']
[u'dont', u'fenc', u'north', u'coast', u'farmer']
[u'downer', u'welcom', u'suspens', u'offici']
[u'dubbo', u'servic', u'oper', u'soon']
[u'ebay', u'stop', u'sale', u'alan', u'jone', u'letter']
[u'eden', u'monaro', u'elector', u'share', u'green', u'grant']
[u'england', u'replac', u'trescothick']
[u'air', u'lobbi', u'regist', u'worri']
[u'farina', u'take', u'roar', u'coach']
[u'farmer', u'hurt', u'water', u'alloc', u'cut']
[u'fast', u'furious', u'storm', u'lash', u'brisban']
[u'fear', u'bushfir', u'season', u'worst']
[u'fear', u'yachtsman', u'miss', u'indian', u'ocean']
[u'feder', u'threat', u'workplac', u'rule', u'beatti']
[u'fieri', u'tyre', u'blaze', u'close', u'newel', u'highway']
[u'financi', u'group', u'warn', u'trillion', u'climat']
[u'forecast', u'warn', u'flash', u'flood', u'condit']
[u'drug', u'squad', u'deputi', u'maintain', u'innoc']
[u'orkopoulo', u'aid', u'bail', u'child', u'charg']
[u'orkopoulo', u'campaign', u'charg', u'child']
[u'forum', u'focus', u'lake', u'mokoan', u'futur']
[u'forum', u'tell', u'weir', u'mean', u'water', u'irrig']
[u'frustrat', u'roddick', u'lash', u'report']
[u'fund', u'amphitheatr', u'entri', u'sign']
[u'gabba', u'pitch', u'weather', u'merci']
[u'pipelin', u'project', u'get', u'fund', u'boost']
[u'gold', u'coast', u'prepar', u'schooli', u'influx']
[u'govt', u'consid', u'riverina', u'growth', u'task', u'forc']
[u'govt', u'urg', u'reconsid', u'welcom', u'reef']
[u'govt', u'wont', u'fund', u'basketbal', u'stadium', u'work']
[u'grape', u'grower', u'fear', u'late', u'season', u'frost']
[u'griffith', u'lose', u'public', u'health', u'dentist']
[u'owner', u'warn', u'lock', u'weapon']
[u'hardi', u'compo', u'deadlin', u'extend']
[u'hardi', u'govt', u'agre', u'compo', u'fund', u'deadlin', u'extens']
[u'health', u'offici', u'stand', u'trial', u'fraud', u'charg']
[u'horn', u'long', u'head', u'home']
[u'hospit', u'staff', u'woe', u'improv']
[u'hous', u'dept', u'ideal', u'place', u'overse']
[u'hunt', u'boof', u'successor']
[u'iemma', u'condemn', u'opposit', u'investig', u'slur']
[u'rate', u'rise', u'shake', u'consum', u'confid']
[u'iran', u'flag', u'expans', u'nuclear', u'program']
[u'iran', u'reaffirm', u'condit', u'talk']
[u'iraqi', u'forc', u'releas', u'hostag', u'offici']
[u'iraqi', u'hostag', u'free']
[u'iraqi', u'call', u'speedi', u'arrest', u'kidnapp']
[u'iraqi', u'polic', u'pressur', u'explain', u'hostag', u'incid']
[u'iron', u'firm', u'talk', u'karara', u'benefit']
[u'japan', u'russia', u'tsunami', u'alert']
[u'job', u'buttercup', u'bakeri', u'close']
[u'jockey', u'speak', u'time', u'septemb', u'fall']
[u'joyc', u'defend', u'nation', u'role']
[u'joyc', u'take', u'fight', u'traveston']
[u'back', u'clark']
[u'keech', u'open', u'live', u'histori', u'walk', u'trail']
[u'kennett', u'unfaz', u'thommo', u'depress', u'jibe']
[u'laffranchi', u'upbeat', u'titan', u'debut']
[u'landown', u'ralli', u'drainag', u'scheme']
[u'late', u'snow', u'fall', u'gippsland']
[u'lawyer', u'rumsfeld']
[u'grain', u'bind', u'port', u'kembla', u'termin']
[u'lobster', u'season', u'open', u'lower', u'catch', u'expect']
[u'log', u'protest', u'escap', u'crimin', u'charg']
[u'tide', u'heavi', u'rain', u'caus', u'coral', u'bleach']
[u'lyon', u'seek', u'ruckman', u'saint']
[u'get', u'year', u'jail', u'assault', u'girlfriend']
[u'jail', u'woman', u'bash']
[u'plead', u'guilti', u'child', u'assault']
[u'mayor', u'say', u'late']
[u'meet', u'decid', u'jetti', u'futur']
[u'melbourn', u'prepar', u'summit']
[u'mildura', u'hospit', u'announc', u'redund']
[u'motorcyclist', u'die', u'crash']
[u'say', u'elect', u'chang', u'law']
[u'mundin', u'make', u'success', u'return', u'ring']
[u'murder', u'accus', u'love', u'court', u'tell']
[u'murdoch', u'slam', u'broadband', u'speed', u'rat']
[u'murdoch', u'warn', u'australian', u'stand']
[u'mutitjulu', u'communiti', u'challeng', u'administr']
[u'nalbandian', u'confid', u'great', u'escap']
[u'nation', u'rush', u'choos', u'park', u'candid']
[u'natur', u'climat', u'chang', u'debat', u'chang', u'gore']
[u'nebo', u'experi', u'hous', u'water', u'woe']
[u'neighbour', u'accus', u'handl', u'assault']
[u'replac', u'tradit', u'mules']
[u'need', u'constitut', u'convent', u'say']
[u'plan', u'close', u'mitsubishi', u'adelaid', u'plant']
[u'pressur', u'scrap', u'golden', u'point']
[u'figur', u'bail', u'child', u'charg']
[u'plan', u'spark', u'farmer', u'concern']
[u'women', u'take', u'cancer', u'risk', u'studi']
[u'experi', u'shortag', u'afford', u'access']
[u'nurs', u'home', u'patient', u'receiv', u'treatment', u'viral']
[u'offic', u'draw', u'gun', u'fatal', u'polic', u'chase']
[u'polic', u'barrack', u'facelift']
[u'dead', u'truck', u'train', u'collid']
[u'orkopoulo', u'leav', u'messag', u'della', u'bosca']
[u'orkopoulo', u'stabl', u'ingest', u'pesticid']
[u'oversea', u'nurs', u'registr', u'freez']
[u'pacif', u'flight', u'school', u'plan', u'rais', u'terror', u'fear']
[u'parliament', u'theft', u'accus', u'sick', u'face', u'charg']
[u'paul', u'question', u'rotat', u'polici']
[u'perth', u'lead', u'nation', u'hous', u'price', u'rise']
[u'physicist', u'moot', u'wireless', u'electr']
[u'pitt', u'highlight', u'previous', u'govern', u'palm']
[u'play', u'resum']
[u'closer']
[u'suspend', u'offici', u'moti', u'affair']
[u'suspend', u'offici', u'moti', u'affair']
[u'polic', u'arrest', u'alleg', u'philippin', u'coup', u'plotter']
[u'polic', u'associ', u'push', u'region']
[u'polic', u'weld', u'forest', u'blockad', u'campaign', u'say']
[u'polic', u'question', u'attempt']
[u'polic', u'report', u'reveal', u'impact', u'licenc', u'suspens']
[u'polic', u'rescu', u'woman', u'cliff', u'ordeal']
[u'polic', u'solut', u'need', u'combat', u'alcohol']
[u'port', u'lincoln', u'mayor', u'report', u'drink', u'drive']
[u'post', u'mortem', u'toddler', u'die']
[u'preliminari', u'carbon', u'trade', u'meet', u'product']
[u'protect', u'visa', u'holder', u'send', u'home', u'court']
[u'protein', u'lead', u'parkinson', u'diseas', u'treatment']
[u'urg', u'sharehold', u'reject', u'takeov', u'offer']
[u'rain', u'help', u'leongatha', u'catchment']
[u'rain', u'interrupt', u'bushrang', u'tiger', u'clash']
[u'rann', u'beatti', u'constitut', u'convent']
[u'red', u'question', u'report', u'tuqiri', u'offer']
[u'remot', u'polic', u'boost', u'hurt', u'broom', u'carpent']
[u'resourc', u'loss', u'drag', u'market']
[u'reward', u'offer', u'catch', u'shooter']
[u'rise', u'farm', u'debt', u'worri', u'rural', u'counsellor']
[u'robbi', u'william', u'concert', u'noisier', u'footbal']
[u'robinson', u'say', u'lose', u'good', u'england']
[u'rocket', u'attack', u'kill', u'elder', u'woman']
[u'enshrin', u'coupl', u'legal', u'right']
[u'safeti', u'fear', u'bullimor', u'lose', u'contact']
[u'safeti', u'fear', u'miss', u'yachti', u'bullimor']
[u'safe', u'work', u'warn', u'bendigo', u'worker', u'die']
[u'africa', u'legalis', u'marriag']
[u'africa', u'parliament', u'legalis', u'marriag']
[u'second', u'figur', u'court']
[u'secur', u'forc', u'free', u'iraqi', u'hostag', u'report']
[u'senior', u'polic', u'arrest', u'baghdad', u'abduct']
[u'sever', u'storm', u'warn', u'issu']
[u'slower', u'speed', u'save', u'live', u'minist', u'say']
[u'snow', u'fall', u'cold', u'snap', u'hit', u'south', u'east', u'aust']
[u'snow', u'fall']
[u'solomon', u'rais', u'ramsi', u'prostitut', u'claim']
[u'state', u'plan', u'outlin', u'south', u'east', u'initi']
[u'studi', u'link', u'meat', u'breast', u'cancer']
[u'suspend', u'sentenc', u'father', u'assault']
[u'suspens', u'appeas', u'australia']
[u'sydney', u'choos', u'studi', u'centr']
[u'tasmania', u'outlin', u'water', u'plan']
[u'outlin', u'multi', u'million', u'dollar', u'plan']
[u'tassi', u'best', u'hotel', u'restaur', u'announc']
[u'qaeda', u'oper', u'arrest', u'iraq']
[u'trade', u'opportun', u'india', u'promot']
[u'tresco', u'jump', u'push']
[u'trescothick', u'jump', u'push']
[u'tribun', u'hand', u'cabl', u'beach', u'camel', u'tour']
[u'liber', u'deni', u'nation', u'squeez']
[u'nation', u'struggl', u'seat']
[u'govt', u'protect', u'children']
[u'wagyu', u'properti', u'market']
[u'warrior', u'take', u'stock', u'bull', u'defeat']
[u'wild', u'weather', u'expect', u'southern']
[u'wind', u'blue', u'mountain', u'fire']
[u'woolgrow', u'maintain', u'research', u'levi']
[u'workplac', u'rule', u'threaten', u'feder', u'beatti']
[u'work', u'start', u'soon', u'cloncurri', u'polic', u'station']
[u'candid', u'liverpool', u'plain', u'council']
[u'custodi', u'drug', u'squad', u'raid']
[u'accus', u'palm', u'rioter', u'launch', u'aborigin', u'legal']
[u'machineri', u'compani', u'fold']
[u'abandon', u'propos', u'code', u'share', u'agreement']
[u'alcohol', u'malua', u'beach', u'long', u'beach']
[u'annan', u'call', u'climat', u'chang', u'leadership']
[u'annan', u'push', u'climat', u'chang', u'action']
[u'applebi', u'predict', u'tough', u'golf', u'kick', u'open']
[u'assembl', u'committe', u'scrutinis', u'drug']
[u'asylum', u'seeker', u'get', u'perman', u'visa', u'year']
[u'aust', u'commit', u'emiss', u'reduct']
[u'aust', u'commit', u'greenhous', u'reduct']
[u'australia', u'jail', u'ireland']
[u'australia', u'indonesia', u'join', u'forc', u'stamp']
[u'australian', u'confid', u'rise']
[u'baillieu', u'call', u'investig', u'game']
[u'baillieus', u'mother', u'want', u'brack', u'lead']
[u'bakeri', u'seek', u'job', u'worker']
[u'bashir', u'call', u'peac', u'protest', u'bush']
[u'bathurst', u'council', u'start', u'talk', u'region']
[u'bayley', u'renew', u'rivalri']
[u'crowd', u'air', u'lake', u'mokoan', u'view']
[u'bligh', u'support', u'releas', u'ministeri', u'gift', u'list']
[u'bombala', u'council', u'urg', u'time', u'weed']
[u'botham', u'pom', u'boot']
[u'bowler', u'releas', u'compani', u'deal', u'list']
[u'brack', u'pledg', u'bring', u'forward', u'payrol', u'cut']
[u'brimbl', u'surviv', u'chanc', u'virtual']
[u'broom', u'tourism', u'oper', u'hump']
[u'bulok', u'mayor', u'promis', u'sack', u'explan']
[u'burk', u'back', u'farmer', u'look', u'chang', u'nativ', u'vege']
[u'bush', u'rout', u'hanoi', u'apec', u'summit']
[u'bush', u'talk', u'free', u'trade', u'asian', u'tour']
[u'busi', u'usual', u'macarthur', u'coal', u'say', u'chairman']
[u'busi', u'chamber', u'question', u'transport']
[u'climat', u'chang', u'apec', u'issu', u'howard']
[u'climat', u'chang', u'iraq', u'domin', u'apec', u'summit']
[u'closer']
[u'closer']
[u'cole', u'myer', u'plan', u'doubl', u'homebrand', u'rang']
[u'collingwood', u'dig', u'silver', u'line', u'tresco']
[u'connex', u'pull', u'train', u'brake', u'failur']
[u'consumpt', u'goldenfield', u'water', u'area']
[u'coonambl', u'push', u'time', u'dentist']
[u'coron', u'return', u'open', u'find', u'highway', u'death']
[u'council', u'defend', u'unit', u'develop', u'approv']
[u'council', u'get', u'support', u'open']
[u'council', u'reject', u'supermarket', u'plan']
[u'council', u'shelv', u'livestock', u'burial', u'plan']
[u'court', u'find', u'guilti', u'kidnap', u'attack']
[u'court', u'lift', u'suspens', u'offici']
[u'court', u'reject', u'appeal', u'infect', u'sentenc']
[u'replac', u'border', u'select', u'panel']
[u'help', u'chile', u'health', u'scheme']
[u'cyprus', u'hold', u'germani', u'euro', u'win', u'croatia', u'finland']
[u'debnam', u'fail', u'identifi', u'minist']
[u'debnam', u'name', u'minist', u'investig']
[u'debnam', u'name', u'debus', u'minist', u'investig']
[u'venuto', u'bailey', u'tiger', u'control']
[u'venuto', u'power', u'tiger']
[u'drought', u'forc', u'return', u'livestock']
[u'dutch', u'deni', u'mcclaren', u'respit']
[u'eastern', u'cold', u'snap', u'bring', u'snow']
[u'educ', u'offici', u'discuss', u'meekatharra', u'school']
[u'endeavour', u'product']
[u'english', u'class', u'improv', u'skill']
[u'english', u'languag', u'jazeera']
[u'english', u'call', u'leader', u'work', u'harder']
[u'evid', u'dfat', u'queri', u'wheat', u'price']
[u'farina', u'offici', u'take', u'roar']
[u'farmer', u'cope', u'climat', u'chang', u'abar']
[u'fatal', u'crash', u'prompt', u'truck', u'black', u'box']
[u'fatal', u'level', u'cross', u'crash', u'investig']
[u'ban', u'come', u'earli', u'warrnambool']
[u'flour', u'get', u'food', u'innov', u'fund']
[u'ford', u'boss', u'optimist', u'industri', u'futur']
[u'fund', u'lifelin', u'secur', u'year', u'outback']
[u'gallic', u'overcom', u'injuri', u'bendigo']
[u'explor', u'announc', u'tasmania']
[u'gold', u'coast', u'hous', u'price', u'rise']
[u'govt', u'check', u'sydney', u'tunnel', u'financi', u'troubl']
[u'govt', u'consid', u'chaffey', u'capac', u'boost']
[u'govt', u'dept', u'probe', u'council', u'manag', u'art']
[u'govt', u'urg', u'cecil', u'plain', u'bore']
[u'green', u'enter', u'clubhous', u'open', u'leader']
[u'green', u'clubhous', u'open', u'lead']
[u'green', u'play', u'open']
[u'green', u'take', u'shoot', u'open', u'lead']
[u'hail', u'destroy', u'central', u'burnett', u'citrus', u'farm']
[u'holden', u'cut', u'job']
[u'home', u'evacu', u'amid', u'sunshin', u'coast', u'bushfir']
[u'hope', u'facil', u'lure', u'research']
[u'howard', u'bush', u'discuss', u'iraq', u'tactic']
[u'howard', u'consid', u'chang', u'patern', u'legisl']
[u'howard', u'sculli', u'gibe', u'rich', u'say', u'beazley']
[u'stress', u'student']
[u'iemma', u'call', u'debnam', u'resign']
[u'indian', u'schoolboy', u'score', u'record', u'partnership']
[u'intern', u'properti', u'group']
[u'inzi', u'want', u'test', u'pakistan']
[u'israel', u'ban', u'aust', u'livestock', u'shipment']
[u'isra', u'raid', u'target', u'milit', u'home']
[u'israel', u'promis', u'retali', u'palestinian', u'rocket']
[u'israel', u'vow', u'kill', u'milit', u'rocket', u'attack']
[u'jackson', u'give', u'fleet', u'perform', u'music', u'award']
[u'johnson', u'clark', u'tait', u'name', u'ash']
[u'kabila', u'retain', u'presid', u'follow', u'congo', u'elect']
[u'kalgoorli', u'join', u'obstetrician', u'locum', u'scheme']
[u'knight', u'confid', u'leagu', u'futur']
[u'labor', u'pledg', u'bring', u'forward', u'payrol']
[u'lake', u'macquari', u'plead', u'guilti', u'fraud']
[u'langer', u'back', u'johnson', u'shake', u'england']
[u'larkham', u'resum', u'half', u'duti']
[u'legal', u'servic', u'highlight', u'need', u'indigen']
[u'liber', u'health', u'polici', u'spark', u'worker', u'walk']
[u'liber', u'pledg', u'traralgon', u'creek', u'fund']
[u'lib', u'promis', u'easier', u'access']
[u'lifesav', u'boost', u'effort', u'schooli']
[u'lion', u'look', u'defi', u'odd']
[u'long', u'assault', u'case', u'adjourn']
[u'lpga', u'screen', u'player', u'drug']
[u'charg', u'servic', u'station', u'arm', u'hold']
[u'mandurah', u'rank', u'high', u'livabl', u'communiti']
[u'guilti', u'arrow', u'murder']
[u'market', u'close', u'lower', u'bank', u'lose', u'grind']
[u'marrickvill', u'win', u'reusabl', u'shop', u'award']
[u'martin', u'moot', u'realloc', u'senat', u'spot']
[u'mcgauran', u'support', u'farmer', u'innov']
[u'meet', u'hear', u'murray', u'darl', u'basin', u'zone']
[u'mega', u'tsunami', u'common', u'think', u'scientist']
[u'melb', u'school', u'kid', u'life', u'lesson', u'farm', u'gate']
[u'miner', u'camp', u'propon', u'wont', u'plan']
[u'seek', u'water', u'save', u'way']
[u'union', u'anglo', u'coal', u'safeti', u'effort']
[u'minist', u'defend', u'drain', u'work']
[u'minist', u'offer', u'region', u'tourism', u'manag', u'assur']
[u'mitchel', u'comeback', u'track']
[u'defend', u'meat', u'campaign', u'light', u'breast']
[u'environment', u'flow', u'hattah', u'lake']
[u'lewd', u'behaviour', u'detail', u'brimbl', u'inquest']
[u'rain', u'snow', u'forecast']
[u'moroccan', u'guilti', u'accessori', u'murder', u'sept']
[u'urg', u'mildura', u'hospit', u'fund', u'review']
[u'murder', u'life', u'sentenc', u'reduc']
[u'nadal', u'reviv', u'put', u'blake', u'master', u'semi']
[u'naracoort', u'hospit', u'get', u'upgrad', u'assur']
[u'england', u'shiver', u'cold', u'snap']
[u'measur', u'combat', u'illeg', u'fish', u'announc']
[u'program', u'control', u'croc', u'chlamydia']
[u'scan', u'go', u'heart', u'matter']
[u'troop', u'need', u'iraq', u'command']
[u'govt', u'consid', u'irrig']
[u'north', u'coast', u'get', u'hint', u'summer', u'come']
[u'iceberg', u'draw', u'larg', u'crowd']
[u'oconnor', u'fight', u'preselect', u'decis']
[u'open', u'ash', u'say', u'hilditch']
[u'opposit', u'criticis', u'timet', u'inquiri']
[u'pacif', u'tsunami', u'alert', u'lift']
[u'paedophil', u'plead', u'guilti', u'loiter', u'theft']
[u'panesar', u'urg', u'slow', u'deliveri']
[u'parent', u'urg', u'know', u'schooli', u'plan']
[u'parliament', u'censur', u'debnam', u'debus', u'claim']
[u'parti', u'urg', u'timber', u'polici']
[u'patient', u'benefit', u'chang']
[u'petit', u'urg', u'hospit', u'servic', u'maintain']
[u'closer']
[u'laugh', u'sculli', u'tilt', u'feder', u'polit']
[u'credibl', u'climat', u'chang', u'apec']
[u'consid', u'chang', u'patern', u'legisl']
[u'polic', u'minist', u'discuss', u'share', u'drug', u'data']
[u'polic', u'prepar', u'protest']
[u'polic', u'probe', u'abduct', u'attempt', u'girl']
[u'polit', u'riot', u'erupt', u'tonga']
[u'pollut', u'take', u'colour', u'pink', u'lake']
[u'pont', u'creas', u'tiger', u'chase', u'vic']
[u'pont', u'fall', u'post', u'half']
[u'plate', u'driver', u'accus', u'drive', u'zone']
[u'program', u'track', u'pseudoephedrin', u'sale', u'go']
[u'push', u'plastic', u'bag', u'territori']
[u'push', u'promot', u'riverland', u'wine', u'nation']
[u'rain', u'rossi', u'headlin', u'zealand', u'ralli']
[u'ramo', u'horta', u'say', u'kill', u'timor', u'youth']
[u'renown', u'cartoonist', u'die']
[u'respiratori', u'outbreak', u'claim', u'sixth', u'nurs', u'home']
[u'rivkin', u'expos']
[u'rock', u'lobster', u'fisher', u'hope', u'price', u'recoveri']
[u'rspca', u'call', u'patrol', u'reduc', u'road', u'kill']
[u'rural', u'women', u'urg', u'look', u'sign', u'depress']
[u'driver', u'face', u'smoke', u'fin']
[u'sale', u'see', u'victoria', u'hotel', u'save', u'demolit']
[u'schooli', u'ask', u'help']
[u'schooli', u'warn', u'youth', u'bravado', u'surf']
[u'robot', u'climat', u'research']
[u'senat', u'say', u'council', u'museum', u'decis', u'short', u'sight']
[u'senat', u'slam', u'decis', u'close', u'darwin', u'research']
[u'senior', u'planner', u'farewel', u'council']
[u'mop', u'storm']
[u'snow', u'fall', u'surpris', u'resid']
[u'snowi', u'hydro', u'urg', u'releas', u'stock', u'domest']
[u'southern', u'back', u'firefight', u'boost']
[u'storm', u'affect', u'area', u'batter']
[u'studi', u'back', u'eden', u'region', u'adjust', u'program']
[u'coast', u'avoid', u'brunt', u'damag', u'storm']
[u'sunshin', u'coast', u'threat', u'reced']
[u'sydney', u'record', u'coldest', u'novemb', u'night', u'centuri']
[u'sympathi', u'flow', u'tresco']
[u'tasmania', u'plan', u'survey', u'perform', u'disappoint']
[u'rent', u'bid', u'claim', u'investig']
[u'victorian', u'road', u'accid']
[u'tough', u'decis', u'help', u'bluescop', u'steel', u'profit']
[u'travel', u'warn', u'issu', u'riot', u'tonga']
[u'traveston', u'happen', u'joyc']
[u'triathlet', u'triumph', u'sport', u'award']
[u'trolley', u'threaten', u'knife']
[u'tuckey', u'push', u'ahead']
[u'tuckey', u'plan', u'creat', u'uncertainti']
[u'kill', u'baghdad', u'attack']
[u'union', u'buy', u'mine', u'share', u'tackl', u'global', u'warm']
[u'union', u'confid', u'avoid', u'industri']
[u'union', u'unconvinc', u'mitsubishi', u'assur']
[u'upper', u'hous', u'liber', u'delay', u'daylight']
[u'command', u'say', u'troop', u'need', u'iraq']
[u'marin', u'jail', u'civilian', u'death']
[u'market', u'shrug', u'inflat', u'fear']
[u'uzbek', u'bahrain', u'clinch', u'asian', u'final', u'place']
[u'vanston', u'deni', u'court', u'rule', u'put', u'refuge', u'risk']
[u'auto', u'industri', u'lose', u'job']
[u'wada', u'ponder', u'tougher', u'drug', u'cheat', u'penalti']
[u'wage', u'data', u'give', u'breath', u'space']
[u'opposit', u'happi', u'releas', u'minist']
[u'warhol', u'record', u'cap', u'auction', u'billion', u'dollar']
[u'water', u'cut', u'prompt', u'murray', u'manag', u'critic']
[u'water', u'restrict', u'tighten', u'adelaid']
[u'weather', u'surpris', u'east', u'aust', u'state']
[u'wife', u'accus', u'murder', u'get', u'bail']
[u'woman', u'say', u'like', u'brimbl', u'inquest', u'hear']
[u'world', u'trade', u'talk', u'resum', u'geneva']
[u'yuendumu', u'indigen', u'communiti']
[u'abbot', u'push', u'publish', u'hospit', u'statist']
[u'abbott', u'offer', u'state', u'swap', u'hospit', u'statist']
[u'call', u'help', u'fatal', u'respiratori']
[u'candid', u'play', u'govt', u'scandal']
[u'hesit', u'nation', u'hospit', u'info']
[u'anim', u'welfar', u'group', u'livecorp', u'odd', u'sheep']
[u'integr', u'plan', u'digit', u'migrant']
[u'applebi', u'scott', u'close', u'open', u'leader']
[u'australian', u'buckl', u'share', u'lead', u'hong', u'kong', u'open']
[u'australian', u'escap', u'death', u'sentenc', u'vietnam']
[u'australian', u'paralys', u'cycl', u'crash']
[u'peta', u'case', u'trial']
[u'ax', u'hair', u'win', u'umpir', u'award']
[u'beazley', u'express', u'sympathi', u'wrong', u'rove']
[u'beef', u'produc', u'incom', u'increas']
[u'bligh', u'tell', u'joyc', u'stay', u'issu']
[u'bluescop', u'investig', u'generat', u'power', u'plant']
[u'bomb', u'remov', u'peak', u'hill', u'home']
[u'brough', u'bulli', u'wadey', u'sign', u'year', u'leas']
[u'buena', u'vista', u'copyright', u'battl', u'end', u'cuban']
[u'burleigh', u'name', u'gold', u'coast', u'cleanest', u'beach']
[u'bush', u'promis', u'consult', u'iraq']
[u'bush', u'talk', u'trade', u'asia', u'tour']
[u'busi', u'communiti', u'tell', u'south', u'west', u'econom']
[u'campbel', u'upset', u'china', u'greenhous', u'claim']
[u'canberran', u'look', u'miss', u'satellit']
[u'cancer', u'patient', u'depress', u'studi', u'pay']
[u'cantona', u'target', u'singapor', u'beach', u'tournament']
[u'buff', u'bendigo', u'swap', u'meet']
[u'central', u'aust', u'take', u'fast', u'road', u'internet']
[u'chanc', u'lotto', u'ticket', u'pay', u'break', u'hill', u'woman']
[u'clark', u'surpris', u'test', u'snub']
[u'close']
[u'closer']
[u'cole', u'myer', u'sack', u'supermarket', u'head']
[u'communiti', u'work', u'abandon', u'pup']
[u'concert', u'organis', u'urg', u'countri', u'commit']
[u'costello', u'call', u'energi', u'freeway']
[u'council', u'consid', u'koala', u'manag', u'plan', u'review']
[u'council', u'look', u'militari', u'museum', u'home']
[u'council', u'consid', u'batteri', u'point', u'trail']
[u'council', u'follow', u'water', u'ban']
[u'court', u'find', u'biter', u'guilti']
[u'court', u'jail', u'paedophil', u'loiter', u'theft']
[u'crash', u'halt', u'adelaid', u'ralli']
[u'dairi', u'industri', u'task', u'forc', u'help', u'farmer']
[u'darfur', u'violenc', u'annan']
[u'darren', u'clark', u'pull', u'australian']
[u'death', u'briton', u'releas', u'pakistani', u'jail']
[u'debnam', u'deni', u'mislead', u'parliament']
[u'diamond', u'miner', u'say', u'govt', u'inaccess', u'busi']
[u'jone', u'record', u'time', u'high']
[u'downer', u'dismiss', u'report', u'ramsi']
[u'drought', u'claim', u'grain', u'export']
[u'drought', u'group', u'form', u'malle', u'boundari']
[u'economi', u'give', u'tick', u'approv']
[u'egyptian', u'antiqu', u'arriv', u'louvr', u'museum']
[u'probe', u'cairn', u'diesel', u'spill']
[u'eurobodalla', u'council', u'join', u'tuross', u'lake']
[u'famili', u'disappoint', u'coroni', u'inquest']
[u'farina', u'look', u'forward', u'victori', u'challeng']
[u'farmer', u'want', u'basslink', u'cabl', u'problem', u'fix']
[u'father', u'criticis', u'educ', u'dept', u'anti', u'bulli']
[u'father', u'plead', u'guilti', u'stab', u'babi']
[u'firefight', u'boost', u'effort', u'tackl', u'blaze', u'near']
[u'foreign', u'seiz', u'iraq', u'convoy', u'hijack']
[u'aust', u'coach', u'eric', u'worthington', u'die']
[u'french', u'judg', u'prais', u'australian', u'wine', u'qualiti']
[u'fund', u'better', u'mildura', u'airport', u'secur']
[u'futur', u'digit', u'say', u'chief']
[u'discuss', u'carbon', u'trade', u'costello']
[u'gene', u'research', u'help', u'bowel', u'cancer', u'fight']
[u'gilli', u'fire', u'warrior', u'victori']
[u'girl', u'better', u'singl', u'high', u'school', u'research']
[u'govt', u'consid', u'tougher', u'complianc', u'standard']
[u'govt', u'get', u'indigen', u'land', u'manag', u'report']
[u'govt', u'offer', u'saleyard', u'assur']
[u'govt', u'push', u'hospit', u'perform', u'transpar']
[u'shortag', u'put', u'pressur', u'hospit']
[u'green', u'second', u'round', u'open']
[u'green', u'second', u'round', u'aust', u'open']
[u'green', u'take', u'lead', u'open']
[u'green', u'take', u'lead', u'aust', u'open']
[u'gunn', u'gunn']
[u'harmison', u'tour', u'match', u'strain']
[u'hart', u'hop', u'club']
[u'harvest', u'safeti', u'review']
[u'hick', u'ruddock', u'share', u'guantanamo', u'concern']
[u'hoggard', u'adelaid', u'oval']
[u'hoggard', u'strike', u'south', u'australia', u'stumbl']
[u'hope', u'remain', u'surf', u'school', u'oper']
[u'hospit', u'board', u'member', u'quit', u'plan', u'chang']
[u'howard', u'bush', u'discuss', u'iraq', u'strategi']
[u'howard', u'bush', u'discuss', u'iraq', u'tactic']
[u'howard', u'bush', u'discuss', u'iraq', u'tactic', u'lunch']
[u'howard', u'bush', u'unit', u'climat', u'chang']
[u'howard', u'push', u'bush', u'east', u'peac']
[u'hundr', u'attend', u'funer', u'belinda', u'emmett']
[u'hunter', u'jobless', u'rate', u'fall']
[u'selfish', u'latham']
[u'indigen', u'group', u'back', u'govt', u'approach']
[u'israel', u'stop', u'livestock', u'import', u'australia']
[u'jealous', u'jail', u'man', u'murder']
[u'joli', u'bodyguard', u'arrest', u'india']
[u'judg', u'condemn', u'lack', u'action', u'prevent', u'toddler']
[u'labor', u'announc', u'log', u'polici', u'game', u'review', u'panel']
[u'lake', u'illawarra', u'author', u'play', u'deficit', u'figur']
[u'land', u'permit', u'overhaul', u'need', u'chang', u'academ']
[u'lawrenc', u'criticis', u'burrup', u'plant', u'plan']
[u'legend', u'puska', u'die']
[u'lehmann', u'lead', u'charg', u'england']
[u'lehmann', u'lead', u'south', u'australian', u'charg']
[u'liber', u'candid', u'quiet', u'confid']
[u'liber', u'announc', u'drought', u'prefer', u'nation']
[u'life', u'belinda', u'emmett', u'celebr']
[u'life', u'beach', u'dole', u'worker']
[u'lion', u'look', u'long', u'exit']
[u'jail', u'rap', u'wife']
[u'plead', u'guilti', u'assault']
[u'market', u'end', u'week', u'high']
[u'martyn', u'sidelin', u'elbow', u'injuri']
[u'maywald', u'reject', u'secker', u'water', u'comment']
[u'merri', u'rise', u'court', u'case', u'adjourn']
[u'meteor', u'shower', u'see', u'western']
[u'methadon', u'mother', u'guilti', u'manslaught']
[u'mildura', u'look', u'attract', u'confer', u'trade']
[u'union', u'back', u'cut', u'centenni', u'shake']
[u'minist', u'deni', u'land', u'right', u'chang', u'sidelin']
[u'minist', u'consid', u'forc', u'council', u'merger']
[u'molloy', u'consid', u'katter', u'allianc']
[u'moroney', u'join', u'mourner', u'farewel', u'polic', u'offic']
[u'mourner', u'celebr', u'emmett', u'spirit']
[u'mourner', u'farewel', u'belinda', u'emmett']
[u'nepales', u'peac', u'deal', u'delay']
[u'forest', u'product', u'commiss', u'chief', u'name']
[u'greenhous', u'scheme', u'pay', u'farmer', u'carbon']
[u'law', u'leav', u'owner', u'distraught']
[u'town', u'plan', u'consid', u'gladston', u'growth']
[u'month', u'defin', u'season', u'nevill']
[u'fear', u'health', u'insur', u'choic']
[u'govt', u'consid', u'rais', u'school', u'leav']
[u'open', u'water', u'industri', u'privat', u'sector']
[u'attract', u'farm', u'investor', u'govt', u'say']
[u'govt', u'aust', u'idol', u'parti', u'hypocrit', u'say']
[u'nurs', u'home', u'ill', u'bird']
[u'iceberg', u'draw', u'crowd']
[u'ocean', u'rescu', u'boost', u'bermagui', u'coastal', u'patrol']
[u'offic', u'workplac', u'servic', u'open', u'region']
[u'offic', u'dispers', u'group', u'fake', u'polic', u'protest']
[u'medic', u'equip', u'risk', u'patient', u'care']
[u'orang', u'capit', u'work', u'program', u'approv']
[u'outcri', u'french', u'socialist', u'blast', u'black', u'footbal']
[u'pair', u'question', u'morwel', u'death']
[u'pakistan', u'suspend', u'report', u'chucker']
[u'pelosi', u'win', u'vote', u'speaker']
[u'say', u'need', u'speak', u'debus']
[u'rais', u'hick', u'case', u'bush']
[u'polic', u'minist', u'sack', u'fail', u'address']
[u'polic', u'defend', u'tight', u'secur', u'despit', u'crowd']
[u'polic', u'spark', u'fear', u'leav', u'ramsi']
[u'polic', u'offic', u'lay', u'rest', u'fatal', u'duti']
[u'polic', u'probe', u'read', u'death', u'threat']
[u'polic', u'reveal', u'imag', u'want', u'child']
[u'polic', u'search', u'fraudul', u'psychic']
[u'polic', u'monitor', u'schooli', u'cctv']
[u'polic', u'union', u'boss', u'summon', u'palm', u'report']
[u'pont', u'back', u'selector', u'faith', u'hand']
[u'promis', u'tenni', u'talent', u'alic']
[u'properti', u'clean', u'dust']
[u'propos', u'dubbo', u'polic']
[u'proserpin', u'sugar', u'worker', u'sweeten']
[u'protest', u'caus', u'disrupt', u'ahead', u'summit']
[u'push', u'marin', u'park', u'sanctuari', u'zone']
[u'push', u'boost', u'west', u'health', u'servic']
[u'racial', u'abus', u'problem', u'say', u'sutherland']
[u'rapist', u'jail', u'year']
[u'recycl', u'water', u'referendum', u'furphi']
[u'redback', u'like', u'face', u'england', u'test', u'line']
[u'religi', u'group', u'condemn', u'surrogaci', u'review']
[u'road', u'rage', u'murder', u'jail']
[u'rocki', u'hop', u'land', u'knockout', u'blow', u'irish']
[u'ruddock', u'agre', u'investig', u'hickss', u'health']
[u'rural', u'doctor', u'chief', u'stand']
[u'rural', u'doctor', u'work', u'feder', u'elect', u'plan']
[u'crop', u'extend']
[u'sale', u'poker', u'machin', u'outrag', u'green']
[u'passiv', u'smoke', u'law', u'protect', u'children']
[u'schooli', u'begin', u'celebr', u'earli']
[u'shipwreck', u'hold', u'secret', u'ancient', u'roman', u'sauc']
[u'shire', u'chief', u'back', u'push', u'aborigin']
[u'shire', u'appeal', u'feder', u'fund', u'snub']
[u'shop', u'plan', u'creat', u'main', u'street', u'fear']
[u'shortag', u'put', u'south', u'east', u'potato', u'demand']
[u'south', u'beach', u'fenc', u'plan', u'spark', u'object']
[u'stoner', u'tell', u'parliament', u'forest', u'hunt', u'concern']
[u'sudan', u'agre', u'peacekeep', u'darfur']
[u'sydney', u'pollut', u'scrutini']
[u'tait', u'boost', u'test', u'claim', u'explos', u'spell']
[u'talk', u'lift', u'live', u'sheep', u'export']
[u'tech', u'colleg', u'student']
[u'taxi', u'secur', u'boost', u'begin', u'tonight']
[u'technic', u'colleg', u'enrol']
[u'teen', u'brother', u'jail', u'coward', u'attack']
[u'think', u'tank', u'call', u'nation', u'daylight', u'save']
[u'tiger', u'take', u'inning', u'point']
[u'tobacco', u'compani', u'agre', u'pull', u'split', u'pack']
[u'tonga', u'confirm', u'dead', u'riot']
[u'tonga', u'death', u'toll', u'rise', u'downer', u'offer', u'aust']
[u'tonga', u'declar', u'state', u'emerg']
[u'tongan', u'capit', u'alert', u'riot']
[u'tongan', u'govt', u'fear', u'violenc']
[u'tongan', u'appeal', u'calm']
[u'tongan', u'democraci', u'leader', u'hail', u'riot', u'victori']
[u'tonga', u'prepar', u'violenc']
[u'lag', u'handl', u'growth', u'report']
[u'tourism', u'push', u'highlight', u'great', u'bunya', u'drive']
[u'townsvill', u'sentenc', u'child', u'offenc']
[u'troop', u'head', u'tonga']
[u'union', u'defend', u'effort', u'risdon', u'offic']
[u'cathol', u'church', u'fund', u'abus', u'studi']
[u'economist', u'milton', u'friedman', u'die']
[u'senat', u'support', u'india', u'nuclear', u'deal']
[u'soldier', u'get', u'life', u'rape', u'murder', u'iraqi']
[u'soldier', u'jail', u'life']
[u'soldier', u'jail', u'rape', u'murder', u'iraq']
[u'tornado', u'kill', u'seven']
[u'vandal', u'prompt', u'secur', u'hattah', u'lake', u'pump']
[u'labor', u'promis', u'nation', u'park']
[u'nation', u'await', u'prefer', u'alloc']
[u'victori', u'seal', u'roar']
[u'victori', u'roar']
[u'warn', u'offer', u'bloodi', u'hell', u'challeng', u'barmi', u'armi']
[u'warnock', u'sympathi', u'wound', u'kenni']
[u'water', u'deliveri', u'chang', u'afoot']
[u'watson', u'doubt', u'ash', u'open']
[u'webb', u'chase', u'lead', u'florida']
[u'welfar', u'group', u'say', u'jail', u'problem']
[u'know', u'build', u'facil']
[u'westpac', u'drop', u'plan', u'send', u'oversea']
[u'wollongong', u'win', u'commonwealth', u'univers']
[u'work', u'move', u'ahead', u'health', u'risk', u'studi']
[u'wulguru', u'fire', u'spark', u'safeti', u'warn']
[u'reward', u'offer', u'teen', u'murder', u'case']
[u'fear', u'dead', u'plane', u'crash', u'papua']
[u'rugbi', u'world', u'date', u'announc']
[u'adelaid', u'bulleen', u'secur', u'win']
[u'offic', u'tonga']
[u'apec', u'leader', u'tackl', u'trade', u'deadlock']
[u'aust', u'troop', u'tonga']
[u'australian', u'flee', u'tonga']
[u'australia', u'send', u'troop', u'tonga']
[u'aust', u'scientist', u'mission', u'lose', u'nasa', u'craft']
[u'aust', u'troop', u'arriv', u'tonga']
[u'veto', u'wheat', u'export']
[u'bayley', u'edg', u'world']
[u'bell', u'collingwood', u'form', u'redback']
[u'bell', u'final', u'toll', u'england', u'tour', u'centuri']
[u'bendigo', u'spill', u'clean', u'begin']
[u'bono', u'ralli', u'poverti', u'histori', u'crowd']
[u'bono', u'urg', u'howard', u'increas']
[u'brack', u'use', u'campaign', u'lobbi', u'feder']
[u'breaker', u'spirit']
[u'british', u'museum', u'return', u'aborigin', u'remain']
[u'british', u'museum', u'return', u'indigen', u'remain']
[u'cannavaro', u'european', u'honour', u'spanish', u'press']
[u'cannon', u'ireland', u'test']
[u'china', u'anti', u'aussi', u'rant', u'comment', u'quit']
[u'clark', u'get', u'ash']
[u'climat', u'chang', u'confer', u'agre', u'kyoto', u'review']
[u'climat', u'chang', u'agenda']
[u'closer']
[u'closer']
[u'clumsi', u'policeman', u'stun']
[u'commission', u'want', u'tougher', u'law', u'deal', u'bail']
[u'communiti', u'group', u'hold', u'ralli', u'save', u'librari']
[u'coonan', u'flag', u'shake', u'journal', u'internet']
[u'costello', u'say', u'success', u'despit', u'street']
[u'costello', u'welcom', u'deleg']
[u'crew', u'slow', u'blue', u'mountain', u'fire']
[u'dreamworld', u'irwin', u'honour', u'award']
[u'dutch', u'govt', u'back', u'burqa']
[u'dutch', u'muslim', u'unhappi', u'propos', u'burqa']
[u'threaten', u'legal', u'action', u'fanat']
[u'england', u'player', u'offer', u'million', u'world']
[u'extend', u'tonga', u'deploy', u'unlik', u'defenc']
[u'famili', u'plan', u'group', u'welcom', u'declin', u'abort']
[u'fatal', u'stab', u'darwin']
[u'fate', u'foreign', u'hostag', u'iraq', u'unclear']
[u'father', u'concern', u'hick', u'trial', u'uncertainti']
[u'destroy', u'gippsland', u'hous']
[u'firefight', u'battl', u'blue', u'mountain', u'blaze']
[u'firefight', u'burn', u'control', u'blue']
[u'threaten', u'unharvest', u'wheat', u'field']
[u'protest', u'arrest', u'violenc']
[u'protest', u'gather', u'melbourn']
[u'protest', u'turn', u'violent']
[u'summit', u'overshadow', u'protest']
[u'garden', u'clean', u'bushfir', u'prevent', u'plan']
[u'gilli', u'fire', u'warrior', u'victori']
[u'girl', u'coma', u'fatal', u'smash']
[u'global', u'energi', u'atop', u'agenda']
[u'glori', u'win', u'form']
[u'gronholm', u'avoid', u'carnag', u'stay']
[u'gronholm', u'lead', u'ralli', u'rossi', u'surviv']
[u'gunn', u'win', u'environment', u'award']
[u'harmison', u'doubt', u'ash', u'open']
[u'hostag', u'kill', u'free', u'iraq', u'hijack']
[u'howard', u'flag', u'carbon', u'trade', u'scheme', u'apec', u'summit']
[u'hubbl', u'find', u'dark', u'energi', u'young', u'univers']
[u'iemma', u'call', u'debnam', u'apologis']
[u'investig', u'fatal', u'road', u'accid', u'continu']
[u'iraq', u'situat', u'disast', u'say', u'blair']
[u'water', u'scrum']
[u'urg', u'strike', u'offic', u'return', u'work']
[u'irish', u'ground', u'ahead', u'wallabi', u'clash']
[u'italian', u'town', u'abuzz', u'ahead', u'tomkat', u'wed']
[u'kangaroo', u'lion', u'nation', u'tilt']
[u'kyoto', u'protocol', u'review']
[u'labor', u'back', u'tonga', u'deploy']
[u'labor', u'focus', u'elect', u'campaign']
[u'leadership', u'challeng', u'report', u'baseless', u'martin', u'say']
[u'leader', u'scott', u'make']
[u'liber', u'queri', u'staff', u'leav', u'damn', u'report']
[u'lion', u'desper', u'stuart']
[u'lock', u'train', u'station', u'wont', u'stop', u'crime', u'deputi', u'lord']
[u'mear', u'break', u'time', u'trial', u'world', u'record']
[u'meet', u'focus', u'doctor', u'shortag', u'rural', u'area']
[u'mine', u'approv', u'process', u'flaw']
[u'seek', u'explan', u'petr', u'death', u'report', u'delay']
[u'museum', u'plan', u'remain', u'anger', u'aborigin', u'group']
[u'nadal', u'feder', u'master', u'showdown']
[u'media', u'shake', u'tradit', u'journal']
[u'media', u'shake', u'tradit', u'journal', u'coonan']
[u'night', u'sleep', u'gaug', u'harmison', u'injuri', u'situat']
[u'definit', u'timelin', u'basslink', u'sale']
[u'norway', u'push', u'cluster', u'bomb']
[u'govt', u'want', u'safe', u'cigarett', u'mandatori']
[u'liber', u'frontbench', u'lose', u'preselect']
[u'environ', u'allianc', u'advoc', u'sustain']
[u'open']
[u'open']
[u'palerang', u'council', u'introduc', u'water', u'conserv']
[u'panesar', u'ash', u'berth', u'certainti', u'fletcher']
[u'parent', u'bash', u'victim', u'welcom', u'attack', u'jail']
[u'pic', u'respons', u'interest', u'debnam', u'say']
[u'pitt', u'back', u'bodyguard', u'racist']
[u'attack', u'star', u'poverti', u'critic']
[u'commit', u'aust', u'relationship']
[u'move', u'repair', u'aust', u'diplomat', u'relat']
[u'polic', u'investig', u'brisban', u'assault']
[u'polic', u'suspect', u'murder', u'find', u'burn', u'bodi']
[u'plate', u'driver', u'kill', u'head', u'crash']
[u'pressur', u'continu', u'mount', u'debnam']
[u'prison', u'lock', u'guard', u'continu', u'strike']
[u'privat', u'hospit', u'record', u'public']
[u'protest', u'gather', u'summit']
[u'protestor', u'overshadow', u'summit']
[u'psychiatrist', u'defend', u'electr', u'shock', u'treatment']
[u'quiet', u'start', u'schooli', u'festiv']
[u'result', u'tan', u'survey', u'alarm', u'cancer']
[u'risdon', u'jail', u'staff', u'tri', u'hard', u'improv', u'thing']
[u'search', u'iraq', u'hostag', u'continu']
[u'shark', u'get', u'pride']
[u'shark', u'give', u'fan', u'nostalgia']
[u'entri', u'despit', u'wine', u'glut']
[u'sorenstam', u'fail', u'championship']
[u'stutter', u'green', u'hold', u'australian', u'open', u'lead']
[u'sudan', u'welcom', u'help', u'darfur']
[u'sunshin', u'coast', u'smash', u'kill']
[u'tait', u'dizzi', u'strike', u'england']
[u'govt', u'quiet', u'bryant', u'claim']
[u'toni', u'jone', u'speak', u'bono']
[u'trio', u'share', u'australian', u'open', u'lead']
[u'troop', u'begin', u'arriv', u'riot', u'tear', u'tonga']
[u'charg', u'high', u'speed', u'chase']
[u'univers', u'urg', u'tackl', u'extrem']
[u'uncertainti', u'hickss', u'trial', u'date', u'concern', u'father']
[u'panel', u'condemn', u'north', u'korea', u'human', u'right', u'abus']
[u'resolut', u'urg', u'israel', u'withdraw', u'gaza']
[u'restaur', u'serv', u'burger']
[u'liber', u'want', u'independ', u'review', u'game']
[u'wale', u'thump', u'canada']
[u'watson', u'martyn', u'wait', u'injuri', u'news']
[u'watson', u'optimist', u'face', u'england']
[u'watson', u'stay', u'optimist', u'face', u'england']
[u'rage', u'jail']
[u'wildcat', u'consolid', u'spot']
[u'women', u'boxer', u'commonwealth', u'game']
[u'opposit', u'vow', u'reopen', u'librari', u'elect']
[u'investig', u'violent', u'protest']
[u'list', u'star', u'celebr', u'celebr', u'wed']
[u'black', u'cruis', u'past', u'franc']
[u'annan', u'warn', u'biotech', u'danger']
[u'apec', u'leader', u'urg', u'action', u'north', u'korea']
[u'apec', u'talk', u'reignit', u'world', u'trade', u'debat']
[u'appar', u'murder', u'suicid', u'probe', u'townsvill']
[u'applebi', u'launch', u'charg', u'royal', u'sydney']
[u'associ', u'highlight', u'benefit', u'breastfe']
[u'aussi', u'brace', u'irish', u'soak']
[u'australian', u'expect', u'evacu', u'tonga']
[u'australian', u'evacu', u'tonga']
[u'australia', u'open', u'world']
[u'basso', u'agre', u'test']
[u'bathurst', u'factori', u'expect', u'smoulder']
[u'beat', u'brit', u'kangaroo', u'need', u'better']
[u'beatti', u'return', u'oversea', u'trade', u'trip']
[u'beatti', u'say', u'nuttal', u'resign']
[u'beatti', u'urg', u'beazley', u'leadership', u'specul']
[u'bjorkman', u'mirnyi', u'master', u'doubl']
[u'blair', u'musharraf', u'hold', u'secur', u'talk']
[u'blue', u'mountain', u'fire', u'contain']
[u'boomer', u'bounc']
[u'brack', u'baillieu', u'unveil', u'polici', u'margin']
[u'britain', u'deni', u'blair', u'iraq', u'disast', u'comment']
[u'bryant', u'prison', u'facil', u'holiday', u'camp']
[u'bullet', u'overpow', u'wildcat']
[u'bullimor', u'plan', u'stop', u'albani', u'sail']
[u'bushfir', u'threaten', u'home']
[u'bush', u'work', u'pressur', u'north', u'korea']
[u'strip', u'veto', u'power']
[u'campbel', u'push', u'kyoto', u'plan']
[u'canadian', u'indian', u'group', u'settl', u'land', u'claim']
[u'canberra', u'busi', u'complain', u'rat', u'rise']
[u'canberra', u'resid', u'embrac', u'green', u'power']
[u'capit', u'triumph', u'canberra', u'derbi']
[u'cctv', u'camera', u'deter', u'troublemak', u'minist', u'say']
[u'analysi', u'find', u'iranian', u'nuclear', u'weapon']
[u'closer']
[u'closer']
[u'clutter', u'leaderboard', u'australian', u'open']
[u'cosmonaut', u'orbit', u'golf']
[u'crew', u'struggl', u'contain', u'blue', u'mountain', u'blaze']
[u'cruis', u'marri', u'holm', u'italian', u'castl']
[u'debnam', u'announc', u'reshuffl', u'liber', u'frontbench']
[u'downer', u'expect', u'week', u'wait', u'releas']
[u'dravid', u'need', u'time', u'say', u'ganguli']
[u'congo', u'poll', u'outcom', u'challeng']
[u'england', u'draw', u'redback']
[u'england', u'strengthen', u'lead', u'adelaid', u'oval']
[u'england', u'stumbl', u'victori', u'springbok']
[u'eritrea', u'deni', u'arm', u'somali', u'milit']
[u'triumph', u'spite', u'clash']
[u'feder', u'crush', u'blake', u'master']
[u'feder', u'face', u'blake', u'master', u'final']
[u'final', u'round', u'begin', u'royal', u'sydney']
[u'firefight', u'battl', u'blaze', u'kangaroo']
[u'group', u'evacu', u'tonga']
[u'flood', u'ravag', u'horn', u'africa']
[u'agre', u'increas', u'invest', u'energi', u'sector']
[u'deleg', u'agre', u'energi', u'invest']
[u'discuss', u'energi', u'suppli', u'secur']
[u'fail', u'tackl', u'poverti']
[u'protest', u'quiet', u'polic', u'stand']
[u'gore', u'pick', u'australian', u'climat', u'crusad']
[u'gore', u'train', u'aussi', u'climat', u'messeng']
[u'govt', u'arrang', u'tonga', u'evacu']
[u'govt', u'launch', u'skin', u'cancer', u'awar', u'campaign']
[u'green', u'stand', u'remain', u'gunn', u'protest']
[u'gronholm', u'win', u'ralli', u'zealand']
[u'harrington', u'tame', u'tiger', u'miracl', u'play']
[u'howard', u'disagre', u'blair', u'iraq', u'comment']
[u'howard', u'disput', u'blair', u'iraq', u'comment']
[u'reform', u'foreign', u'agenda']
[u'indonesian', u'muslim', u'protest', u'bush', u'visit']
[u'indon', u'fear', u'terror', u'threat']
[u'inuit', u'slaughter', u'whale', u'trap']
[u'jaqu', u'continu', u'form']
[u'kangaroo', u'past', u'lion']
[u'kilmor', u'hous', u'suspici']
[u'kyoto', u'debat', u'pointless', u'campbel']
[u'labor', u'vow', u'rspca']
[u'liber', u'pledg', u'fight', u'drug']
[u'lord', u'danc', u'leav', u'hospit']
[u'dead', u'sydney', u'street']
[u'condit', u'hotel', u'stab']
[u'kill', u'ultra', u'light', u'plane', u'crash']
[u'marco', u'launch', u'worthless', u'priceless', u'jewelleri', u'line']
[u'marin', u'down', u'knight']
[u'martin', u'support', u'labor', u'caucus', u'presid', u'say']
[u'matilda', u'japan']
[u'million', u'afghan', u'hungri']
[u'minist', u'appal', u'killer', u'prescrib']
[u'miss', u'yachtsman', u'bullimor', u'phone', u'home']
[u'want', u'site', u'litchfield', u'shire', u'wast']
[u'mother', u'daughter', u'escap', u'destroy', u'home']
[u'museum', u'shouldnt', u'test', u'aborigin', u'remain', u'putt']
[u'muslim', u'surf', u'star', u'turf']
[u'skin', u'cancer', u'campaign', u'launch']
[u'korean', u'nuclear', u'program', u'final', u'day', u'agenda']
[u'plan', u'oust', u'beazley', u'swan', u'say']
[u'launch', u'nurs', u'recruit', u'drive']
[u'opposit', u'accus', u'govt', u'delay', u'tunnel']
[u'ochoa', u'webb', u'contest', u'lpga', u'money', u'titl']
[u'opera', u'hous', u'retrospect', u'honour', u'sculptor', u'bass']
[u'oxfam', u'urg', u'countri', u'increas']
[u'pair', u'arrest', u'alleg', u'cannabi', u'deal']
[u'pakistan', u'steadi', u'progress', u'multan']
[u'palermo', u'slip', u'milan', u'woe', u'continu']
[u'palestinian', u'form', u'human', u'shield', u'protect']
[u'perth', u'desalin', u'plant', u'offici', u'open']
[u'plane', u'crash']
[u'polic', u'arrest', u'protest']
[u'polic', u'boost', u'number', u'violenc']
[u'polic', u'commend', u'race', u'behaviour']
[u'polic', u'pursuit', u'pizza', u'robber']
[u'polic', u'investig', u'townsvill', u'gold', u'coast', u'death']
[u'polic', u'readi', u'renew', u'protest']
[u'polic', u'warn', u'race', u'crowd']
[u'elect', u'violenc', u'flare', u'madagascar']
[u'retail', u'share', u'cost']
[u'road', u'close', u'burn', u'continu', u'blue']
[u'rocker', u'doherti', u'arrest', u'drug', u'suspicion']
[u'rooney', u'doubl', u'keep', u'unit']
[u'rural', u'doctor', u'choos', u'presid']
[u'govt', u'promis', u'heed', u'epa', u'advic', u'foundri']
[u'schooli', u'parti', u'surfer', u'paradis']
[u'schwarzer', u'stand', u'firm', u'liverpool']
[u'senden', u'surg', u'australian', u'open']
[u'senden', u'surg', u'victori', u'royal', u'sydney']
[u'sevilla', u'madrid', u'continu', u'climb']
[u'shoe', u'lay', u'memori', u'road', u'crash', u'victim']
[u'skin', u'cancer', u'campaign', u'target', u'teen']
[u'spirit', u'extract', u'reveng', u'breaker']
[u'sudan', u'accus', u'attack', u'darfur']
[u'suicid', u'bomber', u'kill', u'iraq']
[u'swan', u'dismiss', u'leadership', u'specul']
[u'sydney', u'prison', u'guard', u'return', u'work']
[u'sydney', u'prison', u'guard', u'stay', u'strike']
[u'sale', u'surpass', u'expect']
[u'share', u'cost']
[u'broadcast', u'paterson', u'retir']
[u'tenni', u'archeri', u'commonwealth', u'game']
[u'thorp', u'close', u'decis', u'futur']
[u'tiger', u'crumbl', u'blue']
[u'tonga', u'evacue', u'arriv', u'auckland']
[u'tongan', u'capit', u'calm', u'downer', u'say']
[u'tongan', u'refus', u'resign']
[u'tongan', u'refus', u'step']
[u'tongan', u'democraci', u'movement', u'slam', u'intervent']
[u'tsunami', u'victim', u'riot', u'shelter']
[u'pakistan', u'strike', u'counter', u'terror', u'deal']
[u'vet', u'confer', u'focus', u'anim', u'behaviour']
[u'road', u'accid', u'claim', u'live']
[u'firefight', u'resourc', u'stretch', u'limit']
[u'watson', u'test', u'injur', u'hamstr']
[u'wicket', u'scarc', u'england', u'bowler']
[u'face', u'court', u'martial', u'alleg', u'philippin']
[u'transport', u'election', u'iemma']
[u'abetz', u'say', u'polit', u'agenda', u'electrician']
[u'black', u'wari', u'wale', u'threat']
[u'pledg', u'water', u'recycl', u'plant', u'leongatha']
[u'apec', u'leader', u'push', u'action', u'north', u'korea']
[u'aquif', u'drill', u'worri', u'farmer']
[u'armidal', u'farmer', u'feel', u'frost', u'impact']
[u'atsb', u'wont', u'investig', u'light', u'plane', u'crash']
[u'australia', u'watson', u'time']
[u'aust', u'troop', u'command', u'say', u'tongan', u'stabil']
[u'babi', u'bear', u'addict', u'doctor', u'say']
[u'burn', u'blue', u'mountain', u'continu']
[u'baillieu', u'unveil', u'campaign']
[u'bank', u'resourc', u'stock', u'drag', u'market', u'lower']
[u'beatti', u'vow', u'eyebal', u'minist', u'ethic']
[u'beazley', u'apologis', u'rove', u'gaff']
[u'beazley', u'back', u'murdoch', u'critic', u'broadband']
[u'beazley', u'leadership', u'fester', u'sore']
[u'beazley', u'sorri', u'rove', u'gaff']
[u'beazley', u'sorri', u'rove', u'gaff']
[u'bendigo', u'host', u'wnbl', u'team']
[u'blackburn', u'boss', u'warn', u'neill', u'futur']
[u'blair', u'visit', u'british', u'troop', u'afghanistan']
[u'bono', u'costello', u'discuss', u'foreign', u'boost']
[u'bono', u'foreign']
[u'brazilian', u'missionari', u'kill', u'timor', u'unrest']
[u'brown', u'urg', u'costello', u'consid', u'econom']
[u'brown', u'voic', u'support', u'log', u'protest']
[u'bryant', u'rumour', u'prompt', u'call', u'confidenti']
[u'bush', u'prais', u'indonesia']
[u'bush', u'meet', u'yudhoyono', u'amid', u'tight', u'secur']
[u'busi', u'chamber', u'play', u'fair', u'employ', u'scheme']
[u'busi', u'offer', u'help', u'bakeri', u'worker']
[u'campaign', u'underlin', u'workplac', u'asbesto', u'danger']
[u'capel', u'recognis', u'plant', u'protect']
[u'carbon', u'tax', u'damag', u'coal', u'industri']
[u'carr', u'spend', u'guidelin', u'iemma']
[u'cash', u'seven', u'look', u'media']
[u'chaff', u'cart', u'triall', u'weed', u'fight']
[u'channel', u'seven', u'enter', u'trade', u'halt']
[u'chile', u'barossa', u'consid', u'cultur', u'econom']
[u'citi', u'folk', u'urg', u'sponsor']
[u'closer']
[u'closer']
[u'cole', u'myer', u'job', u'cut', u'necessari']
[u'cole', u'myer', u'brand']
[u'connolli', u'admit', u'outsmart', u'irish']
[u'coron', u'report', u'plate', u'driver', u'fatal', u'crash']
[u'costello', u'discuss', u'bono']
[u'council', u'consid', u'iemma', u'deleg', u'meet']
[u'council', u'tourism', u'manag', u'break', u'hill', u'role']
[u'councillor', u'threaten', u'walk']
[u'council', u'local', u'govern', u'review']
[u'countri', u'protest', u'chang', u'govt']
[u'court', u'adjourn', u'appeal', u'griffith', u'wooli', u'plan']
[u'court', u'jail', u'woman', u'child', u'shake']
[u'crew', u'contain', u'bushfir']
[u'crew', u'fight', u'south', u'east', u'bushfir']
[u'danc', u'penguin', u'jam', u'bond', u'offic']
[u'davydenko', u'safin', u'lead', u'russia', u'davi', u'final']
[u'death', u'trigger', u'polic', u'hunt', u'driver']
[u'debnam', u'refus', u'apologis']
[u'demonstr', u'indonesia', u'bush', u'arriv']
[u'demount', u'short', u'term', u'solut', u'alic']
[u'desalin', u'plant', u'wont', u'solv', u'perth', u'water', u'crisi']
[u'drought', u'support', u'packag', u'extend']
[u'elector', u'chief', u'urg', u'probe', u'nation', u'mildura']
[u'timor', u'investig', u'brazilian', u'missionari', u'death']
[u'urg', u'vote', u'independ']
[u'farmer', u'look', u'cooper', u'protect']
[u'farmer', u'seek', u'bigger', u'slice', u'budget']
[u'firefight', u'battl', u'bathurst', u'forb', u'area', u'bushfir']
[u'firefight', u'contain', u'melbourn', u'scrub']
[u'fish', u'licenc', u'deadlin', u'loom']
[u'flight', u'tonga', u'arriv', u'aust']
[u'foreign', u'expert', u'scrutinis', u'launceston', u'flood']
[u'foskey', u'discard', u'regret', u'environ', u'polici']
[u'freightlink', u'reject', u'soar', u'debt', u'claim']
[u'frost', u'halv', u'crop', u'product']
[u'function', u'food', u'help', u'prevent', u'diseas']
[u'protest', u'punish', u'costello']
[u'task', u'forc', u'track', u'violent', u'protest']
[u'gayl', u'lead', u'west', u'indi', u'fightback', u'second', u'test']
[u'gid', u'reject', u'amend', u'bryant']
[u'gold', u'coast', u'face', u'court', u'card', u'skim', u'charg']
[u'govern', u'ask', u'start', u'energi', u'save', u'target']
[u'govern', u'urg', u'boost', u'incent', u'region']
[u'govt', u'look', u'pacif', u'highway', u'critic']
[u'grain', u'audit', u'consider']
[u'green', u'group', u'back', u'carbon', u'plan']
[u'gregan', u'unconcern', u'wallabi', u'form']
[u'grower', u'appl', u'pear', u'trial']
[u'gryll', u'question', u'govt', u'handl', u'price']
[u'gudjohnsen', u'doubl', u'put', u'barca', u'pole']
[u'gunman', u'take', u'pupil', u'hostag', u'german', u'school']
[u'gwydir', u'mayor', u'seek', u'nation', u'preselect']
[u'hamil', u'plagu', u'injuri', u'curs']
[u'howard', u'pay', u'respect', u'long']
[u'howard', u'visit', u'long']
[u'howard', u'visit', u'long']
[u'indigen', u'scheme', u'promot', u'good', u'eat']
[u'injuri', u'cloud', u'hang', u'victori', u'trio']
[u'innov', u'repair', u'solut', u'win', u'albani', u'port']
[u'inter', u'edg', u'reggina', u'roma', u'seventh', u'heaven']
[u'intern', u'race', u'put', u'perth']
[u'investig', u'sabotag', u'bendigo', u'depot']
[u'irish', u'smarter', u'rest', u'odriscol']
[u'jet', u'drop', u'ladder', u'place', u'defeat']
[u'jetti', u'committe', u'beat', u'meet', u'outcom']
[u'jone', u'deni', u'blood', u'england', u'wicket', u'keeper']
[u'joyc', u'wont', u'contest', u'flynn']
[u'kakadu', u'tour', u'guid', u'train', u'cours']
[u'kangaroo', u'blaze', u'control']
[u'kiwi', u'target', u'individu', u'kidwel']
[u'labor', u'look', u'chang', u'shepparton', u'preferenc']
[u'langer', u'readi', u'short', u'pitch', u'barrag']
[u'lead', u'banker', u'agre', u'inflat', u'risk']
[u'liber', u'promis', u'state', u'wide', u'rainwat', u'tank', u'rebat']
[u'local', u'govt', u'group', u'await', u'smoke', u'regul']
[u'impact', u'margin']
[u'murder', u'suicid', u'face', u'child', u'steal']
[u'jail', u'sexual', u'abus', u'daughter']
[u'martin', u'vulner', u'leadership', u'challeng']
[u'massag', u'eas', u'infant', u'sleep', u'problem', u'research']
[u'mcgrath', u'unfaz', u'pace', u'debat']
[u'mear', u'look', u'beij']
[u'meekatharra', u'school', u'reloc']
[u'west', u'theft', u'trigger', u'polic', u'concern']
[u'militari', u'generat', u'meet', u'share', u'knowledg']
[u'minchin', u'welcom', u'demand', u'share']
[u'montoya', u'nascar', u'debut']
[u'job', u'save', u'truscott', u'sale']
[u'motorcycl', u'racer', u'die', u'track', u'crash']
[u'murgon', u'council', u'sell', u'compost', u'busi']
[u'napthin', u'oppos', u'nation', u'park', u'plan']
[u'nasdaq', u'target']
[u'telstra', u'share', u'surg']
[u'injuri', u'sunland', u'train', u'cane', u'tractor', u'crash']
[u'oliv', u'industri', u'ponder', u'valu', u'invest', u'scheme']
[u'pair', u'surviv', u'wateri', u'drive', u'lake']
[u'parent', u'criticis', u'student', u'parti', u'turn', u'ugli']
[u'parent', u'help', u'teen', u'road', u'toll', u'beatti']
[u'peal', u'farm', u'featur', u'tourism', u'award']
[u'perform', u'eas', u'teacher', u'shortag']
[u'perth', u'suburb', u'face', u'dieback']
[u'pilot', u'prais', u'light', u'plane', u'crash']
[u'plane', u'bomb', u'plot', u'uncov', u'germani']
[u'open', u'bluescop', u'steel', u'factori', u'vietnam']
[u'visit', u'long']
[u'offici', u'investig', u'moti']
[u'polic', u'warn', u'schooli', u'arrest']
[u'polic', u'await', u'ballist', u'test', u'townsvill', u'murder']
[u'polic', u'charg', u'woman', u'arm', u'robberi']
[u'polic', u'charg', u'woman', u'stab', u'death']
[u'polic', u'continu', u'high', u'visibl', u'campaign']
[u'polic', u'investig', u'bomaderri', u'death']
[u'polic', u'investig', u'illeg', u'dump']
[u'polic', u'oper', u'enforc']
[u'polic', u'warn', u'bail', u'alleg', u'protest']
[u'polic', u'warn', u'gravel', u'road', u'danger']
[u'poll', u'predict', u'labor', u'elect']
[u'poultri', u'farm', u'boss', u'back']
[u'princess', u'mari', u'expect', u'week']
[u'privat', u'school', u'overpay', u'green']
[u'privat', u'school', u'enjoy', u'govt', u'fund']
[u'probe', u'launch', u'rais', u'borumba', u'level']
[u'public', u'ask', u'fruit', u'awar']
[u'public', u'urg', u'play', u'monitor', u'lake', u'eel']
[u'public', u'warn', u'pilbara', u'bushfir']
[u'malnourish', u'stock', u'rspca']
[u'pyne', u'hint', u'prosecut', u'sale']
[u'beef', u'industri', u'boost', u'export']
[u'quiet', u'revolut', u'green', u'build']
[u'quiet', u'start', u'airli', u'beach', u'schooli']
[u'rangeland', u'pastoralist', u'join', u'ecolog']
[u'rayner', u'brief', u'oper', u'commission', u'say']
[u'rescu', u'chopper', u'find', u'miss', u'angler']
[u'resign', u'breach', u'talk', u'minist']
[u'retir', u'dever', u'link', u'bronco']
[u'retir', u'see', u'possibl', u'solut', u'skill']
[u'right', u'group', u'claim', u'thaksin', u'issu', u'licenc', u'kill']
[u'river', u'murray', u'irrig', u'form', u'drought']
[u'romario', u'arriv', u'unit', u'stint']
[u'romario', u'adelaid']
[u'rural', u'colleg', u'recognis', u'train', u'effort']
[u'rural', u'doctor', u'chief', u'want', u'minimum', u'health', u'servic']
[u'firefight', u'help', u'tonga', u'riot', u'aftermath']
[u'african', u'want', u'make', u'houdini', u'style', u'prison']
[u'school', u'hostag', u'taker', u'dead', u'germani']
[u'scientist', u'hope', u'endang', u'parrot', u'speci']
[u'seven', u'flag', u'media', u'buy']
[u'seven', u'form', u'media', u'joint', u'ventur']
[u'seven', u'form', u'media', u'joint', u'ventur']
[u'sexual', u'predat', u'get', u'suspend', u'sentenc']
[u'sheep', u'cruelti', u'earn', u'fine']
[u'smaller', u'crowd', u'arrest', u'schooli']
[u'murrumbidge', u'valley', u'channel', u'close']
[u'strong', u'earli', u'demand', u'share']
[u'suspect', u'influenza', u'case', u'investig']
[u'swim', u'australia', u'head', u'coach', u'alan', u'thompson']
[u'syria', u'seek', u'pullout', u'timet']
[u'share', u'begin', u'trade']
[u'share', u'float', u'today']
[u'share', u'surg']
[u'tender', u'call', u'water', u'recycl', u'work']
[u'local', u'cost', u'climat', u'chang']
[u'thousand', u'join', u'bridg', u'celebr']
[u'thousand', u'meet', u'bendigo', u'part', u'swap', u'meet']
[u'tonga', u'commerci', u'flight', u'resum']
[u'tonga', u'evacue', u'arriv', u'sydney']
[u'tonga', u'intern', u'airport', u'open']
[u'tonga', u'intern', u'airport', u'reopen']
[u'tougher', u'control', u'seek', u'prevent', u'sheep', u'diseas']
[u'tripl', u'fatal', u'prompt', u'polic', u'warn', u'young']
[u'truck', u'crash', u'spark', u'chemic', u'clean']
[u'truck', u'industri', u'tri', u'turn', u'imag']
[u'union', u'canva', u'closur', u'worker']
[u'shelv', u'cours', u'plan']
[u'merger', u'creat', u'world', u'largest', u'copper', u'mine']
[u'leader', u'road']
[u'liber', u'gain', u'grind', u'poll']
[u'vietnam', u'open']
[u'violenc', u'shock', u'sunraysia', u'tongan']
[u'violent', u'protest', u'say', u'bono']
[u'volunt', u'firei', u'disillus']
[u'volunt', u'help', u'schooli', u'track']
[u'volunt', u'help', u'montagu', u'tour', u'tourism']
[u'water', u'debat']
[u'urg', u'heed', u'commod', u'warn']
[u'weekend', u'fire', u'emerg', u'servic', u'busi']
[u'wheat', u'grower', u'consult', u'chang']
[u'wind', u'farm', u'oppon', u'farm', u'dont', u'need']
[u'wing', u'fault', u'caus', u'fatal', u'bathurst', u'crash']
[u'woman', u'face', u'court', u'alleg', u'abus', u'femal']
[u'work', u'begin', u'soon', u'jail', u'rehab', u'program']
[u'world', u'champ', u'crucial', u'thorp', u'thompson']
[u'world', u'rank', u'tenni', u'player', u'perform', u'alic']
[u'young', u'peopl', u'drive', u'habit', u'survey', u'show']
[u'firefight', u'battl', u'blaze']
[u'abbott', u'flag', u'cervic', u'cancer', u'vaccin', u'program']
[u'abney', u'star', u'round']
[u'adelaid', u'unit', u'asian', u'champion', u'leagu', u'berth']
[u'alleg', u'violent', u'protest', u'deni', u'bail']
[u'allenbi', u'criticis', u'unfair', u'master']
[u'angri', u'farmer', u'grazier', u'descend', u'melb']
[u'arsenal', u'lose', u'galla', u'thigh', u'injuri']
[u'arson', u'suspect', u'sport', u'shed', u'blaze']
[u'atsb', u'probe', u'servic', u'histori', u'crash', u'plane']
[u'award', u'recognis', u'esper', u'indigen', u'tourism']
[u'baillieu', u'pledg', u'increas', u'polic', u'number']
[u'barg', u'carri', u'philippin', u'spill', u'debri', u'sink']
[u'beaconsfield', u'resum', u'limit', u'oper']
[u'beatti', u'say', u'nuclear', u'energi', u'crazi', u'aust']
[u'beatti', u'urg', u'consid', u'council', u'recycl', u'water']
[u'bell', u'doubt', u'gabba', u'test']
[u'biki', u'anti', u'fortif', u'challeng']
[u'blackman', u'alic', u'achiev', u'record']
[u'blaze', u'like', u'claim', u'north', u'ballarat', u'hous']
[u'blue', u'mountain', u'resid', u'prepar', u'bushfir']
[u'blue', u'mountain', u'resid', u'warn', u'risk']
[u'bosch', u'pacifica']
[u'brack', u'pledg', u'neighbourhood', u'centr']
[u'bullimor', u'deni', u'radio', u'failur', u'stunt']
[u'bullimor', u'dock', u'albani']
[u'bullimor', u'dock']
[u'bullimor', u'say', u'accid', u'prone', u'reput', u'unfair']
[u'bullimor', u'say', u'rescu', u'insur', u'unnecessari']
[u'bush', u'prais', u'indonesia']
[u'fast', u'track', u'highway', u'upgrad']
[u'campbel', u'accus', u'nuclear', u'oppon']
[u'carpent', u'set', u'peel', u'elect', u'date']
[u'central', u'gippsland', u'face', u'tougher', u'water', u'restrict']
[u'central', u'defi', u'popul', u'drift']
[u'cervic', u'cancer', u'vaccin', u'manufactur', u'cut', u'price']
[u'cessnock', u'dog', u'face', u'final', u'rule', u'futur']
[u'claim', u'aust', u'stifl', u'tongan', u'polit', u'reform']
[u'closer']
[u'closer']
[u'communiti', u'farewel', u'longreach', u'preschool']
[u'compani', u'offer', u'incent', u'encourag', u'trucki']
[u'coonambl', u'seek', u'commit']
[u'council', u'await', u'intersect', u'upgrad', u'report']
[u'council', u'seek', u'blackbutt', u'water', u'restrict', u'answer']
[u'council', u'urg', u'follow', u'lead', u'water']
[u'countri', u'agre', u'build', u'fusion', u'power', u'reactor']
[u'court', u'hear', u'murder', u'gambl', u'problem']
[u'court', u'hear', u'record', u'rayner', u'convers']
[u'crayfish', u'perform', u'hump', u'ritual', u'studi']
[u'crew', u'contain', u'near', u'adelaid']
[u'crime', u'forc', u'kalpowar', u'station', u'camp', u'lockout']
[u'custom', u'power', u'lightn']
[u'debnam', u'fail', u'produc', u'evid', u'debus']
[u'debnam', u'rash', u'action', u'fuel', u'poll', u'slump', u'iemma']
[u'devil', u'send', u'facial', u'tumour']
[u'ranger', u'patrol', u'indigen', u'communiti']
[u'drought', u'dri', u'wilcannia', u'water']
[u'drought', u'restrict', u'snowi', u'flush']
[u'drought', u'bring', u'live', u'export', u'trade', u'growth']
[u'farmer', u'assist', u'requir', u'rethink', u'expert', u'say']
[u'criticis', u'nuclear', u'energi', u'report']
[u'etsa', u'crew', u'work', u'storm', u'black', u'out']
[u'extens']
[u'farmer', u'welcom', u'better', u'expect', u'grain', u'result']
[u'fiji', u'judg', u'declar', u'rabuka', u'mistrial']
[u'fiji', u'militari', u'issu', u'demand', u'report']
[u'firefight', u'battl', u'blaze', u'condit']
[u'firefight', u'brace', u'harsh', u'condit']
[u'firefight', u'return', u'home', u'bushfir', u'threat', u'eas']
[u'firefight', u'water', u'bomb', u'blue', u'mountain', u'blaze']
[u'forc', u'closur', u'hume', u'highway', u'section']
[u'threat', u'blue', u'mountain', u'resid']
[u'marin', u'engin', u'degre', u'launch']
[u'forc', u'polic', u'transfer', u'prompt', u'resign']
[u'labor', u'norm', u'foster', u'die']
[u'fund', u'like', u'delay', u'pool']
[u'fund', u'offer', u'short', u'term', u'lifelin', u'health']
[u'fund', u'extend', u'school', u'base', u'rural', u'program']
[u'futur', u'risk']
[u'gilchrist', u'confid', u'despit', u'watson', u'withdraw']
[u'gold', u'coast', u'join']
[u'gould', u'hackett', u'lead', u'tribut', u'thorp']
[u'govt', u'accus', u'guerilla', u'campaign', u'mari']
[u'govt', u'interven', u'unfair', u'dismiss', u'case']
[u'govt', u'want', u'habib', u'compo', u'case', u'strike']
[u'grant', u'council', u'urg', u'probe', u'region', u'tafe', u'claim']
[u'hail', u'storm', u'kill', u'vietnam', u'report']
[u'hardi', u'compo', u'deal', u'clear', u'hurdl']
[u'harvey', u'norman', u'announc', u'sale']
[u'heather', u'mill', u'mccartney', u'deni', u'lover']
[u'home', u'invad', u'attack', u'elder']
[u'hop', u'industri', u'turn', u'rail', u'link']
[u'hop', u'morisset', u'leisur', u'centr', u'improv', u'youth']
[u'hous', u'afford', u'slump']
[u'howard', u'link', u'australia', u'asia']
[u'howard', u'stand', u'vietnam', u'commit']
[u'thorp', u'futur']
[u'thorp', u'retir']
[u'thorp', u'retir', u'swim']
[u'best', u'shape', u'say', u'mcgrath']
[u'increas', u'help', u'retain', u'mango', u'picker']
[u'inquest', u'cell', u'mat', u'kill', u'reopen']
[u'iran', u'invit', u'syria', u'iraq', u'discus', u'iraqi', u'violenc']
[u'reject', u'carpet', u'compani', u'awa']
[u'iron', u'miner', u'port', u'author', u'sign']
[u'selim', u'crimin', u'trial', u'abort']
[u'kalgoorli', u'aborigin', u'court', u'open', u'today']
[u'kiwi', u'stick', u'win', u'formula']
[u'koski', u'announc', u'kurnai', u'colleg', u'fund']
[u'labor', u'offer', u'ballarat', u'grandstand', u'fund']
[u'lanc', u'mull', u'futur']
[u'lara', u'race', u'record', u'book', u'pakistan']
[u'latest', u'cane', u'smut', u'blow', u'contain', u'hop']
[u'leader', u'tribut', u'thorp', u'swim', u'legaci']
[u'lead', u'sculptor', u'celebr']
[u'lennon', u'deni', u'respons', u'exit', u'packag']
[u'liber', u'promis', u'coastal', u'protect']
[u'liber', u'rethink', u'support', u'nation', u'park', u'plan']
[u'accus', u'child', u'assault']
[u'manag', u'risk', u'protect', u'biodivers']
[u'market', u'rebound', u'heavi', u'loss']
[u'mason', u'kangaroo', u'squad']
[u'mayor', u'seek', u'goulburn', u'water', u'summit']
[u'media', u'confer', u'thorp', u'announc']
[u'melbourn', u'woman', u'arrest', u'bali', u'drug', u'charg']
[u'mine', u'industri', u'embrac', u'task', u'forc', u'report']
[u'mine', u'industri', u'welcom', u'nuclear', u'energi', u'review']
[u'minist', u'deni', u'region', u'tafe', u'crisi']
[u'inmat', u'admit', u'risdon', u'jail', u'sieg', u'involv']
[u'monitor', u'shoalhaven', u'demand']
[u'muddi', u'past', u'rise', u'level']
[u'mulch', u'continu', u'burn']
[u'murdoch', u'forc', u'scrap', u'simpson', u'book']
[u'murray', u'goulburn', u'back', u'water', u'recycl', u'promis']
[u'museum', u'urg', u'return', u'indigen', u'remain']
[u'nelson', u'flag', u'involv', u'nation', u'timor']
[u'emerg', u'servic', u'chief', u'confid']
[u'tree', u'plant', u'fail', u'secur', u'farm']
[u'govt', u'urg', u'allow', u'grazier', u'access', u'forest']
[u'cross', u'border', u'help', u'mildura', u'campaign']
[u'polic', u'angri', u'forc', u'transfer']
[u'nuclear', u'energi', u'practic', u'option']
[u'nuclear', u'power', u'practic', u'option', u'australia']
[u'nuclear', u'power', u'option', u'liber']
[u'nuclear', u'reactor', u'sit', u'flexibl', u'macfarlan', u'say']
[u'nuclear', u'task', u'forc', u'endors', u'nuclear', u'power']
[u'tree', u'hill', u'pose', u'threat', u'resid']
[u'field', u'incid', u'earn', u'footi', u'player', u'suspend']
[u'opera', u'hous', u'finalist', u'search', u'wonder']
[u'papuan', u'demand', u'aust', u'citizenship']
[u'parliament', u'debat', u'steal', u'generat', u'compens']
[u'pension', u'sentenc', u'drug', u'traffic']
[u'perish', u'redevelop', u'chang', u'eas', u'snowi', u'river']
[u'perth', u'secur', u'guard', u'walk']
[u'peter', u'jackson', u'drop', u'hobbit', u'film', u'report']
[u'petit', u'push', u'hospit', u'radiotherapi', u'unit']
[u'pilot', u'make', u'emerg', u'land', u'adelaid', u'airport']
[u'polic', u'campaign', u'crack', u'illawarra', u'drink']
[u'polic', u'charg', u'stylist', u'jewelleri', u'theft']
[u'polic', u'discov', u'bodi', u'scene', u'bushfir']
[u'polic', u'dead', u'unit']
[u'polic', u'seek', u'wit', u'outsid', u'motor']
[u'polic', u'search', u'miss', u'swimmer']
[u'poll', u'reveal', u'water', u'suppli', u'concern']
[u'pressur', u'mount', u'wooli', u'reveal', u'bega', u'plan']
[u'princess', u'mari', u'rise', u'rais', u'heart', u'health', u'awar']
[u'propos', u'permit', u'chang', u'concern', u'indigen']
[u'issu', u'arrest', u'warrant', u'patel']
[u'opposit', u'demand', u'check', u'ministeri']
[u'ramanauska', u'place', u'bomber', u'rooki', u'list']
[u'rann', u'consid', u'nuclear', u'power', u'plant']
[u'rayner', u'defend', u'tell', u'die', u'friend']
[u'remot', u'student', u'healthi', u'messag']
[u'review', u'find', u'nuclear', u'energi', u'practic', u'option']
[u'revis', u'forecast', u'offer', u'hope', u'blue', u'mountain']
[u'urg', u'viabl', u'upgrad', u'gambier', u'airport']
[u'road', u'mayhem', u'truck', u'crash', u'traffic', u'light']
[u'rural', u'health', u'import', u'phone', u'say']
[u'emerg', u'servic', u'fight', u'fire']
[u'scheme', u'aim', u'lure', u'youth', u'council', u'job']
[u'schooli', u'prompt', u'mix', u'reaction', u'trader']
[u'school', u'prompt', u'mix', u'reaction']
[u'scientist', u'claim', u'water', u'filter', u'halv']
[u'search', u'fail', u'opal', u'miner']
[u'starl', u'attack', u'cherri', u'orchard']
[u'steal', u'generat', u'compens', u'pass']
[u'strand', u'angler', u'reliv', u'ordeal']
[u'strauss', u'unsur', u'captainci', u'plan']
[u'success', u'agreement', u'report', u'utter', u'rubbish']
[u'surf', u'hous', u'futur', u'rest', u'land', u'consolid', u'mayor']
[u'syria', u'iraq', u'restor', u'diplomat', u'tie']
[u'share', u'price', u'remain', u'strong']
[u'teacher', u'educ', u'minist', u'sack']
[u'teacher', u'spend', u'night', u'alleg', u'victim', u'room', u'court']
[u'teen', u'jail', u'rap', u'elder', u'women']
[u'thiev', u'risk', u'life', u'steal', u'cabl']
[u'thorp', u'announc', u'retir']
[u'thorp', u'announc', u'retir']
[u'thorp', u'leav', u'remark', u'record']
[u'thorp', u'retir', u'like', u'perkin']
[u'thorp', u'retir', u'swim']
[u'tongan', u'riot', u'product', u'dictatori', u'regim']
[u'tongan', u'royal', u'blame', u'thug', u'unrest']
[u'townsvill', u'shoot', u'survivor', u'think', u'dead']
[u'tradefresh', u'posit', u'stop', u'chiquita', u'call']
[u'tradit', u'owner', u'meet', u'govt', u'permit', u'scheme']
[u'truck', u'driver', u'welcom', u'rule', u'break']
[u'kill', u'isra', u'raid', u'gaza']
[u'uniqu', u'island', u'cattl', u'station', u'sale']
[u'unit', u'skipper', u'face', u'surgeri', u'calf', u'injuri']
[u'decid', u'satellit', u'nurs', u'school']
[u'uranium', u'mine', u'process', u'nuclear', u'energi', u'draft']
[u'strike', u'kill', u'baghdad', u'offici']
[u'trap', u'iraq', u'annan']
[u'vaughan', u'laugh', u'prospect', u'play', u'ash']
[u'vegi', u'grower', u'tell', u'chang']
[u'firefight', u'alert']
[u'liber', u'pledg', u'polic']
[u'victorian', u'charg', u'indec', u'schooli', u'photo']
[u'earmark', u'nuclear', u'plant', u'say', u'carpent']
[u'farmer', u'ask', u'check', u'elig']
[u'farmer', u'believ', u'store', u'wheat']
[u'wait', u'bed', u'tweed', u'head']
[u'watchdog', u'call', u'accur', u'label', u'import']
[u'water', u'restrict', u'anger', u'councillor']
[u'year', u'daylight', u'save', u'trial']
[u'watson', u'give', u'fit', u'deadlin']
[u'watson', u'gabba', u'test']
[u'watson', u'rule', u'gabba', u'test']
[u'watson', u'unlik', u'play', u'say', u'boon']
[u'nuclear', u'industri']
[u'wide', u'experi', u'weather', u'extrem']
[u'wimmera', u'reach', u'privat', u'properti']
[u'wodonga', u'hous', u'develop']
[u'wool', u'bale', u'fetch', u'season', u'record', u'price']
[u'work', u'begin', u'broom', u'age', u'care', u'facil']
[u'woundswest', u'scheme', u'promis', u'better', u'region', u'care']
[u'yuendumu', u'resid', u'voic', u'privaci', u'concern']
[u'govt', u'dismiss', u'claim', u'hospit', u'overcrowd']
[u'top', u'recycl', u'survey']
[u'jazeera', u'misunderstand', u'transact', u'head', u'say']
[u'alleg', u'russian', u'face', u'court']
[u'prefer', u'nation', u'liber']
[u'anger', u'air', u'traveston', u'meet']
[u'rais', u'cash', u'incent', u'ahead', u'beij']
[u'ash', u'combat', u'readi', u'battl']
[u'auspin', u'put', u'employe', u'notic']
[u'aust', u'get', u'scotland']
[u'aust', u'man', u'indonesian', u'child', u'trial', u'begin']
[u'australia', u'battl', u'redempt', u'begin']
[u'author', u'acceler', u'tonga', u'reconstruct', u'effort']
[u'author', u'bird', u'plan', u'tackl', u'influenza']
[u'backburn', u'protect', u'blue', u'mountain']
[u'baillieu', u'attack', u'govt', u'bendigo', u'water']
[u'beatti', u'reject', u'water', u'vote', u'exempt']
[u'beatti', u'unawar', u'natoli', u'water', u'submiss']
[u'beazley', u'drought', u'impact', u'hand']
[u'beef', u'group', u'urg', u'meat', u'livestock', u'australia']
[u'bell', u'train', u'england', u'ash', u'boost']
[u'crowd', u'tip', u'ballarat']
[u'turnout', u'expect', u'irrig', u'meet']
[u'biofuel', u'industri', u'face', u'grain', u'cost', u'challeng']
[u'blood', u'test', u'debunk', u'puppi', u'birth', u'claim']
[u'blue', u'mountain', u'fire', u'threaten', u'town']
[u'blue', u'score', u'thrill', u'warrior']
[u'blue', u'place', u'warrior']
[u'bore', u'bath', u'heat', u'swim', u'pool']
[u'brack', u'toughen', u'nuke', u'legisl']
[u'brisban', u'student', u'offer', u'schooli', u'week', u'altern']
[u'bushfir', u'take', u'heavi', u'toll', u'speedway']
[u'bush', u'patient', u'struggl', u'increas', u'cost']
[u'campbel', u'relax', u'ahead', u'aust', u'master']
[u'campbel', u'wont', u'rule', u'overrid', u'state']
[u'footpath', u'put', u'hospit']
[u'celtic', u'knockout', u'phase']
[u'china', u'donat', u'ancient', u'fossil', u'museum']
[u'church', u'investig', u'indigen', u'discrimin']
[u'closer']
[u'closer']
[u'closer']
[u'come', u'clean', u'nuclear', u'reactor', u'locat']
[u'commonwealth', u'overrid', u'state', u'nuclear', u'power']
[u'commonwealth', u'author', u'work', u'patel']
[u'concern', u'rais', u'wagga', u'council', u'restructur']
[u'consid', u'nuclear', u'solar']
[u'consum', u'group', u'want', u'access', u'weight', u'loss', u'drug']
[u'contractor', u'woe', u'delay', u'highway', u'revamp', u'vail']
[u'cool', u'weather', u'aid', u'firefight']
[u'coonambl', u'continu', u'push']
[u'council', u'inquiri', u'submiss', u'question', u'staff', u'evid']
[u'councillor', u'pool', u'plan']
[u'dodg', u'question', u'tccs', u'intent', u'profit']
[u'danish', u'royal', u'coupl', u'touch', u'hobart']
[u'danish', u'royal', u'relax', u'relat']
[u'david', u'joness', u'quarter', u'sale']
[u'decis', u'indigen', u'worker', u'label']
[u'disabl', u'life', u'decis', u'guidelin']
[u'disgrac', u'minist', u'orkopoulo', u'leav', u'hospit']
[u'doctor', u'clear', u'give', u'prison', u'viagra', u'type']
[u'downer', u'condemn', u'lebanon', u'assassin']
[u'earli', u'detect', u'ovarian', u'cancer', u'surviv']
[u'economi', u'continu', u'grow']
[u'energi', u'util', u'capit', u'expenditur', u'budget']
[u'errat', u'blue', u'mountain', u'bushfir', u'break', u'line']
[u'senat', u'presid', u'die']
[u'famili', u'evacu', u'bushfir', u'burn', u'control']
[u'farina', u'swoop', u'sign', u'mori']
[u'fear', u'bushfir', u'pose', u'properti', u'threat']
[u'fear', u'home', u'fire', u'intensifi']
[u'crew', u'contain', u'line']
[u'firefight', u'battl', u'south', u'east', u'blaze']
[u'firefight', u'contain', u'paint', u'factori', u'blaze']
[u'firefight', u'monitor', u'blaze', u'near', u'charlton']
[u'firefight', u'struggl', u'contain', u'border', u'blaze']
[u'threat', u'eas']
[u'victim', u'identif', u'time']
[u'kill', u'bougainvill', u'shoot']
[u'flight', u'charter', u'evacu', u'chines', u'tonga']
[u'footi', u'leagu', u'say', u'convict', u'back', u'tough', u'anti']
[u'forum', u'tell', u'need', u'lift', u'busi', u'scienc', u'effort']
[u'fund', u'promis', u'esper', u'colleg']
[u'fund', u'secur', u'water', u'pipelin', u'studi']
[u'gasquet', u'join', u'blue', u'chip', u'adelaid', u'intern']
[u'genet', u'census', u'green', u'turtl', u'conduct']
[u'gippsland', u'firefight', u'help', u'south', u'west']
[u'govern', u'overhaul', u'secondari', u'educ']
[u'govt', u'give', u'condit', u'approv', u'plan']
[u'govt', u'push', u'nuclear', u'plant', u'locat']
[u'govt', u'compens', u'wrong', u'jail', u'murder']
[u'govt', u'wont', u'manag', u'firefight']
[u'grain', u'grower', u'wont', u'oppos', u'remov', u'awb', u'wheat']
[u'grass', u'blame', u'sydney', u'blackout']
[u'grass', u'fire', u'deliber', u'polic']
[u'group', u'say', u'privat', u'sector', u'struggl']
[u'harwood', u'bushrang']
[u'hollywood', u'maverick', u'die']
[u'hop', u'court', u'deter', u'repeat', u'offend']
[u'hospit', u'redevelop', u'start', u'year']
[u'indigen', u'group', u'hop', u'thorp', u'spend', u'time']
[u'indigen', u'women', u'join', u'yarn', u'circl']
[u'iraq', u'syria', u'restor', u'diplomat', u'tie']
[u'jogger', u'discov', u'bodi', u'near', u'hume', u'highway']
[u'johnson', u'clark', u'sweat', u'decis']
[u'kirner', u'defend', u'rayner', u'honesti', u'integr']
[u'kofi', u'annan', u'iraq']
[u'labor', u'challeng', u'reveal', u'nuclear', u'locat']
[u'labor', u'fight', u'green', u'garrett']
[u'labor', u'indigen', u'communiti']
[u'labor', u'pledg', u'firefight', u'equip']
[u'labor', u'pledg', u'stop', u'nuclear', u'power', u'plant']
[u'lachlan', u'council', u'reject', u'bend', u'lake']
[u'land', u'council', u'meet', u'discuss', u'permit']
[u'languag', u'barrier', u'darwin']
[u'lara', u'genius', u'leav', u'pakistan', u'struggl']
[u'leak', u'bottl', u'plumb', u'store']
[u'lebanes', u'leader', u'appeal', u'calm']
[u'revel', u'role', u'australian', u'pace', u'attack']
[u'lennon', u'tight', u'lip', u'inquiri', u'appear']
[u'lennon', u'wont', u'draw', u'bryant', u'whereabout']
[u'liber', u'bendigo', u'water', u'worri']
[u'detector', u'reveal', u'drive', u'habit']
[u'lightn', u'strike', u'highland', u'firefight']
[u'light', u'plane', u'crash', u'archerfield']
[u'lobbi', u'group', u'consid', u'coal', u'dust', u'action']
[u'major', u'inca', u'burial', u'site', u'northern', u'peru']
[u'charg', u'girl', u'attack', u'school', u'camp']
[u'face', u'court', u'teen', u'suicid']
[u'jail', u'father', u'babi', u'assault']
[u'jail', u'polic', u'chase']
[u'sentenc', u'rock', u'throw', u'incid']
[u'mar', u'surveyor', u'believ', u'lose', u'space']
[u'mason', u'return', u'bonus', u'team', u'stuart', u'say']
[u'mcgauran', u'support', u'environment', u'stewardship', u'concept']
[u'mcginti', u'agre', u'need', u'aborigin']
[u'mcginti', u'pay', u'tribut', u'retir', u'chief']
[u'mechan', u'problem', u'forc', u'plan', u'emerg', u'land']
[u'miss', u'man', u'bodi', u'river']
[u'defend', u'parliamentari', u'absenc']
[u'aussi', u'polic', u'send', u'tonga']
[u'mount', u'welcom', u'nuclear', u'power']
[u'offer', u'condit', u'support', u'nuclear', u'power']
[u'urg', u'addict', u'warn', u'youth', u'drug', u'danger']
[u'murrumbidge', u'irrig', u'sharehold', u'await', u'news']
[u'nelson', u'warn', u'humanitarian', u'disast', u'immin']
[u'nepales', u'govt', u'maoist', u'rebel', u'sign', u'peac', u'deal']
[u'neptun', u'statu', u'divid', u'devonport']
[u'servic', u'derbi', u'perth', u'rout']
[u'resolut', u'council', u'airport', u'charg']
[u'north', u'east', u'firefight', u'tackl', u'south', u'west', u'blaze']
[u'govt', u'defend', u'increas', u'energi', u'util']
[u'home', u'owner', u'urg', u'check', u'asbesto']
[u'govt', u'urg', u'fund', u'board', u'school', u'tiwi']
[u'nuclear', u'energi', u'debat', u'spark', u'wast', u'dump', u'fear']
[u'nuclear', u'matter', u'news']
[u'nuclear', u'referendum']
[u'explor', u'abandon', u'float']
[u'food', u'row', u'hit', u'profit']
[u'kill', u'injur', u'fresh', u'timor', u'violenc']
[u'organis', u'angri', u'schooli', u'prey']
[u'oversea', u'star', u'applaud', u'thorp']
[u'pair', u'charg', u'ecstasi', u'tablet']
[u'patel', u'extradit', u'move', u'step', u'closer']
[u'patient', u'group', u'welcom', u'patel', u'warrant']
[u'rule', u'qanta', u'job', u'cut', u'amwu']
[u'author', u'attempt', u'interview', u'soldier']
[u'polic', u'dead', u'warrawong', u'deliber']
[u'polic', u'seatbelt', u'save', u'tourist']
[u'polic', u'wont', u'toler', u'bad', u'behav', u'schooli']
[u'polit', u'heavyweight', u'support', u'counterpart']
[u'port', u'adelaid', u'secur', u'pearc', u'year']
[u'prendergast', u'make', u'council', u'spot']
[u'privat', u'ship', u'illeg', u'fisher']
[u'public', u'follow', u'water', u'restrict']
[u'public', u'forest', u'reserv', u'draft', u'manag']
[u'qanta', u'approach', u'takeov']
[u'qanta', u'confirm', u'takeov', u'approach']
[u'qanta', u'place', u'creditwatch']
[u'qanta', u'receiv', u'takeov']
[u'qanta', u'share', u'surg', u'takeov', u'talk']
[u'qanta', u'takeov', u'approach', u'drive', u'market', u'higher']
[u'govt', u'chang', u'uranium', u'polici']
[u'rainfal', u'trigger', u'clarenc', u'river', u'pollut']
[u'rememb', u'maralinga']
[u'report', u'rais', u'concern', u'public', u'sector']
[u'tinto', u'worker', u'sack', u'offens', u'email']
[u'rise', u'copper', u'price', u'lead', u'railway', u'overhead']
[u'rise', u'humid', u'heat', u'aid', u'croc', u'growth']
[u'search', u'continu', u'miss', u'hunter']
[u'senden', u'look', u'doubl']
[u'servic', u'station', u'robber', u'jail']
[u'shoot', u'death', u'prompt', u'polic', u'plea']
[u'skill', u'migrat', u'scheme', u'critic', u'mark']
[u'sport', u'festiv', u'forc', u'water']
[u'state', u'leader', u'unit', u'stanc', u'nuclear']
[u'stone', u'jail']
[u'storag', u'wast']
[u'stratford', u'busi', u'bring', u'home', u'bacon']
[u'strong', u'wind', u'blue', u'mountain', u'bushfir']
[u'student', u'confer', u'aim', u'share', u'environ']
[u'subsidi', u'moot', u'counter', u'popul', u'drift']
[u'surf', u'rage', u'accus', u'plea']
[u'sydney', u'tourism', u'snub', u'region', u'area']
[u'syria', u'deni', u'involv', u'lebanes', u'assassin']
[u'welcom', u'steal', u'generat']
[u'tait', u'releas', u'test', u'squad']
[u'polic', u'appeal', u'royal', u'privaci']
[u'tatiara', u'council', u'elect', u'chairman']
[u'there', u'federlin', u'spear', u'tape', u'lawyer']
[u'thorp', u'minut']
[u'thousand', u'firefight', u'battl', u'blaze']
[u'tonga', u'govt', u'accus', u'smear', u'campaign']
[u'turnbul', u'back', u'nuclear', u'power', u'desalin', u'plant']
[u'arrest', u'tonga', u'alleg', u'arson', u'attack']
[u'approv', u'tribun', u'hariri', u'murder', u'suspect']
[u'uncontract', u'winegrap', u'grower', u'demand']
[u'presid', u'daughter', u'rob', u'argentina']
[u'vail', u'play', u'qanta', u'ownership', u'fear']
[u'vail', u'urg', u'invest', u'green', u'energi']
[u'vanston', u'reject', u'christma', u'militari', u'style']
[u'liber', u'promis', u'land']
[u'liber', u'unveil', u'land', u'polici']
[u'wadey', u'trial', u'failur', u'govern']
[u'warrior', u'fight', u'restrict', u'blue']
[u'wast', u'concern']
[u'watch', u'havent', u'peak', u'flintoff']
[u'water', u'author', u'enact', u'stage', u'restrict']
[u'water', u'restrict', u'report']
[u'weekend', u'secur', u'boost', u'announc']
[u'wilder', u'societi', u'set', u'forest', u'canopi', u'watchtow']
[u'wind', u'farm', u'studi', u'delay', u'dont', u'deter', u'verv']
[u'wind', u'intensifi', u'fire']
[u'winemak', u'break', u'mould', u'packag']
[u'wise', u'bullimor', u'avoid', u'southern', u'ocean', u'storm']
[u'woman', u'charg', u'alleg', u'medicar', u'card', u'fraud']
[u'women', u'urg', u'stand', u'elect']
[u'woodford', u'back', u'hewitt', u'improv']
[u'wooli', u'play', u'develop', u'worri']
[u'worker', u'offer', u'counsel', u'man', u'leg', u'sever']
[u'youni', u'farhat', u'pakistan', u'fight', u'windi']
[u'kill', u'polish', u'accid']
[u'kill', u'indonesian', u'explos']
[u'librari', u'revamp']
[u'abar', u'chief', u'climat', u'chang', u'role']
[u'commentari', u'highlight']
[u'academ', u'expect', u'reef', u'parti', u'wont', u'seat']
[u'promis', u'coal', u'invest']
[u'amateur', u'equal', u'cours', u'record', u'master']
[u'amateur', u'upstag', u'master', u'field']
[u'ambassador', u'iraq', u'predict', u'person', u'opinion']
[u'sack', u'squad']
[u'begin', u'worldwid', u'drive', u'experi']
[u'ash', u'play', u'underway']
[u'ash', u'podcast', u'test']
[u'audit', u'reveal', u'director', u'consult', u'fee']
[u'aussi', u'footbal', u'push', u'market', u'share']
[u'aust', u'domin', u'ash']
[u'aust', u'fire', u'ash', u'test']
[u'australia', u'bat', u'gabba']
[u'australia', u'lose', u'hayden', u'lunch']
[u'australia', u'fli', u'start']
[u'australia', u'honour']
[u'australia']
[u'aust', u'troop', u'soft', u'soft', u'tonga']
[u'author', u'fear', u'cholera', u'outbreak', u'hospitalis']
[u'give', u'advanc', u'warn', u'iraq', u'troop', u'deploy']
[u'warn', u'iraq', u'troop', u'deploy']
[u'bananacoast', u'credit', u'union', u'record', u'profit']
[u'bank', u'sector', u'lift', u'sharemarket']
[u'beatti', u'want', u'drug', u'smoke', u'equip', u'ban']
[u'beatti', u'want', u'referendum', u'nuclear', u'power']
[u'beazley', u'open', u'mind', u'drought']
[u'beazley', u'want', u'qanta', u'job', u'guarante']
[u'bega', u'surfer', u'otton', u'rid', u'wave', u'success']
[u'biki', u'gang', u'behav', u'geraldton', u'visit']
[u'biodiesel', u'plant', u'open']
[u'bird', u'plan', u'control', u'nurs', u'home', u'outbreak']
[u'blue', u'mountain', u'burn', u'continu']
[u'bougainvill', u'govt', u'seek', u'afp', u'help']
[u'brack', u'repeat', u'labor', u'educ', u'messag']
[u'britain', u'set', u'basra', u'handov', u'timet']
[u'british', u'troop', u'forc', u'borrow', u'ammo']
[u'bullimor', u'mishap']
[u'bushfir', u'near', u'molong', u'threaten', u'home']
[u'busi', u'fin', u'unsaf', u'work', u'condit']
[u'buswel', u'keep', u'quiet', u'collus', u'claim']
[u'darl', u'down', u'join', u'daylight', u'save']
[u'canberra', u'cab', u'book', u'failur', u'inher']
[u'cane', u'toad', u'help', u'reduc', u'mosquito', u'number']
[u'cattl', u'produc', u'urg', u'audit', u'livestock', u'record']
[u'caus', u'wool', u'factori', u'blaze', u'unknown']
[u'claim', u'forestri', u'worker', u'protest', u'life']
[u'clark', u'warm', u'gabba']
[u'closer']
[u'closer']
[u'closer']
[u'compani', u'urg', u'accept', u'mediat', u'resolv']
[u'conserv', u'group', u'criticis', u'carbon', u'storag']
[u'coonan', u'reveal', u'plan', u'digit', u'switch']
[u'cosmonaut', u'tee', u'space']
[u'costello', u'rule', u'qanta', u'foreign', u'ownership']
[u'costello', u'weigh', u'qanta', u'debat']
[u'councillor', u'reject', u'nuclear', u'power', u'caloundra']
[u'council', u'meet', u'discuss', u'councillor', u'walk']
[u'council', u'urg', u'introduc', u'levi', u'boost', u'tourism']
[u'court', u'adjourn', u'case', u'polic', u'assault', u'claim']
[u'court', u'adjourn', u'case', u'teen', u'accus', u'rap']
[u'crew', u'continu', u'burn', u'blue', u'mountain']
[u'crew', u'good', u'progress', u'blue', u'mountain']
[u'crowd', u'farewel', u'hobart', u'bind', u'bullimor']
[u'debus', u'make', u'final', u'speech', u'parliament']
[u'doc', u'boost', u'armidal', u'casework', u'number']
[u'dougherti', u'set', u'pace', u'australian', u'master']
[u'driver', u'educ', u'centr', u'liber', u'plan']
[u'driver', u'warn', u'stick', u'boom', u'gate', u'danger']
[u'drink', u'driver', u'face', u'life', u'time']
[u'condit', u'spur', u'fire']
[u'dutch', u'leader', u'prepar', u'mind', u'wrack', u'coalit']
[u'effect', u'devil', u'breed', u'program', u'question']
[u'england', u'bemus', u'harmison', u'errat', u'start']
[u'england', u'keep', u'australia', u'honest']
[u'england', u'give', u'hope']
[u'england', u'dougherti', u'set', u'pace', u'aust', u'master']
[u'worri', u'bodi']
[u'etsa', u'fail', u'meet', u'electr', u'reliabl', u'target']
[u'expand', u'altern', u'energi']
[u'fake', u'note', u'surfac', u'port', u'lincoln']
[u'figur', u'highlight', u'fall', u'prospector', u'passeng']
[u'fiji', u'tens', u'sedit', u'charg', u'plan', u'reveal']
[u'firefight', u'battl', u'blaze']
[u'firefight', u'work', u'contain', u'blaze']
[u'firefight', u'continu', u'blue', u'mountain']
[u'wicket', u'fall', u'gabba']
[u'jail', u'casino', u'scam']
[u'flat', u'batteri', u'delay', u'bullimor', u'departur']
[u'flood', u'water', u'hamper', u'effort', u'africa']
[u'forestri', u'defend', u'upper', u'florentin', u'valley']
[u'player', u'award', u'damag']
[u'forum', u'explor', u'depress', u'support']
[u'forward', u'readi', u'nation', u'battl']
[u'fresh', u'look', u'darwin', u'bomb']
[u'fund', u'delay', u'threaten', u'conserv', u'plan']
[u'gateway', u'servic', u'centr', u'move', u'closer', u'realiti']
[u'germani', u'replac', u'south', u'korea', u'hopman']
[u'glen', u'inn', u'council', u'play', u'cash', u'deficit', u'figur']
[u'glen', u'lindholm', u'speech', u'environment', u'govern']
[u'govern', u'welfar', u'voucher', u'plan']
[u'govt', u'announc', u'technic', u'colleg']
[u'govt', u'incent', u'encourag', u'provid', u'rort', u'report']
[u'govt', u'look', u'altern', u'taxi', u'book']
[u'govt', u'pledg', u'carbon', u'storag']
[u'govt', u'push', u'ahead', u'industri', u'growth', u'corridor']
[u'govt', u'push', u'voucher', u'welfar', u'scheme']
[u'govt', u'urg', u'maintain', u'grenfel', u'teacher', u'number']
[u'govt', u'urg', u'reveal', u'aust', u'troop', u'goal', u'iraq']
[u'green', u'candid', u'seek', u'renew', u'energi', u'task', u'forc']
[u'heat', u'hamper', u'locust', u'assess']
[u'hospit', u'regain', u'healthcar', u'standard', u'accredit']
[u'forc', u'rescuer', u'stop', u'search']
[u'houdini', u'custodi', u'court', u'appear']
[u'incorrect', u'insert', u'tube', u'caus', u'toddler', u'death']
[u'indigen', u'accommod', u'centr', u'get', u'fund', u'boost']
[u'indigen', u'authent', u'concern', u'rebuff']
[u'indigen', u'cancer', u'rate', u'higher', u'kakadu', u'region']
[u'indigen', u'centr', u'highlight', u'earlier', u'permit']
[u'indigen', u'institut', u'reject', u'kakadu', u'cancer', u'report']
[u'indigen', u'teacher', u'name', u'australian', u'year']
[u'inter', u'milan', u'chelsea', u'place']
[u'irrig', u'iemma', u'water', u'cut', u'compo']
[u'israel', u'approv', u'gaza', u'oper']
[u'juri', u'find', u'watchdog', u'head', u'rayner', u'guilti']
[u'labor', u'stand', u'worker', u'right', u'say', u'brack']
[u'lebanon', u'call', u'help', u'assassin']
[u'lenton', u'set', u'high', u'standard']
[u'letter', u'bomb', u'murder', u'cold', u'case', u'reopen']
[u'clarifi', u'council', u'water', u'polici']
[u'lgaq', u'reflect', u'local', u'govt', u'imag', u'woe']
[u'liber', u'elect', u'promis', u'cost', u'billion']
[u'log', u'worri', u'spark', u'forest', u'blockad']
[u'face', u'court', u'father', u'murder']
[u'court', u'polic', u'imperson', u'assault']
[u'mayor', u'join', u'union', u'workchoic', u'protest']
[u'mayor', u'offer', u'beatti', u'formal', u'recycl', u'water']
[u'mcguigan', u'sharehold', u'tell', u'disappoint', u'year']
[u'meat', u'compani', u'hamstr', u'hire', u'foreign', u'worker']
[u'medicin', u'abus', u'elder', u'increas']
[u'medicin', u'abus', u'elder', u'patient', u'rise']
[u'monitor', u'overse', u'data', u'say', u'minist']
[u'minist', u'defend', u'griffith', u'librari', u'closur']
[u'moraiti', u'appoint', u'high', u'commission']
[u'museum', u'buy', u'ludwig', u'leichhardt', u'relic']
[u'nation', u'park', u'blaze', u'threaten', u'privat']
[u'nation', u'fear', u'hospit', u'fund', u'shortfal', u'risk']
[u'nation', u'pledg', u'rural', u'rail', u'cross', u'boost']
[u'nevill', u'seek', u'public', u'debat', u'nuclear', u'power']
[u'technolog']
[u'clear', u'trucki', u'drug', u'test']
[u'govt', u'sydney', u'blackout']
[u'student', u'ask', u'develop', u'life', u'studi', u'plan']
[u'nuclear', u'power', u'industri', u'wont', u'drive', u'tourist', u'away']
[u'opposit', u'leader', u'resign']
[u'pay', u'despit', u'book', u'drop']
[u'opposit', u'defend', u'bryant', u'incarcer', u'question']
[u'opposit', u'echo', u'call', u'indigen']
[u'pakistan', u'windi', u'draw', u'multan']
[u'midland', u'saleyard', u'deem', u'unsaf']
[u'petit', u'urg', u'trade']
[u'phillip', u'toyn', u'speech', u'environment', u'govern']
[u'trace', u'high', u'tech']
[u'pioneer', u'sharehold', u'allow', u'merger']
[u'plane', u'help', u'battl', u'station', u'fire']
[u'poison', u'spi', u'condit', u'worsen']
[u'polic', u'agre', u'cyber', u'predat', u'nation', u'strategi']
[u'polic', u'begin', u'holiday', u'road', u'safeti', u'crackdown']
[u'polic', u'believ', u'putti', u'bushfir', u'deliber']
[u'polic', u'commission', u'back', u'databas']
[u'polic', u'think']
[u'polic', u'northbridg', u'station']
[u'polic', u'investig', u'sexual', u'assault']
[u'polic', u'offic', u'rescu', u'burn', u'hous']
[u'polic', u'search', u'schooli', u'bash']
[u'polic', u'seiz', u'drug', u'haul']
[u'polici', u'cost', u'take', u'elect', u'spotlight']
[u'pont', u'lead', u'aussi', u'solid', u'posit']
[u'pont', u'mileston', u'put', u'australia', u'command']
[u'pont', u'show', u'form', u'centuri']
[u'port', u'author', u'stand', u'airport', u'fee']
[u'power', u'pole', u'find', u'surpris', u'nation']
[u'prospect', u'rain', u'improv']
[u'govt', u'urg', u'underpay', u'aborigin']
[u'railcorp', u'play', u'carriag', u'critic']
[u'report', u'highlight', u'area', u'narrabri', u'council']
[u'research', u'look', u'introduc', u'daylight', u'save']
[u'restor', u'map', u'display']
[u'confid', u'contain', u'blaze']
[u'royal', u'trio', u'spot', u'shop']
[u'runaway', u'robber', u'receiv', u'year', u'sentenc']
[u'russian', u'author', u'accus', u'tortur', u'suspect']
[u'save', u'histor', u'homestead', u'easi', u'task']
[u'search', u'miss', u'hunter', u'enter']
[u'sedit', u'charg', u'like', u'bainimarama']
[u'sharehold', u'meet', u'decid', u'build', u'societi', u'fate']
[u'shire', u'ranger', u'accus', u'cruelti']
[u'snowi', u'tourism', u'concept', u'plan', u'approv']
[u'water', u'pollut', u'factori', u'blaze', u'clean']
[u'south', u'east', u'feel', u'blackout', u'impact']
[u'south', u'east', u'get', u'respit']
[u'staniforth', u'connolli', u'experi']
[u'sugar', u'levi', u'abolish', u'earli']
[u'suspend', u'sentenc', u'bouncer']
[u'take', u'bold', u'step']
[u'teen', u'charg', u'schooli', u'assault']
[u'teen', u'critic', u'condit', u'schooli', u'bash']
[u'thousand', u'expect', u'ash', u'sell']
[u'thousand', u'central', u'beirut', u'politician']
[u'titan', u'question', u'turner', u'storm', u'sign']
[u'tonga', u'king', u'polit', u'reform', u'promis', u'welcom']
[u'tongan', u'king', u'promis', u'democrat', u'reform']
[u'tuqiri', u'urg', u'return', u'expans', u'rugbi']
[u'unattend', u'boat', u'prompt', u'search', u'mackay']
[u'union', u'say', u'work', u'mishap', u'comment', u'prematur']
[u'union', u'warn', u'nuclear', u'power']
[u'say', u'civilian', u'death', u'iraq', u'record', u'level']
[u'vail', u'qanta']
[u'wangaratta', u'saddl', u'cyclist', u'influx']
[u'water', u'bomb', u'aid', u'victorian', u'bushfir', u'battl']
[u'water', u'divers', u'plan', u'make', u'wave']
[u'water', u'extract', u'worri', u'bourk', u'mayor']
[u'water', u'timber', u'plantat', u'manag']
[u'welfar', u'group', u'critic', u'brough', u'voucher', u'plan']
[u'welfar', u'group', u'unveil', u'plan', u'curb', u'youth']
[u'welfar', u'voucher', u'plan', u'short', u'sight']
[u'welfar', u'voucher', u'scheme', u'ahead']
[u'brough']
[u'woman', u'accus', u'fenc', u'post', u'stab']
[u'woman', u'miss', u'crash']
[u'woman', u'stand', u'trial', u'murder', u'arson']
[u'wood', u'take', u'seventh', u'grand', u'slam', u'golf', u'titl']
[u'wooroonook', u'blaze', u'consid', u'suspici']
[u'work', u'continu', u'nation', u'park', u'contain']
[u'kill', u'indonesia', u'explos']
[u'steam', u'engin', u'return', u'rail', u'museum']
[u'offic', u'stab', u'fiji']
[u'alic', u'spring', u'woman', u'name', u'region', u'local', u'hero']
[u'alleg', u'schooli', u'attack', u'releas', u'bail']
[u'confirm', u'preferenc', u'decis']
[u'amateur', u'pike', u'hold', u'master', u'lead']
[u'anti', u'log', u'protest', u'stage', u'tree']
[u'stake', u'malaysian', u'bank']
[u'ash', u'podcast', u'maxwel', u'kerri', u'okeeff']
[u'associ', u'win', u'battl', u'local', u'govt']
[u'kill', u'baghdad', u'blast']
[u'aussi', u'koala', u'settl', u'thai', u'home']
[u'aust', u'pilot', u'award', u'distinguish', u'fli', u'cross']
[u'australia', u'declar']
[u'australia', u'command', u'gabba']
[u'australia', u'pile', u'run']
[u'australia', u'strike', u'iron', u'mcgrath']
[u'australia', u'turn', u'heat']
[u'aust', u'sharemarket', u'close']
[u'baghdad', u'bomb', u'death', u'toll', u'rise']
[u'baghdad', u'bomb', u'kill']
[u'baillieu', u'defend', u'account', u'blunder']
[u'baillieu', u'oppos', u'lake', u'mokoan', u'drain', u'plan']
[u'beatti', u'probe', u'hous', u'estat', u'approv']
[u'diesel', u'plant', u'open', u'busi']
[u'biofuel', u'answer']
[u'black', u'say', u'water', u'plan', u'meninde', u'lake']
[u'blain', u'complet', u'latest', u'stunt', u'crash']
[u'bleak', u'outlook', u'winemak']
[u'bomber', u'swoop', u'michael']
[u'kill', u'get', u'school']
[u'brack', u'chase', u'vote', u'educ']
[u'british', u'club', u'lead', u'uefa', u'charg']
[u'british', u'tourist', u'drown', u'near', u'narooma']
[u'bullimor', u'bid', u'albani', u'farewel']
[u'bull', u'tail', u'mount', u'fight']
[u'bushfir', u'forc', u'closur', u'nation', u'park']
[u'bushfir', u'smoke', u'blanket', u'township']
[u'bushrang', u'promis', u'start', u'bull']
[u'children', u'injur', u'school', u'crash']
[u'chiltern', u'health', u'servic', u'coordin']
[u'claim', u'bougainvill', u'govt', u'financ', u'raid', u'reject']
[u'closer']
[u'closer']
[u'closer']
[u'coalit', u'forc', u'battl', u'iraqi', u'violenc']
[u'cole', u'hand', u'kickback', u'report']
[u'commentari', u'highlight']
[u'compani', u'fin', u'hobart', u'fish', u'kill']
[u'compani', u'seek', u'mine', u'leas', u'extens']
[u'support', u'invest', u'prove']
[u'cool', u'chang', u'offer', u'esper', u'fire', u'respit']
[u'council', u'chang', u'clubroom', u'lock', u'spark', u'footi']
[u'council', u'sell', u'land']
[u'court', u'jail', u'frenzi', u'stab', u'murder']
[u'court', u'rule', u'nativ', u'miriuwung', u'gajerrong', u'titl']
[u'cowra', u'bloom']
[u'eye', u'consecut', u'flag']
[u'crab', u'shortag', u'forc', u'fisheri', u'closur']
[u'csiro', u'say', u'senat', u'hear', u'mistak', u'unintent']
[u'dairi', u'aust', u'wont', u'farmer', u'increas', u'servic']
[u'damag', u'mackillop', u'bridg', u'inspect']
[u'dam', u'water', u'transfer', u'delay']
[u'deadlin', u'loom', u'crash', u'compo', u'claim']
[u'death', u'probe', u'kremlin']
[u'debat', u'weld', u'valley', u'exclus', u'zone']
[u'develop', u'warn', u'possibl', u'stadium', u'delay']
[u'downer', u'deni', u'iraq', u'knowledg']
[u'downer', u'address', u'fijian', u'crisi']
[u'downer', u'fiji', u'coup', u'comment']
[u'drought', u'see', u'farmer', u'contact', u'lifelin']
[u'drug', u'deal', u'offic', u'jail']
[u'take', u'lead', u'maria', u'race']
[u'earth', u'mass', u'extinct', u'year']
[u'educ', u'dept', u'reject', u'claim', u'bulli', u'complaint']
[u'emerald', u'feel', u'hous', u'woe']
[u'england', u'fight', u'gabba']
[u'englishman', u'top', u'leaderboard', u'master']
[u'epilepsi', u'research', u'struggl', u'fund']
[u'epilept', u'lose', u'appeal', u'fatal', u'road', u'crash']
[u'eurobodalla', u'council', u'accept', u'marin', u'park', u'compo', u'offer']
[u'exhibit', u'tasmanian', u'histori']
[u'exhibit', u'highlight', u'indigen', u'artist', u'work']
[u'die', u'suspect', u'poison']
[u'expert', u'authent', u'convict', u'cloth']
[u'spi', u'companion', u'deni', u'involv', u'death']
[u'farmer', u'carbon', u'trade', u'scheme']
[u'north', u'fruit', u'win', u'demand']
[u'fear', u'intensifi', u'miss']
[u'fear', u'jervi', u'potenti', u'nuclear', u'site']
[u'crew', u'attack', u'blue', u'mountain', u'blaze', u'head']
[u'firefight', u'battl', u'fire']
[u'firefight', u'contain', u'blue', u'mountain', u'blaze']
[u'firefight', u'continu', u'effort', u'extinguish']
[u'firefight', u'look', u'milder', u'condit']
[u'firefight', u'starv', u'station', u'fuel']
[u'fire', u'threaten', u'properti']
[u'flintoff', u'strike']
[u'expect', u'lift', u'rail', u'coal', u'capac']
[u'fork', u'stab', u'put', u'hospit']
[u'employe', u'jail', u'tomahawk', u'assault']
[u'forum', u'consid', u'burnett', u'fuel', u'plant']
[u'foster', u'unabl', u'explain', u'share', u'price', u'jump']
[u'govt', u'firm', u'iraq', u'troop', u'deploy']
[u'govt', u'urg', u'boost', u'rural', u'health', u'access']
[u'green', u'group', u'reject', u'nuclear', u'power', u'push']
[u'group', u'bulok', u'shire', u'administr']
[u'hadden', u'hop', u'liber']
[u'hope', u'indigen', u'court', u'bolster', u'elder', u'respect']
[u'howard', u'firm', u'iraq', u'troop', u'polici']
[u'inaccur', u'food', u'label', u'concern']
[u'indigen', u'reconcili', u'risk', u'say', u'aborigin']
[u'interview', u'andrew', u'flintoff']
[u'interview', u'glenn', u'mcgrath']
[u'irrig', u'discuss', u'compens', u'premier']
[u'isra', u'airstrik', u'kill', u'palestinian']
[u'jazz', u'singer', u'anita', u'oday', u'die']
[u'jet', u'victori']
[u'joint', u'scheme', u'boost', u'roma', u'tourism']
[u'judg', u'find', u'psychot', u'guilti', u'assault']
[u'kremlin', u'deni', u'involv', u'death']
[u'kununurra', u'nativ', u'titl', u'rule', u'welcom']
[u'labor', u'letter', u'jump', u'liber', u'hold', u'seat']
[u'learner', u'driver', u'charg', u'fatal', u'accid']
[u'leeton', u'shire', u'host', u'bird', u'natur', u'fair']
[u'legal', u'servic', u'back', u'push', u'indigen']
[u'legisl', u'block', u'grassland', u'clear']
[u'liber', u'cost', u'blunder', u'inexcus']
[u'liber', u'pledg', u'review', u'water', u'restrict']
[u'littl', u'desert', u'fire', u'contain']
[u'luxuri', u'beach', u'resort', u'hold']
[u'die', u'injur', u'glenden', u'crash']
[u'get', u'suspend', u'sentenc', u'sexual', u'contact']
[u'jail', u'child', u'pornographi', u'offenc']
[u'mari', u'fredrick', u'kingaroo', u'wildlif']
[u'forgiv', u'accus', u'putin']
[u'mcgrath', u'make', u'earli', u'breakthrough']
[u'merino', u'price', u'plummet']
[u'michael', u'lure', u'bomber', u'odonnel']
[u'miner', u'transport', u'iron', u'export']
[u'mitsubishi', u'continu', u'revers']
[u'reinstat', u'coastal', u'council']
[u'urg', u'communiti', u'debat', u'nuclear', u'power']
[u'museum', u'exhibit', u'leichhardt', u'relic']
[u'mysteri', u'donor', u'boost', u'ballina', u'care', u'centr']
[u'navi', u'standbi', u'fiji', u'evacu']
[u'nelson', u'fiji']
[u'task', u'forc', u'aim', u'improv', u'livestock', u'treatment']
[u'zealand', u'increas', u'secur', u'forc']
[u'chief', u'speech', u'hearten']
[u'crack', u'shonki', u'altern', u'health']
[u'food', u'report', u'today']
[u'opposit', u'spokesman', u'defend', u'suppress']
[u'pair', u'plead', u'guilti', u'abduct', u'assault', u'teen']
[u'patel', u'case', u'barrist', u'fin', u'misconduct']
[u'peacekeep', u'urg', u'arrest', u'timor', u'rebel', u'leader']
[u'rule', u'qanta', u'chang']
[u'cancel', u'moti', u'inquiri']
[u'poison', u'russian', u'die']
[u'polic', u'tough', u'christma', u'drink', u'driver']
[u'polic', u'investig', u'assault', u'celebr', u'school']
[u'polic', u'launch', u'drug', u'alcohol', u'road', u'crackdown']
[u'polic', u'launch', u'road', u'safeti', u'crackdown']
[u'policeman', u'hurt', u'tamworth', u'brawl']
[u'polic', u'probe', u'school', u'leaver', u'fatal', u'crash']
[u'polic', u'promis', u'extens', u'review', u'letter', u'bomb', u'case']
[u'polic', u'motorcycl', u'crash', u'victim']
[u'poll', u'brack', u'victori', u'elect']
[u'pont', u'power']
[u'power', u'undecid', u'mayor']
[u'prawn', u'trawler', u'oper', u'leav', u'buyback']
[u'public', u'anim', u'law']
[u'public', u'urg', u'panic', u'smoke', u'drift']
[u'push', u'continu', u'malle', u'drought']
[u'qanta', u'futur', u'asia']
[u'qanta', u'earli', u'stag', u'dixon']
[u'elect', u'loss', u'embarrass', u'seeney']
[u'queensland', u'pump']
[u'question', u'rais', u'airlin', u'rout', u'futur']
[u'rain', u'hamper', u'blue', u'mountain', u'burn', u'effort']
[u'rann', u'rule', u'resolv', u'public', u'servant']
[u'reduct', u'wine', u'grape', u'yield', u'forecast']
[u'remot', u'solar', u'technolog', u'project', u'win', u'nation', u'award']
[u'report', u'underlin', u'continu', u'industri', u'skill']
[u'robe', u'voter', u'keenest']
[u'ryan', u'posit', u'nation', u'chanc']
[u'scheme', u'treat', u'cannabi', u'offend', u'label']
[u'secur', u'alert', u'prompt', u'ireland', u'parliament']
[u'senat', u'mislead', u'darwin', u'research', u'centr', u'shake']
[u'ship', u'load', u'chang', u'expect', u'dust', u'emiss']
[u'south', u'africa', u'tell', u'hand', u'world']
[u'stay', u'fijian', u'affair', u'militari', u'chief']
[u'helen', u'demand', u'govt', u'address', u'sand', u'problem']
[u'trace', u'miss', u'woman']
[u'stronger', u'quarantin', u'condit', u'import', u'prawn']
[u'sunni', u'extremist', u'baathist', u'blame', u'iraq', u'blast']
[u'sunni', u'leader', u'stop', u'bloodsh', u'say', u'sadr']
[u'switkowski', u'task', u'forc', u'indigen', u'cancer']
[u'sydney', u'lead', u'roar', u'break']
[u'sydney']
[u'sydney', u'appear', u'court', u'child', u'charg']
[u'devil', u'prepar', u'interst', u'export']
[u'teen', u'plead', u'guilti', u'toowoomba', u'tripl', u'murder']
[u'theft', u'report', u'prompt', u'lock', u'standpip']
[u'thousand', u'mourn', u'assassin', u'lebanes']
[u'thousand', u'tribut', u'slay', u'lebanes']
[u'dead', u'injur', u'sydney', u'crash']
[u'titan', u'stand', u'firm', u'turner']
[u'toad', u'stopper', u'green', u'light', u'deduct']
[u'drop', u'nation', u'wine']
[u'tourism', u'board', u'inspect', u'kalgoorli', u'attract']
[u'trade', u'trump', u'environ', u'concern', u'confer']
[u'troop', u'suck', u'iraq', u'civil', u'opposit']
[u'turf', u'club', u'urg', u'support', u'eagl', u'farm', u'upgrad', u'plan']
[u'turner', u'confirm', u'want', u'stay', u'melbourn']
[u'turner', u'get', u'option', u'leav', u'titan', u'year']
[u'twin', u'white', u'lion', u'cub', u'show']
[u'find', u'mass', u'grave', u'congo', u'armi', u'camp']
[u'lectur', u'push', u'gore', u'climat', u'chang', u'messag']
[u'vendi', u'nomin', u'mayor', u'spot']
[u'vineyard', u'blaze', u'damag', u'vine']
[u'warrior', u'build', u'solid', u'inning']
[u'warrior', u'lose', u'wicket', u'lunch']
[u'warrior', u'steadi']
[u'water', u'author', u'predict', u'harsher', u'water', u'ban']
[u'woman', u'die', u'hous', u'blaze']
[u'world', u'brown', u'white', u'panda', u'die']
[u'hero', u'victoria', u'cross', u'auction']
[u'yandilla', u'park', u'expans', u'possibl']
[u'young', u'driver', u'urg', u'learn', u'fatal', u'crash']
[u'hope', u'line', u'draft']
[u'aid', u'crisi', u'deepen']
[u'albani', u'host', u'petrol', u'price', u'meet']
[u'announc', u'candid', u'margin', u'seat']
[u'amateur', u'pike', u'throw', u'gauntlet', u'pros']
[u'analyst', u'predict', u'labor', u'return']
[u'analyst', u'predict', u'labor', u'elect']
[u'analyst', u'predict', u'labor']
[u'approv', u'gain', u'scuttl', u'ship', u'east']
[u'ash', u'podcast', u'maxwel', u'damien', u'fleme', u'kerri']
[u'ausaid', u'catch', u'scandal', u'opposit']
[u'australia', u'turn', u'screw', u'sorri', u'england']
[u'australia', u'urg', u'understand', u'india', u'china']
[u'award', u'commemor', u'virginia', u'flood']
[u'baillieu', u'conced', u'elect', u'defeat']
[u'baillieu', u'conced', u'elect']
[u'baillieu', u'conced', u'elect', u'defeat']
[u'beef', u'industri', u'face', u'challeng']
[u'blood', u'doper', u'hamilton', u'sign', u'deal']
[u'blue', u'struggl', u'repli', u'warrior']
[u'bolton', u'say', u'kill', u'put', u'lebanon', u'futur', u'risk']
[u'bomber', u'michael']
[u'bear', u'foetus', u'stomach']
[u'brack', u'accept', u'elect', u'victori']
[u'brack', u'accept', u'elect', u'victori']
[u'brack', u'claim', u'histor', u'victori']
[u'brack', u'claim', u'victori', u'victoria']
[u'brack', u'govt', u'win', u'bendigo', u'seat']
[u'brack', u'track', u'term']
[u'brack', u'reli', u'charm', u'baillieu', u'upbeat']
[u'bright', u'crown', u'desert', u'king']
[u'british', u'airway', u'review', u'wear', u'cross']
[u'british', u'author', u'investig', u'death']
[u'bullet', u'taipan', u'razorback']
[u'bull', u'attack', u'troubl', u'bushrang']
[u'bull', u'continu', u'troubl', u'bushrang']
[u'bundaberg', u'nurs', u'recognis', u'whistleblow', u'award']
[u'bushfir', u'battl', u'continu']
[u'bush', u'plan', u'meet', u'iraq']
[u'cadel', u'top', u'cycl', u'award', u'night']
[u'crew', u'tackl', u'blaze', u'near', u'saddleworth']
[u'closer']
[u'closer']
[u'cole', u'hand', u'report', u'find']
[u'commentari', u'highlight']
[u'count', u'begin', u'elect']
[u'count', u'elect']
[u'crew', u'resum', u'burn', u'blue', u'mountain', u'blaze']
[u'crime', u'ride', u'neighbourhood', u'exchang', u'gun']
[u'darwin', u'expert', u'excit', u'fish']
[u'debnam', u'say', u'govt', u'powerbal', u'cash', u'budget']
[u'dokic', u'deni', u'dad', u'kidnap', u'claim']
[u'earli', u'count', u'show', u'small', u'swing']
[u'earli', u'count', u'show', u'small', u'swing', u'liber']
[u'england']
[u'england', u'collaps', u'gabba']
[u'england', u'leav', u'fight', u'surviv']
[u'england', u'rope', u'gabba']
[u'england', u'hop', u'rest', u'pietersen']
[u'england', u'rise', u'pois', u'drought', u'master']
[u'timor', u'rebel', u'leader', u'defend', u'right', u'arm']
[u'poison', u'radiat']
[u'offic', u'hit', u'aust', u'involv', u'iraq']
[u'offic', u'hit', u'iraq', u'sham']
[u'poison', u'radiat']
[u'fergi', u'eye', u'point', u'chelsea', u'clash']
[u'crew', u'fight', u'shoalhaven', u'blaze']
[u'crew', u'advantag', u'mild', u'weekend']
[u'firefight', u'contain', u'victorian', u'blaze']
[u'flintoff', u'leap', u'harmison', u'defenc']
[u'flintoff', u'harmison', u'defenc']
[u'green', u'eye', u'senat', u'seat']
[u'poison', u'radiat']
[u'liber', u'leader', u'lash', u'parti']
[u'fraser', u'lead', u'charg', u'pack', u'close', u'pike']
[u'french', u'citizen', u'chad', u'warn', u'loom', u'unrest']
[u'gibb', u'blue', u'draft', u'pick']
[u'googl', u'face', u'court', u'belgium', u'itali']
[u'govern', u'claim', u'world', u'heritag', u'fund']
[u'govt', u'remedi', u'obes', u'epidem']
[u'govt', u'reject', u'sydney', u'firefight', u'number', u'claim']
[u'grinham', u'sister', u'squash', u'open', u'semi']
[u'gunmen', u'kill', u'villag', u'iraq']
[u'hezbollah', u'support', u'urg', u'stay', u'street']
[u'indigen', u'court', u'call', u'fast', u'track', u'rehab']
[u'indonesian', u'censor', u'aceh', u'film', u'festiv']
[u'indonesia', u'put', u'explos', u'rescu', u'effort', u'hold']
[u'interview', u'glenn', u'mcgrath']
[u'interview', u'bell']
[u'israel', u'reject', u'palestinian', u'offer', u'halt', u'rocket']
[u'itali', u'open', u'probe', u'bulli', u'video', u'googl']
[u'kangaroo', u'nation', u'thriller']
[u'katich', u'save', u'blue']
[u'labor', u'favourit', u'victorian', u'head', u'poll']
[u'labor', u'pledg', u'restor', u'palmerston', u'bulk', u'bill']
[u'labor', u'return', u'analyst']
[u'labor', u'return', u'despit', u'swing', u'analyst']
[u'labor', u'win', u'elect']
[u'liber', u'narracan', u'labor']
[u'lightn']
[u'lockyer', u'put', u'team', u'final']
[u'macgil', u'wrap', u'warrior', u'tail']
[u'charg', u'wheelchair', u'stab']
[u'marin', u'triumph', u'adelaid']
[u'mcgrath', u'back', u'decis']
[u'mclaren', u'sign', u'black', u'driver']
[u'milat', u'person', u'homicid', u'case']
[u'milat', u'person', u'murder', u'cold', u'case']
[u'minist', u'hail', u'read', u'initi', u'phenomen']
[u'moscow', u'urg', u'assist', u'poison']
[u'mosqu', u'attack', u'kill', u'baghdad']
[u'mosqu', u'torch', u'baghdad', u'bomb']
[u'mourner', u'farewel', u'renown', u'cartoonist']
[u'star']
[u'ireland', u'parliament', u'evacu', u'secur']
[u'irish', u'paramilitari', u'charg', u'adamss', u'attempt']
[u'challeng', u'flegg', u'leadership', u'liber']
[u'excus', u'mistak', u'scot', u'mortlock']
[u'parti', u'colleagu', u'applaud', u'brackss', u'elect']
[u'pitt', u'joli', u'surpris', u'trip', u'vietnam']
[u'face', u'epidem', u'cross']
[u'polic', u'associ', u'satisfi', u'transfer']
[u'polic', u'identifi', u'brisban', u'bushland', u'bodi']
[u'polic', u'warn', u'school', u'leaver', u'stick']
[u'poll', u'booth', u'close', u'labor', u'predict']
[u'poll', u'predict', u'term', u'brack']
[u'poll', u'brack', u'term']
[u'poll', u'labor', u'ahead', u'elect']
[u'plater', u'kill', u'hunter', u'valley', u'crash']
[u'liber', u'reject', u'leadership', u'spill', u'specul']
[u'resid', u'group', u'concern', u'refineri', u'sampl']
[u'russian', u'ambassador', u'quiz', u'spi', u'death']
[u'russian', u'spi', u'death', u'spark', u'warn', u'public']
[u'rwanda', u'cut', u'tie', u'franc']
[u'school', u'leaver', u'dunsborough', u'polic', u'busi']
[u'somali', u'islamist', u'mass', u'troop', u'brace']
[u'spirit', u'women', u'cricket']
[u'sydney', u'trump', u'ranger']
[u'taiwan', u'busi', u'seek', u'tasmanian', u'trade', u'tie']
[u'task', u'forc', u'overse', u'port', u'botani', u'expans']
[u'tasmania', u'lead', u'push', u'plastic', u'levi']
[u'tasmanian', u'team', u'develop', u'bomb', u'detect', u'devic']
[u'telco', u'urg', u'reconsid', u'infrastructur']
[u'tougher', u'sentenc', u'townsvill', u'case', u'reject']
[u'tour', u'hop', u'turn', u'ash', u'english', u'press']
[u'tourism', u'bodi', u'say', u'industri', u'smarter']
[u'troop', u'kill', u'insurg', u'afghanistan']
[u'tucker', u'best', u'chanc', u'pressur', u'liber']
[u'union', u'question', u'china', u'train', u'deal']
[u'say', u'forc', u'kill', u'insurg', u'iraq']
[u'elect', u'count', u'begin']
[u'victor', u'harbor', u'flourish', u'schooli']
[u'victorian', u'elect', u'baillieu', u'concess', u'speech']
[u'victorian', u'elect', u'brack', u'victori', u'speech']
[u'victorian', u'firefight', u'face', u'fresh', u'problem']
[u'victorian', u'labor', u'leader', u'steve', u'brack', u'claim']
[u'victorian', u'opposit', u'leader', u'baillieu']
[u'vinni', u'hope', u'bring', u'christma', u'cheer', u'darwin']
[u'windi', u'drop', u'edward', u'hind', u'pakistan', u'dayer']
[u'sale']
[u'yolgnu', u'woman', u'win', u'health', u'worker', u'award']
[u'young', u'australian', u'urg', u'understand', u'india', u'china']
[u'accid', u'support', u'group', u'plan', u'rehabilit', u'centr']
[u'adelaid', u'host', u'ash']
[u'airbus', u'begin', u'final', u'test', u'flight']
[u'black', u'perform', u'haka', u'locker', u'room']
[u'anelka', u'doubl', u'sink', u'arsenal', u'liverpool', u'beat', u'citi']
[u'apolog', u'balmi', u'armi']
[u'langer', u'australia', u'declar']
[u'aust', u'commando', u'receiv', u'star', u'gallantri']
[u'australia', u'monitor', u'injuri', u'pont']
[u'australian', u'bat', u'push', u'lead']
[u'australian', u'rescu', u'thai', u'coast', u'week']
[u'australian', u'urg', u'pray', u'rain']
[u'australian', u'warn', u'coup', u'risk', u'fiji']
[u'australia', u'verg', u'gabba', u'victori']
[u'baillieu', u'remain', u'opposit', u'leader', u'brack']
[u'barmi', u'armi', u'bemus', u'apolog', u'abus']
[u'beatti', u'announc', u'strategi', u'break']
[u'beazley', u'vow', u'lead', u'labor', u'elect']
[u'die']
[u'brack', u'elect', u'victori']
[u'brack', u'elect', u'elect']
[u'brack', u'say', u'victori', u'send', u'messag', u'canberra']
[u'brisban', u'restaurateur', u'exploit', u'foreign', u'student']
[u'bull', u'bushrang', u'victori']
[u'bushrang', u'attack', u'keep', u'bull', u'honest']
[u'bushrang', u'fight', u'bull']
[u'campaign', u'aim', u'dispel', u'puppi', u'myth']
[u'campbelltown', u'resid', u'rais', u'station', u'health']
[u'capit', u'perth']
[u'capsiz', u'ferri', u'leav', u'dead', u'philippin']
[u'bomb', u'kill', u'iraqi', u'market']
[u'ceas', u'take', u'effect', u'gaza']
[u'chadian', u'rebel', u'captur', u'eastern', u'town']
[u'chad', u'armi', u'take', u'town', u'rebel']
[u'china', u'coal', u'explos', u'kill', u'dozen']
[u'chines', u'paint', u'fetch', u'record', u'price']
[u'clash', u'flare', u'bangladesh', u'ahead', u'poll']
[u'closer']
[u'closer']
[u'colonel', u'light', u'statu', u'turn']
[u'commentari', u'highlight']
[u'connolli', u'confid', u'wallabi', u'rain']
[u'controversi', u'bail', u'aim', u'protect']
[u'cooler', u'condit', u'firefight']
[u'costello', u'urg', u'liber', u'nation', u'unit']
[u'council', u'board', u'hous', u'object', u'disappoint']
[u'crew', u'tackl', u'diesel', u'spill', u'murray']
[u'defeat', u'baillieu', u'look']
[u'diver', u'resum', u'search', u'overboard', u'tomorrow']
[u'england', u'resist']
[u'england', u'moral', u'remain', u'high', u'say', u'bell']
[u'ethiopian', u'communiti', u'receiv', u'safeti', u'lesson']
[u'ethiopia', u'threaten', u'major', u'offens', u'somali']
[u'ethiopia', u'launch', u'offens', u'somalian']
[u'timor', u'rebel', u'leader', u'militari', u'chief', u'talk']
[u'fiji', u'militari', u'recal', u'reservist', u'clean']
[u'firefight', u'continu', u'battl', u'blaze']
[u'outbreak', u'forc', u'lock', u'second', u'nurs']
[u'fli', u'invas', u'drive', u'local', u'batti']
[u'franc', u'puma', u'jinx', u'springbok', u'beat', u'england']
[u'freddi', u'fall', u'australia', u'regain', u'control']
[u'gaza', u'ceas', u'take', u'effect']
[u'gigg', u'aim', u'extend', u'lead', u'chelsea']
[u'glori', u'lead', u'knight', u'break']
[u'googl', u'youtub', u'cannibalis', u'exec']
[u'grey', u'nomad', u'encourag', u'work', u'remot']
[u'grey', u'nomad', u'indigen', u'volunt', u'scheme']
[u'gunmen', u'kill', u'iraq']
[u'harnwel', u'trick', u'seal', u'glori']
[u'high', u'water', u'tighter', u'restrict']
[u'hong', u'kong', u'grab', u'honour', u'chines', u'oscar']
[u'hospit', u'ward', u'reopen', u'asbesto', u'scare']
[u'hundr', u'fijian', u'armi', u'reservist', u'recal']
[u'imagin', u'logic']
[u'india', u'singh', u'enjoy', u'victori', u'japan', u'tour']
[u'insurg', u'nato', u'soldier', u'kill', u'afghan', u'clash']
[u'interview', u'justin', u'langer']
[u'interview', u'paul', u'collingwood']
[u'iraq', u'extend', u'baghdad', u'curfew', u'amid', u'violenc']
[u'israel', u'palestinian', u'agre', u'ceasefir']
[u'israel', u'vow', u'restraint', u'milit', u'break', u'ceas']
[u'issu', u'elect', u'featur', u'feder']
[u'japanes', u'navi', u'experi', u'pow', u'offic', u'say']
[u'jet', u'stun', u'victori']
[u'katherin', u'joyrid', u'rais', u'fund', u'special', u'school']
[u'katich', u'bat', u'blue', u'chase', u'warrior', u'total']
[u'labor', u'call', u'ministeri', u'sack']
[u'labor', u'claim', u'victori', u'elect']
[u'labor', u'elect', u'term', u'victoria']
[u'lack', u'leadership', u'young', u'muslim', u'alarm']
[u'launceston', u'take', u'point', u'pinnacl']
[u'lebanes', u'cabinet', u'approv', u'hariri', u'tribun']
[u'lebanes', u'govern', u'approv', u'hariri', u'tribun']
[u'liber', u'demand', u'secur', u'review', u'detent']
[u'liber', u'want', u'status', u'maintain', u'premier']
[u'lifelin', u'regist', u'increas', u'call']
[u'lockyer', u'seal', u'great', u'season', u'rememb']
[u'fake', u'face', u'firearm', u'charg']
[u'marijuana', u'advoc', u'plan', u'roll', u'world', u'biggest']
[u'minist', u'discuss', u'plate', u'law', u'crash']
[u'assassin', u'put', u'lebanon', u'futur', u'risk', u'bolton']
[u'naval', u'historian', u'say', u'wreck', u'wwii']
[u'nobel', u'prize', u'winner', u'honour']
[u'consid', u'rule', u'bodi', u'pierc']
[u'firefight', u'continu', u'backburn', u'effort']
[u'polic', u'kill', u'groom', u'wed']
[u'opposit', u'repeat', u'iraq', u'withdraw']
[u'pacif', u'highway', u'reopen', u'southbound', u'traffic']
[u'palestinian', u'rocket', u'attack', u'breach', u'gaza', u'truce']
[u'palestinian', u'announc', u'gaza', u'ceas']
[u'parent', u'accus', u'fuel', u'schooli', u'bing']
[u'parti', u'disput', u'victorian', u'elect', u'implic']
[u'pike', u'continu', u'master']
[u'pinochet', u'accept', u'respons', u'birthday']
[u'reject', u'elect', u'claim']
[u'podcast', u'maxwel', u'damien', u'fleme', u'kerri']
[u'polic', u'appeal', u'wit', u'motorcycl', u'crash']
[u'polic', u'cruis', u'captain', u'drink', u'fell']
[u'princ', u'plan', u'concert', u'diana', u'anniversari']
[u'back', u'push', u'recycl', u'guidelin']
[u'rise', u'break', u'drought', u'master', u'titl']
[u'rise', u'break', u'titl', u'drought', u'master']
[u'rise', u'retain', u'lead', u'master', u'despit', u'tripl', u'bogey']
[u'rise', u'take', u'shoot', u'buffer', u'master', u'final']
[u'semi', u'trailer', u'accid', u'forc', u'highway', u'closur']
[u'korea', u'confirm', u'bird', u'outbreak']
[u'korea', u'kill', u'chicken', u'stop', u'bird']
[u'soldier', u'award', u'braveri', u'afghanistan']
[u'spirit']
[u'sugar', u'help', u'cystic', u'fibrosi', u'suffer']
[u'suicid', u'bomb', u'kill', u'afghan', u'injur']
[u'sweet', u'relief', u'cystic', u'fibrosi', u'suffer']
[u'taliban', u'hold', u'pakistani', u'journalist']
[u'taliban', u'releas', u'journalist', u'hold', u'afghanistan']
[u'technic', u'difficulti', u'blame', u'wait', u'list']
[u'teen', u'miss', u'cruis', u'ship', u'fall']
[u'thai', u'junta', u'martial', u'provinc']
[u'thousand', u'flee', u'rebel', u'attack', u'east', u'congo']
[u'plater', u'charg', u'drink', u'drive']
[u'tomorrow', u'england', u'say', u'bell']
[u'tough', u'loom', u'master', u'leader']
[u'trio', u'escap', u'youth', u'dentent', u'centr']
[u'injur', u'fremantl', u'museum', u'blast']
[u'polic', u'continu', u'death', u'investig']
[u'polic', u'probe', u'spi', u'death']
[u'ukrain', u'releas', u'document', u'mass', u'starvat']
[u'terror', u'polic', u'charg', u'litvinenko']
[u'welcom', u'gaza', u'ceas']
[u'establish', u'school', u'medicin']
[u'elect', u'fight', u'issu', u'say']
[u'elect', u'issu', u'featur', u'feder', u'elect']
[u'result', u'base', u'feder', u'issu', u'shorten']
[u'result', u'prompt', u'critic', u'state', u'liber']
[u'victorian', u'issu', u'featur', u'feder', u'campaign']
[u'victori', u'jet', u'lock']
[u'violent', u'sexual', u'offenc', u'elev', u'right']
[u'wallabi', u'finish', u'euro', u'tour', u'scottish', u'victori']
[u'wallabi', u'reliev', u'finish', u'win', u'note']
[u'warrior', u'look', u'outright', u'victori']
[u'warrior', u'inning', u'point']
[u'western', u'australian', u'rid']
[u'wicket', u'fall', u'australia', u'push', u'victori']
[u'woman', u'rescu', u'canberra', u'hous']
[u'grain', u'place', u'enter', u'wheat', u'market']
[u'accus', u'palm', u'rioter', u'stand', u'mayor']
[u'adelaid', u'move', u'level', u'water', u'restrict']
[u'team', u'sign', u'north', u'ballarat', u'rebel', u'player']
[u'ajax', u'announc', u'appoint', u'receiv']
[u'ajax', u'rescu', u'deal', u'collaps']
[u'ajax', u'worker', u'walk']
[u'alga', u'concern', u'high', u'land', u'price']
[u'allenbi', u'look', u'bounc', u'coolum']
[u'plan', u'centenari', u'year']
[u'ash', u'open', u'smash', u'bodylin', u'record']
[u'ash', u'podcast', u'maxwel', u'kerri', u'okeeff', u'damien']
[u'aussi', u'open', u'wildcard']
[u'aussi', u'seal', u'gabba']
[u'australia', u'stand', u'extrem', u'racism', u'iemma']
[u'australia', u'final', u'push', u'victori']
[u'australia', u'win', u'ash', u'test']
[u'author', u'brace', u'threat', u'south', u'east']
[u'author', u'investig', u'corbi', u'book', u'profit']
[u'author', u'investig', u'terror', u'suspect', u'escap']
[u'probe', u'clear', u'govt', u'wrongdo']
[u'report', u'tabl', u'parliament']
[u'season', u'hamper', u'water', u'suppli']
[u'bendigo', u'put', u'faith', u'sit']
[u'berlusconi', u'intens', u'care', u'heart', u'problem']
[u'bicker', u'stall', u'oversea', u'doctor', u'plan', u'say']
[u'aim', u'strip', u'veto', u'power']
[u'bimbl', u'inquest', u'hear', u'alleg', u'drug', u'deal']
[u'bodi', u'drive', u'interst', u'passeng', u'seat', u'court', u'tell']
[u'brack', u'recal', u'parliament', u'elect']
[u'brimbl', u'drug', u'dose', u'estim', u'court', u'hear']
[u'brimbl', u'inquest', u'hear', u'drug', u'deal', u'claim']
[u'brisban', u'raid', u'shelter', u'make', u'busway']
[u'brown', u'back', u'coal', u'export']
[u'bull', u'complet', u'outright']
[u'bushfir', u'close', u'nation', u'park']
[u'bushfir', u'ravag', u'near', u'tasman', u'highway']
[u'bushrang', u'heel']
[u'bushrang', u'struggl', u'chase', u'total']
[u'candid', u'assault', u'attack', u'freedom', u'speech']
[u'carbon', u'price', u'relat', u'nuclear', u'power']
[u'truck', u'collis', u'claim', u'man', u'life']
[u'celebr', u'challeng', u'disabl', u'stereotyp']
[u'tackl', u'upper', u'malle', u'blaze']
[u'chad', u'govt', u'deni', u'report', u'rebel', u'move', u'capit']
[u'child', u'killer', u'lewthwait', u'guilti', u'exposur']
[u'climat', u'chang', u'requir', u'global', u'solut']
[u'closer']
[u'closer']
[u'closer']
[u'coast', u'face', u'burglari', u'charg']
[u'cole', u'inquiri', u'find', u'mislead']
[u'cole', u'inquiri', u'find', u'mislead', u'aust', u'govt']
[u'commentari', u'highlight']
[u'connolli', u'eye', u'finish']
[u'connolli', u'look', u'finish']
[u'council', u'hop', u'green', u'light', u'aerodrom', u'drag', u'race']
[u'council', u'decid', u'mall', u'secur', u'camera', u'fund']
[u'court', u'close', u'chapter', u'nativ', u'titl', u'claim']
[u'court', u'find', u'climat', u'chang', u'relev', u'coal']
[u'court', u'deliv', u'coal', u'legal', u'challeng', u'decis']
[u'crash', u'victim', u'relat', u'welcom', u'transair', u'ground']
[u'dairi', u'australia', u'elect', u'presid']
[u'davi', u'happi', u'stand', u'state', u'independ']
[u'demand', u'home', u'rise']
[u'doctor', u'avoid', u'deregistr', u'despit', u'misconduct']
[u'doctor', u'die', u'breast', u'cancer', u'fail', u'legal']
[u'doubt', u'rais', u'water', u'pip', u'plan']
[u'downer', u'say', u'region', u'unit', u'prevent', u'fiji', u'coup']
[u'downer', u'warn', u'fiji', u'coup', u'fortnight']
[u'draw', u'loom']
[u'driver', u'die', u'donald', u'crash']
[u'driver', u'jail', u'year', u'fatal', u'crash']
[u'driver', u'warn', u'prepar', u'locust', u'threat']
[u'drought', u'bring', u'mix', u'bless']
[u'drug', u'grower', u'scar', u'polic']
[u'drug', u'weapon', u'seiz', u'polic', u'raid']
[u'drug', u'servic', u'closur', u'spark', u'crime', u'fear']
[u'condit', u'blame', u'slump', u'farmer']
[u'earlier', u'gain', u'erod', u'market', u'close', u'flat']
[u'elect', u'see', u'face', u'victori']
[u'england', u'slide', u'jone', u'pietersen', u'depart']
[u'england', u'stick', u'harmison']
[u'expert', u'say', u'drought', u'impact', u'build', u'job']
[u'export', u'devil', u'insur', u'plan']
[u'factori', u'blaze', u'clean', u'continu', u'slowli']
[u'farm', u'classic', u'hit', u'screen']
[u'farm', u'firm', u'fin', u'crush', u'finger']
[u'farm', u'group', u'decid', u'saleyard', u'action']
[u'father', u'jail', u'bash', u'babi', u'girl']
[u'fewer', u'bowen', u'basin', u'job', u'offer']
[u'fiji', u'plead', u'guilti', u'incit', u'mutini']
[u'firebal', u'shoot']
[u'firefight', u'bring', u'nation', u'park', u'blaze']
[u'firefight', u'hope', u'favour', u'weather']
[u'firefight', u'crane', u'forc', u'repair']
[u'flood', u'forc', u'evacu', u'build']
[u'ford', u'holden', u'blame', u'ajax', u'deal', u'collaps']
[u'foreign', u'minist', u'meet', u'fiji', u'coup', u'threat']
[u'fraser', u'urg', u'iraq', u'polici', u'rethink']
[u'freddi', u'confid', u'england', u'recov']
[u'gaza', u'ceas', u'uphold']
[u'general', u'say', u'martial', u'lift', u'half']
[u'german', u'compani', u'buy', u'wool', u'direct', u'produc']
[u'gold', u'drill', u'look', u'promis']
[u'govern', u'clear', u'probe']
[u'govt', u'move', u'protect', u'wreck']
[u'govt', u'reject', u'push', u'detent', u'centr', u'review']
[u'govt', u'urg', u'defer', u'ax', u'cdep', u'program']
[u'grain', u'shutdown', u'reduc', u'port', u'trade']
[u'green', u'group', u'oppos', u'nuclear', u'power', u'push']
[u'green', u'question', u'woodsid', u'survey']
[u'griffith', u'plane', u'emerg', u'end', u'safe']
[u'grinham', u'beat', u'world', u'open', u'squash', u'final']
[u'group', u'say', u'opposit', u'mount', u'waterfront']
[u'group', u'settl', u'websit', u'paedophil', u'claim']
[u'health', u'author', u'play', u'fear', u'strain']
[u'holden', u'worker', u'face', u'stand', u'threat']
[u'hous', u'minist', u'reject', u'evict', u'claim']
[u'howard', u'deni', u'food', u'inquiri', u'manipul']
[u'howard']
[u'idol', u'amaz', u'journey', u'mauboy']
[u'increas', u'cost', u'forc', u'closur', u'age', u'care', u'home']
[u'india', u'book', u'hopman', u'place']
[u'ingram', u'retain', u'seat', u'smaller', u'major']
[u'inter', u'palermo']
[u'interim', u'protect', u'order', u'place', u'wreck']
[u'interview', u'kevin', u'pietersen']
[u'interview', u'ricki', u'pont']
[u'investig', u'prompt', u'aircraft', u'engin', u'mainten']
[u'iraqi', u'heckl', u'bomb', u'victim', u'visit']
[u'ireland', u'pacif', u'island']
[u'isra', u'armi', u'kill', u'west', u'bank']
[u'israel', u'readi', u'prison', u'swap', u'captur', u'soldier']
[u'japanes', u'wreck', u'sydney']
[u'kovco', u'mother', u'expect', u'conveni', u'find']
[u'kovco', u'report', u'leak', u'blow']
[u'labor', u'want', u'kovco', u'report', u'leak', u'investig']
[u'lamb', u'feedlot', u'shed', u'open', u'busi']
[u'leak', u'kovco', u'report', u'upset', u'famili']
[u'livingston', u'mayor', u'hop', u'pipelin', u'work', u'soon']
[u'local', u'council', u'urg', u'address', u'climat', u'chang']
[u'longreach', u'ban', u'sprinkler']
[u'level', u'slash', u'cotton', u'crop']
[u'accus', u'stab', u'wheelchair', u'woman']
[u'accus', u'weekend', u'drink', u'drive', u'twice']
[u'charg', u'stepfath', u'murder']
[u'maryborough', u'sugar', u'factori', u'break', u'record']
[u'mayor', u'sure', u'council', u'green', u'light', u'youth', u'curfew']
[u'mccaw', u'name', u'player', u'year']
[u'middl', u'east', u'face', u'civil', u'war', u'jordan', u'king']
[u'miner', u'search', u'clermont', u'gold', u'list']
[u'mine', u'accid', u'claim', u'live', u'china']
[u'minist', u'consid', u'age', u'home', u'immunis']
[u'seek', u'traveston', u'commiss', u'inquiri']
[u'urg', u'liber', u'gippsland', u'model']
[u'murray', u'spill', u'investig']
[u'napthin', u'retain', u'south', u'west', u'coast']
[u'nation', u'resurg', u'continu', u'elect']
[u'land', u'council', u'promis', u'account']
[u'rule', u'build', u'bushfir', u'prone', u'area']
[u'remain', u'posit', u'despit', u'drop', u'rural']
[u'north', u'look', u'grass', u'beef', u'capit']
[u'governor', u'inspect', u'rfds', u'facil']
[u'reject', u'bizarr', u'idea', u'breath', u'test', u'fishermen']
[u'secur', u'preseason', u'fixtur']
[u'drop', u'stadium', u'plan', u'world']
[u'pacif', u'minist', u'meet', u'fiji', u'coup', u'threat']
[u'pakistan', u'test']
[u'pandazopoulo', u'thomson', u'wont', u'seek', u'ministeri', u'job']
[u'pietersen', u'fall', u'short', u'centuri']
[u'pietersen', u'warn', u'leav', u'field']
[u'plane', u'crash', u'kill', u'iran']
[u'accus', u'labor', u'inquiri', u'fib']
[u'deni', u'govt', u'rort', u'food', u'inquiri']
[u'say', u'minist', u'deserv', u'apolog']
[u'polic', u'book', u'trucki', u'blitz']
[u'polic', u'busi', u'deal', u'drive', u'matter']
[u'polic', u'investig', u'famili', u'candid', u'assault']
[u'polic', u'investig', u'yass', u'hotel', u'blaze']
[u'polic', u'probe', u'fatal', u'grain', u'truck', u'crash']
[u'polic', u'probe', u'smear', u'campaign', u'ballarat']
[u'polic', u'probe', u'wagga', u'home', u'invas']
[u'polic', u'seek', u'alburi', u'attack', u'wit']
[u'polic', u'action', u'forest', u'protest']
[u'polystyren', u'fish', u'sculptur', u'aim', u'rais']
[u'prize', u'bull', u'go', u'dollar']
[u'probe', u'continu', u'boy', u'road', u'death']
[u'public', u'urg', u'resist', u'nuclear', u'push']
[u'punter', u'want', u'england', u'canva']
[u'push', u'perth', u'world', u'renown', u'resourc']
[u'coalit', u'divid', u'leadership']
[u'govt', u'sell', u'retail', u'billion']
[u'nuclear', u'power', u'plant']
[u'resid', u'continu', u'fight', u'heritag']
[u'retir', u'urg', u'work', u'remot', u'communiti']
[u'return', u'reinforc', u'super', u'pipe', u'pledg']
[u'rudd', u'reject', u'labor', u'leadership', u'challeng']
[u'fire', u'contain']
[u'postpon', u'controversi', u'report', u'card', u'chang']
[u'savag', u'eas', u'elect', u'loss']
[u'scheme', u'help', u'greenfield', u'mine', u'explor']
[u'secur', u'expert', u'say', u'iraq', u'wors', u'vietnam']
[u'seeney', u'spokesman', u'deni', u'oath', u'claim']
[u'senior', u'card', u'region', u'directori']
[u'serial', u'pest', u'arrest', u'amid', u'ash', u'disrupt', u'fear']
[u'sevilla', u'real', u'pressur', u'barca']
[u'singleton', u'get', u'draft', u'water', u'share', u'rule']
[u'springbok', u'condemn', u'apartheid', u'flag']
[u'spur', u'wigan']
[u'strand', u'whale', u'repeat', u'visitor']
[u'stubborn', u'casson', u'earn', u'blue', u'draw']
[u'success', u'plan', u'dairi', u'industri']
[u'suicid', u'bomber', u'kill', u'nato', u'soldier', u'afghanistan']
[u'super', u'gold', u'product']
[u'tasmania', u'struggl', u'drought']
[u'tebbutt', u'embarrass', u'aust', u'histori', u'fumbl']
[u'teen', u'court', u'tennant', u'creek', u'stab']
[u'thai', u'school', u'shut', u'teacher', u'murder']
[u'time', u'run', u'argument']
[u'tissu', u'bank', u'rais', u'clone', u'fear']
[u'transair', u'ground', u'safeti', u'concern']
[u'turner', u'titan', u'train']
[u'offer', u'indigen', u'mental', u'health', u'qualif']
[u'poll', u'result', u'show', u'advantag', u'incumb']
[u'victori', u'adelaid']
[u'view', u'seek', u'harbour', u'develop']
[u'wafl', u'legend', u'die']
[u'wallac', u'gromit', u'name', u'best', u'featur', u'british']
[u'head', u'draw']
[u'wast', u'committe', u'demand', u'dismiss', u'answer']
[u'watson', u'unavail', u'adelaid']
[u'wesfarm', u'consid', u'expans', u'lind']
[u'widow', u'father', u'want', u'kovco', u'find', u'explain']
[u'bodi', u'iraq']
[u'water', u'restrict', u'tighten']
[u'adelaid', u'pitch', u'tip', u'crack']
[u'want', u'action', u'hick', u'trial']
[u'airbus', u'touch', u'sydney']
[u'alcohol', u'relat', u'brain', u'damag', u'revers', u'scientist']
[u'elect', u'prompt', u'mix', u'wind', u'farm', u'view']
[u'ararat', u'council', u'quit']
[u'attempt', u'negoti', u'fiji', u'militari', u'fail']
[u'australia', u'indonesia', u'secur', u'pact', u'provid']
[u'face', u'class', u'action', u'cole', u'rule']
[u'bainimarama', u'delay', u'return', u'fiji']
[u'beatti', u'firm', u'nuclear', u'power']
[u'beazley', u'downplay', u'poor', u'opinion', u'poll']
[u'beazley', u'poll']
[u'beef', u'produc', u'urg', u'declar', u'cattl', u'chemic']
[u'bendigo', u'like', u'retain', u'cabinet', u'spot']
[u'berlin', u'hop', u'santa']
[u'bermagui', u'seek', u'marin', u'park', u'compo']
[u'better', u'condit', u'firefight', u'northern']
[u'build', u'industri', u'back', u'youth', u'suicid', u'prevent']
[u'bullet', u'slam', u'slinger']
[u'bushfir', u'pilbara', u'nation', u'park', u'close']
[u'cairn', u'host', u'counter', u'terror', u'exercis']
[u'canadian', u'parliament', u'recognis', u'quebec', u'nation']
[u'canberran', u'water', u'econom']
[u'crash', u'inquest', u'hear', u'hospit', u'polit']
[u'keep', u'close', u'conserv', u'park', u'blaze']
[u'china', u'tighten', u'rule', u'organ', u'transplant']
[u'closer']
[u'closer']
[u'closer']
[u'emiss', u'acceler', u'scientist', u'warn']
[u'coalit', u'divid', u'singl', u'wheat', u'desk']
[u'coalit', u'divid', u'singl', u'desk', u'wheat']
[u'communiti', u'encourag', u'aborigin']
[u'connolli', u'plea', u'giteau', u'halv']
[u'cooloola', u'mayor', u'push', u'defens', u'drive']
[u'coonan', u'criticis', u'plan', u'util']
[u'corrupt', u'commiss', u'probe', u'school', u'program']
[u'council', u'inquiri', u'offic', u'highlight', u'irretriev']
[u'council', u'petit', u'seek', u'govt', u'biofuel']
[u'council', u'plea', u'support', u'joint', u'transport']
[u'council', u'investig', u'citi', u'centr', u'option']
[u'court', u'rule', u'worker', u'right', u'protest']
[u'crash', u'victim', u'father', u'give', u'place', u'plate', u'panel']
[u'crow', u'nest', u'council', u'green', u'light', u'expans', u'plan']
[u'deadlin', u'loom', u'wodonga', u'pool', u'submiss']
[u'death', u'threat', u'russian', u'journalist']
[u'decis', u'deregist', u'doctor', u'misconduct']
[u'digger', u'grand', u'daughter', u'want', u'donat']
[u'door', u'upper', u'hous', u'seat', u'close', u'minor']
[u'doubt', u'cast', u'joyc', u'inquiri']
[u'downer', u'pessimist', u'fiji', u'situat']
[u'workshop', u'discuss', u'drought', u'issu']
[u'driver', u'acquit', u'man', u'death', u'tri', u'regain']
[u'drought', u'wipe', u'megafauna', u'palaeontologist', u'say']
[u'eurobodalla', u'council', u'continu', u'push', u'hospit']
[u'major']
[u'fallon', u'deni', u'hong', u'kong', u'race', u'licens']
[u'govt', u'urg', u'stop', u'govt', u'water', u'plan']
[u'deni', u'asian', u'secur', u'concern']
[u'fifa', u'lift', u'iran', u'asian', u'game']
[u'fijian', u'head', u'talk', u'militari']
[u'fijian', u'hop', u'talk', u'avert', u'coup']
[u'crew', u'advantag', u'cooler', u'condit']
[u'firefight', u'like', u'face', u'difficult', u'weather']
[u'firefight', u'water', u'bomb', u'blaze']
[u'firm', u'financi', u'woe', u'hamper', u'plan', u'scout']
[u'fletcher', u'bank', u'vaughan']
[u'soldier', u'approach', u'labor']
[u'gatto', u'busi', u'associ', u'lose', u'unfair', u'dismiss']
[u'gaza', u'truce', u'hold']
[u'goldfield', u'esper', u'power', u'suppli', u'boost']
[u'govt', u'consid', u'law', u'deal']
[u'govt', u'inact', u'blame', u'taxi', u'passeng', u'assault']
[u'govt', u'divid', u'singl', u'desk', u'wheat', u'export']
[u'govt', u'aquif', u'meet']
[u'govt', u'incompet', u'fail', u'earlier']
[u'govt', u'reject', u'critic', u'timet', u'chang']
[u'govt', u'respons', u'futur', u'analyst']
[u'govt', u'troubl', u'kovco', u'report', u'leak']
[u'govt', u'timet', u'chang']
[u'govt', u'urg', u'introduc', u'log', u'area']
[u'grain', u'grower', u'want', u'clear', u'wheat', u'export', u'market']
[u'grain', u'handler', u'post', u'record', u'profit']
[u'green', u'group', u'lobbi', u'coal', u'expans']
[u'greeni', u'support', u'nuclear', u'power']
[u'group', u'effort', u'free', u'strand', u'whale']
[u'grower', u'applaud', u'cane', u'smut', u'detect', u'effort']
[u'grower', u'look', u'rebuild', u'wheat', u'export', u'reput']
[u'export', u'meet', u'export', u'demand']
[u'henri', u'sympathis', u'thorp']
[u'high', u'temperatur', u'work', u'firefight']
[u'holden', u'abandon', u'ajax', u'negoti']
[u'holden', u'consid', u'outsourc', u'part']
[u'holden', u'ford', u'abandon', u'ajax', u'negoti']
[u'holden', u'product', u'threat']
[u'hope', u'hold', u'rescu', u'chopper', u'push']
[u'howard', u'reject', u'labor', u'critic']
[u'hussey', u'back', u'unchang', u'squad']
[u'hick', u'pay', u'saddam']
[u'indonesian', u'woman', u'die', u'bird']
[u'inflat', u'fall', u'rat', u'wont']
[u'injur', u'dravid', u'seri']
[u'iraq', u'commit', u'stretch', u'command']
[u'iraqi', u'immigr', u'jail', u'wife', u'machet', u'threat']
[u'iraq', u'iran', u'discuss', u'iraqi', u'secur']
[u'iraqi', u'deserv', u'apolog']
[u'iraq', u'near', u'civil', u'annan']
[u'iraq', u'verg', u'civil', u'annan']
[u'isra', u'unveil', u'peac', u'plan']
[u'judd', u'back', u'swan', u'clash']
[u'knuckl', u'plea', u'git', u'halv']
[u'larkham', u'happi', u'line', u'experi']
[u'drink', u'sydney', u'club']
[u'launceston', u'hospit', u'smoke', u'year']
[u'chang', u'wont', u'solv', u'climat', u'chang', u'campbel']
[u'lightn', u'spark', u'north', u'west', u'fire']
[u'lightn', u'spark', u'pastor', u'area', u'blaze']
[u'local', u'govt', u'rat', u'curb', u'develop', u'pastoralist']
[u'local', u'labor', u'approach', u'elect']
[u'local', u'shoot', u'land', u'releas']
[u'mackenroth', u'threaten', u'legal', u'action']
[u'accus', u'polic', u'assault']
[u'charg', u'wagga', u'home', u'invas']
[u'market', u'fall']
[u'mayor', u'urg', u'home', u'owner', u'cyclon', u'damag']
[u'meet', u'highlight', u'pacif', u'highway', u'plan']
[u'meet', u'unlik', u'stop', u'fiji', u'coup', u'downer']
[u'merger', u'ensur', u'train', u'keep', u'track', u'watkin']
[u'meteor', u'put', u'light', u'riverland']
[u'milit', u'leader', u'set', u'condit', u'kashmir']
[u'evapor', u'pond', u'microscop']
[u'ajax', u'worker', u'stand']
[u'fire', u'burn', u'esper']
[u'movi', u'star', u'stay', u'safe', u'thank', u'jellyfish', u'expert']
[u'highlight', u'schooli', u'disrupt']
[u'push', u'open', u'speed', u'limit', u'stay']
[u'spotlight', u'water', u'issu']
[u'rang', u'blaze', u'threaten', u'public', u'safeti']
[u'mental', u'health', u'facil', u'anger', u'local']
[u'chang', u'australia', u'adelaid', u'test']
[u'north', u'korea', u'readi', u'return', u'nuclear', u'talk']
[u'highway', u'speed', u'limit', u'question']
[u'number', u'arm', u'robberi']
[u'opposit', u'remain', u'plan', u'plant']
[u'parent', u'undergo', u'drug', u'test', u'trial', u'better']
[u'parent', u'urg', u'help', u'young', u'driver', u'care']
[u'pedestrian', u'die', u'hervey']
[u'pioneer', u'villag', u'museum', u'introduc', u'water', u'save']
[u'condemn', u'victorian', u'teacher', u'ralli', u'plan']
[u'demand', u'apolog', u'minist']
[u'polic', u'road', u'crash', u'victim']
[u'polic', u'push', u'recruit']
[u'polic', u'recaptur', u'detent', u'centr', u'escape']
[u'polic', u'equip']
[u'pont', u'achiev', u'fifth', u'best', u'time', u'rat']
[u'poor', u'broadband', u'access', u'cost', u'economi', u'million']
[u'princess', u'mari', u'urg', u'lobbi', u'right']
[u'professor', u'win', u'award', u'alcohol', u'induc', u'brain']
[u'program', u'seek', u'boost', u'york', u'peninsula']
[u'public', u'join', u'hospit', u'board']
[u'pyrene', u'shire', u'assess', u'wind', u'farm', u'plan']
[u'transport', u'disgrac']
[u'quarantin', u'protocol', u'impos', u'avocado']
[u'quick', u'hawthorn', u'gold', u'coast', u'renouf']
[u'offici', u'predict', u'inflat', u'fall']
[u'record', u'earli', u'restrict', u'mitchel', u'river']
[u'region', u'bank', u'increas', u'profit']
[u'region', u'face', u'firefight', u'brace']
[u'region', u'urg', u'blood']
[u'report', u'highlight', u'heavi', u'cost', u'poor', u'internet']
[u'report', u'show', u'need', u'york', u'eyr', u'peninsula']
[u'report', u'support', u'water', u'pipelin', u'plan']
[u'resourc', u'boom', u'lift', u'port', u'shipment']
[u'risdon', u'offic', u'vote', u'manag', u'staff']
[u'risdon', u'prison', u'offic', u'strike', u'staff', u'number']
[u'rockhampton', u'reject', u'barrack', u'short', u'sight']
[u'rottnest', u'revel', u'polici', u'busi']
[u'erupt', u'wind', u'farm']
[u'rudd', u'gillard', u'prefer', u'beazley', u'poll']
[u'russia', u'favourit', u'davi', u'final']
[u'region', u'busi', u'confid']
[u'scientist', u'start', u'southern', u'ocean', u'studi']
[u'search', u'continu', u'miss', u'woman']
[u'sentenc', u'lenient']
[u'shire', u'recognis', u'tornado', u'clean', u'help']
[u'shop', u'centr', u'rockhampt', u'caravan']
[u'singl', u'wheat', u'desk', u'divid', u'coalit']
[u'face', u'brack', u'cabinet']
[u'resort', u'plan', u'trigger', u'environ', u'fear']
[u'snowi', u'hydro', u'museum', u'plan']
[u'socceroo', u'consid', u'darwin', u'base', u'amid', u'asian', u'secur']
[u'somali', u'islamist', u'accus', u'ethiopia', u'shell', u'town']
[u'spicer', u'sack', u'outrag']
[u'stirl', u'reject', u'clps', u'sentenc', u'plan']
[u'steal', u'generat', u'member', u'welcom', u'compens']
[u'struggl', u'mitsubishi', u'improv', u'sale', u'japan']
[u'sugar', u'industri', u'smut', u'impact', u'delay']
[u'supermarket', u'face', u'meat', u'price', u'probe']
[u'symond', u'criticis', u'wicket']
[u'firefight', u'expect', u'blaze', u'stop', u'spread']
[u'tasmania', u'pass', u'steal', u'generat', u'compens']
[u'accus', u'discrimin', u'newsread']
[u'terror', u'suspect', u'sack', u'fourth', u'legal', u'team']
[u'tevez', u'apologis', u'west', u'walkout']
[u'thousand', u'expect', u'flock', u'stabl', u'strand']
[u'thousand', u'citizenship', u'test']
[u'titan', u'fine', u'turner', u'train']
[u'trio', u'accus', u'kidnap', u'face', u'court']
[u'trio', u'arrest', u'alleg', u'kidnap']
[u'confid', u'regain', u'bodi', u'part', u'storag']
[u'union', u'rais', u'bank', u'build', u'societi', u'merger', u'question']
[u'uni', u'licenc', u'store', u'bodi', u'part', u'revok']
[u'uranium', u'debat', u'peculiar']
[u'deni', u'iraq', u'violenc', u'civil']
[u'vaughan', u'make', u'return', u'cricket']
[u'vaughan', u'return', u'cricket']
[u'sell', u'auction']
[u'demand', u'goulburn', u'murray', u'water', u'trade']
[u'villawood', u'peac', u'quiet', u'overnight', u'riot']
[u'voter', u'prefer', u'rudd', u'beazley', u'poll']
[u'nation', u'reject', u'push', u'export', u'monopoli']
[u'warn', u'issu', u'south', u'east', u'product']
[u'water', u'consumpt', u'fall', u'citi', u'bush']
[u'water', u'price', u'increas', u'say', u'expert']
[u'water', u'restrict', u'announc', u'caus', u'decemb']
[u'allow', u'heritag', u'list', u'rock']
[u'nuclear', u'facil']
[u'clear', u'tree', u'walkway', u'plan']
[u'wayward', u'harmi', u'get', u'work']
[u'western', u'grain', u'grower', u'ponder', u'cole', u'inquiri', u'fallout']
[u'wheat', u'farmer', u'debat', u'wheat', u'market']
[u'wildlif', u'evolv', u'surviv', u'toad', u'threat', u'research']
[u'wind', u'hamper', u'effort', u'contain', u'east', u'tamar', u'blaze']
[u'woodsid', u'drop', u'opposit', u'heritag', u'list']
[u'young', u'australian', u'attract', u'spiritu', u'aerob']
[u'youth', u'worker', u'unhappi', u'council', u'curfew', u'support']
[u'line', u'solv', u'power', u'problem', u'need', u'redman']
[u'kill', u'egyptian', u'collis']
[u'arrest', u'drug', u'crackdown']
[u'guard', u'kill', u'raid', u'baghdad', u'govt', u'build']
[u'teen', u'homeless', u'program', u'ax', u'parent', u'group']
[u'water', u'treatment', u'plant', u'oper', u'longreach']
[u'govt', u'urg', u'pull', u'union', u'sign']
[u'confirm', u'black', u'hawk', u'lose']
[u'agricultur', u'sector', u'remain', u'largest', u'water', u'user']
[u'alderman', u'say', u'govt', u'support', u'need']
[u'allianc', u'seek', u'freight', u'rail', u'buyback', u'time', u'frame']
[u'warn', u'cervic', u'cancer', u'complac']
[u'ambul', u'servic', u'say', u'southcar', u'chopper']
[u'amundsen', u'front', u'court', u'terror', u'charg']
[u'ashbourn', u'lawyer', u'oppos', u'document', u'releas', u'say']
[u'ashbourn', u'settlement', u'document', u'withhold', u'opposit']
[u'aust', u'back', u'region', u'preserv', u'fish', u'stock']
[u'australia', u'largest', u'biodiesel', u'refineri']
[u'aust', u'troop', u'defend', u'arrest', u'timor']
[u'aust', u'troop', u'meet', u'timor', u'rebel', u'leader']
[u'avenu', u'rescu', u'ajax', u'exhaust']
[u'announc', u'merger', u'plan']
[u'commit', u'singl', u'desk', u'say', u'chairman']
[u'face', u'legal', u'action']
[u'propos', u'compani', u'split']
[u'split', u'oper']
[u'baillieu', u'say', u'reshuffl', u'disappoint']
[u'ballarat', u'firm', u'build', u'paddl', u'steamer']
[u'bank', u'tri', u'employe', u'howard', u'say']
[u'associ', u'seek', u'better', u'juror']
[u'berri', u'hospit', u'best', u'treat', u'accid', u'victim']
[u'billiton', u'defend', u'conduct']
[u'billiton', u'review', u'tigri', u'deal']
[u'deni', u'role', u'iraq', u'wheat', u'sale', u'fraud']
[u'bike', u'helmet', u'help', u'save', u'boy', u'life']
[u'bishop', u'wife', u'nullarbor', u'flight']
[u'black', u'hawk', u'involv', u'fijian', u'incid']
[u'black', u'hawk', u'lose', u'near', u'fiji']
[u'brack', u'unveil', u'team']
[u'braham', u'back', u'reinstat', u'hospit', u'chapel']
[u'bryant', u'lawyer', u'plead', u'guilti', u'theft']
[u'bull', u'capitalis', u'controversi']
[u'bull', u'bushrang', u'tough', u'chase']
[u'bushfir', u'threaten', u'properti']
[u'bushfir', u'threaten', u'home', u'central', u'west']
[u'bush', u'herald', u'nato', u'deal', u'aust', u'japan']
[u'busi', u'usual', u'aztec', u'amidst', u'takeov']
[u'busi', u'be', u'keeper', u'confid', u'rain']
[u'caloundra', u'resid', u'plan', u'document']
[u'campbel', u'weigh', u'traveston', u'inquiri', u'decis']
[u'canberra', u'airport', u'warn', u'trale', u'hous', u'project']
[u'cannavaro', u'zidan', u'ronaldinho', u'contend', u'fifa']
[u'castro', u'absent', u'birthday', u'celebr']
[u'cazali', u'expect', u'carpent', u'tinto', u'court']
[u'central', u'secur', u'ministeri', u'spot']
[u'cervic', u'cancer', u'vaccin', u'nation', u'program']
[u'child', u'death', u'investig', u'show', u'doc']
[u'china', u'clear', u'zhang', u'murder', u'trial']
[u'chopper', u'crash', u'victim', u'sister', u'carri', u'cattl']
[u'closer']
[u'closer']
[u'club', u'umpir', u'wear', u'black', u'ribbon', u'hair']
[u'comment', u'seek', u'bright', u'supermarket', u'plan']
[u'compani', u'secur', u'flour', u'export', u'contract']
[u'condom', u'scheme', u'promis', u'indigen', u'financi', u'reward']
[u'cotton', u'farmer', u'hang', u'thread']
[u'council', u'ignor', u'advic', u'firm', u'airport', u'access']
[u'council', u'look', u'build', u'citi', u'centr', u'facil']
[u'councillor', u'complain', u'film', u'cost', u'museum']
[u'council', u'plan', u'futur', u'parkland']
[u'council', u'play', u'blame', u'game', u'outrigg', u'decis']
[u'council', u'reject', u'youth', u'facil', u'plan']
[u'court', u'jail', u'drug', u'possess']
[u'worker', u'give', u'evid', u'saleswoman', u'inquest']
[u'crash', u'victim', u'father', u'campaign', u'chang']
[u'cruis', u'ship', u'help', u'boost', u'south', u'west', u'coffer']
[u'darwin', u'mayor', u'prepar', u'fight', u'fraud', u'alleg']
[u'davi', u'elect', u'liber', u'upper', u'hous', u'leader']
[u'death', u'footi', u'good', u'viewer', u'demetriou']
[u'demetriou', u'back', u'bomber', u'ahead', u'michael', u'probe']
[u'dept', u'work', u'women', u'refug', u'open']
[u'develop', u'get', u'holiday', u'apart', u'green', u'light']
[u'dust', u'delay', u'hous', u'develop', u'stage']
[u'face', u'test', u'spi', u'suspect', u'poison']
[u'emerg', u'worker', u'health', u'program', u'draw', u'global']
[u'energi', u'provid', u'seek', u'tree', u'solut']
[u'england', u'warn', u'hayden']
[u'england', u'ash', u'fight', u'hoggard']
[u'water', u'avail', u'winegrow']
[u'guantanamo', u'inmat', u'refus', u'visa', u'promot', u'film']
[u'race', u'club', u'treasur', u'order', u'repay', u'fund']
[u'fijian', u'armi', u'chief', u'meet', u'ultimatum']
[u'fijian', u'say', u'talk', u'possibl']
[u'fiji', u'crisi', u'talk']
[u'fiji', u'militari', u'leader', u'meet']
[u'firefight', u'battl', u'fresh', u'blaze', u'northern']
[u'firefight', u'contain', u'bundal', u'blaze']
[u'firefight', u'work', u'protect', u'kurwongbah', u'home']
[u'injur', u'fraser', u'tourist', u'overturn']
[u'forum', u'put', u'spotlight', u'wild', u'control']
[u'gaia', u'scientist', u'lovelock', u'predict', u'planetari', u'wipe']
[u'gatton', u'prison', u'consult', u'poor', u'time']
[u'gilgandra', u'communiti', u'bank', u'open', u'busi']
[u'goldenfield', u'ponder', u'harsher', u'water', u'restrict']
[u'goulburn', u'win', u'water', u'save', u'award']
[u'govt', u'clear', u'appoint']
[u'grazier', u'warn', u'ryegrass', u'threat']
[u'group', u'oppos', u'hospit', u'seek', u'referendum']
[u'hail', u'storm', u'slash', u'wide', u'burnett', u'citrus', u'crop']
[u'harmison', u'target', u'net']
[u'helicopt', u'rescu', u'uluru', u'tourist', u'wear']
[u'henin', u'hardenn', u'head', u'strong', u'sydney', u'field']
[u'high', u'commiss', u'staff', u'famili', u'urg', u'leav', u'fiji']
[u'histor', u'medal', u'auction']
[u'leader', u'ignor', u'corrupt']
[u'hunter', u'storm', u'busi']
[u'iemma', u'plan', u'free', u'broadband', u'major', u'cbds']
[u'inflat', u'rat', u'retail', u'spend']
[u'medicar', u'fund', u'limit', u'go']
[u'jackson', u'readi', u'korean', u'challeng']
[u'labor', u'call', u'nation', u'summit', u'youth', u'road', u'toll']
[u'labor', u'figur', u'unit', u'support', u'beazley']
[u'labor', u'dodg', u'doorstop', u'leadership', u'question']
[u'labor', u'quiet', u'leadership', u'specul']
[u'labor', u'say', u'murray', u'river', u'water', u'promis', u'break']
[u'labor', u'want', u'nation', u'summit', u'plater', u'death']
[u'lantern', u'walk', u'politicis', u'council', u'chief']
[u'late', u'goal', u'seal', u'sheffield']
[u'lawyer', u'letter', u'impertin', u'brimbl', u'inquest', u'tell']
[u'licens', u'premis', u'urg', u'combat']
[u'lobbi', u'group', u'doubt', u'govt', u'commit', u'rail', u'line']
[u'local', u'teacher', u'join', u'work', u'law', u'protest']
[u'lose', u'contract', u'creat', u'veteran', u'care', u'concern']
[u'afford', u'impact', u'construct']
[u'manag', u'jail', u'death', u'miner', u'china']
[u'hurt', u'fall']
[u'mansfield', u'move', u'tougher', u'water', u'ban']
[u'mareeba', u'ratepay', u'warn', u'unpaid', u'rat']
[u'market', u'bounc', u'loss']
[u'meet', u'fail', u'eas', u'downer', u'fiji', u'concern']
[u'minist', u'confid', u'china', u'wont', u'execut', u'zhang']
[u'minist', u'tell', u'time', u'review']
[u'firefight', u'help', u'battl', u'riverland', u'blaze']
[u'call', u'lancelin', u'defenc', u'train', u'closur']
[u'unhappi', u'currumbin', u'hideaway', u'approv']
[u'gibson', u'iron', u'hint', u'aztec', u'appoint']
[u'nation', u'leader', u'tell', u'come', u'clean', u'drive']
[u'nato', u'signal', u'troop', u'reinforc', u'afghanistan']
[u'nelson', u'attend', u'open', u'revamp', u'rockhampton']
[u'nlis', u'work', u'major', u'saleyard']
[u'voter', u'face', u'fine']
[u'north', u'coast', u'record', u'high', u'domest', u'violenc']
[u'home', u'buyer', u'receiv', u'rate', u'repriev']
[u'opposit', u'call', u'corrupt', u'commiss']
[u'plan', u'program', u'peopl', u'better', u'tenant']
[u'radioact', u'dump', u'pass', u'lower', u'hous']
[u'odriscol', u'land', u'nation', u'oconnel']
[u'olympian', u'warn', u'sweet', u'sour', u'steroid']
[u'ombudsman', u'express', u'fund', u'frustrat']
[u'ombudsman', u'say', u'duti', u'policeman', u'punch']
[u'dead', u'miss', u'black', u'hawk', u'crash', u'fiji']
[u'park', u'fire', u'expect', u'hurt', u'tourism']
[u'parti', u'shift', u'focus', u'feder', u'poll']
[u'patchi', u'blaze', u'maintain', u'grip', u'nation', u'park']
[u'patrick', u'termin', u'delay', u'cost']
[u'pidg', u'skip', u'bowl']
[u'plan', u'highway', u'intersect', u'chang']
[u'announc', u'cervic', u'cancer', u'vaccin', u'program']
[u'polic', u'charg', u'perth', u'drug', u'haul', u'worth', u'million']
[u'polic', u'recov', u'steal', u'copper', u'wire']
[u'polic', u'look', u'reliabl', u'brimbl', u'case']
[u'polic', u'union', u'boss', u'face', u'court', u'contempt', u'charg']
[u'pope', u'call', u'religi', u'uniti']
[u'prais', u'firefight', u'tackl', u'lightn', u'spark']
[u'prendergast', u'decis', u'year']
[u'press', u'conf', u'chief', u'marshal', u'angus', u'houston']
[u'princess', u'mari', u'famili', u'leav', u'tasmania']
[u'take', u'action', u'coal', u'expans']
[u'terror', u'charg', u'request', u'cell']
[u'recycl', u'end', u'landfil', u'union', u'say']
[u'region', u'christma', u'drought', u'declar']
[u'resid', u'group', u'urg', u'link', u'road', u'altern']
[u'resourc', u'council', u'reject', u'assess', u'base']
[u'stand', u'roxbi', u'down', u'ticket', u'price']
[u'richmond', u'brown', u'keen', u'bounc']
[u'rinker', u'reject', u'takeov', u'offer']
[u'risdon', u'offic', u'work', u'insist']
[u'road', u'reopen', u'truck', u'blaze']
[u'roar', u'pick', u'young', u'socceroo', u'midfield']
[u'rspca', u'warn', u'abus']
[u'saff', u'urg', u'fund', u'help', u'tafe']
[u'african', u'parliament', u'pass', u'marriag']
[u'schifcofsk', u'line', u'world', u'team']
[u'senior', u'public', u'servant', u'call', u'ministeri', u'staff']
[u'shackl', u'internet', u'communiti']
[u'ship', u'allow', u'load', u'livestock', u'despit', u'aqi']
[u'korean', u'presid', u'bind', u'australia']
[u'slide', u'continu', u'razor', u'slinger']
[u'slow', u'start', u'christma', u'trade', u'worri', u'busi']
[u'solid', u'dead', u'miss', u'black', u'hawk', u'crash']
[u'specul', u'grow', u'labor', u'leadership']
[u'spenc', u'pleas', u'behaviour', u'schooli']
[u'staff', u'captain', u'deni', u'agre', u'brimbl', u'death']
[u'stingray', u'stab', u'fisherman', u'chest']
[u'stock', u'death', u'link', u'ryegrass', u'poison']
[u'strong', u'quak', u'destroy', u'build', u'indonesia']
[u'supplier', u'readi', u'cervic', u'cancer', u'vaccin']
[u'crew', u'build', u'break', u'protect', u'road']
[u'tasmanian', u'urg', u'offer', u'spare', u'room', u'homeless']
[u'inquiri', u'suspend', u'trial', u'prejudic', u'concern']
[u'teacher', u'protest', u'expect', u'disrupt', u'class']
[u'teen', u'critic', u'condit', u'lorn', u'bash']
[u'teen', u'injur', u'crash', u'polic', u'chase']
[u'tourist', u'assault', u'prompt', u'polic', u'warn']
[u'trade', u'deficit', u'hit']
[u'tumut', u'council', u'toughen', u'water', u'ban']
[u'uncertainti', u'surround', u'age', u'care', u'project']
[u'union', u'rais', u'nation', u'secur', u'concern']
[u'union', u'prepar', u'protest']
[u'market', u'flat', u'mix', u'econom', u'data']
[u'blaze', u'consid', u'suspici']
[u'vandal', u'target', u'histor', u'societi', u'site']
[u'vaughan', u'comeback', u'end', u'quick']
[u'auction']
[u'farmer', u'join', u'gore', u'climat', u'chang', u'campaign']
[u'water', u'author', u'offer', u'job', u'farmer']
[u'contribut', u'walli', u'foreman', u'foundat']
[u'wear', u'brazil', u'shirt', u'ultim', u'punish']
[u'wheat', u'grower', u'snub', u'favour', u'feedlot']
[u'woman', u'front', u'court', u'accus', u'accessori']
[u'woman', u'sue', u'salon', u'blow', u'injuri']
[u'woman', u'face', u'bestial', u'charg']
[u'work', u'accid', u'victim', u'stabl', u'condit']
[u'world', u'biggest', u'cargo', u'ship', u'dock', u'dampier']
[u'yulara', u'airport', u'oper', u'say', u'expans', u'cost']
[u'hour', u'shift', u'worri', u'central', u'polic']
[u'christian', u'execut', u'rival', u'sect', u'murder']
[u'child', u'abus', u'case', u'await', u'investig']
[u'corps', u'iraq']
[u'abba', u'rice', u'expans', u'middl', u'east', u'truce']
[u'abc', u'corner', u'take', u'gold', u'walkley']
[u'name', u'black', u'hawk', u'pilot', u'kill', u'crash']
[u'airport', u'warn', u'flight', u'path', u'nois']
[u'allianc', u'push', u'inland', u'rail', u'link', u'fund']
[u'ancient', u'year', u'ahead', u'time']
[u'aussi', u'guus', u'contempl', u'return']
[u'aust', u'malaysia', u'promot', u'inter', u'faith', u'dialogu']
[u'australia', u'confid', u'win', u'spin', u'battl']
[u'australian', u'golfer', u'domin', u'zealand', u'open']
[u'australia', u'late', u'decis', u'mcgrath']
[u'plan', u'perman', u'solut']
[u'beazley', u'deni', u'reshuffl', u'rethink']
[u'nickel', u'project', u'cost', u'extra']
[u'birdsvill', u'swelter', u'degre', u'heat']
[u'black', u'hawk', u'pilot', u'name']
[u'bodi', u'black', u'hawk', u'crash', u'victim', u'head', u'home']
[u'breuer', u'claim', u'region', u'support']
[u'brimbl', u'wit', u'tell', u'nightclub', u'drug', u'deal']
[u'brimbl', u'wouldnt', u'take', u'drug', u'inquest', u'tell']
[u'brisban', u'host', u'nation', u'champ']
[u'british', u'tourist', u'pay', u'uluru', u'rescu']
[u'break', u'hill', u'share', u'communiti', u'water', u'grant']
[u'bunburi', u'join', u'work', u'law', u'nation', u'protest']
[u'bush', u'back', u'courag', u'iraqi']
[u'bushfir', u'burn', u'kilometr', u'town']
[u'bushfir', u'control']
[u'bush', u'maliki', u'meet', u'fall']
[u'bush', u'snub', u'iraq', u'leader']
[u'busi', u'lobbi', u'label', u'ralli', u'turnout', u'fizzer']
[u'call', u'money', u'countri', u'club']
[u'call', u'nelson', u'foreshor', u'facelift', u'idea']
[u'call', u'increas', u'fund', u'region', u'club']
[u'cancer', u'caus', u'toxin', u'hunter', u'microscop']
[u'carney', u'apologis', u'mislead', u'document']
[u'carpent', u'announc', u'plan', u'protect', u'worker']
[u'central', u'militari', u'exercis', u'boost', u'singapor']
[u'hold', u'grampian', u'ahead', u'wind']
[u'china', u'open', u'aid', u'clinic']
[u'closer']
[u'comment', u'predict', u'unsteadi', u'share', u'price']
[u'communist', u'salut']
[u'communiti', u'group', u'foreshor', u'revamp']
[u'conservationist', u'win', u'remov', u'kill']
[u'contract', u'build', u'gold', u'coast', u'desal', u'plant']
[u'coonan', u'slam', u'telstra', u'broadband', u'speed']
[u'corrupt', u'probe', u'target', u'council']
[u'councillor', u'warn', u'aero', u'club', u'risk', u'insur']
[u'council', u'staff', u'contain', u'spill']
[u'court', u'jail', u'homeless', u'pair', u'cabbi', u'hold']
[u'crew', u'monitor', u'riverland']
[u'darwin', u'cyclon', u'shelter', u'strengthen']
[u'death', u'rate', u'lowest', u'year']
[u'defenc', u'chief', u'back', u'black', u'hawk']
[u'defend', u'lawyer', u'blame', u'delay']
[u'doctor', u'group', u'back', u'cervic', u'cancer', u'vaccin', u'access']
[u'downer', u'say', u'fiji', u'militari', u'display', u'unnecessari']
[u'drought', u'salt', u'toler', u'crop', u'avail']
[u'drought', u'see', u'dairi', u'plan', u'fewer', u'supplier']
[u'dunda', u'shire', u'councillor', u'resign']
[u'nino', u'benefit', u'fish', u'aquacultur']
[u'urg', u'suspend', u'turkey', u'membership', u'talk']
[u'expert', u'determin', u'hotel', u'site', u'home', u'disus']
[u'export', u'tip', u'offer', u'south', u'west', u'busi']
[u'rugbi', u'leagu', u'player', u'face', u'cocain', u'charg']
[u'farmer', u'plead', u'guilti', u'swill', u'feed', u'pig']
[u'farmer', u'tell', u'govt', u'invest', u'infrastructur']
[u'farmer', u'thumb', u'nose', u'grid', u'rule']
[u'feasibl', u'studi', u'examin', u'marin', u'facil', u'issu']
[u'fergi', u'deni', u'gigg', u'spat']
[u'fijian', u'militari', u'chief', u'reject', u'concess']
[u'fiji', u'condemn', u'aust', u'travel', u'warn']
[u'fiji', u'militari', u'chief', u'reject', u'concess', u'issu']
[u'fiji', u'bow', u'militari', u'demand', u'coup', u'fear', u'eas']
[u'firefight', u'control', u'suspici', u'scrub']
[u'fire', u'continu', u'burn']
[u'fishermen', u'plead', u'consum', u'local']
[u'fisher', u'urg', u'tougher', u'wilson', u'inlet', u'restrict']
[u'flintoff', u'confid', u'england', u'adelaid']
[u'fruit', u'grower', u'unhappi', u'import', u'decis']
[u'fund', u'boost', u'allow', u'final', u'work', u'bourk']
[u'fund', u'offer', u'drought', u'affect', u'communiti']
[u'gang', u'rapist', u'sentenc', u'increas']
[u'ganguli', u'recal', u'south', u'african', u'test', u'seri']
[u'explor']
[u'gibbon', u'reveal', u'drought', u'proof', u'plan']
[u'gibb', u'wear', u'covet', u'blue', u'number']
[u'goulburn', u'water', u'workshop', u'begin']
[u'govt', u'agre', u'solon', u'compens']
[u'govt', u'agre', u'substanti', u'solon', u'compens']
[u'govt', u'defend', u'rail', u'freight', u'rat']
[u'govt', u'examin', u'council', u'email', u'investig']
[u'govt', u'highlight', u'tourism', u'market', u'plan']
[u'govt', u'pressur', u'freight', u'rail', u'buyback']
[u'govt', u'seek', u'strike', u'balanc', u'chemic']
[u'govt', u'fund', u'csls', u'fever', u'vaccin', u'factori']
[u'govt', u'travel', u'spend', u'unaccept']
[u'govt', u'urg', u'boost', u'silver', u'chain', u'fund']
[u'graincorp', u'profit', u'jump']
[u'graincorp', u'unhappi', u'chang']
[u'green', u'halt', u'east', u'gippsland', u'log']
[u'green', u'urg', u'minimum', u'safeti', u'standard', u'truck']
[u'guarante', u'fail', u'allay', u'uranium', u'mine', u'fear']
[u'hammer', u'keen', u'continu', u'play', u'coach']
[u'hobart', u'intern', u'attract', u'class', u'field']
[u'home', u'owner', u'prepar', u'blaze']
[u'hop', u'contain', u'near', u'putti']
[u'howard', u'abdullah', u'disagre', u'troop', u'iraq']
[u'ill', u'forc', u'yellow', u'wiggl', u'quit']
[u'immigr', u'dept', u'meet', u'employ', u'temporari']
[u'inact', u'frustrat', u'drought', u'stricken', u'farmer']
[u'inexperi', u'attitud', u'young', u'driver', u'need']
[u'inquest', u'hear', u'berri', u'hospit', u'main']
[u'produc', u'babi']
[u'japan', u'concern', u'ftas', u'impact', u'farmer']
[u'kidman', u'crown', u'hollywood', u'highest', u'pay', u'actress']
[u'kosmina', u'expect', u'muscat', u'skip', u'leagu', u'clash']
[u'labor', u'leadership', u'stand']
[u'lack', u'local', u'talent', u'forc', u'anyo', u'oversea']
[u'reform', u'commiss', u'review', u'client', u'privileg']
[u'lennon', u'deni', u'appeas', u'member', u'hospit']
[u'lightn', u'blame', u'south', u'east', u'fire']
[u'lightn', u'spark', u'fire']
[u'lion', u'nathan', u'takeov', u'fight', u'cost', u'cooper']
[u'lower', u'hous', u'begin', u'debat', u'stem', u'cell']
[u'guilti', u'rap', u'murder', u'real', u'estat']
[u'maintain', u'spot', u'chelsea']
[u'market', u'reach', u'record', u'strong', u'lead']
[u'mcgrath', u'doubt', u'adelaid', u'test']
[u'meet', u'reject', u'park', u'plan', u'back', u'secur']
[u'deni', u'bail', u'gold', u'coast', u'shoot']
[u'militari', u'exercis', u'fuel', u'fiji', u'tension']
[u'miner', u'say', u'west', u'project', u'subject', u'tougher']
[u'minist', u'reject', u'home', u'servic', u'chang', u'concern']
[u'mistrial', u'declar', u'gold', u'coast', u'stab', u'case']
[u'urg', u'probe', u'wrong', u'jail']
[u'lead', u'consist', u'disast', u'manag']
[u'play', u'protest']
[u'murray', u'fish', u'moratorium', u'consider']
[u'nasa', u'clear', u'discoveri', u'launch']
[u'nativ', u'indian', u'upset', u'quebec', u'recognit']
[u'newspap', u'deliv', u'news', u'north', u'coast']
[u'wiggl', u'skivvi']
[u'korea', u'wont', u'nuclear', u'weapon', u'unilater']
[u'date', u'aust', u'malaysia', u'deal']
[u'quick', u'solut', u'plead', u'andrew']
[u'plan', u'wheel', u'drive', u'noosa', u'north']
[u'northern', u'state', u'biggest', u'water', u'user']
[u'moot', u'drug', u'test', u'regim']
[u'announc', u'power', u'line', u'upgrad']
[u'appl', u'import', u'riski', u'aust', u'grower']
[u'hollywood']
[u'opposit', u'govt', u'trade', u'barb', u'law']
[u'origin', u'kelli', u'featur', u'film', u'screen']
[u'investig', u'corish', u'underpay', u'claim']
[u'pakistan', u'take', u'control', u'windi', u'test']
[u'palm', u'island', u'reject', u'repriev', u'scheme']
[u'petrol', u'price', u'fall', u'boost', u'retail', u'spend']
[u'demand', u'apolog', u'rich']
[u'polic', u'probe', u'suspici', u'death']
[u'polic', u'seek', u'lorn', u'assault']
[u'polic', u'union', u'want', u'meet', u'minist']
[u'pont', u'warn', u'complac']
[u'poor', u'drive']
[u'portland', u'wind', u'farm', u'stage', u'start']
[u'public', u'consult', u'gatton', u'prison', u'propos']
[u'pursuit', u'prompt', u'wit', u'question', u'polic', u'action']
[u'polic', u'complet', u'investig', u'patel']
[u'radioact', u'trace', u'plan']
[u'rate', u'rise', u'tip', u'impact', u'christma', u'spend']
[u'reconcili', u'movement', u'attack', u'council', u'attitud']
[u'report', u'claim', u'bulli', u'yiprinya', u'school', u'staff']
[u'report', u'near', u'collis', u'find', u'fault', u'radar']
[u'research', u'trial', u'botox', u'menstrual', u'pain']
[u'resid', u'supermarket', u'plan', u'worri']
[u'reynold', u'declin', u'stand', u'stott', u'despoja', u'spot']
[u'riverina', u'worker', u'join', u'work', u'law', u'protest']
[u'roadsid', u'drug', u'test', u'gear', u'question']
[u'royal', u'report', u'admit', u'phone', u'tap']
[u'rudolph', u'runner']
[u'water', u'restrict', u'toughen']
[u'scott', u'campaign', u'anzac', u'parad', u'toilet', u'block']
[u'search', u'continu', u'miss', u'black', u'hawk', u'offic']
[u'sensat', u'claim', u'brimbl', u'inquest']
[u'vote', u'water', u'recycl']
[u'sever', u'storm', u'caus', u'thousand', u'dollar', u'damag']
[u'korea', u'confirm', u'troop', u'leav', u'iraq']
[u'korea', u'flag', u'complet', u'troop', u'withdraw', u'iraq']
[u'socceroo', u'name', u'asian', u'team', u'year']
[u'aust', u'troop', u'return', u'timor']
[u'springbok', u'black', u'captain']
[u'stingray', u'victim', u'consid', u'lucki', u'aliv']
[u'storm', u'leav', u'thousand', u'powerless']
[u'super', u'typhoon', u'durian', u'hit', u'eastern', u'philippin']
[u'tattersal', u'herald', u'futur', u'game', u'giant']
[u'cut', u'encourag', u'industri', u'growth']
[u'taxpay', u'burden', u'solon', u'case', u'incompet']
[u'teacher', u'walk', u'protest']
[u'temporari', u'closur', u'more', u'matern', u'ward', u'possibl']
[u'thousand', u'attend', u'protest', u'adelaid']
[u'thousand', u'march', u'law']
[u'thousand', u'protest', u'law']
[u'thousand', u'ralli', u'law', u'darwin']
[u'transit', u'guard', u'give', u'green', u'light', u'pepper']
[u'troop', u'leav', u'tonga']
[u'group', u'popul', u'australia', u'research']
[u'ultra', u'fine', u'wool', u'bale', u'sell', u'season', u'record']
[u'union', u'fear', u'worker', u'penalis', u'protest']
[u'union', u'highlight', u'need', u'closur']
[u'union', u'pleas', u'ralli', u'turnout']
[u'union', u'brand', u'protest', u'success']
[u'union', u'hail', u'ralli']
[u'union', u'hail', u'ralli', u'despit', u'smaller', u'turnout']
[u'union', u'maintain', u'pressur', u'govt']
[u'peacekeep', u'accus', u'child', u'abus']
[u'firm', u'promot', u'plum', u'base', u'tablet']
[u'send', u'troop', u'baghdad']
[u'vendi', u'secur', u'mayor', u'term']
[u'wagga', u'replac', u'retir', u'wiggl']
[u'infrastructur', u'group', u'sign', u'china', u'rail', u'firm']
[u'keep', u'quiet', u'renew', u'energi', u'target']
[u'die', u'fall', u'stack', u'bale']
[u'memori', u'vandal', u'spark', u'outrag']
[u'know', u'play', u'pietersen', u'pont']
[u'welsh', u'aim', u'nation', u'mileston']
[u'wiggl', u'sadden', u'colleagu', u'departur']
[u'wildlif', u'evolv', u'cope', u'cane', u'toad']
[u'wollongong', u'includ', u'broadband', u'plan']
[u'woman', u'drown', u'bateman', u'beach']
[u'woman', u'face', u'court', u'accus', u'assault']
[u'worker', u'entitl', u'cherri', u'picker', u'accid']
[u'yellow', u'wiggl', u'expect', u'quit']
[u'yellow', u'wiggl', u'quit']
[u'yousuf', u'break', u'richard', u'run', u'record']
[u'zone', u'plan', u'marin', u'park', u'releas']
[u'injur', u'lanka', u'suicid', u'attack']
[u'project', u'extend', u'northpark', u'life']
[u'hour', u'summer', u'polic', u'forster']
[u'dead', u'philippin', u'typhoon', u'slide']
[u'week', u'trade', u'see', u'potenti', u'myer', u'lure']
[u'abbott', u'call', u'polici', u'rethink']
[u'accus', u'child', u'killer', u'undergo', u'psych', u'test']
[u'adelaid', u'skyshow', u'cancel']
[u'releas', u'miss', u'soldier']
[u'adrenalin', u'rush', u'save', u'freeway', u'crash']
[u'aid', u'figur', u'prompt', u'better', u'educ']
[u'play', u'roger', u'switch']
[u'ash', u'podcast', u'maxwel', u'damien', u'fleme']
[u'aunti', u'celebr', u'year']
[u'aust', u'dollar', u'hit', u'month', u'high']
[u'barossa', u'manag', u'plan', u'come']
[u'beatti', u'outlin', u'recycl', u'water', u'content']
[u'beatti', u'step', u'attack', u'nuttal']
[u'beazley', u'announc', u'leadership', u'ballot']
[u'beazley', u'call', u'labor', u'leadership', u'ballot']
[u'beazley', u'call', u'leadership', u'ballot']
[u'belief', u'hamper', u'treatment', u'aid', u'suffer']
[u'nickel', u'project', u'cost', u'blow', u'billion']
[u'fuel', u'price', u'chang', u'expect']
[u'billet', u'take', u'athlet', u'award']
[u'billet', u'take', u'athlet', u'prize']
[u'black', u'hawk', u'floatat', u'bag', u'deploy']
[u'black', u'hawk', u'pilot', u'widow', u'speak', u'lovabl', u'rogu']
[u'brack', u'cabinet', u'swear']
[u'brimbl', u'evid', u'fals', u'say', u'polic', u'commission']
[u'brimbl', u'inquest', u'adjourn']
[u'brimbl', u'investig', u'progress', u'coron', u'tell']
[u'bullimor', u'dock', u'hobart']
[u'cloud', u'seed', u'consider']
[u'carer', u'homeless']
[u'carpent', u'back', u'beazley']
[u'carpent', u'stand', u'embattl', u'ravlich']
[u'central', u'west', u'firefight', u'face', u'weather', u'threat']
[u'charg', u'creat', u'uncertainti', u'mayor', u'futur']
[u'child', u'murder', u'lewthwait', u'question']
[u'chines', u'human', u'right', u'activist', u'send', u'jail']
[u'chines', u'research', u'lose', u'appeal', u'jail', u'term']
[u'clark', u'make', u'doubl', u'breakthrough']
[u'closer']
[u'closer']
[u'collingwood', u'bell', u'steadi', u'england']
[u'commentari', u'adelaid', u'highlight']
[u'confer', u'hear', u'need', u'age', u'care', u'servic']
[u'cost', u'blow', u'forc', u'sport', u'facil', u'rethink']
[u'council', u'get', u'updat', u'west', u'dapto', u'transport', u'link']
[u'council', u'green', u'light', u'pool']
[u'council', u'promis', u'address', u'releas', u'ratepay']
[u'crew', u'aerial', u'bomber', u'tackl', u'burrungl']
[u'crew', u'fight', u'contain', u'bushfir']
[u'crown', u'argu', u'jack', u'thoma', u'retrial']
[u'dairi', u'farmer', u'attitud', u'environ', u'chang']
[u'deputi', u'mayor', u'undecid', u'mayor', u'race']
[u'disciplin', u'threat', u'keep', u'worker', u'away']
[u'diseas', u'fear', u'appl', u'import']
[u'doctor', u'suspect', u'russian', u'poison']
[u'dozen', u'kill', u'somalia', u'suicid', u'blast', u'polic']
[u'draft', u'plan', u'urg', u'tourism', u'cossack']
[u'drought', u'creat', u'sport', u'club', u'worri']
[u'drought', u'meatwork', u'drop', u'shift']
[u'educ', u'dont', u'legisl', u'breed']
[u'england', u'fight']
[u'england', u'adelaid']
[u'england', u'unchang', u'adelaid']
[u'probe', u'lake', u'death']
[u'longoria']
[u'rugbi', u'leagu', u'player', u'court', u'drug', u'charg']
[u'fairbairn', u'level', u'critic']
[u'famili', u'violenc', u'intervent', u'project', u'earn', u'prais']
[u'farina', u'focus', u'glori', u'clash']
[u'farmer', u'rush', u'sell', u'cattl']
[u'back', u'south', u'africa', u'world']
[u'figur', u'highlight', u'wagga', u'condit']
[u'fiji', u'militari', u'extend', u'coup', u'deadlin']
[u'fiji', u'polic', u'commission', u'reject', u'resign', u'demand']
[u'firefight', u'face', u'danger', u'start', u'summer']
[u'firefight', u'tackl', u'north', u'west']
[u'firefight', u'monitor', u'west', u'coast', u'blaze']
[u'firm', u'fin', u'worker', u'injuri']
[u'firm', u'hop', u'spray', u'condom', u'offer', u'snug']
[u'glenn', u'miln', u'apologis', u'walk']
[u'rudd', u'announc', u'leadership', u'tilt']
[u'stott', u'despoja', u'senat', u'seat']
[u'exec', u'step', u'compani']
[u'corner', u'take', u'walkley']
[u'foxtel', u'cabl', u'servic', u'crash']
[u'fund', u'albani', u'reconcili', u'project']
[u'gibbon', u'decid', u'leadership', u'vote']
[u'goondiwindi', u'ban', u'water', u'park', u'ski']
[u'govt', u'back', u'decis', u'increas', u'water']
[u'govt', u'eager', u'await', u'final', u'vote', u'count']
[u'govt', u'join', u'outrag', u'memori', u'vandal']
[u'govt', u'reject', u'leas', u'propos']
[u'grave', u'fear', u'strand', u'whale']
[u'grazier', u'disgust', u'altern', u'consid']
[u'griffith', u'librari', u'close', u'door']
[u'haystack', u'blaze', u'cut', u'highway', u'visibl']
[u'heart', u'passageway', u'link', u'migrain']
[u'highway', u'reopen', u'tanker', u'crash']
[u'hood', u'award']
[u'hopeval', u'polic', u'reject', u'bash', u'claim']
[u'record', u'western']
[u'hundr', u'fear', u'dead', u'philippin', u'mudslid']
[u'illawarra', u'play', u'work', u'law', u'protest']
[u'interview', u'bell']
[u'interview', u'stuart', u'clark']
[u'iraqi', u'control', u'secur', u'year', u'maliki']
[u'irrig', u'reject', u'water', u'trade', u'idea']
[u'japanes', u'consul', u'general', u'help', u'mark', u'rice', u'crop']
[u'jone', u'lenton', u'world', u'record', u'brisban']
[u'journalist', u'sorri', u'walkley', u'scuffl']
[u'kovco', u'death', u'inappropri', u'weapon', u'handl']
[u'kyabram', u'die', u'crash']
[u'labor', u'aspir', u'squar', u'ahead', u'ballot']
[u'labor', u'tear', u'apart', u'abbott']
[u'labor', u'hold', u'leadership', u'ballot']
[u'lawyer', u'grill', u'brimbl', u'inquest', u'mysteri', u'wit']
[u'legal', u'delay', u'airport', u'court']
[u'lennon', u'investig', u'sawmil', u'closur']
[u'lightn', u'strike', u'spark', u'fire']
[u'malaysia', u'hop', u'closer', u'aust', u'relationship']
[u'guilti', u'acid', u'attack', u'account']
[u'plead', u'guilti']
[u'manufactur', u'activ', u'growth', u'continu']
[u'market', u'finish', u'week', u'note']
[u'mayor', u'reject', u'recycl', u'water', u'vote']
[u'mexico', u'presid', u'swear']
[u'miller', u'cultur']
[u'worker', u'lucki', u'lotto', u'winner']
[u'minist', u'back', u'afford', u'hous', u'plan']
[u'motorcycl', u'rider', u'die', u'polic', u'chase']
[u'gambier', u'blaze', u'eas']
[u'muscat', u'play', u'adelaid']
[u'nanci', u'qualifi', u'espanyol', u'ajax']
[u'nation', u'candid', u'challeng', u'boswel']
[u'nelson', u'warn', u'fijian', u'militari', u'coup', u'threat']
[u'nestl', u'recal', u'babi', u'formula']
[u'newborn', u'weigh', u'pound']
[u'hope', u'devil', u'tumour', u'fight']
[u'plant', u'ensur', u'suppli', u'fever', u'vaccin']
[u'scheme', u'help', u'mum', u'abus', u'relationship']
[u'chairman', u'furious', u'govt']
[u'court', u'reject', u'applic', u'identifi', u'gang']
[u'nuclear', u'watchdog', u'urg', u'incent', u'north', u'korea']
[u'orang', u'radiotherapi', u'unit', u'move', u'closer', u'realiti']
[u'ormsbi', u'race', u'open', u'lead']
[u'pacif', u'leader', u'support', u'fiji', u'govt']
[u'pakistan', u'afridi', u'west', u'indi']
[u'palestinian', u'kill', u'west', u'bank']
[u'paw', u'blame', u'food', u'poison', u'case']
[u'perth', u'scientist', u'help', u'fight', u'spread']
[u'petit', u'highlight', u'demount', u'opposit']
[u'petit', u'urg', u'languag', u'centr']
[u'polic', u'chief', u'back', u'wrong', u'jail', u'critic']
[u'polic', u'hunt', u'bloodstain', u'attack', u'brutal']
[u'polic', u'investig', u'separ', u'home', u'invas', u'bash']
[u'polic', u'probe', u'killer', u'case']
[u'polic', u'probe', u'fatal', u'crash']
[u'premier', u'differ', u'labor']
[u'prosecutor', u'withdraw', u'addit', u'lodhi', u'charg']
[u'public', u'servic', u'larger', u'level']
[u'public', u'servic', u'union', u'back', u'call', u'chang']
[u'qanta', u'profit', u'forecast']
[u'rain', u'expect', u'help', u'locust']
[u'ralli', u'condom', u'carniv', u'world', u'mark', u'aid']
[u'recycl', u'water', u'vote', u'profound', u'decis', u'seeney']
[u'tide', u'caus', u'remain', u'mysteri']
[u'resid', u'ask', u'join', u'price', u'meet']
[u'resid', u'voic', u'opposit', u'gatton', u'jail', u'plan']
[u'resourc', u'firm', u'hop', u'uranium', u'start']
[u'rice', u'urg', u'leader', u'extend', u'gaza', u'truce']
[u'river', u'divers', u'danger']
[u'rock', u'memorabilia', u'rake', u'million']
[u'rise', u'farewel', u'home', u'crowd']
[u'ingredi', u'stall', u'breast', u'cancer', u'studi']
[u'rudd', u'confirm', u'labor', u'leadership', u'challeng']
[u'rudd', u'gillard', u'offer', u'leadership', u'altern']
[u'rudd', u'leadership']
[u'safeti', u'concern', u'prompt', u'transair', u'referr']
[u'pine', u'forest', u'contain']
[u'school', u'teacher', u'jail', u'student']
[u'scientist', u'focus', u'shellfish', u'help', u'research']
[u'search', u'continu', u'miss', u'soldier']
[u'shelley', u'kovco', u'kick']
[u'shire', u'decid', u'hospit', u'site', u'referendum']
[u'korea', u'reject', u'second', u'shipment', u'beef']
[u'south', u'africa', u'focus', u'intern', u'aid']
[u'look', u'water', u'fruit', u'grower']
[u'spinach', u'link', u'protect']
[u'stem', u'cell', u'debat', u'turn', u'person']
[u'stone', u'fear', u'appl', u'import', u'threat']
[u'strand', u'whale']
[u'summer', u'surgeri', u'boost', u'expect', u'affect']
[u'summit', u'dispel', u'percept', u'plenti', u'northern']
[u'surf', u'club', u'say', u'cost', u'blow', u'out', u'wont', u'stop', u'revamp']
[u'survey', u'find', u'landhold', u'lack', u'confid', u'fight']
[u'tathra', u'develop', u'concern', u'green', u'group']
[u'teacher', u'sentenc', u'long', u'parent', u'group']
[u'team', u'talk', u'england', u'fight', u'bell']
[u'telstra', u'wont', u'increas', u'internet', u'speed']
[u'terri', u'charg', u'comment']
[u'terri', u'hick', u'knock', u'democrat', u'senat', u'offer']
[u'test', u'skull', u'confirm', u'man', u'ident']
[u'thorp', u'shadow', u'cast', u'world', u'trial']
[u'thousand', u'firefight', u'tackl', u'blaze']
[u'thousand', u'protest', u'surround', u'lebanes']
[u'kill', u'baghdad', u'market', u'blast']
[u'strike', u'raider']
[u'titan', u'talk', u'turner', u'storm']
[u'town', u'pose', u'nude', u'pothol', u'protest']
[u'transair', u'face', u'crimin', u'prosecut']
[u'trap', u'surviv', u'cliff', u'face', u'ordeal']
[u'kill', u'accid', u'brisban', u'train', u'platform']
[u'union', u'opposit', u'law', u'remain']
[u'union', u'warn', u'health']
[u'union', u'beat', u'resolv', u'chrysali']
[u'unit', u'boro', u'blue']
[u'nuclear', u'agenc', u'urg', u'chang', u'north', u'korea', u'talk']
[u'warn', u'qaeda', u'cyber', u'attack']
[u'valuer', u'general', u'urg', u'address', u'land', u'valu']
[u'firefight', u'help', u'contain', u'blaze']
[u'victori', u'good', u'unit']
[u'walli', u'lewi', u'leav', u'mishap']
[u'water', u'author', u'predict', u'revenu', u'shortfal']
[u'water', u'crisi', u'stori', u'earn', u'bendigo', u'report', u'walkley']
[u'wind', u'rain', u'hinder', u'whale', u'rescu']
[u'workchoic', u'see', u'major', u'elector', u'issu']
[u'wreck', u'confirm', u'wwii', u'japanes']
[u'yacht', u'club', u'resist']
[u'farm', u'worker', u'lightn']
[u'fire', u'burn', u'lightn', u'strike']
[u'adelaid', u'expedition', u'prepar', u'gruell']
[u'afghanistan', u'opium', u'product', u'say']
[u'dead', u'india', u'train', u'crash']
[u'aussi', u'lead', u'open']
[u'australia', u'confid', u'adelaid', u'victori']
[u'aust', u'take', u'italian', u'base', u'iraq']
[u'author', u'track', u'shark', u'lose']
[u'bainimarama', u'call', u'fijian', u'come']
[u'beach', u'whale', u'move', u'shelter', u'water']
[u'beazley', u'rudd', u'shore', u'support']
[u'clinton', u'aid', u'fight']
[u'black', u'hawk', u'captain', u'bodi', u'arriv', u'townsvill']
[u'black', u'hawk', u'crash', u'prompt', u'inquiri', u'call']
[u'blind', u'sentenc', u'librari', u'cours']
[u'bodi', u'black', u'hawk', u'captain', u'arriv', u'townsvill']
[u'bodi', u'black', u'hawk', u'captain', u'return', u'home']
[u'boswel', u'surviv', u'preselect', u'challeng']
[u'bullimor', u'readi', u'yacht', u'world', u'record', u'attempt']
[u'bush', u'push', u'abstin', u'world', u'aid']
[u'cane', u'toad', u'trap', u'useless', u'expert']
[u'caravan', u'park', u'resid', u'face', u'hous', u'uncertainti']
[u'centuri', u'collingwood', u'pietersen']
[u'closer']
[u'closer']
[u'collingwood', u'pietersen', u'seiz', u'control']
[u'collingwood', u'rack', u'doubl']
[u'collingwood', u'reach', u'ash', u'mileston']
[u'commentari', u'highlight']
[u'deak', u'break', u'walk', u'world', u'record']
[u'defenc', u'dept', u'examin', u'black', u'hawk', u'footag']
[u'defenc', u'lobbi', u'question', u'kovco', u'report', u'find']
[u'defenc', u'lobbi', u'reject', u'call', u'helicopt']
[u'defenc', u'lobbi', u'reject', u'helicopt', u'accid', u'inquiri']
[u'dragon', u'slip', u'past', u'hawk']
[u'earli', u'wicket', u'today', u'clark']
[u'england', u'control', u'adelaid']
[u'environ', u'lobbi', u'tussl', u'conserv']
[u'extra', u'crew', u'call', u'battl', u'bushfir']
[u'extravaganza', u'open', u'asian', u'game']
[u'fijian', u'command', u'silent', u'coup', u'deadlin']
[u'fijian', u'minist', u'hide', u'ahead', u'coup']
[u'fijian', u'return', u'suva', u'coup', u'loom']
[u'fijian', u'polit', u'crisi', u'resolut', u'closer']
[u'finland', u'sexiest', u'end', u'romanc', u'text', u'messag']
[u'crew', u'tame', u'blaze']
[u'firefight', u'continu', u'victoria']
[u'score', u'comfort']
[u'govern', u'urg', u'slash', u'stamp', u'duti']
[u'govt', u'boost', u'hous', u'disabl', u'program']
[u'govt', u'send', u'mix', u'messag', u'futur', u'hous']
[u'gusti', u'wind', u'troubl', u'bell', u'firefight']
[u'heart', u'surgeri', u'provid', u'relief', u'migrain']
[u'hezbollah', u'protest', u'camp', u'beirut']
[u'hezbollah', u'support', u'protest', u'lebanes', u'govt']
[u'hundr', u'battl', u'fire', u'north', u'east']
[u'india', u'lose', u'streak', u'tens']
[u'indigen', u'exhibit', u'china']
[u'interview', u'john', u'buchanan']
[u'interview', u'paul', u'collingwood', u'kevin', u'pietersen']
[u'iraqi', u'civilian', u'casualti', u'novemb']
[u'jone', u'lenton', u'bulk', u'championship']
[u'kayak', u'begin', u'tasman', u'cross']
[u'labor', u'instabl', u'frustrat', u'union', u'actu']
[u'labor', u'declar', u'allegi']
[u'lewi', u'reveal', u'fight', u'epilepsi']
[u'lightn', u'strike', u'flame']
[u'madonna', u'accept', u'malawi', u'adopt', u'rule', u'lawyer']
[u'charg', u'assault', u'busi', u'feud']
[u'mass', u'ralli', u'demand', u'lebanes', u'govern', u'resign']
[u'melbourn', u'arrest', u'fatal', u'stab']
[u'memori', u'israel', u'honour', u'light', u'hors', u'brigad']
[u'mexican', u'politician', u'brawl', u'presid', u'swear']
[u'mexican', u'presid', u'call', u'dialogu']
[u'mother', u'critic', u'kovco', u'report']
[u'mother', u'reject', u'kovco', u'report', u'find']
[u'seek', u'inquiri', u'militari', u'helicopt', u'accid']
[u'seek', u'militari', u'helicopt', u'accid', u'inquiri']
[u'nalbandian', u'level', u'davi', u'final']
[u'recal', u'sinclair', u'face', u'lanka']
[u'opposit', u'call', u'educ', u'minist']
[u'podcast', u'glenn', u'mitchel', u'damien', u'fleme', u'geoff']
[u'polic', u'bodi', u'sydney', u'harbour']
[u'polic', u'happi', u'homebak', u'crowd']
[u'polic', u'investig', u'fatal', u'brisban', u'train', u'platform']
[u'polic', u'charg', u'teen', u'schooli', u'bash']
[u'pollut', u'clean', u'law', u'criticis']
[u'pope', u'hail', u'pray', u'mecca']
[u'prais', u'pile', u'goma']
[u'premier', u'anticip', u'strong', u'daylight', u'save', u'support']
[u'radiat', u'poison', u'contact']
[u'radiat', u'poison', u'contact', u'scaramella']
[u'rare', u'photo', u'kelli', u'famili']
[u'rescuer', u'strand', u'whale', u'calmer', u'water']
[u'rescu', u'team', u'search', u'philippin', u'typhoon']
[u'roar', u'post', u'crucial', u'glori']
[u'rudd', u'beazley', u'lobbi', u'colleagu']
[u'rudd', u'beazley', u'shore', u'support']
[u'rudd', u'confid', u'win', u'tight', u'race']
[u'crew', u'battl', u'flare']
[u'soldier', u'recognis', u'afghanistan', u'servic']
[u'snake', u'king', u'die', u'cobra', u'bite']
[u'socceroo', u'join', u'asian', u'game', u'blatter']
[u'south', u'africa', u'complain', u'pietersen']
[u'contact', u'radiat', u'poison']
[u'surf', u'lifesav', u'program', u'promot', u'racial', u'harmoni']
[u'taipan', u'strike']
[u'rescuer', u'work', u'save', u'beach', u'whale']
[u'teenag', u'lose', u'shark', u'attack']
[u'teen', u'lose', u'shark', u'attack', u'coast']
[u'thousand', u'ralli', u'lebanes', u'govt']
[u'arrest', u'defenc', u'secretari', u'assassin']
[u'hospit', u'vineyard', u'lightn', u'strike']
[u'union', u'welcom', u'venu', u'smoke']
[u'unit', u'grab', u'larsson', u'loan']
[u'unveil', u'unman', u'bushfir', u'spot', u'plane']
[u'resolut', u'seek', u'isra', u'withdraw']
[u'victorian', u'firefight', u'battl', u'blaze']
[u'wall', u'street', u'end', u'lower', u'manufactur', u'activ']
[u'predict', u'spend', u'christma']
[u'water', u'recycl', u'domin', u'climat', u'chang', u'forum']
[u'yousuf', u'doubl', u'clinch', u'seri', u'pakistan']
[u'victorian', u'road']
[u'urg', u'water', u'restrict', u'forward']
[u'aussi', u'pressur', u'hayden', u'martyn']
[u'aust', u'cyclist', u'make', u'emot', u'comeback']
[u'australia', u'consid', u'earli', u'declar']
[u'australian', u'firm', u'buy', u'fail', u'carpet', u'compani']
[u'bainimarama', u'reject', u'fiji', u'coup', u'timelin']
[u'barca', u'rest', u'ronaldinho']
[u'beazley', u'rudd', u'confid', u'ahead', u'labor', u'leadership']
[u'beazley', u'urg', u'clean', u'fight', u'labor', u'leadership']
[u'bulldoz', u'clear', u'hous', u'ancient', u'egyptian', u'tomb']
[u'bushrang', u'notch', u'tight']
[u'govt', u'boost', u'disabl', u'equip', u'fund']
[u'caravan', u'holiday', u'maker', u'head', u'inland', u'coastal']
[u'bomb', u'kill', u'baghdad']
[u'bomb', u'baghdad', u'market']
[u'enthusiast', u'roll', u'best', u'britain']
[u'carsten', u'holler', u'test', u'site']
[u'closer']
[u'connolli', u'fire', u'wallabi']
[u'contend', u'confid', u'ahead', u'labor', u'leadership', u'vote']
[u'contend', u'lobbi', u'undecid', u'labor']
[u'council', u'continu', u'crackdown', u'unlaw', u'vehicl']
[u'cousin', u'arrest', u'melbourn']
[u'crew', u'backburn', u'prevent', u'riverland', u'spread']
[u'death', u'toll', u'rise', u'tripl', u'bomb', u'baghdad']
[u'debnam', u'dismiss', u'labor', u'lie', u'cut']
[u'defiant', u'basso', u'want', u'giro', u'tour', u'doubl']
[u'demonstr', u'continu', u'beirut', u'protest']
[u'desert', u'park', u'name', u'tourism', u'attract']
[u'doc', u'misunderstand', u'pageant', u'direct']
[u'doctor', u'trial', u'ovarian', u'cancer', u'drug']
[u'england', u'fight', u'pont']
[u'environ', u'council', u'receiv', u'mix', u'respons']
[u'famili', u'leav', u'homeless', u'accident', u'blaze']
[u'favour', u'weather', u'aid', u'crew', u'central']
[u'marin', u'draw', u'gosford']
[u'fear', u'philippin', u'mudslid', u'death', u'toll', u'reach']
[u'fidel', u'castro', u'miss', u'entir', u'birthday', u'bash']
[u'fijian', u'militari', u'chief', u'wont', u'draw', u'coup', u'time']
[u'fijian', u'pray', u'coup', u'fear', u'escal']
[u'fiji', u'militari', u'chief', u'claim', u'control', u'countri']
[u'filipino', u'typhoon', u'victim', u'buri', u'mass', u'grave']
[u'continu', u'domin']
[u'crew', u'battl', u'score', u'bushfir']
[u'firefight', u'evacu', u'peopl', u'near', u'perth']
[u'fire', u'worsen', u'north', u'east', u'victoria']
[u'kill', u'baghdad', u'tripl', u'bomb']
[u'flame', u'post', u'wnbl', u'win']
[u'german', u'newcom', u'bag', u'european', u'film', u'award']
[u'govt', u'pledg', u'help', u'caravan', u'park', u'resid']
[u'govt', u'fatti', u'food', u'school', u'tuckshop']
[u'green', u'stun', u'field', u'claim', u'open']
[u'green', u'urg', u'help', u'incom', u'famili']
[u'hackett', u'mckenzi', u'freestyl', u'final']
[u'hackett', u'reign', u'suprem', u'nation', u'champ']
[u'hackett', u'show', u'fine', u'form']
[u'hackett', u'stay', u'focus', u'longer', u'distanc']
[u'har', u'race', u'return', u'victor', u'harbor']
[u'hobart', u'maritim', u'festiv', u'expand', u'program']
[u'hoggard', u'turn', u'ash', u'heat']
[u'home', u'black', u'storm', u'hit']
[u'hundr', u'fear', u'dead', u'philippin', u'mudslid']
[u'inter', u'extend', u'win', u'streak']
[u'islam', u'drive', u'yousuf', u'bat', u'blitz']
[u'king', u'taipan']
[u'knight', u'jet', u'share', u'point']
[u'labor', u'ahead', u'matter', u'lead', u'poll']
[u'labor', u'leader', u'contend', u'lobbi', u'hard', u'vote']
[u'report', u'excess', u'appeal']
[u'macklin', u'defend', u'perform', u'deputi']
[u'hospit', u'shoot', u'sleep']
[u'militari', u'chief', u'claim', u'control', u'fiji']
[u'miss', u'trooper', u'presum', u'dead']
[u'dead', u'philippin', u'mudslid']
[u'mother', u'comfort', u'shark', u'attack', u'teen']
[u'motorcyclist', u'fall', u'shaft']
[u'teenag', u'petrol', u'fume']
[u'teen', u'dead', u'ship', u'contain', u'break']
[u'opposit', u'criticis', u'stanhop', u'arboretum', u'plan']
[u'origin', u'venus', u'singer', u'die']
[u'philippin', u'presid', u'declar', u'state', u'calam']
[u'pietersen', u'bait', u'warn', u'tactic']
[u'pinochet', u'suffer', u'heart', u'attack']
[u'plan', u'bodi', u'accus', u'muddi', u'approv', u'process']
[u'closer']
[u'polic', u'debnam', u'highway', u'patrol', u'plan']
[u'polic', u'investig', u'alleg', u'petrol', u'bomb', u'attack']
[u'pont']
[u'poor', u'condit', u'hinder', u'search', u'shark']
[u'plate', u'death', u'prompt', u'highway', u'patrol']
[u'plate', u'driver', u'dead', u'injur', u'accid']
[u'protest', u'paralys', u'central', u'beirut', u'stand']
[u'qaras', u'call', u'fijian', u'pray', u'stabil']
[u'reunit', u'hoodoo', u'gurus', u'tour']
[u'ripper', u'brand', u'opposit', u'stamp', u'duti', u'posit']
[u'rival', u'confid', u'ahead', u'labor', u'leadership', u'vote']
[u'ronaldo', u'accus', u'cheat', u'schwarzer', u'penalti']
[u'rumsfeld', u'memo', u'urg', u'iraq', u'polici', u'shift']
[u'rush', u'celebr', u'birthday', u'bali', u'prison']
[u'russia', u'seek', u'litvinenko', u'death', u'defenc']
[u'bushfir', u'ravag', u'thousand', u'hectar']
[u'safin', u'tursunov', u'russia', u'davi', u'lead']
[u'command', u'hope', u'miss', u'black', u'hawk', u'soldier']
[u'hop', u'miss', u'black', u'hawk', u'soldier']
[u'saudi', u'detain', u'suspect', u'milit', u'arabiya']
[u'search', u'continu', u'white', u'pointer']
[u'search', u'fail', u'shark']
[u'seven', u'miseri', u'australia']
[u'trap', u'bushfir']
[u'sydney', u'council', u'accus', u'hoard', u'infrastructur']
[u'sydney', u'hospit', u'apologis', u'bodi', u'bungl']
[u'sydney', u'polic', u'offic', u'critic', u'condit']
[u'parliament', u'celebr', u'anniversari']
[u'rescuer', u'assess', u'beach', u'whale']
[u'test', u'spi', u'contact', u'radiat', u'poison']
[u'thailand', u'celebr', u'king', u'birthday']
[u'thousand', u'continu', u'anti', u'govt', u'protest', u'lebanon']
[u'tiger', u'cruis', u'victori', u'redback']
[u'tiger', u'redback', u'check']
[u'tough', u'park', u'restrict', u'accompani', u'brisban']
[u'teenag', u'petrol', u'sniff', u'incid']
[u'union', u'hop', u'oversea', u'save', u'ajax']
[u'unit', u'extend', u'lead', u'arsenal', u'derbi']
[u'begin', u'daylight', u'save', u'trial']
[u'road', u'toll', u'hit', u'year', u'high']
[u'shark', u'hunt', u'continu', u'teenag', u'attack']
[u'wildlif', u'offic', u'readi', u'strand', u'whale', u'releas']
[u'dead', u'miss', u'philippin', u'slide']
[u'fear', u'drown', u'pakistan', u'rickshaw', u'accid']
[u'dead', u'miss', u'helicopt', u'crash', u'iraq']
[u'kill', u'haiti', u'elect', u'violenc']
[u'help', u'heritag', u'build', u'owner']
[u'announc', u'major', u'chang', u'polic']
[u'alpin', u'region', u'fire', u'burn', u'week']
[u'aust', u'firm', u'develop', u'copper', u'zambia']
[u'australia']
[u'australian', u'treatment', u'nauru', u'detaine', u'shameless']
[u'author', u'step', u'firefight', u'effort']
[u'beazley', u'give', u'best', u'shoot']
[u'beazley', u'lose', u'labor', u'leadership']
[u'beazley', u'loss']
[u'beazley', u'respond', u'leadership', u'loss']
[u'beazley', u'wont', u'stand', u'labor', u'ministri']
[u'beirut', u'clash', u'leav', u'dead', u'protest', u'continu']
[u'benefit', u'highlight', u'govt', u'work', u'region']
[u'crowd', u'turn', u'christma', u'pageant']
[u'bligh', u'urg', u'write', u'complaint', u'act']
[u'broom', u'shire', u'admit', u'fail', u'consult']
[u'build', u'approv', u'dive']
[u'burk', u'deni', u'wrongdo', u'inquiri', u'hear', u'phone']
[u'busi', u'chamber', u'air', u'concern', u'gibson']
[u'cairn', u'host', u'nation', u'counter', u'terror', u'exercis']
[u'calf', u'sale', u'hold', u'earli']
[u'carbin', u'slight', u'ahead', u'western', u'upper', u'hous']
[u'casa', u'push', u'longer', u'transair', u'ground']
[u'chavez', u'claim', u'victori', u'venezuela', u'elect']
[u'china', u'deal', u'save', u'woollen']
[u'chines', u'ambassador', u'visit', u'histor', u'site']
[u'claim', u'chines', u'activist', u'wife', u'beat', u'polic']
[u'closer']
[u'coalit', u'fear', u'singl', u'wheat', u'desk']
[u'compani', u'celebr', u'woodchip', u'mileston']
[u'compani', u'fin', u'build', u'highway', u'great']
[u'concern', u'rais', u'pipelin', u'water', u'cost']
[u'appal', u'log']
[u'consum', u'ethanol', u'fuel', u'prospect']
[u'convict', u'rapist', u'fardon', u'releas']
[u'councillor', u'say', u'ratepay', u'entitl', u'angri']
[u'council', u'seek', u'fund', u'latest', u'broadband']
[u'clean', u'tidi', u'town', u'honour']
[u'cult', u'leader', u'refus', u'chang', u'bail', u'condit']
[u'dairi', u'australia', u'appoint', u'drought', u'coordin']
[u'dalbi', u'stock', u'hors', u'sale', u'fetch', u'record', u'price']
[u'defeat', u'beazley', u'rethink', u'polit', u'futur']
[u'defiant', u'gilchrist', u'hit', u'go']
[u'deliber', u'threaten', u'homestead']
[u'dentist', u'highlight', u'higher', u'coast', u'tooth', u'decay', u'rate']
[u'dent', u'hopman']
[u'docker', u'escap', u'disciplinari', u'action']
[u'doctor', u'highlight', u'mental', u'health', u'shortcom']
[u'drought', u'help', u'flood', u'plain', u'soil', u'trial']
[u'drought', u'prompt', u'water', u'pipe', u'flush']
[u'weather', u'forc', u'cattl', u'produc', u'load']
[u'zone', u'extend', u'year']
[u'year', u'parti', u'year', u'student']
[u'england', u'hold', u'lead']
[u'lawyer', u'plead', u'guilti', u'child', u'plan']
[u'mildura', u'surgeon', u'die', u'road', u'crash']
[u'farmer', u'remind', u'livestock']
[u'fear', u'mozzi', u'threat', u'reach', u'mainland']
[u'feder', u'govt', u'fund', u'arboretum', u'upgrad']
[u'festiv', u'aim', u'break', u'disabl', u'barrier']
[u'fijian', u'armi', u'confisc', u'polic', u'weapon']
[u'fijian', u'militari', u'block', u'suva', u'road']
[u'fijian', u'insist', u'govt', u'hold', u'power']
[u'fijian', u'insist', u'govt', u'hold', u'power', u'coup', u'fear']
[u'fiji', u'militari', u'divid', u'coup', u'say', u'downer']
[u'financ', u'committe', u'chief', u'mayor', u'control']
[u'caus', u'loss', u'landown']
[u'crew', u'alert', u'riverland', u'blaze', u'rag']
[u'firefight', u'hope', u'contain']
[u'gillard', u'speech', u'deputi', u'leader']
[u'kevin', u'rudd', u'elect', u'feder', u'labor', u'leader']
[u'rudd', u'speech', u'leader']
[u'fisheri', u'award', u'snapper', u'effort']
[u'flintoff', u'troubl', u'ankl', u'injuri']
[u'busi', u'head', u'jail', u'drug', u'charg']
[u'policeman', u'deni', u'charg']
[u'strand', u'whale', u'return']
[u'fractur', u'bolt', u'caus', u'ride', u'collaps']
[u'frontbench', u'critic', u'labor', u'analyst']
[u'fund', u'target', u'mackay', u'area', u'road']
[u'german', u'club', u'rais', u'rfds', u'fund']
[u'gillard', u'say', u'labor', u'team', u'readi', u'battl']
[u'goma', u'open', u'brisban']
[u'govt', u'accus', u'break', u'school', u'fund', u'promis']
[u'govt', u'invest', u'centr', u'tourism', u'promot']
[u'govt', u'reject', u'push', u'extra', u'light', u'rail', u'line']
[u'govt', u'report', u'uranium', u'mine']
[u'govt', u'say', u'recent', u'oyster', u'death', u'minor', u'hiccup']
[u'govt', u'urg', u'fund', u'innov', u'industri']
[u'govt', u'urg', u'reduc', u'land', u'council', u'power']
[u'greenough', u'geraldton', u'merger', u'ahead']
[u'green', u'slam', u'misguid', u'uranium', u'report']
[u'gunn', u'receiv', u'govern', u'fund']
[u'hard', u'work', u'return', u'blood', u'bank', u'pay']
[u'haystack', u'fire', u'spark', u'warn', u'farmer']
[u'health', u'worker', u'hold', u'stopwork', u'meet', u'rat']
[u'histor', u'cattl', u'properti', u'sell']
[u'histor', u'paint', u'restor']
[u'hope', u'christma', u'malle', u'decis']
[u'hous', u'rep', u'report', u'airport', u'secur']
[u'huge', u'task', u'face', u'rudd']
[u'icac', u'hear', u'alleg', u'corrupt']
[u'industri', u'air', u'concern', u'abalon', u'farm', u'restock']
[u'injur', u'think', u'bash', u'victim']
[u'inquest', u'begin', u'teen', u'meningococc', u'diseas']
[u'irrig', u'look', u'compo', u'claim', u'decis']
[u'fall']
[u'johnson', u'avail', u'bull']
[u'jone', u'murphi', u'final']
[u'kalgoor', u'privat', u'sector', u'ask', u'donat']
[u'kevin', u'rudd', u'labor', u'leader']
[u'kingston', u'win', u'tidi', u'town', u'titl']
[u'labor', u'member', u'place', u'confid', u'rudd', u'gillard']
[u'labor', u'parti', u'dishonest']
[u'lamb', u'slaughter', u'level', u'reach', u'year', u'high']
[u'land', u'council', u'provid', u'manag', u'train']
[u'larg', u'turn', u'ironman', u'triathlon']
[u'fin', u'excess', u'appeal']
[u'lightn', u'caus', u'weekend', u'fire']
[u'loreto', u'nun', u'converg', u'ballarat']
[u'macgil', u'concentr', u'class', u'cricket']
[u'malle', u'better', u'expect', u'grain', u'harvest']
[u'mall', u'plan', u'lose', u'forev', u'mayor']
[u'accus', u'drink', u'drive']
[u'accus', u'jump', u'polic']
[u'face', u'court', u'child', u'tortur', u'charg']
[u'jail', u'rap', u'close', u'friend']
[u'jail', u'rap', u'niec']
[u'manjimup', u'receiv', u'award', u'access', u'local', u'pool']
[u'face', u'court', u'machan', u'beach', u'death']
[u'court', u'kidnap', u'charg']
[u'meat', u'export', u'frustrat', u'inabl', u'employ']
[u'memo', u'declar', u'iraq', u'strategi', u'weak']
[u'north', u'coast', u'unemploy', u'rate', u'climb']
[u'minist', u'deni', u'overspend']
[u'mix', u'result', u'leav', u'share', u'market', u'flat']
[u'doctor', u'bolster', u'gladston', u'hospit']
[u'muslim', u'kill', u'school', u'reopen', u'thai', u'south']
[u'narrandera', u'council', u'consid', u'serial']
[u'nation', u'approach', u'need', u'health', u'fund']
[u'nation', u'approach', u'need', u'health', u'fund', u'report']
[u'aircraft', u'creat', u'addit', u'flight']
[u'measur', u'recommend', u'improv', u'airport']
[u'motel', u'build', u'mount', u'year']
[u'pair', u'charg', u'stab', u'death']
[u'past', u'present', u'tribut', u'beazley']
[u'pinochet', u'doctor', u'rule', u'second', u'heart', u'oper']
[u'play', u'underway', u'adelaid', u'oval']
[u'consid', u'health', u'overhaul']
[u'polic', u'accus', u'learner', u'driver', u'conrod']
[u'polic', u'boost', u'tumbi']
[u'polic', u'deni', u'forest', u'protest', u'case', u'close']
[u'polic', u'hunt', u'knife', u'wield', u'teen', u'takeaway']
[u'polic', u'hunt', u'tile', u'shop', u'shoot']
[u'polic', u'investig', u'doubl']
[u'polic', u'offic', u'bribe', u'drug', u'grower', u'court', u'hear']
[u'polic', u'promis', u'crackdown', u'speed', u'driver']
[u'polic', u'prestig', u'racket', u'disrupt']
[u'polic', u'seek', u'help', u'east', u'tamar', u'probe']
[u'plater', u'light', u'crash', u'polic']
[u'prison', u'director', u'deni', u'rise', u'inmat', u'drug']
[u'prosecutor', u'want', u'octogenarian', u'serv', u'jail', u'term']
[u'push', u'chang', u'negat', u'nuclear', u'power', u'percept']
[u'pyrene', u'councillor', u'elect', u'mayor']
[u'mandarin', u'suppli', u'beij', u'olymp']
[u'ravlich', u'lose', u'educ', u'portfolio']
[u'rayner', u'name', u'wimmera', u'mayor']
[u'cross', u'appeal', u'philippin']
[u'meat', u'produc', u'warn', u'white', u'meat', u'threat']
[u'red', u'gunner', u'face']
[u'releas', u'whale', u'die', u'second', u'strand']
[u'roar', u'comeback', u'trail', u'farina']
[u'rise', u'face', u'committ', u'hear', u'blackmail']
[u'rudd', u'claim', u'labor', u'leadership']
[u'rudd', u'down', u'beazley', u'leadership', u'vote']
[u'rudd', u'elect', u'opposit', u'leader']
[u'rudd', u'promis', u'face', u'frontbench']
[u'rudd', u'tackl', u'question', u'time', u'leader']
[u'run', u'flow', u'australia', u'fight']
[u'schipper', u'pip', u'fire', u'lenton']
[u'school', u'close', u'communiti', u'mourn', u'teen', u'death']
[u'school', u'group', u'role', u'extend', u'look', u'cyber']
[u'schooli', u'year']
[u'scientist', u'critic', u'toad', u'trap']
[u'senat', u'confid', u'support', u'wheat', u'export']
[u'senat', u'say', u'sweden', u'accept', u'nauru', u'detaine']
[u'serial', u'rapist', u'fardon', u'releas']
[u'small', u'turn', u'extraordinari', u'elect', u'dunda']
[u'soldier', u'declar', u'miss', u'presum', u'dead']
[u'soldier', u'control', u'headquart', u'polic']
[u'soldier', u'secur', u'polic', u'headquart']
[u'speed', u'problem', u'major', u'work', u'rout']
[u'sport', u'bridg', u'sydney', u'cultur']
[u'store', u'involv', u'risk', u'emerg', u'servic', u'warn']
[u'storm', u'black', u'central', u'town']
[u'storm', u'tear', u'southern', u'queensland']
[u'stricken', u'sixer', u'turn', u'timmon']
[u'suspici', u'lithgow', u'death', u'investig']
[u'swan', u'can', u'river', u'long', u'term', u'clean']
[u'polic', u'search', u'suspect', u'arsonist']
[u'urg', u'streamlin', u'disabl', u'servic']
[u'teen', u'remain', u'coma', u'petrol', u'sniff', u'tragedi']
[u'outag', u'prompt', u'emerg', u'fear']
[u'temporari', u'villag', u'hous', u'construct', u'worker']
[u'terribl', u'british']
[u'terror', u'accus', u'grant', u'access']
[u'terror', u'suspect', u'request', u'equip']
[u'thailand', u'set', u'buoy', u'detect', u'tsunami']
[u'thousand', u'evacu', u'typhoon', u'approach', u'vietnam']
[u'clark', u'steer', u'australia', u'past']
[u'tourism', u'award', u'recognis', u'yulara', u'base', u'busi']
[u'trace', u'servic', u'consult', u'refuge', u'famili']
[u'tractor', u'tow', u'spark', u'blaze']
[u'truck', u'crash', u'hamper', u'pacif', u'highway', u'traffic']
[u'turn', u'pitch', u'give', u'australia', u'hope', u'clark']
[u'weekend', u'accid']
[u'wari', u'hezbollah', u'weapon']
[u'uranium', u'mine', u'impedi', u'remov', u'report']
[u'uranium', u'valu', u'add', u'pose', u'moral', u'question', u'expert']
[u'marin', u'jail', u'philippin', u'rape']
[u'victori', u'minor', u'premiership', u'champion', u'leagu']
[u'warm', u'weather', u'prompt', u'mening', u'warn']
[u'wayward', u'pelican', u'black', u'home']
[u'whitfield', u'resid', u'urg', u'boil', u'drink', u'water']
[u'wide', u'record', u'good', u'soak']
[u'workshop', u'allow', u'young', u'driver', u'safer']
[u'work', u'draft', u'report', u'wagga', u'council']
[u'world', u'record', u'sight', u'say', u'lenton']
[u'grant', u'boost', u'short', u'term', u'water', u'suppli']
[u'abalon', u'thief', u'seek', u'high', u'court', u'appeal']
[u'abar', u'crop', u'report']
[u'abar', u'grain', u'harvest', u'predict']
[u'host', u'cycl', u'challeng', u'twist']
[u'action', u'criticis', u'school', u'chang']
[u'look', u'boost', u'gold', u'coast', u'presenc']
[u'agreement', u'put', u'inland', u'rail', u'line', u'track']
[u'agricultur', u'committe', u'assess', u'eyr', u'peninsula']
[u'akhtar', u'asif', u'clear', u'dope', u'appeal']
[u'alic', u'council', u'clean', u'storm', u'damag']
[u'alleg', u'extortionist', u'face', u'committ', u'hear']
[u'port', u'stephen', u'candid', u'rais', u'doctor']
[u'ambros', u'reflect', u'nascar']
[u'anti', u'terror', u'control', u'order']
[u'chief', u'contract', u'extend']
[u'atsb', u'find', u'lightn', u'strike', u'melt', u'plane', u'part']
[u'aussi', u'cours', u'better', u'waugh']
[u'australian', u'cattl', u'trade', u'campaign']
[u'australian', u'killer', u'lose', u'appeal', u'cambodia']
[u'australia', u'seek', u'earli', u'wicket']
[u'australia']
[u'aust', u'win', u'second', u'ash', u'test']
[u'share', u'halt', u'govt', u'take', u'veto', u'power']
[u'lose', u'export', u'veto', u'power']
[u'babi', u'dead', u'child', u'miss', u'hous']
[u'bainimarama', u'claim', u'fijian', u'presid']
[u'bainimarama', u'seiz', u'control', u'fiji']
[u'barley', u'singl', u'desk', u'market', u'abolish']
[u'beach', u'reopen', u'shark', u'attack']
[u'boat', u'expand']
[u'bolton', u'quit', u'ambassador']
[u'break', u'drought', u'easi', u'scott']
[u'break', u'hill', u'expect', u'parti', u'unit', u'rudd']
[u'bunchi', u'spark', u'banana', u'grower', u'worri']
[u'driver', u'guilti', u'caus', u'fatal', u'crash']
[u'bushfir', u'threaten', u'clare', u'valley', u'properti']
[u'servic', u'expect', u'overcom', u'timet', u'teeth']
[u'renew', u'letterman', u'contract']
[u'church', u'renew', u'energi', u'push']
[u'closer']
[u'coalit', u'member', u'odd', u'wheat', u'export']
[u'collin', u'intend', u'plead', u'guilti', u'child']
[u'commodor', u'lose', u'grind', u'sale', u'figur']
[u'compani', u'beat', u'zinc', u'product']
[u'controversi', u'subdivis', u'young', u'council']
[u'coordin', u'bomb', u'blast', u'kill', u'dozen', u'baghdad']
[u'council', u'back', u'main', u'beach', u'develop']
[u'council', u'clear', u'daintre', u'river', u'ferri', u'contract']
[u'council', u'look', u'help', u'boost', u'break', u'hill', u'sydney']
[u'council', u'look', u'land', u'swap', u'allow', u'sewerag', u'plant']
[u'council', u'move', u'accept', u'hill', u'land']
[u'council', u'tackl', u'percent', u'water', u'loss']
[u'council', u'warn', u'water', u'cost']
[u'counter', u'terror', u'law', u'test', u'high', u'court']
[u'coup', u'fiji', u'wont', u'solv']
[u'coupl', u'arrest', u'fake', u'money']
[u'court', u'question', u'vic', u'thoma', u'case']
[u'court', u'wont', u'interven', u'public', u'servant', u'feud']
[u'cray', u'fisher', u'daylight', u'save', u'worri']
[u'democrat', u'question', u'dump', u'mental', u'health']
[u'dept', u'meningococc', u'guidelin', u'woefulli', u'inadequ']
[u'destruct', u'aphid', u'yarra', u'valley']
[u'doctor', u'offer', u'qualifi', u'support', u'health']
[u'doubt', u'rais', u'wagga', u'council', u'investig']
[u'downer', u'flag', u'sharp', u'respons', u'fiji', u'coup']
[u'driver', u'accus', u'ram', u'rubbish', u'bin']
[u'drought', u'worsen', u'relief', u'sight']
[u'dubbo', u'beat', u'rudd']
[u'energi', u'futur', u'forum', u'releas', u'final', u'report']
[u'england', u'despair', u'australia', u'snatch', u'victori']
[u'esper', u'shire', u'vote']
[u'mayor', u'cast', u'doubt', u'park']
[u'soldier', u'take', u'govt', u'court', u'dismiss']
[u'fear', u'break', u'hill', u'miss', u'christma', u'spend']
[u'feder', u'urg', u'minist', u'protect', u'burrup']
[u'sign', u'dutchman']
[u'fijian', u'armi', u'seiz', u'control']
[u'fijian', u'militari', u'chief', u'declar', u'coup']
[u'fijian', u'troop', u'isol', u'qaras']
[u'fire', u'edg', u'closer', u'king', u'valley', u'home']
[u'threaten', u'benalla', u'properti']
[u'flintoff', u'pietersen', u'england', u'flounder']
[u'fresh', u'fight', u'kill', u'lanka', u'militari', u'say']
[u'fund', u'help', u'scientist', u'measur', u'level']
[u'leak', u'forc', u'evacu', u'china']
[u'gibbon', u'back', u'rudd', u'beazley']
[u'good', u'time', u'ouyen', u'real', u'estat']
[u'govern', u'urg', u'drop', u'stock', u'station', u'agent']
[u'govt', u'accus', u'ignor', u'indigen', u'health']
[u'govt', u'call', u'state', u'dump', u'uranium', u'mine', u'ban']
[u'govt', u'take', u'singl', u'desk']
[u'govt', u'singl', u'desk', u'temporarili']
[u'train', u'drug', u'mental', u'ill', u'link']
[u'group', u'seek', u'inform', u'indigen', u'communiti']
[u'hackett', u'pull']
[u'reserv', u'drought', u'assist', u'steal']
[u'health', u'union', u'threaten', u'industri', u'action']
[u'heritag', u'list', u'burrup', u'peninsula', u'threaten']
[u'hockeyroo', u'champion', u'trophi', u'squad']
[u'fear', u'loophol', u'propos', u'code']
[u'hospit', u'struggl', u'cope', u'increas']
[u'hotel', u'robber', u'jail', u'year']
[u'hous', u'fail', u'forrest', u'preselect']
[u'howard', u'predict', u'bounc', u'poll']
[u'howard', u'refus', u'fijian', u'request', u'militari']
[u'illawarra', u'hous', u'price', u'fall']
[u'illeg', u'fishermen', u'crowd', u'prison', u'report']
[u'indigen', u'legal', u'servic', u'dump']
[u'inquiri', u'hold', u'fatal', u'redcliff', u'pursuit']
[u'seek', u'manag', u'health', u'centr']
[u'investig', u'blame', u'pilot', u'nepal', u'helicopt']
[u'japan', u'aust', u'closer', u'talk']
[u'jone', u'go', u'close']
[u'kerr', u'put', u'hand', u'shadow', u'ministri', u'posit']
[u'king', u'river', u'clean', u'continu']
[u'labor', u'chanc']
[u'labor', u'link', u'militari', u'polic', u'problem', u'kovco']
[u'labor', u'place', u'rudd', u'frontbench']
[u'labor', u'pantomim']
[u'lead']
[u'learner', u'motorcyclist', u'accus', u'ride']
[u'lebanes', u'armi', u'increas', u'forc', u'tens', u'beirut']
[u'liverpool', u'talk', u'takeov', u'dubai']
[u'local', u'labor', u'rudd', u'gillard', u'leadership', u'team']
[u'longreach', u'club', u'sell']
[u'lord', u'mayor', u'back', u'valley', u'push', u'hour', u'trade']
[u'brough', u'blueprint', u'indigen', u'affair']
[u'face', u'court', u'alleg', u'assault', u'attempt']
[u'dead', u'block', u'flat']
[u'front', u'court', u'kingston', u'murder']
[u'sentenc', u'year', u'kill']
[u'tri', u'fatal', u'train', u'stab']
[u'market', u'close', u'higher', u'media', u'mine', u'gain']
[u'matthew', u'goma']
[u'rescu', u'hour', u'trap']
[u'michael', u'favourit', u'album']
[u'milk', u'contamin', u'fear', u'prompt', u'recal']
[u'mix', u'respons', u'rudd', u'leader']
[u'mysteri', u'surround', u'north', u'coast', u'blast']
[u'nasa', u'plan', u'build', u'moon', u'base']
[u'nation', u'park', u'defend', u'manag', u'strategi']
[u'broom']
[u'law', u'harm', u'famili', u'rudd', u'say']
[u'unit', u'examin', u'prison', u'crime']
[u'yuna', u'school', u'build', u'final', u'complet']
[u'your', u'rudd']
[u'dancer', u'repres', u'australia', u'intern']
[u'reinforc', u'blaze', u'rage']
[u'reject', u'common', u'currenc', u'propos']
[u'offend', u'face', u'court', u'perth', u'assault']
[u'ombudsman', u'find', u'miriam', u'vale', u'council', u'fail']
[u'opposit', u'demount', u'cost', u'communiti']
[u'orang', u'council', u'launch', u'report', u'support']
[u'pair', u'sentenc', u'slingshot', u'attack']
[u'pakistan', u'pair', u'reliev', u'dope', u'nightmar']
[u'pakistan', u'west', u'indi', u'dayer', u'abandon']
[u'parliament', u'approv', u'medibank', u'privat', u'sale']
[u'petit', u'urg', u'investig', u'council']
[u'petrol', u'sniff', u'death', u'prompt', u'question', u'opal']
[u'plantat', u'timber', u'compani', u'offer', u'agist', u'water']
[u'closer']
[u'polic', u'commission', u'predict', u'fiji', u'upris']
[u'polic', u'investig', u'fatal', u'stab']
[u'polic', u'warn', u'strong', u'holiday', u'presenc', u'south']
[u'porpois', u'pool', u'manag', u'deni', u'claim', u'sell']
[u'port', u'macquari', u'prepar', u'popul', u'boost']
[u'prawn', u'catch', u'look', u'promis']
[u'public', u'servant', u'deni', u'improp', u'burk', u'influenc']
[u'quak', u'strike', u'indonesia']
[u'rain', u'hamper', u'blueberri', u'harvest']
[u'report', u'warn', u'shortag', u'nuclear', u'expert']
[u'rescu', u'help', u'navi', u'salvag']
[u'rescu', u'whale', u'strand']
[u'resid', u'defend', u'letter', u'complaint']
[u'resourc', u'boom', u'help', u'lift', u'airport', u'number']
[u'rilli', u'claim', u'nbls', u'week', u'gong']
[u'riverland', u'firefight', u'condit']
[u'rudd', u'gillard', u'begin', u'media', u'blitz']
[u'rudd', u'plan', u'meet', u'greet', u'tour']
[u'rugbi', u'leagu', u'develop', u'offic', u'cover', u'western']
[u'russian', u'suffer', u'unknown', u'ill']
[u'ryan', u'elect', u'nation', u'leader']
[u'firefight', u'contain', u'clare', u'blaze']
[u'santo', u'takeov', u'compani', u'doubt']
[u'scheme', u'allow', u'water', u'effici', u'home']
[u'scientist', u'explor', u'life']
[u'scratch', u'smell', u'test', u'help', u'detect', u'mental']
[u'second', u'child', u'bodi', u'hous']
[u'septemb', u'balanc', u'payment', u'figur']
[u'servic', u'sector', u'contract', u'rate', u'rise']
[u'ship', u'servic', u'replac', u'vessel', u'delay']
[u'slot', u'acceler', u'fire', u'say', u'research']
[u'soldier', u'surround', u'home', u'fiji']
[u'soldier', u'enter', u'fiji', u'hous']
[u'soldier', u'enter', u'hous', u'fijian']
[u'somali', u'muslim', u'ralli', u'peacekeep', u'plan']
[u'south', u'east']
[u'south', u'west', u'jobless', u'rate', u'fall']
[u'death', u'probe', u'move', u'moscow']
[u'storm', u'bring', u'rain', u'central', u'highland']
[u'rescu', u'vehicl', u'trap', u'underwat']
[u'surviv', u'whale', u'return']
[u'suspect', u'russian', u'deport', u'canada']
[u'teenag', u'girl', u'miss', u'north', u'coast']
[u'teen', u'remain', u'hospit', u'petrol', u'sniff']
[u'tenanc', u'group', u'highlight', u'christma', u'rental', u'option']
[u'thai', u'celebr', u'king', u'birthday']
[u'thiev', u'avoid', u'jail', u'leav']
[u'coal', u'loader', u'expect', u'boost', u'econom', u'growth']
[u'thwait', u'warn', u'tourist', u'threat']
[u'toowoomba', u'host', u'mechatron', u'confer']
[u'total', u'south', u'east']
[u'townsvill', u'troop', u'home', u'iraq', u'mission']
[u'trade', u'help', u'australia', u'growth', u'rate', u'report']
[u'transair', u'move', u'cancel', u'oper', u'certif']
[u'troop', u'surround', u'home', u'fiji']
[u'troop', u'enter', u'hous', u'fijian']
[u'tropic', u'storm', u'durian', u'kill', u'vietnam']
[u'kill', u'timor', u'gang', u'violenc']
[u'teenag', u'girl', u'miss']
[u'union', u'concern', u'fate', u'transair', u'worker']
[u'upper', u'south', u'east', u'hop', u'drought', u'declar']
[u'call', u'crew', u'battl', u'blaze']
[u'vietnam', u'brace', u'tropic', u'storm']
[u'volunt', u'work', u'amount', u'annual']
[u'voter', u'warm', u'rudd', u'say', u'premier']
[u'govt', u'warn', u'bushfir', u'lead', u'anim']
[u'warn', u'england', u'rope']
[u'warn', u'rip', u'england']
[u'watford', u'citi', u'fight', u'goalless', u'draw']
[u'wildlif', u'offic', u'strand', u'whale', u'creek']
[u'wind', u'chang']
[u'woman', u'accus', u'tri', u'kill', u'drug', u'lace']
[u'woman', u'charg', u'death', u'schoolgirl']
[u'woman', u'hospit', u'crash']
[u'woolworth', u'beef']
[u'work', u'start', u'black', u'mountain', u'intersect']
[u'yanner', u'face', u'court', u'accus', u'polic', u'assault']
[u'yass', u'council', u'forc', u'introduc', u'tougher', u'water', u'ban']
[u'alderman', u'hop', u'advisori', u'group', u'address']
[u'alleg', u'rioter', u'grant', u'bail']
[u'aphid', u'threat', u'vineyard']
[u'archaeologist', u'group', u'back', u'push', u'protect', u'rock']
[u'australia']
[u'aust', u'south', u'korea', u'consid', u'free', u'trade', u'agreement']
[u'award', u'recognis', u'christma', u'pageant', u'effort']
[u'look', u'develop', u'mules', u'invent']
[u'bainimarama', u'right']
[u'bajic', u'hand', u'week']
[u'barley', u'grower', u'divid', u'market', u'deregul']
[u'beatti', u'back', u'rudd', u'chang', u'state', u'feder']
[u'bega', u'hospit', u'earli', u'plan', u'complet']
[u'board', u'school', u'push', u'aborigin', u'children']
[u'bowler', u'back', u'decis', u'drop', u'youth', u'facil', u'plan']
[u'boy', u'expel', u'islam', u'school', u'urin']
[u'brack', u'appeal', u'firm', u'releas', u'volunt']
[u'brain', u'injuri', u'support', u'group', u'criticis', u'premier']
[u'break', u'hill', u'jobless', u'rate', u'fall', u'slight']
[u'brough', u'defend', u'alic', u'town', u'camp', u'comment']
[u'bull', u'beat', u'blue', u'stay']
[u'timber', u'industri', u'rationalis']
[u'carlisl', u'plead', u'guilti', u'woman', u'unlaw']
[u'ceda', u'report', u'broadband']
[u'central', u'firefight', u'wait']
[u'worri', u'storm', u'spark', u'riverland', u'fire']
[u'chanc', u'farmer', u'earn', u'need', u'cash']
[u'child', u'killer', u'lewthwait', u'claim', u'polit']
[u'child', u'killer', u'claim', u'ludicr']
[u'children', u'commission', u'take', u'leav', u'week']
[u'child', u'safeti', u'offic', u'face', u'disciplin']
[u'china', u'steel', u'export', u'increas']
[u'closer']
[u'cloud', u'seed', u'project', u'get', u'grant']
[u'clydesdal', u'quit']
[u'deem', u'aborigin', u'assault', u'convict', u'unlik']
[u'committe', u'approv', u'gate', u'defenc', u'chief', u'post']
[u'committe', u'approv', u'sale', u'uranium', u'china']
[u'beat', u'world', u'chess', u'champion', u'epic', u'battl']
[u'conserv', u'offic', u'strand', u'whale']
[u'cool', u'tower']
[u'council', u'consid', u'help', u'famili', u'dead']
[u'council', u'defend', u'delay', u'sale', u'sniffabl', u'fuel']
[u'council', u'push', u'water', u'coastal', u'region']
[u'coup', u'leader', u'tighten', u'grip', u'fiji']
[u'cowra', u'resid', u'lose', u'year', u'fight']
[u'cricket', u'asian', u'game']
[u'danger', u'toy', u'christma', u'target']
[u'darwin', u'mayor', u'charg', u'theft']
[u'darwin', u'mayor', u'confid', u'fraud', u'investig']
[u'deadlin', u'loom', u'comment', u'supermarket', u'plan']
[u'debnam', u'back', u'public', u'sector', u'cut', u'pledg']
[u'defenc', u'bulli', u'inquiri', u'call', u'chang']
[u'democraci', u'depend', u'inform', u'public']
[u'deplet', u'uranium']
[u'depos', u'fijian', u'leav', u'suva']
[u'dept', u'offer', u'compens', u'wrong', u'detent']
[u'dog', u'johnson', u'captain']
[u'dole', u'scheme', u'closur', u'mystifi', u'local', u'communiti']
[u'dri', u'fruit', u'firm', u'urg', u'push', u'high', u'qualiti']
[u'drought', u'forc', u'cattl', u'compani', u'stock']
[u'drug', u'court', u'crime', u'report']
[u'ebay', u'take', u'court']
[u'econom', u'growth', u'slow']
[u'dead', u'afghanistan', u'suicid', u'attack']
[u'energi', u'firm', u'contact', u'landhold', u'corridor']
[u'english', u'ash', u'hop', u'dash']
[u'environ', u'report', u'highlight', u'chang', u'pressur']
[u'stand', u'gibson', u'decis']
[u'esper', u'council', u'urg', u'explain', u'decis']
[u'offic', u'plead', u'guilti', u'watch', u'hous']
[u'expert', u'urg', u'alic', u'jail', u'resum', u'offend']
[u'fairfax', u'deni', u'rural', u'press', u'merger', u'defens']
[u'fairfax', u'merger', u'rural', u'press']
[u'fall', u'powerlin', u'spark', u'blaze', u'near', u'ararat']
[u'fatal', u'hous', u'suspici', u'polic']
[u'fear', u'air', u'jail', u'lack', u'offend', u'rehab']
[u'fear', u'rate', u'rise', u'forestrysa']
[u'feder', u'respons', u'skill', u'shortag']
[u'fesa', u'support', u'push', u'rangeland']
[u'fijian', u'coup', u'leader', u'warn', u'upris']
[u'fiji', u'coup', u'leader', u'announc', u'state', u'emerg']
[u'fiji', u'coup', u'leader', u'tighten', u'grip', u'power']
[u'fiji', u'lucki']
[u'fiji', u'militari', u'leader', u'formalis', u'coup']
[u'fiji', u'politician', u'condemn', u'coup']
[u'firefight', u'hope', u'mild', u'weather', u'chang']
[u'flegg', u'launch', u'websit', u'recycl', u'water']
[u'fletcher', u'defend', u'adelaid', u'perform']
[u'england', u'captain', u'vent', u'ash', u'anger']
[u'friend', u'takeov', u'creat', u'media', u'giant']
[u'funer', u'black', u'hawk', u'pilot', u'friday']
[u'gate', u'say', u'win', u'iraq']
[u'gerri', u'collin', u'australian', u'swim', u'championship']
[u'giteau', u'stay', u'centr', u'super']
[u'goldfield', u'esper', u'region', u'score']
[u'govt', u'back', u'irrig', u'scheme']
[u'govt', u'fix', u'immigr', u'problem', u'vanston']
[u'govt', u'put', u'brake', u'townsvill', u'supercar', u'fund']
[u'green', u'group', u'rais', u'desal', u'plant', u'worri']
[u'green', u'demand', u'investig', u'tunnel', u'health']
[u'hackett', u'eas', u'health', u'fear', u'victori']
[u'harrop', u'stop', u'short', u'announc', u'comeback']
[u'helicopt', u'join', u'crew', u'east', u'coast']
[u'heritag', u'push', u'rock']
[u'hick', u'lawyer', u'case', u'feder', u'court']
[u'hickss', u'lawyer', u'grant', u'urgent', u'court', u'hear']
[u'howard', u'rudd', u'vote', u'stem', u'cell']
[u'hussey', u'defend', u'battl', u'martyn']
[u'icac', u'raid', u'wollongong', u'council', u'offic']
[u'immigr', u'dept', u'error', u'highlight', u'detent']
[u'immigr', u'report', u'sham', u'mandatori', u'detent']
[u'inquest', u'offer', u'closur', u'year', u'murder']
[u'inquest', u'tell', u'boss', u'interest', u'bargo', u'woman']
[u'intern', u'condemn', u'fiji', u'coup']
[u'interview', u'mike', u'gat']
[u'isra', u'right', u'furious', u'plan', u'revis', u'textbook']
[u'johnson', u'fire', u'ahead', u'grand', u'prix', u'seri']
[u'joyc', u'vote']
[u'kosciuszko', u'camp', u'fire', u'ban']
[u'labor', u'attack', u'govt', u'growth', u'slowdown']
[u'late', u'run', u'bull', u'contest']
[u'lift', u'clone', u'slipperi', u'slope']
[u'light', u'rain', u'fail', u'dampen', u'bushfir']
[u'servic', u'human', u'right']
[u'mayor', u'air', u'rail', u'charg', u'worri']
[u'mayor', u'see', u'benefit', u'extra', u'fraser', u'coast', u'seat']
[u'mckenzi', u'deni', u'roger', u'want']
[u'meatwork', u'struggl', u'cope', u'livestock', u'influx']
[u'meningococc', u'diseas', u'victim', u'boyfriend', u'blame']
[u'minist', u'defend', u'lengthi', u'westralia', u'compo', u'deal']
[u'miriam', u'vale', u'mayor', u'highlight', u'growth', u'struggl']
[u'miss', u'nurs', u'home', u'resid', u'safe']
[u'say', u'premier', u'burk', u'bulli']
[u'immigr', u'dept', u'bungl', u'uncov']
[u'musharraf', u'say', u'bar', u'elect']
[u'nation', u'account', u'septemb']
[u'nation', u'park', u'contain']
[u'nation', u'park', u'reopen', u'bushfir']
[u'negat', u'econom', u'growth', u'state']
[u'chief', u'polic', u'traffic', u'manag', u'unit']
[u'local', u'govt', u'like', u'base', u'geraldton']
[u'mayor', u'glenelg', u'ararat', u'council']
[u'rule', u'allow', u'navi', u'illeg', u'fish']
[u'back', u'call', u'climat', u'chang', u'action']
[u'norman', u'top', u'earner', u'list']
[u'nrma', u'maintain', u'push', u'king', u'highway', u'revamp']
[u'nullarbor', u'farmer', u'hope', u'drought', u'success']
[u'nurs', u'home', u'struggl', u'staff']
[u'ogilvi', u'scott', u'head', u'field']
[u'ombudsman', u'report', u'slam', u'immigr', u'dept']
[u'ombudsman', u'report', u'immigr', u'detent']
[u'onlin', u'global', u'help', u'fight', u'malaria']
[u'open', u'dorney']
[u'oppos', u'bainimarama']
[u'opposit', u'back', u'chang', u'super']
[u'opposit', u'criticis', u'plan', u'school', u'closur']
[u'opposit', u'promis', u'school', u'closur']
[u'opposit', u'use', u'figur', u'great']
[u'airlin', u'interest', u'transair', u'rout']
[u'oversea', u'problem', u'delay', u'ethanol', u'project']
[u'paper', u'win', u'lawsuit', u'minist', u'advertis']
[u'parliament', u'pass', u'stem', u'cell']
[u'philippin', u'reconstruct', u'year']
[u'pinochet', u'doctor', u'ill', u'exagger']
[u'plan', u'boost', u'botan', u'garden', u'profil']
[u'closer']
[u'defend', u'environment', u'effort']
[u'polic', u'hope', u'reduc', u'miss', u'peopl']
[u'polic', u'lobbi', u'recruit']
[u'polic', u'kingston', u'murder', u'victim']
[u'premier', u'debat', u'gold', u'coast', u'tweed', u'rail', u'link', u'plan']
[u'say', u'train', u'driver', u'fine', u'public', u'safeti']
[u'public', u'fish', u'stock', u'plan']
[u'race', u'club', u'feel', u'drought', u'impact']
[u'rang', u'provid', u'need', u'broadband', u'network']
[u'rat', u'remain', u'steadi']
[u'redback', u'cautious', u'start', u'beller']
[u'redback', u'score', u'slow', u'steadi']
[u'releas', u'convict', u'rapist', u'reoffend', u'public']
[u'report', u'cast', u'doubt', u'secur', u'camera']
[u'report', u'score', u'aust', u'poor', u'environ']
[u'resid', u'brace', u'horror', u'bushfir', u'weekend']
[u'riverland', u'look', u'rock', u'energi']
[u'roar', u'lose', u'ognenovski', u'jet', u'clash']
[u'ruddock', u'question', u'hick', u'case', u'pressur']
[u'rudd', u'seiz', u'immigr', u'dept', u'report']
[u'sack', u'criticis', u'aborigin', u'justic', u'agenc']
[u'schipper', u'seabohm', u'continu', u'form']
[u'schipper', u'seebohm', u'continu', u'form']
[u'offend', u'block', u'myspac']
[u'sexual', u'assault', u'support', u'servic', u'futur', u'assur']
[u'share', u'market', u'rise', u'blue', u'chip', u'gain']
[u'share', u'surplus']
[u'shark', u'sight', u'adelaid', u'beach']
[u'sharp', u'increas', u'drought', u'assist', u'applic']
[u'shoalhaven', u'council', u'back', u'nerang', u'road', u'rout']
[u'singl', u'desk', u'hypocrici']
[u'small', u'turnout', u'health', u'watchdog', u'present']
[u'good', u'winner']
[u'stanhop', u'back', u'airport', u'call', u'drop', u'hous']
[u'state', u'environ']
[u'state', u'environ', u'report']
[u'strand', u'whale', u'remain', u'care']
[u'strelow', u'maintain', u'anti', u'fluorid', u'stanc']
[u'suspici', u'tamworth', u'factori']
[u'sydney', u'plan', u'year', u'sparkl']
[u'tasmanian', u'crew', u'close', u'mari']
[u'teen', u'accus', u'home', u'break']
[u'temora', u'urg', u'unit', u'drought', u'plan']
[u'kill', u'southern', u'thailand']
[u'test', u'team', u'need', u'youth']
[u'thailand', u'buri', u'remain', u'victim', u'tsunami']
[u'thirsti', u'camel', u'get', u'mischief']
[u'thoma', u'control', u'order', u'case', u'resum']
[u'time', u'run', u'growth', u'strategi']
[u'tottenham', u'charlton', u'grab', u'late', u'win']
[u'tough', u'water', u'restrict', u'expect', u'tamworth']
[u'treati', u'committe', u'report', u'uranium', u'sale', u'china']
[u'scientist', u'appli', u'cell', u'treatment']
[u'polic', u'arrest', u'dead', u'timor', u'brawl']
[u'withdraw', u'staff', u'darfur', u'town']
[u'vaughan', u'comeback', u'stall']
[u'town', u'alert', u'wind', u'chang']
[u'wada', u'investig', u'shoaib', u'case']
[u'wagga', u'council', u'staff', u'abl', u'preview', u'local', u'govt']
[u'opportun', u'skill', u'migrant']
[u'polic', u'claim', u'verg', u'resolut']
[u'warn', u'hit', u'england', u'rubbish']
[u'water', u'bomb', u'plan', u'need', u'riverland', u'blaze']
[u'wealth', u'concentr', u'hand', u'report']
[u'westpac', u'sue', u'vizard', u'bookkeep']
[u'westpac', u'win', u'million', u'dollar', u'case', u'hilliard']
[u'wheat', u'export', u'chang', u'compromis', u'nation', u'pool']
[u'whyalla', u'face', u'court', u'accus', u'child', u'porn']
[u'workshop', u'curb', u'young', u'driver', u'death']
[u'youth', u'stay', u'away', u'rural', u'career']
[u'acehnes', u'famili', u'homeless', u'tsunami']
[u'woman', u'attack', u'brisban', u'walkway']
[u'armi', u'help', u'tackl', u'bushfir']
[u'armi', u'tank', u'join', u'victoria', u'bushfir', u'battl']
[u'asbesto', u'support', u'group', u'meet']
[u'ash', u'memorabilia', u'fetch', u'high', u'price']
[u'ashley', u'escape', u'custodi']
[u'kill', u'iraq', u'attack']
[u'australian', u'paralymp', u'swimmer', u'domin', u'durban']
[u'aust', u'troop', u'stay', u'cours', u'iraq']
[u'author', u'investig', u'senseless', u'destruct']
[u'veto', u'power', u'rest', u'minist']
[u'bainimarama', u'aggress', u'downer', u'warn']
[u'bank', u'perform', u'resourc', u'loss']
[u'beatti', u'back', u'fardon', u'media', u'exposur']
[u'beatti', u'lament', u'fail', u'supercar']
[u'pave', u'clone', u'research']
[u'bond', u'make', u'lanka', u'bat']
[u'bond', u'strike', u'earli', u'blow']
[u'boost', u'western', u'region', u'cancer', u'patient']
[u'breaker', u'taipan', u'home']
[u'busi', u'ask', u'help', u'fund', u'medic', u'equip']
[u'busi', u'group', u'hit', u'tape', u'cost']
[u'swift', u'opal', u'fuel', u'roll']
[u'caloundra', u'expect', u'revamp', u'citi', u'council']
[u'cancer', u'group', u'concern', u'hospit', u'facil']
[u'canwest', u'flag', u'sale']
[u'caucus', u'approv', u'labor', u'frontbench']
[u'chief', u'condemn', u'fiji', u'coup']
[u'chiquita', u'takeov', u'stall']
[u'christma', u'prawn', u'catch', u'expect']
[u'clone', u'decis', u'renew', u'optim', u'scientist']
[u'closer']
[u'closer']
[u'clydesdal', u'move', u'shock']
[u'committe', u'find', u'ravlich', u'mislead', u'parliament']
[u'communiti', u'foundat', u'deliv', u'fund']
[u'compani', u'defend', u'canola', u'import']
[u'contract', u'perth', u'bunburi', u'highway', u'work']
[u'core', u'cattl', u'breed', u'stock', u'number', u'fall']
[u'council', u'approv', u'epsom', u'supermarket', u'plan']
[u'council', u'hop', u'clean', u'church', u'build']
[u'council', u'reject', u'airstrip', u'expans', u'plan']
[u'council', u'reject', u'minist', u'reason', u'cdep']
[u'council', u'say', u'submarin', u'offer']
[u'council', u'review', u'migrant', u'visa', u'role']
[u'crime', u'prevent', u'plan', u'showcas', u'win', u'scheme']
[u'daniel', u'pearl', u'film', u'premier', u'pakistan', u'festiv']
[u'darwin', u'lord', u'mayor', u'take', u'leav', u'absenc']
[u'deal', u'corrupt', u'govt']
[u'dilevski', u'rule', u'jet', u'clash']
[u'driver', u'pedestrian', u'receiv', u'suspend']
[u'drive', u'bank', u'leav', u'woman', u'hurt']
[u'drought', u'forc', u'countri', u'student', u'forgo']
[u'drought', u'impact', u'farm', u'incom']
[u'dubbo', u'servic', u'begin']
[u'dubbo', u'tradesman', u'electrocut']
[u'dun', u'child', u'retrial', u'move', u'brisban', u'court']
[u'earli', u'action', u'reduc', u'child', u'behaviour', u'problem']
[u'eastern', u'resid', u'remain', u'high', u'alert']
[u'eastwood', u'film', u'win', u'major', u'award']
[u'editor', u'playboy', u'indonesia', u'go', u'trial']
[u'effort', u'help', u'stop', u'weed', u'spread']
[u'environment', u'flow', u'bird', u'return', u'hattah']
[u'environ', u'plan', u'subservi', u'econom']
[u'fairfax', u'chairman', u'pledg', u'good', u'journal']
[u'fear', u'fire', u'spread']
[u'feder', u'govt', u'urg', u'creat', u'nation', u'health']
[u'feder', u'labor', u'back', u'govt', u'develop']
[u'festiv', u'organis', u'tree', u'damag']
[u'stand', u'asian']
[u'fifa', u'open', u'bid', u'world']
[u'figur', u'paint', u'posit', u'job', u'pictur']
[u'fiji', u'militari', u'shore', u'power']
[u'fiji', u'host', u'rugbi', u'tournament', u'despit', u'coup']
[u'final', u'appeal', u'lodg', u'bali', u'bomb', u'death']
[u'crew', u'backburn', u'condit']
[u'fish', u'chip', u'go', u'boutiqu']
[u'bank', u'worker', u'jail', u'theft']
[u'lawyer', u'jail', u'child', u'attempt']
[u'gerri', u'collin', u'australian', u'swim', u'championship']
[u'govt', u'accus', u'break', u'promis', u'water', u'price']
[u'govt', u'grant', u'encourag', u'water', u'save']
[u'govt', u'reject', u'opposit', u'great', u'western', u'highway']
[u'govt', u'reveal', u'age', u'care', u'facil']
[u'govt', u'urg', u'boost', u'carbon', u'trade', u'incent']
[u'govt', u'tabl', u'super', u'reform', u'plan']
[u'govt', u'embassi', u'powder', u'reaction']
[u'govt', u'urg', u'boost', u'afford', u'hous']
[u'govt', u'urg', u'heed', u'iraq', u'report', u'warn']
[u'govt', u'urg', u'caution', u'travel', u'philippin']
[u'green', u'reject', u'push', u'allow', u'shoot', u'illeg']
[u'gulpilil', u'fall', u'hard', u'time']
[u'hackett', u'answer', u'critic']
[u'hanson', u'comeback']
[u'hanson', u'independ']
[u'helen', u'coonan', u'broadband', u'blueprint']
[u'henri', u'lenton', u'pace', u'brisban']
[u'highway', u'reopen', u'bushfir', u'burn']
[u'highway', u'smoke', u'prompt', u'safeti', u'warn', u'driver']
[u'hope', u'protein', u'brain', u'tumour', u'treatment']
[u'howard', u'confid', u'plan', u'iraq', u'quick', u'exit']
[u'howard', u'picki']
[u'hunter', u'air', u'media', u'merger', u'worri']
[u'hydro', u'corpor', u'welcom', u'cloud', u'seed', u'grant']
[u'icac', u'probe', u'wont', u'stop', u'council', u'mayor']
[u'boss', u'attack', u'pakistan', u'dope', u'saga']
[u'immigr', u'debacl']
[u'indigen', u'affair', u'blueprint', u'whitefella', u'dream']
[u'inquiri', u'probe', u'southern', u'coalfield', u'mine']
[u'interim', u'fiji', u'say', u'coup', u'illeg']
[u'intersect', u'work', u'despit', u'road', u'death']
[u'iraq', u'panel', u'urg', u'action', u'arab', u'isra', u'conflict']
[u'iraq', u'report', u'call', u'radic', u'strategi', u'chang']
[u'iraq', u'report', u'urg', u'bush', u'withdraw', u'troop']
[u'iraq', u'report', u'urg', u'tactic', u'chang']
[u'iraq', u'review', u'prompt', u'offer', u'syria']
[u'iraq', u'studi', u'group', u'report']
[u'irrig', u'group', u'support', u'treat', u'wast', u'water']
[u'jabiluka', u'unlik', u'reopen']
[u'figur', u'novemb']
[u'jobless', u'rate', u'eastern']
[u'jobless', u'rate', u'stand']
[u'job', u'figur', u'scotch', u'talk', u'rate']
[u'labor', u'male', u'domin', u'frontbench', u'criticis']
[u'lack', u'moral', u'leadership']
[u'laidley', u'confid', u'gold', u'coast', u'support']
[u'laverton', u'museum', u'open']
[u'back', u'therapeut', u'clone']
[u'liber', u'get', u'respons']
[u'lobster', u'fisher', u'vote', u'regul']
[u'jail', u'forg', u'letter']
[u'maria', u'drawcard']
[u'maroochi', u'deni', u'surf', u'lifesav', u'divis']
[u'mason', u'train', u'york', u'jet']
[u'mcewen', u'confirm', u'tour']
[u'mcewen', u'order', u'elect']
[u'medic', u'council', u'want', u'tougher', u'penalti']
[u'medic', u'research', u'hail', u'clone', u'decis']
[u'memori', u'hold', u'russian']
[u'microsoft', u'prepar', u'rival', u'googl', u'book']
[u'militari', u'tighten', u'grip', u'fiji']
[u'milk', u'product', u'expect', u'drop']
[u'miner', u'fin', u'worker', u'death']
[u'miner', u'lose', u'appeal', u'gretley', u'convict']
[u'miss', u'teen', u'safe']
[u'monti', u'readi', u'perth', u'test']
[u'mother', u'face', u'extradit', u'son', u'stab', u'death']
[u'highlight', u'dental', u'wait', u'list', u'crisi']
[u'urg', u'reopen', u'disus', u'standpip']
[u'muscat', u'shrug', u'date', u'hate']
[u'nasa', u'clear', u'shuttl', u'launch']
[u'nation', u'say', u'muchea', u'saleyard', u'overdu']
[u'nitti', u'lead', u'scott', u'pace']
[u'bail', u'woman', u'accus', u'accessori']
[u'guarante', u'sunflow', u'hous', u'fund']
[u'withdraw', u'date', u'iraq', u'report', u'say', u'downer']
[u'polic', u'deliv', u'wish', u'list', u'ahead', u'state']
[u'uranium', u'control', u'push']
[u'impos', u'sport', u'sanction', u'fiji']
[u'impos', u'sport', u'sanction', u'fiji']
[u'vietnam', u'veteran', u'compens']
[u'command', u'lanka', u'test']
[u'olymp', u'swimmer', u'kevin', u'berri', u'die']
[u'onlin', u'campaign', u'warn', u'fraud', u'danger']
[u'opposit', u'urg', u'chang', u'croc', u'law']
[u'pakistan', u'send', u'windi']
[u'parent', u'press', u'school', u'upgrad']
[u'patterson', u'clone']
[u'phillip', u'adam', u'cathol', u'priest', u'share', u'human', u'right']
[u'deni', u'exagger', u'indonesian', u'embassi', u'threat']
[u'play', u'call', u'iraq', u'troop', u'withdraw']
[u'pledg', u'support', u'bushfir', u'fight']
[u'polic', u'commission', u'hail', u'high', u'tech', u'fingerprint']
[u'polic', u'expect', u'peac', u'cronulla', u'riot', u'anniversari']
[u'polic', u'hunt', u'safe', u'thiev']
[u'polic', u'investig', u'copper', u'wire', u'theft']
[u'polic', u'investig', u'maryborough', u'fatal', u'hous']
[u'policeman', u'unhappi', u'opal', u'fuel', u'public']
[u'polic', u'reveal', u'possibl', u'lead', u'morcomb', u'case']
[u'polic', u'seek', u'high', u'speed', u'freeway', u'chase']
[u'polic', u'crack', u'school', u'holiday', u'vandal']
[u'price', u'possibl', u'ruben', u'paint', u'soar']
[u'queensland', u'trial', u'cane']
[u'question', u'environment', u'record']
[u'racecours', u'trust', u'push', u'ahead', u'region', u'event']
[u'ralli', u'clarenc', u'valley', u'health', u'boost']
[u'rann', u'play', u'green', u'greenhous', u'claim']
[u'read', u'miss', u'chanc']
[u'redback', u'tiger', u'struggl']
[u'region', u'record', u'babi', u'bonus']
[u'releas', u'serial', u'rapist', u'best', u'locat', u'possibl']
[u'report', u'call', u'strategi', u'chang', u'iraq']
[u'report', u'balanc', u'work', u'famili']
[u'research', u'hail', u'therapeut', u'clone']
[u'resid', u'worri', u'youth', u'gang', u'problem', u'intensifi']
[u'retail', u'activ', u'pick']
[u'rethink', u'posit', u'david', u'hick', u'govt', u'tell']
[u'roar', u'futur', u'bleak', u'jet', u'defeat']
[u'rock', u'see', u'reject', u'call', u'burrup']
[u'roo', u'look', u'adapt', u'carrara']
[u'great', u'award', u'announc']
[u'upper', u'hous', u'pass', u'right']
[u'schipper', u'short']
[u'scientist', u'oblig', u'discuss', u'work']
[u'scrap', u'metal', u'depot', u'ban', u'work', u'site']
[u'secur', u'council', u'back', u'peacekeep', u'forc']
[u'senat', u'pass', u'strip', u'export', u'veto']
[u'shire', u'say', u'good', u'start', u'need']
[u'shooter', u'parti', u'hold', u'break', u'hill', u'elect', u'forum']
[u'rain', u'record', u'central', u'west']
[u'south', u'east', u'record', u'shorter', u'elect', u'surgeri', u'wait']
[u'south', u'west', u'warn', u'threat']
[u'lanka', u'bat']
[u'stem', u'cell', u'decis', u'disappoint', u'right', u'life', u'group']
[u'steve', u'costello', u'address', u'australian', u'water']
[u'steal', u'wag', u'report', u'back', u'state', u'compo']
[u'stoner', u'promis', u'fund', u'sewag', u'scheme']
[u'taipan', u'search', u'away']
[u'tamworth', u'music', u'festiv', u'launch', u'luna', u'park']
[u'tamworth', u'weekend', u'polic', u'boost']
[u'telstra', u'hold', u'high', u'speed', u'broadband', u'coonan']
[u'telstra', u'say', u'high', u'speed', u'internet']
[u'terang', u'decid', u'spend', u'fund']
[u'tomkin', u'eye', u'beij', u'game']
[u'truck', u'driver', u'kill', u'work', u'site']
[u'rule', u'suspect', u'claremont', u'kill']
[u'union', u'vow', u'filipino', u'guest', u'worker', u'case']
[u'unit', u'celtic', u'arsenal', u'reach', u'champion', u'leagu']
[u'senat', u'confirm', u'gate', u'defenc', u'chief']
[u'vasey', u'remain', u'open', u'highway', u'work']
[u'vaughan', u'unlik', u'face', u'australia', u'fletcher']
[u'bushfir', u'hotlin', u'flood', u'call']
[u'fire', u'destroy', u'holiday', u'hous']
[u'watson', u'ash', u'hop', u'fade']
[u'clear', u'oversea', u'meatwork', u'start', u'work']
[u'wesfarm', u'buy', u'broker']
[u'westpoint', u'boss', u'memori', u'laps', u'oversea', u'money']
[u'william', u'contract', u'talk', u'power']
[u'miner', u'warn', u'tough', u'work']
[u'boost', u'gatton']
[u'king']
[u'lotto', u'turn', u'windfal']
[u'charg', u'drug', u'raid']
[u'award', u'asbesto', u'compens', u'case']
[u'look', u'fund']
[u'chief', u'offend', u'claim', u'influenc']
[u'revis', u'grain', u'storag', u'figur']
[u'accus', u'murder', u'remand', u'alic']
[u'action', u'group', u'back', u'plan', u'eas', u'dental', u'shortag']
[u'adelaid', u'down']
[u'back', u'push', u'mackay', u'hospit']
[u'anti', u'log', u'group', u'consid', u'polit', u'parti']
[u'armi', u'order', u'bendigo', u'bushmast']
[u'arrest', u'stem', u'drug', u'crime', u'polic']
[u'arson', u'hous', u'fire']
[u'auditor', u'general', u'allow', u'greater', u'access']
[u'australian', u'studi', u'giant', u'antarct', u'crack']
[u'australia', u'fish', u'sanction', u'illeg']
[u'aust', u'wine', u'export']
[u'bangladesh', u'thrash', u'zimbabw']
[u'bank', u'miner', u'drag', u'market']
[u'baxter', u'detaine', u'condit']
[u'beatti', u'challeng', u'fals', u'cape', u'develop']
[u'beatti', u'iemma', u'surpris', u'nuttal', u'probe']
[u'bittersweet', u'time', u'rural', u'church', u'merg']
[u'black', u'hawk', u'pilot', u'lay', u'rest']
[u'blood', u'servic', u'plan', u'gambier', u'return']
[u'bomber', u'michael', u'clear']
[u'bouncer', u'guilti', u'manslaught']
[u'guilti', u'umbrella', u'murder', u'retrial']
[u'brack', u'warn', u'danger']
[u'breast', u'cancer', u'patient', u'offer', u'concept']
[u'buffalo', u'whisper', u'hop', u'support', u'send']
[u'bull', u'good', u'bushrang']
[u'bundaberg', u'ident', u'give', u'communiti']
[u'bush', u'blair', u'agre', u'approach', u'need', u'iraq']
[u'bushfir', u'week', u'extinguish']
[u'bushfir', u'threaten', u'town']
[u'bush', u'iraq']
[u'bush', u'open']
[u'bush', u'reveal', u'iraq', u'strategi']
[u'driver', u'lock', u'boot']
[u'milk', u'price', u'rise', u'benefit', u'farmer']
[u'probe', u'indonesian', u'activist', u'murder']
[u'caloundra', u'council', u'undecid', u'councillor', u'number']
[u'campbel', u'reject', u'water', u'fund', u'claim']
[u'canadian', u'suppli', u'rescu', u'chopper']
[u'canowindra', u'district', u'accus', u'anim', u'cruelti']
[u'carpent', u'applaud', u'woodsid', u'commit']
[u'child', u'care', u'report', u'miss', u'point', u'opposit']
[u'childcar', u'shake']
[u'church', u'enter', u'fiji', u'debat']
[u'closer']
[u'closer']
[u'closer']
[u'communiti', u'foundat', u'look', u'donat']
[u'condit', u'eas', u'firefight']
[u'council', u'angri', u'environment', u'flow', u'decis']
[u'council', u'oppos', u'decis', u'revok', u'student']
[u'cyclon', u'summit']
[u'cyclon', u'summit', u'learn', u'mistak']
[u'group', u'accept', u'takeov']
[u'deadlin', u'loom', u'town', u'submiss']
[u'death', u'cast', u'dark', u'shadow', u'asian', u'game']
[u'develop', u'claim', u'strong', u'support', u'epsom', u'hunt']
[u'display', u'uniti', u'cronulla', u'riot']
[u'diver', u'conduct', u'fish', u'ccensus']
[u'doctor', u'trial', u'hair', u'breast', u'cancer', u'test']
[u'dont', u'obey', u'militari', u'regim', u'qaras', u'plead']
[u'downer', u'play', u'iraq', u'report']
[u'drought', u'roll', u'break', u'hill']
[u'drought', u'lower', u'wool', u'product', u'estim']
[u'drought', u'wont', u'stop', u'deliveri', u'xmas', u'tree']
[u'drought', u'worri', u'south', u'coast', u'dairi', u'farmer']
[u'drug', u'charg', u'drop', u'canadian']
[u'educ', u'award', u'winner', u'pay', u'tribut', u'teacher']
[u'elder', u'reunit', u'thursday', u'relat']
[u'back', u'condit', u'draw', u'water', u'aquif']
[u'fact', u'sheet', u'aim', u'reduc', u'attack', u'children']
[u'farmer', u'urg', u'consid', u'grow', u'truffl']
[u'victori', u'fight', u'draw']
[u'ferri', u'hit', u'sandbank']
[u'fifth', u'protest', u'arrest']
[u'call']
[u'flinder', u'medic', u'staff', u'strike']
[u'liais', u'govt', u'irrig']
[u'french', u'spiderman', u'arrest', u'atop', u'mexican', u'skyscrap']
[u'fund', u'approv', u'pluto', u'field']
[u'ganguli', u'save', u'india', u'comeback', u'inning']
[u'gatton', u'council', u'jail', u'phone', u'survey']
[u'gerri', u'collin', u'swim', u'championship']
[u'canola', u'shipment', u'contamin', u'aqi']
[u'govt', u'reject', u'suggest', u'recess']
[u'govt', u'lane', u'cove', u'tunnel', u'oper']
[u'greenough', u'shire', u'refer', u'councillor', u'concern']
[u'green', u'forest', u'hunt', u'safeti', u'fear']
[u'haas', u'back', u'move', u'combat', u'illeg', u'fish']
[u'hensbi', u'senden', u'trail', u'world', u'leader']
[u'high', u'court', u'reject', u'applic', u'hear', u'case']
[u'higher', u'rat', u'bite', u'home', u'loan', u'demand']
[u'high', u'support', u'public', u'servant', u'deal']
[u'hous', u'financ', u'figur', u'octob']
[u'howard', u'admit', u'iraq', u'go', u'bad']
[u'howard', u'admit', u'iraq', u'go', u'bad']
[u'hundr', u'farewel', u'black', u'hawk', u'pilot']
[u'iemma', u'happi', u'help', u'nuttal', u'investig']
[u'indigen', u'justic', u'group', u'renew', u'call', u'legal']
[u'indonesia', u'australia', u'discuss', u'peopl', u'smuggl']
[u'industri', u'appeal', u'appl', u'import']
[u'intern', u'baggag', u'restrict', u'tighten']
[u'japan', u'extend', u'iraq', u'forc', u'deploy']
[u'judg', u'join', u'protest', u'hickss', u'detent']
[u'kosmina', u'lash', u'fair', u'weather', u'fan']
[u'kossi', u'lash', u'fair', u'weather', u'fan']
[u'laney', u'ticket']
[u'lewthwait', u'fair', u'hear', u'parol']
[u'littl', u'foot', u'younger', u'think', u'studi']
[u'litvinenko', u'associ', u'poison', u'russian', u'author']
[u'lobster', u'migrat', u'delay', u'miner', u'earli', u'port', u'work']
[u'local', u'tafe', u'help', u'develop', u'china', u'train', u'centr']
[u'logger', u'defend', u'communiti', u'bushfir']
[u'lonard', u'take', u'lead', u'nitti', u'struggl']
[u'mackay', u'doctor', u'suspend', u'patient', u'affair']
[u'malaria', u'help', u'spread', u'aid', u'studi']
[u'accus', u'attempt', u'murder', u'stab']
[u'fin', u'road', u'rage', u'incid']
[u'get', u'bail', u'admit', u'manslaught']
[u'martyn', u'announc', u'retir']
[u'martyn', u'retir']
[u'mayor', u'stand', u'govt', u'boost', u'water']
[u'mayor', u'urg', u'action', u'let', u'home']
[u'mcewen', u'accept', u'court', u'decis', u'newspap']
[u'meatwork', u'bounc', u'drought', u'loom']
[u'melbourn', u'seat', u'decid']
[u'miatk', u'pip', u'lenton', u'schipper']
[u'michael', u'clear', u'bomber', u'deal']
[u'probe', u'late', u'green', u'group']
[u'miner', u'say', u'copper', u'deposit', u'world', u'class']
[u'molloy', u'reject', u'repay', u'elector', u'allow']
[u'revel', u'litvinenko', u'case']
[u'factor', u'hospit', u'bash', u'minist']
[u'motorway', u'crash', u'leav', u'pair', u'hospit']
[u'question', u'nation', u'park', u'manag']
[u'nasa', u'call', u'space', u'shuttl', u'launch']
[u'zealand', u'join', u'battl', u'blaze']
[u'mine', u'boom', u'unskil', u'worker']
[u'northam', u'shire', u'push', u'northam', u'town', u'merger']
[u'north', u'anglican', u'elect', u'bishop']
[u'firefight', u'help', u'battl', u'blaze']
[u'unemploy', u'figur', u'absurd']
[u'grower', u'brand', u'small', u'mango', u'tray', u'flop']
[u'tourism', u'rise']
[u'nurs', u'demand', u'protect', u'bash']
[u'nurs', u'urg', u'accept', u'wage', u'offer']
[u'author', u'apologis', u'teen', u'prison', u'murder']
[u'pois', u'victori']
[u'stumbl', u'past', u'lankan', u'total']
[u'opposit', u'criticis', u'child', u'care', u'report']
[u'orang', u'picnic', u'race', u'secur', u'alcohol']
[u'oust', u'leav', u'griffith', u'fiji']
[u'panesar', u'prepar', u'ash']
[u'parkinson', u'take', u'hawaiian', u'titl']
[u'parol', u'author', u'defer', u'lewthwait', u'decis']
[u'patient', u'bash', u'nurs', u'psychiatr', u'unit', u'say']
[u'philippin', u'postpon', u'asian', u'summit']
[u'admit', u'iraq', u'go', u'bad']
[u'admit', u'iraq', u'situat']
[u'lose', u'close', u'advisor']
[u'chief', u'staff', u'resign']
[u'polic', u'appeal', u'help', u'woman', u'bodi']
[u'polic', u'crack', u'perth', u'drug', u'dealer', u'sell']
[u'polic', u'lament', u'lake', u'macquari', u'drink', u'drive', u'statist']
[u'properti', u'seiz', u'nuttal', u'investig']
[u'protest', u'plan', u'fiji', u'coup', u'qaras']
[u'public', u'feedback', u'seek', u'gnowangerup', u'strateg']
[u'public', u'interest', u'hanson', u'view']
[u'public', u'urg', u'help', u'catch', u'busi', u'thiev']
[u'board', u'search', u'clydesdal', u'replac']
[u'recoveri', u'aceh']
[u'redback', u'close', u'inning', u'point']
[u'redback', u'extend', u'lead', u'tiger']
[u'region', u'firefight', u'help', u'battl', u'fire']
[u'report', u'petrol', u'price']
[u'rescu', u'chopper', u'decis', u'nonsens']
[u'research', u'closer', u'diabet', u'vaccin']
[u'resid', u'prepar', u'horror', u'bushfir', u'weekend']
[u'riebel', u'rock', u'comment', u'attack']
[u'tinto', u'yarwun', u'facil', u'consid', u'vital']
[u'firefight', u'prepar', u'extrem', u'condit']
[u'parent', u'endors', u'amalgam', u'school']
[u'water', u'chief', u'hint', u'domest', u'water', u'price']
[u'school', u'vigil', u'maintain', u'pressur', u'govt']
[u'scientist', u'malaria', u'fuel', u'aid', u'spread', u'africa']
[u'scientist', u'studi', u'antarct', u'shelf', u'crack']
[u'chang', u'lead', u'coastal', u'urbanis']
[u'senat', u'committe', u'member', u'reject', u'petrol', u'inquiri']
[u'share', u'part', u'retail', u'request', u'share', u'trade', u'halt']
[u'shevchenko', u'untouch', u'say', u'mourinho']
[u'shop', u'centr', u'recal', u'drink', u'bottl']
[u'sign', u'fijian', u'civilian', u'will', u'join', u'govt']
[u'sister', u'receiv', u'award', u'braveri']
[u'slow', u'king', u'highway', u'polic', u'plead']
[u'spencer', u'gulf', u'ferri', u'arriv', u'lucki']
[u'stanwel', u'lament', u'lose', u'power', u'station', u'benefit']
[u'stock', u'rout', u'travel', u'prais', u'farmer', u'generos']
[u'storm', u'play', u'havoc', u'england', u'phone', u'servic']
[u'studi', u'urg', u'drought', u'support', u'farm']
[u'support', u'stem', u'cell', u'research']
[u'support', u'lack', u'bash', u'schooli', u'famili']
[u'sydney', u'stop', u'muscat']
[u'symond', u'voge', u'martyn', u'bombshel']
[u'takeov', u'target', u'fail', u'hong', u'kong', u'drug', u'test']
[u'task', u'forc', u'chief', u'highlight', u'traveston']
[u'telstra', u'remov', u'public', u'phone']
[u'cano', u'boost', u'local', u'film', u'industri']
[u'cano', u'domin', u'award']
[u'terror', u'probe', u'shock', u'student']
[u'say', u'room', u'complac', u'bushfir', u'battl']
[u'hospitalis', u'baxter', u'incid']
[u'tourist', u'road', u'close', u'buller', u'prepar']
[u'trader', u'marin', u'park', u'impact', u'harsh']
[u'travel', u'face', u'hand', u'luggag', u'crackdown']
[u'treatment', u'ground', u'accus', u'murder']
[u'tree', u'clear', u'concern', u'prompt', u'properti', u'check']
[u'true', u'cost', u'uranium']
[u'veteran', u'urg', u'talk', u'syria', u'iraq']
[u'cut', u'fund', u'televis', u'sydney']
[u'union', u'discuss', u'entitl', u'empir', u'rubber']
[u'urban', u'renew', u'chang', u'upset', u'mooroobool', u'home', u'owner']
[u'strike', u'kill', u'qaeda', u'terrorist']
[u'victoria', u'prepar', u'intens', u'weekend']
[u'beach', u'lucki', u'whitest', u'sand', u'contest']
[u'educ', u'minist']
[u'premier', u'urg', u'indigen', u'affair']
[u'water', u'author', u'maintain', u'silent', u'sewer', u'delay']
[u'wave', u'hill', u'group', u'prepar', u'steal', u'wag', u'claim']
[u'what']
[u'world', u'record', u'elud', u'jone']
[u'wright', u'ile', u'share', u'lead']
[u'involv', u'rural', u'famili']
[u'iraq', u'withdraw', u'possibl', u'command', u'say']
[u'kill', u'dozen', u'hurt', u'iraq', u'shrine', u'blast']
[u'send', u'crew', u'help', u'fight', u'fire']
[u'angri', u'rescu', u'chopper', u'doctor', u'threaten', u'quit']
[u'asbesto', u'lung', u'cancer', u'rule', u'set', u'signific']
[u'asean', u'meet', u'postpon']
[u'australia', u'bomb', u'seven']
[u'australian', u'trail', u'leader', u'world']
[u'australian', u'water', u'cube', u'make', u'splash']
[u'want', u'land', u'toxic', u'wast', u'process', u'site']
[u'brisban', u'school', u'fire', u'prompt', u'appeal', u'resid']
[u'brisban', u'greenhous', u'emiss']
[u'british', u'danish', u'troop', u'seiz', u'suspect', u'iraqi']
[u'bushfir', u'contain', u'line', u'build', u'overnight']
[u'bush', u'meet', u'republican', u'democrat', u'iraq']
[u'bush', u'hold', u'iraq', u'strategi', u'meet']
[u'bush', u'urg', u'action', u'darfur']
[u'chappel', u'ganguli', u'good', u'term', u'media']
[u'claim', u'violenc', u'hospit', u'forc', u'nurs']
[u'closer']
[u'closer']
[u'commonwealth', u'minist', u'discuss', u'suspend', u'fiji']
[u'commonwealth', u'suspend', u'fiji', u'membership']
[u'commonwealth', u'suspens', u'doesnt', u'shock', u'fiji', u'regim']
[u'coron', u'hear', u'evid', u'balibo']
[u'cousin', u'escap', u'punish']
[u'croc', u'notch', u'home', u'dragon']
[u'curri', u'crave', u'inspir', u'takeaway', u'order']
[u'divis', u'widen', u'fiji', u'amid', u'suspens']
[u'doctor', u'trial', u'hair', u'breast', u'cancer', u'test']
[u'driver', u'warn', u'delay', u'gungahlin', u'drive']
[u'drop', u'chanc', u'haunt', u'gile']
[u'english', u'attack', u'crow']
[u'offic', u'join', u'hick', u'protest', u'perth']
[u'favour', u'wind', u'help', u'bream', u'creek', u'firefight']
[u'fear', u'windi', u'condit', u'flare', u'fire']
[u'feder', u'critic', u'deal', u'crazi']
[u'fiji', u'commonwealth', u'membership', u'suspend']
[u'fiji', u'suspend', u'commonwealth']
[u'firefight', u'brace', u'worsen', u'condit']
[u'firefight', u'fear', u'bream', u'creek', u'blaze', u'day']
[u'servic', u'warn', u'danger', u'weekend', u'condit']
[u'fisherman', u'critic', u'rock', u'fall']
[u'dead', u'chicago', u'offic', u'shoot']
[u'germani', u'say', u'holocaust', u'confer', u'unaccept']
[u'gerri', u'collin', u'swim', u'championship']
[u'green', u'want', u'aquif', u'plan', u'reject']
[u'hackett', u'happi', u'heat', u'swim']
[u'headway', u'murder', u'journalist', u'case', u'putin']
[u'health', u'strike', u'continu', u'despit', u'major', u'vote']
[u'heavi', u'fight', u'break', u'somalia']
[u'hickss', u'return', u'simpl', u'say', u'ruddock']
[u'high', u'wind', u'predict', u'eastern', u'blaze']
[u'hospit', u'run', u'dialysi', u'bag']
[u'immigr', u'integr', u'britain', u'blair']
[u'indian', u'airport', u'terror', u'alert']
[u'indian', u'batsmen', u'struggl', u'south', u'africa']
[u'indian', u'nuclear', u'deal', u'pass', u'hous']
[u'justic', u'depart', u'deni', u'prison', u'guard', u'subject']
[u'king', u'taipan', u'song']
[u'lawyer', u'want', u'balibo', u'evid', u'test']
[u'lebanon', u'accus', u'hezbollah', u'coup', u'plot']
[u'macfarlan', u'critic', u'condit', u'woodsid']
[u'charg', u'murder', u'babi']
[u'hospitalis', u'singl', u'accid']
[u'kill', u'yang', u'mainten', u'accid']
[u'mariah', u'carey', u'battl', u'porn', u'star', u'stage']
[u'mild', u'condit', u'wont', u'author', u'warn']
[u'minist', u'grinch', u'rural', u'newslett', u'fund']
[u'minist', u'confid', u'quiet', u'cronulla', u'riot']
[u'molloy', u'agre', u'repay', u'elector', u'fund']
[u'moscow', u'hospit', u'kill']
[u'motorcycl', u'donat']
[u'nasa', u'technolog', u'aid', u'osteoporosi', u'suffer']
[u'season', u'start', u'month']
[u'chase', u'lanka']
[u'scrambl', u'nervous', u'test']
[u'ohern', u'lonard', u'healthi', u'lead']
[u'peopl', u'ralli', u'hickss', u'return']
[u'pilot', u'hurt', u'ultralight', u'plane', u'crash']
[u'polic', u'investig', u'melbourn', u'stab', u'attack']
[u'polic', u'suspect', u'radioact', u'sourc', u'germani']
[u'price', u'bread', u'rise']
[u'program', u'problem', u'caus', u'backlog', u'speed']
[u'protest', u'ralli', u'hickss', u'guantanamo', u'releas']
[u'ranger', u'capit']
[u'report', u'fiji', u'gunfir', u'game', u'cricket']
[u'resid', u'urg', u'work', u'author']
[u'rumsfeld', u'plead', u'patienc', u'iraq']
[u'sartor', u'use', u'special', u'plan', u'power', u'push']
[u'school', u'teacher', u'charg', u'crime']
[u'small', u'grassfir', u'contain']
[u'smoke', u'haze', u'delay', u'flight', u'melbourn']
[u'sullivan', u'break', u'hawk', u'record']
[u'supercar', u'duel', u'go', u'wire']
[u'sydney', u'harbour', u'fish', u'partial', u'lift']
[u'sydney', u'rent', u'predict', u'increas']
[u'takeov', u'target', u'fail', u'second', u'drug', u'test']
[u'taliban', u'kill', u'afghan', u'famili', u'member']
[u'firefight', u'anticip', u'extrem']
[u'firefight', u'prepar', u'extrem']
[u'firefight', u'bring', u'blaze', u'control']
[u'temperatur', u'soar']
[u'test', u'prove', u'diana', u'driver', u'drink']
[u'smoke', u'hamper', u'firefight']
[u'thousand', u'protest', u'hick', u'detain']
[u'school', u'damag', u'blaze']
[u'tiger', u'fail', u'chase', u'hold', u'draw']
[u'republican', u'neglig', u'foley', u'case', u'say', u'panel']
[u'tourism', u'bodi', u'concern', u'futur', u'star']
[u'trio', u'atop', u'leaderboard']
[u'kill', u'brisban', u'road', u'accid']
[u'ukrainian', u'chelsea', u'wont', u'shevchenko']
[u'unit', u'church', u'urg', u'hickss', u'repatri']
[u'polic', u'arrest', u'timor', u'attack']
[u'offens', u'kill', u'iraqi', u'civilian', u'local']
[u'pilot', u'charg', u'brazil', u'crash']
[u'bushfir', u'join']
[u'firefight', u'brace', u'worsen', u'condit']
[u'firefight', u'prepar', u'extrem', u'condit']
[u'resid', u'brace', u'extrem', u'condit']
[u'bat', u'england']
[u'start', u'england']
[u'wesley', u'snip', u'arrest', u'charg']
[u'wife', u'call', u'truth', u'balibo', u'kill']
[u'wife', u'want', u'truth', u'balibo', u'kill']
[u'wit', u'urg', u'come', u'forward', u'canberra']
[u'woolmer', u'happi', u'akhtar', u'asif', u'train']
[u'kill', u'lanka', u'unrest', u'rebel']
[u'drought', u'affect']
[u'absolut', u'champion', u'star', u'takeov', u'target', u'absenc']
[u'drop', u'deliv', u'relief', u'somali', u'refuge']
[u'drop', u'target', u'somali', u'refuge']
[u'alleg', u'babi', u'killer', u'refus', u'bail']
[u'qaeda', u'suspect', u'arrest', u'turkey', u'report']
[u'arrest', u'australian', u'sailor', u'charg']
[u'aust', u'research', u'discov', u'dolphin']
[u'aust', u'sailor', u'arrest', u'noumea']
[u'aust', u'sailor', u'charg', u'manslaught']
[u'aust', u'soldier', u'arrest', u'noumea']
[u'bangladesh', u'complet', u'sweep']
[u'bangladesh', u'deploy', u'troop', u'capit']
[u'barcelona', u'real']
[u'blaze', u'burn']
[u'boomer', u'hold', u'ranger']
[u'bream', u'creek', u'firefight', u'fulli', u'stretch']
[u'bush', u'want', u'cooper', u'iraq', u'strategi']
[u'warn', u'resid', u'complac']
[u'classifi', u'balibo', u'info', u'unlik', u'releas']
[u'classifi', u'balibo', u'materi', u'unlik', u'releas']
[u'closer']
[u'closer']
[u'compos', u'grammi', u'nomin', u'mistak']
[u'cowan', u'lead', u'blue', u'total']
[u'crew', u'battl', u'increas', u'heat', u'wind']
[u'cronulla', u'quiet', u'year', u'riot']
[u'debnam', u'plan', u'drought', u'fund']
[u'democraci', u'shrine', u'destroy', u'fiji']
[u'diabet', u'obes', u'rat', u'increas', u'report']
[u'discoveri', u'blast', u'space']
[u'doctor', u'snub', u'wont', u'careflight', u'govt']
[u'doctor', u'reject', u'posit', u'rescu']
[u'dozen', u'civilian', u'kill', u'darfur']
[u'drive', u'behaviour', u'influenc', u'famili', u'friend']
[u'drop', u'wait', u'list', u'help', u'fund', u'hospit']
[u'earli', u'elect', u'talk', u'anger', u'hama']
[u'england', u'open', u'form']
[u'england', u'plenti', u'tour', u'match']
[u'timor', u'leader', u'cooper']
[u'fear', u'bream', u'creek', u'day']
[u'fight', u'rag', u'second', u'somalia']
[u'fijian', u'armi', u'seek', u'silenc', u'dissent']
[u'fiji', u'lose', u'right', u'host', u'world', u'champ']
[u'fiji', u'ban', u'sport', u'event', u'tunstal']
[u'crew', u'brace', u'horrid']
[u'firefight', u'battl', u'protect', u'properti']
[u'garrett', u'vow', u'roll', u'sleev', u'climat', u'chang']
[u'gerri', u'collin', u'swim', u'championship', u'seven']
[u'govt', u'ask', u'interven', u'shop', u'centr']
[u'govt', u'turn', u'blind', u'illeg', u'brothel']
[u'green', u'criticis', u'carbon', u'trade', u'task', u'forc']
[u'guard', u'hurt', u'gaza', u'parliament', u'shoot']
[u'hackett', u'claim', u'nation', u'titl']
[u'henri', u'undecid', u'manag', u'ambit']
[u'hensbi', u'senden', u'trail', u'leader', u'barbado']
[u'high', u'prais', u'socceroo', u'schwarzer']
[u'hospit', u'staff', u'leav', u'dozen']
[u'indian', u'spare']
[u'injur', u'driver', u'home', u'christma']
[u'iran', u'offer', u'help', u'leav', u'iraq']
[u'iraqi', u'presid', u'reject', u'report']
[u'irish', u'pull', u'intern', u'rule']
[u'wont', u'rudd', u'light', u'howard', u'say']
[u'kelli', u'take', u'championship', u'high', u'drama']
[u'knight', u'hold', u'draw', u'unit']
[u'lebanes', u'presid', u'reject', u'hariri', u'tribun', u'plan']
[u'lonard', u'ohern', u'lead']
[u'charg', u'crash', u'polic', u'offic']
[u'charg', u'murder']
[u'kill', u'plane', u'crash']
[u'kill', u'stab', u'attack']
[u'question', u'relat', u'woman', u'murder']
[u'want', u'shop', u'centr', u'attack']
[u'marin', u'get', u'jump', u'glori']
[u'milder', u'weather', u'aid', u'firefight']
[u'minist', u'will', u'consid', u'info', u'heroin']
[u'nato', u'slash', u'taliban', u'death', u'toll']
[u'erupt', u'western']
[u'flag', u'program', u'save', u'water']
[u'seven', u'titl']
[u'offici', u'investig', u'moscow']
[u'ohern', u'win', u'dramat', u'play']
[u'pakistani', u'activist', u'denounc', u'disappear']
[u'pakistan', u'test', u'ballist', u'missil']
[u'palermo', u'track', u'seri']
[u'photo', u'galleri', u'bushfir']
[u'back', u'earli', u'palestinian', u'elect']
[u'announc', u'emiss', u'trade', u'taskforc']
[u'carbon', u'trade', u'task', u'forc', u'stack', u'say', u'brown']
[u'polic', u'hope', u'dead', u'woman', u'jewelleri', u'help']
[u'polic', u'investig', u'continu', u'rural', u'famili']
[u'politician', u'want', u'convict', u'heroin', u'traffick']
[u'prison', u'go', u'display']
[u'democraci', u'support', u'detain', u'fiji']
[u'propos', u'local', u'council', u'chang', u'make', u'resid']
[u'protest', u'gungahlin', u'work', u'open', u'voic']
[u'protour', u'team', u'expel', u'discoveri', u'channel', u'saiz']
[u'public', u'feedback', u'want', u'govt', u'water', u'project']
[u'govt', u'dead', u'school', u'cross']
[u'radiat', u'trace', u'germani', u'polic']
[u'redevelop', u'flinder', u'museum', u'open']
[u'resid', u'want', u'altern', u'iron', u'cove', u'bridg']
[u'say', u'crew', u'abandon', u'communic']
[u'rudd', u'announc', u'frontbench', u'portfolio']
[u'rudd', u'attack', u'coalit', u'lack', u'vision']
[u'rudd', u'frontbench', u'absolut', u'best', u'team']
[u'rudd', u'unveil', u'labor', u'frontbench']
[u'rumsfeld', u'make', u'farewel', u'trip', u'iraq']
[u'saddam', u'nephew', u'escap', u'jail']
[u'school', u'teacher', u'feel', u'reshuffl', u'pressur']
[u'sorri', u'saga', u'cabbi', u'hors']
[u'space', u'shuttl', u'discoveri', u'lift']
[u'spot', u'fire', u'ember', u'caus', u'concern']
[u'strong', u'wind', u'bring', u'threat', u'town']
[u'strong', u'wind', u'bushfir']
[u'strong', u'wind', u'push', u'fire', u'town']
[u'strong', u'wind', u'push', u'fire', u'town']
[u'takeov', u'target', u'scratch', u'hong', u'kong']
[u'taliban', u'flag', u'join', u'afghan', u'peac', u'talk']
[u'crew', u'hope', u'cool', u'chang']
[u'task', u'forc', u'report', u'emiss', u'trade']
[u'thiev', u'target', u'adelaid', u'pharmaci']
[u'thousand', u'escap', u'lanka', u'fight']
[u'triumphant', u'marin', u'hold', u'firm']
[u'typhoon', u'wreak', u'havoc', u'philippin']
[u'unit', u'step', u'titl', u'acceler']
[u'crew', u'brace', u'extrem', u'condit']
[u'firefight', u'prepar', u'extrem', u'condit']
[u'town', u'brace', u'threat']
[u'town', u'face', u'immedi', u'threat']
[u'township', u'warn', u'ember', u'spot', u'fire']
[u'water', u'pressur', u'trial', u'aim', u'reduc', u'wast']
[u'white', u'klinger', u'stun', u'blue']
[u'widow', u'accus', u'russia', u'spi', u'murder']
[u'wildcat', u'thrash', u'breaker']
[u'wind', u'begin', u'strengthen']
[u'wind', u'fire', u'near', u'town']
[u'woman', u'charg', u'danger', u'drive', u'rural']
[u'women', u'protest', u'darfur', u'rap']
[u'world', u'damag', u'england', u'woodward']
[u'youth', u'festiv', u'hop', u'counter', u'cronulla', u'imag']
[u'corps', u'baghdad']
[u'aceh', u'await', u'result', u'poll', u'close']
[u'alga', u'outbreak', u'expect', u'affect', u'drink']
[u'appal', u'minist', u'suicid', u'bungl']
[u'back', u'indigen', u'health', u'plan']
[u'antarct', u'research', u'plane']
[u'apprenticeship', u'traine', u'number', u'remain', u'steadi']
[u'aquif', u'eas', u'sydney', u'water', u'woe']
[u'asleep', u'wheel']
[u'australian', u'present', u'holocaust', u'denial', u'paper']
[u'australia', u'chilean', u'communiti', u'celebr', u'pinochet']
[u'author', u'urg', u'cooper', u'balibo']
[u'bangladeshi', u'professor', u'award', u'nobel', u'peac', u'prize']
[u'barca', u'secur', u'lead', u'sevilla', u'beat', u'real']
[u'bath', u'spong', u'potenti', u'global', u'demand', u'scientist']
[u'beachley', u'take', u'seventh', u'world', u'titl']
[u'beatti', u'reject', u'molloy', u'victori', u'claim']
[u'bendigo', u'firefight', u'help', u'battl', u'north', u'east', u'fire']
[u'billiton', u'wast', u'manag', u'question']
[u'boat', u'grace', u'sydney', u'harbour']
[u'boss', u'deni', u'involv', u'saleswoman', u'death']
[u'boxer', u'report', u'plead', u'guilti', u'extort']
[u'brack', u'visit', u'firefight']
[u'brack', u'visit', u'crew', u'blaze', u'threaten', u'home']
[u'british', u'bobbi', u'help', u'polic', u'english', u'fan']
[u'break', u'hill', u'racecours', u'pavilion', u'attract']
[u'bushfir', u'destroy', u'hous', u'tasmania']
[u'bushfir', u'destroy', u'home']
[u'bushfir', u'forc', u'camper', u'evacu']
[u'busi', u'urg', u'help', u'militari', u'museum']
[u'calm', u'fall', u'canberra']
[u'camera', u'stop', u'mareeba', u'dump', u'fire']
[u'chilean', u'dictat', u'pinochet', u'loath', u'love']
[u'closer']
[u'closer']
[u'club', u'picnic', u'race', u'meet', u'secur', u'boost']
[u'coal', u'miner', u'test', u'posit', u'legionnair']
[u'commission', u'reject', u'call', u'blue', u'mountain']
[u'compani', u'buoy', u'sit', u'geotherm', u'potenti']
[u'compani', u'reject', u'floodway', u'claim']
[u'compani', u'slash', u'contractor', u'number']
[u'consult', u'appoint', u'boost', u'wheatbelt']
[u'coron', u'blame', u'driver', u'fatigu', u'fatal']
[u'councillor', u'cast', u'doubt', u'cyclon', u'prepared']
[u'councillor', u'tri', u'delay', u'epsom', u'develop']
[u'court', u'hear', u'tortur', u'assault', u'charg']
[u'cover']
[u'cowra', u'firm', u'welcom', u'mushroom', u'anti', u'dump', u'decis']
[u'credit', u'cardhold', u'urg', u'avoid', u'xmas', u'debt']
[u'crop', u'move', u'waikeri', u'bypass']
[u'peac', u'lanka']
[u'defam', u'action', u'robert', u'dismiss']
[u'dept', u'hop', u'sediment', u'flow', u'lake', u'argyl']
[u'disqualifi', u'compani', u'director', u'get', u'suspend', u'jail']
[u'doubt', u'rais', u'chicken', u'farm', u'water', u'suppli']
[u'downer', u'incit', u'violenc', u'say', u'fiji', u'coup', u'leader']
[u'driver', u'die', u'highway', u'crash']
[u'driver', u'die', u'truck', u'crash']
[u'drought', u'farmer', u'work', u'catchment', u'author']
[u'drought', u'hit', u'freight', u'compani', u'trucki']
[u'drought', u'maintain', u'grip', u'western']
[u'drought', u'tighten', u'hold']
[u'drug', u'brawl', u'leav', u'stain', u'asian', u'spectacl']
[u'drink', u'driver', u'jail', u'kill', u'woman']
[u'drink', u'sailor', u'woman', u'repeat', u'polic']
[u'dust', u'forc', u'vicroad', u'consid', u'road', u'closur']
[u'elder', u'offer', u'healthi', u'waterway', u'knowledg']
[u'emiss', u'trade', u'task', u'forc', u'stack', u'acci']
[u'empir', u'rubber', u'worker', u'entitl', u'promis']
[u'england', u'determin', u'strauss']
[u'exhibit', u'detail', u'aborigin', u'lifestyl']
[u'extra', u'crew', u'send', u'flashpoint']
[u'worker', u'launch', u'compens', u'class', u'action']
[u'famili', u'feud', u'alic', u'spring', u'brawl', u'polic']
[u'farm', u'group', u'warn', u'potenti', u'high', u'cost']
[u'feder', u'fund', u'boost', u'cancer', u'servic', u'centr']
[u'figur', u'reveal', u'grow', u'popul', u'bowen', u'basin']
[u'fiji', u'coup', u'resolv', u'commonwealth', u'chief']
[u'fiji', u'power', u'struggl']
[u'firefight', u'attempt', u'contain', u'south', u'west']
[u'firefight', u'struggl', u'victoria']
[u'firefight', u'struggl', u'strong', u'wind']
[u'firefight', u'volunt', u'break']
[u'fire', u'briagolong', u'water']
[u'fisherman', u'charg', u'darwin', u'stab', u'murder']
[u'fli', u'oper', u'guilti', u'grievous']
[u'forest', u'threaten', u'home', u'eastern', u'tasmania']
[u'drug', u'squad', u'head', u'jail', u'traffic']
[u'sydney', u'hobart', u'winner', u'undergo', u'chang']
[u'free', u'rural', u'financi', u'counsel', u'servic', u'launch']
[u'freez', u'antarctica', u'runway', u'delight', u'scientist']
[u'fund', u'end', u'dental', u'health', u'crisi', u'gillard']
[u'fund', u'snub', u'wont', u'stop', u'rail', u'trail', u'push']
[u'garrett', u'stumbl', u'question']
[u'germani', u'golf', u'world']
[u'gerri', u'collin', u'australian', u'swim', u'championship']
[u'gillard', u'call', u'dental', u'health', u'fund', u'boost']
[u'giteau', u'unlik', u'play', u'half', u'forc']
[u'gore', u'iraq', u'documentari', u'award']
[u'govt', u'book', u'educ', u'south', u'burnett', u'youth']
[u'govt', u'drought', u'tour', u'north']
[u'govt', u'grant', u'help', u'council', u'oper', u'begin']
[u'govt', u'institut', u'mental', u'health', u'review']
[u'govt', u'urg', u'support', u'shark', u'instal']
[u'grazier', u'feral', u'cat', u'concern']
[u'grazier', u'forc', u'shoot', u'sheep']
[u'groom', u'assess', u'tasmania', u'steal', u'generat', u'claim']
[u'hangov', u'cost', u'million', u'lose', u'work', u'day', u'studi']
[u'hawthorn', u'deal', u'finalis', u'lennon']
[u'healthi', u'surpris', u'report']
[u'henti', u'hous', u'fetch']
[u'holm', u'look', u'forward', u'perth', u'venu']
[u'howard', u'emiss', u'task', u'group']
[u'iemma', u'put', u'focus', u'cross', u'border', u'polic']
[u'inquest', u'probe', u'kununurra', u'babi', u'death']
[u'interest', u'rate', u'rise', u'christma', u'shopper']
[u'inter', u'extend', u'lead', u'lazio', u'roma']
[u'israel', u'problem', u'gaza', u'mission']
[u'janiak', u'await', u'sampl', u'result']
[u'road', u'toll', u'christma', u'nrma', u'urg']
[u'kelli', u'hold', u'titl', u'protest', u'dismiss']
[u'kelli', u'urg', u'plan', u'flexibl']
[u'lille', u'blast', u'england', u'ash', u'prepar']
[u'littl', u'relief', u'north', u'west', u'drought', u'bite']
[u'accus', u'threaten', u'polic', u'samurai']
[u'die', u'sydney', u'stab']
[u'jail', u'bash', u'robberi']
[u'plead', u'guilti', u'rap', u'tourist']
[u'court', u'accus', u'murder']
[u'court', u'drive', u'charg']
[u'stand', u'trial', u'alleg', u'attack']
[u'migrant', u'english', u'test']
[u'mildura', u'firefight', u'help', u'battl', u'fire']
[u'mild', u'weather', u'bring', u'relief', u'firefight']
[u'mill', u'focus', u'beij']
[u'associ', u'question', u'natur', u'reserv', u'decis']
[u'mine', u'boom', u'peak', u'year']
[u'minist', u'apologis', u'burst', u'water', u'main']
[u'minist', u'sorri', u'soldier', u'suicid', u'bungl']
[u'moorabool', u'river', u'flow']
[u'motorcyclist', u'die', u'princ', u'highway', u'crash']
[u'motorist', u'warn', u'expect', u'interchang', u'delay']
[u'mott', u'prepar', u'sheffield']
[u'rave', u'visit', u'grossli', u'irrespons', u'rann']
[u'gambier', u'record', u'hottest', u'decemb']
[u'gambier', u'societi', u'uncertain', u'presid']
[u'murray', u'stay', u'blue', u'coach']
[u'nation', u'choos', u'mayor', u'flynn', u'candid']
[u'newcastl', u'tell', u'green', u'energi', u'benefit']
[u'pool', u'wast', u'money']
[u'korea', u'warn', u'japan', u'attend', u'nuclear', u'talk']
[u'sign', u'drought', u'eas']
[u'nuttal', u'attempt', u'overthrow', u'beatti', u'thwart']
[u'pair', u'charg', u'sexual', u'assault', u'teen']
[u'palestinian', u'offici', u'son', u'kill', u'outsid', u'gaza']
[u'parent', u'blame', u'uncar', u'son', u'bash']
[u'fight', u'farmer', u'water', u'right']
[u'pilbara', u'snakebit', u'rise']
[u'pinochet', u'divid', u'death', u'life']
[u'pinochet', u'oppon', u'clash', u'chilean', u'polic']
[u'pinochet', u'death', u'greet', u'celebr']
[u'back', u'fund', u'plan', u'water', u'project']
[u'polic', u'hail', u'deal']
[u'polic', u'investig', u'assault', u'islam', u'school']
[u'polic', u'pinochet', u'protest', u'clash', u'chile']
[u'polic', u'recov', u'steal', u'jewelleri']
[u'polic', u'seek', u'help', u'catch', u'attack']
[u'polic', u'warn', u'driver', u'slow', u'live']
[u'polic', u'worri', u'safeti', u'northam', u'brawl']
[u'politician', u'learn', u'truck', u'safeti', u'issu']
[u'poll', u'open', u'aceh']
[u'christma', u'drink', u'drive', u'figur', u'worri', u'polic']
[u'promot', u'prevent', u'health', u'issu', u'wont']
[u'prospect', u'aust', u'citizen', u'english', u'test']
[u'prospect', u'citizen', u'english', u'test']
[u'proto', u'resourc', u'drill', u'gold', u'tibooburra']
[u'public', u'remind', u'lock', u'crimin']
[u'public', u'submiss', u'flow', u'river']
[u'public', u'urg', u'draft', u'term']
[u'public', u'urg', u'help', u'solv', u'phillip', u'murder']
[u'qanta', u'bank', u'lift', u'market']
[u'qaras', u'face', u'arrest', u'return', u'fiji', u'forc']
[u'rabuka', u'guilti', u'mutini']
[u'ralli', u'urg', u'govt', u'clarenc', u'valley', u'health']
[u'rapist', u'allow', u'releas']
[u'water', u'boost', u'suppli', u'threat']
[u'report', u'cost', u'hangov']
[u'rescu', u'chopper', u'contract', u'concern']
[u'resid', u'seek', u'improv', u'public', u'transport']
[u'review', u'push', u'desalin', u'plant', u'construct']
[u'review', u'urg', u'greater', u'cooper', u'boost']
[u'riverland', u'grower', u'urg', u'conserv', u'water']
[u'rudd', u'say', u'frontbench', u'unifi']
[u'sailor', u'drop', u'appeal', u'dope']
[u'saleyard', u'protect', u'shelter', u'stock']
[u'region', u'gambl', u'excess']
[u'secur', u'guard', u'patrol', u'traralgon', u'taxi', u'rank']
[u'senat', u'committe', u'call', u'nation', u'water', u'regist']
[u'shark', u'sight', u'near', u'port', u'kembla', u'beach', u'swimmer']
[u'sixer', u'lose', u'wheeler']
[u'snail', u'toxin', u'offer', u'pain', u'relief', u'hop']
[u'socceroo', u'throw', u'asia', u'kuwait']
[u'speedboat', u'smash', u'yacht', u'dead']
[u'staff', u'problem', u'stop', u'laverton', u'pool']
[u'steward', u'rule', u'titl']
[u'stun', u'imag', u'resurfac']
[u'symond', u'impress', u'voge']
[u'bushfir', u'destroy', u'hous']
[u'bushfir', u'threaten', u'home']
[u'teacher', u'reprimand', u'terrorist', u'slur']
[u'teen', u'arrest', u'polic', u'pursuit']
[u'teen', u'avoid', u'jail', u'conceal', u'evid']
[u'temporari', u'worker', u'outnumb', u'nebo', u'shire', u'resid']
[u'hull', u'warship', u'patrol', u'north', u'coast']
[u'tiger', u'airway', u'turn', u'away', u'disabl', u'passeng']
[u'tiger', u'strike', u'rare', u'ill']
[u'trader', u'beat', u'christma', u'spend']
[u'tumut', u'burn', u'day', u'firefight']
[u'equip', u'black', u'hawk', u'search']
[u'crash', u'victim', u'condit', u'improv']
[u'verdict', u'immin', u'rabuka', u'trial']
[u'fire', u'blaze', u'despit', u'weekend', u'relief']
[u'fire', u'burn', u'control']
[u'opposit', u'say', u'report', u'show', u'abus', u'mental']
[u'water']
[u'water', u'recycl']
[u'watson', u'return', u'hamstr', u'injuri']
[u'weather', u'heat', u'central', u'victoria']
[u'weekend', u'blaze', u'burn', u'forest']
[u'west', u'grazier', u'hope', u'rain']
[u'wheat', u'export', u'focus', u'grower', u'return']
[u'woman', u'die', u'roll']
[u'wondai', u'school', u'celebr', u'environment', u'award']
[u'grant', u'mackay', u'sugar', u'electr', u'plan']
[u'gorgon', u'project', u'get', u'greenlight']
[u'accid', u'forc', u'veget', u'processor', u'safeti', u'chang']
[u'tabl', u'partnership']
[u'adapt', u'climat', u'chang']
[u'open']
[u'anti', u'nuclear', u'campaign', u'heckl', u'gillard']
[u'introduc', u'stain', u'theft', u'technolog']
[u'armi', u'bulldoz', u'build', u'break']
[u'aussi', u'resort', u'christma', u'onlin']
[u'aust', u'citizenship', u'test', u'unnecessari', u'ballarat']
[u'aust', u'japan', u'agre', u'talk', u'free', u'trade', u'pact']
[u'australian', u'sailor', u'recal', u'alleg', u'beat']
[u'aust', u'wont', u'emb', u'troop', u'iraqi', u'downer']
[u'say', u'fee', u'reduct', u'unlik']
[u'bainimarama', u'comment', u'deserv', u'contempt']
[u'bangladesh', u'batsman', u'crack']
[u'bass', u'coast', u'appli', u'assist']
[u'beatti', u'elector', u'allow', u'stanc', u'fail', u'sway']
[u'blind', u'opportun', u'hunt', u'texa']
[u'boje', u'announc', u'intern', u'retir']
[u'brack', u'blimp']
[u'british', u'nation', u'face', u'heroin', u'import', u'charg']
[u'break', u'hill', u'public', u'servant', u'western', u'land']
[u'bushfir', u'damag', u'home', u'perth', u'hill']
[u'busi', u'face', u'slow', u'christma', u'trade']
[u'camel', u'sell', u'weed', u'eater']
[u'careflight', u'doctor', u'question', u'govt', u'tender', u'decis']
[u'cave', u'beach', u'develop', u'prompt', u'flood', u'fear']
[u'centr', u'back', u'groom', u'appoint', u'assess', u'compo']
[u'child', u'murder', u'seek', u'retrial']
[u'citizenship', u'test', u'discriminatori']
[u'citizenship', u'test', u'prompt', u'english']
[u'closer']
[u'closer']
[u'cobb', u'switch', u'elector']
[u'commission', u'disappoint', u'nurs', u'reject', u'offer']
[u'commit', u'desalin']
[u'communiti', u'pay', u'tribut', u'mayor']
[u'concern', u'remain', u'region', u'campus']
[u'warn', u'hasti', u'approv']
[u'consult', u'develop', u'irrig', u'drought', u'fund', u'case']
[u'cook', u'issu', u'ash']
[u'costello', u'back', u'debnam', u'plan', u'economi']
[u'councillor', u'arnold', u'stand', u'mildura', u'mayor']
[u'council', u'move', u'forward', u'blayney', u'communiti']
[u'council', u'urg', u'rethink', u'deco', u'build']
[u'court', u'jail', u'drink', u'driver']
[u'court', u'rule', u'dupa', u'committ', u'hear', u'need']
[u'crew', u'stand', u'bushfir', u'near', u'town']
[u'dead', u'woman', u'boss', u'deni', u'fraud', u'alleg']
[u'debnam', u'stand', u'costello', u'costa']
[u'depart', u'annan', u'deliv', u'critic']
[u'detaine', u'baxter', u'protest']
[u'dioxin', u'test', u'clear', u'sydney', u'harbour', u'fish']
[u'discoveri', u'dock', u'port']
[u'win', u'upper', u'hous', u'seat', u'deni', u'govt', u'major']
[u'dozen', u'kill', u'baghdad', u'blast']
[u'drought', u'slash', u'food', u'processor', u'export']
[u'drink', u'polic', u'offic', u'fin']
[u'england', u'face', u'select', u'dilemma']
[u'timor', u'humanitarian', u'emerg', u'fear']
[u'evid', u'question', u'murdoch', u'appeal']
[u'public', u'servant', u'sentenc', u'child', u'porn']
[u'farmer', u'address', u'drought', u'assess', u'team']
[u'farmer', u'itch', u'tick', u'report']
[u'farmer', u'urg', u'attend', u'lismor', u'drought', u'meet']
[u'fatal', u'boat', u'crash', u'spark', u'polic', u'safeti', u'warn']
[u'femal', u'gecko', u'migrat']
[u'fergi', u'order', u'unit']
[u'fiji', u'armi', u'chief', u'fear', u'rival', u'govt', u'plan']
[u'fiji', u'need', u'armi']
[u'fiji', u'regim', u'cancel', u'hike']
[u'destroy', u'hous', u'perth']
[u'firefight', u'battl', u'massiv', u'blaze', u'victoria']
[u'firefight', u'contain', u'blaze', u'near', u'highway']
[u'fire', u'ravag', u'popular', u'lodg']
[u'fire', u'threaten', u'properti', u'aust']
[u'fisher', u'group', u'back', u'float', u'prison']
[u'footbal', u'associ', u'reject', u'boycott', u'talk']
[u'policeman', u'fin', u'pass', u'confidenti']
[u'fund', u'shortfal', u'put', u'short', u'stay', u'facil', u'doubt']
[u'garrett', u'climat', u'chang']
[u'partnership', u'sink', u'opposit']
[u'germani', u'confirm', u'polonium', u'case']
[u'gillard', u'gold', u'coast', u'word']
[u'gippsland', u'concern', u'citizenship', u'test']
[u'girl', u'driveway', u'mishap']
[u'global', u'commod', u'demand', u'prop', u'farm', u'sector']
[u'govt', u'accus', u'creat', u'school', u'leagu', u'tabl']
[u'govt', u'act', u'coal', u'boom', u'impact', u'duaringa', u'mayor']
[u'grand', u'hotel', u'owner', u'oppos', u'heritag', u'list']
[u'grima', u'name', u'wnbl', u'player', u'week']
[u'grower', u'warn', u'sign', u'contract']
[u'heat', u'regener', u'promis', u'cheaper', u'cleaner', u'energi']
[u'histor', u'museum', u'record', u'visitor', u'number', u'boost']
[u'hope', u'vitamin', u'research', u'skin', u'cancer', u'rate']
[u'horsham', u'jockey', u'trainer', u'charg', u'race', u'scandal']
[u'howard', u'set', u'right', u'cours']
[u'illawarra', u'water', u'suppli', u'effort', u'continu']
[u'immigr', u'speak', u'english']
[u'immigr', u'offici', u'visit', u'hunger', u'strike']
[u'immigr', u'test']
[u'inquiri', u'review', u'foreign', u'work', u'visa', u'scheme']
[u'israel', u'play', u'olmert', u'nuclear', u'comment']
[u'jam', u'hardi', u'reopen', u'factori', u'asbesto', u'scare']
[u'vice', u'chancellor', u'retir']
[u'joyc', u'question', u'citizenship', u'test']
[u'kersley', u'hospitalis', u'hors', u'kick']
[u'killer', u'appeal', u'focus', u'lee', u'evid']
[u'kingsley', u'look', u'fresh', u'start', u'tiger']
[u'lake', u'user', u'warn', u'play', u'safe']
[u'land', u'deal', u'mistak', u'prove', u'cost', u'council']
[u'lehmann', u'call', u'blewett', u'play']
[u'lennon', u'bushfir', u'assist']
[u'lennon', u'pledg', u'assist', u'blaze', u'near', u'town']
[u'fijian', u'sort']
[u'liber', u'choos', u'entsch', u'media', u'advis', u'contest']
[u'local', u'firefight', u'lend', u'hand', u'bushfir']
[u'locust', u'invas', u'cancel', u'race', u'meet']
[u'long', u'escap', u'convict']
[u'longreach', u'club', u'sell']
[u'luhrmann', u'film', u'australia', u'bowen']
[u'mackay', u'farmer', u'extend', u'drought']
[u'charg', u'start', u'kalamunda']
[u'charg', u'rollingston', u'drug']
[u'jail', u'assault']
[u'court', u'accus']
[u'market', u'close', u'record', u'high']
[u'mari', u'valley', u'task', u'forc', u'chief', u'reject', u'call', u'quit']
[u'mayor', u'play', u'child', u'lead', u'level', u'find']
[u'medal', u'put', u'sheen', u'lownd', u'season']
[u'medic', u'board', u'deregist', u'assault', u'doctor']
[u'miner', u'take', u'precaut', u'legionella', u'scare']
[u'water', u'nation', u'say']
[u'muchea', u'decis', u'stop', u'northam', u'saleyard', u'push']
[u'mumbai', u'host', u'world', u'final']
[u'deni', u'kid', u'pornographi']
[u'murdoch', u'convict', u'miscarriag', u'justic', u'lawyer']
[u'murdoch', u'appeal', u'murder', u'convict', u'begin']
[u'naiqama', u'plead', u'guilti', u'drive', u'charg']
[u'tourism', u'join', u'gippsland', u'recov']
[u'newspap', u'criticis', u'racist', u'blog']
[u'hit', u'carbon', u'emiss', u'task']
[u'rest', u'resid', u'victorian', u'fire', u'rage']
[u'govt', u'urg', u'consid', u'aquif', u'option']
[u'govt', u'commit', u'improv', u'indigen', u'health']
[u'nuttal', u'jump', u'ship', u'push']
[u'nyngan', u'leav', u'payphon']
[u'ohern', u'top', u'applebi', u'rank']
[u'ombudsman', u'vow', u'respond', u'baxter', u'detaine']
[u'opinion', u'poll', u'show', u'labor', u'boost']
[u'opposit', u'blame', u'poor', u'staff', u'level', u'polic']
[u'opposit', u'say', u'dental', u'wait', u'time', u'long']
[u'pair', u'summon', u'alleg', u'illeg', u'fish', u'haul']
[u'pair', u'face', u'court', u'servic', u'station', u'hold']
[u'palestinian', u'forc', u'deploy', u'gaza']
[u'parent', u'entitl', u'school', u'perform', u'report']
[u'parent', u'evid', u'babi', u'inquest']
[u'passeng', u'critic', u'condit', u'ghan']
[u'perth', u'hill', u'blaze', u'contain', u'home', u'gut']
[u'pietersen', u'confid', u'england', u'bounc']
[u'expect', u'labor', u'lead', u'poll', u'month']
[u'polic', u'discov', u'bodi', u'near', u'miss', u'man']
[u'polic', u'hunt', u'assault']
[u'polic', u'hunt', u'menzi', u'cottag', u'vandal']
[u'polic', u'introduc', u'lesbian', u'liaison', u'posit']
[u'poll', u'reflect', u'feel', u'howard', u'govt', u'gillard']
[u'pont', u'disappoint', u'martyn', u'retir']
[u'port', u'lincoln', u'council', u'urg', u'join', u'eplga']
[u'prison', u'guard', u'attack', u'prompt', u'probe']
[u'properti', u'threat', u'aust']
[u'proud', u'accus', u'mislead', u'advertis']
[u'quiet', u'holiday', u'season', u'lake', u'level', u'remain']
[u'radiograph', u'away', u'resign', u'threat']
[u'rfds', u'seek', u'fund', u'address', u'grow', u'demand']
[u'rice', u'crop', u'smallest', u'year']
[u'rival', u'palestinian', u'secur', u'forc', u'clash', u'gaza']
[u'road', u'toll', u'prompt', u'govt', u'adopt', u'differ']
[u'roo', u'port', u'surpris', u'teenag', u'sign']
[u'rudd', u'cautious', u'labor', u'support', u'leap']
[u'rudd', u'scrap', u'beazley', u'valu', u'plan']
[u'govt', u'reject', u'freight', u'subsidi']
[u'sale', u'profit', u'survey']
[u'unveil', u'mobil', u'deal']
[u'welfar', u'agenc', u'prepar', u'demand', u'increas']
[u'scientist', u'uncov', u'evid', u'arctic', u'melt']
[u'share', u'market', u'rise', u'fresh', u'high']
[u'shepparton', u'boy', u'charg', u'recent', u'burglari']
[u'societi', u'chief', u'stay']
[u'kill', u'afghan', u'suicid', u'attack']
[u'stonyford', u'firefight', u'bring', u'water', u'bomber']
[u'stuart', u'lead', u'kangaroo']
[u'support', u'group', u'welcom', u'propos', u'chang', u'mental']
[u'surpris', u'result', u'aceh', u'elect']
[u'swan', u'river', u'clean', u'target', u'acid', u'sludg']
[u'swimmer', u'warn', u'morn', u'lethargi', u'beij']
[u'switkowski', u'report', u'underestim', u'nuclear', u'challeng']
[u'sydney', u'professor', u'guid', u'orlean']
[u'devil', u'arriv', u'mainland']
[u'fire', u'comment']
[u'tasmanian', u'crew', u'burn', u'lose', u'momentum']
[u'tasmanian', u'caus', u'extens', u'damag']
[u'teen', u'charg', u'murder', u'follow', u'review']
[u'telstra', u'agre', u'leav', u'rail', u'station', u'phone']
[u'tenterden', u'caus', u'remain', u'area']
[u'territorian', u'spend', u'averag', u'xmas']
[u'test', u'australian']
[u'tourist', u'pull', u'unconsci', u'surf']
[u'tumut', u'blaze', u'threaten', u'hous', u'farmland']
[u'separ', u'road', u'crash']
[u'union', u'fear', u'empir', u'rubber', u'worker', u'entitl']
[u'union', u'seek', u'better', u'compo', u'worker', u'travel']
[u'driver', u'die', u'burnett', u'highway', u'crash']
[u'medal', u'donat', u'australian', u'memori']
[u'zone', u'resid', u'high', u'alert']
[u'toxic', u'wast', u'panel']
[u'villa', u'sheffield', u'fight', u'draw']
[u'virgin', u'blue', u'oppos', u'trale', u'hous', u'develop']
[u'wada', u'signal', u'challeng', u'shoaib', u'verdict']
[u'resourc', u'industri', u'urg', u'boost']
[u'water', u'consumpt', u'fall', u'stop', u'tougher']
[u'water', u'trade', u'move', u'wont', u'assess']
[u'serf']
[u'west', u'australian', u'newspap', u'face', u'contempt']
[u'whyalla', u'worker', u'hurt', u'wharf', u'mishap']
[u'wild', u'oat', u'show', u'form', u'sydney', u'harbour']
[u'wind', u'chang', u'pose', u'risk']
[u'wind', u'help', u'whip', u'southern', u'blaze']
[u'win', u'ash', u'goal', u'gilchrist']
[u'woman', u'charg', u'child', u'porn']
[u'woman', u'suffer', u'head', u'injuri', u'ghan', u'derail']
[u'work', u'dole', u'particip', u'sue', u'break']
[u'workplac', u'inspector', u'evid', u'meatwork']
[u'yuna', u'water', u'pipelin', u'begin', u'flow']
[u'zimbabwean', u'sentenc', u'bomb', u'hoax']
[u'zinifex', u'merg', u'smelt', u'oper', u'umicor']
[u'zinifex', u'vow', u'smelter', u'job', u'safe', u'merger']
[u'feder', u'fund', u'heavi', u'vehicl', u'bypass']
[u'seal', u'aramac', u'torren', u'creek']
[u'govt', u'detail', u'school', u'closur']
[u'adelaid', u'overcom', u'razorback']
[u'sadden', u'caledonian', u'woman', u'death']
[u'agricultur', u'crucial', u'japan', u'say', u'chamber']
[u'aquif', u'pump', u'oppon', u'plan', u'inevit']
[u'aquif', u'bad', u'mismanag', u'letter']
[u'arnold', u'sweat', u'asian', u'draw']
[u'aust', u'japan', u'discuss', u'trade', u'agreement']
[u'australian', u'histori']
[u'australia', u'plan', u'target', u'panesar']
[u'backburn', u'help']
[u'baghdad', u'bomb', u'kill']
[u'bathurst', u'council', u'petit', u'back', u'saleyard']
[u'baxter', u'hunger', u'strike', u'end']
[u'baxter', u'self', u'harm', u'attempt', u'prompt', u'secur', u'review']
[u'beazley', u'australian', u'patriot', u'say', u'blair']
[u'beazley', u'retir', u'elect']
[u'reject', u'open', u'dust', u'fear']
[u'lie', u'warp', u'obes', u'stat']
[u'blackburn', u'boss', u'stand', u'neill']
[u'blanchett', u'fend', u'deficit', u'critic']
[u'boat', u'accid', u'victim', u'hospit']
[u'boss', u'deni', u'meet', u'woman', u'night', u'die']
[u'bowen', u'darwin']
[u'remain', u'hospit']
[u'brack', u'refus', u'conced', u'upper', u'hous', u'seat']
[u'bring', u'hick', u'home']
[u'bull', u'competit', u'target']
[u'bush', u'wrong']
[u'bushrang', u'stump', u'hodg', u'omiss']
[u'canberra', u'host', u'school', u'chess', u'competit']
[u'cannabi', u'link', u'mental', u'health']
[u'cansdel', u'defend', u'confront', u'style']
[u'cfmeu', u'fin', u'casino', u'protest']
[u'chang', u'need', u'protect', u'young', u'peopl', u'work']
[u'child', u'safeti', u'offic', u'refus', u'cape', u'york', u'visit']
[u'citizenship', u'test', u'elect', u'ploy', u'say', u'fraser']
[u'clarenc', u'forum', u'put', u'spotlight', u'youth', u'job']
[u'closer']
[u'closer']
[u'cobb', u'contest', u'calar']
[u'compo', u'spur', u'victim', u'broker', u'scandal']
[u'concern', u'deer']
[u'concern', u'lithgow', u'bathurst', u'court', u'sit']
[u'concern', u'rais', u'western', u'land', u'commission']
[u'consortium', u'ponder', u'qanta', u'reject']
[u'consum', u'sentiment', u'bounc']
[u'council', u'move', u'caravan', u'park', u'effluent']
[u'council', u'urg', u'hail', u'cannon', u'debat']
[u'court', u'dismiss', u'case', u'moti']
[u'court', u'give', u'life', u'term', u'deprav', u'rapist']
[u'court', u'order', u'enron', u'jail']
[u'court', u'rule', u'lawyer', u'continu', u'act']
[u'crew', u'contain']
[u'dajka', u'plead', u'guilti', u'multipl', u'charg']
[u'dalbi', u'council', u'look', u'bush', u'blueprint', u'fund']
[u'decis', u'loom', u'women', u'refug']
[u'thank', u'labor', u'prefer']
[u'evid', u'damn', u'murdoch', u'case']
[u'ownership', u'law', u'toughen']
[u'dope', u'cheat', u'chamber', u'ponder', u'race', u'futur']
[u'downer', u'iraq', u'withdraw']
[u'downer', u'iraq']
[u'drought', u'forc', u'veget', u'price']
[u'drought', u'stall', u'dairi', u'base', u'manag', u'invest']
[u'eat', u'behav', u'bad', u'north', u'coast']
[u'economist', u'disagre', u'perth', u'hous', u'market', u'futur']
[u'accredit', u'doesnt', u'attract', u'premium', u'price']
[u'environment', u'reserv', u'highlight', u'south', u'west', u'flora']
[u'site', u'recommend', u'attract', u'opposit']
[u'evel', u'knievel', u'sue', u'rapper', u'kany', u'west', u'video']
[u'everton', u'plan', u'liverpool']
[u'farmer', u'trial', u'way', u'collect']
[u'farmer', u'urg', u'monitor', u'locust', u'activ']
[u'farmer', u'urg', u'seek', u'drought', u'fund']
[u'farm', u'group', u'expect', u'entir', u'state', u'drought']
[u'dismiss', u'asian', u'secur', u'concern']
[u'steer', u'away', u'crowd', u'segreg']
[u'fiji', u'coup', u'leader', u'keep', u'brother', u'govt']
[u'crew', u'brace', u'worsen', u'condit']
[u'firefight', u'contain', u'byadbo', u'wilder', u'blaze']
[u'approach', u'tasmanian', u'town']
[u'fire', u'burn', u'kilometr', u'home']
[u'threaten', u'hous', u'east', u'coast']
[u'flintoff', u'deni', u'rift', u'harmi']
[u'forestri', u'minist', u'say', u'log', u'ban', u'contribut']
[u'fourth', u'charg', u'lay', u'lord', u'mayor']
[u'free', u'hospit', u'park', u'avail', u'xmas', u'period']
[u'fund', u'address', u'cape', u'york', u'youth', u'suicid']
[u'gawler', u'rang', u'name', u'nation', u'reserv']
[u'ghan', u'crash', u'rais', u'safeti', u'environment', u'concern']
[u'glenn', u'steven', u'speech', u'ceda']
[u'goldfield', u'esper']
[u'gorgon', u'project', u'worker', u'month', u'stint']
[u'govt', u'crack', u'public', u'hous', u'elig']
[u'govt', u'esper', u'desal', u'plant', u'talk']
[u'govt', u'reject', u'bond', u'nurs', u'home', u'bed']
[u'govt', u'urg', u'consid', u'econom', u'rescu', u'plan']
[u'group', u'feder', u'govt', u'princ', u'highway', u'pledg']
[u'growcom', u'air', u'grower', u'contract', u'concern']
[u'gunmen', u'kill', u'hama', u'judg', u'gaza']
[u'gunn', u'abandon', u'legal', u'action', u'green', u'leader']
[u'hall', u'secur', u'upper', u'hous', u'spot']
[u'helicopt', u'crew', u'progress']
[u'expect', u'region', u'hous', u'woe']
[u'hick', u'earli', u'rank', u'trial']
[u'home', u'destroy', u'blaze']
[u'look', u'water', u'alloc']
[u'howard', u'tour', u'affect', u'victoria']
[u'hunter', u'maitland', u'area', u'feder', u'drought']
[u'iemma', u'promis', u'support', u'clean', u'coal']
[u'illawarra', u'boost', u'contribut', u'firefight']
[u'mean', u'steal', u'brad', u'say', u'joli']
[u'injur', u'worker', u'lose', u'compo', u'scheme', u'chang', u'actu']
[u'inmat', u'help', u'cane', u'toad']
[u'inquest', u'hear', u'plea', u'trucki', u'come', u'forward']
[u'investig', u'puzzl', u'ghan', u'derail']
[u'japan', u'worthless', u'tariff', u'cut', u'rudd']
[u'kalgoorli', u'council', u'back', u'commerci', u'plan']
[u'kanck', u'reconsid', u'retir']
[u'kaspa', u'call', u'settl', u'martyn']
[u'katherin', u'river', u'death', u'suspici', u'polic']
[u'trobe', u'maintain', u'region', u'campus', u'servic']
[u'liber', u'welcom', u'child', u'protect', u'foetus']
[u'local', u'urg', u'help', u'foreign', u'unawar', u'beach']
[u'london', u'keen', u'olymp']
[u'longest', u'serv', u'aust', u'judg', u'retir']
[u'longreach', u'club', u'sale', u'agreement', u'rockhampton']
[u'mandurah', u'reject', u'draft', u'foreshor', u'plan']
[u'get', u'life', u'murder']
[u'jail', u'life', u'drug', u'dealer', u'murder']
[u'jail', u'break']
[u'refus', u'bail', u'charg', u'rap', u'stepdaught']
[u'market', u'decid', u'qanta', u'say', u'vail']
[u'mayor', u'expect', u'bowen', u'influx', u'film', u'shoot']
[u'milit', u'jail', u'australian', u'embassi', u'bomb']
[u'miner', u'energi', u'export', u'earn']
[u'cash', u'promis', u'affect', u'tasmanian']
[u'hop', u'hume', u'highway', u'bypass', u'work', u'start', u'soon']
[u'unhappi', u'delay', u'yakamia', u'school', u'revamp']
[u'mundin', u'soliman', u'exchang', u'jib']
[u'music', u'right', u'note', u'indigen', u'asthma']
[u'nasdaq', u'offer', u'bigger']
[u'nation', u'galleri', u'revamp']
[u'nation', u'urg', u'revamp', u'disus', u'rail', u'line']
[u'natoli', u'seek', u'rudd', u'meet', u'discuss', u'chang']
[u'jail', u'build', u'near', u'nowra']
[u'broom', u'visitor', u'centr', u'expect', u'busi']
[u'tourism', u'board', u'appoint', u'announc']
[u'add', u'bat', u'depth']
[u'govt', u'lobbi', u'jam', u'hardi']
[u'opposit', u'offic', u'raid', u'russia']
[u'orang', u'mourn', u'longest', u'serv', u'femal', u'councillor']
[u'parl', u'food', u'creditor', u'meet', u'griffith']
[u'pavlich', u'name', u'docker', u'captain']
[u'permit', u'deni', u'rodeo']
[u'petit', u'reveal', u'support', u'burrel', u'place']
[u'pinochet', u'give', u'militari', u'funer']
[u'pledg', u'help', u'affect', u'tasmanian']
[u'tell', u'crew', u'prepar', u'long', u'summer']
[u'tour', u'affect', u'victoria']
[u'polic', u'check', u'reveal', u'unroadworthi', u'vehicl']
[u'pont', u'back', u'symond', u'deliv', u'perth']
[u'prepar', u'apec', u'near', u'complet', u'moroney']
[u'produc', u'defend', u'wine', u'centr', u'plan']
[u'prosecut', u'defend', u'murdoch', u'evid']
[u'public', u'electr', u'plan']
[u'qanta', u'receiv', u'takeov']
[u'qanta', u'reject', u'takeov']
[u'qanta', u'reject']
[u'qanta', u'share', u'drop', u'takeov', u'reject']
[u'qaras', u'determin', u'return', u'suva']
[u'rare', u'amphibi', u'fossil', u'unearth', u'tasmania']
[u'redback', u'snatch', u'dramat', u'victori']
[u'renmark', u'council', u'say', u'citrus', u'tree', u'burn']
[u'replica', u'histor', u'dutch', u'ship', u'sail', u'sydney']
[u'report', u'link', u'cannabi', u'mental', u'ill']
[u'report', u'cannabi', u'mental', u'health']
[u'roar', u'miss', u'ognenovski', u'marin']
[u'roff', u'back', u'jone', u'england']
[u'roger', u'allow', u'waugh']
[u'roger', u'quit', u'union', u'tomorrow']
[u'rudd', u'urg', u'practic', u'polici', u'indigen']
[u'safeti', u'bureau', u'examin', u'ghan', u'black']
[u'saleyard', u'pledg', u'boost', u'katan', u'plan']
[u'santa', u'get', u'help', u'hand', u'businessman']
[u'secur', u'boost', u'port', u'macquari', u'taxi', u'rank']
[u'select', u'region', u'cinema', u'earmark', u'digit']
[u'share', u'market', u'boost', u'buoyant', u'retail', u'sector']
[u'skill', u'shortag', u'impact', u'councillor', u'duti']
[u'snake', u'surpris', u'toilet']
[u'somalian', u'islamist', u'threaten', u'ethiopian', u'troop']
[u'suicid', u'truck', u'bomb', u'kill', u'iraq']
[u'surgeon', u'stand', u'condit']
[u'sydney', u'water', u'recycl', u'plant', u'open']
[u'sydney', u'woman', u'face', u'sexual', u'servitud', u'charg']
[u'devil', u'die', u'interst']
[u'town', u'batten', u'blaze']
[u'thorp', u'offici', u'retir']
[u'thwait', u'inspect', u'pip', u'water', u'recycl', u'scheme']
[u'off', u'help', u'centrelink', u'stop', u'welfar', u'cheat']
[u'titan', u'delay', u'move', u'roger']
[u'toll', u'hold', u'split']
[u'tongan', u'author', u'accus', u'human', u'right']
[u'tourism', u'industri', u'back', u'marin', u'park', u'moor', u'plan']
[u'tracer', u'light', u'baghdad', u'night', u'asian', u'game']
[u'tribun', u'agre', u'ferri', u'price', u'increas']
[u'truck', u'driver', u'arrest', u'ghan', u'crash']
[u'truck', u'driver', u'arrest', u'ghan', u'derail']
[u'tumut', u'break', u'contain', u'line']
[u'polic', u'hunt', u'suspect', u'serial', u'killer']
[u'umbakumba', u'job', u'program', u'get', u'financi', u'repriev']
[u'unpredict', u'migrain', u'hamper', u'life', u'plan']
[u'aust', u'stand', u'iraq']
[u'give', u'memori', u'home']
[u'recount', u'upper', u'hous', u'seat']
[u'crew', u'brace', u'extrem', u'condit']
[u'firefight', u'prepar', u'wors', u'condit']
[u'fire', u'threaten', u'farm', u'communiti']
[u'minist', u'swear', u'cabinet', u'reshuffl']
[u'shuffl']
[u'memori', u'rememb', u'darwin', u'hero']
[u'warwick', u'mckibbin', u'address', u'climat', u'polici']
[u'water', u'suppli', u'see', u'vital', u'moranbah', u'plan']
[u'water', u'user', u'warn', u'blue', u'green', u'alga', u'threat']
[u'waugh', u'captain', u'tah']
[u'creat', u'histori', u'flintoff']
[u'western', u'victoria', u'secur', u'feder', u'drought']
[u'wind', u'farm', u'bourk', u'entir', u'renew']
[u'women', u'want', u'brewarrina', u'takeaway', u'alcohol']
[u'wood', u'cap', u'season', u'honour']
[u'work', u'ban', u'continu', u'hospit']
[u'anglican', u'clergi', u'face', u'test']
[u'young', u'muslim', u'leader', u'face', u'sack', u'drug', u'claim']
[u'zinifex', u'umicor', u'link', u'zinc']
[u'injur', u'wollongong', u'truck', u'crash']
[u'obituari']
[u'year', u'review']
[u'learn', u'buy', u'childcar', u'centr']
[u'welcom', u'chairman']
[u'aborigin', u'govt', u'discuss', u'stop', u'violenc']
[u'legisl', u'assembl', u'pass', u'util']
[u'administr', u'look', u'financ']
[u'candid', u'seek', u'debat', u'possibl']
[u'question', u'hospit', u'specialist', u'room', u'rental']
[u'ambul', u'servic', u'urg', u'careflight', u'return']
[u'anger', u'abetz', u'comment']
[u'armi', u'discharg', u'pinochet', u'grandson', u'speech']
[u'ash', u'podcast', u'glenn', u'mitchel', u'kerri', u'okeeff']
[u'aust', u'toss', u'elect']
[u'author', u'tough', u'lake', u'pertob', u'vandal']
[u'away', u'game', u'hamper', u'jet', u'fit']
[u'bainimarama', u'warn', u'postpon', u'meet']
[u'bateman', u'marin', u'park', u'zone', u'plan', u'draw']
[u'baxter', u'situat', u'psychiatr', u'emerg']
[u'beatti', u'refus', u'fluorid', u'question']
[u'brack', u'play', u'loss', u'upper', u'hous', u'major']
[u'compani', u'have', u'difficulti', u'recruit', u'driver']
[u'bushfir', u'bypass', u'resort', u'sweep', u'south']
[u'businessman', u'spread', u'christma', u'cheer', u'drought']
[u'reinstat', u'malle', u'centrelink', u'servic']
[u'cancer', u'unit', u'hop', u'dash']
[u'part', u'compani', u'ajax', u'close', u'door']
[u'casey', u'name', u'european', u'tour', u'golfer', u'year']
[u'offer', u'central', u'assur']
[u'child', u'protect', u'number', u'prioriti', u'govt']
[u'closer']
[u'closer']
[u'colli', u'charg', u'mass', u'brawl']
[u'commentari', u'highlight']
[u'compani', u'consult', u'land', u'owner', u'ventur']
[u'consortium', u'pledg', u'qanta', u'australian']
[u'consortium', u'promis', u'break', u'qanta']
[u'cooper', u'break', u'irish', u'stout', u'market']
[u'council', u'seek', u'time', u'park', u'plan']
[u'council', u'urg', u'infrastructur', u'readi']
[u'council', u'want', u'penola', u'bypass', u'fund']
[u'court', u'ask', u'streamlin', u'case']
[u'court', u'extend', u'evict', u'deadlin', u'brothel', u'madam']
[u'court', u'overturn', u'religi', u'vilif', u'decis']
[u'crash', u'damag', u'impact', u'ghan', u'oper']
[u'crown', u'defend', u'falconio', u'murder', u'theori']
[u'davenport', u'australian', u'open']
[u'david', u'portrait', u'fetch', u'pari', u'auction']
[u'democrat', u'final', u'victori', u'elect']
[u'dental', u'record']
[u'doubt', u'cast', u'public', u'transport', u'fare', u'rise']
[u'decid', u'einfeld', u'charg']
[u'drogba', u'keep', u'chelsea', u'touch']
[u'drought', u'expect', u'drive', u'produc', u'land']
[u'eastern', u'high', u'alert']
[u'elect', u'advertis', u'complaint', u'head', u'anti']
[u'embassi', u'slat', u'drug', u'studi']
[u'england', u'lose', u'cook']
[u'england', u'player', u'overwork', u'woodward']
[u'england', u'honour', u'aussi', u'fight']
[u'ansett', u'employe', u'receiv', u'entitl']
[u'expert', u'debat', u'solut', u'problem']
[u'swim', u'star', u'highlight', u'skin', u'cancer', u'danger']
[u'falun', u'gong', u'legal', u'action', u'downer', u'dismiss']
[u'plan', u'punish', u'diver']
[u'farley', u'scholarship', u'mentor', u'indigen', u'traine']
[u'farmer', u'ralli', u'water', u'alloc']
[u'sweat', u'salari', u'breach', u'decis']
[u'propos', u'conting', u'plan', u'troubl', u'knight']
[u'final', u'wast', u'dump', u'report', u'go', u'minist']
[u'final', u'westralia', u'compens', u'case', u'settl']
[u'firebal', u'sweep', u'tasmanian', u'town']
[u'crew', u'focus', u'protect', u'home']
[u'approach', u'histor', u'build']
[u'fire', u'spark', u'farmer', u'monitor', u'haystack']
[u'fish', u'sector', u'angri', u'marin', u'park', u'plan']
[u'sentenc', u'cameraman', u'attack']
[u'foreign', u'invest', u'board', u'review', u'qanta', u'takeov']
[u'french', u'polynesian', u'presid', u'lose', u'confid']
[u'fund', u'boost', u'rockhampton', u'high']
[u'fund', u'like', u'perman', u'wentworth', u'ambul']
[u'gillard', u'address', u'student', u'high', u'school']
[u'gordon', u'estat', u'resid', u'want', u'chanc', u'home']
[u'govt', u'green', u'light', u'esper', u'anglican', u'high', u'school']
[u'govt', u'make', u'formal', u'request', u'moti', u'extradit']
[u'govt', u'open', u'hydro', u'electr', u'power', u'plant', u'upgrad']
[u'govt', u'readi', u'legal', u'action', u'school', u'closur']
[u'govt', u'urg', u'clarifi', u'school', u'closur', u'plan']
[u'govt', u'want', u'child', u'protect', u'resolv', u'quick']
[u'goward', u'promis', u'goulburn', u'weir']
[u'green', u'group', u'alarm', u'gorgon', u'approv']
[u'green', u'group', u'unhappi', u'marin', u'park', u'zone', u'plan']
[u'guantanamo', u'prison', u'lose', u'detent', u'case']
[u'gunmen', u'kidnap', u'baghdad', u'shopper']
[u'hick', u'hick']
[u'high', u'fidel', u'broadway', u'day']
[u'home', u'destroy', u'blaze']
[u'howard', u'wont', u'commit', u'fund', u'boost']
[u'indigen', u'leader', u'flag', u'appeal', u'mulrunji']
[u'indonesian', u'govt', u'ban', u'bali', u'bomber', u'documentari']
[u'interview', u'mike', u'hussey']
[u'interview', u'monti', u'panesar']
[u'isra', u'court', u'refus', u'rule', u'target']
[u'johnson', u'eye', u'record']
[u'juri', u'hail', u'cannon', u'impact']
[u'kalahari', u'bushmen', u'reclaim', u'homeland', u'right']
[u'knight', u'lose', u'leagu', u'licenc']
[u'knight', u'owner', u'give', u'dismiss', u'notic']
[u'kokoda', u'trek', u'life', u'skill', u'opportun']
[u'labor', u'announc', u'plan', u'address', u'dental', u'crisi']
[u'languag', u'encourag']
[u'liber', u'hope', u'voter', u'cabinet', u'reshuffl']
[u'liber', u'want', u'public', u'servic', u'job', u'save', u'money']
[u'lobster', u'fisher', u'daylight', u'save']
[u'local', u'govt', u'group', u'back', u'bowler', u'return']
[u'crop', u'yield', u'forc', u'grain', u'buyer', u'suspend']
[u'mansfield', u'qanta']
[u'face', u'court', u'accus', u'hinder', u'firefight']
[u'mauric', u'newman', u'name', u'chairman']
[u'mccaw', u'name', u'black']
[u'west', u'grain', u'collect', u'wind']
[u'milat', u'applic', u'reject']
[u'milk', u'tanker', u'help', u'firefight', u'effort']
[u'mine', u'ventur', u'casino', u'mayor']
[u'minist', u'surviv', u'censur', u'motion', u'school']
[u'mokbel', u'sister', u'order', u'sureti']
[u'mop', u'rider', u'hospit', u'accid']
[u'cane', u'smut', u'mackay', u'area']
[u'technician', u'launch', u'compens', u'claim']
[u'urg', u'proper', u'infrastructur', u'jail']
[u'murdoch', u'murder', u'appeal', u'conclud']
[u'chang', u'like', u'longreach', u'club']
[u'nation', u'galleri', u'facelift']
[u'neglect', u'charg', u'drop', u'father', u'dead', u'babi']
[u'neill', u'put', u'rover']
[u'harbourmast', u'name', u'albani']
[u'author', u'cwealth', u'interfer', u'water']
[u'chang', u'qanta', u'oper', u'vail']
[u'charg', u'palm', u'death', u'custodi']
[u'northern', u'fire', u'caus', u'fear']
[u'northern', u'region', u'reserv', u'list']
[u'reject', u'plan', u'foreign', u'meat', u'worker']
[u'offic', u'escap', u'palm', u'death', u'charg', u'communiti']
[u'arrest', u'tonga', u'riot', u'probe']
[u'pacif', u'island', u'nation', u'plan', u'joint', u'airlin']
[u'panesar', u'expect', u'england']
[u'panesar', u'put', u'aussi', u'spin']
[u'panesar', u'strike']
[u'panesar', u'stun', u'langer', u'england', u'domin']
[u'parent', u'warn', u'impact', u'suppli', u'alcohol']
[u'owner', u'call', u'polic', u'dog', u'poison']
[u'plan', u'dept', u'link', u'road', u'assess']
[u'polic', u'expect', u'break', u'arrest']
[u'polic', u'investig', u'bourk', u'fatal', u'stab']
[u'polic', u'investig', u'possibl', u'arson', u'fire', u'rage']
[u'polic', u'probe', u'attempt', u'theft']
[u'polic', u'want', u'light', u'shed', u'schooli']
[u'politician', u'consid', u'futur', u'fli', u'kangaroo']
[u'post', u'mortem', u'stab', u'victim']
[u'premier', u'appeal', u'calm', u'mulrunji', u'decis']
[u'pressur', u'mount', u'quick', u'wheat', u'export', u'decis']
[u'prison', u'number', u'jump', u'decad']
[u'prison', u'forens', u'worker', u'threaten', u'strike']
[u'psychiatrist', u'highlight', u'flaw', u'church', u'anti']
[u'public', u'warn', u'heavi', u'fin', u'cigarett']
[u'public', u'warn', u'sewag', u'spill', u'swan', u'river']
[u'qanta', u'accept', u'takeov']
[u'qanta', u'accept', u'takeov', u'offer']
[u'qanta', u'share', u'trade', u'halt']
[u'qanta', u'takeov', u'await', u'govt', u'approv']
[u'qanta', u'break', u'consortium']
[u'rabbi', u'tour', u'mobil', u'synagogu']
[u'rail', u'trail', u'user', u'help', u'boost', u'local', u'economi']
[u'recoveri', u'team', u'clear', u'line', u'ghan', u'crash']
[u'redback', u'lose', u'tait']
[u'cross', u'report', u'disast', u'coverag']
[u'cross', u'slam', u'distribut', u'disast', u'zone']
[u'remain', u'miss', u'hitchhik']
[u'report', u'highlight', u'inadequ', u'polic', u'resourc']
[u'research', u'highlight', u'coral', u'reef', u'stress']
[u'robbi', u'smoke', u'deal', u'say', u'beatti']
[u'robe', u'council', u'quit']
[u'roger', u'walk', u'away']
[u'rural', u'counsellor', u'help', u'farmer', u'applic']
[u'rural', u'financi', u'counsellor', u'boost']
[u'russian', u'link', u'poison', u'case', u'claim', u'death']
[u'saleyard', u'industri', u'worri', u'livestock', u'dump']
[u'scott', u'insist', u'sergio', u'better', u'chanc']
[u'search', u'widen', u'teen', u'miss', u'blue', u'mountain']
[u'shark', u'studi', u'rais', u'extinct', u'fear']
[u'shutdown', u'cost', u'zinifex']
[u'miner', u'boycott', u'legionnair', u'scare']
[u'state', u'reject', u'nation', u'pipe']
[u'state', u'urg', u'pip']
[u'strong', u'birdsvill', u'hotel', u'sale']
[u'strong', u'wind', u'intensifi', u'threat']
[u'sydney', u'post', u'strong', u'glori']
[u'taipan', u'confid', u'derbi']
[u'takeov', u'push', u'market', u'high']
[u'crew', u'await', u'predict', u'wind']
[u'resid', u'head', u'beach', u'escap', u'fire']
[u'tennant', u'creek', u'get', u'time']
[u'tennant', u'creek', u'secur', u'time']
[u'tourism', u'group', u'back', u'plan', u'infrastructur', u'boost']
[u'tourism', u'group', u'say', u'plant', u'detract']
[u'transurban', u'largest', u'toll', u'road', u'owner']
[u'travel', u'stress', u'think', u'devil', u'death', u'caus']
[u'tumut', u'unlik', u'reach']
[u'tumut', u'updat']
[u'station', u'shock', u'beligum', u'fake', u'report', u'split']
[u'passeng', u'injur', u'train', u'derail']
[u'polic', u'step', u'search', u'killer']
[u'human', u'right', u'council', u'conduct', u'darfur', u'inquiri']
[u'dental', u'school', u'consid', u'cross', u'border']
[u'union', u'say', u'inquiri', u'sailor', u'death']
[u'unit', u'readi', u'spoil', u'curbishley', u'return']
[u'panel', u'back', u'extend', u'antidepress', u'warn']
[u'releas', u'saudi', u'guantanamo']
[u'scientist', u'protest', u'polit']
[u'vegi', u'garden', u'reduc', u'diseas', u'remot']
[u'bushfir', u'threaten', u'home', u'licola']
[u'volum', u'turn', u'robbi', u'william']
[u'privat', u'school', u'price', u'jump']
[u'water', u'author', u'introduc', u'tougher', u'ban']
[u'water', u'ban', u'sport', u'club', u'consid']
[u'weather', u'caus', u'spot', u'plane', u'stall']
[u'westpac', u'expect', u'strong', u'return']
[u'whitlam', u'call', u'balibo', u'inquest']
[u'wilder', u'societi', u'resum', u'gunn', u'campaign']
[u'wind', u'push', u'bushfir', u'smoke', u'canberra']
[u'winegrow', u'urg', u'follow', u'quarantin', u'guidelin']
[u'woman', u'convict', u'tri', u'kill', u'drug']
[u'woman', u'plead', u'guilti', u'arm', u'hold']
[u'worker', u'lock', u'yatala', u'jail', u'overcrowd']
[u'world', u'bank', u'announc', u'malaria', u'fund', u'africa']
[u'young', u'muslim', u'give', u'award']
[u'young', u'muslim', u'leader', u'take', u'leav', u'dept']
[u'thoroughbr', u'offer', u'magic', u'million']
[u'kill', u'indonesian', u'landslid']
[u'abba', u'regret', u'shot', u'fire', u'convoy']
[u'flourish', u'media', u'world']
[u'accc', u'examin', u'qanta', u'takeov']
[u'urg', u'batteri', u'farm']
[u'anim', u'welfar', u'group', u'say', u'batteri', u'farm']
[u'anstey', u'lead', u'tiger', u'easi']
[u'chairman', u'say', u'profit', u'expect']
[u'armi', u'chief', u'tight', u'lip', u'rocket', u'launcher', u'theft']
[u'armi', u'investig', u'possibl', u'rocket', u'launcher', u'theft']
[u'arnold', u'elect', u'mildura', u'mayor']
[u'asean', u'summit', u'januari', u'philippin']
[u'astronaut', u'step', u'rewir', u'space', u'station']
[u'atlant', u'record', u'founder', u'die', u'age']
[u'atsb', u'interview', u'ghan', u'derail', u'truck', u'driver']
[u'australia', u'assum', u'command', u'perth']
[u'babi', u'die', u'river', u'plung']
[u'babi', u'resuscit', u'river', u'torren', u'plung']
[u'burn', u'battl', u'begin']
[u'burn', u'creat', u'smoke', u'hazard', u'motorist']
[u'barca', u'draw', u'liverpool', u'champion', u'leagu', u'knock']
[u'beatti', u'stand', u'mulrunji', u'decis']
[u'beatti', u'robbi', u'smoke', u'fine']
[u'beatti', u'robbi', u'smoke', u'fine']
[u'name', u'omit', u'wallabi', u'squad']
[u'bird', u'report', u'suspect', u'action']
[u'blackal', u'runway', u'revamp', u'complet']
[u'blood', u'plasma', u'suppli', u'tender']
[u'blue', u'steadi', u'earli', u'loss']
[u'brack', u'announc', u'bushfir', u'emerg', u'grant']
[u'britain', u'enjoy', u'uefa', u'success']
[u'busi', u'usual', u'council', u'despit', u'loom', u'report']
[u'busi', u'chamber', u'back', u'logan', u'resourc', u'role']
[u'busi', u'chamber', u'keen', u'eastern', u'link']
[u'cairn', u'polic', u'search', u'miss']
[u'campaign', u'promot', u'safe', u'drink']
[u'canberra', u'airport', u'group', u'legal', u'action', u'allow']
[u'accid', u'kill', u'firefight', u'victoria']
[u'careflight', u'doctor', u'quit', u'talk', u'break']
[u'careflight', u'doctor', u'work', u'free', u'save', u'servic']
[u'channel', u'warn', u'code', u'breach']
[u'child', u'abus', u'pacif', u'alarm', u'unicef']
[u'climat', u'chang', u'worsen', u'situat', u'report']
[u'closer']
[u'closer']
[u'coff', u'council', u'look', u'greener', u'power']
[u'collett', u'blanchett', u'golden', u'globe']
[u'commentari', u'highlight']
[u'commonwealth', u'warn', u'weapon', u'theft']
[u'consult', u'help', u'polic', u'servic', u'attract', u'recruit']
[u'consum', u'warn', u'novelti', u'product', u'danger']
[u'cooler', u'weather', u'eas', u'tumut', u'bushfir', u'threat']
[u'coron', u'appeal', u'info', u'balibo', u'case']
[u'coron', u'leav', u'door', u'open', u'subpoena', u'whitlam']
[u'costello', u'await', u'detail', u'qanta']
[u'council', u'defend', u'legal', u'expens']
[u'council', u'green', u'light', u'marina', u'revamp']
[u'councillor', u'seek', u'overturn', u'tamworth', u'refuge']
[u'council', u'motion', u'halt', u'bathurst', u'saleyard', u'decis']
[u'court', u'date', u'case']
[u'court', u'dismiss', u'deport', u'challeng']
[u'court', u'drop', u'assault', u'case', u'mayor']
[u'court', u'jail', u'child', u'death', u'sentenc']
[u'court', u'uphold', u'jovic', u'deport', u'decis']
[u'crew', u'strengthen', u'contain', u'line', u'merg']
[u'crime', u'squad', u'investig', u'babi', u'river', u'plung']
[u'damag', u'properti', u'assess']
[u'dandenong', u'boomer']
[u'defenc', u'acquisit', u'program', u'mess', u'say', u'labor']
[u'dental', u'woe', u'prompt', u'home', u'dentistri', u'fear']
[u'diana', u'death', u'tragic', u'accid', u'report']
[u'discount', u'store', u'worri', u'ballarat', u'busi', u'group']
[u'discoveri', u'astronaut', u'rewir', u'space', u'station']
[u'dixon', u'qanta']
[u'donald', u'farmer', u'diversifi', u'game', u'bird']
[u'dont', u'ignor', u'depress', u'doctor', u'urg']
[u'label', u'incompet', u'palm', u'charg']
[u'drought', u'grazier', u'forc', u'kill', u'livestock']
[u'drought', u'boost', u'riverland', u'rabbit', u'number']
[u'drought', u'stricken', u'oval', u'stop', u'cricket', u'match']
[u'england']
[u'environ', u'minist', u'dismiss', u'whaler', u'critic']
[u'etsa', u'quiz', u'weekend', u'blackout']
[u'doctor', u'jail', u'drug', u'offenc']
[u'eyr', u'york', u'peninsula', u'soak', u'rain']
[u'famili', u'grate', u'hamper', u'donat']
[u'farina', u'call', u'tough', u'rule']
[u'farmer', u'turn', u'malaysia', u'cheap', u'fodder']
[u'farmer', u'pressur', u'compet', u'global', u'trade']
[u'festiv', u'rush', u'rais', u'tourism', u'concern']
[u'fiji', u'coup', u'leader', u'slam', u'door', u'qaras', u'comeback']
[u'firefight', u'kill', u'accid', u'fight']
[u'ravag', u'town', u'continu', u'clean']
[u'ravag', u'town', u'continu', u'clean']
[u'fire', u'stop', u'farmer', u'market']
[u'firm', u'unit', u'develop', u'coal', u'deposit']
[u'fisherman', u'sentenc', u'shoot', u'rare', u'seal']
[u'fishermen', u'court', u'seal', u'shoot']
[u'fishermen', u'rais', u'concern', u'amid', u'licens']
[u'forestri', u'industri', u'seek', u'detail', u'invest']
[u'free', u'christma', u'rail', u'travel']
[u'fund', u'ulladulla', u'harbour', u'control', u'plan']
[u'gillespi', u'put', u'redback', u'adelaid']
[u'gippsland', u'resid', u'clean', u'fire']
[u'govern', u'continu', u'kirkwood', u'talk']
[u'govt', u'consid', u'billion', u'defenc', u'aircraft', u'stopgap']
[u'govt', u'increas', u'protect', u'nation', u'park']
[u'govt', u'push', u'pool', u'fenc', u'resort']
[u'govt', u'say', u'broom', u'anglican', u'school']
[u'govt', u'incur', u'loss', u'western', u'power', u'sale']
[u'govt', u'replac', u'age', u'fighter', u'aircraft']
[u'govt', u'spend', u'billion', u'defenc', u'aircraft', u'stopgap']
[u'govt', u'unveil', u'plan', u'boost', u'number']
[u'green', u'group', u'back', u'wind', u'farm']
[u'group', u'urg', u'gwydir', u'wetland', u'rehab']
[u'gunmen', u'abduct', u'children', u'haiti']
[u'gunmen', u'invad', u'shell', u'facil', u'nigeria']
[u'hama', u'accus', u'fatah', u'figur', u'tri', u'kill']
[u'haniyeh', u'allow', u'enter', u'gaza', u'money']
[u'haniyeh', u'bodyguard', u'kill', u'cross', u'gaza']
[u'harwood', u'put', u'pressur', u'blue']
[u'hawkesdal', u'wind', u'turbin', u'layout']
[u'health', u'dept', u'deni', u'doctor', u'crisi', u'claim']
[u'health', u'worker', u'accept', u'deal']
[u'hick', u'lawyer', u'fight', u'feder', u'court']
[u'indigen', u'children', u'receiv', u'standard']
[u'indonesian', u'consul', u'general', u'thank', u'plane', u'maker']
[u'inform', u'discuss', u'traveston']
[u'infrastructur', u'woe', u'hamper', u'child', u'abus', u'fight', u'boyl']
[u'inmat', u'train', u'croc', u'farmer']
[u'interview', u'kevin', u'pietersen']
[u'interview', u'stuart', u'clark']
[u'iron', u'allianc', u'consid', u'rail', u'rout', u'option']
[u'drought', u'scientist']
[u'japan', u'creat', u'defenc', u'ministri']
[u'jilt', u'lover', u'jail', u'attempt', u'murder']
[u'jubil', u'symond', u'get', u'freddi', u'jone']
[u'knight', u'saga', u'surpris', u'say', u'oneil']
[u'fremantl', u'class', u'navi', u'boat', u'retir']
[u'liverpool', u'plain', u'elect', u'councillor']
[u'lobbi', u'group', u'echo', u'brows', u'basin', u'concern']
[u'local', u'apart', u'say', u'outgo', u'chairman']
[u'locust', u'push', u'southern']
[u'humid', u'lead', u'slow', u'summer', u'storm', u'season']
[u'malaysian', u'premier', u'mahathir', u'billionair']
[u'malle', u'farmer']
[u'arrest', u'didgeridoo', u'attack']
[u'manjimup', u'celebr', u'cherri', u'festiv']
[u'marin', u'park', u'committe', u'seek', u'zone', u'plan']
[u'mayor', u'back', u'safeti', u'review', u'truck', u'crash']
[u'mayor', u'monitor', u'qanta']
[u'meet', u'offer', u'support', u'rais', u'weir']
[u'milder', u'weather', u'eas', u'strength']
[u'mother', u'injur', u'hors', u'rider', u'back', u'hard', u'hat']
[u'want', u'uniform', u'speed', u'limit', u'curb', u'road', u'rage']
[u'court', u'accus', u'punch', u'year']
[u'navi', u'hop', u'black', u'hawk', u'beacon']
[u'navi', u'ship', u'return', u'fiji']
[u'clarenc', u'water', u'west']
[u'chief', u'restor', u'trust']
[u'normal', u'rainfal', u'predict', u'return']
[u'call', u'cruis', u'ship', u'alcohol', u'law']
[u'power', u'compani', u'criticis', u'outag']
[u'teen', u'warn', u'check', u'workplac', u'right']
[u'ogilvi', u'sniff', u'lead', u'california']
[u'oneil', u'offer', u'servic', u'declin', u'rugbi']
[u'opposit', u'promis', u'dubbo', u'health']
[u'opposit', u'question', u'refus']
[u'pair', u'face', u'murder', u'charg', u'fatal', u'stab']
[u'parramatta', u'revamp', u'expect', u'creat', u'thousand']
[u'penalti', u'eas', u'reef', u'angler']
[u'pietersen', u'cling', u'fade', u'ash', u'hop']
[u'pittman', u'give', u'birth']
[u'podcast', u'maxwel', u'terri', u'alderman', u'kerri']
[u'polic', u'appeal', u'wit', u'babi', u'river', u'death']
[u'polic', u'charg', u'driver', u'accus', u'turn']
[u'polic', u'christma', u'road', u'safeti', u'campaign', u'begin']
[u'polic', u'claim', u'drug', u'oper']
[u'polic', u'concern', u'miss', u'boy', u'welfar']
[u'post', u'mortem', u'surf', u'victim']
[u'powel', u'wright', u'receiv', u'award']
[u'power', u'outag', u'upgrad']
[u'premier', u'urg', u'tamworth', u'fear', u'sudanes']
[u'prison', u'murder', u'jail', u'year']
[u'chariti', u'brace', u'hectic', u'christma']
[u'govt', u'reject', u'call', u'palm', u'death', u'review']
[u'health', u'play', u'legionnair', u'threat']
[u'queanbeyan', u'council', u'challeng', u'water', u'court']
[u'rain', u'eas', u'bushfir', u'threat']
[u'redback', u'bull']
[u'redback', u'order']
[u'report', u'confirm', u'global', u'warm']
[u'resid', u'needl', u'exchang', u'opposit']
[u'resort', u'forc', u'fenc', u'pool']
[u'romario', u'high', u'unit', u'jet']
[u'roma', u'saleyard', u'sell']
[u'harvest', u'quota', u'fill']
[u'ruddock', u'satisfi', u'parternship']
[u'explor', u'set', u'record', u'antarct', u'mountain']
[u'safeti', u'program', u'hit', u'road']
[u'salvo', u'face', u'christma', u'donat', u'shortag']
[u'sangakkara', u'give', u'lanka', u'upper', u'hand']
[u'schoolgirl', u'drown', u'pool', u'excurs']
[u'schooli', u'prove', u'stress', u'dunsborough']
[u'search', u'miss', u'angler']
[u'shire', u'look', u'breath', u'life', u'tramway']
[u'skink', u'adapt', u'home', u'coast']
[u'smoke', u'law', u'prompt', u'council', u'bring', u'forward']
[u'southern', u'highland', u'needi', u'christma', u'lunch']
[u'stock', u'close', u'record', u'high']
[u'coast', u'firefight', u'readi', u'help']
[u'surfer', u'death', u'prompt', u'warn', u'lifeguard']
[u'bushfir', u'wipe', u'plantat', u'timber']
[u'crew', u'continu', u'work', u'restrict', u'fire']
[u'crew', u'monitor', u'mile', u'creek', u'blaze']
[u'taxi', u'oper', u'sell', u'cohuna', u'koondrook', u'licenc']
[u'search', u'stabil']
[u'track', u'day', u'warn', u'cyclon']
[u'polic', u'murder', u'probe', u'link', u'kill']
[u'unemploy', u'program', u'tender', u'process', u'competit']
[u'unfenc', u'resort', u'swim', u'pool', u'spotlight']
[u'union', u'say', u'worker', u'distress', u'death']
[u'quot']
[u'victoria', u'seat', u'collaps']
[u'vline', u'talk', u'bendigo', u'rail', u'perform']
[u'vote', u'begin', u'iranian', u'elect']
[u'govt', u'urg', u'offer', u'steal', u'wag', u'compo']
[u'hop', u'dock', u'navi', u'contract']
[u'labor', u'secretari', u'plan', u'senat']
[u'warm', u'condit', u'iceberg', u'wed', u'hold']
[u'watson', u'line', u'bull']
[u'wool', u'market', u'end', u'year', u'high', u'note']
[u'worker', u'kill', u'accid']
[u'xmas', u'movi', u'releas', u'offend', u'religi', u'group']
[u'girl', u'charg', u'stab']
[u'abba', u'call', u'earli', u'palestinian', u'poll']
[u'abba', u'deliv', u'speech', u'earli', u'elect']
[u'agenc', u'forc', u'pull', u'darfur']
[u'ash', u'podcast', u'maxwel', u'terri', u'alderman', u'kerri']
[u'australia', u'edg', u'closer', u'ash', u'success']
[u'author', u'watch', u'blue', u'green', u'alga', u'outbreak']
[u'author', u'search', u'miss', u'caver']
[u'bangladesh', u'mark', u'victori', u'amid', u'polit', u'strife']
[u'bathurst', u'crash', u'leav', u'dead']
[u'bathurst', u'crash', u'pilot', u'fin', u'casa']
[u'beatti', u'leav', u'palm', u'death', u'review', u'decis']
[u'beatti', u'stand']
[u'bid', u'place', u'patrick', u'oper']
[u'blair', u'make', u'trip', u'turkey']
[u'breaker', u'scorpion', u'post', u'wncl', u'win']
[u'british', u'polic', u'miss', u'girl', u'fals', u'alarm']
[u'brutal', u'australia', u'bring', u'england', u'knee']
[u'bushfir', u'near', u'narrabri', u'close', u'newel', u'highway']
[u'bushrang', u'charg', u'ahead']
[u'canberra', u'begin', u'stage', u'water', u'restrict']
[u'chavez', u'deni', u'castro', u'cancer', u'claim']
[u'cheney', u'call', u'rumsfeld', u'finest', u'defenc', u'secretari']
[u'children', u'play', u'match', u'caus', u'perth', u'hous']
[u'civil', u'libertarian', u'push', u'mulrunji', u'decis']
[u'clooney', u'urg', u'action', u'darfur']
[u'closer']
[u'closer']
[u'cole', u'use', u'tanker', u'tourism', u'season', u'water']
[u'commentari', u'highlight']
[u'crew', u'fight', u'factori']
[u'crew', u'hope', u'contain', u'bushfir', u'north', u'east']
[u'darfur', u'secur', u'situat', u'forc', u'agenc']
[u'diplomat', u'mediat', u'effort', u'underway', u'hama']
[u'domin', u'hussey', u'punish', u'england']
[u'hit', u'record']
[u'fair', u'boss', u'reject', u'polit', u'motiv', u'wage']
[u'fear', u'hama', u'fatah', u'divis', u'spark', u'civil']
[u'firefight', u'stabl', u'burn']
[u'fire', u'stocktak', u'reveal', u'extent', u'damag']
[u'threat', u'properti', u'eas']
[u'florida', u'halt', u'execut', u'inject', u'bungl']
[u'driver', u'regazzoni', u'die', u'crash']
[u'fossil', u'discoveri', u'challeng', u'evolut', u'theori']
[u'frequent', u'flyer', u'servic', u'threat', u'qanta', u'say']
[u'ganguli', u'surviv', u'protea', u'pace', u'onslaught']
[u'ghan', u'crash', u'truck', u'driver', u'hospit']
[u'gilchrist', u'race', u'stun', u'centuri']
[u'gile', u'return', u'home']
[u'googl', u'add', u'websit', u'registri', u'onlin', u'softwar']
[u'govern', u'toughen', u'drink', u'drive', u'law']
[u'govt', u'deni', u'claim', u'self', u'harm', u'incid']
[u'govt', u'careflight', u'contract', u'decis', u'correct', u'say']
[u'hama', u'say', u'abba', u'seek', u'fight', u'erupt']
[u'harmison', u'claim', u'pont']
[u'hayden', u'fall', u'short', u'centuri']
[u'highlight', u'whirlwind', u'inning']
[u'hope', u'progress', u'north', u'korean', u'nuclear', u'talk']
[u'horticultur', u'code', u'creat', u'transpar', u'trade']
[u'iinterview', u'michael', u'hussey']
[u'court', u'stanhop', u'tell', u'water']
[u'indonesian', u'landslid', u'death', u'toll', u'rise']
[u'injur', u'barmera', u'crash', u'victim', u'move', u'adelaid']
[u'interview', u'adam', u'gilchrist']
[u'interview', u'duncan', u'fletcher']
[u'iraqi', u'crescent', u'claim', u'militari', u'harass']
[u'kenyan', u'writer', u'assail', u'sentenc', u'death']
[u'litvinenko', u'russian', u'minist']
[u'die', u'bruce', u'highway', u'crash']
[u'mash', u'casualti', u'bushrang']
[u'mediat', u'effort', u'underway', u'hama']
[u'middl', u'east', u'violenc', u'escal']
[u'miss', u'caver', u'safe']
[u'miss', u'weapon', u'caus', u'public', u'concern', u'say']
[u'miss', u'weapon', u'breach', u'nation', u'secur', u'rudd', u'say']
[u'pay', u'matern', u'leav', u'need', u'survey']
[u'sugar', u'cane', u'smut', u'north']
[u'mother', u'clear', u'babi', u'drown']
[u'nasa', u'fail', u'budg', u'stick', u'solar', u'array']
[u'nepal', u'parti', u'maoist', u'finalis', u'interim', u'constitut']
[u'fighter', u'jet', u'carri', u'test', u'flight']
[u'newley', u'star', u'croc', u'dragon', u'sixer']
[u'korea', u'want', u'drop', u'hostil', u'polici', u'talk']
[u'noffk', u'put', u'skid', u'redback']
[u'plan', u'chang', u'frequent', u'flyer', u'servic', u'qanta']
[u'govt', u'say', u'alleg', u'weapon', u'theft', u'worri']
[u'util', u'chief', u'resign']
[u'firefight', u'injur', u'battl', u'blaze']
[u'firefight', u'injur', u'battl', u'victoria', u'blaze']
[u'ogilvi', u'touch', u'tiger']
[u'simpson', u'publish', u'sack']
[u'opposit', u'call', u'tighter', u'militari', u'base', u'secur']
[u'oprah', u'winfrey', u'head', u'prime', u'time', u'realiti']
[u'pacif', u'island', u'forum', u'reconsid', u'fiji', u'role']
[u'palestinian', u'vow', u'hunt', u'attack']
[u'palm', u'resid', u'protest', u'mulrunji', u'decis']
[u'palm', u'resid', u'protest', u'mulrunji', u'decis']
[u'peac', u'protest', u'stag', u'palm', u'island']
[u'pietersen', u'cling', u'fade', u'ash', u'hop']
[u'polic', u'fear', u'miss', u'teenag', u'bushwalk']
[u'polic', u'investig', u'babi', u'river', u'torren', u'drown']
[u'polic', u'task', u'forc', u'investig', u'sydney']
[u'premier', u'stand', u'minist', u'amid', u'corrupt']
[u'princ', u'william', u'graduat', u'sandhurst']
[u'propos', u'school', u'plan', u'thwart', u'legal']
[u'qanta', u'citi', u'canberra', u'australia']
[u'qatar', u'shatter', u'iraqi', u'hop', u'asian', u'game']
[u'polic', u'continu', u'search', u'miss', u'cape']
[u'storm', u'leav', u'trail', u'destruct']
[u'retir', u'judg', u'critic', u'famili', u'relationship']
[u'retir', u'judg', u'vent', u'famili', u'relationship', u'centr']
[u'robben', u'rule', u'titl', u'jitter']
[u'rudd', u'call', u'iraq', u'exit', u'strategi']
[u'rumsfeld', u'offici', u'step']
[u'saddam', u'soldier', u'invit', u'return', u'armi']
[u'secur', u'guard', u'hospit', u'stab']
[u'firefight', u'injur', u'battl', u'bushfir']
[u'lanka', u'build', u'command', u'lead']
[u'lanka', u'build', u'lead', u'wellington']
[u'lanka', u'lunch', u'skittl', u'kiwi']
[u'storm', u'lash', u'south', u'east']
[u'studi', u'link', u'exercis', u'lower', u'lung', u'cancer', u'risk']
[u'suspend', u'gatlin', u'bid', u'futur']
[u'sydney', u'canberra', u'post', u'wnbl', u'win']
[u'talk', u'continu', u'fiji', u'role', u'pacif', u'island']
[u'tamworth', u'council', u'oppos', u'refuge', u'resettl', u'plan']
[u'crew', u'focus', u'protect', u'properti']
[u'teen', u'interview', u'polic', u'cadet', u'program']
[u'thousand', u'troop', u'head', u'iraq', u'offici']
[u'traffic', u'ticket', u'help', u'elder']
[u'tumut', u'bushfir', u'contain', u'line', u'strengthen']
[u'crew', u'advantag', u'milder', u'weather']
[u'firefight', u'work', u'contain', u'line']
[u'vidos', u'doubl', u'down', u'marin']
[u'viennes', u'gender', u'equal', u'sign', u'time']
[u'violenc', u'escal', u'palestinian', u'faction']
[u'farmer', u'question', u'time', u'control', u'burn']
[u'watson', u'injur', u'bull', u'build', u'lead']
[u'watson', u'injur', u'bull', u'domin', u'redback']
[u'watson', u'miss', u'rest', u'ash', u'seri']
[u'year', u'defend', u'fli', u'titl']
[u'abba', u'accus', u'launch', u'coup']
[u'abba', u'open']
[u'abba', u'open']
[u'worker', u'kidnap', u'baghdad']
[u'worth', u'cannabi', u'sydney']
[u'ash', u'podcast', u'maxwel', u'terri', u'alderman', u'kerri']
[u'astronaut', u'plan', u'fourth', u'walk', u'complet', u'panel', u'work']
[u'aussi', u'kill']
[u'author', u'investig', u'firefight']
[u'light', u'put', u'brake', u'lanka']
[u'beatti', u'seek', u'palm', u'island', u'meet']
[u'bell', u'cook', u'session']
[u'bell', u'go', u'australia', u'frustrat', u'continu']
[u'bhutan', u'king', u'step']
[u'blue', u'mountain', u'search', u'continu', u'miss', u'teenag']
[u'brisban', u'base', u'contractor', u'kill', u'iraq', u'attack']
[u'brisban', u'kill', u'iraq']
[u'british', u'polic', u'releas', u'footag', u'murder', u'victim']
[u'brown', u'doesnt', u'believ', u'forest', u'impact']
[u'bulldoz', u'driver', u'hurt', u'build', u'break']
[u'bull', u'build', u'lead', u'adelaid']
[u'bushrang', u'continu', u'onslaught']
[u'bushrang', u'pile', u'run']
[u'bushrang', u'pois', u'victori']
[u'clark', u'remov', u'collingwood', u'cheapli']
[u'closer']
[u'closer']
[u'commentari', u'highlight']
[u'compulsori', u'water', u'save', u'target', u'begin', u'year']
[u'controversi', u'hit', u'south', u'african', u'cricket']
[u'crew', u'prepar', u'tough', u'week', u'ahead', u'bushfir']
[u'cycl', u'world', u'mourn', u'fatal', u'accid']
[u'emerg', u'crew', u'examin', u'storm', u'damag']
[u'england', u'delay', u'australia', u'victori', u'push']
[u'english', u'press', u'despair', u'shame', u'horrif', u'ash']
[u'english', u'press', u'savag', u'fletcher']
[u'kill', u'dossier']
[u'factori', u'blaze', u'site', u'free', u'contamin']
[u'fiji', u'militari', u'chief', u'mull', u'keep', u'roadblock']
[u'firefight', u'battl', u'tumut', u'blaze']
[u'firefight', u'blaze']
[u'fisherman', u'accus', u'govt', u'mismanag', u'fish', u'stock']
[u'footag', u'releas', u'murder', u'victim']
[u'franc', u'pull', u'troop', u'afghanistan']
[u'freak', u'solar', u'explos', u'disrupt', u'satellit']
[u'gaza', u'clash', u'escal', u'elect']
[u'ghan', u'black', u'clarifi', u'crash', u'detail']
[u'gillard', u'take', u'labor', u'tour', u'tasmania']
[u'govt', u'call', u'corpor', u'donat', u'rspca']
[u'govt', u'play', u'labor', u'claim', u'weapon', u'storag']
[u'govt', u'pledg', u'promot', u'healthi', u'live']
[u'govt', u'reject', u'labor', u'weapon', u'claim']
[u'govt', u'warn', u'patient', u'face', u'remov', u'elect']
[u'green', u'demand', u'action', u'domest', u'violenc', u'trend']
[u'gunmen', u'kill', u'filippino', u'congressman']
[u'gusmao', u'embrac', u'enemi']
[u'hafeez', u'akmal', u'guid', u'pakistan', u'seri']
[u'hama', u'accus', u'abba', u'launch', u'coup']
[u'henri', u'hop', u'return', u'liverpool']
[u'hmas', u'kanimbla', u'return', u'home', u'shadow', u'black', u'hawk']
[u'interview', u'alastair', u'cook']
[u'interview', u'glenn', u'mcgrath']
[u'iraqi', u'reach', u'saddam', u'support']
[u'labor', u'seek', u'probe', u'qanta', u'frequent', u'flyer', u'program']
[u'landi', u'verg', u'quit', u'cycl']
[u'minut', u'goal', u'give', u'milan', u'draw', u'fiorentina']
[u'lindsay', u'lead', u'lightn']
[u'liverpool', u'charlton']
[u'escap', u'burn', u'home']
[u'hospit', u'incid', u'near', u'casino']
[u'kill', u'motorbik', u'crash']
[u'melbourn', u'stage', u'water', u'restrict']
[u'minist', u'accus', u'anim', u'liber', u'group']
[u'miss', u'week', u'long', u'search', u'cape']
[u'molik', u'fight', u'open', u'spot']
[u'time', u'need', u'mandatori', u'water', u'save']
[u'naiqama', u'water']
[u'navi', u'find', u'beacon', u'miss', u'black', u'hawk', u'helicopt']
[u'navi', u'find', u'miss', u'black', u'hawk', u'helicopt', u'beacon']
[u'tumut', u'bushfir', u'spark', u'polic', u'probe']
[u'nigerian', u'rule', u'parti', u'back', u'reclus', u'governor']
[u'notch', u'wncl', u'win']
[u'firefight', u'injuri', u'investig']
[u'offic', u'loyal', u'abba', u'kill', u'elect']
[u'ogilvi', u'snatch', u'lead', u'tiger']
[u'miracl', u'save', u'england', u'boycott']
[u'opposit', u'claim', u'initi', u'highlight', u'polic']
[u'opposit', u'flag', u'uniform', u'school', u'term']
[u'opposit', u'want', u'uniform', u'school', u'term']
[u'properti', u'damag', u'storm']
[u'properti', u'damag', u'south', u'east']
[u'pakistan', u'wed', u'kill']
[u'palestinian', u'foreign', u'minist', u'convoy', u'attack']
[u'palm', u'island', u'elect', u'mayor']
[u'palm', u'island', u'resid', u'elect', u'mayor']
[u'plan', u'legal', u'action', u'school', u'closur']
[u'perth', u'liquor', u'store', u'begin', u'sunday', u'trade']
[u'polic', u'investig', u'street', u'stab']
[u'prawn', u'fishermen', u'reject', u'licenc']
[u'privat', u'school', u'fee', u'rise', u'year']
[u'progress', u'blaze']
[u'queensland', u'storm', u'damag']
[u'rafsanjani', u'take', u'lead', u'iranian', u'poll']
[u'rebel', u'extend', u'truce', u'ugandan', u'govt']
[u'reconcili', u'confer', u'begin', u'iraq']
[u'redback', u'collaps', u'hand', u'bull', u'point']
[u'renew', u'energi', u'afford', u'planet']
[u'commission', u'defend', u'respons', u'tumut', u'blaze']
[u'safeti', u'boss', u'ban', u'darwin', u'crash']
[u'santa', u'pose', u'pet', u'rais', u'leukaemia', u'fund']
[u'scottish', u'player', u'tripl', u'card', u'rampag']
[u'storm', u'clean', u'continu']
[u'smoke', u'alarm', u'save', u'famili', u'hous']
[u'sreesanth', u'engin', u'south', u'african', u'collaps']
[u'lanka', u'build', u'huge', u'lead', u'wellington']
[u'lanka', u'close', u'victori', u'wellington']
[u'stallon', u'age', u'rocki', u'clamber', u'rope']
[u'step', u'retrac', u'search', u'miss', u'teen']
[u'storm', u'impact', u'noosa', u'water', u'suppli']
[u'storm', u'dwindl', u'level']
[u'stubborn', u'fletcher', u'cling', u'hope']
[u'author', u'warn', u'resid', u'approach']
[u'firefight', u'hop', u'gain', u'control', u'blaze']
[u'teenag', u'charg', u'violent', u'assault']
[u'tension', u'flare', u'abba', u'flag', u'earli', u'elect']
[u'tension', u'flare', u'abba', u'flag', u'earli', u'elect']
[u'thousand', u'power', u'south', u'east']
[u'tiger', u'chase', u'beller']
[u'tiger', u'hold', u'breaker', u'bullet', u'cat']
[u'time', u'magazin', u'name', u'person', u'year']
[u'year', u'child', u'drown', u'creek']
[u'approv', u'plan', u'palestinian', u'damag', u'registri']
[u'union', u'block', u'labor', u'uniform', u'educ', u'reform']
[u'want', u'real', u'progress', u'north', u'korean', u'nuclear', u'talk']
[u'valencia', u'steal', u'high', u'fli', u'zaragoza']
[u'firefight', u'prepar', u'weather']
[u'victori', u'hammer', u'knight', u'minor', u'premiership']
[u'video', u'reach', u'australian', u'shore']
[u'watson', u'hop', u'ralli', u'bull']
[u'nail', u'biter', u'hobart']
[u'yatala', u'prison', u'striker', u'return', u'work']
[u'zanu', u'approv', u'plan', u'extend', u'mugab', u'presid']
[u'boost', u'help', u'combat', u'osteoporosi']
[u'abar', u'commod', u'report']
[u'abba', u'stand', u'elect']
[u'grain', u'wallaroo', u'storag', u'fertilis']
[u'agforc', u'warn', u'farmer', u'locust', u'threat']
[u'pollut', u'death', u'rise', u'asia']
[u'alic', u'polic', u'urg', u'caution', u'break']
[u'applic', u'close', u'patel']
[u'ash', u'podcast', u'maxwel', u'terri', u'alderman', u'kerri']
[u'asian', u'game', u'medallist', u'fail', u'test']
[u'australia', u'learn', u'loss', u'pont']
[u'australia', u'verg', u'reclaim', u'ash']
[u'australia', u'regain', u'ash']
[u'australia', u'regain', u'ash']
[u'aust', u'regain', u'ash']
[u'aust', u'win', u'test', u'regain', u'ash']
[u'aust', u'wool', u'network', u'beat', u'industri', u'growth']
[u'bank', u'sector', u'lead', u'market', u'high']
[u'barossa', u'council', u'back', u'tanunda', u'health', u'leisur', u'centr']
[u'beer', u'bottl', u'throw', u'parti', u'goer', u'polic']
[u'bendigo', u'taxi', u'driver', u'bash']
[u'blue', u'battl', u'save', u'outright', u'defeat']
[u'upgrad', u'websit']
[u'bond', u'renaiss', u'drive', u'liqueur', u'sale']
[u'boulder', u'polic', u'post', u'open', u'christma']
[u'jellyfish', u'close', u'yeppoon', u'beach']
[u'brothel', u'owner', u'promis', u'compli', u'evict']
[u'bushrang', u'overpow', u'blue', u'outright', u'point']
[u'byron', u'council', u'win', u'natur', u'resourc', u'manag']
[u'play', u'group', u'build', u'stay']
[u'campaign', u'spar', u'guyra', u'hors']
[u'cancer', u'council', u'urg', u'fund', u'swim', u'pool', u'shade']
[u'cannington', u'investig', u'worker', u'death']
[u'china', u'ambassador', u'win', u'european', u'appoint']
[u'closer']
[u'closer']
[u'club', u'promis', u'shepparton', u'cyclist', u'wont', u'forget']
[u'coastguard', u'brace', u'holiday', u'onslaught']
[u'commentari', u'highlight']
[u'communiti', u'consid', u'appeal', u'mutitjulu']
[u'convict', u'murder', u'claim', u'juri', u'wrong']
[u'coron', u'say', u'train', u'lack', u'relat']
[u'cosmos', u'shin', u'light', u'miss', u'matter']
[u'costello', u'urg', u'protect', u'histor', u'hous']
[u'council', u'agre', u'maintain', u'miner', u'memori']
[u'court', u'cut', u'montana', u'kidnapp', u'jail', u'time']
[u'court', u'jail', u'spiderman', u'thief']
[u'court', u'rule', u'rail', u'line', u'open']
[u'crew', u'confid', u'contain', u'nation', u'park', u'blaze']
[u'offer', u'drought', u'relief', u'farmer']
[u'cyclist', u'die', u'boardwalk', u'mishap']
[u'davi', u'offici', u'clear', u'blood', u'dope']
[u'deeper', u'hole']
[u'dozer', u'driver', u'hurt', u'firefight', u'accid']
[u'driver', u'attitud', u'disappoint', u'south', u'west', u'polic']
[u'drought', u'farm', u'export', u'tumbl', u'abar']
[u'drought', u'increas', u'road', u'kill']
[u'drought', u'take', u'toll', u'southern', u'highland', u'busi']
[u'drought', u'impact', u'financi', u'year', u'review']
[u'east', u'timor', u'film', u'win', u'right', u'award']
[u'ebay', u'triumph', u'ticket', u'scalp', u'disput']
[u'economist', u'independ', u'nation', u'water', u'bodi']
[u'endang', u'speci', u'list', u'worri', u'green', u'group']
[u'energi', u'regul', u'fin', u'aurora', u'outag']
[u'establish', u'timor', u'secur', u'year']
[u'polic', u'offic', u'quit', u'public', u'servic']
[u'famili', u'urg', u'govt', u'implement', u'suicid', u'inquest']
[u'farmer', u'assess', u'bushfir', u'damag']
[u'farm', u'equip', u'believ', u'respons', u'blaze']
[u'fatah', u'hama', u'agre', u'peac', u'talk']
[u'father', u'guilti', u'attempt', u'murder', u'daughter']
[u'feder', u'govt', u'give', u'southern', u'road']
[u'firefight', u'number', u'doubl']
[u'flintoff', u'back', u'controversi', u'select']
[u'foil', u'escap', u'show', u'prison', u'secur', u'work', u'rann']
[u'teacher', u'admit', u'offenc', u'year']
[u'foster', u'fail', u'appear', u'fiji', u'court', u'hear']
[u'garrett', u'busi', u'visit', u'tasmania', u'rudd']
[u'gayndah', u'shire', u'push', u'govt', u'hail', u'cannon']
[u'gaza', u'gunfir', u'continu', u'despit', u'agreement']
[u'geraldton', u'northampton', u'water', u'pipe', u'face', u'delay']
[u'squad', u'vatican', u'mull', u'field', u'footbal', u'team']
[u'govt', u'back', u'state', u'resolut', u'haulag', u'negoti']
[u'govt', u'detain', u'suspect', u'illeg', u'worker']
[u'govt', u'fail', u'hick']
[u'govt', u'play', u'polit', u'drought', u'swan']
[u'govt', u'urg', u'maintain', u'teacher', u'number']
[u'govt', u'welcom', u'mutitjulu', u'court', u'decis']
[u'goward', u'launch', u'campaign', u'water', u'promis']
[u'grape', u'grower', u'worri', u'bushfir', u'smoke', u'impact']
[u'great', u'keppel', u'mercur', u'promis', u'major', u'upgrad']
[u'greenough', u'shire', u'resid', u'consid', u'merger', u'challeng']
[u'greenpeac', u'protest', u'nuclear', u'wast', u'shipment']
[u'groom', u'best', u'charg', u'horsham', u'brawl']
[u'council', u'fear', u'properti', u'valuat', u'chang']
[u'hervey', u'brace', u'fli', u'invas']
[u'hospit', u'ladi', u'auxiliari', u'give', u'near']
[u'indigen', u'group', u'youth', u'roundtabl', u'merg']
[u'ingham', u'cane', u'smut', u'detect']
[u'interview', u'andrew', u'flintoff']
[u'interview', u'andrew', u'strauss']
[u'interview', u'michael', u'hussey']
[u'interview', u'ricki', u'pont']
[u'interview', u'shane', u'warn']
[u'interview', u'stuart', u'clark']
[u'iraqi', u'gunmen', u'free', u'hostag']
[u'iraq', u'wrong']
[u'italian', u'villag', u'bask', u'reflect', u'glori']
[u'jail', u'plan', u'prompt', u'council', u'seek']
[u'johnston', u'mayor', u'say', u'council', u'readi']
[u'juror', u'believ', u'prerecord', u'evid']
[u'kalgoorli', u'boulder', u'mayor', u'defend', u'youth', u'council']
[u'labor', u'want', u'overhaul', u'anti', u'dump', u'legisl']
[u'launceston', u'lawyer', u'clear', u'misconduct']
[u'legal', u'process', u'hold', u'kiyingi', u'passport']
[u'lightn', u'strike', u'spark', u'fire']
[u'arrest', u'port', u'piri', u'hardwar', u'store', u'blaze']
[u'arrest', u'prostitut', u'murder']
[u'convict', u'defenc', u'forc']
[u'mandurah', u'council', u'add', u'build']
[u'hospit', u'crash']
[u'kill', u'tree', u'lop', u'accid']
[u'marin', u'protect', u'area', u'allow', u'industri']
[u'marsh', u'demand', u'better', u'redback']
[u'maryborough', u'appoint', u'chief', u'execut']
[u'medal', u'recognis', u'year', u'volunt', u'rescu', u'effort']
[u'charg', u'internet', u'procur']
[u'mental', u'woman', u'avoid', u'jail', u'daughter', u'death']
[u'milder', u'weather', u'aid', u'firefight']
[u'minist', u'deni', u'prawn', u'stock', u'overfish']
[u'mirani', u'mackay', u'upgrad', u'road']
[u'molik', u'close', u'open', u'berth']
[u'murali', u'put', u'lanka', u'brink']
[u'murali', u'spin', u'lanka', u'wellington', u'victori']
[u'murray', u'alloc', u'good', u'expect']
[u'mutitjulu', u'administr', u'challeng', u'dismiss']
[u'narangba', u'test', u'fail', u'quell', u'contamin']
[u'nation', u'open', u'nomin', u'park', u'candid']
[u'brawl', u'leav', u'leagu', u'reel']
[u'aerial', u'survey', u'seek', u'uranium', u'deposit']
[u'home', u'sale', u'fall']
[u'jetti', u'aid', u'push', u'commut', u'ferri', u'servic']
[u'newman', u'jail', u'bite', u'partner', u'ear']
[u'face', u'charg', u'death']
[u'push', u'tripl', u'truck']
[u'korea', u'nuclear', u'talk', u'resum', u'beij']
[u'nuclear', u'wast', u'anger']
[u'commit', u'victoria', u'bushfir', u'battl']
[u'extend', u'militari', u'presenc', u'solomon']
[u'ogilvi', u'tip', u'year', u'tiger']
[u'pair', u'charg', u'weekend', u'stab']
[u'pair', u'face', u'court', u'accus', u'dubbo', u'bash']
[u'palestinian', u'ceas', u'appear', u'hold']
[u'palestinian', u'faction', u'agre', u'talk']
[u'palm', u'island', u'result', u'blatant', u'injustic']
[u'founder', u'face', u'trial']
[u'patient', u'posit', u'dentist', u'return', u'negat']
[u'pemberton', u'caravan', u'park', u'oper']
[u'urg', u'govt', u'delay', u'yarragade', u'decis']
[u'philippin', u'appeal', u'typhoon']
[u'pilot', u'escap', u'light', u'plane', u'crash', u'minor', u'injuri']
[u'pilot', u'plan', u'stop', u'qanta', u'takeov']
[u'plantagenet', u'shire', u'investig', u'fund', u'medic']
[u'dismiss', u'climat', u'chang', u'bushfir', u'claim']
[u'doesnt', u'like', u'scrutini', u'rudd']
[u'reject', u'rudd', u'scrutini', u'claim']
[u'poison', u'cost', u'million', u'report']
[u'polic', u'blitz', u'target', u'novic', u'driver']
[u'polic', u'continu', u'probe']
[u'polic', u'corrupt', u'watchdog', u'grant', u'phone', u'tap']
[u'polic', u'establish', u'info', u'gippsland', u'probe']
[u'polic', u'lament', u'young', u'drink', u'driver', u'number']
[u'policeman', u'shoot', u'near', u'barham']
[u'polic', u'search', u'involv']
[u'polic', u'seek', u'public', u'help', u'mildura', u'rape']
[u'polic', u'urg', u'public', u'help', u'barmera', u'crash', u'probe']
[u'polic', u'warn', u'waterway', u'safeti', u'crackdown']
[u'pont', u'redempt']
[u'pope', u'urg', u'iraqi', u'refuge', u'syria']
[u'power', u'restor', u'storm']
[u'program', u'aim', u'encourag', u'farmer', u'talk']
[u'protest', u'target', u'sydney', u'nuclear', u'convoy']
[u'pyrene', u'shire', u'farmer', u'urg', u'attend', u'meet']
[u'opposit', u'push', u'special', u'educ']
[u'spend', u'christma']
[u'transport', u'investig', u'faulti', u'traffic', u'signal']
[u'quick', u'wicket', u'rock', u'england']
[u'rain', u'unlik', u'save', u'england']
[u'record', u'ninth', u'put', u'inter']
[u'registrar', u'say', u'mutitjulu', u'administr', u'make']
[u'resid', u'warn', u'blaze', u'jump', u'contain', u'line']
[u'resid', u'warn', u'approach', u'bushfir']
[u'review', u'announc', u'firefight', u'injur']
[u'rspca', u'investig', u'club']
[u'rudd', u'support', u'sustain', u'forestri', u'industri']
[u'rudd', u'support', u'forestri', u'industri']
[u'govt', u'accus', u'mismanag', u'fish', u'stock']
[u'govt', u'announc', u'extra', u'firefight']
[u'scheme', u'urg', u'mackay', u'combat', u'youth']
[u'searcher', u'hope', u'belong', u'miss']
[u'sevilla', u'rub', u'salt', u'barca', u'wound']
[u'sharehold', u'multiplex', u'wembley', u'loss']
[u'shark', u'jellyfish', u'close', u'mackay', u'beach']
[u'south', u'african', u'theatr', u'produc', u'murder']
[u'summer', u'storm', u'spark', u'croc', u'breed']
[u'sunshin', u'offer', u'hope', u'elder', u'bone']
[u'surfer', u'airlift', u'shark', u'attack']
[u'surfer', u'injur', u'shark', u'attack']
[u'survey', u'find', u'prospect', u'good', u'graduat']
[u'sweet', u'reveng', u'aussi', u'cricket']
[u'swift', u'creek', u'begin', u'stage', u'water', u'restrict']
[u'tafe', u'glenormiston', u'colleg', u'effort', u'prove', u'success']
[u'begin', u'dairi', u'export', u'pakistan']
[u'tasmanian', u'bushfir', u'hold', u'posit']
[u'tasmanian', u'firefight', u'battl', u'blaze']
[u'tape', u'deter', u'invest', u'treasur']
[u'teen', u'miss', u'blue', u'mountain']
[u'test', u'clear', u'site', u'excess', u'contamin']
[u'drought', u'murray']
[u'theyv']
[u'quak', u'shake', u'indonesia']
[u'tractor', u'mishap', u'prompt', u'farmer', u'stay']
[u'tweed', u'council', u'find', u'plan', u'fight', u'beach', u'eros']
[u'polic', u'deni', u'fire', u'fatal', u'timor', u'clash']
[u'upper', u'hous', u'urg', u'reloc', u'region']
[u'lose', u'iraq', u'powel']
[u'venu', u'lose', u'poki', u'gambl', u'crackdown']
[u'firefight', u'make', u'progress']
[u'visitor', u'urg', u'avoid', u'swim', u'katherin', u'river']
[u'lobster', u'industri', u'recognis', u'sustainbl']
[u'warn', u'get', u'chanc', u'histori', u'home', u'turf']
[u'water', u'bomber', u'fight', u'blaze', u'near', u'williamstown']
[u'water', u'bomber', u'tackl', u'fitzgerald', u'river', u'park', u'blaze']
[u'weekend', u'rain', u'boost', u'bumper', u'broom', u'rainfal']
[u'weekend', u'storm', u'damag', u'home', u'childer']
[u'wheat', u'export', u'issu', u'divid', u'grower']
[u'willaura', u'pipelin', u'resid', u'stage']
[u'wind', u'threaten', u'intensifi', u'blaze']
[u'winton', u'mayor', u'urg', u'qanta', u'rememb', u'outback']
[u'wodonga', u'await', u'mayor']
[u'wollongong', u'fin', u'land', u'clear']
[u'kill', u'gaza', u'fight', u'rag']
[u'balanc', u'life', u'perfect', u'christma', u'present']
[u'abetz', u'claim', u'firefight', u'support', u'bushfir']
[u'accus', u'claim', u'qaeda', u'chief', u'court', u'hear']
[u'adelaid', u'famili', u'escap', u'hous']
[u'alburi', u'council', u'reduc', u'tourism', u'group', u'fund']
[u'alic', u'polic', u'confisc', u'claypan', u'hoon', u'car']
[u'altern', u'facil', u'urg', u'mental']
[u'arm', u'bandit', u'target', u'nerang', u'servic', u'station']
[u'ash', u'order', u'restor', u'mcgrath']
[u'attack', u'coach', u'expect', u'lead', u'england']
[u'australian', u'jail', u'child', u'offenc']
[u'australia', u'rush', u'stamp', u'celebr', u'ash']
[u'australia', u'unchang', u'box']
[u'aust', u'veget', u'import', u'outweigh', u'export', u'grower']
[u'author', u'discov', u'miss', u'teenag']
[u'author', u'mull', u'hunt', u'attack', u'shark']
[u'backburn', u'effort', u'continu']
[u'bainimarama', u'snub', u'chief', u'meet']
[u'basketbal', u'ban', u'garden', u'brawl']
[u'beatti', u'face', u'palm', u'island', u'protest']
[u'bell', u'beach', u'remain', u'open', u'follow', u'shark', u'attack']
[u'blair', u'show', u'abba', u'support']
[u'brown', u'case', u'forestri', u'tasmania']
[u'bodi', u'hunt', u'miss', u'teen']
[u'bodi', u'miss', u'teenag']
[u'brain', u'drain', u'claim', u'nonsens', u'say', u'costello']
[u'brisban', u'club', u'retain', u'polici']
[u'bush', u'sign', u'indian', u'nuclear', u'agreement']
[u'bush', u'sign', u'india', u'nuclear', u'deal']
[u'businessman', u'face', u'court', u'westpoint', u'collaps']
[u'busselton', u'predict', u'popul', u'doubl']
[u'centr', u'boost', u'eurobodalla', u'job']
[u'canberra', u'bushfir', u'report']
[u'cannavaro', u'name', u'fifa', u'world', u'player', u'year']
[u'cartoon', u'legend', u'joseph', u'barbera', u'die']
[u'closer']
[u'closer', u'midday']
[u'closer']
[u'contamin', u'fear', u'prompt', u'avoid', u'cooroy']
[u'coolgardi', u'shire', u'consid', u'elect', u'replac']
[u'coramba', u'hold', u'meet', u'petrol', u'contamin']
[u'coron', u'criticis', u'canberra', u'fire', u'respons']
[u'coron', u'slam', u'canberra', u'fire', u'respons']
[u'coron', u'slam', u'emerg', u'servic', u'firestorm']
[u'coron', u'investig', u'fisherman', u'death']
[u'council', u'award', u'centr', u'contract']
[u'council', u'finish', u'civic', u'theatr', u'revamp']
[u'court', u'order', u'johnson', u'donat', u'chariti']
[u'court', u'reject', u'hotel', u'trade']
[u'crew', u'stop', u'move', u'buller']
[u'crew', u'clean', u'stanwel', u'top']
[u'crew', u'battl', u'north', u'east', u'blaze']
[u'dajka', u'dodg', u'jail', u'assault', u'charg']
[u'dajka', u'want', u'ride', u'beij']
[u'dajka', u'want', u'ride', u'beij']
[u'damag', u'storm', u'rais', u'tropic', u'fruit', u'price']
[u'decis', u'loom', u'hospit', u'referendum']
[u'develop', u'commit', u'mackay', u'sport', u'stadium']
[u'disappoint']
[u'drought', u'depress', u'initi']
[u'drought', u'forc', u'snowi', u'hydro', u'irrig', u'cut']
[u'drought', u'spur', u'call', u'renew', u'healthi', u'sheep', u'flock']
[u'duke', u'score', u'boro']
[u'duti', u'delay', u'restor', u'qanta', u'plane', u'arriv']
[u'earli', u'start', u'expect', u'biosolid', u'storag']
[u'elder', u'optus', u'rural', u'broadband']
[u'evan', u'give', u'rudd', u'tick', u'approv']
[u'facilit', u'hop', u'clear', u'water', u'misinform']
[u'failur', u'iraq', u'calam', u'gate']
[u'famili', u'thank', u'searcher', u'teen', u'death', u'confirm']
[u'farmer', u'pastoralist', u'divid', u'wheat', u'export']
[u'farmer', u'win', u'broadsound', u'shire', u'elect']
[u'father', u'dissatisfi', u'hickss', u'medic', u'treatment']
[u'firefight', u'contain', u'buller', u'blaze']
[u'firefight', u'contain', u'nation', u'park', u'blaze']
[u'fire', u'acceler', u'victorian', u'town']
[u'fire', u'close', u'town']
[u'spark', u'canberra']
[u'fletcher', u'dodg', u'blame', u'ash', u'debacl']
[u'forens', u'investig', u'reach', u'blue', u'mountain', u'bodi']
[u'forest', u'preserv', u'disput', u'children']
[u'fortescu', u'gain', u'access', u'billiton', u'rail', u'line']
[u'foster', u'deal', u'fiji', u'militari', u'report']
[u'jail', u'botch', u'bank', u'robberi']
[u'freddi', u'captainci', u'question', u'british', u'media']
[u'fund', u'boost', u'public', u'hospit']
[u'ghan', u'crash', u'truck', u'driver', u'leav', u'hospit']
[u'gladston', u'explos', u'maker', u'surrend', u'oper']
[u'glenelg', u'council', u'review', u'portland', u'cabl', u'tram']
[u'gold', u'coast', u'share', u'care', u'train', u'fund']
[u'golf', u'club', u'member', u'accept', u'retir', u'villag', u'plan']
[u'govt', u'announc', u'osteoporosi', u'fund']
[u'govt', u'reject', u'claim', u'court', u'rule', u'log']
[u'govt', u'reveal', u'look', u'albani', u'waterfront', u'develop']
[u'govt', u'side', u'industri', u'log', u'rule']
[u'govt', u'unveil', u'central', u'water', u'strategi']
[u'grain', u'grower', u'ralli', u'retain', u'singl', u'desk']
[u'grazier', u'warn', u'diseas', u'spread', u'threat']
[u'green', u'group', u'air', u'growth', u'log', u'fear']
[u'green', u'group', u'question', u'wolgan', u'valley', u'resort', u'plan']
[u'grower', u'face', u'pressur', u'wholesal', u'contract']
[u'grow', u'youth', u'drunken', u'worri', u'paramed']
[u'help', u'bushfir', u'victim', u'rebuild']
[u'hill', u'industri', u'explain', u'share', u'price', u'jump']
[u'posit', u'dentist', u'patient', u'clear']
[u'hors', u'save', u'drought']
[u'hotel', u'consid', u'challeng', u'poki', u'remov', u'plan']
[u'hunter', u'figur', u'prompt', u'govt', u'review', u'mental', u'health']
[u'illawarra', u'student', u'subject']
[u'incompet', u'appeal', u'lawyer', u'dismiss']
[u'investig', u'launch', u'test', u'flight', u'crash']
[u'iraq', u'violenc', u'highest', u'level', u'report']
[u'isra', u'call', u'abba', u'support']
[u'jakarta', u'hotel', u'put', u'hamburg', u'menu']
[u'japan', u'say', u'north', u'korea', u'attitud', u'jeopardis']
[u'jedinak', u'face', u'hear', u'foul', u'play']
[u'journalist', u'neglect', u'duti']
[u'kadina', u'high', u'achiev', u'despit', u'student']
[u'kalgoorli', u'polic', u'boost', u'lead', u'extra', u'arrest']
[u'belong', u'miss', u'teen', u'polic']
[u'labor', u'child', u'care', u'polici', u'focus', u'earli']
[u'labor', u'unveil', u'infrastructur', u'plan']
[u'latest', u'result', u'stabl', u'pleas']
[u'lawyer', u'confirm', u'appeal', u'mutitjulu']
[u'libyan', u'court', u'sentenc', u'medic', u'death']
[u'lockyer', u'undergo', u'wrist', u'surgeri']
[u'vega']
[u'luck', u'play', u'record', u'drug', u'seizur']
[u'arrest', u'prostitut', u'murder', u'case']
[u'die', u'fitzroy', u'cross', u'road', u'crash']
[u'hold', u'prostitut', u'murder']
[u'jail', u'attempt', u'child', u'rape']
[u'marin', u'park', u'sanctuari', u'zone', u'worri', u'walli', u'lake']
[u'market', u'end', u'record']
[u'migrant', u'replac', u'strike', u'trolley', u'collector']
[u'molik', u'secur', u'open', u'place']
[u'fund', u'urg', u'attract', u'skill', u'child']
[u'school', u'plain', u'english', u'report', u'iemma']
[u'mount', u'gibson', u'iron', u'close', u'aztec', u'takeov']
[u'mayor', u'happi', u'soil', u'water', u'test']
[u'tamborin', u'charg', u'broadbeach']
[u'nasa', u'googl', u'virtual', u'space', u'travel']
[u'boost', u'cowra', u'shire', u'job']
[u'fund', u'age', u'care', u'place']
[u'role', u'model']
[u'tourist', u'trail', u'includ', u'indigen', u'heritag']
[u'korea', u'demand', u'sanction']
[u'clear', u'winner', u'eidsvold', u'council', u'elect']
[u'farmer', u'report', u'fail', u'address']
[u'north', u'coast', u'cattl', u'tick', u'vaccin']
[u'northern', u'grampian', u'shire', u'seek', u'swim', u'centr']
[u'north', u'canegrow', u'scour', u'field', u'cane', u'smut']
[u'govt', u'pledg', u'boost', u'timber', u'plant']
[u'govt', u'accus', u'evad', u'elect', u'promis']
[u'kill', u'gaza', u'hospit', u'battl']
[u'outgo', u'chairman', u'believ', u'anti', u'bias', u'measur']
[u'outrag', u'decis', u'anger', u'writer']
[u'pakistan', u'name', u'shoaib', u'get', u'tough']
[u'panel', u'probe', u'catherin', u'hill', u'develop']
[u'panic', u'thai', u'market', u'sell', u'prompt', u'emerg']
[u'plan', u'chang', u'allow', u'scone', u'consid', u'wind', u'farm']
[u'prais', u'expat']
[u'landown', u'threaten', u'kokoda', u'track', u'blockad']
[u'polic', u'arrest', u'prostitut', u'murder']
[u'polic', u'continu', u'investig', u'bodi']
[u'policeman', u'summon', u'fatal', u'crash']
[u'polic', u'probe', u'southern', u'cross', u'fuel', u'theft']
[u'polic', u'releas', u'detail', u'offic', u'escap']
[u'polic', u'seek', u'wit', u'parri', u'beach', u'stab']
[u'polic', u'probe', u'caus', u'monto', u'busi', u'blaze']
[u'polic', u'law', u'suspend', u'driver', u'licenc']
[u'pork', u'price', u'climb', u'christma']
[u'port', u'lincoln', u'drop', u'zone', u'submiss']
[u'power', u'compani', u'investig', u'mildura', u'blackout', u'caus']
[u'power', u'firm', u'cite', u'wellington', u'locat', u'benefit']
[u'power', u'station', u'death', u'prompt', u'worker', u'meet']
[u'professor', u'say', u'health', u'fund', u'misdirect']
[u'prospector', u'find', u'gold', u'nugget', u'near', u'maryborough']
[u'prostitut', u'murder', u'suspect', u'arrest']
[u'psychiatrist', u'call', u'hick', u'assess']
[u'public', u'urg', u'help', u'combat', u'fruit', u'threat']
[u'push', u'indigen', u'job', u'cattl']
[u'qanta', u'give', u'solid', u'financi', u'assess']
[u'child', u'safeti', u'worker', u'strike', u'resourc']
[u'releas', u'wheat', u'lose', u'singl', u'desk', u'farmer', u'warn']
[u'resid', u'unhappi', u'powerlin', u'approv']
[u'riverland', u'bird', u'habitat', u'damag']
[u'road', u'safeti', u'scheme', u'target', u'novic', u'driver']
[u'robert', u'gate', u'swear', u'defenc', u'secretari']
[u'sack', u'empir', u'rubber', u'worker', u'face', u'payment', u'struggl']
[u'govt', u'accus', u'ignor', u'parliamentari']
[u'school', u'celebr', u'result', u'tragic', u'term']
[u'scienc', u'student', u'need', u'combat', u'futur', u'climat']
[u'king', u'inquiri', u'report', u'present', u'navi']
[u'search', u'resum', u'miss']
[u'second', u'arrest', u'prostitut', u'murder']
[u'seed', u'give', u'socceroo', u'asian', u'boost']
[u'separ', u'cost', u'produc', u'abar']
[u'shame']
[u'shark', u'attack', u'surpris', u'surf', u'communiti']
[u'mine', u'take', u'safeti', u'risk']
[u'south', u'east', u'face', u'water', u'restrict']
[u'southgat', u'tell', u'boro', u'protect', u'schwarzer']
[u'stanhop', u'disput', u'coron', u'bushfir', u'find']
[u'stanhop', u'warn', u'ignor', u'bushfir', u'find']
[u'stoddart', u'buy', u'champcar']
[u'student', u'second', u'chanc', u'place']
[u'studi', u'clear', u'rmit', u'build', u'cancer', u'cluster']
[u'tara', u'shire', u'consid', u'extend', u'free', u'swim', u'scheme']
[u'log', u'oper', u'breach', u'court', u'rule']
[u'town', u'consid', u'hold', u'quiet', u'mardi', u'gras']
[u'taxi', u'director', u'underlin', u'import', u'region']
[u'teen', u'accus', u'murder', u'grant', u'bail']
[u'threat', u'close', u'kokoda', u'track', u'disappoint']
[u'tiger', u'crush', u'inning']
[u'timber', u'firm', u'advanc', u'esper', u'port', u'load', u'plan']
[u'riverina', u'student', u'subject']
[u'seeker', u'eas', u'canberra', u'skill', u'shortag']
[u'agre', u'share', u'nuclear', u'technolog', u'india']
[u'vaccin', u'block', u'transmiss', u'malaria', u'research']
[u'vandal', u'target', u'tahmoor', u'landscap']
[u'vandal', u'shannon', u'creek', u'construct', u'site']
[u'vaughan', u'fail', u'tip', u'return']
[u'vet', u'urg', u'livestock', u'check', u'bushfir', u'region']
[u'lobbi', u'lose', u'wheat', u'export', u'power']
[u'fire', u'close', u'resort']
[u'govt', u'remov', u'poki', u'problem', u'area']
[u'viduka', u'score', u'boro']
[u'vocat', u'award', u'underlin', u'student', u'commit']
[u'crew', u'access', u'firefight', u'technolog']
[u'wall', u'street', u'close', u'lower', u'record', u'peak']
[u'wangman', u'elect', u'wodonga', u'mayor']
[u'warn', u'mileston', u'expect', u'pull', u'crowd']
[u'warrior', u'command', u'tiger']
[u'warrior', u'control', u'hobart']
[u'watson', u'vow', u'continu', u'bowl']
[u'welfar', u'agenc', u'struggl', u'meet', u'xmas', u'hamper', u'demand']
[u'young', u'council', u'hop', u'biofuel', u'petit', u'go', u'nation']
[u'help', u'fight']
[u'kill', u'indonesian', u'concert', u'stamped']
[u'charg', u'biloela', u'area', u'drug', u'raid']
[u'shoalhaven', u'nurs', u'school']
[u'appoint', u'editori', u'polici', u'chief']
[u'absenc', u'council', u'fuel', u'willowra', u'feud', u'mediat']
[u'coron', u'call', u'independ']
[u'govt', u'urg', u'quick', u'nurs', u'home']
[u'qaeda', u'deputi', u'say', u'palestinian', u'elect', u'futil']
[u'ambul', u'union', u'join', u'independ']
[u'architect', u'choos', u'design', u'entertain', u'centr']
[u'australia', u'risk', u'lose', u'local', u'industri']
[u'author', u'probe', u'julia', u'creek', u'hous', u'blaze']
[u'avoid', u'payout']
[u'dodg', u'payout']
[u'payment', u'saddam', u'regim', u'bribe']
[u'baghdad', u'suicid', u'bomb', u'kill']
[u'beatti', u'apologis', u'water', u'pipelin', u'blunder']
[u'bega', u'access', u'centr', u'offer', u'diploma', u'educ']
[u'award', u'contract', u'build', u'friend']
[u'bombala', u'council', u'consid', u'develop', u'wish', u'list']
[u'brack', u'say', u'commonwealth', u'delay', u'water']
[u'brothel', u'owner', u'final', u'show', u'door']
[u'bush', u'plan', u'increas', u'size', u'militari']
[u'bushrang', u'cruis', u'easi']
[u'bushrang', u'cruis', u'victori']
[u'businessman', u'wife', u'retrain', u'assest', u'sale']
[u'caesarian', u'birth', u'rise', u'despit', u'risk']
[u'investig', u'world', u'visa', u'debacl']
[u'cattl', u'scheme', u'issu', u'resolv', u'nlis']
[u'park', u'plan', u'get', u'mix', u'reaction']
[u'tell', u'control', u'centr', u'june']
[u'chad', u'clash', u'leav', u'dozen', u'dead']
[u'charlton', u'suffer', u'shock', u'leagu', u'loss']
[u'child', u'prostitut', u'reach', u'alarm', u'level']
[u'children', u'injur', u'sydney', u'accid']
[u'christma', u'cake', u'scare', u'isol', u'incid']
[u'claim', u'skeleton', u'polic', u'roster', u'deni']
[u'closer']
[u'closer']
[u'closer']
[u'club', u'taxi', u'voucher', u'scheme']
[u'compani', u'order', u'reveal', u'drug', u'effect']
[u'concern', u'rais', u'satellit', u'town']
[u'costello', u'back', u'rule']
[u'costello', u'cut', u'growth', u'forecast']
[u'costello', u'budget']
[u'council', u'push', u'batteri', u'point', u'walkway', u'studi']
[u'council', u'restrict', u'dump', u'oper', u'hour']
[u'council', u'tri', u'curb', u'water', u'wastag', u'work', u'sit']
[u'coup', u'leader', u'speight', u'move', u'fiji', u'mainland']
[u'court', u'dismiss', u'extradit', u'challeng']
[u'court', u'halt', u'log', u'compani', u'oper']
[u'cronulla', u'teen', u'guilti', u'riot']
[u'distribut', u'xmas', u'cheer', u'drought', u'stricken']
[u'dad', u'armi', u'wont', u'merv']
[u'death', u'prompt', u'polic', u'boost', u'coast', u'patrol']
[u'decis', u'hand', u'beatti', u'tell', u'palm']
[u'deficit', u'improv', u'budget']
[u'democrat', u'demand', u'hick', u'receiv', u'medic', u'assess']
[u'discoveri', u'crew', u'begin', u'trek', u'home']
[u'doctor', u'lose', u'incent', u'work', u'rural', u'area']
[u'driver', u'warn', u'holiday', u'road', u'crackdown']
[u'drought', u'blame', u'lucern', u'crop', u'failur']
[u'drought', u'slow', u'econom', u'growth']
[u'drought', u'take', u'toll', u'bega', u'road']
[u'east', u'coast', u'jump', u'contain', u'line']
[u'biter', u'get', u'suspend', u'jail', u'sentenc']
[u'hope', u'log', u'decis']
[u'farm', u'group', u'predict', u'govt', u'oppos', u'retain']
[u'govt', u'back', u'west', u'seawe', u'scheme']
[u'ferri', u'schedul', u'mechan', u'problem']
[u'crew', u'brace', u'worsen', u'weather']
[u'near', u'properti']
[u'threaten', u'town']
[u'fletcher', u'accept', u'ash', u'blame', u'willi']
[u'forestri', u'tasmania', u'brown', u'court', u'cost']
[u'forrest', u'stay', u'feder', u'elect']
[u'free', u'green', u'wast', u'tip', u'servic', u'extend', u'east']
[u'fuel', u'theft', u'caus', u'concern']
[u'gale', u'warn', u'sydney', u'hobart', u'fleet']
[u'glori', u'seek', u'bounc', u'home', u'game']
[u'ahead', u'give', u'insur', u'compani', u'merger']
[u'gold', u'coast', u'polic', u'readi', u'christma', u'road', u'safeti']
[u'goobang', u'bushfir', u'affect', u'farmer', u'reach']
[u'govern', u'cut', u'fiji']
[u'govern', u'wont', u'rescu', u'maker']
[u'govt', u'confirm', u'rethink', u'goldfield', u'juvenil']
[u'govt', u'cut', u'econom', u'growth', u'forecast']
[u'govt', u'declar', u'contamin', u'water', u'site', u'safe']
[u'govt', u'dept', u'work', u'chrysali', u'hous']
[u'govt', u'move', u'stop', u'plate', u'drinker', u'get']
[u'govt', u'revamp', u'sport', u'guidelin']
[u'govt', u'urg', u'admit', u'golden', u'west', u'hotel', u'heritag']
[u'green', u'group', u'back', u'land', u'clear', u'crackdown']
[u'grocer', u'group', u'welcom', u'higher', u'retail', u'spend']
[u'har', u'race', u'comeback', u'maryborough']
[u'herbert', u'river', u'grower', u'hold', u'cane', u'smut', u'meet']
[u'hick', u'refus', u'father']
[u'hick', u'refus', u'call', u'father']
[u'holocaust', u'denier', u'releas']
[u'hope', u'film', u'boost', u'whitsunday', u'movi', u'make']
[u'hospit', u'struggl', u'posit']
[u'condit', u'elev', u'danger']
[u'iemma', u'distanc', u'chaytor']
[u'illawarra', u'school']
[u'immigr', u'dept', u'investig', u'darwin', u'trolley']
[u'independ', u'price']
[u'indian', u'athlet', u'strip', u'asian', u'game', u'medal']
[u'institut', u'health', u'welfar', u'report', u'health']
[u'investig', u'raglan', u'hous', u'blaze']
[u'jaqu', u'fail', u'bushrang', u'blue']
[u'landcorp', u'consid', u'busselton', u'foreshor', u'develop']
[u'lithgow', u'council', u'logo', u'stay']
[u'local', u'expect', u'domin', u'renmark', u'plaza', u'spend']
[u'stress']
[u'mackay', u'council', u'refus', u'stadium', u'clean']
[u'mandurah', u'resid', u'continu', u'push', u'reticul']
[u'court', u'accus', u'tri', u'eject']
[u'manufactur', u'industri', u'report', u'improv']
[u'market', u'close', u'record', u'high']
[u'industri', u'commit', u'worker', u'safeti']
[u'minist', u'vow', u'prosecut', u'respons']
[u'miss', u'get', u'second', u'chanc']
[u'mooroobool', u'resid', u'form', u'action', u'group']
[u'bore', u'open', u'ararat', u'shire']
[u'central', u'firefight', u'leav', u'battl']
[u'parl', u'food', u'creditor', u'refus']
[u'appear', u'court', u'assault', u'charg']
[u'mrdb', u'hop', u'figur', u'encourag', u'govt']
[u'mulrunji', u'inquiri', u'lawyer']
[u'multiplex', u'compens', u'investor', u'wembley']
[u'natoli', u'seek', u'support', u'investig', u'cut']
[u'netbal', u'australia', u'refus', u'world', u'champ']
[u'alpin', u'mayor', u'reflect', u'challeng']
[u'newcastl', u'news']
[u'eas', u'pressur', u'tennant', u'creek', u'hospit']
[u'chang', u'norfolk', u'govern']
[u'norfolk', u'island', u'cannabi']
[u'norfolk', u'island', u'medicin', u'cannabi']
[u'lower', u'deficit', u'cut', u'growth']
[u'move', u'stop', u'visit', u'interst', u'plater']
[u'charg', u'assault']
[u'probe', u'alleg', u'electr', u'good', u'scam']
[u'student', u'receiv', u'senior', u'certif']
[u'nurseri', u'group', u'back', u'water', u'wise', u'rebat']
[u'nurs', u'home', u'stab', u'victim', u'die']
[u'food', u'annan', u'point']
[u'tree', u'hill', u'blaze', u'blame']
[u'opposit', u'demand', u'answer', u'road', u'mainten']
[u'palestinian', u'faction', u'truce']
[u'plan', u'nurs', u'home', u'get', u'govt', u'boost']
[u'polic', u'tough', u'gang']
[u'polic', u'offic', u'accus', u'hit', u'teen', u'patrol']
[u'polic', u'bodi', u'investig', u'sydney']
[u'polic', u'continu', u'illeg', u'lobster', u'fish']
[u'polic', u'determin', u'hotel', u'heist', u'servic', u'station']
[u'polic', u'urg', u'emerg', u'beacon']
[u'polic', u'stop', u'protest', u'disturb', u'public']
[u'polic', u'warn', u'resid', u'lock', u'christma']
[u'prison', u'sentenc', u'increas', u'offic', u'assault']
[u'process', u'blood', u'oversea', u'increas']
[u'protest', u'beatti', u'resign']
[u'queanbeyan', u'compani', u'win', u'multi', u'million', u'dollar']
[u'queensland', u'prone', u'workplac', u'injuri']
[u'rail', u'group', u'highlight', u'competit', u'impact']
[u'cross', u'ask', u'donor', u'gift', u'blood']
[u'region', u'victoria', u'struggl', u'train', u'staff']
[u'research', u'land', u'link', u'rain']
[u'resid', u'offer', u'rebat', u'energi', u'effici']
[u'resid', u'alert', u'bushfir', u'near']
[u'retrial', u'jack', u'thoma']
[u'revis', u'great', u'sandi', u'marin', u'park', u'map', u'releas']
[u'rise', u'greenhous', u'emiss', u'predict']
[u'rival', u'gunmen', u'withdraw', u'gaza', u'street']
[u'robe', u'council', u'consid', u'water', u'recycl']
[u'roger', u'centuri', u'spur', u'warrior']
[u'roger', u'power', u'warrior', u'total']
[u'announc', u'lower', u'speed', u'limit']
[u'sack', u'empir', u'rubber', u'worker', u'urg', u'approach']
[u'santa', u'drop', u'remot', u'station']
[u'scientist', u'rainfal', u'veget', u'link']
[u'scott', u'headlin', u'johnni', u'walker', u'classic']
[u'second', u'suspect', u'arrest', u'murder', u'case']
[u'second', u'murder', u'suspect', u'arrest']
[u'secur', u'tight', u'tonga', u'accus', u'rioter', u'face']
[u'socceroo', u'play', u'favourit']
[u'southern', u'state', u'ponder', u'fresh', u'threat']
[u'south', u'west', u'rock', u'age', u'care', u'facil']
[u'stanhop', u'take', u'respons', u'failur']
[u'georg', u'sharehold', u'urg', u'reject', u'offshor']
[u'storm', u'clean', u'continu', u'yaraka']
[u'strain', u'sprain', u'lead', u'caus', u'workplac']
[u'sunraysia', u'record', u'christma', u'trade', u'slump']
[u'support', u'terror', u'asia', u'declin', u'downer']
[u'tatura', u'milk', u'chief', u'ask', u'patienc', u'compani']
[u'team', u'back', u'fletcher', u'collingwood']
[u'teen', u'bodi', u'north', u'camp', u'site']
[u'thailand', u'revers', u'regulatori', u'control', u'stock']
[u'thai', u'market', u'rebound', u'plung']
[u'theatr', u'propos', u'broadwat', u'park']
[u'diabet', u'time', u'bomb']
[u'iraq']
[u'thoma', u'open']
[u'thoma', u'face', u'retrial', u'terror', u'charg']
[u'kill', u'road']
[u'peopl', u'attack', u'pitbul']
[u'titan', u'confid', u'resolv', u'traffic', u'issu']
[u'toowoomba', u'player', u'skill', u'burleigh']
[u'qaeda', u'member', u'seiz', u'iraq']
[u'tast', u'christma', u'cake', u'contamin', u'scare']
[u'total', u'tasmania']
[u'tourism', u'industri', u'warn', u'uniform', u'school']
[u'trader', u'look', u'forward', u'strong', u'christma', u'sale']
[u'trek', u'team', u'target', u'reach', u'antarct', u'peak']
[u'truck', u'hit', u'cyclist', u'near', u'burni']
[u'trucki', u'fin', u'weekend', u'traffic', u'blitz']
[u'tumbarumba', u'council', u'consid', u'water']
[u'turf', u'grass', u'produc', u'bite', u'dust']
[u'head', u'reptil', u'fossil']
[u'palestinian', u'kill', u'faction', u'fight']
[u'teen', u'road', u'crash', u'near', u'quairad']
[u'uncertainti', u'remain', u'break', u'hill', u'council', u'futur']
[u'fund', u'review', u'benefit', u'physio', u'cours']
[u'union', u'say', u'job', u'public', u'servic']
[u'uralla', u'council', u'warn', u'watch', u'general', u'cash']
[u'cut', u'fiji']
[u'north', u'korea', u'meet', u'nation', u'talk']
[u'valencia', u'reviv', u'gather', u'pace']
[u'vinni', u'volunt', u'overload', u'donat']
[u'visit', u'restrict', u'risdon', u'jail', u'inappropri']
[u'nation', u'push', u'motorbik', u'safeti', u'awar']
[u'warn', u'mcgrath', u'retir', u'report']
[u'warrior', u'roger']
[u'water', u'corp', u'struggl', u'high', u'demand']
[u'weir', u'shop', u'water', u'suppli']
[u'wesfarm', u'get', u'ahead', u'compani']
[u'wheat', u'farmer', u'meet', u'ahead', u'decis']
[u'william', u'stay', u'port']
[u'woman', u'arrest', u'shoddi', u'cocain', u'complaint']
[u'workchoic', u'christma', u'rush', u'dead']
[u'xstrata', u'defend', u'environment', u'perform']
[u'robe', u'marina', u'board', u'member', u'quit']
[u'protest', u'mulrunji', u'decis', u'cairn']
[u'brisban', u'shutdown']
[u'brisban', u'staff', u'offer', u'counsel', u'cancer', u'test']
[u'chief', u'defend', u'time', u'brisban', u'reloc']
[u'act', u'appeal', u'conven', u'meet', u'oppon']
[u'practic', u'match', u'hold', u'gambier']
[u'lifetim', u'player']
[u'astronaut', u'scan', u'space', u'shuttl', u'damag']
[u'astronom', u'review', u'black', u'hole', u'theori']
[u'author', u'doubt', u'miss', u'radioact', u'substanc']
[u'open']
[u'relationship', u'sour']
[u'bald', u'hill', u'wind', u'farm', u'get', u'green', u'light']
[u'bashir', u'clear', u'bali', u'bomb']
[u'benaud', u'warn']
[u'bigger', u'desal', u'unit', u'plan', u'port', u'kembla']
[u'bionic', u'technolog', u'move', u'futur']
[u'breast', u'cancer', u'scare', u'forc', u'reloc']
[u'bullet', u'slay', u'dragon', u'hawk']
[u'bush', u'conced', u'win', u'iraq']
[u'busselton', u'hold', u'referendum', u'hospit', u'locat']
[u'cairn', u'shop', u'assist', u'assault', u'robberi']
[u'wit', u'refuge', u'bash']
[u'canberra', u'school', u'perman', u'shut', u'door']
[u'cancer', u'scare', u'forc', u'reloc', u'bris', u'studio']
[u'cannavaro', u'falter', u'real', u'defeat']
[u'case', u'drop', u'harri', u'scarf', u'exec']
[u'centrelink', u'probe', u'uncov', u'lockyer', u'valley']
[u'champion', u'jockey', u'breasley', u'die', u'age']
[u'charg', u'recommend', u'attorney', u'general']
[u'chelsea', u'spur', u'leagu', u'semi', u'final']
[u'christma', u'good', u'cheer']
[u'christma', u'theft', u'prompt', u'polic', u'warn']
[u'closer']
[u'closer']
[u'coff', u'council', u'want', u'govt', u'fund', u'fuel']
[u'communiti', u'divid', u'bald', u'hill', u'wind', u'farm']
[u'cooler', u'condit', u'reduc', u'threat']
[u'council', u'condit', u'approv', u'mudge', u'shop']
[u'council', u'overturn', u'plan', u'bathurst', u'saleyard']
[u'council', u'undecid', u'bluff', u'total', u'water']
[u'court', u'hear', u'alleg', u'rapist', u'imperson', u'policeman']
[u'court', u'rule', u'wont', u'face', u'charg']
[u'cowra', u'abattoir', u'reopen']
[u'crew', u'contain']
[u'cricket', u'poorer', u'warn', u'hadle']
[u'desalin', u'simpl', u'solut']
[u'dfat', u'elev', u'caribbean', u'travel', u'warn']
[u'dfat', u'warn', u'indonesian', u'terror', u'threat']
[u'diabet', u'sydney', u'hobart']
[u'doctor', u'expect', u'bucket', u'water', u'relat']
[u'doctor', u'group', u'highlight', u'loom', u'crisi']
[u'dope', u'report', u'urg', u'weightlift', u'clean']
[u'doubt', u'rais', u'bore', u'plan']
[u'jone', u'peak', u'finish', u'lower']
[u'urg', u'meet', u'mulrunji', u'famili']
[u'wont', u'seek', u'review', u'death', u'custodi', u'decis']
[u'driver', u'arrest', u'smash', u'shop']
[u'drought', u'prompt', u'rethink']
[u'drought', u'task', u'forc', u'like', u'help', u'winemak']
[u'drought', u'boost', u'christma', u'food', u'price', u'hunter']
[u'forc', u'cancel', u'duck', u'hunt', u'season']
[u'economist', u'probe', u'cane', u'smut', u'impact']
[u'ellison', u'stand', u'firm', u'moti', u'extradit', u'request']
[u'england', u'appoint', u'ashton', u'head', u'coach']
[u'accus', u'influenc', u'bribe', u'report']
[u'esper', u'polic', u'readi', u'christma', u'crackdown']
[u'etsa', u'doubl', u'compens', u'payment', u'hour', u'power']
[u'airlin', u'emiss', u'scheme']
[u'lawyer', u'face', u'probe', u'tobacco', u'case']
[u'priest', u'get', u'child', u'convict', u'quash']
[u'famili', u'friend', u'farewel', u'firefight']
[u'farmer', u'consid', u'slaughter', u'stock']
[u'farm', u'group', u'reject', u'plan', u'anim', u'welfar', u'chang']
[u'favour', u'sit', u'name', u'ballarat', u'saleyard']
[u'releas', u'secret', u'john', u'lennon', u'file']
[u'fiji', u'attempt', u'tourist', u'discount']
[u'fire', u'see', u'barrier', u'kosciuszko', u'tourism']
[u'forest', u'industri', u'welcom', u'continu', u'break']
[u'forestri', u'tasmania', u'honour', u'sawmil', u'contract']
[u'forestri', u'break', u'terribl', u'unfair']
[u'forum', u'focus', u'save', u'darl', u'river']
[u'foster', u'hous', u'arrest', u'report']
[u'getti', u'museum', u'reject', u'italian', u'demand', u'statu']
[u'gillespi', u'yorkshir']
[u'goldfield', u'esper', u'project', u'share', u'govt', u'fund']
[u'govern', u'suspend', u'fiji']
[u'govt', u'crack', u'south', u'coast', u'wrecker']
[u'govt', u'deni', u'dementia', u'patient', u'pose', u'safeti', u'risk']
[u'govt', u'launch', u'revamp', u'alic', u'hospit', u'renal', u'ward']
[u'govt', u'seek', u'develop', u'idea', u'port', u'macquari']
[u'govt', u'warn', u'kimberley', u'region', u'croc', u'danger']
[u'green', u'announc', u'tamworth', u'candid']
[u'review', u'find', u'state', u'breach', u'agreement']
[u'harmison', u'quit', u'squad', u'vaughan', u'prepar']
[u'heritag', u'decis', u'green', u'light', u'supermarket', u'plan']
[u'hurst', u'clinch', u'world', u'champ', u'berth']
[u'indian', u'island', u'disappear', u'rise', u'sea']
[u'indigen', u'leadership', u'scheme', u'get', u'fund', u'boost']
[u'inter', u'record', u'straight']
[u'inverel', u'mayor', u'push', u'nation', u'park', u'royal']
[u'beatti']
[u'kalgoorli', u'boulder', u'begin', u'kerbsid', u'recycl']
[u'komodo', u'dragon', u'virgin', u'birth']
[u'lake', u'macquari', u'hop', u'belmont', u'servic']
[u'land', u'council', u'take', u'legal', u'action', u'expans']
[u'landi', u'hop', u'landaluz', u'decis', u'strengthen', u'case']
[u'larg', u'manufactur', u'unsustain']
[u'lobster', u'fisher', u'repriev', u'season']
[u'lose', u'decenc', u'ethic']
[u'mackay', u'crew', u'battl', u'grass', u'farm', u'fire']
[u'majura', u'dragway', u'plan', u'dump']
[u'abandon', u'boat', u'bite', u'spider']
[u'get', u'year', u'jail', u'manslaught']
[u'pin', u'truck', u'win', u'compens']
[u'marin', u'jedinak', u'escap', u'punish']
[u'market', u'lose', u'grind', u'record', u'high']
[u'mclean', u'coach', u'indigen', u'star']
[u'motorcyclist', u'die', u'burleigh', u'head', u'crash']
[u'motorist', u'urg', u'slow', u'king', u'highway']
[u'mourinho', u'apologis', u'johnson', u'comment']
[u'rugbi', u'club', u'court', u'toddler', u'death']
[u'multiplex', u'defend', u'sharehold', u'action', u'wembley']
[u'narrabri', u'council', u'wont', u'communiti', u'centr']
[u'england', u'polic', u'launch', u'crime', u'fight', u'team']
[u'north', u'west', u'world', u'largest']
[u'patrol', u'boat', u'deter', u'illeg', u'fisher']
[u'korea', u'nuclear', u'talk', u'extend']
[u'korea', u'solut', u'unclear']
[u'point', u'palm', u'inquiri', u'beatti']
[u'norfolk', u'back', u'chang', u'self', u'govern']
[u'offici', u'consid', u'suspens']
[u'govt', u'rspca', u'urg', u'council', u'watch', u'dog']
[u'govt', u'coal', u'truck', u'decis']
[u'govt', u'urg', u'fund', u'fish', u'revamp']
[u'cattlemen', u'push', u'case', u'drought']
[u'need', u'fund', u'age', u'care', u'senat', u'say']
[u'nuclear', u'debat', u'ignor', u'enrich', u'capabl']
[u'nurs', u'welcom', u'order', u'provid', u'staff']
[u'older', u'beach', u'goer', u'urg', u'check']
[u'opposit', u'fear', u'cattl', u'scheme', u'impact', u'rodeo']
[u'product', u'safe', u'tast']
[u'outback', u'week', u'promot', u'rural', u'tourism']
[u'out', u'shop', u'centr', u'hurt', u'research']
[u'oyster', u'grower', u'wari', u'govt', u'scheme']
[u'pacif', u'highway', u'need', u'safeti', u'work', u'nrma']
[u'pink', u'comment']
[u'polic', u'appeal', u'passeng', u'help', u'lower', u'road', u'toll']
[u'polic', u'avoid', u'injuri', u'brunswick', u'head', u'brawl']
[u'polic', u'concern', u'miss', u'pregnant', u'woman']
[u'polic', u'examin', u'fatal', u'crash', u'near', u'kyabram']
[u'polic', u'time', u'quiz', u'suspect']
[u'polic', u'investig', u'fatal', u'crash', u'near']
[u'polic', u'investig', u'suspect', u'bodi']
[u'polic', u'charg', u'hedland', u'oper']
[u'polic', u'probe', u'caus', u'fatal', u'leeton', u'hous']
[u'polic', u'probe', u'suspect', u'forster', u'murder']
[u'polic', u'recruit', u'kill', u'iraq', u'blast']
[u'polic', u'seek', u'info', u'miss']
[u'polic', u'examin', u'caus', u'bundaberg', u'hous', u'blaze']
[u'polic', u'worri', u'drink', u'drive', u'messag', u'get']
[u'price', u'rise', u'link', u'petrol', u'theft']
[u'princ', u'charl', u'win', u'diari', u'battl']
[u'protect', u'flatback', u'turtl', u'area', u'year', u'away']
[u'public', u'ask', u'help', u'catch', u'arsonist']
[u'qanta', u'order', u'extra', u'jet', u'cover', u'deliveri']
[u'govt', u'fine', u'townsvill', u'pub', u'smoke', u'law']
[u'health', u'deni', u'christma', u'cake', u'cover']
[u'health', u'expect', u'legionnair']
[u'region', u'share', u'age', u'care', u'fund']
[u'report', u'breast', u'cancer', u'toowong']
[u'resid', u'alert', u'blaze', u'near', u'town']
[u'retail', u'group', u'urg', u'rethink', u'extend', u'shop']
[u'role', u'polic', u'perceiv', u'bias', u'polici']
[u'roma', u'age', u'care', u'centr', u'get', u'fund', u'boost']
[u'rooster', u'move', u'bondi', u'junction']
[u'rspca', u'support', u'destroy', u'pitbul']
[u'rspca', u'warn', u'alic', u'face', u'board', u'kennel']
[u'seafood', u'catch', u'drop']
[u'shaw', u'take', u'blood', u'sampl']
[u'snowi', u'hydro', u'tri', u'balanc', u'need', u'record']
[u'solomon', u'allow', u'moti', u'return', u'aust']
[u'solomon', u'clarifi', u'moti', u'offer']
[u'somali', u'islam', u'leader', u'downplay', u'dead', u'clash']
[u'somm', u'creek', u'parkland', u'concept', u'plan', u'releas']
[u'south', u'west', u'continu', u'push', u'emerg', u'chopper']
[u'struggl', u'tiger', u'slender', u'lead']
[u'court', u'rule', u'affect', u'log', u'green']
[u'govt', u'concern', u'wielangta', u'rule', u'affect']
[u'tasmanian', u'brace', u'danger']
[u'teen', u'charg', u'murder', u'bodi']
[u'tension', u'high', u'despit', u'premier', u'palm', u'visit']
[u'term', u'environment', u'impact', u'assess']
[u'tiger', u'nose']
[u'timor', u'renegad', u'hold', u'talk', u'armi', u'chief']
[u'tripl', u'murder', u'trial', u'move', u'toowoomba']
[u'tripodi', u'commiss', u'port', u'macquari', u'power']
[u'turkmenistan', u'presid', u'die', u'heart', u'attack']
[u'tweed', u'council', u'consid', u'reward', u'catch', u'tree']
[u'custodi', u'wheeli', u'bodi']
[u'isra', u'troop', u'suspend']
[u'walk', u'away', u'light', u'plane', u'crash']
[u'polic', u'give', u'time', u'question', u'murder']
[u'union', u'pursu', u'korean', u'alleg', u'lose', u'wag']
[u'action', u'unfair']
[u'agricultur', u'depart', u'ban']
[u'agricultur', u'dept', u'suspend']
[u'suspens', u'wont', u'impact', u'busi']
[u'vandal', u'strike', u'park', u'sprinkler']
[u'firefight', u'concentr', u'effort', u'near', u'buller']
[u'opposit', u'worri', u'govt', u'tri']
[u'polic', u'step', u'road', u'patrol', u'christma']
[u'resort', u'high', u'alert']
[u'resort', u'high', u'alert']
[u'govt', u'boost', u'pastoralist', u'water', u'fund']
[u'crime', u'suspect', u'fight', u'extradit']
[u'warn', u'announc', u'retir']
[u'warn', u'confirm', u'retir']
[u'warn', u'exit', u'high', u'note']
[u'warn', u'leav', u'colour', u'career']
[u'warn', u'leav', u'high', u'note']
[u'warn', u'australia']
[u'warn', u'warn']
[u'warn', u'open']
[u'warn', u'rat', u'tendulkar', u'lara', u'toughest', u'oppon']
[u'warn', u'announc', u'retir']
[u'warn', u'press', u'confer']
[u'warni', u'good']
[u'warrior', u'earli', u'wicket']
[u'winemak', u'multi', u'million', u'takeov']
[u'weather', u'bureau', u'allay', u'flood', u'fear']
[u'wheatbelt', u'road', u'death', u'wont', u'deter', u'reckless', u'driver']
[u'william', u'germani', u'hopman']
[u'wind', u'caus', u'problem', u'firefight']
[u'wind', u'fuel', u'victorian', u'bushfir']
[u'wine', u'grape', u'grower', u'urg', u'reject', u'contract', u'chang']
[u'yackandandah', u'blaze', u'destroy', u'home', u'shop']
[u'youtub', u'help', u'canadian', u'murder', u'suspect']
[u'bark', u'highway', u'upgrad', u'finish', u'year']
[u'peopl', u'farewel', u'electrocut', u'victim']
[u'reloc', u'plan']
[u'staff', u'angri', u'cancer', u'action']
[u'accus', u'prostitut', u'murder', u'appear', u'court']
[u'milan', u'striker', u'fail', u'dope', u'test']
[u'forecast', u'smaller', u'deficit']
[u'act', u'mayor', u'say', u'adamson', u'tie', u'mar', u'govt']
[u'agforc', u'pressur', u'govt', u'qanta', u'rural', u'servic']
[u'alic', u'restaur', u'target', u'second', u'time']
[u'alic', u'wait', u'noisi', u'generat', u'report']
[u'american', u'marin', u'charg', u'iraq', u'massacr']
[u'anger', u'grow', u'stick', u'palm', u'decis']
[u'ansett', u'worker', u'protest', u'outsid', u'hous']
[u'anti', u'lobbi', u'concern', u'law', u'water']
[u'applic', u'protect', u'burrup', u'rock', u'reject']
[u'armidal', u'council', u'proceed', u'paint', u'sale']
[u'atletico', u'dampen', u'barca', u'titl', u'chase']
[u'aussi', u'confid', u'secur', u'poll']
[u'australia', u'think', u'ash', u'sweep']
[u'lose', u'export', u'monopoli']
[u'strip', u'export', u'monopoli']
[u'babi', u'stab', u'death', u'sydney']
[u'bali', u'bomber', u'appeal', u'postpon']
[u'bank', u'lift', u'share', u'market']
[u'bashir', u'clear', u'bali', u'bomb', u'involv']
[u'bashir', u'clear', u'bali', u'bomb', u'involv']
[u'bashir', u'guilti', u'keelti']
[u'bashir', u'rule', u'anger', u'famili', u'bomb', u'victim']
[u'bashir', u'rule', u'outrag', u'famili', u'bomb', u'victim']
[u'bashir', u'rule', u'upset', u'victim', u'famili']
[u'bodi', u'leeton', u'hous', u'blaze', u'undergo', u'post', u'mortem']
[u'british', u'soldier', u'accus', u'spi']
[u'bundaberg', u'tourism', u'centr', u'report', u'strong', u'visitor']
[u'bushfir', u'threaten', u'high', u'countri', u'communiti']
[u'busi', u'group', u'reject', u'late', u'night', u'lockout', u'claim']
[u'victor', u'harbor', u'road', u'upgrad']
[u'caloundra', u'councillor', u'push', u'beach', u'drive']
[u'cameron', u'beat', u'bendigo', u'polic', u'station']
[u'capit', u'dous', u'flame']
[u'capsicum', u'spray', u'urg', u'come', u'forward']
[u'careflight', u'secur', u'rescu', u'role']
[u'festiv', u'receiv', u'emerg', u'payment']
[u'central', u'shire', u'growth', u'strategi', u'review']
[u'central', u'west', u'council', u'seek', u'broadband']
[u'centrebet', u'say', u'magic', u'number']
[u'charlevill', u'travel', u'worri', u'kokoda', u'track']
[u'children', u'escap', u'fatal', u'rockhampton', u'crash']
[u'chiquita', u'takeov', u'appear', u'unlik']
[u'christma', u'feast', u'futur']
[u'christma', u'prawn', u'steal']
[u'chrysali', u'hous', u'staff', u'want', u'renegoti']
[u'class', u'action', u'case', u'determin']
[u'closer']
[u'closer']
[u'commission', u'overse', u'local', u'govt', u'merger']
[u'compani', u'question', u'reject', u'wheat', u'export']
[u'coolgardi', u'boost', u'fund', u'rescu']
[u'council', u'drop', u'code', u'conduct', u'complaint']
[u'court', u'clear', u'bashir', u'bomb', u'involv']
[u'court', u'overwhelm', u'parent', u'request', u'christma']
[u'cowra', u'abattoir', u'third', u'product']
[u'crew', u'contain', u'gippsland', u'spot']
[u'crew', u'abandon', u'blaze', u'threat', u'escal']
[u'croc', u'continu', u'streak']
[u'custom', u'combat', u'illeg', u'fish', u'base', u'reef']
[u'dajka', u'win', u'right', u'race']
[u'danger', u'drive', u'case', u'adjourn']
[u'darwin', u'skate', u'park', u'plan', u'agenda']
[u'deal', u'save', u'ajax', u'staff']
[u'dont', u'worri', u'exodus', u'lille']
[u'downer', u'back', u'indonesian', u'justic']
[u'urg', u'farmer', u'relax']
[u'draft', u'plan', u'urg', u'open', u'hunter', u'mall', u'traffic']
[u'driver', u'drug', u'test', u'law', u'action', u'christma']
[u'drug', u'ring', u'lurk', u'weightlift', u'probe']
[u'earli', u'christma', u'gift', u'central', u'farmer']
[u'earli', u'grain', u'harvest', u'see', u'farmer', u'enjoy']
[u'eastern', u'high', u'alert']
[u'marin', u'charg', u'haditha', u'death']
[u'vie', u'adelaid', u'intern', u'spot']
[u'feel', u'vindic', u'anvil', u'hill']
[u'fake', u'santa', u'beard', u'pose', u'hazard']
[u'farmer', u'govt', u'say', u'tuckey']
[u'fear', u'whale', u'catch', u'rope']
[u'fierc', u'wind', u'tear', u'melbourn']
[u'fiji', u'chief', u'qaras', u'resign']
[u'fiji', u'lose', u'pacif', u'forum', u'chair']
[u'firefight', u'save', u'walhalla', u'goldfield', u'rail', u'bridg']
[u'fire', u'report', u'hold', u'lesson', u'futur', u'keelti']
[u'fire', u'investig']
[u'arrest', u'alleg', u'abalon', u'poach']
[u'flinder', u'start', u'petit', u'lucki', u'road']
[u'caus', u'christma', u'chao', u'heathrow']
[u'gate', u'meet', u'iraqi', u'offici']
[u'gigg', u'want', u'tast', u'success']
[u'gilgandra', u'launch', u'night', u'rider']
[u'goggin', u'tri', u'boost', u'tasmanian', u'golf']
[u'govt', u'approv', u'gold', u'coast', u'airport', u'master', u'plan']
[u'govt', u'end', u'awb', u'monopoli', u'rule']
[u'govt', u'flag', u'timor']
[u'govt', u'give', u'green', u'project']
[u'govt', u'shift', u'public', u'hous', u'cost', u'opposit']
[u'govt', u'scallop', u'fish', u'licenc']
[u'govt', u'urg', u'public', u'stay', u'safe', u'water']
[u'graincorp', u'receiv', u'figur', u'plummet']
[u'hailstorm', u'hit', u'armidal']
[u'heal', u'clear', u'elbow']
[u'health', u'club', u'welcom', u'council', u'decis']
[u'holiday', u'driver', u'face', u'doubl', u'demerit']
[u'holiday', u'season', u'see', u'market', u'lower']
[u'hundr', u'public', u'hous', u'opposit', u'say']
[u'hunter', u'decis', u'cancel', u'duck', u'season']
[u'independ', u'review', u'mulrunji', u'case']
[u'indigen', u'taskforc', u'need']
[u'indonesia', u'say', u'threat', u'terror', u'attack']
[u'japanes', u'scientist', u'releas', u'footag', u'giant', u'squid']
[u'jone', u'dump', u'nixon', u'get', u'surpris']
[u'judg', u'dismiss', u'fahrenheit', u'suit']
[u'kalgoorli', u'boulder', u'tourism', u'growth', u'strong', u'survey']
[u'keelti', u'bashir']
[u'king', u'island', u'sign', u'kyoto', u'protocol']
[u'labor', u'offici', u'decid', u'chaytor', u'fate']
[u'legisl', u'aim', u'toughen', u'law']
[u'lend', u'leas', u'win', u'case']
[u'level', u'restrict', u'forc', u'tamworth']
[u'lightn', u'expect', u'tough', u'time', u'boomer']
[u'arrest', u'babi', u'stab', u'death']
[u'ask', u'vasiljkov', u'hear', u'tell']
[u'charg', u'british', u'prostitut', u'murder']
[u'charg', u'prostitut', u'murder']
[u'charg', u'prostitut', u'murder']
[u'get', u'life', u'wife', u'murder']
[u'threaten', u'jump', u'shop', u'centr', u'roof']
[u'mcgauran', u'announc', u'wheat', u'export', u'decis']
[u'mcgrath', u'reject', u'retir', u'specul']
[u'media', u'forc', u'warn']
[u'melbourn', u'shower', u'light', u'postpon']
[u'melbourn', u'swelter', u'night']
[u'miner', u'invest', u'hop', u'uranium', u'polici']
[u'plantat', u'forestri', u'incent', u'stay']
[u'miss', u'weapon', u'claim', u'prompt', u'audit']
[u'buller', u'resid', u'high', u'alert']
[u'mudge', u'woman', u'get', u'drive', u'fatal']
[u'mulrunji', u'case', u'review', u'outsid']
[u'face', u'court', u'accus', u'tie', u'daughter']
[u'murray', u'darl', u'angri', u'council', u'inquiri', u'delay']
[u'nebo', u'mayor', u'push', u'mine', u'hous', u'break']
[u'neill', u'confid', u'asia', u'glori']
[u'polic', u'boat', u'patrol', u'northern', u'water']
[u'proserpin', u'hospit', u'scan', u'travel']
[u'sniffabl', u'fuel', u'roll', u'face', u'resist']
[u'north', u'east', u'power', u'suppli', u'revamp', u'complet']
[u'light', u'camera', u'work', u'figur']
[u'nrma', u'urg', u'driver', u'avoid', u'park', u'crash']
[u'govt', u'fund', u'save', u'bourk', u'preschool']
[u'govt', u'grant', u'condit', u'approv', u'sandon']
[u'korea', u'nuclear', u'talk', u'stall']
[u'chase', u'promis']
[u'offic', u'hunt', u'escap', u'prison']
[u'outback', u'famili', u'appreci', u'christma', u'donat']
[u'pitbul', u'attack', u'victim', u'want', u'tougher', u'law']
[u'polic', u'defend', u'oper', u'light', u'camera']
[u'polic', u'investig', u'babi', u'murder']
[u'polic', u'investig', u'brisban', u'assault']
[u'policeman', u'keep', u'assault']
[u'polic', u'accus', u'teen', u'bodi', u'case']
[u'polic', u'offic', u'sue', u'council', u'neglig']
[u'polic', u'prepar', u'report', u'coron', u'break']
[u'polic', u'seiz', u'cannabi', u'plant', u'near', u'launceston']
[u'polic', u'confirm', u'ident', u'forster', u'bodi']
[u'polic', u'urg', u'public', u'watch', u'school', u'holiday']
[u'polic', u'warn', u'driver', u'listen', u'safe', u'drive']
[u'polic', u'warn', u'firework', u'bring', u'penalti']
[u'polic', u'warn', u'holiday', u'doubl', u'demerit', u'penalti']
[u'price', u'watermelon', u'rise']
[u'punter', u'let', u'warney']
[u'govt', u'review', u'doomadge', u'decis']
[u'quak', u'shake', u'kalgoorli']
[u'race', u'historian', u'lament', u'loss', u'wagga', u'jockey']
[u'rain', u'bring', u'relief', u'firefight']
[u'rain', u'end', u'lankan', u'charg']
[u'rain', u'make', u'danger', u'road', u'condit']
[u'rat', u'agenc', u'rais', u'newcastl', u'council']
[u'raymond', u'ferri', u'oper', u'late', u'christma']
[u'region', u'area', u'feel', u'impact', u'fuel', u'theft']
[u'resid', u'time', u'aquif', u'appeal']
[u'retir', u'wont', u'distract', u'troop', u'warn']
[u'review', u'indonesia']
[u'tinto', u'hire', u'doctor', u'combat', u'weipa', u'shortag']
[u'rowl', u'name', u'potter', u'book']
[u'announc', u'hume', u'contractor']
[u'record', u'vari', u'rainfal']
[u'seahampton', u'crash', u'leav', u'teen', u'hospit']
[u'seven', u'sharehold', u'approv', u'asset', u'sale']
[u'singl', u'desk', u'stay', u'agforc', u'say']
[u'skydiv', u'reliv', u'horror', u'free', u'fall']
[u'south', u'east', u'hop', u'home', u'nation']
[u'southern', u'grampian', u'announc', u'emerg', u'water']
[u'south', u'west', u'polic', u'cancel', u'holiday', u'leav']
[u'state', u'emerg', u'declar', u'armidal']
[u'sunshin', u'coast', u'seafood', u'short', u'suppli']
[u'suspect', u'court', u'british', u'prostitut', u'murder']
[u'sydney', u'unit', u'hand', u'tough', u'challeng']
[u'firefight', u'hope', u'christma', u'break']
[u'killer', u'remand', u'adelaid', u'murder']
[u'teacher', u'stand', u'trial', u'indec', u'deal']
[u'teen', u'court', u'wheeli', u'bodi']
[u'telstra', u'criticis', u'fail', u'provid']
[u'thiev', u'target', u'prawn']
[u'thorium', u'nuclear', u'reactor']
[u'timber', u'firm', u'welcom', u'plantat', u'develop']
[u'trio', u'escap', u'secur', u'prison']
[u'tripl', u'crash', u'holiday', u'traffic', u'begin']
[u'tumut', u'threat']
[u'union', u'seek', u'addit', u'fund']
[u'blizzard', u'strand', u'thousand']
[u'soldier', u'iraq', u'urg', u'gate', u'send', u'troop']
[u'vaughan', u'eye', u'captainci', u'return']
[u'venus', u'doubt', u'open']
[u'deliv', u'farmer']
[u'crew', u'hop', u'cooler', u'weather']
[u'crew', u'remain', u'high', u'alert']
[u'warn', u'driver', u'holiday', u'fatigu']
[u'boati', u'undergo', u'breath', u'test']
[u'warn', u'embarrass']
[u'warrior', u'struggl', u'pursuit', u'outright', u'point']
[u'warrior', u'stumbl', u'outright']
[u'rural', u'cabbi', u'miss', u'post', u'midnight']
[u'welfar', u'group', u'warn', u'excess', u'christma']
[u'wind', u'farm', u'turbin', u'come', u'germani']
[u'woman', u'hospit', u'crash', u'near', u'allansford']
[u'woman', u'rap', u'birthday', u'parti']
[u'woman', u'rescu', u'grave', u'fall']
[u'woman', u'bodi', u'exhum', u'forens', u'test']
[u'woodsid', u'remov', u'rock', u'asap']
[u'woolworth', u'fin', u'liquor', u'deal']
[u'yachti', u'warn', u'swan', u'river', u'pollut']
[u'arrest', u'katherin', u'drunken']
[u'aborigin', u'leader', u'unhappi', u'despit', u'palm', u'death']
[u'accus', u'babi', u'murder', u'refus', u'bail']
[u'govt', u'flag', u'tighter', u'restrict', u'water']
[u'presid', u'applaud', u'review', u'mulrunji', u'decis']
[u'qaeda', u'back', u'group', u'offer', u'safe', u'iraq', u'exit']
[u'anglican', u'leader', u'slam', u'iraq']
[u'annan', u'say', u'sudan', u'accept', u'peacekeep']
[u'iraqi', u'lawsuit', u'defend']
[u'asbesto', u'complaint', u'danger', u'understand']
[u'asio', u'join', u'probe', u'defenc', u'weapon', u'secur']
[u'kill', u'haitian', u'slum', u'raid']
[u'australian', u'arrest', u'lebanon', u'alleg']
[u'australian', u'arrest', u'beirut', u'child', u'abduct']
[u'resum', u'flight', u'eas', u'heathrow']
[u'lade', u'associ', u'kill', u'afghanistan']
[u'blackout', u'power', u'northern']
[u'botham', u'ask', u'carri', u'warn', u'reveal']
[u'bullet', u'crush', u'croc', u'tiger', u'roll']
[u'bushrang', u'hold', u'redback']
[u'canada', u'sweden', u'offer', u'help', u'philippin', u'truce']
[u'child', u'suffer', u'heart', u'attack', u'sydney', u'accid']
[u'christma', u'road', u'toll', u'rise']
[u'closer']
[u'closer']
[u'dead', u'weekend', u'australian', u'road']
[u'diabet', u'link', u'alzheim', u'senior', u'studi']
[u'ethiopian', u'tank', u'battl', u'somalia']
[u'fatah', u'hama', u'member', u'clash', u'west', u'bank']
[u'fiji', u'militari', u'ruler', u'refus', u'meet', u'chief']
[u'firework', u'ban', u'christma', u'period']
[u'flintoff', u'play', u'pain']
[u'flood', u'leav', u'dead', u'miss', u'aceh']
[u'teacher', u'nation', u'languag', u'scholarship']
[u'gaza', u'gunmen', u'shoot', u'secur', u'offic', u'loyal', u'abba']
[u'glenn', u'mcgrath', u'highlight', u'fabul', u'career']
[u'govt', u'remov', u'wittenoom', u'town', u'status']
[u'regul', u'inquiri', u'spark', u'angri', u'debat']
[u'health', u'servic', u'deni', u'talk', u'union', u'stall']
[u'high', u'radioact', u'materi', u'steal', u'india']
[u'indonesia', u'accept', u'bashir', u'court', u'rule', u'amid']
[u'indonesian', u'flood', u'leav', u'miss']
[u'world', u'germani', u'kahn']
[u'kiwi', u'host', u'netbal', u'world', u'champ']
[u'labor', u'question', u'govt', u'effort', u'access', u'hambali']
[u'lawrenc', u'urg', u'protect', u'rock', u'area']
[u'lightn', u'stay', u'good']
[u'arrest', u'alleg', u'accident', u'shoot']
[u'arrest', u'alleg', u'attempt', u'facto']
[u'arrest', u'capsicum', u'spray', u'fight']
[u'charg', u'worker', u'kill']
[u'charg', u'babi', u'stab', u'murder']
[u'drown', u'margaret', u'river']
[u'refus', u'bail', u'babi', u'murder']
[u'mcgrath', u'announc', u'retir']
[u'mcgrath', u'bow', u'world']
[u'mcgrath', u'call', u'quit']
[u'mcgrath', u'hail', u'true', u'profession']
[u'meal', u'wheel', u'expens', u'elder']
[u'michael', u'jackson', u'sue', u'account', u'busi']
[u'murdoch', u'stave', u'takeov', u'threat', u'deal']
[u'nasa', u'wave', u'florida', u'shuttl', u'land']
[u'korean', u'nuclear', u'talk', u'deadlock']
[u'open', u'water', u'swim', u'test', u'competitor']
[u'opposit', u'question', u'govt', u'delay', u'defenc']
[u'overnight', u'rain', u'boost', u'melbourn', u'catchment']
[u'owner', u'want', u'upgrad', u'liddel', u'coal']
[u'store', u'owner', u'say', u'dealer', u'unscrupul']
[u'polic', u'hunt', u'gunman', u'fight', u'outsid']
[u'polic', u'hunt', u'liquor', u'scammer']
[u'polic', u'identifi', u'bodi']
[u'plate', u'driver', u'charg', u'drink', u'drive', u'bathtub']
[u'rain', u'bring', u'bushfir', u'relief']
[u'rain', u'bring', u'welcom', u'repriev', u'crew']
[u'rain', u'overnight', u'help', u'dampen', u'bushfir', u'threat']
[u'rain', u'quell', u'bushfir']
[u'redback', u'chase', u'victori']
[u'cross', u'push', u'bacteria', u'test', u'platelet']
[u'resid', u'remain', u'alert', u'despit', u'eas']
[u'road', u'fatal', u'start', u'christma', u'period']
[u'santa', u'claus', u'ralli', u'fade', u'wall', u'street']
[u'secur', u'forc', u'clear', u'beslan', u'school', u'sieg']
[u'call', u'damag', u'storm']
[u'sewag', u'diver', u'submerg', u'murki', u'world']
[u'shuttl', u'discoveri', u'land', u'safe']
[u'somalia', u'face', u'humanitarian', u'crisi', u'clash']
[u'space', u'shuttl', u'discoveri', u'land', u'safe']
[u'strong', u'quak', u'hit', u'india', u'andaman', u'island', u'region']
[u'taipan', u'hawk']
[u'tamil', u'tiger', u'deni', u'ship', u'incid', u'pirat', u'attack']
[u'teen', u'alleg', u'rap', u'onlin']
[u'time', u'line', u'iraq', u'mission', u'need', u'labor']
[u'train', u'crash', u'avert', u'stick', u'rail', u'line']
[u'troop', u'arrest', u'iraqi', u'polic', u'alleg', u'death']
[u'asbesto', u'compens', u'payout']
[u'good']
[u'unlicens', u'driver', u'charg', u'babi', u'death']
[u'envoy', u'disappoint', u'north', u'korea', u'talk']
[u'vettori', u'captain', u'dayer']
[u'firefight', u'welcom', u'calmer', u'condit']
[u'wada', u'appeal', u'akhtar']
[u'warn', u'trust', u'fail', u'deliv', u'tsunami', u'cash']
[u'wheat', u'farmer', u'face', u'uncertain', u'futur']
[u'women', u'tackl', u'fugut']
[u'wurlitz', u'place', u'nation', u'trust']
[u'abba', u'olmert', u'discuss', u'extend', u'ceas']
[u'anglican', u'leader', u'rebuk', u'middl', u'east', u'comment']
[u'armi', u'intellig', u'offic', u'assault', u'outsid', u'biki']
[u'barmi', u'armi', u'wont', u'silenc']
[u'bethleham', u'christma', u'tourism', u'suffer']
[u'bono', u'receiv', u'honorari', u'british', u'knighthood']
[u'brisban', u'ramp', u'clear', u'heavi', u'traffic']
[u'burmes', u'rebel', u'leader', u'die']
[u'bush', u'brief', u'defenc', u'secretari', u'iraq', u'trip']
[u'call', u'boost', u'soldier', u'iraq']
[u'christma', u'road', u'toll', u'hit']
[u'christma', u'road', u'toll', u'rise']
[u'closer']
[u'consum', u'warn', u'credit', u'card', u'debt', u'fraud']
[u'cooler', u'condit', u'bring', u'relief', u'fire']
[u'crew', u'bring', u'canberra', u'control']
[u'crew', u'keep', u'fire', u'control']
[u'deep', u'impact', u'storm', u'victori', u'final']
[u'egypt', u'report', u'human', u'case', u'bird']
[u'famili', u'wait', u'csiro', u'identifi', u'fish', u'discoveri']
[u'contain', u'perth', u'natur', u'reserv']
[u'footbal', u'shock', u'ronaldo', u'lose', u'weight']
[u'foster', u'famili', u'leav', u'day', u'christma']
[u'funer', u'hold', u'week', u'young', u'sydney']
[u'hoggard', u'fear', u'ash', u'scar']
[u'howard', u'urg', u'australian', u'reflect']
[u'inter', u'fight', u'equal', u'record']
[u'iran', u'defi', u'sanction', u'expand', u'enrich']
[u'isra', u'palestinian', u'leader', u'hold', u'long', u'await']
[u'israel', u'palestin', u'peac', u'talk']
[u'learner', u'permit', u'rise']
[u'surviv', u'fall', u'cliff']
[u'memori', u'plan', u'murder', u'schoolgirl']
[u'minist', u'warn', u'shonki', u'christma', u'holiday', u'deal']
[u'moder', u'earthquak', u'hit', u'indonesia', u'java', u'island']
[u'melbourn', u'hobart', u'yachti']
[u'resid', u'warn', u'care', u'road', u'waterway']
[u'pilot', u'kill', u'light', u'plane', u'crash']
[u'pay', u'tribut', u'troop']
[u'polic', u'appeal', u'help', u'miss', u'aborigin']
[u'polic', u'investig', u'brisban', u'accid']
[u'polic', u'investig', u'melbourn', u'robberi', u'charg']
[u'polic', u'releas', u'crash', u'victim']
[u'powerlin', u'clip', u'fatal', u'plane', u'crash']
[u'protea', u'reshuffl', u'bat', u'second', u'test']
[u'hospit', u'record', u'number', u'intern']
[u'queen', u'elizabeth', u'prais', u'courag', u'militari']
[u'reconstruct', u'effort', u'begin', u'bushfir']
[u'record', u'festiv', u'sale', u'retail']
[u'cross', u'appeal', u'blood', u'donat', u'holiday']
[u'robben', u'bank', u'point', u'chelsea', u'unit']
[u'rspca', u'warn', u'give', u'pet', u'christma', u'gift']
[u'safeti', u'concern', u'miss', u'girl']
[u'sanction', u'impos', u'iran']
[u'santa', u'support', u'chelsea', u'mourinho']
[u'senior', u'taliban', u'leader', u'kill', u'militari']
[u'dead', u'thousand', u'homeless', u'indonesian', u'flood']
[u'somalian', u'fight', u'spread', u'area']
[u'somali', u'islamist', u'help', u'fight']
[u'kilda', u'penguin', u'strangl', u'stab']
[u'sudan', u'recept', u'darfur', u'plan']
[u'sydney', u'hobart', u'gale', u'forecast', u'scale']
[u'tiger', u'krakouer', u'charg']
[u'charg', u'katherin', u'fight']
[u'impos', u'nuclear', u'trade', u'sanction', u'iran']
[u'impos', u'sanction', u'iran']
[u'attorney', u'confirm', u'lawsuit']
[u'want', u'sanction', u'iran']
[u'firefight', u'head', u'home', u'christma', u'threat']
[u'polic', u'search', u'miss', u'girl']
[u'warn', u'bigger', u'loss', u'cricket', u'mcgrath']
[u'warn', u'want', u'eye', u'keep', u'prize']
[u'wenger', u'dream', u'arsenal', u'titl', u'charg']
[u'weve', u'learn', u'past', u'mistak', u'hugh']
[u'woman', u'induc', u'coma', u'perth', u'assault']
[u'youth', u'stab', u'melbourn', u'skate', u'park']
[u'archbishop', u'condemn', u'howard', u'hick']
[u'aussi', u'celebr', u'white', u'christma']
[u'australian', u'reclaim', u'sunday']
[u'bird', u'claim', u'egyptian', u'woman']
[u'british', u'troop', u'storm', u'iraqi', u'polic']
[u'peac', u'bethlehem']
[u'christma', u'give', u'say', u'church', u'leader']
[u'christma', u'give', u'church', u'leader']
[u'church', u'leader', u'urg', u'peac', u'christma']
[u'church', u'leader', u'urg', u'reflect', u'christma']
[u'comedian', u'charli', u'drake', u'die']
[u'cool', u'chang', u'eas', u'condit', u'tasmania']
[u'corbi', u'lawrenc', u'sentenc', u'christma']
[u'counsellor', u'expect', u'stress', u'toll']
[u'darwin', u'hospit', u'cook', u'christma', u'special', u'kid']
[u'defenc', u'dept', u'leav', u'assault', u'probe', u'polic']
[u'dont', u'worri', u'waistlin', u'today', u'australian', u'tell']
[u'ethiopia', u'strike', u'somalian', u'airport', u'report']
[u'fear', u'whale', u'tangl', u'rope']
[u'fight', u'intensifi', u'somalia']
[u'break', u'perth', u'airport']
[u'fire', u'eas', u'eastern']
[u'holiday', u'road', u'toll', u'reach']
[u'huge', u'respons', u'bushfir', u'appeal']
[u'italian', u'connect', u'russian', u'arrest']
[u'itali', u'farewel', u'right', u'campaign']
[u'jam', u'brown', u'die']
[u'lennon', u'pay', u'tribut', u'member']
[u'favour', u'quick', u'predict', u'warn']
[u'motorbik', u'crash', u'push', u'road', u'toll']
[u'farmer', u'put', u'sheep', u'adopt']
[u'overnight', u'crash', u'rais', u'holiday', u'road', u'toll']
[u'polic', u'seek', u'wit', u'alleg', u'krakouer', u'incid']
[u'pope', u'make', u'christma', u'appeal', u'children']
[u'pope', u'urg', u'world', u'banish', u'prejudic']
[u'probe', u'begin', u'fatal', u'plane', u'crash']
[u'rain', u'bring', u'cheer', u'goulburn']
[u'rain', u'eas', u'danger']
[u'rain', u'help', u'firefight']
[u'rescuer', u'search', u'thousand', u'strand', u'flood']
[u'specialist', u'rush', u'ail', u'castro', u'report']
[u'storm', u'lash', u'victoria']
[u'supermaxi', u'tip', u'domin', u'rough', u'sydney']
[u'teen', u'death', u'take', u'road', u'toll']
[u'test', u'prove', u'taliban', u'command', u'kill']
[u'toddler', u'drown', u'cattl', u'trough']
[u'tragic', u'night', u'road']
[u'begin', u'drop', u'strand', u'somali']
[u'violenc', u'continu', u'iraq']
[u'polic', u'hunt', u'arsonist']
[u'wed', u'abound', u'india']
[u'wind', u'warn', u'eastern']
[u'woman', u'sexual', u'assault', u'brisban']
[u'govt', u'urg', u'hazard', u'reduct']
[u'defend', u'mulrunji', u'review']
[u'anti', u'smoke', u'campaign', u'target', u'youth']
[u'anti', u'smoke', u'campaign', u'target', u'teen']
[u'anti', u'whale', u'activist', u'dock', u'hobart']
[u'arab', u'leagu', u'call', u'conflict', u'somalia']
[u'ash', u'highlight', u'fourth', u'test']
[u'ash', u'podcast', u'maxwel', u'run']
[u'asia', u'rememb', u'tsunami']
[u'asia', u'rememb', u'tsunami']
[u'astl', u'blast', u'wicket', u'lanka']
[u'back', u'ethiopian', u'strike', u'somalia']
[u'box', u'sale', u'spark', u'shop', u'frenzi']
[u'british', u'troop', u'close', u'basra', u'polic', u'unit']
[u'christma', u'comment']
[u'closer']
[u'closer']
[u'cloud', u'seed', u'urg', u'tasmania']
[u'concern', u'rais', u'youth', u'rehabilit']
[u'crowd', u'flock', u'box', u'sale']
[u'death', u'count', u'australian', u'road', u'rise']
[u'dozen', u'kill', u'shop', u'centr', u'blaze']
[u'line', u'centuri', u'wagga', u'rail', u'bridg']
[u'england', u'bat', u'melbourn']
[u'england', u'overcast']
[u'ethiopia', u'fire', u'retreat', u'somali', u'islamist']
[u'premier', u'daughter', u'kill', u'crash']
[u'feder', u'look', u'extend', u'domin']
[u'fiji', u'armi', u'tight', u'lip', u'abus', u'claim']
[u'flintoff', u'hit', u'belong', u'warn']
[u'flood', u'spark', u'rescu', u'oper', u'indonesia']
[u'govt', u'ignor', u'recycl', u'water', u'support']
[u'govt', u'talk', u'council', u'sydney', u'hous']
[u'headwind', u'hobart', u'battl']
[u'holiday', u'road', u'toll', u'continu', u'climb']
[u'hospit', u'chief', u'issu', u'warn', u'parent']
[u'huge', u'crowd', u'fail', u'break', u'test', u'record']
[u'india', u'send', u'pathan', u'home', u'freshen', u'world']
[u'interview', u'andrew', u'strauss']
[u'interview', u'shane', u'warn']
[u'jam', u'brown', u'die', u'age']
[u'jordan', u'propos', u'host', u'palestinian', u'talk']
[u'strike', u'rain', u'halt', u'play', u'melbourn']
[u'maxi', u'yacht', u'lead', u'sydney', u'hobart', u'race']
[u'medic', u'hard', u'hat', u'amid', u'abus']
[u'mileston', u'warn', u'claim', u'victim']
[u'south', u'coast', u'expect', u'tourism', u'boom']
[u'opposit', u'want', u'land']
[u'outback', u'comment']
[u'packer', u'unveil', u'fund', u'aussi', u'cricket']
[u'pardew', u'take', u'charlton', u'reed', u'depart']
[u'peak', u'time', u'domest', u'violenc', u'crisi', u'worker']
[u'perth', u'airport', u'probe']
[u'pope', u'benedict', u'christma', u'peac', u'appeal']
[u'pope', u'call', u'renew', u'peac', u'effort', u'middl']
[u'prison', u'escap', u'short', u'live']
[u'public', u'health', u'struggl', u'demand', u'govt']
[u'queen', u'call', u'young', u'bridg', u'generat']
[u'queen', u'deliv', u'christma', u'messag']
[u'queen', u'christma', u'messag']
[u'rain', u'delay', u'play', u'england']
[u'rain', u'forecast', u'start', u'warn', u'mcgrath', u'farewel']
[u'rescu', u'oper', u'continu', u'indonesia', u'flood']
[u'rescu', u'oper', u'indonesia']
[u'ripper', u'pay', u'tribut', u'tsunami', u'victim']
[u'road', u'toll', u'climb']
[u'road', u'toll', u'mount', u'overnight', u'crash']
[u'rough', u'condit', u'expect', u'eas', u'hobart', u'fleet']
[u'erupt', u'destruct', u'iraqi', u'polic', u'station']
[u'russia', u'pull', u'militari', u'georgian', u'capit']
[u'second', u'bird', u'death', u'hit', u'egypt']
[u'shane', u'warn', u'highlight']
[u'shopper', u'flock', u'hobart', u'sale']
[u'shopper', u'store', u'earli']
[u'korean', u'offer', u'prize', u'shun', u'prostitut']
[u'studi', u'show', u'massiv', u'ozon', u'loss', u'antarct']
[u'sydney', u'hobart', u'fleet', u'beat', u'south']
[u'tasmanian', u'enjoy', u'white', u'christma']
[u'thai', u'face', u'corrupt', u'charg']
[u'rescu', u'melbourn', u'apart']
[u'plan', u'produc', u'indigen', u'graduat']
[u'player', u'play', u'mourinho']
[u'travel', u'safe', u'pooch', u'say', u'rspca']
[u'tribut', u'maxwel']
[u'tsunami', u'drill', u'highlight', u'safeti', u'concern']
[u'turmoil', u'delay', u'coron', u'tonga', u'monarch']
[u'troop', u'death', u'iraq', u'pass', u'toll']
[u'veil', u'muslim', u'give', u'christma', u'messag']
[u'warn', u'claim', u'read', u'england', u'collaps']
[u'warn', u'destroy', u'england']
[u'warn', u'make', u'cricket', u'histori']
[u'warn', u'put', u'england']
[u'warn', u'snare', u'test', u'wicket']
[u'warn', u'steal', u'melbourn', u'farewel']
[u'warn', u'take', u'wicket']
[u'smash', u'lift', u'holiday', u'toll']
[u'wild', u'oat', u'hold', u'sydney', u'hobart', u'lead']
[u'wild', u'oat', u'lead', u'sydney', u'hobart']
[u'govt', u'want', u'migrant']
[u'anti', u'smoke', u'campaign', u'embrac', u'chemistri']
[u'appeal', u'court', u'uphold', u'saddam', u'hang']
[u'ash', u'highlight', u'fourth', u'test']
[u'ash', u'podcast']
[u'aussi', u'steadi', u'order', u'collaps']
[u'author', u'send', u'bodi', u'india']
[u'buy', u'swiss', u'insur', u'branch']
[u'babi', u'murder', u'suspect', u'miss', u'court']
[u'futur', u'heart', u'medic']
[u'blair', u'flight', u'slide', u'runway']
[u'bodi', u'murray']
[u'bodi', u'rottnest']
[u'brown', u'urg', u'probe', u'govt', u'brethren', u'link']
[u'bush', u'work', u'iraq', u'polici']
[u'canada', u'deport', u'suspect', u'russian']
[u'castro', u'suffer', u'complic', u'surgeri']
[u'children', u'condit', u'boat', u'blast']
[u'children', u'get', u'sunburnt', u'despit', u'risk']
[u'christma', u'road', u'toll', u'wors', u'year']
[u'christma', u'sale', u'lift', u'market', u'record', u'peak']
[u'civil', u'libertarian', u'applaud', u'mulrunji', u'review']
[u'closer']
[u'closer']
[u'court', u'uphold', u'death', u'sentenc', u'saddam']
[u'crew', u'burn', u'ahead', u'warmer', u'condit']
[u'dolphin', u'injur', u'woman', u'freak', u'accid']
[u'dragon', u'score', u'derbi', u'upset', u'tiger']
[u'dravid', u'aim', u'south', u'africa', u'toil']
[u'earthquak', u'trigger', u'taiwan', u'tsunami', u'alert']
[u'england', u'strike']
[u'ethiopia', u'withdraw', u'troop', u'somalia']
[u'famili', u'rememb', u'wheeli', u'murder', u'victim']
[u'fieri', u'crash', u'take', u'road', u'toll']
[u'threat', u'eas', u'tasmania']
[u'flintoff', u'strike', u'earli', u'snare', u'pont']
[u'foley', u'girlfriend', u'fin', u'drink', u'drive']
[u'presid', u'ford', u'die']
[u'french', u'polynesia', u'choos', u'presid']
[u'fuel', u'leak', u'caus', u'boat', u'firebal', u'polic']
[u'gadget', u'plant', u'talk']
[u'gerald', u'ford', u'die']
[u'ghan', u'derail', u'prompt', u'rail', u'audit']
[u'gruell', u'time']
[u'harsh', u'weather', u'hit', u'sydney', u'hobart', u'fleet']
[u'hayden', u'centuri', u'put', u'australia']
[u'hayden', u'fall', u'powerhous', u'stand']
[u'hayden', u'symond', u'punish', u'england']
[u'horror', u'crash', u'road', u'toll']
[u'hundr', u'kill', u'nigerian', u'pipelin', u'blast']
[u'hundr', u'kill', u'nigeria', u'pipelin', u'blast']
[u'injuri', u'drama', u'roar', u'stopper']
[u'interview', u'andrew', u'symond']
[u'interview', u'matthew', u'hayden']
[u'interview', u'matthew', u'hoggard']
[u'iraq', u'court', u'uphold', u'saddam', u'death', u'sentenc']
[u'israel', u'resum', u'gaza', u'strike']
[u'japan', u'slam', u'anti', u'whale', u'activist']
[u'joli', u'pitt', u'spend', u'christma', u'refuge']
[u'labor', u'urg', u'allow', u'access', u'super', u'home', u'loan']
[u'shoot', u'home', u'invas']
[u'migrant', u'number']
[u'migrant', u'number', u'reach', u'high']
[u'monkey', u'busi', u'breed', u'result', u'canberra']
[u'sanctuari', u'zone', u'rottnest']
[u'mulrunji', u'review', u'resign']
[u'repriev', u'saddam', u'hussein']
[u'crew', u'head', u'fire']
[u'open', u'wild', u'card', u'teenag']
[u'pakistan', u'put', u'barrier', u'border']
[u'palm', u'island', u'review', u'quit']
[u'pilot', u'kill', u'glider', u'crash']
[u'plane', u'make', u'emerg', u'land']
[u'polic', u'hunt', u'canberra', u'arsonist']
[u'polic', u'hunt', u'serial', u'flasher']
[u'escap']
[u'race', u'fleet', u'leav', u'melbourn']
[u'rain', u'lay', u'dust', u'woodford']
[u'rain', u'welcom', u'brisban', u'dam']
[u'receiv', u'cross', u'citi', u'tunnel']
[u'rental', u'shortag', u'worsen']
[u'rescu', u'sailor', u'safe', u'leader', u'bass', u'strait']
[u'tinto', u'secur', u'iron', u'price', u'rise']
[u'road', u'toll', u'reach']
[u'migrant', u'number', u'surg']
[u'school', u'chaplain', u'tell', u'preach']
[u'serial', u'killer', u'hospit']
[u'share', u'reach', u'record', u'high']
[u'skandia', u'wild', u'oat', u'ichi', u'lead']
[u'korean', u'firm']
[u'solomon', u'shut', u'polic', u'chief']
[u'somalian', u'troop', u'seiz', u'town']
[u'spike', u'direct', u'jam', u'brown', u'film', u'report']
[u'strauss', u'defend', u'decis']
[u'sydney', u'hobart', u'fleet', u'take', u'batter']
[u'symond', u'rise', u'occas']
[u'taiwan', u'presid', u'jail']
[u'taiwan', u'rock', u'earthquak']
[u'teen', u'charg', u'sydney', u'shoot']
[u'test', u'time']
[u'highway', u'smash']
[u'toddler', u'injur', u'noosa', u'boat', u'blast']
[u'symond', u'england']
[u'unit', u'stretch', u'lead', u'chelsea', u'stutter']
[u'warn', u'record']
[u'weather', u'strike', u'sydney', u'hobart', u'fleet']
[u'weather', u'take', u'toll', u'sydney', u'hobart']
[u'yacht', u'sink', u'sydney', u'hobart']
[u'asylum', u'seeker', u'free', u'health', u'care']
[u'adelaid', u'lord', u'mayor', u'back', u'box', u'trade']
[u'annan', u'bring', u'peopl']
[u'ash', u'highlight', u'fourth', u'test']
[u'ash', u'podcast', u'fourth', u'test']
[u'asio', u'recruit', u'drive']
[u'aussi', u'attempt', u'world', u'antarct', u'climb']
[u'australia', u'dismiss', u'lead']
[u'australia', u'win', u'fourth', u'ash', u'test']
[u'bell', u'pietersen', u'england', u'slump']
[u'bloodsh', u'tension', u'iraqi', u'street']
[u'bodi', u'elder', u'woman', u'sydney', u'rubbish']
[u'brave', u'teen', u'shrug', u'prais']
[u'look', u'interst', u'palm', u'island', u'death']
[u'closer']
[u'closer']
[u'controversi', u'rob', u'pardew', u'open']
[u'death', u'elder', u'woman', u'sicken', u'polic']
[u'downer', u'attack', u'disgrac', u'solomon', u'govt']
[u'drought', u'result', u'natur', u'caus', u'say', u'research']
[u'drought', u'natur', u'global', u'warm', u'csiro']
[u'england', u'humili', u'warn', u'farewel']
[u'england', u'reach', u'lunch', u'damag']
[u'england', u'unhappi', u'bowl', u'leak', u'explan']
[u'england', u'unhappi', u'leak', u'explan']
[u'crew', u'advantag', u'mild', u'weather']
[u'dead', u'english', u'chopper', u'crash']
[u'flintoff', u'mahmood', u'hasten', u'england', u'collaps']
[u'rescu', u'north', u'coast']
[u'glori', u'player', u'fight', u'career']
[u'glori', u'fight', u'way']
[u'govt', u'call', u'calm', u'level']
[u'govt', u'cut', u'fiji', u'ramsi', u'fund']
[u'govt', u'pledg', u'commit', u'reconcili']
[u'hayden', u'readi']
[u'hoggard', u'make', u'light', u'steal', u'plan']
[u'howard', u'rap', u'solomon', u'polic', u'chief']
[u'interview', u'andrew', u'flintoff']
[u'interview', u'ricki', u'pont']
[u'interview', u'shane', u'warn']
[u'iran', u'vote', u'speed', u'nuclear', u'program']
[u'islamist', u'flee', u'somalian', u'capit']
[u'kidnap', u'suspect', u'seiz', u'iraq']
[u'king', u'withstand', u'taipan', u'wildcat', u'fourth']
[u'krakouer', u'brother', u'face', u'court', u'charg']
[u'life', u'david', u'iredal', u'rememb']
[u'charg', u'brisban', u'school', u'fire']
[u'citi', u'say', u'youngster', u'sale']
[u'stab', u'wound', u'admit', u'hospit']
[u'market', u'continu', u'record']
[u'popular', u'pooch']
[u'investig', u'england', u'plan', u'leak']
[u'melbourn', u'hobart', u'yacht', u'battl', u'cold', u'condit']
[u'melbourn', u'water', u'suppli', u'guarante', u'despit', u'fall']
[u'minist', u'urg', u'whaler', u'protest', u'obey']
[u'molik', u'return', u'scene', u'titl']
[u'motorcycl', u'death', u'take', u'road', u'toll']
[u'mourinho', u'expect', u'stand', u'ovat', u'porto']
[u'mozart', u'piano', u'score', u'discov', u'salzburg']
[u'murder', u'elder', u'woman', u'sicken', u'polic']
[u'murder', u'woman', u'sicken', u'polic']
[u'muslim', u'pilgrimag', u'begin']
[u'nasser', u'lament', u'england', u'ridicul']
[u'home', u'sale', u'push', u'stock', u'holiday', u'trade']
[u'nigerian', u'pipelin', u'blast', u'prompt']
[u'secur', u'breach', u'bowl', u'leak']
[u'govt', u'rule', u'buy', u'sydney', u'tunnel']
[u'firefight', u'join', u'effort']
[u'miss']
[u'weather', u'save', u'england', u'whitewash']
[u'onward', u'upward', u'aust', u'market']
[u'philippin', u'find', u'bodi', u'terror', u'suspect']
[u'pilot', u'surviv', u'chopper', u'crash']
[u'mine', u'plan', u'draw', u'critic']
[u'propos', u'mine', u'regul', u'chang']
[u'rap', u'solomon', u'polic', u'chief']
[u'polic', u'commission', u'term', u'extend']
[u'polic', u'rescu', u'strand', u'kayak']
[u'polic', u'tell', u'driver', u'slow']
[u'pressur', u'mount', u'ethiopia', u'withdraw', u'troop']
[u'princ', u'draw', u'inspir', u'australian']
[u'qanta', u'bidder', u'frequent', u'flyer', u'program']
[u'rain', u'fail', u'help', u'brisban', u'catchment']
[u'research', u'centr', u'plan', u'boost', u'seafood', u'industri']
[u'research', u'disput', u'global', u'warm', u'effect']
[u'research', u'say', u'drought', u'natur', u'global', u'warm']
[u'road', u'toll', u'climb']
[u'sack', u'meat', u'worker', u'lose', u'appeal']
[u'saddam', u'letter', u'tell', u'sacrific']
[u'saddam', u'pen', u'martyr']
[u'satellit', u'search', u'earth']
[u'scud', u'eye', u'australian', u'open', u'berth']
[u'search', u'palm', u'island', u'review']
[u'sensit', u'teen', u'bushwalk', u'rememb']
[u'sewag', u'spill', u'adelaid', u'river']
[u'shogun', u'take', u'melbourn', u'launceston']
[u'somalia', u'peac', u'talk', u'stall']
[u'somali', u'govt', u'say', u'ethiopian', u'troop', u'stay']
[u'lanka', u'thrash', u'kiwi', u'dayer']
[u'summer', u'festiv', u'kick', u'hobart']
[u'symond', u'exit', u'earli']
[u'teen', u'prais', u'help', u'rescu', u'woman']
[u'thailand', u'misus', u'tsunami', u'donat']
[u'thai', u'leader', u'decid', u'return']
[u'thiev', u'rare', u'parrot']
[u'honour', u'mileston', u'communiti', u'worker']
[u'tribut', u'flow', u'ford']
[u'tribut', u'flow', u'gerald', u'ford']
[u'come', u'cropper', u'melbourn', u'launceston']
[u'militari', u'command', u'critic', u'fund', u'level']
[u'announc', u'farewel', u'plan', u'ford']
[u'condemn', u'isra', u'settlement', u'plan']
[u'prepar', u'ford', u'funer']
[u'polar', u'bear', u'endang', u'list']
[u'victim', u'burn', u'recognit', u'road', u'toll', u'rise']
[u'victim', u'associ', u'question', u'stab']
[u'lift', u'nation', u'wheat', u'pool']
[u'wild', u'oat', u'hobart', u'tonight']
[u'wild', u'oat', u'dash', u'hobart']
[u'wild', u'oat', u'line', u'honour']
[u'wild', u'oat', u'near', u'consecut', u'win']
[u'wild', u'oat', u'win', u'sydney', u'hobart']
[u'wireless', u'chess', u'cheat', u'ban']
[u'worker', u'wors', u'mine', u'plan']
[u'lose', u'attract']
[u'dead', u'flood', u'sweep', u'malaysia']
[u'kill', u'gang', u'attack', u'brazil']
[u'kill', u'train', u'collid', u'mexico']
[u'offic', u'indict', u'post', u'katrina', u'shoot']
[u'annual', u'burra', u'call']
[u'anti', u'whale', u'group', u'head', u'southern', u'ocean']
[u'armidal', u'cemeteri', u'appal', u'councillor', u'say']
[u'arthur', u'bemoan', u'time', u'lose', u'benson', u'intens', u'care']
[u'ash', u'whitewash', u'realiti', u'say', u'pont']
[u'assault', u'accus', u'grant', u'bail']
[u'australian', u'climber', u'break', u'antarct']
[u'australian', u'jail', u'thailand', u'murder', u'wife']
[u'australian', u'reject', u'clone', u'meat', u'anti', u'group']
[u'bali', u'increas', u'secur', u'year']
[u'bali', u'heroin', u'destroy', u'indonesia']
[u'beach', u'clean', u'report', u'send', u'environ', u'minist']
[u'beatti', u'offer', u'condol', u'babi', u'death']
[u'bodi', u'drown', u'student', u'fli', u'india']
[u'bodi', u'jam', u'brown', u'return', u'home']
[u'charg', u'set', u'primari', u'school']
[u'boycott', u'queri', u'england', u'resolv']
[u'britain', u'final', u'pay', u'wwii', u'debt']
[u'broadscal', u'tree', u'clear', u'deadlin', u'approach']
[u'buck', u'want', u'english', u'fight']
[u'bush', u'draw', u'plan', u'iraq']
[u'campasp', u'communiti', u'oppos', u'brothel', u'plan']
[u'camper', u'evacu', u'esper', u'blaze']
[u'canberra', u'exceed', u'water', u'consumpt', u'target']
[u'crash', u'victim', u'burn', u'recognit', u'polic']
[u'chariti', u'group', u'give', u'leas', u'life']
[u'clark', u'readi', u'mcgrath', u'void']
[u'clone', u'anim', u'declar', u'safe']
[u'closer', u'nodisplay']
[u'closer']
[u'commonwealth', u'seek', u'control', u'major', u'river']
[u'communiti', u'need', u'survey', u'launch']
[u'confus', u'report', u'saddam', u'handov']
[u'council', u'receiv', u'extra', u'infrastructur', u'fund']
[u'council', u'support', u'woodlawn', u'wast', u'site', u'expans']
[u'crew', u'continu', u'battl', u'esper', u'bushfir']
[u'damag', u'museum', u'assess', u'storm']
[u'delay', u'expect', u'sydney', u'melbourn']
[u'drink', u'drive', u'offenc', u'increas', u'mackay', u'area']
[u'duck', u'hunt', u'perman', u'say', u'rspca']
[u'timor', u'seek', u'help', u'aust', u'polic']
[u'rebel', u'win', u'governor', u'race', u'aceh']
[u'fan', u'refund', u'pom', u'fall', u'short']
[u'farmer', u'water', u'earmark', u'solv', u'bothwel', u'shortag']
[u'feder', u'push', u'river', u'control']
[u'feder', u'takeov', u'river', u'tout']
[u'firm', u'order', u'compo', u'indonesian']
[u'fisheri', u'warn', u'import', u'prawn']
[u'fletcher', u'admit', u'england', u'select', u'blunder', u'ash']
[u'flintoff', u'insist', u'england', u'avoid', u'whitewash']
[u'food', u'clone', u'anim', u'debat']
[u'food', u'regul', u'keep', u'clone', u'move']
[u'charg', u'brisban', u'home', u'assault']
[u'gerald', u'ford', u'secret', u'iraq', u'interview']
[u'glori', u'biff', u'spill', u'chang', u'room']
[u'glori', u'punch', u'spark', u'investig']
[u'govt', u'provid', u'cash', u'latrob', u'industri', u'water']
[u'govt', u'seek', u'lebanon', u'cooper', u'child', u'protect']
[u'gunnedah', u'water', u'restrict', u'introduc']
[u'hawk', u'joyc']
[u'health', u'helplin', u'urg', u'caution', u'babi', u'death', u'case']
[u'hingi', u'find', u'love', u'match', u'stepanek']
[u'hobart', u'taxi', u'driver', u'boycott', u'year']
[u'hous', u'credit', u'say']
[u'howard', u'releas', u'nuclear', u'taskforc', u'find']
[u'howard', u'shun', u'minist', u'push', u'river', u'control']
[u'howard', u'quit', u'leicest']
[u'hunter', u'wineri', u'make', u'evan', u'tate']
[u'better', u'say', u'hewitt']
[u'internet', u'access', u'disrupt', u'east', u'asia']
[u'investig', u'laverton', u'crash', u'continu']
[u'jam', u'brown', u'fan', u'line', u'respect']
[u'john', u'edward', u'presid']
[u'joyc', u'seek', u'legal', u'advic', u'sack']
[u'kalgoorli', u'polic', u'prepar', u'year']
[u'kiwi', u'work', u'play', u'oversea']
[u'knight', u'crush', u'hapless', u'roar']
[u'detain', u'pragu', u'appar', u'hijack']
[u'seek', u'sydney', u'strangul', u'case']
[u'marin', u'advisori', u'group']
[u'market', u'end', u'year', u'high']
[u'mayor', u'disappoint', u'palm', u'island', u'delay']
[u'melbourn', u'water', u'waster', u'face', u'suppli', u'restrict']
[u'injuri', u'drama', u'break', u'moor']
[u'rain', u'forecast', u'amid', u'sign', u'nino', u'fade']
[u'mother', u'slam', u'health', u'hotlin', u'die']
[u'call', u'fish', u'death', u'inquiri']
[u'museum', u'roof', u'give', u'sever', u'storm']
[u'muslim', u'faith', u'flock', u'holi', u'mount', u'hajj']
[u'naturopath', u'charg', u'offenc']
[u'leav', u'polic', u'drink', u'drive', u'crackdown']
[u'noxious', u'weed', u'spread']
[u'nuclear', u'energi', u'solut', u'slow', u'green']
[u'nuclear', u'report', u'releas']
[u'opposit', u'call', u'cut']
[u'pietersen', u'england', u'outer', u'say', u'buck']
[u'pietersen', u'perman']
[u'defend', u'hec', u'scheme']
[u'promis', u'swift', u'action', u'nuclear', u'report']
[u'releas', u'nuclear', u'taskforc', u'report']
[u'polar', u'bear', u'number', u'sound', u'alarm', u'bell']
[u'polic', u'charg', u'alleg', u'middl', u'swan', u'arsonist']
[u'polic', u'hunt', u'bird', u'thiev']
[u'polic', u'rspca', u'investig', u'anim', u'cruelti', u'case']
[u'polic', u'seek', u'sydney', u'woman', u'murder']
[u'polic', u'warn', u'year', u'revel', u'behav']
[u'pont', u'say', u'futur', u'good', u'hand']
[u'post', u'storm', u'clean', u'continu', u'noosa']
[u'potenti', u'nuclear', u'power', u'sit', u'reveal']
[u'prison', u'help', u'innisfail', u'clean', u'work']
[u'propos', u'chang', u'mine', u'regul', u'concern']
[u'public', u'submiss', u'busselton', u'jetti', u'project']
[u'puss', u'save', u'famili', u'hous']
[u'polic', u'reopen', u'case', u'miss', u'melbourn', u'woman']
[u'rainfal', u'prompt', u'dead', u'diseas', u'warn']
[u'report', u'aerial', u'firefight', u'death', u'year']
[u'rescu', u'work', u'difficult', u'flood', u'ravag', u'indonesia']
[u'road', u'toll', u'continu', u'climb']
[u'ross', u'water', u'suppli', u'unsaf', u'drink']
[u'scud', u'need', u'serv', u'perth']
[u'search', u'begin', u'danger', u'offend', u'skip']
[u'search', u'resum', u'miss']
[u'turtl', u'nest', u'season', u'begin']
[u'shell', u'premium', u'unlead', u'product', u'week', u'away']
[u'snake', u'sens', u'earthquak', u'china']
[u'snowi', u'mountain', u'communiti', u'recognis', u'volunt']
[u'somali', u'islamist', u'vow', u'surrend', u'govt', u'ethiopia']
[u'somali', u'refuge', u'boat', u'capsiz', u'yemen']
[u'somali', u'troop', u'forc', u'islam', u'rival', u'capit']
[u'somali', u'troop', u'mogadishu']
[u'state', u'reject', u'commonwealth', u'push', u'control', u'river']
[u'studi', u'headland', u'eros']
[u'sydney', u'penalis', u'contract', u'breach']
[u'tamworth', u'quiet', u'lead', u'year', u'polic']
[u'tasmanian', u'steeplechas', u'make', u'list']
[u'tasmania', u'duck', u'season', u'ahead']
[u'teenag', u'cyclist', u'set', u'sight', u'olymp']
[u'terri', u'injuri', u'prompt', u'drogba']
[u'tiwi', u'patron', u'turn']
[u'traffic', u'delay', u'expect', u'ahead', u'rock', u'festiv']
[u'truck', u'ram', u'car', u'shop', u'bundaberg']
[u'univers', u'older', u'previous', u'think', u'scientist']
[u'untreat', u'sewag', u'contamin', u'field', u'river']
[u'uranium', u'mine', u'expans', u'give', u'ahead']
[u'uranium', u'mine', u'expans', u'give', u'green', u'light']
[u'acknowledg', u'polar', u'bear', u'plight']
[u'market', u'close', u'lower']
[u'veteran', u'sailor', u'cours', u'record']
[u'govt', u'introduc', u'plan', u'measur']
[u'water', u'polic', u'increas', u'patrol']
[u'wheat', u'farmer', u'urg', u'scrutinis', u'contract']
[u'wild', u'oat', u'crew', u'savour']
[u'wild', u'oat', u'owner', u'undecid', u'trick', u'attempt']
[u'yendi', u'finish', u'fourth', u'sydney', u'hobart']
[u'young', u'drink', u'driver', u'face', u'constant', u'test']
[u'young', u'muslim', u'seek', u'leadership', u'role']
[u'zimbabwean', u'polic', u'arrest', u'thousand', u'illeg']
[u'somali', u'refuge', u'presum', u'dead', u'boat']
[u'learner', u'catch', u'polic']
[u'gore', u'water', u'buffalo', u'crash', u'cambodia', u'wed']
[u'pull', u'surf', u'unconsci']
[u'anfield', u'stone', u'neill']
[u'applebi', u'aid', u'wood', u'withdraw']
[u'arctic', u'break', u'rais', u'global', u'warm', u'fear']
[u'artist', u'philosoph', u'damag', u'work']
[u'iraqi', u'communiti', u'celebr', u'hussein', u'fate']
[u'australian', u'net', u'intern', u'scuba', u'dive', u'honour']
[u'australian', u'hail', u'clark', u'rise']
[u'australia', u'toppl', u'favourit', u'perth']
[u'australia', u'win', u'singl', u'lose', u'doubl']
[u'author', u'water', u'bothwal']
[u'beatti', u'press', u'nuclear', u'wast', u'plan']
[u'brisban', u'escap', u'burn', u'home']
[u'buffon', u'clear', u'illeg', u'gambl']
[u'bullimor', u'delay', u'latest', u'attempt']
[u'bush', u'hail', u'saddam', u'execut']
[u'bush', u'seek', u'shelter', u'tornado', u'scare']
[u'incent', u'rural', u'health', u'gap']
[u'bomb', u'kill', u'iraq']
[u'celebr', u'continu', u'saddam', u'death']
[u'cheer', u'jeer', u'somali', u'enter', u'capit']
[u'closer', u'nodisplay']
[u'closer']
[u'damag', u'assess', u'storm', u'batter', u'nation', u'museum']
[u'death', u'dictat']
[u'england', u'keen', u'ruin', u'aussi', u'retir', u'parti']
[u'environ', u'group', u'reject', u'nuclear', u'propos']
[u'alleg', u'respons', u'madrid', u'airport', u'bomb']
[u'execut', u'saddam', u'immin']
[u'author', u'urg', u'public', u'avoid', u'burn']
[u'firefight', u'battl', u'control', u'esper', u'blaze']
[u'fish', u'council', u'welcom', u'georg', u'dredg', u'plan']
[u'glori', u'sanction', u'player', u'field', u'scuffl']
[u'holiday', u'road', u'toll', u'reach']
[u'hussein', u'execut', u'hang']
[u'hussey', u'reel', u'intens', u'seri']
[u'indonesian', u'ship', u'sink', u'passeng']
[u'indonesian', u'ship', u'passeng', u'sink', u'report']
[u'inzi', u'expect', u'weaker', u'australia']
[u'iraq', u'confirm', u'saddam', u'execut']
[u'iraqi', u'sydney', u'celebr', u'saddam', u'execut']
[u'iraq', u'rebuild', u'maliki']
[u'lightn', u'spark', u'blaze', u'blackout']
[u'love', u'take', u'handicap', u'honour']
[u'love', u'win', u'handicap', u'honour']
[u'charg', u'kilburn', u'murder']
[u'dead', u'melbourn', u'street', u'brawl']
[u'flee', u'breath', u'test', u'brisban', u'river']
[u'injur', u'spear', u'accid']
[u'memori', u'servic', u'begin', u'gerald', u'ford']
[u'miss', u'girl', u'safe']
[u'molik', u'beat', u'petrova', u'perth']
[u'muslim', u'mecca']
[u'year', u'revel', u'urg', u'bing', u'drink']
[u'govt', u'defend', u'law']
[u'reject', u'overturn', u'nuclear']
[u'ntini', u'boost', u'south', u'african', u'hop']
[u'polic', u'hope', u'miss']
[u'offici', u'fast', u'track', u'dredg', u'plan', u'murray']
[u'opposit', u'promis', u'solar', u'power', u'state', u'school']
[u'opposit', u'vow', u'revamp', u'law']
[u'passeng', u'strand', u'problem', u'grind', u'jetstar']
[u'pet', u'abandon', u'post', u'christma', u'period']
[u'pilot', u'converg', u'adelaid', u'glide']
[u'welcom', u'hussein', u'execut']
[u'poki', u'allow', u'mall']
[u'poki', u'oper', u'near', u'shop', u'centr']
[u'polic', u'continu', u'hunt', u'convict', u'offend']
[u'polic', u'search', u'miss', u'girl']
[u'report', u'rais', u'alarm', u'north', u'korea', u'militari']
[u'road', u'toll', u'climb']
[u'saddam', u'execut', u'immin']
[u'saddam', u'execut', u'immin', u'lawyer']
[u'saddam', u'hang', u'iraq']
[u'saddam', u'hussein', u'execut', u'hang']
[u'saddam', u'hussein', u'execut', u'iraq']
[u'saddam', u'execut', u'hour']
[u'neill', u'name', u'year', u'honour', u'list']
[u'scud', u'molik', u'fight', u'establish']
[u'scud', u'molik', u'perth']
[u'shoaib', u'omit', u'pakistan', u'test', u'squad']
[u'smoke', u'haze', u'melbourn', u'latrob', u'valley']
[u'somali', u'enter', u'capit']
[u'south', u'korea', u'report', u'label', u'north', u'korea']
[u'speed', u'motorist', u'face', u'higher', u'fin']
[u'state', u'object', u'nuclear', u'plan']
[u'survivor', u'describ', u'panic', u'board', u'doom']
[u'taliban', u'vow', u'continu', u'fight', u'afghanistan']
[u'tanami', u'gold', u'commit', u'coyot', u'project']
[u'tasmanian', u'wit', u'year', u'weird', u'weather']
[u'terri', u'jog']
[u'life', u'death', u'saddam', u'hussein']
[u'rise', u'fall', u'dictat']
[u'thirsti', u'german', u'sell', u'beagl', u'beer']
[u'tiger', u'rebound', u'slinger', u'croc']
[u'trio', u'charg', u'home', u'invas', u'refus', u'bail']
[u'teen', u'bash', u'kalgoorli']
[u'sailor', u'submarin', u'fall']
[u'tyson', u'arrest', u'cocain', u'charg']
[u'stock', u'eas', u'year']
[u'warn', u'possibl', u'local', u'tsunami', u'gulf']
[u'vandal', u'damag', u'dozen', u'cemeteri', u'headston']
[u'vettori', u'demand', u'better', u'bowl']
[u'victoria', u'requir', u'firefight']
[u'villa', u'striker', u'sutton', u'februari']
[u'wine', u'produc', u'price', u'strong', u'dollar']
[u'woman', u'critic', u'road', u'accid']
[u'woman', u'surviv', u'crash', u'cliff']
[u'young', u'motorist', u'ban', u'drive']
[u'fear', u'drown', u'indonesian', u'ferri', u'disast']
[u'make', u'record', u'book', u'boat', u'melbourn']
[u'adelaid', u'wildcat']
[u'aussi', u'snatch', u'win', u'adelaid', u'intern']
[u'author', u'monitor', u'cyclon', u'form', u'coast']
[u'author', u'investig', u'crash', u'pursuit']
[u'autist', u'dead', u'river']
[u'weather', u'hamper', u'indon', u'ferri', u'rescu']
[u'beatti', u'reject', u'comment', u'mulrunji', u'review']
[u'turn', u'celebr']
[u'bleak', u'year', u'ahead', u'renter', u'busi', u'leader']
[u'bodi', u'indonesia', u'ferri', u'victim', u'report']
[u'bodi', u'saddam', u'fli', u'home']
[u'bullet', u'wildcat', u'grab', u'come', u'win']
[u'campsit', u'reopen', u'firefight', u'control', u'esper']
[u'canada', u'pull', u'report', u'afghanistan']
[u'cancer', u'council', u'say', u'plan', u'stay', u'smoke']
[u'castro', u'issu', u'year', u'messag', u'cuban']
[u'celebr', u'farewel', u'jam', u'brown']
[u'chines', u'voter', u'poll']
[u'church', u'sadden', u'cemeteri', u'vandal']
[u'claim', u'hotel', u'oper', u'discrimin']
[u'closer', u'nodisplay']
[u'closer']
[u'council', u'issu', u'bushfir', u'victim', u'breach', u'notic']
[u'crew', u'spend', u'year', u'battl', u'bushfir']
[u'ethiopian', u'somali', u'troop', u'chase', u'islamist']
[u'fall', u'festiv', u'clamp', u'underag', u'drink']
[u'famili', u'plan', u'saddam', u'burial']
[u'fan', u'friend', u'tribut', u'brown']
[u'fisherman', u'save', u'sink', u'boat']
[u'bomb', u'thailand', u'capit']
[u'franc', u'stun', u'hopman', u'defend', u'champ']
[u'harbour', u'stand', u'room', u'year']
[u'hingi', u'end', u'memor', u'year', u'victori']
[u'huge', u'crowd', u'expect', u'adelaid', u'year']
[u'india', u'upset', u'czech', u'republ', u'hopman']
[u'iraqi', u'communiti', u'celebr', u'saddam', u'death']
[u'iraqi', u'insurg', u'attack', u'follow', u'hussein', u'hang']
[u'iraq', u'insurg', u'attack', u'follow', u'hussein', u'hang']
[u'kiwi', u'score', u'ball', u'victori', u'lanka']
[u'kofi', u'annan', u'step']
[u'lifesav', u'issu', u'year', u'safeti', u'warn']
[u'madrid', u'airport', u'bomb', u'end', u'ceas']
[u'madrid', u'blast', u'shatter', u'peac']
[u'charg', u'fatal', u'stab']
[u'fall', u'death', u'gold', u'coast', u'high', u'rise']
[u'melbourn', u'yard', u'sustain', u'heavi', u'damag']
[u'mix', u'feel', u'saddam', u'execut']
[u'moder', u'quak', u'hit', u'japan']
[u'indonesian', u'ferri', u'survivor', u'hundr']
[u'motorcyclist', u'death', u'rais', u'road', u'toll']
[u'mourinho', u'savag', u'chelsea', u'flop']
[u'murri', u'court', u'million', u'fund', u'inject']
[u'fearr', u'snatch', u'thrill', u'melbourn', u'hobart']
[u'ntini', u'bowl', u'south', u'africa', u'victori']
[u'perth', u'glori', u'sanction', u'player', u'field', u'scuffl']
[u'perth', u'record', u'lowest', u'rainfal', u'year']
[u'back', u'call', u'interst', u'review', u'mulrunji']
[u'polic', u'investig', u'fatal', u'perth', u'stab']
[u'polic', u'investig', u'man', u'death', u'high', u'rise', u'fall']
[u'polic', u'number', u'boost', u'year', u'celebr']
[u'polic', u'search', u'miss', u'autist']
[u'polic', u'suspect', u'foul', u'play', u'man', u'death', u'amid']
[u'polic', u'target', u'drink', u'driver', u'amid', u'year']
[u'pursuit', u'death', u'bring', u'road', u'toll']
[u'rann', u'issu', u'water', u'warn']
[u'rann', u'support', u'propos', u'chang', u'appoint']
[u'road', u'closur', u'eas', u'year', u'chao']
[u'road', u'toll', u'climb']
[u'ronaldo', u'fire', u'unit', u'point', u'clear']
[u'rough', u'sea', u'halt', u'ferri', u'survivor', u'search']
[u'saddam', u'bodi', u'fli', u'home']
[u'saddam', u'buri', u'nativ', u'villag', u'tribal', u'chief']
[u'saddam', u'bodi', u'fli', u'home']
[u'saddam', u'execut', u'reviv', u'death', u'penalti', u'debat']
[u'scud', u'molik', u'signal', u'form', u'revers']
[u'search', u'resum', u'ferri', u'disast', u'survivor']
[u'smith', u'order', u'protea', u'feet', u'grind']
[u'spanish', u'suspend', u'talk', u'airport', u'attack']
[u'specul', u'mount', u'langer', u'futur']
[u'storm', u'bring', u'hail', u'flash', u'flood', u'suburb']
[u'superboat', u'crew', u'murray', u'river', u'marathon']
[u'sydney', u'polic', u'prepar', u'year', u'celebr']
[u'teen', u'remain', u'intens', u'care', u'kalgoorli']
[u'terri', u'soon', u'cole', u'season']
[u'thousand', u'undet', u'year', u'rain']
[u'train', u'servic', u'night', u'perth']
[u'tripl', u'baghdad', u'bomb', u'kill']
[u'twin', u'world', u'oldest']
[u'miss', u'blast', u'madrid', u'airport']
[u'umpir', u'benson', u'hospit']
[u'pietersen', u'shrug', u'critic']
[u'author', u'monitor', u'fresh', u'blaze', u'near', u'border']
[u'victori', u'year', u'high']
[u'woman', u'charg', u'man', u'stab', u'death']
[u'woman', u'rais', u'fraudul', u'cancer', u'claim']
[u'woman', u'stab', u'break', u'beer', u'bottl']
[u'wood']
[u'arrest', u'adelaid', u'year']
[u'govt', u'paper', u'fund', u'shortfal']
[u'deadliest', u'year', u'report', u'decad']
[u'hobart', u'driest', u'year', u'forecast', u'say']
[u'involv', u'riot', u'polic']
[u'govt', u'expect', u'fewer', u'tough', u'decis']
[u'govt', u'start', u'util']
[u'adelaid', u'shelter']
[u'aussi', u'trio', u'final', u'ash', u'test']
[u'australian', u'crowd', u'welcom', u'year']
[u'push', u'beaconsfield', u'support', u'fund']
[u'bangkok', u'bomb', u'kill']
[u'bangkok', u'bomb', u'attack']
[u'moon', u'replac', u'annan', u'chief']
[u'beatti', u'urg', u'patel', u'return']
[u'bollywood', u'danc', u'storm', u'suburbia']
[u'bomb', u'weather', u'year', u'revelri']
[u'drown', u'sydney', u'south']
[u'break', u'mayor', u'defend', u'council', u'bushfir']
[u'buck', u'deserv', u'credit', u'say', u'pont']
[u'cabinet', u'paper', u'reveal', u'hawk', u'assassin', u'plot']
[u'calm', u'return', u'sever', u'storm']
[u'canberra', u'clean', u'continu', u'storm']
[u'carer', u'student', u'disabl', u'pension', u'rise']
[u'chelsea', u'defend', u'transfer', u'window', u'swing']
[u'closer']
[u'closer', u'nodisplay']
[u'council', u'push', u'glenelg', u'multi', u'deck', u'park']
[u'ethiopian', u'troop', u'advanc', u'southern', u'somali', u'town']
[u'fall', u'festiv', u'clean', u'begin', u'marion']
[u'famili', u'surviv', u'freak', u'lightn', u'accid']
[u'fesa', u'crew', u'call', u'incid', u'overnight']
[u'fine', u'wine', u'rais', u'money', u'devil', u'research']
[u'firecrack', u'stray', u'bullet', u'injur']
[u'gillawa', u'boat', u'home', u'hobart']
[u'global', u'parti', u'ancient', u'modern']
[u'hewitt', u'hanley', u'lose', u'czech']
[u'holiday', u'road', u'toll', u'death']
[u'home', u'damag', u'heavi', u'rain', u'ballarat']
[u'hundr', u'mourn', u'saddam', u'grave']
[u'hundr', u'qlder', u'arrest', u'year']
[u'india', u'seek', u'bat', u'improv', u'decis', u'test']
[u'indonesian', u'compani', u'fund', u'volcano', u'soap', u'opera']
[u'islamist', u'abandon', u'somalian', u'port']
[u'langer', u'retir', u'test']
[u'london', u'celebr', u'year', u'kyli']
[u'luczak', u'stun', u'hrbati', u'adelaid']
[u'malaysian', u'flood', u'toll', u'rise']
[u'hospitalis', u'rock', u'face', u'fall']
[u'kill', u'fall', u'cliff']
[u'melbourn', u'face', u'harsher', u'water', u'restrict']
[u'charg', u'shot', u'fire', u'hospit']
[u'bomb', u'attack', u'possibl', u'thai', u'junta', u'chief']
[u'bomb', u'explod', u'bangkok']
[u'chief', u'swear']
[u'water', u'restrict', u'adelaid']
[u'tear', u'serial', u'killer', u'fraser', u'say', u'beatti']
[u'hospit', u'street', u'sweeper', u'accid']
[u'surf', u'life', u'saver', u'die', u'beach']
[u'impos', u'speed', u'limit', u'open', u'highway']
[u'polic', u'prais', u'crowd', u'good', u'behaviour']
[u'record', u'holiday', u'road', u'fatal']
[u'celebr', u'style']
[u'organis', u'happi', u'best', u'firework']
[u'pakistan', u'great', u'criticis', u'akhtar', u'exclus']
[u'palermo', u'director', u'get', u'mafia', u'style', u'goat', u'head']
[u'perth', u'hous', u'price', u'outstrip', u'sydney']
[u'perth', u'race', u'hire', u'secur', u'guard', u'perth']
[u'pont', u'prais', u'langer']
[u'pope', u'call', u'middl', u'east', u'peac', u'accord']
[u'govt', u'consid', u'offer', u'elect', u'surgeri']
[u'holiday', u'road', u'toll', u'reach']
[u'charg', u'girl', u'rape']
[u'pilot', u'lucki', u'escap']
[u'serial', u'killer', u'die', u'hospit']
[u'reduc', u'household', u'greenhous', u'emiss']
[u'rescu', u'effort', u'continu', u'indonesian', u'boat']
[u'revel', u'ring', u'year']
[u'romania', u'bulgaria', u'join']
[u'russia', u'belarus', u'sign', u'deal']
[u'saddam', u'taunt', u'gallow']
[u'langer', u'step', u'asid']
[u'expand', u'random', u'driver', u'drug', u'test']
[u'face', u'mexican', u'wave', u'crackdown']
[u'scientist', u'success']
[u'somali', u'announc', u'mogadishu', u'disarma', u'plan']
[u'spain', u'cruis', u'past', u'croatia', u'perth']
[u'sparkler', u'burn', u'child', u'sydney']
[u'speed', u'blame', u'fatal', u'crash']
[u'sydney', u'firework', u'world', u'focus']
[u'sydney', u'light', u'year']
[u'sydney', u'ring', u'year']
[u'sydney', u'secur', u'second', u'newcastl']
[u'sydney', u'welcom']
[u'govt', u'scrap', u'emerg', u'dental']
[u'opposit', u'question', u'detent', u'centr', u'secur']
[u'smoke', u'success', u'govt']
[u'teenag', u'kill', u'griffith', u'year']
[u'teen', u'face', u'attempt', u'murder', u'charg']
[u'terror', u'chang', u'time', u'say']
[u'thai', u'blast', u'claim', u'live', u'year', u'event', u'call']
[u'thai', u'blame', u'bomb', u'anti', u'coup', u'group']
[u'person', u'die', u'thai', u'blast']
[u'terror', u'expert', u'work', u'canberra']
[u'militari', u'death', u'iraq', u'reach', u'mark']
[u'polic', u'defend', u'handl', u'riot']
[u'border', u'burn']
[u'violenc', u'mar', u'year', u'celebr']
[u'polic', u'investig', u'suspect', u'ecstasi', u'death']
[u'polic', u'revel', u'behav']
[u'road', u'toll', u'prompt', u'polic', u'review', u'road', u'safeti']
[u'aliv', u'indonesian', u'plane', u'crash']
[u'southern', u'road']
[u'abbott', u'defend', u'cathol', u'involv', u'counsel']
[u'abbott', u'defend', u'church', u'counsel', u'contract']
[u'adelaid', u'mountain', u'reach', u'antarct', u'peak']
[u'albani', u'council', u'ponder', u'coastal', u'develop', u'polici']
[u'back', u'smoke', u'car', u'children']
[u'antarct', u'adventur', u'close', u'complet']
[u'arab', u'leader', u'urg', u'intern', u'cooper']
[u'ash', u'highlight', u'fifth', u'test']
[u'ash', u'podcast', u'fifth', u'test']
[u'pakistani', u'fear', u'drown', u'arabian']
[u'dead', u'indonesia', u'plane', u'crash']
[u'aust', u'lawyer', u'complain', u'crimin']
[u'weather', u'hamper', u'search', u'miss', u'plane']
[u'bali', u'bomber', u'hide', u'philippin']
[u'beach', u'rescu', u'prompt', u'warn', u'swimmer']
[u'crowd', u'celebr', u'year', u'wollongong']
[u'boost', u'armidal', u'christma', u'appeal']
[u'bruce', u'highway', u'upgrad', u'vital', u'pitt']
[u'bull', u'bushrang', u'warrior', u'post', u'win']
[u'bush', u'saddam']
[u'bush', u'ponder', u'iraq', u'strategi', u'amid', u'record', u'high']
[u'canberra', u'hail', u'damag', u'time', u'assess']
[u'castl', u'dark', u'sack', u'solomon']
[u'cathol', u'church', u'advis', u'abort']
[u'closer']
[u'closer', u'nodisplay']
[u'coastal', u'patrol', u'help', u'avoid', u'fuel', u'spill']
[u'comment', u'art', u'highlight']
[u'comment', u'water', u'recycl']
[u'communiti', u'fundrais', u'firefight']
[u'council', u'give', u'clean', u'time', u'bushfir']
[u'council', u'remain', u'focus', u'flinder', u'mall']
[u'cyclon', u'develop', u'coast', u'bureau', u'say']
[u'dampier', u'port', u'hedland', u'prepar', u'cyclon']
[u'delug', u'damag', u'ballarat', u'home']
[u'denver', u'bronco', u'star', u'shoot', u'dead']
[u'dragon', u'come', u'overpow', u'hawk']
[u'driver', u'charg', u'children', u'hurt']
[u'drive', u'holiday', u'tourism', u'push']
[u'elmor', u'host', u'scout', u'jambore']
[u'england', u'bat']
[u'england', u'mcgrath', u'doubl', u'strike']
[u'england', u'lose', u'open', u'earli']
[u'england', u'put', u'good', u'ash']
[u'famili', u'suspect', u'ecstasi', u'victim', u'devast']
[u'home', u'bonus', u'effect', u'state']
[u'flintoff', u'deni', u'rift', u'england', u'camp']
[u'flood', u'fail', u'close', u'gold', u'museum']
[u'thai', u'deni', u'bomb', u'involv']
[u'face', u'court', u'bash']
[u'fund', u'shortfal', u'threaten', u'youth', u'outreach', u'servic']
[u'govt', u'frustrat', u'length', u'hickss', u'detain']
[u'govt', u'chang', u'releas', u'water', u'town']
[u'govt', u'meet', u'discuss', u'replac', u'palm']
[u'govt', u'push', u'northern', u'econom', u'develop', u'zone']
[u'govt', u'seek', u'bilater', u'agreement', u'child', u'abduct']
[u'govt', u'short', u'list', u'head', u'palm', u'review']
[u'govt', u'slow', u'react', u'water', u'crisi', u'opposit', u'say']
[u'govt', u'urg', u'compo', u'irrig']
[u'great', u'southern', u'enjoy', u'troubl', u'free']
[u'groin', u'injuri', u'sidelin', u'saha']
[u'half', u'centuri', u'bell', u'england', u'rebuild']
[u'hobart', u'nurs', u'concern', u'length', u'talk']
[u'hoggard', u'rule', u'test']
[u'human', u'natur', u'adelaid']
[u'human', u'give', u'tast', u'life']
[u'indonesian', u'airlin', u'miss', u'offici']
[u'indonesian', u'rescu', u'effort', u'slow']
[u'indonesian', u'boat', u'accid', u'kill']
[u'indonesian', u'militari', u'continu', u'plane', u'search']
[u'indonesia', u'plane', u'crash', u'kill']
[u'iraq', u'govt', u'probe', u'film', u'saddam', u'hang']
[u'iraqi', u'govt', u'investig', u'saddam', u'taunt']
[u'israel', u'begin', u'promis', u'eas', u'west', u'bank', u'control']
[u'jankov', u'hantuchova', u'hurdl', u'auckland']
[u'juri', u'understand', u'verdict', u'survey']
[u'king', u'breaker']
[u'kiwi', u'beat', u'lanka', u'score', u'dayer']
[u'snare', u'strauss']
[u'livestock', u'scheme', u'cover', u'goat', u'industri']
[u'macfarlan', u'beat', u'burni', u'carniv']
[u'malaysian', u'troop', u'head', u'lebanon', u'peacekeep']
[u'accus', u'drive', u'girlfriend', u'home']
[u'accus', u'psychiatr', u'facil', u'attack']
[u'charg', u'christma']
[u'charg', u'railway', u'robberi']
[u'court', u'suffolk', u'prostitut', u'murder']
[u'mandurah', u'tough', u'illeg', u'camper']
[u'plead', u'guilti', u'hobart', u'murder']
[u'remand', u'custodi', u'suffolk', u'prostitut']
[u'mcdade', u'condemn', u'hickss', u'legal', u'treatment']
[u'mcgrath', u'rip', u'england']
[u'meatwork', u'blame', u'fail', u'network', u'talk']
[u'melbourn', u'cafe', u'crash', u'take', u'road', u'toll']
[u'melbourn', u'vandal', u'spree', u'selfish', u'high', u'crimin']
[u'militari', u'court', u'chief', u'slam', u'hickss', u'detent']
[u'militari', u'court', u'chief', u'slam', u'hickss', u'treatment']
[u'miss', u'plane', u'land', u'offici']
[u'plater', u'involv', u'fatal', u'crash', u'say']
[u'motorist', u'catch', u'break', u'speed', u'limit']
[u'museum', u'repair', u'expect', u'cost']
[u'myskina', u'doubt', u'australian', u'open']
[u'network', u'urg', u'region', u'health', u'care', u'rethink']
[u'emerg', u'chopper', u'head', u'north']
[u'stinger', u'find', u'excit', u'scientist']
[u'year', u'bash', u'death', u'shock', u'communiti']
[u'year', u'drink', u'driver', u'worri', u'polic']
[u'year', u'revel', u'caus', u'littl', u'polic', u'troubl']
[u'major', u'year', u'disrupt', u'polic']
[u'introduc', u'countri', u'road', u'speed', u'limit']
[u'lanka']
[u'opposit', u'call', u'free', u'hospit', u'park', u'stay']
[u'outcri', u'church', u'role', u'pregnanc', u'counsel']
[u'pair', u'accus', u'assault', u'polic', u'year']
[u'pair', u'face', u'court', u'hospit', u'shoot']
[u'perth', u'hail', u'success']
[u'petrova', u'give', u'russia', u'upper', u'hand']
[u'phillip', u'struggl', u'cope', u'year', u'traffic']
[u'pilgrim', u'perform', u'hajj', u'ritual', u'mecca']
[u'pilot', u'surviv', u'melbourn', u'light', u'plane', u'crash']
[u'plane', u'board', u'miss', u'indonesia']
[u'polic', u'blame', u'prosper', u'drink', u'drive', u'spike']
[u'polic', u'happi', u'byron', u'year', u'revel']
[u'polic', u'hunt', u'sport', u'club', u'bandit']
[u'polic', u'investig', u'year', u'assault']
[u'polic', u'holiday', u'drink', u'driver']
[u'polic', u'year', u'drink', u'driver']
[u'polic', u'year', u'drink', u'driver']
[u'polic', u'pleas', u'road', u'fatal', u'reduct']
[u'polic', u'prais', u'year', u'revel']
[u'polic', u'question', u'region', u'road', u'safeti', u'messag']
[u'polic', u'reflect', u'main', u'troubl', u'free', u'year']
[u'polic', u'fatal', u'crash', u'underlin', u'road', u'safeti']
[u'pratt', u'win', u'gold', u'coast']
[u'princip', u'preschool']
[u'prison', u'riot', u'news', u'saddam', u'death']
[u'govt', u'open', u'mind', u'nativ', u'titl', u'claim']
[u'govt', u'target', u'exploit', u'textil', u'worker']
[u'queen', u'beatl', u'band', u'poll']
[u'quit', u'nuclear', u'treati', u'option', u'say', u'iran']
[u'rain', u'forc', u'cancel', u'wallabadah']
[u'recoveri', u'team', u'assess', u'bushfir', u'impact', u'livestock']
[u'region', u'record', u'road', u'death']
[u'rehab', u'centr', u'prepar', u'year', u'rush']
[u'resid', u'group', u'lobbi', u'telstra', u'tower']
[u'return', u'normal', u'rainfal', u'predict']
[u'right', u'group', u'outrag', u'transfer', u'convict']
[u'road', u'death', u'trigger', u'polic', u'fund', u'boost']
[u'road', u'fatal', u'china']
[u'road', u'renam', u'pay', u'tribut', u'croc', u'hunter']
[u'rocket', u'launcher', u'yeppoon']
[u'ruddock', u'defend', u'deport', u'decis']
[u'russia', u'clinch', u'hopman']
[u'safina', u'beat', u'fellow', u'russian', u'accus', u'cheat']
[u'govt', u'rule', u'perman', u'murray', u'weir']
[u'salt', u'plan', u'creat', u'toxic', u'wast', u'fear']
[u'salt', u'damag', u'ningaloo', u'reef', u'oppon']
[u'salvo', u'lend', u'help', u'hand', u'holiday']
[u'school', u'hous', u'damag', u'fire']
[u'search', u'miss', u'call']
[u'seatbelt', u'concern', u'polic']
[u'senat', u'urg', u'govt', u'revok', u'church', u'counsel']
[u'senior', u'militari', u'lawyer', u'critic', u'hick', u'detent']
[u'serial', u'killer', u'death', u'let', u'victim']
[u'skill', u'worker', u'boost', u'plan', u'fraser', u'coast']
[u'somalia', u'appeal', u'foreign', u'peacekeep']
[u'somalia', u'stop', u'islam', u'forc', u'escap']
[u'south', u'east', u'road', u'remain', u'fatal', u'free']
[u'state', u'call', u'water', u'recycl']
[u'state', u'urg', u'compens', u'firefight', u'train']
[u'storm', u'expect', u'offer', u'bushfir', u'relief']
[u'stott', u'despoja', u'slam', u'abort', u'counsel', u'decis']
[u'suprem', u'court', u'regul', u'china', u'death', u'penalti']
[u'surf', u'life', u'save', u'club', u'canberra', u'unlik']
[u'fall', u'festiv', u'hail', u'best']
[u'hospit', u'union', u'want', u'smoke', u'broaden']
[u'thailand', u'step', u'secur', u'amid', u'bomb']
[u'thaksin', u'deni', u'bomb', u'involv']
[u'tiger', u'claim', u'civilian', u'dead', u'govt']
[u'toddler', u'die', u'coff', u'harbour', u'pool']
[u'seed', u'djokov', u'gasquet', u'cruis', u'adelaid']
[u'fear', u'kill', u'madrid', u'explos']
[u'unit', u'suffer', u'year', u'hangov']
[u'push', u'cours', u'quota', u'control']
[u'vail', u'state', u'case', u'infrastructur', u'boost']
[u'vandal', u'target', u'telstra', u'port', u'stephen', u'servic']
[u'govt', u'push', u'water', u'wast', u'applianc']
[u'viduka', u'main', u'boro']
[u'fesa', u'recruit', u'drive']
[u'historian', u'deni', u'appoint', u'polit']
[u'watersh', u'nativ', u'titl', u'deal', u'strike']
[u'want', u'infrastructur', u'fund', u'creat']
[u'weather', u'bureau', u'say', u'warmest', u'year', u'record']
[u'western', u'look', u'rain']
[u'weather', u'aid', u'firefight', u'effort']
[u'wind', u'farm', u'propon', u'urg', u'resid']
[u'wit', u'cooper', u'indigen', u'abus', u'task']
[u'woman', u'attack', u'brisban', u'bike', u'path']
[u'woman', u'charg', u'assault']
[u'woman', u'like', u'face', u'chanc', u'cancer', u'claim']
[u'wreckag', u'spot', u'indonesia', u'plane', u'search']
[u'aliv', u'indonesian', u'ferri', u'sink']
[u'cane', u'smut', u'surpris', u'canegrow']
[u'abbott', u'deni', u'influenc', u'pregnanc', u'counsel']
[u'aborigin', u'leader', u'back', u'fitzgerald', u'head', u'death']
[u'swelter']
[u'adelaid', u'traffic', u'fin', u'question', u'challeng']
[u'aid', u'isra', u'arrest', u'probe']
[u'airplan', u'crash', u'decreas']
[u'algal', u'bloom', u'like', u'caus', u'googong', u'odour']
[u'anger', u'mount', u'indonesia', u'resum', u'search']
[u'approach', u'cyclon', u'caus', u'produc']
[u'ash', u'highlight', u'fifth', u'test']
[u'ash', u'podcast', u'fifth', u'test']
[u'aussi', u'dollar', u'hit', u'year', u'high']
[u'aust', u'hardest', u'climat', u'chang', u'report']
[u'australian', u'climat', u'warm', u'report']
[u'australian', u'dollar', u'surg', u'near', u'year', u'high']
[u'australian', u'soldier', u'wound', u'timor']
[u'babi', u'hospitalis', u'meningococc']
[u'berdych', u'clinch', u'hopman', u'clash', u'czech']
[u'crowd', u'air', u'smith', u'beach', u'develop', u'concern']
[u'bligh', u'urg', u'council', u'acceler', u'water', u'save']
[u'boat', u'crash', u'swan', u'river']
[u'botham', u'want', u'ash', u'australia']
[u'bowen', u'mayor', u'back', u'push', u'industri', u'growth']
[u'british', u'research', u'hope', u'cheaper', u'drug']
[u'bush', u'pay', u'respect', u'ford']
[u'campbel', u'run', u'bass']
[u'caravan', u'park', u'assault', u'shock', u'holiday', u'maker']
[u'prepar', u'difficult', u'condit']
[u'probe', u'shed', u'blaze']
[u'cfmeu', u'want', u'subsidis', u'hous', u'worker']
[u'chelsea', u'adrift', u'henri', u'score', u'return']
[u'clark', u'rain', u'stop', u'play']
[u'closer']
[u'closer']
[u'coal', u'produc', u'beat', u'hard', u'coke', u'price', u'drop', u'wont']
[u'conman', u'foster', u'defend', u'role', u'fiji', u'rort', u'probe']
[u'conman', u'foster', u'help', u'expos', u'fiji', u'rort']
[u'contamin', u'acid', u'seep', u'plant']
[u'council', u'address', u'age', u'care', u'woe']
[u'councillor', u'label', u'icac', u'complaint', u'vendetta']
[u'council', u'push', u'tourist', u'road', u'fund']
[u'council', u'threat', u'fund', u'boost']
[u'court', u'hear', u'teen', u'king', u'fatal', u'attack']
[u'creepi', u'increas', u'heart', u'patient', u'blood', u'pressur']
[u'crew', u'fear', u'squatter', u'trap', u'factori', u'blaze']
[u'croc', u'attack', u'wind', u'love', u'bite', u'say', u'park', u'curat']
[u'crouch', u'commit', u'liverpool']
[u'cyclon', u'cross', u'coast']
[u'cyclon', u'weaken', u'brace', u'perfect', u'storm']
[u'defend', u'champ', u'crash', u'auckland', u'classic']
[u'doubt', u'remain', u'chalet', u'futur']
[u'downer', u'reject', u'fiji', u'rort', u'claim']
[u'driest', u'year', u'record', u'forb', u'dubbo']
[u'wide']
[u'educ', u'honour', u'school', u'student']
[u'emerg', u'servic', u'stand', u'major', u'storm']
[u'emot', u'farewel', u'wont', u'distract', u'buchanan']
[u'england']
[u'england', u'india', u'board', u'chief', u'race', u'head']
[u'english', u'ralli', u'test', u'toowoomba', u'build', u'sport']
[u'ethiopian', u'troop', u'stay', u'somalia', u'week']
[u'fatal', u'lift', u'nation', u'road', u'toll']
[u'report', u'detail', u'guantanamo', u'tortur']
[u'fear', u'dog', u'wipe', u'wildlif']
[u'fiji', u'coup', u'chief', u'suspend', u'judg']
[u'firefight', u'battl', u'protect', u'water', u'suppli']
[u'cigarett', u'damag', u'histor', u'jetti']
[u'track', u'project', u'expand']
[u'reward', u'kelli', u'offer']
[u'atsic', u'chair', u'appear', u'court']
[u'foster', u'expos', u'fiji', u'vote', u'rig', u'clear']
[u'fuel', u'shortag', u'wont', u'affect', u'summernat', u'festiv']
[u'deal', u'failur', u'excus', u'close', u'meatwork']
[u'girl', u'assault', u'caravan', u'park']
[u'girl', u'sexual', u'assault', u'caravan', u'park']
[u'gold', u'coast', u'enjoy', u'holiday', u'influx']
[u'goldfield', u'warn', u'prepar', u'cold', u'windi']
[u'govt', u'extend', u'cdep', u'indigen', u'communiti']
[u'govt', u'releas', u'land', u'geotherm', u'explor']
[u'govt', u'unveil', u'nuclear', u'scienc', u'graduat', u'program']
[u'grant', u'allow', u'wheelchair', u'bind', u'kid']
[u'green', u'group', u'back', u'bolster', u'govt', u'river']
[u'green', u'white', u'case', u'get', u'magistr']
[u'griffith', u'prayer', u'servic', u'hold', u'mayor', u'appeal']
[u'hewitt', u'make', u'win', u'start']
[u'hingi', u'angri', u'safina', u'cruis', u'gold', u'coast']
[u'holiday', u'road', u'toll', u'top']
[u'horsham', u'race', u'meet', u'doubt']
[u'hospit', u'critic', u'emerg', u'room', u'behaviour']
[u'hussey', u'symond', u'australia', u'edg']
[u'indonesian', u'offici', u'apologis', u'plane', u'wreckag']
[u'focus', u'decemb']
[u'inform', u'session', u'offer', u'drought', u'applic', u'help']
[u'infrastructur', u'fund', u'solut', u'say', u'chamber']
[u'interview', u'glenn', u'mcgrath']
[u'interview', u'steve', u'harmison']
[u'ipswich', u'mayor', u'demand', u'action', u'motorway', u'death']
[u'isra', u'militari', u'chief', u'refus', u'resign']
[u'isra', u'strike', u'leav', u'australian', u'cattl', u'strand']
[u'jaffer', u'centuri', u'boost', u'india']
[u'jail', u'escape', u'face', u'court', u'toowoomba']
[u'jet', u'coach', u'retract', u'okon', u'critic']
[u'jetstar', u'doubl', u'adelaid', u'flight']
[u'job', u'seek', u'blue', u'ribbon', u'worker']
[u'judg', u'set', u'patern', u'test', u'deadlin', u'anna', u'nicol']
[u'kiama', u'council', u'rais', u'water', u'drain', u'worri']
[u'kiwi', u'squad', u'australian', u'seri']
[u'lake', u'bonney', u'dam', u'plan', u'rile', u'resid']
[u'lake', u'evapor', u'plan', u'worri', u'barmera', u'resid']
[u'langer', u'hayden', u'australia', u'control']
[u'langer', u'earli', u'chase']
[u'societi', u'dismiss', u'concern']
[u'mcgrath', u'england']
[u'luczak', u'lose', u'adelaid']
[u'main', u'sydney', u'melbourn', u'rail', u'line', u'track']
[u'charg', u'workshop']
[u'die', u'timber', u'factori', u'mishap']
[u'mango', u'grower', u'urg', u'farmer', u'produc', u'qualiti']
[u'melbourn', u'murder', u'victim', u'know', u'killer', u'polic']
[u'accus', u'film', u'throw', u'spree']
[u'mexico', u'move', u'protect', u'illeg', u'immigr']
[u'west', u'plan', u'fight', u'youth', u'crime']
[u'mildura', u'host', u'countri', u'cricket', u'championship']
[u'million', u'holi', u'gang', u'river']
[u'miss', u'dubbo', u'perth']
[u'miss', u'indonesian', u'plane']
[u'miss', u'plane']
[u'firefight', u'join', u'effort']
[u'mountain', u'prepar', u'leav', u'antarctica']
[u'mount', u'back', u'econom', u'plan']
[u'multi', u'crash', u'bring', u'road', u'toll']
[u'mules', u'standard', u'releas']
[u'pineappl', u'varieti', u'doubl', u'product']
[u'substat', u'power', u'coal', u'termin']
[u'home', u'threaten', u'harrog', u'fire']
[u'rescu', u'vessel', u'busi', u'coastlin']
[u'north', u'korean', u'foreign', u'minist', u'die']
[u'north', u'west', u'brace', u'cyclon', u'isobel']
[u'nrma', u'inund', u'storm', u'damag', u'claim']
[u'govt', u'criticis', u'child', u'protect']
[u'govt', u'defend', u'child', u'protect', u'record']
[u'nyse', u'resum', u'trade', u'mourn']
[u'offici', u'apologis', u'indonesian', u'plane', u'wreckag']
[u'oprah', u'open', u'school', u'south', u'africa']
[u'orang', u'develop', u'releas', u'bail']
[u'oust', u'australian', u'polic', u'chief', u'say', u'sack', u'illeg']
[u'park', u'welcom', u'turtl', u'hatch', u'season']
[u'parti', u'boycott', u'bangladesh', u'elect']
[u'perth', u'berlin', u'wall']
[u'philippoussi', u'injuri', u'hand', u'franc', u'hopman']
[u'philippoussi', u'upbeat', u'ahead', u'surgeri']
[u'plan', u'start', u'woodford', u'folk', u'festiv']
[u'plan', u'museum', u'slave', u'labour', u'histori']
[u'poison', u'suspect', u'caus', u'esper', u'bird', u'death']
[u'polic', u'amaz', u'surviv', u'high', u'speed', u'crash']
[u'polic', u'arrest', u'youth', u'tennant', u'creek', u'pursuit']
[u'polic', u'offic', u'charg', u'offenc']
[u'polic', u'probe', u'toddler', u'death']
[u'polic', u'question', u'crash', u'link']
[u'polic', u'seiz', u'record', u'date', u'rape', u'drug', u'haul']
[u'plate', u'driver', u'fin']
[u'preschool', u'hire', u'indigen', u'worker']
[u'prison', u'escape', u'jail', u'month']
[u'privat', u'sector', u'irrig', u'scheme']
[u'probe', u'launch', u'saddam', u'execut', u'footag']
[u'prospect', u'student', u'insight']
[u'govt', u'reveal', u'cost', u'workchoic', u'litig']
[u'pile', u'rais', u'road', u'toll']
[u'rain', u'fail', u'dam']
[u'road', u'toll', u'rise', u'gold', u'coast', u'death']
[u'quit', u'victoria', u'call', u'tobacco', u'advertis']
[u'race', u'time', u'devil']
[u'rain', u'boost', u'glenmaggi', u'catchment']
[u'rain', u'help', u'boost', u'suppli']
[u'rain', u'welcom', u'need']
[u'recent', u'rainfal', u'littl', u'eas', u'drought']
[u'record', u'low', u'continu', u'river', u'murray']
[u'region', u'workplac', u'death', u'toll', u'rise']
[u'report', u'show', u'australian', u'climat', u'warm']
[u'research', u'aim', u'sustain', u'hunter', u'prawn', u'industri']
[u'resid', u'urg', u'brace', u'storm']
[u'resourc', u'bank', u'drag', u'market']
[u'rev', u'driver', u'lose', u'licenc']
[u'robinson', u'recal', u'england', u'vickeri']
[u'saddam', u'execut', u'near', u'stop']
[u'saff', u'warn', u'fall', u'local', u'product']
[u'irrig', u'hurt', u'water', u'price', u'skyrocket']
[u'scout', u'jambore', u'boost', u'local', u'economi']
[u'scud', u'bounc', u'say', u'mcname']
[u'search', u'continu', u'palm', u'review', u'head']
[u'senat', u'push', u'deleg', u'visit', u'hick']
[u'serial', u'killer', u'rehabilit']
[u'sidelin', u'mayor', u'defend', u'fridg', u'costum', u'stunt']
[u'skipper', u'fleme', u'return', u'team']
[u'spain', u'say', u'peac', u'process', u'break', u'bomb']
[u'speedster', u'catch', u'unrestrain', u'child']
[u'storm', u'bring', u'rain', u'interior']
[u'storm', u'take', u'toll', u'armidal', u'drainag']
[u'stott', u'despoja', u'hick', u'visit']
[u'student', u'face', u'waterlog', u'lesson']
[u'sydney', u'rain', u'wast', u'opposit', u'say']
[u'tanker', u'toppl', u'gore', u'highway']
[u'council', u'unsustain', u'report']
[u'record', u'driest', u'year']
[u'taunt', u'near', u'stop', u'saddam', u'execut']
[u'teenag', u'charg', u'griffith', u'murder']
[u'teen', u'charg', u'gippsland', u'fire']
[u'teen', u'charg', u'year', u'murder']
[u'teen', u'face', u'court', u'death']
[u'terri', u'chelsea', u'return', u'surgeri']
[u'simerr', u'nation', u'survey']
[u'toddler', u'die']
[u'tougher', u'water', u'ban', u'possibl', u'central']
[u'tourism', u'industri', u'happi', u'holiday', u'season']
[u'trial', u'impos', u'treatment', u'drug', u'addict']
[u'tropic', u'cyclon', u'bear', u'coast']
[u'teenag', u'charg', u'death']
[u'chief', u'put', u'darfur', u'prioriti']
[u'chief', u'set', u'sight', u'sudan']
[u'leader', u'honour', u'gerald', u'ford']
[u'govt', u'boost', u'bushfir', u'recoveri', u'fund']
[u'polic', u'believ', u'miss', u'woman', u'safe']
[u'cyclon', u'intensifi']
[u'warrego', u'water', u'auction']
[u'weather', u'bureau', u'warn', u'perfect', u'storm']
[u'woman', u'die', u'crash', u'truck', u'roll', u'hume', u'highway']
[u'woman', u'urg', u'dentist', u'help', u'wait', u'time']
[u'workplac', u'death', u'rise', u'region', u'victoria']
[u'yachti', u'face', u'difficult', u'condit', u'pittwat']
[u'horribl', u'year', u'farmer']
[u'year', u'extrem', u'weather']
[u'shape', u'world', u'warmest', u'year', u'scientist']
[u'aborigin', u'leader', u'applaud', u'mulrunji', u'review']
[u'abus', u'claim', u'bolster', u'case', u'hickss', u'releas', u'labor']
[u'alleg', u'gangland', u'target', u'surrend', u'polic']
[u'anderson', u'claim', u'hussey', u'earli']
[u'ash', u'highlight', u'fifth', u'test']
[u'ash', u'podcast', u'fifth', u'test']
[u'ash', u'stay', u'lord', u'loxton']
[u'australia', u'brink', u'ash', u'sweep']
[u'australia', u'push', u'past']
[u'austrian', u'teen', u'recal', u'kidnap']
[u'bainimarama', u'give', u'power', u'fiji', u'presid']
[u'bank', u'face', u'get', u'credit', u'card']
[u'bendigo', u'student', u'prepar', u'year', u'aust']
[u'avoid', u'accid', u'scrutini', u'union', u'claim']
[u'reject', u'union', u'second', u'death', u'probe']
[u'bird', u'protect']
[u'birney', u'cast', u'doubt', u'recycl', u'scheme']
[u'boulder', u'creek', u'spread']
[u'bourk', u'council', u'confid', u'feder', u'fund', u'pcyc']
[u'produc', u'die']
[u'bureau', u'say', u'worst', u'storm', u'come']
[u'bureau', u'warn', u'high', u'danger']
[u'burt', u'bacharach', u'concert', u'hold']
[u'byron', u'council', u'slow', u'assess', u'develop']
[u'driver', u'charg', u'assault', u'passeng']
[u'canberran', u'meet', u'daili', u'water', u'consumpt', u'target']
[u'cathol', u'abort', u'counsel', u'bias']
[u'charg', u'lay', u'collex', u'work', u'death']
[u'childcar', u'crisi', u'myth', u'labor']
[u'civil', u'libertarian', u'attack', u'bounti', u'want', u'dubbo']
[u'claim', u'polic', u'soldier', u'bangkok', u'blast']
[u'closer']
[u'closer']
[u'clear', u'tiaro', u'shire']
[u'coal', u'miner', u'better', u'inform', u'seismic', u'activ']
[u'cocain', u'fill', u'condom', u'kill', u'smuggler']
[u'coeypolli', u'plan', u'go', u'public', u'display']
[u'combin', u'storm', u'threaten', u'south']
[u'concern', u'resign', u'slow', u'pulp']
[u'conserv', u'carpent', u'save', u'mawson']
[u'council', u'highlight', u'hazard', u'attempt', u'open', u'lake']
[u'council', u'urg', u'consid', u'merger', u'wake', u'report']
[u'council', u'unhappi', u'bligh', u'water', u'save', u'comment']
[u'court', u'find', u'drink', u'boati', u'respons']
[u'death', u'elder', u'pedestrian', u'rais', u'nation', u'road']
[u'driver', u'warn', u'watch', u'huge', u'truck']
[u'drought', u'bring', u'cattl', u'sale', u'earli', u'start']
[u'drink', u'boat', u'driver', u'clear', u'partner', u'death']
[u'seek', u'wit', u'distress', u'penguin', u'attack']
[u'energi', u'retail', u'announc', u'merger']
[u'england', u'deep', u'troubl']
[u'esper', u'high', u'school', u'student', u'score', u'rank']
[u'presid', u'ford', u'buri', u'home', u'town']
[u'extra', u'cdep', u'posit', u'hard', u'say']
[u'extra', u'crew', u'call', u'restor', u'power', u'central', u'west']
[u'farm', u'chief', u'open', u'candelo']
[u'father', u'charg', u'babi', u'murder']
[u'wont', u'appeal', u'salari', u'sentenc']
[u'fell', u'strauss', u'clear', u'injuri']
[u'festiv', u'goer', u'melon', u'record', u'smash']
[u'fibr', u'textil', u'exhibit', u'tour', u'australia']
[u'fiji', u'coup', u'leader', u'reinstat', u'presid']
[u'fiji', u'presid', u'promis', u'immun', u'coup', u'leader']
[u'fire', u'prompt', u'water', u'author', u'consid', u'water']
[u'foreign', u'help', u'indonesia', u'miss', u'plane']
[u'mooney', u'die']
[u'school', u'artilleri', u'save']
[u'fund', u'boost', u'region', u'trade', u'career']
[u'govt', u'accus', u'drag', u'feet', u'nativ', u'titl']
[u'govt', u'mull', u'freez', u'cut']
[u'govt', u'offer', u'reward', u'inform', u'want', u'dubbo']
[u'govt', u'promis', u'mental', u'health', u'prevent', u'focus']
[u'govt', u'reject', u'canal', u'develop']
[u'govt', u'water', u'usag', u'unaccept', u'thwait']
[u'growth', u'hous', u'price', u'eas']
[u'growth', u'hous', u'price', u'slow']
[u'guard', u'accus', u'record', u'saddam', u'execut']
[u'guccion', u'quarter', u'final', u'earn', u'open', u'wildcard']
[u'head', u'crash', u'lift', u'road', u'toll']
[u'henin', u'hardenn', u'withdraw', u'australian', u'open']
[u'henman', u'australian', u'open']
[u'hickss', u'father', u'doubt', u'trial', u'claim']
[u'hindmarsh', u'council', u'drought', u'committe', u'oper']
[u'hingi', u'safina', u'cours', u'gold', u'coast', u'final']
[u'hospit', u'lose', u'acclaim', u'professor']
[u'hous', u'slow', u'benefit', u'canberra', u'renter']
[u'hunter', u'council', u'criticis', u'local', u'govt', u'report']
[u'hunter', u'better', u'rain']
[u'hybrid', u'owner', u'issu', u'display', u'sticker']
[u'increas', u'bacteria', u'level', u'field', u'river']
[u'indonesian', u'ferri', u'captain', u'aliv']
[u'industri', u'urg', u'offer', u'afford', u'hous']
[u'industri', u'council', u'back', u'wetlin', u'fish', u'overhaul']
[u'interview', u'jam', u'anderson']
[u'interview', u'shane', u'warn']
[u'iraq', u'delay', u'execut', u'saddam', u'aid']
[u'irrat', u'belief']
[u'israel', u'fire', u'palestinian', u'farmer', u'medic']
[u'jankov', u'auckland', u'classic', u'semi']
[u'jull', u'wont', u'contest', u'elect']
[u'kingi', u'dolphin', u'begin', u'journey', u'home']
[u'kingi', u'dolphin', u'releas']
[u'krakouer', u'brother', u'bail']
[u'labor', u'pressur', u'govt', u'hick']
[u'macdonald', u'promis', u'help', u'murray', u'valley']
[u'charg', u'drink', u'drive', u'crash']
[u'year', u'nativ', u'titl', u'backlog', u'clear']
[u'market', u'slide', u'mine', u'loss']
[u'mayor', u'say', u'shire', u'merger', u'talk', u'prematur']
[u'mayor', u'warn', u'loss', u'grind', u'water']
[u'mcgilvray', u'medal', u'present']
[u'media', u'report', u'affect', u'attitud', u'lamb']
[u'medic', u'graduat', u'start', u'work', u'cairn', u'hospit']
[u'mickel', u'address', u'banana', u'industri', u'labour', u'shortag']
[u'mine', u'compani', u'keen', u'search', u'near', u'alic']
[u'minist', u'hail', u'lucki', u'drug', u'seizur']
[u'minist', u'close', u'port', u'macquari']
[u'hop', u'eas', u'drought', u'deliv', u'high', u'sheep']
[u'rain', u'expect', u'nino', u'break']
[u'time', u'golf', u'time', u'surf', u'say', u'scott']
[u'state', u'case', u'mooroopna', u'polic', u'station']
[u'mundubbera', u'drought', u'condit', u'wors', u'gayndah']
[u'murray', u'river', u'top', u'dwindl', u'dam']
[u'nativ', u'titl', u'claim', u'wont', u'affect', u'farmer', u'land']
[u'sale']
[u'door', u'nuclear', u'plant']
[u'north', u'physicist', u'play', u'nuclear', u'power', u'fear']
[u'govt', u'accus', u'neglect', u'communiti', u'mental']
[u'govt', u'announc', u'fund', u'address', u'skill', u'shortag']
[u'govt', u'deni', u'motorist', u'camera', u'smart']
[u'footbal', u'fin', u'drink', u'drive', u'offenc']
[u'number', u'needi', u'famili', u'increas', u'chariti']
[u'author', u'expos', u'cheat', u'student']
[u'firefight', u'head', u'gippsland']
[u'palm', u'rioter', u'imprison']
[u'perham', u'sail', u'record']
[u'petrova', u'keep', u'russia', u'hopman', u'hop', u'aliv']
[u'plane', u'make', u'oodnadatta', u'crash', u'land']
[u'plan', u'shut', u'lake', u'bonney', u'river', u'murray']
[u'promis', u'stand']
[u'polic', u'blame', u'visitor', u'alic', u'unrest']
[u'polic', u'charg', u'gippsland', u'fire']
[u'polic', u'continu', u'search', u'elder', u'woman', u'attack']
[u'polic', u'defend', u'youth', u'conferenc', u'model']
[u'polic', u'hunt', u'servic', u'station', u'assault']
[u'polic', u'hunt', u'serial', u'arsonist']
[u'polic', u'investig', u'arm', u'robberi']
[u'polic', u'investig', u'second', u'brunswick', u'head', u'brawl']
[u'polic', u'arrest', u'murder']
[u'policeman', u'accus', u'crime']
[u'polic', u'probe', u'fatal', u'newcastl', u'stab']
[u'polic', u'search', u'river', u'fatal', u'road', u'crash']
[u'polic', u'seek', u'person', u'teen', u'murder']
[u'polic', u'seiz', u'record', u'drug', u'haul']
[u'polic', u'turn', u'public', u'murder', u'investig']
[u'polit', u'mileag', u'nuclear', u'debat']
[u'pont', u'win', u'mcgilvray', u'medal']
[u'power', u'storm', u'threaten', u'south']
[u'power', u'return', u'fiji', u'presid']
[u'prawn', u'farmer', u'urg', u'import', u'amid', u'virus']
[u'pregnanc', u'counsel', u'abbott', u'posit']
[u'priest', u'assault', u'morn', u'mass']
[u'princ', u'highway', u'reopen']
[u'priscilla', u'actor', u'promot', u'australia']
[u'public', u'urg', u'look', u'thiev', u'steal']
[u'rain', u'bucket', u'storm', u'brew']
[u'rainfal', u'figur', u'vari', u'cyclon']
[u'rapper', u'busta', u'rhyme', u'arrest']
[u'real', u'offer', u'beck']
[u'recent', u'rain', u'boost', u'investor', u'confid']
[u'record', u'drug', u'seizur', u'disrupt', u'suppli', u'polic']
[u'record', u'number', u'illeg', u'fish', u'boat', u'catch']
[u'red', u'chase', u'tuqiri', u'signatur']
[u'rental', u'price', u'unlik', u'increas', u'reint']
[u'report', u'give', u'snapshot', u'local', u'council', u'oper']
[u'roar', u'fight', u'final', u'hop', u'aliv']
[u'roar', u'shoot', u'fourth', u'spot']
[u'robinson', u'urg', u'legal', u'cost', u'chang']
[u'rockhampton', u'hospit', u'undergo', u'revamp']
[u'russia', u'hopman', u'final']
[u'govt', u'slam', u'cubbi', u'station', u'propos']
[u'schwarten', u'wouldnt', u'oppos', u'rockhampton', u'casino']
[u'search', u'widen', u'indonesian', u'ferri', u'passeng']
[u'second', u'guard', u'arrest', u'saddam', u'video']
[u'servic', u'industri', u'rate', u'rise', u'slight']
[u'shepparton', u'driver', u'surviv', u'roll']
[u'shoalhaven', u'develop', u'plan', u'worri', u'communiti', u'group']
[u'simpson', u'urg', u'govt', u'specialist', u'wait']
[u'laurenc', u'street', u'review', u'mulrunji', u'case']
[u'snowi', u'council', u'push', u'oncolog', u'unit']
[u'soap', u'opera', u'attempt', u'boost', u'moral', u'disast']
[u'south', u'africa', u'lose', u'momentum', u'india']
[u'southern', u'highland', u'experi', u'visitor', u'boost']
[u'southern', u'centr', u'record', u'driest', u'year']
[u'south', u'west', u'driver', u'feel', u'impact', u'tougher', u'penalti']
[u'south', u'west', u'host', u'foreign', u'worker']
[u'stand', u'human', u'right']
[u'state', u'school', u'featur', u'list']
[u'storm', u'lash', u'southern']
[u'storm', u'bring', u'soil', u'eros', u'waff']
[u'stosur', u'go', u'safina', u'gold', u'coast']
[u'studi', u'link', u'childhood', u'sip', u'bing', u'drink']
[u'summernat', u'tip', u'attract', u'revhead']
[u'coast', u'drink', u'drive', u'blitz', u'continu']
[u'super', u'storm', u'lash']
[u'swdc', u'predict', u'busi', u'year', u'region', u'develop']
[u'symond', u'join', u'hussey', u'stand']
[u'teen', u'grant', u'bail', u'alleg', u'rape']
[u'teen', u'face', u'court', u'famili', u'brawl']
[u'lead', u'record', u'drug', u'haul']
[u'record', u'drug', u'seizur']
[u'train', u'scheme', u'target', u'illawarra', u'skill']
[u'uranium', u'johnni']
[u'urgent', u'plan', u'school', u'toilet', u'facil']
[u'deni', u'role', u'saddam', u'execut']
[u'market', u'jitteri', u'amid', u'rate', u'rise', u'fear']
[u'govt', u'urg', u'communiti', u'vigil']
[u'resid', u'alert']
[u'victori', u'replac', u'star', u'trio']
[u'emerg', u'servic', u'brace', u'storm', u'onslaught']
[u'wallabi', u'send', u'unfit', u'tuqiri', u'home']
[u'post', u'huge', u'total']
[u'warn', u'fall', u'short', u'australia']
[u'warn', u'head', u'centuri']
[u'water', u'bomber', u'work', u'west', u'coast', u'blaze']
[u'whitney', u'houston', u'greatest', u'sale']
[u'wilkinson', u'doubt', u'nation', u'open']
[u'wollongong', u'council', u'get', u'time', u'assess', u'hill']
[u'woman', u'hospitalis', u'stingray', u'attack']
[u'younger', u'generat', u'squeez', u'hous']
[u'catch', u'drink', u'drive']
[u'attack', u'china', u'uranium', u'deal']
[u'construct', u'activ', u'increas']
[u'distanc', u'terrorist', u'train']
[u'probe', u'report', u'aussi', u'train', u'qaeda']
[u'probe', u'claim', u'australian', u'train', u'qaeda']
[u'asia', u'enter', u'long', u'haul', u'market']
[u'albani', u'zone', u'deliv', u'tonn', u'grain']
[u'alpin', u'town', u'rais', u'fund', u'affect', u'wildlif']
[u'vote', u'bass', u'candid']
[u'arrest', u'rocket', u'launcher', u'theft']
[u'asbesto', u'traralgon', u'colleg', u'camp', u'ruin']
[u'ash', u'highlight', u'fifth', u'test']
[u'ash', u'podcast', u'fifth', u'test']
[u'ash', u'whitewash', u'moment', u'savour']
[u'ash', u'whitewash', u'moment', u'savour', u'pont']
[u'aussi', u'injur', u'indian', u'saddam', u'protest']
[u'aussi', u'whitewash', u'england']
[u'aussi', u'ash']
[u'aust', u'china', u'agre', u'uranium', u'export', u'legal', u'framework']
[u'aust', u'complet', u'ash', u'whitewash']
[u'aust', u'criticis', u'bainimarama', u'appoint']
[u'australia', u'chase', u'victori']
[u'australian', u'urg', u'kick', u'unhealthi', u'habit']
[u'aust', u'win', u'ash']
[u'author', u'hunt', u'reckless', u'skier']
[u'author', u'suspect', u'adelaid', u'hill', u'bushfir']
[u'author', u'warn', u'high', u'danger']
[u'babi', u'death', u'add', u'road', u'toll']
[u'bainimarama', u'swear', u'interim']
[u'bainimarama', u'wont', u'announc', u'cabinet', u'today']
[u'bangkok', u'blast', u'attempt', u'discredit', u'coup']
[u'beacon', u'signal', u'shift', u'search', u'miss', u'indonesian']
[u'blair', u'cut', u'short', u'holiday', u'ireland', u'talk']
[u'blue', u'ribbon', u'show', u'doubt', u'rollout']
[u'bodi', u'suspect', u'keep', u'custodi']
[u'bowral', u'cricket', u'play', u'english', u'team', u'bradman', u'oval']
[u'hang', u'watch', u'saddam']
[u'bull', u'beat', u'blue']
[u'bunburi', u'chef', u'rais', u'fund', u'suicid', u'prevent']
[u'bunburi', u'rais', u'water', u'manag', u'worri']
[u'bush', u'express', u'concern', u'saddam', u'hang']
[u'bush', u'overhaul', u'militari', u'iraq']
[u'busi', u'chamber', u'warn', u'delay']
[u'busselton', u'prepar', u'southbound', u'festiv', u'crowd']
[u'camel', u'ride', u'oper', u'blame', u'shire', u'blunder']
[u'chemic', u'spill', u'caus', u'townsvill', u'street', u'closur']
[u'closer']
[u'closer']
[u'coliban', u'water', u'mistaken', u'pump', u'lake', u'eppalock']
[u'communiti', u'group', u'hunt', u'landfil', u'worri']
[u'coramba', u'resid', u'meet', u'land', u'pollut']
[u'council', u'call', u'input', u'merimbula', u'develop']
[u'council', u'dismiss', u'critic', u'develop']
[u'council', u'accus', u'hamper', u'develop']
[u'court', u'rule', u'child', u'coupl', u'parent']
[u'deni', u'troubl']
[u'crew', u'hope', u'cool', u'weather', u'chang', u'bushfir']
[u'crew', u'progress', u'port', u'fairi', u'blaze']
[u'dakar', u'safeti', u'secur', u'microscop']
[u'decis', u'time', u'near', u'beckham']
[u'democrat', u'control', u'congress']
[u'desalin', u'greenhous', u'gas']
[u'discoveri', u'stripe', u'rust', u'type', u'rais', u'concern']
[u'dishwash', u'spas', u'wast', u'water']
[u'outlin', u'condamin', u'water', u'restrict', u'reason']
[u'doubt', u'inquiri']
[u'dozen', u'home', u'damag', u'sever', u'storm']
[u'drink', u'drive', u'speed', u'driver', u'worri', u'england']
[u'dubbo', u'father', u'plead', u'info', u'daughter']
[u'jail', u'drunken', u'bash', u'attack']
[u'employ', u'dept', u'downplay', u'cdep', u'chang', u'critic']
[u'england', u'ash', u'agoni', u'spur', u'reviv', u'say']
[u'entsch', u'rebel', u'sugar', u'fund', u'disgrac']
[u'ergon', u'work', u'central', u'west', u'power']
[u'esper', u'continu', u'clean', u'fierc', u'storm']
[u'esper', u'local', u'assess', u'storm', u'damag']
[u'farmer', u'seek', u'snowi', u'water', u'assur', u'communiti']
[u'farm', u'group', u'warn', u'high', u'dollar', u'hurt', u'grain', u'export']
[u'father', u'face', u'court', u'robberi', u'shoot']
[u'fiji', u'coup', u'leader', u'appoint']
[u'fiji', u'opposit', u'criticis', u'bainimarama', u'appoint']
[u'firebreak', u'melbourn', u'water', u'catchment']
[u'crew', u'brace', u'worsen', u'weather', u'condit']
[u'flood', u'water', u'strand', u'farmer']
[u'footbal', u'leagu', u'debat', u'season', u'start', u'date']
[u'chief', u'justic', u'conduct', u'palm', u'island']
[u'south', u'african', u'presid', u'viljoen', u'die']
[u'googong', u'water', u'treat']
[u'govern', u'vow', u'fight', u'energi', u'merger']
[u'govt', u'secur', u'properti', u'mari', u'river']
[u'govt', u'push', u'super', u'option', u'young']
[u'great', u'wall', u'need', u'defend', u'expert', u'say']
[u'green', u'press', u'quick', u'respons', u'panel', u'vacanc']
[u'griffith', u'aborigin', u'mother', u'appeal', u'calm']
[u'guardian', u'rescu', u'continu', u'monitor']
[u'guccion', u'beat', u'gasquet', u'adelaid']
[u'guccion', u'upset', u'second', u'seed', u'rain', u'mar']
[u'gunner', u'face', u'trip', u'fortress', u'anfield']
[u'guyra', u'group', u'get', u'green', u'light', u'youth', u'centr']
[u'hayden', u'name', u'world', u'squad']
[u'hewitt', u'leav', u'lurch', u'coach', u'quit']
[u'highest', u'accolad', u'brave', u'york', u'subway']
[u'high', u'rang', u'drink', u'driver', u'worri', u'polic']
[u'histor', u'vessel', u'return', u'tasmania']
[u'holiday', u'road', u'toll', u'reach']
[u'holm', u'nation', u'ironman', u'comp']
[u'hume', u'water', u'releas', u'stop', u'drought', u'worsen']
[u'defenc', u'warn']
[u'india', u'inning', u'lead', u'south', u'africa']
[u'indigen', u'agenc', u'say', u'pregnanc', u'counsel', u'plan']
[u'indonesia', u'expand', u'search', u'ferri', u'survivor']
[u'inter', u'deni', u'figo']
[u'interview', u'adam', u'gilchrist']
[u'interview', u'justin', u'langer']
[u'jack', u'emili', u'lead', u'babi', u'name']
[u'jedrzejczak', u'face', u'court', u'fatal', u'crash']
[u'jet', u'face', u'biggest', u'game', u'season', u'marin']
[u'jet', u'sneak', u'fourth', u'spot']
[u'keelti', u'defend', u'pacif', u'polic', u'commission']
[u'langer', u'say', u'emot', u'farewel']
[u'leader', u'agre', u'saddam', u'death', u'video', u'investig']
[u'state', u'determin', u'compli', u'law']
[u'lifelin', u'offer', u'financi', u'counsel']
[u'lindsay', u'lohan', u'hospitalis', u'append']
[u'local', u'govt', u'group', u'deni', u'infrastructur', u'handov']
[u'magic', u'million', u'race', u'melb', u'traffic']
[u'arrest', u'rocket', u'launcher', u'theft']
[u'charg', u'orang', u'stab']
[u'critic', u'rivercat', u'crash']
[u'man', u'amput', u'ferri', u'crash']
[u'mayor', u'back', u'origin', u'wave', u'machin', u'plan']
[u'mayor', u'give', u'bridg', u'upgrad', u'tick', u'approv']
[u'mayor', u'hangman', u'photo']
[u'merger', u'review', u'delay', u'council', u'elect']
[u'mine', u'industri', u'welcom', u'china', u'uranium', u'deal']
[u'mine', u'stock', u'pull', u'market', u'lower']
[u'miss', u'backpack', u'north']
[u'mooroopna', u'court', u'bank', u'robberi']
[u'need', u'govt']
[u'urg', u'govt', u'crackdown', u'drug']
[u'multi', u'user', u'water', u'meter', u'unfair', u'opposit', u'say']
[u'murder', u'newcastl', u'know', u'attack']
[u'narrogin', u'shire', u'unchang', u'merger']
[u'nation', u'holiday', u'road', u'toll', u'hit']
[u'nation', u'urg', u'youth', u'crime', u'chang']
[u'compo', u'patel', u'patient']
[u'govt', u'reject', u'critic', u'juvenil', u'crime']
[u'firi', u'return', u'experi']
[u'crew', u'bolster', u'firefight', u'effort']
[u'simpson', u'fund', u'freez']
[u'oven', u'river', u'water', u'unus', u'pollut']
[u'palestinian', u'leader', u'withdraw', u'forc']
[u'pardew', u'clear', u'wenger']
[u'parent', u'defend', u'decis', u'stunt', u'daughter', u'growth']
[u'passer', u'catch', u'fall', u'child']
[u'paul', u'newman', u'chariti', u'help', u'fund', u'drug', u'rehab', u'centr']
[u'pietersen', u'ball']
[u'injuri', u'hand', u'jankov', u'place', u'auckland', u'final']
[u'polic', u'appeal', u'parent', u'brunswick', u'head']
[u'polic', u'check', u'age', u'care', u'worker']
[u'polic', u'fear', u'miss', u'tasmanian']
[u'polic', u'investig', u'brisban', u'attack']
[u'polic', u'patrol', u'serial', u'offend']
[u'polic', u'seek', u'wit', u'fatal', u'peel', u'crash']
[u'polic', u'seek', u'wit', u'lismor', u'arm', u'robberi']
[u'polic', u'tightlip', u'rocket', u'target']
[u'pollut', u'soil', u'move', u'narangba', u'ipswich']
[u'pont', u'ash']
[u'popular', u'chalet', u'close', u'door']
[u'portland', u'golf', u'club', u'suffer', u'fourth', u'vandal', u'attack']
[u'prison', u'offic', u'retri', u'death', u'custodi']
[u'protect', u'suburban', u'greeneri']
[u'public', u'urg', u'steer', u'clear', u'turtl', u'hatch']
[u'winterthur']
[u'winterthur']
[u'govt', u'call', u'communiti', u'health', u'council']
[u'scientist', u'legum', u'breakthrough']
[u'rain', u'wind', u'eas']
[u'real', u'estat', u'industri', u'downplay', u'rent', u'rise', u'fear']
[u'region', u'school', u'rank']
[u'replac', u'cotton', u'hemp', u'save', u'water']
[u'report', u'aussi', u'train', u'qaeda']
[u'rivercat', u'crash', u'investig', u'begin']
[u'road', u'toll', u'surg', u'death']
[u'rocket', u'launcher', u'suspect', u'link', u'terror', u'group']
[u'rockhampton', u'drown']
[u'rockhampton', u'hospit', u'clinic', u'expect', u'attract']
[u'russia', u'win', u'hopman']
[u'govt', u'invest', u'mental', u'health']
[u'scientist', u'identifi', u'childhood', u'cancer', u'gene']
[u'scientist', u'look', u'south', u'pole', u'answer']
[u'scout', u'bring', u'relief', u'drought', u'affect', u'communiti']
[u'second', u'bodi', u'madrid', u'blast']
[u'sewag', u'overflow', u'creek', u'sawtel']
[u'singh', u'crowd', u'merced', u'leaderboard']
[u'kill', u'gaza', u'clash']
[u'slinger', u'post', u'upset', u'croc']
[u'somali', u'islamist', u'surround', u'diplomat', u'effort']
[u'stingray', u'barb', u'surgic', u'remov', u'woman', u'ankl']
[u'summernat', u'bonanza', u'local', u'busi']
[u'summernat', u'organis', u'defend', u'govt', u'grant']
[u'summer', u'storm', u'batter', u'esper']
[u'coast', u'enjoy', u'tourism', u'boost', u'despit', u'rain']
[u'sunraysia', u'post', u'loss']
[u'sunshin', u'coast', u'miss', u'whitsunday', u'dive']
[u'support', u'manag', u'fisheri', u'plan']
[u'sydney', u'team', u'win', u'world', u'debat', u'crown']
[u'crew', u'help', u'avert', u'major', u'damag']
[u'fire', u'deliber', u'say', u'district']
[u'tassi', u'artist', u'win', u'wrest', u'point', u'prize', u'time']
[u'water', u'storag', u'review', u'wast', u'time', u'green']
[u'technolog', u'stock', u'help', u'boost']
[u'teen', u'admit', u'stab']
[u'tendulkar', u'stop', u'bat', u'time', u'rule']
[u'test', u'farewel', u'go', u'script', u'warn']
[u'teen', u'question', u'fatal', u'bash']
[u'tiger', u'hold', u'hawk']
[u'communiti', u'harvest', u'cucumb']
[u'scientist', u'attack', u'govt', u'human', u'anim']
[u'democrat', u'gain', u'control', u'congress']
[u'vacanc', u'close', u'childcar', u'centr']
[u'vandal', u'attack', u'bairnsdal', u'oval', u'cricket', u'match']
[u'vandal', u'servic', u'threat']
[u'vehicl', u'sale']
[u'fire', u'longer', u'threat']
[u'tabl', u'grape', u'grower', u'receiv', u'good', u'return']
[u'victim', u'hang', u'glider', u'parachut', u'polic']
[u'victorian', u'crew', u'hope', u'rain']
[u'clean', u'sever', u'storm']
[u'warn', u'relish', u'life', u'away', u'cricket', u'spotlight']
[u'score', u'easi', u'victori', u'redback']
[u'storm', u'predict', u'cross', u'central']
[u'water', u'polic', u'urg', u'boati', u'safeti', u'awar']
[u'water', u'pressur', u'brisban', u'reduc']
[u'water', u'restrict', u'gunnedah']
[u'water', u'restrict', u'expect', u'help', u'murray']
[u'weather', u'bring', u'rain']
[u'welshman', u'penni', u'refus', u'court', u'payment']
[u'wast', u'indonesia']
[u'william', u'arriv', u'hobart']
[u'yarrabah', u'offer', u'worker', u'eas', u'banana', u'picker']
[u'zane', u'holm', u'nation', u'ironman', u'comp']
[u'african', u'nation', u'approach', u'somalia']
[u'worker', u'evacu', u'darfur', u'attack']
[u'back', u'attract', u'doctor', u'canberra']
[u'american', u'civilian', u'contractor', u'kidnap', u'iraq']
[u'applebi', u'quest', u'stall', u'singh', u'move', u'ahead']
[u'arthur', u'adamczak', u'receiv', u'open', u'wildcard']
[u'australian', u'detain', u'coalit', u'forc', u'baghdad']
[u'australian', u'detain', u'iraq']
[u'australian', u'hold', u'coalit', u'forc', u'baghdad']
[u'australian', u'kill', u'somalia', u'fight']
[u'australian', u'help', u'rescu', u'canadian', u'child']
[u'australia', u'secur', u'credenti']
[u'black', u'cap', u'chase', u'lanka']
[u'black', u'hawk', u'crash', u'report', u'month']
[u'blackhawk', u'crash', u'report', u'soon']
[u'blackhawk', u'report', u'soon']
[u'blaze', u'flare', u'near', u'melbourn']
[u'mort', u'sign', u'hammer']
[u'bush', u'name', u'intellig', u'head']
[u'bush', u'nomin', u'move', u'negropont']
[u'bush', u'reshuffl', u'militari', u'command']
[u'bush', u'urg', u'send', u'troop', u'iraq']
[u'canadian', u'child', u'appeal', u'aussi', u'assist']
[u'canberran', u'prais', u'water', u'usag']
[u'closer', u'nodisplay']
[u'closer']
[u'colombian', u'minist', u'tell', u'escap', u'rebel']
[u'dandenong', u'bulleen', u'canberra', u'notch', u'wnbl', u'win']
[u'defenc', u'dept', u'disput', u'black', u'hawk', u'crash', u'theori']
[u'detain', u'australian', u'dfat']
[u'detain', u'australian', u'iraq', u'wife']
[u'disast', u'zone', u'declar', u'like', u'esper']
[u'dont', u'boost', u'iraq', u'troop', u'number', u'bush', u'urg']
[u'drown', u'report', u'prompt', u'water', u'safeti', u'warn']
[u'england', u'keen', u'warn', u'spin', u'doctor']
[u'england', u'launch', u'thrash', u'inquest']
[u'esper', u'declar', u'natur', u'disast', u'zone']
[u'essien', u'name', u'african', u'footbal', u'year']
[u'ethiopian', u'troop', u'leav', u'somalia']
[u'farmer', u'angri', u'water', u'author', u'exceed']
[u'approv', u'drug', u'plump', u'pup']
[u'ferri', u'crash', u'victim', u'remain', u'critic', u'condit']
[u'figo', u'join', u'ittihad', u'juli']
[u'flash', u'storm', u'caus', u'damag']
[u'flash', u'storm', u'lash', u'home']
[u'fletcher', u'say', u'flintoff', u'struggl', u'captain']
[u'captain', u'slam', u'mollycoddl', u'england']
[u'colombian', u'minist', u'flee', u'captor']
[u'rescu', u'boat', u'accid']
[u'global', u'warm', u'threaten', u'tibetan', u'glacier']
[u'green', u'push', u'smoke', u'car', u'kid']
[u'green', u'voic', u'uranium', u'export', u'concern']
[u'green', u'want', u'proactiv', u'power', u'cut', u'campaign']
[u'guccion', u'come', u'semi']
[u'hayden', u'set', u'sight', u'world']
[u'hewitt', u'pull', u'sydney', u'intern']
[u'hewitt', u'miss', u'sydney', u'intern']
[u'hingi', u'get', u'easi', u'ride', u'australian', u'hard', u'court']
[u'hobart', u'host', u'hivaid', u'awar', u'event']
[u'holiday', u'road', u'toll']
[u'holiday', u'road', u'toll', u'end', u'dead']
[u'human', u'pressur', u'degrad', u'great', u'wall']
[u'increas', u'polic', u'presenc', u'brisban', u'bikeway']
[u'indian', u'hop', u'slip', u'bat', u'collaps']
[u'iraq', u'coalit', u'forc', u'detain', u'australian']
[u'iraq', u'warn', u'critic', u'saddam', u'hang']
[u'kidnap', u'american', u'interpret', u'dead', u'report']
[u'kiefer', u'australian', u'open']
[u'labor', u'criticis', u'govt', u'steal', u'rocket', u'launcher']
[u'langer', u'anoint', u'hussey', u'ideal', u'replac']
[u'lifelin', u'note', u'increas', u'suicid', u'caller']
[u'malawi', u'happi', u'madonna', u'adopt']
[u'catch', u'arm', u'steal', u'cream']
[u'injur', u'wharf', u'collaps']
[u'stab', u'melbourn', u'beach', u'brawl']
[u'stab', u'death', u'sydney']
[u'melbourn', u'kill', u'somalia', u'dfat']
[u'miss', u'see', u'wednesday', u'polic']
[u'molik', u'look', u'hobart', u'career', u'kickstart']
[u'nation', u'holiday', u'road', u'toll', u'end']
[u'govt', u'grant', u'rule', u'threaten', u'bushfir', u'research']
[u'injur', u'crash', u'central', u'coast']
[u'govt', u'attack', u'law']
[u'govt', u'reject', u'propos', u'smoker']
[u'govt', u'say', u'tourism', u'packag', u'work']
[u'pension', u'welcom', u'polic', u'check', u'age', u'care']
[u'plane', u'disappear']
[u'polic', u'hunt', u'urin', u'thief']
[u'polic', u'investig', u'attempt', u'raid']
[u'polish', u'archbishop', u'admit', u'secret', u'polic', u'link']
[u'princ', u'highway', u'close', u'breach']
[u'busi', u'drought', u'assist']
[u'govt', u'seek', u'land', u'gatton', u'jail']
[u'rain', u'bring', u'repriev']
[u'rain', u'slide', u'kill', u'brazil']
[u'rudd', u'seek', u'brief', u'australian', u'detain', u'iraq']
[u'russian', u'pair', u'buoy', u'hopman']
[u'russia', u'win', u'hopman']
[u'safina', u'beat', u'hingi', u'gold', u'coast', u'final']
[u'govt', u'refus', u'reveal', u'consult', u'cost']
[u'score', u'fear', u'dead']
[u'second', u'blast', u'kill', u'lanka']
[u'sell', u'uranium', u'china', u'danger', u'green']
[u'serena', u'eye', u'return', u'form', u'hobart']
[u'somali', u'ralli', u'ethiopian', u'forc']
[u'south', u'east', u'resid', u'decid', u'drink']
[u'lanka', u'bat', u'auckland']
[u'lanka', u'bomb', u'kill']
[u'lanka', u'crush', u'zealand', u'dayer']
[u'sugar', u'industri', u'lose', u'skill', u'worker', u'mine']
[u'suspect', u'alga', u'forc', u'closur', u'sydney', u'beach']
[u'sydney', u'festiv', u'kick']
[u'sydney', u'drown', u'beach']
[u'tanzanian', u'minist', u'name', u'deputi']
[u'govt', u'pressur', u'pulp', u'panel']
[u'team', u'hewitt', u'disarray', u'open', u'loom']
[u'teen', u'woman', u'releas', u'fatal', u'stab']
[u'arrest', u'fatal', u'stab']
[u'tourist', u'undet', u'esper', u'storm']
[u'cartoon', u'protest', u'guilti']
[u'launch', u'darfur', u'peac', u'drive']
[u'compani', u'take', u'control', u'todd']
[u'congress', u'vote', u'alaska', u'drill']
[u'impos', u'sanction', u'arm', u'supplier', u'iran']
[u'team', u'help', u'search', u'indonesian', u'plane']
[u'abba', u'forc', u'boost']
[u'wash', u'cloth', u'bodi', u'wacki', u'warn', u'advis']
[u'william', u'excit', u'ahead', u'hobart', u'intern']
[u'offer', u'info', u'murder']
[u'kill', u'salvador', u'prison', u'riot']
[u'charg', u'suburban', u'brawl']
[u'dead', u'north', u'east', u'india', u'fight']
[u'abba', u'declar', u'hama', u'forc', u'illeg']
[u'adelaid', u'notch', u'upset', u'tiger']
[u'maliki', u'flag', u'secur', u'plan']
[u'anglican', u'church', u'fear', u'sexual', u'schism']
[u'arrest', u'follow', u'sydney', u'mele']
[u'arsenal', u'knock', u'holder', u'liverpool']
[u'arson', u'suspect', u'kinglak', u'bushfir']
[u'bangladesh', u'blockad', u'turn', u'violent']
[u'bangladesh', u'kill', u'dozen']
[u'bird', u'vaccin', u'smuggler', u'thwart']
[u'black', u'hawk', u'crash', u'specul', u'unhelp']
[u'black', u'hawk', u'crash', u'specul', u'wrong']
[u'cabbi', u'demand', u'polic', u'stop', u'rock', u'throw', u'gang']
[u'cameraman', u'dead', u'iraq']
[u'canberra', u'domest', u'violenc', u'shelter', u'high', u'demand']
[u'closer']
[u'closer']
[u'colorado', u'avalanch', u'buri', u'car']
[u'convict', u'murder', u'give', u'releas', u'report']
[u'crew', u'battl', u'bushfir']
[u'cultur', u'background', u'affect', u'one', u'health', u'report']
[u'desper', u'farmer', u'fee', u'cattl', u'wine', u'industri']
[u'disrupt', u'student', u'educ', u'separ']
[u'venuto', u'bailey', u'lead', u'tassi', u'victori']
[u'venuto', u'bailey', u'sword']
[u'england', u'chanc', u'aussi']
[u'england', u'right', u'chang', u'skipper', u'say', u'buchanan']
[u'count', u'congress']
[u'famili', u'land', u'lengthi', u'rescu']
[u'fear', u'wind', u'gippsland', u'fire']
[u'fear', u'wind', u'near', u'melbourn']
[u'fightback', u'earn', u'victori', u'draw', u'perth']
[u'firefight', u'battl', u'blaze']
[u'good', u'boomer']
[u'gippsland', u'fire', u'burn', u'control']
[u'govt', u'rule', u'scientif', u'research', u'risk']
[u'govt', u'immigr', u'polici', u'blame', u'slaveri']
[u'green', u'fear', u'feder', u'intervent', u'uranium']
[u'green', u'want', u'pulp', u'task', u'forc', u'disband']
[u'guccion', u'excit', u'ahead', u'adelaid', u'final']
[u'hama', u'defiant', u'illeg', u'forc']
[u'hodg', u'vic', u'good', u'bull']
[u'hop', u'miss', u'bodi', u'year']
[u'iemma', u'debnam', u'agre', u'debat']
[u'india', u'investig', u'attack', u'polic', u'migrant']
[u'instant', u'noodl', u'inventor', u'die']
[u'iraqi', u'announc', u'effort', u'secur', u'baghdad']
[u'iraqi', u'flag', u'secur', u'plan']
[u'israel', u'dismiss', u'iran', u'strike', u'report']
[u'knight', u'draw', u'sydney', u'final', u'dogfight']
[u'infight', u'childcar', u'afford']
[u'lightn', u'flame', u'perth']
[u'macgil', u'line', u'replac', u'warn', u'say', u'hilditch']
[u'maliss', u'stun', u'nadal', u'chennai', u'semi']
[u'mauresmo', u'chase', u'grand', u'slam', u'glori']
[u'minist', u'blame', u'darwin', u'hous', u'shortag']
[u'munro', u'shannon', u'eckstein', u'good', u'newcastl']
[u'novak', u'end', u'guccion', u'dream', u'adelaid']
[u'govt', u'defend', u'rainwat', u'tank', u'rebat', u'scheme']
[u'opposit', u'promis', u'unit', u'ambul']
[u'plane', u'crash', u'claim', u'live']
[u'polic', u'associ', u'push', u'offic', u'number']
[u'ultralight', u'crash', u'claim', u'live']
[u'offic', u'fit', u'camera', u'hat']
[u'oprah', u'target', u'extort', u'attempt', u'report']
[u'polic', u'investig', u'arm', u'attack', u'gold', u'coast', u'home']
[u'polic', u'investig', u'tripl', u'stab', u'perth']
[u'polic', u'recaptur', u'fugit']
[u'polic', u'seek', u'women', u'adelaid', u'mug']
[u'polic', u'shoot', u'stand']
[u'polic', u'warn', u'repeat', u'sydney', u'riot']
[u'polish', u'archbishop', u'quit', u'amid', u'spi']
[u'protea', u'clinch', u'seri', u'india']
[u'protea', u'unchang', u'pakistan', u'seri']
[u'protest', u'somalian', u'disarma']
[u'lifesav', u'urg', u'beachgoer', u'heed', u'warn']
[u'quarantin', u'author', u'warn', u'holiday', u'maker']
[u'rain', u'bring', u'relief']
[u'rebel', u'kill', u'india']
[u'recent', u'rainfal', u'littl', u'eas', u'drought']
[u'redback', u'beat', u'joey', u'blue']
[u'redback', u'joey', u'blue']
[u'region', u'iraqi', u'troop', u'deploy', u'baghdad']
[u'resid', u'alert', u'bushfir', u'near']
[u'reward', u'offer', u'info', u'brisban', u'attack']
[u'ripper', u'renew', u'extend', u'trade']
[u'rome', u'colosseum', u'death', u'penalti', u'protest']
[u'govt', u'target', u'driver', u'fatigu', u'road', u'safeti']
[u'town', u'strike', u'twister']
[u'score', u'rescu', u'surf']
[u'search', u'continu', u'miss', u'ultralight', u'plane']
[u'serena', u'talk', u'talk', u'ahead', u'open']
[u'sever', u'storm', u'flatten', u'vineyard', u'damag', u'home']
[u'sevilla', u'stumbl', u'primera', u'liga']
[u'shark', u'sight', u'near', u'sydney']
[u'singh', u'like', u'applebi', u'dream']
[u'somalia', u'scrap', u'disarma', u'plan']
[u'southgat', u'want', u'viduka', u'stay', u'boro']
[u'storm', u'grower', u'insur']
[u'summernat', u'organis', u'play', u'report', u'violenc']
[u'suspect', u'suicid', u'bomber', u'kill']
[u'sydney', u'polic', u'offic', u'die', u'gunshot', u'wind']
[u'sydney', u'rock', u'open', u'busi']
[u'sydneysid', u'swim', u'crucifix']
[u'west', u'coast', u'control']
[u'tighter', u'regul', u'replica', u'gun', u'need', u'govt']
[u'tourist', u'kill', u'parachut', u'accid']
[u'bodi', u'ultralight', u'plane', u'crash']
[u'suffer', u'burn', u'cairn', u'boat', u'explos']
[u'ultralight', u'plane', u'crash', u'investig']
[u'ultralight', u'plane', u'crash', u'wreckag']
[u'appeal', u'iraq', u'execut']
[u'vaughan', u'aim', u'restor', u'shatter', u'confid']
[u'vaughan', u'restor', u'england', u'skipper']
[u'bushfir', u'close', u'home']
[u'violenc', u'flare', u'somalia', u'disarma']
[u'storm', u'fail', u'bring', u'rain', u'central', u'aust']
[u'wind', u'chang', u'complic', u'fight']
[u'wind', u'push', u'blaze', u'town']
[u'women', u'wont', u'fool', u'child', u'care', u'bishop']
[u'survivor', u'indonesian', u'ferri']
[u'action', u'group', u'maintain', u'opposit', u'waterfront']
[u'opposit', u'back', u'plate', u'plan']
[u'refus', u'shame', u'player']
[u'alic', u'spring', u'await', u'generat', u'nois', u'report']
[u'urg', u'break']
[u'altern', u'stem', u'cell', u'sourc', u'year', u'away', u'scientist']
[u'job', u'rise', u'decemb']
[u'archbishop', u'admit', u'secret', u'polic', u'collabor']
[u'archer', u'pen', u'gospel', u'juda']
[u'reconcili', u'nation', u'ident']
[u'aussi', u'cement', u'rank', u'ash', u'sweep']
[u'aussi', u'plan', u'target', u'vaughan']
[u'australian', u'want', u'iraq', u'arrest', u'keep', u'secret']
[u'baghdati', u'fight', u'advanc']
[u'barak', u'announc', u'return', u'polit']
[u'barca', u'slip', u'getaf', u'real', u'lose', u'deportivo']
[u'bendigo', u'mine', u'quarter', u'report']
[u'boardwalk', u'help', u'protect', u'sand', u'dune', u'veget']
[u'bodi', u'discoveri', u'solv', u'miss', u'mysteri']
[u'boe', u'join', u'scramjet', u'project']
[u'boost', u'expect', u'pilbara', u'mine', u'export']
[u'bowen', u'burdekin', u'secur', u'water', u'suppli']
[u'build', u'approv', u'figur', u'novemb']
[u'bushfir', u'leav', u'tambo', u'valley', u'properti', u'powerless']
[u'bush', u'flag', u'iraq', u'troop', u'boost']
[u'businessman', u'report', u'approach']
[u'caffein', u'drink', u'addict', u'tasti', u'studi']
[u'campbel', u'uranium', u'mine']
[u'campbel', u'say', u'uranium', u'obscen']
[u'camp', u'soccer', u'player', u'skill', u'test']
[u'cardio', u'thorac', u'surgeri', u'resum', u'townsvill']
[u'carol', u'healthi', u'live']
[u'thief', u'run', u'offic']
[u'cat', u'suspend', u'johnson']
[u'central', u'aust', u'miss', u'weekend', u'rain']
[u'central', u'west', u'rain', u'littl', u'impact', u'drought']
[u'cessnock', u'showground', u'futur', u'unclear']
[u'closer']
[u'closer']
[u'coff', u'harbour', u'map', u'better', u'plan']
[u'cooper', u'set']
[u'corrupt', u'watchdog', u'probe', u'polic', u'gangland', u'link']
[u'councillor', u'beat', u'dawson', u'callid']
[u'council', u'distribut', u'east', u'coast', u'bushfir']
[u'council', u'fear', u'natur', u'resourc', u'manag', u'fund']
[u'crime', u'human']
[u'croc', u'attack', u'policeman', u'torr', u'strait']
[u'croc', u'stand', u'tall', u'breaker']
[u'dairi', u'farmer', u'hold', u'scientif', u'research']
[u'death', u'toll', u'pacif', u'highway']
[u'debat', u'rag', u'south', u'coast', u'emerg']
[u'decemb', u'rush', u'improv', u'build', u'figur']
[u'democrat', u'block', u'iraq', u'fund']
[u'dental', u'group', u'unhappi', u'bundaberg', u'wait', u'list']
[u'dept', u'deliv', u'fin', u'illeg', u'lobster', u'fish']
[u'diana', u'inquest', u'resum', u'year']
[u'dishwash']
[u'draper', u'coach', u'hewitt', u'australian', u'open']
[u'driver', u'behaviour', u'littl', u'improv', u'hunter']
[u'condit', u'help', u'boost', u'warrnambool', u'tourism']
[u'elder', u'die', u'wembley']
[u'esper', u'declar', u'natur', u'disast', u'area']
[u'esper', u'regain', u'power', u'storm', u'damag']
[u'esplanad', u'hotel', u'close']
[u'fatah', u'flex', u'muscl', u'gaza']
[u'fatah', u'stag', u'forc', u'gaza']
[u'fear', u'bushfir', u'harm', u'tourism']
[u'fear', u'futur', u'caravan', u'resid']
[u'fear', u'miss', u'darwin']
[u'govt', u'urg', u'provid', u'direct', u'revenu']
[u'fiji', u'presid', u'swear', u'post', u'coup', u'minist']
[u'close', u'town']
[u'fight', u'continu', u'eastern']
[u'firefight', u'forc', u'retreat', u'blaze']
[u'firefight', u'hold', u'tenuous', u'grip', u'boulder', u'creek']
[u'forc', u'qanta', u'buyer', u'protect', u'job', u'condit']
[u'baghdad', u'airport', u'worker', u'kill', u'ambush']
[u'fresh', u'fight', u'erupt', u'mogadishu']
[u'fund', u'problem', u'plagu', u'pipelin', u'film']
[u'fund', u'help', u'zimbabwean', u'nurs', u'outback', u'integr']
[u'generic', u'cattl', u'health', u'product', u'help', u'farmer', u'save']
[u'global', u'shift', u'weather', u'pattern']
[u'gold', u'coast', u'nativ', u'titl', u'claim', u'year']
[u'govt', u'talk', u'saudi', u'arabia', u'mosqu', u'fund']
[u'govt', u'undecid', u'qanta', u'sale', u'condit']
[u'govt', u'undecid', u'qanta', u'sale', u'condit', u'vail']
[u'govt', u'undecid', u'qanta', u'takeov', u'condit']
[u'govt', u'urg', u'free', u'land', u'hous']
[u'gulpilil', u'right', u'carri', u'machet', u'court', u'tell']
[u'gulpilil', u'plead', u'guilti', u'machet', u'charg']
[u'hawk', u'lose', u'spot']
[u'healthi', u'food', u'expens']
[u'henman', u'davi', u'return']
[u'welcom', u'build', u'approv', u'boost']
[u'hope', u'meet', u'save', u'buffalo', u'chalet']
[u'hunt', u'stand', u'prompt', u'crisi']
[u'link', u'mental', u'health', u'crisi']
[u'indian', u'kill', u'prompt', u'secur', u'crackdown']
[u'injur', u'policeman', u'face', u'investig', u'shoot']
[u'israel', u'deni', u'nuclear', u'strike', u'plan']
[u'israel', u'deni', u'plan', u'iran', u'nuclear', u'attack']
[u'job', u'shift', u'closur', u'loom']
[u'kayak', u'lucki', u'surviv', u'franklin', u'river', u'accid']
[u'labor', u'begin', u'bass', u'replac', u'vote']
[u'labor', u'pledg', u'irrig', u'licenc', u'elect']
[u'latham', u'hope', u'world', u'return']
[u'latham', u'doubt', u'world']
[u'chang', u'threaten', u'endang', u'speci', u'green']
[u'firm', u'consid', u'action', u'port', u'fairi', u'blaze']
[u'luczak', u'moor', u'gain', u'wildcard']
[u'mackay', u'popul', u'boom']
[u'main', u'street', u'rail', u'remov', u'time']
[u'maliss', u'win', u'chennai', u'open']
[u'charg', u'polic', u'offic']
[u'question', u'sydney', u'stab']
[u'stab', u'death', u'sydney', u'lane']
[u'tell', u'kununurra', u'crocodil', u'attack']
[u'court', u'pormpuraaw', u'murder']
[u'maroochi', u'council', u'seek', u'land', u'runway']
[u'massag', u'parlour', u'deliber', u'polic']
[u'mental', u'health', u'servic', u'crisi', u'opposit']
[u'molik', u'advanc', u'hobart']
[u'rural', u'peopl', u'seek', u'mental', u'health', u'support']
[u'mother', u'unscath', u'crash']
[u'call', u'compass', u'rail', u'affect', u'resid']
[u'criticis', u'hospit', u'cancel', u'heart', u'surgeri']
[u'highlight', u'need', u'specialist', u'teacher']
[u'seek', u'altern', u'unsuccess', u'industri']
[u'urg', u'coordin', u'approach', u'tackl']
[u'murray', u'keep', u'olymp']
[u'nation', u'urg', u'govt', u'boost', u'region', u'invest']
[u'chang', u'clijster', u'mind', u'retir']
[u'noosa', u'council', u'seek', u'feder', u'disast', u'relief']
[u'opposit', u'back', u'tough', u'plate', u'plan']
[u'govt', u'deni', u'respons', u'palmerston']
[u'suggest', u'wwii', u'sit', u'heritag', u'list']
[u'number', u'nurs', u'home', u'bed', u'unaccept']
[u'smoker', u'trial', u'nicotin', u'lozeng']
[u'strike', u'polici', u'plater', u'propos']
[u'onlin', u'rehabilit', u'help', u'rural', u'heart', u'patient']
[u'opposit', u'call', u'graze', u'nation', u'park']
[u'peel', u'polic', u'urg', u'elder', u'reassess', u'drive']
[u'penfold', u'quit', u'polit']
[u'pharmacist', u'hop', u'fadden', u'preselect']
[u'plane', u'crash', u'victim', u'experi', u'pilot']
[u'plan', u'outlin', u'water', u'trade']
[u'polic', u'close', u'bangkok', u'bomber', u'thai', u'say']
[u'polic', u'defend', u'shoot', u'hunt', u'stand']
[u'polic', u'fear', u'miss']
[u'polic', u'rubber', u'bullet', u'bangladesh', u'protest']
[u'polic', u'hunt', u'alic', u'spring', u'intrud']
[u'polic', u'number', u'blame', u'griffith', u'death']
[u'polic', u'probe', u'suspici', u'bendigo', u'fire']
[u'polic', u'resid', u'meet', u'help', u'serial']
[u'polic', u'drink', u'drive', u'messag', u'get']
[u'polic', u'seek', u'help', u'illawarra', u'bash', u'probe']
[u'polic', u'seiz', u'drug', u'southbound', u'music', u'festiv']
[u'powel', u'prim', u'dynam', u'season']
[u'princ', u'record', u'lower', u'road', u'toll']
[u'public', u'wont', u'stand', u'uranium', u'mine', u'campbel']
[u'pulp', u'oppon', u'push', u'panel', u'chief', u'quit']
[u'push', u'tougher', u'plate', u'rule']
[u'campdraft', u'postpon', u'drought']
[u'govt', u'move', u'tighten', u'replica', u'law']
[u'qlds', u'danger', u'surf', u'condit', u'expect', u'eas']
[u'vote', u'aust', u'monopoli', u'board', u'game', u'locat']
[u'town', u'har', u'grey', u'nomad', u'power']
[u'rail', u'boost', u'hunter', u'resid']
[u'rain', u'littl', u'drought', u'area']
[u'rain', u'littl', u'affect', u'drought', u'figur']
[u'rainwat', u'right']
[u'region', u'hospit', u'intern', u'boost']
[u'relief', u'hen', u'headach', u'farmer']
[u'research', u'discov', u'altern', u'stem', u'cell', u'sourc']
[u'riverland', u'storm', u'clean', u'week']
[u'healthi', u'live']
[u'saddam', u'execut', u'handl', u'wrong', u'blair']
[u'safeti', u'boost', u'plan', u'level', u'cross']
[u'sainz', u'rodrigu', u'second', u'stage', u'dakar', u'ralli']
[u'mosqu', u'investig', u'extremist', u'link']
[u'opposit', u'reject', u'govt', u'mine', u'job', u'figur']
[u'scott', u'finish', u'second', u'hawaii']
[u'search', u'plane', u'spot', u'metal']
[u'share', u'market']
[u'smeet', u'grosjean', u'hingi', u'lose', u'sydney']
[u'solskjaer', u'earn', u'unit', u'villa']
[u'storm', u'put', u'stop', u'fish', u'oper']
[u'stosur', u'second', u'round']
[u'stosur', u'begin', u'sydney', u'campaign']
[u'strong', u'show', u'blue', u'ribbon', u'meatwork']
[u'strong', u'wind', u'leav', u'damag', u'trail']
[u'student', u'give', u'thumb', u'rural', u'medic', u'school']
[u'supermarket', u'urg', u'sell', u'frost', u'affect', u'fruit']
[u'surf', u'rescu', u'prompt', u'beach', u'safeti', u'warn']
[u'teen', u'risk', u'live', u'fashion', u'cancer', u'council', u'say']
[u'dead', u'horrif', u'french', u'chopper', u'crash']
[u'face', u'court', u'accus', u'assault']
[u'tini', u'north', u'haven', u'sale']
[u'troop', u'decis', u'militari', u'downer', u'say']
[u'yardstick', u'symond']
[u'yachtsmen', u'await', u'rescu', u'east', u'coast']
[u'union', u'flag', u'propos', u'state', u'school', u'merger']
[u'weapon', u'monitor', u'arriv', u'nepal']
[u'democrat', u'hint', u'block', u'iraq', u'troop']
[u'democrat', u'sell', u'iraq', u'troop', u'surg']
[u'flag', u'iraq', u'troop', u'boost']
[u'vatican', u'support', u'polish', u'archbishop', u'resign']
[u'vaughan', u'return', u'boost', u'england', u'fleme']
[u'blaze', u'intensifi']
[u'bushfir', u'condit', u'eas']
[u'threat', u'eas']
[u'shoot', u'polic', u'stand']
[u'smoke', u'haze', u'reach', u'south', u'east']
[u'victorian', u'threat', u'eas']
[u'govt', u'act', u'hall', u'creek', u'hostel', u'opposit']
[u'govt', u'releas', u'karratha', u'hous', u'lot']
[u'wallavill', u'crash', u'claim', u'live']
[u'walsh', u'arriv', u'adelaid']
[u'polic', u'extradit', u'murder', u'accus']
[u'pressur', u'resum', u'uranium', u'mine']
[u'rain', u'caus', u'success', u'prawn', u'season']
[u'reject', u'campbel', u'uranium', u'claim']
[u'warn', u'mull', u'academi', u'children', u'england']
[u'water', u'metal', u'level', u'prompt', u'zinifex', u'warn']
[u'watkin', u'reject', u'youth', u'crime', u'claim']
[u'west', u'hop', u'rainfal']
[u'woman', u'court', u'shop', u'centr', u'stab']
[u'work', u'start', u'burrup', u'plant']
[u'renter', u'face', u'tight', u'squeez']
[u'yacht', u'woe', u'continu', u'sydney', u'hobart']
[u'york', u'peninsula', u'drill']
[u'young', u'adult', u'urg', u'meningococc', u'diseas']
[u'yousuf', u'miss', u'south', u'africa', u'test']
[u'hop', u'boost', u'visitor', u'number']
[u'attack', u'brisban', u'bike', u'path']
[u'year', u'plane', u'wreck', u'near', u'darwin']
[u'aant', u'call', u'better', u'youth', u'driver', u'educ']
[u'abbott', u'reject', u'medicar', u'levi', u'propos']
[u'abbott', u'rule', u'chang', u'medicar', u'levi']
[u'action', u'group', u'say', u'jail', u'secur', u'fund']
[u'agricultur', u'minist', u'visit', u'storm', u'damag', u'esper']
[u'strike', u'target', u'qaeda', u'somalia', u'confirm']
[u'quiet', u'locust', u'bewar', u'calm']
[u'aussi', u'rescu', u'malaysian', u'dead', u'boat', u'capsiz']
[u'aust', u'live', u'sheep', u'export', u'fall']
[u'australia', u'bat']
[u'australian', u'expert', u'reject', u'newcastl', u'quak', u'claim']
[u'australia', u'track', u'mammoth', u'score']
[u'australia', u'post', u'record', u'total']
[u'australia', u'technic', u'chief', u'get', u'work']
[u'australia', u'trounc', u'england', u'clash']
[u'backburn', u'continu', u'fight']
[u'ban', u'motorist', u'face', u'disqualifi', u'drive', u'charg']
[u'blake', u'hop', u'boost', u'nadal', u'exit']
[u'boat', u'capsiz', u'aussi', u'tourist', u'miss']
[u'bonvill', u'creek', u'get', u'clear', u'sewer', u'spill']
[u'boy', u'babi', u'croc']
[u'brazilian', u'diego', u'join', u'adelaid', u'unit']
[u'break', u'hill', u'warn', u'fruit', u'threat']
[u'brumbi', u'bakeri', u'team', u'aim', u'buyout', u'offer']
[u'bush', u'expect', u'announc', u'troop', u'iraq']
[u'bush', u'iraq', u'plan', u'includ', u'troop', u'surg']
[u'cane', u'grower', u'bigger', u'slice']
[u'camel', u'race', u'armidal', u'aust']
[u'cardiac', u'surgeri', u'resum', u'townsvill', u'hospit']
[u'swamp', u'fire']
[u'chelsea', u'deni', u'hiddink', u'rumour']
[u'child', u'start', u'maryborough', u'unit', u'blaze']
[u'civilian', u'report', u'kill', u'lanka', u'hospit']
[u'closer']
[u'closer']
[u'drop', u'beatti', u'bulli', u'investig']
[u'coma', u'win', u'dakar', u'stage']
[u'communiti', u'call', u'compo', u'toxic', u'dump', u'plan']
[u'concern', u'mount', u'miss', u'tourist']
[u'condit', u'hamper', u'firefight']
[u'coroni', u'inquiri', u'reason', u'shun', u'surgeon', u'govt']
[u'council', u'decid', u'kokoda', u'pool', u'oper']
[u'council', u'state', u'case', u'bendigo', u'ballarat', u'pipelin']
[u'court', u'fin', u'byron', u'nightclub', u'drink', u'patron']
[u'cousin', u'case', u'dismiss']
[u'croc', u'attack', u'warn', u'say', u'handler']
[u'crock', u'attack', u'spark', u'safeti', u'warn']
[u'culturevultur', u'nation', u'ident']
[u'darwin', u'polic', u'crackdown', u'taxi', u'attack']
[u'death', u'custodi', u'review', u'boss', u'visit', u'palm']
[u'death', u'spark', u'call', u'ambul', u'servic', u'probe']
[u'downer', u'offic', u'clear', u'mosqu', u'fund']
[u'draper', u'reluct', u'chang', u'hewitt', u'game']
[u'driver', u'behaviour', u'worri', u'polic']
[u'driver', u'face', u'court', u'high', u'speed', u'chase']
[u'driver', u'ignor', u'road', u'safeti', u'messag', u'polic']
[u'drought', u'cattl', u'shortag', u'put', u'campdraft', u'hold']
[u'drought', u'hit', u'wholesal', u'retail', u'sector']
[u'charg', u'alleg', u'traffic', u'infring']
[u'elder', u'elig', u'water', u'exempt']
[u'electr', u'shock', u'taser', u'help', u'assault', u'polic']
[u'england', u'struggl', u'chase']
[u'decid', u'water', u'tank', u'contamin', u'warrant']
[u'esperanza', u'arriv', u'combat', u'whale']
[u'eurobodalla', u'council', u'reveal', u'futur', u'develop']
[u'experi', u'lift', u'forc', u'sharp']
[u'expert', u'fear', u'warm', u'weather', u'boost', u'locust', u'number']
[u'farmer', u'dark', u'singl', u'desk', u'labor']
[u'feder', u'put', u'season', u'grand', u'slam', u'sweep', u'sight']
[u'feder', u'safin', u'wari', u'hewitt', u'open', u'threat']
[u'ferri', u'survivor', u'spend', u'day']
[u'fiji', u'elect', u'year', u'away', u'say', u'minist']
[u'crew', u'prepar', u'extrem', u'condit']
[u'firm', u'look', u'oversea', u'address', u'doctor', u'shortag']
[u'fiji', u'chaudhri', u'govern']
[u'panellist', u'back', u'altern', u'gunn', u'site']
[u'victorian', u'jockey', u'die']
[u'industri', u'call', u'port', u'keat', u'road', u'work']
[u'german', u'court', u'jail', u'sept']
[u'german', u'court', u'jail', u'sept', u'attack']
[u'gippsland', u'resid', u'flee', u'threat', u'worsen']
[u'gladston', u'leagu', u'club', u'receiv', u'specul', u'poor']
[u'govt', u'announc', u'maria', u'river', u'road', u'link', u'fund', u'boost']
[u'govt', u'ask', u'explain', u'summernat', u'grant']
[u'govt', u'back', u'hand', u'free', u'phone', u'driver']
[u'govt', u'blame', u'hous', u'crisi', u'lack', u'commonwealth']
[u'govt', u'grant', u'plane', u'wreck', u'temporari', u'heritag']
[u'govt', u'hope', u'trade', u'talk', u'reviv']
[u'govt', u'urg', u'help', u'farmer', u'connect', u'wimmera']
[u'govt', u'timberman', u'stand', u'hamper', u'bombala']
[u'govt', u'urg', u'address', u'rental', u'woe']
[u'grain', u'product', u'estim', u'year']
[u'green', u'slam', u'govt', u'handl', u'wielangta', u'rule']
[u'griffith', u'farewel', u'murder', u'schoolboy']
[u'griffith', u'mourn', u'murder', u'schoolboy']
[u'group', u'demand', u'environment', u'studi', u'hunt']
[u'guccion', u'nadal', u'retir']
[u'guyra', u'look', u'develop', u'boom']
[u'heat', u'hit', u'major', u'lettuc', u'farm']
[u'hous', u'demand', u'creat', u'develop', u'boom', u'industri']
[u'hous', u'growth', u'expect', u'continu', u'govt', u'say']
[u'indigen', u'conserv', u'program', u'get', u'fund', u'boost']
[u'infant', u'health', u'wors', u'plan', u'section', u'studi']
[u'inland', u'shut', u'irrig', u'dam']
[u'irrig', u'scheme', u'revamp', u'aim', u'save', u'water']
[u'islam', u'societi', u'want', u'answer', u'mosqu', u'fund']
[u'clinic', u'john', u'jam', u'hospit']
[u'japanes', u'tanker', u'collid']
[u'jar', u'nation', u'ident']
[u'job', u'bendigo', u'gold', u'product', u'suspend']
[u'johnson', u'champ']
[u'kirwan', u'commit', u'coach', u'japan']
[u'kuznetsova', u'retir', u'sydney', u'intern']
[u'landi', u'hit', u'pound']
[u'landslid', u'kill', u'miss']
[u'johnson', u'miss', u'clash']
[u'legal', u'upper', u'florentin', u'log', u'question']
[u'lennon', u'hide', u'rpdc', u'issu']
[u'lifesav', u'warn', u'complac', u'condit']
[u'lion', u'group', u'buy', u'stake', u'polari', u'metal']
[u'local', u'govt', u'group', u'say', u'water', u'save', u'time', u'frame']
[u'lyon', u'unbroken', u'waratah']
[u'major', u'highway', u'section', u'unsaf', u'say']
[u'aborigin', u'candid', u'snowdon', u'tell']
[u'accus', u'rape', u'get', u'bail']
[u'accus', u'take', u'marijuana', u'plant', u'court']
[u'semitrail', u'jump', u'ambul']
[u'jail', u'year', u'subway', u'bomb', u'plot']
[u'plead', u'guilti', u'korumburra', u'crash', u'death']
[u'plead', u'guilti', u'threaten', u'nurs']
[u'dead', u'strike', u'somali', u'milit']
[u'margaret', u'river', u'enjoy', u'tourist', u'season']
[u'mental', u'health', u'wors', u'shake']
[u'industri', u'ignor', u'hous', u'crisi', u'mayor']
[u'mine', u'allianc', u'challeng', u'flower', u'power']
[u'mine', u'boom', u'drive', u'properti', u'price', u'higher']
[u'mine', u'sector', u'push', u'market', u'higher']
[u'mine', u'trigger', u'newcastl', u'quak', u'say', u'academ']
[u'mobil', u'phone', u'curb', u'truanci']
[u'moder', u'rise', u'south', u'east', u'properti', u'price']
[u'molik', u'quarter', u'final', u'hobart']
[u'molloy', u'stand', u'bulli', u'claim']
[u'monsoon', u'expect']
[u'info', u'need', u'algal', u'bloom', u'opposit', u'say']
[u'survivor', u'indon', u'ferri', u'sink']
[u'teen', u'arrest', u'alic', u'church', u'break']
[u'moroccan', u'jail', u'sept', u'attack']
[u'moroccan', u'jail', u'septemb']
[u'moroney', u'pledg', u'zero', u'toler', u'sexual', u'misconduct']
[u'mourner', u'farewel', u'griffith', u'teenag']
[u'appeal', u'shoalhaven', u'hospit', u'fund']
[u'join', u'push', u'help', u'boatless', u'coastal', u'patrol']
[u'pressur', u'govt', u'bundaberg', u'dental']
[u'urg', u'govt', u'prevent', u'chalet', u'closur']
[u'murder', u'accus', u'undergo', u'mental', u'health', u'assess']
[u'murdocca', u'roar', u'return']
[u'mysteri', u'smell', u'forc', u'york', u'evacu']
[u'nadal', u'realist', u'feder', u'challeng']
[u'nation', u'highlight', u'drought', u'impact', u'region']
[u'coal', u'clermont']
[u'high', u'commission', u'fiji', u'name']
[u'offic', u'train', u'sexual', u'harass']
[u'pub', u'licenc', u'suspend', u'intox', u'patron']
[u'olymp', u'hors', u'rider', u'pass', u'skill', u'burni']
[u'dayer', u'wash', u'zealand']
[u'panel', u'reject', u'plate', u'plan']
[u'park', u'author', u'debat', u'futur', u'destroy']
[u'park', u'servic', u'air', u'fear', u'kosciuszko', u'wild']
[u'polic', u'examin', u'public', u'inform', u'walkway']
[u'polic', u'identifi', u'bodi', u'surf']
[u'polic', u'probe', u'gold', u'coast', u'fire']
[u'polic', u'probe', u'supermarket', u'break']
[u'polic', u'reflect', u'holiday', u'road', u'toll']
[u'polic', u'search', u'attack']
[u'polic', u'seek', u'bunburi', u'road', u'crash', u'wit']
[u'plater', u'face', u'hand', u'free', u'phone']
[u'pratt', u'stosur', u'knock', u'sydney', u'intern']
[u'princ', u'speedi', u'diana', u'inquest']
[u'privat', u'secur', u'patrol', u'success', u'nelson']
[u'probat', u'parol', u'offic', u'consid', u'industri']
[u'properti', u'tax', u'push', u'rent', u'say', u'expert']
[u'public', u'help', u'need', u'catch', u'school', u'vandal']
[u'public', u'urg', u'help', u'reduc', u'mossi', u'breed', u'sit']
[u'rafter', u'turn', u'offer', u'coach', u'hewitt']
[u'rann', u'popular', u'high', u'newspol']
[u'rare', u'crest', u'bandfish']
[u'ratepay', u'higher', u'resourc', u'manag', u'levi']
[u'rat', u'rise', u'fail', u'slow', u'consum', u'spend']
[u'resid', u'leav', u'gippsland', u'town', u'bushfir']
[u'resid', u'want', u'nois', u'pollut', u'report', u'releas']
[u'revamp', u'consid', u'captain', u'cook', u'highway']
[u'tinto', u'expans', u'expect', u'boost', u'dust']
[u'roddick', u'australian', u'open', u'assault']
[u'govt', u'offer', u'fund', u'storm', u'renmark', u'grower']
[u'scoobi', u'design', u'die']
[u'scorch', u'temperatur', u'store', u'canberra']
[u'scott', u'move', u'rank']
[u'second', u'saddam', u'death', u'video', u'releas']
[u'serena', u'blame', u'venus', u'poor', u'show', u'hobart']
[u'serena', u'hobart']
[u'expect', u'storm', u'help', u'call']
[u'ship', u'queue', u'newcastl', u'continu']
[u'ship', u'spot', u'metal', u'search', u'miss', u'plane']
[u'shire', u'share', u'communiti', u'project', u'fund']
[u'somali', u'presid', u'back', u'strike']
[u'consid', u'way', u'help', u'fruit', u'grower']
[u'street', u'griffith', u'silent', u'schoolboy', u'funer']
[u'studi', u'warn', u'drink', u'caffein', u'risk']
[u'coast', u'lifeguard', u'urg', u'beach', u'safeti']
[u'charg', u'stab']
[u'council', u'social', u'servic', u'call', u'brothel']
[u'tasmanian', u'forest', u'judgment', u'mileston']
[u'technolog', u'sector', u'boost', u'stock']
[u'thiev', u'blow', u'torch', u'servic', u'station', u'safe']
[u'timor', u'travel', u'advisori', u'upgrad']
[u'tourist', u'rescu', u'boat', u'capsiz']
[u'tropic', u'north', u'queensland']
[u'sturt', u'highway', u'crash']
[u'guilti', u'pitcairn', u'child']
[u'union', u'talk', u'region', u'school', u'merger']
[u'submarin', u'japanes', u'ship', u'collid']
[u'target', u'qaeda', u'somalia', u'report']
[u'farmer', u'power', u'fire', u'loom']
[u'fire', u'control']
[u'victoria', u'trash', u'toxic', u'wast', u'dump', u'plan']
[u'vike', u'probe', u'life', u'mar']
[u'pollut', u'contribut', u'lack', u'rain']
[u'govt', u'reaffirm', u'commit', u'hall', u'creek', u'hostel']
[u'platinum', u'project', u'move', u'closer', u'realiti']
[u'sheep', u'loss', u'reach', u'storm']
[u'wedgetail', u'crew', u'safe', u'sound', u'tasmania']
[u'whale', u'world', u'grant', u'year', u'leas', u'extens']
[u'wide', u'queensland']
[u'women', u'hide', u'camera', u'cairn', u'chang', u'room']
[u'kill', u'iraq', u'plane', u'crash']
[u'fund', u'announc', u'growth', u'forest']
[u'kill', u'baghdad', u'battl']
[u'kill', u'baghdad', u'fight']
[u'accomplic', u'appeal', u'year', u'sentenc']
[u'govt', u'elect', u'surgeri', u'delay']
[u'adelaid', u'dealer', u'admit', u'withhold', u'custom']
[u'adelaid', u'close', u'final', u'spot']
[u'pollut', u'part', u'blame', u'climat']
[u'black', u'prop', u'somervill', u'miss', u'super']
[u'ancic', u'hrbati']
[u'anti', u'whale', u'ship', u'label', u'pirat', u'vessel']
[u'open', u'room', u'develop', u'student']
[u'hoodwink']
[u'aurukun', u'calm', u'overnight', u'riot']
[u'aurukun', u'claim', u'assault', u'custodi']
[u'aurukun', u'riot', u'prompt', u'polic', u'better']
[u'beaconsfield', u'gold', u'optimist', u'mine']
[u'blair', u'condemn', u'manner', u'saddam', u'execut']
[u'blake', u'baghdati', u'cours', u'sydney', u'final']
[u'blood', u'test', u'determin', u'heart', u'attack', u'risk']
[u'brick', u'hous', u'requir', u'soil', u'swap']
[u'bridgetown', u'charg', u'cannabi']
[u'bring', u'norm']
[u'brisban', u'polic', u'receiv', u'call', u'bike', u'path']
[u'break', u'hill', u'council', u'sack', u'resort', u'hickey']
[u'break', u'hill', u'mine', u'death', u'investig']
[u'brothel', u'push', u'industri', u'underground', u'say', u'aid']
[u'brother', u'teen', u'remand', u'custodi', u'sydney']
[u'bureau', u'warn', u'flood']
[u'bush', u'brief', u'howard', u'iraq', u'plan']
[u'cairn', u'road', u'rage', u'lead', u'bash']
[u'call', u'groundwat', u'enter', u'drought', u'debat']
[u'crash', u'victim', u'await', u'govt', u'respons']
[u'cattleman', u'defi', u'alpin', u'graze']
[u'central', u'storm', u'knock', u'power']
[u'chines', u'growth', u'boost', u'decad']
[u'clijster', u'advanc', u'sydney']
[u'closer']
[u'closer']
[u'coal', u'dust', u'claim', u'investig']
[u'consum', u'confid', u'shrug', u'latest', u'rate', u'rise']
[u'contain', u'line', u'fire']
[u'councillor', u'quit', u'broom', u'council']
[u'council', u'reject', u'claim', u'blueprint', u'prevent']
[u'council', u'trip', u'cost']
[u'court', u'consid', u'prosecut']
[u'court', u'deni', u'accus', u'rocket', u'supplier', u'bail']
[u'court', u'reject', u'murdoch', u'appeal']
[u'court', u'rule', u'murdoch', u'appeal']
[u'dead', u'fish', u'leav', u'gippsland', u'beach']
[u'debnam', u'promis', u'review', u'marin', u'park', u'boundari']
[u'director', u'guild', u'nomine', u'contend']
[u'discrimin', u'muslim']
[u'doubt', u'cast', u'outback', u'council', u'merger']
[u'draper', u'critic', u'nation', u'crime', u'claim']
[u'drought', u'halv', u'summer', u'crop']
[u'drought', u'put', u'strain', u'hydro', u'tasmania', u'suppli']
[u'reliev', u'contain', u'grampian', u'blaze']
[u'england', u'vaughan', u'admit']
[u'england', u'look', u'rebound', u'seri']
[u'england', u'need', u'momentum', u'chang', u'say', u'collingwood']
[u'eurobodalla', u'record', u'strong', u'visitor', u'number']
[u'extra', u'polic', u'send', u'aurukun', u'riot']
[u'falconio', u'killer', u'lose', u'appeal']
[u'farmer', u'urg', u'check', u'irrig', u'pipelin']
[u'fast', u'bowl', u'concern', u'south', u'africa', u'pakistan']
[u'feder', u'battl', u'wind', u'stepanek']
[u'fiji', u'travel', u'warn', u'relax']
[u'film', u'produc', u'carlo', u'ponti', u'die']
[u'haze', u'melbourn', u'expect', u'clear']
[u'flood', u'damag', u'south', u'coast', u'highway', u'section']
[u'footbal', u'team', u'tackl', u'domest', u'violenc']
[u'hurt', u'mini', u'crash']
[u'rescu', u'strand', u'boat']
[u'fund', u'establish', u'renmark', u'storm', u'recoveri']
[u'fund', u'flow', u'nurs', u'centr', u'upgrad']
[u'gilgandra', u'hotel', u'demolit', u'continu']
[u'girl', u'hang', u'accident', u'coron', u'find']
[u'govt', u'sack', u'break', u'hill', u'council']
[u'govt', u'seek', u'back', u'releas', u'water', u'parch']
[u'govt', u'urg', u'help', u'histor', u'societi', u'blaze']
[u'grape', u'price', u'pick']
[u'greenpeac', u'add', u'anti', u'whale', u'arsenal']
[u'green', u'land', u'rezon', u'hous']
[u'griffith', u'death', u'prompt', u'call', u'peac', u'march']
[u'gulpilil', u'clear', u'carri', u'machet']
[u'gunner', u'destroy', u'liverpool', u'anfield']
[u'gunn', u'boss', u'worri', u'delay', u'pulp', u'plan']
[u'hawk', u'lose', u'bailey', u'knee', u'injuri']
[u'hazard', u'condit', u'total', u'declar']
[u'heat', u'exchang', u'plant']
[u'heavi', u'rain', u'blame', u'fish', u'death']
[u'hewson', u'howard']
[u'high', u'danger', u'goulburn', u'murray']
[u'high', u'speed', u'chase', u'end', u'hit']
[u'howard', u'brief', u'iraq', u'plan']
[u'human', u'blame', u'megafauna', u'extinct', u'studi']
[u'illawarra', u'properti', u'shortag', u'drive', u'rent']
[u'india', u'cold', u'snap', u'forc', u'school', u'closur']
[u'industri', u'help', u'boost', u'moura', u'hous', u'price']
[u'injur', u'campbel', u'train', u'titan']
[u'iraq', u'forc', u'target', u'terrorist', u'cell']
[u'crash', u'victim', u'undergo', u'facial', u'surgeri']
[u'jurien', u'communiti', u'bank']
[u'labor', u'lobbi', u'qanta', u'servic']
[u'labor', u'contractor', u'plan', u'fail', u'impress']
[u'labor', u'independ', u'contractor', u'legisl']
[u'larg', u'blaze', u'continu', u'burn', u'vic', u'south', u'west']
[u'latham', u'sidelin', u'stint', u'confirm']
[u'latrob', u'valley', u'fire', u'deliber']
[u'leongatha', u'plead', u'guilti', u'culpabl', u'drive']
[u'liber', u'push', u'broader', u'wheat', u'export']
[u'lightn', u'cut', u'kimberley', u'phone']
[u'hand', u'suspend', u'sentenc', u'servic', u'station']
[u'refus', u'bail', u'rocket', u'launcher', u'charg']
[u'sue', u'polic', u'follow', u'alterc']
[u'face', u'court', u'polic', u'pursuit']
[u'outlin', u'area', u'murray', u'consider']
[u'maroochi', u'council', u'reject', u'airport', u'plan']
[u'mauresmo', u'knock', u'sydney', u'intern']
[u'mayfield', u'park', u'tree', u'devast', u'diseas']
[u'mayor', u'visit', u'age', u'care', u'facil', u'claim']
[u'mental', u'health', u'servic', u'face', u'closur', u'opposit', u'say']
[u'announc', u'spark', u'hous', u'afford']
[u'miner', u'commit', u'uranium', u'prospect', u'despit', u'govt']
[u'miner', u'seek', u'work', u'staff', u'closur', u'loom']
[u'mix', u'reaction', u'trade', u'hour', u'decis']
[u'molik', u'crash', u'hobart', u'intern']
[u'molloy', u'say', u'tell', u'extra', u'fund', u'quiet']
[u'polic', u'fli', u'arakun', u'riot']
[u'urg', u'releas', u'ardglen', u'rail', u'tunnel', u'report']
[u'borah', u'road', u'upgrad', u'finish']
[u'murdoch', u'appeal', u'dismiss']
[u'murdoch', u'appeal', u'reject']
[u'murdoch', u'lawyer', u'consid', u'high', u'court', u'appeal']
[u'murdoch', u'lose', u'appeal', u'murder', u'convict']
[u'nation', u'want', u'ambul', u'equip']
[u'nation', u'want', u'tougher', u'tactic', u'tackl', u'region']
[u'law', u'forc', u'green', u'energi']
[u'night', u'ban', u'phone', u'plater']
[u'south', u'korean', u'nigerian', u'kidnap']
[u'request', u'troop', u'vail']
[u'north', u'age', u'facil', u'money', u'food']
[u'buy', u'uranium', u'bull']
[u'nrma', u'welcom', u'plate', u'restrict']
[u'price', u'drag', u'stock']
[u'opal', u'fuel', u'curb', u'substanc', u'abus', u'remot']
[u'orang', u'grower', u'guard', u'tree', u'drought']
[u'over', u'exempt', u'plate', u'restrict']
[u'palerang', u'land', u'valu', u'skyrocket']
[u'pari', u'plead', u'guilti', u'drink', u'drive']
[u'park', u'shake', u'elvi', u'festiv']
[u'philippin', u'soldier', u'kill', u'qaeda', u'link', u'bomb']
[u'plan', u'curb', u'koala', u'popul', u'delay']
[u'brief', u'iraq', u'plan']
[u'polic', u'steal']
[u'polic', u'indigen', u'relat', u'summit', u'need', u'activist']
[u'polic', u'probe', u'rockhampton', u'arson', u'attack']
[u'polic', u'question', u'woman', u'katherin', u'stab']
[u'polic', u'search', u'uncov', u'steal', u'credit', u'card']
[u'pont', u'gilchrist', u'disagre']
[u'princ', u'highway', u'death', u'toll', u'reach']
[u'project', u'revitalis', u'gorman']
[u'farmer', u'face', u'climat', u'extrem']
[u'health', u'tri', u'cover', u'patient', u'death', u'coron']
[u'opposit', u'want', u'helicopt', u'help', u'hunt']
[u'race', u'club', u'prepar']
[u'real', u'demand', u'profession', u'approach', u'player']
[u'realiti', u'suck']
[u'recov', u'steal', u'good', u'worth', u'polic']
[u'reddi', u'suspend', u'victori', u'clash']
[u'renew', u'push', u'recognit', u'korean', u'veteran']
[u'resid', u'prepar', u'evacu', u'near']
[u'resid', u'consult', u'jurien', u'jetti']
[u'retrench', u'miner', u'work', u'central', u'victoria']
[u'ripper', u'announc', u'futur', u'bandi', u'creek', u'harbour']
[u'rise', u'vacanc', u'help', u'curb', u'inflat']
[u'roddick', u'coach', u'australian', u'open']
[u'roebourn', u'shire', u'hop', u'creat', u'industri', u'buffer']
[u'sailor', u'rescu', u'whale', u'sink', u'yacht']
[u'salin', u'reduct', u'scheme', u'boost']
[u'minist', u'say', u'water', u'sell', u'poor', u'time']
[u'money', u'water']
[u'school', u'leaver', u'account', u'latest', u'jobless']
[u'second', u'death', u'hit', u'insur', u'tasmanian', u'devil']
[u'senat', u'urg', u'fact', u'mari', u'river']
[u'share', u'market', u'close', u'weaker', u'loss']
[u'shifcofsk', u'dismiss', u'wallabi', u'specul']
[u'snow', u'disappear', u'kosciuszko', u'csiro']
[u'soft', u'drink', u'maker', u'reject', u'call', u'restrict', u'sale']
[u'south', u'burnett', u'dam', u'reach', u'record', u'low']
[u'springbok', u'burger', u'make', u'comeback']
[u'state', u'feder', u'govt', u'pledg', u'esper', u'storm']
[u'support', u'stunt']
[u'support', u'grow', u'petit', u'oppos', u'wallaroo']
[u'surgeon', u'defend', u'doctor', u'name', u'coroni', u'inquiri']
[u'survey', u'find', u'investor', u'confid', u'amid', u'rate']
[u'suspect', u'member', u'arrest', u'franc']
[u'crew', u'alert', u'mari', u'area']
[u'deal', u'accus', u'plead', u'guilti']
[u'teen', u'bird', u'death', u'bring', u'indonesian', u'toll']
[u'tender', u'call', u'centr', u'visitor', u'attract']
[u'tennant', u'creek', u'thirsti', u'thursday', u'alcohol']
[u'possibl', u'sight', u'miss', u'polic']
[u'suspect', u'arrest', u'kill', u'timores']
[u'townsvill', u'region', u'women', u'children']
[u'toxin', u'blame', u'bird', u'death', u'esper']
[u'trade', u'deficit', u'drop']
[u'transfer', u'respons', u'prison', u'health']
[u'travel', u'retir', u'target', u'communiti', u'project']
[u'turnbul', u'question', u'water', u'sell']
[u'hospit', u'cape', u'jaffa', u'boat', u'recu']
[u'undervalu', u'welfar', u'properti', u'cost', u'govt']
[u'question', u'somalia', u'strike']
[u'worri', u'strike', u'somalia']
[u'uralla', u'woman', u'maintain', u'push', u'dental', u'wait']
[u'urin', u'thief', u'come', u'clean', u'british', u'polic']
[u'accus', u'launch', u'raid', u'somalia']
[u'soldier', u'plead', u'guilti', u'aggrav', u'assault']
[u'target', u'qaeda', u'somalia']
[u'vail', u'defend', u'hewson', u'attack']
[u'vandal', u'target', u'gold', u'coast', u'colleg']
[u'score', u'amend', u'school', u'leaver']
[u'venus', u'pull', u'australian', u'open', u'davydenko']
[u'govt', u'urg', u'look', u'altern', u'wast', u'site']
[u'victoria', u'edg', u'thriller']
[u'warn', u'issu', u'barossa', u'valley']
[u'warrego', u'water', u'auction', u'line', u'nation', u'plan']
[u'water', u'author', u'offer', u'alga', u'outbreak', u'assur']
[u'watermelon', u'glut', u'push', u'price']
[u'wenger', u'stand', u'youth', u'polici', u'anfield']
[u'west', u'hop', u'emus', u'predict', u'drought']
[u'william', u'pleas', u'magic', u'million', u'mount']
[u'woman', u'die', u'pacif', u'highway', u'crash']
[u'woman', u'return', u'face', u'murder', u'charg']
[u'work', u'free', u'wade', u'dinosaur', u'begin']
[u'yarrabah', u'worker', u'help', u'reliev', u'innisfail', u'labour']
[u'young', u'solicitor', u'urg', u'work', u'rural', u'area']
[u'youth', u'allow', u'review', u'begin']
[u'aborigin', u'communiti', u'face', u'holiday', u'water', u'woe']
[u'actew', u'urg', u'canberran', u'access', u'recycl']
[u'actress', u'yvonn', u'carlo', u'die']
[u'afghan', u'nato', u'forc', u'kill', u'insurg']
[u'alinta', u'resign', u'amid', u'specul']
[u'ambul', u'servic', u'need', u'support']
[u'ancic', u'reel', u'fish']
[u'arrest', u'spark', u'disturb', u'indigen', u'communiti']
[u'aurukun', u'keen', u'riot']
[u'aurukun', u'riot', u'blame', u'mistrust', u'justic']
[u'australia', u'cricket', u'everest', u'bracewel']
[u'backpack', u'inquest', u'delay']
[u'bali', u'smuggler', u'receiv', u'month', u'sentenc']
[u'belarus', u'resum', u'russian', u'shipment']
[u'go', u'green']
[u'blackout', u'leav', u'resid', u'dark']
[u'blake', u'confid', u'sydney', u'titl', u'defenc']
[u'blake', u'slam', u'davydenko', u'comment']
[u'bodi', u'near', u'indonesian', u'plane', u'wreckag']
[u'bris', u'polic', u'investig', u'suspect', u'murder', u'suicid']
[u'british', u'space', u'offici', u'play', u'moon', u'mission']
[u'burrup', u'area', u'driver', u'urg', u'care']
[u'bush', u'announc', u'troop', u'iraq']
[u'bush', u'expect', u'announc', u'iraq', u'plan']
[u'bushfir', u'threaten', u'victorian', u'town']
[u'bush', u'iraq', u'speech']
[u'bush', u'iraq']
[u'bush', u'outlin', u'iraq', u'plan']
[u'bush', u'outlin', u'plan', u'iraq']
[u'bush', u'outlin', u'plan', u'iraq', u'mistak']
[u'bush', u'pledg', u'troop', u'iraq']
[u'bush', u'say', u'iraq', u'plan', u'need', u'thwart', u'global']
[u'bush', u'unveil', u'iraq', u'plan']
[u'resid', u'help', u'water', u'lead', u'dust']
[u'cattl', u'council', u'embrac', u'privat', u'develop']
[u'central', u'face', u'tougher', u'water', u'ban']
[u'focus', u'buffalo', u'firefight', u'effort']
[u'chakvetadz', u'play', u'bardina', u'russia', u'final']
[u'chelsea', u'hold', u'draw', u'lowli', u'wycomb']
[u'civil', u'liberti', u'group', u'accus', u'prison', u'abus']
[u'closer']
[u'closer']
[u'coastal', u'popul', u'growth', u'outstrip', u'area']
[u'communiti', u'group', u'oppos', u'jetti', u'develop']
[u'compani', u'head', u'deni', u'austrad', u'grant', u'link']
[u'concern', u'koala', u'popul', u'follow']
[u'seek', u'tarkin', u'forest', u'heritag']
[u'convenor', u'hear', u'public', u'concern', u'decis']
[u'council', u'deni', u'land', u'sale', u'claim']
[u'council', u'hop', u'stop', u'weed', u'spread']
[u'council', u'look', u'salti', u'water', u'fish', u'breed', u'plan']
[u'councillor', u'quit', u'amidst', u'marina', u'corp', u'board', u'woe']
[u'council', u'flood', u'affect', u'resid']
[u'council', u'work', u'brisban', u'bikepath', u'safeti']
[u'cruis', u'ship', u'termin', u'face', u'delay']
[u'darl', u'down', u'hors', u'featur', u'magic', u'million']
[u'davydenko', u'fin', u'damag', u'comment']
[u'death', u'toll', u'rise', u'iraq']
[u'destruct', u'dighton', u'put', u'tiger', u'final']
[u'discrimin', u'plater']
[u'discrimin', u'tribun', u'find', u'scout', u'exempt']
[u'drought', u'declar', u'mudge', u'merriwa', u'region']
[u'econom', u'boom', u'improv', u'unemploy', u'rate']
[u'emerg', u'fodder', u'affect', u'farm']
[u'order', u'zinifex', u'environment', u'evalu']
[u'equip', u'steal', u'construct', u'site']
[u'esper', u'road', u'closur', u'frustrat', u'stock', u'feedlott']
[u'eyr', u'peninsula', u'rememb', u'black', u'tuesday', u'bushfir']
[u'feder', u'call', u'later', u'open', u'date']
[u'feder', u'clijster', u'tournament', u'final']
[u'feder', u'sharapova', u'seed', u'australian', u'open']
[u'fiji', u'long', u'democraci', u'commonwealth']
[u'firefight', u'assess', u'damag', u'eastern', u'victoria']
[u'firefight', u'battl', u'blaze']
[u'firefight', u'return', u'home', u'assign']
[u'safeti', u'boost', u'public', u'hous']
[u'fire', u'boost', u'blue', u'green', u'alga', u'threat']
[u'fire', u'wreak', u'havoc']
[u'threat', u'east', u'warrnambool', u'eas']
[u'bush', u'iraq', u'speech']
[u'forest', u'make', u'nundl', u'road', u'pledg']
[u'ethiopian', u'dictat', u'hand', u'life', u'sentenc']
[u'forum', u'debat', u'griffith', u'safeti', u'strategi']
[u'foster', u'hide', u'vanuatu', u'local', u'polic']
[u'ganguli', u'comeback']
[u'gari', u'glitter', u'consid', u'earli', u'releas']
[u'glider', u'crash']
[u'govt', u'contribut', u'willaura', u'hall', u'upgrad']
[u'govt', u'pledg', u'extra', u'parliamentari', u'staff']
[u'govt', u'promis', u'continu', u'militari', u'support', u'iraq']
[u'green', u'push', u'lismor', u'elector', u'chang']
[u'green', u'weigh', u'water', u'support', u'debat']
[u'grind', u'movement', u'blame', u'burst', u'water', u'main']
[u'grower', u'appeal', u'appl', u'import', u'rule']
[u'hawk', u'break', u'zealand']
[u'health', u'dept', u'issu', u'mozzi', u'warn', u'south', u'coast']
[u'hick', u'hold', u'account', u'prosecutor']
[u'highway', u'reopen', u'threat', u'eas']
[u'howard', u'back', u'iraq', u'strategi']
[u'howard', u'make', u'renew', u'call', u'hick', u'charg']
[u'hussey', u'stay', u'say', u'pont']
[u'indigen', u'rugbi', u'leagu', u'comp', u'youth']
[u'indigen', u'youth', u'join', u'rugbi', u'leagu', u'comp']
[u'inform', u'seek', u'east', u'coast', u'fire']
[u'inverel', u'servic']
[u'investig', u'continu', u'logan', u'murder', u'suicid']
[u'iraq', u'stragegi', u'review']
[u'iraq', u'violenc', u'escal', u'ahead', u'bush', u'speech']
[u'islam', u'associ', u'apologis', u'hilali']
[u'itali', u'seek', u'lose', u'leonardo', u'florenc', u'wall']
[u'jankov', u'meet', u'clijster', u'sydney', u'final']
[u'kangaloon', u'aquif', u'pump', u'trial', u'begin']
[u'laidback', u'singh', u'look', u'titl', u'boost', u'waiala']
[u'lake', u'bonney', u'water', u'level', u'drop', u'consid', u'inevit']
[u'lake', u'georg', u'blaze', u'control']
[u'liverpool', u'lose', u'garcia', u'season']
[u'mackay', u'cane', u'grower', u'play', u'world', u'market']
[u'magistr', u'grant', u'bail', u'centr', u'aurukun']
[u'charg', u'maningrida', u'disturb']
[u'kill', u'chopper', u'crash']
[u'shoot', u'dead', u'perth', u'chase']
[u'marin', u'slip', u'final', u'race']
[u'marlen', u'dietrich', u'lose', u'pearl', u'earring']
[u'mater', u'wont', u'provid', u'servic']
[u'mayor', u'urg', u'hand', u'free', u'phone', u'driver']
[u'melbourn', u'escap']
[u'milit', u'target', u'asean', u'summit', u'philippin', u'polic']
[u'minist', u'warn', u'tough', u'law', u'pulp']
[u'smut', u'resist', u'cane', u'estim']
[u'urg', u'local', u'holiday', u'home']
[u'gambier', u'retail', u'area', u'push']
[u'hurt', u'bruce', u'highway', u'crash']
[u'nation', u'unemploy', u'rate', u'steadi']
[u'ncoss', u'urg', u'plate', u'passeng', u'rethink']
[u'north', u'lime', u'grower', u'celebr', u'record', u'price']
[u'govt', u'fund', u'coff', u'sewerag', u'revamp']
[u'indigen', u'communiti', u'get', u'power', u'combat']
[u'polic', u'miss', u'tourist']
[u'nurs', u'graduat', u'head', u'bundaberg']
[u'sailor', u'central', u'hospit', u'yacht']
[u'seri', u'cakewalk', u'say', u'hussey']
[u'batteri', u'lead', u'stock', u'poison', u'warn']
[u'opposit', u'support', u'favour', u'victim']
[u'opposit', u'want', u'investig', u'yarragade']
[u'page', u'threaten', u'icac', u'council', u'sack']
[u'pakistan', u'toss', u'test']
[u'miss', u'indonesian', u'plane']
[u'perilya', u'offer', u'support', u'death']
[u'peterson', u'surgeri']
[u'owner', u'porkier', u'research', u'show']
[u'philippin', u'insurg', u'offer', u'help', u'asean']
[u'pilbara', u'women', u'appoint', u'rural', u'refer', u'group']
[u'plan', u'lower', u'trucki', u'drive', u'time']
[u'polic', u'commission', u'arrest']
[u'polic', u'appeal', u'help', u'school', u'attack']
[u'polic', u'continu', u'probe', u'fatal', u'stoni']
[u'polic', u'investig', u'train', u'station', u'death']
[u'polic', u'open', u'mind', u'sydney', u'woman', u'death']
[u'polic', u'reject', u'aurukun', u'assault', u'claim']
[u'polic', u'seek', u'public', u'help', u'catch', u'beach', u'killer']
[u'polic', u'urg', u'demolit', u'derelict', u'school']
[u'polic', u'work', u'establish', u'motiv', u'appar', u'perth']
[u'poor', u'visibl', u'hinder', u'firefight', u'effort']
[u'premier', u'silenc', u'pulp', u'creat', u'concern']
[u'priest', u'reject', u'harsher', u'penalti']
[u'prosecutor', u'comment', u'expos', u'sham', u'trial', u'hickss']
[u'push', u'continu', u'hospit']
[u'govt', u'defend', u'plan', u'sell', u'warrego', u'river', u'water']
[u'health', u'consid', u'patient', u'death', u'cover']
[u'buy', u'auction', u'water', u'say']
[u'rain', u'lessen', u'bushfir', u'risk']
[u'rain', u'postpon', u'pump', u'plan']
[u'rate', u'rise', u'hold', u'amid', u'wagga', u'council', u'probe']
[u'reliabl', u'bowen', u'water', u'suppli', u'long', u'overdu', u'mayor']
[u'resid', u'ask', u'report', u'dead', u'bird']
[u'ripper', u'pledg', u'post', u'storm', u'fisher']
[u'ronaldson', u'join', u'elit']
[u'rudd', u'doubt', u'traveston', u'senat', u'probe']
[u'safin', u'reset', u'goal', u'ahead', u'open']
[u'polic', u'continu', u'campaign', u'stop', u'crime']
[u'satellit', u'technolog', u'aid', u'scientist', u'seal']
[u'schammer', u'delay', u'comeback']
[u'changer', u'face', u'cost', u'surpris']
[u'offend', u'escap', u'rehabilit', u'facil']
[u'sharapova', u'defend', u'unpopular', u'open', u'schedul']
[u'share', u'market', u'rise', u'dollar', u'strengthen']
[u'shire', u'clarifi', u'highway', u'misinform']
[u'shoaib', u'asif', u'name', u'pakistan', u'world', u'squad']
[u'shot', u'fire', u'self', u'defenc', u'polic']
[u'south', u'gippsland', u'tourist', u'railway', u'track']
[u'staff', u'shortag', u'affect', u'moral', u'launceston']
[u'stage', u'famili', u'affair']
[u'helen', u'dredg', u'complet']
[u'stock', u'damag', u'peak', u'hill', u'hardwar', u'store', u'blaze']
[u'steal', u'snake', u'pose', u'dead', u'risk']
[u'stoner', u'pledg', u'grain', u'valley', u'revamp']
[u'student', u'technic', u'colleg', u'cours']
[u'coast', u'lifesav', u'test']
[u'super', u'fund', u'lure', u'profession']
[u'suspect', u'murder', u'suicid', u'logan']
[u'suspens', u'put', u'medic', u'staff', u'pressur']
[u'sydney', u'water', u'supplement', u'plan', u'sham', u'say']
[u'compani', u'harvest', u'type', u'poppi']
[u'council', u'appeal', u'drought', u'relief']
[u'devil', u'death', u'stump', u'handler']
[u'crew', u'call', u'blaze', u'north']
[u'tcci', u'dismiss', u'qanta', u'fear']
[u'surg', u'bush', u'calcul', u'gambl']
[u'hospit', u'woolgoolga', u'crash']
[u'titan', u'threat', u'bronco', u'gillmeist']
[u'toad', u'buster', u'claim', u'breed', u'cycl', u'interrupt']
[u'total']
[u'keeper', u'reddi']
[u'urban', u'develop', u'eyesor']
[u'challeng', u'fresh', u'charg', u'hick']
[u'defenc', u'contractor', u'discov', u'bug', u'coin']
[u'deni', u'second', u'strike', u'somalia']
[u'forc', u'raid', u'iranian', u'govt', u'offic', u'iraq']
[u'market', u'ralli', u'late', u'close', u'higher']
[u'prosecutor', u'talk', u'tough', u'hick', u'case']
[u'vanuatu', u'polic', u'hunt', u'foster']
[u'score', u'increas', u'mark', u'error']
[u'consum', u'warn', u'dodgi', u'internet', u'auction']
[u'crew', u'brace', u'extrem', u'danger']
[u'victorian', u'polic', u'corrupt', u'deep', u'seat']
[u'victoria', u'total']
[u'violent', u'crimin', u'sentenc', u'crime', u'spree']
[u'volunt', u'help', u'clean', u'renmark', u'storm']
[u'warm', u'temperatur', u'elev', u'danger']
[u'tourism', u'council', u'seek', u'skill', u'worker', u'oversea']
[u'tourism', u'sector', u'need', u'worker', u'industri']
[u'wheatbelt', u'tri', u'seawe', u'cash', u'crop']
[u'woman', u'appear', u'court', u'accus', u'kill']
[u'weakley', u'drive', u'interchang', u'overpric', u'overdu']
[u'weather', u'bureau', u'say', u'nino', u'weaken']
[u'white', u'johnson', u'name', u'australian']
[u'white', u'name', u'australian']
[u'whyalla', u'council', u'switch', u'green', u'power']
[u'woman', u'kill', u'head', u'collis']
[u'wreckag', u'miss', u'indonesian', u'airlin']
[u'yanner', u'aurukun']
[u'yuendumu', u'elect', u'council']
[u'job', u'creat', u'process', u'claim']
[u'manag', u'psychopath', u'research']
[u'action', u'iran', u'syria', u'escal', u'conflict']
[u'make', u'chang', u'youth', u'protect', u'polici']
[u'adamstown', u'charg', u'belmont', u'north', u'shoot']
[u'adrift', u'cargo', u'ship', u'miss', u'murdoch', u'platform']
[u'aeropelican', u'eye', u'tamworth', u'region', u'flight']
[u'alic', u'bottleshop', u'complain', u'local', u'bottl']
[u'alleg', u'adelaid', u'gang', u'member', u'face', u'youth', u'court']
[u'angouri', u'surf', u'reserv']
[u'apec', u'decid', u'india', u'membership']
[u'arsonist', u'fear', u'reignit', u'blaze']
[u'dead', u'indonesian', u'landslid']
[u'question', u'drop', u'rate', u'blake', u'advanc']
[u'aurukun', u'offic', u'reloc', u'riot']
[u'aussi', u'coast', u'victori']
[u'aussi', u'cruis', u'victori']
[u'aussi', u'fare', u'open', u'draw']
[u'aussi', u'target', u'victori']
[u'aust', u'appoint', u'solomon', u'high', u'commission']
[u'australian', u'bowler', u'smother', u'england', u'charg']
[u'aust', u'specialist', u'help', u'cambodian', u'diabet']
[u'balmi', u'weather', u'creat', u'slipperi', u'set']
[u'bandi', u'creek', u'damag', u'freak', u'storm']
[u'bash', u'death', u'prompt', u'offer', u'social', u'servic']
[u'beckham', u'join', u'massiv', u'contract']
[u'beck', u'galaxi']
[u'crowd', u'expect', u'farewel', u'crash', u'victim']
[u'blake', u'defend', u'sydney', u'titl', u'resurg', u'moya']
[u'blast', u'report', u'embassi', u'athen']
[u'bligh', u'call', u'petri', u'terrac', u'redevelop', u'plan']
[u'bodi', u'creek', u'suspici', u'polic']
[u'boodere', u'nation', u'park', u'boost', u'indigen', u'job']
[u'boucher', u'eye', u'world', u'record']
[u'brumbi', u'coach', u'eye', u'heat', u'advantag']
[u'bushfir', u'move', u'properti']
[u'bushfir', u'rage', u'eastern', u'victoria']
[u'bushfir', u'threaten', u'properti', u'north', u'east']
[u'cahil', u'return', u'boost', u'everton']
[u'cake', u'crumb', u'lead', u'polic', u'robber']
[u'canberran', u'blow', u'water', u'target', u'beat', u'heat']
[u'clijster', u'beat', u'jankov', u'sydney', u'final']
[u'closer']
[u'closer']
[u'cootamundra', u'resid', u'evacu', u'silo']
[u'council', u'lobbi', u'crop']
[u'coupl', u'refus', u'bail', u'alleg', u'procur']
[u'court', u'rule', u'whitsunday', u'coast', u'airport', u'ownership']
[u'crew', u'contain', u'bold', u'bushfir']
[u'crew', u'continu', u'battl', u'bushfir']
[u'crew', u'monitor', u'lake', u'georg', u'bushfir']
[u'democrat', u'vote', u'bush', u'stem', u'cell']
[u'demonstr', u'demand', u'guantanamo', u'closur']
[u'disgust', u'hilali', u'comment']
[u'doubt', u'remain', u'auspin', u'sawmil', u'futur']
[u'downer', u'say', u'sheik', u'comment', u'take', u'serious']
[u'project', u'address', u'rural', u'skill', u'shortag']
[u'drought', u'impact', u'west', u'wimmera', u'roadwork']
[u'drought', u'short', u'irrig', u'firm', u'season']
[u'dri', u'banrock', u'station', u'wetland', u'expect', u'boost']
[u'east', u'timor', u'polic', u'chief', u'resign']
[u'elder', u'stand', u'trial', u'child']
[u'emerg', u'restrict', u'eas', u'bangladesh']
[u'word']
[u'park', u'teen', u'hurt', u'hors', u'fall']
[u'england', u'bat']
[u'evacu', u'step', u'silo', u'concern']
[u'fall', u'road', u'accid', u'account']
[u'farm', u'accid', u'investig']
[u'father', u'fear', u'hick', u'life']
[u'fear', u'iran', u'syria', u'action', u'escal', u'iraq', u'conflict']
[u'feder', u'rover', u'plan', u'merger']
[u'final', u'line', u'roar', u'victori']
[u'firefight', u'continu', u'battl', u'north', u'blaze']
[u'fossil', u'sit', u'heritag', u'list']
[u'ganguli', u'make', u'india', u'comeback', u'sehwag', u'drop']
[u'gilgandra', u'mayor', u'wont', u'seek', u'nation', u'preselect']
[u'good', u'head', u'star', u'line']
[u'goulburn', u'farewel', u'kill', u'ultralight', u'crash']
[u'govt', u'committe', u'investig', u'wheat', u'export']
[u'govt', u'highlight', u'boost', u'season', u'visitor', u'number']
[u'govt', u'say', u'doomadge', u'mayor', u'disqualifi']
[u'govt', u'unveil', u'plan', u'secur', u'water', u'suppli']
[u'grant', u'allow', u'region', u'technolog', u'train']
[u'green', u'group', u'claim', u'land', u'clear', u'creat', u'eros']
[u'group', u'claim', u'athen', u'embassi', u'attack']
[u'grower', u'fear', u'impact', u'relax', u'appl', u'import']
[u'health', u'minist', u'want', u'report', u'offend']
[u'heavi', u'rain', u'prompt', u'avoid', u'fink', u'track']
[u'hick', u'trial', u'delay', u'frustrat', u'govern']
[u'high', u'wind', u'hamper', u'wind', u'farm', u'work']
[u'hockeyroo', u'coach', u'furious', u'tournament', u'time']
[u'holiday', u'park', u'offer', u'home', u'caravan', u'park']
[u'hollywood', u'boost', u'north', u'tourism']
[u'weather', u'headach', u'crew']
[u'houn', u'valley', u'celebr', u'festiv', u'mileston']
[u'howard', u'pay', u'tribut', u'colleagu', u'killen']
[u'interchang', u'work', u'expect', u'boost', u'hunter', u'economi']
[u'iran', u'condemn', u'raid']
[u'iran', u'syria', u'action', u'escal', u'iraq', u'conflict', u'rudd']
[u'iraq', u'govt', u'support', u'bush', u'strategi']
[u'irrig', u'consid', u'class', u'action', u'govt']
[u'justin', u'timberlak', u'cameron', u'diaz', u'confirm', u'split']
[u'king', u'soul', u'jam', u'brown', u'buri']
[u'koperberg', u'start', u'polit', u'career']
[u'lead', u'group', u'urg', u'smelter', u'town', u'separ']
[u'lennon', u'assur', u'gunn', u'pulp', u'commit']
[u'lennon', u'refus', u'break', u'pulp', u'task', u'forc']
[u'lightn', u'spark', u'alpin', u'fire']
[u'lismor', u'oppos', u'elector', u'chang']
[u'livestock', u'slaughter', u'rat', u'year', u'high']
[u'malawian', u'children', u'need', u'rescu', u'say', u'madonna']
[u'centr', u'aurukun', u'riot', u'repeat', u'assault']
[u'fatal', u'shoot', u'polic', u'crimin', u'record']
[u'man', u'bodi', u'creek']
[u'face', u'trial', u'accus', u'wineri', u'bomb', u'plot']
[u'psychiatr', u'review', u'polic', u'stand']
[u'marathon', u'announc', u'flinder', u'rang', u'uranium']
[u'maroochi', u'councillor', u'fear', u'polit', u'smear', u'campaign']
[u'meet', u'seek', u'stop', u'mainten', u'worker']
[u'railway', u'section', u'reopen', u'derail']
[u'miner', u'prais', u'boost', u'norseman', u'job']
[u'miss', u'safe']
[u'miss', u'woman', u'dead', u'crash']
[u'monsoon', u'trough', u'move', u'north', u'say', u'bureau']
[u'moral', u'debt', u'iraq']
[u'time', u'need', u'investig', u'bodi', u'boot', u'case']
[u'air', u'harbour', u'develop', u'concern']
[u'want', u'communiti', u'remind', u'weapon']
[u'mufti', u'comment', u'spark', u'outrag']
[u'budget', u'carrier', u'perth', u'singapor', u'rout']
[u'jellyfish', u'name', u'professor']
[u'windfarm', u'power', u'home']
[u'scheme', u'promis', u'boost', u'tourism', u'standard']
[u'slam', u'plan', u'wheat', u'kickback', u'inquiri']
[u'northam', u'merger', u'get', u'financi', u'boost']
[u'northern', u'slop', u'rlpb', u'stop', u'travel', u'stock']
[u'north', u'west', u'central', u'escap', u'major', u'fire']
[u'govt', u'say', u'opposit', u'plan', u'hurt', u'tweed']
[u'govt', u'consid', u'commonwealth', u'water', u'plan']
[u'govt', u'urg', u'rural', u'dentist', u'promis']
[u'opposit', u'demand', u'break', u'hill', u'council']
[u'oyster', u'theft', u'caus', u'health', u'concern']
[u'tighten', u'restrict', u'offend']
[u'assault', u'rate', u'outstrip', u'nation', u'averag']
[u'govt', u'slam', u'feder', u'childcar', u'figur']
[u'ntini', u'take', u'pakistan']
[u'set', u'cane', u'toad', u'departur', u'loung']
[u'offici', u'defend', u'kangaloon', u'water', u'pump', u'plan']
[u'opposit', u'green', u'slam', u'staff', u'boost']
[u'oversea', u'demand', u'help', u'rais', u'wool', u'price']
[u'pengilli', u'takeov', u'penfold', u'portfolio']
[u'perilya', u'product', u'resum', u'death']
[u'petrol', u'price', u'reflect', u'plung', u'say']
[u'phone', u'messag', u'alert', u'resid', u'futur', u'local']
[u'pilot', u'diabet', u'contribut', u'fatal']
[u'polic', u'arrest', u'newcastl', u'stab', u'murder']
[u'polic', u'charg', u'aurukun', u'riot']
[u'polic', u'commission', u'reject', u'solomon']
[u'polic', u'drink', u'driver']
[u'polic', u'offic', u'undergo', u'surgeri', u'stab']
[u'polic', u'forc', u'schutzenfest']
[u'poynton', u'consid', u'quit', u'alinta', u'board']
[u'poynton', u'quit', u'alinta', u'board']
[u'protest', u'mark', u'guantanamo', u'prison', u'anniversari']
[u'public', u'rezon', u'plan']
[u'public', u'transport', u'demand', u'increas']
[u'public', u'urg', u'remain', u'vigil', u'framlingham']
[u'buy', u'cheap', u'cattl', u'drought']
[u'govt', u'releas', u'aquacultur', u'green', u'paper']
[u'health', u'deni', u'patient', u'death', u'cover', u'claim']
[u'region', u'victoria', u'experi', u'mix', u'tourism', u'season']
[u'report', u'injuri', u'death']
[u'resourc', u'push', u'market']
[u'offer', u'incent', u'continu', u'oper']
[u'roar', u'clinch', u'stoppag', u'time', u'thriller']
[u'rocket', u'fire', u'embassi', u'athen']
[u'roddick', u'tackl', u'feder', u'kooyong', u'final']
[u'govt', u'probe', u'robe', u'district', u'council', u'claim']
[u'govt', u'urg', u'focus', u'highway', u'mainten']
[u'healthcar', u'compani', u'defend', u'govt', u'grant']
[u'salvo', u'begin', u'drought', u'appeal']
[u'scientist', u'develop', u'resist', u'cattl']
[u'scout', u'drought', u'communiti', u'boost']
[u'search', u'port', u'hedland', u'hous', u'land']
[u'search', u'uncov', u'indonesian', u'plane', u'wreckag']
[u'second', u'round', u'flood', u'devast', u'malaysia', u'south']
[u'offend', u'law', u'tough', u'opposit']
[u'sheik', u'comment', u'spark', u'outrag']
[u'sheikh', u'welcom', u'stay', u'away', u'say', u'vanston']
[u'jam', u'killen', u'die', u'age']
[u'jam', u'killen', u'die']
[u'smoke', u'spark', u'region', u'push']
[u'socceroo', u'open', u'olymp', u'qualifi', u'adelaid']
[u'soldier', u'get', u'year', u'iraq', u'kill']
[u'south', u'africa', u'fight', u'pakistan']
[u'south', u'african', u'strong', u'magic', u'million']
[u'south', u'west', u'firefight', u'high', u'alert']
[u'state', u'funer', u'honour', u'jam', u'killen']
[u'storm', u'victim', u'urg', u'disast']
[u'strike', u'crippl', u'zimbabw', u'health']
[u'strike', u'threat', u'loom', u'push', u'orang', u'polic']
[u'suicid', u'fear', u'david', u'hick']
[u'surf', u'safeti', u'measur', u'revis']
[u'survey', u'find', u'resid', u'worri', u'higher', u'live']
[u'sydney', u'hospit', u'defend', u'treatment', u'asylum', u'seeker']
[u'sydney', u'face', u'court', u'gerringong']
[u'aquif', u'eas', u'water', u'shortag', u'analyst']
[u'swimmer', u'warn', u'sting', u'pack', u'slug']
[u'technic', u'fault', u'leav', u'part', u'canberra', u'black']
[u'technolog', u'stock', u'push', u'wall', u'street', u'higher']
[u'teen', u'face', u'court', u'robberi', u'spree']
[u'telstra', u'accus', u'doubl', u'standard']
[u'temporari', u'weir', u'propos', u'murray', u'river']
[u'thai', u'charter', u'chief', u'see', u'elect', u'decemb']
[u'toothbrush', u'lodg', u'detaine', u'abdomen']
[u'tomato', u'grower', u'head', u'gunnedah']
[u'tour', u'delay', u'histor', u'plan', u'arriv']
[u'town', u'honour', u'race', u'great', u'gunsynd']
[u'trainer', u'confid', u'beadman', u'magic', u'million', u'victori']
[u'train', u'reliabl', u'good']
[u'traveston', u'senat', u'inquiri', u'decis']
[u'hick']
[u'turmoil', u'reveal', u'break', u'hill']
[u'turtl', u'tag', u'begin', u'dirk', u'hartog']
[u'unit', u'wari', u'wound', u'chelsea']
[u'embassi', u'athen', u'missil', u'report']
[u'indonesian', u'ship', u'search', u'miss', u'jet', u'black']
[u'say', u'iraq', u'govt', u'borrow', u'time']
[u'unwelcom', u'iraq']
[u'vanuatu', u'polic', u'search', u'conman', u'foster']
[u'bushfir', u'claim', u'home']
[u'bushfir', u'condit', u'eas']
[u'bushfir', u'threat', u'remain', u'despit', u'eas']
[u'viladom', u'take', u'sixth', u'stage', u'dakar', u'ralli']
[u'gold', u'miner', u'take', u'bendigo', u'mine', u'stake']
[u'govt', u'extend', u'drought']
[u'grower', u'angri', u'cherri', u'aphid']
[u'waterway', u'user', u'warn', u'spinal', u'injuri', u'threat']
[u'weather', u'bureau', u'get', u'fund', u'boost']
[u'woman', u'die', u'lake', u'entranc', u'crash']
[u'work', u'begin', u'young', u'park', u'playground']
[u'workplac', u'audit', u'target', u'region']
[u'young', u'artist', u'give', u'help', u'hand']
[u'youth', u'coalit', u'call', u'driver', u'educ', u'fund']
[u'adelaid', u'snatch', u'victori']
[u'arsonist', u'blame', u'perth', u'fire']
[u'asean', u'leader', u'meet', u'philippin']
[u'asean', u'nation', u'agre', u'form', u'bloc']
[u'asif', u'return', u'wicket', u'pakistan']
[u'aussi', u'wont', u'treat', u'black', u'cap', u'light', u'clark']
[u'beach', u'close', u'blue', u'bottl']
[u'bird', u'break', u'japan']
[u'blair', u'say', u'continu', u'fight', u'war']
[u'blair', u'vow', u'maintain', u'britain', u'hard', u'power', u'role']
[u'blake', u'thwart', u'moya', u'comeback', u'retain', u'sydney', u'titl']
[u'blast', u'fear', u'evacue', u'away']
[u'blaze', u'advanc', u'properti']
[u'bond', u'take', u'queen', u'bafta', u'race']
[u'miss', u'aliv']
[u'bushrang', u'final']
[u'bush', u'strategi', u'divid', u'politician']
[u'inquiri', u'high', u'accident', u'death', u'rat']
[u'capit', u'outlast', u'ranger']
[u'chakvetadz', u'win', u'russian', u'hobart', u'final']
[u'chessel', u'reflect', u'antarct', u'climb', u'feat']
[u'chilli', u'plan', u'antarct', u'station', u'turn']
[u'china', u'face', u'mass', u'gender', u'imbal']
[u'china', u'russia', u'veto', u'resolut', u'burma']
[u'clash', u'somali', u'talk']
[u'closer']
[u'closer']
[u'comoro', u'volcano', u'erupt']
[u'cootamundra', u'evacue', u'face', u'long', u'wait']
[u'cootamundra', u'evacue', u'face', u'lengthi', u'wait']
[u'cootamundra', u'evacue', u'face', u'long', u'wait']
[u'crew', u'battl', u'contain', u'direct', u'blaze']
[u'crew', u'step', u'effort', u'fire', u'threaten', u'home']
[u'crew', u'work', u'neutralis', u'toxic']
[u'cum', u'claim', u'magic', u'million']
[u'depp', u'film', u'litvinenko', u'poison']
[u'villier', u'take', u'dakar', u'ralli', u'lead']
[u'donald', u'catch', u'hawaiian', u'lead']
[u'donald', u'hand', u'struggl', u'soni', u'open']
[u'drink', u'driver', u'crash', u'hous']
[u'dubbo', u'bushfir', u'burn', u'control']
[u'dutch', u'favourit', u'claim', u'champion', u'trophi']
[u'elvi', u'train', u'attract', u'thousand']
[u'emerg', u'expert', u'renmark', u'storm', u'recoveri']
[u'england', u'replac', u'injur', u'pietersen']
[u'england', u'provision', u'world', u'squad']
[u'exclus', u'zone', u'remain', u'burn', u'silo']
[u'fall', u'tree', u'kill', u'forestri', u'worker']
[u'father', u'search', u'miss']
[u'ferrer', u'beat', u'robredo', u'auckland', u'final']
[u'ferrer', u'robredo', u'spanish', u'final']
[u'crew', u'prepar', u'worsen', u'condit']
[u'firefight', u'battl', u'alpin', u'blaze']
[u'leav', u'nurs', u'home', u'sever', u'damag']
[u'fisherman', u'die', u'rivercat', u'accid']
[u'fleme', u'prim', u'mcgrath', u'duel']
[u'argentin', u'presid', u'arrest', u'spain']
[u'galleri', u'display', u'steve', u'irwin', u'portrait']
[u'gate', u'timet', u'troop', u'withdraw']
[u'ghan', u'carri', u'fewer', u'passeng', u'repair', u'continu']
[u'govern', u'wast', u'time', u'wheat', u'committe']
[u'govt', u'skill', u'shortag']
[u'grain', u'silo', u'fear', u'fear', u'eas']
[u'head', u'bangladesh', u'interim', u'govern', u'swear']
[u'healey', u'miss', u'main', u'draw']
[u'help', u'agenc', u'discuss', u'rise', u'depress', u'level']
[u'high', u'commiss', u'urg', u'museum', u'test']
[u'game', u'glitz', u'say', u'beckham']
[u'injuri', u'coach', u'rift', u'fail', u'dampen', u'hewitt', u'hop']
[u'iraqi', u'militia', u'send', u'warn', u'american', u'troop']
[u'iraqi', u'endors', u'plan']
[u'jackson', u'pay', u'overdu', u'pharmaci', u'bill']
[u'jazz', u'festiv', u'attract', u'thousand']
[u'race', u'event', u'expand']
[u'landi', u'call', u'french', u'dope', u'board']
[u'lennon', u'continu', u'pulp', u'project']
[u'lifeguard', u'prepar', u'busi', u'mercuri', u'rise']
[u'mactier', u'claim', u'nation', u'road', u'titl']
[u'centr', u'arukun', u'riot', u'arrest']
[u'centr', u'aurukun', u'riot', u'arrest']
[u'crush', u'water', u'tank']
[u'injur', u'rivercat', u'collis', u'die']
[u'injur', u'sydney', u'polic', u'chase']
[u'face', u'court', u'newcastl', u'cafe', u'murder']
[u'mexican', u'state', u'approv', u'union']
[u'miss', u'dead', u'desert']
[u'deni', u'victimis', u'polic', u'arrest']
[u'mulrunji', u'famili', u'court', u'case', u'review']
[u'murray', u'show', u'faith', u'young', u'hockeyroo', u'squad']
[u'bangladeshi', u'interim', u'leader', u'swear']
[u'blaze', u'fuel', u'arsonist', u'fear']
[u'plan', u'scrap', u'olymp', u'park', u'develop']
[u'regret', u'rank', u'slump', u'say', u'serena']
[u'bushfir', u'threaten', u'properti']
[u'nurs', u'home', u'prompt', u'evacu']
[u'fashion', u'council', u'decid', u'skinni', u'model']
[u'pacif', u'ocean', u'quak', u'spark', u'tsunami', u'warn']
[u'pakistan', u'reject', u'qaeda', u'strengthen', u'soil']
[u'palestinian', u'urg', u'clash']
[u'parti', u'play', u'blame', u'game', u'bankruptci', u'figur']
[u'pietersen', u'distraught', u'tour', u'exit']
[u'polic', u'furious', u'illeg', u'drag', u'turn', u'violent']
[u'polish', u'church', u'probe', u'alleg', u'communist']
[u'properti', u'owner', u'alert', u'ember', u'attack']
[u'meet', u'arukun', u'mayor']
[u'polic', u'investig', u'suspici', u'fire']
[u'quad', u'bike', u'grandpa', u'charg', u'drink', u'drive']
[u'quak', u'prompt', u'tsunami', u'warn']
[u'razorback', u'scrape', u'victori', u'hawk']
[u'real', u'estat', u'group', u'reject', u'land', u'shortag', u'report']
[u'reshuffl', u'strengthen', u'liber', u'say', u'evan']
[u'resid', u'alert', u'ember', u'attack']
[u'rice', u'deni', u'escal', u'iraq']
[u'roddick', u'final', u'snap', u'lose', u'streak', u'feder']
[u'ruddock', u'attempt', u'euthanasia', u'book']
[u'ruddock', u'appeal', u'sale', u'euthanasia', u'book']
[u'russian', u'banker', u'court', u'contract', u'kill']
[u'russian', u'billionair', u'question', u'prostitut']
[u'sadr', u'aid', u'say', u'troop', u'return', u'coffin']
[u'sadr', u'send', u'warn', u'american', u'troop']
[u'silo', u'blast', u'fear', u'eas', u'crew', u'progress']
[u'small', u'tsunami', u'hit', u'japan']
[u'somalia', u'declar', u'martial']
[u'somalian', u'troop', u'seiz', u'islamist', u'base']
[u'somali', u'warlord', u'agre', u'disarm']
[u'somlia', u'warlord', u'agre', u'merg', u'forc']
[u'spirit', u'good']
[u'lanka', u'flood', u'leav', u'displac']
[u'stowaway', u'skunk', u'stick', u'canada']
[u'hop', u'piec', u'convict', u'histori']
[u'forc', u'road', u'closur']
[u'bounti', u'extend']
[u'tatong', u'blaze', u'close', u'home']
[u'teen', u'critic', u'brown', u'snake', u'bite']
[u'toddler', u'earth', u'move', u'equip']
[u'tsunami', u'fear', u'eas', u'wave', u'japan']
[u'tyson', u'indict', u'drug', u'charg']
[u'continu', u'fight', u'war', u'blair']
[u'union', u'say', u'foreign', u'trucki', u'jeopardis', u'safeti']
[u'wont', u'troop', u'withdraw', u'timet']
[u'veteran', u'come', u'lanka']
[u'bush', u'fire', u'close', u'properti']
[u'bushfir', u'threat']
[u'resid', u'eye', u'open', u'european', u'wasp']
[u'water', u'plan', u'lack', u'long', u'term', u'vision']
[u'win', u'wildcat', u'slinger']
[u'author', u'hunt', u'arsonist']
[u'celebr', u'anniversari']
[u'asean', u'china', u'sign', u'econom', u'deal']
[u'soldier', u'shoot', u'baghdad']
[u'soldier', u'shoot', u'truck', u'driver', u'baghdad']
[u'australia', u'charg', u'hobart']
[u'australian', u'leav', u'mark', u'coffe', u'industri']
[u'australian', u'troop', u'kill', u'truck', u'driver', u'baghdad']
[u'australian', u'troop', u'shoot', u'baghdad']
[u'australia', u'beller']
[u'author', u'investig', u'forestri', u'worker', u'death']
[u'baghdati', u'return', u'begin']
[u'blaze', u'contain', u'kangaroo']
[u'blaze', u'near', u'dubbo', u'challeng', u'crew']
[u'bluebottl', u'warn', u'beach']
[u'boat', u'sink', u'lake', u'catch']
[u'bond', u'claim', u'trick', u'australia', u'post']
[u'breaker', u'post', u'easi', u'victori']
[u'brisban', u'ralli', u'sexual', u'assault']
[u'british', u'troop', u'kill', u'iraq', u'afghanistan']
[u'bush', u'answer', u'iraq', u'plan', u'critic']
[u'bush', u'hit', u'iraq', u'plan', u'critic']
[u'call', u'educ', u'risk', u'fall']
[u'cancer', u'link', u'level']
[u'cancer', u'patient', u'warn', u'avoid']
[u'capit', u'strong', u'boomer']
[u'carl', u'sculli', u'quit', u'polit']
[u'centurion', u'test', u'even', u'pois', u'asif', u'haul']
[u'child', u'health', u'report', u'show', u'posit', u'trend']
[u'clinton', u'doubt', u'iraq', u'plan', u'succeed']
[u'closer']
[u'closer']
[u'commentari', u'highlight', u'australia', u'zealand']
[u'communiti', u'help', u'destroy', u'nurs']
[u'cootamundra', u'resid', u'allow', u'return', u'home']
[u'crew', u'burn', u'control', u'dubbo', u'blaze']
[u'crew', u'continu', u'monitor', u'cootamundra', u'silo']
[u'crew', u'monitor', u'cootamundra', u'silo']
[u'crew', u'plan', u'burn', u'night']
[u'crew', u'stabilis', u'grain', u'silo', u'gas']
[u'crew', u'work', u'contain', u'blaze']
[u'crew', u'work', u'avert', u'silo', u'explos']
[u'crew', u'work', u'contain', u'tamar', u'valley', u'blaze']
[u'critic', u'honour', u'scorses', u'depart']
[u'debnam', u'promis', u'educ', u'cours', u'plate']
[u'dubbo', u'bushfir', u'destroy', u'shed']
[u'dubbo', u'properti', u'threat']
[u'easi', u'win', u'chelsea', u'liverpool']
[u'elder', u'man', u'bodi', u'backyard']
[u'england', u'bring', u'tresco']
[u'espanyol', u'thump', u'barca']
[u'explos', u'gas', u'stabilis', u'cootamundra', u'silo']
[u'ferri', u'death', u'prompt', u'inquiri']
[u'fire', u'feder', u'prim', u'happi', u'slam']
[u'firefight', u'battl', u'damag', u'top', u'hectar']
[u'threat', u'home', u'eas', u'kangaroo']
[u'fish', u'coupl', u'reel', u'live', u'mortar', u'shell']
[u'foster', u'arrest', u'vanuatu']
[u'green', u'slam', u'murray', u'darl', u'weir', u'plan']
[u'hair', u'umpir', u'kenya']
[u'harrog', u'resid', u'warn', u'catch']
[u'heal', u'process', u'begin', u'steal', u'generat']
[u'help', u'public', u'seek', u'armidal', u'man', u'death']
[u'hockeyroo', u'fli', u'start']
[u'howard', u'arriv', u'philippin', u'asian', u'summit']
[u'howard', u'confid', u'secur', u'asian', u'summit']
[u'howard', u'head', u'asian', u'summit']
[u'howel', u'hold', u'stroke', u'lead', u'hawaii']
[u'interview', u'ricki', u'pont', u'andrew', u'symond']
[u'investig', u'ferri', u'death']
[u'iran', u'demand', u'releas', u'diplomat']
[u'iranian', u'presid', u'begin', u'latin', u'america', u'tour']
[u'itali', u'convict', u'nazi', u'massacr']
[u'kangaroo', u'threaten', u'home']
[u'kyli', u'pull', u'halfway']
[u'lifesav', u'reviv', u'elder', u'woman']
[u'long', u'night', u'resid', u'rag']
[u'arrest', u'alleg', u'leav', u'kid']
[u'drown', u'south', u'bruni', u'island']
[u'kill', u'australian', u'troop', u'baghdad']
[u'mauresmo', u'confid', u'head', u'melbourn']
[u'middl', u'east', u'peac', u'process', u'acceler', u'rice']
[u'miss', u'teen', u'reunit', u'parent']
[u'mortar', u'shell', u'activ']
[u'motorcyclist', u'die', u'decept']
[u'mourinho', u'keep', u'chelsea', u'guess']
[u'plan', u'water', u'tank', u'turnbul']
[u'crew', u'expect', u'tough', u'condit']
[u'collaps', u'hand', u'australia', u'crush']
[u'fight', u'beller']
[u'opposit', u'say', u'govt', u'fail', u'region', u'rape', u'victim']
[u'pakistan', u'india', u'agre', u'peac', u'talk']
[u'deal', u'end', u'palestinian', u'strike']
[u'perth', u'paddl', u'steamer', u'crash', u'bridg']
[u'leav', u'east', u'asia', u'summit']
[u'podcast', u'australia', u'zealand', u'hobart']
[u'polic', u'charg', u'kidnap']
[u'polic', u'fear', u'teen', u'miss', u'trail', u'bike', u'ride']
[u'polic', u'investig', u'diver', u'death']
[u'polic', u'point', u'desert', u'danger', u'bodi']
[u'polic', u'probe', u'fatal', u'hous']
[u'rampant', u'inter', u'italian', u'record']
[u'real', u'tell', u'beckham', u'youll', u'play']
[u'crystal', u'emblem']
[u'rescu', u'worker', u'hunt', u'survivor', u'brazil']
[u'resid', u'allow', u'home', u'silo', u'blast', u'fear', u'eas']
[u'resid', u'polic', u'ralli', u'bike', u'path', u'attack']
[u'rice', u'begin', u'middl', u'east', u'tour']
[u'rice', u'middl', u'east', u'fresh', u'peac', u'push']
[u'rice', u'start', u'east', u'tour', u'plan']
[u'rudd', u'welcom', u'baghdad', u'shoot', u'investig']
[u'russia', u'admit', u'pipelin', u'tarnish', u'reput']
[u'scientologist', u'berlin', u'recruit', u'drive']
[u'sculli', u'admit', u'leadership', u'loss', u'dream', u'dash']
[u'sculli', u'look', u'forward', u'life', u'polit']
[u'sculli', u'quit', u'polit']
[u'search', u'miss', u'fisherman', u'scale']
[u'search', u'miss', u'fisherman']
[u'secur', u'issu', u'domin', u'asean', u'summit']
[u'silo', u'explos', u'fear', u'eas']
[u'spanish', u'protest', u'march', u'demand', u'terror']
[u'surf', u'campaign', u'school']
[u'sydney', u'adelaid', u'battl', u'second']
[u'sydney', u'ferri', u'deepli', u'regret', u'fatal', u'accid']
[u'sydney', u'teenag', u'charg', u'light', u'bushfir']
[u'teen', u'die', u'snake', u'bite']
[u'thailand', u'put', u'panda', u'carb', u'diet']
[u'thousand', u'ralli', u'bush', u'pakistan']
[u'dead', u'road', u'hour']
[u'kill', u'thai', u'train', u'crash']
[u'tiger', u'point', u'razorback']
[u'tradespeopl', u'want', u'antarctica']
[u'troop', u'follow', u'rule', u'engag']
[u'truck', u'industri', u'defend', u'plan', u'employ', u'foreign']
[u'girl', u'injur', u'crash']
[u'question', u'molotov', u'cocktail']
[u'unit', u'climb', u'ladder', u'jet', u'stay', u'touch']
[u'say', u'arrest', u'iranian', u'tie', u'group', u'arm']
[u'bushfir', u'destroy', u'hectar']
[u'victorian', u'resid', u'bushfir', u'alert']
[u'town', u'remain', u'high', u'alert']
[u'polic', u'dismay', u'road', u'toll']
[u'water', u'restrict', u'anger', u'swim', u'pool', u'industri']
[u'water', u'stay', u'public', u'hand', u'govt']
[u'water', u'supplier', u'defend', u'consult']
[u'water', u'tank', u'report', u'wrong', u'commiss', u'say']
[u'wind', u'push', u'home']
[u'drink', u'driver', u'catch', u'weekend', u'polic', u'blitz']
[u'accid', u'prompt', u'danger', u'warn']
[u'adamczak', u'william', u'advanc', u'second', u'round']
[u'releas', u'doctor', u'handov', u'guidelin']
[u'welcom', u'hobart', u'hospit']
[u'anti', u'cancer', u'chicken', u'egg', u'develop']
[u'architect', u'judg', u'design', u'hobart', u'waterfront']
[u'arthur', u'win', u'injuri', u'toll', u'mount', u'melbourn']
[u'asian', u'nation', u'pledg', u'promot', u'biofuel']
[u'aussi', u'athlet', u'london', u'game', u'facil']
[u'aussi', u'start', u'open', u'campaign']
[u'aust', u'china', u'agre', u'clean', u'coal', u'pact']
[u'aust', u'china', u'unit', u'cleaner', u'coal']
[u'australia', u'want', u'ash', u'test', u'time']
[u'aust', u'take', u'pacif', u'partnership', u'serious', u'say']
[u'avocado', u'industri', u'predict', u'boom']
[u'backyard', u'pub', u'close', u'hoteli']
[u'baghdati', u'pressur', u'open']
[u'barcaldin', u'rev']
[u'barn', u'destroy', u'boat', u'motorcycl']
[u'rise', u'dubbo', u'homeless']
[u'brawl', u'erupt', u'open']
[u'build', u'begin', u'riverina', u'power', u'station']
[u'bush', u'administr', u'untroubl', u'public', u'opposit']
[u'bushfir', u'shroud', u'melbourn', u'smoke']
[u'bush', u'iraq', u'plan', u'ahead', u'despit', u'public']
[u'buyer', u'snap', u'point', u'boston', u'land']
[u'caldecott', u'trust', u'net']
[u'canegrow', u'say', u'member', u'busi', u'sugar']
[u'cattalini', u'face', u'tribun']
[u'chaytor', u'deni', u'assault', u'affair', u'claim']
[u'chrysali', u'committe', u'meet', u'union']
[u'claim', u'balconi', u'death', u'cover', u'reject']
[u'coff', u'harbour', u'resid', u'warn', u'dodgi', u'tradesmen']
[u'coliban', u'water', u'storag', u'fall']
[u'comet', u'stargaz']
[u'communiti', u'polic', u'program', u'expand']
[u'compens', u'claim', u'possibl', u'confisc', u'car']
[u'concern', u'price', u'fall', u'pass']
[u'conman', u'foster', u'bar']
[u'cootamundra', u'silo', u'continu', u'burn']
[u'cootamundra', u'silo', u'burn']
[u'councillor', u'call', u'refuge', u'settlement', u'report']
[u'council', u'sack', u'put', u'pressur', u'river', u'action', u'group']
[u'council', u'powerless', u'stop', u'poki', u'guthri']
[u'crew', u'brace', u'worsen', u'weather']
[u'dad', u'save', u'daughter', u'drown']
[u'desert', u'tragedi', u'claim', u'indigen', u'artist']
[u'desper', u'farmer', u'sink', u'record', u'bore']
[u'villier', u'strengthen', u'grip', u'dakar', u'ralli']
[u'disabl', u'surf', u'challeng']
[u'diseas', u'fear', u'rise', u'flood', u'strike', u'malaysia']
[u'doctor', u'rort', u'medicar', u'watch', u'close']
[u'doctor', u'medicar', u'fraud']
[u'door', u'shut', u'japanes', u'whaler', u'say', u'campbel']
[u'driver', u'die', u'singl', u'vehicl', u'crash']
[u'driver', u'urg', u'slow', u'road', u'toll']
[u'drought', u'dairi', u'industri', u'vote', u'research', u'levi']
[u'drought', u'put', u'pressur', u'livestock']
[u'drought', u'take', u'toll', u'melbourn', u'tree']
[u'retreat', u'propon', u'plan', u'natur', u'reserv']
[u'elmor', u'farewel', u'australian', u'scout', u'jambore']
[u'emerald', u'revamp']
[u'probe', u'tree', u'vandal', u'claim']
[u'esper', u'area', u'storm', u'kill', u'sheep']
[u'euabalong', u'west', u'derail', u'cut', u'track']
[u'extra', u'crew', u'call', u'fight', u'blaze']
[u'feder', u'govt', u'accus', u'neglect', u'port', u'access', u'road']
[u'feder', u'surviv', u'earli', u'scare', u'phau']
[u'govt', u'boost', u'fund', u'southern', u'gateway', u'tourism']
[u'fesa', u'warn', u'weather']
[u'fewer', u'land', u'visitor', u'head', u'port', u'augusta']
[u'firefight', u'contain', u'kangaroo', u'blaze']
[u'firefight', u'control', u'pilliga', u'forest', u'blaze']
[u'fish', u'farm', u'test', u'environment', u'impact']
[u'fish', u'reel', u'fourth', u'seed', u'ljubic']
[u'forest', u'fund', u'come', u'late', u'indigen', u'group']
[u'foster', u'safe', u'extradit', u'home']
[u'foster', u'face', u'vanuatu', u'court']
[u'foster', u'vanuatu', u'court']
[u'fresh', u'inquest', u'sydney', u'millionair', u'death']
[u'fuel', u'price', u'competit', u'welcom', u'alic', u'spring']
[u'futur', u'hampden', u'bridg', u'debat']
[u'govern', u'order', u'food', u'regul', u'review']
[u'govern', u'investig', u'univers', u'shortag']
[u'govt', u'name', u'wheat', u'market', u'panel']
[u'govt', u'seek', u'talk', u'tamworth', u'council']
[u'govt', u'leav', u'damag', u'school', u'stand']
[u'goydo', u'end', u'drought', u'hawaii']
[u'graduat', u'fee', u'debt', u'excess', u'govt', u'say']
[u'grain', u'storag', u'firm', u'open', u'water', u'tank', u'factori']
[u'grazier', u'disbelief', u'drought', u'relief', u'delay']
[u'half', u'brother', u'saddam', u'hang', u'report']
[u'harboursid', u'plan', u'attract', u'submiss']
[u'health', u'chief', u'promis', u'better', u'support', u'region']
[u'health', u'dept', u'investig', u'river', u'contamin']
[u'hockeyroo', u'past', u'germani']
[u'home', u'loan', u'fall', u'fourth', u'straight', u'month']
[u'hoogi', u'swim', u'beij']
[u'howard', u'back', u'troop', u'iraq', u'shoot']
[u'howard', u'back', u'troop', u'shoot']
[u'howard', u'chines', u'premier', u'hold', u'trade', u'talk']
[u'howard', u'discuss', u'china', u'free', u'trade', u'deal']
[u'hundr', u'final', u'goodby', u'break', u'hill', u'miner']
[u'iluka', u'look', u'eas', u'concern', u'water']
[u'indigen', u'golfer', u'head', u'alic', u'spring']
[u'inmat', u'rampag', u'hobart', u'remand', u'centr']
[u'inter', u'point', u'clear', u'roma', u'slip']
[u'iran', u'press', u'ahead', u'nuclear', u'plan']
[u'iraq', u'confirm', u'saddam', u'aid', u'execut']
[u'israel', u'announc', u'settlement', u'expans']
[u'jellyfish', u'sting', u'gold', u'coast', u'beach']
[u'joyc', u'pietersen']
[u'kokoda', u'pool', u'close', u'briefli', u'repair']
[u'labor', u'delay', u'decis', u'chaytor', u'futur']
[u'labor', u'parti', u'lay', u'blame', u'break', u'hill', u'council']
[u'lake', u'bonney', u'liaison', u'offic', u'face', u'local', u'opposit']
[u'section', u'pringl', u'seal']
[u'liber', u'peak', u'hour', u'taxi', u'licenc']
[u'lobster', u'season', u'paus', u'replenish', u'stock']
[u'magic', u'million', u'sale']
[u'magic', u'million', u'showcas', u'hunter', u'stud', u'success']
[u'malaysia', u'flood', u'displac']
[u'die', u'rollov']
[u'hospit', u'mildura', u'stab']
[u'court', u'accus', u'attempt', u'murder']
[u'mauresmo', u'eas', u'second', u'round']
[u'meet', u'fail', u'reach', u'agreement', u'forest']
[u'meet', u'focus', u'surf', u'safeti']
[u'melbourn', u'toddler', u'receiv', u'doubl', u'cochlear', u'implant']
[u'milk', u'tanker', u'driver', u'die', u'near', u'rosedal']
[u'minist', u'visit', u'unrest', u'aurukun']
[u'miss', u'safe', u'bendigo']
[u'mission', u'want', u'halfway', u'hous', u'detent']
[u'bike', u'path', u'attack', u'polic']
[u'motorcyclist', u'die', u'head', u'crash']
[u'moy', u'reveal', u'cahil', u'concern']
[u'back', u'laurenc', u'street', u'palm', u'visit']
[u'dob', u'water', u'breach']
[u'urg', u'faster', u'coramba', u'contamin', u'clean']
[u'isa', u'power', u'station', u'see', u'short', u'term']
[u'murray', u'darl', u'water', u'suppli', u'plan', u'sensibl']
[u'need', u'sustain', u'region', u'water', u'author']
[u'fund', u'bolster', u'power', u'grid', u'cyclon', u'proof']
[u'land', u'rule', u'invest', u'properti']
[u'plan', u'tasmania', u'west', u'coast']
[u'restrict', u'rais', u'concern', u'region']
[u'exposur', u'messag', u'develop']
[u'survey', u'track', u'drought', u'relief', u'success']
[u'case', u'rate', u'hike', u'say']
[u'danger', u'tactic', u'campbel', u'urg', u'whaler']
[u'coalit', u'attack', u'plan', u'reactiv']
[u'ogradi', u'win', u'frame', u'mind']
[u'ogradi', u'want', u'tour']
[u'student', u'miss', u'place']
[u'pakistan', u'lodg', u'complaint', u'abus', u'comment']
[u'park', u'spin', u'elvi', u'world', u'record']
[u'plan', u'test', u'aborigin', u'remain', u'unchang', u'museum']
[u'playwright', u'dramatis', u'bushfir']
[u'back', u'troop', u'iraq', u'shoot']
[u'rais', u'stake', u'china']
[u'tell', u'polic', u'chief', u'command']
[u'polic', u'bolster', u'crime', u'fight']
[u'polic', u'break', u'brawl', u'open']
[u'polic', u'break', u'open', u'brawl']
[u'polic', u'clash', u'parti', u'goer']
[u'polic', u'gang', u'squad', u'arrest']
[u'polic', u'hope', u'desert', u'death', u'probe', u'prevent', u'futur']
[u'polic', u'investig', u'armidal', u'decapit']
[u'polic', u'meet', u'councillor', u'nobl', u'park', u'hoon']
[u'polic', u'plane', u'get', u'emerg', u'relief', u'revamp']
[u'polic', u'ponder', u'park', u'restrict', u'prevent']
[u'polic', u'probe', u'yass', u'nurs', u'home', u'blaze']
[u'polic', u'search', u'miss']
[u'polic', u'tight', u'lip', u'armidal', u'death']
[u'polic', u'unabl', u'confirm', u'knife', u'wagga']
[u'polic', u'warn', u'sever', u'penalti', u'arson']
[u'pont', u'miss', u'england', u'clash']
[u'port', u'lincoln', u'resid', u'oppos', u'sale', u'public', u'squar']
[u'protea', u'hear', u'abus', u'pakistani']
[u'public', u'help', u'seek', u'catch', u'vandal']
[u'rate', u'hike', u'fail', u'stop', u'consum', u'price', u'rise']
[u'real', u'final', u'beckham']
[u'recycl', u'water', u'system', u'save', u'litr']
[u'renmark', u'storm', u'tornado']
[u'research', u'discov', u'alzheim', u'gene']
[u'resid', u'lodg', u'appeal', u'commerci']
[u'resid', u'rifl', u'rang', u'plan']
[u'reveal', u'real', u'cost', u'degre', u'union', u'urg', u'govt']
[u'roar', u'miss', u'suspend', u'pair']
[u'roddick', u'tsonga', u'scare']
[u'roger', u'join', u'titan']
[u'saddam', u'half', u'brother', u'hang', u'report']
[u'satellit', u'tracker', u'provid', u'insight', u'seal']
[u'cage', u'aquacultur', u'harm', u'tourism']
[u'second', u'attempt', u'newcastl', u'market']
[u'seiz', u'car', u'return', u'legal', u'bungl', u'reveal']
[u'share', u'close', u'record', u'high']
[u'shearer', u'die', u'road', u'crash']
[u'skin', u'cancer', u'clinic', u'alleg', u'rort', u'medicar']
[u'soundshel', u'build', u'tribut', u'wast', u'dump']
[u'speedway', u'star', u'arrest', u'fight']
[u'stallon', u'back', u'beckham', u'knockout']
[u'john', u'call', u'ambul', u'volunt']
[u'stoner', u'reject', u'torbay', u'debat']
[u'storm', u'dump', u'rain']
[u'subsidis', u'pool', u'industri', u'difficult', u'opposit']
[u'sydney', u'student', u'break', u'solar', u'road', u'trip', u'record']
[u'farm', u'nomin', u'world', u'heritag', u'list']
[u'orchard', u'cash', u'cherri', u'export']
[u'tate', u'back', u'newcastl', u'landmark', u'heritag', u'list']
[u'tatong', u'blaze', u'jump', u'contain', u'line']
[u'tension', u'flare', u'iranian', u'arrest', u'iraq']
[u'charg', u'cairn', u'street', u'brawl']
[u'toowoomba', u'host', u'fungal', u'resist', u'cotton', u'crop', u'trial']
[u'tourist', u'visa', u'avail', u'hungarian', u'onlin']
[u'traine', u'doctor', u'boost', u'toowoomba', u'hospit']
[u'truck', u'driver', u'die', u'weekend', u'crash']
[u'charg', u'drug', u'traffic']
[u'underground', u'power', u'line', u'improv', u'local']
[u'vaidisova', u'stutter', u'second', u'round', u'melbourn']
[u'crew', u'brace', u'worsen', u'condit']
[u'govt', u'accus', u'shut', u'western', u'rail', u'line']
[u'die', u'south', u'east', u'crash']
[u'victorian', u'firefight', u'steadi', u'progress']
[u'govt', u'wont', u'forc', u'council', u'merger']
[u'water', u'offic', u'enforc', u'restrict']
[u'weather', u'keep', u'resid', u'high', u'alert']
[u'west', u'coast', u'mayor', u'reject', u'aha', u'backyard', u'concern']
[u'whyalla', u'look', u'reclaim', u'biggest', u'region', u'citi']
[u'wilder', u'societi', u'gunn', u'argu', u'pulp']
[u'wine', u'processor', u'abus', u'market', u'power', u'grower']
[u'woman', u'die', u'roll']
[u'woman', u'bodi', u'nation', u'park']
[u'woman', u'splurg', u'toy', u'game', u'steal', u'credit']
[u'work', u'begin', u'mount', u'barker', u'colleg', u'project']
[u'yousuf', u'join', u'team', u'second', u'test']
[u'zamia', u'gold', u'share', u'price', u'doubl', u'week']
[u'accc', u'demand', u'drop', u'petrol', u'price']
[u'accc', u'demand', u'lower', u'petrol', u'price']
[u'acrod', u'call', u'transpar', u'disabl', u'fund']
[u'urg', u'releas', u'legal', u'advic']
[u'help', u'polic', u'unveil', u'backyard', u'oper']
[u'alderman', u'call', u'anzac', u'hill', u'clean']
[u'alinta', u'chief', u'chairman', u'resign', u'offer']
[u'weather', u'airstrip', u'open', u'western']
[u'amnesti', u'chechen', u'rebel', u'expir']
[u'analyst', u'predict', u'drop', u'properti', u'market']
[u'ancient', u'grave', u'wash', u'away', u'esper', u'storm']
[u'anti', u'cancer', u'chicken', u'egg', u'develop']
[u'anti', u'violenc', u'campaign', u'spread', u'cairn']
[u'arm', u'robber', u'ambush', u'tavern', u'manag']
[u'asean', u'summit', u'conclud']
[u'asham']
[u'athlet', u'australia', u'announc', u'competit']
[u'australian', u'face', u'drug', u'charg', u'singapor']
[u'australian', u'golfer', u'face', u'asia']
[u'babel', u'dreamgirl', u'strike', u'globe', u'gold']
[u'bait', u'fish', u'lure', u'shark', u'near', u'beach']
[u'ballarat', u'face', u'harsher', u'water', u'restrict']
[u'barwon', u'candid', u'urg', u'earlier', u'walgett', u'council']
[u'beckham', u'accus', u'mislead', u'real']
[u'bigger', u'reward', u'littl', u'help', u'solv', u'bourk']
[u'black', u'cap', u'struggl']
[u'blake', u'straight', u'set', u'moya']
[u'bligh', u'deni', u'plan', u'privatis', u'water', u'water']
[u'blue', u'fight']
[u'bodi', u'drown', u'test', u'alcohol']
[u'botch', u'iraq', u'hang', u'anger', u'sunni']
[u'brake', u'problem', u'caus', u'major', u'delay', u'melbourn']
[u'bushfir', u'leav', u'victoria', u'power']
[u'busselton', u'polic', u'seiz', u'high', u'speed', u'chase']
[u'busi', u'year', u'ahead', u'mackay', u'builder']
[u'polic', u'charg', u'tenni', u'brawl']
[u'caltex', u'deni', u'petrol', u'price', u'high']
[u'canberra', u'restaur', u'fin', u'underpay', u'worker']
[u'capriati', u'plan', u'comeback']
[u'crash', u'victim', u'underwat', u'day', u'polic']
[u'castro', u'condit', u'spanish', u'newspap']
[u'cattalini', u'cop', u'fine', u'umpir', u'abus']
[u'child', u'care', u'fee', u'rise', u'port', u'piri']
[u'church', u'prepar', u'brothel', u'fight']
[u'clark', u'pack', u'rap', u'court', u'hear']
[u'clark', u'quit', u'warrior']
[u'classi', u'nadal', u'surg', u'past', u'kendrick']
[u'clijster', u'hingi', u'storm', u'second', u'round']
[u'closer']
[u'closer']
[u'coff', u'harbour', u'sewer', u'work', u'finish']
[u'colombian', u'rebel', u'attack', u'kill', u'soldier']
[u'comet', u'mcnaught', u'dazzl', u'million']
[u'controversi', u'surround', u'iraq', u'execut']
[u'correa', u'swear', u'ecuadorian', u'presid']
[u'council', u'wimmera', u'unit', u'care', u'kinder']
[u'crew', u'battl', u'spot', u'fire', u'amid', u'wind']
[u'crew', u'struggl', u'control', u'spot', u'fire']
[u'croatian', u'serbian', u'leader', u'condemn', u'tenni', u'violenc']
[u'david', u'jone', u'share', u'surg', u'christma', u'profit']
[u'doha', u'prioriti', u'say', u'rudd']
[u'emerg', u'crew', u'head', u'west', u'sever', u'storm']
[u'eurobodalla', u'pipelin', u'price', u'rise', u'rais', u'doubt']
[u'labor', u'councillor', u'consid', u'quit']
[u'fail', u'london', u'bomber', u'court']
[u'fail', u'tertiari', u'applic', u'tell', u'reassess', u'career']
[u'fairi', u'grass', u'pose', u'threat']
[u'fall', u'number', u'cancel', u'jazz', u'festiv']
[u'farm', u'group', u'cast', u'doubt', u'aquif', u'water']
[u'faulti', u'cabl', u'spark', u'coal', u'safeti', u'fear']
[u'feder', u'govt', u'help', u'davenport', u'aborigin', u'communiti']
[u'fiji', u'swear', u'chief', u'justic']
[u'firebug', u'find', u'target']
[u'firefight', u'hope', u'beat', u'wind', u'push', u'contain']
[u'manag']
[u'kill', u'indonesian', u'train', u'derail']
[u'forestri', u'lose', u'work', u'day']
[u'workshop', u'transform', u'unit']
[u'soldier', u'win', u'benefit']
[u'face', u'court', u'polic', u'raid', u'weapon']
[u'freddi', u'come', u'england', u'rescu']
[u'golden', u'globe']
[u'goorjian', u'cattalini', u'fin']
[u'govern', u'say', u'seizur', u'glitch']
[u'govern', u'welcom', u'accc', u'petrol', u'warn']
[u'govt', u'back', u'villag', u'roadshow', u'landmark', u'rule']
[u'govt', u'cost', u'cut', u'newstart', u'throsbi']
[u'govt', u'defend', u'pest', u'manag', u'effort']
[u'green', u'group', u'worri', u'stock', u'damag', u'barmah', u'wetland']
[u'griffith', u'council', u'vote', u'supermarket', u'develop']
[u'harcourt', u'valley', u'appl', u'grower', u'surviv', u'mode']
[u'hick', u'right']
[u'hill', u'crossin', u'feder', u'labor']
[u'holbrook', u'submarin', u'museum', u'open', u'replica', u'control']
[u'howard', u'asia', u'summit']
[u'huge', u'winter', u'storm', u'leav', u'dead']
[u'investor', u'snap', u'magic', u'million', u'bargain']
[u'japan', u'confirm', u'bird', u'outbreak']
[u'jockey', u'trainer', u'hand', u'lengthi', u'track', u'ban']
[u'comment', u'young', u'driver']
[u'judg', u'criticis', u'dismiss', u'assault', u'charg']
[u'kilkivan', u'hold', u'meet', u'discuss', u'water', u'need']
[u'landcar', u'group', u'say', u'take', u'tree', u'poison']
[u'land', u'chang', u'wont', u'address', u'rental', u'shortag']
[u'lennard', u'shelf', u'zinc', u'near', u'product']
[u'lockyer', u'aim', u'world', u'club', u'challeng', u'return']
[u'mackay', u'beach', u'safe', u'jellyfish']
[u'charg', u'mackay', u'stand']
[u'charg', u'byron', u'fatal', u'stab']
[u'jail', u'brisban', u'attack']
[u'jail', u'roadsid', u'sexual', u'assault']
[u'plead', u'guilti', u'break', u'hill', u'theft']
[u'plead', u'guilti', u'indec', u'assault']
[u'maoist', u'rebel', u'join', u'nepal', u'parliament']
[u'mayor', u'urg', u'parent', u'care', u'children']
[u'mayor', u'welcom', u'uranium', u'explor', u'plan']
[u'north', u'coast', u'club', u'breach', u'workplac']
[u'mildura', u'maverick', u'aust', u'comp']
[u'doctor', u'renmark']
[u'sheep', u'bobundara']
[u'victoria', u'power']
[u'mulrunji', u'wit', u'dead']
[u'nalbandian', u'come', u'exhaust']
[u'nation', u'propos', u'discount', u'holiday']
[u'newcastl', u'launch', u'mental', u'health', u'nurs', u'cours']
[u'jellyfish', u'speci']
[u'decis', u'recov', u'black', u'hawk']
[u'farmer', u'urg', u'appli', u'incom', u'support']
[u'north', u'lucki', u'record', u'zero', u'christma', u'road', u'toll']
[u'combat', u'truck', u'driver', u'fatigu']
[u'govt', u'approv', u'need', u'newfield', u'wind', u'farm']
[u'nrma', u'join', u'petrol', u'price', u'attack', u'compani']
[u'opposit', u'pledg', u'rescu', u'boat', u'upgrad', u'plan']
[u'warn', u'appl', u'import']
[u'compani', u'press', u'fuel', u'price']
[u'compani', u'price', u'pressur']
[u'open', u'suspend', u'play', u'heatwav', u'bite']
[u'opposit', u'fear', u'poki', u'central']
[u'opposit', u'want', u'prison', u'rioter', u'foot', u'damag']
[u'oyster', u'theft', u'prompt', u'grower', u'secur']
[u'pakistan', u'launch', u'strike', u'milit', u'camp']
[u'trucki', u'deserv']
[u'pension', u'travel', u'voucher', u'book', u'unfair']
[u'perth', u'bunburi', u'highway', u'project', u'forc', u'detour']
[u'pichi', u'richi', u'marathon', u'threat']
[u'say', u'moti', u'affair', u'dead', u'issu']
[u'pngs', u'refus', u'appear', u'moti', u'inquiri']
[u'polic', u'investig', u'cairn', u'babi', u'death']
[u'polic', u'investig', u'gold', u'coast', u'shoot', u'death']
[u'polic', u'progress', u'desert', u'death', u'investig']
[u'polic', u'organis', u'ethnic', u'brawl', u'alert']
[u'polic', u'probe', u'suspici', u'fire']
[u'polic', u'puzzl', u'tourist', u'disappear']
[u'polic', u'search', u'attack', u'ampute']
[u'polic', u'work', u'school', u'help', u'tackl', u'crime']
[u'port', u'lincoln', u'councillor', u'lodg', u'complaint']
[u'port', u'macquari', u'push', u'govt', u'pacif']
[u'power', u'outag', u'victoria']
[u'prison', u'director', u'say', u'rioter', u'demand']
[u'public', u'school', u'fund', u'inadequ', u'confer', u'hear']
[u'qanta', u'lower', u'fuel', u'surcharg']
[u'govt', u'move', u'ahead', u'kawana', u'hospit', u'site']
[u'opposit', u'want', u'lockyer', u'valley', u'cattl']
[u'probe', u'derail', u'near', u'cloncurri']
[u'question', u'right', u'hold', u'hick']
[u'racq', u'want', u'answer', u'petrol', u'price', u'dispar']
[u'racv', u'urg', u'accc', u'patient', u'fuel', u'price', u'chang']
[u'rain', u'help', u'dous', u'forest']
[u'rare', u'plant', u'help', u'fight', u'fungus']
[u'research', u'test', u'anti']
[u'resid', u'alert', u'break', u'control', u'line']
[u'resid', u'warn', u'prepar', u'mozzi']
[u'resid', u'warn', u'prepar', u'snake']
[u'resid', u'urg', u'sign', u'fatal', u'crash']
[u'revamp', u'plan', u'port', u'hedland', u'sport', u'facil']
[u'rfds', u'expand', u'femal', u'scheme']
[u'rice', u'foreshadow', u'peac', u'summit']
[u'rice', u'hold', u'peac', u'talk', u'olmert', u'abba']
[u'road', u'crash', u'victim', u'wear', u'seatbelt', u'polic']
[u'road', u'death', u'decreas']
[u'roger', u'return', u'leagu', u'turn', u'ankl']
[u'roundabout', u'plan', u'broom', u'black', u'spot']
[u'royal', u'winner', u'globe']
[u'rspca', u'urg', u'council', u'obey', u'anim', u'law']
[u'salin', u'concern', u'rais', u'lower', u'darl']
[u'salvo', u'launch', u'drought', u'campaign']
[u'salvo', u'launch', u'drought', u'campaign']
[u'drought', u'stricken', u'farmer', u'disadvantag']
[u'scholar', u'carney', u'walk', u'away']
[u'sear', u'heat', u'upset', u'player']
[u'secur', u'step', u'tenni', u'brawl']
[u'sharapova', u'feel', u'heat']
[u'ship', u'collis', u'italian', u'mainland', u'kill']
[u'shire', u'chief', u'say', u'ravensthorp', u'bypass', u'unlik']
[u'shortag', u'teacher']
[u'sleepi', u'driver', u'accus', u'speed']
[u'smorgon', u'unveil', u'plan', u'save', u'carlton']
[u'sport', u'club', u'water', u'tank', u'fund']
[u'stock', u'reach', u'fresh', u'high']
[u'streep', u'devil', u'beat', u'collett', u'golden', u'globe']
[u'sunshin', u'coast', u'polic', u'zero', u'drink', u'driver']
[u'swim', u'pool']
[u'talk', u'continu', u'bring', u'state', u'cricket', u'match']
[u'tamworth', u'council', u'refuge', u'intak', u'refus']
[u'tamworth', u'revers', u'refuge', u'decis']
[u'tamworth', u'sudanes', u'hope', u'vote', u'welcom', u'refuge']
[u'bootmak', u'oper', u'offshor']
[u'convict', u'sit', u'world', u'heritag', u'nomin']
[u'hop', u'reveal', u'convict', u'histori']
[u'half', u'time', u'hemp', u'product', u'gain', u'intern']
[u'prison', u'author', u'baffl', u'riot']
[u'prison', u'riot']
[u'urg', u'hous', u'crisi']
[u'tatiara', u'council', u'waiv', u'fee', u'temporari', u'feedlot']
[u'taxi', u'council', u'outlin', u'safeti', u'propos']
[u'teenag', u'charg', u'todder', u'rape', u'murder']
[u'teenag', u'face', u'court', u'toddler', u'rape', u'murder']
[u'teen', u'court', u'construct', u'vehicl']
[u'titan', u'lose', u'carney']
[u'truck', u'driver', u'critic', u'crash']
[u'turnbul', u'stand', u'pipelin', u'claim']
[u'charg', u'melbourn', u'street', u'riot']
[u'union', u'say', u'volunt', u'give', u'confidenti', u'polic']
[u'univers', u'ballarat', u'increas', u'offer']
[u'home', u'lose', u'blaze']
[u'venezuelan', u'govt', u'plan', u'control']
[u'want', u'direct', u'drought', u'farmer']
[u'bushfir', u'creat', u'smoke', u'haze']
[u'fire', u'flare', u'crew', u'work', u'protect', u'town']
[u'govt', u'call', u'univers', u'place']
[u'govt', u'reject', u'secret', u'rail', u'closur', u'claim']
[u'power', u'bushfir']
[u'vietnames', u'farmer', u'find', u'mozart', u'make', u'pig', u'fatter']
[u'wheat', u'grower', u'urg', u'export']
[u'wildfir', u'ravag', u'nation', u'park']
[u'wollongong', u'hous', u'blaze', u'injur', u'occup']
[u'woodsid', u'enforc', u'worker', u'drug', u'test']
[u'xenophobia', u'expos']
[u'youth', u'hospit', u'culburra', u'attack']
[u'seek', u'narromin', u'council', u'spot']
[u'adelaid', u'len', u'factori', u'shut']
[u'accus', u'health', u'dept', u'bulli']
[u'anti', u'rodeo', u'campaign', u'post', u'video', u'onlin']
[u'aquasol', u'donat', u'water', u'port', u'augusta']
[u'arthur', u'power']
[u'arthur', u'power', u'open']
[u'environment', u'govern']
[u'ash', u'casualti', u'ax', u'jone', u'go', u'grade']
[u'asian', u'demand', u'drive', u'iron', u'sector', u'growth']
[u'aussi', u'lawyer', u'monitor', u'hickss', u'trial']
[u'aust', u'lawyer', u'scrutinis', u'hick', u'trial']
[u'australian', u'troop', u'fire', u'baghdad']
[u'execut', u'receiv']
[u'bali', u'smuggler', u'fight', u'death', u'sentenc']
[u'barossa', u'gear', u'tour']
[u'bendigo', u'face', u'court', u'accus', u'arm', u'robberi']
[u'bendigo', u'put', u'focus', u'econom', u'develop']
[u'bevan', u'call', u'quit']
[u'blaze', u'threaten', u'melbourn', u'water', u'suppli']
[u'blue', u'extend', u'lead']
[u'blue']
[u'blundston', u'honour', u'redund', u'agreement']
[u'bond', u'face', u'anxious', u'wait', u'hurt']
[u'brack', u'blame', u'blackout', u'natur']
[u'brisban', u'save', u'water', u'drop', u'pressur']
[u'brisban', u'welcom', u'bollywood', u'star']
[u'british', u'nurs', u'begin', u'work', u'cairn']
[u'break', u'hill', u'volunt', u'help', u'nyngan', u'storm']
[u'bushfir', u'threaten', u'properti', u'north', u'east']
[u'campfir', u'caus', u'blaze', u'polic']
[u'canberra', u'imam', u'accus', u'withhold', u'mosqu', u'fund']
[u'carpent', u'say', u'suppli', u'safe', u'despit', u'alinta']
[u'castro', u'health', u'uncertain']
[u'central', u'council', u'ponder', u'merger', u'possibl']
[u'cherri', u'ventur', u'remov', u'begin', u'soon']
[u'chopper', u'fight', u'nation', u'park', u'blaze']
[u'citi', u'base', u'invest', u'group', u'fund', u'rural', u'saleyard']
[u'closer']
[u'closer']
[u'coal', u'alli', u'expect', u'earn', u'fall']
[u'comet', u'streak', u'sydney']
[u'communiti', u'group', u'say', u'lodg']
[u'communiti', u'welcom', u'tamworth', u'refuge', u'backflip']
[u'cool', u'tower', u'review', u'legionnair', u'outbreak']
[u'council', u'administr', u'look', u'posit']
[u'council', u'ponder', u'heavi', u'vehicl', u'bypass', u'option']
[u'court', u'jail', u'puppi', u'cruelti']
[u'cowra', u'rugbi', u'coach', u'train', u'nation']
[u'program', u'aim', u'improv', u'beef', u'qualiti']
[u'crew', u'continu', u'bushfir', u'battl']
[u'davydenko', u'say', u'sorri', u'sydney', u'comment']
[u'dead', u'bird', u'second', u'town']
[u'death', u'toll', u'rise', u'winter', u'storm', u'sweep']
[u'denmark', u'shire', u'govt', u'play', u'blame', u'game', u'power', u'woe']
[u'diet', u'trap']
[u'reward', u'bite', u'attack']
[u'downpour', u'cut', u'gulf', u'communiti']
[u'draft', u'north', u'coast', u'region', u'strategi', u'launch']
[u'time', u'cancel', u'aust', u'race', u'meet']
[u'esper', u'fisher', u'await', u'news', u'rescu', u'packag']
[u'evid', u'high', u'qualiti', u'uranium', u'near']
[u'food', u'head', u'charg']
[u'farmer', u'closer', u'submit', u'applic']
[u'feder', u'critic', u'hawkey']
[u'feder', u'waltz', u'past', u'bjorkman', u'round']
[u'author', u'predict', u'power', u'problem']
[u'crew', u'prepar', u'horrif', u'condit']
[u'firefight', u'look', u'control', u'blaze', u'near', u'dubbo']
[u'firefight', u'tackl', u'cross', u'border', u'blaze']
[u'fire', u'claim', u'home']
[u'flood', u'warn', u'north']
[u'footi', u'boss', u'furious', u'rebel', u'aborigin', u'leagu']
[u'gate', u'karzai', u'meet', u'afghanistan']
[u'gate', u'consid', u'troop', u'afghanistan']
[u'gibb', u'appeal', u'abus']
[u'govt', u'blame', u'shortfal', u'place']
[u'govt', u'busi', u'criticis', u'parent', u'leav', u'propos']
[u'govt', u'council', u'hold', u'talk', u'rail', u'closur', u'plan']
[u'govt', u'criticis', u'labor', u'parent', u'leav', u'propos']
[u'govt', u'deni', u'fund', u'shortfal']
[u'govt', u'reward', u'enviro', u'friend', u'farmer']
[u'govt', u'urg', u'poll', u'wheat', u'grower', u'singl', u'desk']
[u'griffith', u'council', u'reject', u'supermarket', u'plan']
[u'gulpilil', u'reject', u'domest', u'violenc', u'order']
[u'harbour', u'dredg', u'contract']
[u'heat', u'polici', u'need', u'review', u'say', u'chief']
[u'heritag', u'trail', u'plan', u'labrador']
[u'high', u'humid', u'stifl', u'thredbo']
[u'increas', u'sale', u'need', u'clear', u'stock', u'wine']
[u'indigen', u'band', u'get', u'fund', u'rais', u'profil']
[u'indigen', u'polic', u'scheme', u'extend', u'north']
[u'indi', u'car', u'ditch', u'petrol', u'ethanol']
[u'inspector', u'follow', u'hunter', u'club']
[u'isol', u'famili', u'face', u'higher', u'board', u'fee']
[u'isra', u'armi', u'chief', u'staff', u'resign']
[u'isra', u'leader', u'pressur', u'defenc', u'chief']
[u'isra', u'face', u'crimin', u'probe', u'lowi', u'deal']
[u'joyc', u'concern', u'qanta', u'sale']
[u'kalgoorli', u'back', u'past', u'post', u'vote', u'scheme']
[u'kalgoorli', u'recycl', u'wast', u'temporarili']
[u'hand', u'revenu', u'ripper', u'warn', u'govt']
[u'keith', u'urban', u'leav', u'rehab']
[u'kuznetsova', u'sweep', u'adamczak', u'asid']
[u'labor', u'consid', u'year', u'break', u'parent']
[u'labor', u'push', u'parent', u'leav', u'polici']
[u'lead', u'index', u'hit', u'seven', u'year', u'high']
[u'litter', u'spark', u'attack', u'court', u'tell']
[u'local', u'govt', u'group', u'urg', u'rat', u'subsidi', u'drought']
[u'lowi', u'implic', u'olmert', u'crimin', u'case']
[u'mackay', u'properti', u'price', u'predict', u'fall']
[u'macquari', u'deni', u'alinta', u'dump']
[u'magistr', u'ill', u'put', u'pressur', u'burni', u'court']
[u'die', u'motorcycl', u'crash', u'near', u'airport']
[u'face', u'court', u'accus', u'child', u'assault']
[u'nab', u'secret', u'film', u'women', u'tram']
[u'plead', u'guilti', u'rap', u'schoolgirl']
[u'mauresmo', u'eas']
[u'mayor', u'want', u'consult', u'committe', u'chairman']
[u'mental', u'health', u'unit', u'see', u'child', u'drug', u'abus']
[u'menzi', u'fire', u'tour']
[u'merger', u'noosa', u'council', u'agenda']
[u'mildura', u'unit', u'blaze', u'treat', u'suspicion']
[u'mirren']
[u'bird', u'death', u'report']
[u'support', u'seek', u'footbal', u'academi']
[u'motorbik', u'crash', u'land', u'critic', u'condit']
[u'call', u'crackdown', u'speed', u'truck']
[u'program', u'tackl', u'rural', u'depress']
[u'newton', u'court', u'assault', u'charg']
[u'ventur', u'offer', u'antarct', u'charter']
[u'word', u'reflect', u'chang', u'cultur']
[u'nigeria', u'clash', u'prompt', u'staff', u'evacu']
[u'nobel', u'prize', u'link', u'longer', u'lifespan']
[u'univers', u'increas', u'offer']
[u'galleri', u'make', u'neram', u'offer']
[u'enjoy', u'record', u'sugar', u'harvest', u'despit', u'rain']
[u'govt', u'aim', u'reduc', u'infect', u'rate']
[u'govt', u'ask', u'slim', u'dusti', u'centr']
[u'look', u'forward', u'strong', u'econom', u'growth']
[u'nuclear', u'canist', u'near', u'highway']
[u'nyngan', u'clean', u'continu', u'town', u'spar']
[u'obama', u'launch', u'white', u'hous']
[u'obama', u'presid']
[u'price', u'drop', u'fail', u'boost', u'market']
[u'opposit', u'eager', u'await', u'hospit', u'wait', u'list']
[u'opposit', u'guarante', u'deniliquin', u'research', u'station']
[u'opposit', u'welcom', u'widen', u'oshan', u'inquiri']
[u'oscar', u'hop', u'dash', u'cano']
[u'oxiana', u'reopen', u'golden', u'grove']
[u'paedophil', u'confess', u'molest', u'boy']
[u'pair', u'die', u'murder', u'suicid', u'polic']
[u'parliament', u'hous', u'tree', u'save']
[u'boss', u'head', u'england', u'ash', u'post', u'mortem']
[u'pink', u'backflip', u'boycott', u'pleas', u'wool', u'industri']
[u'polic', u'probe', u'firefight', u'gear', u'theft']
[u'polic', u'record', u'drop', u'decemb', u'crime', u'rate']
[u'polic', u'look', u'owner', u'steal', u'good']
[u'polic', u'threaten', u'industri', u'unrest', u'resort']
[u'port', u'augusta', u'violenc']
[u'powerco', u'say', u'roll', u'slower', u'smaller']
[u'power', u'hour', u'mildura', u'area']
[u'power', u'restor', u'victoria']
[u'power', u'return', u'damag']
[u'prison', u'riot', u'delay', u'rehab', u'program']
[u'produc', u'remind', u'interim', u'declar']
[u'public', u'input', u'seek', u'draft', u'social', u'plan']
[u'smoke', u'ban', u'work', u'health', u'group']
[u'push', u'retrain', u'fund', u'worker', u'give']
[u'qatari', u'attiyah', u'win', u'dakar', u'stage', u'peterhansel']
[u'raider', u'player', u'court', u'drive', u'charg']
[u'rail', u'spit', u'rule', u'anger', u'polic', u'minist']
[u'real', u'chief', u'lash', u'player', u'fan', u'beckham']
[u'region', u'fuel', u'price', u'drop']
[u'reloc', u'kill', u'kangaroo', u'say', u'wildlif', u'group']
[u'report', u'criticis', u'safeti']
[u'resourc', u'drag', u'market', u'lower']
[u'cut', u'fuel', u'surcharg']
[u'road', u'cross', u'accid', u'leav', u'girl', u'critic']
[u'roddick', u'bid', u'stay', u'track', u'safin', u'duel']
[u'roddick', u'cours', u'meet', u'safin']
[u'safin', u'make', u'great', u'escap', u'aussi', u'open']
[u'sandon', u'predict', u'heathcot', u'elect', u'issu']
[u'scrounger', u'creat', u'headach', u'salvo']
[u'second', u'wind', u'farm', u'pyrene', u'shire']
[u'serena', u'petrova', u'australian', u'open', u'round']
[u'sharapova', u'blake', u'nalbandian', u'demand', u'chang', u'heat']
[u'sheep', u'price', u'spark', u'renew', u'confid']
[u'sladdin', u'bushfir']
[u'smith', u'reject', u'beazley', u'labor', u'claim']
[u'south', u'west', u'lobbi', u'group', u'get', u'boss']
[u'spain', u'hold', u'hockeyroo', u'draw']
[u'staff', u'shortag', u'close', u'blood', u'donor', u'centr']
[u'state', u'feder', u'continu', u'recycl', u'water']
[u'storm', u'power', u'damag', u'home']
[u'student', u'rack', u'hec', u'debt']
[u'sympathi', u'ban', u'hors', u'trainer', u'jockey']
[u'tamworth', u'accept', u'sudanes', u'refuge']
[u'tamworth', u'rethink', u'refuge', u'settlement', u'scheme']
[u'govt', u'unsur', u'tri', u'legisl', u'pulp']
[u'teacher', u'get', u'suspend', u'sentenc', u'child', u'porn']
[u'teenag', u'murray', u'destroy', u'martin']
[u'teenag', u'sentenc', u'brother', u'crash', u'death']
[u'teen', u'charg', u'train', u'vandal']
[u'teen', u'punch', u'road', u'rage', u'incid']
[u'tennant', u'creek', u'flight']
[u'tennant', u'creek', u'gold', u'focus', u'zinc']
[u'thredbo', u'resid', u'brief', u'threat']
[u'polic', u'offic', u'injur', u'crash']
[u'titan', u'play', u'carney', u'loss']
[u'tolmi', u'hous', u'destroy', u'town', u'safe']
[u'tough', u'mother', u'gillard']
[u'urg', u'govt', u'chang', u'indonesian', u'treati']
[u'kill', u'central', u'australia', u'collis']
[u'union', u'cast', u'doubt', u'ambul', u'worker', u'hospit', u'plan']
[u'union', u'criticis', u'shortag', u'place']
[u'union', u'seek', u'contract', u'supervisor']
[u'union', u'slam', u'blundston', u'decis']
[u'vail', u'put', u'boot', u'blundston', u'reloc']
[u'vail', u'reject', u'gillard', u'motherhood', u'claim']
[u'vaughan', u'miss', u'england', u'match']
[u'govt', u'rule', u'power', u'restrict']
[u'home', u'fall', u'fire']
[u'resid', u'examin', u'worst', u'area']
[u'resid', u'survey', u'damag']
[u'township', u'save', u'flame']
[u'viduka', u'doubl', u'fire', u'boro', u'fourth', u'round']
[u'visitor', u'flee', u'thredbo', u'threat']
[u'volunt', u'prais', u'airport', u'emerg', u'respons']
[u'warrior', u'redback', u'clash', u'final', u'chanc']
[u'warrior', u'score', u'narrow', u'victori', u'perth']
[u'wast', u'dump', u'campaign', u'compo', u'ludicr']
[u'wast', u'process', u'approv', u'cabonn', u'shire']
[u'winemak', u'predict', u'dire', u'vintag']
[u'woman', u'face', u'charg', u'cancer', u'claim']
[u'woolworth', u'seek', u'approv', u'warehous']
[u'woolworth', u'seek', u'warehous']
[u'work', u'begin', u'leisur', u'centr']
[u'youth', u'olymp', u'open', u'sydney']
[u'face', u'trial', u'rutherford', u'shoot', u'murder']
[u'abalon', u'virus', u'move', u'east']
[u'accc', u'urg', u'tougher', u'compani']
[u'milan', u'ronaldo']
[u'rental', u'vacanc', u'rat', u'time']
[u'packag', u'announc', u'riverina', u'irrig']
[u'forc', u'engin', u'charg', u'explos']
[u'allenbi', u'take', u'charg', u'california']
[u'athen', u'univers', u'protest', u'turn', u'violent']
[u'attack', u'target', u'aussi', u'firm', u'kill']
[u'open', u'heat', u'polici', u'review']
[u'aust', u'secur', u'firm', u'worker', u'kill', u'iraq']
[u'author', u'close', u'monitor', u'fire']
[u'justifi', u'payout', u'say', u'vail']
[u'bank', u'shift', u'respons', u'custom']
[u'beatti', u'govern', u'urg', u'finalis', u'indigen']
[u'beij', u'crack', u'unsanitari', u'restaur']
[u'belgian', u'ambush', u'ogradi']
[u'crowd', u'expect', u'bunburi', u'jazz', u'festiv']
[u'blake', u'win', u'round']
[u'bligh', u'accus', u'traveston']
[u'blue', u'bushrang', u'match', u'thrill', u'finish']
[u'bodi', u'wreckag']
[u'bond', u'clear', u'stress', u'fractur']
[u'bore', u'owner', u'face', u'meter', u'cost']
[u'name', u'central', u'region', u'young', u'hero', u'year']
[u'breaker', u'bounc']
[u'breaker', u'bounc', u'bullet', u'roll']
[u'bumblebe', u'turn', u'plant', u'pest', u'research']
[u'bundanon', u'trust', u'get', u'fund', u'boost']
[u'bush', u'attempt', u'sell', u'senat', u'iraq', u'plan']
[u'bushman', u'granvill']
[u'caffein', u'eas', u'muscl', u'pain', u'research']
[u'caffein', u'free', u'decaf', u'coffe', u'soon']
[u'capricornia', u'queensland']
[u'causeway', u'close', u'todd', u'river', u'rise']
[u'central', u'aust', u'desert', u'flood']
[u'central', u'gippsland', u'prepar', u'stage', u'water']
[u'chalet', u'manag', u'want', u'answer', u'build']
[u'childcar', u'centr', u'close', u'standard']
[u'clijster', u'hingi', u'power']
[u'closer']
[u'closer']
[u'club', u'wait', u'land', u'sale', u'law']
[u'conserv', u'area', u'advisori', u'committe', u'appoint']
[u'contractor', u'appoint', u'waikeri', u'bypass', u'upgrad']
[u'costello', u'urg', u'bolster', u'accc', u'power']
[u'councillor', u'concern', u'propos', u'industri']
[u'councillor', u'say', u'panel', u'appoint', u'push']
[u'council', u'test', u'cool', u'tower', u'legionnair']
[u'countri', u'lobbi', u'apec', u'membership']
[u'coupl', u'middl', u'chang']
[u'court', u'jail', u'drink', u'transport', u'children']
[u'sponsorship', u'program', u'receiv', u'overwhelm']
[u'credit', u'card', u'user', u'prudent']
[u'credit', u'union', u'rule', u'loss', u'merger']
[u'criddl', u'urg', u'revamp', u'south', u'coast', u'lake']
[u'cyclist', u'fall', u'apart', u'window']
[u'dandenong', u'factori', u'investig', u'continu']
[u'dept', u'defend', u'howard', u'holiday']
[u'drink', u'driver', u'jail', u'friend', u'death']
[u'outlook', u'winegrow']
[u'eagl', u'kerr', u'charg', u'brawl']
[u'elder', u'drown', u'swim', u'hole']
[u'timor', u'rebel', u'leader', u'surrend', u'talk']
[u'move', u'suspend', u'fiji']
[u'navi', u'base', u'redevelop', u'public']
[u'fatal', u'crash', u'prompt', u'renew', u'call', u'highway']
[u'fear', u'decis', u'hamper', u'northern']
[u'feder', u'polic', u'investig', u'sheikh']
[u'crew', u'hold', u'thredbo', u'blaze']
[u'crew', u'prepar', u'tough', u'weekend']
[u'crew', u'monitor', u'nation', u'park', u'blaze']
[u'firefight', u'brace', u'extrem', u'weekend', u'weather']
[u'firefight', u'tackl', u'otway', u'spot']
[u'like', u'reach', u'thredbo', u'day']
[u'firm', u'investig', u'handl', u'lose', u'radioact']
[u'arrest', u'drug', u'bust']
[u'chines', u'worker', u'releas', u'nigeria']
[u'flash', u'flood', u'hit', u'mildura']
[u'flintoff', u'regain', u'captainci', u'injur', u'vaughan']
[u'flood', u'close', u'stuart', u'highway']
[u'foster', u'arriv', u'vanuatu', u'court']
[u'foster', u'remand', u'custodi']
[u'foster', u'strike', u'deport', u'deal']
[u'injur', u'emerg', u'land']
[u'jail', u'sydney', u'scam']
[u'franc', u'boycott', u'european']
[u'freight', u'compani', u'monitor', u'flood', u'situat']
[u'fuel', u'run', u'boulia']
[u'galaxi', u'turn', u'real', u'world']
[u'girl', u'induc', u'coma', u'cross', u'accid']
[u'govt', u'defend', u'broom', u'holiday']
[u'govt', u'defend', u'stat', u'land', u'clear']
[u'govt', u'play', u'blame', u'game', u'water', u'pipelin', u'fund']
[u'govt', u'assess', u'wind', u'farm', u'plan']
[u'govt', u'urg', u'help', u'fund', u'shellfish', u'monitor', u'scheme']
[u'govt', u'urg', u'help', u'mental', u'homeless']
[u'grandma', u'jail', u'import', u'heroin']
[u'green', u'travel', u'introduc', u'tasmania']
[u'group', u'aim', u'reduc', u'north', u'youth', u'violenc']
[u'group', u'meet', u'log', u'worri']
[u'group', u'wari', u'govt', u'dental', u'servic', u'pledg']
[u'heat', u'restrict', u'blame', u'late', u'train']
[u'hewitt', u'see', u'canadian', u'dancev']
[u'hobart', u'council', u'plan', u'cycl', u'path', u'consult']
[u'howard', u'take', u'break', u'broom']
[u'hundr', u'rememb', u'granvill', u'disast']
[u'indigen', u'report', u'shelv', u'pitt', u'say']
[u'interior', u'design', u'softwar', u'winner', u'firm']
[u'iraqi', u'urg', u'boost', u'militari', u'suppli']
[u'irrig', u'wait', u'assist', u'packag', u'announc']
[u'isra', u'troop', u'kill', u'palestinian', u'milit']
[u'judg', u'reject', u'indefinit', u'jail', u'term', u'serial']
[u'lawyer', u'question', u'clark', u'accus', u'memori']
[u'leader', u'condemn', u'sheikh', u'comment']
[u'legionnair', u'sourc', u'unknown']
[u'lifesav', u'club', u'consid', u'loan', u'clubroom']
[u'lindsay', u'lohan', u'enter', u'rehab']
[u'line', u'mark', u'sydney', u'road', u'need', u'improv', u'nrma']
[u'lismor', u'ballina', u'hospit', u'open', u'rehab', u'unit']
[u'fin', u'mail', u'weapon']
[u'mayor', u'air', u'yeppoon', u'hous', u'plan', u'worri']
[u'mayor', u'lament', u'loom', u'cultur', u'centr', u'closur']
[u'mayor', u'want', u'vote', u'state', u'elector', u'commiss']
[u'mcgauran', u'back', u'drought', u'assist', u'dairi']
[u'mcgrath', u'play', u'england', u'gabba']
[u'meng', u'dump', u'spark', u'controversi']
[u'mine', u'entrepreneur', u'fight', u'deposit']
[u'minist', u'warn', u'thredbo', u'fire', u'rival', u'blaze']
[u'miss', u'girl', u'year', u'polic']
[u'molik', u'roll', u'melbourn']
[u'money', u'step', u'geraldton', u'act', u'deputi', u'mayor']
[u'mackay', u'home', u'broadband', u'connect']
[u'murray', u'nalbandian', u'sharapova', u'blitz', u'open']
[u'nativ', u'veget', u'law', u'hurt', u'product', u'farmer']
[u'secur', u'travel']
[u'charg', u'proserpin', u'croc', u'shoot']
[u'north', u'west']
[u'firefight', u'join', u'contain', u'effort']
[u'govt', u'fight', u'tenur', u'claim', u'uranium', u'deposit']
[u'oecd', u'say', u'global', u'warm', u'threaten', u'resort']
[u'offici', u'prepar', u'drought', u'assist', u'submiss']
[u'opposit', u'oppos', u'plan', u'close', u'western', u'rail']
[u'opposit', u'pledg', u'boost', u'polic', u'number']
[u'opposit', u'say', u'public', u'servic', u'wag', u'control']
[u'orang', u'polic', u'despit']
[u'pakistan', u'deni', u'hide', u'taliban', u'chief']
[u'pakistan', u'carri', u'drug', u'test', u'world']
[u'passeng', u'rescuer', u'rememb', u'granvill', u'disast']
[u'peru', u'ruin', u'hold', u'clue', u'lose', u'civilis']
[u'petrol', u'price', u'impact', u'truck', u'industri', u'union']
[u'polic', u'attempt', u'identifi', u'hous', u'victim']
[u'polic', u'confisc', u'car', u'burnout']
[u'polic', u'abandon', u'catamaran', u'owner']
[u'polic', u'investig', u'cannabi', u'crop']
[u'polic', u'investig', u'steal', u'canterburi', u'jersey']
[u'polic', u'arrest', u'protest']
[u'polic', u'monitor', u'bomb', u'plot', u'suspect', u'court', u'tell']
[u'polic', u'probe', u'seri', u'break']
[u'polic', u'tourist', u'involv', u'fatal', u'crash']
[u'polic', u'seek', u'inform', u'lincoln', u'causeway']
[u'polic', u'warn', u'crime', u'solv']
[u'polic', u'identifi', u'crash', u'victim']
[u'polit', u'leader', u'condemn', u'sheikh', u'view']
[u'port', u'augusta', u'hous', u'multi', u'million', u'dollar']
[u'poultri', u'ban', u'indonesian', u'residenti', u'area']
[u'power', u'option', u'follow', u'blackout']
[u'project', u'aim', u'unravel', u'light', u'mysteri']
[u'project', u'impact', u'batchelor', u'water']
[u'public', u'ask', u'report', u'tree', u'vandal']
[u'public', u'remind', u'summer', u'energi', u'save']
[u'public', u'urg', u'help', u'fund', u'applic']
[u'pay', u'poor', u'water', u'infrastructur', u'plan']
[u'radio', u'station', u'investig', u'fatal', u'drink']
[u'rain', u'aid', u'fight']
[u'rain', u'bring', u'temporari', u'relief', u'firefight']
[u'rain', u'delay', u'effort', u'contain', u'goonoo', u'blaze']
[u'rain', u'drench', u'outback']
[u'rain', u'see', u'expect', u'bumper', u'crop']
[u'real', u'estat', u'shoot', u'victim', u'farewel']
[u'recycl', u'pool', u'water', u'help', u'botan', u'garden']
[u'releas', u'date', u'unclear', u'truck', u'magnat']
[u'research', u'doubt', u'dead', u'bird', u'discoveri']
[u'resid', u'urg', u'contact', u'dead', u'bird']
[u'resourc', u'firm', u'invest', u'technic', u'colleg']
[u'resourc', u'expo', u'hold', u'hope', u'coke', u'plant']
[u'reveal', u'ident', u'hickss', u'visitor', u'urg', u'downer']
[u'readi', u'tackl', u'lightn', u'fire']
[u'rich', u'french', u'food', u'kill', u'napoleon']
[u'road', u'crash', u'survivor', u'remain', u'critic', u'condit']
[u'roma', u'saleyard', u'sale']
[u'rudd', u'say', u'sheikh', u'comment', u'incit', u'terror']
[u'sampra', u'sanchez', u'vicario', u'elect', u'hall', u'fame']
[u'sartor', u'releas', u'north', u'coast', u'growth', u'plan']
[u'seatbelt', u'feasibl', u'bus', u'luca']
[u'share', u'market', u'firm', u'commod', u'rise']
[u'shear', u'hard', u'work', u'pay', u'hall', u'fame', u'honour']
[u'sheep', u'death', u'toll', u'rise', u'storm']
[u'sheikh', u'martyr', u'comment', u'condemn']
[u'rescu', u'flood', u'china']
[u'soldier', u'attack', u'baghdad', u'darwin', u'say']
[u'southern', u'queensland']
[u'special', u'suit', u'help', u'guard', u'stinger', u'attack']
[u'star', u'accus', u'brother', u'housem', u'racism']
[u'storm', u'clean', u'continu', u'wagga']
[u'stosur', u'open', u'hop', u'dash']
[u'stowaway', u'skunk', u'return', u'home']
[u'studi', u'consid', u'futur', u'infrastructur']
[u'taliban', u'chief', u'hide', u'pakistan', u'spokesman']
[u'tanneri', u'look', u'foreign', u'market', u'follow']
[u'compani', u'award', u'tender', u'trawl', u'patagonian']
[u'govt', u'announc', u'bushfir', u'assist', u'packag']
[u'justic', u'dept', u'tri', u'prevent', u'strike']
[u'manufactur', u'troubl', u'chamber']
[u'truffl', u'grower', u'get', u'grant', u'clone', u'tree']
[u'terrain', u'mar', u'thredbo', u'fight']
[u'import', u'sachin', u'tendulkar']
[u'toowoomba', u'back', u'tamworth', u'refuge', u'rethink']
[u'tribun', u'probe', u'elect', u'hate', u'claim']
[u'tumbarumba', u'consid', u'tougher', u'water', u'ban', u'tumut']
[u'turbin', u'demand', u'delay', u'lexton', u'wind', u'farm', u'plan']
[u'seek', u'industri', u'partnership', u'mine']
[u'union', u'seek', u'meet', u'debnam', u'forster']
[u'student', u'look', u'contest', u'northern', u'tableland']
[u'unsur', u'miss', u'nurs', u'cours']
[u'bank', u'grang', u'secur']
[u'insist', u'inclus', u'asia', u'pacif', u'trade', u'pact']
[u'vail', u'visit', u'break', u'hill']
[u'varsiti', u'lake', u'hous', u'gold', u'coast']
[u'firefight', u'brace', u'extrem', u'condit']
[u'firefight', u'face', u'extrem', u'condit']
[u'govt', u'defend', u'health', u'helplin', u'misdiagnosi']
[u'banana', u'prove', u'popular', u'local']
[u'warehous', u'damag']
[u'western', u'queensland']
[u'wholesal', u'chang', u'fruit', u'standard']
[u'wide', u'mango', u'harvest', u'suffer', u'amid', u'weather']
[u'wimmera', u'footbal', u'leagu', u'start', u'season', u'time']
[u'wine', u'judg', u'prais', u'tasmanian', u'pinot']
[u'woman', u'record', u'blood', u'alcohol', u'level', u'face', u'court']
[u'woodsid', u'report', u'record', u'revenu']
[u'work', u'begin', u'york', u'peninsula', u'desal', u'plant']
[u'flee', u'tamil', u'tiger', u'stronghold']
[u'civilian', u'shoot', u'dead', u'lanka']
[u'accc', u'allow', u'higher', u'fee', u'medic', u'servic']
[u'accus', u'drug', u'smuggler', u'grant', u'bail']
[u'support', u'pollut', u'penalti', u'scheme']
[u'actew', u'consid', u'allow', u'recycl', u'water', u'pool']
[u'action', u'group', u'say', u'irrig', u'compo', u'packag']
[u'adelaid', u'petrol', u'price', u'predict', u'fall']
[u'investig', u'sheikh']
[u'alleg', u'voyeur', u'arrest', u'open']
[u'allenbi', u'touch', u'california']
[u'seek', u'port', u'macquari', u'candid']
[u'launch', u'websit', u'combat', u'doctor', u'fatigu']
[u'say', u'adelaid', u'need', u'fewer', u'emerg', u'dept']
[u'amphitheatr', u'plan', u'finalis']
[u'job', u'go']
[u'art', u'centr', u'share', u'cultur', u'fund']
[u'dead', u'thai', u'school', u'plung']
[u'aust', u'grant', u'boost', u'timor']
[u'australia', u'lose', u'earli', u'wicket', u'chase']
[u'author', u'keep', u'watch', u'firefight', u'fatigu']
[u'author', u'look', u'contain', u'tatong', u'blaze']
[u'autist', u'stab', u'accus', u'move']
[u'barcoo', u'mayor', u'back', u'broadband', u'expans', u'plan']
[u'bark', u'tableland', u'resid', u'welcom', u'rfds', u'medic']
[u'brother', u'comment', u'spark', u'diplomat']
[u'bing', u'drink', u'figur', u'rais', u'cancer', u'fear']
[u'blackout', u'demonstr', u'lunaci', u'privatis']
[u'blast', u'indonesia', u'polic', u'hunt', u'milit']
[u'bligh', u'promis', u'polic', u'cairn']
[u'blue', u'green', u'alga', u'alert', u'wetland']
[u'boulia', u'hop', u'fuel', u'shortag', u'deter', u'tourist']
[u'assault', u'australian', u'open']
[u'rescu', u'waterhol', u'mishap']
[u'bracken', u'mcgrath', u'strike', u'brisban']
[u'break', u'hill', u'racecours', u'get', u'chang']
[u'build', u'industri', u'reviv', u'help', u'boost', u'hunter', u'job']
[u'bushfir', u'close', u'section', u'overland', u'track']
[u'busi', u'report', u'lower', u'januari', u'sale']
[u'campervan', u'crash', u'victim', u'identifi']
[u'central', u'suppli', u'summer']
[u'chaytor', u'guilti', u'assault']
[u'chines', u'land', u'grab', u'protest', u'assault', u'report']
[u'closer']
[u'closer']
[u'open', u'nomin', u'lingiari']
[u'charg', u'nuttal']
[u'colleg', u'bendigo']
[u'compani', u'look', u'lure', u'chines', u'tourist', u'north']
[u'compani', u'begin', u'central', u'gold', u'search']
[u'convert', u'shed', u'host', u'mozart', u'cosi', u'tutt']
[u'cook', u'claim', u'stage', u'tour']
[u'cosgrov', u'cullen', u'head', u'intak']
[u'council', u'concern', u'veteran', u'home', u'care', u'chang']
[u'council', u'hop', u'fund', u'encourag', u'victim']
[u'council', u'discuss', u'desal', u'plant', u'plan']
[u'coward', u'chaytor', u'expel', u'labor']
[u'cow', u'beach', u'reopen', u'shark', u'sight']
[u'cowra', u'shop', u'centr', u'plan', u'prompt', u'park', u'debat']
[u'crew', u'brace', u'tough', u'condit', u'near', u'thredbo']
[u'darwin', u'face', u'drug', u'charg']
[u'debnam', u'say', u'union', u'protest', u'elbow', u'wife']
[u'defens', u'drive', u'plater', u'minist']
[u'deputi', u'mayor', u'face', u'court', u'june']
[u'detent', u'centr', u'live', u'condit', u'improv', u'hreoc']
[u'devast', u'storm', u'leav', u'dead', u'europ']
[u'disappoint', u'currawong', u'sale']
[u'djokov', u'advanc', u'melbourn']
[u'dont', u'accept', u'rule', u'opposit', u'urg', u'govt']
[u'dont', u'distribut', u'sheikh', u'dvds', u'andrew']
[u'downer', u'welcom', u'rule', u'guantanamo', u'trial']
[u'drought', u'put', u'pressur', u'famili']
[u'drought', u'stricken', u'grain', u'shipment']
[u'drought', u'stricken', u'farmer', u'pleas', u'retail']
[u'england', u'bat', u'brisban']
[u'england', u'crash', u'burn', u'gabba']
[u'england', u'troubl', u'gabba']
[u'england', u'line', u'loy', u'debut', u'australia']
[u'kalgoorli', u'detect', u'goldfield']
[u'eyr', u'peninsula', u'await', u'announc']
[u'farmer', u'fear', u'govt', u'play', u'traveston']
[u'north', u'fuel', u'price', u'remain', u'high', u'south', u'east']
[u'father', u'acquit', u'attempt', u'murder']
[u'faulti', u'aircondition', u'caus', u'hous']
[u'feral', u'pig', u'cull', u'protect', u'cape', u'york', u'turtl', u'nest']
[u'fiji', u'interim', u'brother', u'charg', u'murder']
[u'firefight', u'progress', u'thredbo']
[u'flood', u'clean', u'begin', u'central', u'aust']
[u'foster', u'case', u'adjourn']
[u'foster', u'expect', u'plead', u'guilti']
[u'freez', u'fund', u'hand', u'palestinian', u'author']
[u'fund', u'cut', u'concern', u'grain', u'research', u'group']
[u'drop', u'petrol', u'price', u'forecast']
[u'gippsland', u'forc', u'closur']
[u'goonoo', u'firefight', u'effort', u'stall', u'overnight']
[u'goulburn', u'offici', u'hope', u'rain', u'boost', u'water']
[u'govt', u'defend', u'fund', u'public', u'health']
[u'govt', u'protest', u'china', u'space', u'missil', u'test']
[u'govt', u'protest', u'china', u'space', u'missil', u'test']
[u'govt', u'satisfi', u'militari', u'commiss', u'rule']
[u'govt', u'stand', u'sexton', u'hill', u'progress']
[u'govt', u'hold', u'meet', u'wheat', u'grower']
[u'govt', u'welcom', u'petrol', u'price', u'fall']
[u'graincorp', u'buyer', u'boom', u'wool', u'market']
[u'grain', u'grower', u'urg', u'focus', u'woe']
[u'green', u'church', u'address', u'worri']
[u'group', u'unhappi', u'reason', u'meng', u'sack']
[u'hickss', u'lawyer', u'blast', u'guidelin']
[u'hickss', u'mental', u'health', u'assess', u'doctor']
[u'higher', u'hous', u'price', u'encourag', u'renov']
[u'hobart', u'council', u'amend', u'traffic', u'accid', u'site']
[u'hockeyroo', u'fall', u'world', u'champion', u'dutch']
[u'houston', u'killen']
[u'hreoc', u'renew', u'mandatori', u'detent']
[u'hunter', u'polic', u'opposit', u'polic', u'plan']
[u'hussey', u'guid', u'australia', u'scratchi']
[u'hussey', u'help', u'bushrang', u'victori']
[u'illawarra', u'newspap', u'owner', u'face', u'takeov']
[u'indigen', u'council', u'fear', u'debt', u'hamper', u'servic']
[u'injur', u'leopard', u'seal', u'rest', u'tourist', u'beach']
[u'israel', u'transfer', u'freez', u'fund', u'abba']
[u'appeal', u'convict', u'chaytor']
[u'jervi', u'hous', u'plan', u'spark', u'threaten', u'speci']
[u'jet', u'focus', u'cost']
[u'katherin', u'murder', u'polic']
[u'kiama', u'mayor', u'back', u'polic', u'number', u'pledg']
[u'killen', u'farewel', u'state', u'funer']
[u'killen', u'rememb', u'dedic']
[u'labor', u'lawyer', u'slam', u'terror', u'trial', u'rule']
[u'lake', u'bonney', u'decis', u'hand', u'week']
[u'firm', u'accus', u'greed', u'financ', u'scandal', u'fee']
[u'lifesav', u'issu', u'queensland', u'king', u'tide', u'warn']
[u'major', u'alic', u'causeway', u'close']
[u'arrest', u'melbourn', u'murder']
[u'jail', u'drug', u'fuel', u'manslaught']
[u'surviv', u'swan', u'hill', u'stab']
[u'face', u'court', u'build', u'societi', u'theft']
[u'attack', u'partner', u'jail']
[u'mauresmo', u'kuznetsova', u'easili']
[u'mayor', u'promis', u'high', u'rise', u'plan', u'wont', u'forc']
[u'meet', u'put', u'focus', u'wetland', u'plan']
[u'melon', u'grower', u'fear', u'affect', u'water', u'suppli']
[u'minist', u'consid', u'patient', u'death', u'find']
[u'miss', u'man', u'fish', u'gear']
[u'growth', u'potenti', u'see', u'coal', u'town']
[u'applic', u'link', u'incent', u'packag']
[u'mother', u'accus', u'murder', u'daughter', u'stand', u'trial']
[u'mother', u'lose', u'battl', u'help', u'disabl', u'daughter']
[u'motorcycl', u'champ', u'doohan', u'launch', u'rider', u'safeti']
[u'motor', u'industri', u'question', u'fuel', u'price', u'drop']
[u'mount', u'morgan', u'open']
[u'say', u'woe', u'proof', u'need', u'polic']
[u'mudge', u'meatwork', u'wont', u'open', u'drought', u'eas']
[u'muslim', u'question', u'howard', u'appear', u'video']
[u'name', u'forward', u'develop', u'assess', u'panel']
[u'nation', u'infrastructur', u'plan']
[u'newcastl', u'technolog', u'centr', u'focus', u'clean']
[u'korea', u'reach', u'certain', u'agreement', u'nuclear']
[u'irrig', u'elig', u'compo']
[u'hotel', u'owner', u'concern', u'poki']
[u'announc', u'art', u'group']
[u'nuttal', u'talbot', u'face', u'year', u'jail']
[u'nuttal', u'talbot', u'face', u'court', u'corrupt', u'charg']
[u'price', u'drop']
[u'painkil', u'caus', u'arthur', u'wipeout']
[u'perth', u'derbi', u'servic', u'start', u'month']
[u'petrol', u'drop', u'lowest', u'level', u'month']
[u'record', u'messag', u'controversi', u'church']
[u'send', u'wrong', u'messag', u'church', u'video']
[u'landown', u'launch', u'lawsuit', u'wast']
[u'polic', u'arrest', u'drug', u'oper']
[u'polic', u'australian', u'open', u'assault', u'isol']
[u'plater', u'charg', u'reckless', u'drive']
[u'price', u'fall', u'link', u'threat', u'caltex']
[u'prison', u'staff', u'urg', u'strike', u'resum', u'talk']
[u'profit', u'alleg', u'worri', u'fodder', u'industri']
[u'public', u'privat', u'partnership', u'urg', u'lourd']
[u'rain', u'bring', u'relief', u'firefight']
[u'rainfal', u'forc', u'northern', u'road', u'closur']
[u'rain', u'halt', u'backburn', u'fire']
[u'rain', u'make', u'south', u'east']
[u'rain', u'offer', u'hope', u'firefight']
[u'rain', u'bring', u'salin', u'challeng', u'murray']
[u'ranger', u'trap', u'problem', u'croc']
[u'report', u'reveal', u'environment', u'problem', u'coal']
[u'rudd', u'feiz', u'moham']
[u'crumbl', u'look', u'strong']
[u'town', u'flood', u'record', u'rainfal']
[u'secur', u'up', u'open', u'indec', u'assault']
[u'sever', u'storm', u'rock', u'europ', u'dead']
[u'share', u'market', u'steadi', u'dollar', u'firm']
[u'shevchenko', u'aim', u'silenc', u'critic']
[u'shire', u'back', u'plan', u'kununurra', u'visitor', u'centr']
[u'skyciti', u'invest', u'licens']
[u'solomon', u'preselect', u'attract', u'candid']
[u'south', u'east', u'record', u'overnight', u'arm', u'robberi']
[u'sudanes', u'migrant', u'struggl', u'access', u'doctor']
[u'suppli', u'send', u'town', u'flood']
[u'surf', u'lifesav', u'club', u'use', u'green', u'energi']
[u'surgeon', u'issu', u'warn', u'spinal', u'injuri']
[u'tarong', u'power', u'station', u'look', u'save', u'water']
[u'govt', u'spend', u'health']
[u'highland', u'control']
[u'tear', u'arthur', u'hobbl', u'open', u'feder']
[u'tenni', u'secur', u'tighten', u'indec', u'assault']
[u'thiev', u'cash', u'renmark', u'storm']
[u'thredbo', u'threat', u'eas']
[u'tongan', u'arrest', u'riot']
[u'toolamba', u'open', u'memori', u'garden', u'murder']
[u'transport', u'busi', u'fin', u'workplac', u'accid']
[u'truck', u'crash', u'caus', u'bendigo', u'blackout']
[u'truck', u'driver', u'urg', u'come', u'forward', u'bridg']
[u'truck', u'magnat', u'lose', u'warehous', u'blaze']
[u'union', u'head', u'break', u'hill', u'council', u'dismiss']
[u'union', u'reject', u'pilbara', u'technic', u'colleg', u'plan']
[u'congressmen', u'launch', u'legisl', u'curb', u'iran']
[u'frost', u'hope', u'murray', u'valley', u'orang', u'grower']
[u'negoti', u'say', u'deal', u'reach', u'north', u'korea', u'talk']
[u'outlin', u'guidlin', u'guantanamo', u'trial']
[u'outlin', u'rule', u'guantanamo', u'trial']
[u'set', u'terror', u'trial', u'rule']
[u'vanston', u'welcom', u'hreoc', u'detent', u'centr', u'review']
[u'veart', u'rest', u'marin', u'clash']
[u'venezuela', u'chavez', u'grant', u'approv', u'rule']
[u'visitor', u'return', u'esper', u'storm']
[u'wagga', u'storm', u'cost', u'exceed']
[u'govt', u'set', u'sight', u'locat', u'telescop']
[u'govt', u'build', u'fourth', u'iron', u'port']
[u'warrior', u'tiger', u'enjoy', u'strong', u'start']
[u'watchdog', u'follow', u'brother', u'complaint']
[u'water', u'right']
[u'overhaul', u'licens']
[u'weed', u'presenc', u'rob', u'fallow', u'grain', u'nitrogen', u'studi']
[u'william', u'oust', u'fifth', u'seed', u'petrova']
[u'winemak', u'commend', u'award']
[u'woman', u'avoid', u'jail', u'stab', u'neighbour']
[u'woman', u'die', u'lake', u'macquari', u'water', u'mishap']
[u'woman', u'custodi', u'supermarket', u'robberi']
[u'launch', u'global', u'petit', u'plant']
[u'youth', u'charg', u'fatal', u'crash']
[u'youth', u'scheme', u'make', u'west']
[u'motorola', u'job', u'profit', u'slump']
[u'accus', u'racist', u'vote', u'realiti']
[u'rental', u'rat', u'keep', u'profession', u'away']
[u'allenbi', u'tie', u'desert']
[u'australian', u'complac', u'gilchrist']
[u'aust', u'sign', u'secur', u'agreement', u'timor']
[u'author', u'investig', u'melbourn', u'workplac', u'death']
[u'author', u'reopen', u'overland', u'track', u'despit', u'bushfir']
[u'author', u'step', u'probe', u'legionnair']
[u'author', u'track', u'diseas', u'sourc']
[u'barn', u'undergo', u'open', u'heart', u'surgeri']
[u'beckham', u'wag', u'resent', u'team', u'mat']
[u'fight', u'lawsuit']
[u'blake', u'come', u'ginepri', u'test']
[u'bull', u'struggl', u'beller']
[u'cahil', u'miss', u'link', u'everton']
[u'capit', u'flame', u'ranger', u'enjoy', u'wnbl', u'win']
[u'castro', u'fight', u'life']
[u'china', u'missil', u'test', u'caus', u'intern', u'concern']
[u'china', u'missil', u'test', u'caus', u'worldwid', u'concern']
[u'china', u'play', u'missil', u'test', u'concern']
[u'clijster', u'show', u'merci', u'bondarenko']
[u'closer']
[u'closer']
[u'communiti', u'liaison', u'offic', u'return', u'sydney']
[u'crew', u'battl', u'blaze', u'eastern']
[u'crew', u'continu', u'battl', u'thredbo', u'blaze']
[u'dakar', u'motorcycl', u'leader', u'coma', u'injur', u'crash']
[u'davydenko', u'oust', u'santoro', u'reach', u'fourth', u'round']
[u'diver', u'man', u'bodi', u'ocean', u'rock', u'ledg']
[u'downer', u'confirm', u'hickss', u'mental', u'health', u'assess']
[u'earli', u'lunch', u'gloomi', u'hobart']
[u'question', u'turkish', u'journalist', u'murder']
[u'ethiopian', u'troop', u'begin', u'somalia', u'withdraw']
[u'expert', u'warn', u'rise', u'megafir', u'threat']
[u'extrem', u'weather', u'caus', u'flood']
[u'extrem', u'weather', u'continu']
[u'roar', u'play', u'hop']
[u'roar', u'clash', u'final', u'place']
[u'floodwat', u'begin', u'reced', u'town']
[u'wicket', u'shoaib', u'give', u'pakistan', u'edg']
[u'govt', u'call', u'calm', u'taxi', u'assault', u'claim']
[u'govt', u'reject', u'releas', u'nuttal', u'decis']
[u'heavi', u'rain', u'caus', u'flash', u'flood', u'western']
[u'hewitt', u'molik', u'face', u'open', u'reckon']
[u'hezbollah', u'leader', u'welcom', u'isra', u'armi', u'chief']
[u'driver', u'surrend']
[u'hockeyroo', u'face', u'argentina', u'shoot', u'final']
[u'hong', u'kong', u'steward', u'slap', u'fine', u'janiak']
[u'hussey', u'say', u'wont', u'walk']
[u'israel', u'halt', u'build', u'settlement']
[u'jet', u'claim', u'final', u'spot', u'upset', u'victori']
[u'blair', u'aid', u'arrest', u'corrupt', u'probe', u'report']
[u'king', u'smash', u'home']
[u'lawyer', u'prepar', u'case', u'tedi', u'oper']
[u'liber', u'want', u'examin', u'nuttal', u'cabinet']
[u'lightn', u'capit']
[u'mama', u'papass', u'denni', u'doherti', u'die']
[u'melbourn', u'polic']
[u'melbourn', u'polic', u'search', u'driver']
[u'militia', u'aid', u'arrest', u'iraq']
[u'molik', u'bow', u'open']
[u'legionnair', u'case', u'report']
[u'fear', u'dead', u'boat', u'capsiz']
[u'nadal', u'close', u'peak', u'form']
[u'nalbandian', u'dead', u'grosjean', u'epic']
[u'jellyfish', u'discov']
[u'labor', u'candid', u'condemn', u'disgrac', u'chaytor']
[u'labor', u'select', u'chaytor', u'replac']
[u'opposit', u'push', u'action', u'rural', u'mental']
[u'labor', u'consid', u'nomine', u'solomon', u'lingiari']
[u'nuttal', u'case', u'remind', u'politician', u'bligh']
[u'perth', u'taxi', u'driver', u'suspend', u'alleg', u'sexual']
[u'polic', u'arrest', u'crystal', u'meth', u'raid']
[u'polic', u'pressur', u'mulrunji', u'wit']
[u'polic', u'search', u'sydney', u'attack']
[u'polic', u'seiz', u'multi', u'million', u'dollar', u'cannabi', u'crop']
[u'polic', u'investig', u'gang', u'stab']
[u'rain', u'breath', u'life', u'central', u'australia', u'park']
[u'rain', u'delay', u'play', u'open']
[u'rain', u'disrupt', u'australian', u'open', u'schedul']
[u'rain', u'expect', u'dampen', u'thredbo', u'blaze']
[u'reopen', u'predict', u'shipment', u'august']
[u'rise', u'level', u'threaten', u'hawker', u'resid']
[u'roddick', u'good', u'fieri', u'safin']
[u'rodin', u'thinker', u'dutch', u'heist']
[u'safin', u'fin', u'audibl', u'obscen']
[u'flood', u'caus', u'highway', u'closur']
[u'resid', u'overnight', u'flood']
[u'town', u'overwhelm', u'flood']
[u'scorch', u'heat', u'flash', u'flood', u'predict']
[u'search', u'continu', u'lose', u'fisherman']
[u'search', u'resum', u'miss', u'swimmer']
[u'sharapova', u'hingi', u'fourth', u'round']
[u'spotlight', u'beckett']
[u'stawel', u'awash', u'flash', u'flood']
[u'storm', u'kill', u'dozen', u'europ']
[u'super', u'trial', u'underway']
[u'swiss', u'racer', u'steal', u'aussi', u'thunder']
[u'sydney', u'roar', u'play', u'hop']
[u'govt', u'defend', u'health', u'budget', u'blow']
[u'govt', u'offer', u'support', u'blundston', u'worker']
[u'technolog', u'giant', u'draw', u'internet', u'code']
[u'thousand', u'expect', u'symphoni', u'concert', u'sydney']
[u'thousand', u'protest', u'turkish', u'armenian']
[u'thredbo', u'bushfir', u'threat', u'eas']
[u'thredbo', u'crew', u'brace', u'weather']
[u'thredbo', u'threat', u'eas']
[u'detain', u'turkish', u'journalist', u'murder']
[u'todd', u'river', u'causeway', u'reopen']
[u'turkey', u'condemn', u'journalist', u'shoot']
[u'review', u'program', u'alleg', u'abus']
[u'hous', u'rep', u'vote', u'remov', u'subsidi']
[u'north', u'korea', u'posit', u'nuclear', u'talk']
[u'vaughan', u'match']
[u'post', u'victori', u'insid', u'day']
[u'wed', u'ring', u'return', u'month']
[u'welfar', u'group', u'urg', u'govt', u'boost', u'homeless', u'servic']
[u'widespread', u'flood', u'south', u'australia']
[u'wildcat', u'second', u'cairn']
[u'worker', u'die', u'melbourn', u'industri', u'accid']
[u'charg', u'crime', u'spree']
[u'indonesian', u'die', u'bird']
[u'aussi', u'falter', u'earli', u'chase']
[u'aussi']
[u'author', u'allow', u'tourist', u'thredbo']
[u'author', u'monitor', u'cradl', u'mountain']
[u'beachgoer', u'warn', u'rough', u'condit']
[u'bindi', u'give', u'speech', u'media']
[u'boro', u'desper', u'viduka']
[u'british', u'polic', u'identifi', u'litvinenko', u'killer', u'friend']
[u'bushfir', u'threaten', u'sydney', u'home']
[u'call', u'drink', u'test', u'brisban', u'water']
[u'canberra', u'host', u'merino']
[u'car', u'buri', u'sand', u'high', u'tide', u'swamp', u'beach']
[u'castro', u'battl', u'life', u'chavez']
[u'china', u'show', u'power', u'suspect', u'missil', u'test']
[u'clinton', u'support', u'talk', u'presid', u'chanc']
[u'closer']
[u'closer']
[u'dakar', u'second', u'death', u'finish']
[u'dead', u'see', u'troop', u'kill', u'iraq']
[u'drug', u'help', u'prevent', u'breast', u'cancer']
[u'elmig', u'win', u'tour']
[u'expect', u'rain', u'eas', u'thredbo', u'threat']
[u'feder', u'storm', u'quarter']
[u'fiji', u'warn', u'retali', u'australia']
[u'author', u'assess', u'snowi', u'mountain', u'threat']
[u'firefight', u'battl', u'suspici', u'fire']
[u'firefight', u'battl', u'sydney', u'blaze']
[u'hewitt', u'coach', u'hand', u'davi']
[u'question', u'polic', u'pursuit', u'perth']
[u'french', u'send', u'home', u'disgrac']
[u'govt', u'urg', u'abolish', u'land', u'residenti']
[u'govt', u'wont', u'nuttal', u'document', u'public', u'bligh']
[u'green', u'happi', u'exclus', u'brethren', u'fund']
[u'grigorieva', u'announc', u'retir']
[u'guantanamo', u'better', u'scratch', u'british']
[u'heavi', u'rain', u'predict', u'western']
[u'hewitt', u'knock', u'open']
[u'hillari', u'clinton', u'announc', u'presid']
[u'hillari', u'clinton', u'announc', u'presidenti']
[u'hillari', u'clinton', u'make', u'presid']
[u'histor', u'boat', u'undergo', u'facelift']
[u'hockeyroo', u'miss', u'shoot', u'trophi']
[u'hous', u'afford', u'record', u'level', u'build']
[u'hussey', u'guid', u'australia', u'home']
[u'indian', u'polic', u'seiz', u'haul', u'train', u'station']
[u'inzamam', u'steal', u'ntini', u'thunder']
[u'japanes', u'govt', u'seek', u'tougher', u'penalti', u'custom']
[u'kewel', u'run', u'barcelona', u'comeback']
[u'knight', u'finish', u'season', u'high']
[u'leader', u'sevilla', u'hold', u'battl', u'villarr']
[u'lightn', u'strike', u'caus', u'stage', u'water']
[u'light', u'beller']
[u'littl', u'miss', u'sunshin', u'nab', u'prize']
[u'liverpool', u'rock', u'chelsea', u'titl', u'dream']
[u'charg', u'melbourn']
[u'mauresmo', u'dump', u'open', u'upset']
[u'mauresmo', u'feder', u'roddick', u'action']
[u'melt', u'arctic', u'draw', u'killer', u'whale', u'threaten']
[u'mexico', u'extradit', u'drug', u'smuggler']
[u'miss', u'fisherman', u'bodi']
[u'mongolian', u'tourist', u'drown', u'bondi']
[u'mulrunji', u'wit', u'death', u'alleg']
[u'muslim', u'communiti', u'consid', u'candid']
[u'zealand', u'slump']
[u'brothel', u'law', u'review', u'iemma']
[u'polic', u'million', u'patrol', u'ship']
[u'town', u'run', u'water']
[u'bat']
[u'offici', u'offic', u'suspect', u'bangkok', u'bomb']
[u'opal', u'phillip', u'face', u'season', u'end', u'injuri']
[u'opposit', u'pledg', u'minist', u'work', u'frontlin']
[u'palermo', u'draw', u'blank', u'reggina']
[u'polic', u'continu', u'search', u'redfern', u'gunman']
[u'polic', u'investig', u'attempt', u'palmerston', u'abduct']
[u'polic', u'question', u'arm', u'hold']
[u'polic', u'search', u'miss', u'teen']
[u'polic', u'sniff', u'hous']
[u'polic', u'suspect', u'murder', u'man', u'bodi']
[u'rain', u'bring', u'flood', u'relief']
[u'rain', u'bring', u'relief', u'farmer', u'crew']
[u'rain', u'help', u'contain', u'cradl', u'mountain', u'blaze']
[u'rain', u'offer', u'respit', u'crew']
[u'rain', u'reduc', u'thredbo', u'threat']
[u'rain', u'bring', u'relief']
[u'redfern', u'scour', u'shoot', u'fire']
[u'reinado', u'issu', u'death', u'threat', u'aust', u'troop']
[u'research', u'promis', u'cancer', u'treatment']
[u'roddick', u'dig', u'deep', u'book', u'date', u'fish']
[u'rise', u'tie', u'lead', u'hope', u'classic']
[u'rural', u'darwin', u'cyclon', u'shelter', u'unsaf']
[u'flood', u'repair', u'week']
[u'assess', u'damag', u'widespread', u'flood']
[u'search', u'continu', u'flood']
[u'serena', u'signal', u'intent', u'crush']
[u'search', u'check', u'strand', u'travel']
[u'conduct', u'search', u'flood']
[u'seven', u'kidnap', u'nigerian', u'region']
[u'strong', u'wind', u'thredbo']
[u'sydney', u'councillor', u'question', u'brothel', u'investig']
[u'sydney', u'hous', u'save', u'bushfir']
[u'sydney', u'total']
[u'govt', u'urg', u'outlin', u'health', u'strategi']
[u'storm', u'caus', u'widespread', u'flood']
[u'tatiana', u'announc', u'retir']
[u'teen', u'charg', u'train', u'station', u'stab']
[u'test', u'confirm', u'philippin', u'rebel', u'chief', u'kill']
[u'seed', u'kuznetsova', u'suffer', u'shock', u'loss']
[u'thousand', u'qlds']
[u'tiger', u'kill']
[u'turkish', u'polic', u'captur', u'murder', u'journalist', u'suspect']
[u'turkish', u'polic', u'hold', u'teen', u'suspect', u'journalist']
[u'turkish', u'polic', u'report', u'identifi', u'suspect']
[u'airlift', u'head', u'crash']
[u'unit', u'sink', u'marin']
[u'chopper', u'crash', u'kill', u'iraq']
[u'chopper', u'crash', u'leav', u'dead']
[u'reinforc', u'arriv', u'iraq']
[u'waratah', u'rock', u'dun', u'injuri']
[u'wild', u'weather', u'postpon', u'nude', u'festiv']
[u'add', u'futur', u'fund']
[u'help', u'farmer', u'offload', u'stock']
[u'hospit', u'woomargama', u'head', u'crash']
[u'aborigin', u'corpor', u'worker', u'meet']
[u'board', u'gain', u'boost', u'market']
[u'defi', u'nation', u'hous', u'slump']
[u'aftershock', u'rattl', u'indonesia', u'major', u'quak']
[u'airlin', u'success', u'contract', u'extens']
[u'call', u'water', u'summit']
[u'anti', u'hoon', u'law', u'work', u'cameron']
[u'turn', u'attent', u'loom', u'world']
[u'aust', u'time', u'restart', u'reconcili', u'stanhop']
[u'aust', u'interfer', u'solomon', u'polic', u'forc']
[u'author', u'pump', u'crippl', u'contain']
[u'author', u'uncov', u'sourc', u'legionnair', u'outbreak']
[u'bear', u'colt', u'clash', u'super', u'bowl']
[u'bear', u'reach', u'super', u'bowl']
[u'bedouri', u'brace', u'flood', u'record', u'rainfal']
[u'beij', u'brace', u'sever', u'sand', u'storm']
[u'criticis', u'flag', u'plan']
[u'flag', u'restrict', u'applaud']
[u'queensland', u'music', u'fan']
[u'surf', u'spark', u'beach', u'rescu']
[u'bing', u'drink', u'figur', u'rais', u'cancer', u'fear']
[u'bodi', u'recov', u'capsiz', u'indian', u'boat']
[u'bombala', u'celebr', u'australia', u'earli']
[u'british', u'skate', u'perth', u'brisban']
[u'bushfir', u'threaten', u'sydney', u'home']
[u'bush', u'refus', u'iraq', u'pullout', u'timet']
[u'caloundra', u'mayor', u'predict', u'increas', u'water', u'save']
[u'canada', u'give', u'save', u'spirit', u'bear', u'rainforest']
[u'bomb', u'kill', u'dozen', u'baghdad']
[u'carpent', u'urg', u'bandi', u'creek', u'harbour', u'rethink']
[u'car', u'swamp', u'kingston', u'fish', u'comp']
[u'chappel', u'attack', u'indian']
[u'chaser', u'star', u'court', u'bulldog', u'prank']
[u'chines', u'illeg', u'report', u'murder']
[u'clean', u'begin', u'heavi', u'delug']
[u'clijster', u'march', u'hingi', u'showdown']
[u'closer']
[u'confer', u'examin', u'challeng', u'face', u'major', u'citi']
[u'cool', u'chang', u'help', u'sydney', u'firefight']
[u'cooma', u'monaro', u'council', u'crack', u'water', u'law']
[u'cost', u'volunt', u'report']
[u'cradl', u'mountain', u'blaze', u'burn', u'month']
[u'croc', u'hunter', u'doco', u'screen']
[u'cultur', u'centr', u'open', u'beaudesert']
[u'custodian', u'odd', u'rock', u'remov']
[u'dairi', u'farmer', u'consid', u'protest', u'milk', u'price']
[u'dairi', u'farmer', u'plan', u'protest', u'milk', u'price']
[u'danger', u'game', u'fundamentalist']
[u'darwin', u'detent', u'centr', u'need', u'urgent', u'chang', u'hreoc']
[u'darwin', u'hous', u'afford', u'washington']
[u'death', u'toll', u'rise', u'baghdad', u'market', u'blast']
[u'debnam', u'announc', u'water', u'plan']
[u'demand', u'diesel', u'outstrip', u'suppli']
[u'democrat', u'richardson', u'join', u'presidenti', u'field']
[u'dept', u'aim', u'reopen', u'hawker', u'road']
[u'dfat', u'downgrad', u'philippin', u'travel', u'warn']
[u'door', u'close', u'upper', u'hunter', u'school']
[u'downpour', u'give', u'victoria', u'best', u'januari', u'rain']
[u'downpour', u'help', u'push', u'wagga', u'averag', u'month']
[u'drought', u'visit', u'burnett', u'region']
[u'drought', u'help', u'mozzi', u'number']
[u'dummi', u'help', u'childhood', u'skin', u'cancer', u'research']
[u'econom', u'develop', u'corp', u'appoint']
[u'econom', u'uncertainti', u'forc', u'shopper', u'tighten']
[u'england', u'kiwi', u'insist', u'australia', u'beatabl']
[u'english', u'author', u'work', u'prevent', u'spill']
[u'esper', u'tour', u'oper', u'join', u'indigen', u'tourism']
[u'eurobodalla', u'work', u'arsonist']
[u'europ', u'snap', u'wallabi', u'skin', u'trade']
[u'farmer', u'associ', u'urg', u'group', u'focus']
[u'father', u'plead', u'guilti', u'sexual', u'abus', u'daughter']
[u'fear', u'spread', u'feral', u'fish', u'gulf']
[u'fibr', u'exhibit', u'attract', u'massiv', u'crowd']
[u'firefight', u'contain', u'sydney']
[u'firefight', u'hope', u'beat', u'thredbo', u'blaze']
[u'fish', u'escap', u'north', u'warm', u'water']
[u'fish', u'comp', u'defend', u'car', u'swamp', u'king']
[u'fish', u'nation', u'urg', u'save', u'tuna', u'stock']
[u'forest', u'blaze', u'deliber']
[u'christian', u'brother', u'admit', u'abus', u'student']
[u'foster', u'case', u'adjourn']
[u'fuel', u'leak', u'prompt', u'infrastructur', u'improv']
[u'fund', u'need', u'tackl', u'macquari', u'island', u'rat']
[u'goldfield', u'miner', u'memori', u'committe', u'grow']
[u'govt', u'announc', u'islam', u'studi', u'centr']
[u'govt', u'critic', u'water', u'plan']
[u'govt', u'label', u'labor', u'water', u'propos', u'stunt']
[u'govt', u'pour', u'cold', u'water', u'summit', u'request']
[u'govt', u'assess', u'flood', u'damag']
[u'govt', u'home', u'buyer', u'plan', u'mayb', u'late', u'say']
[u'govt', u'hous', u'promis', u'creat', u'confus']
[u'green', u'group', u'form', u'elect', u'allianc']
[u'green', u'group', u'urg', u'moratorium', u'recycl', u'water']
[u'group', u'push', u'better', u'mental', u'health', u'servic']
[u'grower', u'debat', u'smut', u'resist', u'cane', u'varieti']
[u'hibbart', u'ferri', u'action']
[u'high', u'hop', u'golden', u'fleec']
[u'hillari', u'criticis', u'antarct']
[u'hingi', u'grind', u'reach', u'quarter']
[u'hockeyroo', u'miss', u'bronz']
[u'hoffman', u'win', u'hope', u'classic', u'play']
[u'hors', u'festiv', u'lose', u'event', u'lack']
[u'hunter', u'record', u'strong', u'summer', u'tourism']
[u'hunter', u'singer', u'win', u'tamworth', u'star', u'maker', u'award']
[u'hussey', u'rapt', u'bevan']
[u'card', u'disguis']
[u'inspir', u'gonzalez', u'upset', u'blake']
[u'surg', u'govt']
[u'intern', u'competitor', u'head', u'echuca', u'waterski']
[u'iron', u'davydenko', u'grind', u'berdych']
[u'jet', u'challeng', u'sydney']
[u'kimberley', u'doubl', u'mango', u'output']
[u'lake', u'entranc', u'host', u'communiti', u'cabinet', u'meet']
[u'leav', u'flag', u'home']
[u'local', u'busi', u'target', u'southern', u'capit']
[u'ludicr', u'concert', u'flag', u'decis', u'criticis']
[u'charg', u'year', u'rape']
[u'charg', u'saturday', u'night', u'sieg']
[u'child', u'road', u'crash']
[u'jail', u'grab', u'offic', u'crotch']
[u'qanta', u'bush', u'tshirt']
[u'refus', u'qanta', u'flight', u'shirt']
[u'marin', u'dare', u'afghan', u'rescu', u'mission']
[u'martyn', u'break', u'silenc', u'shock', u'resign']
[u'mayor', u'reject', u'temporari', u'desal', u'plant', u'propos']
[u'mayor', u'urg', u'quick', u'tree', u'knowledg', u'remov']
[u'mcnaught', u'comet', u'dazzl', u'eastern', u'aust']
[u'melbourn', u'stab', u'suspect', u'reloc']
[u'miner', u'plan', u'motel', u'hermidal']
[u'miss', u'bushwalk', u'safe']
[u'miss', u'teen', u'return', u'home']
[u'motorist', u'take', u'action', u'stop', u'drink', u'driver']
[u'urg', u'fuel', u'reduct', u'spend']
[u'mudge', u'gulgong', u'get', u'approv']
[u'murder', u'wife', u'court', u'diamond', u'ring', u'theft']
[u'muslim', u'group', u'wont', u'support', u'sheikh', u'push']
[u'nationalist', u'claim', u'victori', u'serbian', u'poll']
[u'nato', u'command', u'call', u'resourc']
[u'near', u'year', u'worth', u'rain', u'night']
[u'deal', u'pave', u'copper', u'project']
[u'doctor', u'expect', u'hospit', u'wait', u'time']
[u'newel', u'highway', u'servic', u'look', u'continu']
[u'flag', u'need', u'unit', u'australian']
[u'patrol', u'boat', u'border', u'protect']
[u'troop', u'arriv', u'baghdad']
[u'give', u'cool', u'recept', u'labor', u'water', u'plan']
[u'night', u'time', u'visibl', u'concern', u'cowra', u'pool']
[u'need', u'flag', u'wave']
[u'northern', u'ireland', u'polic', u'collud', u'murder', u'report']
[u'north', u'west', u'welcom', u'rain']
[u'walk', u'unsportsmanlik']
[u'opposit', u'vow', u'water', u'moratorium']
[u'farmer', u'rais', u'concern', u'share', u'water', u'suppli']
[u'nurs', u'reject', u'govt', u'increas']
[u'student', u'discov', u'spider', u'speci']
[u'opal', u'phillip', u'face', u'lengthi']
[u'opposit', u'accus', u'backflip']
[u'opposit', u'urg', u'caution', u'freight', u'subsidi']
[u'opposit', u'want', u'committe', u'scrutinis', u'budget']
[u'outcri', u'flag']
[u'palestinian', u'hama', u'leader', u'meet', u'syria']
[u'patchi', u'rain', u'fall', u'northern', u'victoria']
[u'blast', u'flag', u'condit']
[u'polic', u'investig', u'chainsaw', u'threat']
[u'polic', u'minist', u'call', u'overhaul', u'law']
[u'polic', u'probe', u'tomago', u'pedestrian', u'death']
[u'polic', u'probe', u'weekend', u'accid', u'assault']
[u'polic', u'seek', u'alleg', u'concert', u'ticket', u'fraudster']
[u'polic', u'seek', u'concert', u'ticket', u'fraudster']
[u'polic', u'seek', u'help', u'identifi']
[u'port', u'chief', u'talk', u'iron', u'port', u'benefit']
[u'power', u'earthquak', u'hit', u'indonesia']
[u'powerlin', u'plan', u'greet', u'local', u'opposit']
[u'practic', u'nurs', u'eas', u'illawarra', u'workload']
[u'price', u'surg', u'put', u'older', u'wool', u'market']
[u'qanta', u'turn', u'away', u'passeng', u'terror', u'tshirt']
[u'govt', u'push', u'gladston', u'manufactur']
[u'paraglid', u'rescu', u'tree']
[u'raaf', u'hercul', u'make', u'kalgoorli', u'emerg', u'land']
[u'rain', u'damag', u'break', u'hill', u'build']
[u'rain', u'eas', u'water', u'woe']
[u'rain', u'help', u'dampen', u'gippsland', u'threat']
[u'materi', u'price', u'rise', u'slow']
[u'record', u'crowd', u'turn', u'view', u'ash']
[u'rey', u'lead', u'real', u'spain']
[u'road', u'crash', u'victim', u'succumb', u'injuri']
[u'road', u'money', u'better', u'spend']
[u'defend', u'road', u'safeti', u'enforc', u'polici']
[u'govt', u'cut', u'renmark', u'storm', u'fund']
[u'health', u'deadlin', u'address', u'staff', u'shortag']
[u'sartor', u'play', u'north', u'coast', u'high', u'rise', u'fear']
[u'schammer', u'knife']
[u'scrap', u'flag', u'condit', u'cancel', u'say', u'govt']
[u'scrap']
[u'search', u'uncov', u'human', u'remain', u'brunswick', u'river']
[u'serbia', u'host', u'elect', u'montenegro', u'split']
[u'crew', u'return', u'renmark']
[u'sharapova', u'struggl', u'quarter']
[u'small', u'record', u'label', u'band', u'myspac', u'deal']
[u'spot', u'pose', u'problem', u'sydney', u'crew']
[u'spot', u'fire', u'north', u'sydney', u'near', u'hous']
[u'stab', u'suspect', u'reloc', u'delay']
[u'stanhop', u'defend', u'cost', u'jail']
[u'steelwork', u'face', u'multi', u'million', u'dollar', u'damag']
[u'coast', u'polic', u'continu', u'drive', u'workshop']
[u'sydney', u'caus', u'traffic', u'chao']
[u'sydney', u'fire', u'creat', u'traffic', u'havoc']
[u'sydney', u'fire', u'threaten', u'home']
[u'teen', u'rescu', u'fall', u'cliff', u'face']
[u'teen', u'face', u'court', u'hotel', u'break']
[u'tehran', u'wont', u'nuclear', u'program']
[u'charg', u'hoard']
[u'tiger', u'shoot', u'tabl']
[u'tourism', u'group', u'tell', u'govt', u'labour', u'shortag']
[u'tourist', u'critic', u'condit', u'road']
[u'townsvill', u'rain', u'week']
[u'trade', u'ban', u'hurt', u'fijian', u'dfat']
[u'transfer', u'area', u'wont', u'impact', u'shire', u'financ', u'mayor']
[u'transurban', u'sue', u'burnley', u'tunnel', u'builder']
[u'truck', u'driver', u'fin', u'spill']
[u'underdog', u'paraguay', u'women', u'golf', u'world']
[u'victori', u'team', u'beat', u'say', u'muscat']
[u'cricket', u'celebr', u'countri', u'week', u'birthday']
[u'waratah', u'beat', u'brumbi', u'wollongong', u'hawk']
[u'scrap', u'controversi', u'educ']
[u'welshman', u'claim', u'record', u'skateboard', u'journey']
[u'condit', u'firefight']
[u'wit', u'seek', u'busselton', u'bash']
[u'woman', u'escap', u'bike', u'track', u'bash']
[u'work', u'begin', u'warmun', u'centr']
[u'work', u'start', u'intersect', u'revamp']
[u'iraq', u'bomb', u'attack']
[u'cane', u'smut', u'case', u'mackay', u'area']
[u'australia', u'address']
[u'abalon', u'diver', u'surviv', u'shark', u'attack']
[u'academ', u'govern', u'fund', u'muslim', u'think', u'tank']
[u'accc', u'urg', u'investig', u'diesel', u'price']
[u'great', u'capit', u'great', u'citi']
[u'reject', u'call', u'judg']
[u'aid', u'group', u'launch', u'legal', u'action', u'viagra']
[u'apex', u'club', u'get', u'park', u'fund']
[u'aust', u'japan', u'plan', u'global', u'tuna', u'conserv']
[u'bali', u'death', u'sentenc', u'harsh', u'indonesian']
[u'beach', u'goer', u'warn', u'danger', u'condit']
[u'beaconsfield', u'gold', u'move', u'control']
[u'beaconsfield', u'reopen', u'week']
[u'beckham', u'complet', u'real', u'contract', u'say', u'club']
[u'beefi', u'beer', u'come', u'bite']
[u'lade', u'deputi', u'mock', u'bush', u'iraq', u'troop']
[u'black', u'cap', u'bounc', u'adelaid']
[u'blue', u'green', u'alga', u'tullaroop', u'reservoir']
[u'brisban', u'coupl', u'jail', u'centrelink', u'fraud']
[u'britain', u'arrest', u'terror', u'suspect']
[u'broadband', u'plan', u'west']
[u'burnout', u'lead', u'polic', u'arrest']
[u'busi', u'communiti', u'lobbi', u'drought']
[u'calf', u'rear', u'facil', u'owner', u'promis', u'smell']
[u'extra', u'judg', u'eas', u'trial', u'delay']
[u'call', u'agricultur', u'fund', u'educ', u'boost']
[u'canberra', u'plater', u'catch', u'speed', u'limit']
[u'causeway', u'rescu', u'prompt', u'polic', u'warn']
[u'central', u'west', u'council', u'push', u'improv']
[u'centr', u'encourag', u'islam', u'studi', u'govt']
[u'chaser', u'comedian', u'clear', u'offens', u'behaviour']
[u'chaser', u'star', u'clear', u'bulldog', u'stunt']
[u'china', u'confirm', u'anti', u'satellit', u'test']
[u'china', u'face', u'question', u'missil', u'test']
[u'china', u'put', u'restrict', u'prime', u'time']
[u'church', u'powerless', u'stop', u'cathedr', u'strip', u'club']
[u'clark', u'take', u'stand', u'rape', u'trial']
[u'closer']
[u'closer', u'news']
[u'probe', u'traveston', u'land', u'sale']
[u'comet', u'put', u'night', u'time', u'local', u'resid']
[u'commission', u'criticis', u'deni', u'water', u'crisi']
[u'communiti', u'feedback', u'seek', u'firefight', u'effort']
[u'confid', u'roddick', u'breez', u'semi']
[u'cooler', u'wetter', u'condit', u'predict']
[u'council', u'adopt', u'better', u'meet', u'secur']
[u'councillor', u'fear', u'contain', u'cane', u'toad', u'threat']
[u'council', u'propos', u'hous', u'lot', u'kununurra']
[u'council', u'push', u'ahead', u'paint', u'sale', u'plan']
[u'council', u'legal', u'brothel', u'accus', u'aid']
[u'council', u'search', u'cecil', u'plain', u'water', u'shortag']
[u'council', u'desal', u'plant', u'worri']
[u'council', u'replac', u'macintosh', u'pedestrian', u'bridg']
[u'crew', u'contain', u'ring']
[u'hop', u'drought', u'action', u'rais']
[u'dairi', u'farmer', u'threaten', u'dump', u'milk', u'price']
[u'debnam', u'disagre', u'young', u'liber', u'polici']
[u'debnam', u'pledg', u'outlaw', u'flag', u'ban']
[u'disapprov', u'global', u'role', u'rise', u'survey']
[u'save', u'hous']
[u'drought', u'cast', u'doubt', u'footbal', u'season', u'start']
[u'drought', u'hamper', u'environment', u'project']
[u'drought', u'relief', u'concert', u'move', u'longerenong']
[u'drug', u'oper', u'trigger', u'trucki', u'arrest']
[u'drug', u'syndic', u'boss', u'die', u'sydney', u'hospit']
[u'earli', u'fli', u'dinosaur', u'glide', u'like', u'biplan', u'studi']
[u'england', u'bowler', u'stifl', u'kiwi']
[u'england', u'kiwi', u'rope']
[u'england', u'kiwi']
[u'england', u'stutter', u'earli', u'chase']
[u'ethiopian', u'troop', u'begin', u'pull', u'somalia']
[u'farley', u'miss', u'clash', u'bullet']
[u'farmer', u'disadvantag', u'despit', u'woolworth']
[u'farmer', u'wont', u'divulg', u'detail', u'protest']
[u'feder', u'book', u'date', u'roddick']
[u'govt', u'urg', u'releas', u'road', u'fund']
[u'firefight', u'control', u'north', u'sydney', u'blaze']
[u'firefight', u'work', u'night', u'contain']
[u'report', u'turn', u'comet', u'sight']
[u'fisher', u'want', u'bandi', u'creek', u'harbour', u'weir', u'stay']
[u'flag', u'request', u'safeti', u'issu', u'say']
[u'flood', u'bring', u'relief', u'outback', u'grazier']
[u'flood', u'kill', u'angola', u'mozambiqu']
[u'fool', u'gold', u'produc', u'donat', u'thousand', u'wildlif']
[u'footwear', u'union', u'urg', u'blundston', u'help', u'retrain']
[u'golf', u'ball', u'smash', u'window']
[u'goonoo', u'bushfir', u'contain']
[u'govt', u'plan', u'subdivid', u'naracoort', u'rail']
[u'govt', u'plea', u'hick', u'hollow', u'opposit']
[u'govt', u'reject', u'rudd', u'educ', u'revolut']
[u'govt', u'set', u'deadlin', u'hick', u'charg']
[u'grant', u'council', u'develop', u'panel', u'exempt', u'unlik']
[u'hick', u'charg', u'expect', u'middl', u'februari']
[u'highway', u'flood', u'damag', u'repair']
[u'hop', u'rain', u'signal', u'nino']
[u'hous', u'blaze', u'consid', u'suspici']
[u'howard', u'drop', u'vanston', u'cabinet', u'reshuffl']
[u'howard', u'make', u'hard', u'choic', u'reshuffl']
[u'iemma', u'announc', u'public', u'hous', u'plan']
[u'illawarra', u'rental', u'properti', u'vacanc', u'rate']
[u'interpret', u'centr', u'manag', u'look', u'forward']
[u'iran', u'ban', u'nuclear', u'inspector']
[u'iran', u'cooper', u'despit', u'nuclear', u'inspect']
[u'irrig', u'merger', u'benefit', u'grower']
[u'irrig', u'group', u'seek', u'murray', u'darl', u'horticultur']
[u'isol', u'burketown', u'await', u'food', u'drop']
[u'japanes', u'meet', u'address', u'declin', u'tuna', u'stock']
[u'kazakhstan', u'arrest', u'parrot', u'smuggl']
[u'kimberley', u'coast', u'protect', u'scheme', u'get', u'fund', u'boost']
[u'labor', u'call', u'educ', u'revolut']
[u'labor', u'vow', u'tape', u'streamlin', u'hous']
[u'lack', u'road', u'scheme', u'worri', u'council']
[u'lebanes', u'protest', u'injur', u'gunfir']
[u'lewi', u'pump', u'clash']
[u'grain', u'storag', u'unlik', u'contributor', u'silo']
[u'major', u'bangkok', u'bomb', u'suspect', u'releas']
[u'court', u'fatal', u'launceston', u'crash']
[u'court', u'year', u'brawl']
[u'mayor', u'air', u'super', u'shire', u'doubt']
[u'mayor', u'fear', u'problem', u'drinker', u'avoid', u'alcohol']
[u'mcnaught', u'comet', u'dazzl', u'stargaz']
[u'meet', u'fail', u'allay', u'qanta', u'takeov', u'worri']
[u'meet', u'focus', u'glebe', u'estat', u'troubl']
[u'missil', u'caus', u'black', u'hawk', u'crash']
[u'export', u'head', u'step']
[u'mehdi', u'militiamen', u'iraq', u'detent']
[u'understand', u'flag', u'concern']
[u'nebo', u'shire', u'busi', u'develop', u'applic']
[u'newpac', u'collieri', u'open', u'extens']
[u'wine', u'bottl', u'label', u'treati', u'save', u'industri', u'money']
[u'zealand', u'trounc', u'lowli', u'england']
[u'govt', u'vow', u'agricultur', u'research', u'station']
[u'nurs', u'strike', u'reject', u'offer']
[u'nude', u'danc', u'club', u'church', u'ground', u'disappoint']
[u'number', u'filipino', u'abduct', u'nigeria', u'jump']
[u'omodei', u'urg', u'confisc', u'corrupt', u'politician']
[u'kill', u'lanka', u'bomb', u'attack', u'report']
[u'spot', u'fin', u'issu', u'flout', u'water']
[u'open', u'arrest', u'prompt', u'promis', u'voyeur']
[u'opposit', u'call', u'seal', u'cowel', u'whyalla']
[u'opposit', u'criticis', u'water', u'extract']
[u'opposit', u'want', u'expressway', u'cost', u'report', u'releas']
[u'orford', u'golf', u'resort', u'project', u'stall']
[u'oust', u'vanston', u'consid', u'polit', u'futur']
[u'pakistan', u'akhtar', u'return', u'home']
[u'paraglid', u'pilot', u'lucki', u'escap', u'major', u'injuri']
[u'pari', u'get', u'probat', u'drink', u'drive']
[u'perfect', u'view', u'condit', u'comet', u'watcher']
[u'accus', u'hick', u'case', u'election']
[u'dump', u'vanston', u'frontbench', u'reshuffl']
[u'polic', u'agre', u'riverway', u'trial']
[u'polic', u'appeal', u'info', u'palmerston', u'dead', u'cat']
[u'polic', u'associ', u'reject', u'watkin', u'offic', u'number']
[u'polic', u'hunt', u'eaglehawk', u'attack']
[u'polic', u'investig', u'possibl', u'arson', u'nation', u'park']
[u'polic', u'investig', u'secur', u'firm', u'biki', u'link']
[u'policeman', u'prais', u'save', u'woman', u'flood']
[u'polic', u'woman', u'river']
[u'polic', u'tough', u'dirt', u'bike', u'breaker']
[u'possibl', u'diazanon', u'consid']
[u'privaci', u'task', u'forc', u'concern', u'access', u'card']
[u'protest', u'demand', u'uniti', u'govt', u'lebanon']
[u'psychologist', u'beat', u'forc', u'patient', u'wear', u'leash']
[u'public', u'warn', u'health', u'risk']
[u'price', u'year', u'high']
[u'polic', u'media', u'director', u'investig']
[u'queanbeyan', u'resid', u'face', u'tough', u'water', u'penalti']
[u'rain', u'mix', u'bless', u'station', u'owner']
[u'rain', u'expect', u'boost', u'farmer', u'moral']
[u'rain', u'stop', u'drought']
[u'rain', u'set', u'bushfir', u'contain', u'effort']
[u'report', u'call', u'reimburs', u'volunt']
[u'reshuffl', u'leav', u'vanston', u'frontbench']
[u'revamp', u'plan', u'cerebr', u'palsi', u'leagu']
[u'reveng', u'attack', u'shark', u'allow', u'polic']
[u'rinker', u'takeov', u'deadlin', u'extend']
[u'riot', u'squad', u'send', u'port', u'macquari']
[u'roadwork', u'ancient', u'tree', u'chop']
[u'rudd', u'pledg', u'educ', u'overhaul']
[u'rudd', u'unveil', u'educ', u'polici']
[u'rudd', u'urg', u'fund', u'educ', u'revolut']
[u'sandston', u'block', u'thiev', u'face', u'hefti', u'penalti']
[u'santo', u'sign', u'deal', u'newmont']
[u'schammer', u'miss', u'start', u'season']
[u'scheme', u'tackl', u'shoalhaven', u'unemploy']
[u'search', u'build', u'prove', u'difficult']
[u'search', u'upper', u'eyr', u'peninsula', u'ambul']
[u'secur', u'increas', u'sulawesi', u'shoot']
[u'serena', u'claw', u'semi']
[u'share', u'market', u'reach', u'record', u'high']
[u'shark', u'diver', u'head', u'mouth']
[u'sign', u'improv', u'safeti', u'wake', u'bikeway']
[u'snowi', u'fire', u'clean', u'continu']
[u'soldier', u'hurt', u'train', u'mishap']
[u'solomon', u'stand', u'firm', u'arm', u'guard']
[u'springborg', u'attack']
[u'stanhop', u'call', u'reconcili', u'effort', u'aust']
[u'state', u'urg', u'drop', u'uranium', u'shipment', u'ban']
[u'stirl', u'urg', u'accc', u'petrol', u'price']
[u'stoner', u'pledg', u'earlier', u'council', u'elect', u'break']
[u'student', u'trust', u'record', u'sharp', u'rise', u'demand']
[u'suicid', u'blast', u'kill', u'afghan', u'outsid', u'nato', u'base']
[u'suicid', u'blast', u'outsid', u'nato', u'afghan', u'base', u'kill']
[u'support', u'grow', u'redevelop', u'dubbo', u'hospit']
[u'sydney', u'edg', u'semi', u'butcher']
[u'tabl', u'size', u'apart', u'sale', u'london']
[u'tatong', u'contain']
[u'teacher', u'await', u'transfer', u'notic']
[u'teen', u'mistaken', u'send', u'child', u'support', u'request']
[u'teen', u'charg', u'radio', u'announc', u'murder']
[u'teen', u'court', u'accus', u'steal', u'smoke']
[u'admit', u'abus', u'sister']
[u'tourism', u'industri', u'welcom', u'skill', u'plan']
[u'tourist', u'urg', u'stay', u'away', u'young', u'dolphin']
[u'treasur', u'hous', u'comment', u'help', u'industri']
[u'turk', u'mourn', u'slay', u'armenian', u'editor']
[u'turnbul', u'face', u'tough', u'decis', u'water']
[u'turnbul', u'target', u'water', u'woe']
[u'arrest', u'polic', u'chase']
[u'union', u'fear', u'mitsubishi', u'cleric', u'loss']
[u'unit', u'construct', u'drive', u'build', u'boom']
[u'firm', u'urg', u'bush', u'tackl', u'climat', u'chang']
[u'vaidisova', u'triumph', u'czech', u'battl']
[u'vail', u'open', u'wagga', u'rail', u'bridg']
[u'vanston', u'drop', u'feder', u'cabinet']
[u'vanston', u'dump', u'frontbench']
[u'victori', u'confid', u'go', u'leagu', u'final']
[u'waterfront', u'oppon', u'reveal', u'photo', u'montag']
[u'watkin', u'promis', u'polic', u'illawarra']
[u'watson', u'comeback', u'bull']
[u'wellington', u'east', u'gippsland', u'shire', u'share']
[u'wild', u'weather', u'impact', u'build', u'industri']
[u'window', u'smash', u'golf', u'ball']
[u'wineri', u'face', u'higher', u'rat', u'slug']
[u'woman', u'bash', u'basebal', u'home', u'invas']
[u'woolworth', u'gestur', u'heart', u'tug', u'public', u'stunt']
[u'zimbabw', u'white', u'farmer', u'land']
[u'fin', u'imag', u'assault', u'case']
[u'director', u'rebuff', u'union', u'concern']
[u'accc', u'stay', u'petrol', u'price', u'debat']
[u'accc', u'fight', u'telstra', u'high', u'court', u'challeng']
[u'accus', u'child', u'killer', u'grant', u'bail']
[u'deni', u'aim', u'gun', u'civilian', u'brisban']
[u'age', u'care', u'home', u'accus', u'feed', u'resid']
[u'allow', u'stake', u'compani']
[u'anti', u'bush', u'tshirt']
[u'arnold', u'name', u'socceroo', u'squad', u'denmark', u'friend']
[u'artist', u'inspir', u'wild', u'weather']
[u'aust', u'join', u'intern', u'outcri', u'corn']
[u'australian', u'charg', u'credit', u'card', u'fraud']
[u'australian', u'live', u'longer', u'figur']
[u'banana', u'suppli', u'hurt', u'north', u'grower']
[u'belgian', u'cycl', u'great', u'museeuw', u'admit', u'dope']
[u'belmont', u'shop', u'centr', u'work', u'begin', u'soon']
[u'bendigo', u'council', u'criticis', u'meet', u'secur']
[u'bendigo', u'name', u'citizen', u'year']
[u'bendigo', u'polic', u'push', u'nightclub', u'lockout']
[u'blewett', u'fin', u'radio', u'gaff']
[u'breaker', u'sling', u'singapor']
[u'brisban', u'jail', u'drink', u'drive', u'offenc']
[u'british', u'swim', u'boss', u'hint', u'thorp', u'comeback']
[u'bruce', u'highway', u'reopen', u'truck', u'roll']
[u'build', u'delay', u'forc', u'tech', u'colleg', u'consid']
[u'burst', u'main', u'caus', u'disrupt', u'alic', u'water', u'suppli']
[u'bush', u'iraq']
[u'bush', u'seek', u'congress', u'support', u'union', u'speech']
[u'bush', u'deliv', u'state', u'union', u'address']
[u'bush', u'state', u'union', u'address']
[u'bush', u'urg', u'patienc', u'iraq', u'plan']
[u'busi', u'chamber', u'chief', u'beat']
[u'caloundra', u'threaten', u'home']
[u'cano', u'trail', u'plan', u'maroochi', u'river']
[u'defend', u'foreign', u'firefight', u'high']
[u'chadian', u'troop', u'seiz', u'hijack', u'sudanes', u'plane']
[u'china', u'admit', u'space', u'missil', u'test']
[u'chubb', u'driver', u'disput', u'resolv']
[u'clacklin', u'communiti', u'back', u'plan', u'realign', u'highway']
[u'clark', u'oppos', u'water', u'restrict']
[u'clijster', u'outlast', u'plucki', u'hingi']
[u'closer']
[u'coal', u'conveyor', u'need', u'tarong', u'energi', u'power']
[u'commission', u'rebuff', u'report', u'rise', u'unlicens']
[u'communiti', u'leav', u'provid', u'servic']
[u'communiti', u'want', u'differ', u'site', u'justic', u'complex']
[u'conserv', u'council', u'call', u'recycl', u'water']
[u'council', u'consid', u'hasten', u'extra', u'aitkenval']
[u'council', u'seek', u'wind', u'farm', u'buffer', u'zone']
[u'council', u'discuss', u'water', u'sewerag', u'strategi']
[u'council', u'tell', u'powerboat', u'race', u'cancel']
[u'council', u'probe', u'intersect', u'safeti']
[u'court', u'show', u'video', u'alleg', u'whip']
[u'croc', u'sight', u'spark', u'safeti', u'warn']
[u'cruelti', u'case', u'spark', u'anim', u'care', u'remind']
[u'deal', u'chines', u'flight', u'school', u'oper']
[u'debnam', u'promis', u'goulburn', u'water', u'pipelin']
[u'demerit', u'seal', u'rare', u'watford']
[u'democrat', u'accus', u'bush', u'reckless', u'polici']
[u'demot', u'bless', u'disguis', u'cobb']
[u'denmark', u'wind', u'farm', u'group', u'support', u'cabinet', u'reshuffl']
[u'develop', u'await', u'news', u'airport', u'sale', u'mediat']
[u'devonport', u'resid', u'shock', u'domest', u'disput']
[u'head']
[u'doubt', u'cast', u'eurobodalla', u'water', u'suppli', u'revamp']
[u'doubt', u'surround', u'council', u'search', u'depot']
[u'drought', u'arriv', u'mother', u'natur', u'offer']
[u'ward', u'shark', u'swim', u'event']
[u'emerg', u'worker', u'give', u'aust', u'award']
[u'employ', u'back', u'die', u'man', u'redund']
[u'england', u'take', u'light', u'white']
[u'push', u'permapin', u'post', u'dispos']
[u'eurobodalla', u'name', u'aust', u'award', u'winner']
[u'european', u'travel', u'writer', u'coast', u'appeal']
[u'exercis', u'put', u'emerg', u'servic', u'test']
[u'minist', u'diplomat', u'post', u'hand']
[u'exmouth', u'tourism', u'promot', u'south', u'west']
[u'farmer', u'report', u'reason', u'crop', u'summer']
[u'ferri', u'driver', u'charg', u'sydney', u'harbour', u'death']
[u'firefight', u'reveal', u'tumut', u'region', u'concern']
[u'flagstaff', u'hill', u'showcas', u'tweed', u'histori']
[u'flood', u'suppli', u'remot', u'communiti']
[u'focus', u'build', u'safeti']
[u'footi', u'subject', u'kick', u'port', u'lincoln']
[u'man', u'stalwart', u'schubert', u'die']
[u'wallabi', u'tabua', u'name', u'fiji', u'coach']
[u'forum', u'debat', u'futur', u'hour', u'polic', u'station']
[u'froggi', u'group', u'founder', u'jail', u'fraud']
[u'gene', u'studi', u'show', u'african', u'centuri']
[u'girl', u'hospit', u'beach', u'buggi', u'mishap']
[u'giteau', u'forc', u'debut']
[u'gonzalez', u'send', u'nadal', u'crash', u'open']
[u'governor', u'general', u'launch', u'year', u'book', u'australia']
[u'govt', u'quiz', u'mari', u'river', u'wildlif', u'protect']
[u'govt', u'reject', u'cessnock', u'council', u'road', u'fund']
[u'govt', u'expand', u'rockingham', u'hospit']
[u'grain', u'price', u'forc', u'central', u'feedlot', u'closur']
[u'gunman', u'hijack', u'sudanes', u'passeng', u'plane']
[u'gunmen', u'iraqi', u'minist', u'convoy', u'kill']
[u'haas', u'want', u'light', u'shed', u'solar', u'citi', u'decis']
[u'haa', u'fight', u'match', u'point', u'reach', u'aussi', u'open']
[u'health', u'servic', u'stand', u'patient', u'food']
[u'heavi', u'rain', u'caus', u'phalari', u'poison', u'stock']
[u'high', u'water', u'user', u'visi', u'work', u'consumpt']
[u'holbrook', u'seek', u'feder', u'help']
[u'hop', u'rain', u'eas', u'nino']
[u'hospit', u'patient', u'angri', u'overcrowd', u'photo']
[u'hous', u'industri', u'welcom', u'inflat', u'drop']
[u'howard', u'deni', u'attack']
[u'inflat', u'fall', u'allevi', u'rat', u'pressur']
[u'inflat', u'figur']
[u'rate', u'pressur', u'eas']
[u'internet', u'program', u'abl', u'monitor', u'rise', u'floodwat']
[u'iran', u'defiant', u'prospect', u'strike']
[u'chief', u'favour', u'hawkey', u'expans']
[u'joyc', u'defend', u'decis', u'campaign', u'dubbo']
[u'kangaloon', u'aquif', u'decis', u'delay']
[u'kewel', u'train', u'surgeri']
[u'land', u'council', u'beat', u'kimberley', u'coast']
[u'year', u'rain', u'suppli', u'pilbara']
[u'legal', u'action', u'fail', u'stop', u'macarthur', u'river']
[u'lindsay', u'promot', u'cabinet', u'reshuffl']
[u'llewellyn', u'look', u'forward', u'turbul', u'environ']
[u'lobbi', u'group', u'urg', u'quick', u'action', u'allow', u'harvest']
[u'local', u'winemak', u'common', u'export', u'label']
[u'lower', u'inflat', u'thank', u'china', u'govt']
[u'male', u'midriff', u'discrimin', u'club']
[u'airlift', u'hospit', u'dangar', u'fall', u'mishap']
[u'sell', u'life']
[u'market', u'close', u'record', u'high']
[u'mayor', u'hit', u'larri', u'reconstruct', u'rate']
[u'mayor', u'want', u'answer', u'water', u'situat']
[u'meet', u'focus', u'culcairn', u'health', u'servic']
[u'meninde', u'raid', u'uncov', u'suspect', u'illeg', u'worker']
[u'say', u'citi', u'crew', u'qualifi', u'fight']
[u'miss', u'ballarat', u'teen', u'safe']
[u'miss', u'teen', u'runaway']
[u'need', u'launceston', u'say', u'doctor', u'group']
[u'mourinho', u'expect', u'stay', u'chelsea']
[u'expect', u'quit', u'councillor', u'month']
[u'propos', u'crackdown', u'disqualifi', u'driver']
[u'urg', u'focus', u'better', u'outback', u'road']
[u'morgan', u'council', u'investig', u'drought', u'proof']
[u'multicultur', u'group', u'hop', u'closer', u'tie']
[u'deal', u'secur', u'kangaroo', u'summer', u'water', u'suppli']
[u'noon', u'open']
[u'north', u'feel', u'impact', u'cyclon', u'larri']
[u'deni', u'convent', u'centr', u'need']
[u'home', u'care', u'servic', u'fund', u'boost']
[u'nurs', u'long', u'trek', u'rais', u'youth', u'centr', u'fund']
[u'obedi', u'train', u'help', u'prevent', u'attack']
[u'opposit', u'reneg', u'treasuri', u'cost', u'deal']
[u'outback', u'flood', u'isol', u'birdsvill']
[u'papua', u'guinea', u'deni', u'fli', u'moti', u'solomon']
[u'patient', u'photo', u'highlight', u'hospit', u'overcrowd']
[u'petrol', u'line', u'world', u'price', u'accc']
[u'plantat', u'compani', u'accus', u'environment']
[u'condemn', u'race', u'hate', u'video']
[u'give', u'water', u'project']
[u'promot', u'ministeri', u'line']
[u'urg', u'die', u'refus', u'redund']
[u'welcom', u'confid', u'boost', u'inflat', u'drop']
[u'implic', u'moti', u'escap']
[u'women', u'accus', u'sorceri', u'murder']
[u'polic', u'hunt', u'women', u'prey', u'elder', u'victim']
[u'polic', u'investig', u'cow', u'rape']
[u'polic', u'taxi', u'driver', u'assault', u'woman']
[u'polic', u'seek', u'help', u'investig', u'caravan', u'think']
[u'polic', u'boost', u'number', u'handl', u'drought', u'relief']
[u'polic', u'investig', u'gang', u'violenc', u'video']
[u'politician', u'kill', u'indian', u'violenc']
[u'pregnant', u'women', u'urg', u'check', u'folic', u'acid', u'dosag']
[u'prendergast', u'question', u'caus', u'council', u'angst']
[u'pressur', u'rat', u'eas']
[u'program', u'help', u'stop', u'suicid', u'region', u'australia']
[u'public', u'warn', u'sale', u'water', u'filter', u'scam']
[u'govt', u'say', u'rent', u'assist', u'go']
[u'lead', u'drug', u'arrest']
[u'quarantin', u'servic', u'say', u'cane', u'toad', u'fear', u'valid']
[u'race', u'hate', u'video', u'shock', u'lebanes', u'leader', u'say']
[u'rain', u'mix', u'bless', u'mackay', u'region']
[u'rain', u'fall', u'drought', u'stricken', u'central', u'western']
[u'rain', u'grazier', u'opportun', u'restock']
[u'rate', u'rise', u'land', u'shortag', u'darwin', u'rental', u'market']
[u'cross', u'play', u'donor', u'servic', u'closur']
[u'resid', u'opposit', u'supermarket', u'plan']
[u'return', u'univers', u'bright']
[u'riverland', u'council', u'adopt', u'greener', u'power']
[u'road', u'condit', u'caus', u'fatal', u'crash', u'polic']
[u'roar', u'ditch', u'gibson', u'buess']
[u'rudd', u'challeng', u'howard', u'educ', u'debat']
[u'rudd', u'use', u'push', u'educ', u'plan']
[u'govt', u'set', u'educ', u'target']
[u'lower', u'export', u'migrat', u'target']
[u'urg', u'reform', u'taxi', u'industri', u'assault']
[u'scrappi', u'sharapova', u'battl', u'past', u'chakvetadz']
[u'floor', u'test', u'propos', u'port', u'site', u'begin']
[u'shark', u'attack', u'survivor', u'get', u'celebr', u'agent']
[u'shark', u'attack', u'survivor', u'mend']
[u'shop', u'destroy', u'mayfield', u'blaze']
[u'southern', u'queensland']
[u'stanhop', u'reject', u'debnam', u'water', u'plan', u'goulburn']
[u'mari', u'pass', u'post', u'repair']
[u'stoner', u'criticis', u'govt', u'progress', u'pacif']
[u'storm', u'impact', u'council', u'surplus']
[u'student', u'protest', u'falun', u'gong', u'persecut']
[u'survey', u'reveal', u'hunter', u'drink', u'drive', u'habit']
[u'swim', u'centr', u'concern', u'lack', u'parent']
[u'sydney', u'armenian', u'protest', u'journalist', u'murder']
[u'govt', u'accus', u'ignor', u'small', u'busi']
[u'tasmania', u'chase', u'sydney']
[u'motorist', u'await', u'ethanol', u'blend', u'fuel']
[u'taxi', u'group', u'say', u'perth', u'attack', u'bear']
[u'telstra', u'take', u'accc', u'fight', u'high', u'court']
[u'alleg', u'open', u'voyeur', u'plead', u'guilti']
[u'suspect', u'voyeur', u'charg', u'open', u'pic']
[u'kill', u'lebanes', u'protest']
[u'kill', u'hurt', u'attack', u'thai', u'south']
[u'titan', u'bind', u'mistak', u'princ']
[u'titan', u'trial', u'improv', u'skill']
[u'toad', u'buster', u'call', u'central', u'darwin']
[u'trio', u'link', u'biki', u'gang', u'charg', u'home']
[u'polic', u'releas', u'underground', u'bomb', u'vision']
[u'uproar', u'stoner', u'break', u'hill', u'water', u'claim']
[u'depend', u'foreign', u'bush']
[u'vanston', u'futur']
[u'vanston', u'career', u'buri', u'pyne', u'say']
[u'say', u'state', u'control', u'water', u'project']
[u'port', u'cane', u'toad']
[u'water', u'exempt', u'cancel']
[u'water', u'group', u'back', u'environ', u'water', u'portfolio']
[u'water', u'group', u'watch', u'turnbul', u'futur', u'direct']
[u'wide', u'queensland']
[u'wit', u'seek', u'mildura', u'nightclub', u'assault']
[u'work', u'begin', u'narromin', u'palliat', u'care', u'unit']
[u'worker', u'die', u'strike', u'excav']
[u'year', u'book', u'australia']
[u'rebel', u'kill', u'iraqi', u'assault']
[u'walk', u'cano', u'trail']
[u'academ', u'leav', u'newcastl', u'wollongong', u'pursu']
[u'account', u'receiv', u'sentenc', u'theft']
[u'welcom', u'water', u'plan']
[u'battl', u'googong']
[u'alic', u'communiti', u'bank', u'june']
[u'qaeda', u'deputi', u'warn', u'repris', u'polici']
[u'aust', u'market']
[u'privat', u'equiti', u'buyout', u'talk']
[u'arnold', u'look', u'forward', u'denmark', u'friend']
[u'aussi', u'flag']
[u'australia', u'award', u'recognis', u'volunt']
[u'australian', u'woman', u'refere', u'men', u'rugbi']
[u'bali', u'bomb', u'film', u'releas', u'indonesia']
[u'ballarat', u'council', u'settl', u'mayor', u'legal']
[u'ballarat', u'rower', u'upset', u'lake', u'wendoure', u'wont']
[u'baptista', u'doubl', u'rescu', u'arsenal']
[u'barcelona', u'point', u'clear']
[u'beatti', u'make', u'small', u'concess', u'aborigin']
[u'benaud', u'knock', u'gibb', u'appeal']
[u'job', u'boost', u'hopetoun']
[u'organis', u'admit', u'flag', u'bungl']
[u'turnout', u'expect', u'basketbal', u'tournament']
[u'birdsvill', u'rejoic', u'flood']
[u'blackberri', u'infest', u'hamper', u'firefight', u'effort']
[u'blair', u'rebuff', u'troop', u'withdraw']
[u'blue', u'green', u'alga', u'close', u'lake', u'albert']
[u'bold', u'approach', u'posit', u'manag', u'water']
[u'bull', u'bat', u'gabba']
[u'canberran', u'like', u'flout', u'tougher', u'water', u'ban']
[u'catania', u'fourth', u'seri']
[u'child', u'abus', u'huge', u'problem', u'australia']
[u'child', u'abus', u'case', u'rise']
[u'china', u'post', u'econom', u'growth']
[u'closer']
[u'find', u'misconduct', u'land', u'price', u'dispar']
[u'compani', u'export', u'iron', u'malaysia']
[u'concert', u'goer', u'ignor', u'flag', u'request']
[u'coniston', u'school', u'open', u'door', u'school', u'year']
[u'conservationist', u'warn', u'salvag', u'log']
[u'council', u'approv', u'desal', u'plant', u'plan', u'resort']
[u'council', u'call', u'chang', u'taxi', u'driver', u'train']
[u'councillor', u'highlight', u'tugun', u'dust', u'woe']
[u'councillor', u'question', u'panel', u'appoint', u'process']
[u'council', u'defend', u'pay', u'investig', u'hire']
[u'council', u'consid', u'dredg', u'plan']
[u'council', u'urg', u'open', u'water', u'situat']
[u'distribut', u'woolworth', u'drought', u'relief', u'fund']
[u'doctor', u'jail', u'drug', u'rap', u'patient']
[u'drought', u'forc', u'reloc', u'hang', u'rock', u'race']
[u'nino', u'breakdown', u'lead', u'cooler', u'temp']
[u'england', u'rope', u'loss']
[u'english', u'backpack', u'jail', u'arm', u'robberi']
[u'batsmen', u'mediocr', u'aussi', u'bowler']
[u'ergon', u'energi', u'boost', u'staff', u'recruit', u'effort']
[u'esper', u'trial', u'hour', u'polic', u'station']
[u'exclus', u'brethren', u'lib', u'deni', u'elect', u'deal']
[u'expo', u'showcas', u'central', u'resourc', u'industri']
[u'eyr', u'peninsula', u'fund', u'time']
[u'fall', u'copper', u'price', u'impact', u'miner', u'profit']
[u'farm', u'worker', u'electrocut', u'freak', u'accid']
[u'feder', u'govt', u'plan', u'hand', u'googong']
[u'feder', u'teach', u'roddick', u'tenni', u'lesson']
[u'figur', u'highlight', u'high', u'mackay', u'rent']
[u'firefight', u'prepar', u'extrem', u'condit']
[u'fitzroy', u'river', u'croc', u'sight', u'prompt', u'warn', u'sign']
[u'flag', u'thiev', u'leav', u'woman', u'live', u'fear']
[u'flame', u'tree', u'pose', u'challeng', u'firefight']
[u'flanneri', u'mind', u'award', u'oblig']
[u'flanneri', u'name', u'australian', u'year']
[u'water', u'plan', u'chanc', u'state', u'tell']
[u'gold', u'coast', u'hoon', u'local', u'spenc']
[u'golf', u'ball', u'damag', u'widespread']
[u'govt', u'grant', u'region', u'drought', u'relief']
[u'govt', u'nurs', u'home', u'scratch', u'opposit']
[u'govt', u'blame', u'hous', u'crisi', u'report']
[u'govt', u'spend', u'water']
[u'green', u'group', u'wari', u'chicken', u'farm', u'plan']
[u'griffith', u'council', u'consid', u'teen', u'curfew']
[u'guinean', u'presid', u'agre', u'demand']
[u'gunn', u'consid', u'separ', u'lawsuit', u'anti']
[u'hong', u'kong', u'restrict', u'entranc', u'mainland', u'mother']
[u'howard', u'water']
[u'howard', u'announc', u'river', u'takeov']
[u'howard', u'control', u'murray', u'darl']
[u'howard', u'unveil', u'water', u'plan']
[u'hreoc', u'offici', u'head', u'tiwi', u'island', u'leas']
[u'hundr', u'qeii', u'sick', u'suspect', u'stomach']
[u'illeg', u'movi', u'download', u'see', u'deal', u'survey']
[u'independ', u'urg', u'kangaloon', u'aquif', u'subsid', u'plan']
[u'india', u'suspect', u'serial', u'killer', u'beat', u'outsid', u'court']
[u'injur', u'ceccoli', u'doubt', u'jet', u'clash']
[u'investig', u'urg', u'health', u'servic']
[u'iraq', u'withdraw', u'mean', u'rat', u'alli', u'say']
[u'isra', u'presid', u'fend', u'resign', u'call']
[u'judici', u'review', u'palm', u'decis', u'adjourn']
[u'juli', u'open', u'cairn', u'relationship', u'centr']
[u'kimberley', u'agricultur', u'farm']
[u'kimberley', u'water', u'utilis', u'say', u'water', u'expert']
[u'lawyer', u'hick', u'meet', u'guantanamo']
[u'lawyer', u'wont', u'discuss', u'charg', u'hick']
[u'legal', u'guidebook', u'aim', u'help', u'famili']
[u'lewi', u'defam', u'case', u'refer', u'suprem', u'court']
[u'littl', u'mountain', u'contain']
[u'local', u'area', u'consult', u'committe', u'manag', u'avoid']
[u'local', u'govt', u'group', u'seek', u'extra', u'state', u'fund']
[u'charg', u'caravan', u'park', u'child', u'assault']
[u'hold', u'custodi', u'caravan', u'park', u'child']
[u'jail', u'open', u'upskirt']
[u'plead', u'guilti', u'aggrav', u'kidnap']
[u'question', u'torquay', u'child', u'attack']
[u'receiv', u'suspend', u'jail', u'term']
[u'court', u'home', u'invas']
[u'margaret', u'river', u'grape', u'pick', u'start', u'earlier']
[u'matai', u'assault', u'charg', u'dismiss']
[u'matai', u'alleg', u'victim', u'deni', u'provok', u'attack']
[u'mayor', u'back', u'feder', u'water', u'promis']
[u'mechan', u'tree', u'harvest', u'impact']
[u'medic', u'board', u'reject', u'doctor', u'registr']
[u'melbourn', u'stabl', u'snake', u'bite']
[u'melbourn', u'promis', u'extra', u'litr', u'water']
[u'men', u'disappear', u'connect', u'polic']
[u'mental', u'assess', u'order', u'alleg']
[u'monash', u'wineri', u'sale', u'final', u'negoti']
[u'mourner', u'farewel', u'murder', u'digger']
[u'urg', u'help', u'high', u'wagga', u'fuel', u'price']
[u'multiplex', u'face', u'possibl', u'takeov']
[u'murray', u'malle', u'farmer', u'urg', u'advantag']
[u'nadal', u'blame', u'open', u'defeat', u'injuri']
[u'nation', u'grey', u'candid']
[u'nation', u'water', u'strategi']
[u'network', u'hit', u'firefight']
[u'figur', u'rise', u'child', u'abus']
[u'justic', u'complex', u'stay', u'carpent']
[u'safeti', u'packag', u'heathcot', u'section']
[u'deal', u'googong', u'say']
[u'govt', u'credit', u'tristar', u'payout', u'amwu']
[u'north', u'west']
[u'prosecutor', u'admit', u'child', u'porn', u'offenc']
[u'nuttal', u'court', u'corrupt', u'charg']
[u'compani', u'collabor', u'petrol', u'price', u'nrma']
[u'opposit', u'rais', u'concern', u'polic', u'recruit']
[u'palaeontologist', u'tell', u'amaz', u'megafauna']
[u'perth', u'hospit', u'probe', u'leak', u'patient', u'photo']
[u'pilot', u'surviv', u'emerg', u'land']
[u'playgroup', u'seek', u'govt', u'shade', u'cover', u'respons']
[u'push', u'murray', u'darl', u'control']
[u'australia', u'address']
[u'water', u'plan', u'ignit']
[u'clear', u'moti', u'escap', u'alleg']
[u'polic', u'arrest', u'teen', u'theft']
[u'polic', u'hunt', u'thiev', u'string', u'burglari']
[u'polic', u'investig', u'stab', u'shoot']
[u'polic', u'arrest', u'drug', u'campaign']
[u'polic', u'plan', u'incid', u'free', u'tamworth', u'festiv']
[u'polic', u'prepar', u'long', u'weekend', u'crackdown']
[u'polic', u'probe', u'willow', u'park', u'blaze']
[u'polic', u'report', u'reduct', u'hoon', u'driver']
[u'pont', u'hint', u'hogg']
[u'powertel', u'consid', u'possibl', u'takeov']
[u'press', u'club', u'plug']
[u'prison', u'suffer', u'undiagnos', u'brain', u'injuri']
[u'qanta', u'eye', u'stake', u'vietnam', u'budget', u'carrier']
[u'race', u'club', u'wait', u'renov']
[u'rain', u'boost', u'region', u'level']
[u'rain', u'interrupt', u'play', u'gabba']
[u'rain', u'eas', u'water', u'shortag']
[u'rape', u'charg', u'taxi', u'driver', u'drop']
[u'recent', u'rainfal', u'caus', u'cattl', u'price', u'rise']
[u'region', u'fuel', u'price', u'hard', u'reduc', u'stoner']
[u'rental', u'open', u'eas', u'hous', u'crisi']
[u'reput', u'charg', u'mississippi']
[u'resid', u'urg', u'help', u'stop', u'feral', u'dove', u'breed']
[u'rfds', u'score', u'boost']
[u'ring', u'road', u'promis', u'improv', u'safeti']
[u'rock', u'music', u'help', u'regist', u'expat']
[u'roma', u'grazier', u'vote', u'saleyard', u'govt', u'hand']
[u'erupt', u'water', u'control']
[u'govt', u'investig', u'drought']
[u'school', u'groundsman', u'charg', u'child', u'porn', u'pictur']
[u'school', u'work', u'complet', u'term', u'start']
[u'scienc', u'farm', u'govt', u'say']
[u'sharapova', u'defend', u'controversi']
[u'sharapova', u'set', u'clash', u'serena']
[u'sheep', u'yard', u'fall', u'wake', u'rain']
[u'sheikh', u'urg', u'elect', u'specul']
[u'ship', u'find', u'black', u'box', u'crash', u'indonesian']
[u'smoke', u'ban', u'goldfield', u'esper']
[u'snake', u'warn', u'popular', u'lithgow', u'tourist', u'spot']
[u'snoop', u'dogg', u'plead', u'guilti', u'airport', u'weapon']
[u'lankan', u'secur', u'forc', u'accus', u'aid', u'child']
[u'state', u'reluct', u'hand', u'murray', u'darl']
[u'sulawesi', u'terrorist', u'base']
[u'sydney', u'prison', u'offic', u'die', u'jail', u'bash']
[u'tamworth', u'fill', u'countri', u'music', u'festiv']
[u'govt', u'work', u'damag', u'access', u'pass']
[u'task', u'forc', u'har', u'water']
[u'taxi', u'driver', u'bail', u'sexual', u'abus', u'convict']
[u'offic', u'probe', u'illeg', u'tobacco']
[u'technolog', u'sector', u'lead', u'increas', u'share', u'price']
[u'teenag', u'girl', u'die', u'walkerston', u'crash']
[u'thredbo', u'visitor', u'number', u'expect', u'bounc']
[u'thunderstorm', u'caus', u'blackout']
[u'flanneri', u'name', u'australian', u'year']
[u'tour', u'oper', u'ramp', u'push', u'boat', u'upgrad']
[u'train', u'carri', u'paper', u'derail']
[u'tripodi', u'clear', u'corrupt', u'claim']
[u'trucki', u'prevent', u'throw', u'money']
[u'turnbul', u'water']
[u'turnbul', u'prepar', u'water', u'fight', u'high', u'court']
[u'japanes', u'climber', u'mountain']
[u'uniform', u'wine', u'label', u'save', u'million', u'dollar']
[u'union', u'outcri', u'call', u'extra', u'brothel']
[u'union', u'beat', u'staff', u'level', u'review']
[u'confirm', u'somalia', u'strike']
[u'militari', u'demonstr', u'heat']
[u'troop', u'battl', u'iraqi', u'gunmen', u'baghdad']
[u'vail', u'open', u'murray', u'darl', u'candid', u'offic']
[u'firefight', u'inquiri']
[u'govt', u'uneasi', u'feder', u'takeov', u'murray']
[u'forc', u'student', u'sport', u'group']
[u'waterfront', u'develop', u'design', u'winner', u'announc']
[u'water', u'midopen']
[u'water', u'plan', u'world', u'leader', u'irrig']
[u'wenham', u'appear', u'luhrmann', u'australia']
[u'western', u'nativ', u'titl', u'claim', u'delay']
[u'wharv', u'closur', u'hamper', u'prawn', u'trawler']
[u'william', u'power', u'past', u'vaidisova', u'final']
[u'wine', u'industri', u'label', u'agreement', u'money', u'saver']
[u'womadelaid', u'line', u'releas']
[u'woman', u'deni', u'nutti', u'psychologist', u'trial']
[u'work', u'begin', u'salvag', u'burn', u'wood']
[u'wrong', u'person', u'jail', u'review', u'find']
[u'yarloop', u'resid', u'campaign', u'save', u'swim', u'hole']
[u'iraq', u'bomb', u'attack']
[u'dead', u'road', u'crash']
[u'face', u'drug', u'charg']
[u'aborigin', u'protest', u'racist', u'australia']
[u'brink', u'ronaldo', u'deal']
[u'aero', u'club', u'reliev', u'pilot', u'surviv', u'crash']
[u'agforc', u'back', u'feder', u'govt', u'water', u'plan']
[u'ahern', u'get', u'qlds', u'highest', u'aust', u'honour']
[u'area', u'brain', u'link', u'cigarett', u'crave']
[u'astl', u'quit', u'intern', u'scene']
[u'aussi', u'cruis', u'control']
[u'aust', u'award', u'forestri', u'chief']
[u'aust', u'award', u'recognis', u'sack', u'area', u'consult']
[u'aust', u'award', u'honour', u'gold', u'coast', u'lifesav']
[u'aust', u'award', u'prompt', u'climat', u'chang', u'action']
[u'aust', u'celebr', u'kick', u'sydney']
[u'aust', u'honour', u'bali', u'blast', u'doctor']
[u'aust', u'honour', u'break', u'hill', u'policeman']
[u'aust', u'honour', u'local', u'govt', u'stalwart']
[u'aust', u'honour', u'roll', u'includ', u'goulburn', u'murray']
[u'aust', u'honour']
[u'aust', u'honour', u'north', u'queensland']
[u'aust', u'honour', u'southern', u'queensland']
[u'aust', u'honour', u'list', u'recognis', u'hundr']
[u'aust', u'koala', u'thrive', u'thai', u'home']
[u'aust', u'year', u'award', u'rais', u'awar']
[u'australia', u'anachron']
[u'award', u'honour', u'high', u'achiev']
[u'barcaldin', u'council', u'welcom']
[u'bass', u'coast', u'council', u'restrict', u'music', u'festiv', u'number']
[u'beaconsfield', u'volunt', u'garden', u'honour']
[u'beatti', u'promis', u'recycl', u'water', u'secret']
[u'beirut', u'clash', u'cast', u'shadow', u'pledg']
[u'beirut', u'curfew', u'appear', u'effect']
[u'bendigo', u'plead', u'guilti', u'charg']
[u'bendigo', u'resid', u'share', u'aust', u'honour']
[u'carrot', u'comment', u'reconcili']
[u'crowd', u'expect', u'riverland', u'aust']
[u'black', u'huber', u'aust', u'open', u'women', u'doubl', u'titl']
[u'boy', u'boot']
[u'british', u'airway', u'cancel', u'flight', u'amid', u'propos', u'strike']
[u'bulok', u'mayor', u'await', u'dead', u'intersect', u'upgrad']
[u'bundaberg', u'spot', u'confisc']
[u'cairn', u'push', u'replica', u'ship', u'stay']
[u'camplin', u'join', u'priest', u'judg', u'honour', u'list']
[u'cattleman', u'get', u'aust', u'award']
[u'cautious', u'start', u'england', u'adelaid']
[u'central', u'australian', u'receiv', u'aust', u'award']
[u'central', u'home', u'aust', u'award']
[u'central', u'queensland', u'celebr', u'aust']
[u'clean', u'continu', u'derail']
[u'closer']
[u'committe', u'approv', u'isra', u'presid', u'leav']
[u'compani', u'say', u'coal', u'wont', u'hurt', u'river']
[u'concert', u'organis', u'play', u'misbehaviour', u'concern']
[u'confer', u'approv', u'global', u'plan', u'save', u'tuna', u'stock']
[u'worri', u'northern']
[u'cosgrov', u'help', u'assess', u'fiji', u'situat']
[u'council', u'adopt', u'alipou', u'creek', u'floodplain', u'plan']
[u'court', u'overturn', u'midnight', u'curfew', u'loung']
[u'crowd', u'hous', u'regroup', u'plan', u'world', u'tour']
[u'research', u'effect', u'declin', u'rural']
[u'desir', u'help', u'win', u'mackay', u'aust']
[u'reject', u'tougher', u'mine', u'penalti']
[u'draper', u'confirm', u'refus', u'hewitt', u'coach']
[u'driver', u'warn', u'long', u'weekend', u'doubl', u'demerit']
[u'drought', u'farmer', u'wait', u'rat', u'rebat']
[u'dubbo', u'polic', u'investig', u'child', u'boot', u'death']
[u'emerg', u'water', u'suppli', u'grab']
[u'england', u'bat', u'adelaid']
[u'england', u'crash', u'adelaid', u'oval']
[u'england', u'feel', u'strain', u'tour', u'nightmar']
[u'england', u'sink']
[u'health', u'minist', u'surpris', u'honour']
[u'north']
[u'ferret', u'frolic', u'trouser', u'leg', u'australia']
[u'flame', u'capit', u'canberra']
[u'flanneri', u'condemn', u'govt', u'climat', u'chang', u'polici']
[u'flanneri', u'gong']
[u'flanneri', u'urg', u'climat', u'chang', u'action']
[u'fletcher', u'say', u'sorri', u'latest', u'humili']
[u'flood', u'expect', u'boost', u'bird', u'breed']
[u'fluorid', u'like', u'gambier']
[u'ford', u'post', u'record', u'loss']
[u'bureaucrat', u'rann', u'govern']
[u'fossil', u'collector', u'recognis', u'work']
[u'fund', u'flow', u'renmark', u'storm', u'victim']
[u'gippsland', u'resid', u'share', u'aust', u'honour']
[u'gonzalez', u'favourit', u'go', u'open', u'semi']
[u'gonzalez', u'favourit', u'go', u'semi']
[u'gonzalez', u'reach', u'open', u'final']
[u'goulburn', u'murray', u'resid', u'share', u'aust', u'award']
[u'governor', u'general', u'australia', u'address']
[u'govt', u'delay', u'underground', u'water', u'suppli']
[u'govt', u'give', u'fund', u'boost', u'illawarra', u'respit']
[u'govt', u'pledg', u'cash', u'adelaid', u'oval', u'redevelop']
[u'govt', u'reject', u'green', u'group', u'mine', u'crackdown']
[u'govt', u'urg', u'play', u'bigger', u'role', u'climat', u'chang']
[u'govt', u'urg', u'protect', u'industri', u'prawn', u'import']
[u'grandfath', u'drown', u'boat', u'accid']
[u'guard', u'kill', u'pakistani', u'hotel', u'suicid', u'bomb']
[u'harvest', u'burn', u'tree', u'boost', u'visi', u'workload']
[u'health', u'dept', u'warn', u'water', u'bear', u'ill']
[u'hilali', u'controversi', u'comment', u'misunderstand']
[u'honour', u'award', u'outstand', u'australian']
[u'hop', u'award', u'prompt', u'climat', u'chang', u'action']
[u'hop', u'lead', u'bull', u'victori']
[u'howard', u'call', u'public', u'save', u'water']
[u'howard', u'welcom', u'australian']
[u'hundr', u'recognis', u'aust', u'honour', u'list']
[u'husband', u'charg', u'wife', u'murder']
[u'illawarra', u'share', u'aust', u'award']
[u'score', u'naff']
[u'iraq', u'back', u'baghdad', u'secur', u'plan']
[u'irrig', u'want', u'water', u'manag', u'input']
[u'jet', u'score', u'crucial', u'away', u'goal']
[u'journalist', u'danc', u'leader', u'honour', u'list']
[u'joyrid', u'end', u'begin']
[u'kidman', u'injur', u'movi', u'crash']
[u'kidman', u'resum', u'film', u'crash']
[u'leav', u'polit', u'aust', u'iemma', u'say']
[u'charg', u'assault', u'year']
[u'die', u'singl', u'vehicl', u'crash']
[u'die', u'win', u'tristar', u'redund', u'battl']
[u'recov', u'brown', u'snake', u'bite']
[u'wash', u'storm', u'drain']
[u'sever', u'critic', u'condit']
[u'mayor', u'frustrat', u'highway', u'fund', u'reject']
[u'mayor', u'play', u'dareton', u'unrest']
[u'mayor', u'threaten', u'legal', u'action', u'assault', u'claim']
[u'meatwork', u'closur', u'creat', u'uncertainti']
[u'meninde', u'lake', u'includ', u'water', u'plan']
[u'metal', u'detector', u'answer', u'nightclub', u'group', u'say']
[u'north', u'coast', u'enjoy', u'australia', u'celebr']
[u'mini', u'tornado', u'dump', u'hail', u'west', u'brisban']
[u'miss', u'fishermen']
[u'mix', u'commemor', u'aust']
[u'charg', u'port', u'piri', u'murder']
[u'school', u'adopt', u'road', u'safeti', u'scheme']
[u'moruya', u'gear', u'festiv']
[u'mulrunji', u'decis', u'put', u'pressur']
[u'murmur', u'heartland']
[u'murray', u'darl', u'basin', u'head', u'honour', u'aust']
[u'nathalia', u'kill', u'hous']
[u'nation', u'code', u'prevent', u'wharf', u'death']
[u'nation', u'focus', u'dubbo', u'park', u'contest']
[u'newcastl', u'jet', u'face', u'defend', u'champion', u'sydney']
[u'need', u'say', u'debnam']
[u'glori', u'fighter', u'webster', u'team', u'mat']
[u'plan', u'water', u'buyout', u'irrig', u'tell']
[u'north', u'east', u'face', u'extrem', u'danger']
[u'north', u'queensland']
[u'wncl', u'final']
[u'releas', u'whale', u'slaughter', u'footag']
[u'ohern', u'trail', u'goos', u'desert']
[u'outstand', u'australian', u'honour']
[u'pakistan', u'struggl', u'send', u'africa']
[u'palm', u'island', u'rejoic', u'mulrunji', u'decis']
[u'perth', u'swelter', u'degre']
[u'pig', u'shock', u'king', u'sydney', u'derbi']
[u'say', u'qanta', u'sale', u'condit', u'possibl']
[u'citizenship', u'ceremoni', u'speech']
[u'shrug', u'flanneri', u'climat', u'chang', u'critic']
[u'polic', u'furious', u'palm', u'decis']
[u'policeman', u'charg', u'palm', u'island', u'death']
[u'policeman', u'face', u'manslaught', u'charg', u'palm']
[u'polic', u'forc', u'long', u'weekend']
[u'polic', u'releas', u'name', u'boot', u'victim']
[u'polic', u'shoot', u'suspect', u'steal']
[u'pont', u'johnson', u'mastermind', u'australia']
[u'port', u'lincoln', u'deregul', u'shop', u'hour']
[u'plater', u'hurt', u'roll']
[u'priest', u'recognis', u'aust', u'honour']
[u'public', u'approv', u'design', u'pool']
[u'public', u'urg', u'stay', u'safe', u'near', u'water', u'aust']
[u'rain', u'caus', u'earli', u'clover', u'seed', u'germin']
[u'ranger', u'beat', u'lynx', u'dream', u'aliv']
[u'rape', u'victim', u'say', u'jail', u'doctor', u'strike']
[u'redback', u'feet', u'bushrang']
[u'redback', u'rebuild', u'lunch']
[u'region', u'trial', u'tackl', u'indigen', u'alcohol', u'abus']
[u'riverina', u'host', u'aust', u'citizenship', u'ceremoni']
[u'roll', u'stone', u'rake', u'cash', u'rich', u'list']
[u'russia', u'india', u'sign', u'nuclear', u'deal']
[u'russia', u'build', u'nuclear', u'power', u'plant', u'india']
[u'rwanda', u'releas', u'genocid', u'prison']
[u'scientist', u'produc', u'hose', u'water', u'plan']
[u'scientist', u'uncov', u'giant', u'fossil']
[u'search', u'continu', u'miss', u'hitchhik']
[u'secur', u'forc', u'kill', u'protest', u'guinea']
[u'senden', u'rooki', u'steal', u'tiger', u'thunder']
[u'serena', u'hit', u'dang', u'watch']
[u'seven', u'wimmera', u'malle', u'name', u'aust', u'honour', u'list']
[u'smith', u'court', u'simpson', u'honour', u'aust', u'list']
[u'smith', u'grip', u'gibb']
[u'soldier', u'get', u'sentenc', u'iraqi', u'detaine']
[u'south', u'africa', u'bowl', u'test', u'decid', u'pakistan']
[u'spur', u'uefa']
[u'state', u'consult', u'river', u'takeov']
[u'stoner', u'get', u'steer', u'break', u'hill', u'water']
[u'storm', u'bring', u'rain', u'parch', u'gold', u'coast']
[u'subterranean', u'water', u'mar', u'like', u'studi']
[u'sydney', u'lead', u'jet', u'half', u'time']
[u'sydney', u'newcastl', u'play', u'leagu', u'final']
[u'taipan', u'excus', u'beat', u'croc']
[u'tamworth', u'region', u'recognis', u'aust', u'award']
[u'tassi', u'devil', u'rank', u'world', u'worst', u'sound']
[u'teacher', u'strike', u'hous', u'vandal']
[u'teenag', u'step', u'tah']
[u'thousand', u'celebr', u'australia']
[u'thousand', u'gather', u'celebr', u'australia']
[u'western', u'qlder', u'aust', u'honour']
[u'tougher', u'charg', u'expect', u'fatal', u'prison', u'attack']
[u'tour', u'runner', u'dope', u'case', u'drop']
[u'tsunami', u'worker', u'orchestra', u'pioneer', u'honour', u'aust']
[u'govern', u'paedophil', u'releas']
[u'union', u'jack']
[u'uni', u'dumb', u'necess']
[u'stock', u'price', u'plummet']
[u'vegetarian', u'don', u'lettuc', u'bikini', u'protest', u'lamb']
[u'govt', u'accus', u'fail', u'meet', u'age', u'care']
[u'water', u'buyback', u'treat', u'light', u'irrig']
[u'water', u'plan', u'includ', u'coorong', u'green']
[u'water', u'shortag', u'forc', u'farm', u'off']
[u'wildcat', u'hang', u'beat', u'hawk']
[u'woman', u'crush', u'death', u'freak', u'accid']
[u'girl', u'indian', u'school', u'collaps']
[u'kill', u'gaza', u'univers', u'battl']
[u'abbott', u'say', u'rudd', u'use', u'religion', u'polit']
[u'abbott', u'speech', u'show', u'govt', u'fear', u'rudd', u'rise']
[u'abott', u'accus', u'rudd', u'religion', u'polit']
[u'abott', u'say', u'rudd', u'religion', u'polit']
[u'agricultur', u'push', u'north', u'riski', u'warn', u'scientist']
[u'aust', u'sign', u'east', u'timor', u'agreement']
[u'australia', u'revel', u'spark', u'bushfir']
[u'australia', u'sign', u'east', u'timor', u'secur', u'pact']
[u'author', u'apprehend', u'illeg', u'fish', u'boat', u'gulf']
[u'bali', u'bomb', u'film', u'releas', u'indonesia']
[u'bangladesh', u'tighten', u'grip', u'polit', u'activ']
[u'seek', u'altern', u'flight', u'strike']
[u'king', u'hospitalis', u'texa']
[u'beirut', u'curfew', u'lift', u'clash']
[u'blue', u'track', u'total']
[u'blue', u'charg', u'tiger']
[u'boat', u'user', u'urg', u'contact', u'rescu', u'group']
[u'bono', u'urg', u'countri', u'promis']
[u'boucher', u'take', u'south', u'africa', u'lead']
[u'brawl', u'mar', u'adelaid', u'australia', u'celebr']
[u'britain', u'extradit', u'suspect', u'litvinenko']
[u'british', u'report', u'jail', u'royal', u'phone', u'tap']
[u'brumbi', u'draw', u'red']
[u'bryan', u'brother', u'australian', u'open', u'men', u'doubl']
[u'bush', u'authoris', u'action', u'iran', u'interfer']
[u'bush', u'lose', u'control', u'sens', u'iran']
[u'bushrang']
[u'canberra', u'get', u'mountain', u'bike', u'champ']
[u'capello', u'extend', u'oliv', u'branch', u'beckham']
[u'climat', u'chang', u'report', u'wake', u'howard']
[u'closer']
[u'closer']
[u'contest', u'winner', u'throw', u'cash', u'crowd']
[u'coron', u'investig', u'man', u'drown', u'boat']
[u'crew', u'battl', u'bushfir', u'south', u'perth']
[u'crew', u'search', u'drown', u'fishermen', u'murray']
[u'dalbi', u'clean', u'freak', u'storm']
[u'doctor', u'hop', u'death', u'spark', u'euthanasia', u'debat']
[u'econom', u'forum', u'aim', u'reviv', u'doha', u'round']
[u'editor', u'resign', u'royal', u'phone', u'scandal']
[u'england', u'joke', u'bell', u'insist']
[u'fallout', u'continu', u'death', u'custodi', u'review']
[u'fishermen', u'drown', u'murray', u'river']
[u'fleme', u'give', u'vincent', u'vote', u'confid']
[u'subpoena', u'youtub', u'illeg', u'upload']
[u'gaza', u'violenc', u'suspend', u'uniti', u'govt', u'talk']
[u'green', u'join', u'goosen', u'atop', u'qatar', u'leaderboard']
[u'group', u'welcom', u'cancer', u'treatment', u'option', u'cooma']
[u'guard', u'lock', u'prison', u'colleagu', u'death']
[u'hama', u'suspend', u'talk', u'fatah']
[u'hospit', u'suspend', u'overnight', u'emerg', u'servic']
[u'strip', u'umpir', u'right', u'match']
[u'iemma', u'defend', u'govt', u'back', u'major', u'event']
[u'inquiri', u'alleg', u'corrupt', u'rife', u'defenc', u'dept']
[u'iran', u'condemn', u'bush', u'captur', u'kill', u'order']
[u'iran', u'want', u'senior', u'atom', u'inspector']
[u'japan', u'confirm', u'second', u'bird', u'outbreak']
[u'japanes', u'minist', u'play', u'iraq', u'critic']
[u'kernaghan', u'scoop', u'countri', u'award']
[u'kossi', u'put', u'question', u'mark', u'fernando']
[u'land', u'council', u'year', u'leas']
[u'die', u'releas', u'polic', u'custodi']
[u'stab', u'death', u'local', u'disput']
[u'mayor', u'prais', u'goulburn', u'effort', u'curb', u'water']
[u'rescu', u'steal', u'boat', u'drift']
[u'mileston', u'await', u'feder']
[u'mulrunji', u'decis', u'histor', u'indigen', u'justic']
[u'mulrunji', u'decis', u'label', u'histor', u'indigen']
[u'mulrunji', u'decis', u'prompt', u'legal', u'chang']
[u'nato', u'agre', u'increas', u'afghanistan']
[u'doubl', u'format', u'tour']
[u'measur', u'tighten', u'border']
[u'polic', u'catch', u'unlicens', u'driver']
[u'pair', u'charg', u'bash', u'irish', u'tourist']
[u'pair', u'question', u'corner', u'store', u'bash']
[u'palm', u'island', u'decis', u'label', u'histor']
[u'platini', u'vote', u'uefa', u'presid']
[u'polic', u'identifi', u'kill', u'electr', u'accid']
[u'polic', u'investig', u'sydney', u'stab', u'death']
[u'polic', u'monitor', u'adelaid', u'beach', u'brawl']
[u'polic', u'threaten', u'tie', u'indigen']
[u'power', u'line', u'blaze', u'south', u'perth']
[u'prospect', u'king', u'charl', u'lift', u'support', u'republ']
[u'rooki', u'snedek', u'stay', u'control']
[u'secur', u'guard', u'kill', u'pakistani', u'suicid', u'blast']
[u'serena', u'aim', u'open', u'trick']
[u'serena', u'take', u'leaf', u'ivanisev', u'fairytal']
[u'sheikh', u'hilali', u'warn', u'sermon']
[u'shevchenko', u'selfish', u'drogba']
[u'korea', u'strengthen', u'econom', u'tie', u'north']
[u'snake', u'help', u'sooth', u'ach', u'joint']
[u'south', u'africa', u'say', u'troop', u'somalia']
[u'storm', u'rip', u'roof', u'dalbi', u'home']
[u'sydney', u'ferri', u'boss', u'investig', u'nepot']
[u'sydneysid', u'prais', u'water', u'save', u'effort']
[u'taliban', u'warn', u'summer', u'suicid', u'offens']
[u'teen', u'patron', u'lock', u'cinema', u'safeti']
[u'thai', u'king', u'approv', u'martial', u'bangkok']
[u'thai', u'peac', u'tour', u'violenc', u'continu']
[u'tiger', u'bullet', u'breaker', u'croc', u'score', u'win']
[u'tuna', u'fish', u'nation', u'agre', u'action', u'plan']
[u'toughen', u'border', u'control']
[u'condemn', u'holocaust', u'denial']
[u'unseed', u'william', u'take', u'open', u'crown']
[u'unseed', u'william', u'take', u'open', u'titl']
[u'authoris', u'troop', u'kill', u'iranian', u'oper']
[u'confirm', u'petraeus', u'command']
[u'senat', u'confirm', u'iraq', u'command']
[u'speaker', u'iraq', u'amid', u'violenc']
[u'troop', u'authoris', u'kill', u'iranian', u'oper']
[u'crew', u'contain', u'blaze', u'spark', u'campfir']
[u'victoria', u'decid', u'women', u'final']
[u'west', u'indi', u'send', u'india', u'dayer']
[u'wicket', u'tumbl', u'strang', u'newland', u'pitch']
[u'woman', u'beat', u'lion', u'branch', u'save', u'husband']
[u'criticis', u'global', u'plan', u'tuna', u'fisheri']
[u'dead', u'palestinian', u'unrest']
[u'african', u'union', u'leader', u'talk', u'war']
[u'airport', u'termin', u'reopen', u'evacu']
[u'arnold', u'watch', u'unit', u'draw', u'victori']
[u'aussi', u'buckl', u'keep', u'tiger']
[u'australia', u'steadi', u'perth']
[u'australia', u'belt', u'record', u'total', u'waca']
[u'australian', u'product', u'mitsubishi', u'say']
[u'australia', u'hogg', u'heatwav', u'hit']
[u'author', u'investig', u'melbourn', u'school']
[u'autopsi', u'shed', u'light', u'bike', u'track', u'death']
[u'baghdad', u'bomb', u'kill']
[u'batman', u'joker', u'get', u'dutch']
[u'beatti', u'defend', u'recycl', u'water', u'scare']
[u'beatti', u'backflip', u'water', u'referendum']
[u'beatti', u'scrap', u'plan', u'water', u'poll']
[u'beatti', u'scrap', u'recycl', u'water', u'poll']
[u'beatti', u'scrap', u'water', u'poll', u'amid', u'armageddon', u'situat']
[u'beatti', u'water', u'backflip', u'surpris', u'opposit']
[u'bike', u'champ', u'boost', u'canberra', u'economi']
[u'blair', u'see', u'wider', u'climat', u'deal', u'kyoto']
[u'bodi', u'search', u'drown', u'brother']
[u'wonder', u'call', u'davi']
[u'british', u'airway', u'strike', u'negoti', u'adjourn']
[u'china', u'admit', u'move', u'slowli', u'climat']
[u'closer']
[u'closer']
[u'counsel', u'group', u'split', u'gang', u'rape', u'film']
[u'crew', u'battl', u'bushfir', u'perth']
[u'daughter', u'dead', u'critic', u'crash']
[u'dfat', u'clear', u'kenyan', u'crash', u'confus']
[u'djokov', u'tip', u'feder', u'stay', u'year']
[u'dont', u'rule', u'recycl', u'water', u'turnbul', u'urg']
[u'western', u'town', u'welcom', u'flood', u'water']
[u'dutchman', u'charg', u'insurg', u'activ', u'iraq']
[u'ethiopia', u'withdraw', u'somalia', u'troop']
[u'feder', u'claim', u'melbourn', u'crown']
[u'feder', u'close', u'open', u'titl']
[u'feder', u'win', u'open']
[u'crew', u'brace', u'difficult', u'condit']
[u'flemington', u'school', u'vow', u'readi', u'student']
[u'gambian', u'presid', u'hail', u'herbal', u'cure', u'aid']
[u'bottl', u'injur', u'camp', u'site']
[u'govt', u'accus', u'drop', u'standard', u'polic']
[u'govt', u'deni', u'desalin', u'plant', u'decept']
[u'govt', u'welcom', u'trade', u'talk', u'breakthrough']
[u'govt', u'reject', u'call', u'islam', u'group']
[u'govt', u'sydney', u'ferri', u'claim']
[u'green', u'urg', u'action', u'alleg', u'brethren', u'collus']
[u'guinean', u'trade', u'union', u'halt', u'strike']
[u'hammer', u'fall', u'neill', u'debut']
[u'hayden', u'pont', u'platform', u'australia']
[u'health', u'expert', u'meet', u'world', u'leprosi']
[u'hodg', u'hussey', u'pile', u'run']
[u'hop', u'centr', u'attract', u'world', u'best']
[u'hospit', u'servic', u'cutback', u'sign', u'thing', u'come']
[u'iemma', u'want', u'group', u'push', u'islam', u'state']
[u'iran', u'defend', u'bar', u'nuclear', u'inspector']
[u'iran', u'instal', u'nuclear', u'centrifug', u'say']
[u'iran', u'issu', u'conflict', u'signal', u'nuclear', u'work']
[u'iraq', u'bomb', u'attack', u'kill', u'solid']
[u'iraq', u'protest', u'march', u'washington']
[u'iraq', u'protest', u'ralli', u'washington']
[u'islam', u'group', u'move', u'meet', u'council']
[u'israel', u'appoint', u'muslim', u'minist']
[u'jaqu', u'fall', u'short', u'doubl']
[u'jellyfish', u'sting', u'prompt', u'swim', u'warn']
[u'jongewaard', u'win', u'canberra', u'dirt']
[u'kernaghan', u'cole', u'scoop', u'award']
[u'land', u'council', u'deni', u'year', u'leas', u'deal']
[u'late', u'stumbl', u'cost', u'green', u'outright', u'lead', u'qatar']
[u'latin', u'american', u'film', u'scoop', u'sundanc']
[u'lazio', u'udines', u'boost', u'champion', u'leagu', u'dream']
[u'ambul', u'centr', u'staff', u'assess', u'urgenc']
[u'die', u'lift', u'shaft', u'fall']
[u'marco', u'villarr', u'beat', u'real']
[u'mayor', u'deni', u'vandal', u'rife', u'adelaid', u'suburb']
[u'melbourn', u'school', u'treat', u'suspici']
[u'mitsubishi', u'product', u'slump', u'spark', u'concern']
[u'moodi', u'deni', u'eye', u'england']
[u'moti', u'probe', u'welcom', u'solomon']
[u'nestor', u'likhovtseva', u'mix', u'doubl']
[u'diabet', u'treatment', u'help', u'patient', u'lose', u'weight']
[u'applaud', u'progress', u'free', u'trade', u'talk']
[u'beat', u'victoria', u'clinch', u'women', u'championship']
[u'polic', u'commission', u'defend', u'recruit']
[u'hunt', u'waca']
[u'opposit', u'want', u'health', u'check', u'year']
[u'citi', u'drink', u'recycl', u'water', u'beatti']
[u'polic', u'investig', u'cruis', u'rape', u'alleg']
[u'polic', u'investig', u'cruis', u'ship', u'rape', u'alleg']
[u'polic', u'investig', u'fatal', u'lift', u'shaft', u'accid']
[u'polic', u'union', u'condemn', u'beatti', u'watch', u'hous']
[u'polic', u'union', u'urg', u'calm', u'mulrunji']
[u'protest', u'ralli', u'iraq']
[u'qanta', u'worker', u'seek', u'guarante', u'secur']
[u'aborigin', u'communiti', u'need', u'polic']
[u'quak', u'shake', u'sulawesi']
[u'queensland', u'drink', u'recycl', u'water']
[u'rain', u'bring', u'relief', u'struggl', u'communiti']
[u'ranger', u'play', u'off']
[u'rooney', u'rescu', u'unit']
[u'ruddock', u'refus', u'islam', u'group']
[u'award', u'hold', u'oscar', u'victori']
[u'samuel', u'lara', u'guid', u'west', u'indi', u'victori']
[u'reject', u'recycl', u'water']
[u'opposit', u'say', u'tram', u'line', u'upgrad', u'botch']
[u'search', u'continu', u'brother', u'bodi']
[u'south', u'africa', u'divert', u'hospit', u'cash']
[u'spenc', u'reject', u'call', u'polic', u'offic']
[u'lanka', u'sink', u'tamil', u'ship']
[u'studi', u'find', u'half', u'pregnant', u'women', u'drink']
[u'super', u'player', u'face', u'crackdown', u'fake']
[u'suspect', u'suicid', u'bomb', u'kill', u'pakistan']
[u'suspect', u'suicid', u'bomb', u'kill', u'pakistan']
[u'suspect', u'spi', u'death', u'escap', u'prosecut']
[u'sydney', u'airport', u'termin', u'evacu']
[u'sydney', u'confer', u'speaker', u'demand', u'islam', u'state']
[u'tasmania', u'crumbl']
[u'thai', u'polic', u'free', u'year', u'bomb', u'suspect']
[u'bureaucrat', u'daughter', u'kill', u'baghdad']
[u'town', u'isol', u'flood', u'rejoic']
[u'trio', u'charg', u'man', u'stab', u'death']
[u'turnbul', u'urg', u'state', u'water', u'plan']
[u'women', u'kill', u'kenyan', u'carjack']
[u'chief', u'call', u'democraci', u'deal']
[u'union', u'surpris', u'mitsubishi', u'product', u'slump']
[u'uniqu', u'round', u'robin', u'format', u'make', u'debut', u'sunday']
[u'unit', u'victori', u'level', u'half', u'time']
[u'util', u'brace', u'high', u'power', u'demand', u'perth']
[u'vaughan', u'admit', u'england', u'mental', u'damag']
[u'victoria', u'face', u'uphil', u'battl']
[u'warrior', u'control', u'gabba']
[u'water', u'backflip', u'result', u'govt', u'failur', u'flegg']
[u'water', u'midopen']
[u'wildcat', u'king', u'score', u'win']
[u'woman', u'bodi', u'darwin', u'road']
[u'woolmer', u'hit', u'pitch', u'pakistan', u'face', u'defeat']
[u'world', u'trade', u'talk', u'busi']
[u'world', u'trade', u'talk', u'resum']
[u'youtub', u'contributor', u'receiv', u'share', u'money']
[u'manag', u'defend', u'cancer', u'cluster', u'respons']
[u'action', u'group', u'ralli', u'aquif', u'plan']
[u'buy', u'torren', u'island', u'power', u'station']
[u'agenc', u'warn', u'darfur', u'crisi', u'break', u'point']
[u'alic', u'spring', u'council', u'consid', u'warmer', u'welcom']
[u'aussi', u'crave', u'extra', u'competit']
[u'author', u'kaolin', u'burn']
[u'press', u'peacekeep', u'darfur']
[u'barca', u'retain', u'spot']
[u'beatti', u'water', u'decis', u'spark', u'nation', u'debat']
[u'behaviour', u'point', u'rain', u'central']
[u'crowd', u'turn', u'aust', u'festiv']
[u'bird', u'return', u'confirm', u'hungarian']
[u'blaze', u'damag', u'nowra', u'store']
[u'blaze', u'destroy', u'ararat', u'sport', u'clubroom']
[u'bollywood', u'star', u'win', u'british', u'realiti']
[u'boom', u'continu', u'school', u'enrol']
[u'brack', u'want', u'irrig', u'protect', u'water']
[u'breaker', u'hand', u'hawk', u'fourth', u'straight', u'loss']
[u'break', u'yacht', u'escap', u'damag']
[u'buckl', u'fall', u'chase', u'tiger']
[u'bull', u'struggl', u'warrior']
[u'bush', u'threat', u'signific', u'melbourn', u'urban']
[u'bushrang', u'redback']
[u'bypass', u'consid', u'warrnambool']
[u'byron', u'council', u'criticis', u'holiday', u'let', u'decis']
[u'cane', u'farmer', u'look', u'cash', u'ethanol', u'push']
[u'central', u'west', u'rural', u'financi', u'councillor', u'stay']
[u'chines', u'coal', u'blast', u'kill']
[u'cleaner', u'arriv', u'filthi', u'bondi', u'hous']
[u'close', u'school', u'land', u'need', u'hous']
[u'closer']
[u'cobar', u'leav', u'doctor']
[u'coff', u'council', u'investig', u'demand', u'park']
[u'colleg', u'gear', u'extra', u'student']
[u'committ', u'hear', u'start', u'woman', u'accus']
[u'compani', u'say', u'salt', u'wast', u'water', u'wont']
[u'compulsori', u'irrig', u'licenc', u'buyback', u'unlik']
[u'compulsori', u'water', u'back', u'rule', u'joyc']
[u'connex', u'cancel', u'train', u'servic', u'brake']
[u'correct', u'wool', u'price', u'expcect']
[u'council', u'fear', u'impact', u'higher', u'wast', u'levi']
[u'council', u'lament', u'chalet', u'closur']
[u'seek', u'drought', u'relief', u'fund']
[u'dalbi', u'crew', u'continu', u'storm', u'damag', u'clean']
[u'dame', u'kiri', u'sue', u'pull', u'farnham', u'concert']
[u'develop', u'lead', u'flood', u'resid']
[u'diabet', u'drug', u'help', u'weight', u'loss']
[u'disabl', u'group', u'accus', u'govt', u'break']
[u'dont', u'rush', u'school', u'land', u'develop', u'green']
[u'downer', u'push', u'revers', u'school', u'grant']
[u'driver', u'acquit', u'caus', u'harm', u'danger']
[u'ecofish', u'group', u'want', u'healthier', u'richmond', u'river']
[u'elder', u'man', u'death', u'consid', u'suspici']
[u'england', u'injuri', u'encount']
[u'extra', u'polic', u'forc', u'school', u'zone']
[u'feder', u'govt', u'dismiss', u'labor', u'preschool', u'plan']
[u'feder', u'govt', u'quiz', u'wind', u'farm', u'decis']
[u'feder', u'open', u'news']
[u'feder', u'take', u'australian', u'open']
[u'feder', u'take', u'tenni', u'height']
[u'firefight', u'contain', u'south', u'west', u'bushfir']
[u'firefight', u'hop', u'mild', u'weather']
[u'firefight', u'work', u'bolster', u'contain', u'tingha']
[u'fire', u'spread', u'south', u'west']
[u'fish', u'boat', u'releas', u'bandi', u'creek', u'harbour']
[u'shoot', u'dead', u'thailand', u'south']
[u'fluorid', u'see', u'cost', u'saver', u'taxpay']
[u'forrest', u'oppos', u'commonwealth', u'control', u'water']
[u'foster', u'plead', u'guilti', u'vanuatu']
[u'hospitalis', u'suspect', u'irukandji', u'sting']
[u'charg', u'hobart', u'remand', u'centr', u'riot']
[u'fresh', u'start', u'andamooka', u'primari']
[u'fund', u'help', u'hangar', u'plane', u'maker']
[u'fund', u'secur', u'galleri', u'storag', u'facil']
[u'fund', u'boost', u'allow', u'care', u'group', u'extend', u'servic']
[u'fund', u'turkey', u'environment', u'work']
[u'gaudri', u'independ']
[u'glacier', u'melt', u'increas', u'speed']
[u'gold', u'coast', u'beach', u'patrol', u'normal']
[u'googong', u'ownership', u'decis', u'week']
[u'govt', u'announc', u'youth', u'roundtabl', u'member']
[u'govt', u'consid', u'campaign', u'combat', u'infect']
[u'govt', u'criticis', u'townsvill', u'surgeon', u'controversi']
[u'govt', u'defend', u'foreign', u'student', u'english', u'standard']
[u'govt', u'get', u'tougher', u'excess', u'water']
[u'govt', u'indigen', u'land', u'right']
[u'gracemer', u'mow', u'lawn']
[u'great', u'divid', u'crew', u'worst']
[u'griffith', u'move', u'closer', u'establish', u'safeti', u'task']
[u'hama', u'fatah', u'fight', u'continu', u'despit', u'talk', u'offer']
[u'hayden', u'trumpet', u'form']
[u'health', u'research', u'worri', u'anti', u'dump', u'group']
[u'helicopt', u'search', u'nhulunbuy', u'coast']
[u'howard', u'back', u'water', u'plan']
[u'hundr', u'kill', u'iraqi', u'battl']
[u'hunt', u'fast', u'food', u'shop', u'bandit']
[u'hurley', u'case', u'trial']
[u'iemma', u'call', u'feder', u'govt', u'islam', u'group']
[u'iemma', u'say', u'feder', u'govt', u'islam', u'group']
[u'iemma', u'thank', u'tamworth', u'emerg', u'servic', u'worker']
[u'iemma', u'urg', u'feder', u'govt', u'islam', u'group']
[u'stay', u'chelsea', u'say', u'mourinho']
[u'injuri', u'schedul', u'catch', u'pakistan']
[u'injuri', u'forc', u'arthur', u'miss', u'davi']
[u'iran', u'assist', u'iraq', u'reconstruct', u'report']
[u'irish', u'jockey', u'die', u'wellington', u'race', u'fall']
[u'irrig', u'chief', u'air', u'water', u'plan', u'worri']
[u'islam', u'group', u'face', u'legal', u'action', u'liber']
[u'japanes', u'minist', u'warn', u'child', u'bear', u'comment']
[u'jockey', u'rais', u'rid', u'heifer']
[u'john', u'jam', u'hospit', u'agre', u'anaesthetist']
[u'karumba', u'meet', u'focus', u'lead', u'test', u'result']
[u'katherin', u'taxi', u'driver', u'plead', u'guilti', u'possess']
[u'kelli', u'quiz', u'meng', u'decis']
[u'lennon', u'seek', u'urgent', u'talk', u'auspin', u'sawmil']
[u'liber', u'pledg', u'desalin', u'plant']
[u'libya', u'releas', u'nurs', u'infect', u'children']
[u'littl', u'miss', u'sunshin', u'win', u'movi', u'award']
[u'local', u'govt', u'question', u'state', u'water', u'prioriti']
[u'gulf', u'turn', u'cyclon']
[u'macquari', u'accept', u'condit', u'back', u'alinta']
[u'magistr', u'adjourn', u'foster', u'case']
[u'charg', u'high', u'speed', u'chase']
[u'die', u'rid']
[u'plead', u'guilti', u'attack', u'tourist']
[u'recaptur', u'escap', u'polic', u'custodi']
[u'recov', u'stingray', u'attack']
[u'market', u'slide', u'negat', u'lead']
[u'materazzi', u'head', u'butt', u'inter', u'extend']
[u'mathematician', u'turn', u'chao', u'crochet']
[u'busi', u'seek', u'moone', u'beach', u'shop']
[u'moroney', u'defend', u'polic', u'recruit', u'train']
[u'mother', u'overnight', u'crash']
[u'muslim', u'group', u'call', u'islam', u'state']
[u'find', u'busi', u'remain', u'confid']
[u'nation', u'retail', u'shop']
[u'nation', u'preselect', u'candid', u'say', u'dubbo']
[u'market', u'push', u'mari', u'valley']
[u'safeti', u'committe', u'replac', u'neighbourhood', u'watch']
[u'scheme', u'address', u'monaro', u'shortag']
[u'speci', u'discov', u'lake', u'pedder']
[u'decid', u'muslim', u'group', u'ruddock']
[u'demand', u'request', u'mcarthur', u'river']
[u'health', u'deni', u'bulli', u'claim']
[u'critic', u'hick', u'case']
[u'polic', u'scale', u'search', u'miss', u'hitchhik']
[u'nurs', u'home', u'manag', u'sentenc', u'drug', u'traffic']
[u'foreign', u'tertiari', u'student', u'poor']
[u'outlook', u'posit', u'grain', u'forecast']
[u'investig', u'part', u'maker', u'tristar']
[u'palestinian', u'faction', u'hold', u'uniti', u'talk']
[u'parent', u'regular', u'alcohol', u'kid', u'studi']
[u'polic', u'probe', u'attack', u'link', u'sorceri']
[u'polic']
[u'polic', u'bolster', u'presenc', u'school']
[u'polic', u'hunt', u'violent', u'home', u'invad']
[u'policeman', u'lawyer', u'wari', u'hast', u'mulrunji', u'case']
[u'polic', u'long', u'weekend', u'drink', u'driver']
[u'polic', u'patrol', u'school', u'zone', u'speed', u'driver']
[u'polic', u'reject', u'bendigo', u'hoon', u'capit']
[u'polic', u'talk', u'feud', u'famili']
[u'polic', u'unsur', u'unconsci', u'assault']
[u'polic', u'worri', u'young', u'driver', u'behaviour']
[u'poni', u'attack']
[u'pope', u'scholar', u'say', u'latin', u'die']
[u'princ', u'charl', u'make', u'virtual', u'joke', u'green', u'award']
[u'princ', u'charl', u'green', u'hypocrisi']
[u'psychologist', u'trial', u'deni', u'sado']
[u'public', u'berth', u'develop', u'advantag']
[u'public', u'remind', u'ensur', u'bore', u'licens']
[u'govt', u'deni', u'rush', u'prosecut', u'palm']
[u'govt', u'want', u'feder', u'money', u'recycl', u'water']
[u'racv', u'understand', u'delay', u'fuel', u'price', u'drop']
[u'recycl', u'drink', u'water', u'prioriti', u'llewellyn']
[u'recycl', u'water', u'long', u'gold', u'coast', u'clark']
[u'red', u'pair', u'drop', u'hurrican', u'clash']
[u'resid', u'plan', u'nake', u'rain', u'danc']
[u'resourc', u'shortag', u'caus', u'power', u'station', u'delay']
[u'rlpb', u'defend', u'closur', u'west', u'wyalong', u'offic']
[u'ronaldo', u'saha', u'unit']
[u'ruddock', u'play', u'leader', u'bring', u'hick']
[u'rudd', u'unveil', u'earli', u'educ', u'plan']
[u'rudd', u'unveil', u'plan', u'play', u'base', u'earli', u'learn']
[u'rugbi', u'world', u'mourn', u'tubbi', u'allan']
[u'school', u'charg', u'parent', u'core', u'subject', u'liber']
[u'school', u'start', u'airwav', u'outback', u'kid']
[u'schwarten', u'understand', u'teacher', u'anger', u'vandal']
[u'scientist', u'say', u'desalin', u'plant', u'riski']
[u'second', u'brother', u'bodi', u'pull', u'river']
[u'offend', u'supervis', u'jail', u'term']
[u'sinn', u'fein', u'polic', u'vote', u'applaud']
[u'sinn', u'fein', u'vote', u'support', u'polic', u'court']
[u'sinn', u'fein', u'vote', u'support', u'polic', u'court']
[u'sister', u'plead', u'inform', u'suspici', u'death']
[u'social', u'club', u'reject', u'claim', u'ignor', u'local']
[u'southern', u'student', u'return', u'school']
[u'staff', u'chang', u'afoot', u'goldfield', u'esper']
[u'staff', u'support', u'ralli', u'save', u'communiti', u'hospit']
[u'stat', u'wine', u'consumpt', u'price']
[u'strong', u'crowd', u'enjoy', u'wimmera', u'malle', u'aust']
[u'strong', u'show', u'dalai', u'lama', u'bendigo', u'visit']
[u'suicid', u'bomb', u'kill', u'isra', u'resort']
[u'support', u'barmah', u'choke', u'plan']
[u'survey', u'find', u'educ', u'cost', u'affect', u'student']
[u'tait', u'call', u'australian', u'squad']
[u'tamworth', u'recov', u'countri', u'music', u'festiv']
[u'tandou', u'sell', u'monash', u'wineri']
[u'task', u'forc', u'investig', u'biki', u'gang']
[u'task', u'forc', u'investig', u'possibl', u'biki', u'gang']
[u'teen', u'remain', u'hospit', u'roll']
[u'teen', u'face', u'court', u'accus', u'stab']
[u'thargomindah', u'brace', u'floodwat']
[u'tiger', u'crash', u'blue']
[u'time', u'consid', u'benefit', u'dual', u'citizenship']
[u'lawyer', u'silk', u'high', u'court']
[u'tough', u'battl', u'newcastl', u'seat', u'iemma']
[u'truck', u'firm', u'question', u'roadsid', u'facil']
[u'truss', u'play', u'free', u'trade', u'talk']
[u'turkey', u'arrest', u'qaeda', u'suspect']
[u'turnbul', u'urg', u'rann', u'rethink', u'recycl', u'water']
[u'policeman', u'charg', u'fraud']
[u'union', u'seek', u'polic', u'number', u'audit']
[u'firefight', u'adjust', u'local', u'condit']
[u'firefight', u'help', u'battl', u'hermit', u'mountain', u'blaze']
[u'iraqi', u'forc', u'kill', u'hundr', u'insurg']
[u'vandal', u'target', u'tourism', u'spot', u'gnome']
[u'opposit', u'back', u'propos', u'detain', u'offend']
[u'govt', u'promis', u'address', u'teacher', u'shortag']
[u'water', u'cash', u'hing', u'feder', u'control']
[u'water', u'recycl', u'inevit']
[u'western', u'grazier', u'get', u'highest', u'rainfal']
[u'wildlif', u'sanctuari', u'look', u'lift', u'devil']
[u'wiluna', u'move', u'sewag', u'pond', u'nearbi', u'school']
[u'wit', u'seek', u'cigarett', u'shop', u'blaze']
[u'woman', u'dead', u'highway', u'suffer', u'ruptur']
[u'wyndham', u'east', u'kimberley', u'shire', u'approv', u'rezon']
[u'young', u'driver', u'die', u'near', u'carcoar']
[u'zhang', u'depart', u'roar']
[u'hour', u'attempt', u'bank', u'deleg']
[u'polic', u'offic', u'school']
[u'prais', u'sustain', u'school']
[u'aerodrom', u'heritag', u'push', u'worri', u'council']
[u'afghanistan', u'suicid', u'blast', u'wound']
[u'curb', u'drug', u'trade', u'terror', u'afghanistan']
[u'age', u'care', u'industri', u'face', u'skill', u'worker', u'shortag']
[u'airfar', u'jump', u'despit', u'price', u'drop']
[u'alcohol', u'restrict', u'increas', u'alic', u'litter']
[u'closer']
[u'back', u'opposit', u'rural', u'doctor', u'plan']
[u'ambiti', u'bronco', u'dodg']
[u'american', u'wolv', u'remov', u'endang', u'speci']
[u'anim', u'cruelti', u'case', u'increas']
[u'ankl', u'injuri', u'sidelin', u'neill']
[u'august', u'date', u'maiden', u'gulli', u'natur']
[u'plead', u'peacekeep', u'somalia']
[u'australian', u'charg', u'plot', u'kill', u'solomon']
[u'aust', u'odd', u'singl', u'desk']
[u'want', u'airport', u'gambl', u'right']
[u'moon', u'propos', u'chang', u'structur']
[u'beck', u'worth', u'cent']
[u'black', u'cap', u'eas', u'victori']
[u'black', u'cap', u'impos', u'total']
[u'charg', u'high', u'speed', u'chase']
[u'brisban', u'airport', u'face', u'opposit']
[u'british', u'footprint', u'databas', u'help', u'catch', u'crimin']
[u'bushfir', u'season', u'extend']
[u'call', u'recycl', u'water', u'educ', u'campaign']
[u'caloundra', u'mayor', u'suggest', u'water', u'tank', u'option']
[u'canowindra', u'retir', u'villag', u'planner', u'secur', u'land']
[u'ceas', u'palestinian', u'faction', u'take', u'hold']
[u'cheney', u'talk', u'focus', u'region', u'secur']
[u'chief', u'justic', u'critic', u'communiti', u'involv']
[u'chief', u'justic', u'overse', u'green', u'case']
[u'childcar', u'assault', u'suspect', u'return', u'work']
[u'child', u'drive', u'court', u'tell']
[u'civilian', u'honour', u'wwii', u'sacrific']
[u'closer']
[u'commonwealth', u'approv', u'chang', u'local', u'govt']
[u'communiti', u'isol', u'flood', u'turn', u'bush', u'tucker']
[u'compani', u'spend', u'softwood', u'expans']
[u'connex', u'urg', u'rail', u'network', u'problem']
[u'consortium', u'target', u'credit', u'histori', u'provid']
[u'coron', u'say', u'nurs', u'home', u'burn', u'death', u'prevent']
[u'council', u'debat', u'propos', u'town', u'plan', u'chang']
[u'councillor', u'see', u'posit', u'time', u'clark']
[u'councillor', u'fail', u'delay', u'sport', u'fee']
[u'council', u'need', u'help', u'implement', u'smoke', u'game']
[u'council', u'unhappi', u'court', u'leve', u'decis']
[u'council', u'want', u'dump', u'site', u'nation', u'park']
[u'council', u'want', u'master', u'plan', u'stawel', u'airport']
[u'csiro', u'say', u'mine', u'produc', u'high', u'incom', u'water']
[u'cult', u'leader', u'kill', u'iraqi', u'battl']
[u'demand', u'detail', u'govt', u'water', u'overhaul']
[u'dental', u'group', u'criticis', u'beatti', u'fluorid']
[u'dept', u'criticis', u'hamper', u'prison', u'death']
[u'dick', u'smith', u'plan', u'ecotour', u'lodg']
[u'attack', u'spark', u'owner', u'respons']
[u'challeng', u'child', u'porn', u'sentenc']
[u'driver', u'nab', u'speed', u'hume', u'highway']
[u'driver', u'remind', u'student', u'return', u'school']
[u'driver', u'warn', u'return', u'student']
[u'drop', u'gambl', u'push', u'brisban', u'airport', u'tell']
[u'drought', u'cancel', u'campdraft']
[u'drug', u'compani', u'say', u'bird', u'vaccin', u'develop']
[u'elect', u'surgeri', u'list', u'mix', u'result', u'govt']
[u'expert', u'warn', u'boom', u'wont']
[u'explor', u'back', u'prefer', u'site', u'iron', u'port']
[u'chief', u'appoint', u'woolworth', u'board']
[u'famili', u'hop', u'lead', u'geelong', u'murder']
[u'farmer', u'feder', u'doubt', u'japanes']
[u'feder', u'greatest', u'say', u'roch']
[u'fiji', u'coup', u'leader', u'say', u'restor', u'democraci']
[u'flash', u'light', u'confus', u'maguir']
[u'fletcher', u'jone', u'factori', u'sale', u'month']
[u'forens', u'offic', u'test', u'skull', u'melvill']
[u'fraud', u'polic', u'raid', u'perth', u'islam', u'colleg']
[u'fund', u'give', u'boost', u'hotrock', u'project']
[u'polic', u'investig', u'major', u'say']
[u'girl', u'home', u'reunion', u'tell', u'like']
[u'gold', u'miner', u'stop', u'twin', u'hill', u'product']
[u'gold', u'product', u'drive', u'lihir', u'profit']
[u'govt', u'offer', u'suspect', u'murder', u'info']
[u'govt', u'pledg', u'million', u'fight']
[u'govt', u'look', u'cabinet', u'swear']
[u'govt', u'urg', u'combat', u'fish']
[u'advis', u'parent', u'vaccin', u'preschool']
[u'group', u'plead', u'guilti', u'rockhampton', u'assault']
[u'guccion', u'name', u'davi']
[u'hama', u'fatah', u'agre', u'ceas']
[u'hand', u'snatch', u'waratah', u'debut']
[u'heritag', u'concern', u'continu', u'delay', u'dual']
[u'hick', u'lawyer', u'say', u'client', u'chain', u'floor']
[u'hick', u'lawyer', u'slam', u'client', u'treatment']
[u'high', u'school', u'scheme', u'motiv', u'male', u'student']
[u'hinz', u'suppli', u'determin', u'recycl', u'water']
[u'mull', u'legal', u'action', u'tamworth', u'anti', u'refuge']
[u'hubbl', u'space', u'camera', u'stop', u'work']
[u'iemma', u'deni', u'polic', u'graduat', u'time', u'elect']
[u'illawarra', u'water', u'woe']
[u'indigen', u'land', u'money', u'wast']
[u'industri', u'improv', u'indigen', u'land', u'deal']
[u'inves', u'miner', u'explor', u'lag']
[u'iraqi', u'pilgrim', u'kill', u'bomb', u'blast']
[u'isra', u'aircraft', u'strike', u'gaza', u'tunnel']
[u'jone', u'defend', u'red', u'sack']
[u'juri', u'consid', u'verdict', u'clark', u'civil', u'rape', u'case']
[u'kentucki', u'derbi', u'winner', u'barbaro']
[u'kobelk', u'inspect', u'wiluna', u'sewag', u'treatment', u'pond']
[u'kovco', u'reconstruct', u'search', u'answer']
[u'labor', u'candid', u'deni', u'claim', u'undemocrat']
[u'lack', u'stock', u'inform', u'caus', u'concern', u'wool']
[u'landhold', u'angri', u'water', u'infrastructur']
[u'latest', u'polic', u'graduat', u'oath']
[u'latin', u'dead', u'languag']
[u'societi', u'lobbi', u'court', u'complex']
[u'lawyer', u'say', u'hickss', u'condit', u'deterior']
[u'liber', u'push', u'hurley', u'committ', u'hear']
[u'live', u'harmoni']
[u'long', u'commut', u'prompt', u'overcrowd', u'complaint']
[u'gulf', u'carpentaria', u'intensifi']
[u'luca', u'height', u'nuclear', u'reactor', u'close']
[u'macadamia', u'price', u'drop', u'wake', u'larg', u'world', u'suppli']
[u'mackay', u'polic', u'protest', u'hurley', u'charg']
[u'acquit', u'endang', u'polic', u'live']
[u'die', u'singl', u'vehicl', u'crash']
[u'market', u'gain', u'despit', u'resourc', u'loss']
[u'mcleish', u'get', u'scotland']
[u'melbourn', u'woman', u'face', u'jail', u'bali', u'drug', u'charg']
[u'memori', u'statu', u'plan', u'race', u'legend', u'brock']
[u'mine', u'geotherm', u'power', u'indigen']
[u'minist', u'studi', u'report', u'english']
[u'minist', u'warn', u'eas', u'airport', u'plan']
[u'attack', u'kill', u'dozen', u'iraqi', u'pilgrim']
[u'fund', u'seek', u'age', u'region', u'doctor']
[u'hop', u'chalet', u'closur', u'temporari']
[u'play', u'dalgeti', u'teacher', u'loss', u'claim']
[u'want', u'flash', u'light', u'school', u'alert']
[u'nanango', u'council', u'seek', u'mayor', u'water', u'group', u'inclus']
[u'nannup', u'shire', u'oppos', u'plan', u'licens', u'surfac', u'water']
[u'nation', u'australia', u'bank', u'busi', u'survey']
[u'nation', u'accus', u'hypocrisi', u'wheat']
[u'navi', u'patrol', u'boat', u'suffer', u'engin', u'problem']
[u'fin', u'hawk', u'announc']
[u'administr', u'lake', u'tyer', u'aborigin', u'trust']
[u'govt', u'minist', u'swear']
[u'medic', u'student', u'prepar', u'wollongong', u'studi']
[u'nickel', u'explor', u'survey', u'land', u'near', u'break', u'hill']
[u'korea', u'readi', u'resum', u'nuclear', u'talk', u'china']
[u'nomin', u'close', u'islam', u'council', u'elect']
[u'retain', u'golden', u'point']
[u'nuclear', u'group', u'dismiss', u'concern', u'dump', u'wast']
[u'nuclear', u'group', u'say', u'reactor', u'readi', u'soon']
[u'nuclear', u'reactor', u'life', u'come']
[u'bat', u'waca']
[u'ohern', u'climb']
[u'opposit', u'demand', u'better', u'safeti', u'woorabinda']
[u'option', u'open', u'auspin', u'forestri', u'group']
[u'optus', u'build', u'extens', u'network']
[u'pari', u'tri', u'shut', u'nude', u'photo', u'websit']
[u'parkinson', u'diseas', u'like', u'doubl', u'year']
[u'pipe', u'water', u'south', u'east']
[u'consid', u'fund', u'wast', u'water', u'pipe']
[u'polic', u'appeal', u'fatal', u'crash', u'wit']
[u'polic', u'appeal', u'info', u'alleg', u'karama', u'assault']
[u'polic', u'appeal', u'wit', u'bruce', u'highway', u'crash']
[u'polic', u'threat', u'protect']
[u'polic', u'plan', u'march', u'parliament', u'mulrunji', u'case']
[u'polic', u'aust', u'firework', u'caus', u'fire']
[u'polic', u'involv', u'fatal', u'crash', u'reach']
[u'polic', u'driver', u'ignor', u'road', u'safeti']
[u'polic', u'urg', u'manslaught', u'misdemeanour', u'brandi']
[u'politician', u'talk', u'save', u'sawmil', u'job']
[u'possibl', u'nuclear', u'power', u'sit', u'tag']
[u'pratt', u'win', u'pacif']
[u'preschool', u'plan', u'merit']
[u'pressur', u'maintain', u'account', u'moti']
[u'psychologist', u'charg', u'abus', u'deni', u'breach']
[u'coalit', u'settl', u'leadership', u'confus']
[u'doctor', u'urg', u'mistak']
[u'question', u'rais', u'water', u'data']
[u'rain', u'bring', u'good', u'find', u'gold', u'fossick']
[u'rare', u'violin', u'avail', u'aust', u'chamber']
[u'rate', u'rise', u'retail', u'wholesal', u'sector']
[u'red', u'look', u'ambush']
[u'resid', u'voic', u'generat', u'frustrat']
[u'reunion', u'reliv', u'girl', u'home', u'trauma']
[u'risk', u'murray', u'river', u'blue', u'green', u'alga', u'outbreak']
[u'rocket', u'kill', u'pakistan', u'shiit', u'process']
[u'rudd', u'defend', u'earli', u'childhood', u'educ', u'plan']
[u'ruddock', u'ask', u'urgent', u'report', u'hick']
[u'rush', u'lawyer', u'challeng', u'death', u'sentenc']
[u'saff', u'govt', u'meet', u'lead', u'farm', u'packag']
[u'govt', u'help', u'home', u'buyer', u'loan']
[u'water', u'boss', u'conced', u'recycl', u'water']
[u'sawmil', u'uncertain', u'timber', u'access']
[u'scienc', u'minist', u'turn', u'nuclear', u'reactor']
[u'scientist', u'regist', u'bird', u'vaccin']
[u'scrap', u'singl', u'desk', u'wheat', u'export', u'say']
[u'search', u'continu', u'miss', u'german', u'surfer']
[u'search', u'miss', u'ballarat', u'angler']
[u'senat', u'want', u'conscienc', u'vote', u'euthanasia']
[u'separ', u'water', u'treatment', u'plant', u'toowoomba']
[u'serena', u'leap', u'place', u'rank']
[u'serial', u'rapist', u'get', u'year', u'despic', u'crime']
[u'sunbeam', u'boost', u'sultana', u'grape', u'price']
[u'symbion', u'reject', u'takeov']
[u'task', u'forc', u'work', u'reduc', u'teen', u'violenc']
[u'concess', u'urg', u'pharmaceut', u'compani']
[u'teacher', u'plan', u'stay', u'profess', u'say']
[u'teacher', u'union', u'flag', u'mine', u'approach', u'staff']
[u'terri', u'hick', u'call', u'independ', u'review', u'son']
[u'kill', u'isra', u'resort', u'attack']
[u'timber', u'industri', u'fear', u'long', u'term', u'bushfir', u'damag']
[u'tommi', u'turtl', u'worker', u'plead', u'guilti', u'assault']
[u'trade', u'domin', u'australian', u'discuss']
[u'trade', u'open']
[u'turnbul', u'urg', u'stand', u'firm', u'water', u'licenc']
[u'union', u'highlight', u'timet', u'woe']
[u'union', u'say', u'deal', u'threaten', u'job', u'mitsubishi']
[u'unit', u'read', u'draw', u'smile', u'chelsea']
[u'unit', u'victori', u'gear', u'crucial', u'clash']
[u'storm', u'bring', u'demand', u'riverland', u'orang']
[u'govt', u'criticis', u'melbourn', u'train', u'problem']
[u'farm', u'group', u'worker', u'leav', u'mine']
[u'govt', u'assess', u'esper', u'disast', u'relief', u'cost']
[u'parliament', u'revisit', u'daylight', u'save', u'debat']
[u'warrior', u'surg', u'second', u'embarrass', u'bull']
[u'water', u'plan', u'prompt', u'halt', u'murray']
[u'water', u'task', u'forc', u'play', u'talk', u'kimberley', u'mass']
[u'water', u'vigilant', u'accus', u'vandal']
[u'webb', u'back', u'cash', u'look']
[u'wellington', u'council', u'get', u'water', u'wise']
[u'western', u'plain']
[u'wimmera', u'group', u'seek', u'rail', u'freight']
[u'wineri', u'owner', u'renew', u'current', u'grape', u'grower']
[u'young', u'boot', u'victim', u'buri', u'wilcannia']
[u'youth', u'vandalis', u'broom', u'construct', u'site']
[u'zinifex', u'instal', u'karumba', u'emiss', u'monitor']
[u'abbott', u'urg', u'plan', u'indigen', u'popul']
[u'accc', u'allow', u'joint', u'ventur', u'pipe', u'product']
[u'alic', u'mayor', u'back', u'local', u'govt', u'overhaul']
[u'say', u'state', u'hospit', u'appal']
[u'anger', u'air', u'upsid', u'aborigin', u'flag']
[u'art', u'appoint', u'boost', u'south', u'east', u'theatr']
[u'augi', u'march', u'grate', u'music', u'prize']
[u'aussi', u'teacher', u'face', u'drug', u'charg', u'japan']
[u'aust', u'face', u'jail', u'indonesian', u'charg']
[u'australia', u'ahead', u'beij', u'mottram']
[u'summit', u'fail', u'secur', u'forc', u'somalia']
[u'beatti', u'say', u'traveston', u'ahead']
[u'laden', u'brother', u'kill']
[u'bionic', u'creator', u'work', u'help', u'parapleg']
[u'biosecur', u'expert', u'urg', u'pandem', u'readi']
[u'blaze', u'destroy', u'school', u'shed']
[u'blue', u'deni', u'merger', u'talk']
[u'bodi', u'recov', u'goulburn', u'river']
[u'border', u'lash', u'pieto', u'quick', u'exit']
[u'arrow', u'murder', u'jail', u'year']
[u'brack', u'pledg', u'extra', u'bushfir', u'affect']
[u'brandi', u'face', u'multi', u'million', u'dollar', u'lawsuit']
[u'break', u'eastern', u'drought', u'expect', u'month']
[u'bridgetown', u'greenbush', u'shire', u'hold', u'poll']
[u'british', u'polic', u'arrest', u'anti', u'terror', u'raid']
[u'break', u'hill', u'help', u'boost', u'perilya', u'cash', u'flow']
[u'brumbi', u'hooker', u'assault', u'polic']
[u'canberran', u'satisfi', u'polic', u'servic']
[u'canberra', u'student', u'literaci', u'numeraci', u'highest', u'aust']
[u'cane', u'toad', u'poison', u'tasmanian', u'devil']
[u'mishap', u'leav', u'crush', u'tree']
[u'chemist', u'avoid', u'pseudoephedrin', u'robberi']
[u'closer']
[u'review', u'watch', u'hous', u'remot', u'communiti']
[u'coastal', u'region', u'sit', u'tout', u'nuclear', u'plant']
[u'communiti', u'urg', u'unit', u'tackl', u'vandal']
[u'council', u'hop', u'save', u'drought', u'tree']
[u'councillor', u'call', u'recycl', u'water', u'debat']
[u'council', u'struggl', u'secur', u'meet', u'govt']
[u'council', u'suggest', u'hous', u'crisi']
[u'court', u'jail', u'doomadge', u'rapist']
[u'court', u'restor', u'sharehold', u'faith', u'market']
[u'credit', u'card', u'borrow', u'rise']
[u'seri', u'slack', u'say', u'jone']
[u'cyclon', u'report', u'prematur', u'weather', u'bureau']
[u'damag', u'yacht', u'begin', u'slow', u'journey', u'home']
[u'dame', u'kiri', u'farnham', u'concert', u'sell']
[u'level', u'reignit', u'water', u'alloc', u'debat']
[u'debat', u'rage', u'port', u'dougla', u'waterfront']
[u'dementia', u'australia']
[u'stop', u'fake', u'scam']
[u'downer', u'welcom', u'resumpt', u'north', u'korea', u'talk']
[u'dredg', u'start', u'lake', u'illawarra', u'entranc']
[u'drought', u'farmer', u'load', u'stock', u'sale']
[u'east', u'coast', u'wheat', u'price', u'caus', u'drop', u'export']
[u'educ', u'minist', u'dismiss', u'labor', u'degre', u'plan']
[u'nino', u'continu', u'weaken']
[u'emerald', u'host', u'wheat', u'export', u'meet']
[u'judg', u'assess', u'gunn', u'propos']
[u'farmer', u'prepar', u'fund']
[u'farmer', u'split', u'effect', u'hail', u'cannon']
[u'femal', u'peacekeep', u'arriv', u'liberia']
[u'fervent', u'nation', u'unaustralian']
[u'figur', u'increas', u'borrow', u'despit', u'rate']
[u'frail', u'castro', u'appear', u'cuban']
[u'gabba', u'face', u'intern', u'sponsor']
[u'gabba', u'test', u'beer', u'disput', u'resolv']
[u'giteau', u'name', u'centr', u'forc']
[u'govt', u'ask', u'boost', u'fund', u'school', u'contractor']
[u'govt', u'investig', u'compani', u'nurs', u'visa']
[u'govt', u'keen', u'phase', u'diazanon']
[u'govt', u'request', u'independ', u'review', u'hickss', u'health']
[u'govt', u'tell', u'absurd', u'energi', u'report']
[u'govt', u'urg', u'increas', u'treatment', u'user']
[u'govt', u'urg', u'upgrad', u'matern', u'servic']
[u'grape', u'vine', u'plantat', u'increas', u'despit', u'glut']
[u'greenhous', u'cut', u'cost', u'report']
[u'green', u'criticis', u'self', u'serv', u'climat', u'chang', u'report']
[u'grower', u'discuss', u'singl', u'desk']
[u'grower', u'unhappi', u'fruit', u'price']
[u'hayden', u'unfaz', u'pack', u'dog', u'claim']
[u'hick', u'ask', u'govt', u'help']
[u'hick', u'plead', u'aust', u'govt', u'help']
[u'hick', u'solitari', u'confin', u'consular']
[u'hick', u'urg', u'aust', u'govt', u'help']
[u'hick', u'write', u'govt', u'help']
[u'hodg', u'lead', u'bushrang', u'easi']
[u'hooper', u'walk', u'lion']
[u'hold', u'pistol', u'pete']
[u'iemma', u'demand', u'know', u'possibl', u'detent', u'centr']
[u'illeg', u'escort', u'agenc', u'target', u'backpack']
[u'increas', u'elect', u'surgeri', u'gold', u'coast', u'hospit']
[u'independ', u'want', u'greater', u'voic', u'wollongong']
[u'ing', u'move', u'slater', u'sign']
[u'iraqi', u'give', u'asylum', u'year', u'wait']
[u'irrig', u'council', u'urg', u'water', u'referendum']
[u'islam', u'colleg', u'director', u'relax', u'fraud']
[u'jervi', u'identifi', u'potenti', u'nuclear', u'site']
[u'john', u'herron', u'address', u'nation', u'press', u'club']
[u'juror', u'face', u'charg', u'phone', u'comment']
[u'juri', u'find', u'clark', u'liabl', u'rap']
[u'kakadu', u'campaign', u'aim', u'boost', u'tourism']
[u'kalgoorli', u'host', u'chines', u'men', u'hockey', u'squad']
[u'kalgoorli', u'tell', u'feder', u'govt', u'youth', u'issu']
[u'kimberley', u'land', u'agreement', u'best']
[u'labor', u'democrat', u'independ', u'hick']
[u'labor', u'oppos', u'plan', u'sydney', u'detent', u'centr']
[u'labor', u'plan', u'halv', u'hec', u'fee', u'math', u'scienc']
[u'landi', u'write', u'season']
[u'landown', u'unhappi', u'valuat', u'method']
[u'lara', u'feel', u'windi', u'peak', u'world']
[u'legendari', u'novelist', u'sidney', u'sheldon', u'die']
[u'liber', u'unhappi', u'frontbench', u'reshuffl', u'delay']
[u'mackay', u'council', u'play', u'nuclear', u'site', u'list']
[u'magistr', u'reduc', u'adelaid', u'madam', u'traffic', u'fin']
[u'magpi', u'medhurst', u'fin', u'traffic', u'offenc']
[u'major', u'parti', u'address', u'climat', u'chang', u'caus']
[u'arrest', u'chase', u'deport']
[u'sue', u'hardi', u'firm', u'asbesto', u'diseas']
[u'face', u'court', u'ballina', u'shoot']
[u'market', u'retreat', u'morn', u'high']
[u'mayor', u'reject', u'claim', u'financi', u'woe']
[u'mayor', u'sceptic', u'council', u'amalgam']
[u'posit', u'paper', u'australian']
[u'mine', u'giant', u'ask', u'offset', u'greehnous', u'emiss']
[u'minist', u'reject', u'australia', u'carbon', u'trade']
[u'miss', u'fisherman', u'dead']
[u'fund', u'countri', u'sport', u'team']
[u'govt', u'fund', u'break', u'hill']
[u'motorcyclist', u'die', u'port', u'hedland', u'crash']
[u'accus', u'children', u'mobil', u'billboard']
[u'anger', u'elect', u'oppon', u'advisori', u'role']
[u'reject', u'suggest', u'south', u'coast', u'nuclear', u'sit']
[u'say', u'brumbi', u'wouldnt', u'choos', u'bendigo', u'enter']
[u'urg', u'compulsori', u'acquisit', u'water']
[u'muslim', u'pilgrim', u'kill', u'iraq']
[u'muslim', u'seek', u'prayer', u'place']
[u'boss', u'warn', u'equiti', u'deal', u'overheat', u'market']
[u'natur', u'resourc', u'manag', u'board', u'consid']
[u'abattoir', u'train', u'requir', u'difficult']
[u'home', u'purchas', u'rise', u'industri']
[u'home', u'sale', u'jump']
[u'newli', u'graduat', u'polic', u'assign', u'command']
[u'method', u'need', u'public', u'hous', u'say', u'govt']
[u'newton', u'assault', u'charg', u'hear', u'june']
[u'wast', u'water', u'plant', u'open', u'wiluna']
[u'nixon', u'aim', u'flintoff', u'fletcher']
[u'sportfest', u'year', u'alic']
[u'wors', u'beer']
[u'irrig', u'concern', u'alloc']
[u'pastoralist', u'oppos', u'shire', u'boundari']
[u'offic', u'charg', u'watch', u'hous', u'assault']
[u'orkopoulo', u'face', u'drug', u'child', u'porn', u'charg']
[u'parent', u'urg', u'seek', u'help', u'school', u'cost']
[u'push', u'plan', u'murray', u'darl', u'nation']
[u'water', u'plan', u'consist', u'pratt', u'report']
[u'urg', u'solomon', u'welcom', u'moti', u'probe']
[u'polic', u'probe', u'indigen', u'theft']
[u'polic', u'rank', u'bolster', u'break', u'hill']
[u'port', u'expans', u'spark', u'work', u'construct', u'worker']
[u'portland', u'name', u'potenti', u'nuclear', u'site']
[u'power', u'outag', u'day']
[u'pretend', u'singer', u'launch', u'anti', u'mules', u'campaign']
[u'psychologist', u'deni', u'beat', u'bulim', u'patient']
[u'pyne', u'say', u'drug', u'polici', u'work', u'despit', u'warn']
[u'govt', u'want', u'infom', u'feder', u'water']
[u'grower', u'singl', u'desk']
[u'parti', u'boss', u'welcom', u'flegg', u'seeney', u'deal']
[u'watch', u'hous', u'review', u'wast', u'time']
[u'rama', u'bomber', u'train']
[u'rann', u'fight', u'feder', u'control', u'murray', u'darl']
[u'rann', u'vow', u'maintain', u'murray', u'darl', u'fight']
[u'rann', u'want', u'independ', u'murray', u'darl', u'basin']
[u'ratepay', u'urg', u'speak', u'councillor', u'number']
[u'recycl', u'water', u'step', u'closer', u'canberran']
[u'redback', u'score']
[u'report', u'blame', u'backburn', u'loss', u'lodg']
[u'report', u'cost', u'cut', u'carbon', u'emiss']
[u'report', u'reveal', u'rise', u'recidiv', u'drop', u'crime']
[u'reward', u'offer', u'help', u'solv', u'year', u'murder']
[u'riewoldt', u'doubt', u'season', u'comp']
[u'rudd', u'plan', u'halv', u'fee', u'math', u'scienc']
[u'rural', u'chariti', u'get', u'appreci']
[u'safeti', u'bureau', u'want', u'better', u'train']
[u'sawmil', u'decis', u'expect', u'day']
[u'scientist', u'urg', u'risk', u'survey', u'help', u'save', u'reef']
[u'search', u'fail', u'miss', u'german', u'surfer']
[u'semitrail', u'crash', u'spark', u'explos', u'fear']
[u'bishop', u'put', u'retir', u'hold']
[u'sharehold', u'group', u'welcom', u'high', u'court']
[u'solomon', u'move', u'rearm', u'polic', u'amid', u'opposit']
[u'son', u'gwalia', u'judgment']
[u'soni', u'compo']
[u'south', u'africa', u'reveal', u'world', u'hand']
[u'start', u'date', u'coolac', u'bypass', u'remain', u'unknown']
[u'stewart', u'share', u'market']
[u'stott', u'despoja', u'predict', u'elect', u'backlash', u'hick']
[u'strong', u'polic', u'presenc', u'school', u'zone']
[u'suspect', u'rebel', u'kill', u'polic', u'offic']
[u'sustain', u'water', u'suppli', u'studi', u'possibl']
[u'sydney', u'give', u'doomsday', u'climat', u'chang', u'warn']
[u'climat', u'report', u'criticis']
[u'coupl', u'fear', u'health', u'spray']
[u'teen', u'arrest', u'hotel', u'break']
[u'thai', u'govt', u'wont', u'forc', u'refuge', u'lao']
[u'lose']
[u'thiev', u'target', u'breeder', u'cat', u'dog']
[u'townsvill', u'mayor', u'reject', u'nuclear', u'push']
[u'treatment', u'user', u'critic', u'say', u'drug', u'council']
[u'trust', u'flag', u'emiss', u'target']
[u'tumut', u'manag', u'get', u'thumb']
[u'turnbul', u'reject', u'rann', u'murray', u'commiss', u'propos']
[u'union', u'urg', u'polic', u'riverina']
[u'union', u'urg', u'watch', u'hous', u'upgrad', u'amidst', u'mulrunji']
[u'stop', u'sell', u'part', u'iran']
[u'vaughan', u'miss', u'rest', u'seri']
[u'beat', u'chang', u'manag', u'polici']
[u'govt', u'recruit', u'wodonga', u'councillor']
[u'visitor', u'warn', u'throw', u'thing', u'high', u'rise']
[u'voss', u'black', u'question', u'hotel', u'scuffl']
[u'wagerup', u'properti', u'owner', u'unhappi', u'alcoa', u'offer']
[u'govt', u'urg', u'tax']
[u'watchdog', u'say', u'train', u'safeti', u'guarante']
[u'water', u'develop', u'moratorium', u'surpris', u'wallac']
[u'water', u'suppli', u'woe', u'worsen', u'south', u'east']
[u'water', u'usag', u'find', u'help', u'mine', u'water']
[u'weather', u'bureau', u'issu', u'cyclon', u'watch']
[u'western', u'welcom', u'widespread', u'rain']
[u'woman', u'die', u'brookton', u'highway', u'crash']
[u'woolworth', u'record', u'sale', u'figur', u'billion']
[u'yacht', u'remain', u'strand', u'tasman']
[u'youngster', u'mix', u'boy']
[u'arrest', u'timor', u'weapon', u'raid']
[u'injur', u'minibus', u'roll']
[u'aborigin', u'oper', u'discuss', u'clark', u'verdict']
[u'chief', u'polic', u'offic', u'defend', u'public']
[u'actu', u'urg', u'hardi', u'sharehold', u'accept', u'compo', u'deal']
[u'farewel', u'northern', u'command']
[u'administr', u'take', u'control', u'break', u'hill', u'council']
[u'aliadier', u'send', u'arsenal', u'leagu', u'final']
[u'alic', u'warn', u'stay', u'school', u'face', u'custodi']
[u'allianc', u'urg', u'pilbara', u'junior', u'iron']
[u'angler', u'urg', u'limit', u'review']
[u'asbesto', u'campaign', u'hail', u'hardi', u'deal', u'progress']
[u'auspin', u'say', u'timber', u'offer', u'short', u'term']
[u'aust', u'institut', u'nuclear', u'site', u'name']
[u'australian', u'teenag', u'sign', u'read']
[u'australia', u'swagger', u'deserv', u'say', u'joyc']
[u'say', u'tote', u'tasmania', u'shirk', u'respons']
[u'bali', u'trio', u'deal', u'court', u'blow']
[u'bank', u'miner', u'reviv', u'market']
[u'baptist', u'stand', u'jesus', u'love', u'osama', u'sign']
[u'barra', u'fisher', u'begin', u'season']
[u'bathurst', u'crash', u'team', u'forc', u'fold']
[u'beatti', u'promis', u'probe', u'tugun', u'dust', u'complaint']
[u'bushfir', u'spark', u'push', u'better', u'communic']
[u'bligh', u'warn', u'council', u'parochi', u'stanc']
[u'blundston', u'strike', u'redund', u'deal', u'worker']
[u'bollywood', u'star', u'sound', u'commonwealth', u'bash']
[u'boonah', u'cano', u'polo', u'player', u'repres', u'australia']
[u'brack', u'back', u'rail', u'network', u'despit', u'brake', u'failur']
[u'branson', u'launch', u'stem', u'cell', u'storag', u'bank']
[u'busi', u'union', u'polit', u'donat']
[u'bust', u'toad']
[u'call', u'govt', u'agre', u'water', u'plan']
[u'capit', u'readi', u'flame', u'challeng']
[u'cartoon', u'channel', u'spark', u'boston', u'secur', u'scare']
[u'chariti', u'expand', u'south', u'west', u'servic']
[u'clare', u'valley', u'irrig', u'face', u'water', u'cut']
[u'clark', u'slap', u'hand']
[u'back', u'nurs', u'demand']
[u'coff', u'harbour', u'council', u'consid', u'tavern', u'motel', u'plan']
[u'cole', u'urg', u'appl']
[u'communiti', u'order', u'suggest', u'young', u'vandal']
[u'concern', u'truck', u'damag', u'oval']
[u'concern', u'rais', u'payment', u'rpdc', u'head']
[u'connex', u'defend', u'passeng', u'safeti', u'latest']
[u'construct', u'giant', u'bid', u'stake', u'devin']
[u'consum', u'confid', u'comparison', u'suggest', u'gloomi']
[u'coolgardi', u'shire', u'look', u'elector']
[u'council', u'consid', u'wade', u'park', u'water', u'exempt']
[u'council', u'meet', u'renew', u'energi', u'target']
[u'court', u'hear', u'dame', u'kiri', u'underwear', u'concern']
[u'court', u'order', u'woolgrow', u'reveal', u'financi']
[u'defenc', u'lawyer', u'unabl', u'obtain', u'polic', u'cell']
[u'demand', u'north', u'west', u'hospit', u'audit']
[u'demount', u'plan', u'expect', u'face', u'opposit']
[u'detent', u'centr', u'help', u'eas', u'hous', u'crisi']
[u'dragon', u'breaker']
[u'drought', u'take', u'toll', u'footbal', u'field']
[u'east', u'timor', u'travel', u'warn', u'rise']
[u'ellison', u'deni', u'fleet', u'withdraw', u'compromis', u'border']
[u'profit']
[u'eurobodalla', u'council', u'say', u'recycl', u'water', u'unlik']
[u'expert', u'condemn', u'doctor', u'denial']
[u'fall', u'miss', u'admit', u'cocain', u'alcohol']
[u'fan', u'warn', u'world', u'crime', u'risk']
[u'farmer', u'concern', u'disast', u'relief', u'fund']
[u'faulti', u'radio', u'hinder', u'polic', u'union']
[u'govt', u'urg', u'ipswich', u'motorway']
[u'fed', u'decis', u'prompt', u'wall', u'ralli']
[u'fire', u'edg', u'harrington', u'overnight']
[u'bird', u'victim', u'die', u'nigeria']
[u'fisherman', u'tell', u'murray', u'mouth', u'need', u'stay']
[u'fli', u'fox', u'invad', u'bega', u'park']
[u'forest', u'search', u'uncov', u'lead', u'miss']
[u'isra', u'minist', u'guilti', u'sexual']
[u'fuel', u'problem', u'forc', u'recal', u'patrol', u'boat']
[u'council', u'approv', u'pedestrian', u'bridg', u'plan']
[u'germani', u'issu', u'warrant', u'arrest', u'agent']
[u'gilgandra', u'council', u'seek', u'time', u'heritag']
[u'glori', u'sidelin', u'harnwel']
[u'govt', u'deni', u'detent', u'centr', u'plan', u'sydney']
[u'govt', u'label', u'opposit', u'veget', u'law', u'pledg']
[u'govt', u'like', u'ahead', u'aquif', u'plan']
[u'govt', u'reject', u'scrap', u'park']
[u'govt', u'polic', u'roster', u'decis']
[u'govt', u'unveil', u'helicopt', u'patrol', u'northern']
[u'govt', u'urg', u'help', u'water', u'cart', u'fee']
[u'green', u'group', u'put', u'case', u'aquif', u'plan']
[u'groot', u'eylandt', u'cyclon', u'prepar', u'begin']
[u'group', u'delay', u'applic']
[u'habib', u'stand', u'candid', u'elect']
[u'hardi', u'boss', u'confid', u'compo', u'deal']
[u'hardi', u'sharehold', u'consid', u'compo', u'deal']
[u'hayden', u'prais', u'bloodi', u'remark', u'flintoff']
[u'heavi', u'rain', u'drench', u'north']
[u'home', u'evacu', u'amid', u'fear', u'truck', u'explos']
[u'hope', u'racecours', u'work', u'lure', u'trainer']
[u'howard', u'rule', u'independ', u'murray', u'darl', u'panel']
[u'howard', u'announc', u'freshwat', u'fund']
[u'howard', u'compromis', u'murray', u'darl', u'rann', u'say']
[u'ingham', u'isol', u'flood']
[u'inmat', u'escap', u'risdon', u'prison']
[u'intern', u'airlin', u'brace', u'class', u'action']
[u'iraq', u'ambassador', u'blame', u'fund', u'wastag']
[u'iron', u'firm', u'govt', u'plan', u'west']
[u'japan', u'confirm', u'fourth', u'bird', u'outbreak', u'year']
[u'john', u'rule', u'origin', u'return']
[u'juri', u'mull', u'verdict', u'psychologist', u'abus', u'case']
[u'kemp', u'clear', u'royal', u'sydney']
[u'kempsey', u'relax', u'water', u'restrict']
[u'knight', u'spoil', u'john', u'origin', u'dream']
[u'labor', u'launch', u'illawarra', u'strategi']
[u'labor', u'urg', u'speaker', u'help', u'hick']
[u'lajamanu', u'phone', u'day']
[u'lavend', u'make', u'boy', u'grow', u'breast', u'studi']
[u'legal', u'notic', u'serv', u'tristar', u'offici']
[u'legal', u'notic', u'serv', u'tristar', u'director']
[u'lennon', u'defend', u'green', u'gratia', u'payment']
[u'liber', u'wont', u'reprimand', u'offens', u'comment']
[u'lion', u'hop', u'avoid', u'charg', u'hotel', u'brawl']
[u'liverpool', u'score', u'deadlin', u'transfer', u'trick']
[u'river', u'flow', u'forc', u'swift', u'creek', u'water']
[u'mackay', u'hospit', u'feel', u'popul', u'growth', u'pressur']
[u'convict', u'have', u'teenag']
[u'die', u'crash', u'near', u'alic', u'spring']
[u'manufactur', u'growth', u'slow']
[u'unit', u'hammer', u'watford', u'chelsea']
[u'mayor', u'put', u'truck', u'bypass', u'agenda']
[u'meet', u'canva', u'bridgedal', u'futur']
[u'melbourn', u'fraudster', u'jail']
[u'convict', u'speed', u'fine', u'rort']
[u'merrick', u'slam', u'farcic', u'sydney', u'sign']
[u'minist', u'urg', u'explain', u'nation', u'park', u'decis']
[u'drug', u'user', u'refer', u'help']
[u'motion', u'confid', u'surpris', u'knight']
[u'call', u'freight', u'infrastructur', u'fund']
[u'say', u'recycl', u'water', u'talk', u'prematur']
[u'want', u'mildura', u'separ', u'loddon', u'malle']
[u'murder', u'victim', u'husband', u'knife']
[u'museum', u'prove', u'donat', u'paint', u'gauguin', u'origin']
[u'nambucca', u'council', u'vote', u'technic', u'colleg', u'plan']
[u'newcastl', u'make', u'second', u'round', u'offer']
[u'market', u'direct', u'barossa', u'wine']
[u'school', u'open', u'door', u'student']
[u'norman', u'take', u'care', u'busi', u'dubai']
[u'north', u'experi', u'downpour']
[u'communiti', u'cyclon', u'watch']
[u'oilsearch', u'say', u'aust', u'pipelin', u'feasibl']
[u'opposit', u'want', u'action', u'power', u'woe']
[u'opposit', u'warn', u'region', u'school', u'woe']
[u'orkopoulo', u'case', u'adjourn', u'elect']
[u'pair', u'hurt', u'boat', u'mishap']
[u'palestinian', u'milit', u'kill', u'west', u'bank']
[u'palm', u'island', u'riot', u'accus', u'ask', u'separ', u'trial']
[u'patton', u'murder', u'accus', u'plead', u'guilti']
[u'patton', u'murder', u'trial', u'close', u'media']
[u'person', u'match', u'miss', u'man', u'descript', u'spot']
[u'petrol', u'price', u'rise', u'rip', u'canberran']
[u'busi', u'closur', u'spark', u'govt']
[u'pioneer', u'drug', u'maker', u'face', u'collaps']
[u'plan', u'takeaway', u'alcohol', u'hold']
[u'plan', u'nuclear', u'sit', u'near', u'home', u'farmer', u'say']
[u'push', u'feder', u'water', u'plan']
[u'unveil', u'wetland', u'rescu', u'packag']
[u'australia', u'pipelin', u'project', u'suspend']
[u'pipelin', u'collaps', u'open', u'industri']
[u'polic', u'arrest', u'drug', u'raid']
[u'polic', u'associ', u'push', u'station', u'revamp']
[u'polic', u'charg', u'caravan', u'incid']
[u'polic', u'hope', u'improv', u'aurukun', u'relat']
[u'polic', u'investig', u'swan', u'hill', u'farm', u'death']
[u'polic', u'probe', u'suspect', u'ballarat', u'murder']
[u'polic', u'question', u'suspect', u'connect', u'iraq']
[u'polic', u'recov', u'ecstasi', u'tablet']
[u'polic', u'urg', u'speak', u'union', u'palm']
[u'pont', u'hit', u'vincent']
[u'posti', u'prank', u'fail', u'amus']
[u'psychologist', u'clear', u'sexual', u'assault']
[u'push', u'boost', u'lake', u'rowland', u'capac']
[u'polic', u'vote', u'march', u'parliament']
[u'rann', u'condemn', u'murray', u'darl', u'power', u'grab']
[u'rape', u'verdict', u'taint', u'enorm', u'bias', u'clark', u'say']
[u'rape', u'victim', u'vindic', u'court', u'find']
[u'region', u'victoria', u'film']
[u'report', u'highlight', u'lower', u'bendigo', u'crime', u'rate']
[u'report', u'say', u'children', u'cambodian', u'prison']
[u'resid', u'concern', u'develop', u'water']
[u'restrict', u'leisur', u'centr']
[u'tinto', u'profit']
[u'rspca', u'odd', u'eleph', u'care']
[u'rudd', u'back', u'crossin', u'preselect', u'battl']
[u'rudd', u'oppos', u'workchoic', u'wont', u'law']
[u'scientist', u'abuzz', u'size', u'aircraft']
[u'search', u'continu', u'miss', u'motorist']
[u'search', u'find', u'miss', u'snorkel']
[u'serpentin', u'river', u'alga', u'damag', u'health', u'govt', u'warn']
[u'ship', u'compani', u'fight', u'bottleneck']
[u'lodg', u'report', u'prompt', u'rethink']
[u'sleep', u'attack', u'bedroom']
[u'small', u'compani', u'domin', u'list']
[u'solut', u'sight', u'flood', u'disput']
[u'southern', u'wheat', u'grower', u'export']
[u'state', u'murray', u'darl', u'plan']
[u'stock', u'sell', u'high', u'countri', u'produc']
[u'stosur', u'second', u'round', u'tokyo', u'comp']
[u'sutherland', u'defend', u'mexican', u'wave']
[u'tait', u'pois', u'debut', u'pont', u'doubt']
[u'tasman', u'group', u'reveal', u'labor', u'parti', u'donor']
[u'wine', u'industri', u'head', u'tast']
[u'taylor', u'lead', u'royal', u'sydney']
[u'tennant', u'creek', u'mayor', u'fear', u'staff']
[u'thailand', u'confirm', u'bird', u'outbreak']
[u'thorp', u'murdoch', u'launch', u'aid', u'initi']
[u'tourism', u'industri', u'want', u'grant', u'bushfir', u'recoveri']
[u'tristar', u'defend', u'worker', u'treatment']
[u'tumut', u'council', u'question', u'workcov', u'prosecut']
[u'tune', u'quit', u'super']
[u'vehicl', u'crash', u'leav', u'dead']
[u'polic', u'uncov', u'terror', u'plot']
[u'umaga', u'start', u'red', u'game', u'bench']
[u'unilev', u'expans', u'boost', u'job']
[u'accus', u'iran', u'aid', u'iraqi', u'insurg']
[u'astronaut', u'spacewalk', u'februari']
[u'republican', u'democrat', u'unit', u'oppos', u'bush']
[u'vaughan', u'offici', u'rule']
[u'warn', u'chemic', u'restrict', u'hurt']
[u'govt', u'review', u'mine', u'approv', u'process']
[u'opposit', u'call', u'teacher', u'rise']
[u'weapon', u'seiz', u'court', u'scare']
[u'webb', u'song', u'kemp', u'lead', u'open', u'field']
[u'western', u'river', u'level', u'fall', u'flood']
[u'wheat', u'grower', u'meet', u'offer', u'support', u'singl']
[u'wheatley', u'admit', u'offenc']
[u'wife', u'stand', u'trial', u'husband', u'murder']
[u'windsor', u'survey', u'wheat', u'grower']
[u'wollongong', u'host', u'intern', u'water', u'seminar']
[u'women', u'jail', u'jealous', u'rampag']
[u'hour', u'work', u'week', u'highlight', u'polic', u'shortag', u'union']
[u'journo', u'award', u'thredbo', u'fall']
[u'act', u'polic', u'command', u'welcom', u'recruit']
[u'afford', u'right']
[u'alleg', u'palm', u'island', u'riot', u'leader', u'grant', u'separ']
[u'ampa', u'push', u'dairi', u'levi', u'increas']
[u'anim', u'carcass', u'dump', u'recycl', u'depot']
[u'anim', u'right', u'peopl']
[u'applebi', u'pace', u'dubai']
[u'april', u'start', u'date', u'miner', u'sand', u'mine', u'oper']
[u'auspin', u'seek', u'legal', u'advic', u'log', u'suppli']
[u'aussi', u'invinc', u'say', u'vettori']
[u'australian', u'chase', u'falter']
[u'australian', u'richer']
[u'author', u'extend', u'australian', u'iraq', u'detent']
[u'baddeley', u'place', u'scottsdal']
[u'bail', u'refus', u'torquay', u'child', u'assault', u'case']
[u'ballarat', u'liber', u'candid', u'quit']
[u'bishop', u'educ']
[u'blair', u'wont', u'resign', u'inquiri']
[u'blue', u'hold', u'crusad']
[u'blue', u'lead', u'crusad', u'half', u'time']
[u'british', u'polic', u'foil', u'suspect', u'kidnap', u'behead']
[u'caloundra', u'council', u'divid', u'recycl', u'water']
[u'think', u'spark', u'tumut', u'blaze']
[u'casino', u'beef', u'week', u'cancel']
[u'childcar', u'analysi', u'touch', u'realiti', u'say']
[u'climat', u'report', u'fail', u'highlight', u'extent', u'global']
[u'climat', u'report', u'polit']
[u'closer']
[u'closer', u'nodisplay']
[u'coalit', u'shun', u'letter', u'call', u'david', u'hickss']
[u'compani', u'reject', u'polit', u'donat', u'claim']
[u'concern', u'recycl', u'water']
[u'consortium', u'formal', u'lodg', u'qanta', u'takeov']
[u'consortium', u'free', u'abandon', u'guarante', u'qanta']
[u'coorong', u'council', u'protest', u'weir', u'propos']
[u'council', u'remind', u'resid', u'respons']
[u'countri', u'hour', u'highlight']
[u'cricket', u'mexican', u'wave']
[u'crow', u'play', u'robin', u'hood', u'remak']
[u'cyclon', u'expect', u'form', u'hour']
[u'decemb', u'trade', u'figur']
[u'dinner', u'recognis', u'founder']
[u'ditch', u'connex', u'commut', u'group', u'say']
[u'doubt', u'rais', u'plan', u'extra', u'water', u'flow']
[u'congo', u'clash', u'leav', u'dead']
[u'driver', u'probat', u'hit', u'pedestrian']
[u'drought', u'blame', u'trade', u'deficit', u'increas']
[u'drought', u'lead', u'nativ', u'fish', u'reloc']
[u'drought', u'recoveri', u'plan', u'prepar', u'near', u'complet']
[u'eckstein', u'holm', u'train', u'pay', u'ironmen']
[u'england', u'bat', u'strong', u'sydney']
[u'england', u'tast', u'glori']
[u'england', u'toss', u'elect', u'australia']
[u'enni', u'bronco', u'return']
[u'council', u'say', u'water', u'save', u'requir']
[u'essenti', u'suppli', u'fli', u'flood']
[u'expand', u'centrelink', u'centr', u'creat', u'job']
[u'exxon', u'mobil', u'defend', u'climat', u'chang', u'record']
[u'farina', u'stay', u'roar']
[u'farmer', u'face', u'tougher', u'condit', u'climat']
[u'farmer', u'urg', u'fodder', u'run']
[u'farmer', u'urg', u'miss', u'drought']
[u'farmer', u'urg', u'report', u'bushfir', u'damag']
[u'fear', u'chemic', u'long', u'term', u'health']
[u'feder', u'govt', u'hear', u'holbrook', u'fear']
[u'govt', u'urg', u'broader', u'look', u'water', u'issu']
[u'feltex', u'scrap', u'job']
[u'figur', u'highlight', u'hospit', u'resourc']
[u'firefight', u'work', u'contain', u'tamar', u'veget']
[u'fish', u'face', u'croc', u'piranha', u'amazon', u'swim']
[u'flanneri', u'climat']
[u'flood', u'paralys', u'jakarta']
[u'floodwat', u'caus', u'chao']
[u'command', u'question', u'iraq', u'troop', u'number']
[u'foster', u'jail', u'vanuatu']
[u'foster', u'reliev', u'week', u'jail', u'term']
[u'gillard', u'deni', u'labor', u'shift', u'law']
[u'global', u'warm', u'effect', u'centuri', u'warn']
[u'global', u'warm', u'probabl', u'caus', u'human']
[u'gordon', u'estat', u'hous', u'auction']
[u'govt', u'criticis', u'expect']
[u'govt', u'financ', u'fleet', u'float', u'prison']
[u'govt', u'panic', u'rudd']
[u'govt', u'question', u'freight', u'transport', u'plan']
[u'govt', u'review', u'confirm', u'wakool', u'council', u'fund', u'woe']
[u'govt', u'say', u'plan', u'recycl', u'drink', u'water']
[u'govt', u'state', u'battl', u'educ']
[u'govt', u'introduc', u'anti', u'telemarket', u'servic']
[u'grain', u'grower', u'count', u'weed', u'cost']
[u'green', u'plan', u'olymp', u'repris', u'beij']
[u'green', u'group', u'say', u'salvag', u'log', u'unsustain']
[u'green', u'oppos', u'recycl', u'drink', u'water', u'plan']
[u'group', u'play', u'cape', u'york', u'heritag', u'list', u'fear']
[u'court', u'suspect', u'fear', u'life']
[u'habib', u'campaign', u'human', u'right']
[u'health', u'worri', u'remain', u'baryugil']
[u'hickss', u'incarcer', u'warrant']
[u'high', u'school', u'curriculum', u'report']
[u'hope', u'bush', u'food', u'reach', u'global', u'market']
[u'horsham', u'await', u'citi', u'drought', u'donat']
[u'hospit', u'support', u'surpris', u'health', u'minist']
[u'hous', u'suspect', u'arson', u'attack']
[u'howard', u'ban', u'fiji']
[u'howard', u'critic', u'labor', u'posit']
[u'illawarra', u'region', u'strategi', u'boost', u'job', u'sartor']
[u'ipcc', u'climat', u'chang', u'report']
[u'iraq', u'violenc', u'overtak', u'qaeda', u'threat', u'report']
[u'jet', u'sydney', u'final']
[u'jet', u'let', u'sydney', u'talk', u'talk']
[u'jet', u'sydney', u'level', u'break']
[u'jetstar', u'plane', u'collect', u'strand', u'passeng']
[u'joyc', u'lift', u'england', u'total']
[u'kemp', u'hold', u'lead', u'royal', u'sydney']
[u'kimberley', u'school', u'despit', u'teacher']
[u'kossi', u'put', u'victori', u'notic']
[u'length', u'hickss', u'detent', u'total', u'inappropri']
[u'liber', u'urg', u'return', u'tobacco', u'money']
[u'live', u'export', u'blight', u'charact']
[u'bite', u'croc', u'flee', u'polic']
[u'drown', u'tri', u'rescu']
[u'kill', u'hous', u'blast']
[u'manufactur', u'fault', u'delay', u'tunnel', u'open']
[u'market', u'beat', u'hold', u'rat']
[u'mayor', u'deni', u'warrnambool', u'violenc', u'claim']
[u'mayor', u'say', u'feedlot', u'develop', u'creat', u'certainti']
[u'lobbi', u'group', u'call', u'govt', u'simplifi']
[u'miner', u'predict', u'rise', u'kalkaroo', u'deposit']
[u'delay', u'nobbi', u'lighthous', u'work']
[u'rain', u'possibl', u'central']
[u'social', u'worker', u'urg', u'rural', u'communiti']
[u'air', u'pacif', u'highway', u'upgrad', u'compo', u'concern']
[u'say', u'polit', u'donat', u'fulli', u'disclos']
[u'mayor', u'angri', u'pipelin', u'outcom']
[u'murray', u'court', u'challeng', u'possibl', u'rann']
[u'murray', u'darl', u'disput', u'continu']
[u'murray', u'darl', u'meet', u'construct', u'rann', u'say']
[u'nation', u'curriculum', u'lower', u'educ']
[u'nation', u'school', u'curriculum', u'commonsens']
[u'newcastl', u'hous', u'price', u'expect', u'follow', u'nation']
[u'custom', u'boat', u'tackl', u'illeg', u'fish', u'launch']
[u'govt', u'aquif', u'plan', u'meet', u'resist']
[u'nation', u'want', u'googong', u'water', u'monaro']
[u'awash', u'torrenti', u'rain']
[u'resid', u'prepar', u'flood']
[u'plead', u'guilti', u'kill', u'cousin']
[u'prepar', u'east', u'coast', u'cyclon']
[u'uranium', u'expand']
[u'nutritionist', u'suggest', u'overweight', u'kid']
[u'orang', u'polic', u'detain', u'illeg', u'immigr']
[u'orang', u'record', u'highest', u'rainfal', u'region']
[u'outgo', u'head', u'take']
[u'pacemak', u'evid', u'attract', u'televis']
[u'palestinian', u'clear', u'racket', u'conspiraci']
[u'philippin', u'truck', u'explos', u'kill']
[u'pilbara', u'salt', u'plan', u'worri', u'pearl', u'industri']
[u'plan', u'committe', u'chairman', u'vote']
[u'plan', u'minist', u'final']
[u'attack', u'labor', u'stanc']
[u'water', u'plan', u'forc', u'basin', u'water']
[u'pipelin', u'suspens', u'boost', u'search']
[u'polic', u'safe', u'mokbel', u'hunt']
[u'polic', u'probe', u'nation', u'park', u'blaze']
[u'polic', u'question', u'blair', u'parti', u'fund']
[u'polic', u'recruit', u'begin', u'work', u'armidal', u'inverel']
[u'polic', u'seiz', u'drug', u'arrest']
[u'polic', u'surpris', u'hurt', u'road', u'rage', u'ordeal']
[u'polic', u'follow', u'lead', u'kain', u'case']
[u'polit', u'donat', u'campaign', u'say', u'labor']
[u'prawn', u'fishermen', u'devis', u'plan', u'fight', u'cheap']
[u'princip', u'save', u'elder', u'resid', u'hous']
[u'psychiatrist', u'court', u'scare']
[u'pulp', u'mill', u'financ', u'arrang', u'finalis']
[u'push', u'town', u'access', u'goldfield']
[u'rain', u'relief', u'parch', u'wide']
[u'rann', u'leav', u'door', u'open', u'murray', u'court', u'challeng']
[u'rann', u'leav', u'door', u'open', u'murray', u'darl', u'court']
[u'rare', u'bird', u'spot', u'affect', u'goonoo']
[u'rare', u'snake', u'spot', u'central']
[u'rate', u'level', u'rise', u'underestim', u'report']
[u'reduc', u'oncolog', u'servic', u'worri', u'breast', u'cancer']
[u'remot', u'golf', u'cours', u'see', u'grass']
[u'report', u'card', u'mark', u'macquari', u'marsh']
[u'rescu', u'chopper', u'crash']
[u'resid', u'prepar', u'possibl', u'cyclon']
[u'resourc', u'industri', u'drive', u'economi', u'chamber']
[u'reynold', u'pledg', u'support', u'palm', u'constitu']
[u'richmond', u'council', u'outlin', u'draft', u'urban', u'land', u'plan']
[u'predict', u'strong', u'price', u'continu']
[u'rudd', u'reject', u'rift']
[u'rudd', u'reject', u'rift', u'gillard']
[u'level', u'rise', u'underestim', u'scientist']
[u'sean', u'diddi', u'comb', u'challeng', u'british', u'court']
[u'slinger', u'taipan', u'score', u'win']
[u'small', u'gain', u'push', u'share', u'market']
[u'smorgon', u'fail', u'carlton', u'elect']
[u'snowdon', u'defend', u'rudd', u'preselect', u'endors']
[u'socceroo', u'play', u'argentina', u'uruguay']
[u'south', u'african', u'mourn', u'mama', u'tambo', u'death']
[u'storm', u'damag', u'tamworth', u'hous']
[u'stosur', u'triumphant', u'tokyo']
[u'stretch', u'friendship']
[u'survey', u'find', u'unhealthi', u'mobil', u'obsess']
[u'tamworth', u'toughen', u'water', u'restrict']
[u'opposit', u'want', u'inquiri', u'suppli', u'deal']
[u'terri', u'chelsea', u'wait', u'cole', u'injuri']
[u'test', u'fail', u'detect', u'bird', u'death', u'caus']
[u'thai', u'airport', u'chief', u'resign', u'safeti', u'issu']
[u'thirteen', u'death', u'shatter', u'palestinian', u'truce']
[u'tipper', u'comment', u'climat']
[u'torrenti', u'rain', u'flood', u'part']
[u'torrenti', u'rain', u'swamp', u'northern']
[u'treasuri', u'analysi', u'find', u'childcar', u'crisi']
[u'truck', u'crash', u'block', u'pacif', u'highway', u'hour']
[u'turnbul', u'rann', u'meet', u'murray', u'darl', u'propos']
[u'union', u'deleg', u'support', u'sale', u'histor', u'worker']
[u'union', u'demand', u'prison', u'review']
[u'union', u'hit', u'feltex', u'cut']
[u'deliv', u'grim', u'climat', u'report']
[u'general', u'say', u'iraq', u'winnabl']
[u'farmer', u'reject', u'grower', u'own']
[u'wale', u'lose', u'thoma', u'week', u'suspens']
[u'waugh', u'faith', u'weaken', u'waratah']
[u'webb', u'snatch', u'australian', u'open', u'lead']
[u'wellington', u'jail', u'work', u'track']
[u'woman', u'accus', u'tourism', u'bodi', u'theft', u'face']
[u'woman', u'die', u'innisfail', u'crash']
[u'women', u'hurt', u'broadbeach', u'crash']
[u'wood', u'case', u'hear', u'wit', u'statement']
[u'workcov', u'probe', u'crash', u'chemic', u'lade', u'truck']
[u'workcov', u'stand', u'tumut', u'council', u'work', u'death', u'fine']
[u'worker', u'kill', u'cherri', u'picker', u'fall']
[u'young', u'hoon', u'fail', u'polic', u'messag']
[u'arrest', u'saudi', u'arabia', u'terror', u'fund']
[u'hous', u'price', u'rise']
[u'concern', u'insur', u'disclosur', u'patient']
[u'anger', u'perus', u'plan', u'bring', u'firm', u'amazon']
[u'launch', u'formal', u'qanta']
[u'aussi', u'learn', u'defeat', u'england', u'gilchrist']
[u'aust', u'adapt', u'global', u'warm']
[u'aust', u'action', u'climat', u'chang', u'rudd']
[u'author', u'fail', u'miss', u'lose']
[u'author', u'flood', u'threat', u'eas', u'town']
[u'bird', u'poultri', u'farm']
[u'black', u'cap', u'welcom', u'england']
[u'say', u'cyclon', u'threat', u'eas']
[u'border', u'allow', u'fighter', u'pakistani']
[u'brumbi', u'chief']
[u'canberra', u'gain', u'taxi', u'compani']
[u'chines', u'compani', u'impress', u'wind', u'power']
[u'chines', u'offici', u'deni', u'arm', u'race', u'militari']
[u'climat', u'chang', u'report', u'prove', u'aust']
[u'closer']
[u'closer']
[u'say', u'nuclear', u'wast', u'sit', u'arent', u'near', u'home']
[u'warehous', u'destroy']
[u'connex', u'reject', u'report', u'track', u'safeti', u'issu']
[u'council', u'wont', u'support', u'massiv', u'water', u'price', u'hike']
[u'crew', u'spend', u'night', u'control', u'blaze']
[u'crowdi', u'blaze', u'contain']
[u'cyclon', u'warn', u'continu', u'gulf', u'countri']
[u'cyclon', u'warn', u'remain', u'gulf', u'communiti']
[u'debnam', u'hypocrit', u'desalin', u'plant', u'plan']
[u'dever', u'good']
[u'diabet', u'transplant', u'trial', u'offer', u'hope', u'suffer']
[u'dozen', u'injur', u'indonesian', u'train', u'collis', u'report']
[u'dozen', u'milit', u'kill', u'latest', u'afghan']
[u'drink', u'fishermen', u'rescu', u'break']
[u'lurk', u'shot', u'dubai', u'leader', u'fisher']
[u'engin', u'problem', u'forc', u'qanta', u'return']
[u'environ', u'group', u'want', u'develop', u'limit']
[u'timor', u'set', u'date', u'presidenti', u'elect']
[u'extend', u'sanction', u'zimbabw', u'diplomat']
[u'extrem', u'weather', u'expect', u'bushfir']
[u'figur', u'suggest', u'rental', u'crisi', u'reach', u'region']
[u'crew', u'battl', u'factori', u'blaze', u'sydney']
[u'fisher', u'urg', u'tourist', u'return', u'snowi', u'mountain']
[u'flame', u'grand', u'final']
[u'florida', u'storm', u'tornado', u'death', u'toll', u'rise']
[u'coke', u'worker', u'guilti', u'trade', u'secret']
[u'fuel', u'tank', u'explos', u'caus', u'worth', u'damag']
[u'gaza', u'gunfir', u'continu', u'despit', u'truce']
[u'global', u'warm', u'describ', u'unstopp']
[u'gold', u'ingot', u'steal', u'artwork', u'pari']
[u'govt', u'approv', u'adelaid', u'tramlin', u'extens', u'project']
[u'govt', u'defend', u'action', u'climat', u'chang']
[u'govt', u'defend', u'climat', u'chang', u'action']
[u'govt', u'reaction', u'global', u'warm', u'report', u'criticis']
[u'groundhog', u'bring', u'predict', u'earli', u'spring']
[u'gulf', u'communiti', u'spar', u'cyclon']
[u'gulf', u'resid', u'prepar', u'possibl', u'cyclon', u'flood']
[u'haa', u'delray', u'repeat', u'end', u'quarter', u'final']
[u'hama', u'fatah', u'agre', u'ceas']
[u'health', u'insur', u'disclosur', u'patient', u'detail']
[u'hick', u'face', u'charg']
[u'hick', u'face', u'terror', u'charg']
[u'hick', u'charg']
[u'highland', u'withstand', u'forc', u'perth']
[u'hundr', u'protest', u'desalin', u'plant']
[u'finish', u'insist', u'ronaldo']
[u'incom', u'continu', u'grow', u'china']
[u'iraq', u'deploy', u'greatest', u'foreign', u'polici', u'failur']
[u'iraq', u'violenc', u'verg', u'civil', u'intellig']
[u'isra', u'troop', u'shoot', u'palestinian']
[u'judg', u'reject', u'simpson', u'book', u'lawsuit']
[u'killer', u'storm', u'strike', u'florida']
[u'kookaburra', u'dutch', u'play', u'excit', u'draw']
[u'labor', u'say', u'patrol', u'boat', u'sidelin', u'blow']
[u'ljubic', u'struggl', u'zagreb', u'semi', u'final']
[u'mackay', u'flood', u'threat', u'eas', u'rain', u'continu']
[u'attack', u'shark', u'ballina']
[u'die', u'caravan']
[u'melbourn', u'median', u'hous', u'price', u'soar', u'time', u'high']
[u'mine', u'elect', u'stunt', u'say', u'sartor']
[u'minogu', u'split', u'french', u'boyfriend']
[u'miss', u'andretti', u'win', u'global', u'sprint']
[u'mitchel', u'patient', u'prize', u'trio']
[u'remain', u'delhi', u'hous', u'horror']
[u'women', u'view', u'morn', u'pill', u'favour']
[u'want', u'tougher', u'punish', u'pharmaci', u'burglar']
[u'negoti', u'continu', u'resolv', u'forens', u'polic']
[u'hick', u'charg', u'announc']
[u'norfolk', u'island', u'court', u'prepar', u'patton', u'murder']
[u'flood', u'eas']
[u'town', u'isol', u'floodwat']
[u'accid', u'kill', u'teenag', u'injur', u'seven']
[u'pair', u'charg', u'robberi', u'assault', u'onboard', u'train']
[u'pair', u'rescu', u'perth', u'dinghi', u'break']
[u'peel', u'elector', u'go', u'poll']
[u'perth', u'hous', u'price', u'soar']
[u'welcom', u'charg', u'hick']
[u'polic', u'drug', u'arrest', u'adelaid']
[u'policeman', u'kill', u'sicilian', u'footbal', u'clash']
[u'polic', u'offic', u'die', u'italian', u'fan', u'riot']
[u'polic', u'man', u'death', u'caravan']
[u'polic', u'stun', u'defend', u'court']
[u'price', u'surg', u'good', u'news', u'homebuy']
[u'qanta', u'land', u'safeti', u'engin', u'emerg']
[u'qanta', u'land', u'safeti', u'engin', u'troubl']
[u'quinney', u'shoot', u'phoenix']
[u'redback', u'defeat', u'warrior']
[u'redback', u'restrict', u'warrior']
[u'red', u'lead', u'hurrican', u'half', u'time', u'break']
[u'red', u'outclass', u'hurrican']
[u'red', u'reflect']
[u'sehwag', u'munaf', u'return', u'lanka', u'dayer']
[u'serbia', u'reject', u'plan', u'kosovo', u'separ']
[u'servic', u'mark', u'anniversari', u'hang']
[u'sever', u'storm', u'tornado', u'kill', u'florida']
[u'sharapova', u'quit', u'tokyo', u'semi']
[u'shark', u'attack', u'victim', u'take', u'hospit']
[u'south', u'africa', u'crush', u'pakistan']
[u'specul', u'mount', u'butcher', u'posit']
[u'spontan', u'combust', u'keep', u'close']
[u'stinger', u'polic', u'chase']
[u'storm', u'tornado', u'kill', u'florida']
[u'stosur', u'whip', u'hingi', u'tokyo']
[u'studi', u'focus', u'great', u'artesian', u'basin', u'water']
[u'swimmer', u'suffer', u'bluebottl', u'sting', u'maroubra']
[u'symond', u'hop', u'doubt']
[u'taliban', u'bomber', u'ram', u'pakistani', u'convoy', u'kill']
[u'compani', u'reject', u'link', u'malaysian', u'forest']
[u'wombat', u'bind', u'copenhagen']
[u'taxi', u'compani', u'concern', u'lose', u'monopoli']
[u'thousand', u'homeless', u'flood', u'engulf', u'indonesian']
[u'give', u'life', u'jail', u'russian', u'train', u'bomb']
[u'tiger', u'king', u'croc', u'slinger', u'bullet', u'record', u'win']
[u'bird', u'outbreak', u'confirm', u'virus']
[u'global', u'warm', u'report', u'prompt']
[u'unveil', u'plan', u'kosovo']
[u'intellig', u'agenc', u'iraq', u'civil']
[u'labor', u'claim', u'victori', u'elect']
[u'waratah', u'beat', u'lion', u'flight', u'plan', u'pay']
[u'webb', u'hold', u'lead', u'royal', u'sydney']
[u'webb', u'open', u'shoot', u'buffer']
[u'withdraw', u'patrol', u'boat', u'major', u'blow', u'border']
[u'woman', u'burn', u'death', u'accid']
[u'woman', u'dead', u'tripl', u'stab']
[u'woman', u'hospitalis', u'bedsid', u'knife', u'attack']
[u'woman', u'rescu', u'plough', u'creek']
[u'woodgat', u'dyer', u'recal', u'england', u'spain']
[u'world', u'leader', u'concern', u'faction', u'fight', u'gaza']
[u'youtub', u'agre', u'remov', u'viacom', u'video']
[u'labour', u'crush', u'death', u'mumbai']
[u'actcoss', u'seek', u'offic', u'locat']
[u'age', u'rail', u'signal', u'belief']
[u'concern', u'redirect', u'elder', u'health']
[u'woman', u'assault', u'home']
[u'attack', u'continu', u'baghdad', u'reel', u'market', u'blast']
[u'australia', u'chase']
[u'author', u'consid', u'close', u'highway', u'kosziusko']
[u'baddeley', u'charg', u'quinney', u'keep', u'scottsdal', u'lead']
[u'beatti', u'question', u'commonwealth', u'abil', u'water']
[u'benaud', u'macartney', u'enter', u'hall', u'fame']
[u'black', u'cap', u'track', u'healthi', u'total']
[u'blaze', u'control', u'tumut']
[u'bodi', u'light', u'plane', u'crash']
[u'kill', u'pushbik', u'collid']
[u'british', u'author', u'respond', u'bird', u'outbreak']
[u'busi', u'group', u'urg', u'apologis', u'support']
[u'chabal', u'doubl', u'franc', u'crush', u'woeful']
[u'chelsea', u'heat', u'unit']
[u'chewbacca', u'arrest', u'head', u'butt', u'hollywood']
[u'clean', u'begin', u'florida', u'tornado', u'kill']
[u'clean', u'begin', u'north', u'flood']
[u'closer']
[u'closer']
[u'coal', u'explos', u'kill', u'colombia']
[u'crew', u'blaze', u'contain', u'line']
[u'crew', u'work', u'blaze', u'check']
[u'cyclon', u'warn', u'continu', u'gulf', u'communiti']
[u'duel', u'summit']
[u'dead', u'bird', u'virus', u'outbreak', u'confirm', u'england']
[u'death', u'roll', u'rise', u'jakarta', u'flood']
[u'defar', u'smash', u'world', u'indoor', u'record']
[u'egypt', u'urg', u'palestinian', u'infight']
[u'electr', u'fault', u'snake', u'enclosur', u'blame']
[u'dubai', u'duel', u'wood']
[u'emphat', u'victori', u'take', u'cheetah']
[u'expert', u'warn', u'global', u'warm', u'threat']
[u'fatah', u'hama', u'agre', u'renew', u'gaza', u'truce']
[u'flare', u'threaten', u'perth', u'home']
[u'fire', u'threaten', u'home', u'near', u'perth']
[u'fleme', u'go', u'earli']
[u'forecast', u'wind', u'expect', u'hamper', u'effort']
[u'gardin', u'face', u'surgeri']
[u'germani', u'take', u'honour']
[u'govt', u'challeng', u'hick', u'retrospect', u'charg']
[u'govt', u'prais', u'angler', u'barramundi', u'popul']
[u'govt', u'prais', u'consortium', u'qanta', u'process']
[u'govt', u'urg', u'colleg', u'review']
[u'signal', u'help', u'polic', u'miss', u'tourist']
[u'group', u'say', u'govt', u'fail', u'curb', u'rise', u'emiss']
[u'gulf', u'communiti', u'remain', u'cyclon', u'watch']
[u'gulf', u'specialist', u'stenson', u'captur', u'dubai', u'titl']
[u'highway', u'reopen', u'north', u'floodwat', u'subsid']
[u'hingi', u'storm', u'record', u'fifth', u'tokyo', u'titl']
[u'home', u'lose', u'bushfir']
[u'hong', u'kong', u'race', u'great', u'silent', u'wit', u'bow']
[u'howard', u'call', u'premier', u'water', u'summit', u'week']
[u'howard', u'rudd', u'separ', u'summit']
[u'india', u'test', u'fire', u'superson', u'cruis', u'missil']
[u'injuri', u'time', u'winner', u'send', u'melbourn', u'grand', u'final']
[u'investig', u'begin', u'home', u'lose', u'sever']
[u'investig', u'head', u'scene']
[u'iran', u'reveal', u'nuclear', u'convers', u'plant']
[u'iraq', u'blame', u'saddam', u'loyalist', u'dead']
[u'iraq', u'blame', u'saddam', u'loyalist', u'dead', u'blast']
[u'iraq', u'vow', u'action', u'truck', u'bomb', u'kill']
[u'israel', u'restrict', u'access', u'holi', u'islam', u'site']
[u'jone', u'vindic', u'schiffa', u'shin', u'debut']
[u'labor', u'elect', u'outstand']
[u'lifelin', u'call', u'phone', u'volunt']
[u'ljubic', u'meet', u'baghdati', u'zagreb', u'final']
[u'releas', u'question', u'otway', u'death']
[u'man', u'break', u'home', u'invas']
[u'mass', u'arrest', u'lanka', u'bomb']
[u'medic', u'specialist', u'traine', u'posit', u'boost']
[u'melbourn', u'resid', u'prais', u'reduc', u'water']
[u'milit', u'free', u'chines', u'worker', u'nigeria']
[u'morient', u'doubl', u'take', u'valencia']
[u'motorist', u'urg', u'steer', u'clear', u'flood']
[u'nato', u'forc', u'kill', u'taliban', u'chief', u'afghanistan']
[u'need', u'curb', u'carbon', u'emiss']
[u'cash', u'pinot', u'popular']
[u'opposit', u'leader', u'urg', u'mckew', u'consid']
[u'palestinian', u'faction', u'agre', u'resum', u'ceas']
[u'palestinian', u'faction', u'resum', u'ceas']
[u'paraglid', u'grind', u'hour', u'wait']
[u'particip', u'strip', u'nude', u'olymp']
[u'platini', u'back', u'itali', u'stanc', u'violenc']
[u'overestim', u'power', u'gain', u'water', u'control']
[u'reject', u'retrospect', u'aust']
[u'reject', u'retrospect', u'hick']
[u'polic', u'investig', u'man', u'death', u'vic', u'otway', u'rang']
[u'pont', u'hodg', u'blast', u'black', u'cap']
[u'pont', u'crack']
[u'pont', u'lead', u'aussi', u'chase']
[u'protest', u'die', u'ethnic', u'violenc', u'flare']
[u'punctur', u'lung', u'sidelin', u'red', u'centr']
[u'rare', u'whoop', u'crane', u'flock', u'kill', u'florida', u'storm']
[u'raverti', u'back', u'idea', u'public', u'inquiri']
[u'rescu', u'mission', u'flood']
[u'reward', u'offer', u'inform', u'motorcycl']
[u'govt', u'mull', u'tougher', u'law', u'amid', u'einem']
[u'scorses', u'win', u'director', u'guild', u'award']
[u'second', u'teen', u'die', u'crash', u'north', u'west']
[u'shark', u'bull']
[u'shark', u'spot', u'south', u'coast', u'beach']
[u'silent', u'wit', u'bow']
[u'spaniard', u'protest', u'govt', u'talk']
[u'lanka', u'want', u'hang', u'moodi']
[u'suicid', u'bomber', u'kill', u'baghdad', u'market']
[u'symond', u'miss', u'world']
[u'symond', u'undergo', u'surgeri']
[u'taipan', u'bite', u'wildcat']
[u'teen', u'charg', u'bash']
[u'thai', u'singaporean', u'soccer', u'fan', u'warn', u'behav']
[u'thousand', u'homeless', u'kill', u'jakarta', u'flood']
[u'toddler', u'recov', u'trap']
[u'trade', u'mission', u'aim', u'boost', u'export', u'india']
[u'train', u'crush', u'children', u'death', u'pakistan']
[u'trio', u'charg', u'hotel', u'extort', u'attempt']
[u'turkey', u'cull', u'begin', u'asian', u'strain', u'bird']
[u'turkey', u'cull', u'quell', u'bird', u'outbreak']
[u'unit', u'lead', u'victori', u'half', u'time']
[u'univers', u'destroy']
[u'general', u'take', u'nato', u'afghan', u'mission']
[u'offer', u'support', u'iraqi', u'govt', u'blast']
[u'pledg', u'help', u'iraqi', u'govt', u'latest', u'blast']
[u'vanston', u'pen', u'nation', u'song']
[u'vaughan', u'return', u'zealand']
[u'volunt', u'servic', u'honour', u'anniversari', u'ball']
[u'einem', u'charg', u'sell', u'card']
[u'crew', u'battl', u'south', u'east', u'blaze']
[u'leav', u'path', u'destruct']
[u'webb', u'cruis', u'victori', u'royal', u'sydney']
[u'webb', u'take', u'lead', u'final', u'round']
[u'wenger', u'see', u'viduka', u'challeng']
[u'wilkinson', u'bang', u'england', u'beat', u'scotland']
[u'flee', u'indonesian', u'flood']
[u'action', u'need', u'preserv', u'thing', u'valu']
[u'student', u'return', u'school']
[u'adelaid', u'crow', u'visit', u'port', u'lincoln']
[u'adelaid', u'sweat', u'brazilian', u'striker', u'fit']
[u'airport', u'radio', u'target', u'labor', u'develop']
[u'choos', u'myall', u'lake', u'port', u'macquari', u'candid']
[u'anglicar', u'get', u'drought', u'relief', u'fund']
[u'anim', u'cruelti', u'trial', u'live', u'export', u'begin']
[u'audit', u'reveal', u'employ', u'breach', u'child', u'work', u'law']
[u'auspin', u'rule', u'cut', u'oper']
[u'baddeley', u'eye', u'major', u'phoenix', u'triumph']
[u'baddeley', u'seal', u'victori', u'phoenix', u'open']
[u'badd', u'clinch', u'phoenix']
[u'balibo', u'inquest', u'wit', u'tell', u'white', u'shoot']
[u'bali', u'bomber', u'preach', u'milit', u'jail']
[u'barca', u'miss', u'sevilla', u'real', u'suffer']
[u'barossa', u'resid', u'push', u'health', u'facil']
[u'benalla', u'hous', u'blaze', u'consid', u'suspici']
[u'say', u'rehab', u'scheme', u'boost', u'river', u'flow']
[u'rescu', u'effort', u'framlingham', u'forest', u'koala']
[u'bomb', u'kill', u'govt', u'tribesmen', u'pakistan']
[u'face', u'court', u'alleg', u'pressur']
[u'brimbl', u'inquest', u'tell', u'shout', u'cabin']
[u'break', u'hill', u'council', u'look', u'effici']
[u'build', u'approv']
[u'bureau', u'warn', u'potenti', u'cyclon']
[u'businessman', u'highlight', u'highway', u'upgrad', u'person']
[u'cane', u'farmer', u'fear', u'crop']
[u'carbon', u'cost', u'job']
[u'crash', u'hous', u'narrowli', u'miss', u'woman']
[u'carpent', u'energi']
[u'cat', u'camp', u'swan', u'hill']
[u'closer']
[u'closer']
[u'coalit', u'labor', u'lock', u'horn', u'climat', u'water']
[u'colt', u'super', u'bowl', u'drought']
[u'colt', u'lead', u'bear', u'half', u'time', u'super', u'bowl']
[u'communiti', u'group', u'cast', u'doubt', u'plan', u'mine']
[u'confer', u'aim', u'stop', u'child', u'soldier']
[u'conman', u'foster', u'detain', u'brisban']
[u'consortium', u'bid', u'qanta', u'submit', u'plan', u'govt']
[u'contractor', u'treat', u'hospit', u'chemic', u'spill']
[u'coron', u'report', u'fatal', u'plane', u'crash']
[u'coroni', u'inquiri', u'investig', u'teen']
[u'costello', u'pledg', u'qanta', u'aust', u'own']
[u'council', u'consid', u'rezon', u'north', u'cooranbong', u'land']
[u'council', u'fear', u'heritag', u'list', u'hamper', u'plan']
[u'council', u'hop', u'har', u'travel', u'retir']
[u'councillor', u'hint', u'inquiri', u'lose', u'auspin', u'deal']
[u'councillor', u'vote', u'thoma', u'gibson', u'park', u'plan']
[u'council', u'unit', u'push', u'princ', u'highway', u'revamp']
[u'council', u'plate', u'recommend', u'shire']
[u'court', u'dismiss', u'collect', u'nativ', u'titl', u'claim']
[u'crew', u'battl', u'blaze', u'nation', u'park']
[u'crime', u'rate', u'fall', u'coolgardi']
[u'croc', u'deep', u'pool']
[u'croc', u'make', u'splash', u'darwin', u'pool']
[u'date', u'revis', u'asian', u'iron', u'shipment']
[u'detect', u'appear', u'brimbl', u'inquest']
[u'downpour', u'boost', u'mozzi', u'number']
[u'dozen', u'kill', u'iraq', u'attack']
[u'drill', u'rig', u'plant', u'miner']
[u'timor', u'vote', u'presid', u'april']
[u'fair', u'trial', u'palm', u'island', u'offic', u'imposs']
[u'fear', u'overfish', u'southern', u'rock', u'lobster']
[u'fijian', u'arm', u'polic', u'unit', u'disband']
[u'ban', u'south', u'east']
[u'crew', u'battl', u'snowi', u'mountain', u'blaze']
[u'crew', u'work', u'night', u'control', u'blaze']
[u'firefight', u'brace', u'danger', u'condit']
[u'firefight', u'patrol', u'tatong', u'area', u'blaze']
[u'firefight', u'work', u'night', u'contain', u'blaze']
[u'spark', u'power', u'outag']
[u'premiership', u'sale', u'maffra', u'cricket']
[u'forens', u'scientist', u'vote', u'lift', u'work', u'ban']
[u'forest', u'contractor', u'appeal', u'govt', u'assist']
[u'judg', u'scientist', u'appoint', u'rpdc']
[u'foster', u'arriv', u'australia']
[u'foster', u'releas', u'jail']
[u'foster', u'head', u'brisban']
[u'gold', u'coast', u'athlet', u'take', u'perth', u'triathlon']
[u'good', u'rain', u'fall', u'central', u'highland']
[u'govern', u'ask', u'lift', u'night', u'patrol', u'fund']
[u'govt', u'incent', u'urg', u'address', u'rental', u'squeez']
[u'green', u'call', u'inquiri', u'assess']
[u'heat', u'spark', u'warn', u'travel']
[u'help', u'seek', u'solv', u'canberra', u'arson', u'case']
[u'high', u'school', u'fire', u'like', u'caus', u'class', u'disrupt']
[u'sceptic', u'doctor', u'dinosaur', u'evid']
[u'horsham', u'host', u'nation']
[u'howard', u'embrac', u'stanc', u'water', u'control']
[u'chief', u'predict', u'logist', u'problem']
[u'injuri', u'concern', u'paceman', u'mill']
[u'inquest', u'begin', u'balibo', u'death']
[u'inquest', u'hear', u'balibo', u'death', u'wit']
[u'inquiri', u'find', u'wag', u'condit', u'fall']
[u'irrig', u'firm', u'get', u'coleamb', u'project']
[u'itali', u'signal', u'crackdown', u'hooligan']
[u'jakarta', u'flood', u'continu', u'wreak', u'havoc']
[u'jakarta', u'resid', u'abandon', u'home', u'hotel']
[u'market', u'remain', u'tight']
[u'johansson', u'battl', u'reclaim', u'spot']
[u'jovic', u'visa', u'extend', u'week']
[u'juri', u'select', u'patton', u'murder', u'trial']
[u'knackeri', u'worker', u'hospit', u'anthrax', u'outbreak']
[u'lake', u'brewster', u'divid', u'reduc', u'evapor']
[u'land', u'sale', u'expect', u'generat', u'investor']
[u'school', u'choos', u'teacher', u'report', u'say']
[u'letter', u'bomb', u'injur', u'woman', u'london', u'offic']
[u'liber', u'want', u'danger', u'dog', u'ban']
[u'lion', u'wait', u'brown', u'scan']
[u'loddon', u'shire', u'fast', u'track', u'work', u'scheme']
[u'long', u'term', u'effect', u'recycl', u'water']
[u'major', u'light', u'plane', u'wreckag', u'remain']
[u'malle', u'host', u'drought', u'expo']
[u'arrest', u'weekend', u'assault']
[u'catch', u'court', u'appli', u'bail']
[u'kill', u'caravan', u'identifi']
[u'court', u'sieg', u'stab']
[u'manufactur', u'industri', u'posit']
[u'win', u'asbesto', u'relat', u'claim']
[u'maryborough', u'face', u'water', u'restrict']
[u'mari', u'valley', u'resid', u'continu', u'fight']
[u'mear', u'zoom', u'titl']
[u'measur', u'take', u'prevent', u'repeat', u'blue', u'green']
[u'medal', u'tripl', u'treat', u'perfect', u'punter']
[u'meet', u'review', u'increas', u'need', u'engin']
[u'mehdi', u'armi', u'offici', u'kill', u'iraq', u'raid']
[u'militari', u'action', u'iran', u'destabilis', u'middl']
[u'miss', u'man', u'bodi', u'river', u'murray']
[u'earli', u'referendum', u'daylight', u'save']
[u'infrastructur', u'seek', u'west', u'iron']
[u'shark', u'spot', u'illawarra', u'beach']
[u'motorcyclist', u'die', u'cooma', u'crash']
[u'quit', u'shadow', u'cabinet', u'teen', u'text']
[u'say', u'public', u'drink', u'recycl', u'water']
[u'multiplex', u'consid', u'buyback', u'canadian', u'group']
[u'murray', u'darl', u'committe', u'seek', u'flexibl', u'feder']
[u'nation', u'park', u'blaze', u'burn', u'great', u'lake']
[u'nation', u'defend', u'donat', u'tobacco', u'compani']
[u'natur', u'resourc', u'board', u'fund', u'cut', u'repriev']
[u'nervous', u'want', u'qanta', u'sale', u'guarante']
[u'central', u'region', u'appoint', u'experi']
[u'chamber', u'chief', u'put', u'focus', u'trade', u'hour']
[u'nielsen', u'herald', u'start']
[u'nielsen', u'replac', u'buchanan']
[u'norfolk', u'murder', u'trial', u'underway']
[u'northern', u'town', u'hope', u'rain', u'lake', u'eyr']
[u'north', u'danger', u'miss', u'adelaid', u'clash']
[u'accept', u'water', u'control', u'plan']
[u'woman', u'die', u'chile', u'hostel']
[u'polic', u'search', u'miss', u'coupl']
[u'oyster', u'death', u'caus', u'remain', u'unknown']
[u'paintbal', u'plan', u'trigger', u'resid', u'concern']
[u'pest', u'control', u'forc', u'nation', u'park', u'closur']
[u'methan', u'generat', u'power']
[u'pilbara', u'quarantin', u'worker']
[u'consid', u'carbon', u'trade', u'rule']
[u'polic', u'believ', u'miss', u'teen', u'boyfriend']
[u'polic', u'investig', u'fatal', u'road', u'crash']
[u'polic', u'arrest', u'drug', u'oper']
[u'policeman', u'charg', u'mulrunji', u'death']
[u'policeman', u'charg', u'palm', u'island', u'death']
[u'policeman', u'charg', u'mulrunji', u'manslaught']
[u'polic', u'outrag', u'leak', u'palm', u'death', u'report']
[u'polic', u'search', u'murray', u'river']
[u'polit', u'open']
[u'port', u'chief', u'hop', u'establish', u'support']
[u'post', u'mortem', u'eatonsvill', u'bodi']
[u'potenti', u'juror', u'excus', u'patton']
[u'preschool', u'fee', u'pricey', u'parent', u'union']
[u'probe', u'continu', u'fatal', u'crash']
[u'qanta', u'consortium', u'wont', u'guarante', u'job']
[u'health', u'issu', u'melioidosi', u'warn']
[u'transport', u'employe', u'jail', u'rego', u'fraud']
[u'real', u'coach', u'lay', u'beck']
[u'recov', u'rocket', u'launcher', u'belong']
[u'rescuer', u'struggl', u'indonesian', u'flood']
[u'resid', u'assur', u'continu', u'access', u'sydney']
[u'resid', u'face', u'evacu', u'floodwat', u'rise']
[u'resid', u'march', u'wellington', u'weir', u'plan']
[u'resid', u'warn', u'vigil', u'ember']
[u'resourc', u'drag', u'market']
[u'resurfac', u'work', u'continu', u'problem', u'road']
[u'reveal', u'water', u'plan', u'cost', u'opposit', u'say']
[u'rudd', u'vanston']
[u'jail', u'assault', u'plot']
[u'search', u'steal', u'polic']
[u'secur', u'agreement', u'japan', u'design']
[u'shark', u'attack', u'prompt', u'safeti', u'messag']
[u'shopper', u'spend', u'decemb']
[u'sick', u'japanes', u'whaler', u'hospit', u'secur']
[u'slow', u'build', u'figur', u'rat', u'hold']
[u'snowi', u'mountain', u'blaze', u'like', u'reach']
[u'snowi', u'mountain', u'highway', u'reopen', u'burn']
[u'southern', u'inland', u'fruit', u'destin', u'germani']
[u'stop', u'free', u'bore']
[u'storm', u'caus', u'coupl', u'forget', u'win', u'lotto']
[u'storm', u'clean', u'take', u'prioriti', u'esper']
[u'student', u'stab', u'sydney', u'school']
[u'suppli', u'scrambl', u'expect', u'pipe']
[u'support', u'solar']
[u'talbot', u'face', u'court', u'corrupt', u'charg']
[u'task', u'forc', u'bolster', u'push']
[u'teen', u'grant', u'bail', u'sydney', u'school', u'stab']
[u'tiger', u'lose', u'coughlan', u'season']
[u'time', u'hick', u'charg', u'bastardri']
[u'time', u'hick', u'charg', u'bastardri', u'lawyer']
[u'toddler', u'die', u'trap']
[u'todd', u'river', u'regener', u'scheme']
[u'toilet', u'block', u'vandal', u'cost', u'thousand']
[u'total', u'place', u'victoria']
[u'train', u'catch', u'near', u'break', u'hill']
[u'trio', u'court', u'accus', u'hotel', u'extort']
[u'injur', u'light', u'plane', u'crash']
[u'author', u'continu', u'cull', u'bird', u'turkey']
[u'union', u'blame', u'beatti', u'mulrunji', u'case', u'review', u'leak']
[u'vote', u'church', u'demand', u'stem', u'cell']
[u'confirm', u'iraq', u'helicopt', u'shoot']
[u'militari', u'defend', u'hick', u'charg']
[u'prosecutor', u'defend', u'hick', u'charg']
[u'vaughan', u'return', u'boost', u'england', u'spirit']
[u'voter', u'remind', u'updat', u'enrol', u'detail']
[u'blaze', u'contain', u'crew', u'busi']
[u'declar', u'bushfir', u'emerg']
[u'crew', u'work', u'contain', u'dwellingup']
[u'firefight', u'battl', u'blaze']
[u'water', u'rise', u'central', u'victoria']
[u'weather', u'bureau', u'record', u'januari']
[u'windsor', u'question', u'process', u'determin', u'wheat']
[u'wineri', u'share', u'jump', u'takeov', u'review']
[u'wit', u'seek', u'die', u'bike', u'crash']
[u'wool', u'industri', u'meet', u'chines', u'processor', u'wool']
[u'world', u'star', u'withdraw', u'denmark', u'friend']
[u'yacht', u'upgrad', u'expect', u'boost', u'job']
[u'hour', u'free', u'park', u'trial', u'launceston']
[u'arrest', u'sunshin', u'coast', u'drug', u'blitz']
[u'aborigin', u'disadvantag', u'report']
[u'afford', u'school', u'fee']
[u'alkatiri', u'squad', u'investig', u'drop']
[u'archaeologist', u'search', u'remain', u'french']
[u'aust', u'assist', u'indonesian', u'flood', u'victim']
[u'author', u'believ', u'blaze', u'deliber']
[u'fear', u'law', u'compromis', u'worker']
[u'retir', u'report']
[u'bank', u'miner', u'push', u'market', u'record', u'high']
[u'beatl', u'appl', u'reach', u'trademark', u'deal']
[u'beatti', u'agre', u'surveil', u'remot', u'watch']
[u'bendigo', u'host', u'victorian', u'caucus']
[u'crowd', u'turn', u'polic', u'union', u'gather']
[u'billi', u'crystal', u'bring', u'comedi']
[u'blaze', u'destroy', u'hospit', u'cottag']
[u'bomber', u'take', u'star', u'light']
[u'brimbl', u'detect', u'defend', u'visit', u'ship', u'disco']
[u'build', u'delay', u'construct', u'sit', u'remain']
[u'bush', u'call', u'billion', u'fund']
[u'bushfir', u'season', u'extend', u'march']
[u'busi', u'urg', u'slash', u'water']
[u'busi', u'survey', u'back', u'rat', u'freez']
[u'california', u'skunk', u'go', u'home', u'long', u'trip']
[u'catchment', u'perman', u'break']
[u'qanta', u'safeti', u'probe']
[u'call', u'renew', u'energi']
[u'caravan', u'park', u'owner', u'order', u'stop', u'demolish', u'work']
[u'case', u'foster', u'weak', u'say', u'lawyer']
[u'chappel', u'get', u'extra', u'secur', u'assault']
[u'climatologist', u'highlight', u'declin', u'central']
[u'closer']
[u'closer']
[u'collingwood', u'england']
[u'collingwood', u'lift', u'england', u'past']
[u'commonwealth', u'push', u'democraci', u'fiji']
[u'communiti', u'feel', u'impact', u'cdep', u'chang']
[u'compani', u'investig', u'smelter', u'explos']
[u'complaint', u'polic', u'ball']
[u'cordingley', u'eye', u'red', u'return']
[u'coron', u'investig', u'teen', u'disappear']
[u'council', u'face', u'footbal', u'injuri', u'liabil', u'payment']
[u'council', u'green', u'light', u'north', u'cooranbong', u'rezon']
[u'councillor', u'question', u'bridg', u'deal', u'cost']
[u'councillor', u'suggest', u'quarter', u'newslett']
[u'council', u'put', u'focus', u'long', u'term', u'plan']
[u'council', u'work', u'better', u'town', u'camp', u'garbag']
[u'counsellor', u'warialda', u'school', u'fatal']
[u'court', u'reject', u'councillor', u'stop', u'sack']
[u'court', u'unabl', u'hear', u'rush', u'appeal', u'death']
[u'crew', u'burn', u'overnight', u'contain', u'blaze']
[u'cyclon', u'expect', u'intensifi', u'gulf', u'coast']
[u'cyclon', u'intensifi', u'coast']
[u'dairi', u'farmer', u'plead', u'milk', u'price', u'rise']
[u'debnam', u'pledg', u'surf', u'lifesav']
[u'defenc', u'employe', u'convict', u'illeg', u'travel']
[u'denmark', u'nurs', u'get', u'postgradu', u'scholarship']
[u'detect', u'give', u'evid', u'brimbl', u'inquest']
[u'dfat', u'abandon', u'businessman', u'strand', u'china']
[u'door', u'open', u'broom', u'station']
[u'investig', u'anthrax', u'case']
[u'driver', u'rescu', u'victim', u'fieri', u'crash']
[u'drought', u'deliv', u'inform', u'rural']
[u'drover', u'head', u'north', u'advantag', u'rain']
[u'dwellingup', u'resid', u'warn', u'strong', u'wind']
[u'effort', u'resurrect', u'chifley', u'engin', u'restor']
[u'elmurst', u'blaze', u'burn', u'month']
[u'england', u'dare', u'hope', u'black', u'cap']
[u'england', u'secur', u'final', u'berth']
[u'england', u'struggl', u'gabba']
[u'enrol', u'dictat', u'school', u'staff', u'chang']
[u'euro', u'hope', u'look', u'friend', u'boost']
[u'policeman', u'plead', u'guilti', u'fine', u'scam']
[u'farina', u'put', u'sydney']
[u'farm', u'group', u'reject', u'singl', u'desk']
[u'fear', u'lithgow', u'coal', u'compani', u'prepar', u'sell']
[u'feder', u'fund', u'allow', u'alic', u'airport', u'revamp']
[u'feder', u'fund', u'boost', u'mildura', u'medic', u'school']
[u'year', u'nation', u'servic']
[u'firefight', u'tri', u'contain', u'kosciuszko']
[u'fish', u'popul', u'reap', u'benefit', u'flood']
[u'minist', u'balibo', u'inquest', u'tell']
[u'forum', u'debat', u'pilbara', u'salt', u'plan']
[u'foster', u'custodi', u'fraud', u'relat', u'charg']
[u'foster', u'remand', u'custodi']
[u'foster', u'face', u'court', u'today']
[u'australian', u'british', u'open']
[u'gabba', u'clash', u'tens', u'final']
[u'giuliani', u'join', u'presidenti', u'race']
[u'govt', u'accus', u'back', u'school', u'road']
[u'govt', u'attack', u'earmark', u'nuclear', u'wast', u'sit']
[u'govt', u'give', u'art', u'centr']
[u'govt', u'green', u'light', u'northam', u'town', u'shire', u'merger']
[u'govt', u'rethink', u'decis', u'advocaci', u'servic']
[u'govt', u'pleas', u'murder', u'life', u'sentenc', u'appeal']
[u'govt', u'urg', u'lift', u'pension', u'rat', u'rebat']
[u'grain', u'grower', u'wheat', u'streak', u'virus', u'test']
[u'health', u'revamp', u'need', u'ensur', u'qualiti']
[u'hick', u'defenc', u'team', u'readi', u'septemb']
[u'hick', u'lawyer', u'readi', u'septemb']
[u'hick', u'trial', u'month', u'away']
[u'denier', u'like', u'support', u'court', u'hear']
[u'home', u'build', u'recov', u'say', u'industri', u'group']
[u'howard', u'clarifi', u'climat', u'chang', u'stanc']
[u'howard', u'criticis', u'handl', u'hick', u'case']
[u'howard', u'demand', u'tristar', u'come', u'clean', u'redund']
[u'howard', u'fail', u'eas', u'concern', u'hick']
[u'howard', u'ignor', u'climat', u'chang', u'green']
[u'hull', u'cast', u'doubt', u'independ', u'water', u'bodi']
[u'indian', u'polic', u'arrest', u'avert', u'terrorist', u'attack']
[u'indonesian', u'command', u'deni', u'involv', u'balibo']
[u'investig', u'begin', u'rayoni', u'suppli', u'deal']
[u'iranian', u'diplomat', u'kidnap', u'baghdad']
[u'jovic', u'refus', u'meet', u'immigr', u'offici']
[u'juri', u'select', u'norfolk', u'murder', u'trial']
[u'labor', u'start', u'year', u'ahead', u'poll']
[u'labor', u'surg', u'ahead', u'opinion', u'poll']
[u'landscap', u'group', u'seek', u'nation', u'wind', u'energi', u'code']
[u'trobe', u'region', u'campus', u'remain', u'open']
[u'maliss', u'take', u'delray', u'final']
[u'charg', u'hour', u'stand']
[u'market', u'determin', u'illawarra', u'green', u'energi']
[u'mcalpin', u'consid', u'contest', u'wannon']
[u'melbourn', u'woman', u'jail', u'bali', u'drug']
[u'charg', u'theft', u'shaft', u'ordeal']
[u'meninde', u'meet', u'hear', u'water', u'woe']
[u'mildura', u'juic', u'compani', u'product', u'return']
[u'milligan', u'back', u'butcher', u'knive', u'sharpen']
[u'milton', u'keep', u'paralymp', u'dream', u'aliv', u'wheel']
[u'minist', u'reject', u'petit', u'cairn', u'resort']
[u'mop', u'begin', u'wake', u'dwellingup']
[u'home', u'buyer', u'expect', u'region']
[u'land', u'clear', u'claim', u'surfac', u'agn', u'water']
[u'reliabl', u'power', u'plan', u'morawa']
[u'mosquito', u'bear', u'fever', u'spread', u'kenya']
[u'motorcyclist', u'die', u'collid']
[u'offer', u'wyong', u'environment', u'assur']
[u'push', u'daylight', u'save', u'referendum']
[u'push', u'stage', u'oxley', u'highway']
[u'conserv', u'respons', u'statehood']
[u'green', u'year', u'question', u'time']
[u'mundubbera', u'water', u'suppli', u'run']
[u'nation', u'park', u'bushfir', u'emerg', u'warn', u'expect']
[u'nation', u'seek', u'incent', u'northern']
[u'need', u'year', u'report']
[u'rape', u'law', u'victim', u'greater', u'protect']
[u'scheme', u'use', u'footbal', u'help', u'indigen']
[u'zealand', u'commemor', u'waitangi']
[u'charg', u'expect', u'griffith', u'slay']
[u'noosa', u'cooloola', u'council', u'expect', u'sign']
[u'northern', u'tableland', u'host', u'elect', u'forum']
[u'thing', u'friend', u'arnold']
[u'resid', u'prepar', u'cyclon', u'nelson']
[u'chase', u'solid', u'start']
[u'offshor', u'qanta', u'mainten', u'disast']
[u'older', u'mum', u'birth', u'generat', u'say']
[u'thai', u'airport', u'reopen']
[u'olymp', u'kayak', u'court', u'drug', u'charg']
[u'pair', u'face', u'charg', u'gun', u'oper']
[u'pair', u'surviv', u'truck', u'crash']
[u'parent', u'plead', u'german', u'bear', u'deport']
[u'patti', u'food', u'record', u'earn', u'loss']
[u'acknowledg', u'mood', u'chang', u'hick']
[u'clarifi', u'climat', u'chang', u'stanc']
[u'polic', u'steal', u'bank', u'robberi']
[u'polic', u'investig', u'bodi', u'mishandl', u'claim']
[u'polic', u'investig', u'stab', u'death']
[u'polic', u'issu', u'watch', u'hous', u'upgrad', u'ultimatum']
[u'polic', u'number', u'build', u'prepar', u'cyclon']
[u'polic', u'search', u'raid', u'driver']
[u'polic', u'troubl', u'grow', u'miss', u'person', u'list']
[u'polic', u'tri', u'contact', u'plane', u'crash', u'pilot']
[u'polic', u'hoon', u'law', u'impound']
[u'polic', u'question', u'driver', u'crash']
[u'porter', u'name', u'basketbal', u'year']
[u'tell', u'seal', u'brimbl', u'cabin', u'inquest', u'hear']
[u'primari', u'health', u'care', u'record', u'month', u'profit']
[u'probe', u'continu', u'fatal', u'boat', u'mishap']
[u'psychiatrist', u'deni', u'bail', u'court', u'scare']
[u'public', u'warn', u'avoid', u'diseas', u'carri', u'bat']
[u'reopen', u'mount', u'townsvill', u'line']
[u'rabobank', u'focus', u'corpor', u'social', u'respons']
[u'rat', u'tip', u'stay', u'hold']
[u'record', u'fatal', u'iraq', u'friend', u'incid']
[u'recycl', u'water', u'decis', u'prompt', u'smaller']
[u'relief', u'lion', u'brown', u'get', u'clear']
[u'report', u'loom', u'councillor', u'number', u'review']
[u'research', u'highlight', u'insecticid', u'impact', u'coral']
[u'resid', u'abl', u'track', u'whitsunday', u'develop']
[u'resid', u'protest', u'sandon', u'land']
[u'kill', u'prompt', u'nation', u'park', u'secur', u'boost']
[u'rose', u'blackmail', u'case', u'move', u'district', u'court']
[u'rspca', u'seiz', u'greyhound', u'ipswich', u'properti']
[u'ruddock', u'say', u'civil', u'partnership']
[u'rudd', u'play', u'poll', u'lead']
[u'water', u'catchment', u'record', u'low', u'say', u'minist']
[u'segu', u'pay', u'uranium', u'claim', u'despit', u'court', u'case']
[u'shire', u'associ', u'hop', u'govt', u'sign']
[u'ski', u'day', u'number', u'confer', u'tell']
[u'korean', u'abandon', u'govt', u'parti']
[u'tower', u'project', u'cost']
[u'stalem', u'softwood', u'process', u'plan']
[u'stoner', u'hop', u'revers', u'water', u'claim', u'damag']
[u'studi', u'reveal', u'calder', u'highway', u'danger']
[u'sydney', u'ban', u'stem', u'cell', u'research']
[u'task', u'forc', u'make', u'progress', u'irrig']
[u'releas', u'biosecur', u'plan']
[u'teen', u'hospit', u'plater', u'crash']
[u'tender', u'call', u'hotel', u'servic', u'karijini']
[u'territori', u'govt', u'urg', u'start', u'treat', u'nurs']
[u'test', u'reveal', u'power', u'equip', u'caus', u'dead']
[u'tokyo', u'shoot', u'prompt', u'turf', u'fear']
[u'tourism', u'group', u'look', u'boost', u'peak', u'tourist']
[u'tourism', u'spotlight', u'shin', u'nativ', u'anim']
[u'tourist', u'flock', u'aust', u'record', u'number']
[u'transport', u'feder', u'air', u'fear', u'greek', u'ship']
[u'trio', u'court', u'snowi', u'drug', u'bust']
[u'tropic', u'cyclon', u'nelson', u'loom', u'gulf']
[u'hurt', u'packag', u'explod', u'offic']
[u'ump', u'stump', u'microphon']
[u'chief', u'call', u'east', u'timor', u'extens']
[u'global', u'warm', u'report', u'fall', u'deaf', u'chines', u'ear']
[u'union', u'qanta', u'worker', u'fear', u'job']
[u'stem', u'cell', u'undermin', u'research', u'freedom']
[u'univers', u'defend', u'bodi', u'part', u'action']
[u'astronaut', u'charg', u'tri', u'kidnap', u'love']
[u'coerc', u'evid', u'possibl', u'hick', u'trial']
[u'japan', u'press', u'north', u'korea', u'abduct']
[u'mine', u'bodi', u'unhappi', u'uncertain', u'nativ', u'titl']
[u'water', u'recycl', u'natur']
[u'watson', u'forc', u'final']
[u'western', u'council', u'seek', u'drought']
[u'wollongong', u'tri', u'councillor']
[u'woman', u'guilt', u'yard', u'fight', u'death']
[u'woman', u'question', u'perth', u'high', u'speed', u'chase']
[u'work', u'begin', u'save', u'drought', u'tree']
[u'kill', u'attack', u'mexican', u'govt', u'offic']
[u'announc', u'digit', u'media', u'strategi']
[u'aborigin', u'communiti', u'polic', u'offic', u'alic']
[u'advoc', u'say', u'mackay', u'renter', u'seek', u'flood', u'compo']
[u'aeropelican', u'move', u'secur', u'tamworth', u'servic']
[u'anthrax', u'discov', u'tatura', u'farm']
[u'anti', u'log', u'group', u'strike', u'nation', u'prefer']
[u'appl', u'urg', u'record', u'compani', u'onlin']
[u'arnold', u'unconcern', u'klinsmann', u'takeov', u'talk']
[u'allianc', u'hop', u'educ', u'market']
[u'astronaut', u'grant', u'bail', u'alleg', u'murder', u'plot']
[u'crack', u'investor', u'break']
[u'aussi', u'walsham', u'win', u'empir', u'state', u'race']
[u'aust', u'accus', u'solomon', u'murder', u'plot', u'get', u'bail']
[u'australian', u'agricultur', u'post', u'profit']
[u'australian', u'skier', u'die', u'kashmir', u'avalanch']
[u'aust', u'technic', u'colleg', u'inveresk']
[u'ax', u'tait', u'receiv', u'boost', u'pont']
[u'balibo', u'death', u'inquest', u'hear', u'conflict', u'evid']
[u'barg', u'crew', u'rescu', u'batter', u'cyclon']
[u'review', u'climat', u'chang', u'polici']
[u'bicycl', u'truck', u'crash', u'leav', u'woman', u'hospit']
[u'bligh', u'reject', u'anti', u'report']
[u'blue', u'bowl']
[u'bolling', u'sign', u'worcestershir']
[u'boost', u'doctor', u'number', u'gradual', u'process']
[u'boral', u'profit']
[u'boswel', u'attack', u'grain', u'council', u'export']
[u'brack', u'inspect', u'deliveri', u'pump', u'station', u'pip']
[u'brigitt', u'trial', u'alleg', u'aust', u'terror', u'plot']
[u'brigitt', u'trial', u'terror', u'charg']
[u'bronco', u'promot', u'tour', u'gympi']
[u'brown', u'urg', u'nation', u'qanta', u'inquiri']
[u'build', u'bushfir']
[u'busway', u'reject', u'safeti', u'claim']
[u'butcher', u'ax', u'sydney', u'report']
[u'calder', u'rock', u'blast', u'disrupt', u'road', u'rail']
[u'drought', u'includ', u'council', u'rat']
[u'hospit', u'manag', u'power']
[u'indigen', u'voter', u'land']
[u'carbon', u'trade', u'paper', u'releas']
[u'carbon', u'trade', u'scheme', u'consid']
[u'carbon', u'trade', u'scheme', u'consid', u'report']
[u'choic', u'rais', u'concern', u'weight', u'loss', u'drug']
[u'closer']
[u'closerpm', u'nodisplay']
[u'defend', u'decis', u'join', u'yarriambiack']
[u'coerc', u'evid', u'possibl', u'hick', u'trial', u'ruddock']
[u'colli', u'jail', u'polic', u'stab']
[u'compani', u'accus', u'forc', u'filipino', u'worker']
[u'consult', u'continu', u'child', u'protect', u'law']
[u'contamin', u'fear', u'spark', u'stop', u'lake', u'bonney']
[u'coron', u'recommend', u'review', u'region', u'blood']
[u'councillor', u'tour', u'site', u'propos', u'wind', u'farm']
[u'councillor', u'urg', u'feder', u'govt', u'monitor', u'recycl']
[u'council', u'quiz', u'politician', u'casino']
[u'crossin', u'question', u'alic', u'airport', u'revamp', u'delay']
[u'get', u'teacher', u'address', u'shortag']
[u'cyclon', u'caus', u'havoc']
[u'cyclon', u'nelson', u'bring', u'rain', u'littl', u'damag']
[u'cyclon', u'nelson', u'cross', u'coast']
[u'cyclon', u'nelson', u'expect', u'caus', u'flood']
[u'cyclon', u'nelson', u'weaken', u'coast']
[u'darl', u'down', u'launch', u'pregnanc', u'care']
[u'democrat', u'push', u'feder', u'investig']
[u'denmark', u'council', u'drop', u'indoor', u'swim', u'pool', u'idea']
[u'dept', u'warn', u'coolgardi', u'flare']
[u'detect', u'accus', u'botch', u'brimbl', u'investig']
[u'detect', u'defend', u'brimbl', u'investig', u'inquest']
[u'detect', u'quiz', u'brimbl', u'inquest']
[u'develop', u'tell', u'alter', u'supermarket', u'plan']
[u'diver', u'salvag', u'plane', u'fatal', u'kingscliff', u'crash']
[u'receiv', u'document', u'hasten', u'patel']
[u'educ', u'chang', u'year', u'late', u'say', u'labor']
[u'elect', u'ralli', u'begin', u'timor']
[u'england', u'brim', u'confid']
[u'england', u'broad', u'final']
[u'england', u'sweat', u'vaughan', u'seri', u'final']
[u'exist', u'clean', u'technolog', u'reduc']
[u'factori', u'caus', u'damag']
[u'falconio', u'killer', u'take', u'appeal', u'high', u'court']
[u'farmer', u'grow', u'wheat', u'varieti']
[u'fear', u'lightn', u'strike', u'caus', u'fire']
[u'feder', u'singl', u'desk', u'decis', u'anger', u'farmer']
[u'ferrari', u'parad', u'boss', u'reject', u'hoon', u'claim']
[u'fisheri', u'assess', u'esper', u'storm', u'recoveri']
[u'highlight', u'pilbara', u'skill', u'shortag', u'problem']
[u'manufactur', u'warn', u'ballarat', u'sack', u'possibl']
[u'food', u'riverland', u'launch', u'market', u'tool']
[u'footbal', u'club', u'intrud', u'alarm', u'bell', u'ring']
[u'forum', u'back', u'work', u'meninde', u'lake', u'infrastructur']
[u'fraud', u'charg', u'drop', u'perth']
[u'girl', u'hospit', u'attack', u'bull', u'mastiff']
[u'govt', u'accus', u'discrimin']
[u'govt', u'fend', u'smart', u'card', u'rebellion']
[u'govt', u'fund', u'black', u'spot', u'improv']
[u'govt', u'give', u'green', u'light', u'hospit', u'upgrad']
[u'govt', u'readi', u'decid', u'johnston', u'shire', u'council']
[u'govt', u'urg', u'ulladulla', u'harbour', u'redevelop']
[u'grain', u'council', u'wont', u'offer', u'wheat', u'export', u'model']
[u'great', u'divid', u'fire', u'contain', u'day']
[u'green', u'group', u'industri', u'question', u'carbon', u'trade']
[u'green', u'defeat', u'push', u'qanta', u'sale', u'inquiri']
[u'green', u'seek', u'inquiri', u'latest', u'racecours']
[u'green', u'urg', u'polit', u'donat', u'open']
[u'group', u'research', u'goldfield', u'juvenil', u'justic']
[u'group', u'urg', u'smart', u'card', u'curb', u'problem', u'gambl']
[u'hardi', u'sharehold', u'agre', u'compens', u'deal']
[u'hewitt', u'undaunt', u'belgian', u'challeng']
[u'say', u'mortgag', u'default', u'rare']
[u'hick', u'traitor']
[u'high', u'hop', u'contain', u'kosciuszko']
[u'holden', u'announc', u'export', u'deal']
[u'home', u'town', u'cast', u'gilchrist', u'bronz']
[u'huge', u'mart', u'class', u'action', u'get', u'ahead']
[u'rule', u'boost', u'injur', u'symond']
[u'illawarra', u'charg', u'rail', u'vandal']
[u'indonesian', u'court', u'reject', u'embassi', u'bomber', u'appeal']
[u'industri', u'carbon', u'trade', u'input']
[u'industri', u'urg', u'global', u'oper', u'carbon']
[u'inpex', u'forg', u'link', u'djarindjin', u'communiti']
[u'iranian', u'diplomat', u'kidnap', u'baghdad']
[u'italian', u'buyer', u'expect', u'spend']
[u'katter', u'urg', u'govt', u'reopen', u'flood', u'road']
[u'keelti', u'back', u'smart', u'card', u'fraud', u'battl']
[u'keelti', u'critic', u'solomon', u'plan', u'rearm', u'forc']
[u'keith', u'urban', u'sue', u'keith', u'urban', u'websit']
[u'kernahan', u'line', u'blue', u'presid']
[u'kimberley', u'toad', u'buster', u'celebr', u'lower', u'toad', u'number']
[u'labor', u'pounc', u'climat', u'chang', u'gaff']
[u'labour', u'agreement', u'boost', u'foreign', u'worker', u'protect']
[u'latrob', u'councillor', u'resign', u'forc', u'elect']
[u'leak', u'cylind', u'forc', u'evacu']
[u'leeton', u'council', u'urg', u'consid', u'formal', u'water', u'ban']
[u'lehmann', u'tait', u'bolster', u'redback', u'arsenal']
[u'liber', u'back', u'earli', u'daylight', u'save']
[u'liber', u'senat', u'back', u'civil', u'partnership']
[u'lion', u'keep', u'neighbour']
[u'longreach', u'polic', u'hurley']
[u'manag', u'plan', u'recognis', u'dingo', u'cultur']
[u'jail', u'crash', u'kill', u'mate']
[u'mark', u'scott', u'releas', u'restructur']
[u'mclean', u'defend', u'bomber', u'star', u'snub']
[u'meet', u'hear', u'claim', u'abalon', u'virus', u'inact']
[u'mine', u'sector', u'push', u'market', u'higher']
[u'minist', u'push', u'school', u'princip', u'autonomi']
[u'miriam', u'vale', u'shire', u'lower', u'water', u'pressur', u'save']
[u'mother', u'reliev', u'patton', u'murder', u'trial']
[u'mountain', u'biker', u'fear', u'loss', u'access']
[u'kelli', u'face', u'question', u'wear', u'australian']
[u'reject', u'attack', u'workchoic']
[u'gambier', u'shift', u'base']
[u'natimuk', u'farmer', u'market', u'get', u'council']
[u'nation', u'issu', u'fast', u'rail', u'challeng', u'govt']
[u'nepal', u'maoist', u'demand', u'abolit', u'monarchi']
[u'author', u'settl', u'council', u'stormwat', u'drain']
[u'polic', u'station', u'open', u'dampier', u'peninsula']
[u'zealand', u'enter', u'wnbl']
[u'north', u'ban', u'adelaid', u'clash']
[u'blaze', u'break', u'contain', u'line']
[u'opposit', u'gather', u'council', u'desal']
[u'ozzi', u'osbourn', u'unveil', u'plan', u'free', u'music', u'festiv']
[u'pair', u'charg', u'mount', u'morgan', u'rape']
[u'pakistan', u'get', u'clearanc', u'replac']
[u'palestinian', u'crisi', u'summit', u'open', u'mecca']
[u'parti', u'trade', u'barb', u'green', u'credenti']
[u'polic', u'associ', u'unhappi', u'situat']
[u'polic', u'clear', u'aurukun', u'assault', u'claim']
[u'polic', u'probe', u'shepparton', u'nightclub', u'blaze']
[u'polic', u'union', u'threaten', u'escal', u'staff', u'disput']
[u'polit', u'wrangl', u'continu', u'climat', u'chang']
[u'pol', u'midopen']
[u'port', u'author', u'chief', u'see', u'bright', u'futur']
[u'portug', u'humbl', u'brazil', u'friend']
[u'prosecut', u'tell', u'court', u'patton', u'die']
[u'qanta', u'buyer', u'urg', u'maintain', u'travel', u'rout']
[u'back', u'farm', u'climat', u'chang', u'push']
[u'cotton', u'blame', u'drought', u'expect', u'profit', u'slump']
[u'raider', u'visit', u'south', u'west', u'school']
[u'rain', u'interrupt', u'dalrympl', u'coal', u'suppli']
[u'rat', u'stay', u'hold']
[u'keep', u'rat', u'hold']
[u'redund', u'option', u'tafe', u'job', u'govt', u'say']
[u'reinvent', u'wheel']
[u'report', u'find', u'fatal', u'level', u'cross', u'crash', u'avoid']
[u'report', u'suggest', u'carbon', u'trade', u'consid']
[u'resid', u'oppos', u'trale', u'hous', u'plan', u'airport', u'say']
[u'ronchi', u'demolish', u'hapless', u'blue']
[u'roster', u'visit', u'dentist', u'seek', u'ensur']
[u'ruddock', u'question', u'statehood', u'push']
[u'safework', u'probe', u'zinifex', u'smelter', u'steam', u'blast']
[u'govt', u'oppos', u'oversea', u'blood', u'plasma', u'competit']
[u'sarwan', u'week', u'hand', u'injuri']
[u'scott', u'restructur']
[u'seeney', u'eject', u'parliament']
[u'shop', u'centr', u'plan', u'power', u'station', u'site']
[u'singer', u'franki', u'lain', u'die']
[u'smartcard', u'good', u'thing']
[u'smart', u'card', u'law', u'parliament']
[u'smart', u'card', u'legisl', u'parliament']
[u'solar', u'power', u'scientist', u'lower', u'energi', u'price']
[u'time', u'water']
[u'sunshin', u'coast', u'studi', u'crime', u'aim', u'senior']
[u'survey', u'normal', u'govt', u'procedur', u'say', u'minist']
[u'sydney', u'research', u'test', u'miracl', u'mushroom']
[u'teacher', u'death', u'fire', u'avoid']
[u'threat', u'eas', u'bushfir', u'fight']
[u'titan', u'target', u'northern', u'river']
[u'tiwi', u'plantat', u'protest', u'ralli']
[u'tourist', u'hurt', u'truck', u'crash']
[u'townsvill', u'charg', u'drug', u'traffic']
[u'treadlight', u'emiss']
[u'truck', u'driver', u'jail', u'fatal', u'ipswich', u'motorway']
[u'deal', u'wont', u'fan', u'crow']
[u'union', u'rais', u'secur', u'concern', u'youth']
[u'unit', u'monitor', u'injur', u'player']
[u'unlicens', u'serial', u'drink', u'driver', u'jail', u'fatal']
[u'astronaut', u'murder', u'charg']
[u'compani', u'reach', u'agreement', u'indonesia']
[u'promot', u'democraci']
[u'hospit', u'amid', u'bird', u'outbreak']
[u'brief', u'farmer', u'plan', u'fertilis', u'ban']
[u'victori', u'claim', u'fit', u'edg', u'final']
[u'video', u'friend', u'unleash', u'storm']
[u'virtual']
[u'virus', u'expect', u'cost', u'abalon', u'industri']
[u'countri', u'school', u'begin', u'teacher', u'gap']
[u'wada', u'appeal', u'decis', u'clear', u'pakistan']
[u'wagga', u'toddler', u'hurt', u'metr', u'fall']
[u'watson', u'eye', u'hayden', u'open', u'spot']
[u'western', u'power', u'tell', u'danger', u'power', u'line']
[u'whitsunday', u'council', u'prosecut', u'landown']
[u'woman', u'hurt', u'explos', u'vehicl', u'agenc']
[u'work', u'start', u'soon', u'yeoval', u'bore']
[u'abbott', u'probe', u'generic', u'drug', u'withhold', u'claim']
[u'gain', u'rare', u'look', u'insid', u'guantanamo']
[u'actor', u'ryan', u'oneal', u'trade', u'charg', u'brawl']
[u'actu', u'warn', u'qanta', u'staff', u'takeov']
[u'resolv', u'broadcast', u'right', u'deal']
[u'hold', u'lead', u'ladi', u'master']
[u'name', u'dubbo', u'candid']
[u'andrew', u'say', u'rudd', u'threaten', u'capit']
[u'anthrax', u'farm']
[u'asbesto', u'victim', u'widow', u'back', u'compo', u'packag']
[u'atkinson', u'offer', u'condit', u'support', u'indigen']
[u'aust', u'leader', u'gather', u'murray', u'darl', u'showdown']
[u'australia', u'moral', u'respons', u'lead']
[u'author', u'clean', u'dwellingup', u'blaze', u'contain']
[u'ballarat', u'feel', u'impact', u'water', u'evapor']
[u'crowd', u'air', u'opposit', u'jetti', u'area', u'plan']
[u'billion', u'dollar', u'black', u'hole', u'water', u'plan']
[u'blaze', u'destroy', u'ambul', u'servic', u'record']
[u'blue', u'green', u'alga', u'spark', u'lake', u'ainsworth', u'swim', u'warn']
[u'botnet', u'attack', u'fail', u'bring', u'internet']
[u'bow', u'announc', u'race', u'retir']
[u'breaker', u'thrash', u'lowli', u'razorback']
[u'brigitt', u'give', u'respons', u'terror', u'charg']
[u'brigitt', u'refus', u'testifi', u'terror', u'trial']
[u'brimbl', u'death', u'expos', u'lacklustr', u'secur', u'say']
[u'builder', u'interest', u'karratha', u'land', u'avail']
[u'build', u'approv', u'grow', u'central']
[u'bullet', u'equal', u'record']
[u'busi', u'leader', u'stress', u'rapid', u'transit']
[u'call', u'denmark', u'manjimup', u'resid', u'join', u'work']
[u'bomb', u'kill', u'baghdad']
[u'cattlemen', u'concern', u'stuart', u'highway', u'cyanid']
[u'cautious', u'welcom', u'plan', u'boost', u'rural', u'doctor']
[u'cell', u'watch', u'back', u'push', u'better', u'watch', u'hous']
[u'ceremoni', u'mark', u'reopen', u'polic', u'memori', u'garden']
[u'china', u'crack', u'poison', u'mascot']
[u'china', u'intern', u'hospit', u'brawl']
[u'clean', u'plan', u'mangrov']
[u'closer']
[u'closerpm', u'nodisplay']
[u'club', u'countri', u'loom', u'olyroo']
[u'communiti', u'group', u'urg', u'seek', u'envirofund', u'grant']
[u'compromis', u'unlik', u'mountain', u'bike', u'track', u'disput']
[u'concern', u'rais', u'weight', u'loss', u'drug']
[u'connex', u'say', u'train', u'problem', u'solv']
[u'contract', u'concern', u'forc', u'sugarcan', u'grower']
[u'coron', u'find', u'crash', u'victim', u'wouldv', u'better']
[u'costello', u'reject', u'water', u'fund', u'black', u'hole', u'claim']
[u'council', u'tell', u'politician', u'need', u'fund']
[u'court', u'martial', u'armi', u'objector', u'end', u'mistrial']
[u'crew', u'work', u'restor', u'power', u'flame', u'tree', u'creek']
[u'custom', u'seiz', u'stun', u'gun']
[u'cyanid', u'spill', u'investig']
[u'damag', u'yacht', u'tow', u'shore']
[u'decis', u'alkatiri', u'charg', u'draw', u'anger']
[u'digit', u'problem']
[u'doubt', u'rais', u'plant', u'consult']
[u'dougla', u'shire', u'deputi', u'mayor', u'cast', u'doubt', u'sack']
[u'dutch', u'pile', u'miseri', u'homecom', u'hiddink']
[u'england', u'boo', u'spain', u'trafford']
[u'farmer', u'hamper', u'caroona', u'basin', u'coal', u'explor']
[u'fatal', u'boat', u'accid', u'prompt', u'water', u'safeti', u'warn']
[u'father', u'give', u'evid', u'patton', u'murder', u'trial']
[u'fesa', u'beat', u'west', u'firefight', u'capabl']
[u'affect', u'resid', u'expect', u'seek']
[u'affect', u'south', u'west', u'get', u'financi']
[u'destroy', u'ganmain', u'craft']
[u'charg', u'alleg', u'iraq', u'contract', u'scam']
[u'forestri', u'investor', u'break', u'question']
[u'iraqi', u'diplomat', u'seek', u'stay', u'aust']
[u'rebel', u'governor', u'aceh']
[u'foster', u'deni', u'bail', u'brisban']
[u'french', u'celebr', u'vic', u'team', u'sprint']
[u'french', u'decid', u'landi']
[u'funer', u'today', u'boot', u'death', u'victim']
[u'garrett', u'comment', u'put', u'economi', u'risk']
[u'girl', u'succumb', u'injuri']
[u'govt', u'seek', u'advic', u'son', u'gwalia', u'ramif']
[u'govt', u'investig', u'generic', u'drug', u'suppli']
[u'grain', u'council', u'criticis', u'lack', u'leadership']
[u'green', u'light', u'give', u'dive', u'wreck', u'creation']
[u'grower', u'see', u'benefit', u'manag', u'invest', u'scheme']
[u'guantanamo', u'chief', u'label', u'hick', u'danger', u'terrorist']
[u'guantanamo', u'detaine', u'abus', u'militari', u'probe']
[u'gunn', u'chief', u'seek', u'assur', u'provid', u'pulp']
[u'hair', u'racial', u'discrimin']
[u'harbour', u'foreshor', u'revamp', u'need', u'privat', u'sector']
[u'hardi', u'agre', u'landmark', u'compens', u'deal']
[u'hardi', u'compens', u'deal', u'strike']
[u'hardi', u'sharehold', u'agre', u'compens', u'deal']
[u'hardi', u'sharehold', u'vote', u'favour', u'compens']
[u'health', u'servic', u'council', u'meet', u'advisori', u'bodi']
[u'hickss', u'lawyer', u'blast', u'secur', u'threat', u'comment']
[u'histor', u'qanta', u'plane', u'longreach']
[u'holden', u'export', u'deal', u'good', u'news', u'worker', u'deputi']
[u'holden', u'seal', u'export', u'deal']
[u'hospit', u'know', u'sterilis', u'blunder', u'month']
[u'hospit', u'upgrad', u'long', u'overdu', u'say', u'mayor']
[u'hous', u'associ', u'see', u'benefit', u'link']
[u'howard', u'applaud', u'jam', u'hardi', u'compens', u'deal']
[u'howard', u'optimist', u'murray', u'darl', u'deal']
[u'dismiss', u'hair', u'racial', u'claim']
[u'independ', u'candid', u'consid', u'loos', u'allianc']
[u'india', u'play', u'australia', u'seri']
[u'indonesian', u'ferri', u'captain', u'question']
[u'ineffect', u'johnston', u'shire', u'council', u'sack']
[u'inquiri', u'investig', u'illicit', u'drug', u'effect']
[u'iran', u'vow', u'target', u'interest', u'attack']
[u'irrig', u'worri', u'water', u'access', u'river', u'level']
[u'islam', u'associ', u'deni', u'claim', u'hilali', u'pension']
[u'itali', u'approv', u'tough', u'plan', u'match', u'resum']
[u'jakarta', u'flood', u'reced', u'refuge', u'return', u'home']
[u'januari', u'job', u'figur']
[u'johansson', u'return', u'red', u'start', u'line']
[u'kelli', u'critic', u'beam', u'say']
[u'kidman', u'paparazzi', u'case', u'adjourn']
[u'kidsaf', u'warn', u'parent', u'girl', u'fall']
[u'land', u'associ', u'oppos', u'hous', u'develop']
[u'land', u'council', u'highlight', u'high', u'cost', u'nativ', u'titl']
[u'landi', u'dope', u'hear', u'adjourn', u'franc']
[u'langer', u'challeng', u'ronchi', u'build', u'blister']
[u'larkham', u'boost', u'brumbi', u'dose', u'blue']
[u'launceston', u'wool', u'auction', u'fail', u'deliv', u'high']
[u'leader', u'talk', u'murray', u'darl', u'futur']
[u'lebanon', u'israel', u'armi', u'clash', u'border', u'hurt']
[u'lightn', u'strike', u'properti', u'overnight', u'storm']
[u'lukewarm', u'respons', u'holbrook', u'culcairn']
[u'luxuri', u'toilet', u'modern', u'king', u'queen']
[u'magistr', u'refus', u'media', u'shame', u'alleg']
[u'arrest', u'alleg', u'fatal', u'poison']
[u'jail', u'month', u'abalon', u'offenc']
[u'market', u'flatten', u'bank', u'mine', u'loss']
[u'mayor', u'back', u'govt', u'plan', u'reconsid', u'murray']
[u'medicin', u'aust', u'dismiss', u'drug', u'withhold', u'claim']
[u'medic', u'monitor', u'crew', u'clean', u'cyanid', u'spill']
[u'mexico', u'guilti', u'tortur', u'legal', u'right', u'abus']
[u'milligan', u'call', u'butcher', u'confirm']
[u'miner', u'begin', u'work', u'gwalia', u'deep', u'site']
[u'mortlock', u'doubt', u'face', u'blue']
[u'monitor', u'disappear', u'phone']
[u'nasa', u'review', u'screen', u'procedur', u'astronaut']
[u'nation', u'censur', u'apolog', u'prostitut']
[u'nation', u'push', u'water', u'storag']
[u'nation', u'urg', u'govt', u'reject', u'super', u'pipe', u'fund']
[u'nativ', u'titl', u'group', u'compani', u'sign', u'heritag', u'deal']
[u'natoli', u'back', u'compromis', u'mooloolaba', u'spit', u'draft']
[u'nevill', u'hit', u'jeer', u'england', u'fan']
[u'lobbi', u'group', u'repres', u'tweed', u'coast', u'resid']
[u'disappoint', u'exclus', u'carbon', u'trade']
[u'korea', u'demand', u'hostil', u'polici']
[u'deal', u'reach', u'murray', u'darl', u'talk']
[u'heavi', u'rain', u'expect', u'cyclon', u'nelson']
[u'loss', u'expect', u'patrick', u'oper']
[u'mainten', u'fund', u'plan', u'floodway']
[u'northern', u'tableland', u'candid', u'attend', u'forum']
[u'jail', u'compani', u'fraud']
[u'olyroo', u'hammer', u'taiwan', u'olymp', u'qualifi']
[u'opposit', u'consid', u'compo', u'irrig']
[u'opposit', u'say', u'crime', u'victim', u'deni', u'compens']
[u'optus', u'say', u'cap', u'plan', u'profit', u'plung']
[u'organis', u'hope', u'canberra', u'floriad', u'popular']
[u'pair', u'face', u'court', u'home', u'invas']
[u'palestinian', u'deadlin', u'mecca', u'accord']
[u'paroo', u'shire', u'plead', u'perman', u'cunnamulla']
[u'patient', u'offer', u'test', u'hospit', u'infect']
[u'pelican', u'recov', u'shoot', u'arrow']
[u'perth', u'offic', u'vacanc', u'fall']
[u'philippin', u'lift', u'mine', u'aust', u'firm']
[u'optimist', u'murray', u'darl', u'deal']
[u'beat', u'water', u'control', u'plan']
[u'polic', u'investig', u'high', u'school']
[u'polic', u'search', u'wollongong', u'home', u'deton']
[u'pont', u'shrug', u'england', u'mind', u'game']
[u'port', u'author', u'reject', u'claim', u'coal', u'dust']
[u'power', u'generat', u'urg', u'prepar', u'carbon']
[u'prais', u'give', u'studi', u'doctor', u'work', u'hour']
[u'problem', u'surfac', u'ahead', u'murray', u'darl', u'talk']
[u'push', u'continu', u'chopper', u'flight']
[u'push', u'orang', u'council', u'consid', u'silt']
[u'qanta', u'record', u'half', u'year', u'profit']
[u'inspect', u'rail', u'line', u'flood']
[u'record', u'number', u'graduat', u'nurs', u'hospit']
[u'repair', u'flood', u'damag', u'road']
[u'resid', u'prioriti', u'creek', u'clean']
[u'resid', u'reliev', u'generat', u'decis']
[u'retir', u'packag', u'seek', u'hilali']
[u'roma', u'saleyard', u'withdraw', u'market']
[u'sadr', u'ministeri', u'alli', u'arrest', u'raid']
[u'sale', u'save', u'centr', u'job']
[u'alert', u'coli', u'outbreak']
[u'parliament', u'rememb', u'deputi', u'premier']
[u'saviola', u'magic', u'hand', u'argentina', u'franc']
[u'senat', u'inquiri', u'call', u'fund', u'boost']
[u'senat', u'inquiri', u'disabl', u'servic']
[u'senat', u'inquiri', u'resid', u'traveston']
[u'shop', u'centr', u'propon', u'awar', u'rival', u'plan']
[u'simplot', u'report', u'drop', u'product']
[u'snow', u'caus', u'transport', u'chao', u'britain']
[u'soldier', u'fire', u'hous', u'shelter', u'balibo']
[u'spencer', u'gulf', u'ferri', u'expect', u'real', u'estat']
[u'state', u'keep', u'school', u'data', u'secret', u'bishop', u'say']
[u'storm', u'batter', u'scone', u'build']
[u'sydney', u'confirm', u'butcher', u'sack']
[u'sydney', u'confirm', u'butcher', u'sack']
[u'sydney', u'plead', u'guilti', u'role', u'cocain']
[u'thiev', u'steal', u'storm', u'player', u'premiership', u'ring']
[u'thwait', u'remain', u'cautious', u'water', u'plan']
[u'toodyay', u'hold', u'advic', u'meet']
[u'town', u'camp', u'owner', u'fee', u'moratorium']
[u'tristar', u'case', u'send', u'state']
[u'tropic', u'linger', u'north', u'coast']
[u'tropic', u'move', u'away', u'north']
[u'farm', u'worker', u'test', u'negat', u'bird']
[u'boost', u'border', u'presenc', u'isra', u'lebanes']
[u'unemploy', u'rate', u'fall', u'lowest', u'level', u'year']
[u'union', u'press', u'qanta', u'guarante']
[u'union', u'mine', u'boom', u'unemploy', u'figur']
[u'crash', u'iraq', u'kill', u'baghdad', u'push', u'begin']
[u'deni', u'north', u'korea', u'nuclear', u'deal']
[u'helicopt', u'crash', u'claim', u'live', u'iraq']
[u'vandal', u'target', u'mahal']
[u'vaughan', u'seri']
[u'vcat', u'plan', u'claim', u'upset', u'glenelg', u'council']
[u'victim', u'father', u'testifi', u'norfolk', u'island', u'murder']
[u'victim', u'welcom', u'hardi', u'asbesto', u'compens']
[u'wait', u'continu', u'port', u'hedland', u'expans', u'plan']
[u'record', u'lowest', u'unemploy', u'rate']
[u'watch', u'hous', u'camera', u'wast', u'money']
[u'water', u'plan', u'black', u'hole', u'claim', u'withdraw']
[u'wind', u'firm', u'await', u'carbon', u'trade', u'scheme']
[u'work', u'start', u'iron', u'railway']
[u'work', u'start', u'soon', u'barri', u'beach', u'deep', u'port']
[u'yarriambiack', u'council', u'tour', u'shire']
[u'zinifex', u'play', u'fear', u'gulf', u'zinc', u'spill']
[u'pakistani', u'opposit', u'activist', u'kill']
[u'abalon', u'diseas', u'travel', u'west']
[u'aborigin', u'centr', u'win', u'battl', u'museum']
[u'dangl', u'million', u'dollar', u'carrot', u'cup', u'doubl']
[u'afridi', u'face', u'world', u'confront']
[u'hold', u'ladi', u'master', u'lead']
[u'leagu', u'olyroo', u'benefit', u'extra', u'game']
[u'alleg', u'poison', u'refus', u'bail']
[u'amazon', u'techniqu', u'aim', u'reduc', u'greenhous', u'gas']
[u'anna', u'nicol', u'smith', u'die', u'age']
[u'anti', u'whale', u'activist', u'rescu', u'antarct', u'water']
[u'aussi', u'struggl']
[u'autopsi', u'schedul', u'anna', u'nicol', u'smith', u'bodi']
[u'backlog', u'prevent', u'polic', u'check', u'seatbelt']
[u'bacon', u'papal', u'portrait', u'sell', u'record']
[u'baddeley', u'pace', u'pebbl', u'beach']
[u'barrier', u'industri', u'council', u'elect', u'execut']
[u'bega', u'chees', u'takeov', u'tatura', u'milk']
[u'board', u'warn', u'rule', u'impact']
[u'bomber', u'thrash', u'star']
[u'branson', u'gore', u'launch', u'carbon', u'cut', u'prize']
[u'brigitt', u'diari', u'examin', u'terror', u'trial']
[u'british', u'polic', u'charg', u'investig']
[u'british', u'terror', u'suspect', u'charg', u'plot']
[u'brumbi', u'lose', u'mortlock', u'blue', u'clash']
[u'burcher', u'resid', u'want', u'build']
[u'driver', u'attack', u'road', u'rage', u'incid']
[u'busi', u'usual', u'port', u'downpour']
[u'byrn', u'murder', u'case', u'differ', u'magistr']
[u'campervan', u'accid', u'kill', u'near', u'ingham']
[u'cardboard', u'king', u'pratt', u'pledg', u'bail', u'blue']
[u'driver', u'die', u'crash', u'road', u'train']
[u'consid', u'pilbara', u'zinc', u'copper', u'potenti']
[u'chamber', u'beat', u'apprenticeship', u'pilot', u'scheme']
[u'china', u'execut', u'activist', u'accus', u'separat']
[u'china', u'mull', u'higher', u'fin', u'enforc', u'child']
[u'chines', u'deal', u'hold', u'north', u'korea', u'nuclear', u'talk']
[u'chines', u'mine', u'deleg', u'visit']
[u'clark', u'trick', u'stifl', u'warrior']
[u'clash', u'jewish', u'muslim', u'holi', u'site', u'jerusalem']
[u'closer']
[u'closer', u'nodisplay']
[u'collingwood', u'lead', u'england', u'victori']
[u'compani', u'move', u'establish', u'domest', u'airlin']
[u'convict', u'gang', u'rapist', u'attack', u'goulburn', u'jail']
[u'council', u'go', u'court', u'fight', u'poki', u'plan']
[u'councillor', u'opposit', u'citi', u'squar', u'plan']
[u'council', u'say', u'echuca', u'brothel', u'plan']
[u'council', u'grant', u'celebr', u'qlds']
[u'council', u'urg', u'tender', u'sewerag', u'manag']
[u'court', u'find', u'guilti', u'murder', u'partner']
[u'court', u'reject', u'reduc', u'sentenc', u'request']
[u'crew', u'work', u'restor', u'tamworth', u'power']
[u'darwin', u'tiger', u'airway']
[u'david', u'crombi', u'water', u'right']
[u'deal', u'opal', u'replac', u'regular', u'unlead', u'fuel']
[u'debnam', u'oppos', u'high', u'rise', u'harbour', u'plan']
[u'derbi', u'hospit', u'revamp', u'face', u'delay']
[u'design', u'ballarat', u'train', u'station', u'start']
[u'disney', u'plan', u'reviv', u'hand', u'draw', u'anim']
[u'dorey', u'rattl', u'order']
[u'downer', u'letter', u'ramsi', u'inappropri', u'say', u'sogavar']
[u'driver', u'fin', u'fatal', u'accid']
[u'driver', u'lucki', u'escap', u'burn', u'truck']
[u'dubbo', u'school', u'offer', u'bursari', u'struggl']
[u'economist', u'predict', u'hunter', u'econom', u'surg']
[u'ellison', u'defend', u'custom', u'cargo', u'handl']
[u'england', u'host', u'netbal', u'seri']
[u'english', u'footbal', u'homophob', u'chant']
[u'entertain', u'help', u'rais', u'gippsland', u'bushfir', u'relief']
[u'councillor', u'turley', u'remain', u'local', u'govt']
[u'policeman', u'get', u'suspend', u'sentenc', u'info']
[u'famili', u'pressur', u'minist', u'meet', u'jovic']
[u'farmer', u'feder', u'call', u'water', u'plan', u'certainti']
[u'feder', u'australia', u'life', u'trick']
[u'feedback', u'seek', u'pulp', u'paper', u'expans', u'plan']
[u'field', u'qanta']
[u'field', u'push', u'govt', u'protect', u'qanta', u'staff']
[u'final', u'whistl', u'blow', u'grasshopp', u'gomersal']
[u'firefight', u'face', u'snake', u'hazard']
[u'charg', u'anti', u'terror', u'law']
[u'forestri', u'tasmania', u'appeal', u'wielangta', u'rule']
[u'forestri', u'appeal', u'wielangta', u'court']
[u'charg', u'ecstasi', u'drug', u'bust', u'worth']
[u'fraser', u'say', u'council', u'sack', u'right', u'decis']
[u'ghan', u'driver', u'sound', u'horn', u'collis', u'report']
[u'gilchrist', u'earli']
[u'gold', u'coast', u'busi', u'chamber', u'want', u'underground']
[u'govt', u'order', u'health', u'servic', u'review', u'nappi']
[u'govt', u'say', u'state', u'fail', u'deliv', u'disabl']
[u'govt', u'build', u'defenc', u'hous']
[u'grazier', u'saleyard', u'sale', u'withdraw']
[u'greenpeac', u'disagre', u'rockhampton', u'council']
[u'green', u'demand', u'cut', u'southern', u'bluefin', u'tuna', u'quota']
[u'green', u'angri', u'desal', u'plant', u'fund']
[u'group', u'charg', u'import', u'ecstasi', u'pill']
[u'gunnedah', u'council', u'review', u'water', u'program']
[u'hama', u'fatah', u'reach', u'agreement', u'govt']
[u'harragon', u'play', u'knight', u'privatis']
[u'heali', u'breast', u'cancer', u'gestur']
[u'help', u'disadvantag']
[u'high', u'court', u'reject', u'convict', u'murder']
[u'hospit', u'buddi', u'scheme', u'provid', u'regular', u'locum']
[u'hous', u'financ', u'figur', u'decemb']
[u'howard', u'warn', u'state', u'play', u'water', u'game']
[u'hunter', u'project', u'consid', u'depress', u'support']
[u'hurrican', u'tito', u'blow', u'chief', u'away']
[u'hussey', u'lead', u'australia', u'seri']
[u'indian', u'polic', u'quiz', u'samuel', u'booki', u'link']
[u'insid', u'guantanamo']
[u'investig', u'find', u'plane', u'powerlin']
[u'journalist', u'fell', u'alterc']
[u'judg', u'leav', u'mine', u'claim', u'case']
[u'judici', u'get', u'public', u'chief', u'justic']
[u'kidnapp', u'jail', u'theft']
[u'land', u'council', u'question', u'woodsid', u'plant', u'push']
[u'land', u'near', u'byron', u'add', u'nation', u'park']
[u'lara', u'dream', u'beat', u'australia', u'world', u'crown']
[u'late', u'noffk', u'blitz', u'stun', u'redback']
[u'leagu', u'great', u'die', u'age']
[u'lebanon', u'israel', u'clash', u'breach', u'ceas', u'chief']
[u'liber', u'wont', u'support', u'move', u'fast', u'track', u'pulp']
[u'linen', u'memo', u'prompt', u'govt', u'order', u'health', u'servic']
[u'lloyd', u'miss', u'star', u'match']
[u'mackay', u'push', u'convent', u'centr', u'busi']
[u'magistr', u'disqualifi', u'wood', u'murder']
[u'malle', u'rental', u'vacanc', u'improv', u'slight']
[u'manag', u'invest', u'scheme', u'decis', u'halt', u'stone']
[u'die', u'hous', u'boat', u'explos']
[u'jail', u'smash', u'glass', u'policewoman']
[u'mayor', u'hit', u'council', u'illeg', u'fine']
[u'mcgradi', u'back', u'elector', u'allow', u'repay']
[u'mickelson', u'share', u'lead', u'jam', u'pebbl', u'beach']
[u'north', u'coast', u'teacher', u'score', u'cricket', u'award']
[u'mine', u'group', u'reject', u'propos', u'coal', u'export']
[u'miss', u'young', u'teen', u'safe']
[u'mix', u'build', u'industri', u'figur', u'wimmera', u'malle']
[u'work', u'need', u'save', u'tie', u'solomon', u'say']
[u'highlight', u'grow', u'mortgag', u'repossess']
[u'play', u'chaffi', u'concern']
[u'want', u'govt', u'fund', u'grafton', u'hospit']
[u'murray', u'darl', u'licenc', u'push', u'food']
[u'murray', u'gleeson', u'speech']
[u'muslim', u'group', u'rebuff', u'call', u'decid', u'sheikh']
[u'nation', u'candid', u'promis', u'age', u'care', u'centr']
[u'nation', u'seek', u'probe', u'public', u'land', u'risk']
[u'campaign', u'target', u'young', u'drink', u'driver']
[u'airlin', u'propos', u'domest', u'market']
[u'home', u'loan', u'approv', u'rise']
[u'licens', u'commerci', u'fisher']
[u'strategi', u'aim', u'boost', u'drought', u'busi']
[u'korea', u'flag', u'dismantl', u'nuclear', u'program']
[u'anti', u'siphon', u'breach', u'deal', u'say', u'howard']
[u'norfolk', u'murder', u'trial', u'worri', u'tourism', u'industri']
[u'obes', u'fight', u'devic', u'prove', u'success']
[u'opposit', u'reject', u'shoalhaven', u'claim']
[u'pair', u'face', u'court', u'domest', u'violenc']
[u'paramed', u'warn', u'strike', u'action', u'sack']
[u'paterson', u'resid', u'push', u'stop', u'quarri', u'reopen']
[u'kill', u'sport']
[u'peopl', u'treat', u'leak', u'effect']
[u'plastic', u'nanospher', u'hunt', u'cancer']
[u'seek', u'agreement', u'water', u'plan']
[u'urg', u'premier', u'polit', u'asid']
[u'warn', u'state', u'play', u'water', u'game']
[u'warn', u'state', u'play', u'water', u'game']
[u'polic', u'consid', u'charg', u'millionair', u'murder']
[u'polic', u'seiz', u'rocket', u'launcher', u'melbourn', u'man']
[u'polic', u'unruli', u'behaviour', u'water', u'comp']
[u'polit', u'stoush', u'elect', u'draw', u'nearer']
[u'porn', u'hous', u'maningrida', u'alleg', u'rape']
[u'qanta', u'milk']
[u'rail', u'work', u'hurt', u'rock', u'slide']
[u'rain', u'chang', u'drought', u'elig']
[u'rann', u'beat', u'water', u'meet']
[u'resourc', u'boost', u'aust', u'sharemarket']
[u'rise', u'floodwat', u'forc', u'villag', u'flee']
[u'rocket', u'launcher', u'buy', u'market', u'court', u'tell']
[u'roozenda', u'want', u'brake', u'road', u'plan']
[u'ruddock', u'play', u'guantanamo', u'boss', u'hick']
[u'sacha', u'baron', u'cohen', u'sign', u'borat']
[u'electr', u'distributor', u'hop', u'govt']
[u'govt', u'review', u'region', u'hospit', u'blood', u'stock']
[u'mental', u'health', u'fail', u'patient', u'report']
[u'school', u'use', u'mozart', u'aromatherapi', u'motiv', u'boy']
[u'scientist', u'say', u'senat', u'inquiri', u'includ']
[u'world', u'diver', u'hurt', u'dugong', u'attack']
[u'sever', u'thunderstorm', u'rock', u'properti']
[u'silvestri', u'joke', u'throw', u'brimbl', u'bodi']
[u'sixer', u'grab', u'consol', u'taipan']
[u'skate', u'park', u'blame', u'gulgong', u'vandal', u'spike']
[u'sogavar', u'tri', u'undermin', u'ramsi', u'downer']
[u'sogavar', u'want', u'shut', u'ramsi', u'downer']
[u'solomon', u'island', u'accus', u'block', u'diplomat']
[u'solomon', u'agre', u'debat', u'union']
[u'solomon', u'angri', u'dpps', u'comment', u'alleg']
[u'state', u'perform', u'receiv', u'health', u'fund', u'abbott']
[u'state', u'plan', u'nation', u'carbon', u'trade', u'scheme']
[u'state', u'territori', u'establish', u'carbon']
[u'station', u'astronaut', u'finish', u'spacewalk']
[u'stop', u'coal', u'export', u'year', u'brown', u'say']
[u'sugar', u'price', u'tip', u'stabilis']
[u'shin', u'townsvill']
[u'supermarket', u'item', u'remov', u'spray']
[u'sydney', u'ferri', u'boss', u'clear', u'corrupt']
[u'sydney', u'student', u'stand', u'trial', u'suspect']
[u'judg', u'let', u'child', u'porn', u'hoarder', u'jail']
[u'kidnapp', u'give', u'jail', u'time', u'heist']
[u'give', u'month', u'jail', u'abus']
[u'chang', u'mean', u'agribusi', u'loss']
[u'teacher', u'lead', u'protest', u'head', u'port', u'macquari']
[u'telstra', u'use', u'sharehold', u'lobbi', u'internet']
[u'thailand', u'thaksin', u'holiday', u'melbourn']
[u'toodyay', u'farmer', u'push', u'damag', u'compo']
[u'tourist', u'local', u'evid', u'norfolk', u'murder']
[u'traveston', u'senat', u'inquiri', u'expect', u'soon']
[u'trucki', u'die', u'crash', u'near', u'cann', u'river']
[u'activist', u'miss', u'confront', u'japanes']
[u'unemploy', u'declin']
[u'univers', u'concern', u'declin', u'student']
[u'upper', u'hous', u'examin', u'game', u'licens']
[u'agre', u'clean', u'vietnam', u'chemic', u'site']
[u'say', u'strike', u'kill', u'insurg', u'near']
[u'viduka', u'boro', u'chanc', u'chelsea']
[u'volunt', u'lend', u'hand', u'bushfir', u'victim']
[u'govt', u'approv', u'electr', u'trial']
[u'watson', u'line', u'england']
[u'west', u'australian', u'newspap', u'record', u'profit', u'rise']
[u'west', u'cautious', u'palestinian', u'uniti', u'govt', u'deal']
[u'western', u'share', u'birthday', u'celebr']
[u'cash', u'hang', u'monkey']
[u'wit', u'hear', u'scream', u'norfolk', u'court', u'tell']
[u'work', u'parti', u'make', u'railway', u'land', u'recommend']
[u'zinifex', u'beat', u'barg', u'rescu']
[u'women', u'lung', u'cancer', u'patient', u'smoker']
[u'nation', u'launch', u'vaccin', u'scheme']
[u'dead', u'road']
[u'aborigin', u'centr', u'step', u'stop', u'spite']
[u'age', u'plan', u'servic', u'region', u'rout', u'report']
[u'arsenal', u'announc', u'link', u'colorado', u'rapid']
[u'aussi', u'fountain', u'win', u'indoor', u'mile']
[u'bashir', u'remain', u'mentor', u'say', u'terror', u'expert']
[u'beazley', u'prais', u'rudd', u'perform', u'parliament']
[u'beckham', u'capello', u'turn']
[u'birdi', u'blitz', u'lift', u'webb', u'share', u'master', u'lead']
[u'blue', u'build', u'lead', u'waca']
[u'blue', u'control', u'waca']
[u'blue', u'steal', u'victori', u'brumbi']
[u'branson', u'gore', u'launch', u'carbon', u'cut', u'prize']
[u'brazilian', u'pri', u'grandson', u'anaconda', u'death', u'grip']
[u'briggitt', u'claim', u'pressur', u'terror', u'admiss']
[u'brigitt', u'pressur', u'terror', u'plot', u'confess']
[u'bull', u'open', u'stand', u'firm', u'chase']
[u'canberra', u'control', u'carbon', u'trade', u'scheme']
[u'capit', u'book', u'date', u'flame']
[u'cargo', u'ship', u'scuttl', u'creat', u'artifici', u'reef']
[u'church', u'goer', u'offer', u'prayer', u'hick']
[u'claim', u'brigitt', u'pressur', u'terror', u'plot']
[u'closer']
[u'closer']
[u'cold', u'snap', u'caus', u'disrupt', u'britain']
[u'competitor', u'water', u'race']
[u'crimin', u'code', u'chang', u'offer', u'hope', u'bali']
[u'crusad', u'hold', u'commit', u'red']
[u'cullen', u'lock', u'fee', u'devast', u'small', u'busi']
[u'cyclist', u'rathbon', u'triumph', u'point', u'event']
[u'cyclon', u'barg', u'undergo', u'repair']
[u'defeat', u'england', u'bless', u'disguis', u'mcgrath']
[u'demonstr', u'polic', u'clash', u'jerusalem']
[u'coli', u'sourc']
[u'segundo', u'stake']
[u'england', u'sniff', u'victori', u'disastr', u'tour']
[u'expect', u'mother', u'forc', u'travel', u'long', u'distanc']
[u'extra', u'staff', u'hire', u'process', u'traffic', u'fin']
[u'fear', u'tran', u'tasman', u'kayak', u'troubl']
[u'stand']
[u'devast', u'gippsland', u'primari', u'school']
[u'jam', u'hardi', u'asbesto', u'payment', u'deliv']
[u'flock', u'birdi', u'lift', u'webb', u'share', u'master']
[u'floodwat', u'isol', u'birdsvill']
[u'fli', u'carri', u'hick', u'freedom', u'messag']
[u'fund', u'need', u'teacher', u'develop', u'report']
[u'furyk', u'mickelson', u'share', u'pebbl', u'beach', u'lead']
[u'gang', u'rapist', u'critic', u'condit', u'prison']
[u'gate', u'say', u'evid', u'link', u'iran', u'insurg']
[u'govt', u'approv', u'plan', u'darl', u'harbour']
[u'govt', u'defend', u'coal', u'polici']
[u'incent', u'rise', u'bulk', u'bill', u'say']
[u'guinea', u'leader', u'name', u'fresh', u'violenc']
[u'gunn', u'order', u'doctor', u'group', u'legal', u'cost']
[u'hama', u'urg', u'west', u'accept', u'deal', u'resum']
[u'hewitt', u'guccion', u'crash', u'belgium']
[u'weather', u'push', u'water', u'consumpt']
[u'hous', u'card', u'actor', u'die']
[u'howard', u'rudd', u'attack', u'green', u'coal', u'polici']
[u'interview', u'karri', u'webb']
[u'interview', u'kevin', u'muscat']
[u'jam', u'hardi', u'make', u'asbesto', u'payment']
[u'jet', u'unfinish', u'busi']
[u'jordan', u'queen', u'say', u'islam', u'demand', u'veil']
[u'labor', u'welcom', u'prize', u'global', u'warm', u'solut']
[u'landi', u'hit', u'sampl', u'test']
[u'maher', u'lead', u'bull']
[u'maher', u'bull', u'control']
[u'detain', u'letter', u'bomb']
[u'die', u'hit', u'pole']
[u'hospitalis', u'surf', u'accid']
[u'court', u'plot', u'kill', u'british', u'solid']
[u'miss', u'speedboat', u'crash']
[u'mast', u'urg', u'scuttl', u'watcher', u'exercis', u'caution']
[u'mbeki', u'vow', u'fight', u'africa', u'poverti', u'crime']
[u'melbourn', u'polic', u'investig', u'aborigin', u'theft']
[u'mental', u'health', u'report', u'receiv', u'mix', u'respons']
[u'million', u'offer', u'climat', u'solut']
[u'mosqu', u'excav', u'spark', u'jerusalem', u'clash']
[u'motorist', u'warn', u'stuart', u'highway', u'delay']
[u'muscat', u'look', u'extend', u'fairytal', u'career']
[u'nafe', u'put', u'bangladesh']
[u'nation', u'focus', u'region', u'health', u'road']
[u'general', u'call', u'iraqi', u'reject', u'violenc']
[u'nitschk', u'detain', u'custom', u'euthanasia']
[u'evid', u'crime', u'smith', u'death']
[u'evid', u'crime', u'smith', u'death', u'author']
[u'forc', u'join', u'search', u'australian', u'kayak']
[u'author', u'search', u'australian', u'adventur']
[u'author', u'spot', u'upturn', u'kayak']
[u'author', u'spot', u'upturn', u'kayak']
[u'olymp', u'sprinter', u'hewitt', u'swan', u'song']
[u'opposit', u'attack', u'gallagh', u'water', u'credenti']
[u'paceman', u'clark', u'rip', u'warrior']
[u'palestinian', u'govt', u'urg', u'recognis', u'israel']
[u'polic', u'search', u'miss', u'boat']
[u'polic', u'roll', u'high', u'speed', u'pursuit']
[u'poll', u'find', u'strong', u'support', u'recycl', u'water']
[u'pol', u'pmopen']
[u'pont', u'lament', u'disgrac', u'aussi']
[u'power', u'restor', u'western', u'blackout']
[u'pratt', u'fall', u'thailand']
[u'prayer', u'servic', u'hold', u'hick']
[u'propos', u'death', u'chang', u'bali']
[u'push', u'offici', u'releas', u'mental', u'health']
[u'opposit', u'push', u'independ', u'speaker']
[u'polic', u'stat', u'reveal', u'increas', u'violent', u'crime']
[u'report', u'fault', u'pentagon', u'iraq', u'intellig']
[u'road', u'accid', u'prompt', u'better', u'train']
[u'russia', u'stir', u'start', u'davi', u'defenc']
[u'search', u'continu', u'fisherman']
[u'second', u'attempt', u'open', u'highway', u'cyanid']
[u'seeney', u'reject', u'state', u'plan', u'nation', u'carbon']
[u'shark', u'break', u'waratah', u'hoodoo']
[u'sheed', u'prais', u'star']
[u'shepherd', u'boot', u'forc', u'victori']
[u'storm', u'cut', u'power', u'western']
[u'super', u'interview', u'stephen', u'brett', u'todd', u'blackadd']
[u'support', u'grow', u'parliamentari', u'inquiri']
[u'sydney', u'secur', u'australian', u'open', u'golf']
[u'thai', u'offici', u'monitor', u'thaksin', u'australian', u'holiday']
[u'tiger', u'seal', u'semi', u'final', u'place']
[u'tonga', u'book', u'world', u'place']
[u'traffic', u'allow', u'past', u'cyanid', u'spill', u'site']
[u'seri', u'final', u'commentari', u'highlight']
[u'seri', u'final', u'interview']
[u'seri', u'final', u'podcast']
[u'food', u'author', u'examin', u'poultri', u'bird']
[u'polic', u'detain', u'letter', u'bomb']
[u'strike', u'kill', u'kurdish', u'soldier']
[u'forc', u'kill', u'kurdish', u'polic', u'iraq']
[u'stock', u'slide', u'hous', u'woe']
[u'want', u'studi', u'palestinian', u'accord', u'uniti']
[u'util', u'fin', u'discrimin']
[u'victim', u'group', u'welcom', u'specialist', u'polic', u'squad']
[u'voyag', u'disast', u'survivor', u'renew', u'call', u'justic']
[u'webb', u'target', u'return', u'spot']
[u'workchoic', u'make', u'truck', u'industri', u'unsaf', u'iemma']
[u'yousuf', u'vain', u'rain']
[u'latest', u'guinea', u'violenc']
[u'boost', u'age', u'care']
[u'aborigin', u'centr', u'step', u'stop', u'scientif']
[u'want', u'interst', u'commission', u'mallard', u'case']
[u'ahm', u'blast', u'bangladesh', u'seri']
[u'consid', u'fenc', u'site', u'vandal', u'attack']
[u'ambul', u'servic', u'commenc', u'traine', u'program']
[u'ancient', u'sarcophagi', u'unearth', u'egypt']
[u'atherton', u'host', u'communiti', u'cabinet']
[u'aust', u'kayak', u'miss']
[u'author', u'reassur', u'commut', u'cyanid', u'spill']
[u'ban', u'afridi', u'miss', u'earli', u'world', u'game']
[u'bash', u'rapist', u'transfer', u'prison', u'hospit']
[u'beckham', u'make', u'goal', u'score', u'return']
[u'black', u'linger', u'south', u'coast', u'resid']
[u'blaze', u'kill', u'illeg', u'immigr', u'south', u'korea']
[u'blue', u'crush', u'warrior']
[u'bullet', u'record']
[u'bull', u'thriller', u'cheetah']
[u'canberra', u'resid', u'storm']
[u'cap', u'upset', u'venu']
[u'carpent', u'consid', u'seatbelt', u'fin']
[u'ceremoni', u'mark', u'year', u'black', u'tuesday']
[u'child', u'abduct', u'notif', u'relaunch']
[u'china', u'coal', u'death', u'rise', u'cover']
[u'civil', u'right', u'activist', u'back', u'obama', u'presidenti']
[u'clash', u'flare', u'jerusalem', u'mosqu']
[u'closer']
[u'closer', u'nodisplay']
[u'coupl', u'pucker', u'world', u'record']
[u'crew', u'confid', u'find', u'miss', u'adventur']
[u'cyclist', u'hospitalis']
[u'davi', u'tie', u'aliv', u'doubl']
[u'dead', u'pet', u'birth', u'diamond', u'ring']
[u'death', u'toll', u'rise', u'iraq', u'attack']
[u'discoveri', u'channel', u'quit', u'cycl', u'team']
[u'downer', u'rais', u'hick', u'case', u'defenc']
[u'drag', u'race', u'suspect', u'fatal', u'crash']
[u'draper', u'win']
[u'driver', u'warn', u'delay', u'road', u'closur']
[u'england', u'bat', u'sydney']
[u'england', u'bat', u'steadi']
[u'england', u'post']
[u'england', u'unimpress', u'itali']
[u'famili', u'hope', u'miss', u'kayak', u'aliv']
[u'fashion', u'festiv', u'urg', u'promot', u'healthi', u'bodi']
[u'fear', u'miss', u'melbourn', u'teen']
[u'firebird', u'refus', u'sign', u'contract']
[u'crew', u'fight', u'save', u'properti', u'near', u'albani']
[u'firefight', u'injur', u'attend', u'hous']
[u'firefight', u'battl', u'blaze', u'near', u'launceston']
[u'flood', u'hit', u'southern']
[u'govt', u'propos', u'chang', u'organ', u'donat', u'rule']
[u'green', u'launch', u'petit', u'halt', u'board', u'hous']
[u'hewitt', u'hanley', u'reviv', u'aussi', u'hop']
[u'howard', u'slam', u'obama', u'iraq', u'plan']
[u'howard', u'urg', u'state', u'water', u'tortur']
[u'iemma', u'illeg', u'brothel', u'crackdown', u'hypocrit']
[u'illeg', u'brothel', u'electr']
[u'indonesia', u'confirm', u'bird', u'death']
[u'iran', u'want', u'stay', u'nuclear', u'rule']
[u'isinbayeva', u'break', u'world', u'indoor', u'record']
[u'jakarta', u'flood', u'claim', u'live']
[u'kayak', u'search', u'continu']
[u'kayak', u'mcauley', u'miss']
[u'kersten', u'strike', u'doubl', u'gold']
[u'labor', u'exempt', u'small', u'busi', u'unfair']
[u'leonard', u'win', u'men', u'keirin', u'sydney']
[u'lion', u'cling', u'otago', u'rare']
[u'die', u'storm', u'sweep']
[u'aliv', u'rock', u'pool', u'plung']
[u'kill', u'firework', u'accid']
[u'miss', u'rock', u'pool', u'plung']
[u'miss', u'murray', u'boat', u'crash']
[u'mcmeniman', u'sidelin', u'ankl', u'injuri']
[u'mickelson', u'sutherland', u'share', u'pebbl', u'beach', u'lead']
[u'mickelson', u'cling', u'share', u'pebbl', u'beach', u'lead']
[u'minist', u'seek', u'answer', u'poison', u'children', u'case']
[u'miss', u'trio', u'victorian', u'cave']
[u'mix', u'reaction', u'govt', u'age', u'care', u'fund', u'packag']
[u'troop', u'need', u'afghanistan', u'command']
[u'troop', u'need', u'afghanistan', u'general']
[u'neill', u'horror', u'trot', u'continu']
[u'general', u'take', u'control', u'troop', u'iraq']
[u'palestinian', u'govt', u'wont', u'recognis', u'israel', u'hama']
[u'korea', u'nuclear', u'talk', u'progress', u'negoti']
[u'obama', u'formal', u'enter', u'white', u'hous', u'race']
[u'obama', u'launch', u'presidenti']
[u'obama', u'offici', u'launch', u'presidenti', u'race']
[u'paterson', u'kick', u'scotland', u'victori']
[u'plunkett', u'put', u'australia', u'deep', u'troubl']
[u'announc', u'billion', u'dollar', u'age', u'care', u'packag']
[u'attack', u'obama', u'iraq', u'strategi']
[u'pledg', u'fund', u'elder', u'australian']
[u'announc', u'billion', u'dollar', u'age', u'care', u'packag']
[u'polic', u'probe', u'drag', u'race', u'connect', u'fatal', u'crash']
[u'polic', u'seek', u'public', u'help', u'firebug']
[u'portug', u'divid', u'ahead', u'abort', u'referendum']
[u'putin', u'accus', u'forc', u'world']
[u'putin', u'accus', u'impos', u'world']
[u'putin', u'verbal', u'attack']
[u'rain', u'delay', u'play']
[u'rain', u'halt', u'play', u'sydney']
[u'redback', u'make', u'progress', u'second', u'inning']
[u'region', u'suffer', u'anaesthetist', u'shortag']
[u'rescu', u'effort', u'continu', u'miss', u'kayak']
[u'rescuer', u'resum', u'search', u'miss', u'fisherman']
[u'resurg', u'england', u'seri']
[u'rudd', u'defend', u'econom', u'leadership', u'credenti']
[u'search', u'continu', u'miss', u'aust', u'adventur']
[u'search', u'miss', u'aust', u'adventur', u'continu']
[u'search', u'miss', u'fisherman', u'resum', u'tomorrow']
[u'search', u'resum', u'miss', u'adventur']
[u'search', u'resum', u'miss', u'aust', u'adventur']
[u'second', u'final', u'thrill', u'finish']
[u'inund', u'storm', u'melbourn', u'geelong']
[u'shop', u'centr', u'evacu', u'follow', u'flood']
[u'sixth', u'hold', u'custodi', u'british', u'anti']
[u'snowi', u'mountain', u'highway', u'reopen', u'threat']
[u'stand', u'end', u'man', u'arrest']
[u'agreement', u'north', u'korea', u'nuclear', u'program']
[u'suicid', u'bomber', u'kill', u'near', u'baghdad']
[u'taipan', u'fall', u'short', u'end', u'bullet']
[u'teen', u'drown', u'famili']
[u'tourist', u'rescu', u'accid']
[u'turkmenistan', u'head', u'poll']
[u'fight', u'life', u'ride']
[u'unit', u'advanc', u'final', u'shoot']
[u'unit', u'draw', u'level', u'jet', u'half', u'time']
[u'unit', u'stay', u'clear']
[u'polic', u'clash', u'kosovo', u'protest']
[u'disappoint', u'putin', u'attack']
[u'webb', u'add', u'master', u'titl', u'australian', u'open']
[u'webb', u'cruis', u'form']
[u'woman', u'charg', u'partner', u'stab']
[u'woman', u'extradit', u'cling', u'wrap', u'murder']
[u'abalon', u'diver', u'watch', u'virus', u'spread']
[u'access', u'card', u'prevent', u'cornelia', u'raus']
[u'watch', u'hous', u'complaint', u'investig']
[u'forc', u'engin', u'face', u'charg']
[u'alcohol', u'levi', u'propos', u'reduc', u'indigen', u'death']
[u'alcohol', u'relat', u'diseas', u'kill', u'young', u'aborigin']
[u'alic', u'spring', u'council', u'vote', u'nuclear', u'issu']
[u'alic', u'spring', u'hotel', u'rob']
[u'ambul', u'servic', u'call', u'region', u'hospit']
[u'apec', u'meet', u'discuss', u'futur', u'mine']
[u'accept', u'revis', u'takeov']
[u'arson', u'suspect', u'tasmanian', u'bushfir']
[u'artist', u'hop', u'katter', u'win', u'archibald', u'nose']
[u'confer', u'focus', u'drought', u'job']
[u'barrist', u'critic', u'injuri', u'compo', u'law']
[u'beatti', u'meet', u'indigen', u'communiti', u'mayor']
[u'bendigo', u'bank', u'post', u'profit', u'growth']
[u'crowd', u'turn', u'hmas', u'broom', u'commiss']
[u'downpour', u'gayndah']
[u'blue', u'green', u'alga', u'level', u'expect', u'eas']
[u'bodi', u'confirm', u'murray', u'boat', u'crash', u'victim']
[u'bodi', u'near', u'site', u'murray', u'boat', u'crash']
[u'boswel', u'visit', u'gympi', u'discuss', u'traveston']
[u'break', u'hill', u'council', u'consid', u'sell', u'depot']
[u'broom', u'airport', u'readi']
[u'burn', u'pull', u'olyroo', u'squad']
[u'bushrang', u'rollick', u'start']
[u'inquiri', u'rayoni', u'decis']
[u'irrig', u'sell', u'water', u'citi']
[u'paroo', u'heritag', u'regist', u'list']
[u'carlton', u'confirm', u'player', u'involv', u'incid']
[u'carlton', u'player', u'fin', u'drunken', u'hotel', u'incid']
[u'carlton', u'player', u'fin', u'drunken', u'hotel', u'incid']
[u'catherin', u'hill', u'resid', u'plan']
[u'begin', u'hear', u'alleg', u'lobbyist', u'deal']
[u'central', u'darl', u'shire', u'rank', u'high', u'unhealthi']
[u'clean', u'continu', u'toxic', u'spill']
[u'closer']
[u'closer']
[u'cobar', u'mine', u'help', u'restor', u'power', u'western', u'region']
[u'council', u'manag', u'centr', u'harass', u'case', u'quit']
[u'council', u'offic', u'water', u'tank', u'request']
[u'council', u'prais', u'anim', u'plan']
[u'council', u'take', u'approach', u'curb', u'antisoci']
[u'council', u'urg', u'treat', u'effluent', u'dust']
[u'cyanid', u'spill', u'clean', u'continu']
[u'cyclist', u'continu', u'long', u'trek', u'hobart']
[u'dairi', u'farmer', u'urg', u'research', u'levi']
[u'davi', u'holder', u'russia', u'hang']
[u'debnam', u'pledg', u'fund', u'solar', u'water']
[u'debt', u'collector', u'call', u'recov', u'xstrata']
[u'debt', u'forc', u'wellington', u'rugbi', u'club', u'close']
[u'dixi', u'chick', u'grammi', u'blitz']
[u'doctor', u'punish', u'threaten', u'letter']
[u'behaviour', u'scheme', u'help', u'meter', u'reader']
[u'doubl', u'standard']
[u'doubt', u'rais', u'lake', u'bonney', u'committe']
[u'dougla', u'council', u'face', u'uncertain', u'futur']
[u'downer', u'defend', u'howard', u'obama', u'attack']
[u'drone']
[u'drought', u'declar', u'waggamba', u'shire', u'west']
[u'drought', u'south', u'east', u'record', u'delug']
[u'eagl', u'lose', u'nicoski', u'injuri']
[u'environ', u'group', u'label', u'terrorist', u'follow']
[u'fairfax', u'post', u'half', u'year', u'profit']
[u'farmer', u'ralli', u'properti', u'right']
[u'fava', u'drop', u'alcohol', u'breach']
[u'fava', u'suspend', u'bull', u'clash']
[u'fear', u'water', u'plan', u'ignor', u'local', u'knowledg']
[u'govt', u'announc', u'communiti', u'servic', u'centr', u'fund']
[u'financi', u'servic', u'busi', u'answer', u'drought']
[u'firefight', u'prevent', u'goobang', u'nation', u'park']
[u'firefight', u'worri', u'deliber', u'bushfir']
[u'firework', u'mishap', u'kill', u'echuca']
[u'flight', u'school', u'investig', u'traine', u'crash']
[u'flight', u'delay', u'qanta', u'baggag', u'handler']
[u'flight', u'resum', u'inverel', u'sydney']
[u'flintoff', u'credit', u'fletcher', u'england', u'turnaround']
[u'flood', u'boost', u'jellyfish', u'number']
[u'flood', u'relat', u'ill', u'affect', u'jakarta']
[u'charg', u'hous', u'blaze']
[u'strength', u'bronco', u'team', u'world', u'club', u'challeng']
[u'fund', u'boost', u'need', u'elder', u'psychiatr']
[u'german', u'tourist', u'rescu', u'roll']
[u'govt', u'accus', u'arrog', u'cut', u'debat']
[u'govt', u'accus', u'deni', u'region', u'teacher', u'hous']
[u'govt', u'accus', u'fail', u'detent', u'centr']
[u'govt', u'focus', u'reduc', u'savanna', u'emiss']
[u'govt', u'fund', u'need', u'aborigin', u'remain', u'fight']
[u'govt', u'reject', u'fund', u'help', u'aborigin', u'remain']
[u'govt', u'reject', u'retail', u'plan', u'sydney', u'airport']
[u'govt', u'urg', u'fund', u'help', u'coal']
[u'grazier', u'oppos', u'murray', u'darl', u'water', u'auction']
[u'group', u'back', u'alstonvill', u'bypass', u'say', u'vehicl']
[u'health', u'care', u'group', u'welcom', u'age', u'care', u'fund', u'boost']
[u'hear', u'begin', u'disput', u'uranium', u'land', u'claim']
[u'heavi', u'rain', u'caus', u'havoc', u'sydney']
[u'hick', u'serv', u'sentenc', u'aust', u'downer']
[u'hick', u'wont', u'face', u'death', u'penalti']
[u'high', u'death', u'rat', u'alcohol', u'rule', u'work']
[u'discover', u'blast', u'doubter', u'court']
[u'hooligan', u'battl', u'polic', u'match', u'germani']
[u'howard', u'comment', u'obama', u'draw', u'critic']
[u'howard', u'dismiss', u'unfavour', u'poll', u'result']
[u'howard', u'sorri', u'obama', u'remark']
[u'human', u'shield', u'democrat', u'ticket', u'elect']
[u'immigr', u'dept', u'investig', u'employ', u'visa']
[u'indigen', u'alcohol', u'death']
[u'indigen', u'ceo', u'angri', u'premier', u'talk', u'snub']
[u'inflat', u'forecast', u'flag', u'rate', u'say']
[u'injunct', u'delay', u'test', u'aborigin', u'remain']
[u'injuri', u'rule', u'hop', u'clash']
[u'rat', u'hold', u'short', u'term']
[u'inter', u'seri', u'resum', u'amid', u'stand']
[u'investig', u'launch', u'barg', u'sink']
[u'iranian', u'presid', u'deni', u'arm', u'iraqi', u'milit']
[u'iran', u'prepar', u'return', u'nuclear', u'negoti']
[u'iran', u'support', u'shiit', u'militia', u'iraq', u'offici']
[u'individu', u'jone']
[u'jone', u'upbeat', u'despit', u'mcmeniman', u'injuri']
[u'journalist', u'plead', u'guilti', u'contempt', u'feder']
[u'kayak', u'famili', u'fear', u'worst', u'search', u'drag']
[u'keat', u'defend', u'harbour', u'redevelop', u'plan']
[u'labor', u'target', u'allianc']
[u'labor', u'target', u'obama', u'remark']
[u'lake', u'death', u'prompt', u'warn', u'sign']
[u'landslid', u'prompt', u'licola', u'warn']
[u'liber', u'accus', u'wollongong', u'preselect', u'delay']
[u'maher', u'sign', u'sixer']
[u'makeshift', u'classroom', u'blaze']
[u'charg', u'cliff', u'jump']
[u'die', u'capricorn', u'highway', u'crash']
[u'rocket', u'launcher', u'grant', u'bail']
[u'hospit', u'lightn', u'strike']
[u'marin', u'snare', u'petrovski']
[u'market', u'close', u'lower', u'despit', u'mine', u'gain']
[u'appear', u'court', u'ecstasi']
[u'merrick', u'wari', u'unit', u'momentum']
[u'mickelson', u'cruis', u'victori', u'shot']
[u'doesnt', u'want', u'green', u'misconcept']
[u'reject', u'claim', u'tri', u'hide', u'tobacco']
[u'unhappi', u'health', u'servic', u'memo', u'explan']
[u'everest', u'featur', u'nepal', u'currenc']
[u'munc', u'swap', u'tip', u'race', u'bet', u'court', u'tell']
[u'mussel', u'number', u'dwindl', u'darl', u'water', u'level', u'drop']
[u'nation', u'park', u'bushfir', u'close', u'privat', u'properti']
[u'nation', u'worri', u'school', u'wont', u'move']
[u'nauru', u'detent', u'centr', u'cost', u'month']
[u'polic', u'station', u'offici', u'open', u'port', u'lincoln']
[u'nixon', u'accus', u'tri', u'discredit', u'polic', u'union']
[u'arrest', u'climat', u'chang', u'protest']
[u'charg', u'recommend', u'polic', u'brisban']
[u'opposit', u'back', u'port', u'kembla', u'expans']
[u'face', u'major', u'problem', u'alcohol', u'relat', u'death']
[u'korea', u'nuclear', u'talk', u'resum']
[u'nuclear', u'talk', u'falter', u'north', u'korean', u'demand']
[u'nurs', u'shortag', u'blame', u'patient', u'aggress']
[u'continu', u'search', u'miss', u'kayak']
[u'obama', u'challeng', u'howard', u'iraq', u'troop', u'number']
[u'obama', u'challeng', u'howard', u'send', u'troop', u'iraq']
[u'obama', u'reject', u'howard', u'complaint']
[u'offici', u'slim', u'chanc', u'kayak', u'aliv']
[u'oust', u'thai', u'seek', u'sydney', u'properti']
[u'week', u'kick', u'canberra', u'univers']
[u'panther', u'deni', u'gower', u'bite', u'claim']
[u'patchi', u'rain', u'interrupt', u'dri', u'fruit', u'harvest']
[u'pirsa', u'helpless', u'abalon', u'virus']
[u'stand', u'obama', u'attack']
[u'tell', u'butt', u'polit']
[u'polic', u'reduc', u'hopetoun', u'antisoci', u'behaviour']
[u'polic', u'arrest', u'peopl', u'jubile', u'highway', u'east']
[u'polic', u'miss', u'trail', u'bike', u'rider']
[u'polic', u'hunt', u'noosa', u'home', u'invad']
[u'polic', u'leader', u'urg', u'creativ', u'approach']
[u'polic', u'say', u'teen', u'drown', u'tragedi']
[u'polic', u'strike', u'tamworth', u'unlik']
[u'polic', u'seek', u'help', u'catch', u'secur', u'camera', u'thief']
[u'polic', u'victim', u'firework', u'mishap']
[u'portug', u'legalis', u'abort', u'referendum']
[u'power', u'station', u'fin', u'discrimin']
[u'pregnant', u'women', u'ignor', u'drink', u'danger']
[u'protest', u'ship', u'japanes', u'whaler', u'collid']
[u'public', u'school', u'consult', u'continu']
[u'qanta', u'approv', u'takeov']
[u'qanta', u'flight', u'return', u'normal', u'baggag']
[u'govt', u'fund', u'beaudesert', u'jubile', u'park', u'work']
[u'chang', u'discrimin', u'prison', u'meal']
[u'raaf', u'base', u'exercis', u'affect', u'newcastl', u'flight']
[u'rain', u'forc', u'draw', u'gabba']
[u'rain', u'take', u'toll', u'livestock']
[u'rat', u'pressur', u'fade', u'inflat', u'forecast']
[u'signal', u'rat', u'stay', u'steadi']
[u'record', u'attend', u'australian', u'season']
[u'recreat', u'fisher', u'includ', u'lobster']
[u'redback', u'look', u'tough', u'chase']
[u'region', u'airlin', u'warn', u'impact', u'feder', u'rebat']
[u'region', u'record', u'free', u'weekend']
[u'repair', u'work', u'near', u'mosqu', u'halt', u'clash']
[u'report', u'find', u'brewarrina', u'unhealthiest', u'place']
[u'report', u'outlin', u'risk', u'hobart', u'water']
[u'rescuer', u'defiant', u'search', u'kayak']
[u'research', u'investig', u'affect', u'smoke', u'haze']
[u'reserv', u'bank', u'statement', u'monetari', u'polici']
[u'resurg', u'england', u'talk', u'prospect']
[u'rivskil', u'polic', u'investig']
[u'rudd', u'demand', u'apolog', u'obama', u'critic']
[u'rudd', u'popular', u'opposit', u'leader', u'poll']
[u'rudd', u'play', u'poll', u'popular']
[u'rudd', u'prefer', u'prime', u'minist', u'poll']
[u'santo', u'work', u'job', u'agreement', u'indigen']
[u'scheme', u'aim', u'boost', u'town', u'camp', u'children', u'school']
[u'search', u'kayak', u'wind']
[u'search', u'suspend', u'miss', u'adventur']
[u'shoaib', u'doubt', u'world']
[u'shorten', u'call', u'enrol', u'campaign', u'ahead']
[u'stern', u'warn']
[u'stop', u'whing']
[u'storm', u'bring', u'good', u'south', u'west']
[u'storm', u'wreak', u'havoc', u'central', u'west']
[u'surgeon', u'perform', u'grind', u'break', u'heart', u'oper']
[u'symond', u'worth', u'risk', u'buchanan']
[u'takeov', u'prevent', u'qanta', u'share', u'price', u'drop', u'report']
[u'jolt', u'need', u'punter']
[u'tiger', u'hobart']
[u'toddler', u'buri', u'year', u'death']
[u'goal', u'ronaldinho', u'put', u'barca', u'clear']
[u'charg', u'import', u'ecstasi']
[u'claim', u'evid', u'iran', u'suppli', u'weapon', u'iraq']
[u'democrat', u'sceptic', u'iran', u'weapon', u'claim']
[u'militari', u'advis', u'warn', u'iraq', u'troop']
[u'govt', u'want', u'drought', u'entir', u'western']
[u'victorian', u'polic', u'union', u'face', u'bulli', u'claim']
[u'launch', u'home', u'loan', u'scheme', u'incom', u'earner']
[u'weekend', u'downpour', u'busi']
[u'west', u'wimmera', u'shire', u'tourism', u'approach']
[u'australia', u'head']
[u'wit', u'admit', u'give', u'fals', u'evid', u'catt', u'case']
[u'wolfmoth', u'grammi']
[u'wolfmoth', u'win', u'grammi', u'award']
[u'peopl', u'diagnos', u'coli']
[u'accus', u'bias', u'lebanon', u'report']
[u'accus', u'wast', u'money', u'reloc']
[u'aborigin', u'centr', u'seek', u'help', u'remain', u'case']
[u'govt', u'accus', u'cover', u'school', u'closur']
[u'rental', u'crisi', u'expect', u'worsen']
[u'want', u'chang', u'bail', u'law', u'fatal', u'crash']
[u'alic', u'spring', u'meet', u'debat', u'town', u'status']
[u'allsopp', u'back', u'home', u'fan', u'sell', u'final']
[u'question', u'haul', u'weapon']
[u'assist', u'minist', u'glori']
[u'kill', u'shoot']
[u'aust', u'commit', u'timor', u'mission', u'ambassador']
[u'australia', u'jaqu', u'cover', u'clark']
[u'australia', u'chanc', u'host', u'asian', u'fade']
[u'aust', u'team', u'allow', u'search', u'vietnam', u'grave']
[u'author', u'say', u'blue', u'green', u'alga', u'affect']
[u'backbench', u'criticis', u'democrat', u'spray']
[u'backyard', u'intrud', u'retire', u'bear']
[u'bacteria', u'close', u'lilydal', u'swim', u'pool']
[u'baghdad', u'blast', u'kill']
[u'basin', u'commiss', u'air', u'concern', u'fall', u'snowi']
[u'basin', u'commiss', u'face', u'dri', u'water', u'storag']
[u'beatti', u'seek', u'public', u'input', u'north', u'bank']
[u'brack', u'pledg', u'support', u'side', u'polic']
[u'branko', u'culina', u'join', u'sydney']
[u'brewarrina', u'poor', u'health', u'stat', u'blame']
[u'bridestow', u'lavend', u'farm', u'sell']
[u'bridgetown', u'greenbush', u'councillor', u'number']
[u'british', u'high', u'court', u'grant', u'injuct', u'aborigin']
[u'brock', u'museum', u'plan', u'yeppoon']
[u'bronco', u'depart', u'world', u'club', u'challeng']
[u'brown', u'warn', u'sanction', u'coal', u'export']
[u'bruce', u'highway', u'work']
[u'bush', u'promis', u'pursu', u'diplomaci', u'iran', u'issu']
[u'busi', u'fear', u'rule', u'cost', u'job']
[u'bust', u'sidelin', u'morley']
[u'social', u'chang', u'help', u'indigen']
[u'camilla', u'undergo', u'routin', u'hysterectomi']
[u'canadian', u'committe', u'urg', u'troop', u'pull']
[u'champion', u'cyclist', u'charg', u'crash', u'leav', u'rider']
[u'channel', u'countri', u'flood']
[u'children', u'lock', u'cage', u'bribi', u'care']
[u'christma', u'come', u'twice']
[u'closer']
[u'coalit', u'push', u'feder', u'action', u'dental']
[u'coalit', u'agricultur', u'cost']
[u'cochlear', u'post', u'record', u'half', u'year', u'profit']
[u'compani', u'back', u'premier', u'carbon', u'trade', u'pledg']
[u'compani', u'want', u'govt', u'subsidi', u'pulp', u'mill']
[u'coron', u'hold', u'inquest', u'toddler', u'death']
[u'costello', u'say', u'imit', u'econom', u'polici']
[u'council', u'defend', u'pigeon', u'loft', u'decis']
[u'council', u'hop', u'lure', u'singapor', u'carrier']
[u'council', u'reject', u'brothel', u'plan', u'applic']
[u'council', u'reject', u'water', u'tank', u'plan']
[u'council', u'vote', u'wind', u'farm', u'plan']
[u'council', u'urg', u'railway', u'land', u'free']
[u'court', u'battl', u'begin', u'freight', u'deal']
[u'court', u'jail', u'teen', u'year', u'patricid']
[u'push', u'inland', u'dentistri', u'school']
[u'miss', u'inflow', u'weekend', u'rain']
[u'danc', u'lion', u'help', u'open', u'parliament']
[u'deputi', u'mayor', u'defend', u'relationship', u'premier']
[u'dougla', u'shire', u'councillor', u'plan', u'respons', u'sack']
[u'downer', u'defend']
[u'downer', u'deni', u'diplomat', u'tension', u'thaksin', u'visit']
[u'driver', u'hospit', u'charg', u'crash', u'death']
[u'educ', u'dept', u'defend', u'block', u'request']
[u'entri', u'arriv', u'portrait', u'competit']
[u'timor', u'ask', u'extend', u'peacekeep', u'mission']
[u'timor', u'seek', u'extens', u'peacekeep', u'mission']
[u'judg', u'daughter', u'jail', u'arm', u'robberi']
[u'labor', u'candid', u'lose', u'licenc', u'drink', u'drive']
[u'minist', u'order', u'burn', u'balibo', u'bodi', u'court']
[u'explos', u'maker', u'build', u'plant']
[u'export', u'coal', u'fight', u'climat', u'chang', u'kelli']
[u'extra', u'support', u'announc', u'drought', u'stricken']
[u'farmer', u'urg', u'feder', u'govt', u'murray']
[u'farm', u'group', u'echo', u'rethink']
[u'father', u'charg', u'infanticid', u'grant', u'bail']
[u'figo', u'level', u'career']
[u'firebrac', u'overhead', u'powerlin', u'remov']
[u'crew', u'contain', u'line', u'nation', u'park']
[u'firefight', u'contain', u'nagambi', u'blaze']
[u'fisheri', u'offic', u'polic', u'marron', u'season']
[u'kill', u'gunman', u'open', u'utah', u'mall']
[u'slave', u'call', u'japanes', u'apolog']
[u'dead', u'philadelphia', u'shoot']
[u'glenelg', u'bid', u'gunn', u'pulp']
[u'golf', u'club', u'handov', u'time']
[u'golf', u'get']
[u'goulburn', u'doubl', u'anthrax', u'vaccin', u'program']
[u'govt', u'consid', u'transit', u'period', u'invest']
[u'govt', u'drop', u'rail', u'tunnel', u'plan']
[u'govt', u'rule', u'set', u'mine', u'rule', u'apec', u'talk']
[u'govt', u'consid', u'fund', u'legal', u'aborigin']
[u'grammi', u'award', u'photo']
[u'great', u'artesian', u'basin', u'studi', u'look', u'irrig']
[u'green', u'urg', u'parti', u'disclos', u'donat']
[u'group', u'fear', u'govt', u'staff', u'senat']
[u'gumnen', u'kill', u'shoot']
[u'gutsi', u'pain', u'seal', u'point']
[u'health', u'group', u'rais', u'indigen', u'kidney', u'diseas', u'fear']
[u'hear', u'begin', u'disput', u'uranium', u'land', u'claim']
[u'hick', u'resolut', u'elect']
[u'hick', u'trial', u'month', u'away']
[u'hinz', u'wall', u'rais']
[u'howard', u'rudd', u'face', u'iraq']
[u'howard', u'rudd', u'iraq']
[u'howard', u'say', u'iraq', u'defeat', u'resound', u'asia']
[u'howard', u'water', u'plan', u'rush', u'ahead', u'elect', u'say']
[u'intel', u'unveil', u'super', u'chip', u'technolog']
[u'iranian', u'presid', u'deni', u'arm', u'iraqi', u'milit']
[u'jakarta', u'hospit', u'crowd', u'flood', u'victim']
[u'jongewaard', u'charg', u'crash', u'leav', u'cyclist']
[u'judg', u'decid', u'case', u'appeal']
[u'jump', u'help', u'prevent', u'pregnanc', u'brit', u'believ']
[u'kayak', u'cross', u'bass', u'strait', u'pulp', u'campaign']
[u'labor', u'nation', u'launch', u'elect', u'campaign']
[u'labor', u'senat', u'angri', u'perk', u'minist']
[u'labor', u'senat', u'hyster', u'minist']
[u'landhold', u'super', u'pipe', u'detail']
[u'landhold', u'pacif', u'highway', u'upgrad', u'advic']
[u'lead', u'riverland', u'die']
[u'learner', u'driver', u'jail', u'kill', u'friend', u'crash']
[u'lebanon', u'blast', u'kill', u'wind']
[u'leonora', u'consid', u'sport', u'club', u'centr']
[u'liber', u'hold', u'esper', u'confer']
[u'lion', u'confid', u'lappin', u'recoveri']
[u'lismor', u'forum', u'allow', u'trucki', u'issu']
[u'lismor', u'charg', u'murder']
[u'local', u'teacher', u'centr', u'excel']
[u'macfarlan', u'unsur', u'carbon', u'trade', u'merit']
[u'mackay', u'council', u'divid', u'wharf', u'precinct', u'work']
[u'arrest', u'weapon', u'stash', u'home']
[u'plead', u'guilti', u'light', u'gippsland', u'fire']
[u'market', u'blast', u'kill', u'baghdad']
[u'market', u'close', u'record', u'high', u'bank', u'gain']
[u'martial', u'declar', u'guinea']
[u'mayor', u'stand', u'swim', u'centr', u'trip']
[u'medic', u'board', u'finalis', u'patel', u'evid']
[u'meet', u'hear', u'split', u'hunt']
[u'meet', u'debat', u'futur', u'yeppoon', u'hospit']
[u'melb', u'bris', u'rail', u'link', u'lobbyist', u'support']
[u'mice', u'clone', u'skin', u'cell', u'time', u'studi']
[u'mine', u'warden', u'deni', u'right', u'uranium']
[u'miss', u'man', u'bodi', u'recov', u'river']
[u'miss', u'man', u'sister', u'give', u'hope']
[u'mix', u'messag', u'busi', u'confid']
[u'polic', u'drug', u'test']
[u'rain', u'fall', u'wide', u'burnett']
[u'blame', u'darwin', u'drug', u'dealer', u'batchelor', u'crime']
[u'urg', u'compo', u'catt', u'jail', u'time']
[u'urg', u'light', u'council', u'quit', u'immedi']
[u'munc', u'lawyer', u'challeng', u'tip', u'bet', u'wit']
[u'murray', u'darl', u'inflow', u'record']
[u'closer']
[u'coach', u'culina', u'throw', u'gauntlet']
[u'condit', u'add', u'wind', u'farm', u'develop']
[u'group', u'tri', u'save', u'lourd', u'hospit']
[u'report', u'dead', u'lebanon', u'blast']
[u'korea', u'nuclear', u'deal', u'inch', u'forward']
[u'korea', u'shut', u'nuclear', u'facil', u'deal']
[u'noth', u'korea', u'flag', u'dump', u'nuclear', u'ambit']
[u'recal', u'tuffey', u'world']
[u'pacif', u'nation', u'want', u'extend', u'border']
[u'palestinian', u'appeal', u'boycott']
[u'parti', u'urg', u'manag', u'inquiri']
[u'polic', u'appeal', u'help', u'catch', u'jewelleri', u'thiev']
[u'polic', u'call', u'bodi', u'caravan', u'park']
[u'polic', u'divis', u'consid', u'recruit']
[u'polic', u'interview', u'teen', u'school', u'vandalis']
[u'polic', u'firework', u'blast', u'victim']
[u'polic', u'probe', u'naracoort', u'attack']
[u'polic', u'warn', u'road', u'motorbik', u'rid', u'danger']
[u'polic', u'road', u'crash', u'victim']
[u'punter', u'say', u'symond', u'safe']
[u'push', u'central', u'aust', u'drought']
[u'qanta', u'talk', u'fail', u'satisfi', u'backbench']
[u'govt', u'want', u'patel', u'hear', u'close', u'public']
[u'health', u'prosecut', u'breach', u'anti']
[u'ram', u'whale', u'ship', u'counter', u'product']
[u'research', u'hope', u'har', u'zebrafish', u'abil']
[u'research', u'look', u'fish', u'diseas', u'cure']
[u'resid', u'dark', u'storm', u'lash', u'rockhampton']
[u'reunit', u'polic', u'visit', u'australia']
[u'robberi', u'suspect', u'extradit']
[u'robina', u'transport', u'finish']
[u'roger', u'call', u'wildcat', u'lift', u'play', u'off']
[u'ronaldo', u'delight', u'debut']
[u'rooster', u'tiger', u'gear', u'foundat']
[u'rudd', u'attack', u'water', u'plan', u'fast', u'track']
[u'rudd', u'polici', u'destabilis', u'iraq', u'say']
[u'rugbi', u'head']
[u'sever', u'weather', u'warn', u'north', u'coast']
[u'sharehold', u'ballarat', u'goldfield', u'merger']
[u'sheep', u'graze', u'plan', u'get']
[u'spot']
[u'stat', u'high', u'life', u'expect']
[u'storm', u'bring', u'relief', u'drought', u'stricken']
[u'studi', u'find', u'bing', u'drink', u'consid', u'accept']
[u'suicid', u'truck', u'bomber', u'kill', u'near', u'baghdad', u'colleg']
[u'summit', u'draw', u'eyr', u'peninsula', u'water']
[u'surgeon', u'perform', u'grind', u'break', u'heart', u'oper']
[u'survey', u'show', u'workchoic', u'legisl', u'perform']
[u'symond', u'name', u'world', u'squad']
[u'dead', u'shoot']
[u'tentat', u'deal', u'strike', u'north', u'korea', u'talk']
[u'tentat', u'deal', u'strike', u'korean', u'nuclear', u'program']
[u'territori', u'will', u'consid', u'reduc', u'liquor']
[u'test', u'time', u'ferrari']
[u'tiger', u'wall', u'beller']
[u'toddler', u'hospit', u'snake', u'bite']
[u'turnbul', u'blast', u'irrespons', u'whale', u'protest']
[u'union', u'seek', u'court', u'rule', u'local', u'council', u'staff']
[u'visit', u'consid', u'geopark']
[u'world', u'heritag', u'centr', u'chief', u'meet']
[u'uraniumon', u'approv', u'merger']
[u'scienc', u'forum', u'focus', u'climat', u'chang', u'energi']
[u'viabil', u'studi', u'nullinga', u'plan']
[u'victoria', u'call', u'nation', u'scalp', u'crackdown']
[u'washington', u'play', u'howard', u'obama', u'comment']
[u'water', u'price', u'reach', u'record', u'high']
[u'weapon', u'stash', u'sydney', u'properti']
[u'weapon', u'stash', u'danger', u'custom']
[u'white', u'hous', u'distanc', u'howard', u'obama']
[u'white', u'hous', u'play', u'howard', u'obama', u'comment']
[u'william', u'toyota', u'team', u'webber']
[u'wine', u'grape', u'group', u'say', u'mcguigan', u'offer', u'unfair']
[u'wine', u'industri', u'predict', u'smaller', u'crop']
[u'wine', u'industri', u'urg', u'fair', u'price', u'grower']
[u'friend', u'like']
[u'wit', u'tell', u'indonesian', u'burn', u'bodi']
[u'woman', u'accus', u'give', u'valium', u'children', u'refus']
[u'woman', u'refus', u'bail', u'dad', u'plastic', u'wrap', u'death']
[u'women', u'outnumb', u'agricultur', u'colleg']
[u'women', u'fall', u'workchoic', u'studi']
[u'work', u'begin', u'rail', u'cross', u'loop', u'extens']
[u'yudhoyono', u'sue', u'volcano']
[u'nomin', u'council', u'spot']
[u'opposit', u'renew', u'stanhop']
[u'actu', u'target', u'vulner', u'coalit', u'seat']
[u'investig', u'rudd', u'white', u'powder', u'prank']
[u'scrap', u'qanta', u'allianc', u'plan']
[u'alcoa', u'share', u'rise', u'amid', u'takeov', u'talk']
[u'alga', u'west', u'tamar', u'water', u'complaint']
[u'alic', u'drink', u'qualiti', u'life']
[u'alonso', u'blame', u'messeng']
[u'anderson', u'question', u'qanta', u'deal', u'merit']
[u'assist', u'packag', u'disadvantag', u'murray']
[u'auspin', u'tell', u'lennon', u'suppli', u'decis']
[u'australian', u'firm', u'export']
[u'australian', u'troop', u'prepar', u'taliban', u'offens']
[u'balibo', u'kill', u'intent', u'inquest', u'tell']
[u'bali', u'lawyer', u'resubmit', u'challeng']
[u'beer', u'plus', u'milk', u'equal', u'bilk']
[u'bourk', u'local', u'struggl', u'drought', u'affect']
[u'bowen', u'downpour', u'give', u'grower', u'head', u'start']
[u'break', u'hill', u'boom', u'draw', u'local', u'home']
[u'bomb', u'south', u'east', u'iran', u'dead']
[u'bushrang', u'look', u'solid', u'stump']
[u'busi', u'chamber', u'reject', u'apprenticeship', u'plan']
[u'shut', u'wasteland', u'park']
[u'camel', u'number', u'cost', u'landhold']
[u'carnarvon', u'plan', u'meet', u'get', u'heat']
[u'carr', u'invit', u'labor', u'elect', u'launch']
[u'sale', u'opportun', u'turn', u'highway', u'robberi']
[u'profit']
[u'centenni', u'insist', u'coal', u'viabl']
[u'clark', u'appeal', u'rape', u'verdict']
[u'closer']
[u'coalit', u'debat', u'manag', u'invest', u'scheme']
[u'communiti', u'urg', u'talk', u'heathcot', u'doctor']
[u'concern', u'rais', u'grain', u'trader', u'insolv']
[u'consum', u'confid', u'shrug', u'rate', u'rise']
[u'corbi', u'lawyer', u'confid', u'claim', u'wont', u'affect']
[u'costello', u'attack', u'rudd', u'econom', u'polici']
[u'council', u'await', u'ammonium', u'nitrat', u'plant', u'decis']
[u'council', u'call', u'recycl']
[u'council', u'consid', u'damn', u'entertain', u'centr']
[u'council', u'consid', u'rubbish', u'collect', u'altern']
[u'councillor', u'threaten', u'block', u'wooli', u'develop']
[u'councillor', u'urg', u'closer', u'look', u'financ']
[u'council', u'move', u'protect', u'dun', u'veget']
[u'court', u'blame', u'magistr', u'bail', u'decis']
[u'csiro', u'deni', u'scientist', u'strongarm', u'govt']
[u'darwin', u'host', u'clean', u'facil']
[u'defenc', u'dept', u'deni', u'get', u'warn', u'westralia']
[u'dental', u'care', u'problem', u'caus', u'state', u'abbott', u'say']
[u'digger', u'brace', u'baghdad', u'surg', u'fall']
[u'dinotain', u'hous', u'million', u'fossil']
[u'dont', u'expect', u'bail', u'vail', u'tell', u'qanta']
[u'downer', u'attack', u'labor', u'iraq', u'withdraw', u'logic']
[u'draper', u'eye', u'tour', u'profession']
[u'drought', u'catch', u'urban', u'rural', u'farmer']
[u'winter', u'blame', u'lower', u'wine', u'grape', u'crop']
[u'earli', u'withdraw', u'caus', u'catastroph']
[u'electr', u'ant', u'infest', u'second', u'area']
[u'emerg', u'water', u'suppli', u'loddon']
[u'excav', u'mishap', u'cut', u'cannonval', u'power']
[u'feder', u'labor', u'independ']
[u'state', u'wont', u'contest', u'feder', u'elect']
[u'farmer', u'secur', u'narromin', u'council', u'spot']
[u'farm', u'group', u'cast', u'doubt', u'drought', u'packag']
[u'faulkner', u'air', u'concern', u'cobb', u'entitl']
[u'govt', u'refus', u'rescu', u'auspin']
[u'fenc', u'stop', u'rock', u'attack', u'car']
[u'ferguson', u'bite', u'dust', u'bangalor']
[u'extend', u'kosmina', u'deadlin']
[u'figo', u'join', u'ittihad']
[u'firebird', u'stand', u'firm', u'contract', u'disput']
[u'recoveri', u'work', u'continu', u'dwellingup']
[u'flanneri', u'call', u'climat', u'chang']
[u'forb', u'council', u'blame', u'crime', u'rate', u'polic', u'shortag']
[u'preacher', u'admit', u'sexual', u'abus']
[u'ambassador', u'criticis', u'north', u'korea', u'deal']
[u'fruit', u'outbreak', u'report', u'major', u'fruit', u'grow']
[u'govt', u'defam', u'opposit', u'coal', u'polici']
[u'govt', u'hous', u'scheme', u'promis', u'region', u'boost']
[u'govt', u'label', u'arrog', u'fluorid', u'respons']
[u'govt', u'pledg', u'extra', u'eastern', u'recoveri']
[u'govt', u'urg', u'extend', u'broadband', u'subsidi']
[u'group', u'unveil', u'dairi', u'expans', u'plan']
[u'hindu', u'nationalist', u'protest', u'valentin']
[u'hodgson', u'replac', u'drop', u'fava']
[u'howard', u'dodg', u'rudd', u'request', u'iraq', u'debat']
[u'hussey', u'seek', u'confid', u'boost', u'zealand']
[u'allow', u'samuel', u'play', u'world']
[u'inner', u'citi', u'bypass', u'plan', u'releas']
[u'irrig', u'detail', u'water', u'plan']
[u'journalist', u'bodi', u'dress', u'armi', u'uniform']
[u'judg', u'order', u'omar', u'sharif', u'undergo', u'anger']
[u'kalgoorli', u'cigarett', u'promot', u'probe']
[u'katherin', u'want', u'blanket', u'alcohol']
[u'labor', u'hit', u'nativ', u'titl', u'chang']
[u'land', u'council', u'consid', u'nativ']
[u'leader', u'courag', u'iraq', u'debat']
[u'lebanes', u'demonstr', u'rememb', u'slay', u'hariri']
[u'littl', u'pebbl', u'face', u'teen', u'assault', u'charg']
[u'arrest', u'gulgong', u'shoot']
[u'charg', u'camera', u'hide', u'bathroom']
[u'die', u'gulgong', u'shoot']
[u'drown', u'perth', u'beach']
[u'face', u'court', u'accus', u'lismor', u'murder']
[u'market', u'rise', u'amid', u'mine', u'takeov', u'talk']
[u'mayor', u'back', u'bruce', u'highway', u'work']
[u'mayor', u'expect', u'better', u'water', u'qualiti']
[u'merrick', u'find', u'humour', u'kosmina', u'saga']
[u'midnight', u'miner', u'case', u'wrap']
[u'firm', u'valu', u'child', u'care']
[u'mine', u'compani', u'push', u'dawson', u'river']
[u'minist', u'admit', u'darwin', u'hospit', u'respons', u'time', u'poor']
[u'minist', u'disput', u'find', u'women', u'wag']
[u'mix', u'lyric', u'laundri']
[u'molik', u'open', u'bangalor', u'account']
[u'anthrax', u'cattl', u'death', u'confirm']
[u'condit', u'live', u'export', u'ship']
[u'detail', u'need', u'water', u'plan', u'irrig']
[u'drill', u'support', u'traveston', u'site', u'govt']
[u'shower', u'forecast', u'sunshin', u'coast']
[u'warn', u'chopper', u'project', u'specul']
[u'multipl', u'drug', u'dose', u'suspect', u'brimbl', u'death']
[u'multiplex', u'say', u'wembley', u'readi', u'final']
[u'munc', u'case', u'judg', u'readi', u'verdict']
[u'museum', u'backer', u'accus', u'govt', u'neglect']
[u'mysteri', u'surround', u'indigen', u'graffiti']
[u'nation', u'determin', u'tweed']
[u'nation', u'launch', u'campaign', u'tamworth']
[u'navi', u'famili', u'royal', u'commiss']
[u'issu', u'ultimatum', u'pig']
[u'netherland', u'britain', u'best', u'rich']
[u'newman', u'accus', u'steal']
[u'newman', u'talk', u'north', u'bank', u'plan']
[u'plant', u'turn', u'coal', u'wast', u'power']
[u'nixon', u'say', u'talk', u'part', u'blame', u'tension']
[u'korea', u'agre', u'nuclear', u'deal']
[u'rush', u'north', u'bank', u'plan', u'govt', u'say']
[u'nurs', u'ralli', u'workchoic']
[u'opposit', u'back', u'govt', u'ethanol', u'plan']
[u'opposit', u'deni', u'port', u'kembla', u'trade', u'backflip']
[u'organ', u'donat', u'guidelin', u'chang']
[u'organ', u'transplant', u'success', u'rat', u'improv']
[u'owen', u'delight', u'run']
[u'pakistan', u'risk', u'akhtar', u'asif']
[u'paroo', u'mayor', u'say', u'water', u'develop', u'vital']
[u'patton', u'grab', u'knife', u'stay', u'aliv', u'court']
[u'penguin', u'heritag', u'list', u'doubt']
[u'pill', u'press', u'drug', u'alleg', u'baggaley', u'home']
[u'plant', u'offset', u'western', u'power', u'carbon']
[u'dodg', u'request', u'iraq', u'debat']
[u'pay', u'broom', u'trip']
[u'polic', u'hunt', u'suspect', u'arsonist', u'fire']
[u'polic', u'hunt', u'youth', u'hold']
[u'policeman', u'escap', u'charg', u'month', u'probe']
[u'polic', u'seiz', u'hoon', u'perman']
[u'polic', u'investig', u'inappropri', u'email']
[u'pont', u'leav', u'door', u'open', u'unlucki', u'clark']
[u'post', u'mortem', u'angler']
[u'prison', u'allow', u'continu', u'eyr', u'peninsula']
[u'prison', u'sentenc', u'extend', u'assault']
[u'prison', u'offic', u'fear', u'weapon', u'stockpil']
[u'queanbeyan', u'outdoor', u'din', u'polici', u'criticis']
[u'raider', u'carney', u'plead', u'guilti', u'drink', u'drive']
[u'rain', u'littl', u'reduc', u'drought', u'declar']
[u'rain', u'help', u'lift', u'crop', u'prospect']
[u'rann', u'beatti', u'reach', u'agreement', u'water', u'plan']
[u'stalwart', u'appoint', u'deputi', u'governor']
[u'redback', u'post', u'easi', u'bull']
[u'red', u'place', u'code', u'silenc', u'barn']
[u'report', u'highlight', u'bulok', u'council', u'bulli']
[u'research', u'push', u'virtual', u'water', u'trade', u'scheme']
[u'roar', u'prepar', u'sign', u'tiatto']
[u'rspca', u'want', u'live', u'sheep', u'export', u'egypt', u'ban']
[u'rudd', u'fail', u'debat', u'iraq', u'parliament']
[u'rudd', u'offic', u'evacu', u'suspect', u'packag']
[u'sack', u'marin', u'skipper', u'throw', u'lifelin']
[u'govt', u'pour', u'cold', u'water', u'pulp', u'subsidi', u'plea']
[u'sandmin', u'compani', u'appeal', u'expans', u'block']
[u'santo', u'blame', u'indon', u'disast']
[u'schwarzer', u'hero', u'boro', u'scrape']
[u'search', u'miss', u'bodi', u'boarder', u'suspend']
[u'seven', u'charg', u'shop', u'raid']
[u'harass', u'claim', u'shock', u'council', u'general', u'manag']
[u'share', u'market', u'end', u'record', u'high']
[u'shire', u'consid', u'establish', u'medic', u'clinic']
[u'shire', u'see', u'benefit', u'inpex', u'plan']
[u'size', u'matter', u'fish', u'world']
[u'solomon', u'seek', u'meet', u'howard', u'heal', u'rift']
[u'rotten']
[u'south', u'coast', u'tourism', u'campaign', u'blitz']
[u'station', u'manag', u'air', u'telescop', u'plan', u'fear']
[u'stop', u'dodgi', u'doctor', u'enter', u'aust', u'govt', u'tell']
[u'stuart', u'highway', u'reopen', u'spill']
[u'studi', u'reveal', u'goat', u'meatwork', u'feasibl']
[u'studi', u'say', u'central', u'ethanol', u'plant', u'viabl']
[u'super', u'style', u'scheme', u'young', u'hous', u'buyer', u'propos']
[u'sydney', u'look', u'begin']
[u'teen', u'charg', u'warialda', u'tripl', u'fatal']
[u'teen', u'face', u'court', u'gatton', u'stab']
[u'teen', u'face', u'trial', u'accus', u'school', u'stab']
[u'thiess', u'accus', u'abus', u'accid', u'report']
[u'titan', u'heat', u'turncoat', u'turner']
[u'toilet', u'block', u'close', u'amid', u'public', u'liabil']
[u'tornado', u'ace', u'repres', u'rugbi']
[u'tourism', u'industri', u'say', u'uniform', u'school', u'holiday']
[u'townsvill', u'rememb', u'fall', u'soldier']
[u'tuross', u'lake', u'reopen']
[u'tweed', u'administr', u'call', u'quit']
[u'underpay', u'indigen', u'worker', u'secur', u'money']
[u'strength', u'aussi']
[u'unpopular', u'pool', u'redevelop', u'rule']
[u'odd', u'north', u'korean', u'nuclear', u'deal']
[u'blast', u'china', u'test', u'see', u'arm', u'race', u'space']
[u'confirm', u'chopper', u'shoot', u'iraq']
[u'critic', u'howard', u'hypocrit']
[u'debat', u'iraq', u'troop', u'surg']
[u'gunman', u'identifi', u'bosnian', u'refuge']
[u'mix', u'reaction', u'north', u'korean', u'nuclear', u'deal']
[u'politician', u'debat', u'bush', u'iraq', u'troop', u'plan']
[u'vcat', u'green', u'light', u'tree', u'clear']
[u'veteran', u'welcom', u'vietnam', u'bodi', u'search']
[u'wallac', u'monitor', u'water', u'rebat', u'scheme', u'fund']
[u'warrant', u'issu', u'mother', u'accus', u'poison', u'babi']
[u'westralia', u'parent', u'want', u'inquest', u'reopen']
[u'white', u'powder', u'scare', u'rudd', u'offic']
[u'wonthaggi', u'accus', u'stab', u'murder']
[u'worker', u'need', u'futur', u'proof', u'live', u'shorten']
[u'writer', u'say', u'furor', u'crown', u'princess', u'book', u'bizarr']
[u'rat', u'dvds', u'seiz', u'king', u'cross', u'porn', u'raid']
[u'youth', u'detent', u'centr', u'fenc', u'mistak', u'committe']
[u'zaheer', u'restrict', u'lanka']
[u'zaheer', u'shin', u'india', u'lanka']
[u'aust', u'children', u'work', u'illeg']
[u'children', u'live', u'poor', u'household']
[u'port', u'hedland', u'plant', u'demolish']
[u'abbott', u'hear', u'border', u'doctor', u'shortag']
[u'aid', u'virus', u'weak', u'detect', u'help', u'vaccin']
[u'alpaca', u'farmer', u'secur', u'chines', u'export', u'contract']
[u'reopen', u'nomin', u'flynn']
[u'ambul', u'servic', u'stop', u'paramed', u'strike']
[u'appeal', u'lodg', u'plan', u'molong', u'landfil']
[u'arctic', u'monkey', u'killer', u'shine', u'brit', u'award']
[u'ashley', u'detent', u'centr', u'employe', u'call', u'inmat']
[u'asic', u'grill', u'propos', u'qanta', u'takeov']
[u'asic', u'launch', u'action', u'jam', u'hardi']
[u'asic', u'launch', u'civil', u'proceed', u'jam']
[u'asic', u'launch', u'legal', u'action', u'jam', u'hardi']
[u'asic', u'take', u'action', u'jam', u'hardi']
[u'athlet', u'impress', u'aurukun', u'sport', u'talent']
[u'australia', u'ask', u'help', u'stricken', u'whale', u'ship']
[u'australian', u'woman', u'arrest', u'vietnames', u'heroin', u'bust']
[u'worri', u'skill', u'shortag', u'shear']
[u'barg', u'deliv', u'koolan', u'iron', u'suppli']
[u'beller', u'clash', u'head', u'excit', u'climax']
[u'turnout', u'drought', u'session']
[u'black', u'cap', u'wari', u'understrength', u'australia']
[u'bureau', u'issu', u'flood', u'warn', u'leigh', u'creek', u'area']
[u'busi', u'chamber', u'get', u'chief']
[u'busi', u'earli', u'outdoor', u'din']
[u'canada', u'approv', u'legisl', u'enforc', u'kyoto']
[u'canada', u'squad']
[u'capit', u'prim', u'wnbl', u'decid']
[u'captain', u'hussey', u'mission']
[u'casa', u'inspect', u'ball', u'airstrip', u'council', u'reject']
[u'cat', u'fox', u'contribut', u'disappear', u'woyli']
[u'chanc', u'posit', u'sugarcan']
[u'child', u'drown', u'hopeval', u'bathtub']
[u'closer']
[u'closer']
[u'closur', u'sadden', u'tour', u'oper']
[u'launch', u'program', u'rais', u'flood', u'awar']
[u'coalit', u'frustrat', u'mount', u'hick', u'case']
[u'coalit', u'press', u'howard', u'hick', u'trial']
[u'compani', u'track', u'gold', u'product']
[u'concern', u'rais', u'countri', u'train', u'run', u'time']
[u'confer', u'focus', u'south', u'west', u'econom', u'social']
[u'happi', u'hear']
[u'council', u'administr', u'doesnt', u'favour', u'elector']
[u'council', u'consid', u'mandatori', u'rainwat', u'tank']
[u'council', u'declar', u'maroochi', u'shire', u'nuclear', u'free']
[u'council', u'hop', u'lake', u'cargelligo', u'water', u'flow', u'today']
[u'council', u'shop', u'centr', u'discuss', u'railway', u'land']
[u'council', u'urg', u'road']
[u'council', u'vote', u'peppercorn', u'rent', u'propos']
[u'counsel', u'offer', u'student', u'fatal']
[u'crew', u'continu', u'battl']
[u'csiro', u'chairman', u'stand', u'asid', u'jam', u'hardi']
[u'dairi', u'duchess', u'produc', u'udder', u'amaz', u'milk']
[u'warn', u'alic', u'spring', u'develop', u'propos']
[u'deer', u'hunter', u'divid', u'region']
[u'defenc', u'dept', u'deni', u'westralia', u'warn', u'claim']
[u'depart', u'review', u'follow', u'highway']
[u'depress', u'bush', u'forum', u'begin', u'braidwood']
[u'dictatorship']
[u'doctor', u'hail', u'cancer', u'gene', u'discoveri']
[u'tuckerbox', u'stay']
[u'doubt', u'rais', u'paradis', u'benefit']
[u'probe', u'approv', u'cane', u'plant', u'claim']
[u'rhetor', u'decept']
[u'european', u'parliament', u'endors', u'damn', u'report']
[u'soldier', u'deni', u'wit', u'balibo', u'death']
[u'fair', u'trial', u'imposs', u'melbourn', u'terror', u'case']
[u'famili', u'friend', u'tribut', u'gomersal']
[u'farmer', u'market', u'stay', u'condit']
[u'farmer', u'polic', u'meet', u'discuss', u'plan', u'stop', u'crop']
[u'fear', u'japanes', u'sailor', u'kill', u'whale', u'ship', u'blaze']
[u'review', u'kosmina', u'submiss']
[u'firebird', u'plight', u'show', u'hole', u'workchoic', u'labor']
[u'flugg', u'pay', u'iraq', u'trip', u'senat', u'tell']
[u'food', u'suppli', u'deliv', u'flood', u'communiti']
[u'forum', u'highlight', u'singl', u'desk', u'support']
[u'gene', u'wrapper', u'discoveri', u'aid', u'cancer', u'fight']
[u'goldfield', u'nativ', u'titl', u'claimant', u'seek', u'time']
[u'govt', u'say', u'tweed', u'council', u'elect', u'sept']
[u'govt', u'unlik', u'recov', u'lebanes', u'evacu']
[u'gunner', u'extra', u'time']
[u'harbour', u'upgrad', u'promis', u'tourism', u'job', u'boost']
[u'henri', u'black', u'enjoy', u'rest', u'period']
[u'hewitt', u'seed', u'crash']
[u'hick', u'trial', u'year', u'away', u'lawyer', u'say']
[u'hospit', u'board', u'urg', u'consult', u'public']
[u'howard', u'denial']
[u'howard', u'hick']
[u'howard', u'hick', u'deadlin', u'joke', u'say', u'labor']
[u'make', u'memori', u'quicker']
[u'import', u'group', u'threaten', u'legal', u'action', u'prawn']
[u'indigen', u'teacher', u'take', u'prestigi', u'prize']
[u'inquiri', u'begin', u'crane', u'collaps']
[u'iraq', u'mission', u'wont', u'decad', u'howard', u'say']
[u'iraq', u'plan', u'work']
[u'iraq', u'wrong']
[u'jam', u'hardi', u'face', u'civil', u'proceed']
[u'japanes', u'whale', u'crew', u'work', u'extinguish', u'ship']
[u'jone', u'concern', u'refere', u'gregan']
[u'judg', u'refus', u'lift', u'woman', u'drive']
[u'karratha', u'immun', u'specialist', u'shortag']
[u'kosmina', u'slap', u'match']
[u'labor', u'back', u'propos', u'militari', u'base']
[u'lawyer', u'cast', u'doubt', u'alic', u'town', u'plan']
[u'leak', u'report', u'reveal', u'art', u'centr', u'project']
[u'clear', u'break', u'ankl']
[u'doubt', u'chappel', u'hadle', u'seri']
[u'legal', u'action', u'wont', u'affect', u'jam', u'hardi', u'compo', u'deal']
[u'lightn', u'strike', u'leav', u'resid', u'dark']
[u'local', u'hope', u'lead', u'open']
[u'locust', u'outbreak', u'prompt', u'spray', u'program']
[u'machineri', u'crush', u'melbourn']
[u'malthous', u'worri', u'rule', u'chang']
[u'charg', u'polic', u'offic', u'death']
[u'face', u'trial', u'robinval', u'stab', u'murder']
[u'maroochi', u'shire', u'highlight', u'poor', u'pool', u'safeti']
[u'masakadza', u'leav', u'zimbabw', u'squad']
[u'mayor', u'urg', u'drought', u'shake']
[u'melbourn', u'woman', u'complet', u'month', u'bali', u'drug']
[u'meyer', u'beat', u'return']
[u'west', u'teacher', u'shortag', u'remain']
[u'firm', u'urg', u'contribut', u'climat', u'chang']
[u'minist', u'aim', u'improv', u'qualiti', u'educ']
[u'minist', u'agre', u'improv', u'mine', u'sector']
[u'push', u'curfew', u'port', u'augusta', u'ceduna']
[u'urg', u'govt', u'spend', u'facil']
[u'green', u'light', u'legal', u'brothel']
[u'munc', u'verdict', u'delay', u'hong', u'kong']
[u'natur', u'resourc', u'dept', u'probe', u'illeg']
[u'hall', u'creek', u'hostel', u'cater', u'risk']
[u'imam', u'appoint', u'stop', u'embassi', u'interfer']
[u'militari', u'base', u'strengthen', u'aust', u'allianc']
[u'polic', u'superintend', u'kalgoorli', u'boulder']
[u'cattl', u'head', u'north', u'roma', u'saleyard']
[u'hospit', u'reach', u'nation', u'benchmark', u'iemma']
[u'expect', u'lift', u'dali', u'river', u'coli', u'warn']
[u'nuttal', u'accus', u'intimid']
[u'protest', u'target', u'howard', u'aust', u'troop']
[u'offic', u'die', u'strike']
[u'olyroo', u'qualifi', u'round']
[u'miss', u'japanes', u'whale', u'ship']
[u'opposit', u'highlight', u'student', u'websit', u'concern']
[u'opposit', u'hit', u'delay', u'port', u'phillip']
[u'opposit', u'school', u'counsellor', u'pledg']
[u'orang', u'polic', u'escal', u'staff', u'disput']
[u'outback', u'river', u'system', u'better', u'rain']
[u'pcyc', u'back', u'push', u'youth', u'activ']
[u'pig', u'confid', u'stay', u'aliv']
[u'pirsa', u'play', u'lobster', u'zone', u'manag', u'worri']
[u'wont', u'iraq', u'pull', u'date']
[u'polic', u'investig', u'evelyn', u'machineri', u'death']
[u'polic', u'offic', u'appoint', u'advis', u'senior']
[u'plate', u'driver', u'accus', u'tow', u'cyclist']
[u'privat', u'equiti', u'deal', u'riski']
[u'prosecutor', u'seek', u'jail', u'sentenc', u'timor']
[u'push', u'water', u'grid', u'target']
[u'push', u'erad', u'simpson', u'feral', u'ant']
[u'scientist', u'develop', u'virus', u'filter']
[u'racist', u'polic', u'email', u'outrag', u'aborigin', u'justic']
[u'rail', u'carriag', u'track', u'revamp']
[u'rain', u'storm', u'death', u'toll', u'india', u'reach']
[u'razorback', u'stay']
[u'research', u'group', u'deter', u'flanneri', u'comment']
[u'research', u'show', u'brisban', u'resid', u'water']
[u'river', u'dirt', u'cut', u'water', u'suppli']
[u'riverina', u'green', u'elect', u'promis']
[u'road', u'repair', u'wash', u'away', u'heavi', u'rain']
[u'roadwork', u'expect', u'caus', u'south', u'west', u'highway']
[u'erupt', u'unseal', u'ferri', u'road']
[u'irrig', u'angri', u'water', u'talk', u'snub']
[u'irrig', u'disappoint', u'exclus', u'water']
[u'scott', u'readi', u'sunni', u'riviera', u'european']
[u'search', u'miss', u'paraglid']
[u'senior', u'recov', u'bizarr', u'home', u'assault']
[u'sewag', u'spill', u'expect', u'long', u'term']
[u'sheep', u'organis', u'hope', u'event', u'return']
[u'shop', u'centr', u'develop', u'await', u'council', u'decis']
[u'site', u'choos', u'chines', u'templ', u'contamin']
[u'skinstad', u'return', u'boost', u'unbeaten', u'shark']
[u'slim', u'dusti', u'song', u'uncov', u'year']
[u'south', u'korea', u'resum', u'talk', u'north']
[u'spill', u'prompt', u'grape', u'truck', u'remind']
[u'state', u'care', u'abus', u'inquiri', u'near']
[u'stoner', u'say', u'health', u'budget', u'cover', u'grafton', u'hospit']
[u'summit', u'hear', u'educ', u'deliveri', u'internet']
[u'surfer', u'bodi', u'sawtel']
[u'sydney', u'diver', u'join', u'search', u'miss', u'bodi']
[u'sydney', u'jail', u'role', u'cocain', u'haul']
[u'sydney', u'price', u'slow', u'hous', u'market']
[u'symond', u'warn', u'rush', u'comeback']
[u'take', u'offenc']
[u'telstra', u'face', u'possibl', u'fin']
[u'telstra', u'profit', u'plummet']
[u'telstra', u'report', u'fall', u'half', u'year', u'profit']
[u'telstra', u'surg', u'help', u'share', u'market', u'soar']
[u'eleph', u'australia', u'econom', u'live', u'room']
[u'thiev', u'target', u'ambul', u'servic', u'time', u'capsul']
[u'throat', u'slasher', u'give', u'year', u'jail', u'sentenc']
[u'tiatto', u'steel', u'roar']
[u'tiger', u'thriller', u'beller']
[u'tobacco', u'grower', u'seek', u'export', u'permit']
[u'tougher', u'water', u'restrict', u'finalis']
[u'train', u'bomb', u'trial', u'start', u'madrid']
[u'train', u'fund', u'help', u'boost', u'industri', u'work', u'forc']
[u'tree', u'mishap', u'leav', u'critic', u'hurt']
[u'trial', u'plant', u'determin', u'feasibl']
[u'tribun', u'decid', u'coal', u'offset']
[u'trio', u'host', u'asian']
[u'tuqiri', u'urg', u'focus', u'amid', u'bid']
[u'chief', u'disappoint', u'public', u'air']
[u'union', u'demand', u'civil', u'case', u'jam', u'hardi']
[u'unit', u'appeal', u'kosmina']
[u'general', u'claim', u'moqtada', u'sadr', u'iran']
[u'market', u'ralli', u'bernank', u'testimoni']
[u'militari', u'base', u'build']
[u'increas', u'iraqi', u'refuge', u'intak']
[u'valentin', u'squeak', u'love']
[u'vaughan', u'confid', u'play', u'world']
[u'mine', u'compani', u'expect', u'approv', u'open']
[u'warn', u'stick', u'knife', u'buchanan']
[u'waugh', u'eal', u'oneil', u'olymp', u'role']
[u'werder', u'thump', u'ajax', u'sound', u'uefa', u'warn']
[u'whaler', u'protest', u'warn', u'high', u'sea', u'clash']
[u'whale', u'ship', u'blaze', u'contain']
[u'whale', u'ship', u'antarctica']
[u'wind', u'farm', u'plan', u'glenthompson']
[u'wine', u'council', u'chief', u'back', u'chang', u'forestri']
[u'world', u'face', u'water', u'crisi']
[u'zinifex', u'test', u'gulf', u'zinc', u'spillag']
[u'truck', u'facil', u'open', u'today']
[u'adelaid', u'shift', u'striker', u'burn']
[u'advoc', u'urg', u'govt', u'hous', u'asylum', u'seeker']
[u'aim', u'reduc', u'injuri']
[u'probe', u'bet', u'scandal']
[u'alburi', u'street', u'violenc', u'increas', u'watkin']
[u'qaeda', u'leader', u'iraq', u'wound', u'report']
[u'austereo', u'licenc', u'market', u'cost']
[u'australia', u'fast', u'track', u'talent', u'search', u'olymp']
[u'australian', u'injur', u'glacier', u'accid']
[u'australia', u'shake', u'stir', u'wicket', u'bond']
[u'aust', u'slave', u'demand', u'compens', u'japan']
[u'author', u'resum', u'search', u'japanes', u'sailor']
[u'bali', u'bomber', u'catch', u'mobil', u'phone']
[u'banana', u'industri', u'face', u'worker', u'shortag']
[u'barrier', u'reef', u'safe', u'futur', u'thorn', u'outbreak']
[u'bond', u'sign', u'year', u'contract', u'giant']
[u'bronco', u'easili', u'trial', u'match']
[u'bush', u'seek', u'troop', u'afghanistan']
[u'cabooltur', u'council', u'reject', u'bribi', u'desal', u'plant', u'idea']
[u'canberra', u'hous', u'price', u'rise']
[u'cane', u'toad', u'muster', u'clear', u'timber', u'creek', u'lagoon']
[u'cape', u'york', u'nativ', u'titl', u'claim', u'landmark', u'case']
[u'centrelink', u'video', u'peopl', u'fraud', u'probe']
[u'chad', u'violenc', u'erupt', u'genocid', u'warn']
[u'charg', u'demonis', u'hick', u'lawyer']
[u'charlestown', u'squar', u'develop', u'applic', u'lodg']
[u'charter', u'boat', u'oper', u'measur', u'protect']
[u'chechen', u'strongman', u'promot', u'presid']
[u'chili', u'spice', u'meal', u'year']
[u'chook', u'song', u'nation', u'sound', u'registri']
[u'agent', u'stand', u'trial', u'itali', u'kidnap']
[u'clark', u'send', u'home', u'injuri']
[u'closer']
[u'closer']
[u'coalit', u'back', u'green', u'group', u'recycl', u'water']
[u'collaps', u'grain', u'compani', u'director', u'defend']
[u'compani', u'announc', u'push', u'wall', u'higher']
[u'compani', u'search', u'uranium', u'central', u'aust']
[u'conservationist', u'avoid', u'trespass', u'convict']
[u'contractor', u'avoid', u'injuri', u'clip', u'powerlin']
[u'council', u'back', u'hostel', u'risk', u'youth']
[u'council', u'unit', u'lobbi', u'princ', u'highway', u'upgrad']
[u'council', u'beat', u'public', u'hospit', u'review']
[u'council', u'reveal', u'fli', u'strategi']
[u'council', u'water', u'woe']
[u'court', u'jail', u'pair', u'bash', u'rob']
[u'court', u'overturn', u'convict', u'policeman', u'murder', u'case']
[u'creasi', u'director', u'defend', u'manag', u'despit']
[u'crew', u'expect', u'contain', u'porphyri', u'hill', u'fire', u'today']
[u'crew', u'monitor', u'porongurup']
[u'crew', u'remov', u'contamin', u'cyanid', u'soil']
[u'croc', u'look', u'capitalis', u'rebound', u'potenti']
[u'csiro', u'fear', u'fund', u'fallout', u'willcox', u'stand']
[u'cyanid', u'clean', u'continu', u'stuart', u'hway']
[u'cyanid', u'compani', u'partial', u'clean', u'cost']
[u'debnam', u'take', u'recycl', u'water', u'poll']
[u'depart', u'admit', u'jail', u'cop', u'remand', u'rate']
[u'desert', u'countri', u'burst', u'life', u'rain']
[u'downpour', u'hit', u'central']
[u'driver', u'injur', u'fitzroy', u'bash']
[u'dubbo', u'cash', u'taronga']
[u'earli', u'start', u'winegrap', u'harvest']
[u'eastern', u'produc', u'dollar', u'truck']
[u'england', u'remain', u'focus', u'world', u'panesar']
[u'fatah', u'hope', u'global', u'govt', u'uniti', u'support']
[u'father', u'jail', u'postal', u'fraud']
[u'fire', u'like', u'control', u'tonight']
[u'threat', u'issu', u'yarra', u'rang', u'area']
[u'firm', u'consid', u'mcharg', u'rang', u'wind', u'farm']
[u'fisher', u'confid', u'ahead', u'taipain', u'meet']
[u'player', u'dump', u'event', u'anti']
[u'boss', u'join', u'board']
[u'wast', u'committe', u'member', u'worri']
[u'fraser', u'slam', u'aust', u'hick', u'treatment']
[u'garrett', u'backflip', u'joint', u'facil']
[u'garrett', u'back', u'joint', u'militari', u'facil', u'plan']
[u'garrett', u'chang', u'mind', u'militari', u'base']
[u'gatlin', u'seek', u'arbitr', u'hear', u'dope', u'charg']
[u'gelb', u'grant', u'bail', u'court', u'case']
[u'giuliani', u'confirm', u'presidenti']
[u'gold', u'coast', u'star']
[u'govern', u'deni', u'road', u'pork', u'barrel', u'claim']
[u'govt', u'consid', u'road', u'fund', u'boost']
[u'govt', u'urg', u'commit', u'toowoomba', u'rang', u'cross', u'fund']
[u'govt', u'urg', u'council', u'power', u'brothel']
[u'govt', u'work', u'hick', u'guilti', u'verdict', u'fraser']
[u'graincorp', u'staff', u'charg', u'grain', u'theft']
[u'green', u'recruit', u'secur', u'analyst', u'senat']
[u'gunn', u'agre', u'hand', u'propos', u'info']
[u'hardi', u'execut', u'fight', u'asic', u'alleg']
[u'harrington', u'seiz', u'lead', u'california']
[u'hickey', u'urg', u'council', u'harass', u'claim']
[u'hop', u'highway', u'cyanid', u'clean', u'finish']
[u'housewar', u'intern', u'hint', u'takeov', u'offer']
[u'howard', u'warn', u'pacif', u'nation', u'govern']
[u'human', u'right', u'educ', u'educ', u'life']
[u'human', u'right', u'educ', u'human', u'right']
[u'iemma', u'debnam', u'fire', u'televis', u'debat']
[u'iemma', u'debnam', u'head', u'head', u'televis', u'debat']
[u'index', u'highlight', u'farm', u'busi', u'woe']
[u'indonesian', u'provinc', u'alert', u'attack', u'warn']
[u'internet', u'charg']
[u'blame', u'long', u'servic', u'debat', u'hockey']
[u'japan', u'publish', u'cancel', u'plan', u'print', u'princess', u'book']
[u'jet', u'contract', u'talk', u'egmond']
[u'kerkhof', u'shark']
[u'king', u'advanc', u'semi', u'final', u'croc', u'blitz']
[u'kosmina', u'appeal']
[u'lake', u'bonney', u'committe', u'meet']
[u'leak', u'draft', u'report', u'question', u'glasshous', u'project']
[u'leasecorp', u'beat', u'shop', u'centr', u'prospect']
[u'send', u'home', u'clark', u'injur']
[u'send', u'home', u'clark']
[u'lee', u'world', u'hop', u'hang', u'balanc']
[u'prais', u'mcginti', u'propos', u'prostitut', u'law']
[u'lightn', u'caus', u'ngarkat', u'park', u'blaze']
[u'livecorp', u'warn', u'live', u'sheep', u'export', u'hurt']
[u'madrid', u'train', u'bomb', u'trial', u'begin']
[u'march', u'verdict', u'munc', u'trial']
[u'marin', u'park', u'author', u'propos', u'manag', u'plan']
[u'mayor', u'commend', u'green', u'group', u'staff', u'incent']
[u'mayor', u'worri', u'plant', u'demolit', u'boost', u'truck']
[u'mclaren', u'attempt', u'friend', u'commit']
[u'jail', u'pension', u'stab']
[u'face', u'court', u'accus', u'grain', u'theft']
[u'west', u'feel', u'north', u'west', u'quak']
[u'compani', u'defend', u'level', u'communiti']
[u'minist', u'meet', u'tiger', u'airway', u'airlin']
[u'minist', u'say', u'opposit', u'expressway', u'plan']
[u'monaro', u'bushfir', u'victim', u'fund']
[u'evid', u'water', u'mar']
[u'mozzi', u'spark', u'warn', u'rare', u'virus']
[u'highlight', u'region', u'drink', u'concern']
[u'urg', u'better', u'access', u'train', u'curb', u'youth']
[u'urg', u'polic', u'boost', u'phillip']
[u'murder', u'charg', u'possibl', u'brimbl', u'death', u'inquest']
[u'murder', u'charg', u'surround', u'brimbl', u'inquest']
[u'nation', u'label', u'govt', u'power', u'grab']
[u'natur', u'resourc', u'manag', u'board', u'increas', u'levi']
[u'newcastl', u'hospit', u'meet', u'nation', u'benchmark']
[u'group', u'fight', u'wind', u'farm', u'propos']
[u'imam', u'aim', u'peac', u'communiti']
[u'ngarkat', u'blaze', u'contain']
[u'nightclub', u'owner', u'stand', u'trial', u'alleg']
[u'nrma', u'member', u'urg', u'lobbi', u'princ', u'revamp']
[u'opposit', u'push', u'hospit', u'cooper']
[u'walk', u'press', u'confer']
[u'pressur', u'japan', u'whale', u'ship']
[u'opposit', u'quiz', u'minist', u'skin', u'cancer']
[u'opposit', u'want', u'defenc', u'forc', u'build', u'tharwa']
[u'orang', u'council', u'fight', u'wast', u'legal', u'battl']
[u'outback', u'citi']
[u'pacif', u'hydro', u'plan', u'brazilian', u'wind', u'energi', u'project']
[u'palestinian', u'govt', u'resign', u'allow', u'nation', u'uniti']
[u'paraglid', u'surviv', u'suck', u'storm']
[u'paraglid', u'surviv', u'freaki', u'storm', u'ordeal']
[u'paraglid', u'tell', u'storm', u'encount']
[u'paramed', u'strike', u'action']
[u'parent', u'pleas', u'teacher', u'wont', u'remov']
[u'parri', u'rumford', u'share', u'open', u'lead']
[u'plane', u'monitor', u'nation', u'park', u'blaze']
[u'push', u'secur', u'trade', u'agenda', u'talk']
[u'spend', u'road']
[u'polic', u'charg', u'teen', u'hold']
[u'polic', u'hunt', u'teen', u'abduct']
[u'polic', u'hunt', u'supermarket', u'knife', u'bandit']
[u'polic', u'investig', u'doctor', u'elder', u'patient']
[u'polic', u'minist', u'dismay', u'quash', u'mcenal']
[u'polic', u'youth', u'scheme', u'reward', u'good', u'behaviour']
[u'poorer', u'richer', u'nation', u'urg', u'reduc', u'carbon']
[u'pork', u'barrel']
[u'juic', u'order', u'unpaid', u'wag']
[u'plater', u'car', u'impound', u'alleg', u'street']
[u'prawn', u'industri', u'stoush', u'import']
[u'premier', u'power', u'probe', u'auspin', u'contract']
[u'protea', u'seven', u'colour', u'player', u'world']
[u'say', u'weapon', u'jail', u'search']
[u'warm', u'recycl', u'water', u'survey']
[u'rain', u'drench', u'drought', u'stricken', u'central']
[u'redevelop', u'marina', u'expect', u'attract', u'tourist']
[u'repco', u'post', u'profit', u'slump']
[u'report', u'clear', u'station', u'develop']
[u'report', u'highlight', u'council', u'financi', u'woe']
[u'resid', u'dark', u'fire', u'power']
[u'resurg', u'kiwi', u'cruis', u'past', u'aussi']
[u'rijkaard', u'quit', u'barca', u'season', u'report']
[u'rudd', u'unclear', u'troop', u'deploy', u'iraq']
[u'rudd', u'flynn', u'endores']
[u'rufer', u'board', u'townsvill', u'leagu', u'firm']
[u'russia', u'threaten', u'drop', u'arm', u'treati']
[u'safeti', u'bureau', u'talk', u'lockhart', u'crash']
[u'irrig', u'invit', u'murray', u'darl', u'meet']
[u'samuel', u'includ', u'windi', u'squad']
[u'school', u'forc', u'close', u'overnight']
[u'scottsdal', u'assist', u'stoush', u'continu']
[u'search', u'time', u'resid', u'orthopaed']
[u'search', u'miss', u'ocean', u'monitor', u'instrument']
[u'secur', u'trade', u'domin', u'talk']
[u'senat', u'issu', u'warn', u'drought', u'plan']
[u'sevilla', u'impress', u'lose', u'start', u'ranieri']
[u'share', u'market']
[u'shire', u'associ', u'want', u'water', u'storag']
[u'smith', u'boost', u'king']
[u'sogavar', u'ask', u'aust', u'respect', u'solomon', u'sovereignti']
[u'steadi', u'hous', u'price', u'forecast', u'south', u'west']
[u'storm', u'caus', u'blackout', u'flood']
[u'storm', u'miss', u'bendigo']
[u'swimmer', u'drown', u'sunshin', u'coast']
[u'sydneysid', u'drink', u'recycl', u'water']
[u'sydney', u'symphoni', u'orchestra', u'celebr']
[u'tamworth', u'label', u'nation', u'famili']
[u'teenag', u'receiv', u'year', u'sentenc', u'refuge']
[u'thai', u'court', u'issu', u'warrant', u'bangkok', u'blast', u'suspect']
[u'person', u'charg', u'perth', u'bodi', u'case']
[u'tilt', u'train', u'return', u'speed']
[u'tiwi', u'women', u'petit', u'forest', u'clear']
[u'beach', u'volleybal', u'play', u'gold', u'coast']
[u'tast', u'recal', u'christma', u'cake']
[u'tourist', u'flock', u'birdsvill', u'wit', u'inland']
[u'traffic', u'offend', u'lose', u'appeal', u'jail']
[u'station', u'defend', u'alcohol']
[u'brutal', u'crash']
[u'union', u'concern', u'smelter', u'worker', u'mental', u'health']
[u'urin', u'spout', u'good', u'advic', u'drink', u'drive']
[u'accus', u'rig', u'hick', u'trial']
[u'accus', u'rig', u'militari', u'commiss', u'process']
[u'alleg', u'hick', u'collect', u'embassi', u'intellig']
[u'look', u'iran']
[u'veda', u'advantag', u'report', u'profit', u'rise']
[u'rock', u'minor', u'quak']
[u'water', u'group', u'continu', u'critic', u'plan']
[u'waugh', u'rubbish', u'warn', u'claim']
[u'whaler', u'plunder', u'southern', u'sea']
[u'whale', u'ship', u'extinguish']
[u'help', u'whaler']
[u'woman', u'face', u'court', u'accus', u'credit', u'card', u'fraud']
[u'woman', u'admit', u'teen', u'avoid', u'jail']
[u'work', u'begin', u'expand', u'cooma', u'jail']
[u'workcov', u'investig', u'timber', u'worker', u'injuri']
[u'aborigin', u'fear', u'britain', u'involv', u'remain']
[u'qaeda', u'associ', u'jail', u'istanbul', u'bomb']
[u'anna', u'nicol', u'leav', u'estat', u'dead']
[u'archbishop', u'refus', u'sacrament', u'highlight', u'split']
[u'aspinal', u'play', u'homosexu', u'split']
[u'australia', u'tampion', u'lead', u'indon', u'open']
[u'australia', u'unfaz', u'form', u'slump']
[u'baghdad', u'secur', u'plan', u'success', u'iraqi', u'say']
[u'baghdad', u'secur', u'plan', u'success', u'maliki']
[u'bank', u'open', u'launceston', u'branch']
[u'beckham', u'return', u'england', u'shearer']
[u'bionic', u'offer', u'hope', u'blind', u'scientist']
[u'blast', u'spark', u'gunfight', u'iran']
[u'booki', u'downplay', u'bet', u'probe']
[u'botul', u'case', u'prompt', u'nacho', u'product', u'recal']
[u'brisban', u'unveil', u'multi', u'million', u'dollar', u'wast', u'water']
[u'british', u'coron', u'friend', u'iraq']
[u'brumbi', u'sneak', u'away', u'narrow']
[u'bureau', u'trial', u'ocean', u'forecast']
[u'fall', u'bridg', u'india', u'fear', u'drown']
[u'bushfir', u'threat', u'eas', u'yarra']
[u'bushrang', u'book', u'final', u'date', u'bull']
[u'cactus', u'eat', u'moth', u'threaten', u'favourit', u'mexican', u'food']
[u'cancer', u'caledonia', u'launch', u'asbesto', u'studi']
[u'capit', u'clinch', u'wnbl', u'titl']
[u'china', u'free', u'aid', u'whistleblow']
[u'agent', u'face', u'charg', u'rendit']
[u'agent', u'stand', u'trail']
[u'closer']
[u'closer', u'nodisplay']
[u'weld', u'valley', u'protest']
[u'countri', u'meet', u'carbon', u'measur']
[u'crew', u'search', u'melbourn', u'school', u'arsonist']
[u'cut', u'indigen', u'employ', u'program', u'spark', u'debat']
[u'disney', u'lose', u'court', u'battl', u'winni', u'pooh']
[u'divis', u'mosqu', u'flag']
[u'drug', u'haul', u'melbourn', u'airport']
[u'eel', u'treat', u'awkward', u'say', u'smith']
[u'environ', u'centr', u'push', u'freez', u'tiwi', u'land']
[u'fergi', u'back', u'call', u'tighter', u'control', u'agent']
[u'fierc', u'storm', u'spark', u'fire', u'tasmania']
[u'ravag', u'melbourn', u'factori']
[u'freedman', u'eye', u'australia', u'stake']
[u'gatlin', u'seek', u'arbitr', u'report']
[u'gore', u'rule', u'white', u'hous']
[u'govt', u'shift', u'posit', u'cdep']
[u'govt', u'slash', u'indigen', u'work', u'dole', u'program']
[u'govt', u'slash', u'indigen', u'work', u'dole', u'scheme']
[u'greenpeac', u'defend', u'offer', u'help', u'stricken', u'whale']
[u'greenpeac', u'say', u'stricken', u'whaler', u'open', u'offer']
[u'green', u'labor', u'feder', u'prefer']
[u'grima', u'scoop', u'wnbl', u'honour']
[u'grinspoon', u'jamieson', u'rehab', u'addict']
[u'health', u'author', u'investig', u'botul', u'case']
[u'hobart', u'suburb', u'power']
[u'home', u'threaten', u'bushfir']
[u'hussey', u'issu', u'ralli', u'record', u'defeat']
[u'hussey', u'lift', u'victoria', u'total']
[u'iemma', u'welcom', u'plan', u'aust', u'flag', u'mosqu']
[u'immunis', u'jab', u'beij', u'bind', u'athlet']
[u'indonesia', u'agre', u'share', u'bird', u'sampl']
[u'injur', u'aust', u'ignor', u'glacier', u'warn', u'polic']
[u'injuri', u'concern', u'eagl', u'swan']
[u'italian', u'court', u'reopen', u'berlusconi', u'corrupt', u'case']
[u'japan', u'bulli', u'publish', u'dump', u'aussi', u'book']
[u'japanes', u'crew', u'bodi', u'miss', u'sailor']
[u'japanes', u'whale', u'ship', u'histori']
[u'japan', u'reject', u'greenpeac', u'help']
[u'katherin', u'resid', u'harri', u'fli', u'fox']
[u'late', u'eagl', u'lift', u'mickelson', u'share', u'lead']
[u'vow', u'play', u'pain']
[u'lightn', u'spark', u'fire', u'vic', u'yarra', u'valley']
[u'major', u'glacier', u'vanish', u'year', u'expert']
[u'die', u'woman', u'lose', u'work', u'site']
[u'jail', u'rap', u'sister']
[u'stab', u'chest', u'sydney', u'brawl']
[u'life', u'sentenc', u'terrorist', u'attack']
[u'miss', u'andretti', u'give', u'freedman']
[u'sting', u'omodei', u'attempt', u'lure', u'birney']
[u'muslim', u'group', u'divid', u'push', u'flag']
[u'muslim', u'leader', u'plan', u'aust', u'flag', u'outsid']
[u'nacho', u'health', u'scare', u'prompt', u'interst', u'probe']
[u'nacho', u'maker', u'deni', u'botul', u'link']
[u'drought', u'figur']
[u'govt', u'launch', u'obes', u'prevent', u'trial']
[u'green', u'group', u'judg', u'environment', u'polici']
[u'leader', u'debat', u'focus', u'water', u'economi']
[u'opposit', u'promis', u'cash', u'monaro', u'cancer']
[u'polic', u'leas', u'mobil', u'anti', u'riot', u'base']
[u'trafford', u'readi', u'coppel', u'return']
[u'opposit', u'defend', u'public', u'servic']
[u'oram', u'hop', u'give', u'finger']
[u'pakistan', u'court', u'blast', u'kill']
[u'palestinian', u'clash', u'isra', u'polic', u'jerusalem']
[u'pentagon', u'trial', u'balloon', u'chem', u'defenc']
[u'player', u'name', u'bet', u'probe']
[u'polic', u'commission', u'call', u'tougher', u'penalti']
[u'polic', u'hunt', u'elder', u'woman', u'bash']
[u'purport', u'window', u'kennedi', u'assassin', u'sell']
[u'health', u'wont', u'reveal', u'tast', u'cake', u'contamin']
[u'rampant', u'victori', u'greatest', u'prize']
[u'relief', u'hand', u'text', u'addict']
[u'rice', u'hail', u'earli', u'gain', u'baghdad', u'offens']
[u'rspca', u'link', u'drought', u'rise', u'cruelti', u'case']
[u'russian', u'cabinet', u'reshuffl', u'fuel', u'talk']
[u'govt', u'seek', u'green', u'exempt', u'wellington', u'weir']
[u'scientist', u'seek', u'rescu', u'thousand', u'threaten']
[u'second', u'doubl', u'fatal', u'melbourn']
[u'second', u'suspect', u'deni', u'link', u'madrid', u'bomb']
[u'shepherd', u'guid', u'forc', u'past', u'bull']
[u'slim', u'dusti', u'song', u'rediscov']
[u'spacecraft', u'deflect', u'killer']
[u'spark', u'fear', u'canberra', u'patch']
[u'spate', u'teen', u'shoot', u'prompt', u'debat']
[u'stallon', u'luggag', u'seiz', u'sydney']
[u'stormer', u'record', u'season']
[u'taipan', u'upset', u'wildcat', u'clinch', u'semi', u'final', u'berth']
[u'central', u'highland', u'resid', u'celebr', u'good']
[u'govt', u'urg', u'mine', u'check', u'mainten']
[u'teen', u'fight', u'life', u'near', u'drown']
[u'share', u'lead', u'kooyonga']
[u'total', u'declar']
[u'turnbul', u'urg', u'action', u'macquari', u'pest']
[u'polic', u'offic', u'charg', u'anim', u'cruelti']
[u'act', u'like', u'terrorist', u'premier']
[u'hous', u'repres', u'condemn', u'iraq', u'plan']
[u'hous', u'repres', u'rebuk', u'bush']
[u'hous', u'vote', u'extra', u'troop']
[u'hous', u'vote', u'iraq', u'strategi']
[u'hous', u'vote', u'oppos', u'extra', u'troop']
[u'hous', u'vote', u'reject', u'bush', u'iraq', u'strategi']
[u'releas', u'alleg', u'hick']
[u'near', u'control']
[u'villag', u'sell', u'street', u'name', u'rais', u'cash']
[u'memori', u'mark', u'anniversari', u'bloodi', u'vietnam']
[u'watkin', u'welcom', u'aust', u'flag', u'propos', u'mosqu']
[u'webb', u'chase', u'leader', u'hawaii']
[u'wellington', u'blue', u'home']
[u'wild', u'grass', u'hold', u'clean', u'fuel']
[u'exceed', u'water', u'consumpt', u'target']
[u'alic', u'dump', u'toxic', u'council', u'say']
[u'alleg', u'arm', u'robber', u'charg', u'snowi', u'mountain']
[u'aussi', u'katsidi', u'take', u'interim', u'titl', u'khan', u'win']
[u'aussi', u'robertson', u'snooker', u'final']
[u'aust', u'olymp', u'team', u'undergo', u'larg', u'scale']
[u'australia', u'lose', u'chappel', u'hadle', u'seri']
[u'australia', u'unfaz', u'form', u'slump']
[u'black', u'cap', u'fall', u'auckland']
[u'botul', u'victim', u'paralys']
[u'brilliant', u'kiwi', u'chappel', u'hadle', u'trophi']
[u'brisban', u'fight', u'life', u'snake', u'bite']
[u'brit', u'govt', u'join', u'legal', u'battl', u'aborigin']
[u'britney', u'shave', u'head', u'get', u'tattoo']
[u'cheetah', u'blow', u'past', u'waratah']
[u'chines', u'film', u'tuya', u'marriag', u'win', u'golden', u'bear']
[u'chines', u'year', u'celebr', u'swing']
[u'chopper', u'crash', u'kill', u'soldier']
[u'clare', u'cautious', u'cdep', u'scrap']
[u'clinton', u'demand', u'troop', u'withdraw', u'deadlin']
[u'closer']
[u'closer']
[u'coalit', u'helicopt', u'crash', u'afghanistan']
[u'coalit', u'campaign', u'rat']
[u'commentari', u'highlight', u'leagu', u'grand', u'final']
[u'costello', u'talk', u'tough', u'water', u'plan']
[u'crew', u'battl', u'fire', u'electr', u'storm']
[u'crew', u'fight', u'adelaid', u'wast', u'treatment', u'plant', u'blaze']
[u'current', u'shift', u'devast', u'ocean', u'life']
[u'eastwood', u'award', u'franc', u'highest', u'order']
[u'falter', u'mickelson', u'shoot', u'clear']
[u'financ', u'broker', u'victim', u'govt', u'payment']
[u'crew', u'fight', u'blaze']
[u'fit', u'test', u'melbourn', u'brebner']
[u'flanneri', u'injuri', u'sour', u'rooster', u'titan']
[u'govt', u'assist', u'remain', u'case', u'vital', u'aborigin']
[u'govt', u'flag', u'hick', u'prospect']
[u'govt', u'urg', u'speed', u'hick', u'case', u'costello', u'say']
[u'greenpeac', u'assist', u'stricken', u'japanes', u'whaler']
[u'green', u'say', u'ford', u'develop', u'harm', u'pond']
[u'green', u'urg', u'lennon', u'save', u'auspin', u'job']
[u'hick', u'home', u'year', u'say', u'downer']
[u'hick', u'return', u'home', u'year', u'downer']
[u'hick', u'return', u'home', u'year', u'downer']
[u'hillari', u'clinton', u'urg', u'troop', u'withdraw', u'begin']
[u'hussey', u'hodg', u'total']
[u'hussey', u'throw', u'gauntlet']
[u'indigen', u'communiti', u'worker', u'voic', u'concern']
[u'iran', u'deni', u'lodg', u'radic', u'iraqi', u'cleric']
[u'johansson', u'ban', u'week']
[u'jone', u'scath', u'refere', u'perform']
[u'labor', u'cast', u'doubt', u'hickss', u'return']
[u'labor', u'launch', u'campaign']
[u'labor', u'say', u'govt', u'concern', u'hick', u'issu']
[u'liber', u'deni', u'preselect', u'smear', u'campaign']
[u'london', u'shoot', u'dead', u'latest', u'violenc']
[u'mcginti', u'urg', u'organ', u'donat']
[u'melbourn', u'polic', u'search', u'grass', u'arsonist']
[u'mobil', u'phone', u'compani', u'target', u'tween']
[u'monti', u'claim', u'point', u'shark']
[u'ronaldo', u'strike', u'twice', u'milan']
[u'satellit', u'monitor', u'solar', u'storm']
[u'money', u'murray', u'darl', u'warn', u'costello']
[u'northern', u'water', u'meet', u'call', u'cooper']
[u'notori', u'wartim', u'collabor', u'papon', u'die']
[u'nation', u'launch', u'region', u'develop', u'plan']
[u'nation', u'push', u'water', u'promis', u'campaign']
[u'hold', u'tristar', u'inquiri']
[u'rugbi', u'leagu', u'star', u'stab', u'brawl', u'face']
[u'opposit', u'accus', u'vote', u'buy', u'hospit']
[u'organ', u'donat', u'rat']
[u'pakistan', u'defer', u'dope', u'test', u'offend', u'akhtar']
[u'paraguay', u'swallow', u'tall', u'tale', u'husband', u'eat']
[u'perth', u'high', u'speed', u'chase', u'use', u'dog', u'chopper']
[u'petul', u'beckham', u'card', u'real', u'bore']
[u'phelp', u'set', u'world', u'record']
[u'polic', u'retriev', u'bodi', u'river']
[u'pritchard', u'stab', u'brawl', u'face', u'charg']
[u'rape', u'crisi', u'centr', u'desper', u'need', u'money']
[u'read', u'boss', u'back', u'aussi', u'keeper', u'time']
[u'read', u'hold', u'unit', u'chelsea']
[u'rice', u'talk', u'phase', u'iraq']
[u'rijkaard', u'deni', u'barca', u'quit', u'report']
[u'robot', u'drive', u'car', u'road']
[u'rudd', u'say', u'respond', u'poll', u'hick']
[u'russian', u'plane', u'crash', u'caus', u'pilot', u'error', u'report']
[u'govt', u'defend', u'weir', u'applic']
[u'liber', u'choos', u'male', u'senat', u'spot']
[u'smoke', u'blanket', u'southern']
[u'southbank', u'pool', u'shut', u'leak', u'repair']
[u'stallon', u'detain', u'custom']
[u'stanhop', u'look', u'cricket', u'public', u'boost']
[u'steffensen', u'snatch', u'sydney', u'limelight']
[u'sterl', u'win', u'open']
[u'strand', u'whaler', u'face', u'worsen', u'weather']
[u'stricken', u'nisshin', u'maru', u'spark', u'spill', u'fear']
[u'builder', u'urg', u'govt', u'scrap', u'defect', u'insur']
[u'thompson', u'trick', u'stun', u'unit']
[u'thompson', u'haul', u'guid', u'victori', u'leagu', u'crown']
[u'thousand', u'protest', u'base', u'expans', u'itali']
[u'timor', u'commiss', u'question', u'minist']
[u'crusad', u'beat', u'lion']
[u'uniti', u'govt', u'recognis', u'israel', u'olmert']
[u'uniti', u'govt', u'good', u'israel', u'say']
[u'coastguard', u'confirm', u'nisshin', u'maru', u'leak']
[u'israel', u'threaten', u'shun', u'palestinian', u'govt']
[u'republican', u'block', u'iraq', u'debat']
[u'senat', u'block', u'bush', u'iraq', u'debat']
[u'senat', u'block', u'debat', u'bush', u'iraq', u'plan']
[u'senat', u'debat', u'bush', u'iraq', u'plan']
[u'senat', u'republican', u'block', u'rebuk', u'iraq', u'plan']
[u'soldier', u'jail', u'iraqi', u'murder']
[u'waratah', u'wallabi', u'rock', u'waugh', u'injuri']
[u'webb', u'falter', u'hawaii']
[u'weld', u'valley', u'protest', u'ignor', u'polic', u'caution']
[u'yuvraj', u'fire', u'india', u'seri', u'clinch']
[u'hospit', u'woodend', u'burglari']
[u'year', u'jail', u'disqualifi', u'drive']
[u'journalist', u'quit', u'breast', u'cancer']
[u'academ', u'say', u'birney', u'frontbench', u'refus', u'hurt']
[u'commiss', u'head', u'quit', u'fight', u'cancer']
[u'amor', u'coupl', u'caus', u'traffic', u'chao']
[u'anti', u'whailng', u'ship', u'stay', u'melbourn']
[u'move', u'takeov', u'trade']
[u'remind', u'treasur']
[u'aussi', u'robertson', u'clinch', u'welsh', u'snooker', u'titl']
[u'aust', u'troop', u'number', u'iraq', u'adequ', u'howard']
[u'author', u'monitor', u'ngarkat', u'park', u'blaze']
[u'barca', u'milan', u'readi', u'dent', u'british', u'hop']
[u'bathurst', u'privat', u'school', u'face', u'pool', u'pressur']
[u'beatti', u'propos', u'plan', u'send', u'water', u'inland']
[u'beatti', u'resurrect', u'plan', u'divert', u'northern', u'river']
[u'beatti', u'reviv', u'plan', u'send', u'water', u'inland']
[u'beckham', u'search', u'mansion']
[u'bendigo', u'enjoy', u'start', u'chines', u'year']
[u'bendigo', u'face', u'hotter', u'humid', u'weather']
[u'crowd', u'turn', u'rememb', u'road', u'crash', u'teen']
[u'blast', u'hit', u'russian', u'mcdonald']
[u'botul', u'case', u'compani', u'continu', u'product']
[u'british', u'polic', u'arrest', u'letter', u'bomb', u'suspect']
[u'bullet', u'shatter', u'bedroom', u'window']
[u'buri', u'loot', u'draw', u'polic', u'probe']
[u'bushfir', u'consid', u'suspici']
[u'bushvis', u'gambier']
[u'alic', u'intern']
[u'cana', u'win', u'titl', u'dope']
[u'bomb', u'attack', u'kill', u'iraq']
[u'ceda', u'back', u'higher', u'water', u'price', u'farmer']
[u'child', u'support', u'agenc', u'get', u'tough', u'payment', u'dodger']
[u'clijster', u'sacrific', u'pari', u'wimbledon']
[u'closer']
[u'closer', u'news']
[u'closer']
[u'urg', u'reopen', u'mari', u'valley', u'land', u'valuat']
[u'commonwealth', u'accus', u'play', u'polit', u'pest']
[u'communiti', u'group', u'advis', u'johnston', u'shire']
[u'confid', u'high', u'rank', u'south', u'african']
[u'cool', u'chang', u'eas', u'bushfir', u'threat']
[u'cooler', u'weather', u'firefight']
[u'council', u'maintain', u'push', u'regular', u'oper', u'hour']
[u'croc', u'sight', u'close', u'strand', u'beach']
[u'crop', u'duster', u'pilot', u'surviv', u'thorpedal', u'crash']
[u'dairi', u'plant', u'propos', u'south', u'west']
[u'darwin', u'commemor', u'wwii', u'bomb']
[u'devonport', u'die', u'crash']
[u'digit', u'technolog', u'deliv', u'film', u'festiv']
[u'disabl', u'centr', u'committ', u'hear', u'continu']
[u'document', u'reveal', u'elect', u'polic', u'promis']
[u'downpour', u'help', u'boost', u'ravensthorp', u'water', u'suppli']
[u'dozen', u'kill', u'india', u'train', u'blast']
[u'drought', u'domin', u'nurseri', u'confer']
[u'drought', u'grip', u'hunter']
[u'drought', u'grip']
[u'earli', u'review', u'possibl', u'port', u'hedland', u'alcohol']
[u'emerg', u'worker', u'share', u'experi', u'improv']
[u'energi', u'sale', u'surpass', u'govt', u'expect']
[u'esper', u'real', u'estat', u'market', u'predict', u'continu']
[u'expert', u'match', u'fingerprint', u'patton', u'murder']
[u'siren', u'mark', u'raid', u'anniversari']
[u'deni', u'beckham', u'recal', u'talk']
[u'fear', u'decis', u'stifl', u'truffl', u'industri']
[u'fenc', u'materi', u'seek', u'help', u'farmer']
[u'frenchman', u'simon', u'win', u'titl', u'marseill']
[u'frustrat', u'ref', u'fact', u'life', u'croft']
[u'fuel', u'tanker', u'spill', u'load', u'near', u'coonabarabran']
[u'fund', u'boost', u'fight', u'firewe']
[u'funtast', u'target', u'takeov']
[u'plant', u'oppon', u'want', u'independ', u'studi']
[u'govt', u'accus', u'fail', u'spend', u'region', u'medic']
[u'govt', u'accus', u'procrastin', u'island', u'pest']
[u'govt', u'ask', u'boost', u'wimmera', u'malle', u'mental', u'health']
[u'govt', u'blame', u'drought', u'drop', u'pond', u'level']
[u'govt', u'defend', u'secret', u'polic', u'deal']
[u'grang', u'maker', u'barossa', u'wine', u'prize']
[u'grazier', u'struggl', u'darl', u'river', u'level', u'drop']
[u'green', u'group', u'urg', u'turkey', u'beach', u'plan', u'rethink']
[u'group', u'want', u'rail', u'freight', u'fund', u'includ']
[u'harri', u'face', u'tough', u'condit', u'domin', u'surf', u'comp']
[u'harvick', u'win', u'daytona']
[u'health', u'dept', u'hail', u'declin', u'wait', u'list']
[u'health', u'minist', u'recov', u'heart', u'surgeri']
[u'health', u'servic', u'look', u'replac', u'specialist']
[u'hewitt', u'face', u'thigh', u'injuri', u'test', u'rotterdam']
[u'hick', u'trial', u'year', u'say']
[u'home', u'anim', u'take', u'tropfest', u'prize']
[u'hospit', u'chief', u'say', u'infect', u'issu', u'resolv']
[u'hospit', u'room', u'aim', u'eas', u'young', u'patient', u'trauma']
[u'hospit', u'apprentic']
[u'howard', u'defend', u'record', u'school', u'fund']
[u'howard', u'drag', u'feet', u'water', u'project']
[u'howard', u'letter', u'help', u'bring', u'timor']
[u'howel', u'beat', u'mickelson', u'play', u'allenbi']
[u'hugh', u'grant', u'jemima', u'khan', u'split']
[u'indonesian', u'armi', u'arm', u'timor', u'militia']
[u'home', u'respit', u'care', u'risk', u'feder']
[u'inland', u'council', u'want', u'transport', u'need', u'address']
[u'innov', u'roundtabl', u'plan', u'south', u'west']
[u'jone', u'hear', u'refere', u'comment']
[u'jovic', u'allow', u'stay', u'longer', u'australia']
[u'jovic', u'stay', u'australia', u'extend']
[u'jovic', u'support', u'hope', u'perman', u'visa']
[u'joyc', u'central', u'issu', u'hand']
[u'kosmina', u'loss', u'like', u'death', u'famili']
[u'lavarack', u'barrack', u'work', u'fast', u'track']
[u'liber', u'choos', u'fadden', u'candid']
[u'lifesav', u'look', u'bolster', u'tourism', u'industri']
[u'local', u'snap', u'karratha', u'hous', u'lot']
[u'accus', u'drink', u'drive', u'twice', u'night']
[u'accus', u'julatten', u'rape']
[u'charg', u'hotel', u'blaze']
[u'hurt', u'murray', u'accid']
[u'court', u'sydney', u'arm', u'robberi']
[u'fear', u'dead', u'blast', u'india', u'pakistan']
[u'market', u'hit', u'fresh', u'high']
[u'marsh', u'confid', u'season']
[u'maryborough', u'open', u'youth', u'crisi', u'centr']
[u'mauresmo', u'win', u'diamond', u'stud', u'racket', u'antwerp']
[u'mayor', u'meet', u'lennon', u'auspin', u'sawmil']
[u'mayor', u'want', u'share', u'auslink', u'fund']
[u'minist', u'quit', u'anna', u'nicol', u'smith', u'scandal']
[u'domest', u'violenc', u'refug', u'place', u'need', u'iemma']
[u'rain', u'need', u'winter', u'crop', u'plant']
[u'morwel', u'die', u'road', u'crash']
[u'want', u'fund', u'eas', u'busi', u'road']
[u'murray', u'battl', u'past', u'karlov', u'jose', u'titl']
[u'navel', u'orang', u'crop', u'increas']
[u'nebo', u'welcom', u'emerg', u'servic', u'vehicl']
[u'neitz', u'skipper', u'demon']
[u'newcastl', u'candid', u'reject', u'critic']
[u'newcastl', u'host', u'coal', u'industri', u'campaign', u'launch']
[u'medic', u'transport', u'servic', u'reach', u'asia']
[u'northern', u'york', u'ratepay', u'face', u'higher', u'levi']
[u'woman', u'take', u'conserv', u'challeng']
[u'olyroo', u'china']
[u'manag', u'structur', u'health', u'servic']
[u'opposit', u'air', u'polic', u'station', u'fear']
[u'opposit', u'send', u'mix', u'messag', u'port', u'kembla']
[u'organ', u'donor', u'appeal', u'launch']
[u'palestinian', u'uniti', u'govt', u'talk', u'fail', u'rice']
[u'parti', u'support', u'chang', u'self', u'govern']
[u'patrol', u'boat', u'oper', u'fault', u'fix']
[u'phone', u'compani', u'deni', u'tween', u'focus']
[u'pilotless', u'plane', u'crash', u'land', u'demonstr']
[u'playwright', u'prize']
[u'accus', u'rudd', u'iraq']
[u'bolster', u'iraq', u'instructor', u'commit']
[u'boost', u'iraq', u'instructor', u'commit']
[u'money', u'say', u'labor']
[u'struggl', u'hold', u'bennelong']
[u'murray', u'darl', u'object', u'unclear', u'rudd']
[u'warn', u'premier', u'delay', u'water', u'decis']
[u'polic', u'clarifi', u'patient', u'death', u'investig']
[u'polic', u'fear', u'miss', u'children']
[u'polic', u'hunt', u'alic', u'jail', u'escap']
[u'polic', u'hunt', u'bilinga', u'arm', u'bandit']
[u'polic', u'injur', u'crash']
[u'polic', u'investig', u'attack', u'teen']
[u'policeman', u'sentenc', u'child', u'porn']
[u'polit', u'fall', u'continu', u'water', u'plan']
[u'pol', u'pmopen']
[u'port', u'augusta', u'see', u'tropfest', u'festiv', u'live']
[u'port', u'hedland', u'record', u'motorcycl', u'death']
[u'premier', u'dodg', u'labor', u'record', u'debnam', u'say']
[u'promina', u'post', u'profit', u'rise']
[u'prosecutor', u'drop', u'terror', u'charg']
[u'protest', u'chain', u'bulldoz', u'weld']
[u'qanta', u'sack', u'mile', u'high', u'hosti']
[u'red', u'face', u'loss', u'intern']
[u'report', u'australian', u'attitud', u'cannabi']
[u'resid', u'hope', u'gather', u'drought', u'buster']
[u'resid', u'return', u'keith', u'lawri', u'flat']
[u'resid', u'student', u'death', u'wait', u'happen']
[u'resourc', u'boom', u'bolster', u'local', u'job']
[u'rice', u'hold', u'middl', u'east', u'talk']
[u'rice', u'sell', u'palestinian', u'uniti', u'govt']
[u'rice', u'persist', u'middl', u'east', u'peac', u'talk']
[u'shooter', u'enjoy', u'good', u'time']
[u'rudd', u'aim', u'water', u'compromis']
[u'rudd', u'oppos', u'iraq', u'militari', u'trainer', u'plan']
[u'founder', u'stori', u'silver', u'screen']
[u'school', u'fund', u'teacher']
[u'school', u'expect', u'toler']
[u'scientist', u'slam', u'beatti', u'water', u'plan']
[u'score', u'kill', u'seri', u'baghdad', u'blast']
[u'searcher', u'nut', u'outback', u'butt']
[u'shvedova', u'win', u'tour', u'titl', u'bangalor']
[u'skin', u'spray', u'compani', u'battl', u'reach', u'revenu', u'target']
[u'safe', u'menopaus', u'women', u'studi']
[u'sport', u'facil', u'face', u'water', u'fund', u'stumbl']
[u'spur', u'citi', u'reach', u'quarter']
[u'stab', u'accus', u'say', u'pritchard', u'brother', u'attack']
[u'state', u'bid', u'freez', u'sale', u'nuttal', u'home']
[u'storm', u'spark', u'problem', u'snowi', u'firefight']
[u'stuart', u'highway', u'reopen']
[u'stutter', u'palermo', u'hold', u'chievo']
[u'swan', u'hill', u'scheme', u'aim', u'boost', u'indigen', u'job']
[u'swimmer', u'rescu', u'danger', u'condit']
[u'sydney', u'rental', u'squeez', u'worsen']
[u'tamworth', u'resid', u'face', u'tougher', u'water', u'ban']
[u'task', u'forc', u'examin', u'beatti', u'water', u'propos']
[u'teen', u'die', u'speedboat', u'mishap']
[u'teen', u'critic', u'condit', u'cycl', u'accid']
[u'teen', u'critic', u'train', u'mishap']
[u'terror', u'charg', u'drop', u'teacher']
[u'thai', u'bomb', u'explos', u'kill']
[u'thai', u'offici', u'powerless', u'prevent', u'attack']
[u'theft', u'anger', u'avoca', u'shopkeep']
[u'charg', u'drug']
[u'charg', u'home', u'invas', u'bash']
[u'track', u'remov', u'work', u'dash', u'train', u'servic', u'hop']
[u'train', u'blast', u'wont', u'sabotag', u'peac', u'process', u'musharraf']
[u'tree', u'mishap', u'leav', u'resid', u'powerless']
[u'tristar', u'take', u'court', u'redund', u'payment']
[u'tristar', u'fight', u'worker', u'payment', u'alleg']
[u'turnbul', u'blame', u'rudd', u'carr', u'water', u'woe']
[u'anglican', u'church', u'close']
[u'union', u'claim', u'lockout', u'processor', u'talk']
[u'union', u'continu', u'hunt', u'blue', u'ribbon', u'staff']
[u'union', u'picnic', u'scrap', u'law']
[u'union', u'say', u'hec', u'cut', u'wont', u'solv', u'teacher', u'shortag']
[u'valencia', u'victori', u'open', u'spanish', u'titl', u'race']
[u'vandal', u'target', u'alic', u'high', u'school']
[u'veart', u'troubl', u'blind', u'mice', u'jibe']
[u'walgett', u'financi', u'counsellor', u'start', u'work', u'soon']
[u'walton', u'win', u'hobart', u'sprint', u'championship']
[u'water', u'topic', u'candid', u'gather']
[u'water', u'fear', u'resurrect', u'bradfield', u'scheme']
[u'woman', u'die', u'dive', u'mishap']
[u'woman', u'die', u'road', u'mishap', u'outsid', u'wed', u'recept']
[u'workplac', u'watchdog', u'take', u'tristar', u'court']
[u'workshop', u'focus', u'cut', u'suicid', u'rate']
[u'world', u'wide', u'open', u'say', u'fleme']
[u'xstrata', u'defend', u'sale', u'surplus', u'lithgow', u'land']
[u'ethanol', u'plant', u'plan', u'june']
[u'month', u'wait', u'secur', u'eurobodolla', u'water', u'suppli']
[u'cattl', u'vaccin', u'anthrax']
[u'feder', u'fund', u'geotherm', u'energi', u'project']
[u'abar', u'crop', u'report']
[u'abar', u'forecast', u'crop', u'reduct']
[u'academ', u'propos', u'carbon', u'credit', u'farmer']
[u'accc', u'oppos', u'santo']
[u'macquari', u'pest', u'opposit', u'say']
[u'actor', u'liotta', u'arrest']
[u'call', u'region', u'dental', u'school']
[u'african', u'design', u'ditch', u'skinni', u'model']
[u'american', u'say']
[u'applaud', u'action', u'journalist']
[u'assembl', u'debat', u'confid', u'motion', u'week']
[u'audit', u'save', u'council', u'water']
[u'aust', u'vulner', u'terrorist']
[u'baghdad', u'bodi', u'count', u'rise', u'lull']
[u'barcelona', u'liverpool', u'footbal']
[u'beatti', u'defend', u'honest', u'mine', u'deal']
[u'bennalong', u'time', u'come']
[u'bird', u'watcher', u'ponder', u'estuari', u'world']
[u'black', u'cap', u'sweep', u'australia']
[u'board', u'recommend', u'winemak', u'merger']
[u'bradfield', u'scheme', u'great', u'idea', u'say', u'joyc']
[u'brown', u'davi', u'california', u'podium']
[u'bruton', u'eye', u'special']
[u'bullet', u'pressur', u'king']
[u'burk', u'deni', u'receiv', u'confidenti', u'rezon']
[u'bushrang', u'sweat', u'denton']
[u'cahil', u'confid', u'everton', u'euro', u'boost']
[u'region', u'teacher', u'hec', u'debt']
[u'catastroph', u'unfold', u'mozambiqu']
[u'cattl', u'owner', u'warn', u'vaccin', u'botul']
[u'chelsea', u'pair', u'spur']
[u'chelsea', u'post', u'loss']
[u'chinchilla', u'council', u'keen', u'water', u'scheme', u'fund']
[u'church', u'play', u'unif', u'plan']
[u'closer']
[u'closer']
[u'win', u'freez', u'nuttal', u'home']
[u'coff', u'council', u'green', u'light', u'sawtel', u'station']
[u'communiti', u'grant', u'offer']
[u'control', u'order', u'odd', u'constitut', u'court']
[u'convent', u'light', u'bulb', u'phase']
[u'corpor', u'regul', u'bring', u'hardi', u'resign']
[u'council', u'consid', u'hors', u'centr', u'tender']
[u'council', u'continu', u'mozzi', u'spray']
[u'council', u'get', u'time', u'respond', u'glasshous']
[u'council', u'green', u'light', u'toronto', u'aquablu', u'develop']
[u'councillor', u'want', u'stop', u'corpor', u'polit']
[u'council', u'say', u'dirti', u'water', u'compo']
[u'council', u'seek', u'right', u'balanc', u'snowi', u'shire', u'plan']
[u'court', u'bail', u'accus', u'assault']
[u'court', u'verdict', u'prompt', u'green', u'zone']
[u'crew', u'continu', u'search', u'miss', u'bushwalk']
[u'cruis', u'liner', u'visit', u'caus', u'traffic', u'chao']
[u'culina', u'rejig', u'sydney', u'attack']
[u'cycl', u'champ', u'court', u'charg']
[u'cyclist', u'charg', u'crash', u'polic']
[u'death', u'highlight', u'increas', u'amphetamin', u'drug']
[u'decis', u'pend', u'troop', u'afghanistan']
[u'deport']
[u'detail', u'nuttal', u'loan', u'reveal']
[u'detent', u'centr', u'investig', u'committe', u'begin']
[u'diplomat', u'mission', u'look', u'restor', u'north', u'korea']
[u'downer', u'say', u'bainimarama', u'quit']
[u'urg', u'greater', u'focus', u'crime', u'prevent']
[u'drought', u'stop', u'epsom', u'race', u'meet']
[u'drought', u'slash', u'summer', u'crop', u'product']
[u'drug', u'offer', u'indigen', u'paint', u'inquiri']
[u'dubbo', u'crime', u'drop', u'camera', u'instal']
[u'educ', u'dept', u'beat', u'fill', u'region']
[u'endang', u'plant', u'bathurst']
[u'timor', u'approv', u'aust', u'deal']
[u'minist', u'leak', u'cabinet', u'talk', u'commiss', u'hear']
[u'extra', u'trainer', u'riski', u'australia', u'say', u'tinley']
[u'farmer', u'firewe', u'fund', u'need']
[u'farmer', u'urg', u'releas', u'rabbit', u'virus']
[u'feder', u'fund', u'seek', u'princ', u'highway']
[u'firefight', u'dous', u'shed', u'blaze']
[u'queen', u'mari', u'sail', u'sydney', u'harbour']
[u'foster', u'post', u'half', u'year', u'profit']
[u'frenchman', u'death', u'rule', u'accident']
[u'gippsland', u'group', u'back', u'jam', u'hardi', u'resign']
[u'good', u'inflow', u'region', u'biggest', u'dam']
[u'gospel', u'music', u'festiv', u'lose', u'headlin']
[u'govern', u'consid', u'bring', u'hick', u'home']
[u'govt', u'consid', u'bring', u'hick', u'home']
[u'govt', u'question', u'lake', u'bonney', u'research']
[u'govt', u'reject', u'anglican', u'school', u'registr']
[u'govt', u'say', u'powerlin', u'capac', u'south', u'west']
[u'govt', u'take', u'legal', u'action', u'tristar', u'payment']
[u'govt', u'tight', u'lip', u'possibl', u'elect', u'deal']
[u'govt', u'pull', u'plug', u'light', u'bulb']
[u'govt', u'urg', u'forc', u'intern', u'flight', u'alic']
[u'grain', u'grower', u'wheat', u'export', u'view']
[u'grain', u'grower', u'debat', u'drought', u'recoveri']
[u'green', u'group', u'urg', u'transport', u'crackdown']
[u'green', u'councillor', u'push', u'consider']
[u'hair', u'reject', u'english', u'offer']
[u'hardi', u'chairwoman', u'director', u'resign']
[u'hardi', u'regret', u'accept', u'director', u'resign']
[u'hayden', u'club', u'kiwi', u'record', u'knock']
[u'howard', u'promis', u'hard', u'yakka', u'poll', u'result']
[u'independ', u'polic', u'associ', u'effort']
[u'indonesian', u'tsunami', u'threat', u'eas']
[u'ingl', u'claim', u'rooki', u'award']
[u'insist', u'polic', u'integr']
[u'insurg', u'attack', u'kill', u'iraq']
[u'iraqi', u'criticis', u'howard', u'troop', u'plan']
[u'iraq', u'support', u'extra', u'troop']
[u'israel', u'palestin', u'agre', u'peac', u'talk']
[u'jam', u'hardi', u'chair', u'resign']
[u'jam', u'hardi', u'director', u'quit']
[u'jet', u'secur', u'egmond']
[u'jet', u'secur', u'egmond', u'year']
[u'joness', u'judici', u'hear', u'delay']
[u'jovic', u'jovic']
[u'judg', u'say', u'polic', u'victimis', u'knife', u'wave']
[u'kelli', u'consid', u'jail', u'site', u'rethink']
[u'kelli', u'osbourn', u'say', u'famili', u'member']
[u'labor', u'decid', u'yarragade', u'aquif', u'stanc']
[u'landscap', u'architect', u'slam', u'redevelop', u'plan']
[u'societi', u'back', u'work', u'hour', u'licenc']
[u'lawyer', u'hope', u'yambuk', u'settlement', u'soon']
[u'light', u'bulb', u'idea', u'come']
[u'light', u'bulb', u'plan', u'need', u'investig']
[u'lobbi', u'group', u'fear', u'highway', u'upgrad', u'compo']
[u'look', u'bum']
[u'lourd', u'hospit', u'back', u'nation', u'pledg']
[u'lower', u'fee', u'benefit']
[u'mackay', u'record', u'strong', u'busi', u'confid']
[u'accus', u'chainsaw', u'threat']
[u'maningrida', u'pool', u'safe', u'say', u'manag']
[u'jail', u'teen', u'rape']
[u'manjimup', u'school', u'princip', u'honour']
[u'market', u'close', u'flat']
[u'market', u'quiet', u'long', u'weekend']
[u'mayor', u'cast', u'doubt', u'bradfield', u'scheme']
[u'mill', u'closur', u'avoid', u'say', u'premier']
[u'miner', u'group', u'urg', u'politician', u'state', u'climat']
[u'molik', u'push', u'ahead', u'dubai']
[u'mooloolaba', u'spit', u'draft', u'plan', u'oppon', u'meet']
[u'call', u'health', u'insur', u'rebat', u'boost']
[u'say', u'rail', u'section']
[u'mulherin', u'tabl', u'cane', u'smut', u'report']
[u'murder', u'wife', u'give', u'suspend', u'jail', u'sentenc']
[u'murray', u'user', u'remind', u'play', u'safe']
[u'mine', u'open', u'break', u'hill']
[u'scheme', u'aim', u'deter', u'youth', u'crime']
[u'back', u'titan', u'trial', u'match']
[u'warn', u'whale', u'ship', u'spill']
[u'opposit', u'accus', u'destabilis', u'water', u'plan']
[u'opposit', u'accus', u'govt', u'mental', u'health', u'backflip']
[u'oscar', u'biggest', u'loser', u'hop']
[u'pakistan', u'india', u'continu', u'peac', u'process']
[u'paraglid', u'kill', u'lightn', u'strike']
[u'parti', u'urg', u'settl', u'sexual', u'harass', u'case']
[u'perilya', u'offer', u'dividend', u'reinvest', u'plan']
[u'player', u'associ', u'review', u'program', u'amid']
[u'flag', u'action', u'eas', u'rent', u'pressur']
[u'happi', u'consid', u'beatti', u'water', u'plan']
[u'push', u'bush', u'action', u'hick']
[u'polic', u'continu', u'probe', u'fatal', u'boat', u'mishap']
[u'polic', u'hunt', u'brisban', u'rapist']
[u'polic', u'public', u'honour', u'communiti', u'safeti', u'award']
[u'polit', u'insult', u'iraq']
[u'polit', u'pmopen']
[u'pound', u'ball', u'recal']
[u'cannabi', u'group', u'say', u'shift', u'amphetamin']
[u'produc', u'welcom', u'improv', u'live', u'export', u'trade']
[u'protest', u'greet', u'alburi', u'wodonga', u'freeway', u'open']
[u'queanbeyan', u'council', u'releas', u'plan', u'guidelin']
[u'queen', u'mari', u'sail', u'sydney']
[u'rain', u'boost', u'mundubbera', u'water', u'suppli']
[u'red', u'sorri', u'mull', u'charg']
[u'region', u'area', u'access', u'petrol', u'sniff']
[u'religi', u'belief', u'spark', u'treatment', u'limit']
[u'report', u'detail', u'dire', u'consequ', u'auspin']
[u'research', u'test', u'devil', u'cancer', u'vaccin']
[u'research', u'find', u'parent', u'worri', u'cost']
[u'erupt', u'pallarenda', u'land']
[u'royal', u'darwin', u'hospit', u'nurs', u'work', u'hour', u'week']
[u'rudd', u'clinch', u'prefer', u'poll']
[u'rudd', u'edg', u'howard']
[u'rudd', u'get', u'howard']
[u'rudd', u'overtak', u'howard', u'prefer']
[u'rudd', u'prefer']
[u'run', u'flow', u'hayden']
[u'sale', u'charg', u'tripl', u'road', u'death']
[u'scientist', u'discuss', u'reloc', u'tassi', u'devil']
[u'scott', u'slip', u'fourth']
[u'search', u'hold', u'miss', u'ocean', u'monitor']
[u'senat', u'probe', u'wont', u'stop', u'traveston']
[u'sheep', u'treatment', u'sicken']
[u'soil', u'contamin', u'test', u'reveal', u'health', u'risk']
[u'sorri', u'unit', u'appeal', u'valkani']
[u'standard', u'govern']
[u'star', u'oscar', u'fashion']
[u'stockland', u'shop', u'develop', u'expect', u'ahead']
[u'storm', u'caus', u'havoc', u'north', u'west']
[u'storm', u'leav', u'area', u'alight', u'flood']
[u'strand', u'expect', u'open', u'today', u'croc', u'sight']
[u'strang', u'light', u'see', u'southern']
[u'studi', u'consid', u'good', u'vibrat', u'senior']
[u'suncorp', u'metway', u'profit', u'growth', u'doubl', u'digit']
[u'survey', u'show', u'safe', u'menopaus', u'women']
[u'sydney', u'give', u'queen', u'mari', u'world', u'warmest', u'welcom']
[u'sydney', u'welcom', u'queen', u'mari']
[u'talk', u'look', u'secur', u'indigen', u'accommod', u'fund']
[u'teen', u'injur', u'deodor', u'blast']
[u'telstra', u'chief', u'hear', u'better', u'bush']
[u'thousand', u'catch', u'histor', u'sydney', u'ship', u'cross']
[u'truth', u'commiss', u'hear', u'wit', u'evid']
[u'tsunami', u'warn', u'indonesia']
[u'tuqiri', u'say', u'decis', u'futur', u'close']
[u'turnbul', u'pull', u'plug', u'light', u'bulb']
[u'overnight', u'knife', u'attack', u'orang']
[u'union', u'sidestep', u'picnic']
[u'union', u'offer', u'support', u'nurs', u'bank', u'plan']
[u'plan', u'southern', u'gold', u'coast', u'campus']
[u'venus', u'win', u'return', u'injuri']
[u'vet', u'warn', u'hors', u'owner', u'monitor', u'diseas']
[u'say', u'chemic', u'committe', u'lack', u'expertis']
[u'govt', u'urg', u'begin', u'wodonga', u'rail', u'bypass', u'project']
[u'virgin', u'blue', u'half', u'year', u'profit', u'increas']
[u'voge', u'johnson', u'includ', u'australia']
[u'parent', u'pay', u'child', u'support', u'week']
[u'petrol', u'tax', u'go']
[u'windsor', u'singl', u'desk', u'nation', u'survey']
[u'wollongong', u'council', u'investig', u'harass']
[u'woman', u'accus', u'tourist', u'theft']
[u'woman', u'drag', u'taxi']
[u'wood', u'pile', u'hamper', u'firefight']
[u'workplac', u'watchdog', u'sham', u'action', u'tristar']
[u'world', u'prematur', u'babi', u'home']
[u'yabbi', u'tune', u'underwat', u'broadband']
[u'antarct', u'airstrip', u'track']
[u'properti', u'target', u'biki', u'drug', u'raid']
[u'contract', u'award', u'lavarack', u'barrack', u'revamp']
[u'abetz', u'seek', u'nation', u'park', u'overhaul', u'halt']
[u'accuraci', u'reef', u'polic', u'question']
[u'addict', u'jail', u'involv', u'businessman']
[u'adelaid', u'hors', u'auction', u'price', u'increas']
[u'agreement', u'reach', u'jam', u'brown', u'burial']
[u'highlight', u'indigen', u'vote', u'fear']
[u'american', u'psycholog', u'associ', u'studi']
[u'appeal', u'court', u'rule', u'speed', u'camera', u'acquitt', u'wrong']
[u'contamin', u'water', u'undrink']
[u'asic', u'probe', u'delay', u'jam', u'hardi', u'report']
[u'assist', u'boost', u'bandaid', u'solut', u'hous']
[u'atb', u'reveal', u'detail', u'tanker', u'mishap']
[u'australian', u'industri', u'group', u'support', u'pipelin', u'project']
[u'australia', u'sanction', u'iran', u'uranium', u'enrich']
[u'australia', u'coast', u'tsunami']
[u'australia', u'set', u'italian', u'train', u'camp']
[u'australia', u'page', u'iraq', u'downer']
[u'aust', u'urg', u'pressur', u'philippin', u'kill']
[u'bainimarama', u'silent', u'call', u'quit']
[u'bakeri', u'prove', u'cost']
[u'battl', u'drag', u'anna', u'nicol', u'smith']
[u'beaconsfield', u'manag', u'resign']
[u'bishop', u'continu', u'push', u'merit', u'base']
[u'bishop', u'elect', u'seek', u'brief', u'territori', u'issu']
[u'black', u'cast', u'doubt', u'nation', u'plan']
[u'blair', u'announc', u'iraq', u'withdraw', u'plan']
[u'blair', u'iraq', u'decis', u'make', u'good', u'sens', u'downer']
[u'blair', u'tell', u'bush', u'iraq', u'pullout', u'plan']
[u'bland', u'aquif', u'rise']
[u'block', u'land', u'cap', u'increas', u'hous']
[u'bodyboard', u'death', u'prompt', u'surf', u'warn']
[u'bomber', u'return', u'baghdad', u'crackdown']
[u'brackss', u'water', u'plan']
[u'british', u'announc', u'iraq', u'withdraw', u'plan']
[u'britney', u'spear', u'check', u'rehab']
[u'buck', u'back', u'australia', u'prepar']
[u'bunni', u'build', u'resist', u'calicivirus']
[u'burk', u'discuss', u'cabinet', u'inform', u'lawyer']
[u'burk', u'lie', u'control', u'minist', u'inquiri']
[u'nation', u'aborigin', u'cell', u'visitor', u'scheme']
[u'calliop', u'surfac', u'water', u'manag', u'plan', u'releas']
[u'callous', u'defenc', u'compani', u'attack', u'enterpris']
[u'canberra', u'librari', u'closur', u'fear']
[u'candid', u'want', u'trangi', u'polic', u'station', u'open']
[u'bomber', u'kill', u'holi', u'iraqi', u'citi']
[u'central', u'crop', u'forecast', u'better', u'nation']
[u'climb', u'region', u'road', u'toll', u'spark', u'safeti', u'warn']
[u'closer']
[u'closer']
[u'club', u'develop', u'offic', u'help', u'local', u'sport']
[u'coal', u'compani', u'sell', u'land', u'lithgow', u'resid']
[u'coalit', u'want', u'intern', u'event', u'snowi']
[u'cockl', u'price', u'doubl']
[u'communiti', u'back', u'doctor', u'centr', u'hospit']
[u'consist', u'eagl']
[u'council', u'green', u'light', u'leonard', u'hill', u'wind', u'farm']
[u'council', u'ponder', u'indigen', u'job', u'plan']
[u'council', u'warn', u'takeov', u'water', u'sewerag']
[u'court', u'consid', u'thoma', u'control', u'order']
[u'court', u'jail', u'ballarat', u'gang', u'bash']
[u'court', u'refus', u'bail', u'accus', u'senior', u'attack']
[u'court', u'tell', u'rapist', u'threaten', u'victim']
[u'crawford', u'play', u'steffensen', u'rivalri']
[u'croc', u'rilli']
[u'reap', u'half', u'year', u'profit', u'boost']
[u'cyclist', u'die', u'broom']
[u'danc', u'festiv', u'organis', u'fin', u'nois']
[u'daniel', u'baldwin', u'plead', u'innoc', u'theft']
[u'darwin', u'polic', u'look', u'rain', u'umbrella', u'thief']
[u'demand', u'high', u'derbi', u'land']
[u'denmark', u'pull', u'troop', u'iraq']
[u'dentistri', u'student', u'urg', u'region', u'work']
[u'dredg', u'begin', u'lake', u'illawarra', u'entranc']
[u'east', u'timor', u'ratifi', u'energi', u'pact', u'aust']
[u'einfeld', u'fail', u'drive', u'offenc', u'detail']
[u'elector', u'commiss', u'dismiss', u'pot']
[u'energi', u'firm', u'say', u'region', u'offer', u'hope']
[u'envoy', u'seek', u'dispel', u'borat', u'imag']
[u'local', u'work']
[u'farmer', u'say', u'wheat', u'export', u'decis']
[u'farmer', u'urg', u'check', u'drought', u'elig']
[u'fear', u'air', u'blaze', u'near', u'cradl', u'mountain', u'villag']
[u'govt', u'boost', u'fund', u'devil', u'fight']
[u'fedpol', u'open']
[u'fiji', u'coup', u'leader', u'say', u'elect', u'hold']
[u'fisher', u'campaign', u'nambucca', u'river', u'dredg']
[u'flegg', u'propos', u'brisban', u'carbon', u'exchang']
[u'hop', u'cut', u'boost', u'competit']
[u'gene', u'test', u'parkinson', u'treatment']
[u'giteau', u'size', u'wallabi', u'captainci']
[u'govt', u'announc', u'school', u'hospit', u'fund']
[u'govt', u'agre', u'standardis', u'heavi', u'vehicl', u'driver']
[u'govt', u'sorri', u'traffic', u'chao', u'ship', u'visit']
[u'govt', u'wad', u'indigen', u'remain', u'disput']
[u'greas', u'wheel', u'recycl', u'govt', u'tell']
[u'greenpeac', u'shut', u'newcastl', u'coal', u'oper']
[u'group', u'unit', u'combat', u'firewe']
[u'guantanamo', u'inmat', u'prevent', u'court', u'challeng']
[u'dealer', u'jail', u'buyback', u'scheme', u'scam']
[u'posit', u'boxer', u'ring']
[u'hobart', u'airport', u'chief', u'hop', u'attract', u'tiger']
[u'hold', u'hit', u'hoper']
[u'hook', u'widow', u'reach', u'court', u'settlement']
[u'hope', u'busi', u'employ', u'clark', u'staff']
[u'hopetoun', u'face', u'resourc', u'boom', u'pressur']
[u'iemma', u'stick', u'murray', u'darl', u'plan']
[u'india', u'pakistan', u'sign', u'nuclear', u'deal']
[u'indonesia', u'urg', u'free', u'papuan', u'prison']
[u'infect', u'rule', u'caus', u'croc', u'death']
[u'inmat', u'guantanamo', u'deni', u'court', u'challeng']
[u'inquiri', u'find', u'indigen', u'exploit', u'worst']
[u'iran', u'disregard', u'nuclear', u'deadlin']
[u'iran', u'put', u'condit', u'nuclear', u'talk']
[u'isra', u'forc', u'kill', u'islam', u'jihad', u'leader']
[u'japan', u'rais', u'rat']
[u'cut', u'expect', u'small', u'rice', u'crop']
[u'joyc', u'highlight', u'need', u'accommod']
[u'katsidi', u'return', u'lightweight', u'titl']
[u'king', u'walli', u'recov', u'success', u'surgeri']
[u'king', u'walli', u'brain', u'surgeri', u'success']
[u'king', u'walli', u'hour', u'surgeri']
[u'larsson', u'say', u'unit', u'extens']
[u'societi', u'air', u'permit', u'plan', u'suspend', u'driver']
[u'lawyer', u'say', u'rule', u'bolster', u'case', u'hickss']
[u'lead', u'fashion', u'design', u'die']
[u'lightn', u'leav', u'resid', u'dark']
[u'light', u'shed', u'southern', u'ocean', u'climat', u'chang', u'link']
[u'lill', u'face', u'uefa', u'wrath', u'unit', u'real']
[u'luca', u'renew', u'call', u'feder', u'road', u'fund']
[u'mackay', u'council', u'count', u'lagoon', u'fund']
[u'charg', u'steal', u'steak']
[u'die', u'melbourn', u'polic', u'shoot']
[u'mandurah', u'local', u'urg', u'consid', u'rainwat', u'tank']
[u'steal', u'payphon', u'month', u'polic']
[u'face', u'court', u'accus', u'grow', u'cannabi']
[u'face', u'court', u'accus', u'sword', u'kill', u'threat']
[u'court', u'accus', u'attempt', u'murder']
[u'mascherano', u'surpris', u'liverpool', u'debut']
[u'mayweath', u'mock', u'pussi', u'hoya']
[u'elect', u'boss']
[u'mcewen', u'angri', u'timbercorp', u'water', u'polici', u'claim']
[u'medicar', u'help', u'improv', u'health', u'fund']
[u'north', u'drought', u'applic', u'submit']
[u'mine', u'industri', u'sector', u'drag', u'market', u'lower']
[u'minist', u'flag', u'crackdown', u'dealer']
[u'miss', u'snowi', u'mountain', u'bushwalk']
[u'crisp', u'formal', u'resign', u'councillor']
[u'find', u'recycl', u'water', u'plan', u'hard', u'swallow']
[u'refer', u'patel', u'compo', u'case']
[u'want', u'parti', u'elect', u'expenditur', u'reveal']
[u'want', u'speed', u'limit', u'reduct', u'near', u'school']
[u'health', u'worker', u'join', u'leadership', u'cours']
[u'murray', u'darl', u'deal', u'like', u'rann', u'say']
[u'park', u'reliev', u'hospit', u'congest']
[u'sale', u'januari']
[u'sale', u'soar']
[u'report', u'order', u'bather', u'pavilion', u'revamp']
[u'nicol', u'richi', u'plead', u'guilti', u'drink', u'drive']
[u'dentist', u'alloc', u'lismor']
[u'polic', u'roster', u'discuss', u'moroney', u'say']
[u'ocean', u'liner', u'trigger', u'traffic', u'chao']
[u'orang', u'bathurst', u'polic', u'industri', u'action']
[u'oscar', u'vote', u'count', u'get']
[u'outback', u'church', u'faith', u'merger']
[u'outback', u'dust', u'slow', u'climat', u'chang', u'scientist']
[u'pacif', u'brand', u'eye', u'yakka']
[u'patton', u'juror', u'show', u'locat']
[u'media', u'perth', u'channel']
[u'perform', u'teacher', u'wrong', u'approach']
[u'plan', u'check', u'storm', u'spark', u'fire']
[u'plan', u'chang', u'rais', u'concern']
[u'play', u'british', u'troop', u'withdraw']
[u'quiet', u'chief', u'rate', u'assess']
[u'wont', u'follow', u'lead', u'troop', u'reduct']
[u'polic', u'defend', u'offic', u'shoot']
[u'polic', u'investig', u'sheep', u'theft']
[u'polic', u'smash', u'biki', u'link', u'drug', u'syndic']
[u'polic', u'drug', u'danc', u'festiv']
[u'polic', u'warn', u'protest', u'ahead', u'cheney', u'visit']
[u'port', u'macquari', u'get', u'glimps', u'queen', u'mari']
[u'premier', u'back', u'minist', u'macquari', u'pest']
[u'pulp', u'oppon', u'threaten', u'court', u'action']
[u'push', u'continu', u'time', u'dentist']
[u'govt', u'defend', u'industri', u'emiss', u'effort']
[u'govt', u'give', u'townsvill', u'race', u'plan']
[u'rain', u'consid', u'hindranc', u'summer', u'crop']
[u'rate', u'hike', u'chanc']
[u'rate', u'hike', u'like', u'fall', u'say', u'boss']
[u'governor', u'predict', u'rate', u'rise']
[u'real', u'madrid', u'protest', u'uefa', u'bommel']
[u'recoveri', u'plan', u'urg', u'grower', u'plant', u'smut']
[u'redback', u'outclass', u'tiger']
[u'redback', u'restrict', u'tiger', u'total']
[u'red', u'deni', u'tuqiri', u'backflip']
[u'reef', u'fish', u'court', u'rule', u'surpris', u'sunfish']
[u'report', u'back', u'merit', u'base', u'teacher', u'bishop']
[u'resid', u'want', u'water', u'fluorid']
[u'riverland', u'experi', u'ambul', u'volunt', u'shortag']
[u'robust', u'econom', u'growth', u'expect']
[u'rudd', u'call', u'aust', u'withdraw', u'strategi']
[u'rudd', u'urg', u'brack', u'compromis', u'water']
[u'rylston', u'park', u'propos']
[u'safeti', u'confer', u'hear', u'cyclon', u'damag']
[u'satellit', u'debri', u'spark', u'sight']
[u'satellit', u'scheme', u'allow', u'track']
[u'happen']
[u'social', u'event', u'help', u'dwellingup', u'bushfir', u'recoveri']
[u'solar', u'demonstr', u'facil', u'greenhous']
[u'solomon', u'prosecutor', u'drop', u'assassin', u'plot', u'case']
[u'speed', u'involv', u'fatal', u'crash']
[u'stab', u'victim', u'break', u'fight']
[u'state', u'feder', u'polic', u'break', u'biki', u'drug', u'ring']
[u'state', u'remain', u'divid', u'water', u'plan']
[u'stosur', u'memphi', u'second', u'round']
[u'strong', u'show', u'drought', u'concert']
[u'studi', u'shed', u'light', u'carp', u'growth', u'rate']
[u'sunshin', u'coast', u'feel', u'hous', u'crisi', u'impact']
[u'tabcorp', u'profit', u'drop', u'percent']
[u'technolog', u'help', u'develop', u'wool', u'bale']
[u'teen', u'cyclist', u'succumb', u'injuri']
[u'theyv', u'decid', u'pick', u'comment', u'jone']
[u'tiger', u'draw', u'blood']
[u'trawler', u'find', u'miss', u'ocean', u'monitor']
[u'chief', u'recommend', u'troop', u'darfur', u'border']
[u'unit', u'owner', u'refus', u'kosmina']
[u'link', u'philippin', u'militari', u'polit', u'kill']
[u'soldier', u'plead', u'guilti', u'iraq', u'gang', u'rape', u'murder']
[u'vaughan', u'promis', u'beat', u'littl', u'hamstr', u'injuri']
[u'govt', u'propos', u'water', u'plan']
[u'govt', u'reject', u'howard', u'water', u'plan']
[u'wage', u'price', u'index']
[u'wag', u'growth', u'better', u'expect']
[u'wall', u'recov', u'post', u'holiday', u'slump']
[u'western', u'queensland', u'wednesday', u'februari']
[u'white', u'hous', u'welcom', u'guantanamo', u'rule']
[u'whitnal', u'confirm', u'blue', u'captain']
[u'woman', u'die', u'truck', u'crash']
[u'woodsid', u'post', u'record', u'profit']
[u'young', u'buck', u'hayden']
[u'arrest', u'cheney', u'protest', u'defi', u'march']
[u'anti', u'log', u'protest', u'arrest']
[u'boss', u'reject', u'cancer', u'cluster', u'handl', u'concern']
[u'abetz', u'urg', u'local', u'involv', u'firefight']
[u'trial', u'rule', u'demon', u'hawk', u'clash']
[u'colleg', u'search', u'world', u'sheep', u'instructor']
[u'alic', u'base', u'servic', u'boost', u'mental', u'health']
[u'arroyo', u'promis', u'action', u'extra', u'judici', u'kill']
[u'aust', u'govt', u'enter', u'remain', u'trial']
[u'aust', u'year', u'nomine', u'urg', u'dairi', u'industri', u'exit']
[u'aust', u'boost', u'afghanistan', u'troop', u'number']
[u'aust', u'review', u'afghanistan', u'troop', u'commit']
[u'warn', u'sharehold', u'earn', u'plung']
[u'pois', u'fall', u'kosmina']
[u'babcock', u'brown', u'confirm', u'alinta']
[u'bali', u'ban', u'bomb', u'film']
[u'balibo', u'shoot', u'armi', u'order', u'court', u'tell']
[u'balibo', u'inquest', u'tell', u'inquiri', u'whitewash']
[u'ballet', u'dancer', u'await', u'strike', u'ballot', u'decis']
[u'bellami', u'riis', u'club', u'barca']
[u'brimbl', u'famili', u'welcom', u'human', u'respons']
[u'britain', u'denmark', u'confirm', u'plan', u'withdraw', u'troop']
[u'britain', u'denmark', u'confirm', u'troop', u'withdraw', u'plan']
[u'bronco', u'hope', u'relat', u'valu', u'saint']
[u'brumbi', u'recal', u'hurrican', u'encount']
[u'businessman', u'hop', u'race', u'deal']
[u'busi', u'urg', u'play', u'bigger', u'role', u'save', u'reef']
[u'cane', u'farm', u'famili', u'invest', u'apart']
[u'crash', u'victim', u'stab', u'wound']
[u'part', u'maker', u'shed', u'job']
[u'part', u'maker', u'wont', u'rule', u'loss']
[u'carpent', u'cut', u'short', u'trade', u'mission']
[u'check', u'reveal', u'maryborough', u'cane', u'smut']
[u'cheetah', u'await', u'struggl', u'crusad']
[u'cheney', u'land', u'sydney']
[u'chlorin', u'attack', u'iraq', u'worri', u'offici']
[u'claim', u'govt', u'meet', u'help', u'mari', u'valley']
[u'closer']
[u'closer']
[u'coalit', u'renew', u'orang', u'mudge', u'road', u'fund', u'pledg']
[u'coff', u'museum', u'return', u'tradit']
[u'coonan', u'say', u'perth', u'takeov', u'threaten', u'job']
[u'corrigin', u'record', u'strong', u'hous', u'price', u'growth']
[u'cosgrov', u'call', u'cyclon', u'task', u'forc']
[u'costello', u'defend', u'cash', u'slash']
[u'costello', u'promis', u'chang', u'wool', u'boycott']
[u'councillor', u'suggest', u'plastic']
[u'council', u'warn', u'small', u'busi', u'support']
[u'court', u'jail', u'assault', u'pregnant', u'girlfriend']
[u'cruis', u'compani', u'offer', u'compo', u'griev', u'brimbl']
[u'defend', u'champ', u'ogilvi', u'stand', u'tall', u'match', u'play']
[u'director', u'sack', u'indigen', u'develop']
[u'dog', u'unleash', u'sonni']
[u'dont', u'play', u'polit', u'water', u'turnbul', u'warn', u'labor']
[u'appeal', u'ausaid', u'advis', u'child', u'porn', u'sentenc']
[u'drill', u'start', u'project']
[u'drought', u'forc', u'racer', u'head', u'north']
[u'drug', u'probe', u'continu', u'biki', u'raid']
[u'dump', u'truck', u'tyre', u'kill']
[u'dust', u'emerg', u'alli', u'climat', u'chang', u'fight']
[u'earthquak', u'rock', u'auckland']
[u'egypt', u'jail', u'blogger', u'insult', u'islam']
[u'elder', u'die', u'tylden', u'road', u'crash']
[u'nino', u'declar']
[u'road', u'hamil']
[u'action', u'coast', u'creek', u'wast']
[u'esper', u'wheat', u'farmer', u'export']
[u'eurobodalla', u'resid', u'urg', u'help', u'clean', u'shire']
[u'energi', u'boss', u'acquit', u'child', u'charg']
[u'facelift', u'plan', u'albert', u'hall', u'precinct']
[u'feder', u'rental', u'say', u'councillor']
[u'govt', u'ignor', u'brisban', u'condit', u'beatti']
[u'govt', u'urg', u'accept', u'respons']
[u'farmer', u'advantag', u'rat', u'discount']
[u'fire', u'bullet', u'buri', u'king']
[u'firm', u'track', u'drill', u'rock']
[u'kill', u'horror', u'night', u'road']
[u'forestri', u'group', u'disappoint', u'pulp']
[u'fruit', u'invad', u'north', u'east']
[u'fund', u'offer', u'indigen', u'project']
[u'gasnier', u'hornbi', u'ryle', u'lead', u'dragon']
[u'bridg', u'futur', u'energi', u'say', u'industri']
[u'giteau', u'retain', u'forc', u'half', u'spot']
[u'goodwin', u'lead', u'crow', u'season', u'match']
[u'goodwin', u'lead', u'crow', u'preseason', u'match']
[u'govt', u'introduc', u'barley', u'export']
[u'govt', u'say', u'offer', u'fisheri', u'secur']
[u'gower', u'captain', u'panther']
[u'green', u'light', u'narromin', u'aerodrom', u'drag']
[u'greenpeac', u'activist', u'charg', u'coal', u'protest']
[u'guest', u'worker', u'exploit', u'alleg']
[u'gunn', u'accus', u'slow', u'pulp', u'assess']
[u'hang', u'glider', u'buangor', u'launch']
[u'heather', u'mill', u'join', u'danc', u'star']
[u'victim', u'sister', u'join', u'call', u'info']
[u'hope', u'salvag', u'log', u'fast', u'track']
[u'hospit', u'blame', u'fund', u'crisi']
[u'hospit', u'outsourc', u'patholog', u'servic']
[u'howard', u'boost', u'afghan', u'troop', u'deploy']
[u'throw', u'lifelin']
[u'iemma', u'keen', u'sign', u'water', u'deal']
[u'infrastructur', u'project', u'mackay', u'rat', u'rise']
[u'inquest', u'tell', u'previous', u'balibo', u'inquiri', u'whitewash']
[u'insur', u'half', u'year', u'profit', u'dive']
[u'involv', u'iraq', u'increas', u'terror', u'threat']
[u'iran', u'seek', u'nuclear', u'capabl', u'presid']
[u'italian', u'resign']
[u'maker', u'band', u'creat', u'katherin']
[u'jone', u'cop', u'hefti', u'fine']
[u'kiama', u'liber', u'candid', u'look', u'forward']
[u'king', u'grand', u'final', u'line']
[u'kosmina', u'step', u'unit', u'coach']
[u'liber', u'strip', u'portfolio']
[u'maher', u'livid', u'buck']
[u'arrest', u'town', u'camp', u'fatal', u'stab']
[u'plead', u'guilti', u'tripl', u'kill']
[u'court', u'high', u'speed', u'chase']
[u'matilda', u'burma', u'olymp', u'qualifi']
[u'mayor', u'air', u'worri', u'council', u'review']
[u'mayor', u'worri', u'nuclear', u'law', u'hamper', u'uranium']
[u'target', u'highway', u'revamp', u'work']
[u'mine', u'expans', u'expect', u'prompt', u'union', u'growth']
[u'traffic', u'prompt', u'road', u'seal', u'petit']
[u'minist', u'open', u'perform', u'teacher']
[u'minist', u'reassur', u'staff', u'link', u'team', u'reloc']
[u'port', u'surveil', u'see', u'minimis']
[u'mugab', u'wont', u'loosen', u'grip', u'power']
[u'multiplex', u'rebound', u'wembley', u'woe']
[u'mundubbera', u'council', u'air', u'weir', u'water', u'worri']
[u'navi', u'intercept', u'suspect', u'asylum', u'seeker', u'boat']
[u'navi', u'question', u'suspect', u'asylum', u'seeker']
[u'film', u'focus', u'batavia', u'histori']
[u'law', u'forc', u'molloy', u'repay', u'elector']
[u'ignor', u'tradit', u'owner', u'wish', u'say', u'group']
[u'decis', u'afghan', u'troop', u'increas', u'nelson']
[u'pardon', u'hick', u'say']
[u'park', u'visitor', u'allow', u'fire', u'burn']
[u'thing', u'victori', u'iraq', u'nelson']
[u'defend', u'chang', u'rule', u'cheney', u'guard']
[u'nurs', u'work', u'hour']
[u'fishermen', u'haul', u'squid']
[u'railway', u'station', u'face', u'uncertain', u'futur']
[u'olyroo', u'finish', u'hong', u'kong']
[u'opposit', u'say', u'govt', u'confus', u'desal', u'plant']
[u'outrag', u'anti', u'boycott', u'power', u'draw', u'angri', u'respons']
[u'oxiana', u'report', u'seven', u'fold', u'profit', u'jump']
[u'apologis', u'brimbl', u'famili']
[u'patton', u'cloth', u'insid', u'say', u'forens']
[u'pearl', u'group', u'woodsid', u'discuss', u'plant', u'plan']
[u'plan', u'whitsunday', u'visitor', u'restrict', u'draw', u'mix']
[u'announc', u'drought']
[u'offer', u'cash', u'relief', u'bushfir', u'victim']
[u'polic', u'continu', u'investig', u'student']
[u'polic']
[u'polic', u'issu', u'steal', u'phone', u'warn']
[u'policeman', u'plead', u'guilti', u'assault']
[u'polic', u'region', u'traffic', u'coordin', u'see']
[u'polic', u'replic', u'bomb', u'gold', u'coast', u'victim']
[u'polic', u'urg', u'releas', u'drug', u'detail']
[u'pont', u'consid', u'chang', u'tactic']
[u'port', u'hedland', u'alcohol', u'restrict', u'undergo', u'earli']
[u'power', u'woe', u'hamper', u'ravensthorp', u'develop']
[u'price', u'encourag', u'organ', u'wool', u'grower']
[u'princ', u'harri', u'serv', u'iraq']
[u'protest', u'gear', u'cheney', u'arriv']
[u'rain', u'damag', u'cotton', u'crop']
[u'rainfal', u'vari', u'canberra', u'region']
[u'rain', u'help', u'eas', u'water', u'restrict']
[u'refuge', u'stori', u'featur', u'adelaid', u'film', u'festiv']
[u'rental', u'hous', u'need']
[u'report', u'recommend', u'chang', u'corpor', u'credit', u'card']
[u'report', u'lightn', u'spark', u'fire']
[u'research', u'focus', u'throat', u'infect', u'heart']
[u'resid', u'call', u'northumberland', u'avenu', u'closur']
[u'result', u'push', u'market', u'record', u'close']
[u'rice', u'flag', u'action', u'iran']
[u'rice', u'grower', u'prepar', u'plant']
[u'rice', u'grower', u'plan']
[u'riverina', u'soak', u'storm', u'rain']
[u'rizzo', u'eye', u'beij', u'comeback']
[u'rudd', u'back', u'larger', u'afghan', u'deploy']
[u'safecom', u'bushfir', u'season', u'updat']
[u'santo', u'profit', u'slide']
[u'scientist', u'surpris', u'data', u'distant', u'planet']
[u'scotland', u'talk', u'aussi', u'upset']
[u'search', u'miss']
[u'second', u'meet', u'debat', u'saleyard', u'sit']
[u'seven', u'arrest', u'cheney', u'protest']
[u'seven', u'network', u'half', u'year', u'profit', u'soar']
[u'ship', u'owner', u'fin', u'mallacoota', u'spill']
[u'shop', u'centr', u'expans', u'get', u'council', u'green', u'light']
[u'shop', u'centr', u'plan', u'differ', u'valuat']
[u'skippi', u'huegil', u'call']
[u'skywest', u'beat', u'perth', u'kununurra', u'flight']
[u'snowsil', u'honour', u'australian', u'sport', u'award']
[u'snowi', u'council', u'get', u'green', u'light', u'extens']
[u'southern', u'win', u'sydney', u'wine', u'medal']
[u'spin', u'fact']
[u'stephenson', u'stand', u'mayor', u'elect']
[u'stosur', u'sneak', u'past']
[u'strang', u'light', u'attribut', u'explod', u'satellit']
[u'studi', u'reveal', u'region', u'youth', u'movement']
[u'swing', u'voter', u'worri', u'labor']
[u'teacher', u'group', u'warn', u'govt', u'cautious']
[u'teen', u'appeal', u'help', u'wooloowin', u'rape', u'case']
[u'territori', u'defend', u'travel']
[u'titan', u'strong', u'lismor', u'trial', u'match']
[u'titan', u'up', u'ant', u'eel']
[u'tongu', u'lick', u'rival', u'raider', u'captainci']
[u'tradit', u'owner', u'discuss', u'leas', u'concern']
[u'trucki', u'die', u'port', u'stephen', u'crash']
[u'uefa', u'discuss', u'crowd', u'problem']
[u'base', u'paedophil', u'ring', u'break']
[u'open']
[u'troop', u'reduct', u'posit', u'sign']
[u'unit', u'charg', u'point', u'clear']
[u'valkani', u'escap', u'suspens']
[u'vandal', u'target', u'broom', u'street', u'tree']
[u'environ', u'minist', u'draw', u'revel']
[u'wangaratta', u'councillor', u'quit']
[u'lose']
[u'watford', u'hold', u'wigan', u'spur']
[u'water', u'project', u'receiv', u'fund', u'boost']
[u'weak', u'wag', u'growth', u'eas', u'inflat', u'fear']
[u'woman', u'charg', u'music', u'festiv', u'death']
[u'woman', u'charg', u'fatal', u'pension', u'stab']
[u'wood', u'advanc', u'match', u'play']
[u'work', u'begin', u'defenc', u'imageri']
[u'work', u'begin', u'waikeri', u'bypass', u'upgrad']
[u'workshop', u'boost', u'young', u'farmer', u'financi']
[u'youth', u'seek', u'train', u'scheme']
[u'peopl', u'indonesian', u'ferri', u'blaze']
[u'cannabi', u'land', u'woman', u'jail']
[u'aborigin', u'remain', u'trial', u'adjourn']
[u'school', u'counsel', u'criticis']
[u'aerial', u'approach', u'fight', u'blaze', u'near', u'albani']
[u'heat', u'polici', u'extrem', u'ead']
[u'agostino', u'ink', u'deal', u'unit']
[u'ord', u'break', u'mark']
[u'altern', u'seek', u'youth', u'remand', u'centr']
[u'turn', u'race', u'quota', u'heat', u'springbok']
[u'anna', u'nicol', u'buri', u'bahama']
[u'land', u'drug', u'rehab', u'centr', u'focus', u'cannabi']
[u'asylum', u'seeker', u'send', u'nauru', u'howard']
[u'asylum', u'seeker', u'sabotag', u'boat']
[u'asylum', u'seeker', u'come', u'australia', u'andrew']
[u'aussi', u'oversea', u'star', u'olymp']
[u'aussi', u'soldier', u'kill', u'timores', u'civilian']
[u'aust', u'soldier', u'kill', u'civilian', u'timor']
[u'balibo', u'inquest', u'hear', u'whitlam', u'govt', u'awar', u'death']
[u'bega', u'council', u'warn', u'loom', u'rate', u'rise']
[u'bendigo', u'mine', u'record', u'half', u'year', u'loss']
[u'billabong', u'profit']
[u'brawl', u'surgeon', u'leav', u'patient', u'lurch']
[u'britain', u'talk', u'anti', u'missil']
[u'brough', u'vow', u'flaw', u'trial', u'indigen']
[u'bull', u'rider', u'guilti', u'assault', u'activist', u'rodeo']
[u'busi', u'unit', u'marketplac', u'competit']
[u'caltex', u'profit']
[u'carer', u'back', u'respit', u'place', u'boost']
[u'carer', u'group', u'get', u'fund']
[u'cargo', u'vessel', u'antenna', u'fix', u'spacewalk']
[u'carpent', u'perth', u'deal', u'minist']
[u'cathol', u'issu', u'guidelin', u'funer', u'speech']
[u'centuri', u'help', u'boost', u'zinifex', u'profit']
[u'cheney', u'allianc']
[u'cheney', u'open']
[u'cheney', u'thank', u'aust', u'stand', u'mate']
[u'cheney', u'urg', u'aust', u'stand', u'firm', u'terror']
[u'childcar', u'centr', u'consid', u'expans']
[u'chimp', u'spot', u'make', u'spear']
[u'closer']
[u'closer']
[u'cole', u'group', u'review', u'ownership', u'option']
[u'cole', u'takeov', u'talk', u'push', u'share', u'record', u'close']
[u'common', u'sens', u'need', u'sheep', u'export', u'debat']
[u'communiti', u'group', u'back', u'fight', u'halt', u'proserpin']
[u'communiti', u'group', u'beat', u'plant', u'site']
[u'corrupt', u'alleg', u'disrupt', u'govt']
[u'corrupt', u'revel', u'prompt', u'renew']
[u'council', u'allow', u'time', u'pool', u'fund']
[u'council', u'plan', u'emerg', u'bore']
[u'council', u'reject', u'plantant', u'propos', u'anecdot']
[u'council', u'support', u'safeti', u'strategi']
[u'court', u'extend', u'intervent', u'order', u'jane']
[u'court', u'jail', u'burni']
[u'cowra', u'council', u'assess', u'plan']
[u'crash', u'driver', u'sentenc', u'increas']
[u'czech', u'reject', u'australia', u'uran', u'offer']
[u'dairi', u'farmer', u'urg', u'monitor', u'debt', u'level']
[u'doctor', u'suspend', u'death', u'probe']
[u'dont', u'come']
[u'drought', u'predict', u'profit']
[u'fund', u'link', u'farmer', u'lobbi']
[u'elect', u'candid', u'quiz', u'newcastl', u'forum']
[u'timor', u'shoot', u'reflect', u'heighten', u'unrest', u'downer']
[u'councillor', u'question', u'break', u'hill', u'land', u'valu']
[u'expert', u'rate', u'australian', u'beer']
[u'expert', u'review', u'porongurup', u'bushfir', u'environment']
[u'extra', u'help', u'drought', u'produc']
[u'extra', u'water', u'bourk', u'fail', u'perman', u'plant']
[u'feder', u'discrimin', u'coupl']
[u'fenc', u'plan', u'protect', u'sacr', u'sit', u'camel']
[u'ferrari', u'charg', u'test']
[u'crew', u'contain', u'lightn', u'spark', u'fire']
[u'secretari', u'jail']
[u'charg', u'cheney', u'protest']
[u'project', u'spark', u'union', u'safeti', u'worri']
[u'glori', u'owner']
[u'googl', u'take', u'microsoft', u'onlin', u'softwar']
[u'govt', u'consid', u'option', u'asylum', u'seeker']
[u'govt', u'issu', u'thailand', u'terrorist', u'attack', u'warn']
[u'govt', u'offer', u'scheme', u'assur']
[u'govt', u'provid', u'land', u'australia']
[u'govt', u'reject', u'traveston', u'report']
[u'govt', u'draw', u'anti', u'truanci', u'contract']
[u'govt', u'urg', u'look', u'south', u'solv', u'water', u'crisi']
[u'govt', u'hick', u'unfair', u'lawyer']
[u'greenspan', u'join', u'gold', u'coast', u'confer']
[u'group', u'unit', u'boost', u'electr', u'industri', u'skill']
[u'haa', u'hit', u'wimbledon', u'prize', u'money']
[u'call', u'quit']
[u'hay', u'blinker', u'cecconi']
[u'health', u'premium', u'rise']
[u'high', u'emiss', u'pump', u'blast', u'ride', u'smelter']
[u'honeymoon', u'oper', u'begin', u'newspap', u'column']
[u'hop', u'english', u'syllabus', u'provid', u'wider']
[u'hous', u'destroy', u'gippsland', u'flash', u'flood']
[u'howard', u'water']
[u'hurrican', u'snatch', u'brumbi']
[u'huskisson', u'resid', u'build', u'height', u'worri']
[u'hyne', u'declar', u'blue', u'clash']
[u'illeg', u'fish', u'boat', u'destroy']
[u'imag', u'reveal', u'river', u'sediment', u'reach', u'outer', u'reef']
[u'indonesian', u'ferri', u'death', u'toll', u'reach']
[u'investig', u'launch', u'truck', u'tyre', u'death']
[u'iran', u'defi', u'nuclear', u'deadlin']
[u'iraq', u'worst', u'foreign', u'polici', u'disast', u'say', u'albright']
[u'isnt']
[u'backhand', u'prize', u'money', u'decis']
[u'japan', u'crown', u'princ', u'wont', u'comment']
[u'kosciuszko', u'summer', u'threat', u'relentless']
[u'labor', u'pledg', u'extend', u'stamp', u'duti', u'concess']
[u'law', u'bolster', u'wild', u'river', u'protect']
[u'leader', u'meet', u'murray', u'darl', u'plan']
[u'leader', u'meet', u'murray', u'darl', u'plan']
[u'blow', u'hop']
[u'shatter', u'world', u'withdraw']
[u'lennon', u'offer', u'packag', u'auspin']
[u'liber', u'deni', u'pavier', u'smear', u'campaign']
[u'listeria', u'case', u'prompt', u'recal']
[u'littl', u'chang', u'water', u'storag']
[u'load', u'upgrad', u'expect', u'boost', u'hunter', u'coal', u'job']
[u'lobster', u'industri', u'expect', u'access', u'remain', u'unchang']
[u'local', u'polic', u'bolster', u'cheney', u'secur']
[u'lourd', u'hospit', u'push', u'public', u'fund']
[u'macquari', u'devil']
[u'arrest', u'stand']
[u'charg', u'weapon', u'theft']
[u'face', u'trial', u'mother', u'stab']
[u'mango', u'season', u'come', u'close', u'sydney']
[u'hold', u'respons', u'nightclub', u'spine', u'injuri']
[u'jail', u'shoot', u'polic']
[u'mccasker', u'funer', u'draw', u'crowd', u'mourner']
[u'microsoft', u'order', u'alcatel', u'lucent', u'million']
[u'mine', u'minist', u'reject', u'coal', u'industri', u'critic']
[u'minist', u'play', u'visitor', u'fear']
[u'miss', u'mildura', u'woman', u'bodi', u'locat']
[u'artefact', u'recherch']
[u'dredg', u'gear', u'tackl', u'bandi', u'creek', u'harbour']
[u'fear', u'woman', u'lose', u'patel', u'compo']
[u'question', u'bore', u'consult']
[u'want', u'crackdown', u'schooli', u'alcohol', u'suppli']
[u'murray', u'darl', u'deal', u'proceed']
[u'narromin', u'consid', u'mcgrath', u'tribut']
[u'nation', u'candid', u'question', u'sexton', u'hill', u'safeti']
[u'grill', u'canberra', u'develop', u'plan']
[u'semest', u'overcrowd', u'problem', u'air']
[u'decis', u'mcrae', u'today', u'ripper', u'say']
[u'dope', u'test', u'world', u'akhtar', u'asif']
[u'northern', u'river', u'shark', u'add', u'threaten', u'speci']
[u'ogilvi', u'keep', u'titl', u'defenc', u'track']
[u'opposit', u'say', u'alic', u'nurs', u'overwork']
[u'orang', u'mayor', u'wont', u'stand', u'elect']
[u'origin', u'reject', u'energi', u'merger', u'plan']
[u'page', u'consid', u'elect', u'candidaci']
[u'pakistan', u'hail', u'missil', u'test']
[u'pastoralist', u'lack', u'flood', u'assist']
[u'peak', u'extend', u'contract', u'docker']
[u'person', u'name', u'disappear']
[u'plan', u'begin', u'adelaid', u'school']
[u'plan', u'urg', u'cope', u'motor', u'race', u'event']
[u'premier', u'meet', u'thrash', u'water', u'plan']
[u'push', u'water', u'support']
[u'turnbul', u'urg', u'adopt', u'water', u'plan']
[u'polic', u'await', u'post', u'mortem', u'result', u'patient', u'death']
[u'polic', u'brace', u'cheney', u'protest']
[u'polic', u'cheney', u'protest', u'clash']
[u'polic', u'hunter', u'clash', u'coco', u'island']
[u'polic', u'investig', u'hous', u'blaze']
[u'polic', u'renew', u'call', u'wagga', u'offic']
[u'polic', u'alcohol', u'restrict', u'work']
[u'polic', u'warn', u'public', u'dodgi', u'pest', u'inspector']
[u'power', u'clinch', u'derbi', u'thriller']
[u'power', u'unfaz', u'sponsor', u'critic']
[u'princ', u'harri', u'serv', u'iraq']
[u'prison', u'help', u'paint', u'woolsh', u'visitor', u'centr']
[u'process', u'asylum', u'seeker', u'christma', u'rudd']
[u'prodig', u'hooper', u'return', u'lion']
[u'public', u'warn', u'water', u'qualiti', u'chang']
[u'push', u'begin', u'princ', u'fund']
[u'push', u'inform', u'drought', u'scheme']
[u'post', u'rise', u'earn']
[u'govt', u'consid', u'rental', u'crackdown']
[u'water', u'commiss', u'restrict']
[u'racq', u'want', u'high', u'power', u'clarif']
[u'racv', u'highlight', u'death', u'toll', u'push', u'highway']
[u'report', u'say', u'traveston', u'water', u'suppli', u'cost']
[u'research', u'find', u'prawn', u'virus', u'extens']
[u'rise', u'price', u'spark', u'inflat', u'jitter']
[u'road', u'safeti', u'push', u'includ', u'young', u'driver', u'restrict']
[u'robinson', u'ireland', u'game']
[u'score', u'miss', u'ferri', u'blaze', u'cross']
[u'step', u'water', u'restrict']
[u'singl', u'desk', u'cost', u'grower', u'graincorp']
[u'skyrocket', u'hopetoun', u'rent', u'forc', u'resid', u'away']
[u'small', u'grape', u'harvest', u'predict']
[u'soldier', u'show', u'restraint', u'timor', u'shoot']
[u'somar', u'accus', u'know', u'moti', u'escap', u'flight']
[u'sombr', u'itali', u'bid', u'uefa', u'arrivederci']
[u'south', u'west', u'produc', u'mighti', u'fine', u'wool']
[u'lanka', u'better', u'say', u'murali']
[u'student', u'access', u'cervic', u'cancer', u'vaccin']
[u'sunraysia', u'horsham', u'lose', u'cricket', u'week', u'final', u'spot']
[u'teen', u'charg', u'high', u'school', u'break']
[u'thompson', u'portrait', u'nab', u'packer', u'prize']
[u'cheney', u'protest', u'arrest']
[u'tiger', u'book', u'final', u'meet', u'bullet']
[u'time', u'run', u'aborigin', u'remain', u'case']
[u'tornado', u'ace', u'coach', u'appoint']
[u'tornado', u'ace', u'coach', u'appoint']
[u'tradit', u'owner', u'expans', u'plan']
[u'tree', u'knowledg', u'preserv']
[u'tunnel', u'open', u'decis', u'polit']
[u'dead', u'plane', u'crash']
[u'underworld', u'offic', u'raid', u'home', u'arrest']
[u'union', u'fear', u'timber', u'industri', u'water', u'penalti']
[u'union', u'take', u'sack', u'plan', u'watchdog']
[u'union', u'threaten', u'compani', u'exploit']
[u'unit', u'trio', u'fin']
[u'secur', u'council', u'extend', u'east', u'timor', u'mission']
[u'australia', u'allianc', u'valuabl', u'cheney']
[u'salvag', u'equip', u'determin', u'black', u'hawk']
[u'soldier', u'jail', u'year', u'iraq', u'rape', u'murder']
[u'valu', u'allianc', u'australia', u'cheney']
[u'virus', u'forc', u'stosur', u'memphi']
[u'voter', u'blame']
[u'govt', u'rule', u'year', u'seven', u'high', u'school', u'shift']
[u'opposit', u'call', u'mcrae', u'resign']
[u'water', u'author', u'reject', u'fluorid', u'claim']
[u'water', u'deal', u'strike']
[u'wellington', u'back', u'parti', u'recycl', u'water', u'debat']
[u'wildlif', u'offic', u'question', u'exot', u'snake']
[u'woman', u'attack', u'jail', u'cupboard', u'ordeal']
[u'woomera', u'plan', u'earli', u'smoke']
[u'young', u'offend', u'indefinit', u'jail', u'term', u'asid']
[u'policemen', u'indian', u'ambush']
[u'abattoir', u'blaze', u'worker', u'job', u'cloud']
[u'abattoir', u'call', u'worker', u'crisi', u'meet']
[u'aborigin', u'leader', u'stage', u'protest', u'london', u'museum']
[u'agent', u'predict', u'rent', u'rise', u'sydney', u'tenant']
[u'airbus', u'urg', u'restructur', u'scrap', u'cargo', u'plane', u'plan']
[u'akhtar', u'asif', u'doubt', u'world']
[u'alderman', u'fear', u'symond', u'long', u'term', u'futur']
[u'allianc', u'damag', u'iraq', u'withdraw']
[u'unveil', u'student', u'accommod', u'complex']
[u'asylum', u'seeker', u'send', u'indonesia']
[u'asylum', u'seeker', u'take', u'christma']
[u'australian', u'filipino', u'infant', u'kidnap', u'philippin']
[u'aust', u'send', u'asylum', u'seeker', u'nauru']
[u'author', u'launch', u'investig', u'fatal']
[u'biker', u'turn', u'nation', u'penni', u'farth']
[u'blue', u'bomber']
[u'bolivian', u'flood', u'leav', u'dead']
[u'bosch', u'get', u'major', u'stake', u'pacifica', u'group']
[u'brack', u'accus', u'recalcitr', u'murray']
[u'brisban', u'triumph', u'cairn']
[u'britain', u'boost', u'troop', u'number', u'afghanistan']
[u'bronco', u'lead', u'helen']
[u'canberra', u'clean', u'torrenti', u'rainstorm']
[u'capit', u'sign', u'beatti']
[u'carpent', u'announc', u'minist', u'fate', u'amid', u'alleg']
[u'chad', u'die', u'brain', u'haemorrhag']
[u'cheney', u'hint', u'possibl', u'militari', u'action']
[u'cheney', u'howard', u'discuss', u'war']
[u'cheney', u'say', u'hick', u'trial', u'hand']
[u'cheney', u'say', u'hick', u'detaine']
[u'closer']
[u'closer']
[u'connex', u'hoaxer', u'catch', u'nixon']
[u'connex', u'investig', u'hoax']
[u'costa', u'fear', u'econom', u'outcom', u'hang', u'parliament']
[u'darwin', u'water', u'deem', u'safe', u'drink', u'despit', u'presenc']
[u'diamond', u'day', u'hay']
[u'disband', u'moti', u'inquiri', u'board', u'submit', u'find']
[u'doctor', u'group', u'criticis', u'rebat', u'privat']
[u'dog', u'open', u'preseason', u'account']
[u'jone', u'record', u'worst', u'week', u'august']
[u'injur', u'score', u'trap', u'train', u'crash']
[u'ethnic', u'council', u'call', u'state', u'wide', u'homework']
[u'fear', u'rise', u'land', u'valuat', u'forc', u'incom']
[u'back', u'govt', u'auspin', u'assist', u'packag']
[u'fisherman', u'aliv', u'sweep']
[u'flash', u'flood', u'drench', u'gippsland', u'town']
[u'float', u'prison', u'dock', u'broom', u'carri', u'alleg']
[u'forc', u'fall', u'short', u'subiaco']
[u'fraudster', u'protest', u'jail', u'term', u'metr', u'pole']
[u'gilchrist', u'free', u'world', u'warm']
[u'govt', u'send', u'asylum', u'seeker', u'indonesia']
[u'govt', u'say', u'asylum', u'seeker', u'bind', u'nauru']
[u'govt', u'asylum', u'seeker', u'plan']
[u'guatemala', u'sink', u'hole', u'kill', u'swallow', u'home']
[u'hay', u'eye', u'record', u'blue', u'diamond']
[u'hick', u'progress', u'domin', u'howard', u'cheney', u'meet']
[u'hick', u'trial', u'domin', u'howard', u'cheney', u'meet']
[u'hick', u'serv', u'sentenc', u'aust', u'guilti']
[u'highland', u'weather', u'stormer']
[u'hope', u'mar', u'encount', u'comet', u'chase', u'probe']
[u'howard', u'cheney', u'discuss', u'troop', u'deploy']
[u'howard', u'evad', u'question', u'cheney', u'china', u'stanc']
[u'hundr', u'watch', u'dock', u'brisban']
[u'iemma', u'launch', u'school', u'program', u'fight']
[u'interview', u'troy', u'flavel', u'john']
[u'iranian', u'forc', u'kill', u'rebel']
[u'iraqi', u'protest', u'detain', u'shiit', u'leader']
[u'iraq', u'withdraw', u'damag', u'allianc', u'cheney']
[u'italian', u'presid', u'ask', u'prodi', u'resign']
[u'japanes', u'honour', u'aust', u'avalanch', u'rescuer']
[u'japan', u'launch', u'fourth', u'satellit']
[u'knight', u'youngster', u'test', u'panther']
[u'error', u'landi', u'hook']
[u'listeria', u'case', u'forc', u'smoke', u'trout', u'mouss', u'recal']
[u'lonard', u'close', u'lead', u'mexico']
[u'manag', u'voic', u'concern', u'workchoic', u'legisl']
[u'motorist', u'urg', u'avoid', u'sydney', u'cheney']
[u'mourinho', u'pledg', u'stay', u'chelsea']
[u'korea', u'invit', u'atom', u'agenc', u'head', u'nuclear']
[u'govt', u'contribut', u'nation', u'wildlif']
[u'numer', u'injuri', u'train', u'derail', u'northern']
[u'ohern', u'stun', u'tiger', u'match', u'play', u'champ']
[u'person', u'dead', u'train', u'crash']
[u'palerang', u'council', u'unveil', u'chamber']
[u'passeng', u'injur', u'train', u'derail', u'england']
[u'passeng', u'train', u'derail', u'england']
[u'plane', u'crash', u'western', u'sydney']
[u'intervent', u'seek', u'indigen', u'remain', u'saga']
[u'prime', u'minist', u'disband', u'moti', u'inquiri']
[u'polic', u'investig', u'fatal', u'train', u'crash']
[u'policeman', u'guilti', u'assault', u'homeless']
[u'polic', u'search', u'wit', u'adelaid', u'crash']
[u'polic', u'urg', u'crash', u'victim', u'helper', u'come', u'forward']
[u'poll', u'show', u'back', u'bottl', u'recycl', u'refund']
[u'poll', u'show', u'rudd', u'connect', u'voter', u'swan']
[u'govt', u'want', u'detail', u'wildlif', u'conserv']
[u'win', u'tourism', u'award']
[u'raider', u'tussl', u'brisban', u'local']
[u'raider', u'tussl', u'bris', u'local']
[u'red', u'crumbl', u'blue', u'attack']
[u'reveng', u'attack', u'kill', u'gaza', u'strip']
[u'rice', u'welcom', u'nkorea', u'develop']
[u'interest', u'safeguard', u'commonwealth', u'water']
[u'saint', u'bronco']
[u'search', u'continu', u'miss', u'indonesian']
[u'second', u'timores', u'civilian', u'die', u'clash']
[u'second', u'timores', u'die', u'clash', u'aust']
[u'secur', u'chief', u'defend', u'troop', u'timor', u'shoot']
[u'point', u'caus', u'fatal', u'rail']
[u'solomon', u'agre', u'polic']
[u'lankan', u'truce', u'dead', u'tamil', u'tiger']
[u'state', u'feder', u'govt', u'launch', u'nation', u'wildlif']
[u'stricken', u'whale', u'ship', u'plan', u'leav', u'antarct']
[u'studi', u'find', u'chimp', u'human', u'split', u'year']
[u'surf', u'carniv', u'hit', u'snowi', u'mountain', u'waterway']
[u'sydney', u'storm', u'aftermath', u'leav', u'power']
[u'opposit', u'push', u'fund', u'platypus', u'diseas']
[u'restaur', u'owner', u'fin', u'threaten', u'health']
[u'scout', u'group', u'leader']
[u'take', u'home', u'aust', u'tourism', u'award']
[u'teenag', u'lose', u'jackpot', u'win', u'mother']
[u'tougher', u'water', u'ban', u'shouldv', u'implement']
[u'turnbul', u'urg', u'join', u'water', u'plan']
[u'uefa', u'reject', u'lill', u'protest']
[u'airport', u'debut', u'controversi', u'scanner']
[u'apologis', u'troop', u'arrest', u'iraqi']
[u'backtrack', u'afghanistan', u'report', u'say']
[u'democrat', u'strip', u'bush', u'iraq']
[u'forc', u'detain', u'iraqi', u'shiit', u'leader']
[u'judg', u'back', u'away', u'anna', u'nicol', u'smith']
[u'refus', u'cluster', u'bomb']
[u'cheney', u'howard']
[u'polic', u'commission', u'nixon', u'injur', u'crash']
[u'premier', u'examin', u'case', u'minist']
[u'weilangta', u'decis', u'mix', u'respons']
[u'woman', u'charg', u'sydney', u'man', u'murder']
[u'robber', u'give', u'suspend', u'sentenc']
[u'dead', u'injur', u'central', u'road', u'crash']
[u'ail', u'funk', u'regain', u'lead', u'mexico']
[u'american', u'thompson', u'win', u'championship']
[u'andrew', u'criticis', u'refuge', u'plan']
[u'australia', u'world', u'favourit', u'say', u'inzi']
[u'aust', u'allianc', u'spotlight', u'cheney', u'comment']
[u'author', u'disappoint', u'euthanasia', u'book']
[u'author', u'check', u'entir', u'rail']
[u'bangladesh', u'announc', u'world', u'bonus']
[u'bodi', u'river', u'torren']
[u'bodi', u'french', u'river', u'isra', u'offici', u'polic']
[u'bomb', u'lade', u'fuel', u'tanker', u'kill']
[u'bourk', u'plan', u'world', u'renew', u'energi']
[u'branson', u'prais', u'rescu', u'effort', u'train', u'crash']
[u'bridg', u'acknowledg', u'immigr', u'contribut']
[u'cat', u'strong', u'tiger']
[u'cfmeu', u'take', u'fight', u'auspin', u'job']
[u'cheney', u'absolut', u'clear', u'labor', u'iraq', u'polici']
[u'cheney', u'leav', u'australia', u'whirlwind', u'visit']
[u'cheney', u'leav', u'australia', u'wirlwind', u'visit']
[u'cheney', u'home']
[u'cheney', u'stay', u'chaotic', u'sydneysid', u'iemma']
[u'clash', u'erupt', u'isra', u'troop', u'raid', u'west', u'bank']
[u'classif', u'board', u'ban', u'nitschk', u'assist']
[u'classif', u'board', u'defend', u'decis']
[u'classif', u'board', u'defend', u'euthanasia', u'book']
[u'closer']
[u'closer']
[u'conserv', u'council', u'back', u'wildlif', u'corridor']
[u'consum', u'spend', u'pattern', u'shift']
[u'coupl', u'attack', u'perth', u'home']
[u'crew', u'board', u'space', u'shuttl', u'practic', u'launch']
[u'crippl', u'japanes', u'whaler', u'restart', u'engin', u'leav']
[u'crusad', u'bull', u'notch', u'win', u'south', u'africa']
[u'cyclist', u'take', u'fifth', u'penni', u'farth', u'championship']
[u'debnam', u'pledg', u'rais', u'land', u'threshold']
[u'eagl', u'hold', u'punish', u'kerr']
[u'eagl', u'humbl', u'docker']
[u'energi', u'product', u'begin', u'wind', u'farm']
[u'european', u'spacecraft', u'complet', u'mar']
[u'threat', u'eas', u'crew', u'contain', u'adelaid', u'hill']
[u'focus', u'freez', u'contin']
[u'journalist', u'challeng', u'howard', u'seat']
[u'boy', u'home', u'resid', u'salvat', u'armi']
[u'kill', u'mecca', u'agreement', u'violat']
[u'polic', u'attack', u'alic', u'spring']
[u'fraudster', u'cash', u'indigen', u'inquiri']
[u'freier', u'skipper', u'waratah']
[u'gillard', u'back', u'uranium', u'mine']
[u'govt', u'consid', u'tougher', u'water', u'restrict']
[u'govt', u'avoid', u'tougher', u'water', u'restrict']
[u'greenpeac', u'interven', u'damag', u'ship', u'whale']
[u'green', u'rais', u'concern', u'suspect', u'toxic', u'spill']
[u'green', u'labor', u'wast', u'money', u'clean', u'coal']
[u'hawk', u'dispel', u'demon', u'threat']
[u'henin', u'beat', u'mauresmo', u'dubai', u'titl']
[u'higuain', u'save', u'real', u'madrid', u'derbi']
[u'hill', u'blame', u'preselect', u'loss', u'profil', u'rudd']
[u'hobart', u'relay', u'rais', u'fund', u'cancer', u'patient']
[u'hollywood', u'buzz', u'oscar']
[u'hong', u'kong', u'tourist', u'stabl', u'fatal', u'crash']
[u'hope', u'concret', u'ball', u'stop', u'indonesian', u'flow']
[u'howard', u'defend', u'turnbul', u'travel', u'allow']
[u'iemma', u'find', u'disrupt', u'cheney', u'visit', u'excess']
[u'india', u'hold', u'mass', u'burial', u'train', u'bomb', u'victim']
[u'indigeonus', u'communiti', u'urg', u'appli']
[u'indonesian', u'ferri', u'sink', u'peopl']
[u'interview', u'andi', u'bichel', u'cameron', u'white', u'jimmi', u'maher']
[u'investig', u'continu', u'train', u'accid']
[u'investig', u'abattoir', u'continu']
[u'invest', u'project', u'jump']
[u'iran', u'downplay', u'cheney', u'militari', u'action', u'threat']
[u'iran', u'fire', u'rocket', u'space']
[u'iran', u'readi', u'nuclear', u'activ']
[u'iraqi', u'say', u'milit', u'kill', u'crackdown']
[u'iraqi', u'angri', u'arrest', u'shiit', u'leader']
[u'ireland', u'franc', u'itali', u'tast', u'nation', u'success']
[u'kerr', u'arrest', u'alleg', u'jump', u'taxi']
[u'kumbl', u'signal', u'retir']
[u'labor', u'launch', u'clean', u'coal', u'initi']
[u'lightn', u'spark', u'karama', u'hous']
[u'littl', u'miss', u'sunshin', u'get', u'oscar', u'boost']
[u'maher', u'guid', u'bull', u'domest', u'bliss']
[u'maher', u'lead', u'bull', u'solid', u'total']
[u'die', u'glider', u'accid']
[u'mening', u'spread', u'southern', u'sudan']
[u'misfir', u'palermo', u'hold', u'draw', u'atalanta']
[u'loud', u'blast', u'rock', u'southern', u'baghdad']
[u'mori', u'discuss', u'valid', u'hick', u'charg']
[u'mugab', u'attack', u'leader', u'birthday', u'speech']
[u'mugab', u'condemn', u'rival', u'birthday', u'celebr']
[u'multipl', u'attack', u'kill', u'injur', u'baghdad']
[u'murray', u'darl', u'plan', u'ahead']
[u'brisban', u'train', u'tunnel']
[u'govt', u'unveil', u'anti', u'crime', u'measur']
[u'wildlif', u'offic', u'probe', u'alleg', u'exot', u'snake']
[u'ogilvi', u'match', u'play', u'final']
[u'opposit', u'back', u'chang', u'forestri', u'agreement']
[u'opposit', u'push', u'independ', u'emerg']
[u'launch', u'debnam', u'let', u'campaign']
[u'hick', u'case', u'polit', u'gain', u'father']
[u'podcast', u'domest', u'final']
[u'polic', u'appeal', u'wit', u'newtown', u'assault']
[u'polic', u'oper', u'cheney', u'visit', u'success']
[u'prammanasudh', u'captur', u'lpga', u'field', u'open']
[u'prove', u'killer', u'seiz', u'drug', u'polic']
[u'ramo', u'horta', u'timor', u'presid']
[u'real', u'sociedad', u'crisi', u'deepen', u'deportivo', u'defeat']
[u'cross', u'appeal', u'civilian', u'protect']
[u'right', u'life', u'group', u'welcom', u'euthanasia', u'book']
[u'ronaldo', u'boost', u'unit', u'titl', u'charg']
[u'rudd', u'announc', u'clean', u'coal', u'polici']
[u'rudd', u'howard', u'disagre', u'cheney', u'allianc', u'comment']
[u'africa', u'help', u'disast', u'ravag', u'mozambiqu']
[u'get', u'electr', u'shock', u'wind', u'farm']
[u'siro', u'give', u'green', u'light', u'open']
[u'search', u'continu', u'gold', u'coast', u'tourist', u'lose']
[u'send', u'asylum', u'seeker', u'indonesia', u'break']
[u'storm', u'surviv', u'paraglid']
[u'survey', u'say', u'patient', u'high', u'satisfi']
[u'thousand', u'turn', u'anti', u'protest', u'britain']
[u'tumut', u'rescuer', u'recommend', u'braveri', u'award']
[u'turnbul', u'defend', u'travel', u'allow']
[u'turnbul', u'defend', u'travel', u'allow']
[u'aust', u'allianc', u'spotlight', u'cheney', u'comment']
[u'vice', u'presid', u'cheney', u'plane', u'divert']
[u'utai', u'injur', u'bulldog']
[u'govt', u'deni', u'boost', u'water', u'suppli']
[u'environ', u'minist', u'resign']
[u'premier', u'ask', u'mcrae', u'resign', u'corrupt']
[u'william', u'thrash', u'peer', u'comeback', u'titl']
[u'woman', u'aim', u'record', u'feast', u'world', u'hottest']
[u'diversif']
[u'aborigin', u'suffer', u'welfar', u'work', u'scheme']
[u'abstin', u'help', u'heart', u'grow', u'older']
[u'adaminabi', u'moot', u'plane', u'storag']
[u'adcock', u'line', u'lion']
[u'adelaid', u'hotel', u'occup', u'rat', u'jump']
[u'sign', u'europol', u'help', u'catch', u'drug']
[u'link', u'antarctica', u'give', u'australia', u'boost']
[u'albino', u'corn', u'snake', u'quarantin', u'facil']
[u'alcohol', u'fuel', u'brawl', u'trial', u'match']
[u'allianc', u'say', u'murray', u'darl', u'plan', u'offer', u'irrig']
[u'amundsen', u'mull', u'bail', u'applic']
[u'antarct', u'shelf', u'collaps', u'reveal', u'exot', u'anim']
[u'appl', u'grower', u'demand', u'senat', u'inquiri']
[u'arsenal', u'chelsea', u'face', u'censur', u'brawl']
[u'aussi', u'valu', u'truth', u'justic']
[u'aust', u'jail', u'indonesia', u'child']
[u'australia', u'fall', u'teacher', u'train']
[u'australia', u'stick', u'iraq', u'downer', u'say']
[u'author', u'work', u'crack', u'illeg', u'log']
[u'autopsi', u'fail', u'caus', u'death', u'cupboard']
[u'baghdad', u'ministri', u'blast', u'kill']
[u'better', u'late', u'oscar', u'winner', u'arkin']
[u'bluescop', u'steel', u'report', u'profit', u'rise']
[u'boswel', u'predict', u'solid', u'support', u'traveston']
[u'boy', u'court', u'steal']
[u'brack', u'defend', u'meet', u'tattersal', u'exec']
[u'british', u'troop', u'face', u'iraq', u'abus', u'alleg']
[u'broom', u'face', u'rental', u'crisi']
[u'brown', u'say', u'turnbul', u'entitl', u'travel', u'allow']
[u'bushfir', u'victim', u'payout']
[u'cap', u'secur', u'player']
[u'cardiologist', u'welcom', u'angioplasti', u'decis']
[u'carpent', u'say', u'lobbyist', u'influenc', u'hard', u'eras']
[u'cartwright', u'play']
[u'cfmeu', u'back', u'labor', u'clean', u'coal', u'plan']
[u'chanc', u'clear', u'wrongdo', u'corrupt']
[u'cheney', u'make', u'surpris', u'visit', u'pakistan']
[u'cheney', u'visit', u'polit', u'stunt']
[u'church', u'say', u'invest', u'resourc', u'turn']
[u'citi', u'plan', u'gift', u'land', u'rehabilit']
[u'close', u'circuit', u'televis', u'camera', u'help', u'captur']
[u'cooper', u'take', u'fourth', u'world', u'crown']
[u'council', u'criticis', u'hinder', u'town', u'develop']
[u'council', u'downsiz', u'issu', u'like', u'spark']
[u'council', u'want', u'crack', u'walnut', u'festiv']
[u'court', u'hear', u'dampier', u'peninsula', u'nativ', u'titl']
[u'cowboy', u'red', u'poach']
[u'cowboy', u'provid', u'support', u'fund']
[u'death', u'toll', u'rise', u'indon', u'ferri']
[u'democrat', u'stop', u'hanson', u'win', u'senat', u'seat']
[u'diver', u'compet', u'hockey', u'world', u'championship']
[u'dog', u'leash']
[u'dorey', u'rule', u'clash']
[u'downer', u'say', u'fiji', u'need', u'elect']
[u'dragon', u'help', u'address', u'youth', u'issu']
[u'drill', u'determin', u'rock', u'potenti']
[u'drought', u'assist', u'avail', u'farm', u'machineri']
[u'drug', u'overdos', u'spark', u'danc', u'festiv']
[u'elder', u'woman', u'hurt', u'bridg', u'crash']
[u'elect', u'provid', u'surpris', u'result']
[u'environment', u'film', u'inconveni', u'truth', u'win', u'oscar']
[u'timor', u'run', u'presid']
[u'etoo', u'score', u'barca', u'romp', u'victori']
[u'extra', u'polic', u'seek', u'bendigo']
[u'feder', u'opposit', u'question', u'project', u'delay']
[u'feder', u'record', u'book']
[u'field', u'want', u'qanta', u'sale', u'condit', u'includ']
[u'financi', u'advis', u'expel', u'advic', u'give']
[u'forest', u'whitak', u'win', u'best', u'actor', u'oscar', u'amin']
[u'carer', u'stand', u'trial', u'abus', u'charg']
[u'host', u'rival', u'bennelong']
[u'fruit', u'shop', u'worker', u'tie', u'arm', u'hold']
[u'funk', u'win', u'mexico', u'lonard']
[u'gambl', u'loss', u'worri', u'welfar', u'group']
[u'gore', u'pull', u'oscar', u'stage', u'presidenti']
[u'govt', u'ask', u'coron', u'suppress', u'balibo', u'evid']
[u'govt', u'defend', u'decis', u'abolish', u'invest', u'scheme']
[u'govt', u'question', u'mckew', u'suitabl']
[u'govt', u'say', u'troop', u'stay', u'timor', u'shoot']
[u'govt', u'urg', u'match', u'nation', u'clarenc', u'hospit']
[u'govt', u'urg', u'monitor', u'gippsland', u'water', u'woe']
[u'govt', u'urg', u'reassess', u'teacher', u'student', u'contact']
[u'greenough', u'shire', u'presid', u'back', u'fel', u'sack']
[u'hanson', u'announc', u'senat']
[u'hanson', u'announc', u'senat', u'decis']
[u'heritag', u'council', u'consid', u'demolit', u'plan']
[u'hickey', u'anger', u'local', u'govt', u'leader']
[u'hick', u'case', u'rais', u'aust', u'court']
[u'hick', u'lawyer', u'bring', u'case', u'feder', u'court']
[u'hick', u'answer', u'afghanistan', u'govt']
[u'histor', u'railway', u'restor']
[u'holden', u'choic', u'thiev']
[u'hollywood', u'gear', u'oscar', u'cliff', u'hanger']
[u'hope', u'worker', u'job', u'abattoir']
[u'hospit', u'oper', u'report', u'profit', u'rise']
[u'howard', u'ensur', u'qanta', u'sale', u'stick', u'rule']
[u'hudson', u'win', u'best', u'support', u'actress', u'oscar']
[u'hundr', u'mourn', u'loss', u'long', u'distanc', u'kayak']
[u'identifi', u'radic', u'thwart', u'terror']
[u'iemma', u'plan', u'warn', u'emerg']
[u'iemma', u'warn', u'sydney', u'prepar', u'apec', u'invas']
[u'independ', u'panel', u'decid', u'maryborough', u'rezon']
[u'indian', u'oscar', u'contend', u'creat', u'stir']
[u'indigen', u'dictionari', u'languag', u'aliv']
[u'indonesia', u'shut', u'border', u'east', u'timor']
[u'industri', u'estat', u'plan', u'northern', u'whyalla']
[u'inquiri', u'propos', u'traveston', u'cross']
[u'intellig', u'offic', u'miss', u'balibo', u'link', u'court', u'tell']
[u'rat', u'second', u'highest', u'advanc']
[u'isra', u'polic', u'grill', u'minist', u'corrupt']
[u'isra', u'troop', u'besieg', u'nablus', u'second']
[u'jail', u'rape', u'doctor', u'appeal', u'convict']
[u'japan', u'defi', u'aust']
[u'japanes', u'whale', u'ship', u'clear', u'antarct', u'danger', u'zone']
[u'jetski', u'speed', u'boat', u'crash', u'injur', u'peopl']
[u'kerr', u'charg', u'upgrad', u'assault']
[u'kerr', u'fin', u'saturday', u'night', u'fraca']
[u'kimberley', u'fisher', u'poach']
[u'krakouer', u'brown', u'face', u'suspens']
[u'krakouer', u'brown', u'face', u'judiciari']
[u'labor', u'say', u'govt', u'mismanag', u'water', u'crisi']
[u'labor', u'urg', u'govt', u'nation', u'emiss']
[u'land', u'valuat', u'surg']
[u'lawyer', u'question', u'courthous', u'condit']
[u'leipheim', u'win', u'tour', u'california']
[u'lightn', u'cut', u'power', u'thousand', u'perth', u'home']
[u'local', u'tour', u'compani', u'win', u'nation', u'award']
[u'lockyer', u'upbeat', u'despit', u'loss']
[u'lockyer', u'want', u'chang', u'schedul']
[u'burn', u'campervan', u'blast']
[u'die', u'polic', u'capsicum', u'spray']
[u'die', u'oxenford', u'motorcycl', u'crash']
[u'leav', u'area', u'assault']
[u'stab', u'tri', u'stop', u'thief']
[u'face', u'court', u'ballina', u'woman', u'death']
[u'court', u'accus', u'bash']
[u'mardi', u'gras', u'futur', u'depend', u'communiti', u'involv']
[u'marin', u'secur', u'jedinak']
[u'maxin', u'mckew', u'challeng', u'howard', u'seat']
[u'mayor', u'hop', u'primo', u'factori', u'continu']
[u'mckew', u'take', u'howard', u'bennelong', u'seat']
[u'mckew', u'vow', u'work', u'hard', u'labor', u'bennelong']
[u'medico', u'colleg', u'rais', u'patient', u'audit', u'concern']
[u'miller', u'grab', u'oscar', u'blanchett', u'miss']
[u'accid', u'worri', u'chief']
[u'minist', u'defend', u'cut', u'librari', u'hour']
[u'miss', u'man', u'bodi', u'gold', u'coast', u'beach']
[u'misus', u'public', u'fund']
[u'morcomb', u'parent', u'reveal', u'fake']
[u'public', u'feedback', u'seek', u'alic', u'alcohol']
[u'accommod', u'allow', u'rort']
[u'nation', u'blame', u'govt', u'kempsey', u'disadvantag']
[u'navi', u'ship', u'search']
[u'netbal', u'australia', u'flag', u'tran', u'tasman', u'comp']
[u'apprentic', u'help', u'eas', u'skill', u'shortag']
[u'militari', u'barrack', u'owner', u'hope', u'work']
[u'north', u'queensland', u'leav', u'water', u'debat']
[u'oakey', u'armi', u'base', u'join', u'simul', u'project']
[u'ogilvi', u'beat', u'final']
[u'ogilvi', u'lament', u'lose', u'plot']
[u'oscar', u'crown', u'queen', u'mirren', u'best', u'actress']
[u'outback', u'travel', u'guid', u'win', u'tourism', u'award']
[u'oxiana', u'mount', u'takeov', u'gold', u'mine', u'compani']
[u'parliamentari', u'protest', u'face', u'jail', u'time']
[u'peacekeep', u'welcom', u'decis', u'solomon']
[u'pilot', u'qanta', u'court']
[u'pilot', u'union', u'challeng', u'jetstar', u'expans']
[u'pirat', u'hijack', u'cargo', u'ship', u'somalia']
[u'rudd', u'congratul', u'oscar', u'winner']
[u'polic', u'arrest', u'pair', u'railway', u'theft']
[u'polic', u'assault', u'tri', u'control', u'parti', u'goer']
[u'polic', u'crack', u'drink', u'driver']
[u'polic', u'newborn', u'babi', u'bodi', u'cupboard']
[u'polic', u'investig', u'man', u'fatal', u'fall']
[u'polic', u'investig', u'theft', u'mount', u'gambier']
[u'polic', u'drug', u'charg', u'danc', u'parti']
[u'policeman', u'wont', u'face', u'charg', u'fatal', u'shoot']
[u'polic', u'trucki', u'crash', u'victim']
[u'polic', u'probe', u'elanora', u'death']
[u'polic', u'search', u'assault', u'coupl']
[u'polic', u'clean', u'communiti']
[u'port', u'hedland', u'lose', u'surgeon']
[u'power', u'industri', u'call', u'nation', u'carbon', u'trade']
[u'pregnant', u'deni', u'murder', u'babi']
[u'princip', u'urg', u'caution', u'structur']
[u'probe', u'continu', u'nixon', u'crash']
[u'progress', u'associ', u'want', u'intersect', u'safeti']
[u'prosecutor', u'appeal', u'rule', u'charg', u'offic']
[u'prosecutor', u'drop', u'push', u'indefinit', u'jail', u'term']
[u'push', u'improv', u'agricultur', u'train', u'educ']
[u'queensland', u'health', u'reject', u'hospit', u'audit']
[u'rain', u'need', u'improv', u'goulburn', u'murray', u'water']
[u'krakouer', u'sight', u'match', u'review', u'panel']
[u'region', u'miss', u'tourist', u'seek', u'star']
[u'repair', u'railway', u'bridg', u'damag']
[u'report', u'death', u'worker', u'train', u'depot']
[u'research', u'project', u'amalgam']
[u'resid', u'learn', u'carbon', u'trade', u'scheme']
[u'return', u'indonesia', u'near', u'christma', u'detaine']
[u'rice', u'warn', u'congress', u'interfer', u'iraq']
[u'rudd', u'pledg', u'premier', u'wreck', u'budget']
[u'scientist', u'planet', u'puls']
[u'scorses', u'film', u'depart', u'win', u'best', u'pictur', u'oscar']
[u'scorses', u'final', u'win', u'oscar', u'direct']
[u'seri', u'event', u'mark', u'anniversari', u'japanes']
[u'charg', u'weekend', u'parti', u'disturb']
[u'organis', u'happi', u'crowd', u'number']
[u'smoke', u'movi', u'send', u'power', u'messag']
[u'solomon', u'deport', u'australian', u'accus', u'plot']
[u'lankan', u'asylum', u'seeker', u'deni', u'access', u'aust']
[u'student', u'ignor', u'harm', u'substanc', u'abus', u'effect']
[u'studi', u'find', u'disadvantag', u'concentr', u'certain']
[u'studi', u'look', u'appli', u'indigen', u'know', u'farm']
[u'turf', u'club', u'rethink', u'waterhous', u'decis']
[u'teen', u'charg', u'bottl', u'shop', u'robberi']
[u'toad', u'hunter', u'offer', u'beer', u'bounti']
[u'tocumw', u'resid', u'turn', u'support', u'suspend']
[u'toddler', u'surviv', u'fall']
[u'tourism', u'award', u'whitsunday']
[u'tourist', u'charg', u'fatal']
[u'trio', u'fin', u'thousand', u'illeg', u'abalon', u'export']
[u'rescu', u'yacht', u'near', u'curti', u'island']
[u'get', u'boost', u'sport', u'facil']
[u'unemploy', u'drop', u'want', u'time', u'job']
[u'union', u'air', u'concern', u'ship', u'departur']
[u'toowoomba', u'record', u'femal', u'enrol']
[u'renew', u'offer', u'talk', u'iran']
[u'agre', u'hick', u'releas', u'court', u'tell']
[u'govt', u'urg', u'boost', u'brand', u'fund']
[u'water', u'chief', u'back', u'murray', u'darl', u'plan']
[u'western', u'power', u'announc', u'infrastructur', u'levi', u'plan']
[u'whitfield', u'tap']
[u'woman', u'surviv', u'volt', u'shock']
[u'wonga', u'beach', u'die', u'road', u'crash']
[u'work', u'begin', u'multi', u'million', u'dollar', u'upgrad', u'mint']
[u'work', u'delay', u'affect', u'grampian', u'track']
[u'world', u'panic', u'unfound', u'jone']
[u'stage', u'landcorp', u'develop', u'sale']
[u'abalon', u'diver', u'victim', u'deep', u'crime']
[u'aborigin', u'health', u'servic', u'worker', u'face', u'prospect']
[u'afghan', u'blast', u'kill', u'cheney', u'visit']
[u'reject', u'rule', u'review']
[u'monitor', u'kerr', u'penalti']
[u'airlin', u'urg', u'offer', u'warrnambool', u'melbourn']
[u'alleg', u'ferrari', u'fraudster', u'grant', u'bail']
[u'anna', u'nicol', u'smith', u'burial', u'halt']
[u'appl', u'grower', u'state', u'base', u'quarantin']
[u'appl', u'import', u'appeal', u'reject']
[u'asio', u'secur', u'challeng']
[u'asylum', u'seeker', u'deal', u'rule']
[u'aust', u'assur', u'lanakan', u'asylum', u'seeker']
[u'australia', u'increas', u'afghanistan', u'troop', u'number']
[u'bakeri', u'worker', u'lose', u'job']
[u'bakeri', u'worker', u'lose', u'job', u'look']
[u'beachley', u'stun', u'advanc']
[u'beatti', u'reject', u'cheap', u'shoot', u'state', u'road']
[u'bligh', u'urg', u'state', u'stop', u'whing', u'feder']
[u'bore', u'water', u'rescu']
[u'bosnian', u'muslim', u'angri', u'serbia', u'clear']
[u'plead', u'guilti', u'polic', u'chase']
[u'brisban', u'william', u'jolli', u'bridg', u'damag']
[u'budget', u'airlin', u'spark', u'bid']
[u'build', u'propon', u'offer', u'council', u'fund']
[u'bundaberg', u'valuat', u'figur', u'increas']
[u'bushfir', u'advic', u'ignor', u'opposit', u'say']
[u'effort', u'attract', u'specialist']
[u'call', u'review', u'chang', u'train', u'timet']
[u'call', u'serial', u'rapist', u'jail', u'indefinit']
[u'canberra', u'popul', u'boom']
[u'carbon', u'emiss', u'blame', u'global', u'warm']
[u'carl', u'name', u'player', u'season']
[u'claim', u'import', u'appl', u'lead', u'diseas']
[u'closer']
[u'closer']
[u'clough', u'turn', u'year', u'financi', u'woe']
[u'coalit', u'play', u'cost', u'queri']
[u'coast', u'like', u'escap', u'predict', u'cyclon']
[u'colleg', u'plan', u'merg', u'campus']
[u'collis', u'end', u'death', u'bermagui']
[u'convict', u'murder', u'jail', u'term', u'extend', u'lunch']
[u'council', u'break', u'deadlock', u'apart', u'develop']
[u'council', u'call', u'develop']
[u'councillor', u'divis', u'number', u'downsiz']
[u'council', u'say', u'tree', u'protect', u'order']
[u'council', u'play', u'valuat', u'link', u'rate', u'rise', u'fear']
[u'council', u'want', u'avoca', u'water', u'fund']
[u'countback', u'determin', u'cappi', u'replac']
[u'coupl', u'face', u'hefti', u'land', u'debnam', u'say']
[u'court', u'dismiss', u'assault', u'charg', u'footbal']
[u'court', u'rule', u'council', u'automat', u'liabl']
[u'cultur', u'learn', u'centr', u'plan', u'ahead']
[u'water', u'pip', u'sabotag', u'test']
[u'dampier', u'peninsula', u'subject', u'nativ']
[u'bortoli', u'beer']
[u'decis', u'reserv', u'murder', u'sentenc']
[u'deleg', u'embark', u'recycl', u'water', u'fact', u'find']
[u'demetriou', u'reject', u'rule', u'review']
[u'derbi', u'perth', u'servic', u'take']
[u'director', u'abram', u'resurrect', u'star', u'trek']
[u'dire', u'outlook', u'gippsland', u'water', u'storag']
[u'domest', u'disput', u'end', u'hour', u'sieg']
[u'dutch', u'scientist', u'protest', u'timber']
[u'scott', u'cross', u'sword', u'asia']
[u'timor', u'authoris', u'rebel', u'manhunt']
[u'extend', u'drought', u'assist', u'welcom', u'criteria']
[u'extra', u'firefight', u'arriv', u'king', u'blaze']
[u'farm', u'group', u'task', u'forc', u'take', u'break']
[u'fear', u'hous', u'propos', u'destroy', u'heritag']
[u'fear', u'land', u'valu', u'push', u'tenant']
[u'feder', u'fund', u'seek', u'lure', u'oversea', u'student']
[u'feder', u'govt', u'say', u'neglect', u'highway']
[u'film', u'maker', u'claim', u'jesus', u'tomb']
[u'film', u'maker', u'show', u'relic', u'disput', u'jesus', u'tomb']
[u'sawmil', u'end', u'bad', u'teen']
[u'indonesian', u'general', u'urg', u'testifi']
[u'fourth', u'person', u'charg', u'gangland', u'murder']
[u'franc', u'return', u'pharaoh', u'hair', u'egypt']
[u'fund', u'provid', u'spell', u'centr', u'blackal']
[u'funer', u'servic', u'hold', u'mayor']
[u'gallen', u'sidelin', u'ankl', u'injuri']
[u'fire', u'power', u'agenda']
[u'leak', u'identifi', u'servic', u'station']
[u'polit', u'hick', u'debat', u'lawyer', u'say']
[u'goulbourn', u'valley', u'grower', u'lose', u'fight']
[u'govern', u'help', u'transit', u'period']
[u'govt', u'agre', u'coron', u'recommend']
[u'govt', u'face', u'pressur', u'futur', u'asylum', u'seeker']
[u'govt', u'decis', u'asylum', u'seeker', u'deter', u'peopl']
[u'govt', u'hickss', u'return', u'lawyer']
[u'govt', u'review', u'children', u'televis', u'standard']
[u'govt', u'urg', u'consid', u'option', u'fund']
[u'govt', u'wait', u'long', u'defenc', u'super', u'review']
[u'govt', u'wont', u'appeal', u'marina', u'decis']
[u'grape', u'grower', u'petit', u'fair', u'price']
[u'great', u'southern', u'warn', u'loom', u'storm']
[u'green', u'want', u'energi', u'conserv', u'incent']
[u'group', u'protest', u'outsid', u'tristar', u'director', u'hous']
[u'revenu', u'wont', u'hurt', u'state', u'treasur', u'say']
[u'guccion', u'send', u'pack', u'vega']
[u'hail', u'flatten', u'miandetta', u'farm', u'fenc']
[u'happi', u'gilmor', u'look', u'success']
[u'health', u'dept', u'urg', u'flexibl']
[u'heavi', u'rain', u'hold', u'traffic']
[u'hiddink', u'avoid', u'jail', u'fin', u'fraud']
[u'hous', u'bodi', u'warn', u'rent', u'mortgag', u'pressur']
[u'hugh', u'say', u'fijian', u'militari', u'plan', u'kidnap']
[u'iemma', u'reli', u'lead', u'poll']
[u'indonesia', u'stop', u'secur', u'expert']
[u'investig', u'wrongdo']
[u'iran', u'stand', u'firm', u'nuclear', u'program', u'london']
[u'iraq', u'bomb', u'kill']
[u'iraqi', u'cabinet', u'back', u'revenu', u'plan']
[u'iraqi', u'vice', u'presid', u'escap', u'assassin', u'attempt']
[u'isra', u'troop', u'withdraw', u'nablus']
[u'japan', u'investig', u'possibl', u'tamiflu', u'link']
[u'kerr', u'plead', u'guilti', u'alleg', u'januari', u'assault']
[u'knife', u'attack', u'surfer', u'paradis', u'caus', u'polic']
[u'krakouer', u'clear', u'rough', u'conduct']
[u'krakouer', u'fight', u'rough', u'conduct', u'charg']
[u'labor', u'attack', u'govt', u'nuclear', u'power']
[u'labor', u'govt', u'clash', u'nuclear', u'power']
[u'labor', u'support', u'nuclear', u'plan']
[u'land', u'review', u'budget']
[u'legal', u'challeng', u'school', u'open', u'withdraw']
[u'level', u'water', u'restrict', u'impos', u'griffith']
[u'lill', u'continu', u'unit', u'goal', u'appeal']
[u'liverpool', u'confirm', u'voronin', u'deal']
[u'love', u'love', u'date', u'websit', u'urg']
[u'macquari', u'airport', u'acquir', u'share', u'sydney']
[u'charg', u'dare', u'attempt', u'escap', u'arrest']
[u'face', u'year', u'jail', u'road', u'crash']
[u'jail', u'grow', u'distribut', u'cannabi']
[u'dead', u'blast', u'near', u'afghan', u'base', u'cheney']
[u'maric', u'bind', u'oper', u'tabl']
[u'marsh', u'injur', u'pomersbach']
[u'massiv', u'cane', u'toad', u'darwin', u'golf', u'cours']
[u'mayor', u'close', u'camp', u'prematur', u'committe', u'chair']
[u'mcguigan', u'simeon', u'profit', u'drop']
[u'meat', u'industri', u'crash', u'union', u'warn']
[u'midnight', u'miner', u'trespass', u'court', u'rule']
[u'midnight', u'peg', u'expedit', u'rule', u'unlaw']
[u'industri', u'boom', u'blame', u'higher', u'valuat']
[u'minist', u'pressur', u'answer', u'nuclear', u'plant']
[u'mirren', u'queen', u'like']
[u'nafe', u'lead', u'bangladesh', u'convinc']
[u'nation', u'solut', u'need', u'nation', u'problem']
[u'netbal', u'book', u'juli', u'warm']
[u'antarct', u'airlink', u'major', u'boost']
[u'gold', u'coast', u'hospit', u'fast', u'track']
[u'meninde', u'health', u'servic', u'open', u'door']
[u'moor', u'servic', u'plan', u'rowley', u'shoal']
[u'plan', u'increas', u'rat', u'council']
[u'north', u'land', u'valuat', u'skyrocket']
[u'simpl', u'solut', u'anti', u'social', u'behaviour']
[u'takeov', u'receiv', u'woolworth']
[u'complain']
[u'reap', u'windfal']
[u'nuclear', u'energi', u'compani', u'deni', u'propos', u'sit']
[u'nuclear', u'power', u'debat', u'worri', u'portland']
[u'olyroo', u'coach', u'happi', u'ahead', u'tehran', u'clash']
[u'opinion', u'coal', u'attribut', u'climat', u'chang']
[u'opposit', u'seek', u'transpar', u'level']
[u'organis', u'label', u'tillegra', u'wast', u'money']
[u'pair', u'charg', u'home', u'invas']
[u'park', u'rockhampton', u'airport', u'doubl']
[u'park', u'servic', u'hold', u'wake', u'fatal', u'shoot']
[u'petrol', u'price', u'expect', u'rise']
[u'pharmaci', u'tablet', u'ban']
[u'pilbara', u'secur', u'water', u'strategi', u'fund']
[u'plan', u'park', u'hospit', u'work']
[u'chide', u'rudd', u'nuclear', u'power', u'conspiraci', u'theori']
[u'defend', u'govt', u'public', u'school', u'commit']
[u'urg', u'answer', u'nuclear', u'plant', u'question']
[u'polic', u'drop', u'cliff', u'jumper', u'public', u'nuisanc', u'charg']
[u'polic', u'eyr', u'peninsula', u'drug', u'driver']
[u'polic', u'prais', u'motorist', u'drug', u'return']
[u'polic', u'threaten', u'knife']
[u'politician', u'urg', u'answer', u'nuclear', u'plant']
[u'pomersbach', u'injur', u'accid']
[u'power', u'plant', u'water', u'woe', u'forc', u'citi', u'evacu']
[u'primo', u'abattoir', u'hope', u'job', u'futur', u'union', u'say']
[u'privat', u'equiti', u'group', u'make', u'record']
[u'protest', u'block', u'offic', u'coal', u'plan']
[u'public', u'servant', u'challeng', u'coron', u'bushfir', u'report']
[u'public', u'holi', u'mile']
[u'puppi', u'ear', u'scissor']
[u'push', u'fuel', u'reduct', u'burn']
[u'rain', u'lead', u'flash', u'flood', u'say']
[u'rain', u'expect', u'wheatbelt']
[u'red', u'sign', u'wayward', u'walker']
[u'region', u'appli', u'except', u'circumst']
[u'rise', u'privat', u'school', u'surpris']
[u'rural', u'men', u'health', u'push', u'action']
[u'sailor', u'court', u'club', u'despit']
[u'saint', u'appoint', u'captainci']
[u'search', u'potenti', u'dead', u'lamb', u'shank']
[u'senat', u'probe', u'wont', u'stop', u'traveston']
[u'serbia', u'clear', u'genocid']
[u'serbia', u'respons', u'bosnian', u'genocid']
[u'smith', u'hand', u'joey', u'rein']
[u'south', u'africa', u'team', u'beat', u'connolli']
[u'station', u'owner', u'predict', u'smaller', u'properti']
[u'steelwork', u'achiev', u'record', u'product']
[u'stoner', u'reveal', u'road', u'fund', u'promis']
[u'studi', u'name', u'social', u'disadvantag', u'region']
[u'survey', u'reveal', u'struggl', u'farmer']
[u'sydney', u'launch', u'fleet']
[u'sydney', u'welcom', u'launch', u'fleet']
[u'symond', u'make', u'aussi', u'dream', u'team']
[u'taiwan', u'open', u'door', u'australian', u'cattl']
[u'booki', u'speak', u'waterhous', u'decis']
[u'govt', u'join', u'north', u'east', u'task', u'forc']
[u'teenag', u'admit', u'high', u'speed', u'chase', u'port']
[u'teen', u'lankan', u'asylum', u'seeker', u'hold']
[u'teen', u'charg', u'assault', u'year']
[u'telstra', u'fund', u'student', u'scholarship']
[u'terri', u'memori', u'sicken', u'blow']
[u'depart', u'prove', u'silenc', u'golden']
[u'thunderstorm', u'deliv', u'patchi', u'rain']
[u'tocumw', u'offer', u'doctor', u'assur']
[u'tough', u'restrict', u'spot']
[u'toyn', u'question', u'econom', u'benefit', u'uranium', u'mine']
[u'push', u'militari', u'respons', u'iran']
[u'vidmar', u'take', u'helm', u'unit']
[u'waff', u'look', u'boost', u'farm']
[u'minist', u'hit', u'counsel']
[u'minist', u'sack', u'corrupt', u'inquiri', u'evid']
[u'stand', u'count', u'hussey']
[u'westfield', u'post', u'annual', u'profit']
[u'wind', u'drought', u'caus', u'farm', u'water', u'woe']
[u'women', u'custodi', u'man', u'poison', u'murder']
[u'opposit', u'attack', u'stanhop', u'bushfir']
[u'back', u'chang', u'alfresco', u'din', u'polici']
[u'alinta', u'consid', u'demerg', u'discourag', u'takeov']
[u'alinta', u'profit']
[u'aboard', u'melbourn', u'brisban', u'rail', u'link']
[u'anderson', u'warn', u'farm', u'loan', u'scheme']
[u'storm', u'hit', u'canberra', u'crew', u'struggl']
[u'apec', u'public', u'holiday', u'cost', u'busi']
[u'armi', u'baxter', u'detent', u'centr', u'mayor']
[u'arrog', u'offenc', u'easili', u'give']
[u'arson', u'suspect', u'duke', u'orlean', u'blaze']
[u'ashley', u'detent', u'centr', u'escape', u'jail']
[u'aussi', u'athlet', u'eager', u'competit']
[u'aust', u'market', u'slide', u'oversea', u'fall']
[u'australia', u'longer', u'sovereign', u'nation']
[u'australian', u'stock', u'drop', u'dramat']
[u'australian', u'stock', u'plummet']
[u'bligh', u'say', u'popul', u'growth', u'warrant', u'bigger']
[u'blue', u'seek', u'rule', u'clarif']
[u'bobbi', u'brown', u'bar']
[u'snare', u'sculptur', u'prize']
[u'bullet', u'seek', u'blood']
[u'burk', u'place', u'tell', u'inquiri']
[u'bush', u'brief', u'stockmarket', u'fall']
[u'cabbi', u'rock', u'attack']
[u'cannabi', u'grower', u'traffick', u'jail']
[u'cansdel', u'reject', u'candid', u'grafton', u'hospit', u'pledg']
[u'bomb', u'kill', u'near', u'market', u'baghdad']
[u'castro', u'say', u'live', u'radio', u'feel', u'stronger']
[u'census', u'clearer', u'pictur', u'popul']
[u'central', u'coast', u'feel', u'impact', u'potenti']
[u'chappel', u'take', u'selector']
[u'clean', u'continu', u'monster', u'storm']
[u'closer']
[u'closer']
[u'committe', u'ballarat', u'look', u'forward']
[u'compani', u'wont', u'specul', u'pipelin', u'fund']
[u'competit', u'intensifi', u'lure', u'budget', u'airlin']
[u'concuss', u'mortlock', u'skip', u'bull', u'clash']
[u'consum', u'debt']
[u'contract', u'decis', u'prompt', u'medic', u'servic', u'leav']
[u'council', u'defer', u'swim', u'centr', u'spend']
[u'councillor', u'want', u'intersect', u'sign', u'warn']
[u'council', u'reject', u'noosa', u'resort']
[u'council', u'sell', u'saleyard', u'infrastructur']
[u'council', u'trio', u'resign', u'amid', u'corrupt', u'probe']
[u'court', u'jail', u'women', u'milk', u'arm', u'hold']
[u'dead', u'flesh', u'eat', u'bacteria', u'trace', u'river']
[u'dive', u'oper', u'navi', u'pier', u'licenc']
[u'drought', u'forc', u'compani', u'bring', u'milk']
[u'duke', u'boro', u'book', u'date', u'unit']
[u'eden', u'show', u'littl', u'organis', u'whale']
[u'elector', u'commiss', u'urg', u'fund', u'civic', u'educ']
[u'electr', u'firm', u'face', u'court', u'withhold']
[u'entertain', u'figur', u'tribut', u'thorp']
[u'expert', u'say', u'global', u'warm', u'urgent', u'issu', u'govt']
[u'famili', u'flee', u'burn', u'hous']
[u'farmer', u'produc', u'record', u'pyrethrum', u'crop']
[u'farmer', u'succumb', u'accid', u'injuri']
[u'west', u'get', u'govt', u'fund', u'boost']
[u'fear', u'scrap', u'nuclear', u'energi']
[u'fear', u'rental', u'woe', u'affect', u'tourism', u'worker']
[u'feder', u'court', u'reserv', u'decis', u'hick']
[u'fergi', u'stay', u'unit']
[u'figur', u'reveal', u'grow', u'gold', u'coast', u'popul']
[u'figur', u'reveal', u'strong', u'shepparton', u'growth']
[u'brigad', u'keep', u'slick']
[u'farmer', u'phone', u'servic']
[u'firework', u'firm', u'goulburn']
[u'firm', u'probe', u'riverland', u'rock', u'potenti']
[u'foot', u'injuri', u'spell', u'pole', u'vault', u'champion']
[u'land', u'council', u'manag', u'charg', u'forgeri']
[u'githabul', u'peopl', u'joint', u'control', u'nation']
[u'global', u'stock', u'spook', u'china', u'sell']
[u'govt', u'ask', u'rethink', u'manag', u'invest', u'farm']
[u'govt', u'consid', u'drought', u'assist']
[u'govt', u'keep', u'nuclear', u'reactor', u'option', u'open']
[u'govt', u'move', u'telstra', u'stake', u'futur', u'fund']
[u'govt', u'attack', u'teacher', u'aid', u'work']
[u'govt', u'emerg', u'chopper', u'stanc']
[u'green', u'group', u'say', u'need', u'stop', u'illeg']
[u'grenfel', u'plan', u'concert', u'lift', u'farm', u'famili', u'spirit']
[u'griev', u'famili', u'devast', u'serial', u'drink']
[u'hail', u'damag', u'delay', u'shuttl', u'launch']
[u'hail', u'storm', u'destroy', u'canberra', u'build']
[u'hamil', u'confid', u'comeback']
[u'harri', u'potter', u'star', u'make', u'raci', u'stage', u'debut']
[u'harvey', u'norman', u'record', u'profit', u'increas']
[u'scare', u'hit', u'sport', u'illustr', u'parti']
[u'hewitt', u'earn', u'impress', u'windi', u'vega']
[u'hewitt', u'serv', u'vega', u'organis']
[u'high', u'profil', u'crime', u'suspect', u'name']
[u'hobart', u'jail', u'fight']
[u'hofmeist', u'take', u'launceston']
[u'hous', u'crisi', u'urgent']
[u'howard', u'turnbul', u'urg', u'come', u'clean', u'sit']
[u'iemma', u'question', u'debnam', u'credibl']
[u'impact', u'tape', u'primari', u'industri']
[u'imparja', u'make', u'commerci', u'deal', u'nitv']
[u'industri', u'water', u'crisi', u'say', u'union', u'boss']
[u'injuri', u'list', u'concern', u'punter']
[u'inquiri', u'probe', u'polic', u'disciplin', u'process']
[u'intern', u'court', u'name', u'darfur', u'crime', u'suspect']
[u'iraqi', u'polic', u'report', u'children', u'kill', u'latest', u'blast']
[u'isra', u'armi', u'kill', u'milit', u'west', u'bank']
[u'japan', u'abandon', u'southern', u'ocean', u'whale', u'season']
[u'japan', u'abandon', u'whale', u'hunt', u'season', u'southern']
[u'japan', u'cut', u'short', u'whale', u'season']
[u'johnston', u'shire', u'record', u'popul', u'fall']
[u'joint', u'ventur', u'focus', u'carbon', u'trade']
[u'label', u'withdraw', u'deep', u'purpl', u'album', u'complaint']
[u'labor', u'attack', u'nuclear', u'talk', u'busi']
[u'labor', u'commit', u'nation', u'curriculum']
[u'lake', u'buffalo', u'water', u'pump', u'begin']
[u'lake', u'disconnect', u'murray', u'darl', u'river']
[u'cairn', u'plan', u'scheme']
[u'lewi', u'drop', u'warrior', u'clash']
[u'light', u'council', u'releas', u'confidenti', u'inform']
[u'macklin', u'question', u'permit', u'scheme', u'chang']
[u'magistr', u'reluct', u'adjourn', u'committ', u'hear']
[u'major', u'clean', u'follow', u'canberra', u'hailstorm']
[u'arrest', u'cannabi', u'haul']
[u'charg', u'import', u'cocain', u'refus', u'bail']
[u'convict', u'steal', u'feast', u'peopl']
[u'die', u'sandov', u'highway', u'crash']
[u'guilti', u'underag']
[u'jail', u'real', u'estat', u'agent', u'murder']
[u'jail', u'stab', u'duti', u'policeman']
[u'court', u'accus', u'beer', u'bottl', u'assault']
[u'mayor', u'confid', u'futur', u'traveston']
[u'mcguigan', u'record', u'half', u'year', u'profit', u'drop']
[u'midnight', u'miner', u'challeng', u'court', u'decis']
[u'miner', u'develop', u'train', u'indigen', u'worker']
[u'mine', u'compani', u'face', u'year', u'wait', u'drill', u'rig']
[u'mokbel', u'charg', u'underworld', u'murder']
[u'debat', u'market', u'team']
[u'industri', u'land', u'seek', u'help', u'eas', u'heathcot']
[u'job', u'primo', u'staff']
[u'rais', u'water', u'suppli', u'question']
[u'say', u'goulburn', u'valley', u'water', u'plan', u'start']
[u'nation', u'curriculum', u'good', u'idea', u'beatti', u'say']
[u'nation', u'candid', u'criticis', u'poster']
[u'navi', u'ship', u'commiss', u'bundaberg']
[u'technolog', u'tab', u'consum']
[u'saleyard', u'contractor', u'look', u'forward', u'busi']
[u'dredg', u'murray', u'mouth', u'sight']
[u'noosa', u'mayor', u'rule', u'merger']
[u'nuclear', u'energi', u'tri', u'sourc']
[u'appl', u'grower', u'consid', u'viabil', u'export']
[u'older', u'wiser', u'holyfield', u'vow', u'regain', u'heavyweight']
[u'omodei', u'label', u'carpent', u'fraud']
[u'opposit', u'pledg', u'shoalhaven', u'linear', u'acceler']
[u'picasso', u'paint', u'steal', u'pari']
[u'pluto', u'probe', u'swing', u'jupit']
[u'defend', u'nuclear', u'talk', u'busi', u'heavyweight']
[u'deni', u'nuclear', u'inquiri', u'link', u'walker', u'plan']
[u'voic', u'support', u'carbon', u'price']
[u'polic', u'probe', u'cyclist', u'death']
[u'polic', u'probe', u'drink', u'spike', u'claim']
[u'polic', u'search', u'park', u'moreton', u'bodi']
[u'privaci', u'law', u'toughen', u'smart', u'card', u'go']
[u'properti', u'ladder', u'reach', u'young']
[u'punter', u'swoop', u'favourit']
[u'pusey', u'clear', u'tah', u'clash']
[u'push', u'whyalla', u'adelaid', u'lightn', u'home']
[u'govt', u'nativ', u'titl', u'deal']
[u'leader', u'sign', u'cross', u'border', u'document']
[u'opposit', u'warn', u'water', u'ration']
[u'quak', u'shake', u'world', u'host', u'countri']
[u'rain', u'help', u'lift', u'farmer', u'spirit']
[u'razzaq', u'world']
[u'real', u'estat', u'agent', u'rule', u'rental', u'auction']
[u'rememb', u'billi', u'thorp']
[u'report', u'show', u'strong', u'wide', u'burnett', u'growth']
[u'rescu', u'chopper', u'search', u'miss', u'boati']
[u'research', u'reveal', u'croc', u'nomad', u'live']
[u'revamp', u'trout', u'lure', u'tourist']
[u'rich', u'need', u'exampl', u'handout']
[u'riverina', u'get', u'polic', u'boost']
[u'sack', u'bowler', u'farewel', u'parliament']
[u'saint', u'look', u'break', u'bunni']
[u'scarlett', u'skip', u'oscar', u'chariti']
[u'scorses', u'jagger', u'rock', u'long', u'play']
[u'scott', u'confid', u'major', u'victori']
[u'secret', u'polic', u'deal', u'didnt', u'undermin']
[u'keep', u'close', u'macleay', u'river']
[u'sever', u'storm', u'hover', u'south', u'west']
[u'share', u'market', u'bounc', u'slight', u'fall']
[u'shire', u'seek', u'plan', u'iron', u'project']
[u'shire', u'question', u'water', u'author', u'takeov']
[u'shoalhaven', u'popul', u'grow', u'illawarra']
[u'snowi', u'council', u'overturn', u'rural']
[u'socceroo', u'face', u'china', u'friend']
[u'south', u'east', u'record', u'small', u'popul', u'growth']
[u'statist', u'highlight', u'bendigo', u'growth']
[u'statist', u'highlight', u'region', u'council', u'growth']
[u'statist', u'worker', u'rip', u'union', u'say']
[u'stefaniak', u'move', u'confid', u'motion', u'stanhop']
[u'storm', u'prove', u'cost', u'esper', u'transport', u'firm']
[u'storm', u'caus', u'flash', u'flood', u'sydney', u'south', u'west']
[u'storm', u'drench', u'central', u'west']
[u'studi', u'blame', u'land', u'clear', u'anim', u'death']
[u'studi', u'determin', u'suitabl', u'drink']
[u'surpris', u'rizzo', u'take', u'award']
[u'govt', u'consid', u'shorten', u'duck', u'hunt', u'season']
[u'govt', u'threaten', u'appl']
[u'taswood', u'grower', u'concern', u'audit']
[u'team', u'mat', u'pledg', u'support', u'kerr']
[u'teen', u'surviv', u'fatal', u'crash']
[u'tennant', u'creek', u'meet', u'address', u'nuclear', u'wast']
[u'townsvill', u'base', u'battalion', u'deploy', u'oversea']
[u'tribut', u'flow', u'billi', u'thorp']
[u'tripl', u'murder', u'spark', u'juvenil']
[u'troubl', u'murray', u'face', u'uncertain', u'futur']
[u'turnbul', u'say', u'labor', u'wag', u'nuclear', u'scare', u'campaign']
[u'brown', u'flag', u'citizenship', u'rule']
[u'understand', u'import', u'quot', u'sourc']
[u'say', u'share', u'resourc', u'wont', u'mean', u'cut']
[u'upcom', u'film', u'maker', u'produc', u'burst', u'budget', u'film']
[u'uranium', u'export', u'expect', u'worth']
[u'chines', u'market', u'plung']
[u'extend', u'oliv', u'branch', u'iran', u'syria']
[u'wont', u'send', u'agent', u'stand', u'trial', u'itali']
[u'victim', u'famili', u'upset', u'drink', u'drive', u'sentenc']
[u'victoria', u'beckham', u'eye', u'career', u'televis']
[u'wagga', u'park', u'inspector', u'head', u'temora']
[u'govt', u'green', u'light', u'woodsid', u'burrup', u'clear']
[u'premier', u'accus', u'burk', u'malici', u'damag']
[u'clear', u'greater', u'sunris', u'field']
[u'weather', u'bureau', u'close', u'watch', u'coral']
[u'wild', u'weather', u'expect', u'weather', u'bureau', u'warn']
[u'william', u'jolli', u'bridg', u'monitor', u'damag']
[u'william', u'plead', u'guilti', u'underworld', u'murder']
[u'world', u'stock', u'spook', u'china', u'sell']
[u'xstrata', u'launch', u'legal', u'action', u'council', u'rat']
[u'youth', u'drink', u'drive', u'troubl', u'polic']
[u'accus', u'teen', u'rape', u'face', u'court']
[u'accc', u'say', u'wont', u'oppos', u'qanta', u'takeov']
[u'akhtar', u'asif', u'world']
[u'alcan', u'accus', u'break', u'asbesto']
[u'anti', u'malaria', u'drug', u'aim', u'african', u'children']
[u'anti', u'smoke', u'group', u'law', u'arent']
[u'arrest', u'warrant', u'issu', u'retir', u'indonesian']
[u'arsenal', u'deni', u'charg']
[u'aust', u'consid', u'request', u'arrest', u'reinado']
[u'australian', u'share', u'market', u'continu', u'slide']
[u'aust', u'lead', u'antarct', u'climat', u'research', u'program']
[u'aust', u'submarin', u'believ']
[u'bakeri', u'chain', u'founder', u'face', u'court', u'evas']
[u'bald', u'attack', u'lose', u'appeal', u'latest', u'sentenc']
[u'barraba', u'predict', u'month']
[u'bayley', u'mear', u'headlin', u'cyclon', u'squad']
[u'beauti', u'contest', u'welcom', u'wrinkl']
[u'blue', u'stamp', u'author', u'bull']
[u'botul', u'nacho', u'complet', u'withdraw', u'store']
[u'bullet', u'unfaz', u'favourit']
[u'call', u'tougher', u'rule', u'prevent', u'cheat']
[u'cameron', u'say', u'servic', u'wouldnt', u'rescu', u'chopper']
[u'cam', u'unawar', u'bunburi', u'race', u'plan']
[u'carer', u'fund', u'announc', u'south', u'east']
[u'carpent', u'reject', u'call', u'eject', u'archer']
[u'carpent', u'vow', u'clean', u'labor', u'parti']
[u'chanc', u'talk', u'starl', u'erad', u'effort']
[u'clark', u'clear', u'play']
[u'closer']
[u'commission', u'vow', u'balanc', u'save', u'water', u'job']
[u'compani', u'look', u'forward', u'brows', u'develop']
[u'coron', u'choos', u'wit', u'death', u'inquest']
[u'council', u'give', u'condit', u'approv', u'coolum']
[u'council', u'look', u'replac', u'geotherm', u'bore']
[u'councillor', u'resign', u'amid', u'call', u'busselton']
[u'council', u'consid', u'land', u'rat', u'cycl']
[u'council', u'debat', u'road', u'recommend']
[u'council', u'urg', u'lifeguard']
[u'court', u'jail', u'steal', u'children', u'insid']
[u'court', u'overturn', u'bail', u'rape', u'accus']
[u'court', u'reject', u'mother', u'claim', u'smith', u'bodi']
[u'court', u'reserv', u'decis', u'teen', u'abus', u'sentenc']
[u'crow', u'leap', u'goodwin']
[u'crusad', u'test', u'shark', u'unbeaten', u'super', u'start']
[u'debnam', u'shrug', u'interest', u'difficult', u'week']
[u'democrat', u'labor', u'plan', u'fail', u'school']
[u'dentist', u'continu', u'call', u'fluorid', u'drink']
[u'detail', u'reveal', u'william', u'murder']
[u'donaldson', u'opposit', u'west', u'spokesman']
[u'door', u'close', u'walker', u'face', u'lion']
[u'dual', u'occup', u'expect', u'disappoint', u'farmer']
[u'duck', u'hunt', u'season', u'shorten']
[u'economist', u'warn', u'aust', u'sharemarket']
[u'effort', u'continu', u'eas', u'smelli', u'port', u'problem']
[u'embarrass', u'redback', u'skittl']
[u'eros', u'concern', u'grow', u'darl', u'fail', u'flow']
[u'ethanol', u'produc', u'fin', u'storag', u'tank', u'blast']
[u'famili', u'upset', u'memori', u'hold']
[u'farmer', u'hope', u'rain', u'forecast', u'accur']
[u'farmer', u'shouldnt', u'treat', u'properti', u'produc']
[u'farmer', u'welcom', u'govt', u'chang', u'heart']
[u'farm', u'group', u'hop', u'better', u'autumn']
[u'farm', u'group', u'urg', u'anim', u'welfar', u'chang']
[u'fear', u'hous', u'develop', u'threaten', u'aerodrom']
[u'fee', u'cost', u'rais', u'price']
[u'town', u'endur', u'damag', u'storm']
[u'white', u'wine', u'happi', u'accid', u'csiro', u'say']
[u'flesh', u'eat', u'bacteria', u'kill']
[u'flood', u'forc', u'highway', u'closur']
[u'footbal', u'club', u'plead', u'guilti', u'toddler', u'death']
[u'forestri', u'compani', u'reject', u'call', u'freez', u'tiwi']
[u'gold', u'coast', u'charger', u'give', u'year', u'jail']
[u'refus', u'bail', u'teen', u'assault', u'charg']
[u'fresh', u'fish', u'shortag', u'predict', u'worsen']
[u'gambler', u'steal', u'money', u'reliev', u'stress', u'court', u'tell']
[u'garrett', u'want', u'reveal', u'stanc', u'nuclear']
[u'gippsland', u'storm', u'ruin', u'rail', u'line']
[u'gladston', u'blast', u'investig', u'enter', u'final', u'stag']
[u'glass', u'attack', u'land', u'jail']
[u'global', u'stock', u'remain', u'edg']
[u'global', u'warm', u'threat', u'real']
[u'gold', u'plat', u'hand', u'seiz', u'polic', u'raid']
[u'govern', u'princ', u'highway', u'effort']
[u'govt', u'defend', u'respons', u'flesh', u'eat', u'bacteria']
[u'govt', u'urg', u'test', u'lake', u'bonney', u'water', u'qualiti']
[u'grazier', u'hope', u'drought', u'break', u'autumn', u'rain']
[u'health', u'author', u'warn', u'internet', u'drug', u'danger']
[u'health', u'servic', u'find', u'karratha', u'rental', u'home']
[u'health', u'servic', u'promis', u'medic', u'coverag']
[u'hick', u'face', u'kangaroo', u'court', u'report', u'say']
[u'higher', u'fertilis', u'price', u'hurt', u'farmer']
[u'hill', u'say', u'moral', u'amidst', u'sack']
[u'hospit', u'get', u'clear']
[u'finger', u'play', u'oram']
[u'index', u'show', u'boost', u'manufactur', u'industri']
[u'ingham', u'polic', u'station', u'open']
[u'institut', u'call', u'better', u'develop', u'applic']
[u'inter', u'win', u'end', u'draw', u'udines']
[u'iran', u'flag', u'attend', u'iraq', u'secur', u'meet']
[u'iranian', u'troop', u'kill', u'rebel']
[u'isi', u'shire', u'look', u'lure', u'younger', u'popul']
[u'itali', u'prodi', u'win', u'confid', u'vote', u'stay']
[u'jaqu', u'get', u'blue', u'fine', u'start']
[u'jaqu', u'put', u'blue', u'control']
[u'john', u'law', u'vilif', u'complaint', u'dismiss']
[u'kerr', u'clear', u'disord', u'conduct']
[u'kimberley', u'tourism', u'shin', u'nation', u'tourism', u'award']
[u'king', u'resid', u'prepar', u'bushfir', u'threat']
[u'landcar', u'unveil', u'carbon', u'trade', u'market']
[u'langer', u'lead', u'warrior', u'impos', u'total']
[u'langer', u'send', u'warrior']
[u'lawyer', u'access', u'footag', u'alleg', u'custodi', u'assault']
[u'leopard', u'tank', u'head', u'south', u'train', u'exercis']
[u'low', u'expect', u'merg', u'cyclon']
[u'macarthur', u'coal', u'record', u'half', u'year', u'profit']
[u'malthous', u'extend', u'reign', u'magpi']
[u'hurt', u'minibus', u'mishap']
[u'jail', u'infant', u'son', u'death']
[u'refus', u'bail', u'roof']
[u'markov', u'forc', u'retir', u'foot', u'injuri']
[u'martin', u'steer', u'clear', u'tiwi', u'forestri', u'debat']
[u'master', u'athlet', u'look', u'perform']
[u'master', u'vision', u'prompt', u'council', u'develop']
[u'mayor', u'say', u'bowler', u'sack', u'hurt', u'goldfield']
[u'mccain', u'enter', u'presidenti', u'race']
[u'medic', u'group', u'question', u'iemma', u'health', u'servic', u'claim']
[u'melbourn', u'homeless', u'profil']
[u'milki', u'black', u'hole', u'giant', u'particl', u'acceler']
[u'miss', u'murder']
[u'mitchel', u'rule', u'wallabi']
[u'monsoon', u'trough', u'bring', u'hope', u'pastoralist']
[u'moran', u'william']
[u'moran', u'william', u'animos', u'obvious', u'polic']
[u'accus', u'undermin', u'patel', u'compens']
[u'squabbl', u'corrupt', u'link']
[u'urg', u'approach', u'fight', u'drug']
[u'pool', u'fund']
[u'munc', u'guilti', u'bet', u'scandal']
[u'munc', u'jail', u'month']
[u'munc', u'sentenc', u'month', u'jail']
[u'museum', u'defend', u'delay', u'return', u'aborigin']
[u'naiqama', u'sentenc', u'drive', u'charg']
[u'nation', u'food', u'truck', u'decis', u'anger', u'dairi']
[u'nation', u'candid', u'defect', u'liber']
[u'nation', u'candid', u'urg', u'lourd', u'hospit']
[u'nation', u'want', u'bright']
[u'navi', u'close', u'solv', u'maritim', u'mysteri']
[u'near', u'drown', u'put', u'german', u'tourist', u'hospit']
[u'north', u'america', u'host', u'blatter']
[u'road', u'minist', u'deni', u'plan', u'tunnel']
[u'govt', u'probe', u'case', u'flesh', u'eat', u'diseas']
[u'offer', u'loom', u'empir', u'rubber']
[u'olyroo', u'hold', u'draw', u'tehran']
[u'opposit', u'call', u'investig', u'delaci']
[u'opposit', u'say', u'burk', u'influenc', u'feder']
[u'opposit', u'say', u'school', u'email', u'scheme', u'disarray']
[u'outback', u'council', u'urg', u'govt', u'incent', u'lure']
[u'pair', u'jail', u'separ', u'fatal', u'road', u'crash']
[u'parti', u'squabbl', u'corrupt', u'link']
[u'peopl', u'decid', u'power', u'suppli']
[u'plan', u'aim', u'secur', u'lobster', u'sustain']
[u'plan', u'build', u'complex', u'promis', u'retail', u'offic']
[u'player', u'escap', u'suspens', u'follow', u'gambl', u'probe']
[u'polic', u'chief', u'defend', u'william', u'plea', u'deal']
[u'polic', u'crack', u'loud', u'mobil', u'music']
[u'polic', u'search', u'miss', u'woman']
[u'pont', u'eye', u'clash', u'form', u'protea']
[u'porn', u'industri', u'take', u'classif', u'board', u'court']
[u'potenti', u'link', u'draw', u'bacteria', u'mine']
[u'public', u'alcohol', u'free', u'area']
[u'pulitz', u'prize', u'winner', u'schlesing', u'die']
[u'govt', u'deni', u'stall', u'cross', u'border', u'nativ', u'titl']
[u'polic', u'test', u'green', u'pellet', u'cereal']
[u'rain', u'offer', u'alloc', u'boost', u'central', u'burnett']
[u'cross', u'boost', u'effort', u'tackl', u'region']
[u'reinado', u'vow', u'hell', u'surrend', u'aust', u'forc']
[u'report', u'find', u'onlin', u'counterfeit', u'medicin']
[u'resign', u'noosa', u'councillor', u'criticis', u'develop']
[u'robinson', u'earn', u'waratah']
[u'ronaldinho', u'trafford', u'anniversari', u'match']
[u'rise', u'face', u'jail', u'blackmail', u'admiss']
[u'rise', u'plead', u'guilti', u'blackmail', u'beatti']
[u'rspca', u'rescu', u'sick', u'dog', u'properti']
[u'rudd', u'admit', u'mistak', u'burk', u'meet']
[u'rudd', u'attack', u'burk', u'meet']
[u'rudd', u'revers', u'teacher', u'posit']
[u'rudd', u'detail', u'burk', u'meet']
[u'russian', u'govt', u'plan', u'ethic', u'train']
[u'safeti', u'work', u'begin', u'natimuk', u'intersect']
[u'govt', u'releas', u'design', u'weir', u'river', u'murray']
[u'search', u'widen', u'geotherm', u'sourc']
[u'senat', u'hold', u'inquiri', u'qanta', u'protect']
[u'warn', u'delug', u'danger']
[u'sever', u'weather', u'warn', u'issu']
[u'smith', u'dampen', u'expect', u'protea', u'head']
[u'smoke', u'detector', u'help', u'escap', u'unit', u'blaze']
[u'snake', u'bite', u'victim', u'recov', u'hospit']
[u'yanga', u'station', u'land', u'sell']
[u'spida', u'swan', u'debut']
[u'state', u'govt', u'union', u'wari', u'educ', u'plan']
[u'station', u'manag', u'see', u'benefit', u'nuclear', u'wast', u'dump']
[u'steffensen', u'race', u'crawford', u'norman', u'memori', u'race']
[u'stephen', u'welcom', u'ministeri', u'spot']
[u'strong', u'wind', u'predict', u'coast']
[u'sunbeam', u'sharehold', u'like', u'approv', u'takeov']
[u'sunwat', u'beat', u'march', u'rain']
[u'sweden', u'overturn', u'egyptian', u'deport']
[u'tafe', u'director', u'beat', u'agreement']
[u'telstra', u'launch', u'grassroot', u'campaign', u'govt']
[u'tiger', u'claim', u'inning', u'point']
[u'tiger', u'halt', u'redback', u'momentum']
[u'titan', u'rooki', u'prop']
[u'tradit', u'owner', u'want', u'wind', u'farm', u'site', u'inspect']
[u'train', u'lobbi', u'group', u'cast', u'doubt', u'iemma', u'corridor']
[u'transit', u'period', u'soften', u'manag', u'invest']
[u'transport', u'auspin', u'log', u'rais', u'traffic', u'concern']
[u'undersea', u'earthquak', u'hit', u'indonesia']
[u'unit', u'look', u'open', u'point']
[u'upgrad', u'bendigo', u'dish', u'boost', u'internet']
[u'north', u'korea', u'commenc', u'talk']
[u'green', u'reduc', u'emiss']
[u'vet', u'group', u'note', u'declin', u'ownership']
[u'polic', u'defend', u'gangland', u'plea', u'bargain']
[u'violenc', u'flare', u'spanish', u'shame']
[u'warn', u'issu', u'east', u'timor', u'travel']
[u'warrior', u'comfort', u'send']
[u'water', u'author', u'reject', u'claim']
[u'weather', u'warn', u'spark', u'sheep', u'worri']
[u'wellington', u'frame', u'leagu', u'team']
[u'whale', u'dolphin', u'belong', u'world']
[u'whitlam', u'give', u'statement', u'balibo', u'inquest']
[u'widow', u'call', u'death', u'penalti', u'gangland', u'figur']
[u'wind', u'farm', u'potenti', u'chernobyl']
[u'work', u'port', u'wakefield', u'primo', u'meatwork']
[u'aborigin', u'monitor', u'overse', u'path', u'construct']
[u'accc', u'withdraw', u'anti', u'competit', u'notic']
[u'accus', u'serial', u'arm', u'robber', u'face', u'court']
[u'govt', u'keen', u'commonwealth', u'improv']
[u'autumn']
[u'actor', u'robert', u'blake', u'appeal', u'murder', u'judgement']
[u'adebayor', u'say', u'lampard']
[u'sack', u'soldier', u'guilti', u'drug']
[u'allenbi', u'make', u'solid', u'start', u'miami']
[u'qaeda', u'claim', u'kidnap', u'iraqi', u'polic']
[u'pass', u'confid', u'vote', u'govt']
[u'ambul', u'offic', u'charg', u'rap', u'patient']
[u'charg', u'crime', u'syndic', u'sting']
[u'kill', u'tornado']
[u'aussi', u'artist', u'arrest', u'bali', u'drug']
[u'aussi', u'kennedi', u'take', u'round', u'lead', u'thailand']
[u'aussi', u'grind', u'run', u'barbado']
[u'australia', u'move', u'backward', u'gender', u'equal']
[u'australia', u'place', u'sanction', u'japanes', u'govt']
[u'author', u'plan', u'evapor', u'cover']
[u'accus', u'run', u'scare', u'campaign']
[u'bana', u'targa', u'tasmania', u'thrill']
[u'banjo', u'corpor', u'distanc', u'founder']
[u'beard', u'claim', u'archibald', u'prize']
[u'beckham', u'deni', u'seek', u'glitz']
[u'black', u'cap', u'lanka', u'main', u'threat', u'warn']
[u'blue', u'green', u'alga', u'spark', u'darl', u'river', u'water', u'warn']
[u'blue', u'batsmen', u'torment', u'bull', u'attack']
[u'blue', u'wave', u'sink', u'highland']
[u'bodi', u'yarra', u'river']
[u'bridgeston', u'worker', u'strike', u'rise']
[u'british', u'singer', u'charlott', u'church', u'pregnant']
[u'bullet', u'fight', u'tiger']
[u'bull', u'continu', u'massiv', u'chase']
[u'bunburi', u'sentenc', u'fire']
[u'burgoyn', u'rule', u'geelong', u'match']
[u'bushrang', u'chase']
[u'bushrang', u'make', u'progress']
[u'bushrang', u'chase']
[u'busi', u'cash', u'mardi', u'gras']
[u'businessman', u'convict', u'defraud', u'employ']
[u'busselton', u'shire', u'vacanc', u'fill']
[u'carlaw', u'michael', u'pull', u'trial']
[u'carpent', u'announc', u'cabinet', u'reshuffl']
[u'carpent', u'support', u'push', u'labor', u'faction']
[u'cassini', u'spacecraft', u'snap', u'view', u'saturn']
[u'ceduna', u'council', u'criticis', u'feder', u'govt', u'indigen']
[u'cereal', u'contamin', u'copycat', u'crime']
[u'citrus', u'grower', u'plant', u'fruit', u'tree']
[u'clarkson', u'fuss', u'handl', u'rule']
[u'closer']
[u'contract', u'award', u'build', u'coolac', u'bypass']
[u'councillor', u'secur', u'camera', u'doubt']
[u'council', u'consid', u'boundari', u'realign']
[u'court', u'issu', u'arrest', u'warrant', u'hors', u'rid']
[u'courtney', u'take', u'clipsal', u'pole']
[u'crash', u'leav', u'motorcyclist', u'critic', u'condit']
[u'crow', u'play', u'eagl', u'alic', u'spring']
[u'cunnamulla', u'pension', u'attack', u'home']
[u'current', u'account', u'deficit', u'soar']
[u'custom', u'happi', u'consid', u'request', u'boat']
[u'cyclon', u'threat', u'central', u'coast']
[u'cyclon', u'watch', u'issu']
[u'david', u'hick', u'final', u'charg']
[u'debus', u'defend', u'north', u'coast', u'chopper', u'travel']
[u'della', u'bosca', u'reject', u'snowi', u'hydro', u'cash', u'grab', u'claim']
[u'develop', u'board', u'promis', u'help', u'displac']
[u'doc', u'fund', u'preschool', u'join', u'fund', u'protest']
[u'shoot', u'dead', u'sydney', u'attack']
[u'drogba', u'name', u'african', u'footbal', u'year']
[u'drought', u'expect', u'impact', u'electr', u'price']
[u'crew', u'stand', u'weekend', u'threat']
[u'duff', u'retain', u'control', u'north', u'melbourn']
[u'duff', u'continu', u'roo', u'chairman']
[u'farm', u'fin', u'salmonella', u'case']
[u'emir', u'await', u'final', u'tick', u'resort', u'plan']
[u'esper', u'fire', u'prompt', u'arson', u'fear']
[u'goldfield', u'chief', u'urg', u'grill', u'expuls']
[u'explos', u'make', u'licenc', u'approv', u'gladston']
[u'farmer', u'die', u'wimmera', u'tractor', u'mishap']
[u'fear', u'feder', u'water', u'plan', u'prove', u'cost']
[u'feder', u'govt', u'question', u'geelong', u'bypass', u'rout']
[u'feder', u'govt', u'urg', u'accept', u'auspin', u'fund']
[u'govt', u'fund', u'worker', u'help', u'reduc', u'substanc']
[u'film', u'showcas', u'opal', u'impact', u'petrol', u'sniff']
[u'firefight', u'boost', u'contain', u'line', u'king']
[u'gisborn', u'connect']
[u'fishermen', u'want', u'action', u'prevent', u'illeg']
[u'fresh', u'food', u'suppli', u'run', u'jabiru']
[u'fund', u'boost', u'shelter', u'revamp']
[u'govt', u'increas', u'apprentic', u'train']
[u'govt', u'say', u'work', u'progress', u'dead', u'intersect']
[u'govt', u'burk', u'attack', u'gross', u'hypocrisi', u'say']
[u'govt', u'streamlin', u'irrig', u'compo', u'scheme']
[u'grazier', u'back', u'probe', u'land', u'clear', u'case']
[u'hair', u'fetishist', u'jail', u'brush']
[u'heritag', u'list', u'tower', u'hill', u'game', u'reserv']
[u'hewitt', u'move', u'vega', u'quarter']
[u'hick', u'lawyer', u'seek', u'urgent', u'meet']
[u'hickss', u'father', u'confront', u'terror', u'charg']
[u'holyfield', u'deni', u'steroid', u'alleg']
[u'hotel', u'bouncer', u'jail', u'patron', u'death']
[u'hyatt', u'resort', u'oppon', u'consid', u'court', u'action']
[u'illawarra', u'preschool', u'join', u'fund', u'protest']
[u'inquest', u'tasman', u'kayak', u'death', u'begin']
[u'irrig', u'abl', u'carri', u'water']
[u'john', u'beard', u'win', u'archibald', u'prize']
[u'journalist', u'death', u'balibo', u'close', u'case']
[u'katherin', u'polic', u'forc', u'interven', u'brawl']
[u'record', u'lower', u'half', u'year', u'profit']
[u'labour', u'hire', u'compani', u'fin', u'worker', u'injuri']
[u'landhold', u'play', u'drainag', u'plan']
[u'latest', u'figur', u'indic', u'rate', u'hike', u'unlik']
[u'council', u'convinc', u'militari']
[u'lion', u'past', u'bulldog']
[u'lobbi', u'group', u'call', u'improv', u'transport']
[u'lobster', u'council', u'air', u'recreat', u'alloc', u'fear']
[u'charg', u'brisban', u'rape']
[u'face', u'jail', u'florist', u'shop', u'blaze']
[u'jail', u'year', u'appal', u'rape']
[u'jail', u'year', u'hold', u'step', u'daughter']
[u'lose', u'appeal', u'murder', u'sentenc', u'reduc']
[u'face', u'court', u'accus', u'attempt', u'murder']
[u'mayor', u'air', u'develop', u'panel', u'councillor', u'worri']
[u'mayor', u'stress', u'need', u'boost', u'rural']
[u'mcginti', u'issu', u'properti', u'confisc', u'warn']
[u'meatwork', u'blaze', u'see', u'farmer', u'lose', u'incom']
[u'meatwork', u'hop', u'methan', u'power']
[u'jail', u'life', u'toowoomba', u'tripl', u'murder']
[u'miner', u'hurt', u'rock', u'fall']
[u'rain', u'possibl', u'central']
[u'subscrib', u'sign', u'renew', u'energi', u'scheme']
[u'moruya', u'plan', u'includ', u'senior', u'develop']
[u'mother', u'jail', u'year', u'forg', u'husband']
[u'call', u'ethic', u'polit']
[u'murder', u'case', u'wit', u'fear', u'rivkin', u'richardson', u'court']
[u'govt', u'launch', u'carbon', u'captur', u'project']
[u'govt', u'opposit', u'continu', u'fight', u'elect']
[u'govt', u'reject', u'ama', u'health', u'critic']
[u'scientist', u'seek', u'sourc', u'flesh', u'eat']
[u'nuclear', u'fuel', u'cleaner', u'coal']
[u'organis', u'crime', u'raid', u'drug', u'ski', u'cash']
[u'pair', u'sentenc', u'palm', u'riot']
[u'pakistan', u'blast', u'kill', u'wound', u'judg']
[u'pakistan', u'great', u'doubt', u'withdraw', u'stori']
[u'hit', u'remot', u'health', u'servic']
[u'polic', u'call', u'quell', u'patient', u'rampag']
[u'polic', u'probe', u'helensval', u'fatal', u'crash']
[u'polic', u'seiz', u'cannabi', u'worth', u'wide', u'drug']
[u'polic', u'differ', u'approach', u'indigen']
[u'public', u'feedback', u'seek', u'stormwat', u'plan']
[u'ship', u'water', u'necessari', u'beatti', u'say']
[u'racist', u'graffiti', u'prompt', u'council', u'reward']
[u'rainfal', u'caus', u'flood', u'oenpelli']
[u'recal', u'nacho', u'product', u'manufactur', u'plan']
[u'red', u'walker']
[u'refuge', u'send', u'straight', u'lanka']
[u'region', u'experi', u'lower', u'summer', u'rainfal']
[u'reinado', u'readi', u'negoti', u'report']
[u'report', u'seek', u'comment', u'philippin', u'banana', u'import']
[u'resid', u'remain', u'concern', u'wind', u'farm', u'plan']
[u'retail', u'spend', u'rise']
[u'right', u'watchdog', u'allow', u'custom', u'ship']
[u'ripper', u'talk', u'nativ', u'titl', u'settlement']
[u'rudd', u'burk', u'leadership', u'challeng', u'support']
[u'rudd', u'readi', u'howard']
[u'rugbi', u'player', u'embark', u'chariti', u'bike', u'ride']
[u'rural', u'women', u'tell', u'politician', u'drought', u'impact']
[u'sartor', u'sign', u'cullerin', u'wind', u'farm']
[u'sawmil', u'get', u'fund', u'scanner', u'chipper']
[u'scott', u'frustrat', u'form', u'thailand']
[u'search', u'fail', u'distress', u'beacon', u'sourc']
[u'share', u'industri', u'moot', u'maret', u'island']
[u'share', u'market', u'fail', u'claw', u'week', u'loss']
[u'shire', u'presid', u'taxi', u'remov']
[u'sober', u'open', u'world']
[u'soldier', u'catch', u'traffic', u'drug']
[u'soldier', u'face', u'court', u'drug', u'charg']
[u'solv', u'rental', u'crisi', u'feder', u'govt', u'tell']
[u'south', u'west', u'batter', u'storm']
[u'south', u'west', u'record', u'hotter', u'summer']
[u'spend', u'unlik', u'spark', u'rat', u'rise', u'economist']
[u'lanka', u'rife', u'human', u'right', u'abus', u'jurist']
[u'stefaniak', u'support', u'right', u'review']
[u'storm', u'victim', u'communiti', u'fund', u'april']
[u'strand', u'polic', u'beat', u'open', u'month']
[u'strawberri', u'grower', u'bumper', u'harvest']
[u'studi', u'reveal', u'needi', u'north', u'coast', u'communiti']
[u'studi', u'shed', u'light', u'fodder', u'harvest']
[u'summer', u'rain', u'good', u'part', u'pilbara']
[u'sunbeam', u'sharehold', u'green', u'light', u'sale']
[u'supertruck', u'race', u'team', u'biodiesel']
[u'suprem', u'court', u'uphold', u'refus', u'bail']
[u'surgeri', u'success', u'tiger']
[u'tafe', u'teacher', u'stop', u'work', u'staff', u'agreement']
[u'busi', u'strengthen', u'tie', u'south', u'korea']
[u'govt', u'end', u'week', u'boycott', u'communiti', u'task']
[u'tattoo', u'yarra', u'river', u'bodi']
[u'teen', u'hiccup', u'stop', u'week']
[u'thousand', u'ticket', u'avail', u'thorp']
[u'leg', u'prove', u'barrier', u'peggi', u'sheep']
[u'tiger', u'build', u'lead']
[u'tiger', u'command', u'redback']
[u'tiger', u'sink', u'teeth', u'redback']
[u'titan', u'crush', u'panther', u'warm']
[u'tradit', u'owner', u'grant', u'exclus', u'right']
[u'trap', u'reinado', u'demand', u'face', u'face', u'talk']
[u'truck', u'crash', u'caus', u'freeway', u'damag']
[u'turnbul', u'aim', u'compromis', u'water']
[u'turnbul', u'thwait', u'fail', u'agre', u'water', u'plan']
[u'fail', u'spark', u'lead', u'daniel']
[u'union', u'boss', u'sack', u'compon', u'worker']
[u'govt', u'final', u'charg', u'hick']
[u'press', u'ahead', u'hick', u'terror', u'trial']
[u'push', u'ahead', u'hick', u'terror', u'trial']
[u'govt', u'back', u'call', u'prevent', u'probe']
[u'govt', u'wont', u'appl']
[u'video', u'show', u'work', u'employe', u'tristar', u'say']
[u'ballet', u'dancer', u'vote', u'feet']
[u'walker', u'clear', u'red', u'debut']
[u'minist', u'form', u'faction']
[u'waratah', u'edg', u'forc']
[u'waratah', u'forc', u'play', u'draw']
[u'water', u'author', u'fin', u'contamin', u'respons']
[u'weapon', u'drug', u'adelaid', u'raid']
[u'weather', u'blame', u'declin', u'cattl', u'number']
[u'white', u'wine', u'grape', u'harvest', u'near']
[u'wimmera', u'malle', u'experi', u'hotter', u'summer']
[u'woman', u'charg', u'theft', u'brock', u'crash', u'site']
[u'woman', u'charg', u'theft', u'brock', u'memento']
[u'woman', u'charg', u'steal', u'brock', u'crash', u'site']
[u'woman', u'stab', u'gordon', u'estat']
[u'work', u'start', u'power', u'interconnector']
[u'xstrata', u'mull', u'legal', u'case', u'evid']
[u'charg', u'mount', u'morgan', u'brawl']
[u'kill', u'dozen', u'miss', u'indonesian', u'landslid']
[u'foreign', u'kidnap', u'ethiopia']
[u'kill', u'head', u'smash']
[u'advoc', u'sceptic', u'right', u'review']
[u'allenbi', u'share', u'lead', u'miami']
[u'american', u'cricket', u'suffer', u'setback']
[u'angelina', u'joli', u'file', u'adopt', u'child', u'vietnam']
[u'anna', u'nicol', u'buri', u'bahama']
[u'anna', u'nicol', u'smith', u'buri', u'bahama']
[u'strike', u'deal', u'malaysia', u'ambank']
[u'apolog', u'demand', u'wwii', u'slave', u'comment']
[u'australian', u'group', u'build', u'london', u'olymp', u'villag']
[u'author', u'investig', u'mckew', u'death', u'threat']
[u'author', u'resum', u'search', u'miss', u'swimmer']
[u'bayliss', u'squeez', u'pole']
[u'begg', u'smith', u'mogul', u'king']
[u'blake', u'want', u'rule', u'chang', u'round', u'robin', u'fiasco']
[u'blind', u'pilot', u'britain', u'australia']
[u'blue']
[u'olymp', u'debut']
[u'bomb', u'kill', u'baghdad', u'market']
[u'bouncer', u'stab', u'outsid', u'perth', u'hotel']
[u'british', u'embassi', u'offici', u'miss', u'ethiopia']
[u'brown', u'say', u'hick', u'face', u'trial']
[u'brown', u'urg', u'condemn', u'mckew', u'death', u'threat']
[u'brumbi', u'woe', u'continu']
[u'burni', u'bomb', u'hoaxer', u'get', u'suspend', u'jail', u'term']
[u'campbel', u'admiss', u'show', u'coalit', u'hypocrisi', u'rudd']
[u'campbel', u'admiss', u'show', u'govt', u'hypocrisi', u'rudd']
[u'campbel', u'quit', u'cabinet']
[u'campbel', u'quit', u'cabinet', u'burk', u'meet']
[u'campbel', u'admiss', u'catch', u'govt', u'opposit']
[u'carlton', u'edg', u'hawk']
[u'cat', u'power', u'preseason', u'thriller']
[u'chelsea', u'admit', u'charg', u'leagu', u'brawl']
[u'closer']
[u'closer']
[u'coalit', u'senat', u'admit', u'meet', u'burk']
[u'commando', u'guard', u'indian', u'team', u'world']
[u'cook', u'continu', u'form', u'world']
[u'curtain', u'pip', u'fli', u'frenchman']
[u'cyclon', u'forecast', u'watch', u'mackay']
[u'cyclon', u'form', u'coast', u'storm', u'dous']
[u'cyclon', u'warn', u'issu', u'northern', u'australia']
[u'death', u'threat', u'throw', u'mckew', u'say']
[u'death', u'threat', u'target', u'labor', u'mckew', u'report']
[u'death', u'toll', u'rise', u'indonesian', u'landslid']
[u'desert', u'shrug', u'munc', u'loss']
[u'develop', u'arrest', u'giant', u'watermelon', u'slice']
[u'donald', u'late', u'kick', u'salvag', u'draw', u'chief']
[u'jone', u'continu', u'slide']
[u'dragon', u'reclaim', u'chariti', u'shield']
[u'threaten', u'withdraw', u'fiji']
[u'fate', u'miss', u'tourist', u'unknown']
[u'feder', u'reach', u'dubai', u'final', u'eye', u'record']
[u'fergi', u'tell', u'mourinho', u'button']
[u'fish', u'industri', u'surpris', u'land', u'right', u'rule']
[u'ganguli', u'reveal', u'world', u'deadlin']
[u'govt', u'person', u'attack', u'fail', u'rudd']
[u'greek', u'archaeologist', u'rare', u'hera', u'statu']
[u'guantanamo', u'death', u'probabl', u'suicid', u'forens', u'expert']
[u'hammer', u'charg', u'argentin', u'sign']
[u'hawk', u'blue', u'head', u'tassi']
[u'hewitt', u'set', u'safin', u'showdown', u'vega']
[u'hooker', u'vault', u'melbourn', u'victori']
[u'name', u'world', u'umpir']
[u'strip', u'umpir', u'right', u'termin', u'match']
[u'indigen', u'group', u'reject', u'ama', u'health', u'critic']
[u'industri', u'action', u'threaten', u'ballet', u'perform']
[u'inquest', u'lockhart', u'disast', u'announc']
[u'iraqi', u'author', u'bodi', u'kidnap']
[u'iraqi', u'secur', u'forc', u'kidnapp']
[u'labor', u'mckew', u'stand', u'firm', u'despit', u'death', u'threat']
[u'lawyer', u'play', u'hick', u'plea', u'bargain', u'report']
[u'liber', u'admit', u'burk', u'meet']
[u'librari', u'continu', u'flood', u'damag']
[u'life', u'sentenc', u'murder', u'suffici']
[u'lightn', u'spark', u'bushfir']
[u'charg', u'murder', u'garden', u'death']
[u'guilti', u'murder', u'half', u'sister']
[u'jail', u'arson', u'guilti', u'plea']
[u'man', u'bodi', u'botan', u'garden']
[u'mckew', u'shake', u'deter', u'threat']
[u'mckew', u'shake', u'incid', u'outsid', u'home']
[u'mckew', u'undet', u'death', u'threat']
[u'melbourn', u'polic', u'investig', u'death']
[u'mottram', u'crawford', u'upstag']
[u'pitch', u'smith']
[u'communiti', u'cyclon', u'watch']
[u'appl', u'lift', u'week']
[u'pakistan', u'test', u'fire', u'short', u'rang', u'missil']
[u'pathologist', u'shortag', u'reach', u'crisi', u'point', u'doctor']
[u'peru', u'campaign', u'target', u'tardi']
[u'pipelin', u'disput', u'leav', u'qlds', u'water', u'suppli']
[u'polic', u'crack', u'drug', u'take', u'truck', u'driver']
[u'polic', u'diver', u'bodi', u'miss', u'swimmer']
[u'polic', u'identifi', u'bodi', u'woman', u'yarra']
[u'polic', u'investig', u'brick', u'throw']
[u'polic', u'investig', u'mckew', u'death', u'threat']
[u'polic', u'investig', u'death', u'melbourn']
[u'polic', u'predict', u'brisban', u'bikeway', u'attack']
[u'polic', u'crack', u'drug', u'deal', u'mardi', u'gras']
[u'princess', u'diana', u'inquest', u'hear', u'juri']
[u'prodi', u'confirm', u'itali']
[u'author', u'search', u'crash', u'crop', u'duster']
[u'redback', u'troubl', u'tiger', u'close']
[u'red', u'fall', u'short', u'lion']
[u'rift', u'muslim', u'muslim', u'blame']
[u'river', u'murray', u'record', u'lowest', u'flow']
[u'rogerson', u'roughi', u'take', u'chip', u'norton']
[u'rudd', u'challeng', u'earli', u'elect']
[u'govt', u'stomach', u'public', u'warn']
[u'self', u'harm', u'cultur', u'grow', u'youth', u'mother', u'say']
[u'shoaib', u'asif', u'escap', u'drug', u'test', u'say']
[u'sonn', u'stay', u'presid']
[u'spiki', u'creatur', u'prowl', u'ocean', u'half', u'billion', u'year']
[u'stern', u'charg', u'scott', u'drop', u'bundl']
[u'steal', u'paint', u'spielberg', u'hous']
[u'stormer', u'blow', u'hurrican', u'away']
[u'storm', u'drench', u'darwin', u'road']
[u'storm', u'spank', u'bronco', u'trial']
[u'superstit', u'spark', u'toilet', u'clean', u'craze']
[u'suspici', u'destroy', u'derelict', u'hous']
[u'swan', u'crow', u'bomber', u'tast', u'preseason', u'success']
[u'swim', u'champ', u'boss', u'seat', u'stuff']
[u'sydney', u'get', u'mardi', u'gras']
[u'sydneysid', u'turn', u'mardi', u'gras', u'parad']
[u'terror', u'comparison', u'anger', u'greek', u'communiti']
[u'tiger', u'cours', u'easi']
[u'todd', u'kelli', u'clipsal']
[u'topless', u'wife', u'photo', u'end', u'man', u'pole', u'protest']
[u'tornado', u'death', u'toll', u'rise']
[u'tristar', u'employe', u'union', u'say']
[u'tropic', u'cyclon', u'odett', u'stationari', u'coast']
[u'arrest', u'teen', u'murder']
[u'union', u'call', u'govt', u'reinstat', u'fund']
[u'union', u'leader', u'rudd', u'leader', u'burk']
[u'astronaut', u'charg', u'kidnap', u'attempt']
[u'mop', u'devast', u'tornado']
[u'pakistani', u'agent', u'interrog', u'taliban', u'leader']
[u'interview', u'todd', u'kelli']
[u'recipi', u'want', u'medal', u'take', u'tour']
[u'visa', u'problem', u'sydney', u'ahead', u'asian', u'open']
[u'warrior', u'upstag', u'bushrang']
[u'hospitalis', u'electr', u'shock']
[u'million', u'help', u'clean', u'australia']
[u'adelaid', u'taxi', u'driver', u'assault', u'passeng']
[u'ahmedinajad', u'visit', u'saudi', u'improv', u'relat']
[u'allenbi', u'lose', u'miami', u'lead']
[u'weigh', u'skinni', u'model', u'debat']
[u'argument', u'rudd', u'burk', u'dinner', u'continu']
[u'argument', u'continu', u'rudd', u'burk', u'dinner']
[u'attack', u'rudd', u'burk', u'continu', u'campbel']
[u'aussi', u'troop', u'close', u'fugit', u'reinado']
[u'aussi', u'troop', u'enter']
[u'australian', u'convict', u'paedophilia', u'india']
[u'aust', u'troop', u'seiz', u'timor']
[u'babi', u'bonus', u'attribut', u'birth', u'boom']
[u'bayliss', u'draw', u'blood']
[u'beatti', u'warn', u'water', u'rebellion']
[u'blaze', u'break', u'onesteel', u'plant']
[u'brisban', u'women', u'warn', u'walk']
[u'british', u'tourist', u'hold', u'eritrean', u'ethiopian']
[u'bull', u'fall', u'content', u'final']
[u'bull', u'make', u'progress', u'chase']
[u'burk', u'wallabi', u'recal']
[u'bush', u'interven', u'veteran', u'revel']
[u'bushrang', u'hold', u'draw']
[u'bushrang', u'troubl']
[u'bush', u'tour', u'tornado', u'region']
[u'campbel', u'sack', u'set', u'danger', u'preced', u'govt']
[u'cheroke', u'vote', u'includ', u'descend']
[u'child', u'serious', u'injur', u'attack']
[u'china', u'boost', u'defenc', u'spend']
[u'closer', u'nodisplay']
[u'closer']
[u'cooper', u'overjoy', u'end', u'year', u'titl', u'drought']
[u'copenhagen', u'polic', u'prepar', u'riot']
[u'cowan', u'put', u'blue', u'brink']
[u'crew', u'continu', u'burn', u'curb', u'north', u'east']
[u'cyclon', u'buffet', u'north']
[u'cyclon', u'caus', u'flood']
[u'cyclon', u'caus', u'heavi', u'flood']
[u'cyclon', u'continu', u'march', u'north', u'west', u'aust']
[u'cyclon', u'georg', u'cross', u'coast']
[u'cyclon', u'georg', u'threaten']
[u'cyclon', u'odett', u'weaken', u'tropic']
[u'danish', u'capit', u'brace', u'riot']
[u'danish', u'polic', u'arrest', u'score', u'second', u'night']
[u'death', u'mar', u'start', u'local', u'drag', u'race']
[u'debnam', u'promis', u'boost', u'polic', u'number']
[u'dizzi', u'play', u'futur', u'unsur']
[u'east', u'timor', u'rebel', u'leader', u'escap', u'captur']
[u'eclips', u'turn', u'moon']
[u'edward', u'stand', u'rudd', u'dinner', u'explan']
[u'england', u'rugbi', u'shock', u'wilko', u'injur']
[u'eritrea', u'dismiss', u'accus', u'seiz', u'tourist']
[u'eritrea', u'reject', u'ethiopian', u'accus', u'tourist']
[u'firefight', u'battl', u'blaze', u'wreck', u'yard']
[u'gasnier', u'miss', u'entir', u'season']
[u'ghan', u'railway', u'wash']
[u'gillard', u'tight', u'lip', u'detail', u'labor']
[u'goal', u'line', u'technolog', u'get', u'ahead']
[u'govt', u'appoint', u'switkowski', u'ansto', u'chairman']
[u'govt', u'reject', u'reduc', u'hydro', u'debt']
[u'govt', u'reject', u'employe', u'wors', u'workchoic']
[u'govt', u'push', u'greener', u'home', u'futil', u'green']
[u'govt', u'push', u'greener', u'home']
[u'haig', u'hold', u'nerv', u'johnni', u'walker', u'classic']
[u'hewitt', u'win', u'battl', u'world', u'number', u'one']
[u'howard', u'continu', u'attack', u'burk', u'dinner']
[u'howard', u'attack', u'rudd', u'hypocrit']
[u'howard', u'demand', u'rudd', u'come', u'clean']
[u'iemma', u'campaign', u'focus', u'shift', u'margin', u'seat']
[u'indonesian', u'landslid', u'kill']
[u'injur', u'protest', u'compo']
[u'injuri', u'disast', u'cahil']
[u'iran', u'ahmadinejad', u'meet', u'king', u'abdullah']
[u'iran', u'saudi', u'agre', u'curb', u'violenc']
[u'iraqi', u'suicid', u'bomber', u'kill']
[u'japanes', u'team', u'unveil', u'serv', u'humanoid']
[u'jone', u'unleash', u'hapless', u'red']
[u'kahlefeldt', u'densham', u'triathlon', u'titl']
[u'korolev', u'luck', u'run', u'vega']
[u'lewi', u'bowl', u'england', u'practic']
[u'attack', u'pickax']
[u'memo', u'reveal', u'time', u'run', u'devil']
[u'model', u'hurley', u'marri', u'secret', u'ceremoni']
[u'motorcyclist', u'kill', u'crash']
[u'multicultur', u'communiti', u'back', u'grassbi', u'statu']
[u'normal', u'servic', u'resum', u'inter', u'stretch', u'lead']
[u'communiti', u'flood']
[u'odett', u'teas', u'central', u'coastlin']
[u'ogradi', u'chase', u'volk']
[u'olymp', u'park', u'upgrad']
[u'opposit', u'pledg', u'sentenc', u'power', u'juri']
[u'opposit', u'reject', u'iemma', u'pledg', u'recruit']
[u'plane', u'crash', u'near', u'australian', u'train', u'session']
[u'demand', u'rudd', u'come', u'clean']
[u'polic', u'treat', u'medic', u'centr', u'suspici']
[u'radcliff', u'sign', u'final', u'harri', u'potter', u'film']
[u'red', u'fall', u'short', u'lion']
[u'red', u'injuri', u'woe', u'continu']
[u'rescu', u'oper', u'follow', u'flood']
[u'rick', u'kelli', u'claim', u'victori', u'adelaid']
[u'roo', u'secur', u'semi', u'final', u'berth']
[u'rudd', u'burk', u'meet', u'accid', u'abbott']
[u'rudd', u'burk', u'meet', u'accident', u'abbott']
[u'schifcofsk', u'sidelin', u'break', u'hand']
[u'scientist', u'studi', u'impact', u'current']
[u'sehwag', u'pick', u'dravid', u'request']
[u'sevilla', u'beat', u'barca', u'explos', u'match']
[u'shark', u'bite', u'gasp']
[u'shiit', u'sunni', u'agre', u'work', u'peac']
[u'small', u'plane', u'hit', u'power', u'line']
[u'smithton', u'shoot', u'accus', u'face', u'court']
[u'star', u'fan', u'farewel', u'rocker', u'thorp']
[u'switkowski', u'appoint', u'ansto', u'chairman']
[u'sydney', u'clean', u'record', u'parad']
[u'tell', u'truth', u'burk', u'meet', u'rudd', u'urg']
[u'unit', u'place', u'hand', u'premiership', u'trophi']
[u'terri', u'rule', u'porto', u'clash']
[u'thompson', u'prais', u'bedraggl', u'cat']
[u'thousand', u'attend', u'anti', u'kremlin', u'protest']
[u'thousand', u'farewel', u'billi', u'thorp']
[u'thousand', u'farewel', u'billi', u'thorp']
[u'tiger', u'coach', u'prais', u'young', u'cub']
[u'tiger', u'titl', u'defenc', u'aliv']
[u'tiger', u'squash', u'redback']
[u'toseland', u'hold', u'bayliss']
[u'troop', u'kill', u'hunt', u'reinado']
[u'troop', u'kill', u'hunt', u'reinado']
[u'injur', u'glider', u'collis']
[u'pedestrian', u'injur']
[u'unbeaten', u'darchinyan', u'retain', u'flyweight', u'crown']
[u'strike', u'insurg', u'suspect']
[u'victori', u'feder', u'close', u'record']
[u'abolish', u'home', u'let']
[u'brace', u'cyclon', u'georg']
[u'cyclon', u'watch']
[u'snare', u'earli', u'wicket']
[u'western', u'troop', u'kill', u'afghan', u'attack', u'polic']
[u'world', u'open', u'say', u'moodi']
[u'afghani', u'kill', u'clash', u'militari']
[u'aborigin', u'servic', u'say', u'govt', u'fail']
[u'accus', u'offic', u'committ', u'hear']
[u'govt', u'defend', u'plan', u'grassbi', u'statu']
[u'reintroduc', u'rout']
[u'allenbi', u'fall', u'miami', u'go', u'play']
[u'archer', u'cut', u'tie', u'burk']
[u'armi', u'tank', u'reach', u'darwin', u'delay']
[u'arnold', u'bank', u'cahil']
[u'arnold', u'bank', u'cahil', u'recoveri']
[u'auspin', u'remov', u'index']
[u'auspin', u'worker', u'ralli', u'export', u'sawlog']
[u'australian', u'arrest', u'vietnam', u'drug', u'charg']
[u'australia', u'racist', u'imag', u'asia', u'ibrahim']
[u'aust', u'troop', u'continu', u'search', u'reinado']
[u'author', u'contain', u'deliber', u'bushfir']
[u'aviat', u'safeti', u'watchdog', u'recommend', u'chang']
[u'bacteria', u'blame', u'fish', u'farm', u'kill']
[u'bait', u'help', u'fox', u'grampian']
[u'bamerang', u'fire']
[u'banana', u'farmer', u'urg', u'monitor', u'filipino', u'banana']
[u'beckham', u'injur', u'real', u'hold', u'draw']
[u'bega', u'valley', u'chanc', u'region']
[u'basketbal', u'champ', u'consid']
[u'face', u'court', u'accus', u'assault', u'stalk']
[u'brack', u'defend', u'payout', u'injur', u'demonstr']
[u'buddhist', u'provid', u'dental', u'care', u'bush']
[u'burk', u'escalt']
[u'call', u'govern', u'address', u'shortag']
[u'caltex', u'compens', u'damag', u'caus']
[u'campbel', u'resign', u'polit', u'motiv']
[u'carpent', u'vow', u'forc', u'grill']
[u'caus', u'wreck', u'yard', u'blaze', u'determin']
[u'celebr', u'guest', u'latest', u'parti', u'accessori']
[u'central', u'west', u'tourism', u'look', u'cash', u'sydney']
[u'cereal', u'compani', u'fight', u'home', u'brand', u'label']
[u'chariti', u'event', u'rais']
[u'china', u'announc', u'militari', u'budget', u'increas']
[u'china', u'boost', u'militari', u'spend']
[u'closer']
[u'committ', u'terror', u'suspect', u'begin']
[u'concret', u'threaten', u'legal', u'action', u'schwarten']
[u'cost', u'govt', u'regul', u'impact', u'produc']
[u'council', u'desper', u'senior', u'manag']
[u'council', u'urg', u'public', u'agenda', u'matter']
[u'council', u'hop', u'balanc', u'budget']
[u'council', u'probe', u'riverbank', u'damag']
[u'council', u'campaign', u'redevelop', u'lourd']
[u'countri', u'rail', u'buyback', u'near', u'complet']
[u'court', u'jail', u'fake', u'policeman']
[u'court', u'jail', u'woman', u'real', u'estat', u'agent', u'theft']
[u'court', u'upgrad', u'terror', u'committ', u'hear']
[u'curbishley', u'readi', u'fight']
[u'cyclon', u'georg', u'continu', u'path']
[u'danger', u'surf', u'spark', u'mass', u'rescu', u'gold', u'coast']
[u'deak', u'brisban', u'meet']
[u'debnam', u'budgi', u'smuggler', u'press', u'flap']
[u'debnam', u'vow', u'work', u'macquari', u'field', u'resid']
[u'defend', u'mori', u'shadow', u'attorney', u'general']
[u'democrat', u'concern', u'indigen', u'voic']
[u'devic', u'aim', u'harvest', u'water']
[u'discuss', u'paper', u'canvass', u'civil', u'hear']
[u'downer', u'maintain', u'bashir', u'leader']
[u'elect', u'polici']
[u'order', u'sand', u'dun', u'reveget']
[u'player', u'drive', u'home', u'opal', u'fuel', u'messag']
[u'expo', u'look', u'boost', u'north', u'east', u'tourism']
[u'farmer', u'accus', u'claw', u'oppon']
[u'farmer', u'face', u'lengthi', u'sidelin', u'stint']
[u'father', u'extradit', u'adelaid', u'face', u'murder']
[u'feder', u'govt', u'probe', u'gippsland', u'firebreak', u'plan']
[u'figur', u'rise', u'servic', u'sector']
[u'crew', u'parrot', u'king', u'habitat', u'safe']
[u'damag', u'steelwork', u'equip']
[u'talk', u'leav', u'tiger', u'townsvill', u'work']
[u'fit', u'instructor', u'sentenc', u'smuggl', u'sudaf']
[u'fletcher', u'warn', u'england', u'complac']
[u'flood', u'advic', u'issu', u'katherin', u'resid']
[u'guantanamo', u'inmat', u'describ', u'interrog']
[u'ward', u'state', u'reliv', u'experi']
[u'foundat', u'lobbi', u'local', u'rheumatologist']
[u'sale', u'beer', u'bottl', u'alic']
[u'dead', u'horror', u'weekend', u'north', u'central']
[u'freeway', u'like', u'open', u'traffic', u'tomorrow']
[u'freightlink', u'struggl', u'overcom', u'flood', u'damag']
[u'gasnier', u'give', u'return']
[u'gaudri', u'promis', u'energi', u'taskforc', u'elect']
[u'goodman', u'fielder', u'maker']
[u'govt', u'advis', u'sack', u'send', u'phoney', u'email']
[u'govt', u'defend', u'mori', u'opposit', u'say']
[u'govt', u'promis', u'school', u'scienc', u'revamp']
[u'green', u'prefer', u'oakeshott']
[u'gusmao', u'impos', u'state', u'emerg', u'timor']
[u'hackett', u'admit', u'switch', u'affect', u'form']
[u'health', u'dept', u'monitor', u'infect', u'risk', u'flood']
[u'hedg', u'snare', u'rank']
[u'helipad', u'oppon', u'promis', u'rezon', u'fight']
[u'hewitt', u'hit', u'vega', u'jackpot']
[u'hewitt', u'plot', u'return']
[u'hick', u'need', u'lawyer']
[u'hodg', u'nail', u'middl', u'order', u'place']
[u'holden', u'announc', u'massiv', u'cut']
[u'holden', u'confirm', u'slash', u'job']
[u'holden', u'slash', u'job']
[u'holden', u'slash', u'south', u'australian', u'work', u'forc']
[u'holden', u'worker', u'give', u'week', u'choos']
[u'howard', u'campbel']
[u'howard', u'campbel', u'replac']
[u'iemma', u'wont', u'gloat', u'nation', u'account', u'figur']
[u'injuri', u'scar', u'protea']
[u'inland', u'queensland', u'temperatur', u'soar']
[u'investig', u'launch', u'medic', u'centr', u'blaze']
[u'invest', u'prison', u'rehabilit', u'criminologist']
[u'fool', u'meet', u'burk', u'campbel']
[u'japan', u'seek', u'clariti', u'china', u'militari', u'spend']
[u'japan', u'wont', u'apologis', u'comfort', u'women']
[u'jewish', u'australian', u'debat', u'isra']
[u'juri', u'tell', u'patton', u'confess', u'obtain', u'fair']
[u'katter', u'call', u'croc', u'bounti', u'ensur', u'public']
[u'keat', u'burk']
[u'keat', u'urg', u'labor', u'improv', u'superannu']
[u'labor', u'critic', u'switkowki', u'appoint']
[u'labor', u'promis', u'wheat', u'export', u'review']
[u'lazio', u'cours', u'champion', u'leagu', u'place']
[u'liber', u'accept', u'nation', u'candid', u'mcintosh']
[u'liqueur', u'shiraz', u'rise', u'ash', u'nation']
[u'livingston', u'shire', u'seek', u'citi', u'status']
[u'lower', u'product', u'see', u'push', u'macadamia', u'qualiti']
[u'lucki', u'escap', u'earli', u'birthday', u'present']
[u'macadamia', u'processor', u'call', u'quit']
[u'mactiernan', u'claim', u'support', u'state', u'reform']
[u'mail', u'out', u'damag', u'environ']
[u'accus', u'drink', u'drive', u'harass', u'polic']
[u'recov', u'hospit', u'street', u'bash']
[u'mayor', u'question', u'water', u'summit', u'omiss']
[u'melbourn', u'charg', u'murder', u'india']
[u'jail', u'solicitor', u'murder']
[u'minist', u'claim', u'progress', u'fight', u'illeg']
[u'minist', u'dismiss', u'council', u'plea', u'hospit']
[u'miss', u'turn', u'safe']
[u'murray', u'goulburn', u'announc', u'rise', u'farmer', u'milk']
[u'nebo', u'die', u'dragster', u'crash']
[u'newman', u'say', u'bypass', u'plan', u'wont', u'solv', u'traffic']
[u'bring', u'speed', u'rescu', u'chopper']
[u'speci', u'mosquito']
[u'afghan', u'civilian', u'kill', u'nato', u'strike']
[u'delay', u'hick', u'case']
[u'norfolk', u'juri', u'show', u'graphic', u'photo', u'patton']
[u'northern', u'rain', u'creat', u'coral', u'bless']
[u'coast', u'gain', u'intern', u'attent']
[u'elect', u'writ', u'issu']
[u'nuclear', u'power', u'viabl']
[u'tourism', u'campaign', u'aim', u'aussi', u'welcom']
[u'opposit', u'critic', u'switkowski', u'appoint']
[u'opposit', u'want', u'grey', u'nurs', u'shark', u'count']
[u'orang', u'resid', u'lodg', u'submiss', u'ombudsman']
[u'organis', u'deni', u'world', u'champ', u'pool', u'leak']
[u'court', u'settlement', u'reach', u'fatal', u'crash']
[u'overwhelm', u'respons', u'grey', u'nomad', u'scheme']
[u'patton', u'murder', u'accus', u'hand', u'knowledg']
[u'patton', u'murder', u'sexual', u'motiv', u'prosecutor']
[u'perilya', u'say', u'storag', u'plan', u'resort']
[u'pitcairn', u'get', u'half', u'year', u'rape']
[u'plunkett', u'offer', u'kidney', u'sick', u'father']
[u'announc', u'campbel', u'replac']
[u'pledg', u'bypass']
[u'forc', u'stay', u'southern', u'highland']
[u'polic', u'confid', u'cannabi', u'destruct', u'hamper']
[u'polic', u'descend', u'gold', u'coast', u'golf', u'championship']
[u'polic', u'troubl', u'breath', u'test', u'driver']
[u'polic', u'probe', u'cataract', u'gorg', u'youth', u'assault']
[u'polic', u'remov', u'crash', u'factori']
[u'polic', u'search', u'offic', u'miss', u'handgun']
[u'polic', u'investig', u'racist', u'flyer', u'toowoomba']
[u'polic', u'warn', u'swimmer', u'dive', u'rock']
[u'polic', u'teen', u'crash', u'victim']
[u'porsch', u'driver', u'accus']
[u'posit', u'news', u'injur', u'polota']
[u'principl']
[u'promina', u'sharehold', u'approv', u'suncorp', u'merger']
[u'protea', u'readi', u'shrug', u'injuri', u'woe']
[u'psychiatrist', u'urg', u'releas', u'elder']
[u'public', u'urg', u'contact', u'wildlif', u'servic', u'help']
[u'rail', u'servic', u'get', u'track']
[u'rain', u'hop', u'dissip', u'cyclon']
[u'rain', u'predict', u'eas', u'drench']
[u'red', u'rooki', u'skelton']
[u'focus', u'economi']
[u'regul', u'love', u'orwellian']
[u'reinado', u'hide', u'indefinit', u'downer']
[u'reinado', u'support', u'lead', u'protest', u'dili']
[u'reinado', u'larg', u'etimor']
[u'reinado', u'support', u'protest', u'dili']
[u'right', u'ban', u'relationship']
[u'rockfal', u'suspend', u'mine', u'oper']
[u'rudd', u'meet', u'burk', u'escal']
[u'rudd', u'promis', u'million', u'goldfield', u'pipelin']
[u'consid', u'public', u'regist', u'polit']
[u'face', u'challeng', u'young', u'region', u'lawyer']
[u'sampi', u'welcom', u'lose', u'weight']
[u'sartor', u'green', u'light', u'northpark', u'extens']
[u'search', u'watch', u'hous', u'escape']
[u'share', u'market', u'wipe', u'earli', u'gain']
[u'shire', u'consid', u'revis', u'phillip', u'resort', u'plan']
[u'skinni', u'model', u'face', u'australian']
[u'slater', u'reveng', u'round', u'defeat']
[u'struggl', u'rule']
[u'lankan', u'like', u'process', u'nauru', u'downer']
[u'stanthorp', u'plan', u'aviat']
[u'state', u'govt', u'urg', u'develop', u'geotherm', u'energi']
[u'state', u'emerg', u'declar', u'vanuatu']
[u'statist', u'syndrom', u'remain', u'static']
[u'steadi', u'rain', u'solut', u'murray']
[u'strong', u'wind', u'buffet', u'town']
[u'strong', u'wind', u'forc', u'nation', u'row', u'champ', u'delay']
[u'studi', u'find', u'mum', u'anxious', u'newborn']
[u'sup', u'burk']
[u'swim', u'champ', u'boss', u'hose', u'pool', u'leak', u'claim']
[u'switkowski', u'appoint', u'show', u'govt', u'nuclear', u'plan']
[u'talk', u'begin', u'water', u'suppli', u'fund']
[u'govt', u'want', u'auspin', u'rayoni', u'investig']
[u'polic', u'search', u'miss']
[u'tax', u'small', u'landhold', u'protect']
[u'time', u'charm', u'eckstein']
[u'treasur', u'caution', u'privat', u'equiti', u'trend']
[u'trial', u'accus', u'palm', u'island', u'rioter', u'begin']
[u'troop', u'attempt', u'reinado', u'surrend']
[u'turner', u'davi', u'tour', u'wellington', u'dunedoo', u'road']
[u'arrest', u'polic', u'chase']
[u'union', u'say', u'parti', u'promis', u'polic']
[u'union', u'surpris', u'holden', u'cut']
[u'victori', u'crow', u'prais', u'gambier', u'grind']
[u'vidmar', u'confid', u'upset']
[u'warn', u'issu', u'blue', u'green', u'alga', u'outbreak']
[u'water', u'author', u'stand', u'avoca', u'communic']
[u'western', u'down', u'pin', u'hop', u'develop', u'group']
[u'widespread', u'rainfal', u'dent', u'drought']
[u'wine', u'grape', u'harvest', u'forecast', u'slash']
[u'woman', u'charg', u'cairn', u'stab']
[u'woman', u'hospitalis', u'alleg', u'attack', u'husband']
[u'woman', u'unawar', u'pregnanc', u'near', u'birth']
[u'million', u'budget', u'recov', u'black', u'hawk', u'helicopt']
[u'abar', u'issu', u'predict', u'year', u'ahead']
[u'recov', u'bodi', u'black', u'hawk', u'victim']
[u'agent', u'lament', u'cost', u'land', u'develop']
[u'anger', u'montoya', u'bump', u'team', u'mate', u'nascar']
[u'creat', u'environment', u'research', u'school']
[u'ararat', u'hepburn', u'rate', u'poor', u'process']
[u'artist', u'win', u'bald', u'archi', u'time']
[u'asio', u'chief', u'call', u'secur', u'access', u'card']
[u'aust', u'citizen', u'leav', u'timor']
[u'aust', u'embassi', u'staff', u'evacu', u'timor']
[u'aust', u'market', u'make', u'comeback']
[u'australia', u'delay', u'zimbabw', u'tour']
[u'australian', u'arriv', u'home', u'volatil', u'timor']
[u'barossa', u'wine', u'grape', u'grower', u'post', u'massiv', u'product']
[u'beatti', u'whiff', u'stench', u'corrupt', u'liber']
[u'bedouri', u'celebr', u'ambul']
[u'beltz', u'row', u'nation', u'titl', u'success']
[u'bermuda', u'skipper', u'defend', u'world', u'minnow']
[u'bewar', u'jobless', u'figur']
[u'leverock', u'save', u'lightweight', u'bermuda']
[u'instal', u'water', u'main', u'bateman']
[u'wave', u'expect', u'coast']
[u'black', u'hawk', u'crash', u'victim', u'bodi', u'retriev']
[u'blake', u'undergo', u'ankl', u'surgeri']
[u'bodi', u'soldier', u'recov']
[u'bribi', u'water', u'infrastructur', u'plan', u'scale']
[u'build', u'approv', u'figur']
[u'busi', u'group', u'urg', u'support', u'citi', u'heart', u'levi']
[u'boost', u'stop', u'remot', u'visitor']
[u'camilla', u'undergo', u'hysterectomi']
[u'celtic', u'star', u'warn', u'dive', u'italian']
[u'cfmeu', u'campaign', u'export']
[u'chariti', u'group', u'industri', u'organis']
[u'chemic', u'spill', u'close', u'southbound', u'lane', u'freeway']
[u'cherbourg', u'sign', u'share', u'respons', u'agreement']
[u'china', u'militari', u'spend', u'boost', u'worri']
[u'citi', u'famili', u'invit', u'farm']
[u'clean', u'australia', u'blame', u'council', u'lack']
[u'closer']
[u'closer']
[u'coal', u'mine', u'oppon', u'rais', u'question']
[u'coff', u'prepar', u'biker', u'invas']
[u'commod', u'report']
[u'commod', u'export', u'earn', u'predict', u'reach']
[u'concern', u'effect', u'tripl']
[u'copper', u'claim', u'oper', u'thank']
[u'copper', u'steal', u'melbourn', u'raid']
[u'corpor', u'watchdog', u'educ', u'busi']
[u'council', u'consid', u'measur', u'level', u'drop']
[u'council', u'hope', u'sale', u'airport', u'lead']
[u'councillor', u'western', u'divis', u'confer', u'end', u'today']
[u'council', u'fight', u'plan', u'higher', u'levi']
[u'council', u'lobbi', u'govern', u'intersect']
[u'council', u'warn', u'potenti', u'higher', u'wast', u'fee']
[u'court', u'hear', u'polic', u'furnitur', u'protect']
[u'court', u'hear', u'woman', u'murder', u'patton']
[u'court', u'tell', u'agreement', u'give', u'wright', u'famili', u'half']
[u'death', u'prompt', u'road', u'safeti', u'warn']
[u'debnam', u'vow', u'upgrad', u'youth', u'club']
[u'defenc', u'argu', u'woman', u'murder', u'patton']
[u'detect', u'queri', u'possibl', u'link']
[u'appoint', u'investig', u'alleg', u'staff']
[u'downpour', u'cut', u'highway']
[u'drop', u'level', u'creat', u'problem', u'privat']
[u'drug', u'bust', u'uncov', u'european', u'connect']
[u'continu', u'build', u'gippsland', u'break']
[u'dual', u'licenc', u'lobster', u'fisher', u'face']
[u'dutch', u'determin', u'earn', u'respect']
[u'economist', u'urg', u'sale', u'aurora', u'energi', u'fund']
[u'elder', u'man', u'accus', u'killer', u'releas', u'bail']
[u'elmor', u'put', u'focus', u'traffic', u'safeti', u'worri']
[u'elvi', u'appear', u'elector', u'roll']
[u'emerg', u'chopper', u'centr', u'polit', u'argument']
[u'england', u'open', u'jostl', u'posit']
[u'erin', u'brockovich', u'endors', u'polit', u'group']
[u'expert', u'decid', u'open', u'nation', u'park']
[u'farmer', u'cop', u'week']
[u'farmer', u'expect', u'spend', u'despit', u'drought']
[u'father', u'murder', u'accus', u'court']
[u'father', u'sentenc', u'jail', u'bite']
[u'fava', u'back', u'forc', u'super']
[u'feder', u'govern', u'fund', u'career', u'pathway']
[u'govt', u'urg', u'fund', u'swim', u'centr', u'revamp']
[u'festiv', u'approv']
[u'fight', u'firewe', u'step']
[u'danger', u'south', u'west']
[u'fail', u'stop', u'festiv']
[u'firefight', u'protect', u'rare', u'parrot', u'habitat']
[u'fishermen', u'bless', u'special', u'signific']
[u'gold', u'coast', u'mayor', u'doubt', u'water', u'restrict']
[u'govern', u'grant', u'biofuel', u'studi']
[u'govt', u'approv', u'qanta', u'takeov']
[u'govt', u'approv', u'qanta', u'deal']
[u'govt', u'approv', u'qanta', u'takeov']
[u'govt', u'defend', u'road', u'fund', u'alloc']
[u'govt', u'deni', u'neglect', u'industri']
[u'govt', u'seek', u'detail', u'murray', u'except']
[u'govt', u'super', u'hornet']
[u'govt', u'purchas', u'super', u'hornet']
[u'green', u'support', u'nation', u'carbon', u'pool']
[u'griffith', u'face', u'charg']
[u'group', u'say', u'govt', u'tape', u'blame', u'hous']
[u'group', u'court', u'geraldton', u'riot']
[u'hear', u'tell', u'terror', u'suspect', u'explos']
[u'heat', u'wave', u'continu']
[u'holden', u'cut', u'wont', u'bring', u'polici', u'chang']
[u'howard', u'concern', u'timor', u'secur', u'situat']
[u'iemma', u'happi', u'green', u'power', u'switch']
[u'iemma', u'promis', u'million', u'educ', u'scheme']
[u'say', u'mundin']
[u'independ', u'tweed', u'candid', u'highlight', u'issu']
[u'india', u'itch', u'game']
[u'indonesia', u'earthquak']
[u'indonesia', u'plan', u'island', u'terrorist', u'jail']
[u'indon', u'prison', u'exchang', u'treati', u'readi', u'june']
[u'inglewood', u'bank', u'june', u'open', u'lender']
[u'intern', u'agenc', u'ensur', u'breakfast']
[u'inverel', u'council', u'wont', u'narrow', u'evan']
[u'investig', u'sewag', u'spill']
[u'protest', u'polit', u'stunt', u'entsch']
[u'jam', u'hardi', u'post', u'loss']
[u'jetstar', u'promis', u'tiger', u'tail']
[u'job', u'lose', u'coalit', u'claim']
[u'joyc', u'disappoint', u'govt', u'approv', u'qanta']
[u'kosovo', u'front', u'crime', u'trial']
[u'labor', u'move', u'candid', u'seat', u'flynn']
[u'labor', u'introduc', u'nation', u'dental', u'scheme']
[u'laffranchi', u'defend', u'assault', u'charg']
[u'societi', u'worri', u'delay', u'courthous']
[u'lawyer', u'stand', u'trial', u'unregist']
[u'liber', u'deni', u'wrongdo', u'raid']
[u'liber', u'investig', u'hide']
[u'lyon', u'line', u'tah']
[u'mackinnon', u'nab']
[u'macklin', u'north', u'indigen', u'problem']
[u'macquari', u'bank', u'benefit', u'presidenti']
[u'accus', u'kill', u'mother', u'front', u'court']
[u'face', u'court', u'child', u'photo']
[u'face', u'fin', u'complain', u'offens']
[u'fear', u'dead', u'indonesian', u'earthquak']
[u'mine', u'compani', u'regret', u'employ', u'lobbyist', u'grill']
[u'mosquito', u'bear', u'diseas', u'warn', u'issu', u'flood']
[u'favour', u'diagnosi', u'north', u'hospit']
[u'motorcyclist', u'hurt', u'crash']
[u'nato', u'launch', u'taliban', u'drug', u'offens', u'afghanistan']
[u'navi', u'ship', u'return', u'base', u'investig']
[u'newcastl', u'member', u'quit', u'support', u'dump']
[u'minist', u'say', u'unawar', u'burk', u'connect']
[u'rule', u'claim', u'victim', u'tribun']
[u'evid', u'racial', u'conflict', u'school', u'brawl']
[u'north', u'shore', u'rail', u'servic', u'track']
[u'player', u'charg', u'assault']
[u'govt', u'talk', u'land', u'council', u'home']
[u'oenpelli', u'resid', u'fear', u'live']
[u'ombudsman', u'say', u'depart', u'mislead', u'noisi', u'road']
[u'opposit', u'deregul', u'shop', u'hour']
[u'opposit', u'urg', u'inquiri', u'longwal', u'mine']
[u'pakistan', u'india', u'hold', u'anti', u'terror', u'talk']
[u'pilbara', u'warn', u'watch', u'cyclon', u'warn']
[u'plan', u'includ', u'sale', u'heritag', u'sit']
[u'plan', u'author', u'merg', u'say', u'urban']
[u'announc', u'ellison', u'campbel', u'replac']
[u'play', u'raid', u'liber', u'offic']
[u'polic', u'arrest', u'alleg', u'fraud', u'syndic', u'leader']
[u'polic', u'arrest', u'caravan', u'park', u'stab']
[u'polic', u'intensifi', u'probe', u'suspect', u'murder']
[u'polic', u'prais', u'beacon', u'save', u'live']
[u'polic', u'drink', u'partner', u'turn', u'violent']
[u'polic', u'search', u'mother', u'babi', u'toilet']
[u'polic', u'unhappi', u'driver', u'speed', u'near', u'school']
[u'potenti', u'crop', u'help', u'sunraysia', u'surviv']
[u'power', u'plant', u'recycl', u'water', u'labor']
[u'produc', u'transport', u'despit', u'damag', u'rail', u'line']
[u'propos', u'estat', u'build', u'june']
[u'govt', u'say', u'traveston', u'boost', u'gympi', u'region']
[u'launch', u'billi', u'thorp', u'scholarship']
[u'liber', u'deni', u'wrongdo', u'polic', u'raid']
[u'liber', u'offic', u'raid']
[u'rain', u'reduc', u'cattl', u'livestock', u'sale']
[u'rann', u'want', u'state', u'referendum', u'nuclear', u'power']
[u'recommend', u'increas', u'voluntari', u'grower', u'levi']
[u'riddl', u'surround', u'patton', u'murder', u'court', u'tell']
[u'rock', u'fall', u'caus', u'structur', u'inspector']
[u'rooney', u'lill', u'match']
[u'rudd', u'howard']
[u'govt', u'examin', u'feasibl', u'desalin', u'plant']
[u'samuel', u'hit', u'west', u'indi']
[u'save', u'airport', u'group', u'say', u'feel', u'sorri']
[u'school', u'shade', u'sail', u'fund', u'disgust']
[u'search', u'continu', u'miss', u'polic']
[u'secur', u'tight', u'terror', u'committ', u'hear']
[u'secur', u'tight', u'terror', u'hear']
[u'senat', u'call', u'smoke']
[u'shearer', u'set', u'record']
[u'sheep', u'station', u'start', u'camel', u'safari']
[u'silverton', u'launch', u'outback', u'guid', u'attract']
[u'stoke', u'fosdik', u'challeng', u'charg']
[u'storm', u'help', u'boost', u'western', u'region', u'dam']
[u'studi', u'predict', u'increas', u'takeov', u'activ']
[u'sumatra', u'search', u'earthquak', u'survivor']
[u'sunshin', u'coast', u'hop', u'level', u'water', u'exempt']
[u'surgeri', u'cancel', u'lack', u'bed']
[u'sweet', u'reveng', u'slater', u'gold', u'coast']
[u'sydney', u'storm', u'spark', u'emerg', u'call']
[u'sydney', u'terror', u'suspect', u'court']
[u'tasmanian', u'wine', u'grape', u'grower', u'expect', u'qualiti']
[u'termit', u'help', u'ethanol', u'product', u'offici']
[u'territori', u'footi', u'boss', u'reject', u'weather', u'concern']
[u'terror', u'suspect', u'awar', u'surveil', u'court']
[u'thousand', u'lose', u'phone', u'servic']
[u'ticket', u'rush', u'alic', u'match']
[u'titan', u'fan', u'park', u'fin']
[u'tiwi', u'council', u'member', u'disagre', u'land', u'leas', u'talk']
[u'toddler', u'burn', u'holbrook', u'accid']
[u'tourist', u'behav', u'race']
[u'townsvill', u'town', u'squar', u'plan', u'move', u'ahead']
[u'trade', u'deficit']
[u'trade', u'deficit', u'drop']
[u'tropic', u'local', u'barrier', u'hockey', u'ambit']
[u'tyco', u'accus', u'rip', u'worker']
[u'union', u'ask', u'govt', u'help', u'abattoir', u'worker']
[u'union', u'flag', u'nation', u'campaign', u'export']
[u'union', u'lobbi', u'export']
[u'north', u'korea', u'diplomat', u'talk']
[u'polic', u'union', u'slam', u'delay', u'compens', u'injur']
[u'voter', u'reject', u'govt', u'attack', u'rudd', u'opposit']
[u'govt', u'say', u'resourc', u'industri', u'bolster', u'small']
[u'word', u'erupt', u'wagga', u'hospit']
[u'warrior', u'unchang', u'redback', u'clash']
[u'water', u'cart', u'glenmaggi', u'coongulla']
[u'west', u'probe', u'racism', u'claim']
[u'whitnal', u'famili', u'feud', u'heat']
[u'woman', u'plead', u'guilti', u'machet', u'attack', u'puppi']
[u'zinifex', u'explor', u'zinc', u'china']
[u'unfamiliar', u'rescu', u'chopper', u'issu']
[u'injur', u'iran', u'earthquak']
[u'kill', u'indon', u'plane', u'crash']
[u'impact', u'close', u'cowley', u'beach', u'track']
[u'compon', u'worker', u'face', u'holden', u'cut']
[u'abbott', u'warn', u'state', u'territori', u'govt', u'improv']
[u'abduct', u'theori', u'patton', u'murder', u'unproven', u'court']
[u'aborigin', u'abus', u'escal', u'nowra', u'find']
[u'adelaid', u'hill', u'deni', u'bail', u'boss', u'stab']
[u'agreement', u'pave', u'waterway', u'garden']
[u'servic', u'worri', u'remot', u'communiti']
[u'travel', u'face', u'tighter', u'secur']
[u'back', u'councillor', u'flynn']
[u'analyst', u'urg', u'gold', u'coast', u'market', u'push', u'rethink']
[u'anti', u'campaign', u'reject', u'econom', u'studi']
[u'tabl', u'tuqiri', u'offer']
[u'associ', u'deni', u'opposit', u'worksaf']
[u'asylum', u'seeker', u'drown', u'shipwreck']
[u'aust', u'medic', u'evacu', u'plane', u'leav', u'indonesia']
[u'australian', u'aboard', u'crash', u'garuda', u'plane', u'dfat']
[u'australian', u'indonesian', u'plane', u'crash']
[u'australian', u'involv', u'indonesian', u'plane', u'crash', u'dfat']
[u'australian', u'accept', u'nuclear', u'power', u'switkowski']
[u'author', u'investig', u'illeg', u'factori', u'work']
[u'avocado', u'grower', u'relax', u'quarantin', u'rule']
[u'best', u'wikipedia', u'page', u'edit']
[u'better', u'technolog', u'educ', u'need', u'aust']
[u'bowtel', u'present']
[u'bishop', u'urg', u'greater', u'famili', u'protect', u'work']
[u'bligh', u'defend', u'act', u'water', u'report']
[u'blue', u'lose', u'nicholson', u'tiger', u'battl']
[u'bridgeston', u'worker', u'strike']
[u'broadbent', u'back', u'qanta', u'sale', u'plan']
[u'bullet', u'lead', u'tiger', u'half', u'time']
[u'bullet', u'thrash', u'tiger', u'final', u'seri']
[u'bullet', u'focus', u'defenc', u'anstey']
[u'bung', u'investig', u'make', u'progress', u'say', u'premier']
[u'busi', u'usual', u'attack', u'gilli']
[u'safeti', u'review', u'urg', u'stab']
[u'busselton', u'want', u'charg', u'wineri', u'higher', u'rat']
[u'clearer', u'share', u'respons', u'agreement']
[u'nomin', u'fisheri', u'council']
[u'charg', u'like']
[u'children', u'blame', u'taxi', u'attack', u'broom']
[u'closer']
[u'concern', u'expans', u'impact', u'local', u'road']
[u'council', u'air', u'street', u'fight', u'concern']
[u'council', u'get', u'fund', u'investig', u'water']
[u'council', u'reveal', u'pambula', u'develop', u'guidelin']
[u'damag', u'communic', u'hamper', u'sumatra', u'rescu']
[u'debut', u'novel', u'win', u'award']
[u'dengu', u'threat', u'eas', u'groot', u'eylandt']
[u'desal', u'plant', u'propon', u'reject', u'environment', u'fear']
[u'docker', u'decid', u'appeal']
[u'doctor', u'converg', u'alburi', u'debat', u'region']
[u'drown', u'boy', u'histori', u'neglect']
[u'econom', u'growth', u'rate', u'rise']
[u'year', u'face', u'aggrav', u'robberi', u'charg']
[u'embley', u'west', u'coast', u'return']
[u'entrepeneur', u'face', u'figur', u'uranium']
[u'eurobodalla', u'shire', u'boost', u'water', u'charg']
[u'fairfax', u'launch', u'brisban', u'onlin', u'paper']
[u'fear', u'eyr', u'peninsula', u'water', u'summit']
[u'fear', u'australian', u'indon', u'plane', u'crash']
[u'feder', u'cash', u'need', u'aborigin', u'remain']
[u'feder', u'collis', u'cours', u'hewitt', u'indian']
[u'chief', u'signal', u'grow', u'socceroo']
[u'figur', u'reveal', u'hunter', u'coal', u'contribut']
[u'chao', u'minut', u'yogyakarta']
[u'australian', u'unaccount', u'crash']
[u'fli', u'doctor', u'call', u'bush', u'base', u'mental', u'health']
[u'forc', u'look', u'sharp', u'can', u'encount']
[u'timor', u'minist', u'jail', u'unrest']
[u'ryder', u'player', u'fulk', u'quit']
[u'australian', u'miss', u'indon', u'plane', u'crash']
[u'australian', u'miss', u'plane', u'crash']
[u'franc', u'recal', u'england', u'scourg']
[u'fund', u'increas', u'mckay', u'road', u'upgrad']
[u'gambler', u'jail', u'steal', u'employ']
[u'garuda', u'crash', u'indonesia']
[u'ginn', u'free', u'coxless', u'pair', u'crown']
[u'glen', u'boreham', u'speech', u'nation', u'press', u'club']
[u'global', u'group', u'make', u'takeov', u'cotton']
[u'goanna', u'threat', u'cane', u'toad', u'invas']
[u'govt', u'boost', u'broadband', u'spend']
[u'govt', u'criticis', u'upper', u'cataract', u'riverb', u'crack']
[u'govt', u'fund', u'promot', u'west', u'intern']
[u'govt', u'investig', u'way', u'support', u'compon']
[u'govt', u'pledg', u'help', u'futuri', u'worker']
[u'govt', u'say', u'bore', u'fund', u'help', u'save', u'sand']
[u'govt', u'suspicion', u'secret', u'poll', u'hodgman']
[u'grant', u'council', u'back', u'water', u'fluorid']
[u'green', u'deni', u'politicis', u'deal', u'inquiri']
[u'gunn', u'scout', u'altern', u'timber', u'site']
[u'hackett', u'lash', u'critic']
[u'hafeez', u'script', u'pakistan']
[u'hawach', u'legal', u'action', u'expect', u'dismiss']
[u'hayden', u'symond', u'recov', u'pont']
[u'health', u'warn', u'flood', u'oenpelli']
[u'heat', u'melt', u'weather', u'bureau', u'record']
[u'hopetoun', u'get', u'power', u'suppli', u'assur']
[u'hospit', u'defend', u'mental', u'health', u'patient', u'long', u'stay']
[u'howard', u'hail', u'qanta', u'deal', u'right', u'balanc']
[u'hreoc', u'report', u'work', u'famili']
[u'iemma', u'launch', u'countri', u'labor', u'campaign']
[u'incent', u'save', u'water', u'expert', u'say']
[u'indonesia', u'crank', u'rescu', u'effort']
[u'indonesian', u'quak', u'toll', u'author', u'say']
[u'industri', u'zone', u'plan', u'meatwork', u'site']
[u'insur', u'chang', u'wont', u'hurt', u'terror', u'victim', u'govt']
[u'irrig', u'privat', u'dam', u'blame', u'reduc', u'water']
[u'irrig', u'tell', u'water', u'entitl']
[u'johnston', u'catch', u'burk']
[u'judg', u'say', u'catch', u'porn', u'sick', u'mind']
[u'kangaroo', u'deni', u'brawl', u'claim']
[u'kangaroo', u'probe', u'brawl', u'claim']
[u'labor', u'scaremong', u'nuclear', u'wast', u'site']
[u'lam', u'comment', u'investig']
[u'lethal', u'threaten', u'player', u'omiss']
[u'lifeguard', u'hop', u'award', u'rais', u'profil']
[u'mackay', u'doctor']
[u'maguir', u'attack', u'job', u'campaign']
[u'malcolm', u'edey', u'address', u'australian', u'industri']
[u'jail', u'robberi', u'fake']
[u'plead', u'guilti', u'girl', u'shop', u'centr']
[u'market', u'gain', u'second', u'consecut']
[u'marsh', u'sidelin', u'blue', u'clash']
[u'mayor', u'urg', u'qanta', u'stay', u'true', u'root']
[u'melbourn', u'alley', u'name', u'dame', u'edna']
[u'metal', u'thiev', u'steal', u'kid', u'slide', u'toilet', u'roof']
[u'meter', u'blaze', u'damag', u'hous']
[u'minist', u'discuss', u'macquari', u'island', u'pest']
[u'miss', u'journalist', u'name']
[u'cast', u'doubt', u'govt', u'util', u'user', u'pay']
[u'australian', u'arriv', u'home', u'timor']
[u'fear', u'water', u'takeov', u'impact', u'snowi', u'flow']
[u'say', u'water', u'pipelin', u'claim', u'wrong']
[u'urg', u'parliamentari', u'probe', u'council']
[u'warn', u'labor', u'water', u'plan']
[u'mundin', u'unleash', u'real']
[u'nation', u'account']
[u'navi', u'move', u'salvag', u'lose', u'black', u'hawk', u'helicopt']
[u'minist', u'deni', u'speak', u'crichton', u'brown']
[u'town', u'squar', u'uniqu', u'townsvill']
[u'charg', u'councillor', u'brawl']
[u'secret', u'report', u'townsvill', u'cardiac', u'unit']
[u'fear', u'bird', u'scare']
[u'warn', u'problem', u'say', u'pont']
[u'condemn', u'fiji', u'right', u'abus']
[u'odonnel', u'play', u'wait', u'game']
[u'opposit', u'accus', u'attempt', u'undermin']
[u'opposit', u'quiz', u'govt', u'tree', u'clear', u'case']
[u'parliamentari', u'committe', u'probe', u'region', u'tourism']
[u'patton', u'murder', u'trial', u'juri', u'consid', u'verdict']
[u'perth', u'rental', u'vacanc', u'rate', u'fall']
[u'player', u'need', u'adjust', u'rule', u'archer']
[u'call', u'explan', u'liber']
[u'expect', u'sign', u'defenc', u'agreement', u'japan']
[u'remain', u'silent', u'futur', u'liber']
[u'polic', u'raid', u'innoc', u'prove', u'guilti', u'howard']
[u'polic', u'drug', u'firearm', u'bendigo', u'raid']
[u'polic', u'charg', u'contractor', u'accus', u'ranger']
[u'power', u'firm', u'look', u'build', u'hunter', u'plant', u'lower']
[u'pritchard', u'face', u'court', u'brawl']
[u'progress', u'world', u'trade', u'reform', u'abar']
[u'public', u'remind', u'follow', u'ban']
[u'purcel', u'defend', u'medic', u'emerg', u'polici']
[u'qanta', u'highlight', u'offshor', u'potenti']
[u'qanta', u'job', u'offshor', u'union']
[u'qanta', u'sale', u'wont', u'affect', u'pacif', u'rout', u'say', u'govt']
[u'back', u'safeti', u'audit', u'plan']
[u'race', u'club', u'seek', u'talk', u'overturn', u'trot', u'decis']
[u'raider', u'ban', u'drive', u'year']
[u'rann', u'deni', u'cabinet', u'stint', u'help', u'compani', u'plan']
[u'report', u'find', u'work', u'famili', u'life', u'kilter']
[u'report', u'give', u'hospit']
[u'report', u'darl', u'river']
[u'report', u'urg', u'worker', u'right', u'famili']
[u'resid', u'fight', u'stop', u'nation', u'park', u'forest']
[u'resourc', u'worker', u'learn', u'protect', u'remot', u'area']
[u'revamp', u'plan', u'airport', u'navig']
[u'richardson', u'slug', u'report']
[u'rioli', u'offer', u'tip', u'yuendumu', u'hope']
[u'royal', u'darwin', u'stand', u'plane', u'crash', u'injur']
[u'rudd', u'demand', u'guarante', u'qanta', u'takeov']
[u'rudd', u'coal', u'industri', u'announc']
[u'retail', u'accus', u'trade', u'practic', u'breach']
[u'sack', u'minist']
[u'school', u'seek', u'vocat', u'cours', u'trainer']
[u'schwarten', u'highlight', u'rockhampton', u'hospit']
[u'scientist', u'accident', u'expos', u'bird']
[u'second', u'rang', u'cross', u'see', u'vital', u'inland', u'rail']
[u'solid', u'wast', u'levi', u'doubl']
[u'specul', u'brigad', u'chief', u'quit']
[u'spin', u'say', u'dalrympl']
[u'state', u'contribut', u'major', u'infrastructur']
[u'john', u'hospit', u'revamp', u'finish', u'time']
[u'strong', u'econom', u'growth', u'forecast', u'continu']
[u'supermodel', u'campbel', u'order', u'sweep', u'floor']
[u'survivor', u'crash']
[u'swelter', u'heat', u'take', u'toll', u'banana', u'crop']
[u'sydney', u'guilti', u'strangl', u'employ']
[u'tasmanian', u'devil', u'help', u'control', u'kangaroo']
[u'premier', u'pleas', u'auspin', u'accept']
[u'terri', u'hick', u'deni', u'call', u'terrorist']
[u'thiev', u'target', u'copper', u'pip']
[u'thousand', u'leav', u'homeless', u'sumatra', u'quak']
[u'tourist', u'industri', u'look', u'post', u'fire', u'pick']
[u'toyota', u'recal', u'thousand', u'car']
[u'train', u'hit', u'woman']
[u'line', u'unsur', u'freight', u'futur']
[u'uefa', u'boss', u'call', u'intern', u'sport', u'polic']
[u'union', u'fight', u'qanta', u'sale']
[u'unit', u'draw', u'level', u'shandong', u'half', u'time']
[u'unit', u'stutter', u'asian', u'champion', u'leagu', u'open']
[u'unit', u'sydney', u'histori']
[u'unman', u'station', u'mean', u'closur', u'govern']
[u'upgrad', u'plan', u'cooma', u'emerg', u'shelter']
[u'vandalis', u'skate', u'park', u'remain']
[u'govt', u'defend', u'drought']
[u'govt', u'offer', u'pipelin', u'pledg', u'farmer']
[u'volunt', u'firefight', u'object', u'propos', u'cost']
[u'govt', u'expand', u'mandatori', u'report', u'child']
[u'wangaratta', u'get', u'water', u'suppli', u'assur']
[u'whale', u'strand', u'macquari', u'harbour']
[u'white', u'hous', u'offici', u'guilti', u'lie', u'oath']
[u'wide', u'hospit', u'good', u'health']
[u'woolmer', u'unconcern', u'pakistan', u'bowl', u'stock']
[u'world', u'sugar', u'price', u'expect', u'fall']
[u'charg', u'bendigo', u'drug', u'raid']
[u'address', u'gold', u'coast', u'homeless']
[u'accc', u'give', u'patrick', u'freight', u'ship', u'takeov']
[u'accc', u'concern', u'toll', u'road', u'compani', u'takeov']
[u'challeng', u'prime', u'minist']
[u'look', u'nation', u'reserv', u'comp']
[u'place', u'deadlin', u'tuqiri', u'offer']
[u'athlet', u'championship', u'good', u'gaug', u'japan']
[u'augi', u'march', u'win', u'award']
[u'aussi', u'forc', u'swim', u'hero', u'earli', u'retir']
[u'aust', u'jail', u'child', u'offenc', u'india']
[u'aust', u'market', u'close', u'flat', u'quiet']
[u'aust', u'mine', u'compani', u'charter', u'plane', u'crash']
[u'australian', u'fear', u'dead', u'malawi', u'plane', u'crash']
[u'australian', u'injur', u'crash', u'arriv', u'darwin']
[u'australian', u'miss', u'garuda', u'plane', u'crash']
[u'aust', u'urg', u'dismantl', u'singl', u'desk', u'lower']
[u'baillieu', u'speak', u'bore', u'consult']
[u'basslink', u'oppon', u'continu', u'question', u'project']
[u'beekeep', u'enjoy', u'massiv', u'honey', u'harvest']
[u'be', u'swarm', u'colli', u'search', u'water']
[u'bird', u'vaccin', u'trial', u'promis']
[u'birney', u'uneasi', u'liber', u'focus']
[u'black', u'cap', u'receiv', u'wake', u'bracewel']
[u'blue', u'land', u'right', u'fight', u'crucial', u'say', u'martin']
[u'bone', u'backyard', u'belong', u'woman', u'miss', u'year']
[u'border', u'deni', u'wrongdo']
[u'bore', u'breakdown', u'heat', u'grip', u'communiti']
[u'bottl', u'shop', u'bandit', u'forc', u'victim']
[u'invest', u'biofuel', u'research']
[u'brave', u'celtic', u'edg', u'milan']
[u'break', u'trigger', u'increas', u'polic', u'patrol']
[u'brian', u'burk']
[u'bridgeston', u'stand', u'worker', u'amid', u'strike', u'action']
[u'british', u'vote', u'reform', u'hous', u'lord']
[u'bruton', u'clear', u'play', u'melbourn']
[u'bushrang', u'bail', u'woeful', u'bull']
[u'bushrang', u'clinch', u'inning', u'point']
[u'businessman', u'see', u'econom', u'benefit', u'traveston']
[u'cattlemen', u'want', u'armi', u'bring', u'control', u'camel']
[u'champion', u'leagu', u'wide', u'open', u'ferguson']
[u'cheney', u'visit']
[u'christma', u'asylum', u'seeker', u'brace', u'cyclon']
[u'closer']
[u'collin', u'sick', u'appear', u'court']
[u'communiti', u'meet', u'geraldton', u'street', u'brawl']
[u'councillor', u'unhappi', u'main', u'road', u'respons']
[u'council', u'reject', u'farmland', u'rat', u'resciss', u'motion']
[u'court', u'jail', u'auscoal', u'chequ', u'theft']
[u'court', u'rule', u'case', u'hick', u'lawyer', u'proceed']
[u'court', u'rule', u'case', u'hickss', u'lawyer', u'proceed']
[u'crash', u'close', u'midland', u'highway']
[u'crash', u'miss', u'unlik', u'surviv', u'downer']
[u'run', u'drought', u'assist', u'money']
[u'cyclon', u'georg', u'chang', u'path']
[u'cyclon', u'georg', u'intensifi', u'coast']
[u'czech', u'opera', u'premier']
[u'darci', u'long', u'await', u'comeback']
[u'debnam', u'releas', u'polici', u'packag', u'aim', u'famili']
[u'downpour', u'cancel', u'bemboka']
[u'weather', u'take', u'toll', u'water', u'suppli']
[u'dubbo', u'bid', u'titl', u'beef', u'capit', u'australia']
[u'ead', u'back', u'reserv', u'propos']
[u'entsch', u'label', u'share', u'declar', u'failur']
[u'extra', u'militari', u'polic', u'send', u'iraq']
[u'extra', u'fund', u'cover', u'emerg', u'surgeri', u'boost', u'minist']
[u'famili', u'health', u'elect', u'agenda']
[u'fan', u'rid', u'victori', u'quiksilv']
[u'farmer', u'warrego', u'river', u'water', u'sale', u'delay']
[u'farmer', u'wont', u'sign', u'pipelin', u'contract']
[u'fear', u'continu', u'build', u'slowdown']
[u'feder', u'govt', u'provid', u'broadband', u'price', u'pariti']
[u'feder', u'seek', u'histori', u'indian', u'well']
[u'ferri', u'master', u'contest', u'death', u'charg']
[u'home', u'buyer', u'grant', u'doubl']
[u'flood', u'forc', u'mine', u'product', u'estim']
[u'chang', u'oner', u'say', u'opposit']
[u'foreign', u'mozzi', u'unlik', u'spread', u'mainland']
[u'navi', u'offic', u'face', u'terror', u'charg']
[u'fraser', u'throw', u'cossi', u'ring', u'elect']
[u'frustrat', u'mount', u'food', u'label', u'roll']
[u'fund', u'boost', u'rural', u'mental', u'health', u'project']
[u'futur', u'bass', u'coast', u'shire', u'farm']
[u'garuda', u'defend', u'safeti', u'record', u'dead', u'plane']
[u'garuda', u'plane', u'crash', u'caus', u'unknown']
[u'leak', u'drama', u'leav', u'south', u'african', u'unfaz']
[u'gilchrist', u'back', u'bowler', u'bounc']
[u'govt', u'consid', u'extend', u'patel', u'compo']
[u'govt', u'consid', u'help', u'terri', u'hick', u'attend', u'son']
[u'govt', u'urg', u'boost', u'region', u'obstetr', u'servic']
[u'govt', u'urg', u'help', u'revamp', u'gocup']
[u'gowri', u'mountain', u'estat', u'wineri', u'sell', u'auction']
[u'guantanamo', u'condit', u'adequ', u'mccallum']
[u'health', u'advisori', u'council', u'get', u'chairman']
[u'help', u'offer', u'famili', u'australian', u'miss']
[u'henri', u'face', u'spell', u'sidelin']
[u'hick', u'court', u'week']
[u'high', u'power', u'price']
[u'infect', u'dental', u'worker', u'spark', u'health', u'scare']
[u'homeown', u'feel', u'pinch', u'rate', u'hike']
[u'hope', u'italian', u'endang', u'potoroo']
[u'hospit', u'chief', u'highlight', u'challeng']
[u'iaea', u'ratifi', u'cut', u'iran', u'nuclear', u'fear']
[u'ice', u'vovo']
[u'iemma', u'vow', u'provid', u'greater', u'protect', u'women']
[u'india', u'yuvraj', u'want', u'lend', u'finish', u'touch']
[u'indonesia', u'plane', u'crash', u'caus', u'unknown']
[u'inmat', u'live', u'self', u'contain', u'unit']
[u'inquiri', u'fail', u'uncov', u'aborigin', u'paedophil']
[u'investig', u'continu', u'illeg']
[u'irrig', u'fear', u'resourc', u'plan', u'feder']
[u'isra', u'troop', u'arrest', u'palestinian', u'raid']
[u'japanes', u'research', u'unveil', u'medic', u'mini', u'robot']
[u'japan', u'north', u'korea', u'hold', u'normalis', u'talk']
[u'juri', u'begin', u'deliber', u'patton', u'murder', u'trial']
[u'juri', u'retir', u'patton', u'murder', u'trial']
[u'kimberley', u'polic', u'mandatori', u'report', u'child']
[u'labor', u'mislead']
[u'lake', u'eildon', u'sale', u'profit', u'drought']
[u'lake', u'eyr', u'flood', u'attract', u'yacht', u'club']
[u'liber', u'tip', u'polic', u'raid']
[u'lion', u'star', u'play', u'geelong', u'matthew']
[u'lismor', u'council', u'continu', u'greenhous', u'reduct']
[u'lobato', u'jail', u'aid', u'militia']
[u'lopsid', u'media', u'view', u'burk', u'affair']
[u'lower', u'water', u'pressur', u'upset', u'carnarvon', u'banana', u'grower']
[u'luca', u'hear', u'bruce', u'highway', u'flood', u'worri']
[u'malle', u'centrelink', u'servic', u'return']
[u'get', u'day', u'jail', u'possess', u'rocket']
[u'face', u'court', u'accus', u'bomb', u'hoax']
[u'maradona', u'target', u'argentin', u'inquiri']
[u'market', u'help', u'lure', u'foreign', u'tourist']
[u'matthew', u'mcconaughey', u'surfer', u'dude']
[u'mayor', u'welcom', u'work', u'dead', u'intersect', u'black']
[u'mccallum', u'speech', u'sydney', u'institut']
[u'industri', u'urg', u'govt', u'back']
[u'mishap', u'prompt', u'safer', u'boat', u'harbour']
[u'mooney', u'pledg', u'support', u'victorian', u'reserv']
[u'foreign', u'visitor', u'head', u'north', u'coast']
[u'hunter', u'home', u'owner', u'renov']
[u'motel', u'urg', u'prostitut', u'law', u'rethink']
[u'mundin', u'soliman']
[u'navi', u'frigat', u'aid', u'yacht', u'rescu']
[u'beach', u'develop', u'launch']
[u'sexual', u'assault', u'alleg', u'clark']
[u'evid', u'charg', u'patel', u'colleagu']
[u'paceman', u'lose', u'feel']
[u'opposit', u'promis', u'hour', u'picton', u'polic', u'station']
[u'opposit', u'promis', u'bermagui', u'fish', u'cooper']
[u'opposit', u'say', u'dept', u'complaint', u'handl', u'fix']
[u'opposit', u'probe', u'hospit', u'unit', u'closur']
[u'paladin', u'say', u'kill', u'plane', u'crash']
[u'patton', u'murder', u'trial', u'juri', u'reach', u'verdict']
[u'petrol', u'price', u'hike', u'prompt', u'probe']
[u'pierc', u'brosnan', u'join', u'mamma']
[u'pietersen', u'readi', u'spin']
[u'pilot', u'blame', u'huge', u'gust', u'wind', u'indon', u'plane']
[u'plant', u'pest', u'trigger', u'north', u'environment']
[u'releas', u'person', u'yogyakarta', u'recoveri']
[u'polic', u'defend', u'shoot', u'cattl', u'highway']
[u'polic', u'investig', u'stalk', u'assault', u'claim']
[u'polic', u'investig', u'suspect', u'murder', u'knive']
[u'polic', u'charg', u'drug', u'raid']
[u'polic', u'plan', u'west', u'counter', u'terror', u'train']
[u'polic', u'suspect', u'mother', u'babi', u'leav', u'toilet']
[u'polic', u'unveil', u'swim', u'champ', u'secur']
[u'polit', u'stoush', u'underway', u'newcastl']
[u'pothol', u'forc', u'lower', u'highway', u'speed', u'limit']
[u'pratt', u'aliv', u'indian', u'well']
[u'pretorius', u'start', u'super', u'showdown']
[u'public', u'convent', u'futur']
[u'public', u'school', u'urg', u'improv', u'imag']
[u'rain', u'bring', u'livestock', u'western', u'graze', u'land']
[u'rare', u'butterfli', u'spot']
[u'region', u'warn', u'loom', u'fuel', u'price', u'rise']
[u'rescu', u'chopper', u'busier', u'usual']
[u'retail', u'group', u'urg', u'rate', u'increas']
[u'review', u'find', u'domest', u'violenc', u'law', u'outdat']
[u'review', u'recommend', u'overhaul', u'indigen', u'hous']
[u'rezon', u'fear', u'otway', u'farmland']
[u'rfds', u'support', u'help', u'rais', u'plan']
[u'rischitelli', u'futur', u'australian', u'say', u'matthew']
[u'robe', u'council', u'nomin', u'close']
[u'investig', u'veteran', u'home', u'care', u'servic']
[u'rudd', u'stand', u'support', u'flynn', u'candid']
[u'scientist', u'asteroid', u'solar', u'power']
[u'secur', u'boost', u'rockhampton']
[u'secur', u'guard', u'lose', u'bash', u'sentenc', u'appeal']
[u'take', u'hospit', u'crash']
[u'small', u'earthquak', u'strike', u'victoria']
[u'snowi', u'water', u'storag', u'level', u'drop']
[u'specialist', u'arriv', u'help', u'garuda', u'plane', u'victim']
[u'sperm', u'whale', u'free', u'danger']
[u'studi', u'test', u'town', u'qualiti']
[u'sumatra', u'quak', u'death', u'toll', u'rise']
[u'suprem', u'court', u'tripl', u'home', u'invad', u'jail', u'time']
[u'switkowski', u'say', u'rush', u'green', u'effort', u'pointless']
[u'sydney', u'airport', u'breach', u'flight', u'restrict', u'labor']
[u'sydney', u'shanghai', u'triumph', u'aussi', u'club']
[u'tasmanian', u'surviv', u'indonesian', u'plane', u'crash']
[u'teen', u'die', u'bundaberg', u'road', u'crash']
[u'thurston', u'muster', u'cowboy']
[u'tiger', u'build', u'solid', u'total']
[u'tiger', u'look', u'past']
[u'tiger', u'bright', u'start']
[u'tomkin', u'boat', u'ginn']
[u'toodyay', u'farmer', u'seek', u'compo']
[u'toyota', u'recal']
[u'tribut', u'flow', u'indonesia', u'crash', u'victim']
[u'arrest', u'bodi', u'part', u'sale', u'scandal']
[u'week', u'babi', u'die', u'crash', u'injuri']
[u'union', u'appeal', u'transport', u'help', u'auspin']
[u'unit', u'confid', u'loss', u'burn']
[u'unit', u'upbeat', u'despit', u'open', u'defeat']
[u'outback', u'holiday', u'packag']
[u'venu', u'hurley', u'wed', u'parti', u'demolish']
[u'volunt', u'firefight', u'hit', u'manag']
[u'communiti', u'alert', u'cyclon', u'approach']
[u'communiti', u'remain', u'alert', u'cyclon']
[u'wait', u'continu', u'spong', u'farm', u'permit']
[u'waldron', u'critic', u'govt', u'pole', u'respons']
[u'warrior', u'fight', u'adelaid']
[u'warrior', u'lose', u'earli', u'wicket', u'dismiss']
[u'water', u'tank', u'demand', u'keep', u'townsvill', u'busi', u'busi']
[u'water', u'truck', u'euroa', u'violet', u'town']
[u'wellington', u'resid', u'resort', u'fear']
[u'western', u'divis', u'council', u'join', u'countri', u'week']
[u'whale', u'remain', u'strand', u'harbour']
[u'garuda']
[u'wild', u'hop', u'book', u'rais', u'indigen', u'violenc']
[u'woman', u'charg', u'search', u'find', u'miss']
[u'woman', u'get', u'year', u'anim', u'ownership']
[u'xstrata', u'record', u'thermal', u'coal', u'profit', u'slump']
[u'ymca', u'reopen', u'rain', u'damag']
[u'young', u'farmer', u'brainstorm', u'break', u'hill']
[u'youth', u'homeless', u'inquiri', u'look', u'long', u'term']
[u'zinifex', u'worker', u'burn', u'smelter', u'mishap']
[u'abandon', u'babi', u'mother', u'believ']
[u'aborigin', u'job', u'mine', u'deal']
[u'adventur', u'short', u'work', u'everest']
[u'african', u'plane', u'crash', u'kill', u'australian']
[u'airlin', u'face', u'pilot', u'shortag', u'trainer']
[u'alic', u'spring', u'polic', u'plan', u'phone', u'updat']
[u'amphetamin', u'cash', u'seiz', u'orang', u'drug', u'raid']
[u'amundsen', u'grant', u'adjourn', u'prepar', u'bail']
[u'anglicar', u'hop', u'inquiri', u'prove', u'solut']
[u'aurora', u'deni', u'privatis', u'rumour']
[u'auspin', u'deal', u'impact', u'smaller', u'job']
[u'aust', u'market', u'end', u'volatil', u'week', u'flat']
[u'australian', u'open', u'schedul']
[u'aust', u'scientist', u'discov', u'malaria', u'treatment']
[u'aust', u'survivor', u'tell', u'plane', u'crash', u'ordeal']
[u'bangladesh', u'ban', u'polit', u'activ']
[u'beef', u'produc', u'introduc', u'meat', u'qualiti', u'base']
[u'public', u'meet', u'support', u'lourd', u'hospit', u'revamp']
[u'bowen', u'enjoy', u'growth']
[u'bridgeston', u'worker', u'plan', u'strike', u'action']
[u'british', u'inquest', u'launch', u'childer', u'hostel', u'blaze']
[u'brumbi', u'record', u'strong', u'stormer']
[u'bullet', u'clinch', u'titl']
[u'bull', u'crumbl', u'gabba']
[u'bull', u'achiev', u'target']
[u'bushfir', u'threaten', u'perth', u'hill', u'home']
[u'candid', u'ballot', u'paper', u'spot', u'finalis']
[u'candid', u'outlin', u'polic', u'plan']
[u'captain', u'america', u'get']
[u'cart', u'water', u'demand', u'expect']
[u'get', u'child', u'size', u'pacemak']
[u'centrelink', u'flood', u'drought', u'assist']
[u'clare', u'secur', u'aust', u'open', u'squash', u'event']
[u'closer']
[u'coach', u'drop', u'hint', u'henri', u'retir']
[u'coalit', u'promis', u'improv', u'hospit', u'patient']
[u'communiti', u'group', u'warn', u'croc', u'threat']
[u'conservationist', u'use', u'wine', u'bottl', u'build', u'energi']
[u'corpor', u'urg', u'prioritis', u'rail', u'tunnel']
[u'costello', u'pay', u'tribut', u'chairman']
[u'council', u'put', u'owner', u'fail', u'rego']
[u'council', u'seek', u'particip', u'avoca', u'water', u'talk']
[u'council', u'urg', u'know', u'local', u'industri']
[u'court', u'jail', u'assault']
[u'court', u'lengthen', u'jail', u'term', u'home', u'invas', u'hammer']
[u'court', u'quash', u'man', u'convict', u'murder']
[u'crash', u'flight', u'record', u'send', u'australia']
[u'crew', u'struggl', u'contain', u'king', u'blaze']
[u'crow', u'issu', u'warn', u'west', u'coast']
[u'cyclon', u'claim', u'live', u'site']
[u'deal', u'guarante', u'job', u'exchang', u'mine', u'right']
[u'debnam', u'howard', u'stand', u'shoulder', u'shoulder']
[u'democrat', u'troop', u'withdraw', u'date']
[u'develop', u'warn', u'flout', u'rule']
[u'dougla', u'shire', u'councillor', u'save', u'sack']
[u'dreamwork', u'tintin', u'movi']
[u'dubbo', u'woman', u'chase', u'intrud', u'hous']
[u'undo']
[u'energi', u'firm', u'consid', u'option']
[u'european', u'rate', u'rise', u'bode', u'aust', u'analyst']
[u'summit', u'adopt', u'energi', u'climat', u'strategi']
[u'fan', u'fork', u'chat', u'jackson']
[u'farmer', u'flock', u'annual', u'wagin', u'woolarama']
[u'vietnam', u'vet', u'museum', u'open', u'aust']
[u'chairman', u'evan', u'die']
[u'central', u'west', u'manag', u'die', u'african']
[u'policeman', u'guilti', u'imperson', u'offic']
[u'garuda', u'black', u'box', u'reveal', u'crash', u'caus', u'day']
[u'garuda', u'crash', u'flight', u'record', u'arriv', u'australia']
[u'gate', u'continu', u'lead', u'world', u'rich', u'list']
[u'gavaskar', u'revel', u'australia', u'miseri']
[u'gear', u'name', u'best', u'game']
[u'georgia', u'boost', u'iraq', u'troop', u'commit']
[u'gold', u'coast', u'mayor', u'urg', u'council', u'unit']
[u'govern', u'welcom', u'accommod', u'boom']
[u'govt', u'attack', u'thomson', u'shock', u'resign']
[u'govt', u'deni', u'delay', u'transport', u'emerg', u'good']
[u'govt', u'pay', u'night', u'patrol', u'train']
[u'govt', u'reject', u'critic', u'health', u'mishap']
[u'govt', u'environ', u'polici', u'vision', u'opposit']
[u'govt', u'work', u'lake', u'mokoan', u'decommiss', u'detail']
[u'grant', u'boost', u'riverland', u'care', u'servic']
[u'grazier', u'warn', u'watch', u'wast', u'diseas']
[u'group', u'fear', u'environment', u'impact', u'revis']
[u'group', u'fear', u'servic', u'debnam', u'mega', u'dept']
[u'group', u'say', u'abalon', u'quota', u'forc', u'peopl']
[u'group', u'step', u'fight', u'stop', u'cane', u'toad', u'spread']
[u'guilti', u'verdict', u'bring', u'closur', u'say', u'patton']
[u'halliday', u'take', u'row', u'gold', u'nation', u'titl']
[u'hear', u'continu', u'alic', u'spring', u'applic']
[u'hewitt', u'mind', u'feder', u'clash']
[u'highland', u'ensur', u'red', u'stay', u'cellar']
[u'hobart', u'apec', u'forum', u'end', u'incid']
[u'hospit', u'healer', u'aborigin', u'communiti']
[u'howard', u'worri']
[u'indigen', u'tourism', u'scheme', u'look', u'boost', u'job']
[u'indon', u'offici', u'crash', u'victim', u'identifi']
[u'intellectu', u'properti', u'strategist', u'win', u'leadership']
[u'irc', u'tristar', u'investig', u'continu']
[u'japan', u'consid', u'stronger', u'canola', u'import', u'inspect']
[u'katherin', u'darwin', u'rail', u'line', u'reopen']
[u'labor', u'action', u'stop', u'japanes', u'whale']
[u'labor', u'mull', u'help', u'battler', u'hous']
[u'labor', u'vow', u'build', u'goulburn', u'water', u'pipelin']
[u'lapierr', u'crash', u'long', u'jump']
[u'level', u'water', u'restrict', u'brisban']
[u'local', u'govt', u'group', u'look', u'boost', u'profil']
[u'long', u'jumper', u'thompson', u'admit', u'best']
[u'lovett', u'fin', u'intervent', u'order', u'breach']
[u'flow', u'reduc', u'maffra', u'water', u'threat']
[u'luca', u'defend', u'bruce', u'highway', u'flood', u'proof', u'effort']
[u'machineri', u'field', u'day', u'record', u'strong', u'sale']
[u'centr', u'north', u'riot', u'face', u'assault']
[u'convict', u'kill', u'father', u'drunken']
[u'agn', u'water']
[u'injur', u'construct', u'site']
[u'jail', u'year', u'bike', u'path', u'assault']
[u'kill', u'cotton', u'more']
[u'lose', u'appeal', u'sentenc', u'girlfriend']
[u'mclellan', u'look', u'sprint', u'record', u'book']
[u'mcneill', u'guilti', u'patton', u'murder']
[u'mcneill', u'lawyer', u'consid', u'appeal', u'guilti', u'verdict']
[u'miner', u'mourn', u'loss', u'execut', u'plane', u'crash']
[u'stay', u'close', u'week', u'accid']
[u'mine', u'compani', u'seek', u'investig', u'malawi']
[u'mine', u'inner', u'citi', u'worker', u'aussi', u'wage', u'list']
[u'minist', u'rule', u'superpip', u'compo']
[u'minut', u'silenc', u'chairman']
[u'mossman', u'argument', u'continu']
[u'despit', u'probe', u'abbott']
[u'want', u'pinnaroo', u'loxton', u'road', u'revamp']
[u'murder', u'drug', u'campaign', u'hit', u'grassbi']
[u'museum', u'volunt', u'lament', u'communiti', u'curat', u'ax']
[u'netherland', u'kenya', u'scare']
[u'orlean', u'site', u'disney', u'film']
[u'govt', u'neglect', u'school', u'hazzard']
[u'govt', u'probe', u'southern', u'morgu', u'storag', u'claim']
[u'opportun', u'wind', u'victorian', u'energi']
[u'farm', u'claim', u'crab', u'breed', u'success']
[u'flood', u'bring', u'clean']
[u'offici', u'play', u'fear', u'apec', u'disrupt']
[u'paladin', u'mourn', u'loss', u'execut', u'malawi', u'crash']
[u'rise', u'hospit', u'employe']
[u'peel', u'fastest', u'grow', u'region']
[u'perth', u'jail', u'connect', u'polic', u'chase']
[u'plantat', u'forestri', u'industri', u'reject', u'saff', u'water']
[u'pledg', u'extra', u'fund', u'cyclon', u'georg', u'victim']
[u'polic', u'call', u'council', u'meet']
[u'polic', u'charg', u'pair', u'pursuit']
[u'polic', u'diver', u'join', u'search', u'miss', u'tourist']
[u'polic', u'offic', u'guilti', u'assault', u'sick', u'leav']
[u'polic', u'offic', u'name', u'woman', u'year']
[u'polic', u'widen', u'investig', u'trucki']
[u'port', u'piri', u'flood', u'damag', u'top']
[u'possibl', u'death', u'cyclon']
[u'plater', u'record', u'blood', u'alcohol', u'read']
[u'public', u'ralli', u'urg', u'hospit', u'upgrad', u'start']
[u'public', u'sector', u'union', u'affili']
[u'nation', u'senat', u'threaten', u'block', u'govt']
[u'unveil', u'level', u'water', u'restrict']
[u'railway', u'sign', u'hop', u'reduc', u'fatal']
[u'rain', u'fall', u'catchment']
[u'record', u'shortag', u'rental', u'vacanc', u'sydney']
[u'refus', u'accept', u'drought', u'assist']
[u'repair', u'work', u'begin', u'rain', u'damag', u'race', u'track']
[u'research', u'discov', u'speci', u'taipan']
[u'research', u'find', u'rural', u'cancer', u'care', u'inferior']
[u'resid', u'anger', u'kulangoor', u'dump', u'plan']
[u'resid', u'opposit', u'meatwork', u'expans']
[u'robe', u'council', u'vacanc', u'fill']
[u'rudd', u'say', u'thomson', u'resign', u'inevit']
[u'magistr', u'suppress', u'teen', u'murder', u'court', u'file']
[u'move', u'closer', u'abolish', u'singl', u'desk', u'barley']
[u'school', u'princip', u'disciplin', u'union']
[u'second', u'teen', u'charg', u'attempt', u'arm', u'robberi']
[u'senior', u'ministeri', u'staff', u'resign', u'wake']
[u'sevilla', u'hold', u'newcastl', u'thump', u'alkmaar', u'uefa']
[u'attack', u'victim', u'offer', u'free', u'counsel']
[u'shadow', u'attorney', u'general', u'quit', u'labor', u'frontbench']
[u'shevchenko', u'deni', u'make', u'mourinho', u'comment']
[u'shevchenko', u'reveal', u'strain', u'relationship']
[u'shire', u'plan', u'green', u'power']
[u'snake', u'bite', u'warn']
[u'snowi', u'region', u'renew', u'energi']
[u'soar', u'temperatur', u'lead', u'record', u'power']
[u'sonni', u'give', u'dog']
[u'spider', u'spark', u'forest', u'manag', u'rethink']
[u'spot', u'fire', u'troubl', u'king', u'island', u'crew']
[u'state', u'govt', u'urg', u'follow', u'lead', u'steal']
[u'steffensen', u'brisban', u'meet']
[u'steffensen', u'scratch', u'make', u'wroe', u'favourit']
[u'strong', u'show', u'cooma']
[u'tafe', u'cours', u'aim', u'help', u'indigen', u'peopl']
[u'tarnish', u'legaci']
[u'fish', u'farm', u'join', u'fight', u'save', u'beach', u'whale']
[u'task', u'forc', u'lobbi', u'flood', u'fund']
[u'teenag', u'girl', u'plead', u'guilti', u'friend', u'murder']
[u'teenag', u'face', u'month', u'detent', u'high', u'speed']
[u'tharwa', u'bridg', u'plan', u'blow', u'million', u'opposit']
[u'warehous', u'return', u'profit']
[u'thomson', u'resign']
[u'thomson', u'resign', u'frontbench', u'mokbel']
[u'thousand', u'boil', u'water', u'vic', u'south', u'west']
[u'report', u'dead', u'cyclon']
[u'tiger', u'blue', u'rope']
[u'tiger', u'leav', u'blue', u'shred']
[u'tiger', u'look', u'level', u'seri']
[u'tori', u'sack', u'racism']
[u'toughest', u'water', u'restrict', u'loom']
[u'tourism', u'subdivis', u'hold']
[u'train', u'vandal', u'put', u'dampen', u'pittsworth']
[u'tristar', u'challeng', u'commiss', u'review']
[u'confirm', u'dead', u'cyclon', u'hit', u'site']
[u'whale', u'free', u'remain', u'harbour']
[u'union', u'want', u'inspector', u'number', u'doubl']
[u'author', u'investig', u'possibl', u'rice', u'crop']
[u'beef', u'enter', u'south', u'korean', u'market']
[u'govt', u'announc', u'drought', u'support', u'south', u'west']
[u'taxpay', u'foot', u'celebr', u'race']
[u'violent', u'protest', u'greet', u'bush', u'brazil']
[u'cyclon', u'caus', u'injuri', u'possibl', u'death']
[u'warm', u'haven', u'drug', u'cheat']
[u'warrior', u'claim', u'inning', u'point']
[u'warrior', u'steadi', u'chase']
[u'chief', u'lash', u'darchinyan', u'mismatch']
[u'whale', u'free', u'mass', u'strand']
[u'william', u'sign', u'dog']
[u'woman', u'charg', u'poison', u'drink', u'incid']
[u'woman', u'hunger', u'strike', u'caravan', u'park', u'condit']
[u'woman', u'treat', u'burn', u'injuri', u'hous']
[u'woodsid', u'urg', u'consid', u'industri']
[u'wool', u'market', u'lift', u'seri', u'loss']
[u'work', u'resum', u'zinifex', u'smelter']
[u'world', u'damag', u'india']
[u'yacht', u'safe', u'port', u'hull', u'repair', u'ordeal']
[u'dead', u'injur', u'polic', u'chase']
[u'dead', u'injur', u'road', u'accid']
[u'actew', u'challeng', u'canberran', u'water']
[u'actress', u'winslet', u'win', u'damag', u'diet', u'stori']
[u'anzac', u'prepar', u'gallipoli']
[u'arsenal', u'lose', u'henri', u'season']
[u'australia', u'cruis', u'past', u'england']
[u'australian']
[u'aust', u'survivor', u'tell', u'plane', u'crash', u'ordeal']
[u'aust', u'victim', u'garuda', u'crash', u'formal', u'identifi']
[u'bali', u'bomb', u'accus', u'face', u'guantanamo', u'hear']
[u'barn', u'join', u'red', u'casualti', u'ward']
[u'barnett', u'appeal', u'british', u'return']
[u'beatti', u'announc', u'boost', u'water', u'save']
[u'beatti', u'urg', u'oper', u'water']
[u'begg', u'smith', u'win', u'silver', u'itali']
[u'black', u'cap', u'earn', u'moral', u'booster']
[u'black', u'hawk', u'recoveri', u'mission', u'continu']
[u'blue', u'build', u'lead', u'tiger']
[u'blue', u'fight', u'beller']
[u'brawl', u'drink', u'drive', u'arrest', u'busi', u'night']
[u'brown', u'preseason', u'comeback']
[u'bull', u'bushrang', u'final', u'hop']
[u'bushrang', u'reel', u'gabba']
[u'call', u'phase', u'stick', u'chemic']
[u'accid', u'claim', u'live', u'road']
[u'carlton', u'book', u'preseason', u'final', u'date', u'lion']
[u'carpent', u'assess', u'cyclon', u'damag']
[u'carpent', u'inspect', u'cyclon', u'damag']
[u'carpent', u'open']
[u'caution', u'urg', u'base', u'invest', u'offer']
[u'closer']
[u'closer']
[u'coalit', u'promis', u'support', u'teacher']
[u'condit', u'test', u'crew', u'king', u'island']
[u'coupl', u'leav', u'adelaid', u'perth', u'tandem', u'trike']
[u'craig', u'impress', u'alic', u'despit', u'loss']
[u'craig', u'newitt', u'interview']
[u'crash', u'car', u'explod', u'yard', u'alleg']
[u'cyclon', u'batter', u'communiti', u'brace', u'wild']
[u'cyclon', u'georg', u'move', u'inland', u'jacob', u'menac', u'coast']
[u'injur', u'perth', u'crash']
[u'english', u'club', u'avoid', u'champ', u'draw']
[u'welcom', u'climat', u'deal']
[u'leader', u'clinch', u'landmark', u'climat', u'deal']
[u'leader', u'sign', u'climat', u'deal']
[u'explos', u'rock', u'baghdad', u'meet']
[u'feder', u'roddick', u'criticis', u'round', u'robin']
[u'fighter', u'plan', u'sky', u'memori']
[u'forc', u'home', u'game', u'thriller']
[u'forest', u'contractor', u'govt', u'assist']
[u'fourth', u'strand', u'whale', u'make', u'escap', u'freedom']
[u'fulton', u'join', u'kiwi', u'casualti', u'list']
[u'gallop', u'call', u'corrupt', u'watchdog', u'monitor']
[u'leak', u'forc', u'resid', u'evacu', u'western']
[u'german', u'chainsaw', u'hous', u'divorc', u'split']
[u'ginn', u'tomkin', u'foursom']
[u'girl', u'die', u'snake', u'bite']
[u'green', u'announc', u'prefer', u'plan']
[u'guccion', u'slip', u'indian', u'well']
[u'hick', u'court', u'date', u'delay']
[u'howlett', u'join', u'roff', u'blue', u'tame', u'lion']
[u'hurley', u'nayar', u'knot', u'lavish', u'hindu', u'ceremoni']
[u'india', u'crush', u'west', u'indi', u'wicket']
[u'indigen', u'child', u'abus', u'problem']
[u'indonesian', u'charg', u'aid', u'illeg', u'aust', u'entri']
[u'investig', u'begin', u'fatal', u'polic', u'chase']
[u'trade', u'news', u'caus', u'mix', u'reaction', u'wall']
[u'kidnap', u'safe', u'ethiopian', u'minist']
[u'labor', u'lack', u'experi', u'judgement', u'aust']
[u'labor', u'promis', u'boost', u'polic', u'power', u'fund']
[u'labor', u'support', u'independ', u'sneaki', u'strategi']
[u'lara', u'eye', u'test', u'career']
[u'leak', u'letter', u'point', u'futur', u'doctor', u'staff']
[u'leaney', u'snatch', u'tampa', u'lead']
[u'lion', u'roar', u'preseason', u'final']
[u'lobbi', u'group', u'say', u'govt', u'ask', u'hickss', u'return']
[u'mayor', u'candid', u'wont', u'affect', u'labor', u'perform']
[u'mclellan', u'question', u'fit']
[u'mcneill', u'appeal', u'patton', u'murder', u'convict']
[u'mcneill', u'appeal', u'patton', u'murder', u'decis']
[u'mcneill', u'support', u'famili', u'patton']
[u'mcneil', u'appeal', u'murder', u'convict']
[u'melbourn', u'main', u'reach', u'record']
[u'charg', u'boatload', u'lankan', u'asylum']
[u'mick', u'price', u'interview']
[u'mourinho', u'aim', u'play', u'terri', u'spur']
[u'case', u'highest', u'number', u'year']
[u'north', u'west', u'clean', u'cyclon', u'georg']
[u'lib', u'livid', u'green', u'prefer', u'deal']
[u'open', u'black', u'cap', u'control']
[u'outback', u'south', u'australian', u'recent']
[u'parent', u'graffiti', u'clean', u'debnam']
[u'pilbara', u'prepar', u'second', u'sever', u'cyclon']
[u'pilbara', u'resid', u'brace', u'cyclon', u'jacob']
[u'pilot', u'daughter', u'surviv', u'light', u'plane', u'crash']
[u'polic', u'investig', u'drown']
[u'polic', u'search', u'fatal', u'pursuit', u'wit']
[u'pompeii', u'ruler', u'take', u'australian']
[u'pont', u'sing', u'bowler', u'prais']
[u'project', u'launch', u'address', u'indigen', u'shortag']
[u'ramo', u'horta', u'group', u'contest', u'timor', u'presid']
[u'redback', u'build', u'solid', u'lead']
[u'redback', u'steadi', u'second']
[u'redback', u'lead', u'second']
[u'rehab', u'centr', u'sue', u'courtney', u'love', u'unpaid']
[u'research', u'point', u'apprenticeship', u'spot']
[u'ricki', u'pont', u'interview']
[u'rossi', u'pip', u'stoner', u'pole', u'qatar']
[u'rural', u'cancer', u'patient', u'accommod', u'subsidi']
[u'saddam', u'judg', u'seek', u'asylum', u'jazeera']
[u'second', u'cyclon', u'threaten', u'communiti']
[u'sizzl', u'ross', u'burn', u'track']
[u'south', u'africa', u'stumbl', u'unfit', u'pitch']
[u'spencer', u'hope', u'doha', u'talk', u'reviv']
[u'steffensen', u'scratch', u'make', u'wroe', u'favourit']
[u'struggl', u'waratah', u'bull']
[u'tait', u'impact', u'pont']
[u'tariff', u'reduct', u'wont', u'help', u'aust', u'industri']
[u'taronga', u'park', u'improv', u'water', u'recycl']
[u'crew', u'hope', u'contain', u'king', u'island']
[u'whale', u'rescu', u'mass', u'strand']
[u'thomson', u'resign', u'hurt', u'labor', u'campaign']
[u'thorn', u'defi', u'tiger']
[u'thousand', u'converg', u'canberra', u'pray', u'rain']
[u'guantanamo', u'suspect', u'face', u'hear']
[u'tristar', u'consid', u'legal', u'action', u'block']
[u'truck', u'driver', u'kill', u'crash', u'freight']
[u'tuqiri', u'leagu', u'return', u'like', u'report']
[u'unionist', u'parti', u'sinn', u'fein', u'urg', u'creat', u'power']
[u'begin', u'militari', u'hear', u'alleg', u'terrorist']
[u'brazil', u'sign', u'ethanol', u'deal']
[u'iran', u'present', u'iraq', u'meet']
[u'vaughan', u'put', u'faith', u'monti']
[u'victori', u'bullet', u'celebr', u'fan']
[u'victori', u'lose', u'fred']
[u'prepar', u'second', u'sever', u'cyclon']
[u'resid', u'brace', u'cyclon', u'jacob']
[u'weather', u'condit', u'like', u'hamper', u'whale', u'rescu']
[u'wembley', u'stadium', u'reconstruct', u'complet']
[u'hall', u'drown', u'caribbean', u'holiday']
[u'wildlif', u'author', u'remain', u'optimist']
[u'windi', u'seek', u'earli', u'home', u'advantag']
[u'woman', u'report', u'steal', u'cannabi', u'offic', u'delight']
[u'worker', u'evacu', u'cyclon']
[u'world', u'oldest', u'person', u'die', u'salvador']
[u'youni', u'buri', u'pitch', u'fear', u'shape', u'pakistan']
[u'kill', u'china', u'flood']
[u'dead', u'accid']
[u'abbott', u'rule', u'chang', u'blood', u'donor', u'rule']
[u'adelaid', u'hill', u'fire', u'deliber']
[u'alga', u'warn', u'issu', u'lake', u'burley', u'griffin']
[u'angela', u'webber', u'die', u'age']
[u'alpin', u'athlet', u'rise', u'occas']
[u'autopsi', u'hop', u'determin', u'possibl', u'link']
[u'baghdad', u'bomb', u'kill', u'score']
[u'baghdad', u'bomb', u'kill', u'peac', u'talk']
[u'barr', u'propos', u'school', u'gungahlin']
[u'beatti', u'accus', u'lord', u'mayor', u'grandstand']
[u'blackout', u'hit', u'thousand', u'sydney', u'home']
[u'bodi', u'crash', u'victim', u'home', u'wednesday', u'downer']
[u'bodi', u'garuda', u'crash', u'victim', u'return', u'home']
[u'budget', u'reflect', u'difficult', u'situat', u'costello']
[u'burgo', u'battl', u'brain', u'surgeri']
[u'bush', u'send', u'iraq', u'budget', u'request', u'congress']
[u'calcavecchia', u'lead', u'leaney', u'slip']
[u'canberran', u'warn', u'onlin', u'busi', u'oper']
[u'canberra', u'celebr', u'birthday']
[u'child', u'abus', u'campaign', u'call', u'laundri', u'slave']
[u'choke', u'cloud', u'irish', u'triumph']
[u'closer']
[u'closer']
[u'combet', u'deni', u'plan', u'thomson', u'place', u'seat']
[u'concern', u'rais', u'sleep', u'pill', u'bizarr']
[u'concern', u'rais', u'sleep', u'pill', u'effect']
[u'corrigan', u'spring', u'upset']
[u'council', u'busi', u'abl', u'bore', u'water']
[u'crawford', u'book', u'hawk', u'loss']
[u'crew', u'contain', u'perth', u'bushfir']
[u'cyclon', u'georg', u'claim', u'second', u'life']
[u'cyclon', u'jacob', u'approach']
[u'devast', u'henri', u'vow', u'come', u'better']
[u'downer', u'costello', u'continu', u'thomson', u'attack']
[u'downer', u'dirti', u'attack', u'unnecessari', u'opposit']
[u'beatti', u'rule', u'mayor', u'challeng']
[u'electr', u'problem', u'continu', u'follow', u'friday']
[u'farmer', u'welcom', u'water', u'grant']
[u'feder', u'govt', u'refus', u'eas', u'restrict', u'blood']
[u'figur', u'high', u'drop', u'rate', u'polic']
[u'fund', u'boost', u'disabl', u'care']
[u'garuda', u'crash', u'victim', u'bodi', u'home', u'wednesday']
[u'govt', u'reach', u'low', u'rudd', u'attack', u'opposit']
[u'green', u'deni', u'prefer', u'deal', u'campaign', u'launch']
[u'hang', u'glider', u'crash', u'victim', u'good', u'spirit']
[u'howard', u'offer', u'armi', u'help', u'cyclon', u'affect']
[u'howard', u'sign', u'secur', u'agreement', u'japanes']
[u'howe', u'confirm', u'osaka', u'berth']
[u'ibrahim', u'signal', u'readi', u'return', u'malaysian']
[u'form', u'watson', u'push', u'order']
[u'investig', u'comment', u'garuda', u'black']
[u'iran', u'odd', u'iraq', u'violenc']
[u'iraq', u'beg', u'neighbour', u'help', u'halt', u'fight']
[u'iraqi', u'court', u'deni', u'saddam', u'judg', u'flee']
[u'ireland', u'seal', u'tripl', u'crown']
[u'itali', u'stun', u'wale', u'nation']
[u'jacob', u'weaken', u'remain', u'track']
[u'jam', u'brown', u'entomb', u'temporari', u'spot']
[u'judg', u'dismiss', u'blood', u'dope', u'case', u'report']
[u'king', u'island', u'effort', u'hamper', u'underground']
[u'klitschko', u'knock', u'austin', u'retain', u'titl']
[u'labor', u'face', u'critic', u'tafe', u'elect', u'promis']
[u'labor', u'promis', u'tafe', u'fund', u'teacher', u'welcom']
[u'lara', u'confid', u'windi', u'bounc']
[u'lewi', u'familiar', u'territori']
[u'lifesav', u'warn', u'danger', u'condit']
[u'die', u'collid', u'prime', u'mover']
[u'mclellan', u'set', u'hurdl', u'mark']
[u'messi', u'tripl', u'treat', u'rescu', u'barca']
[u'michael', u'jackson', u'wow', u'troop', u'lavish', u'japan']
[u'molik', u'stosur', u'advanc', u'california']
[u'monaro', u'candid', u'stand', u'firm', u'give']
[u'motogp', u'casey', u'stoner', u'valentino', u'rossi']
[u'muslim', u'immigr', u'envelop', u'elect']
[u'cop', u'week', u'strike', u'elsom']
[u'museum', u'open', u'door']
[u'news', u'agenc', u'militari', u'eras']
[u'deal', u'strike', u'green', u'labor']
[u'mirth', u'girth', u'bermuda', u'skipper']
[u'hous', u'minist', u'welcom', u'discuss']
[u'open']
[u'overnight', u'road', u'accid', u'leav', u'dead']
[u'polic', u'wed', u'brawl']
[u'polic', u'continu', u'investig', u'fatal', u'truck']
[u'polic', u'elder', u'man', u'bodi']
[u'policeman', u'kill', u'colleagu', u'delhi', u'bank']
[u'policeman', u'recov', u'hospit', u'rescu']
[u'polic', u'seek', u'parent', u'wander']
[u'polic', u'investig', u'cyclon', u'death']
[u'pollut', u'ralli', u'heat', u'debnam']
[u'premier', u'brack', u'open', u'susi', u'oneil', u'pool']
[u'protest', u'support', u'right', u'propos']
[u'govt', u'defend', u'domest', u'focus', u'level']
[u'report', u'claim', u'violat', u'surveil', u'law']
[u'govt', u'announc', u'independ', u'health']
[u'sampdoria', u'hold', u'cagliari']
[u'second', u'cruis', u'ship', u'dock', u'darwin']
[u'second', u'person', u'die', u'cyclon', u'georg']
[u'secur', u'agreement', u'domin', u'japan', u'visit']
[u'shark', u'unbeaten', u'overpow', u'cheetah']
[u'state', u'road', u'toll', u'hit']
[u'stoner', u'make', u'motogp', u'breakthrough']
[u'stoner', u'stay', u'ground', u'despit', u'maiden']
[u'stop', u'muslim', u'immigr', u'christian', u'democrat']
[u'stop', u'pick', u'struggl', u'sehwag', u'dravid']
[u'studi', u'find', u'older', u'driver', u'patient', u'like']
[u'taliban', u'threaten', u'kill', u'kidnap', u'italian']
[u'teacher', u'call', u'lead', u'obes', u'fight']
[u'teen', u'charg', u'fatal', u'chase']
[u'fatal', u'accid', u'road']
[u'thousand', u'flee', u'fight', u'intensifi', u'lanka']
[u'tiger', u'maul', u'blue', u'host', u'home', u'final']
[u'tiger', u'surg', u'home', u'final']
[u'torren', u'lake', u'reopen', u'alga', u'level', u'plummet']
[u'tribut', u'flow', u'australian', u'kill', u'garuda']
[u'fear', u'drown', u'crash', u'river']
[u'unit', u'snatch', u'replay']
[u'iran', u'discuss', u'iraqi', u'violenc']
[u'victorian', u'rower', u'sweep', u'nation']
[u'walker', u'steal', u'hooker', u'thunder']
[u'warrior', u'season', u'end', u'heartbreak']
[u'warrior', u'struggl', u'final', u'berth']
[u'weather', u'prove', u'hazard', u'whale', u'rescu', u'effort']
[u'whale', u'rescuer', u'film', u'techniqu', u'help']
[u'whale', u'rescuer', u'hope', u'video', u'help']
[u'wildlif', u'team', u'celebr', u'success', u'whale', u'rescu']
[u'woman', u'die', u'stab', u'sydney']
[u'worri', u'waratah', u'tri', u'stay', u'posit']
[u'zambian', u'govt', u'begin', u'mass', u'demolit', u'hous']
[u'climber', u'dead', u'ban', u'volcano']
[u'grain', u'enter', u'wool', u'market', u'purchas']
[u'aborigin', u'corp', u'get', u'replac', u'fund']
[u'govt', u'canberra', u'propaganda']
[u'age', u'care', u'health', u'domin', u'campaign', u'trail']
[u'amundsen', u'call', u'magistr', u'step', u'asid']
[u'invas', u'will', u'short', u'sight']
[u'aquacultur', u'farm', u'propon', u'look', u'offshor']
[u'breath', u'easi', u'tuqiri']
[u'aust', u'drop', u'place', u'global', u'gold', u'product']
[u'aust', u'japan', u'secur', u'pact', u'contain', u'china']
[u'aust', u'market', u'follow', u'wall', u'street', u'lead']
[u'australia', u'trick', u'pont']
[u'australian', u'lucki', u'surviv', u'indonesian', u'plane', u'crash']
[u'australia', u'sign', u'treati', u'japan']
[u'award', u'recognis', u'brave', u'crash', u'rescu']
[u'award', u'recognis', u'brave', u'queensland']
[u'award', u'recognis', u'trio', u'braveri']
[u'baker', u'quit', u'nation', u'independ']
[u'barmah', u'forest', u'cattl', u'remov']
[u'beatti', u'back', u'plan', u'nation', u'doctor', u'regist']
[u'beatti', u'announc', u'water', u'price', u'june', u'budget']
[u'beetl', u'hold', u'mimosa', u'control']
[u'black', u'say', u'green', u'prefer', u'deal']
[u'blair', u'criticis', u'treatment', u'iraq']
[u'blaze', u'uniform', u'reveal', u'soon']
[u'bomb', u'destroy', u'court', u'tell']
[u'die', u'crash', u'near', u'doomadge']
[u'brandi', u'produc', u'welcom', u'import', u'duti', u'decis']
[u'braveri', u'award', u'rescu']
[u'braveri', u'award', u'recognis', u'bull', u'attack', u'rescu']
[u'braveri', u'award', u'recognis', u'yacht', u'rescu', u'effort']
[u'braveri', u'award', u'recognis', u'everyday', u'hero']
[u'breathalys', u'challeng', u'throw']
[u'brimbl', u'wit', u'seek', u'cover', u'legal', u'cost']
[u'burk', u'affair', u'fail', u'hurt', u'labor', u'poll']
[u'bush', u'hunt', u'beaut', u'bloke', u'go', u'nation']
[u'busi', u'chamber', u'hear', u'communiti', u'bank', u'plan']
[u'swim', u'centr', u'communiti', u'group']
[u'crash', u'rescu', u'earn', u'braveri', u'award']
[u'recov', u'murray', u'river', u'doubl']
[u'roll', u'leav', u'hospit']
[u'carrol', u'quit']
[u'cathol', u'church', u'accus', u'ignor', u'laundri', u'slave']
[u'childcar', u'centr', u'asbesto', u'threat', u'remov']
[u'clean', u'fatal', u'level', u'cross', u'crash']
[u'closer']
[u'closer']
[u'closer']
[u'compani', u'promot', u'easi', u'way', u'green']
[u'cosgrov', u'say', u'commonwealth', u'import', u'bloc']
[u'council', u'consid', u'nativ', u'titl', u'land']
[u'council', u'get', u'vandal']
[u'councillor', u'comfort', u'doubl']
[u'councillor', u'meet', u'consid', u'respons']
[u'council', u'move', u'closer', u'wave', u'maker', u'instal']
[u'council', u'govt', u'meet', u'water', u'entitl']
[u'council', u'help', u'campdraft', u'group']
[u'council', u'urg', u'dramat', u'surf', u'warn']
[u'council', u'wont', u'oppos', u'vcat', u'hear', u'phillip']
[u'court', u'challeng', u'bring', u'halt', u'epicentr', u'work']
[u'crawford', u'kelli', u'tribun']
[u'crawford', u'like', u'face', u'dual', u'charg']
[u'csiro', u'scientist', u'call', u'accur', u'model']
[u'success', u'drive', u'inzi']
[u'cyclon', u'death', u'prompt', u'union', u'safeti']
[u'cyclon', u'jacob', u'cross', u'pilbara', u'coast']
[u'cyclon', u'jacob', u'eas']
[u'cyclon', u'jacob', u'lose', u'strength']
[u'cyclon', u'jacob', u'track', u'coast']
[u'cyclon', u'jacob', u'weaken']
[u'debnam', u'challeng', u'iemma', u'second', u'debat']
[u'degrad', u'option']
[u'dozen', u'kill', u'bomb', u'iraq']
[u'driver', u'urg', u'price', u'rise']
[u'drought', u'increas', u'wool', u'price']
[u'dubai', u'airport', u'close', u'hour', u'plane']
[u'earli', u'thaw', u'snowi', u'mountain']
[u'educ', u'review', u'urg', u'program', u'parent']
[u'elect', u'close', u'iemma', u'warn']
[u'elli', u'back', u'tran', u'tasman', u'comp']
[u'wast', u'recycl', u'plan', u'criticis']
[u'experi', u'carlton']
[u'farmer', u'urg', u'prepar', u'soil', u'water']
[u'farmer', u'warn', u'check', u'soil', u'fertilis', u'cost']
[u'farrugia', u'parent', u'upset', u'council', u'plaqu', u'stanc']
[u'fast', u'food', u'outlet', u'ask', u'tran', u'usag']
[u'fear', u'water', u'woe', u'hamper', u'wangaratta', u'busi']
[u'feder', u'suffer', u'shock', u'loss']
[u'govt', u'push', u'nation', u'health', u'registr']
[u'feedlot', u'feel', u'pressur', u'higher', u'grain', u'price']
[u'money']
[u'fiji', u'flood', u'report']
[u'flood', u'affect', u'resid', u'need', u'household', u'good']
[u'fremantl', u'hotel', u'collaps', u'overnight']
[u'french', u'elect']
[u'gallic', u'snare', u'adelaid']
[u'gold', u'coast', u'runner', u'break', u'hurdl', u'record']
[u'govt', u'back', u'clean', u'coal', u'technolog']
[u'govt', u'dismiss', u'poll', u'predict', u'elect', u'loss']
[u'govt', u'fund', u'help', u'paper', u'revamp']
[u'govt', u'outlin', u'illawarra', u'trade', u'school', u'plan']
[u'govt', u'urg', u'eas', u'access', u'payout', u'veteran']
[u'govt', u'vow', u'replac', u'coal', u'fire', u'power', u'station']
[u'grain', u'produc', u'better', u'idea', u'wheat']
[u'green', u'renew', u'energi', u'push']
[u'green', u'prefer', u'independ', u'gaudri']
[u'grey', u'anatomi', u'star', u'rise']
[u'hamilton', u'airport', u'get', u'rescu', u'revamp']
[u'hawk', u'decid', u'crawford', u'charg']
[u'hewitt', u'crash', u'california']
[u'hole', u'pyjama', u'reveal', u'internet', u'plagiar']
[u'homework', u'contribut', u'childhood', u'obes', u'parent']
[u'hope', u'illawarra', u'youth', u'council', u'teen']
[u'hous', u'financ', u'figur', u'januari']
[u'hous', u'financ', u'increas']
[u'howard', u'goat', u'opinion', u'poll']
[u'iemma', u'accus', u'green', u'put', u'stabl', u'govt', u'risk']
[u'ill', u'prompt', u'sprenger', u'withdraw']
[u'inter', u'fight', u'milan', u'derbi']
[u'iranian', u'presid', u'address', u'unsc', u'nuclear']
[u'iraq', u'attack', u'kill']
[u'jackson', u'score', u'point', u'korea']
[u'japan', u'aust', u'defenc', u'pact', u'aim', u'contain']
[u'japan', u'import', u'region', u'secur']
[u'journalist', u'amput', u'garuda', u'crash']
[u'katich', u'marsh', u'final', u'return']
[u'kilgariff', u'defend', u'sweeper', u'contract', u'process']
[u'king', u'blaze', u'contain', u'wednesday', u'firi']
[u'koori', u'communiti', u'member', u'scuffl', u'polic']
[u'labor', u'lead', u'liber', u'latest', u'poll']
[u'labor', u'lose', u'green', u'prefer', u'monaro']
[u'langer', u'finish', u'cricket']
[u'latrob', u'power', u'station', u'fund', u'wast', u'green']
[u'lindop', u'aim', u'success', u'adelaid', u'cup']
[u'macquari', u'bank', u'share', u'leap']
[u'magistr', u'reject', u'amundsen', u'request', u'step', u'asid']
[u'deton', u'bomb', u'internet', u'cafe', u'morocco']
[u'mandurah', u'host', u'medic', u'student', u'gather']
[u'stab', u'melbourn', u'music', u'festiv']
[u'tell', u'garuda', u'crash', u'surviv']
[u'mayor', u'unhappi', u'water', u'price', u'rise', u'plan']
[u'mersey', u'hospit', u'emerg', u'dept', u'normal']
[u'metal', u'group', u'express', u'regret', u'cyclon', u'georg']
[u'millar', u'dream', u'tour', u'repeat']
[u'minist', u'defend', u'decis', u'target', u'china']
[u'want', u'port', u'lead', u'handl', u'hold']
[u'moor', u'croft', u'line', u'red']
[u'european', u'visitor', u'central']
[u'mourinho', u'deni', u'swear', u'refere']
[]
[u'wont', u'remov', u'farmer', u'right', u'appeal']
[u'nasa', u'offici', u'surpris', u'climat', u'chang']
[u'nation', u'independ', u'fund', u'inquiri']
[u'nation', u'cost', u'carbon', u'storag', u'polici']
[u'farm', u'relief', u'reduc', u'paperwork']
[u'north', u'west', u'rescu', u'chopper']
[u'breakthrough', u'isra', u'palestinian', u'talk']
[u'fisher', u'question', u'feder', u'tuna', u'remind']
[u'nuclear', u'facil', u'ahead', u'despit', u'tradit']
[u'launch', u'campaign', u'bring', u'expat', u'home']
[u'pakistan', u'ban', u'speak', u'english', u'journo']
[u'palmerston', u'boom', u'hous', u'industri', u'say']
[u'fight', u'cumnock', u'school', u'suffer']
[u'parliamentari', u'schedul', u'disgrac', u'opposit']
[u'patel', u'patient', u'seek', u'compo', u'answer']
[u'piggeri', u'struggl', u'fee', u'cost', u'labour', u'shortag']
[u'pilbara', u'resid', u'reliev', u'jacob', u'weaken']
[u'goat', u'poor', u'poll', u'result']
[u'rais', u'comfort', u'women', u'issu']
[u'vow', u'work', u'harder', u'turn', u'poll', u'result']
[u'govt', u'ceas', u'talk', u'aust', u'mine', u'compani']
[u'polic', u'chief', u'attend', u'armidal', u'station', u'open']
[u'polic', u'concern', u'skyfir', u'underag', u'drink']
[u'polic', u'facil', u'work', u'move', u'ahead']
[u'polic', u'miss', u'man']
[u'polic', u'hunt', u'ravensho', u'home', u'invad']
[u'polic', u'impound', u'long', u'weekend', u'campaign']
[u'polic', u'pleas', u'aerial', u'campaign', u'drug']
[u'polic', u'seek', u'public', u'help', u'investig', u'suspici']
[u'polic', u'shut', u'noisi', u'parti']
[u'polic', u'snake', u'bite', u'road', u'accid', u'victim']
[u'premier', u'tell', u'action', u'shelley', u'archer']
[u'protest', u'mark', u'bush', u'visit', u'colombia']
[u'public', u'plan']
[u'push', u'dubbo', u'kerb', u'recycl']
[u'qaras', u'question', u'fiji', u'polic']
[u'govt', u'local', u'council', u'fight', u'water']
[u'rainfal', u'reach', u'lake', u'eyr', u'week']
[u'race', u'club', u'meet', u'show', u'interst']
[u'rain', u'littl', u'eas', u'demand', u'chariti', u'work']
[u'rare', u'vegi', u'varieti', u'serv', u'adelaid']
[u'recycl', u'water', u'cobar', u'shire']
[u'red', u'rule', u'snare', u'tuqiri']
[u'region', u'citi', u'boom']
[u'resid', u'month', u'connect', u'sted']
[u'resid', u'urg', u'plan', u'absente', u'vote']
[u'resid', u'urg', u'energi', u'effici', u'build']
[u'rider', u'crimin', u'say', u'merckx']
[u'rudd', u'hit', u'high', u'poll']
[u'run', u'water']
[u'salt', u'farm', u'oppon', u'highlight', u'submiss']
[u'school', u'fundrais', u'fund', u'help', u'eas', u'pressur']
[u'senden', u'second', u'calcavecchia', u'triumph', u'tampa']
[u'sevilla', u'streak', u'end', u'valencia', u'draw']
[u'race', u'crowd', u'behav']
[u'sober', u'declar', u'world', u'open']
[u'southern', u'swelter', u'record', u'heat']
[u'special', u'catamaran', u'help', u'reef', u'research']
[u'statesmanship']
[u'sudan', u'orchestr', u'darfur', u'crime', u'team', u'say']
[u'suncorp', u'metway', u'halt', u'trade', u'entitl']
[u'survey', u'reveal', u'outback', u'tourist', u'stay', u'longer']
[u'teacher', u'shortag', u'forc', u'distanc', u'educ']
[u'teach', u'graduat', u'hold', u'nation', u'standard']
[u'latest', u'poll']
[u'throw']
[u'tide', u'chang', u'aid', u'dolphin', u'rescu']
[u'titan', u'commit', u'walker']
[u'titan', u'releas', u'carney', u'contract']
[u'tourism', u'influx', u'boost', u'bendigo', u'economi']
[u'townsvill', u'stinger', u'attack', u'close', u'beach']
[u'trail', u'assur', u'fail', u'satisfi', u'green', u'group']
[u'train', u'death', u'consid', u'suspici']
[u'trawl', u'prompt', u'prawn', u'catch', u'fear']
[u'tristar', u'employe', u'think', u'redund', u'entitl']
[u'tuqiri', u'end', u'saga']
[u'christian', u'comment']
[u'boost', u'troop', u'number', u'afghanistan']
[u'govt', u'applaud', u'drought', u'cooper']
[u'volcano', u'boost', u'tourism']
[u'water', u'author', u'abl', u'remain', u'suppli']
[u'water', u'woe', u'prompt', u'warn', u'higher', u'food', u'cost']
[u'whyalla', u'iron', u'plant', u'process', u'hobart', u'zinc']
[u'workchoic', u'blame', u'qanta', u'stoush', u'hockey']
[u'face', u'court', u'cannabi', u'seizur']
[u'claim', u'process', u'fatal', u'cardross']
[u'year', u'kill', u'brisban']
[u'academ', u'question', u'exclus', u'brethren', u'elect']
[u'academ', u'warn', u'bowen', u'basin', u'mine', u'book', u'negat']
[u'govt', u'consid', u'alcohol', u'skyfir']
[u'aircondition', u'demand', u'blame', u'blackout']
[u'candid', u'prefer', u'green']
[u'auspin', u'chief', u'say', u'recent', u'help', u'wont', u'mill']
[u'aussi', u'arriv', u'kitt', u'ahead', u'clash']
[u'aust', u'japan', u'seal', u'histor', u'secur', u'pact']
[u'babi', u'boomer']
[u'junk', u'food', u'stop', u'childhood', u'obes', u'health']
[u'barway', u'problem', u'highlight', u'concern', u'game']
[u'continu', u'search', u'miss', u'correspond']
[u'report', u'kidnap', u'gaza']
[u'bestsel', u'leav', u'unread', u'survey']
[u'requir', u'cost', u'parti', u'elect']
[u'affect', u'oper', u'jetstar', u'qanta']
[u'blake', u'indian', u'well']
[u'blayney', u'council', u'crack', u'towner']
[u'blind', u'woman', u'action', u'govt', u'servic']
[u'boati', u'urg', u'caution', u'near', u'lake', u'entranc']
[u'bodi', u'plane', u'crash', u'victim', u'return', u'tomorrow']
[u'bodi', u'plane', u'crash', u'victim', u'rout', u'home']
[u'boil', u'water', u'alert', u'pigeon', u'blame']
[u'book', u'forc', u'pension', u'rail', u'travel']
[u'brack', u'defend', u'languil', u'drug', u'dealer']
[u'bridg', u'birthday', u'surpris']
[u'british', u'govt', u'unveil', u'emiss']
[u'brit', u'want', u'churchil', u'lennon', u'note']
[u'bronco', u'deni', u'rort']
[u'bureaucrat', u'quash', u'grazier', u'land', u'leas', u'hop']
[u'burni', u'plead', u'volunt']
[u'bushrang', u'eye', u'prodigi']
[u'bushrang', u'prodigi']
[u'busi', u'environ', u'group', u'rebuk', u'parti']
[u'detent', u'centr', u'worker']
[u'cannabi', u'grower', u'get', u'suspend', u'sentenc']
[u'cape', u'york', u'town', u'run', u'food', u'suppli']
[u'cape', u'york', u'town', u'food', u'suppli']
[u'cathol', u'church', u'campaign', u'clone']
[u'central', u'hit', u'march', u'high']
[u'probe', u'minyip', u'hous', u'blaze']
[u'cheap', u'import', u'cost', u'local', u'manufactur', u'job']
[u'chines', u'govt', u'express', u'concern', u'japan']
[u'closer']
[u'closer']
[u'collect', u'rain', u'solv', u'rural', u'water', u'crisi']
[u'colli', u'back', u'clean', u'coal', u'push']
[u'committe', u'urg', u'govt', u'focus', u'hospit']
[u'council', u'monitor', u'water', u'purifi']
[u'council', u'push', u'gambier', u'virgin', u'flight']
[u'court', u'challeng', u'bushfir', u'report', u'adjourn']
[u'court', u'jail', u'habitu', u'drink', u'driver']
[u'crash', u'survivor', u'wari', u'fli']
[u'crawford', u'accept', u'week']
[u'csiro', u'develop', u'month', u'weather', u'forecast']
[u'defenc', u'project', u'delay', u'compromis', u'aust']
[u'desk', u'job', u'increas', u'risk']
[u'detent', u'centr', u'fund', u'effect']
[u'doubt', u'worth', u'wheat', u'grower', u'questionnair']
[u'downer', u'condemn', u'zimbabw', u'crackdown']
[u'downpour', u'good', u'news', u'road']
[u'ducat', u'want', u'photo', u'remov', u'kelli', u'websit']
[u'echuca', u'industri', u'blaze', u'consid', u'suspici']
[u'feder', u'govern', u'grant', u'ilfracomb', u'motel']
[u'chang', u'anti', u'democrat', u'green']
[u'forens', u'team', u'begin', u'investig', u'death']
[u'court', u'offic', u'plead', u'guilti', u'drug']
[u'time', u'olymp', u'champion', u'bruijn', u'retir']
[u'fuel', u'price', u'rise', u'port', u'hedland', u'cyclon']
[u'fund', u'woe', u'task', u'forc', u'futur', u'doubt']
[u'funer', u'spark', u'rival', u'famili', u'feud']
[u'garuda', u'crash', u'victim', u'go', u'home']
[u'goulburn', u'valley', u'anthrax', u'monitor', u'continu']
[u'govt', u'accus', u'duplic', u'night', u'youth', u'patrol']
[u'govt', u'defend', u'defenc', u'project', u'record']
[u'govt', u'green', u'light', u'alic', u'demount']
[u'govt', u'urg', u'crack', u'youth', u'crime']
[u'govt', u'urg', u'hasten', u'kuranda', u'rail', u'work']
[u'govt', u'urg', u'realloc', u'money', u'rural', u'shire']
[u'graduat', u'ceremoni', u'hear', u'foreign', u'student']
[u'greenpeac', u'seek', u'renew', u'energi', u'invest', u'boost']
[u'group', u'say', u'mari', u'valley', u'land', u'valuat', u'headach']
[u'guatemalan', u'exorcis', u'bush', u'tour', u'sit']
[u'head', u'armi', u'say', u'close', u'tie', u'japan']
[u'health', u'author', u'issu', u'urgent', u'meliodosi', u'warn']
[u'health', u'reform', u'affect', u'resign']
[u'hear', u'hear', u'town', u'crier', u'want', u'greet', u'ghan']
[u'honour', u'guard', u'trooper']
[u'hormon', u'paradox', u'explain', u'teen', u'moodi']
[u'hotel', u'investig', u'turn', u'lead']
[u'howard', u'japanes', u'sign', u'secur', u'pact']
[u'howard', u'sign', u'histor', u'secur', u'pact', u'japan']
[u'howard', u'sign', u'secur', u'pact', u'japan']
[u'human', u'presenc', u'damag', u'beach', u'research']
[u'hunt', u'start', u'half']
[u'hyatt', u'oppon', u'meet', u'barrist']
[u'dont', u'want', u'shoot', u'australian', u'timor', u'rebel']
[u'iemma', u'dismiss', u'cowderi', u'critic']
[u'japanes', u'tourist', u'number', u'fall']
[u'job', u'increas']
[u'juri', u'deliv', u'verdict', u'driveway', u'shoot', u'case']
[u'kayak', u'death', u'wont', u'deter', u'sydney', u'pair']
[u'kennett', u'cricitis', u'swim', u'champ']
[u'king', u'firefight', u'close', u'contain', u'blaze']
[u'krakouer', u'case', u'adjourn']
[u'labor', u'urg', u'santoro', u'share', u'breach']
[u'labor', u'urg', u'action', u'santoro']
[u'languil', u'regret', u'give', u'refer', u'drug', u'dealer']
[u'laport', u'sound', u'black', u'warn']
[u'lennon', u'ask', u'rpdc', u'speed', u'gunn', u'assess']
[u'local', u'event', u'help', u'drought', u'horsham']
[u'macfarlan', u'show', u'cloud', u'seed', u'trial']
[u'convict', u'death', u'sentenc']
[u'fin', u'shoot', u'deer']
[u'hurt', u'border', u'polic', u'shoot']
[u'plead', u'guilti', u'wagga', u'rape']
[u'sentenc', u'jail', u'poison', u'children']
[u'face', u'court', u'accus', u'stab', u'partner']
[u'mayor', u'call', u'calmer', u'water', u'talk']
[u'mayor', u'question', u'beatti', u'water', u'threat']
[u'mayor', u'reject', u'council', u'sack']
[u'mayor', u'brown', u'debat', u'coal', u'industri', u'futur']
[u'mayor', u'tough', u'water', u'threat']
[u'mccartney', u'buzz', u'surround', u'starbuck', u'label']
[u'debut', u'boomer']
[u'mildura', u'burglar', u'catch', u'cupboard']
[u'close', u'oper', u'find']
[u'mine', u'compani', u'say', u'blood', u'soil', u'test', u'result']
[u'minist', u'say', u'declar', u'share', u'oversight']
[u'molik', u'knock', u'indian', u'well']
[u'moran', u'prize', u'offer', u'reward']
[u'appoint', u'deal', u'region']
[u'moss', u'hit', u'paparazzi']
[u'speak', u'barley', u'export']
[u'muliaina', u'break', u'foot', u'practic', u'match']
[u'mundulla', u'lamb']
[u'mysteri', u'ill', u'kill', u'penguin']
[u'deni', u'offshor', u'job', u'claim']
[u'lead', u'attack', u'adelaid', u'girl']
[u'medic', u'advisori', u'committe', u'resid']
[u'chief', u'meet', u'farm', u'lobbi', u'group']
[u'sniffabl', u'fuel', u'go', u'half']
[u'northern', u'farmer', u'look', u'forward', u'better', u'yield']
[u'chang', u'draw', u'suit', u'rabbitoh']
[u'liber', u'slam', u'vicious', u'labor', u'campaign']
[u'opposit', u'leader', u'establish', u'mentor', u'program']
[u'olyroo', u'hop', u'senior', u'player']
[u'dead', u'stafford', u'height', u'hous']
[u'opposit', u'reject', u'beatti', u'council', u'water', u'threat']
[u'patel', u'patient', u'demand', u'keat', u'decis', u'review']
[u'person', u'name', u'gold', u'coast', u'skeleton']
[u'remain', u'help', u'scientist', u'track', u'pacif', u'migrat']
[u'plan', u'wast', u'station', u'step', u'wrong', u'direct']
[u'meet', u'japanes', u'soldier', u'sign', u'pact']
[u'rule', u'sack', u'santoro', u'biotech', u'share']
[u'sign', u'secur', u'declar', u'japan']
[u'podiatrist', u'deregist', u'secret', u'film']
[u'polic', u'arrest', u'dicaprio', u'bodyguard']
[u'polic', u'continu', u'investig', u'plung']
[u'polic', u'continu', u'probe', u'tarrawanna', u'death']
[u'polic', u'investig', u'ararat', u'hous', u'blaze']
[u'polic', u'investig', u'taxi', u'assault', u'claim']
[u'polic', u'charg', u'seiz', u'tatong', u'cannabi']
[u'polic', u'seek', u'public', u'help', u'medic', u'centr', u'blaze']
[u'polic', u'shoot', u'investig']
[u'polic', u'step', u'search', u'miss', u'pair']
[u'polic', u'root', u'geraldton', u'famili']
[u'polic', u'want', u'speak', u'bilinga', u'burglari']
[u'polic', u'review', u'visit', u'north', u'west']
[u'politician', u'seek', u'vote', u'klingon']
[u'power', u'station', u'plan', u'impact', u'mortlak', u'project']
[u'premier', u'accus', u'debnam', u'fraud']
[u'prepar', u'terrorist', u'attack', u'confer', u'tell']
[u'promina', u'merger', u'benefit', u'sharehold', u'suncorp']
[u'public', u'heritag', u'protect', u'plan']
[u'public', u'address', u'vandal']
[u'public', u'urg', u'open', u'mind', u'bird', u'death']
[u'qanta', u'pull', u'aust', u'market']
[u'govt', u'forego', u'eas', u'water', u'rat', u'rise']
[u'raaf', u'worker', u'face', u'explos', u'gun', u'charg']
[u'railway', u'group', u'call', u'better', u'safeti', u'level']
[u'reconcili', u'forum', u'import', u'say', u'governor']
[u'bull', u'lack', u'speed', u'webber']
[u'reinado', u'prepar', u'kill', u'aust', u'troop']
[u'reinado', u'send', u'messag', u'pursuer']
[u'report', u'find', u'small', u'plane', u'fli', u'close']
[u'report', u'highlight', u'mine', u'infrastructur', u'need']
[u'resid', u'hope', u'stop', u'water', u'extract', u'plan']
[u'roddick', u'look', u'fed', u'weak']
[u'safe', u'boat', u'harbour', u'campaign', u'boat', u'damag']
[u'saff', u'call', u'deregul', u'law']
[u'salvo', u'work', u'assist', u'oenpelli', u'flood', u'aftermath']
[u'sandon', u'land', u'gazett', u'aborigin', u'place']
[u'santoro', u'resist', u'call', u'resign']
[u'satellit', u'ocean', u'monitor', u'assist', u'navi']
[u'scholarship', u'aim', u'lure', u'teacher', u'region']
[u'self', u'portrait', u'decapit', u'head', u'win']
[u'shark', u'bite', u'woman', u'foot']
[u'shoalhaven', u'council', u'lift', u'water', u'ban']
[u'singaporean', u'prison', u'clean', u'plan', u'qanta']
[u'slight', u'improv', u'debnam']
[u'smith', u'covet', u'sole', u'captainci']
[u'view', u'peak', u'hill', u'effici', u'light']
[u'stallon', u'face', u'growth', u'hormon', u'import', u'charg']
[u'state', u'lose', u'withhold', u'paedophil', u'bash']
[u'stosur', u'exit', u'indian', u'well']
[u'stoush', u'erupt', u'central', u'water', u'suppli']
[u'strategist', u'prepar', u'plan', u'pull', u'troop']
[u'sudan', u'orchestr', u'darfur', u'crime', u'team']
[u'suncorp', u'metway', u'promina', u'merger', u'get', u'green', u'light']
[u'survey', u'show', u'improv', u'aust', u'busi']
[u'taxi', u'rego', u'sticker', u'wont', u'prevent', u'assault']
[u'titan', u'inaugur', u'line']
[u'titan', u'pleas', u'walker', u'matur']
[u'titan', u'prais', u'walker', u'matur']
[u'tourist', u'flock', u'inland', u'wit', u'outback', u'flood']
[u'townsvill', u'strand', u'drag', u'stinger']
[u'townsvill', u'wollongong', u'leagu', u'berth']
[u'trucki', u'hospit', u'adelaid', u'crash']
[u'tuqiri', u'thought', u'waratah']
[u'year', u'jail', u'geraldton', u'possess']
[u'move', u'iran', u'sanction']
[u'nuclear', u'watchdog', u'chief', u'talk', u'north', u'korea']
[u'report', u'human', u'right', u'darfur']
[u'readi', u'wave', u'swim', u'champ']
[u'wast', u'specialist', u'warn', u'nuclear', u'energi']
[u'websit', u'take', u'bet', u'mill']
[u'websit', u'help', u'track', u'want', u'crimin']
[u'wenger', u'look', u'slump']
[u'westpoint', u'investor', u'launch', u'class', u'action']
[u'whiteley', u'drysdal', u'paint', u'fetch', u'million']
[u'windi', u'recov', u'indian', u'batter', u'lara']
[u'window', u'opportun', u'climat', u'chang', u'solut']
[u'woman', u'plead', u'guilti', u'stab']
[u'zimbabwean', u'opposit', u'leader', u'injur', u'custodi']
[u'chines', u'visitor', u'inject']
[u'abbott', u'defend', u'critic', u'rudd']
[u'abbott', u'attack', u'rudd']
[u'alcohol', u'seller', u'push', u'curb', u'street', u'violenc']
[u'andrew', u'robb', u'press', u'club', u'address']
[u'follow', u'market', u'slump']
[u'auspin', u'worker', u'welcom', u'suppli']
[u'aussi', u'eas', u'world']
[u'aust', u'market', u'wipe']
[u'aust', u'troop', u'avoid', u'rocket', u'attack', u'afghanistan']
[u'author', u'unknown', u'toxin', u'world']
[u'award', u'recognis', u'young', u'wheatbelt', u'farmer']
[u'share']
[u'bartlett', u'urg', u'hast', u'return', u'steal', u'wag']
[u'blaze', u'destroy', u'cricket', u'club', u'room']
[u'blood', u'lead', u'level', u'rise', u'break', u'hill', u'children']
[u'blue', u'welcom', u'katich']
[u'bodi', u'garuda', u'victim', u'repatri']
[u'brack', u'defend', u'swim', u'champ']
[u'brisban', u'busway', u'month', u'ahead', u'schedul']
[u'brisban', u'compani', u'develop', u'tool', u'detect', u'bird']
[u'britain', u'introduc', u'emiss']
[u'british', u'soldier', u'clear', u'iraqi', u'abus']
[u'bruton', u'deni', u'european']
[u'bush', u'pledg', u'reform', u'immigr', u'law']
[u'centr', u'work', u'condit', u'brutal', u'say']
[u'canberra', u'seiz', u'control', u'indigen', u'land', u'tenur']
[u'cancer', u'heart', u'diseas', u'continu', u'caus', u'death']
[u'cannon', u'vedelago', u'return', u'forc']
[u'cassini', u'find', u'evid', u'sea', u'saturn', u'moon']
[u'ceduna', u'push', u'liquor', u'sale', u'alcohol']
[u'centr', u'help', u'boost', u'gladston', u'industri']
[u'prais', u'volunt', u'firefight', u'effort']
[u'chaney', u'resign', u'reveal', u'problem']
[u'chelsea', u'bridg', u'undergo', u'knee', u'surgeri']
[u'child', u'farm', u'death', u'spark', u'safeti', u'remind']
[u'child', u'porn', u'offend', u'place', u'regist']
[u'clean', u'coal', u'technolog', u'lose', u'opportun']
[u'climat', u'chang', u'blame', u'cockroach', u'migrat']
[u'closer']
[u'coalit', u'announc', u'environ', u'plan']
[u'commut', u'evacu', u'sydney', u'train']
[u'unhappi', u'taxpay', u'fund']
[u'consum', u'confid', u'surg', u'despit', u'petrol', u'rate']
[u'corrigan', u'home', u'lebanon', u'jail', u'stint']
[u'costello', u'jealous']
[u'cotton', u'investig', u'water', u'effici', u'concern']
[u'council', u'consid', u'malt', u'site', u'heritag', u'protect']
[u'council', u'decis', u'bittersweet', u'pill', u'stockfe']
[u'councillor', u'strife', u'water', u'shortag']
[u'councillor', u'agre', u'homeless', u'shelter', u'financi']
[u'council', u'cool', u'state', u'fund']
[u'council', u'coupl', u'regist', u'step', u'closer']
[u'council', u'recreat', u'fund']
[u'council', u'welcom', u'suburb', u'push', u'town', u'camp']
[u'cyclon', u'death', u'prompt', u'mine', u'camp', u'inquiri']
[u'deadlin', u'loom', u'traveston', u'submiss']
[u'debnam', u'move', u'reassur', u'nurs', u'job']
[u'defenc', u'highlight', u'chinook', u'upgrad']
[u'defenc', u'recruit', u'chief', u'say', u'number', u'improv']
[u'desalin', u'plant', u'expens', u'opposit']
[u'disord', u'passeng', u'take', u'flight']
[u'disrupt', u'public', u'hous', u'tenant', u'face', u'tougher']
[u'dolc', u'gabbana', u'pull', u'humili']
[u'dozen', u'wit', u'attend', u'nuttal', u'committ']
[u'drug', u'crimin', u'issu', u'green']
[u'dust', u'worri', u'drought', u'concert', u'prepar', u'begin']
[u'easi', u'choic']
[u'economist', u'caution', u'share', u'equiti', u'loan']
[u'kill', u'ambush', u'thailand', u'south']
[u'england', u'wilko']
[u'explos', u'kabul', u'kill']
[u'farmer', u'associ', u'debat', u'climat', u'chang', u'motion']
[u'feder', u'govt', u'announc', u'fund', u'spell', u'stop']
[u'govt', u'defend', u'chang', u'comcar', u'scheme']
[u'govt', u'urg', u'interim', u'declar']
[u'fed', u'conqueror', u'roll', u'moya']
[u'receiv', u'leagu']
[u'figur', u'highest', u'death', u'rate']
[u'turn', u'hinkler', u'hall', u'aviat']
[u'vizard', u'bookkeep', u'order', u'bank']
[u'forum', u'urg', u'joint', u'effort', u'tackl', u'childhood']
[u'like', u'user', u'credit', u'agenc']
[u'gere', u'face', u'congress', u'china']
[u'goondiwindi', u'canal', u'estat', u'work', u'begin']
[u'govern', u'block', u'opposit', u'motion']
[u'govt', u'appreci', u'demount', u'accommod']
[u'govt', u'ask', u'lower', u'farm', u'water', u'charg']
[u'govt', u'consid', u'resum', u'csiro', u'plant', u'research']
[u'govt', u'wont', u'specul', u'desalin', u'plant', u'cost']
[u'gunn', u'withdraw', u'propos', u'assess']
[u'health', u'dept', u'report', u'rise', u'ill', u'pool']
[u'health', u'dept', u'determin', u'sourc', u'lead']
[u'henri', u'month', u'gunner', u'life']
[u'hickss', u'lawyer', u'defend', u'court', u'applic']
[u'hingi', u'bow', u'indian', u'well']
[u'victim', u'partner', u'speak', u'death']
[u'homosexu', u'respons']
[u'hospit', u'hour', u'extend', u'encourag']
[u'iemma', u'appal', u'green', u'drug', u'propos']
[u'iemma', u'call', u'ditch', u'green', u'drug', u'polici']
[u'iemma', u'elect', u'trail', u'break', u'hill']
[u'ilparpa', u'unlik', u'choic', u'generat', u'reloc']
[u'india', u'refresh', u'readi', u'chappel']
[u'indonesian', u'plane', u'crash', u'victim', u'arriv', u'home']
[u'inzamam', u'slam', u'beat', u'batsmen']
[u'irish', u'faith', u'band', u'brother']
[u'irrig', u'promis', u'fight', u'stop', u'lake', u'mokoan']
[u'israel', u'palestinian', u'econom', u'talk', u'peac']
[u'judg', u'say', u'alcohol', u'relat', u'violenc', u'nation']
[u'labor', u'iraq', u'polici', u'risk', u'consid']
[u'labor', u'handl', u'japan', u'agreement', u'better']
[u'lawyer', u'ask', u'stop', u'group', u'distribut', u'resort']
[u'lazaridi', u'face', u'hear', u'posit', u'test']
[u'lead', u'relat', u'nativ', u'bird', u'death', u'continu']
[u'lennon', u'defend', u'handl', u'gunn', u'pulp', u'propos']
[u'liber', u'candid', u'seek', u'helensburgh', u'polic']
[u'liber', u'criticis', u'govt', u'citizenship', u'test', u'plan']
[u'liber', u'tour', u'goldfield', u'mine']
[u'liber', u'govt', u'want', u'union', u'access']
[u'lignor', u'sign', u'timber', u'suppli', u'contract']
[u'livestock', u'saleyard', u'oper', u'look']
[u'lobster', u'fisher', u'face', u'smaller', u'total', u'allow', u'catch']
[u'lockyer', u'issu', u'storm', u'warn']
[u'macquari', u'pest', u'control', u'fund', u'debat', u'continu']
[u'charg', u'grow', u'cannabi']
[u'fin', u'attempt', u'post', u'reptil']
[u'jail', u'send', u'death', u'threat', u'letter']
[u'jail', u'ecstasi', u'plan']
[u'maroochi', u'mayor', u'want', u'councillor', u'gift', u'public']
[u'martin', u'seek', u'clarif', u'lennon', u'gunn']
[u'mclaren', u'readi', u'unleash', u'alonso', u'challeng']
[u'melb', u'rail', u'oper', u'normal', u'despit', u'train']
[u'memori', u'laps']
[u'merger', u'wont', u'result', u'forc', u'redund', u'credit']
[u'metal', u'group', u'resum', u'control', u'camp', u'fatal']
[u'mine', u'compani', u'pilbara', u'oper', u'hold']
[u'minist', u'disappoint', u'council', u'reject']
[u'miss', u'launceston', u'coupl']
[u'miss', u'safe', u'roll', u'locat']
[u'mooney', u'push', u'myer', u'open']
[u'time', u'elector', u'boundari']
[u'call', u'creation', u'state']
[u'nadal', u'make', u'statement', u'indian', u'well']
[u'nation', u'want', u'action', u'dredg', u'lake', u'entranc']
[u'neitz', u'back', u'drug', u'rule']
[u'power', u'line', u'improv', u'reliabl', u'suppli']
[u'trade', u'diploma', u'aim', u'address', u'skill', u'shortag']
[u'whistleblow', u'guidelin', u'intoler', u'opposit']
[u'futur', u'coal', u'brown']
[u'drought', u'area', u'percent']
[u'opposit', u'unveil', u'solar', u'power', u'plan']
[u'gillespi', u'rule', u'england', u'match']
[u'simpson', u'book', u'get', u'court', u'repriev']
[u'opposit', u'attack', u'plan', u'sell']
[u'opposit', u'claim', u'health', u'dept', u'meltdown']
[u'opposit', u'iraq', u'withdraw', u'plan', u'question']
[u'opposit', u'plan', u'sell', u'govt', u'wast', u'servic']
[u'pampl', u'readi', u'defend', u'titl']
[u'paparazzi', u'warn', u'dicaprio']
[u'plane', u'crash', u'victim', u'arriv', u'home']
[u'play', u'region', u'arm', u'race']
[u'rule', u'pact', u'china']
[u'polic', u'corrupt', u'probe', u'begin']
[u'polic', u'fear', u'miss', u'senior']
[u'polic', u'make', u'arrest', u'protest']
[u'polic', u'narrow', u'search', u'miss', u'northern']
[u'polic', u'probe', u'road', u'fatal', u'crash', u'near', u'eidsvold']
[u'polic', u'search', u'miss', u'georgetown', u'woman']
[u'polic', u'seiz', u'noos', u'teen', u'face', u'murder', u'charg']
[u'polic', u'strike', u'forc', u'probe', u'tarrawanna', u'slay']
[u'polic', u'swoop', u'cannabi', u'crop', u'near', u'nowra']
[u'power', u'station', u'announc', u'back']
[u'prosecutor', u'lose', u'appeal', u'murder']
[u'protect', u'babi', u'drug', u'addict', u'mother', u'bishop']
[u'public', u'abl', u'buangor', u'hang', u'glide', u'view']
[u'razorback', u'choos', u'coach']
[u'relax', u'play', u'hard', u'dravid', u'tell', u'india']
[u'report', u'urg', u'mandatori', u'renew', u'energi', u'target']
[u'robberi', u'victim', u'chase', u'thief']
[u'robinson', u'face', u'second', u'committ', u'hear']
[u'robinson', u'stand', u'trial', u'power', u'abus', u'charg']
[u'rooki', u'forward', u'draft', u'red', u'squad']
[u'rudd', u'condemn', u'zimbabw', u'govern']
[u'rudd', u'urg', u'condemn', u'zimbabw', u'govt']
[u'rural', u'women', u'role', u'address', u'skill', u'shortag']
[u'salley', u'sign', u'adelaid', u'unit']
[u'salmonella', u'scare', u'prompt', u'chees', u'recal']
[u'school', u'rais', u'youth', u'allow', u'concern']
[u'sharapova', u'send', u'crash']
[u'sharehold', u'applaud', u'tabcorp', u'chief', u'sack']
[u'slatter', u'sack', u'good', u'news', u'tabcorp', u'analyst', u'say']
[u'smith', u'pont', u'proud', u'number']
[u'smith', u'punter', u'proud', u'number']
[u'snowdon', u'condemn', u'camp', u'fund', u'precondit']
[u'spotlight', u'fall', u'gold', u'coast', u'season', u'kick']
[u'spotlight', u'titan', u'ahead', u'season', u'kick']
[u'swan', u'hill', u'look', u'better', u'long', u'term', u'plan']
[u'sweati', u'polic', u'scent', u'uniform']
[u'tabcorp', u'chief', u'sack', u'get', u'payout']
[u'tabcorp', u'payout']
[u'music', u'british', u'stage']
[u'teacher', u'face', u'lifetim', u'toilet', u'camera']
[u'teacher', u'shortag', u'ignor', u'govt', u'union', u'say']
[u'thousand', u'expect', u'sign', u'daylight', u'save', u'petit']
[u'timber', u'fin', u'worker', u'injuri']
[u'toddler', u'drive']
[u'torr', u'strait', u'radar', u'pull', u'year']
[u'tsvangirai', u'tell', u'polic', u'beat']
[u'turner', u'pois', u'waratah', u'debut']
[u'uncertain', u'futur', u'histor', u'grain', u'shed']
[u'union', u'fear', u'teacher', u'shortag', u'grow', u'bigger']
[u'unit', u'lose', u'silvestr', u'season']
[u'vandal', u'spray', u'racist', u'graffiti', u'templ']
[u'vast', u'major', u'australian', u'want', u'tackl', u'global']
[u'govt', u'push', u'peak', u'toll', u'discount']
[u'vicroad', u'employe', u'charg', u'registr', u'scam']
[u'victim', u'bodi', u'repatri', u'indonesia', u'crash']
[u'visit', u'offer', u'geraldton', u'colleg', u'educ']
[u'vizard', u'bookkeep', u'order', u'bank']
[u'voluntari', u'euthanasia', u'go', u'parliament']
[u'liber', u'play', u'report', u'push', u'dump']
[u'wambo', u'power', u'station', u'oper', u'listen', u'public']
[u'secur', u'wallabi', u'test']
[u'websit', u'hit', u'right', u'note', u'music', u'teacher']
[u'west', u'coast', u'confid', u'sampi', u'start']
[u'west', u'indi', u'conquer', u'stage', u'fright', u'lara']
[u'whiteley', u'drysdal', u'paint', u'fetch', u'million']
[u'whitsunday', u'council', u'airport', u'mess']
[u'wine', u'grape', u'grower', u'look', u'water', u'trade']
[u'woman', u'face', u'court', u'innisfail', u'stab']
[u'work', u'begin', u'restor', u'collinsvill', u'power']
[u'world', u'smoke']
[u'yogya', u'open']
[u'zimbabw', u'neighbour', u'break', u'silenc', u'polit']
[u'abbott', u'defend', u'santoro', u'share', u'profit', u'donat']
[u'accc', u'seek', u'power']
[u'send', u'flood', u'relief', u'darwin', u'airlin', u'say']
[u'afford', u'hous', u'help', u'bolster', u'region', u'growth']
[u'group', u'request', u'aust', u'help', u'lankan']
[u'alic', u'spring', u'worker', u'pay', u'higher', u'nation']
[u'alonso', u'night', u'race']
[u'seek', u'apolog', u'inquest', u'comment']
[u'urg', u'chang', u'age', u'care']
[u'anderson', u'break', u'finger', u'bowl', u'hand']
[u'andrew', u'defend', u'citizenship', u'test']
[u'angelina', u'joli', u'adopt', u'vietnames']
[u'argentina', u'fifa', u'rank', u'time']
[u'asylum', u'seeker', u'send', u'nauru']
[u'aust', u'accus', u'breach', u'refuge', u'convent']
[u'aust', u'market', u'bounc']
[u'australian', u'scientist', u'dress', u'women', u'wine']
[u'aust', u'agre', u'collabor', u'counter', u'terror']
[u'aust', u'scientist', u'propos', u'worldwid', u'water', u'network']
[u'view', u'murray']
[u'flow', u'need', u'eas', u'water', u'restrict']
[u'blair', u'win', u'trident', u'missil', u'vote']
[u'blaze', u'damag', u'cooroy', u'butter', u'factori']
[u'bogut', u'fin', u'gestur']
[u'boil', u'water', u'alert', u'remain', u'south', u'dubbo']
[u'brough', u'blame', u'govt', u'polic', u'station', u'delay']
[u'brown', u'back', u'long', u'haul']
[u'bunburi', u'local', u'sign', u'women', u'right', u'group']
[u'burk', u'reject', u'wallabi', u'approach']
[u'cairn', u'painter', u'jail', u'ecstasi', u'backpack']
[u'canberra', u'architect', u'win', u'prize']
[u'candid', u'forum', u'rais', u'health', u'transport', u'issu']
[u'crash', u'melbourn', u'restaur']
[u'industri', u'hop', u'high', u'speed', u'test', u'continu']
[u'cautious', u'thumb', u'give', u'hous', u'develop']
[u'central', u'tableland', u'water', u'seek', u'support']
[u'chelsea', u'unit', u'lead']
[u'chief', u'suspect', u'admit', u'respons', u'sept']
[u'citizenship', u'live', u'treasur']
[u'cityrail', u'test', u'train', u'ahead', u'harbour', u'bridg']
[u'closer']
[u'cobar', u'doctor', u'stay']
[u'cole', u'deni', u'mislead', u'market']
[u'condit', u'boost', u'blue', u'green', u'alga', u'risk']
[u'costello', u'welcom', u'arrest']
[u'council', u'cop', u'flak', u'alcohol', u'plan']
[u'council', u'goal', u'soccer', u'address', u'youth', u'woe']
[u'council', u'push', u'higher', u'speed', u'limit']
[u'council', u'seek', u'apolog', u'airport', u'critic']
[u'cousin', u'send', u'youth', u'train', u'centr', u'taxi']
[u'culcairn', u'woman', u'die', u'crash', u'near']
[u'cult', u'leader', u'arrest', u'jungl']
[u'customari', u'consid', u'sentenc', u'judg']
[u'custom', u'seiz', u'worth', u'illeg', u'steroid']
[u'darwin', u'leagu', u'radar']
[u'defenc', u'find', u'substanc', u'westralia', u'risk']
[u'distanc', u'educ', u'meet', u'geraldton', u'parent']
[u'docker', u'undecid', u'tarrant', u'role']
[u'domest', u'tourism', u'rise']
[u'downer', u'pessimist', u'zimbabw', u'situat']
[u'dredg', u'work', u'remov', u'lake', u'entranc', u'sand']
[u'driver', u'escap', u'fieri', u'mishap']
[u'drought', u'impact', u'hit', u'hard', u'rural', u'town']
[u'drought', u'relief', u'south', u'coast', u'rural', u'land']
[u'drought', u'grip', u'moss', u'vale', u'area']
[u'duke', u'carl', u'name', u'socceroo', u'squad']
[u'dutchman', u'set', u'pacif']
[u'employ', u'growth', u'make', u'rate', u'rise', u'like']
[u'councillor', u'say', u'lead', u'health', u'issu']
[u'famili', u'glad', u'lebanon', u'abduct', u'ordeal']
[u'farmer', u'want', u'law', u'ban', u'anim', u'activist']
[u'fast', u'food', u'chain', u'fin', u'illeg', u'employ']
[u'coral', u'like', u'surviv', u'bleach', u'event']
[u'fear', u'hunter', u'irrig', u'water']
[u'februari', u'figur']
[u'firefight', u'otway', u'rang', u'blaze']
[u'aust', u'victim', u'garuda', u'crash', u'lay', u'rest']
[u'flood', u'chang', u'carnarvon', u'gorg', u'outlook']
[u'flood', u'bring', u'creatur', u'fish', u'farm']
[u'forb', u'showground', u'power', u'upgrad', u'clear']
[u'forc', u'giteau', u'henjak']
[u'mosqu', u'secretari', u'win', u'defam']
[u'policeman', u'bond', u'believ', u'forc']
[u'generat', u'work', u'hard', u'power', u'collinsvill']
[u'georgiou', u'continu', u'slam', u'citizenship', u'test']
[u'georgiou', u'renew', u'attack', u'citizenship', u'test']
[u'gerrard', u'lash', u'tuqiri', u'pursuit']
[u'girl', u'assault', u'melbourn', u'shop', u'centr']
[u'govt', u'agre', u'delay', u'smart', u'card', u'legisl']
[u'govt', u'concern', u'australian', u'zimbabw']
[u'govt', u'defend', u'citizenship', u'test']
[u'govt', u'opposit', u'continu', u'charact', u'attack']
[u'govt', u'promis', u'silver', u'citi', u'seal']
[u'govt', u'respons', u'commut', u'chao', u'unaccept']
[u'govt', u'tell', u'farmer', u'angri', u'superpip']
[u'govt', u'welcom', u'suspect', u'confess']
[u'green', u'angri', u'govt', u'block', u'legisl']
[u'green', u'candid', u'defend', u'drug', u'polici']
[u'haa', u'overcom', u'gonzalez']
[u'hall', u'creek', u'hous', u'boost', u'govt', u'staff']
[u'health', u'concern', u'close', u'oyster', u'grow', u'area']
[u'highlight', u'australia', u'scotland']
[u'howard', u'pay', u'afghanistan', u'surpris', u'visit']
[u'iemma', u'apologis', u'rail', u'chao']
[u'iemma', u'applaud', u'public', u'sector', u'ralli']
[u'indonesia', u'consid', u'lethal', u'inject', u'fire']
[u'inquiri', u'launch', u'sydney', u'transport', u'chao']
[u'investig', u'begin', u'esper', u'bird', u'poison']
[u'iraq', u'confirm', u'death', u'sentenc', u'saddam', u'offici']
[u'irrig', u'stand', u'altern', u'lake', u'mokoan', u'plan']
[u'wouldnt', u'pass']
[u'jensen', u'offer', u'oliv', u'branch', u'hackett']
[u'lawyer', u'argu', u'asic', u'case', u'file', u'late']
[u'jobless', u'rate', u'rise']
[u'joli', u'land', u'vietnam', u'adopt']
[u'jone', u'camp', u'confid']
[u'jordan', u'rock', u'olyroo', u'late', u'equalis']
[u'kalgoorli', u'council', u'reaffirm', u'servic', u'support']
[u'kidnap', u'italian', u'journalist', u'plead', u'help']
[u'labor', u'seiz', u'lunch', u'porn', u'mogul']
[u'latrob', u'council', u'consid', u'japan', u'whale', u'stanc']
[u'lead', u'poison', u'fear', u'grow', u'esper']
[u'lennon', u'move', u'fast', u'track', u'pulp', u'approv']
[u'leverkusen', u'berbatov', u'edg', u'closer', u'glasgow']
[u'lobster', u'council', u'beat', u'wast', u'scheme']
[u'charg', u'cricket', u'club', u'blaze']
[u'hurt', u'caloundra', u'balconi', u'fall']
[u'jail', u'assault', u'wife']
[u'jail', u'life', u'gangland', u'shoot']
[u'face', u'court', u'accus', u'jesmond', u'murder']
[u'maoist', u'rebel', u'kill', u'polic', u'offic', u'india']
[u'massa', u'play', u'favourit']
[u'mayor', u'continu', u'campaign', u'save', u'convent']
[u'mayor', u'think', u'ratepay', u'accept', u'higher', u'water']
[u'mayor', u'urg', u'strong', u'support', u'wagga', u'hospit', u'ralli']
[u'mayor', u'warn', u'govt', u'water', u'takeov', u'mean', u'rat', u'rise']
[u'mcewen', u'win', u'battl', u'sprinter', u'tirreno']
[u'mcgrath', u'edg', u'closer', u'wicket', u'record']
[u'mcmillan', u'injur', u'net', u'doubt', u'kiwi']
[u'meatwork', u'legal', u'action', u'visa', u'approv']
[u'meet', u'discuss', u'camel', u'food', u'plan']
[u'miner', u'highlight', u'indigen', u'job', u'scheme']
[u'misguid', u'bird', u'black', u'nerang', u'area']
[u'mokbel', u'sister', u'jail']
[u'moodi', u'bat', u'world', u'minnow']
[u'see', u'bigger', u'crowd', u'flock', u'farmer', u'market']
[u'move', u'asylum', u'seeker', u'nauru', u'wast', u'money']
[u'push', u'govern', u'focus', u'wangaratta']
[u'murray', u'advanc', u'quarter', u'final']
[u'natur', u'citizenship']
[u'york', u'restaurateur', u'cook', u'pizza']
[u'nile', u'singl', u'green', u'random', u'drug', u'test']
[u'korean', u'deleg', u'visit', u'aust']
[u'confid', u'motion', u'emerg', u'servic']
[u'loss', u'promis', u'sugar', u'merger']
[u'take', u'tough', u'stanc', u'illicit', u'drug']
[u'govt', u'push', u'tennant', u'creek', u'servic']
[u'opposit', u'plan', u'away', u'macfarlan']
[u'pair', u'face', u'court', u'home', u'invas']
[u'palmer', u'consid', u'honorari', u'starter']
[u'parent', u'applaud', u'cathol', u'school', u'report', u'card']
[u'patchi', u'rain', u'make', u'impact']
[u'penguin', u'mayor', u'push', u'heritag', u'chang']
[u'petit', u'urg', u'legalis', u'prostitut']
[u'owner', u'foul', u'caravan', u'park', u'accommod']
[u'pilot', u'crash', u'plane', u'report', u'problem', u'day']
[u'porn', u'mogul', u'lunch']
[u'podcast', u'australia', u'scotland']
[u'polic', u'miss', u'woman', u'bodi']
[u'polic', u'identifi', u'underworld', u'figur', u'murder']
[u'polic', u'investig', u'hervey', u'attack']
[u'polic', u'tarrawanna', u'murder', u'victim']
[u'polic', u'probe', u'wilson', u'theft']
[u'polic', u'road', u'crackdown', u'concert', u'visitor', u'start']
[u'pollock', u'dismiss', u'mcgrath', u'jib', u'vulner']
[u'price', u'high', u'countri', u'cattl', u'sale']
[u'qanta', u'track', u'deliv', u'growth']
[u'rain', u'wash', u'croc', u'studi']
[u'rawnet', u'clear', u'unregist', u'chariti']
[u'ray', u'contest']
[u'reaction', u'lunch', u'porn', u'mogul', u'exagger']
[u'elect', u'strategi']
[u'region', u'women', u'join', u'breast', u'cancer', u'survivor', u'studi']
[u'renat', u'mokbel', u'appeal', u'time', u'sureti']
[u'rescuer', u'consid', u'braveri', u'award', u'fieri']
[u'retail', u'want', u'polic', u'crackdown', u'mall', u'violenc']
[u'revamp', u'plan', u'waltz', u'matilda', u'centr']
[u'rspca', u'struggl', u'accommod', u'dump', u'kitten']
[u'rspca', u'piggeri', u'complaint', u'handl']
[u'rudd', u'pledg', u'hybrid', u'develop']
[u'rush', u'death', u'penalti', u'say', u'lawyer']
[u'santoro', u'share', u'revel']
[u'student', u'share', u'winemak', u'skill', u'teen']
[u'sharehold', u'green', u'light', u'rebel', u'sport', u'takeov']
[u'shed', u'owner', u'urg']
[u'smith', u'readi', u'unit', u'titl', u'push']
[u'smith', u'wont', u'fall', u'aussi', u'hype']
[u'lanka', u'ordeal', u'await', u'debut', u'bermuda']
[u'stick', u'stone']
[u'stirl', u'judg', u'comment', u'alcohol', u'relat']
[u'strong', u'wind', u'king', u'blaze']
[u'survey', u'reveal', u'health', u'servic', u'access', u'worri']
[u'suspect', u'admit', u'respons', u'sept', u'attack']
[u'suspect', u'admit', u'respons', u'sept', u'attack']
[u'swan', u'deni', u'enter', u'mudsling', u'competit']
[u'symond', u'eye', u'return', u'netherland']
[u'talabani', u'return', u'home', u'ill']
[u'tara', u'storm', u'clean', u'continu']
[u'govt', u'urg', u'contribut', u'owner', u'grant']
[u'impact', u'fair', u'commiss', u'control']
[u'teenag', u'sentenc', u'jail', u'role', u'cronulla']
[u'teen', u'lucki', u'surviv', u'road', u'crash']
[u'thiev', u'assault', u'woman', u'airli', u'beach']
[u'thousand', u'dark', u'gladston', u'blackout']
[u'tiger', u'take', u'ninth', u'consecut', u'award', u'rank']
[u'tsvangirai', u'tell', u'polic', u'beat']
[u'freez', u'plan', u'privatis', u'resid']
[u'innov', u'campus', u'secur', u'tenant']
[u'union', u'defend', u'member', u'protest', u'bridg', u'walk']
[u'union', u'fear', u'law', u'compromis', u'timber', u'site', u'safeti']
[u'upgrad', u'internet', u'servic', u'order', u'prioriti']
[u'vaughan', u'confid', u'fit', u'england', u'open']
[u'stand', u'firm', u'govt', u'control', u'murray']
[u'vicforest', u'stand', u'timber', u'auction', u'scheme']
[u'govt', u'announc', u'budget', u'surplus', u'improv']
[u'victori', u'perfect', u'trick', u'push', u'pont']
[u'viduka', u'carl', u'name', u'socceroo', u'squad']
[u'water', u'save', u'recycl', u'wast', u'water']
[u'weightlift', u'ban', u'year']
[u'welfar', u'organis', u'push', u'homeless']
[u'western', u'power', u'address', u'emerg', u'hotlin', u'woe']
[u'whos', u'wors']
[u'woman', u'die', u'highway', u'crash']
[u'woman', u'guilti', u'drug', u'bludgeon', u'facto']
[u'work', u'start', u'children', u'centr']
[u'zimbabw', u'coventri', u'splash']
[u'zinifex', u'find', u'target', u'lead', u'level', u'kid']
[u'world', u'polic', u'game', u'begin']
[u'aborigin', u'group', u'judg', u'comment', u'alcohol']
[u'adelaid', u'compani', u'fin', u'crane', u'fall', u'incid']
[u'afghan', u'open']
[u'mourn', u'offic', u'lose', u'garuda', u'crash']
[u'alonso', u'sizzl', u'practic']
[u'anti', u'fluorid', u'protest', u'grit', u'teeth', u'fight']
[u'armidal', u'patrol', u'boat', u'return', u'duti']
[u'auction', u'help', u'boost', u'water', u'suppli']
[u'asylum', u'seeker', u'claim', u'tortur', u'lankan', u'armi']
[u'asylum', u'seeker', u'nauru', u'tomorrow']
[u'ponder', u'slam', u'round', u'robin']
[u'australian', u'team', u'pull', u'motogp']
[u'award', u'win', u'architect', u'canberra']
[u'bammer', u'advanc', u'indian', u'well']
[u'banker', u'injur', u'garuda', u'crash', u'recov']
[u'bank', u'sector', u'drag', u'market']
[u'barg', u'mishap', u'prompt', u'zinifex', u'load', u'review']
[u'bark', u'tableland', u'locust', u'plagu']
[u'bccs', u'payrol', u'disgrac']
[u'bega', u'chees', u'see', u'benefit', u'better', u'intern']
[u'bellingen', u'council', u'decid', u'stream']
[u'crowd', u'expect', u'richmond', u'collingwood']
[u'ralli', u'turnout', u'back', u'push', u'hospit']
[u'bowen', u'thurston', u'round', u'bronco']
[u'boyl', u'odd', u'mayor', u'health', u'plan']
[u'bradshaw', u'preseason', u'final']
[u'bradshaw', u'rest', u'preseason', u'final']
[u'brigitt', u'case', u'show', u'terror', u'measur', u'work']
[u'brigitt', u'jail', u'plan', u'aust', u'terror', u'attack']
[u'british', u'friend', u'death', u'iraq', u'unlaw']
[u'bronco', u'threaten', u'titan']
[u'broom', u'prison', u'condit', u'liken', u'world']
[u'bruce', u'highway', u'upgrad', u'track', u'start']
[u'busselton', u'move', u'ahead', u'tropez', u'treati']
[u'catch', u'studi', u'northern', u'prawn', u'fisheri']
[u'minist', u'resign', u'island']
[u'caloundra', u'school', u'asbesto', u'clean']
[u'candid', u'offer', u'free', u'beer', u'ballina']
[u'candid', u'address', u'traffic', u'woe']
[u'cape', u'york', u'wind', u'farm', u'oper', u'year']
[u'crash', u'leav', u'trio', u'hospit']
[u'carnarvon', u'gorg', u'section', u'reopen', u'flood']
[u'ralli', u'boost', u'loxton', u'waikeri', u'coffer']
[u'castlemain', u'ambul', u'time', u'put', u'live', u'risk']
[u'castro', u'year', u'elect']
[u'chairman', u'address', u'grape', u'price', u'worri']
[u'cemeteri', u'stand', u'vertic', u'burial']
[u'chatti', u'draw', u'crowd', u'tech', u'fair']
[u'cherri', u'ventur', u'wreck', u'near', u'go']
[u'chief', u'thrash', u'lion']
[u'china', u'legalis', u'privat', u'properti']
[u'citizenship', u'test', u'diminish', u'australia']
[u'closer']
[u'communiti', u'group', u'hold', u'senat', u'probe', u'inform']
[u'congress', u'echo', u'call', u'alcohol', u'abus']
[u'council', u'decid', u'cost', u'silt', u'plan']
[u'council', u'green', u'light', u'market', u'team', u'fund']
[u'councillor', u'cast', u'doubt', u'wind', u'farm', u'afford']
[u'council', u'seek', u'shop', u'centr', u'plan', u'detail']
[u'council', u'urg', u'environ', u'code', u'farm']
[u'council', u'legal', u'cost', u'ritz', u'arcad', u'compo']
[u'court', u'order', u'mokbel', u'relat', u'stay', u'jail']
[u'court', u'want', u'clark', u'rape', u'appeal', u'case', u'speed']
[u'darl', u'river', u'blue', u'green', u'alga', u'level', u'drop']
[u'debnam', u'bow', u'poll', u'result']
[u'debnam', u'poll']
[u'draw', u'krejza', u'face']
[u'drought', u'impact', u'rural', u'children', u'worri']
[u'thuggeri']
[u'enthusiast', u'descend', u'darwin', u'glimps']
[u'evan', u'honesti', u'integr']
[u'aristocrat', u'employe', u'seek', u'lighter', u'sentenc']
[u'titan', u'carney', u'switch', u'cod']
[u'fall', u'suppli', u'surpris', u'water', u'author']
[u'farrugia', u'memori', u'council', u'agenda']
[u'father', u'jail', u'fern', u'theft', u'gippsland']
[u'father', u'jail', u'steal', u'worth', u'tree']
[u'govt', u'formalis', u'contribut', u'rail']
[u'ferrari', u'gain', u'earli', u'edg', u'aussi']
[u'fiji', u'look', u'hold', u'elect', u'year']
[u'fire', u'tabcorp', u'boss', u'defend']
[u'firefight', u'expect', u'contain', u'otway', u'rang', u'blaze']
[u'flegg', u'drought', u'comment', u'damag', u'tourism']
[u'flower', u'demand', u'sport', u'sanction', u'zimbabw']
[u'alinta', u'take']
[u'fuel', u'consumpt']
[u'citizen']
[u'genia', u'earn', u'start', u'spot', u'forc']
[u'gibb', u'refus', u'haunt', u'nightmar']
[u'govern', u'mismanag', u'transport', u'infrastructur']
[u'govt', u'defend', u'asylum', u'seeker', u'process', u'cost']
[u'govt', u'dept', u'air', u'south', u'west', u'hunt', u'fear']
[u'govt', u'option', u'murray', u'darl', u'flow']
[u'govt', u'upgrad', u'histor', u'bridg']
[u'govt', u'urg', u'budget', u'surplus', u'stimul']
[u'green', u'group', u'attack', u'council', u'water', u'plan']
[u'green', u'fear', u'chang', u'delay', u'superpip']
[u'green', u'question', u'plant', u'fuel', u'suppli']
[u'gunn', u'pulp', u'project', u'need', u'greater', u'scrutini']
[u'gunn', u'undecid', u'futur', u'pulp']
[u'hackett', u'pressur', u'cotterel']
[u'hodg', u'reli', u'round', u'credenti']
[u'hous', u'dept', u'continu', u'action']
[u'howard', u'meet', u'afghanistan']
[u'hundr', u'honour', u'garuda', u'crash', u'victim', u'oneil']
[u'hundr', u'tribut', u'garuda', u'crash', u'victim']
[u'hundr', u'tribut', u'garuda', u'crash', u'victim']
[u'hurley', u'manslaught', u'trial', u'june']
[u'inertia', u'environ', u'baffl']
[u'ing', u'marshal', u'clash', u'keen', u'anticip']
[u'investig', u'flag', u'distract', u'caus', u'ship']
[u'ireland', u'zimbabw']
[u'javan', u'pond', u'heron']
[u'jerramungup', u'student', u'disadvantag', u'educ']
[u'kalgoorli', u'offer', u'justic', u'complex', u'assur']
[u'kuznetsova', u'reach', u'indian', u'well', u'semi']
[u'labor', u'elect', u'debnam']
[u'latho', u'look', u'stake', u'contract', u'claim']
[u'legal', u'action', u'take', u'mudge', u'shop', u'centr']
[u'liber', u'leader', u'say', u'labor', u'elect']
[u'liber', u'urg', u'labor', u'cancel', u'prefer', u'deal']
[u'london', u'olymp', u'budget', u'rise']
[u'mackay', u'make', u'tiger']
[u'mackinnon', u'scoop', u'award']
[u'malcolm', u'edey', u'speech']
[u'guilti', u'rap', u'releas', u'custodi']
[u'jail', u'year', u'manslaught']
[u'jail', u'gold', u'coast', u'hotel', u'sieg']
[u'man', u'clark', u'lectur']
[u'stab', u'western', u'sydney']
[u'extradit', u'face', u'murder', u'charg']
[u'mayor', u'campaign', u'port', u'access', u'road']
[u'meet', u'fail', u'convent', u'solut']
[u'miller', u'competit', u'merg', u'mulgrav']
[u'mozzi', u'invad', u'mandurah']
[u'demand', u'water', u'pipelin', u'answer']
[u'look', u'feder', u'govt', u'chaffey', u'expans']
[u'push', u'action', u'address', u'eden', u'social', u'woe']
[u'say', u'benowa', u'school', u'face', u'asbesto', u'threat']
[u'say', u'nurs', u'home', u'better']
[u'murray', u'anticip', u'thurston', u'hunt', u'showdown']
[u'myer', u'chief', u'say', u'closur', u'plan']
[u'myer', u'harri', u'scarf', u'store']
[u'airport', u'secur', u'rule', u'includ', u'frisk']
[u'citizen']
[u'offer', u'drought', u'support', u'farmer']
[u'law', u'allow', u'landhold', u'extend', u'leas']
[u'rural', u'financi', u'counsellor', u'central', u'west']
[u'nile', u'test', u'drug', u'parliament']
[u'ofarrel', u'stay', u'quiet', u'leadership', u'ambit']
[u'opposit', u'promis', u'region', u'road']
[u'opposit', u'olymp', u'style', u'transport', u'impract']
[u'pakistani', u'polic', u'break', u'protest', u'judg']
[u'owner', u'hous', u'fear', u'council']
[u'phillip', u'quit', u'redback', u'coach']
[u'angri', u'disappoint', u'santoro']
[u'consid', u'troop', u'afghanistan']
[u'opposit', u'pressur', u'somar', u'tabl', u'moti']
[u'polic', u'investig', u'school', u'acid', u'attack']
[u'polic', u'uncov', u'marijuana', u'crop', u'adelaid', u'hill']
[u'port', u'author', u'beat', u'lake', u'entranc', u'sand']
[u'powerlink', u'stand', u'collinsvill', u'effort']
[u'power', u'saint', u'tiger', u'docker', u'post', u'preseason', u'win']
[u'preliminari', u'report', u'releas', u'fatal', u'tweed', u'plane']
[u'reliev', u'season', u'eventu']
[u'lifestyl', u'ruin', u'govt', u'inact', u'flegg']
[u'provid', u'pipelin', u'plan']
[u'railcorp', u'blame', u'mainten', u'failur', u'rail', u'chao']
[u'rapist', u'jail', u'highlight', u'crime', u'databas', u'valu']
[u'rate', u'rise', u'like', u'comment', u'economist']
[u'warn', u'higher', u'rat', u'amid']
[u'establish', u'statutori', u'author']
[u'report', u'find', u'drought', u'massiv', u'kill', u'caus']
[u'rescu', u'chopper', u'relief', u'central']
[u'resid', u'await', u'blood', u'lead', u'level', u'test', u'result']
[u'road', u'repair', u'isol', u'flood', u'town']
[u'roddick', u'nadal', u'semi', u'final', u'clash']
[u'roger', u'elliott', u'domest', u'cricket', u'award']
[u'russia', u'build', u'crucial', u'pipelin']
[u'govt', u'accus', u'ignor', u'infest', u'workplac']
[u'govt', u'probe', u'water', u'recycl', u'plant', u'plan']
[u'miner', u'export', u'earn', u'increas']
[u'miner', u'export']
[u'santo', u'resign']
[u'santoro', u'resign', u'frontbench']
[u'santoro', u'step', u'frontbench']
[u'santo', u'santoro', u'resign']
[u'scientist', u'hope', u'improv', u'weather', u'forecast']
[u'senat', u'forc', u'govt', u'alter', u'access', u'card']
[u'sept', u'suspect', u'admit', u'kill', u'journalist']
[u'seven', u'arrest', u'stab', u'murder', u'british']
[u'shepherd', u'boot', u'forc', u'red', u'rout']
[u'shire', u'look', u'drought', u'proof']
[u'shopper', u'need', u'food', u'conserv']
[u'charg', u'high', u'risk', u'drug', u'bust']
[u'stanhop', u'unawar', u'grassbi', u'statu', u'plan']
[u'storm', u'edg', u'tiger', u'thriller']
[u'storm', u'lead', u'tiger', u'half', u'time']
[u'surgeri', u'toowoomba', u'stab', u'victim']
[u'survey', u'reveal', u'grow', u'coast', u'tourism', u'figur']
[u'electr', u'cost', u'rise']
[u'task', u'forc', u'chief', u'welcom', u'access', u'card', u'delay']
[u'task', u'forc', u'defend', u'qanta', u'centr', u'job']
[u'tenterfield', u'mayor', u'happi', u'sewag', u'treatment']
[u'test', u'content']
[u'reassess', u'stilnox', u'warn']
[u'thousand', u'expect', u'lucindal', u'field', u'day']
[u'thwait', u'reaffirm', u'duck', u'hunt', u'support']
[u'time', u'run', u'drought']
[u'program', u'launch']
[u'tourism', u'industri', u'see', u'potenti', u'benefit', u'japan']
[u'trader', u'associ', u'want', u'secur', u'guard', u'mall']
[u'trucki', u'die', u'coolac', u'head']
[u'tsvangirai', u'leav', u'hospit', u'bruis']
[u'turnbul', u'see', u'merit', u'lake', u'mokoan', u'plan']
[u'cours', u'offer', u'polic', u'leadership', u'train']
[u'uni', u'work', u'nation', u'agricultur', u'educ', u'plan']
[u'boost', u'iraqi', u'armi', u'train']
[u'forc', u'mistaken', u'shoot', u'afghanistan', u'polic']
[u'senat', u'scuttl', u'democrat', u'troop', u'withdraw', u'plan']
[u'conveni']
[u'say', u'concert', u'good', u'drought', u'distract']
[u'consid', u'melbourn', u'crowd', u'limit']
[u'get', u'famili', u'violenc', u'prevent', u'unit']
[u'weather', u'agenc', u'say', u'data', u'show', u'warmest', u'winter']
[u'western', u'power', u'consid', u'altern', u'power', u'suppli']
[u'windi', u'work', u'consist']
[u'world', u'championship', u'indic', u'beij', u'say']
[u'world', u'import', u'ash', u'freddi']
[u'world', u'oldest', u'turn']
[u'test']
[u'youth', u'coalit', u'push', u'indigen', u'hous']
[u'escap', u'british', u'militari', u'prison', u'iraq']
[u'kill', u'injur', u'russian', u'plane', u'crash']
[u'accus', u'arriv', u'face', u'katherin', u'murder']
[u'armidal', u'charg', u'make', u'child', u'porn']
[u'australian', u'garuda', u'lawsuit']
[u'australia', u'capabl', u'plan', u'tatter']
[u'aust', u'soldier', u'injur', u'afghan', u'attack']
[u'aust', u'soldier', u'injur', u'afghan', u'rocket', u'attack']
[u'bangladesh', u'team', u'shock', u'player', u'death']
[u'block', u'fall', u'spain']
[u'blue', u'griffith', u'weakest', u'link']
[u'bomber', u'cat', u'secur', u'preseason', u'win']
[u'britain', u'call', u'action', u'zimbabw']
[u'brough', u'upbeat', u'year', u'leas', u'talk']
[u'call', u'widespread', u'flourid']
[u'canberra', u'scientist', u'identifi', u'dwarf', u'galaxi']
[u'carlton', u'relish', u'game', u'experi']
[u'cautious', u'australia', u'hold', u'symond']
[u'claim', u'petrol', u'compani', u'take', u'advantag']
[u'closer']
[u'closer']
[u'coalit', u'defenc', u'forc', u'plan']
[u'crusad', u'creep']
[u'debnam', u'defend', u'defeatist', u'attitud']
[u'debnam', u'play', u'elect', u'defeat', u'outburst']
[u'dept', u'deni', u'cost', u'blow', u'defenc', u'program']
[u'dont', u'overplay', u'global', u'warm', u'threat', u'scientist']
[u'english', u'backpack', u'drown', u'perth']
[u'doctor', u'question', u'elect', u'pledg']
[u'ferrari', u'melbourn']
[u'fevola', u'boot', u'blue', u'glori']
[u'raze', u'melbourn', u'mattress', u'factori']
[u'fluorid', u'water', u'abbott', u'tell']
[u'agent', u'blast', u'reckless', u'out']
[u'blame', u'white', u'hous', u'blow']
[u'gibb', u'blitz', u'fire', u'protea', u'huge']
[u'gibb', u'smash', u'six', u'dutch']
[u'govt', u'lose', u'vote', u'santoro', u'departur', u'minchin']
[u'govt', u'move', u'slowli', u'pilbara', u'hous']
[u'govt', u'blame', u'power', u'price', u'hike', u'opposit', u'say']
[u'govt', u'defenc', u'forc', u'plan']
[u'green', u'urg', u'nanomateri', u'toiletri']
[u'gunmen', u'attack', u'convoy', u'gaza']
[u'haniyeh', u'urg', u'recognit', u'palestinian', u'govt']
[u'hantuchova', u'kuznetsova', u'indian', u'well', u'final']
[u'hickss', u'lawyer', u'lodg', u'stop', u'militari']
[u'holder', u'sevilla', u'face', u'spur', u'uefa', u'quarter']
[u'howard', u'demand', u'minist', u'evalu', u'sharehold']
[u'howard', u'flight', u'make', u'emerg', u'land']
[u'hyne', u'clear', u'danger', u'tackl']
[u'iemma', u'pledg', u'eyesight', u'test', u'preschool', u'children']
[u'iemma', u'receiv', u'rebuk', u'debnam', u'damag', u'control']
[u'india', u'wari', u'bangladesh']
[u'injur', u'soldier', u'work', u'afghanistan']
[u'interview', u'john', u'mitchel', u'eddi', u'jone']
[u'iranian', u'presid', u'maintain', u'nuclear', u'stanc']
[u'iraqi', u'vice', u'presid', u'unveil', u'year', u'plan']
[u'jewelleri', u'steal', u'convent', u'centr', u'stall']
[u'kiwi', u'face', u'england', u'south', u'africa']
[u'kiwi', u'game', u'hand', u'beat', u'england']
[u'firm', u'say', u'australian', u'mull', u'garuda', u'crash']
[u'lennon', u'urg', u'gunn', u'pulp', u'assess']
[u'lyon', u'impress', u'man', u'debut']
[u'macquari', u'pest', u'erad', u'deal', u'reach']
[u'arrest', u'child', u'assault', u'shop']
[u'die', u'showground', u'attack']
[u'jail', u'assault', u'stepdaught']
[u'mediat', u'casey', u'lament', u'lack', u'banter', u'golf']
[u'michigan', u'churchgoer', u'mourn', u'faith', u'turkey']
[u'minor', u'parti', u'control', u'upper', u'hous']
[u'mitchel', u'delight', u'bonus', u'point']
[u'mourinho', u'urg', u'lampard', u'terri', u'stay']
[u'mugab', u'threaten', u'expel', u'western', u'diplomat']
[u'murray', u'djokov', u'semi', u'final']
[u'murray', u'inflow', u'restrict', u'hurt', u'environ']
[u'mysteri', u'surround', u'russian', u'report', u'death']
[u'nixon', u'plunkett', u'england', u'hope', u'kiwi']
[u'korea', u'say', u'nuclear', u'shutdown', u'bank', u'freez']
[u'interview', u'grant', u'rovelli', u'wade', u'mckinnon']
[u'open', u'ceremoni', u'honour', u'thorp']
[u'pacif', u'nation', u'reopen', u'fiji', u'diplomat', u'tie']
[u'pakistan', u'prepar', u'irish', u'surpris']
[u'pearl', u'widow', u'unmov', u'confess']
[u'petrol', u'sniff', u'crisi', u'youth', u'worker', u'say']
[u'demand', u'minist', u'evalu', u'sharehold']
[u'polic', u'charg', u'sydney', u'stab']
[u'polic', u'investig', u'death', u'report', u'brawl']
[u'polic', u'investig', u'incid', u'gold', u'coast']
[u'pont', u'predict', u'feast', u'protea']
[u'protest', u'mark', u'anniversari', u'iraq']
[u'pulp', u'deal', u'doesnt', u'preced', u'govt', u'say']
[u'quiet', u'night', u'bathurst', u'polic', u'riot', u'squad']
[u'rare', u'bird', u'creat', u'darwin', u'tourist', u'boom']
[u'retail', u'group', u'welcom', u'harri', u'scarf', u'takeov', u'deal']
[u'riot', u'squad', u'move', u'prevent', u'bathurst']
[u'rise', u'inflat', u'push', u'stock']
[u'sadr', u'citi', u'mayor', u'wound', u'baghdad', u'attack']
[u'labor', u'divid', u'uranium', u'mine', u'polici']
[u'santoro', u'departur', u'hurt', u'govt', u'minchin']
[u'santoro', u'resign', u'distract', u'liber']
[u'santoro', u'scandal', u'govt', u'vote', u'minchin']
[u'scotland', u'captain', u'fli', u'home', u'aunt', u'die']
[u'shark', u'stuart', u'win', u'start']
[u'shepherd', u'boot', u'forc', u'red', u'rout']
[u'stormer', u'continu', u'waratah', u'miseri']
[u'styri', u'oram', u'england']
[u'swimmer', u'drown', u'sleaford']
[u'taliban', u'extend', u'deadlin', u'italian', u'journalist']
[u'talk', u'host', u'larri', u'king', u'undergo', u'arteri']
[u'taxi', u'driver', u'charg', u'alleg', u'indec', u'assault']
[u'teen', u'get', u'tougher', u'sentenc', u'brisban', u'fatal']
[u'thompson', u'wipe', u'huge', u'blow', u'roo']
[u'ugandan', u'soldier', u'year', u'court', u'rule']
[u'accept', u'iranian', u'leader', u'request', u'trip']
[u'reject', u'coron', u'find', u'friend', u'death']
[u'reject', u'find', u'friend', u'death']
[u'reject', u'friend', u'death', u'find']
[u'vail', u'prais', u'swift', u'action', u'santoro']
[u'warrior', u'eel']
[u'webber', u'qualifi', u'seventh', u'melbourn']
[u'webber', u'reflect', u'dispirit']
[u'woman', u'charg', u'melbourn', u'stab']
[u'woman', u'name', u'nation', u'live', u'treasur', u'die']
[u'iraqi', u'poison', u'chlorin', u'bomb', u'attack']
[u'horror', u'spate', u'road', u'accid']
[u'arrest', u'polic', u'call', u'rowdi', u'adelaid']
[u'abbott', u'hang', u'petrol', u'sniff', u'victori']
[u'score', u'media', u'award']
[u'afghan', u'artefact', u'return', u'nation', u'museum']
[u'dead', u'russia', u'plane', u'crash']
[u'aussi', u'settl', u'open', u'water', u'bronz']
[u'australia', u'symond', u'boost']
[u'bangladeshi', u'street', u'victori']
[u'bangladesh', u'cours', u'india', u'upset']
[u'bangladesh', u'teenag', u'send', u'india', u'crash']
[u'barca', u'clear']
[u'barnett', u'resurrect', u'kimberley', u'perth', u'canal', u'water', u'plan']
[u'bligh', u'open', u'council', u'free', u'water', u'tank', u'plan']
[u'call', u'australia', u'guantanamo', u'close']
[u'celeri', u'wield', u'chelsea', u'fan', u'face']
[u'cheetah', u'brumbi']
[u'chlorin', u'bomb', u'attack', u'iraq', u'kill', u'hundr']
[u'closer']
[u'closer']
[u'commiss', u'announc', u'date', u'elect']
[u'council', u'mull', u'free', u'rainwat', u'tank', u'home']
[u'crew', u'battl', u'blaze', u'queanbeyan', u'industri']
[u'debnam', u'issu', u'transport', u'infrastructur', u'polici']
[u'debnam', u'launch', u'road', u'plan']
[u'dept', u'deni', u'cost', u'blow']
[u'doom', u'garuda', u'jet', u'land', u'speed', u'higher', u'normal']
[u'downpour', u'close', u'causeway', u'alic', u'spring']
[u'driver', u'die', u'moorooka', u'crash']
[u'emerg', u'land', u'howard', u'iraq']
[u'emerg', u'land', u'iraq']
[u'engin', u'chang', u'demot', u'massa', u'grid']
[u'england', u'player', u'fin', u'late', u'night', u'booz']
[u'fin', u'insult', u'pakistan', u'shock', u'irish', u'loss']
[u'firefight', u'condit', u'agreement', u'talk']
[u'blame', u'russian', u'plane', u'crash']
[u'minist', u'deni', u'sharehold', u'conflict']
[u'injur', u'roma', u'plane', u'crash']
[u'injur', u'roll']
[u'franc', u'ireland', u'nation', u'titl']
[u'gilchrist', u'predict', u'world']
[u'gillard', u'question', u'vanston', u'chines', u'lesson']
[u'goward', u'deni', u'claim', u'water', u'polici', u'split']
[u'hantuchova', u'captur', u'second', u'indian', u'well', u'titl']
[u'harbour', u'bridg', u'fan', u'celebr', u'anniversari']
[u'harbour', u'bridg', u'includ', u'heritag', u'list']
[u'holyfield', u'stop', u'maddalon', u'comeback']
[u'howard', u'flight', u'make', u'emerg', u'land']
[u'huge', u'crowd', u'expect', u'harbour', u'bridg', u'anniversari']
[u'hundr', u'thousand', u'celebr', u'harbour', u'bridg']
[u'iemma', u'pledg', u'million', u'help', u'children']
[u'iemma', u'unveil', u'harbour', u'bridg', u'memori']
[u'india', u'slam', u'shock', u'bangladesh', u'defeat']
[u'iraq', u'surg', u'strategi', u'work', u'general', u'say']
[u'ireland', u'dump', u'pakistan']
[u'ireland', u'aussi', u'captain', u'want', u'windi']
[u'isra', u'call', u'palestinian', u'boycott']
[u'israel', u'reject', u'palestinian', u'uniti', u'govern']
[u'john', u'stretcher', u'knight', u'battl', u'bulldog']
[u'john', u'stretcher', u'bulldog', u'clash']
[u'knight', u'lose', u'john', u'thriller', u'bulldog']
[u'labor', u'pick', u'seat', u'polit', u'comment']
[u'legionella', u'bacteria', u'central', u'aust', u'resort']
[u'lennon', u'confid', u'deal', u'gunn', u'pulp']
[u'major', u'parti', u'glove', u'tight', u'contest', u'sydney']
[u'arrest', u'assault', u'girl']
[u'charg', u'child', u'assault']
[u'charg', u'assault', u'policeman', u'sydney']
[u'kill', u'farm', u'tractor', u'accid']
[u'mexican', u'soldier', u'polic']
[u'milit', u'afghan', u'nose', u'ear']
[u'mortlock', u'break', u'hand', u'super']
[u'nadal', u'beat', u'roddick', u'reach', u'indian', u'well', u'final']
[u'newman', u'face', u'question', u'suburban', u'high', u'rise', u'plan']
[u'palestinian', u'uniti', u'govt', u'swear']
[u'korea', u'demand', u'lift', u'bank', u'sanction']
[u'interview', u'jarrod', u'mullen', u'brian', u'smith']
[u'interview', u'luke', u'bailey', u'jason', u'ryle']
[u'dead', u'miss', u'boat', u'accid']
[u'report', u'loss', u'friend']
[u'opposit', u'urg', u'action', u'faulti', u'septic', u'tank']
[u'pakistan', u'face', u'elimin', u'ireland']
[u'pakistan', u'verg', u'elimin']
[u'parachutist', u'injur', u'agricultur']
[u'flight', u'make', u'emerg', u'land']
[u'prais', u'raaf', u'crew', u'midair', u'drama']
[u'polic', u'charg', u'wollongong', u'murder']
[u'polic', u'charg', u'child', u'porn', u'offenc']
[u'polic', u'fear', u'miss', u'teen', u'disabl']
[u'polic', u'investig', u'perth', u'murder']
[u'polic', u'presenc', u'step', u'harbour', u'bridg']
[u'polic', u'probe', u'reptil', u'theft']
[u'pont', u'look', u'dutch', u'encount']
[u'protest', u'mark', u'iraq', u'anniversari']
[u'pyne', u'name', u'minist', u'age']
[u'pyne', u'replac', u'santoro']
[u'raikkonen', u'hold', u'pole']
[u'raikkonen', u'win', u'grand', u'prix']
[u'revel', u'celebr', u'patrick']
[u'rover', u'boss', u'vent', u'furi', u'west', u'winner']
[u'safeti', u'system', u'contain', u'mudflow']
[u'santoro', u'deni', u'conflict', u'sharehold']
[u'santoro', u'deni', u'latest', u'share', u'disclosur', u'report']
[u'santoro', u'fall', u'cost', u'liber', u'seat']
[u'senior', u'zimbabw', u'opposit', u'figur', u'arrest']
[u'offend', u'face', u'electron', u'monitor']
[u'southgat', u'back', u'rest', u'duke', u'sink', u'unit']
[u'lankan', u'navi', u'sink', u'ship', u'coast']
[u'surgeri', u'reattach', u'man', u'finger', u'brawl']
[u'sydneysid', u'turn', u'harbour', u'bridg']
[u'thousand', u'protest', u'iraq']
[u'time', u'serious', u'say', u'bangladesh', u'skipper']
[u'titan', u'dragon', u'level', u'break']
[u'titan', u'fall', u'short', u'season', u'open']
[u'tourist', u'drown', u'surf', u'near', u'noosa']
[u'turnbul', u'reject', u'ministeri', u'code', u'watchdog']
[u'charg', u'possess', u'steal', u'polic', u'uniform']
[u'unit', u'chelsea']
[u'vaughan', u'vow', u'canada']
[u'volcan', u'crater', u'burst', u'bank']
[u'webber', u'hit', u'critic']
[u'weekend', u'death', u'bring', u'road', u'toll']
[u'woman', u'child', u'critic', u'highway', u'crash']
[u'world', u'champ', u'open', u'melbourn']
[u'worldwid', u'protest', u'mark', u'anniversari', u'iraq']
[u'zimbabwean', u'opposit', u'attack', u'airport']
[u'dead', u'hurt', u'weekend', u'incid']
[u'abduct', u'doctor', u'lucki', u'aliv', u'polic']
[u'accus', u'front', u'court', u'attack', u'sydney', u'teen']
[u'plane', u'crash', u'victim', u'farewel']
[u'sign', u'global', u'climat', u'exchang', u'effort']
[u'alinta', u'sign', u'suppli', u'agreement']
[u'amplifi', u'stop', u'crush', u'bruce', u'roll']
[u'armidal', u'face', u'child', u'porn', u'charg']
[u'aussi', u'diver', u'struggl', u'springboard', u'prelim']
[u'aussi', u'cole', u'secur', u'silver']
[u'aussi', u'cole', u'dive', u'silver']
[u'ballarat', u'council', u'discuss', u'appeal']
[u'bank', u'make', u'takeov', u'bendigo', u'bank']
[u'barri', u'call', u'england', u'euro', u'qualifi']
[u'sorri', u'class', u'bodi', u'mishap']
[u'beatti', u'defend', u'busi', u'grant']
[u'bendigo', u'share', u'jump', u'takeov']
[u'billiton', u'offer', u'fund', u'advanc', u'cyclon']
[u'bodi', u'recov', u'sink', u'boat', u'carnarvon']
[u'bolling', u'take', u'fizz', u'tiger']
[u'bomb', u'kill', u'wind', u'dozen', u'iraq']
[u'boy', u'custodi', u'charg', u'fresh', u'offenc']
[u'british', u'youth', u'violenc', u'grow']
[u'busi', u'warn', u'wari', u'fake', u'money']
[u'busi', u'day', u'tribun']
[u'caloundra', u'prepar', u'age', u'popul']
[u'campaign', u'launch', u'child', u'protect']
[u'canowindra', u'push', u'reviv', u'marti', u'type', u'balloon']
[u'cardross', u'death', u'committ', u'hear', u'tell', u'scrap']
[u'carr', u'ban', u'match']
[u'carr', u'offer', u'match']
[u'centacar', u'geraldton', u'develop', u'servic']
[u'chang', u'afoot', u'sunbeam', u'food', u'board']
[u'clean', u'begin', u'prepar', u'kogan', u'creek']
[u'closer']
[u'closer']
[u'say', u'power', u'investig', u'possibl', u'feder']
[u'collinsvill', u'power', u'complex', u'task']
[u'communiti', u'group', u'offer', u'help', u'fundrais', u'swim']
[u'concert', u'provid', u'brief', u'drought', u'escap', u'farmer']
[u'contamin', u'water', u'alert', u'expect', u'lift']
[u'council', u'defend', u'work', u'agreement', u'process']
[u'councillor', u'push', u'hunt', u'dump', u'plan', u'rethink']
[u'council', u'member', u'join', u'nation', u'plan', u'confer']
[u'council', u'say', u'tank', u'plan', u'offer', u'water', u'boost']
[u'council', u'seek', u'feder', u'govt', u'commit', u'inland']
[u'cultur', u'link', u'explor', u'harmoni', u'week']
[u'doctor', u'lucki', u'aliv', u'carjack']
[u'doctor', u'highlight', u'improv', u'bundaberg', u'mental', u'health']
[u'downer', u'flag', u'concern', u'zimbabw', u'cricket', u'tour']
[u'downer', u'flag', u'concern', u'zimbabw', u'tour']
[u'driver', u'expect', u'charg', u'crash']
[u'drought', u'doesnt', u'stop', u'yass', u'success']
[u'drown', u'spark', u'unpatrol', u'beach', u'warn']
[u'rule', u'caus', u'cancer', u'cluster']
[u'esper', u'call', u'mass', u'lead', u'test']
[u'farmer', u'seek', u'elect', u'candid', u'firewe']
[u'farmer', u'struggl', u'increas', u'wild', u'attack']
[u'farmer', u'warn', u'emphasis', u'green', u'credenti']
[u'farmer', u'recov', u'cyclon']
[u'find', u'moti', u'inquiri', u'public']
[u'firm', u'check', u'endang', u'speci', u'plan', u'wind']
[u'fish', u'method', u'lion', u'risk', u'marin']
[u'aust', u'citizen', u'detain', u'author']
[u'gatecrash', u'incid', u'highlight', u'underag', u'drink']
[u'gate', u'doubt', u'impact', u'extra', u'troop']
[u'generat', u'quell', u'nois', u'complaint']
[u'gold', u'coast', u'ponder', u'leagu', u'licenc', u'competit']
[u'gold', u'coast', u'school', u'student', u'undertak', u'level']
[u'goulburn', u'murray', u'water', u'warn', u'water', u'theft']
[u'govt', u'consid', u'extra', u'drought', u'relief']
[u'govt', u'public', u'servic', u'restructur']
[u'goward', u'confus', u'voter', u'recycl', u'water', u'say']
[u'good', u'track', u'offend', u'minist']
[u'green', u'group', u'air', u'yarragade', u'aquif', u'fear']
[u'green', u'touch', u'gunn', u'pulp', u'plan']
[u'green', u'target', u'humphri', u'senat', u'seat']
[u'green', u'urg', u'govt', u'extravag', u'privat', u'school']
[u'griffith', u'harass', u'report', u'motion']
[u'group', u'seek', u'youth', u'allow', u'chang', u'hop']
[u'grow']
[u'hama', u'claim', u'isra', u'shoot']
[u'harrup', u'park', u'name', u'potenti', u'sport', u'stadium', u'site']
[u'hick', u'feder', u'court', u'case']
[u'hick', u'forcibl', u'sedat']
[u'high', u'lead', u'level', u'say', u'mayor']
[u'honour', u'beller']
[u'hope', u'medic', u'centr', u'kondinin', u'shire']
[u'howard', u'wit', u'hickss', u'feder', u'court', u'case']
[u'human', u'bone', u'remain', u'mysteri']
[u'hundr', u'honour', u'offic', u'kill', u'garuda']
[u'ibrahimov', u'strike', u'twice', u'inter', u'extend', u'lead']
[u'iemma', u'costa', u'refus', u'rule', u'increas']
[u'iemma', u'debnam', u'announc', u'polici']
[u'iemma', u'debnam', u'talk', u'tough', u'crime']
[u'inquest', u'death', u'custodi', u'hear', u'file']
[u'interview', u'ricki', u'pont', u'brad', u'hodg']
[u'inzi', u'quit', u'woolmer', u'death']
[u'irrig', u'welcom', u'water', u'alloc', u'extens']
[u'isra', u'call', u'palestinian', u'boycott']
[u'jana', u'name', u'championship', u'squad']
[u'joli', u'adopt', u'fast', u'track']
[u'jone', u'guilti', u'name', u'child', u'wit']
[u'labor', u'freez', u'privat', u'school', u'fund', u'govt', u'say']
[u'launceston', u'hospit', u'convers', u'finish']
[u'lead', u'miner', u'play', u'transport', u'fear']
[u'lennon', u'say', u'gunn', u'agre', u'pulp', u'process']
[u'lewthwait', u'indec', u'charg', u'case', u'mistak']
[u'lockyer', u'give', u'reason', u'smile']
[u'locki', u'give', u'reason', u'smile']
[u'london', u'polic', u'seek', u'fatal', u'teen', u'stab']
[u'major', u'wheat', u'grower', u'support', u'chang']
[u'accus', u'drink', u'drive', u'speed']
[u'charg', u'tarrawanna', u'murder']
[u'charg', u'shop', u'centr', u'attack']
[u'die', u'crash', u'near', u'braidwood']
[u'get', u'month', u'jail', u'beat', u'toddler']
[u'matern', u'wear', u'design', u'win', u'wool', u'fashion', u'award']
[u'mayor', u'reject', u'beach', u'shower', u'tourism', u'concern']
[u'mayor', u'urg', u'bushfir', u'manag', u'probe']
[u'media', u'union', u'critic', u'indigen', u'land', u'permit']
[u'meet', u'look', u'smooth', u'local', u'govt', u'merger']
[u'melioidosi', u'survivor', u'obvious', u'candid']
[u'million', u'bird', u'mask', u'need']
[u'label', u'aborigin', u'health', u'jail', u'stat']
[u'demand', u'explan', u'releas', u'patient']
[u'mulgrav', u'sharehold', u'consid', u'merger', u'plan']
[u'nation', u'murray', u'darl', u'candid', u'remain', u'beat']
[u'nation', u'senat', u'candid', u'follow', u'joyc', u'lead']
[u'nativ', u'fish', u'move', u'river', u'murray']
[u'natur', u'wonder', u'lure', u'foreign', u'visitor']
[u'nauru', u'set', u'deadlin', u'asylum', u'seeker', u'process']
[u'canberra', u'taxi', u'servic', u'get', u'readi']
[u'doomadge', u'communiti', u'council']
[u'newman', u'come', u'storey', u'suburban', u'high']
[u'norfolk', u'resid', u'final', u'mobil']
[u'lose', u'grip']
[u'govt', u'releas', u'detail', u'elect', u'cost']
[u'send', u'troop', u'east', u'timor']
[u'oper', u'treat', u'teen', u'snake', u'bite', u'victim']
[u'opposit', u'say', u'thompson', u'situat', u'dire']
[u'opposit', u'urg', u'polic', u'bendigo', u'mall']
[u'orana', u'region', u'host', u'region', u'growth', u'pilot', u'project']
[u'organis', u'combin', u'achiev', u'indigen', u'health']
[u'pakistan', u'cricket', u'coach', u'woolmer', u'die']
[u'parliamentari', u'inquiri', u'give', u'auspin', u'hope']
[u'patholog', u'compani', u'defend', u'servic']
[u'pentagon', u'investig', u'hick', u'drug', u'claim']
[u'pentagon', u'investig', u'hick', u'sedat', u'claim']
[u'pentagon', u'investig', u'hick', u'sedat', u'claim']
[u'phil', u'spector', u'murder', u'trial', u'loom']
[u'need', u'santoro', u'affair', u'like', u'hole', u'head']
[u'slide', u'kill']
[u'polic', u'hail', u'bathurst', u'riot', u'oper', u'success']
[u'polic', u'probe', u'assault', u'claim', u'elect']
[u'polic', u'seek', u'bash', u'irish', u'tourist']
[u'polic', u'stage', u'port', u'macquari', u'licens', u'oper']
[u'polic', u'union', u'boss', u'admit', u'contempt', u'coron']
[u'polic', u'capsicum', u'spray', u'break', u'fight']
[u'poll', u'find', u'grow', u'pessim', u'iraq']
[u'properti', u'develop', u'stand', u'trial', u'decept']
[u'public', u'school', u'requir', u'near', u'fund', u'union']
[u'govt', u'give', u'longreach', u'pool']
[u'red', u'genia', u'clear', u'injuri']
[u'region', u'driver', u'warn', u'fuel', u'price', u'rise']
[u'renter', u'hous']
[u'research', u'suggest', u'struggl', u'attract', u'young']
[u'ricciuto', u'return']
[u'roma', u'plane', u'crash', u'investig', u'continu']
[u'return']
[u'erupt', u'coalit', u'elect', u'cost']
[u'rudd', u'dump', u'latham', u'educ', u'polici']
[u'sack', u'worker', u'win', u'case']
[u'sack', u'worker', u'win', u'compo', u'claim']
[u'sack', u'worker', u'win', u'compo']
[u'coupl', u'fin', u'possess', u'fish', u'deton']
[u'santoro', u'spot', u'probabl', u'safe', u'say', u'flegg']
[u'scientist', u'predict', u'good', u'rain', u'winter']
[u'search', u'continu', u'elder', u'boat', u'mishap']
[u'search', u'continu', u'miss', u'bowen']
[u'search', u'find', u'miss', u'cairn', u'walker']
[u'sevilla', u'pace', u'barca', u'real']
[u'singh', u'win', u'arnold', u'palmer', u'invit']
[u'soil', u'studi', u'find', u'high', u'lead', u'level']
[u'sonni', u'remors', u'joey']
[u'south', u'jump', u'rooster']
[u'south', u'kick', u'monday', u'night', u'footi', u'style']
[u'speedo', u'cloth', u'chaser', u'target', u'debnam']
[u'steam', u'train', u'retir', u'track']
[u'word', u'kidnap', u'report']
[u'steal', u'croc', u'take', u'home']
[u'stress', u'kill', u'woolmer', u'say']
[u'student', u'develop', u'meelup', u'beach', u'redesign', u'plan']
[u'studi', u'consid', u'climat', u'chang', u'farm', u'impact']
[u'suicid', u'bomber', u'hit', u'embassi', u'convoy', u'kabul']
[u'summit', u'reject', u'paladin', u'takeov']
[u'super', u'hornet', u'land', u'darwin', u'train']
[u'sydney', u'face', u'japanes', u'test']
[u'sydney', u'firm', u'win', u'honest', u'stoush']
[u'sydney', u'harbour', u'bridg', u'turn']
[u'sydneysid', u'mark', u'harbour', u'bridg', u'celebr']
[u'takeov', u'talk', u'boost', u'aust', u'market']
[u'taliban', u'make', u'demand', u'releas', u'kidnap']
[u'govt', u'call', u'tender', u'vegi', u'market', u'plan']
[u'govt', u'decid', u'timber', u'propos']
[u'implement', u'anti', u'homophobia', u'school', u'program']
[u'charg', u'child', u'porn']
[u'tawqeet', u'go', u'dubai']
[u'teacher', u'feder', u'disappoint', u'labor']
[u'team', u'wear', u'black', u'armband', u'woolmer', u'tribut']
[u'teen', u'die', u'townsvill', u'crash']
[u'network', u'launch', u'right', u'issu']
[u'tiger', u'bounc', u'shaki', u'start']
[u'time', u'run', u'traralgon', u'bypass']
[u'toad', u'fenc', u'prove', u'effect']
[u'toxic', u'algal', u'bloom', u'lake', u'albani']
[u'truck', u'roll', u'put', u'driver', u'hospit']
[u'turner', u'fear', u'orang', u'botan', u'garden', u'threat']
[u'charg', u'drug', u'seizur']
[u'union', u'air', u'worker', u'accommod', u'worri']
[u'union', u'pressur', u'labor', u'commit', u'public']
[u'union', u'discuss', u'cut', u'goulburn', u'abattoir']
[u'uranium', u'price', u'spike', u'year', u'trickl']
[u'author', u'investig', u'hick', u'sedat', u'claim']
[u'super', u'hornet', u'touch', u'darwin']
[u'releas', u'freez', u'north', u'korean', u'fund']
[u'vampir']
[u'vanston', u'defend', u'spend', u'languag', u'effort']
[u'vanston', u'lesson']
[u'vaughan', u'take', u'freddi', u'boozer']
[u'voter', u'focus', u'govt', u'record', u'resign']
[u'voter', u'focus', u'resign']
[u'walker', u'wait', u'news', u'hand', u'injuri']
[u'water', u'author', u'criticis', u'bore', u'price']
[u'wellington', u'get', u'leagu']
[u'woman', u'complain', u'polic', u'wait']
[u'wool', u'factori', u'take', u'golden', u'fleec', u'trophi']
[u'woolmer', u'death', u'unbeliev', u'shock', u'pont']
[u'zimbabw', u'attack', u'airport']
[u'kill', u'russian', u'blast']
[u'question', u'esso', u'longford', u'plan']
[u'actsport', u'back', u'call', u'rebat', u'children']
[u'boss', u'back', u'cousin', u'suspens']
[u'embargo', u'palestinian', u'govt', u'continu']
[u'akabilk', u'comment', u'hous']
[u'albani', u'council', u'push', u'chang', u'fund']
[u'alic', u'spring', u'clown', u'doctor', u'celebr', u'anniversari']
[u'promis', u'disabl', u'group', u'home', u'wagga', u'wagga']
[u'analyst', u'propos', u'bendigo', u'takeov', u'unlik']
[u'aqi', u'seek', u'canin', u'recruit']
[u'reach', u'year', u'high']
[u'aussi', u'dollar', u'soar', u'highest', u'level', u'decad']
[u'australia', u'busi']
[u'baillieu', u'apologis', u'water', u'scaremong']
[u'balonn', u'shire', u'take', u'water', u'alloc', u'disput']
[u'bega', u'resid', u'face', u'rate', u'rise']
[u'busi', u'sign', u'carbon', u'reduct', u'scheme']
[u'blue', u'steadi', u'chase']
[u'bridgeston', u'privatis', u'deal', u'approv', u'worker']
[u'brogan', u'admit', u'punch', u'crow', u'support']
[u'brook', u'peterson', u'win', u'bronz']
[u'bush', u'call', u'patienc', u'iraq', u'anniversari']
[u'bush', u'iraq']
[u'busselton', u'vandal', u'medic', u'centr']
[u'cabl', u'joint', u'blame', u'underground', u'explos']
[u'cancer', u'concern']
[u'carjack', u'doctor', u'tell', u'traumat', u'experi']
[u'celta', u'fan', u'lucki', u'rabbit', u'feet']
[u'central', u'aust', u'farm', u'trial', u'oliv', u'product']
[u'closer']
[u'coalit', u'frustrat', u'opinion', u'poll', u'result']
[u'costello', u'fire', u'disgrac', u'liber', u'colleagu']
[u'council', u'keen', u'begin', u'pool', u'redevelop']
[u'council', u'discuss', u'wyndham', u'airport', u'futur']
[u'counsel', u'servic', u'prepar', u'declar']
[u'court', u'decis', u'creat', u'employ']
[u'cousin', u'suspend', u'eagl']
[u'crawford', u'plead', u'guilti', u'abus', u'umpir']
[u'crichton', u'brown', u'bar', u'lobbyist', u'list']
[u'croc', u'farm', u'disinfect', u'hatchl', u'avoid', u'chlamydia']
[u'confid', u'lake', u'rowland', u'expans', u'approv']
[u'accus', u'sexual', u'assault', u'daughter']
[u'dairi', u'farmer', u'current', u'levi', u'rate']
[u'dairi', u'farmer', u'industri', u'research']
[u'darwin', u'freight', u'depot', u'drug', u'bust']
[u'darwin', u'swim', u'club', u'push', u'heat', u'public', u'pool']
[u'dead', u'return', u'home', u'year']
[u'debnam', u'continu', u'campaign', u'sydney', u'south', u'west']
[u'democrat', u'want', u'disgrac', u'santoro', u'scrutinis']
[u'doctor', u'nurs', u'carri', u'bug', u'card']
[u'earli', u'elect']
[u'esper', u'forum', u'focus', u'lead', u'contamin']
[u'eurobodalla', u'council', u'say', u'wast', u'water']
[u'euro', u'champ', u'conced', u'lethal', u'leisel']
[u'polic', u'offic', u'jail', u'perjuri']
[u'famili', u'mourn', u'offic', u'kill', u'garuda', u'crash']
[u'famili', u'servic', u'build', u'year', u'away']
[u'farmer', u'urg', u'bounti', u'pest', u'threat']
[u'north', u'rememb', u'larri', u'year']
[u'fatal', u'baghdad', u'bomb', u'anniversari']
[u'feder', u'govt', u'consid', u'rail', u'corridor']
[u'flood', u'relief', u'airlift', u'remot', u'communiti']
[u'foster', u'bail', u'hear', u'adjourn']
[u'fruit', u'juic', u'fuel', u'childhood', u'obes', u'studi']
[u'gavaskar', u'regret', u'hook', u'comment']
[u'toowoomba', u'learn', u'environment', u'research']
[u'gold', u'coast', u'council', u'want', u'beach', u'shower']
[u'good', u'samaritan', u'urg', u'come', u'forward']
[u'govt', u'announc', u'joint', u'medic', u'school', u'fund']
[u'govt', u'defend', u'revamp', u'assess', u'process']
[u'govt', u'delay', u'introduct', u'nurs', u'home', u'abus', u'law']
[u'govt', u'denial', u'water', u'climat', u'chang', u'link']
[u'govt', u'undecid', u'gold', u'coast', u'rapid', u'transit', u'scheme']
[u'govt', u'vow', u'introduc', u'toll', u'free', u'number', u'access']
[u'govt', u'spend', u'turn', u'poll', u'gillard']
[u'grain', u'grower', u'equip', u'manag', u'wheat', u'sale']
[u'green', u'campaign', u'right', u'apart', u'resid']
[u'harsh', u'weather', u'boost', u'wine', u'outlook']
[u'hick', u'reunit', u'australian', u'lawyer']
[u'high', u'countri', u'welcom', u'downpour']
[u'posit', u'want', u'infect']
[u'hobart', u'woman', u'regain', u'sight', u'oper']
[u'hope', u'rain', u'continu', u'reduc', u'threat']
[u'hotel', u'group', u'sign', u'wollongong', u'develop']
[u'hous', u'start', u'figur']
[u'howard', u'grill', u'santoro', u'sacndal']
[u'howard', u'warn', u'enorm', u'fight', u'ahead']
[u'iemma', u'play', u'protest', u'secur', u'breach']
[u'iemma', u'promis', u'program', u'help', u'high', u'school']
[u'illeg', u'fish', u'sign', u'wan', u'tradit', u'law']
[u'indonesia', u'announc', u'safeti', u'audit', u'result']
[u'innisfail', u'hold', u'church', u'servic', u'rememb', u'larri']
[u'innisfail', u'rememb', u'larri']
[u'iraqi', u'pessimist', u'futur', u'survey']
[u'jaqu', u'eye', u'score', u'blue']
[u'jellyfish', u'horror', u'ilchenko', u'fight', u'gold']
[u'johnston', u'shire', u'resid', u'voic', u'support']
[u'king', u'bushfir', u'go', u'underground']
[u'labor', u'hit', u'year', u'high', u'poll']
[u'lake', u'wendoure', u'motel', u'plan', u'spark', u'public', u'meet']
[u'launceston', u'council', u'want', u'pulp', u'submiss']
[u'liber', u'overturn', u'aldr', u'preselect']
[u'liber', u'pressur', u'chang', u'posit', u'parent']
[u'lion', u'appoint', u'skipper']
[u'mackay', u'airport', u'hop', u'entic', u'tiger']
[u'macklin', u'push', u'indigen', u'health', u'fund', u'boost']
[u'macquari', u'valley', u'cotton', u'crop', u'small', u'high', u'qualiti']
[u'major', u'parti', u'unveil', u'road', u'transport', u'pledg']
[u'malle', u'south', u'west', u'begin', u'fuel', u'reduct', u'burn']
[u'accus', u'abus', u'outsid', u'policeman', u'home']
[u'angri', u'mother', u'treatment', u'royal', u'hobart']
[u'report', u'cannabi', u'plant']
[u'face', u'court', u'port', u'kembla', u'death']
[u'stand', u'trial', u'attack', u'sydney', u'teen']
[u'market', u'boost', u'mine', u'bank', u'fight']
[u'maywald', u'warn', u'lake', u'bonney', u'closur', u'trigger']
[u'mckenzi', u'keep', u'faith']
[u'meet', u'discuss', u'feud', u'famili']
[u'melbourn', u'water', u'worker', u'accident', u'drink']
[u'minchin', u'defend', u'howard', u'respons', u'santoro', u'affair']
[u'miner', u'rescu', u'russian', u'explos', u'site']
[u'lake', u'strategi', u'display', u'colli']
[u'mobil', u'phone', u'drive', u'survey', u'ring', u'alarm', u'bell']
[u'monaro', u'bridg', u'target', u'revamp']
[u'attack', u'iemma', u'govt', u'parliament']
[u'murray', u'darl', u'threat', u'studi']
[u'museum', u'announc', u'climat', u'chang', u'prize']
[u'naomi', u'campbel', u'start', u'sentenc', u'clean', u'depot']
[u'contracept', u'devic', u'avail', u'women']
[u'newgen', u'play', u'uranquinti', u'power', u'station', u'fear']
[u'home', u'construct', u'number', u'drop']
[u'korea', u'readi', u'shut', u'nuclear', u'facil', u'china']
[u'lead', u'cancer', u'cluster']
[u'norfolk', u'resid', u'poll']
[u'northern', u'expressway', u'environment', u'impact', u'report']
[u'northern', u'river', u'push', u'special', u'state', u'minist']
[u'north', u'council', u'unit', u'road', u'fund']
[u'opposit', u'call', u'iraq', u'exit', u'strategi']
[u'pakistan', u'selector', u'resign', u'exit']
[u'palestinian', u'media', u'strike', u'kidnap']
[u'parliament', u'pay', u'tribut', u'plane', u'crash', u'victim']
[u'parti', u'entir', u'warnock', u'depot']
[u'perri', u'replac', u'lockyer', u'eighth']
[u'perth', u'station', u'owner', u'deni', u'specul']
[u'petersen', u'graham', u'titan']
[u'forc', u'clarifi', u'iraq', u'withdraw', u'answer']
[u'grill', u'santoro', u'scandal']
[u'mishear', u'iraq', u'question']
[u'cult', u'leader', u'wife', u'seek', u'rape', u'murder']
[u'polic', u'bodi', u'investig', u'claim', u'excess', u'forc']
[u'polic', u'investig', u'golf', u'cours', u'death']
[u'polic', u'reject', u'domest', u'violenc', u'unit', u'staff']
[u'polic', u'warn', u'escap', u'drink', u'driver']
[u'promina', u'fin', u'disclos', u'takeov', u'offer']
[u'protea', u'black', u'cap', u'remain', u'wari', u'shock']
[u'protest', u'interrupt', u'iemma', u'campaign']
[u'fear', u'futur', u'region', u'tafe', u'learn']
[u'public', u'break', u'hill', u'prize']
[u'pulp', u'panel', u'boss', u'accus', u'lennon', u'pressur']
[u'rain', u'boost', u'fuel', u'reduct', u'burn', u'prospect']
[u'rain', u'fall', u'drought', u'stricken', u'region']
[u'ralli', u'push', u'tumut', u'hospit', u'revamp']
[u'ram', u'repres', u'western', u'sydney']
[u'rat', u'agenc', u'back', u'govt', u'handl', u'tunnel']
[u'record', u'cannabi', u'haul', u'great', u'southern']
[u'recoveri', u'unit', u'help', u'bushfir', u'affect', u'communiti']
[u'report', u'midair', u'emerg', u'find', u'virgin', u'blue', u'crew']
[u'resid', u'learn', u'senat', u'probe']
[u'rival', u'merger', u'bid', u'mulgrav', u'sugar', u'see']
[u'roadsid', u'drug', u'test', u'convict']
[u'roger', u'get', u'speed', u'return']
[u'ronaldo', u'shrug', u'dive', u'storm']
[u'rural', u'women', u'health', u'servic', u'threat']
[u'russian', u'crew', u'search', u'miss', u'miner']
[u'russian', u'retir', u'home', u'kill']
[u'convict', u'murder', u'attempt', u'reopen', u'case']
[u'saddam', u'deputi', u'execut']
[u'sailor', u'head', u'licola', u'help', u'slide']
[u'sand', u'build', u'forc', u'fish', u'port', u'closur']
[u'santoro', u'quit', u'senat']
[u'search', u'scale', u'miss', u'boati']
[u'secur', u'scuffl', u'protest', u'iemma', u'tour']
[u'shire', u'persist', u'fairi', u'grass', u'sheep', u'graze', u'plan']
[u'small', u'busi', u'join', u'climat', u'chang', u'fight']
[u'sober', u'gibb', u'present', u'chequ', u'chariti']
[u'guilti', u'murder']
[u'south', u'africa', u'plan', u'woolmer', u'tribut', u'scot']
[u'spate', u'tyre', u'vandal', u'hit', u'grafton']
[u'steel', u'giant', u'propos', u'merger']
[u'stoner', u'say', u'public', u'servant', u'job', u'safe']
[u'salt', u'water', u'fuel', u'scientist']
[u'swan', u'say', u'costello', u'shift', u'blame', u'hous', u'price']
[u'carjack', u'victim', u'tell', u'ordeal']
[u'tahu', u'switch', u'rugbi']
[u'govt', u'play', u'health', u'risk', u'contamin']
[u'taxi', u'driver', u'blame', u'cult', u'exit', u'theft']
[u'offic', u'expand', u'onlin', u'return', u'servic']
[u'futur', u'citi']
[u'thompson', u'eye', u'return']
[u'tiger', u'beller']
[u'tiger', u'blue', u'foot']
[u'time', u'econom', u'sanction', u'zimbabw']
[u'toll', u'reach', u'russian', u'mine', u'disast']
[u'tooth', u'pull', u'pension', u'canberra', u'discuss']
[u'tornado', u'form', u'week', u'kakadu']
[u'tourist', u'death', u'blame', u'driver', u'fatigu', u'seatbelt']
[u'tribut', u'flow', u'fall', u'offic']
[u'resourc', u'caus', u'ambul']
[u'union', u'condemn', u'bridgeston', u'hire', u'contractor']
[u'union', u'keen', u'settl', u'qanta']
[u'union', u'meatwork', u'manag', u'discuss', u'futur']
[u'union', u'urg', u'respect', u'cleaner']
[u'unlicens', u'drink', u'driver', u'guilti', u'manslaught']
[u'urapunga', u'drink', u'suppli', u'ecoli', u'contamin']
[u'govt', u'pledg', u'ongo', u'support', u'grain', u'grower']
[u'viduka', u'consid', u'quit', u'intern']
[u'waff', u'want', u'grower', u'own', u'bodi', u'oper', u'singl', u'desk']
[u'govt', u'spend', u'million', u'help', u'eas', u'broom', u'hous']
[u'warhol', u'monro', u'portrait', u'expect', u'fetch']
[u'warwick', u'council', u'want', u'school', u'turn', u'campus']
[u'water', u'corp', u'urg', u'firm', u'undergo', u'effici']
[u'debt', u'woolmer', u'say', u'irish', u'coach']
[u'wellington', u'boot', u'race', u'look', u'like', u'biggest']
[u'west', u'indi', u'zimbabw']
[u'william', u'accept', u'match']
[u'wine', u'harvest', u'begin', u'earli']
[u'wollongong', u'councillor', u'want', u'harass', u'report']
[u'woolmer', u'famili', u'request', u'post', u'mortem']
[u'report', u'river', u'risk']
[u'xstrata', u'play', u'lead', u'level', u'studi', u'fear']
[u'young', u'driver', u'workshop', u'attract', u'widespread']
[u'youth', u'arrest', u'teen', u'fatal', u'stab']
[u'zimbabw', u'econom', u'sanction', u'death', u'sentenc']
[u'trap', u'northern', u'china', u'coal']
[u'nomin', u'noosa', u'council', u'spot']
[u'academ', u'moot', u'chang', u'statehood']
[u'govt', u'hear', u'call', u'approach', u'drug']
[u'adelaid', u'hill', u'blaze', u'contain']
[u'adelaid', u'hill', u'blaze', u'threaten', u'properti']
[u'visit', u'aborigin', u'communiti']
[u'offic', u'plead', u'guilti', u'assault', u'custodi']
[u'rule', u'investig', u'lennon', u'pulp']
[u'shouldnt', u'rule', u'lennon', u'probe', u'expert']
[u'exhibit', u'prove', u'posit', u'council']
[u'allig', u'weed', u'warragul']
[u'defend', u'broadband', u'plan']
[u'martin', u'reach', u'hospit', u'staff', u'plan']
[u'anim', u'product', u'provid', u'market']
[u'anxious', u'parent', u'receiv', u'text', u'miss', u'son']
[u'archer', u'reject', u'call', u'quit']
[u'aussi', u'platform', u'final']
[u'aust', u'market', u'close', u'lower', u'ahead', u'meet']
[u'author', u'deni', u'report', u'leader', u'arrest']
[u'bari', u'aim', u'part', u'shoot', u'inzamam']
[u'protest', u'plan', u'yarragade', u'aquif', u'plan']
[u'bishop', u'hang', u'teacher', u'perform']
[u'bishop', u'say', u'govt', u'neglect', u'student']
[u'bligh', u'back', u'call', u'woman', u'replac', u'santoro']
[u'blue', u'fall', u'short', u'tiger', u'total']
[u'arrest', u'fatal', u'bash', u'homeless']
[u'britain', u'announc', u'partial', u'cluster', u'bomb']
[u'british', u'author', u'admit', u'passport', u'bungl']
[u'broadband', u'internet']
[u'broom', u'move', u'closer', u'singapor', u'servic']
[u'bud', u'busi', u'ventur', u'clean', u'japan']
[u'budget', u'blow', u'prompt', u'launceston', u'hospit']
[u'bundaberg', u'sawmil', u'worker', u'die', u'accid']
[u'busi', u'grant', u'help', u'establish', u'ammonium', u'nitrat']
[u'canberra', u'airport', u'control', u'pass', u'lower', u'hous']
[u'candid', u'seek', u'clarif', u'sunflow', u'hous']
[u'canegrow', u'seek', u'plan', u'sugar']
[u'cardross', u'crash', u'wit', u'abus', u'driver', u'court', u'hear']
[u'carpent', u'call', u'inquiri', u'continu']
[u'defend', u'precaut', u'contamin']
[u'resourc', u'halt', u'stock', u'exchang', u'trade']
[u'resourc', u'halt', u'trade', u'ahead', u'announc']
[u'china', u'friend', u'give', u'socceroo', u'tast', u'futur']
[u'china', u'win', u'springboard', u'titl']
[u'citrus', u'grower', u'miss', u'water', u'alloc']
[u'closer']
[u'coach', u'fin', u'england', u'booz', u'antic']
[u'collinsvill', u'face', u'blackout']
[u'commission', u'flag', u'water', u'exempt']
[u'communiti', u'cost']
[u'communiti', u'want', u'answer', u'pesticid', u'water']
[u'compani', u'get', u'ahead', u'strathalbyn']
[u'concern', u'air', u'riverland', u'doubl']
[u'costello', u'attack', u'labor', u'broadband', u'coverag', u'plan']
[u'council', u'green', u'light', u'ryan', u'corner', u'wind', u'farm']
[u'counsellor', u'offer', u'support', u'fatal', u'carnarvon']
[u'cousin', u'suspens', u'hard', u'worsfold']
[u'case', u'increas']
[u'dairi', u'farmer', u'endors', u'research', u'levi']
[u'dame', u'kiri', u'win', u'farnham', u'case']
[u'dame', u'kiri', u'win', u'farnham', u'concert', u'case']
[u'dirti', u'affect', u'kiewa', u'river']
[u'doctor', u'tackl', u'bush', u'blue']
[u'downer', u'encourag', u'fiji', u'census']
[u'draper', u'complain', u'nation']
[u'dredg', u'progress', u'lake', u'entranc', u'sand']
[u'drought', u'forc', u'farmer', u'rethink', u'fertilis']
[u'eagl', u'tight', u'lip', u'cousin', u'person', u'issu']
[u'decis', u'week', u'away']
[u'elder', u'cyclist', u'chase', u'shoplift']
[u'ella', u'help', u'canada', u'world']
[u'continu', u'fight']
[u'probe', u'railway', u'reserv', u'fish', u'kill']
[u'launch', u'probe', u'lampard', u'attack']
[u'famili', u'respons', u'crash', u'tragedi', u'impress']
[u'farm', u'group', u'push', u'drought', u'counsellor']
[u'fear', u'air', u'lose', u'obstetr', u'servic']
[u'final', u'potter', u'book', u'go', u'green']
[u'spanish', u'oppos', u'iraq', u'troop', u'withdraw']
[u'general', u'strike', u'israel']
[u'geraldton', u'action', u'group', u'form', u'target', u'violenc']
[u'govern', u'urg', u'clear', u'water', u'recycl']
[u'grace', u'heather']
[u'grang', u'offer', u'slurri', u'pipelin', u'environment']
[u'gruesom', u'movi', u'poster', u'pull']
[u'hackett', u'look', u'ignit', u'campaign']
[u'grain', u'destroy', u'shed', u'blaze']
[u'health', u'minist', u'tour', u'cape', u'york', u'health', u'facil']
[u'heather', u'mill', u'win', u'prais', u'danc', u'debut']
[u'heavi', u'fight', u'break', u'somalian', u'capit']
[u'higher', u'educ', u'elect', u'issu', u'say']
[u'horsham', u'council', u'tighten', u'festiv', u'polici']
[u'hotel', u'seek', u'approv', u'serv', u'alcohol', u'food']
[u'hous', u'afford']
[u'hous', u'woe', u'prompt', u'govt', u'direct']
[u'howard', u'reject', u'afghan', u'troop', u'claim']
[u'howard', u'say', u'iraqi', u'need', u'resolv', u'retreat']
[u'howard', u'welcom', u'santoro', u'resign']
[u'hundr', u'gather', u'farewel', u'aust', u'journalist']
[u'invest', u'properti']
[u'iraqi', u'vice', u'presid', u'call', u'talk', u'militia']
[u'jail', u'look', u'boost', u'prison', u'number']
[u'jetsett', u'chip', u'greenhous', u'offset']
[u'joli', u'finalis', u'adopt', u'vietnames']
[u'jone', u'anticip', u'china', u'breakthrough']
[u'joyc', u'back', u'democrat', u'hickss', u'treatment']
[u'juri', u'retir', u'palm', u'riot', u'case']
[u'kayak', u'complet', u'anti', u'pulp', u'sydney', u'hobart']
[u'keanu', u'reev', u'graze', u'photograph']
[u'kelli', u'home']
[u'kid', u'need', u'start', u'save', u'hous']
[u'labor', u'announc', u'broadband', u'propos']
[u'labor', u'call', u'involv', u'zimbabw']
[u'labor', u'commit', u'high', u'speed', u'internet', u'network']
[u'labor', u'defend', u'broadband', u'plan']
[u'land', u'claim', u'includ', u'england', u'park', u'jetti', u'oval']
[u'landhold', u'urg', u'join', u'erad', u'push']
[u'landslid', u'kill', u'pakistani', u'kashmir']
[u'lane', u'cove', u'tunnel', u'oper', u'expect', u'teeth', u'problem']
[u'lennon', u'deni', u'pressur', u'assess', u'bodi']
[u'lennon', u'need', u'investig', u'pulp']
[u'lenton', u'hackett', u'welcom', u'introduct', u'prizemoney']
[u'accus', u'threaten', u'hospit', u'staff']
[u'arrest', u'alleg', u'threaten', u'flight', u'crew']
[u'jail', u'fraudul', u'claim', u'rebat']
[u'jail', u'repeat', u'abus', u'teen']
[u'jail', u'fraud']
[u'trial', u'parent', u'murder']
[u'mattara', u'festiv', u'home', u'camp', u'shortland']
[u'mayor', u'reject', u'claim', u'council', u'back', u'bypass', u'rout']
[u'caus', u'death', u'friend', u'court', u'rule']
[u'million', u'celebr', u'iranian', u'year']
[u'dead', u'pakistan', u'milit', u'clash']
[u'dead', u'north', u'west', u'pakistan', u'fight']
[u'morgan', u'mellish', u'farewel', u'sydney', u'funer']
[u'demand', u'accc', u'look', u'petrol', u'price', u'goug']
[u'reject', u'emerg', u'radio', u'frequenc']
[u'hear', u'farmer', u'superpip', u'fear']
[u'murder', u'rule', u'woolmer', u'death']
[u'navarro', u'wipe', u'fifa']
[u'neptun', u'statu', u'divid', u'devonport']
[u'port', u'give', u'beij', u'strateg', u'foothold']
[u'public']
[u'korea', u'wont', u'disarm', u'freez', u'money', u'receiv']
[u'chanc']
[u'northampton', u'water', u'pipe', u'deadlin', u'guarante']
[u'govt', u'vow', u'worker', u'compo', u'premium']
[u'lib', u'sway', u'independ', u'seat']
[u'opposit', u'lament', u'poll', u'stand']
[u'opposit', u'warn', u'govt', u'notic', u'rail']
[u'govt', u'reject', u'critic', u'land']
[u'govt', u'brief', u'judg', u'alcohol', u'manag']
[u'woman', u'question', u'respons', u'asbesto']
[u'oliv', u'ride', u'hofmeist', u'alburi', u'gold']
[u'opposit', u'make', u'hour', u'appeal', u'protest', u'vote']
[u'optus', u'linfox', u'winner', u'worker', u'compens', u'battl']
[u'origin', u'ticket', u'snap', u'earli']
[u'oxfam', u'concern', u'damag', u'trade', u'deal']
[u'pair', u'face', u'drug', u'traffic', u'charg']
[u'pakistan', u'legend', u'stun', u'woolmer', u'suspicion']
[u'pakistan', u'zimbabw', u'world', u'clash', u'ahead']
[u'parti', u'urg']
[u'petit', u'push', u'tweed', u'head', u'weather', u'recognit']
[u'feel', u'sympathi', u'santoro']
[u'say', u'plan', u'iraq', u'withdraw', u'request']
[u'task', u'group', u'tell', u'carbon', u'trade']
[u'welcom', u'santoro', u'resign']
[u'polic', u'suspect', u'woolmer', u'murder']
[u'polic', u'crack', u'teen', u'beach', u'parti']
[u'polish', u'woman', u'award', u'damag', u'abort', u'refus']
[u'power', u'author', u'seek', u'public', u'help', u'stop', u'vandal']
[u'priest', u'stand', u'trial', u'alleg', u'abus']
[u'prison', u'escap', u'gate', u'open']
[u'protea', u'readi', u'australian', u'challeng']
[u'public', u'hear', u'port', u'phillip', u'dredg']
[u'qanta', u'oversea', u'mainten', u'scratch']
[u'stud', u'set', u'record', u'charolai', u'sale']
[u'rain']
[u'rat', u'rise', u'like', u'earli', u'april']
[u'cut']
[u'recreat', u'drug', u'concern', u'thompson']
[u'recycl', u'water', u'power', u'station', u'expens']
[u'red', u'barn', u'mcmeniman', u'chief', u'clash']
[u'retrial', u'order', u'polic', u'offic', u'murder']
[u'rock', u'fall', u'cost', u'minim', u'say', u'manag']
[u'erupt', u'albani', u'hospit', u'fund']
[u'rumour', u'boycott', u'hard', u'surpris', u'neill']
[u'santoro', u'fallout', u'continu', u'parliament']
[u'santoro', u'statement', u'senat']
[u'search', u'miss', u'russian', u'miner', u'continu']
[u'search', u'miss', u'boati', u'reassess']
[u'silenc', u'chrome', u'doesnt', u'help', u'young', u'peopl']
[u'solar', u'activ', u'wont', u'break', u'drought']
[u'steel', u'merger', u'vital', u'industri', u'futur']
[u'stephen', u'conroy', u'press', u'club', u'address']
[u'strathbogi', u'councillor', u'reject', u'water']
[u'student', u'arrest', u'classmat', u'stab']
[u'studi', u'look', u'secur', u'great', u'artesian', u'basin', u'water']
[u'submiss', u'seek', u'croc', u'manag', u'plan']
[u'suzz', u'comment', u'home']
[u'tahu', u'slot', u'straight', u'wallabi', u'line', u'tuqiri']
[u'govt', u'stick', u'current', u'ferri']
[u'polic', u'bust', u'drug', u'ring']
[u'tate', u'confid', u'poll', u'better']
[u'tenant', u'welcom', u'move', u'stamp', u'rent', u'bid']
[u'terror', u'suspect', u'get', u'fair']
[u'thaw', u'giant', u'squid', u'massiv', u'challeng']
[u'thomson', u'allow', u'return', u'frontbench']
[u'thousand', u'miss', u'high', u'school']
[u'tiger', u'build', u'lead']
[u'tiger', u'seat']
[u'tina', u'arena', u'star', u'london', u'chicago']
[u'toowoomba', u'hospit', u'get', u'nurs', u'practition']
[u'tour', u'oper', u'fin', u'disturb', u'turtl', u'nest']
[u'frankston', u'polic', u'offic', u'suspend']
[u'food', u'program', u'warn', u'lanka', u'shortag']
[u'union', u'accus', u'leak', u'qanta', u'audit']
[u'union', u'jibe', u'mask', u'true', u'intent', u'tahu']
[u'union', u'slam', u'qanta', u'safeti']
[u'unseen', u'hart', u'work', u'show', u'sydney']
[u'urawa', u'fight', u'draw', u'sydney']
[u'command', u'get', u'militari', u'award']
[u'offici', u'meet', u'member', u'palestinian', u'govt']
[u'vandenberg', u'miss', u'hawk', u'season', u'open']
[u'grain', u'chief', u'push', u'crop']
[u'vial', u'swimmer', u'hotel', u'negat', u'illicit', u'drug']
[u'victori', u'secur', u'premiership', u'trio']
[u'virgin', u'blue', u'sign', u'plane', u'deal']
[u'voter', u'remind', u'option', u'preferenc']
[u'water', u'wastag']
[u'watkin', u'drop', u'polic', u'portfolio', u'iemma']
[u'probe', u'high', u'aborigin', u'prison', u'level']
[u'woman', u'jail', u'sentenc', u'arson', u'suspend']
[u'woman', u'trap', u'crash', u'truck']
[u'woolmer', u'death', u'time', u'pakistan', u'mushtaq']
[u'xstrata', u'hold', u'lead', u'level', u'public', u'meet']
[u'ziggi', u'address', u'lowi', u'institut']
[u'zimbabwean', u'nurs', u'tast', u'outback']
[u'zimbabw', u'regim', u'damag', u'downer', u'say']
[u'holden', u'worker', u'appli', u'voluntari', u'redund']
[u'dead', u'pakistan', u'landslid', u'rain']
[u'rich']
[u'govt', u'begin', u'communiti', u'consult', u'recycl']
[u'defend', u'demetriou', u'wage', u'hike']
[u'defend', u'strike', u'drug', u'polici']
[u'defend', u'premier', u'gunn', u'assess', u'process']
[u'aldr', u'preselect', u'fail']
[u'candid', u'sunflow', u'hous', u'claim', u'wrong']
[u'altern', u'plan', u'propon', u'want', u'independ']
[u'chief', u'meet', u'alic', u'spring', u'hospit', u'staff']
[u'amnesti', u'urg', u'govern', u'cooper']
[u'anger', u'honour']
[u'anti', u'pulp', u'protest', u'ralli', u'outsid']
[u'gain', u'qanta']
[u'aussi', u'dollar', u'hit', u'year', u'high']
[u'aussi', u'pie', u'upper', u'crust']
[u'aust', u'market', u'continu', u'changeabl', u'streak']
[u'bathurst', u'council', u'defer', u'draft', u'rural', u'strategi']
[u'beat', u'offici', u'allow', u'leav', u'zimbabw']
[u'belgian', u'gather', u'anti', u'racism', u'wed']
[u'benefit', u'see', u'communiti', u'group', u'share', u'offic']
[u'billiton', u'illawarra', u'coal', u'accus', u'censor']
[u'boat', u'burn', u'credit', u'help', u'reduc']
[u'bogut', u'buck', u'season', u'end', u'injuri']
[u'brack', u'reject', u'rescu', u'chopper']
[u'bradtk', u'call']
[u'brandi', u'urg', u'preselect', u'process', u'replac']
[u'broadband']
[u'break', u'coonabarabran', u'hospit', u'obstetr', u'equip']
[u'budget', u'rocket', u'reach', u'space']
[u'busi', u'group', u'see', u'region', u'benefit']
[u'canberra', u'murder', u'case', u'send', u'appeal']
[u'cartwright', u'delay', u'fit', u'princ']
[u'clark', u'bush', u'discuss', u'particip', u'south']
[u'closer']
[u'cole', u'quiet', u'split', u'report']
[u'committ', u'hear', u'continu', u'charg']
[u'committ', u'hear', u'accus', u'lewi', u'moran', u'murder']
[u'compani', u'look', u'hunter', u'pipelin', u'approv']
[u'coron', u'criticis', u'doctor', u'treatment', u'patient']
[u'costello', u'continu', u'attack', u'labor', u'broadband', u'plan']
[u'council', u'rais', u'question', u'draft', u'region']
[u'council', u'continu', u'winter', u'crop', u'plan', u'push']
[u'council', u'decis', u'sportsground']
[u'council', u'want', u'detail', u'water', u'pipelin', u'cost']
[u'council', u'wont', u'rush', u'landfil', u'decis']
[u'court', u'reduc', u'driver', u'licenc', u'suspens', u'road']
[u'cousin', u'father', u'confirm', u'drug', u'problem']
[u'cowra', u'abattoir', u'reopen', u'workchoic']
[u'reject', u'immigr', u'claim']
[u'csiro', u'better', u'nickel', u'explor']
[u'cyanid', u'fear', u'prompt', u'train', u'block', u'protest']
[u'deliv', u'broadband', u'infrastructur', u'australia']
[u'deputi', u'mayor', u'say', u'cyclon', u'catalyst', u'detent']
[u'docker', u'judd', u'tip', u'star']
[u'doorknock', u'updat', u'elector', u'roll']
[u'pirat', u'bounti', u'sniffer', u'dog']
[u'economist', u'predict', u'aust', u'dollar']
[u'expert', u'check', u'wallabadah', u'water', u'pipe', u'leak']
[u'explain', u'iraq', u'strategi', u'rudd', u'urg']
[u'polic', u'choir', u'member', u'jail']
[u'fall', u'powerlin', u'kill', u'mission', u'beach']
[u'famili', u'protest', u'lack', u'filtrat']
[u'famili', u'friend', u'farewel', u'soldier', u'kill']
[u'fish', u'pleas', u'port', u'open']
[u'vcat', u'judg', u'play', u'public', u'controversi']
[u'fsanz', u'investig', u'claim', u'liver', u'damag']
[u'fungicid', u'trial', u'offer', u'hope', u'dieback']
[u'futur', u'fund', u'alp', u'sight']
[u'futur', u'fund', u'labor', u'sight']
[u'geraldton', u'anti', u'violenc', u'group', u'meet', u'soon']
[u'german', u'burglar', u'pay', u'dear', u'credit', u'card', u'trick']
[u'german', u'conserv', u'fight', u'english', u'languag', u'sign']
[u'gippsland', u'group', u'releas', u'asbesto', u'remov']
[u'govern', u'urg', u'boost', u'region', u'teacher']
[u'govt', u'hous', u'provid', u'struggl', u'region']
[u'govt', u'pressur', u'zimbabwean', u'tour']
[u'govt', u'border', u'secur', u'polici', u'fail', u'opposit']
[u'grain', u'chief', u'expect', u'barley', u'export']
[u'great', u'idea']
[u'green', u'group', u'unhappi', u'abrolho', u'island', u'resort']
[u'green', u'pulp', u'motion', u'vote']
[u'guccion', u'lose', u'straight', u'set']
[u'gunn', u'urg', u'provid', u'pulp', u'info', u'govt']
[u'hancock', u'reject', u'labor', u'health', u'claim']
[u'hatzistergo', u'disappoint', u'victim', u'feel']
[u'heliport', u'propon', u'take', u'legal', u'action']
[u'home', u'water', u'trickl', u'breach']
[u'hospit', u'staff', u'plead', u'minist', u'protect']
[u'howard', u'speech', u'australian', u'strateg', u'polici']
[u'hussey', u'unconcern', u'lack', u'run']
[u'india', u'desper', u'victori', u'lanka', u'clash']
[u'indigen', u'massacr', u'report', u'aim', u'heal', u'wound']
[u'indonesian', u'polic', u'close', u'embassi', u'bomb']
[u'inject', u'black', u'spice', u'super']
[u'inpex', u'reject', u'brows', u'basin', u'franklin', u'comparison']
[u'iraqi', u'polic', u'deton', u'bomb']
[u'iraq', u'meet', u'releas', u'sadr', u'aid']
[u'juri', u'continu', u'deliber', u'palm', u'riot', u'case']
[u'katherin', u'river', u'height', u'drop']
[u'kean', u'lay', u'irish', u'team']
[u'labor', u'flag', u'futur', u'fund', u'plan']
[u'labor', u'releas', u'illawarra', u'promis']
[u'larkham', u'clear', u'shark', u'clash']
[u'larri', u'categori', u'cyclon']
[u'lead', u'expert', u'highlight', u'esper', u'health', u'risk']
[u'lead', u'level', u'concern', u'spark', u'xstrata', u'studi']
[u'leak', u'bore', u'drain', u'water', u'suppli']
[u'legal', u'action', u'near', u'mudge', u'shop']
[u'lehmann', u'give', u'redback', u'captainci']
[u'liber', u'doubt', u'govt', u'bega', u'hospit', u'pledg']
[u'local', u'govt', u'chief', u'say', u'hous', u'afford']
[u'local', u'govt', u'group', u'highlight', u'world', u'indigen']
[u'main', u'power', u'return', u'collinsvill']
[u'accus', u'hotel', u'assault', u'flee', u'polic']
[u'charg', u'alleg', u'smuggl', u'cocain']
[u'face', u'court', u'accus', u'school', u'attack']
[u'jail', u'kill', u'father', u'drunken', u'fight']
[u'jail', u'rap', u'girl']
[u'jail', u'set', u'sleep', u'partner']
[u'plead', u'guilti', u'drug', u'death', u'case']
[u'mayor', u'cautious', u'virgin', u'blue']
[u'mayor', u'claim', u'activ', u'council', u'involv', u'despit']
[u'mediat', u'program', u'target', u'aborigin', u'australia']
[u'mildura', u'crash', u'driver', u'didnt', u'refer', u'peopl', u'road']
[u'mildura', u'crash', u'driver', u'show', u'remors', u'court', u'hear']
[u'minchin', u'attack', u'public', u'servant', u'figur']
[u'promis', u'indigen', u'benefit']
[u'miss', u'teen', u'safe']
[u'molik', u'straight', u'set']
[u'time', u'mooloolaba', u'spit', u'master', u'plan']
[u'move', u'forward']
[u'see', u'benefit', u'plan', u'land', u'tenur', u'chang']
[u'hous', u'estat', u'wont', u'threaten', u'golf', u'cours']
[u'korea', u'reach', u'pivot', u'point', u'negoti']
[u'korea', u'walk', u'nuclear', u'talk']
[u'opposit', u'promis', u'elect', u'race']
[u'opposit', u'spend', u'elect', u'promis']
[u'govt', u'accus', u'genocid']
[u'govt', u'notic', u'indigen', u'educ']
[u'flag', u'line', u'chang', u'canada']
[u'offici', u'confirm', u'iraqi', u'govt', u'talk', u'insurg']
[u'opposit', u'attack', u'eyr', u'peninsula', u'levi', u'plan']
[u'opposit', u'highlight', u'victim', u'govt']
[u'opposit', u'play', u'broadband', u'critic']
[u'opposit', u'renew', u'petrol', u'price', u'monitor']
[u'paedophil', u'jail', u'breach', u'restrain', u'order']
[u'pakistan', u'send', u'inzi', u'zimbabw']
[u'pakistan', u'test', u'nuclear', u'capabl', u'cruis', u'missil']
[u'palm', u'island', u'riot', u'accus', u'guilti']
[u'palm', u'riot', u'accus', u'guilti']
[u'pedestrian', u'die', u'echuca', u'mishap']
[u'reaffirm', u'iraq', u'polici']
[u'polic', u'charg', u'north', u'west', u'drug', u'bust']
[u'polic', u'investig', u'reservoir', u'hous']
[u'polic', u'search', u'involv', u'card', u'skim']
[u'polic', u'capsicum', u'spray', u'wangaratta']
[u'price', u'hamper', u'farmer', u'pipelin', u'access']
[u'pride', u'sad']
[u'prison', u'inmat', u'get', u'month', u'escap']
[u'project', u'investig', u'water']
[u'prospect', u'bright', u'australia', u'futur', u'say', u'neill']
[u'qanta', u'take', u'legal', u'action', u'aircraft']
[u'liber', u'urg', u'consid', u'woman', u'senat']
[u'rain', u'help', u'lift', u'wangaratta', u'water', u'storag']
[u'rain', u'expect', u'boost', u'water', u'storag']
[u'research', u'team', u'identifi', u'cattl', u'virus']
[u'resourc', u'industri', u'want', u'labor', u'clarifi', u'polici']
[u'restless', u'india', u'fan', u'urg', u'calm']
[u'retrial', u'undermin', u'doubl', u'jeopardi', u'principl']
[u'rhode', u'relish', u'role', u'dethron', u'australia']
[u'meatwork', u'return', u'product']
[u'rudd', u'join', u'elect', u'campaign']
[u'rudd', u'leav', u'dark', u'broadband', u'decis']
[u'rudd', u'play', u'broadband', u'critic']
[u'rudd', u'brother', u'question', u'labor', u'uranium', u'polici']
[u'rudd', u'urg', u'voter', u'protest', u'vote']
[u'rumour', u'rife', u'woolmer', u'death']
[u'saff', u'say', u'farmer', u'feel', u'impact', u'stronger', u'aust']
[u'sale', u'student', u'tri', u'tuckshop', u'debit', u'card']
[u'saleyard', u'plan', u'worri', u'caravan', u'park', u'oper']
[u'santoro', u'deserv', u'support', u'sympathi', u'abbott']
[u'sawmil', u'promis', u'investig', u'worker']
[u'scene', u'suspici', u'death', u'examin']
[u'scientist', u'stem', u'cell', u'breakthrough']
[u'seeney', u'defend', u'readjust', u'payout', u'oust']
[u'seeney', u'promis', u'peak', u'down', u'improv']
[u'shell', u'colour', u'chang', u'increas', u'lobster', u'valu']
[u'shire', u'review', u'elector', u'issu']
[u'signific', u'benefit']
[u'simpl', u'econom']
[u'snowi', u'council', u'say', u'climat', u'chang', u'fight', u'need']
[u'south', u'east', u'school', u'mainten', u'black', u'hole', u'list']
[u'student', u'offer', u'counsel', u'stab']
[u'student', u'walk', u'water']
[u'explos', u'kill']
[u'support', u'broadband', u'plan']
[u'sydney', u'teen', u'charg', u'bash', u'murder']
[u'symond', u'certain', u'south', u'africa']
[u'task', u'forc', u'critic', u'govern', u'pacif']
[u'woolgrow', u'head', u'china']
[u'tear', u'inzamam', u'dedic', u'final', u'woolmer']
[u'tenni', u'scrap', u'round', u'robin', u'format']
[u'tenterfield', u'mayor', u'beat', u'address', u'youth']
[u'terribl', u'idea']
[u'terror', u'suspect', u'stay', u'proceed', u'applic']
[u'charg', u'fatal', u'bash']
[u'tiger', u'build', u'massiv', u'lead', u'beller']
[u'tiger', u'imposs', u'victori', u'target']
[u'jayasuriya', u'fire', u'lanka', u'easi']
[u'toowoomba', u'record', u'strong', u'ticket', u'sale']
[u'tuckshop', u'black', u'market']
[u'face']
[u'union', u'reject', u'report', u'claim', u'awa', u'increas']
[u'futur', u'fund', u'wont', u'affect', u'superannu']
[u'criticis', u'hostag', u'deal']
[u'vandenberg', u'miss', u'hawk', u'season', u'open']
[u'vaughan', u'fulli', u'kenya', u'encount']
[u'air', u'irrig', u'accuraci', u'concern']
[u'delay', u'level', u'water', u'restrict']
[u'nativ', u'titl', u'agreement', u'move', u'closer']
[u'victim', u'parent', u'angri', u'crash', u'sentenc']
[u'violenc', u'escal', u'somalia']
[u'volunt', u'firefight', u'hope', u'restructur']
[u'word', u'erupt', u'murray', u'darl']
[u'water', u'author', u'look', u'help', u'drought']
[u'water', u'polit']
[u'wheatbelt', u'worker', u'die', u'crash']
[u'wheeli', u'murder', u'case', u'adjourn', u'august']
[u'resign']
[u'wife', u'see', u'conspiraci', u'woolmer', u'death']
[u'william', u'make', u'burni', u'phone', u'book']
[u'william', u'win', u'appeal', u'extradit']
[u'women', u'smoker', u'like', u'lung', u'cancer']
[u'worker', u'kill', u'factori', u'explos']
[u'world', u'second', u'death']
[u'youth', u'servic', u'get', u'fund', u'help', u'hand']
[u'accc', u'investig', u'mackay', u'region', u'petrol', u'price']
[u'accommod', u'area', u'spark', u'sacr', u'site', u'fear']
[u'adelaid', u'post', u'offic', u'rob']
[u'ramp', u'drug', u'test']
[u'travel', u'face', u'law', u'liquid']
[u'alinta', u'power', u'station', u'success']
[u'allenbi', u'share', u'lead', u'miami']
[u'candid', u'say', u'surf', u'summit', u'polit']
[u'american', u'power']
[u'amnesti', u'report', u'guantanamo', u'trial']
[u'andrew', u'grant', u'visa', u'detain']
[u'anger', u'govt', u'wast', u'contract']
[u'invest']
[u'trade', u'offer', u'fair', u'reason']
[u'armstrong', u'beat', u'coalit', u'chanc']
[u'arrest', u'woolmer', u'murder', u'investig', u'report']
[u'kill', u'mozambiqu', u'arm', u'explos']
[u'aust', u'market', u'end', u'week', u'flat']
[u'australia', u'face', u'test', u'china']
[u'australian', u'stand', u'good', u'chanc', u'mooloolaba', u'world']
[u'australian', u'tell', u'awar', u'cold', u'fraud']
[u'babi', u'neglect', u'inquest', u'expos', u'inadequ', u'respons']
[u'barcaldin', u'airport', u'drag', u'race']
[u'bash', u'put', u'elder', u'hospit']
[u'beatti', u'back', u'uranium', u'mine']
[u'beatti', u'give', u'condit', u'support', u'uranium', u'mine']
[u'beatti', u'uranium', u'push', u'welcom']
[u'shortag', u'caus', u'surgeri', u'cancel']
[u'beerwah', u'bushfir', u'investig']
[u'expand', u'pilbara', u'oper']
[u'blanket', u'palm', u'acquitt']
[u'blue', u'thrash', u'woeful', u'waratah']
[u'bowler', u'forward', u'report', u'grill', u'guidanc']
[u'brack', u'burnley']
[u'bridgeston', u'worker', u'lock', u'weekend', u'union']
[u'break', u'truck', u'caus', u'tunnel', u'crash']
[u'brough', u'cautious', u'welcom', u'labor', u'aborigin']
[u'bushfir', u'review', u'group', u'seek', u'public', u'feedback']
[u'call', u'environment', u'friend', u'fishhook']
[u'candid', u'minut', u'campaign']
[u'candid', u'minut', u'swipe', u'elect']
[u'carbon', u'scheme', u'farmer']
[u'carer', u'payment', u'elig', u'assess', u'process']
[u'carpent', u'stand', u'tough', u'uranium', u'mine', u'polici']
[u'cervic', u'cancer', u'hope', u'develop', u'world']
[u'back', u'carri', u'decis']
[u'collingwood', u'want', u'freddi']
[u'contract', u'delay', u'golf', u'resort', u'plan']
[u'coron', u'find', u'meatwork', u'death', u'avoid']
[u'court', u'adjourn', u'legal', u'action', u'coron', u'report']
[u'court', u'order', u'recal', u'vehicl', u'jack']
[u'damag', u'ship', u'haul', u'whale']
[u'debnam', u'make', u'final', u'plea', u'voter']
[u'deputi', u'order', u'mracc', u'investig', u'conflict']
[u'detail', u'seek', u'water', u'pip', u'plan']
[u'villier', u'readi', u'sledg', u'onslaught']
[u'dicaprio', u'winslet', u'reunit']
[u'discoveri', u'increas', u'shelf', u'life', u'platelet']
[u'diseas', u'infect', u'mung', u'bean', u'crop', u'time']
[u'dollar', u'fuel']
[u'congo', u'seek', u'arrest', u'rebel', u'leader']
[u'dust', u'storm', u'creat', u'highway', u'hazard']
[u'eagl', u'battl', u'drug', u'alleg']
[u'educ', u'limit', u'hamper', u'push', u'indigen']
[u'educ', u'spend', u'say', u'opposit']
[u'elder', u'woman', u'bash', u'home']
[u'embassi', u'staff', u'kick', u'zimbabw', u'downer']
[u'england', u'woodgat', u'miss', u'israel', u'match']
[u'england', u'play', u'germani', u'wembley', u'open']
[u'timor', u'elect', u'campaign', u'kick']
[u'european', u'media', u'tast', u'goldfield']
[u'exempt', u'offer', u'earlier', u'garden', u'water']
[u'farmer', u'see', u'strong', u'grower', u'support']
[u'farmer', u'seek', u'fund', u'pipelin', u'connect']
[u'fatal', u'penros', u'factori', u'blast', u'investig']
[u'financi', u'servic', u'provid', u'get', u'year']
[u'fisher', u'group', u'reject', u'abetz', u'poach', u'claim']
[u'forum', u'focus', u'energi', u'price']
[u'injur', u'karrakup', u'crash']
[u'fresh', u'concern', u'pulp', u'approv', u'process']
[u'fume', u'forc', u'evacu', u'melbourn', u'restaur']
[u'fund', u'better', u'spend', u'human', u'issu']
[u'fund', u'chang', u'stop', u'york', u'peninsula', u'broadband']
[u'fund', u'help', u'meet', u'extra', u'demand', u'blue', u'care']
[u'futur', u'fund', u'dip', u'ideal', u'murray']
[u'firm', u'get', u'west', u'power', u'station']
[u'geraldton', u'forum', u'focus', u'cut', u'road', u'toll']
[u'german', u'swim', u'team', u'hit', u'drug', u'suspicion']
[u'global', u'demand', u'outstrip', u'suppli', u'uranium']
[u'gold', u'coast', u'east', u'tourism', u'push', u'take']
[u'govern', u'effici']
[u'govt', u'move', u'closer', u'releas', u'land', u'steal']
[u'govt', u'promis', u'snowi', u'river', u'boost']
[u'govt', u'urg', u'suspend', u'defenc', u'philippin']
[u'goward', u'put', u'fast', u'train', u'debat', u'track']
[u'green', u'corp', u'effort', u'help', u'boost', u'platypus', u'environ']
[u'green', u'group', u'seek', u'rail', u'line', u'sleeper', u'rethink']
[u'gunnedah', u'get', u'tougher', u'hotel', u'safeti']
[u'heffernan', u'ambush', u'labor', u'media', u'confer']
[u'high', u'cost', u'forc', u'profit', u'plummet', u'lamb']
[u'hiller', u'hand', u'polic']
[u'hockey', u'deni', u'tristar', u'individu', u'contract']
[u'hoogi', u'target', u'beij', u'farewel']
[u'huge', u'tuna', u'expect', u'reel', u'fisher', u'portland']
[u'husband', u'jail', u'vicious', u'alic', u'spring', u'attack']
[u'iemma', u'say', u'labor', u'deserv', u'elect']
[u'independ', u'prefer', u'tell', u'factor']
[u'indonesia', u'threaten', u'shut', u'airlin']
[u'interim', u'fund', u'help', u'south', u'west', u'gippsland']
[u'iran', u'captur', u'british', u'sailor']
[u'iraq', u'deputi', u'unstabl', u'blast']
[u'jack', u'thoma', u'face', u'trial', u'terror', u'relat']
[u'jamaican', u'polic', u'believ', u'woolmer', u'know', u'murder']
[u'kahn', u'ban', u'milan', u'clash']
[u'keat', u'back', u'labor', u'broadband', u'plan']
[u'kerr', u'implic', u'drug', u'scandal']
[u'knight', u'storm', u'home', u'dragon']
[u'labor', u'port', u'stephen', u'candid', u'deni', u'ambul']
[u'labor', u'push', u'indigen', u'econom', u'develop']
[u'land', u'sale', u'see', u'vital', u'race', u'club', u'futur']
[u'lifeguard', u'back', u'perth', u'contest', u'amid', u'smaller', u'number']
[u'lion', u'lose', u'bradshaw', u'season', u'end', u'injuri']
[u'liquor', u'offenc', u'mayor', u'consid', u'resign', u'pitt']
[u'lobster', u'industri', u'deni', u'threat', u'lion']
[u'face', u'extradit', u'bodi', u'discoveri']
[u'get', u'maximum', u'sentenc', u'strangl', u'wife']
[u'jail', u'welfar', u'fraud']
[u'pose', u'offic', u'child', u'abduct', u'attempt']
[u'suspend', u'catch', u'drive']
[u'maritim', u'worker', u'strike', u'unsaf', u'condit']
[u'market', u'mix', u'rat', u'decis']
[u'mason', u'admit', u'mistak', u'invest']
[u'mason', u'tell', u'senat', u'honest', u'error']
[u'mason', u'sack']
[u'melbourn', u'firm', u'look', u'irvin', u'iron']
[u'melbourn', u'leak', u'forc', u'mass', u'evacu']
[u'melbourn', u'stinker', u'nudg', u'record']
[u'melbourn', u'tunnel', u'blaze', u'kill']
[u'melbourn', u'tunnel', u'kill']
[u'melbourn', u'tunnel', u'inferno', u'kill']
[u'mokbel', u'associ', u'fail', u'access', u'freez', u'bank']
[u'locust', u'predict', u'head', u'south', u'coast']
[u'mysteri', u'diseas', u'kill', u'cattl']
[u'nation', u'central', u'council', u'meet', u'consid']
[u'nation', u'senat', u'investig']
[u'central', u'power', u'station', u'greenhous']
[u'meter', u'technolog', u'help', u'irrig', u'effici']
[u'news', u'corp', u'plan', u'youtub', u'rival']
[u'station', u'allow', u'cross', u'border', u'polic']
[u'korea', u'disput', u'settl', u'week']
[u'prepar', u'elect']
[u'govt', u'land', u'council', u'fail', u'agre', u'road', u'seal']
[u'govt', u'want', u'welfar', u'withhold', u'kid', u'skip', u'school']
[u'nuclear', u'power', u'essenti', u'reduc', u'emiss']
[u'dead', u'fieri', u'boundari', u'bend', u'crash']
[u'dead', u'melbourn', u'tunnel']
[u'opposit', u'criticis', u'sentenc', u'hand', u'drug']
[u'opposit', u'question', u'success', u'govt', u'illeg']
[u'oxiana', u'offer', u'agincourt', u'uncondit']
[u'pakistan', u'cricket', u'team', u'question']
[u'panther', u'knight', u'record', u'half', u'time', u'lead']
[u'panther', u'upset', u'bulldog', u'point', u'rout']
[u'park', u'issu', u'forc', u'doctor']
[u'parliament', u'need', u'lead', u'exampl']
[u'pipelin', u'fund', u'face', u'problem', u'say']
[u'plan', u'lodg', u'riverina', u'ethanol', u'plant']
[u'save', u'pakistan', u'cricket', u'plead', u'rashid', u'latif']
[u'doesnt', u'care', u'upset', u'zimbabw']
[u'spare', u'senat', u'invest']
[u'polic', u'confirm', u'woolmer', u'murder']
[u'polic', u'deni', u'woolmer', u'arrest', u'report']
[u'polic', u'investig', u'death', u'boat']
[u'polic', u'investig', u'petrol', u'contamin', u'threat']
[u'polic', u'launch', u'probe', u'woolmer', u'murder']
[u'polic', u'launch', u'woolmer', u'murder', u'probe']
[u'polic', u'probe', u'continu', u'fatal', u'echuca', u'road', u'crash']
[u'polic', u'probe', u'suspici', u'wheatbelt', u'death']
[u'polic', u'road', u'crackdown', u'focus', u'speed', u'alcohol']
[u'polic', u'shortag', u'situat', u'dire', u'opposit']
[u'polic', u'want', u'truck', u'driver', u'charg', u'train']
[u'poll', u'predict', u'labor', u'landslid']
[u'pont', u'anticip', u'high', u'score', u'encount']
[u'popul', u'figur']
[u'port', u'author', u'ban', u'slipway', u'boat', u'wash', u'spray']
[u'port', u'user', u'view', u'seek', u'lead', u'nickel', u'shipment']
[u'post', u'mortem', u'suspici', u'colli', u'death']
[u'public', u'warn', u'high', u'threat']
[u'pyne', u'investig', u'santoro', u'nurs', u'home']
[u'qanta', u'suffer', u'setback']
[u'qanta', u'stakehold', u'reject', u'takeov']
[u'raaf', u'train', u'fighter', u'plan']
[u'region', u'develop', u'group', u'debat', u'indigen']
[u'river', u'bodi', u'consid', u'suspici']
[u'roma', u'mayor', u'face', u'sack', u'threat', u'meet']
[u'rudd', u'offer', u'support', u'newcastl', u'candid']
[u'rudd', u'futur', u'fund']
[u'rudd', u'tight', u'lip', u'futur', u'fund', u'spend']
[u'plan']
[u'secker', u'cast', u'doubt', u'broadband', u'plan']
[u'secur', u'council', u'condemn', u'rocket', u'attack', u'iraq']
[u'shakespear', u'win', u'book', u'prize']
[u'shepparton', u'leak', u'forc', u'evacu']
[u'somalia', u'fight', u'continu', u'despit', u'truce', u'claim']
[u'strong', u'dollar', u'weaken', u'beef', u'export']
[u'govt', u'secret', u'power', u'station', u'deal']
[u'team', u'anguish', u'polic', u'launch', u'woolmer', u'murder']
[u'teen', u'hurt', u'knife', u'assault']
[u'arrest', u'london', u'bomb']
[u'arrest', u'london', u'bomb']
[u'dead', u'melbourn', u'tunnel', u'blaze']
[u'dead', u'melbourn', u'tunnel']
[u'kill', u'melbourn', u'tunnel', u'inferno']
[u'kill', u'melb', u'tunnel', u'crash']
[u'thwait', u'open', u'meet', u'break', u'irrig']
[u'tiger', u'cusp', u'histor', u'victori']
[u'tiger', u'maiden', u'class', u'crown']
[u'toddler', u'face', u'pain', u'wait', u'dental', u'treatment']
[u'toll', u'rise', u'dead', u'tunnel', u'blaze']
[u'toowoomba', u'attract', u'record', u'entrant', u'number']
[u'tunnel', u'crash', u'death', u'toll', u'rise']
[u'tunnel', u'wit']
[u'unit', u'water', u'flood', u'call', u'burst', u'main']
[u'unman', u'surveil', u'plane', u'trial', u'success']
[u'uranium', u'show', u'promis', u'adelaid', u'resourc']
[u'deploy', u'extra', u'troop', u'sunni', u'spot']
[u'driver', u'die', u'crash', u'truck']
[u'venus', u'make', u'win', u'start', u'cana', u'beat', u'henman']
[u'govt', u'urg', u'tackl', u'fail', u'region']
[u'weari', u'dragon', u'throw', u'line']
[u'weather', u'monitor', u'network', u'go', u'onlin']
[u'wife', u'cancer', u'wont', u'deter', u'democrat', u'presidenti']
[u'woman', u'die', u'train']
[u'woman', u'face', u'court', u'accus', u'hoax', u'call', u'polic']
[u'woolmer', u'murder', u'wont', u'stop', u'cricket', u'australia']
[u'woolmer', u'strangl', u'death']
[u'work', u'continu', u'geograph', u'fish', u'zone']
[u'zimbabwean', u'opposit', u'leader', u'fli', u'safeti']
[u'dead', u'somali', u'plane', u'crash']
[u'face', u'court', u'brisban', u'drug', u'bust']
[u'kill', u'pakistan', u'clash']
[u'kill', u'baghdad', u'truck', u'bomb']
[u'afghan', u'troop', u'kill', u'score', u'taliban']
[u'deni', u'knowledg', u'phone', u'tap']
[u'deni', u'knowledg', u'phone', u'tap']
[u'assist', u'oversea', u'tackl', u'rise', u'heroin']
[u'alic', u'spring', u'flood', u'watch']
[u'black', u'class', u'crusad', u'stormer']
[u'alleg', u'australian', u'abductor', u'arrest', u'thailand']
[u'ambassador', u'warn', u'grow', u'sectarian', u'divid']
[u'anna', u'nicol', u'smith', u'diari', u'sell', u'ebay']
[u'archbishop', u'write', u'hick']
[u'aussi', u'rule', u'program', u'lift', u'school', u'attend']
[u'australia', u'look', u'symond', u'edg', u'match']
[u'author', u'investig', u'prison', u'stab']
[u'black', u'conced', u'defeat', u'murray', u'darl', u'seat']
[u'bligh', u'reassur', u'motorist', u'tunnel', u'safeti']
[u'blue', u'thrash', u'woeful', u'waratah']
[u'bright', u'forc', u'perth']
[u'brigitt', u'lawyer', u'lodg', u'appeal']
[u'britain', u'demand', u'releas', u'captur', u'marin', u'sailor']
[u'britain', u'demand', u'releas', u'captur', u'sailor']
[u'britain', u'demand', u'releas', u'sailor']
[u'british', u'sailor', u'move', u'tehran', u'report']
[u'burma', u'boat', u'capsiz', u'drown']
[u'burnley', u'tunnel', u'stay', u'close', u'day']
[u'bush', u'vow', u'veto', u'troop', u'withdraw', u'legisl']
[u'cartlon', u'appoint', u'boss']
[u'chanderpaul', u'smack', u'host', u'beat', u'irish']
[u'cleric', u'decid', u'hilali', u'futur', u'mufti']
[u'close', u'race', u'forecast', u'goulburn']
[u'closer']
[u'closer']
[u'cowboy', u'race', u'half', u'time', u'lead']
[u'dead', u'tumour', u'cell', u'inject', u'devil']
[u'debnam', u'conced', u'defeat']
[u'debnam', u'conced', u'defeat']
[u'debnam', u'conced', u'elect', u'loss']
[u'debnam', u'poll']
[u'democrat', u'vote', u'sept', u'iraq', u'troop', u'withdraw']
[u'deplet', u'eagl', u'hold', u'tiger']
[u'detaine', u'apologis', u'role', u'embassi', u'attack']
[u'document', u'link', u'gonzal', u'sack']
[u'domin', u'thurston', u'lead', u'cowboy', u'past', u'rooster']
[u'doubt', u'express', u'govt', u'abil', u'combat']
[u'dozen', u'kill', u'lankan', u'militari', u'push']
[u'draper', u'retain', u'tamworth']
[u'duck', u'shoot', u'protest', u'call', u'govt']
[u'earli', u'count', u'indic', u'labor', u'elect']
[u'earli', u'count', u'show', u'labor', u'elect']
[u'earli', u'swing', u'goward']
[u'elect', u'comment']
[u'deadlin', u'reform']
[u'feder', u'govt', u'need', u'learn', u'result', u'coonan']
[u'feder', u'leader', u'heart', u'result']
[u'firm', u'fin', u'street', u'sweeper', u'crush', u'teen']
[u'foul', u'weather', u'forc', u'postpon', u'race']
[u'govt', u'wont', u'sack', u'frontbench']
[u'goward', u'neck', u'neck', u'independ']
[u'hackett', u'headlin', u'gold', u'stake']
[u'hickss', u'father', u'head', u'cuba', u'arraign']
[u'high', u'wind', u'forc', u'halt', u'women']
[u'hilfenhaus', u'take', u'come']
[u'houdini', u'final', u'appear']
[u'hougaard', u'lift', u'bull', u'highland']
[u'iemma', u'debnam', u'cast', u'vote']
[u'iemma', u'govt', u'retain', u'power']
[u'iemma', u'govt', u'return']
[u'iemma', u'govt', u'victori', u'elect']
[u'iemma', u'victori']
[u'iemma', u'reclaim', u'govern']
[u'iemma', u'retain', u'govt', u'despit', u'swing']
[u'iemma', u'stay', u'power']
[u'iemma', u'victori', u'elect']
[u'india', u'struggl', u'lanka']
[u'india', u'suffer', u'world', u'miseri']
[u'indonesia', u'east', u'timor', u'border', u'stay', u'shut']
[u'injur', u'hewitt', u'pull', u'miami']
[u'insurg', u'claim', u'attack', u'iraqi', u'deputi']
[u'iran', u'arrest', u'escal', u'diplomat', u'tension']
[u'iran', u'hold', u'british', u'sailor']
[u'iran', u'pay', u'iraqi', u'attack', u'briton']
[u'iran', u'presid', u'cancel', u'appear']
[u'iraq', u'deputi', u'undergo', u'surgeri', u'follow']
[u'iraq', u'deputi', u'wound']
[u'iraqi', u'asylum', u'seeker', u'number', u'skyrocket']
[u'irrig', u'outrag', u'murray', u'water', u'sell']
[u'kerr', u'admit', u'silli', u'patch']
[u'knight', u'storm', u'home', u'dragon']
[u'labor', u'safe', u'antoni', u'green']
[u'labor', u'landslid', u'predict', u'poll', u'booth']
[u'labor', u'look', u'safe', u'despit', u'earli', u'swing']
[u'labor', u'look', u'safe', u'earli', u'figur']
[u'labor', u'retain', u'penrith']
[u'labor', u'retain', u'power']
[u'labor', u'strong', u'despit', u'earli', u'swing']
[u'labor', u'return']
[u'labor', u'victori', u'balmain']
[u'labor', u'victori', u'elect']
[u'latest', u'death', u'road', u'toll']
[u'leader', u'celebr', u'anniversari']
[u'leader', u'secur', u'vote', u'margin', u'seat']
[u'lennon', u'wont', u'investig', u'pulp', u'claim']
[u'liber', u'pittwat']
[u'main', u'power', u'smoke', u'alarm', u'compulsori']
[u'polic', u'custodi', u'ecstasi']
[u'kill', u'hit', u'tree', u'symmon', u'plain']
[u'face', u'court', u'cattl', u'embryo', u'theft']
[u'margin', u'opposit', u'chikarovski']
[u'match', u'fix', u'go', u'vaughan']
[u'melbourn', u'regain', u'power', u'hour', u'blackout']
[u'melbourn', u'tunnel', u'crash', u'victim', u'identifi']
[u'missil', u'hit', u'plane', u'somalia']
[u'mobil', u'phone', u'unlik', u'caus', u'brain', u'tumour', u'studi']
[u'gold', u'china', u'russia', u'world', u'champ']
[u'morri', u'iemma', u'claim', u'victori', u'elect']
[u'hurley', u'trial', u'brisban', u'aborigin', u'justic']
[u'nation', u'claim', u'tweed']
[u'nation', u'conced', u'elect', u'loss']
[u'nation', u'retain', u'clarenc']
[u'nation', u'retain', u'orang']
[u'nation', u'tip', u'increas', u'margin', u'clarenc']
[u'nile', u'claim', u'elect']
[u'action', u'take', u'kerr']
[u'match', u'fix', u'revel', u'woolmer', u'book']
[u'norfolk', u'elect', u'chief', u'minist']
[u'interview', u'jami', u'lyon']
[u'elect', u'underway']
[u'leader', u'cast', u'vote']
[u'liber', u'leader', u'peter', u'debnam', u'make']
[u'poll', u'booth', u'close', u'labor', u'landslid']
[u'poll', u'booth', u'open']
[u'premier', u'morri', u'iemma', u'deliv', u'victori']
[u'resid', u'warn', u'wari', u'polic']
[u'pakistan', u'team', u'ask', u'leav', u'jamaica']
[u'parent', u'urg', u'help', u'curb', u'region', u'truanci']
[u'parti', u'member', u'talk', u'mugab', u'rule']
[u'pathet', u'india', u'deserv', u'world', u'exit', u'say', u'kapil']
[u'pedestrian', u'die', u'accid']
[u'pell', u'keen', u'provid', u'cathol', u'school']
[u'pepininni', u'open', u'pend', u'scrap']
[u'peter', u'debnam', u'concess', u'speech']
[u'polic', u'appeal', u'wit', u'brisban']
[u'polic', u'believ', u'woolmer', u'know', u'killer']
[u'polic', u'believ', u'woolmer', u'know', u'murder']
[u'polic', u'probe', u'tunnel', u'crash']
[u'polic', u'review', u'tunnel', u'footag']
[u'poll', u'close', u'elect']
[u'poll', u'tip', u'labor', u'elect']
[u'porn', u'video', u'add', u'uncertainti', u'south', u'coast', u'poll']
[u'power', u'station', u'sale', u'break', u'govt', u'promis']
[u'queanbeyan', u'welcom', u'major', u'road', u'fund']
[u'red', u'fall', u'narrowli', u'chief']
[u'resourc', u'shuffl', u'answer', u'child', u'protect']
[u'rogerson', u'take', u'rosehil', u'guinea']
[u'russia', u'team', u'synchro', u'competit']
[u'sandiland', u'sign', u'contract', u'extens', u'docker']
[u'santoro', u'seat', u'nomin', u'like', u'open', u'monday']
[u'eagl', u'lead', u'tiger', u'half', u'time']
[u'shanghai', u'host', u'swim', u'world', u'champ']
[u'socceroo', u'humbl', u'china', u'asian', u'warm']
[u'socceroo', u'lead', u'china', u'half', u'time', u'friend']
[u'south', u'africa', u'shrug', u'critic', u'handl']
[u'speech', u'debnam', u'conced', u'defeat']
[u'speech', u'iemma', u'claim', u'victori']
[u'sporad', u'fall', u'rejoic']
[u'storm', u'lead', u'raider', u'break']
[u'storm', u'outgun', u'plucki', u'raider']
[u'stosur', u'pratt', u'miami']
[u'suspect', u'fish', u'vessel', u'intercept']
[u'sydney', u'tunnel', u'oper', u'reassur', u'motorist']
[u'symond', u'inclus', u'backfir', u'protea']
[u'symond', u'return', u'protea', u'clash']
[u'taliban', u'attack', u'convoy', u'afghanistan', u'kill']
[u'tander', u'take', u'perth', u'open']
[u'govt', u'macquari', u'neglect', u'embarrass']
[u'teen', u'hospit', u'sydney', u'stab']
[u'terri', u'hick', u'head', u'guantanamo', u'hear']
[u'terri', u'hick', u'leav', u'cuba']
[u'troop', u'withdraw', u'month', u'iraqi', u'vice']
[u'tuffey', u'rule', u'world']
[u'tunnel', u'crash', u'highlight', u'truck', u'danger', u'transport']
[u'tunnel', u'crash', u'victim', u'identifi']
[u'tunnel', u'investig', u'month', u'polic']
[u'motorcyclist', u'kill', u'road']
[u'underwear', u'thiev', u'outwit', u'anti', u'theft', u'equip']
[u'union', u'renew', u'call', u'workplac', u'law', u'overhaul']
[u'china', u'plan', u'phone']
[u'team', u'suspici', u'german', u'swimmer']
[u'vacant', u'land', u'impact', u'builder', u'incom', u'hous']
[u'victori', u'iemma', u'vow', u'work']
[u'victori', u'iemma', u'vow', u'work']
[u'whan', u'claim', u'monaro']
[u'windi', u'control', u'ireland']
[u'wood', u'lead', u'pampl', u'doral']
[u'woolmer', u'famili', u'say', u'receiv', u'threat']
[u'woolmer', u'bodi', u'stay', u'jamaica', u'inquest']
[u'world', u'media', u'nut', u'knut']
[u'youth', u'assault', u'plank', u'concret']
[u'cling', u'boat']
[u'kill', u'crash', u'state']
[u'crash', u'record']
[u'alic', u'woman', u'injur', u'gutter']
[u'black', u'fail', u'inspir', u'hurrican']
[u'armenian', u'die']
[u'aussi', u'bowler', u'capitalis', u'hayden', u'knock']
[u'aust', u'snowboard', u'fall', u'death']
[u'bali', u'burn', u'victim', u'launch', u'support', u'network']
[u'beverley', u'crash', u'injur', u'children']
[u'breakthrough', u'pave', u'better', u'chees']
[u'brisban', u'resid', u'urg', u'messag', u'problem']
[u'british', u'sailor', u'confess', u'enter', u'iranian']
[u'bronco', u'winless', u'go', u'warrior']
[u'brumbi', u'shark', u'unbeaten']
[u'bryant', u'believ', u'hospitalis']
[u'canberran', u'warn', u'strong', u'wind', u'ahead']
[u'china', u'win', u'springboard', u'world', u'titl']
[u'closer', u'news']
[u'closer']
[u'crew', u'send', u'contain', u'king', u'island', u'blaze']
[u'cyclist', u'kill', u'road', u'crash']
[u'cyclon', u'pilbara', u'coast']
[u'daylight', u'save', u'wont', u'help', u'carbon', u'emiss']
[u'debnam', u'keen', u'fight', u'elect', u'loss']
[u'detain', u'taiwanes', u'boat', u'reach', u'brisban', u'port']
[u'downer', u'applaud', u'iran', u'nuclear', u'sanction']
[u'duck', u'hunt', u'debat', u'go', u'feder']
[u'england', u'cruis', u'kenya']
[u'famili', u'mourn', u'olymp', u'cyclist', u'kill', u'melbourn']
[u'feder', u'advanc', u'raini', u'miami']
[u'flood', u'watch', u'issu', u'katherin']
[u'freir', u'sprint', u'milan', u'remo', u'davi', u'second']
[u'german', u'milit', u'releas']
[u'gillard', u'urg', u'hockey', u'commiss']
[u'govt', u'deni', u'water', u'pulp', u'standard']
[u'govt', u'doesnt', u'understand', u'broadband', u'issu', u'labor']
[u'govt', u'fund', u'defenc', u'forc', u'recruit', u'campaign']
[u'green', u'uranium', u'mine', u'nuclear', u'power']
[u'hackett', u'scrap', u'final']
[u'hackett', u'take', u'bronz']
[u'harlequin', u'book', u'seek', u'real', u'cover']
[u'harvey', u'drug', u'involv', u'refer', u'basketbal']
[u'hayden', u'gibb', u'give', u'honorari', u'citizenship', u'kitt']
[u'henri', u'anchor', u'aussi', u'victori']
[u'hick', u'face', u'tribun']
[u'high', u'court', u'chief', u'justic', u'highlight', u'import']
[u'high', u'speed', u'internet', u'roll', u'like', u'year']
[u'hilali', u'stay', u'mufti']
[u'iemma', u'plan', u'cabinet', u'reshuffl']
[u'iemma', u'reclaim', u'power']
[u'iemma', u'vow', u'basic', u'better']
[u'imam', u'determin', u'hilali', u'futur']
[u'indian', u'pray', u'bermuda', u'catch', u'bangladesh', u'nap']
[u'inzamam', u'question', u'free', u'head', u'home']
[u'iran', u'slap', u'sanction']
[u'law', u'hurt', u'debnam', u'iemma']
[u'israel', u'plung', u'england', u'deeper', u'mire']
[u'jamaican', u'polic', u'question', u'pakistani', u'captain']
[u'japan', u'clean', u'fatal', u'quak']
[u'joyc', u'steer', u'england', u'super', u'eight']
[u'kamrau', u'corestein', u'win', u'open', u'water', u'final']
[u'katherin', u'elect', u'result', u'finalis']
[u'kudinov', u'crown', u'champion']
[u'labor', u'reclaim', u'power']
[u'labor', u'reclaim', u'power']
[u'labor', u'vow', u'basic', u'better']
[u'liber', u'plan', u'anti', u'corrupt', u'commiss']
[u'link', u'welfar', u'school', u'attend', u'govt', u'tell']
[u'assist', u'polic', u'brisban', u'stab']
[u'iron', u'salisburi', u'robberi']
[u'stab', u'semaphor']
[u'mauresmo', u'name', u'player', u'year']
[u'melbourn', u'hospitalis', u'stab']
[u'melbourn', u'tunnel', u'reopen', u'inferno']
[u'charg', u'crash']
[u'mine', u'firm', u'blame', u'flood', u'report']
[u'mogadishu', u'calm', u'bloodi', u'clash']
[u'moscow', u'strip', u'club', u'kill']
[u'nation', u'boost', u'stand', u'region']
[u'nelson', u'flag', u'special', u'forc', u'troop']
[u'broadband', u'network', u'year', u'feder', u'govt']
[u'sanction', u'slap', u'iran', u'nuclear']
[u'ireland', u'protest', u'commit', u'power', u'share']
[u'interview', u'braith', u'anasta', u'aaron', u'payn']
[u'offici', u'probe', u'unusu', u'fish', u'boat']
[u'olymp', u'cyclist', u'melbourn', u'tunnel', u'crash']
[u'olymp', u'cyclist', u'melb', u'tunnel', u'victim']
[u'dead', u'hurt', u'japan', u'quak']
[u'kill', u'japan', u'earthquak']
[u'kill', u'score', u'hurt', u'japan', u'quak']
[u'opposit', u'call', u'scrap', u'soft', u'cannabi']
[u'pakistan', u'cricket', u'question']
[u'pakistan', u'seek', u'charter', u'flight', u'home', u'player']
[u'pedrosa', u'take', u'pole', u'ahead', u'rossi']
[u'deni', u'law', u'hurt', u'liber']
[u'polic', u'interview', u'pick', u'attack']
[u'polic', u'extradit', u'aust', u'kidnap', u'suspect']
[u'pont', u'focus', u'turn', u'windi']
[u'porsch', u'make', u'takeov', u'volkswagon']
[u'protea', u'command', u'chase']
[u'rabbitoh', u'ahead', u'eel']
[u'rabbitoh', u'maintain', u'win', u'way']
[u'ramo', u'horta', u'ask', u'stay', u'east', u'timor']
[u'escal', u'captur', u'sailor']
[u'royal', u'deni', u'princ', u'harri', u'assault', u'claim']
[u'russia', u'break', u'china', u'dive', u'stranglehold']
[u'scheme', u'encourag', u'young', u'compos']
[u'school', u'compli', u'compulsori', u'water', u'program']
[u'score', u'kill', u'iraq', u'attack']
[u'score', u'kill', u'iraq', u'bomb']
[u'kill', u'russian', u'chopper', u'crash']
[u'socceroo', u'humbl', u'china', u'asian', u'warm']
[u'stop', u'clock', u'british', u'time']
[u'super', u'interview', u'kristian', u'ormbsi', u'tune']
[u'sydney', u'lane', u'cove', u'tunnel', u'open']
[u'sydney', u'sushi', u'eater', u'warn', u'risk']
[u'taiwanes', u'crew', u'send', u'detent', u'centr']
[u'tander', u'sweep', u'perth', u'supercar', u'round']
[u'teen', u'charg', u'south', u'bank', u'stab']
[u'liber', u'santoro', u'senat', u'ticket']
[u'travel', u'urg', u'guard', u'mosquito', u'bite']
[u'tsunami', u'alert', u'issu', u'japan', u'earthquak']
[u'tsunami', u'warn', u'issu', u'japan', u'quak']
[u'turkey', u'troubl', u'flare', u'euro', u'qualifi']
[u'quak', u'rattl', u'vanuatu']
[u'coordin', u'deni', u'entri', u'sudanes', u'refuge']
[u'vote', u'toughen', u'sanction', u'iran']
[u'britain', u'welcom', u'sanction', u'iran']
[u'warrior', u'control', u'break']
[u'women', u'inner', u'sydney']
[u'wood', u'tighten', u'grip', u'doral']
[u'worker', u'wors', u'chang', u'report']
[u'accus', u'murder', u'believ', u'punish']
[u'acoss', u'question', u'societi', u'attitud', u'poverti']
[u'prison', u'wast', u'money', u'opposit', u'say']
[u'afghan', u'armi', u'sweep', u'kill', u'rebel', u'day']
[u'consid', u'toowoomba', u'murder', u'sentenc']
[u'alinta', u'decid', u'bid']
[u'nuclear', u'power', u'petit']
[u'amor', u'camel', u'forc', u'outback', u'fenc', u'rethink']
[u'aplin', u'return', u'alburi', u'william', u'take']
[u'arrest', u'end', u'cairn', u'sieg']
[u'auction', u'histor', u'breastplat', u'doubt']
[u'auspin', u'worker', u'job', u'protest', u'gold', u'coast']
[u'aussi', u'bronz', u'synchronis', u'springboard']
[u'ballarat', u'crisi', u'prompt', u'save', u'water']
[u'bangladesh', u'victori', u'knock', u'india']
[u'crowd', u'eye', u'meander', u'work']
[u'black', u'loss', u'see', u'martin', u'west', u'lone', u'labor', u'voic']
[u'blair', u'outrag', u'sailor', u'captur']
[u'book', u'burn', u'anniversari', u'euthanasia', u'ban']
[u'bowelscan', u'program', u'prove', u'success']
[u'brisban', u'consid', u'fund', u'boost', u'curb', u'water']
[u'broom', u'port', u'author', u'get', u'chief']
[u'call', u'fund', u'stop', u'spread', u'bellyach', u'bush']
[u'caloundra', u'forum', u'focus', u'region', u'plan']
[u'carrol', u'face', u'danger', u'throw']
[u'chimp', u'read', u'facial', u'cue', u'like', u'human', u'studi']
[u'china', u'finish', u'dive', u'gold']
[u'citigroup', u'accus', u'insid', u'trade']
[u'coal', u'industri', u'greener', u'anglo', u'coal']
[u'cobar', u'forc', u'water']
[u'cole', u'report', u'half', u'year', u'profit', u'increas']
[u'cole', u'talk', u'domin']
[u'cole', u'consid', u'target', u'officework', u'sale']
[u'cole', u'warn', u'rough', u'road', u'ahead']
[u'collingwood', u'footbal', u'punch', u'woman', u'head']
[u'communiti', u'mourn', u'loss', u'promin', u'cyclist']
[u'constanc', u'claim', u'victori', u'bega']
[u'council', u'rethink', u'procur', u'polici']
[u'council', u'urg', u'defer', u'hardwar', u'warehous', u'decis']
[u'cousinss', u'plight', u'warn', u'lethal']
[u'rescu', u'pleas', u'govt', u'decis', u'retain']
[u'cyclist', u'die', u'barossa', u'crash']
[u'dead', u'jellyfish', u'near', u'fraser']
[u'debnam', u'deputi', u'challeng']
[u'demand', u'push', u'karratha', u'rental', u'price', u'high']
[u'dept', u'discuss', u'amalgam', u'litchfield']
[u'destabilis', u'enemi']
[u'distract', u'eagl', u'tri', u'focus', u'swan']
[u'downer', u'applaud', u'stanc', u'iran']
[u'downer', u'want', u'zimbabw', u'tour', u'ax']
[u'downer', u'wari', u'possibl', u'aust', u'troop', u'detain']
[u'draper', u'torbay', u'claim', u'victori', u'await']
[u'driver', u'accus', u'assault', u'polic']
[u'driver', u'implic', u'goussi', u'lewi', u'moran', u'murder']
[u'dubbo', u'barwon', u'close']
[u'elton', u'john', u'celebr', u'concert']
[u'esper', u'consid', u'option', u'amid', u'bird']
[u'mission', u'preacher', u'jail', u'sexual', u'abus']
[u'faith', u'help', u'mother', u'overcom', u'hous', u'tragedi']
[u'fake', u'taxi', u'driver', u'destroy', u'life', u'woman', u'say']
[u'farm', u'group', u'abandon', u'water', u'safeti', u'scheme']
[u'fenc', u'help', u'boost', u'bilbi', u'surviv']
[u'finalis', u'appl', u'import', u'polici', u'grower']
[u'flegg', u'vow', u'remain', u'oppos', u'goodna', u'bypass']
[u'flegg', u'vow', u'stand', u'firm', u'goodna', u'bypass']
[u'judg', u'chair', u'inquiri', u'black', u'hawk', u'crash']
[u'forum', u'look', u'way', u'road', u'toll']
[u'fund', u'help', u'form', u'gunnedah', u'industri', u'land']
[u'futur', u'fund', u'leav', u'say', u'minchin']
[u'gillard', u'clarifi', u'hockey', u'trust', u'queri']
[u'food', u'requir', u'independ', u'test', u'minist']
[u'gold', u'coast', u'leonard', u'claim', u'ironman', u'titl']
[u'govt', u'defend', u'regim']
[u'govt', u'run', u'futur', u'fund', u'scare', u'campaign', u'labor']
[u'govt', u'shell', u'oyster', u'industri', u'fund']
[u'govt', u'urg', u'relax', u'seed', u'quarantin', u'rule']
[u'green', u'coal', u'power', u'station', u'brown']
[u'green', u'group', u'fight', u'lake', u'wendoure', u'hotel']
[u'hackett', u'loss', u'wake', u'perkin']
[u'hancock', u'win', u'south', u'coast', u'amidst', u'strong']
[u'heron', u'resort', u'time', u'zone']
[u'hervey', u'prepar', u'tougher', u'water', u'restrict']
[u'hick', u'contempl', u'plea', u'bargain']
[u'hick', u'expect', u'plead', u'guilti']
[u'hick', u'plea', u'deal']
[u'historian', u'hit', u'albert', u'hall', u'develop', u'plan']
[u'household', u'cautious', u'financ']
[u'howard', u'defend', u'law', u'elect', u'result']
[u'howard', u'defend', u'regim']
[u'howard', u'denial', u'workchoic', u'backlash', u'govt']
[u'howard', u'welcom', u'hick', u'hear']
[u'iemma', u'promis', u'fresh', u'face', u'frontbench']
[u'iemma', u'shuffl', u'frontbench']
[u'impact', u'hilali', u'decis', u'extrem', u'negat']
[u'indonesian', u'crash', u'victim', u'stabl', u'condit']
[u'indonesia', u'open']
[u'industri', u'group', u'demand', u'action', u'elect']
[u'industri', u'produc', u'discuss', u'futur', u'cattl']
[u'inquest', u'kindergarten', u'death', u'begin']
[u'inzi', u'undermin', u'woolmer', u'pakistan', u'insid']
[u'iran', u'vow', u'continu', u'nuclear', u'work', u'despit']
[u'law', u'concern', u'voter', u'exit', u'poll']
[u'law', u'hurt', u'famili', u'say', u'labor']
[u'jamaican', u'polic', u'fear', u'diplomat', u'incid']
[u'japan', u'clean', u'fatal', u'quak']
[u'japan', u'aftershock']
[u'jone', u'white', u'lead', u'aussi', u'qualifi']
[u'judg', u'critic', u'polic', u'assault', u'probe']
[u'judg', u'urg', u'disqualifi', u'palm', u'case']
[u'kouta', u'month']
[u'labor', u'backbench', u'threaten', u'replac']
[u'labor', u'say', u'workchoic', u'dissent', u'help']
[u'labor', u'workchoic', u'campaign', u'dishonest']
[u'lane', u'cove', u'tunnel', u'open']
[u'lara', u'relish', u'ultim', u'test']
[u'lawyer', u'hick', u'launch', u'attack', u'prosecutor']
[u'lenton', u'snatch', u'second', u'gold', u'medal']
[u'lethal', u'hold', u'littl', u'hope', u'bradshaw']
[u'lobster', u'fisher', u'await', u'leas', u'agreement', u'approv']
[u'lush', u'condit', u'help', u'lure', u'tourist', u'outback']
[u'maguir', u'wont', u'specul', u'opposit', u'leadership']
[u'accus', u'assault', u'polic']
[u'accus', u'break', u'polic', u'station']
[u'arrest', u'melbourn', u'assault']
[u'charg', u'adelaid', u'home', u'invas']
[u'jail', u'underag', u'promis', u'wife']
[u'man', u'injuri', u'remain', u'mysteri', u'polic']
[u'extradit', u'darwin', u'alleg', u'murder']
[u'face', u'court', u'weapon']
[u'use', u'sword', u'hold', u'servic', u'station', u'polic']
[u'mayor', u'seek', u'vline', u'meet', u'concern']
[u'mcclaren', u'rooney', u'loggerhead', u'report']
[u'melbourn', u'author', u'rework', u'traffic']
[u'melbourn', u'exhibit', u'provid', u'snapshot', u'central']
[u'melbourn', u'traffic', u'gridlock', u'avoid']
[u'power', u'probe', u'prompt', u'renew', u'energi']
[u'miner', u'region', u'gold', u'potenti']
[u'minnow', u'complet', u'rugbi', u'world', u'line']
[u'polic', u'seek', u'latrob', u'valley']
[u'respect', u'need']
[u'half', u'australian', u'oppos', u'work', u'choic']
[u'mori', u'commiss']
[u'motorcyclist', u'hurt', u'loxton', u'crash']
[u'lawsuit', u'threat', u'stunt']
[u'plan', u'motor', u'race', u'complex']
[u'multicultur', u'festiv', u'annual', u'event']
[u'admit', u'kill', u'babi']
[u'muslim', u'leader', u'meet', u'consid', u'replac', u'mufti']
[u'nation', u'claim', u'bittersweet']
[u'program', u'aim', u'stop', u'carer', u'leav']
[u'charg', u'lay', u'glenelg', u'incid']
[u'evid', u'dope', u'violat', u'melbourn', u'hotel']
[u'author', u'warn', u'infect', u'mosquito']
[u'liber', u'parti', u'religi', u'right', u'alleg']
[u'pastoralist', u'qualifi', u'drought', u'support']
[u'oakeshott', u'celebr', u'port', u'macquari']
[u'ofarrel', u'confid', u'unit', u'liber']
[u'ofarrel', u'challeng', u'debnam']
[u'ofarrel', u'challeng', u'debnam', u'leadership']
[u'opposit', u'call', u'risdon', u'jail', u'review']
[u'pair', u'forster', u'head', u'crash']
[u'parent', u'govt', u'super', u'school', u'plan']
[u'peopl', u'angri', u'voluntari', u'euthanasia', u'law']
[u'piccoli', u'highlight', u'elect', u'sling']
[u'defend', u'law', u'elect', u'result']
[u'say', u'roll', u'workchoic', u'option']
[u'polic', u'charg', u'cattl', u'embryo', u'theft']
[u'polic', u'hunt', u'trio', u'bairnsdal', u'bash']
[u'polic', u'urg', u'resid', u'home']
[u'poppi', u'plant', u'soar']
[u'premier', u'join', u'rudd', u'labor', u'climat', u'chang']
[u'psychiatrist', u'accus', u'health', u'ignor', u'mental']
[u'pulp', u'critic', u'credenti', u'attack']
[u'qanta', u'consortium', u'unfaz', u'refus', u'sell', u'share']
[u'govt', u'deni', u'water', u'minist', u'conflict']
[u'student', u'world', u'best', u'lego', u'contest']
[u'quak', u'aftershock', u'jolt', u'central', u'japan']
[u'rain', u'forecast', u'brighten', u'farmer', u'outlook']
[u'ratepay', u'group', u'seek', u'penola', u'bypass', u'view']
[u'report', u'airstrip', u'death', u'call', u'chang']
[u'research', u'trial', u'vein', u'treatment', u'mules']
[u'resid', u'ask', u'push', u'earli', u'power', u'outag']
[u'resid', u'local', u'govt', u'merger', u'plan']
[u'rice', u'impress', u'take', u'bronz']
[u'rickard', u'grab', u'bronz', u'breaststrok']
[u'rudd', u'shrug', u'govt', u'broadband', u'attack']
[u'russian', u'dive', u'coach', u'charg', u'assault']
[u'grain', u'council', u'withdraw', u'singl', u'desk', u'support']
[u'schoeman', u'win', u'butterfli']
[u'second', u'rescu', u'attempt', u'announc', u'submarin']
[u'servic', u'honour', u'south', u'east', u'race', u'caller']
[u'shark', u'edg', u'titan', u'break']
[u'south', u'pacif', u'bloc', u'sign', u'constitut']
[u'speaker', u'probe', u'hockey', u'financi', u'arrang']
[u'stoner', u'happi', u'north', u'coast', u'perform']
[u'storm', u'victim', u'access']
[u'strong', u'crowd', u'blow', u'esper', u'wind', u'festiv']
[u'strong', u'crowd', u'see', u'nozi', u'outback']
[u'strong', u'demand', u'derbi', u'residenti', u'land']
[u'student', u'vitamin', u'test', u'spark', u'ribena', u'court', u'case']
[u'surf', u'world', u'turn', u'attent', u'margaret', u'river']
[u'swimmer', u'complain', u'water', u'cold', u'visibl', u'poor']
[u'taiwanes', u'fishermen', u'send', u'darwin']
[u'tamil', u'tiger', u'attack', u'close', u'lankan', u'airport']
[u'opposit', u'urg', u'govt', u'review', u'budget']
[u'tate', u'beat', u'newcastl', u'chanc']
[u'tebbutt', u'quit', u'spend', u'time']
[u'teen', u'death', u'provid', u'remind', u'bike', u'safeti']
[u'telstra', u'warn', u'custom', u'hoax', u'letter']
[u'thai', u'panda', u'get', u'daili', u'dose', u'porn']
[u'thaksin', u'wife', u'charg', u'evas']
[u'time', u'run', u'gympi', u'bypass']
[u'titan', u'maiden']
[u'toddler', u'die', u'melbourn', u'driveway', u'accid']
[u'tradit', u'owner', u'challeng', u'mcarthur', u'river']
[u'tree', u'concern', u'hamper', u'road', u'revamp']
[u'trio', u'escap', u'burn', u'wycheproof', u'hous']
[u'tunnel', u'reopen', u'test']
[u'union', u'want', u'workchoic', u'law', u'scrap']
[u'sanction', u'fail', u'stop', u'nuclear', u'iran']
[u'upgrad', u'facil', u'expect', u'enhanc', u'wit']
[u'uranium', u'principl']
[u'rapper', u'snoop', u'seek', u'overturn', u'visa', u'denial']
[u'troop', u'surg', u'baghdad', u'provinc']
[u'visit', u'deliv', u'scienc', u'messag', u'student']
[u'voluntari', u'administr', u'appoint', u'fincorp']
[u'voter', u'return', u'cansdel', u'clarenc']
[u'metal', u'firm', u'sign', u'lucrat', u'chines', u'deal']
[u'wood', u'hold', u'nerv', u'doral']
[u'youth', u'choos', u'work', u'nation', u'servic']
[u'yuryevich', u'like', u'seek', u'term']
[u'alleg', u'hostag', u'taker', u'remand', u'custodi']
[u'amend', u'develop', u'plan', u'council']
[u'follow', u'wall', u'street']
[u'attempt', u'child', u'abduct', u'trigger', u'polic', u'hunt']
[u'aussi', u'serial', u'hugger', u'win', u'youtub', u'award']
[u'author', u'investig', u'death', u'truck', u'driver']
[u'author', u'probe', u'goulburn', u'jail']
[u'baan', u'confid', u'ahead', u'saudi', u'match']
[u'bail', u'refus', u'accus']
[u'bairnsdal', u'diver', u'make', u'coastal', u'award', u'final']
[u'barwon', u'tamworth', u'northern', u'tableland', u'elect']
[u'bass', u'coast', u'mayor', u'push']
[u'say', u'bridg', u'repair', u'cost']
[u'beat', u'zimbabwean', u'activist', u'plan', u'return']
[u'beatti', u'lead', u'brisban', u'world', u'athlet']
[u'charit']
[u'beij', u'burglar', u'make', u'sleep']
[u'berri', u'belong', u'cancer', u'fight', u'superfood', u'studi']
[u'bring', u'lara', u'tell', u'aussi']
[u'brisban', u'tunnel', u'best', u'protect']
[u'british', u'woman', u'buri', u'sand', u'tokyo', u'bathtub']
[u'brother', u'face', u'court', u'bottl', u'shop', u'break']
[u'bryant', u'attempt', u'self', u'harm']
[u'burma', u'capit', u'display', u'militari']
[u'burnley', u'tunnel', u'reopen', u'traffic']
[u'burnley', u'tunnel', u'traffic', u'flow', u'smooth']
[u'busi', u'hepburn', u'broadband', u'anger']
[u'campaign', u'shed', u'light', u'energi', u'effici', u'bulb']
[u'cancer', u'care', u'renam', u'see', u'stunt']
[u'cane', u'grower', u'look', u'sunshin']
[u'carbon', u'credit', u'pay', u'till', u'farmer']
[u'carrol', u'miss', u'week']
[u'childish', u'behaviour']
[u'china', u'make', u'sport', u'car']
[u'closer']
[u'combet', u'rule', u'elect']
[u'compani', u'defend', u'controversi', u'sleep', u'pill']
[u'outback', u'camel', u'cull']
[u'corbi', u'book', u'profit', u'freez']
[u'coughlin', u'break', u'backstrok', u'world', u'record']
[u'council', u'find', u'anzac', u'march', u'solut']
[u'count', u'continu', u'seat', u'undecid']
[u'crow', u'pfeiffer', u'cheekbon', u'surgeri']
[u'cyclon', u'kara', u'like', u'weaken']
[u'cyclon', u'kara', u'downgrad']
[u'damag', u'race', u'yacht', u'arriv', u'safe']
[u'decept', u'advertis', u'land', u'fish', u'shop', u'water']
[u'director', u'worri', u'high', u'teacher', u'drop', u'rate']
[u'drought', u'produc', u'rate', u'rebat']
[u'drunk', u'loud', u'music', u'ban', u'gallipoli']
[u'earn', u'respect']
[u'elder', u'seeker', u'discourag']
[u'elector', u'offic', u'need', u'better', u'secur', u'bligh']
[u'eyr', u'peninsula', u'cockatoo', u'near', u'extinct']
[u'farmer', u'confid', u'increas']
[u'favourit', u'draw', u'wide', u'slipper']
[u'fear', u'black', u'elect', u'loss', u'delay', u'council']
[u'fear', u'wodonga', u'vandal', u'missil', u'kill']
[u'govt', u'accus', u'neglect', u'rural']
[u'film', u'maker', u'support', u'kimberley', u'protect']
[u'custom', u'offici', u'leak']
[u'forum', u'consid', u'schooli', u'issu']
[u'forum', u'hear', u'high', u'esper', u'lead', u'level']
[u'glaxosmithklin', u'admit', u'mislead', u'public']
[u'goulburn', u'vote', u'count', u'continu']
[u'goussi', u'stand', u'trial', u'moran', u'murder']
[u'govt', u'accus', u'workchoic', u'cover']
[u'govt', u'pay', u'spare', u'murray', u'water']
[u'govt', u'urg', u'extend', u'rat', u'rebat']
[u'govt', u'urg', u'hous', u'crisi']
[u'govt', u'welcom', u'hick', u'guilti', u'plea']
[u'green', u'group', u'air', u'water', u'plan', u'worri']
[u'group', u'say', u'test', u'prove', u'vet', u'expos', u'deplet']
[u'hackett', u'back', u'titl']
[u'hackett', u'steven', u'final']
[u'health', u'minist', u'defend', u'cairn', u'hospit']
[u'hick', u'agre', u'guilti', u'plea']
[u'hick', u'charg', u'sheet']
[u'hick', u'enter', u'guilti', u'plea']
[u'hick', u'choic', u'plead', u'guilti', u'father']
[u'hick', u'lodg', u'guilti', u'plea']
[u'hick', u'plead', u'guilti']
[u'hick', u'plead', u'guilti']
[u'hick', u'plead', u'guilti', u'terror', u'charg']
[u'hickss', u'swear', u'charg']
[u'high', u'wind', u'creat', u'eros', u'woe', u'west', u'farmer']
[u'high', u'wind', u'expect', u'eas']
[u'high', u'youth', u'jobless', u'rate', u'see', u'contribut']
[u'holocaust', u'survivor', u'win', u'biographi', u'prize']
[u'hous', u'sale', u'jump', u'stabl', u'rat']
[u'howard', u'approv', u'river', u'handov', u'plan']
[u'howard', u'defend', u'law', u'anniversari']
[u'howard', u'silent', u'hick', u'deal']
[u'hundr', u'expect', u'ralli', u'aquif', u'plan']
[u'hundr', u'report', u'memori', u'loss', u'sleep', u'pill']
[u'indigen', u'communiti', u'consid', u'social', u'justic']
[u'industri', u'group', u'reach', u'mackay']
[u'insurg', u'kill', u'iraq']
[u'investig', u'continu', u'hospit', u'discharg']
[u'isra', u'palestinian', u'agre', u'regular', u'talk']
[u'jone', u'defend', u'breaststrok', u'world', u'titl']
[u'kiwi', u'schoolboy', u'go', u'tonk']
[u'labor', u'label', u'santoro', u'investig', u'sham']
[u'labor', u'launch', u'promot', u'high', u'speed', u'broadband']
[u'labor', u'econom', u'plan', u'prepar', u'aust']
[u'lack', u'game', u'hurt', u'sydney', u'chanc', u'culina']
[u'laffranchi', u'court', u'assault', u'charg']
[u'land', u'purchas', u'natur', u'biodivers', u'corridor']
[u'lane', u'cove', u'tunnel', u'reopen']
[u'lethal', u'leisel', u'defend', u'titl']
[u'lockhart', u'river', u'crash', u'report', u'releas']
[u'lockyer', u'chanc', u'earli', u'return']
[u'longreach', u'easter', u'tourism', u'boost']
[u'long', u'term', u'plan', u'ask', u'water', u'strategi']
[u'avoid', u'jail', u'garden', u'disput', u'shoot']
[u'escap', u'hous', u'blaze']
[u'stand', u'trial', u'death']
[u'mcguir', u'strike', u'drug', u'polici']
[u'mickel', u'cast', u'doubt', u'popul', u'call']
[u'mine', u'compani', u'deni', u'pollut', u'claim']
[u'minist', u'deni', u'claim', u'intervent', u'servic']
[u'monster', u'toad', u'captur']
[u'urg', u'better', u'councillor', u'train', u'manag']
[u'murder', u'case', u'hear', u'suprem', u'court']
[u'myer', u'profit', u'surg', u'takeov']
[u'ireland', u'parti', u'agre', u'power', u'share', u'govt']
[u'match', u'fix', u'refer', u'woolmer']
[u'north', u'gambier', u'keep', u'barber', u'shield']
[u'nowast', u'defend', u'recycl', u'centr', u'decis']
[u'govt', u'urg', u'extend', u'privatis']
[u'liber', u'face', u'ultimatum']
[u'nuclear', u'power', u'tough', u'sell', u'say', u'switkowski']
[u'nurs', u'lose', u'appeal', u'deregistr']
[u'organ', u'fruit', u'contribut', u'health', u'studi']
[u'pakistan', u'chief', u'quiz', u'legisl']
[u'parent', u'school']
[u'park', u'associ', u'seek', u'tree', u'replac', u'detail']
[u'trial', u'north', u'west', u'health', u'centr']
[u'pedestrian', u'injur', u'crash']
[u'peirsol', u'join', u'world', u'record', u'parti']
[u'pele', u'film', u'hollywood', u'goal']
[u'perth', u'glori', u'announc']
[u'perth', u'glori', u'sponsorship', u'deal']
[u'phelp', u'smash', u'thorp', u'record']
[u'phelp', u'spark', u'world', u'record', u'frenzi']
[u'phelp', u'target', u'thorp', u'record', u'freestyl']
[u'plan', u'boost', u'barmah', u'polic', u'presenc']
[u'attack', u'labor', u'plan', u'scrap', u'workchoic']
[u'cult', u'leader', u'wife', u'hand', u'polic']
[u'polic', u'critic', u'refer']
[u'polic', u'drug', u'test', u'nab', u'driver']
[u'polic', u'investig', u'swim', u'scuffl']
[u'polic', u'investig', u'unit', u'vandal']
[u'polic', u'tavern', u'brawl', u'victim']
[u'polic', u'probe', u'ballarat', u'stab']
[u'polic', u'probe', u'cottag', u'blaze']
[u'polic', u'search', u'pakistan', u'fan', u'report']
[u'popul', u'rise', u'trigger', u'drug', u'fear']
[u'port', u'augusta', u'hold', u'youth', u'curfew', u'meet']
[u'post', u'mortem', u'stradbrok', u'bodi']
[u'power', u'share', u'deal', u'strike', u'ireland']
[u'price', u'unlead', u'petrol', u'expect', u'rise']
[u'princess', u'mari', u'start', u'daycar']
[u'produc', u'offer', u'test', u'rebat']
[u'public', u'council', u'merger']
[u'qanta', u'competitor', u'enter', u'market']
[u'qanta', u'takeov', u'deal', u'doubt']
[u'race', u'club', u'chief', u'say', u'bigger', u'meet', u'harder']
[u'razor', u'blade', u'second', u'bryant', u'suicid', u'attempt']
[u'red', u'deni', u'jone', u'exit', u'rumour']
[u'region', u'school', u'share', u'govt', u'drought']
[u'restrict', u'eas', u'river']
[u'ricciuto', u'place', u'neck', u'brace']
[u'rickard', u'fourth', u'fastest']
[u'offici', u'say', u'coerc', u'corrupt']
[u'russian', u'swim', u'coach', u'deni', u'indec', u'assault']
[u'bridgeston', u'worker', u'face', u'unpaid']
[u'govt', u'set', u'inquiri']
[u'sailor', u'hospitalis', u'breath', u'difficulti']
[u'sailor', u'shortag', u'forc', u'navi', u'cutback']
[u'salvat', u'armi', u'boost', u'fundrais', u'effort']
[u'santoro', u'clear', u'age', u'care', u'licenc']
[u'santoro', u'voic', u'deep', u'regret']
[u'sawyer', u'toad']
[u'school', u'group', u'upset', u'infrastructur', u'fund']
[u'scientist', u'gather', u'desert', u'bloom']
[u'scientist', u'local', u'climat', u'risk', u'global']
[u'score', u'fear', u'dead', u'flee', u'africa']
[u'shoot', u'victim', u'name', u'gunman', u'court']
[u'slack', u'politician']
[u'smith', u'flag', u'john', u'return']
[u'soil', u'test', u'urg', u'cattl', u'near', u'plan']
[u'south', u'coast', u'architect', u'chines', u'wetland']
[u'specul', u'polit', u'futur', u'combet']
[u'stand', u'kalgoorli', u'unlik']
[u'stanhop', u'blame', u'commonwealth', u'airport', u'congest']
[u'state', u'blame', u'learn', u'defici']
[u'strang', u'statist']
[u'struggl', u'hackett', u'admit', u'peak', u'form']
[u'studi', u'cast', u'doubt', u'angioplasti']
[u'studi', u'look', u'whitsunday', u'infrastructur', u'need']
[u'super', u'impos', u'die', u'age']
[u'sydney', u'resid', u'suffer', u'mortgag', u'pressur']
[u'offic', u'postpon', u'chang', u'crop', u'invest']
[u'teen', u'plead', u'guilti', u'darwin', u'rape']
[u'territori', u'blame', u'attend', u'school', u'test', u'result']
[u'charg', u'highway', u'polic', u'chase']
[u'thunder', u'storm', u'caus', u'havoc', u'guyana']
[u'toll', u'hold', u'give', u'evid', u'citigroup', u'case']
[u'soldier', u'stay']
[u'townsvill', u'colleg', u'staff', u'protest', u'awa']
[u'tweed', u'want', u'iemma', u'brief', u'local', u'issu']
[u'ukrainian', u'coach', u'detain', u'swim', u'scuffl']
[u'union', u'fin', u'work', u'breach']
[u'student', u'honour']
[u'captur', u'alleg', u'iraq', u'bomber']
[u'ethanol', u'decis', u'impact', u'aust', u'export']
[u'vail', u'offic', u'deni', u'chaffey', u'fund', u'commit']
[u'govt', u'pledg', u'region', u'school']
[u'govt', u'region', u'school', u'retent']
[u'vline', u'agreeabl', u'meet', u'stawel', u'station']
[u'waikeri', u'meatwork', u'oper', u'go', u'admin']
[u'minist', u'call', u'feder', u'airport', u'develop']
[u'warrumbungl', u'heritag', u'list']
[u'woman', u'dead', u'plough', u'stop']
[u'woman', u'dead', u'learner', u'driver', u'plough']
[u'woolmer', u'detect', u'play', u'link', u'fan']
[u'world', u'tell', u'youtub', u'pull', u'plug']
[u'young', u'detaine', u'escap', u'challeng']
[u'ziegler', u'take', u'gold', u'second', u'fastest', u'time']
[u'cattl', u'mysteri', u'diseas']
[u'reward', u'offer', u'biki', u'clubhous']
[u'appoint', u'match', u'review', u'supremo']
[u'back', u'drug', u'test', u'program']
[u'age', u'care', u'nurs', u'want', u'awa']
[u'albani', u'port', u'say', u'lead', u'export', u'like', u'esper']
[u'alic', u'council', u'back', u'local', u'plan']
[u'alinta', u'trade', u'halt', u'bid', u'assess']
[u'andren', u'decid', u'seat', u'contest']
[u'arm', u'hold', u'children', u'hostag', u'philippin']
[u'arsonist', u'blame', u'biki']
[u'aspirin', u'lower', u'heart', u'diseas', u'risk', u'studi', u'show']
[u'aust', u'compani', u'work', u'african']
[u'australian', u'swimmer', u'cruis', u'heat']
[u'australian', u'women', u'water', u'polo', u'semi']
[u'baboon', u'invad', u'cape', u'home']
[u'ballarat', u'council', u'vote', u'abandon', u'plan']
[u'baluch', u'want', u'holloway', u'need', u'polic']
[u'begley', u'replac', u'voss', u'senior', u'list']
[u'bendigo', u'sharehold', u'warn', u'rival', u'offer']
[u'bite', u'claim', u'women', u'water', u'polo']
[u'bloodi', u'hell', u'tourism', u'poster', u'ban']
[u'bodi', u'exhum', u'hospit', u'death', u'investig']
[u'bread', u'shop', u'close', u'amid', u'salmonella', u'investig']
[u'bridgeston', u'worker', u'push', u'strike']
[u'caltex', u'predict', u'petrol', u'price', u'goug', u'claim']
[u'careflight', u'intern', u'launch', u'darwin']
[u'catchment', u'author', u'fear', u'vail', u'stanc', u'hurt']
[u'channel', u'post', u'profit', u'drop']
[u'china', u'russia', u'plan', u'mar', u'mission']
[u'closer']
[u'closer']
[u'committe', u'inact', u'show', u'govt', u'lack', u'idea', u'labor']
[u'confer', u'tell', u'job', u'boom', u'defenc']
[u'costa', u'claim', u'wollondilli']
[u'councillor', u'doesnt', u'mall']
[u'councillor', u'see', u'benefit', u'mall', u'traffic', u'plan']
[u'council', u'push', u'stop', u'fort', u'scratchley', u'vandal']
[u'council', u'seek', u'communiti', u'feedback', u'rate', u'rise']
[u'council', u'water', u'suppli', u'protect']
[u'credit', u'card', u'theft', u'spark', u'polic', u'warn']
[u'crimin', u'right']
[u'cyclon', u'kara', u'downgrad', u'cross', u'pilbara', u'coast']
[u'cyclon', u'trough', u'boost', u'northern', u'march', u'rain']
[u'daredevil', u'condemn', u'escal', u'stunt']
[u'deadlin', u'loom', u'council', u'respons']
[u'demetriou', u'defend', u'drug', u'polici']
[u'deputi', u'mayor', u'forc', u'apologis', u'code']
[u'design', u'say', u'product', u'reduc', u'sharp', u'injuri']
[u'detaine', u'plan', u'hunger', u'protest', u'deport']
[u'diann', u'brimbl', u'mother', u'die']
[u'digit', u'literaci', u'knowledg', u'economi']
[u'drug', u'like', u'replac', u'heart', u'surgeri']
[u'earthquak', u'jolt', u'central', u'japan', u'coast']
[u'east', u'timores', u'polit', u'leader', u'restraint']
[u'empir', u'rubber', u'worker', u'decid', u'purchas']
[u'escap', u'spark', u'immedi', u'broom', u'jail']
[u'esper', u'call', u'inquiri', u'report']
[u'timor', u'militia', u'leader', u'readi', u'apologis']
[u'farm', u'group', u'see', u'choic', u'singl', u'trade']
[u'fatal', u'fall', u'prompt', u'work', u'safeti', u'warn']
[u'feder', u'stun', u'cana']
[u'figur', u'rise', u'drug', u'court', u'case']
[u'fishermen', u'group', u'want', u'join', u'water', u'right']
[u'flegg', u'confid', u'parti', u'room', u'support']
[u'food', u'test', u'salmonella', u'outbreak']
[u'pope', u'move', u'closer', u'sainthood']
[u'pulp', u'panellist', u'accus', u'gunn']
[u'fresh', u'concern', u'gulf', u'soldier', u'health']
[u'fund', u'highlight', u'million', u'unclaim', u'super']
[u'furious', u'fan', u'taunt', u'return', u'pakistani', u'player']
[u'furnitur', u'busi', u'face', u'break', u'situat']
[u'giteau', u'henjak', u'forc']
[u'gough', u'whitlam', u'vincent', u'lingiairi']
[u'gough', u'whitlam', u'great', u'speech', u'rural', u'australia']
[u'govt', u'accus', u'doubl', u'standard', u'public']
[u'govt', u'criticis', u'ceduna', u'safe', u'hous', u'decis']
[u'govt', u'probe', u'mari', u'valley', u'meet', u'bungl']
[u'govt', u'urg', u'revamp', u'tafe']
[u'govt', u'fund', u'rotavirus', u'vaccin', u'children']
[u'goward', u'vote', u'ahead', u'stephenson']
[u'evid', u'clear', u'british', u'sailor', u'wrongdo']
[u'grampian', u'unlik', u'drench']
[u'green', u'candid', u'fear', u'climat', u'chang']
[u'gunman', u'releas', u'philippin', u'child', u'hostag']
[u'gunmen', u'kill', u'iraqi', u'dead', u'bomb']
[u'gunnedah', u'council', u'focus', u'rural', u'subdivis', u'size']
[u'hale', u'say', u'undecid', u'rate', u'rise']
[u'hall', u'head', u'resid', u'curb', u'antisoci', u'woe']
[u'hayden', u'knock', u'best', u'buck']
[u'hick', u'sentenc', u'discuss']
[u'hick', u'prosecutor', u'consid', u'year', u'sentenc']
[u'hick', u'sentenc', u'prepar']
[u'hickss', u'time', u'serv', u'count']
[u'high', u'altitud', u'airport', u'build', u'tibet']
[u'highway', u'clear', u'truck', u'crash']
[u'hillier', u'fresh', u'appeal', u'day']
[u'historian', u'lose', u'vinci', u'code', u'plagiar', u'appeal']
[u'hop', u'cold', u'snap', u'curb', u'mozzi', u'problem']
[u'hotel', u'propon', u'hop', u'develop', u'oper']
[u'hous', u'resourc', u'loss', u'drag', u'market']
[u'import', u'issu']
[u'indon', u'agre', u'bird', u'virus', u'sampl']
[u'intervent', u'order', u'ukrainian', u'swim', u'coach']
[u'italian', u'win', u'vote', u'troop', u'afghanistan']
[u'jail', u'grandfath', u'get', u'year']
[u'kalgoorli', u'council', u'begin', u'campaign', u'lure', u'teacher']
[u'qanta', u'australia']
[u'kingaroy', u'hospit', u'urg', u'reopen', u'emerg', u'dept']
[u'labor', u'announc', u'household', u'solar', u'plan']
[u'labor', u'criticis', u'public', u'servant', u'compens']
[u'labor', u'promis', u'solar', u'incent']
[u'labor', u'say', u'govt', u'slow', u'rotavirus', u'vaccin']
[u'academ', u'protest', u'outsid']
[u'leak', u'report', u'blame', u'mainten', u'mistak']
[u'lewthwait', u'indec', u'charg', u'dismiss']
[u'lion', u'lose', u'bradshaw', u'season']
[u'live']
[u'local', u'push', u'better', u'dubbo', u'oncolog', u'servic']
[u'local', u'surfer', u'margaret', u'river']
[u'log', u'protest', u'fin', u'trespass']
[u'longreach', u'experi', u'cane', u'toad', u'popul', u'boom']
[u'magistr', u'say', u'altern', u'jail']
[u'mainten', u'work', u'disrupt', u'ferri', u'servic']
[u'arrest', u'grafton', u'sydney', u'shoot']
[u'arrest', u'cocain', u'import']
[u'avoid', u'jail', u'threaten', u'stab', u'stepmum']
[u'charg', u'drug', u'smuggl', u'substanc']
[u'charg', u'send', u'porn', u'american', u'teenag']
[u'die', u'sheffield', u'hous']
[u'guilti', u'normanton', u'manslaught']
[u'grant', u'bail', u'jail', u'drug']
[u'hospit', u'mall', u'attack']
[u'remand', u'custodi', u'cocain', u'seizur']
[u'send', u'child', u'rape']
[u'market', u'board', u'back', u'wine', u'industri', u'restructur']
[u'mayor', u'hop', u'drought', u'concert', u'sequel']
[u'accus', u'biki', u'gang', u'link', u'charg']
[u'minist', u'say', u'real', u'bloodi', u'hell']
[u'burn', u'death', u'nigeria', u'tanker']
[u'work', u'need', u'porongurup', u'nation', u'park']
[u'urg', u'govt', u'tougher', u'greenhous']
[u'nation', u'meet', u'discuss', u'split', u'coalit']
[u'nrma', u'say', u'caltex', u'genuin', u'price']
[u'govt', u'negoti', u'interim', u'fish', u'permit']
[u'nurs', u'lift', u'work', u'ban', u'deal', u'strike', u'hospit']
[u'olyroo', u'saudi', u'arabia']
[]
[u'year', u'hart', u'loss']
[u'opinion', u'differ', u'lake', u'colac', u'fish', u'kill', u'caus']
[u'opposit', u'claim', u'affect', u'base', u'gastro']
[u'orkopoulo', u'case', u'court']
[u'govern', u'accomplic']
[u'iraq']
[u'pair', u'charg', u'base', u'jump']
[u'pakistan', u'team', u'clear', u'woolmer', u'probe']
[u'phelp', u'record', u'continu']
[u'philippin', u'hostag', u'taker', u'agre', u'surrend']
[u'phone', u'interim', u'approv']
[u'piper', u'say', u'lake', u'macquari', u'margin', u'seat']
[u'defend', u'climat', u'polici']
[u'deni', u'hick', u'pressur', u'guilti', u'plea']
[u'refus', u'risk', u'coal', u'job', u'combat', u'global']
[u'reject', u'call', u'greenhous', u'emiss']
[u'reject', u'hick', u'plea', u'pressur', u'suggest']
[u'say', u'govt', u'act', u'stern', u'report']
[u'polic', u'fear', u'miss', u'sunshin', u'coast']
[u'polic', u'hunt', u'girl', u'attack']
[u'polic', u'seiz', u'record', u'cocain', u'haul']
[u'polic', u'question', u'fatal', u'crash', u'driver']
[u'port', u'delay', u'prove', u'cost', u'iron', u'firm']
[u'prosecutor', u'consid', u'year', u'sentenc', u'hick']
[u'protea', u'grappl', u'unknown', u'ahead', u'lanka']
[u'liber', u'parti', u'leadership', u'specul']
[u'race', u'club', u'chief', u'sceptic', u'compo', u'offer']
[u'reinado', u'hunt', u'continu', u'timor', u'elect', u'loom']
[u'report', u'call', u'tran', u'fat', u'tackl']
[u'report', u'criticis', u'author', u'juvenil', u'justic']
[u'report', u'find', u'indigen', u'youth', u'detent', u'rat']
[u'report', u'warn', u'cool', u'climat', u'winegrow', u'face']
[u'research', u'link', u'overweight', u'girl', u'adult', u'onset']
[u'resid', u'stay', u'altern', u'accommod']
[u'resid', u'consult', u'noosa', u'transit']
[u'restrain', u'order', u'issu', u'ukrain', u'swim', u'coach']
[u'road', u'accid', u'emerg', u'servic', u'busi']
[u'ruddock', u'rule', u'tougher', u'terror', u'law']
[u'ruddock', u'say', u'hick', u'unlik', u'appeal', u'sentenc']
[u'rumour', u'blame', u'spike', u'futur']
[u'russia', u'award', u'special', u'honour', u'democraci']
[u'santoro', u'make', u'final', u'speech', u'parliament']
[u'opposit', u'urg', u'action', u'reduc', u'court', u'delay']
[u'saudi', u'arabia', u'host', u'middl', u'east', u'peac', u'talk']
[u'schoolchildren', u'hold', u'hostag', u'manila']
[u'schoolchildren', u'take', u'hostag', u'manila']
[u'school', u'head', u'teacher', u'take', u'children', u'hostag']
[u'school', u'lose', u'teacher', u'number', u'battl']
[u'second', u'bodi', u'south', u'stradbrok']
[u'secur', u'polici', u'need', u'sport', u'carniv', u'get']
[u'singaporean', u'right', u'activist', u'criticis']
[u'skill', u'migrat', u'program', u'hijack']
[u'slow', u'passeng', u'number', u'servic']
[u'soil', u'test', u'result', u'alter', u'traveston', u'plan']
[u'speed', u'camera', u'turn', u'soon']
[u'stern', u'climat']
[u'stern', u'urg', u'aust', u'leadership', u'role']
[u'steven', u'strike', u'bronz']
[u'survey', u'show', u'employ', u'confid', u'soar']
[u'syke', u'push', u'tourism', u'fund', u'releas']
[u'teen', u'spark', u'bing', u'drink', u'concern']
[u'tender', u'call', u'eurobodalla', u'water', u'pipelin']
[u'tension', u'rise', u'captur', u'british', u'sailor']
[u'seat', u'remain', u'undecid']
[u'titan', u'unchang', u'line', u'tackl', u'bulldog']
[u'track', u'monitor', u'timber', u'export']
[u'ugli', u'parent', u'syndrom', u'blame', u'coach', u'ban']
[u'union', u'fear', u'teacher', u'wors', u'awa']
[u'union', u'want', u'transport', u'solut', u'abattoir', u'worker']
[u'court', u'say', u'detaine', u'rumsfeld']
[u'democrat', u'welcom', u'senat', u'iraq']
[u'hous', u'market', u'troubl', u'hold', u'wall']
[u'vail', u'call', u'asia', u'pacif', u'cooper', u'road']
[u'vail', u'discuss', u'virgin', u'plan', u'oversea', u'flight']
[u'govt', u'offer', u'bounti', u'wild', u'dog', u'fox']
[u'govt', u'offer', u'wild', u'bounti']
[u'govt', u'admit', u'failur', u'indigen', u'jail', u'rat']
[u'nation', u'break', u'deferr']
[u'warrego', u'river', u'water', u'auction', u'get', u'green', u'light']
[u'watch', u'hous', u'inquest', u'hear', u'prison', u'check']
[u'weather', u'bureau', u'predict', u'better', u'fall', u'south', u'east']
[u'westport', u'foreshor', u'committe', u'halv', u'commerci']
[u'william', u'crush', u'sharapova', u'open', u'rematch']
[u'winegrap', u'grower', u'warn', u'product', u'shift', u'inland']
[u'winegrow', u'urg', u'boost', u'size']
[u'woman', u'avoid', u'jail', u'term', u'sport', u'author', u'fraud']
[u'worsfold', u'take', u'field', u'controversi']
[u'zimbabw', u'opposit', u'chief', u'arrest']
[u'shop', u'sunnybank']
[u'boss', u'rule', u'advertis', u'radio']
[u'govt', u'examin', u'recycl', u'water', u'concern']
[u'administr', u'say', u'fast', u'track', u'council', u'elect']
[u'alic', u'desert', u'festiv', u'town', u'centr', u'focus']
[u'alic', u'hear', u'indigen', u'job', u'scheme', u'benefit']
[u'alleg', u'infector', u'stand', u'trial']
[u'deni', u'plan', u'rise']
[u'andren', u'senat', u'restor', u'balanc']
[u'auspin', u'say', u'job', u'safe', u'month']
[u'aussi', u'pursuit', u'champion', u'hop', u'recov', u'time']
[u'aussi', u'trio', u'british', u'open']
[u'aust', u'skate', u'shake', u'harbour', u'disast']
[u'aust', u'help', u'indonesia', u'safeti', u'labor']
[u'aust', u'tackl', u'deforest', u'asia']
[u'bank', u'energi', u'stock', u'push', u'market', u'higher']
[u'barr', u'criticis', u'comcar', u'chang', u'public', u'servant']
[u'beij', u'subway', u'site', u'collaps']
[u'biki', u'investig', u'hamper', u'polic']
[u'blue', u'look', u'shake', u'chief', u'jinx']
[u'brack', u'unveil', u'bushfir', u'recoveri', u'packag']
[u'britain', u'unimpress', u'sailor', u'releas', u'pledg']
[u'bundaberg', u'watch', u'hous', u'inquest', u'take', u'final']
[u'burril', u'lake', u'entranc', u'reopen']
[u'bush', u'dig', u'heel', u'troop', u'withdraw']
[u'campaign', u'warn', u'uranium', u'mine']
[u'carr', u'predict', u'carbon', u'trade', u'individu']
[u'cattl', u'target', u'methan', u'concern']
[u'central', u'farmer', u'receiv', u'weather', u'report']
[u'child', u'hostag', u'releas', u'unharm']
[u'church', u'lobbi', u'clone']
[u'clampdown', u'celeri', u'thrower', u'lead', u'ban']
[u'climat', u'chang', u'report', u'predict', u'grim', u'futur', u'aust']
[u'clinic', u'cell', u'cultur', u'tighten', u'oper']
[u'closer']
[u'closer']
[u'communiti', u'face', u'food', u'shortag', u'blaze', u'destroy']
[u'communiti', u'dredg', u'plan']
[u'condit', u'right', u'plan', u'burn', u'start']
[u'costello', u'credenti']
[u'coughlin', u'set', u'pace', u'women', u'sprint', u'heat']
[u'council', u'flood', u'level', u'queri']
[u'councillor', u'question', u'infrastructur', u'project', u'cost']
[u'council', u'ratepay', u'fear', u'natur', u'resourc', u'levi']
[u'council', u'urg', u'invest', u'farm']
[u'court', u'tell', u'confess']
[u'darrel', u'offer', u'undercut', u'awa', u'labor', u'say']
[u'debus', u'chase', u'feder', u'seat', u'labor']
[u'deforest', u'plan', u'better', u'kyoto']
[u'dino', u'demis', u'trigger', u'rise', u'mammal']
[u'djokov', u'dump', u'nadal', u'miami']
[u'doctor', u'attribut', u'smith', u'injuri', u'rule', u'chang']
[u'drought', u'cancel', u'field']
[u'dutchman', u'plead', u'guilti', u'steal', u'pearl']
[u'einfeld', u'charg', u'fine', u'claim']
[u'environ', u'minist', u'speak', u'uranium']
[u'european', u'union', u'consid', u'freez', u'contact']
[u'express', u'seek', u'work', u'yard']
[u'farm', u'group', u'pass', u'confid', u'vote']
[u'fatigu', u'excus', u'lara', u'ahead', u'black', u'cap']
[u'log', u'rival', u'auspin']
[u'fear', u'fund', u'shortfal', u'stop', u'substanc', u'abus']
[u'search', u'resum', u'miss', u'skater']
[u'fishermen', u'court', u'commonwealth', u'appeal']
[u'fish', u'contest', u'score', u'green', u'mark']
[u'flight', u'push', u'aim', u'address', u'famili', u'disloc']
[u'food', u'bowl', u'allianc', u'defend', u'water', u'plan']
[u'christian', u'brother', u'jail', u'indec', u'act']
[u'skate', u'champ', u'bad', u'hurt', u'harbour']
[u'prison', u'guard', u'court', u'assault']
[u'wicket', u'malinga', u'unawar', u'record']
[u'franciscan', u'priest', u'promot', u'papal', u'visit']
[u'fund', u'boost', u'smart', u'busi', u'project']
[u'funer', u'celebr', u'accus', u'price', u'fix', u'plan']
[u'girl', u'sexual', u'assault', u'cooroy']
[u'gladston', u'brisban', u'melbourn']
[u'gold', u'coast', u'councillor', u'face', u'court', u'leak']
[u'googl', u'seek', u'world', u'instant', u'translat']
[u'govt', u'attack', u'forest', u'fund']
[u'govt', u'want', u'plane', u'emiss']
[u'return', u'gambier', u'hospit', u'emerg', u'dept']
[u'seek', u'nation', u'preselect', u'page']
[u'grandma', u'ralli', u'highlight', u'children', u'right']
[u'green', u'group', u'seek', u'detail', u'abrolho', u'island']
[u'green', u'group', u'focus', u'fitzroy', u'river', u'protect']
[u'green', u'slam', u'forest', u'fund']
[u'grind', u'water', u'group', u'fear', u'futur']
[u'group', u'fight', u'save', u'palliat', u'care', u'hospit']
[u'hackett', u'quit', u'say', u'aussi', u'coach']
[u'hackett', u'remain', u'focus', u'ahead']
[u'handyman', u'jail', u'wick', u'cruel', u'horribl']
[u'hanson', u'launch', u'tell', u'autobiographi']
[u'harbour', u'open']
[u'harbour', u'search', u'miss', u'teen', u'continu']
[u'hick', u'pardon', u'ruddock']
[u'hickss', u'father', u'say', u'legal', u'challeng', u'possibl']
[u'high', u'like', u'killer', u'woolmer', u'room']
[u'histor', u'power', u'plant', u'tourist']
[u'holloway', u'deni', u'region', u'polic', u'crisi', u'claim']
[u'hospit', u'death', u'post', u'mortem', u'result', u'month']
[u'skate', u'communiti', u'shake', u'harbour', u'crash']
[u'iemma', u'pledg', u'robust', u'ferri', u'collis', u'probe']
[u'world', u'best', u'say', u'rank', u'pietersen']
[u'independ', u'conced', u'goulburn', u'goward']
[u'india', u'loser', u'arriv', u'home', u'safe']
[u'indonesia', u'welcom', u'forest', u'fund']
[u'inmat', u'face', u'court', u'escap']
[u'inquiri', u'launch', u'fatal', u'ferri', u'crash']
[u'intervent', u'order', u'drop', u'swim', u'coach']
[u'iran', u'releas', u'femal', u'sailor']
[u'iraqi', u'policemen', u'arrest', u'massacr']
[u'vacanc', u'fall']
[u'jone', u'set', u'deadlin', u'red', u'futur']
[u'judg', u'withdraw', u'palm', u'case']
[u'kimberley', u'indigen', u'worker', u'tinto', u'pilbara']
[u'labor', u'dismiss', u'costello', u'warn']
[u'lake', u'bonney', u'water', u'test']
[u'lappin', u'return', u'lion', u'line']
[u'lawrenc', u'retir', u'polit']
[u'lawyer', u'want', u'hurley', u'trial', u'hold', u'palm']
[u'lead', u'fear', u'prompt', u'esper', u'council']
[u'lennon', u'defend', u'leadership', u'critic']
[u'lifesav', u'say', u'stinger', u'problem', u'move', u'south']
[u'local', u'appl', u'grower', u'lament', u'fruit', u'decis']
[u'london', u'tube', u'condemn', u'thrillseek', u'stunt']
[u'snowi', u'water', u'storag', u'forc', u'help', u'fire']
[u'volunt', u'number', u'forc', u'bureau', u'closur']
[u'luggag', u'restrict', u'target', u'explos', u'threat']
[u'arrest', u'polic', u'chase']
[u'charg', u'cruis', u'ship', u'drug']
[u'jail', u'bank', u'robberi']
[u'jail', u'steal', u'visit']
[u'maradona', u'rush', u'hospit']
[u'marcus', u'einfeld', u'arrest']
[u'mareeba', u'resid', u'want', u'review', u'health', u'servic']
[u'mayor', u'say', u'imprud', u'comment', u'dont', u'breach', u'code']
[u'meat', u'industri', u'cast', u'doubt', u'push', u'local']
[u'media', u'law', u'effect', u'week']
[u'meet', u'fail', u'bring', u'resolut', u'port', u'augusta']
[u'mexican', u'urg', u'swap', u'gun', u'xbox']
[u'miner', u'win', u'walhalla', u'gold', u'explor', u'tender']
[u'minist', u'surviv', u'confid', u'motion']
[u'mitsubishi', u'accus', u'fail', u'negoti']
[u'say', u'doctor', u'servic', u'grow', u'popul']
[u'want', u'towl', u'trial', u'broadcast', u'mildura']
[u'disappoint', u'wall', u'fund', u'veto']
[u'mugab', u'launch', u'renew', u'crackdown', u'critic']
[u'murray', u'advanc', u'roddick', u'suffer', u'injuri']
[u'murray', u'darl', u'count', u'continu']
[u'nasa', u'rubbish', u'space', u'junk', u'theori']
[u'nation', u'galleri', u'cancer', u'cluster', u'studi', u'inconclus']
[u'nevill', u'happi', u'lower', u'gladston', u'jobless', u'rate']
[u'book', u'explain', u'judaism']
[u'radio', u'licens', u'rule', u'dark', u'age']
[u'teach', u'launch']
[u'plan', u'recreat', u'fish', u'permit', u'caus']
[u'offic', u'share', u'servic', u'financi', u'black']
[u'oncologist', u'say', u'afford', u'import']
[u'palu', u'rule', u'crusad', u'encount']
[u'phelp', u'set']
[u'pike', u'help', u'lure', u'doctor', u'region', u'victoria']
[u'plan', u'tassi', u'forest']
[u'plan', u'expand', u'leaver', u'zone']
[u'plan', u'tackl', u'illeg', u'log', u'vote', u'ploy', u'say']
[u'unveil', u'plan', u'save', u'forest']
[u'polic', u'discov', u'submerg']
[u'polic', u'exhum', u'bodi', u'tocumw']
[u'policeman', u'plead', u'guilti', u'watch', u'hous', u'assault']
[u'polic', u'search', u'miss', u'harbour', u'crash', u'victim']
[u'post', u'mortem', u'second', u'stradbrok', u'bodi']
[u'potato', u'shortag', u'lead', u'product', u'line', u'shutdown']
[u'power', u'return', u'slam', u'pole']
[u'primari', u'produc', u'finish', u'weed', u'spray', u'say']
[u'pumpkin', u'pick', u'pari', u'reunion']
[u'shut', u'pont', u'tell', u'cricket', u'world']
[u'health', u'defend', u'secur', u'alleg', u'patient']
[u'polic', u'union', u'defend', u'taser', u'trial']
[u'quinn', u'nomin', u'santoro', u'senat', u'spot']
[u'radic', u'muslim', u'women', u'hold', u'alleg', u'brothel', u'owner']
[u'railway', u'assn', u'call', u'charg', u'level']
[u'record', u'voter', u'registr', u'aborigin', u'land']
[u'riewoldt', u'miss', u'date', u'demon']
[u'rudd', u'prais', u'lawrenc', u'contribut', u'polit']
[u'govt', u'want', u'lower', u'employ', u'levi', u'workcov']
[u'sar', u'expert', u'die']
[u'schipper', u'win', u'butterfli', u'gold']
[u'school', u'pray', u'miss', u'teen']
[u'school', u'sue', u'alleg', u'bulli', u'teacher']
[u'score', u'kill', u'nigerian', u'petrol', u'tanker', u'explos']
[u'score', u'point']
[u'search', u'miss', u'girl', u'ferri']
[u'sick', u'hansen', u'pull', u'breaststrok']
[u'sport', u'academi', u'program', u'aim', u'retain', u'indigen']
[u'spotlight', u'english', u'titl', u'race', u'break']
[u'stanhop', u'ask', u'magistr', u'court', u'explain', u'delay']
[u'star', u'war', u'charact', u'forc', u'stamp']
[u'state', u'hike', u'costello', u'say']
[u'stepfath', u'guilti', u'pour', u'caustic', u'soda']
[u'steal', u'generat', u'compo', u'long', u'overdu', u'academ', u'say']
[u'studi', u'consid', u'burdekin', u'catchment', u'fish', u'movement']
[u'submiss', u'delay', u'illeg', u'abalon', u'fish']
[u'sudanes', u'refuge', u'children', u'learn', u'nativ', u'languag']
[u'sunni', u'muslim', u'kill', u'iraq', u'reveng', u'attack']
[u'survey', u'reveal', u'farmer', u'beat', u'season']
[u'swiss', u'get', u'year', u'thai', u'graffiti', u'case']
[u'sydney', u'ferri', u'defend', u'safeti', u'record']
[u'sydney', u'ferri', u'head', u'defend', u'captain', u'crash']
[u'sydney', u'harbour', u'ferri', u'crash']
[u'labor', u'warn', u'pulp', u'vote']
[u'trio', u'charg', u'drug', u'traffic']
[u'thailand', u'head', u'poll', u'decemb']
[u'thwait', u'hint', u'higher', u'water', u'cost']
[u'tiwi', u'island', u'timber', u'clear']
[u'torbay', u'accept', u'speaker', u'role', u'push', u'region', u'issu']
[u'truck', u'driver', u'kill', u'roll']
[u'ukrainian', u'swimmer', u'blame', u'scuffl']
[u'ukrainian', u'swimmer', u'protect', u'court']
[u'claim', u'record']
[u'cattl', u'grazer', u'worri', u'barmah', u'limit']
[u'close', u'best', u'pont']
[u'wildlif', u'corridor', u'moot', u'south', u'west']
[u'winegrow', u'plead', u'guilti', u'busi', u'charg']
[u'woman', u'charg', u'einfeld', u'matter']
[u'wonthaggi', u'footbal', u'club', u'tell', u'transfer', u'west']
[u'worker', u'hospitalis', u'industri', u'accid']
[u'worker', u'walk', u'away', u'boss', u'studi', u'find']
[u'world', u'uni', u'plan', u'coordin', u'research']
[u'youth', u'crime', u'investig', u'say', u'offend', u'skip']
[u'closur', u'time', u'help', u'darl', u'down', u'facil']
[u'arrest', u'possess', u'explos', u'powder']
[u'esper', u'resid', u'record', u'high', u'lead', u'level']
[u'actu', u'call', u'boost', u'minimum', u'wage']
[u'unveil', u'run', u'facil']
[u'alinta', u'board', u'recommend', u'takeov', u'offer']
[u'resolut', u'allow', u'beatti', u'uranium']
[u'anti', u'missil', u'deploy', u'near', u'tokyo']
[u'applebi', u'sizzl', u'start', u'houston', u'defenc']
[u'art', u'figur', u'honour', u'award']
[u'asian', u'motorsport', u'track', u'bunburi']
[u'aussi', u'pursuit', u'team', u'medal', u'content']
[u'aust', u'beef', u'price', u'plummet', u'korea']
[u'australian', u'honey', u'danger', u'parasit']
[u'bangladesh', u'execut', u'islam', u'milit']
[u'beatti', u'sign', u'climat', u'chang', u'link', u'britain']
[u'blaze', u'rip', u'break', u'hill', u'hous']
[u'bligh', u'say', u'overhaul', u'busi', u'cost']
[u'bodi', u'exhum', u'hospit', u'death', u'probe']
[u'bogan', u'microscop']
[u'book', u'reflect', u'bushfir', u'memori']
[u'brisban', u'shop', u'centr', u'repair', u'cost']
[u'britain', u'seek', u'support', u'sailor', u'releas']
[u'brown', u'rule', u'blue', u'encount']
[u'burn', u'rais', u'shortfal', u'abbott']
[u'bushfir', u'victim', u'tape', u'forc']
[u'carpent', u'concern', u'alinta', u'sale']
[u'secur', u'camera', u'agenda', u'wellington']
[u'central', u'aust', u'road', u'dri']
[u'central', u'tourist', u'urg', u'visit', u'smaller', u'town']
[u'chicago', u'joint', u'fin', u'flout', u'foie', u'gras']
[u'climat', u'chang', u'activist', u'back', u'scheme']
[u'cloncurri', u'daycar', u'centr', u'discuss', u'closur', u'fear']
[u'closer']
[u'cobb', u'call', u'warrego', u'water', u'sale', u'rethink']
[u'cobb', u'warn', u'warrego', u'water', u'sale']
[u'commonwealth', u'state', u'discuss', u'polici']
[u'commonweatlth', u'state', u'discuss', u'chang']
[u'compani', u'accus', u'tri', u'avoid', u'worker', u'safeti']
[u'cooroy', u'attack', u'shock', u'councillor']
[u'coron', u'call', u'overhaul', u'watch', u'hous', u'practic']
[u'coron', u'consid', u'kovco', u'report']
[u'cost', u'climat', u'chang']
[u'councillor', u'call', u'esper', u'port', u'sack']
[u'councillor', u'agre', u'alleg']
[u'council', u'restrict', u'alcohol', u'corrigan', u'beach']
[u'court', u'jail', u'stepfath', u'year']
[u'court', u'reject', u'trucki', u'appeal', u'jail', u'term']
[u'cousin', u'leav', u'clinic']
[u'crocker', u'throw', u'challeng', u'phelp']
[u'data', u'releas', u'prompt', u'wall', u'street', u'ralli']
[u'debus', u'margin', u'seat', u'strategi', u'say', u'rudd']
[u'dengu', u'fever', u'case', u'confirm']
[u'dept', u'wont', u'investig', u'kovco', u'report', u'leak']
[u'despit', u'record', u'low', u'river', u'murray', u'improv']
[u'devic', u'aid', u'recoveri', u'nativ', u'fish', u'popul']
[u'dingo', u'number', u'mystifi', u'mayor']
[u'dirti', u'crack', u'egg', u'blame', u'salmonella', u'outbreak']
[u'distanc', u'educ', u'kid', u'greener', u'pastur']
[u'doctor', u'death', u'prompt', u'work', u'warn']
[u'doctor', u'maradona', u'fear']
[u'doubt', u'cast', u'park', u'plan']
[u'downer', u'warn', u'hick', u'sentenc', u'challeng']
[u'lose', u'appeal', u'drug', u'sentenc']
[u'driver', u'accus', u'school', u'zone']
[u'drought', u'see', u'boost', u'volunt', u'effort']
[u'ecoli', u'prompt', u'tweed', u'water', u'test']
[u'economist', u'warn', u'rate', u'rise', u'debt', u'grow']
[u'eel', u'claim', u'half', u'time', u'lead']
[u'eel', u'edg', u'tiger', u'golden', u'point']
[u'emerg', u'beacon', u'vandal', u'prove', u'cost']
[u'emerg', u'food', u'send', u'remot', u'communiti']
[u'consult', u'sentenc', u'insid', u'trade']
[u'teacher', u'face', u'child', u'porn', u'indec', u'charg']
[u'extend', u'pacif', u'solut', u'wast', u'money', u'labor']
[u'fahey', u'back', u'ofarrel', u'liber', u'leader']
[u'farmer', u'warn', u'climat', u'chang', u'impact']
[u'west', u'elig', u'drought', u'fund']
[u'father', u'miss', u'austrian', u'give', u'hope']
[u'father', u'miss', u'teen', u'tell', u'devast']
[u'fear', u'mackay', u'council', u'face', u'debt']
[u'open']
[u'fincorp', u'investor', u'unlik']
[u'crew', u'investig', u'brisban', u'shop', u'centr']
[u'damag', u'heron', u'research', u'station']
[u'forc', u'unit', u'block', u'evacu']
[u'arrest', u'plot', u'smuggl', u'chemic']
[u'food', u'poison', u'affect', u'bakeri', u'custom']
[u'forc', u'maintain', u'win', u'home', u'form']
[u'fred', u'join', u'unit']
[u'gascoyn', u'grower', u'consid', u'compens', u'trust']
[u'geraldton', u'greenough', u'merger', u'process']
[u'glaxosmithklin', u'market', u'profit', u'mening']
[u'govt', u'cut', u'abalon', u'fisher', u'quota']
[u'govt', u'sign', u'deal', u'darwin', u'oncolog', u'unit']
[u'goward', u'claim', u'victori', u'goulburn']
[u'grain', u'council', u'increas']
[u'group', u'cross', u'atlant', u'solar', u'power', u'boat']
[u'gulargambon', u'get', u'indigen', u'medic', u'servic']
[u'gusmao', u'hop', u'reform', u'govt', u'elect']
[u'hackett', u'contempl', u'withdraw']
[u'hackett', u'doubt']
[u'harbour', u'search', u'miss', u'teen', u'continu']
[u'henin', u'william', u'renew', u'rivalri', u'miami']
[u'heritag', u'council', u'approv', u'church', u'demolit']
[u'hick', u'deal', u'limit', u'prison', u'term', u'year']
[u'hick', u'expect', u'confess', u'terrorist', u'link']
[u'hick', u'like', u'confess', u'qaeda', u'connect']
[u'hick', u'guilti', u'plea', u'say', u'prosecutor']
[u'hick', u'wont', u'sell', u'stori', u'father', u'say']
[u'highland', u'hold', u'cheetah']
[u'hiker', u'confirm', u'bodi', u'croatia']
[u'histor', u'livestock', u'market', u'close', u'gate']
[u'hospit', u'face', u'demand', u'pressur']
[u'iemma', u'choos', u'minist']
[u'iemma', u'deni', u'tension', u'minist']
[u'indonesia', u'ask', u'join', u'pacif', u'solut']
[u'industri', u'minist', u'back', u'joint', u'senat', u'ticket']
[u'infrastructur', u'qlds', u'econom', u'growth', u'bank']
[u'rat', u'stay', u'aussi', u'dollar']
[u'iran', u'reject', u'releas', u'briton']
[u'japan', u'delet', u'forc', u'suicid', u'refer']
[u'japanes', u'swimmer', u'collaps', u'free', u'heat']
[u'jone', u'complet', u'doubl']
[u'kovco', u'widow', u'urg', u'armi', u'revis', u'find']
[u'kovco', u'widow', u'welcom', u'report']
[u'kumbl', u'announc', u'retir']
[u'labor', u'call', u'earli', u'intervent', u'indigen']
[u'labor', u'expect', u'tough', u'competit', u'lawrenc', u'seat']
[u'landcorp', u'admit', u'failur', u'inform', u'local', u'communiti']
[u'firm', u'consid', u'class', u'action', u'collaps']
[u'learner', u'driver', u'lose', u'traffic', u'offenc']
[u'legisl', u'council', u'support', u'delay', u'lake']
[u'lenton', u'claim', u'gold']
[u'lenton']
[u'lice', u'spot', u'devic', u'shearer', u'hand']
[u'lifelin', u'highlight', u'gold', u'coast', u'rental']
[u'light', u'council', u'releas', u'confidenti', u'matter']
[u'lockyer', u'hodg', u'tackl', u'panther']
[u'longer', u'last', u'adhd', u'drug', u'soon', u'avail']
[u'park', u'fund', u'risk', u'ecolog', u'disast', u'union']
[u'malthous', u'keep', u'buckley', u'injuri']
[u'arrest', u'traralgon', u'drug']
[u'martin', u'stay', u'debat', u'futur']
[u'media', u'stock', u'surg', u'ahead', u'ownership', u'law']
[u'miss', u'north', u'nation', u'park']
[u'miss', u'teen', u'father', u'angri', u'ferri', u'driver']
[u'miss', u'tourist', u'spend', u'night', u'nation', u'park', u'rock']
[u'mother', u'jail', u'crimin', u'neglect', u'son']
[u'child', u'blood', u'lead', u'level', u'test', u'continu']
[u'accus', u'tri', u'smuggl', u'drug', u'jail']
[u'mung', u'bean', u'price', u'skyrocket', u'burma', u'run']
[u'naracoort', u'say', u'jenkin', u'terrac', u'doubl']
[u'nestl', u'recal', u'kitkat']
[u'group', u'search', u'brisban', u'site']
[u'report', u'cast', u'doubt', u'kovco', u'death']
[u'interview', u'darren', u'lockyer', u'peter', u'wallac']
[u'offic', u'assault', u'charg', u'unfair']
[u'river', u'readi', u'annual', u'overflow']
[u'pakistan', u'offer', u'deleg', u'help', u'woolmer', u'case']
[u'panther', u'lead', u'bronco', u'break']
[u'panther', u'steal', u'victori', u'extra', u'time']
[u'member', u'expect', u'expel', u'rebel', u'martin']
[u'polic', u'address', u'staff', u'issu']
[u'polic', u'bust', u'major', u'drug', u'network']
[u'polic', u'chief', u'say', u'prison', u'check', u'accord']
[u'polic', u'eject', u'fan', u'rowdi', u'water', u'polo', u'match']
[u'polic', u'offic', u'agre', u'taser', u'test']
[u'polic', u'promis', u'easter', u'crackdown', u'motorcyclist']
[u'polic', u'resum', u'search', u'harbour', u'crash', u'victim']
[u'polic', u'retrac', u'step', u'drown', u'korean']
[u'port', u'councillor', u'worri', u'dust', u'settl']
[u'opposit', u'call', u'law', u'counter', u'crime']
[u'rain', u'help', u'eas', u'wangaratta', u'water', u'woe']
[u'record', u'low', u'murray', u'darl', u'caus', u'earli']
[u'recycl', u'water', u'risk', u'manag', u'say', u'health', u'offic']
[u'cross', u'welcom', u'backdown', u'blood', u'process']
[u'resign', u'forc', u'busselton', u'voter', u'poll']
[u'retir', u'look', u'forward', u'experi']
[u'ripper', u'resist', u'govt', u'push', u'stamp', u'duti']
[u'rudd', u'promis', u'honor', u'hick', u'deal']
[u'rudd', u'rule', u'increas']
[u'rush', u'contamin', u'site', u'report', u'predict']
[u'safeti', u'code', u'develop', u'trucker']
[u'govt', u'decid', u'futur', u'park', u'grandstand']
[u'saint', u'open', u'season', u'demon']
[u'spate', u'huge', u'wave', u'eas']
[u'schoolgirl', u'take', u'control', u'driver', u'collaps']
[u'scientist', u'claim', u'cancer', u'enzym', u'breakthrough']
[u'second', u'british', u'sailor', u'apologis', u'iranian']
[u'senat', u'inquiri', u'consid', u'park', u'transport', u'work']
[u'senat', u'probe', u'patient', u'travel']
[u'short', u'lifespan', u'doesnt', u'deter', u'honeymoon', u'oper']
[u'skipper', u'deni', u'cruiser', u'inadequ']
[u'skipper', u'tell', u'light', u'report', u'ahead', u'harbour']
[u'slipway', u'soil', u'test']
[u'snowi', u'hydro', u'defend', u'water', u'manag']
[u'spear', u'reach', u'divorc', u'settlement']
[u'state', u'refus', u'tax', u'treasur', u'meet']
[u'state', u'treasur', u'refus', u'tax']
[u'steal', u'generat', u'say', u'compens']
[u'stradbrok', u'death', u'drown', u'polic']
[u'student', u'union', u'claim', u'lack', u'support', u'creat']
[u'studi', u'consid', u'leas', u'mildura', u'airport']
[u'suicid', u'bomber', u'target', u'iraq', u'market']
[u'summit', u'call', u'mediat', u'zimbabw']
[u'sydney', u'salmonella', u'outbreak', u'worsen']
[u'takeov', u'specul', u'domin', u'market']
[u'tendulkar', u'quit', u'say', u'chappel']
[u'test', u'confirm', u'woman', u'die', u'meningococc', u'diseas']
[u'treasur', u'urg', u'costello', u'compani']
[u'tribun', u'overturn', u'doctor', u'suspens']
[u'tristar', u'sack', u'outspoken', u'employe']
[u'tristar', u'tri', u'sack', u'worker', u'critic']
[u'trucki', u'jail', u'boy', u'death']
[u'tumut', u'river', u'brown', u'level', u'rise']
[u'turnbul', u'play', u'climat', u'report']
[u'receiv', u'note', u'iran', u'captur', u'sailor']
[u'climat', u'chang', u'report', u'exagger']
[u'climat', u'warn', u'overlook', u'govt', u'effort']
[u'demand', u'releas', u'british', u'sailor']
[u'introduc', u'compulsori', u'meat', u'label']
[u'senat', u'approv', u'iraq', u'withdraw', u'date']
[u'smash', u'relay']
[u'govt', u'reject', u'school', u'retent', u'rate', u'critic']
[u'govt', u'say', u'state', u'second', u'nativ', u'titl', u'claim']
[u'vietnames', u'priest', u'jail', u'anti', u'govt', u'campaign']
[u'waff', u'back', u'grower', u'own', u'nation', u'singl', u'desk', u'wheat']
[u'walgett', u'council', u'look', u'stag', u'develop']
[u'watchdog', u'monitor', u'petrol', u'price']
[u'webb', u'solid', u'start', u'major', u'defenc']
[u'western', u'bulldog', u'play']
[u'whale', u'strand', u'rock']
[u'lifestyl', u'children']
[u'winegrow', u'support', u'levi', u'plan']
[u'make', u'rival', u'perth', u'channel']
[u'woolmer', u'memori', u'servic', u'hold', u'cape', u'town']
[u'actew', u'play', u'recycl', u'water', u'fear']
[u'adelaid', u'fring', u'draw', u'close']
[u'interview', u'anthoni', u'rocca']
[u'applebi', u'share', u'texa', u'lead']
[u'asylum', u'seeker', u'forc', u'report', u'say']
[u'aussi', u'fall', u'short']
[u'aussi', u'smash', u'relay']
[u'australia', u'wari', u'threat', u'bangladesh']
[u'author', u'back', u'food', u'industri', u'salmonella']
[u'bartlett', u'play', u'talk', u'teacher', u'industri']
[u'baumann', u'wait', u'port', u'stephen', u'recount']
[u'bayley', u'struggl', u'cycl', u'world', u'champ']
[u'blue', u'stretch', u'lead', u'fightback', u'sink', u'chief']
[u'bomb', u'kill', u'score', u'iraq']
[u'britain', u'discuss', u'detain', u'sailor', u'iran']
[u'cana', u'defeat', u'ljubic', u'miami']
[u'canberra', u'group', u'start', u'independ', u'librari']
[u'consid', u'extend', u'season']
[u'china', u'pressur', u'north', u'korea', u'downer']
[u'choc', u'christ', u'exhibit', u'scrap', u'outrag']
[u'climat', u'chang', u'partisan', u'polit', u'rudd']
[u'closer']
[u'closer']
[u'lobbi', u'govt', u'recherch', u'fund']
[u'court', u'uphold', u'convict', u'scream', u'robber']
[u'cowboy', u'hold', u'dragon']
[u'cowboy', u'half', u'time', u'lead']
[u'crusad', u'hold', u'waratah', u'thriller']
[u'delay', u'expect', u'melbourn', u'airport', u'chang']
[u'docker', u'lead', u'port', u'half', u'time']
[u'doctor', u'group', u'claim', u'govt', u'plan', u'close', u'rural']
[u'dope', u'agenc', u'declin', u'thorp', u'comment']
[u'dope', u'agenc', u'refus', u'comment', u'thorp', u'report']
[u'downer', u'discuss', u'captiv', u'navi', u'personnel']
[u'downer', u'urg', u'iran', u'rethink', u'posit', u'sailor']
[u'driver', u'urg', u'steer', u'clear', u'fitzroy', u'river']
[u'kill', u'fatal', u'motorbik', u'crash', u'wear']
[u'eagl', u'hold', u'swan']
[u'call', u'releas', u'british', u'naval', u'personnel']
[u'urg', u'iran', u'releas', u'british', u'sailor']
[u'extent', u'sydney', u'salmonella', u'outbreak', u'unknown']
[u'festiv', u'honour', u'silent', u'film']
[u'fina', u'refus', u'confirm', u'thorp', u'dope', u'test', u'appeal']
[u'rag', u'near', u'fame', u'hollywood', u'sign']
[u'french', u'upset', u'australian', u'cyclist', u'race', u'tactic']
[u'fund', u'pinch', u'close', u'nurs', u'home']
[u'govt', u'cave', u'industri', u'truck', u'code']
[u'govt', u'urg', u'help', u'retir', u'hous']
[u'group', u'warn', u'tenant', u'strategi', u'caus']
[u'gutsi', u'hackett', u'win', u'heat']
[u'health', u'minist', u'agre', u'step', u'measur']
[u'hick', u'apologis', u'thank', u'aust', u'support']
[u'hick', u'deal', u'limit', u'prison', u'term', u'year']
[u'hick', u'get', u'month', u'sentenc']
[u'hick', u'sentenc', u'month']
[u'hickss', u'father', u'slam', u'releas', u'condit']
[u'hick', u'shouldnt', u'hero']
[u'hick', u'serv', u'month']
[u'hoax', u'expert', u'say', u'april', u'fool', u'time', u'tough']
[u'hobart', u'hospit', u'delay', u'endang', u'live', u'ambul']
[u'hurrican', u'win', u'way']
[u'ireland', u'chase', u'england']
[u'japan', u'clock', u'world', u'longest', u'concert']
[u'justic', u'kirbi', u'say', u'feder', u'law', u'fail', u'protect']
[u'lion', u'hawk', u'half', u'time']
[u'lion', u'season', u'open']
[u'luggag', u'restrict', u'target', u'explos', u'threat']
[u'magpi', u'steal', u'victori', u'death']
[u'charg', u'offenc']
[u'crash', u'daughter']
[u'man', u'impal', u'darwin', u'fenc']
[u'maradona', u'dri', u'hospit']
[u'market', u'steadi', u'amid', u'turbul', u'quarter']
[u'mcginti', u'urg', u'govt', u'fund', u'famili', u'court']
[u'melbourn', u'charg', u'theft', u'offenc']
[u'miatk', u'win', u'silver', u'melbourn']
[u'mugab', u'presid']
[u'mugab', u'zimbabwean', u'presid']
[u'mugab', u'stand', u'presid']
[u'murtajil', u'favourit', u'slipper']
[u'muslim', u'symposium', u'aim', u'break', u'barrier']
[u'nation', u'conced', u'defeat', u'dubbo']
[u'book', u'award', u'rival', u'mile', u'franklin']
[u'hand', u'luggag', u'liquid', u'restrict', u'come']
[u'grudg', u'rematch', u'kirk']
[u'nomin', u'close', u'seat', u'leav', u'vacant', u'santoro']
[u'interview', u'aaron', u'payn', u'johnathan', u'thurston']
[u'bushfir', u'season', u'offici']
[u'cabinet', u'face', u'opposit', u'say']
[u'polic', u'ditch', u'drop', u'domest', u'violenc', u'polici']
[u'oliv', u'claim', u'golden', u'slipper', u'forens']
[u'opposit', u'hold', u'climat', u'chang', u'summit']
[u'opposit', u'mugab', u'expect', u'grow']
[u'pakistan', u'hail', u'success', u'missil', u'test']
[u'pakistan', u'hold', u'memori', u'servic', u'woolmer']
[u'phelp', u'continu', u'gold', u'rush']
[u'cell', u'transplant', u'diabet']
[u'plan', u'maud', u'creek', u'rail']
[u'reject', u'hick', u'polit', u'claim']
[u'polic', u'investig', u'plough', u'brisban']
[u'polic', u'investig', u'death', u'popular', u'swim', u'spot']
[u'polic', u'offic', u'charg', u'drink', u'drive']
[u'pont', u'happi', u'flak', u'mcgrath']
[u'pont', u'take', u'swipe', u'world', u'organis']
[u'porn', u'site', u'domain', u'quash']
[u'power', u'come', u'docker']
[u'pulp', u'fight', u'govt']
[u'polit', u'asid', u'climat', u'chang', u'rudd']
[u'miner', u'search', u'uranium', u'beatti', u'consid']
[u'minist', u'stun', u'feder', u'health', u'care']
[u'paramed', u'unhappi', u'roster', u'survey']
[u'theme', u'park', u'welcom', u'special', u'deliveri']
[u'rabbitoh', u'maintain', u'win', u'way']
[u'rabbitoh', u'race', u'earli', u'lead']
[u'rann', u'tour', u'billiton', u'chile']
[u'rise', u'crime', u'result', u'long', u'work', u'hour']
[u'robben', u'season']
[u'rudd', u'accus', u'climat', u'hypocrisi']
[u'rudd', u'call', u'australian', u'stern', u'report']
[u'scotland', u'yard', u'probe', u'woolmer', u'murder']
[u'shop', u'centr', u'evacu', u'leak']
[u'singer', u'mari', u'osmond', u'divorc']
[u'year', u'ukrainian', u'swim', u'coach']
[u'skin', u'problem', u'continu', u'evacu', u'health', u'worker']
[u'star', u'spectacular', u'sydney', u'get']
[u'swim', u'australia', u'show', u'support', u'thorp']
[u'sydney', u'light', u'global', u'warm', u'gestur']
[u'sydneysid', u'plung', u'dark', u'earth', u'hour']
[u'tasmanian', u'independ', u'claim', u'inappropri', u'input']
[u'teen', u'punch', u'woman', u'hospitalis']
[u'thorp', u'embroil', u'drug', u'scandal']
[u'tiger', u'blue', u'dish', u'award']
[u'tougher', u'airport', u'secur', u'measur', u'introduc']
[u'track', u'bronz', u'mactier']
[u'airlift', u'plane', u'crash']
[u'ukrainian', u'swim', u'offici', u'ban']
[u'unconvinc', u'england', u'fight', u'irish']
[u'reject', u'iran', u'captiv', u'exchang', u'propos']
[u'smash', u'relay']
[u'vaughan', u'relief', u'england', u'past', u'ireland']
[u'vaughan', u'relief', u'england', u'past', u'ireland']
[u'call', u'carbon', u'trade', u'action']
[u'volleybal', u'battl', u'spark', u'greek', u'hooligan', u'crackdown']
[u'kill', u'mine', u'accid']
[u'stamp', u'duti', u'deter', u'invest', u'properti', u'council']
[u'webb', u'horror', u'round', u'california']
[u'whatmor', u'make', u'mark', u'bangladesh', u'coach']
[u'deal', u'hick', u'releas', u'govt', u'say']
[u'ambul', u'servic', u'confirm', u'die', u'food']
[u'asic', u'issu', u'internet', u'scam', u'warn', u'april', u'fool']
[u'athlet', u'world', u'select', u'process', u'taint']
[u'aussi', u'cash', u'shock', u'relay']
[u'australian', u'want', u'action', u'climat', u'chang', u'rudd']
[u'beatti', u'surpris', u'confus', u'uranium', u'posit']
[u'black', u'reveal', u'garuda', u'pilot', u'argu']
[u'bouncer', u'face', u'court', u'grievous', u'bodili', u'harm']
[u'kill', u'speedway', u'accid']
[u'bridgeston', u'staff', u'resum', u'work', u'amid', u'disput']
[u'britain', u'correct', u'attitud', u'captur']
[u'britain', u'readi', u'discuss', u'detain', u'sailor']
[u'bulldog', u'finish', u'titan']
[u'bulldog', u'lead', u'titan']
[u'bush', u'condemn', u'iran']
[u'boost', u'emerg', u'dept', u'resourc', u'care']
[u'carlton', u'season', u'strong', u'start']
[u'central', u'african', u'presid', u'admit', u'troop', u'part']
[u'chines', u'author', u'dump', u'world', u'largest', u'dragon']
[u'closer']
[u'closer']
[u'council', u'call', u'public', u'input', u'cost']
[u'croatia', u'water', u'polo', u'gold']
[u'crow', u'trail', u'bomber', u'adelaid']
[u'dead', u'fight', u'paralys', u'somalia']
[u'dozen', u'arrest', u'sydney', u'festiv', u'drug']
[u'elder', u'die', u'melbourn', u'hous']
[u'father', u'call', u'search', u'continu']
[u'feder', u'labor', u'undecid', u'back', u'gunn', u'deal']
[u'gilchrist', u'prais', u'intimid', u'hayden']
[u'gold', u'world', u'record', u'mear']
[u'govt', u'deni', u'hick', u'sentenc', u'elect', u'ploy']
[u'govt', u'ignor', u'villawood', u'hunger', u'striker', u'refuge']
[u'govt', u'say', u'hick', u'danger']
[u'group', u'call', u'greenhous', u'emiss', u'target']
[u'hackett', u'reign', u'come']
[u'hang', u'glider', u'die', u'accid', u'hunter', u'valley']
[u'hick', u'danger', u'communiti', u'rann']
[u'hick', u'prison', u'transfer', u'prepar', u'begin']
[u'hick', u'transfer', u'prepar', u'start']
[u'honour', u'roma', u'hold', u'milan']
[u'hope', u'cloud', u'seed', u'lift', u'storag', u'level']
[u'hope', u'pass', u'auction', u'rais', u'money']
[u'hundr', u'leav', u'homeless', u'afghanistan', u'flash', u'flood']
[u'huxley', u'point', u'brumbi']
[u'skater', u'want', u'harbour', u'search']
[u'indonesian', u'volcano', u'close', u'pip', u'road']
[u'inzamam', u'deni', u'match', u'fix', u'claim']
[u'inzamam', u'hit', u'match', u'fix', u'claim']
[u'iran', u'wait', u'british', u'stanc', u'captur']
[u'iraqi', u'govt', u'figur', u'increas', u'civilian', u'death']
[u'iraqi', u'justic', u'minist', u'resign', u'saddam']
[u'johnson', u'lead', u'bulldog', u'exampl']
[u'johnson', u'propel', u'dog', u'earli', u'lead']
[u'kalou', u'keep', u'chelsea', u'hop', u'aliv']
[u'labor', u'climat', u'chang', u'approach', u'fanat', u'turnbul']
[u'last', u'damag', u'snowi', u'mountain']
[u'lenton', u'cap', u'golden', u'champ']
[u'lion', u'shrug', u'critic', u'scrappi']
[u'luca', u'shin', u'bomber', u'upset', u'crow']
[u'die', u'swim', u'florenc', u'fall']
[u'maoist', u'join', u'nepal', u'interim', u'govt']
[u'mcgrath', u'overtak', u'magician', u'swing']
[u'mcgrath', u'record', u'set', u'crush', u'australia']
[u'mcgrath', u'set', u'record', u'bangladesh', u'slump']
[u'melbourn', u'start', u'water', u'restrict']
[u'airlift', u'hospit', u'boat', u'explos']
[u'adhd', u'drug', u'add', u'scheme']
[u'ban', u'foreign', u'russia', u'retail', u'trade']
[u'licenc', u'send', u'taxi', u'driver', u'break']
[u'nguiu', u'club', u'grant', u'alcohol', u'licenc', u'tiwi', u'grand']
[u'evid', u'argument', u'garuda']
[u'pilot', u'argument', u'indon', u'crash', u'investig']
[u'interview', u'luke', u'patten']
[u'interview', u'brett', u'stewart', u'michael', u'monaghan']
[u'number', u'plate', u'theft', u'fuel', u'crime', u'polic']
[u'kill', u'children', u'injur', u'road', u'accid']
[u'organis', u'applaud', u'earth', u'hour', u'effort']
[u'pakistan', u'memori', u'servic', u'murder', u'woolmer']
[u'pakistan', u'suspend', u'player', u'contract']
[u'pakistan', u'hold', u'memori', u'servic', u'woolmer']
[u'phelp', u'crown', u'record', u'seventh', u'gold']
[u'phelp', u'deni', u'eighth', u'gold', u'relay', u'team']
[u'pilot', u'argument', u'garuda', u'crash']
[u'pilot', u'argu', u'garuda', u'plane', u'crash']
[u'polic', u'beat', u'zimbabwean', u'opposit', u'member']
[u'polic', u'close', u'highway', u'road', u'train', u'accid']
[u'polic', u'diver', u'resum', u'search', u'miss', u'skater']
[u'polic', u'stranger', u'home', u'die', u'drug']
[u'polic', u'scale', u'search', u'miss', u'teen']
[u'polit', u'protest', u'erupt', u'ukrain']
[u'prepar', u'hick', u'transfer']
[u'protest', u'turnbul', u'stop', u'pulp']
[u'protest', u'set', u'ablaz', u'outsid', u'south', u'korea']
[u'protest', u'mark', u'nuclear', u'fool', u'darwin']
[u'prosecut', u'parent', u'kid', u'alcohol']
[u'quinn', u'lead', u'race', u'replac', u'disgrac', u'liber']
[u'cross', u'fear', u'somali', u'civilian']
[u'right', u'lawyer', u'say', u'hickss', u'plea', u'condit', u'unfair']
[u'ronaldinho', u'shin', u'barca', u'clear']
[u'rooster', u'man', u'level', u'break']
[u'ruddock', u'deni', u'withhold', u'fund', u'court']
[u'scientist', u'track', u'split', u'antarct', u'shelf']
[u'eagl', u'power', u'rooster']
[u'senior', u'liber', u'urg', u'parti', u'elect']
[u'serena', u'snatch', u'miami', u'triumph']
[u'sewerag', u'treatment', u'develop', u'step', u'closer']
[u'sonybmg', u'drop', u'hard', u'copi', u'band', u'demo', u'websit', u'blog']
[u'spear', u'finalis', u'divorc', u'settlement', u'federlin']
[u'storm', u'domin', u'warrior']
[u'storm', u'lead', u'warrior', u'half', u'time']
[u'salmonella', u'outbreak', u'control', u'health']
[u'teacher', u'shortag', u'worsen', u'union', u'say']
[u'thorp', u'deni', u'fail', u'drug', u'test']
[u'thorp', u'deni', u'perform', u'enhanc', u'drug']
[u'thorp', u'face', u'drug', u'accus']
[u'thorp', u'maintain', u'innoc', u'vow', u'clear']
[u'thorp', u'respond', u'drug', u'alleg']
[u'thorp', u'speak', u'dope', u'claim']
[u'tiger', u'gibb', u'charg', u'race', u'assault']
[u'ukrainian', u'protest', u'despit', u'court', u'order']
[u'villawood', u'detaine', u'continu', u'hunger', u'strike']
[u'villawood', u'hunger', u'protest', u'continu']
[u'violenc', u'escal', u'mogadishu']
[u'watson', u'lead', u'rain', u'soak', u'houston', u'open']
[u'webb', u'slide', u'california']
[u'whiteman', u'park', u'expans']
[u'world', u'ask', u'fan', u'go']
[u'kill', u'solomon', u'tsunami']
[u'year', u'sailor', u'fear', u'miss']
[u'abbott', u'acknowledg', u'indigen', u'health', u'challeng']
[u'aborigin', u'health', u'care', u'poor', u'oxfam']
[u'hold', u'bounti', u'meet', u'member']
[u'age', u'popul', u'biggest', u'threat', u'economi']
[u'worker', u'vote', u'save', u'job']
[u'hilali', u'pressur', u'provid', u'donat']
[u'alic', u'spring', u'suburb', u'name', u'releas', u'week']
[u'annual', u'hazard', u'reduct', u'burn', u'program']
[u'applic', u'break', u'hill', u'swim']
[u'keen', u'mend', u'connolli', u'jone', u'relationship']
[u'asada', u'deni', u'leak', u'thorp', u'result']
[u'associ', u'say', u'heritag', u'list', u'tree', u'need']
[u'aust', u'alert', u'tsunami', u'hit', u'solomon']
[u'aust', u'pledg', u'tsunami', u'relief', u'solomon']
[u'basket', u'weav', u'help', u'heal', u'domest', u'violenc']
[u'beach', u'close', u'tsunami', u'warn']
[u'bega', u'sewerag', u'expand', u'wolumla']
[u'better', u'communic', u'need', u'tocumw']
[u'say', u'tsunami', u'threat', u'eas']
[u'boom', u'asian', u'defenc', u'market']
[u'bouncer', u'secur', u'licenc', u'suspend']
[u'bowel', u'syndrom', u'medic', u'remov', u'shelv']
[u'bridgeston', u'worker']
[u'brisban', u'welcom', u'navi', u'recruit']
[u'british', u'sailor', u'captur', u'bolster', u'iranian', u'coffer']
[u'brough', u'back', u'rat', u'home', u'ownership', u'alic', u'town']
[u'build', u'approv', u'figur']
[u'build', u'approv', u'fall']
[u'burn', u'protect', u'fowl', u'habitat']
[u'road', u'train', u'strand', u'highway', u'submerg']
[u'call', u'tighter', u'regul', u'import', u'build']
[u'cardiologist', u'hit', u'hospit', u'park']
[u'cat', u'lose', u'skipper', u'week']
[u'cervic', u'cancer', u'vaccin', u'rollout', u'begin', u'school']
[u'chappelli', u'back', u'reach', u'world', u'final']
[u'chestnut', u'colt', u'reach', u'record', u'price']
[u'fear', u'prompt', u'auckland', u'brain', u'surgeri']
[u'claim', u'detaine', u'plan', u'return', u'albania']
[u'climat', u'chang', u'battl', u'continu']
[u'closer']
[u'closer']
[u'cobar', u'seek', u'better', u'health', u'servic', u'recruit']
[u'commiss', u'consid', u'desalin', u'plant']
[u'communiti', u'centr', u'wait', u'budget']
[u'conflict', u'workshop', u'govt', u'worker']
[u'costello', u'speech', u'nation', u'press', u'club']
[u'cost', u'forc', u'spirit', u'servic', u'ceas']
[u'councillor', u'lodg', u'offici', u'complaint', u'call']
[u'countri', u'labor', u'discuss', u'infrastructur', u'request']
[u'crew', u'monitor', u'gold', u'coast', u'blaze', u'overnight']
[u'cull', u'wont', u'solv', u'problem']
[u'danger', u'cubbi', u'hous', u'remov', u'drain']
[u'darfur', u'gunmen', u'slay', u'peacekeep']
[u'darwin', u'resid', u'escap', u'unharm', u'crane']
[u'debnam', u'quit', u'liber', u'leader']
[u'delay', u'charg']
[u'demon', u'mclean']
[u'dismiss', u'tristar', u'worker', u'wage', u'pay']
[u'dozen', u'iraqi', u'civilian', u'kill']
[u'drought', u'resist', u'tree', u'die']
[u'festiv', u'highlight', u'concern', u'mass', u'death']
[u'elder', u'woman', u'drown', u'swim']
[u'elector', u'good', u'hand']
[u'unlock', u'digit', u'music']
[u'energi', u'minist', u'address', u'power', u'safeti', u'concern']
[u'entir', u'villag', u'sweep', u'away', u'solomon', u'tsunami']
[u'entri', u'procedur', u'demand', u'servic']
[u'condemn', u'australia', u'climat', u'attitud']
[u'famili', u'rememb', u'king', u'victim']
[u'farmer', u'lend', u'hand', u'eritrean', u'counterpart']
[u'father', u'escap', u'jail', u'term', u'babi', u'daughter', u'brain']
[u'fenc', u'electrifi', u'maraud', u'camel']
[u'ferri', u'lose', u'cancer', u'fight']
[u'rip', u'histor', u'church']
[u'flegg', u'keen', u'resolv', u'leadership', u'issu']
[u'footag', u'show', u'captur', u'british', u'sailor']
[u'fraudster', u'court', u'reduc', u'prison', u'sentenc']
[u'free', u'cervic', u'cancer', u'vaccin', u'program', u'begin']
[u'ginger', u'shortag', u'mean', u'price', u'rise']
[u'glastonburi', u'festiv', u'ticket', u'sell', u'websit']
[u'gold', u'coast', u'mainten', u'urg', u'recent']
[u'govt', u'appeal', u'longer', u'sentenc', u'toowoomba']
[u'govt', u'defend', u'qlds', u'tsunami', u'respons']
[u'govt', u'grant', u'extra', u'fund', u'histor', u'fort']
[u'head', u'collis', u'kill', u'passeng', u'injur']
[u'health', u'worker', u'remot', u'patient', u'inquiri']
[u'hick', u'appli', u'transfer', u'jail']
[u'hilali', u'ask', u'account', u'donat']
[u'hilali', u'call', u'account', u'miss', u'fund']
[u'home', u'caravan', u'park', u'burn', u'grind']
[u'hotel', u'group', u'court', u'alleg', u'pressur']
[u'hous', u'standard', u'blame', u'polic', u'shortag']
[u'human', u'heart', u'grow', u'stem', u'cell', u'report']
[u'improv', u'year', u'outlook', u'thank', u'mine', u'boom']
[u'indigen', u'life', u'expect']
[u'indigen', u'tourism', u'find', u'market', u'europ']
[u'injur', u'ricciuto', u'struggl', u'return']
[u'rate', u'conjectur', u'hit', u'share', u'market']
[u'iranian', u'show', u'british', u'sailor', u'confess']
[u'appoint', u'chairman']
[u'train', u'indonesia', u'month', u'suspect']
[u'jone', u'opt', u'stay', u'red']
[u'journalist', u'sign', u'petit', u'demand', u'report']
[u'kempsey', u'mayor', u'back', u'road', u'minist']
[u'kennedi', u'say', u'polic', u'presenc', u'need', u'hargreav']
[u'kiwi', u'australian', u'bangladesh']
[u'labor', u'candid', u'hang', u'port', u'stephen']
[u'labor', u'forestri', u'polici', u'balanc', u'right', u'rudd']
[u'labor', u'inconsist', u'nuclear', u'power', u'say', u'howard']
[u'labor', u'know', u'domest', u'violenc']
[u'leak', u'get', u'temporari', u'commiss', u'wait']
[u'lethal', u'hail', u'black', u'career', u'best', u'form']
[u'lobbi', u'feder', u'elect', u'begin', u'mansfield']
[u'local', u'film', u'maker', u'documentari', u'bendal']
[u'accus', u'steal', u'parliament', u'antiqu']
[u'arrest', u'fatal', u'stab']
[u'attack', u'campsit']
[u'drag', u'road', u'robberi']
[u'face', u'charg', u'cannabi', u'haul']
[u'face', u'court', u'sexual', u'assault']
[u'kill', u'highway', u'crash']
[u'mayor', u'push', u'smoke', u'free', u'playground', u'mall']
[u'mildura', u'polic', u'crack', u'weekend', u'violenc']
[u'manag', u'confid', u'affect', u'crush']
[u'minist', u'confirm', u'garuda', u'argument', u'black']
[u'money', u'need', u'opal', u'roll', u'youth', u'servic']
[u'water', u'take', u'yarragade', u'govt']
[u'servic', u'cooma', u'boost', u'season']
[u'bishop', u'want', u'spiritu', u'easter']
[u'landsail', u'track', u'boost', u'kambalda', u'tourism']
[u'media', u'law', u'stifl', u'industri', u'growth']
[u'frill', u'airlin', u'need', u'singl', u'aisl', u'plan']
[u'north', u'west', u'final', u'elect', u'result', u'announc']
[u'olmert', u'agre', u'meet', u'arab', u'leader']
[u'olmert', u'push', u'peac']
[u'omeley', u'troubl', u'princ', u'incid']
[u'opposit', u'call', u'declar', u'forest', u'polici']
[u'opposit', u'concern', u'recycl', u'monopoli']
[u'orang', u'grower', u'underprepar', u'fireblight']
[u'packer', u'donat']
[u'paper', u'expand', u'ask', u'govt', u'invest']
[u'patient', u'updat', u'derbi', u'hospit', u'ward']
[u'pavlich', u'clear', u'strike', u'charg']
[u'peak', u'asbesto', u'relat', u'case', u'miscalcul', u'doctor']
[u'peninsula', u'industri', u'push', u'represent']
[u'person', u'custodi', u'shoot', u'death']
[u'plan', u'court', u'build']
[u'lead', u'tribut', u'gutsi', u'senat', u'ferri']
[u'polic', u'bodi', u'miss', u'skater']
[u'polic', u'investig', u'motorcycl', u'crash']
[u'policeman', u'drink', u'drive', u'charg']
[u'policeman', u'head', u'ram', u'attempt', u'subdu']
[u'polic', u'search', u'miss']
[u'polic', u'seek', u'inform', u'shoot', u'death']
[u'port', u'macquari', u'wait', u'budget']
[u'port', u'piri', u'council', u'look', u'servic']
[u'potato', u'chip', u'fuel', u'sydney', u'seagul', u'boom']
[u'protect', u'job', u'profit']
[u'purpl', u'carnat', u'avail', u'garden']
[u'liber', u'leadership', u'meet', u'fall']
[u'tsunami', u'alert', u'end']
[u'tsunami', u'threat']
[u'tsunami', u'warn', u'eas']
[u'raider', u'lead', u'knight', u'canberra']
[u'raider', u'thump', u'knight', u'open']
[u'rainfal', u'lift', u'farmer', u'spirit', u'need']
[u'rann', u'back', u'howard', u'propos']
[u'region', u'communiti', u'struggl', u'provid']
[u'relay', u'life', u'go', u'expect']
[u'report', u'predict', u'econom', u'futur']
[u'resid', u'concern', u'improp', u'manag']
[u'respond', u'tsunami', u'threat']
[u'retail', u'figur']
[u'risk', u'small', u'tsunami', u'alert', u'remain', u'coast']
[u'robberi', u'end', u'bad', u'thiev']
[u'ruddock', u'deni', u'fix', u'hick', u'plea']
[u'ruddock', u'want', u'answer', u'hilali', u'donat']
[u'rural', u'queensland', u'parent', u'council', u'investig']
[u'russian', u'dive', u'coach', u'fin']
[u'govt', u'approv', u'olymp', u'desal', u'plant']
[u'sailor', u'detent', u'prove', u'lucrat', u'iran']
[u'scandal', u'rock', u'govern']
[u'secur', u'rank', u'revel']
[u'selga', u'back', u'countri', u'health', u'structur', u'propos']
[u'senat', u'ferri', u'die', u'cancer', u'battl']
[u'alleg', u'stop', u'gibson', u'cabinet', u'role']
[u'skorea', u'reach', u'free', u'trade', u'agreement']
[u'solomon', u'island', u'ferri', u'oper', u'nixon', u'silus', u'talk']
[u'solomon', u'offici', u'assess', u'earthquak', u'damag']
[u'solomon', u'warn', u'tsunami', u'death']
[u'solomon', u'tsunami', u'leav', u'dead']
[u'somar', u'face', u'moti', u'legal', u'challeng']
[u'south', u'australian', u'develop', u'breed', u'orang']
[u'spenc', u'urg', u'chariti', u'boycott', u'biki', u'run']
[u'spotter', u'plane', u'locat', u'lose', u'hunter']
[u'strong', u'retail', u'figur', u'prompt', u'rate', u'hike']
[u'supercar', u'gain', u'momentum']
[u'sydneysid', u'shed', u'light', u'global', u'warm']
[u'taliban', u'deploy', u'thousand', u'afghanistan']
[u'teacher', u'urg', u'reject', u'extra', u'workload']
[u'teenag', u'camp', u'death', u'peanut', u'relat']
[u'teenag', u'girl', u'accus', u'violent', u'break', u'enter']
[u'teen', u'bodi', u'sydney', u'harbour']
[u'thorp', u'encourag', u'support']
[u'injur', u'explos', u'ship']
[u'tiwi', u'land', u'council', u'member', u'sack', u'forestri']
[u'tourism', u'noosa', u'gear', u'influx', u'travel']
[u'tour', u'highlight', u'uranium', u'polici']
[u'town', u'embarrass', u'hitler', u'link']
[u'tsunami', u'alert', u'coast']
[u'tsunami', u'sting']
[u'tsunami', u'threat', u'eas']
[u'tsunami', u'warn', u'eas']
[u'tsunami', u'warn', u'good', u'beatti']
[u'turnbul', u'question', u'hick', u'plea', u'delay']
[u'turnbul', u'seek', u'bureau', u'csiro', u'involv', u'water']
[u'dead', u'miss', u'solomon', u'report']
[u'ukrainian', u'swim', u'fight', u'reaction', u'overzeal']
[u'union', u'push', u'minimum', u'wage', u'worker']
[u'union', u'warn', u'labor', u'forest', u'lock']
[u'unlicenc', u'driver', u'escap', u'injuri', u'crash']
[u'unsuccess', u'alinta', u'bidder', u'want', u'second', u'opinion']
[u'victorian', u'govt', u'examin', u'lake', u'water', u'storag']
[u'wasim', u'reveal', u'admir', u'mcgrath']
[u'wast', u'manag', u'committe', u'chairman', u'resign']
[u'youth', u'shun', u'cigarett']
[u'water', u'lake', u'eyr', u'encourag', u'tourist']
[u'water', u'meet', u'govt', u'urgent', u'mayor']
[u'watson', u'order', u'rest']
[u'wed', u'recept', u'brawl', u'disgrac', u'polic']
[u'harbour', u'search', u'polic']
[u'wind', u'gust', u'caus', u'plane', u'crash', u'polic']
[u'woman', u'return', u'home', u'grind', u'break']
[u'wool', u'organis', u'move', u'appeas', u'aust', u'wool']
[u'work', u'begin', u'reticul', u'sewag', u'seaspray']
[u'teen', u'rescu', u'surf']
[u'order', u'assault', u'victim']
[u'accur', u'tsunami', u'forecast', u'year', u'away', u'bureau']
[u'action', u'group', u'say', u'doctor', u'forc', u'bateman']
[u'attack', u'suppli', u'inquiri', u'call']
[u'alcohol', u'court', u'answer', u'say', u'mayor']
[u'allianc', u'council', u'develop', u'sustain', u'plan']
[u'ambul', u'servic', u'say', u'station', u'closur']
[u'quak', u'rock', u'solomon']
[u'anti', u'bypass', u'ralli', u'attract', u'hundr']
[u'worker', u'jail', u'steal', u'million']
[u'apart', u'approv', u'surg']
[u'aussi', u'away', u'ogilvi']
[u'austal', u'sign', u'largest', u'contract']
[u'australian', u'test', u'confirm', u'case']
[u'australia', u'offer', u'boost', u'tsunami']
[u'author', u'close', u'bonogin']
[u'author', u'reduc', u'bushfir', u'fuel', u'major', u'burn']
[u'call', u'worksaf', u'resourc', u'boost']
[u'bassett', u'sinclair', u'tribun']
[u'beaconsfield', u'probe', u'extend']
[u'bega', u'chees', u'major', u'share', u'tatura', u'milk']
[u'blair', u'warn', u'tougher', u'posit', u'talk']
[u'blood', u'type', u'solut', u'scientist']
[u'bottl', u'shop', u'deregul', u'fund', u'reject']
[u'bounti', u'hunter', u'concern', u'captiv', u'dingo', u'owner']
[u'boutiqu', u'breweri', u'want', u'perk', u'wine', u'industri']
[u'bowenit', u'shoot', u'fame', u'lurhmann', u'film']
[u'british', u'pilot', u'ask', u'consid', u'kamikaz', u'scenario']
[u'break', u'pipe', u'forc', u'school', u'closur']
[u'bulldog', u'grant', u'sidelin', u'surgeri']
[u'burn', u'victim', u'airlift', u'hospit']
[u'donat', u'flood', u'stricken', u'oenpelli']
[u'safe', u'hous', u'break', u'abus', u'cycl']
[u'call', u'govt', u'confirm', u'deni', u'rail', u'mainten']
[u'club', u'push', u'ahead', u'drag', u'race', u'propos']
[u'cervic', u'cancer', u'vaccin', u'begin']
[u'chelsea', u'attempt', u'focus', u'firm', u'valencia']
[u'closer']
[u'cole', u'trade', u'halt', u'takeov']
[u'confer', u'consid', u'prioriti', u'indigen']
[u'contract', u'award', u'world', u'class', u'water', u'suppli']
[u'cost', u'phillip', u'centr', u'reopen']
[u'council', u'investig', u'cost', u'open', u'mall']
[u'council', u'push', u'feder', u'govt', u'talk']
[u'council', u'question', u'legal', u'suppli', u'deal']
[u'culcairn', u'resid', u'seek', u'discuss', u'age']
[u'dept', u'local', u'govt', u'protect', u'struggl', u'council']
[u'dept', u'contact', u'esper', u'resid', u'high', u'lead']
[u'dfat', u'deni', u'gag', u'terri', u'hick']
[u'disabl', u'minist', u'walk', u'brough']
[u'urg', u'fisherman', u'adher', u'catch', u'rule']
[u'drought', u'assist', u'grant', u'support', u'solut']
[u'drought', u'reduc', u'global', u'warm', u'research', u'say']
[u'gnangara', u'mound', u'declin', u'rainfal', u'expert']
[u'economist', u'rat', u'rise']
[u'produc', u'defend', u'legisl']
[u'enni', u'call', u'rooster', u'clash']
[u'hail', u'emiss', u'rule']
[u'esper', u'high', u'student', u'select']
[u'eureka', u'develop', u'plan', u'forc', u'pool', u'reloc']
[u'expert', u'want', u'albert', u'hall', u'communiti']
[u'policemen', u'plead', u'guilti', u'violent', u'robberi']
[u'fear', u'kiwi', u'lose', u'solomon']
[u'fertil', u'pioneer', u'bill', u'die', u'melbourn']
[u'fight', u'endang', u'tiger']
[u'film', u'sound', u'archiv', u'home', u'research']
[u'fina', u'concern', u'thorp', u'confidenti', u'breach']
[u'damag', u'pinnacl', u'track', u'reopen']
[u'forecast', u'predict', u'farmer', u'plant', u'year']
[u'forestri', u'industri', u'urg', u'rudd', u'commit']
[u'ausaid', u'advis', u'child', u'porn', u'sentenc', u'uphold']
[u'forum', u'meet', u'minist', u'lobbi', u'smart', u'stadium']
[u'fraudster', u'ask', u'suprem', u'court', u'earli', u'releas']
[u'fund', u'boost', u'expect', u'surgeri', u'wait']
[u'garrett', u'rudd', u'odd', u'uranium']
[u'good', u'weather', u'put', u'surfer', u'visitor', u'level']
[u'govt', u'urg', u'sign', u'eat', u'disord', u'charter']
[u'gunn', u'concern', u'prompt', u'watchdog']
[u'gunn', u'court', u'case', u'get', u'green', u'light']
[u'gunn', u'court', u'case', u'give', u'green', u'light']
[u'hick', u'return', u'guantanamo', u'media']
[u'horsham', u'council', u'vote', u'perman', u'month', u'haven']
[u'howard', u'face', u'uphil', u'battl', u'workchoic']
[u'howard', u'miss', u'point', u'kyoto', u'critic']
[u'howard', u'slap', u'climat', u'critic']
[u'humanitarian', u'crisi', u'fear', u'solomon']
[u'iemma', u'wont', u'draw', u'assault', u'claim']
[u'watson']
[u'incom', u'figur', u'lag']
[u'independ', u'applaud', u'iemma', u'decis', u'speaker']
[u'indigen', u'firefight', u'program', u'prove', u'popular']
[u'indigen', u'health', u'deal', u'test', u'improv']
[u'indigen', u'life', u'expect', u'improv', u'report']
[u'interview', u'neil', u'henri', u'alan', u'tongu', u'brian', u'smith']
[u'iran', u'britain', u'want', u'diplomat', u'solut', u'sailor']
[u'juvenil', u'name', u'sham', u'tripl', u'murder']
[u'kimberley', u'famili', u'valu', u'nativ', u'bush', u'fruit']
[u'labor', u'urg', u'spell', u'polici']
[u'lenton', u'smash', u'freestyl', u'world', u'record']
[u'lismor', u'pressur', u'host', u'aborigin', u'leagu']
[u'livingston', u'mayor', u'regret', u'evacu']
[u'lobbi', u'group', u'enlist', u'celebr', u'campaign']
[u'lobbyist', u'grill', u'condemn', u'public', u'interrog']
[u'local', u'author', u'manag', u'king', u'blaze']
[u'charg', u'murder', u'hotel', u'stab']
[u'commit', u'trial', u'montvill', u'death']
[u'jail', u'rape', u'knife', u'point']
[u'plead', u'guilti', u'attempt', u'murder']
[u'mayor', u'appeal', u'govt', u'black', u'spot', u'bridg']
[u'mbeki', u'urg', u'quick', u'defus', u'zimbabw', u'crisi']
[u'mbeki', u'wont', u'forc', u'mugab', u'power']
[u'mcginti', u'tabl', u'evid', u'rape', u'case']
[u'melbourn', u'host', u'presid']
[u'miner', u'push', u'mark']
[u'mokbel', u'disappear', u'destroy', u'famili']
[u'hospit', u'get', u'time', u'psychiatrist']
[u'murali', u'better', u'warn', u'pietersen', u'say']
[u'naracoort', u'secur']
[u'ball', u'bracken', u'favour']
[u'initi', u'launch', u'help', u'australian', u'carer']
[u'loiter', u'law', u'help', u'fight', u'youth', u'crime', u'alic']
[u'plant', u'boost', u'habitat', u'endang', u'possum']
[u'support', u'rural', u'retir']
[u'news', u'video']
[u'techniqu', u'offer', u'hope', u'asthma', u'suffer']
[u'norman', u'tip', u'presid', u'role']
[u'inquiri', u'find', u'sexual', u'misconduct']
[u'drown', u'tri', u'save', u'parent', u'tsunami']
[u'octogenarian', u'charg', u'assault']
[u'omeley', u'ban', u'south', u'clash']
[u'omodei', u'renew', u'royal', u'commiss']
[u'opposit', u'condemn', u'rann', u'chile', u'trip']
[u'oxfam', u'report', u'aborigin', u'health']
[u'pakistan', u'deleg', u'govt', u'loop']
[u'parent', u'plead', u'contact', u'miss']
[u'pipelin', u'upgrad', u'increas', u'daili', u'output', u'wide']
[u'plan', u'minist', u'discuss', u'hunt', u'protest']
[u'playground', u'area', u'mall', u'smoke', u'free']
[u'maintain', u'stanc', u'kyoto', u'protocol']
[u'shrug', u'critic']
[u'polic', u'admit', u'respons', u'trader', u'concern']
[u'polic', u'alarm', u'road', u'death', u'hour']
[u'polic', u'road', u'ahead', u'easter', u'weekend']
[u'polic', u'investig', u'fire', u'link']
[u'polic', u'look', u'teenag', u'flee', u'motorbik', u'crash']
[u'polic', u'victim', u'cottag']
[u'polic', u'promis', u'check', u'bail', u'kid']
[u'polic', u'raid', u'net', u'firearm']
[u'polic', u'search', u'miss', u'mother']
[u'polic', u'want', u'upgrad', u'grey', u'spot', u'intersect']
[u'politician', u'parti', u'allegi', u'asid', u'target']
[u'potenti', u'uranium', u'tout']
[u'plater', u'jail', u'fatal', u'crash']
[u'premier', u'announc', u'recycl', u'water', u'group']
[u'program', u'take', u'pandem', u'scenario']
[u'govt', u'boost', u'easter', u'polic', u'presenc']
[u'push', u'chang', u'feder']
[u'railway', u'welcom', u'ghan', u'crash', u'charg']
[u'rehabilit', u'paedophil', u'jail', u'church', u'camp']
[u'relief', u'oper', u'follow', u'solomon', u'tsunami']
[u'relief', u'oper', u'solomon', u'quak']
[u'research', u'develop', u'environment', u'cotton', u'farm']
[u'research', u'blood', u'breakthrough']
[u'resourc', u'boom', u'tempt', u'miner', u'away', u'opal']
[u'restaur', u'fork', u'giant', u'lucki', u'fish']
[u'roadblock', u'catch', u'fruit', u'threat']
[u'rout', u'readi', u'doubl', u'truck']
[u'royal', u'easter', u'expand', u'anim', u'nurseri']
[u'rspca', u'consid', u'hors', u'death', u'charg']
[u'rudd', u'honeymoon', u'abbott']
[u'ruddock', u'defend', u'hick', u'sentenc']
[u'ruddock', u'power', u'proscrib', u'list', u'question']
[u'rural', u'doctor', u'welcom', u'senat', u'inquiri']
[u'rush', u'blood', u'test', u'high', u'lead', u'level']
[u'scholarship', u'honour', u'harbour', u'crash', u'victim']
[u'school', u'million', u'grant']
[u'senior', u'detect', u'assign', u'investig']
[u'precis', u'driver']
[u'sinclair', u'bassett', u'free', u'play']
[u'small', u'busi', u'optimist', u'profit', u'growth']
[u'solomon', u'declar', u'state', u'emerg']
[u'solomon', u'emerg', u'suppli', u'exhaust']
[u'solomon', u'want', u'larger', u'tsunami', u'assess']
[u'south', u'africa', u'expect', u'brush', u'ireland', u'asid']
[u'south', u'west', u'weed', u'spray', u'program', u'begin']
[u'owner', u'warn', u'regular', u'clean', u'requir']
[u'special', u'event']
[u'spotlight', u'pollock', u'kalli', u'ireland']
[u'state', u'emerg', u'declar', u'solomon']
[u'strong', u'quak', u'rattl', u'afghanistan']
[u'student', u'send', u'chicken', u'royal', u'easter']
[u'sydney', u'ferri', u'inquiri', u'announc', u'harbour']
[u'sydney', u'ferri', u'welcom', u'special', u'inquiri']
[u'tasmanian', u'australia']
[u'receiv', u'typic', u'autumn', u'weather']
[u'wind', u'farm', u'issu']
[u'teen', u'serious', u'burn', u'garag', u'blast']
[u'teen', u'face', u'court', u'charg', u'murder']
[u'telstra', u'deni', u'tsunami', u'relat', u'mobil', u'network']
[u'thiev', u'smash', u'sydney', u'shop', u'centr']
[u'thiev', u'target', u'row', u'club']
[u'thousand', u'flock', u'karoonda', u'farm', u'fair']
[u'tiwi', u'centr', u'thousand', u'sale']
[u'torbay', u'blast', u'feder', u'govt', u'chang']
[u'tougher', u'water', u'restrict', u'orang']
[u'tourist', u'urg', u'obey', u'east', u'gippsland', u'water']
[u'trade', u'deficit', u'rise']
[u'trucker', u'charg', u'ghan', u'train', u'crash']
[u'truste', u'understand', u'sack', u'letter']
[u'tsunami', u'death', u'toll', u'rise']
[u'tsunami', u'emerg', u'suppli', u'exhaust']
[u'tsunami', u'forecast', u'need', u'beatti']
[u'tsvangirai', u'mugab']
[u'kill', u'pacif', u'highway', u'crash']
[u'ukrain', u'knife', u'edg', u'parliament', u'defi']
[u'union', u'membership', u'figur']
[u'begin', u'clean', u'damag', u'research', u'centr']
[u'court', u'rule', u'bush', u'global', u'warm']
[u'court', u'rule', u'prison', u'unabl', u'challeng']
[u'gaal', u'snub', u'socceroo']
[u'virus', u'outbreak', u'worsen', u'hospit']
[u'vote', u'count', u'continu', u'undecid']
[u'waff', u'deleg', u'head', u'east', u'gather', u'singl', u'desk']
[u'like', u'plan', u'need', u'tackl', u'climat', u'chang']
[u'weather', u'extrem', u'rais', u'fresh', u'ginger', u'price']
[u'weather', u'report']
[u'enforc', u'hick', u'media', u'ruddock']
[u'wesfarm', u'consid', u'cole', u'takeov']
[u'wesfarm', u'takeov', u'talk', u'cole']
[u'wesfarm', u'launch', u'billion', u'cole', u'takeov']
[u'whitsunday', u'airport', u'decis', u'like', u'week']
[u'wide', u'push', u'govt', u'doctor']
[u'woman', u'arrest', u'sydney', u'naval', u'base']
[u'workchoic', u'choke', u'union', u'particip', u'actu']
[u'driver', u'warn', u'phone']
[u'action', u'group', u'merg', u'geraldton', u'justic']
[u'agenc', u'shell', u'combat', u'oyster', u'theft']
[u'agforc', u'disappoint', u'network']
[u'akermani', u'reach', u'mileston']
[u'alga', u'munch', u'biologist', u'underwat', u'experi']
[u'endors', u'mckew', u'bennelong']
[u'alp', u'loss', u'lake', u'macquari', u'confirm']
[u'kill', u'link', u'sorceri']
[u'ansett', u'son', u'fail', u'estat']
[u'assault', u'alleg', u'send', u'nori', u'hell']
[u'aust', u'troop', u'head', u'solomon']
[u'baddeley', u'draw', u'wood', u'casey']
[u'bank', u'leav', u'rat', u'hold']
[u'beaconsfield', u'resum', u'soon']
[u'brewarrina', u'busi', u'bring', u'salon', u'town']
[u'break', u'hill', u'swim', u'pool', u'step', u'closer']
[u'builder', u'decis', u'improv']
[u'bullimor', u'readi', u'leav', u'world', u'trip']
[u'bush', u'threaten', u'veto', u'troop']
[u'camel', u'slaughter', u'food']
[u'cape', u'byron', u'whale', u'sight', u'begin']
[u'cfmeu', u'offici', u'charg', u'trespass']
[u'estim', u'damag', u'soldier', u'settler', u'home']
[u'chappel', u'quit', u'indian', u'coach']
[u'chappel', u'quit', u'indian', u'cricket', u'coach']
[u'chariti', u'appeal', u'tsunami']
[u'child', u'safe', u'campaign', u'launch']
[u'chines', u'want', u'beij', u'free', u'fli']
[u'clinic', u'protea', u'pull', u'comfort']
[u'closer', u'news']
[u'closer']
[u'coca', u'cola', u'forc', u'easter', u'film', u'postpon', u'releas']
[u'commission', u'lament', u'dread', u'start', u'easter']
[u'confid', u'scott', u'chase', u'holi', u'grail', u'augusta']
[u'congoles', u'swimmer', u'miss']
[u'council', u'canvass', u'expert', u'preserv', u'histor']
[u'council', u'group', u'meet', u'farmer', u'fund']
[u'council', u'work', u'ensur', u'park', u'avail']
[u'court', u'tell', u'pngs', u'withdraw', u'moti', u'report']
[u'crikey', u'report', u'helplin', u'tap', u'plan', u'deni']
[u'csiro', u'ocean', u'report']
[u'didak', u'track', u'collingwood', u'return']
[u'diseas', u'worri', u'tsunami', u'survivor']
[u'doctor', u'frustrat', u'oper', u'theatr', u'closur']
[u'driver', u'jail', u'plough', u'queue']
[u'drought', u'forc', u'bulldoz', u'fruit', u'tree']
[u'dust', u'blower', u'petrol', u'fume', u'spark', u'airport', u'evacu']
[u'easter', u'event', u'traffic', u'stretch', u'polic', u'resourc']
[u'economist', u'prepar', u'rate', u'rise']
[u'emiss', u'advantag', u'product']
[u'want', u'consider', u'time']
[u'famili', u'buri', u'father', u'exhum']
[u'feder', u'court', u'reserv', u'decis', u'tristar', u'inquiri']
[u'feder', u'govt', u'take', u'riverina']
[u'fifth', u'dengu', u'fever', u'case', u'confirm']
[u'find', u'rice', u'nice', u'north', u'coast']
[u'firefight', u'remov', u'wall', u'reach', u'obes', u'woman']
[u'teenag', u'charg', u'sydney', u'gang', u'rape']
[u'flash', u'flood', u'sydney', u'suburb']
[u'brumbi', u'hooker', u'order', u'seek', u'counsel']
[u'fund', u'need', u'focus', u'reach', u'area', u'need']
[u'goldfield', u'worker', u'home', u'averag']
[u'govt', u'commit', u'troop', u'solomon']
[u'govt', u'pledg', u'landmin', u'clearanc']
[u'govt', u'talk', u'green', u'kimberley', u'project']
[u'govt', u'spend', u'black', u'spot', u'road', u'area']
[u'govt', u'urg', u'delay', u'shire', u'amalgam', u'plan']
[u'govt', u'urg', u'inflat']
[u'govt', u'water', u'plan', u'fund', u'misdirect', u'academ']
[u'grain', u'market', u'compani', u'broker', u'agreement']
[u'great', u'keppel', u'handov', u'huge', u'signific']
[u'groundwat', u'declin', u'put', u'develop', u'hold']
[u'hazmat', u'investig', u'unknown', u'liquid', u'shed']
[u'health', u'author', u'warn', u'mosquito', u'carri', u'virus']
[u'hick', u'free', u'tell', u'imprison', u'ruddock']
[u'hick', u'enforc', u'ruddock']
[u'hick', u'enforc', u'aust', u'ruddock']
[u'hick', u'wont', u'risk', u'speak', u'media', u'lawyer', u'say']
[u'highway', u'reopen', u'accid']
[u'highway', u'extra', u'polic', u'presenc']
[u'hinchliff', u'say', u'labor', u'major', u'wont', u'stand']
[u'howard', u'defend', u'water', u'plan', u'treasuri', u'speech']
[u'hunter', u'busi', u'owner', u'financi', u'burden', u'stabl']
[u'hunter', u'elect', u'result', u'arriv']
[u'iemma', u'hear', u'gibson', u'nori', u'gossip', u'liber']
[u'illawarra', u'driver', u'mobil', u'phone', u'drive']
[u'illeg', u'hunter', u'target', u'easter', u'weekend']
[u'illiteraci', u'rise', u'china', u'report']
[u'need', u'play', u'team', u'vaughan']
[u'interpol', u'expert', u'assist', u'woolmer', u'probe']
[u'investig', u'finish', u'save']
[u'iran', u'pardon', u'free', u'captur', u'british', u'sailor']
[u'iran', u'releas', u'british', u'sailor']
[u'chang', u'improv', u'employ', u'figur', u'mcgauran']
[u'jayawarden', u'hop', u'moodi', u'wont', u'quit', u'england']
[u'klim', u'skip', u'duel', u'club']
[u'labor', u'cancel', u'object', u'privat', u'health', u'rebat']
[u'landhold', u'reward', u'help', u'save', u'tail']
[u'lara', u'warn', u'mcgrath', u'link', u'india', u'rebel', u'seri']
[u'level', u'water', u'restrict', u'come', u'forc']
[u'local', u'highway', u'safeti', u'improv']
[u'lockhart', u'river', u'crash', u'report']
[u'lockhart', u'river', u'crash', u'report', u'criticis', u'safeti']
[u'suppli', u'deal', u'inquiri', u'second', u'legal', u'opinion']
[u'lord', u'mayor', u'say', u'bus', u'faster', u'transit', u'lane']
[u'calori', u'bubbl', u'aim', u'health', u'conscious', u'women']
[u'macquari', u'snap', u'british', u'mobil', u'network', u'provid']
[u'mallacoota', u'launch', u'communiti', u'bank']
[u'charg', u'drive', u'wrong', u'bruce', u'highway']
[u'charg', u'yeppoon', u'cannabi', u'haul']
[u'die', u'alleg', u'bouncer', u'beat']
[u'die', u'trail', u'bike', u'accid']
[u'face', u'court', u'accus', u'kidnap', u'daughter']
[u'face', u'hefti', u'punish', u'cemeteri', u'rampag']
[u'court', u'alleg', u'rage']
[u'stand', u'trial', u'solicitor', u'murder']
[u'mcgrath', u'predict', u'easi', u'england']
[u'meet', u'coordin', u'indigen', u'health', u'issu']
[u'arrest', u'school', u'theft']
[u'jail', u'life', u'sandgat', u'murder']
[u'mental', u'ill', u'defenc', u'abus', u'say', u'parol']
[u'mile', u'school', u'rank', u'state']
[u'mine', u'compani', u'eye', u'peterborough', u'infrastructur']
[u'minist', u'defend', u'lack', u'invit']
[u'minist', u'oppos', u'return', u'previous', u'ambul']
[u'minist', u'tell', u'citizen', u'patrol', u'like']
[u'miss', u'congoles', u'swimmer', u'good', u'chanc']
[u'mitch', u'hook', u'address', u'nation', u'press', u'club']
[u'motorcycl', u'club']
[u'motorist', u'warn', u'care', u'near', u'burn', u'off']
[u'question', u'burk', u'grill', u'role', u'esper', u'scare']
[u'want', u'driver', u'engin', u'capac', u'limit']
[u'gambier', u'rocker', u'headlin', u'cabaret', u'fest']
[u'muslim', u'cleric', u'deni', u'entri', u'australia']
[u'muslim', u'group', u'reject', u'visa', u'sheikh']
[u'myspac', u'plan', u'virtual', u'presidenti', u'vote']
[u'mysteri', u'donor', u'provid', u'famili', u'fund']
[u'leas', u'life', u'predict', u'break', u'hill']
[u'newman', u'oppos', u'barb', u'wire', u'bridg']
[u'sign', u'explain', u'rule', u'surf']
[u'hour', u'crucial', u'detain', u'sailor', u'blair']
[u'introduc', u'chanc', u'drug', u'polici']
[u'electr', u'price', u'rise']
[u'liber', u'parti', u'elect', u'leader']
[u'ofarrel', u'lead', u'liber']
[u'opera', u'find', u'home']
[u'organis', u'target', u'record', u'attend', u'gold', u'coast']
[u'owner', u'urg', u'fee', u'hors', u'winter']
[u'oxiana', u'move', u'agincourt']
[u'parent', u'walk', u'free', u'kill']
[u'macquari', u'canadian', u'casino']
[u'petrol', u'price', u'spike', u'straw', u'truck']
[u'pilot', u'ditch', u'helicopt', u'ocean', u'moreton']
[u'pilot', u'error', u'blame', u'lockhart', u'river', u'crash']
[u'plan', u'delay', u'council', u'consid', u'cut']
[u'seiz', u'union', u'membership', u'plung']
[u'polic', u'continu', u'search', u'miss', u'scottish', u'tourist']
[u'polic', u'hope', u'footprint', u'belong', u'miss', u'scottish']
[u'polic', u'start', u'search', u'burnett', u'river', u'miss']
[u'polic', u'thwart', u'indonesian', u'terrorist', u'plan']
[u'polic', u'track', u'alleg', u'sydney', u'gang', u'rape', u'video']
[u'polic', u'urg', u'driver', u'rest', u'reviv', u'stop']
[u'premier', u'voic', u'opposit', u'larg', u'water', u'fin']
[u'push', u'opal', u'roll', u'right']
[u'govt', u'review', u'student', u'medicin', u'polici']
[u'rain', u'fail', u'dampen', u'sydney']
[u'rann', u'reject', u'hypocrisi', u'accus']
[u'rate', u'rise', u'like', u'economist', u'warn']
[u'keep', u'rat', u'hold']
[u'leav', u'rat', u'hold']
[u'rdaq', u'push', u'bush', u'screen', u'servic']
[u'report', u'find', u'pilot', u'error', u'caus', u'lockhart', u'river']
[u'reservist', u'head', u'solomon']
[u'resid', u'urg', u'lock', u'hous', u'holiday']
[u'resourc', u'boom', u'impact', u'opal', u'industri']
[u'richest', u'woman', u'asia', u'die']
[u'rick', u'farley', u'great', u'speech', u'rural', u'australia']
[u'riewoldt', u'rule', u'lion', u'clash']
[u'river', u'inflow', u'boost', u'irrig', u'alloc']
[u'rough', u'guid', u'tsunami', u'warn']
[u'erupt', u'school', u'drug', u'test']
[u'rudd', u'seiz', u'report', u'water', u'rift']
[u'sampra', u'hold', u'court']
[u'schoolboy', u'drug', u'test', u'object', u'pursu']
[u'scientist', u'deliv', u'ocean', u'warn']
[u'seri', u'error', u'blame', u'lockhart', u'river', u'crash']
[u'servant', u'theft', u'trial', u'defer', u'decemb']
[u'seven', u'increas', u'sharehold', u'news']
[u'sharemarket', u'reach', u'record', u'level']
[u'sheedi', u'stick', u'experi', u'docker', u'clash']
[u'slow', u'casa', u'sidelin', u'lockhart', u'river', u'report']
[u'solomon', u'effort', u'step']
[u'solomon', u'disast', u'area', u'declar']
[u'speed', u'limit', u'reduc', u'outsid', u'primari', u'school']
[u'sport', u'star', u'help', u'launch', u'indigen', u'health']
[u'stalem', u'miner', u'protest', u'yumbarra']
[u'stosur', u'florida']
[u'studi', u'investig', u'wast', u'water', u'irrig']
[u'sydney', u'motorist', u'urg', u'fuel', u'easter']
[u'sydneysid', u'tell', u'easter', u'price']
[u'tamworth', u'need', u'reli', u'recycl', u'water']
[u'tendulkar', u'hit', u'critic', u'chappel']
[u'tennant', u'creek', u'consid', u'normalisisng', u'town', u'camp']
[u'tester', u'act', u'schoolboy', u'dope', u'swoop']
[u'testimoni']
[u'thiev', u'shoalhaven', u'cultur', u'centr']
[u'time', u'run', u'answer', u'defend']
[u'treasuri', u'boss', u'defend', u'water', u'plan', u'comment']
[u'treasuri', u'boss', u'deni', u'govt', u'polici', u'critic']
[u'troop', u'fund', u'block', u'bush']
[u'tsunami', u'death', u'toll', u'approach']
[u'turnbul', u'talk', u'water', u'plan', u'irrig']
[u'union', u'demand', u'investig', u'foreign']
[u'polic', u'timor', u'warn', u'shot']
[u'send', u'team', u'solomon', u'tsunami', u'relief']
[u'util', u'provid', u'reliabl', u'power', u'west']
[u'govt', u'bungl']
[u'vote', u'take', u'investig', u'polic', u'shortag']
[u'water', u'charg', u'rise', u'council', u'approv']
[u'water', u'plan', u'speech', u'critic', u'say', u'treasuri', u'boss']
[u'water', u'polic', u'look', u'forward', u'mandurah']
[u'water', u'polic', u'target', u'drink', u'boati', u'easter']
[u'wesfarm', u'cole', u'takeov', u'plan', u'say']
[u'wimmera', u'site', u'target', u'ethanol', u'plant']
[u'woman', u'attack', u'lennon', u'park']
[u'woman', u'face', u'charg', u'relat', u'stab']
[u'workchoic', u'bite', u'easter', u'actu']
[u'worsfold', u'bank', u'embley', u'magpi', u'clash']
[u'young', u'boat', u'user', u'remind', u'need', u'skipper']
[u'youngster', u'blue', u'revolut', u'pagan']
[u'youth', u'club', u'urg', u'reduc', u'violenc', u'crime']
[u'opposit', u'call', u'action', u'curb', u'school']
[u'worker', u'melbourn']
[u'adelaid', u'toddler', u'die', u'accident', u'hang']
[u'offic', u'court', u'rocket', u'launcher', u'theft']
[u'afford', u'countri']
[u'indonesian', u'polic', u'haul', u'drug']
[u'aftershock', u'solmon', u'local', u'away', u'home']
[u'continu', u'arriv', u'solomon']
[u'assad', u'promis', u'peac', u'talk']
[u'grassroot', u'angri', u'lawrenc', u'contempt']
[u'anti', u'crime', u'camera', u'orang', u'citi']
[u'archbishop', u'call', u'modern', u'slaveri']
[u'armi', u'launch', u'recruit', u'campaign']
[u'armi', u'save', u'trap', u'irish', u'cabinet', u'lift']
[u'astronaut', u'expect', u'challeng', u'space', u'marathon']
[u'augusta', u'readi', u'wood', u'mickelson', u'duel']
[u'aussi', u'urg', u'bilbi', u'instead', u'easter']
[u'australia', u'name', u'strength', u'team']
[u'australian', u'look', u'break', u'master', u'drought']
[u'aust', u'send', u'suppli', u'solomon']
[u'aust', u'troop', u'standbi', u'help', u'solomon']
[u'aust', u'urg', u'strengthen', u'antarctica', u'sovereignti']
[u'author', u'prepar', u'massiv', u'forest', u'burn']
[u'author', u'urg', u'restraint', u'lift', u'water']
[u'basslink', u'head', u'power', u'ration', u'hydro', u'tasmania']
[u'bendigo', u'easter', u'fair']
[u'biologist', u'begin', u'water', u'quest']
[u'blair', u'welcom', u'releas', u'sailor']
[u'blood', u'bag', u'proof', u'dope', u'claim', u'ullrich']
[u'bowler', u'wait', u'news', u'polit', u'futur']
[u'hospitalis', u'bike', u'accid']
[u'british', u'sailor', u'board', u'flight', u'home', u'end', u'iran']
[u'broader', u'merit', u'base', u'possibl', u'teacher']
[u'broad', u'replac', u'lewi', u'england', u'world', u'squad']
[u'brown', u'song', u'lion', u'trounc', u'saint']
[u'brushmen', u'bush', u'work', u'year', u'tour']
[u'buck', u'pass']
[u'bulk', u'bill', u'figur', u'govt', u'medicar', u'polici']
[u'busi', u'reject', u'call', u'fund']
[u'cabexpress', u'introduc', u'wheelchair', u'access']
[u'call', u'expand', u'drug', u'test', u'school']
[u'camper', u'fin', u'illeg', u'fire']
[u'canberra', u'doesnt', u'need', u'water', u'recycl', u'plant', u'medic']
[u'carer', u'neglect']
[u'care', u'approach', u'need', u'solv', u'youth', u'violenc']
[u'carter', u'strengthen', u'crusad', u'titl', u'push']
[u'chappel', u'quit', u'indian', u'cricket', u'coach']
[u'chines', u'corpor', u'give', u'green', u'light']
[u'closer']
[u'closer']
[u'coal', u'export', u'compani', u'snub', u'labor', u'infrastructur']
[u'coff', u'seafood', u'retail', u'prepar', u'flat']
[u'commonwealth', u'road', u'fund', u'slap', u'face']
[u'consum', u'spend', u'increas']
[u'control', u'burn', u'nene', u'valley', u'today']
[u'coron', u'outlin', u'plan', u'lockhart', u'river', u'crash']
[u'council', u'consid', u'park', u'cyclon', u'shelter']
[u'councillor', u'call', u'referendum', u'propos']
[u'council', u'refus', u'scrap', u'gambier', u'transport']
[u'council', u'provid', u'water', u'carniv', u'flower']
[u'currumbin', u'staff', u'confirm', u'tasmanian', u'devil', u'expect']
[u'defenc', u'forc', u'captain', u'arrest', u'steal', u'rocket']
[u'delorain', u'local', u'develop', u'plan', u'open', u'racetrack']
[u'democrat', u'say', u'keppel', u'land', u'handov', u'redress']
[u'democrat', u'indigen', u'women', u'land', u'protest']
[u'district', u'quickest', u'athlet', u'horsepow']
[u'doubl', u'demerit', u'forc', u'easter', u'break']
[u'doubl', u'penalti', u'driver']
[u'drink', u'driver', u'damag', u'power', u'pole', u'crash']
[u'driver', u'free', u'plung', u'cliff', u'lake']
[u'economist', u'label', u'govt', u'indigen', u'health', u'polici']
[u'elder', u'woman', u'alleg', u'assault', u'wed']
[u'entir', u'boorowa', u'alcohol', u'free']
[u'environment', u'group', u'log', u'report']
[u'timor', u'polit', u'tension', u'spark', u'violenc']
[u'expert', u'warn', u'complac']
[u'deputi', u'guilti', u'misconduct']
[u'extra', u'boat', u'patrol', u'focus', u'safeti']
[u'farmer', u'appeal', u'water', u'differ', u'sort']
[u'farmer', u'count', u'weather', u'cost']
[u'fli', u'doctor', u'feder', u'govt', u'fund']
[u'fong', u'declin', u'salari', u'increas', u'offer']
[u'director', u'face', u'jail']
[u'free', u'british', u'sailor', u'arriv', u'britain']
[u'free', u'british', u'sailor', u'return', u'home']
[u'fund', u'asid', u'improv', u'public', u'build']
[u'gatton', u'host', u'festiv']
[u'gippsland', u'counsel', u'get', u'govt', u'fund']
[u'govt', u'offer', u'pension', u'help', u'fincorp', u'collaps']
[u'govt', u'say', u'boom', u'manag']
[u'grim', u'reaper', u'turn']
[u'groth', u'sign', u'deal', u'eel']
[u'helicopt', u'flight', u'empt', u'macquari', u'bait']
[u'hick', u'lobbi', u'group', u'deliv', u'protest', u'letter']
[u'high', u'expect', u'barramundi', u'fish', u'champ']
[u'holiday', u'fuel', u'price', u'spike', u'hurt', u'small', u'busi']
[u'hop', u'daunt', u'potenti', u'world', u'berth']
[u'horticultur', u'safeti', u'standard', u'mirror', u'seafood']
[u'hospit', u'seek', u'communiti', u'advic', u'servic']
[u'indigen', u'health']
[u'indigen', u'leader', u'ask', u'shape', u'better', u'educ']
[u'iran', u'deserv', u'credit']
[u'isi', u'properti', u'boom', u'boost', u'region', u'infrastructur']
[u'swap', u'deal', u'follow', u'bluescop', u'closur']
[u'junior', u'polo', u'team', u'cano', u'day']
[u'knife', u'edg', u'finish', u'boost', u'lanka']
[u'labor', u'nomin', u'replac', u'month']
[u'larrakia', u'peopl', u'lose', u'darwin', u'nativ', u'titl', u'appeal']
[u'lawyer', u'accus', u'smuggl', u'drug', u'prison']
[u'lead', u'put', u'staff']
[u'learner', u'instructor', u'arrest', u'drink', u'drive']
[u'lion', u'lead', u'saint', u'gabba']
[u'project', u'suffer', u'second', u'delay', u'year']
[u'magnet', u'build', u'util', u'corridor', u'reseal']
[u'charg', u'conveni', u'store', u'robberi']
[u'charg', u'disobey', u'court', u'order']
[u'lose', u'appeal', u'overturn', u'drink', u'drive']
[u'face', u'court', u'steal', u'good', u'charg']
[u'unit', u'govern', u'examin', u'rome']
[u'marijuana', u'finder', u'keeper', u'earn', u'communiti']
[u'market', u'slip', u'easter', u'media', u'rush']
[u'mar', u'heat', u'nasa']
[u'martin', u'escap', u'sanction', u'pulp', u'vote']
[u'melbourn', u'confirm', u'legionnair', u'diseas', u'case']
[u'face', u'charg', u'steal', u'rocket', u'launcher']
[u'face', u'court', u'rocket', u'launcher', u'theft']
[u'minist', u'plead', u'driver', u'care']
[u'minist', u'push', u'ambul', u'fund']
[u'mission', u'australia', u'win', u'tender', u'tackl', u'petrol']
[u'mokbel', u'brother', u'stand', u'trial', u'death', u'threat']
[u'liber', u'leader', u'dump', u'polici', u'public']
[u'medicin', u'help', u'treat', u'drug', u'resist']
[u'treatment', u'give', u'hope', u'suffer']
[u'consensus', u'salari', u'increas']
[u'immedi', u'plan', u'annual', u'race', u'race', u'group']
[u'tender', u'need', u'qanta', u'contract', u'say', u'defenc']
[u'cocoa', u'plantat', u'ensur', u'australian']
[u'nrma', u'deni', u'person', u'breathalys', u'promot']
[u'govern', u'support', u'wage', u'rise', u'worker']
[u'road', u'receiv', u'good', u'share', u'black', u'spot']
[u'buck', u'trend', u'union', u'membership', u'increas']
[u'screen', u'award', u'hold', u'april']
[u'compani', u'accus', u'easter']
[u'onlin', u'reach', u'year', u'high']
[u'opposit', u'call', u'casa', u'boss', u'quit']
[u'opposit', u'question', u'ridley', u'charact', u'test']
[u'organis', u'hope', u'festiv', u'anniversari', u'bring']
[u'outlook', u'brighter', u'bendigo', u'mine']
[u'pair', u'talk', u'kill', u'rocket', u'launcher', u'wit']
[u'pelosi', u'urg', u'syria', u'help', u'middl', u'east']
[u'playboy', u'charg', u'throw', u'court']
[u'player', u'power', u'drive', u'chappel']
[u'defend', u'workchoic', u'cash']
[u'plea', u'workchoic', u'fund', u'desper']
[u'policeman', u'escap', u'critic', u'road', u'death', u'inquest']
[u'polic', u'forc', u'easter', u'long', u'weekend']
[u'polic', u'forc', u'easter']
[u'polic', u'releas', u'devonport', u'fatal', u'accid', u'name']
[u'popul', u'perish']
[u'prefer', u'sharehold', u'clear', u'rural', u'press', u'fairfax']
[u'premier', u'say', u'race', u'track', u'plan']
[u'public', u'encourag', u'report', u'cactus', u'infest']
[u'push', u'bigger', u'lake', u'buffalo']
[u'race', u'industri', u'mourn', u'death', u'champion', u'trainer']
[u'ramo', u'horta', u'confid', u'head', u'timor']
[u'rann', u'pledg', u'miner', u'explor', u'money']
[u'ratepay', u'want', u'govt', u'bear', u'cost', u'water']
[u'real', u'estat', u'agent', u'guilti', u'adelaid', u'rape']
[u'recruit', u'drive', u'invok', u'anzac', u'spirit']
[u'cross', u'drill', u'defenc', u'guantanamo']
[u'rediscov', u'albani', u'campaign', u'launch']
[u'meat', u'breast', u'cancer', u'link', u'slam', u'rubbish']
[u'relief', u'team', u'solomon', u'month']
[u'rescu', u'carer', u'need']
[u'research', u'oat', u'healthier']
[u'rise', u'case', u'prompt', u'public', u'forum']
[u'river', u'search', u'fail', u'miss', u'mother']
[u'road', u'fund', u'canberra', u'senat']
[u'roo', u'call', u'uniform', u'drug', u'code']
[u'saint', u'hudghton', u'lion', u'encount']
[u'saint', u'wari', u'lion', u'midfield', u'power']
[u'detain', u'alleg', u'infect']
[u'scottish', u'tourist', u'western']
[u'search', u'resum', u'miss', u'scottish', u'tourist']
[u'senat', u'ferriss', u'husband', u'die', u'road', u'crash']
[u'senat', u'say', u'stagger', u'holiday', u'harm', u'tourism']
[u'senior', u'polic', u'push', u'station', u'mandurah']
[u'shop', u'tree', u'damag', u'charlton', u'truck', u'crash']
[u'singl', u'desk', u'gain', u'general', u'accept', u'govt']
[u'sleep', u'pill', u'warn', u'upgrad']
[u'small', u'oper', u'forc', u'skimp', u'safeti', u'dick']
[u'smith', u'safeti']
[u'snake', u'caus', u'major', u'power', u'outag', u'south', u'mackay']
[u'snowi', u'water', u'level', u'record']
[u'solomon', u'aftershock', u'local', u'away', u'home']
[u'sothebi', u'put', u'pricetag', u'kimberley']
[u'steadi', u'rat', u'good', u'countri', u'area']
[u'steel', u'compani', u'agre', u'carv', u'smorgon']
[u'stosur', u'advanc', u'florida']
[u'strong', u'wind', u'promis', u'fast', u'brisban', u'gladston', u'race']
[u'submiss', u'hear', u'bypass', u'panel']
[u'super', u'disrupt', u'elect', u'surgeri', u'royal', u'north']
[u'surgeri', u'servic', u'scale', u'doctor']
[u'swim', u'suit', u'trial', u'canberra']
[u'sydney', u'arrest', u'drug', u'laboratori']
[u'sydney', u'homeless', u'feet', u'wash', u'easter']
[u'telstra', u'invest']
[u'telstra', u'lead', u'broadband', u'upgrad', u'coonan']
[u'moana', u'red', u'debut']
[u'thiev', u'target', u'fast', u'food', u'restaur']
[u'arrest', u'armi', u'rocket', u'launcher', u'theft']
[u'arrest', u'steal', u'rocket', u'launcher']
[u'charg', u'london', u'bomb']
[u'thuringowa', u'kick', u'nation', u'youth', u'week']
[u'tribun', u'rule', u'clear', u'construct']
[u'tsunami', u'death', u'toll', u'rise', u'solomon', u'island']
[u'teenag', u'refus', u'bail', u'sydney', u'gang']
[u'welcom', u'releas', u'sailor']
[u'undervalu', u'neglect']
[u'union', u'angri', u'travel', u'centr', u'loss']
[u'union', u'target', u'govern', u'centr']
[u'unit', u'condit', u'rome', u'stab']
[u'presidenti', u'race', u'contend', u'fundrais']
[u'veteran', u'famili', u'benefit', u'super', u'scheme']
[u'cattl', u'breeder', u'urg', u'meet', u'russian', u'export']
[u'parliament', u'set', u'term', u'refer']
[u'deni', u'report', u'attack']
[u'weightlift', u'ban', u'life', u'second', u'offenc']
[u'celebr', u'accept', u'toler']
[u'western', u'australia', u'grow', u'marron']
[u'whatmor', u'open', u'indian']
[u'woman', u'kill', u'fiji', u'cyclon']
[u'wool', u'fashion', u'award', u'desper', u'sponsor']
[u'join', u'macquari', u'island', u'pest', u'expedit']
[u'face']
[u'evacu', u'sink', u'cruis', u'ship', u'greec']
[u'festiv']
[u'afghan', u'leader', u'say', u'taliban']
[u'gradual', u'reach', u'tsunami', u'survivor']
[u'aid', u'council', u'back', u'detent', u'alleg', u'infector']
[u'american', u'warn', u'global', u'warm', u'dust', u'bowl']
[u'anger', u'beslan', u'massacr', u'apologist', u'arriv', u'aust']
[u'arsonist', u'target', u'gippsland', u'school']
[u'aussi', u'send', u'england', u'pack', u'say', u'buck']
[u'aussi', u'safe', u'greek', u'cruis', u'accid']
[u'aust', u'firm', u'build', u'uranium', u'project', u'malawi']
[u'aust', u'increas', u'uganda', u'angola']
[u'aust', u'suffer', u'extens', u'climat', u'chang']
[u'banana', u'prawn', u'fleet', u'sail', u'port']
[u'bangladesh', u'irk', u'whatmor', u'remark']
[u'basic', u'instinct', u'doom', u'cape', u'york', u'turtl']
[u'basra', u'blast', u'kill', u'british', u'soldier']
[u'bennett', u'wari', u'desper', u'rooster']
[u'bilbi', u'thrive', u'author']
[u'blair', u'deni', u'deal', u'sailor']
[u'blair', u'deni', u'make', u'deal', u'sailor', u'freedom']
[u'blue', u'edg', u'closer', u'semi']
[u'bomb', u'gunmen', u'kill', u'iraqi', u'foreign', u'troop']
[u'bowel', u'pill', u'withdraw', u'heart', u'attack', u'fear']
[u'british', u'sailor', u'reunit', u'famili']
[u'british', u'sailor', u'gather', u'intellig', u'iran']
[u'bronco', u'break']
[u'bronco', u'look', u'pick']
[u'bronco', u'open', u'account', u'rooster']
[u'captiv', u'breed', u'python', u'slither', u'free']
[u'captiv', u'breed', u'program', u'boost', u'devil', u'number']
[u'children', u'bear', u'brunt', u'global', u'warm', u'report']
[u'christian', u'mark', u'good', u'friday']
[u'closer', u'news']
[u'closer']
[u'coron', u'want', u'methadon', u'rethink']
[u'crow', u'need', u'faith', u'say', u'craig']
[u'csiro', u'record', u'warm']
[u'cusack', u'prim', u'test']
[u'defenc', u'open']
[u'detain', u'sailor', u'home', u'soil']
[u'develop', u'hinchinbrook', u'resort']
[u'dfat', u'say', u'aussi', u'safe', u'cruis', u'accid']
[u'disney', u'open', u'fairytal', u'wed', u'coupl']
[u'dozen', u'injur', u'pari', u'train', u'hit', u'buffer']
[u'drought', u'hit', u'hydro', u'tasmania']
[u'easter', u'celebr', u'world']
[u'easter', u'road', u'claim', u'life']
[u'east', u'timor', u'leader', u'plead', u'calm']
[u'timor', u'fretilin', u'reject', u'blame', u'elect']
[u'fear', u'miss', u'solomon']
[u'youth', u'face', u'court', u'violent', u'break']
[u'dead', u'road']
[u'fretilin', u'deni', u'respons', u'timor', u'violenc']
[u'gilmor', u'happi', u'number']
[u'govt', u'toughen', u'english', u'standard', u'visa']
[u'health', u'minist', u'infector']
[u'hooligan', u'spur', u'sevilla', u'uefa', u'triumph']
[u'horror', u'start', u'easter', u'road']
[u'hostag', u'crisi', u'doubl', u'victori', u'tehran', u'bolton']
[u'hunger', u'striker', u'return', u'villawood']
[u'hunt', u'sourc', u'melbourn', u'legionnair']
[u'iran', u'accus', u'hostag', u'diplomaci']
[u'iran', u'reject', u'uranium', u'halt']
[u'iran', u'detaine', u'return']
[u'iraqi', u'truck', u'bomb', u'kill']
[u'judd', u'play', u'magpi']
[u'kiwi', u'believ']
[u'die', u'shop', u'centr', u'park', u'attack']
[u'massa', u'set', u'earli', u'pace', u'malaysia']
[u'massa', u'set', u'sizzl', u'pace', u'malaysian']
[u'messag', u'peac', u'good', u'friday', u'sermon']
[u'miss', u'walker', u'surviv', u'wild', u'turtl', u'meat']
[u'american', u'lack', u'confid', u'militari', u'media']
[u'mother', u'miss', u'bundaberg', u'hospit']
[u'murder', u'court', u'reject', u'farmer', u'baboon', u'plea']
[u'nelson', u'need', u'help', u'defenc', u'dept', u'think', u'tank']
[u'nelson', u'struggl', u'defenc', u'role', u'report']
[u'kill', u'road', u'easter', u'weekend', u'begin']
[u'norton', u'knight', u'extend', u'waratah', u'contract']
[u'lower', u'hous', u'result', u'final']
[u'toad', u'cull', u'spark', u'fear', u'frog']
[u'look', u'reclaim', u'spot', u'adelaid']
[u'pell', u'person', u'moral']
[u'polic', u'confisc', u'car', u'anti', u'hoon', u'law']
[u'polic', u'seiz', u'amphetamin', u'ingredi']
[u'pope', u'benedict', u'begin', u'easter', u'servic']
[u'pope', u'prepar', u'easter', u'ritual', u'foot', u'wash']
[u'regul', u'deni', u'bulli', u'nutrit']
[u'report', u'find', u'confus', u'defenc', u'minist', u'role']
[u'research', u'track', u'turtl', u'pacif', u'race']
[u'resid', u'want', u'alcoa', u'expand', u'refineri']
[u'richard', u'blame', u'grind', u'restrict', u'lack']
[u'rise', u'take', u'clubhous', u'lead', u'master']
[u'rise', u'wetterich', u'share', u'master', u'lead']
[u'ruddock', u'call', u'nation', u'surrogaci']
[u'scientist', u'close', u'potter', u'style', u'invis', u'cloak']
[u'shop', u'reopen', u'area', u'damag', u'solomon', u'tsunami']
[u'solomon', u'island', u'relief', u'effort', u'continu']
[u'solomon', u'death', u'toll', u'pass']
[u'spur', u'seek', u'answer', u'sevilla', u'author']
[u'state', u'nation', u'surrogaci']
[u'state', u'minimum', u'wage', u'rise']
[u'stosur', u'knock', u'florida']
[u'sudanes', u'soldier', u'rape', u'weapon']
[u'suicid', u'bomber', u'near', u'afghan', u'parliament', u'kill']
[u'swan', u'river', u'race', u'hail', u'success']
[u'sydney', u'homeless', u'feet', u'wash', u'easter']
[u'polic', u'charg', u'drink', u'drive']
[u'support', u'teacher', u'continu', u'battl']
[u'arrest', u'harri', u'potter', u'train', u'attack']
[u'nation', u'road']
[u'dead', u'night', u'violenc']
[u'fight', u'life', u'gippsland', u'smash']
[u'miss', u'cruis', u'ship', u'accid']
[u'ugandan', u'court', u'remov', u'men', u'adulteri', u'loophol']
[u'ukrain', u'seek', u'help', u'polit', u'crisi']
[u'review', u'gulf', u'oper', u'sailor', u'return']
[u'ultralight', u'pilot', u'injur', u'crash']
[u'confid', u'peac', u'timor', u'poll']
[u'expert', u'warn', u'warm', u'damag', u'societi', u'natur']
[u'arrest', u'feed', u'homeless']
[u'nation', u'guard', u'face', u'iraq', u'report']
[u'say', u'crackdown', u'mexico', u'border', u'cross']
[u'tip', u'avoid', u'recess']
[u'nation', u'guard', u'iraq', u'report']
[u'water', u'shortag', u'solomon']
[u'waterski', u'alga', u'alert']
[u'william', u'cautious', u'ahead', u'kangaroo', u'clash']
[u'woolmer', u'death', u'reason', u'chappel', u'quit', u'say']
[u'angri', u'macquari', u'island', u'inact']
[u'govt', u'award', u'kingston', u'harbour', u'contract']
[u'continu', u'probe', u'hilali', u'fund']
[u'worker', u'overwhelm', u'tsunami', u'damag']
[u'aloisi', u'quit', u'adelaid']
[u'aust', u'medic', u'team', u'land', u'solomon', u'disast', u'zone']
[u'aust', u'poor', u'place', u'deal', u'climat', u'chang']
[u'aust', u'repres', u'arriv', u'monitor', u'timor']
[u'beadman', u'hawk', u'derbi']
[u'bowen', u'brillianc', u'sink', u'tiger']
[u'bris', u'balconi', u'fall', u'fatal', u'accident', u'polic']
[u'british', u'sailor', u'iran', u'confess']
[u'british', u'sailor', u'withdraw', u'confess']
[u'cancer', u'patient', u'move', u'dust', u'exposur', u'concern']
[u'candid', u'alleg', u'manipul', u'timor', u'elect']
[u'carri', u'explos', u'explod', u'india']
[u'cat', u'rack', u'blue']
[u'chappel', u'undergo', u'hospit', u'test', u'mumbai']
[u'chief', u'highland', u'thriller']
[u'china', u'enforc', u'organ', u'trade']
[u'chlorin', u'bomb', u'kill', u'iraq']
[u'climat', u'pmopen']
[u'climat', u'report', u'make', u'dire', u'predict']
[u'closer', u'news']
[u'closer']
[u'committe', u'establish', u'combat', u'homophobia']
[u'concern', u'rais', u'solomon', u'tsunami']
[u'cough', u'syrup', u'steal', u'modburi', u'north', u'pharmaci']
[u'organis', u'invit', u'fan', u'play']
[u'detect', u'investig', u'fatal', u'perth']
[u'doctor', u'tell', u'reduc', u'caesarean', u'birth']
[u'doom', u'garuda', u'plane', u'travel', u'twice', u'normal']
[u'doubt', u'remain']
[u'drought', u'worsen', u'earth', u'heat', u'report', u'warn']
[u'eagl', u'post', u'tight', u'magpi']
[u'easter', u'road', u'toll', u'hit']
[u'easter', u'road', u'toll', u'rise']
[u'easter', u'toll', u'reach']
[u'timor', u'candid', u'urg', u'aust', u'troop', u'stay', u'longer']
[u'farmer', u'look', u'improv', u'citi', u'link']
[u'destroy', u'owen', u'hous']
[u'forc', u'face', u'tough']
[u'foreign', u'labour', u'take', u'aust', u'job', u'union', u'say']
[u'basketbal', u'longley', u'lose', u'hous']
[u'goal', u'everton', u'fifth']
[u'free', u'iranian', u'diplomat', u'say', u'tortur']
[u'govt', u'list', u'hivaid', u'prioriti', u'asia', u'pacif']
[u'govt', u'commit', u'weed', u'manag', u'question']
[u'hundr', u'support', u'river', u'derwent', u'ferri']
[u'hussey', u'happi', u'form']
[u'ichi', u'claim', u'victori', u'brisban', u'gladston']
[u'investig', u'dodg', u'ferri', u'hous']
[u'iran', u'call', u'goodwil', u'british', u'captiv']
[u'iran', u'dub', u'british', u'sailor', u'comment', u'propaganda']
[u'islam', u'speaker', u'condemn', u'media', u'islamaphobia']
[u'islam', u'speaker', u'lash', u'australian', u'media']
[u'johnson', u'clark', u'lead', u'master', u'second', u'round']
[u'johnson', u'hold', u'sole', u'leadership']
[u'john', u'buderus', u'knight']
[u'expect', u'cracker']
[u'local', u'join', u'search', u'miss', u'barunga']
[u'longley', u'lose', u'memorabilia', u'hous']
[u'mask', u'arm', u'robber', u'sydney', u'hotel']
[u'massa', u'take', u'pole', u'malaysian']
[u'master', u'athlet', u'converg', u'hobart']
[u'matilda', u'thump', u'hong', u'kong']
[u'modern', u'rocker', u'record', u'pepper', u'tribut']
[u'mother', u'son', u'kill', u'hous']
[u'korea', u'freez', u'fund', u'transfer', u'ahead']
[u'link', u'saddam', u'qaeda', u'pentagon']
[u'nrma', u'welcom', u'steadi', u'canberra', u'fuel', u'price']
[u'govt', u'announc', u'indigen', u'teacher', u'scholarship']
[u'observ', u'monitor', u'timor', u'elect']
[u'dead', u'ultralight', u'crash']
[u'kill', u'isra', u'palestinian', u'clash', u'gaza']
[u'opposit', u'question', u'govt', u'spend', u'spree']
[u'pakistan', u'india', u'hope', u'stand', u'glacier']
[u'palestinian', u'media', u'continu', u'campaign', u'kidnap']
[u'pangallo', u'ask', u'stand', u'seat', u'eden', u'monaro']
[u'paper', u'claim', u'romario', u'number']
[u'passeng', u'forc', u'sydney']
[u'polic', u'investig', u'ultralight', u'plane', u'crash']
[u'polic', u'search', u'campbelltown', u'shoot', u'culprit']
[u'polic', u'search', u'springfield', u'servic', u'station']
[u'polic', u'video', u'point', u'blame', u'unit', u'fan']
[u'pope', u'benedict', u'lead', u'good', u'friday', u'servic']
[u'pope', u'lead', u'good', u'friday', u'mass']
[u'princ', u'william', u'mourn', u'close', u'friend', u'kill', u'iraq']
[u'rampant', u'crusad', u'rout', u'forc']
[u'record', u'fund', u'rais', u'good', u'friday', u'hospit']
[u'red', u'crisi', u'deepen', u'shark', u'thrash']
[u'reject', u'coal', u'propos', u'govt', u'tell']
[u'reward', u'offer', u'info', u'murder', u'children']
[u'roo', u'call', u'better', u'ball', u'dispos']
[u'runner', u'prepar', u'stawel', u'heat']
[u'russia', u'tie', u'argentina', u'rope', u'davi']
[u'health', u'author', u'warn', u'spread']
[u'scientist', u'work', u'save', u'rare', u'python']
[u'scott', u'surviv', u'master']
[u'search', u'continu', u'miss', u'mother', u'babi']
[u'search', u'continu', u'miss']
[u'shastri', u'name', u'interim', u'india', u'manag']
[u'smith', u'worri', u'confid', u'bangladesh']
[u'solomon', u'polic', u'boss', u'defend', u'effort']
[u'speed', u'blame', u'garuda', u'crash']
[u'speed', u'caus', u'crash', u'garuda', u'investig']
[u'speed', u'caus', u'garuda', u'crash', u'investig']
[u'lanka', u'say', u'blast', u'kill']
[u'storm', u'extend', u'unbeaten']
[u'storm', u'knight', u'level', u'break']
[u'super', u'interview', u'david', u'croft', u'juan', u'smith']
[u'swan', u'tame', u'richmond']
[u'dead', u'perth', u'blaze']
[u'tiger', u'salvag', u'hop', u'leader', u'struggl']
[u'arrest', u'search', u'high', u'speed']
[u'teenag', u'attack', u'london', u'youth']
[u'sailor', u'withdraw', u'confess']
[u'chief', u'urg', u'calm', u'timor', u'elect']
[u'head', u'appeal', u'peac', u'timor', u'elect']
[u'report', u'warn', u'sever', u'drought']
[u'aust', u'work', u'climat', u'chang', u'initi']
[u'govt', u'appeal', u'cuban', u'exil', u'releas']
[u'vaughan', u'consid', u'unleash', u'refresh', u'strauss']
[u'polic', u'minist', u'sack', u'offic', u'disclos']
[u'woman', u'condit', u'throw']
[u'woman', u'lucki', u'escap', u'prompt', u'smoke', u'alarm', u'warn']
[u'young', u'woman', u'shoot', u'dead', u'london']
[u'zimbabw', u'govt', u'move', u'counter', u'western', u'propaganda']
[u'villawood', u'detaine', u'hunger', u'strike', u'advoc']
[u'kill', u'aust', u'road', u'easter', u'weekend']
[u'accus', u'creat', u'timor', u'elect', u'tension']
[u'adelaid', u'train', u'driver', u'find', u'bodi', u'track']
[u'alonso', u'lead', u'mclaren', u'malaysia']
[u'youth', u'kill', u'london']
[u'applebi', u'face', u'master', u'duel', u'tiger']
[u'applebi', u'lead', u'wood', u'falter', u'late']
[u'applebi', u'stumbl', u'late', u'hold', u'lead']
[u'applebi', u'take', u'master', u'lead']
[u'armi', u'truck', u'explod', u'sudan', u'casualti', u'armi']
[u'aussi', u'prepar', u'pietersen', u'charg']
[u'australia', u'hop', u'watson', u'lanka', u'clash']
[u'aust', u'troop', u'easter', u'return']
[u'bomber']
[u'bomber', u'lead', u'half', u'time']
[u'bomb', u'kill', u'iraqi', u'town', u'build', u'destroy']
[u'brisban', u'face', u'murder', u'charg', u'fight']
[u'britain', u'host', u'friend']
[u'british', u'sailor', u'sell', u'stori', u'iranian', u'detain']
[u'brumbi', u'humbl', u'waratah']
[u'candid', u'prepar', u'timor', u'elect']
[u'cannon', u'clear', u'injuri']
[u'cannon', u'follow', u'sicken', u'blow']
[u'closer', u'nodisplay']
[u'closer']
[u'crow', u'bounc', u'beat', u'bulldog']
[u'cruis', u'captain', u'charg', u'neglig', u'report']
[u'cuba', u'slam', u'releas', u'convict', u'bomb']
[u'dog', u'trail', u'crow', u'home']
[u'doubt', u'linger', u'injur', u'hall']
[u'dravid', u'retain', u'captain']
[u'duke', u'nail', u'boro']
[u'easter', u'road', u'toll', u'climb']
[u'timor', u'polic', u'arrest', u'peopl']
[u'famili', u'meet', u'icrc', u'iranian', u'detaine', u'iraq']
[u'father', u'humili', u'lavish', u'hurley', u'wed']
[u'fergi', u'brace', u'final', u'battl']
[u'fight', u'continu', u'south', u'baghdad']
[u'fiji', u'win', u'adelaid']
[u'fish', u'complet', u'amazon', u'river', u'swim']
[u'fretilin', u'accus', u'elect', u'intimid']
[u'fretilin', u'deni', u'make', u'violent', u'threat']
[u'global', u'warm', u'good', u'tasmania']
[u'govt', u'deni', u'plan', u'soften', u'law']
[u'govt', u'fob', u'climat', u'chang', u'report']
[u'grant', u'guid', u'stormer', u'lion']
[u'green', u'group', u'frustrat', u'report', u'respons']
[u'gunman', u'kill', u'south', u'philippin']
[u'hilali', u'sack', u'claim', u'gross', u'exagger']
[u'hilali', u'rudd', u'say']
[u'howard', u'wont', u'chang', u'workchoic', u'law', u'rudd', u'say']
[u'illeg', u'immigr', u'protest', u'plan', u'law']
[u'india', u'test', u'long', u'rang', u'ballist', u'missil']
[u'indigen', u'graduat', u'featur', u'educ']
[u'inter', u'titl', u'drive', u'slow', u'lowli', u'reggina']
[u'investig', u'begin', u'melbourn', u'hous']
[u'iran', u'bar', u'iraqi', u'fli', u'space']
[u'iran', u'diplomat', u'accus', u'tortur']
[u'learner', u'driver', u'clock', u'zone']
[u'kill', u'york', u'peninsula', u'accid']
[u'plan', u'water', u'workchoic', u'govt', u'say']
[u'announc', u'record', u'smoke', u'drop']
[u'govt', u'prais', u'volunt', u'effort']
[u'outclass', u'barca', u'slip', u'defeat']
[u'owner', u'sink', u'greek', u'cruis', u'ship', u'sue']
[u'pakistan', u'clash', u'leav', u'dead']
[u'palestinian', u'wound', u'stab', u'isra', u'polic']
[u'parent', u'warn', u'alic', u'spring', u'abduct']
[u'perth', u'die']
[u'perth', u'pedestrian', u'fatal', u'deliber']
[u'pirat', u'free', u'indian', u'ship', u'seiz', u'somalia']
[u'polic', u'continu', u'investig', u'hous', u'fire']
[u'polic', u'frustrat', u'drink', u'driver', u'continu']
[u'polic', u'search', u'alic', u'spring', u'assault', u'culprit']
[u'polic', u'search', u'driver']
[u'polic', u'widen', u'search', u'miss', u'barunga']
[u'pope', u'hold', u'easter', u'vigil']
[u'pope', u'lament', u'iraq', u'slaughter']
[u'pope', u'presid', u'easter', u'vigil', u'rome']
[u'pope', u'say', u'love', u'trump', u'evil', u'death']
[u'power', u'hold', u'slender', u'lead', u'kangaroo']
[u'power', u'strong', u'gutsi', u'kangaroo']
[u'presidenti', u'candid', u'prepar', u'timor']
[u'protea', u'slip', u'shock', u'defeat']
[u'protea', u'slump', u'embarrass', u'defeat']
[u'protest', u'forc', u'closur']
[u'boost', u'water', u'rebat', u'staff']
[u'rain', u'fail', u'dampen', u'easter', u'crowd']
[u'red', u'attitud', u'need', u'overhaul', u'jone']
[u'retail', u'spend', u'remain', u'strong', u'canberra']
[u'roo', u'look', u'port']
[u'rudd', u'deni', u'fake', u'anzac', u'servic', u'claim']
[u'rusedski', u'announc', u'retir']
[u'scientist', u'criticis', u'govt', u'macquari']
[u'eagl', u'come', u'warrior']
[u'sectarian', u'clash', u'kill', u'northern', u'pakistan']
[u'seven', u'defend', u'rudd', u'anzac', u'servic', u'claim']
[u'softwar', u'billionair', u'fifth', u'space', u'tourist']
[u'soldier', u'return', u'afghanistan', u'reconstruct']
[u'solomon', u'quak', u'lift', u'island']
[u'specul', u'hilali', u'sack', u'refut']
[u'sink', u'greek', u'cruis', u'ship', u'skipper', u'offic', u'charg']
[u'suprem', u'court', u'lenient', u'statist']
[u'suspici', u'blaze', u'destroy', u'repco', u'warehous']
[u'sweden', u'germani', u'reach', u'davi', u'semi']
[u'sydney', u'charg', u'attack']
[u'sydney', u'charg', u'murder']
[u'take', u'steal', u'taxi', u'driver', u'rescu']
[u'taliban', u'kill', u'afghan', u'hostag']
[u'remand', u'london', u'bomb', u'case']
[u'titan', u'scrape', u'home', u'panther']
[u'toddler', u'kill', u'hous']
[u'qaeda', u'milit', u'seiz', u'baghdad']
[u'troop', u'return', u'townsvill', u'afghanistan']
[u'ultralight', u'crash', u'probe', u'continu']
[u'unit', u'defeat', u'leav', u'chelsea', u'pursuit']
[u'deleg', u'arriv', u'north', u'korea']
[u'deleg', u'head', u'north', u'korea']
[u'diplomat', u'head', u'somalia', u'urg', u'truce']
[u'flight', u'cancel', u'pilot', u'foul', u'languag']
[u'softwar', u'mogul', u'blast', u'space']
[u'death', u'push', u'road', u'toll']
[u'death', u'road', u'toll']
[u'motorist', u'seek', u'help', u'strike', u'pedestrian']
[u'warn', u'issu', u'gold', u'sunshin', u'coast', u'surf']
[u'warrior', u'ahead', u'break']
[u'weve', u'histori', u'say', u'bangladesh', u'skipper']
[u'woman', u'charg', u'alic', u'spring', u'stab', u'murder']
[u'world', u'power', u'meet', u'iraq', u'neighbour']
[u'dead', u'miss', u'drive', u'bridg']
[u'govt', u'quiz', u'mountain', u'bike', u'event', u'spend']
[u'age', u'break', u'hill', u'obvious', u'school', u'enrol']
[u'allen', u'win', u'stawel', u'gift']
[u'american', u'johnson', u'claim', u'master']
[u'american', u'valu']
[u'andrew', u'blame', u'compo', u'delay', u'lawyer']
[u'anger', u'british', u'sailor', u'allow', u'sell']
[u'anniversari', u'fuel', u'anti', u'protest']
[u'arsenal', u'seek', u'grind', u'spot']
[u'associ', u'call', u'water', u'map', u'project', u'fund']
[u'australia', u'crush', u'england']
[u'australia', u'control', u'chase']
[u'australia', u'return', u'rank']
[u'troop', u'provid', u'solomon', u'island']
[u'backyard', u'bird', u'lover', u'kill', u'wildlif', u'kind']
[u'beach', u'close', u'croc', u'irukanji', u'spot']
[u'crowd', u'flock', u'oakbank', u'race']
[u'bishop', u'pleas', u'attend', u'easter', u'weekend']
[u'blaze', u'sweep', u'carpet', u'factori']
[u'bodi', u'recov', u'feder', u'peak', u'fall']
[u'tri', u'retriev', u'kitten']
[u'bride', u'green', u'wed']
[u'british', u'captiv', u'media', u'fee', u'spark', u'anger']
[u'budget', u'fund', u'alloc', u'highway', u'futur']
[u'canadian', u'soldier', u'kill', u'afghanistan']
[u'canberra', u'galleri', u'look', u'nolan', u'kelli', u'work']
[u'bomb', u'kill', u'iraq']
[u'crash', u'victim', u'defenc', u'forc', u'polic']
[u'central', u'driver', u'behav', u'easter', u'break']
[u'champagn', u'produc', u'warn', u'climat', u'chang', u'impact']
[u'clay', u'target', u'shooter', u'result']
[u'closer']
[u'closer']
[u'coke', u'find', u'jesus', u'movi', u'scene', u'hard', u'swallow']
[u'cornelia', u'launch', u'legal', u'fight', u'compo']
[u'council', u'cowboy', u'sponsor']
[u'receiv', u'fund', u'emerg', u'drought', u'grant']
[u'damag', u'plane', u'make', u'safe', u'land', u'perth']
[u'danger', u'surf', u'close', u'sydney', u'beach']
[u'diver', u'bodi', u'wateri', u'crash']
[u'diver', u'strike', u'propel', u'moreton', u'island']
[u'docker', u'lose', u'peak', u'injuri']
[u'downer', u'say', u'hilali', u'replac']
[u'driver', u'accus', u'near', u'time']
[u'driver', u'accus', u'zone']
[u'driver', u'admit', u'medina', u'polic']
[u'driver', u'warn', u'expect', u'long', u'delay', u'pacif']
[u'earlier', u'wine', u'festiv', u'start', u'attract', u'easter', u'crowd']
[u'easter', u'road', u'toll', u'hit']
[u'easter', u'road', u'toll', u'reach']
[u'econom', u'chang', u'deliv', u'human', u'dividend']
[u'enterpris', u'centr', u'provid', u'skill', u'develop']
[u'epirb', u'signal', u'trigger', u'continu', u'search']
[u'timor', u'elect', u'peac']
[u'timor', u'poll', u'peac']
[u'timor', u'poll', u'peac']
[u'famili', u'appeal', u'help', u'fatal', u'hous']
[u'farmer', u'encourag', u'attend', u'organ', u'info', u'session']
[u'farm', u'tourism', u'industri', u'consid', u'effect']
[u'fatal', u'hous', u'suspici', u'polic']
[u'feder', u'grant', u'help', u'local', u'cope', u'drought']
[u'financi', u'bonus', u'aim', u'retain', u'soldier']
[u'firm', u'get', u'green', u'light', u'develop', u'rainforest', u'base']
[u'injur', u'toowoomba', u'road', u'accid']
[u'injur', u'crash']
[u'woman', u'recov', u'hospit']
[u'arrest', u'stab', u'griffith', u'brawl']
[u'project', u'communiti', u'hand', u'role']
[u'erad', u'scheme', u'boost', u'rank']
[u'free', u'femal', u'sailor', u'fear', u'death']
[u'fretilin', u'confid', u'outright', u'major', u'timor']
[u'girl', u'critic', u'take', u'antidepress']
[u'gold', u'coast', u'face', u'drink', u'drive', u'offic']
[u'golovin', u'claim', u'career', u'titl']
[u'goosen', u'move', u'master', u'lead']
[u'govt', u'fund', u'extend', u'road', u'black', u'spot']
[u'govt', u'green', u'light', u'hide', u'valley', u'fund', u'boost']
[u'govt', u'pressur', u'decis', u'wheat', u'export']
[u'govt', u'urg', u'quick', u'wheat', u'export']
[u'gumboot', u'doco', u'screen', u'intern', u'festiv']
[u'haradasun', u'win', u'doncast']
[u'hawk', u'demon']
[u'holiday', u'maker', u'warn', u'care', u'road']
[u'howard', u'lack', u'long', u'term', u'econom', u'plan']
[u'immigr', u'dept', u'improv', u'andrew', u'say']
[u'indian', u'studi', u'reveal', u'widespread', u'child', u'abus']
[u'indonesia', u'press', u'turnbul', u'regul', u'timber']
[u'interview', u'ricki', u'pont', u'shaun', u'tait']
[u'investig', u'probe', u'dead', u'break', u'hill', u'blaze']
[u'iran', u'show', u'footag', u'british', u'captiv', u'relax']
[u'johnson', u'lead', u'applebi', u'drop']
[u'johnson', u'verg', u'master']
[u'kidnap', u'journalist', u'murder']
[u'kidwel', u'season']
[u'mackay', u'emerg', u'servic', u'build', u'criticis']
[u'arrest', u'mcdonald', u'robberi']
[u'charg', u'strathpin', u'robberi']
[u'die', u'underground', u'mine', u'accid']
[u'lose', u'assault']
[u'face', u'court', u'accus', u'supermarket', u'knife']
[u'marin', u'sanctuari', u'zone', u'protect', u'reserv']
[u'mcewen', u'reject', u'pulp', u'develop', u'claim']
[u'mcginti', u'deliv', u'support', u'fewer', u'caesarean']
[u'media', u'sensate']
[u'mount', u'charg', u'attempt', u'murder']
[u'nation', u'easter', u'road', u'toll', u'rise']
[u'nationalist', u'elect', u'lead', u'tokyo']
[u'nation', u'road', u'toll', u'rise']
[u'nato', u'soldier', u'afghan', u'blast']
[u'gaug', u'winter', u'twilight', u'market']
[u'nelson', u'confid', u'cultana', u'problem', u'settl']
[u'newcastl', u'shed', u'industri', u'imag', u'host', u'tourism']
[u'ferri', u'servic', u'prove', u'popular']
[u'fatal', u'plenti', u'ticket']
[u'wont', u'underestim', u'ireland', u'bracewel']
[u'offici', u'campaign', u'open', u'franc', u'presidenti']
[u'kill', u'blast', u'indian', u'fli', u'restiv']
[u'person', u'injur', u'crash']
[u'week', u'leav', u'shop', u'centr', u'propos']
[u'panic', u'fear', u'halt', u'tsunami', u'warn', u'tower', u'test']
[u'peac', u'start', u'timor', u'elect']
[u'petersen', u'rue', u'rotten', u'time']
[u'pharmaci', u'thief', u'target', u'blood', u'thin', u'agent']
[u'philippin', u'elect', u'violenc', u'rise']
[u'plane', u'land', u'gear', u'troubl', u'circl', u'perth']
[u'polic', u'alleg', u'teen', u'threaten', u'attend']
[u'polic', u'charg', u'lake', u'cowal', u'protest']
[u'polic', u'disappoint', u'drink', u'drive', u'rise']
[u'polic', u'investig', u'babi', u'death']
[u'polic', u'investig', u'caus', u'crash']
[u'polic', u'lament', u'long', u'weekend', u'drink', u'drive']
[u'polic', u'arrest', u'fatal', u'alic', u'stab']
[u'polic', u'probe', u'suspici', u'kindergarten', u'blaze']
[u'polic', u'renew', u'appeal', u'driver']
[u'polic', u'brisban', u'robberi', u'link']
[u'polic', u'hope', u'miss', u'day']
[u'polic', u'warn', u'person', u'breathalys']
[u'polic', u'worri', u'road', u'toll', u'reach']
[u'poll', u'booth', u'queue', u'grow', u'timor']
[u'poll', u'open', u'east', u'timor']
[u'pope', u'lament', u'kill', u'iraq']
[u'pope', u'easter']
[u'pope', u'plead', u'world', u'peac']
[u'power', u'break', u'aussi', u'champ', u'duck']
[u'princ', u'highway', u'includ', u'black', u'spot', u'extra']
[u'prison', u'cost', u'pension']
[u'ramo', u'horta', u'prepar', u'result', u'poll', u'close']
[u'rann', u'upbeat', u'nation', u'water', u'plan']
[u'launch', u'legal', u'fight', u'compo']
[u'seek', u'compens']
[u'real', u'close', u'leader']
[u'rebel', u'kill', u'thailand', u'restiv', u'south']
[u'cross', u'call', u'blood', u'donor']
[u'cross', u'concern', u'lankan', u'civilian']
[u'refurbish', u'observatori', u'take', u'visitor']
[u'report', u'predict', u'fall', u'global', u'music', u'sale']
[u'road', u'see', u'high', u'traffic', u'flow', u'speed', u'easter']
[u'roo', u'injur', u'hall']
[u'rspca', u'issu', u'chocol', u'warn']
[u'russia', u'face', u'germani', u'davi']
[u'sabbatini', u'wood', u'applebi', u'lurk']
[u'govt', u'water', u'request']
[u'satellit', u'technolog', u'larri', u'plantat', u'damag']
[u'scientist', u'posit', u'carbon', u'storag', u'site']
[u'scientist', u'reach', u'mileston', u'catalogu', u'world']
[u'search', u'continu', u'pair', u'miss', u'greek', u'water']
[u'search', u'find', u'bodi', u'miss']
[u'secur', u'intensifi', u'east', u'timor', u'elect']
[u'secur', u'scale', u'timor', u'elect']
[u'secur', u'tight', u'east', u'timor', u'poll']
[u'senat', u'committe', u'hear', u'aust', u'appl', u'grower']
[u'seven', u'charg', u'port', u'macquari', u'break', u'offenc']
[u'shark', u'demolish', u'struggl', u'dragon']
[u'shark', u'lead', u'dragon', u'half', u'time']
[u'shot', u'fire', u'darl', u'harbour']
[u'smokey', u'dawson', u'donat', u'guitar', u'hall', u'fame']
[u'sober', u'back', u'lara']
[u'solomon', u'island', u'feel', u'health', u'impact', u'quak']
[u'solomon', u'rocca', u'escap', u'charg']
[u'specul', u'castro', u'return', u'elder', u'statesman']
[u'spend', u'blame', u'rat']
[u'helen', u'resid', u'want', u'water', u'safeti', u'probe']
[u'swan', u'miss', u'hall', u'lethal', u'wont']
[u'swan', u'miss', u'hall', u'matthew', u'wont']
[u'tait', u'improv', u'excit', u'pont']
[u'tamworth', u'region', u'fatal', u'free', u'easter', u'weekend']
[u'polic', u'unhappi', u'drink', u'drive', u'number']
[u'taxi', u'driver', u'recommend', u'braveri', u'award']
[u'tear', u'flow', u'plane', u'fli']
[u'teen', u'motorcyclist', u'die', u'gold', u'coast', u'hospit']
[u'teen', u'stab', u'blacktown']
[u'thousand', u'flock', u'chines', u'perform']
[u'thousand', u'join', u'anti', u'march', u'iraq']
[u'great', u'ocean', u'road', u'council', u'fund', u'boost']
[u'peak', u'leader', u'arriv', u'hobart', u'tomorrow']
[u'school', u'vandalis', u'easter', u'weekend']
[u'toowoomba', u'profit', u'group', u'benefit']
[u'tourism', u'minist', u'say', u'boat', u'festiv', u'continu']
[u'travel', u'urg', u'unnecessari', u'risk']
[u'tresco', u'hammer', u'doubl', u'centuri']
[u'arrest', u'alic', u'spring', u'break']
[u'charg', u'blacktown', u'stab']
[u'univers', u'shrink', u'observatori']
[u'vaughan', u'insist', u'australia', u'beatabl']
[u'vehicl', u'order', u'baghdad']
[u'death', u'bring', u'easter', u'road', u'toll']
[u'violenc', u'control', u'timor', u'elect']
[u'govt', u'urg', u'releas', u'land', u'hous']
[u'wesfarm', u'woo', u'major', u'cole', u'stake']
[u'wide', u'water', u'plan', u'sewag', u'recycl']
[u'woman', u'fli', u'hospit', u'hang', u'glide', u'fall']
[u'world', u'podcast', u'australia', u'england']
[u'youth', u'head', u'uluru', u'reconcili', u'gather']
[u'zimbabw', u'bishop', u'pressur', u'govt', u'democrat']
[u'escap', u'indonesian', u'jail']
[u'bounti', u'wild', u'dog']
[u'acma', u'link', u'alan', u'jone', u'cronulla', u'violenc']
[u'introduc', u'alert', u'truant', u'parent']
[u'watch', u'hous', u'review', u'delay']
[u'afghanistan', u'troop', u'boost', u'necessari', u'rudd', u'say']
[u'meet', u'club', u'deal']
[u'group', u'struggl', u'heal', u'ghizo', u'devast']
[u'say', u'nation', u'offer', u'bribe']
[u'amateur', u'radio', u'oper', u'aid', u'water', u'polic', u'rescu']
[u'analys', u'mozzi', u'help', u'prevent', u'blue', u'tongu']
[u'andrew', u'john', u'retir', u'press', u'confer']
[u'anim', u'drug', u'maker', u'offer', u'financi', u'lifelin']
[u'annual', u'yearl', u'sale', u'start', u'sydney']
[u'anti', u'group', u'say', u'bligh', u'senat', u'submiss', u'lack']
[u'predict', u'continu', u'tight', u'market']
[u'appl', u'grower', u'continu', u'fireblight', u'concern']
[u'arm', u'robber', u'staff', u'member', u'wallet']
[u'arrog', u'anger', u'bendigo', u'bank', u'director']
[u'aust', u'dollar', u'hit', u'highest', u'point']
[u'australia', u'boost', u'solomon', u'tsunami']
[u'australia', u'need', u'tune', u'mufti']
[u'aust', u'scrabbl', u'champ', u'use', u'word', u'wise']
[u'aust', u'wine', u'export']
[u'banana', u'paper', u'maker', u'move', u'mitsubishi']
[u'barunga', u'rang', u'wind', u'farm', u'construct', u'begin']
[u'bendigo', u'easter', u'festiv', u'success']
[u'berri', u'barmera', u'town', u'entranc', u'facelift']
[u'fish', u'snare', u'barra', u'battl']
[u'bike', u'rider', u'bodi', u'near', u'blower']
[u'bock', u'avail', u'showdown']
[u'bowen', u'deserv', u'kangaroo', u'spot', u'cowboy', u'boss']
[u'brack', u'want', u'ambul', u'snub', u'claim', u'investig']
[u'brisban', u'mourner', u'farewel', u'harbour', u'crash', u'skater']
[u'britain', u'ban', u'sailor', u'sell', u'stori']
[u'british', u'sailor', u'ban', u'sell', u'stori']
[u'break', u'hill', u'ymca', u'give', u'grant', u'help', u'drought']
[u'brown', u'say', u'govt', u'stay', u'wielangta', u'case']
[u'busi', u'feel', u'impact', u'water']
[u'busi', u'confid', u'slight']
[u'cabbi', u'rob', u'highgat']
[u'cairn', u'hospit', u'introduc', u'water', u'save', u'measur']
[u'campbel', u'confid', u'crowd', u'support']
[u'candid', u'rule', u'coolgardi', u'elect']
[u'cannon', u'union', u'futur', u'doubt']
[u'captainci', u'get', u'vaughan', u'fletcher']
[u'cfmeu', u'offici', u'court', u'trespass', u'charg']
[u'chemic', u'storag', u'agenda', u'rutherford']
[u'cherri', u'grower', u'meet', u'levi', u'spend']
[u'china', u'angri', u'copyright', u'complaint']
[u'climat', u'chang', u'warn', u'east', u'coast']
[u'closer']
[u'closer', u'tue']
[u'cold', u'area', u'forest', u'worsen', u'global', u'warm']
[u'cole', u'urg', u'sharehold', u'reject', u'wesfarm']
[u'comedian', u'diet', u'laugh', u'matter']
[u'communiti', u'question', u'govt', u'cyclon', u'shelter']
[u'compani', u'seek', u'communiti', u'input', u'wind', u'farm']
[u'council', u'chang', u'approach', u'coal', u'creek']
[u'council', u'concern', u'murrumbateman', u'water']
[u'council', u'road', u'contribut', u'plan', u'public']
[u'council', u'appli', u'grant', u'clean', u'fuel']
[u'defenc', u'say', u'kimmorley']
[u'defenc', u'think', u'tank', u'back', u'afghanistan', u'troop', u'boost']
[u'democrat', u'miss', u'upper', u'hous', u'seat']
[u'demon', u'suffer', u'doubl', u'injuri', u'blow']
[u'driver', u'attitud', u'worri', u'polic']
[u'drought', u'forc', u'farmer', u'drink', u'bore', u'water']
[u'easter', u'road', u'toll', u'reach']
[u'easter', u'weekend', u'driver', u'disappoint', u'polic']
[u'easter', u'weekend', u'record', u'death', u'road']
[u'reject', u'harvest', u'audit']
[u'environ', u'centr', u'confer', u'alic', u'spring']
[u'timor', u'like', u'face', u'second', u'poll']
[u'bendigo', u'bank', u'director', u'warn', u'bank']
[u'feder', u'govern', u'pressur', u'educ', u'reform']
[u'femal', u'suicid', u'bomber', u'kill', u'iraq']
[u'ferri', u'farewel', u'canberra', u'servic']
[u'stage', u'magnet', u'boardwalk', u'open']
[u'forum', u'nativ', u'titl', u'claim']
[u'fremantl', u'face', u'court', u'follow', u'cannabi', u'bust']
[u'fretilin', u'confid', u'timor', u'despit']
[u'freycinet', u'peninsula', u'run', u'water']
[u'futur', u'tank', u'rebat', u'uncertain']
[u'gang', u'target', u'effort', u'curb', u'violenc']
[u'global', u'warm', u'hit', u'indigen', u'peopl', u'hardest']
[u'govern', u'seek', u'comment', u'boggo', u'road', u'plan']
[u'govern', u'stay', u'taxi', u'disput']
[u'govt', u'defend', u'respons', u'pesticid', u'water']
[u'govt', u'extend', u'black', u'spot', u'program']
[u'govt', u'explain', u'superpip', u'conting', u'plan']
[u'govt', u'small', u'busi', u'free', u'advic', u'export']
[u'group', u'tell', u'committe', u'meet', u'minut', u'unavail']
[u'grower', u'celebr', u'white', u'wine', u'qualiti']
[u'hackett', u'lenton', u'lead', u'australia', u'mare', u'nostrum']
[u'hawker', u'resid', u'wait', u'assist']
[u'hilali', u'clarifi', u'iran', u'comment']
[u'hodg', u'sign', u'hawk']
[u'home', u'destroy', u'fatal', u'lack', u'smoke', u'alarm']
[u'hop', u'good', u'turtl', u'breed', u'season', u'paradis']
[u'hors', u'beat', u'sicken', u'attack']
[u'hospit', u'drag', u'opposit']
[u'howard', u'announc', u'afghanistan', u'troop', u'boost']
[u'howard', u'commit', u'troop', u'afghanistan']
[u'skater', u'parent', u'look', u'help']
[u'iemma', u'judgement', u'question', u'gibson', u'decis']
[u'incub', u'help', u'busi', u'grind']
[u'inquest', u'begin', u'teen', u'death', u'sydney', u'hospit']
[u'iran', u'comment', u'increas', u'support', u'sheikh']
[u'iranian', u'nuclear', u'program', u'industri']
[u'japan', u'extend', u'north', u'korea', u'sanction']
[u'john', u'announc', u'delay']
[u'john', u'decis', u'today']
[u'junior', u'wallabi', u'fiji']
[u'king', u'arson', u'author']
[u'consortium', u'announc', u'cole']
[u'librari', u'add', u'ebook', u'collect']
[u'lyon', u'sign', u'year']
[u'mackay', u'student', u'hous', u'criticis']
[u'court', u'bail', u'breach']
[u'charg', u'palmerston', u'stab']
[u'jail', u'robberi', u'victim', u'death']
[u'master', u'championship', u'hail', u'success']
[u'master', u'champ', u'johnson', u'enjoy', u'rank', u'rise']
[u'mayor', u'dismiss', u'lake', u'cowal', u'protest']
[u'minist', u'say', u'govt', u'work', u'park']
[u'miss', u'perth', u'dehydr']
[u'urg', u'albani', u'waterfront', u'opposit']
[u'mont', u'carlo', u'master', u'organis']
[u'moran', u'widow', u'welcom', u'mokbel', u'reward']
[u'troop', u'head', u'afghanistan']
[u'troop', u'afghanistan', u'howard']
[u'mourinho', u'appeal', u'fan', u'best', u'behaviour']
[u'hospit', u'death', u'coroni', u'inquest', u'continu']
[u'face', u'court', u'murder', u'charg']
[u'predict', u'stay', u'rat']
[u'nation', u'park', u'prepar', u'busi', u'tourist', u'season']
[u'nation', u'hope', u'holiday', u'offer', u'attract', u'member']
[u'nativ', u'titl', u'group', u'futur']
[u'nato', u'welcom', u'aust', u'troop', u'boost', u'afghanistan']
[u'neck', u'injuri', u'forc', u'john', u'retir']
[u'anti', u'cannabi', u'campaign', u'launch', u'sydney']
[u'cemeteri', u'mount', u'barker']
[u'leader', u'instal', u'educ', u'depart']
[u'measur', u'hospit', u'save', u'water']
[u'safe', u'drive', u'push', u'easter', u'death']
[u'taxi', u'servic', u'suggest', u'share', u'book']
[u'noosa', u'resid', u'start', u'vote']
[u'till', u'farm', u'trial', u'prove', u'success']
[u'polic', u'motorist', u'get', u'safeti', u'messag']
[u'rubi', u'hold']
[u'launch', u'indigen', u'hous', u'pilot', u'project']
[u'plan', u'cyclon', u'shelter']
[u'numb', u'john', u'announc', u'retir']
[u'offic', u'transfer', u'area', u'need', u'polic']
[u'onion', u'crop', u'tonnag', u'high', u'qualiti', u'grower']
[u'opposit', u'question', u'workplac', u'safeti', u'trial']
[u'organis', u'gladston', u'festiv', u'lucrat']
[u'outback', u'easter', u'success', u'fuel', u'hop', u'bumper']
[u'pair', u'face', u'court', u'record', u'drug', u'chemic', u'haul']
[u'passeng', u'fatal', u'crash', u'urg', u'come']
[u'commit', u'troop', u'afghanistan']
[u'commit', u'troop', u'afghanistan']
[u'join', u'singl', u'desk', u'debat']
[u'nation', u'reform', u'plan']
[u'polic', u'wit', u'strip', u'club', u'shoot']
[u'polic', u'continu', u'investig', u'hotel', u'hold']
[u'polic', u'offer', u'mokbel', u'arrest']
[u'polic', u'reward', u'life', u'hard', u'mokbel']
[u'polic', u'search', u'year', u'brisban']
[u'polic', u'search', u'miss', u'sydney']
[u'polic', u'sniffer', u'drug', u'bust']
[u'poll', u'show', u'labor', u'boost', u'margin']
[u'power', u'remain', u'compos', u'follow', u'champ']
[u'premier', u'unit', u'nation', u'reform', u'plan']
[u'protea', u'suffer', u'gibb', u'injuri', u'blow']
[u'clark', u'keen', u'bare', u'teeth']
[u'qanta', u'flight', u'forc', u'sydney']
[u'welfar', u'cheat', u'access']
[u'race', u'club', u'remain', u'separ', u'game', u'minist']
[u'rail', u'fund', u'review', u'transport', u'offic', u'say']
[u'rail', u'lobbi', u'group', u'take', u'legal', u'protect', u'step']
[u'ramo', u'horta', u'lead', u'timor', u'poll']
[u'look', u'busi', u'school', u'adopt']
[u'record', u'close', u'cole', u'share', u'amid', u'bid', u'talk']
[u'region', u'place', u'board', u'recommend', u'offici']
[u'resid', u'say', u'lack', u'confid', u'water']
[u'rinker', u'endors', u'mexican', u'takeov']
[u'roadsid', u'crash', u'remind', u'north', u'highway']
[u'rough', u'condit', u'cairn', u'beach', u'close']
[u'compon', u'industri', u'look', u'china', u'futur']
[u'scholarship', u'fraser', u'scientist']
[u'school', u'opposit', u'drug', u'test', u'student']
[u'scientist', u'develop', u'model', u'combat', u'level', u'rise']
[u'search', u'continu', u'gympi', u'woman', u'miss', u'day']
[u'second', u'timor', u'elect', u'expect']
[u'go', u'level', u'water', u'ban']
[u'sheik', u'support', u'defend', u'hilali', u'comment']
[u'smaller', u'nativ', u'titl', u'claim', u'pursu']
[u'solomon', u'homeless', u'wait', u'month', u'shelter']
[u'solomon', u'villag', u'abandon', u'gizo']
[u'lanka', u'unawar', u'moodi', u'plan']
[u'arnaud', u'resid', u'pressur', u'council', u'pool']
[u'state', u'propos', u'multi', u'billion', u'dollar', u'product']
[u'state', u'urg', u'govt', u'nation', u'reform']
[u'state', u'urg', u'govt', u'nation', u'reform', u'plan']
[u'studi', u'find', u'resist', u'train', u'help', u'heart']
[u'support', u'defend', u'mufti', u'iran', u'comment']
[u'survey', u'reveal', u'grow', u'obes', u'problem']
[u'suspect', u'bali', u'bomb', u'mastermind', u'escap']
[u'takeov', u'sign', u'push', u'market', u'record', u'high']
[u'teenag', u'assault', u'canberra']
[u'thai', u'hospit', u'amid', u'resign', u'rumour']
[u'thiev', u'steal', u'door', u'jewelleri']
[u'charg', u'farm', u'hous', u'burglari']
[u'timber', u'import', u'govt']
[u'titan', u'lose', u'petersen', u'bronco', u'clash']
[u'iraqi', u'advis', u'urg', u'turn']
[u'tougher', u'water', u'restrict', u'august']
[u'dead', u'moroccan', u'anti', u'terrorist', u'raid']
[u'uncertain', u'futur', u'brisban', u'tank', u'rebat']
[u'uranium', u'price', u'jump', u'mine', u'flood']
[u'expert', u'reject', u'iran', u'nuke', u'claim']
[u'korea', u'trade', u'deal', u'worri', u'beef', u'produc']
[u'space', u'tourist', u'world']
[u'gather', u'bushfir', u'feedback']
[u'vic', u'easter', u'road', u'toll', u'revis']
[u'wellington', u'weir', u'construct', u'start', u'june']
[u'wesfarm', u'pledg', u'cole', u'aust']
[u'arent', u'safer', u'nuclear', u'power', u'option', u'explor']
[u'widow', u'tell', u'climber', u'ambit', u'scale', u'peak']
[u'wit', u'seek', u'yokin', u'bash']
[u'world', u'increas', u'pressur', u'iran', u'ceas']
[u'young', u'lion', u'collect', u'rise', u'star', u'nomin']
[u'abattoir', u'reopen', u'delay']
[u'concern', u'nation', u'test', u'regim']
[u'advoc', u'urg', u'govern', u'address', u'homeless']
[u'afford', u'hous', u'site', u'sell']
[u'microscop']
[u'amphetamin', u'driver', u'want', u'warn', u'youth', u'danger']
[u'asthma', u'suffer', u'urg', u'precaut']
[u'kill', u'algier', u'bomb']
[u'detail', u'reason', u'chang']
[u'aust', u'timor', u'relat', u'suffer', u'fretilin']
[u'aust', u'join', u'complaint', u'chines', u'piraci']
[u'head', u'cabinet', u'agenda']
[u'barcaldin', u'enthusiast', u'bottl', u'histori']
[u'beatti', u'strand', u'cooktown', u'troubl']
[u'bell', u'demand', u'england', u'rediscov', u'spirit', u'australia']
[u'bendigo', u'bank', u'merger', u'make', u'communiti', u'nervous']
[u'benitez', u'warn', u'complac', u'liverpool']
[u'enabl', u'pulp', u'leav', u'unconvinc']
[u'birkhead', u'name', u'father', u'anna', u'nicol', u'babi']
[u'bishop', u'fear', u'prolifer', u'nuclear', u'weapon']
[u'bomb', u'fear', u'trigger', u'thailand', u'travel', u'warn']
[u'boy', u'bring', u'home', u'wwii', u'mortar']
[u'british', u'woman', u'lose', u'fight', u'freez', u'embryo']
[u'busi', u'group', u'back', u'remov']
[u'better', u'lead', u'effect', u'inform']
[u'call', u'lake', u'bonney', u'test', u'renew']
[u'caus', u'fatal', u'karrinyup', u'blaze', u'remain', u'unknown']
[u'cessna', u'ditch', u'melbourn']
[u'chariti', u'pledg', u'hospit', u'cancer', u'project']
[u'child', u'safeti', u'case', u'drop', u'problem', u'remain']
[u'chines', u'japanes', u'leader', u'begin', u'summit', u'talk']
[u'citigroup', u'trade', u'patrick', u'share', u'permiss']
[u'clean', u'coal', u'invest', u'need', u'billiton']
[u'closer']
[u'compani', u'aim', u'tackl', u'state', u'doctor', u'shortag']
[u'compani', u'commit', u'give', u'safework', u'report']
[u'conflict', u'timor', u'poll', u'leader']
[u'connolli', u'target', u'eagl', u'midfield', u'derbi', u'clash']
[u'cooma', u'water', u'restrict', u'relax']
[u'coonan', u'want', u'prompt', u'review', u'commerci', u'radio']
[u'council', u'approv', u'memori', u'plaqu', u'andrew']
[u'council', u'consid', u'extra', u'servic', u'charg']
[u'council', u'criticis', u'govt', u'inact', u'flood']
[u'council', u'defer', u'vote', u'curfew', u'propos']
[u'council', u'consid', u'rais', u'yass']
[u'council', u'plan', u'futur', u'namoi', u'valley']
[u'council', u'write', u'ambassador', u'voic', u'whale']
[u'counsel', u'servic', u'say', u'farmer', u'face', u'rise']
[u'court', u'convict', u'serb', u'bosnian', u'murder']
[u'darwin', u'urg', u'council', u'emiss']
[u'debat', u'seek', u'child', u'smack', u'law']
[u'democrat', u'leader', u'refus', u'bush', u'invit']
[u'depart', u'launch', u'blue', u'green', u'alga', u'investig']
[u'desalin', u'plant', u'need', u'futur', u'seeney']
[u'develop', u'problem', u'gungahlin']
[u'disput', u'timor', u'poll', u'leader']
[u'doctor', u'tire', u'handl', u'teen', u'patient']
[u'decid', u'beaconsfield', u'charg']
[u'drink', u'issu', u'forc', u'trade', u'cut']
[u'driver', u'kill', u'crash', u'power', u'pole']
[u'driver', u'safeti', u'prioriti', u'truck', u'confer']
[u'drought', u'keep', u'rural', u'kid', u'away']
[u'ead', u'confid', u'bulldog', u'lift']
[u'east', u'timor', u'face', u'elect']
[u'educ', u'offici', u'school']
[u'england', u'fin', u'slow', u'rate', u'australia']
[u'trade', u'ask', u'sharehold', u'reject', u'offer']
[u'worker', u'chang', u'tack', u'compo', u'case']
[u'worker', u'continu', u'fight']
[u'famili', u'overwhelm', u'generos']
[u'fan', u'seek', u'florida', u'pardon', u'door', u'morrison']
[u'feder', u'chang', u'remov', u'flexibl', u'school']
[u'feder', u'govt', u'announc', u'road']
[u'compo', u'hold', u'western', u'power', u'finish', u'report']
[u'destroy', u'disabl', u'student', u'equip']
[u'flegg', u'like', u'oppos', u'stem', u'cell', u'law']
[u'fleme', u'laud', u'black', u'cap', u'prepar']
[u'forc', u'structur', u'learn', u'good']
[u'foreign', u'visa', u'talk', u'continu']
[u'forget', u'water', u'concentr', u'health', u'doctor']
[u'worker', u'drop', u'class', u'action']
[u'minist', u'reluct', u'hospit', u'pay']
[u'suspect', u'bomber', u'kill', u'casablanca']
[u'fretilin', u'accus', u'fraud', u'east', u'timor', u'poll']
[u'fretilin', u'take', u'lead', u'timor', u'poll']
[u'funer', u'sydney', u'ferri', u'crash', u'victim']
[u'googl', u'museum', u'launch', u'darfur', u'awar', u'project']
[u'govt', u'tender', u'broom', u'prison', u'upgrad']
[u'grazier', u'angri', u'vicroad', u'graze', u'backflip']
[u'grow', u'countri', u'contribut', u'dwindl', u'resourc']
[u'payment', u'method', u'effect', u'commit', u'level']
[u'harvey', u'norman', u'interest', u'buy', u'officework']
[u'harvey', u'norman', u'record', u'sale', u'growth']
[u'look', u'solut', u'afford', u'crisi']
[u'high', u'school', u'select', u'prepar', u'victor', u'chang']
[u'hop', u'alic', u'crime', u'forum', u'deliv', u'secur']
[u'howard', u'say', u'climat', u'chang', u'coag', u'agenda']
[u'howard', u'say', u'jone', u'voic', u'australian', u'view']
[u'iluka', u'resourc', u'meet', u'protest']
[u'industri', u'group', u'push', u'road', u'upgrad', u'visi']
[u'report', u'australia', u'econom']
[u'iran', u'show', u'pictur', u'tortur', u'diplomat']
[u'johnni', u'cash', u'hous', u'burn']
[u'joint', u'ventur', u'agreement', u'formalis', u'beij']
[u'joyc', u'hope', u'stay', u'wheat', u'export']
[u'kalgoorli', u'direct', u'flight', u'studi', u'result', u'soon']
[u'kalgoorli', u'polic', u'slam', u'violent', u'revel']
[u'katter', u'push', u'cheap', u'region', u'flight']
[u'kemp', u'sign', u'victori']
[u'knobel', u'miss', u'month']
[u'kuku', u'yalanji', u'peopl', u'grant', u'nativ', u'titl']
[u'labor', u'member', u'leav', u'indigen', u'women', u'strand']
[u'legisl', u'chang', u'boost', u'rural', u'medicin']
[u'livestock', u'owner', u'warn', u'diseas', u'concern']
[u'local', u'govt', u'forum', u'focus', u'climat', u'chang']
[u'lorikeet', u'raid', u'appl', u'crop', u'food', u'shortag']
[u'rocket', u'launcher', u'charg', u'refus', u'bail']
[u'seek', u'citi', u'attack']
[u'maradona', u'releas', u'hospit']
[u'marin', u'rescu', u'volunt', u'lobbi', u'boat']
[u'market', u'close', u'flat', u'mix', u'result']
[u'martin', u'say', u'truanci', u'rat', u'educ', u'plan']
[u'media', u'watchdog', u'refus', u'hasten', u'radio', u'industri']
[u'melbourn', u'phoenix', u'angri', u'netbal', u'final']
[u'member', u'push', u'boat', u'ramp', u'help', u'curb', u'poach']
[u'meninde', u'teacher', u'win', u'shakespear', u'scholarship']
[u'threaten', u'captiv', u'violenc', u'court', u'tell']
[u'minist', u'put', u'brake', u'high', u'speed', u'test']
[u'minist', u'urg', u'educ', u'dept', u'save']
[u'mix', u'reaction', u'second', u'shop', u'centr', u'propos']
[u'mobil', u'polic', u'station', u'start', u'work', u'katherin']
[u'money', u'help', u'elder', u'drought']
[u'call', u'uniform', u'water', u'trade']
[u'mullen', u'readi', u'joey', u'shoe']
[u'nasa', u'delay', u'shuttl', u'launch', u'tank']
[u'nation', u'archiv', u'finish', u'gallipoli', u'project']
[u'nation', u'rethink', u'need', u'solv', u'ship', u'delay']
[u'nepal', u'maoist', u'seek', u'polit', u'parti', u'status']
[u'erupt', u'cabinet']
[u'clash', u'shatter', u'somalia', u'ceas']
[u'rice', u'sow', u'technolog', u'help', u'save', u'water']
[u'school', u'boss', u'defend', u'crimin', u'past']
[u'newsread', u'creas', u'succumb', u'cancer']
[u'korea', u'shut', u'nuclear', u'reactor', u'week']
[u'north', u'coast', u'face', u'tougher', u'water', u'restrict']
[u'nation', u'pleas', u'cabinet', u'reshuffl']
[u'odonnel', u'season']
[u'ofarrel', u'appoint', u'frontbench']
[u'critic', u'injur', u'midland', u'highway', u'crash']
[u'pagan', u'prim', u'essendon', u'clash']
[u'perform', u'plan', u'teacher', u'divis']
[u'urg', u'focus', u'public', u'educ']
[u'polic', u'confid', u'handl', u'elect', u'secur']
[u'polic', u'charg', u'alic', u'stab']
[u'polic', u'investig', u'alleg', u'teen', u'rape']
[u'polic', u'investig', u'stab']
[u'polic', u'investig', u'tourist', u'harass']
[u'polic', u'releas', u'monaro', u'highway', u'deceas']
[u'polic', u'target', u'privat', u'school', u'marijuana']
[u'polic', u'interview', u'schoolboy', u'cannabi']
[u'polic', u'warn', u'resid', u'mailbox', u'explos']
[u'power', u'suppli', u'world', u'level', u'shire', u'presid']
[u'pratt', u'bow', u'south', u'carolina']
[u'protect', u'poor', u'water', u'price', u'hike', u'opposit']
[u'public', u'support', u'need', u'save', u'barrier', u'reef', u'tourist']
[u'govt', u'reject', u'critic', u'port', u'delay']
[u'quantiti', u'qualiti', u'wine', u'associ']
[u'rain', u'help', u'hunter', u'farmer', u'winter']
[u'rapper', u'snoop', u'dogg', u'face', u'drug', u'charg']
[u'rat', u'agenc', u'issu', u'econom', u'warn', u'brisban']
[u'reloc', u'civic', u'centr', u'open', u'monday']
[u'rena', u'ladi', u'win', u'australian', u'oak']
[u'repair', u'leav', u'afghanistan', u'troop']
[u'research', u'grow', u'inner', u'cell', u'adult', u'patient']
[u'resid', u'fight', u'save', u'sound', u'barrier', u'tree']
[u'resid', u'prepar', u'roland']
[u'reward', u'bowravill', u'death', u'increas']
[u'rise', u'salin', u'blame', u'mass', u'death']
[u'roadwork', u'promis', u'reduc', u'environment', u'damag']
[u'roger', u'train', u'neck', u'concern']
[u'rowley', u'shoal', u'manag', u'plan', u'unnecessari', u'tourism']
[u'ballot', u'timor', u'confirm']
[u'russian', u'maestro', u'head', u'sydney', u'symphoni']
[u'mummifi']
[u'liber', u'elect', u'leader']
[u'scaveng', u'scour', u'snowi', u'mountain']
[u'senat', u'rebuff', u'claim', u'govt', u'ignor', u'maritim']
[u'serial', u'burglar', u'face', u'charg']
[u'singl', u'wheat', u'desk', u'issu', u'unresolv']
[u'soccer', u'hooligan', u'skirmish', u'manchest']
[u'solomon', u'villag', u'fear', u'tsunami', u'cross']
[u'fear', u'safeti', u'miss', u'mother']
[u'srebrenica', u'sentenc', u'hand']
[u'stabl', u'weather', u'allow', u'state', u'biggest', u'burn']
[u'state', u'inquiri']
[u'strong', u'export', u'blame', u'port', u'bottleneck', u'howard']
[u'studi', u'offer', u'hope', u'diabet']
[u'suicid', u'bomber', u'hit', u'nato', u'troop', u'afghan', u'south']
[u'summit', u'look', u'dispel', u'african', u'refuge']
[u'summit', u'sign', u'deal', u'french', u'nuclear', u'group']
[u'sutton', u'avoid', u'earli', u'guilti', u'plea']
[u'sydney', u'champion', u'leagu', u'match', u'postpon']
[u'sydney', u'ferri', u'crash', u'victim', u'farewel']
[u'teacher', u'name', u'indigen', u'educ', u'committe', u'chair']
[u'teacher', u'dishonest', u'say', u'howard']
[u'teacher', u'wait', u'breakthrough']
[u'telco', u'tower', u'help', u'coverag']
[u'telstra', u'accus', u'mislead', u'public']
[u'terror', u'suspect', u'kill', u'morocco', u'search']
[u'thailand', u'glimps', u'constitut']
[u'royal', u'easter']
[u'thiev', u'steal', u'sport', u'club', u'water', u'drought', u'bite']
[u'titan', u'assum', u'underdog', u'status']
[u'tougher', u'water', u'restrict', u'introduc']
[u'tourist', u'ban', u'galapago', u'island']
[u'state', u'drug', u'oper', u'work', u'polic']
[u'truss', u'say', u'wheat', u'export', u'overhaul', u'wait']
[u'ukrainian', u'judg', u'accus', u'politician', u'appli']
[u'union', u'battl', u'minist', u'teacher', u'shortag']
[u'union', u'urg', u'focus', u'public', u'educ']
[u'univers', u'alarm', u'nurs', u'enrol', u'drop']
[u'thank', u'aust', u'afghanistan', u'troop']
[u'face', u'water', u'price', u'rise']
[u'terror', u'backfir', u'think', u'tank']
[u'water', u'infrastructur', u'need', u'improv']
[u'water', u'restrict', u'rise', u'stage']
[u'western', u'australia', u'play', u'moodi', u'report']
[u'whitlam', u'order', u'reimburs', u'nrma', u'legal', u'bill']
[u'whitnal', u'bounc', u'pagan', u'sheedi']
[u'william', u'accus', u'policeman', u'steal']
[u'wimmera', u'race', u'club', u'lose', u'race', u'meet']
[u'wind', u'farm', u'debat', u'pick']
[u'windi', u'dont', u'deserv', u'semi', u'spot', u'lara']
[u'wineri', u'find', u'go', u'tough', u'hope', u'remain']
[u'worker', u'scatter', u'produc', u'coil']
[u'thiev', u'leav', u'footpath']
[u'tree', u'resid', u'consult', u'burn']
[u'digger', u'servic', u'detail', u'onlin']
[u'yarra', u'tram', u'push', u'servic', u'prioriti', u'campaign']
[u'abrolho', u'island', u'leas', u'sign', u'postpon']
[u'launch', u'afford', u'hous', u'scheme']
[u'respons', u'player', u'malthous']
[u'albani', u'ring', u'road', u'track', u'complet', u'main', u'road']
[u'algal', u'bloom', u'explain', u'trout', u'death', u'research']
[u'algal', u'boom', u'instal', u'murray']
[u'alleg', u'crimin', u'extradit']
[u'support', u'hour', u'plan']
[u'angler', u'urg', u'temporari', u'fish', u'licenc']
[u'link', u'illeg', u'log']
[u'chang', u'condit', u'qanta', u'takeov']
[u'doubt', u'qanta', u'succeed']
[u'arson', u'suspect', u'tenni', u'club', u'blaze']
[u'aussi', u'face', u'serbia', u'world', u'group', u'play', u'off']
[u'idea', u'sailor', u'sell', u'stori', u'blair']
[u'banana', u'grower', u'weigh', u'levi', u'fight', u'diseas']
[u'bandi', u'creek', u'boat', u'harbour', u'servic', u'final', u'restor']
[u'bankruptci', u'figur', u'spark', u'lend', u'rule']
[u'barrick', u'say', u'elder', u'anti']
[u'base', u'camp', u'young', u'offend', u'finalis']
[u'chief', u'appeal', u'gaza', u'journalist', u'return']
[u'beatti', u'proactiv', u'disast', u'plan']
[u'bilbi', u'lobbi', u'fund', u'rais', u'dessert', u'card']
[u'birrel', u'look', u'aussi', u'fighter', u'johnston']
[u'bishop', u'leav', u'educ', u'boss', u'decis']
[u'blast', u'baghdad', u'green', u'zone', u'kill']
[u'blast', u'baghdad', u'bridg', u'kill']
[u'blast', u'rock', u'iraqi', u'parliament', u'build']
[u'bluescop', u'optimist', u'worker']
[u'blue', u'black', u'away', u'shark']
[u'bodi', u'british', u'soldier', u'kill', u'basra']
[u'brack', u'defend', u'minist', u'transport', u'complaint']
[u'bushfir', u'forc', u'brisban', u'street', u'closur']
[u'cadet', u'attend', u'sandakan', u'dawn', u'servic']
[u'cash', u'boost', u'latrob', u'valley', u'brown', u'coal', u'project']
[u'cattl', u'train', u'affect', u'servic']
[u'celebr', u'mark', u'complet', u'land', u'agreement']
[u'chinchilla', u'water', u'plan', u'ahead', u'feder']
[u'chines', u'premier', u'address', u'japan', u'parliament']
[u'chines', u'premier', u'talk', u'reconcili', u'japan']
[u'cigarett', u'blame', u'blaze', u'histor', u'pier']
[u'citigroup', u'shed', u'global', u'work', u'forc']
[u'closer']
[u'closer']
[u'communiti', u'forum', u'address', u'violenc', u'concern']
[u'compani', u'charg', u'welder', u'death']
[u'compani', u'clear', u'stuart', u'cyanid', u'spill']
[u'complac', u'option', u'bennett']
[u'supplier', u'hold', u'disadvantag', u'student']
[u'concern', u'pipelin', u'plan']
[u'confus', u'council', u'workchoic', u'move']
[u'costello', u'fuel', u'leadership', u'specul']
[u'council', u'odd', u'bribi', u'desalin', u'plant']
[u'council', u'band', u'princ', u'highway', u'upgrad']
[u'council', u'scale', u'railway', u'land', u'develop']
[u'council', u'staff', u'danger', u'protest']
[u'council', u'vow', u'fight', u'clarenc', u'river', u'propos']
[u'court', u'hear', u'wit', u'polic']
[u'cronulla', u'reveng', u'attack', u'driver', u'get', u'month']
[u'darl', u'down', u'youth', u'strain', u'brisban']
[u'darwin', u'jail', u'abduct', u'rape']
[u'della', u'bosca', u'sceptic', u'feder', u'educ', u'plan']
[u'dengu', u'fever', u'case', u'rise', u'townsvill']
[u'desper', u'wineri', u'advertis', u'tabl', u'grape']
[u'develop', u'disappoint', u'council', u'lake', u'backflip']
[u'divis', u'interst', u'pipelin']
[u'doctor', u'fail', u'note', u'teen']
[u'donat', u'help', u'massiv', u'bank', u'loan']
[u'driver', u'convict', u'passeng', u'death']
[u'drought', u'pressur', u'prevent', u'youth', u'access']
[u'drought', u'send', u'lettuc', u'price']
[u'east', u'timor', u'face', u'elect']
[u'educ', u'commiss', u'accus', u'spread']
[u'electr', u'fault', u'suspect', u'sandfir', u'fire']
[u'engin', u'problem', u'forc', u'qantaslink', u'flight', u'land']
[u'enviro', u'friend', u'estat', u'open', u'sydney']
[u'timor', u'elector', u'commiss', u'begin', u'investig']
[u'exchang', u'rate', u'impact', u'seafood', u'export']
[u'extra', u'fund', u'increas', u'bulk', u'bill', u'number']
[u'extra', u'taxi', u'improv', u'disabl', u'transport']
[u'fan', u'elimin', u'bell', u'beach']
[u'fiji', u'coup', u'leader', u'sack', u'council', u'chief']
[u'final', u'day', u'port', u'albert', u'fish', u'chip', u'shop']
[u'fire', u'brisban', u'deliber']
[u'ombudsman', u'review', u'polic', u'pursuit']
[u'bait', u'irrig', u'area']
[u'freak', u'return', u'biggest', u'town']
[u'fresh', u'doubt', u'timor', u'elect', u'process']
[u'fuel', u'reduct', u'burn', u'ceas']
[u'fuel', u'save', u'bonus', u'link', u'garuda', u'crash']
[u'garrett', u'prais', u'premier', u'push', u'emiss']
[u'garuda', u'indonesia', u'land', u'safe', u'despit', u'flat', u'tyre']
[u'real', u'sydney', u'traffic', u'congest']
[u'gladston', u'cenotaph', u'featur', u'vietnam', u'soldier']
[u'golden', u'highway', u'crash', u'victim', u'identifi']
[u'govern', u'support', u'essenti', u'ethanol', u'industri']
[u'govt', u'accus', u'fail', u'legisl', u'climat']
[u'govt', u'put', u'brake', u'high', u'speed', u'highway', u'test']
[u'govt', u'unabl', u'cost', u'gunn', u'assess']
[u'govt', u'urg', u'spend', u'heritag', u'area']
[u'grant', u'frustrat', u'winless', u'start', u'kangaroo']
[u'green', u'want', u'coag', u'address', u'climat', u'chang']
[u'group', u'qaeda', u'link', u'claim', u'algier', u'blast']
[u'gungahlin', u'resid', u'plan', u'worri']
[u'hadley', u'lion', u'comeback']
[u'heritag', u'list', u'stand', u'futur']
[u'high', u'comfort', u'level', u'baddeley', u'heritag']
[u'hospit', u'declar', u'gastro', u'outbreak']
[u'howard', u'refus', u'cabinet', u'decis']
[u'howard', u'urg', u'state', u'consid', u'water', u'share', u'plan']
[u'india', u'test', u'ballist', u'missil', u'capabl', u'reach']
[u'rat', u'need']
[u'interim', u'manag', u'board', u'take', u'control', u'gascoyn']
[u'ireland', u'prove', u'say', u'mcgrath']
[u'law', u'reduc', u'unemploy', u'howard']
[u'isra', u'warplan', u'near', u'shoot', u'airlin']
[u'job', u'growth', u'prompt', u'talk', u'rate', u'rise']
[u'job', u'surg', u'mean', u'rate', u'rise', u'economist']
[u'koski', u'clear', u'commut', u'complaint', u'email']
[u'labor', u'smith', u'hold', u'talk', u'ahead', u'educ', u'meet']
[u'lara', u'final', u'farewel']
[u'lead', u'inquiri', u'info', u'avail', u'open', u'saturday']
[u'lennon', u'releas', u'coag', u'plan', u'educ', u'diabet']
[u'litig', u'answer', u'nativ', u'titl', u'claim']
[u'local', u'govt', u'build', u'hous', u'drain', u'reserv']
[u'malinga', u'black', u'cap', u'encount']
[u'charg', u'bash', u'death', u'whitegum', u'park']
[u'charg', u'kill', u'babi', u'face', u'suprem']
[u'market', u'edg', u'morn', u'loss']
[u'mcdonald', u'fin', u'employ', u'underag', u'worker']
[u'mickel', u'investig', u'report', u'easter', u'holiday']
[u'mine', u'drive', u'job', u'boom', u'rudd']
[u'canadian', u'soldier', u'afghanistan']
[u'murray', u'darl', u'member', u'set', u'offic', u'break', u'hill']
[u'nation', u'water', u'price', u'rise', u'unnecessari']
[u'nativ', u'titl', u'forum', u'organis', u'plan', u'event']
[u'neighbourhood', u'brawler', u'appear', u'court']
[u'adhd', u'drug']
[u'climat', u'chang', u'spokesman', u'promot', u'farmer', u'role']
[u'committe', u'advis', u'cater']
[u'drought', u'assist', u'program', u'help', u'famili']
[u'law', u'blame', u'cigarett', u'butt', u'litter']
[u'liber', u'leader', u'want', u'desalin', u'plant', u'fast']
[u'pump', u'address', u'donor', u'heart', u'shortag']
[u'purpos', u'build', u'pound', u'tamworth']
[u'radar', u'monitor', u'coastlin', u'tsunami']
[u'report', u'urg', u'cyclon', u'research']
[u'zealand', u'look', u'seal', u'semi', u'berth']
[u'guarante', u'council', u'worker', u'workchoic']
[u'nuclear', u'reactor', u'firm', u'stake', u'summit']
[u'ombudsman', u'find', u'energi', u'seller', u'target', u'dementia']
[u'open']
[u'opposit', u'task', u'forc', u'aim', u'illawarra']
[u'orchard', u'owner', u'deni', u'hazard']
[u'organis', u'admit', u'world', u'long']
[u'control', u'fuel', u'reduct', u'burn', u'start', u'slow']
[u'pakistan', u'musharraf', u'say', u'tribe', u'kill']
[u'paladin', u'boost', u'offer', u'summit']
[u'peopl', u'urg', u'curb', u'energi', u'save', u'reef']
[u'perform', u'teacher']
[u'persik', u'sydney', u'champion', u'leagu']
[u'pill', u'vehicl', u'involv', u'fatal', u'crash']
[u'plan', u'adopt', u'workchoic', u'disastr', u'union']
[u'polic', u'bust', u'cannabi', u'oper', u'nation', u'park']
[u'polic', u'hope', u'hoon', u'impound', u'deter']
[u'polic', u'hunt', u'latest', u'abduct', u'attempt']
[u'polic', u'drug', u'charg', u'expect']
[u'polic', u'larapinta', u'camp', u'attack', u'payback']
[u'pope', u'air', u'view', u'evolut']
[u'porn', u'accus', u'face', u'court']
[u'premier', u'push', u'emiss', u'reduct']
[u'prize', u'money', u'communiti', u'water']
[u'properti', u'price', u'rise', u'push', u'farm', u'debt', u'higher']
[u'public', u'outcri', u'forc', u'canberra', u'chang']
[u'pump', u'water', u'north', u'unwork', u'green', u'council', u'say']
[u'council', u'push', u'workchoic']
[u'ramo', u'horta', u'urg', u'increas', u'elect', u'scrutini']
[u'rann', u'want', u'rethink', u'nation', u'emiss', u'trade']
[u'report', u'caro', u'meldrum', u'catch']
[u'reviv', u'protea', u'attack']
[u'roger', u'line', u'bronco', u'clash']
[u'rough', u'condit', u'hamper', u'search', u'boatman']
[u'ruddock', u'claim', u'hearsay', u'evid', u'doubl', u'standard']
[u'schwarzenegg', u'urg', u'greeni', u'sexi']
[u'scientist', u'water', u'space']
[u'scientist', u'hear', u'breakthrough']
[u'screwdriv', u'credit', u'union', u'robberi']
[u'seeney', u'urg', u'beatti', u'support', u'water', u'plan']
[u'senat', u'vote', u'lift', u'bush', u'stem', u'cell', u'restrict']
[u'sham', u'marriag', u'stori', u'true', u'mayor']
[u'sharehold', u'accept', u'level', u'lower', u'qanta']
[u'ship', u'emiss', u'target']
[u'short', u'burst', u'bell', u'power', u'station']
[u'slash', u'fee', u'home', u'urg']
[u'slaughterhous', u'author', u'vonnegut', u'die']
[u'small', u'quak', u'concern', u'seismologist']
[u'snoop', u'dodg', u'jail', u'drug', u'charg']
[u'spanish', u'trio', u'uefa', u'semi', u'final']
[u'spinal', u'injuri', u'rehab', u'unit', u'look', u'ahead']
[u'staniforth', u'return', u'chief', u'clash']
[u'state', u'lukewarm', u'pipelin', u'plan']
[u'stoush', u'loom', u'inter', u'state', u'pipelin']
[u'sydney', u'persik', u'level', u'half', u'time']
[u'tafe', u'see', u'futur', u'success', u'compani', u'partnership']
[u'govt', u'stand', u'onlin', u'scheme']
[u'tearaway', u'tait', u'feel', u'home']
[u'teenag', u'pearc', u'stay', u'rooster']
[u'thai', u'king', u'pardon', u'swiss', u'jail', u'insult']
[u'time', u'consist', u'later', u'think', u'govt']
[u'tourism', u'group', u'propos', u'holiday', u'indigen']
[u'tree', u'breeder', u'look', u'boost', u'qualiti', u'profit']
[u'truss', u'wheat', u'desk', u'statement', u'line', u'vail']
[u'tsunami', u'buoy', u'deploy']
[u'tsunami', u'warn', u'buoy', u'tasman']
[u'turnbul', u'flag', u'water', u'pipelin']
[u'turnbul', u'say', u'dodg', u'traveston', u'issu']
[u'charg', u'blackmail', u'adelaid']
[u'underwat', u'mower', u'harvest', u'sourc']
[u'unemploy', u'offer', u'job', u'defenc', u'forc']
[u'unemploy', u'rate', u'year']
[u'unit', u'lose', u'spagnuolo']
[u'troop', u'face', u'longer', u'iraq', u'tour']
[u'troop', u'spend', u'longer', u'iraq']
[u'vettori', u'readi', u'world', u'wake']
[u'govt', u'approv', u'wind', u'farm']
[u'hous', u'build', u'lag', u'demand']
[u'nation', u'murray', u'darl', u'plan']
[u'wallaroo', u'primari', u'open']
[u'welfar', u'group', u'back', u'stamp', u'duti', u'home', u'buyer']
[u'wesfarm', u'cole', u'misguid', u'bank', u'say']
[u'what', u'andrew', u'john']
[u'rudd', u'revers', u'awa']
[u'wine', u'grower', u'festiv', u'forward']
[u'wit', u'want', u'tweed', u'head', u'crash', u'investig']
[u'woman', u'accus', u'starv', u'puppi', u'get', u'suspend']
[u'woman', u'jail', u'give', u'poison', u'cake', u'husband']
[u'workchoic', u'boost', u'job', u'growth', u'say']
[u'world', u'leader', u'condemn', u'algeria', u'suicid', u'attack']
[u'yogyakarta', u'airport', u'safeti', u'strip', u'criticis']
[u'youth', u'homeless', u'hear', u'move', u'townsvill']
[u'yumbarra', u'blockad', u'talk', u'fail']
[u'job', u'lockwood', u'close', u'brisban', u'plant']
[u'year', u'rapist', u'pose', u'taxi', u'driver']
[u'taliban', u'kill', u'southern', u'afghanistan']
[u'solar', u'panel', u'steal', u'park']
[u'aborigin', u'home', u'ownership', u'achiev', u'brough']
[u'accid', u'spark', u'rescu', u'chopper', u'help']
[u'minist', u'fight', u'water', u'polici']
[u'polic', u'remind', u'children', u'stranger', u'danger']
[u'adelaid', u'releas']
[u'adelaid', u'woman', u'guilti', u'husband', u'murder']
[u'advisori', u'group', u'work', u'toowoomba', u'problem']
[u'chang', u'crackdown', u'ident', u'issu']
[u'appeal', u'fail', u'swan', u'valley', u'aborigin', u'camp']
[u'appeal', u'arson', u'wit']
[u'arsenal', u'young', u'gun', u'face', u'test', u'nerv']
[u'chief', u'resign']
[u'auspin', u'expect', u'begin', u'suppli', u'deal', u'legal']
[u'aussi', u'dollar', u'hit', u'year', u'high']
[u'aust', u'market', u'weigh', u'resourc', u'sector', u'loss']
[u'australia', u'relish', u'redgrav', u'meet']
[u'sharehold', u'launch', u'legal', u'action']
[u'baghdad', u'secur', u'plan', u'work', u'iraqi']
[u'bainimarama', u'sack', u'council', u'chief']
[u'bankruptci', u'rise', u'show', u'need', u'tougher', u'broker']
[u'barbarella', u'remak', u'plan']
[u'bateman', u'miss', u'roo', u'encount']
[u'bird', u'drug', u'save', u'hundr', u'live']
[u'bodi', u'brisban', u'landmark']
[u'bodi', u'like', u'male', u'armidal', u'girl', u'rule']
[u'bouncer', u'charg', u'murder', u'grant', u'bail']
[u'break', u'hill', u'council', u'consid', u'workchoic']
[u'expand', u'newcastl', u'coal', u'load', u'facil']
[u'compani', u'collaps', u'wont', u'hurt', u'holden']
[u'crash', u'yield', u'drug', u'haul', u'polic']
[u'carey', u'list', u'intern', u'booker', u'prize']
[u'cattl', u'death', u'prompt', u'kikuyu', u'warn']
[u'cemeteri', u'vandal', u'avoid', u'jail', u'rampag']
[u'child', u'killer', u'parol']
[u'closer', u'news']
[u'club', u'want', u'deal', u'field', u'drug']
[u'cocain', u'deal', u'priest', u'jail', u'itali']
[u'convict', u'murder', u'rapist', u'lose', u'sentenc', u'review']
[u'coral', u'boat', u'ramp', u'work', u'prompt', u'environ', u'fear']
[u'council', u'say', u'favourit', u'row', u'cours', u'revamp']
[u'council', u'urg', u'refus', u'develop', u'land']
[u'court', u'rule', u'whitsunday', u'coast', u'airport', u'sale']
[u'cowboy', u'leagu', u'club', u'reopen', u'weekend']
[u'crew', u'member', u'miss', u'scottish']
[u'danih', u'wari', u'cat', u'onslaught']
[u'daylight', u'save', u'chang', u'greenhous', u'emiss']
[u'demand', u'tassi', u'grow', u'pyrethrum', u'increas']
[u'develop', u'boom', u'blame', u'grow', u'eurobodalla']
[u'drought', u'blame', u'high', u'vegi', u'price']
[u'ead', u'question', u'wisdom', u'bench', u'restrict']
[u'easter', u'yearl', u'sale', u'come']
[u'educ', u'minist', u'reject', u'teacher', u'plan']
[u'industri', u'probe', u'reveal', u'illeg', u'oper']
[u'environment', u'fund', u'help', u'feral', u'problem']
[u'evan', u'slam', u'rann', u'climat', u'chang', u'hypocrit']
[u'export', u'warn', u'nigerian', u'email', u'scam']
[u'extra', u'fund', u'emerg', u'depart']
[u'farmer', u'reject', u'crop', u'support', u'claim']
[u'farmer', u'govt', u'murray', u'darl']
[u'fear', u'draft', u'power', u'polici', u'unfair', u'ravensthorp']
[u'fear', u'legionnair', u'case', u'sydney']
[u'feder', u'takeov', u'dalrympl', u'oper']
[u'ferrari', u'domin', u'practic', u'bahrain']
[u'fiji', u'soldier', u'send', u'close', u'council', u'chief']
[u'forc', u'brisban', u'unit', u'block', u'evacu']
[u'hyshot', u'engin', u'high']
[u'foreign', u'troop', u'fuel', u'iraq', u'violenc', u'green']
[u'forget', u'wallabi', u'select', u'jone']
[u'charg', u'parramatta', u'shoot']
[u'glupot', u'reserv', u'await', u'prescrib', u'burn', u'approv']
[u'govern', u'unemploy', u'figur', u'accur', u'gtlc']
[u'govt', u'deni', u'involv', u'collaps', u'part']
[u'govt', u'offer', u'financi', u'displac', u'meatwork']
[u'govt', u'demolish', u'pipunya', u'hous']
[u'govt', u'monitor', u'water', u'farmer']
[u'griffith', u'plead', u'guilti', u'harass', u'polic']
[u'hambali', u'deni', u'qaeda', u'connect']
[u'hamilton', u'smith', u'want', u'frontbench', u'region', u'presenc']
[u'hargreav', u'mute', u'corbel', u'water', u'spat']
[u'high', u'speed', u'research', u'jet', u'brisban']
[u'hop', u'fade', u'miss', u'fisherman', u'jumper']
[u'horti', u'mokbel', u'appear', u'melbourn', u'court']
[u'hous', u'infrastructur', u'plan', u'concern']
[u'howard', u'call', u'immigr']
[u'howard', u'criticis', u'immigr', u'comment']
[u'hurrican', u'post', u'cheetah']
[u'illawarra', u'level', u'steadi', u'overal']
[u'innov', u'chang', u'face', u'global', u'music']
[u'internet', u'bulli', u'video', u'hoax', u'school', u'say']
[u'iraqi', u'author', u'investig', u'parliament', u'attack']
[u'iraq', u'parliament', u'bomb', u'possibl', u'insid']
[u'iraq', u'parliament', u'cafe', u'worker', u'detain', u'attack']
[u'commiss', u'order', u'tristar', u'probe']
[u'irregular', u'timor', u'vote', u'count']
[u'jackson', u'famili', u'realiti']
[u'kawana', u'golf', u'cours', u'idea', u'slice']
[u'kidman', u'award', u'order', u'australia']
[u'landi', u'suffer', u'setback', u'clear']
[u'larg', u'consign', u'cattl', u'leav', u'townsvill']
[u'leader', u'agre', u'scheme', u'tackl', u'diabet']
[u'leaney', u'start', u'heritag', u'classic']
[u'liber', u'lord', u'mayor', u'oppos', u'individu', u'contract']
[u'local', u'govt', u'chief', u'urg', u'delay', u'preferenti']
[u'local', u'govt', u'group', u'back', u'levi', u'decis']
[u'impal', u'forklift']
[u'jail', u'year', u'raid', u'burglari']
[u'jail', u'barbar', u'act', u'cruelti']
[u'jail', u'deni', u'link', u'carl', u'william']
[u'jail', u'help', u'dump', u'cowork', u'bodi']
[u'jail', u'stab', u'woman', u'death', u'year']
[u'jail', u'amateurish', u'servic', u'station', u'robberi']
[u'jail', u'ballarat', u'servo', u'heist']
[u'kill', u'execut', u'style', u'shoot']
[u'pose', u'employe', u'money']
[u'tell', u'polic', u'hurt', u'kidnap']
[u'maradona', u'admit', u'hospit']
[u'marc', u'anthoni', u'tax']
[u'maryborough', u'launch', u'tsunami', u'appeal', u'solomon']
[u'matthew', u'question', u'review', u'panel', u'lappin']
[u'mayor', u'hope', u'mine', u'boom', u'meet', u'bring']
[u'mayor', u'say', u'timet', u'chang']
[u'meet', u'clear', u'nation', u'curriculum', u'move']
[u'memori', u'unveil', u'honour', u'builder', u'vic', u'great']
[u'daylight', u'save', u'agreement']
[u'more', u'mayor', u'offer', u'assur']
[u'indigen', u'disadvantag', u'martin']
[u'back', u'campaign', u'lower', u'northern', u'highway', u'speed']
[u'myspac', u'parti', u'trash', u'hous']
[u'nation', u'reform', u'water', u'climat', u'high', u'coag', u'agenda']
[u'star', u'jordan', u'top', u'celebr', u'divorc', u'list']
[u'resid', u'privat', u'psychiatrist', u'geraldton']
[u'technolog', u'help', u'connect', u'remot']
[u'nightspot', u'investig', u'plan', u'matter']
[u'korea', u'tie', u'reactor', u'shutdown', u'bank', u'disput']
[u'mummi', u'movi', u'weisz']
[u'charg', u'larapinta', u'stab']
[u'north', u'west', u'push', u'bail', u'justic']
[u'govt', u'deni', u'port', u'respons', u'critic']
[u'slowli', u'move', u'drought']
[u'govt', u'defend', u'permit', u'decis', u'high', u'speed']
[u'nurs', u'suspend', u'amidst', u'hospit', u'death', u'probe']
[u'charg', u'injur', u'alburi', u'brawl']
[u'wonder', u'play', u'anna', u'nicol']
[u'opposit', u'accus', u'govt', u'withhold', u'inform']
[u'park', u'servic', u'pleas', u'control', u'burn']
[u'plan', u'aim', u'tackl', u'wollongong', u'crime']
[u'plant', u'right', u'tree', u'combat', u'global']
[u'refus', u'carbon', u'emiss', u'target']
[u'refus', u'target', u'carbon', u'emiss']
[u'polic', u'believ', u'indec', u'incid', u'link']
[u'polic', u'continu', u'investig', u'eltham', u'north']
[u'polic', u'play', u'gangland', u'specul', u'melbourn']
[u'polic', u'complaint', u'xavier', u'colleg']
[u'polic', u'outback', u'indigen', u'drug', u'smuggl']
[u'polic', u'seek', u'info', u'gold', u'coast', u'chemist']
[u'polic', u'urg', u'busi', u'curfew', u'plan']
[u'pont', u'back', u'call', u'shorten']
[u'potter', u'book', u'record', u'breaker']
[u'prize', u'win', u'mclaren', u'vale', u'winemak', u'dead']
[u'public', u'cardiff', u'park', u'plan']
[u'push', u'port', u'lincoln', u'cost', u'hous']
[u'rain', u'bring', u'chang', u'fortun', u'campdraft']
[u'rann', u'vow', u'press', u'emiss', u'trade']
[u'region', u'abl', u'appli', u'broadband', u'fund']
[u'repair', u'truck', u'damag', u'busi']
[u'repair', u'roadhous']
[u'report', u'find', u'drought', u'cost', u'region']
[u'research', u'say', u'dam', u'water', u'pipelin']
[u'research', u'highlight', u'kalgoorli', u'drinker']
[u'resid', u'evacu', u'amid', u'silo', u'blast', u'fear']
[u'resid', u'urg', u'check', u'burn', u'law']
[u'revis', u'qanta', u'takeov', u'worri', u'actu']
[u'rise', u'cost', u'chang', u'hous', u'design']
[u'ronaldo', u'stay', u'unit']
[u'rudd', u'admit', u'know', u'dawn', u'servic', u'plan']
[u'ruddock', u'criticis', u'review', u'board', u'recommend']
[u'safeti', u'induct', u'cours', u'updat', u'year']
[u'saint', u'prepar', u'risk', u'ball']
[u'sandra', u'bullock', u'turn', u'stalker', u'romcom']
[u'scientist', u'confirm', u'link', u'chook']
[u'scientist', u'discov', u'genet', u'link', u'obes']
[u'sentenc', u'delay', u'neglig', u'driver']
[u'qlder', u'meet', u'water', u'target']
[u'silver', u'product']
[u'sit', u'consid', u'shoalhaven', u'marina']
[u'injur', u'multipl', u'vehicl', u'crash']
[u'solomon', u'tsunami', u'emerg', u'phase', u'declar']
[u'south', u'east', u'race', u'club', u'join', u'strateg', u'plan', u'meet']
[u'state', u'territori', u'reject', u'bishop', u'plan']
[u'state', u'tighten', u'control', u'terror', u'book', u'dvds']
[u'state', u'work', u'drink', u'spike', u'law']
[u'stockman', u'challeng', u'kick', u'thargomindah']
[u'studi', u'uncov', u'gene']
[u'support', u'group', u'say', u'chang', u'draconian']
[u'sydney', u'astronom', u'discov', u'nebula']
[u'tag', u'appropri', u'convict', u'child', u'killer']
[u'teen', u'undergo', u'surgeri', u'adelaid', u'shoot']
[u'dead', u'miss', u'capsiz']
[u'hospitalis', u'follow', u'armadal', u'unit']
[u'iraqi', u'parliament', u'cafe', u'worker', u'detain']
[u'kill', u'uganda', u'protest']
[u'tiger', u'magpi']
[u'tiger', u'suffer', u'defeat']
[u'titan', u'ahead', u'derbi', u'clash']
[u'titan', u'upstag', u'bronco', u'local', u'derbi']
[u'toni', u'mokbel', u'brother', u'arrest', u'drug', u'charg']
[u'tour', u'boat', u'profit', u'blow', u'away']
[u'tourism', u'board', u'meet', u'alburi', u'today']
[u'tourist', u'number', u'inform', u'centr']
[u'trade', u'qualif', u'transfer']
[u'truck', u'ban', u'major', u'brisban', u'road']
[u'turbin', u'host', u'welcom', u'wind', u'farm', u'announc']
[u'turnbul', u'pipelin', u'water', u'restrict']
[u'tyson', u'stand', u'trial', u'drug', u'charg']
[u'union', u'mcgowan', u'meet', u'teacher', u'shortag']
[u'union', u'reject', u'push', u'region', u'remot', u'teacher']
[u'union', u'say', u'council', u'work', u'condit', u'unsaf']
[u'charg', u'join', u'qaeda']
[u'valu', u'mortgag', u'increas']
[u'govt', u'accus', u'nation', u'water', u'plan', u'backflip']
[u'waca', u'grind', u'undergo', u'upgrad']
[u'govt', u'look', u'recruit', u'interst', u'meatwork']
[u'warn', u'rule', u'england']
[u'warn', u'see', u'lanka', u'danger']
[u'washington', u'whitak', u'join', u'forc', u'screen']
[u'wheat', u'farmer', u'look', u'heaven', u'rain']
[u'woolmer', u'inquest', u'start', u'april']
[u'worker', u'bakeri', u'close']
[u'worker', u'owe', u'part', u'compani', u'collaps']
[u'worksaf', u'forum', u'hold', u'leongatha']
[u'youni', u'turn', u'pakistani', u'captainci', u'offer']
[u'aborigin', u'own', u'busi', u'gain', u'savannah', u'guid']
[u'govt', u'call', u'flavour', u'cigarett']
[u'push', u'drink', u'swap', u'crimin', u'offenc']
[u'qaeda', u'back', u'group', u'claim', u'iraq', u'parliament']
[u'qaeda', u'link', u'group', u'claim', u'iraq', u'bomb']
[u'aussi', u'gear', u'test', u'time']
[u'aussi', u'crush', u'ireland']
[u'aust', u'assist', u'recoveri', u'solomon', u'island', u'long']
[u'black', u'cap', u'dont', u'toss', u'coin']
[u'blue', u'fight', u'thrill']
[u'bodi', u'near', u'bridg', u'identifi', u'miss']
[u'bomber', u'shoot', u'lead', u'blue']
[u'bougainvill', u'author', u'urg', u'final', u'fijian']
[u'bounci', u'track', u'suit', u'mcgrath']
[u'brazil', u'host', u'world']
[u'bush', u'back', u'world', u'bank', u'chief']
[u'canadian', u'govt', u'provid', u'mental', u'health', u'fund']
[u'canberra', u'fuel', u'price', u'soar']
[u'castro', u'take', u'good', u'govt', u'duti', u'chavez']
[u'chappel', u'deni', u'speak', u'fear']
[u'cheetah', u'clear', u'bite', u'charg']
[u'cheetah', u'prop', u'face', u'bite', u'charg']
[u'closer']
[u'closer']
[u'corbel', u'strip', u'portfolio', u'cabinet', u'reshuffl']
[u'costello', u'refus', u'comment', u'specul']
[u'costello', u'say', u'specul']
[u'costello', u'warn', u'emiss', u'trade', u'zealotri']
[u'cousin', u'treatment']
[u'crow', u'claim', u'showdown', u'victori']
[u'crow', u'break']
[u'crusad', u'highland', u'sword']
[u'custom', u'seiz', u'weapon', u'retail', u'good', u'adelaid']
[u'doctor', u'support', u'group', u'fund', u'need']
[u'dozen', u'dead', u'iraq', u'suicid', u'bomb', u'attack']
[u'drug', u'explos', u'victim', u'recov', u'hospit']
[u'eagl', u'kick', u'away', u'beat', u'docker', u'derbi']
[u'eagl', u'lead', u'docker', u'break']
[u'masri', u'claim', u'polic', u'harass']
[u'masri', u'harass', u'polic', u'lawyer']
[u'masri', u'lawyer', u'stand', u'discrimin', u'claim']
[u'clear', u'leaney']
[u'timor', u'face', u'vote']
[u'timor', u'face', u'possibl', u'vote']
[u'prais', u'peac', u'timor', u'elect']
[u'minist', u'say', u'engin', u'conflict']
[u'fighter', u'project', u'price', u'rise', u'wont', u'impact', u'aust', u'nelson']
[u'food', u'poison', u'kill', u'melbourn', u'nurs', u'home']
[u'forc', u'chief', u'point', u'feast']
[u'forestri', u'releas', u'detail', u'gunn', u'deal']
[u'foundri', u'expans', u'pose', u'increas', u'cancer']
[u'gallic', u'take', u'sydney']
[u'german', u'annoy', u'neighbour', u'loud', u'music']
[u'govt', u'deni', u'report', u'lennon', u'green', u'success', u'plan']
[u'govt', u'powerless', u'respond', u'burn', u'health']
[u'gunn', u'pulp', u'assess', u'month', u'turnbul']
[u'hamilton', u'fastest', u'bahrain', u'practic']
[u'henderson', u'season']
[u'hiddink', u'dismiss', u'chelsea', u'link']
[u'hobart', u'jail', u'centrelink', u'fraud']
[u'import', u'beetl', u'pose', u'biosecur', u'risk']
[u'india', u'missil', u'test', u'forc', u'garuda', u'jet', u'return']
[u'info', u'caravan', u'help', u'sexual', u'attack']
[u'ing', u'miss', u'tran', u'tasman', u'test']
[u'interview', u'ricki', u'pont']
[u'iraq', u'author', u'investig', u'parliament', u'bomb']
[u'iraq', u'open']
[u'islam', u'cleric', u'kill', u'nigerian', u'elect']
[u'labor', u'call', u'budget', u'disciplin']
[u'larva', u'suspend', u'appl', u'export', u'taiwan']
[u'malinga', u'doubt', u'australia', u'match']
[u'die', u'parachut', u'accid']
[u'critic', u'condit', u'skate', u'park', u'assault']
[u'massa', u'take', u'pole', u'posit', u'bahrain']
[u'mccullum', u'fin', u'dissent']
[u'nation', u'surrogaci', u'law', u'delay', u'report']
[u'nelson', u'denial', u'fighter', u'project', u'price', u'rise']
[u'nelson', u'open']
[u'orlean', u'recoveri', u'leader', u'apologis', u'remark']
[u'korea', u'defiant', u'despit', u'reactor', u'deadlin']
[u'korea', u'reactor', u'closur', u'deadlin', u'expir']
[u'korea', u'eventu', u'meet', u'deadlin', u'richardson']
[u'swim', u'fisher', u'rescu']
[u'govt', u'accus', u'play', u'polit', u'tristar']
[u'govt', u'hypocrit', u'expand', u'coal', u'export']
[u'govt', u'play', u'polit', u'tristar', u'worker']
[u'driver', u'die', u'head', u'crash']
[u'workshop', u'inform', u'indigen', u'communiti']
[u'open']
[u'pidg', u'target', u'jayasuriya']
[u'podcast', u'australia', u'ireland']
[u'polic', u'search', u'miss', u'insulin', u'depend', u'teen']
[u'pope', u'publish', u'answer', u'vinci', u'code']
[u'post', u'mortem', u'identifi', u'bodi', u'near', u'stori']
[u'princ', u'william', u'middleton', u'split', u'report']
[u'public', u'warn', u'invest', u'scam', u'coupl']
[u'liber', u'decid', u'santoro', u'replac']
[u'lib', u'choos', u'boyc', u'replac', u'santoro']
[u'opposit', u'call', u'tougher', u'sentenc']
[u'raikkonen', u'domin', u'bahrain', u'practic']
[u'rescuer', u'fear', u'worst', u'miss', u'fisherman']
[u'rspca', u'protect', u'bird', u'batteri', u'farm']
[u'russian', u'riot', u'polic', u'detain', u'protest']
[u'russia', u'prepar', u'welcom', u'exil', u'church', u'member']
[u'sack', u'corbel', u'stand', u'water', u'recycl', u'comment']
[u'custom', u'record', u'weapon', u'bust']
[u'saint', u'lead', u'bulldog']
[u'saint', u'thrash', u'bulldog']
[u'saint', u'welcom', u'riewoldt']
[u'face', u'court', u'import', u'weapon']
[u'public', u'hous', u'tenant', u'concern']
[u'consid', u'eastern', u'daylight', u'save', u'schedul']
[u'eagl', u'deep', u'dog']
[u'search', u'continu', u'miss', u'blue', u'mountain', u'walker']
[u'secur', u'concern', u'rais', u'nigeria', u'head']
[u'shark', u'upset', u'blue', u'home']
[u'silo', u'clean', u'begin', u'overheat', u'incid']
[u'solomon', u'island', u'theyr', u'wait']
[u'stock', u'rise', u'bond', u'struggl', u'stock', u'market']
[u'storm', u'lead', u'dragon', u'half', u'time']
[u'storm', u'good', u'dragon']
[u'streisand', u'host', u'democrat', u'fundrais']
[u'boyc', u'choos', u'replac', u'santoro']
[u'green', u'detail', u'govt', u'water']
[u'teacher', u'can', u'case', u'mistak', u'ident']
[u'teen', u'apologis', u'imperson', u'staff']
[u'teen', u'charg', u'retir', u'villag', u'assault']
[u'teen', u'hundr', u'clip', u'take', u'youtub']
[u'soldier', u'kill', u'iraq']
[u'trade', u'minist', u'regroup', u'doha', u'talk']
[u'truss', u'hold', u'hop', u'doha', u'agreement']
[u'send', u'legal', u'advis', u'lebanon']
[u'food', u'poison', u'claim', u'live']
[u'polic', u'breach', u'rais', u'concern']
[u'polic', u'employe', u'quit', u'misus', u'file']
[u'polic', u'file', u'breach', u'major', u'concern']
[u'govt', u'proceed', u'swan', u'valley', u'park', u'plan']
[u'waratah', u'hold', u'half', u'time', u'lead']
[u'waratah', u'dour', u'derbi']
[u'water', u'meter', u'crucial', u'agricultur', u'futur']
[u'white', u'hous', u'stand', u'world', u'bank', u'chief']
[u'winemak', u'feder', u'execut', u'replac', u'ferri']
[u'woman', u'bodi', u'near', u'gympi']
[u'workchoic', u'darwin', u'citi']
[u'arrest', u'drug', u'sydney', u'music', u'festiv']
[u'church', u'state', u'separ']
[u'charg', u'alic', u'spring', u'stab', u'bash']
[u'akram', u'brand', u'inzi', u'dictat']
[u'campaign', u'fund']
[u'deliv', u'shock', u'hospit', u'emerg', u'report']
[u'arsenal', u'euro', u'track']
[u'atkinson', u'snowsil', u'star', u'japan']
[u'aust', u'hospit', u'cope', u'disast', u'studi']
[u'aust', u'hospit', u'struggl', u'larg', u'scale']
[u'baghdad', u'bomb', u'kill']
[u'beij', u'ticket', u'scrambl', u'begin']
[u'bishop', u'back', u'cut', u'melbourn', u'univers', u'hec']
[u'bishop', u'continu', u'perform', u'push']
[u'black', u'cap', u'cruis', u'protea']
[u'black', u'cap', u'semi']
[u'bomber', u'attack', u'target', u'morocco']
[u'boyc', u'prepar', u'state', u'parliament', u'endors']
[u'british', u'helicopt', u'crash', u'iraq', u'kill']
[u'brogan', u'suffer', u'injuri', u'blow']
[u'bull', u'thrash', u'stormer', u'stay', u'semi', u'hunt']
[u'bushwalk', u'bodi', u'gorg']
[u'canada', u'releas', u'terror', u'suspect']
[u'cat', u'command', u'demon']
[u'cat', u'demon', u'winless']
[u'chagaev', u'end', u'valuev', u'reign']
[u'chess', u'champ', u'arrest', u'moscow', u'march']
[u'chess', u'champ', u'defiant', u'arrest', u'moscow', u'march']
[u'china', u'urg', u'patienc', u'north', u'korea', u'deadlin']
[u'clean', u'begin', u'iraq', u'bomb', u'attack']
[u'closer']
[u'closer']
[u'cowboy', u'warrior', u'level', u'break']
[u'curfew', u'forc', u'iraq', u'bomb', u'attack']
[u'data', u'record', u'sink', u'greek', u'cruis', u'ship']
[u'doubl', u'lung', u'transplant', u'recipi', u'celebr']
[u'dozen', u'putin', u'oppon', u'detain', u'russia']
[u'eagl', u'happi', u'cousinss', u'treatment']
[u'eagl', u'face', u'braun', u'swear', u'stage']
[u'polic', u'kill', u'afghan', u'suicid', u'blast']
[u'timor', u'poll', u'count', u'increas', u'illog']
[u'head', u'garuda', u'arrest', u'activist', u'poison']
[u'extremist', u'classif', u'spark', u'outrag']
[u'danger', u'season', u'end', u'area']
[u'destroy', u'palmerston', u'unit']
[u'flash', u'flood', u'kill', u'thailand']
[u'food', u'test', u'begin', u'melbourn', u'nurs', u'home']
[u'protest', u'elector', u'enrol', u'chang']
[u'govt', u'plan', u'refug', u'centr', u'fund']
[u'govt', u'urg', u'begin', u'snap', u'random', u'batteri', u'inspect']
[u'green', u'want', u'govt', u'fund', u'wood', u'heater', u'buyback']
[u'green', u'welcom', u'extend', u'environ', u'portfolio']
[u'hawk', u'hold', u'kangaroo']
[u'health', u'offic', u'sack', u'communic', u'issu']
[u'hunt', u'smith', u'retain', u'test', u'jersey']
[u'indian', u'stem', u'cell', u'therapi', u'help', u'aust', u'woman', u'walk']
[u'indigen', u'protect']
[u'interview', u'john', u'morri', u'brett', u'hodgson']
[u'fund', u'scrutinis']
[u'iran', u'seek', u'offer', u'build', u'nuclear', u'power']
[u'iraq', u'suffer', u'horror', u'weekend']
[u'iraq', u'violenc', u'kill']
[u'irregular', u'spark', u'protest', u'nigeria', u'vote']
[u'israel', u'readi', u'talk', u'arab', u'peac', u'plan', u'olmert']
[u'jetstar', u'apologis', u'passeng', u'hawaii', u'strand']
[u'jetstar', u'passeng', u'aust', u'hawaii']
[u'kangaroo', u'lead', u'hawk']
[u'karbala', u'blast', u'kill']
[u'katherin', u'businesswoman', u'argu', u'benefit']
[u'kelli', u'swipe', u'lead', u'stumbl']
[u'knight', u'shine', u'joey']
[u'labor', u'reject', u'claim', u'anti', u'workchoic']
[u'liber', u'want', u'patient', u'privaci', u'guarante']
[u'die', u'snake', u'bite', u'popular', u'picnic', u'area']
[u'equip', u'fake', u'credit', u'card']
[u'hospitalis', u'aerochut', u'crash']
[u'marshal', u'inspir', u'tiger', u'maiden', u'victori']
[u'mcarthur', u'river', u'activist', u'die']
[u'minist', u'accus', u'incompet', u'follow', u'nurs']
[u'minist', u'issu', u'warn', u'amid', u'safeti', u'concern']
[u'monaro', u'snowi', u'debat', u'wind', u'farm', u'develop']
[u'fund', u'need', u'tackl', u'diabet']
[u'homeless', u'fund', u'need', u'say', u'shelter']
[u'moscow', u'polic', u'arrest', u'chess', u'champ', u'protest']
[u'music', u'industri', u'push', u'isp', u'action', u'illeg']
[u'nairn', u'push', u'bushfir', u'research']
[u'nigerian', u'elect', u'mar', u'violenc', u'theft']
[u'interview', u'nathan', u'fien', u'sion', u'faumuina']
[u'blame', u'prison', u'popul', u'tougher', u'law']
[u'send', u'lanka']
[u'opposit', u'announc', u'tough', u'plan', u'drug']
[u'patient', u'safeti', u'report', u'year', u'schedul']
[u'urg', u'action', u'rat', u'radic']
[u'polic', u'deni', u'pakistan', u'player', u'treat', u'like', u'crimin']
[u'polic', u'investig', u'narara', u'abduct', u'attempt']
[u'polic', u'search', u'second', u'teen', u'home', u'invas']
[u'pragu', u'resid', u'prefer', u'goat', u'statu', u'freud']
[u'resourc', u'council', u'welcom', u'review']
[u'race', u'dent', u'real', u'titl', u'hop']
[u'elect', u'govt', u'toughen', u'law', u'labor', u'say']
[u'rooney', u'doubl', u'send', u'unit', u'wembley']
[u'ruddock', u'ask', u'state', u'territori', u'urgent']
[u'russia', u'launch', u'generat', u'nuclear', u'submarin']
[u'fisher', u'urg', u'support', u'inland', u'aqua', u'farm']
[u'union', u'anti', u'campaign', u'target', u'margin', u'seat']
[u'search', u'continu', u'miss', u'fisherman']
[u'search', u'blue', u'mountain', u'bushwalk', u'continu']
[u'search', u'japanes', u'tourist', u'continu', u'near']
[u'sexual', u'health', u'expert', u'converg', u'sydney', u'world']
[u'shark', u'half', u'time']
[u'silver', u'birch', u'claim', u'grand', u'nation']
[u'charg', u'biki', u'clubhous', u'arson', u'attack']
[u'soldier', u'home', u'duti', u'afghanistan']
[u'teacher', u'face', u'cut', u'bishop', u'plan']
[u'south', u'lead', u'knight', u'break']
[u'stage', u'hockey', u'centr', u'open', u'hobart']
[u'state', u'idea', u'teacher', u'perform']
[u'superbug', u'clean', u'continu', u'sydney', u'hospit']
[u'swan', u'lion', u'tight', u'battl']
[u'swan', u'strong', u'lion']
[u'sydney', u'hospit', u'deni', u'superbug', u'outbreak']
[u'tait', u'enjoy', u'settl', u'life', u'fast', u'lane']
[u'teen', u'charg', u'sunnybank', u'assault']
[u'thailand', u'search', u'flood', u'survivor']
[u'troop', u'return', u'darwin', u'afghanistan']
[u'help', u'rescu', u'teen', u'burn']
[u'helicopt', u'crash', u'iraq']
[u'union', u'launch', u'campaign', u'oust', u'liber']
[u'union', u'spend', u'anti', u'workchoic']
[u'continu', u'iranian', u'detent', u'despit', u'protest']
[u'urg', u'north', u'korea', u'bring', u'nuclear', u'inspector']
[u'urg', u'north', u'korea', u'invit', u'iaea', u'shut', u'nuclear']
[u'author', u'investig', u'fatal', u'food', u'poison']
[u'chief', u'health', u'offic', u'sack']
[u'health', u'minist', u'criticis', u'nurs', u'home']
[u'victorian', u'michelsson', u'win', u'canberra', u'marathon']
[u'govt', u'provid', u'train', u'unemploy']
[u'warrior', u'thrash', u'cowboy']
[u'yousuf', u'eager', u'captain', u'pakistan']
[u'rail', u'freight', u'revamp']
[u'want', u'rainwat', u'tank']
[u'opposit', u'dismiss', u'rainwat', u'tank', u'report']
[u'alic', u'solar', u'citi']
[u'appeal', u'perth', u'nativ', u'titl', u'rule']
[u'atkinson', u'deni', u'polic', u'corrupt']
[u'investig', u'claim', u'employ', u'cheat', u'super']
[u'australasian', u'resourc', u'trade']
[u'australia', u'readi', u'competit', u'say', u'pont']
[u'sharehold', u'fund', u'lodg', u'compo']
[u'backlog', u'slow', u'drought', u'applic', u'process']
[u'princ', u'william', u'middleton', u'blair']
[u'baghdad', u'blast', u'kill']
[u'bandido', u'refus', u'bail', u'rebel']
[u'bayliss', u'drop', u'toseland', u'stand']
[u'beaconsfield', u'rescuer', u'admit', u'break', u'safeti', u'law']
[u'beaconsfield', u'rescu', u'team', u'speak']
[u'bendigo', u'council', u'stand', u'self', u'promot']
[u'blair', u'look', u'elect']
[u'braun', u'fin', u'gaff']
[u'brisban', u'council', u'continu', u'water', u'tank', u'rebat']
[u'break', u'hill', u'consid', u'form', u'young', u'labor', u'group']
[u'buoyant', u'fulli', u'employ', u'economi', u'fals', u'imag']
[u'busi', u'council', u'boss', u'attack', u'indigen', u'inequ']
[u'busi', u'keen', u'employ', u'indigen', u'worker', u'brough']
[u'camera', u'road', u'safeti', u'risk']
[u'cane', u'grower', u'group', u'mull']
[u'carr', u'selwood', u'charg', u'tribun']
[u'plan', u'help', u'prevent', u'emerg', u'chao']
[u'cervic', u'cancer', u'vaccin', u'program', u'begin', u'school']
[u'chancellor', u'challeng', u'sale', u'gold']
[u'charman', u'return', u'kangaroo', u'clash']
[u'cliff', u'fall', u'land', u'hospit']
[u'closer']
[u'club', u'urg', u'metal', u'detector', u'shock', u'weapon']
[u'urg', u'council', u'consid', u'recycl', u'water']
[u'cockatoo', u'damag', u'unanderra', u'sport', u'field']
[u'construct', u'start', u'busi', u'incub']
[u'coonan', u'report', u'signific', u'progress', u'broadband']
[u'council', u'say', u'nudist', u'beach']
[u'council', u'tell', u'resid', u'listen']
[u'court', u'award', u'payment', u'gunn']
[u'council', u'push', u'workchoic', u'agreement']
[u'cuttlefish', u'risk', u'desalin', u'plant']
[u'cyclist', u'head', u'long', u'chariti', u'trek']
[u'remembr', u'holocaust', u'survivor', u'hold']
[u'debus', u'urg', u'right', u'charter']
[u'defenc', u'expans', u'brake', u'road', u'plan']
[u'democrat', u'drop', u'deadlin', u'troop', u'withdraw']
[u'demon', u'look', u'forward', u'say', u'bruce']
[u'desalin', u'answer']
[u'develop', u'take', u'plan', u'backward']
[u'develop', u'agenc', u'reject', u'point']
[u'disco', u'urg', u'drug', u'free', u'youth']
[u'driver', u'accus']
[u'drug', u'figur', u'stabilis', u'decad', u'increas']
[u'east', u'gippsland', u'fuel', u'reduct', u'burn']
[u'east', u'java', u'volcano', u'victim', u'seek', u'asylum']
[u'elder', u'plan', u'decommiss', u'lake']
[u'expert', u'blast', u'horribl', u'renew', u'energi', u'idea']
[u'fake', u'credit', u'card', u'spend', u'spree']
[u'fatal', u'crash', u'take', u'toll']
[u'fear', u'fraser', u'road', u'unsaf']
[u'fear', u'local', u'govt', u'chang', u'hurt', u'indigen']
[u'govt', u'urg', u'boost', u'council', u'fund']
[u'firebreak', u'meet', u'show', u'citi', u'communiti', u'cooper']
[u'danger', u'season', u'spark', u'burn', u'off', u'warn']
[u'threat']
[u'burnley', u'tunnel', u'coron']
[u'fli', u'doctor', u'fund', u'inject']
[u'food', u'poison', u'victim', u'remain', u'hospit']
[u'bundaberg', u'hospit', u'director', u'face', u'review']
[u'garuda', u'head', u'seek', u'releas']
[u'forrest', u'seek', u'feder', u'fund', u'rail', u'revamp']
[u'newcom', u'test', u'squad']
[u'free', u'water', u'tank', u'cheaper', u'dam', u'report']
[u'gibb', u'struggl', u'england', u'clash']
[u'girl', u'medic', u'golf', u'ball', u'accid']
[u'global', u'warm', u'nuclear', u'power', u'health', u'risk']
[u'gold', u'coast', u'face', u'court', u'firearm', u'charg']
[u'golden', u'casket', u'betray', u'criticis']
[u'govt', u'accus', u'put', u'women', u'refug', u'servic']
[u'govt', u'consid', u'ban', u'pseudoephedrin', u'product']
[u'govt', u'fund', u'water', u'effici', u'effort']
[u'govt', u'region', u'freight', u'rail', u'network']
[u'govt', u'continu', u'lead', u'test', u'meet', u'local']
[u'govt', u'rail', u'freight', u'network']
[u'govt', u'warn', u'esper', u'fish', u'contamin']
[u'group', u'want', u'wood', u'burn', u'power']
[u'haas', u'back', u'push', u'carnarvon', u'polic', u'station']
[u'habib', u'deni', u'make', u'statement']
[u'hail', u'damag', u'expect', u'delay', u'vintag']
[u'headland', u'miss']
[u'health', u'dept', u'woe', u'prompt', u'inquiri']
[u'hear', u'speech', u'impair', u'relay', u'servic']
[u'heritag', u'train', u'group', u'face', u'huge', u'task', u'rebuild']
[u'heytesburi', u'beef', u'invest', u'machineri']
[u'hospit', u'chief', u'resign']
[u'hospit', u'rehab', u'unit', u'open', u'refurbish']
[u'hous', u'signal', u'tough', u'approach', u'disrupt']
[u'howard', u'stake', u'claim', u'underdog']
[u'hint', u'thaw', u'mourinho', u'abramovich', u'relat']
[u'immigr', u'dept', u'look', u'sham', u'marriag', u'claim']
[u'indigen', u'actor', u'justin', u'saunder', u'die']
[u'indigen', u'diabet', u'gene', u'fantasi', u'say', u'research']
[u'insurg', u'attack', u'kill', u'iraqi', u'troop']
[u'intern', u'student', u'number', u'fall', u'say']
[u'ipswich', u'develop', u'water', u'restrict']
[u'iraqi', u'polic', u'kill', u'friend', u'incid']
[u'irish', u'villag', u'get', u'harlot']
[u'irrig', u'rais', u'water', u'secur', u'studi', u'fund']
[u'kangaroo', u'arent', u'coast', u'team', u'lethal']
[u'kangaroo', u'stand', u'laidley']
[u'launceston', u'council', u'seek', u'govt', u'flood', u'levi', u'fund']
[u'launceston', u'jail', u'drug', u'offenc']
[u'lawyer', u'confid', u'compo', u'success']
[u'leeton', u'motorcycl', u'rider', u'die', u'tumbarumba', u'crash']
[u'lincicom', u'surg', u'past', u'davi', u'ochoa']
[u'log', u'deliveri', u'allow', u'auspin', u'fight']
[u'london', u'theatr', u'pay', u'tribut', u'gandhi']
[u'long', u'call', u'time', u'intern', u'career']
[u'madonna', u'visit', u'malawi', u'orphanag']
[u'malkovich', u'lilli', u'forese']
[u'mamdouh', u'habib', u'court']
[u'charg', u'berri', u'home', u'invas']
[u'trial', u'alleg', u'murder', u'flatmat']
[u'panic', u'kidnap', u'court', u'hear']
[u'trap', u'crash', u'ordeal']
[u'mason', u'apologis', u'sydney', u'journalist']
[u'massiv', u'prompt', u'evacu', u'suburban']
[u'mayor', u'outlin', u'water', u'pipelin', u'cost']
[u'meet', u'consid', u'tourism', u'promot', u'fund', u'cut']
[u'tell', u'bend', u'rule', u'beaconsfield', u'rescu']
[u'mine', u'boom', u'forc', u'bureaucrat', u'reconsid']
[u'minist', u'refus', u'resign', u'call']
[u'minist', u'vow', u'bring', u'fresh', u'view', u'portfolio']
[u'miss', u'journalist', u'parent', u'appeal']
[u'miss', u'elder', u'safe']
[u'monaco', u'princ', u'albert', u'visit', u'japan']
[u'charg', u'milton']
[u'discrep', u'east', u'timor', u'poll']
[u'illawarra', u'resid', u'struggl', u'home']
[u'mount', u'burrowa', u'blaze', u'burn']
[u'roland', u'properti', u'danger']
[u'kid', u'escap', u'burn', u'unit']
[u'nation', u'worri', u'licenc', u'inadequ']
[u'emerg', u'depart', u'alic', u'spring']
[u'polic', u'corrupt', u'inquiri', u'need']
[u'newton', u'john', u'daughter', u'recov', u'anorexia']
[u'nichol', u'promot', u'opposit', u'reshuffl']
[u'nigerian', u'elect', u'caus', u'riot']
[u'nimmitabel', u'showgirl', u'win', u'royal', u'easter', u'titl']
[u'profit', u'kindergarten', u'doubl', u'capac']
[u'economi', u'predict', u'slow']
[u'nativ', u'titl', u'decis', u'spark', u'fish', u'debat']
[u'nurs', u'face', u'golf', u'death', u'inquest']
[u'car', u'rais', u'fund', u'sid', u'research']
[u'opposit', u'back', u'plan', u'send', u'sydney', u'toxic', u'wast']
[u'opposit', u'urg', u'govt', u'support', u'emerg']
[u'orkopoulo', u'refus', u'bail', u'child', u'charg']
[u'orkopoulo', u'refus', u'bail', u'latest', u'charg']
[u'oxfam', u'launch', u'appeal', u'darfur', u'drink', u'water']
[u'page', u'call', u'minist', u'north', u'coast']
[u'paint', u'factori', u'caus', u'million', u'worth', u'damag']
[u'parishion', u'flee', u'burn', u'church']
[u'owner', u'accus', u'kick']
[u'die', u'randwick']
[u'pike', u'claim', u'support', u'brack', u'despit', u'depart']
[u'plan', u'counter', u'terror', u'threat', u'unveil']
[u'polic', u'diver', u'test', u'renmark']
[u'polic', u'investig', u'biki', u'airport', u'brawl']
[u'polic', u'target', u'speed', u'motorbik']
[u'pont', u'wari', u'zealand', u'threat']
[u'possibl', u'help', u'alic', u'spring', u'polic']
[u'power', u'long', u'beach']
[u'pseudoephedrin', u'wont', u'stop', u'problem']
[u'public', u'draft', u'region', u'develop']
[u'pulp', u'say', u'vital', u'growth']
[u'urg', u'consid', u'stem', u'cell', u'research', u'issu']
[u'race', u'club', u'plan', u'lack', u'substanc']
[u'raider', u'ahead', u'break']
[u'raider', u'edg', u'desper', u'rooster']
[u'rail', u'freight', u'move', u'boost', u'bypass', u'plan']
[u'rain', u'bring', u'relief']
[u'research', u'compil', u'hazard', u'rat']
[u'resort', u'look', u'boost', u'local', u'recruit']
[u'retir', u'villag', u'resid', u'face', u'evict']
[u'ricci', u'gear', u'speed', u'racer']
[u'rough', u'sea', u'threaten', u'search', u'tourist']
[u'row', u'boat', u'damag', u'accid']
[u'rudd', u'hockey', u'sunris', u'stint']
[u'rudd', u'hockey', u'drop', u'sunris']
[u'rudd', u'hockey', u'quit', u'sunris']
[u'rudd', u'hockey', u'quit', u'sunris', u'spot']
[u'rudd', u'quit', u'week', u'sunris', u'appear']
[u'paint', u'factori', u'biggest', u'recent', u'time']
[u'train', u'antiqu', u'say', u'liber', u'leader']
[u'school', u'chaplain', u'welcom', u'trial', u'delay']
[u'search', u'miss', u'suspend']
[u'search', u'lion', u'continu', u'attack']
[u'senat', u'reject', u'astronom', u'water', u'price', u'rise']
[u'shoot', u'fire', u'robberi']
[u'silo', u'cool', u'resid', u'send', u'home']
[u'silver']
[u'korea', u'delay', u'rice', u'north']
[u'small', u'busi', u'optimist']
[u'sonni', u'delight', u'young', u'squad']
[u'suicid', u'bomber', u'kill', u'policemen', u'north', u'east']
[u'summit', u'paladin', u'resourc', u'suspend', u'share', u'trade']
[u'sunris', u'segment', u'difficult', u'rudd', u'say']
[u'sydney', u'bus', u'launch', u'fast', u'tunnel', u'servic']
[u'garden', u'sentenc', u'grow', u'cannabi']
[u'govt', u'commit', u'replac', u'polic', u'boat']
[u'tattersal', u'manag', u'golden', u'casket']
[u'thaiday', u'extend', u'bronco', u'stay']
[u'signific', u'holocaust', u'remembr']
[u'thomass', u'defenc', u'team', u'withdraw']
[u'titan', u'swain', u'face', u'week']
[u'toxic', u'wast', u'export', u'plan', u'meet', u'opposit']
[u'turbin', u'expect', u'provid', u'power']
[u'turnbul', u'support', u'export', u'sydney', u'toxic', u'wast']
[u'kimberley', u'juvenil', u'charg']
[u'uranium', u'oxid', u'product', u'slump']
[u'game', u'profit', u'improv', u'health', u'servic']
[u'health', u'minist', u'refus', u'resign', u'call']
[u'rail', u'network', u'upgrad']
[u'voter', u'judg', u'rudd', u'sunris', u'howard']
[u'walgett', u'busi', u'replac', u'secur', u'bar']
[u'wall', u'street', u'lead', u'aust', u'market', u'record', u'high']
[u'waterfront', u'project', u'buoy', u'construct', u'figur']
[u'water', u'pip', u'plan', u'commonsens']
[u'season', u'rain', u'help', u'fish', u'competitor']
[u'weve', u'prove', u'belong', u'say', u'ireland', u'skipper']
[u'wokurna', u'face', u'child', u'porn', u'charg']
[u'woolworth', u'fin', u'breach', u'fuel', u'law']
[u'youth', u'homeless', u'inquiri', u'head', u'tell', u'crisi']
[u'zentai', u'lose', u'appeal', u'extradit', u'hear']
[u'govern', u'flag', u'tougher', u'water', u'restrict']
[u'recognis', u'rise', u'hawkin']
[u'lose', u'battl', u'child', u'offend', u'jail']
[u'alic', u'polic', u'reshuffl', u'highlight', u'staff']
[u'alleg', u'teenag', u'rapist', u'grant', u'bail']
[u'alleg', u'teenag', u'rapist', u'releas', u'bail']
[u'look', u'insid', u'america', u'cultur']
[u'anger', u'mount', u'univers', u'massacr']
[u'angri', u'resid', u'coal', u'dust', u'concern']
[u'broughton', u'hall', u'resid', u'hospit']
[u'set', u'target', u'employ', u'indigen', u'worker']
[u'asotasi', u'captain', u'kiwi']
[u'astronaut', u'run', u'space', u'marathon']
[u'call', u'stronger', u'misconduct', u'fin']
[u'australian', u'grand', u'prix', u'chief', u'resign']
[u'australia', u'fine', u'tune', u'asian', u'hop', u'singapor']
[u'babi', u'girl', u'pull', u'river', u'torren']
[u'babi', u'remain', u'critic', u'condit', u'river']
[u'ball', u'sidelin']
[u'bell', u'shakespear', u'get', u'school', u'program']
[u'bouncer', u'grant', u'leav', u'appeal']
[u'brack', u'stand', u'minist', u'amid', u'nurs', u'home', u'death']
[u'broom', u'shire', u'issu', u'specul', u'invest', u'warn']
[u'bushland', u'protect', u'futur', u'generat']
[u'busi', u'council', u'call', u'coag', u'overhaul']
[u'busi', u'warn', u'senat', u'wrangl', u'block']
[u'oper', u'seek', u'council', u'support']
[u'cannon', u'keen', u'maintain', u'rugbi', u'tie']
[u'carbon', u'success', u'offset', u'expert']
[u'litter', u'bug', u'face', u'fin']
[u'chamber', u'hop', u'court', u'rule', u'end', u'legal', u'battl']
[u'citrus', u'grower', u'look', u'forward', u'stronger', u'export']
[u'cityrail', u'manag', u'face', u'commut']
[u'clash', u'palestinian', u'journalist', u'protest']
[u'closer']
[u'news', u'coverag', u'shoot', u'virginia']
[u'combet', u'open', u'mind', u'parliament']
[u'conroy', u'director', u'tell', u'court', u'seek', u'advic']
[u'consortium', u'make', u'fourth']
[u'consum', u'affair', u'investig', u'retir', u'villag']
[u'council', u'count', u'cost', u'suppli', u'main']
[u'council', u'forward', u'petit', u'oppos', u'liquor', u'store']
[u'councillor', u'fail', u'oxley', u'caus']
[u'council', u'properti', u'council', u'divid']
[u'council', u'debat', u'locat', u'counter', u'terror']
[u'council', u'seek', u'urgent', u'meet', u'cross', u'border']
[u'council', u'toughen', u'stanc', u'citi', u'litter']
[u'court', u'case', u'hear', u'fish', u'threaten', u'grey', u'nurs']
[u'crash', u'victim', u'repeat', u'speed', u'offend']
[u'dalbi', u'convert']
[u'deputi', u'mayor', u'urg', u'croc', u'sight', u'polici', u'rethink']
[u'detail', u'univers', u'shooter', u'emerg']
[u'develop', u'commiss', u'highlight', u'esper', u'port']
[u'dingo', u'attack', u'girl', u'fraser', u'island']
[u'ead', u'call', u'mediat', u'solv', u'selwood', u'headland']
[u'eagl', u'defend', u'selwood']
[u'eagl', u'deni', u'selwood', u'comment']
[u'educ', u'union', u'back', u'propos', u'reward', u'scheme']
[u'edward', u'norton', u'go', u'green', u'film']
[u'esper', u'lead', u'inquiri', u'take', u'evid']
[u'ethanol', u'industri', u'call', u'govt', u'support']
[u'evid', u'conclud', u'kidnap', u'trial']
[u'council', u'say', u'govt', u'choic', u'sack']
[u'farmer', u'lament', u'steal', u'windmil']
[u'farmer', u'fear', u'tough', u'winter', u'weather', u'continu']
[u'farm', u'group', u'call', u'long', u'term', u'region', u'rail', u'pledg']
[u'father', u'suspect', u'kill', u'gambl', u'debt']
[u'feder', u'seat', u'werrriwa', u'hold', u'elect']
[u'govt', u'urg', u'boost', u'ethanol', u'industri', u'support']
[u'fifth', u'nurs', u'home', u'resid', u'die']
[u'accus', u'atsic', u'fraud']
[u'flower', u'will', u'step', u'asid', u'earli']
[u'fli', u'doctor', u'highlight', u'grow', u'cost']
[u'fli', u'doctor', u'strap', u'cash', u'despit']
[u'collingwood', u'legend', u'die', u'age']
[u'milk', u'director', u'fraud', u'charg']
[u'garri', u'mcdonald', u'talk', u'act', u'depress']
[u'gastric', u'close', u'nurs', u'home']
[u'gastro', u'outbreak', u'claim', u'fifth', u'victim']
[u'gere', u'kiss', u'outrag', u'indian']
[u'govern', u'consid', u'burrup', u'heritag']
[u'govt', u'put', u'cash', u'export']
[u'govt', u'urg', u'establish', u'rail', u'freight', u'refer']
[u'govt', u'warn', u'tougher', u'restrict', u'dam']
[u'grant', u'council', u'green', u'light', u'revamp']
[u'green', u'mental', u'leav', u'communiti', u'vulner']
[u'grow', u'prompt', u'mental', u'health', u'fear']
[u'growth', u'plan', u'import', u'decis', u'current']
[u'gunman', u'commit', u'suicid', u'colleg', u'campus']
[u'gunman', u'commit', u'suicid', u'campus', u'shoot']
[u'habib', u'question', u'aust', u'high', u'commiss']
[u'hardi', u'vintag', u'previous', u'year']
[u'headland', u'selwood', u'scuffl', u'end', u'tribun']
[u'highlight', u'australia', u'lanka']
[u'hockey', u'dismiss', u'rudd', u'donkey']
[u'hogg', u'form', u'delight', u'pont']
[u'hop', u'remain', u'solar', u'scheme']
[u'howard', u'question', u'authent', u'data']
[u'hunter', u'growth', u'leav', u'hospit', u'worker', u'short']
[u'indian', u'booker', u'win', u'author', u'orang', u'shortlist']
[u'indian', u'firm', u'empir', u'rubber']
[u'indonesia', u'promis', u'safeti', u'overhaul']
[u'industri', u'laundri', u'blayney', u'concern', u'sewer']
[u'industri', u'drive', u'propos', u'ship', u'berth']
[u'injur', u'sorenstam', u'miss', u'month']
[u'injuri', u'fear', u'eas', u'ferdinand']
[u'injuri', u'forc', u'wallabi', u'cannon', u'retir']
[u'interview', u'ricki', u'pont', u'nathan', u'bracken']
[u'irrig', u'consid', u'water', u'plan', u'challeng']
[u'jacob', u'clear', u'contact', u'charg']
[u'job', u'factori', u'agreement', u'stall']
[u'kalgoorli', u'boulder', u'lose', u'solar', u'citi']
[u'kambah', u'resid', u'phone', u'day']
[u'labor', u'mine', u'polici', u'dead', u'minchin', u'say']
[u'lack', u'transair', u'charg', u'like', u'devast', u'crash']
[u'lake', u'carabundup', u'death', u'consid', u'suspici']
[u'local', u'grain', u'line', u'upgrad', u'encourag']
[u'logan', u'urg', u'attend', u'southern', u'power', u'woe', u'meet']
[u'madonna', u'visit', u'malawi', u'villag']
[u'get', u'prison', u'time', u'film', u'young', u'femal']
[u'face', u'court', u'accus', u'drive']
[u'martin', u'boo', u'alic', u'crime', u'rat']
[u'massacr', u'spark', u'call', u'gun', u'buyback']
[u'melbourn', u'overhaul', u'undergrad', u'program']
[u'melbourn', u'univers', u'criticis', u'discount']
[u'melbourn', u'univers', u'scholarship', u'plan', u'label']
[u'melb', u'shake', u'curriculum', u'structur']
[u'water', u'reduc', u'environment']
[u'minist', u'take', u'respons', u'burnley', u'tunnel']
[u'modern', u'design', u'lack', u'support']
[u'mother', u'starv', u'infant', u'appeal', u'year', u'sentenc']
[u'criticis', u'bandaid', u'measur', u'streaki']
[u'say', u'plan', u'age', u'care', u'evict', u'illeg']
[u'murray', u'restrict']
[u'myle', u'cop', u'week']
[u'myle', u'face', u'lengthi', u'spell']
[u'nagasaki', u'mayor', u'serious', u'wound', u'shoot']
[u'nairn', u'reject', u'bulk', u'bill', u'claim']
[u'neck', u'injuri', u'forc', u'cannon', u'retir']
[u'nelson', u'back', u'indigen', u'march']
[u'commiss', u'recommend', u'council', u'chang']
[u'independ', u'chairwoman', u'head', u'lobster']
[u'licenc', u'holder', u'break', u'speed', u'limit']
[u'polic', u'belt', u'closer', u'roll']
[u'mine', u'polici', u'fail', u'evan', u'say']
[u'simpson', u'book', u'sale', u'cancel']
[u'olmert', u'welcom', u'saudi', u'peac', u'plan']
[u'cultur']
[u'panel', u'urg', u'newcastl', u'coal', u'export', u'levi']
[u'patient', u'wait', u'hour', u'royal']
[u'buy', u'stake', u'casino', u'compani']
[u'pike', u'tell', u'parliament', u'sorrow', u'nurs', u'home']
[u'plea', u'drug', u'alcohol', u'rehab', u'servic']
[u'plea', u'drug', u'alcohol', u'servic']
[u'shock', u'dread', u'massacr']
[u'urg', u'dental', u'school', u'plan']
[u'podcast', u'australia', u'lanka']
[u'polic', u'crack', u'worker', u'boom', u'north']
[u'polic', u'investig', u'secur', u'guard', u'shoot']
[u'polic', u'involv', u'high', u'speed', u'chase']
[u'policeman', u'face', u'assault', u'committ']
[u'poll', u'result', u'reflect', u'high', u'protest', u'vote', u'rudd', u'say']
[u'poll', u'show', u'rudd', u'prefer']
[u'poll', u'labor', u'ahead']
[u'pregnant', u'woman', u'trap', u'sturt', u'highway']
[u'progress', u'report', u'teacher', u'shortag', u'problem']
[u'pyne', u'announc', u'review', u'nurs', u'home', u'death']
[u'opposit', u'criticis', u'local', u'govern', u'overhaul']
[u'question', u'rais', u'pulp', u'consult']
[u'question', u'rais', u'health', u'merger', u'save']
[u'ramo', u'horta', u'demand', u'probe', u'elect', u'pass']
[u'report', u'reveal', u'delay', u'find', u'sick', u'teen']
[u'rawnet', u'go', u'administr']
[u'refug', u'staff', u'reach', u'agreement', u'condit']
[u'renat', u'mokbel', u'wish', u'toni', u'jail']
[u'research', u'find', u'passion', u'high', u'alcoa']
[u'restraint', u'order', u'grant', u'rspca', u'member']
[u'restrict', u'reflect', u'south', u'east', u'dam']
[u'retir', u'villag', u'oper', u'say', u'facil']
[u'retir', u'villag', u'oper', u'seek', u'altern']
[u'retir', u'villag', u'sale', u'affect', u'resid', u'dubbo']
[u'roadsid', u'bomb', u'kill', u'vehicl']
[u'ronan', u'keat', u'play', u'cambodia']
[u'royal', u'hobart', u'microscop', u'patient']
[u'urg', u'time', u'vandalis', u'fort']
[u'rudd', u'lift', u'workplac', u'plan']
[u'rudd', u'promis', u'chang', u'glass', u'claim']
[u'rudd', u'plan', u'good', u'start', u'say', u'actu']
[u'rudd', u'speech', u'nation', u'press', u'club']
[u'rudd', u'unveil', u'plan']
[u'sale', u'ensur', u'monjebup', u'creek', u'reserv', u'protect']
[u'senat', u'committe', u'chairman', u'issu', u'grandstand']
[u'senat', u'say', u'legal', u'jeopardis']
[u'senior', u'die', u'motoris', u'cart', u'mishap']
[u'sharehold', u'hear', u'bendigo', u'bank', u'takeov', u'plan']
[u'south', u'australia', u'saudi', u'arabia', u'uranium', u'rann']
[u'spitfir', u'honour', u'wwii', u'hero']
[u'mari', u'blaze', u'caus', u'unknown']
[u'stoner', u'say', u'opposit', u'push', u'region', u'issu']
[u'student', u'play', u'dead', u'escap', u'colleg', u'gunman']
[u'summit', u'fail', u'agre', u'altern', u'fuel']
[u'suppress', u'accus', u'photo', u'question']
[u'surf', u'contest', u'reschedul']
[u'swimmer', u'expect', u'recoveri', u'boat']
[u'sydney', u'remain', u'jail', u'fake']
[u'sydney', u'road', u'plan', u'appal', u'opposit']
[u'takeov', u'talk', u'fail', u'boost', u'aust', u'market']
[u'forest', u'bait']
[u'premier', u'offer', u'condol', u'campus']
[u'teen', u'death', u'drive', u'case', u'head', u'court']
[u'territori', u'govt', u'boost', u'todd', u'mall', u'secur', u'fund']
[u'thoma', u'defenc', u'team', u'abandon', u'case']
[u'thousand', u'power', u'equip', u'fail']
[u'thursday', u'inquest', u'hear', u'skipper', u'train', u'concern']
[u'ticket', u'sale', u'tomorrow', u'rugbi', u'intern']
[u'time', u'right', u'properti', u'bargain', u'say', u'survey']
[u'townsvill', u'forum', u'put', u'focus', u'north', u'ecosystem']
[u'tradit', u'owner', u'buy', u'home', u'brough', u'say']
[u'traffic', u'delay', u'worsen']
[u'tupou', u'smith', u'shrug', u'injuri', u'concern']
[u'turinui', u'doubt', u'wale', u'intern']
[u'turinui', u'season']
[u'underworld', u'film', u'bring', u'star', u'gippsland']
[u'union', u'say', u'govt', u'underestim', u'teacher', u'shortag']
[u'union', u'uniform', u'safeti', u'standard']
[u'make', u'appeal', u'iraq', u'refuge']
[u'farmer', u'begin', u'legal', u'action']
[u'grappl', u'horrif', u'campus', u'shoot']
[u'massacr', u'claim']
[u'shoot', u'claim']
[u'power', u'world', u'say', u'govt']
[u'word', u'erupt', u'leak', u'data']
[u'water', u'tank', u'replac', u'traveston', u'bligh']
[u'whyalla', u'council', u'beat', u'cuttlefish', u'futur']
[u'whyalla', u'industri', u'estat', u'revenu', u'earner']
[u'make', u'bigger', u'perth']
[u'wit', u'tell', u'campus', u'gunman', u'terror']
[u'woolworth', u'eye', u'cole', u'asset']
[u'wwii', u'veteran', u'bobbi', u'gibb', u'farewel', u'spitfir']
[u'yellowcak', u'jar', u'olymp', u'villag']
[u'academ', u'cast', u'doubt', u'figur', u'justifi']
[u'govern', u'back', u'rudd', u'plan']
[u'adelaid', u'parkland', u'heritag', u'list', u'urgent']
[u'interest', u'take', u'control', u'kangaroo']
[u'defend', u'effort', u'child', u'offend']
[u'aldous', u'want', u'smooth', u'transit', u'council', u'merger']
[u'industri', u'commiss', u'nurs', u'number']
[u'aquanaut', u'resurfac', u'underwat', u'holiday']
[u'asian', u'languag', u'studi', u'crucial', u'say', u'rudd']
[u'aussi', u'aquanaut', u'keen']
[u'aussi', u'amid', u'global', u'distrust']
[u'baghdad', u'bomb', u'kill', u'dozen']
[u'baghdad', u'bomb', u'kill']
[u'ballarat', u'retir', u'villag', u'resid']
[u'bangladeshi', u'miss', u'visa', u'despit', u'high', u'court']
[u'beatti', u'promis', u'help', u'bowen', u'basin', u'mine', u'town']
[u'bendigo', u'shape', u'record', u'april']
[u'biosecur', u'procrastin', u'endang', u'kangaroo']
[u'suffer', u'head', u'wound', u'train', u'station', u'attack']
[u'brack', u'want', u'probe', u'alleg', u'broughton', u'hall']
[u'breast', u'cancer', u'screen', u'rat', u'target']
[u'brisban', u'move', u'unsustain', u'direct']
[u'british', u'high', u'commission', u'address']
[u'broughton', u'hall', u'boss', u'horrifi', u'staff', u'cover']
[u'call', u'compulsori', u'metal', u'detector', u'meet', u'mix']
[u'campus', u'pmopen']
[u'carpent', u'hint', u'desal', u'plant']
[u'cassisi', u'extend', u'contract', u'power']
[u'look', u'rasp', u'cash', u'flow']
[u'central', u'perman', u'quarantin', u'road']
[u'chisholm', u'stay', u'brumbi']
[u'closer']
[u'coca', u'cola', u'amatil', u'branch', u'beer', u'brew']
[u'coca', u'cola', u'establish', u'alcohol', u'breweri', u'aust']
[u'colin', u'firth', u'join', u'mamma']
[u'combet', u'head', u'frontbench', u'say', u'howard']
[u'conflict', u'claim', u'water', u'reject']
[u'consum', u'spook', u'threat', u'rate', u'rise']
[u'costigan', u'ban', u'match']
[u'costigan', u'charg', u'alleg', u'head', u'butt']
[u'council', u'keen', u'meet', u'driver', u'train', u'centr']
[u'councillor', u'warn', u'train', u'overcrowd', u'risk', u'safeti']
[u'council', u'quiz', u'mcadam', u'local', u'govt', u'shake']
[u'crook', u'catch', u'dial', u'cop', u'drug']
[u'cyclon', u'push', u'woodsid', u'product']
[u'detail', u'gunman', u'emerg']
[u'differ', u'way', u'honour', u'anzac']
[u'attack', u'sheep', u'worri', u'northern', u'farmer']
[u'doom', u'patrol', u'boat', u'need', u'say', u'expert']
[u'doubt', u'cast', u'abetz', u'prescrib', u'burn']
[u'down', u'council', u'confus', u'sudden', u'chang']
[u'driver', u'warn', u'fuel', u'reduct', u'burn', u'smoke']
[u'driver', u'face', u'court', u'pedestrian', u'die']
[u'drought', u'caus', u'flood', u'cattl', u'saleyard']
[u'drug', u'traffic', u'doesnt', u'warrant', u'death', u'aust', u'expert']
[u'empir', u'rubber', u'worker', u'await', u'entitl']
[u'eveleigh', u'railway', u'workshop', u'endang']
[u'eveleigh', u'railway', u'workshop', u'endang', u'nation']
[u'wife', u'testifi', u'accus', u'gunn', u'payrol']
[u'famili', u'find', u'home', u'escap', u'burn', u'unit']
[u'farmer', u'urg', u'hold', u'make', u'decis']
[u'father', u'miss', u'girl', u'appeal', u'public', u'help']
[u'fear', u'huge', u'outback', u'shire', u'beatti']
[u'feder', u'fund', u'water', u'wise', u'hous', u'develop']
[u'feder', u'govt', u'urg', u'help', u'fund', u'ballarat', u'secur']
[u'femal', u'discrimin', u'cost', u'asia', u'billion', u'studi']
[u'fish', u'market', u'fin', u'seafood', u'off']
[u'pilbara', u'work', u'track', u'cyclon']
[u'focus', u'fair', u'budget', u'acoss', u'urg', u'govt']
[u'footbal', u'fin', u'anti', u'semit', u'remark']
[u'great', u'ax', u'vaughan', u'fletcher']
[u'fortun', u'teller', u'seek', u'sign', u'predict', u'french', u'poll']
[u'futur', u'uncertain', u'retir', u'villag']
[u'gather', u'hop', u'distract', u'farm', u'famili']
[u'right', u'debat', u'threaten', u'worldwid', u'anglican']
[u'giant', u'termit', u'pose', u'threat', u'crop']
[u'gillard', u'reject', u'amwu', u'concern', u'workplac', u'polici']
[u'girl', u'die', u'midland', u'crash']
[u'global', u'warm', u'see', u'threat', u'world', u'peac']
[u'away', u'money', u'rudd', u'plan', u'labor']
[u'govern', u'cave', u'timet']
[u'govern', u'impress', u'lockhart', u'river']
[u'govern', u'spend', u'fine', u'money', u'road', u'improv']
[u'govt', u'ridicul', u'refuge', u'swap']
[u'govt', u'say', u'keep', u'dark', u'solar', u'scheme']
[u'group', u'consid', u'climat', u'chang', u'impact', u'nation']
[u'gunman', u'buy', u'gun', u'legal']
[u'gun', u'prevent', u'massacr', u'say', u'lobbyist']
[u'gyrocopt', u'pilot', u'surviv', u'renmark', u'crash']
[u'habib', u'lose', u'relaunch', u'defam', u'action']
[u'hayden', u'inspir', u'say', u'gilchrist']
[u'health', u'dept', u'lift', u'esper', u'port', u'fish']
[u'hec', u'style', u'loan', u'scheme', u'tout', u'tafe']
[u'henjak', u'return', u'forc']
[u'heywood', u'pulp', u'plan', u'drop', u'favour', u'penola']
[u'howard', u'slam', u'labor', u'polici']
[u'humpti', u'grandmoth', u'name', u'year']
[u'indonesian', u'pledg', u'respect', u'court', u'rule']
[u'industri', u'action', u'risdon', u'prison']
[u'inquiri', u'investig', u'claim', u'nuclear', u'worker']
[u'rate', u'fear', u'push', u'consum', u'confid']
[u'isi', u'mayor', u'join', u'attack', u'merger', u'announc']
[u'itali', u'regain', u'number', u'rank', u'argentina']
[u'jealous', u'burglar', u'get', u'jail', u'time']
[u'jennif', u'lopez', u'sue', u'celebr']
[u'jetti', u'group', u'work', u'concept', u'plan']
[u'johnston', u'look', u'repeat', u'irish', u'perform']
[u'katherin', u'charg', u'stalk', u'death', u'threat']
[u'kerin', u'announc', u'retir', u'polit']
[u'labor', u'workplac', u'polici', u'attack']
[u'late', u'petit', u'liquor', u'store']
[u'leas', u'affect', u'break', u'hill', u'age', u'care']
[u'indigen', u'hous', u'comment']
[u'livestock', u'fee', u'suppli']
[u'loxton', u'waikeri', u'consid', u'rat', u'chang']
[u'maliki', u'set', u'date', u'control', u'iraqi', u'provinc']
[u'admit', u'anti', u'semit', u'abus']
[u'admit', u'kill', u'lover', u'shoelac']
[u'manypeak', u'site', u'return', u'indigen', u'hand']
[u'market', u'continu', u'high']
[u'mayor', u'fatal', u'shoot', u'challeng', u'democraci']
[u'mildura', u'gain', u'fast', u'connect']
[u'minist', u'meet', u'oppon', u'alic', u'demount']
[u'commonwealth', u'fund', u'skill', u'base']
[u'improv', u'midland', u'highway']
[u'mullet', u'reject', u'report', u'bulli', u'claim']
[u'nation', u'galleri', u'launch', u'indigen', u'program']
[u'busselton', u'hospit', u'offer', u'chemotherapi']
[u'children', u'commission', u'name']
[u'home', u'boom', u'canberra']
[u'newsradio', u'nationwid', u'year', u'coonan']
[u'nigerian', u'leader', u'press', u'ahead', u'vote']
[u'nigerian', u'opposit', u'threaten', u'boycott']
[u'nobel', u'prize', u'exhibit', u'open', u'sydney']
[u'busi', u'target', u'southern', u'boost', u'work']
[u'indigen', u'communiti', u'school']
[u'rural', u'welcom', u'emerg', u'train', u'fund']
[u'offic', u'leav', u'williamtown', u'base', u'afghanistan']
[u'opposit', u'push', u'investig']
[u'organis', u'market', u'profit', u'communiti']
[u'orica', u'share', u'rise', u'reject', u'takeov']
[u'orkopoulo', u'refus', u'bail']
[u'orkopoulo', u'refus', u'bail', u'child', u'charg']
[u'pack', u'innov', u'help', u'banana', u'industri', u'round']
[u'founder', u'guilti', u'travacalm', u'data', u'charg']
[u'pari', u'order', u'appear', u'court']
[u'patrol', u'boat', u'inquest', u'hear', u'request']
[u'peak', u'wool', u'bodi', u'merg']
[u'pension', u'group', u'suspici', u'closur']
[u'pest', u'control', u'agenc', u'label', u'bounti']
[u'plan', u'dept', u'want', u'counter']
[u'poland', u'ukrain', u'host', u'euro', u'final']
[u'polic', u'call', u'salmonella', u'nurs', u'home']
[u'polic', u'presenc', u'assur', u'follow', u'chang']
[u'polic', u'pilbara', u'crime', u'rate', u'drop']
[u'polic', u'warn', u'minist', u'comment', u'yellowcak']
[u'premier', u'meet', u'local', u'govern', u'review', u'commission']
[u'prison', u'plan', u'murray', u'bridg']
[u'professor', u'say', u'brisban', u'develop']
[u'program', u'reduc', u'smelter', u'emiss', u'work', u'say']
[u'push', u'altern', u'hous', u'retir']
[u'qanta', u'trial', u'flight', u'mobil', u'phone']
[u'qlds', u'live', u'fossil', u'risk', u'propos']
[u'rail', u'cross', u'death', u'unavoid', u'coron', u'find']
[u'railyard', u'popular', u'site']
[u'rare', u'gallipoli', u'footag', u'uncov']
[u'ratepay', u'ralli', u'bendigo', u'council']
[u'regul', u'confid', u'success', u'wheat', u'trial']
[u'renmark', u'council', u'outlin', u'park', u'restrict', u'plan']
[u'resid', u'meet', u'retir', u'villag', u'oper']
[u'river', u'plung', u'babi', u'die', u'hospit']
[u'rock', u'blame', u'fatal', u'crash']
[u'rock', u'blame', u'midland', u'highway', u'fatal']
[u'rudd', u'logic', u'refuge', u'swap', u'deal']
[u'rudd', u'step', u'imag']
[u'rural', u'welcom', u'broader', u'emerg', u'train', u'scheme']
[u'safeti', u'fear', u'miss', u'melbourn', u'girl']
[u'salt', u'propon', u'test', u'spider', u'like']
[u'opposit', u'reshuffl', u'frontbench']
[u'schoolgirl', u'vaccin']
[u'scientist', u'believ', u'state', u'locust', u'free']
[u'scrap', u'previous', u'reform', u'process', u'anger', u'mayor']
[u'scud', u'return', u'root', u'comeback', u'trail']
[u'secker', u'name', u'hous', u'rep', u'deputi', u'speaker']
[u'second', u'elect', u'decid', u'timor', u'presid']
[u'secur', u'guard', u'patrol', u'taxi', u'rank']
[u'selwood', u'clear', u'tribun']
[u'shire', u'say', u'blame', u'power', u'blackout']
[u'shower', u'melt', u'steel', u'kill', u'worker', u'china']
[u'staffer', u'grill', u'traveston', u'hear']
[u'static', u'electr', u'blame', u'massiv', u'paint']
[u'stem', u'cell', u'research', u'expert', u'speak', u'churchil']
[u'steven', u'skip', u'blue', u'train', u'neck', u'injuri']
[u'steven', u'miss', u'blue', u'date', u'eagl']
[u'penal', u'coloni']
[u'stone', u'throw', u'teenag', u'protect', u'madonna', u'malawi']
[u'struggl', u'wineri', u'drink', u'brighter', u'futur']
[u'studi', u'investig', u'link', u'qualiti']
[u'swap', u'deal', u'deter', u'asylum', u'seeker']
[u'leav', u'awa', u'answer']
[u'tasmania', u'appoint', u'commission', u'children']
[u'thousand', u'gather', u'candlelight', u'vigil', u'virginia']
[u'tire', u'lili', u'allen', u'scrap', u'date']
[u'titan', u'stay', u'silent', u'walker', u'incid']
[u'titan', u'suspend', u'troubl', u'walker']
[u'tougher', u'measur', u'urg', u'combat', u'razorfish', u'black']
[u'town', u'camp', u'resid', u'reject', u'fund', u'condit']
[u'tribun', u'clear', u'carr', u'strike', u'charg']
[u'truce', u'broker', u'kimberley', u'famili', u'feud']
[u'tune', u'want', u'win', u'red', u'home', u'season']
[u'twin', u'citi', u'mayor', u'clash', u'premier', u'amalgam']
[u'injur', u'midland', u'highway', u'crash']
[u'broughton', u'resid', u'hospitalis']
[u'econom', u'survey', u'show', u'mix', u'result', u'asia']
[u'gunman', u'detail', u'emerg']
[u'secur', u'council', u'debat', u'climat', u'chang']
[u'analyst', u'add', u'australian', u'meat', u'hold']
[u'campus', u'gunman', u'buy', u'weapon', u'legal', u'polic']
[u'professor', u'reject', u'carbon', u'emiss', u'theori']
[u'virginia', u'gunman', u'label', u'mental', u'disturb']
[u'virginia', u'shoot', u'respons', u'face', u'scrutini']
[u'visit', u'home', u'inspir', u'rafter', u'kid', u'north', u'west']
[u'desalin', u'plant', u'capac']
[u'wangaratta', u'council', u'reject', u'shop', u'plan']
[u'premier', u'back', u'feder', u'labor', u'polici']
[u'memori', u'discov', u'rare', u'gallipoli', u'footag']
[u'western', u'power', u'urg', u'boost', u'wheatbelt', u'power', u'suppli']
[u'whiteley', u'studio', u'free']
[u'woman', u'sentenc', u'assault', u'partner', u'lover']
[u'woodsid', u'blame', u'product', u'slump', u'cylon']
[u'worksaf', u'defend', u'bulli', u'investig']
[u'work', u'start', u'diddicoolum', u'drain', u'extens']
[u'world', u'wont', u'surpris', u'styri']
[u'urg', u'govt', u'greenhous', u'emiss']
[u'yellowcak', u'movement', u'rais', u'safeti', u'concern']
[u'yilgarn', u'infrastructur', u'sign', u'china', u'deal']
[u'youth', u'detent', u'centr', u'commission', u'sight']
[u'youth', u'week', u'focus', u'youth', u'homeless']
[u'arrest', u'drug', u'raid', u'deni', u'bail']
[u'taliban', u'kill', u'afghan', u'battl']
[u'upgrad', u'plan', u'local', u'road']
[u'women', u'reject', u'pregnanc', u'counsel', u'studi']
[u'abba', u'reassur', u'report', u'aliv']
[u'abney', u'head', u'taipan']
[u'acoss', u'budget', u'submiss']
[u'airlin', u'remind', u'travel', u'alcohol', u'ban']
[u'call', u'govt', u'interven', u'villag', u'life']
[u'anglican', u'church', u'apologis', u'lismor', u'children']
[u'happi', u'lang', u'park', u'turf']
[u'auditor', u'general', u'clear', u'green', u'workplac', u'disput']
[u'aussi', u'dollar', u'hit', u'year', u'high']
[u'aust', u'aquanaut', u'spark', u'nasa']
[u'australian', u'chamber', u'commerc', u'industri']
[u'australian', u'medic', u'associ', u'budget']
[u'australia', u'unveil', u'summer', u'program']
[u'deni', u'mismanag', u'hedg', u'oper']
[u'babi', u'bonus']
[u'baghdad', u'bomb', u'worst', u'troop', u'surg']
[u'bana', u'mcadam', u'time', u'wife']
[u'barbi', u'get', u'onlin', u'makeov']
[u'belltre', u'school']
[u'bikeway', u'attack', u'prompt', u'polic', u'increas']
[u'bowen', u'council', u'like', u'green', u'light', u'marina']
[u'brisban', u'get', u'leagu', u'world', u'final']
[u'broom', u'consid', u'green', u'levi']
[u'broughton', u'home', u'relat', u'comfort', u'meet']
[u'bush', u'tell', u'search', u'soul', u'iraq']
[u'bush', u'warn', u'sudan', u'darfur', u'violenc']
[u'busi', u'group', u'debat', u'wimmera', u'river', u'develop']
[u'canada', u'seal', u'hunter', u'stick']
[u'china', u'economi', u'surg', u'ahead']
[u'closer']
[u'closer']
[u'communiti', u'librari', u'open', u'wake', u'griffith']
[u'congress', u'member', u'urg', u'bush', u'troop', u'withdraw']
[u'conserv', u'desalin', u'green', u'group']
[u'council', u'keep', u'cow', u'street', u'trade']
[u'council', u'logo', u'disput', u'prove', u'cost']
[u'council', u'look', u'infrastructur', u'spend', u'boost']
[u'council', u'staff', u'seek', u'secur', u'assur']
[u'coupl', u'convict', u'plan', u'kill', u'slave']
[u'data', u'prompt', u'surg', u'inflat', u'concern']
[u'democrat', u'push', u'murray', u'darl']
[u'develop', u'fear', u'council', u'merger', u'harm', u'properti']
[u'digger', u'remain', u'recov', u'year']
[u'dingo', u'destroy', u'attack', u'young', u'girl']
[u'downer', u'defend', u'refuge', u'swap']
[u'downer', u'reject', u'claim', u'iraq', u'argument']
[u'drought', u'creat', u'strong', u'snowi', u'hydro']
[u'drought', u'dri', u'kangaroo', u'honey', u'suppli']
[u'drought', u'grazier', u'northern', u'properti']
[u'ead', u'call', u'young', u'pup']
[u'eagl', u'criticis', u'fremantl', u'case']
[u'einfeld', u'make', u'brief', u'court', u'appear']
[u'einfeld', u'plead', u'guilti']
[u'elsom', u'lead', u'waratah']
[u'farmer', u'gambl', u'futur', u'rain']
[u'farmer', u'gambl', u'rain']
[u'farmer', u'interim', u'fund']
[u'fatal', u'plane', u'crash', u'investig']
[u'fedpol', u'open']
[u'figur', u'paint', u'unhealthi', u'view', u'countri', u'live']
[u'figur', u'childcar', u'shortag']
[u'figur', u'rise', u'domest', u'violenc']
[u'firefight', u'neglect', u'burn', u'lodg', u'report']
[u'virgina', u'gunman', u'video', u'send']
[u'flower', u'exit', u'post', u'month']
[u'speed', u'iron', u'railway', u'work']
[u'ford', u'flag', u'stand', u'worker']
[u'formal', u'elect', u'senat', u'start']
[u'fossil', u'hunter', u'uncov', u'world', u'oldest', u'tree']
[u'foster', u'sell', u'wine', u'club', u'busi']
[u'fruit', u'price', u'soar']
[u'fund', u'peak', u'down', u'improv']
[u'gerrard', u'commit', u'wallabi', u'brumbi']
[u'gillard', u'believ', u'state', u'cooper']
[u'goat', u'farmer', u'urg', u'maximis', u'benefit']
[u'gold', u'worker', u'face', u'unemploy']
[u'golfer', u'scott', u'help', u'critic', u'youngster']
[u'good', u'behaviour', u'bond', u'assault']
[u'govt', u'accus', u'abandon', u'aborigin', u'women']
[u'govt', u'defend', u'water', u'pipelin', u'cost']
[u'govt', u'seek', u'measur', u'forc', u'avoid']
[u'govt', u'fail', u'reduc', u'burnley']
[u'graffiti', u'artist', u'steve', u'pratt', u'spray']
[u'green', u'group', u'say', u'cape', u'york', u'miss', u'heritag']
[u'green', u'deni', u'data', u'tamar', u'valley', u'emiss']
[u'gunman', u'quot']
[u'gunman', u'send', u'packag', u'news']
[u'farm', u'tip']
[u'hoffman', u'name', u'kangaroo', u'cover']
[u'hope', u'fade', u'miss', u'tourist']
[u'hormon', u'replac', u'therapi', u'link', u'ovarian']
[u'hospit', u'board', u'member', u'speak', u'pike', u'defenc']
[u'hotel', u'fine', u'spark', u'polic', u'safeti', u'warn']
[u'immigr', u'worker', u'evid', u'patrol']
[u'indigen', u'communiti', u'seek', u'govt', u'consult']
[u'indigen', u'council', u'see', u'limit', u'benefit', u'merger']
[u'iraq', u'conflict', u'rational', u'question']
[u'iraqi', u'armi', u'command', u'detain', u'seri']
[u'iraq', u'violenc', u'reinforc', u'need', u'aust', u'presenc']
[u'japan', u'mull', u'beef', u'law']
[u'johnston', u'council', u'survey', u'resid', u'sewag']
[u'kalgoorli', u'miner', u'fin', u'sulphur', u'dioxid', u'level']
[u'kangaroo', u'point', u'prove', u'stuart']
[u'killer', u'leav', u'video', u'messag']
[u'labor', u'blame', u'littl', u'ethanol', u'vail']
[u'lara', u'look', u'senior', u'player', u'come', u'trump']
[u'minut', u'nomin', u'wentworth', u'shire', u'spot']
[u'letter', u'outlin', u'passeng', u'send', u'error']
[u'listen', u'gunman', u'talk', u'motiv']
[u'macklin', u'criticis', u'condit', u'town', u'camp', u'leas']
[u'madonna', u'visit', u'street', u'kid', u'worker']
[u'maharoof', u'give', u'lanka', u'select', u'headach']
[u'charg', u'hotel', u'robberi']
[u'deni', u'decad', u'murder']
[u'face', u'court', u'cash']
[u'guilti', u'sexual', u'abus', u'teen', u'boarder']
[u'attempt', u'assault']
[u'walk', u'free', u'bash', u'death']
[u'mayor', u'beat', u'solar', u'scheme', u'chanc']
[u'medal', u'recognis', u'resid', u'contribut']
[u'melbourn', u'tunnel', u'chang', u'good', u'opposit']
[u'guilti', u'steal', u'busi', u'associ']
[u'mental', u'health', u'facil', u'describ', u'gunman']
[u'mile', u'franklin', u'finalist', u'reveal']
[u'miner', u'council', u'australia', u'budget']
[u'mine', u'giant', u'drag', u'aust', u'market']
[u'minist', u'embarrass', u'unansw', u'polic', u'call']
[u'minist', u'say', u'public', u'support', u'tourism', u'resort']
[u'seek', u'feder', u'water', u'plan']
[u'land', u'releas', u'clermont', u'hous']
[u'seek', u'answer', u'retir', u'villag']
[u'murray', u'corridor', u'declar', u'offer', u'relief']
[u'murray', u'darl', u'basin', u'critic']
[u'murray', u'darl', u'farmer', u'face', u'water', u'shut']
[u'murray', u'darl', u'situat', u'like', u'rais', u'food']
[u'nation', u'farmer', u'feder', u'budget', u'submiss']
[u'nation', u'tertiari', u'educ', u'union', u'budget']
[u'nation', u'tourism', u'allianc', u'budget', u'submiss']
[u'near', u'kill', u'baghdad', u'blast']
[u'newcastl', u'council', u'debat', u'curfew']
[u'closer', u'resolv', u'broadband', u'disput', u'telstra']
[u'nurs', u'overtim', u'excess', u'say', u'report']
[u'project', u'vital', u'australia']
[u'olympian', u'rule', u'run', u'lord', u'mayor']
[u'olyroo', u'saudi', u'arabia']
[u'oppos', u'abort', u'camp', u'flag', u'impact', u'suprem']
[u'opposit', u'push', u'albani', u'hospit']
[u'opposit', u'graffiti', u'gaff', u'distract']
[u'opposit', u'share', u'murray', u'darl', u'concern']
[u'pair', u'face', u'court', u'accus', u'fraud']
[u'part', u'state', u'drought', u'declar']
[u'plan', u'chang', u'need', u'resort']
[u'plant', u'aim', u'form', u'nutrient', u'strip', u'zone']
[u'defend', u'iraq', u'involv']
[u'telstra', u'monopoli', u'stifl', u'small', u'busi']
[u'urg', u'govt', u'match', u'pacif', u'fund']
[u'polic', u'drug', u'raid', u'lead', u'arrest']
[u'polic', u'investig', u'multipl', u'stab']
[u'polic', u'tri', u'identifi', u'tumut', u'area', u'bodi']
[u'polic', u'test', u'broughton', u'hall', u'water', u'suppli']
[u'power', u'author', u'promis', u'disrupt']
[u'premier', u'say', u'rugbi', u'leagu', u'world', u'worth', u'million']
[u'primari', u'school', u'cattl', u'royal', u'easter']
[u'prison', u'risdon', u'cell']
[u'public', u'comment', u'prompt', u'licenc', u'chang']
[u'ground', u'host', u'rugbi', u'leagu', u'world', u'game']
[u'ralli', u'pass', u'vote', u'confid', u'bendigo']
[u'rat', u'tobruk', u'survivor', u'hall', u'sell']
[u'refineri', u'plant', u'doubl', u'greenhous', u'emiss']
[u'region', u'develop', u'board', u'chief', u'take', u'leav']
[u'report', u'complet', u'univers']
[u'report', u'show', u'murray', u'darl', u'irrig', u'dire']
[u'reservoir', u'work', u'race', u'return', u'bendigo']
[u'resid', u'brief', u'power', u'station', u'plan']
[u'retir', u'spar', u'evict']
[u'retir', u'villag', u'letter', u'legal', u'evict']
[u'rockhampton', u'feel', u'impact', u'rise', u'fuel', u'price']
[u'roll', u'stone', u'turn']
[u'irrig', u'face', u'zero', u'water', u'alloc']
[u'salmonella', u'fear', u'broughton', u'hall']
[u'opposit', u'reshuffl', u'match', u'govt', u'portfolio']
[u'scienc', u'teacher', u'pilbara', u'goldfield', u'mine']
[u'scooter', u'rider', u'warn', u'theft', u'threat']
[u'score', u'kill', u'baghdad', u'blast']
[u'scott', u'pleas', u'rank', u'progress']
[u'selwood', u'headland', u'affair', u'preced', u'say']
[u'servic', u'farewel', u'geraldton', u'mayor']
[u'sharehold', u'endors', u'fairfax', u'rural', u'press', u'merger']
[u'sink', u'inquest', u'wit', u'claim', u'captain', u'tell']
[u'sniff', u'death', u'reinforc', u'import', u'attend']
[u'soup', u'serv', u'save', u'stress', u'student']
[u'steven', u'play', u'futur', u'doubt']
[u'steven', u'sidelin', u'season']
[u'strike', u'hospit', u'servic', u'staff', u'vote', u'return']
[u'vincent', u'hospit', u'revamp']
[u'suicid', u'bomber', u'kill', u'baghdad']
[u'summit', u'urg', u'sharehold', u'paladin', u'takeov']
[u'support', u'young', u'peopl', u'need', u'region']
[u'taliban', u'increas', u'civilian', u'attack', u'amnesti']
[u'terror', u'train', u'track', u'remak']
[u'textil', u'firm', u'unhappi', u'polit', u'involv']
[u'timor', u'return', u'poll']
[u'kill', u'light', u'plane', u'crash']
[u'lead', u'europ', u'drug', u'abus']
[u'uncertainti', u'surround', u'pulp', u'plan']
[u'union', u'say', u'council', u'review', u'result', u'mass']
[u'union', u'warn', u'name', u'visa', u'breach', u'compani']
[u'student', u'closer', u'reveal', u'meelup', u'beach']
[u'report', u'rais', u'stake', u'iran', u'nuclear', u'debat']
[u'gunman', u'read', u'statement', u'send']
[u'vision', u'canberra']
[u'govt', u'ban', u'lane', u'chang', u'melbourn', u'tunnel']
[u'nuclear', u'plebiscit', u'knock']
[u'video', u'messag', u'leav', u'killer']
[u'video', u'shed', u'light', u'virginia', u'gunman']
[u'villag', u'life', u'retir', u'home', u'stay', u'open']
[u'wait', u'continu', u'illawarra', u'newsradio', u'servic']
[u'waterfront', u'develop', u'oppon', u'want', u'council']
[u'watson', u'face', u'black', u'cap']
[u'western', u'power', u'pole', u'blaze']
[u'whish', u'wilson', u'drop', u'disciplinari', u'reason']
[u'wild', u'hors', u'plan', u'drug', u'nag', u'stone']
[u'william', u'faze', u'extra', u'commit']
[u'winton', u'mayor', u'cast', u'doubt', u'local', u'govt', u'shake']
[u'woman', u'strangl', u'grandfath', u'releas']
[u'woodsid', u'attack', u'govt', u'suppli', u'polici']
[u'world', u'worth', u'million', u'beatti']
[u'wwii', u'veteran', u'bobbi', u'gibb', u'farewel', u'spitfir']
[u'youth', u'homeless', u'microscop']
[u'hospit', u'admiss', u'avoid', u'report']
[u'arrest', u'multipl', u'theft', u'bust']
[u'fund', u'boost', u'kalgoorli', u'apprenticeship']
[u'arrest', u'discoveri', u'sophist']
[u'academ', u'say', u'homophobia', u'issu', u'australia']
[u'haul', u'west', u'coast', u'crisi', u'meet']
[u'agforc', u'back', u'stock', u'rout', u'plan']
[u'atsb', u'pursu', u'transair', u'safeti', u'record']
[u'auspin', u'sharehold', u'sell', u'stock']
[u'australia', u'argentina', u'postpon', u'june', u'friend']
[u'australia', u'plan', u'styri', u'spree']
[u'aust', u'refuge', u'swap', u'inhuman']
[u'aust', u'water', u'manag', u'laughabl', u'say', u'professor']
[u'author', u'baffl', u'abandon', u'yacht']
[u'author', u'way', u'scare', u'cockatoo']
[u'author', u'remain', u'baffl', u'abandon', u'yacht']
[u'snatcher', u'remand', u'custodi']
[u'hour', u'trade', u'academ']
[u'beaconsfield', u'gold', u'resum', u'trade']
[u'beckham', u'buck', u'roll', u'galaxi']
[u'bendigo', u'bank', u'worker', u'prepar']
[u'broadcast', u'alan', u'jone', u'court', u'sentenc']
[u'broom', u'slipway', u'test', u'reveal', u'danger']
[u'broughton', u'hall', u'water', u'result', u'day', u'away', u'pike']
[u'brown', u'make', u'case', u'attack']
[u'brumbi', u'super', u'hop', u'aliv']
[u'build', u'mudge', u'tafe', u'campus']
[u'bulldog', u'sail', u'past', u'winless', u'richmond']
[u'california', u'town', u'lock', u'school', u'threat']
[u'beechworth', u'jail', u'heritag', u'list']
[u'campdraft', u'final', u'attract', u'record', u'entri']
[u'canadian', u'pathologist', u'repeat', u'wrong', u'murder']
[u'candid', u'decid', u'boycott', u'nigeria']
[u'carpent', u'foreshadow', u'push', u'toppl', u'bowler']
[u'ceremoni', u'honour', u'firefight', u'effort']
[u'chairman', u'steward', u'investig', u'decis', u'soon']
[u'chang', u'major', u'sharehold', u'possibl', u'auspin']
[u'church', u'urg', u'free', u'land', u'tackl', u'hous']
[u'clarkson', u'unfaz', u'cat', u'critic']
[u'climat', u'model', u'provid', u'glimmer', u'hope']
[u'close', u'finish', u'anticip', u'noosa', u'elect']
[u'closer', u'news']
[u'coalit', u'fight', u'barrier', u'reef', u'fisherman']
[u'colleg', u'appoint', u'extra', u'teacher', u'distanc']
[u'concern', u'rais', u'broughton', u'hall', u'water', u'suppli']
[u'construct', u'begin', u'controversi', u'denmark']
[u'cool', u'climat', u'grape', u'grower', u'play', u'greater']
[u'cotton', u'calcul', u'industri', u'greener']
[u'council', u'commit', u'goulburn', u'pipelin', u'fund']
[u'council', u'disappoint', u'inact', u'marion']
[u'councillor', u'question', u'wilson', u'river', u'water', u'plan']
[u'councillor', u'urg', u'nightclub', u'crackdown']
[u'council', u'consult', u'wimmera', u'develop', u'mayor']
[u'council', u'accus', u'premier', u'treacheri']
[u'council', u'rail', u'revamp', u'prioriti']
[u'coupl', u'charg', u'cannabi', u'product']
[u'court', u'hear', u'fraud', u'case', u'tell', u'cattl', u'station']
[u'crouch', u'comeback', u'trail']
[u'crusad', u'wind', u'hurrican', u'semi', u'final']
[u'dampier', u'bunburi', u'pipelin', u'expand', u'demand']
[u'daniel', u'pearl', u'film', u'typic', u'joli', u'say']
[u'data', u'show', u'cancer', u'surviv', u'rat', u'improv']
[u'democrat', u'call', u'junk', u'food', u'ban']
[u'dfat', u'upgrad', u'travel', u'warn', u'india']
[u'docker', u'look', u'forward', u'headland', u'selwood']
[u'expect', u'increas', u'traffic', u'drought', u'hotlin']
[u'earli', u'morn', u'blaze', u'rip', u'echuca', u'sweet', u'shop']
[u'east', u'coast', u'coupl', u'lose', u'tourism', u'develop', u'battl']
[u'say', u'fiji', u'agre', u'elect', u'demand']
[u'help', u'refuge', u'flee', u'iraq']
[u'expert', u'tell', u'worldwid', u'cyclon', u'risk', u'increas']
[u'explicit', u'censor', u'melbourn', u'exhibit']
[u'fine', u'read', u'sheffield']
[u'fairfax', u'tri', u'minimis', u'hunter', u'loss']
[u'famili', u'tourist', u'kill', u'travel', u'tour', u'award']
[u'farmer', u'elig', u'rat', u'discount']
[u'fear', u'tree', u'vine', u'irrig', u'stop']
[u'feder', u'water', u'plan', u'short', u'manag']
[u'govt', u'compens', u'superannu']
[u'ferguson', u'echo', u'broadband', u'push']
[u'damag', u'beaudesert', u'hous']
[u'food', u'price', u'quadrupl', u'costello']
[u'food', u'price', u'quadrupl', u'treasur']
[u'ford', u'deal', u'doesnt', u'meet', u'worker', u'need', u'amwu']
[u'ford', u'part', u'supplier', u'worker', u'vote', u'rescu']
[u'ford', u'reschedul', u'oper', u'avoid', u'loss']
[u'ford', u'reschedul', u'oper', u'avoid', u'stand']
[u'forrest', u'plead', u'govt', u'join', u'water', u'plan']
[u'need', u'speed']
[u'fund', u'creat', u'uncertain', u'futur', u'short']
[u'galliano', u'fin', u'imag', u'copi']
[u'gastroenter', u'outbreak', u'retir', u'villag']
[u'gold', u'coast', u'patient', u'screen', u'worker']
[u'golf', u'cours', u'develop', u'caus', u'water', u'concern']
[u'googl', u'introduc', u'copyright', u'protect', u'tool']
[u'govern', u'dismiss', u'water', u'claim']
[u'govt', u'chang', u'rate', u'subsidi', u'elig']
[u'govt', u'expect', u'bendigo', u'absorb', u'empir', u'rubber']
[u'govt', u'know', u'murray', u'darl', u'problem']
[u'govt', u'murray', u'darl', u'comment', u'worri', u'citrus', u'board']
[u'govt', u'doubl', u'communiti', u'hous', u'decad']
[u'govt', u'urg', u'reconsid', u'livestock', u'water']
[u'govt', u'water', u'plan', u'meet', u'resist']
[u'govt', u'push', u'ahead', u'water', u'takeov', u'turnbul']
[u'grand', u'ridg', u'undergo', u'revamp']
[u'green', u'levi', u'pass', u'ratepay']
[u'grower', u'maintain', u'murray', u'water', u'alloc']
[u'hand', u'beal', u'miss', u'highland', u'clash']
[u'health', u'dept', u'investig', u'gastro', u'outbreak']
[u'high', u'court', u'uphold', u'superannu', u'decis']
[u'holey', u'plain', u'fuel', u'reduct', u'burn', u'finish']
[u'howard', u'water', u'plan', u'meet', u'resist']
[u'defenc', u'water', u'tank']
[u'inquiri', u'find', u'huge', u'variat', u'bottl', u'price']
[u'investig', u'continu', u'ultralight', u'crash']
[u'iraqi', u'politician', u'urg', u'reconcil']
[u'ireland', u'squad', u'assist', u'woolmer', u'inquiri']
[u'john', u'howard', u'open', u'sydney', u'reactor']
[u'jone', u'fin', u'name', u'child', u'wit']
[u'jone', u'appeal', u'convict']
[u'jone', u'appeal', u'wit', u'name', u'convict']
[u'judg', u'say', u'thoma', u'lawyer', u'run', u'circl']
[u'juri', u'choos', u'spector', u'trial']
[u'kangaroo', u'lead', u'kiwi', u'anzac', u'test']
[u'kimberley', u'prawn', u'harvest', u'delay']
[u'lina', u'bring', u'rain', u'forecast']
[u'lancet', u'slam', u'govt', u'indigen', u'health', u'climat']
[u'lara', u'retir', u'intern', u'cricket']
[u'lawnmow', u'preposter', u'state', u'govern']
[u'leader', u'claim', u'increas', u'indigen']
[u'forget']
[u'live', u'tank']
[u'local', u'govt', u'minist', u'get', u'tough', u'recept']
[u'local', u'school', u'slow', u'asthma', u'program']
[u'love', u'bite']
[u'madonna', u'urg', u'orphan', u'help']
[u'charg', u'multipl', u'arm', u'robberi']
[u'charg', u'stain', u'money']
[u'guilti', u'shake', u'death']
[u'face', u'court', u'mount', u'stab', u'death']
[u'market', u'make', u'yesterday', u'loss']
[u'mckell', u'medal', u'award', u'northern', u'territorian']
[u'member', u'call', u'alic', u'town', u'camp', u'closur']
[u'disappear', u'yacht', u'identifi']
[u'mine', u'contractor', u'tri', u'book', u'unbuilt', u'resort']
[u'miss', u'yacht', u'crew']
[u'moor', u'take', u'fletcher', u'england', u'coach']
[u'mornington', u'council', u'quit', u'alcohol', u'breach']
[u'event', u'sell', u'art', u'valley']
[u'say', u'stat', u'hide', u'true', u'shoalhaven', u'murder', u'rate']
[u'murray', u'darl', u'report']
[u'murray', u'darl', u'shut', u'caus', u'demand', u'waff']
[u'newcastl', u'woman', u'jail', u'stab', u'murder']
[u'reactor', u'offici', u'open']
[u'roster', u'mean', u'better', u'respons']
[u'ninth', u'person', u'charg', u'drug', u'ring']
[u'northern', u'farmer', u'fee', u'shortag', u'warn']
[u'govt', u'appoint', u'mentor', u'turn', u'brewarrina']
[u'govt', u'pressur', u'clear', u'corridor']
[u'struggl', u'reduc', u'greenhous', u'emiss']
[u'number', u'sharehold', u'back', u'qanta', u'takeov']
[u'nurs', u'reject', u'govt', u'claim', u'reason', u'overtim']
[u'opposit', u'call', u'retir', u'villag', u'resid']
[u'orang', u'shop', u'propos', u'public', u'exhibit']
[u'orchid', u'protect', u'slow', u'wind', u'farm', u'work']
[u'pangallo', u'confid', u'eden', u'monaro']
[u'pangallo', u'pull', u'elect', u'race']
[u'concern', u'food', u'price', u'rise']
[u'contradict', u'turnbul', u'water', u'plan']
[u'tout', u'nuclear', u'reactor', u'triumph']
[u'polic', u'arrest', u'murder', u'suspect', u'adelaid']
[u'polic', u'bust', u'marijuana', u'oper', u'vic', u'north', u'west']
[u'polic', u'investig', u'girl', u'alleg', u'forc']
[u'polic', u'investig', u'arm', u'robberi']
[u'polic', u'puzzl', u'crew', u'disappear', u'yacht']
[u'polic', u'smash', u'organis', u'drug', u'ring']
[u'pont', u'concern', u'australia', u'heavi', u'test']
[u'port', u'arthur', u'appli', u'grant', u'rebuild', u'histor']
[u'predict', u'rain', u'irrespons', u'scientist']
[u'professor', u'warn', u'arrog', u'precursor']
[u'protavia', u'scrap', u'heywood', u'pulp', u'plan']
[u'public', u'hous', u'tenant', u'push', u'privat', u'market']
[u'push', u'perman', u'mount', u'polic', u'pilbara']
[u'push', u'sibl', u'foster', u'care']
[u'qanta', u'deni', u'cairn', u'cut']
[u'qanta', u'takeov', u'succeed', u'regardless', u'drop']
[u'health', u'retir', u'villag', u'tri']
[u'verg', u'doubl', u'jeopardi', u'chang']
[u'rampant', u'kangaroo', u'claim', u'anzac', u'honour']
[u'rann', u'confid', u'uranium', u'secur']
[u'rann', u'surpris', u'water', u'crisi']
[u'restitut', u'nazi', u'paint', u'sell']
[u'retir', u'villag', u'resid', u'reliev']
[u'retir', u'villag', u'resid', u'reliev', u'evict']
[u'rock', u'thrower', u'injur', u'driver']
[u'water', u'say', u'restrict', u'work']
[u'relat', u'sledg', u'accept', u'demetriou']
[u'shire', u'lobbi', u'cotton', u'crop', u'kimberley']
[u'cotton', u'rice', u'grow', u'australia']
[u'signific', u'develop', u'delay', u'woolmer', u'inquest']
[u'sledg', u'rule', u'need', u'clarifi']
[u'small', u'tsunami', u'expect', u'japan', u'quak']
[u'solar', u'power', u'deserv', u'encourag']
[u'somalia', u'verg', u'humanitarian', u'disast']
[u'sort', u'kangaroo', u'say', u'laidley']
[u'spider', u'make', u'broadway', u'debut']
[u'star', u'pipe', u'shrek', u'soundtrack']
[u'state', u'mayor', u'meet', u'discuss', u'council', u'boundari']
[u'stem', u'cell', u'servic', u'treat', u'racehors', u'injuri']
[u'stomach', u'complaint', u'hospitalis', u'brisban', u'retir']
[u'stop', u'squabbl', u'water', u'howard', u'tell', u'state']
[u'sullen', u'lead', u'targa', u'event']
[u'sunraysia', u'encourag', u'sharehold']
[u'support', u'need', u'carer', u'disabl']
[u'targa', u'tasmania', u'crash']
[u'teen', u'girl', u'alcohol', u'cannabi', u'taxi']
[u'tokyo', u'gunman', u'hole', u'apart', u'kill']
[u'tourism', u'hard', u'zero', u'alloc']
[u'traine', u'teacher', u'tell', u'school', u'cancer']
[u'tribut', u'flow', u'follow', u'death', u'chief', u'polic']
[u'tsunami', u'detect', u'buoy', u'anchor', u'tasmania']
[u'channel', u'owner', u'newcastl', u'station']
[u'nato', u'soldier', u'kill', u'afghan', u'south']
[u'push', u'rural', u'medicin', u'school', u'plan']
[u'union', u'boss', u'say', u'doesnt', u'need', u'realiti', u'check']
[u'unsuccess', u'candid', u'appeal', u'timor']
[u'recycl', u'water', u'plan', u'aid', u'research']
[u'media', u'criticis', u'gunman', u'video']
[u'opposit', u'want', u'crackdown', u'school', u'drug']
[u'park', u'site']
[u'victim', u'die', u'time', u'court', u'tell']
[u'violenc', u'forum', u'achiev', u'littl', u'opposit']
[u'virgin', u'cancel', u'darwin', u'melbourn', u'flight', u'june']
[u'wenger', u'vow', u'stay', u'gunner']
[u'whale', u'rescuer', u'converg', u'train']
[u'whyalla', u'reshap', u'plan', u'reduc', u'flood', u'threat']
[u'wine', u'colleg', u'massiv', u'industri', u'boost']
[u'pursu', u'newcastl', u'channel']
[u'young', u'driver', u'die', u'portland', u'singl', u'vehicl', u'crash']
[u'abandon', u'yacht', u'tow', u'townsvill']
[u'abbott', u'reject', u'lancet', u'critic']
[u'respons', u'climat', u'chang']
[u'chief', u'polic', u'offic', u'rememb']
[u'mourn', u'death', u'chief', u'polic', u'offic']
[u'search', u'call', u'miss', u'crew']
[u'alec', u'baldwin', u'mouth', u'shut', u'rant']
[u'hilali', u'deni', u'support', u'terror']
[u'black', u'hardman', u'collin', u'feel', u'neck']
[u'anzac', u'test', u'interview', u'cameron', u'smith', u'asotasi']
[u'author', u'investig', u'perth', u'hous']
[u'baghdad', u'secur', u'plan', u'go', u'right', u'direct']
[u'bana', u'crash', u'targa', u'ralli']
[u'soap', u'give', u'caffein', u'kick', u'shower']
[u'bhutan', u'readi', u'democraci', u'mock', u'elect']
[u'bollywood', u'star', u'coupl', u'marri', u'marathon']
[u'bomb', u'bomb', u'bomb', u'iran', u'sing', u'mccain']
[u'bosom', u'buddi', u'complet', u'statewid', u'trek']
[u'drive', u'safeti', u'father', u'collaps']
[u'brumbi', u'super', u'hop', u'aliv']
[u'campus', u'killer', u'famili', u'apologis', u'devast']
[u'chelsea', u'mourinho', u'back']
[u'chief', u'surviv', u'late', u'shark', u'fightback']
[u'closer']
[u'closer']
[u'coach', u'whatmor', u'quit', u'bangladesh']
[u'collin', u'clear', u'neck', u'injuri']
[u'communiti', u'hous', u'expans', u'wont', u'meet', u'demand', u'group']
[u'compani', u'examin', u'toxic', u'wast', u'claim']
[u'concern', u'remain', u'pulp', u'water', u'effect']
[u'urin', u'purifi', u'school', u'pupil', u'india']
[u'crew', u'separ', u'yacht', u'sunday']
[u'crow', u'take', u'swan']
[u'crow', u'strong', u'swan', u'home']
[u'detaine', u'scale', u'villawood', u'fenc']
[u'dire', u'murray', u'darl', u'predict', u'releas']
[u'chalk', u'record']
[u'drought', u'northern', u'china', u'leav', u'thousand', u'short']
[u'eat', u'salt', u'reduc', u'chanc', u'heart']
[u'egyptian', u'canadian', u'jail', u'spi']
[u'embassi', u'warn', u'philippin', u'bomb', u'threat']
[u'escap', u'villawood', u'detaine', u'miss']
[u'expert', u'gather', u'discuss', u'increas', u'cancer', u'case']
[u'famili', u'offer', u'counsel', u'babi']
[u'father', u'tell', u'court', u'shortag', u'mean', u'wait']
[u'investig', u'nasa', u'murder', u'suicid']
[u'investig', u'nasa', u'shoot']
[u'investig', u'space', u'centr', u'shoot']
[u'fear', u'greyhound', u'safeti', u'elwick']
[u'firefight', u'thank', u'tasmania']
[u'fletcher', u'right', u'say', u'vaughan']
[u'magazin', u'editor', u'sentenc', u'crime']
[u'frenchman', u'jacquelin', u'fli', u'high', u'dali', u'crash']
[u'french', u'presid', u'candid', u'wind', u'campaign']
[u'gate', u'warn', u'iraq', u'limit', u'patienc']
[u'gene', u'studi', u'show', u'chimp', u'divers', u'human']
[u'govt', u'outlin', u'drastic', u'measur', u'save', u'murray']
[u'govt', u'public', u'hous', u'shake', u'backward', u'step']
[u'guilti', u'conscienc']
[u'gunman', u'hostag', u'dead', u'nasa', u'space', u'centr']
[u'gunman', u'report', u'barricad', u'insid', u'nasa', u'build']
[u'gunman', u'famili', u'offer', u'apolog']
[u'highland', u'hang', u'tens', u'waratah']
[u'highlight', u'australia', u'zealand']
[u'hormon', u'replac', u'therapi', u'link', u'ovarian']
[u'hostag', u'gunman', u'dead', u'nasa', u'space', u'centr']
[u'warn', u'repeat', u'ovarian', u'cancer', u'studi']
[u'interview', u'ricki', u'pont', u'matthew', u'hayden']
[u'japanes', u'polic', u'arrest', u'gangster', u'fatal']
[u'kangaroo', u'hold', u'slender', u'lead']
[u'kangaroo', u'upset', u'lion']
[u'kiwi', u'jack', u'join', u'northern', u'exodus']
[u'labor', u'maintain', u'aust', u'allianc', u'rudd']
[u'langer', u'pile', u'run', u'somerset']
[u'look', u'backyard']
[u'lose', u'timor', u'candid', u'ramo', u'horta']
[u'macquari', u'island', u'visitor', u'shock', u'rodent', u'damag']
[u'magpi', u'bomber', u'lead', u'break']
[u'malthous', u'talk', u'port', u'ahead', u'clash']
[u'charg', u'northfield', u'murder']
[u'face', u'court', u'black', u'forest', u'murder']
[u'kill']
[u'melbourn', u'fend', u'gutsi', u'panther']
[u'melbourn', u'lead', u'penrith', u'break']
[u'milit', u'attack', u'state', u'nigeria', u'vote']
[u'minimum', u'scale', u'publish']
[u'mine', u'boom', u'drain', u'water', u'sector', u'need']
[u'broughton', u'resid', u'test', u'posit']
[u'mudge', u'miss', u'person', u'case', u'prompt', u'reward']
[u'murdoch', u'endors', u'rudd']
[u'nasa', u'build', u'evacu', u'report', u'shoot', u'fire']
[u'nation', u'mourn', u'victim', u'campus', u'gunman']
[u'nigerian', u'elect', u'vote', u'start', u'hour', u'late']
[u'interview', u'adam', u'dyke', u'alan', u'tongu']
[u'interview', u'billi', u'slater', u'toni', u'puletua']
[u'urg', u'agre', u'latest', u'water', u'plan']
[u'offici', u'prejudici', u'comment', u'island']
[u'paramount', u'life']
[u'park', u'commiss', u'defend', u'safeti', u'effort']
[u'pilot', u'light', u'injur', u'north', u'helicopt', u'crash']
[u'energet']
[u'podcast', u'australia', u'zealand']
[u'polic', u'cctv', u'northfield', u'murder', u'lead']
[u'poll', u'open', u'histor', u'nigeria', u'elect']
[u'pomeroy', u'give', u'shark', u'half', u'time', u'lead']
[u'pomeroy', u'inspir', u'shark']
[u'pont', u'throw', u'gauntlet', u'protea']
[u'popul', u'perish']
[u'port', u'power', u'away', u'magpi']
[u'protest', u'continu', u'indonesian', u'freeport']
[u'pulp', u'oversea', u'tour', u'offer', u'take', u'surpris']
[u'ralli', u'hick', u'pledg', u'pressur', u'govt']
[u'red', u'work', u'progress', u'jone']
[u'relentless', u'australia', u'humili', u'black', u'cap']
[u'rescu', u'expert', u'blast', u'effort', u'immigr']
[u'rudd', u'stand', u'like', u'grade', u'movi']
[u'rudd', u'talk', u'allianc']
[u'rudd', u'talk', u'allianc', u'washington']
[u'salmonella', u'confirm', u'continu', u'broughton']
[u'sangakkara', u'shrug', u'inform', u'critic']
[u'search', u'miss', u'sailor', u'narrow']
[u'search', u'miss', u'yachtsmen', u'call']
[u'search', u'yacht', u'crew', u'focus', u'coast']
[u'search', u'resum', u'crew', u'abandon', u'yacht']
[u'assault', u'trial', u'remark', u'forc', u'prosecutor']
[u'sexual', u'abus', u'victim', u'voic', u'court']
[u'space', u'tourist', u'begin', u'trip', u'earth']
[u'statement', u'gunman', u'famili']
[u'state', u'like', u'murray', u'darl', u'plan', u'expert']
[u'stoner', u'fastest', u'turkey', u'practic']
[u'super', u'interview', u'berrick', u'barn', u'john']
[u'tanker', u'attack', u'fail', u'ahead', u'nigeria', u'elect']
[u'tank', u'benefit', u'polici', u'chang']
[u'teach', u'lifestyl']
[u'tendulkar', u'ganguli', u'ax', u'odi']
[u'terri', u'hick', u'seek', u'legal', u'advic', u'order']
[u'terri', u'hick', u'seek', u'legal', u'advic']
[u'thrash', u'black', u'cap', u'kid', u'pont']
[u'toddler', u'dead', u'accid', u'central', u'aust']
[u'tune', u'song', u'red', u'lose', u'streak']
[u'arrest', u'drive', u'shoot']
[u'unknown', u'shakespear', u'poem', u'publish']
[u'send', u'fact', u'find', u'mission', u'fiji']
[u'tribun', u'reject', u'kagam', u'prosecut', u'request']
[u'violenc', u'continu', u'rock', u'mogadishu']
[u'violenc', u'delay', u'threaten', u'nigeria', u'poll']
[u'water', u'pmopen']
[u'watson', u'justifi', u'pont', u'faith']
[u'whale', u'recruit', u'arctic', u'oceanograph']
[u'woman', u'hospitalis', u'beach', u'accid']
[u'chief', u'polic', u'offic', u'feel', u'pressur']
[u'albanes', u'vow', u'stand', u'uranium', u'polici']
[u'tank', u'build']
[u'kill', u'somali', u'violenc']
[u'aussi', u'languish']
[u'australian', u'record', u'count', u'kalli']
[u'aust', u'troop', u'fight', u'democraci', u'iraq', u'nelson']
[u'bana', u'targa', u'tasmania']
[u'bangladesh', u'govt', u'move', u'forc', u'leader', u'exil']
[u'beaumont', u'children', u'theori', u'dismiss']
[u'beckham', u'help', u'real', u'titl', u'push']
[u'bing', u'drink', u'polic', u'need', u'support', u'minist', u'say']
[u'blind', u'pilot', u'trip', u'darwin', u'delay']
[u'blind', u'pilot', u'head', u'darwin', u'quest']
[u'blue', u'home', u'play', u'hop', u'knock']
[u'bodi', u'ferntre', u'gulli']
[u'bottl', u'throw', u'polic', u'dual', u'chase']
[u'bronco', u'spoil', u'john', u'farewel']
[u'broughton', u'hall', u'sewerag', u'link', u'reject']
[u'bulldog', u'fight', u'eel']
[u'bullet', u'car', u'sydney']
[u'bull', u'remain', u'semi', u'hunt']
[u'bush', u'prais', u'howard', u'leadership']
[u'bush', u'thank', u'leadership']
[u'bush', u'thank', u'terror', u'leadership']
[u'busi', u'council', u'fund']
[u'campaign', u'urg', u'aussi', u'travel', u'regist']
[u'cat', u'lead', u'hawk', u'half', u'time']
[u'chao', u'violenc', u'cloud', u'landmark', u'poll', u'nigeria']
[u'clijster', u'skip', u'open']
[u'closer']
[u'closer']
[u'commonwealth', u'urg', u'foot', u'trash']
[u'crew', u'rescu', u'stricken', u'yacht']
[u'crew', u'quick', u'dous', u'blaze', u'adelaid', u'citi']
[u'crown', u'princess', u'mari', u'give', u'birth', u'babi', u'girl']
[u'denmark', u'welcom', u'birth', u'princess']
[u'drastic', u'wetland', u'measur', u'get', u'back']
[u'eel', u'lead', u'half', u'time']
[u'email', u'skirt', u'issu', u'volunt', u'firi']
[u'energi', u'author', u'urg', u'consum', u'switch']
[u'england', u'falter', u'chase']
[u'england', u'thriller', u'lara', u'sign']
[u'raaf', u'land', u'earmark', u'afford', u'hous']
[u'famili', u'continu', u'search', u'yachtsmen']
[u'famili', u'vow', u'continu', u'search', u'yachtsmen']
[u'feder', u'nadal', u'mont', u'carlo', u'final']
[u'fenc', u'propos', u'toad', u'road']
[u'fergi', u'face', u'unit', u'injuri', u'crisi']
[u'forc', u'anzac', u'work', u'say', u'hockey']
[u'bodi', u'believ', u'miss', u'teen']
[u'franc', u'gear', u'presidenti', u'poll']
[u'fremantl', u'lead', u'demon', u'comfort', u'break']
[u'fremantl', u'thrash', u'demon', u'maiden']
[u'hawk', u'swoop', u'cat']
[u'hayden', u'success', u'mysteri']
[u'helicopt', u'rescu', u'tire', u'bushwalk']
[u'fight', u'fund', u'welcom']
[u'indigen', u'educ', u'council', u'applic', u'seek']
[u'islam', u'camouflag', u'prison', u'gang']
[u'isra', u'forc', u'kill', u'palestinian']
[u'jail', u'inmat', u'umpir', u'shortag']
[u'kelli', u'triumph']
[u'lara', u'leav', u'regret']
[u'lara', u'refus', u'rule', u'class', u'return']
[u'leech', u'impost', u'skew', u'decad', u'research']
[u'popul', u'declin']
[u'hospitalis', u'farm', u'accid']
[u'maradona', u'move', u'psychiatr', u'clinic']
[u'mcveigh', u'remors', u'gestur']
[u'milan', u'tighten', u'grip', u'champion', u'leagu', u'place']
[u'minist', u'deni', u'adelaid', u'day']
[u'nasa', u'shooter', u'blame', u'victim', u'review']
[u'nelson', u'make', u'supris', u'iraq', u'visit']
[u'nelson', u'make', u'surpris', u'visit', u'iraq']
[u'back', u'murray', u'darl', u'plan']
[u'year', u'minist', u'back', u'health', u'hotlin']
[u'opposit', u'ask', u'rann', u'dismiss', u'nuclear', u'power']
[u'opposit', u'protest', u'nigeria', u'vote']
[u'outrag', u'busi', u'council', u'fund']
[u'palestinian', u'milit', u'kill', u'west', u'bank', u'raid']
[u'watchdog', u'push', u'releas', u'list', u'lowest', u'rat']
[u'peer', u'support', u'boost', u'rural', u'youth', u'combat']
[u'pitt', u'join', u'clooney', u'coen', u'film']
[u'announc', u'drug', u'plan']
[u'unveil', u'plan', u'combat']
[u'unveil', u'million', u'dollar', u'packag', u'combat']
[u'polic', u'investig', u'woman', u'suspici', u'death']
[u'poll', u'open', u'french', u'presidenti', u'vote']
[u'pol', u'pmopen']
[u'poor', u'execut', u'cost', u'lion']
[u'pope', u'get', u'pair', u'shoe', u'citi']
[u'popul', u'growth', u'mad', u'ruin', u'water']
[u'power', u'join', u'bourdai', u'houston']
[u'power', u'pole', u'bourdai', u'penalis']
[u'present', u'refus', u'reveal', u'russia', u'film', u'winner']
[u'pressur', u'chemic', u'corpor']
[u'princ', u'frederik', u'express', u'great', u'birth']
[u'princess', u'mari', u'give', u'birth', u'babi', u'girl']
[u'qlds', u'border', u'stay', u'open', u'say', u'bligh']
[u'rain', u'fail', u'boost', u'catchment', u'area']
[u'relianc', u'privat', u'rental', u'lead', u'couch']
[u'rossi', u'pole', u'turkish']
[u'rspca', u'back', u'kangaroo', u'cull', u'brisban', u'south', u'west']
[u'rudd', u'play', u'murdoch', u'remark']
[u'salisburi', u'goal', u'vain', u'world', u'star']
[u'scientist', u'discov', u'dead', u'organ', u'transplant', u'virus']
[u'eagl', u'cruis', u'break']
[u'eagl', u'juggernaut', u'keep', u'roll']
[u'search', u'begin', u'miss', u'boat']
[u'search', u'continu', u'villawood', u'escap']
[u'search', u'miss', u'yachtsmen', u'suspend']
[u'search', u'suspend', u'miss', u'yacht', u'trio']
[u'korea', u'north', u'food']
[u'smith', u'curb', u'train', u'knee', u'injuri']
[u'soldier', u'home', u'soil', u'afghanistan', u'tour']
[u'space', u'tourist', u'return', u'earth']
[u'subarus', u'sullen', u'win', u'second', u'targa', u'ralli']
[u'suicid', u'blast', u'kill', u'baghdad']
[u'suicid', u'data', u'suggest', u'buyback', u'success']
[u'tander', u'win', u'race', u'close']
[u'senat', u'elect', u'govt', u'whip']
[u'tender', u'award', u'youth', u'detent', u'centr']
[u'thousand', u'protest', u'law']
[u'retail', u'catch', u'sell', u'ban', u'pip']
[u'donat', u'instrument', u'help', u'katrina', u'victim']
[u'union', u'boss', u'shrug', u'rudd', u'critic']
[u'debat', u'rag', u'virginia', u'tech', u'nasa']
[u'vaughan', u'believ', u'turn', u'point']
[u'viduka', u'dent', u'unit', u'titl', u'hop']
[u'vote', u'begin', u'slowli', u'syria']
[u'west', u'coast', u'straight']
[u'west', u'coast', u'lead', u'carlton']
[u'widespread', u'abus', u'report', u'nigerian', u'elect']
[u'woman', u'die']
[u'yacht', u'crew', u'search', u'call']
[u'yacht', u'crew', u'search', u'call', u'hope', u'fade']
[u'yachti', u'fate', u'mysteri']
[u'yacht', u'trio', u'search', u'suspend']
[u'year', u'wait', u'predict', u'drought', u'toler', u'wheat']
[u'abetz', u'back', u'campaign', u'save', u'king', u'jetti']
[u'chief', u'polic', u'offic', u'honour', u'polic']
[u'say', u'ecstasi', u'haul', u'reduc', u'suppli']
[u'combat', u'traffic', u'oversea']
[u'agribusi', u'condit', u'improv', u'despit', u'drought']
[u'albani', u'instal', u'recycl', u'station']
[u'maliki', u'cancel', u'baghdad', u'wall']
[u'chang', u'uranium', u'crucial', u'say', u'macfarlan']
[u'alrc', u'paper', u'client', u'legal', u'privileg']
[u'ancient', u'rainforest', u'uncov', u'illinoi']
[u'auspin', u'share', u'price', u'climb', u'tender']
[u'australian', u'king', u'quit', u'windi', u'coach', u'report']
[u'australian', u'weightlift', u'ban', u'dope']
[u'baghdad', u'wall', u'cancel', u'widespread', u'object']
[u'bali', u'appeal', u'challeng', u'death', u'sentenc']
[u'bali', u'trio', u'appeal', u'death', u'sentenc']
[u'bank', u'offer', u'life', u'raft', u'loan', u'plastic', u'surgeri']
[u'cardboard', u'coffin', u'lift']
[u'barclay', u'bid', u'amro']
[u'barnacl', u'cover', u'mysteri', u'boat']
[u'bathurst', u'council', u'expand', u'chamber', u'civic', u'centr']
[u'drop', u'wine', u'grape', u'harvest', u'predict']
[u'biki', u'gang', u'trio', u'charg', u'extort', u'robberi']
[u'bligh', u'say', u'water', u'infrastructur', u'find']
[u'blind', u'pilot', u'land', u'australia', u'round', u'world']
[u'bollywood', u'star', u'say', u'sorri', u'paparazzi', u'beat']
[u'braidwood', u'drought', u'get', u'wors']
[u'broom', u'council', u'elect', u'attract', u'poor', u'voter']
[u'broom', u'hospit', u'revamp']
[u'bruck', u'textil', u'worker', u'reject', u'union', u'work']
[u'busi', u'call', u'inquiri', u'sydney', u'rental']
[u'busi', u'support', u'workplac', u'drug']
[u'busi', u'group', u'offer', u'promot', u'fund', u'assur']
[u'busi', u'weekend', u'port', u'lincoln', u'firefight']
[u'part', u'worker', u'accept', u'ford', u'rescu', u'packag']
[u'cartwright', u'refere', u'blast']
[u'charg', u'lay', u'pharmaci', u'robberi']
[u'closer', u'news']
[u'commission', u'say', u'help', u'avail', u'stress']
[u'communiti', u'audit', u'recommend', u'improv', u'water']
[u'communiti', u'group', u'want', u'offic', u'focus', u'region']
[u'convent', u'centr', u'unit', u'attract']
[u'coron', u'blame', u'poor', u'safeti', u'regim', u'csiro', u'death']
[u'costello', u'play', u'leadership', u'poll']
[u'councillor', u'put', u'spotlight', u'caravan', u'facil']
[u'council', u'encourag', u'ensur', u'financi', u'viabil']
[u'council', u'urg', u'coonan', u'mobil', u'black', u'spot']
[u'council', u'tackl', u'lake', u'black', u'spot']
[u'council', u'wont', u'seal', u'mindari']
[u'court', u'decid', u'damag', u'jone', u'defam', u'case']
[u'cowboy', u'lead', u'south', u'townsvill']
[u'csiro', u'improv', u'climat', u'chang', u'predict']
[u'culina', u'sign', u'time']
[u'custom', u'swoop', u'huge', u'isra', u'mdma', u'shipment']
[u'democrat', u'senat', u'slam', u'govt', u'propos']
[u'demon', u'fight', u'despit', u'injuri', u'davey']
[u'depress', u'teen', u'hide', u'electron', u'firewal']
[u'develop', u'say', u'high', u'rise', u'build', u'north']
[u'downpour', u'hamper', u'fuel', u'reduct', u'effort']
[u'driver', u'culpabl', u'cyclist', u'death']
[u'driver']
[u'driver', u'threaten', u'resign', u'secur']
[u'drought', u'affect', u'drink', u'water']
[u'drought', u'affect', u'snowi', u'hydro']
[u'drought', u'affect', u'apiarist']
[u'drought', u'worsen', u'dwindl', u'water', u'storag', u'level']
[u'drug', u'lobbyist', u'fund', u'year', u'late']
[u'friend', u'design', u'compet', u'high', u'rise']
[u'educ', u'forum', u'continu', u'tamworth']
[u'urg', u'closer', u'look', u'sandalwood']
[u'famili', u'continu', u'yachtsmen', u'search']
[u'fast', u'thumb', u'text', u'messag', u'honour']
[u'fear', u'drought', u'trigger', u'substanc', u'abus']
[u'feder', u'support', u'save', u'histor', u'jetti']
[u'govt', u'hand', u'hmas', u'townsvill', u'museum']
[u'fevola', u'hook']
[u'announc', u'leagu', u'chang', u'draw']
[u'figur', u'highlight', u'hervey', u'growth']
[u'fire', u'spark', u'polic', u'help']
[u'firm', u'beat', u'reach', u'esper', u'desal', u'plant']
[u'flinder', u'island', u'farmer', u'worri', u'livestock']
[u'forest', u'burn', u'off', u'prompt', u'visibl', u'warn']
[u'forum', u'spotlight', u'youth', u'jobless', u'plight']
[u'fraser', u'urg', u'destruct', u'irrelev', u'nuclear', u'arm']
[u'garrett', u'rudd', u'collis', u'cours', u'uranium']
[u'general', u'satisfact', u'fish', u'rule']
[u'generat', u'vandal']
[u'gilgandra', u'council', u'lodg', u'rate', u'increas', u'applic']
[u'girl', u'say', u'murder', u'friend', u'felt', u'right', u'court', u'tell']
[u'global', u'emiss', u'trade', u'scheme', u'inevit', u'turnbul']
[u'gough', u'win', u'gallipoli', u'prize']
[u'govt', u'offer', u'grant', u'eas', u'pain', u'fish']
[u'govt', u'shire', u'remain', u'odd', u'polic', u'station', u'site']
[u'govt', u'launch', u'marin', u'park', u'educ']
[u'govt', u'urg', u'releas', u'dollar', u'wind', u'farm', u'report']
[u'grape', u'grower', u'fund', u'fight', u'contract', u'disput']
[u'green', u'group', u'push', u'renew', u'target']
[u'green', u'group', u'urg', u'unit', u'manag', u'abrolho']
[u'griffith', u'consid', u'dental', u'student']
[u'gutsi', u'rabbitoh', u'upset', u'cowboy']
[u'hanson', u'hit', u'campaign', u'trail', u'outback']
[u'head', u'cross', u'appeal', u'collector']
[u'hobart', u'zinc', u'smelter', u'get', u'owner']
[u'honest', u'commerci', u'necess']
[u'hospit', u'prompt', u'health', u'assur']
[u'hous', u'tell', u'inquiri', u'staff', u'train', u'overhaul']
[u'hous', u'shortag', u'leav', u'woodsid', u'short', u'worker']
[u'howard', u'climat', u'chang']
[u'howard', u'outlin', u'vision']
[u'howard', u'speech', u'press', u'club']
[u'hurt', u'watson', u'prove', u'worth']
[u'isra', u'charg', u'ecstasi', u'haul']
[u'plenti', u'offer', u'say', u'fletcher']
[u'joint', u'polic', u'oper', u'nab', u'serial', u'robber']
[u'kalgoorli', u'host', u'energi', u'forum']
[u'kangaroo', u'threat', u'barbar', u'meat', u'industri']
[u'kidney', u'dialysi', u'patient', u'break', u'byron']
[u'kikuyu', u'cattl', u'death', u'threat', u'depart']
[u'kokoda', u'boss', u'play', u'anzac', u'servic', u'threat']
[u'lara', u'fear', u'futur', u'test']
[u'liber', u'ballarat', u'elect', u'trail']
[u'lift', u'indian', u'commerci', u'rocket']
[u'accus', u'assault', u'policewoman']
[u'court', u'huge', u'mdma', u'haul']
[u'man', u'burn', u'face', u'match']
[u'plead', u'guilti', u'caus', u'injuri', u'chair']
[u'court', u'miami', u'stand']
[u'maradona', u'start', u'treatment', u'alcohol', u'abus']
[u'market', u'close', u'slight', u'higher']
[u'mayor', u'estim', u'shoalhaven', u'rate', u'rise']
[u'mcmanus', u'mileston', u'match', u'crow']
[u'melbourn', u'build', u'evacu', u'leak']
[u'west', u'farmer', u'oppos', u'powerlin', u'properti', u'plan']
[u'minist', u'say', u'train', u'carriag', u'buyback', u'good', u'valu']
[u'mokbel', u'brother', u'refus', u'bail', u'drug', u'charg']
[u'cowra', u'council', u'furnitur', u'factori', u'debat']
[u'gun', u'prevent', u'massacr']
[u'high', u'blood', u'pressur', u'case', u'curabl', u'research']
[u'murder', u'sentenc', u'reduc']
[u'music', u'industri', u'mourn', u'guitar', u'great', u'lobbi', u'loyd']
[u'nation', u'shelter', u'polici']
[u'boss', u'appoint', u'outback', u'promot', u'bodi']
[u'build', u'get', u'condit', u'approv']
[u'newcastl', u'council', u'wait', u'solar', u'citi', u'status']
[u'but', u'outback', u'bottom', u'cheeki']
[u'charg', u'beaconsfield', u'collaps']
[u'list', u'local', u'govt', u'shake', u'longland']
[u'norway', u'jail', u'scream', u'thiev']
[u'night', u'stand', u'label', u'success']
[u'onlin', u'classroom', u'help', u'rural', u'blind', u'deaf', u'student']
[u'orchardist', u'wait', u'meet', u'bird']
[u'pakistan', u'probe', u'find', u'match', u'fix', u'link']
[u'palestinian', u'minist', u'tri', u'resign']
[u'patricia', u'forsyth', u'speak', u'rental']
[u'outlin', u'vision']
[u'polic', u'highlight', u'great', u'central', u'road', u'patrol']
[u'polic', u'investig', u'deliber']
[u'polic', u'investig', u'portland', u'abduct', u'attempt']
[u'polic', u'offic', u'tour', u'netherland']
[u'polic', u'probe', u'break', u'hill', u'theft']
[u'polic', u'seek', u'public', u'help', u'find', u'miss']
[u'polic', u'spike', u'stop', u'unlicens', u'driver']
[u'poll', u'labor', u'ahead']
[u'poll', u'labor']
[u'power', u'lose', u'champ', u'lead']
[u'power', u'station', u'turbin', u'track', u'summer']
[u'power', u'station', u'worker', u'hospitalis', u'explos']
[u'produc', u'price', u'index', u'march']
[u'profession', u'like', u'depress', u'survey']
[u'properti', u'develop', u'plead', u'guilti', u'fraud']
[u'public', u'get', u'glimps', u'denmark', u'princess']
[u'public', u'servic', u'poach', u'worker', u'privat', u'sector']
[u'pulp', u'decis', u'wont', u'impact', u'port', u'expans', u'plan']
[u'push', u'uniform', u'whale', u'watch', u'law']
[u'qanta', u'bidder', u'warn', u'share', u'price', u'drop']
[u'rape', u'trial', u'begin', u'suprem', u'court']
[u'rare', u'farm', u'machineri', u'auction', u'near', u'armidal']
[u'record', u'chase', u'blind', u'pilot', u'touch', u'darwin']
[u'renew', u'energi', u'report']
[u'rescu', u'helicopt', u'search', u'miss', u'yachti']
[u'resid', u'question', u'solar', u'fund']
[u'resid', u'angri', u'convey', u'belt', u'plan']
[u'resid', u'urg', u'revamp']
[u'ridgway', u'lead', u'liber', u'parliament']
[u'riverina', u'warn', u'meningococc', u'threat']
[u'rudd', u'reject', u'workplac', u'polici', u'attack']
[u'sailor', u'famili', u'thank', u'support']
[u'sale', u'burk', u'will', u'link', u'breastplat', u'block']
[u'saleyard', u'review', u'find', u'futur', u'chang', u'necessari']
[u'sarkozi', u'royal', u'brace', u'french', u'elect', u'showdown']
[u'sarkozi', u'royal', u'face', u'french', u'poll']
[u'second', u'charg', u'alleg', u'golf', u'club']
[u'abus', u'sentenc', u'reduc', u'year']
[u'shepherd', u'miss', u'week']
[u'short', u'turnaround', u'problem', u'pie', u'clement']
[u'korea', u'accept', u'beef', u'overturn']
[u'smaller', u'version', u'river', u'trek', u'hold']
[u'snowi', u'water', u'level', u'lowest', u'year']
[u'solomon', u'hold', u'tsunami', u'mourn']
[u'strong', u'show', u'site']
[u'student', u'scholarship', u'coincid', u'tertiari']
[u'studi', u'reveal', u'gippsland', u'potenti', u'carbon']
[u'taiwanes', u'technolog', u'rais', u'missil', u'rang']
[u'tamworth', u'council', u'ponder', u'harsher', u'water', u'ban']
[u'tenant', u'foot', u'water', u'bill']
[u'terri', u'wont', u'leav', u'england']
[u'tharwa', u'parent', u'school', u'transit']
[u'thousand', u'visit', u'maitland', u'steam', u'train', u'festiv']
[u'timber', u'use', u'forest', u'wast', u'electr']
[u'titan', u'fine', u'approach', u'refere']
[u'trio', u'basebal', u'bat', u'bash']
[u'turnbul', u'rule', u'feder', u'fund', u'yarragade']
[u'turnbul', u'say', u'global', u'carbon', u'trade', u'scheme', u'need']
[u'union', u'nurs', u'home', u'oper', u'court']
[u'union', u'council', u'awa']
[u'destroy', u'dock', u'sydney']
[u'destroy', u'dock', u'sydney']
[u'iraqi', u'armi', u'defend', u'baghdad', u'wall', u'plan']
[u'recipi', u'want', u'medal', u'display']
[u'launch', u'child', u'protect', u'law']
[u'vizard', u'attack', u'jail', u'theft']
[u'artist', u'take', u'gallipoli', u'price']
[u'need', u'teacher']
[u'word', u'erupt', u'region', u'crime']
[u'teacher', u'threaten', u'strike', u'staff', u'shortag']
[u'water', u'power', u'snowi', u'mountain', u'town', u'risk']
[u'watney', u'hold', u'duke', u'orlean', u'classic']
[u'winemak', u'deni', u'restructur', u'report']
[u'weather', u'bureau', u'monitor', u'gold', u'coast', u'storm']
[u'wholesal', u'inflat', u'remain', u'unchang']
[u'wit', u'seek', u'fatal', u'nowra']
[u'wollongong', u'council', u'plan', u'rate', u'rise']
[u'woman', u'die', u'polic', u'custodi', u'bendigo']
[u'workchoic', u'benefit']
[u'worker', u'kill', u'refineri', u'fall']
[u'youth', u'worker', u'walk', u'griffith', u'street', u'program']
[u'million', u'upgrad', u'sydney', u'town', u'hall']
[u'abetz', u'queri', u'liber', u'endors']
[u'actu', u'chief', u'join', u'wollongong', u'manufactur', u'meet']
[u'launch', u'probe', u'test']
[u'albani', u'boost', u'anzac', u'safeti']
[u'alcohol', u'damag', u'women', u'brain', u'faster', u'men']
[u'save', u'face']
[u'alleg', u'sunnybank', u'stab', u'trio', u'refus', u'bail']
[u'name', u'kalgoorli', u'candid']
[u'amcor', u'worker', u'europ']
[u'set', u'emerg']
[u'set', u'emerg', u'warn']
[u'anzac', u'parad', u'start', u'possibl', u'site']
[u'appl', u'grower', u'build', u'juic', u'plant']
[u'aussi', u'ramsi', u'advis', u'die', u'honiara']
[u'aust', u'honour', u'firi', u'burn', u'firestorm']
[u'aust', u'soldier', u'injur', u'iraq']
[u'aust', u'stand', u'oecd', u'figur', u'fund']
[u'aust', u'build', u'western', u'museum', u'digger']
[u'monopoli', u'realist', u'say', u'costello']
[u'bald', u'killer', u'allow', u'appeal']
[u'basing', u'hire', u'secur', u'daughter', u'baldwin']
[u'beatti', u'fund', u'pipelin', u'howard']
[u'bendigo', u'bank', u'lose', u'valu', u'reject']
[u'bendigo', u'bank', u'reject', u'takeov', u'plan']
[u'announc', u'record', u'metal', u'output']
[u'crowd', u'expect', u'goldfield', u'esper', u'anzac']
[u'blackal', u'sportsman', u'shoot']
[u'blood', u'test']
[u'boat', u'leav', u'lake', u'entranc', u'face', u'sand', u'woe']
[u'bond', u'oram', u'spur', u'kiwi']
[u'bonfir', u'celebr', u'babi', u'birth']
[u'bore', u'solv', u'water', u'problem', u'say', u'liber']
[u'bore', u'water', u'lead', u'prosecut']
[u'bottleshop', u'owner', u'back', u'long', u'neck', u'beer']
[u'brack', u'defend', u'minist', u'mokbel', u'deal']
[u'brack', u'reject', u'size', u'fit', u'curriculum', u'chang']
[u'break', u'hill', u'save', u'summer', u'water']
[u'broughton', u'hall', u'audit', u'reveal', u'breach']
[u'broughton', u'hall', u'fail', u'standard']
[u'broughton', u'hall', u'safe', u'resid', u'govt', u'say']
[u'burn', u'conserv', u'park', u'aim', u'prevent']
[u'burn', u'suspend', u'game']
[u'busi', u'chamber', u'back', u'industri', u'water', u'conserv']
[u'cahil', u'target', u'comeback', u'asian']
[u'alic', u'spring', u'land', u'releas']
[u'recognis', u'earli', u'settlement', u'indigen']
[u'canadian', u'minist', u'amid', u'afghan', u'tortur']
[u'cattl', u'truck', u'crash', u'near', u'northam']
[u'charg', u'player', u'accept', u'sanction']
[u'charter', u'boat', u'oper', u'urg', u'levi', u'jetti']
[u'children', u'reflect', u'anzac', u'sacrific', u'memori']
[u'chines', u'author', u'detain', u'environment', u'activist']
[u'chipman', u'support', u'candid']
[u'climat', u'debat', u'heat']
[u'closer', u'news']
[u'cohen', u'want', u'public', u'water', u'manag', u'power']
[u'communiti', u'technolog', u'centr', u'lightn', u'ridg']
[u'commut', u'evacu', u'circular', u'quay', u'train']
[u'compani', u'invest', u'billion', u'industri']
[u'compani', u'look', u'expand', u'basalt', u'quarri']
[u'cooloola', u'mayor', u'flag', u'support', u'super', u'council']
[u'cosgrov', u'reliev', u'stay', u'aust']
In [24]:
'''
Preview 'processed_docs'
'''
processed_docs[:10]
Out[24]:
0            [decid, communiti, broadcast, licenc]
1                               [wit, awar, defam]
2           [call, infrastructur, protect, summit]
3                      [staff, aust, strike, rise]
4             [strike, affect, australian, travel]
5               [ambiti, olsson, win, tripl, jump]
6           [antic, delight, record, break, barca]
7    [aussi, qualifi, stosur, wast, memphi, match]
8            [aust, address, secur, council, iraq]
9                         [australia, lock, timet]
Name: headline_text, dtype: object

Step 3.1: Bag of words on the dataset

Now let's create a dictionary from 'processed_docs' containing the number of times a word appears in the training set. To do that, let's pass processed_docs to gensim.corpora.Dictionary() and call it 'dictionary'.

In [25]:
'''
Create a dictionary from 'processed_docs' containing the number of times a word appears 
in the training set using gensim.corpora.Dictionary and call it 'dictionary'
'''
dictionary = gensim.corpora.Dictionary(processed_docs)
dictionary
Out[25]:
<gensim.corpora.dictionary.Dictionary at 0x7fde2b12b650>
In [27]:
'''
Checking dictionary created
'''
count = 0
for k, v in dictionary.iteritems():
    print(k, v)
    count += 1
    if count > 100:
        break
(7959, u'verplank')
(13916, u'woodi')
(14482, u'francesco')
(17648, u'kaniva')
(23122, u'yanagisawa')
(12187, u'scold')
(11412, u'szabic')
(6914, u'emptiv')
(23203, u'strikebreak')
(6220, u'citrus')
(23768, u'donger')
(8383, u'bratislava')
(23346, u'gambaro')
(24759, u'bendal')
(17493, u'four')
(8831, u'samudra')
(19846, u'broiler')
(4062, u'wooden')
(8598, u'showcas')
(2313, u'wednesday')
(24279, u'crotch')
(2227, u'capsicum')
(17843, u'asama')
(8932, u'inkster')
(14092, u'sooth')
(22357, u'rudman')
(18812, u'gorman')
(16090, u'targa')
(1602, u'dialogu')
(6625, u'litig')
(23499, u'databank')
(2016, u'succumb')
(15479, u'crouch')
(4783, u'brizuela')
(22500, u'ching')
(1244, u'china')
(22651, u'wagyu')
(8066, u'manjimup')
(8580, u'deterior')
(7682, u'spotti')
(7665, u'pastur')
(7786, u'parreira')
(23471, u'muirhead')
(8625, u'kidd')
(11656, u'neurologist')
(6954, u'climber')
(3654, u'sharemarket')
(3093, u'controversi')
(1654, u'golden')
(12762, u'lengthen')
(19237, u'sterl')
(15393, u'stern')
(21225, u'westech')
(14937, u'monologuesem')
(3539, u'agassi')
(24423, u'dinotain')
(17259, u'outwit')
(1700, u'music')
(24270, u'veart')
(9373, u'yahoo')
(9181, u'meteorologist')
(22772, u'beswick')
(14988, u'unpack')
(10337, u'gija')
(9404, u'murchison')
(4592, u'simper')
(17445, u'arndt')
(12452, u'steinweg')
(4515, u'matilda')
(3573, u'wane')
(16200, u'unjust')
(12514, u'eczema')
(14863, u'titanium')
(22309, u'capitalss')
(16191, u'tilba')
(867, u'want')
(6816, u'pinto')
(6586, u'vicent')
(14245, u'beyer')
(17, u'travel')
(8546, u'cutback')
(707, u'charvi')
(18063, u'dangerfield')
(20998, u'birdcag')
(9493, u'calda')
(23116, u'stingier')
(1323, u'wrong')
(14138, u'soham')
(16008, u'prodig')
(11436, u'kirner')
(12525, u'tulip')
(20599, u'hetherington')
(3407, u'finalis')
(20487, u'antivir')
(15179, u'restrospect')
(9544, u'mabthera')
(23335, u'unenthusiast')
(6470, u'burleigh')
(4836, u'fit')
(7828, u'gridiron')
(23966, u'fib')

Gensim filter_extremes

filter_extremes(no_below=5, no_above=0.5, keep_n=100000)

Filter out tokens that appear in

  • less than no_below documents (absolute number) or
  • more than no_above documents (fraction of total corpus size, not absolute number).
  • after (1) and (2), keep only the first keep_n most frequent tokens (or keep all if None).
In [28]:
'''
OPTIONAL STEP
Remove very rare and very common words:

- words appearing less than 15 times
- words appearing in more than 10% of all documents
'''
# TODO: apply dictionary.filter_extremes() with the parameters mentioned above
dictionary.filter_extremes(no_below=15, no_above=0.1, keep_n=100000)

Gensim doc2bow

doc2bow(document)

  • Convert document (a list of words) into the bag-of-words format = list of (token_id, token_count) 2-tuples. Each word is assumed to be a tokenized and normalized string (either unicode or utf8-encoded). No further preprocessing is done on the words in document; apply tokenization, stemming etc. before calling this method.
In [ ]:
'''
Create the Bag-of-words model for each document i.e for each document we create a dictionary reporting how many
words and how many times those words appear. Save this to 'bow_corpus'
'''
# TODO
bow_corpus = 
In [ ]:
'''
Checking Bag of Words corpus for our sample document --> (token_id, token_count)
'''
bow_corpus[document_num]
In [ ]:
'''
Preview BOW for our sample preprocessed document
'''
# Here document_num is document number 4310 which we have checked in Step 2
bow_doc_4310 = bow_corpus[document_num]

for i in range(len(bow_doc_4310)):
    print("Word {} (\"{}\") appears {} time.".format(bow_doc_4310[i][0], 
                                                     dictionary[bow_doc_4310[i][0]], 
                                                     bow_doc_4310[i][1]))

Step 3.2: TF-IDF on our document set

While performing TF-IDF on the corpus is not necessary for LDA implemention using the gensim model, it is recemmended. TF-IDF expects a bag-of-words (integer values) training corpus during initialization. During transformation, it will take a vector and return another vector of the same dimensionality.

Please note: The author of Gensim dictates the standard procedure for LDA to be using the Bag of Words model.

TF-IDF stands for "Term Frequency, Inverse Document Frequency".

  • It is a way to score the importance of words (or "terms") in a document based on how frequently they appear across multiple documents.
  • If a word appears frequently in a document, it's important. Give the word a high score. But if a word appears in many documents, it's not a unique identifier. Give the word a low score.
  • Therefore, common words like "the" and "for", which appear in many documents, will be scaled down. Words that appear frequently in a single document will be scaled up.

In other words:

  • TF(w) = (Number of times term w appears in a document) / (Total number of terms in the document).
  • IDF(w) = log_e(Total number of documents / Number of documents with term w in it).

For example

  • Consider a document containing 100 words wherein the word 'tiger' appears 3 times.
  • The term frequency (i.e., tf) for 'tiger' is then:

    • TF = (3 / 100) = 0.03.
  • Now, assume we have 10 million documents and the word 'tiger' appears in 1000 of these. Then, the inverse document frequency (i.e., idf) is calculated as:

    • IDF = log(10,000,000 / 1,000) = 4.
  • Thus, the Tf-idf weight is the product of these quantities:

    • TF-IDF = 0.03 * 4 = 0.12.
In [ ]:
'''
Create tf-idf model object using models.TfidfModel on 'bow_corpus' and save it to 'tfidf'
'''
from gensim import corpora, models

# TODO
tfidf = 
In [ ]:
'''
Apply transformation to the entire corpus and call it 'corpus_tfidf'
'''
# TODO
corpus_tfidf = 
In [ ]:
'''
Preview TF-IDF scores for our first document --> --> (token_id, tfidf score)
'''
from pprint import pprint
for doc in corpus_tfidf:
    pprint(doc)
    break

Step 4.1: Running LDA using Bag of Words

We are going for 10 topics in the document corpus.

We will be running LDA using all CPU cores to parallelize and speed up model training.

Some of the parameters we will be tweaking are:

  • num_topics is the number of requested latent topics to be extracted from the training corpus.
  • id2word is a mapping from word ids (integers) to words (strings). It is used to determine the vocabulary size, as well as for debugging and topic printing.
  • workers is the number of extra processes to use for parallelization. Uses all available cores by default.
  • alpha and eta are hyperparameters that affect sparsity of the document-topic (theta) and topic-word (lambda) distributions. We will let these be the default values for now(default value is 1/num_topics)

    • Alpha is the per document topic distribution.

      • High alpha: Every document has a mixture of all topics(documents appear similar to each other).
      • Low alpha: Every document has a mixture of very few topics
    • Eta is the per topic word distribution.

      • High eta: Each topic has a mixture of most words(topics appear similar to each other).
      • Low eta: Each topic has a mixture of few words.
  • passes is the number of training passes through the corpus. For example, if the training corpus has 50,000 documents, chunksize is 10,000, passes is 2, then online training is done in 10 updates:

    • #1 documents 0-9,999
    • #2 documents 10,000-19,999
    • #3 documents 20,000-29,999
    • #4 documents 30,000-39,999
    • #5 documents 40,000-49,999
    • #6 documents 0-9,999
    • #7 documents 10,000-19,999
    • #8 documents 20,000-29,999
    • #9 documents 30,000-39,999
    • #10 documents 40,000-49,999
In [ ]:
# LDA mono-core -- fallback code in case LdaMulticore throws an error on your machine
# lda_model = gensim.models.LdaModel(bow_corpus, 
#                                    num_topics = 10, 
#                                    id2word = dictionary,                                    
#                                    passes = 50)

# LDA multicore 
'''
Train your lda model using gensim.models.LdaMulticore and save it to 'lda_model'
'''
# TODO
lda_model = 
In [ ]:
'''
For each topic, we will explore the words occuring in that topic and its relative weight
'''
for idx, topic in lda_model.print_topics(-1):
    print("Topic: {} \nWords: {}".format(topic, idx ))
    print("\n")

Classification of the topics

Using the words in each topic and their corresponding weights, what categories were you able to infer?

  • 0:
  • 1:
  • 2:
  • 3:
  • 4:
  • 5:
  • 6:
  • 7:
  • 8:
  • 9:

Step 4.2 Running LDA using TF-IDF

In [ ]:
'''
Define lda model using corpus_tfidf, again using gensim.models.LdaMulticore()
'''
# TODO
lda_model_tfidf = 
In [ ]:
'''
For each topic, we will explore the words occuring in that topic and its relative weight
'''
for idx, topic in lda_model_tfidf.print_topics(-1):
    print("Topic: {} Word: {}".format(idx, topic))
    print("\n")

Classification of the topics

As we can see, when using tf-idf, heavier weights are given to words that are not as frequent which results in nouns being factored in. That makes it harder to figure out the categories as nouns can be hard to categorize. This goes to show that the models we apply depend on the type of corpus of text we are dealing with.

Using the words in each topic and their corresponding weights, what categories could you find?

  • 0:
  • 1:
  • 2:
  • 3:
  • 4:
  • 5:
  • 6:
  • 7:
  • 8:
  • 9:

Step 5.1: Performance evaluation by classifying sample document using LDA Bag of Words model

We will check to see where our test document would be classified.

In [ ]:
'''
Text of sample document 4310
'''
processed_docs[4310]
In [ ]:
'''
Check which topic our test document belongs to using the LDA Bag of Words model.
'''
document_num = 4310
# Our test document is document number 4310

# TODO
# Our test document is document number 4310
for index, score in sorted(lda_model[bow_corpus[document_num]], key=lambda tup: -1*tup[1]):
    print("\nScore: {}\t \nTopic: {}".format(score, lda_model.print_topic(index, 10)))

It has the highest probability (x) to be part of the topic that we assigned as X, which is the accurate classification.

Step 5.2: Performance evaluation by classifying sample document using LDA TF-IDF model

In [ ]:
'''
Check which topic our test document belongs to using the LDA TF-IDF model.
'''
# Our test document is document number 4310
for index, score in sorted(lda_model_tfidf[bow_corpus[document_num]], key=lambda tup: -1*tup[1]):
    print("\nScore: {}\t \nTopic: {}".format(score, lda_model_tfidf.print_topic(index, 10)))

It has the highest probability (x%) to be part of the topic that we assigned as X.

Step 6: Testing model on unseen document

In [ ]:
unseen_document = "My favorite sports activities are running and swimming."

# Data preprocessing step for the unseen document
bow_vector = dictionary.doc2bow(preprocess(unseen_document))

for index, score in sorted(lda_model[bow_vector], key=lambda tup: -1*tup[1]):
    print("Score: {}\t Topic: {}".format(score, lda_model.print_topic(index, 5)))

The model correctly classifies the unseen document with 'x'% probability to the X category.